diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index c97dd93..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore deleted file mode 100644 index e87adce..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.swp -.precomp diff --git a/CRO/.gitignore b/CRO/.gitignore deleted file mode 100644 index badb61f..0000000 --- a/CRO/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*test* diff --git a/CRO/crotest/README.md b/CRO/crotest/README.md deleted file mode 100755 index e13115c..0000000 --- a/CRO/crotest/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Perl6 Cro Experimentation - -### Simple Webserver -* Using SQLite3 Implementation Instead of PostgreSQL -* Testing for Ingredient.Guru Final Website - -MORE TO COME IN THE FUTURE diff --git a/CRO/crotest/ingredient.db b/CRO/crotest/ingredient.db deleted file mode 100755 index cc6f199..0000000 Binary files a/CRO/crotest/ingredient.db and /dev/null differ diff --git a/CRO/crotest/server/lib/Routes.pm6 b/CRO/crotest/server/lib/Routes.pm6 deleted file mode 100755 index 7d193f3..0000000 --- a/CRO/crotest/server/lib/Routes.pm6 +++ /dev/null @@ -1,120 +0,0 @@ -use Cro::HTTP::Router; -use Digest::SHA256::Native; -use DBIish; - -### Attributes to pass to DBI->connect() to disable automatic -### error checking -my %attr = ( - database => '../ingredient.db', - PrintError => 1, - RaiseError => 0, -); - -#Opens Connection -my $dbh = DBIish.connect( 'SQLite', database => '../ingredient.db' ); - -#Create SQL Table -my $sth = $dbh.do(q:to/STATEMENT/); - CREATE TABLE IF NOT EXISTS accounts ( - ID INTEGER PRIMARY KEY AUTOINCREMENT, - username TEXT type UNIQUE, - email TEXT, - password TEXT, - date TEXT - ) - STATEMENT - -#$dbh.dispose; - - -sub routes() is export { - route { - - #Static Page HTML - get -> { - static 'static/index.html' - } - - #Website Paths - get -> 'static', *@path { - static 'static', @path; - } - - #Retrieve Info From register.html - post -> 'register' { - request-body -> (:$username,:$email,:$password) { - - #SQL Insert Statment - $sth = $dbh.prepare(q:to/STATEMENT/); - INSERT INTO accounts (username, email, password, date) - VALUES ( ?, ?, ?, ? ) - STATEMENT - - #Hash Password - my $hashpassword = sha256-hex $password.encode: 'utf8-c8'; - - #Retrieves Date and Time - my $date = Str(DateTime.now); - - #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error) - my $count = $sth.execute($username, $email, $hashpassword, $date); - - #Errors (i.e. Username Already Exists) - CATCH { - default { - say 'Error caught: .message'; - content 'text/html','USERNAME ALREADY EXITS'; - } - return; - } - - #No Problems | Account Created - if $count == 1 { - content 'text/html','SUCCESS'; - } - } - } - #Authentication - post -> 'login' { - #Retrieving Login Variables - request-body -> (:$userlog,:$passlog) { - - #Hash Password At Login - my $hashlogin = sha256-hex $passlog.encode: 'utf8-c8'; - - #Select Statement to find username - $sth = $dbh.prepare(q:to/STATEMENT/); - select username from accounts WHERE username = (?) - STATEMENT - - #Executes Select statement - $sth.execute($userlog); - - #Stores the result - my $result = $sth.allrows; - - #Starts to check password if a username is found - if $result.elems >= 1 { - $sth = $dbh.prepare(q:to/STATEMENT/); - select password from accounts WHERE password = (?) - STATEMENT - $sth.execute($hashlogin); - - #Stores the returned hash from database - my $hash = $sth.allrows[0]; - - #Checks if hashs match and gives webpage response - if $hashlogin eq $hash { - content 'text/html',"Login Successful"; - } else { - content 'text/html', "Login Failed"; - } - #Completes first if statment - } else { - content 'text/html','Login Failed'; - } - } - } - } -} - diff --git a/CRO/crotest/server/static/index.html b/CRO/crotest/server/static/index.html deleted file mode 100755 index ca2daa1..0000000 --- a/CRO/crotest/server/static/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - INGREDIENT GURU - - - -

INGREDIENT GURU

- Sign In -

- Register - - diff --git a/CRO/crotest/server/static/register.html b/CRO/crotest/server/static/register.html deleted file mode 100755 index d7d5665..0000000 --- a/CRO/crotest/server/static/register.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - Register - - -
- Username:
- -
- Email:
- -
- Password:
- -

- -
-

- Already Have An Account? -
- Home - - diff --git a/CRO/ingredient.db b/CRO/ingredient.db new file mode 100755 index 0000000..aa760a4 Binary files /dev/null and b/CRO/ingredient.db differ diff --git a/CRO/crotest/server/.DS_Store b/CRO/server/.DS_Store similarity index 100% rename from CRO/crotest/server/.DS_Store rename to CRO/server/.DS_Store diff --git a/CRO/crotest/server/.cro.yml b/CRO/server/.cro.yml similarity index 100% rename from CRO/crotest/server/.cro.yml rename to CRO/server/.cro.yml diff --git a/CRO/crotest/server/.dockerignore b/CRO/server/.dockerignore similarity index 100% rename from CRO/crotest/server/.dockerignore rename to CRO/server/.dockerignore diff --git a/CRO/crotest/server/Dockerfile b/CRO/server/Dockerfile similarity index 100% rename from CRO/crotest/server/Dockerfile rename to CRO/server/Dockerfile diff --git a/CRO/crotest/server/META6.json b/CRO/server/META6.json similarity index 100% rename from CRO/crotest/server/META6.json rename to CRO/server/META6.json diff --git a/CRO/crotest/server/README.md b/CRO/server/README.md similarity index 100% rename from CRO/crotest/server/README.md rename to CRO/server/README.md diff --git a/node_modules/pg-pool/test/timeout.js b/CRO/server/lib/.precomp/.lock similarity index 100% rename from node_modules/pg-pool/test/timeout.js rename to CRO/server/lib/.precomp/.lock diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999 new file mode 100644 index 0000000..7ddd544 Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999 differ diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 new file mode 100644 index 0000000..99bbc16 Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 differ diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id new file mode 100644 index 0000000..ff9f674 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id @@ -0,0 +1 @@ +E422F9DB3B734B431BFDEC94BEC9084BFA14D905 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9 new file mode 100644 index 0000000..dce6755 Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9 differ diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id new file mode 100644 index 0000000..6954a30 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id @@ -0,0 +1 @@ +AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id new file mode 100644 index 0000000..2558667 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id @@ -0,0 +1 @@ +7EEDB4D42F038CF678D231449AFCDFB065BC6AF9 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id new file mode 100644 index 0000000..6954a30 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id @@ -0,0 +1 @@ +AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D new file mode 100644 index 0000000..90a73d4 Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D differ diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id new file mode 100644 index 0000000..6954a30 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id @@ -0,0 +1 @@ +AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id new file mode 100644 index 0000000..0202048 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id @@ -0,0 +1 @@ +EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id new file mode 100644 index 0000000..6954a30 --- /dev/null +++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id @@ -0,0 +1 @@ +AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 new file mode 100644 index 0000000..5708e65 Binary files /dev/null and b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 differ diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id new file mode 100644 index 0000000..e4ac644 --- /dev/null +++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id @@ -0,0 +1 @@ +D96A526161C9091B04F3C816617816DEADD8DD53 \ No newline at end of file diff --git a/CRO/server/lib/Routes.pm6 b/CRO/server/lib/Routes.pm6 new file mode 100755 index 0000000..d755392 --- /dev/null +++ b/CRO/server/lib/Routes.pm6 @@ -0,0 +1,256 @@ +use Digest::SHA256::Native; +use DBIish; +use Cro::HTTP::Router; +use Cro::HTTP::Cookie; +use Cro::HTTP::Auth; +use Cro::HTTP::Session::InMemory; +use Net::SMTP; + +#Opens Connection +my $dbh = DBIish.connect( 'SQLite', database => '../ingredient.db' ); + +#Create Verified Account Names +my $sth = $dbh.do(q:to/STATEMENT/); + CREATE TABLE IF NOT EXISTS accounts ( + ID INTEGER PRIMARY KEY AUTOINCREMENT, + username TEXT type UNIQUE, + email TEXT type UNIQUE, + password TEXT, + date TEXT, + code INT, + verified TEXT + ) + STATEMENT + +#For Session and Cookies +$sth = $dbh.do(q:to/STATEMENT/); + CREATE TABLE IF NOT EXISTS tokens ( + user PRIMARY KEY, + hash TEXT + ) + STATEMENT + +#Password Reset +$sth = $dbh.do(q:to/STATEMENT/); + CREATE TABLE IF NOT EXISTS reset ( + email TEXT, + token TEXT, + date TEXT + ) + STATEMENT + +# Cro::HTTP::Auth Stuff for Session Creation +class UserSession does Cro::HTTP::Auth { + has $.username is rw; + + method logged-in() { + defined $!username; + } +} + +sub routes() is export { + route { + before Cro::HTTP::Session::InMemory[UserSession].new; + + subset LoggedIn of UserSession where *.logged-in; + + #Static Page HTML + get -> { + static 'static/index.html'; + } + + get -> 'register' { + static 'static/register.html'; + } + + get -> 'css' { + static 'static/style.css'; + } + + get -> 'confirm' { + static 'static/confirm.html'; + } + + get -> 'reset' { + static 'static/reset.html'; + } + + #Retrieve Info From register.html + post -> 'register', 'post' { + request-body -> (:$username,:$email,:$password) { + + #SQL Insert Statment + $sth = $dbh.prepare(q:to/STATEMENT/); + INSERT INTO accounts (username, email, password, date, code, verified) + VALUES ( ?, ?, ?, ?, ?, ? ) + STATEMENT + + #Hash Password + my $hashpassword = sha256-hex $password.encode: 'utf8-c8'; + + #Retrieves Date and Time + my $date = Str(DateTime.now); + + #Generate Random 6 Digit Code + my $code = (100000^..999999).pick; + + #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error) + my $count = $sth.execute($username, $email, $hashpassword, $date, $code, "FALSE"); + + $sth = $dbh.prepare(q:to/STATEMENT/); + insert into tokens (user, hash) + VALUES (?,?) + STATEMENT + + $sth.execute($username,""); + + #Errors (i.e. Username Already Exists) + CATCH { + default { + say 'Error caught:'; + $*ERR.say: .message; + content 'text/html','USERNAME ALREADY EXITS'; + } + return; + } + + #No Problems | Account Created + if $count == 1 { + static 'static/confirm.html'; + + #Prep email + my $from = "ingredient@arltech.com"; + my $to = "$email"; + my $message = "Your 6 Digit Number: $code"; + + #Send email + my $client = Net::SMTP.new(:server("127.0.0.1"), :port(25), :debug); + $client.send($from, $to, $message); + $client.quit; + } + } + } + # construct URL: http://[server]/confirm/email?userlog='~$userlog~'&code='~$code + + #Get Statement retirving code and username + post -> 'confirm' { + request-body -> (:$code,:$username) { + #CODE CHECKING WITH DATABASE + $sth = $dbh.prepare(q:to/STATEMENT/); + UPDATE accounts SET verified = "TRUE" WHERE username = (?) and code = (?) + STATEMENT + + my $results = $sth.execute($username, $code); + if $results == 0 { + content 'text/html', "INCORRECT CODE"; + } else { + content 'text/html', "ACCOUNT VERIFIED PLEASE LOGIN" ~ '
Home'; + } + } + } + + #Authentication + get -> UserSession $s, 'login' { + if $s.logged-in { + content 'text/html','Successful Login: Welcome' ~ " " ~$s.username ~ '
Logout'; + } + else {static 'static/signin.html'} + } + + post -> UserSession $user, 'login', 'authenticate' { + request-body -> (:$userlog, :$passlog, *%) { + if valid-user-pass($userlog, $passlog) { + $user.username = $userlog; + say "Successful login"; + content 'text/html','Successful Login: Welcome' ~ " " ~$user.username ~ '
Logout'; + } + else { + say "Bad login"; + content 'text/html', "Bad Username/Password and/or Account Not Verified" ~ '
Verify Account'; + } + } + } + sub valid-user-pass($username, $password) { + #Hash Password At Login + my $hashlogin = sha256-hex $password.encode: 'utf8-c8'; + + #Select Statement to find username + $sth = $dbh.prepare(q:to/STATEMENT/); + select username from accounts WHERE username = (?) and password = (?) and verified = "TRUE" + STATEMENT + + #Executes Select statement + $sth.execute($username, $hashlogin); + + #Stores the result + my $result = $sth.allrows; + + #If there is more than one row, the username and password matched + return $result.elems >= 1; + } + + get -> UserSession $s, 'logout' { + $s.username = Nil; + static 'static/signin.html' + } + + post -> 'reset' { + request-body -> (:$email) { + #Check to see if email exists in accounts + #If Exists then send email + #If not exists post email not found + + $sth = $dbh.prepare(q:to/STATEMENT/); + select email from accounts WHERE email = (?) + STATEMENT + + $sth.execute($email); + my $results = $sth.allrows; + + if $results == 1 { + content 'text/html','Successful Email sent' ~ '
Home'; + + #Prep email + my $from = "ingredient@arltech.com"; + my $to = "$email"; + my $token = ("a".."z","A".."Z",0..9).flat.roll(22).join; + my $date = Str(DateTime.now); + my $message = "Click here http://ingredientguru.arltechinnovation.us/reset/$token"; + + #Send email + my $client = Net::SMTP.new(:server("127.0.0.1"), :port(25), :debug); + $client.send($from, $to, $message); + $client.quit; + + $sth = $dbh.prepare(q:to/STATEMENT/); + INSERT INTO reset (email, token, date) + VALUES ( ?, ?, ? ) + STATEMENT + $sth.execute($email, $token, $date); + + # DELETE ENTRY AFTER TWO DAYS + + } else { + content 'text/html', "Email does not exist"; + } + } + } + get -> 'reset' , $token { + $sth = $dbh.prepare(q:to/STATEMENT/); + select email from reset WHERE token = (?) + STATEMENT + + $sth.execute($token); + my $results = $sth.allrows; + if $results == 1 { + #Redirect to password_rest_prompt.html | post called reset password + } + content 'text/html','No Email is Associated with that Particular Token'; + } + post -> 'resetpassword' { + request-body -> (:$password, :$confirm_password) { + # Check that passwords match based on the email above update password. + } + } + } +} diff --git a/CRO/crotest/server/service.p6 b/CRO/server/service.p6 similarity index 100% rename from CRO/crotest/server/service.p6 rename to CRO/server/service.p6 diff --git a/CRO/server/static/confirm.html b/CRO/server/static/confirm.html new file mode 100755 index 0000000..7d67546 --- /dev/null +++ b/CRO/server/static/confirm.html @@ -0,0 +1,46 @@ + + + + Testing + + +

You're almost done setting up

+
+ Code
+ +
+ Username
+ +

+ +
+
+ + + + + diff --git a/CRO/server/static/index.html b/CRO/server/static/index.html new file mode 100755 index 0000000..66c1ec4 --- /dev/null +++ b/CRO/server/static/index.html @@ -0,0 +1,23 @@ + + + + + INGREDIENT GURU + + + +

Hello there!

+

Welcome to ingredient.guru. This is a long term project that gameifies + chooseing healthy food. Ingredient.guru is written perl6 and is using + CRO. Below you will find the sign in and register options. Be careful, + there may be some unsquashed bugs!

+

INGREDIENT GURU

+ Sign In +

+ Register +

+ Verify Account +

+ Reset Password + + diff --git a/CRO/server/static/password_reset_prompt.html b/CRO/server/static/password_reset_prompt.html new file mode 100644 index 0000000..1869ad0 --- /dev/null +++ b/CRO/server/static/password_reset_prompt.html @@ -0,0 +1,22 @@ + + + + Reset Password + + +
+ Password:
+ + Confirm Password:
+ +
+ +
+
+ Create an Account + Sign In +
+ Home + + + diff --git a/CRO/server/static/register.html b/CRO/server/static/register.html new file mode 100755 index 0000000..c21b48c --- /dev/null +++ b/CRO/server/static/register.html @@ -0,0 +1,51 @@ + + + + + + + + Register + + + +
+

Register

+
+ + + + + +

Already Have An Account

+

Home

+
+ + + + + diff --git a/CRO/crotest/server/static/signin.html b/CRO/server/static/reset.html old mode 100755 new mode 100644 similarity index 52% rename from CRO/crotest/server/static/signin.html rename to CRO/server/static/reset.html index d31fb1c..07c3a3d --- a/CRO/crotest/server/static/signin.html +++ b/CRO/server/static/reset.html @@ -1,21 +1,20 @@ - Testing + Reset Password - - Username:
- + + Email:
+
- Password:
- -


Create an Account + Sign In
Home + diff --git a/CRO/server/static/signin.html b/CRO/server/static/signin.html new file mode 100755 index 0000000..f7bd720 --- /dev/null +++ b/CRO/server/static/signin.html @@ -0,0 +1,49 @@ + + + + + + + + Sign in + + + +
+

Sign in

+
+ + + + + +

Register

+

Home

+
+ + + + + diff --git a/CRO/server/static/style.css b/CRO/server/static/style.css new file mode 100644 index 0000000..2d4fd0d --- /dev/null +++ b/CRO/server/static/style.css @@ -0,0 +1,129 @@ + body { + background-color: #F3EBF6; + font-family: 'Ubuntu', sans-serif; + } + + .main { + background-color: #FFFFFF; + width: 400px; + height: 400px; + margin: 7em auto; + border-radius: 1.5em; + box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14); + } + + .sign { + padding-top: 40px; + color: #8C55AA; + font-family: 'Ubuntu', sans-serif; + font-weight: bold; + font-size: 23px; + } + + .un { + width: 76%; + color: rgb(38, 50, 56); + font-weight: 700; + font-size: 14px; + letter-spacing: 1px; + background: rgba(136, 126, 126, 0.04); + padding: 10px 20px; + border: none; + border-radius: 20px; + outline: none; + box-sizing: border-box; + border: 2px solid rgba(0, 0, 0, 0.02); + margin-bottom: 50px; + margin-left: 46px; + text-align: center; + margin-bottom: 27px; + font-family: 'Ubuntu', sans-serif; + } + + .email { + width: 76%; + color: rgb(38, 50, 56); + font-weight: 700; + font-size: 14px; + letter-spacing: 1px; + background: rgba(136, 126, 126, 0.04); + padding: 10px 20px; + border: none; + border-radius: 20px; + outline: none; + box-sizing: border-box; + border: 2px solid rgba(0, 0, 0, 0.02); + margin-bottom: 50px; + margin-left: 46px; + text-align: center; + margin-bottom: 27px; + font-family: 'Ubuntu', sans-serif; + } + + + form.form1 { + padding-top: 40px; + } + + .pass { + width: 76%; + color: rgb(38, 50, 56); + font-weight: 700; + font-size: 14px; + letter-spacing: 1px; + background: rgba(136, 126, 126, 0.04); + padding: 10px 20px; + border: none; + border-radius: 20px; + outline: none; + box-sizing: border-box; + border: 2px solid rgba(0, 0, 0, 0.02); + margin-bottom: 50px; + margin-left: 46px; + text-align: center; + margin-bottom: 27px; + font-family: 'Ubuntu', sans-serif; + } + + + .un:focus, .pass:focus { + border: 2px solid rgba(0, 0, 0, 0.18) !important; + + } + + .submit { + cursor: pointer; + border-radius: 5em; + color: #fff; + background: linear-gradient(to right, #9C27B0, #E040FB); + border: 0; + padding-left: 40px; + padding-right: 40px; + padding-bottom: 10px; + padding-top: 10px; + font-family: 'Ubuntu', sans-serif; + margin-left: 35%; + font-size: 13px; + box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04); + } + + .forgot { + text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12); + color: #E1BEE7; + padding-top: 15px; + } + + a { + text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12); + color: #E1BEE7; + text-decoration: none + } + + @media (max-width: 600px) { + .main { + border-radius: 0px; + } + + + + diff --git a/CRO/session/README.md b/CRO/session/README.md deleted file mode 100755 index e13115c..0000000 --- a/CRO/session/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Perl6 Cro Experimentation - -### Simple Webserver -* Using SQLite3 Implementation Instead of PostgreSQL -* Testing for Ingredient.Guru Final Website - -MORE TO COME IN THE FUTURE diff --git a/CRO/session/server/.DS_Store b/CRO/session/server/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/CRO/session/server/.DS_Store and /dev/null differ diff --git a/CRO/session/server/.cro.yml b/CRO/session/server/.cro.yml deleted file mode 100755 index 2ca6125..0000000 --- a/CRO/session/server/.cro.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -env: [] -links: [] -id: server -entrypoint: service.p6 -name: server -endpoints: - - - host-env: SERVER_HOST - id: http - name: HTTP - protocol: http - port-env: SERVER_PORT -cro: 1 -... \ No newline at end of file diff --git a/CRO/session/server/.dockerignore b/CRO/session/server/.dockerignore deleted file mode 100755 index 860f8b0..0000000 --- a/CRO/session/server/.dockerignore +++ /dev/null @@ -1 +0,0 @@ -.precomp/ diff --git a/CRO/session/server/Dockerfile b/CRO/session/server/Dockerfile deleted file mode 100755 index e35a70e..0000000 --- a/CRO/session/server/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM croservices/cro-http:0.8.1 -RUN mkdir /app -COPY . /app -WORKDIR /app -RUN zef install --deps-only . && perl6 -c -Ilib service.p6 -ENV SERVER_HOST="0.0.0.0" SERVER_PORT="10000" -EXPOSE 10000 -CMD perl6 -Ilib service.p6 diff --git a/CRO/session/server/META6.json b/CRO/session/server/META6.json deleted file mode 100755 index 1396e48..0000000 --- a/CRO/session/server/META6.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "meta-version": "0", - "resources": [ - - ], - "authors": [ - "" - ], - "perl": "6.*", - "auth": "Write me!", - "provides": { - "Routes.pm6": "lib/Routes.pm6" - }, - "test-depends": [ - - ], - "description": "Write me!", - "version": "0.0.1", - "tags": [ - "" - ], - "support": { - "source": "Write me!" - }, - "depends": [ - "Cro::HTTP" - ], - "build-depends": [ - - ], - "source-url": "Write me!", - "license": "Write me!", - "name": "server" -} \ No newline at end of file diff --git a/CRO/session/server/README.md b/CRO/session/server/README.md deleted file mode 100755 index c68aeba..0000000 --- a/CRO/session/server/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# server - -This is an application stub generated by `cro stub`. To try it out, -you'll need to have Cro installed; you can do so using: - -``` -zef install --/test cro -``` - -Then change directory to the app root (the directory containing this -`README.md` file), and run these commands: - -``` -zef install --depsonly . -cro run -``` - -You can also build and run a docker image while in the app root using: - -``` -docker build -t server . -docker run --rm -p 10000:10000 server -``` diff --git a/CRO/session/server/ingredient.db b/CRO/session/server/ingredient.db deleted file mode 100644 index ef8961e..0000000 Binary files a/CRO/session/server/ingredient.db and /dev/null differ diff --git a/CRO/session/server/lib/Routes.pm6 b/CRO/session/server/lib/Routes.pm6 deleted file mode 100755 index 1cf6a5c..0000000 --- a/CRO/session/server/lib/Routes.pm6 +++ /dev/null @@ -1,126 +0,0 @@ -use Cro::HTTP::Router; -use Digest::SHA256::Native; -use DBIish; -use Cro::HTTP::Cookie; - -#Opens Connection -my $dbh = DBIish.connect( 'SQLite', database => './ingredient.db' ); - -#Create SQL Table If Not There -my $sth = $dbh.do(q:to/STATEMENT/); - CREATE TABLE IF NOT EXISTS accounts ( - ID INTEGER PRIMARY KEY AUTOINCREMENT, - username TEXT type UNIQUE, - email TEXT, - password TEXT, - date TEXT - ) - STATEMENT - -my $sth = $dbh.do(q:to/STATEMENT/); - CREATE TABLE IF NOT EXISTS tokens ( - user PRIMARY KEY, - hash TEXT - ) - STATEMENT - -sub routes() is export { - route { - - #Static Page HTML - get -> { - static 'static/index.html' - } - - #Website Paths - get -> 'static', *@path { - static 'static', @path; - } - - #Retrieve Info From register.html - post -> 'register' { - request-body -> (:$username,:$email,:$password) { - - #SQL Insert Statment - $sth = $dbh.prepare(q:to/STATEMENT/); - INSERT INTO accounts (username, email, password, date) - VALUES ( ?, ?, ?, ? ) - STATEMENT - - #Hash Password - my $hashpassword = sha256-hex $password.encode: 'utf8-c8'; - - #Retrieves Date and Time - my $date = Str(DateTime.now); - - #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error) - my $count = $sth.execute($username, $email, $hashpassword, $date); - - #Errors (i.e. Username Already Exists) - CATCH { - default { - say 'Error caught: .message'; - content 'text/html','USERNAME ALREADY EXITS'; - } - return; - } - - #No Problems | Account Created - if $count == 1 { - content 'text/html','SUCCESS'; - } - } - } - #Authentication - get -> 'login', :$at is cookie { - with $at {content 'text/html','Authentication token found: ' ~ $at} - else {static 'static/signin.html'} - } - post -> 'login' , 'authenticate' { - #Retrieving Login Variables - request-body -> (:$userlog,:$passlog) { - - #Hash Password At Login - my $hashlogin = sha256-hex $passlog.encode: 'utf8-c8'; - - #Select Statement to find username - $sth = $dbh.prepare(q:to/STATEMENT/); - select username from accounts WHERE username = (?) - STATEMENT - - #Executes Select statement - $sth.execute($userlog); - - #Stores the result - my $result = $sth.allrows; - - #Starts to check password if a username is found - if $result.elems >= 1 { - $sth = $dbh.prepare(q:to/STATEMENT/); - select password from accounts WHERE password = (?) - STATEMENT - $sth.execute($hashlogin); - - #Stores the returned hash from database - my $hash = $sth.allrows[0]; - - #Checks if hashs match and gives webpage response - if $hashlogin eq $hash { - #at stands for authentication token - my $time = DateTime.now.later(:5minutes); - my $c = Cro::HTTP::Cookie.new(name => "at", value => "beans", expires => $time); - my $token = sha256-hex $time.say ~ $userlog; - set-cookie 'at', $token, expires => $time; - content 'text/html',"Login Successful"; - } else { - content 'text/html', "Login Failed"; - } - #Completes first if statment - } else { - content 'text/html','Login Failed'; - } - } - } - } -} - diff --git a/CRO/session/server/service.p6 b/CRO/session/server/service.p6 deleted file mode 100755 index a42f22b..0000000 --- a/CRO/session/server/service.p6 +++ /dev/null @@ -1,24 +0,0 @@ -use Cro::HTTP::Log::File; -use Cro::HTTP::Server; -use Routes; - -my Cro::Service $http = Cro::HTTP::Server.new( - http => <1.1>, - host => %*ENV || - die("Missing SERVER_HOST in environment"), - port => %*ENV || - die("Missing SERVER_PORT in environment"), - application => routes(), - after => [ - Cro::HTTP::Log::File.new(logs => $*OUT, errors => $*ERR) - ] -); -$http.start; -say "Listening at http://%*ENV:%*ENV"; -react { - whenever signal(SIGINT) { - say "Shutting down..."; - $http.stop; - done; - } -} diff --git a/CRO/session/server/static/index.html b/CRO/session/server/static/index.html deleted file mode 100755 index 8008a1c..0000000 --- a/CRO/session/server/static/index.html +++ /dev/null @@ -1,14 +0,0 @@ -
- - - INGREDIENT GURU - - - -

INGREDIENT GURU

-
Sign In -

- Register - - -
diff --git a/CRO/session/server/static/register.html b/CRO/session/server/static/register.html deleted file mode 100755 index 0d4f1b7..0000000 --- a/CRO/session/server/static/register.html +++ /dev/null @@ -1,26 +0,0 @@ - -
- - - Register - - - - Username:
- -
- Email:
- -
- Password:
- -

- - -

- Already Have An Account? -
- Home - - -
diff --git a/CRO/session/server/static/signin.html b/CRO/session/server/static/signin.html deleted file mode 100755 index 2f2d2f2..0000000 --- a/CRO/session/server/static/signin.html +++ /dev/null @@ -1,23 +0,0 @@ - -
- - - Testing - - -
- Username:
- -
- Password:
- -

- -
-
- Create an Account -
- Home - - -
diff --git a/CRO/sign-in-test/.DS_Store b/CRO/sign-in-test/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/CRO/sign-in-test/.DS_Store and /dev/null differ diff --git a/CRO/sign-in-test/.cro.yml b/CRO/sign-in-test/.cro.yml deleted file mode 100644 index e6d2539..0000000 --- a/CRO/sign-in-test/.cro.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -name: cro-server -entrypoint: service.p6 -links: [] -env: [] -id: cro-server -endpoints: - - - name: HTTP - host-env: CRO_SERVER_HOST - protocol: http - port-env: CRO_SERVER_PORT - id: http -cro: 1 -... diff --git a/CRO/sign-in-test/.dockerignore b/CRO/sign-in-test/.dockerignore deleted file mode 100644 index 860f8b0..0000000 --- a/CRO/sign-in-test/.dockerignore +++ /dev/null @@ -1 +0,0 @@ -.precomp/ diff --git a/CRO/sign-in-test/Dockerfile b/CRO/sign-in-test/Dockerfile deleted file mode 100644 index 7138d54..0000000 --- a/CRO/sign-in-test/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM croservices/cro-http:0.8.1 -RUN mkdir /app -COPY . /app -WORKDIR /app -RUN zef install --deps-only . && perl6 -c -Ilib service.p6 -ENV TEMPLATE_CRO_HOST="0.0.0.0" TEMPLATE_CRO_PORT="10000" -EXPOSE 10000 -CMD perl6 -Ilib service.p6 diff --git a/CRO/sign-in-test/META6.json b/CRO/sign-in-test/META6.json deleted file mode 100644 index e1b3ea7..0000000 --- a/CRO/sign-in-test/META6.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "meta-version": "0", - "test-depends": [ - ], - "support": { - "source": "Write me!" - }, - "tags": [ - "" - ], - "version": "0.0.1", - "name": "server-cro", - "depends": [ - "Cro::HTTP" - ], - "license": "Write me!", - "perl": "6.*", - "authors": [ - "" - ], - "resources": [ - ], - "build-depends": [ - ], - "source-url": "Write me!", - "provides": { - "Routes.pm6": "lib/Routes.pm6" - }, - "description": "Write me!", - "auth": "Write me!" -} diff --git a/CRO/sign-in-test/README.md b/CRO/sign-in-test/README.md deleted file mode 100644 index a761149..0000000 --- a/CRO/sign-in-test/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# template-cro - -This is an application stub generated by `cro stub`. To try it out, -you'll need to have Cro installed; you can do so using: - -``` -zef install --/test cro -``` - -Then change directory to the app root (the directory containing this -`README.md` file), and run these commands: - -``` -zef install --depsonly . -cro run -``` - -You can also build and run a docker image while in the app root using: - -``` -docker build -t template-cro . -docker run --rm -p 10000:10000 template-cro -``` diff --git a/CRO/sign-in-test/lib/HTML-P6/Basic.pm6 b/CRO/sign-in-test/lib/HTML-P6/Basic.pm6 deleted file mode 100644 index 3fea3f5..0000000 --- a/CRO/sign-in-test/lib/HTML-P6/Basic.pm6 +++ /dev/null @@ -1,19 +0,0 @@ -#unit module conv; -module HTML-P6::Basic { - - sub interpretBasic($text, %dict) is export { - my $start; - my $end; - my $varstring; - my $out = $text; - - while index($out, '{{') { - $start = 2 + index $out, '{{'; - $end = -1 + index $out, '}}'; - $varstring = substr $out, $start..$end; - $out = substr($out, 0..$start - 3)~%dict{$varstring}~substr($out, $end + 3..*); - } - return $out; - } - -} diff --git a/CRO/sign-in-test/lib/Routes.pm6 b/CRO/sign-in-test/lib/Routes.pm6 deleted file mode 100644 index 91beb60..0000000 --- a/CRO/sign-in-test/lib/Routes.pm6 +++ /dev/null @@ -1,85 +0,0 @@ -#Route -use HTML-P6::Basic; -use Cro::HTTP::Router; -use Digest::SHA256::Native; -use Cro::HTTP::Client; -use Cro::HTTP::Client::CookieJar; -use Cro::HTTP::Response; -use Cro::HTTP::Request; -use Cro::HTTP::Cookie; - -#my $jar = Cro::HTTP::Client::CookieJar.new; -#my $client = Cro::HTTP::Client.new(cookie-jar => $jar, base-uri => 'http://localhost:20000'); -#my $client = Cro::HTTP::Client.new(base-uri => 'http://localhost:20000'); -#$client.cookie-jar => $jar; -#my $resp = Cro::HTTP::Response.new; -#my $client = Cro::HTTP::Client.new(:cookie-jar); -#say "Cookies: "~$resp.cookies.perl~' |}'; -#my $resp = await $client.get('/login'); -#$jar.add-cookie($c); - -my $jar = Cro::HTTP::Client::CookieJar.new; -my $client = Cro::HTTP::Client.new(cookie-jar => $jar); -sub routes() is export { - route { - get -> { - static 'static/home.html'; - } - get -> 'client', $val { - my $time = DateTime.now.later(:5minutes); - my $c = Cro::HTTP::Cookie.new(name => "happy-cookie", value => $val, expires => $time); - my $resp = $client.get("http://localhost:20000/cookies"); - $jar.add-cookie($c); - content 'text/html' , "* {$jar.contents} *"; - } - get -> 'client2'{ - - } - get -> 'cookies3'{ - my $time = DateTime.now.later(:5minutes) - my $c = Cro::HTTP::Cookie.new(name => "testc", value => $val, expires => $time); - set-cookie "y-cookie", "derp"; - content 'text/html', 'yay'; - } - get -> 'cookies4', :$y-cookie! is cookie { - content 'text/html', "yayyayyyyyyy {$y-cookie}"; - } - get -> 'cookies' , :$set ,:$val { - my $req = Cro::HTTP::Request.new(path => '/cookies'); - if $set { - my $time = DateTime.now.later(:5minutes) - my $c = Cro::HTTP::Cookie.new(name => "testc", value => $val, expires => $time); - $req.add-cookie($c); - } - if $req.has-cookie("testc") { - content 'text/html' , 'Value: '~$req.cookie-value("testc"); - } else { - content 'text/html' , "Cookie not found"; - } - } - get -> 'login' { - static 'static/login.html'; - } - post -> 'login', 'auth'{ - request-body -> (:$uname, :$passwd) { - my %inputdict; - %inputdict = sha256-hex $uname; - %inputdict = sha256-hex $passwd; - %inputdict = $passwd; - %inputdict = $uname; - #my %inputdict = username => $uname, password => $passwd, usha => sha256-hex $uname#, ass => $passwd;#, psha => sha256-hex $passwd; - my $body = 'static/login-post.html'.IO.slurp; - content 'text/html', interpretBasic $body, %inputdict; - } - } - post -> 'form', 'post' { - request-body -> (:$namevar) { - content 'text/html', "Guess what? you came through the POST method, "~$namevar~"!"; - } - } - get -> 'sha', :$a { - with $a {content 'text/html', sha256-hex "$a"} - else {content 'text/html', ":/"} - } - } -} diff --git a/CRO/sign-in-test/service.p6 b/CRO/sign-in-test/service.p6 deleted file mode 100644 index 278e22b..0000000 --- a/CRO/sign-in-test/service.p6 +++ /dev/null @@ -1,24 +0,0 @@ -use Cro::HTTP::Log::File; -use Cro::HTTP::Server; -use Routes; - -my Cro::Service $http = Cro::HTTP::Server.new( - http => <1.1>, - host => %*ENV || - die("Missing CRO_SERVER_HOST in environment"), - port => %*ENV || - die("Missing CRO_SERVER_PORT in environment"), - application => routes(), - after => [ - Cro::HTTP::Log::File.new(logs => $*OUT, errors => $*ERR) - ] -); -$http.start; -say "Listening at http://%*ENV:%*ENV"; -react { - whenever signal(SIGINT) { - say "Shutting down..."; - $http.stop; - done; - } -} diff --git a/CRO/sign-in-test/static/.DS_Store b/CRO/sign-in-test/static/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/CRO/sign-in-test/static/.DS_Store and /dev/null differ diff --git a/CRO/sign-in-test/static/hidden.html b/CRO/sign-in-test/static/hidden.html deleted file mode 100644 index 97739a8..0000000 --- a/CRO/sign-in-test/static/hidden.html +++ /dev/null @@ -1,4 +0,0 @@ -

Html is a bad thing

-

\qq[$super]

-
-

Thats pretty good ;)

diff --git a/CRO/sign-in-test/static/home.html b/CRO/sign-in-test/static/home.html deleted file mode 100644 index c601f7f..0000000 --- a/CRO/sign-in-test/static/home.html +++ /dev/null @@ -1,5 +0,0 @@ -
-

Ingredient.Guru

-
-LOGIN -
diff --git a/CRO/sign-in-test/static/login-post.html b/CRO/sign-in-test/static/login-post.html deleted file mode 100644 index c361fe9..0000000 --- a/CRO/sign-in-test/static/login-post.html +++ /dev/null @@ -1,17 +0,0 @@ -
-

POST results

-
-

- Username: - {{username}} -
- Password: - {{password}} -

- Home -
-Hashes: -
-{{usha}} -
-{{psha}} diff --git a/CRO/sign-in-test/static/login.html b/CRO/sign-in-test/static/login.html deleted file mode 100644 index aa25e64..0000000 --- a/CRO/sign-in-test/static/login.html +++ /dev/null @@ -1,9 +0,0 @@ -
-

Log In

-
-
- Username:
- Password:
- -
-
diff --git a/CRO/sign-in-test/static/mt.html b/CRO/sign-in-test/static/mt.html deleted file mode 100644 index f2130dd..0000000 --- a/CRO/sign-in-test/static/mt.html +++ /dev/null @@ -1,5 +0,0 @@ -

{{prefix}} {{fname}}

-this is a letter to you -
-

jk {{prefix}} {{lname}}

-

congrats on living {{age}} years

diff --git a/CRO/sign-in-test/static/test1.html b/CRO/sign-in-test/static/test1.html deleted file mode 100644 index 648ee97..0000000 --- a/CRO/sign-in-test/static/test1.html +++ /dev/null @@ -1,3 +0,0 @@ -

The test worked!

-
-Click here to go back diff --git a/Postgres/Makefile b/Postgres/Makefile deleted file mode 100644 index 3338f5c..0000000 --- a/Postgres/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -DB=ingredientguru -BUILD=${CURDIR}/build.sql -SCRIPTS=${CURDIR}/ -MASTER=$(SCRIPTS)/import.sql -NORMALIZE = $(SCRIPTS)/normalize.sql - -all: normalize - cat $(BUILD) | envsubst | psql $(DB) - - -import: - @cat $(MASTER) >> $(BUILD) - -normalize: import - @cat $(NORMALIZE) >> $(BUILD) - -clean: - @rm -rf $(BUILD) diff --git a/Postgres/SearchNutr/guru_wrapper.py b/Postgres/SearchNutr/guru_wrapper.py deleted file mode 100755 index 2d5b88f..0000000 --- a/Postgres/SearchNutr/guru_wrapper.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/user/bin/env python3 -import psycopg2 - - -def connect(user,dbname="ingredientguru"): - return psycopg2.connect(f"dbname={dbname} user={user}") - - -def query_ingredients(connection,match): - cur = connection.cursor() - cur.execute("SELECT id,short_description FROM ingredient WHERE lower(short_description) LIKE '%{0}%';".format(str(match).lower())) - - return cur.fetchall() - - -def query_join_nutrient_data(connection,match): - cur = connection.cursor() - cur.execute(f""" - SELECT - food_desc.short_description, - nut_def.tag_name, - nut_dat.nutrient_value, - nut_def.units_of_measurement - FROM ingredient food_desc - LEFT JOIN ingredient_nutrient nut_dat ON food_desc.id = nut_dat.ingredient_id - LEFT JOIN nutrient nut_def ON nut_dat.nutrient_id = nut_def.nutrient_id - WHERE food_desc.id = {match}; - """) - - return cur.fetchall() - - -def print_result_ids(result): - for row in result: - print(row[0],row[1]) - - -if __name__ == '__main__': - c = connect('fcrisafulli') - ingredients = query_ingredients(c,input("Search for a short keyword: ")) - print(ingredients) - result = query_join_nutrient_data(c,input("Type an ID: ")) - print(result) diff --git a/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json b/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json deleted file mode 100644 index 9e26dfe..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json b/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json deleted file mode 100644 index b9b9c0b..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "_ast", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AST", "name": "AST", "type_vars": []}, "flags": [], "fullname": "_ast.AST", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "_ast.AST.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["_ast.AST", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of AST", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_attributes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "_ast.AST._attributes", "name": "_attributes", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "_ast.AST._fields", "name": "_fields", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "col_offset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AST.col_offset", "name": "col_offset", "type": "builtins.int"}}, "lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AST.lineno", "name": "lineno", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Add": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Add", "name": "Add", "type_vars": []}, "flags": [], "fullname": "_ast.Add", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Add", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "And": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.boolop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.And", "name": "And", "type_vars": []}, "flags": [], "fullname": "_ast.And", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.And", "_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AnnAssign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AnnAssign", "name": "AnnAssign", "type_vars": []}, "flags": [], "fullname": "_ast.AnnAssign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AnnAssign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "annotation": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.annotation", "name": "annotation", "type": "_ast.expr"}}, "simple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.simple", "name": "simple", "type": "builtins.int"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.target", "name": "target", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Assert": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Assert", "name": "Assert", "type_vars": []}, "flags": [], "fullname": "_ast.Assert", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Assert", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "msg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assert.msg", "name": "msg", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assert.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Assign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Assign", "name": "Assign", "type_vars": []}, "flags": [], "fullname": "_ast.Assign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Assign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "targets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assign.targets", "name": "targets", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assign.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncFor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncFor", "name": "AsyncFor", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncFor", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncFor", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.iter", "name": "iter", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncFunctionDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncFunctionDef", "name": "AsyncFunctionDef", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncFunctionDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncFunctionDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.name", "name": "name", "type": "builtins.str"}}, "returns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.returns", "name": "returns", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncWith": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncWith", "name": "AsyncWith", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncWith", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncWith", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncWith.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncWith.items", "name": "items", "type": {".class": "Instance", "args": ["_ast.withitem"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Attribute": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Attribute", "name": "Attribute", "type_vars": []}, "flags": [], "fullname": "_ast.Attribute", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Attribute", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "attr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.attr", "name": "attr", "type": "builtins.str"}}, "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugAssign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugAssign", "name": "AugAssign", "type_vars": []}, "flags": [], "fullname": "_ast.AugAssign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugAssign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.op", "name": "op", "type": "_ast.operator"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.target", "name": "target", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugLoad": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugLoad", "name": "AugLoad", "type_vars": []}, "flags": [], "fullname": "_ast.AugLoad", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugLoad", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugStore": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugStore", "name": "AugStore", "type_vars": []}, "flags": [], "fullname": "_ast.AugStore", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugStore", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Await": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Await", "name": "Await", "type_vars": []}, "flags": [], "fullname": "_ast.Await", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Await", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Await.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BinOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BinOp", "name": "BinOp", "type_vars": []}, "flags": [], "fullname": "_ast.BinOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BinOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "left": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.left", "name": "left", "type": "_ast.expr"}}, "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.op", "name": "op", "type": "_ast.operator"}}, "right": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.right", "name": "right", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitAnd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitAnd", "name": "BitAnd", "type_vars": []}, "flags": [], "fullname": "_ast.BitAnd", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitAnd", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitOr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitOr", "name": "BitOr", "type_vars": []}, "flags": [], "fullname": "_ast.BitOr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitOr", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitXor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitXor", "name": "BitXor", "type_vars": []}, "flags": [], "fullname": "_ast.BitXor", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitXor", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BoolOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BoolOp", "name": "BoolOp", "type_vars": []}, "flags": [], "fullname": "_ast.BoolOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BoolOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BoolOp.op", "name": "op", "type": "_ast.boolop"}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BoolOp.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Break": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Break", "name": "Break", "type_vars": []}, "flags": [], "fullname": "_ast.Break", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Break", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Bytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Bytes", "name": "Bytes", "type_vars": []}, "flags": [], "fullname": "_ast.Bytes", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Bytes", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "s": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Bytes.s", "name": "s", "type": "builtins.bytes"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Call": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Call", "name": "Call", "type_vars": []}, "flags": [], "fullname": "_ast.Call", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Call", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.args", "name": "args", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "func": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.func", "name": "func", "type": "_ast.expr"}}, "keywords": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.keywords", "name": "keywords", "type": {".class": "Instance", "args": ["_ast.keyword"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ClassDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ClassDef", "name": "ClassDef", "type_vars": []}, "flags": [], "fullname": "_ast.ClassDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ClassDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "bases": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.bases", "name": "bases", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "keywords": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.keywords", "name": "keywords", "type": {".class": "Instance", "args": ["_ast.keyword"], "type_ref": "builtins.list"}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.name", "name": "name", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ClassVar": {".class": "SymbolTableNode", "cross_ref": "typing.ClassVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Compare": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Compare", "name": "Compare", "type_vars": []}, "flags": [], "fullname": "_ast.Compare", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Compare", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "comparators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.comparators", "name": "comparators", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "left": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.left", "name": "left", "type": "_ast.expr"}}, "ops": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.ops", "name": "ops", "type": {".class": "Instance", "args": ["_ast.cmpop"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Continue": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Continue", "name": "Continue", "type_vars": []}, "flags": [], "fullname": "_ast.Continue", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Continue", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Del": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Del", "name": "Del", "type_vars": []}, "flags": [], "fullname": "_ast.Del", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Del", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Delete": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Delete", "name": "Delete", "type_vars": []}, "flags": [], "fullname": "_ast.Delete", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Delete", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "targets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Delete.targets", "name": "targets", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Dict", "name": "Dict", "type_vars": []}, "flags": [], "fullname": "_ast.Dict", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Dict", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Dict.keys", "name": "keys", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Dict.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "DictComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.DictComp", "name": "DictComp", "type_vars": []}, "flags": [], "fullname": "_ast.DictComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.DictComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}, "key": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.key", "name": "key", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Div": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Div", "name": "Div", "type_vars": []}, "flags": [], "fullname": "_ast.Div", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Div", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Ellipsis", "name": "Ellipsis", "type_vars": []}, "flags": [], "fullname": "_ast.Ellipsis", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Ellipsis", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Eq": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Eq", "name": "Eq", "type_vars": []}, "flags": [], "fullname": "_ast.Eq", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Eq", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ExceptHandler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ExceptHandler", "name": "ExceptHandler", "type_vars": []}, "flags": [], "fullname": "_ast.ExceptHandler", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ExceptHandler", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.name", "name": "name", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.type", "name": "type", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Expr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Expr", "name": "Expr", "type_vars": []}, "flags": [], "fullname": "_ast.Expr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Expr", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Expr.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Expression": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Expression", "name": "Expression", "type_vars": []}, "flags": [], "fullname": "_ast.Expression", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Expression", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Expression.body", "name": "body", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ExtSlice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ExtSlice", "name": "ExtSlice", "type_vars": []}, "flags": [], "fullname": "_ast.ExtSlice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ExtSlice", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "dims": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExtSlice.dims", "name": "dims", "type": {".class": "Instance", "args": ["_ast.slice"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FloorDiv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FloorDiv", "name": "FloorDiv", "type_vars": []}, "flags": [], "fullname": "_ast.FloorDiv", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FloorDiv", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "For": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.For", "name": "For", "type_vars": []}, "flags": [], "fullname": "_ast.For", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.For", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.iter", "name": "iter", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FormattedValue": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FormattedValue", "name": "FormattedValue", "type_vars": []}, "flags": [], "fullname": "_ast.FormattedValue", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FormattedValue", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "conversion": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.conversion", "name": "conversion", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "format_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.format_spec", "name": "format_spec", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FunctionDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FunctionDef", "name": "FunctionDef", "type_vars": []}, "flags": [], "fullname": "_ast.FunctionDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FunctionDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.name", "name": "name", "type": "builtins.str"}}, "returns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.returns", "name": "returns", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorExp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.GeneratorExp", "name": "GeneratorExp", "type_vars": []}, "flags": [], "fullname": "_ast.GeneratorExp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.GeneratorExp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.GeneratorExp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.GeneratorExp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Global": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Global", "name": "Global", "type_vars": []}, "flags": [], "fullname": "_ast.Global", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Global", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Global.names", "name": "names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Gt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Gt", "name": "Gt", "type_vars": []}, "flags": [], "fullname": "_ast.Gt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Gt", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GtE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.GtE", "name": "GtE", "type_vars": []}, "flags": [], "fullname": "_ast.GtE", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.GtE", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "If": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.If", "name": "If", "type_vars": []}, "flags": [], "fullname": "_ast.If", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.If", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IfExp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.IfExp", "name": "IfExp", "type_vars": []}, "flags": [], "fullname": "_ast.IfExp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.IfExp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.body", "name": "body", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.orelse", "name": "orelse", "type": "_ast.expr"}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Import": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Import", "name": "Import", "type_vars": []}, "flags": [], "fullname": "_ast.Import", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Import", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Import.names", "name": "names", "type": {".class": "Instance", "args": ["_ast.alias"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ImportFrom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ImportFrom", "name": "ImportFrom", "type_vars": []}, "flags": [], "fullname": "_ast.ImportFrom", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ImportFrom", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "level": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.level", "name": "level", "type": "builtins.int"}}, "module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.module", "name": "module", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.names", "name": "names", "type": {".class": "Instance", "args": ["_ast.alias"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "In": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.In", "name": "In", "type_vars": []}, "flags": [], "fullname": "_ast.In", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.In", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Index": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Index", "name": "Index", "type_vars": []}, "flags": [], "fullname": "_ast.Index", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Index", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Index.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Interactive": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Interactive", "name": "Interactive", "type_vars": []}, "flags": [], "fullname": "_ast.Interactive", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Interactive", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Interactive.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Invert": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Invert", "name": "Invert", "type_vars": []}, "flags": [], "fullname": "_ast.Invert", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Invert", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Is": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Is", "name": "Is", "type_vars": []}, "flags": [], "fullname": "_ast.Is", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Is", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IsNot": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.IsNot", "name": "IsNot", "type_vars": []}, "flags": [], "fullname": "_ast.IsNot", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.IsNot", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "JoinedStr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.JoinedStr", "name": "JoinedStr", "type_vars": []}, "flags": [], "fullname": "_ast.JoinedStr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.JoinedStr", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.JoinedStr.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LShift": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.LShift", "name": "LShift", "type_vars": []}, "flags": [], "fullname": "_ast.LShift", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.LShift", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Lambda": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Lambda", "name": "Lambda", "type_vars": []}, "flags": [], "fullname": "_ast.Lambda", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Lambda", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Lambda.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Lambda.body", "name": "body", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.List", "name": "List", "type_vars": []}, "flags": [], "fullname": "_ast.List", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.List", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.List.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.List.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ListComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ListComp", "name": "ListComp", "type_vars": []}, "flags": [], "fullname": "_ast.ListComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ListComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ListComp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ListComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Load": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Load", "name": "Load", "type_vars": []}, "flags": [], "fullname": "_ast.Load", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Load", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Lt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Lt", "name": "Lt", "type_vars": []}, "flags": [], "fullname": "_ast.Lt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Lt", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LtE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.LtE", "name": "LtE", "type_vars": []}, "flags": [], "fullname": "_ast.LtE", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.LtE", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MatMult": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.MatMult", "name": "MatMult", "type_vars": []}, "flags": [], "fullname": "_ast.MatMult", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.MatMult", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Mod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Mod", "name": "Mod", "type_vars": []}, "flags": [], "fullname": "_ast.Mod", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Mod", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Module": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Module", "name": "Module", "type_vars": []}, "flags": [], "fullname": "_ast.Module", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Module", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Module.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Module.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Mult": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Mult", "name": "Mult", "type_vars": []}, "flags": [], "fullname": "_ast.Mult", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Mult", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Name", "name": "Name", "type_vars": []}, "flags": [], "fullname": "_ast.Name", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Name", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Name.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "id": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Name.id", "name": "id", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NameConstant": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NameConstant", "name": "NameConstant", "type_vars": []}, "flags": [], "fullname": "_ast.NameConstant", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NameConstant", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.NameConstant.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Nonlocal": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Nonlocal", "name": "Nonlocal", "type_vars": []}, "flags": [], "fullname": "_ast.Nonlocal", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Nonlocal", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Nonlocal.names", "name": "names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Not": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Not", "name": "Not", "type_vars": []}, "flags": [], "fullname": "_ast.Not", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Not", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotEq": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NotEq", "name": "NotEq", "type_vars": []}, "flags": [], "fullname": "_ast.NotEq", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NotEq", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotIn": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NotIn", "name": "NotIn", "type_vars": []}, "flags": [], "fullname": "_ast.NotIn", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NotIn", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Num": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Num", "name": "Num", "type_vars": []}, "flags": [], "fullname": "_ast.Num", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Num", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "n": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Num.n", "name": "n", "type": "builtins.float"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Or": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.boolop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Or", "name": "Or", "type_vars": []}, "flags": [], "fullname": "_ast.Or", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Or", "_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Param": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Param", "name": "Param", "type_vars": []}, "flags": [], "fullname": "_ast.Param", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Param", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Pass": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Pass", "name": "Pass", "type_vars": []}, "flags": [], "fullname": "_ast.Pass", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Pass", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Pow": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Pow", "name": "Pow", "type_vars": []}, "flags": [], "fullname": "_ast.Pow", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Pow", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PyCF_ONLY_AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.PyCF_ONLY_AST", "name": "PyCF_ONLY_AST", "type": "builtins.int"}}, "RShift": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.RShift", "name": "RShift", "type_vars": []}, "flags": [], "fullname": "_ast.RShift", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.RShift", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Raise": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Raise", "name": "Raise", "type_vars": []}, "flags": [], "fullname": "_ast.Raise", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Raise", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "cause": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Raise.cause", "name": "cause", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "exc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Raise.exc", "name": "exc", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Return": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Return", "name": "Return", "type_vars": []}, "flags": [], "fullname": "_ast.Return", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Return", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Return.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Set", "name": "Set", "type_vars": []}, "flags": [], "fullname": "_ast.Set", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Set", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Set.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SetComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.SetComp", "name": "SetComp", "type_vars": []}, "flags": [], "fullname": "_ast.SetComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.SetComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.SetComp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.SetComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Slice", "name": "Slice", "type_vars": []}, "flags": [], "fullname": "_ast.Slice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Slice", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.lower", "name": "lower", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.step", "name": "step", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.upper", "name": "upper", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Starred": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Starred", "name": "Starred", "type_vars": []}, "flags": [], "fullname": "_ast.Starred", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Starred", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Starred.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Starred.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Store": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Store", "name": "Store", "type_vars": []}, "flags": [], "fullname": "_ast.Store", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Store", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Str": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Str", "name": "Str", "type_vars": []}, "flags": [], "fullname": "_ast.Str", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Str", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "s": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Str.s", "name": "s", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Sub": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Sub", "name": "Sub", "type_vars": []}, "flags": [], "fullname": "_ast.Sub", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Sub", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Subscript": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Subscript", "name": "Subscript", "type_vars": []}, "flags": [], "fullname": "_ast.Subscript", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Subscript", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "slice": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.slice", "name": "slice", "type": "_ast.slice"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Suite": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Suite", "name": "Suite", "type_vars": []}, "flags": [], "fullname": "_ast.Suite", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Suite", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Suite.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Try": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Try", "name": "Try", "type_vars": []}, "flags": [], "fullname": "_ast.Try", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Try", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "finalbody": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.finalbody", "name": "finalbody", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "handlers": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.handlers", "name": "handlers", "type": {".class": "Instance", "args": ["_ast.ExceptHandler"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Tuple", "name": "Tuple", "type_vars": []}, "flags": [], "fullname": "_ast.Tuple", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Tuple", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Tuple.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Tuple.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UAdd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.UAdd", "name": "UAdd", "type_vars": []}, "flags": [], "fullname": "_ast.UAdd", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.UAdd", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "USub": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.USub", "name": "USub", "type_vars": []}, "flags": [], "fullname": "_ast.USub", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.USub", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnaryOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.UnaryOp", "name": "UnaryOp", "type_vars": []}, "flags": [], "fullname": "_ast.UnaryOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.UnaryOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.UnaryOp.op", "name": "op", "type": "_ast.unaryop"}}, "operand": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.UnaryOp.operand", "name": "operand", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "While": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.While", "name": "While", "type_vars": []}, "flags": [], "fullname": "_ast.While", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.While", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "With": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.With", "name": "With", "type_vars": []}, "flags": [], "fullname": "_ast.With", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.With", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.With.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.With.items", "name": "items", "type": {".class": "Instance", "args": ["_ast.withitem"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Yield": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Yield", "name": "Yield", "type_vars": []}, "flags": [], "fullname": "_ast.Yield", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Yield", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Yield.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "YieldFrom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.YieldFrom", "name": "YieldFrom", "type_vars": []}, "flags": [], "fullname": "_ast.YieldFrom", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.YieldFrom", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.YieldFrom.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__package__", "name": "__package__", "type": "builtins.str"}}, "_identifier": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "_ast._identifier", "line": 7, "no_args": true, "normalized": false, "target": "builtins.str"}}, "_slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "_ast._slice", "line": 154, "no_args": true, "normalized": false, "target": "_ast.slice"}}, "alias": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.alias", "name": "alias", "type_vars": []}, "flags": [], "fullname": "_ast.alias", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.alias", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "asname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.alias.asname", "name": "asname", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.alias.name", "name": "name", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "arg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.arg", "name": "arg", "type_vars": []}, "flags": [], "fullname": "_ast.arg", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.arg", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "annotation": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arg.annotation", "name": "annotation", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "arg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arg.arg", "name": "arg", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "arguments": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.arguments", "name": "arguments", "type_vars": []}, "flags": [], "fullname": "_ast.arguments", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.arguments", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.args", "name": "args", "type": {".class": "Instance", "args": ["_ast.arg"], "type_ref": "builtins.list"}}}, "defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.defaults", "name": "defaults", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "kw_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kw_defaults", "name": "kw_defaults", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "kwarg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kwarg", "name": "kwarg", "type": {".class": "UnionType", "items": ["_ast.arg", {".class": "NoneTyp"}]}}}, "kwonlyargs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kwonlyargs", "name": "kwonlyargs", "type": {".class": "Instance", "args": ["_ast.arg"], "type_ref": "builtins.list"}}}, "vararg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.vararg", "name": "vararg", "type": {".class": "UnionType", "items": ["_ast.arg", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "boolop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.boolop", "name": "boolop", "type_vars": []}, "flags": [], "fullname": "_ast.boolop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "cmpop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.cmpop", "name": "cmpop", "type_vars": []}, "flags": [], "fullname": "_ast.cmpop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "comprehension": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.comprehension", "name": "comprehension", "type_vars": []}, "flags": [], "fullname": "_ast.comprehension", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.comprehension", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ifs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.ifs", "name": "ifs", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "is_async": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.is_async", "name": "is_async", "type": "builtins.int"}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.iter", "name": "iter", "type": "_ast.expr"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "expr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.expr", "name": "expr", "type_vars": []}, "flags": [], "fullname": "_ast.expr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "expr_context": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.expr_context", "name": "expr_context", "type_vars": []}, "flags": [], "fullname": "_ast.expr_context", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "keyword": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.keyword", "name": "keyword", "type_vars": []}, "flags": [], "fullname": "_ast.keyword", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.keyword", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "arg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.keyword.arg", "name": "arg", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.keyword.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "mod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.mod", "name": "mod", "type_vars": []}, "flags": [], "fullname": "_ast.mod", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "operator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.operator", "name": "operator", "type_vars": []}, "flags": [], "fullname": "_ast.operator", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.slice", "name": "slice", "type_vars": []}, "flags": [], "fullname": "_ast.slice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "stmt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.stmt", "name": "stmt", "type_vars": []}, "flags": [], "fullname": "_ast.stmt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef", "module_hidden": true, "module_public": false}, "unaryop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.unaryop", "name": "unaryop", "type_vars": []}, "flags": [], "fullname": "_ast.unaryop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "withitem": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.withitem", "name": "withitem", "type_vars": []}, "flags": [], "fullname": "_ast.withitem", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.withitem", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "context_expr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.withitem.context_expr", "name": "context_expr", "type": "_ast.expr"}}, "optional_vars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.withitem.optional_vars", "name": "optional_vars", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_ast.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json b/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json deleted file mode 100644 index 2aa437a..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 1, 1], "dep_prios": [10, 5, 5, 30], "dependencies": ["sys", "typing", "builtins", "abc"], "hash": "8ec0450c6aa8b9e61865d2ae39b6328a", "id": "_ast", "ignore_all": true, "interface_hash": "3b87726ef6d599d94114e992567140c7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_ast.pyi", "size": 8992, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json b/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json deleted file mode 100644 index 156317d..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "_importlib_modulespec", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.Loader", "name": "Loader", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.Loader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "flags": [], "fullname": "_importlib_modulespec.Loader.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of Loader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "_importlib_modulespec.Loader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of Loader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "_importlib_modulespec.Loader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["_importlib_modulespec.Loader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of Loader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "_importlib_modulespec.Loader.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of Loader", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleSpec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.ModuleSpec", "name": "ModuleSpec", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.ModuleSpec", "metaclass_type": null, "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.ModuleSpec", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5, 5, 5], "arg_names": ["self", "name", "loader", "origin", "loader_state", "is_package"], "flags": [], "fullname": "_importlib_modulespec.ModuleSpec.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5, 5, 5], "arg_names": ["self", "name", "loader", "origin", "loader_state", "is_package"], "arg_types": ["_importlib_modulespec.ModuleSpec", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ModuleSpec", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "cached": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.cached", "name": "cached", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "has_location": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.has_location", "name": "has_location", "type": "builtins.bool"}}, "loader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.loader", "name": "loader", "type": {".class": "UnionType", "items": ["_importlib_modulespec._Loader", {".class": "NoneTyp"}]}}}, "loader_state": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.loader_state", "name": "loader_state", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.name", "name": "name", "type": "builtins.str"}}, "origin": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.origin", "name": "origin", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "parent": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.parent", "name": "parent", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "submodule_search_locations": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.submodule_search_locations", "name": "submodule_search_locations", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.ModuleType", "name": "ModuleType", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.ModuleType", "metaclass_type": null, "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.ModuleType", "builtins.object"], "names": {".class": "SymbolTable", "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__file__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__file__", "name": "__file__", "type": "builtins.str"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "name", "doc"], "flags": [], "fullname": "_importlib_modulespec.ModuleType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "name", "doc"], "arg_types": ["_importlib_modulespec.ModuleType", "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ModuleType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__loader__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__loader__", "name": "__loader__", "type": {".class": "UnionType", "items": ["_importlib_modulespec._Loader", {".class": "NoneTyp"}]}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__package__", "name": "__package__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__spec__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__spec__", "name": "__spec__", "type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Protocol": {".class": "SymbolTableNode", "cross_ref": "typing.Protocol", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec._Loader", "name": "_Loader", "type_vars": []}, "flags": ["is_protocol"], "fullname": "_importlib_modulespec._Loader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec._Loader", "builtins.object"], "names": {".class": "SymbolTable", "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "_importlib_modulespec._Loader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["_importlib_modulespec._Loader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of _Loader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__package__", "name": "__package__", "type": "builtins.str"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json b/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json deleted file mode 100644 index 0e13d0a..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [10, 11, 12, 1], "dep_prios": [5, 10, 5, 5], "dependencies": ["abc", "sys", "typing", "builtins"], "hash": "f3f36a25ee3040c6b86752e0c4338fde", "id": "_importlib_modulespec", "ignore_all": true, "interface_hash": "daa3c7e4e4177bb45d96512124becd67", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi", "size": 1764, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/abc.data.json deleted file mode 100644 index 2ce76f6..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/abc.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "abc.ABC", "name": "ABC", "type_vars": []}, "flags": [], "fullname": "abc.ABC", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "abc", "mro": ["abc.ABC", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ABCMeta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.type"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "abc.ABCMeta", "name": "ABCMeta", "type_vars": []}, "flags": [], "fullname": "abc.ABCMeta", "metaclass_type": null, "metadata": {}, "module_name": "abc", "mro": ["abc.ABCMeta", "builtins.type", "builtins.object"], "names": {".class": "SymbolTable", "register": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "subclass"], "flags": [], "fullname": "abc.ABCMeta.register", "name": "register", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "subclass"], "arg_types": ["abc.ABCMeta", {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register of ABCMeta", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_FuncT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "abc._FuncT", "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "abc._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractclassmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractclassmethod", "name": "abstractclassmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractclassmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "abstractmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractmethod", "name": "abstractmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "abstractproperty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.property"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "abc.abstractproperty", "name": "abstractproperty", "type_vars": []}, "flags": [], "fullname": "abc.abstractproperty", "metaclass_type": null, "metadata": {}, "module_name": "abc", "mro": ["abc.abstractproperty", "builtins.property", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "abstractstaticmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractstaticmethod", "name": "abstractstaticmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractstaticmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "get_cache_token": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "abc.get_cache_token", "name": "get_cache_token", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_cache_token", "ret_type": "builtins.object", "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/abc.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json deleted file mode 100644 index 2657c02..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 1], "dep_prios": [5, 5], "dependencies": ["typing", "builtins"], "hash": "2584c2f5c4667a231d7afdd171e0b0a2", "id": "abc", "ignore_all": true, "interface_hash": "085ed7492d8ddf3c6fe154b4c64883f7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/abc.pyi", "size": 613, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/ast.data.json b/Postgres/StressTests/.mypy_cache/3.7/ast.data.json deleted file mode 100644 index 5d1e0ba..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/ast.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "ast", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AST": {".class": "SymbolTableNode", "cross_ref": "_ast.AST", "kind": "Gdef"}, "Add": {".class": "SymbolTableNode", "cross_ref": "_ast.Add", "kind": "Gdef"}, "And": {".class": "SymbolTableNode", "cross_ref": "_ast.And", "kind": "Gdef"}, "AnnAssign": {".class": "SymbolTableNode", "cross_ref": "_ast.AnnAssign", "kind": "Gdef"}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Assert": {".class": "SymbolTableNode", "cross_ref": "_ast.Assert", "kind": "Gdef"}, "Assign": {".class": "SymbolTableNode", "cross_ref": "_ast.Assign", "kind": "Gdef"}, "AsyncFor": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncFor", "kind": "Gdef"}, "AsyncFunctionDef": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncFunctionDef", "kind": "Gdef"}, "AsyncWith": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncWith", "kind": "Gdef"}, "Attribute": {".class": "SymbolTableNode", "cross_ref": "_ast.Attribute", "kind": "Gdef"}, "AugAssign": {".class": "SymbolTableNode", "cross_ref": "_ast.AugAssign", "kind": "Gdef"}, "AugLoad": {".class": "SymbolTableNode", "cross_ref": "_ast.AugLoad", "kind": "Gdef"}, "AugStore": {".class": "SymbolTableNode", "cross_ref": "_ast.AugStore", "kind": "Gdef"}, "Await": {".class": "SymbolTableNode", "cross_ref": "_ast.Await", "kind": "Gdef"}, "BinOp": {".class": "SymbolTableNode", "cross_ref": "_ast.BinOp", "kind": "Gdef"}, "BitAnd": {".class": "SymbolTableNode", "cross_ref": "_ast.BitAnd", "kind": "Gdef"}, "BitOr": {".class": "SymbolTableNode", "cross_ref": "_ast.BitOr", "kind": "Gdef"}, "BitXor": {".class": "SymbolTableNode", "cross_ref": "_ast.BitXor", "kind": "Gdef"}, "BoolOp": {".class": "SymbolTableNode", "cross_ref": "_ast.BoolOp", "kind": "Gdef"}, "Break": {".class": "SymbolTableNode", "cross_ref": "_ast.Break", "kind": "Gdef"}, "Bytes": {".class": "SymbolTableNode", "cross_ref": "_ast.Bytes", "kind": "Gdef"}, "Call": {".class": "SymbolTableNode", "cross_ref": "_ast.Call", "kind": "Gdef"}, "ClassDef": {".class": "SymbolTableNode", "cross_ref": "_ast.ClassDef", "kind": "Gdef"}, "Compare": {".class": "SymbolTableNode", "cross_ref": "_ast.Compare", "kind": "Gdef"}, "Continue": {".class": "SymbolTableNode", "cross_ref": "_ast.Continue", "kind": "Gdef"}, "Del": {".class": "SymbolTableNode", "cross_ref": "_ast.Del", "kind": "Gdef"}, "Delete": {".class": "SymbolTableNode", "cross_ref": "_ast.Delete", "kind": "Gdef"}, "Dict": {".class": "SymbolTableNode", "cross_ref": "_ast.Dict", "kind": "Gdef"}, "DictComp": {".class": "SymbolTableNode", "cross_ref": "_ast.DictComp", "kind": "Gdef"}, "Div": {".class": "SymbolTableNode", "cross_ref": "_ast.Div", "kind": "Gdef"}, "Ellipsis": {".class": "SymbolTableNode", "cross_ref": "_ast.Ellipsis", "kind": "Gdef"}, "Eq": {".class": "SymbolTableNode", "cross_ref": "_ast.Eq", "kind": "Gdef"}, "ExceptHandler": {".class": "SymbolTableNode", "cross_ref": "_ast.ExceptHandler", "kind": "Gdef"}, "Expr": {".class": "SymbolTableNode", "cross_ref": "_ast.Expr", "kind": "Gdef"}, "Expression": {".class": "SymbolTableNode", "cross_ref": "_ast.Expression", "kind": "Gdef"}, "ExtSlice": {".class": "SymbolTableNode", "cross_ref": "_ast.ExtSlice", "kind": "Gdef"}, "FloorDiv": {".class": "SymbolTableNode", "cross_ref": "_ast.FloorDiv", "kind": "Gdef"}, "For": {".class": "SymbolTableNode", "cross_ref": "_ast.For", "kind": "Gdef"}, "FormattedValue": {".class": "SymbolTableNode", "cross_ref": "_ast.FormattedValue", "kind": "Gdef"}, "FunctionDef": {".class": "SymbolTableNode", "cross_ref": "_ast.FunctionDef", "kind": "Gdef"}, "GeneratorExp": {".class": "SymbolTableNode", "cross_ref": "_ast.GeneratorExp", "kind": "Gdef"}, "Global": {".class": "SymbolTableNode", "cross_ref": "_ast.Global", "kind": "Gdef"}, "Gt": {".class": "SymbolTableNode", "cross_ref": "_ast.Gt", "kind": "Gdef"}, "GtE": {".class": "SymbolTableNode", "cross_ref": "_ast.GtE", "kind": "Gdef"}, "If": {".class": "SymbolTableNode", "cross_ref": "_ast.If", "kind": "Gdef"}, "IfExp": {".class": "SymbolTableNode", "cross_ref": "_ast.IfExp", "kind": "Gdef"}, "Import": {".class": "SymbolTableNode", "cross_ref": "_ast.Import", "kind": "Gdef"}, "ImportFrom": {".class": "SymbolTableNode", "cross_ref": "_ast.ImportFrom", "kind": "Gdef"}, "In": {".class": "SymbolTableNode", "cross_ref": "_ast.In", "kind": "Gdef"}, "Index": {".class": "SymbolTableNode", "cross_ref": "_ast.Index", "kind": "Gdef"}, "Interactive": {".class": "SymbolTableNode", "cross_ref": "_ast.Interactive", "kind": "Gdef"}, "Invert": {".class": "SymbolTableNode", "cross_ref": "_ast.Invert", "kind": "Gdef"}, "Is": {".class": "SymbolTableNode", "cross_ref": "_ast.Is", "kind": "Gdef"}, "IsNot": {".class": "SymbolTableNode", "cross_ref": "_ast.IsNot", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "JoinedStr": {".class": "SymbolTableNode", "cross_ref": "_ast.JoinedStr", "kind": "Gdef"}, "LShift": {".class": "SymbolTableNode", "cross_ref": "_ast.LShift", "kind": "Gdef"}, "Lambda": {".class": "SymbolTableNode", "cross_ref": "_ast.Lambda", "kind": "Gdef"}, "List": {".class": "SymbolTableNode", "cross_ref": "_ast.List", "kind": "Gdef"}, "ListComp": {".class": "SymbolTableNode", "cross_ref": "_ast.ListComp", "kind": "Gdef"}, "Load": {".class": "SymbolTableNode", "cross_ref": "_ast.Load", "kind": "Gdef"}, "Lt": {".class": "SymbolTableNode", "cross_ref": "_ast.Lt", "kind": "Gdef"}, "LtE": {".class": "SymbolTableNode", "cross_ref": "_ast.LtE", "kind": "Gdef"}, "MatMult": {".class": "SymbolTableNode", "cross_ref": "_ast.MatMult", "kind": "Gdef"}, "Mod": {".class": "SymbolTableNode", "cross_ref": "_ast.Mod", "kind": "Gdef"}, "Module": {".class": "SymbolTableNode", "cross_ref": "_ast.Module", "kind": "Gdef"}, "Mult": {".class": "SymbolTableNode", "cross_ref": "_ast.Mult", "kind": "Gdef"}, "Name": {".class": "SymbolTableNode", "cross_ref": "_ast.Name", "kind": "Gdef"}, "NameConstant": {".class": "SymbolTableNode", "cross_ref": "_ast.NameConstant", "kind": "Gdef"}, "NodeTransformer": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["ast.NodeVisitor"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "ast.NodeTransformer", "name": "NodeTransformer", "type_vars": []}, "flags": [], "fullname": "ast.NodeTransformer", "metaclass_type": null, "metadata": {}, "module_name": "ast", "mro": ["ast.NodeTransformer", "ast.NodeVisitor", "builtins.object"], "names": {".class": "SymbolTable", "generic_visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeTransformer.generic_visit", "name": "generic_visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeTransformer", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "generic_visit of NodeTransformer", "ret_type": {".class": "UnionType", "items": ["_ast.AST", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NodeVisitor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "ast.NodeVisitor", "name": "NodeVisitor", "type_vars": []}, "flags": [], "fullname": "ast.NodeVisitor", "metaclass_type": null, "metadata": {}, "module_name": "ast", "mro": ["ast.NodeVisitor", "builtins.object"], "names": {".class": "SymbolTable", "generic_visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeVisitor.generic_visit", "name": "generic_visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeVisitor", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "generic_visit of NodeVisitor", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeVisitor.visit", "name": "visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeVisitor", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "visit of NodeVisitor", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Nonlocal": {".class": "SymbolTableNode", "cross_ref": "_ast.Nonlocal", "kind": "Gdef"}, "Not": {".class": "SymbolTableNode", "cross_ref": "_ast.Not", "kind": "Gdef"}, "NotEq": {".class": "SymbolTableNode", "cross_ref": "_ast.NotEq", "kind": "Gdef"}, "NotIn": {".class": "SymbolTableNode", "cross_ref": "_ast.NotIn", "kind": "Gdef"}, "Num": {".class": "SymbolTableNode", "cross_ref": "_ast.Num", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Or": {".class": "SymbolTableNode", "cross_ref": "_ast.Or", "kind": "Gdef"}, "Param": {".class": "SymbolTableNode", "cross_ref": "_ast.Param", "kind": "Gdef"}, "Pass": {".class": "SymbolTableNode", "cross_ref": "_ast.Pass", "kind": "Gdef"}, "Pow": {".class": "SymbolTableNode", "cross_ref": "_ast.Pow", "kind": "Gdef"}, "PyCF_ONLY_AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.PyCF_ONLY_AST", "name": "PyCF_ONLY_AST", "type": "builtins.int"}}, "RShift": {".class": "SymbolTableNode", "cross_ref": "_ast.RShift", "kind": "Gdef"}, "Raise": {".class": "SymbolTableNode", "cross_ref": "_ast.Raise", "kind": "Gdef"}, "Return": {".class": "SymbolTableNode", "cross_ref": "_ast.Return", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "_ast.Set", "kind": "Gdef"}, "SetComp": {".class": "SymbolTableNode", "cross_ref": "_ast.SetComp", "kind": "Gdef"}, "Slice": {".class": "SymbolTableNode", "cross_ref": "_ast.Slice", "kind": "Gdef"}, "Starred": {".class": "SymbolTableNode", "cross_ref": "_ast.Starred", "kind": "Gdef"}, "Store": {".class": "SymbolTableNode", "cross_ref": "_ast.Store", "kind": "Gdef"}, "Str": {".class": "SymbolTableNode", "cross_ref": "_ast.Str", "kind": "Gdef"}, "Sub": {".class": "SymbolTableNode", "cross_ref": "_ast.Sub", "kind": "Gdef"}, "Subscript": {".class": "SymbolTableNode", "cross_ref": "_ast.Subscript", "kind": "Gdef"}, "Suite": {".class": "SymbolTableNode", "cross_ref": "_ast.Suite", "kind": "Gdef"}, "Try": {".class": "SymbolTableNode", "cross_ref": "_ast.Try", "kind": "Gdef"}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "_ast.Tuple", "kind": "Gdef"}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UAdd": {".class": "SymbolTableNode", "cross_ref": "_ast.UAdd", "kind": "Gdef"}, "USub": {".class": "SymbolTableNode", "cross_ref": "_ast.USub", "kind": "Gdef"}, "UnaryOp": {".class": "SymbolTableNode", "cross_ref": "_ast.UnaryOp", "kind": "Gdef"}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "While": {".class": "SymbolTableNode", "cross_ref": "_ast.While", "kind": "Gdef"}, "With": {".class": "SymbolTableNode", "cross_ref": "_ast.With", "kind": "Gdef"}, "Yield": {".class": "SymbolTableNode", "cross_ref": "_ast.Yield", "kind": "Gdef"}, "YieldFrom": {".class": "SymbolTableNode", "cross_ref": "_ast.YieldFrom", "kind": "Gdef"}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "ast._T", "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__package__", "name": "__package__", "type": "builtins.str"}}, "_typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef"}, "alias": {".class": "SymbolTableNode", "cross_ref": "_ast.alias", "kind": "Gdef"}, "arg": {".class": "SymbolTableNode", "cross_ref": "_ast.arg", "kind": "Gdef"}, "arguments": {".class": "SymbolTableNode", "cross_ref": "_ast.arguments", "kind": "Gdef"}, "boolop": {".class": "SymbolTableNode", "cross_ref": "_ast.boolop", "kind": "Gdef"}, "cmpop": {".class": "SymbolTableNode", "cross_ref": "_ast.cmpop", "kind": "Gdef"}, "comprehension": {".class": "SymbolTableNode", "cross_ref": "_ast.comprehension", "kind": "Gdef"}, "copy_location": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["new_node", "old_node"], "flags": [], "fullname": "ast.copy_location", "name": "copy_location", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["new_node", "old_node"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy_location", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "dump": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["node", "annotate_fields", "include_attributes"], "flags": [], "fullname": "ast.dump", "name": "dump", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["node", "annotate_fields", "include_attributes"], "arg_types": ["_ast.AST", "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dump", "ret_type": "builtins.str", "variables": []}}}, "expr": {".class": "SymbolTableNode", "cross_ref": "_ast.expr", "kind": "Gdef"}, "expr_context": {".class": "SymbolTableNode", "cross_ref": "_ast.expr_context", "kind": "Gdef"}, "fix_missing_locations": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.fix_missing_locations", "name": "fix_missing_locations", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fix_missing_locations", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "get_docstring": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["node", "clean"], "flags": [], "fullname": "ast.get_docstring", "name": "get_docstring", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["node", "clean"], "arg_types": ["_ast.AST", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_docstring", "ret_type": "builtins.str", "variables": []}}}, "increment_lineno": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["node", "n"], "flags": [], "fullname": "ast.increment_lineno", "name": "increment_lineno", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["node", "n"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "increment_lineno", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "iter_child_nodes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.iter_child_nodes", "name": "iter_child_nodes", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter_child_nodes", "ret_type": {".class": "Instance", "args": ["_ast.AST"], "type_ref": "typing.Iterator"}, "variables": []}}}, "iter_fields": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.iter_fields", "name": "iter_fields", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter_fields", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}], "type_ref": "typing.Iterator"}, "variables": []}}}, "keyword": {".class": "SymbolTableNode", "cross_ref": "_ast.keyword", "kind": "Gdef"}, "literal_eval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node_or_string"], "flags": [], "fullname": "ast.literal_eval", "name": "literal_eval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node_or_string"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "_ast.AST"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "literal_eval", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "mod": {".class": "SymbolTableNode", "cross_ref": "_ast.mod", "kind": "Gdef"}, "operator": {".class": "SymbolTableNode", "cross_ref": "_ast.operator", "kind": "Gdef"}, "parse": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["source", "filename", "mode"], "flags": [], "fullname": "ast.parse", "name": "parse", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["source", "filename", "mode"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, {".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parse", "ret_type": "_ast.Module", "variables": []}}}, "slice": {".class": "SymbolTableNode", "cross_ref": "_ast.slice", "kind": "Gdef"}, "stmt": {".class": "SymbolTableNode", "cross_ref": "_ast.stmt", "kind": "Gdef"}, "unaryop": {".class": "SymbolTableNode", "cross_ref": "_ast.unaryop", "kind": "Gdef"}, "walk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.walk", "name": "walk", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "walk", "ret_type": {".class": "Instance", "args": ["_ast.AST"], "type_ref": "typing.Iterator"}, "variables": []}}}, "withitem": {".class": "SymbolTableNode", "cross_ref": "_ast.withitem", "kind": "Gdef"}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/ast.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json b/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json deleted file mode 100644 index 3973fff..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 9, 1], "dep_prios": [5, 5, 5], "dependencies": ["typing", "_ast", "builtins"], "hash": "5cf413210661f731a5394a6be766862c", "id": "ast", "ignore_all": true, "interface_hash": "0371341a3f6150dbd66bcdfb0b1d6b9e", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/ast.pyi", "size": 1211, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json b/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json deleted file mode 100644 index 0a47c49..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "builtins", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ArithmeticError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ArithmeticError", "name": "ArithmeticError", "type_vars": []}, "flags": [], "fullname": "builtins.ArithmeticError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AssertionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.AssertionError", "name": "AssertionError", "type_vars": []}, "flags": [], "fullname": "builtins.AssertionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.AssertionError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AttributeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.AttributeError", "name": "AttributeError", "type_vars": []}, "flags": [], "fullname": "builtins.AttributeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.AttributeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BaseException": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BaseException", "name": "BaseException", "type_vars": []}, "flags": [], "fullname": "builtins.BaseException", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__cause__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__cause__", "name": "__cause__", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "__context__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__context__", "name": "__context__", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "flags": [], "fullname": "builtins.BaseException.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "arg_types": ["builtins.BaseException", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BaseException", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__traceback__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__traceback__", "name": "__traceback__", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}, "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.args", "name": "args", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}}}, "with_traceback": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "tb"], "flags": ["is_conditional"], "fullname": "builtins.BaseException.with_traceback", "name": "with_traceback", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "tb"], "arg_types": ["builtins.BaseException", {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "with_traceback of BaseException", "ret_type": "builtins.BaseException", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BlockingIOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BlockingIOError", "name": "BlockingIOError", "type_vars": []}, "flags": [], "fullname": "builtins.BlockingIOError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BlockingIOError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "characters_written": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BlockingIOError.characters_written", "name": "characters_written", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BrokenPipeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BrokenPipeError", "name": "BrokenPipeError", "type_vars": []}, "flags": [], "fullname": "builtins.BrokenPipeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BrokenPipeError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BufferError", "name": "BufferError", "type_vars": []}, "flags": [], "fullname": "builtins.BufferError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BufferError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BytesWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BytesWarning", "name": "BytesWarning", "type_vars": []}, "flags": [], "fullname": "builtins.BytesWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BytesWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ChildProcessError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ChildProcessError", "name": "ChildProcessError", "type_vars": []}, "flags": [], "fullname": "builtins.ChildProcessError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ChildProcessError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionAbortedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionAbortedError", "name": "ConnectionAbortedError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionAbortedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionAbortedError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionError", "name": "ConnectionError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionRefusedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionRefusedError", "name": "ConnectionRefusedError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionRefusedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionRefusedError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionResetError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionResetError", "name": "ConnectionResetError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionResetError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionResetError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "DeprecationWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.DeprecationWarning", "name": "DeprecationWarning", "type_vars": []}, "flags": [], "fullname": "builtins.DeprecationWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.DeprecationWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "EOFError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.EOFError", "name": "EOFError", "type_vars": []}, "flags": [], "fullname": "builtins.EOFError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.EOFError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.Ellipsis", "name": "Ellipsis", "type": "builtins.ellipsis"}}, "EnvironmentError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins.EnvironmentError", "line": 1464, "no_args": true, "normalized": false, "target": "builtins.OSError"}}, "Exception": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.Exception", "name": "Exception", "type_vars": []}, "flags": [], "fullname": "builtins.Exception", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "False": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.False", "name": "False", "type": "builtins.bool"}}, "FileExistsError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FileExistsError", "name": "FileExistsError", "type_vars": []}, "flags": [], "fullname": "builtins.FileExistsError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FileExistsError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileNotFoundError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FileNotFoundError", "name": "FileNotFoundError", "type_vars": []}, "flags": [], "fullname": "builtins.FileNotFoundError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FileNotFoundError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FloatingPointError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FloatingPointError", "name": "FloatingPointError", "type_vars": []}, "flags": [], "fullname": "builtins.FloatingPointError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FloatingPointError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FutureWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FutureWarning", "name": "FutureWarning", "type_vars": []}, "flags": [], "fullname": "builtins.FutureWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FutureWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorExit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.GeneratorExit", "name": "GeneratorExit", "type_vars": []}, "flags": [], "fullname": "builtins.GeneratorExit", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.GeneratorExit", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins.IOError", "line": 1465, "no_args": true, "normalized": false, "target": "builtins.OSError"}}, "ImportError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ImportError", "name": "ImportError", "type_vars": []}, "flags": [], "fullname": "builtins.ImportError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ImportError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.ImportError.name", "name": "name", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.ImportError.path", "name": "path", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ImportWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ImportWarning", "name": "ImportWarning", "type_vars": []}, "flags": [], "fullname": "builtins.ImportWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ImportWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IndentationError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.SyntaxError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IndentationError", "name": "IndentationError", "type_vars": []}, "flags": [], "fullname": "builtins.IndentationError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IndentationError", "builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IndexError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.LookupError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IndexError", "name": "IndexError", "type_vars": []}, "flags": [], "fullname": "builtins.IndexError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IndexError", "builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "InterruptedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.InterruptedError", "name": "InterruptedError", "type_vars": []}, "flags": [], "fullname": "builtins.InterruptedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.InterruptedError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IsADirectoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IsADirectoryError", "name": "IsADirectoryError", "type_vars": []}, "flags": [], "fullname": "builtins.IsADirectoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IsADirectoryError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "KeyError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.LookupError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.KeyError", "name": "KeyError", "type_vars": []}, "flags": [], "fullname": "builtins.KeyError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.KeyError", "builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "KeyboardInterrupt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.KeyboardInterrupt", "name": "KeyboardInterrupt", "type_vars": []}, "flags": [], "fullname": "builtins.KeyboardInterrupt", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.KeyboardInterrupt", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LookupError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.LookupError", "name": "LookupError", "type_vars": []}, "flags": [], "fullname": "builtins.LookupError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MemoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.MemoryError", "name": "MemoryError", "type_vars": []}, "flags": [], "fullname": "builtins.MemoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.MemoryError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleNotFoundError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ImportError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ModuleNotFoundError", "name": "ModuleNotFoundError", "type_vars": []}, "flags": [], "fullname": "builtins.ModuleNotFoundError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ModuleNotFoundError", "builtins.ImportError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NameError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NameError", "name": "NameError", "type_vars": []}, "flags": [], "fullname": "builtins.NameError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NameError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "None": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.None", "name": "None", "type": {".class": "NoneTyp"}}}, "NotADirectoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NotADirectoryError", "name": "NotADirectoryError", "type_vars": []}, "flags": [], "fullname": "builtins.NotADirectoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NotADirectoryError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotImplemented": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.NotImplemented", "name": "NotImplemented", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "NotImplementedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.RuntimeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NotImplementedError", "name": "NotImplementedError", "type_vars": []}, "flags": [], "fullname": "builtins.NotImplementedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NotImplementedError", "builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "OSError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.OSError", "name": "OSError", "type_vars": []}, "flags": [], "fullname": "builtins.OSError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "errno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.errno", "name": "errno", "type": "builtins.int"}}, "filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.filename", "name": "filename", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "filename2": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.filename2", "name": "filename2", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "strerror": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.strerror", "name": "strerror", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "OverflowError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.OverflowError", "name": "OverflowError", "type_vars": []}, "flags": [], "fullname": "builtins.OverflowError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.OverflowError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PendingDeprecationWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.PendingDeprecationWarning", "name": "PendingDeprecationWarning", "type_vars": []}, "flags": [], "fullname": "builtins.PendingDeprecationWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.PendingDeprecationWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PermissionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.PermissionError", "name": "PermissionError", "type_vars": []}, "flags": [], "fullname": "builtins.PermissionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.PermissionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ProcessLookupError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ProcessLookupError", "name": "ProcessLookupError", "type_vars": []}, "flags": [], "fullname": "builtins.ProcessLookupError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ProcessLookupError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RecursionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.RuntimeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RecursionError", "name": "RecursionError", "type_vars": []}, "flags": [], "fullname": "builtins.RecursionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RecursionError", "builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ReferenceError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ReferenceError", "name": "ReferenceError", "type_vars": []}, "flags": [], "fullname": "builtins.ReferenceError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ReferenceError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ResourceWarning", "name": "ResourceWarning", "type_vars": []}, "flags": [], "fullname": "builtins.ResourceWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ResourceWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RuntimeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RuntimeError", "name": "RuntimeError", "type_vars": []}, "flags": [], "fullname": "builtins.RuntimeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RuntimeWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RuntimeWarning", "name": "RuntimeWarning", "type_vars": []}, "flags": [], "fullname": "builtins.RuntimeWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RuntimeWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StopAsyncIteration": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.StopAsyncIteration", "name": "StopAsyncIteration", "type_vars": []}, "flags": [], "fullname": "builtins.StopAsyncIteration", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.StopAsyncIteration", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.StopAsyncIteration.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StopIteration": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.StopIteration", "name": "StopIteration", "type_vars": []}, "flags": [], "fullname": "builtins.StopIteration", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.StopIteration", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.StopIteration.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SyntaxError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SyntaxError", "name": "SyntaxError", "type_vars": []}, "flags": [], "fullname": "builtins.SyntaxError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.filename", "name": "filename", "type": "builtins.str"}}, "lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.lineno", "name": "lineno", "type": "builtins.int"}}, "msg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.msg", "name": "msg", "type": "builtins.str"}}, "offset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.offset", "name": "offset", "type": "builtins.int"}}, "text": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.text", "name": "text", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SyntaxWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SyntaxWarning", "name": "SyntaxWarning", "type_vars": []}, "flags": [], "fullname": "builtins.SyntaxWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SyntaxWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SystemError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SystemError", "name": "SystemError", "type_vars": []}, "flags": [], "fullname": "builtins.SystemError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SystemError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SystemExit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SystemExit", "name": "SystemExit", "type_vars": []}, "flags": [], "fullname": "builtins.SystemExit", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SystemExit", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SystemExit.code", "name": "code", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TabError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.IndentationError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TabError", "name": "TabError", "type_vars": []}, "flags": [], "fullname": "builtins.TabError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TabError", "builtins.IndentationError", "builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TimeoutError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TimeoutError", "name": "TimeoutError", "type_vars": []}, "flags": [], "fullname": "builtins.TimeoutError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TimeoutError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "True": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.True", "name": "True", "type": "builtins.bool"}}, "TypeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TypeError", "name": "TypeError", "type_vars": []}, "flags": [], "fullname": "builtins.TypeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TypeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnboundLocalError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.NameError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnboundLocalError", "name": "UnboundLocalError", "type_vars": []}, "flags": [], "fullname": "builtins.UnboundLocalError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnboundLocalError", "builtins.NameError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeDecodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeDecodeError", "name": "UnicodeDecodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeDecodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeDecodeError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", "__encoding", "__object", "__start", "__end", "__reason"], "flags": [], "fullname": "builtins.UnicodeDecodeError.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", null, null, null, null, null], "arg_types": ["builtins.UnicodeDecodeError", "builtins.str", "builtins.bytes", "builtins.int", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UnicodeDecodeError", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.encoding", "name": "encoding", "type": "builtins.str"}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.end", "name": "end", "type": "builtins.int"}}, "object": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.object", "name": "object", "type": "builtins.bytes"}}, "reason": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.reason", "name": "reason", "type": "builtins.str"}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.start", "name": "start", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeEncodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeEncodeError", "name": "UnicodeEncodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeEncodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeEncodeError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", "__encoding", "__object", "__start", "__end", "__reason"], "flags": [], "fullname": "builtins.UnicodeEncodeError.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", null, null, null, null, null], "arg_types": ["builtins.UnicodeEncodeError", "builtins.str", "builtins.str", "builtins.int", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UnicodeEncodeError", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.encoding", "name": "encoding", "type": "builtins.str"}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.end", "name": "end", "type": "builtins.int"}}, "object": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.object", "name": "object", "type": "builtins.str"}}, "reason": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.reason", "name": "reason", "type": "builtins.str"}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.start", "name": "start", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ValueError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeError", "name": "UnicodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeTranslateError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeTranslateError", "name": "UnicodeTranslateError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeTranslateError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeTranslateError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeWarning", "name": "UnicodeWarning", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UserWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UserWarning", "name": "UserWarning", "type_vars": []}, "flags": [], "fullname": "builtins.UserWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UserWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ValueError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ValueError", "name": "ValueError", "type_vars": []}, "flags": [], "fullname": "builtins.ValueError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Warning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.Warning", "name": "Warning", "type_vars": []}, "flags": [], "fullname": "builtins.Warning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "WindowsError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.WindowsError", "name": "WindowsError", "type_vars": []}, "flags": [], "fullname": "builtins.WindowsError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.WindowsError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "winerror": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.WindowsError.winerror", "name": "winerror", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ZeroDivisionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ZeroDivisionError", "name": "ZeroDivisionError", "type_vars": []}, "flags": [], "fullname": "builtins.ZeroDivisionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ZeroDivisionError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_N2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._N2", "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}}, "_PathLike": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins._PathLike", "name": "_PathLike", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "builtins._PathLike", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins._PathLike", "builtins.object"], "names": {".class": "SymbolTable", "__fspath__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins._PathLike.__fspath__", "name": "__fspath__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__fspath__ of _PathLike", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_StandardError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._StandardError", "line": 1457, "no_args": true, "normalized": false, "target": "builtins.Exception"}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T1": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T1", "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T2", "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T3": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T3", "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T4": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T4", "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T5": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T5", "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._TT", "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__debug__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__debug__", "name": "__debug__", "type": "builtins.bool"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__file__", "name": "__file__", "type": "builtins.str"}}, "__import__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "flags": [], "fullname": "builtins.__import__", "name": "__import__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__import__", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__package__", "name": "__package__", "type": "builtins.str"}}, "_mv_container_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._mv_container_type", "line": 760, "no_args": true, "normalized": false, "target": "builtins.int"}}, "_str_base": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._str_base", "line": 314, "no_args": true, "normalized": false, "target": "builtins.object"}}, "abs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "builtins.abs", "name": "abs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abs", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "all": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.all", "name": "all", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "all", "ret_type": "builtins.bool", "variables": []}}}, "any": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.any", "name": "any", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "any", "ret_type": "builtins.bool", "variables": []}}}, "ascii": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": ["is_conditional"], "fullname": "builtins.ascii", "name": "ascii", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ascii", "ret_type": "builtins.str", "variables": []}}}, "bin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": [], "fullname": "builtins.bin", "name": "bin", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "bin", "ret_type": "builtins.str", "variables": []}}}, "bool": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.int"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bool", "name": "bool", "type_vars": []}, "flags": [], "fullname": "builtins.bool", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.bool", "builtins.int", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__and__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__and__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__and__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bool.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of bool", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bool.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.bool", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bool", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__or__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__or__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__or__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__rand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__rand__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rand__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rand__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__ror__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__ror__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__ror__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__ror__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__rxor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__rxor__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rxor__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rxor__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__xor__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__xor__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__xor__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.int", "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "breakpoint": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 4], "arg_names": ["args", "kws"], "flags": ["is_conditional"], "fullname": "builtins.breakpoint", "name": "breakpoint", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": ["args", "kws"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "breakpoint", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "bytearray": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.bytes", "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.MutableSequence"}, "typing.ByteString"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bytearray", "name": "bytearray", "type_vars": []}, "flags": [], "fullname": "builtins.bytearray", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.bytearray", "typing.MutableSequence", "typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.bytearray.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bytearray.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.bytearray.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of bytearray", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of bytearray", "ret_type": "builtins.bytes", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytearray.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of bytearray", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.slice", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}, "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.slice", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}, "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of bytearray", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytearray.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of bytearray", "ret_type": "builtins.int", "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.bytearray.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of bytearray", "ret_type": "builtins.str", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "flags": [], "fullname": "builtins.bytearray.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.bytearray.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of bytearray", "ret_type": "builtins.int", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["s"], "flags": ["is_static", "is_decorated"], "fullname": "builtins.bytearray.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["s"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytearray", "ret_type": "builtins.bytearray", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["s"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of bytearray", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of bytearray", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": [], "fullname": "builtins.bytearray.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": [{".class": "UnionType", "items": ["typing.ByteString", "builtins.memoryview"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytearray"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytearray", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytearray"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytearray", "ret_type": "builtins.bytes", "variables": []}}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytearray.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of bytearray", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytearray", "builtins.bytearray", "builtins.bytearray"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": [], "fullname": "builtins.bytearray.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.bytearray", "builtins.bytes", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of bytearray", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of bytearray", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytearray.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytearray.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of bytearray", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytearray", "builtins.bytearray", "builtins.bytearray"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytearray.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytearray.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.bytearray.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.bytearray", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "builtins.bytearray.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.bytearray.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "bytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.ByteString"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bytes", "name": "bytes", "type_vars": []}, "flags": [], "fullname": "builtins.bytes", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.bytes", "typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.bytes.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bytes.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of bytes", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytes.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.bytes", "variables": []}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytes.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.bytes", "typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.bytes", "typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of bytes", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_conditional"], "fullname": "builtins.bytes.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytes.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of bytes", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytes.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of bytes", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of bytes", "ret_type": "builtins.int", "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.bytes.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of bytes", "ret_type": "builtins.str", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "flags": [], "fullname": "builtins.bytes.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of bytes", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.bytes.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of bytes", "ret_type": "builtins.int", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.bytes.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytes.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of bytes", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of bytes", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of bytes", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of bytes", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of bytes", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.bytes.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": [{".class": "UnionType", "items": ["typing.ByteString", "builtins.memoryview"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.bytes.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytes.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.bytes", "builtins.bytes"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": [], "fullname": "builtins.bytes.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.bytes", "builtins.bytes", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of bytes", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of bytes", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytes.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.bytes", "builtins.bytes"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytes.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytes.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.bytes.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "builtins.bytes.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of bytes", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "flags": [], "fullname": "builtins.bytes.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.bytes.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "callable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.callable", "name": "callable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "callable", "ret_type": "builtins.bool", "variables": []}}}, "chr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["code"], "flags": [], "fullname": "builtins.chr", "name": "chr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["code"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chr", "ret_type": "builtins.str", "variables": []}}}, "classmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.classmethod", "name": "classmethod", "type_vars": []}, "flags": [], "fullname": "builtins.classmethod", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.classmethod", "builtins.object"], "names": {".class": "SymbolTable", "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.classmethod.__func__", "name": "__func__", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.classmethod.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.classmethod", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of classmethod", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "flags": [], "fullname": "builtins.classmethod.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "arg_types": ["builtins.classmethod", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of classmethod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__isabstractmethod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.classmethod.__isabstractmethod__", "name": "__isabstractmethod__", "type": "builtins.bool"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.classmethod.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of classmethod", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "compile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1], "arg_names": ["source", "filename", "mode", "flags", "dont_inherit", "optimize"], "flags": ["is_conditional"], "fullname": "builtins.compile", "name": "compile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1], "arg_names": ["source", "filename", "mode", "flags", "dont_inherit", "optimize"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "_ast.mod"]}, {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "compile", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "complex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.complex", "name": "complex", "type_vars": []}, "flags": [], "fullname": "builtins.complex", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.complex", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of complex", "ret_type": "builtins.float", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.complex.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of complex", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.complex.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "arg_types": ["builtins.complex", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "arg_types": ["builtins.complex", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of complex", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of complex", "ret_type": "builtins.complex", "variables": []}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.complex.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of complex", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of complex", "ret_type": "builtins.float", "variables": []}}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.complex.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of complex", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of complex", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "copyright": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.copyright", "name": "copyright", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copyright", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "credits": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.credits", "name": "credits", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "credits", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "delattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "flags": [], "fullname": "builtins.delattr", "name": "delattr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "delattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.dict", "name": "dict", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.dict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": [], "fullname": "builtins.dict.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "builtins.dict.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.dict.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of dict", "ret_type": "builtins.int", "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.dict.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": [], "fullname": "builtins.dict.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of dict", "ret_type": "builtins.str", "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}, "fromkeys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "builtins.dict.fromkeys", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["seq"], "flags": ["is_static", "is_overload", "is_decorated"], "fullname": "builtins.dict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["seq"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "fromkeys", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "flags": ["is_static", "is_overload", "is_decorated"], "fullname": "builtins.dict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "fromkeys", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["seq"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ItemsView"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.KeysView"}, "variables": []}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of dict", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "setdefault": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": [], "fullname": "builtins.dict.setdefault", "name": "setdefault", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdefault of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.dict.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "dir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["o"], "flags": [], "fullname": "builtins.dir", "name": "dir", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "divmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["a", "b"], "flags": [], "fullname": "builtins.divmod", "name": "divmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["a", "b"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "divmod", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}]}}}, "ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ellipsis", "name": "ellipsis", "type_vars": []}, "flags": [], "fullname": "builtins.ellipsis", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ellipsis", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "enumerate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.enumerate", "name": "enumerate", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.enumerate", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.enumerate", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "iterable", "start"], "flags": [], "fullname": "builtins.enumerate.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of enumerate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.enumerate.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of enumerate", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.enumerate.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of enumerate", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "eval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["source", "globals", "locals"], "flags": [], "fullname": "builtins.eval", "name": "eval", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["source", "globals", "locals"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "types.CodeType"]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "eval", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "exec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["object", "globals", "locals"], "flags": ["is_conditional"], "fullname": "builtins.exec", "name": "exec", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["object", "globals", "locals"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "types.CodeType"]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["code"], "flags": [], "fullname": "builtins.exit", "name": "exit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["code"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "filter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.filter", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["__function", "__iterable"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.filter", "name": "filter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "NoneTyp"}, {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "filter", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["__function", "__iterable"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.filter", "name": "filter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "filter", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "NoneTyp"}, {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "float": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.complex", "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.float", "name": "float", "type_vars": []}, "flags": [], "fullname": "builtins.float", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.float", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of float", "ret_type": "builtins.float", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of float", "ret_type": "builtins.float", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.float.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of float", "ret_type": "builtins.float", "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of float", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.float", {".class": "UnionType", "items": ["typing.SupportsFloat", "builtins.str", "builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of float", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of float", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of float", "ret_type": "builtins.float", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of float", "ret_type": "builtins.float", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of float", "ret_type": "builtins.float", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of float", "ret_type": "builtins.float", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of float", "ret_type": "builtins.float", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rdivmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rdivmod__", "name": "__rdivmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rdivmod__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, "variables": []}}}, "__rfloordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rfloordiv__", "name": "__rfloordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rfloordiv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rmod__", "name": "__rmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmod__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of float", "ret_type": "builtins.float", "variables": []}}}, "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.float.__round__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.float", "variables": []}]}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of float", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of float", "ret_type": "builtins.float", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of float", "ret_type": "builtins.float", "variables": []}}}, "as_integer_ratio": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.as_integer_ratio", "name": "as_integer_ratio", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "as_integer_ratio of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of float", "ret_type": "builtins.float", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.float.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.float"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.float"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of float", "ret_type": "builtins.float", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of float", "ret_type": "builtins.str", "variables": []}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.float.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of float", "ret_type": "builtins.float", "variables": []}}}}, "is_integer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.is_integer", "name": "is_integer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_integer of float", "ret_type": "builtins.bool", "variables": []}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.float.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of float", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "format": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["o", "format_spec"], "flags": [], "fullname": "builtins.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["o", "format_spec"], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format", "ret_type": "builtins.str", "variables": []}}}, "frozenset": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.frozenset", "name": "frozenset", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.frozenset", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.frozenset", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.frozenset.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.frozenset.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of frozenset", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of frozenset", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.frozenset"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of frozenset", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.frozenset"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.difference", "name": "difference", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "intersection": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.intersection", "name": "intersection", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "issubset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.issubset", "name": "issubset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubset of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "issuperset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.issuperset", "name": "issuperset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issuperset of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "symmetric_difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.symmetric_difference", "name": "symmetric_difference", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "union": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.union", "name": "union", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "union of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "function": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.function", "name": "function", "type_vars": []}, "flags": [], "fullname": "builtins.function", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.function", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__code__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__code__", "name": "__code__", "type": "types.CodeType"}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__module__", "name": "__module__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__qualname__", "name": "__qualname__", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "getattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["o", "name", "default"], "flags": [], "fullname": "builtins.getattr", "name": "getattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["o", "name", "default"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getattr", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "globals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "builtins.globals", "name": "globals", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "globals", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "hasattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "flags": [], "fullname": "builtins.hasattr", "name": "hasattr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hasattr", "ret_type": "builtins.bool", "variables": []}}}, "hash": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.hash", "name": "hash", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hash", "ret_type": "builtins.int", "variables": []}}}, "help": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 4], "arg_names": ["args", "kwds"], "flags": ["is_conditional"], "fullname": "builtins.help", "name": "help", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": ["args", "kwds"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "help", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "hex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex", "ret_type": "builtins.str", "variables": []}}}, "id": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.id", "name": "id", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "id", "ret_type": "builtins.int", "variables": []}}}, "input": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["prompt"], "flags": ["is_conditional"], "fullname": "builtins.input", "name": "input", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["prompt"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "input", "ret_type": "builtins.str", "variables": []}}}, "int": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.float", "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.int", "name": "int", "type_vars": []}, "flags": [], "fullname": "builtins.int", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.int", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of int", "ret_type": "builtins.int", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of int", "ret_type": "builtins.int", "variables": []}}}, "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of int", "ret_type": "builtins.int", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.int.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of int", "ret_type": "builtins.float", "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of int", "ret_type": "builtins.int", "variables": []}}}, "__index__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__index__", "name": "__index__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__index__ of int", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.int.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.int.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "typing.SupportsInt"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.int.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.bytearray"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "typing.SupportsInt"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.bytearray"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of int", "ret_type": "builtins.int", "variables": []}}}, "__invert__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__invert__", "name": "__invert__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__invert__ of int", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__lshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__lshift__", "name": "__lshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of int", "ret_type": "builtins.int", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of int", "ret_type": "builtins.int", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of int", "ret_type": "builtins.int", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of int", "ret_type": "builtins.int", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of int", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rdivmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rdivmod__", "name": "__rdivmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rdivmod__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "__rfloordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rfloordiv__", "name": "__rfloordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rfloordiv__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rlshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rlshift__", "name": "__rlshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rlshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rmod__", "name": "__rmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmod__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ror__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of int", "ret_type": "builtins.int", "variables": []}}}, "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "flags": ["is_conditional"], "fullname": "builtins.int.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of int", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__rrshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rrshift__", "name": "__rrshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rrshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rshift__", "name": "__rshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of int", "ret_type": "builtins.float", "variables": []}}}, "__rxor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of int", "ret_type": "builtins.int", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of int", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of int", "ret_type": "builtins.int", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of int", "ret_type": "builtins.float", "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of int", "ret_type": "builtins.int", "variables": []}}}, "bit_length": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.bit_length", "name": "bit_length", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "bit_length of int", "ret_type": "builtins.int", "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of int", "ret_type": "builtins.int", "variables": []}}}, "denominator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.denominator", "name": "denominator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "denominator of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "denominator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "denominator of int", "ret_type": "builtins.int", "variables": []}}}}, "from_bytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.int.from_bytes", "name": "from_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "arg_types": [{".class": "TypeType", "item": "builtins.int"}, {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}, "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "from_bytes of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "from_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "arg_types": [{".class": "TypeType", "item": "builtins.int"}, {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}, "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "from_bytes of int", "ret_type": "builtins.int", "variables": []}}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of int", "ret_type": "builtins.int", "variables": []}}}}, "numerator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.numerator", "name": "numerator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "numerator of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "numerator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "numerator of int", "ret_type": "builtins.int", "variables": []}}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of int", "ret_type": "builtins.int", "variables": []}}}}, "to_bytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5], "arg_names": ["self", "length", "byteorder", "signed"], "flags": ["is_conditional"], "fullname": "builtins.int.to_bytes", "name": "to_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["self", "length", "byteorder", "signed"], "arg_types": ["builtins.int", "builtins.int", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "to_bytes of int", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "isinstance": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "t"], "flags": [], "fullname": "builtins.isinstance", "name": "isinstance", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "t"], "arg_types": ["builtins.object", {".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}]}], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isinstance", "ret_type": "builtins.bool", "variables": []}}}, "issubclass": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "classinfo"], "flags": [], "fullname": "builtins.issubclass", "name": "issubclass", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "classinfo"], "arg_types": ["builtins.type", {".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}]}], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubclass", "ret_type": "builtins.bool", "variables": []}}}, "iter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.iter", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.iter", "name": "iter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "iter", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.iter", "name": "iter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "arg_types": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "iter", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "arg_types": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "len": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.len", "name": "len", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "len", "ret_type": "builtins.int", "variables": []}}}, "license": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.license", "name": "license", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "license", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "list": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.list", "name": "list", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.list", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.list", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.list.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.list.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of list", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.list.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of list", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.list.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.list.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of list", "ret_type": "builtins.str", "variables": []}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.list.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.list.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of list", "ret_type": "builtins.int", "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.list.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "object", "start", "stop"], "flags": [], "fullname": "builtins.list.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "object", "start", "stop"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of list", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": [], "fullname": "builtins.list.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "flags": [], "fullname": "builtins.list.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sort": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["self", "key", "reverse"], "flags": ["is_conditional"], "fullname": "builtins.list.sort", "name": "sort", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["self", "key", "reverse"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sort of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "locals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "builtins.locals", "name": "locals", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "locals", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "map": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.map", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": [null, null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": [null, null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "max": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.max", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.max", "name": "max", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "max", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.max", "name": "max", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "max", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "memoryview": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.Sized", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Container"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.memoryview", "name": "memoryview", "type_vars": []}, "flags": [], "fullname": "builtins.memoryview", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.memoryview", "typing.Sized", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.memoryview.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of memoryview", "ret_type": "builtins.bool", "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_val", "exc_tb"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["builtins.memoryview", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of memoryview", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.memoryview.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["builtins.memoryview", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray", "builtins.memoryview"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of memoryview", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of memoryview", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.memoryview.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", "builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", "builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.format", "name": "format", "type": "builtins.str"}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of memoryview", "ret_type": "builtins.str", "variables": []}}}, "itemsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.itemsize", "name": "itemsize", "type": "builtins.int"}}, "ndim": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.ndim", "name": "ndim", "type": "builtins.int"}}, "readonly": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.readonly", "name": "readonly", "type": "builtins.bool"}}, "shape": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.shape", "name": "shape", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "strides": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.strides", "name": "strides", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "suboffsets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.suboffsets", "name": "suboffsets", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "tobytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.tobytes", "name": "tobytes", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tobytes of memoryview", "ret_type": "builtins.bytes", "variables": []}}}, "tolist": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.tolist", "name": "tolist", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tolist of memoryview", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "min": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.min", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.min", "name": "min", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "min", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.min", "name": "min", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "min", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "next": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.next", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.next", "name": "next", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "next", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.next", "name": "next", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "next", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "object": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.object", "name": "object", "type_vars": []}, "flags": [], "fullname": "builtins.object", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__class__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_property"], "fullname": "builtins.object.__class__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_overload", "is_decorated"], "fullname": "builtins.object.__class__", "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property", "is_settable_property"], "fullname": null, "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "__type"], "flags": ["is_decorated"], "fullname": "builtins.object.__class__", "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": ["builtins.object", {".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__class__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "__delattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "builtins.object.__delattr__", "name": "__delattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delattr__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__dir__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.object.__dir__", "name": "__dir__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__dir__ of object", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}, "variables": []}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__doc__", "name": "__doc__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.object.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of object", "ret_type": "builtins.bool", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "format_spec"], "flags": [], "fullname": "builtins.object.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "format_spec"], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of object", "ret_type": "builtins.str", "variables": []}}}, "__getattribute__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "builtins.object.__getattribute__", "name": "__getattribute__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattribute__ of object", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of object", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__init_subclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_conditional"], "fullname": "builtins.object.__init_subclass__", "name": "__init_subclass__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init_subclass__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__module__", "name": "__module__", "type": "builtins.str"}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.object.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of object", "ret_type": "builtins.bool", "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": [], "fullname": "builtins.object.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of object", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__reduce__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__reduce__", "name": "__reduce__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reduce__ of object", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__reduce_ex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "protocol"], "flags": [], "fullname": "builtins.object.__reduce_ex__", "name": "__reduce_ex__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "protocol"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reduce_ex__ of object", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of object", "ret_type": "builtins.str", "variables": []}}}, "__setattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "name", "value"], "flags": [], "fullname": "builtins.object.__setattr__", "name": "__setattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.object", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setattr__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__sizeof__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__sizeof__", "name": "__sizeof__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sizeof__ of object", "ret_type": "builtins.int", "variables": []}}}, "__slots__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__slots__", "name": "__slots__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of object", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "oct": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.oct", "name": "oct", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "oct", "ret_type": "builtins.str", "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "flags": ["is_conditional"], "fullname": "builtins.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.IO"}, "variables": []}}}, "ord": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["c"], "flags": [], "fullname": "builtins.ord", "name": "ord", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["c"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ord", "ret_type": "builtins.int", "variables": []}}}, "pow": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.pow", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}]}}}, "print": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 5, 5, 5, 5], "arg_names": ["values", "sep", "end", "file", "flush"], "flags": ["is_conditional"], "fullname": "builtins.print", "name": "print", "type": {".class": "CallableType", "arg_kinds": [2, 5, 5, 5, 5], "arg_names": ["values", "sep", "end", "file", "flush"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.IO"}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "print", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "property": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.property", "name": "property", "type_vars": []}, "flags": [], "fullname": "builtins.property", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.property", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "builtins.property.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.property.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of property", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["self", "fget", "fset", "fdel", "doc"], "flags": [], "fullname": "builtins.property.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["self", "fget", "fset", "fdel", "doc"], "arg_types": ["builtins.property", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "value"], "flags": [], "fullname": "builtins.property.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "value"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "deleter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fdel"], "flags": [], "fullname": "builtins.property.deleter", "name": "deleter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fdel"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "deleter of property", "ret_type": "builtins.property", "variables": []}}}, "fdel": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.property.fdel", "name": "fdel", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.property"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdel of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fget": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.property.fget", "name": "fget", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.property"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fget of property", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "fset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "builtins.property.fset", "name": "fset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fset of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fget"], "flags": [], "fullname": "builtins.property.getter", "name": "getter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fget"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getter of property", "ret_type": "builtins.property", "variables": []}}}, "setter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fset"], "flags": [], "fullname": "builtins.property.setter", "name": "setter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fset"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setter of property", "ret_type": "builtins.property", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "quit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["code"], "flags": [], "fullname": "builtins.quit", "name": "quit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["code"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "quit", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "range": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.range", "name": "range", "type_vars": []}, "flags": [], "fullname": "builtins.range", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.range", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.range.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of range", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.range.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.range", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.range", "variables": []}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.range.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of range", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of range", "ret_type": "builtins.int", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of range", "ret_type": "builtins.str", "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of range", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "builtins.range.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of range", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "value", "start", "stop"], "flags": [], "fullname": "builtins.range.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "value", "start", "stop"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of range", "ret_type": "builtins.int", "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.start", "name": "start", "type": "builtins.int"}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.step", "name": "step", "type": "builtins.int"}}, "stop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.stop", "name": "stop", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "repr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.repr", "name": "repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "repr", "ret_type": "builtins.str", "variables": []}}}, "reveal_locals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.reveal_locals", "name": "reveal_locals", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}}}, "reveal_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.reveal_type", "name": "reveal_type", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}}}, "reversed": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.reversed", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["object"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.reversed", "name": "reversed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "reversed", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["object"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.reversed", "name": "reversed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "reversed", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "round": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.round", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.set", "name": "set", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.set", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.set", "typing.MutableSet", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.set.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.set.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__ixor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ixor__", "name": "__ixor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ixor__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of set", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of set", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "add": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.add", "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.difference", "name": "difference", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "difference_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.difference_update", "name": "difference_update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "discard": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.discard", "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "intersection": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.intersection", "name": "intersection", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "intersection_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.intersection_update", "name": "intersection_update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of set", "ret_type": "builtins.bool", "variables": []}}}, "issubset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.issubset", "name": "issubset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubset of set", "ret_type": "builtins.bool", "variables": []}}}, "issuperset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.issuperset", "name": "issuperset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issuperset of set", "ret_type": "builtins.bool", "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of set", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "symmetric_difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.symmetric_difference", "name": "symmetric_difference", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "symmetric_difference_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.symmetric_difference_update", "name": "symmetric_difference_update", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "union": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.union", "name": "union", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "union of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "setattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["object", "name", "value"], "flags": [], "fullname": "builtins.setattr", "name": "setattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["object", "name", "value"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.slice", "name": "slice", "type_vars": []}, "flags": [], "fullname": "builtins.slice", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.slice", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.slice.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.slice.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.slice.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "indices": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "len"], "flags": [], "fullname": "builtins.slice.indices", "name": "indices", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "len"], "arg_types": ["builtins.slice", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "indices of slice", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.start", "name": "start", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.step", "name": "step", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "stop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.stop", "name": "stop", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sorted": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["iterable", "key", "reverse"], "flags": ["is_conditional"], "fullname": "builtins.sorted", "name": "sorted", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["iterable", "key", "reverse"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sorted", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "staticmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.staticmethod", "name": "staticmethod", "type_vars": []}, "flags": [], "fullname": "builtins.staticmethod", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.staticmethod", "builtins.object"], "names": {".class": "SymbolTable", "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.staticmethod.__func__", "name": "__func__", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.staticmethod.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.staticmethod", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of staticmethod", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "flags": [], "fullname": "builtins.staticmethod.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "arg_types": ["builtins.staticmethod", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of staticmethod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__isabstractmethod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.staticmethod.__isabstractmethod__", "name": "__isabstractmethod__", "type": "builtins.bool"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.staticmethod.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of staticmethod", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "str": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}, "builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.str", "name": "str", "type_vars": []}, "flags": [], "fullname": "builtins.str", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.str", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_conditional"], "fullname": "builtins.str.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of str", "ret_type": "builtins.str", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.str.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.str.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of str", "ret_type": "builtins.str", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of str", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.str.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of str", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of str", "ret_type": "builtins.str", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.str.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of str", "ret_type": "builtins.str", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of str", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.str.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of str", "ret_type": "builtins.str", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of str", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of str", "ret_type": "builtins.str", "variables": []}}}, "casefold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.casefold", "name": "casefold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "casefold of str", "ret_type": "builtins.str", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of str", "ret_type": "builtins.str", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "__start", "__end"], "flags": [], "fullname": "builtins.str.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of str", "ret_type": "builtins.int", "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.str.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of str", "ret_type": "builtins.bytes", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.str.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of str", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.str.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of str", "ret_type": "builtins.str", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of str", "ret_type": "builtins.int", "variables": []}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "builtins.str.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format of str", "ret_type": "builtins.str", "variables": []}}}, "format_map": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "map"], "flags": ["is_conditional"], "fullname": "builtins.str.format_map", "name": "format_map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "map"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format_map of str", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of str", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of str", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of str", "ret_type": "builtins.bool", "variables": []}}}, "isdecimal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isdecimal", "name": "isdecimal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdecimal of str", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of str", "ret_type": "builtins.bool", "variables": []}}}, "isidentifier": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isidentifier", "name": "isidentifier", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isidentifier of str", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of str", "ret_type": "builtins.bool", "variables": []}}}, "isnumeric": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isnumeric", "name": "isnumeric", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isnumeric of str", "ret_type": "builtins.bool", "variables": []}}}, "isprintable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isprintable", "name": "isprintable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isprintable of str", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of str", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of str", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of str", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_conditional"], "fullname": "builtins.str.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of str", "ret_type": "builtins.str", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of str", "ret_type": "builtins.str", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of str", "ret_type": "builtins.str", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of str", "ret_type": "builtins.str", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "builtins.str.maketrans", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["x"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}]}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": ["is_conditional"], "fullname": "builtins.str.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": ["is_conditional"], "fullname": "builtins.str.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.str", "builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of str", "ret_type": "builtins.str", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of str", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of str", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of str", "ret_type": "builtins.str", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": ["is_conditional"], "fullname": "builtins.str.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": ["is_conditional"], "fullname": "builtins.str.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of str", "ret_type": "builtins.str", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": ["is_conditional"], "fullname": "builtins.str.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.str.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.str.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of str", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of str", "ret_type": "builtins.str", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of str", "ret_type": "builtins.str", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of str", "ret_type": "builtins.str", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "table"], "flags": ["is_conditional"], "fullname": "builtins.str.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "table"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", "builtins.str", {".class": "NoneTyp"}]}], "type_ref": "typing.Mapping"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.int", "builtins.str", {".class": "NoneTyp"}]}], "type_ref": "typing.Sequence"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of str", "ret_type": "builtins.str", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of str", "ret_type": "builtins.str", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.str.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of str", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sum": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.sum", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.sum", "name": "sum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sum", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.sum", "name": "sum", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sum", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "super": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.super", "name": "super", "type_vars": []}, "flags": [], "fullname": "builtins.super", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.super", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.super.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.super"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.super"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.tuple", "name": "tuple", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "builtins.tuple", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.tuple.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.tuple.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.tuple.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.tuple.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.tuple.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of tuple", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.tuple.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["cls", "iterable"], "flags": [], "fullname": "builtins.tuple.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.tuple.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of tuple", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.tuple.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of tuple", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.type", "name": "type", "type_vars": []}, "flags": [], "fullname": "builtins.type", "metaclass_type": "builtins.type", "metadata": {}, "module_name": "builtins", "mro": ["builtins.type", "builtins.object"], "names": {".class": "SymbolTable", "__base__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__base__", "name": "__base__", "type": "builtins.type"}}, "__bases__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__bases__", "name": "__bases__", "type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}}}, "__basicsize__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__basicsize__", "name": "__basicsize__", "type": "builtins.int"}}, "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "builtins.type.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": ["builtins.type", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of type", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__dictoffset__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__dictoffset__", "name": "__dictoffset__", "type": "builtins.int"}}, "__flags__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__flags__", "name": "__flags__", "type": "builtins.int"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.type.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.type", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "arg_types": ["builtins.type", "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.type", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "arg_types": ["builtins.type", "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__instancecheck__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "instance"], "flags": [], "fullname": "builtins.type.__instancecheck__", "name": "__instancecheck__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "instance"], "arg_types": ["builtins.type", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__instancecheck__ of type", "ret_type": "builtins.bool", "variables": []}}}, "__itemsize__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__itemsize__", "name": "__itemsize__", "type": "builtins.int"}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__module__", "name": "__module__", "type": "builtins.str"}}, "__mro__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__mro__", "name": "__mro__", "type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__name__", "name": "__name__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.type.__new__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__new__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__new__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}]}}}, "__prepare__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", "__name", "__bases", "kwds"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.type.__prepare__", "name": "__prepare__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", null, null, "kwds"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "metacls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__prepare__ of type", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "__prepare__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", null, null, "kwds"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "metacls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__prepare__ of type", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__subclasscheck__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "subclass"], "flags": [], "fullname": "builtins.type.__subclasscheck__", "name": "__subclasscheck__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "subclass"], "arg_types": ["builtins.type", "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__subclasscheck__ of type", "ret_type": "builtins.bool", "variables": []}}}, "__subclasses__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.type.__subclasses__", "name": "__subclasses__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__subclasses__ of type", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}]}}}, "__text_signature__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__text_signature__", "name": "__text_signature__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__weakrefoffset__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__weakrefoffset__", "name": "__weakrefoffset__", "type": "builtins.int"}}, "mro": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.type.mro", "name": "mro", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mro of type", "ret_type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.list"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "vars": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["object"], "flags": [], "fullname": "builtins.vars", "name": "vars", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["object"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "vars", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "zip": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.zip", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iter1"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iter1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iter1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}], "type_ref": "typing.Iterator"}, "variables": []}]}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/builtins.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json b/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json deleted file mode 100644 index a13091f..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [4, 11, 12, 13, 14], "dep_prios": [5, 5, 5, 5, 10], "dependencies": ["typing", "abc", "ast", "types", "sys"], "hash": "9dc9a9f7e49978b64af05d193d1c3871", "id": "builtins", "ignore_all": true, "interface_hash": "9231838664201464bc3dd98b9fb90b9d", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/builtins.pyi", "size": 67860, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json b/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json deleted file mode 100644 index 96bf9d4..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "codecs", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM", "name": "BOM", "type": "builtins.bytes"}}, "BOM_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_BE", "name": "BOM_BE", "type": "builtins.bytes"}}, "BOM_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_LE", "name": "BOM_LE", "type": "builtins.bytes"}}, "BOM_UTF16": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16", "name": "BOM_UTF16", "type": "builtins.bytes"}}, "BOM_UTF16_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16_BE", "name": "BOM_UTF16_BE", "type": "builtins.bytes"}}, "BOM_UTF16_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16_LE", "name": "BOM_UTF16_LE", "type": "builtins.bytes"}}, "BOM_UTF32": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32", "name": "BOM_UTF32", "type": "builtins.bytes"}}, "BOM_UTF32_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32_BE", "name": "BOM_UTF32_BE", "type": "builtins.bytes"}}, "BOM_UTF32_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32_LE", "name": "BOM_UTF32_LE", "type": "builtins.bytes"}}, "BOM_UTF8": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF8", "name": "BOM_UTF8", "type": "builtins.bytes"}}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BufferedIncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["_buffer_decode"], "bases": ["codecs.IncrementalDecoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.BufferedIncrementalDecoder", "name": "BufferedIncrementalDecoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.BufferedIncrementalDecoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.BufferedIncrementalDecoder", "codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.BufferedIncrementalDecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedIncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_buffer_decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.BufferedIncrementalDecoder._buffer_decode", "name": "_buffer_decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_decode of BufferedIncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "_buffer_decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_decode of BufferedIncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.BufferedIncrementalDecoder.buffer", "name": "buffer", "type": "builtins.bytes"}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": [], "fullname": "codecs.BufferedIncrementalDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of BufferedIncrementalDecoder", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedIncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["_buffer_encode"], "bases": ["codecs.IncrementalEncoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.BufferedIncrementalEncoder", "name": "BufferedIncrementalEncoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.BufferedIncrementalEncoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.BufferedIncrementalEncoder", "codecs.IncrementalEncoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.BufferedIncrementalEncoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedIncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_buffer_encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.BufferedIncrementalEncoder._buffer_encode", "name": "_buffer_encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "_buffer_encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.BufferedIncrementalEncoder.buffer", "name": "buffer", "type": "builtins.str"}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "flags": [], "fullname": "codecs.BufferedIncrementalEncoder.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Codec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.Codec", "name": "Codec", "type_vars": []}, "flags": [], "fullname": "codecs.Codec", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs.Codec.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs.Codec", "builtins.bytes", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of Codec", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs.Codec.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs.Codec", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of Codec", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "CodecInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.CodecInfo", "name": "CodecInfo", "type_vars": []}, "flags": [], "fullname": "codecs.CodecInfo", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.CodecInfo", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name"], "flags": [], "fullname": "codecs.CodecInfo.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of CodecInfo", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of CodecInfo", "ret_type": "codecs._Decoder", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of CodecInfo", "ret_type": "codecs._Decoder", "variables": []}}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of CodecInfo", "ret_type": "codecs._Encoder", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of CodecInfo", "ret_type": "codecs._Encoder", "variables": []}}}}, "incrementaldecoder": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.incrementaldecoder", "name": "incrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementaldecoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "incrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementaldecoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}}}, "incrementalencoder": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.incrementalencoder", "name": "incrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementalencoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "incrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementalencoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.CodecInfo.name", "name": "name", "type": "builtins.str"}}, "streamreader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.streamreader", "name": "streamreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamreader of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "streamreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamreader of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}}}, "streamwriter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.streamwriter", "name": "streamwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamwriter of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "streamwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamwriter of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "type_vars": [], "typeddict_type": null}}, "EncodedFile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["file", "data_encoding", "file_encoding", "errors"], "flags": [], "fullname": "codecs.EncodedFile", "name": "EncodedFile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["file", "data_encoding", "file_encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "EncodedFile", "ret_type": "codecs.StreamRecoder", "variables": []}}}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["decode"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.IncrementalDecoder", "name": "IncrementalDecoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.IncrementalDecoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.IncrementalDecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.IncrementalDecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.IncrementalDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalDecoder", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalDecoder", "ret_type": "builtins.str", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.IncrementalDecoder.errors", "name": "errors", "type": "builtins.str"}}, "getstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalDecoder.getstate", "name": "getstate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalDecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getstate of IncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalDecoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalDecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "flags": [], "fullname": "codecs.IncrementalDecoder.setstate", "name": "setstate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "arg_types": ["codecs.IncrementalDecoder", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setstate of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["encode"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.IncrementalEncoder", "name": "IncrementalEncoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.IncrementalEncoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.IncrementalEncoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.IncrementalEncoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.IncrementalEncoder.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of IncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of IncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.IncrementalEncoder.errors", "name": "errors", "type": "builtins.str"}}, "getstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalEncoder.getstate", "name": "getstate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalEncoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getstate of IncrementalEncoder", "ret_type": {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalEncoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalEncoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "flags": [], "fullname": "codecs.IncrementalEncoder.setstate", "name": "setstate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "arg_types": ["codecs.IncrementalEncoder", {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setstate of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Protocol": {".class": "SymbolTableNode", "cross_ref": "typing.Protocol", "kind": "Gdef", "module_hidden": true, "module_public": false}, "StreamReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.Codec"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamReader", "name": "StreamReader", "type_vars": []}, "flags": [], "fullname": "codecs.StreamReader", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamReader", "codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamReader", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamReader.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamReader", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamReader.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamReader", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "flags": [], "fullname": "codecs.StreamReader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "arg_types": ["codecs.StreamReader", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["codecs.StreamReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.StreamReader.errors", "name": "errors", "type": "builtins.str"}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "size", "chars", "firstline"], "flags": [], "fullname": "codecs.StreamReader.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "size", "chars", "firstline"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamReader", "ret_type": "builtins.str", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "size", "keepends"], "flags": [], "fullname": "codecs.StreamReader.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "size", "keepends"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamReader", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sizehint", "keepends"], "flags": [], "fullname": "codecs.StreamReader.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sizehint", "keepends"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamReaderWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.TextIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamReaderWriter", "name": "StreamReaderWriter", "type_vars": []}, "flags": [], "fullname": "codecs.StreamReaderWriter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamReaderWriter", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamReaderWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamReaderWriter.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamReaderWriter.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamReaderWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamReaderWriter", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1], "arg_names": ["self", "stream", "Reader", "Writer", "errors"], "flags": [], "fullname": "codecs.StreamReaderWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1], "arg_names": ["self", "stream", "Reader", "Writer", "errors"], "arg_types": ["codecs.StreamReaderWriter", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamReaderWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}]}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "codecs.StreamReaderWriter.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "flags": [], "fullname": "codecs.StreamReaderWriter.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamReaderWriter", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "codecs.StreamReaderWriter.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["codecs.StreamReaderWriter", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "flags": [], "fullname": "codecs.StreamReaderWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "arg_types": ["codecs.StreamReaderWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamReaderWriter.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamReaderWriter", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamRecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.BinaryIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamRecoder", "name": "StreamRecoder", "type_vars": []}, "flags": [], "fullname": "codecs.StreamRecoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamRecoder", "typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamRecoder", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "type", "value", "tb"], "flags": [], "fullname": "codecs.StreamRecoder.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamRecoder.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamRecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamRecoder", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 1], "arg_names": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"], "flags": [], "fullname": "codecs.StreamRecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 1], "arg_names": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"], "arg_types": ["codecs.StreamRecoder", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamRecoder", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}]}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "codecs.StreamRecoder.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "flags": [], "fullname": "codecs.StreamRecoder.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamRecoder", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "codecs.StreamRecoder.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["codecs.StreamRecoder", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "flags": [], "fullname": "codecs.StreamRecoder.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "arg_types": ["codecs.StreamRecoder", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamRecoder.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamRecoder", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.Codec"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamWriter", "name": "StreamWriter", "type_vars": []}, "flags": [], "fullname": "codecs.StreamWriter", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamWriter", "codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamWriter.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamWriter.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamWriter", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamWriter.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamWriter", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "flags": [], "fullname": "codecs.StreamWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "arg_types": ["codecs.StreamWriter", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.StreamWriter.errors", "name": "errors", "type": "builtins.str"}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamWriter.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "codecs.StreamWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["codecs.StreamWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamWriter.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamWriter", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Decoded": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._Decoded", "line": 13, "no_args": true, "normalized": false, "target": "builtins.str"}}, "_Decoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs._Decoder", "name": "_Decoder", "type_vars": []}, "flags": ["is_protocol"], "fullname": "codecs._Decoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs._Decoder", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs._Decoder.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs._Decoder", "builtins.bytes", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of _Decoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_Encoded": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._Encoded", "line": 14, "no_args": true, "normalized": false, "target": "builtins.bytes"}}, "_Encoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs._Encoder", "name": "_Encoder", "type_vars": []}, "flags": ["is_protocol"], "fullname": "codecs._Encoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs._Encoder", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs._Encoder.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs._Encoder", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of _Encoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_IncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._IncrementalDecoder", "line": 25, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}}}, "_IncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._IncrementalEncoder", "line": 24, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}}}, "_SR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SR", "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}}, "_SRT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SRT", "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}}, "_SW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SW", "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}}, "_StreamReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._StreamReader", "line": 22, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}}}, "_StreamWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._StreamWriter", "line": 23, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._T", "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "backslashreplace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.backslashreplace_errors", "name": "backslashreplace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "backslashreplace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "flags": [], "fullname": "codecs.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode", "ret_type": "builtins.str", "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "flags": [], "fullname": "codecs.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode", "ret_type": "builtins.bytes", "variables": []}}}, "getdecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getdecoder", "name": "getdecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdecoder", "ret_type": "codecs._Decoder", "variables": []}}}, "getencoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getencoder", "name": "getencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getencoder", "ret_type": "codecs._Encoder", "variables": []}}}, "getincrementaldecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getincrementaldecoder", "name": "getincrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getincrementaldecoder", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}}, "getincrementalencoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getincrementalencoder", "name": "getincrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getincrementalencoder", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}}, "getreader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getreader", "name": "getreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getreader", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}}, "getwriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getwriter", "name": "getwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getwriter", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}}, "ignore_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.ignore_errors", "name": "ignore_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ignore_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "iterdecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "flags": [], "fullname": "codecs.iterdecode", "name": "iterdecode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iterdecode", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "NoneTyp"}, {".class": "NoneTyp"}], "type_ref": "typing.Generator"}, "variables": []}}}, "iterencode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "flags": [], "fullname": "codecs.iterencode", "name": "iterencode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iterencode", "ret_type": {".class": "Instance", "args": ["builtins.bytes", {".class": "NoneTyp"}, {".class": "NoneTyp"}], "type_ref": "typing.Generator"}, "variables": []}}}, "lookup": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.lookup", "name": "lookup", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lookup", "ret_type": {".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "variables": []}}}, "lookup_error": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": [], "fullname": "codecs.lookup_error", "name": "lookup_error", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lookup_error", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}, "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["filename", "mode", "encoding", "errors", "buffering"], "flags": [], "fullname": "codecs.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["filename", "mode", "encoding", "errors", "buffering"], "arg_types": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": "codecs.StreamReaderWriter", "variables": []}}}, "register": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["search_function"], "flags": [], "fullname": "codecs.register", "name": "register", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["search_function"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "register_error": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "error_handler"], "flags": [], "fullname": "codecs.register_error", "name": "register_error", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "error_handler"], "arg_types": ["builtins.str", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register_error", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "replace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.replace_errors", "name": "replace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "strict_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.strict_errors", "name": "strict_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strict_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}, "xmlcharrefreplace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.xmlcharrefreplace_errors", "name": "xmlcharrefreplace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "xmlcharrefreplace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/codecs.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json b/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json deleted file mode 100644 index 011b186..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 4, 5, 1], "dep_prios": [10, 5, 5, 10, 5], "dependencies": ["sys", "typing", "abc", "types", "builtins"], "hash": "0cf7618d2eae9b45cfec48df6cd22eda", "id": "codecs", "ignore_all": true, "interface_hash": "62485daf53221e5f66639660621ddbbe", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/codecs.pyi", "size": 10854, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json deleted file mode 100644 index 9f301ec..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "collections", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AsyncGenerator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncGenerator", "kind": "Gdef"}, "AsyncIterable": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterable", "kind": "Gdef"}, "AsyncIterator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterator", "kind": "Gdef"}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef"}, "ByteString": {".class": "SymbolTableNode", "cross_ref": "typing.ByteString", "kind": "Gdef"}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef"}, "ChainMap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.ChainMap", "name": "ChainMap", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.ChainMap", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.ChainMap", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": [], "fullname": "collections.ChainMap.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "collections.ChainMap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of ChainMap", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "maps"], "flags": [], "fullname": "collections.ChainMap.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "maps"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.ChainMap.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.ChainMap.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of ChainMap", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": [], "fullname": "collections.ChainMap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "maps": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.ChainMap.maps", "name": "maps", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maps of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "maps", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maps of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "type_ref": "builtins.list"}, "variables": []}}}}, "new_child": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "m"], "flags": [], "fullname": "collections.ChainMap.new_child", "name": "new_child", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "m"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "new_child of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}}, "parents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.ChainMap.parents", "name": "parents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parents of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "parents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parents of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "Collection": {".class": "SymbolTableNode", "cross_ref": "typing.Collection", "kind": "Gdef"}, "Container": {".class": "SymbolTableNode", "cross_ref": "typing.Container", "kind": "Gdef"}, "Coroutine": {".class": "SymbolTableNode", "cross_ref": "typing.Coroutine", "kind": "Gdef"}, "Counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "builtins.dict"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.Counter", "name": "Counter", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.Counter", "metaclass_type": null, "metadata": {}, "module_name": "collections", "mro": ["collections.Counter", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of Counter", "ret_type": {".class": "TypeVarType", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}]}}}, "elements": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.elements", "name": "elements", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "elements of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "most_common": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.Counter.most_common", "name": "most_common", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "most_common of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "builtins.list"}, "variables": []}}}, "subtract": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.subtract", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "__mapping"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.subtract", "name": "subtract", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subtract", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.subtract", "name": "subtract", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subtract", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "typing.Iterable"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "typing.Iterable"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef"}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Hashable": {".class": "SymbolTableNode", "cross_ref": "typing.Hashable", "kind": "Gdef"}, "ItemsView": {".class": "SymbolTableNode", "cross_ref": "typing.ItemsView", "kind": "Gdef"}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef"}, "KeysView": {".class": "SymbolTableNode", "cross_ref": "typing.KeysView", "kind": "Gdef"}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef"}, "MappingView": {".class": "SymbolTableNode", "cross_ref": "typing.MappingView", "kind": "Gdef"}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef"}, "MutableSequence": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSequence", "kind": "Gdef"}, "MutableSet": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSet", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "OrderedDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.OrderedDict", "name": "OrderedDict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.OrderedDict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.OrderedDict", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of OrderedDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictItemsView"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictKeysView"}, "variables": []}}}, "move_to_end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "key", "last"], "flags": [], "fullname": "collections.OrderedDict.move_to_end", "name": "move_to_end", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "key", "last"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "move_to_end of OrderedDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "last"], "flags": [], "fullname": "collections.OrderedDict.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "last"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of OrderedDict", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "Reversible": {".class": "SymbolTableNode", "cross_ref": "typing.Reversible", "kind": "Gdef"}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.AbstractSet", "kind": "Gdef"}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef"}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UserDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserDict", "name": "UserDict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.UserDict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserDict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserDict", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 4], "arg_names": ["self", "dict", "kwargs"], "flags": [], "fullname": "collections.UserDict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 4], "arg_names": ["self", "dict", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of UserDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserDict", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "key", "item"], "flags": [], "fullname": "collections.UserDict.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserDict.data", "name": "data", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}}}, "fromkeys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "flags": ["is_class", "is_decorated"], "fullname": "collections.UserDict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "UserList": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserList", "name": "UserList", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.UserList", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserList", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserList.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.UserList.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserList.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "initlist"], "flags": [], "fullname": "collections.UserList.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "initlist"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserList", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserList.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.UserList.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of UserList", "ret_type": "builtins.int", "variables": []}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserList.data", "name": "data", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "item", "args"], "flags": [], "fullname": "collections.UserList.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "item", "args"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of UserList", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "item"], "flags": [], "fullname": "collections.UserList.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserList.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sort": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "collections.UserList.sort", "name": "sort", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sort of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "UserString": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserString", "name": "UserString", "type_vars": []}, "flags": [], "fullname": "collections.UserString", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserString.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of UserString", "ret_type": "builtins.complex", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "char"], "flags": [], "fullname": "collections.UserString.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of UserString", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserString.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "flags": [], "fullname": "collections.UserString.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "arg_types": ["collections.UserString", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserString", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of UserString", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserString", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "args"], "flags": [], "fullname": "collections.UserString.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserString.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "casefold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.casefold", "name": "casefold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "casefold of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of UserString", "ret_type": "builtins.int", "variables": []}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserString.data", "name": "data", "type": "builtins.str"}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "collections.UserString.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "flags": [], "fullname": "collections.UserString.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of UserString", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "collections.UserString.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of UserString", "ret_type": "builtins.int", "variables": []}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "collections.UserString.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": ["collections.UserString", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format of UserString", "ret_type": "builtins.str", "variables": []}}}, "format_map": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": ["is_conditional"], "fullname": "collections.UserString.format_map", "name": "format_map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": ["collections.UserString", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format_map of UserString", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", "builtins.str", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of UserString", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isdecimal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isdecimal", "name": "isdecimal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdecimal of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isidentifier": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isidentifier", "name": "isidentifier", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isidentifier of UserString", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isnumeric": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isnumeric", "name": "isnumeric", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isnumeric of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isprintable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.isprintable", "name": "isprintable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isprintable of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of UserString", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of UserString", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "flags": [], "fullname": "collections.UserString.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "arg_types": ["collections.UserString", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of UserString", "ret_type": "builtins.str", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "collections.UserString.maketrans", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["x"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "collections.UserString.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "collections.UserString.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}]}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "collections.UserString.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["collections.UserString", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "maxsplit"], "flags": [], "fullname": "collections.UserString.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "maxsplit"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of UserString", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of UserString", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "collections.UserString.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["collections.UserString", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "collections.UserString.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "collections.UserString.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "collections.UserString.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["collections.UserString", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "collections.UserString.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of UserString", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "flags": [], "fullname": "collections.UserString.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "collections.UserString.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ValuesView": {".class": "SymbolTableNode", "cross_ref": "typing.ValuesView", "kind": "Gdef"}, "_CounterT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._CounterT", "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}}, "_DefaultDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._DefaultDictT", "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_OrderedDictItemsView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ItemsView"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictItemsView", "name": "_OrderedDictItemsView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictItemsView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictItemsView", "typing.ItemsView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictItemsView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictItemsView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictItemsView", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "_OrderedDictKeysView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.KeysView"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictKeysView", "name": "_OrderedDictKeysView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictKeysView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictKeysView", "typing.KeysView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictKeysView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictKeysView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictKeysView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT"], "typeddict_type": null}}, "_OrderedDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._OrderedDictT", "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}}, "_OrderedDictValuesView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ValuesView"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictValuesView", "name": "_OrderedDictValuesView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictValuesView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictValuesView", "typing.ValuesView", "typing.MappingView", "typing.Iterable", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictValuesView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictValuesView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictValuesView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_VT"], "typeddict_type": null}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_UserDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserDictT", "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, "_UserListT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserListT", "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}}, "_UserStringT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserStringT", "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__package__", "name": "__package__", "type": "builtins.str"}}, "abc": {".class": "SymbolTableNode", "cross_ref": "collections.abc", "kind": "Gdef", "module_public": false}, "defaultdict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.defaultdict", "name": "defaultdict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.defaultdict", "metaclass_type": null, "metadata": {}, "module_name": "collections", "mro": ["collections.defaultdict", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.defaultdict.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__missing__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.defaultdict.__missing__", "name": "__missing__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__missing__ of defaultdict", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.defaultdict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of defaultdict", "ret_type": {".class": "TypeVarType", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}]}}}, "default_factory": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.defaultdict.default_factory", "name": "default_factory", "type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "deque": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.deque", "name": "deque", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.deque", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.deque", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "collections.deque.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of deque", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__delitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of deque", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "iterable", "maxlen"], "flags": [], "fullname": "collections.deque.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "iterable", "maxlen"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of deque", "ret_type": "builtins.int", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of deque", "ret_type": "builtins.str", "variables": []}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "appendleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.appendleft", "name": "appendleft", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "appendleft of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.deque.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of deque", "ret_type": "builtins.int", "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "extendleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.extendleft", "name": "extendleft", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extendleft of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "stop"], "flags": [], "fullname": "collections.deque.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "stop"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of deque", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": [], "fullname": "collections.deque.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "maxlen": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.deque.maxlen", "name": "maxlen", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maxlen of deque", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "maxlen", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maxlen of deque", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.deque.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "popleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.popleft", "name": "popleft", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popleft of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "collections.deque.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rotate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.deque.rotate", "name": "rotate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rotate of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "namedtuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["typename", "field_names", "rename", "module", "defaults"], "flags": ["is_conditional"], "fullname": "collections.namedtuple", "name": "namedtuple", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["typename", "field_names", "rename", "module", "defaults"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "namedtuple", "ret_type": {".class": "TypeType", "item": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}}, "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/__init__.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json deleted file mode 100644 index 736782e..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": ["collections.abc"], "data_mtime": 1553688971, "dep_lines": [2, 3, 9, 1, 1], "dep_prios": [10, 5, 10, 5, 30], "dependencies": ["sys", "typing", "collections.abc", "builtins", "abc"], "hash": "a771d73f70003131dc61f05923bcf536", "id": "collections", "ignore_all": true, "interface_hash": "6ad6a5afca808cc59c37f4e326a299e0", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/__init__.pyi", "size": 15231, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json deleted file mode 100644 index 7f0659b..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "collections.abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AsyncGenerator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncGenerator", "kind": "Gdef"}, "AsyncIterable": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterable", "kind": "Gdef"}, "AsyncIterator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterator", "kind": "Gdef"}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef"}, "ByteString": {".class": "SymbolTableNode", "cross_ref": "typing.ByteString", "kind": "Gdef"}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef"}, "Collection": {".class": "SymbolTableNode", "cross_ref": "typing.Collection", "kind": "Gdef"}, "Container": {".class": "SymbolTableNode", "cross_ref": "typing.Container", "kind": "Gdef"}, "Coroutine": {".class": "SymbolTableNode", "cross_ref": "typing.Coroutine", "kind": "Gdef"}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef"}, "Hashable": {".class": "SymbolTableNode", "cross_ref": "typing.Hashable", "kind": "Gdef"}, "ItemsView": {".class": "SymbolTableNode", "cross_ref": "typing.ItemsView", "kind": "Gdef"}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef"}, "KeysView": {".class": "SymbolTableNode", "cross_ref": "typing.KeysView", "kind": "Gdef"}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef"}, "MappingView": {".class": "SymbolTableNode", "cross_ref": "typing.MappingView", "kind": "Gdef"}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef"}, "MutableSequence": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSequence", "kind": "Gdef"}, "MutableSet": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSet", "kind": "Gdef"}, "Reversible": {".class": "SymbolTableNode", "cross_ref": "typing.Reversible", "kind": "Gdef"}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.AbstractSet", "kind": "Gdef"}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef"}, "ValuesView": {".class": "SymbolTableNode", "cross_ref": "typing.ValuesView", "kind": "Gdef"}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__package__", "name": "__package__", "type": "builtins.str"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/abc.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json deleted file mode 100644 index 06bdc9b..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [4, 6, 1, 1, 1], "dep_prios": [10, 5, 5, 30, 30], "dependencies": ["sys", "collections", "builtins", "abc", "typing"], "hash": "197c87e716a5e5bf05eb5bca4ecd0344", "id": "collections.abc", "ignore_all": true, "interface_hash": "da969010ae7ae1e030fc27b25fb90d6a", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/abc.pyi", "size": 1027, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json b/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json deleted file mode 100644 index 1a7ae54..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "datetime", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ClassVar": {".class": "SymbolTableNode", "cross_ref": "typing.ClassVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAXYEAR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.MAXYEAR", "name": "MAXYEAR", "type": "builtins.int"}}, "MINYEAR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.MINYEAR", "name": "MINYEAR", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SupportsAbs": {".class": "SymbolTableNode", "cross_ref": "typing.SupportsAbs", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Text": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "datetime._Text", "line": 9, "no_args": true, "normalized": false, "target": "builtins.str"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__package__", "name": "__package__", "type": "builtins.str"}}, "_date": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._date", "line": 132, "no_args": true, "normalized": false, "target": "datetime.date"}}, "_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._time", "line": 133, "no_args": true, "normalized": false, "target": "datetime.time"}}, "_tzinfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._tzinfo", "line": 31, "no_args": true, "normalized": false, "target": "datetime.tzinfo"}}, "date": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.date", "name": "date", "type_vars": []}, "flags": [], "fullname": "datetime.date", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.date", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of date", "ret_type": "datetime.date", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.date.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.date", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of date", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of date", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "year", "month", "day"], "flags": [], "fullname": "datetime.date.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "year", "month", "day"], "arg_types": ["datetime.date", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of date", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.date.__sub__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.date.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.date.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.date", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.timedelta", "variables": []}]}}}, "ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime of date", "ret_type": "builtins.str", "variables": []}}}, "day": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.day", "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of date", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.date.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of date", "ret_type": "datetime.date", "variables": []}}}}, "fromordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.fromordinal", "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of date", "ret_type": "datetime.date", "variables": []}}}}, "fromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.fromtimestamp", "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of date", "ret_type": "datetime.date", "variables": []}}}}, "isocalendar": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isocalendar", "name": "isocalendar", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isocalendar of date", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of date", "ret_type": "builtins.str", "variables": []}}}, "isoweekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isoweekday", "name": "isoweekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoweekday of date", "ret_type": "builtins.int", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.max", "name": "max", "type": "datetime.date"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.min", "name": "min", "type": "datetime.date"}}, "month": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.month", "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of date", "ret_type": "builtins.int", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "year", "month", "day"], "flags": [], "fullname": "datetime.date.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "year", "month", "day"], "arg_types": ["datetime.date", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of date", "ret_type": "datetime.date", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.date.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.date", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of date", "ret_type": "builtins.str", "variables": []}}}, "timetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.timetuple", "name": "timetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetuple of date", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "today": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.today", "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of date", "ret_type": "datetime.date", "variables": []}}}}, "toordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.toordinal", "name": "toordinal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "toordinal of date", "ret_type": "builtins.int", "variables": []}}}, "weekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.weekday", "name": "weekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "weekday of date", "ret_type": "builtins.int", "variables": []}}}, "year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.year", "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of date", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "datetime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["datetime.date"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.datetime", "name": "datetime", "type_vars": []}, "flags": [], "fullname": "datetime.datetime", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.datetime", "datetime.date", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.datetime.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.datetime", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of datetime", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of datetime", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.datetime.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.datetime", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of datetime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.datetime.__sub__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.datetime.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.datetime.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.timedelta", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.datetime", "variables": []}]}}}, "astimezone": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tz"], "flags": ["is_conditional"], "fullname": "datetime.datetime.astimezone", "name": "astimezone", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tz"], "arg_types": ["datetime.datetime", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "astimezone of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "combine": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.combine", "name": "combine", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "datetime.date", "datetime.time", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "combine of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "combine", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "datetime.date", "datetime.time", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "combine of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime of datetime", "ret_type": "builtins.str", "variables": []}}}, "date": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.date", "name": "date", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "date of datetime", "ret_type": "datetime.date", "variables": []}}}, "day": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.day", "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of datetime", "ret_type": "builtins.int", "variables": []}}}}, "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "fold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.fold", "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of datetime", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "fromordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.fromordinal", "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "fromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.fromtimestamp", "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.hour", "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of datetime", "ret_type": "builtins.int", "variables": []}}}}, "isocalendar": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.isocalendar", "name": "isocalendar", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isocalendar of datetime", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "timespec"], "flags": ["is_conditional"], "fullname": "datetime.datetime.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "timespec"], "arg_types": ["datetime.datetime", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of datetime", "ret_type": "builtins.str", "variables": []}}}, "isoweekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.isoweekday", "name": "isoweekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoweekday of datetime", "ret_type": "builtins.int", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.max", "name": "max", "type": "datetime.datetime"}}, "microsecond": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.microsecond", "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of datetime", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.min", "name": "min", "type": "datetime.datetime"}}, "minute": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.minute", "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of datetime", "ret_type": "builtins.int", "variables": []}}}}, "month": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.month", "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of datetime", "ret_type": "builtins.int", "variables": []}}}}, "now": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.now", "name": "now", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "now of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "now", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "now of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.datetime.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.datetime", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "second": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.second", "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of datetime", "ret_type": "builtins.int", "variables": []}}}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.datetime.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.datetime", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of datetime", "ret_type": "builtins.str", "variables": []}}}, "strptime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.strptime", "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "time": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.time", "name": "time", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time of datetime", "ret_type": "datetime.time", "variables": []}}}, "timestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "datetime.datetime.timestamp", "name": "timestamp", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timestamp of datetime", "ret_type": "builtins.float", "variables": []}}}, "timetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.timetuple", "name": "timetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetuple of datetime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "timetz": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.timetz", "name": "timetz", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetz of datetime", "ret_type": "datetime.time", "variables": []}}}, "today": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.today", "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "toordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.toordinal", "name": "toordinal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "toordinal of datetime", "ret_type": "builtins.int", "variables": []}}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.tzinfo", "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of datetime", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcfromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.utcfromtimestamp", "name": "utcfromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcfromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "utcfromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcfromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "utcnow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.utcnow", "name": "utcnow", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcnow of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "utcnow", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcnow of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "utctimetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.utctimetuple", "name": "utctimetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utctimetuple of datetime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "weekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.weekday", "name": "weekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "weekday of datetime", "ret_type": "builtins.int", "variables": []}}}, "year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.year", "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of datetime", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "struct_time": {".class": "SymbolTableNode", "cross_ref": "time.struct_time", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.time", "name": "time", "type_vars": []}, "flags": [], "fullname": "datetime.time", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.time", "builtins.object"], "names": {".class": "SymbolTable", "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.time.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.time", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of time", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of time", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.time.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.time", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of time", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of time", "ret_type": "builtins.bool", "variables": []}}}, "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of time", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "fold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated", "is_conditional"], "fullname": "datetime.time.fold", "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of time", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.time.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "arg_types": [{".class": "TypeType", "item": "datetime.time"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of time", "ret_type": "datetime.time", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "arg_types": [{".class": "TypeType", "item": "datetime.time"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of time", "ret_type": "datetime.time", "variables": []}}}}, "hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.hour", "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of time", "ret_type": "builtins.int", "variables": []}}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of time", "ret_type": "builtins.str", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.max", "name": "max", "type": "datetime.time"}}, "microsecond": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.microsecond", "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of time", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.min", "name": "min", "type": "datetime.time"}}, "minute": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.minute", "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of time", "ret_type": "builtins.int", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.time.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.time", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of time", "ret_type": "datetime.time", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "second": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.second", "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of time", "ret_type": "builtins.int", "variables": []}}}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.time.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.time", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of time", "ret_type": "builtins.str", "variables": []}}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.tzinfo", "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of time", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of time", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of time", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of time", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "timedelta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["datetime.timedelta"], "type_ref": "typing.SupportsAbs"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.timedelta", "name": "timedelta", "type_vars": []}, "flags": [], "fullname": "datetime.timedelta", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "datetime", "mro": ["datetime.timedelta", "typing.SupportsAbs", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of timedelta", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "datetime.timedelta"]}, "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.timedelta.__floordiv__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.timedelta.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__floordiv__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.timedelta.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__floordiv__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}]}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of timedelta", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks", "fold"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks", "fold"], "arg_types": ["datetime.timedelta", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of timedelta", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.timedelta.__truediv__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "datetime.timedelta.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__truediv__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "datetime.timedelta.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__truediv__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}]}}}, "days": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.days", "name": "days", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "days of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "days", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "days of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.max", "name": "max", "type": "datetime.timedelta"}}, "microseconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.microseconds", "name": "microseconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microseconds of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microseconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microseconds of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.min", "name": "min", "type": "datetime.timedelta"}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "seconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.seconds", "name": "seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seconds of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seconds of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "total_seconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.total_seconds", "name": "total_seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "total_seconds of timedelta", "ret_type": "builtins.float", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "timezone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["datetime.tzinfo"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.timezone", "name": "timezone", "type_vars": []}, "flags": [], "fullname": "datetime.timezone", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.timezone", "datetime.tzinfo", "builtins.object"], "names": {".class": "SymbolTable", "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timezone.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timezone"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of timezone", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "name"], "flags": [], "fullname": "datetime.timezone.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "name"], "arg_types": ["datetime.timezone", "datetime.timedelta", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of timezone", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.max", "name": "max", "type": "datetime.timezone"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.min", "name": "min", "type": "datetime.timezone"}}, "utc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.utc", "name": "utc", "type": "datetime.timezone"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.tzinfo", "name": "tzinfo", "type_vars": []}, "flags": [], "fullname": "datetime.tzinfo", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.tzinfo", "builtins.object"], "names": {".class": "SymbolTable", "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of tzinfo", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "fromutc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.fromutc", "name": "fromutc", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromutc of tzinfo", "ret_type": "datetime.datetime", "variables": []}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of tzinfo", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of tzinfo", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/datetime.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json b/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json deleted file mode 100644 index 209de5d..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 2, 3, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "time", "typing", "builtins", "abc"], "hash": "bde6d0c920f3e5d74be327b4014cf04c", "id": "datetime", "ignore_all": true, "interface_hash": "93e7833fdfe9b9165393a28786b70b0f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/datetime.pyi", "size": 10854, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json deleted file mode 100644 index 59b0911..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "importlib", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.Loader", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__file__", "name": "__file__", "type": "builtins.str"}}, "__import__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "flags": [], "fullname": "importlib.__import__", "name": "__import__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__import__", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__package__", "name": "__package__", "type": "builtins.str"}}, "find_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "path"], "flags": [], "fullname": "importlib.find_loader", "name": "find_loader", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "path"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_loader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "import_module": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.import_module", "name": "import_module", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "import_module", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "importlib.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reload": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": [], "fullname": "importlib.reload", "name": "reload", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reload", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}, "util": {".class": "SymbolTableNode", "cross_ref": "importlib.util", "kind": "Gdef", "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/__init__.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json deleted file mode 100644 index aa3daec..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": ["importlib.abc", "importlib.machinery", "importlib.util"], "data_mtime": 1553688972, "dep_lines": [1, 2, 3, 4, 5, 1], "dep_prios": [10, 5, 10, 10, 5, 5], "dependencies": ["importlib.util", "importlib.abc", "sys", "types", "typing", "builtins"], "hash": "8a1ad9d3e69ecaaa263bca419aacba9b", "id": "importlib", "ignore_all": true, "interface_hash": "573f2c7f89b4f75c757120b0820a35bc", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/__init__.pyi", "size": 635, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json deleted file mode 100644 index 9b89db6..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "importlib.abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ExecutionLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_filename", "get_source"], "bases": ["importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.ExecutionLoader", "name": "ExecutionLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ExecutionLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.ExecutionLoader.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["types.CodeType", {".class": "NoneTyp"}]}, "variables": []}}}, "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ExecutionLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_source"], "bases": ["importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.FileLoader", "name": "FileLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.FileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.FileLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "flags": [], "fullname": "importlib.abc.FileLoader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "arg_types": ["importlib.abc.FileLoader", "builtins.str", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "get_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.FileLoader.get_data", "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.FileLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of FileLoader", "ret_type": "builtins.bytes", "variables": []}}}, "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.FileLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.FileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of FileLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.abc.FileLoader.name", "name": "name", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.abc.FileLoader.path", "name": "path", "type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Finder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.Finder", "name": "Finder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.Finder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "InspectLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_source"], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.InspectLoader", "name": "InspectLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.InspectLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "importlib.abc.InspectLoader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["importlib.abc.InspectLoader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of InspectLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of InspectLoader", "ret_type": {".class": "UnionType", "items": ["types.CodeType", {".class": "NoneTyp"}]}, "variables": []}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.InspectLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of InspectLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of InspectLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of InspectLoader", "ret_type": "builtins.bool", "variables": []}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of InspectLoader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "source_to_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "flags": ["is_static", "is_decorated", "is_conditional"], "fullname": "importlib.abc.InspectLoader.source_to_code", "name": "source_to_code", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_to_code of InspectLoader", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "source_to_code", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_to_code of InspectLoader", "ret_type": "types.CodeType", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.Loader", "kind": "Gdef"}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MetaPathFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.Finder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.MetaPathFinder", "name": "MetaPathFinder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.MetaPathFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "arg_types": ["importlib.abc.MetaPathFinder", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of MetaPathFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "fullname", "path", "target"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "fullname", "path", "target"], "arg_types": ["importlib.abc.MetaPathFinder", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of MetaPathFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.MetaPathFinder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches of MetaPathFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleSpec": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleSpec", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PathEntryFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.Finder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.PathEntryFinder", "name": "PathEntryFinder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.PathEntryFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.PathEntryFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_loader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_loader", "name": "find_loader", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_loader of PathEntryFinder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}]}, "variables": []}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of PathEntryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "fullname", "target"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "fullname", "target"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of PathEntryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.PathEntryFinder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches of PathEntryFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_data"], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.ResourceLoader", "name": "ResourceLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ResourceLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ResourceLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceLoader.get_data", "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.ResourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of ResourceLoader", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.ResourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of ResourceLoader", "ret_type": "builtins.bytes", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["contents", "is_resource", "open_resource", "resource_path"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.ResourceReader", "name": "ResourceReader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ResourceReader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ResourceReader", "builtins.object"], "names": {".class": "SymbolTable", "contents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.contents", "name": "contents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.ResourceReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "contents of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "contents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.ResourceReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "contents of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}}, "is_resource": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.is_resource", "name": "is_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "arg_types": ["importlib.abc.ResourceReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_resource of ResourceReader", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "is_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "arg_types": ["importlib.abc.ResourceReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_resource of ResourceReader", "ret_type": "builtins.bool", "variables": []}}}}, "open_resource": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.open_resource", "name": "open_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open_resource of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "open_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open_resource of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "variables": []}}}}, "resource_path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.resource_path", "name": "resource_path", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resource_path of ResourceReader", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "resource_path", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resource_path of ResourceReader", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SourceLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_data", "get_filename"], "bases": ["importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.SourceLoader", "name": "SourceLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.SourceLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.SourceLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.SourceLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of SourceLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "path_mtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.SourceLoader.path_mtime", "name": "path_mtime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_mtime of SourceLoader", "ret_type": "builtins.float", "variables": []}}}, "path_stats": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.SourceLoader.path_stats", "name": "path_stats", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_stats of SourceLoader", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}}, "set_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "path", "data"], "flags": [], "fullname": "importlib.abc.SourceLoader.set_data", "name": "set_data", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "path", "data"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_data of SourceLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "importlib.abc._Path", "line": 13, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}}}, "_PathLike": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "importlib.abc._PathLike", "line": 87, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "os": {".class": "SymbolTableNode", "cross_ref": "os", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/abc.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json deleted file mode 100644 index eac0aa8..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 3, 4, 5, 9, 1], "dep_prios": [5, 10, 10, 10, 5, 5, 5], "dependencies": ["abc", "os", "sys", "types", "typing", "_importlib_modulespec", "builtins"], "hash": "7cc03285de04bb194f3ca097fc436c62", "id": "importlib.abc", "ignore_all": true, "interface_hash": "ef5f22eea727b286ccebd3ea18096ae7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/abc.pyi", "size": 3754, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json deleted file mode 100644 index 693db5e..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "importlib.machinery", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.BYTECODE_SUFFIXES", "name": "BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "BuiltinImporter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder", "importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.BuiltinImporter", "name": "BuiltinImporter", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.BuiltinImporter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.BuiltinImporter", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of BuiltinImporter", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of BuiltinImporter", "ret_type": "builtins.bool", "variables": []}}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of BuiltinImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of BuiltinImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of BuiltinImporter", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of BuiltinImporter", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DEBUG_BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.DEBUG_BYTECODE_SUFFIXES", "name": "DEBUG_BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "EXTENSION_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.EXTENSION_SUFFIXES", "name": "EXTENSION_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "ExtensionFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.ExecutionLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.ExtensionFileLoader", "name": "ExtensionFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.ExtensionFileLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.machinery.ExtensionFileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExtensionFileLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.machinery.ExtensionFileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of ExtensionFileLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.PathEntryFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.FileFinder", "name": "FileFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.FileFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.FileFinder", "importlib.abc.PathEntryFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "path", "loader_details"], "flags": [], "fullname": "importlib.machinery.FileFinder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "path", "loader_details"], "arg_types": ["importlib.machinery.FileFinder", "builtins.str", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.machinery.FileFinder.path", "name": "path", "type": "builtins.str"}}, "path_hook": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FileFinder.path_hook", "name": "path_hook", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FileFinder"}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_hook of FileFinder", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "importlib.abc.PathEntryFinder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "path_hook", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FileFinder"}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_hook of FileFinder", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "importlib.abc.PathEntryFinder", "variables": []}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FrozenImporter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder", "importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.FrozenImporter", "name": "FrozenImporter", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.FrozenImporter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.FrozenImporter", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of FrozenImporter", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of FrozenImporter", "ret_type": "builtins.bool", "variables": []}}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of FrozenImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of FrozenImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of FrozenImporter", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of FrozenImporter", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ModuleSpec": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleSpec", "kind": "Gdef"}, "OPTIMIZED_BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES", "name": "OPTIMIZED_BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PathFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.PathFinder", "name": "PathFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.PathFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.PathFinder", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SOURCE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.SOURCE_SUFFIXES", "name": "SOURCE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SourceFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.FileLoader", "importlib.abc.SourceLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.SourceFileLoader", "name": "SourceFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.SourceFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.SourceFileLoader", "importlib.abc.FileLoader", "importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SourcelessFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.FileLoader", "importlib.abc.SourceLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.SourcelessFileLoader", "name": "SourcelessFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.SourcelessFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.SourcelessFileLoader", "importlib.abc.FileLoader", "importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WindowsRegistryFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.WindowsRegistryFinder", "name": "WindowsRegistryFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.WindowsRegistryFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.WindowsRegistryFinder", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.WindowsRegistryFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.WindowsRegistryFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__package__", "name": "__package__", "type": "builtins.str"}}, "all_suffixes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "importlib.machinery.all_suffixes", "name": "all_suffixes", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "all_suffixes", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "importlib": {".class": "SymbolTableNode", "cross_ref": "importlib", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/machinery.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json deleted file mode 100644 index 853d26f..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 1, 2, 3, 4, 8, 1, 1], "dep_prios": [10, 20, 10, 10, 5, 5, 5, 30], "dependencies": ["importlib.abc", "importlib", "sys", "types", "typing", "_importlib_modulespec", "builtins", "abc"], "hash": "9bea5ebfb2c54fc55c8326d1f2ffbf4b", "id": "importlib.machinery", "ignore_all": true, "interface_hash": "4730c4ea59f442a95c6ab1b377c60d94", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/machinery.pyi", "size": 4042, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json deleted file mode 100644 index 9cb2f1f..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "importlib.util", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "LazyLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.util.LazyLoader", "name": "LazyLoader", "type_vars": []}, "flags": [], "fullname": "importlib.util.LazyLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.util", "mro": ["importlib.util.LazyLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "loader"], "flags": [], "fullname": "importlib.util.LazyLoader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "loader"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of LazyLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "flags": [], "fullname": "importlib.util.LazyLoader.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of LazyLoader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "importlib.util.LazyLoader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of LazyLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "factory": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.util.LazyLoader.factory", "name": "factory", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "arg_types": [{".class": "TypeType", "item": "importlib.util.LazyLoader"}, "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "factory of LazyLoader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "importlib.util.LazyLoader", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "factory", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "arg_types": [{".class": "TypeType", "item": "importlib.util.LazyLoader"}, "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "factory of LazyLoader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "importlib.util.LazyLoader", "variables": []}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAGIC_NUMBER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.MAGIC_NUMBER", "name": "MAGIC_NUMBER", "type": "builtins.bytes"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__package__", "name": "__package__", "type": "builtins.str"}}, "cache_from_source": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "debug_override", "optimization"], "flags": [], "fullname": "importlib.util.cache_from_source", "name": "cache_from_source", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "debug_override", "optimization"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cache_from_source", "ret_type": "builtins.str", "variables": []}}}, "decode_source": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["source_bytes"], "flags": [], "fullname": "importlib.util.decode_source", "name": "decode_source", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["source_bytes"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode_source", "ret_type": "builtins.str", "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.util.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "importlib": {".class": "SymbolTableNode", "cross_ref": "importlib", "kind": "Gdef", "module_hidden": true, "module_public": false}, "module_for_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.module_for_loader", "name": "module_for_loader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_for_loader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "module_from_spec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["spec"], "flags": ["is_conditional"], "fullname": "importlib.util.module_from_spec", "name": "module_from_spec", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["spec"], "arg_types": ["_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_from_spec", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "resolve_name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.util.resolve_name", "name": "resolve_name", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "package"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resolve_name", "ret_type": "builtins.str", "variables": []}}}, "set_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.set_loader", "name": "set_loader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_loader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "set_package": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.set_package", "name": "set_package", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_package", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "source_from_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "importlib.util.source_from_cache", "name": "source_from_cache", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_from_cache", "ret_type": "builtins.str", "variables": []}}}, "spec_from_file_location": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["name", "location", "loader", "submodule_search_locations"], "flags": [], "fullname": "importlib.util.spec_from_file_location", "name": "spec_from_file_location", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["name", "location", "loader", "submodule_search_locations"], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spec_from_file_location", "ret_type": "_importlib_modulespec.ModuleSpec", "variables": []}}}, "spec_from_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["name", "loader", "origin", "loader_state", "is_package"], "flags": [], "fullname": "importlib.util.spec_from_loader", "name": "spec_from_loader", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["name", "loader", "origin", "loader_state", "is_package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spec_from_loader", "ret_type": "_importlib_modulespec.ModuleSpec", "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/util.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json deleted file mode 100644 index f88cf09..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 1, 2, 3, 4, 5, 1, 1], "dep_prios": [10, 20, 10, 10, 10, 5, 5, 30], "dependencies": ["importlib.abc", "importlib", "importlib.machinery", "sys", "types", "typing", "builtins", "abc"], "hash": "55cfa44b22eaf5725a6b468278fe1a25", "id": "importlib.util", "ignore_all": true, "interface_hash": "2df6020715c50b3ed69d3b9dfdae3310", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/util.pyi", "size": 1881, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/io.data.json b/Postgres/StressTests/.mypy_cache/3.7/io.data.json deleted file mode 100644 index f319a74..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/io.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "io", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BlockingIOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "io.BlockingIOError", "line": 23, "no_args": true, "normalized": false, "target": "builtins.BlockingIOError"}}, "BufferedIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedIOBase", "name": "BufferedIOBase", "type_vars": []}, "flags": [], "fullname": "io.BufferedIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedIOBase.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of BufferedIOBase", "ret_type": "io.RawIOBase", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of BufferedIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "read1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedIOBase.read1", "name": "read1", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read1 of BufferedIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedIOBase.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}, "readinto1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": ["is_conditional"], "fullname": "io.BufferedIOBase.readinto1", "name": "readinto1", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto1 of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedRWPair": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedRWPair", "name": "BufferedRWPair", "type_vars": []}, "flags": [], "fullname": "io.BufferedRWPair", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedRWPair", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "reader", "writer", "buffer_size"], "flags": [], "fullname": "io.BufferedRWPair.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "reader", "writer", "buffer_size"], "arg_types": ["io.BufferedRWPair", "io.RawIOBase", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedRWPair", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedRandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedReader", "io.BufferedWriter"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedRandom", "name": "BufferedRandom", "type_vars": []}, "flags": [], "fullname": "io.BufferedRandom", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedRandom", "io.BufferedReader", "io.BufferedWriter", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedRandom.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedRandom", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedRandom", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.BufferedRandom.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.BufferedRandom", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of BufferedRandom", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedRandom.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedRandom"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of BufferedRandom", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedReader", "name": "BufferedReader", "type_vars": []}, "flags": [], "fullname": "io.BufferedReader", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedReader", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedReader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedReader", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "peek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedReader.peek", "name": "peek", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedReader", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "peek of BufferedReader", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedWriter", "name": "BufferedWriter", "type_vars": []}, "flags": [], "fullname": "io.BufferedWriter", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedWriter", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedWriter", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedWriter.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of BufferedWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedWriter", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BufferedWriter", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BytesIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.BinaryIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BytesIO", "name": "BytesIO", "type_vars": []}, "flags": [], "fullname": "io.BytesIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.BytesIO", "typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BytesIO", "ret_type": "io.BytesIO", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "t", "value", "traceback"], "flags": [], "fullname": "io.BytesIO.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": [null, null, null, null], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "initial_bytes"], "flags": [], "fullname": "io.BytesIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "initial_bytes"], "arg_types": ["io.BytesIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of BytesIO", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.BytesIO.closed", "name": "closed", "type": "builtins.bool"}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of BytesIO", "ret_type": "io.RawIOBase", "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getbuffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.getbuffer", "name": "getbuffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getbuffer of BytesIO", "ret_type": "builtins.memoryview", "variables": []}}}, "getvalue": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.getvalue", "name": "getvalue", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getvalue of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.BytesIO.name", "name": "name", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "read1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.read1", "name": "read1", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read1 of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BytesIO.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "readinto1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": ["is_conditional"], "fullname": "io.BytesIO.readinto1", "name": "readinto1", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto1 of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.BytesIO.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of BytesIO", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.BytesIO.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.BytesIO", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BytesIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.BytesIO.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.BytesIO", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DEFAULT_BUFFER_SIZE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.DEFAULT_BUFFER_SIZE", "name": "DEFAULT_BUFFER_SIZE", "type": "builtins.int"}}, "FileIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.RawIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.FileIO", "name": "FileIO", "type_vars": []}, "flags": [], "fullname": "io.FileIO", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.FileIO", "io.RawIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1, 1], "arg_names": ["self", "name", "mode", "closefd", "opener"], "flags": [], "fullname": "io.FileIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1, 1], "arg_names": ["self", "name", "mode", "closefd", "opener"], "arg_types": ["io.FileIO", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int"]}, "builtins.str", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "builtins.int", "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.FileIO.mode", "name": "mode", "type": "builtins.str"}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.FileIO.name", "name": "name", "type": {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.IOBase", "name": "IOBase", "type_vars": []}, "flags": [], "fullname": "io.IOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IOBase", "ret_type": {".class": "TypeVarType", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_val", "exc_tb"], "flags": [], "fullname": "io.IOBase.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["io.IOBase", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IOBase", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IOBase", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "io.IOBase.closed", "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IOBase", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IOBase", "ret_type": "builtins.bool", "variables": []}}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IOBase", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.IOBase.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.IOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.IOBase.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.IOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IOBase", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.IOBase.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.IOBase", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IOBase", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IOBase", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.IOBase.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.IOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IOBase", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.IOBase.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.IOBase", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IncrementalNewlineDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.IncrementalDecoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.IncrementalNewlineDecoder", "name": "IncrementalNewlineDecoder", "type_vars": []}, "flags": [], "fullname": "io.IncrementalNewlineDecoder", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.IncrementalNewlineDecoder", "codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "flags": [], "fullname": "io.IncrementalNewlineDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "arg_types": ["io.IncrementalNewlineDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalNewlineDecoder", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "RawIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.RawIOBase", "name": "RawIOBase", "type_vars": []}, "flags": [], "fullname": "io.RawIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.RawIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.RawIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "variables": []}}}, "readall": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.RawIOBase.readall", "name": "readall", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.RawIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readall of RawIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.RawIOBase.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.RawIOBase", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.RawIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.RawIOBase", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SEEK_CUR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_CUR", "name": "SEEK_CUR", "type": "builtins.int"}}, "SEEK_END": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_END", "name": "SEEK_END", "type": "builtins.int"}}, "SEEK_SET": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_SET", "name": "SEEK_SET", "type": "builtins.int"}}, "StringIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.TextIOWrapper"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.StringIO", "name": "StringIO", "type_vars": []}, "flags": [], "fullname": "io.StringIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.StringIO", "io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.StringIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.StringIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StringIO", "ret_type": "io.StringIO", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "initial_value", "newline"], "flags": [], "fullname": "io.StringIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "initial_value", "newline"], "arg_types": ["io.StringIO", "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StringIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getvalue": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.StringIO.getvalue", "name": "getvalue", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.StringIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getvalue of StringIO", "ret_type": "builtins.str", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.StringIO.name", "name": "name", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.TextIOBase", "name": "TextIOBase", "type_vars": []}, "flags": [], "fullname": "io.TextIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.TextIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of TextIOBase", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of TextIOBase", "ret_type": "io.IOBase", "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.encoding", "name": "encoding", "type": "builtins.str"}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.errors", "name": "errors", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.newlines", "name": "newlines", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOBase.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.TextIOBase.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.TextIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of TextIOBase", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.TextIOBase.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.TextIOBase", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "io.TextIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["io.TextIOBase", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.TextIOBase.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.TextIOBase", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of TextIOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TextIOWrapper": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.TextIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.TextIOWrapper", "name": "TextIOWrapper", "type_vars": []}, "flags": [], "fullname": "io.TextIOWrapper", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIOWrapper", "ret_type": "typing.TextIO", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "t", "value", "traceback"], "flags": [], "fullname": "io.TextIOWrapper.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": [null, null, null, null], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"], "flags": [], "fullname": "io.TextIOWrapper.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"], "arg_types": ["io.TextIOWrapper", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of TextIOWrapper", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.closed", "name": "closed", "type": "builtins.bool"}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of TextIOWrapper", "ret_type": "io.IOBase", "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.encoding", "name": "encoding", "type": "builtins.str"}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.errors", "name": "errors", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "line_buffering": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.line_buffering", "name": "line_buffering", "type": "builtins.bool"}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.newlines", "name": "newlines", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.TextIOWrapper.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.TextIOWrapper", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of TextIOWrapper", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.TextIOWrapper.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.TextIOWrapper", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "io.TextIOWrapper.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["io.TextIOWrapper", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.TextIOWrapper.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.TextIOWrapper", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UnsupportedOperation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError", "builtins.ValueError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.UnsupportedOperation", "name": "UnsupportedOperation", "type_vars": []}, "flags": [], "fullname": "io.UnsupportedOperation", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.UnsupportedOperation", "builtins.OSError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "io._T", "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__package__", "name": "__package__", "type": "builtins.str"}}, "_bytearray_like": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "io._bytearray_like", "line": 11, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}}}, "builtins": {".class": "SymbolTableNode", "cross_ref": "builtins", "kind": "Gdef", "module_hidden": true, "module_public": false}, "codecs": {".class": "SymbolTableNode", "cross_ref": "codecs", "kind": "Gdef", "module_hidden": true, "module_public": false}, "mmap": {".class": "SymbolTableNode", "cross_ref": "mmap.mmap", "kind": "Gdef", "module_hidden": true, "module_public": false}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.IO"}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/io.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/io.meta.json b/Postgres/StressTests/.mypy_cache/3.7/io.meta.json deleted file mode 100644 index 6a623cb..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/io.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 4, 5, 6, 7, 8, 1], "dep_prios": [5, 10, 10, 5, 10, 5, 30], "dependencies": ["typing", "builtins", "codecs", "mmap", "sys", "types", "abc"], "hash": "9c21bf44c37d1b8b811d83d7a3f07d2c", "id": "io", "ignore_all": true, "interface_hash": "b1472b02b781d113d90477d5cc75b94a", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/io.pyi", "size": 8390, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json b/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json deleted file mode 100644 index ab0d5ff..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "mmap", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ACCESS_COPY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_COPY", "name": "ACCESS_COPY", "type": "builtins.int"}}, "ACCESS_DEFAULT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_DEFAULT", "name": "ACCESS_DEFAULT", "type": "builtins.int"}}, "ACCESS_READ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_READ", "name": "ACCESS_READ", "type": "builtins.int"}}, "ACCESS_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_WRITE", "name": "ACCESS_WRITE", "type": "builtins.int"}}, "ALLOCATIONGRANULARITY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ALLOCATIONGRANULARITY", "name": "ALLOCATIONGRANULARITY", "type": "builtins.int"}}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ContextManager": {".class": "SymbolTableNode", "cross_ref": "typing.ContextManager", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAP_ANON": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_ANON", "name": "MAP_ANON", "type": "builtins.int"}}, "MAP_ANONYMOUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_ANONYMOUS", "name": "MAP_ANONYMOUS", "type": "builtins.int"}}, "MAP_DENYWRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_DENYWRITE", "name": "MAP_DENYWRITE", "type": "builtins.int"}}, "MAP_EXECUTABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_EXECUTABLE", "name": "MAP_EXECUTABLE", "type": "builtins.int"}}, "MAP_PRIVATE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_PRIVATE", "name": "MAP_PRIVATE", "type": "builtins.int"}}, "MAP_SHARED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_SHARED", "name": "MAP_SHARED", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PAGESIZE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PAGESIZE", "name": "PAGESIZE", "type": "builtins.int"}}, "PROT_EXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_EXEC", "name": "PROT_EXEC", "type": "builtins.int"}}, "PROT_READ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_READ", "name": "PROT_READ", "type": "builtins.int"}}, "PROT_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_WRITE", "name": "PROT_WRITE", "type": "builtins.int"}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__package__", "name": "__package__", "type": "builtins.str"}}, "_mmap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "mmap._mmap", "name": "_mmap", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "mmap._mmap", "metaclass_type": null, "metadata": {}, "module_name": "mmap", "mro": ["mmap._mmap", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1, 1], "arg_names": ["self", "fileno", "length", "flags", "prot", "access", "offset"], "flags": ["is_conditional"], "fullname": "mmap._mmap.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1, 1], "arg_names": ["self", "fileno", "length", "flags", "prot", "access", "offset"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of _mmap", "ret_type": "builtins.int", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "mmap._mmap.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of _mmap", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "offset", "size"], "flags": [], "fullname": "mmap._mmap.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "offset", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of _mmap", "ret_type": "builtins.int", "variables": []}}}, "move": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "dest", "src", "count"], "flags": [], "fullname": "mmap._mmap.move", "name": "move", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "dest", "src", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "move of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": [], "fullname": "mmap._mmap.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "read_byte": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.read_byte", "name": "read_byte", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read_byte of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "resize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "newsize"], "flags": [], "fullname": "mmap._mmap.resize", "name": "resize", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "newsize"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resize of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "pos", "whence"], "flags": [], "fullname": "mmap._mmap.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "pos", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "size": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.size", "name": "size", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "size of _mmap", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of _mmap", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "bytes"], "flags": [], "fullname": "mmap._mmap.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "bytes"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write_byte": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "byte"], "flags": [], "fullname": "mmap._mmap.write_byte", "name": "write_byte", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "byte"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write_byte of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "mmap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "mmap._mmap"}, {".class": "Instance", "args": ["mmap.mmap"], "type_ref": "typing.ContextManager"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}, "typing.Sized"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "mmap.mmap", "name": "mmap", "type_vars": []}, "flags": [], "fullname": "mmap.mmap", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "mmap", "mro": ["mmap.mmap", "mmap._mmap", "typing.ContextManager", "typing.Iterable", "typing.Sized", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": [], "fullname": "mmap.mmap.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "mmap.mmap.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.bytes", "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap.mmap.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["mmap.mmap"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of mmap", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "mmap.mmap.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.slice", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.slice", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "mmap.mmap.closed", "name": "closed", "type": "builtins.bool"}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "stop"], "flags": [], "fullname": "mmap.mmap.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "stop"], "arg_types": ["mmap.mmap", "builtins.bytes", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of mmap", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/mmap.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json b/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json deleted file mode 100644 index 003aafe..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 1, 1], "dep_prios": [10, 5, 5, 30], "dependencies": ["sys", "typing", "builtins", "abc"], "hash": "a527e2c242313095d9dc614864bfe399", "id": "mmap", "ignore_all": true, "interface_hash": "ba45a849db3e37fbf3939ccc9a9c001b", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/mmap.pyi", "size": 3115, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json deleted file mode 100644 index 6d6ddab..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "os", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CLD_CONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_CONTINUED", "name": "CLD_CONTINUED", "type": "builtins.int"}}, "CLD_DUMPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_DUMPED", "name": "CLD_DUMPED", "type": "builtins.int"}}, "CLD_EXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_EXITED", "name": "CLD_EXITED", "type": "builtins.int"}}, "CLD_TRAPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_TRAPPED", "name": "CLD_TRAPPED", "type": "builtins.int"}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ContextManager": {".class": "SymbolTableNode", "cross_ref": "typing.ContextManager", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DirEntry": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.DirEntry", "name": "DirEntry", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os.DirEntry", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.DirEntry", "builtins._PathLike", "builtins.object"], "names": {".class": "SymbolTable", "__fspath__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.__fspath__", "name": "__fspath__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__fspath__ of DirEntry", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "inode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.inode", "name": "inode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "inode of DirEntry", "ret_type": "builtins.int", "variables": []}}}, "is_dir": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.is_dir", "name": "is_dir", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_dir of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "is_file": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.is_file", "name": "is_file", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_file of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "is_symlink": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.is_symlink", "name": "is_symlink", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_symlink of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.DirEntry.name", "name": "name", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.DirEntry.path", "name": "path", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "stat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.stat", "name": "stat", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "stat of DirEntry", "ret_type": "os.stat_result", "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "EX_CANTCREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_CANTCREAT", "name": "EX_CANTCREAT", "type": "builtins.int"}}, "EX_CONFIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_CONFIG", "name": "EX_CONFIG", "type": "builtins.int"}}, "EX_DATAERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_DATAERR", "name": "EX_DATAERR", "type": "builtins.int"}}, "EX_IOERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_IOERR", "name": "EX_IOERR", "type": "builtins.int"}}, "EX_NOHOST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOHOST", "name": "EX_NOHOST", "type": "builtins.int"}}, "EX_NOINPUT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOINPUT", "name": "EX_NOINPUT", "type": "builtins.int"}}, "EX_NOPERM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOPERM", "name": "EX_NOPERM", "type": "builtins.int"}}, "EX_NOTFOUND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOTFOUND", "name": "EX_NOTFOUND", "type": "builtins.int"}}, "EX_NOUSER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOUSER", "name": "EX_NOUSER", "type": "builtins.int"}}, "EX_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OK", "name": "EX_OK", "type": "builtins.int"}}, "EX_OSERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OSERR", "name": "EX_OSERR", "type": "builtins.int"}}, "EX_OSFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OSFILE", "name": "EX_OSFILE", "type": "builtins.int"}}, "EX_PROTOCOL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_PROTOCOL", "name": "EX_PROTOCOL", "type": "builtins.int"}}, "EX_SOFTWARE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_SOFTWARE", "name": "EX_SOFTWARE", "type": "builtins.int"}}, "EX_TEMPFAIL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_TEMPFAIL", "name": "EX_TEMPFAIL", "type": "builtins.int"}}, "EX_UNAVAILABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_UNAVAILABLE", "name": "EX_UNAVAILABLE", "type": "builtins.int"}}, "EX_USAGE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_USAGE", "name": "EX_USAGE", "type": "builtins.int"}}, "F_LOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_LOCK", "name": "F_LOCK", "type": "builtins.int"}}, "F_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_OK", "name": "F_OK", "type": "builtins.int"}}, "F_TEST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_TEST", "name": "F_TEST", "type": "builtins.int"}}, "F_TLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_TLOCK", "name": "F_TLOCK", "type": "builtins.int"}}, "F_ULOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_ULOCK", "name": "F_ULOCK", "type": "builtins.int"}}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NoReturn": {".class": "SymbolTableNode", "cross_ref": "typing.NoReturn", "kind": "Gdef", "module_hidden": true, "module_public": false}, "O_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_APPEND", "name": "O_APPEND", "type": "builtins.int"}}, "O_ASYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_ASYNC", "name": "O_ASYNC", "type": "builtins.int"}}, "O_BINARY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_BINARY", "name": "O_BINARY", "type": "builtins.int"}}, "O_CLOEXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_CLOEXEC", "name": "O_CLOEXEC", "type": "builtins.int"}}, "O_CREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_CREAT", "name": "O_CREAT", "type": "builtins.int"}}, "O_DIRECT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DIRECT", "name": "O_DIRECT", "type": "builtins.int"}}, "O_DIRECTORY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DIRECTORY", "name": "O_DIRECTORY", "type": "builtins.int"}}, "O_DSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DSYNC", "name": "O_DSYNC", "type": "builtins.int"}}, "O_EXCL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_EXCL", "name": "O_EXCL", "type": "builtins.int"}}, "O_EXLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_EXLOCK", "name": "O_EXLOCK", "type": "builtins.int"}}, "O_LARGEFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_LARGEFILE", "name": "O_LARGEFILE", "type": "builtins.int"}}, "O_NDELAY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NDELAY", "name": "O_NDELAY", "type": "builtins.int"}}, "O_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOATIME", "name": "O_NOATIME", "type": "builtins.int"}}, "O_NOCTTY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOCTTY", "name": "O_NOCTTY", "type": "builtins.int"}}, "O_NOFOLLOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOFOLLOW", "name": "O_NOFOLLOW", "type": "builtins.int"}}, "O_NOINHERIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOINHERIT", "name": "O_NOINHERIT", "type": "builtins.int"}}, "O_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NONBLOCK", "name": "O_NONBLOCK", "type": "builtins.int"}}, "O_PATH": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_PATH", "name": "O_PATH", "type": "builtins.int"}}, "O_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RANDOM", "name": "O_RANDOM", "type": "builtins.int"}}, "O_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RDONLY", "name": "O_RDONLY", "type": "builtins.int"}}, "O_RDWR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RDWR", "name": "O_RDWR", "type": "builtins.int"}}, "O_RSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RSYNC", "name": "O_RSYNC", "type": "builtins.int"}}, "O_SEQUENTIAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SEQUENTIAL", "name": "O_SEQUENTIAL", "type": "builtins.int"}}, "O_SHLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SHLOCK", "name": "O_SHLOCK", "type": "builtins.int"}}, "O_SHORT_LIVED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SHORT_LIVED", "name": "O_SHORT_LIVED", "type": "builtins.int"}}, "O_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SYNC", "name": "O_SYNC", "type": "builtins.int"}}, "O_TEMPORARY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TEMPORARY", "name": "O_TEMPORARY", "type": "builtins.int"}}, "O_TEXT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TEXT", "name": "O_TEXT", "type": "builtins.int"}}, "O_TMPFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TMPFILE", "name": "O_TMPFILE", "type": "builtins.int"}}, "O_TRUNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TRUNC", "name": "O_TRUNC", "type": "builtins.int"}}, "O_WRONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_WRONLY", "name": "O_WRONLY", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "POSIX_FADV_DONTNEED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_DONTNEED", "name": "POSIX_FADV_DONTNEED", "type": "builtins.int"}}, "POSIX_FADV_NOREUSE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_NOREUSE", "name": "POSIX_FADV_NOREUSE", "type": "builtins.int"}}, "POSIX_FADV_NORMAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_NORMAL", "name": "POSIX_FADV_NORMAL", "type": "builtins.int"}}, "POSIX_FADV_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_RANDOM", "name": "POSIX_FADV_RANDOM", "type": "builtins.int"}}, "POSIX_FADV_SEQUENTIAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_SEQUENTIAL", "name": "POSIX_FADV_SEQUENTIAL", "type": "builtins.int"}}, "POSIX_FADV_WILLNEED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_WILLNEED", "name": "POSIX_FADV_WILLNEED", "type": "builtins.int"}}, "PRIO_PGRP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_PGRP", "name": "PRIO_PGRP", "type": "builtins.int"}}, "PRIO_PROCESS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_PROCESS", "name": "PRIO_PROCESS", "type": "builtins.int"}}, "PRIO_USER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_USER", "name": "PRIO_USER", "type": "builtins.int"}}, "P_ALL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_ALL", "name": "P_ALL", "type": "builtins.int"}}, "P_NOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_NOWAIT", "name": "P_NOWAIT", "type": "builtins.int"}}, "P_NOWAITO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_NOWAITO", "name": "P_NOWAITO", "type": "builtins.int"}}, "P_PGID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_PGID", "name": "P_PGID", "type": "builtins.int"}}, "P_PID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_PID", "name": "P_PID", "type": "builtins.int"}}, "P_WAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_WAIT", "name": "P_WAIT", "type": "builtins.int"}}, "PathLike": {".class": "SymbolTableNode", "cross_ref": "builtins._PathLike", "kind": "Gdef"}, "RTLD_DEEPBIND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_DEEPBIND", "name": "RTLD_DEEPBIND", "type": "builtins.int"}}, "RTLD_GLOBAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_GLOBAL", "name": "RTLD_GLOBAL", "type": "builtins.int"}}, "RTLD_LAZY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_LAZY", "name": "RTLD_LAZY", "type": "builtins.int"}}, "RTLD_LOCAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_LOCAL", "name": "RTLD_LOCAL", "type": "builtins.int"}}, "RTLD_NODELETE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NODELETE", "name": "RTLD_NODELETE", "type": "builtins.int"}}, "RTLD_NOLOAD": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NOLOAD", "name": "RTLD_NOLOAD", "type": "builtins.int"}}, "RTLD_NOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NOW", "name": "RTLD_NOW", "type": "builtins.int"}}, "R_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.R_OK", "name": "R_OK", "type": "builtins.int"}}, "SCHED_BATCH": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_BATCH", "name": "SCHED_BATCH", "type": "builtins.int"}}, "SCHED_FIFO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_FIFO", "name": "SCHED_FIFO", "type": "builtins.int"}}, "SCHED_IDLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_IDLE", "name": "SCHED_IDLE", "type": "builtins.int"}}, "SCHED_OTHER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_OTHER", "name": "SCHED_OTHER", "type": "builtins.int"}}, "SCHED_RESET_ON_FORK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_RESET_ON_FORK", "name": "SCHED_RESET_ON_FORK", "type": "builtins.int"}}, "SCHED_RR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_RR", "name": "SCHED_RR", "type": "builtins.int"}}, "SCHED_SPORADIC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_SPORADIC", "name": "SCHED_SPORADIC", "type": "builtins.int"}}, "SEEK_CUR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_CUR", "name": "SEEK_CUR", "type": "builtins.int"}}, "SEEK_DATA": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_DATA", "name": "SEEK_DATA", "type": "builtins.int"}}, "SEEK_END": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_END", "name": "SEEK_END", "type": "builtins.int"}}, "SEEK_HOLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_HOLE", "name": "SEEK_HOLE", "type": "builtins.int"}}, "SEEK_SET": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_SET", "name": "SEEK_SET", "type": "builtins.int"}}, "SF_MNOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_MNOWAIT", "name": "SF_MNOWAIT", "type": "builtins.int"}}, "SF_NODISKIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_NODISKIO", "name": "SF_NODISKIO", "type": "builtins.int"}}, "SF_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_SYNC", "name": "SF_SYNC", "type": "builtins.int"}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.Set", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TMP_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.TMP_MAX", "name": "TMP_MAX", "type": "builtins.int"}}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WCONTINUED", "name": "WCONTINUED", "type": "builtins.int"}}, "WCOREDUMP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WCOREDUMP", "name": "WCOREDUMP", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WCOREDUMP", "ret_type": "builtins.bool", "variables": []}}}, "WEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WEXITED", "name": "WEXITED", "type": "builtins.int"}}, "WEXITSTATUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WEXITSTATUS", "name": "WEXITSTATUS", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WEXITSTATUS", "ret_type": "builtins.int", "variables": []}}}, "WIFCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFCONTINUED", "name": "WIFCONTINUED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFCONTINUED", "ret_type": "builtins.bool", "variables": []}}}, "WIFEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFEXITED", "name": "WIFEXITED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFEXITED", "ret_type": "builtins.bool", "variables": []}}}, "WIFSIGNALED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFSIGNALED", "name": "WIFSIGNALED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFSIGNALED", "ret_type": "builtins.bool", "variables": []}}}, "WIFSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFSTOPPED", "name": "WIFSTOPPED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFSTOPPED", "ret_type": "builtins.bool", "variables": []}}}, "WNOHANG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WNOHANG", "name": "WNOHANG", "type": "builtins.int"}}, "WNOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WNOWAIT", "name": "WNOWAIT", "type": "builtins.int"}}, "WSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WSTOPPED", "name": "WSTOPPED", "type": "builtins.int"}}, "WSTOPSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WSTOPSIG", "name": "WSTOPSIG", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WSTOPSIG", "ret_type": "builtins.int", "variables": []}}}, "WTERMSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WTERMSIG", "name": "WTERMSIG", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WTERMSIG", "ret_type": "builtins.int", "variables": []}}}, "WUNTRACED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WUNTRACED", "name": "WUNTRACED", "type": "builtins.int"}}, "W_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.W_OK", "name": "W_OK", "type": "builtins.int"}}, "XATTR_CREATE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_CREATE", "name": "XATTR_CREATE", "type": "builtins.int"}}, "XATTR_REPLACE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_REPLACE", "name": "XATTR_REPLACE", "type": "builtins.int"}}, "XATTR_SIZE_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_SIZE_MAX", "name": "XATTR_SIZE_MAX", "type": "builtins.int"}}, "X_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.X_OK", "name": "X_OK", "type": "builtins.int"}}, "_Environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._Environ", "name": "_Environ", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os._Environ", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._Environ", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "os._Environ.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of _Environ", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "os._Environ.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of _Environ", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of _Environ", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of _Environ", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "key", "value"], "flags": [], "fullname": "os._Environ.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of _Environ", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of _Environ", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_ExecVArgs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "os._ExecVArgs", "line": 628, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}}}, "_FdOrPathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os._FdOrPathType", "line": 244, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_PathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "os._PathType", "line": 242, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_ScandirIterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "type_ref": "typing.Iterator"}, {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "type_ref": "typing.ContextManager"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._ScandirIterator", "name": "_ScandirIterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os._ScandirIterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._ScandirIterator", "typing.Iterator", "typing.Iterable", "typing.ContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._ScandirIterator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of _ScandirIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._ScandirIterator.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _ScandirIterator", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "os._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TextIOWrapper": {".class": "SymbolTableNode", "cross_ref": "io.TextIOWrapper", "kind": "Gdef"}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__package__", "name": "__package__", "type": "builtins.str"}}, "_exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "os._exit", "name": "_exit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "_wrap_close": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.TextIOWrapper"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._wrap_close", "name": "_wrap_close", "type_vars": []}, "flags": [], "fullname": "os._wrap_close", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._wrap_close", "io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._wrap_close.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["os._wrap_close"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _wrap_close", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "abort": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.abort", "name": "abort", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abort", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "access": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["path", "mode", "dir_fd", "effective_ids", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.access", "name": "access", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["path", "mode", "dir_fd", "effective_ids", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "access", "ret_type": "builtins.bool", "variables": []}}}, "altsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.altsep", "name": "altsep", "type": "builtins.str"}}, "bytes": {".class": "SymbolTableNode", "cross_ref": "builtins.bytes", "kind": "Gdef", "module_hidden": true, "module_public": false}, "chdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.chdir", "name": "chdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["path", "flags", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chflags", "name": "chflags", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["path", "flags", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["path", "mode", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chmod", "name": "chmod", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["path", "mode", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5, 5], "arg_names": ["path", "uid", "gid", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chown", "name": "chown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5, 5], "arg_names": ["path", "uid", "gid", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chroot": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.chroot", "name": "chroot", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chroot", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closerange": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd_low", "fd_high"], "flags": [], "fullname": "os.closerange", "name": "closerange", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd_low", "fd_high"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closerange", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "confstr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.confstr", "name": "confstr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "confstr", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "confstr_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.confstr_names", "name": "confstr_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "cpu_count": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.cpu_count", "name": "cpu_count", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cpu_count", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "ctermid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.ctermid", "name": "ctermid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctermid", "ret_type": "builtins.str", "variables": []}}}, "curdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.curdir", "name": "curdir", "type": "builtins.str"}}, "defpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.defpath", "name": "defpath", "type": "builtins.str"}}, "device_encoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.device_encoding", "name": "device_encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "device_encoding", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "devnull": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.devnull", "name": "devnull", "type": "builtins.str"}}, "dup": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.dup", "name": "dup", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dup", "ret_type": "builtins.int", "variables": []}}}, "dup2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["fd", "fd2", "inheritable"], "flags": ["is_conditional"], "fullname": "os.dup2", "name": "dup2", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["fd", "fd2", "inheritable"], "arg_types": ["builtins.int", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dup2", "ret_type": "builtins.int", "variables": []}}}, "environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.environ", "name": "environ", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._Environ"}}}, "environb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.environb", "name": "environb", "type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "os._Environ"}}}, "error": {".class": "SymbolTableNode", "cross_ref": "builtins.OSError", "kind": "Gdef"}, "execl": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execl", "name": "execl", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execl", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execle": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execle", "name": "execle", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execle", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execlp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execlp", "name": "execlp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execlp", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execlpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execlpe", "name": "execlpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execlpe", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "args"], "flags": [], "fullname": "os.execv", "name": "execv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execv", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execve": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["path", "args", "env"], "flags": [], "fullname": "os.execve", "name": "execve", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["path", "args", "env"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execve", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execvp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["file", "args"], "flags": [], "fullname": "os.execvp", "name": "execvp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["file", "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execvp", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execvpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["file", "args", "env"], "flags": [], "fullname": "os.execvpe", "name": "execvpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["file", "args", "env"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execvpe", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "extsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.extsep", "name": "extsep", "type": "builtins.str"}}, "fchdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fchdir", "name": "fchdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fchmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "mode"], "flags": ["is_conditional"], "fullname": "os.fchmod", "name": "fchmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "mode"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fchown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "uid", "gid"], "flags": ["is_conditional"], "fullname": "os.fchown", "name": "fchown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "uid", "gid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fdatasync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.fdatasync", "name": "fdatasync", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdatasync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fdopen": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["fd", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "flags": [], "fullname": "os.fdopen", "name": "fdopen", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["fd", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": ["builtins.int", "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdopen", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "fork": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.fork", "name": "fork", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fork", "ret_type": "builtins.int", "variables": []}}}, "forkpty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.forkpty", "name": "forkpty", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "forkpty", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "fpathconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "name"], "flags": ["is_conditional"], "fullname": "os.fpathconf", "name": "fpathconf", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "name"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fpathconf", "ret_type": "builtins.int", "variables": []}}}, "fsdecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_conditional"], "fullname": "os.fsdecode", "name": "fsdecode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsdecode", "ret_type": "builtins.str", "variables": []}}}, "fsencode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_conditional"], "fullname": "os.fsencode", "name": "fsencode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsencode", "ret_type": "builtins.bytes", "variables": []}}}, "fspath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.fspath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.str", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.bytes", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}, "fstat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fstat", "name": "fstat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fstat", "ret_type": "os.stat_result", "variables": []}}}, "fstatvfs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.fstatvfs", "name": "fstatvfs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fstatvfs", "ret_type": "os.statvfs_result", "variables": []}}}, "fsync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fsync", "name": "fsync", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "ftruncate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "length"], "flags": ["is_conditional"], "fullname": "os.ftruncate", "name": "ftruncate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "length"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ftruncate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fwalk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.fwalk", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fwalk", "name": "fwalk", "type": {".class": "CallableType", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fwalk", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fwalk", "name": "fwalk", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": ["builtins.bytes", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fwalk", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": ["builtins.bytes", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}]}}}, "get_blocking": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.get_blocking", "name": "get_blocking", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_blocking", "ret_type": "builtins.bool", "variables": []}}}, "get_exec_path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["env"], "flags": [], "fullname": "os.get_exec_path", "name": "get_exec_path", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["env"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_exec_path", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "get_inheritable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.get_inheritable", "name": "get_inheritable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_inheritable", "ret_type": "builtins.bool", "variables": []}}}, "get_terminal_size": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["fd"], "flags": [], "fullname": "os.get_terminal_size", "name": "get_terminal_size", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_terminal_size", "ret_type": {".class": "TupleType", "fallback": "os.terminal_size", "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "getcwd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getcwd", "name": "getcwd", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcwd", "ret_type": "builtins.str", "variables": []}}}, "getcwdb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getcwdb", "name": "getcwdb", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcwdb", "ret_type": "builtins.bytes", "variables": []}}}, "getegid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getegid", "name": "getegid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getegid", "ret_type": "builtins.int", "variables": []}}}, "getenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.getenv", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["key"], "flags": ["is_overload", "is_decorated"], "fullname": "os.getenv", "name": "getenv", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getenv", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "os.getenv", "name": "getenv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "arg_types": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getenv", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "arg_types": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "getenvb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["key", "default"], "flags": [], "fullname": "os.getenvb", "name": "getenvb", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["key", "default"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenvb", "ret_type": "builtins.bytes", "variables": []}}}, "geteuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.geteuid", "name": "geteuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "geteuid", "ret_type": "builtins.int", "variables": []}}}, "getgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getgid", "name": "getgid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgid", "ret_type": "builtins.int", "variables": []}}}, "getgrouplist": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["user", "gid"], "flags": ["is_conditional"], "fullname": "os.getgrouplist", "name": "getgrouplist", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["user", "gid"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgrouplist", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}, "getgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getgroups", "name": "getgroups", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgroups", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}, "getloadavg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getloadavg", "name": "getloadavg", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getloadavg", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float"]}, "variables": []}}}, "getlogin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getlogin", "name": "getlogin", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getlogin", "ret_type": "builtins.str", "variables": []}}}, "getpgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.getpgid", "name": "getpgid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpgid", "ret_type": "builtins.int", "variables": []}}}, "getpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getpgrp", "name": "getpgrp", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpgrp", "ret_type": "builtins.int", "variables": []}}}, "getpid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getpid", "name": "getpid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpid", "ret_type": "builtins.int", "variables": []}}}, "getppid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getppid", "name": "getppid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getppid", "ret_type": "builtins.int", "variables": []}}}, "getpriority": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["which", "who"], "flags": ["is_conditional"], "fullname": "os.getpriority", "name": "getpriority", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["which", "who"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpriority", "ret_type": "builtins.int", "variables": []}}}, "getrandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["size", "flags"], "flags": ["is_conditional"], "fullname": "os.getrandom", "name": "getrandom", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["size", "flags"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrandom", "ret_type": "builtins.bytes", "variables": []}}}, "getresgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getresgid", "name": "getresgid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getresgid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "getresuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getresuid", "name": "getresuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getresuid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "getsid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.getsid", "name": "getsid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsid", "ret_type": "builtins.int", "variables": []}}}, "getuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getuid", "name": "getuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getuid", "ret_type": "builtins.int", "variables": []}}}, "getxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.getxattr", "name": "getxattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getxattr", "ret_type": "builtins.bytes", "variables": []}}}, "initgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["username", "gid"], "flags": ["is_conditional"], "fullname": "os.initgroups", "name": "initgroups", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["username", "gid"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "initgroups", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty", "ret_type": "builtins.bool", "variables": []}}}, "kill": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "sig"], "flags": [], "fullname": "os.kill", "name": "kill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "sig"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "kill", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "killpg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pgid", "sig"], "flags": ["is_conditional"], "fullname": "os.killpg", "name": "killpg", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pgid", "sig"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "killpg", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "flags"], "flags": ["is_conditional"], "fullname": "os.lchflags", "name": "lchflags", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "flags"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "mode"], "flags": ["is_conditional"], "fullname": "os.lchmod", "name": "lchmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "mode"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["path", "uid", "gid"], "flags": ["is_conditional"], "fullname": "os.lchown", "name": "lchown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["path", "uid", "gid"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "linesep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.linesep", "name": "linesep", "type": "builtins.str"}}, "link": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["src", "link_name", "src_dir_fd", "dst_dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.link", "name": "link", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["src", "link_name", "src_dir_fd", "dst_dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "link", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "listdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.listdir", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [1], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}]}}}, "listxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.listxattr", "name": "listxattr", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listxattr", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "lockf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["__fd", "__cmd", "__length"], "flags": ["is_conditional"], "fullname": "os.lockf", "name": "lockf", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lockf", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lseek": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "pos", "how"], "flags": [], "fullname": "os.lseek", "name": "lseek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "pos", "how"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lseek", "ret_type": "builtins.int", "variables": []}}}, "lstat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.lstat", "name": "lstat", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstat", "ret_type": "os.stat_result", "variables": []}}}, "major": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["device"], "flags": [], "fullname": "os.major", "name": "major", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["device"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "major", "ret_type": "builtins.int", "variables": []}}}, "makedev": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["major", "minor"], "flags": [], "fullname": "os.makedev", "name": "makedev", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["major", "minor"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "makedev", "ret_type": "builtins.int", "variables": []}}}, "makedirs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["name", "mode", "exist_ok"], "flags": ["is_conditional"], "fullname": "os.makedirs", "name": "makedirs", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["name", "mode", "exist_ok"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "makedirs", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "minor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["device"], "flags": [], "fullname": "os.minor", "name": "minor", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["device"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minor", "ret_type": "builtins.int", "variables": []}}}, "mkdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mkdir", "name": "mkdir", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mkdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mkfifo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mkfifo", "name": "mkfifo", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mkfifo", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mknod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 5], "arg_names": ["path", "mode", "device", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mknod", "name": "mknod", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 5], "arg_names": ["path", "mode", "device", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mknod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.name", "name": "name", "type": "builtins.str"}}, "nice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["increment"], "flags": ["is_conditional"], "fullname": "os.nice", "name": "nice", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["increment"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "nice", "ret_type": "builtins.int", "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5], "arg_names": ["file", "flags", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5], "arg_names": ["file", "flags", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": "builtins.int", "variables": []}}}, "openpty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.openpty", "name": "openpty", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "openpty", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "pardir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pardir", "name": "pardir", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "cross_ref": "os.path", "kind": "Gdef"}, "pathconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "name"], "flags": ["is_conditional"], "fullname": "os.pathconf", "name": "pathconf", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "name"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pathconf", "ret_type": "builtins.int", "variables": []}}}, "pathconf_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pathconf_names", "name": "pathconf_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "pathsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pathsep", "name": "pathsep", "type": "builtins.str"}}, "pipe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.pipe", "name": "pipe", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pipe", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "pipe2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["flags"], "flags": ["is_conditional"], "fullname": "os.pipe2", "name": "pipe2", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["flags"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pipe2", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "plock": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["op"], "flags": ["is_conditional"], "fullname": "os.plock", "name": "plock", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["op"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "plock", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "popen": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["command", "mode", "buffering"], "flags": ["is_conditional"], "fullname": "os.popen", "name": "popen", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["command", "mode", "buffering"], "arg_types": ["builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popen", "ret_type": "os._wrap_close", "variables": []}}}, "posix_fadvise": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["fd", "offset", "length", "advice"], "flags": ["is_conditional"], "fullname": "os.posix_fadvise", "name": "posix_fadvise", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["fd", "offset", "length", "advice"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "posix_fadvise", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "posix_fallocate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "offset", "length"], "flags": ["is_conditional"], "fullname": "os.posix_fallocate", "name": "posix_fallocate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "offset", "length"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "posix_fallocate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pread": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "buffersize", "offset"], "flags": ["is_conditional"], "fullname": "os.pread", "name": "pread", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "buffersize", "offset"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pread", "ret_type": "builtins.bytes", "variables": []}}}, "putenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["key", "value"], "flags": [], "fullname": "os.putenv", "name": "putenv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "value"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "putenv", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pwrite": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "string", "offset"], "flags": ["is_conditional"], "fullname": "os.pwrite", "name": "pwrite", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "string", "offset"], "arg_types": ["builtins.int", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pwrite", "ret_type": "builtins.int", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "n"], "flags": [], "fullname": "os.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "n"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read", "ret_type": "builtins.bytes", "variables": []}}}, "readlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.readlink", "name": "readlink", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlink", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}}, "readv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "flags": ["is_conditional"], "fullname": "os.readv", "name": "readv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readv", "ret_type": "builtins.int", "variables": []}}}, "register_at_fork": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["func", "when"], "flags": ["is_conditional"], "fullname": "os.register_at_fork", "name": "register_at_fork", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "when"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "builtins.object", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register_at_fork", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "removedirs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.removedirs", "name": "removedirs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "removedirs", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "removexattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.removexattr", "name": "removexattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "removexattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rename": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "flags": ["is_conditional"], "fullname": "os.rename", "name": "rename", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rename", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "renames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["old", "new"], "flags": [], "fullname": "os.renames", "name": "renames", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["old", "new"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "renames", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "flags": ["is_conditional"], "fullname": "os.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rmdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.rmdir", "name": "rmdir", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rmdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "scandir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.scandir", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "sched_get_priority_max": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["policy"], "flags": ["is_conditional"], "fullname": "os.sched_get_priority_max", "name": "sched_get_priority_max", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["policy"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_get_priority_max", "ret_type": "builtins.int", "variables": []}}}, "sched_get_priority_min": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["policy"], "flags": ["is_conditional"], "fullname": "os.sched_get_priority_min", "name": "sched_get_priority_min", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["policy"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_get_priority_min", "ret_type": "builtins.int", "variables": []}}}, "sched_getaffinity": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getaffinity", "name": "sched_getaffinity", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getaffinity", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.set"}, "variables": []}}}, "sched_getparam": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getparam", "name": "sched_getparam", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getparam", "ret_type": {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "sched_getscheduler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getscheduler", "name": "sched_getscheduler", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getscheduler", "ret_type": "builtins.int", "variables": []}}}, "sched_param": {".class": "SymbolTableNode", "cross_ref": "posix.sched_priority@34", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sched_rr_get_interval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_rr_get_interval", "name": "sched_rr_get_interval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_rr_get_interval", "ret_type": "builtins.float", "variables": []}}}, "sched_setaffinity": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "mask"], "flags": ["is_conditional"], "fullname": "os.sched_setaffinity", "name": "sched_setaffinity", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "mask"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setaffinity", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_setparam": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "param"], "flags": ["is_conditional"], "fullname": "os.sched_setparam", "name": "sched_setparam", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "param"], "arg_types": ["builtins.int", {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setparam", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_setscheduler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["pid", "policy", "param"], "flags": ["is_conditional"], "fullname": "os.sched_setscheduler", "name": "sched_setscheduler", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["pid", "policy", "param"], "arg_types": ["builtins.int", "builtins.int", {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setscheduler", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_yield": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.sched_yield", "name": "sched_yield", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_yield", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sendfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.sendfile", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["__out_fd", "__in_fd", "offset", "count"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.sendfile", "name": "sendfile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, "offset", "count"], "arg_types": ["builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sendfile", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": ["__out_fd", "__in_fd", "offset", "count", "headers", "trailers", "flags"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.sendfile", "name": "sendfile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": [null, null, "offset", "count", "headers", "trailers", "flags"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sendfile", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, "offset", "count"], "arg_types": ["builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": [null, null, "offset", "count", "headers", "trailers", "flags"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}]}}}, "sep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.sep", "name": "sep", "type": "builtins.str"}}, "set_blocking": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "blocking"], "flags": ["is_conditional"], "fullname": "os.set_blocking", "name": "set_blocking", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "blocking"], "arg_types": ["builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_blocking", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "set_inheritable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "inheritable"], "flags": ["is_conditional"], "fullname": "os.set_inheritable", "name": "set_inheritable", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "inheritable"], "arg_types": ["builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_inheritable", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setegid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["egid"], "flags": ["is_conditional"], "fullname": "os.setegid", "name": "setegid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["egid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setegid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seteuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["euid"], "flags": ["is_conditional"], "fullname": "os.seteuid", "name": "seteuid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["euid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seteuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["gid"], "flags": ["is_conditional"], "fullname": "os.setgid", "name": "setgid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["gid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["groups"], "flags": ["is_conditional"], "fullname": "os.setgroups", "name": "setgroups", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["groups"], "arg_types": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setgroups", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "pgrp"], "flags": ["is_conditional"], "fullname": "os.setpgid", "name": "setpgid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "pgrp"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.setpgrp", "name": "setpgrp", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpgrp", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpriority": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["which", "who", "priority"], "flags": ["is_conditional"], "fullname": "os.setpriority", "name": "setpriority", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["which", "who", "priority"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpriority", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setregid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["rgid", "egid"], "flags": ["is_conditional"], "fullname": "os.setregid", "name": "setregid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["rgid", "egid"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setregid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setresgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["rgid", "egid", "sgid"], "flags": ["is_conditional"], "fullname": "os.setresgid", "name": "setresgid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["rgid", "egid", "sgid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setresgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setresuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["ruid", "euid", "suid"], "flags": ["is_conditional"], "fullname": "os.setresuid", "name": "setresuid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["ruid", "euid", "suid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setresuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setreuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["ruid", "euid"], "flags": ["is_conditional"], "fullname": "os.setreuid", "name": "setreuid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["ruid", "euid"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setreuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setsid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.setsid", "name": "setsid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setsid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["uid"], "flags": ["is_conditional"], "fullname": "os.setuid", "name": "setuid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["uid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 5], "arg_names": ["path", "attribute", "value", "flags", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.setxattr", "name": "setxattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 5], "arg_names": ["path", "attribute", "value", "flags", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bytes", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setxattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "spawnl": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "flags": [], "fullname": "os.spawnl", "name": "spawnl", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnl", "ret_type": "builtins.int", "variables": []}}}, "spawnle": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "flags": [], "fullname": "os.spawnle", "name": "spawnle", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnle", "ret_type": "builtins.int", "variables": []}}}, "spawnlp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "flags": ["is_conditional"], "fullname": "os.spawnlp", "name": "spawnlp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnlp", "ret_type": "builtins.int", "variables": []}}}, "spawnlpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "flags": ["is_conditional"], "fullname": "os.spawnlpe", "name": "spawnlpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnlpe", "ret_type": "builtins.int", "variables": []}}}, "spawnv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "path", "args"], "flags": [], "fullname": "os.spawnv", "name": "spawnv", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "path", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnv", "ret_type": "builtins.int", "variables": []}}}, "spawnve": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "path", "args", "env"], "flags": [], "fullname": "os.spawnve", "name": "spawnve", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "path", "args", "env"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnve", "ret_type": "builtins.int", "variables": []}}}, "spawnvp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "file", "args"], "flags": ["is_conditional"], "fullname": "os.spawnvp", "name": "spawnvp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "file", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnvp", "ret_type": "builtins.int", "variables": []}}}, "spawnvpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "file", "args", "env"], "flags": ["is_conditional"], "fullname": "os.spawnvpe", "name": "spawnvpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "file", "args", "env"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnvpe", "ret_type": "builtins.int", "variables": []}}}, "stat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["path", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.stat", "name": "stat", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["path", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "stat", "ret_type": "os.stat_result", "variables": []}}}, "stat_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.stat_result", "name": "stat_result", "type_vars": []}, "flags": [], "fullname": "os.stat_result", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.stat_result", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "tuple"], "flags": [], "fullname": "os.stat_result.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "tuple"], "arg_types": ["os.stat_result", {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of stat_result", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "st_atime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_atime", "name": "st_atime", "type": "builtins.float"}}, "st_atime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_atime_ns", "name": "st_atime_ns", "type": "builtins.int"}}, "st_birthtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_birthtime", "name": "st_birthtime", "type": "builtins.int"}}, "st_blksize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_blksize", "name": "st_blksize", "type": "builtins.int"}}, "st_blocks": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_blocks", "name": "st_blocks", "type": "builtins.int"}}, "st_creator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_creator", "name": "st_creator", "type": "builtins.int"}}, "st_ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ctime", "name": "st_ctime", "type": "builtins.float"}}, "st_ctime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ctime_ns", "name": "st_ctime_ns", "type": "builtins.int"}}, "st_dev": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_dev", "name": "st_dev", "type": "builtins.int"}}, "st_flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_flags", "name": "st_flags", "type": "builtins.int"}}, "st_gen": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_gen", "name": "st_gen", "type": "builtins.int"}}, "st_gid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_gid", "name": "st_gid", "type": "builtins.int"}}, "st_ino": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ino", "name": "st_ino", "type": "builtins.int"}}, "st_mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mode", "name": "st_mode", "type": "builtins.int"}}, "st_mtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mtime", "name": "st_mtime", "type": "builtins.float"}}, "st_mtime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mtime_ns", "name": "st_mtime_ns", "type": "builtins.int"}}, "st_nlink": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_nlink", "name": "st_nlink", "type": "builtins.int"}}, "st_rdev": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_rdev", "name": "st_rdev", "type": "builtins.int"}}, "st_rsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_rsize", "name": "st_rsize", "type": "builtins.int"}}, "st_size": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_size", "name": "st_size", "type": "builtins.int"}}, "st_type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_type", "name": "st_type", "type": "builtins.int"}}, "st_uid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_uid", "name": "st_uid", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "statvfs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.statvfs", "name": "statvfs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "statvfs", "ret_type": "os.statvfs_result", "variables": []}}}, "statvfs_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.statvfs_result", "name": "statvfs_result", "type_vars": []}, "flags": [], "fullname": "os.statvfs_result", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.statvfs_result", "builtins.object"], "names": {".class": "SymbolTable", "f_bavail": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bavail", "name": "f_bavail", "type": "builtins.int"}}, "f_bfree": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bfree", "name": "f_bfree", "type": "builtins.int"}}, "f_blocks": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_blocks", "name": "f_blocks", "type": "builtins.int"}}, "f_bsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bsize", "name": "f_bsize", "type": "builtins.int"}}, "f_favail": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_favail", "name": "f_favail", "type": "builtins.int"}}, "f_ffree": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_ffree", "name": "f_ffree", "type": "builtins.int"}}, "f_files": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_files", "name": "f_files", "type": "builtins.int"}}, "f_flag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_flag", "name": "f_flag", "type": "builtins.int"}}, "f_frsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_frsize", "name": "f_frsize", "type": "builtins.int"}}, "f_namemax": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_namemax", "name": "f_namemax", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "strerror": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["code"], "flags": [], "fullname": "os.strerror", "name": "strerror", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["code"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strerror", "ret_type": "builtins.str", "variables": []}}}, "supports_bytes_environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_bytes_environ", "name": "supports_bytes_environ", "type": "builtins.bool"}}, "supports_dir_fd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_dir_fd", "name": "supports_dir_fd", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_effective_ids": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_effective_ids", "name": "supports_effective_ids", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_fd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_fd", "name": "supports_fd", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_follow_symlinks": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_follow_symlinks", "name": "supports_follow_symlinks", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "symlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5], "arg_names": ["source", "link_name", "target_is_directory", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.symlink", "name": "symlink", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5], "arg_names": ["source", "link_name", "target_is_directory", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symlink", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.sync", "name": "sync", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sysconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.sysconf", "name": "sysconf", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sysconf", "ret_type": "builtins.int", "variables": []}}}, "sysconf_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.sysconf_names", "name": "sysconf_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "system": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["command"], "flags": [], "fullname": "os.system", "name": "system", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["command"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "system", "ret_type": "builtins.int", "variables": []}}}, "tcgetpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.tcgetpgrp", "name": "tcgetpgrp", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tcgetpgrp", "ret_type": "builtins.int", "variables": []}}}, "tcsetpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "pg"], "flags": ["is_conditional"], "fullname": "os.tcsetpgrp", "name": "tcsetpgrp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "pg"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tcsetpgrp", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "terminal_size": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.terminal_size", "name": "terminal_size", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "os.terminal_size", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.terminal_size", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "columns", "lines"], "flags": [], "fullname": "os.terminal_size.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "columns", "lines"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.terminal_size._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of terminal_size", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "os.terminal_size._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "os.terminal_size._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["self", "columns", "lines"], "flags": [], "fullname": "os.terminal_size._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["self", "columns", "lines"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._source", "name": "_source", "type": "builtins.str"}}, "columns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "os.terminal_size.columns", "name": "columns", "type": "builtins.int"}}, "lines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "os.terminal_size.lines", "name": "lines", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "times": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.times", "name": "times", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "times", "ret_type": {".class": "TupleType", "fallback": "posix.times_result", "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "variables": []}}}, "times_result": {".class": "SymbolTableNode", "cross_ref": "posix.times_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "truncate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "length"], "flags": ["is_conditional"], "fullname": "os.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "length"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "ttyname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.ttyname", "name": "ttyname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ttyname", "ret_type": "builtins.str", "variables": []}}}, "umask": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["mask"], "flags": [], "fullname": "os.umask", "name": "umask", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["mask"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "umask", "ret_type": "builtins.int", "variables": []}}}, "uname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.uname", "name": "uname", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "uname", "ret_type": {".class": "TupleType", "fallback": "posix.uname_result", "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "uname_result": {".class": "SymbolTableNode", "cross_ref": "posix.uname_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "unlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.unlink", "name": "unlink", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "unlink", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "unsetenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["key"], "flags": [], "fullname": "os.unsetenv", "name": "unsetenv", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "unsetenv", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "urandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["size"], "flags": ["is_conditional"], "fullname": "os.urandom", "name": "urandom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["size"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "urandom", "ret_type": "builtins.bytes", "variables": []}}}, "utime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5, 5, 5], "arg_names": ["path", "times", "ns", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.utime", "name": "utime", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5, 5, 5], "arg_names": ["path", "times", "ns", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, {".class": "NoneTyp"}]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "wait": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.wait", "name": "wait", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "wait3": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["options"], "flags": ["is_conditional"], "fullname": "os.wait3", "name": "wait3", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["options"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait3", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}, "variables": []}}}, "wait4": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "flags": ["is_conditional"], "fullname": "os.wait4", "name": "wait4", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait4", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}, "variables": []}}}, "waitid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["idtype", "ident", "options"], "flags": ["is_conditional"], "fullname": "os.waitid", "name": "waitid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["idtype", "ident", "options"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "waitid", "ret_type": {".class": "TupleType", "fallback": "posix.waitid_result", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "waitid_result": {".class": "SymbolTableNode", "cross_ref": "posix.waitid_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "waitpid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "flags": [], "fullname": "os.waitpid", "name": "waitpid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "waitpid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "walk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["top", "topdown", "onerror", "followlinks"], "flags": ["is_conditional"], "fullname": "os.walk", "name": "walk", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["top", "topdown", "onerror", "followlinks"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.OSError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "walk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}}, "write": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "string"], "flags": [], "fullname": "os.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "string"], "arg_types": ["builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write", "ret_type": "builtins.int", "variables": []}}}, "writev": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "flags": ["is_conditional"], "fullname": "os.writev", "name": "writev", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writev", "ret_type": "builtins.int", "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/__init__.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json deleted file mode 100644 index ead1f7b..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": ["os.path"], "data_mtime": 1553688971, "dep_lines": [4, 5, 6, 12, 13, 348, 1], "dep_prios": [5, 10, 5, 5, 10, 5, 30], "dependencies": ["io", "sys", "typing", "builtins", "os.path", "posix", "abc"], "hash": "9a8307ab134d15b82390545dd2e07dba", "id": "os", "ignore_all": true, "interface_hash": "9bae1169bc613c00eb1998d3a50b862f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/__init__.pyi", "size": 29698, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json b/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json deleted file mode 100644 index 3718b12..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "os.path", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_BytesPath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._BytesPath", "line": 18, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}}}, "_PathLike": {".class": "SymbolTableNode", "cross_ref": "builtins._PathLike", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_PathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._PathType", "line": 16, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_StrPath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._StrPath", "line": 17, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "os.path._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__package__", "name": "__package__", "type": "builtins.str"}}, "abspath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.abspath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.abspath", "name": "abspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "abspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.abspath", "name": "abspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "abspath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "altsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.altsep", "name": "altsep", "type": "builtins.str"}}, "basename": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.basename", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.basename", "name": "basename", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "basename", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.basename", "name": "basename", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "basename", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "commonpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["paths"], "flags": ["is_conditional"], "fullname": "os.path.commonpath", "name": "commonpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["paths"], "arg_types": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "commonpath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "commonprefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["list"], "flags": [], "fullname": "os.path.commonprefix", "name": "commonprefix", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["list"], "arg_types": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "commonprefix", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "curdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.curdir", "name": "curdir", "type": "builtins.str"}}, "defpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.defpath", "name": "defpath", "type": "builtins.str"}}, "devnull": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.devnull", "name": "devnull", "type": "builtins.str"}}, "dirname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.dirname", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.dirname", "name": "dirname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "dirname", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.dirname", "name": "dirname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "dirname", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "exists": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.path.exists", "name": "exists", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}, "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exists", "ret_type": "builtins.bool", "variables": []}}}, "expanduser": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.expanduser", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expanduser", "name": "expanduser", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expanduser", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expanduser", "name": "expanduser", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expanduser", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "expandvars": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.expandvars", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expandvars", "name": "expandvars", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expandvars", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expandvars", "name": "expandvars", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expandvars", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "extsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.extsep", "name": "extsep", "type": "builtins.str"}}, "getatime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getatime", "name": "getatime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getatime", "ret_type": "builtins.float", "variables": []}}}, "getctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getctime", "name": "getctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getctime", "ret_type": "builtins.float", "variables": []}}}, "getmtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getmtime", "name": "getmtime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getmtime", "ret_type": "builtins.float", "variables": []}}}, "getsize": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getsize", "name": "getsize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsize", "ret_type": "builtins.int", "variables": []}}}, "isabs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isabs", "name": "isabs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isabs", "ret_type": "builtins.bool", "variables": []}}}, "isdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isdir", "name": "isdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdir", "ret_type": "builtins.bool", "variables": []}}}, "isfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isfile", "name": "isfile", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isfile", "ret_type": "builtins.bool", "variables": []}}}, "islink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.islink", "name": "islink", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islink", "ret_type": "builtins.bool", "variables": []}}}, "ismount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.ismount", "name": "ismount", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ismount", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.join", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "join", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "join", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.str", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.bytes", "variables": []}]}}}, "lexists": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.lexists", "name": "lexists", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lexists", "ret_type": "builtins.bool", "variables": []}}}, "normcase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.normcase", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normcase", "name": "normcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normcase", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normcase", "name": "normcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normcase", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "normpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.normpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normpath", "name": "normpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normpath", "name": "normpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "os": {".class": "SymbolTableNode", "cross_ref": "os", "kind": "Gdef", "module_hidden": true, "module_public": false}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "pardir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.pardir", "name": "pardir", "type": "builtins.str"}}, "pathsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.pathsep", "name": "pathsep", "type": "builtins.str"}}, "realpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.realpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.realpath", "name": "realpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "realpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.realpath", "name": "realpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "realpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "relpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.relpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "os.path.relpath", "name": "relpath", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "relpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "os.path.relpath", "name": "relpath", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "relpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.bytes", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.str", "variables": []}]}}}, "samefile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path1", "path2"], "flags": [], "fullname": "os.path.samefile", "name": "samefile", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path1", "path2"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "samefile", "ret_type": "builtins.bool", "variables": []}}}, "sameopenfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fp1", "fp2"], "flags": [], "fullname": "os.path.sameopenfile", "name": "sameopenfile", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fp1", "fp2"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sameopenfile", "ret_type": "builtins.bool", "variables": []}}}, "samestat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["stat1", "stat2"], "flags": [], "fullname": "os.path.samestat", "name": "samestat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["stat1", "stat2"], "arg_types": ["os.stat_result", "os.stat_result"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "samestat", "ret_type": "builtins.bool", "variables": []}}}, "sep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.sep", "name": "sep", "type": "builtins.str"}}, "split": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.split", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "split", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "split", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "splitdrive": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.splitdrive", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitdrive", "name": "splitdrive", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitdrive", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitdrive", "name": "splitdrive", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitdrive", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "splitext": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.splitext", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitext", "name": "splitext", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitext", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitext", "name": "splitext", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitext", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "supports_unicode_filenames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.supports_unicode_filenames", "name": "supports_unicode_filenames", "type": "builtins.bool"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/path.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json b/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json deleted file mode 100644 index 68278eb..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [5, 6, 7, 15, 1], "dep_prios": [10, 10, 5, 5, 30], "dependencies": ["os", "sys", "typing", "builtins", "abc"], "hash": "5d39840f32e3d0c15304c87316a5d570", "id": "os.path", "ignore_all": true, "interface_hash": "4d1c8ae35123c7991bba050de1a0d27f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/path.pyi", "size": 6194, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/posix.data.json b/Postgres/StressTests/.mypy_cache/3.7/posix.data.json deleted file mode 100644 index fefb812..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/posix.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "posix", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "EX_CANTCREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_CANTCREAT", "name": "EX_CANTCREAT", "type": "builtins.int"}}, "EX_CONFIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_CONFIG", "name": "EX_CONFIG", "type": "builtins.int"}}, "EX_DATAERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_DATAERR", "name": "EX_DATAERR", "type": "builtins.int"}}, "EX_IOERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_IOERR", "name": "EX_IOERR", "type": "builtins.int"}}, "EX_NOHOST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOHOST", "name": "EX_NOHOST", "type": "builtins.int"}}, "EX_NOINPUT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOINPUT", "name": "EX_NOINPUT", "type": "builtins.int"}}, "EX_NOPERM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOPERM", "name": "EX_NOPERM", "type": "builtins.int"}}, "EX_NOTFOUND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOTFOUND", "name": "EX_NOTFOUND", "type": "builtins.int"}}, "EX_NOUSER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOUSER", "name": "EX_NOUSER", "type": "builtins.int"}}, "EX_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OK", "name": "EX_OK", "type": "builtins.int"}}, "EX_OSERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OSERR", "name": "EX_OSERR", "type": "builtins.int"}}, "EX_OSFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OSFILE", "name": "EX_OSFILE", "type": "builtins.int"}}, "EX_PROTOCOL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_PROTOCOL", "name": "EX_PROTOCOL", "type": "builtins.int"}}, "EX_SOFTWARE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_SOFTWARE", "name": "EX_SOFTWARE", "type": "builtins.int"}}, "EX_TEMPFAIL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_TEMPFAIL", "name": "EX_TEMPFAIL", "type": "builtins.int"}}, "EX_UNAVAILABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_UNAVAILABLE", "name": "EX_UNAVAILABLE", "type": "builtins.int"}}, "EX_USAGE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_USAGE", "name": "EX_USAGE", "type": "builtins.int"}}, "F_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.F_OK", "name": "F_OK", "type": "builtins.int"}}, "GRND_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.GRND_NONBLOCK", "name": "GRND_NONBLOCK", "type": "builtins.int"}}, "GRND_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.GRND_RANDOM", "name": "GRND_RANDOM", "type": "builtins.int"}}, "NGROUPS_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.NGROUPS_MAX", "name": "NGROUPS_MAX", "type": "builtins.int"}}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "O_ACCMODE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_ACCMODE", "name": "O_ACCMODE", "type": "builtins.int"}}, "O_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_APPEND", "name": "O_APPEND", "type": "builtins.int"}}, "O_ASYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_ASYNC", "name": "O_ASYNC", "type": "builtins.int"}}, "O_CREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_CREAT", "name": "O_CREAT", "type": "builtins.int"}}, "O_DIRECT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DIRECT", "name": "O_DIRECT", "type": "builtins.int"}}, "O_DIRECTORY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DIRECTORY", "name": "O_DIRECTORY", "type": "builtins.int"}}, "O_DSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DSYNC", "name": "O_DSYNC", "type": "builtins.int"}}, "O_EXCL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_EXCL", "name": "O_EXCL", "type": "builtins.int"}}, "O_LARGEFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_LARGEFILE", "name": "O_LARGEFILE", "type": "builtins.int"}}, "O_NDELAY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NDELAY", "name": "O_NDELAY", "type": "builtins.int"}}, "O_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOATIME", "name": "O_NOATIME", "type": "builtins.int"}}, "O_NOCTTY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOCTTY", "name": "O_NOCTTY", "type": "builtins.int"}}, "O_NOFOLLOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOFOLLOW", "name": "O_NOFOLLOW", "type": "builtins.int"}}, "O_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NONBLOCK", "name": "O_NONBLOCK", "type": "builtins.int"}}, "O_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RDONLY", "name": "O_RDONLY", "type": "builtins.int"}}, "O_RDWR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RDWR", "name": "O_RDWR", "type": "builtins.int"}}, "O_RSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RSYNC", "name": "O_RSYNC", "type": "builtins.int"}}, "O_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_SYNC", "name": "O_SYNC", "type": "builtins.int"}}, "O_TRUNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_TRUNC", "name": "O_TRUNC", "type": "builtins.int"}}, "O_WRONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_WRONLY", "name": "O_WRONLY", "type": "builtins.int"}}, "R_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.R_OK", "name": "R_OK", "type": "builtins.int"}}, "ST_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_APPEND", "name": "ST_APPEND", "type": "builtins.int"}}, "ST_MANDLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_MANDLOCK", "name": "ST_MANDLOCK", "type": "builtins.int"}}, "ST_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOATIME", "name": "ST_NOATIME", "type": "builtins.int"}}, "ST_NODEV": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NODEV", "name": "ST_NODEV", "type": "builtins.int"}}, "ST_NODIRATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NODIRATIME", "name": "ST_NODIRATIME", "type": "builtins.int"}}, "ST_NOEXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOEXEC", "name": "ST_NOEXEC", "type": "builtins.int"}}, "ST_NOSUID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOSUID", "name": "ST_NOSUID", "type": "builtins.int"}}, "ST_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_RDONLY", "name": "ST_RDONLY", "type": "builtins.int"}}, "ST_RELATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_RELATIME", "name": "ST_RELATIME", "type": "builtins.int"}}, "ST_SYNCHRONOUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_SYNCHRONOUS", "name": "ST_SYNCHRONOUS", "type": "builtins.int"}}, "ST_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_WRITE", "name": "ST_WRITE", "type": "builtins.int"}}, "TMP_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.TMP_MAX", "name": "TMP_MAX", "type": "builtins.int"}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WCONTINUED", "name": "WCONTINUED", "type": "builtins.int"}}, "WCOREDUMP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WCOREDUMP", "name": "WCOREDUMP", "type": "builtins.int"}}, "WEXITSTATUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WEXITSTATUS", "name": "WEXITSTATUS", "type": "builtins.int"}}, "WIFCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFCONTINUED", "name": "WIFCONTINUED", "type": "builtins.int"}}, "WIFEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFEXITED", "name": "WIFEXITED", "type": "builtins.int"}}, "WIFSIGNALED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFSIGNALED", "name": "WIFSIGNALED", "type": "builtins.int"}}, "WIFSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFSTOPPED", "name": "WIFSTOPPED", "type": "builtins.int"}}, "WNOHANG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WNOHANG", "name": "WNOHANG", "type": "builtins.int"}}, "WSTOPSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WSTOPSIG", "name": "WSTOPSIG", "type": "builtins.int"}}, "WTERMSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WTERMSIG", "name": "WTERMSIG", "type": "builtins.int"}}, "WUNTRACED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WUNTRACED", "name": "WUNTRACED", "type": "builtins.int"}}, "W_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.W_OK", "name": "W_OK", "type": "builtins.int"}}, "X_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.X_OK", "name": "X_OK", "type": "builtins.int"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__package__", "name": "__package__", "type": "builtins.str"}}, "sched_param": {".class": "SymbolTableNode", "cross_ref": "posix.sched_priority@34", "kind": "Gdef"}, "sched_priority@34": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.sched_priority@34", "name": "sched_priority@34", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.sched_priority@34", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.sched_priority@34", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "sched_priority"], "flags": [], "fullname": "posix.sched_priority@34.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "sched_priority"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.sched_priority@34._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of sched_priority@34", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.sched_priority@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.sched_priority@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "sched_priority"], "flags": [], "fullname": "posix.sched_priority@34._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "sched_priority"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._source", "name": "_source", "type": "builtins.str"}}, "sched_priority": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.sched_priority@34.sched_priority", "name": "sched_priority", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "stat_result": {".class": "SymbolTableNode", "cross_ref": "os.stat_result", "kind": "Gdef"}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "times_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.times_result", "name": "times_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.times_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.times_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "user", "system", "children_user", "children_system", "elapsed"], "flags": [], "fullname": "posix.times_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "user", "system", "children_user", "children_system", "elapsed"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.times_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of times_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.times_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.times_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "user", "system", "children_user", "children_system", "elapsed"], "flags": [], "fullname": "posix.times_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "user", "system", "children_user", "children_system", "elapsed"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._source", "name": "_source", "type": "builtins.str"}}, "children_system": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.children_system", "name": "children_system", "type": "builtins.float"}}, "children_user": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.children_user", "name": "children_user", "type": "builtins.float"}}, "elapsed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.elapsed", "name": "elapsed", "type": "builtins.float"}}, "system": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.system", "name": "system", "type": "builtins.float"}}, "user": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.user", "name": "user", "type": "builtins.float"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "type_vars": [], "typeddict_type": null}}, "uname_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.uname_result", "name": "uname_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.uname_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.uname_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "sysname", "nodename", "release", "version", "machine"], "flags": [], "fullname": "posix.uname_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "sysname", "nodename", "release", "version", "machine"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.uname_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of uname_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.uname_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.uname_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "sysname", "nodename", "release", "version", "machine"], "flags": [], "fullname": "posix.uname_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "sysname", "nodename", "release", "version", "machine"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._source", "name": "_source", "type": "builtins.str"}}, "machine": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.machine", "name": "machine", "type": "builtins.str"}}, "nodename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.nodename", "name": "nodename", "type": "builtins.str"}}, "release": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.release", "name": "release", "type": "builtins.str"}}, "sysname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.sysname", "name": "sysname", "type": "builtins.str"}}, "version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.version", "name": "version", "type": "builtins.str"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "type_vars": [], "typeddict_type": null}}, "waitid_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.waitid_result", "name": "waitid_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.waitid_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.waitid_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "flags": [], "fullname": "posix.waitid_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.waitid_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of waitid_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.waitid_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.waitid_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "flags": [], "fullname": "posix.waitid_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._source", "name": "_source", "type": "builtins.str"}}, "si_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_code", "name": "si_code", "type": "builtins.int"}}, "si_pid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_pid", "name": "si_pid", "type": "builtins.int"}}, "si_signo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_signo", "name": "si_signo", "type": "builtins.int"}}, "si_status": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_status", "name": "si_status", "type": "builtins.int"}}, "si_uid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_uid", "name": "si_uid", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/posix.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json b/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json deleted file mode 100644 index edcab69..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [5, 6, 8, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "os", "builtins", "abc"], "hash": "af8fd8737899ef190f0acb1ff376fbc2", "id": "posix", "ignore_all": true, "interface_hash": "c395fa14d56d83c0431ae35212f89bbf", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/posix.pyi", "size": 1798, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/sys.data.json b/Postgres/StressTests/.mypy_cache/3.7/sys.data.json deleted file mode 100644 index 3c85ef9..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/sys.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "sys", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "FrameType": {".class": "SymbolTableNode", "cross_ref": "types.FrameType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MetaPathFinder": {".class": "SymbolTableNode", "cross_ref": "importlib.abc.MetaPathFinder", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ModuleType": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NoReturn": {".class": "SymbolTableNode", "cross_ref": "typing.NoReturn", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_ExcInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._ExcInfo", "line": 18, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"]}}}, "_OptExcInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._OptExcInfo", "line": 19, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}]}}}, "_ProfileFunc": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._ProfileFunc", "line": 160, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "sys._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TraceFunc": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._TraceFunc", "line": 164, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "_WinVersion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._WinVersion", "name": "_WinVersion", "type_vars": []}, "flags": [], "fullname": "sys._WinVersion", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._WinVersion", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "build": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.build", "name": "build", "type": "builtins.int"}}, "major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.major", "name": "major", "type": "builtins.int"}}, "minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.minor", "name": "minor", "type": "builtins.int"}}, "platform": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.platform", "name": "platform", "type": "builtins.int"}}, "platform_version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.platform_version", "name": "platform_version", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}}}, "product_type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.product_type", "name": "product_type", "type": "builtins.int"}}, "service_pack": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack", "name": "service_pack", "type": "builtins.str"}}, "service_pack_major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack_major", "name": "service_pack_major", "type": "builtins.int"}}, "service_pack_minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack_minor", "name": "service_pack_minor", "type": "builtins.int"}}, "suite_mast": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.suite_mast", "name": "suite_mast", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}]}, "type_vars": [], "typeddict_type": null}}, "__displayhook__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__displayhook__", "name": "__displayhook__", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__excepthook__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__excepthook__", "name": "__excepthook__", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__package__", "name": "__package__", "type": "builtins.str"}}, "__stderr__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stderr__", "name": "__stderr__", "type": "typing.TextIO"}}, "__stdin__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stdin__", "name": "__stdin__", "type": "typing.TextIO"}}, "__stdout__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stdout__", "name": "__stdout__", "type": "typing.TextIO"}}, "_clear_type_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys._clear_type_cache", "name": "_clear_type_cache", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_clear_type_cache", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_current_frames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys._current_frames", "name": "_current_frames", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_current_frames", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "_flags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._flags", "name": "_flags", "type_vars": []}, "flags": [], "fullname": "sys._flags", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._flags", "builtins.object"], "names": {".class": "SymbolTable", "bytes_warning": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.bytes_warning", "name": "bytes_warning", "type": "builtins.int"}}, "debug": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.debug", "name": "debug", "type": "builtins.int"}}, "dev_mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.dev_mode", "name": "dev_mode", "type": "builtins.int"}}, "division_warning": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.division_warning", "name": "division_warning", "type": "builtins.int"}}, "dont_write_bytecode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.dont_write_bytecode", "name": "dont_write_bytecode", "type": "builtins.int"}}, "hash_randomization": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.hash_randomization", "name": "hash_randomization", "type": "builtins.int"}}, "ignore_environment": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.ignore_environment", "name": "ignore_environment", "type": "builtins.int"}}, "inspect": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.inspect", "name": "inspect", "type": "builtins.int"}}, "interactive": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.interactive", "name": "interactive", "type": "builtins.int"}}, "no_site": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.no_site", "name": "no_site", "type": "builtins.int"}}, "no_user_site": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.no_user_site", "name": "no_user_site", "type": "builtins.int"}}, "optimize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.optimize", "name": "optimize", "type": "builtins.int"}}, "quiet": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.quiet", "name": "quiet", "type": "builtins.int"}}, "verbose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.verbose", "name": "verbose", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_float_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._float_info", "name": "_float_info", "type_vars": []}, "flags": [], "fullname": "sys._float_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._float_info", "builtins.object"], "names": {".class": "SymbolTable", "dig": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.dig", "name": "dig", "type": "builtins.int"}}, "epsilon": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.epsilon", "name": "epsilon", "type": "builtins.float"}}, "mant_dig": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.mant_dig", "name": "mant_dig", "type": "builtins.int"}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max", "name": "max", "type": "builtins.float"}}, "max_10_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max_10_exp", "name": "max_10_exp", "type": "builtins.int"}}, "max_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max_exp", "name": "max_exp", "type": "builtins.int"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min", "name": "min", "type": "builtins.float"}}, "min_10_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min_10_exp", "name": "min_10_exp", "type": "builtins.int"}}, "min_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min_exp", "name": "min_exp", "type": "builtins.int"}}, "radix": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.radix", "name": "radix", "type": "builtins.int"}}, "rounds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.rounds", "name": "rounds", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_getframe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "sys._getframe", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_overload", "is_decorated"], "fullname": "sys._getframe", "name": "_getframe", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "_getframe", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["depth"], "flags": ["is_overload", "is_decorated"], "fullname": "sys._getframe", "name": "_getframe", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["depth"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "_getframe", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["depth"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}]}}}, "_hash_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._hash_info", "name": "_hash_info", "type_vars": []}, "flags": [], "fullname": "sys._hash_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._hash_info", "builtins.object"], "names": {".class": "SymbolTable", "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.imag", "name": "imag", "type": "builtins.int"}}, "inf": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.inf", "name": "inf", "type": "builtins.int"}}, "modulus": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.modulus", "name": "modulus", "type": "builtins.int"}}, "nan": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.nan", "name": "nan", "type": "builtins.int"}}, "width": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.width", "name": "width", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_implementation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._implementation", "name": "_implementation", "type_vars": []}, "flags": [], "fullname": "sys._implementation", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._implementation", "builtins.object"], "names": {".class": "SymbolTable", "cache_tag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.cache_tag", "name": "cache_tag", "type": "builtins.str"}}, "hexversion": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.hexversion", "name": "hexversion", "type": "builtins.int"}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.name", "name": "name", "type": "builtins.str"}}, "version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.version", "name": "version", "type": {".class": "TupleType", "fallback": "sys._version_info", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_int_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._int_info", "name": "_int_info", "type_vars": []}, "flags": [], "fullname": "sys._int_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._int_info", "builtins.object"], "names": {".class": "SymbolTable", "bits_per_digit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._int_info.bits_per_digit", "name": "bits_per_digit", "type": "builtins.int"}}, "sizeof_digit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._int_info.sizeof_digit", "name": "sizeof_digit", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_version_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._version_info", "name": "_version_info", "type_vars": []}, "flags": [], "fullname": "sys._version_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._version_info", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.major", "name": "major", "type": "builtins.int"}}, "micro": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.micro", "name": "micro", "type": "builtins.int"}}, "minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.minor", "name": "minor", "type": "builtins.int"}}, "releaselevel": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.releaselevel", "name": "releaselevel", "type": "builtins.str"}}, "serial": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.serial", "name": "serial", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "_xoptions": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys._xoptions", "name": "_xoptions", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "abiflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.abiflags", "name": "abiflags", "type": "builtins.str"}}, "api_version": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.api_version", "name": "api_version", "type": "builtins.int"}}, "argv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.argv", "name": "argv", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "base_exec_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.base_exec_prefix", "name": "base_exec_prefix", "type": "builtins.str"}}, "base_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.base_prefix", "name": "base_prefix", "type": "builtins.str"}}, "builtin_module_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.builtin_module_names", "name": "builtin_module_names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}}}, "byteorder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.byteorder", "name": "byteorder", "type": "builtins.str"}}, "call_tracing": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fn", "args"], "flags": [], "fullname": "sys.call_tracing", "name": "call_tracing", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fn", "args"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "call_tracing", "ret_type": {".class": "TypeVarType", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "copyright": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.copyright", "name": "copyright", "type": "builtins.str"}}, "displayhook": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["value"], "flags": [], "fullname": "sys.displayhook", "name": "displayhook", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["value"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "displayhook", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "dont_write_bytecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.dont_write_bytecode", "name": "dont_write_bytecode", "type": "builtins.bool"}}, "exc_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.exc_info", "name": "exc_info", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exc_info", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}]}, "variables": []}}}, "excepthook": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["type_", "value", "traceback"], "flags": [], "fullname": "sys.excepthook", "name": "excepthook", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["type_", "value", "traceback"], "arg_types": [{".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "excepthook", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "exec_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.exec_prefix", "name": "exec_prefix", "type": "builtins.str"}}, "executable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.executable", "name": "executable", "type": "builtins.str"}}, "exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["arg"], "flags": [], "fullname": "sys.exit", "name": "exit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["arg"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "flags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.flags", "name": "flags", "type": "sys._flags"}}, "float_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.float_info", "name": "float_info", "type": "sys._float_info"}}, "float_repr_style": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.float_repr_style", "name": "float_repr_style", "type": "builtins.str"}}, "getcheckinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getcheckinterval", "name": "getcheckinterval", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcheckinterval", "ret_type": "builtins.int", "variables": []}}}, "getdefaultencoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getdefaultencoding", "name": "getdefaultencoding", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdefaultencoding", "ret_type": "builtins.str", "variables": []}}}, "getdlopenflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "sys.getdlopenflags", "name": "getdlopenflags", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdlopenflags", "ret_type": "builtins.int", "variables": []}}}, "getfilesystemencoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getfilesystemencoding", "name": "getfilesystemencoding", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getfilesystemencoding", "ret_type": "builtins.str", "variables": []}}}, "getprofile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getprofile", "name": "getprofile", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getprofile", "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "getrecursionlimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getrecursionlimit", "name": "getrecursionlimit", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrecursionlimit", "ret_type": "builtins.int", "variables": []}}}, "getrefcount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["arg"], "flags": [], "fullname": "sys.getrefcount", "name": "getrefcount", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["arg"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrefcount", "ret_type": "builtins.int", "variables": []}}}, "getsizeof": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "sys.getsizeof", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["obj"], "flags": ["is_overload", "is_decorated"], "fullname": "sys.getsizeof", "name": "getsizeof", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["obj"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getsizeof", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "sys.getsizeof", "name": "getsizeof", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getsizeof", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["obj"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}]}}}, "getswitchinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getswitchinterval", "name": "getswitchinterval", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getswitchinterval", "ret_type": "builtins.float", "variables": []}}}, "gettotalrefcount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.gettotalrefcount", "name": "gettotalrefcount", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gettotalrefcount", "ret_type": "builtins.int", "variables": []}}}, "gettrace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.gettrace", "name": "gettrace", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gettrace", "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "getwindowsversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getwindowsversion", "name": "getwindowsversion", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getwindowsversion", "ret_type": {".class": "TupleType", "fallback": "sys._WinVersion", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}]}, "variables": []}}}, "hash_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.hash_info", "name": "hash_info", "type": "sys._hash_info"}}, "hexversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.hexversion", "name": "hexversion", "type": "builtins.int"}}, "implementation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.implementation", "name": "implementation", "type": "sys._implementation"}}, "int_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.int_info", "name": "int_info", "type": "sys._int_info"}}, "intern": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["string"], "flags": [], "fullname": "sys.intern", "name": "intern", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["string"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intern", "ret_type": "builtins.str", "variables": []}}}, "is_finalizing": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "sys.is_finalizing", "name": "is_finalizing", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_finalizing", "ret_type": "builtins.bool", "variables": []}}}, "last_traceback": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_traceback", "name": "last_traceback", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}, "last_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_type", "name": "last_type", "type": {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}}}, "last_value": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_value", "name": "last_value", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "maxsize": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.maxsize", "name": "maxsize", "type": "builtins.int"}}, "maxunicode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.maxunicode", "name": "maxunicode", "type": "builtins.int"}}, "meta_path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.meta_path", "name": "meta_path", "type": {".class": "Instance", "args": ["importlib.abc.MetaPathFinder"], "type_ref": "builtins.list"}}}, "modules": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.modules", "name": "modules", "type": {".class": "Instance", "args": ["builtins.str", "_importlib_modulespec.ModuleType"], "type_ref": "builtins.dict"}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path", "name": "path", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "path_hooks": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path_hooks", "name": "path_hooks", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.list"}}}, "path_importer_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path_importer_cache", "name": "path_importer_cache", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "platform": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.platform", "name": "platform", "type": "builtins.str"}}, "prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.prefix", "name": "prefix", "type": "builtins.str"}}, "ps1": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.ps1", "name": "ps1", "type": "builtins.str"}}, "ps2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.ps2", "name": "ps2", "type": "builtins.str"}}, "setcheckinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["interval"], "flags": [], "fullname": "sys.setcheckinterval", "name": "setcheckinterval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["interval"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setcheckinterval", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setdlopenflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "sys.setdlopenflags", "name": "setdlopenflags", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdlopenflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setprofile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["profilefunc"], "flags": [], "fullname": "sys.setprofile", "name": "setprofile", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["profilefunc"], "arg_types": [{".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setprofile", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setrecursionlimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["limit"], "flags": [], "fullname": "sys.setrecursionlimit", "name": "setrecursionlimit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["limit"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setrecursionlimit", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setswitchinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["interval"], "flags": [], "fullname": "sys.setswitchinterval", "name": "setswitchinterval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["interval"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setswitchinterval", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "settrace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["tracefunc"], "flags": [], "fullname": "sys.settrace", "name": "settrace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["tracefunc"], "arg_types": [{".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "settrace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "settscdump": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["on_flag"], "flags": [], "fullname": "sys.settscdump", "name": "settscdump", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["on_flag"], "arg_types": ["builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "settscdump", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "stderr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stderr", "name": "stderr", "type": "typing.TextIO"}}, "stdin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stdin", "name": "stdin", "type": "typing.TextIO"}}, "stdout": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stdout", "name": "stdout", "type": "typing.TextIO"}}, "subversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.subversion", "name": "subversion", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "tracebacklimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.tracebacklimit", "name": "tracebacklimit", "type": "builtins.int"}}, "version": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.version", "name": "version", "type": "builtins.str"}}, "version_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.version_info", "name": "version_info", "type": {".class": "TupleType", "fallback": "sys._version_info", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}}, "warnoptions": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.warnoptions", "name": "warnoptions", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/sys.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json b/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json deleted file mode 100644 index 45a8523..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 11, 13, 1, 1, 1, 1], "dep_prios": [5, 5, 5, 5, 30, 30, 30], "dependencies": ["typing", "types", "importlib.abc", "builtins", "_importlib_modulespec", "abc", "importlib"], "hash": "2fbd4a190997681df16c2af57da73313", "id": "sys", "ignore_all": true, "interface_hash": "9eae05c40e8ca146e3bc30d3ba4b9f31", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/sys.pyi", "size": 5358, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/time.data.json b/Postgres/StressTests/.mypy_cache/3.7/time.data.json deleted file mode 100644 index 37a14bb..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/time.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "time", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CLOCK_BOOTTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_BOOTTIME", "name": "CLOCK_BOOTTIME", "type": "builtins.int"}}, "CLOCK_HIGHRES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_HIGHRES", "name": "CLOCK_HIGHRES", "type": "builtins.int"}}, "CLOCK_MONOTONIC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_MONOTONIC", "name": "CLOCK_MONOTONIC", "type": "builtins.int"}}, "CLOCK_MONOTONIC_RAW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_MONOTONIC_RAW", "name": "CLOCK_MONOTONIC_RAW", "type": "builtins.int"}}, "CLOCK_PROCESS_CPUTIME_ID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_PROCESS_CPUTIME_ID", "name": "CLOCK_PROCESS_CPUTIME_ID", "type": "builtins.int"}}, "CLOCK_PROF": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_PROF", "name": "CLOCK_PROF", "type": "builtins.int"}}, "CLOCK_REALTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_REALTIME", "name": "CLOCK_REALTIME", "type": "builtins.int"}}, "CLOCK_THREAD_CPUTIME_ID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_THREAD_CPUTIME_ID", "name": "CLOCK_THREAD_CPUTIME_ID", "type": "builtins.int"}}, "CLOCK_UPTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_UPTIME", "name": "CLOCK_UPTIME", "type": "builtins.int"}}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SimpleNamespace": {".class": "SymbolTableNode", "cross_ref": "types.SimpleNamespace", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_TimeTuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "time._TimeTuple", "line": 9, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__package__", "name": "__package__", "type": "builtins.str"}}, "_struct_time@34": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "time._struct_time@34", "name": "_struct_time@34", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "time._struct_time@34", "metaclass_type": null, "metadata": {}, "module_name": "time", "mro": ["time._struct_time@34", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "arg_names": ["cls", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "flags": [], "fullname": "time._struct_time@34.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "arg_names": ["cls", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "time._struct_time@34._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of _struct_time@34", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "time._struct_time@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "time._struct_time@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], "arg_names": ["self", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "flags": [], "fullname": "time._struct_time@34._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], "arg_names": ["self", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._source", "name": "_source", "type": "builtins.str"}}, "tm_gmtoff": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_gmtoff", "name": "tm_gmtoff", "type": "builtins.int"}}, "tm_hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_hour", "name": "tm_hour", "type": "builtins.int"}}, "tm_isdst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_isdst", "name": "tm_isdst", "type": "builtins.int"}}, "tm_mday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_mday", "name": "tm_mday", "type": "builtins.int"}}, "tm_min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_min", "name": "tm_min", "type": "builtins.int"}}, "tm_mon": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_mon", "name": "tm_mon", "type": "builtins.int"}}, "tm_sec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_sec", "name": "tm_sec", "type": "builtins.int"}}, "tm_wday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_wday", "name": "tm_wday", "type": "builtins.int"}}, "tm_yday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_yday", "name": "tm_yday", "type": "builtins.int"}}, "tm_year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_year", "name": "tm_year", "type": "builtins.int"}}, "tm_zone": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_zone", "name": "tm_zone", "type": "builtins.str"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "altzone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.altzone", "name": "altzone", "type": "builtins.int"}}, "asctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["t"], "flags": [], "fullname": "time.asctime", "name": "asctime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["t"], "arg_types": [{".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asctime", "ret_type": "builtins.str", "variables": []}}}, "clock": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "time.clock", "name": "clock", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock", "ret_type": "builtins.float", "variables": []}}}, "clock_getres": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clk_id"], "flags": ["is_conditional"], "fullname": "time.clock_getres", "name": "clock_getres", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clk_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_getres", "ret_type": "builtins.float", "variables": []}}}, "clock_gettime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clk_id"], "flags": ["is_conditional"], "fullname": "time.clock_gettime", "name": "clock_gettime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clk_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_gettime", "ret_type": "builtins.float", "variables": []}}}, "clock_gettime_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clock_id"], "flags": ["is_conditional"], "fullname": "time.clock_gettime_ns", "name": "clock_gettime_ns", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clock_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_gettime_ns", "ret_type": "builtins.int", "variables": []}}}, "clock_settime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["clk_id", "time"], "flags": ["is_conditional"], "fullname": "time.clock_settime", "name": "clock_settime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["clk_id", "time"], "arg_types": ["builtins.int", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_settime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clock_settime_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["clock_id", "time"], "flags": ["is_conditional"], "fullname": "time.clock_settime_ns", "name": "clock_settime_ns", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["clock_id", "time"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_settime_ns", "ret_type": "builtins.int", "variables": []}}}, "ctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime", "ret_type": "builtins.str", "variables": []}}}, "daylight": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.daylight", "name": "daylight", "type": "builtins.int"}}, "get_clock_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "time.get_clock_info", "name": "get_clock_info", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_clock_info", "ret_type": "types.SimpleNamespace", "variables": []}}}, "gmtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.gmtime", "name": "gmtime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gmtime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "localtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.localtime", "name": "localtime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "localtime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "mktime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["t"], "flags": [], "fullname": "time.mktime", "name": "mktime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["t"], "arg_types": [{".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mktime", "ret_type": "builtins.float", "variables": []}}}, "monotonic": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.monotonic", "name": "monotonic", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "monotonic", "ret_type": "builtins.float", "variables": []}}}, "monotonic_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.monotonic_ns", "name": "monotonic_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "monotonic_ns", "ret_type": "builtins.int", "variables": []}}}, "perf_counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.perf_counter", "name": "perf_counter", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "perf_counter", "ret_type": "builtins.float", "variables": []}}}, "perf_counter_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.perf_counter_ns", "name": "perf_counter_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "perf_counter_ns", "ret_type": "builtins.int", "variables": []}}}, "process_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.process_time", "name": "process_time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "process_time", "ret_type": "builtins.float", "variables": []}}}, "process_time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.process_time_ns", "name": "process_time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "process_time_ns", "ret_type": "builtins.int", "variables": []}}}, "sleep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["secs"], "flags": [], "fullname": "time.sleep", "name": "sleep", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["secs"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sleep", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "strftime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["format", "t"], "flags": [], "fullname": "time.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["format", "t"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime", "ret_type": "builtins.str", "variables": []}}}, "strptime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["string", "format"], "flags": [], "fullname": "time.strptime", "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["string", "format"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "struct_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["time._struct_time@34"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "time.struct_time", "name": "struct_time", "type_vars": []}, "flags": [], "fullname": "time.struct_time", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "time", "mro": ["time.struct_time", "time._struct_time@34", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "o", "_arg"], "flags": [], "fullname": "time.struct_time.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "o", "_arg"], "arg_types": [{".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of struct_time", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "o", "_arg"], "flags": [], "fullname": "time.struct_time.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "o", "_arg"], "arg_types": [{".class": "TypeType", "item": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of struct_time", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}}, "tuple_type": {".class": "TupleType", "fallback": "time._struct_time@34", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "thread_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.thread_time", "name": "thread_time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "thread_time", "ret_type": "builtins.float", "variables": []}}}, "thread_time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.thread_time_ns", "name": "thread_time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "thread_time_ns", "ret_type": "builtins.int", "variables": []}}}, "time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "time.time", "name": "time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time", "ret_type": "builtins.float", "variables": []}}}, "time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.time_ns", "name": "time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time_ns", "ret_type": "builtins.int", "variables": []}}}, "timezone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.timezone", "name": "timezone", "type": "builtins.int"}}, "tzname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.tzname", "name": "tzname", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str"]}}}, "tzset": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.tzset", "name": "tzset", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzset", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/time.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/time.meta.json b/Postgres/StressTests/.mypy_cache/3.7/time.meta.json deleted file mode 100644 index 911ae95..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/time.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [4, 5, 7, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "types", "builtins", "abc"], "hash": "d0848c9c98081f61adce6cdcd1ea12f5", "id": "time", "ignore_all": true, "interface_hash": "1d9238f8ee2f32b817254cca8e7b42c6", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/time.pyi", "size": 3866, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/types.data.json b/Postgres/StressTests/.mypy_cache/3.7/types.data.json deleted file mode 100644 index df26f8b..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/types.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "types", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AsyncGeneratorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.AsyncGeneratorType", "name": "AsyncGeneratorType", "type_vars": [{".class": "TypeVarDef", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}]}, "flags": [], "fullname": "types.AsyncGeneratorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.AsyncGeneratorType", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "aclose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.aclose", "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "ag_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_await", "name": "ag_await", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Awaitable"}, {".class": "NoneTyp"}]}}}, "ag_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_code", "name": "ag_code", "type": "types.CodeType"}}, "ag_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_frame", "name": "ag_frame", "type": "types.FrameType"}}, "ag_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_running", "name": "ag_running", "type": "builtins.bool"}}, "asend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": [], "fullname": "types.AsyncGeneratorType.asend", "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "athrow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.AsyncGeneratorType.athrow", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.AsyncGeneratorType.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "athrow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.AsyncGeneratorType.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "athrow", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra"], "typeddict_type": null}}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BuiltinFunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.BuiltinFunctionType", "name": "BuiltinFunctionType", "type_vars": []}, "flags": [], "fullname": "types.BuiltinFunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.BuiltinFunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.BuiltinFunctionType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.BuiltinFunctionType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of BuiltinFunctionType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__self__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__self__", "name": "__self__", "type": {".class": "UnionType", "items": ["builtins.object", "_importlib_modulespec.ModuleType"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BuiltinMethodType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.BuiltinMethodType", "line": 155, "no_args": true, "normalized": false, "target": "types.BuiltinFunctionType"}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CodeType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.CodeType", "name": "CodeType", "type_vars": []}, "flags": [], "fullname": "types.CodeType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.CodeType", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "arg_names": ["self", "argcount", "kwonlyargcount", "nlocals", "stacksize", "flags", "codestring", "constants", "names", "varnames", "filename", "name", "firstlineno", "lnotab", "freevars", "cellvars"], "flags": [], "fullname": "types.CodeType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "arg_names": ["self", "argcount", "kwonlyargcount", "nlocals", "stacksize", "flags", "codestring", "constants", "names", "varnames", "filename", "name", "firstlineno", "lnotab", "freevars", "cellvars"], "arg_types": ["types.CodeType", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "builtins.str", "builtins.str", "builtins.int", "builtins.bytes", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of CodeType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "co_argcount": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_argcount", "name": "co_argcount", "type": "builtins.int"}}, "co_cellvars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_cellvars", "name": "co_cellvars", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_code", "name": "co_code", "type": "builtins.bytes"}}, "co_consts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_consts", "name": "co_consts", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}}}, "co_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_filename", "name": "co_filename", "type": "builtins.str"}}, "co_firstlineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_firstlineno", "name": "co_firstlineno", "type": "builtins.int"}}, "co_flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_flags", "name": "co_flags", "type": "builtins.int"}}, "co_freevars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_freevars", "name": "co_freevars", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_kwonlyargcount": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_kwonlyargcount", "name": "co_kwonlyargcount", "type": "builtins.int"}}, "co_lnotab": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_lnotab", "name": "co_lnotab", "type": "builtins.bytes"}}, "co_name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_name", "name": "co_name", "type": "builtins.str"}}, "co_names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_names", "name": "co_names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_nlocals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_nlocals", "name": "co_nlocals", "type": "builtins.int"}}, "co_stacksize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_stacksize", "name": "co_stacksize", "type": "builtins.int"}}, "co_varnames": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_varnames", "name": "co_varnames", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "CoroutineType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.CoroutineType", "name": "CoroutineType", "type_vars": []}, "flags": [], "fullname": "types.CoroutineType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.CoroutineType", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.CoroutineType.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.CoroutineType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of CoroutineType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "cr_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_await", "name": "cr_await", "type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}}}, "cr_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_code", "name": "cr_code", "type": "types.CodeType"}}, "cr_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_frame", "name": "cr_frame", "type": "types.FrameType"}}, "cr_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_running", "name": "cr_running", "type": "builtins.bool"}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "flags": [], "fullname": "types.CoroutineType.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "arg_types": ["types.CoroutineType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.CoroutineType.throw", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.CoroutineType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.CoroutineType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.CoroutineType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.CoroutineType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.CoroutineType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.CoroutineType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DynamicClassAttribute": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.DynamicClassAttribute", "line": 204, "no_args": true, "normalized": false, "target": "builtins.property"}}, "FrameType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.FrameType", "name": "FrameType", "type_vars": []}, "flags": [], "fullname": "types.FrameType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.FrameType", "builtins.object"], "names": {".class": "SymbolTable", "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.FrameType.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.FrameType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of FrameType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "f_back": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_back", "name": "f_back", "type": "types.FrameType"}}, "f_builtins": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_builtins", "name": "f_builtins", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_code", "name": "f_code", "type": "types.CodeType"}}, "f_frace_lines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_frace_lines", "name": "f_frace_lines", "type": "builtins.bool"}}, "f_globals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_globals", "name": "f_globals", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_lasti": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_lasti", "name": "f_lasti", "type": "builtins.int"}}, "f_lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_lineno", "name": "f_lineno", "type": "builtins.int"}}, "f_locals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_locals", "name": "f_locals", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_trace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_trace", "name": "f_trace", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "f_trace_opcodes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_trace_opcodes", "name": "f_trace_opcodes", "type": "builtins.bool"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.FunctionType", "name": "FunctionType", "type_vars": []}, "flags": [], "fullname": "types.FunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.FunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.FunctionType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.FunctionType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of FunctionType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__closure__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__closure__", "name": "__closure__", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["types._Cell"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "__code__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__code__", "name": "__code__", "type": "types.CodeType"}}, "__defaults__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__defaults__", "name": "__defaults__", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.FunctionType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "arg_types": ["types.FunctionType", {".class": "UnionType", "items": ["builtins.object", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of FunctionType", "ret_type": "types.MethodType", "variables": []}}}, "__globals__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__globals__", "name": "__globals__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__kwdefaults__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__kwdefaults__", "name": "__kwdefaults__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.GeneratorType", "name": "GeneratorType", "type_vars": []}, "flags": [], "fullname": "types.GeneratorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.GeneratorType", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of GeneratorType", "ret_type": "types.GeneratorType", "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of GeneratorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "gi_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_code", "name": "gi_code", "type": "types.CodeType"}}, "gi_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_frame", "name": "gi_frame", "type": "types.FrameType"}}, "gi_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_running", "name": "gi_running", "type": "builtins.bool"}}, "gi_yieldfrom": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_yieldfrom", "name": "gi_yieldfrom", "type": {".class": "UnionType", "items": ["types.GeneratorType", {".class": "NoneTyp"}]}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "flags": [], "fullname": "types.GeneratorType.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "arg_types": ["types.GeneratorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.GeneratorType.throw", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.GeneratorType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.GeneratorType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.GeneratorType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.GeneratorType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.GeneratorType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.GeneratorType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "GetSetDescriptorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.GetSetDescriptorType", "name": "GetSetDescriptorType", "type_vars": []}, "flags": [], "fullname": "types.GetSetDescriptorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.GetSetDescriptorType", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.GetSetDescriptorType.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of GetSetDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.GetSetDescriptorType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of GetSetDescriptorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GetSetDescriptorType.__name__", "name": "__name__", "type": "builtins.str"}}, "__objclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GetSetDescriptorType.__objclass__", "name": "__objclass__", "type": "builtins.type"}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.GetSetDescriptorType.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of GetSetDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "LambdaType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.LambdaType", "line": 37, "no_args": true, "normalized": false, "target": "types.FunctionType"}}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MappingProxyType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MappingProxyType", "name": "MappingProxyType", "type_vars": [{".class": "TypeVarDef", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "types.MappingProxyType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MappingProxyType", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "types.MappingProxyType.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}, {".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MappingProxyType", "ret_type": {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": [], "fullname": "types.MappingProxyType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of MappingProxyType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.MappingProxyType.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of MappingProxyType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.MappingProxyType.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of MappingProxyType", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "MemberDescriptorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MemberDescriptorType", "name": "MemberDescriptorType", "type_vars": []}, "flags": [], "fullname": "types.MemberDescriptorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MemberDescriptorType", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.MemberDescriptorType.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of MemberDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.MemberDescriptorType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of MemberDescriptorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MemberDescriptorType.__name__", "name": "__name__", "type": "builtins.str"}}, "__objclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MemberDescriptorType.__objclass__", "name": "__objclass__", "type": "builtins.type"}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.MemberDescriptorType.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of MemberDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MethodType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MethodType", "name": "MethodType", "type_vars": []}, "flags": [], "fullname": "types.MethodType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MethodType", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.MethodType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.MethodType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of MethodType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__func__", "name": "__func__", "type": "types._StaticFunctionType"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "func", "obj"], "flags": [], "fullname": "types.MethodType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "func", "obj"], "arg_types": ["types.MethodType", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of MethodType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__self__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__self__", "name": "__self__", "type": "builtins.object"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleType": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleType", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SimpleNamespace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.SimpleNamespace", "name": "SimpleNamespace", "type_vars": []}, "flags": [], "fullname": "types.SimpleNamespace", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.SimpleNamespace", "builtins.object"], "names": {".class": "SymbolTable", "__delattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "types.SimpleNamespace.__delattr__", "name": "__delattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["types.SimpleNamespace", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delattr__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattribute__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "types.SimpleNamespace.__getattribute__", "name": "__getattribute__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["types.SimpleNamespace", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattribute__ of SimpleNamespace", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": [], "fullname": "types.SimpleNamespace.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": ["types.SimpleNamespace", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__setattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "name", "value"], "flags": [], "fullname": "types.SimpleNamespace.__setattr__", "name": "__setattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.SimpleNamespace", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setattr__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.TracebackType", "name": "TracebackType", "type_vars": []}, "flags": [], "fullname": "types.TracebackType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.TracebackType", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"], "flags": ["is_conditional"], "fullname": "types.TracebackType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"], "arg_types": ["types.TracebackType", {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}, "types.FrameType", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TracebackType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "tb_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_frame", "name": "tb_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_frame of TracebackType", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_frame of TracebackType", "ret_type": "types.FrameType", "variables": []}}}}, "tb_lasti": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_lasti", "name": "tb_lasti", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lasti of TracebackType", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_lasti", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lasti of TracebackType", "ret_type": "builtins.int", "variables": []}}}}, "tb_lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_lineno", "name": "tb_lineno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lineno of TracebackType", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_lineno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lineno of TracebackType", "ret_type": "builtins.int", "variables": []}}}}, "tb_next": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.TracebackType.tb_next", "name": "tb_next", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Cell": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types._Cell", "name": "_Cell", "type_vars": []}, "flags": [], "fullname": "types._Cell", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types._Cell", "builtins.object"], "names": {".class": "SymbolTable", "cell_contents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types._Cell.cell_contents", "name": "cell_contents", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_StaticFunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types._StaticFunctionType", "name": "_StaticFunctionType", "type_vars": []}, "flags": [], "fullname": "types._StaticFunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types._StaticFunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types._StaticFunctionType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "arg_types": ["types._StaticFunctionType", {".class": "UnionType", "items": ["builtins.object", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of _StaticFunctionType", "ret_type": "types.FunctionType", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_T_contra": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T_contra", "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__package__", "name": "__package__", "type": "builtins.str"}}, "coroutine": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["f"], "flags": [], "fullname": "types.coroutine", "name": "coroutine", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["f"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "coroutine", "ret_type": "types.CoroutineType", "variables": []}}}, "new_class": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["name", "bases", "kwds", "exec_body"], "flags": [], "fullname": "types.new_class", "name": "new_class", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["name", "bases", "kwds", "exec_body"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "new_class", "ret_type": "builtins.type", "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "prepare_class": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["name", "bases", "kwds"], "flags": [], "fullname": "types.prepare_class", "name": "prepare_class", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["name", "bases", "kwds"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "prepare_class", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.type", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}]}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/types.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/types.meta.json b/Postgres/StressTests/.mypy_cache/3.7/types.meta.json deleted file mode 100644 index 8e76d52..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/types.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 7, 14, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "_importlib_modulespec", "builtins", "abc"], "hash": "efcd9940ea0dcd0f3fc75f7350316864", "id": "types", "ignore_all": true, "interface_hash": "813a602d04d2cca5f7e32b6f596bdd12", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/types.pyi", "size": 7720, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/typing.data.json b/Postgres/StressTests/.mypy_cache/3.7/typing.data.json deleted file mode 100644 index 05616da..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/typing.data.json +++ /dev/null @@ -1 +0,0 @@ -{".class": "MypyFile", "_fullname": "typing", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AbstractSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AbstractSet", "name": "AbstractSet", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.AbstractSet", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AbstractSet.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.AbstractSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.AbstractSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Any", "name": "Any", "type": "builtins.object"}}, "AnyStr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing.AnyStr", "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}, "AsyncContextManager": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncContextManager", "name": "AsyncContextManager", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_protocol", "runtime_protocol"], "fullname": "typing.AsyncContextManager", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__aenter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.AsyncContextManager.__aenter__", "name": "__aenter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncContextManager"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aenter__ of AsyncContextManager", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "__aexit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "flags": [], "fullname": "typing.AsyncContextManager.__aexit__", "name": "__aexit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncContextManager"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aexit__ of AsyncContextManager", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AsyncGenerator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__aiter__", "__anext__", "aclose", "asend", "athrow"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncGenerator", "name": "AsyncGenerator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}]}, "flags": ["is_abstract"], "fullname": "typing.AsyncGenerator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncGenerator", "typing.AsyncIterator", "typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, "variables": []}}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "aclose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.aclose", "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "ag_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_await", "name": "ag_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_await of AsyncGenerator", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_await of AsyncGenerator", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "ag_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_code", "name": "ag_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_code of AsyncGenerator", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_code of AsyncGenerator", "ret_type": "types.CodeType", "variables": []}}}}, "ag_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_frame", "name": "ag_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_frame of AsyncGenerator", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_frame of AsyncGenerator", "ret_type": "types.FrameType", "variables": []}}}}, "ag_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_running", "name": "ag_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_running of AsyncGenerator", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_running of AsyncGenerator", "ret_type": "builtins.bool", "variables": []}}}}, "asend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.asend", "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "athrow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra"], "typeddict_type": null}}, "AsyncIterable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__aiter__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncIterable", "name": "AsyncIterable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.AsyncIterable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncIterable.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AsyncIterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__anext__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncIterator", "name": "AsyncIterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.AsyncIterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncIterator", "typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.AsyncIterator.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncIterator.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Awaitable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Awaitable", "name": "Awaitable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Awaitable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Awaitable", "builtins.object"], "names": {".class": "SymbolTable", "__await__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Awaitable.__await__", "name": "__await__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__await__ of Awaitable", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}, {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__await__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__await__ of Awaitable", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}, {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AwaitableGenerator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__", "__iter__", "__next__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.AwaitableGenerator", "name": "AwaitableGenerator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._S", "id": 4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.AwaitableGenerator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AwaitableGenerator", "typing.Awaitable", "typing.Generator", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co", "_S"], "typeddict_type": null}}, "BinaryIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.BinaryIO", "name": "BinaryIO", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.BinaryIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.BinaryIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BinaryIO", "ret_type": "typing.BinaryIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.BinaryIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BinaryIO", "ret_type": "typing.BinaryIO", "variables": []}}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.BinaryIO.write", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "write", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "write", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ByteString": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__len__"], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.ByteString", "name": "ByteString", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.ByteString", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Callable", "name": "Callable", "type": "typing._SpecialForm"}}, "ChainMap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.ChainMap", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.ChainMap"}}}, "ClassVar": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.ClassVar", "name": "ClassVar", "type": "typing._SpecialForm"}}, "CodeType": {".class": "SymbolTableNode", "cross_ref": "types.CodeType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Collection": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Collection", "name": "Collection", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Collection", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Collection.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Collection", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Collection", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Container": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Container", "name": "Container", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Container", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Container.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Container", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Container", "ret_type": "builtins.bool", "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "ContextManager": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ContextManager", "name": "ContextManager", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_protocol", "runtime_protocol"], "fullname": "typing.ContextManager", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ContextManager.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ContextManager"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of ContextManager", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "flags": [], "fullname": "typing.ContextManager.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ContextManager"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of ContextManager", "ret_type": {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Coroutine": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Coroutine", "name": "Coroutine", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Coroutine", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Coroutine", "typing.Awaitable", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Coroutine", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Coroutine", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "cr_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_await", "name": "cr_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_await of Coroutine", "ret_type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_await of Coroutine", "ret_type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, "variables": []}}}}, "cr_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_code", "name": "cr_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_code of Coroutine", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_code of Coroutine", "ret_type": "types.CodeType", "variables": []}}}}, "cr_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_frame", "name": "cr_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_frame of Coroutine", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_frame of Coroutine", "ret_type": "types.FrameType", "variables": []}}}}, "cr_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_running", "name": "cr_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_running of Coroutine", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_running of Coroutine", "ret_type": "builtins.bool", "variables": []}}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co"], "typeddict_type": null}}, "Counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Counter", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}}}, "DefaultDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.DefaultDict", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}}}, "Deque": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Deque", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.deque"}}}, "Dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Dict", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.dict"}}}, "FrameType": {".class": "SymbolTableNode", "cross_ref": "types.FrameType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "FrozenSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.FrozenSet", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.frozenset"}}}, "Generator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__iter__", "__next__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Generator", "name": "Generator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Generator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Generator", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Generator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Generator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Generator", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Generator", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "gi_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_code", "name": "gi_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_code of Generator", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_code of Generator", "ret_type": "types.CodeType", "variables": []}}}}, "gi_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_frame", "name": "gi_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_frame of Generator", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_frame of Generator", "ret_type": "types.FrameType", "variables": []}}}}, "gi_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_running", "name": "gi_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_running of Generator", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_running of Generator", "ret_type": "builtins.bool", "variables": []}}}}, "gi_yieldfrom": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_yieldfrom", "name": "gi_yieldfrom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_yieldfrom of Generator", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Generator"}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_yieldfrom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_yieldfrom of Generator", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Generator"}, {".class": "NoneTyp"}]}, "variables": []}}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co"], "typeddict_type": null}}, "Generic": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Generic", "name": "Generic", "type": "typing._SpecialForm"}}, "GenericMeta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.type"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.GenericMeta", "name": "GenericMeta", "type_vars": []}, "flags": [], "fullname": "typing.GenericMeta", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.GenericMeta", "builtins.type", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Hashable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__hash__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.Hashable", "name": "Hashable", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Hashable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Hashable", "builtins.object"], "names": {".class": "SymbolTable", "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Hashable.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.Hashable"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of Hashable", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.Hashable"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of Hashable", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.IO", "name": "IO", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.IO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "variables": []}}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "t", "value", "traceback"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IO", "ret_type": "builtins.bool", "variables": []}}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.closed", "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IO", "ret_type": "builtins.bool", "variables": []}}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IO", "ret_type": "builtins.int", "variables": []}}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IO", "ret_type": "builtins.bool", "variables": []}}}}, "mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.mode", "name": "mode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mode of IO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "mode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mode of IO", "ret_type": "builtins.str", "variables": []}}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.name", "name": "name", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "name of IO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "name", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "name of IO", "ret_type": "builtins.str", "variables": []}}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IO", "ret_type": "builtins.int", "variables": []}}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IO", "ret_type": "builtins.int", "variables": []}}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IO", "ret_type": "builtins.int", "variables": []}}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of IO", "ret_type": "builtins.int", "variables": []}}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "ItemsView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ItemsView", "name": "ItemsView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.ItemsView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ItemsView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.ItemsView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ItemsView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of ItemsView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ItemsView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ItemsView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ItemsView", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT_co", "_VT_co"], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__iter__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Iterable", "name": "Iterable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Iterable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Iterable.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__next__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Iterator", "name": "Iterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Iterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Iterator.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Iterator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Iterator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Iterator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "KeysView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.KeysView", "name": "KeysView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.KeysView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.KeysView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.KeysView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.KeysView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of KeysView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.KeysView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.KeysView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of KeysView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT_co"], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.List", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.list"}}}, "Mapping": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Collection"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Mapping", "name": "Mapping", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Mapping", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.Mapping.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Mapping", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Mapping.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Mapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Mapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "get": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Mapping.get", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Mapping.get", "name": "get", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "get", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Mapping.get", "name": "get", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "get", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT_co"], "typeddict_type": null}}, "MappingView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MappingView", "name": "MappingView", "type_vars": []}, "flags": [], "fullname": "typing.MappingView", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.MappingView", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MappingView.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.MappingView"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of MappingView", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Match": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Match", "name": "Match", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "typing.Match", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.Match", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "g"], "flags": ["is_conditional"], "fullname": "typing.Match.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.end", "name": "end", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "end of Match", "ret_type": "builtins.int", "variables": []}}}, "endpos": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.endpos", "name": "endpos", "type": "builtins.int"}}, "expand": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "template"], "flags": [], "fullname": "typing.Match.expand", "name": "expand", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "template"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expand of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "group": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Match.group", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}]}}}, "groupdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "flags": [], "fullname": "typing.Match.groupdict", "name": "groupdict", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "groupdict of Match", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}, "groups": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "flags": [], "fullname": "typing.Match.groups", "name": "groups", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "groups of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}}, "lastgroup": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.lastgroup", "name": "lastgroup", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "lastindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.lastindex", "name": "lastindex", "type": "builtins.int"}}, "pos": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.pos", "name": "pos", "type": "builtins.int"}}, "re": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.re", "name": "re", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}}}, "span": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.span", "name": "span", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "span of Match", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.start", "name": "start", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "start of Match", "ret_type": "builtins.int", "variables": []}}}, "string": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.string", "name": "string", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "MutableMapping": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__delitem__", "__getitem__", "__iter__", "__len__", "__setitem__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableMapping", "name": "MutableMapping", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableMapping", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableMapping.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableMapping.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableMapping.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableMapping.pop", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pop", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pop", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableMapping.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of MutableMapping", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "setdefault": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": [], "fullname": "typing.MutableMapping.setdefault", "name": "setdefault", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdefault of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableMapping.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "MutableSequence": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__delitem__", "__getitem__", "__len__", "__setitem__", "insert"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableSequence", "name": "MutableSequence", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableSequence", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__delitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.MutableSequence.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "typing.MutableSequence.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSequence.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "typing.MutableSequence.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "flags": [], "fullname": "typing.MutableSequence.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "typing.MutableSequence.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSequence.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "MutableSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__", "add", "discard"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableSet", "name": "MutableSet", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableSet", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableSet", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, "variables": []}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.MutableSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, "variables": []}}}, "__ixor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__ixor__", "name": "__ixor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ixor__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.MutableSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "add": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSet.add", "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSet.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "discard": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSet.discard", "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSet.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableSet", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "typing.MutableSet.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "NamedTuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.NamedTuple", "name": "NamedTuple", "type_vars": []}, "flags": [], "fullname": "typing.NamedTuple", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.NamedTuple", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5, 5, 4], "arg_names": ["self", "typename", "fields", "verbose", "rename", "kwargs"], "flags": [], "fullname": "typing.NamedTuple.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5, 5, 4], "arg_names": ["self", "typename", "fields", "verbose", "rename", "kwargs"], "arg_types": ["typing.NamedTuple", "builtins.str", {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}], "type_ref": "typing.Iterable"}, "builtins.bool", "builtins.bool", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of NamedTuple", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.NamedTuple._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.NamedTuple"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of NamedTuple", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "collections.OrderedDict"}, "variables": []}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "TypeType", "item": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}], "type_ref": "collections.OrderedDict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._fields", "name": "_fields", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "flags": ["is_class", "is_decorated"], "fullname": "typing.NamedTuple._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": [], "fullname": "typing.NamedTuple._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._source", "name": "_source", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NewType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "tp"], "flags": [], "fullname": "typing.NewType", "name": "NewType", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "tp"], "arg_types": ["builtins.str", {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "NewType", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "NoReturn": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "typing.NoReturn", "line": 32, "no_args": false, "normalized": false, "target": {".class": "NoneTyp"}}}, "Optional": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Optional", "name": "Optional", "type": "typing.TypeAlias"}}, "Pattern": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Pattern", "name": "Pattern", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "typing.Pattern", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.Pattern", "builtins.object"], "names": {".class": "SymbolTable", "findall": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.findall", "name": "findall", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "findall of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.list"}, "variables": []}}}, "finditer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.finditer", "name": "finditer", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "finditer of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "type_ref": "typing.Iterator"}, "variables": []}}}, "flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.flags", "name": "flags", "type": "builtins.int"}}, "fullmatch": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.fullmatch", "name": "fullmatch", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fullmatch of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "groupindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.groupindex", "name": "groupindex", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "typing.Mapping"}}}, "groups": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.groups", "name": "groups", "type": "builtins.int"}}, "match": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.match", "name": "match", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "match of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "pattern": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.pattern", "name": "pattern", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "search": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.search", "name": "search", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "search of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "string", "maxsplit"], "flags": [], "fullname": "typing.Pattern.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "string", "maxsplit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "sub": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Pattern.sub", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.sub", "name": "sub", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sub", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.sub", "name": "sub", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sub", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}]}}}, "subn": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Pattern.subn", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.subn", "name": "subn", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subn", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.subn", "name": "subn", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subn", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "Protocol": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Protocol", "name": "Protocol", "type": "typing._SpecialForm"}}, "Reversible": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__reversed__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Reversible", "name": "Reversible", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Reversible", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Reversible.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Reversible", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Reversible", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Sequence": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Sequence", "name": "Sequence", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Sequence", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.Sequence.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Sequence", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Sequence.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.Sequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.Sequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Sequence.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Sequence.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.Sequence.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of Sequence", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "flags": ["is_conditional"], "fullname": "typing.Sequence.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of Sequence", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Set", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.set"}}}, "Sized": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__len__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.Sized", "name": "Sized", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Sized", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Sized", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Sized.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Sized", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Sized", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsAbs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__abs__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.SupportsAbs", "name": "SupportsAbs", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsAbs", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsAbs", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsAbs.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of SupportsAbs", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of SupportsAbs", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "SupportsBytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__bytes__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsBytes", "name": "SupportsBytes", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsBytes", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsBytes", "builtins.object"], "names": {".class": "SymbolTable", "__bytes__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsBytes.__bytes__", "name": "__bytes__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bytes__ of SupportsBytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__bytes__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bytes__ of SupportsBytes", "ret_type": "builtins.bytes", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsComplex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__complex__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsComplex", "name": "SupportsComplex", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsComplex", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsComplex", "builtins.object"], "names": {".class": "SymbolTable", "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsComplex.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of SupportsComplex", "ret_type": "builtins.complex", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of SupportsComplex", "ret_type": "builtins.complex", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsFloat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__float__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsFloat", "name": "SupportsFloat", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsFloat", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsFloat", "builtins.object"], "names": {".class": "SymbolTable", "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsFloat.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsFloat"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of SupportsFloat", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsFloat"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of SupportsFloat", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsInt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__int__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsInt", "name": "SupportsInt", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsInt", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsInt", "builtins.object"], "names": {".class": "SymbolTable", "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsInt.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsInt"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of SupportsInt", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsInt"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of SupportsInt", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsRound": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__round__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.SupportsRound", "name": "SupportsRound", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsRound", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsRound", "builtins.object"], "names": {".class": "SymbolTable", "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsRound.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of SupportsRound", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of SupportsRound", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "TYPE_CHECKING": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.TYPE_CHECKING", "name": "TYPE_CHECKING", "type": "builtins.bool"}}, "Text": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "typing.Text", "line": 403, "no_args": true, "normalized": false, "target": "builtins.str"}}, "TextIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.IO"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.TextIO", "name": "TextIO", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.TextIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.TextIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIO", "ret_type": "typing.TextIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIO", "ret_type": "typing.TextIO", "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.buffer", "name": "buffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "buffer of TextIO", "ret_type": "typing.BinaryIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "buffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "buffer of TextIO", "ret_type": "typing.BinaryIO", "variables": []}}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.encoding", "name": "encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encoding of TextIO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encoding of TextIO", "ret_type": "builtins.str", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.errors", "name": "errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "errors of TextIO", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "errors of TextIO", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}}, "line_buffering": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.line_buffering", "name": "line_buffering", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "line_buffering of TextIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "line_buffering", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "line_buffering of TextIO", "ret_type": "builtins.int", "variables": []}}}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.newlines", "name": "newlines", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "newlines of TextIO", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "newlines", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "newlines of TextIO", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Tuple", "name": "Tuple", "type": "typing._SpecialForm"}}, "Type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Type", "name": "Type", "type": "typing._SpecialForm"}}, "TypeAlias": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.TypeAlias", "name": "TypeAlias", "type_vars": []}, "flags": [], "fullname": "typing.TypeAlias", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.TypeAlias", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "typeargs"], "flags": [], "fullname": "typing.TypeAlias.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["typing.TypeAlias", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of TypeAlias", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "target_type"], "flags": [], "fullname": "typing.TypeAlias.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "target_type"], "arg_types": ["typing.TypeAlias", "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TypeAlias", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TypeVar": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.TypeVar", "name": "TypeVar", "type": "builtins.object"}}, "Union": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Union", "name": "Union", "type": "typing.TypeAlias"}}, "ValuesView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ValuesView", "name": "ValuesView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.ValuesView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ValuesView", "typing.MappingView", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.ValuesView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of ValuesView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ValuesView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ValuesView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_VT_co"], "typeddict_type": null}}, "_Collection": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "typing._Collection", "line": 243, "no_args": true, "normalized": false, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Collection"}}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_KT_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._KT_co", "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_SpecialForm": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing._SpecialForm", "name": "_SpecialForm", "type_vars": []}, "flags": [], "fullname": "typing._SpecialForm", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing._SpecialForm", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "typeargs"], "flags": [], "fullname": "typing._SpecialForm.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["typing._SpecialForm", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of _SpecialForm", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._TC", "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_T_contra": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T_contra", "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_VT_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._VT_co", "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_V_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._V_co", "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__package__", "name": "__package__", "type": "builtins.str"}}, "_promote": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing._promote", "name": "_promote", "type": "builtins.object"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "cast": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.cast", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.cast", "name": "cast", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "cast", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.cast", "name": "cast", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "cast", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}, "collections": {".class": "SymbolTableNode", "cross_ref": "collections", "kind": "Gdef", "module_hidden": true, "module_public": false}, "get_type_hints": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "globalns", "localns"], "flags": [], "fullname": "typing.get_type_hints", "name": "get_type_hints", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "globalns", "localns"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_type_hints", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "no_type_check": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.no_type_check", "name": "no_type_check", "type": "builtins.object"}}, "overload": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.overload", "name": "overload", "type": "builtins.object"}}, "runtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": [], "fullname": "typing.runtime", "name": "runtime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeVarType", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "runtime", "ret_type": {".class": "TypeVarType", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}]}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/typing.pyi"} \ No newline at end of file diff --git a/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json b/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json deleted file mode 100644 index a2a3fca..0000000 --- a/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json +++ /dev/null @@ -1 +0,0 @@ -{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [3, 4, 5, 6, 1], "dep_prios": [10, 5, 5, 10, 5], "dependencies": ["sys", "abc", "types", "collections", "builtins"], "hash": "8dd936f5690118fa18838ff93a8d228e", "id": "typing", "ignore_all": true, "interface_hash": "e17900a525f21dc1adb6b1f5de654569", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/typing.pyi", "size": 19700, "suppressed": [], "version_id": "0.670"} \ No newline at end of file diff --git a/Postgres/StressTests/ingredientidstress b/Postgres/StressTests/ingredientidstress deleted file mode 100755 index d0ceb01..0000000 --- a/Postgres/StressTests/ingredientidstress +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python3 -import psycopg2 -import datetime -import sys - - -connection = psycopg2.connect("dbname=ingredientguru user=abuchholz") -cur = connection.cursor() -print("Connection successful") -print("Start Time\t",datetime.datetime.now()) - -for x in range(int(sys.argv[1])): - cur.execute("SELECT * FROM ingredient_nutrient WHERE ingredient_id=21021;") - -print("End Time\t",datetime.datetime.now()) - diff --git a/Postgres/StressTests/longdescstress b/Postgres/StressTests/longdescstress deleted file mode 100755 index 66d2b30..0000000 --- a/Postgres/StressTests/longdescstress +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python3 -import psycopg2 -import datetime -import sys - - -connection = psycopg2.connect("dbname=ingredientguru user=abuchholz") -cur = connection.cursor() -print("Connection successful") -print("Start Time\t",datetime.datetime.now()) - -for x in range(int(sys.argv[1])): - cur.execute("SELECT long_description FROM ingredient WHERE long_description like '%banana%';") -# for i,row in enumerate(cur.fetchall()): -# print(i,"|",row[0]) - -print("End Time\t",datetime.datetime.now()) - - diff --git a/Postgres/import.sql b/Postgres/import.sql deleted file mode 100644 index d6a7836..0000000 --- a/Postgres/import.sql +++ /dev/null @@ -1,77 +0,0 @@ -DROP TABLE IF EXISTS ingredient; -DROP TABLE IF EXISTS groups; -DROP TABLE IF EXISTS nutrient; -DROP TABLE IF EXISTS ingredient_nutrient; ---CREATE EXTENSION pg_trgm; ---DROP TABLE IF EXISTS import.food_groups; ---DROP TABLE IF EXISTS import.food_desc; ---DROP TABLE IF EXISTS import.food_nutr; - -CREATE TABLE groups ( - fdgrp_cd TEXT, - fdgrp_desc TEXT -); -CREATE TABLE ingredient ( - id INT NULL, - group_id SMALLINT NULL, - long_description VARCHAR (200) NOT NULL, - short_description VARCHAR (85) NOT NULL, - common_name VARCHAR (100), - manufacturer_name VARCHAR (65), - is_in_fndds_survey VARCHAR (3), - inedible_parts VARCHAR (135), - percent_being_refuse SMALLINT, - scientific_name VARCHAR (65), - nitrogen_to_protein_factor NUMERIC (4,2), - calories_from_protein_factor NUMERIC (4,2), - calories_from_fat_factor NUMERIC (4,2), - calories_from_carb_factor NUMERIC (4,2) -); - -CREATE TABLE nutrient ( - nutrient_id SMALLINT NOT NULL, - units_of_measurement VARCHAR (7) NOT NULL, - tag_name VARCHAR (20), - name VARCHAR (60) NOT NULL, - decimal_places_rounded VARCHAR (1) NOT NULL, - sort_order SMALLINT NOT NULL -); - -CREATE TABLE ingredient_nutrient ( - ingredient_id INT NOT NULL, - nutrient_id SMALLINT NOT NULL, - nutrient_value NUMERIC (10,2), - number_of_analyses SMALLINT NOT NULL, - standard_error NUMERIC (8,3), - type_of_data VARCHAR(2) NOT NULL, - derivation VARCHAR(4), - alternative_ingredient_id VARCHAR(5), - has_been_fortified VARCHAR(1), - number_of_studies SMALLINT, - minimum_value NUMERIC(10,3), - maximum_value NUMERIC(10,3), - degrees_of_freedom SMALLINT, - lower_error_bound NUMERIC(10,3), - upper_error_bound NUMERIC(10,3), - statistical_comment VARCHAR(10), - last_update DATE -); - -COPY groups -FROM '$PWD/raw_data/FD_GROUP.txt' -WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1'; - -COPY ingredient -FROM '$PWD/raw_data/new_desc.csv' -WITH DELIMITER ',' HEADER CSV ENCODING 'LATIN1'; - -COPY nutrient -FROM '$PWD/raw_data/NUTR_DEF.txt' -WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1'; - -COPY ingredient_nutrient -FROM '$PWD/raw_data/NUT_DATA.txt' -WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1'; - -CREATE INDEX first_index ON ingredient_nutrient(ingredient_id); -CREATE INDEX second_index ON ingredient USING gin (long_description gin_trgm_ops); diff --git a/Postgres/normalize.sql b/Postgres/normalize.sql deleted file mode 100644 index 9458f46..0000000 --- a/Postgres/normalize.sql +++ /dev/null @@ -1,167 +0,0 @@ -DELETE FROM ingredient -WHERE group_id in (0300,2100,2200,2500,3600); - ---Delete Brand Names -DELETE FROM ingredient - WHERE long_description ~ '[A-Z]{2,}' - AND NOT long_description ~ 'USDA'; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ---Authorized Group Table - - - - -/* -CREATE TABLE authorized_groups(groupid INT,groupdesc TEXT); - -INSERT INTO authorized_groups(groupid,groupdesc) -SELECT DISTINCT fdgrp_cd::int, fdgrp_desc -FROM import.food_groups -WHERE fdgrp_cd::int != 0300 -and fdgrp_cd::int != 2200 -and fdgrp_cd::int != 2100 -and fdgrp_cd::int != 2500 -and fdgrp_cd::int != 3600 -ORDER BY fdgrp_cd::int; - -ALTER TABLE authorized_groups -ADD id serial primary key; - - ---Authorized Food Name/Desc -DROP TABLE IF EXISTS authorized_foods CASCADE; - -CREATE TABLE authorized_foods( - foodid SERIAL PRIMARY KEY, - groupid INT, - long_desc TEXT, - shrt_desc TEXT, - commonname TEXT, - manufacname TEXT, - survey TEXT, - ref_desc TEXT, - refuse TEXT, - sciname TEXT, - n_factor TEXT, - pro_factor TEXT, - fat_factor TEXT, - cho_factor TEXT -); - - -INSERT INTO authorized_foods(groupid, long_desc, shrt_desc) -SELECT DISTINCT fdgrp_cd::int, long_desc, shrt_desc -FROM import.food_desc; -DELETE FROM authorized_foods -WHERE groupid in (0300,2100,2200,2500,3600); - ---Delete Brand Names -DELETE FROM authorized_foods - WHERE long_desc ~ '[A-Z]{2,}' - AND NOT long_desc ~ 'USDA'; - - -SELECT * FROM authorized_groups -JOIN authorized_foods -ON authorized_groups.groupdesc = authorized_foods.long_desc; - three=two.replace(b"~",b"'") - - - -CREATE TABLE ingredient ( - id SMALLINT NULL, - group_id SMALLINT NULL, - long_description VARCHAR (200) NOT NULL, - short_description VARCHAR (60) NOT NULL, - common_name VARCHAR (100), - manufacturer_name VARCHAR (65), - is_in_fndds_survey VARCHAR (1), - inedible_parts VARCHAR (135), - percent_being_refuse SMALLINT, - scientific_name VARCHAR (65), - nitrogen_to_protein_factor NUMERIC (4,2), - calories_from_protein_factor NUMERIC (4,2), - calories_from_fat_factor NUMERIC (4,2), - calories_from_carb_factor NUMERIC (4,2) -); - -CREATE TABLE nutrient ( - nutrient_id SMALLINT NOT NULL, - units_of_measurement VARCHAR (7) NOT NULL, - tag_name VARCHAR (20), - name VARCHAR (60) NOT NULL, - decimal_places_rounded VARCHAR (1) NOT NULL, - sort_order SMALLINT NOT NULL -); - -CREATE TABLE ingredient_nutrients ( - ingredient_id SMALLINT NOT NULL, - nutrient_id SMALLINT NOT NULL, - nutrient_value NUMERIC (10,2), - number_of_analyses SMALLINT NOT NULL, - standard_error NUMERIC (8,3), - type_of_data VARCHAR(2) NOT NULL, - derivation VARCHAR(4), - alternative_ingredient_id VARCHAR(5), - has_been_fortified VARCHAR(1), - number_of_studies SMALLINT, - minimum_value NUMERIC(10,3), - maximum_value NUMERIC(10,3), - degrees_of_freedom SMALLINT, - lower_error_bound NUMERIC(10,3), - upper_error_bound NUMERIC(10,3), - statistical_comment VARCHAR(10), - last_update DATE -);*/ diff --git a/Postgres/raw_data/FD_GROUP.txt b/Postgres/raw_data/FD_GROUP.txt deleted file mode 100755 index b49e89c..0000000 --- a/Postgres/raw_data/FD_GROUP.txt +++ /dev/null @@ -1,25 +0,0 @@ -~0100~^~Dairy and Egg Products~ -~0200~^~Spices and Herbs~ -~0300~^~Baby Foods~ -~0400~^~Fats and Oils~ -~0500~^~Poultry Products~ -~0600~^~Soups, Sauces, and Gravies~ -~0700~^~Sausages and Luncheon Meats~ -~0800~^~Breakfast Cereals~ -~0900~^~Fruits and Fruit Juices~ -~1000~^~Pork Products~ -~1100~^~Vegetables and Vegetable Products~ -~1200~^~Nut and Seed Products~ -~1300~^~Beef Products~ -~1400~^~Beverages~ -~1500~^~Finfish and Shellfish Products~ -~1600~^~Legumes and Legume Products~ -~1700~^~Lamb, Veal, and Game Products~ -~1800~^~Baked Products~ -~1900~^~Sweets~ -~2000~^~Cereal Grains and Pasta~ -~2100~^~Fast Foods~ -~2200~^~Meals, Entrees, and Side Dishes~ -~2500~^~Snacks~ -~3500~^~American Indian/Alaska Native Foods~ -~3600~^~Restaurant Foods~ diff --git a/Postgres/raw_data/FOOD_DES.txt b/Postgres/raw_data/FOOD_DES.txt deleted file mode 100755 index db33226..0000000 --- a/Postgres/raw_data/FOOD_DES.txt +++ /dev/null @@ -1,7794 +0,0 @@ -food_id~^~group_id~^~food_name~^~food_desc -~01001~^~0100~^~Butter, salted~^~BUTTER,WITH SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01002~^~0100~^~Butter, whipped, with salt~^~BUTTER,WHIPPED,W/ SALT~^^^~Y~^^0^^6.38^^^ -~01003~^~0100~^~Butter oil, anhydrous~^~BUTTER OIL,ANHYDROUS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01004~^~0100~^~Cheese, blue~^~CHEESE,BLUE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01005~^~0100~^~Cheese, brick~^~CHEESE,BRICK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01006~^~0100~^~Cheese, brie~^~CHEESE,BRIE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01007~^~0100~^~Cheese, camembert~^~CHEESE,CAMEMBERT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01008~^~0100~^~Cheese, caraway~^~CHEESE,CARAWAY~^^^^^0^^6.38^4.27^8.79^3.87 -~01009~^~0100~^~Cheese, cheddar (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR~^^^~Y~^^0^^^^^ -~01010~^~0100~^~Cheese, cheshire~^~CHEESE,CHESHIRE~^^^^^0^^6.38^4.27^8.79^3.87 -~01011~^~0100~^~Cheese, colby~^~CHEESE,COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01012~^~0100~^~Cheese, cottage, creamed, large or small curd~^~CHEESE,COTTAGE,CRMD,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01013~^~0100~^~Cheese, cottage, creamed, with fruit~^~CHEESE,COTTAGE,CRMD,W/FRUIT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01014~^~0100~^~Cheese, cottage, nonfat, uncreamed, dry, large or small curd~^~CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01015~^~0100~^~Cheese, cottage, lowfat, 2% milkfat~^~CHEESE,COTTAGE,LOWFAT,2% MILKFAT~^^^~Y~^^0^^6.38^^^ -~01016~^~0100~^~Cheese, cottage, lowfat, 1% milkfat~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01017~^~0100~^~Cheese, cream~^~CHEESE,CREAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01018~^~0100~^~Cheese, edam~^~CHEESE,EDAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01019~^~0100~^~Cheese, feta~^~CHEESE,FETA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01020~^~0100~^~Cheese, fontina~^~CHEESE,FONTINA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01021~^~0100~^~Cheese, gjetost~^~CHEESE,GJETOST~^^^^^0^^6.38^4.27^8.79^3.87 -~01022~^~0100~^~Cheese, gouda~^~CHEESE,GOUDA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01023~^~0100~^~Cheese, gruyere~^~CHEESE,GRUYERE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01024~^~0100~^~Cheese, limburger~^~CHEESE,LIMBURGER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01025~^~0100~^~Cheese, monterey~^~CHEESE,MONTEREY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01026~^~0100~^~Cheese, mozzarella, whole milk~^~CHEESE,MOZZARELLA,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01027~^~0100~^~Cheese, mozzarella, whole milk, low moisture~^~CHEESE,MOZZARELLA,WHL MILK,LO MOIST~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01028~^~0100~^~Cheese, mozzarella, part skim milk~^~CHEESE,MOZZARELLA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01029~^~0100~^~Cheese, mozzarella, low moisture, part-skim~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM~^^^~Y~^^0^^6.38^^^ -~01030~^~0100~^~Cheese, muenster~^~CHEESE,MUENSTER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01031~^~0100~^~Cheese, neufchatel~^~CHEESE,NEUFCHATEL~^^^^^0^^6.38^4.27^8.79^3.87 -~01032~^~0100~^~Cheese, parmesan, grated~^~CHEESE,PARMESAN,GRATED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01033~^~0100~^~Cheese, parmesan, hard~^~CHEESE,PARMESAN,HARD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01034~^~0100~^~Cheese, port de salut~^~CHEESE,PORT DE SALUT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01035~^~0100~^~Cheese, provolone~^~CHEESE,PROVOLONE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01036~^~0100~^~Cheese, ricotta, whole milk~^~CHEESE,RICOTTA,WHOLE MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01037~^~0100~^~Cheese, ricotta, part skim milk~^~CHEESE,RICOTTA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01038~^~0100~^~Cheese, romano~^~CHEESE,ROMANO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01039~^~0100~^~Cheese, roquefort~^~CHEESE,ROQUEFORT~^^^^^0^^6.38^4.27^8.79^3.87 -~01040~^~0100~^~Cheese, swiss~^~CHEESE,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01041~^~0100~^~Cheese, tilsit~^~CHEESE,TILSIT~^^^^^0^^6.38^4.27^8.79^3.87 -~01042~^~0100~^~Cheese, pasteurized process, American, fortified with vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01043~^~0100~^~Cheese, pasteurized process, pimento~^~CHEESE,PAST PROCESS,PIMENTO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01044~^~0100~^~Cheese, pasteurized process, swiss~^~CHEESE,PAST PROCESS,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01045~^~0100~^~Cheese food, cold pack, American~^~CHEESE FD,COLD PK,AMERICAN~^^^^^0^^6.38^4.27^8.79^3.87 -~01046~^~0100~^~Cheese food, pasteurized process, American, vitamin D fortified~^~CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01047~^~0100~^~Cheese food, pasteurized process, swiss~^~CHEESE FD,PAST PROCESS,SWISS~^^^^^0^^6.38^4.27^8.79^3.87 -~01048~^~0100~^~Cheese spread, pasteurized process, American~^~CHEESE SPRD,PAST PROCESS,AMERICAN~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01049~^~0100~^~Cream, fluid, half and half~^~CREAM,FLUID,HALF AND HALF~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01050~^~0100~^~Cream, fluid, light (coffee cream or table cream)~^~CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01052~^~0100~^~Cream, fluid, light whipping~^~CREAM,FLUID,LT WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01053~^~0100~^~Cream, fluid, heavy whipping~^~CREAM,FLUID,HVY WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01054~^~0100~^~Cream, whipped, cream topping, pressurized~^~CREAM,WHIPPED,CRM TOPPING,PRESSURIZED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01055~^~0100~^~Cream, sour, reduced fat, cultured~^~CREAM,SOUR,RED FAT,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01056~^~0100~^~Cream, sour, cultured~^~CREAM,SOUR,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01057~^~0100~^~Eggnog~^~EGGNOG~^^^~Y~^^0^^6.37^4.27^8.79^3.90 -~01058~^~0100~^~Sour dressing, non-butterfat, cultured, filled cream-type~^~SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01059~^~0100~^~Milk, filled, fluid, with blend of hydrogenated vegetable oils~^~MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS~^^^^^0^^6.38^4.27^8.79^3.87 -~01060~^~0100~^~Milk, filled, fluid, with lauric acid oil~^~MILK,FILLED,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.38^4.27^8.79^3.87 -~01061~^~0100~^~Cheese, American, nonfat or fat free~^~CHEESE,AMERICAN,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01064~^~0100~^~Yogurt, Greek, 2% fat, apricot, CHOBANI~^~YOGURT,GREEK,2% FAT,APRICOT,CHOBANI~^^~Chobani~^^^0^^3.68^^^ -~01065~^~0100~^~Yogurt, Greek, 2%fat, coconut blend, CHOBANI~^~YOGURT,GREEK,2%FAT,COCNT BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01067~^~0100~^~Cream substitute, liquid, with hydrogenated vegetable oil and soy protein~^~CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT~^^^~Y~^^0^^5.71^4.27^8.79^3.87 -~01068~^~0100~^~Cream substitute, liquid, with lauric acid oil and sodium caseinate~^~CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE~^^^^^0^^6.29^4.27^8.79^3.87 -~01069~^~0100~^~Cream substitute, powdered~^~CREAM SUBSTITUTE,POWDERED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01070~^~0100~^~Dessert topping, powdered~^~DESSERT TOPPING,POWDERED~^^^^^0^^6.29^4.27^8.79^3.87 -~01071~^~0100~^~Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk~^~DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK~^^^~Y~^^0^^6.35^4.27^8.79^3.87 -~01072~^~0100~^~Dessert topping, pressurized~^~DESSERT TOPPING,PRESSURIZED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01073~^~0100~^~Dessert topping, semi solid, frozen~^~DESSERT TOPPING,SEMI SOLID,FRZ~^^^~Y~^^0^^6.29^4.27^8.84^3.87 -~01074~^~0100~^~Sour cream, imitation, cultured~^~SOUR CRM,IMITN,CULTURED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01076~^~0100~^~Milk substitutes, fluid, with lauric acid oil~^~MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.29^4.27^8.79^3.87 -~01077~^~0100~^~Milk, whole, 3.25% milkfat, with added vitamin D~^~MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01078~^~0100~^~Milk, producer, fluid, 3.7% milkfat~^~MILK,PRODUCER,FLUID,3.7% MILKFAT~^^^^^0^^6.38^4.27^8.79^3.87 -~01079~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01080~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01081~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01082~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01083~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D~^^^^^0^^6.38^4.27^8.79^3.87 -~01084~^~0100~^~Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01085~^~0100~^~Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01086~^~0100~^~Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01087~^~0100~^~Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)~^~MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)~^^^^^0^^6.38^4.27^8.79^3.87 -~01088~^~0100~^~Milk, buttermilk, fluid, cultured, lowfat~^~MILK,BTTRMLK,FLUID,CULTURED,LOWFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01089~^~0100~^~Milk, low sodium, fluid~^~MILK,LO NA,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01090~^~0100~^~Milk, dry, whole, with added vitamin D~^~MILK,DRY,WHL,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01091~^~0100~^~Milk, dry, nonfat, regular, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01092~^~0100~^~Milk, dry, nonfat, instant, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01093~^~0100~^~Milk, dry, nonfat, calcium reduced~^~MILK,DRY,NONFAT,CA RED~^^^^^0^^6.38^4.27^8.79^3.87 -~01094~^~0100~^~Milk, buttermilk, dried~^~MILK,BUTTERMILK,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01095~^~0100~^~Milk, canned, condensed, sweetened~^~MILK,CND,COND,SWTND~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01096~^~0100~^~Milk, canned, evaporated, with added vitamin D and without added vitamin A~^~MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01097~^~0100~^~Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01102~^~0100~^~Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01103~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01104~^~0100~^~Milk, chocolate, lowfat, with added vitamin A and vitamin D~^~MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01105~^~0100~^~Milk, chocolate beverage, hot cocoa, homemade~^~MILK,CHOC BEV,HOT COCOA,HOMEMADE~^^^^^0^^6.38^^^ -~01106~^~0100~^~Milk, goat, fluid, with added vitamin D~^~MILK,GOAT,FLUID,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01107~^~0100~^~Milk, human, mature, fluid~^~MILK,HUMAN,MATURE,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01108~^~0100~^~Milk, indian buffalo, fluid~^~MILK,INDIAN BUFFALO,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01109~^~0100~^~Milk, sheep, fluid~^~MILK,SHEEP,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01110~^~0100~^~Milk shakes, thick chocolate~^~MILK SHAKES,THICK CHOC~^^^^^0^^6.38^4.27^8.79^3.87 -~01111~^~0100~^~Milk shakes, thick vanilla~^~MILK SHAKES,THICK VANILLA~^^^^^0^^6.38^4.27^8.79^3.87 -~01112~^~0100~^~Whey, acid, fluid~^~WHEY,ACID,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01113~^~0100~^~Whey, acid, dried~^~WHEY,ACID,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01114~^~0100~^~Whey, sweet, fluid~^~WHEY,SWEET,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01115~^~0100~^~Whey, sweet, dried~^~WHEY,SWEET,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01116~^~0100~^~Yogurt, plain, whole milk~^~YOGURT,PLN,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01117~^~0100~^~Yogurt, plain, low fat~^~YOGURT,PLN,LOFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01118~^~0100~^~Yogurt, plain, skim milk~^~YOGURT,PLN,SKIM MILK.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01119~^~0100~^~Yogurt, vanilla, low fat.~^~YOGURT,VANILLA,LOFAT.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01120~^~0100~^~Yogurt, fruit, low fat,9 g protein/8 oz~^~YOGURT,FRUIT,LOFAT,9 G PROTEIN/8 OZ~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01121~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OUNCE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01122~^~0100~^~Yogurt, fruit, low fat, 11g protein/8 oz~^~YOGURT,FRUIT,LOFAT,11G PROTEIN/8 OZ~^^^^^0^^6.38^4.27^8.79^3.87 -~01123~^~0100~^~Egg, whole, raw, fresh~^~EGG,WHL,RAW,FRSH~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01124~^~0100~^~Egg, white, raw, fresh~^~EGG,WHITE,RAW,FRESH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01125~^~0100~^~Egg, yolk, raw, fresh~^~EGG,YOLK,RAW,FRSH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01126~^~0100~^~Egg, yolk, raw, frozen, pasteurized~^~EGG,YOLK,RAW,FRZ,PAST~^^^^^0^^6.25^^^ -~01127~^~0100~^~Egg, yolk, raw, frozen, sugared, pasteurized~^~EGG,YOLK,RAW,FRZ,SUGARED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01128~^~0100~^~Egg, whole, cooked, fried~^~EGG,WHL,CKD,FRIED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01129~^~0100~^~Egg, whole, cooked, hard-boiled~^~EGG,WHL,CKD,HARD-BOILED~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01130~^~0100~^~Egg, whole, cooked, omelet~^~EGG,WHOLE,COOKED,OMELET~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01131~^~0100~^~Egg, whole, cooked, poached~^~EGG,WHL,CKD,POACHED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01132~^~0100~^~Egg, whole, cooked, scrambled~^~EGG,WHL,CKD,SCRMBLD~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01133~^~0100~^~Egg, whole, dried~^~EGG,WHL,DRIED~^^^~Y~^^0^^6.25^^^ -~01134~^~0100~^~Egg, whole, dried, stabilized, glucose reduced~^~EGG,WHL,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01135~^~0100~^~Egg, white, dried, flakes, stabilized, glucose reduced~^~EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01136~^~0100~^~Egg, white, dried, powder, stabilized, glucose reduced~^~EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01137~^~0100~^~Egg, yolk, dried~^~EGG,YOLK,DRIED~^^^~Y~^^0^^6.25^^^ -~01138~^~0100~^~Egg, duck, whole, fresh, raw~^~EGG,DUCK,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01139~^~0100~^~Egg, goose, whole, fresh, raw~^~EGG,GOOSE,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^13^^6.25^4.36^9.02^3.68 -~01140~^~0100~^~Egg, quail, whole, fresh, raw~^~EGG,QUAIL,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^8^^6.25^4.36^9.02^3.68 -~01141~^~0100~^~Egg, turkey, whole, fresh, raw~^~EGG,TURKEY,WHL,FRSH,RAW~^^^^~Shell~^12^^6.25^4.36^9.02^3.68 -~01144~^~0100~^~Egg substitute, powder~^~EGG SUBSTITUTE,POWDER~^^^~Y~^^0^^6.25^4.36^9.02^3.87 -~01145~^~0100~^~Butter, without salt~^~BUTTER,WITHOUT SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01146~^~0100~^~Cheese, parmesan, shredded~^~CHEESE,PARMESAN,SHREDDED~^^^^^0^^6.38^4.27^8.79^3.87 -~01151~^~0100~^~Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~01152~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01153~^~0100~^~Milk, canned, evaporated, with added vitamin A~^~MILK,CND,EVAP,W/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01154~^~0100~^~Milk, dry, nonfat, regular, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01155~^~0100~^~Milk, dry, nonfat, instant, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01156~^~0100~^~Cheese, goat, hard type~^~CHEESE,GOAT,HARD TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01157~^~0100~^~Cheese, goat, semisoft type~^~CHEESE,GOAT,SEMISOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01158~^~0100~^~Yogurt, Greek, 2% fat, key lime blend, CHOBANI~^~YOGURT,GREEK,2% FAT,KEY LIME BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01159~^~0100~^~Cheese, goat, soft type~^~CHEESE,GOAT,SOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01160~^~0100~^~Egg, yolk, raw, frozen, salted, pasteurized~^~EGG,YOLK,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01161~^~0100~^~Cheese substitute, mozzarella~^~CHEESE SUB,MOZZARELLA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01162~^~0100~^~Yogurt, Greek, 2% fat, mango, CHOBANI~^~YOGURT,GREEK,2% FAT,MANGO,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01164~^~0100~^~Cheese sauce, prepared from recipe~^~CHEESE SAU,PREP FROM RECIPE~^^^~Y~^^0^^6.38^4.08^8.92^3.95 -~01165~^~0100~^~Cheese, mexican, queso anejo~^~CHEESE,MEXICAN,QUESO ANEJO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01166~^~0100~^~Cheese, mexican, queso asadero~^~CHEESE,MEXICAN,QUESO ASADERO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01167~^~0100~^~Cheese, mexican, queso chihuahua~^~CHEESE,MEXICAN,QUESO CHIHUAHUA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01168~^~0100~^~Cheese, low fat, cheddar or colby~^~CHEESE,LOFAT,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01169~^~0100~^~Cheese, low-sodium, cheddar or colby~^~CHEESE,LOW-SODIUM,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01171~^~0100~^~Egg, whole, raw, frozen, pasteurized (Includes foods for USDA's Food Distribution Program)~^~EGG,WHL,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01172~^~0100~^~Egg, white, raw, frozen, pasteurized~^~EGG,WHITE,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01173~^~0100~^~Egg, white, dried~^~EGG,WHITE,DRIED~^^^^^0^^6.25^4.36^9.02^3.68 -~01174~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01175~^~0100~^~Milk, fluid, 1% fat, without added vitamin A and vitamin D~^~MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01178~^~0100~^~Sour cream, reduced fat~^~SOUR CREAM,REDUCED FAT~^^^~Y~^^0^^6.38^^^ -~01179~^~0100~^~Sour cream, light~^~SOUR CREAM,LIGHT~^^^~Y~^^0^^6.38^^^ -~01180~^~0100~^~Sour cream, fat free~^~SOUR CREAM,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01184~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener~^~YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01185~^~0100~^~Parmesan cheese topping, fat free~^~PARMESAN CHS TOPPING,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01186~^~0100~^~Cheese, cream, fat free~^~CHEESE,CREAM,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01187~^~0100~^~Yogurt, chocolate, nonfat milk~^~YOGURT,CHOC,NONFAT MILK~^^^~Y~^^0^^6.38^^^ -~01188~^~0100~^~KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce~^~KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01189~^~0100~^~KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product~^~KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01190~^~0100~^~KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product~^~KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01191~^~0100~^~KRAFT VELVEETA Pasteurized Process Cheese Spread~^~KRAFT VELVEETA PAST PROCESS CHS SPRD~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01192~^~0100~^~KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product~^~KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01193~^~0100~^~KRAFT BREAKSTONE'S Reduced Fat Sour Cream~^~KRAFT BREAKSTONE'S RED FAT SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01194~^~0100~^~KRAFT BREAKSTONE'S FREE Fat Free Sour Cream~^~KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01199~^~0100~^~Cream, half and half, fat free~^~CREAM,HALF & HALF,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01200~^~0100~^~Reddi Wip Fat Free Whipped Topping~^~REDDI WIP FAT FREE WHIPPED TOPPING~^^^~Y~^^0^^6.38^^^ -~01202~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added calcium~^~MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA~^^^^^0^^6.38^^^ -~01203~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener~^~YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01204~^~0100~^~Cheese, parmesan, dry grated, reduced fat~^~CHEESE,PARMESAN,DRY GRATED,RED FAT~^^^~Y~^^0^^6.38^^^ -~01205~^~0100~^~Cream substitute, flavored, liquid~^~CREAM SUB,FLAV,LIQ~^^^~Y~^^0^^6.29^^^ -~01206~^~0100~^~Cream substitute, flavored, powdered~^~CREAM SUB,FLAV,PDR~^^^~Y~^^0^^6.38^^^ -~01208~^~0100~^~Cheese, provolone, reduced fat~^~CHEESE,PROVOLONE,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01209~^~0100~^~Cheese, Mexican, blend, reduced fat~^~CHEESE,MEXICAN,BLEND,RED FAT~^^^~Y~^^0^^6.38^^^ -~01211~^~0100~^~Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D~^~MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01212~^~0100~^~Milk, dry, whole, without added vitamin D~^~MILK,DRY,WHL,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01215~^~0100~^~Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D~^^^~Y~^^0^^6.38^^^ -~01216~^~0100~^~Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01217~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01218~^~0100~^~Yogurt, fruit variety, nonfat, fortified with vitamin D~^~YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01219~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D~^~YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01220~^~0100~^~Yogurt, vanilla, low fat, fortified with vitamin D~^~YOGURT,VANILLA,LOFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01221~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D~^~YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D~^^^~Y~^^0^^6.38^^^ -~01222~^~0100~^~Yogurt, chocolate, nonfat milk, fortified with vitamin D~^~YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01223~^~0100~^~Protein supplement, milk based, Muscle Milk, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR~^^^~Y~^^0^^6.38^^^ -~01224~^~0100~^~Protein supplement, milk based, Muscle Milk Light, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR~^^^~Y~^^0^^6.38^^^ -~01225~^~0100~^~Dulce de Leche~^~DULCE DE LECHE~^^^~Y~^^0^^6.38^^^ -~01226~^~0100~^~Egg substitute, liquid or frozen, fat free~^~EGG SUB,LIQ OR FRZ,FAT FREE~^^^~Y~^^0^^6.25^4.36^8.84^3.68 -~01227~^~0100~^~Cheese, dry white, queso seco~^~CHEESE,DRY WHITE,QUESO SECO~^^^^^0^^6.38^^^ -~01228~^~0100~^~Cheese, fresh, queso fresco~^~CHEESE,FRSH,QUESO FRESCO~^^^~Y~^^0^^6.38^^^ -~01229~^~0100~^~Cheese, white, queso blanco~^~CHEESE,WHITE,QUESO BLANCO~^^^^^0^^6.38^^^ -~01230~^~0100~^~Milk, buttermilk, fluid, whole~^~MILK,BTTRMLK,FLUID,WHL~^^^~Y~^^0^^6.38^^^ -~01231~^~0100~^~Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener~^~YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^6.38^^^ -~01235~^~0100~^~Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener~^~YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01236~^~0100~^~Ice cream, soft serve, chocolate~^~ICE CRM,SOFT SERVE,CHOC~^^^~Y~^^0^^6.38^^^ -~01237~^~0100~^~Ice cream, bar or stick, chocolate covered~^~ICE CRM,BAR OR STK,CHOC COVERED~^^^~Y~^^0^^6.38^^^ -~01238~^~0100~^~Ice cream sandwich~^~ICE CRM SNDWCH~^^^~Y~^^0^^6.38^^^ -~01239~^~0100~^~Ice cream cookie sandwich~^~ICE CRM COOKIE SNDWCH~^^^~Y~^^0^^6.38^^^ -~01240~^~0100~^~Ice cream cone, chocolate covered, with nuts, flavors other than chocolate~^~ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.25^^^ -~01241~^~0100~^~Ice cream sandwich, made with light ice cream, vanilla~^~ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA~^^^~Y~^^0^^6.25^^^ -~01242~^~0100~^~Ice cream sandwich, vanilla, light, no sugar added~^~ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.38^^^ -~01243~^~0100~^~Fat free ice cream, no sugar added, flavors other than chocolate~^~FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.38^^^ -~01244~^~0100~^~Milk dessert bar, frozen, made from lowfat milk~^~MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK~^^^~Y~^^0^^6.38^^^ -~01249~^~0100~^~Yogurt, Greek, 2% fat,mixed berry blend, CHOBANI~^~YOGURT,GREEK,2% FAT,MXD BERRY BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01250~^~0100~^~Nutritional supplement for people with diabetes, liquid~^~NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ~^^^~Y~^^0^^6.38^^^ -~01251~^~0100~^~Cheese, Mexican blend~^~CHEESE,MEXICAN BLEND~^^^~Y~^^0^^6.38^^^ -~01252~^~0100~^~Cheese product, pasteurized process, American, vitamin D fortified~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^^^ -~01253~^~0100~^~Cheese, pasteurized process, American, without added vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01254~^~0100~^~Cheese food, pasteurized process, American, without added vitamin D~^~CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01255~^~0100~^~Egg, whole, raw, frozen, salted, pasteurized~^~EGG,WHL,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^^^ -~01256~^~0100~^~Yogurt, Greek, plain, nonfat (Includes foods for USDA's Food Distribution Program)~^~YOGURT,GREEK,PLN,NONFAT~^^^~Y~^^0^^6.38^^^ -~01258~^~0100~^~Egg, white, dried, stabilized, glucose reduced~^~EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^^^ -~01259~^~0100~^~Cheese spread, American or Cheddar cheese base, reduced fat~^~CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT~^^^~Y~^^0^^6.38^^^ -~01260~^~0100~^~Cheese, cheddar, reduced fat (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR,RED FAT~^^^~Y~^^0^^6.38^^^ -~01263~^~0100~^~Ice cream, light, soft serve, chocolate~^~ICE CRM,LT,SOFT SERVE,CHOC~^^^~Y~^^0^^6.25^^^ -~01264~^~0100~^~Ice cream bar, stick or nugget, with crunch coating~^~ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING~^^^~Y~^^0^^6.38^^^ -~01265~^~0100~^~Cheese, cheddar, nonfat or fat free~^~CHEESE,CHEDDAR,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01266~^~0100~^~Cheese, Swiss, nonfat or fat free~^~CHEESE,SWISS,NONFAT OR FAT FREE~^^^~Y~^^0^^6.38^^^ -~01267~^~0100~^~Cheese, mexican, queso cotija~^~CHEESE,MEXICAN,QUESO COTIJA~^^^~Y~^^0^^6.25^^^ -~01270~^~0100~^~Cheese, cheddar, sharp, sliced~^~CHEESE,CHEDDAR,SHARP,SLICED~^^^~Y~^^0^^6.38^^^ -~01271~^~0100~^~Cheese, mozzarella, low moisture, part-skim, shredded~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED~^^^~Y~^^0^^6.38^^^ -~01275~^~0100~^~Yogurt, Greek, nonfat, vanilla, CHOBANI~^~YOGURT,GREEK,NONFAT,VANILLA,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01276~^~0100~^~Yogurt, Greek, strawberry, DANNON OIKOS~^~YOGURT,GREEK,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01278~^~0100~^~Yogurt, Greek, nonfat, vanilla, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01280~^~0100~^~Yogurt, Greek, nonfat, strawberry, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01284~^~0100~^~Yogurt, Greek, strawberry, lowfat~^~YOGURT,GREEK,STRAWBERRY,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01285~^~0100~^~Yogurt, Greek, strawberry, nonfat~^~YOGURT,GREEK,STRAWBERRY,NONFAT~^^^~Y~^^0^^6.38^^^ -~01286~^~0100~^~Yogurt, Greek, vanilla, nonfat~^~YOGURT,GREEK,VANILLA,NONFAT~^^^~Y~^^0^^6.38^^^ -~01287~^~0100~^~Yogurt, Greek, plain, lowfat~^~YOGURT,GREEK,PLN,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01289~^~0100~^~Kefir, lowfat, plain, LIFEWAY~^~KEFIR,LOWFAT,PLN,LIFEWAY~^^~Lifeway~^~Y~^^0^^6.38^^^ -~01290~^~0100~^~Kefir, lowfat, strawberry, LIFEWAY~^~KEFIR,LOWFAT,STRAWBERRY,LIFEWAY~^^^~Y~^^0^^6.38^^^ -~01291~^~0100~^~Milk, evaporated, 2% fat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,WO/ VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01292~^~0100~^~Milk, chocolate, fat free, with added vitamin A and vitamin D~^~MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.25^^^ -~01293~^~0100~^~Yogurt, Greek, plain, whole milk~^~YOGURT,GREEK,PLN,WHL MILK~^^^~Y~^^0^^6.25^^^ -~01294~^~0100~^~Yogurt, Greek, fruit, whole milk~^~YOGURT,GREEK,FRUIT,WHL MILK~^^^~Y~^^0^^6.38^^^ -~01295~^~0100~^~Yogurt, vanilla, non-fat~^~YOGURT,VANILLA,NON-FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01297~^~0100~^~Yogurt, Greek, vanilla, lowfat~^~YOGURT,GREEK,VANILLA,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01298~^~0100~^~Yogurt, frozen, flavors other than chocolate, lowfat~^~YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01300~^~0100~^~Ice cream bar, covered with chocolate and nuts~^~ICE CRM BAR,COVERED W/ CHOC & NUTS~^^^~Y~^^0^^6.38^^^ -~01301~^~0100~^~Ice cream sundae cone~^~ICE CRM SUNDAE CONE~^^^~Y~^^0^^6.38^^^ -~01302~^~0100~^~Light ice cream, Creamsicle~^~LIGHT ICE CRM,CREAMSICLE~^^^~Y~^^0^^6.25^^^ -~01303~^~0100~^~Cream, half and half, lowfat~^~CREAM,HALF & HALF,LOWFAT~^^^~Y~^^0^^6.25^^^ -~01304~^~0100~^~Yogurt, Greek, 2% fat, pineapple, CHOBANI~^~YOGURT,GREEK,2% FAT,PNAPPL,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01305~^~0100~^~Milk, chocolate, lowfat, reduced sugar~^~MILK,CHOC,LOWFAT,RED SUGAR~^^^~Y~^^0^^6.38^^^ -~01306~^~0100~^~Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce~^~ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU~^^^~Y~^^0^^6.25^^^ -~01307~^~0100~^~Yogurt, Greek, 2% fat, strawberry banana, CHOBANI~^~YOGURT,GREEK,2% FAT,STRAWBERRY BANANA,CHOBANI~^^~Chobani~^^^0^^^^^ -~01308~^~0100~^~Yogurt, Greek, whole, plain, CHOBANI~^~YOGURT,GREEK,WHL,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01312~^~0100~^~Yogurt, Greek, nonfat, lemon blend, CHOBANI~^~YOGURT,GREEK,NONFAT,LEMON BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01313~^~0100~^~Yogurt, Greek, nonfat, peach, CHOBANI~^~YOGURT,GREEK,NONFAT,PEACH,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01314~^~0100~^~Yogurt, Greek, nonfat, plain, CHOBANI~^~YOGURT,GREEK,NONFAT,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01316~^~0100~^~Yogurt, Greek, nonfat, raspberry, CHOBANI~^~YOGURT,GREEK,NONFAT,RASPBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01319~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Pomegranate, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,POMEGRANATE,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01320~^~0100~^~Yogurt, Greek, Blueberry, CHOBANI~^~YOGURT,GREEK,BLUEBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01321~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Strawberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,STRAWBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01322~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Blackberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,BLACKBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01323~^~0100~^~Butter, Clarified butter (ghee)~^~BUTTER,CLARIFIED BUTTER (GHEE)~^^^^^0^^6.25^^^ -~02001~^~0200~^~Spices, allspice, ground~^~ALLSPICE,GROUND~^^^^^0^~Pimenta dioica~^6.25^3.36^8.37^2.35 -~02002~^~0200~^~Spices, anise seed~^~ANISE SEED~^^^^^0^~Pimpinella anisum~^6.25^3.36^8.37^2.90 -~02003~^~0200~^~Spices, basil, dried~^~SPICES,BASIL,DRIED~^^^~Y~^^0^~Ocimum basilicum~^6.25^2.44^8.37^3.00 -~02004~^~0200~^~Spices, bay leaf~^~SPICES,BAY LEAF~^^^^^0^~Laurus nobilis~^6.25^2.44^8.37^3.00 -~02005~^~0200~^~Spices, caraway seed~^~CARAWAY SEED~^^^~Y~^^0^~Carum carvi~^6.25^3.36^8.37^2.90 -~02006~^~0200~^~Spices, cardamom~^~SPICES,CARDAMOM~^^^^^0^~Elettaria cardamomum~^6.25^3.36^8.37^3.20 -~02007~^~0200~^~Spices, celery seed~^~CELERY SEED~^^^~Y~^^0^~Apium graveolens~^6.25^3.36^8.37^2.90 -~02008~^~0200~^~Spices, chervil, dried~^~CHERVIL,DRIED~^^^^^0^~Anthriscus cerefolium~^6.25^2.44^8.37^3.00 -~02009~^~0200~^~Spices, chili powder~^~CHILI POWDER~^^^~Y~^^0^^6.25^3.23^8.37^2.39 -~02010~^~0200~^~Spices, cinnamon, ground~^~CINNAMON,GROUND~^~Cassia~^^~Y~^^0^~Cinnamomum aromaticum~^6.25^1.82^8.37^2.85 -~02011~^~0200~^~Spices, cloves, ground~^~CLOVES,GROUND~^^^~Y~^^0^~Syzygium aromaticum~^6.25^1.82^8.37^2.35 -~02012~^~0200~^~Spices, coriander leaf, dried~^~CORIANDER LEAF,DRIED~^~Chinese parsley, cilantro~^^~Y~^^0^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~02013~^~0200~^~Spices, coriander seed~^~CORIANDER SEED~^^^^^0^~Coriandrum sativum~^6.25^3.36^8.37^1.95 -~02014~^~0200~^~Spices, cumin seed~^~CUMIN SEED~^^^~Y~^^0^~Cuminum cyminum~^6.25^3.36^8.37^2.90 -~02015~^~0200~^~Spices, curry powder~^~CURRY POWDER~^^^~Y~^^0^^6.18^3.12^8.37^2.92 -~02016~^~0200~^~Spices, dill seed~^~DILL SEED~^^^^^0^~Anethum graveolens~^6.25^3.36^8.37^2.35 -~02017~^~0200~^~Spices, dill weed, dried~^~DILL WEED,DRIED~^^^^^0^~Anethum graveolens~^6.25^2.44^8.37^3.00 -~02018~^~0200~^~Spices, fennel seed~^~FENNEL SEED~^^^^^0^~Foeniculum vulgare~^6.25^3.36^8.37^3.20 -~02019~^~0200~^~Spices, fenugreek seed~^~FENUGREEK SEED~^^^^^0^~Trigonella foenum-graecum~^5.30^3.47^8.37^3.25 -~02020~^~0200~^~Spices, garlic powder~^~GARLIC POWDER~^^^~Y~^^0^~Allium sativum~^6.25^2.78^8.37^3.84 -~02021~^~0200~^~Spices, ginger, ground~^~GINGER,GROUND~^^^~Y~^^0^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~02022~^~0200~^~Spices, mace, ground~^~MACE,GROUND~^^^^^0^~Myristica fragrans~^6.25^3.36^8.37^3.60 -~02023~^~0200~^~Spices, marjoram, dried~^~MARJORAM,DRIED~^^^~Y~^^0^~Origanum majorana~^6.25^2.44^8.37^3.00 -~02024~^~0200~^~Spices, mustard seed, ground~^~SPICES,MUSTARD SD,GROUND~^^^~Y~^^0^~Sinapis alba and Brassica juncea~^5.40^3.47^8.37^4.07 -~02025~^~0200~^~Spices, nutmeg, ground~^~NUTMEG,GROUND~^^^~Y~^^0^~Myristica fragrans~^5.30^3.47^8.37^4.07 -~02026~^~0200~^~Spices, onion powder~^~ONION POWDER~^^^~Y~^^0^~Allium cepa~^6.25^2.78^8.37^3.84 -~02027~^~0200~^~Spices, oregano, dried~^~SPICES,OREGANO,DRIED~^^^~Y~^^0^~Origanum vulgare~^6.25^2.44^8.37^3.00 -~02028~^~0200~^~Spices, paprika~^~PAPRIKA~^^^~Y~^^0^~Capsicum annuum~^6.25^3.36^8.37^2.35 -~02029~^~0200~^~Spices, parsley, dried~^~PARSLEY,DRIED~^^^~Y~^^0^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~02030~^~0200~^~Spices, pepper, black~^~PEPPER,BLACK~^^^~Y~^^0^~Piper nigrum~^5.35^1.83^8.37^3.20 -~02031~^~0200~^~Spices, pepper, red or cayenne~^~PEPPER,RED OR CAYENNE~^^^~Y~^^0^~Capsicum frutescens or Capsicum annuum~^6.25^3.36^8.37^2.35 -~02032~^~0200~^~Spices, pepper, white~^~PEPPER,WHITE~^^^^^0^~Piper nigrum~^5.35^1.83^8.37^3.78 -~02033~^~0200~^~Spices, poppy seed~^~POPPY SEED~^^^~Y~^^0^~Papaver somniferum~^5.30^3.47^8.37^4.07 -~02034~^~0200~^~Spices, poultry seasoning~^~POULTRY SEASONING~^^^~Y~^^0^^5.89^2.36^8.37^3.38 -~02035~^~0200~^~Spices, pumpkin pie spice~^~PUMPKIN PIE SPICE~^^^~Y~^^0^^6.06^2.50^8.37^3.19 -~02036~^~0200~^~Spices, rosemary, dried~^~ROSEMARY,DRIED~^^^^^0^~Rosmarinus officinalis~^6.25^2.44^8.37^3.00 -~02037~^~0200~^~Spices, saffron~^~SAFFRON~^^^^^0^~Crocus sativus~^6.25^2.44^8.37^3.57 -~02038~^~0200~^~Spices, sage, ground~^~SAGE,GROUND~^^^~Y~^^0^~Salvia officinalis~^6.25^2.44^8.37^3.00 -~02039~^~0200~^~Spices, savory, ground~^~SAVORY,GROUND~^^^^^0^~Satureja hortensis~^6.25^2.44^8.37^3.00 -~02041~^~0200~^~Spices, tarragon, dried~^~SPICES,TARRAGON,DRIED~^^^^^0^~Artemisia dracunculus~^6.25^2.44^8.37^3.57 -~02042~^~0200~^~Spices, thyme, dried~^~SPICES,THYME,DRIED~^^^~Y~^^0^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02043~^~0200~^~Spices, turmeric, ground~^~TURMERIC,GROUND~^^^~Y~^^0^~Curcuma longa L.~^6.25^2.78^8.37^3.84 -~02044~^~0200~^~Basil, fresh~^~BASIL,FRESH~^^^~Y~^~Tough stems, flower heads and trimmings~^36^~Ocimum basilicum~^6.25^2.44^8.37^3.57 -~02045~^~0200~^~Dill weed, fresh~^~DILL WEED,FRSH~^^^^~Tough stems and trimmings~^41^~Anethum graveolens~^6.25^2.44^8.37^3.57 -~02046~^~0200~^~Mustard, prepared, yellow~^~MUSTARD,PREPARED,YELLOW~^^^~Y~^^0^^6.25^3.47^8.37^3.34 -~02047~^~0200~^~Salt, table~^~SALT,TABLE~^^^~Y~^^0^^0.00^^^ -~02048~^~0200~^~Vinegar, cider~^~VINEGAR,CIDER~^^^~Y~^^0^^0.00^^^ -~02049~^~0200~^~Thyme, fresh~^~THYME,FRSH~^^^^~Stems~^32^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02050~^~0200~^~Vanilla extract~^~VANILLA EXTRACT~^^^^^0^^6.25^2.44^8.37^3.90 -~02051~^~0200~^~Vanilla extract, imitation, alcohol~^~VANILLA EXTRACT,IMITN,ALCOHOL~^^^^^0^^6.25^2.44^8.37^3.90 -~02052~^~0200~^~Vanilla extract, imitation, no alcohol~^~VANILLA EXTRACT,IMITN,NO ALCOHOL~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~02053~^~0200~^~Vinegar, distilled~^~VINEGAR,DISTILLED~^^^~Y~^^0^^^^^ -~02054~^~0200~^~Capers, canned~^~CAPERS,CANNED~^^^~Y~^^0^~Capparis spinosa~^6.25^1.82^8.37^2.35 -~02055~^~0200~^~Horseradish, prepared~^~HORSERADISH,PREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.44 -~02063~^~0200~^~Rosemary, fresh~^~ROSEMARY,FRESH~^^^^~Stems~^35^~Rosmarinus officinalis~^6.25^2.44^8.37^3.57 -~02064~^~0200~^~Peppermint, fresh~^~PEPPERMINT,FRESH~^~mint~^^^~Stems~^39^~Mentha x piperita L. nothosubsp. piperita~^6.25^2.44^8.37^3.57 -~02065~^~0200~^~Spearmint, fresh~^~SPEARMINT,FRESH~^~mint~^^^~Stems~^59^~Mentha spicata~^6.25^2.44^8.37^3.57 -~02066~^~0200~^~Spearmint, dried~^~SPEARMINT,DRIED~^~mint~^^^^0^^6.25^2.44^8.37^3.57 -~02068~^~0200~^~Vinegar, red wine~^~VINEGAR,RED WINE~^^^^^0^^6.25^^^ -~02069~^~0200~^~Vinegar, balsamic~^~VINEGAR,BALSAMIC~^^^^^0^^^^^ -~02074~^~0200~^~Seasoning mix, dry, sazon, coriander & annatto~^~SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO~^^^^^0^^6.25^^^ -~02075~^~0200~^~Seasoning mix, dry, taco, original~^~SEASONING MIX,DRY,TACO,ORIGINAL~^^^^^0^^^^^ -~02076~^~0200~^~Seasoning mix, dry, chili, original~^~SEASONING MIX,DRY,CHILI,ORIGINAL~^^^^^0^^^^^ -~03000~^~0300~^~Clif Z bar~^~CLIF Z BAR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03001~^~0300~^~Babyfood, juice treats, fruit medley, toddler~^~BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD~^^^~Y~^^0^^6.25^^^ -~03002~^~0300~^~Babyfood, meat, beef, strained~^~BABYFOOD,MEAT,BF,STR~^^^~Y~^^0^^6.25^^^ -~03003~^~0300~^~Babyfood, meat, beef, junior~^~BABYFOOD,MEAT,BF,JR~^^^~Y~^^0^^6.25^^^ -~03005~^~0300~^~Babyfood, meat, veal, strained~^~BABYFOOD,MEAT,VEAL,STR~^^^~Y~^^0^^^^^ -~03007~^~0300~^~Babyfood, meat, pork, strained~^~BABYFOOD,MEAT,PORK,STR~^^^^^0^^6.25^4.27^9.02^ -~03008~^~0300~^~Babyfood, meat, ham, strained~^~BABYFOOD,MEAT,HAM,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03009~^~0300~^~Babyfood, meat, ham, junior~^~BABYFOOD,MEAT,HAM,JUNIOR~^^^^^0^^6.25^4.27^9.02^ -~03010~^~0300~^~Babyfood, meat, lamb, strained~^~BABYFOOD,MEAT,LAMB,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~03011~^~0300~^~Babyfood, meat, lamb, junior~^~BABYFOOD,MEAT,LAMB,JUNIOR~^^^^^0^^6.25^4.27^9.02^3.87 -~03012~^~0300~^~Babyfood, meat, chicken, strained~^~BABYFOOD,MEAT,CHICK,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03013~^~0300~^~Babyfood, meat, chicken, junior~^~BABYFOOD,MEAT,CHICK,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03014~^~0300~^~Babyfood, meat, chicken sticks, junior~^~BABYFOOD,MEAT,CHICK STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03015~^~0300~^~Babyfood, meat, turkey, strained~^~BABYFOOD,MEAT,TURKEY,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03016~^~0300~^~Babyfood, meat, turkey, junior~^~BABYFOOD,MEAT,TURKEY,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03017~^~0300~^~Babyfood, meat, turkey sticks, junior~^~Babyfood, meat, turkey sticks, junior~^^^~Y~^^0^^6.25^^^ -~03019~^~0300~^~Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars~^~BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS~^^~GERBER~^~Y~^^0^^^^^ -~03021~^~0300~^~Babyfood, meat, meat sticks, junior~^~BABYFOOD,MEAT,MEAT STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03022~^~0300~^~Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic~^~BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC~^^^~Y~^^0^^6.25^^^ -~03023~^~0300~^~Babyfood, finger snacks, GERBER, GRADUATES, PUFFS, apple and cinnamon~^~BABYFOOD,FINGER SNACKS,GERBER,GRADUATES,PUFFS,APPL & CINN~^^~GERBER~^~Y~^^0^^6.25^3.36^6.37^3.60 -~03024~^~0300~^~Babyfood, water, bottled, GERBER, without added fluoride~^~BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE~^^~GERBER~^~Y~^^0^^^^^ -~03025~^~0300~^~Babyfood, GERBER, 3rd Foods, apple, mango and kiwi~^~BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI~^^~GERBER~^~Y~^^0^^6.25^3.60^8.37^3.60 -~03026~^~0300~^~Babyfood, tropical fruit medley~^~BABYFOOD,TROPICAL FRUIT MEDLEY~^^^~Y~^^0^^6.25^3.60^8.37^3.60 -~03041~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, strained~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR~^^^^^0^^6.03^4.10^8.90^4.10 -~03042~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, junior~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR~^^^^^0^^6.03^4.10^8.90^4.10 -~03043~^~0300~^~Babyfood, dinner, beef lasagna, toddler~^~BABYFOOD,DINNER,BF LASAGNA,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03044~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, strained~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03045~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, junior~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03046~^~0300~^~Babyfood, ravioli, cheese filled, with tomato sauce~^~BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU~^^^~Y~^^0^^6.25^^^ -~03047~^~0300~^~Babyfood, dinner, beef noodle, strained~^~BABYFOOD,DINNER,BF NOODLE,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03048~^~0300~^~Babyfood, macaroni and cheese, toddler~^~BABYFOOD,MACARONI&CHS,TODD~^^^~Y~^^0^^6.25^^^ -~03049~^~0300~^~Babyfood, dinner, beef and rice, toddler~^~BABYFOOD,DINNER,BF&RICE,TODD~^^^^^0^^6.14^4.10^8.90^4.10 -~03050~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, junior~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR~^^^~Y~^^0^^6.25^^^ -~03051~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, toddler~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03053~^~0300~^~Babyfood, dinner, vegetables and beef, strained~^~BABYFOOD,DINNER,VEG&BF,STR~^^^~Y~^^0^^^^^ -~03054~^~0300~^~Babyfood, dinner, vegetables and beef, junior~^~BABYFOOD,DINNER,VEG&BF,JR~^^^~Y~^^0^^^^^ -~03055~^~0300~^~Babyfood, dinner, beef with vegetables~^~BABYFOOD,DINNER,BF W/VEG~^^^~Y~^^0^^^^^ -~03067~^~0300~^~Babyfood, dinner, vegetables and lamb, junior~^~BABYFOOD,DINNER,VEG&LAMB,JR~^^^^^0^^6.25^3.70^8.90^3.90 -~03068~^~0300~^~Babyfood, dinner, chicken noodle, strained~^~BABYFOOD,DINNER,CHICK NOODLE,STR~^^^~Y~^^0^^6.25^^^ -~03069~^~0300~^~Babyfood, dinner, chicken noodle, junior~^~BABYFOOD,DINNER,CHICK NOODLE,JR~^^^~Y~^^0^^6.25^^^ -~03070~^~0300~^~Babyfood, dinner, chicken soup, strained~^~BABYFOOD,DINNER,CHICK SOUP,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.84 -~03072~^~0300~^~Babyfood, dinner, chicken stew, toddler~^~BABYFOOD DINNER CHICK STEW TODD~^^^~Y~^^0^^6.25^3.70^8.90^3.90 -~03073~^~0300~^~Babyfood, dinner, vegetables chicken, strained~^~BABYFOOD,DINNER,VEG CHICK,STR~^^^~Y~^^0^^^^^ -~03075~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, strained~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03076~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, junior~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03077~^~0300~^~Babyfood, dinner, pasta with vegetables~^~BABYFOOD,DINNER,PASTA W/VEG~^^^~Y~^^0^^^^^ -~03079~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, strained~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03081~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, junior~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03082~^~0300~^~Babyfood, dinner, turkey and rice, strained~^~BABYFOOD,DINNER,TURKEY&RICE,STR~^^^~Y~^^0^^^^^ -~03083~^~0300~^~Babyfood, dinner, turkey and rice, junior~^~BABYFOOD,DINNER,TURKEY & RICE,JR~^^^~Y~^^0^^^^^ -~03084~^~0300~^~Babyfood, dinner, vegetables and turkey, strained~^~BABYFOOD,DINNER,VEG&TURKEY,STR~^^^~Y~^^0^^^^^ -~03085~^~0300~^~Babyfood, dinner, vegetables and turkey, junior~^~BABYFOOD,DINNER,VEG&TURKEY,JR~^^^~Y~^^0^^^^^ -~03089~^~0300~^~Babyfood, dinner, macaroni and cheese, strained~^~BABYFOOD,DINNER,MACARONI&CHS,STR~^^^~Y~^^0^^^^^ -~03090~^~0300~^~Babyfood, dinner, macaroni and cheese, junior~^~BABYFOOD,DINNER,MACARONI&CHS,JR~^^^~Y~^^0^^6.00^4.20^8.70^4.00 -~03091~^~0300~^~Babyfood, vegetables, green beans, strained~^~BABYFOOD,VEG,GRN BNS,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03092~^~0300~^~Babyfood, vegetables, green beans, junior~^~BABYFOOD,VEG,GRN BNS,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03093~^~0300~^~Babyfood, green beans, dices, toddler~^~BABYFOOD,GRN BNS,DICES,TODD~^^^~Y~^^0^^^^^ -~03096~^~0300~^~Babyfood, vegetable, green beans and potatoes~^~BABYFOOD,VEG,GRN BNS&POTATOES~^^^~Y~^^0^^^^^ -~03098~^~0300~^~Babyfood, vegetables, beets, strained~^~BABYFOOD,VEG,BEETS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03099~^~0300~^~Babyfood, vegetables, carrots, strained~^~BABYFOOD,VEG,CARROTS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03100~^~0300~^~Babyfood, vegetables, carrots, junior~^~BABYFOOD,VEG,CARROTS,JR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03104~^~0300~^~Babyfood, vegetables, squash, strained~^~BABYFOOD,VEG,SQUASH,STR~^^^~Y~^^0^^6.25^^^ -~03105~^~0300~^~Babyfood, vegetables, squash, junior~^~BABYFOOD,VEG,SQUASH,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03108~^~0300~^~Babyfood, vegetables, sweet potatoes strained~^~BABYFOOD,VEG,SWT POTATOES,STR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03109~^~0300~^~Babyfood, vegetables, sweet potatoes, junior~^~BABYFOOD,VEG,SWT POTATOES,JR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03112~^~0300~^~Babyfood, potatoes, toddler~^~BABYFOOD,POTATOES,TODDLER~^^^~Y~^^0^^^^^ -~03113~^~0300~^~Babyfood, cereal, Oatmeal, dry, GERBER, SINGLE GRAIN, fortified~^~BABYFOOD,CRL,OATMEAL,DRY,GERBER,SINGLE GRAIN,FORT~^^~GERBER~^^^0^^^^^ -~03114~^~0300~^~Babyfood, vegetable, butternut squash and corn~^~BABYFOOD,VEG,BUTTERNUT SQUASH&CORN~^^^~Y~^^0^^^^^ -~03115~^~0300~^~Babyfood, apples, dices, toddler~^~BABYFOOD,APPLS,DICES,TODD~^^^~Y~^^0^^6.25^^^ -~03116~^~0300~^~Babyfood, fruit, applesauce, strained~^~BABYFOOD,FRUIT,APPLSAUC,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03117~^~0300~^~Babyfood, fruit, applesauce, junior~^~BABYFOOD,FRUIT,APPLSAUC,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03118~^~0300~^~Babyfood, fruit, apricot with tapioca, strained~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03119~^~0300~^~Babyfood, vegetables, corn, creamed, strained~^~BABYFOOD,VEG,CORN,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03120~^~0300~^~Babyfood, vegetables, corn, creamed, junior~^~BABYFOOD,VEG,CORN,CRMD,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03121~^~0300~^~Babyfood, vegetables, peas, strained~^~BABYFOOD,VEG,PEAS,STR~^^^~Y~^^0^^^^^ -~03122~^~0300~^~Babyfood, peas, dices, toddler~^~BABYFOOD,PEAS,DICES,TODD~^^^~Y~^^0^^^^^ -~03127~^~0300~^~Babyfood, vegetables, spinach, creamed, strained~^~BABYFOOD,VEG,SPINACH,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03128~^~0300~^~Babyfood, fruit, apricot with tapioca, junior~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03129~^~0300~^~Babyfood, fruit, bananas with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03130~^~0300~^~Babyfood, fruit, peaches, strained~^~BABYFOOD,FRUIT,PEACHES,STR~^^^~Y~^^0^^^^^ -~03131~^~0300~^~Babyfood, fruit, peaches, junior~^~BABYFOOD,FRUIT,PEACHES,JR~^^^~Y~^^0^^^^^ -~03132~^~0300~^~Babyfood, fruit, pears, strained~^~BABYFOOD,FRUIT,PEARS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03133~^~0300~^~Babyfood, fruit, pears, junior~^~BABYFOOD,FRUIT,PEARS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03134~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03135~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03136~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03137~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03139~^~0300~^~Babyfood, prunes, without vitamin c, strained~^~BABYFOOD,PRUNES,WO/VIT C,STR~^^^~Y~^^0^^^^^ -~03140~^~0300~^~Babyfood, fruit dessert, mango with tapioca~^~BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03141~^~0300~^~Babyfood, pears, dices, toddler~^~BABYFOOD,PEARS,DICES,TODD~^^^~Y~^^0^^^^^ -~03142~^~0300~^~Babyfood, fruit, applesauce and apricots, strained~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03143~^~0300~^~Babyfood, fruit, applesauce and apricots, junior~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03144~^~0300~^~Babyfood, fruit, applesauce and cherries, strained~^~BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03145~^~0300~^~Babyfood, fruit, applesauce and cherries, junior~^~BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03147~^~0300~^~Babyfood, fruit, applesauce with banana, junior~^~BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR~^^^~Y~^^0^^^^^ -~03150~^~0300~^~Babyfood, fruit, applesauce and pineapple, strained~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03151~^~0300~^~Babyfood, fruit, applesauce and pineapple, junior~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03152~^~0300~^~Babyfood, fruit, apple and raspberry, strained~^~BABYFOOD,FRUIT,APPL & RASPBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03153~^~0300~^~Babyfood, fruit, apple and raspberry, junior~^~BABYFOOD,FRUIT,APPL & RASPBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03154~^~0300~^~Babyfood, fruit and vegetable, apple and sweet potato~^~BABYFOOD,FRUIT & VEG,APPL & SWT POTATO~^^^~Y~^^0^^^^^ -~03156~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03157~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03158~^~0300~^~Babyfood, fruit, pears and pineapple, strained~^~BABYFOOD,FRUIT,PEARS&PNAPPL,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03159~^~0300~^~Babyfood, fruit, pears and pineapple, junior~^~BABYFOOD,FRUIT,PEARS&PNAPPL,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03160~^~0300~^~Babyfood, fruit, guava and papaya with tapioca, strained~^~BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03161~^~0300~^~Babyfood, peaches, dices, toddler~^~BABYFOOD,PEACHES,DICES,TODD~^^^~Y~^^0^^^^^ -~03162~^~0300~^~Babyfood, fruit, papaya and applesauce with tapioca, strained~^~BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03163~^~0300~^~Babyfood, fruit, bananas with apples and pears, strained~^~BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR~^^^~Y~^^0^^^^^ -~03164~^~0300~^~Babyfood, fruit, apple and blueberry, strained~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03165~^~0300~^~Babyfood, fruit, apple and blueberry, junior~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03166~^~0300~^~Babyfood, juice, apple~^~BABYFOOD,JUICE,APPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03167~^~0300~^~Babyfood, apple-banana juice~^~BABYFOOD,APPLE-BANANA JUC~^^^~Y~^^0^^^^^ -~03168~^~0300~^~Babyfood, juice, apple and peach~^~BABYFOOD,JUC,APPL&PEACH~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03171~^~0300~^~Babyfood, juice, apple and prune~^~BABYFOOD,JUC,APPL&PRUNE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03172~^~0300~^~Babyfood, juice, orange~^~BABYFOOD,JUICE,ORANGE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03173~^~0300~^~Babyfood, juice, orange and apple~^~BABYFOOD,JUC,ORANGE&APPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03174~^~0300~^~Babyfood, juice, orange and apple and banana~^~BABYFOOD,JUC,ORANGE&APPL&BANANA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03175~^~0300~^~Babyfood, juice, orange and apricot~^~BABYFOOD,JUC,ORANGE&APRICOT~^^^^^0^^6.25^3.36^8.37^3.92 -~03176~^~0300~^~Babyfood, juice, orange and banana~^~BABYFOOD,JUC,ORANGE&BANANA~^^^^^0^^6.25^3.36^8.37^3.92 -~03177~^~0300~^~Babyfood, juice, orange and pineapple~^~BABYFOOD,JUC,ORANGE&PNAPPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03178~^~0300~^~Babyfood, juice, prune and orange~^~BABYFOOD,JUC,PRUNE&ORANGE~^^^^^0^^6.25^3.36^8.37^3.92 -~03179~^~0300~^~Babyfood, juice, mixed fruit~^~BABYFOOD,JUC,MXD FRUIT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03181~^~0300~^~Babyfood, cereal, barley, dry fortified~^~BABYFOOD,CRL,BARLEY,DRY FORT~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~03184~^~0300~^~Babyfood, cereal, whole wheat, with apples, dry fortified~^~BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT~^^^~Y~^^0^^^^^ -~03185~^~0300~^~Babyfood, cereal, mixed, dry fortified~^~BABYFOOD,CRL,MXD,DRY FORT~^^^~Y~^^0^^5.90^3.40^8.40^4.10 -~03186~^~0300~^~Babyfood, cereal, mixed, with bananas, dry~^~BABYFOOD,CRL,MXD,W/ BANANAS,DRY~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03187~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, strained~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03188~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03189~^~0300~^~Babyfood, cereal, oatmeal, dry fortified~^~BABYFOOD,CRL,OATMEAL,DRY FORT~^^^~Y~^^0^^5.83^3.46^8.37^4.12 -~03190~^~0300~^~Babyfood, cereal, oatmeal, with bananas, dry~^~BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03191~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, strained~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03192~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03193~^~0300~^~Babyfood, cereal, oatmeal, with honey, dry~^~BABYFOOD,CRL,OATMEAL,W/HONEY,DRY~^^^^^0^^5.83^3.50^8.40^4.10 -~03194~^~0300~^~Babyfood, cereal, rice, dry fortified~^~BABYFOOD,CRL,RICE,DRY FORT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~03195~^~0300~^~Babyfood, cereal, rice, with applesauce and bananas, strained~^~BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03197~^~0300~^~Babyfood, cereal, with egg yolks, strained~^~BABYFOOD,CRL,W/EGG YOLKS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03198~^~0300~^~Babyfood, cereal, with egg yolks, junior~^~BABYFOOD,CRL,W/EGG YOLKS,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03199~^~0300~^~Babyfood, cereal, with eggs, strained~^~BABYFOOD,CRL,W/EGGS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03201~^~0300~^~Babyfood, cereal, egg yolks and bacon, junior~^~BABYFOOD,CRL,EGG YOLKS&BACON,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03205~^~0300~^~Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified~^~BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT~^^^~Y~^^0^^^^^ -~03206~^~0300~^~Babyfood, cookie, baby, fruit~^~BABYFOOD,COOKIE,BABY,FRUIT~^^^~Y~^^0^^^^^ -~03209~^~0300~^~Babyfood, crackers, vegetable~^~BABYFOOD,CRACKERS,VEG~^^^~Y~^^0^^^^^ -~03211~^~0300~^~Babyfood, cereal, high protein, with apple and orange, dry~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY~^^^^^0^^5.85^3.50^8.40^4.00 -~03212~^~0300~^~Babyfood, cereal, rice, with bananas, dry~^~BABYFOOD,CRL,RICE,W/ BANANAS,DRY~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03213~^~0300~^~Babyfood, cookies~^~BABYFOOD,COOKIES~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03214~^~0300~^~Babyfood, cookies, arrowroot~^~BABYFOOD,COOKIES,ARROWROOT~^^^^^0^^5.75^4.00^8.40^4.10 -~03215~^~0300~^~Babyfood, pretzels~^~BABYFOOD,PRETZELS~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03216~^~0300~^~Babyfood, GERBER, GRADUATES Lil Biscuits Vanilla Wheat~^~BABYFOOD,GERBER,GRADUATES LIL BISCUITS VANILLA WHEAT~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03217~^~0300~^~Zwieback~^~ZWIEBACK~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03220~^~0300~^~Babyfood, dessert, dutch apple, strained~^~BABYFOOD,DSSRT,DUTCH APPL,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03221~^~0300~^~Babyfood, dessert, dutch apple, junior~^~BABYFOOD,DSSRT,DUTCH APPL,JR~^^^~Y~^^0^^^^^ -~03222~^~0300~^~Babyfood, cherry cobbler, junior~^~BABYFOOD,CHERRY COBBLER,JR~^^^~Y~^^0^^^^^ -~03224~^~0300~^~Babyfood, dessert, cherry vanilla pudding, strained~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03225~^~0300~^~Babyfood, dessert, cherry vanilla pudding, junior~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03226~^~0300~^~Babyfood, dessert, fruit pudding, orange, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR~^^^^^0^^6.33^4.30^8.90^3.80 -~03227~^~0300~^~Babyfood, dessert, peach cobbler, strained~^~BABYFOOD,DSSRT,PEACH COBBLER,STR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03228~^~0300~^~Babyfood, dessert, peach cobbler, junior~^~BABYFOOD,DSSRT,PEACH COBBLER,JR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03229~^~0300~^~Babyfood, dessert, peach melba, strained~^~BABYFOOD,DSSRT,PEACH MELBA,STR~^^^^^0^^6.25^3.40^8.40^3.60 -~03230~^~0300~^~Babyfood, dessert, peach melba, junior~^~BABYFOOD,DSSRT,PEACH MELBA,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03233~^~0300~^~Babyfood, dessert, fruit pudding, pineapple, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR~^^^~Y~^^0^^6.20^4.30^8.90^3.60 -~03235~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, strained~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03236~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, junior~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03238~^~0300~^~Babyfood, dessert, tropical fruit, junior~^~BABYFOOD,DSSRT,TROPICAL FRUIT,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03245~^~0300~^~Babyfood, dessert, custard pudding, vanilla, strained~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR~^^^~Y~^^0^^6.33^4.30^8.90^3.80 -~03246~^~0300~^~Babyfood, dessert, custard pudding, vanilla, junior~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR~^^^~Y~^^0^^^^^ -~03265~^~0300~^~Babyfood, juice, apple and grape~^~BABYFOOD,JUC,APPL&GRAPE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03267~^~0300~^~Babyfood, juice, fruit punch, with calcium~^~BABYFOOD,JUC,FRUIT PUNCH,W/CA~^^^~Y~^^0^^^^^ -~03269~^~0300~^~Babyfood, juice, apple, with calcium~^~BABYFOOD,JUC,APPL,W/CA~^^^~Y~^^0^^^^^ -~03274~^~0300~^~Babyfood, dinner, vegetables and chicken, junior~^~BABYFOOD,DINNER,VEG&CHICK,JR~^^^~Y~^^0^^^^^ -~03278~^~0300~^~Babyfood, dinner, mixed vegetable, strained~^~BABYFOOD,DINNER,MXD VEG,STR~^^^^^0^^6.07^3.00^8.40^3.80 -~03279~^~0300~^~Babyfood, dinner, mixed vegetable, junior~^~BABYFOOD,DINNER,MXD VEG,JR~^^^~Y~^^0^^6.07^3.00^8.40^3.80 -~03280~^~0300~^~Babyfood, fruit, bananas with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03282~^~0300~^~Babyfood, vegetables, mix vegetables junior~^~BABYFOOD,VEG,MIX VEG JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03283~^~0300~^~Babyfood, vegetables, garden vegetable, strained~^~BABYFOOD,VEG,GARDEN VEG,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03286~^~0300~^~Babyfood, vegetables, mix vegetables strained~^~BABYFOOD,VEG,MIX VEG STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03287~^~0300~^~Babyfood, dinner, beef noodle, junior~^~BABYFOOD,DINNER,BF NOODLE,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03289~^~0300~^~Babyfood, apples with ham, strained~^~BABYFOOD,APPLS W/HAM,STR~^^^~Y~^^0^^^^^ -~03290~^~0300~^~Babyfood, carrots and beef, strained~^~BABYFOOD,CARROTS&BF,STR~^^^~Y~^^0^^^^^ -~03293~^~0300~^~Babyfood, plums, bananas and rice, strained~^~BABYFOOD,PLUMS,BANANAS&RICE,STR~^^^~Y~^^0^^^^^ -~03296~^~0300~^~Babyfood, dinner, turkey, rice, and vegetables, toddler~^~BABYFOOD,TURKEY,RICE&VEG,TODD~^^^~Y~^^0^^^^^ -~03297~^~0300~^~Babyfood, dinner, apples and chicken, strained~^~BABYFOOD,DINNER,APPLS&CHICK,STR~^^^~Y~^^0^^^^^ -~03298~^~0300~^~Babyfood, dinner, broccoli and chicken, junior~^~BABYFOOD,DINNER,BROCCOLI & CHICK,JR~^^^~Y~^^0^^^^^ -~03301~^~0300~^~Babyfood, beverage, GERBER, GRADUATES, FRUIT SPLASHERS~^~BABYFOOD,BEV,GERBER,GRADUATES,FRUIT SPLASHERS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03302~^~0300~^~Babyfood, snack, GERBER, GRADUATES, YOGURT MELTS~^~BABYFOOD,SNACK,GERBER,GRADUATES,YOGURT MELTS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03303~^~0300~^~Babyfood, dinner, sweet potatoes and chicken, strained~^~BABYFOOD,DINNER,SWT POTATOES&CHICK,STR~^^^~Y~^^0^^^^^ -~03376~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil 24, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAM 24,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03381~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Enspire Powder, with ARA and DHA, not reconstituted~^~INF FORM,ME JOHN,ENFA ENSPI PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03382~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature High Protein 24 Calories, ready to feed, with ARA and DHA~^~INF FOR,ME JOH,ENFAMIL PRE HI PRO 24 CAL,RE TO FE,W/ AR & DH~^^~MEAD JOHNSON~^^^0^^^^^ -~03384~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature 30 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENF PREMA 30 CAL,REA TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03385~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, powder, with ARA and DHA, not reconstituted~^~INF FOR,M JOH,ENFA FOR SUPPL,PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03386~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline Powder, with ARA and DHA, not reconstituted~^~INF FORMULA,ME JOH,ENFA REGUPDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03387~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFAM REGU,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03388~^~0300~^~Infant formula, MEAD JOHNSON, Gentlease, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,GENTLEASE,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03389~^~0300~^~Toddler formula, MEAD JOHNSON, Nutramigen Toddler with LGG Powder, with ARA and DHA, not reconstituted~^~TODD FORM,M JOHN,NUTR TODD W/ LGG PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03390~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 20 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEJOHN,PREGESTIM 20 CAL,RE TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03391~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 24 Calories, ready to feed, with ARA and DHA~^~INF FORMUMEAD JOH,PREGESTI 24 CAL,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03392~^~0300~^~Toddler drink, MEAD JOHNSON, PurAmino Toddler Powder, with ARA and DHA, not reconstituted~^~TODDLER DRK,MEAD JOH,PURA TODD PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03393~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFA FO SUPPLEME,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03681~^~0300~^~Babyfood, cereal, barley, prepared with whole milk~^~BABYFOOD,CRL,BARLEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03682~^~0300~^~Babyfood, cereal, high protein, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03685~^~0300~^~Babyfood, cereal, mixed, prepared with whole milk~^~BABYFOOD,CRL,MXD,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03686~^~0300~^~Babyfood, cereal, mixed, with bananas, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03689~^~0300~^~Babyfood, cereal, oatmeal, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03690~^~0300~^~Babyfood, cereal, oatmeal, with bananas, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03693~^~0300~^~Babyfood, cereal, oatmeal, with honey, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03694~^~0300~^~Babyfood, cereal, rice, prepared with whole milk~^~BABYFOOD,CRL,RICE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03696~^~0300~^~Babyfood, cereal, rice, with honey, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03704~^~0300~^~Babyfood, cereal, mixed, with honey, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03711~^~0300~^~Babyfood, cereal, high protein, with apple and orange, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03712~^~0300~^~Babyfood, cereal, rice, with bananas, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03801~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted~^~INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03802~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, powder~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03805~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03808~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFA,W/ IR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03812~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, liquid concentrate, with ARA and DHA, reconstituted~^~INF FORMU,M JOH,ENFA,INFA,W/ IRON,LIQ CO,W/ ARA & DHA,RECON~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03815~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA~^~INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03818~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA~^~INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03821~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, with ARA and DHA, not reconstituted~^~INF FORMU,ME JOHN,PREGESTI,W/ IRON,PDR,W/ ARA & DHA,N RE~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03822~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, with ARA and DHA, prepared from powder~^~INF FORMU,MEAD JOH,PREGES,W/ IRON,W/ ARA & DHA,PREP FR PD~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03823~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF~^^^~Y~^^0^^^^^ -~03825~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA~^~INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03832~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFANT,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03837~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03838~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN WITH LGG, with iron, powder, not reconstituted, with ARA and DHA~^~IN FOR,ME JOH,ENF,NUTRA W/ LGG,W/ IR,PDR,NOT R,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03841~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03842~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03843~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted~^~INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03844~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate not reconstituted, with ARA and DHA~^~INF FOR,ME JOH,ENFA,NUTR,W/ IRON,LIQ CO NOT REC,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03845~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed, with ARA and DHA~^~INF FORMU,ME JOHNS,ENFA,NUTRAMI,W/ IRON,RTF,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03846~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03849~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE, with iron, powder, with ARA and DHA~^~INF FORMU,MEA JOHNS,ENFAMIL,ENFACA,W/ IRON,PDR,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03851~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted~^~INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03852~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHN,ENFA,PROSO,W/ IRON,PDR,NOT RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03853~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03854~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, liquid concentrate, reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHNSOFAMIL,PROS,LIQ CONC,RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03857~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNS,PROSO,W/ IR,RE TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03859~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03860~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed~^~CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03861~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA~^~INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03864~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA~^~INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03867~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder~^~INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03870~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber~^~CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03928~^~0300~^~Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder~^~INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03929~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted~^~INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^5.71^^^ -~03930~^~0300~^~Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder~^~INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR~^^~MEAD JOHNSON~^^^0^^^^^ -~03934~^~0300~^~Babyfood, corn and sweet potatoes, strained~^~BABYFOOD,CORN & SWT POTATOES,STR~^^^~Y~^^0^^^^^ -~03935~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA~^~INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03936~^~0300~^~Infant formula, PBM PRODUCTS, store brand, ready-to-feed~^~INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03937~^~0300~^~Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted~^~INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03938~^~0300~^~Infant formula, PBM PRODUCTS, store brand, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR~^^~PBM~^~Y~^^0^^^^^ -~03939~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF~^^~PBM~^~Y~^^0^^^^^ -~03940~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted~^~INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON~^^~PBM~^~Y~^^0^^^^^ -~03941~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR~^^~PBM~^~Y~^^0^^^^^ -~03942~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03943~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03944~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA~^~INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03945~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA~^~INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03946~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03947~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA~^~INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03948~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA~^~INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03949~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03950~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted~^~INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03951~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted~^~INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03952~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate~^~INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03953~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03954~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted~^~INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03955~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03956~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified~^~BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT~^^^~Y~^^0^^^^^ -~03957~^~0300~^~Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA~^~INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03959~^~0300~^~Babyfood, mashed cheddar potatoes and broccoli, toddlers~^~BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER~^^^~Y~^^0^^^^^ -~03960~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03961~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate~^~INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC~^^~Nestle USA, Inc.~^^^0^^^^^ -~03963~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE, with iron, prepared from powder~^~INF FORM,MEAD JOHNSON,ENFA GENTL,W/ IRON,PREP FROM PDR~^^~MEAD JOHNSON~^~Y~^^0^^1.36^^^ -~03964~^~0300~^~Babyfood, fortified cereal bar, fruit filling~^~BABYFOOD,FORT CRL BAR,FRUIT FILLING~^^^~Y~^^0^^^^^ -~03965~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified~^~BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT~^^^~Y~^^0^^^^^ -~03966~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03967~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW, Toddler Transitions, with ARA and DHA, powder~^~TODD FOR,MEJOHN,ENFAGR,TODD TRANSITI,W/ ARA & DHA,PDR~^^^~Y~^^0^^6.25^^^ -~03968~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed~^~TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF~^^^~Y~^^0^^^^^ -~03980~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, with ARA and DHA powder not reconstituted~^~INF FORM,ME JOHN,ENF,GEN,W/ ARA & DHA PDR NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03982~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed~^~INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF~^^^~Y~^^0^^6.25^^^ -~03983~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03984~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 20 calories, ready-to-feed~^~INF FORMULA,ME JOHNSON,ENFAMIL,PREMATU,W/ IR,20 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03985~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 24 calories, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,W/ IR,24 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03986~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with DHA and ARA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ DHA & ARA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03987~^~0300~^~Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03988~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed~^~INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03989~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03990~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03991~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03992~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA~^~INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03993~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03994~^~0300~^~Babyfood, fruit, banana and strawberry, junior~^~BABYFD,FRU,BAN AND STRAW, JU~^^^~Y~^^0^^^^^ -~03995~^~0300~^~Babyfood, banana with mixed berries, strained~^~BABYFOO,BAN WI MIX BERR,ST~^^^~Y~^^0^^6.25^^^ -~03996~^~0300~^~Babyfood, Multigrain whole grain cereal, dry fortified~^~Babyfood, Multigrain whole grain cereal, dry fortified~^^^~Y~^^0^^^^^ -~03997~^~0300~^~Babyfood, Baby MUM MUM Rice Biscuits~^~BABYFOOD,BABY MUM MUM RICE BISCUITS~^^^~Y~^^0^^^^^ -~03998~^~0300~^~Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack~^~BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK~^^~GERBER~^~Y~^^0^^6.25^^^ -~03999~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA~^~INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~04001~^~0400~^~Fat, beef tallow~^~FAT,BEEF TALLOW~^^^~Y~^^0^^0.00^^9.02^ -~04002~^~0400~^~Lard~^~LARD~^^^~Y~^^0^^0.00^^9.02^ -~04011~^~0400~^~Salad dressing, KRAFT Mayo Light Mayonnaise~^~SALAD DRSNG,KRAFT MAYO LT MAYO~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04013~^~0400~^~Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing~^~SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~04014~^~0400~^~Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing~^~SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04015~^~0400~^~Salad dressing, russian dressing~^~SALAD DRSNG,RUSSIAN DRSNG~^^^~Y~^^0^^6.25^3.40^8.84^3.80 -~04016~^~0400~^~Salad dressing, sesame seed dressing, regular~^~SALAD DRSNG,SESAME SD DRSNG,REG~^^^~Y~^^0^^6.25^4.03^8.84^3.80 -~04017~^~0400~^~Salad dressing, thousand island, commercial, regular~^~SALAD DRSNG,1000 ISLAND,COMM,REG~^^^~Y~^^0^^^^^ -~04018~^~0400~^~Salad dressing, mayonnaise type, regular, with salt~^~SALAD DRSNG,MAYO TYPE,REG,W/SALT~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04020~^~0400~^~Salad dressing, french dressing, reduced fat~^~SALAD DRSNG,FRENCH DRSNG,RED FAT~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04021~^~0400~^~Salad dressing, italian dressing, commercial, reduced fat~^~SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT~^^^~Y~^^0^^^^^ -~04022~^~0400~^~Salad dressing, russian dressing, low calorie~^~SALAD DRSNG,RUSSIAN DRSNG,LO CAL~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04023~^~0400~^~Salad dressing, thousand island dressing, reduced fat~^~SALAD DRSNG,1000 ISLAND DRSNG,RED FAT~^^^~Y~^^0^^6.25^3.90^8.84^3.80 -~04025~^~0400~^~Salad dressing, mayonnaise, regular~^~SALAD DRSNG,MAYO,REG~^^^~Y~^^0^^^^^ -~04026~^~0400~^~Salad dressing, mayonnaise, soybean and safflower oil, with salt~^~SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04027~^~0400~^~Salad dressing, mayonnaise, imitation, soybean~^~SALAD DRSNG,MAYO,IMITN,SOYBN~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04028~^~0400~^~Salad dressing, mayonnaise, imitation, milk cream~^~SALAD DRSNG,MAYO,IMITN,MILK CRM~^^^^^0^^6.25^4.36^8.84^3.80 -~04029~^~0400~^~Salad dressing, mayonnaise, imitation, soybean without cholesterol~^~SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04030~^~0400~^~Sandwich spread, with chopped pickle, regular, unspecified oils~^~SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS~^^^~Y~^^0^^6.25^3.92^8.84^3.80 -~04031~^~0400~^~Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)~^~SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED~^^^~Y~^^0^^0.00^^8.84^ -~04034~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated)~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)~^^^~Y~^^0^^0.00^^8.84^ -~04037~^~0400~^~Oil, rice bran~^~OIL,RICE BRAN~^^^^^0^^0.00^^8.84^ -~04038~^~0400~^~Oil, wheat germ~^~OIL,WHEAT GERM~^^^~Y~^^0^^0.00^^8.84^ -~04042~^~0400~^~Oil, peanut, salad or cooking~^~OIL,PNUT,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04044~^~0400~^~Oil, soybean, salad or cooking~^~OIL,SOYBN,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04047~^~0400~^~Oil, coconut~^~OIL,COCNT~^^^~Y~^^0^^^^^ -~04053~^~0400~^~Oil, olive, salad or cooking~^~OIL,OLIVE,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04055~^~0400~^~Oil, palm~^~OIL,PALM~^^^^^0^^0.00^^8.84^ -~04058~^~0400~^~Oil, sesame, salad or cooking~^~OIL,SESAME,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04060~^~0400~^~Oil, sunflower, linoleic (less than 60%)~^~OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)~^^^^^0^^0.00^^8.84^ -~04073~^~0400~^~Margarine, regular, hard, soybean (hydrogenated)~^~MARGARINE,REG,HARD,SOYBN (HYDR)~^^^^^0^^6.38^4.27^8.84^3.87 -~04114~^~0400~^~Salad dressing, italian dressing, commercial, regular~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04120~^~0400~^~Salad dressing, french dressing, commercial, regular~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04128~^~0400~^~Margarine,spread, 35-39% fat, tub~^~MARGARINE,SPRD,35-39% FAT,TUB~^^^~Y~^^0^^^^^ -~04133~^~0400~^~Salad dressing, french, home recipe~^~SALAD DRSNG,FRENCH,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04135~^~0400~^~Salad dressing, home recipe, vinegar and oil~^~SALAD DRSNG,HOME RECIPE,VINEGAR&OIL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04141~^~0400~^~Salad dressing, french dressing, commercial, regular, without salt~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04142~^~0400~^~Salad dressing, french dressing, reduced fat, without salt~^~SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04143~^~0400~^~Salad dressing, italian dressing, commercial, regular, without salt~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04144~^~0400~^~Salad dressing, italian dressing, reduced fat, without salt~^~SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04145~^~0400~^~Salad dressing, mayonnaise, soybean oil, without salt~^~SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04146~^~0400~^~Salad dressing, french, cottonseed, oil, home recipe~^~SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04367~^~0400~^~Salad dressing, french dressing, fat-free~^~SALAD DRSNG,FRENCH DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04501~^~0400~^~Oil, cocoa butter~^~OIL,COCOA BUTTER~^^^^^0^^0.00^^8.84^ -~04502~^~0400~^~Oil, cottonseed, salad or cooking~^~OIL,CTTNSD,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04506~^~0400~^~Oil, sunflower, linoleic, (approx. 65%)~^~OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)~^^^~Y~^^0^^0.00^^8.84^ -~04510~^~0400~^~Oil, safflower, salad or cooking, linoleic, (over 70%)~^~OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)~^^^^^0^^0.00^^8.84^ -~04511~^~0400~^~Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)~^~OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC~^^^~Y~^^0^^0.00^^8.84^ -~04513~^~0400~^~Vegetable oil, palm kernel~^~VEGETABLE OIL,PALM KERNEL~^^^~Y~^^0^^0.00^^8.62^ -~04514~^~0400~^~Oil, poppyseed~^~OIL,POPPYSEED~^^^^^0^^0.00^^8.84^ -~04515~^~0400~^~Oil, tomatoseed~^~OIL,TOMATOSEED~^^^^^0^^0.00^^8.84^ -~04516~^~0400~^~Oil, teaseed~^~OIL,TEASEED~^^^^^0^^0.00^^8.84^ -~04517~^~0400~^~Oil, grapeseed~^~OIL,GRAPESEED~^^^^^0^^0.00^^8.84^ -~04518~^~0400~^~Oil, corn, industrial and retail, all purpose salad or cooking~^~OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING~^^^~Y~^^0^^^^^ -~04528~^~0400~^~Oil, walnut~^~OIL,WALNUT~^^^~Y~^^0^^0.00^^8.84^ -~04529~^~0400~^~Oil, almond~^~OIL,ALMOND~^^^~Y~^^0^^0.00^^8.84^ -~04530~^~0400~^~Oil, apricot kernel~^~OIL,APRICOT KERNEL~^^^^^0^^0.00^^8.84^ -~04531~^~0400~^~Oil, soybean lecithin~^~OIL,SOYBN LECITHIN~^^^^^0^^0.00^^7.63^ -~04532~^~0400~^~Oil, hazelnut~^~OIL,HAZELNUT~^^^^^0^^0.00^^8.84^ -~04534~^~0400~^~Oil, babassu~^~OIL,BABASSU~^^^^^0^^0.00^^8.82^ -~04536~^~0400~^~Oil, sheanut~^~OIL,SHEANUT~^^^^^0^^0.00^^8.62^ -~04539~^~0400~^~Salad dressing, blue or roquefort cheese dressing, commercial, regular~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04541~^~0400~^~Oil, cupu assu~^~OIL,CUPU ASSU~^^^^^0^^0.00^^8.62^ -~04542~^~0400~^~Fat, chicken~^~FAT,CHICKEN~^^^~Y~^^0^^0.00^^9.02^ -~04543~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04544~^~0400~^~Shortening, household, lard and vegetable oil~^~SHORTENING,HOUSEHOLD,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04545~^~0400~^~Oil, sunflower, linoleic, (partially hydrogenated)~^~OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)~^^^^^0^^0.00^^8.84^ -~04546~^~0400~^~Shortening bread, soybean (hydrogenated) and cottonseed~^~SHORTENING BREAD,SOYBN (HYDR)&CTTNSD~^^^^^0^^0.00^^8.84^ -~04548~^~0400~^~Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)~^~SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)~^^^^^0^^0.00^^8.82^ -~04549~^~0400~^~Shortening industrial, lard and vegetable oil~^~SHORTENING INDUSTRIAL,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04550~^~0400~^~Shortening frying (heavy duty), beef tallow and cottonseed~^~SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD~^^^^^0^^0.00^^9.02^ -~04551~^~0400~^~Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)~^~SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)~^^^^^0^^0.00^^8.84^ -~04554~^~0400~^~Shortening industrial, soybean (hydrogenated) and cottonseed~^~SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04556~^~0400~^~Shortening frying (heavy duty), palm (hydrogenated)~^~SHORTENING FRYING (HVY DUTY),PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04559~^~0400~^~Shortening household soybean (hydrogenated) and palm~^~SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM~^^^^^0^^0.00^^8.84^ -~04560~^~0400~^~Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)~^~SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%~^^^^^0^^0.00^^8.84^ -~04570~^~0400~^~Shortening, confectionery, fractionated palm~^~SHORTENING,CONFECTIONERY,FRACTIONATED PALM~^^^^^0^^0.00^^8.62^ -~04572~^~0400~^~Oil, nutmeg butter~^~OIL,NUTMEG BUTTER~^^^^^0^^0.00^^8.62^ -~04573~^~0400~^~Oil, ucuhuba butter~^~OIL,UCUHUBA BUTTER~^^^^^0^^0.00^^8.84^ -~04575~^~0400~^~Fat, turkey~^~FAT,TURKEY~^^^~Y~^^0^^0.00^^8.84^ -~04576~^~0400~^~Fat, goose~^~FAT,GOOSE~^^^^^0^^0.00^^8.84^ -~04581~^~0400~^~Oil, avocado~^~OIL,AVOCADO~^^^^^0^^0.00^^8.84^ -~04582~^~0400~^~Oil, canola~^~OIL,CANOLA~^~low erucic acid rapeseed oil~^^~Y~^^0^^0.00^^8.84^ -~04583~^~0400~^~Oil, mustard~^~OIL,MUSTARD~^^^^^0^^0.00^^8.84^ -~04584~^~0400~^~Oil, sunflower, high oleic (70% and over)~^~OIL,SUNFLOWER,HI OLEIC (70% & OVER)~^^^^^0^^0.00^^8.84^ -~04585~^~0400~^~Margarine-like, margarine-butter blend, soybean oil and butter~^~MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER~^^^~Y~^^0^^6.25^^^ -~04586~^~0400~^~Shortening, special purpose for cakes and frostings, soybean (hydrogenated)~^~SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)~^^^^^0^^0.00^^8.84^ -~04587~^~0400~^~Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed~^~SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD~^^^^^0^^0.00^^8.84^ -~04588~^~0400~^~Oil, oat~^~OIL,OAT~^^^^^0^^0.00^^8.84^ -~04589~^~0400~^~Fish oil, cod liver~^~FISH OIL,COD LIVER~^^^^^0^^0.00^^9.02^ -~04590~^~0400~^~Fish oil, herring~^~FISH OIL,HERRING~^^^^^0^^0.00^^9.02^ -~04591~^~0400~^~Fish oil, menhaden~^~FISH OIL,MENHADEN~^^^^^0^^0.00^^9.02^ -~04592~^~0400~^~Fish oil, menhaden, fully hydrogenated~^~FISH OIL,MENHADEN,FULLY HYDR~^^^^^0^^0.00^^9.02^ -~04593~^~0400~^~Fish oil, salmon~^~FISH OIL,SALMON~^^^^^0^^0.00^^9.02^ -~04594~^~0400~^~Fish oil, sardine~^~FISH OIL,SARDINE~^^^^^0^^0.00^^9.02^ -~04595~^~0400~^~Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)~^~SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04600~^~0400~^~Margarine-like, vegetable oil-butter spread, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04601~^~0400~^~Butter, light, stick, with salt~^~BUTTER,LT,STK,W/SALT~^^^~Y~^^0^^^^^ -~04602~^~0400~^~Butter, light, stick, without salt~^~BUTTER,LT,STK,WO/SALT~^^^~Y~^^0^^^^^ -~04609~^~0400~^~Animal fat, bacon grease~^~ANIMAL FAT,BACON GREASE~^^^~Y~^^0^^^^^ -~04610~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04611~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT~^^^~Y~^^0^^6.25^4.27^8.84^3.87 -~04612~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04613~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04614~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04615~^~0400~^~Shortening, vegetable, household, composite~^~SHORTENING,VEG,HOUSEHOLD,COMP~^^^~Y~^^0^^6.25^^8.84^ -~04617~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT~^^^~Y~^^0^^^^^ -~04618~^~0400~^~Margarine, regular, 80% fat, composite, tub, without salt~^~MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT~^^^~Y~^^0^^^^^ -~04620~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04624~^~0400~^~Margarine-like, vegetable oil spread, fat free, liquid, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04626~^~0400~^~Margarine-like spread with yogurt, 70% fat, stick, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT~^^^~Y~^^0^^^^^ -~04627~^~0400~^~Margarine-like spread with yogurt, approximately 40% fat, tub, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04628~^~0400~^~Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils~^~MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS~^^^^^0^^^4.27^8.84^3.87 -~04629~^~0400~^~Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick~^~MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK~^^^^^0^^6.38^4.27^8.84^3.87 -~04630~^~0400~^~Margarine Spread, 40-49% fat, tub~^~Margarine 40-49% fat~^^^^^0^^^^^ -~04631~^~0400~^~Margarine-like, vegetable oil spread, fat-free, tub~^~MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB~^^^~Y~^^0^^^4.27^8.84^3.87 -~04633~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT~^^^~Y~^^0^^0.00^^9.02^ -~04634~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, without salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT~^^^~Y~^^0^^^^^ -~04635~^~0400~^~Salad dressing, thousand island dressing, fat-free~^~SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04636~^~0400~^~Salad dressing, italian dressing, fat-free~^~SALAD DRSNG,ITALIAN DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04638~^~0400~^~Salad dressing, ranch dressing, fat-free~^~SALAD DRSNG,RANCH DRSNG,FAT-FREE~^^^^^0^^^4.36^8.84^3.80 -~04639~^~0400~^~Salad dressing, ranch dressing, regular~^~SALAD DRSNG,RANCH DRSNG,REG~^^^~Y~^^0^^^^^ -~04640~^~0400~^~Salad dressing, ranch dressing, reduced fat~^~SALAD DRSNG,RANCH DRSNG,RED FAT~^^^^^0^^^4.36^8.84^3.80 -~04641~^~0400~^~Salad dressing, mayonnaise, light~^~SALAD DRSNG,MAYO,LT~^~lite mayonnaise~^^~Y~^^0^^^^^ -~04642~^~0400~^~Oil, industrial, mid-oleic, sunflower~^~OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER~^~NuSun~^^^^0^^^^8.84^ -~04643~^~0400~^~Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT~^^^^^0^^^^8.84^ -~04644~^~0400~^~Oil, industrial, canola for salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING~^^^^^0^^^^^ -~04645~^~0400~^~Oil, industrial, canola (partially hydrogenated) oil for deep fat frying~^~OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING~^^^^^0^^^^^ -~04646~^~0400~^~Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts~^~OIL,INDUSTRIAL,COCNT~^^^^^0^^^^8.84^ -~04648~^~0400~^~Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG~^^^^^0^^^^8.84^ -~04649~^~0400~^~Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening~^~SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY~^^^^^0^^^^8.84^ -~04650~^~0400~^~Oil, industrial, soy, refined, for woks and light frying~^~OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING~^^^^^0^^^^8.84^ -~04651~^~0400~^~Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR~^^^~Y~^^0^^^^8.84^ -~04652~^~0400~^~Oil, industrial, soy ( partially hydrogenated), all purpose~^~OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP~^^^~Y~^^0^^6.25^^8.84^ -~04653~^~0400~^~Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry~^~OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY~^^^^^0^^6.25^^8.84^ -~04654~^~0400~^~Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening~^~OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING~^^^~Y~^^0^^6.25^^8.84^ -~04655~^~0400~^~Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries~^~MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY~^^^^^0^^6.25^^8.84^ -~04656~^~0400~^~Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter~^~OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04657~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04658~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04659~^~0400~^~Oil, industrial, coconut, confection fat, typical basis for ice cream coatings~^~OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS~^^^~Y~^^0^^6.25^^8.84^ -~04660~^~0400~^~Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS~^^^^^0^^6.25^^8.84^ -~04661~^~0400~^~Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners~^~OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS~^^^^^0^^6.25^^8.84^ -~04662~^~0400~^~Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)~^~OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)~^^^^^0^^6.25^^8.84^ -~04663~^~0400~^~Oil, industrial, palm kernel (hydrogenated), filling fat~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT~^^^^^0^^6.25^^8.84^ -~04664~^~0400~^~Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings~^~OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS~^^^^^0^^6.25^^8.84^ -~04665~^~0400~^~Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries~^~MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )~^^^^^0^^^^^ -~04666~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) and corn for frying~^~SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING~^^^~Y~^^0^^0.00^^8.84^ -~04667~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) for baking and confections~^~SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS~^^^^^0^^0.00^^8.84^ -~04668~^~0400~^~Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy~^~MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY~^^^^^0^^6.38^^^ -~04669~^~0400~^~Oil, vegetable, soybean, refined~^~OIL,VEG,SOYBN,REFINED~^^^^^0^^0.00^^8.84^ -~04673~^~0400~^~Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil~^~MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD~^^~GFA Brands~^^^0^^^^^ -~04674~^~0400~^~Margarine-like spread, SMART BALANCE Light Buttery Spread~^~MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04675~^~0400~^~Margarine-like spread, SMART BEAT Super Light without saturated fat~^~MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT~^^~GFA Brands~^^^0^^6.38^^^ -~04676~^~0400~^~Margarine-like spread, SMART BEAT Smart Squeeze~^~MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE~^^~GFA Brands~^^^0^^6.38^^^ -~04677~^~0400~^~Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)~^~MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04678~^~0400~^~Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)~^~OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)~^~trans free high stability low saturated fat non-hydrogenated canola oil~^~Dow AgroSciences, LLC~^^^0^^^^8.84^ -~04679~^~0400~^~Oil, PAM cooking spray, original~^~OIL,PAM COOKING SPRAY,ORIGINAL~^^~ConAgra, Inc.~^~Y~^^0^^6.25^^^ -~04683~^~0400~^~Margarine, margarine-like vegetable oil spread, 67-70% fat, tub~^~MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB~^^^^^0^^^4.27^8.84^3.87 -~04684~^~0400~^~Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)~^~MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD~^^~richardson~^^^0^^^^^ -~04685~^~0400~^~Oil, cooking and salad, ENOVA, 80% diglycerides~^~OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES~^^~ADM KAO LLC~^^^0^^^^8.84^ -~04686~^~0400~^~Salad dressing, honey mustard dressing, reduced calorie~^~SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL~^^^~Y~^^0^^6.25^^^ -~04687~^~0400~^~Margarine-like spread, BENECOL Light Spread~^~MARGARINE-LIKE SPRD,BENECOL LT SPRD~^^~McNeil Nutritionals, LLC~^^^0^^^^^ -~04688~^~0400~^~Salad dressing, spray-style dressing, assorted flavors~^~SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS~^^^^^0^^^^^ -~04689~^~0400~^~Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light~^~SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT~^^~Smart Balance Foods~^^^0^^^^^ -~04690~^~0400~^~Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D~^~VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^4.27^8.84^3.80 -~04691~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04692~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04693~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.80 -~04694~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.84 -~04695~^~0400~^~Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D~^~VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^^^ -~04696~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04697~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D~^^^~Y~^^0^^6.25^^^ -~04698~^~0400~^~Oil, industrial, canola, high oleic~^~OIL,INDUSTRIAL,CANOLA,HI OLEIC~^^^^^0^^6.25^^^ -~04699~^~0400~^~Oil, industrial, soy, low linolenic~^~OIL,INDUSTRIAL,SOY,LO LINOLENIC~^^^^^0^^^^^ -~04700~^~0400~^~Oil, industrial, soy, ultra low linolenic~^~OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC~^^^^^0^^^^8.84^ -~04701~^~0400~^~Oil, industrial, soy, fully hydrogenated~^~OIL,INDUSTRIAL,SOY,FULLY HYDR~^^^^^0^^^^8.84^ -~04702~^~0400~^~Oil, industrial, cottonseed, fully hydrogenated~^~OIL,INDUSTRIAL,CTTNSD,FULLY HYDR~^^^^^0^^^^8.84^ -~04703~^~0400~^~Salad dressing, honey mustard, regular~^~SALAD DRSNG,HONEY MUSTARD,REG~^^^~Y~^^0^^^^^ -~04704~^~0400~^~Salad dressing, poppyseed, creamy~^~SALAD DRSNG,POPPYSEED,CREAMY~^^^~Y~^^0^^^^^ -~04705~^~0400~^~Salad dressing, caesar, fat-free~^~SALAD DRSNG,CAESAR,FAT-FREE~^^^~Y~^^0^^^^^ -~04706~^~0400~^~Dressing, honey mustard, fat-free~^~DRESSING,HONEY MUSTARD,FAT-FREE~^^^~Y~^^0^^^^^ -~04707~^~0400~^~Oil, flaxseed, contains added sliced flaxseed~^~OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED~^^^^^0^^5.30^^8.84^ -~04708~^~0400~^~Mayonnaise, reduced fat, with olive oil~^~MAYONNAISE,RED FAT,W/ OLIVE OIL~^^^~Y~^^0^^6.25^^^ -~04709~^~0400~^~Salad dressing, mayonnaise-type, light~^~SALAD DRSNG,MAYONNAISE-TYPE,LT~^^^~Y~^^0^^6.25^^^ -~05000~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat only~^~CHICK,BROILER,ROTISSERIE,BBQ,BREAST,MEAT ONLY~^^^~Y~^~Bone and connective tissue 11%, skin and separable fat 11%~^22^^^^^ -~05001~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^31^~Gallus gallus~^6.25^4.27^9.02^3.87 -~05002~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter~^~CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05003~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05004~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~05005~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05006~^~0500~^~Chicken, broilers or fryers, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05007~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~05008~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~05009~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^33^^6.25^4.27^9.02^3.87 -~05010~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05011~^~0500~^~Chicken, broilers or fryers, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW~^^^~Y~^~32% bone, 12% skin, 8% separable fat~^52^^6.25^4.27^9.02^3.87 -~05012~^~0500~^~Chicken, broilers or fryers, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05013~^~0500~^~Chicken, broilers or fryers, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,RSTD~^^^~Y~^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05014~^~0500~^~Chicken, broilers or fryers, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,STWD~^^^~Y~^~34% bone, 14% skin~^48^^6.25^4.27^9.02^3.87 -~05015~^~0500~^~Chicken, broilers or fryers, skin only, raw~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05016~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER~^^^^^0^^6.25^4.27^9.02^3.87 -~05017~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR~^^^^^0^^6.25^4.27^9.02^3.87 -~05018~^~0500~^~Chicken, broilers or fryers, skin only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05019~^~0500~^~Chicken, broilers or fryers, skin only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD~^^^^^0^^6.25^4.27^9.02^3.87 -~05020~^~0500~^~Chicken, broilers or fryers, giblets, raw~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05021~^~0500~^~Chicken, broilers or fryers, giblets, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05022~^~0500~^~Chicken, broilers or fryers, giblets, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05023~^~0500~^~Chicken, gizzard, all classes, raw~^~CHICKEN,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05024~^~0500~^~Chicken, gizzard, all classes, cooked, simmered~^~CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD~^^^~Y~^~Membranes 10.7%~^11^^6.25^4.27^9.02^3.87 -~05025~^~0500~^~Chicken, heart, all classes, raw~^~CHICKEN,HEART,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05026~^~0500~^~Chicken, heart, all classes, cooked, simmered~^~CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05027~^~0500~^~Chicken, liver, all classes, raw~^~CHICKEN,LIVER,ALL CLASSES,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05028~^~0500~^~Chicken, liver, all classes, cooked, simmered~^~CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05029~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05030~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05031~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05032~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05033~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05034~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~05035~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05036~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05037~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05038~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05039~^~0500~^~Chicken, broilers or fryers, light meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW~^^^^~28% bone, 13% skin, 4% separable fat~^45^^6.25^4.27^9.02^3.87 -~05040~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 13% skin~^41^^6.25^4.27^9.02^3.87 -~05041~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05042~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~29% bone, 15% skin~^44^^6.25^4.27^9.02^3.87 -~05043~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW~^^^^~35% bone, 11% skin, 10% separable fat~^56^^6.25^4.27^9.02^3.87 -~05044~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED~^^^^~30% bone, 12% skin~^42^^6.25^4.27^9.02^3.87 -~05045~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05046~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~38% bone, 14% skin~^52^^6.25^4.27^9.02^3.87 -~05047~^~0500~^~Chicken, broilers or fryers, separable fat, raw~^~CHICKEN,BROILERS OR FRYERS,FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05048~^~0500~^~Chicken, broilers or fryers, back, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW~^^^^~Bone~^44^^6.25^4.27^9.02^3.87 -~05049~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05050~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05051~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^47^^6.25^4.27^9.02^3.87 -~05052~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05053~^~0500~^~Chicken, broilers or fryers, back, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW~^^^^~44% bone, 10% skin, 17% seprable fat~^71^^6.25^4.27^9.02^3.87 -~05054~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED~^^^^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05055~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD~^^^^~47% bone, 13% skin~^60^^6.25^4.27^9.02^3.87 -~05056~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD~^^^^~48% bone, 16% skin~^64^^6.25^4.27^9.02^3.87 -~05057~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW~^^^~Y~^~Bone~^20^^6.25^4.27^9.02^3.87 -~05058~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^12^^6.25^4.27^9.02^3.87 -~05059~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05060~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05061~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^18^^6.25^4.27^9.02^3.87 -~05062~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw~^~CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05063~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED~^^^~Y~^~17% bone, 10% skin~^27^^6.25^4.27^9.02^3.87 -~05064~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~19% bone, 9% skin~^28^^6.25^4.27^9.02^3.87 -~05065~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD~^^^~Y~^~18% bone, 12% skin~^30^^6.25^4.27^9.02^3.87 -~05066~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 33%~^66^^6.25^4.27^9.02^3.87 -~05067~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~05068~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~05069~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 28%~^61^^6.25^4.27^9.02^3.87 -~05070~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~05071~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW~^^^~Y~^~bone and cartilage 33%, skin and separable fat 9%~^42^^6.25^4.27^9.02^3.87 -~05072~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED~^^^^~34% bone, 10% skin~^44^^6.25^4.27^9.02^3.87 -~05073~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST~^^^~Y~^~Bone and cartilage 33%, Skin and separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~05074~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05075~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~05076~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~05077~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05078~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone 29%~^29^^6.25^4.27^9.02^3.87 -~05079~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~05080~^~0500~^~Chicken, broilers or fryers, leg, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW~^^^~Y~^~27% bone, 11% skin, 5% separable fat~^43^^6.25^4.27^9.02^3.87 -~05081~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 12% skin~^40^^6.25^4.27^9.02^3.87 -~05082~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone 29%, skin 12%~^41^^6.25^4.27^9.02^3.87 -~05083~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD~^^^~Y~^~30% bone, 13% skin~^43^^6.25^4.27^9.02^3.87 -~05084~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05085~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~05086~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05087~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05088~^~0500~^~Chicken, broilers or fryers, neck, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW~^^^^~36% bone, 39% skin and separable fat~^75^^6.25^4.27^9.02^3.87 -~05089~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED~^^^^~29% bone, 27% skin~^56^^6.25^4.27^9.02^3.87 -~05090~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD~^^^^~32% bone, 35% skin~^67^^6.25^4.27^9.02^3.87 -~05091~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05092~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~05093~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05094~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^6.25^4.27^9.02^3.87 -~05095~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~05096~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW~^^^~Y~^~ Skin and separable fat 25%~^25^^6.25^4.27^9.02^3.87 -~05097~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED~^^^^~23% bone, 13% skin~^36^^6.25^4.27^9.02^3.87 -~05098~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, skin and separable fat 15%~^48^^6.25^4.27^9.02^3.87 -~05099~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD~^^^~Y~^~24% bone, 15% skin~^39^^6.25^4.27^9.02^3.87 -~05100~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05101~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05102~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^47^^6.25^4.27^9.02^3.87 -~05103~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 40%~^40^^6.25^4.27^9.02^3.87 -~05104~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05105~^~0500~^~Chicken, broilers or fryers, wing, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW~^^^~Y~^~46% bone, 21% skin, 1% separable fat~^68^^6.25^4.27^9.02^3.87 -~05106~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED~^^^^~47% bone, 19% skin~^66^^6.25^4.27^9.02^3.87 -~05107~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05108~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05109~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, raw~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05110~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05111~^~0500~^~Canada Goose, breast meat only, skinless, raw~^~CANADA GOOSE,BREAST MEAT ONLY,SKINLESS,RAW~^~Canadian geese~^^^^0^~Branta canadensis~^^^^ -~05112~^~0500~^~Chicken, roasting, meat and skin, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05113~^~0500~^~Chicken, roasting, meat only, raw~^~CHICKEN,ROASTING,MEAT ONLY,RAW~^^^^~28% bone, 14% skin, 7% separable fat~^49^^6.25^4.27^9.02^3.87 -~05114~^~0500~^~Chicken, roasting, meat only, cooked, roasted~^~CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD~^^^^~30% bone, 12% skin, 1% separable fat~^43^^6.25^4.27^9.02^3.87 -~05115~^~0500~^~Chicken, roasting, giblets, raw~^~CHICKEN,ROASTING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05116~^~0500~^~Chicken, roasting, giblets, cooked, simmered~^~CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05117~^~0500~^~Chicken, roasting, light meat, meat only, raw~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 13% skin, 4% separable fat~^43^^6.25^4.27^9.02^3.87 -~05118~^~0500~^~Chicken, roasting, light meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~24% bone, 16% skin~^40^^6.25^4.27^9.02^3.87 -~05119~^~0500~^~Chicken, roasting, dark meat, meat only, raw~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW~^^^^~30% bone, 14% skin, 9% separable fat~^53^^6.25^4.27^9.02^3.87 -~05120~^~0500~^~Chicken, roasting, dark meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD~^^^^~35% bone, 10% skin, 1% separable fat~^46^^6.25^4.27^9.02^3.87 -~05121~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, raw~^~CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW~^^^^~27% bone, 5% separable fat~^32^^6.25^4.27^9.02^3.87 -~05122~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed~^~CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD~^^^~Y~^~29% bone, 2% separable fat~^31^^6.25^4.27^9.02^3.87 -~05123~^~0500~^~Chicken, stewing, meat and skin, raw~^~CHICKEN,STEWING,MEAT&SKN,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05124~^~0500~^~Chicken, stewing, meat and skin, cooked, stewed~^~CHICKEN,STEWING,MEAT&SKN,CKD,STWD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~05125~^~0500~^~Chicken, stewing, meat only, raw~^~CHICKEN,STEWING,MEAT ONLY,RAW~^^^^~Bone 30%, skin 12%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~05126~^~0500~^~Chicken, stewing, meat only, cooked, stewed~^~CHICKEN,STEWING,MEAT ONLY,CKD,STWD~^^^^~Bone, 32%, skin, 16%~^48^^6.25^4.27^9.02^3.87 -~05127~^~0500~^~Chicken, stewing, giblets, raw~^~CHICKEN,STEWING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05128~^~0500~^~Chicken, stewing, giblets, cooked, simmered~^~CHICKEN,STEWING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05129~^~0500~^~Chicken, stewing, light meat, meat only, raw~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 14% skin, 4% separable fat~^44^^6.25^4.27^9.02^3.87 -~05130~^~0500~^~Chicken, stewing, light meat, meat only, cooked, stewed~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD~^^^^~26% bone, 16% skin~^42^^6.25^4.27^9.02^3.87 -~05131~^~0500~^~Chicken, stewing, dark meat, meat only, raw~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW~^^^^~33% bone, 11% skin, 10% separable fat~^54^^6.25^4.27^9.02^3.87 -~05132~^~0500~^~Chicken, stewing, dark meat, meat only, cooked, stewed~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD~^^^^~36% bone, 15% skin~^51^^6.25^4.27^9.02^3.87 -~05133~^~0500~^~Chicken, capons, meat and skin and giblets and neck, raw~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05134~^~0500~^~Chicken, capons, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05135~^~0500~^~Chicken, capons, meat and skin, raw~^~CHICKEN,CAPONS,MEAT&SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05136~^~0500~^~Chicken, capons, meat and skin, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05137~^~0500~^~Chicken, capons, giblets, raw~^~CHICKEN,CAPONS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05138~^~0500~^~Chicken, capons, giblets, cooked, simmered~^~CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05139~^~0500~^~Duck, domesticated, meat and skin, raw~^~DUCK,DOMESTICATED,MEAT&SKN,RAW~^^^~Y~^~Bone~^28^~Anas platyrhynchos~^6.25^4.27^9.02^3.87 -~05140~^~0500~^~Duck, domesticated, meat and skin, cooked, roasted~^~DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~05141~^~0500~^~Duck, domesticated, meat only, raw~^~DUCK,DOMESTICATED,MEAT ONLY,RAW~^^^~Y~^~28% bone, 38% skin and separable fat~^66^^6.25^4.27^9.02^3.87 -~05142~^~0500~^~Duck, domesticated, meat only, cooked, roasted~^~DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^~Y~^~35% bone, 27% skin and separable fat~^62^^6.25^4.27^9.02^3.87 -~05143~^~0500~^~Duck, domesticated, liver, raw~^~DUCK,DOMESTICATED,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05144~^~0500~^~Duck, wild, meat and skin, raw~^~DUCK,WILD,MEAT&SKN,RAW~^^^^~38% bone, 2% handling loss~^40^^6.25^4.27^9.02^3.87 -~05145~^~0500~^~Duck, wild, breast, meat only, raw~^~DUCK,WILD,BREAST,MEAT ONLY,RAW~^^^^~15% bone, 31% skin and separable fat~^46^^6.25^4.27^9.02^3.87 -~05146~^~0500~^~Goose, domesticated, meat and skin, raw~^~GOOSE,DOMESTICATED,MEAT&SKN,RAW~^^^^~Bone~^19^~Anser anser~^6.25^4.27^9.02^3.87 -~05147~^~0500~^~Goose, domesticated, meat and skin, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05148~^~0500~^~Goose, domesticated, meat only, raw~^~GOOSE,DOMESTICATED,MEAT ONLY,RAW~^^^^~19% bone, 34% skin and separable fat~^53^^6.25^4.27^9.02^3.87 -~05149~^~0500~^~Goose, domesticated, meat only, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^^~28% bone, 17% skin and separable fat~^45^^6.25^4.27^9.02^3.87 -~05150~^~0500~^~Goose, liver, raw~^~GOOSE,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05151~^~0500~^~Guinea hen, meat and skin, raw~^~GUINEA HEN,MEAT&SKN,RAW~^^^^~Bone~^17^~Numida meleagris~^6.25^4.27^9.02^3.87 -~05152~^~0500~^~Guinea hen, meat only, raw~^~GUINEA HEN,MEAT ONLY,RAW~^^^^~17% bone, 19% skin and separable fat~^36^^6.25^4.27^9.02^3.87 -~05153~^~0500~^~Pheasant, raw, meat and skin~^~PHEASANT,RAW,MEAT&SKN~^^^^~Bone~^14^~Phasianus colchicus~^6.25^4.27^9.02^3.87 -~05154~^~0500~^~Pheasant, raw, meat only~^~PHEASANT,RAW,MEAT ONLY~^^^^~14% bone, 10% skin~^24^^6.25^4.27^9.02^3.87 -~05155~^~0500~^~Pheasant, breast, meat only, raw~^~PHEASANT,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05156~^~0500~^~Pheasant, leg, meat only, raw~^~PHEASANT,LEG,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05157~^~0500~^~Quail, meat and skin, raw~^~QUAIL,MEAT AND SKIN,RAW~^^^^~Bone~^10^~Coturnix spp. and Colinus spp.~^6.25^4.27^9.02^3.87 -~05158~^~0500~^~Quail, meat only, raw~^~QUAIL,MEAT ONLY,RAW~^^^^~10% bone, 14% skin~^24^^6.25^4.27^9.02^3.87 -~05159~^~0500~^~Quail, breast, meat only, raw~^~QUAIL,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05160~^~0500~^~Squab, (pigeon), meat and skin, raw~^~SQUAB,(PIGEON),MEAT&SKN,RAW~^^^^~Bone~^23^~Columba spp.~^6.25^4.27^9.02^3.87 -~05161~^~0500~^~Squab, (pigeon), meat only, raw~^~SQUAB,(PIGEON),MEAT ONLY,RAW~^^^^~23% bone, 12% skin~^35^^6.25^4.27^9.02^3.87 -~05162~^~0500~^~Squab, (pigeon), light meat without skin, raw~^~SQUAB,(PIGEON),LT MEAT WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05165~^~0500~^~Turkey, whole, meat and skin, raw~^~TURKEY,WHL,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~05166~^~0500~^~Turkey, whole, meat and skin, cooked, roasted~^~TURKEY,WHL,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone connective tissue 31%~^31^^6.25^4.27^9.02^3.87 -~05167~^~0500~^~Turkey, whole, meat only, raw~^~TURKEY,WHL,MEAT ONLY,RAW~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 11%~^41^^6.25^4.27^9.02^3.87 -~05168~^~0500~^~Turkey, whole, meat only, cooked, roasted~^~TURKEY,WHL,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 31%, Skin and separable fat 7%~^38^^6.25^4.27^9.02^3.87 -~05169~^~0500~^~Turkey, whole, skin (light and dark), raw~^~TURKEY,WHL,SKN (LIGHT & DARK),RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05170~^~0500~^~Turkey, whole, skin (light and dark), roasted~^~TURKEY,WHL,SKN (LIGHT & DARK),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05171~^~0500~^~Turkey, whole, giblets, raw~^~TURKEY,WHL,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05172~^~0500~^~Turkey, whole, giblets, cooked, simmered~^~TURKEY,WHL,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05173~^~0500~^~Turkey, gizzard, all classes, raw~^~TURKEY,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05174~^~0500~^~Turkey, all classes, gizzard, cooked, simmered~^~TURKEY,ALL CLASSES,GIZZARD,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05175~^~0500~^~Turkey, all classes, heart, raw~^~TURKEY,ALL CLASSES,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05176~^~0500~^~Turkey, all classes, heart, cooked, simmered~^~TURKEY,ALL CLASSES,HEART,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05177~^~0500~^~Turkey, all classes, liver, raw~^~TURKEY,ALL CLASSES,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05178~^~0500~^~Turkey, all classes, liver, cooked, simmered~^~TURKEY,ALL CLASSES,LIVER,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05179~^~0500~^~Turkey, whole, neck, meat only, raw~^~TURKEY,WHL,NECK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 60%~^60^^6.25^4.27^9.02^3.87 -~05180~^~0500~^~Turkey, whole, neck, meat only, cooked, simmered~^~TURKEY,WHL,NECK,MEAT ONLY,CKD,SIMMRD~^^^~Y~^~Bone and connective tissue 53%~^53^^6.25^4.27^9.02^3.87 -~05181~^~0500~^~Turkey, whole, light meat, meat and skin, raw~^~TURKEY,WHL,LT MEAT,MEAT & SKN,RAW~^^^^~Bone and Conncetive tissue 32%~^32^^6.25^4.27^9.02^3.87 -~05182~^~0500~^~Turkey, whole, light meat, meat and skin, cooked, roasted~^~TURKEY,WHL,LT MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%~^20^^6.25^4.27^9.02^3.87 -~05183~^~0500~^~Turkey, dark meat, meat and skin, raw~^~TURKEY,DK MEAT,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^48^^6.25^4.27^9.02^3.87 -~05184~^~0500~^~Turkey, whole, dark meat, meat and skin, cooked, roasted~^~TURKEY,WHL,DK MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05185~^~0500~^~Turkey, whole, light meat, raw~^~TURKEY,WHL,LT MEAT,RAW~^^^^~Bone and connective tissue 20%, skin and separable fat 12%~^29^^6.25^4.27^9.02^3.87 -~05186~^~0500~^~Turkey, all classes, light meat, cooked, roasted~^~TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%, Skin and separable fat 7%~^27^^6.25^4.27^9.02^3.87 -~05187~^~0500~^~Turkey, whole, dark meat, meat only, raw~^~TURKEY,WHL,DK MEAT,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, skin and separable fat 10%~^48^^^^^ -~05188~^~0500~^~Turkey, whole, dark meat, cooked, roasted~^~TURKEY,WHL,DK MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 39% Skin and separable fat 7%~^46^^6.25^4.27^9.02^3.87 -~05190~^~0500~^~Turkey, all classes, back, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^41^^6.25^4.27^9.02^3.87 -~05191~^~0500~^~Turkey, all classes, breast, meat and skin, raw~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW~^^^^~Bone~^10^^6.25^4.27^9.02^3.87 -~05192~^~0500~^~Turkey, all classes, breast, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05193~^~0500~^~Turkey, all classes, leg, meat and skin, raw~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05194~^~0500~^~Turkey, all classes, leg, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05195~^~0500~^~Turkey, all classes, wing, meat and skin, raw~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05196~^~0500~^~Turkey, all classes, wing, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05200~^~0500~^~Turkey, fryer-roasters, meat and skin, cooked, roasted~^~TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~05215~^~0500~^~Turkey, whole, back, meat only, raw~^~TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 50%, skin and separable fat 12%~^62^^6.25^4.27^9.02^3.87 -~05216~^~0500~^~Turkey, whole, back, meat only, cooked, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 54%, Skin and separable fat 7%~^42^^6.25^4.27^9.02^3.87 -~05219~^~0500~^~Turkey, whole, breast, meat only, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 12%, Skin and separable fat 10%~^22^^6.25^4.27^9.02^3.87 -~05220~^~0500~^~Turkey, whole, breast, meat only, cooked, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 13%, Skin and separable fat 6%~^19^^6.25^4.27^9.02^3.87 -~05227~^~0500~^~Turkey, whole, wing, meat only, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 44%, skin and separable fat 16%~^60^^6.25^4.27^9.02^3.87 -~05228~^~0500~^~Turkey, whole, wing, meat only, cooked, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 48%, skin and separable fat 11%~^59^^6.25^4.27^9.02^3.87 -~05236~^~0500~^~Turkey, young hen, skin only, cooked, roasted~^~TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05277~^~0500~^~Chicken, canned, meat only, with broth~^~CHICKEN,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05282~^~0500~^~Pate de foie gras, canned (goose liver pate), smoked~^~PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~05284~^~0500~^~Turkey, canned, meat only, with broth~^~TURKEY,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05285~^~0500~^~Turkey, diced, light and dark meat, seasoned~^~TURKEY,DICED,LT&DK MEAT,SEASONED~^^^^^0^^6.25^4.27^9.02^3.87 -~05286~^~0500~^~Turkey and gravy, frozen~^~TURKEY AND GRAVY,FROZEN~^^^^^0^^6.25^4.27^9.02^3.87 -~05293~^~0500~^~Turkey breast, pre-basted, meat and skin, cooked, roasted~^~TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05294~^~0500~^~Turkey thigh, pre-basted, meat and skin, cooked, roasted~^~TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~05295~^~0500~^~Turkey roast, boneless, frozen, seasoned, light and dark meat, raw~^~TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05300~^~0500~^~Turkey sticks, breaded, battered, fried~^~TURKEY STKS,BREADED,BATTERED,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05301~^~0500~^~Poultry, mechanically deboned, from backs and necks with skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05302~^~0500~^~Poultry, mechanically deboned, from backs and necks without skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05303~^~0500~^~Poultry, mechanically deboned, from mature hens, raw~^~POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05304~^~0500~^~Turkey, mechanically deboned, from turkey frames, raw~^~TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05305~^~0500~^~Turkey, Ground, raw~^~TURKEY,GROUND,RAW~^^^^^0^^^^^ -~05306~^~0500~^~Turkey, Ground, cooked~^~TURKEY,GROUND,CKD~^^^~Y~^^0^^^^^ -~05307~^~0500~^~Chicken, cornish game hens, meat and skin, raw~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW~^^^^~Bone~^39^^6.25^4.27^9.02^3.87 -~05308~^~0500~^~Chicken, cornish game hens, meat and skin, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~05309~^~0500~^~Chicken, cornish game hens, meat only, raw~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW~^^^^~39% bone, 13% skin, 5% separable fat~^57^^6.25^4.27^9.02^3.87 -~05310~^~0500~^~Chicken, cornish game hens, meat only, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD~^^^~Y~^~37% bone, 9% skin~^46^^6.25^4.27^9.02^3.87 -~05311~^~0500~^~Chicken, canned, no broth~^~CHICKEN,CANNED,NO BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05312~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05313~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05314~^~0500~^~Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw~^~CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW~^^^~Y~^^0^^6.25^^^ -~05315~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05316~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled~^~DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05317~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD~^^^^~Bone~^31^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05318~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised~^~DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD~^^^^~Bone~^34^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05319~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY~^^^~Y~^~Bone and connective tissue 29%, skin and separable fat 12%~^41^^^^^ -~05320~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)~^~CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05323~^~0500~^~Chicken patty, frozen, uncooked~^~CHICKEN PATTY,FRZ,UNCKD~^^^^^0^^^^^ -~05324~^~0500~^~Chicken patty, frozen, cooked~^~CHICKEN PATTY,FRZ,CKD~^^^~Y~^^0^^^^^ -~05326~^~0500~^~Chicken breast tenders, breaded, cooked, microwaved~^~CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED~^^^^^0^^6.25^^^ -~05327~^~0500~^~Chicken breast tenders, breaded, uncooked~^~CHICKEN BREAST TENDERS,BREADED,UNCKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05332~^~0500~^~Chicken, ground, raw~^~CHICKEN,GROUND,RAW~^^^^^0^^6.25^^^ -~05333~^~0500~^~Chicken, ground, crumbles, cooked, pan-browned~^~CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED~^^^^^0^^6.25^3.87^9.04^4.27 -~05334~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY~^^^~Y~^~Bone and connective tissue 14%, skin and separable fat 15%~^29^^^^^ -~05335~^~0500~^~Chicken, feet, boiled~^~CHICK,FEET,BOILED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05339~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY~^^^~Y~^~Bone and connective tissue 32%, skin and separable fat 25%~^57^^6.25^^^ -~05341~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat only, cooked~^~CHIKN,BROLRS OR FYRS,ROTSSRIE,ORIGNL SESONG,BCK,MEAT OLY,CKD~^^^^~40.14% bone and cartilage, 16.08% skin and separable fat~^56^^^^^ -~05342~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat only, cooked~^~CHKN,BRILRS OR FYRS,ROTSSRE,ORGNL SESONING,BRST,MEAT OLY,CKD~^^^~Y~^~Bone and Connective tissue 26%, skin 10%~^36^^^^^ -~05343~^~0500~^~Chicken, broilers or fryers, drumstick, rotisserie, original seasoning, meat only, cooked~^~CHKN,BRLRS OR FYRS,DRMSTK,ROISSRE,ORGNL SESONIG,MEAT OLY,CKD~^^^^~29.34% bone and cartilage, 11.75% skin and separable fat~^41^^^^^ -~05344~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, skin only, cooked~^~CICKN,BRILRS OR FYRS,ROTSSRE,ORGNL SEASNG,SKN ONLY,CKD~^^^^^0^^6.25^^^ -~05345~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROTSSRIE,ORGNL SEASNG,TGH,MEAT OLY,CKD~^^^^~14.24% bone and cartilage, 14.88% skin and separable fat~^29^^^^^ -~05346~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROISSRIE,ORGNL SEASONG,WNG,MET OLY,CKD~^^^^~32.51% bone and cartilage, 24.10% skin and separable fat~^57^^^^^ -~05347~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSERE,ORGNL SESONG,BCK,MET & SKN,CKD~^^^^^0^^^^^ -~05348~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SASONG,BRST,MAT & SKN,CKD~^^^^^0^^^^^ -~05349~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, drumstick, meat and skin, cooked~^~CHKN,BROLRS OR FYRS,ROTSSRE,ORGNL SESONG,DRMSTK,MT & SKN,CKD~^^^^^0^^^^^ -~05351~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SESONG,THGH,MET & SKN,CKD~^^^^^0^^^^^ -~05352~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SEASONG,WNG,MET & SKN,CKD~^^^^^0^^^^^ -~05356~^~0500~^~Chicken, broiler, rotisserie, BBQ, skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN~^^^~Y~^^0^^^^^ -~05357~^~0500~^~Chicken, broiler, rotisserie, BBQ, back, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 37%~^37^^^^^ -~05358~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST,MEAT & SKN~^^^~Y~^~Bone and connective tissue 11%~^11^^^^^ -~05359~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05361~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT & SKN~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05362~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT & SKN~^^^~Y~^~Bone and connective tissue 32%~^32^^^^^ -~05363~^~0500~^~Ruffed Grouse, breast meat, skinless, raw~^~RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW~^~Ruffed grouse~^^^^0^~Bonasa umbellus~^^^^ -~05621~^~0500~^~Emu, ground, raw~^~EMU,GROUND,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05622~^~0500~^~Emu, ground, cooked, pan-broiled~^~EMU,GROUND,CKD,PAN-BROILED~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05623~^~0500~^~Emu, fan fillet, raw~^~EMU,FAN FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05624~^~0500~^~Emu, fan fillet, cooked, broiled~^~EMU,FAN FILLET,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05625~^~0500~^~Emu, flat fillet, raw~^~EMU,FLAT FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05626~^~0500~^~Emu, full rump, raw~^~EMU,FULL RUMP,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05627~^~0500~^~Emu, full rump, cooked, broiled~^~EMU,FULL RUMP,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05628~^~0500~^~Emu, inside drum, raw~^~EMU,INSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05629~^~0500~^~Emu, inside drums, cooked, broiled~^~EMU,INSIDE DRUMS,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05630~^~0500~^~Emu, outside drum, raw~^~EMU,OUTSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05631~^~0500~^~Emu, oyster, raw~^~EMU,OYSTER,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05632~^~0500~^~Emu, top loin, cooked, broiled~^~EMU,TOP LOIN,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05641~^~0500~^~Ostrich, ground, raw~^~OSTRICH,GROUND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05642~^~0500~^~Ostrich, ground, cooked, pan-broiled~^~OSTRICH,GROUND,CKD,PAN-BROILED~^^^~Y~^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05643~^~0500~^~Ostrich, fan, raw~^~OSTRICH,FAN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05644~^~0500~^~Ostrich, inside leg, raw~^~OSTRICH,INSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05645~^~0500~^~Ostrich, inside leg, cooked~^~OSTRICH,INSIDE LEG,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05646~^~0500~^~Ostrich, inside strip, raw~^~OSTRICH,INSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05647~^~0500~^~Ostrich, inside strip, cooked~^~OSTRICH,INSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05648~^~0500~^~Ostrich, outside leg, raw~^~OSTRICH,OUTSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05649~^~0500~^~Ostrich, outside strip, raw~^~OSTRICH,OUTSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05650~^~0500~^~Ostrich, outside strip, cooked~^~OSTRICH,OUTSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05651~^~0500~^~Ostrich, oyster, raw~^~OSTRICH,OYSTER,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05652~^~0500~^~Ostrich, oyster, cooked~^~OSTRICH,OYSTER,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05653~^~0500~^~Ostrich, round, raw~^~OSTRICH,RND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05654~^~0500~^~Ostrich, tenderloin, raw~^~OSTRICH,TENDERLOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05655~^~0500~^~Ostrich, tip trimmed, raw~^~OSTRICH,TIP RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05656~^~0500~^~Ostrich, tip trimmed, cooked~^~OSTRICH,TIP CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05657~^~0500~^~Ostrich, top loin, raw~^~OSTRICH,TOP LOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05658~^~0500~^~Ostrich, top loin, cooked~^~OSTRICH,TOP LOIN,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05661~^~0500~^~Chicken, liver, all classes, cooked, pan-fried~^~CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05662~^~0500~^~Turkey, ground, fat free, raw~^~TURKEY,GROUND,FAT FREE,RAW~^^^^^0^^^^^ -~05663~^~0500~^~Turkey, ground, fat free, pan-broiled crumbles~^~TURKEY,GROUND,FAT FREE,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05664~^~0500~^~Turkey, ground, fat free, patties, broiled~^~TURKEY,GROUND,FAT FREE,PATTIES,BRLD~^^^^^0^^^^^ -~05665~^~0500~^~Turkey, ground, 93% lean, 7% fat, raw~^~TURKEY,GROUND,93% LN,7% FAT,RAW~^^^^^0^^^^^ -~05666~^~0500~^~Turkey, ground, 93% lean, 7% fat, pan-broiled crumbles~^~TURKEY,GROUND,93% LN,7% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05667~^~0500~^~Turkey, ground, 93% lean, 7% fat, patties, broiled~^~TURKEY,GROUND,93% LN,7% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05668~^~0500~^~Turkey, ground, 85% lean, 15% fat, raw~^~TURKEY,GROUND,85% LN,15% FAT,RAW~^^^^^0^^^^^ -~05669~^~0500~^~Turkey, ground, 85% lean, 15% fat, pan-broiled crumbles~^~TURKEY,GROUND,85% LN,15% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05670~^~0500~^~Turkey, ground, 85% lean, 15% fat, patties, broiled~^~TURKEY,GROUND,85% LN,15% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05671~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD~^^^^~Bone and cartilage 32%, Separable fat and skin 9%~^41^^^^^ -~05672~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD~^^^^~Bone and cartilage 16%, Skin and separable fat 16%~^32^^^^^ -~05673~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD~^^^^^0^^^^^ -~05674~^~0500~^~Chicken, skin (drumsticks and thighs), raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW~^^^^^0^^^^^ -~05675~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD~^^^^^0^^^^^ -~05676~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD~^^^^~Bone and cartilage 32%~^32^^^^^ -~05677~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD~^^^^~Bone and cartilage 16%~^16^^^^^ -~05678~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and Cartilage 34%, Skin and separable fat 9%~^43^^^^^ -~05679~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 27%, Skin and separable fat 8%~^74^^6.25^^^ -~05680~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 30%, Skin and separable fat 9%~^39^^^^^ -~05681~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%, Skin and separable fat 18%~^33^^^^^ -~05682~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 32%, skin and separable fat 24%~^56^^^^^ -~05683~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 16%, Skin and separable fat 15%~^31^^^^^ -~05684~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD~^^^~Y~^^0^^^^^ -~05685~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW~^^^~Y~^^0^^^^^ -~05686~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD~^^^~Y~^^0^^^^^ -~05687~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and Cartilage 30%~^30^^^^^ -~05688~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 34%, bone and connective tissue 34%~^68^^^^^ -~05689~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 40%, bone and connective tissue 26%~^66^^^^^ -~05690~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%~^15^^^^^ -~05691~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 15%, bone and connective tissue 17%~^32^^^^^ -~05692~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^^^^ -~05693~^~0500~^~Chicken, broiler, rotisserie, BBQ, back meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY~^^^~Y~^~Bone and connective tissue 37%, skin and separable fat 14%~^51^^^^^ -~05694~^~0500~^~Turkey, dark meat from whole, meat only, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05695~^~0500~^~Turkey, dark meat, meat only, with added solution, cooked, roasted~^~TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05696~^~0500~^~Turkey from whole, light meat, meat only, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%, Skin and separable fat 13%~^31^^^^^ -~05697~^~0500~^~Turkey from whole, light meat, meat only, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%, Skin and separable fat 7%~^25^^^^^ -~05698~^~0500~^~Turkey, skin from whole (light and dark), with added solution, raw~^~TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~05699~^~0500~^~Turkey, skin from whole, (light and dark), with added solution, roasted~^~TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD~^^^~Y~^^0^^^^^ -~05700~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05701~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Connective tissue 37%~^37^^^^^ -~05702~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%~^18^^^^^ -~05703~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%~^18^^^^^ -~05704~^~0500~^~Turkey, whole, meat only, with added solution, raw~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05705~^~0500~^~Turkey, whole, meat only, with added solution, roasted~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05706~^~0500~^~Turkey, whole, meat and skin, with added solution, raw~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05707~^~0500~^~Turkey, whole, meat and skin, with added solution, roasted~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%~^36^^^^^ -~05708~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%, Skin and separable fat 10%~^25^^^^^ -~05709~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 17%, Skin and separable fat 7%~^24^^^^^ -~05710~^~0500~^~Turkey, retail parts, breast, meat only, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW~^^^^~Bone and connective tissue 14%, Skin and separable fat 11%~^25^^^^^ -~05711~^~0500~^~Turkey, retail parts, breast, meat only, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%, Skin and separable fat 8%~^20^^^^^ -~05712~^~0500~^~Turkey, retail parts, wing, meat only, raw~^~TURKEY,RTL PARTS,WING,MEAT ONLY,RAW~^^^^~Bone and connective tissue 37%, Skin and separable fat 18%~^55^^^^^ -~05713~^~0500~^~Turkey, retail parts, wing, meat only, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%, Skin and separable fat 14%~^52^^^^^ -~05714~^~0500~^~Turkey, skin, from retail parts, from dark meat, raw~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW~^^^^^0^^^^^ -~05715~^~0500~^~Turkey, skin, from retail parts, from dark meat, cooked, roasted~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD~^^^^^0^^^^^ -~05716~^~0500~^~Turkey, retail parts, drumstick, meat only, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 33%, Skin and separable fat 6%~^39^^^^^ -~05717~^~0500~^~Turkey, retail parts, thigh, meat only, raw~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW~^^^^~Bone and connective tissue 19%, Skin and separable fat 13%~^32^^^^^ -~05718~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 10%, skin and separable fat 6%~^16^^^^^ -~05719~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%, Skin and separable fat 16%~^63^^^^^ -~05720~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%, skin and separable fat 12%~^61^^^^^ -~05721~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 10%, Skin and separable fat 11%~^22^^6.25^^^ -~05722~^~0500~^~Turkey, retail parts, thigh, meat only, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%, Skin and separable fat 9%~^23^^^^^ -~05723~^~0500~^~Turkey, retail parts, drumstick, meat only, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 7%~^36^^^^^ -~05724~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 30%, Skin and separable fat 8%~^38^^^^^ -~05725~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 34%, Skin and separable fat 6%~^40^^^^^ -~05726~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 16%, Skin and separable fat 14%~^30^^^^^ -~05727~^~0500~^~Turkey, retail parts, breast, meat and skin, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%~^15^^^^^ -~05728~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 16%, skin and separable fat 8%~^24^^^^^ -~05729~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 36%, skin and separable fat 19%~^55^^^^^ -~05730~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 47%, skin and separable fat 12%~^59^^^^^ -~05732~^~0500~^~Turkey, retail parts, breast, meat and skin, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05733~^~0500~^~Turkey, retail parts, breast, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%~^12^^^^^ -~05734~^~0500~^~Turkey, retail parts, wing, meat and skin, raw~^~TURKEY,RTL PARTS,WING,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^38^^^^^ -~05735~^~0500~^~Turkey, retail parts, wing, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^^^^ -~05736~^~0500~^~Turkey, retail parts, drumstick, meat and skin, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW~^^^^~Bone and connective tissue 33%~^33^^^^^ -~05737~^~0500~^~Turkey, retail parts, drumstick, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05738~^~0500~^~Turkey, drumstick, from whole bird, meat only, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, Skin and separable fat 6%~^44^^^^^ -~05739~^~0500~^~Turkey, drumstick, from whole bird, meat only, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 37%, Skin and separable fat 5%~^42^^^^^ -~05740~^~0500~^~Turkey, thigh, from whole bird, meat only, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 20%, Skin and separable fat 10%~^30^^^^^ -~05741~^~0500~^~Turkey, thigh, from whole bird, meat only, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 7%~^43^^^^^ -~05742~^~0500~^~Turkey, retail parts, thigh, meat and skin, raw~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW~^^^^~Bone and connective tissue 19%~^19^^^^^ -~05743~^~0500~^~Turkey, retail parts, thigh, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05744~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%~^47^^^^^ -~05745~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%~^49^^^^^ -~05746~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised~^~CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD~^^^^^0^^^^^ -~05747~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled~^~CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD~^^^^^0^^^^^ -~05748~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised~^~CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD~^^^^^0^^^^^ -~05749~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled~^~CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED~^^^^^0^^^^^ -~06001~^~0600~^~Soup, cream of asparagus, canned, condensed~^~SOUP,CRM OF ASPARAGUS,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06002~^~0600~^~Soup, black bean, canned, condensed~^~SOUP,BLACK BEAN,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06004~^~0600~^~Soup, bean with pork, canned, condensed~^~SOUP,BEAN W/ PORK,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06006~^~0600~^~Soup, bean with frankfurters, canned, condensed~^~SOUP,BEAN W/ FRANKFURTERS,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06007~^~0600~^~Soup, bean with ham, canned, chunky, ready-to-serve~^~SOUP,BEAN W/ HAM,CND,CHUNKY,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06008~^~0600~^~Soup, beef broth or bouillon canned, ready-to-serve~^~SOUP,BF BROTH OR BOUILLON CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06009~^~0600~^~Soup, beef noodle, canned, condensed~^~SOUP,BF NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06010~^~0600~^~Soup, cream of celery, canned, condensed~^~SOUP,CRM OF CELERY,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06011~^~0600~^~Soup, cheese, canned, condensed~^~SOUP,CHS,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06013~^~0600~^~Soup, chicken broth, canned, condensed~^~SOUP,CHICK BROTH,CND,COND~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06015~^~0600~^~Soup, chicken, canned, chunky, ready-to-serve~^~SOUP,CHICK,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06016~^~0600~^~Soup, cream of chicken, canned, condensed~^~SOUP,CRM OF CHICK,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06017~^~0600~^~Soup, chicken gumbo, canned, condensed~^~SOUP,CHICK GUMBO,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06018~^~0600~^~Soup, chunky chicken noodle, canned, ready-to-serve~^~SOUP,CHUNKY CHICK NOODLE,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06019~^~0600~^~Soup, chicken noodle, canned, condensed~^~SOUP,CHICK NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06022~^~0600~^~Soup, chicken rice, canned, chunky, ready-to-serve~^~SOUP,CHICK RICE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06023~^~0600~^~Soup, chicken with rice, canned, condensed~^~SOUP,CHICK W/ RICE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06024~^~0600~^~Soup, chicken and vegetable, canned, ready-to-serve~^~SOUP,CHICK & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06025~^~0600~^~Soup, chicken vegetable, canned, condensed~^~SOUP,CHICK VEG,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06026~^~0600~^~Soup, chili beef, canned, condensed~^~SOUP,CHILI BF,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06027~^~0600~^~Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve~^~SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06028~^~0600~^~Soup, clam chowder, manhattan, canned, condensed~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06030~^~0600~^~Soup, clam chowder, new england, canned, condensed~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06032~^~0600~^~Soup, beef broth bouillon and consomme, canned, condensed~^~SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND~^^^^^0^^6.25^4.00^9.00^4.00 -~06037~^~0600~^~Soup, lentil with ham, canned, ready-to-serve~^~SOUP,LENTIL W/HAM,CND,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06039~^~0600~^~Soup, minestrone, canned, chunky, ready-to-serve~^~SOUP,MINESTRONE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06040~^~0600~^~Soup, minestrone, canned, condensed~^~SOUP,MINESTRONE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06042~^~0600~^~Soup, mushroom barley, canned, condensed~^~SOUP,MUSHROOM BARLEY,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06043~^~0600~^~Soup, cream of mushroom, canned, condensed~^~SOUP,CRM OF MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06044~^~0600~^~Soup, mushroom with beef stock, canned, condensed~^~SOUP,MUSHROOM W/ BF STOCK,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06045~^~0600~^~Soup, onion, canned, condensed~^~SOUP,ONION,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06046~^~0600~^~Soup, cream of onion, canned, condensed~^~SOUP,CRM OF ONION,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06048~^~0600~^~Soup, oyster stew, canned, condensed~^~SOUP,OYSTER STEW,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06049~^~0600~^~Soup, pea, green, canned, condensed~^~SOUP,PEA,GRN,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06050~^~0600~^~Soup, pea, split with ham, canned, chunky, ready-to-serve~^~SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06051~^~0600~^~Soup, pea, split with ham, canned, condensed~^~SOUP,PEA,SPLIT W/ HAM,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06053~^~0600~^~Soup, cream of potato, canned, condensed~^~SOUP,CRM OF POTATO,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06056~^~0600~^~Soup, cream of shrimp, canned, condensed~^~SOUP,CRM OF SHRIMP,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06061~^~0600~^~Soup, tomato beef with noodle, canned, condensed~^~SOUP,TOMATO BF W/ NOODLE,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06062~^~0600~^~CAMPBELL'S, Chicken Noodle Soup, condensed~^~CAMPBELL'S,CHICK NOODLE SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06063~^~0600~^~Soup, tomato rice, canned, condensed~^~SOUP,TOMATO RICE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06064~^~0600~^~Soup, turkey, chunky, canned, ready-to-serve~^~SOUP,TURKEY,CHUNKY,CND,RTS~^^^^^0^^6.25^4.10^8.80^3.90 -~06067~^~0600~^~Soup, chunky vegetable, canned, ready-to-serve~^~SOUP,CHUNKY VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06068~^~0600~^~Soup, vegetarian vegetable, canned, condensed~^~SOUP,VEGETARIAN VEG,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06070~^~0600~^~Soup, chunky beef, canned, ready-to-serve~^~SOUP,CHUNKY BF,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06071~^~0600~^~Soup, vegetable beef, canned, condensed~^~SOUP,VEG BF,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06072~^~0600~^~Soup, vegetable with beef broth, canned, condensed~^~SOUP,VEG W/ BF BROTH,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06075~^~0600~^~Soup, beef broth or bouillon, powder, dry~^~SOUP,BF BROTH OR BOUILLON,PDR,DRY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06076~^~0600~^~Soup, beef broth, cubed, dry~^~SOUP,BEEF BROTH,CUBED,DRY~^^^^^0^^6.25^4.00^9.00^4.00 -~06080~^~0600~^~Soup, chicken broth or bouillon, dry~^~SOUP,CHICK BROTH OR BOUILLON,DRY~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06081~^~0600~^~Soup, chicken broth cubes, dry~^~SOUP,CHICK BROTH CUBES,DRY~^^^^^0^^6.25^4.20^9.00^4.00 -~06094~^~0600~^~Soup, onion, dry, mix~^~SOUP,ONION,DRY,MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06101~^~0600~^~Soup, cream of vegetable, dry, powder~^~SOUP,CRM OF VEG,DRY,PDR~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06112~^~0600~^~Sauce, teriyaki, ready-to-serve~^~SAUCE,TERIYAKI,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06114~^~0600~^~Gravy, au jus, canned~^~GRAVY,AU JUS,CANNED~^^^^^0^^6.25^3.50^9.00^3.90 -~06115~^~0600~^~Gravy, au jus, dry~^~GRAVY,AU JUS,DRY~^^^^^0^^^4.00^9.00^4.00 -~06116~^~0600~^~Gravy, beef, canned, ready-to-serve~^~GRAVY,BF,CND,RTS~^^^~Y~^^0^^6.25^3.50^9.00^3.90 -~06118~^~0600~^~Gravy, brown, dry~^~GRAVY,BROWN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06119~^~0600~^~Gravy, chicken, canned or bottled, ready-to-serve~^~GRVY, CHCKN, CNND BTTLD, RTS~^^^~Y~^^0^^^^^ -~06120~^~0600~^~Gravy, chicken, dry~^~GRAVY,CHICKEN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06121~^~0600~^~Gravy, mushroom, canned~^~GRAVY,MUSHROOM,CANNED~^^^^^0^^6.25^3.40^8.90^4.00 -~06122~^~0600~^~Gravy, mushroom, dry, powder~^~GRAVY,MUSHROOM,DRY,PDR~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06123~^~0600~^~Gravy, onion, dry, mix~^~GRAVY,ONION,DRY,MIX~^^^^^0^^6.25^3.50^9.00^3.90 -~06124~^~0600~^~Gravy, pork, dry, powder~^~GRAVY,PORK,DRY,PDR~^^^~Y~^^0^^^4.00^9.00^4.00 -~06125~^~0600~^~Gravy, turkey, canned, ready-to-serve~^~GRAVY,TURKEY,CND,RTS~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06126~^~0600~^~Gravy, turkey, dry~^~GRAVY,TURKEY,DRY~^^^^^0^^^4.00^9.00^4.00 -~06127~^~0600~^~Gravy, unspecified type, dry~^~GRAVY,UNSPEC TYPE,DRY~^^^^^0^^6.25^3.40^8.90^4.00 -~06128~^~0600~^~Soup, chicken noodle, dry, mix~^~SOUP,CHICK NOODLE,DRY,MIX~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06142~^~0600~^~Sauce, sofrito, prepared from recipe~^~SAUCE,SOFRITO,PREP FROM RECIPE~^^^^^0^^^^^ -~06147~^~0600~^~Soup, beef mushroom, canned, condensed~^~SOUP,BF MUSHROOM,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06149~^~0600~^~Soup, chicken mushroom, canned, condensed~^~SOUP,CHICK MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.20 -~06150~^~0600~^~Sauce, barbecue~^~SAUCE,BARBECUE~^^^~Y~^^0^^6.25^^^ -~06151~^~0600~^~Sauce, plum, ready-to-serve~^~SAUCE,PLUM,READY-TO-SERVE~^^^^^0^^6.25^4.00^9.00^4.00 -~06152~^~0600~^~Sauce, pizza, canned, ready-to-serve~^~SAUCE,PIZZA,CND,RTS~^^^^^0^^^4.00^9.00^4.00 -~06158~^~0600~^~Soup, tomato bisque, canned, condensed~^~SOUP,TOMATO BISQUE,CND,COND~^^^^^0^^6.25^3.90^8.80^3.90 -~06159~^~0600~^~Soup, tomato, canned, condensed~^~SOUP,TOMATO,CND,COND~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06164~^~0600~^~Sauce, salsa, ready-to-serve~^~SAUCE,SALSA,RTS~^^^~Y~^^0^^6.25^2.44^8.87^3.57 -~06166~^~0600~^~Sauce, homemade, white, medium~^~SAUCE,HOMEMADE,WHITE,MED~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06167~^~0600~^~Sauce, homemade, white, thick~^~SAUCE,HOMEMADE,WHITE,THICK~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06168~^~0600~^~Sauce, ready-to-serve, pepper or hot~^~SAUCE,RTS,PEPPER OR HOT~^^^^^0^^6.25^2.44^8.37^3.57 -~06169~^~0600~^~Sauce, ready-to-serve, pepper, TABASCO~^~SAUCE,RTS,PEPPER,TABASCO~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~06170~^~0600~^~Soup, stock, beef, home-prepared~^~SOUP,STOCK,BEEF,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06172~^~0600~^~Soup, stock, chicken, home-prepared~^~SOUP,STOCK,CHICK,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06174~^~0600~^~Soup, stock, fish, home-prepared~^~SOUP,STOCK,FISH,HOME-PREPARED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06175~^~0600~^~Sauce, hoisin, ready-to-serve~^~SAUCE,HOISIN,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06176~^~0600~^~Sauce, oyster, ready-to-serve~^~SAUCE,OYSTER,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06177~^~0600~^~Soup, minestrone, canned, reduced sodium, ready-to-serve~^~SOUP,MINESTRONE,CND,RED NA,RTS~^^^~Y~^^0^^^^^ -~06179~^~0600~^~Sauce, fish, ready-to-serve~^~SAUCE,FISH,READY-TO-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06180~^~0600~^~Soup, shark fin, restaurant-prepared~^~SOUP,SHARK FIN,REST-PREP~^^^^^0^^6.25^4.00^9.00^4.00 -~06182~^~0600~^~Soup, cream of mushroom, canned, condensed, reduced sodium~^~SOUP,CRM OF MUSHROOM,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06183~^~0600~^~Soup, chicken broth, less/reduced sodium, ready to serve~^~SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06188~^~0600~^~Soup, beef broth, less/reduced sodium, ready to serve~^~SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06189~^~0600~^~Sauce, teriyaki, ready-to-serve, reduced sodium~^~SAUCE,TERIYAKI,RTS,RED NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06190~^~0600~^~Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve~^~SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06192~^~0600~^~Split pea soup, canned, reduced sodium, prepared with water or ready-to serve~^~SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE~^^^~Y~^^0^^^^^ -~06193~^~0600~^~Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve~^~SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS~^^^~Y~^^0^^^^^ -~06194~^~0600~^~Soup, chicken broth, ready-to-serve~^~SOUP,CHICK BROTH,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06201~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume milk~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06208~^~0600~^~Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve~^~SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS~^^^~Y~^^0^^^^^ -~06210~^~0600~^~Soup, cream of celery, canned, prepared with equal volume milk~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06211~^~0600~^~Soup, cheese, canned, prepared with equal volume milk~^~SOUP,CHS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.10^8.80^3.90 -~06216~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume milk~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06217~^~0600~^~Soup, vegetable, canned, low sodium, condensed~^~SOUP,VEG,CND,LO NA,COND~^^^~Y~^^0^^^^^ -~06230~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06243~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06246~^~0600~^~Soup, cream of onion, canned, prepared with equal volume milk~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06248~^~0600~^~Soup, oyster stew, canned, prepared with equal volume milk~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06249~^~0600~^~Soup, pea, green, canned, prepared with equal volume milk~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.70^8.90^4.00 -~06253~^~0600~^~Soup, cream of potato, canned, prepared with equal volume milk~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^4.00 -~06256~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06264~^~0600~^~Sauce, white, thin, prepared-from-recipe, with butter~^~SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER~^~NFSMI Recipe No. G-08~^^^^0^^^^^ -~06285~^~0600~^~Sauce, sweet and sour, prepared-from-recipe~^~SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE~^~NFSMI Recipe No. G-05~^^^^0^^^^^ -~06307~^~0600~^~Sauce, barbecue, KRAFT, original~^~SAUCE,BARBECUE,KRAFT,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~06314~^~0600~^~Soup, HEALTHY CHOICE Chicken Noodle Soup, canned~^~SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06315~^~0600~^~Soup, HEALTHY CHOICE Chicken and Rice Soup, canned~^~SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06316~^~0600~^~Soup, HEALTHY CHOICE Garden Vegetable Soup, canned~^~SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06338~^~0600~^~CAMPBELL'S, Cream of Mushroom Soup, condensed~^~CAMPBELL'S,CRM OF MUSHROOM SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06358~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume milk~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06359~^~0600~^~Soup, tomato, canned, prepared with equal volume low fat (2%) milk~^~SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06377~^~0600~^~CAMPBELL'S, Tomato Soup, condensed~^~CAMPBELL'S,TOMATO SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06395~^~0600~^~CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup~^~CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06401~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume water~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06402~^~0600~^~Soup, black bean, canned, prepared with equal volume water~^~SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06404~^~0600~^~Soup, bean with pork, canned, prepared with equal volume water~^~SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06406~^~0600~^~Soup, bean with frankfurters, canned, prepared with equal volume water~^~SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06409~^~0600~^~Soup, beef noodle, canned, prepared with equal volume water~^~SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06410~^~0600~^~Soup, cream of celery, canned, prepared with equal volume water~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06411~^~0600~^~Soup, cheese, canned, prepared with equal volume water~^~SOUP,CHS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.80^3.90 -~06413~^~0600~^~Soup, chicken broth, canned, prepared with equal volume water~^~SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06415~^~0600~^~CAMPBELL'S CHUNKY, Hearty Beef Barley Soup~^~CAMPBELL'S CHUNKY,HEARTY BF BARLEY SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06416~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume water~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06417~^~0600~^~Soup, chicken gumbo, canned, prepared with equal volume water~^~SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06419~^~0600~^~Soup, chicken noodle, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06423~^~0600~^~Soup, chicken with rice, canned, prepared with equal volume water~^~SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06426~^~0600~^~Soup, chili beef, canned, prepared with equal volume water~^~SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06428~^~0600~^~Soup, clam chowder, manhattan, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06430~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06431~^~0600~^~CAMPBELL'S CHUNKY, New England Clam Chowder~^~CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER~^^~Campbell Soup Co.~^^^0^^^^^ -~06432~^~0600~^~Soup, beef broth, bouillon, consomme, prepared with equal volume water~^~SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06434~^~0600~^~CAMPBELL'S CHUNKY, Old Fashioned Vegetable Beef Soup~^~CAMPBELL'S CHUNKY,OLD FASHIONED VEG BF SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06440~^~0600~^~Soup, minestrone, canned, prepared with equal volume water~^~SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06442~^~0600~^~Soup, mushroom barley, canned, prepared with equal volume water~^~SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.60^8.90^4.00 -~06443~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume water~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06444~^~0600~^~Soup, mushroom with beef stock, canned, prepared with equal volume water~^~SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06446~^~0600~^~Soup, cream of onion, canned, prepared with equal volume water~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06448~^~0600~^~Soup, oyster stew, canned, prepared with equal volume water~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06449~^~0600~^~Soup, pea, green, canned, prepared with equal volume water~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06451~^~0600~^~Soup, pea, split with ham, canned, prepared with equal volume water~^~SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06453~^~0600~^~Soup, cream of potato, canned, prepared with equal volume water~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^4.00 -~06456~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume water~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06461~^~0600~^~Soup, tomato beef with noodle, canned, prepared with equal volume water~^~SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06463~^~0600~^~Soup, tomato rice, canned, prepared with equal volume water~^~SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06465~^~0600~^~Soup, turkey noodle, canned, prepared with equal volume water~^~SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.90^4.10 -~06466~^~0600~^~Soup, turkey vegetable, canned, prepared with equal volume water~^~SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06468~^~0600~^~Soup, vegetarian vegetable, canned, prepared with equal volume water~^~SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06471~^~0600~^~Soup, vegetable beef, canned, prepared with equal volume water~^~SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06472~^~0600~^~Soup, vegetable with beef broth, canned, prepared with equal volume water~^~SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06475~^~0600~^~Soup, beef broth or bouillon, powder, prepared with water~^~SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06476~^~0600~^~Soup, beef broth, cubed, prepared with water~^~SOUP,BF BROTH,CUBED,PREP W/H2O~^^^^^0^^6.25^4.00^8.90^4.00 -~06480~^~0600~^~Soup, chicken broth or bouillon, dry, prepared with water~^~SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06481~^~0600~^~Soup, chicken broth cubes, dry, prepared with water~^~SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O~^^^^^0^^6.25^4.20^9.00^4.00 -~06483~^~0600~^~Soup, cream of chicken, dry, mix, prepared with water~^~SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06494~^~0600~^~Soup, onion, dry, mix, prepared with water~^~SOUP,ONION,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06498~^~0600~^~Soup, tomato, dry, mix, prepared with water~^~SOUP,TOMATO,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06528~^~0600~^~Soup, chicken noodle, dry, mix, prepared with water~^~SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06547~^~0600~^~Soup, beef mushroom, canned, prepared with equal volume water~^~SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06549~^~0600~^~Soup, chicken mushroom, canned, prepared with equal volume water~^~SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.20 -~06558~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume water~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06559~^~0600~^~Soup, tomato, canned, prepared with equal volume water, commercial~^~SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06583~^~0600~^~Soup, ramen noodle, any flavor, dry~^~SOUP,RAMEN NOODLE,ANY FLAVOR,DRY~^^^~Y~^^0^^^4.00^9.00^4.00 -~06584~^~0600~^~Soup, broccoli cheese, canned, condensed, commercial~^~SOUP,BROCCOLI CHS,CND,COND,COMM~^^^~Y~^^0^^^^^ -~06611~^~0600~^~Soup, SWANSON, beef broth, lower sodium~^~SOUP,SWANSON,BF BROTH,LOWER NA~^^~Campbell Soup Co.~^^^0^^^^^ -~06615~^~0600~^~Soup, SWANSON, vegetable broth~^~SOUP,SWANSON,VEG BROTH~^^~Campbell Soup Co.~^^^0^^^^^ -~06618~^~0600~^~Sauce, peanut, made from coconut, water, sugar, peanuts~^~SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06619~^~0600~^~SMART SOUP, Santa Fe Corn Chowder~^~SMART SOUP,SANTA FE CORN CHOWDER~^^~Smart Soup~^^^0^^6.25^^^ -~06620~^~0600~^~SMART SOUP, French Lentil~^~SMART SOUP,FRENCH LENTIL~^^~Smart Soup~^^^0^^6.25^^^ -~06621~^~0600~^~SMART SOUP, Greek Minestrone~^~SMART SOUP,GREEK MINESTRONE~^^~Smart Soup~^^^0^^6.25^^^ -~06622~^~0600~^~SMART SOUP, Indian Bean Masala~^~SMART SOUP,INDIAN BEAN MASALA~^^~Smart Soup~^^^0^^6.25^^^ -~06623~^~0600~^~SMART SOUP, Moroccan Chick Pea~^~SMART SOUP,MOROCCAN CHICK PEA~^^~Smart Soup~^^^0^^6.25^^^ -~06624~^~0600~^~SMART SOUP, Thai Coconut Curry~^~SMART SOUP,THAI COCNT CURRY~^^~Smart Soup~^^^0^^6.25^^^ -~06625~^~0600~^~SMART SOUP, Vietnamese Carrot Lemongrass~^~SMART SOUP,VIETNAMESE CARROT LEMONGRASS~^^~Smart Soup~^^^0^^6.25^^^ -~06626~^~0600~^~Sauce, pesto, ready-to-serve, refrigerated~^~SAUCE,PESTO,RTS,REFR~^^^^^0^^^^^ -~06627~^~0600~^~Sauce, pesto, ready-to-serve, shelf stable~^~SAUCE,PESTO,RTS,SHELF STABLE~^^^^^0^^^^^ -~06628~^~0600~^~Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated~^~SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR~^^~Nestle USA, Inc.~^^^0^^^^^ -~06629~^~0600~^~Sauce, pesto, CLASSICO, basil pesto, ready-to-serve~^~SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS~^^~Classico~^^^0^^^^^ -~06630~^~0600~^~Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve~^~SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS~^^~Mezzetta~^^^0^^^^^ -~06631~^~0600~^~Sauce, hot chile, sriracha~^~SAUCE,HOT CHILE,SRIRACHA~^^^^^0^^^^^ -~06632~^~0600~^~Sauce, hot chile, sriracha, CHA! BY TEXAS PETE~^~SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE~^^~TW Garner Food Company~^^^0^^^^^ -~06633~^~0600~^~Sauce, hot chile, sriracha, TUONG OT SRIRACHA~^~SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA~^^~Huy Fong Foods, Inc.~^^^0^^^^^ -~06700~^~0600~^~Soup, vegetable broth, ready to serve~^~SOUP,VEG BROTH,READY TO SERVE~^^^~Y~^^0^^^^^ -~06720~^~0600~^~Sauce, cheese sauce mix, dry~^~SAUCE,CHS SAU MIX,DRY~^^^^^0^^^^^ -~06725~^~0600~^~Soup, chicken corn chowder, chunky, ready-to-serve, single brand~^~SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06731~^~0600~^~Soup, bean with bacon, condensed, single brand~^~SOUP,BEAN W/BACON,COND,SINGLE BRAND~^^^^^0^^^^^ -~06742~^~0600~^~Soup, vegetable beef, microwavable, ready-to-serve, single brand~^~SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06749~^~0600~^~Soup, beef and vegetables, canned, ready-to-serve~^~SOUP,BF & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06930~^~0600~^~Sauce, cheese, ready-to-serve~^~SAUCE,CHS,RTS~^^^^^0^^^^^ -~06931~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS~^^^~Y~^^0^^^^^ -~06955~^~0600~^~Soup, cream of chicken, canned, condensed, reduced sodium~^~SOUP,CRM OF CHICK,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06956~^~0600~^~Soup, tomato, canned, condensed, reduced sodium~^~SOUP,TOMATO,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06957~^~0600~^~Gravy, brown instant, dry~^~GRAVY,BROWN INST,DRY~^^^~Y~^^0^^^^^ -~06958~^~0600~^~Gravy, instant beef, dry~^~GRAVY,INST BF,DRY~^^^~Y~^^0^^^^^ -~06959~^~0600~^~Gravy, instant turkey, dry~^~GRAVY,INST TURKEY,DRY~^^^~Y~^^0^^^^^ -~06960~^~0600~^~Sauce, alfredo mix, dry~^~SAUCE,ALFREDO MIX,DRY~^^^^^0^^^^^ -~06961~^~0600~^~Sauce, peppers, hot, chili, mature red, canned~^~SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND~^^^~Y~^^0^^^^^ -~06962~^~0600~^~Sauce, chili, peppers, hot, immature green, canned~^~SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND~^^^~Y~^^0^^^^^ -~06963~^~0600~^~Fish broth~^~FISH BROTH~^^^~Y~^^0^^^^^ -~06964~^~0600~^~Soup, tomato, low sodium, with water~^~SOUP,TOMATO,LO NA,W/H2O~^^^~Y~^^0^^^^^ -~06965~^~0600~^~Soup, pea, low sodium, prepared with equal volume water~^~SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06966~^~0600~^~Soup, chicken noodle, low sodium, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06967~^~0600~^~Soup, vegetable soup, condensed, low sodium, prepared with equal volume water~^~SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06968~^~0600~^~Soup, cream of mushroom, low sodium, ready-to-serve, canned~^~SOUP,CRM OF MUSHROOM,LO NA,RTS,CND~^^^~Y~^^0^^^^^ -~06969~^~0600~^~Potato soup, instant, dry mix~^~POTATO SOUP,INST,DRY MIX~^^^~Y~^^0^^^^^ -~06970~^~0600~^~Soup, chicken broth, low sodium, canned~^~SOUP,CHICK BROTH,LO NA,CND~^^^~Y~^^0^^^^^ -~06971~^~0600~^~Sauce, worcestershire~^~SAUCE,WORCESTERSHIRE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06972~^~0600~^~Sauce, tomato chili sauce, bottled, with salt~^~SAUCE,TOMATO CHILI SAU,BTLD,W/SALT~^^^~Y~^^0^^^^^ -~06974~^~0600~^~Soup, vegetable chicken, canned, prepared with water, low sodium~^~SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA~^^^~Y~^^0^^^^^ -~06976~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06977~^~0600~^~Gravy, meat or poultry, low sodium, prepared~^~GRAVY,MEAT OR POULTRY,LO NA,PREP~^^^~Y~^^0^^^^^ -~06978~^~0600~^~Soup, beef and mushroom, low sodium, chunk style~^~SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE~^^^~Y~^^0^^^^^ -~06980~^~0600~^~Soup, beef stroganoff, canned, chunky style, ready-to-serve~^~SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS~^^^~Y~^^0^^^^^ -~06981~^~0600~^~Soup, bouillon cubes and granules, low sodium, dry~^~SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY~^^^~Y~^^0^^^^^ -~06982~^~0600~^~Soup, ramen noodle, beef flavor, dry~^~SOUP,RAMEN NOODLE,BF FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06983~^~0600~^~Soup, ramen noodle, chicken flavor, dry~^~SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06985~^~0600~^~Gravy, HEINZ Home Style, savory beef~^~GRAVY,HEINZ HOME STYLE,SAVORY BF~^^~H.J. Heinz, Co.~^^^0^^6.25^4.00^9.00^4.00 -~06999~^~0600~^~Gravy, CAMPBELL'S, chicken~^~GRAVY,CAMPBELL'S,CHICK~^^~Campbell Soup Co.~^^^0^^^^^ -~07001~^~0700~^~Barbecue loaf, pork, beef~^~BARBECUE LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07002~^~0700~^~Beerwurst, beer salami, pork and beef~^~BEERWURST,BEER SALAMI,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07003~^~0700~^~Beerwurst, beer salami, pork~^~BEERWURST,BEER SALAMI,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07004~^~0700~^~Sausage, Berliner, pork, beef~^~SAUSAGE BERLINER PORK BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07005~^~0700~^~Blood sausage~^~BLOOD SAUSAGE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07006~^~0700~^~Bockwurst, pork, veal, raw~^~BOCKWURST PORK VEAL RAW~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07007~^~0700~^~Bologna, beef~^~BOLOGNA,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07008~^~0700~^~Bologna, beef and pork~^~BOLOGNA,BF & PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07010~^~0700~^~Bologna, pork~^~BOLOGNA,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07011~^~0700~^~Bologna, turkey~^~BOLOGNA TURKEY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07013~^~0700~^~Bratwurst, pork, cooked~^~BRATWURST,PORK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07014~^~0700~^~Braunschweiger (a liver sausage), pork~^~BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07015~^~0700~^~Bratwurst, pork, beef, link~^~BRATWURST,PORK,BF,LINK~^^^^^0^^6.25^4.27^9.02^3.87 -~07016~^~0700~^~Cheesefurter, cheese smokie, pork, beef~^~CHEESEFURTER,CHS SMOKIE,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07018~^~0700~^~Chicken spread~^~CHICKEN SPRD~^^^^^0^^6.25^4.00^4.00^4.00 -~07019~^~0700~^~Sausage, pork, chorizo, link or ground, raw~^~SAUSAGE,PORK,CHORIZO,LINK OR GROUND,RAW~^^^~Y~^^0^^^^^ -~07020~^~0700~^~Corned beef loaf, jellied~^~CORNED BEEF LOAF,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~07021~^~0700~^~Dutch brand loaf, chicken, pork and beef~^~DUTCH BRAND LOAF,CHICK,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07022~^~0700~^~Frankfurter, beef, unheated~^~FRANKFURTER,BF,UNHTD~^~hot dog, frank, wiener~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07024~^~0700~^~Frankfurter, chicken~^~FRANKFURTER,CHICKEN~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07025~^~0700~^~Frankfurter, turkey~^~FRANKFURTER,TURKEY~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07026~^~0700~^~Ham, chopped, canned~^~HAM,CHOPPED,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07027~^~0700~^~Ham, chopped, not canned~^~HAM,CHOPPED,NOT CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07028~^~0700~^~Ham, sliced, pre-packaged, deli meat (96%fat free, water added)~^~HAM,SLICED,PRE-PACKAGED,DELI MEAT (96%FAT FREE,H2O ADDED)~^^^~Y~^^0^^^^^ -~07029~^~0700~^~Ham, sliced, regular (approximately 11% fat)~^~HAM,SLICED,REG (APPROX 11% FAT)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07030~^~0700~^~Ham, minced~^~HAM,MINCED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07031~^~0700~^~Ham salad spread~^~HAM SALAD SPREAD~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07032~^~0700~^~Ham and cheese loaf or roll~^~HAM&CHS LOAF OR ROLL~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07033~^~0700~^~Ham and cheese spread~^~HAM AND CHEESE SPREAD~^^^^^0^^6.25^4.27^9.02^3.87 -~07034~^~0700~^~Headcheese, pork~^~HEADCHEESE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07036~^~0700~^~Sausage, Italian, pork, mild, raw~^~SAUSAGE,ITALIAN,PORK,MILD,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07038~^~0700~^~Knackwurst, knockwurst, pork, beef~^~KNACKWURST KNOCKWURST PORK BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07039~^~0700~^~Lebanon bologna, beef~^~LEBANON BOLOGNA BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07040~^~0700~^~Liver cheese, pork~^~LIVER CHEESE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07041~^~0700~^~Liver sausage, liverwurst, pork~^~LIVER SAUSAGE,LIVERWURST,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07043~^~0700~^~Roast beef, deli style, prepackaged, sliced~^~ROAST BF,DELI STYLE,PREPACKAGED,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07045~^~0700~^~Luncheon meat, pork, canned~^~LUNCHEON MEAT,PORK,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07046~^~0700~^~Turkey breast, low salt, prepackaged or deli, luncheon meat~^~TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07050~^~0700~^~Mortadella, beef, pork~^~MORTADELLA,BEEF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07051~^~0700~^~Olive loaf, pork~^~OLIVE LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07052~^~0700~^~Pastrami, turkey~^~PASTRAMI,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07053~^~0700~^~Pate, chicken liver, canned~^~PATE,CHICKEN LIVER,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07054~^~0700~^~Pate, goose liver, smoked, canned~^~PATE,GOOSE LIVER,SMOKED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07055~^~0700~^~Pate, liver, not specified, canned~^~PATE,LIVER,NOT SPECIFIED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07056~^~0700~^~Peppered loaf, pork, beef~^~PEPPERED LOAF PORK BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07057~^~0700~^~Pepperoni, beef and pork, sliced~^~PEPPERONI,BF & PORK,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07058~^~0700~^~Pickle and pimiento loaf, pork~^~PICKLE&PIMIENTO LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07059~^~0700~^~Polish sausage, pork~^~POLISH SAUSAGE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07060~^~0700~^~Luxury loaf, pork~^~LUXURY LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07061~^~0700~^~Mother's loaf, pork~^~MOTHER'S LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07062~^~0700~^~Picnic loaf, pork, beef~^~PICNIC LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07063~^~0700~^~Pork sausage, link/patty, unprepared~^~PORK SAUSAGE,LINK/PATTY,UNPREP~^^^^^0^^^^^ -~07064~^~0700~^~Pork sausage, link/patty, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07065~^~0700~^~Sausage, pork and beef, fresh, cooked~^~SAUSAGE,PORK & BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07066~^~0700~^~Sausage, turkey, reduced fat, brown and serve, cooked~^~SAUSAGE,TURKEY,RED FAT,BROWN & SERVE,CKD~^^^~Y~^^0^^^^^ -~07067~^~0700~^~Poultry salad sandwich spread~^~POULTRY SALAD SNDWCH SPRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07068~^~0700~^~Salami, cooked, beef~^~SALAMI CKD BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07069~^~0700~^~Salami, cooked, beef and pork~^~SALAMI,CKD,BF&PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07070~^~0700~^~Salami, cooked, turkey~^~SALAMI,COOKED,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07071~^~0700~^~Salami, dry or hard, pork~^~SALAMI,DRY OR HARD,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07072~^~0700~^~Salami, dry or hard, pork, beef~^~SALAMI,DRY OR HARD,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07073~^~0700~^~Sandwich spread, pork, beef~^~SANDWICH SPREAD,PORK,BEEF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07074~^~0700~^~Sausage, smoked link sausage, pork~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07075~^~0700~^~Sausage, smoked link sausage, pork and beef~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07077~^~0700~^~Sausage, smoked link sausage, pork and beef (nonfat dry milk added)~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF (NONFAT DRY MLK ADDED)~^^^^^0^^6.25^4.27^9.02^3.87 -~07078~^~0700~^~Thuringer, cervelat, summer sausage, beef, pork~^~THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07081~^~0700~^~Turkey breast, sliced, prepackaged~^~TURKEY BREAST,SLICED,PREPACKAGED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07083~^~0700~^~Sausage, Vienna, canned, chicken, beef, pork~^~SAUSAGE,VIENNA,CND,CHICK,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07088~^~0700~^~Honey roll sausage, beef~^~HONEY ROLL SAUSAGE,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07089~^~0700~^~Sausage, Italian, pork, mild, cooked, pan-fried~^~SAUSAGE,ITALIAN,PORK,MILD,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07090~^~0700~^~Luncheon sausage, pork and beef~^~LUNCHEON SAUSAGE,PORK&BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07091~^~0700~^~Sausage, New england brand, pork, beef~^~SAUSAGE,NEW ENGLAND BRAND,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07201~^~0700~^~Oscar Mayer, Bologna (beef)~^~OSCAR MAYER,BOLOGNA (BEEF)~^^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07207~^~0700~^~Oscar Mayer, Braunschweiger Liver Sausage (sliced)~^~OSCAR MAYER,BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07209~^~0700~^~Oscar Mayer, Chicken Breast (honey glazed)~^~OSCAR MAYER,CHICK BREAST (HONEY GLAZED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07212~^~0700~^~Oscar Mayer, Ham (chopped with natural juice)~^~OSCAR MAYER,HAM (CHOPPED W/ NAT JUICE)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07230~^~0700~^~Oscar Mayer, Salami (hard)~^~OSCAR MAYER,SALAMI (HARD)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07236~^~0700~^~Oscar Mayer, Smokies Sausage Little Cheese (pork, turkey)~^~OSCAR MAYER,SMOKIES SAUSAGE LITTLE CHS (PORK,TURKEY)~^^~Kraft Foods, Inc.~^^^0^^^^^ -~07241~^~0700~^~Oscar Mayer, Wieners (beef franks)~^~OSCAR MAYER,WIENERS (BEEF FRANKS)~^~hot dog, frankfurter, hotdog, wiener~^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07254~^~0700~^~Bacon, turkey, unprepared~^~BACON,TURKEY,UNPREP~^^^^^0^^^^^ -~07278~^~0700~^~Hormel Pillow Pak Sliced Turkey Pepperoni~^~HORMEL PILLOW PAK SLICED TURKEY PEPPERONI~^^~Hormel Foods Corp.~^^^0^^6.25^4.00^9.00^4.00 -~07900~^~0700~^~Sausage, turkey, pork, and beef, low fat, smoked~^~SAUSAGE,TURKEY,PORK,& BF,LOFAT,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07905~^~0700~^~Frankfurter, beef, pork, and turkey, fat free~^~FRANKFURTER,BF,PORK,& TURKEY,FAT FREE~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^^3.68 -~07906~^~0700~^~Luncheon meat, pork, ham, and chicken, minced, canned, reduced sodium, added ascorbic acid, includes SPAM, 25% less sodium~^~LUNCHEON MEAT,PORK,HAM,&CHICK,MINCD,CND,RED NA,VIT C, (SPAM)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07908~^~0700~^~Luncheon meat, pork with ham, minced, canned, includes Spam (Hormel)~^~LUNCHEON MEAT,PORK W/ HAM,MINCED,CND,INCL SPAM (HORMEL)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07909~^~0700~^~Luncheon meat, pork and chicken, minced, canned, includes Spam Lite~^~LUNCHEON MEAT,PORK & CHICK,MINCED,CND,INCL SPAM LITE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07910~^~0700~^~Bratwurst, veal, cooked~^~BRATWURST VEAL CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07911~^~0700~^~Liverwurst spread~^~LIVERWURST SPRD~^^^^^0^^6.25^4.27^9.02^3.87 -~07912~^~0700~^~Roast beef spread~^~ROAST BF SPRD~^^^^^0^^6.25^4.00^9.00^4.00 -~07913~^~0700~^~Salami, pork, beef, less sodium~^~SALAMI PORK BF LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07914~^~0700~^~Sausage, Italian, sweet, links~^~SAUSAGE ITALIAN SWT LINKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07915~^~0700~^~Sausage, Polish, beef with chicken, hot~^~SAUSAGE POLISH BF W/ CHICK HOT~^^^^^0^^6.25^4.00^9.00^4.00 -~07916~^~0700~^~Sausage, Polish, pork and beef, smoked~^~SAUSAGE POLISH PORK & BF SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07917~^~0700~^~Sausage, pork and beef, with cheddar cheese, smoked~^~SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07918~^~0700~^~Sausage, summer, pork and beef, sticks, with cheddar cheese~^~SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS~^^^^^0^^6.25^4.00^9.00^4.00 -~07919~^~0700~^~Sausage, turkey, breakfast links, mild, raw~^~SAUSAGE,TURKEY,BRKFST LINKS,MILD,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07920~^~0700~^~Swisswurst, pork and beef, with swiss cheese, smoked~^~SWISSWURST PORK & BF W/ SWISS CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07921~^~0700~^~Bacon and beef sticks~^~BACON & BF STKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07922~^~0700~^~Bratwurst, beef and pork, smoked~^~BRATWURST BF & PORK SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07923~^~0700~^~Bratwurst, chicken, cooked~^~BRATWURST,CHICK,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07924~^~0700~^~Bratwurst, pork, beef and turkey, lite, smoked~^~BRATWURST PORK BF & TURKEY LITE SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07925~^~0700~^~Pastrami, beef, 98% fat-free~^~PASTRAMI BF 98% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07926~^~0700~^~Salami, Italian, pork~^~SALAMI ITALIAN PORK~^^^^^0^^6.25^4.00^9.00^4.00 -~07927~^~0700~^~Sausage, Italian, turkey, smoked~^~SAUSAGE ITALIAN TURKEY SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07928~^~0700~^~Sausage, chicken, beef, pork, skinless, smoked~^~SAUSAGE CHICK BF PORK SKINLESS SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07929~^~0700~^~Sausage, turkey, hot, smoked~^~SAUSAGE TURKEY HOT SMOKED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07930~^~0700~^~Yachtwurst, with pistachio nuts, cooked~^~YACHTWURST,W/ PISTACHIO NUTS,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07931~^~0700~^~Beerwurst, pork and beef~^~BEERWURST PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07932~^~0700~^~Chicken breast, fat-free, mesquite flavor, sliced~^~CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07933~^~0700~^~Chicken breast, oven-roasted, fat-free, sliced~^~CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07934~^~0700~^~Kielbasa, Polish, turkey and beef, smoked~^~KIELBASA,POLISH,TURKEY & BF,SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07935~^~0700~^~Chicken breast, roll, oven-roasted~^~CHICKEN BREAST,ROLL,OVEN-ROASTED~^^^^^0^^6.25^4.00^9.00^4.00 -~07936~^~0700~^~Bologna, pork and turkey, lite~^~BOLOGNA PORK & TURKEY LITE~^^^^^0^^6.25^4.00^9.00^4.00 -~07937~^~0700~^~Bologna, pork, turkey and beef~^~BOLOGNA PORK TURKEY & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07938~^~0700~^~Ham, honey, smoked, cooked~^~HAM HONEY SMOKED CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07939~^~0700~^~Frankfurter, pork~^~FRANKFURTER,PORK~^~hot dog, wiener, frank~^^^^0^^6.25^4.00^9.00^4.00 -~07940~^~0700~^~Macaroni and cheese loaf, chicken, pork and beef~^~MACARONI & CHS LOAF CHICK PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07941~^~0700~^~Salami, Italian, pork and beef, dry, sliced, 50% less sodium~^~SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07942~^~0700~^~Pate, truffle flavor~^~PATE TRUFFLE FLAVOR~^^^^^0^^6.25^4.00^9.00^4.00 -~07943~^~0700~^~Turkey, breast, smoked, lemon pepper flavor, 97% fat-free~^~TURKEY,BREAST,SMOKED,LEMON PEPPER FLAVOR,97% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07944~^~0700~^~Turkey, white, rotisserie, deli cut~^~TURKEY WHITE ROTISSERIE DELI CUT~^^^^^0^^6.25^4.00^9.00^4.00 -~07945~^~0700~^~Frankfurter, beef, heated~^~FRANKFURTER BF HTD~^~hot dog, frank, wiener~^^^^0^^6.25^4.00^9.00^4.00 -~07949~^~0700~^~Frankfurter, meat, heated~^~FRANKFURTER MEAT HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~07950~^~0700~^~Frankfurter, meat~^~FRANKFURTER MEAT~^^^^^0^^6.25^4.00^9.00^4.00 -~07951~^~0700~^~Scrapple, pork~^~SCRAPPLE,PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07952~^~0700~^~Bologna, chicken, turkey, pork~^~BOLOGNA,CHICK,TURKEY,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07953~^~0700~^~Pork sausage, link/patty, fully cooked, microwaved~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,MICROWAVED~^^^~Y~^^0^^^^^ -~07954~^~0700~^~Sausage, breakfast sausage, beef, pre-cooked, unprepared~^~SAUSAGE,BRKFST SAUSAGE,BF,PRE-COOKED,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07955~^~0700~^~Sausage, turkey, fresh, raw~^~SAUSAGE,TURKEY,FRSH,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07956~^~0700~^~Sausage, beef, fresh, cooked~^~SAUSAGE,BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07957~^~0700~^~Sausage, pork and turkey, pre-cooked~^~SAUSAGE,PORK & TURKEY,PRE-COOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07958~^~0700~^~Sausage, turkey, fresh, cooked~^~SAUSAGE,TURKEY,FRSH,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07959~^~0700~^~Bologna, chicken, pork, beef~^~BOLOGNA,CHICK,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07960~^~0700~^~Bologna, chicken, pork~^~BOLOGNA,CHICK,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07961~^~0700~^~Chicken breast, deli, rotisserie seasoned, sliced, prepackaged~^~CHICKEN BREAST,DELI,ROTISSERIE SEASONED,SLICED,PREPACKAGED~^^^~Y~^^0^^^^^ -~07962~^~0700~^~Frankfurter, meat and poultry, unheated~^~Frankfurter, meat and poultry, unheated~^^^~Y~^^0^^^^^ -~07963~^~0700~^~Frankfurter, meat and poultry, cooked, boiled~^~Frankfurter, meat and poultry, cooked, boiled~^^^~Y~^^0^^^^^ -~07964~^~0700~^~Frankfurter, meat and poultry, cooked, grilled~^~Frankfurter, meat and poultry, cooked, grilled~^^^~Y~^^0^^^^^ -~07965~^~0700~^~Pork sausage, link/patty, reduced fat, unprepared~^~PORK SAUSAGE,LINK/PATTY,RED FAT,UNPREP~^^^~Y~^^0^^^^^ -~07966~^~0700~^~Pork sausage, link/patty, reduced fat, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,RED FAT,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07967~^~0700~^~Pork sausage, link/patty, fully cooked, unheated~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,UNHTD~^^^^^0^^^^^ -~07968~^~0700~^~Kielbasa, fully cooked, grilled~^~KIELBASA,FULLY CKD,GRILLED~^^^~Y~^^0^^^^^ -~07969~^~0700~^~Kielbasa, fully cooked, pan-fried~^~KIELBASA,FULLY CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07970~^~0700~^~Kielbasa, fully cooked, unheated~^~KIELBASA,FULLY CKD,UNHTD~^^^~Y~^^0^^^^^ -~07971~^~0700~^~Bologna, meat and poultry~^~BOLOGNA,MEAT & POULTRY~^^^~Y~^^0^^^^^ -~07972~^~0700~^~Meatballs, frozen, Italian style~^~MEATBALLS,FRZ,ITALIAN STYLE~^^^^^0^^^^^ -~07973~^~0700~^~Bacon, turkey, microwaved~^~BACON,TURKEY,MICROWAVED~^^^~Y~^^0^^^^^ -~07974~^~0700~^~Bacon, turkey, low sodium~^~BACON,TURKEY,LO NA~^^^~Y~^^0^^6.25^^^ -~07976~^~0700~^~Sausage, chicken or turkey, Italian style, lower sodium~^~SAUSAGE,CHICK OR TURKEY,ITALIAN STYLE,LOWER NA~^^^~Y~^^0^^6.25^^^ -~07977~^~0700~^~Ham, smoked, extra lean, low sodium~^~HAM,SMOKED,EX LN,LO NA~^^^~Y~^^0^^6.25^^^ -~07978~^~0700~^~Pork sausage, reduced sodium, cooked~^~PORK SAUSAGE,RED NA,CKD~^^^~Y~^^0^^6.25^^^ -~07979~^~0700~^~Sausage, pork, turkey, and beef, reduced sodium~^~SAUSAGE,PORK,TURKEY,& BF,RED NA~^^^~Y~^^0^^^^^ -~08002~^~0800~^~Cereals ready-to-eat, POST, ALPHA-BITS~^~CEREALS RTE,POST,ALPHA-BITS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08010~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08011~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH with CRUNCHBERRIES~^~CEREALS RTE,QUAKER,CAP'N CRUNCH W/ CRUNCHBERRIES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08012~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S PEANUT BUTTER CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S PNUT BUTTER CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08013~^~0800~^~Cereals ready-to-eat, GENERAL MILLS, CHEERIOS~^~CEREALS RTE,GENERAL MILLS,CHEERIOS~^^~General Mills Inc.~^~Y~^^0^^6.25^^^ -~08015~^~0800~^~Cereals ready-to-eat, POST, COCOA PEBBLES~^~CEREALS RTE,POST,COCOA PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08018~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER CRUNCHY BRAN~^~CEREALS RTE,QUAKER,QUAKER CRUNCHY BRAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08025~^~0800~^~Cereals ready-to-eat, RALSTON CRISP RICE~^~CEREALS RTE,RALSTON CRISP RICE~^^~Ralston Foods~^~Y~^^0^^^^^ -~08029~^~0800~^~Cereals ready-to-eat, POST Bran Flakes~^~CEREALS RTE,POST BRAN FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08034~^~0800~^~Cereals ready-to-eat, POST, FRUITY PEBBLES~^~CEREALS RTE,POST,FRUITY PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08037~^~0800~^~Cereals ready-to-eat, granola, homemade~^~CEREALS RTE,GRANOLA,HOMEMADE~^^^~Y~^^0^^5.80^^^ -~08038~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Cereal~^~CEREALS RTE,POST,GRAPE-NUTS CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08039~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Flakes~^~CEREALS RTE,POST,GRAPE-NUTS FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08046~^~0800~^~Cereals ready-to-eat, POST, Honeycomb Cereal~^~CEREALS RTE,POST,HONEYCOMB CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08047~^~0800~^~Cereals ready-to-eat, QUAKER, KING VITAMAN~^~CEREALS RTE,QUAKER,KING VITAMAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08049~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT LIFE, plain~^~CEREALS RTE,QUAKER,QUAKER OAT LIFE,PLN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08054~^~0800~^~Cereals ready-to-eat, QUAKER, 100% Natural Granola, Oats, Wheat and Honey~^~CEREALS RTE,QUAKER,100% NAT GRANOLA,OATS,WHEAT & HONEY~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08059~^~0800~^~Cereals ready-to-eat, QUAKER, SWEET CRUNCH/QUISP~^~CEREALS RTE,QUAKER,SWT CRUNCH/QUISP~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08061~^~0800~^~Cereals ready-to-eat, POST Raisin Bran Cereal~^~CEREALS RTE,POST RAISIN BRAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08066~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Rice~^~CEREALS RTE,QUAKER,QUAKER PUFFED RICE~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08073~^~0800~^~Cereals ready-to-eat, POST, GOLDEN CRISP~^~CEREALS RTE,POST,GOLDEN CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08074~^~0800~^~Cereals ready-to-eat, RALSTON TASTEEOS~^~CEREALS RTE,RALSTON TASTEEOS~^^~Ralston Foods~^~Y~^^0^^^^^ -~08081~^~0800~^~Cereals ready-to-eat, POST, Honey Nut Shredded Wheat~^~CEREALS RTE,POST,HONEY NUT SHREDDED WHEAT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08083~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CORN BURSTS~^~CEREALS RTE,MALT-O-MEAL,CORN BURSTS~^^~MOM Brands~^~Y~^^0^^^^^ -~08084~^~0800~^~Cereals ready-to-eat, wheat germ, toasted, plain~^~CEREALS RTE,WHEAT GERM,TSTD,PLN~^^^~Y~^^0^^5.80^3.59^8.37^3.78 -~08085~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Honey Crunch Wheat Germ~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER HONEY CRUNCH WHEAT GERM~^^~Sun Country Foods Inc.~^~Y~^^0^^6.25^^^ -~08090~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, dry~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,DRY~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08091~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08092~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, dry~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,DRY~^~original~^~The Quaker Oats, Co.~^~Y~^^0^^^3.46^8.37^4.16 -~08093~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, prepared (microwaved or boiling water added), without salt~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,PREP,WO/ SALT~^^~The Quaker Oats, Co.~^^^0^^^3.46^8.37^4.16 -~08094~^~0800~^~Cereals, QUAKER, corn grits, instant, cheddar cheese flavor, dry~^~CEREALS,QUAKER,CORN GRITS,INST,CHEDDAR CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08096~^~0800~^~Cereals, QUAKER, Instant Grits, Country Bacon flavor, dry~^~CEREALS,QUAKER,INST GRITS,COUNTRY BACON FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08100~^~0800~^~Cereals, CREAM OF RICE, dry~^~CEREALS,CRM OF RICE,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.95^3.82^8.37^4.16 -~08102~^~0800~^~Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry~^~CEREALS,CRM OF WHEAT,REG,10 MINUTE COOKING,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08103~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08104~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,DRY~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~08105~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), cooked with water, without salt~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,QUICK,CKD W/ H2O,WO/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08106~^~0800~^~Cereals, CREAM OF WHEAT, instant, dry~^~CEREALS,CREAM OF WHEAT,INST,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08107~^~0800~^~Cereals, CREAM OF WHEAT, instant, prepared with water, without salt~^~CEREALS,CREAM OF WHEAT,INST,PREP W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08116~^~0800~^~Cereals, MALT-O-MEAL, original, plain, dry~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,DRY~^^~MOM Brands~^~Y~^^0^^5.70^3.60^8.37^4.10 -~08120~^~0800~^~Cereals, oats, regular and quick, not fortified, dry~^~CEREALS,OATS,REG & QUICK,NOT FORT,DRY~^~oatmeal, old-fashioned oats, rolled oats~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08121~^~0800~^~Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt~^~CEREALS,OATS,REG & QUICK,UNENR,CKD W/ H2O,WO/ SALT~^~oatmeal, cooked~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08122~^~0800~^~Cereals, oats, instant, fortified, plain, dry~^~CEREALS,OATS,INST,FORT,PLN,DRY~^~instant oatmeal, Quaker original flavor~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08123~^~0800~^~Cereals, oats, instant, fortified, plain, prepared with water (boiling water added or microwaved)~^~CEREALS,OATS,INST,FORT,PLN,PREP W/ H2O~^~instant oatmeal~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08124~^~0800~^~Cereals, QUAKER, Instant Oatmeal, apples and cinnamon, dry~^~CEREALS,QUAKER,INST OATMEAL,APPLS & CINN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08128~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, dry~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,DRY~^~oatmeal~^^~Y~^^0^^5.83^^^ -~08129~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08130~^~0800~^~Cereals, QUAKER, Instant Oatmeal, maple and brown sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,MAPLE & BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08133~^~0800~^~Cereals, oats, instant, fortified, with raisins and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08138~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,MARSHMLLW MATEYS~^^~MOM Brands~^~Y~^^0^^^^^ -~08142~^~0800~^~Cereals, WHEATENA, dry~^~CEREALS,WHEATENA,DRY~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08143~^~0800~^~Cereals, WHEATENA, cooked with water~^~CEREALS,WHEATENA,CKD W/ H2O~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08144~^~0800~^~Cereals, whole wheat hot natural cereal, dry~^~CEREALS,WHL WHEAT HOT NAT CRL,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~08145~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, without salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,WO/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08146~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Wheat~^~CEREALS RTE,QUAKER,QUAKER PUFFED WHEAT~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08147~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original big biscuit~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL BIG BISCUIT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08148~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08156~^~0800~^~Cereals ready-to-eat, rice, puffed, fortified~^~CEREALS RTE,RICE,PUFFED,FORT~^^^^^0^^5.95^3.82^8.37^4.16 -~08157~^~0800~^~Cereals ready-to-eat, wheat, puffed, fortified~^~CEREALS RTE,WHEAT,PUFFED,FORT~^^^^^0^^5.83^3.59^8.37^3.78 -~08160~^~0800~^~Cereals, corn grits, yellow, regular and quick, unenriched, dry~^~CEREALS,CORN GRITS,YEL,REG & QUICK,UNENR,DRY~^^^^^0^^6.25^3.46^8.37^4.16 -~08161~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08164~^~0800~^~Cereals, corn grits, yellow, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08165~^~0800~^~Cereals, corn grits, yellow, regular, quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,YEL,REG,QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08168~^~0800~^~Cereals, CREAM OF RICE, cooked with water, with salt~^~CEREALS,CREAM OF RICE,CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.95^3.82^8.37^4.16 -~08169~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08172~^~0800~^~Cereals, farina, unenriched, dry~^~CEREALS,FARINA,UNENR,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~08173~^~0800~^~Cereals, farina, enriched, cooked with water, with salt~^~CEREALS,FARINA,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08177~^~0800~^~Cereals, MALT-O-MEAL, chocolate, dry~^~CEREALS,MALT-O-MEAL,CHOC,DRY~^^~MOM Brands~^^^0^^5.70^^^ -~08180~^~0800~^~Cereals, oats, regular and quick and instant, unenriched, cooked with water (includes boiling and microwaving), with salt~^~CEREALS,OATS,REG & QUICK & INST,UNENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.46^8.37^4.12 -~08182~^~0800~^~Cereals, WHEATENA, cooked with water, with salt~^~CEREALS,WHEATENA,CKD W/ H2O,W/ SALT~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08183~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, with salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08191~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, lightly frosted, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,LIGHTLY FRSTD,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08192~^~0800~^~Cereals ready-to-eat, POST SELECTS Blueberry Morning~^~CEREALS RTE,POST SELECTS BLUEBERRY MORNING~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08200~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, dry~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08204~^~0800~^~Cereals ready-to-eat, chocolate-flavored frosted puffed corn~^~CEREALS RTE,CHOCOLATE-FLAVORED FRSTD PUFFED CORN~^^^~Y~^^0^^^^^ -~08206~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COCO-ROOS~^~CEREALS RTE,MALT-O-MEAL,COCO-ROOS~^^~MOM Brands~^~Y~^^0^^^^^ -~08210~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT CINNAMON LIFE~^~CEREALS RTE,QUAKER,QUAKER OAT CINN LIFE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08211~^~0800~^~Cereals ready-to-eat, QUAKER, HONEY GRAHAM OH!S~^~CEREALS RTE,QUAKER,HONEY GRAHAM OH!S~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08214~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares~^~CEREALS RTE,QUAKER,OATMEAL SQUARES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08215~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares, cinnamon~^~CEREALS RTE,QUAKER,OATMEAL SQUARES,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08216~^~0800~^~Cereals ready-to-eat, QUAKER, Toasted Multigrain Crisps~^~CEREALS RTE,QUAKER,TSTD MULTIGRAIN CRISPS~^~QUAKER Oat Bran Cereal~^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08218~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER 100% Natural Granola with Oats, Wheat, Honey, and Raisins~^~CEREALS RTE,QUAKER,QUAKER GRANOLA W/ OATS,WHEAT& RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08220~^~0800~^~Cereals ready-to-eat, QUAKER, Low Fat 100% Natural Granola with Raisins~^~CEREALS RTE,QUAKER,LOFAT 100% NAT GRANOLA W/ RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08221~^~0800~^~Cereals, QUAKER, Instant Grits, Butter flavor, dry~^~CEREALS,QUAKER,INST GRITS,BUTTER FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08225~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream variety, dry~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM VAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08228~^~0800~^~Cereals, QUAKER, Instant Oatmeal, raisins, dates and walnuts, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISINS,DATES & WALNUTS,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08231~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, dry~^~CEREALS,QUAKER,OAT BRAN,QUAKER/MOTHER'S OAT BRAN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08236~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, prepared with water, no salt~^~CEREALS,QKR,OAT BRAN,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08240~^~0800~^~Cereals, Oat Bran, QUAKER, QUAKER/MOTHER'S Oat Bran, prepared with water, salt~^~CEREALS,OAT BRAN,QKR,QKR/MOTHER'S OAT BRAN,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08249~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, no salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08252~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08290~^~0800~^~Cereals ready-to-eat, HEALTH VALLEY, FIBER 7 Flakes~^~CEREALS RTE,HEALTH VALLEY,FIBER 7 FLAKES~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~08305~^~0800~^~Cereals ready-to-eat, Post, Waffle Crisp~^~CEREALS RTE,POST,WAFFLE CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08314~^~0800~^~Cereals, QUAKER, hominy grits, white, quick, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,QUICK,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08316~^~0800~^~Cereals, QUAKER, hominy grits, white, regular, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,REG,DRY~^~old fashioned~^~The Quaker Oats, Co.~^^^0^^^^^ -~08346~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,COLOSSAL CRUNCH~^^~MOM Brands~^~Y~^^0^^^^^ -~08347~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, BERRY COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,BERRY COLOSSAL CRUNCH~^^~MOM Brands~^^^0^^^^^ -~08348~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Crispy Rice~^~CEREALS RTE,MALT-O-MEAL,CRISPY RICE~^^~MOM Brands~^^^0^^^^^ -~08349~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, TOOTIE FRUITIES~^~CEREALS RTE,MALT-O-MEAL,TOOTIE FRUITIES~^^~MOM Brands~^~Y~^^0^^^^^ -~08351~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S PEANUT BUTTER BUMPERS Cereal~^~CEREALS RTE,QUAKER,MOTHER'S PNUT BUTTER BUMPERS CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08352~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Toasted Oat Bran cereal~^~CEREALS RTE,QUAKER,MOTHER'S TSTD OAT BRAN CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08353~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Cinnamon Oat Crunch~^~CEREALS RTE,QUAKER,MOTHER'S CINN OAT CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08354~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S GRAHAM BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S GRAHAM BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08355~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S COCOA BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S COCOA BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08363~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Toasted Wheat Bran~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER TSTD WHEAT BRAN~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08365~^~0800~^~Cereals ready-to-eat, QUAKER, Shredded Wheat, bagged cereal~^~CEREALS RTE,QUAKER,SHREDDED WHEAT,BAGGED CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08366~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Wheat Germ, Regular~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER WHEAT GERM,REG~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08402~^~0800~^~Cereals, QUAKER, Quick Oats, Dry~^~CEREALS,QUAKER,QUICK OATS,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08409~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Flakes~^~CEREALS RTE,MALT-O-MEAL,FRSTD FLAKES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08410~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon-Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,CINNAMON-SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08411~^~0800~^~Cereals, QUAKER, Instant Oatmeal, DINOSAUR EGGS, Brown Sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,DINOSAUR EGGS,BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08417~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Banana Bread, dry~^~CEREALS,QUAKER,INST OATMEAL,BANANA BREAD,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08435~^~0800~^~Cereals ready-to-eat, UNCLE SAM CEREAL~^~CEREALS RTE,UNCLE SAM CRL~^^~Attune Foods, Inc.~^~Y~^^0^^^^^ -~08436~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Raisin and Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISIN & SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08444~^~0800~^~Cereals, QUAKER, Instant Grits, Redeye Gravy & Country Ham flavor, dry~^~CEREALS,QUAKER,INST GRITS,REDEYE GRVY COUNTRY HAM FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08449~^~0800~^~Cereals, QUAKER, Instant Grits Product with American Cheese Flavor, dry~^~CEREALS,QUAKER,INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08450~^~0800~^~Cereals, QUAKER, Instant Grits, Ham 'n' Cheese flavor, dry~^~CEREALS,QUAKER,INST GRITS,HAM 'N' CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08451~^~0800~^~Cereals, QUAKER, Quick Oats with Iron, Dry~^~CEREALS,QUAKER,QUICK OATS W/ IRON,DRY~^~quick oats with iron for WIC program~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08452~^~0800~^~Cereals, QUAKER, Whole Wheat Natural Cereal, dry~^~CEREALS,QUAKER,WHL WHEAT NAT CRL,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08476~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey BUZZERS~^~CEREALS RTE,MALT-O-MEAL,HONEY BUZZERS~^^~MOM Brands~^^^0^^6.25^^^ -~08478~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, GOLDEN PUFFS~^~CEREALS RTE,MALT-O-MEAL,GOLDEN PUFFS~^^~MOM Brands~^^^0^^6.25^^^ -~08481~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, HONEY GRAHAM SQUARES~^~CEREALS RTE,MALT-O-MEAL,HONEY GRAHAM SQUARES~^^~MOM Brands~^^^0^^6.25^^^ -~08484~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Raisin Bran Cereal~^~CEREALS RTE,MALT-O-MEAL,RAISIN BRAN CRL~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08487~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Blueberry MUFFIN TOPS Cereal~^~CEREALS RTE,MALT-O-MEAL,BLUEBERRY MUFFIN TOPS CRL~^^~MOM Brands~^^^0^^6.25^^^ -~08488~^~0800~^~Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,FARINA HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08489~^~0800~^~Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,MAPLE & BROWN SUGAR HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08491~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Honey Nut TOASTY O'S~^~CEREALS RTE,MOM'S BEST,HONEY NUT TOASTY O'S~^^~MOM Brands~^^^0^^6.25^^^ -~08493~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Apple ZINGS~^~CEREALS RTE,MALT-O-MEAL,APPL ZINGS~^^~MOM Brands~^^^0^^6.25^^^ -~08494~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CINNAMON TOASTERS~^~CEREALS RTE,MALT-O-MEAL,CINN TOASTERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08495~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Cocoa DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,COCOA DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08500~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Mini SPOONERS~^~CEREALS RTE,MALT-O-MEAL,FRSTD MINI SPOONERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08501~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Fruity DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,FRUITY DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08504~^~0800~^~Cereals ready-to-eat, RALSTON Enriched Wheat Bran flakes~^~CEREALS RTE,RALSTON ENR WHEAT BRAN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08505~^~0800~^~Cereals ready-to-eat, RALSTON Corn Biscuits~^~CEREALS RTE,RALSTON CORN BISCUITS~^^~Ralston Foods~^^^0^^^^^ -~08506~^~0800~^~Cereals ready-to-eat, RALSTON Corn Flakes~^~CEREALS RTE,RALSTON CORN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08507~^~0800~^~Cereals ready-to-eat, RALSTON Crispy Hexagons~^~CEREALS RTE,RALSTON CRISPY HEXAGONS~^^~Ralston Foods~^^^0^^^^^ -~08510~^~2500~^~Milk and cereal bar~^~MILK & CRL BAR~^^^~Y~^^0^^^^^ -~08511~^~0800~^~Cereals, MALT-O-MEAL, original, plain, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08512~^~0800~^~Cereals, MALT-O-MEAL, chocolate, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,CHOC,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08544~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Cranberry Almond Crunch~^~CEREALS RTE,POST GREAT GRAINS CRANBERRY ALMOND CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08546~^~2500~^~Rice and Wheat cereal bar~^~RICE & WHEAT CRL BAR~^^^~Y~^^0^^6.25^^^ -~08549~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal~^~CEREALS RTE,QUAKER,QUAKER HONEY GRAHAM LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08550~^~0800~^~Cereals ready-to-eat, QUAKER, Christmas Crunch~^~CEREALS RTE,QUAKER,CHRISTMAS CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08554~^~0800~^~Cereals ready-to-eat, POST SELECTS Maple Pecan Crunch~^~CEREALS RTE,POST SELECTS MAPLE PECAN CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08571~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS, Pumpkin Granola~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS,PUMPKIN GRANOLA~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08573~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry~^~CEREALS,CRM OF WHEAT,2 1/2 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08574~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN CK,CKD W/H2O,STOVE-TOP,WO/SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08575~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN COOK TIME,CKD W/H2O,MW,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08576~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, dry~^~CEREALS,CRM OF WHEAT,1 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08577~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,STOVE-TOP,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08578~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,MICROWAVED,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08580~^~0800~^~Incaparina, dry mix (corn and soy flours), unprepared~^~INCAPARINA,DRY MIX (CORN & SOY FLOURS),UNPREP~^^^^^0^^6.25^^^ -~08625~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S Halloween Crunch~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S HALLOWEEN CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08627~^~0800~^~Cereals ready-to-eat, QUAKER, Natural Granola Apple Cranberry Almond~^~CEREALS RTE,QUAKER,NAT GRANOLA APPL CRANBERRY ALMOND~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08628~^~0800~^~Cereals ready-to-eat, QUAKER, Maple Brown Sugar LIFE Cereal~^~CEREALS RTE,QUAKER,MAPLE BROWN SUGAR LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08629~^~0800~^~Cereals ready-to-eat, QUAKER, Cap'n Crunch's OOPS! All Berries Cereal~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S OOPS! ALL BERRIES CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08632~^~0800~^~Cereals ready-to-eat, QUAKER Oatmeal Squares, Golden Maple~^~CEREALS RTE,QUAKER OATMEAL SQUARES,GOLDEN MAPLE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08633~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS with vanilla bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS W/ VANILLA BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08639~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Spice, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,CINN SPICE,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08640~^~0800~^~Cereals, QUAKER, Instant Oatmeal Organic, Regular~^~CEREALS,QUAKER,INST OATMEAL ORGANIC,REG~^~instant oatmeal, not fortified, no added salt~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08641~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream, variety of flavors, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08642~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Apple and Cinnamon, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,APPL & CINN,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08655~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, pecan bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,PECAN BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08656~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS flakes~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS FLAKES~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08657~^~0800~^~Cereals ready-to-eat, BARBARA'S PUFFINS, original~^~CEREALS RTE,BARBARA'S PUFFINS,ORIGINAL~^^~Barbara's Bakery, Inc~^~Y~^^0^^^^^ -~08662~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with real strawberries~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ REAL STRAWBERRIES~^^~Post Foods, LLC~^^^0^^^^^ -~08665~^~0800~^~Cereals ready-to-eat, POST HONEY BUNCHES OF OATS with cinnamon bunches~^~CEREALS RTE,POST HONEY BUNCHES OF OATS W/ CINN BUNCHES~^^~Post Foods, LLC~^^^0^^6.25^^^ -~08672~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CHOCOLATE MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,CHOC MARSHMLLW MATEYS~^^~MOM Brands~^^^0^^6.25^^^ -~08673~^~0800~^~Cereals, ready-to-eat, MALT-O-MEAL, Blueberry Mini SPOONERS~^~CEREALS,RTE,MALT-O-MEAL,BLUEBERRY MINI SPOONERS~^^~MOM Brands~^^^0^^6.25^^^ -~08674~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY~^^~MOM Brands~^^^0^^6.25^^^ -~08675~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey & almonds~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY & ALMONDS~^^~MOM Brands~^^^0^^6.25^^^ -~08676~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey Nut SCOOTERS~^~CEREALS RTE,MALT-O-MEAL,HONEY NUT SCOOTERS~^^~MOM Brands~^^^0^^6.25^^^ -~08680~^~0800~^~Cereals, oats, instant, fortified, maple and brown sugar, dry~^~CEREALS,OATS,INST,FORT,MAPLE & BROWN SUGAR,DRY~^^^~Y~^^0^^^^^ -~08685~^~0800~^~Cereals ready-to-eat, QUAKER WHOLE HEARTS oat cereal~^~CEREALS RTE,QUAKER WHL HEARTS OAT CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08686~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, maple and brown sugar~^~CEREALS,QUAKER,WT CONTROL INST OATMEAL,MAPLE & BROWN SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08687~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, banana bread~^~CEREALS,QUAKER,WEIGHT CONTROL INST OATMEAL,BANANA BREAD~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08688~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Swirl, high fiber~^~CEREALS,QUAKER,INST OATMEAL,CINN SWIRL,HI FIBER~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08689~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, blueberry hazelnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,BLUEBERRY HAZELNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08690~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, apple walnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,APPL WALNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08691~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, summer berry, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,SMMR BERRY,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08692~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, peach almond, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,PEACH ALMOND,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08693~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, cherry pistachio, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,CHERRY PISTACHIO,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08694~^~0800~^~Cereals, QUAKER, Instant Oatmeal, weight control, cinnamon~^~CEREALS,QUAKER,INST OATMEAL,WEIGHT CONTROL,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08709~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Sweetened WHEAT-FULS~^~CEREALS RTE,MOM'S BEST,SWTND WHEAT-FULS~^^~MOM Brands~^^^0^^6.25^^^ -~09001~^~0900~^~Acerola, (west indian cherry), raw~^~ACEROLA,(WEST INDIAN CHERRY),RAW~^^^^~18% seed, 2% stem end~^20^~Malpighia emarginata~^6.25^3.36^8.37^3.60 -~09002~^~0900~^~Acerola juice, raw~^~ACEROLA JUICE,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09003~^~0900~^~Apples, raw, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,WITH SKIN~^^^~Y~^~Core and stem~^10^~Malus domestica~^6.25^3.36^8.37^3.60 -~09004~^~0900~^~Apples, raw, without skin~^~APPLES,RAW,WITHOUT SKIN~^^^~Y~^~10% core and stem, 13% skin~^23^~Malus domestica~^6.25^3.36^8.37^3.60 -~09005~^~0900~^~Apples, raw, without skin, cooked, boiled~^~APPLES,RAW,WO/SKN,CKD,BLD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09006~^~0900~^~Apples, raw, without skin, cooked, microwave~^~APPLES,RAW,WO/ SKN,CKD,MICROWAVE~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09008~^~0900~^~Apples, canned, sweetened, sliced, drained, heated~^~APPLES,CND,SWTND,SLICED,DRND,HTD~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09009~^~0900~^~Apples, dehydrated (low moisture), sulfured, uncooked~^~APPLES,DEHYD (LO MOIST),SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09010~^~0900~^~Apples, dehydrated (low moisture), sulfured, stewed~^~APPLES,DEHYD (LO MOIST),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09011~^~0900~^~Apples, dried, sulfured, uncooked~^~APPLES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09012~^~0900~^~Apples, dried, sulfured, stewed, without added sugar~^~APPLES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09013~^~0900~^~Apples, dried, sulfured, stewed, with added sugar~^~APPLES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^^^ -~09014~^~0900~^~Apples, frozen, unsweetened, unheated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,UNHTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09015~^~0900~^~Apples, frozen, unsweetened, heated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,HTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09016~^~0900~^~Apple juice, canned or bottled, unsweetened, without added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09017~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09018~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09019~^~0900~^~Applesauce, canned, unsweetened, without added ascorbic acid (Includes foods for USDA's Food Distribution Program)~^~APPLESAUCE,CND,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09020~^~0900~^~Applesauce, canned, sweetened, without salt~^~APPLESAUCE,CND,SWTND,WO/ SALT~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09021~^~0900~^~Apricots, raw~^~APRICOTS,RAW~^^^~Y~^~Pits~^7^~Prunus armeniaca~^6.25^3.36^8.37^3.60 -~09022~^~0900~^~Apricots, canned, water pack, with skin, solids and liquids~^~APRICOTS,CND,H2O PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09023~^~0900~^~Apricots, canned, water pack, without skin, solids and liquids~^~APRICOTS,CND,H2O PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.60 -~09024~^~0900~^~Apricots, canned, juice pack, with skin, solids and liquids~^~APRICOTS,CND,JUC PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09025~^~0900~^~Apricots, canned, extra light syrup pack, with skin, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~APRICOTS,CND,EX LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09026~^~0900~^~Apricots, canned, light syrup pack, with skin, solids and liquids~^~APRICOTS,CND,LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09027~^~0900~^~Apricots, canned, heavy syrup pack, with skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09028~^~0900~^~Apricots, canned, heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.75 -~09029~^~0900~^~Apricots, canned, extra heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,EX HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.78 -~09030~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, uncooked~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09031~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, stewed~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09032~^~0900~^~Apricots, dried, sulfured, uncooked~^~APRICOTS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09033~^~0900~^~Apricots, dried, sulfured, stewed, without added sugar~^~APRICOTS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09034~^~0900~^~Apricots, dried, sulfured, stewed, with added sugar~^~APRICOTS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09035~^~0900~^~Apricots, frozen, sweetened~^~APRICOTS,FROZEN,SWEETENED~^^^^^0^^6.25^3.36^8.37^3.78 -~09036~^~0900~^~Apricot nectar, canned, with added ascorbic acid~^~APRICOT NECTAR,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09037~^~0900~^~Avocados, raw, all commercial varieties~^~AVOCADOS,RAW,ALL COMM VAR~^^^~Y~^~Seed and skin~^26^~Persea americana~^6.25^3.36^8.37^3.60 -~09038~^~0900~^~Avocados, raw, California~^~AVOCADOS,RAW,CALIFORNIA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09039~^~0900~^~Avocados, raw, Florida~^~AVOCADOS,RAW,FLORIDA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09040~^~0900~^~Bananas, raw~^~BANANAS,RAW~^^^~Y~^~Skin~^36^~Musa acuminata Colla~^6.25^3.36^8.37^3.60 -~09041~^~0900~^~Bananas, dehydrated, or banana powder~^~BANANAS,DEHYD,OR BANANA PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09042~^~0900~^~Blackberries, raw~^~BLACKBERRIES,RAW~^^^~Y~^~Caps and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09043~^~0900~^~Blackberry juice, canned~^~BLACKBERRY JUC,CND~^^^~Y~^^0^^^^^ -~09044~^~0900~^~Cherries, tart, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,TART,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09046~^~0900~^~Blackberries, canned, heavy syrup, solids and liquids~^~BLACKBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09048~^~0900~^~Blackberries, frozen, unsweetened~^~BLACKBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09050~^~0900~^~Blueberries, raw~^~BLUEBERRIES,RAW~^^^~Y~^~Stems and green or spoiled berries~^5^~Vaccinium spp.~^6.25^3.36^8.37^3.60 -~09052~^~0900~^~Blueberries, canned, heavy syrup, solids and liquids~^~BLUEBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09053~^~0900~^~Blueberries, wild, frozen (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,WILD,FRZ~^^^^^0^^6.25^^^ -~09054~^~0900~^~Blueberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09055~^~0900~^~Blueberries, frozen, sweetened~^~BLUEBERRIES,FRZ,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09056~^~0900~^~Boysenberries, canned, heavy syrup~^~BOYSENBERRIES,CND,HVY SYRUP~^^^^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.75 -~09057~^~0900~^~Boysenberries, frozen, unsweetened~^~BOYSENBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09059~^~0900~^~Breadfruit, raw~^~BREADFRUIT,RAW~^^^~Y~^~9% core, 13% skin~^22^~Artocarpus altilis~^6.25^3.36^8.37^3.60 -~09060~^~0900~^~Carambola, (starfruit), raw~^~CARAMBOLA,(STARFRUIT),RAW~^^^~Y~^~Seeds and stem end~^3^~Averrhoa carambola~^6.25^3.36^8.37^3.60 -~09061~^~0900~^~Carissa, (natal-plum), raw~^~CARISSA,(NATAL-PLUM),RAW~^^^^~7% seeds, 7% skin~^14^~Carissa macrocarpa~^6.25^3.36^8.37^3.60 -~09062~^~0900~^~Cherimoya, raw~^~CHERIMOYA,RAW~^^^^~Seeds, skin and core~^31^~Annona cherimola~^6.25^3.36^8.37^3.60 -~09063~^~0900~^~Cherries, sour, red, raw~^~CHERRIES,SOUR,RED,RAW~^^^~Y~^~Pits and stems~^10^~Prunus cerasus~^6.25^3.36^8.37^3.60 -~09064~^~0900~^~Cherries, sour, red, canned, water pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09065~^~0900~^~Cherries, sour, red, canned, light syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09066~^~0900~^~Cherries, sour, red, canned, heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09067~^~0900~^~Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09068~^~0900~^~Cherries, sour, red, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,SOUR,RED,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09070~^~0900~^~Cherries, sweet, raw~^~CHERRIES,SWEET,RAW~^^^~Y~^~Pits and stems~^8^~Prunus avium~^6.25^3.36^8.37^3.60 -~09071~^~0900~^~Cherries, sweet, canned, water pack, solids and liquids~^~CHERRIES,SWT,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.60 -~09072~^~0900~^~Cherries, sweet, canned, juice pack, solids and liquids~^~CHERRIES,SWT,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.70 -~09073~^~0900~^~Cherries, sweet, canned, light syrup pack, solids and liquids~^~CHERRIES,SWT,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.71 -~09074~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP PK,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09075~^~0900~^~Cherries, sweet, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^8^^6.25^3.36^8.37^3.78 -~09077~^~0900~^~Crabapples, raw~^~CRABAPPLES,RAW~^^^^~Core and stems~^8^~Malus spp.~^6.25^3.36^8.37^3.60 -~09078~^~0900~^~Cranberries, raw~^~CRANBERRIES,RAW~^^^~Y~^~Stems and spoiled berries~^2^~Vaccinium macrocarpon~^6.25^3.36^8.37^3.60 -~09079~^~0900~^~Cranberries, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CRANBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09081~^~0900~^~Cranberry sauce, canned, sweetened~^~CRANBERRY SAU,CND,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.84 -~09082~^~0900~^~Cranberry-orange relish, canned~^~CRANBERRY-ORANGE RELISH,CND~^^^^^0^^6.25^3.36^8.37^3.82 -~09083~^~0900~^~Currants, european black, raw~^~CURRANTS,EUROPEAN BLACK,RAW~^^^^~Stems~^2^~Ribes nigrum~^6.25^3.36^8.37^3.60 -~09084~^~0900~^~Currants, red and white, raw~^~CURRANTS,RED&WHITE,RAW~^^^~Y~^~Stems~^2^~Ribes rubrum~^6.25^3.36^8.37^3.60 -~09085~^~0900~^~Currants, zante, dried~^~CURRANTS,ZANTE,DRIED~^~raisin~^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09086~^~0900~^~Custard-apple, (bullock's-heart), raw~^~CUSTARD-APPLE,(BULLOCK'S-HEART),RAW~^^^^~Seeds and skin~^42^~Annona reticulata~^6.25^3.36^8.37^3.60 -~09087~^~0900~^~Dates, deglet noor~^~DATES,DEGLET NOOR~^^^~Y~^~Pits~^10^~Phoenix dactylifera~^6.25^3.36^8.37^3.60 -~09088~^~0900~^~Elderberries, raw~^~ELDERBERRIES,RAW~^^^^^0^~Sambucus spp.~^6.25^3.36^8.37^3.60 -~09089~^~0900~^~Figs, raw~^~FIGS,RAW~^^^~Y~^~Stems~^1^~Ficus carica~^6.25^3.36^8.37^3.60 -~09090~^~0900~^~Figs, canned, water pack, solids and liquids~^~FIGS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09091~^~0900~^~Figs, canned, light syrup pack, solids and liquids~^~FIGS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09092~^~0900~^~Figs, canned, heavy syrup pack, solids and liquids~^~FIGS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09093~^~0900~^~Figs, canned, extra heavy syrup pack, solids and liquids~^~FIGS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09094~^~0900~^~Figs, dried, uncooked~^~FIGS,DRIED,UNCOOKED~^^^~Y~^~Stems~^4^^6.25^3.36^8.37^3.60 -~09095~^~0900~^~Figs, dried, stewed~^~FIGS,DRIED,STEWED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09096~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids~^~FRUIT COCKTAIL,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09097~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids~^~FRUIT COCKTAIL,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09098~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09099~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,LT SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09100~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09101~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09102~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids~^~FRUIT SALAD,CND,H2O PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.60 -~09103~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids~^~FRUIT SALAD,CND,JUC PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.70 -~09104~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids~^~FRUIT SALAD,CND,LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09106~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT SALAD,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09107~^~0900~^~Gooseberries, raw~^~GOOSEBERRIES,RAW~^^^^^0^~Ribes spp.~^6.25^3.36^8.37^3.60 -~09109~^~0900~^~Gooseberries, canned, light syrup pack, solids and liquids~^~GOOSEBERRIES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09110~^~0900~^~Goji berries, dried~^~GOJI BERRIES,DRIED~^~wolfberries~^^^^0^~Lycium barbarum L.~^^^^ -~09111~^~0900~^~Grapefruit, raw, pink and red and white, all areas~^~GRAPEFRUIT,RAW,PINK&RED&WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^50^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09112~^~0900~^~Grapefruit, raw, pink and red, all areas~^~GRAPEFRUIT,RAW,PINK&RED,ALL AREAS~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09113~^~0900~^~Grapefruit, raw, pink and red, California and Arizona~^~GRAPEFRUIT,RAW,PINK&RED,CALIFORNIA&ARIZONA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09114~^~0900~^~Grapefruit, raw, pink and red, Florida~^~GRAPEFRUIT,RAW,PINK & RED,FLORIDA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09116~^~0900~^~Grapefruit, raw, white, all areas~^~GRAPEFRUIT,RAW,WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09117~^~0900~^~Grapefruit, raw, white, California~^~GRAPEFRUIT,RAW,WHITE,CALIFORNIA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09118~^~0900~^~Grapefruit, raw, white, Florida~^~GRAPEFRUIT,RAW,WHITE,FLORIDA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09119~^~0900~^~Grapefruit, sections, canned, water pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09120~^~0900~^~Grapefruit, sections, canned, juice pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09121~^~0900~^~Grapefruit, sections, canned, light syrup pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09123~^~0900~^~Grapefruit juice, white, canned or bottled, unsweetened~^~GRAPEFRUIT JUC,WHITE,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09124~^~0900~^~Grapefruit juice, white, canned, sweetened~^~GRAPEFRUIT JUC,WHITE,CND,SWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09125~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, undiluted~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09126~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, diluted with 3 volume water~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09127~^~0900~^~Grapefruit juice, pink or red, with added calcium~^~GRAPEFRUIT JUC,PINK OR RED,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09128~^~0900~^~Grapefruit juice, white, raw~^~GRAPEFRUIT JUC,WHITE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09129~^~0900~^~Grapes, muscadine, raw~^~Grapes, muscadine, raw~^^^^~Seeds~^4^~Vitis rotundifolia~^6.25^3.36^8.37^3.60 -~09130~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09131~^~0900~^~Grapes, american type (slip skin), raw~^~GRAPES,AMERICAN TYPE (SLIP SKN),RAW~^^^~Y~^~6% seeds, 34% skin, 2% stems~^42^~Vitis spp.~^6.25^3.36^8.37^3.60 -~09132~^~0900~^~Grapes, red or green (European type, such as Thompson seedless), raw~^~GRAPES,RED OR GRN (EURO TYPE,SUCH AS THOMPSON SEEDLESS),RAW~^^^~Y~^~Stems~^4^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09133~^~0900~^~Grapes, canned, thompson seedless, water pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09134~^~0900~^~Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09135~^~0900~^~Grape juice, canned or bottled, unsweetened, without added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09138~^~0900~^~Groundcherries, (cape-gooseberries or poha), raw~^~GROUNDCHERRIES,(CAPE-GOOSEBERRIES OR POHA),RAW~^^^^~Husks~^6^~Physalis spp.~^6.25^3.36^8.37^3.60 -~09139~^~0900~^~Guavas, common, raw~^~GUAVAS,COMMON,RAW~^^^~Y~^~Skin~^22^~Psidium guajava~^6.25^3.36^8.37^3.60 -~09140~^~0900~^~Guavas, strawberry, raw~^~GUAVAS,STRAWBERRY,RAW~^^^^~Seeds, stem, and blossom end~^15^~Psidium cattleianum~^6.25^3.36^8.37^3.60 -~09143~^~0900~^~Guava sauce, cooked~^~GUAVA SAUCE,COOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09144~^~0900~^~Jackfruit, raw~^~JACKFRUIT,RAW~^^^^~Seeds and skin~^72^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.60 -~09145~^~0900~^~Java-plum, (jambolan), raw~^~JAVA-PLUM,(JAMBOLAN),RAW~^^^^~Seed~^19^~Syzygium cumini~^6.25^3.36^8.37^3.60 -~09146~^~0900~^~Jujube, raw~^~JUJUBE,RAW~^^^^~Seeds~^7^~Ziziphus jujuba~^6.25^3.36^8.37^3.60 -~09147~^~0900~^~Jujube, Chinese, fresh, dried~^~JUJUBE,CHINESE,FRSH,DRIED~^^^^~Seeds~^11^^6.25^3.36^8.37^3.60 -~09148~^~0900~^~Kiwifruit, green, raw~^~KIWIFRUIT,GRN,RAW~^~Chinese gooseberry~^^~Y~^~Skin~^24^~Actinidia deliciosa~^6.25^3.36^8.37^3.60 -~09149~^~0900~^~Kumquats, raw~^~KUMQUATS,RAW~^^^~Y~^~Seeds~^7^~Fortunella spp.~^6.25^3.36^8.37^3.60 -~09150~^~0900~^~Lemons, raw, without peel~^~LEMONS,RAW,WITHOUT PEEL~^^^~Y~^~45% peel, 2% seeds~^47^~Citrus limon~^6.25^3.36^8.37^2.48 -~09152~^~0900~^~Lemon juice, raw~^~LEMON JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09153~^~0900~^~Lemon juice from concentrate, canned or bottled~^~LEMON JUC FROM CONC,CND OR BTLD~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09156~^~0900~^~Lemon peel, raw~^~LEMON PEEL,RAW~^^^~Y~^^0^^6.25^^^ -~09159~^~0900~^~Limes, raw~^~LIMES,RAW~^^^~Y~^~Peel and seeds~^16^~Citrus latifolia~^6.25^3.36^8.37^2.48 -~09160~^~0900~^~Lime juice, raw~^~LIME JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09161~^~0900~^~Lime juice, canned or bottled, unsweetened~^~LIME JUC,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09163~^~0900~^~Blueberries, dried, sweetened~^~BLUEBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09164~^~0900~^~Litchis, raw~^~LITCHIS,RAW~^~lychee~^^~Y~^~Shell and seeds~^40^~Litchi chinensis~^6.25^3.36^8.37^3.60 -~09165~^~0900~^~Litchis, dried~^~LITCHIS,DRIED~^~lychee~^^~Y~^~Shell and seeds~^46^^6.25^3.36^8.37^3.60 -~09167~^~0900~^~Loganberries, frozen~^~LOGANBERRIES,FROZEN~^^^~Y~^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.60 -~09172~^~0900~^~Longans, raw~^~LONGANS,RAW~^^^^~Shell and seeds~^47^~Dimocarpus longan~^6.25^3.36^8.37^3.60 -~09173~^~0900~^~Longans, dried~^~LONGANS,DRIED~^^^^~Shell and seeds~^64^^6.25^3.36^8.37^3.60 -~09174~^~0900~^~Loquats, raw~^~LOQUATS,RAW~^^^^~Seeds and skin~^35^~Eriobotrya japonica~^6.25^3.36^8.37^3.60 -~09175~^~0900~^~Mammy-apple, (mamey), raw~^~MAMMY-APPLE,(MAMEY),RAW~^^^^~Seeds and skin~^40^~Mammea americana~^6.25^3.36^8.37^3.60 -~09176~^~0900~^~Mangos, raw~^~MANGOS,RAW~^^^~Y~^~Seeds and skin~^29^~Mangifera indica~^6.25^3.36^8.37^3.60 -~09177~^~0900~^~Mangosteen, canned, syrup pack~^~MANGOSTEEN,CND,SYRUP PK~^^^^^0^~Garcinia mangostana~^6.25^3.36^8.37^3.75 -~09178~^~0900~^~Mango, dried, sweetened~^~MANGO,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09181~^~0900~^~Melons, cantaloupe, raw~^~MELONS,CANTALOUPE,RAW~^^^~Y~^~9% cavity contents, 1% cutting loss, 39% rind~^49^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09183~^~0900~^~Melons, casaba, raw~^~MELONS,CASABA,RAW~^^^~Y~^~11% cavity contents, 29% rind~^40^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09184~^~0900~^~Melons, honeydew, raw~^~MELONS,HONEYDEW,RAW~^^^~Y~^~5% cavity contents, rind 49%~^54^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09185~^~0900~^~Melon balls, frozen~^~MELON BALLS,FROZEN~^^^^^0^^6.25^3.36^8.37^3.60 -~09190~^~0900~^~Mulberries, raw~^~MULBERRIES,RAW~^^^~Y~^^0^~Morus nigra~^6.25^3.36^8.37^3.60 -~09191~^~0900~^~Nectarines, raw~^~NECTARINES,RAW~^^^~Y~^~Pit~^9^~Prunus persica var. nucipersica~^6.25^3.36^8.37^3.60 -~09192~^~0900~^~Oheloberries, raw~^~OHELOBERRIES,RAW~^^^^^0^~Vaccinium reticulatum~^6.25^3.36^8.37^3.60 -~09193~^~0900~^~Olives, ripe, canned (small-extra large)~^~OLIVES,RIPE,CND (SMALL-EXTRA LRG)~^^^~Y~^^0^~Olea europaea~^6.25^3.36^8.37^3.60 -~09194~^~0900~^~Olives, ripe, canned (jumbo-super colossal)~^~OLIVES,RIPE,CND (JUMBO-SUPER COLOSSAL)~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09195~^~0900~^~Olives, pickled, canned or bottled, green~^~OLIVES,PICKLED,CND OR BTLD,GRN~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09200~^~0900~^~Oranges, raw, all commercial varieties~^~ORANGES,RAW,ALL COMM VAR~^^^~Y~^~Peel and seeds~^27^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09201~^~0900~^~Oranges, raw, California, valencias~^~ORANGES,RAW,CALIFORNIA,VALENCIAS~^^^^~Peel and seeds~^25^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09202~^~0900~^~Oranges, raw, navels (Includes foods for USDA's Food Distribution Program)~^~ORANGES,RAW,NAVELS~^^^^~Peel and navel~^32^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09203~^~0900~^~Oranges, raw, Florida~^~ORANGES,RAW,FLORIDA~^^^^~Peel and seeds~^26^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09205~^~0900~^~Oranges, raw, with peel~^~ORANGES,RAW,WITH PEEL~^^^^~Seeds~^1^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09206~^~0900~^~Orange juice, raw (Includes foods for USDA's Food Distribution Program)~^~ORANGE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09207~^~0900~^~Orange juice, canned, unsweetened~^~ORANGE JUC,CND,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09209~^~0900~^~Orange juice, chilled, includes from concentrate~^~ORANGE JUC,CHILLED,INCL FROM CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09210~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamin D~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA & VITAMIN D~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09211~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09212~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O,W/ ADDED CA~^^^^^0^^^^^ -~09213~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09214~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09215~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09216~^~0900~^~Orange peel, raw~^~ORANGE PEEL,RAW~^^^^^0^^6.25^3.36^8.37^3.60 -~09217~^~0900~^~Orange-grapefruit juice, canned or bottled, unsweetened~^~ORANGE-GRAPEFRUIT JUC,CND OR BTLD,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09218~^~0900~^~Tangerines, (mandarin oranges), raw~^~TANGERINES,(MANDARIN ORANGES),RAW~^^^~Y~^~Peel and seeds~^26^~Citrus reticulata~^6.25^3.36^8.37^3.60 -~09219~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09220~^~0900~^~Tangerines, (mandarin oranges), canned, light syrup pack~^~TANGERINES,(MANDARIN ORANGES),CND,LT SYRUP PK~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09221~^~0900~^~Tangerine juice, raw~^~TANGERINE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09226~^~0900~^~Papayas, raw~^~PAPAYAS,RAW~^^^~Y~^~Seeds and skin~^38^~Carica papaya~^6.25^3.36^8.37^3.60 -~09228~^~0900~^~Papaya, canned, heavy syrup, drained~^~PAPAYA,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09229~^~0900~^~Papaya nectar, canned~^~PAPAYA NECTAR,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09231~^~0900~^~Passion-fruit, (granadilla), purple, raw~^~PASSION-FRUIT,(GRANADILLA),PURPLE,RAW~^^^~Y~^~Shell~^48^~Passiflora edulis~^6.25^3.36^8.37^3.60 -~09232~^~0900~^~Passion-fruit juice, purple, raw~^~PASSION-FRUIT JUC,PURPLE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09233~^~0900~^~Passion-fruit juice, yellow, raw~^~PASSION-FRUIT JUC,YEL,RAW~^^^~Y~^^0^~Passiflora edulis f. flavicarpa~^6.25^3.36^8.37^3.92 -~09236~^~0900~^~Peaches, yellow, raw~^~PEACHES,YEL,RAW~^^^~Y~^~Pit~^4^~Prunus persica~^6.25^3.36^8.37^3.60 -~09237~^~0900~^~Peaches, canned, water pack, solids and liquids~^~PEACHES,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09238~^~0900~^~Peaches, canned, juice pack, solids and liquids~^~PEACHES,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09239~^~0900~^~Peaches, canned, extra light syrup, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEACHES,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09240~^~0900~^~Peaches, canned, light syrup pack, solids and liquids~^~PEACHES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09241~^~0900~^~Peaches, canned, heavy syrup pack, solids and liquids~^~PEACHES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09242~^~0900~^~Peaches, canned, extra heavy syrup pack, solids and liquids~^~PEACHES,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09243~^~0900~^~Peaches, spiced, canned, heavy syrup pack, solids and liquids~^~PEACHES,SPICED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^4^^6.25^3.36^8.37^3.75 -~09244~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, uncooked~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09245~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, stewed~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09246~^~0900~^~Peaches, dried, sulfured, uncooked~^~PEACHES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09247~^~0900~^~Peaches, dried, sulfured, stewed, without added sugar~^~PEACHES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09248~^~0900~^~Peaches, dried, sulfured, stewed, with added sugar~^~PEACHES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09250~^~0900~^~Peaches, frozen, sliced, sweetened~^~PEACHES,FRZ,SLICED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09251~^~0900~^~Peach nectar, canned, with sucralose, without added ascorbic acid~^~PEACH NECTAR,CND,W/ SUCRALOSE,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.79 -~09252~^~0900~^~Pears, raw~^~PEARS,RAW~^^^~Y~^~Stem, core and seeds~^10^~Pyrus communis~^6.25^3.36^8.37^3.60 -~09253~^~0900~^~Pears, canned, water pack, solids and liquids~^~PEARS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09254~^~0900~^~Pears, canned, juice pack, solids and liquids~^~PEARS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09255~^~0900~^~Pears, canned, extra light syrup pack, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEARS,CND,EX LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09256~^~0900~^~Pears, canned, light syrup pack, solids and liquids~^~PEARS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09257~^~0900~^~Pears, canned, heavy syrup pack, solids and liquids~^~PEARS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09258~^~0900~^~Pears, canned, extra heavy syrup pack, solids and liquids~^~PEARS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09259~^~0900~^~Pears, dried, sulfured, uncooked~^~PEARS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09260~^~0900~^~Pears, dried, sulfured, stewed, without added sugar~^~PEARS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09261~^~0900~^~Pears, dried, sulfured, stewed, with added sugar~^~PEARS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09262~^~0900~^~Pear nectar, canned, without added ascorbic acid~^~PEAR NECTAR,CND,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09263~^~0900~^~Persimmons, japanese, raw~^~PERSIMMONS,JAPANESE,RAW~^^^~Y~^~2% calyx, 14% skin~^16^~Diospyros kaki~^6.25^3.36^8.37^3.60 -~09264~^~0900~^~Persimmons, japanese, dried~^~PERSIMMONS,JAPANESE,DRIED~^^^^~Stems~^8^^6.25^3.36^8.37^3.60 -~09265~^~0900~^~Persimmons, native, raw~^~PERSIMMONS,NATIVE,RAW~^^^^~2% calyx, 16% seeds~^18^~Diospyros virginiana~^6.25^3.36^8.37^3.60 -~09266~^~0900~^~Pineapple, raw, all varieties~^~PINEAPPLE,RAW,ALL VAR~^^^~Y~^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^6.25^3.36^8.37^3.60 -~09267~^~0900~^~Pineapple, canned, water pack, solids and liquids~^~PINEAPPLE,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09268~^~0900~^~Pineapple, canned, juice pack, solids and liquids~^~PINEAPPLE,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09269~^~0900~^~Pineapple, canned, light syrup pack, solids and liquids~^~PINEAPPLE,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09270~^~0900~^~Pineapple, canned, heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09271~^~0900~^~Pineapple, canned, extra heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09272~^~0900~^~Pineapple, frozen, chunks, sweetened~^~PINEAPPLE,FRZ,CHUNKS,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09273~^~0900~^~Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09274~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, undiluted~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,UNDIL~^^^^^0^^6.25^3.36^8.37^3.92 -~09275~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^^^0^^6.25^3.36^8.37^3.92 -~09276~^~0900~^~Pitanga, (surinam-cherry), raw~^~PITANGA,(SURINAM-CHERRY),RAW~^^^^~Seed, stem, and blossom end~^12^~Eugenia uniflora~^6.25^3.36^8.37^3.60 -~09277~^~0900~^~Plantains, yellow, raw~^~PLANTAINS,YEL,RAW~^^^~Y~^~Skin and stems~^31^~Musa X paradisiaca~^6.25^3.36^8.37^3.60 -~09278~^~0900~^~Plantains, yellow, baked~^~PLANTAINS,YEL,BKD~^^^~Y~^~No refuse~^0^^6.25^3.36^8.37^3.60 -~09279~^~0900~^~Plums, raw~^~PLUMS,RAW~^^^~Y~^~Pits~^6^~Prunus spp.~^6.25^3.36^8.37^3.60 -~09281~^~0900~^~Plums, canned, purple, water pack, solids and liquids~^~PLUMS,CND,PURPLE,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.60 -~09282~^~0900~^~Plums, canned, purple, juice pack, solids and liquids~^~PLUMS,CND,PURPLE,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.70 -~09283~^~0900~^~Plums, canned, purple, light syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.71 -~09284~^~0900~^~Plums, canned, purple, heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.75 -~09285~^~0900~^~Plums, canned, purple, extra heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^5^^6.25^3.36^8.37^3.78 -~09286~^~0900~^~Pomegranates, raw~^~POMEGRANATES,RAW~^^^~Y~^~Skin and membrane~^44^~Punica granatum~^6.25^3.36^8.37^3.60 -~09287~^~0900~^~Prickly pears, raw~^~PRICKLY PEARS,RAW~^^^^~Seeds, skin, and bud end~^25^~Opuntia spp.~^6.25^3.36^8.37^3.60 -~09288~^~0900~^~Prunes, canned, heavy syrup pack, solids and liquids~^~PRUNES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^12^~Prunus domestica~^6.25^3.36^8.37^3.75 -~09289~^~0900~^~Prunes, dehydrated (low-moisture), uncooked~^~PRUNES,DEHYD (LOW-MOISTURE),UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09290~^~0900~^~Prunes, dehydrated (low-moisture), stewed~^~PRUNES,DEHYD (LOW-MOISTURE),STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09291~^~0900~^~Plums, dried (prunes), uncooked~^~PLUMS,DRIED (PRUNES),UNCKD~^^^~Y~^~Pits~^13^^6.25^3.36^8.37^3.60 -~09292~^~0900~^~Plums, dried (prunes), stewed, without added sugar~^~PLUMS,DRIED (PRUNES),STWD,WO/ ADDED SUGAR~^^^~Y~^~Pits~^15^^6.25^3.36^8.37^3.60 -~09293~^~0900~^~Plums, dried (prunes), stewed, with added sugar~^~PLUMS,DRIED (PRUNES),STWD,W/ ADDED SUGAR~^^^^~Pits~^15^^6.25^3.36^8.37^3.60 -~09294~^~0900~^~Prune juice, canned~^~PRUNE JUICE,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09295~^~0900~^~Pummelo, raw~^~PUMMELO,RAW~^^^^~Seeds, skin, and membrane~^44^~Citrus maxima~^6.25^3.36^8.37^3.60 -~09296~^~0900~^~Quinces, raw~^~QUINCES,RAW~^^^^~Core, seeds, and parings~^39^~Cydonia oblonga~^6.25^3.36^8.37^3.60 -~09297~^~0900~^~Raisins, golden, seedless~^~RAISINS,GOLDEN,SEEDLESS~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09298~^~0900~^~Raisins, dark, seedless (Includes foods for USDA's Food Distribution Program)~^~RAISINS,DK,SEEDLESS (INCLUDES FOODS FOR USDAS FD~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09299~^~0900~^~Raisins, seeded~^~RAISINS,SEEDED~^^^^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09301~^~0900~^~Rambutan, canned, syrup pack~^~RAMBUTAN,CND,SYRUP PK~^^^^^0^~Nephelium lappaceum~^6.25^3.36^8.37^3.75 -~09302~^~0900~^~Raspberries, raw~^~RASPBERRIES,RAW~^^^~Y~^~Caps, stems, and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09304~^~0900~^~Raspberries, canned, red, heavy syrup pack, solids and liquids~^~RASPBERRIES,CND,RED,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09306~^~0900~^~Raspberries, frozen, red, sweetened~^~RASPBERRIES,FRZ,RED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09307~^~0900~^~Rhubarb, raw~^~RHUBARB,RAW~^^^~Y~^~19% ends, 6% leaves~^25^~Rheum rhabarbarum~^6.25^3.36^8.37^3.60 -~09309~^~0900~^~Rhubarb, frozen, uncooked~^~RHUBARB,FROZEN,UNCOOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09310~^~0900~^~Rhubarb, frozen, cooked, with sugar~^~RHUBARB,FRZ,CKD,W/SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09311~^~0900~^~Roselle, raw~^~ROSELLE,RAW~^^^^~Seed pods and stem~^39^~Hibiscus sabdariffa~^6.25^3.36^8.37^3.60 -~09312~^~0900~^~Rose-apples, raw~^~ROSE-APPLES,RAW~^^^^~Caps and pits~^33^~Syzygium jambos~^6.25^3.36^8.37^3.60 -~09313~^~0900~^~Sapodilla, raw~^~SAPODILLA,RAW~^^^^~Seeds and skin~^20^~Manilkara zapota~^6.25^3.36^8.37^3.60 -~09314~^~0900~^~Sapote, mamey, raw~^~SAPOTE,MAMEY,RAW~^~mamey colorado, marmalade plum~^^^~Seeds and skin~^31^~Pouteria sapota~^6.25^3.36^8.37^3.60 -~09315~^~0900~^~Soursop, raw~^~SOURSOP,RAW~^^^~Y~^~Seeds and skin~^33^~Annona muricata~^6.25^3.36^8.37^3.60 -~09316~^~0900~^~Strawberries, raw~^~STRAWBERRIES,RAW~^^^~Y~^~Caps and stems~^6^~Fragaria X ananassa~^6.25^3.36^8.37^3.60 -~09317~^~0900~^~Strawberries, canned, heavy syrup pack, solids and liquids~^~STRAWBERRIES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09318~^~0900~^~Strawberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~STRAWBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09320~^~0900~^~Strawberries, frozen, sweetened, sliced~^~STRAWBERRIES,FRZ,SWTND,SLICED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09321~^~0900~^~Sugar-apples, (sweetsop), raw~^~SUGAR-APPLES,(SWEETSOP),RAW~^^^^~Seeds and skin~^45^~Annona squamosa~^6.25^3.36^8.37^3.60 -~09322~^~0900~^~Tamarinds, raw~^~TAMARINDS,RAW~^^^~Y~^~Pods and seeds~^66^~Tamarindus indica~^6.25^3.36^8.37^3.60 -~09325~^~0900~^~Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids~^~FRUIT SALAD,TROPICAL,CND,HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.75 -~09326~^~0900~^~Watermelon, raw~^~WATERMELON,RAW~^^^~Y~^~Rind, seeds, and cutting loss~^48^~Citrullus lanatus~^6.25^3.36^8.37^3.60 -~09328~^~0900~^~Maraschino cherries, canned, drained~^~MARASCHINO CHERRIES,CND,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~09334~^~0900~^~Feijoa, raw~^~FEIJOA,RAW~^^^^~Skin~^43^~Acca sellowiana~^6.25^3.36^8.37^3.60 -~09340~^~0900~^~Pears, asian, raw~^~PEARS,ASIAN,RAW~^^^~Y~^~Core and stem~^9^~Pyrus pyrifolia (Burman f.) Nakai~^6.25^3.36^8.37^3.60 -~09351~^~0900~^~Fruit cocktail, canned, heavy syrup, drained~^~FRUIT COCKTAIL,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09352~^~0900~^~Blueberries, canned, light syrup, drained~^~BLUEBERRIES,CND,LT SYRUP,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09353~^~0900~^~Blueberries, wild, canned, heavy syrup, drained~^~BLUEBERRIES,WILD,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09354~^~0900~^~Pineapple, canned, juice pack, drained~^~PINEAPPLE,CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09357~^~0900~^~Apricots, canned, heavy syrup, drained~^~APRICOTS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09362~^~0900~^~Cherries, sour, canned, water pack, drained~^~CHERRIES,SOUR,CND,H2O PK,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09367~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup, drained~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09370~^~0900~^~Peaches, canned, heavy syrup, drained~^~PEACHES,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09374~^~0900~^~Pears, canned, heavy syrup, drained~^~PEARS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09379~^~0900~^~Plums, canned, heavy syrup, drained~^~PLUMS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09383~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack, drained~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09400~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09401~^~0900~^~Applesauce, canned, unsweetened, with added ascorbic acid~^~APPLESAUCE,CND,UNSWTND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.60 -~09402~^~0900~^~Applesauce, canned, sweetened, with salt~^~APPLESAUCE,CND,SWTND,W/SALT~^^^^^0^^6.25^3.36^8.37^3.75 -~09404~^~0900~^~Grapefruit juice, pink, raw~^~GRAPEFRUIT JUICE,PINK,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09407~^~0900~^~Peach nectar, canned, with added ascorbic acid~^~PEACH NECTAR,CND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.79 -~09408~^~0900~^~Pear nectar, canned, with added ascorbic acid~^~PEAR NECTAR,CND,W/ VIT C~^~vitamin C~^^^^0^^6.25^3.36^8.37^3.75 -~09409~^~0900~^~Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09410~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09411~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09412~^~0900~^~Pears, raw, bartlett (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BARTLETT~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09413~^~0900~^~Pears, raw, red anjou~^~PEARS,RAW,RED ANJOU~^^^^~Stem, core and seeds~^11^~Pyrus communis~^^^^ -~09414~^~0900~^~Pears, raw, bosc (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BOSC~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09415~^~0900~^~Pears, raw, green anjou (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,GRN ANJOU~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09416~^~0900~^~Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY~^~GRAPEFRUIT JUC,WHITE,BTLD,UNSWTND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.92 -~09420~^~0900~^~Jackfruit, canned, syrup pack~^~JACKFRUIT,CND,SYRUP PK~^^^^^0^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.75 -~09421~^~0900~^~Dates, medjool~^~DATES,MEDJOOL~^^^^~Pits~^8^~Phoenix dactylifera~^^3.36^8.37^3.60 -~09422~^~0900~^~Durian, raw or frozen~^~DURIAN,RAW OR FROZEN~^^^^~Shell and seeds (for raw fruit)~^68^~Durio zibethinus~^6.25^3.36^8.37^3.60 -~09423~^~0900~^~Prune puree~^~PRUNE PUREE~^^^^^0^^^^^ -~09426~^~0900~^~Candied fruit~^~CANDIED FRUIT~^^^~Y~^^0^^^^^ -~09427~^~0900~^~Abiyuch, raw~^~ABIYUCH,RAW~^~garlic pear~^^^^^~Crateva religiosa~^6.25^3.36^8.37^3.60 -~09428~^~0900~^~Rowal, raw~^~ROWAL,RAW~^^^^^^~Pangium edule~^6.25^3.36^8.37^3.60 -~09429~^~0900~^~Pineapple, raw, traditional varieties~^~PINEAPPLE,RAW,TRADITIONAL VAR~^^^^~8% core, 13% crown, 22% parings~^42^~Ananas comosus~^^3.36^8.37^3.60 -~09430~^~0900~^~Pineapple, raw, extra sweet variety~^~PINEAPPLE,RAW,EX SWT VAR~^^^^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^^3.36^8.37^3.60 -~09433~^~0900~^~Clementines, raw~^~CLEMENTINES,RAW~^^^^~Peel and seeds~^23^~Citrus clementina hort. ex Tanaka~^^3.36^8.37^3.60 -~09434~^~0900~^~Guanabana nectar, canned~^~GUANABANA NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09435~^~0900~^~Guava nectar, canned, with added ascorbic acid~^~GUAVA NECTAR,CND,W/ ADDED VIT C~^^^^^0^^6.25^3.36^8.37^3.80 -~09436~^~0900~^~Mango nectar, canned~^~MANGO NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09437~^~0900~^~Tamarind nectar, canned~^~TAMARIND NECTAR,CND~^^^^^0^^6.25^3.36^8.37^3.80 -~09442~^~0900~^~Pomegranate juice, bottled~^~POMEGRANATE JUC,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09443~^~0900~^~Juice, apple and grape blend, with added ascorbic acid~^~JUICE,APPL & GRAPE BLEND,W/ ADDED VIT C~^^^~Y~^^0^^^3.36^8.37^3.92 -~09444~^~0900~^~Juice, apple, grape and pear blend, with added ascorbic acid and calcium~^~JUICE,APPL,GRAPE & PEAR BLEND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09446~^~0900~^~Plantains, green, fried~^~PLANTAINS,GRN,FRIED~^~tostones de platano~^^^^0^^6.25^4.00^9.00^4.00 -~09447~^~0900~^~Plantains, yellow, fried, Latino restaurant~^~PLANTAINS,YEL,FRIED,LATINO RESTAURANT~^~platanos maduros~^^^^0^^6.25^4.00^9.00^4.00 -~09448~^~0900~^~Nance, canned, syrup, drained~^~NANCE,CND,SYRUP,DRND~^~yellow cherries~^^^^0^^6.25^3.36^8.37^3.60 -~09449~^~0900~^~Nance, frozen, unsweetened~^~NANCE,FRZ,UNSWTND~^~yellow cherries~^^^~Pits~^27^~Byrsonima crassifolia (L.) Kunth~^6.25^3.36^8.37^3.60 -~09450~^~0900~^~Naranjilla (lulo) pulp, frozen, unsweetened~^~NARANJILLA (LULO) PULP,FRZ,UNSWTND~^^^^^0^~Solanum quitoense Lam.~^6.25^3.36^8.37^3.60 -~09451~^~0900~^~Horned melon (Kiwano)~^~HORNED MELON (KIWANO)~^~African horned melon~^^^~Rind~^36^~Cucumis metulifer~^6.25^3.36^8.37^3.60 -~09452~^~0900~^~Orange Pineapple Juice Blend~^~ORANGE PNAPPL JUC BLEND~^^^~Y~^^0^^6.25^^^ -~09500~^~0900~^~Apples, raw, red delicious, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,RED DELICIOUS,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09501~^~0900~^~Apples, raw, golden delicious, with skin~^~APPLES,RAW,GOLDEN DELICIOUS,W/ SKN~^^^^~Core and stem~^10^~Malus domestica~^^^^ -~09502~^~0900~^~Apples, raw, granny smith, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GRANNY SMITH,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09503~^~0900~^~Apples, raw, gala, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GALA,W/ SKN~^^^^~Core and stem~^9^~Malus domestica~^^^^ -~09504~^~0900~^~Apples, raw, fuji, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,FUJI,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09506~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamins A, D, E~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADD CA & VITAMINS A,D,E~^^^^^0^^6.25^3.36^8.37^3.92 -~09507~^~0900~^~Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO~^~FRUIT JUC SMOOTHIE,NAKED JUC,MIGHTY MANGO~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09508~^~0900~^~Fruit juice smoothie, NAKED JUICE, GREEN MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,GRN MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09510~^~0900~^~Pineapple juice, canned, not from concentrate, unsweetened, with added vitamins A, C and E~^~PINEAPPLE JUC,CND,NOT FROM CONC,UNSWTND,W/ ADD VIT A,C & E~^^~Dole Food Company~^^^0^^6.25^3.36^8.37^3.92 -~09511~^~0900~^~Fruit juice smoothie, NAKED JUICE, BLUE MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,BLUE MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09512~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid and calcium~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^^^ -~09513~^~0900~^~Fruit juice smoothie, ODWALLA, ORIGINAL SUPERFOOD~^~FRUIT JUC SMOOTHIE,ODWALLA,ORIGINAL SUPERFOOD~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09514~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, BERRY BOOST~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,BERRY BOOST~^^~Wm. Bolthouse Farms, Inc.~^^^0^^6.25^^^ -~09515~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, GREEN GOODNESS~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,GRN GOODNESS~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09516~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,STRAWBERRY BANANA~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09517~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid, calcium, and potassium~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C,CA,& K~^^^~Y~^^0^^^^^ -~09518~^~0900~^~Raspberries, frozen, red, unsweetened~^~RASPBERRIES,FRZ,RED,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.60 -~09519~^~0900~^~Guava nectar, with sucralose, canned~^~GUAVA NECTAR,W/ SUCRALOSE,CND~^^^~Y~^^0^^^^^ -~09520~^~0900~^~Kiwifruit, ZESPRI SunGold, raw~^~KIWIFRUIT,ZESPRI SUNGOLD,RAW~^~Gold3~^^^~Skin~^28^~Actinidia chinensis Zesy002 (Gold3)~^^3.36^8.37^3.60 -~09522~^~0900~^~Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium~^~CRANBERRY JUC BLEND,100% JUC,BTLD,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09523~^~0900~^~Lemon juice from concentrate, bottled, CONCORD~^~LEMON JUC FROM CONC,BTLD,CONCORD~^^~Concord Foods~^^^0^^^^^ -~09524~^~0900~^~Lemon juice from concentrate, bottled, REAL LEMON~^~LEMON JUC FROM CONC,BTLD,REAL LEMON~^^^^^0^^^3.36^8.37^2.70 -~09525~^~0900~^~Cranberry sauce, whole, canned, OCEAN SPRAY~^~CRANBERRY SAU,WHL,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09526~^~0900~^~Cranberry sauce, jellied, canned, OCEAN SPRAY~^~CRANBERRY SAU,JELLIED,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09528~^~0900~^~Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C~^~RUBY RED GRPFRT JUC BLND (GRPFRT,GRP,APL),OCEAN SPRY,W/VIT C~^^~Ocean Spray Cranberries, Inc.~^^^0^^^3.36^8.37^3.92 -~09530~^~0900~^~Fruit juice smoothie, ODWALLA, strawberry banana~^~FRUIT JUC SMOOTHIE,ODWALLA,STRAWBERRY BANANA~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09531~^~0900~^~Fruit juice smoothie, NAKED JUICE, strawberry banana~^~FRUIT JUC SMOOTHIE,NAKED JUC,STRAWBERRY BANANA~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09542~^~0900~^~Plantains, green, raw~^~PLANTAINS,GRN,RAW~^^^^~Skin and stems~^39^~Musa X paradisiaca~^6.25^2.78^8.37^4.03 -~09543~^~0900~^~Plantains, green, boiled~^~PLANTAINS,GRN,BLD~^^^^~No refuse~^0^^^2.78^8.37^4.03 -~09544~^~0900~^~Baobab powder~^~BAOBAB PDR~^^^^^0^^^3.36^8.37^3.60 -~09546~^~0900~^~Cherry juice, tart~^~CHERRY JUC,TART~^^^^^0^^6.25^3.36^8.37^3.92 -~09552~^~0900~^~Raspberries, puree, seedless~^~RASPBERRIES,PUREE,SEEDLESS~^^^^^0^^^3.36^8.37^3.75 -~09553~^~0900~^~Raspberries, puree, with seeds~^~RASPBERRIES,PUREE,W/ SEEDS~^^^^^0^^^3.36^8.37^3.75 -~09554~^~0900~^~Raspberry juice concentrate~^~RASPBERRY JUC CONC~^^^^^0^^^3.36^8.37^3.75 -~10000~^~1000~^~Pork, fresh, composite of separable fat, with added solution, cooked~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,CKD~^^^^^0^^^^^ -~10001~^~1000~^~Pork, fresh, carcass, separable lean and fat, raw~^~PORK,FRSH,CARCASS,LN&FAT,RAW~^^^^~Bone and skin~^18^~Suidae domesticus~^6.25^4.27^9.02^3.87 -~10002~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,SHLDR),LN,RAW~^^^~Y~^~Bone and skin 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10003~^~1000~^~Pork, fresh, composite of trimmed leg, loin, shoulder, and spareribs, (includes cuts to be cured), separable lean and fat, raw~^~PORK,FRSH,COMP OF LEG,LOIN,SHLDR,& SPARERIBS,LN & FAT,RAW~^^^~Y~^~Bone and skin~^24^^6.25^4.27^9.02^3.87 -~10004~^~1000~^~Pork, fresh, backfat, raw~^~PORK,FRESH,BACKFAT,RAW~^^^~Y~^~Skin~^11^^6.25^4.27^9.02^3.87 -~10005~^~1000~^~Pork, fresh, belly, raw~^~PORK,FRSH,BELLY,RAW~^^^^~Skin~^7^^6.25^4.27^9.02^3.87 -~10006~^~1000~^~Pork, fresh, separable fat, raw~^~PORK,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10007~^~1000~^~Pork, fresh, separable fat, cooked~^~PORK,FRSH,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10008~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,RAW~^^^^~Bone and skin~^17^^6.25^4.27^9.02^3.87 -~10009~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^20^^6.25^4.27^9.02^3.87 -~10010~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, raw~^~PORK,FRSH,LEG (HAM),WHL,LN,RAW~^^^~Y~^~Bone and skin 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~10011~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 20%, separable fat 12%~^32^^6.25^4.27^9.02^3.87 -~10012~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,RAW~^^^^~Connective tissue 6%, Bone 9%, Skin 2%~^17^^6.25^4.27^9.02^3.87 -~10013~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 7%, Bone 9%, Skin 2%~^18^^6.25^4.27^9.02^3.87 -~10014~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, raw (Includes foods for USDA's Food Distribution Program)~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,RAW~^^^^~Connective tissue 6%, Bone 9%, Separable fat 10%~^25^^6.25^4.27^9.02^3.87 -~10015~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 9%, Separable fat 7%~^23^^6.25^4.27^9.02^3.87 -~10016~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,RAW~^^^^~Connective tissue 9%, Bone 13%, Skin 6%~^28^^6.25^4.27^9.02^3.87 -~10017~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Skin 4%~^22^^6.25^4.27^9.02^3.87 -~10018~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,RAW~^^^^~Connective tissue 9%, Bone 13%, Separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10019~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Separable fat 9%~^27^^6.25^4.27^9.02^3.87 -~10020~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, raw~^~PORK,FRSH,LOIN,WHL,LN&FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10021~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10022~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10023~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10024~^~1000~^~Pork, fresh, loin, whole, separable lean only, raw~^~PORK,FRSH,LOIN,WHL,LN,RAW~^^^~Y~^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10025~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRSD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10026~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRLD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10027~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN,CKD,RSTD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10028~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^^^^~Bone 18%, Connective tissue 8%~^26^^6.25^4.27^9.02^3.87 -~10029~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 21% Connective tissue 6%~^27^^6.25^4.27^9.02^3.87 -~10030~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%~^27^^6.25^4.27^9.02^3.87 -~10031~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 18%, Connective tissue 5%,~^20^^6.25^4.27^9.02^3.87 -~10032~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN,RAW~^^^^~Bone 18%, Connective tissue 8%, Separable fat 10%,~^36^^6.25^4.27^9.02^3.87 -~10033~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 21%, Connective tissue 6%, Separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10034~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10035~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 18%, separable fat 7%, Connective tissue 5%~^30^^6.25^4.27^9.02^3.87 -~10036~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN & FAT,RAW~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^~Y~^~Bone, 14%, Connective tissue 11%~^25^^6.25^4.27^9.02^3.87 -~10037~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 15%, Connective tissue 5%~^20^^6.25^4.27^9.02^3.87 -~10038~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^^~Bone 16%, Connective tissue 9%~^25^^6.25^4.27^9.02^3.87 -~10039~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%~^18^^6.25^4.27^9.02^3.87 -~10040~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,RAW~^~URMIS #3313, Center loin chops, Center cut pork loin chops, centercut pork chops~^^^~Bone, 14%, Connective tissue, 11%, Separable fat, 6%~^31^^6.25^4.27^9.02^3.87 -~10041~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 5%, Separable fat 8%~^28^^6.25^4.27^9.02^3.87 -~10042~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork chops, Centercut pork loin chops~^^^~Bone, 16%, Connective tissue, 9%, Separable fat, 5%~^30^^6.25^4.27^9.02^3.87 -~10043~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%, Separable fat 7%~^25^^6.25^4.27^9.02^3.87 -~10044~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue 12%,~^34^^6.25^4.27^9.02^3.87 -~10045~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10046~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone, 24%, Connective tissue, 11%~^35^^6.25^4.27^9.02^3.87 -~10047~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10048~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue, 12%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~10049~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 17%, Connective tissue 6%, Separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10050~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRLD~^~Centercut pork loin chop, Rib cut chops, Rib chops~^^~Y~^~Bone 24%, Connective tissue, 11%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~10051~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%, separable fat 8%~^31^^6.25^4.27^9.02^3.87 -~10052~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 17%, Connective tissue, 10%~^27^^6.25^4.27^9.02^3.87 -~10053~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%~^24^^6.25^4.27^9.02^3.87 -~10054~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%~^21^^6.25^4.27^9.02^3.87 -~10055~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, Connective tissue, 11%~^31^^6.25^4.27^9.02^3.87 -~10056~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone 17%, Connective tissue, 11%, separable fat 5%~^33^^6.25^4.27^9.02^3.87 -~10057~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%, Separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10058~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%, Separable fat 8%~^29^^6.25^4.27^9.02^3.87 -~10059~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, connective tissue, 11%, separable fat, 4%~^35^^6.25^4.27^9.02^3.87 -~10060~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, raw~^~PORK FRSH LOIN TENDERLOIN LN ONLY RAW~^~Pork tenderloin, URMIS #3358~^^~Y~^~Bone, 0%, Connective tissue, 3%, Separable fat, 2%~^5^^6.25^4.27^9.02^3.87 -~10061~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,RSTD~^~URMIS #3358, Pork, Pork tenderloin~^^~Y~^~Connective tissue 3%, Separable fat .70%~^4^^6.25^4.27^9.02^3.87 -~10062~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~10063~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~10064~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^^~Connective tissue~^14^^6.25^4.27^9.02^3.87 -~10065~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^~Boneless pork loin, Centercut pork loin roast~^^^~Connective tissue~^12^^6.25^4.27^9.02^3.87 -~10066~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 12%, Separable fat, 5%~^17^^6.25^4.27^9.02^3.87 -~10067~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^6.25^4.27^9.02^3.87 -~10068~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 9%, separable fat, 4%~^13^^6.25^4.27^9.02^3.87 -~10069~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,CKD,RSTD~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~10070~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, raw~^~PORK,FRSH,SHLDR,WHL,LN&FAT,RAW~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10071~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10072~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, raw~^~PORK,FRSH,SHLDR,WHL,LN,RAW~^^^^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10073~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10074~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,RAW~^^^^~Bone 16%, Connective tissue 6%~^22^^6.25^4.27^9.02^3.87 -~10075~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 8%, Bone 15%,~^23^^6.25^4.27^9.02^3.87 -~10076~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,RSTD~^^^^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10077~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,RAW~^^^^~Bone 16%, Connective tissue 6%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10078~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 8%, Separable fat 7%~^30^^6.25^4.27^9.02^3.87 -~10079~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,RSTD~^^^^~Bone and skin 27%, separable fat 16%~^43^^6.25^4.27^9.02^3.87 -~10080~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN & FAT,RAW~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 15%~^24^^6.25^4.27^9.02^3.87 -~10081~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STKS),LN & FAT,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 17%~^26^^6.25^4.27^9.02^3.87 -~10082~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean and fat, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~10083~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~10084~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,RAW~^~URMIS # 3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 15%, Separable fat, 8%~^32^^6.25^4.27^9.02^3.87 -~10085~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 17%, Separable fat, 6%~^32^^6.25^4.27^9.02^3.87 -~10086~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean only, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10087~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN,CKD,RSTD~^^^~Y~^~Bone 24%, separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10088~^~1000~^~Pork, fresh, spareribs, separable lean and fat, raw~^~PORK,FRSH,SPARERIBS,LN&FAT,RAW~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~10089~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, braised~^~PORK,FRSH,SPARERIBS,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^38^^6.25^4.27^9.02^3.87 -~10093~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, and shoulder), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,&SHLDR),LN,CKD~^^^~Y~^~Bone and skin 22%, separable fat 9%~^31^^6.25^4.27^9.02^3.87 -~10094~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,RAW~^^^~Y~^~separable fat 16%~^16^^^^^ -~10096~^~1000~^~Pork, fresh, variety meats and by-products, brain, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membrane~^2^^6.25^4.27^9.02^3.87 -~10097~^~1000~^~Pork, fresh, variety meats and by-products, brain, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10098~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,RAW~^^^^~Separable fat~^18^^6.25^4.27^9.02^3.87 -~10099~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10100~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,RAW~^^^^~Thaw juice and trim~^5^^6.25^4.27^9.02^3.87 -~10101~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10102~^~1000~^~Pork, fresh, variety meats and by-products, feet, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,RAW~^^^^~Bone and hard tissue~^29^^6.25^4.27^9.02^3.87 -~10103~^~1000~^~Pork, fresh, variety meats and by-products, heart, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10104~^~1000~^~Pork, fresh, variety meats and by-products, heart, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10105~^~1000~^~Pork, fresh, variety meats and by-products, jowl, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,JOWL,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10106~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins, and membranes~^7^^6.25^4.27^9.02^3.87 -~10107~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10109~^~1000~^~Pork, fresh, variety meats and by-products, leaf fat, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LEAF FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10110~^~1000~^~Pork, fresh, variety meats and by-products, liver, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10111~^~1000~^~Pork, fresh, variety meats and by-products, liver, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10112~^~1000~^~Pork, fresh, variety meats and by-products, lungs, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^13^^6.25^4.27^9.02^3.87 -~10113~^~1000~^~Pork, fresh, variety meats and by-products, lungs, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10114~^~1000~^~Pork, fresh, variety meats and by-products, mechanically separated, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10115~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10116~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10117~^~1000~^~Pork, fresh, variety meats and by-products, spleen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10118~^~1000~^~Pork, fresh, variety meats and by-products, spleen, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10119~^~1000~^~Pork, fresh, variety meats and by-products, stomach, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,STOMACH,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10120~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10121~^~1000~^~Pork, fresh, variety meats and by-products, tongue, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~10122~^~1000~^~Pork, fresh, variety meats and by-products, tongue, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^~Skin and trimmings~^24^^6.25^4.27^9.02^4.11 -~10123~^~1000~^~Pork, cured, bacon, unprepared~^~PORK,CURED,BACON,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10128~^~1000~^~Pork, cured, breakfast strips, raw or unheated~^~PORK,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10130~^~1000~^~Canadian bacon, unprepared~^~CANADIAN BACON,UNPREP~^^^~Y~^^0^^^^^ -~10132~^~1000~^~Pork, cured, feet, pickled~^~PORK,CURED,FEET,PICKLED~^^^~Y~^~Bone and hard tissue 66%~^66^^6.25^4.27^9.02^3.87 -~10134~^~1000~^~Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,EX LN (APPROX 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10136~^~1000~^~Pork, cured, ham, boneless, regular (approximately 11% fat), roasted~^~PORK,CURED,HAM,BNLESS,REG (APPROX 11% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10137~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10138~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10140~^~1000~^~Pork, cured, ham, regular (approximately 13% fat), canned, roasted~^~PORK,CURED,HAM,REG (APPROX 13% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10141~^~1000~^~Pork, cured, ham, center slice, country-style, separable lean only, raw~^~PORK,CURED,HAM,CNTR SLICE,COUNTRY-STYLE,LN,RAW~^^^~Y~^~Bone and skin 3%, separable fat 12%~^15^^6.25^4.27^9.02^3.87 -~10142~^~1000~^~Pork, cured, ham, center slice, separable lean and fat, unheated~^~PORK,CURED,HAM,CNTR SLICE,LN&FAT,UNHTD~^^^^~Bone~^3^^6.25^4.27^9.02^3.87 -~10146~^~1000~^~Pork, cured, ham, patties, unheated~^~PORK,CURED,HAM,PATTIES,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10149~^~1000~^~Pork, cured, ham, steak, boneless, extra lean, unheated~^~PORK,CURED,HAM,STEAK,BNLESS,EX LN,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10150~^~1000~^~Pork, cured, ham, whole, separable lean and fat, unheated~^~PORK,CURED,HAM,WHL,LN&FAT,UNHTD~^^^^~Bone and skin~^18^^6.25^4.27^9.02^3.87 -~10152~^~1000~^~Pork, cured, ham, whole, separable lean only, unheated~^~PORK,CURED,HAM,WHL,LN,UNHTD~^^^~Y~^~Bone and skin 18%, separable fat 19%~^37^^6.25^4.27^9.02^3.87 -~10153~^~1000~^~Pork, cured, ham, whole, separable lean only, roasted~^~PORK,CURED,HAM,WHL,LN,RSTD~^^^~Y~^~Bone and skin 24%, separable fat 15%~^39^^6.25^4.27^9.02^3.87 -~10163~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,CKD,PAN-BROILED~^^^~Y~^~Separable lean 14%~^14^^^^^ -~10164~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN & FAT,RAW~^^^~Y~^^0^^^^^ -~10165~^~1000~^~Pork, cured, salt pork, raw~^~PORK,CURED,SALT PORK,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10166~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), unheated~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10167~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), roasted~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10168~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean and fat, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN&FAT,RSTD~^^^~Y~^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10169~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean only, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN,RSTD~^^^~Y~^~Bone and skin 27%, separable fat 19%~^46^^6.25^4.27^9.02^3.87 -~10170~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, unheated~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10171~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, roasted~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10173~^~1000~^~Pork, fresh, variety meats and by-products, feet, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,CKD,SIMMRD~^^^~Y~^~Bone and hard tissue~^60^^6.25^4.27^9.02^3.87 -~10174~^~1000~^~Pork, fresh, variety meats and by-products, tail, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,RAW~^^^^~Bone and hard tissue~^30^^6.25^4.27^9.02^3.87 -~10175~^~1000~^~Pork, fresh, variety meats and by-products, tail, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,CKD,SIMMRD~^^^^~Bone and hard tissue~^32^^6.25^4.27^9.02^3.87 -~10176~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, separable fat 8%, Connective tissue 6%~^28^^6.25^4.27^9.02^3.87 -~10177~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%, separable fat 9%~^32^^6.25^4.27^9.02^3.87 -~10178~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%~^27^^6.25^4.27^9.02^3.87 -~10179~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN CHOPS,BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, Connective tissue 6%~^20^^6.25^4.27^9.02^3.87 -~10180~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10181~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%, separable fat 5%,~^10^^6.25^4.27^9.02^3.87 -~10182~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, unheated~^~PORK,CURED,HAM,BNLESS,EX LN®,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10183~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,EX LN®,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10184~^~1000~^~Pork, cured, ham, extra lean and regular, canned, unheated~^~PORK,CURED,HAM,EX LN®,CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10185~^~1000~^~Pork, cured, ham, extra lean and regular, canned, roasted~^~PORK,CURED,HAM,EX LN®,CND,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10186~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10187~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, raw~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,RAW~^^^^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10188~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, cooked~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10189~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LON (CHPS),BNLESS,LN & FAT,CKD,PAN-BRLED~^^^~Y~^^0^^^^^ -~10192~^~1000~^~Pork, fresh, backribs, separable lean and fat, raw~^~PORK,FRSH,BACKRIBS,LN&FAT,RAW~^^^^~Bone 30%, Connective tissue 7%~^37^^6.25^4.27^9.02^3.87 -~10193~^~1000~^~Pork, fresh, backribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,BACKRIBS,LN&FAT,CKD,RSTD~^^^^~Bone~^43^^6.25^4.27^9.02^3.87 -~10194~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue~^11^^6.25^4.27^9.02^3.87 -~10195~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^5^^6.25^4.27^9.02^3.87 -~10196~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~10197~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10198~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10199~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 11%, separable fat 11%~^22^^6.25^4.27^9.02^3.87 -~10200~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRSD~^^^~Y~^~Connective tissue 5%, separable fat 10%~^15^^6.25^4.27^9.02^3.87 -~10201~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRLD~^^^^~Connective tissue 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~10202~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 8%, separable fat 11%~^19^^6.25^4.27^9.02^3.87 -~10203~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 8%, separable fat 10%~^18^^6.25^4.27^9.02^3.87 -~10204~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,RAW~^~Country Ribs~^^^~Bone 21%, Connective tissue 14%~^35^^6.25^4.27^9.02^3.87 -~10205~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue 15%~^39^^6.25^4.27^9.02^3.87 -~10206~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,RSTD~^^^^~Connective tisue 8%, Bone 17%~^25^^6.25^4.27^9.02^3.87 -~10207~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,RAW~^~Country ribs~^^^~Bone 21%, Connective tissue, 14%, separable fat 6%~^41^^6.25^4.27^9.02^3.87 -~10208~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue, 15%, separable fat 4%~^43^^6.25^4.27^9.02^3.87 -~10209~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,RSTD~^^^^~Connective tissue 8%, Bone 17%, Separable fat 7%~^32^^6.25^4.27^9.02^3.87 -~10210~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue 4%~^6^^6.25^4.27^9.02^3.87 -~10211~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10212~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10213~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~10214~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 5%, Separable fat 2%~^7^^6.25^4.27^9.02^3.87 -~10215~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 3%, Separable fat 1%~^4^^6.25^4.27^9.02^3.87 -~10216~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRLD~^^^~Y~^~Connective tissue 2%, Separable fat 2%~^4^^6.25^4.27^9.02^3.87 -~10217~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN,CKD,RSTD~^^^~Y~^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10218~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,RAW~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10219~^~1000~^~Pork, fresh, ground, raw~^~PORK,FRESH,GROUND,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10220~^~1000~^~Pork, fresh, ground, cooked~^~PORK,FRESH,GROUND,COOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10221~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~10222~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,RSTD~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~10223~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10224~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue~^16^^6.25^4.27^9.02^3.87 -~10225~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 10%, separable fat 6%~^16^^6.25^4.27^9.02^3.87 -~10226~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN & SHLDR BLADE),LN & FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10227~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN&FAT,CKD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10228~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,RAW~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10229~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,CKD~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10851~^~1000~^~HORMEL, Cure 81 Ham~^~HORMEL,CURE 81 HAM~^^^^^0^^^4.00^9.00^4.00 -~10852~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Teriyaki-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,TERIYAKI-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10853~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Peppercorn-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,PEPPERCORN-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10854~^~1000~^~HORMEL ALWAYS TENDER, Pork Loin Filets, Lemon Garlic-Flavored~^~HORMEL ALWAYS TENDER,PORK LOIN FILETS,LEMON GARLIC-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10855~^~1000~^~HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork~^~HORMEL ALWAYS TENDER,CNTR CUT CHOPS,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10856~^~1000~^~HORMEL ALWAYS TENDER, Boneless Pork Loin, Fresh Pork~^~HORMEL ALWAYS TENDER,BNLESS PORK LOIN,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10857~^~1000~^~HORMEL Canadian Style Bacon~^~HORMEL CANADIAN STYLE BACON~^^^^^0^^^4.00^9.00^4.00 -~10858~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,PN-BRLD~^^^^~Separable fat~^9^^6.25^4.27^9.02^3.87 -~10859~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TPLN(CHPS),BNLS,LN & FT,W/ADDED SLN,CKD,PN-BRLD~^^^^^0^^^4.27^9.02^3.87 -~10860~^~1000~^~Pork, cured, bacon, cooked, baked~^~PORK,CURED,BACON,CKD,BKD~^^^^^0^^6.25^4.27^9.02^3.87 -~10861~^~1000~^~Pork, cured, bacon, cooked, microwaved~^~PORK,CURED,BACON,CKD,MICROWAVED~^^^^^0^^6.25^4.27^9.02^3.87 -~10862~^~1000~^~Pork, cured, bacon, pre-sliced, cooked, pan-fried~^~PORK,CURED,BACON,PRE-SLICED,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10863~^~1000~^~Pork, fresh, variety meats and by-products, stomach, cooked, simmered~^~PORK,FRSH,VAR MEATS & BY-PRODUCTS,STOMACH,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10864~^~1000~^~Pork, bacon, rendered fat, cooked~^~PORK,BACON,RENDERED FAT,CKD~^~bacon drippings~^^^^0^^6.25^4.27^9.02^3.87 -~10865~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 10%, separable fat 9%~^19^^^^^ -~10866~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 12%, Separable fat 16%~^28^^6.25^^^ -~10867~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%, Separable fat 16%~^35^^^^^ -~10868~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Separable fat 9%, Bone 4%~^13^^^^^ -~10869~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Connective tissue 1%, Separable fat 8%~^12^^^^^ -~10870~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^^0^^^^^ -~10871~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^^0^^^^^ -~10872~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10873~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 14%, Separable fat 9%~^23^^^^^ -~10874~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%, Separable fat 11%~^26^^^^^ -~10875~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Separable fat 8%~^11^^^^^ -~10876~^~1000~^~Pork, cured, ham with natural juices, spiral slice, meat only, boneless, separable lean only, heated, roasted~^~PRK,CRD,HAM W/ NAT JUCS,SPRL SLC,MEAT ONLY,BNLES,LN,HTD,RSTD~^^^^~Separable fat~^3^^^^^ -~10877~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%, Separable fat 12%~^26^^^^^ -~10878~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^2^^^^^ -~10879~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 2%~^2^^^^^ -~10880~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat~^3^^^^^ -~10881~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%, Separable fat 21%~^41^^^^^ -~10882~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^1^^^^^ -~10883~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10884~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 4%~^4^^^^^ -~10885~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 16%~^26^^6.25^^^ -~10886~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 4%, Separable fat 16%~^20^^6.25^^^ -~10887~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone~^18^^6.25^^^ -~10888~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 11%~^14^^6.25^^^ -~10889~^~1000~^~Pork, cured, ham and water product, shank, bone-in, unheated, separable lean only~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,UNHTD,LN~^^^^~Bone 17%, Separable fat 27%~^44^^6.25^^^ -~10890~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 21%, Separable fat 16%~^37^^6.25^^^ -~10891~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 14%~^24^^6.25^^^ -~10892~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 9%~^12^^6.25^^^ -~10893~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRAL SLICE,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 5%~^5^^6.25^^^ -~10894~^~1000~^~Pork, cured, ham, separable fat, boneless, heated~^~PORK,CURED,HAM,FAT,BNLESS,HTD~^^^^^0^^6.25^^^ -~10895~^~1000~^~Pork, cured, ham, separable fat, boneless, unheated~^~PORK,CURED,HAM,FAT,BNLESS,UNHTD~^^^^^0^^6.25^^^ -~10898~^~1000~^~Pork, pickled pork hocks~^~PORK,PICKLED PORK HOCKS~^^^^^0^^6.25^^^ -~10899~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 5%, Separable fat 9%~^14^^^^^ -~10900~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10901~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRL SLCE,BNLES,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10902~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10903~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10904~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^21^^^^^ -~10905~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10906~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10907~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^17^^^^^ -~10908~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^18^^^^^ -~10909~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10910~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^4^^^^^ -~10911~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10912~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^12^^^^^ -~10913~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^10^^^^^ -~10914~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%~^19^^^^^ -~10915~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^4^^^^^ -~10916~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10917~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10918~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%~^14^^^^^ -~10919~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%~^20^^^^^ -~10920~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone 3%, Connective tissue 1%~^4^^^^^ -~10921~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLICE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10922~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10923~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^14^^^^^ -~10924~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%~^15^^^^^ -~10925~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^3^^^^^ -~10926~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLICE,BNLES,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10927~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUCS,SPRL SLCE,BNLES,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10928~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10929~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^23^^^^^ -~10931~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Separable fat 10%~^23^^^^^ -~10932~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 13%, Separable fat 13%~^26^^^^^ -~10933~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Separable fat 10%~^22^^^^^ -~10934~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 11%, Separable fat 12%~^23^^^^^ -~10935~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10936~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^11^^^^^ -~10937~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,HTD,PAN-BROIL~^^^^~Bone~^14^^^^^ -~10938~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 5%, Separable fat 11%~^16^^^^^ -~10939~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^5^^^^^ -~10940~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,SPARERIBS,LN & FAT,CKD,RSTD~^^^^~Bone~^32^^^^^ -~10942~^~1000~^~Pork, fresh, composite of separable fat, with added solution, raw~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~10943~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue, 4%, Separable fat, 1%~^5^^^^^ -~10944~^~1000~^~Pork, fresh, enhanced, loin, tenderloin, separable lean only, raw~^~PORK,FRSH,ENHANCED,LOIN,TENDERLOIN,LN,RAW~^^^~Y~^~Connective tissue, 3%, Separable fat, 2%~^5^^^4.27^9.02^3.87 -~10945~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution cooked, braised~^~PORK,FRSH,SHLDR,(BSTN BTT),BLDE (STKS),LN,W/ADDEDSLNCKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%, Separable fat, 7%~^35^^^4.27^9.02^3.87 -~10946~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution, raw~^~PORK,FRSH,SHLDR,(BSTN BUTT),BLDE (STKS),LN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%, Separable fat, 9%~^32^^^^^ -~10947~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, broiled~^~PORK,FRSH,LN,TOP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,BRLD~^^^~Y~^~Separable fat 7%~^7^^^^^ -~10948~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, raw~^~PORK,FRSH,LN,TOP LIN (CHOPS),BNLSS,LN,W/ ADDED SLN,RAW~^^^~Y~^~Separable fat 14%~^14^^^^^ -~10949~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TP LN (CHPS),BNLSS,LN & FT,W/ ADDED SLN,RAW~^^^~Y~^^0^^6.25^^^ -~10950~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLSS,LN & FT,W/ADDED SLN,CKD,BRLD~^^^~Y~^^0^^^^^ -~10951~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN & FAT,W/ ADDED SLN,RAW~^^^~Y~^~Connective tissue 3%~^3^^^^^ -~10952~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN & FT,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^^^^ -~10953~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat,with added solution, raw~^~PORK,FRSH,SHDR,(BSTN BTT),BLDE(STKS),LN & FT,W/ADDED SLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%~^23^^^^^ -~10954~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, with added solution, cooked, braised~^~PORK,FRSH,SHDR,(BSTN BT),BLDE(STKS),LN&FT,WADDEDSLN,CKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%~^28^^^^^ -~10955~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^13^^^^^ -~10956~^~1000~^~Pork, loin, leg cap steak, boneless, separable lean and fat, cooked, broiled~^~PORK,LOIN,LEG CAP STEAK,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10957~^~1000~^~Pork, Leg Cap Steak, boneless, separable lean and fat, raw~^~PORK,LEG CAP STEAK,BNLESS,LN & FAT,RAW~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10958~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, raw~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,RAW~^~URMIS #3604, Shoulder breast, Pectoralis Profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10959~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3604, Shoulder breast, Pectoralis profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10960~^~1000~^~Pork, shoulder, petite tender, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR,PETITE TENDER,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10961~^~1000~^~Pork, Shoulder petite tender, boneless, separable lean and fat, raw~^~PORK,SHLDR PETITE TENDER,BNLESS,LN & FAT,RAW~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10962~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, cooked, braised~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,CKD,BRSD~^~URMIS #3647, Leg sirloin tip roast, Vastas Lateralis/Rectus femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10963~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, raw~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,RAW~^~URMIS #3647, Leg sirloin tip roast, Vastas lateralis/Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10972~^~1000~^~Pork, ground, 84% lean / 16% fat, raw~^~PORK,GROUND,84% LN / 16% FAT,RAW~^^^^^0^^^^^ -~10973~^~1000~^~Pork, ground, 96% lean / 4% fat, raw~^~PORK,GROUND,96% LN / 4% FAT,RAW~^^^^^0^^^^^ -~10974~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, crumbles~^~PORK,GROUND,72% LN / 28% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10975~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, crumbles~^~PORK,GROUND,84% LN / 16% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10976~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, crumbles~^~PORK,GROUND,96% LN / 4% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10977~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, pan-broiled~^~PORK,GROUND,72% LN / 28% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10978~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, pan-broiled~^~PORK,GROUND,84% LN / 16% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10979~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, pan-broiled~^~PORK,GROUND,96% LN / 4% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10980~^~1000~^~Pork loin, fresh, backribs, bone-in, raw, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,RAW,LN~^^^~Y~^~Bone 30%, Connective tissue 7%, Separable fat 9%~^50^^^^^ -~10981~^~1000~^~Pork loin, fresh, backribs, bone-in, cooked-roasted, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,COOKED-ROASTED,LN~^^^~Y~^~Bone 31%, Connective tissue 4%, Separable fat 5%~^40^^^^^ -~10982~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 7%, Separable fat 6%~^13^^^^^ -~10983~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 5%~^10^^^^^ -~10984~^~1000~^~Pork, fresh, loin, blade (chops), boneless, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BNLESS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10985~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10986~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%, Separable fat 8%~^30^^^^^ -~10987~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%, Separable fat 11%~^19^^^^^ -~10988~^~1000~^~Pork, fresh, blade, (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,BLADE,(CHOPS),BNLESS,LN & FAT,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10989~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean and fat only, raw~^~PORK,FRSH,LOIN,BLDE (CHOPS OR ROAST),BNLESS,LN & FAT OLY,RAW~^^^^~Connective tissue 7%~^7^^^^^ -~10990~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN & FAT,CKD,RSTD~^^^^~Connective tissue 5%~^5^^^^^ -~10991~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10992~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%~^22^^^^^ -~10993~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%,~^7^^^^^ -~10994~^~1000~^~Bacon, pre-sliced, reduced/low sodium, unprepared~^~BACON,PRE-SLICED,REDUCED/LOW NA,UNPREP~^^^^^0^^^^^ -~10998~^~1000~^~Canadian bacon, cooked, pan-fried~^~CANADIAN BACON,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~11001~^~1100~^~Alfalfa seeds, sprouted, raw~^~ALFALFA SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Medicago sativa~^6.25^2.44^8.37^3.57 -~11003~^~1100~^~Amaranth leaves, raw~^~AMARANTH LEAVES,RAW~^^^^~Tough stems~^6^~Amaranthus spp.~^6.25^2.44^8.37^3.57 -~11004~^~1100~^~Amaranth leaves, cooked, boiled, drained, without salt~^~AMARANTH LEAVES,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11005~^~1100~^~Arrowhead, raw~^~ARROWHEAD,RAW~^^^^~Skin and sprout~^25^~Sagittaria latifolia~^6.25^2.78^8.37^3.84 -~11006~^~1100~^~Arrowhead, cooked, boiled, drained, without salt~^~ARROWHEAD,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11007~^~1100~^~Artichokes, (globe or french), raw~^~ARTICHOKES,(GLOBE OR FRENCH),RAW~^^^^~Stem and inedible parts of bracts and flowers~^60^~Cynara scolymus~^6.25^2.44^8.37^3.57 -~11008~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,WO/SALT~^^^~Y~^~Stem and inedible parts of bracts and flowers~^60^^6.25^2.44^8.37^3.57 -~11009~^~1100~^~Artichokes, (globe or french), frozen, unprepared~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11010~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11011~^~1100~^~Asparagus, raw~^~ASPARAGUS,RAW~^^^~Y~^~Butt ends~^47^~Asparagus officinalis~^6.25^2.44^8.37^3.57 -~11012~^~1100~^~Asparagus, cooked, boiled, drained~^~ASPARAGUS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11013~^~1100~^~Asparagus, canned, regular pack, solids and liquids~^~ASPARAGUS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11015~^~1100~^~Asparagus, canned, drained solids~^~ASPARAGUS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11018~^~1100~^~Asparagus, frozen, unprepared~^~ASPARAGUS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11019~^~1100~^~Asparagus, frozen, cooked, boiled, drained, without salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11022~^~1100~^~Balsam-pear (bitter gourd), leafy tips, raw~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^62^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11023~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11024~^~1100~^~Balsam-pear (bitter gourd), pods, raw~^~BALSAM-PEAR (BITTER GOURD),PODS,RAW~^^^^~Tough stems and leaves~^17^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11025~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11026~^~1100~^~Bamboo shoots, raw~^~BAMBOO SHOOTS,RAW~^^^~Y~^~Sheath~^71^~Phyllostachys spp.~^6.25^2.44^8.37^3.57 -~11027~^~1100~^~Bamboo shoots, cooked, boiled, drained, without salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11028~^~1100~^~Bamboo shoots, canned, drained solids~^~BAMBOO SHOOTS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11029~^~1100~^~Beans, kidney, mature seeds, sprouted, raw~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11030~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11031~^~1100~^~Lima beans, immature seeds, raw~^~LIMA BNS,IMMAT SEEDS,RAW~^^^~Y~^~Pods and imperfect beans~^56^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~11032~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11033~^~1100~^~Lima beans, immature seeds, canned, regular pack, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11037~^~1100~^~Lima beans, immature seeds, frozen, fordhook, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11038~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11039~^~1100~^~Lima beans, immature seeds, frozen, baby, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11040~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11043~^~1100~^~Mung beans, mature seeds, sprouted, raw~^~MUNG BNS,MATURE SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^2.44^8.37^3.57 -~11044~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11045~^~1100~^~Mung beans, mature seeds, sprouted, cooked, stir-fried~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11046~^~1100~^~Beans, navy, mature seeds, sprouted, raw~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11047~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11048~^~1100~^~Beans, pinto, immature seeds, frozen, unprepared~^~BEANS,PINTO,IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11049~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, without salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11050~^~1100~^~Beans, shellie, canned, solids and liquids~^~BEANS,SHELLIE,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^2.96^8.37^3.82 -~11052~^~1100~^~Beans, snap, green, raw~^~BEANS,SNAP,GREEN,RAW~^^^~Y~^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11053~^~1100~^~Beans, snap, green, cooked, boiled, drained, without salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11054~^~1100~^~Beans, snap, green, canned, regular pack, solids and liquids~^~BEANS,SNAP,GRN,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11056~^~1100~^~Beans, snap, green, canned, regular pack, drained solids~^~BEANS,SNAP,GRN,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11058~^~1100~^~Beans, snap, canned, all styles, seasoned, solids and liquids~^~BEANS,SNAP,CND,ALL STYLES,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11060~^~1100~^~Beans, snap, green, frozen, all styles, unprepared (Includes foods for USDA's Food Distribution Program)~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11061~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained without salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11062~^~1100~^~Beans, snap, green, frozen, all styles, microwaved~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11063~^~1100~^~Beans, snap, green, microwaved~^~BEANS,SNAP,GRN,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11080~^~1100~^~Beets, raw~^~BEETS,RAW~^^^~Y~^~Parings and part tops~^33^~Beta vulgaris~^6.25^2.78^8.37^3.84 -~11081~^~1100~^~Beets, cooked, boiled, drained~^~BEETS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11082~^~1100~^~Beets, canned, regular pack, solids and liquids~^~BEETS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11084~^~1100~^~Beets, canned, drained solids~^~BEETS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11086~^~1100~^~Beet greens, raw~^~BEET GREENS,RAW~^^^~Y~^~Stems, bruised and old leaves~^44^~Beta vulgaris~^6.25^2.44^8.37^3.57 -~11087~^~1100~^~Beet greens, cooked, boiled, drained, without salt~^~BEET GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11088~^~1100~^~Broadbeans, immature seeds, raw~^~BROADBEANS,IMMAT SEEDS,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^3.47^8.37^4.07 -~11089~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, without salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11090~^~1100~^~Broccoli, raw~^~BROCCOLI,RAW~^^^~Y~^~Leaves and tough stalks with trimmings~^39^~Brassica oleracea var. italica~^6.25^2.44^8.37^3.57 -~11091~^~1100~^~Broccoli, cooked, boiled, drained, without salt~^~BROCCOLI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11092~^~1100~^~Broccoli, frozen, chopped, unprepared~^~BROCCOLI,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11093~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11094~^~1100~^~Broccoli, frozen, spears, unprepared (Includes foods for USDA's Food Distribution Program)~^~BROCCOLI,FRZ,SPEARS,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11095~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11096~^~1100~^~Broccoli raab, raw~^~BROCCOLI RAAB,RAW~^~Broccoli rabe, Rapini~^^~Y~^^0^~Brassica ruvo~^6.25^2.44^8.37^3.57 -~11097~^~1100~^~Broccoli raab, cooked~^~BROCCOLI RAAB,CKD~^~Broccoli rabe, Rapini~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11098~^~1100~^~Brussels sprouts, raw~^~BRUSSELS SPROUTS,RAW~^^^~Y~^~Outer leaves~^10^~Brassica oleracea (Gemmifera Group)~^6.25^2.44^8.37^3.57 -~11099~^~1100~^~Brussels sprouts, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11100~^~1100~^~Brussels sprouts, frozen, unprepared~^~BRUSSELS SPROUTS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11101~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11104~^~1100~^~Burdock root, raw~^~BURDOCK ROOT,RAW~^^^~Y~^~Skin, root and tips~^25^~Arctium lappa~^6.25^2.78^8.37^3.84 -~11105~^~1100~^~Burdock root, cooked, boiled, drained, without salt~^~BURDOCK ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11106~^~1100~^~Butterbur, (fuki), raw~^~BUTTERBUR,(FUKI),RAW~^^^^~Leaves, stem ends, peels~^12^~Petasites japonicus~^6.25^2.44^8.37^3.57 -~11107~^~1100~^~Butterbur, cooked, boiled, drained, without salt~^~BUTTERBUR,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11108~^~1100~^~Butterbur, canned~^~BUTTERBUR,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11109~^~1100~^~Cabbage, raw~^~CABBAGE,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11110~^~1100~^~Cabbage, cooked, boiled, drained, without salt~^~CABBAGE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11112~^~1100~^~Cabbage, red, raw~^~CABBAGE,RED,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11113~^~1100~^~Cabbage, red, cooked, boiled, drained, without salt~^~CABBAGE,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11114~^~1100~^~Cabbage, savoy, raw~^~CABBAGE,SAVOY,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11115~^~1100~^~Cabbage, savoy, cooked, boiled, drained, without salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11116~^~1100~^~Cabbage, chinese (pak-choi), raw~^~CABBAGE,CHINESE (PAK-CHOI),RAW~^~pak choi, bok choy~^^~Y~^~Base and damaged leaves~^12^~Brassica rapa (Chinensis Group)~^6.25^2.44^8.37^3.57 -~11117~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,WO/SALT~^~bok choy, pak choi~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11118~^~1100~^~Cabbage, kimchi~^~CABBAGE,KIMCHI~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11119~^~1100~^~Cabbage, chinese (pe-tsai), raw~^~CABBAGE,CHINESE (PE-TSAI),RAW~^^^~Y~^~Outer leaves and root base~^7^~Brassica rapa (Pekinensis Group)~^6.25^2.44^8.37^3.57 -~11120~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11122~^~1100~^~Cardoon, raw~^~CARDOON,RAW~^^^^~Tough stems and leaves~^51^~Cynara cardunculus~^6.25^2.44^8.37^3.57 -~11123~^~1100~^~Cardoon, cooked, boiled, drained, without salt~^~CARDOON,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11124~^~1100~^~Carrots, raw~^~CARROTS,RAW~^^^~Y~^~Crown, tops and scrapings~^11^~Daucus carota~^6.25^2.78^8.37^3.84 -~11125~^~1100~^~Carrots, cooked, boiled, drained, without salt~^~CARROTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11126~^~1100~^~Carrots, canned, regular pack, solids and liquids~^~CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11128~^~1100~^~Carrots, canned, regular pack, drained solids~^~CARROTS,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11130~^~1100~^~Carrots, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~CARROTS,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11131~^~1100~^~Carrots, frozen, cooked, boiled, drained, without salt~^~CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11134~^~1100~^~Cassava, raw~^~CASSAVA,RAW~^^^~Y~^~Skin~^16^~Manihot esculenta~^6.25^2.78^8.37^4.03 -~11135~^~1100~^~Cauliflower, raw~^~CAULIFLOWER,RAW~^^^~Y~^~Leaf stalks, cores and trimmings~^61^~Brassica oleracea (Botrytis Group)~^6.25^2.44^8.37^3.57 -~11136~^~1100~^~Cauliflower, cooked, boiled, drained, without salt~^~CAULIFLOWER,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11137~^~1100~^~Cauliflower, frozen, unprepared~^~CAULIFLOWER,FRZ,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11138~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, without salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11141~^~1100~^~Celeriac, raw~^~CELERIAC,RAW~^^^~Y~^~Parings~^14^~Apium graveolens~^6.25^2.78^8.37^3.84 -~11142~^~1100~^~Celeriac, cooked, boiled, drained, without salt~^~CELERIAC,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11143~^~1100~^~Celery, raw~^~CELERY,RAW~^^^~Y~^~Roots and trimmings~^11^~Apium graveolens~^6.25^2.44^8.37^3.57 -~11144~^~1100~^~Celery, cooked, boiled, drained, without salt~^~CELERY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11145~^~1100~^~Celtuce, raw~^~CELTUCE,RAW~^^^^~Tough leaves and stems~^25^~Lactuca sativa~^6.25^2.44^8.37^3.57 -~11147~^~1100~^~Chard, swiss, raw~^~CHARD,SWISS,RAW~^^^~Y~^~Tough stems and damaged leaves~^8^~Beta vulgaris subsp. vulagaris~^6.25^2.44^8.37^3.57 -~11148~^~1100~^~Chard, swiss, cooked, boiled, drained, without salt~^~CHARD,SWISS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11149~^~1100~^~Chayote, fruit, raw~^~CHAYOTE,FRUIT,RAW~^~christophine~^^~Y~^~End and stem~^1^~Sechium edule~^6.25^2.44^8.37^3.57 -~11150~^~1100~^~Chayote, fruit, cooked, boiled, drained, without salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,WO/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11151~^~1100~^~Chicory, witloof, raw~^~CHICORY,WITLOOF,RAW~^^^^~Root base and core~^11^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11152~^~1100~^~Chicory greens, raw~^~CHICORY GREENS,RAW~^^^~Y~^~Tough stems and damaged leaves~^18^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11154~^~1100~^~Chicory roots, raw~^~CHICORY ROOTS,RAW~^^^^~Peels and tops~^18^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11156~^~1100~^~Chives, raw~^~CHIVES,RAW~^^^~Y~^^0^~Allium schoenoprasum~^6.25^2.44^8.37^3.57 -~11157~^~1100~^~Chrysanthemum, garland, raw~^~CHRYSANTHEMUM,GARLAND,RAW~^^^^~Stem ends~^4^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11158~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, without salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11161~^~1100~^~Collards, raw~^~COLLARDS,RAW~^^^~Y~^~Stems~^43^~Brassica oleracea var. viridis~^6.25^2.44^8.37^3.57 -~11162~^~1100~^~Collards, cooked, boiled, drained, without salt~^~COLLARDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11163~^~1100~^~Collards, frozen, chopped, unprepared~^~COLLARDS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11164~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, without salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11165~^~1100~^~Coriander (cilantro) leaves, raw~^~CORIANDER (CILANTRO) LEAVES,RAW~^~Chinese parsley, raw, Cilantro, raw~^^~Y~^~Roots, old and bruised leaves~^15^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~11167~^~1100~^~Corn, sweet, yellow, raw~^~CORN,SWT,YEL,RAW~^^^~Y~^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11168~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11170~^~1100~^~Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids~^~CORN,SWT,YEL,CND,BRINE PK,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11172~^~1100~^~Corn, sweet, yellow, canned, whole kernel, drained solids~^~CORN,SWT,YEL,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11174~^~1100~^~Corn, sweet, yellow, canned, cream style, regular pack~^~CORN,SWT,YEL,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11176~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, regular pack~^~CORN,SWT,YEL,CND,VACUUM PK,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11177~^~1100~^~Corn, sweet, yellow, canned, drained solids, rinsed with tap water~^~CORN,SWT,YEL,CND,DRND SOL,RINSED W/ TAP H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~11178~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, unprepared (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11179~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11180~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, unprepared~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11181~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11182~^~1100~^~Corn, yellow, whole kernel, frozen, microwaved~^~CORN,YEL,WHL KERNEL,FRZ,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11184~^~1100~^~Corn with red and green peppers, canned, solids and liquids~^~CORN W/RED&GRN PEPPERS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11190~^~1100~^~Cornsalad, raw~^~CORNSALAD,RAW~^^^^^^~Valerianella locusta~^6.25^2.44^8.37^3.57 -~11191~^~1100~^~Cowpeas (blackeyes), immature seeds, raw~^~COWPEAS (BLACKEYES),IMMAT SEEDS,RAW~^^^^~Pods~^49^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~11192~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11195~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, unprepared~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11196~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMTRE SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11197~^~1100~^~Cowpeas, young pods with seeds, raw~^~COWPEAS,YOUNG PODS W/SEEDS,RAW~^^^^~Ends and strings~^9^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11198~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, without salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11199~^~1100~^~Yardlong bean, raw~^~YARDLONG BEAN,RAW~^^^^~Ends~^5^~Vigna unguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~11200~^~1100~^~Yardlong bean, cooked, boiled, drained, without salt~^~YARDLONG BEAN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11201~^~1100~^~Cowpeas, leafy tips, raw~^~COWPEAS,LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^48^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11202~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, without salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11203~^~1100~^~Cress, garden, raw~^~CRESS,GARDEN,RAW~^^^~Y~^~Stems, crowns and spoiled leaves~^29^~Lepidium sativum~^6.25^2.44^8.37^3.57 -~11204~^~1100~^~Cress, garden, cooked, boiled, drained, without salt~^~CRESS,GARDEN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11205~^~1100~^~Cucumber, with peel, raw~^~CUCUMBER,WITH PEEL,RAW~^^^~Y~^~Ends~^3^~Cucumis sativus~^6.25^2.44^8.37^3.57 -~11206~^~1100~^~Cucumber, peeled, raw~^~CUCUMBER,PEELED,RAW~^^^~Y~^~Parings, ends and bruised spots~^27^^6.25^2.44^8.37^3.57 -~11207~^~1100~^~Dandelion greens, raw~^~DANDELION GREENS,RAW~^^^~Y~^^0^~Taraxacum officinale~^6.25^2.44^8.37^3.57 -~11208~^~1100~^~Dandelion greens, cooked, boiled, drained, without salt~^~DANDELION GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11209~^~1100~^~Eggplant, raw~^~EGGPLANT,RAW~^^^~Y~^~Ends, parings and trimmings~^19^~Solanum melongena~^6.25^2.44^8.37^3.57 -~11210~^~1100~^~Eggplant, cooked, boiled, drained, without salt~^~EGGPLANT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11211~^~1100~^~Edamame, frozen, unprepared~^~EDAMAME,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11212~^~1100~^~Edamame, frozen, prepared~^~EDAMAME,FRZ,PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11213~^~1100~^~Endive, raw~^~ENDIVE,RAW~^^^~Y~^~Outer leaves and core~^14^~Cichorium endivia~^6.25^2.44^8.37^3.57 -~11214~^~1100~^~Escarole, cooked, boiled, drained, no salt added~^~ESCAROLE,CKD,BLD,DRND,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11215~^~1100~^~Garlic, raw~^~GARLIC,RAW~^^^~Y~^~Knob and skin~^13^~Allium sativum~^6.25^2.78^8.37^3.84 -~11216~^~1100~^~Ginger root, raw~^~GINGER ROOT,RAW~^^^~Y~^~Scrapings~^7^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~11218~^~1100~^~Gourd, white-flowered (calabash), raw~^~GOURD,WHITE-FLOWERED (CALABASH),RAW~^^^^~Ends, skin, and seeds~^30^~Lagenaria siceraria~^6.25^2.44^8.37^3.57 -~11219~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, without salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11220~^~1100~^~Gourd, dishcloth (towelgourd), raw~^~GOURD,DISHCLOTH (TOWELGOURD),RAW~^^^^~Ribs, skin, stem and blossom end~^27^~Luffa aegyptiaca~^6.25^2.44^8.37^3.57 -~11221~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11222~^~1100~^~Drumstick leaves, raw~^~DRUMSTICK LEAVES,RAW~^~Harseradish tree leaves~^^^~Stems~^38^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11223~^~1100~^~Drumstick leaves, cooked, boiled, drained, without salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,WO/ SALT~^~Horseradish-tree~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11224~^~1100~^~Hyacinth-beans, immature seeds, raw~^~HYACINTH-BEANS,IMMAT SEEDS,RAW~^^^^~Ends and strings~^7^~Dolichos lablab~^6.25^3.47^8.37^4.07 -~11225~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11226~^~1100~^~Jerusalem-artichokes, raw~^~JERUSALEM-ARTICHOKES,RAW~^~Sunchokes~^^~Y~^~Parings~^31^~Helianthus tuberosus~^6.25^2.78^8.37^3.84 -~11228~^~1100~^~Jew's ear, (pepeao), raw~^~JEW'S EAR,(PEPEAO),RAW~^^^^~Stem end~^2^~Auricularia polytricha~^6.25^2.62^8.37^3.48 -~11230~^~1100~^~Pepeao, dried~^~PEPEAO,DRIED~^^^^~Stems and defects~^13^^6.25^2.62^8.37^3.48 -~11231~^~1100~^~Jute, potherb, raw~^~JUTE,POTHERB,RAW~^^^^~Tough leaves and stems~^38^~Corchorus olitorius~^6.25^2.44^8.37^3.57 -~11232~^~1100~^~Jute, potherb, cooked, boiled, drained, without salt~^~JUTE,POTHERB,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11233~^~1100~^~Kale, raw~^~KALE,RAW~^^^^~Stem ends, tough stems and tough midrib parts~^28^~Brassica oleracea (Acephala Group)~^6.25^2.44^8.37^3.57 -~11234~^~1100~^~Kale, cooked, boiled, drained, without salt~^~KALE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11235~^~1100~^~Kale, frozen, unprepared~^~KALE,FROZEN,UNPREPARED~^^^^^0^^6.25^2.44^8.37^3.57 -~11236~^~1100~^~Kale, frozen, cooked, boiled, drained, without salt~^~KALE,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11237~^~1100~^~Kanpyo, (dried gourd strips)~^~KANPYO,(DRIED GOURD STRIPS)~^^^^^0^^6.25^2.44^8.37^3.57 -~11238~^~1100~^~Mushrooms, shiitake, raw~^~MUSHROOMS,SHIITAKE,RAW~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11239~^~1100~^~Mushrooms, Chanterelle, raw~^~MUSHROOMS,CHANTERELLE,RAW~^^^^^0^~Cantharellus californicus or Cantharellus cibarius~^6.25^2.62^8.37^3.48 -~11240~^~1100~^~Mushrooms, morel, raw~^~MUSHROOMS,MOREL,RAW~^^^^^0^~Morchella spp.~^6.25^2.62^8.37^3.48 -~11241~^~1100~^~Kohlrabi, raw~^~KOHLRABI,RAW~^^^~Y~^~Leaves, stems and parings~^54^~Brassica oleracea (Gongylodes Group)~^6.25^2.44^8.37^3.57 -~11242~^~1100~^~Kohlrabi, cooked, boiled, drained, without salt~^~KOHLRABI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11243~^~1100~^~Mushrooms, portabella, grilled~^~MUSHROOMS,PORTABELLA,GRILLED~^~Portobello~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11244~^~1100~^~Lambsquarters, raw~^~LAMBSQUARTERS,RAW~^^^^^^~Chenopodium album~^6.25^2.44^8.37^3.57 -~11245~^~1100~^~Lambsquarters, cooked, boiled, drained, without salt~^~LAMBSQUARTERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11246~^~1100~^~Leeks, (bulb and lower leaf-portion), raw~^~LEEKS,(BULB&LOWER LEAF-PORTION),RAW~^^^~Y~^~Tops, root end and skin~^56^~Allium ampeloprasum~^6.25^2.78^8.37^3.84 -~11247~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11248~^~1100~^~Lentils, sprouted, raw~^~LENTILS,SPROUTED,RAW~^^^^^0^~Lens culinaris~^6.25^2.44^8.37^3.57 -~11249~^~1100~^~Lentils, sprouted, cooked, stir-fried, without salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11250~^~1100~^~Lettuce, butterhead (includes boston and bibb types), raw~^~LETTUCE,BUTTERHEAD (INCL BOSTON&BIBB TYPES),RAW~^^^~Y~^~Outer leaves and core~^26^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11251~^~1100~^~Lettuce, cos or romaine, raw~^~LETTUCE,COS OR ROMAINE,RAW~^^^~Y~^~Core~^6^~Lactuca sativa var. logifolia~^6.25^2.44^8.37^3.57 -~11252~^~1100~^~Lettuce, iceberg (includes crisphead types), raw~^~LETTUCE,ICEBERG (INCL CRISPHEAD TYPES),RAW~^^^~Y~^~Core~^5^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11253~^~1100~^~Lettuce, green leaf, raw~^~LETTUCE,GRN LEAF,RAW~^^^~Y~^~Outer leaves, core and trimmings~^36^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11254~^~1100~^~Lotus root, raw~^~LOTUS ROOT,RAW~^^^^~Skins and ends of lobes~^21^~Nelumbo nucifera~^6.25^2.78^8.37^3.84 -~11255~^~1100~^~Lotus root, cooked, boiled, drained, without salt~^~LOTUS ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11257~^~1100~^~Lettuce, red leaf, raw~^~LETTUCE,RED LEAF,RAW~^^^^~Core and damaged outer leaves~^20^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11258~^~1100~^~Mountain yam, hawaii, raw~^~MOUNTAIN YAM,HAWAII,RAW~^^^^~Ends and skin~^17^~Dioscorea pentaphylla~^6.25^2.78^8.37^3.84 -~11259~^~1100~^~Mountain yam, hawaii, cooked, steamed, without salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11260~^~1100~^~Mushrooms, white, raw~^~MUSHROOMS,WHITE,RAW~^^^~Y~^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11261~^~1100~^~Mushrooms, white, cooked, boiled, drained, without salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11263~^~1100~^~Mushrooms, white, stir-fried~^~MUSHROOMS,WHITE,STIR-FRIED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11264~^~1100~^~Mushrooms, canned, drained solids~^~MUSHROOMS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11265~^~1100~^~Mushrooms, portabella, raw~^~MUSHROOMS,PORTABELLA,RAW~^~Portabello~^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11266~^~1100~^~Mushrooms, brown, italian, or crimini, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,RAW~^^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11267~^~1100~^~Mushrooms, shiitake, stir-fried~^~MUSHROOMS,SHIITAKE,STIR-FRIED~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11268~^~1100~^~Mushrooms, shiitake, dried~^~MUSHROOMS,SHIITAKE,DRIED~^^^~Y~^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11269~^~1100~^~Mushrooms, shiitake, cooked, without salt~^~MUSHROOMS,SHIITAKE,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11270~^~1100~^~Mustard greens, raw~^~MUSTARD GREENS,RAW~^^^~Y~^~Bases~^7^~Brassica juncea~^6.25^2.44^8.37^3.57 -~11271~^~1100~^~Mustard greens, cooked, boiled, drained, without salt~^~MUSTARD GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11272~^~1100~^~Mustard greens, frozen, unprepared~^~MUSTARD GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11273~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, without salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11274~^~1100~^~Mustard spinach, (tendergreen), raw~^~MUSTARD SPINACH,(TENDERGREEN),RAW~^^^^~Trimmings~^7^~Brassica rapa (Perviridis Group)~^6.25^2.44^8.37^3.57 -~11275~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, without salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11276~^~1100~^~New Zealand spinach, raw~^~NEW ZEALAND SPINACH,RAW~^^^^~Large stems and roots~^28^~Tetragonia tetragonioides~^6.25^2.44^8.37^3.57 -~11277~^~1100~^~New Zealand spinach, cooked, boiled, drained, without salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11278~^~1100~^~Okra, raw~^~OKRA,RAW~^^^~Y~^~Crown and tips~^14^~Abelmoschus esculentus~^6.25^2.44^8.37^3.57 -~11279~^~1100~^~Okra, cooked, boiled, drained, without salt~^~OKRA,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11280~^~1100~^~Okra, frozen, unprepared~^~OKRA,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11281~^~1100~^~Okra, frozen, cooked, boiled, drained, without salt~^~OKRA,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11282~^~1100~^~Onions, raw~^~ONIONS,RAW~^^^~Y~^~Stem ends, sprouts and defects~^10^~Allium cepa~^6.25^2.78^8.37^3.84 -~11283~^~1100~^~Onions, cooked, boiled, drained, without salt~^~ONIONS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11284~^~1100~^~Onions, dehydrated flakes~^~ONIONS,DEHYDRATED FLAKES~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11285~^~1100~^~Onions, canned, solids and liquids~^~ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11286~^~1100~^~Onions, yellow, sauteed~^~ONIONS,YEL,SAUTEED~^^^^^0^^6.25^2.78^8.37^3.84 -~11287~^~1100~^~Onions, frozen, chopped, unprepared~^~ONIONS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11288~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, without salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11289~^~1100~^~Onions, frozen, whole, unprepared~^~ONIONS,FRZ,WHL,UNPREP~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11290~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, without salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11291~^~1100~^~Onions, spring or scallions (includes tops and bulb), raw~^~ONIONS,SPRING OR SCALLIONS (INCL TOPS&BULB),RAW~^^^~Y~^~Rootlets~^4^~Allium cepa or Allium fistulosum~^6.25^2.44^8.37^3.57 -~11292~^~1100~^~Onions, young green, tops only~^~ONIONS,YOUNG GRN,TOPS ONLY~^^^~Y~^^0^~Allium cepa~^6.25^2.44^8.37^3.57 -~11293~^~1100~^~Onions, welsh, raw~^~ONIONS,WELSH,RAW~^^^^~Leaf tops and roots~^35^~Allium fistulosum~^6.25^2.78^8.37^3.84 -~11294~^~1100~^~Onions, sweet, raw~^~ONIONS,SWT,RAW~^^^^~Stem, root, and two outermost layers~^16^~Allium cepa~^6.25^2.78^8.37^3.84 -~11295~^~1100~^~Onion rings, breaded, par fried, frozen, unprepared~^~ONION RINGS,BREADED,PAR FR,FRZ,UNPREP~^^^^^0^^6.07^3.70^8.80^4.00 -~11296~^~1100~^~Onion rings, breaded, par fried, frozen, prepared, heated in oven~^~ONION RINGS,BREADED,PAR FR,FRZ,PREP,HTD IN OVEN~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~11297~^~1100~^~Parsley, fresh~^~PARSLEY,FRSH~^^^~Y~^~Tough stems~^5^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~11298~^~1100~^~Parsnips, raw~^~PARSNIPS,RAW~^^^^~Parings~^15^~Pastinaca sativa~^6.25^2.78^8.37^3.84 -~11299~^~1100~^~Parsnips, cooked, boiled, drained, without salt~^~PARSNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11300~^~1100~^~Peas, edible-podded, raw~^~PEAS,EDIBLE-PODDED,RAW~^~Snowpeas, Sugar snap peas~^^~Y~^~Ends and strings~^6^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11301~^~1100~^~Peas, edible-podded, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,BLD,DRND,WO/ SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11302~^~1100~^~Peas, edible-podded, frozen, unprepared~^~PEAS,EDIBLE-PODDED,FRZ,UNPREP~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11303~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,WO/SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11304~^~1100~^~Peas, green, raw~^~PEAS,GREEN,RAW~^^^~Y~^~Pods and inedible peas~^62^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11305~^~1100~^~Peas, green, cooked, boiled, drained, without salt~^~PEAS,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11306~^~1100~^~Peas, green, canned, regular pack, solids and liquids~^~PEAS,GRN,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11308~^~1100~^~Peas, green (includes baby and lesuer types), canned, drained solids, unprepared~^~PEAS,GRN (INCLUDES BABY & LESUER TYPES),CND,DRND SOL,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11310~^~1100~^~Peas, green, canned, seasoned, solids and liquids~^~PEAS,GRN,CND,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11311~^~1100~^~Peas, green, canned, drained solids, rinsed in tap water~^~PEAS,GRN,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~11312~^~1100~^~Peas, green, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~PEAS,GRN,FRZ,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11313~^~1100~^~Peas, green, frozen, cooked, boiled, drained, without salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11316~^~1100~^~Peas, mature seeds, sprouted, raw~^~PEAS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11317~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, without salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11318~^~1100~^~Peas and carrots, canned, regular pack, solids and liquids~^~PEAS&CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.98^8.37^3.16 -~11322~^~1100~^~Peas and carrots, frozen, unprepared~^~PEAS&CARROTS,FRZ,UNPREP~^^^^^0^^6.25^3.98^8.37^3.16 -~11323~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, without salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11324~^~1100~^~Peas and onions, canned, solids and liquids~^~PEAS&ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.40^8.37^4.00 -~11326~^~1100~^~Peas and onions, frozen, unprepared~^~PEAS&ONIONS,FRZ,UNPREP~^^^^^0^^6.25^3.40^8.37^4.00 -~11327~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, without salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.40^8.37^4.00 -~11329~^~1100~^~Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,GRN,CND,PODS,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11333~^~1100~^~Peppers, sweet, green, raw~^~PEPPERS,SWT,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11334~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, without salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11335~^~1100~^~Peppers, sweet, green, canned, solids and liquids~^~PEPPERS,SWT,GRN,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11337~^~1100~^~Peppers, sweet, green, frozen, chopped, unprepared~^~PEPPERS,SWT,GRN,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11338~^~1100~^~Peppers, sweet, green, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11339~^~1100~^~Peppers, sweet, green, sauteed~^~PEPPERS,SWT,GRN,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11344~^~1100~^~Pigeonpeas, immature seeds, raw~^~PIGEONPEAS,IMMAT SEEDS,RAW~^^^~Y~^~Pods~^52^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~11345~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, without salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11349~^~1100~^~Poi~^~POI~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11350~^~1100~^~Pokeberry shoots, (poke), raw~^~POKEBERRY SHOOTS,(POKE),RAW~^^^^^^~Phytolacca americana~^6.25^2.44^8.37^3.57 -~11351~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, without salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11352~^~1100~^~Potatoes, flesh and skin, raw~^~POTATOES,FLESH & SKN,RAW~^^^~Y~^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11353~^~1100~^~Potatoes, russet, flesh and skin, raw (Includes foods for USDA's Food Distribution Program)~^~POTATOES,RUSSET,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11354~^~1100~^~Potatoes, white, flesh and skin, raw~^~POTATOES,WHITE,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11355~^~1100~^~Potatoes, red, flesh and skin, raw~^~POTATOES,RED,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11356~^~1100~^~Potatoes, Russet, flesh and skin, baked~^~POTATOES,RUSSET,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11357~^~1100~^~Potatoes, white, flesh and skin, baked~^~POTATOES,WHITE,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11358~^~1100~^~Potatoes, red, flesh and skin, baked~^~POTATOES,RED,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11359~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, as purchased~^~POTATOES,FR FR,CRNKL OR REG,SALT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11360~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, oven-heated~^~POTATOES,FR FR,CRNKL/REG CUT,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.78^8.37^4.03 -~11361~^~1100~^~Potatoes, roasted, salt added in processing, frozen, unprepared~^~POTATOES,RSTD,SALT ADDED IN PROCESSING,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11362~^~1100~^~Potatoes, raw, skin~^~POTATOES,RAW,SKIN~^^^^^0^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11363~^~1100~^~Potatoes, baked, flesh, without salt~^~POTATOES,BKD,FLESH,WO/SALT~^^^~Y~^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11364~^~1100~^~Potatoes, baked, skin, without salt~^~POTATOES,BKD,SKN,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11365~^~1100~^~Potatoes, boiled, cooked in skin, flesh, without salt~^~POTATOES,BLD,CKD IN SKN,FLESH,WO/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11366~^~1100~^~Potatoes, boiled, cooked in skin, skin, without salt~^~POTATOES,BLD,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11367~^~1100~^~Potatoes, boiled, cooked without skin, flesh, without salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11368~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,WO/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11369~^~1100~^~Potatoes, microwaved, cooked in skin, skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11370~^~1100~^~Potatoes, hash brown, home-prepared~^~POTATOES,HASH BROWN,HOME-PREPARED~^~Potatoes, hashed brown~^^~Y~^^0^^^^^ -~11371~^~1100~^~Potatoes, mashed, home-prepared, whole milk and margarine added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & MARGARINE ADDED~^^^~Y~^^0^^^^^ -~11372~^~1100~^~Potatoes, scalloped, home-prepared with butter~^~POTATOES,SCALLPD,HOME-PREPARED W/BUTTER~^^^^^0^^^^^ -~11373~^~1100~^~Potatoes, au gratin, home-prepared from recipe using butter~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING BUTTER~^^^^^0^^^^^ -~11374~^~1100~^~Potatoes, canned, solids and liquids~^~POTATOES,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^4.03 -~11376~^~1100~^~Potatoes, canned, drained solids~^~POTATOES,CND,DRND SOL~^^^^^0^^6.25^2.78^8.37^4.03 -~11378~^~1100~^~Potatoes, mashed, dehydrated, flakes without milk, dry form~^~POTATOES,MSHD,DEHYD,FLAKES WO/MILK,DRY FORM~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11379~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FROM FLAKES WO/ MILK,WHL MILK & BUT~^^^~Y~^^0^^^^^ -~11380~^~1100~^~Potatoes, mashed, dehydrated, granules without milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES WO/MILK,DRY FORM~^^^^^0^^6.25^2.78^8.37^4.03 -~11381~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FR GRNLS WO/MILK,WHL MILK&BUTTER~^^^^^0^^6.29^3.21^8.82^4.02 -~11382~^~1100~^~Potatoes, mashed, dehydrated, granules with milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES W/MILK,DRY FORM~^^^~Y~^^0^^6.29^3.21^8.82^4.02 -~11383~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules with milk, water and margarine added~^~POTATOES,MSHD,DEHYD,PREP FROM GRAN W/ MILK,H2O & MARG ADDED~^^^^^0^^^^^ -~11384~^~1100~^~Potatoes, au gratin, dry mix, unprepared~^~POTATOES,AU GRATIN,DRY MIX,UNPREP~^^^^^0^^0.00^^^ -~11385~^~1100~^~Potatoes, au gratin, dry mix, prepared with water, whole milk and butter~^~POTATOES,AU GRATIN,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^0.00^^^ -~11386~^~1100~^~Potatoes, scalloped, dry mix, unprepared~^~POTATOES,SCALLPD,DRY MIX,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11387~^~1100~^~Potatoes, scalloped, dry mix, prepared with water, whole milk and butter~^~POTATOES,SCALLPD,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^6.25^2.78^8.37^4.03 -~11390~^~1100~^~Potatoes, hash brown, frozen, plain, unprepared~^~POTATOES,HASH BROWN,FRZ,PLN,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11391~^~1100~^~Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil~^~POTATOES,HASH BROWN,FRZ,PLN,PREP,PAN FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11392~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, unprepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11393~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, prepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,PREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11394~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,SHOESTRING,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11395~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,SHOESTRNG,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11396~^~1100~^~Potatoes, o'brien, frozen, unprepared~^~POTATOES,O'BRIEN,FRZ,UNPREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11397~^~1100~^~Potatoes, o'brien, frozen, prepared~^~POTATOES,O'BRIEN,FRZ,PREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11398~^~1100~^~Potato puffs, frozen, unprepared~^~POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11399~^~1100~^~Potato puffs, frozen, oven-heated~^~POTATO PUFFS,FRZ,OVEN-HEATED~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11401~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, without salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11402~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11403~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, home-prepared, oven heated~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,OVEN HTD~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~11406~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, as purchased~^~POTATOES,FRNCH FR,CTTG-CUT,SALT NOT ADDED,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11407~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,COTTAGE-CUT,SALT NOT ADDED,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11408~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, unprepared~^~POTATOES,FRZ,FRENCH FR,PAR FR,EXTRUDED,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11409~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, prepared, heated in oven, without salt~^~POTATOES,FRZ,FRCH FR,PAR FR,EXTRUDED,PREP,HTD OVEN,WO/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11410~^~1100~^~Potato wedges, frozen (Includes foods for USDA's Food Distribution Program)~^~POTATO WEDGES,FRZ (INCL FOODS FOR USDA'S FD DISTR PGM)~^^^^^0^^6.25^2.80^8.80^4.00 -~11411~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11412~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11413~^~1100~^~Potato flour~^~POTATO FLOUR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11414~^~1100~^~Potato salad, home-prepared~^~POTATO SALAD,HOME-PREPARED~^^^^^0^^^^^ -~11416~^~1100~^~Pumpkin flowers, raw~^~PUMPKIN FLOWERS,RAW~^^^^~Pistil and calyx~^65^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11417~^~1100~^~Pumpkin flowers, cooked, boiled, drained, without salt~^~PUMPKIN FLOWERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11418~^~1100~^~Pumpkin leaves, raw~^~PUMPKIN LEAVES,RAW~^^^^~Stem and tough leaves~^59^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11419~^~1100~^~Pumpkin leaves, cooked, boiled, drained, without salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11422~^~1100~^~Pumpkin, raw~^~PUMPKIN,RAW~^^^~Y~^~Seeds, rind and stem~^30^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11423~^~1100~^~Pumpkin, cooked, boiled, drained, without salt~^~PUMPKIN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11424~^~1100~^~Pumpkin, canned, without salt~^~PUMPKIN,CND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11426~^~1100~^~Pumpkin pie mix, canned~^~PUMPKIN PIE MIX,CANNED~^^^^^0^^6.25^2.90^8.40^3.80 -~11427~^~1100~^~Purslane, raw~^~PURSLANE,RAW~^^^^~Tough stems and leaves~^24^~Portulaca oleracea~^6.25^2.44^8.37^3.57 -~11428~^~1100~^~Purslane, cooked, boiled, drained, without salt~^~PURSLANE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11429~^~1100~^~Radishes, raw~^~RADISHES,RAW~^^^~Y~^~Stem ends, rootlets and trimmings~^10^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11430~^~1100~^~Radishes, oriental, raw~^~RADISHES,ORIENTAL,RAW~^^^~Y~^~Tops and parings~^21^~Raphanus sativus (Longipinratus Group)~^6.25^2.78^8.37^3.84 -~11431~^~1100~^~Radishes, oriental, cooked, boiled, drained, without salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11432~^~1100~^~Radishes, oriental, dried~^~RADISHES,ORIENTAL,DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11435~^~1100~^~Rutabagas, raw~^~RUTABAGAS,RAW~^^^~Y~^~Parings~^15^~Brassica napus var. napobrassica~^6.25^2.78^8.37^3.84 -~11436~^~1100~^~Rutabagas, cooked, boiled, drained, without salt~^~RUTABAGAS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11437~^~1100~^~Salsify, (vegetable oyster), raw~^~SALSIFY,(VEG OYSTER),RAW~^^^^~Scrapings and rootlets~^13^~Tragopogon porrifolius~^6.25^2.78^8.37^3.84 -~11438~^~1100~^~Salsify, cooked, boiled, drained, without salt~^~SALSIFY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11439~^~1100~^~Sauerkraut, canned, solids and liquids~^~SAUERKRAUT,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11442~^~1100~^~Seaweed, agar, raw~^~SEAWEED,AGAR,RAW~^^^~Y~^^0^~Eucheuma spp.~^6.25^2.44^8.37^3.57 -~11444~^~1100~^~Seaweed, irishmoss, raw~^~SEAWEED,IRISHMOSS,RAW~^^^~Y~^^0^~Chondrus crispus~^6.25^2.44^8.37^3.57 -~11445~^~1100~^~Seaweed, kelp, raw~^~SEAWEED,KELP,RAW~^^^~Y~^^0^~Laminaria spp.~^6.25^2.44^8.37^3.57 -~11446~^~1100~^~Seaweed, laver, raw~^~SEAWEED,LAVER,RAW~^^^~Y~^^0^~Porphyra laciniata~^6.25^2.44^8.37^3.57 -~11447~^~1100~^~Sesbania flower, raw~^~SESBANIA FLOWER,RAW~^^^^~Stems, pistil and calyx~^15^~Sesbania spp.~^6.25^2.44^8.37^3.57 -~11448~^~1100~^~Sesbania flower, cooked, steamed, without salt~^~SESBANIA FLOWER,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11450~^~1100~^~Soybeans, green, raw~^~SOYBEANS,GREEN,RAW~^^^^~Pods~^47^~Glycine max~^6.25^3.47^8.37^4.07 -~11451~^~1100~^~Soybeans, green, cooked, boiled, drained, without salt~^~SOYBEANS,GRN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11452~^~1100~^~Soybeans, mature seeds, sprouted, raw~^~SOYBEANS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Glycine max~^6.25^2.44^8.37^3.57 -~11453~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11454~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11457~^~1100~^~Spinach, raw~^~SPINACH,RAW~^^^~Y~^~Large stems and roots~^28^~Spinacia oleracea~^6.25^2.44^8.37^3.57 -~11458~^~1100~^~Spinach, cooked, boiled, drained, without salt~^~SPINACH,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11459~^~1100~^~Spinach, canned, regular pack, solids and liquids~^~SPINACH,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11461~^~1100~^~Spinach, canned, regular pack, drained solids~^~SPINACH,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11463~^~1100~^~Spinach, frozen, chopped or leaf, unprepared (Includes foods for USDA's Food Distribution Program)~^~SPINACH,FRZ,CHOPD OR LEAF,UNPREP~^^^~Y~^^0^^^2.44^8.37^3.57 -~11464~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11467~^~1100~^~Squash, summer, crookneck and straightneck, raw~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,RAW~^^^^~Ends~^1^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11468~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK & STRAIGHTNECK,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11471~^~1100~^~Squash, summer, crookneck and straightneck, canned, drained, solid, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CND,DRND,SOLID,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11473~^~1100~^~Squash, summer, crookneck and straightneck, frozen, unprepared~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11474~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11475~^~1100~^~Squash, summer, scallop, raw~^~SQUASH,SUMMER,SCALLOP,RAW~^^^^~Stem ends~^2^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11476~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, without salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11477~^~1100~^~Squash, summer, zucchini, includes skin, raw~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,RAW~^^^~Y~^~Ends~^5^^6.25^2.44^8.37^3.57 -~11478~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11479~^~1100~^~Squash, summer, zucchini, includes skin, frozen, unprepared~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11480~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11481~^~1100~^~Squash, summer, zucchini, italian style, canned~^~SQUASH,SMMR,ZUCCHINI,ITALIAN STYLE,CND~^^^^^0^^6.25^2.50^8.40^3.70 -~11482~^~1100~^~Squash, winter, acorn, raw~^~SQUASH,WINTER,ACORN,RAW~^^^^~Rind~^24^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11483~^~1100~^~Squash, winter, acorn, cooked, baked, without salt~^~SQUASH,WNTR,ACORN,CKD,BKD,WO/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11484~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11485~^~1100~^~Squash, winter, butternut, raw~^~SQUASH,WNTR,BUTTERNUT,RAW~^^^^~Seeds, rind and trimmings~^16^~Cucurbita moschata~^6.25^2.44^8.37^3.57 -~11486~^~1100~^~Squash, winter, butternut, cooked, baked, without salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11487~^~1100~^~Squash, winter, butternut, frozen, unprepared~^~SQUASH,WNTR,BUTTERNUT,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11488~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, without salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11489~^~1100~^~Squash, winter, hubbard, raw~^~SQUASH,WINTER,HUBBARD,RAW~^^^^~Seeds, rind, trimmings and cutting loss~^36^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11490~^~1100~^~Squash, winter, hubbard, baked, without salt~^~SQUASH,WNTR,HUBBARD,BKD,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11491~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11492~^~1100~^~Squash, winter, spaghetti, raw~^~SQUASH,WNTR,SPAGHETTI,RAW~^^^^~Rind and seeds~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11493~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11495~^~1100~^~Succotash, (corn and limas), raw~^~SUCCOTASH,(CORN&LIMAS),RAW~^^^^^0^^6.25^2.72^8.37^3.71 -~11496~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11497~^~1100~^~Succotash, (corn and limas), canned, with cream style corn~^~SUCCOTASH,(CORN&LIMAS),CND,W/CRM STYLE CORN~^^^^^0^^6.25^2.72^8.37^3.71 -~11499~^~1100~^~Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids~^~SUCCOTASH,(CORN&LIMAS),CND,W/WHL KERNEL CORN,SOL&LIQUIDS~^^^^^0^^6.25^2.72^8.37^3.71 -~11501~^~1100~^~Succotash, (corn and limas), frozen, unprepared~^~SUCCOTASH,(CORN&LIMAS),FRZ,UNPREP~^^^^^0^^6.25^2.72^8.37^3.71 -~11502~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.72^8.37^3.71 -~11503~^~1100~^~Water convolvulus,raw~^~WATER CONVOLVULUS,RAW~^~kangkong, water spinach~^^^~Tough stems~^23^~Ipomoea aquatica~^6.25^2.44^8.37^3.57 -~11504~^~1100~^~Water convolvulus, cooked, boiled, drained, without salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,WO/ SALT~^~Kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11505~^~1100~^~Sweet potato leaves, raw~^~SWEET POTATO LEAVES,RAW~^~Sweetpotato leaves~^^^~Tough stems and bruised leaves~^6^~Ipomoea batatas~^6.25^2.44^8.37^3.57 -~11506~^~1100~^~Sweet potato leaves, cooked, steamed, without salt~^~SWEET POTATO LEAVES,CKD,STMD,WO/ SALT~^~Sweetpotato leaves~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11507~^~1100~^~Sweet potato, raw, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,RAW,UNPREP~^~Sweetpotato~^^~Y~^~Parings and trimmings~^28^~Ipomoea batatas~^6.25^2.78^8.37^4.03 -~11508~^~1100~^~Sweet potato, cooked, baked in skin, flesh, without salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,WO/ SALT~^~Sweetpotato~^^~Y~^~Skin~^22^^6.25^2.78^8.37^4.03 -~11510~^~1100~^~Sweet potato, cooked, boiled, without skin~^~SWEET POTATO,CKD,BLD,WO/ SKN~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11512~^~1100~^~Sweet potato, canned, vacuum pack~^~SWEETPOTATO,CND,VACUUM PK~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11514~^~1100~^~Sweet potato, canned, mashed~^~SWEET POTATO,CND,MSHD~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11516~^~1100~^~Sweet potato, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,FRZ,UNPREP~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11517~^~1100~^~Sweet potato, frozen, cooked, baked, without salt~^~SWEET POTATO,FRZ,CKD,BKD,WO/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11518~^~1100~^~Taro, raw~^~TARO,RAW~^^^~Y~^~Ends and skin~^14^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11519~^~1100~^~Taro, cooked, without salt~^~TARO,COOKED,WITHOUT SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11520~^~1100~^~Taro leaves, raw~^~TARO LEAVES,RAW~^^^~Y~^~Stem, midrib and tough leaves~^40^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11521~^~1100~^~Taro leaves, cooked, steamed, without salt~^~TARO LEAVES,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11522~^~1100~^~Taro shoots, raw~^~TARO SHOOTS,RAW~^^^^~Ends~^12^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11523~^~1100~^~Taro shoots, cooked, without salt~^~TARO SHOOTS,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11525~^~1100~^~Taro, tahitian, raw~^~TARO,TAHITIAN,RAW~^^^^^^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11526~^~1100~^~Taro, tahitian, cooked, without salt~^~TARO,TAHITIAN,CKD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11527~^~1100~^~Tomatoes, green, raw~^~TOMATOES,GREEN,RAW~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11529~^~1100~^~Tomatoes, red, ripe, raw, year round average~^~TOMATOES,RED,RIPE,RAW,YEAR RND AVERAGE~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11530~^~1100~^~Tomatoes, red, ripe, cooked~^~TOMATOES,RED,RIPE,CKD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11531~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11533~^~1100~^~Tomatoes, red, ripe, canned, stewed~^~TOMATOES,RED,RIPE,CND,STWD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11537~^~1100~^~Tomatoes, red, ripe, canned, with green chilies~^~TOMATOES,RED,RIPE,CND,W/GRN CHILIES~^^^^^0^^6.25^2.44^8.37^3.57 -~11540~^~1100~^~Tomato juice, canned, with salt added~^~TOMATO JUC,CND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11546~^~1100~^~Tomato products, canned, paste, without salt added (Includes foods for USDA's Food Distribution Program)~^~TOMATO PRODUCTS,CND,PASTE,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11547~^~1100~^~Tomato products, canned, puree, without salt added~^~TOMATO PRODUCTS,CND,PUREE,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11548~^~1100~^~Tomato powder~^~TOMATO POWDER~^^^^^0^^6.25^2.44^8.37^3.57 -~11549~^~1100~^~Tomato products, canned, sauce~^~TOMATO PRODUCTS,CND,SAU~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11551~^~1100~^~Tomato products, canned, sauce, with mushrooms~^~TOMATO PRODUCTS,CND,SAU,W/MUSHROOMS~^^^^^0^^6.25^2.44^8.37^3.57 -~11553~^~1100~^~Tomato products, canned, sauce, with onions~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS~^^^^^0^^6.25^2.60^8.40^3.70 -~11555~^~1100~^~Tomato products, canned, sauce, with herbs and cheese~^~TOMATO PRODUCTS,CND,SAU,W/HERBS&CHS~^^^^^0^^6.28^3.00^8.80^3.50 -~11557~^~1100~^~Tomato products, canned, sauce, with onions, green peppers, and celery~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS,GRN PEPPERS,&CELERY~^^^~Y~^^0^^6.25^2.40^8.40^3.70 -~11559~^~1100~^~Tomato products, canned, sauce, with tomato tidbits~^~TOMATO PRODUCTS,CND,SAU,W/TOMATO TIDBITS~^^^^^0^^6.25^2.44^8.37^3.57 -~11563~^~1100~^~Tree fern, cooked, without salt~^~TREE FERN,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11564~^~1100~^~Turnips, raw~^~TURNIPS,RAW~^^^~Y~^~Parings~^19^~Brassica rapa (Rapifera Group)~^6.25^2.78^8.37^3.84 -~11565~^~1100~^~Turnips, cooked, boiled, drained, without salt~^~TURNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11566~^~1100~^~Turnips, frozen, unprepared~^~TURNIPS,FROZEN,UNPREPARED~^^^^^0^^6.25^2.78^8.37^3.84 -~11567~^~1100~^~Turnips, frozen, cooked, boiled, drained, without salt~^~TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11568~^~1100~^~Turnip greens, raw~^~TURNIP GREENS,RAW~^^^^~Root crown, tough stems and discarded leaves~^30^~Brassica rapa (Rapifera Group)~^6.25^2.44^8.37^3.57 -~11569~^~1100~^~Turnip greens, cooked, boiled, drained, without salt~^~TURNIP GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11570~^~1100~^~Turnip greens, canned, solids and liquids~^~TURNIP GRNS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11574~^~1100~^~Turnip greens, frozen, unprepared~^~TURNIP GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11575~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11576~^~1100~^~Turnip greens and turnips, frozen, unprepared~^~TURNIP GRNS&TURNIPS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11577~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11578~^~1100~^~Vegetable juice cocktail, canned~^~VEGETABLE JUC COCKTAIL,CND~^^^~Y~^^0^^6.25^^^ -~11579~^~1100~^~Vegetables, mixed, canned, solids and liquids~^~VEGETABLES,MXD,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11581~^~1100~^~Vegetables, mixed, canned, drained solids~^~VEGETABLES,MXD,CND,DRND SOL~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11583~^~1100~^~Vegetables, mixed, frozen, unprepared~^~VEGETABLES,MXD,FRZ,UNPREP~^^^^^0^^6.25^^^ -~11584~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, without salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11585~^~1100~^~Vegetable juice cocktail, low sodium, canned~^~VEGETABLE JUC COCKTAIL,LO NA,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11587~^~1100~^~Vinespinach, (basella), raw~^~VINESPINACH,(BASELLA),RAW~^^^^^0^~Basella alba~^6.25^2.44^8.37^3.57 -~11588~^~1100~^~Waterchestnuts, chinese, (matai), raw~^~WATERCHESTNUTS,CHINESE,(MATAI),RAW~^^^~Y~^~Skin~^23^~Eleocharis dulcis~^6.25^2.78^8.37^3.84 -~11590~^~1100~^~Waterchestnuts, chinese, canned, solids and liquids~^~WATERCHESTNUTS,CHINESE,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11591~^~1100~^~Watercress, raw~^~WATERCRESS,RAW~^^^~Y~^~Tough stems and ends~^8^~Nasturtium officinale~^6.25^2.44^8.37^3.57 -~11593~^~1100~^~Waxgourd, (chinese preserving melon), raw~^~WAXGOURD,(CHINESE PRESERVING MELON),RAW~^^^^~Stem, center and skin~^29^~Benincasa hispida~^6.25^2.44^8.37^3.57 -~11594~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11595~^~1100~^~Winged beans, immature seeds, raw~^~WINGED BNS,IMMAT SEEDS,RAW~^^^^~Ends~^2^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~11596~^~1100~^~Winged beans, immature seeds, cooked, boiled, drained, without salt~^~WINGED BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11597~^~1100~^~Winged bean leaves, raw~^~WINGED BEAN LEAVES,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.44^8.37^3.57 -~11599~^~1100~^~Winged bean tuber, raw~^~WINGED BEAN TUBER,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.78^8.37^3.84 -~11601~^~1100~^~Yam, raw~^~YAM,RAW~^^^~Y~^~Skin~^14^~Dioscorea spp.~^6.25^2.78^8.37^4.03 -~11602~^~1100~^~Yam, cooked, boiled, drained, or baked, without salt~^~YAM,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11603~^~1100~^~Yambean (jicama), raw~^~YAMBEAN (JICAMA),RAW~^^^~Y~^~Ends and skin~^8^~Pachyrhizus spp.~^6.25^2.78^8.37^4.03 -~11604~^~1100~^~Yambean (jicama), cooked, boiled, drained, without salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11605~^~1100~^~Beets, harvard, canned, solids and liquids~^~BEETS,HARVARD,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11609~^~1100~^~Beets, pickled, canned, solids and liquids~^~BEETS,PICKLED,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11613~^~1100~^~Borage, raw~^~BORAGE,RAW~^^^^~Tough leaves and stems~^20^~Borago officinalis~^6.25^2.44^8.37^3.57 -~11614~^~1100~^~Borage, cooked, boiled, drained, without salt~^~BORAGE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11615~^~1100~^~Chives, freeze-dried~^~CHIVES,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11616~^~1100~^~Dock, raw~^~DOCK,RAW~^^^^~Stalks~^30^~Rumex spp.~^6.25^2.44^8.37^3.57 -~11617~^~1100~^~Dock, cooked, boiled, drained, without salt~^~DOCK,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11618~^~1100~^~Eppaw, raw~^~EPPAW,RAW~^^^^^^~Perideridia oregana~^6.25^2.78^8.37^3.84 -~11620~^~1100~^~Drumstick pods, raw~^~DRUMSTICK PODS,RAW~^~Horseradish tree pods~^^^~Hard outer covering and fibers~^48^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11621~^~1100~^~Drumstick pods, cooked, boiled, drained, without salt~^~DRUMSTICK PODS,CKD,BLD,DRND,WO/ SALT~^~Horseradish tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11624~^~1100~^~Leeks, (bulb and lower-leaf portion), freeze-dried~^~LEEKS,(BULB&LOWER-LEAF PORTION),FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11625~^~1100~^~Parsley, freeze-dried~^~PARSLEY,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11626~^~1100~^~Beans, mung, mature seeds, sprouted, canned, drained solids~^~BEANS,MUNG,MATURE SEEDS,SPROUTED,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11632~^~1100~^~Peppers, jalapeno, canned, solids and liquids~^~PEPPERS,JALAPENO,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11637~^~1100~^~Radishes, white icicle, raw~^~RADISHES,WHITE ICICLE,RAW~^^^^~Parings~^35^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11640~^~1100~^~Shallots, freeze-dried~^~SHALLOTS,FREEZE-DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11641~^~1100~^~Squash, summer, all varieties, raw~^~SQUASH,SMMR,ALL VAR,RAW~^^^~Y~^~Ends~^5^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11642~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11643~^~1100~^~Squash, winter, all varieties, raw~^~SQUASH,WNTR,ALL VAR,RAW~^^^~Y~^~Seeds, rind and stem~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11644~^~1100~^~Squash, winter, all varieties, cooked, baked, without salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11645~^~1100~^~Sweet potato, canned, syrup pack, solids and liquids~^~SWEET POTATO,CND,SYRUP PK,SOL & LIQUIDS~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11647~^~1100~^~Sweet potato, canned, syrup pack, drained solids~^~SWEET POTATO,CND,SYRUP PK,DRND SOL~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11649~^~1100~^~Tomato products, canned, sauce, spanish style~^~TOMATO PRODUCTS,CND,SAU,SPANISH STYLE~^^^^^0^^6.25^2.64^8.37^3.70 -~11653~^~1100~^~Beans, pinto, mature seeds, sprouted, raw~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11654~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11655~^~1100~^~Carrot juice, canned~^~CARROT JUICE,CANNED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11656~^~1100~^~Corn pudding, home prepared~^~CORN PUDD,HOME PREP~^^^^^0^^^^^ -~11657~^~1100~^~Potatoes, mashed, home-prepared, whole milk added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK ADDED~^^^~Y~^^0^^^^^ -~11658~^~1100~^~Spinach souffle~^~SPINACH SOUFFLE~^^^^^0^^^^^ -~11659~^~1100~^~Sweet potato, cooked, candied, home-prepared~^~SWEET POTATO,CKD,CANDIED,HOME-PREPARED~^~Sweetpotato~^^~Y~^^0^^^^^ -~11660~^~1100~^~Tomatoes, red, ripe, cooked, stewed~^~TOMATOES,RED,RIPE,CKD,STWD~^^^^^0^^6.25^^^ -~11663~^~1100~^~Seaweed, agar, dried~^~SEAWEED,AGAR,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11666~^~1100~^~Seaweed, spirulina, raw~^~SEAWEED,SPIRULINA,RAW~^^^^^0^~Spirulina spp.~^6.25^2.44^8.37^3.57 -~11667~^~1100~^~Seaweed, spirulina, dried~^~SEAWEED,SPIRULINA,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11669~^~1100~^~Seaweed, wakame, raw~^~SEAWEED,WAKAME,RAW~^^^~Y~^^0^~Undaria spp.~^6.25^2.44^8.37^3.57 -~11670~^~1100~^~Peppers, hot chili, green, raw~^~PEPPERS,HOT CHILI,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^27^~Capsicum frutescens~^6.25^2.44^8.37^3.57 -~11671~^~1100~^~Potatoes, o'brien, home-prepared~^~POTATOES,O'BRIEN,HOME-PREPARED~^^^^^0^^6.25^2.70^8.40^4.00 -~11672~^~1100~^~Potato pancakes~^~POTATO PANCAKES~^^^^^0^^^^^ -~11674~^~1100~^~Potatoes, baked, flesh and skin, without salt~^~POTATOES,BKD,FLESH & SKN,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11675~^~1100~^~Potatoes, microwaved, cooked in skin, flesh and skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH&SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11676~^~1100~^~Radish seeds, sprouted, raw~^~RADISH SEEDS,SPROUTED,RAW~^^^^^0^~Raphanus sativus~^6.25^2.44^8.37^3.84 -~11677~^~1100~^~Shallots, raw~^~SHALLOTS,RAW~^^^^~Skins~^12^~Allium ascalonicum~^6.25^2.78^8.37^3.84 -~11683~^~1100~^~Carrot, dehydrated~^~CARROT,DEHYDRATED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11693~^~1100~^~Tomatoes, crushed, canned~^~TOMATOES,CRUSHED,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11695~^~1100~^~Tomatoes, orange, raw~^~TOMATOES,ORANGE,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11696~^~1100~^~Tomatoes, yellow, raw~^~TOMATOES,YELLOW,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11697~^~1100~^~Arrowroot, raw~^~ARROWROOT,RAW~^^^^~Peel~^15^~Maranta arundinacea~^6.25^2.78^8.37^3.84 -~11698~^~1100~^~Chrysanthemum leaves, raw~^~CHRYSANTHEMUM LEAVES,RAW~^^^^^0^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11700~^~1100~^~Amaranth leaves, cooked, boiled, drained, with salt~^~AMARANTH LEAVES,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11701~^~1100~^~Arrowhead, cooked, boiled, drained, with salt~^~ARROWHEAD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11702~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,W/SALT~^^^^~Stems and inedible parts of bracts and flower~^60^^6.25^2.44^8.37^3.57 -~11703~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11705~^~1100~^~Asparagus, cooked, boiled, drained, with salt~^~ASPARAGUS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11707~^~1100~^~Asparagus, canned, no salt added, solids and liquids~^~ASPARAGUS,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11709~^~1100~^~Asparagus, frozen, cooked, boiled, drained, with salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11710~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11711~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11712~^~1100~^~Bamboo shoots, cooked, boiled, drained, with salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11713~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11714~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11715~^~1100~^~Lima beans, immature seeds, canned, no salt added, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11716~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11717~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11718~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11719~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11720~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, with salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11721~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11722~^~1100~^~Beans, snap, yellow, raw~^~BEANS,SNAP,YELLOW,RAW~^^^^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11723~^~1100~^~Beans, snap, green, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11724~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11725~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11726~^~1100~^~Beans, snap, green, canned, no salt added, solids and liquids~^~BEANS,SNAP,GRN,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11727~^~1100~^~Beans, snap, yellow, canned, regular pack, solids and liquids~^~BEANS,SNAP,YEL,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11728~^~1100~^~Beans, snap, yellow, canned, no salt added, solids and liquids~^~BEANS,SNAP,YEL,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11729~^~1100~^~Beans, snap, green, canned, no salt added, drained solids~^~BEANS,SNAP,GRN,CND,NO SALT,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11730~^~1100~^~Beans, snap, yellow, frozen, all styles, unprepared~^~BEANS,SNAP,YEL,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11731~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11732~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11733~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11734~^~1100~^~Beets, cooked, boiled. drained, with salt~^~BEETS,CKD,BOILED. DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11735~^~1100~^~Beets, canned, no salt added, solids and liquids~^~BEETS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11736~^~1100~^~Beet greens, cooked, boiled, drained, with salt~^~BEET GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11737~^~1100~^~Borage, cooked, boiled, drained, with salt~^~BORAGE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11738~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, with salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~11739~^~1100~^~Broccoli, leaves, raw~^~BROCCOLI,LEAVES,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11740~^~1100~^~Broccoli, flower clusters, raw~^~BROCCOLI,FLOWER CLUSTERS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11741~^~1100~^~Broccoli, stalks, raw~^~BROCCOLI,STALKS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11742~^~1100~^~Broccoli, cooked, boiled, drained, with salt~^~BROCCOLI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11743~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11744~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11745~^~1100~^~Brussels sprouts, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11746~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11747~^~1100~^~Burdock root, cooked, boiled, drained, with salt~^~BURDOCK ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11748~^~1100~^~Butterbur, cooked, boiled, drained, with salt~^~BUTTERBUR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11749~^~1100~^~Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw~^~CABBAGE,COMMON,FRESHLY HARVEST,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11750~^~1100~^~Cabbage, common (danish, domestic, and pointed types), stored, raw~^~CABBAGE,COMMON (DANISH,DOMESTIC,&POINTED TYPES),STORED,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11751~^~1100~^~Cabbage, common, cooked, boiled, drained, with salt~^~CABBAGE,COMMON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11752~^~1100~^~Cabbage, red, cooked, boiled, drained, with salt~^~CABBAGE,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11753~^~1100~^~Cabbage, savoy, cooked, boiled, drained, with salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11754~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,W/SALT~^~pak choi, bok choy~^^^^0^^6.25^2.44^8.37^3.57 -~11755~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11756~^~1100~^~Cardoon, cooked, boiled, drained, with salt~^~CARDOON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11757~^~1100~^~Carrots, cooked, boiled, drained, with salt~^~CARROTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11758~^~1100~^~Carrots, canned, no salt added, solids and liquids~^~CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11759~^~1100~^~Carrots, canned, no salt added, drained solids~^~CARROTS,CND,NO SALT ,DRND SOL~^^^^^0^^6.25^2.78^8.37^3.84 -~11760~^~1100~^~Carrots, frozen, cooked, boiled, drained, with salt~^~CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11761~^~1100~^~Cauliflower, cooked, boiled, drained, with salt~^~CAULIFLOWER,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11762~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, with salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11763~^~1100~^~Celeriac, cooked, boiled, drained, with salt~^~CELERIAC,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11764~^~1100~^~Celery, cooked, boiled, drained, with salt~^~CELERY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11765~^~1100~^~Chard, swiss, cooked, boiled, drained, with salt~^~CHARD,SWISS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11766~^~1100~^~Chayote, fruit, cooked, boiled, drained, with salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,W/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11767~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, with salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11768~^~1100~^~Collards, cooked, boiled, drained, with salt~^~COLLARDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11769~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, with salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11770~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11771~^~1100~^~Corn, sweet, yellow, canned, no salt added, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11772~^~1100~^~Corn, sweet, yellow, canned, cream style, no salt added~^~CORN,SWT,YEL,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11773~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, no salt added~^~CORN,SWT,YEL,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11774~^~1100~^~Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS,CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11775~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11777~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11778~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11779~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, with salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11780~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, with salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11781~^~1100~^~Cress, garden, cooked, boiled, drained, with salt~^~CRESS,GARDEN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11782~^~1100~^~Dandelion greens, cooked, boiled, drained, with salt~^~DANDELION GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11783~^~1100~^~Eggplant, cooked, boiled, drained, with salt~^~EGGPLANT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11784~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, with salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11785~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11786~^~1100~^~Drumstick leaves, cooked, boiled, drained, with salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,W/ SALT~^~Horseradish tree~^^^^0^^6.25^2.44^8.37^3.57 -~11787~^~1100~^~Drumstick pods, cooked, boiled, drained, with salt~^~DRUMSTICK PODS,CKD,BLD,DRND,W/ SALT~^~Horseradish-tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11788~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11789~^~1100~^~Jute, potherb, cooked, boiled, drained, with salt~^~JUTE,POTHERB,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11790~^~1100~^~Kale, cooked, boiled, drained, with salt~^~KALE,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^^^ -~11791~^~1100~^~Kale, frozen, cooked, boiled, drained, with salt~^~KALE,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11793~^~1100~^~Kohlrabi, cooked, boiled, drained, with salt~^~KOHLRABI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11794~^~1100~^~Lambsquarters, cooked, boiled, drained, with salt~^~LAMBSQUARTERS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11795~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11796~^~1100~^~Lotus root, cooked, boiled, drained, with salt~^~LOTUS ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11797~^~1100~^~Mushrooms, white, cooked, boiled, drained, with salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,W/ SALT~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11798~^~1100~^~Mushrooms, shiitake, cooked, with salt~^~MUSHROOMS,SHIITAKE,CKD,W/SALT~^^^^^0^^6.25^2.62^8.37^3.48 -~11799~^~1100~^~Mustard greens, cooked, boiled, drained, with salt~^~MUSTARD GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11800~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, with salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11801~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, with salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11802~^~1100~^~New zealand spinach, cooked, boiled, drained, with salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11803~^~1100~^~Okra, cooked, boiled, drained, with salt~^~OKRA,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11804~^~1100~^~Okra, frozen, cooked, boiled, drained, with salt~^~OKRA,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11805~^~1100~^~Onions, cooked, boiled, drained, with salt~^~ONIONS,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11806~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, with salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11807~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, with salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11808~^~1100~^~Parsnips, cooked, boiled, drained, with salt~^~PARSNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11809~^~1100~^~Peas, edible-podded, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11810~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11811~^~1100~^~Peas, green, cooked, boiled, drained, with salt~^~PEAS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11812~^~1100~^~Peas, green, canned, no salt added, solids and liquids~^~PEAS,GRN,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11813~^~1100~^~Peas, green, canned, no salt added, drained solids~^~PEAS,GRN,CND,NO SALT,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~11814~^~1100~^~Peas, green, frozen, cooked, boiled, drained, with salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11815~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, with salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11816~^~1100~^~Peas and carrots, canned, no salt added, solids and liquids~^~PEAS&CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11817~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, with salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.98^8.37^3.16 -~11818~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, with salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.40^8.37^4.00 -~11819~^~1100~^~Peppers, hot chili, red, raw~^~PEPPERS,HOT CHILI,RED,RAW~^^^~Y~^~Stem ends, seeds and core~^27^^6.25^2.44^8.37^3.57 -~11820~^~1100~^~Peppers, hot chili, red, canned, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,RED,CND,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11821~^~1100~^~Peppers, sweet, red, raw~^~PEPPERS,SWT,RED,RAW~^^^~Y~^~Stem ends, seed and core~^18^^6.25^2.44^8.37^3.57 -~11822~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11823~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, without salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11824~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, with salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11825~^~1100~^~Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11826~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, with salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11827~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, with salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11828~^~1100~^~Potatoes, baked, flesh and skin, with salt~^~POTATOES,BKD,FLESH & SKN,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11829~^~1100~^~Potatoes, baked, flesh, with salt~^~POTATOES,BKD,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11830~^~1100~^~Potatoes, baked, skin only, with salt~^~POTATOES,BKD,SKN ONLY,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11831~^~1100~^~Potatoes, boiled, cooked in skin, flesh, with salt~^~POTATOES,BLD,CKD IN SKN,FLESH,W/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11832~^~1100~^~Potatoes, boiled, cooked in skin, skin, with salt~^~POTATOES,BLD,CKD IN SKN,SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11833~^~1100~^~Potatoes, boiled, cooked without skin, flesh, with salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,W/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11834~^~1100~^~Potatoes, microwaved, cooked, in skin, flesh and skin, with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,FLESH&SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11835~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, with salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11836~^~1100~^~Potatoes, microwaved, cooked, in skin, skin with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,SKN W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11837~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, with salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11840~^~1100~^~Potatoes, frozen, french fried, par fried, cottage-cut, prepared, heated in oven, with salt~^~POTATOES,FRZ,FRCH FR,PAR FR,CTTGE-CUT,PREP,HTD OVEN,W/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11841~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, oven-heated~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,OVN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11842~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, as purchased~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11843~^~1100~^~Potatoes, au gratin, home-prepared from recipe using margarine~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING MARGARINE~^^^^^0^^^^^ -~11844~^~1100~^~Potatoes, scalloped, home-prepared with margarine~^~POTATOES,SCALLPD,HOME-PREPARED W/MARGARINE~^^^^^0^^^^^ -~11845~^~1100~^~Pumpkin, cooked, boiled, drained, with salt~^~PUMPKIN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11846~^~1100~^~Pumpkin, canned, with salt~^~PUMPKIN,CANNED,WITH SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11847~^~1100~^~Pumpkin, flowers, cooked, boiled, drained, with salt~^~PUMPKIN,FLOWERS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11848~^~1100~^~Pumpkin leaves, cooked, boiled, drained, with salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11849~^~1100~^~Purslane, cooked, boiled, drained, with salt~^~PURSLANE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11850~^~1100~^~Radishes, oriental, cooked, boiled, drained, with salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11851~^~1100~^~Rutabagas, cooked, boiled, drained, with salt~^~RUTABAGAS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11852~^~1100~^~Salsify, cooked, boiled, drained, with salt~^~SALSIFY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11853~^~1100~^~Soybeans, green, cooked, boiled, drained, with salt~^~SOYBEANS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11854~^~1100~^~Spinach, cooked, boiled, drained, with salt~^~SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11855~^~1100~^~Spinach, canned, no salt added, solids and liquids~^~SPINACH,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11856~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11857~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11858~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11859~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11860~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, with salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11861~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11862~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11863~^~1100~^~Squash, winter, all varieties, cooked, baked, with salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11864~^~1100~^~Squash, winter, acorn, cooked, baked, with salt~^~SQUASH,WNTR,ACORN,CKD,BKD,W/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11865~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11866~^~1100~^~Squash, winter, butternut, cooked, baked, with salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11867~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, with salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11868~^~1100~^~Squash, winter, hubbard, baked, with salt~^~SQUASH,WNTR,HUBBARD,BKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11869~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11870~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11871~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11872~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11873~^~1100~^~Water convolvulus, cooked, boiled, drained, with salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,W/ SALT~^~kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11874~^~1100~^~Sweet potato leaves, cooked, steamed, with salt~^~SWEET POTATO LEAVES,CKD,STMD,W/ SALT~^~Sweetpotato leaves~^^^^0^^6.25^2.44^8.37^3.57 -~11875~^~1100~^~Sweet potato, cooked, baked in skin, flesh, with salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,W/ SALT~^~Sweetpotato~^^^~Skin~^22^^6.25^2.78^8.37^4.03 -~11876~^~1100~^~Sweet potato, cooked, boiled, without skin, with salt~^~SWEET POTATO,CKD,BLD,WO/ SKN,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11877~^~1100~^~Sweet potato, frozen, cooked, baked, with salt~^~SWEET POTATO,FRZ,CKD,BKD,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11878~^~1100~^~Taro, cooked, with salt~^~TARO,COOKED,WITH SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11879~^~1100~^~Taro, leaves, cooked, steamed, with salt~^~TARO,LEAVES,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11880~^~1100~^~Taro, shoots, cooked, with salt~^~TARO,SHOOTS,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11881~^~1100~^~Taro, tahitian, cooked, with salt~^~TARO,TAHITIAN,CKD,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11884~^~1100~^~Tomatoes, red, ripe, cooked, with salt~^~TOMATOES,RED,RIPE,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11885~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice, no salt added~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11886~^~1100~^~Tomato juice, canned, without salt added~^~TOMATO JUC,CND,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11888~^~1100~^~Tomato products, canned, puree, with salt added~^~TOMATO PRODUCTS,CND,PUREE,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11889~^~1100~^~Turnips, cooked, boiled, drained, with salt~^~TURNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11890~^~1100~^~Turnips, frozen, cooked, boiled, drained, with salt~^~TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11891~^~1100~^~Turnip greens, cooked, boiled, drained, with salt~^~TURNIP GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11892~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11893~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^^^ -~11894~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, with salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.97 -~11895~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11896~^~1100~^~Winged bean, immature seeds, cooked, boiled, drained, with salt~^~WINGED BEAN,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11897~^~1100~^~Yam, cooked, boiled, drained, or baked, with salt~^~YAM,CKD,BLD,DRND,OR BKD,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11898~^~1100~^~Yambean (jicama), cooked, boiled, drained, with salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11899~^~1100~^~Yardlong bean, cooked, boiled, drained, with salt~^~YARDLONG BEAN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11900~^~1100~^~Corn, sweet, white, raw~^~CORN,SWEET,WHITE,RAW~^^^^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11901~^~1100~^~Corn, sweet, white, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11902~^~1100~^~Corn, sweet, white, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11903~^~1100~^~Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11904~^~1100~^~Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11905~^~1100~^~Corn, sweet, white, canned, whole kernel, drained solids~^~CORN,SWT,WHITE,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11906~^~1100~^~Corn, sweet, white, canned, cream style, regular pack~^~CORN,SWT,WHITE,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11907~^~1100~^~Corn, sweet, white, canned, cream style, no salt added~^~CORN,SWT,WHITE,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11908~^~1100~^~Corn, sweet, white, canned, vacuum pack, regular pack~^~CORN,SWT,WHITE,CND,VACUUM PK,REG PK~^^^^^0^^6.25^2.44^8.37^3.57 -~11909~^~1100~^~Corn, sweet, white, canned, vacuum pack, no salt added~^~CORN,SWT,WHITE,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11910~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11911~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11912~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11913~^~1100~^~Corn, sweet, white, frozen, kernels on cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11914~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11915~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11916~^~1100~^~Peppers, sweet, red, canned, solids and liquids~^~PEPPERS,SWT,RED,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11917~^~1100~^~Peppers, sweet, red, frozen, chopped, unprepared~^~PEPPERS,SWT,RED,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11918~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11919~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, with salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11921~^~1100~^~Peppers, sweet, red, sauteed~^~PEPPERS,SWT,RED,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11922~^~1100~^~Sesbania flower, cooked, steamed, with salt~^~SESBANIA FLOWER,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11923~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11924~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11925~^~1100~^~Dock, cooked, boiled, drained, with salt~^~DOCK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11926~^~1100~^~Lentils, sprouted, cooked, stir-fried, with salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11927~^~1100~^~Mountain yam, hawaii, cooked, steamed, with salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,W/ SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11928~^~1100~^~Tree fern, cooked, with salt~^~TREE FERN,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11929~^~1100~^~Potatoes, mashed, prepared from granules, without milk, whole milk and margarine~^~POTATOES,MSHD,PREP FROM GRANULES,WO/MILK,WHL MILK&MARGARINE~^^^^^0^^6.25^2.78^8.37^4.03 -~11930~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and margarine added~^~POTATOES,MSHD,DEHYD,PREP FRM FLKS WO/ MILK,WHL MILK&MARG ADD~^^^^^0^^6.29^3.21^8.82^4.02 -~11931~^~1100~^~Peppers, sweet, red, freeze-dried~^~PEPPERS,SWT,RED,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11932~^~1100~^~Beans, snap, yellow, canned, regular pack, drained solids~^~BEANS,SNAP,YEL,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11933~^~1100~^~Beans, snap, yellow, canned, no salt added, drained solids~^~BEANS,SNAP,YEL,CND,NO SALT,DRND SOL~^^^^^0^^6.25^2.44^8.37^3.57 -~11934~^~1100~^~Potatoes, mashed, home-prepared, whole milk and butter added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & BUTTER ADDED~^^^^^0^^^^^ -~11935~^~1100~^~Catsup~^~Catsup~^~Ketchup~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11936~^~1100~^~Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,EXPOSED TO UV LT,RAW~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11937~^~1100~^~Pickles, cucumber, dill or kosher dill~^~PICKLES,CUCUMBER,DILL OR KOSHER DILL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11938~^~1100~^~Mushroom, white, exposed to ultraviolet light, raw~^~MUSHROOM,WHITE,EXPOSED TO UV LT,RAW~^^^^^0^^6.25^2.62^8.37^3.48 -~11939~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, grilled~^~MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,GRILLED~^~portobella~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11940~^~1100~^~Pickles, cucumber, sweet (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^^^^ -~11941~^~1100~^~Pickles, cucumber, sour~^~PICKLES,CUCUMBER,SOUR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11943~^~1100~^~Pimento, canned~^~PIMENTO,CANNED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11944~^~1100~^~Pickle relish, hot dog~^~PICKLE RELISH,HOT DOG~^^^^^0^^6.25^2.44^8.37^3.57 -~11945~^~1100~^~Pickle relish, sweet~^~PICKLE RELISH,SWEET~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11946~^~1100~^~Pickles, cucumber, sour, low sodium~^~PICKLES,CUCUMBER,SOUR,LO NA~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11947~^~1100~^~Pickles, cucumber, dill, reduced sodium~^~PICKLES,CUCUMBER,DILL,RED NA~^^^^^0^^6.25^2.44^8.37^3.57 -~11948~^~1100~^~Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT,LO NA (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^6.25^2.44^3.37^3.57 -~11949~^~1100~^~Catsup, low sodium~^~CATSUP,LOW SODIUM~^~Ketchup, low sodium~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11950~^~1100~^~Mushrooms, enoki, raw~^~MUSHROOMS,ENOKI,RAW~^^^^~Stems and trimmings~^16^~Flammulina veluptipes~^6.25^2.62^8.37^3.48 -~11951~^~1100~^~Peppers, sweet, yellow, raw~^~PEPPERS,SWEET,YELLOW,RAW~^^^^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11952~^~1100~^~Radicchio, raw~^~RADICCHIO,RAW~^^^~Y~^~Core and leaf ends~^9^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11953~^~1100~^~Squash, zucchini, baby, raw~^~SQUASH,ZUCCHINI,BABY,RAW~^^^^~Ends~^13^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11954~^~1100~^~Tomatillos, raw~^~TOMATILLOS,RAW~^^^~Y~^^^~Physalis philadelphica~^6.25^2.44^8.37^3.57 -~11955~^~1100~^~Tomatoes, sun-dried~^~TOMATOES,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11956~^~1100~^~Tomatoes, sun-dried, packed in oil, drained~^~TOMATOES,SUN-DRIED,PACKED IN OIL,DRND~^^^^^0^^6.25^2.44^8.37^3.57 -~11957~^~1100~^~Fennel, bulb, raw~^~FENNEL,BULB,RAW~^^^~Y~^~Stalk, leaves and core~^28^~Foeniculum vulgare~^6.25^2.44^8.37^3.57 -~11958~^~1100~^~Pickle relish, hamburger~^~PICKLE RELISH,HAMBURGER~^^^^^0^^6.25^2.44^3.37^3.57 -~11959~^~1100~^~Arugula, raw~^~ARUGULA,RAW~^^^~Y~^~Roots, stems and yellowed leaves~^40^~Eruca sativa~^6.25^2.44^8.37^3.57 -~11960~^~1100~^~Carrots, baby, raw~^~CARROTS,BABY,RAW~^^^^^0^~Daucus carota~^6.25^2.78^8.37^3.84 -~11961~^~1100~^~Hearts of palm, canned~^~HEARTS OF PALM,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11962~^~1100~^~Peppers, hot chile, sun-dried~^~PEPPERS,HOT CHILE,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11963~^~1100~^~Nopales, raw~^~NOPALES,RAW~^^^~Y~^~Spines and dark spots~^4^~Nopalea cochenillifera~^6.25^2.44^8.37^3.57 -~11964~^~1100~^~Nopales, cooked, without salt~^~NOPALES,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11965~^~1100~^~Cauliflower, green, raw~^~CAULIFLOWER,GREEN,RAW~^^^~Y~^~Leaf stalks, core and trimmings~^39^~Brassica oleracea (Botrytis group)~^6.25^2.44^8.37^3.57 -~11967~^~1100~^~Cauliflower, green, cooked, no salt added~^~CAULIFLOWER,GRN,CKD,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11968~^~1100~^~Cauliflower, green, cooked, with salt~^~CAULIFLOWER,GRN,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11969~^~1100~^~Broccoli, chinese, cooked~^~BROCCOLI,CHINESE,COOKED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11970~^~1100~^~Cabbage, napa, cooked~^~CABBAGE,NAPA,COOKED~^^^^^0^~Brassica oleracea~^6.25^2.44^8.37^3.57 -~11972~^~1100~^~Lemon grass (citronella), raw~^~LEMON GRASS (CITRONELLA),RAW~^^^^~Tough stem~^35^~Cymbopogon citratus~^6.25^2.44^8.37^3.57 -~11973~^~1100~^~Beans, fava, in pod, raw~^~BEANS,FAVA,IN POD,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^2.44^8.37^3.57 -~11974~^~1100~^~Grape leaves, raw~^~GRAPE LEAVES,RAW~^^^~Y~^~Tough stems~^5^~Vitis vinifera~^6.25^2.44^8.37^3.57 -~11975~^~1100~^~Grape leaves, canned~^~GRAPE LEAVES,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11976~^~1100~^~Pepper, banana, raw~^~PEPPER,BANANA,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11977~^~1100~^~Peppers, serrano, raw~^~PEPPERS,SERRANO,RAW~^^^~Y~^~Stems~^3^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11978~^~1100~^~Peppers, ancho, dried~^~PEPPERS,ANCHO,DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11979~^~1100~^~Peppers, jalapeno, raw~^~PEPPERS,JALAPENO,RAW~^^^~Y~^~Stems and seeds~^8^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11980~^~1100~^~Peppers, chili, green, canned~^~PEPPERS,CHILI,GRN,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11981~^~1100~^~Peppers, hungarian, raw~^~PEPPERS,HUNGARIAN,RAW~^^^^~Stems~^12^^6.25^2.44^8.37^3.57 -~11982~^~1100~^~Peppers, pasilla, dried~^~PEPPERS,PASILLA,DRIED~^^^^~Stems~^6^^6.25^2.44^8.37^3.57 -~11983~^~1100~^~Pickles, chowchow, with cauliflower onion mustard, sweet~^~PICKLES,CHOWCHOW,W/CAULIFLOWER ONION MUSTARD,SWT~^^^~Y~^^0^^^^^ -~11984~^~1100~^~Epazote, raw~^~EPAZOTE,RAW~^^^^^0^~Chenopodium ambrosiodes~^6.25^2.44^8.37^3.57 -~11985~^~1100~^~Fireweed, leaves, raw~^~FIREWEED,LEAVES,RAW~^^^^~Stems and flowers~^65^~Epilobium angustifolium~^6.25^2.44^8.37^3.57 -~11986~^~1100~^~Malabar spinach, cooked~^~MALABAR SPINACH,COOKED~^^^^~Stems~^30^^6.25^2.44^8.37^3.57 -~11987~^~1100~^~Mushrooms, oyster, raw~^~MUSHROOMS,OYSTER,RAW~^^^^~Stems~^11^~Pleurotus ostreatus~^6.25^2.62^8.37^3.48 -~11988~^~1100~^~Fungi, Cloud ears, dried~^~FUNGI,CLOUD EARS,DRIED~^^^^^0^^6.25^2.62^8.37^3.48 -~11989~^~1100~^~Mushrooms, straw, canned, drained solids~^~MUSHROOMS,STRAW,CND,DRND SOL~^^^^^0^~Volvariella volvace~^6.25^2.62^8.37^3.48 -~11990~^~1100~^~Wasabi, root, raw~^~WASABI,ROOT,RAW~^^^^~Peel~^23^~Wasabia japonica~^6.25^2.78^8.37^3.84 -~11991~^~1100~^~Yautia (tannier), raw~^~YAUTIA (TANNIER),RAW~^^^^~Peel~^14^~Xanthosoma sagittifolium~^6.25^2.78^8.37^3.84 -~11992~^~1100~^~Mushrooms, white, microwaved~^~MUSHROOMS,WHITE,MICROWAVED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11993~^~1100~^~Mushrooms, maitake, raw~^~MUSHROOMS,MAITAKE,RAW~^^^^^0^~Grifola frondosa~^6.25^2.62^8.37^3.48 -~11994~^~1100~^~Broccoli, chinese, raw~^~BROCCOLI,CHINESE,RAW~^~gai-lan, kai-lan~^^~Y~^~Base and damaged leaves~^12^~ Brassica oleracea var. alboglabra~^6.25^2.44^8.37^3.57 -~11995~^~1100~^~Fiddlehead ferns, raw~^~FIDDLEHEAD FERNS,RAW~^^^^^^~Matteuccia struthioreris~^6.25^2.44^8.37^3.57 -~11996~^~1100~^~Fiddlehead ferns, frozen, unprepared~^~FIDDLEHEAD FERNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11998~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, raw~^~MUSHROOMS,PORTABELLA,EXPOSED TO ULTRAVIOLET LT,RAW~^~portobella~^^^~Trimmings~^3^^6.25^2.62^8.37^3.48 -~12001~^~1200~^~Seeds, breadfruit seeds, raw~^~BREADFRUIT SEEDS,RAW~^^^^~Shells~^32^~Artocarpus altilis~^5.30^3.47^8.37^4.07 -~12003~^~1200~^~Seeds, breadfruit seeds, boiled~^~BREADFRUIT SEEDS,BOILED~^^^^~Soft shells~^64^^5.30^3.47^8.37^4.07 -~12004~^~1200~^~Seeds, breadnut tree seeds, raw~^~SEEDS,BREADNUT TREE SEEDS,RAW~^^^^^0^~Brosimum alicastrum~^5.30^3.47^8.37^4.07 -~12005~^~1200~^~Seeds, breadnut tree seeds, dried~^~SEEDS,BREADNUT TREE SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12006~^~1200~^~Seeds, chia seeds, dried~^~CHIA SEEDS,DRIED~^^^^^0^~Salvia hispanica~^5.30^3.47^8.37^4.07 -~12007~^~1200~^~Seeds, cottonseed flour, partially defatted (glandless)~^~COTTONSEED FLR,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12008~^~1200~^~Seeds, cottonseed flour, low fat (glandless)~^~COTTONSEED FLR,LOFAT (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12011~^~1200~^~Seeds, cottonseed meal, partially defatted (glandless)~^~COTTONSEED MEAL,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12012~^~1200~^~Seeds, hemp seed, hulled~^~SEEDS,HEMP SD,HULLED~^^^^^0^~Cannabis sativa L.~^5.30^3.47^8.37^4.07 -~12013~^~1200~^~Seeds, lotus seeds, dried~^~LOTUS SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12014~^~1200~^~Seeds, pumpkin and squash seed kernels, dried~^~PUMPKIN&SQUASH SD KRNLS,DRIED~^~pepitas~^^~Y~^~Hulls~^26^^5.30^3.47^8.37^4.07 -~12016~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, without salt~^~PUMPKIN&SQUASH SD KRNLS,RSTD,WO/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12021~^~1200~^~Seeds, safflower seed kernels, dried~^~SAFFLOWER SD KRNLS,DRIED~^^^^~Hulls~^49^~Carthamus tinctorius~^5.30^3.47^8.37^4.07 -~12022~^~1200~^~Seeds, safflower seed meal, partially defatted~^~SAFFLOWER SD MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12023~^~1200~^~Seeds, sesame seeds, whole, dried~^~SESAME SEEDS,WHOLE,DRIED~^^^~Y~^^0^~Sesamum indicum~^5.30^3.47^8.37^4.07 -~12024~^~1200~^~Seeds, sesame seeds, whole, roasted and toasted~^~SESAME SEEDS,WHL,RSTD&TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12029~^~1200~^~Seeds, sesame seed kernels, toasted, without salt added (decorticated)~^~SESAME SD KRNLS,TSTD,WO/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12032~^~1200~^~Seeds, sesame flour, partially defatted~^~SESAME FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12033~^~1200~^~Seeds, sesame flour, low-fat~^~SESAME FLOUR,LOW-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12034~^~1200~^~Seeds, sesame meal, partially defatted~^~SESAME MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12036~^~1200~^~Seeds, sunflower seed kernels, dried~^~SUNFLOWER SD KRNLS,DRIED~^^^~Y~^~Hulls~^46^~Helianthus annuus~^5.30^3.47^8.37^4.07 -~12037~^~1200~^~Seeds, sunflower seed kernels, dry roasted, without salt~^~SUNFLOWER SD KRNLS,DRY RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12038~^~1200~^~Seeds, sunflower seed kernels, oil roasted, without salt~^~SUNFLOWER SD KRNLS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12039~^~1200~^~Seeds, sunflower seed kernels, toasted, without salt~^~SUNFLOWER SD KRNLS,TSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12040~^~1200~^~Seeds, sunflower seed butter, without salt~^~SUNFLOWER SD BUTTER,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12041~^~1200~^~Seeds, sunflower seed flour, partially defatted~^~SUNFLOWER SD FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12058~^~1200~^~Nuts, acorns, raw~^~ACORNS,RAW~^^^^~Shells~^38^~Quercus spp.~^5.30^3.47^8.37^4.07 -~12059~^~1200~^~Nuts, acorns, dried~^~ACORNS,DRIED~^^^^~Shells~^38^^5.30^3.47^8.37^4.07 -~12060~^~1200~^~Nuts, acorn flour, full fat~^~ACORN FLOUR,FULL FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12061~^~1200~^~Nuts, almonds~^~ALMONDS~^^^~Y~^~Shells~^60^~Prunus dulcis~^5.18^3.47^8.37^4.07 -~12062~^~1200~^~Nuts, almonds, blanched~^~ALMONDS,BLANCHED~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12063~^~1200~^~Nuts, almonds, dry roasted, without salt added~^~ALMONDS,DRY RSTD,WO/SALT~^~Includes USDA commodity food A255, A263~^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12065~^~1200~^~Nuts, almonds, oil roasted, without salt added~^~ALMONDS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12071~^~1200~^~Nuts, almond paste~^~ALMOND PASTE~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12077~^~1200~^~Nuts, beechnuts, dried~^~BEECHNUTS,DRIED~^^^^~Shells~^39^~Fagus spp.~^5.30^3.47^8.37^4.07 -~12078~^~1200~^~Nuts, brazilnuts, dried, unblanched~^~BRAZILNUTS,DRIED,UNBLANCHED~^~brazil nuts~^^~Y~^~Shells~^49^~Bertholletia excelsa~^5.46^3.47^8.37^4.07 -~12084~^~1200~^~Nuts, butternuts, dried~^~BUTTERNUTS,DRIED~^^^^~Shells~^73^~Juglans cinerea~^5.30^3.47^8.37^4.07 -~12085~^~1200~^~Nuts, cashew nuts, dry roasted, without salt added~^~CASHEW NUTS,DRY RSTD,WO/SALT~^^^~Y~^^0^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12086~^~1200~^~Nuts, cashew nuts, oil roasted, without salt added~^~CASHEW NUTS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12087~^~1200~^~Nuts, cashew nuts, raw~^~NUTS,CASHEW NUTS,RAW~^^^^^^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12088~^~1200~^~Nuts, cashew butter, plain, without salt added~^~CASHEW BUTTER,PLN,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12093~^~1200~^~Nuts, chestnuts, chinese, raw~^~CHESTNUTS,CHINESE,RAW~^^^^~Shells~^16^~Castanea mollissima~^5.30^3.47^8.37^4.07 -~12094~^~1200~^~Nuts, chestnuts, chinese, dried~^~CHESTNUTS,CHINESE,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12095~^~1200~^~Nuts, chestnuts, chinese, boiled and steamed~^~CHESTNUTS,CHINESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12096~^~1200~^~Nuts, chestnuts, chinese, roasted~^~CHESTNUTS,CHINESE,ROASTED~^^^^~Shells~^25^^5.30^3.47^8.37^4.07 -~12097~^~1200~^~Nuts, chestnuts, european, raw, unpeeled~^~CHESTNUTS,EUROPEAN,RAW,UNPEELED~^^^^~Shells~^26^~Castanea sativa~^5.30^3.47^8.37^4.07 -~12098~^~1200~^~Nuts, chestnuts, european, raw, peeled~^~CHESTNUTS,EUROPEAN,RAW,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12099~^~1200~^~Nuts, chestnuts, european, dried, unpeeled~^~CHESTNUTS,EUROPEAN,DRIED,UNPEELED~^^^^~Shells~^20^^5.30^3.47^8.37^4.07 -~12100~^~1200~^~Nuts, chestnuts, european, dried, peeled~^~CHESTNUTS,EUROPEAN,DRIED,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12101~^~1200~^~Nuts, chestnuts, european, boiled and steamed~^~CHESTNUTS,EUROPEAN,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12104~^~1200~^~Nuts, coconut meat, raw~^~COCONUT MEAT,RAW~^^^~Y~^~Shells (brown), skin, water~^48^~Cocos nucifera~^5.30^3.47^8.37^4.07 -~12108~^~1200~^~Nuts, coconut meat, dried (desiccated), not sweetened~^~COCONUT MEAT,DRIED (DESICCATED),NOT SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12109~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, packaged~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,PACKAGED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12110~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, canned~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,CND~^^^^^0^^5.30^3.47^8.37^4.07 -~12114~^~1200~^~Nuts, coconut meat, dried (desiccated), toasted~^~COCONUT MEAT,DRIED (DESICCATED),TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12115~^~1200~^~Nuts, coconut cream, raw (liquid expressed from grated meat)~^~COCONUT CRM,RAW (LIQ EXPRESSED FROM GRATED MEAT)~^^^^^0^^5.30^3.47^8.37^4.07 -~12116~^~1200~^~Nuts, coconut cream, canned, sweetened~^~NUTS,COCNT CRM,CND,SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12117~^~1200~^~Nuts, coconut milk, raw (liquid expressed from grated meat and water)~^~COCONUT MILK,RAW (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12118~^~1200~^~Nuts, coconut milk, canned (liquid expressed from grated meat and water)~^~COCONUT MILK,CND (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12119~^~1200~^~Nuts, coconut water (liquid from coconuts)~^~COCONUT H2O (LIQ FROM COCONUTS)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12120~^~1200~^~Nuts, hazelnuts or filberts~^~HAZELNUTS OR FILBERTS~^^^~Y~^~Shells~^59^~Corylus spp.~^5.30^3.47^8.37^4.07 -~12121~^~1200~^~Nuts, hazelnuts or filberts, blanched~^~HAZELNUTS OR FILBERTS,BLANCHED~^^^^^0^^5.30^3.47^8.37^4.07 -~12122~^~1200~^~Nuts, hazelnuts or filberts, dry roasted, without salt added~^~HAZELNUTS OR FILBERTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12127~^~1200~^~Nuts, ginkgo nuts, raw~^~GINKGO NUTS,RAW~^^^^~Shells~^24^~Ginkgo biloba~^5.30^3.47^8.37^4.07 -~12128~^~1200~^~Nuts, ginkgo nuts, dried~^~GINKGO NUTS,DRIED~^^^^~Shells~^24^^5.30^3.47^8.37^4.07 -~12129~^~1200~^~Nuts, ginkgo nuts, canned~^~GINKGO NUTS,CANNED~^^^^~Liquid~^41^^5.30^3.47^8.37^4.07 -~12130~^~1200~^~Nuts, hickorynuts, dried~^~HICKORYNUTS,DRIED~^^^^~Shells~^68^~Carya spp.~^5.30^3.47^8.37^4.07 -~12131~^~1200~^~Nuts, macadamia nuts, raw~^~MACADAMIA NUTS,RAW~^^^^~Shells~^69^~Macadamia integrifolia, M. tetraphylla~^5.30^3.47^8.37^4.07 -~12132~^~1200~^~Nuts, macadamia nuts, dry roasted, without salt added~^~MACADAMIA NUTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12135~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, without salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12136~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, PLANTERS pistachio blend~^~NUTS,MXD NUTS,DRY RSTD,W/PNUTS,SALT ADD,PLANTERS PSTACH BLND~^^~Planters- Kraft Foods Group~^^^0^^5.30^3.47^8.37^4.07 -~12137~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, without salt added~^~MIXED NUTS,OIL RSTD,W/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12138~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, without salt added~^~MIXED NUTS,OIL RSTD,WO/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12140~^~1200~^~Nuts, formulated, wheat-based, unflavored, with salt added~^~FORMULATED,WHEAT-BASED,UNFLAVORED,W/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12141~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER~^~NUTS,MXD NUTS,DRY RSTD,W/ PNUTS,SALT ADDED,CHOSEN ROASTER~^^~Chosen Roaster~^^^0^^6.25^3.47^8.37^4.07 -~12142~^~1200~^~Nuts, pecans~^~PECANS~^^^~Y~^~Shells~^47^~Carya illinoinensis~^5.30^3.47^8.37^4.07 -~12143~^~1200~^~Nuts, pecans, dry roasted, without salt added~^~PECANS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12144~^~1200~^~Nuts, pecans, oil roasted, without salt added~^~PECANS,OIL RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12145~^~1200~^~Nuts, pilinuts, dried~^~NUTS,PILINUTS,DRIED~^^^^~Shells~^81^~Canarium ovatum~^5.30^3.47^8.37^4.07 -~12147~^~1200~^~Nuts, pine nuts, dried~^~NUTS,PINE NUTS,DRIED~^^^~Y~^~Shells~^23^~Pinus spp.~^5.30^3.47^8.37^4.07 -~12149~^~1200~^~Nuts, pine nuts, pinyon, dried~^~PINE NUTS,PINYON,DRIED~^~pinon~^^^~Shells~^43^~Pinus edulis~^5.30^3.47^8.37^4.07 -~12151~^~1200~^~Nuts, pistachio nuts, raw~^~PISTACHIO NUTS,RAW~^^^^~Shells~^47^~Pistacia vera~^5.30^3.47^8.37^4.07 -~12152~^~1200~^~Nuts, pistachio nuts, dry roasted, without salt added~^~PISTACHIO NUTS,DRY RSTD,WO/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12154~^~1200~^~Nuts, walnuts, black, dried~^~WALNUTS,BLACK,DRIED~^^^~Y~^~Shells~^76^~Juglans nigra~^5.30^3.47^8.37^4.07 -~12155~^~1200~^~Nuts, walnuts, english~^~WALNUTS,ENGLISH~^^^~Y~^~Shells~^55^~Juglans regia~^5.30^3.47^8.37^4.07 -~12156~^~1200~^~Nuts, walnuts, glazed~^~NUTS,WALNUTS,GLAZED~^^^^^0^^6.25^^^ -~12157~^~1200~^~Nuts, walnuts, dry roasted, with salt added~^~NUTS,WALNUTS,DRY RSTD,W/ SALT ADDED~^^^~Y~^^0^^^^^ -~12158~^~1200~^~Seeds, breadfruit seeds, roasted~^~BREADFRUIT SEEDS,ROASTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12160~^~1200~^~Seeds, cottonseed kernels, roasted (glandless)~^~COTTONSEED KRNLS,RSTD (GLANDLESS)~^^^^^0^~Gossypium spp.~^5.30^3.47^8.37^4.07 -~12163~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, without salt~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,WO/SALT~^^^^^0^~Cucurbita spp.~^5.30^3.47^8.37^4.07 -~12166~^~1200~^~Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)~^~SESAME BUTTER,TAHINI,FROM RSTD&TSTD KRNLS (MOST COMMON TYPE)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12167~^~1200~^~Nuts, chestnuts, european, roasted~^~CHESTNUTS,EUROPEAN,RSTD~^^^~Y~^~Shells and skins~^37^^5.30^3.47^8.37^4.07 -~12169~^~1200~^~Seeds, sesame butter, paste~^~SESAME BUTTER,PASTE~^^^^^0^^5.30^3.47^8.37^4.07 -~12170~^~1200~^~Seeds, sesame flour, high-fat~^~SESAME FLOUR,HIGH-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12171~^~1200~^~Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)~^~SESAME BUTTER,TAHINI,FROM UNROASTED KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12174~^~1200~^~Seeds, watermelon seed kernels, dried~^~WATERMELON SD KRNLS,DRIED~^^^^~Hard seed coat~^63^~Citrullus lanatus~^5.30^3.47^8.37^4.07 -~12175~^~1200~^~Nuts, chestnuts, japanese, dried~^~CHESTNUTS,JAPANESE,DRIED~^^^^~Shells~^34^^5.30^3.47^8.37^4.07 -~12176~^~1200~^~Nuts, coconut milk, frozen (liquid expressed from grated meat and water)~^~COCONUT MILK,FRZ (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12177~^~1200~^~Nuts, coconut meat, dried (desiccated), creamed~^~COCONUT MEAT,DRIED (DESICCATED),CRMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12179~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, shredded~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,SHREDDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12193~^~1200~^~Seeds, sisymbrium sp. seeds, whole, dried~^~SISYMBRIUM SP. SEEDS,WHL,DRIED~^^^^^0^~Sisymbrium spp.~^5.30^3.47^8.37^4.07 -~12195~^~1200~^~Nuts, almond butter, plain, without salt added~^~ALMOND BUTTER,PLN,WO/SALT~^^^^^0^^5.18^3.47^8.37^4.07 -~12198~^~1200~^~Seeds, sesame butter, tahini, from raw and stone ground kernels~^~SESAME BUTTER,TAHINI,FROM RAW&STONE GROUND KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12200~^~1200~^~Nuts, formulated, wheat-based, all flavors except macadamia, without salt~^~FORMULATED,WHEAT-BASED,ALL FLAVORS XCPT MACADAMIA,WO/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12201~^~1200~^~Seeds, sesame seed kernels, dried (decorticated)~^~SESAME SD KRNLS,DRIED (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12202~^~1200~^~Nuts, chestnuts, japanese, raw~^~CHESTNUTS,JAPANESE,RAW~^^^^~Shells~^34^~Castanea crenata~^5.30^3.47^8.37^4.07 -~12203~^~1200~^~Nuts, chestnuts, japanese, boiled and steamed~^~CHESTNUTS,JAPANESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12204~^~1200~^~Nuts, chestnuts, japanese, roasted~^~CHESTNUTS,JAPANESE,RSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12205~^~1200~^~Seeds, lotus seeds, raw~^~LOTUS SEEDS,RAW~^^^^~Shells~^47^~Nelumbo spp.~^5.30^3.47^8.37^4.07 -~12206~^~1200~^~Nuts, almonds, honey roasted, unblanched~^~ALMONDS,HONEY RSTD,UNBLANCHED~^^^^^0^^5.18^3.47^8.37^4.07 -~12220~^~1200~^~Seeds, flaxseed~^~SEEDS,FLAXSEED~^^^~Y~^^0^~Linum usitatissimum~^5.30^3.47^8.37^4.07 -~12516~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, with salt added~^~PUMPKIN&SQUASH SD KRNLS,RSTD,W/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12529~^~1200~^~Seeds, sesame seed kernels, toasted, with salt added (decorticated)~^~SESAME SD KRNLS,TSTD,W/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12536~^~1200~^~Seeds, sunflower seed kernels from shell, dry roasted, with salt added~^~SEEDS,SUNFLOWER SD KRNLS FROM SHELL,DRY RSTD,W/ SALT ADDED~^^^^~Hulls~^46^^5.30^3.47^8.37^4.07 -~12537~^~1200~^~Seeds, sunflower seed kernels, dry roasted, with salt added~^~SUNFLOWER SD KRNLS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12538~^~1200~^~Seeds, sunflower seed kernels, oil roasted, with salt added~^~SUNFLOWER SD KRNLS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12539~^~1200~^~Seeds, sunflower seed kernels, toasted, with salt added~^~SUNFLOWER SD KRNLS,TSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12540~^~1200~^~Seeds, sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)~^~SUNFLOWER SD BUTTER,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12563~^~1200~^~Nuts, almonds, dry roasted, with salt added~^~ALMONDS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12565~^~1200~^~Nuts, almonds, oil roasted, with salt added~^~ALMONDS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12567~^~1200~^~Nuts, almonds, oil roasted, with salt added, smoke flavor~^~NUTS,ALMONDS,OIL RSTD,W/ SALT ADDED,SMOKE FLAVOR~^^^^^0^^^^^ -~12585~^~1200~^~Nuts, cashew nuts, dry roasted, with salt added~^~CASHEW NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12586~^~1200~^~Nuts, cashew nuts, oil roasted, with salt added~^~CASHEW NUTS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12588~^~1200~^~Nuts, cashew butter, plain, with salt added~^~CASHEW BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12632~^~1200~^~Nuts, macadamia nuts, dry roasted, with salt added~^~MACADAMIA NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12635~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, with salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12637~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12638~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12643~^~1200~^~Nuts, pecans, dry roasted, with salt added~^~PECANS,DRY RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12644~^~1200~^~Nuts, pecans, oil roasted, with salt added~^~PECANS,OIL RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12652~^~1200~^~Nuts, pistachio nuts, dry roasted, with salt added~^~PISTACHIO NUTS,DRY RSTD,W/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12663~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, with salt added~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12665~^~1200~^~Nuts, almonds, oil roasted, lightly salted~^~NUTS,ALMONDS,OIL RSTD,LIGHTLY SALTED~^^^^^0^^^^^ -~12695~^~1200~^~Nuts, almond butter, plain, with salt added~^~ALMOND BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12698~^~1200~^~Seeds, sesame butter, tahini, type of kernels unspecified~^~SESAME BUTTER,TAHINI,KRNLS UNSPEC~^^^^^0^^5.30^3.47^8.37^4.07 -~12737~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,LIGHTLY SALTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12738~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,LIGHTLY SALTED~^^^^^0^^^^^ -~13000~^~1300~^~Beef, grass-fed, strip steaks, lean only, raw~^~BEEF,GRASS-FED,STRIP STEAKS,LN,RAW~^^^^~23% Bone and connective tissue, 11% Separable fat~^34^^^^^ -~13001~^~1300~^~Beef, carcass, separable lean and fat, choice, raw~^~BEEF,CARCASS,LN&FAT,CHOIC,RAW~^^^^~Bone 19%~^19^~Bos taurus~^6.25^4.27^9.02^3.87 -~13002~^~1300~^~Beef, carcass, separable lean and fat, select, raw~^~BEEF,CARCASS,LN&FAT,SEL,RAW~^^^^~Bone 20%~^20^^6.25^4.27^9.02^3.87 -~13019~^~1300~^~Beef, retail cuts, separable fat, raw~^~BEEF,RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13020~^~1300~^~Beef, retail cuts, separable fat, cooked~^~BEEF,RTL CUTS,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13023~^~1300~^~Beef, brisket, whole, separable lean only, all grades, raw~^~BEEF,BRISKET,WHL,LN,ALL GRDS,RAW~^^^^~Connective tissue 0.3%, separable fat 30%~^30^^6.25^4.27^9.02^3.87 -~13047~^~1300~^~Beef, grass-fed, ground, raw~^~BEEF,GRASS-FED,GROUND,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13055~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13065~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13066~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13067~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^^0^^6.25^4.27^9.02^3.87 -~13068~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^~Bone and connective tissue, 0.2%, separable fat, 3.6%~^4^^6.25^4.27^9.02^3.87 -~13069~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2399~^^~Y~^~Connective tissue, 2%, separable fat, 6%~^8^^6.25^4.27^9.02^3.87 -~13070~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13095~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13096~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BF,RIB,EYE,SML END (RIB 10-12),LN & FT,0" FAT,CHOIC,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13097~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue 4%, separable fat 21%~^25^^6.25^4.27^9.02^3.87 -~13098~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^~ribeye, Delmonico~^^^~Bone and connective tissue 7%, sep fat 12%~^19^^6.25^4.27^9.02^3.87 -~13147~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, raw~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,RAW~^~URMIS #2074~^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~13148~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~13149~^~1300~^~Beef, rib, shortribs, separable lean only, choice, raw~^~BEEF,RIB,SHORTRIBS,LN ONLY,CHOIC,RAW~^~URMIS #2074~^^^~Bone 27%, separable fat 32%~^59^^6.25^4.27^9.02^3.87 -~13150~^~1300~^~Beef, rib, shortribs, separable lean only, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone, 29%, separable fat, 33%~^62^^6.25^4.27^9.02^3.87 -~13156~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,CHOIC,CKD,BRLD~^^^^~8% bone, 9% separable fat~^17^^6.25^4.27^9.02^3.87 -~13158~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,SEL,CKD,BRLD~^^^^~Bone, 8%, separable fat, 9%~^17^^6.25^4.27^9.02^3.87 -~13165~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^^0^^6.25^4.27^9.02^3.87 -~13227~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,RAW~^^^^~Bone 34%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~13228~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, cooked, simmered~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,CKD,SIMMRD~^^^^~Bone, 37%, separable fat, 8%~^45^^6.25^4.27^9.02^3.87 -~13231~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,RAW~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and heavy connective tissue, 23%, separable fat, 12%~^35^^6.25^4.27^9.02^3.87 -~13232~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and connective tissue 26%, separable fat, 12%~^38^^6.25^4.27^9.02^3.87 -~13235~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,CHOIC,RAW~^~T-Bone Steak, URMIS # 2184~^^^~Bone and heavy connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13236~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BN-IN,LN,1/8" FAT,CHOIC,CKD,GRILLD~^~T-Bone Steak, URMIS # 2184~^^^~Bone and connective tissue, 28%, separable fat, 14%~^42^^6.25^4.27^9.02^3.87 -~13284~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN,0" FAT,SEL,RAW~^^^^~Bone and connective tissue and separable fat~^37^^^^^ -~13285~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD~^~URMIS #1151, Beef, Chuck, Under Blade Pot Roast~^^^~Connective tissue 4%, seam fat 20%~^24^^6.25^^^ -~13293~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD, BRSD~^~Beef, Chuck, Under Blade Pot Roast or Steak, URMIS #1151, URMIS #1158~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13294~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHCK,UND BL POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 14%~^20^^6.25^^^ -~13317~^~1300~^~Beef, ground, patties, frozen, cooked, broiled~^~BEEF,GROUND,PATTIES,FRZ,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13318~^~1300~^~Beef, variety meats and by-products, brain, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes 22.45%~^22^^6.25^4.27^9.02^3.87 -~13319~^~1300~^~Beef, variety meats and by-products, brain, cooked, pan-fried~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13320~^~1300~^~Beef, variety meats and by-products, brain, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13321~^~1300~^~Beef, variety meats and by-products, heart, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat, veins and connective tissue~^29^^6.25^4.27^9.02^3.87 -~13322~^~1300~^~Beef, variety meats and by-products, heart, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,CKD,SIMMRD~^^^~Y~^~Fat and valves, 16.39%~^16^^6.25^4.27^9.02^3.87 -~13323~^~1300~^~Beef, variety meats and by-products, kidneys, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13324~^~1300~^~Beef, variety meats and by-products, kidneys, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13325~^~1300~^~Beef, variety meats and by-products, liver, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13326~^~1300~^~Beef, variety meats and by-products, liver, cooked, braised~^~BEEF,VAR MEATS & BY-PRODUCTS,LIVER,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13327~^~1300~^~Beef, variety meats and by-products, liver, cooked, pan-fried~^~BEEF, VAR MEATS&BY-PRODUCTS, LIVER, CKD, PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13328~^~1300~^~Beef, variety meats and by-products, lungs, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~13329~^~1300~^~Beef, variety meats and by-products, lungs, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13330~^~1300~^~Beef, variety meats and by-products, mechanically separated beef, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED BF,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13331~^~1300~^~Beef, variety meats and by-products, pancreas, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13332~^~1300~^~Beef, variety meats and by-products, pancreas, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13333~^~1300~^~Beef, variety meats and by-products, spleen, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13334~^~1300~^~Beef, variety meats and by-products, spleen, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13335~^~1300~^~Beef, variety meats and by-products, suet, raw~^~BEEF,VAR MEATS & BY-PRODUCTS,SUET,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13337~^~1300~^~Beef, variety meats and by-products, thymus, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13338~^~1300~^~Beef, variety meats and by-products, thymus, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13339~^~1300~^~Beef, variety meats and by-products, tongue, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~13340~^~1300~^~Beef, variety meats and by-products, tongue, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,SIMMRD~^^^~Y~^~Skin and connective tissue, 5.74%; Cartilage and connective tissue,10.35%~^16^^6.25^4.27^9.02^3.87 -~13341~^~1300~^~Beef, variety meats and by-products, tripe, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TRIPE,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13342~^~1300~^~Beef, sandwich steaks, flaked, chopped, formed and thinly sliced, raw~^~BEEF,SNDWCH STEAKS,FLAKED,CHOPD,FORMED & THINLY SLICED,RAW~^^^~Y~^^0^^^4.00^9.00^4.00 -~13343~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13344~^~1300~^~Beef, cured, breakfast strips, raw or unheated~^~BEEF,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~13345~^~1300~^~Beef, cured, breakfast strips, cooked~^~BEEF,CURED,BRKFST STRIPS,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13346~^~1300~^~Beef, cured, corned beef, brisket, raw~^~BEEF,CURED,CORNED BF,BRISKET,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13347~^~1300~^~Beef, cured, corned beef, brisket, cooked~^~BEEF,CURED,CORNED BF,BRISKET,CKD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13348~^~0700~^~Beef, cured, corned beef, canned~^~BEEF,CURED,CORNED BF,CND~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13349~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLADE POT RST OR STK,BNLESS,LN,0" FAT,SEL, RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13350~^~0700~^~Beef, cured, dried~^~BEEF,CURED,DRIED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~13351~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13352~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13353~^~0700~^~Beef, cured, luncheon meat, jellied~^~BEEF,CURED,LUNCHEON MEAT,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13354~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 1%~^2^^6.25^^^ -~13355~^~0700~^~Beef, cured, pastrami~^~BEEF,CURED,PASTRAMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13356~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UNDBL CNTR STK,BNLESS,DENCUT,LN,0" FA, ALL GRD, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 3%~^5^^6.25^^^ -~13357~^~0700~^~Sausage, beef, cured, cooked, smoked~^~SAUSAGE,BF,CURED,CKD,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13358~^~0700~^~Beef, chopped, cured, smoked~^~BEEF,CHOPD,CURED,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13359~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BLCNTR STK,BNLESS,DEN CUT,LN,0" FA, CHOICE, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 3%~^4^^6.25^^^ -~13361~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13362~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13363~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13364~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13365~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13366~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,SEL,CKD~^^^^~Component data unavailable~^^^6.25^4.27^9.02^3.87 -~13367~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13368~^~1300~^~Beef, brisket, whole, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~1% connective tissue, 16% separable fat~^17^^6.25^4.27^9.02^3.87 -~13369~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13370~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13371~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~URMIS #1628~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13372~^~1300~^~Beef, brisket, point half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue, 1%, separable fat, 24%~^25^^6.25^4.27^9.02^3.87 -~13373~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue~^19^^6.25^4.27^9.02^3.87 -~13375~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13377~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^^~Bone and connective tissue 23%, sep fat 17%~^40^^6.25^4.27^9.02^3.87 -~13378~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue 29%, sep fat 13%~^42^^6.25^4.27^9.02^3.87 -~13379~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~13380~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",CHC,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^4.27^9.02^3.87 -~13381~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",SEL,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^40^^6.25^4.27^9.02^3.87 -~13382~^~1300~^~Beef, chuck, blade roast, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~25% bone, 14% separable fat~^39^^6.25^4.27^9.02^3.87 -~13383~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 3%, seam fat 21%~^24^^6.25^4.27^9.02^3.87 -~13384~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%, seam fat 19%~^23^^6.25^4.27^9.02^3.87 -~13386~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13387~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13388~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~16% bone, 22% separable fat~^38^^6.25^4.27^9.02^3.87 -~13389~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone, 16%, separable fat, 24%~^40^^6.25^4.27^9.02^3.87 -~13390~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,SEL,CKD,RSTD~^^^^~Bone, 17%, separable fat, 20%~^37^^6.25^4.27^9.02^3.87 -~13391~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue~^23^^6.25^4.27^9.02^3.87 -~13392~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13393~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,SEL,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~13394~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue, 7.8%, separable fat, 10.6%~^37^^6.25^4.27^9.02^3.87 -~13395~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone, 22%, separable fat, 15%~^37^^6.25^4.27^9.02^3.87 -~13396~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,SEL,CKD,BRLD~^^^^~Bone, 24%, separable fat, 13%~^37^^6.25^4.27^9.02^3.87 -~13398~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13399~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13401~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13402~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13404~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13405~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13407~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue, 1.8%, separable fat, 1.8%~^4^^6.25^4.27^9.02^3.87 -~13408~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue 1%, sep fat 2%~^3^^6.25^4.27^9.02^3.87 -~13410~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13411~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~Beef, bottom round, roast,lean only, 0" fat, choice, roasted~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 3%~^4^^^4.27^9.02^3.87 -~13413~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue 3%, sep fat 2%~^5^^6.25^4.27^9.02^3.87 -~13414~^~1300~^~Beef, round, bottom round roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13415~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,L & F,0" FAT,A GRDS,CKD,RSTD~^~Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13416~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13417~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13418~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Eye of Round Roast~^^^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13419~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^~Bone and Conective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~13420~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13421~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13422~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2340, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13423~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1525, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13424~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 4.0%, separable fat, 4.0%~^8^^6.25^4.27^9.04^3.87 -~13425~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 3%~^7^^6.25^4.27^9.02^3.87 -~13426~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS # 1525, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^^^ -~13428~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Cube steak, Round Steak, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13430~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13432~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13436~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13438~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13439~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TNDRLN STEAK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13440~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" F,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13441~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13442~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L,0" F,ALL GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^^^ -~13443~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13444~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13445~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIPOFF,LN FT,0" FT,ALLGRD,CKD,GRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^4.27^9.02^3.87 -~13446~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FT,0" FT,CHC,CKD,GRLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Steak, New York Strip, Club Steak~^^^~Connective tissue 7%~^7^^6.25^4.27^9.02^3.87 -~13447~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FAT,0" FT,SEL,CKD,GRLD~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13448~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN,0" FT,ALL GRD,CKD,GRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~13449~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 7%, separable fat 5%~^12^^6.25^4.27^9.02^3.87 -~13450~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,SEL,CKD,GRLD~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 9%, separable fat 4%~^13^^6.25^4.27^9.02^3.87 -~13451~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13452~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin Steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13453~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13454~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue, 3.8%, separable fat, 5.8%~^10^^6.25^4.27^9.02^3.87 -~13455~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13456~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13459~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13460~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13463~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%~^20^^6.25^4.27^9.02^3.87 -~13464~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Porterhouse Steak~^^^~Bone and connective tissue 23%, Separable fat 12%~^35^^6.25^4.27^9.02^3.87 -~13465~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Porterhouse Steak~^^^~Bone and connective tissue 27%, separable fat 11%~^38^^6.25^4.27^9.02^3.87 -~13466~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%, separable fat, 11%~^32^^6.25^4.27^9.02^3.87 -~13467~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%, separable fat, 10%~^31^^6.25^4.27^9.02^3.87 -~13468~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,RAW~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 24%, separable fat 13%~^37^^6.25^4.27^9.02^3.87 -~13469~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 30%, separable fat 10%~^40^^6.25^4.27^9.02^3.87 -~13470~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%, separable fat, 12%~^32^^6.25^4.27^9.02^3.87 -~13473~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 22%~^22^^6.25^4.27^9.02^3.87 -~13474~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,T-BONE STEAK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 23%~^23^^6.25^4.27^9.02^3.87 -~13477~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 01369~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13478~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13479~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BN STK,BN-IN,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~T-Bone Steak~^^^~Bone and connective tissue, 30%, separable fat, 13%~^43^^6.25^4.27^9.02^3.87 -~13481~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 22%, separable fat, 10%~^32^^6.25^4.27^9.02^3.87 -~13482~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,SEL,RAW~^~T-Bone Steak, URMIS # 1369~^^^~Bone and heavy connective tissue, 26%, Separable fat 14%~^41^^6.25^4.27^9.02^3.87 -~13483~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BONE-IN,LN,1/8" FAT,SEL,CKD,GRILLED~^~T-Bone Steak, URMIS # 1369~^^^~Bone and connective tissue, 32%, separable fat, 12%~^44^^6.25^4.27^9.02^3.87 -~13484~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1369~^^^~Bone and heavy connective tissue, 21%, separable fat, 8%~^29^^6.25^4.27^9.02^3.87 -~13485~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^1^^^4.27^9.02^3.87 -~13486~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13487~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13488~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1525~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13490~^~1300~^~Beef, rib, eye, small end (ribs 10- 12) separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10- 12) LN,0" FAT,SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue 8%, sep fat 10%~^18^^6.25^4.27^9.02^3.87 -~13491~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13492~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13493~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13494~^~1300~^~Beef, ground, 70% lean meat / 30% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,70% LN MEAT / 30% FAT,CRUMBLES,CKD,PAN-BROWNED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13495~^~1300~^~Beef, ground, 70% lean meat / 30% fat, loaf, cooked, baked~^~BEEF,GROUND,70% LN MEAT / 30% FAT,LOAF,CKD,BKD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13496~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty cooked, pan-broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY CKD,PAN-BROILED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13497~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty, cooked, broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY,CKD,BRLD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13498~^~1300~^~Beef, ground, 70% lean meat / 30% fat, raw~^~BEEF,GROUND,70% LN MEAT / 30% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13499~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 4%~^6^^6.25^^^ -~13500~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRI~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 15%, seam fat 3%~^18^^6.25^^^ -~13501~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 4%~^18^^6.25^^^ -~13502~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 17%, seam fat 2%~^19^^6.25^^^ -~13519~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 2%~^16^^6.25^^^ -~13520~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 15%, seam fat 2%~^17^^6.25^^^ -~13523~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 14%, seam fat 1%~^15^^6.25^^^ -~13595~^~1300~^~Beef, brisket, flat half, boneless separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL GRDS,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13596~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL CHOICE,RAW~^~URMIS #1623, Beef, Brsket, Flat Half~^^^~Connective tissue 1%, seam fat 8%~^9^^6.25^^^ -~13597~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13598~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STK,BNLES,LN & FAT,0" ,ALL GRDS,CKD,G~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13647~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13648~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1132, Urmis #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13649~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13650~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNS,LN & FAT,0" FAT,CHOIC,CKD,G~^~URMIS #1144~^^^~Connective tissue 14%~^14^^6.25^^^ -~13786~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE RST,BNLESS,A BF RST,LN & FAT,0",ALL G,RAW~^~URMIS #1095~^^^~Connective tissue 8%~^8^^6.25^^^ -~13788~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1095~^^^~Connective tissue 9%~^9^^6.25^^^ -~13791~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~13795~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13796~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13797~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13798~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13799~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13800~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13803~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13804~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13805~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13806~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13807~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13808~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13809~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^21^^6.25^4.27^9.02^3.87 -~13810~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13811~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1864~^^^~Bone and connective tissue~^15^^6.25^4.27^9.02^3.87 -~13812~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue~^30^^6.25^4.27^9.02^3.87 -~13813~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1049~^^^~Bone and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13814~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~13815~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13816~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13817~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1879, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13818~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1879, Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13819~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1064, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13820~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1064, Top Blade Steak~^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~13821~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13822~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,CHOIC,CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13823~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,CKD~^~URMIS #1095, Beef, Chuck, ChuckEye Rst, (America's Beef Rst)~^^^~Connective tissue7%, seam fat 13%~^20^^6.25^^^ -~13824~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13825~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13826~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13827~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13828~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13829~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^17^^6.25^4.27^9.02^3.87 -~13830~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13831~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13832~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13833~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #1986~^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13834~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #1986~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13835~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #1986~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13838~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13839~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13840~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone~^16^^6.25^4.27^9.02^3.87 -~13841~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13842~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13843~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^15^^6.25^4.27^9.02^3.87 -~13844~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13845~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13846~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13847~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2037~^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~13848~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2037~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13849~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2037~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13850~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13851~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BR~^~Prime Rib~^^~Y~^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13852~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RS~^~Prime Rib~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13853~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13854~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13855~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^~Prime Rib~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13856~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13857~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13858~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^~Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13859~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2054, Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13860~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13861~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13862~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNLS,LN & FAT,0" FAT,SEL,CKD,G~^~URMIS #1144~^^^~Connective tissue 17%~^17^^6.25^^^ -~13863~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1144~^^^~Connective tissue 14%~^15^^6.25^^^ -~13864~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #2316~^^~Y~^~Bone~^6^^6.25^4.27^9.02^3.87 -~13865~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~URMIS #2316~^^~Y~^~Bone~^8^^6.25^4.27^9.02^3.87 -~13866~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1501~^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~13867~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~URMIS #1501~^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~13868~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13869~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13870~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13871~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13872~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13873~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13874~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13875~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13876~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13877~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13878~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13879~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13880~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13881~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13882~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~13883~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13884~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13885~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13886~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13887~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1525~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13888~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS # 1525~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13889~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13890~^~1300~^~Beef, round, top round, separable lean only, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13891~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~London Broil, Round Steak, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13892~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13893~^~1300~^~Beef, round, top round steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Bone and connective tissue~^1^^^^^ -~13894~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13895~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13896~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13897~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13898~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13899~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13900~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13901~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13902~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13903~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1144~^^^~Conncective tissue 14%~^14^^6.25^^^ -~13904~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13905~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~13906~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRILLD~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~13907~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2184, T-Bone steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~13908~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,L & F,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS # 2184, T-Bone Steak~^^^~Bone and connective tissue 28%~^28^^6.25^4.27^9.02^3.87 -~13909~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13910~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^~Y~^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13911~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13912~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,TOP LN,STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRLLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^~Y~^~Bone and Connective tissue 12%~^8^^6.25^4.27^9.02^3.87 -~13913~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13914~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13915~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,PRIME,RAW~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~13916~^~1300~^~Beef, short loin, top loin, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~13917~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13918~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13919~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13920~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13921~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13922~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13923~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13924~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13925~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13926~^~1300~^~Beef, tenderloin, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,TENDERLOIN,LN&FAT,1/8"FAT,PRIME,RAW~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13927~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13928~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,PRIME,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13929~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Sirloin strip, Sirloin steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13930~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13931~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13932~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13933~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2237, Sirloin steak, Sirloin strip~^^~Y~^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13934~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13935~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13937~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 3%, separable fat, 8%~^11^^6.25^4.27^9.02^3.87 -~13940~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%, separable fat, 4%~^9^^6.25^4.27^9.02^3.87 -~13943~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~Beef, shoulder steak, boneless, lean only, 0", choice, grill~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13946~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13948~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~13949~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^^0^^6.25^4.27^9.02^3.87 -~13950~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13951~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN & FAT,0",SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13952~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIBEYE,SML END(RIBS 10-12),LN&FAT,0",ALL GRDS,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13953~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BF,BTTM SRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13954~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13955~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13956~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13957~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13958~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13959~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13961~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%, separable fat, 0%~^5^^6.25^4.27^9.02^3.87 -~13963~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%, separable fat, 0%~^3^^6.25^4.27^9.02^3.87 -~13965~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%, separable fat, 2%~^15^^6.25^4.27^9.02^3.87 -~13967~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%, separable fat, 3%~^19^^6.25^4.27^9.02^3.87 -~13968~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13969~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13970~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13971~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13972~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 8%, seam fat 10%~^18^^6.25^^^ -~13973~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,CHOIC,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 9%, seam fat 11%~^20^^6.25^^^ -~13974~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~13975~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13977~^~1300~^~Beef, plate, inside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,INSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 3%~^3^^6.25^4.27^9.02^3.87 -~13979~^~1300~^~Beef, plate, outside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 5%~^5^^6.25^4.27^9.02^3.87 -~13980~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF, CHUCK, SHORT RIBS, BNL, 0" FAT, CHOICE, CKED, BR~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, Seam fat 20%~^27^^6.25^^^ -~13981~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connnective tissue 6%, seam fat 18%~^24^^6.25^^^ -~13982~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 20%~^26^^6.25^^^ -~13983~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13985~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BF,LOIN,BTTM SIRLOIN BUTT,TRI-TIP,LN,0" FAT,ALL GRD,CKD,RSTD~^^^^~Bone and connective tissue 1.58%, separable fat 4.34%~^6^^6.25^^^ -~14003~^~1400~^~Alcoholic beverage, beer, regular, all~^~ALCOHOLIC BEV,BEER,REG,ALL~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14004~^~1400~^~Alcoholic beverage, beer, regular, BUDWEISER~^~ALCOHOLIC BEV,BEER,REG,BUDWEISER~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14005~^~1400~^~Alcoholic beverage, beer, light, BUDWEISER SELECT~^~ALCOHOLIC BEV,BEER,LT,BUDWEISER SEL~^^~Anheuser-Busch, Inc.~^^^0^^^^^ -~14006~^~1400~^~Alcoholic beverage, beer, light~^~ALCOHOLIC BEV,BEER,LT~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14007~^~1400~^~Alcoholic beverage, beer, light, BUD LIGHT~^~ALCOHOLIC BEV,BEER,LT,BUD LT~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14009~^~1400~^~Alcoholic beverage, daiquiri, canned~^~ALCOHOLIC BEV,DAIQUIRI,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14010~^~1400~^~Alcoholic beverage, daiquiri, prepared-from-recipe~^~ALCOHOLIC BEV,DAIQUIRI,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14013~^~1400~^~Alcoholic beverage, beer, light, low carb~^~ALCOHOLIC BEV,BEER,LT,LO CARB~^^~Anheuser-Busch, Inc.~^~Y~^^0^^^^^ -~14015~^~1400~^~Alcoholic beverage, pina colada, canned~^~ALCOHOLIC BEV,PINA COLADA,CND~^^^^^0^^6.25^3.40^8.50^3.90 -~14016~^~1400~^~Beverages, almond milk, sweetened, vanilla flavor, ready-to-drink~^~BEVERAGES,ALMOND MILK,SWTND,VANILLA FLAVOR,RTD~^^^~Y~^^0^^6.38^^^ -~14017~^~1400~^~Alcoholic beverage, pina colada, prepared-from-recipe~^~ALCOHOLIC BEV,PINA COLADA,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14019~^~1400~^~Alcoholic beverage, tequila sunrise, canned~^~ALCOHOLIC BEV,TEQUILA SUNRISE,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14021~^~1400~^~Beverages, Energy drink, Citrus~^~BEVERAGES,ENERGY DRK,CITRUS~^^^~Y~^^0^^^^^ -~14022~^~1400~^~Beverages, MONSTER energy drink, low carb~^~BEVERAGES,MONSTER ENERGY DRK,LO CARB~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14024~^~1400~^~Beverages, Whiskey sour mix, powder~^~BEVERAGES,WHISKEY SOUR MIX,PDR~^^^^^0^^6.25^3.40^8.40^3.90 -~14025~^~1400~^~Alcoholic beverage, whiskey sour, prepared with water, whiskey and powder mix~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP W/ H2O,WHISKEY & PDR MIX~^^^^^0^^^^^ -~14026~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS Zero, energy drink, sugar-free with guarana, fortified with vitamins B6 and B12~^~BEV, COCA-COLA COMY,NOS 0,ENEY DRK,SUG-FRE, GUANA, B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14027~^~1400~^~Alcoholic beverage, whiskey sour, canned~^~ALCOHOLIC BEV,WHISKEY SOUR,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14028~^~1400~^~Beverages, Whiskey sour mix, bottled~^~BEVERAGES,WHISKEY SOUR MIX,BTLD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14029~^~1400~^~Alcoholic beverage, whiskey sour, prepared from item 14028~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP FROM ITEM 14028~^^^^^0^^0.00^^^ -~14030~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS energy drink, Original, grape, loaded cherry, charged citrus, fortified with vitamins B6 and B12~^~BEV,COCA-COLA CO,NOS ENGY ,OGN,GRPE,CHERY,CITR, VIT B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14031~^~1400~^~Beverages, water, bottled, yumberry, pomegranate with anti-oxidants, zero calories~^~BEV,H2O,BTLD,YUMBERRY,POMEGRANATE W/ ANTI-OXIDANTS, 0 CAL~^^^~Y~^^0^^6.25^^^ -~14033~^~1400~^~Beverages, ABBOTT, EAS whey protein powder~^~BEVERAGES,ABBOTT,EAS WHEY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14034~^~1400~^~Alcoholic beverage, creme de menthe, 72 proof~^~ALCOHOLIC BEV,CREME DE MENTHE,72 PROOF~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~14035~^~1400~^~Beverages, ABBOTT, EAS soy protein powder~^~BEVERAGES,ABBOTT,EAS SOY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14036~^~1400~^~Beverages, CYTOSPORT, Muscle Milk, ready-to-drink~^~BEVERAGES,CYTOSPORT,MUSCLE MILK,RTD~^^~CytoSport~^~Y~^^0^^6.25^^^ -~14037~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 80 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14038~^~1400~^~Beverages, OCEAN SPRAY, Cran-Energy, Cranberry Energy Juice Drink~^~BEVERAGES,OCEAN SPRAY,CRAN-ENERGY,CRANBERRY ENERGY JUC DRK~^^~Ocean Spray Cranberries, Inc.~^~Y~^^0^^6.25^^^ -~14041~^~1400~^~Beverages, NESTLE, Boost plus, nutritional drink, ready-to-drink~^~BEVERAGES,NESTLE,BOOST PLUS,NUTRITIONAL DRK,RTD~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^^^ -~14044~^~1400~^~Beverages, SLIMFAST, Meal replacement, High Protein Shake, Ready-To-Drink, 3-2-1 plan~^~BEVERAGES,SLIMFAST,MEAL REPLCMNT,HI PROT SHAKE,RTD,3-2-1~^^~Unilever~^~Y~^^0^^^^^ -~14045~^~1400~^~Beverages, UNILEVER, SLIMFAST, meal replacement, regular, ready-to-drink, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST,MEAL REPLCMNT,REG,RTD,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.38^^^ -~14047~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, powder, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST SHAKE MIX,PDR,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.25^^^ -~14048~^~1400~^~Beverages, FUZE, orange mango, fortified with vitamins A, C, E, B6~^~BEVERAGES,FUZE,ORANGE MANGO,FORT W/ VITAMINS A,C,E,B6~^^^^^0^^6.25^^^ -~14050~^~1400~^~Alcoholic beverage, distilled, rum, 80 proof~^~ALCOHOLIC BEV,DISTILLED,RUM,80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14051~^~1400~^~Alcoholic beverage, distilled, vodka, 80 proof~^~ALCOHOLIC BEV,DISTILLED,VODKA,80 PROOF~^^^^^0^^6.25^^^4.12 -~14052~^~1400~^~Alcoholic beverage, distilled, whiskey, 86 proof~^~ALCOHOLIC BEV,DISTILLED,WHISKEY,86 PROOF~^^^^^0^^6.25^^^4.12 -~14054~^~1400~^~Beverages, almond milk, chocolate, ready-to-drink~^~BEVERAGES,ALMOND MILK,CHOC,RTD~^^^~Y~^^0^^^^^ -~14055~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, high protein, whey powder, 3-2-1 Plan,~^~BEVERAG,UNILEV,SLIMFAST SHAKE ,HI PROT,WHEY PDR,3-2-1 PLAN,~^^~Unilever~^~Y~^^0^^6.38^^^ -~14056~^~1400~^~Beverages, Acai berry drink, fortified~^~BEVERAGES,ACAI BERRY DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14057~^~1400~^~Alcoholic beverage, wine, dessert, sweet~^~ALCOHOLIC BEV,WINE,DSSRT,SWT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14058~^~1400~^~Beverages, Whey protein powder isolate~^~BEVERAGES,WHEY PROT PDR ISOLATE~^^^~Y~^^0^^6.38^^^ -~14060~^~1400~^~Beverages, Energy Drink with carbonated water and high fructose corn syrup~^~BEVERAGES,ENERGY DRK W/ CARB H2O & HI FRUCTOSE CORN SYRUP~^^^~Y~^^0^^6.25^^^ -~14061~^~1400~^~Beverages, Energy Drink, sugar free~^~BEVERAGES,ENERGY DRK,SUGAR FREE~^^^~Y~^^0^^^^^ -~14062~^~1400~^~Beverages, ABBOTT, ENSURE, Nutritional Shake, Ready-to-Drink~^~BEVERAGES,ABBOTT,ENSURE,NUTRITIONAL SHAKE,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14063~^~1400~^~Beverages, chocolate powder, no sugar added~^~BEVERAGES,CHOC PDR,NO SUGAR ADDED~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~14064~^~1400~^~Beverages, Orange juice, light, No pulp~^~BEVERAGES,ORANGE JUC,LT,NO PULP~^^^~Y~^^0^^6.25^^^ -~14065~^~1400~^~Beverages, The COCA-COLA company, Hi-C Flashin' Fruit Punch~^~BEVERAGES,THE COCA-COLA COMPANY,HI-C FLASHIN' FRUIT PUNCH~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14066~^~1400~^~Beverages, Protein powder whey based~^~BEVERAGES,PROT PDR WHEY BSD~^^^~Y~^^0^^^^^ -~14067~^~1400~^~Beverages, Protein powder soy based~^~BEVERAGES,PROT PDR SOY BSD~^^^~Y~^^0^^^^^ -~14073~^~1400~^~Beverages, ZEVIA, cola~^~BEVERAGES,ZEVIA,COLA~^^~Zevia~^^^0^^6.25^^^ -~14074~^~1400~^~Beverages, ZEVIA, cola, caffeine free~^~BEVERAGES,ZEVIA,COLA,CAFFEINE FREE~^^~Zevia~^^^0^^^^^ -~14075~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG,Gerolsteiner naturally sparkling mineral water,~^~BEVERAGE,GMBH & CO. KG,GEROLSTEINER NATURALLY SPARK MIN H2O,~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^6.25^^^ -~14079~^~1400~^~Beverages, yellow green colored citrus soft drink with caffeine~^~BEVERAGES,YEL GRN COLORED CITRUS SOFT DRK W/ CAFFEINE~^^^~Y~^^0^^6.25^^^ -~14080~^~1400~^~Beverages, rich chocolate, powder~^~BEVERAGES,RICH CHOC,PDR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~14082~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG (Gerolsteiner), naturally sparkling, mineral bottled water~^~BEV,GEROLSTEINER BRUNNEN,NATURALLY SPARKLING,MIN BTLD H2O~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^^^^ -~14083~^~1400~^~Beverages, chocolate malt, powder, prepared with fat free milk~^~BEVERAGES,CHOC MALT,PDR,PREP W/ FAT FREE MILK~^^~Nestle USA, Inc.~^^^0^^6.38^^^ -~14084~^~1400~^~Alcoholic beverage, wine, table, all~^~ALCOHOLIC BEV,WINE,TABLE,ALL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14086~^~1400~^~Beverages, V8 SPLASH Smoothies, Peach Mango~^~BEVERAGES,V8 SPLASH SMOOTHIES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14087~^~1400~^~Beverages, V8 SPLASH Smoothies, Strawberry Banana~^~BEVERAGES,V8 SPLASH SMOOTHIES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14088~^~1400~^~Beverages, V8 SPLASH Smoothies, Tropical Colada~^~BEVERAGES,V8 SPLASH SMOOTHIES,TROPICAL COLADA~^^~Campbell Soup Co.~^^^0^^^^^ -~14090~^~1400~^~Beverages, Coconut water, ready-to-drink, unsweetened~^~BEVERAGES,COCNT H2O,RTD,UNSWTND~^^^~Y~^^0^^^^^ -~14091~^~1400~^~Beverages, almond milk, unsweetened, shelf stable~^~BEVERAGES,ALMOND MILK,UNSWTND,SHELF STABLE~^^^~Y~^^0^^^^^ -~14092~^~1400~^~Beverages, chocolate almond milk, unsweetened, shelf-stable, fortified with vitamin D2 and E~^~BEV,CHOC ALMOND MILK,UNSWTND,SHELF-STABLE,FORT W/ VIT D2 & E~^^^~Y~^^0^^6.25^^^ -~14093~^~1400~^~Beverages, The COCA-COLA company, Glaceau Vitamin Water, Revive Fruit Punch, fortified~^~BEVERAGE, COCA-COLA CO,GLACEAU VIT H2O,REVIVE FRT PUNCH,FORT~^^~The Coca-Cola Company~^~Y~^^0^^^^^ -~14095~^~1400~^~Beverages, MINUTE MAID, Lemonada, Limeade~^~BEVERAGES,MINUTE MAID,LEMONADA,LIMEADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14096~^~1400~^~Alcoholic beverage, wine, table, red~^~ALCOHOLIC BEV,WINE,TABLE,RED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14097~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Sauvignon~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET SAUVIGNON~^^^^^0^^6.25^3.36^8.37^3.92 -~14098~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Franc~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET FRANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14099~^~1400~^~Alcoholic Beverage, wine, table, red, Pinot Noir~^~ALCOHOLIC BEV,WINE,TABLE,RED,PINOT NOIR~^^^^^0^^6.25^3.36^8.37^3.92 -~14100~^~1400~^~Alcoholic Beverage, wine, table, red, Syrah~^~ALCOHOLIC BEV,WINE,TABLE,RED,SYRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14101~^~1400~^~Alcoholic Beverage, wine, table, red, Barbera~^~ALCOHOLIC BEV,WINE,TABLE,RED,BARBERA~^^^^^0^^6.25^3.36^8.37^3.92 -~14102~^~1400~^~Alcoholic Beverage, wine, table, red, Zinfandel~^~ALCOHOLIC BEV,WINE,TABLE,RED,ZINFANDEL~^^^^^0^^6.25^3.36^8.37^3.92 -~14103~^~1400~^~Alcoholic Beverage, wine, table, red, Petite Sirah~^~ALCOHOLIC BEV,WINE,TABLE,RED,PETITE SIRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14105~^~1400~^~Alcoholic Beverage, wine, table, red, Claret~^~ALCOHOLIC BEV,WINE,TABLE,RED,CLARET~^^^^^0^^6.25^3.36^8.37^3.92 -~14106~^~1400~^~Alcoholic beverage, wine, table, white~^~ALCOHOLIC BEV,WINE,TABLE,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14107~^~1400~^~Alcoholic Beverage, wine, table, red, Lemberger~^~ALCOHOLIC BEV,WINE,TABLE,RED,LEMBERGER~^^^^^0^^6.25^3.36^8.37^3.92 -~14108~^~1400~^~Alcoholic Beverage, wine, table, red, Sangiovese~^~ALCOHOLIC BEV,WINE,TABLE,RED,SANGIOVESE~^^^^^0^^6.25^3.36^8.37^3.92 -~14109~^~1400~^~Alcoholic Beverage, wine, table, red, Carignane~^~ALCOHOLIC BEV,WINE,TABLE,RED,CARIGNANE~^^^^^0^^6.25^3.36^8.37^3.92 -~14113~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Gris (Grigio)~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT GRIS (GRIGIO)~^^^^^0^^6.25^3.36^8.37^3.92 -~14116~^~1400~^~Alcoholic beverage, wine, table, white, Chenin Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHENIN BLANC~^^^^^0^^6.25^3.36^3.87^3.92 -~14117~^~1400~^~Alcoholic beverage, wine, table, white, Fume Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,FUME BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14119~^~1400~^~Beverages, Mixed vegetable and fruit juice drink, with added nutrients~^~BEVERAGES,MXD VEG & FRUIT JUC DRK,W/ ADDED NUTR~^~includes V-8 Splash drinks~^^~Y~^^0^^^^^ -~14120~^~1400~^~Alcoholic beverage, wine, table, white, Muller Thurgau~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MULLER THURGAU~^^^^^0^^6.25^3.36^8.37^3.92 -~14121~^~1400~^~Beverages, carbonated, club soda~^~BEVERAGES,CARB,CLUB SODA~^~soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14124~^~1400~^~Alcoholic beverage, wine, table, white, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14125~^~1400~^~Alcoholic beverage, wine, table, white, late harvest, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14126~^~1400~^~Alcoholic beverage, wine, table, white, Semillon~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SEMILLON~^^^^^0^^6.25^3.36^8.37^3.92 -~14130~^~1400~^~Carbonated beverage, cream soda~^~CARBONATED BEV,CRM SODA~^~soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14132~^~1400~^~Alcoholic beverage, wine, table, white, Riesling~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,RIESLING~^^^^^0^^6.25^3.36^8.37^3.92 -~14134~^~1400~^~Alcoholic beverage, wine, table, white, Sauvignon Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SAUVIGNON BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14135~^~1400~^~Alcoholic beverage, wine, table, white, late harvest~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST~^^^^^0^^6.25^3.36^8.37^3.92 -~14136~^~1400~^~Beverages, carbonated, ginger ale~^~BEVERAGES,CARB,GINGER ALE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14137~^~1400~^~Beverages, NESTEA, tea, black, ready-to-drink, lemon~^~BEVERAGES,NESTEA,TEA,BLACK,RTD,LEMON~^^~Nestle USA, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14138~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14140~^~1400~^~Alcoholic beverage, wine, table, white, Muscat~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MUSCAT~^^^^^0^^6.25^3.36^8.37^3.92 -~14142~^~1400~^~Beverages, carbonated, grape soda~^~BEVERAGES,CARB,GRAPE SODA~^~soft drink, pop~^^^^0^^6.25^3.36^8.37^3.87 -~14143~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, without caffeine~^~BEVERAGES,CARB,LO CAL,OTHER THAN COLA OR PEPPER,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^^4.00^9.00^4.00 -~14144~^~1400~^~Beverages, carbonated, lemon-lime soda, no caffeine~^~BEVERAGES,CARB,LEMON-LIME SODA,NO CAFFEINE~^~white soda, soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14145~^~1400~^~Beverages, carbonated, SPRITE, lemon-lime, without caffeine~^~BEVERAGES,CARB,SPRITE,LEMON-LIME,WO/ CAFFEINE~^~soft drink, white soda, pop~^~The Coca-Cola Company~^~Y~^^0^^6.25^3.36^8.37^3.87 -~14146~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, without caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT,WO/ CAF~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14147~^~1400~^~Beverages, carbonated, cola, without caffeine~^~BEVERAGES,CARB,COLA,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14148~^~1400~^~Beverages, carbonated, cola, regular~^~BEVERAGES,CARB,COLA,REG~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14149~^~1400~^~Beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners~^~BEVERAGES,CARB,RED SUGAR,COLA,CONTAINS CAFFEINE & SWEETENERS~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14150~^~1400~^~Beverages, carbonated, orange~^~BEVERAGES,CARB,ORANGE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14151~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, with aspartame, contains caffeine~^~BEV,CARB,LO CAL,OTHER THAN COLA OR PEPPER,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14152~^~1400~^~Alcoholic Beverage, wine, table, red, Burgundy~^~ALCOHOLIC BEV,WINE,TABLE,RED,BURGUNDY~^^^^^0^^6.25^3.36^8.37^3.92 -~14153~^~1400~^~Beverages, carbonated, pepper-type, contains caffeine~^~BEVERAGES,CARB,PEPPER-TYPE,CONTAINS CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14154~^~1400~^~Beverages, Energy drink, RED BULL~^~BEVERAGES,ENERGY DRK,RED BULL~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14155~^~1400~^~Beverages, carbonated, tonic water~^~BEVERAGES,CARB,TONIC H2O~^~soda, soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14156~^~1400~^~Beverages, Energy drink, RED BULL, sugar free, with added caffeine, niacin, pantothenic acid, vitamins B6 and B12~^~BEVERAGES,ENERGY DRK,RED BULL,SUGAR FREE,W/ ADDED CAFFEINE,~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14157~^~1400~^~Beverages, carbonated, root beer~^~BEVERAGES,CARB,ROOT BEER~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14158~^~1400~^~Alcoholic Beverage, wine, table, red, Gamay~^~ALCOHOLIC BEV,WINE,TABLE,RED,GAMAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14159~^~1400~^~Alcoholic Beverage, wine, table, red, Mouvedre~^~ALCOHOLIC BEV,WINE,TABLE,RED,MOUVEDRE~^^^^^0^^6.25^3.36^8.37^3.92 -~14160~^~1400~^~Alcoholic beverage, wine, table, white, Chardonnay~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHARDONNAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14161~^~1400~^~Beverages, Kiwi Strawberry Juice Drink~^~BEVERAGES,KIWI STRAWBERRY JUC DRK~^^^~Y~^^0^^6.25^^^ -~14162~^~1400~^~Beverages, Apple juice drink, light, fortified with vitamin C~^~BEVERAGES,APPL JUC DRK,LT,FORT W/ VIT C~^^~Mott's INC.~^~Y~^^0^^6.25^^^ -~14163~^~1400~^~Beverages, chocolate drink, milk and soy based, ready to drink, fortified~^~BEVERAGES,CHOC DRK,MILK & SOY BSD,READY TO DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14164~^~1400~^~Beverages, chocolate malt powder, prepared with 1% milk, fortified~^~BEVERAGES,CHOC MALT PDR,PREP W/ 1% MILK,FORT~^^^^^0^^6.38^^^ -~14165~^~1400~^~Beverages, carbonated, limeade, high caffeine~^~BEVERAGES,CARB,LIMEADE,HI CAFFEINE~^^^^^0^^^^^ -~14166~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-types, with sodium saccharin, contains caffeine~^~BEV,CARB,LO CAL,COLA OR PEPER-TYPE,W/ NA SACCHARIN, CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.87^8.37^3.36 -~14167~^~1400~^~Beverages, POWERADE, Zero, Mixed Berry~^~BEVERAGES,POWERADE,ZERO,MXD BERRY~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14168~^~1400~^~Beverages, Carob-flavor beverage mix, powder~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR~^^^^^0^^6.25^3.47^8.37^3.90 -~14169~^~1400~^~Beverages, Carob-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14171~^~1400~^~Beverages, coconut milk, sweetened, fortified with calcium, vitamins A, B12, D2~^~BEVERAGES,COCNT MILK,SWTND,FORT W/ CA,VITAMINS A,B12,D2~^^^~Y~^^0^^^^^ -~14173~^~1400~^~Beverages, coffee, ready to drink, vanilla, light, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,VANILLA,LT,MILK BSD,SWTND~^^~Starbucks Coffee Company~^^^0^^6.25^^^ -~14174~^~1400~^~Beverages, Lemonade fruit juice drink light, fortified with vitamin E and C~^~BEVE,LEMONADE FRUIT JUC DRK LT,FORT W/ VIT E & C~^^^~Y~^^0^^6.25^^^ -~14177~^~1400~^~Beverages, chocolate-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CHOCOLATE-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14179~^~1400~^~Beverages, coffee, ready to drink, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,MILK BSD,SWTND~^^^~Y~^^0^^6.38^^^ -~14180~^~1400~^~Beverages, coffee, brewed, breakfast blend~^~BEVERAGES,COFFEE,BREWED,BRKFST BLEND~^^^^^0^^^^^ -~14181~^~1400~^~Beverages, chocolate syrup~^~BEVERAGES,CHOC SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14182~^~1400~^~Beverages, chocolate syrup, prepared with whole milk~^~BEVERAGES,CHOC SYRUP,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14183~^~1400~^~Beverages, coffee, ready to drink, iced, mocha, milk based~^~BEVERAGES,COFFEE,READY TO DRK,ICED,MOCHA,MILK BSD~^^^^^0^^6.38^^^ -~14185~^~1400~^~Beverages, tea, Oolong, brewed~^~BEVERAGES,TEA,OOLONG,BREWED~^^^~Y~^^0^^^^^ -~14187~^~1400~^~Beverages, Clam and tomato juice, canned~^~BEVERAGES,CLAM & TOMATO JUC,CND~^^^^^0^^6.25^3.80^8.80^4.00 -~14188~^~1400~^~Beverages, tea, green, ready to drink, ginseng and honey, sweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,GINSENG & HONEY,SWTND~^^^~Y~^^0^^^^^ -~14189~^~1400~^~Beverages, The COCA-COLA company, Minute Maid, Lemonade~^~BEVERAGES,THE COCA-COLA COMPANY,MINUTE MAID,LEMONADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14190~^~1400~^~Beverages, tea, green, ready-to-drink, diet~^~BEVERAGES,TEA,GRN,RTD,DIET~^^^~Y~^^0^^^^^ -~14191~^~1400~^~Beverages, tea, green, ready-to-drink, citrus, diet, fortified with vitamin C~^~BEVERAGES,TEA,GRN,RTD,CITRUS,DIET,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14192~^~1400~^~Beverages, Cocoa mix, powder~^~BEVERAGES,COCOA MIX,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14194~^~1400~^~Beverages, Cocoa mix, powder, prepared with water~^~BEVERAGES,COCOA MIX,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14195~^~1400~^~Beverages, Cocoa mix, NESTLE, Hot Cocoa Mix Rich Chocolate With Marshmallows~^~BEV,COCOA MIX,NESTLE,HOT COCOA MIX RICH CHOC W/ MARSHMALLOWS~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14196~^~1400~^~Beverages, Cocoa mix, no sugar added, powder~^~BEVERAGES,COCOA MIX,NO SUGAR ADDED,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14197~^~1400~^~Cocoa mix, NESTLE, Rich Chocolate Hot Cocoa Mix~^~COCOA MIX,NESTLE,RICH CHOC HOT COCOA MIX~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14199~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, sweetened~^~BEVERAGES,TEA,BLACK,RTD,LEMON,SWTND~^^^~Y~^^0^^^^^ -~14201~^~1400~^~Beverages, coffee, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14202~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared, decaffeinated~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14203~^~1400~^~Beverages, coffee, instant, regular, half the caffeine~^~BEVERAGES,COFFEE,INST,REG,HALF THE CAFFEINE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14204~^~1400~^~Beverages, coffee and cocoa, instant, decaffeinated, with whitener and low calorie sweetener~^~BEVERAGES,COFFEE&COCOA,INST,DECAFFEINATED,W/WHTNR&LOCALSWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14206~^~1400~^~Beverages, tea, green, ready-to-drink, sweetened~^~BEVERAGES,TEA,GRN,RTD,SWTND~^^^~Y~^^0^^^^^ -~14207~^~1400~^~Beverages, tea, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,RTD,LEMON,DIET~^^^~Y~^^0^^^^^ -~14209~^~1400~^~Beverages, coffee, brewed, prepared with tap water~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14210~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14211~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,BLACK,RTD,LEMON,DIET~^^^~Y~^^0^^6.25^^^ -~14214~^~1400~^~Beverages, coffee, instant, regular, powder~^~BEVERAGES,COFFEE,INST,REG,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14215~^~1400~^~Beverages, coffee, instant, regular, prepared with water~^~BEVERAGES,COFFEE,INST,REG,PREP W/ H2O~^^^^^0^^0.00^^^ -~14216~^~1400~^~Beverages, aloe vera juice drink, fortified with Vitamin C~^~BEVERAGES,ALOE VERA JUC DRK,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14217~^~1400~^~Beverages, OCEAN SPRAY, Cran Grape~^~BEVERAGES,OCEAN SPRAY,CRAN GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14218~^~1400~^~Beverages, coffee, instant, decaffeinated, powder~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14219~^~1400~^~Beverages, coffee, instant, decaffeinated, prepared with water~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PREP W/ H2O~^^^^^0^^0.00^^^ -~14220~^~1400~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14221~^~1400~^~Beverages, OCEAN SPRAY, Diet Cranberry Juice~^~BEVERAGES,OCEAN SPRAY,DIET CRANBERRY JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14222~^~1400~^~Beverages, coffee, instant, with chicory~^~BEVERAGES,COFFEE,INST,W/ CHICORY~^^^^^0^^6.25^3.20^8.37^4.10 -~14223~^~1400~^~Beverages, coffee, instant, chicory~^~BEVERAGES,COFFEE,INST,CHICORY~^^^^^0^^^^^ -~14224~^~1400~^~Beverages, coffee, instant, mocha, sweetened~^~BEVERAGES,COFFEE,INST,MOCHA,SWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14226~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry and Raspberry Flavored Juice~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY & RASPBERRY FLAV JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14227~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Strawberry Flavored Juice Drink~^~BEVERAGES,OCEAN SPRAYWHITE CRANBERRY STRAWBERRY FLAV JUC DRK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14231~^~1400~^~Beverages, KRAFT, coffee, instant, French Vanilla Cafe~^~BEVERAGES,KRAFT,COFFEE,INST,FRENCH VANILLA CAFE~^^~Kraft Foods, Inc.~^^^0^^^^^ -~14233~^~1400~^~Beverages, OCEAN SPRAY, Cran Raspberry Juice Drink~^~BEVERAGEES, OCEAN SPRAY, CRAN RASPBERRY JUICE DRINK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14234~^~1400~^~Beverages, OCEAN SPRAY, Cran Lemonade~^~BEVERAGES,OCEAN SPRAY,CRAN LEMONADE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14235~^~1400~^~Beverages, OCEAN SPRAY, Diet Cran Cherry~^~BEV, OCEAN SPRAY, CRAN CHERRY DIET~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14236~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14237~^~1400~^~Beverages, coffee substitute, cereal grain beverage, prepared with water~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PREP W/ H2O~^^^~Y~^^0^^^^^ -~14238~^~1400~^~Beverages, cranberry-apple juice drink, bottled~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14239~^~1400~^~Alcoholic beverage, malt beer, hard lemonade~^~ALCOHOLIC BEV,MALT BEER,HARD LEMONADE~^^^~Y~^^0^^6.25^^^ -~14240~^~1400~^~Beverages, cranberry-apricot juice drink, bottled~^~BEVERAGES,CRANBERRY-APRICOT JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14241~^~1400~^~Beverages, cranberry-grape juice drink, bottled~^~BEVERAGES,CRANBERRY-GRAPE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14242~^~1400~^~Cranberry juice cocktail, bottled~^~CRANBERRY JUC COCKTAIL,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14243~^~1400~^~Cranberry juice cocktail, bottled, low calorie, with calcium, saccharin and corn sweetener~^~CRANBERRY JUC COCKTAIL,BTLD,LO CAL,W/CA,SACCHARIN&CORN SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14245~^~1400~^~Beverages, Eggnog-flavor mix, powder, prepared with whole milk~^~BEVERAGES,EGGNOG-FLAVOR MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14246~^~1400~^~Beverages, tea, green, instant, decaffeinated, lemon, unsweetened, fortified with vitamin C~^~BEVERAGES,TEA,GRN,INST,DECAFFEI,LEMON,UNSWTND,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14247~^~1400~^~Beverages, tea, black, ready to drink~^~BEVERAGES,TEA,BLACK,READY TO DRK~^^~McDonald's Corporation~^~Y~^^0^^6.25^^^ -~14248~^~1400~^~Alcoholic beverage, beer, light, higher alcohol~^~ALCOHOLIC BEV,BEER,LT,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14250~^~1400~^~Beverages, AMBER, hard cider~^~BEVERAGES,AMBER,HARD CIDER~^^^~Y~^^0^^6.25^^^ -~14251~^~1400~^~Alcoholic beverages, beer, higher alcohol~^~ALCOHOLIC BEVERAGES,BEER,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14252~^~1400~^~Beverages, Malt liquor beverage~^~BEVERAGES,MALT LIQUOR BEV~^^^~Y~^^0^^6.25^^^ -~14253~^~1400~^~Alcoholic beverages, wine, rose~^~ALCOHOLIC BEVERAGES,WINE,ROSE~^^^~Y~^^0^^6.25^^^ -~14255~^~1400~^~Beverages, OCEAN SPRAY, Cran Pomegranate~^~BEVERAGES,OCEAN SPRAY,CRAN POMEGRANATE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14256~^~1400~^~Beverages, OCEAN SPRAY, Cran Cherry~^~BEVERAGES,OCEAN SPRAY,CRAN CHERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14257~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14258~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14259~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry, Concord Grape~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY,CONCORD GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14260~^~1400~^~Beverages, tea, green, brewed, decaffeinated~^~BEVERAGES,TEA,GRN,BREWED,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14261~^~1400~^~Beverages, tea, green, ready to drink, unsweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,UNSWTND~^^^~Y~^^0^^6.25^^^ -~14262~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14263~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate, prepared with water~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14264~^~1400~^~Beverages, fruit punch drink, without added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,WO/ ADDED NUTR,CND~^^^~Y~^^0^^^^^ -~14267~^~1400~^~Beverages, Fruit punch drink, with added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,W/ ADDED NUTR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14268~^~1400~^~Beverages, Fruit punch drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14269~^~1400~^~Beverages, Fruit punch drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14270~^~1400~^~Beverages, coffee, instant, vanilla, sweetened, decaffeinated, with non dairy creamer~^~BEVERAGES,COFFEE,INST,VANILA,SWTND,DECAFF,W/ NON DAIRY CREAM~^^^~Y~^^0^^6.25^^^ -~14276~^~1400~^~Beverages, Tropical Punch, ready-to-drink~^~BEVERAGES,TROPICAL PUNCH,RTD~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~14277~^~1400~^~Beverages, grape drink, canned~^~BEVERAGES,GRAPE DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14278~^~1400~^~Beverages, tea, green, brewed, regular~^~BEVERAGES,TEA,GRN,BREWED,REG~^^^~Y~^^0^^^^^ -~14279~^~1400~^~Beverages, tea, black, ready-to-drink, peach, diet~^~BEVERAGES,TEA,BLACK,RTD,PEACH,DIET~^^^~Y~^^0^^^^^ -~14280~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated, diet~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED,DIET~^^^~Y~^^0^^6.25^^^ -~14281~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14282~^~1400~^~Beverages, grape juice drink, canned~^~BEVERAGES,GRAPE JUC DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14284~^~1400~^~Beverages, Cranberry juice cocktail~^~BEVERAGES,CRANBERRY JUC COCKTAIL~^^^^^0^^^^^ -~14285~^~1400~^~Beverages, OCEAN SPRAY, Ruby Red cranberry~^~BEVERAGES,OCEAN SPRAY,RUBY RED CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14286~^~1400~^~Beverages, MOTTS, Apple juice light, fortified with vitamin C~^~BEVERAGES,MOTTS,APPL JUC LT,FORT W/ VIT C~^^~Mott's INC.~^^^0^^6.25^^^ -~14287~^~1400~^~Beverages, Lemonade, powder~^~BEVERAGES,LEMONADE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14288~^~1400~^~Lemonade, powder, prepared with water~^~LEMONADE,PDR,PREP W/H2O~^^^^^0^^0.00^^^ -~14291~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, peach, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,PEACH,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14292~^~1400~^~Lemonade, frozen concentrate, white~^~LEMONADE,FRZ CONC,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14293~^~1400~^~Lemonade, frozen concentrate, white, prepared with water~^~LEMONADE,FRZ CONC,WHITE,PREP W/H2O~^^^^^0^^0.00^^^ -~14294~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, lemon, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,LEMON,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14296~^~1400~^~Beverages, lemonade-flavor drink, powder~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14297~^~1400~^~Beverages, lemonade-flavor drink, powder, prepared with water~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR,PREP W/ H2O~^^^^^0^^0.00^^^ -~14303~^~1400~^~Limeade, frozen concentrate, prepared with water~^~LIMEADE,FRZ CONC,PREP W/H2O~^^^^^0^^^^^ -~14305~^~1400~^~Malt beverage, includes non-alcoholic beer~^~MALT BEV,INCL NON-ALCOHOLIC BEER~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14309~^~1400~^~Beverages, OVALTINE, Classic Malt powder~^~BEVERAGES,OVALTINE,CLASSIC MALT PDR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14310~^~1400~^~Beverages, Malted drink mix, natural, with added nutrients, powder, prepared with whole milk~^~BEVERA,MALTED DRK MIX,NAT,W/ ADD NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14311~^~1400~^~Beverages, Malted drink mix, natural, powder, dairy based.~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,DAIRY BASED.~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14312~^~1400~^~Beverages, Malted drink mix, natural, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14315~^~1400~^~Beverages, OVALTINE, chocolate malt powder~^~BEVERAGES,OVALTINE,CHOC MALT PDR~^^~Ovaltine~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14316~^~1400~^~Beverages, Malted drink mix, chocolate, with added nutrients, powder, prepared with whole milk~^~BEVERAG,MALT DRK MIX,CHOC,W/ ADDED NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14317~^~1400~^~Beverages, malted drink mix, chocolate, powder~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14318~^~1400~^~Beverages, Malted drink mix, chocolate, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14323~^~1400~^~Beverages, orange drink, canned, with added vitamin C~^~BEVERAGES,ORANGE DRK,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14327~^~1400~^~Beverages, orange and apricot juice drink, canned~^~BEVERAGES,ORANGE & APRICOT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14334~^~1400~^~Beverages, pineapple and grapefruit juice drink, canned~^~BEVERAGES,PNAPPL & GRAPEFRUIT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14341~^~1400~^~Beverages, pineapple and orange juice drink, canned~^~BEVERAGES,PNAPPL & ORANGE JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14347~^~1400~^~Shake, fast food, vanilla~^~SHAKE,FAST FOOD,VANILLA~^^^~Y~^^0^^6.38^4.27^8.80^3.90 -~14350~^~1400~^~Strawberry-flavor beverage mix, powder~^~STRAWBERRY-FLAVOR BEV MIX,PDR~^^^~Y~^^0^^6.25^3.90^8.37^3.90 -~14351~^~1400~^~Beverages, Strawberry-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,STRAWBERRY-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14352~^~1400~^~Beverages, tea, black, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14353~^~1400~^~Beverages, tea, instant, decaffeinated, unsweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14355~^~1400~^~Beverages, tea, black, brewed, prepared with tap water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14356~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, diet~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,DIET~^^^~Y~^^0^^6.25^2.44^8.37^3.80 -~14357~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, sweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,SWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~14366~^~1400~^~Beverages, tea, instant, unsweetened, powder~^~BEVERAGES,TEA,INST,UNSWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14367~^~1400~^~Beverages, tea, instant, unsweetened, prepared with water~^~BEVERAGES,TEA,INST,UNSWTND,PREP W/ H2O~^^^~Y~^^0^^0.00^^^ -~14368~^~1400~^~Beverages, tea, instant, lemon, unsweetened~^~BEVERAGES,TEA,INST,LEMON,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14370~^~1400~^~Beverages, tea, instant, lemon, sweetened, powder~^~BEVERAGES,TEA,INST,LEMON,SWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14371~^~1400~^~Beverages, tea, instant, lemon, sweetened, prepared with water~^~BEVERAGES,TEA,INST,LEMON,SWTND,PREP W/ H2O~^^^^^0^^0.00^^^ -~14375~^~1400~^~Beverages, tea, instant, sweetened with sodium saccharin, lemon-flavored, powder~^~BEVERAGES,TEA,INST,SWTND W/ NA SACCHARIN,LEMON-FLAVORED,PDR~^^^^^0^^6.25^2.44^8.37^3.80 -~14376~^~1400~^~Beverages, tea, instant, lemon, diet~^~BEVERAGES,TEA,INST,LEMON,DIET~^^^~Y~^^0^^0.00^^^ -~14381~^~1400~^~Beverages, tea, herb, other than chamomile, brewed~^~BEVERAGES,TEA,HERB,OTHER THAN CHAMOMILE,BREWED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14384~^~1400~^~Beverages, water, bottled, PERRIER~^~BEVERAGES,H2O,BTLD,PERRIER~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14385~^~1400~^~Beverages, water, bottled, POLAND SPRING~^~BEVERAGES,H2O,BTLD,POLAND SPRING~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14390~^~1400~^~Beverages, cocoa mix, with aspartame, powder, prepared with water~^~BEVERAGES,COCOA MIX,W/ ASPRT,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14400~^~1400~^~Beverages, carbonated, cola, fast-food cola~^~BEVERAGES,CARB,COLA,FAST-FOOD COLA~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14405~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14406~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14407~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14408~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder, prepared with water~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR,PREP W/ H2O~^^^^^0^^^^^ -~14409~^~1400~^~Beverages, Orange-flavor drink, breakfast type, low calorie, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,LO CAL,PDR~^^^^^0^^^^^ -~14411~^~1400~^~Beverages, water, tap, drinking~^~BEVERAGES,H2O,TAP,DRINKING~^^^~Y~^^0^^^^^ -~14412~^~1400~^~Beverages, water, tap, well~^~BEVERAGES,H2O,TAP,WELL~^^^^^0^^6.25^0.00^0.00^0.00 -~14414~^~1400~^~Alcoholic beverage, liqueur, coffee, 53 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,53 PROOF~^^^~Y~^^0^^6.25^3.47^8.37^3.90 -~14415~^~1400~^~Alcoholic beverage, liqueur, coffee with cream, 34 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE W/ CRM,34 PROOF~^^^~Y~^^0^^6.38^4.20^8.80^3.90 -~14416~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, contains caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14421~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder, prepared with whole milk~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14422~^~1400~^~Beverages, Dairy drink mix, chocolate, reduced calorie, with low-calorie sweeteners, powder~^~BEV,DAIRY DRK MIX,CHOC,RED CAL,W/ LOW-CAL SWEETENERS,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14423~^~1400~^~Beverages, dairy drink mix, chocolate, reduced calorie, with aspartame, powder, prepared with water and ice~^~BEVE,DARY DRK MIX,CHC,RED CAL,W/ ASPRT,PDR,PREP W/ H2O & ICE~^^^^^0^^0.00^^^ -~14424~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate.~^~BEV,ORANGE-FLAVO DRK,BRKFST TYPE,W/ PULP,FRZ CON. NOT MANUF.~^^^^^0^^6.25^3.36^8.37^3.90 -~14425~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate, prepared with water~^~BEVE,ORANGE-FLAV DRK,BRKFST TYPE,W/ PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14426~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate~^~BEVERAGES,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14427~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate, prepared with water~^~BEV,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14428~^~1400~^~Beverages, shake, fast food, strawberry~^~BEVERAGES,SHAKE,FAST FD,STRAWBERRY~^^^^^0^^6.38^4.27^8.80^3.90 -~14429~^~1400~^~Beverages, water, tap, municipal~^~BEVERAGES,H2O,TAP,MUNICIPAL~^^^~Y~^^0^^6.25^^^ -~14430~^~1400~^~Cranberry juice cocktail, frozen concentrate~^~CRANBERRY JUC COCKTAIL,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14431~^~1400~^~Cranberry juice cocktail, frozen concentrate, prepared with water~^~CRANBERRY JUC COCKTAIL,FRZ CONC,PREP W/ H2O~^^^^^0^^^^^ -~14432~^~1400~^~Beverages, water, bottled, non-carbonated, DANNON~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON~^^~The Dannon Company, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14433~^~1400~^~Beverages, water, bottled, non-carbonated, PEPSI, AQUAFINA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,PEPSI,AQUAFINA~^^~Pepsi-Cola North America~^^^0^^6.25^4.00^9.00^4.00 -~14434~^~1400~^~Beverages, The COCA-COLA company, DASANI, water, bottled, non-carbonated~^~BEVERAGES,THE COCA-COLA COMP,DASANI,H2O,BTLD,NON-CARBONATED~^^~The Coca-Cola Company~^^^0^^6.25^4.00^9.00^4.00 -~14436~^~1400~^~Beverages, orange breakfast drink, ready-to-drink, with added nutrients~^~BEVERAGES,ORANGE BRKFST DRK,RTD,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14437~^~1400~^~Beverages, water, bottled, non-carbonated, CALISTOGA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CALISTOGA~^^~Nestle Waters North America Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14438~^~1400~^~Beverages, water, bottled, non-carbonated, CRYSTAL GEYSER~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CRYSTAL GEYSER~^^~Crystal Geyser Alpine Spring Water~^^^0^^6.25^4.00^9.00^4.00 -~14439~^~1400~^~Water, bottled, non-carbonated, NAYA~^~WATER,BTLD,NON-CARBONATED,NAYA~^^~NAYA Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14440~^~1400~^~Beverages, DANNON, water, bottled, non-carbonated, with Fluoride~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON FLUORIDE TO GO~^^~DANNON Fluoride To Go~^^^0^^6.25^4.00^9.00^4.00 -~14450~^~1400~^~Beverages, drink mix, QUAKER OATS, GATORADE, orange flavor, powder~^~BEVERAGES,DRK MIX,QUAKER OATS,GATORADE,ORANGE FLAVOR,PDR~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^^^0^^6.25^4.00^9.00^4.00 -~14460~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade, G performance O 2, ready-to-drink.~^~BEVERAGES,PEPSICO QUAKER,GATORADE,G PERFORMANCE O 2,RTD.~^~thirst quencher, Gatorade G02 Perform~^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14461~^~1400~^~Beverages, COCA-COLA, POWERADE, lemon-lime flavored, ready-to-drink~^~BEVERAGES,COCA-COLA,POWERADE,LEMON-LIME FLAV,RTD~^~thirst quencher~^~The Coca-Cola Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14462~^~1400~^~Beverages, Propel Zero, fruit-flavored, non-carbonated~^~BEVERAGES,PROPEL ZERO,FRUIT-FLAVORED,NON-CARBONATED~^~thirst quencher, sport drink~^^~Y~^^0^^^^^ -~14475~^~1400~^~Beverages, ARIZONA, tea, ready-to-drink, lemon~^~BEVERAGES,ARIZONA,TEA,RTD,LEMON~^^~Arizona Beverage Co.~^^^0^^6.25^4.00^9.00^4.00 -~14476~^~1400~^~Beverages, LIPTON BRISK, tea, black, ready-to-drink, lemon~^~BEVERAGES,LIPTON BRISK,TEA,BLACK,RTD,LEMON~^^~Lipton~^^^0^^6.25^4.00^9.00^4.00 -~14530~^~1400~^~Whiskey sour mix, bottled, with added potassium and sodium~^~WHISKEY SOUR MIX,BTLD,W/ K&NA~^^^^^0^^6.25^3.40^8.40^3.90 -~14531~^~1400~^~Alcoholic beverage, whiskey sour~^~ALCOHOLIC BEV,WHISKEY SOUR~^^^^^0^^0.00^^^ -~14532~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 94 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 94 PROOF~^^^^^0^^6.25^^^4.12 -~14533~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 100 proof~^~ALCOHOLIC BEV DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 100PROOF~^^^^^0^^6.25^^^4.12 -~14534~^~1400~^~Alcoholic beverage, liqueur, coffee, 63 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,63 PROOF~^^^^^0^^6.25^3.47^8.37^3.90 -~14536~^~1400~^~Alcoholic beverage, wine, dessert, dry~^~ALCOHOLIC BEV,WINE,DSSRT,DRY~^^^^^0^^6.25^3.36^8.37^3.92 -~14537~^~1400~^~Carbonated beverage, low calorie, other than cola or pepper, with sodium saccharin, without caffeine~^~CARBONATED BEV,LOCAL,OTHR THAN COLA OR PEP,W/ NA SAC,WO/ CAF~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14538~^~1400~^~Beverages, Cocoa mix, low calorie, powder, with added calcium, phosphorus, aspartame, without added sodium or vitamin A~^~BEVE,COCA MIX,LO CAL,PDR,W/ ADD CA,P,ASPRT,WO/ ADD NA, VIT A~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14541~^~1400~^~Beverages, fruit punch-flavor drink, powder, without added sodium, prepared with water~^~BEVERAGE,FRUIT PUNCH-FLAVOR DRK,PDR,WO/ ADDED NA,PREP W/ H2O~^^^^^0^^0.00^^^ -~14542~^~1400~^~Lemonade, frozen concentrate, pink~^~LEMONADE,FRZ CONC,PINK~^^^^^0^^6.25^3.36^8.37^3.80 -~14543~^~1400~^~Beverages, lemonade, frozen concentrate, pink, prepared with water~^~BEVERAGES,LEMONADE,FRZ CONC,PINK,PREP W/ H2O~^^^^^0^^0.00^^^ -~14544~^~1400~^~Beverages, tea, black, brewed, prepared with distilled water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ DISTILLED H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~14545~^~1400~^~Beverages, tea, herb, brewed, chamomile~^~BEVERAGES,TEA,HERB,BREWED,CHAMOMILE~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14548~^~1400~^~Beverages, tea, instant, lemon, with added ascorbic acid~^~BEVERAGES,TEA,INST,LEMON,W/ ADDED VIT C~^^^^^0^^6.25^2.44^8.37^3.90 -~14550~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 86 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 86 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14551~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 90 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 90 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14552~^~1400~^~Carbonated beverage, chocolate-flavored soda~^~CARBONATED BEV,CHOCOLATE-FLAVORED SODA~^~soft drink, pop~^^~Y~^^0^^^^^ -~14553~^~1400~^~Beverages, Wine, non-alcoholic~^~BEVERAGES,WINE,NON-ALCOHOLIC~^^^~Y~^^0^^^^^ -~14555~^~1400~^~Water, bottled, generic~^~WATER,BTLD,GENERIC~^^^~Y~^^0^^^^^ -~14557~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients~^~BEVERAGE,CHOCOLATE-FLAVOR BEV MIX FOR MILK,PDR,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14558~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients, prepared with whole milk~^~BEV,CHOCO-FLA BEV MIX , MLK,PDR,W/ ADD NUTR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14559~^~1400~^~Beverages, water, bottled, non-carbonated, EVIAN~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,EVIAN~^^~S.A. Evian Co.~^^^0^^6.25^0.00^0.00^0.00 -~14599~^~1400~^~Beverages, Powerade Zero Ion4, calorie-free, assorted flavors~^~BEVERAGES,POWERADE ZERO ION4,CALORIE-FREE,ASSORTED FLAVORS~^^^~Y~^^0^^^^^ -~14601~^~1400~^~Beverages, WENDY'S, tea, ready-to-drink, unsweetened~^~BEVERAGES,WENDY'S,TEA,RTD,UNSWTND~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14602~^~1400~^~Alcoholic Beverage, wine, table, red, Merlot~^~ALCOHOLIC BEV,WINE,TABLE,RED,MERLOT~^^^^^0^^6.25^3.36^8.37^3.92 -~14604~^~1400~^~Water, non-carbonated, bottles, natural fruit flavors, sweetened with low calorie sweetener~^~WATER,NON-CARBONATED,FRUIT FLAVORS,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^^^^ -~14605~^~1400~^~Beverages, Water with added vitamins and minerals, bottles, sweetened, assorted fruit flavors~^~BEV,H2O W/ ADDED VIT & MIN,BOTTLES,SWTND,AST FRUIT FLAVORS~^^^~Y~^^0^^^^^ -~14607~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14608~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14609~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14610~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14611~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14612~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14613~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Guava Passion Fruit~^~BEVERAGES,V8 SPLASH JUC DRINKS,GUAVA PASSION FRUIT~^^~Campbell Soup Co.~^^^0^^^^^ -~14614~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Mango Peach~^~BEVERAGES,V8 SPLASH JUC DRINKS,MANGO PEACH~^^~Campbell Soup Co.~^^^0^^^^^ -~14615~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orange Pineapple~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORANGE PNAPPL~^^~Campbell Soup Co.~^^^0^^^^^ -~14616~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orchard Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORCHARD BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14617~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Banana~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14618~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14619~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14620~^~1400~^~Beverages, V8 V-FUSION Juices, Peach Mango~^~BEVERAGES,V8 V-FUSION JUICES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14621~^~1400~^~Beverages, V8 V-FUSION Juices, Strawberry Banana~^~BEVERAGES,V8 V-FUSION JUICES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14622~^~1400~^~Beverages, V8 V-FUSION Juices, Tropical~^~BEVERAGES,V8 V-FUSION JUICES,TROPICAL~^^~Campbell Soup Co.~^^^0^^^^^ -~14623~^~1400~^~Beverages, V8 V- FUSION Juices, Acai Berry~^~BEVERAGES,V8 V- FUSION JUICES,ACAI BERRY~^^~Campbell Soup Co.~^^^0^^^^^ -~14625~^~1400~^~Beverages, Energy drink, AMP~^~BEVERAGES,ENERGY DRK,AMP~^^~Pepsi-Cola North America~^~Y~^^0^^^^^ -~14626~^~1400~^~Beverages, Energy drink, FULL THROTTLE~^~BEVERAGES,ENERGY DRK,FULL THROTTLE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14627~^~1400~^~Beverages, Energy Drink, Monster, fortified with vitamins C, B2, B3, B6, B12~^~BEVERAGES,ENERGY DRK,MONSTER,FORT W/ VITAMINS C,B2,B3,B6,B12~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14628~^~1400~^~Beverages, Energy drink, AMP, sugar free~^~BEVERAGES,ENERGY DRK,AMP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14629~^~1400~^~Beverages, Energy drink, ROCKSTAR~^~BEVERAGES,ENERGY DRK,ROCKSTAR~^^~Rockstar, Inc.~^~Y~^^0^^^^^ -~14630~^~1400~^~Beverages, Energy drink, ROCKSTAR, sugar free~^~BEVERAGES,ENERGY DRK,ROCKSTAR,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14632~^~1400~^~Beverages, Meal supplement drink, canned, peanut flavor~^~BEVERAGES,MEAL SUPP DRK,CND,PNUT FLAVOR~^^^^^0^^6.25^^^ -~14633~^~1400~^~Beverages, Vegetable and fruit juice drink, reduced calorie, with low-calorie sweetener, added vitamin C~^~BEVER,VEG & FRUIT JUC DRK,RED CAL,W/ LOW-CAL SWTNR,ADD VIT C~^^^~Y~^^0^^^^^ -~14634~^~1400~^~Beverages, milk beverage, reduced fat, flavored and sweetened, Ready-to-drink, added calcium, vitamin A and vitamin D~^~BEV,MILK BEV,RED FAT,FLAV & SWTND,RTD,ADDED CA,VIT A & D~^~Nesquik ready-to-drink~^^~Y~^^0^^6.25^^^ -~14635~^~1400~^~Beverages, vegetable and fruit juice blend, 100% juice, with added vitamins A, C, E~^~BEVERAGES,VEG & FRUIT JUC BLEND,W/ ADDED VITAMINS A,C,E~^~includes V8 V-fusion juices~^^~Y~^^0^^^^^ -~14636~^~1400~^~Beverages, fruit juice drink, reduced sugar, with vitamin E added~^~BEVERAGES,FRUIT JUC DRK,RED SUGAR,W/ VITAMIN E ADDED~^~includes Capri Sun~^^~Y~^^0^^^3.36^8.37^3.80 -~14637~^~1400~^~Water, with corn syrup and/or sugar and low calorie sweetener, fruit flavored~^~WATER,W/ CORN SYRUP AND/OR SUGAR & LO CAL SWTNR,FRUIT FLAV~^~includes Caprisun Roarin' Waters~^^~Y~^^0^^6.25^^^ -~14638~^~1400~^~Beverages, Horchata, as served in restaurant~^~BEVERAGES,HORCHATA,AS SERVED IN RESTAURANT~^~Latino food~^^^^0^^^^^ -~14639~^~1400~^~Beverages, rice milk, unsweetened~^~BEVERAGES,RICE MILK,UNSWTND~^~ricemilk, rice milk~^^~Y~^^0^^^^^ -~14640~^~1400~^~Beverages, Energy drink, VAULT, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14641~^~1400~^~Beverages, Energy drink, VAULT Zero, sugar-free, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT ZERO,SUGAR-FREE,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14644~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade G2, low calorie~^~BEVERAGES,PEPSICO QUAKER,GATORADE G2,LO CAL~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^^^^ -~14645~^~1400~^~Beverages, Fruit flavored drink, less than 3% juice, not fortified with vitamin C~^~BEVERAGES,FRUIT FLAV DRK,LESS THAN 3% JUC,NOT FORT W/ VIT C~^^^~Y~^^0^^^^^ -~14646~^~1400~^~Beverages, Fruit flavored drink containing less than 3% fruit juice, with high vitamin C~^~BEV,FRUIT FLAV DRK CONTAINING , 3% FRUIT JUC,W/ HI VIT C~^^^~Y~^^0^^^^^ -~14647~^~1400~^~Beverages, Fruit flavored drink, reduced sugar, greater than 3% fruit juice, high vitamin C, added calcium~^~BEV,FRUIT FLAV DRK,RED SUGAR, > 3% FRUIT JUC,HI VIT C,ADD CA~^^^^^0^^^^^ -~14648~^~1400~^~Beverages, fruit juice drink, greater than 3% fruit juice, high vitamin C and added thiamin~^~BEV,FRUIT JUC DRK, MORE 3% FRUIT JUC,HI VIT C & ADD THIAMIN~^^^~Y~^^0^^^^^ -~14649~^~1400~^~Beverages, tea, hibiscus, brewed~^~BEVERAGES,TEA,HIBISCUS,BREWED~^^^~Y~^^0^^^^^ -~14651~^~1400~^~Beverages, fruit juice drink, greater than 3% juice, high vitamin C~^~BEVERAGES,FRUIT JUC DRK,GREATER THAN 3% JUC,HI VIT C~^^^~Y~^^0^^^^^ -~14654~^~1400~^~Beverages, nutritional shake mix, high protein, powder~^~BEVERAGES,NUTRITIONAL SHAKE MIX,HI PROT,PDR~^^^~Y~^^0^^^^^ -~15001~^~1500~^~Fish, anchovy, european, raw~^~ANCHOVY,EUROPEAN,RAW~^^^^^0^~Engraulis encrasicholus (L.)~^6.25^4.27^9.02^3.87 -~15002~^~1500~^~Fish, anchovy, european, canned in oil, drained solids~^~ANCHOVY,EUROPEAN,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^8.92^3.87 -~15003~^~1500~^~Fish, bass, fresh water, mixed species, raw~^~BASS,FRSH H2O,MXD SP,RAW~^^^^^0^~Percichthyidae and Centrarchidae~^6.25^4.27^9.02^3.87 -~15004~^~1500~^~Fish, bass, striped, raw~^~BASS,STRIPED,RAW~^^^^^0^~Morone saxatilis (Walbaum)~^6.25^4.27^9.02^3.87 -~15005~^~1500~^~Fish, bluefish, raw~^~BLUEFISH,RAW~^^^^^0^~Pomatomus saltatrix (L.)~^6.25^4.27^9.02^3.87 -~15006~^~1500~^~Fish, burbot, raw~^~BURBOT,RAW~^^^^^0^~Lota lota (L.)~^6.25^4.27^9.02^3.87 -~15007~^~1500~^~Fish, butterfish, raw~^~BUTTERFISH,RAW~^^^^^0^~Peprilus triacanthus (Peck)~^6.25^4.27^9.02^3.87 -~15008~^~1500~^~Fish, carp, raw~^~CARP,RAW~^^^~Y~^^0^~Cyprinus carpio (L.)~^6.25^4.27^9.02^3.87 -~15009~^~1500~^~Fish, carp, cooked, dry heat~^~CARP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15010~^~1500~^~Fish, catfish, channel, wild, raw~^~CATFISH,CHANNEL,WILD,RAW~^^^^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15011~^~1500~^~Fish, catfish, channel, cooked, breaded and fried~^~CATFISH,CHANNEL,CKD,BREADED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15012~^~1500~^~Fish, caviar, black and red, granular~^~CAVIAR,BLACK&RED,GRANULAR~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15013~^~1500~^~Fish, cisco, raw~^~CISCO,RAW~^^^^^0^~Coregonus artedi Lesueur~^6.25^4.27^9.02^3.87 -~15014~^~1500~^~Fish, cisco, smoked~^~CISCO,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15015~^~1500~^~Fish, cod, Atlantic, raw~^~COD,ATLANTIC,RAW~^^^~Y~^^0^~Gadus morhua (L.)~^6.25^4.27^9.02^3.87 -~15016~^~1500~^~Fish, cod, Atlantic, cooked, dry heat~^~COD,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15017~^~1500~^~Fish, cod, Atlantic, canned, solids and liquid~^~COD,ATLANTIC,CND,SOL&LIQ~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15018~^~1500~^~Fish, cod, Atlantic, dried and salted~^~COD,ATLANTIC,DRIED&SALTED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15019~^~1500~^~Fish, cod, Pacific, raw (may have been previously frozen)~^~FISH,COD,PACIFIC,RAW (MAY HAVE BEEN PREVIOUSLY FROZEN)~^^^~Y~^^0^~Gadus macrocephalus Tilesius~^6.25^4.27^9.02^3.87 -~15020~^~1500~^~Fish, croaker, Atlantic, raw~^~CROAKER,ATLANTIC,RAW~^^^~Y~^^0^~Micropogonias undulatus (L.)~^6.25^4.27^9.02^3.87 -~15021~^~1500~^~Fish, croaker, Atlantic, cooked, breaded and fried~^~CROAKER,ATLANTIC,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^9.02^3.87 -~15022~^~1500~^~Fish, cusk, raw~^~CUSK,RAW~^^^^^0^~Brosme brosme (Muller)~^6.25^4.27^9.02^3.87 -~15023~^~1500~^~Fish, mahimahi, raw~^~FISH,MAHIMAHI,RAW~^^^^^0^~Coryphaena hippurus (L.)~^6.25^4.27^9.02^3.87 -~15024~^~1500~^~Fish, drum, freshwater, raw~^~DRUM,FRESHWATER,RAW~^^^^^0^~Aplodinotus grunniens Rafinesque~^6.25^4.27^9.02^3.87 -~15025~^~1500~^~Fish, eel, mixed species, raw~^~EEL,MIXED SPECIES,RAW~^^^~Y~^^0^~Anguilla spp.~^6.25^4.27^9.02^3.87 -~15026~^~1500~^~Fish, eel, mixed species, cooked, dry heat~^~EEL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15027~^~1500~^~Fish, fish sticks, frozen, prepared~^~FISH,FISH STKS,FRZ,PREP~^^^~Y~^^0^^6.10^4.20^8.94^3.97 -~15028~^~1500~^~Fish, flatfish (flounder and sole species), raw~^~FLATFISH (FLOUNDER&SOLE SP),RAW~^^^~Y~^^0^~Bothidae and Pleuronectidae~^6.25^4.27^9.02^3.87 -~15029~^~1500~^~Fish, flatfish (flounder and sole species), cooked, dry heat~^~FLATFISH (FLOUNDER&SOLE SP),CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15030~^~1500~^~Fish, gefiltefish, commercial, sweet recipe~^~GEFILTEFISH,COMM,SWT RECIPE~^^^^^0^^6.25^4.27^9.02^4.00 -~15031~^~1500~^~Fish, grouper, mixed species, raw~^~GROUPER,MIXED SPECIES,RAW~^^^^^0^~Epinephelus spp.~^6.25^4.27^9.02^3.87 -~15032~^~1500~^~Fish, grouper, mixed species, cooked, dry heat~^~GROUPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15033~^~1500~^~Fish, haddock, raw~^~HADDOCK,RAW~^^^~Y~^^0^~Melanogrammus aeglefinus (L.)~^6.25^4.27^9.02^3.87 -~15034~^~1500~^~Fish, haddock, cooked, dry heat~^~HADDOCK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15035~^~1500~^~Fish, haddock, smoked~^~HADDOCK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15036~^~1500~^~Fish, halibut, Atlantic and Pacific, raw~^~HALIBUT,ATLANTIC&PACIFIC,RAW~^^^~Y~^^0^~Hippoglossus hippoglossus (L.) and H. stenolepis Schmidt~^6.25^4.27^9.02^3.87 -~15037~^~1500~^~Fish, halibut, Atlantic and Pacific, cooked, dry heat~^~HALIBUT,ATLANTIC&PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15038~^~1500~^~Fish, halibut, Greenland, raw~^~HALIBUT,GREENLAND,RAW~^^^~Y~^^0^~Reinhardtius hippoglossoides (Walbaum)~^6.25^4.27^9.02^3.87 -~15039~^~1500~^~Fish, herring, Atlantic, raw~^~HERRING,ATLANTIC,RAW~^^^~Y~^^0^~Clupea harengus harengus (L.)~^6.25^4.27^9.02^3.87 -~15040~^~1500~^~Fish, herring, Atlantic, cooked, dry heat~^~HERRING,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15041~^~1500~^~Fish, herring, Atlantic, pickled~^~HERRING,ATLANTIC,PICKLED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15042~^~1500~^~Fish, herring, Atlantic, kippered~^~HERRING,ATLANTIC,KIPPERED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15043~^~1500~^~Fish, herring, Pacific, raw~^~HERRING,PACIFIC,RAW~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^4.27^9.02^3.87 -~15044~^~1500~^~Fish, ling, raw~^~LING,RAW~^^^^^0^~Molva molva (L.)~^6.25^4.27^9.02^3.87 -~15045~^~1500~^~Fish, lingcod, raw~^~LINGCOD,RAW~^^^^^0^~Ophiodon elongatus Girard~^6.25^4.27^9.02^3.87 -~15046~^~1500~^~Fish, mackerel, Atlantic, raw~^~MACKEREL,ATLANTIC,RAW~^^^~Y~^^0^~Scomber scombrus L.~^6.25^4.27^9.02^3.87 -~15047~^~1500~^~Fish, mackerel, Atlantic, cooked, dry heat~^~MACKEREL,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15048~^~1500~^~Fish, mackerel, jack, canned, drained solids~^~MACKEREL,JACK,CND,DRND SOL~^^^~Y~^^0^~Trachurus symmetricus (Ayers)~^6.25^4.27^9.02^3.87 -~15049~^~1500~^~Fish, mackerel, king, raw~^~MACKEREL,KING,RAW~^^^^^0^~Scombermorus cavalla (Cuvier)~^6.25^4.27^9.02^3.87 -~15050~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, raw~^~MACKEREL,PACIFIC&JACK,MXD SP,RAW~^^^~Y~^^0^~Scomber spp. and Trachurus spp.~^6.25^4.27^9.02^3.87 -~15051~^~1500~^~Fish, mackerel, spanish, raw~^~MACKEREL,SPANISH,RAW~^^^^^0^~Scombermorus maculatus (Mitchill)~^6.25^4.27^9.02^3.87 -~15052~^~1500~^~Fish, mackerel, spanish, cooked, dry heat~^~MACKEREL,SPANISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15053~^~1500~^~Fish, milkfish, raw~^~MILKFISH,RAW~^^^^^0^~Chanos chanos (Forskaal)~^6.25^4.27^9.02^3.87 -~15054~^~1500~^~Fish, monkfish, raw~^~MONKFISH,RAW~^^^^^0^~Lophius piscatorius L.~^6.25^4.27^9.02^3.87 -~15055~^~1500~^~Fish, mullet, striped, raw~^~MULLET,STRIPED,RAW~^^^~Y~^^0^~Mugil cephalus L.~^6.25^4.27^9.02^3.87 -~15056~^~1500~^~Fish, mullet, striped, cooked, dry heat~^~MULLET,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15057~^~1500~^~Fish, ocean perch, Atlantic, raw~^~OCEAN PERCH,ATLANTIC,RAW~^^^~Y~^^0^~Sebastes marinus L.~^6.25^4.27^9.02^3.87 -~15058~^~1500~^~Fish, ocean perch, Atlantic, cooked, dry heat~^~OCEAN PERCH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15059~^~1500~^~Fish, pout, ocean, raw~^~POUT,OCEAN,RAW~^^^^^0^~Macrozoarces americanus (Schneider)~^6.25^4.27^9.02^3.87 -~15060~^~1500~^~Fish, perch, mixed species, raw~^~PERCH,MIXED SPECIES,RAW~^^^~Y~^^0^~Morone americana Gmelin and Perca flavescens (Mitchill)~^6.25^4.27^9.02^3.87 -~15061~^~1500~^~Fish, perch, mixed species, cooked, dry heat~^~PERCH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15062~^~1500~^~Fish, pike, northern, raw~^~PIKE,NORTHERN,RAW~^^^~Y~^^0^~Esox lucius L.~^6.25^4.27^9.02^3.87 -~15063~^~1500~^~Fish, pike, northern, cooked, dry heat~^~PIKE,NORTHERN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15064~^~1500~^~Fish, pike, walleye, raw~^~PIKE,WALLEYE,RAW~^^^^^0^~Stizostedion vitreum vitreum (Mitchill)~^6.25^4.27^9.02^3.87 -~15065~^~1500~^~Fish, pollock, Atlantic, raw~^~POLLOCK,ATLANTIC,RAW~^^^^^0^~Pollachius virens L.~^6.25^4.27^9.02^3.87 -~15066~^~1500~^~Fish, pollock, Alaska, raw (may contain additives to retain moisture)~^~POLLOCK,ALASKA,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15067~^~1500~^~Fish, pollock, Alaska, cooked, dry heat (may contain additives to retain moisture)~^~POLLOCK,ALASKA,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~~^6.25^4.27^9.02^3.87 -~15068~^~1500~^~Fish, pompano, florida, raw~^~POMPANO,FLORIDA,RAW~^^^~Y~^^0^~Trachinotus carolinus (L.)~^6.25^4.27^9.02^3.87 -~15069~^~1500~^~Fish, pompano, florida, cooked, dry heat~^~POMPANO,FLORIDA,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15070~^~1500~^~Fish, rockfish, Pacific, mixed species, raw~^~ROCKFISH,PACIFIC,MXD SP,RAW~^^^~Y~^^0^~Sebastes spp.~^6.25^4.27^9.02^3.87 -~15071~^~1500~^~Fish, rockfish, Pacific, mixed species, cooked, dry heat~^~ROCKFISH,PACIFIC,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15072~^~1500~^~Fish, roe, mixed species, raw~^~ROE,MIXED SPECIES,RAW~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15073~^~1500~^~Fish, roughy, orange, raw~^~ROUGHY,ORANGE,RAW~^^^^^0^~Hoplostethus atlanticus~^6.25^4.27^9.02^3.87 -~15074~^~1500~^~Fish, sablefish, raw~^~SABLEFISH,RAW~^^^^^0^~Anoplopoma fimbria (Pallas)~^6.25^4.27^9.02^3.87 -~15075~^~1500~^~Fish, sablefish, smoked~^~SABLEFISH,SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~15076~^~1500~^~Fish, salmon, Atlantic, wild, raw~^~SALMON,ATLANTIC,WILD,RAW~^^^^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15077~^~1500~^~Fish, salmon, chinook, smoked~^~SALMON,CHINOOK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15078~^~1500~^~Fish, salmon, chinook, raw~^~SALMON,CHINOOK,RAW~^^^^^0^~Oncorhynchus tshawytscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15079~^~1500~^~Fish, salmon, chum, raw~^~SALMON,CHUM,RAW~^^^^^0^~Oncorhynchus keta (Walbaum)~^6.25^4.27^9.02^3.87 -~15080~^~1500~^~Fish, salmon, chum, canned, drained solids with bone~^~SALMON,CHUM,DRND SOL W/BONE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15081~^~1500~^~Fish, salmon, coho, wild, raw~^~SALMON,COHO,WILD,RAW~^^^~Y~^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15082~^~1500~^~Fish, salmon, coho, wild, cooked, moist heat~^~SALMON,COHO,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15083~^~1500~^~Fish, salmon, pink, raw~^~SALMON,PINK,RAW~^^^~Y~^^0^~Oncorhynchus gorbuscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15084~^~1500~^~Fish, salmon, pink, canned, total can contents~^~FISH,SALMON,PINK,CND,TOTAL CAN CONTENTS~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15085~^~1500~^~Fish, salmon, sockeye, raw~^~FISH,SALMON,SOCKEYE,RAW~^^^~Y~^^0^^^^^ -~15086~^~1500~^~Fish, salmon, sockeye, cooked, dry heat~^~FISH,SALMON,SOCKEYE,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15087~^~1500~^~Fish, salmon, sockeye, canned, drained solids~^~FISH,SALMON,SOCKEYE,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15088~^~1500~^~Fish, sardine, Atlantic, canned in oil, drained solids with bone~^~SARDINE,ATLANTIC,CND IN OIL,DRND SOL W/BONE~^^^~Y~^^0^~Clupea harengus harengus L.~^6.25^4.27^9.00^3.87 -~15089~^~1500~^~Fish, sardine, Pacific, canned in tomato sauce, drained solids with bone~^~SARDINE,PACIFIC,CND IN TOMATO SAU,DRND SOL W/BONE~^^^~Y~^^0^~Sardinops spp.~^6.25^4.27^9.02^3.70 -~15090~^~1500~^~Fish, scup, raw~^~SCUP,RAW~^^^~Y~^^0^~Stenotomus chrysops L.~^6.25^4.27^9.02^3.87 -~15091~^~1500~^~Fish, sea bass, mixed species, raw~^~SEA BASS,MXD SP,RAW~^^^~Y~^^0^~Centropristes striata L. and Lateolabrax japonicus (Cuvier)~^6.25^4.27^9.02^3.87 -~15092~^~1500~^~Fish, sea bass, mixed species, cooked, dry heat~^~SEA BASS,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15093~^~1500~^~Fish, seatrout, mixed species, raw~^~SEATROUT,MXD SP,RAW~^^^^^0^~Cynoscion spp.~^6.25^4.27^9.02^3.87 -~15094~^~1500~^~Fish, shad, american, raw~^~SHAD,AMERICAN,RAW~^^^~Y~^^0^~Alosa sapidissima (Wilson)~^6.25^4.27^9.02^3.87 -~15095~^~1500~^~Fish, shark, mixed species, raw~^~SHARK,MIXED SPECIES,RAW~^^^~Y~^^0^~Squaliformes~^6.25^4.27^9.02^3.87 -~15096~^~1500~^~Fish, shark, mixed species, cooked, batter-dipped and fried~^~SHARK,MXD SP,CKD,BATTER-DIPPED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15097~^~1500~^~Fish, sheepshead, raw~^~SHEEPSHEAD,RAW~^^^^^0^~Archosargus probatocephalus (Walbaum)~^6.25^4.27^9.02^3.87 -~15098~^~1500~^~Fish, sheepshead, cooked, dry heat~^~SHEEPSHEAD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15099~^~1500~^~Fish, smelt, rainbow, raw~^~SMELT,RAINBOW,RAW~^^^^^0^~Osmerus mordax (Mitchill)~^6.25^4.27^9.02^3.87 -~15100~^~1500~^~Fish, smelt, rainbow, cooked, dry heat~^~SMELT,RAINBOW,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15101~^~1500~^~Fish, snapper, mixed species, raw~^~SNAPPER,MIXED SPECIES,RAW~^^^~Y~^^0^~Lutjanidae~^6.25^4.27^9.02^3.87 -~15102~^~1500~^~Fish, snapper, mixed species, cooked, dry heat~^~SNAPPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15103~^~1500~^~Fish, spot, raw~^~SPOT,RAW~^^^^^0^~Leiostomus xanthuras Lacepede~^6.25^4.27^9.02^3.87 -~15104~^~1500~^~Fish, sturgeon, mixed species, raw~^~STURGEON,MXD SP,RAW~^^^~Y~^^0^~Acipenser spp.~^6.25^4.27^9.02^3.87 -~15105~^~1500~^~Fish, sturgeon, mixed species, cooked, dry heat~^~STURGEON,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15106~^~1500~^~Fish, sturgeon, mixed species, smoked~^~STURGEON,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15107~^~1500~^~Fish, sucker, white, raw~^~SUCKER,WHITE,RAW~^^^^^0^~Catostomus commersoni (Lacepede)~^6.25^4.27^9.02^3.87 -~15108~^~1500~^~Fish, sunfish, pumpkin seed, raw~^~SUNFISH,PUMPKIN SEED,RAW~^^^^^0^~Lepomis gibbosus (L.)~^6.25^4.27^9.02^3.87 -~15109~^~1500~^~Fish, surimi~^~SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15110~^~1500~^~Fish, swordfish, raw~^~SWORDFISH,RAW~^^^~Y~^^0^~Xiphias gladius L.~^6.25^4.27^9.02^3.87 -~15111~^~1500~^~Fish, swordfish, cooked, dry heat~^~SWORDFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15112~^~1500~^~Fish, tilefish, raw~^~TILEFISH,RAW~^^^^^0^~Lopholatilus chamaeleonticeps Goode and Bean~^6.25^4.27^9.02^3.87 -~15113~^~1500~^~Fish, tilefish, cooked, dry heat~^~TILEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15114~^~1500~^~Fish, trout, mixed species, raw~^~TROUT,MIXED SPECIES,RAW~^^^~Y~^^0^~Salmonidae~^6.25^4.27^9.02^3.87 -~15115~^~1500~^~Fish, trout, rainbow, wild, raw~^~TROUT,RAINBOW,WILD,RAW~^^^^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15116~^~1500~^~Fish, trout, rainbow, wild, cooked, dry heat~^~TROUT,RAINBOW,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15117~^~1500~^~Fish, tuna, fresh, bluefin, raw~^~TUNA,FRESH,BLUEFIN,RAW~^^^~Y~^^0^~Thunnus thynnus (L.)~^6.25^4.27^9.02^3.87 -~15118~^~1500~^~Fish, tuna, fresh, bluefin, cooked, dry heat~^~TUNA,FRSH,BLUEFIN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15119~^~1500~^~Fish, tuna, light, canned in oil, drained solids~^~TUNA,LT,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.00^3.87 -~15121~^~1500~^~Fish, tuna, light, canned in water, drained solids (Includes foods for USDA's Food Distribution Program)~^~FISH,TUNA,LT,CND IN H2O,DRND SOL~^^^~Y~^^0^^^^^ -~15123~^~1500~^~Fish, tuna, fresh, skipjack, raw~^~TUNA,FRESH,SKIPJACK,RAW~^^^^^0^~Euthynnus pelamis (L.)~^6.25^4.27^9.02^3.87 -~15124~^~1500~^~Fish, tuna, white, canned in oil, drained solids~^~TUNA,WHITE,CND IN OIL,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15126~^~1500~^~Fish, tuna, white, canned in water, drained solids~^~TUNA,WHITE,CND IN H2O,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15127~^~1500~^~Fish, tuna, fresh, yellowfin, raw~^~TUNA,FRESH,YELLOWFIN,RAW~^^^~Y~^^0^~Thunnus albacares (Bonnaterre)~^6.25^4.27^9.02^3.87 -~15128~^~1500~^~Fish, tuna salad~^~TUNA SALAD~^^^^^0^^6.25^4.27^9.02^3.87 -~15129~^~1500~^~Fish, turbot, european, raw~^~TURBOT,EUROPEAN,RAW~^^^^^0^~Scophthalmus maximus (L.)~^6.25^4.27^9.02^3.87 -~15130~^~1500~^~Fish, whitefish, mixed species, raw~^~WHITEFISH,MXD SP,RAW~^^^~Y~^^0^~Coregonus spp.~^6.25^4.27^9.02^3.87 -~15131~^~1500~^~Fish, whitefish, mixed species, smoked~^~WHITEFISH,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15132~^~1500~^~Fish, whiting, mixed species, raw~^~WHITING,MIXED SPECIES,RAW~^^^~Y~^^0^~Gadidae~^6.25^4.27^9.02^3.87 -~15133~^~1500~^~Fish, whiting, mixed species, cooked, dry heat~^~WHITING,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15134~^~1500~^~Fish, wolffish, Atlantic, raw~^~WOLFFISH,ATLANTIC,RAW~^^^^^0^~Anarhichas lupus (L.)~^6.25^4.27^9.02^3.87 -~15135~^~1500~^~Fish, yellowtail, mixed species, raw~^~YELLOWTAIL,MXD SP,RAW~^^^^^0^~Seriola spp.~^6.25^4.27^9.02^3.87 -~15136~^~1500~^~Crustaceans, crab, alaska king, raw~^~CRAB,ALASKA KING,RAW~^^^^^0^~Paralithodes camtschatica (Tilesius)~^6.25^4.27^9.02^4.11 -~15137~^~1500~^~Crustaceans, crab, alaska king, cooked, moist heat~^~CRAB,ALASKA KING,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15138~^~1500~^~Crustaceans, crab, alaska king, imitation, made from surimi~^~CRAB,ALASKA KING,IMITN,MADE FROM SURIMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15139~^~1500~^~Crustaceans, crab, blue, raw~^~CRAB,BLUE,RAW~^^^^^0^~Callinectes sapidus Rathbun~^6.25^4.27^9.02^4.11 -~15140~^~1500~^~Crustaceans, crab, blue, cooked, moist heat~^~CRAB,BLUE,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15141~^~1500~^~Crustaceans, crab, blue, canned~^~CRAB,BLUE,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15142~^~1500~^~Crustaceans, crab, blue, crab cakes, home recipe~^~CRUSTACEANS,CRAB,BLUE,CRAB CAKES,HOME RECIPE~^^^^^0^^6.25^4.27^8.84^3.68 -~15143~^~1500~^~Crustaceans, crab, dungeness, raw~^~CRAB,DUNGENESS,RAW~^^^^^0^~Cancer magister Dana~^6.25^4.27^9.02^4.11 -~15144~^~1500~^~Crustaceans, crab, queen, raw~^~CRAB,QUEEN,RAW~^^^^^0^~Chionoectes opilio (O. Fabricius)~^6.25^4.27^9.02^4.11 -~15145~^~1500~^~Crustaceans, crayfish, mixed species, wild, raw~^~CRAYFISH,MXD SP,WILD,RAW~^^^~Y~^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15146~^~1500~^~Crustaceans, crayfish, mixed species, wild, cooked, moist heat~^~CRAYFISH,MXD SP,WILD,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15147~^~1500~^~Crustaceans, lobster, northern, raw~^~LOBSTER,NORTHERN,RAW~^^^~Y~^^0^~Homarus americanus Milne-Edwards~^6.25^4.27^9.02^4.11 -~15148~^~1500~^~Crustaceans, lobster, northern, cooked, moist heat~^~LOBSTER,NORTHERN,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15149~^~1500~^~Crustaceans, shrimp, mixed species, raw (may contain additives to retain moisture)~^~SHRIMP,MXD SP,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^~Penaeidae and Pandalidae~^6.25^4.27^9.02^4.11 -~15150~^~1500~^~Crustaceans, shrimp, mixed species, cooked, breaded and fried~^~SHRIMP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.22^4.27^8.84^3.68 -~15151~^~1500~^~Crustaceans, shrimp, mixed species, cooked, moist heat (may contain additives to retain moisture)~^~SHRIMP,MXD SP,CKD (MAY CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15152~^~1500~^~Crustaceans, shrimp, mixed species, canned~^~SHRIMP,MXD SP,CND~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15153~^~1500~^~Crustaceans, shrimp, mixed species, imitation, made from surimi~^~SHRIMP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15154~^~1500~^~Crustaceans, spiny lobster, mixed species, raw~^~SPINY LOBSTER,MXD SP,RAW~^^^^^0^~Jasus spp. and Panulirus spp.~^6.25^4.27^9.02^4.11 -~15155~^~1500~^~Mollusks, abalone, mixed species, raw~^~ABALONE,MIXED SPECIES,RAW~^^^~Y~^^0^~Haliotis spp.~^6.25^4.27^9.02^4.11 -~15156~^~1500~^~Mollusks, abalone, mixed species, cooked, fried~^~ABALONE,MXD SP,CKD,FRIED~^^^^^0^^6.23^4.27^8.84^4.12 -~15157~^~1500~^~Mollusks, clam, mixed species, raw~^~CLAM,MIXED SPECIES,RAW~^^^~Y~^^0^~Lamellibranchia~^6.25^4.27^9.02^4.11 -~15158~^~1500~^~Mollusks, clam, mixed species, cooked, breaded and fried~^~CLAM,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.20^4.27^8.84^4.12 -~15159~^~1500~^~Mollusks, clam, mixed species, cooked, moist heat~^~CLAM,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15160~^~1500~^~Mollusks, clam, mixed species, canned, drained solids~^~CLAM,MXD SP,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15162~^~1500~^~Mollusks, clam, mixed species, canned, liquid~^~CLAM,MXD SP,CND,LIQ~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15163~^~1500~^~Mollusks, cuttlefish, mixed species, raw~^~CUTTLEFISH,MXD SP,RAW~^^^^^0^~Sepiidae~^6.25^4.27^9.02^4.11 -~15164~^~1500~^~Mollusks, mussel, blue, raw~^~MUSSEL,BLUE,RAW~^^^~Y~^^0^~Mytilus edulis L.~^6.25^4.27^9.02^4.11 -~15165~^~1500~^~Mollusks, mussel, blue, cooked, moist heat~^~MUSSEL,BLUE,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15166~^~1500~^~Mollusks, octopus, common, raw~^~OCTOPUS,COMMON,RAW~^^^~Y~^^0^~Octopus vulgaris Lamarck~^6.25^4.27^9.02^4.11 -~15167~^~1500~^~Mollusks, oyster, eastern, wild, raw~^~OYSTER,EASTERN,WILD,RAW~^^^~Y~^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15168~^~1500~^~Mollusks, oyster, eastern, cooked, breaded and fried~^~OYSTER,EASTERN,CKD,BREADED&FRIED~^^^^^0^^6.18^4.27^9.02^4.12 -~15169~^~1500~^~Mollusks, oyster, eastern, wild, cooked, moist heat~^~OYSTER,EASTERN,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15170~^~1500~^~Mollusks, oyster, eastern, canned~^~OYSTER,EASTERN,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15171~^~1500~^~Mollusks, oyster, Pacific, raw~^~OYSTER,PACIFIC,RAW~^^^^^0^~Crassostrea gigas (Thunberg)~^6.25^4.27^9.02^4.11 -~15172~^~1500~^~Mollusks, scallop, mixed species, raw~^~SCALLOP,MIXED SPECIES,RAW~^^^~Y~^^0^~Pectinidae~^6.25^4.27^9.02^4.11 -~15173~^~1500~^~Mollusks, scallop, mixed species, cooked, breaded and fried~^~SCALLOP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^8.84^4.12 -~15174~^~1500~^~Mollusks, scallop, mixed species, imitation, made from surimi~^~SCALLOP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15175~^~1500~^~Mollusks, squid, mixed species, raw~^~SQUID,MIXED SPECIES,RAW~^^^~Y~^^0^~Loligoidae and Ommastrephidae~^6.25^4.27^9.02^4.11 -~15176~^~1500~^~Mollusks, squid, mixed species, cooked, fried~^~SQUID,MXD SP,CKD,FRIED~^^^^^0^^6.25^4.27^8.84^4.12 -~15177~^~1500~^~Mollusks, whelk, unspecified, raw~^~WHELK,UNSPECIFIED,RAW~^^^^^0^~Buccinidae~^6.25^4.27^9.02^4.11 -~15178~^~1500~^~Mollusks, whelk, unspecified, cooked, moist heat~^~WHELK,UNSPEC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15179~^~1500~^~Fish, salmon, chinook, smoked, (lox), regular~^~SALMON,CHINOOK,SMOKED,(LOX),REG~^^^^^0^^6.25^4.27^9.02^3.87 -~15180~^~1500~^~Fish, salmon, chum, canned, without salt, drained solids with bone~^~SALMON,CHUM,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15181~^~1500~^~Fish, salmon, pink, canned, without salt, solids with bone and liquid~^~SALMON,PINK,CND,WO/SALT,SOL W/BONE&LIQ~^^^^^0^^6.25^4.27^9.02^3.87 -~15182~^~1500~^~Fish, salmon, sockeye, canned, without salt, drained solids with bone~^~SALMON,SOCKEYE,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15183~^~1500~^~Fish, tuna, light, canned in oil, without salt, drained solids~^~TUNA,LT,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15184~^~1500~^~Fish, tuna, light, canned in water, without salt, drained solids~^~TUNA,LT,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15185~^~1500~^~Fish, tuna, white, canned in oil, without salt, drained solids~^~TUNA,WHITE,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15186~^~1500~^~Fish, tuna, white, canned in water, without salt, drained solids~^~TUNA,WHITE,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15187~^~1500~^~Fish, bass, freshwater, mixed species, cooked, dry heat~^~BASS,FRESHWATER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15188~^~1500~^~Fish, bass, striped, cooked, dry heat~^~BASS,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15189~^~1500~^~Fish, bluefish, cooked, dry heat~^~BLUEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15190~^~1500~^~Fish, burbot, cooked, dry heat~^~BURBOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15191~^~1500~^~Fish, butterfish, cooked, dry heat~^~BUTTERFISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15192~^~1500~^~Fish, cod, Pacific, cooked, dry heat (may contain additives to retain moisture)~^~COD,PACIFIC,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15193~^~1500~^~Fish, cusk, cooked, dry heat~^~CUSK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15194~^~1500~^~Fish, mahimahi, cooked, dry heat~^~FISH,MAHIMAHI,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15195~^~1500~^~Fish, drum, freshwater, cooked, dry heat~^~DRUM,FRESHWATER,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15196~^~1500~^~Fish, halibut, greenland, cooked, dry heat~^~HALIBUT,GREENLAND,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15197~^~1500~^~Fish, herring, Pacific, cooked, dry heat~^~HERRING,PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15198~^~1500~^~Fish, ling, cooked, dry heat~^~LING,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15199~^~1500~^~Fish, lingcod, cooked, dry heat~^~LINGCOD,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15200~^~1500~^~Fish, mackerel, king, cooked, dry heat~^~MACKEREL,KING,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15201~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, cooked, dry heat~^~MACKEREL,PACIFIC&JACK,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15202~^~1500~^~Fish, milkfish, cooked, dry heat~^~MILKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15203~^~1500~^~Fish, monkfish, cooked, dry heat~^~MONKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15204~^~1500~^~Fish, pike, walleye, cooked, dry heat~^~PIKE,WALLEYE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15205~^~1500~^~Fish, pollock, Atlantic, cooked, dry heat~^~POLLOCK,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15206~^~1500~^~Fish, pout, ocean, cooked, dry heat~^~POUT,OCEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15207~^~1500~^~Fish, roe, mixed species, cooked, dry heat~^~ROE,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.36^9.02^3.68 -~15208~^~1500~^~Fish, sablefish, cooked, dry heat~^~SABLEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15209~^~1500~^~Fish, salmon, Atlantic, wild, cooked, dry heat~^~SALMON,ATLANTIC,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15210~^~1500~^~Fish, salmon, chinook, cooked, dry heat~^~SALMON,CHINOOK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15211~^~1500~^~Fish, salmon, chum, cooked, dry heat~^~SALMON,CHUM,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15212~^~1500~^~Fish, salmon, pink, cooked, dry heat~^~SALMON,PINK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15213~^~1500~^~Fish, scup, cooked, dry heat~^~SCUP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15214~^~1500~^~Fish, seatrout, mixed species, cooked, dry heat~^~SEATROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15215~^~1500~^~Fish, shad, american, cooked, dry heat~^~SHAD,AMERICAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15216~^~1500~^~Fish, spot, cooked, dry heat~^~SPOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15217~^~1500~^~Fish, sucker, white, cooked, dry heat~^~SUCKER,WHITE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15218~^~1500~^~Fish, sunfish, pumpkin seed, cooked, dry heat~^~SUNFISH,PUMPKIN SD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15219~^~1500~^~Fish, trout, mixed species, cooked, dry heat~^~TROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15220~^~1500~^~Fish, tuna, skipjack, fresh, cooked, dry heat~^~TUNA,SKIPJACK,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15221~^~1500~^~Fish, tuna, yellowfin, fresh, cooked, dry heat~^~TUNA,YELLOWFIN,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15222~^~1500~^~Fish, turbot, european, cooked, dry heat~^~TURBOT,EUROPEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15223~^~1500~^~Fish, whitefish, mixed species, cooked, dry heat~^~WHITEFISH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15224~^~1500~^~Fish, wolffish, Atlantic, cooked, dry heat~^~WOLFFISH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15225~^~1500~^~Fish, yellowtail, mixed species, cooked, dry heat~^~YELLOWTAIL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15226~^~1500~^~Crustaceans, crab, dungeness, cooked, moist heat~^~CRAB,DUNGENESS,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15227~^~1500~^~Crustaceans, crab, queen, cooked, moist heat~^~CRAB,QUEEN,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15228~^~1500~^~Crustaceans, spiny lobster, mixed species, cooked, moist heat~^~SPINY LOBSTER,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15229~^~1500~^~Mollusks, cuttlefish, mixed species, cooked, moist heat~^~CUTTLEFISH,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15230~^~1500~^~Mollusks, octopus, common, cooked, moist heat~^~OCTOPUS,COMMON,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15231~^~1500~^~Mollusks, oyster, Pacific, cooked, moist heat~^~OYSTER,PACIFIC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15232~^~1500~^~Fish, roughy, orange, cooked, dry heat~^~ROUGHY,ORANGE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15233~^~1500~^~Fish, catfish, channel, wild, cooked, dry heat~^~CATFISH,CHANNEL,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15234~^~1500~^~Fish, catfish, channel, farmed, raw~^~CATFISH,CHANNEL,FARMED,RAW~^^^~Y~^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15235~^~1500~^~Fish, catfish, channel, farmed, cooked, dry heat~^~CATFISH,CHANNEL,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15236~^~1500~^~Fish, salmon, Atlantic, farmed, raw~^~SALMON,ATLANTIC,FARMED,RAW~^^^~Y~^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15237~^~1500~^~Fish, salmon, Atlantic, farmed, cooked, dry heat~^~SALMON,ATLANTIC,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15238~^~1500~^~Fish, salmon, coho, farmed, raw~^~SALMON,COHO,FARMED,RAW~^^^^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15239~^~1500~^~Fish, salmon, coho, farmed, cooked, dry heat~^~SALMON,COHO,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15240~^~1500~^~Fish, trout, rainbow, farmed, raw~^~TROUT,RAINBOW,FARMED,RAW~^^^~Y~^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15241~^~1500~^~Fish, trout, rainbow, farmed, cooked, dry heat~^~TROUT,RAINBOW,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15242~^~1500~^~Crustaceans, crayfish, mixed species, farmed, raw~^~CRAYFISH,MXD SP,FARMED,RAW~^^^^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15243~^~1500~^~Crustaceans, crayfish, mixed species, farmed, cooked, moist heat~^~CRAYFISH,MXD SP,FARMED,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15244~^~1500~^~Mollusks, oyster, eastern, wild, cooked, dry heat~^~OYSTER,EASTERN,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15245~^~1500~^~Mollusks, oyster, eastern, farmed, raw~^~OYSTER,EASTERN,FARMED,RAW~^^^^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15246~^~1500~^~Mollusks, oyster, eastern, farmed, cooked, dry heat~^~OYSTER,EASTERN,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15247~^~1500~^~Fish, salmon, coho, wild, cooked, dry heat~^~SALMON,COHO,WILD,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15250~^~1500~^~Mollusks, conch, baked or broiled~^~CONCH,BAKED OR BROILED~^^^^^0^^6.25^^^ -~15251~^~1500~^~Salmon nuggets, breaded, frozen, heated~^~SALMON NUGGETS,BREADED,FRZ,HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15252~^~1500~^~Salmon nuggets, cooked as purchased, unheated~^~SALMON NUGGETS,CKD AS PURCHASED,UNHTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15253~^~1500~^~Salmon, sockeye, canned, total can contents~^~SALMON,SOCKEYE,CND,TOTAL CAN CONTENTS~^^^^^0^^6.25^4.27^9.02^3.87 -~15260~^~1500~^~Fish, salmon, pink, canned, drained solids~^~FISH,SALMON,PINK,CND,DRND SOL~^^^^^0^^^^^ -~15261~^~1500~^~Fish, tilapia, raw~^~FISH,TILAPIA,RAW~^^^~Y~^^0^^^^^ -~15262~^~1500~^~Fish, tilapia, cooked, dry heat~^~FISH,TILAPIA,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15264~^~1500~^~Salmon, sockeye, canned, drained solids, without skin and bones~^~SALMON,SOCKEYE,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15265~^~1500~^~Fish, Salmon, pink, canned, drained solids, without skin and bones~^~FISH,SALMON,PINK,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15266~^~1500~^~Fish, pollock, Alaska, raw~^~FISH,POLLOCK,ALASKA,RAW~^~~^~~^~~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15267~^~1500~^~Fish, pollock, Alaska, cooked~^~FISH,POLLOCK,ALASKA,CKD~^~~^~~^~~^~~^0^~~^6.25^4.27^9.02^3.87 -~15269~^~1500~^~Fish, cod, Pacific, cooked~^~FISH,COD,PACIFIC,CKD~^^^^^0^^^^^ -~15270~^~1500~^~Crustaceans, shrimp, raw~^~CRUSTACEANS,SHRIMP,RAW~^^^^~Tail and shell~^13^^^^^ -~15271~^~1500~^~Crustaceans, shrimp, cooked~^~CRUSTACEANS,SHRIMP,CKD~^^^^~Tail and shell~^17^^^^^ -~15274~^~1500~^~Fish, trout, brook, raw, New York State~^~FISH,TROUT,BROOK,RAW,NEW YORK STATE~^^^^~skin, head, viscera, bones~^53^^^^^ -~16001~^~1600~^~Beans, adzuki, mature seeds, raw~^~BEANS,ADZUKI,MATURE SEEDS,RAW~^^^^^0^~Vigna angularis~^6.25^3.47^8.37^4.07 -~16002~^~1600~^~Beans, adzuki, mature seeds, cooked, boiled, without salt~^~BEANS,ADZUKI,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16003~^~1600~^~Beans, adzuki, mature seeds, canned, sweetened~^~BEANS,ADZUKI,MATURE SEEDS,CND,SWTND~^^^^^0^^6.25^3.47^8.37^4.07 -~16004~^~1600~^~Yokan, prepared from adzuki beans and sugar~^~YOKAN,PREP FROM ADZUKI BNS & SUGAR~^^^^^0^^6.25^3.47^8.37^4.07 -~16005~^~1600~^~Beans, baked, home prepared~^~BEANS,BAKED,HOME PREPARED~^^^^^0^^6.25^^^ -~16006~^~1600~^~Beans, baked, canned, plain or vegetarian~^~BEANS,BKD,CND,PLN OR VEGETARIAN~^^^~Y~^^0^^6.25^4.00^8.40^3.40 -~16007~^~1600~^~Beans, baked, canned, with beef~^~BEANS,BKD,CND,W/BF~^^^^^0^^6.25^4.00^9.00^3.80 -~16008~^~1600~^~Beans, baked, canned, with franks~^~BEANS,BKD,CND,W/FRANKS~^^^~Y~^^0^^6.25^3.90^9.00^3.70 -~16009~^~1600~^~Beans, baked, canned, with pork~^~BEANS,BKD,CND,W/PORK~^^^^^0^^6.25^3.90^8.80^3.60 -~16010~^~1600~^~Beans, baked, canned, with pork and sweet sauce~^~BEANS,BKD,CND,W/PORK&SWT SAU~^^^~Y~^^0^^6.25^3.90^8.90^3.70 -~16011~^~1600~^~Beans, baked, canned, with pork and tomato sauce~^~BEANS,BKD,CND,W/PORK&TOMATO SAU~^^^~Y~^^0^^6.25^4.00^8.80^3.50 -~16014~^~1600~^~Beans, black, mature seeds, raw~^~BEANS,BLACK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16015~^~1600~^~Beans, black, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16016~^~1600~^~Beans, black turtle, mature seeds, raw~^~BEANS,BLACK TURTLE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16017~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16018~^~1600~^~Beans, black turtle, mature seeds, canned~^~BEANS,BLACK TURTLE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16019~^~1600~^~Beans, cranberry (roman), mature seeds, raw~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16020~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, without salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16021~^~1600~^~Beans, cranberry (roman), mature seeds, canned~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16022~^~1600~^~Beans, french, mature seeds, raw~^~BEANS,FRENCH,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16023~^~1600~^~Beans, french, mature seeds, cooked, boiled, without salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16024~^~1600~^~Beans, great northern, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,GREAT NORTHERN,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16025~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, without salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16026~^~1600~^~Beans, great northern, mature seeds, canned~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16027~^~1600~^~Beans, kidney, all types, mature seeds, raw~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16028~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16029~^~1600~^~Beans, kidney, all types, mature seeds, canned~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CND~^^^^^0^^^^^ -~16030~^~1600~^~Beans, kidney, california red, mature seeds, raw~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16031~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16032~^~1600~^~Beans, kidney, red, mature seeds, raw~^~BEANS,KIDNEY,RED,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16033~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16034~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16035~^~1600~^~Beans, kidney, royal red, mature seeds, raw~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16036~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16037~^~1600~^~Beans, navy, mature seeds, raw~^~BEANS,NAVY,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16038~^~1600~^~Beans, navy, mature seeds, cooked, boiled, without salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16039~^~1600~^~Beans, navy, mature seeds, canned~^~BEANS,NAVY,MATURE SEEDS,CND~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16040~^~1600~^~Beans, pink, mature seeds, raw~^~BEANS,PINK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16041~^~1600~^~Beans, pink, mature seeds, cooked, boiled, without salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16042~^~1600~^~Beans, pinto, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,PINTO,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^^^ -~16043~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, without salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16044~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~16045~^~1600~^~Beans, small white, mature seeds, raw~^~BEANS,SML WHITE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16046~^~1600~^~Beans, small white, mature seeds, cooked, boiled, without salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16047~^~1600~^~Beans, yellow, mature seeds, raw~^~BEANS,YEL,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16048~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, without salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16049~^~1600~^~Beans, white, mature seeds, raw~^~BEANS,WHITE,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16050~^~1600~^~Beans, white, mature seeds, cooked, boiled, without salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16051~^~1600~^~Beans, white, mature seeds, canned~^~BEANS,WHITE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16052~^~1600~^~Broadbeans (fava beans), mature seeds, raw~^~BROADBEANS (FAVA BEANS),MATURE SEEDS,RAW~^^^~Y~^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~16053~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, without salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16054~^~1600~^~Broadbeans (fava beans), mature seeds, canned~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16055~^~1600~^~Carob flour~^~CAROB FLOUR~^^^~Y~^^0^~Ceratonia siliqua~^6.25^^^ -~16056~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, raw~^~CHICKPEAS (GARBANZO BNS,BENGAL GM),MATURE SEEDS,RAW~^^^~Y~^^0^~Cicer arietinum~^6.25^3.47^8.37^4.07 -~16057~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, without salt~^~CHICKPEAS ,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16058~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids~^~CHICKPEAS (GARBANZO BNS,BENGAL GRAM),MATURE SDS,CND,SOL&LIQ~^^^^^0^^6.25^3.47^8.37^4.07 -~16059~^~1600~^~Chili with beans, canned~^~CHILI WITH BEANS,CANNED~^^^~Y~^^0^^6.25^4.00^8.70^3.50 -~16060~^~1600~^~Cowpeas, catjang, mature seeds, raw~^~COWPEAS,CATJANG,MATURE SEEDS,RAW~^^^^^0^~Vigna unguiculata subsp. cylindrica~^6.25^3.47^8.37^4.07 -~16061~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, without salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16062~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, raw~^~COWPEAS,COMMON (BLACKEYES,CROWDER,SOUTHERN),MTRE SEEDS,RAW~^^^~Y~^^0^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~16063~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, without salt~^~COWPEAS,COMMON (BLKEYES,CRWDR,STHRN),MTURE,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16064~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned, plain~^~COWPEAS,COMMON,MATURE SEEDS,CND,PLN~^^^^^0^^6.25^3.47^8.37^4.07 -~16065~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned with pork~^~COWPEAS,COMMON,MATURE SEEDS,CND W/PORK~^^^^^0^^6.25^^^ -~16067~^~1600~^~Hyacinth beans, mature seeds, raw~^~HYACINTH BNS,MATURE SEEDS,RAW~^^^^^0^~Dolichos purpureus~^6.25^3.47^8.37^4.07 -~16068~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, without salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16069~^~1600~^~Lentils, raw~^~LENTILS,RAW~^^^~Y~^^0^~Lens culinaris~^6.25^3.47^8.37^4.07 -~16070~^~1600~^~Lentils, mature seeds, cooked, boiled, without salt~^~LENTILS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16071~^~1600~^~Lima beans, large, mature seeds, raw~^~LIMA BNS,LRG,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16072~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, without salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16073~^~1600~^~Lima beans, large, mature seeds, canned~^~LIMA BNS,LRG,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16074~^~1600~^~Lima beans, thin seeded (baby), mature seeds, raw~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,RAW~^^^^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16075~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, without salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16076~^~1600~^~Lupins, mature seeds, raw~^~LUPINS,MATURE SEEDS,RAW~^^^^^0^~Lupinus albus~^6.25^3.47^8.37^4.07 -~16077~^~1600~^~Lupins, mature seeds, cooked, boiled, without salt~^~LUPINS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16078~^~1600~^~Mothbeans, mature seeds, raw~^~MOTHBEANS,MATURE SEEDS,RAW~^~mat bean, moth bean~^^^^0^~Vigna aconitifolia~^6.25^3.47^8.37^4.07 -~16079~^~1600~^~Mothbeans, mature seeds, cooked, boiled, without salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,WO/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16080~^~1600~^~Mung beans, mature seeds, raw~^~MUNG BNS,MATURE SEEDS,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^3.47^8.37^4.07 -~16081~^~1600~^~Mung beans, mature seeds, cooked, boiled, without salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16082~^~1600~^~Noodles, chinese, cellophane or long rice (mung beans), dehydrated~^~NOODLES,CHINESE,CELLOPHANE OR LONG RICE (MUNG BNS),DEHYD~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16083~^~1600~^~Mungo beans, mature seeds, raw~^~MUNGO BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna mungo~^6.25^3.47^8.37^4.07 -~16084~^~1600~^~Mungo beans, mature seeds, cooked, boiled, without salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16085~^~1600~^~Peas, green, split, mature seeds, raw~^~PEAS,GRN,SPLIT,MATURE SEEDS,RAW~^^^~Y~^^0^~Pisum sativum~^6.25^3.47^8.37^4.07 -~16086~^~1600~^~Peas, split, mature seeds, cooked, boiled, without salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16087~^~1600~^~Peanuts, all types, raw~^~PEANUTS,ALL TYPES,RAW~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16088~^~1600~^~Peanuts, all types, cooked, boiled, with salt~^~PEANUTS,ALL TYPES,CKD,BLD,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16089~^~1600~^~Peanuts, all types, oil-roasted, with salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16090~^~1600~^~Peanuts, all types, dry-roasted, with salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16091~^~1600~^~Peanuts, spanish, raw~^~PEANUTS,SPANISH,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16092~^~1600~^~Peanuts, spanish, oil-roasted, with salt~^~PEANUTS,SPANISH,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16093~^~1600~^~Peanuts, valencia, raw~^~PEANUTS,VALENCIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16094~^~1600~^~Peanuts, valencia, oil-roasted, with salt~^~PEANUTS,VALENCIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16095~^~1600~^~Peanuts, virginia, raw~^~PEANUTS,VIRGINIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16096~^~1600~^~Peanuts, virginia, oil-roasted, with salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16097~^~1600~^~Peanut butter, chunk style, with salt~^~PEANUT BUTTER,CHUNK STYLE,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16098~^~1600~^~Peanut butter, smooth style, with salt (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH STYLE,W/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16099~^~1600~^~Peanut flour, defatted~^~PEANUT FLOUR,DEFATTED~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16100~^~1600~^~Peanut flour, low fat~^~PEANUT FLOUR,LOW FAT~^^^^^0^^5.46^3.47^8.37^4.07 -~16101~^~1600~^~Pigeon peas (red gram), mature seeds, raw~^~PIGEON PEAS (RED GM),MATURE SEEDS,RAW~^^^^^0^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~16102~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, without salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16103~^~1600~^~Refried beans, canned, traditional style~^~REFRIED BNS,CND,TRADITIONAL STYLE~^^^~Y~^^0^^6.25^3.50^8.90^4.07 -~16104~^~1600~^~Bacon, meatless~^~BACON,MEATLESS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16106~^~1600~^~Meat extender~^~MEAT EXTENDER~^^^^^0^^6.25^3.47^8.37^4.07 -~16107~^~1600~^~Sausage, meatless~^~SAUSAGE,MEATLESS~^^^~Y~^^0^^6.25^3.48^8.37^4.07 -~16108~^~1600~^~Soybeans, mature seeds, raw~^~SOYBEANS,MATURE SEEDS,RAW~^^^^^0^^^^^ -~16109~^~1600~^~Soybeans, mature cooked, boiled, without salt~^~SOYBEANS,MATURE CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16110~^~1600~^~Soybeans, mature seeds, roasted, salted~^~SOYBEANS,MATURE SEEDS,RSTD,SALTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16111~^~1600~^~Soybeans, mature seeds, dry roasted~^~SOYBEANS,MATURE SEEDS,DRY RSTD~^~Soy nuts~^^^^0^^6.25^3.47^8.37^4.07 -~16112~^~1600~^~Miso~^~MISO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16113~^~1600~^~Natto~^~NATTO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16114~^~1600~^~Tempeh~^~TEMPEH~^^^^^0^^6.25^3.47^8.37^4.07 -~16115~^~1600~^~Soy flour, full-fat, raw~^~SOY FLOUR,FULL-FAT,RAW~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16116~^~1600~^~Soy flour, full-fat, roasted~^~SOY FLR,FULL-FAT,RSTD~^^^^^0^^6.25^3.47^8.37^4.07 -~16117~^~1600~^~Soy flour, defatted~^~SOY FLOUR,DEFATTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16118~^~1600~^~Soy flour, low-fat~^~SOY FLOUR,LOW-FAT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16119~^~1600~^~Soy meal, defatted, raw~^~SOY MEAL,DEFATTED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16120~^~1600~^~Soymilk, original and vanilla, unfortified~^~SOYMILK,ORIGINAL & VANILLA,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16121~^~1600~^~Soy protein concentrate, produced by alcohol extraction~^~SOY PROT CONC,PRODUCED BY ALCOHOL EXTRACTION~^^^^^0^^6.25^3.47^8.37^4.07 -~16122~^~1600~^~Soy protein isolate~^~SOY PROTEIN ISOLATE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16123~^~1600~^~Soy sauce made from soy and wheat (shoyu)~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16124~^~1600~^~Soy sauce made from soy (tamari)~^~SOY SAU MADE FROM SOY (TAMARI)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16125~^~1600~^~Soy sauce made from hydrolyzed vegetable protein~^~SOY SAU MADE FROM HYDROLYZED VEG PROT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16126~^~1600~^~Tofu, firm, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,FIRM,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^^^0^^6.25^3.47^8.37^4.07 -~16127~^~1600~^~Tofu, soft, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,SOFT,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16128~^~1600~^~Tofu, dried-frozen (koyadofu)~^~TOFU,DRIED-FROZEN (KOYADOFU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16129~^~1600~^~Tofu, fried~^~TOFU,FRIED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16130~^~1600~^~Okara~^~OKARA~^^^^^0^^6.25^3.47^8.37^4.07 -~16132~^~1600~^~Tofu, salted and fermented (fuyu)~^~TOFU,SALTED&FERMENTED (FUYU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16133~^~1600~^~Yardlong beans, mature seeds, raw~^~YARDLONG BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna uniguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~16134~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, without salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16135~^~1600~^~Winged beans, mature seeds, raw~^~WINGED BNS,MATURE SEEDS,RAW~^^^^^0^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~16136~^~1600~^~Winged beans, mature seeds, cooked, boiled, without salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16137~^~1600~^~Hummus, home prepared~^~HUMMUS,HOME PREP~^^^~Y~^^0^^^^^ -~16138~^~1600~^~Falafel, home-prepared~^~FALAFEL,HOME-PREPARED~^^^^^0^^0.00^^^ -~16139~^~1600~^~Soymilk, original and vanilla, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16144~^~1600~^~Lentils, pink or red, raw~^~LENTILS,PINK OR RED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16145~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16146~^~1600~^~Beans, pinto, canned, drained solids~^~BEANS,PINTO,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.05 -~16147~^~1600~^~Veggie burgers or soyburgers, unprepared~^~VEGGIE BURGERS OR SOYBURGERS UNPREP~^^^~Y~^^0^^^^^ -~16149~^~1600~^~Peanut spread, reduced sugar~^~PEANUT SPRD,RED SUGAR~^^^~Y~^^0^^^^^ -~16150~^~1600~^~Peanut butter, smooth, reduced fat~^~PEANUT BUTTER,SMOOTH,RED FAT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16155~^~1600~^~Peanut butter, smooth, vitamin and mineral fortified~^~PEANUT BUTTER,SMOOTH,VIT & MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16156~^~1600~^~Peanut butter, chunky, vitamin and mineral fortified~^~PEANUT BUTTER,CHUNKY,VITAMIN&MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16157~^~1600~^~Chickpea flour (besan)~^~CHICKPEA FLOUR (BESAN)~^^^^^0^^6.25^4.27^8.37^4.07 -~16158~^~1600~^~Hummus, commercial~^~HUMMUS,COMMERCIAL~^^^^^0^^6.25^3.47^8.37^4.07 -~16159~^~1600~^~Tofu, extra firm, prepared with nigari~^~TOFU,EX FIRM,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16160~^~1600~^~Tofu, hard, prepared with nigari~^~TOFU,HARD,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16161~^~1600~^~MORI-NU, Tofu, silken, soft~^~MORI-NU,TOFU,SILKEN,SOFT~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16162~^~1600~^~MORI-NU, Tofu, silken, firm~^~MORI-NU,TOFU,SILKEN,FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16163~^~1600~^~MORI-NU, Tofu, silken, extra firm~^~MORI-NU,TOFU,SILKEN,EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16164~^~1600~^~MORI-NU, Tofu, silken, lite firm~^~MORI-NU,TOFU,SILKEN,LITE FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16165~^~1600~^~MORI-NU, Tofu, silken, lite extra firm~^~MORI-NU,TOFU,SILKEN,LITE EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16166~^~1600~^~Soymilk, chocolate, unfortified~^~SOYMILK,CHOC,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16167~^~1600~^~Peanut Butter, smooth (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH (INCLFOODS FOR USDA'S FD DIST PGM)~^^^^^0^^5.46^3.47^8.37^4.07 -~16168~^~1600~^~Soymilk, chocolate, with added calcium, vitamins A and D~^~SOYMILK,CHOC,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16171~^~1600~^~Refried beans, canned, vegetarian~^~REFRIED BNS,CND,VEGETARIAN~^^^^^0^^^^^ -~16172~^~1600~^~Refried beans, canned, fat-free~^~REFRIED BNS,CND,FAT-FREE~^^^~Y~^^0^^^^^ -~16173~^~1600~^~Frijoles rojos volteados (Refried beans, red, canned)~^~FRIJOLES ROJOS VOLTEADOS (REFRIED BNS,RED,CANNED)~^^^^^0^^^^^ -~16174~^~1600~^~Tempeh, cooked~^~TEMPEH,CKD~^^^^^0^^6.25^3.47^8.37^4.07 -~16210~^~1600~^~Vitasoy USA, Nasoya Lite Firm Tofu~^~VITASOY USA,NASOYA LITE FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16211~^~1600~^~Vitasoy USA, Organic Nasoya Super Firm Cubed Tofu~^~VITASOY USA,ORGANIC NASOYA SUPER FIRM CUBED TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16212~^~1600~^~Vitasoy USA, Organic Nasoya Extra Firm Tofu~^~VITASOY USA,ORGANIC NASOYA EX FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16213~^~1600~^~Vitasoy USA, Organic Nasoya Firm Tofu~^~VITASOY USA,ORGANIC NASOYA FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16214~^~1600~^~Vitasoy USA, Organic Nasoya Silken Tofu~^~VITASOY USA ORGANIC NASOYA SILKEN TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16215~^~1600~^~Vitasoy USA, Vitasoy Organic Creamy Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CREAMY ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16216~^~1600~^~Vitasoy USA, Vitasoy Organic Classic Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CLASSIC ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16219~^~1600~^~Vitasoy USA, Vitasoy Light Vanilla Soymilk~^~VITASOY USA,VITASOY LT VANILLA SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16222~^~1600~^~Soymilk (all flavors), unsweetened, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),UNSWTND,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16223~^~1600~^~Soymilk (All flavors), enhanced~^~SOYMILK (ALL FLAVORS),ENHANCED~^^^^^0^^^^^ -~16225~^~1600~^~Soymilk, original and vanilla, light, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16227~^~1600~^~Soymilk, chocolate and other flavors, light, with added calcium, vitamins A and D~^~SOYMILK,CHOC & OTHER FLAVORS,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16228~^~1600~^~Soymilk, original and vanilla, light, unsweetened, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,UNSWTND,W/ ADDED CA,VIT A & D~^^^^^0^^^^^ -~16229~^~1600~^~Soymilk (All flavors), lowfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),LOWFAT,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16230~^~1600~^~Soymilk (all flavors), nonfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16231~^~1600~^~Soymilk, chocolate, nonfat, with added calcium, vitamins A and D~^~SOYMILK,CHOC,NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16235~^~1600~^~SILK Plain, soymilk~^~SILK PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16236~^~1600~^~SILK Vanilla, soymilk~^~SILK VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16237~^~1600~^~SILK Chocolate, soymilk~^~SILK CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16238~^~1600~^~SILK Light Plain, soymilk~^~SILK LT PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16239~^~1600~^~SILK Light Vanilla, soymilk~^~SILK LT VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16240~^~1600~^~SILK Light Chocolate, soymilk~^~SILK LT CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16241~^~1600~^~SILK Plus Omega-3 DHA, soymilk~^~SILK PLUS OMEGA-3 DHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16242~^~1600~^~SILK Plus for Bone Health, soymilk~^~SILK PLUS FOR BONE HEALTH,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16243~^~1600~^~SILK Plus Fiber, soymilk~^~SILK PLUS FIBER,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16244~^~1600~^~SILK Unsweetened, soymilk~^~SILK UNSWTND,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16245~^~1600~^~SILK Very Vanilla, soymilk~^~SILK VERY VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16246~^~1600~^~SILK Nog, soymilk~^~SILK NOG,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16247~^~1600~^~SILK Chai, soymilk~^~SILK CHAI,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16248~^~1600~^~SILK Mocha, soymilk~^~SILK MOCHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16249~^~1600~^~SILK Coffee, soymilk~^~SILK COFFEE,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16250~^~1600~^~SILK Vanilla soy yogurt (family size)~^~SILK VANILLA SOY YOGURT (FAMILY SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16251~^~1600~^~SILK Vanilla soy yogurt (single serving size)~^~SILK VANILLA SOY YOGURT (SINGLE SERVING SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16252~^~1600~^~SILK Plain soy yogurt~^~SILK PLN SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16253~^~1600~^~SILK Strawberry soy yogurt~^~SILK STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16254~^~1600~^~SILK Raspberry soy yogurt~^~SILK RASPBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16255~^~1600~^~SILK Peach soy yogurt~^~SILK PEACH SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16256~^~1600~^~SILK Black Cherry soy yogurt~^~SILK BLACK CHERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16257~^~1600~^~SILK Blueberry soy yogurt~^~SILK BLUEBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16258~^~1600~^~SILK Key Lime soy yogurt~^~SILK KEY LIME SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16259~^~1600~^~SILK Banana-Strawberry soy yogurt~^~SILK BANANA-STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16260~^~1600~^~SILK Original Creamer~^~SILK ORIGINAL CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16261~^~1600~^~SILK French Vanilla Creamer~^~SILK FRENCH VANILLA CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16262~^~1600~^~SILK Hazelnut Creamer~^~SILK HAZELNUT CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16271~^~1600~^~Vitasoy USA Organic Nasoya, Soft Tofu~^~VITASOY USA ORGANIC NASOYA,SOFT TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16272~^~1600~^~Vitasoy USA Nasoya, Lite Silken Tofu~^~VITASOY USA NASOYA,LITE SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16273~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Extra Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS EX FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16274~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16275~^~1600~^~Vitasoy USA Organic Nasoya Sprouted, Tofu Plus Super Firm~^~VITASOY USA ORGANIC NASOYA SPROUTED,TOFU PLUS SUPER FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16276~^~1600~^~Vitasoy USA Azumaya, Extra Firm Tofu~^~VITASOY USA AZUMAYA,EX FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16277~^~1600~^~Vitasoy USA Azumaya, Firm Tofu~^~VITASOY USA AZUMAYA,FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16278~^~1600~^~Vitasoy USA Azumaya, Silken Tofu~^~VITASOY USA AZUMAYA,SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16279~^~1600~^~HOUSE FOODS Premium Soft Tofu~^~HOUSE FOODS PREMIUM SOFT TOFU~^^~House Foods~^^^0^^6.25^^^ -~16281~^~1600~^~HOUSE FOODS Premium Firm Tofu~^~HOUSE FOODS PREMIUM FIRM TOFU~^^~House Foods~^^^0^^6.25^^^ -~16302~^~1600~^~Beans, adzuki, mature seed, cooked, boiled, with salt~^~BEANS,ADZUKI,MATURE SD,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16315~^~1600~^~Beans, black, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16316~^~1600~^~Beans, black, mature seeds, canned, low sodium~^~BEANS,BLACK,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16317~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16320~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, with salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16323~^~1600~^~Beans, french, mature seeds, cooked, boiled, with salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16325~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, with salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16326~^~1600~^~Beans, great northern, mature seeds, canned, low sodium~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16328~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16331~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16333~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16335~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16336~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled with salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16337~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquid, low sodium~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQ,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16338~^~1600~^~Beans, navy, mature seeds, cooked, boiled, with salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16341~^~1600~^~Beans, pink, mature seeds, cooked, boiled, with salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16343~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, with salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16345~^~1600~^~Beans, pinto, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,PINTO,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16346~^~1600~^~Beans, small white, mature seeds, cooked, boiled, with salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16347~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids, low sodium~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16348~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, with salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16350~^~1600~^~Beans, white, mature seeds, cooked, boiled, with salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16353~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, with salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16357~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, with salt~^~CHICKPEAS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16358~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained solids~^~CHICKPEAS,MAT SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16359~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained, rinsed in tap water~^~CHICKPEAS,MATURE SEEDS,CND,DRND,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16360~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids, low sodium~^~CHICKPEAS,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16361~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, with salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16363~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, with salt~^~COWPEAS,COMMON,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16368~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, with salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16370~^~1600~^~Lentils, mature seeds, cooked, boiled, with salt~^~LENTILS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16372~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, with salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16375~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, with salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16377~^~1600~^~Lupins, mature seeds, cooked, boiled, with salt~^~LUPINS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16379~^~1600~^~Mothbeans, mature seeds, cooked, boiled, with salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16381~^~1600~^~Mung beans, mature seeds, cooked, boiled, with salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16384~^~1600~^~Mungo beans, mature seeds, cooked, boiled, with salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16386~^~1600~^~Peas, split, mature seeds, cooked, boiled, with salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16389~^~1600~^~Peanuts, all types, oil-roasted, without salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,WO/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16390~^~1600~^~Peanuts, all types, dry-roasted, without salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16392~^~1600~^~Peanuts, spanish, oil-roasted, without salt~^~PEANUTS,SPANISH,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16394~^~1600~^~Peanuts, valencia, oil-roasted, without salt~^~PEANUTS,VALENCIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16396~^~1600~^~Peanuts, virginia, oil-roasted, without salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16397~^~1600~^~Peanut butter, chunk style, without salt~^~PEANUT BUTTER,CHUNK STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16398~^~1600~^~Peanut butter, smooth style, without salt~^~PEANUT BUTTER,SMOOTH STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16399~^~1600~^~Peanut butter with omega-3, creamy~^~PEANUT BUTTER W/ OMEGA-3,CREAMY~^^^^^0^^5.46^3.47^8.37^4.07 -~16402~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, with salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16403~^~1600~^~Refried beans, canned, traditional, reduced sodium~^~REFRIED BNS,CND,TRADITIONAL,RED NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16409~^~1600~^~Soybeans, mature seeds, cooked, boiled, with salt~^~SOYBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16410~^~1600~^~Soybeans, mature seeds, roasted, no salt added~^~SOYBEANS,MATURE SEEDS,RSTED,NO SALT ADDED~^^^^^0^^6.25^3.47^8.37^4.07 -~16420~^~1600~^~Soy protein concentrate, produced by acid wash~^~SOY PROT CONC,PRODUCED BY ACID WASH~^^^^^0^^6.25^3.47^8.37^4.07 -~16422~^~1600~^~Soy protein isolate, potassium type~^~SOY PROT ISOLATE,K TYPE~^^^^^0^^6.25^3.47^8.37^4.07 -~16424~^~1600~^~Soy sauce made from soy and wheat (shoyu), low sodium~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU),LO NA~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16425~^~1600~^~Soy sauce, reduced sodium, made from hydrolyzed vegetable protein~^~SOY SAU,RED NA,MADE FROM HYDROLYZED VEG PROT~^^^^^0^^6.25^3.47^8.37^4.07 -~16426~^~1600~^~Tofu, raw, firm, prepared with calcium sulfate~^~TOFU,RAW,FIRM,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16427~^~1600~^~Tofu, raw, regular, prepared with calcium sulfate~^~TOFU,RAW,REG,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16428~^~1600~^~Tofu, dried-frozen (koyadofu), prepared with calcium sulfate~^~TOFU,DRIED-FROZEN (KOYADOFU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16429~^~1600~^~Tofu, fried, prepared with calcium sulfate~^~TOFU,FRIED,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16432~^~1600~^~Tofu, salted and fermented (fuyu), prepared with calcium sulfate~^~TOFU,SALTED&FERMENTED (FUYU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16434~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, with salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16436~^~1600~^~Winged beans, mature seeds, cooked, boiled, with salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~17000~^~1700~^~Veal, Australian, rib, rib roast, separable lean only, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN,RAW~^^^^~Bone and connective tissue 22%, separable fat 14%~^36^^6.25^^^ -~17001~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^~Ovis aries~^6.25^4.27^9.02^3.87 -~17002~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17003~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 19%~^42^^6.25^4.27^9.02^3.87 -~17004~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,CKD~^^^^~Bone 25%, separable fat 17%~^42^^6.25^4.27^9.02^3.87 -~17005~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17006~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17007~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17008~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^~Y~^~Bone~^56^^6.25^4.27^9.02^3.87 -~17009~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 52%, separable fat 7%~^59^^6.25^4.27^9.02^3.87 -~17010~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 56%, separable fat 6%~^62^^6.25^4.27^9.02^3.87 -~17011~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17012~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17013~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 15%~^36^^6.25^4.27^9.02^3.87 -~17014~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 13%~^35^^6.25^4.27^9.02^3.87 -~17015~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17016~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17017~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 20%, separable fat 11%~^31^^6.25^4.27^9.02^3.87 -~17018~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17019~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17020~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17021~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 20%~^43^^6.25^4.27^9.02^3.87 -~17022~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 23%, separable fat 18%~^41^^6.25^4.27^9.02^3.87 -~17023~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17024~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~17025~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17026~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 25%~^46^^6.25^4.27^9.02^3.87 -~17027~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 21%~^44^^6.25^4.27^9.02^3.87 -~17028~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 22%, separable fat 22%~^44^^6.25^4.27^9.02^3.87 -~17029~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17030~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~17031~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17032~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 27%, separable fat 30%~^57^^6.25^4.27^9.02^3.87 -~17033~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 30%, separable fat 25%~^55^^6.25^4.27^9.02^3.87 -~17034~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 28%, separable fat 27%~^55^^6.25^4.27^9.02^3.87 -~17035~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%~^21^^6.25^4.27^9.02^3.87 -~17036~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17037~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17038~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17039~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%, separable fat 18%~^39^^6.25^4.27^9.02^3.87 -~17040~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 25%, separable fat 15%~^40^^6.25^4.27^9.02^3.87 -~17041~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 24%, separable fat 14%~^38^^6.25^4.27^9.02^3.87 -~17042~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 15%~^37^^6.25^4.27^9.02^3.87 -~17043~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17044~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17045~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~17046~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17047~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 17%, separable fat 20%~^37^^6.25^4.27^9.02^3.87 -~17048~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 20%, separable fat 18%~^38^^6.25^4.27^9.02^3.87 -~17049~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 19%, separable fat 17%~^36^^6.25^4.27^9.02^3.87 -~17050~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~17051~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17052~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17053~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17054~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17055~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 24%, separable fat 16%~^40^^6.25^4.27^9.02^3.87 -~17056~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 28%, separable fat 14%~^42^^6.25^4.27^9.02^3.87 -~17057~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 27%, separable fat 13%~^40^^6.25^4.27^9.02^3.87 -~17058~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~17059~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, raw~^~LAMB,CUBED FOR STEW OR KABOB (LEG & SHOULDER),LN,1/4"FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17060~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, braised~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17061~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, broiled~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~17062~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17063~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,CKD~^^^^~Bone~^31^^6.25^4.27^9.02^3.87 -~17064~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 30%, separable fat 20%~^50^^6.25^4.27^9.02^3.87 -~17065~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,CKD~^^^^~Bone 31%, separable fat 18%~^49^^6.25^4.27^9.02^3.87 -~17066~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17067~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17068~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 36%~^36^^^^^ -~17069~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 41%~^41^^^^^ -~17070~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN,RAW~^^^^~Bone and connective tissue 36%, separable fat 7%~^43^^6.25^^^ -~17071~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN,CKD,BRSD~^^^^~Bone 41%, separable fat 7%~^48^^6.25^^^ -~17072~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 15%~^15^^^^^ -~17073~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN&FAT,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17074~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 15%, separable fat 12%~^27^^6.25^^^ -~17075~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean only, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN,CKD,RSTD~^^^^~Bone 24%, separable fat 12%~^36^^6.25^4.27^9.02^3.87 -~17076~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,RAW~^^^^~Bone and connective tissue 20%~^20^^^^^ -~17077~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17078~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN,RAW~^^^^~Bone and connective tissue 20%, separable fat 23%~^43^^6.25^^^ -~17079~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean only, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN,CKD,BRLD~^^^^~Bone 27%, separable fat 22%~^49^^6.25^4.27^9.02^3.87 -~17080~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17081~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%~^23^^^^^ -~17082~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 24%, separable fat 11%~^35^^6.25^^^ -~17083~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%, separable fat 11%~^34^^6.25^^^ -~17084~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17085~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17086~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,RAW~^^^^~Bone and connective tissue 25%, separable fat 17%~^42^^6.25^^^ -~17087~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 17%~^46^^6.25^4.27^9.02^3.87 -~17088~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, raw~^~VEAL,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^31^~Bos taurus~^6.25^4.27^9.02^3.87 -~17089~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, cooked~^~VEAL,COMP OF RTL CUTS,LN&FAT,CKD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17090~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, raw~^~VEAL,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17091~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, cooked~^~VEAL,COMP OF RTL CUTS,LN,CKD~^^^~Y~^~Bone 28%, separable fat 6%~^34^^6.25^4.27^9.02^3.87 -~17092~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, raw~^~VEAL,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17093~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, cooked~^~VEAL,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17094~^~1700~^~Veal, leg (top round), separable lean and fat, raw~^~VEAL,LEG (TOP RND),LN&FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17095~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, braised~^~VEAL,LEG (TOP RND),LN&FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17096~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17097~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17098~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, roasted~^~VEAL,LEG (TOP RND),LN&FAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17099~^~1700~^~Veal, leg (top round), separable lean only, raw~^~VEAL,LEG (TOP RND),LN,RAW~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17100~^~1700~^~Veal, leg (top round), separable lean only, cooked, braised~^~VEAL,LEG (TOP RND),LN,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17101~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17102~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^~Separable fat~^5^^6.25^4.27^9.02^3.87 -~17103~^~1700~^~Veal, leg (top round), separable lean only, cooked, roasted~^~VEAL,LEG (TOP RND),LN,CKD,RSTD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17104~^~1700~^~Veal, loin, separable lean and fat, raw~^~VEAL,LOIN,LN&FAT,RAW~^~IMPS# 332~^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~17105~^~1700~^~Veal, loin, separable lean and fat, cooked, braised~^~VEAL,LOIN,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17106~^~1700~^~Veal, loin, separable lean and fat, cooked, roasted~^~VEAL,LOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17107~^~1700~^~Veal, loin, separable lean only, raw~^~VEAL,LOIN,LN,RAW~^~IMPS # 332~^^^~Bone 30%, separable fat 10%~^40^^^^^ -~17108~^~1700~^~Veal, loin, separable lean only, cooked, braised~^~VEAL,LOIN,LN,CKD,BRSD~^^^~Y~^~Bone 36%, separable fat 9%~^45^^6.25^4.27^9.02^3.87 -~17109~^~1700~^~Veal, loin, separable lean only, cooked, roasted~^~VEAL,LOIN,LN,CKD,RSTD~^^^~Y~^~Bone 36%, separable fat 6%~^42^^6.25^4.27^9.02^3.87 -~17110~^~1700~^~Veal, rib, separable lean and fat, raw~^~VEAL,RIB,LN&FAT,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~17111~^~1700~^~Veal, rib, separable lean and fat, cooked, braised~^~VEAL,RIB,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~17112~^~1700~^~Veal, rib, separable lean and fat, cooked, roasted~^~VEAL,RIB,LN&FAT,CKD,RSTD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17113~^~1700~^~Veal, rib, separable lean only, raw~^~VEAL,RIB,LN,RAW~^^^^~Bone 35%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~17114~^~1700~^~Veal, rib, separable lean only, cooked, braised~^~VEAL,RIB,LN,CKD,BRSD~^^^~Y~^~Bone 37%, separable fat 5%~^42^^6.25^4.27^9.02^3.87 -~17115~^~1700~^~Veal, rib, separable lean only, cooked, roasted~^~VEAL,RIB,LN,CKD,RSTD~^^^^~Bone 33%, separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~17116~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,RAW~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17117~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~17118~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17119~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN,RAW~^^^^~Bone 28%, separable fat 3%~^31^^6.25^4.27^9.02^3.87 -~17120~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17121~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,RSTD~^^^^~Bone 28%, separable fat 2%~^30^^6.25^4.27^9.02^3.87 -~17122~^~1700~^~Veal, shoulder, arm, separable lean and fat, raw~^~VEAL,SHLDR,ARM,LN&FAT,RAW~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~17123~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, braised~^~VEAL,SHLDR,ARM,LN&FAT,CKD,BRSD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17124~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,ARM,LN&FAT,CKD,RSTD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17125~^~1700~^~Veal, shoulder, arm, separable lean only, raw~^~VEAL,SHLDR,ARM,LN,RAW~^^^^~Bone 21%, separable fat 4%~^25^^6.25^4.27^9.02^3.87 -~17126~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, braised~^~VEAL,SHLDR,ARM,LN,CKD,BRSD~^^^^~Bone 23%, separable fat 6%~^29^^6.25^4.27^9.02^3.87 -~17127~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, roasted~^~VEAL,SHLDR,ARM,LN,CKD,RSTD~^^^^~Bone 21%, separable fat 3%~^24^^6.25^4.27^9.02^3.87 -~17128~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, raw~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,RAW~^~IMPS# 1309~^^^~Bone and connective tissue 22%~^22^^6.25^4.27^9.02^3.87 -~17129~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, braised~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~17130~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,RSTD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17131~^~1700~^~Veal, shoulder, blade chop, separable lean only, raw~^~VEAL,SHLDR,BLADE CHOP,LN,RAW~^~IMPS # 1309A~^^^~Bone and connective tissue 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~17132~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, braised~^~VEAL,SHLDR,BLADE,LN,CKD,BRSD~^^^~Y~^~Bone 35%, separable fat 4%~^39^^6.25^4.27^9.02^3.87 -~17133~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, roasted~^~VEAL,SHLDR,BLADE,LN,CKD,RSTD~^^^^~Bone 32%, separable fat 2%~^34^^6.25^4.27^9.02^3.87 -~17134~^~1700~^~Veal, sirloin, separable lean and fat, raw~^~VEAL,SIRLOIN,LN&FAT,RAW~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17135~^~1700~^~Veal, sirloin, separable lean and fat, cooked, braised~^~VEAL,SIRLOIN,LN&FAT,CKD,BRSD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17136~^~1700~^~Veal, sirloin, separable lean and fat, cooked, roasted~^~VEAL,SIRLOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17137~^~1700~^~Veal, sirloin, separable lean only, raw~^~VEAL,SIRLOIN,LN,RAW~^^^^~Bone 25%, separable fat 6%~^31^^6.25^4.27^9.02^3.87 -~17138~^~1700~^~Veal, sirloin, separable lean only, cooked, braised~^~VEAL,SIRLOIN,LN,CKD,BRSD~^^^^~Bone 26%, separable fat 8%~^34^^6.25^4.27^9.02^3.87 -~17139~^~1700~^~Veal, sirloin, separable lean only, cooked, roasted~^~VEAL,SIRLOIN,LN,CKD,RSTD~^^^^~Bone 25%, separable fat 5%~^30^^6.25^4.27^9.02^3.87 -~17140~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, raw~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17141~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, cooked, braised~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17142~^~1700~^~Veal, ground, raw~^~VEAL,GROUND,RAW~^~IMPS 396~^^^^0^^6.25^4.27^9.02^3.87 -~17143~^~1700~^~Veal, ground, cooked, broiled~^~VEAL,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17144~^~1700~^~Game meat, antelope, raw~^~GAME MEAT,ANTELOPE,RAW~^^^^^0^~Antilocapra americana, Bosephalus tragocamelus~^6.25^4.27^9.02^3.87 -~17145~^~1700~^~Game meat, antelope, cooked, roasted~^~GAME MEAT,ANTELOPE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17146~^~1700~^~Game meat, bear, raw~^~GAME MEAT,BEAR,RAW~^^^^^0^~Ursus arctos, Euarctos spp.~^6.25^4.27^9.02^3.87 -~17147~^~1700~^~Game meat, bear, cooked, simmered~^~GAME MEAT,BEAR,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17148~^~1700~^~Bison, ground, grass-fed, cooked~^~BISON,GROUND,GRASS-FED,CKD~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17149~^~1700~^~Bison, ground, grass-fed, raw~^~BISON,GROUND,GRASS-FED,RAW~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17150~^~1700~^~Game meat, beaver, raw~^~GAME MEAT,BEAVER,RAW~^^^^^0^~Castor canadensis~^6.25^4.27^9.02^3.87 -~17151~^~1700~^~Game meat, beaver, cooked, roasted~^~GAME MEAT,BEAVER,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17152~^~1700~^~Game meat, beefalo, composite of cuts, raw~^~GAME MEAT,BEEFALO,COMP OF CUTS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17153~^~1700~^~Game meat, beefalo, composite of cuts, cooked, roasted~^~GAME MEAT,BEEFALO,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17154~^~1700~^~Veal, Australian, separable fat, raw~^~VEAL,AUSTRALIAN,FAT,RAW~^^^^^0^^6.25^^^ -~17155~^~1700~^~Veal, Australian, rib, rib roast, separable lean and fat, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN & FAT,RAW~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17156~^~1700~^~Game meat, bison, separable lean only, raw~^~GAME MEAT,BISON,LN,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17157~^~1700~^~Game meat, bison, separable lean only, cooked, roasted~^~GAME MEAT,BISON,LN,CKD,RSTD~^~buffalo~^^~Y~^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17158~^~1700~^~Game meat, boar, wild, raw~^~GAME MEAT,BOAR,WILD,RAW~^^^^^0^~Sus scrofa~^6.25^4.27^9.02^3.87 -~17159~^~1700~^~Game meat, boar, wild, cooked, roasted~^~GAME MEAT,BOAR,WILD,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17160~^~1700~^~Game meat, buffalo, water, raw~^~GAME MEAT,BUFFALO,H2O,RAW~^^^^^0^~Bubalus bubalis~^6.25^4.27^9.02^3.87 -~17161~^~1700~^~Game meat, buffalo, water, cooked, roasted~^~GAME MEAT,BUFFALO,H2O,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17162~^~1700~^~Game meat, caribou, raw~^~GAME MEAT,CARIBOU,RAW~^^^^^0^~Rangifer spp.~^6.25^4.27^9.02^3.87 -~17163~^~1700~^~Game meat, caribou, cooked, roasted~^~GAME MEAT,CARIBOU,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17164~^~1700~^~Game meat, deer, raw~^~GAME MEAT,DEER,RAW~^^^^^0^~Odocoileus spp.~^6.25^4.27^9.02^3.87 -~17165~^~1700~^~Game meat, deer, cooked, roasted~^~GAME MEAT,DEER,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17166~^~1700~^~Game meat, elk, raw~^~GAME MEAT,ELK,RAW~^^^^^0^~Cervus elaphyus~^6.25^4.27^9.02^3.87 -~17167~^~1700~^~Game meat, elk, cooked, roasted~^~GAME MEAT,ELK,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17168~^~1700~^~Game meat, goat, raw~^~GAME MEAT,GOAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17169~^~1700~^~Game meat, goat, cooked, roasted~^~GAME MEAT,GOAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17170~^~1700~^~Game meat, horse, raw~^~GAME MEAT,HORSE,RAW~^^^^^0^~Equus caballus~^6.25^4.27^9.02^3.87 -~17171~^~1700~^~Game meat, horse, cooked, roasted~^~GAME MEAT,HORSE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17172~^~1700~^~Game meat, moose, raw~^~GAME MEAT,MOOSE,RAW~^^^^^0^~Alces alces~^6.25^4.27^9.02^3.87 -~17173~^~1700~^~Game meat, moose, cooked, roasted~^~GAME MEAT,MOOSE,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17174~^~1700~^~Game meat, muskrat, raw~^~GAME MEAT,MUSKRAT,RAW~^^^^^0^~Ondatra zibethica~^6.25^4.27^9.02^3.87 -~17175~^~1700~^~Game meat, muskrat, cooked, roasted~^~GAME MEAT,MUSKRAT,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17176~^~1700~^~Game meat, opossum, cooked, roasted~^~GAME MEAT,OPOSSUM,CKD,RSTD~^^^~Y~^^0^~Didelphis virginiana~^6.25^4.27^9.02^3.87 -~17177~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, raw~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,RAW~^^^^^0^~Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17178~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, roasted~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17179~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, stewed~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17180~^~1700~^~Game meat, rabbit, wild, raw~^~GAME MEAT,RABBIT,WILD,RAW~^^^^^0^~Sylvilagus spp., Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17181~^~1700~^~Game meat, rabbit, wild, cooked, stewed~^~GAME MEAT,RABBIT,WILD,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17182~^~1700~^~Game meat, raccoon, cooked, roasted~^~GAME MEAT,RACCOON,CKD,RSTD~^^^~Y~^^0^~Procyon lotor~^6.25^4.27^9.02^3.87 -~17183~^~1700~^~Game meat, squirrel, raw~^~GAME MEAT,SQUIRREL,RAW~^^^^^0^~Sciuridae~^6.25^4.27^9.02^3.87 -~17184~^~1700~^~Game meat, squirrel, cooked, roasted~^~GAME MEAT,SQUIRREL,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17185~^~1700~^~Lamb, variety meats and by-products, brain, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^2^^6.25^4.27^9.02^3.87 -~17186~^~1700~^~Lamb, variety meats and by-products, brain, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17187~^~1700~^~Lamb, variety meats and by-products, brain, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17188~^~1700~^~Veal, variety meats and by-products, brain, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^3^^6.25^4.27^9.02^3.87 -~17189~^~1700~^~Veal, variety meats and by-products, brain, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17190~^~1700~^~Veal, variety meats and by-products, brain, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17191~^~1700~^~Lamb, variety meats and by-products, heart, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^22^^6.25^4.27^9.02^3.87 -~17192~^~1700~^~Lamb, variety meats and by-products, heart, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17193~^~1700~^~Veal, variety meats and by-products, heart, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^26^^6.25^4.27^9.02^3.87 -~17194~^~1700~^~Veal, variety meats and by-products, heart, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17195~^~1700~^~Lamb, variety meats and by-products, kidneys, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^3^^6.25^4.27^9.02^3.87 -~17196~^~1700~^~Lamb, variety meats and by-products, kidneys, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17197~^~1700~^~Veal, variety meats and by-products, kidneys, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^12^^6.25^4.27^9.02^3.87 -~17198~^~1700~^~Veal, variety meats and by-products, kidneys, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17199~^~1700~^~Lamb, variety meats and by-products, liver, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17200~^~1700~^~Lamb, variety meats and by-products, liver, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17201~^~1700~^~Lamb, variety meats and by-products, liver, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17202~^~1700~^~Veal, variety meats and by-products, liver, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17203~^~1700~^~Veal, variety meats and by-products, liver, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17204~^~1700~^~Veal, variety meats and by-products, liver, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17205~^~1700~^~Lamb, variety meats and by-products, lungs, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17206~^~1700~^~Lamb, variety meats and by-products, lungs, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17207~^~1700~^~Veal, variety meats and by-products, lungs, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17208~^~1700~^~Veal, variety meats and by-products, lungs, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17209~^~1700~^~Lamb, variety meats and by-products, mechanically separated, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17210~^~1700~^~Lamb, variety meats and by-products, pancreas, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17211~^~1700~^~Lamb, variety meats and by-products, pancreas, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17212~^~1700~^~Veal, variety meats and by-products, pancreas, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17213~^~1700~^~Veal, variety meats and by-products, pancreas, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17214~^~1700~^~Lamb, variety meats and by-products, spleen, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17215~^~1700~^~Lamb, variety meats and by-products, spleen, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17216~^~1700~^~Veal, variety meats and by-products, spleen, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17217~^~1700~^~Veal, variety meats and by-products, spleen, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17218~^~1700~^~Veal, variety meats and by-products, thymus, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17219~^~1700~^~Veal, variety meats and by-products, thymus, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^~Y~^~Membranes 3.69%~^4^^6.25^4.27^9.02^3.87 -~17220~^~1700~^~Lamb, variety meats and by-products, tongue, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17221~^~1700~^~Lamb, variety meats and by-products, tongue, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17222~^~1700~^~Veal, variety meats and by-products, tongue, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17223~^~1700~^~Veal, variety meats and by-products, tongue, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17224~^~1700~^~Lamb, ground, raw~^~LAMB,GROUND,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17225~^~1700~^~Lamb, ground, cooked, broiled~^~LAMB,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17226~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17227~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,CKD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17228~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17229~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^56^^6.25^4.27^9.02^3.87 -~17230~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17231~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17232~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17233~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17234~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17235~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17236~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17237~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17238~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17239~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17240~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17241~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17242~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17243~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17244~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17245~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17246~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17247~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17248~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17249~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RSTD~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17250~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17251~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17252~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17253~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17254~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17255~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CKD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17256~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17257~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^50^^6.25^4.27^9.02^3.87 -~17258~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17259~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8",CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17260~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17261~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17262~^~1700~^~Lamb, new zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,RIB,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17263~^~1700~^~Lamb, New Zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,RIB,LN & FAT,1/8" FAT,CKD,RSTD~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~17264~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN & FAT,1/8",RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17265~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHDR,WHL (ARM&BLD),LN & FAT,1/8",CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17267~^~1700~^~Game meat, bison, top sirloin, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,TOP SIRLOIN,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17268~^~1700~^~Game meat, bison, ribeye, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,RIBEYE,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17269~^~1700~^~Game meat, bison, shoulder clod, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,SHLDR CLOD,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17270~^~1700~^~Veal, breast, separable fat, cooked~^~VEAL,BREAST,FAT,CKD~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17271~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, raw~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,RAW~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17272~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^7^~Bos taurus~^6.25^4.27^9.02^ -~17273~^~1700~^~Veal, breast, plate half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,PLATE HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^11^~Bos taurus~^6.25^4.27^9.02^ -~17274~^~1700~^~Veal, breast, point half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,POINT HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^4^~Bos taurus~^6.25^4.27^9.02^ -~17275~^~1700~^~Veal, breast, whole, boneless, separable lean only, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 7%, separable fat 15%~^22^~Bos taurus~^6.25^4.27^9.02^ -~17276~^~1700~^~Veal, shank (fore and hind), separable lean and fat, raw~^~VEAL,SHANK (FORE&HIND),LN&FAT,RAW~^^^^~Bone~^29^~Bos taurus~^6.25^4.27^9.02^ -~17277~^~1700~^~Veal, shank (fore and hind), separable lean and fat, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN&FAT,CKD,BRSD~^^^^~Bone~^39^~Bos taurus~^6.25^4.27^9.02^ -~17278~^~1700~^~Veal, shank (fore and hind), separable lean only, raw~^~VEAL,SHANK (FORE&HIND),LN,RAW~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17279~^~1700~^~Veal, shank (fore and hind), separable lean only, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17280~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17281~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17282~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,RAW~^^^^~Bone 20%, separable fat 14%~^34^^6.25^4.27^9.02^3.87 -~17283~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~17284~^~1700~^~Lamb, Australian, imported, fresh, separable fat, raw~^~LAMB,AUS,IMP,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17285~^~1700~^~Lamb, Australian, imported, fresh, separable fat, cooked~^~LAMB,AUS,IMP,FRSH,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17286~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^42^^6.25^4.27^9.02^3.87 -~17287~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17288~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,RAW~^^^^~Bone 42%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~17289~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 45%, separable fat 8%~^53^^6.25^4.27^9.02^3.87 -~17290~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~17291~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~17292~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,RAW~^^^^~Bone 14%, separable fat 14%~^28^^6.25^4.27^9.02^3.87 -~17293~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,CKD,RSTD~^^^^~Bone 16%, separable fat 10%~^26^^6.25^4.27^9.02^3.87 -~17294~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17295~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17296~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,RAW~^^^^~Bone 17%, separable fat 11%~^28^^6.25^4.27^9.02^3.87 -~17297~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17298~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17299~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HLF,BNLESS,LN&FT,1/8"FAT,CKD,RSTD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17300~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 22%~^24^^6.25^4.27^9.02^3.87 -~17301~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HALF,BNLESS,LN,1/8"FAT,CKD,RSTD~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17302~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17303~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHPS,BNLESS,LN&FT,1/8"FT,CKD,BRLD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~17304~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN CHOPS,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17305~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN,1/8"FAT,CKD,BRLD~^^^^~Connective tissue 1%, separable fat 10%~^11^^6.25^4.27^9.02^3.87 -~17306~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~17307~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLCE,BNE-IN,LN&FT,1/8"FT,CKD,BRLD~^^^^~Bone~^7^^6.25^4.27^9.02^3.87 -~17308~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,RAW~^^^^~Bone 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~17309~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 7%, separable fat 7%~^14^^6.25^4.27^9.02^3.87 -~17310~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17311~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17312~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 8%~^36^^6.25^4.27^9.02^3.87 -~17313~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 26%, separable fat 5%~^31^^6.25^4.27^9.02^3.87 -~17314~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN & FT,1/8",RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17315~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRENCHED,BNE-IN,LN & FAT,1/8",GRILLED~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17316~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN,1/8",RAW~^~URMIS #2951~^^^~Bone and connective tissue 25%, separable fat 20%~^45^^^^^ -~17317~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,BONE-IN,LN,1/8",CKD,GRILLED~^~URMIS #2951~^^^~Bone and connective tissue 29%, separable fat 16%~^45^^^^^ -~17318~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17319~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17320~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,RAW~^^^^~Bone 22%, separable fat 16%~^38^^6.25^4.27^9.02^3.87 -~17321~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 12%~^34^^6.25^4.27^9.02^3.87 -~17322~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^9^^6.25^4.27^9.02^3.87 -~17323~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~17324~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,RAW~^^^^~Bone 9%, separable fat 19%~^28^^6.25^4.27^9.02^3.87 -~17325~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 13%, separable fat 16%~^29^^6.25^4.27^9.02^3.87 -~17326~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17327~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17328~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 15%~^43^^6.25^4.27^9.02^3.87 -~17329~^~1700~^~Lamb, Australian, imported, fresh, shoulder ,blade, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 25%, separable fat 11%~^36^^6.25^4.27^9.02^3.87 -~17330~^~1700~^~Game meat , bison, ground, raw~^~GAME MEAT BISON,GROUND,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17331~^~1700~^~Game meat, bison, ground, cooked, pan-broiled~^~GAME MEAT,BISON,GROUND,CKD,PAN-BROILED~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17332~^~1700~^~Game meat , bison, top sirloin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT BISON,TOP SIRLOIN,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 4%, separable fat, 4%~^8^~Bison bison~^6.25^4.27^9.02^3.87 -~17333~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,CKD,BRSD~^~buffalo~^^^~Connective tissue, 8%, separable fat, 3%~^11^~Bison bison~^6.25^4.27^9.02^3.87 -~17334~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, raw~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,RAW~^~buffalo~^^^~Connective tissue, 8%, separable fat, 4%~^12^~Bison bison~^6.25^4.27^9.02^3.87 -~17335~^~1700~^~Game meat, bison, ribeye, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,RIBEYE,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 9%, separable fat, 5%~^14^~Bison bison~^6.25^4.27^9.02^3.87 -~17336~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 3.5%, separable fat, 0.72%~^4^~Bison bison~^6.25^4.27^9.02^3.87 -~17337~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, raw~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,RAW~^~buffalo~^^^~Connective tissue, 3%, separable fat, 2%~^5^~Bison bison~^6.25^4.27^9.02^3.87 -~17338~^~1700~^~Game meat, elk, ground, raw~^~GAME MEAT,ELK,GROUND,RAW~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17339~^~1700~^~Game meat, elk, ground, cooked, pan-broiled~^~GAME MEAT,ELK,GROUND,CKD,PAN-BROILED~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17340~^~1700~^~Game meat, elk, loin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,LOIN,LN,CKD,BRLD~^^^^~Connective tissue, 2%, separable fat, 4%~^6^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17341~^~1700~^~Game meat, elk, round, separable lean only, cooked, broiled~^~GAME MEAT,ELK,RND,LN,CKD,BRLD~^^^^~Connective tissue, 4%, separable fat, 1%~^5^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17342~^~1700~^~Game meat, elk, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue, 3%, separable fat, 1%~^4^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17343~^~1700~^~Game meat, deer, ground, raw~^~GAME MEAT,DEER,GROUND,RAW~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17344~^~1700~^~Game meat, deer, ground, cooked, pan-broiled~^~GAME MEAT,DEER,GROUND,CKD,PAN-BROILED~^~Venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17345~^~1700~^~Game meat, deer, loin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,LOIN,LN,1" STEAK,CKD,BRLD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17346~^~1700~^~Game meat, deer, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,DEER,SHLDR CLOD,LN,CKD,BRSD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17347~^~1700~^~Game meat, deer, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,DEER,TENDERLOIN,LN,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17348~^~1700~^~Game meat, deer, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,TOP RND,LN,1" STEAK,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17349~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 39%, separable fat 3%~^42^^6.25^^^ -~17350~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 39%~^39^^^^^ -~17351~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 31%, separable fat 4%~^35^^6.25^^^ -~17352~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 31%~^31^^^^^ -~17353~^~1700~^~Lamb, Australian, ground, 85% lean / 15% fat, raw~^~LAMB,AUSTRALIAN,GROUND,85% LN / 15% FAT,RAW~^^^^^0^^6.25^^^ -~17354~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, cooked~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^0^^6.25^^^ -~17355~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, raw~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^0^^6.25^^^ -~17356~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, raw~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~17357~^~1700~^~Lamb, New Zealand, imported, brains, cooked, soaked and fried~^~LAMB,NZ,IMP,BRAINS,CKD,SOAKED & FRIED~^^^^^0^^6.25^^^ -~17358~^~1700~^~Lamb, New Zealand, imported, brains, raw~^~LAMB,NZ,IMP,BRAINS,RAW~^^^^~Connective tissue 2%~^2^^6.25^^^ -~17359~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, cooked, braised~^~LAMB,NZ,IMP,BREAST,LN,CKD,BRSD~^^^^~Bone and connective tissue 28% Separable fat 37%~^65^^6.25^^^ -~17360~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, raw~^~LAMB,NZ,IMP,BREAST,LN,RAW~^^^^~Bone and connective tissue 26% Separable fat 39%~^65^^6.25^^^ -~17361~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,CKD,FAST RSTD~^^^^~Separable fat 21%~^21^^6.25^^^ -~17362~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, cooked~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~17363~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, raw~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,RAW~^^^^~Connective tissue 1% Separable fat 22%~^23^^6.25^^^ -~17364~^~1700~^~Lamb, New Zealand, imported, kidney, cooked, soaked and fried~^~LAMB,NZ,IMP,KIDNEY,CKD,SOAKED & FRIED~^^^^~Connective tissue 5%~^5^^6.25^^^ -~17365~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 1% Separable fat 34%~^35^^6.25^^^ -~17366~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,RAW~^^^^~Separable fat 32%~^32^^6.25^^^ -~17367~^~1700~^~Lamb, New Zealand, imported, kidney, raw~^~LAMB,NZ,IMP,KIDNEY,RAW~^^^^~Connectiv tissue 4%~^4^^6.25^^^ -~17368~^~1700~^~Lamb, New Zealand, imported, liver, cooked, soaked and fried~^~LAMB,NZ,IMP,LIVER,CKD,SOAKED & FRIED~^^^^~Connective tissue 1%~^1^^6.25^^^ -~17369~^~1700~^~Lamb, New Zealand, imported, liver, raw~^~LAMB,NZ,IMP,LIVER,RAW~^^^^^0^^6.25^^^ -~17370~^~1700~^~Lamb, New Zealand, imported, ground lamb, cooked, braised~^~LAMB,NZ,IMP,GROUND LAMB,CKD,BRSD~^^^^^^^6.25^^^ -~17371~^~1700~^~Lamb, New Zealand, imported, ground lamb, raw~^~LAMB,NZ,IMP,GROUND LAMB,RAW~^^^^^^^6.25^^^ -~17372~^~1700~^~Lamb, New Zealand, imported, heart, cooked, soaked and simmered~^~LAMB,NZ,IMP,HEART,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 11% Separable fat 17%~^28^^6.25^^^ -~17373~^~1700~^~Lamb, New Zealand, imported, heart, raw~^~LAMB,NZ,IMP,HEART,RAW~^^^^~Connective tissue 10% Separable fat 14%~^24^^6.25^^^ -~17374~^~1700~^~Lamb, New Zealand, imported, sweetbread, cooked, soaked and simmered~^~LAMB,NZ,IMP,SWEETBREAD,CKD,SOAKED & SIMMRD~^^^^~Separable fat 3%~^3^^6.25^^^ -~17375~^~1700~^~Lamb, New Zealand, imported, sweetbread, raw~^~LAMB,NZ,IMP,SWEETBREAD,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~17376~^~1700~^~Lamb, New Zealand, imported, testes, cooked, soaked and fried~^~LAMB,NZ,IMP,TESTES,CKD,SOAKED & FRIED~^^^^~Connective tissue 25%~^25^^6.25^^^ -~17377~^~1700~^~Lamb, New Zealand, imported, testes, raw~^~LAMB,NZ,IMP,TESTES,RAW~^^^^~Connective tissue 17%~^17^^6.25^^^ -~17378~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, cooked, soaked and simmered~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 12% Separable fat 6%~^18^^6.25^^^ -~17379~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, raw~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,RAW~^^^^~Connective tissue 18% Separable fat 8%~^26^^6.25^^^ -~17380~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,TUNNEL-BNED LG,CHMP OFF,SHNK OFF,LN,CKD,SLW RSTD~^^^^~Separable fat 10%~^10^^6.25^^^ -~17381~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LEG,CHUMP OFF,SHANK OFF,LN,RAW~^^^^~Separable fat 15%~^15^^6.25^^^ -~17382~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 26% Separable fat 13%~^39^^6.25^^^ -~17383~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,RAW~^^^^~Bone and connective tissue 23% Separable fat 17%~^40^^6.25^^^ -~17384~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~17385~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~17386~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 17%~^42^^6.25^^^ -~17387~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN,RAW~^^^^~Bone and connective tissue 24% Separable fat 19%~^43^^6.25^^^ -~17388~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,CKD,FAST RSTD~^^^^^0^^6.25^^^ -~17389~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,RAW~^^^^^0^^6.25^^^ -~17390~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 7%~^41^^6.25^^^ -~17391~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN,RAW~^^^^~Bone and connective tissue 28% Separable fat 9%~^37^^6.25^^^ -~17392~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN,RAW~^^^^~Bone and connective tissue 32% Separable fat 10%~^42^^6.25^^^ -~17393~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 8%~^42^^6.25^^^ -~17394~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,CKD,SLOW RSTD~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17395~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,RAW~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17396~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 4%~^29^^6.25^^^ -~17397~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 27% Separable fat 3%~^30^^6.25^^^ -~17398~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 22% Separable fat 22%~^44^^6.25^^^ -~17399~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27% Separable fat 18%~^45^^6.25^^^ -~17400~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 12% Separable fat 9%~^21^^6.25^^^ -~17401~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 1%~^1^^^^^ -~17402~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17403~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17404~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17405~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 12%~^12^^^^^ -~17406~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17407~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17408~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17409~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~17410~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17411~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17412~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 32%~^32^^^^^ -~17413~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,L & F,CKD,SLOW RSTD~^^^^~Connective tissue 2%~^2^^^^^ -~17414~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN & FAT,RAW~^^^^~Connective tissue 2%~^2^^^^^ -~17415~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue26~^26^^^^^ -~17416~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 23%~^23^^^^^ -~17417~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27%~^27^^^^^ -~17418~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~17419~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17420~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 26%~^26^^^^^ -~17421~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,TUN-BND LG,CHMP OFF,SHNK OFF,L & F,CKD,SL RSTD~^^^^^0^^^^^ -~17422~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LG,CHUMP OFF,SHANK OFF,LN & FAT,RAW~^^^^^0^^6.25^^^ -~17423~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~17424~^~1700~^~Veal, ground, cooked, pan-fried~^~VEAL,GROUND,CKD,PAN-FRIED~^~IMPS 396~^^^^^^^^^ -~17425~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, cooked, grilled~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,CKD,GRILLED~^~IMPS#1336~^^^^0^^^^^ -~17426~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, raw~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,RAW~^~IMPS# 1336~^^^^0^^^^^ -~17427~^~1700~^~Veal, loin, chop, separable lean only, cooked, grilled~^~VEAL,LOIN,CHOP,LN,CKD,GRILLED~^~IMPS #1332~^^^~Bone and connective tissue 30%, separable fat 8%~^38^^^^^ -~17428~^~1700~^~Veal, shank, separable lean only, raw~^~VEAL,SHANK,LN,RAW~^~IMPS #312~^^^~Bone and connective tissue 48%, separable fat 3%~^51^^^^^ -~17429~^~1700~^~Veal, foreshank, osso buco, separable lean only, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN,CKD,BRSD~^~IMPS # 1312~^^^~Bone and connective tissue 47%, separable fat 4%~^51^^^^^ -~17430~^~1700~^~Veal, shoulder, blade chop, separable lean only, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN,CKD,GRILLED~^~IMPS #1309A~^^^~Bone and connective tissue 25%, separable fat 8%~^33^^^^^ -~17431~^~1700~^~Veal, external fat only, raw~^~VEAL,EXTERNAL FAT ONLY,RAW~^^^^^^^^^^ -~17432~^~1700~^~Veal, external fat only, cooked~^~VEAL,EXTERNAL FAT ONLY,CKD~^^^^^^^^^^ -~17433~^~1700~^~Veal, seam fat only, raw~^~VEAL,SEAM FAT ONLY,RAW~^^^^^^^^^^ -~17434~^~1700~^~Veal, seam fat only, cooked~^~VEAL,SEAM FAT ONLY,CKD~^^^^^^^^^^ -~17435~^~1700~^~Veal, shank, separable lean and fat, raw~^~VEAL,SHANK,LN & FAT,RAW~^~IMPS# 312~^^^~Bone and connective tissue 49%~^49^^^^^ -~17436~^~1700~^~Veal, foreshank, osso buco, separable lean and fat, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN & FAT,CKD,BRSD~^~IMPS# 1312~^^^~Bone and connective tissue 47%~^47^^^^^ -~17437~^~1700~^~Veal, loin, chop, separable lean and fat, cooked, grilled~^~VEAL,LOIN,CHOP,LN & FAT,CKD,GRILLED~^~IMPS # 1332~^^^~Bone and connective tissue 30%~^30^^^^^ -~17438~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,CKD,GRILLED~^~IMPS# 1309A~^^^~Bone and connective tissue 25%~^25^^^^^ -~17439~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2973~^^^~Connective tissue 7%, Separable fat 7%~^14^^^^^ -~17440~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8",BRSD~^~URMIS # 2969~^^^~Separable fat 4%, Bone and connective tissue 50%~^54^^^^^ -~17441~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2969~^^^~Bone and connective tissue 40%, Separable fat 12%~^52^^^^^ -~17442~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS #2961~^^^~Separable fat 1%~^1^^^^^ -~17443~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%, Separable fat 2%~^3^^^^^ -~17444~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,RAW~^~URMIS # 2973~^^^~Connective tissue 5%, Separable fat 14%~^19^^^^^ -~17445~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2994~^^^~Bone and connective tissue 29%, Separable fat 6%~^35^^^^^ -~17446~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2994~^^^~Bone and connective tissue 21%, Separable fat 10%~^31^^^^^ -~17447~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BONE-IN,LN,0",CKD,RSTD~^^^^~Bone and connective tissue 28%, Separable fat 11%~^39^^^^^ -~17448~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%, Separable fat 10%~^47^^^^^ -~17449~^~1700~^~Lamb, Australian, imported, fresh, external fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,CKD~^^^^^0^^6.25^^^ -~17450~^~1700~^~Lamb, Australian, imported, fresh, external fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~17451~^~1700~^~Lamb, Australian, imported, fresh, seam fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,CKD~^^^^^0^^6.25^^^ -~17452~^~1700~^~Lamb, Australian, imported, fresh, seam fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~17453~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,CKD,RSTD~^~URMIS #2973~^^^~Connective tissue 7%~^7^^^^^ -~17454~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2973~^^^~Connective tissue 5%~^5^^^^^ -~17455~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FT,1/8",BRSD~^~URMIS #2969~^^^~Bone and connective tissue 50%~^50^^^^^ -~17456~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FAT,1/8",RAW~^~URMIS #2969~^^^~Bone and connective tissue 40%~^40^^^^^ -~17457~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RSTD~^~URMIS #2994~^^^~Bone and connective tissue 29%~^29^^^^^ -~17458~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RAW~^~URMIS #2994~^^^~Bone and connective tissue 21%~^21^^^^^ -~17459~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RSTD~^~URMIS #2961~^^^^0^^^^^ -~17460~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%~^1^^^^^ -~17461~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,DNUDED,BONE-IN,LN,0",GRILLED~^^^^~Bone and connective tissue 36%, Separable fat 8%~^44^^^^^ -~17462~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BNE-IN,LN & FT,0",RSTD~^^^^~Bone and connective tissue 28%~^28^^^^^ -~17463~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BNE-IN,LN & FT,1/8",RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%~^37^^^^^ -~17464~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,IMP,FRSH,RIB CHOP,FRENCHED,DNUDED,BN-IN,L&F,0",GRLD~^^^^~Bone and connective tissue 36%~^36^^^^^ -~18001~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGEL,PLN,TSTD, ENR W/CA PROP(INCLUDE ONION,POPPY,SESAME)~^^^~Y~^^0^^6.25^^^ -~18002~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame), toasted~^~BAGELS,PLN,ENR,W/ CA PROP (INCLUDES ONION,POPPY,SESAME),TSTD~^^^~Y~^^0^^^^^ -~18003~^~1800~^~Bagels, egg~^~BAGELS,EGG~^^^^^0^^5.70^4.00^8.60^4.10 -~18005~^~1800~^~Bagels, cinnamon-raisin~^~BAGELS,CINNAMON-RAISIN~^^^~Y~^^0^^5.80^3.90^8.40^4.00 -~18006~^~1800~^~Bagels, cinnamon-raisin, toasted~^~BAGELS,CINNAMON-RAISIN,TSTD~^^^~Y~^^0^^0.00^^^ -~18007~^~1800~^~Bagels, oat bran~^~BAGELS,OAT BRAN~^^^~Y~^^0^^5.80^3.50^8.40^3.90 -~18009~^~1800~^~Biscuits, plain or buttermilk, frozen, baked~^~BISCUITS,PLN OR BTTRMLK,FRZ,BKD~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18010~^~1800~^~Biscuits, plain or buttermilk, dry mix~^~BISCUITS,PLN OR BTTRMLK,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18011~^~1800~^~Biscuits, plain or buttermilk, dry mix, prepared~^~BISCUITS,PLN OR BTTRMLK,DRY MIX,PREP~^^^^^0^^^^^ -~18012~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18013~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT,BKD~^^^~Y~^^0^^0.00^^^ -~18014~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat~^~BISCUIT, PLN OR BUTMLK, REFRI DOUGH, HIGHER FAT~^^^^^0^^^^^ -~18015~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,HIGHER FAT,BKD~^^^~Y~^^0^^^^^ -~18016~^~1800~^~Biscuits, plain or buttermilk, prepared from recipe~^~BISCUITS,PLN OR BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18017~^~1800~^~Biscuits, mixed grain, refrigerated dough~^~BISCUITS,MXD GRAIN,REFR DOUGH~^^^^^0^^5.70^3.90^8.80^4.00 -~18019~^~1800~^~Bread, banana, prepared from recipe, made with margarine~^~BREAD,BANANA,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18021~^~1800~^~Bread, boston brown, canned~^~BREAD,BOSTON BROWN,CANNED~^^^~Y~^^0^^5.90^3.50^8.40^3.80 -~18022~^~1800~^~Bread, cornbread, dry mix, enriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,ENR (INCL CORN MUFFIN MIX)~^^^~Y~^^0^^6.00^3.80^8.80^4.10 -~18023~^~1800~^~Bread, cornbread, dry mix, prepared with 2% milk, 80% margarine, and eggs~^~BREAD,CORNBREAD,DRY MIX,PREP W/ 2% MILK,80% MARGARINE,& EGGS~^^^~Y~^^0^^6.25^^^ -~18024~^~1800~^~Bread, cornbread, prepared from recipe, made with low fat (2%) milk~^~BREAD,CORNBREAD,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18025~^~1800~^~Bread, cracked-wheat~^~BREAD,CRACKED-WHEAT~^^^^^0^^5.80^3.80^8.80^3.90 -~18027~^~1800~^~Bread, egg~^~BREAD,EGG~^^^~Y~^^0^^0.00^^^ -~18028~^~1800~^~Bread, egg, toasted~^~BREAD,EGG,TOASTED~^^^~Y~^^0^^0.00^^^ -~18029~^~1800~^~Bread, french or vienna (includes sourdough)~^~Bread, french~^^^~Y~^^0^^^^^ -~18030~^~1800~^~Bread, french or vienna, toasted (includes sourdough)~^~BREAD, FRENCH OR VIENNA, TSTD (IND SOURDOUGH)~^^^~Y~^^0^^^^^ -~18032~^~1800~^~Bread, irish soda, prepared from recipe~^~BREAD,IRISH SODA,PREP FROM RECIPE~^^^^^0^^^^^ -~18033~^~1800~^~Bread, Italian~^~BREAD,ITALIAN~^^^~Y~^^0^^5.70^4.00^8.70^4.10 -~18036~^~1800~^~Bread, multi-grain, toasted (includes whole-grain)~^~BREAD,MULTI-GRAIN,TSTD (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~18037~^~1800~^~Bread, oat bran~^~BREAD,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18038~^~1800~^~Bread, oat bran, toasted~^~BREAD,OAT BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18039~^~1800~^~Bread, oatmeal~^~BREAD,OATMEAL~^^^~Y~^^0^^5.80^3.80^8.60^4.10 -~18040~^~1800~^~Bread, oatmeal, toasted~^~BREAD,OATMEAL,TOASTED~^^^~Y~^^0^^0.00^^^ -~18041~^~1800~^~Bread, pita, white, enriched~^~BREAD,PITA,WHITE,ENRICHED~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18042~^~1800~^~Bread, pita, whole-wheat~^~BREAD,PITA,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.40^3.80 -~18043~^~1800~^~Bread, protein (includes gluten)~^~BREAD,PROT (INCL GLUTEN)~^^^~Y~^^0^^5.70^3.90^8.40^4.10 -~18044~^~1800~^~Bread, pumpernickel~^~BREAD,PUMPERNICKEL~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18047~^~1800~^~Bread, raisin, enriched~^~BREAD,RAISIN,ENRICHED~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18048~^~1800~^~Bread, raisin, enriched, toasted~^~BREAD,RAISIN,ENR,TSTD~^^^~Y~^^0^^0.00^^^ -~18049~^~1800~^~Bread, reduced-calorie, oat bran~^~BREAD,RED-CAL,OAT BRAN~^^^~Y~^^0^^5.80^3.60^8.60^3.50 -~18050~^~1800~^~Bread, reduced-calorie, oat bran, toasted~^~BREAD,RED-CAL,OAT BRAN,TSTD~^^^~Y~^^0^^0.00^^^ -~18051~^~1800~^~Bread, reduced-calorie, oatmeal~^~BREAD,RED-CAL,OATMEAL~^^^^^0^^5.80^3.90^8.40^3.50 -~18053~^~1800~^~Bread, reduced-calorie, rye~^~BREAD,REDUCED-CALORIE,RYE~^^^~Y~^^0^^5.80^4.00^8.60^3.50 -~18055~^~1800~^~Bread, reduced-calorie, wheat~^~BREAD,RED-CAL,WHEAT~^^^~Y~^^0^^5.80^3.90^8.40^3.30 -~18057~^~1800~^~Bread, reduced-calorie, white~^~BREAD,RED-CAL,WHITE~^^^~Y~^^0^^5.90^4.00^8.70^3.40 -~18059~^~1800~^~Bread, rice bran~^~BREAD,RICE BRAN~^^^~Y~^^0^^5.80^3.70^8.70^3.90 -~18060~^~1800~^~Bread, rye~^~BREAD,RYE~^^^~Y~^^0^^5.80^3.70^8.60^4.10 -~18061~^~1800~^~Bread, rye, toasted~^~BREAD,RYE,TOASTED~^^^~Y~^^0^^0.00^^^ -~18064~^~1800~^~Bread, wheat~^~BREAD,WHEAT~^^^~Y~^^0^^^^^ -~18065~^~1800~^~Bread, wheat, toasted~^~BREAD, WHEAT, TSTD~^^^~Y~^^0^^^^^ -~18069~^~1800~^~Bread, white, commercially prepared (includes soft bread crumbs)~^~BREAD,WHITE,COMMLY PREP (INCL SOFT BREAD CRUMBS)~^^^~Y~^^0^^6.25^3.90^8.70^4.10 -~18070~^~1800~^~Bread, white, commercially prepared, toasted~^~BREAD,WHITE,COMMLY PREP,TSTD~^^^~Y~^^0^^0.00^^^ -~18071~^~1800~^~Bread, white, prepared from recipe, made with nonfat dry milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/NONFAT DRY MILK~^^^^^0^^0.00^^^ -~18073~^~1800~^~Bread, white, prepared from recipe, made with low fat (2%) milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18075~^~1800~^~Bread, whole-wheat, commercially prepared~^~BREAD,WHOLE-WHEAT,COMM. PREPARED~^^^~Y~^^0^^6.25^^^ -~18076~^~1800~^~Bread, whole-wheat, commercially prepared, toasted~^~BREAD, WHOLE-WHEAT, COMMER PREP, TOASTED~^^^~Y~^^0^^^^^ -~18077~^~1800~^~Bread, whole-wheat, prepared from recipe~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18078~^~1800~^~Bread, whole-wheat, prepared from recipe, toasted~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE,TSTD~^^^~Y~^^0^^0.00^^^ -~18079~^~1800~^~Bread, crumbs, dry, grated, plain~^~BREAD,CRUMBS,DRY,GRATED,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18080~^~1800~^~Bread, sticks, plain~^~BREAD,STKS,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18081~^~1800~^~Bread, stuffing, dry mix~^~BREAD,STUFFING,DRY MIX~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18082~^~1800~^~Bread, stuffing, dry mix, prepared~^~BREAD,STUFFING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18084~^~1800~^~Bread, stuffing, cornbread, dry mix~^~BREAD,STUFFING,CORNBREAD,DRY MIX~^^^^^0^^5.90^3.80^8.70^4.10 -~18085~^~1800~^~Bread, stuffing, cornbread, dry mix, prepared~^~BREAD,STUFFING,CORNBREAD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18086~^~1800~^~Cake, angelfood, commercially prepared~^~CAKE,ANGELFOOD,COMMLY PREP~^^^^^0^^6.10^4.30^8.40^3.90 -~18088~^~1800~^~Cake, angelfood, dry mix, prepared~^~CAKE,ANGELFOOD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18090~^~1800~^~Cake, boston cream pie, commercially prepared~^~CAKE,BOSTON CRM PIE,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.80^3.90 -~18092~^~1800~^~Cake, pudding-type, carrot, dry mix~^~CAKE,PUDDING-TYPE,CARROT,DRY MIX~^^^^^0^^5.80^3.90^8.80^3.90 -~18095~^~1800~^~Cake, cherry fudge with chocolate frosting~^~CAKE,CHERRY FUDGE W/CHOC FRSTNG~^^^~Y~^^0^^6.10^3.90^8.80^3.80 -~18096~^~1800~^~Cake, chocolate, commercially prepared with chocolate frosting, in-store bakery~^~CAKE,CHOC,COMMLY PREP W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^5.90^3.50^8.80^3.80 -~18097~^~1800~^~Cake, pudding-type, chocolate, dry mix~^~CAKE,PUDDING-TYPE,CHOC,DRY MIX~^^^~Y~^^0^^5.80^3.30^8.70^3.80 -~18101~^~1800~^~Cake, chocolate, prepared from recipe without frosting~^~CAKE,CHOC,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18102~^~1800~^~Cake, white, prepared from recipe with coconut frosting~^~CAKE,WHITE,PREP FROM RECIPE W/COCNT FRSTNG~^^^~Y~^^0^^0.00^^^ -~18103~^~1800~^~Cake, coffeecake, cheese~^~CAKE,COFFEECAKE,CHS~^^^^^0^^6.00^4.00^8.80^4.00 -~18104~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, enriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,ENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18105~^~1800~^~Cake, coffeecake, creme-filled with chocolate frosting~^~CAKE,COFFEECAKE,CREME-FILLED W/ CHOC FRSTNG~^^^^^0^^5.80^3.90^8.80^4.00 -~18106~^~1800~^~Cake, coffeecake, fruit~^~CAKE,COFFEECAKE,FRUIT~^^^^^0^^5.80^3.90^8.80^3.90 -~18108~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, dry mix, prepared~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18110~^~1800~^~Cake, fruitcake, commercially prepared~^~CAKE,FRUITCAKE,COMMLY PREP~^^^~Y~^^0^^5.60^3.80^8.60^3.80 -~18114~^~1800~^~Cake, gingerbread, dry mix~^~CAKE,GINGERBREAD,DRY MIX~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18116~^~1800~^~Cake, gingerbread, prepared from recipe~^~CAKE,GINGERBREAD,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18119~^~1800~^~Cake, pineapple upside-down, prepared from recipe~^~CAKE,PNAPPL UPSIDE-DOWN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18120~^~1800~^~Cake, pound, commercially prepared, butter (includes fresh and frozen)~^~CAKE,POUND,COMMLY PREP,BUTTER (INCLUDES FRSH & FROZEN)~^^^~Y~^^0^^6.00^4.20^8.80^3.90 -~18121~^~1800~^~Cake, pound, commercially prepared, other than all butter, enriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,ENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18126~^~1800~^~Cake, shortcake, biscuit-type, prepared from recipe~^~CAKE,SHORTCAKE,BISCUIT-TYPE,PREP FROM RECIPE~^^^^^0^^^^^ -~18127~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting~^~CAKE,SNACK CAKES,CREME-FILLED,CHOC W/ FRSTNG~^^^~Y~^^0^^^^^ -~18128~^~1800~^~Cake, snack cakes, creme-filled, sponge~^~CAKE,SNACK CAKES,CREME-FILLED,SPONGE~^^^~Y~^^0^^^^^ -~18131~^~1800~^~Cake, white, dry mix, special dietary (includes lemon-flavored)~^~CAKE,WHITE,DRY MIX,SPL DIETARY (INCL LEMON-FLAVORED)~^^^^^0^^5.70^4.00^8.80^3.90 -~18133~^~1800~^~Cake, sponge, commercially prepared~^~CAKE,SPONGE,COMMLY PREP~^^^~Y~^^0^^0.00^^^ -~18134~^~1800~^~Cake, sponge, prepared from recipe~^~CAKE,SPONGE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18135~^~1800~^~Cake, pudding-type, white, enriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,ENR,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18139~^~1800~^~Cake, white, prepared from recipe without frosting~^~CAKE,WHITE,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18140~^~1800~^~Cake, yellow, commercially prepared, with chocolate frosting, in-store bakery~^~CAKE,YEL,COMMLY PREP,W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^6.00^3.80^8.80^3.80 -~18141~^~1800~^~Cake, yellow, commercially prepared, with vanilla frosting~^~CAKE,YEL,COMMLY PREP,W/VANILLA FRSTNG~^^^~Y~^^0^^6.10^4.20^8.90^3.90 -~18142~^~1800~^~Cake, pudding-type, yellow, dry mix~^~CAKE,PUDDING-TYPE,YEL,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18144~^~1800~^~Cake, yellow, enriched, dry mix~^~CAKE,YEL,ENR,DRY MIX~^^^~Y~^^0^^5.90^4.10^8.80^4.00 -~18146~^~1800~^~Cake, yellow, prepared from recipe without frosting~^~CAKE,YEL,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18147~^~1800~^~Cake, cheesecake, commercially prepared~^~CAKE,CHEESECAKE,COMMLY PREP~^^^~Y~^^0^^6.20^4.20^8.80^3.90 -~18148~^~1800~^~Cake, cheesecake, prepared from mix, no-bake type~^~CAKE,CHEESECAKE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.20^4.20^8.80^3.90 -~18151~^~1800~^~Cookies, brownies, commercially prepared~^~COOKIES,BROWNIES,COMMLY PREP~^^^~Y~^^0^^5.90^3.90^8.80^3.80 -~18152~^~1800~^~Cookies, brownies, dry mix, regular~^~COOKIES,BROWNIES,DRY MIX,REG~^^^^^0^^5.60^3.00^8.70^3.80 -~18154~^~1800~^~Cookies, brownies, prepared from recipe~^~COOKIES,BROWNIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18155~^~1800~^~Cookies, butter, commercially prepared, enriched~^~COOKIES,BUTTER,COMMLY PREP,ENR~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18156~^~1800~^~Cookies, fudge, cake-type (includes trolley cakes)~^~COOKIES,FUDGE,CAKE-TYPE (INCL TROLLEY CAKES)~^^^^^0^^5.70^3.60^8.70^3.80 -~18157~^~1800~^~Cookies, chocolate wafers~^~COOKIES,CHOCOLATE WAFERS~^^^~Y~^^0^^5.70^3.50^8.90^3.90 -~18158~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, lower fat~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,LOWER FAT~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18159~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, enriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,ENR~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18160~^~1800~^~Cookies, chocolate chip, commercially prepared, soft-type~^~COOKIES,CHOC CHIP,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.80^3.80^8.80^3.90 -~18161~^~1800~^~Cookies, chocolate chip, dry mix~^~COOKIES,CHOC CHIP,DRY MIX~^^^^^0^^5.80^4.00^8.80^3.90 -~18163~^~1800~^~Cookies, chocolate chip, refrigerated dough~^~COOKIES,CHOC CHIP,REFR DOUGH~^^^^^0^^5.90^4.10^8.80^4.00 -~18164~^~1800~^~Cookies, chocolate chip, refrigerated dough, baked~^~COOKIES,CHOC CHIP,REFR DOUGH,BKD~^^^^^0^^^^^ -~18165~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with margarine~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18166~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG~^^^~Y~^^0^^5.70^3.50^8.80^3.90 -~18167~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular, chocolate-coated~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG,CHOCOLATE-COATED~^^^~Y~^^0^^5.70^2.70^8.80^3.60 -~18168~^~1800~^~Cookies, chocolate sandwich, with extra creme filling~^~COOKIES,CHOC SNDWCH,W/EX CREME FILLING~^^^~Y~^^0^^5.70^3.60^8.80^3.90 -~18170~^~1800~^~Cookies, fig bars~^~COOKIES,FIG BARS~^^^~Y~^^0^^5.90^3.80^8.80^3.80 -~18171~^~1800~^~Cookies, fortune~^~COOKIES,FORTUNE~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18172~^~1800~^~Cookies, gingersnaps~^~COOKIES,GINGERSNAPS~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18173~^~1800~^~Cookies, graham crackers, plain or honey (includes cinnamon)~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY (INCL CINN)~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18174~^~1800~^~Cookies, graham crackers, chocolate-coated~^~COOKIES,GRAHAM CRACKERS,CHOCOLATE-COATED~^^^~Y~^^0^^5.90^3.80^8.70^3.90 -~18175~^~1800~^~Cookies, ladyfingers, with lemon juice and rind~^~COOKIES,LADYFINGERS,W/LEMON JUC&RIND~^^^~Y~^^0^^0.00^^^ -~18176~^~1800~^~Cookies, marshmallow, chocolate-coated (includes marshmallow pies)~^~COOKIES,MARSHMLLW,CHOCOLATE-COATED (INCL MARSHMLLW PIES)~^^^~Y~^^0^^5.70^3.60^8.80^3.80 -~18177~^~1800~^~Cookies, molasses~^~COOKIES,MOLASSES~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18178~^~1800~^~Cookies, oatmeal, commercially prepared, regular~^~COOKIES,OATMEAL,COMMLY PREP,REG~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18179~^~1800~^~Cookies, oatmeal, commercially prepared, soft-type~^~COOKIES,OATMEAL,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.90^3.80^8.80^3.90 -~18180~^~1800~^~Cookies, oatmeal, dry mix~^~COOKIES,OATMEAL,DRY MIX~^^^^^0^^5.80^3.70^8.80^4.00 -~18182~^~1800~^~Cookies, oatmeal, refrigerated dough~^~COOKIES,OATMEAL,REFR DOUGH~^^^^^0^^5.90^3.80^8.80^4.00 -~18183~^~1800~^~Cookies, oatmeal, refrigerated dough, baked~^~COOKIES,OATMEAL,REFR DOUGH,BKD~^^^^^0^^^^^ -~18184~^~1800~^~Cookies, oatmeal, with raisins~^~COOKIES,OATMEAL,W/ RAISINS~^^^^^0^^0.00^^^ -~18185~^~1800~^~Cookies, peanut butter, commercially prepared, regular~^~COOKIES,PNUT BUTTER,COMMLY PREP,REG~^^^~Y~^^0^^5.60^3.70^8.70^4.00 -~18186~^~1800~^~Cookies, peanut butter, commercially prepared, soft-type~^~COOKIES,PNUT BUTTER,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.50^3.70^8.70^3.90 -~18187~^~1800~^~Cookies, peanut butter, refrigerated dough~^~COOKIES,PNUT BUTTER,REFR DOUGH~^^^^^0^^5.70^3.80^8.70^4.00 -~18188~^~1800~^~Cookies, peanut butter, refrigerated dough, baked~^~COOKIES,PNUT BUTTER,REFR DOUGH,BKD~^^^^^0^^^^^ -~18189~^~1800~^~Cookies, peanut butter, prepared from recipe~^~COOKIES,PNUT BUTTER,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18190~^~1800~^~Cookies, peanut butter sandwich, regular~^~COOKIES,PNUT BUTTER SNDWCH,REG~^^^~Y~^^0^^5.60^3.80^8.60^4.00 -~18191~^~1800~^~Cookies, raisin, soft-type~^~COOKIES,RAISIN,SOFT-TYPE~^^^~Y~^^0^^5.90^4.00^8.80^3.90 -~18192~^~1800~^~Cookies, shortbread, commercially prepared, plain~^~COOKIES,SHORTBREAD,COMMLY PREP,PLN~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18193~^~1800~^~Cookies, shortbread, commercially prepared, pecan~^~COOKIES,SHORTBREAD,COMMLY PREP,PECAN~^^^^^0^^5.60^4.00^8.70^4.10 -~18196~^~1800~^~Cookies, brownies, dry mix, sugar free~^~COOKIES,BROWNIES,DRY MIX,SUGAR FREE~^^^^^0^^5.70^3.60^8.80^3.80 -~18198~^~1800~^~Cookies, chocolate chip, commercially prepared, special dietary~^~COOKIES,CHOC CHIP,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18199~^~1800~^~Cookies, chocolate sandwich, with creme filling, special dietary~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,SPL DIETARY~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18200~^~1800~^~Cookies, oatmeal, commercially prepared, special dietary~^~COOKIES,OATMEAL,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18201~^~1800~^~Cookies, peanut butter sandwich, special dietary~^~COOKIES,PNUT BUTTER SNDWCH,SPL DIETARY~^^^^^0^^5.50^3.60^8.70^4.00 -~18202~^~1800~^~Cookies, sugar wafer, with creme filling, sugar free~^~COOKIES,SUGAR WAFER,W/ CREME FILLING,SUGAR FREE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18204~^~1800~^~Cookies, sugar, commercially prepared, regular (includes vanilla)~^~COOKIES,SUGAR,COMMLY PREP,REG (INCL VANILLA)~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18205~^~1800~^~Cookies, sugar, refrigerated dough~^~COOKIES,SUGAR,REFR DOUGH~^^^^^0^^5.80^4.10^8.80^4.00 -~18206~^~1800~^~Cookies, sugar, refrigerated dough, baked~^~COOKIES,SUGAR,REFR DOUGH,BKD~^^^~Y~^^0^^0.00^^^ -~18209~^~1800~^~Cookies, sugar wafers with creme filling, regular~^~COOKIES,SUGAR WAFERS W/CREME FILLING,REG~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18210~^~1800~^~Cookies, vanilla sandwich with creme filling~^~COOKIES,VANILLA SNDWCH W/CREME FILLING~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18211~^~1800~^~Puff pastry, frozen, ready-to-bake, baked~^~PUFF PASTRY,FRZ,RTB,BKD~^^^~Y~^^0^^0.00^^^ -~18212~^~1800~^~Cookies, vanilla wafers, lower fat~^~COOKIES,VANILLA WAFERS,LOWER FAT~^^^~Y~^^0^^5.90^4.10^8.80^3.90 -~18213~^~1800~^~Cookies, vanilla wafers, higher fat~^~COOKIES,VANILLA WAFERS,HIGHER FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18214~^~1800~^~Crackers, cheese, regular~^~CRACKERS,CHEESE,REGULAR~^^^~Y~^^0^^5.90^4.10^8.80^4.10 -~18215~^~1800~^~Crackers, cheese, sandwich-type with peanut butter filling~^~CRACKERS,CHS,SANDWICH-TYPE W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18216~^~1800~^~Crackers, crispbread, rye~^~CRACKERS,CRISPBREAD,RYE~^^^~Y~^^0^^5.90^3.20^8.40^4.00 -~18217~^~1800~^~Crackers, matzo, plain~^~CRACKERS,MATZO,PLAIN~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18218~^~1800~^~Crackers, matzo, egg~^~CRACKERS,MATZO,EGG~^^^^^0^^5.80^4.10^8.80^4.10 -~18219~^~1800~^~Crackers, matzo, whole-wheat~^~CRACKERS,MATZO,WHOLE-WHEAT~^^^^^0^^5.80^3.50^8.40^3.70 -~18220~^~1800~^~Crackers, melba toast, plain~^~CRACKERS,MELBA TOAST,PLN~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18221~^~1800~^~Crackers, melba toast, rye (includes pumpernickel)~^~CRACKERS,MELBA TOAST,RYE (INCL PUMPERNICKEL)~^^^^^0^^5.80^3.70^8.60^4.10 -~18222~^~1800~^~Crackers, melba toast, wheat~^~CRACKERS,MELBA TOAST,WHEAT~^^^^^0^^5.80^3.80^8.60^4.00 -~18223~^~1800~^~Crackers, milk~^~CRACKERS,MILK~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18224~^~1800~^~Crackers, rusk toast~^~CRACKERS,RUSK TOAST~^^^^^0^^6.00^3.90^8.90^4.00 -~18225~^~1800~^~Crackers, rye, sandwich-type with cheese filling~^~CRACKERS,RYE,SANDWICH-TYPE W/CHS FILLING~^^^^^0^^5.80^3.90^8.80^4.10 -~18226~^~1800~^~Crackers, rye, wafers, plain~^~CRACKERS,RYE,WAFERS,PLAIN~^^^~Y~^^0^^5.90^3.00^8.40^3.70 -~18227~^~1800~^~Crackers, rye, wafers, seasoned~^~CRACKERS,RYE,WAFERS,SEASONED~^^^^^0^^5.90^3.00^8.80^3.70 -~18228~^~1800~^~Crackers, saltines (includes oyster, soda, soup)~^~CRACKERS,SALTINES (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18229~^~1800~^~Crackers, standard snack-type, regular~^~CRACKERS,STD SNACK-TYPE,REG~^^^~Y~^^0^^^^^ -~18230~^~1800~^~Crackers, standard snack-type, sandwich, with cheese filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/CHS FILLING~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18231~^~1800~^~Crackers, standard snack-type, sandwich, with peanut butter filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18232~^~1800~^~Crackers, wheat, regular~^~CRACKERS,WHEAT,REGULAR~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18233~^~1800~^~Crackers, wheat, sandwich, with cheese filling~^~CRACKERS,WHEAT,SNDWCH,W/CHS FILLING~^^^^^0^^5.80^4.00^8.80^4.10 -~18234~^~1800~^~Crackers, wheat, sandwich, with peanut butter filling~^~CRACKERS,WHEAT,SNDWCH,W/PNUT BUTTER FILLING~^^^^^0^^5.60^3.70^8.60^4.00 -~18235~^~1800~^~Crackers, whole-wheat~^~CRACKERS,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18236~^~1800~^~Cracker, meal~^~CRACKER,MEAL~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18237~^~1800~^~Cream puff shell, prepared from recipe~^~CREAM PUFF SHELL,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18239~^~1800~^~Croissants, butter~^~CROISSANTS,BUTTER~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18240~^~1800~^~Croissants, apple~^~CROISSANTS,APPLE~^^^^^0^^5.90^4.00^8.80^4.00 -~18241~^~1800~^~Croissants, cheese~^~CROISSANTS,CHEESE~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18242~^~1800~^~Croutons, plain~^~CROUTONS,PLAIN~^^^^^0^^5.70^4.00^8.80^4.10 -~18243~^~1800~^~Croutons, seasoned~^~CROUTONS,SEASONED~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18244~^~1800~^~Danish pastry, cinnamon, enriched~^~DANISH PASTRY,CINN,ENR~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18245~^~1800~^~Danish pastry, cheese~^~DANISH PASTRY,CHEESE~^^^~Y~^^0^^6.00^4.10^8.80^4.00 -~18246~^~1800~^~Danish pastry, fruit, enriched (includes apple, cinnamon, raisin, lemon, raspberry, strawberry)~^~DANISH PASTRY,FRUIT,ENR~^^^~Y~^^0^^5.80^4.10^8.80^3.90 -~18248~^~1800~^~Doughnuts, cake-type, plain (includes unsugared, old-fashioned)~^~DOUGHNUTS,CAKE-TYPE,PLN (INCLUDES UNSUGARED,OLD-FASHIONED)~^~donut~^^~Y~^^0^^6.25^^^ -~18249~^~1800~^~Doughnuts, cake-type, plain, chocolate-coated or frosted~^~DOUGHNUTS,CAKE-TYPE,PLN,CHOCOLATE-COATED OR FRSTD~^~donut~^^~Y~^^0^^^^^ -~18250~^~1800~^~Doughnuts, cake-type, plain, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,PLN,SUGARED OR GLAZED~^~donut~^^^^0^^5.90^4.20^8.80^4.00 -~18251~^~1800~^~Doughnuts, cake-type, chocolate, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,CHOC,SUGARED OR GLAZED~^~donut~^^~Y~^^0^^5.90^3.90^8.80^3.90 -~18253~^~1800~^~Doughnuts, french crullers, glazed~^~DOUGHNUTS,FRENCH CRULLERS,GLAZED~^~donut~^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18254~^~1800~^~Doughnuts, yeast-leavened, with creme filling~^~DOUGHNUTS,YEAST-LEAVENED,W/CREME FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18255~^~1800~^~Doughnuts, yeast-leavened, glazed, enriched (includes honey buns)~^~DOUGHNUTS, YEAST-LEAVENED, GLAZED, ENRICHED (INC HONEY BUNS)~^~donut~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18256~^~1800~^~Doughnuts, yeast-leavened, with jelly filling~^~DOUGHNUTS,YEAST-LEAVENED,W/JELLY FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18258~^~1800~^~Muffins, English, plain, enriched, with ca prop (includes sourdough)~^~MUFFINS,ENG,PLN,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18259~^~1800~^~Muffins, English, plain, toasted, enriched, with calcium propionate (includes sourdough)~^~MUFFINS,ENG,PLN,TSTD,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18260~^~1800~^~Muffins, English, mixed-grain (includes granola)~^~MUFFINS,ENG,MIXED-GRAIN (INCLUDES GRANOLA)~^^^~Y~^^0^^5.80^3.70^8.50^4.00 -~18262~^~1800~^~Muffins, English, raisin-cinnamon (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18263~^~1800~^~Muffins, English, raisin-cinnamon, toasted (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON,TSTD (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^^^^ -~18264~^~1800~^~Muffins, English, wheat~^~MUFFINS,ENG,WHEAT~^^^~Y~^^0^^5.80^3.70^8.40^3.90 -~18266~^~1800~^~Muffins, English, whole-wheat~^~MUFFINS,ENG,WHOLE-WHEAT~^^^~Y~^^0^^5.90^3.50^8.50^3.80 -~18268~^~1800~^~French toast, frozen, ready-to-heat~^~FRENCH TOAST,FRZ,RTH~^^^^^0^^6.00^4.10^8.90^4.00 -~18269~^~1800~^~French toast, prepared from recipe, made with low fat (2%) milk~^~FRENCH TOAST,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18270~^~1800~^~Hush puppies, prepared from recipe~^~HUSH PUPPIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18271~^~1800~^~Ice cream cones, cake or wafer-type~^~ICE CRM CONES,CAKE OR WAFER-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18272~^~1800~^~Ice cream cones, sugar, rolled-type~^~ICE CRM CONES,SUGAR,ROLLED-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18273~^~1800~^~Muffins, plain, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18274~^~1800~^~Muffins, blueberry, commercially prepared (Includes mini-muffins)~^~MUFFINS,BLUEBERRY,COMMLY PREP (INCLUDES MINI-MUFFINS)~^^^~Y~^^0^^^^^ -~18275~^~1800~^~Muffins, blueberry, dry mix~^~MUFFINS,BLUEBERRY,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18277~^~1800~^~Muffins, blueberry, toaster-type~^~MUFFINS,BLUEBERRY,TOASTER-TYPE~^^^^^0^^5.70^3.60^8.80^4.00 -~18278~^~1800~^~Muffins, blueberry, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,BLUEBERRY,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18279~^~1800~^~Muffins, corn, commercially prepared~^~MUFFINS,CORN,COMMLY PREP~^^^~Y~^^0^^5.90^3.80^8.80^4.10 -~18280~^~1800~^~Muffins, corn, dry mix, prepared~^~MUFFINS,CORN,DRY MIX,PREP~^^^^^0^^^^^ -~18281~^~1800~^~Muffins, corn, toaster-type~^~MUFFINS,CORN,TOASTER-TYPE~^^^^^0^^5.90^4.00^8.80^3.90 -~18282~^~1800~^~Muffins, corn, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,CORN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18283~^~1800~^~Muffins, oat bran~^~MUFFINS,OAT BRAN~^^^~Y~^^0^^6.20^3.20^8.70^3.80 -~18284~^~1800~^~Muffins, wheat bran, dry mix~^~MUFFINS,WHEAT BRAN,DRY MIX~^^^^^0^^6.00^2.90^8.80^3.70 -~18288~^~1800~^~Pancakes plain, frozen, ready-to-heat (includes buttermilk)~^~PANCAKES PLN,FRZ,RTH (INCLUDES BUTTERMILK)~^^^~Y~^^0^^^^^ -~18289~^~1800~^~Pancakes, plain, dry mix, complete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,COMPLETE (INCL BTTRMLK)~^^^^^0^^6.00^4.00^8.80^4.10 -~18290~^~1800~^~Pancakes, plain, dry mix, complete, prepared~^~PANCAKES,PLN,DRY MIX,COMPLETE,PREP~^^^^^0^^^^^ -~18291~^~1800~^~Pancakes, plain, dry mix, incomplete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,INCOMPLETE (INCL BTTRMLK)~^^^~Y~^^0^^5.80^3.90^8.40^4.10 -~18292~^~1800~^~Pancakes, plain, dry mix, incomplete, prepared~^~PANCAKES,PLN,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18293~^~1800~^~Pancakes, plain, prepared from recipe~^~PANCAKES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18294~^~1800~^~Pancakes, blueberry, prepared from recipe~^~PANCAKES,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18295~^~1800~^~Pancakes, buckwheat, dry mix, incomplete~^~PANCAKES,BUCKWHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.00^3.60^8.40^3.90 -~18297~^~1800~^~Pancakes, special dietary, dry mix~^~PANCAKES,SPL DIETARY,DRY MIX~^^^^^0^^5.90^3.80^8.40^4.10 -~18299~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE~^^^^^0^^5.80^3.70^8.40^4.00 -~18300~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete, prepared~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18301~^~1800~^~Pie, apple, commercially prepared, enriched flour~^~PIE,APPL,COMMLY PREP,ENR FLR~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18302~^~1800~^~Pie, apple, prepared from recipe~^~PIE,APPL,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18303~^~1800~^~Pie, banana cream, prepared from mix, no-bake type~^~PIE,BANANA CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^4.00^8.80^3.90 -~18304~^~1800~^~Pie, banana cream, prepared from recipe~^~PIE,BANANA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18305~^~1800~^~Pie, blueberry, commercially prepared~^~PIE,BLUEBERRY,COMMLY PREP~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18306~^~1800~^~Pie, blueberry, prepared from recipe~^~PIE,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18308~^~1800~^~Pie, cherry, commercially prepared~^~PIE,CHERRY,COMMLY PREP~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18309~^~1800~^~Pie, cherry, prepared from recipe~^~PIE,CHERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18310~^~1800~^~Pie, chocolate creme, commercially prepared~^~PIE,CHOC CREME,COMMLY PREP~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18312~^~1800~^~Pie, chocolate mousse, prepared from mix, no-bake type~^~PIE,CHOC MOUSSE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^3.70^8.70^3.80 -~18313~^~1800~^~Pie, coconut creme, commercially prepared~^~PIE,COCNT CREME,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.70^3.90 -~18314~^~1800~^~Pie, coconut cream, prepared from mix, no-bake type~^~PIE,COCNT CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.10^4.10^8.70^3.90 -~18316~^~1800~^~Pie, coconut custard, commercially prepared~^~PIE,COCNT CUSTARD,COMMLY PREP~^^^^^0^^6.00^4.10^8.70^4.00 -~18317~^~1800~^~Pie, egg custard, commercially prepared~^~PIE,EGG CUSTARD,COMMLY PREP~^^^~Y~^^0^^6.20^4.30^8.90^4.00 -~18319~^~1800~^~Pie, fried pies, fruit~^~PIE,FRIED PIES,FRUIT~^^^~Y~^^0^^5.80^4.00^8.80^3.80 -~18320~^~1800~^~Pie, lemon meringue, commercially prepared~^~PIE,LEMON MERINGUE,COMMLY PREP~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18321~^~1800~^~Pie, lemon meringue, prepared from recipe~^~PIE,LEMON MERINGUE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18322~^~1800~^~Pie, mince, prepared from recipe~^~PIE,MINCE,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18323~^~1800~^~Pie, peach~^~PIE,PEACH~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18324~^~1800~^~Pie, pecan, commercially prepared~^~PIE,PECAN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18325~^~1800~^~Pie, pecan, prepared from recipe~^~PIE,PECAN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18326~^~1800~^~Pie, pumpkin, commercially prepared~^~PIE,PUMPKIN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18327~^~1800~^~Pie, pumpkin, prepared from recipe~^~PIE,PUMPKIN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18328~^~1800~^~Pie, vanilla cream, prepared from recipe~^~PIE,VANILLA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18332~^~1800~^~Pie crust, standard-type, dry mix~^~PIE CRUST,STANDARD-TYPE,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18333~^~1800~^~Pie crust, standard-type, dry mix, prepared, baked~^~PIE CRUST,STANDARD-TYPE,DRY MIX,PREP,BKD~^^^^^0^^^^^ -~18334~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR~^^^~Y~^^0^^5.70^4.10^8.90^4.10 -~18335~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched, baked~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR,BKD~^^^~Y~^^0^^0.00^^^ -~18336~^~1800~^~Pie crust, standard-type, prepared from recipe, baked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,BKD~^^^^^0^^0.00^^^ -~18337~^~1800~^~Puff pastry, frozen, ready-to-bake~^~PUFF PASTRY,FRZ,RTB~^^^^^0^^0.00^^^ -~18338~^~1800~^~Phyllo dough~^~PHYLLO DOUGH~^^^~Y~^^0^^0.00^^^ -~18339~^~1800~^~Popovers, dry mix, enriched~^~POPOVERS,DRY MIX,ENRICHED~^^^^^0^^5.70^4.10^8.70^4.10 -~18342~^~1800~^~Rolls, dinner, plain, commercially prepared (includes brown-and-serve)~^~ROLLS, DINNER, PLN,COMM PREPARED (INC BROWN -N- SERVE)~^^^~Y~^^0^^^^^ -~18344~^~1800~^~Rolls, dinner, egg~^~ROLLS,DINNER,EGG~^^^~Y~^^0^^5.80^3.90^8.80^4.10 -~18345~^~1800~^~Rolls, dinner, oat bran~^~ROLLS,DINNER,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18346~^~1800~^~Rolls, dinner, rye~^~ROLLS,DINNER,RYE~^^^~Y~^^0^^5.80^3.70^8.70^4.10 -~18347~^~1800~^~Rolls, dinner, wheat~^~ROLLS,DINNER,WHEAT~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18348~^~1800~^~Rolls, dinner, whole-wheat~^~ROLLS,DINNER,WHOLE-WHEAT~^^^~Y~^^0^^0.00^^^ -~18349~^~1800~^~Rolls, french~^~ROLLS,FRENCH~^^^~Y~^^0^^5.80^3.90^8.70^4.10 -~18350~^~1800~^~Rolls, hamburger or hotdog, plain~^~ROLLS,HAMBURGER OR HOTDOG,PLN~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18351~^~1800~^~Rolls, hamburger or hotdog, mixed-grain~^~ROLLS,HAMBURGER OR HOTDOG,MIXED-GRAIN~^^^~Y~^^0^^5.80^3.80^8.80^3.90 -~18353~^~1800~^~Rolls, hard (includes kaiser)~^~ROLLS,HARD (INCL KAISER)~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18354~^~1800~^~Strudel, apple~^~STRUDEL,APPLE~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18355~^~1800~^~Sweet rolls, cheese~^~SWEET ROLLS,CHEESE~^^^^^0^^6.00^4.00^8.80^3.90 -~18356~^~1800~^~Sweet rolls, cinnamon, commercially prepared with raisins~^~SWEET ROLLS,CINN,COMMLY PREP W/RAISINS~^^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18357~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG~^^^^^0^^5.70^4.00^8.80^4.00 -~18358~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting, baked~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG,BKD~^^^^^0^^^^^ -~18360~^~1800~^~Taco shells, baked~^~TACO SHELLS, BAKED~^^^~Y~^^0^^^^^ -~18361~^~1800~^~Toaster pastries, brown-sugar-cinnamon~^~TOASTER PASTRIES,BROWN-SUGAR-CINNAMON~^^^^^0^^5.80^4.10^8.80^3.90 -~18362~^~1800~^~Toaster pastries, fruit (includes apple, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT~^^^~Y~^^0^^6.25^^^ -~18363~^~1800~^~Tortillas, ready-to-bake or -fry, corn~^~TORTILLAS,RTB OR -FRY,CORN~^^^~Y~^^0^^6.20^2.70^8.40^4.00 -~18364~^~1800~^~Tortillas, ready-to-bake or -fry, flour, refrigerated~^~TORTILLAS,RTB OR -FRY,FLR,REFR~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18365~^~1800~^~Waffles, plain, frozen, ready-to-heat~^~WAFFLES,PLN,FRZ,RTH~^^^^^0^^^^^ -~18367~^~1800~^~Waffles, plain, prepared from recipe~^~WAFFLES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18368~^~1800~^~Wonton wrappers (includes egg roll wrappers)~^~WONTON WRAPPERS (INCL EGG ROLL WRAPPERS)~^^^^^0^^0.00^^^ -~18369~^~1800~^~Leavening agents, baking powder, double-acting, sodium aluminum sulfate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,NA AL SULFATE~^^^~Y~^^0^^6.20^1.50^8.40^1.90 -~18370~^~1800~^~Leavening agents, baking powder, double-acting, straight phosphate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,STRAIGHT PO4~^^^~Y~^^0^^6.20^1.80^8.40^2.10 -~18371~^~1800~^~Leavening agents, baking powder, low-sodium~^~LEAVENING AGENTS,BAKING PDR,LOW-SODIUM~^^^~Y~^^0^^6.20^2.70^8.40^2.00 -~18372~^~1800~^~Leavening agents, baking soda~^~LEAVENING AGENTS,BAKING SODA~^^^~Y~^^0^^0.00^^^ -~18373~^~1800~^~Leavening agents, cream of tartar~^~LEAVENING AGENTS,CRM OF TARTAR~^^^~Y~^^0^^6.20^3.50^8.40^4.20 -~18374~^~1800~^~Leavening agents, yeast, baker's, compressed~^~LEAVENING AGENTS,YEAST,BAKER'S,COMPRESSED~^^^~Y~^^0^^6.20^3.00^8.40^3.40 -~18375~^~1800~^~Leavening agents, yeast, baker's, active dry~^~LEAVENING AGENTS,YEAST,BAKER'S,ACTIVE DRY~^^^~Y~^^0^^6.25^3.00^8.40^3.40 -~18376~^~1800~^~Bread, crumbs, dry, grated, seasoned~^~BREAD,CRUMBS,DRY,GRATED,SEASONED~^^^~Y~^^0^^5.80^4.00^8.40^4.10 -~18377~^~1800~^~Cookies, oatmeal, prepared from recipe, without raisins~^~COOKIES,OATMEAL,PREP FROM RECIPE,WO/RAISINS~^^^^^0^^0.00^^^ -~18378~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with butter~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/BUTTER~^^^^^0^^0.00^^^ -~18383~^~1800~^~Bread, protein, (includes gluten), toasted~^~BREAD,PROT,(INCLUDES GLUTEN),TSTD~^^^~Y~^^0^^0.00^^^ -~18384~^~1800~^~Bread, rice bran, toasted~^~BREAD,RICE BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18386~^~1800~^~Muffins, blueberry, toaster-type, toasted~^~MUFFINS,BLUEBERRY,TOASTER-TYPE,TSTD~^^^^^0^^0.00^^^ -~18388~^~1800~^~Muffins, wheat bran, toaster-type with raisins, toasted~^~MUFFINS,WHEAT BRAN,TOASTER-TYPE W/RAISINS,TSTD~^^^^^0^^0.00^^^ -~18390~^~1800~^~Pancakes, buttermilk, prepared from recipe~^~PANCAKES,BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18396~^~1800~^~Rolls, dinner, plain, prepared from recipe, made with low fat (2%) milk~^~ROLLS,DINNER,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18399~^~1800~^~Pie crust, cookie-type, prepared from recipe, graham cracker, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FR RECIPE,GRAHAM CRACKER,CHILLED~^^^^^0^^0.00^^^ -~18400~^~1800~^~Crackers, matzo, egg and onion~^~CRACKERS,MATZO,EGG&ONION~^^^^^0^^5.80^4.10^8.70^4.10 -~18401~^~1800~^~Pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FROM RECIPE,VANILLA WAFER,CHILLED~^^^~Y~^^0^^0.00^^^ -~18402~^~1800~^~Pie crust, standard-type, prepared from recipe, unbaked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,UNBAKED~^^^~Y~^^0^^0.00^^^ -~18403~^~1800~^~Waffles, plain, frozen, ready -to-heat, toasted~^~WAFFLES,PLN,FRZ,READY -TO-HEAT,TSTD~^^^~Y~^^0^^^^^ -~18406~^~1800~^~Bagels, plain, enriched, without calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,ENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^6.10^4.20^8.40^4.10 -~18407~^~1800~^~Bagels, plain, unenriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,W/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.00^8.40^4.10 -~18408~^~1800~^~Bagels, plain, unenriched, without calcium propionate(includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.10^8.80^4.00 -~18412~^~1800~^~Bread, cornbread, dry mix, unenriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,UNENR (INCL CORN MUFFIN MIX)~^^^^^0^^5.70^4.00^8.40^4.10 -~18413~^~1800~^~Bread, pita, white, unenriched~^~BREAD,PITA,WHITE,UNENR~^^^^^0^^5.70^4.00^8.40^4.10 -~18414~^~1800~^~Bread, raisin, unenriched~^~BREAD,RAISIN,UNENRICHED~^^^^^0^^5.80^3.90^8.80^3.90 -~18416~^~1800~^~Bread, white, commercially prepared, low sodium, no salt~^~BREAD,WHITE,COMMLY PREP,LO NA,NO SALT~^^^~Y~^^0^^5.70^3.90^8.70^4.10 -~18417~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, unenriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,UNENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18418~^~1800~^~Cake, pound, commercially prepared, other than all butter, unenriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,UNENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18419~^~1800~^~Cake, pudding-type, white, unenriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,UNENR,DRY MIX~^^^^^0^^5.80^4.10^8.80^4.00 -~18420~^~1800~^~Cake, yellow, unenriched, dry mix~^~CAKE,YEL,UNENR,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18421~^~1800~^~Cookies, butter, commercially prepared, unenriched~^~COOKIES,BUTTER,COMMLY PREP,UNENR~^^^^^0^^5.90^4.20^8.80^4.00 -~18422~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, unenriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,UNENR~^^^^^0^^5.80^3.90^8.80^3.90 -~18423~^~1800~^~Cookies, ladyfingers, without lemon juice and rind~^~COOKIES,LADYFINGERS,WO/LEMON JUC&RIND~^^^^^0^^0.00^^^ -~18424~^~1800~^~Crackers, melba toast, plain, without salt~^~CRACKERS,MELBA TOAST,PLN,WO/SALT~^^^^^0^^5.70^4.00^8.60^4.10 -~18425~^~1800~^~Crackers, saltines, low salt (includes oyster, soda, soup)~^~CRACKERS,SALTINES,LO SALT (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18426~^~1800~^~Crackers, saltines, unsalted tops (includes oyster, soda, soup)~^~CRACKERS,SALTINES,UNSALTED TOPS (INCL OYSTER,SODA,SOUP)~^^^^^0^^5.70^4.00^8.80^4.10 -~18427~^~1800~^~Crackers, standard snack-type, regular, low salt~^~CRACKERS,STD SNACK-TYPE,REG,LO SALT~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18428~^~1800~^~Crackers, wheat, low salt~^~CRACKERS,WHEAT,LOW SALT~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18429~^~1800~^~Crackers, whole-wheat, low salt~^~CRACKERS,WHOLE-WHEAT,LO SALT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18430~^~1800~^~Danish pastry, cinnamon, unenriched~^~DANISH PASTRY,CINN,UNENR~^^^^^0^^5.90^4.00^8.80^4.00 -~18431~^~1800~^~Danish pastry, fruit, unenriched (includes apple, cinnamon, raisin, strawberry)~^~DANISH PASTRY,FRUIT,UNENR (INCL APPL,CINN,RAISIN,STRAWBERRY)~^^^^^0^^5.80^4.10^8.80^3.90 -~18432~^~1800~^~Bread, white, commercially prepared, toasted, low sodium no salt~^~BREAD,WHITE,COMMLY PREP,TSTD,LO NA NO SALT~^^^^^0^^5.70^3.90^8.70^4.10 -~18433~^~1800~^~Danish pastry, lemon, unenriched~^~DANISH PASTRY,LEMON,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18434~^~1800~^~Crackers, cheese, low sodium~^~CRACKERS,CHS,LO NA~^^^~Y~^^0^^^^^ -~18435~^~1800~^~Danish pastry, raspberry, unenriched~^~DANISH PASTRY,RASPBERRY,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18436~^~1800~^~Doughnuts, yeast-leavened, glazed, unenriched (includes honey buns)~^~DOUGHNUTS,YEAST-LEAVENED,GLAZED,UNENR (INCL HONEY BUNS)~^~donut~^^^^0^^5.80^3.90^8.80^4.00 -~18437~^~1800~^~English muffins, plain, enriched, without calcium propionate(includes sourdough)~^~ENGLISH MUFFINS,PLN,ENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18438~^~1800~^~English muffins, plain, unenriched, with calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,W/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18439~^~1800~^~English muffins, plain, unenriched, without calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18443~^~1800~^~Pie, apple, commercially prepared, unenriched flour~^~PIE,APPL,COMMLY PREP,UNENR FLR~^^^^^0^^5.70^4.00^8.80^3.90 -~18444~^~1800~^~Pie, fried pies, cherry~^~PIE,FRIED PIES,CHERRY~^^^^^0^^5.80^4.00^8.80^3.80 -~18445~^~1800~^~Pie, fried pies, lemon~^~PIE,FRIED PIES,LEMON~^^^^^0^^5.80^4.00^8.80^3.80 -~18446~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, unenriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,UNENR~^^^^^0^^5.70^4.10^8.90^4.10 -~18447~^~1800~^~Popovers, dry mix, unenriched~^~POPOVERS,DRY MIX,UNENR~^^^^^0^^5.70^4.10^8.70^4.10 -~18448~^~1800~^~Taco shells, baked, without added salt~^~TACO SHELLS,BKD,WO/ SALT~^^^^^0^^6.20^2.70^8.80^4.00 -~18449~^~1800~^~Tortillas, ready-to-bake or -fry, corn, without added salt~^~TORTILLAS,RTB OR -FRY,CORN,WO/ SALT~^^^^^0^^6.20^2.70^8.40^4.00 -~18450~^~1800~^~Tortillas, ready-to-bake or -fry, flour, without added calcium~^~TORTILLAS,RTB OR -FRY,FLR,WO/ CA~^^^^^0^^5.70^4.00^8.80^4.10 -~18451~^~1800~^~Cake, pound, commercially prepared, fat-free~^~CAKE,POUND,COMMLY PREP,FAT-FREE~^^^~Y~^^0^^6.10^4.20^8.40^4.10 -~18453~^~1800~^~Cake, yellow, light, dry mix~^~CAKE,YEL,LT,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18457~^~1800~^~Crackers, saltines, fat-free, low-sodium~^~CRACKERS,SALTINES,FAT-FREE,LOW-SODIUM~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18459~^~1800~^~Tart, breakfast, low fat~^~TART,BRKFST,LOFAT~^^^~Y~^^0^^^^^ -~18513~^~1800~^~Archway Home Style Cookies, Sugar Free Oatmeal~^~ARCHWAY HOME STYLE COOKIES,SUGAR FREE OATMEAL~^^~Archway Cookies~^^^0^^^^^ -~18522~^~1800~^~Archway Home Style Cookies, Chocolate Chip Ice Box~^~ARCHWAY HOME STYLE COOKIES,CHOC CHIP ICE BOX~^^~Archway Cookies~^^^0^^6.25^^^ -~18524~^~1800~^~Archway Home Style Cookies, Coconut Macaroon~^~ARCHWAY HOME STYLE COOKIES,COCNT MACAROON~^^~Archway Cookies~^^^0^^6.25^^^ -~18527~^~1800~^~Archway Home Style Cookies, Date Filled Oatmeal~^~ARCHWAY HOME STYLE COOKIES,DATE FILLED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18528~^~1800~^~Archway Home Style Cookies, Dutch Cocoa~^~ARCHWAY HOME STYLE COOKIES,DUTCH COCOA~^^~Archway Cookies~^^^0^^6.25^^^ -~18529~^~1800~^~Archway Home Style Cookies, Frosty Lemon~^~ARCHWAY HOME STYLE COOKIES,FROSTY LEMON~^^~Archway Cookies~^^^0^^^^^ -~18532~^~1800~^~Archway Home Style Cookies, Iced Molasses~^~ARCHWAY HOME STYLE COOKIES,ICED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18533~^~1800~^~Archway Home Style Cookies, Iced Oatmeal~^~ARCHWAY HOME STYLE COOKIES,ICED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18535~^~1800~^~Archway Home Style Cookies, Molasses~^~ARCHWAY HOME STYLE COOKIES,MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18537~^~1800~^~Archway Home Style Cookies, Oatmeal~^~ARCHWAY HOME STYLE COOKIES,OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18538~^~1800~^~Archway Home Style Cookies, Oatmeal Raisin~^~ARCHWAY HOME STYLE COOKIES,OATMEAL RAISIN~^^~Archway Cookies~^^^0^^6.25^^^ -~18539~^~1800~^~Archway Home Style Cookies, Old Fashioned Molasses~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18540~^~1800~^~Archway Home Style Cookies, Old Fashioned Windmill Cookies~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED WINDMILL COOKIES~^^~Archway Cookies~^^^0^^6.25^^^ -~18541~^~1800~^~Archway Home Style Cookies, Peanut Butter~^~ARCHWAY HOME STYLE COOKIES,PNUT BUTTER~^^~Archway Cookies~^^^0^^^^^ -~18544~^~1800~^~Archway Home Style Cookies, Raspberry Filled~^~ARCHWAY HOME STYLE COOKIES,RASPBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18547~^~1800~^~Archway Home Style Cookies, Strawberry Filled~^~ARCHWAY HOME STYLE COOKIES,STRAWBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18562~^~1800~^~Archway Home Style Cookies, Reduced Fat Ginger Snaps~^~ARCHWAY HOME STYLE COOKIES,RED FAT GINGER SNAPS~^^~Archway Cookies~^^^0^^6.25^^^ -~18566~^~1800~^~Artificial Blueberry Muffin Mix, dry~^~ARTIFICIAL BLUEBERRY MUFFIN MIX,DRY~^^^^^0^^^^^ -~18567~^~1800~^~Kraft, Stove Top Stuffing Mix Chicken Flavor~^~KRAFT,STOVE TOP STUFFING MIX CHICK FLAVOR~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18603~^~1800~^~George Weston Bakeries, Brownberry Sage and Onion Stuffing Mix, dry~^~GEORGE WESTON BAKERIES,BROWNBERRY SAGE & ONION STFFNG MX,DRY~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18608~^~1800~^~Keebler, Keebler Chocolate Graham SELECTS~^~KEEBLER,KEEBLER CHOC GRAHAM SELECTS~^^~Keebler, Co.~^^^0^^^^^ -~18610~^~1800~^~Continental Mills, Krusteaz Almond Poppyseed Muffin Mix, Artificially Flavored, dry~^~CNTNNTL MLLS,KRUSTEAZ ALMD POPPYSD MFFN MX,ARTTFCL FLAV,DRY~^^~Continental Mills, Inc.~^^^0^^6.25^^^ -~18612~^~1800~^~Mckee Baking, Little Debbie Nutty Bars, Wafers with Peanut Butter, Chocolate Covered~^~MCKEE BKING,LTTLE DEBBIE NTTY BRS,WFRS W PNT BTTR,CHC CVERED~^^~McKee Baking, Co.~^^^0^^^^^ -~18614~^~1800~^~Martha White Foods, Martha White's Chewy Fudge Brownie Mix, dry~^~MARTHA WHITE FOODS,MRTHA WHITE'S CHEWY FUDGE BROWNIE MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18615~^~1800~^~Martha White Foods, Martha White's Buttermilk Biscuit Mix, dry~^~MARTHA WHITE FOODS,MARTHA WHITE'S BTTRMLK BISCUIT MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18616~^~1800~^~Mission Foods, Mission Flour Tortillas, Soft Taco, 8 inch~^~MISSION FOODS,MISSION FLR TORTILLAS,SOFT TACO,8 INCH~^^~Mission Foods~^^^0^^^^^ -~18617~^~1800~^~Nabisco, Nabisco Grahams Crackers~^~NABISCO,NABISCO GRAHAMS CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18619~^~1800~^~Nabisco, Nabisco Oreo Crunchies, Cookie Crumb Topping~^~NABISCO,NABISCO OREO CRUNCHIES,COOKIE CRUMB TOPPING~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18621~^~1800~^~Nabisco, Nabisco Ritz Crackers~^~NABISCO,NABISCO RITZ CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18629~^~1800~^~Pillsbury, Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY,BTTRMLK BISCUITS,ART FLAVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18630~^~1800~^~Pillsbury, Chocolate Chip Cookies, refrigerated dough~^~PILLSBURY,CHOC CHIP COOKIES,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18631~^~1800~^~Pillsbury, Crusty French Loaf, refrigerated dough~^~PILLSBURY,CRUSTY FRENCH LOAF,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18633~^~1800~^~Pillsbury Grands, Buttermilk Biscuits, refrigerated dough~^~PILLSBURY GRANDS,BTTRMLK BISCUITS,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18634~^~1800~^~Pillsbury Golden Layer Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY GOLDEN LAYER BTTRMLK BISCUITS,ART FLVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18635~^~1800~^~Pillsbury, Cinnamon Rolls with Icing, refrigerated dough~^~PILLSBURY,CINN ROLLS W/ ICING,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18637~^~1800~^~Kraft Foods, Shake N Bake Original Recipe, Coating for Pork, dry~^~KRAFT FOODS,SHKE N BKE ORIGINAL RECIPE,COATING FOR PORK,DRY~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18639~^~1800~^~George Weston Bakeries, Thomas English Muffins~^~GEORGE WESTON BAKERIES,THOMAS ENG MUFFINS~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18640~^~1800~^~Heinz, Weight Watcher, Chocolate Eclair, frozen~^~HEINZ,WEIGHT WATCHER,CHOC ECLAIR,FRZ~^^~H.J. Heinz, Co.~^^^0^^6.25^^^ -~18641~^~1800~^~Interstate Brands Corp, Wonder Hamburger Rolls~^~INTERSTATE BRANDS CORP,WONDER HAMBURGER ROLLS~^^~Interstate Bakeries Corporation~^^^0^^^^^ -~18651~^~1800~^~Nabisco, Nabisco Snackwell's Fat Free Devil's Food Cookie Cakes~^~NABISCO,NABISCO SNACKWELL'S FAT FREE DEVIL'S FD COOKIE CAKES~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18927~^~1800~^~Crackers, cheese, sandwich-type with cheese filling~^~CRACKERS,CHS,SANDWICH-TYPE W/ CHS FILLING~^^^^^0^^^^^ -~18932~^~1800~^~Waffles, buttermilk, frozen, ready-to-heat~^~WAFFLES,BTTRMLK,FRZ,RTH~^^^^^0^^^^^ -~18933~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, toasted~^~WAFFLE,BTTRMLK,FRZ,RTH,TSTD~^^^~Y~^^0^^^^^ -~18934~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, microwaved~^~WAFFLE,BTTRMLK,FRZ,RTH,MICROWAVED~^^^^^0^^^4.00^9.00^4.00 -~18935~^~1800~^~Waffle, plain, frozen, ready-to-heat, microwave~^~WAFFLE,PLN,FRZ,RTH,MICROWAVE~^^^^^0^^^^^ -~18936~^~1800~^~Pancakes, plain, frozen, ready-to-heat, microwave (includes buttermilk)~^~PANCAKES,PLN,FRZ,RTH,MICROWAVE(INC BUTTMLK)~^^^^^0^^^^^ -~18938~^~1800~^~Toaster Pastries, fruit, frosted (include apples, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT,FRSTD~^^^~Y~^^0^^^^^ -~18939~^~1800~^~Toaster pastries, fruit, toasted (include apple, blueberry, cherry, strawberry)~^~TSTR PSTRS,FRT,TSTD (INCL APPL,BLUEBERRY,CHERRY,STRAWBERRY)~^^^^^0^^^^^ -~18940~^~1800~^~Muffin, blueberry, commercially prepared, low-fat~^~MUFFIN,BLUEBERRY,COMMLY PREP,LOW-FAT~^^^~Y~^^0^^^^^ -~18942~^~1800~^~Pie Crust, Cookie-type, Graham Cracker, Ready Crust~^~PIE CRUST,COOKIE-TYPE,GRAHAM CRACKER,READY CRUST~^^^~Y~^^0^^^^^ -~18943~^~1800~^~Pie Crust, Cookie-type, Chocolate, Ready Crust~^~PIE CRUST,COOKIE-TYPE,CHOC,READY CRUST~^^^~Y~^^0^^^^^ -~18944~^~1800~^~Pie, Dutch Apple, Commercially Prepared~^~PIE,DUTCH APPL,COMMLY PREP~^^^^^0^^^^^ -~18945~^~1800~^~Pie crust, deep dish, frozen, unbaked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,UNBAKED,MADE W/ ENR FLR~^^^^^0^^^^^ -~18946~^~1800~^~Pie crust, refrigerated, regular, baked~^~PIE CRUST,REFR,REG,BKD~^^^^^0^^^^^ -~18947~^~1800~^~Pie crust, deep dish, frozen, baked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,BKD,MADE W/ ENR FLR~^^^^^0^^^^^ -~18948~^~1800~^~Pie crust, refrigerated, regular, unbaked~^~PIE CRUST,REFR,REG,UNBAKED~^^^^^0^^^^^ -~18949~^~1800~^~Crackers, whole-wheat, reduced fat~^~CRACKERS,WHOLE-WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18950~^~1800~^~Crackers, wheat, reduced fat~^~CRACKERS,WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18951~^~1800~^~Waffles, chocolate chip, frozen, ready-to-heat~^~WAFFLES,CHOC CHIP,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~18952~^~1800~^~Tostada shells, corn~^~TOSTADA SHELLS,CORN~^~Latino food~^^^^0^^^^^ -~18953~^~1800~^~Bread, salvadoran sweet cheese (quesadilla salvadorena)~^~BREAD,SALVADORAN SWT CHS (QUESADILLA SALVADORENA)~^~Latino food~^^~Y~^^0^^6.25^^^ -~18954~^~1800~^~Bread, pound cake type, pan de torta salvadoran~^~BREAD,POUND CAKE TYPE,PAN DE TORTA SALVADORAN~^~Latino food~^^^^0^^^^^ -~18955~^~1800~^~Bread, pan dulce, sweet yeast bread~^~BREAD,PAN DULCE,SWT YEAST BREAD~^~Latino food~^^~Y~^^0^^^^^ -~18956~^~1800~^~Keikitos (muffins), Latino bakery item~^~KEIKITOS (MUFFINS),LATINO BAKERY ITEM~^^^^^0^^6.25^^^ -~18957~^~1800~^~Cake, pound, Bimbo Bakeries USA, Panque Casero, home baked style~^~CAKE,POUND,BIMBO BAKERIES USA,PANQUE CASERO,HOME BKD STYLE~^~Latino food~^~Bimbo Bakeries USA~^^^0^^6.25^4.00^9.00^4.00 -~18958~^~1800~^~Pan Dulce, La Ricura, Salpora de Arroz con Azucar, cookie-like, contains wheat flour and rice flour~^~PAN DULCE,LA RICURA,SLPORA DE ARROZ CON AZUCAR, WHEAT&RC FLR~^~Latino rice cookies~^~Quesos La Ricura, Ltd.~^^^0^^6.25^^^ -~18959~^~1800~^~Pastry, Pastelitos de Guava (guava pastries)~^~PASTRY,PASTELITOS DE GUAVA (GUAVA PASTRIES)~^~Latino food, pastelios de guava, turnovers~^^^^0^^^^^ -~18960~^~1800~^~Crackers, snack, Goya Crackers~^~CRACKERS,SNACK,GOYA CRACKERS~^~Latino food~^^^^0^^6.25^^^ -~18961~^~1800~^~Crackers, cream, Gamesa Sabrosas~^~CRACKERS,CRM,GAMESA SABROSAS~^~Latino food~^~Pepsico Mexico~^^^0^^^^^ -~18962~^~1800~^~Crackers, cream, La Moderna Rikis Cream Crackers~^~CRACKERS,CRM,LA MODERNA RIKIS CRM CRACKERS~^^^^^0^^^^^ -~18963~^~1800~^~Garlic bread, frozen~^~GARLIC BREAD,FRZ~^^^~Y~^^0^^^^^ -~18964~^~1800~^~Cinnamon buns, frosted (includes honey buns)~^~CINNAMON BUNS,FRSTD (INCLUDES HONEY BUNS)~^^^~Y~^^0^^^^^ -~18965~^~1800~^~Crackers, cheese, reduced fat~^~CRACKERS,CHS,RED FAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18966~^~1800~^~Crackers, saltines, whole wheat (includes multi-grain)~^~CRACKERS,SALTINES,WHL WHEAT (INCLUDES MULTI-GRAIN)~^^^~Y~^^0^^^^^ -~18967~^~1800~^~Bread, white wheat~^~BREAD,WHITE WHEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18968~^~1800~^~Bagels, wheat~^~BAGELS,WHEAT~^^^~Y~^^0^^^^^ -~18969~^~1800~^~Cream puff, eclair, custard or cream filled, iced~^~CREAM PUFF,ECLAIR,CUSTARD OR CRM FILLED,ICED~^^^~Y~^^0^^^^^ -~18970~^~1800~^~Tortillas, ready-to-bake or -fry, flour, shelf stable~^~TORTILLAS,RTB OR -FRY,FLR,SHELF STABLE~^^^~Y~^^0^^6.25^^^ -~18971~^~1800~^~Bread, potato~^~BREAD,POTATO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18972~^~1800~^~Bread, cheese~^~BREAD,CHS~^^^~Y~^^0^^^^^ -~18973~^~1800~^~Focaccia, Italian flatbread, plain~^~FOCACCIA,ITALIAN FLATBREAD,PLN~^^^~Y~^^0^^^^^ -~19000~^~1900~^~SCHIFF,TIGER'S MILK BAR~^~SCHIFF,TIGER'S MILK BAR~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19001~^~1900~^~Candies, TOBLERONE, milk chocolate with honey and almond nougat~^~CANDIES,TOBLERONE,MILK CHOC W/ HONEY & ALMOND NOUGAT~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19002~^~2500~^~Snacks, beef jerky, chopped and formed~^~BEEF JERKY,CHOPD&FORMED~^^^~Y~^^0^^6.25^^^ -~19003~^~2500~^~Snacks, corn-based, extruded, chips, plain~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,PLN~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19004~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor~^~CORN-BASED,EXTRUDED,CHIPS,BARBECUE-FLAVOR~^^^^^0^^6.10^2.70^8.70^3.90 -~19005~^~2500~^~Snacks, corn-based, extruded, cones, plain~^~CORN-BASED,EXTRUDED,CONES,PLN~^^^^^0^^6.20^3.50^8.60^4.10 -~19007~^~2500~^~Snacks, corn-based, extruded, onion-flavor~^~SNACKS,CORN-BASED,EXTRUDED,ONION-FLAVOR~^^^~Y~^^0^^6.20^3.50^8.80^4.20 -~19008~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor~^~CORN-BASED,EXTRUDED,PUFFS OR TWISTS,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^4.00^8.80^4.10 -~19009~^~2500~^~Snacks, KRAFT, CORNNUTS, plain~^~CORNNUTS,PLAIN~^^~Kraft Foods, Inc.~^~Y~^^0^^6.25^2.70^8.70^4.00 -~19010~^~2500~^~Snacks, crisped rice bar, chocolate chip~^~CRISPED RICE BAR,CHOC CHIP~^^^^^0^^5.80^3.40^8.60^3.70 -~19013~^~1900~^~Snacks, fruit leather, pieces~^~FRUIT LEATHER,PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19014~^~1900~^~Snacks, fruit leather, rolls~^~FRUIT LEATHER,ROLLS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19015~^~2500~^~Snacks, granola bars, hard, plain~^~GRANOLA BARS,HARD,PLAIN~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~19016~^~2500~^~Snacks, granola bars, hard, almond~^~GRANOLA BARS,HARD,ALMOND~^^^^^0^^5.70^3.50^8.60^4.00 -~19017~^~2500~^~Snacks, granola bars, hard, chocolate chip~^~GRANOLA BARS,HARD,CHOC CHIP~^^^^^0^^5.80^3.40^8.50^3.80 -~19018~^~1900~^~Fruit syrup~^~FRUIT SYRUP~^^^~Y~^^0^^6.25^^^ -~19020~^~2500~^~Snacks, granola bars, soft, uncoated, plain~^~GRANOLA BARS,SOFT,UNCOATED,PLN~^^^^^0^^5.90^3.50^8.60^4.00 -~19021~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER~^^^^^0^^5.60^3.50^8.40^4.00 -~19022~^~2500~^~Snacks, granola bars, soft, uncoated, raisin~^~GRANOLA BARS,SOFT,UNCOATED,RAISIN~^^^^^0^^5.80^3.50^8.40^4.10 -~19024~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, chocolate chip~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,CHOC CHIP~^^^^^0^^6.10^3.50^8.60^3.60 -~19025~^~1900~^~Candies, honey-combed, with peanut butter~^~CANDIES,HONEY-COMBED,W/ PNUT BUTTER~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~19026~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, peanut butter~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,PNUT BUTTER~^^^~Y~^^0^^5.90^3.70^8.60^3.80 -~19027~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter and chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER&CHOC CHIP~^^^^^0^^5.60^3.40^8.40^3.70 -~19029~^~1900~^~Topping, SMUCKER'S MAGIC SHELL~^~TOPPING,SMUCKER'S MAGIC SHELL~^^^~Y~^^0^^6.25^^^ -~19030~^~1900~^~Syrup, fruit flavored~^~SYRUP,FRUIT FLAV~^^^~Y~^^0^^6.25^^^ -~19031~^~2500~^~Snacks, oriental mix, rice-based~^~ORIENTAL MIX,RICE-BASED~^^^~Y~^^0^^0.00^^^ -~19034~^~2500~^~Snacks, popcorn, air-popped~^~POPCORN,AIR-POPPED~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~19035~^~2500~^~Snacks, popcorn, oil-popped, microwave, regular flavor, no trans fat~^~SNACKS,POPCORN,OIL-POPPED,MICROWAVE,REG FLAVOR,NO TRANS FAT~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19036~^~2500~^~Snacks, popcorn, cakes~^~POPCORN,CAKES~^^^~Y~^^0^^6.10^3.00^8.40^4.10 -~19038~^~2500~^~Snacks, popcorn, caramel-coated, with peanuts~^~POPCORN,CARAMEL-COATED,W/PNUTS~^^^~Y~^^0^^5.90^3.00^8.50^3.90 -~19039~^~2500~^~Snacks, popcorn, caramel-coated, without peanuts~^~POPCORN,CARAMEL-COATED,WO/PNUTS~^^^~Y~^^0^^6.20^2.70^8.80^3.90 -~19040~^~2500~^~Snacks, popcorn, cheese-flavor~^~POPCORN,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^3.00^8.80^4.00 -~19041~^~2500~^~Snacks, pork skins, plain~^~PORK SKINS,PLAIN~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~19042~^~2500~^~Snacks, potato chips, barbecue-flavor~^~POTATO CHIPS,BARBECUE-FLAVOR~^^^~Y~^^0^^6.10^2.40^8.70^3.60 -~19043~^~2500~^~Snacks, potato chips, sour-cream-and-onion-flavor~^~POTATO CHIPS,SOUR-CREAM-AND-ONION-FLAVOR~^^^^^0^^6.30^3.90^8.80^3.90 -~19045~^~2500~^~Snacks, potato chips, made from dried potatoes, reduced fat~^~POTATO CHIPS,MADE FROM DRIED POTATOES,LT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19046~^~2500~^~Snacks, potato chips, made from dried potatoes, sour-cream and onion-flavor~^~POTATO CHIPS,MADE FR DRIED POTATOES,SOUR-CREAM&ONION-FLAVOR~^^^^^0^^6.30^3.30^8.80^3.90 -~19047~^~2500~^~Snacks, pretzels, hard, plain, salted~^~PRETZELS,HARD,PLN,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19048~^~2500~^~Snacks, pretzels, hard, confectioner's coating, chocolate-flavor~^~PRETZELS,HARD,CONFECTIONER'S COATING,CHOCOLATE-FLAVOR~^^^~Y~^^0^^5.80^3.80^8.70^4.00 -~19049~^~2500~^~Snacks, M&M MARS, COMBOS Snacks Cheddar Cheese Pretzel~^~SNACKS,M&M MARS,COMBOS SNACKS CHEDDAR CHS PRETZEL~^^^~Y~^^0^^6.25^^^ -~19050~^~2500~^~Snacks, pretzels, hard, whole-wheat including both salted and unsalted~^~SNACKS,PRETZELS,HARD,WHOLE-WHEAT INCL BOTH SALTED & UNSALTED~^^^^^0^^5.80^3.50^8.50^3.70 -~19051~^~2500~^~Snacks, rice cracker brown rice, plain~^~SNACKS,RICE CRACKER BROWN RICE,PLN~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19052~^~2500~^~Snacks, rice cakes, brown rice, buckwheat~^~RICE CAKES,BROWN RICE,BUCKWHEAT~^^^^^0^^6.10^3.40^8.40^4.00 -~19053~^~2500~^~Snacks, rice cakes, brown rice, sesame seed~^~RICE CAKES,BROWN RICE,SESAME SD~^^^^^0^^5.90^3.10^8.40^4.10 -~19056~^~2500~^~Snacks, tortilla chips, plain, white corn, salted~^~TORTILLA CHIPS,PLAIN~^^^~Y~^^0^^6.20^2.70^8.80^4.00 -~19057~^~2500~^~Snacks, tortilla chips, nacho cheese~^~Snacks, tortilla chips, nacho cheese~^^^~Y~^^0^^6.25^^^ -~19058~^~2500~^~Snacks, tortilla chips, ranch-flavor~^~SNACKS,TORTILLA CHIPS,RANCH-FLAVOR~^^^^^0^^6.25^^^ -~19059~^~2500~^~Snacks, trail mix, regular~^~TRAIL MIX,REGULAR~^^^^^0^^5.40^3.50^8.40^3.70 -~19061~^~2500~^~Snacks, trail mix, tropical~^~TRAIL MIX,TROPICAL~^^^^^0^^0.00^^^ -~19062~^~2500~^~Snacks, trail mix, regular, with chocolate chips, salted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,SALTED NUTS&SEEDS~^^^~Y~^^0^^5.50^3.50^8.40^3.70 -~19063~^~2500~^~Snacks, tortilla chips, taco-flavor~^~TORTILLA CHIPS,TACO-FLAVOR~^^^^^0^^6.20^2.90^8.70^3.90 -~19064~^~1900~^~Candies, TOOTSIE ROLL, chocolate-flavor roll~^~CANDIES,TOOTSIE ROLL,CHOCOLATE-FLAVOR ROLL~^^^^^0^^6.25^4.00^9.00^4.00 -~19065~^~1900~^~Candies, ALMOND JOY Candy Bar~^~CANDIES,ALMOND JOY CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19067~^~1900~^~Candies, TWIZZLERS CHERRY BITES~^~CANDIES,TWIZZLERS CHERRY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19068~^~1900~^~Candies, NESTLE, BIT-O'-HONEY Candy Chews~^~CANDIES,NESTLE,BIT-O'-HONEY CANDY CHEWS~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19069~^~1900~^~Candies, NESTLE, BUTTERFINGER Bar~^~CANDIES,NESTLE,BUTTERFINGER BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.27^8.79^3.87 -~19070~^~1900~^~Candies, butterscotch~^~CANDIES,BUTTERSCOTCH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19071~^~1900~^~Candies, carob, unsweetened~^~CANDIES,CAROB,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19074~^~1900~^~Candies, caramels~^~CANDIES,CARAMELS~^^^~Y~^^0^^6.40^4.30^8.60^3.80 -~19075~^~1900~^~Candies, CARAMELLO Candy Bar~^~CANDIES,CARAMELLO CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19076~^~1900~^~Candies, caramels, chocolate-flavor roll~^~CANDIES, CARAMELS, CHOCOLATE-FLAVOR ROLL~^^^~Y~^^0^^6.25^^^ -~19077~^~1900~^~Baking chocolate, unsweetened, liquid~^~BAKING CHOC,UNSWTND,LIQ~^^^^^0^^5.63^1.83^8.40^1.33 -~19078~^~1900~^~Baking chocolate, unsweetened, squares~^~Baking chocolate, unsweetened, squares~^^^~Y~^^0^^^^^ -~19079~^~1900~^~Candies, confectioner's coating, yogurt~^~CANDIES,CONFECTIONER'S COATING,YOGURT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19080~^~1900~^~Candies, semisweet chocolate~^~CANDIES,SEMISWEET CHOC~^^^~Y~^^0^^5.63^1.83^8.50^3.40 -~19081~^~1900~^~Candies, sweet chocolate~^~CANDIES,SWEET CHOCOLATE~^^^~Y~^^0^^5.63^1.83^8.60^3.40 -~19083~^~1900~^~Candies, sweet chocolate coated fondant~^~CANDIES,SWT CHOC COATD FONDANT~^^^~Y~^^0^^5.90^3.10^8.40^3.50 -~19084~^~1900~^~Candies, HERSHEY'S GOLDEN ALMOND SOLITAIRES~^~CANDIES,HERSHEY'S GOLDEN ALMOND SOLITAIRES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19085~^~1900~^~Candies, confectioner's coating, butterscotch~^~CANDIES,CONFECTIONER'S COATING,BUTTERSCOTCH~^^^~Y~^^0^^6.38^4.00^9.00^4.00 -~19086~^~1900~^~Candies, confectioner's coating, peanut butter~^~CANDIES,CONFECTIONER'S COATING,PNUT BUTTER~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19087~^~1900~^~Candies, white chocolate~^~CANDIES,WHITE CHOC~^~confectioner's coating~^^~Y~^^0^^6.38^4.30^8.80^3.90 -~19088~^~1900~^~Ice creams, vanilla, light~^~ICE CREAMS,VANILLA,LT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19089~^~1900~^~Ice creams, vanilla, rich~^~ICE CREAMS,VANILLA,RICH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19090~^~1900~^~Ice creams, french vanilla, soft-serve~^~ICE CREAMS,FRENCH VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19091~^~1900~^~Candies, YORK Peppermint Pattie~^~CANDIES,YORK PEPPERMINT PATTIE~^^~Hershey Food Corp.~^^^0^^6.38^3.47^8.37^4.07 -~19092~^~1900~^~Candies, TWIZZLERS NIBS CHERRY BITS~^~CANDIES,TWIZZLERS NIBS CHERRY BITS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19093~^~1900~^~Candies, SYMPHONY Milk Chocolate Bar~^~CANDIES,SYMPHONY MILK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19094~^~1900~^~Desserts, flan, caramel custard, prepared-from-recipe~^~DESSERTS,FLAN,CARAMEL CUSTARD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19095~^~1900~^~Ice creams, vanilla~^~ICE CREAMS,VANILLA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19096~^~1900~^~Ice creams, vanilla, light, soft-serve~^~ICE CREAMS,VANILLA,LT,SOFT-SERVE~^^^~Y~^^0^^6.40^4.10^8.79^3.80 -~19097~^~1900~^~Sherbet, orange~^~SHERBET,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19098~^~1900~^~Candies, 5TH AVENUE Candy Bar~^~CANDIES,5TH AVENUE CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19099~^~1900~^~Candies, fondant, prepared-from-recipe~^~CANDIES,FONDANT,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19100~^~1900~^~Candies, fudge, chocolate, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19101~^~1900~^~Candies, fudge, chocolate, with nuts, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,W/ NUTS,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19102~^~1900~^~Candies, fudge, peanut butter, prepared-from-recipe~^~CANDIES,FUDGE,PNUT BUTTER,PREPARED-FROM-RECIPE~^^^^^0^^6.25^^^ -~19103~^~1900~^~Candies, fudge, vanilla, prepared-from-recipe~^~CANDIES,FUDGE,VANILLA,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19104~^~1900~^~Candies, fudge, vanilla with nuts~^~CANDIES,FUDGE,VANILLA W/ NUTS~^^^~Y~^^0^^6.25^^^ -~19105~^~1900~^~Candies, NESTLE, GOOBERS Chocolate Covered Peanuts~^~CANDIES,NESTLE,GOOBERS CHOC COVERED PNUTS~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19106~^~1900~^~Candies, gumdrops, starch jelly pieces~^~CANDIES,GUMDROPS,STARCH JELLY PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19107~^~1900~^~Candies, hard~^~CANDIES,HARD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19108~^~1900~^~Candies, jellybeans~^~CANDIES,JELLYBEANS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19109~^~1900~^~Candies, KIT KAT Wafer Bar~^~CANDIES,KIT KAT WAFER BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19110~^~1900~^~Candies, KRACKEL Chocolate Bar~^~CANDIES,KRACKEL CHOC BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19111~^~1900~^~Candies, NESTLE, BABY RUTH Bar~^~CANDIES,NESTLE,BABY RUTH BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19112~^~1900~^~Candies, TWIZZLERS Strawberry Twists Candy~^~CANDIES,TWIZZLERS STRAWBERRY TWISTS CANDY~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19113~^~1900~^~Syrups, table blends, pancake, with butter~^~SYRUPS,TABLE BLENDS,PANCAKE,W/BUTTER~^^^~Y~^^0^^6.25^^^ -~19114~^~1900~^~Ice creams, chocolate, light~^~ICE CREAMS,CHOC,LT~^^^~Y~^^0^^6.25^^^ -~19115~^~1900~^~Candies, MARS SNACKFOOD US, MARS Almond Bar~^~CANDIES,MARS SNACKFOOD US,MARS ALMOND BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^3.70^8.60^3.80 -~19116~^~1900~^~Candies, marshmallows~^~CANDIES,MARSHMALLOWS~^^^~Y~^^0^^5.60^3.90^8.40^3.80 -~19117~^~1900~^~Candies, halavah, plain~^~CANDIES,HALAVAH,PLAIN~^^^^^0^^5.80^4.00^8.50^3.90 -~19118~^~1900~^~Candies, NESTLE, OH HENRY! Bar~^~CANDIES,NESTLE,OH HENRY! BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19119~^~1900~^~Candies, NESTLE, CHUNKY Bar~^~CANDIES,NESTLE,CHUNKY BAR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19120~^~1900~^~Candies, milk chocolate~^~CANDIES,MILK CHOC~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19121~^~1900~^~Puddings, banana, dry mix, instant, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19122~^~1900~^~Puddings, banana, dry mix, regular, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19123~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19124~^~1900~^~Baking chocolate, mexican, squares~^~BAKING CHOC,MEXICAN,SQUARES~^^^~Y~^^0^^6.25^2.00^8.40^3.70 -~19125~^~1900~^~Chocolate-flavored hazelnut spread~^~CHOCOLATE-FLAVORED HAZELNUT SPRD~^^^~Y~^^0^^6.25^^^ -~19126~^~1900~^~Candies, milk chocolate coated peanuts~^~CANDIES,MILK CHOC COATD PNUTS~^^^~Y~^^0^^5.80^3.60^8.60^3.70 -~19127~^~1900~^~Candies, milk chocolate coated raisins~^~CANDIES,MILK CHOC COATD RAISINS~^^^~Y~^^0^^6.20^3.60^8.70^3.60 -~19128~^~1900~^~Syrups, table blends, pancake, reduced-calorie~^~SYRUPS,TABLE BLENDS,PANCAKE,RED-CAL~^^^~Y~^^0^^6.25^^^3.70 -~19129~^~1900~^~Syrups, table blends, pancake~^~SYRUPS,TABLE BLENDS,PANCAKE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19130~^~1900~^~Candies, HERSHEY'S POT OF GOLD Almond Bar~^~CANDIES,HERSHEY'S POT OF GOLD ALMOND BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19132~^~1900~^~Candies, milk chocolate, with almonds~^~CANDIES,MILK CHOC,W/ALMONDS~^^^~Y~^^0^^5.90^3.60^8.60^3.70 -~19134~^~1900~^~Candies, milk chocolate, with rice cereal~^~CANDIES,MILK CHOC,W/RICE CRL~^^^~Y~^^0^^6.20^3.70^8.70^3.80 -~19135~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19136~^~1900~^~Candies, HERSHEY'S SKOR Toffee Bar~^~CANDIES,HERSHEY'S SKOR TOFFEE BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19137~^~1900~^~Toppings, strawberry~^~TOPPINGS,STRAWBERRY~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19138~^~1900~^~Candies, truffles, prepared-from-recipe~^~CANDIES,TRUFFLES,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19139~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Semisweet Chocolate Mini Baking Bits~^~BAK CHOC,MARS SNACKFOOD US,M&M'S SEMISWT CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19140~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^5.46^3.47^8.37^4.07 -~19141~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MILK CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19142~^~1900~^~Candies, MOUNDS Candy Bar~^~CANDIES,MOUNDS CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19143~^~1900~^~Candies, MR. GOODBAR Chocolate Bar~^~CANDIES,MR. GOODBAR CHOC BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19144~^~1900~^~Candies, NESTLE, 100 GRAND Bar~^~CANDIES,NESTLE,100 GRAND BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19145~^~1900~^~Candies, NESTLE, CRUNCH Bar and Dessert Topping~^~CANDIES,NESTLE,CRUNCH BAR&DSSRT TOPPING~^^~Nestle USA, Inc.~^^^0^^^^^ -~19146~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Milk Chocolate Mini Baking Bits~^~BAKING CHOC,MARS SNACKFOOD US,M&M'S MILK CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19147~^~1900~^~Candies, peanut bar~^~CANDIES,PEANUT BAR~^^^~Y~^^0^^5.50^3.50^8.40^3.90 -~19148~^~1900~^~Candies, peanut brittle, prepared-from-recipe~^~CANDIES,PNUT BRITTLE,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19149~^~1900~^~Candies, NESTLE, RAISINETS Chocolate Covered Raisins~^~CANDIES,NESTLE,RAISINETS CHOC COVERED RAISINS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19150~^~1900~^~Candies, REESE'S Peanut Butter Cups~^~CANDIES,REESE'S PNUT BUTTER CUPS~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19151~^~1900~^~Candies, REESE'S PIECES Candy~^~CANDIES,REESE'S PIECES CANDY~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19152~^~1900~^~Candies, ROLO Caramels in Milk Chocolate~^~CANDIES,ROLO CARAMELS IN MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19153~^~1900~^~Candies, NESTLE, AFTER EIGHT Mints~^~CANDIES,NESTLE,AFTER EIGHT MINTS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19154~^~1900~^~Candies, sesame crunch~^~CANDIES,SESAME CRUNCH~^^^~Y~^^0^^5.30^3.50^8.40^3.90 -~19155~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS BAR~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19156~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Original fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,ORIG FRUIT~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19157~^~1900~^~Candies, MARS SNACKFOOD US, M&M's MINIs Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MINIS MILK CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19159~^~1900~^~Candies, MARS SNACKFOOD US, 3 MUSKETEERS Bar~^~CANDIES,MARS SNACKFOOD US,3 MUSKETEERS BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19160~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Caramel Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX CARAMEL COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19161~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Peanut Butter Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX PNUT BUTTER COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19162~^~1900~^~Candies, WHATCHAMACALLIT Candy Bar~^~CANDIES,WHATCHAMACALLIT CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19163~^~1900~^~Chewing gum~^~CHEWING GUM~^~bubble gum~^^~Y~^^0^^6.25^1.82^8.37^3.70 -~19164~^~1900~^~Candies, SPECIAL DARK Chocolate Bar~^~CANDIES,SPL DK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19165~^~1900~^~Cocoa, dry powder, unsweetened~^~COCOA,DRY PDR,UNSWTND~^^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19166~^~1900~^~Cocoa, dry powder, unsweetened, processed with alkali~^~COCOA,DRY PDR,UNSWTND,PROC W/ALKALI~^~Dutch cocoa~^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19168~^~1900~^~Desserts, egg custard, baked, prepared-from-recipe~^~DESSERTS,EGG CUSTARD,BKD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19169~^~1900~^~Egg custards, dry mix~^~EGG CUSTARDS,DRY MIX~^^^^^0^^6.30^4.30^9.00^3.90 -~19170~^~1900~^~Egg custards, dry mix, prepared with whole milk~^~EGG CUSTARDS,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19171~^~1900~^~Cocoa, dry powder, unsweetened, HERSHEY'S European Style Cocoa~^~COCOA,DRY PDR,UNSWTND,HERSHEY'S EUROPEAN STYLE COCOA~^^~Hershey Food Corp.~^^^0^^^^^ -~19172~^~1900~^~Gelatin desserts, dry mix~^~GELATIN DSSRT,DRY MIX~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19173~^~1900~^~Gelatin desserts, dry mix, prepared with water~^~GELATIN DSSRT,DRY MIX,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19175~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT~^^^~Y~^^0^^5.55^0.00^0.00^2.47 -~19176~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, prepared with water~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19177~^~1900~^~Gelatins, dry powder, unsweetened~^~GELATINS,DRY PDR,UNSWTND~^^^~Y~^^0^^5.55^3.90^9.02^ -~19181~^~1900~^~Candies, YORK BITES~^~CANDIES,YORK BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19182~^~1900~^~Desserts, mousse, chocolate, prepared-from-recipe~^~DESSERTS,MOUSSE,CHOC,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19183~^~1900~^~Puddings, chocolate, ready-to-eat~^~PUDDINGS,CHOC,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19184~^~1900~^~Puddings, chocolate, dry mix, instant~^~PUDDINGS,CHOC,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19185~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19186~^~1900~^~Desserts, apple crisp, prepared-from-recipe~^~DESSERTS,APPL CRISP,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19187~^~1900~^~Flan, caramel custard, dry mix~^~FLAN,CARAMEL CUSTARD,DRY MIX~^^^^^0^^6.25^1.80^8.40^3.80 -~19188~^~1900~^~Puddings, chocolate, dry mix, regular~^~DESSERTS,PUDD,CHOC,DRY MIX,REG~^^^~Y~^^0^^5.60^1.90^8.40^3.80 -~19189~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHOLE MILK~^^^~Y~^^0^^5.60^^^ -~19190~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19191~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19193~^~1900~^~Puddings, rice, ready-to-eat~^~Puddings, rice, ready-to-eat~^^^~Y~^^0^^6.25^^^ -~19194~^~1900~^~Puddings, rice, dry mix~^~PUDDINGS,RICE,DRY MIX~^^^^^0^^6.00^3.80^8.40^4.00 -~19195~^~1900~^~Puddings, rice, dry mix, prepared with whole milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19198~^~1900~^~Puddings, tapioca, dry mix~^~PUDDINGS,TAPIOCA,DRY MIX~^^^^^0^^6.25^3.00^8.40^3.90 -~19199~^~1900~^~Puddings, tapioca, dry mix, prepared with whole milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19201~^~1900~^~Puddings, vanilla, ready-to-eat~^~PUDDINGS,VANILLA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19202~^~1900~^~Puddings, vanilla, dry mix, instant~^~PUDDINGS,VANILLA,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19203~^~1900~^~Puddings, vanilla, dry mix, instant, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19204~^~1900~^~Puddings, lemon, dry mix, instant, prepared with 2% milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19205~^~1900~^~Egg custards, dry mix, prepared with 2% milk~^~EGG CUSTARDS,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19206~^~1900~^~Puddings, vanilla, dry mix, regular~^~PUDDINGS,VANILLA,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19207~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ WHL MILK~^^^~Y~^^0^^6.25^^^ -~19208~^~1900~^~Puddings, rice, dry mix, prepared with 2% milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19209~^~1900~^~Puddings, tapioca, dry mix, prepared with 2% milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19212~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with 2% milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19213~^~1900~^~Rennin, chocolate, dry mix, prepared with 2% milk~^~RENNIN,CHOC,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19214~^~1900~^~Rennin, vanilla, dry mix, prepared with 2% milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19216~^~1900~^~Candies, praline, prepared-from-recipe~^~CANDIES,PRALINE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19217~^~1900~^~Frozen novelties, ice type, fruit, no sugar added~^~FROZEN NOVELTIES,ICE TYPE,FRUIT,NO SUGAR ADDED~^^^^^0^^5.60^3.90^9.00^3.50 -~19218~^~1900~^~Puddings, tapioca, ready-to-eat~^~PUDDINGS,TAPIOCA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19219~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19220~^~1900~^~Desserts, rennin, chocolate, dry mix~^~DESSERTS,RENNIN,CHOC,DRY MIX~^^^^^0^^5.60^2.20^8.37^3.60 -~19221~^~1900~^~Rennin, chocolate, dry mix, prepared with whole milk~^~RENNIN,CHOC,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19222~^~1900~^~Desserts, rennin, vanilla, dry mix~^~DESSERTS,RENNIN,VANILLA,DRY MIX~^^^^^0^^5.60^3.90^9.00^3.90 -~19223~^~1900~^~Rennin, vanilla, dry mix, prepared with whole milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19225~^~1900~^~Desserts, rennin, tablets, unsweetened~^~DESSERTS,RENNIN,TABLETS,UNSWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~19226~^~1900~^~Frostings, chocolate, creamy, ready-to-eat~^~FROSTINGS,CHOC,CREAMY,RTE~^^^~Y~^^0^^5.60^1.80^8.80^3.80 -~19227~^~1900~^~Frostings, coconut-nut, ready-to-eat~^~FROSTINGS,COCONUT-NUT,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19228~^~1900~^~Frostings, cream cheese-flavor, ready-to-eat~^~FROSTINGS,CRM CHEESE-FLAVOR,RTE~^^^^^0^^5.80^4.10^8.80^3.90 -~19230~^~1900~^~Frostings, vanilla, creamy, ready-to-eat~^~FROSTINGS,VANILLA,CREAMY,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19231~^~1900~^~Flan, caramel custard, dry mix, prepared with 2% milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19232~^~1900~^~Flan, caramel custard, dry mix, prepared with whole milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19233~^~1900~^~Puddings, vanilla, ready-to-eat, fat free~^~PUDDINGS,VANILLA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19234~^~1900~^~Puddings, tapioca, ready-to-eat, fat free~^~PUDDINGS,TAPIOCA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19235~^~1900~^~Puddings, chocolate, ready-to-eat, fat free~^~PUDDINGS,CHOC,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19236~^~1900~^~Candies, HERSHEY'S MILK CHOCOLATE WITH ALMOND BITES~^~CANDIES,HERSHEY'S MILK CHOC W/ ALMOND BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19238~^~1900~^~Candies, REESE'S BITES~^~CANDIES,REESE'S BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19239~^~1900~^~Candies, REESE'S NUTRAGEOUS Candy Bar~^~CANDIES,REESE'S NUTRAGEOUS CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19240~^~1900~^~Frostings, chocolate, creamy, dry mix~^~FROSTINGS,CHOC,CREAMY,DRY MIX~^^^^^0^^5.60^1.80^8.80^3.70 -~19241~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with butter~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ BUTTER~^^^^^0^^^^^ -~19243~^~1900~^~Candies, HEATH BITES~^~CANDIES,HEATH BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19244~^~1900~^~Frostings, vanilla, creamy, dry mix~^~FROSTINGS,VANILLA,CREAMY,DRY MIX~^^^^^0^^6.25^3.46^8.80^3.90 -~19246~^~1900~^~Frostings, white, fluffy, dry mix~^~FROSTINGS,WHITE,FLUFFY,DRY MIX~^^^^^0^^6.10^4.30^8.60^3.80 -~19247~^~1900~^~Frostings, white, fluffy, dry mix, prepared with water~^~FROSTINGS,WHITE,FLUFFY,DRY MIX,PREP W/H2O~^^^^^0^^0.00^^^ -~19248~^~1900~^~Candies, HERSHEY'S, ALMOND JOY BITES~^~CANDIES,HERSHEY'S,ALMOND JOY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19249~^~1900~^~Candies, HERSHEY, REESESTICKS crispy wafers, peanut butter, milk chocolate~^~CANDIES,HERSHEY,REESESTICKS CRISPY WAFERS,PNUT BUT,MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19250~^~1900~^~Candies, HERSHEY, KIT KAT BIG KAT Bar~^~CANDIES,HERSHEY,KIT KAT BIG KAT BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19252~^~1900~^~Candies, REESE'S, FAST BREAK, milk chocolate peanut butter and soft nougats~^~CANDIES,REESE'S,FAST BREAK,MILK CHOC PNT BTR & SFT NUGTS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19254~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Milk Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE MILK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19255~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Dark Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE DK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19256~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels, milk chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKYWAYCARAML,MILKCHOCOV~^^~Masterfoods USA~^^^0^^^^^ -~19258~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels. dark chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKY WAY CARML. DKCHOCCOV~^^~Masterfoods USA~^^^0^^^^^ -~19260~^~1900~^~Ice creams, vanilla, light, no sugar added~^~ICE CREAMS,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19263~^~1900~^~Frozen novelties, fruit and juice bars~^~FROZEN NOVELTIES,FRUIT & JUC BARS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19265~^~1900~^~Ice creams, chocolate, light, no sugar added~^~ICE CREAMS,CHOC,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^^^ -~19268~^~1900~^~Candies, dark chocolate coated coffee beans~^~CANDIES,DK CHOC COATD COFFEE BNS~^^^^^0^^6.25^4.00^9.00^4.00 -~19269~^~2500~^~Snacks, GENERAL MILLS, BETTY CROCKER Fruit Roll Ups, berry flavored, with vitamin C~^~SNACKS,GENERAL MILLS,BETTY CROCKER FRT RL UPS,BRY FLV,W/VT C~^^^^^0^^^4.00^9.00^4.00 -~19270~^~1900~^~Ice creams, chocolate~^~ICE CREAMS,CHOC~^^^~Y~^^0^^6.10^3.60^8.80^3.70 -~19271~^~1900~^~Ice creams, strawberry~^~ICE CREAMS,STRAWBERRY~^^^^^0^^6.40^4.10^8.79^3.80 -~19272~^~2500~^~Snacks, FARLEY CANDY, FARLEY Fruit Snacks, with vitamins A, C, and E~^~SNACKS,FARLEY CANDY,FARLEY FRUIT SNACKS,W/VITAMINS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19273~^~2500~^~Snacks, SUNKIST, SUNKIST Fruit Roll, strawberry, with vitamins A, C, and E~^~SNACKS,SUNKIST,SUNKIST FRUIT ROLL,STRAWBERRY,W/VITMNS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19274~^~2500~^~Snacks, fruit leather, pieces, with vitamin C~^~SNACKS,FRUIT LEATHER,PIECES,W/VIT C~^^^^^0^^^^^ -~19279~^~1900~^~Candies, milk chocolate coated coffee beans~^~CANDIES,MILK CHOC COATD COFFEE BNS~^^^~Y~^^0^^^^^ -~19280~^~1900~^~Frozen novelties, ice type, lime~^~FROZEN NOVELTIES,ICE TYPE,LIME~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~19281~^~1900~^~Frozen novelties, ice type, italian, restaurant-prepared~^~FROZEN NOVELTIES,ICE TYPE,ITALIAN,REST-PREP~^^^^^0^^6.25^3.36^8.37^3.90 -~19283~^~1900~^~Frozen novelties, ice type, pop~^~FROZEN NOVELTIES,ICE TYPE,POP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19292~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Crispy Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S CRISPY CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19293~^~1900~^~Frozen yogurts, vanilla, soft-serve~^~FROZEN YOGURTS,VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19294~^~1900~^~Fruit butters, apple~^~FRUIT BUTTERS,APPLE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19295~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS MUNCH bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS MUNCH BAR~^^~Masterfoods USA~^^^0^^^^^ -~19296~^~1900~^~Honey~^~HONEY~^^^~Y~^^0^^6.25^3.36^8.37^3.68 -~19297~^~1900~^~Jams and preserves~^~JAMS AND PRESERVES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19300~^~1900~^~Jellies~^~JELLIES~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19301~^~1900~^~Candies, fudge, chocolate marshmallow, with nuts, prepared-by-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,W/ NUTS,PREPARED-BY-RECIPE~^^^^^0^^^^^ -~19302~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Almond bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS ALMOND BAR~^^~Masterfoods USA~^^^0^^^^^ -~19303~^~1900~^~Marmalade, orange~^~MARMALADE,ORANGE~^^^~Y~^^0^^6.25^3.40^8.40^3.70 -~19304~^~1900~^~Molasses~^~MOLASSES~^^^~Y~^^0^^6.25^^8.37^3.87 -~19306~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES SNICKERS Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP SNICKERS BITE SIZE CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19307~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES MILKY WAY Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP MILKY WAY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19308~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES 3 MUSKETEERS Brand Bite Size Candies~^~CANDIES,MARS SNACK US,POP'ABLES 3 MUSKETEERS BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19309~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Fruit and Creme~^~CANDIES,MARS SNACK US,STARBURST FRUIT CHEWS,FRT&CREM~^^~Masterfoods USA~^^^0^^^^^ -~19310~^~1900~^~Pectin, unsweetened, dry mix~^~PECTIN,UNSWTND,DRY MIX~^^^^^0^^6.25^^^3.60 -~19312~^~1900~^~Pie fillings, apple, canned~^~PIE FILLINGS,APPL,CND~^^^~Y~^^0^^6.25^3.40^8.40^3.80 -~19313~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Tropical fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,TROP~^^~Masterfoods USA~^^^0^^^^^ -~19314~^~1900~^~Pie fillings, canned, cherry~^~PIE FILLINGS,CND,CHERRY~^^^^^0^^6.25^4.00^9.00^4.00 -~19315~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Sour Fruit Chews~^~CANDIES,MARS SNACKFOOD US,STARBURST SOUR FRUIT CHEWS~^^~Masterfoods USA~^^^0^^^^^ -~19318~^~1900~^~Puddings, banana, dry mix, instant~^~PUDDINGS,BANANA,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19319~^~1900~^~Puddings, banana, dry mix, instant, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19320~^~1900~^~Puddings, banana, dry mix, regular~^~PUDDINGS,BANANA,DRY MIX,REG~^^^^^0^^6.20^3.50^8.40^3.90 -~19321~^~1900~^~Puddings, banana, dry mix, regular, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19322~^~1900~^~Puddings, coconut cream, dry mix, instant~^~DESSERTS,PUDD,COCNT CRM,DRY MIX,INST~^^^~Y~^^0^^5.40^3.60^8.60^3.90 -~19323~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19324~^~1900~^~Puddings, coconut cream, dry mix, regular~^~PUDDINGS,COCNT CRM,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19325~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19326~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19327~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Blueberry and Almond Chocolate Bar~^~CANDIES,MARS SNACK US,COCOAVIA BLUEBERRY & ALMOND CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19328~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Crispy Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CRISPY CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19330~^~1900~^~Puddings, lemon, dry mix, instant~^~PUDDINGS,LEMON,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19331~^~1900~^~Puddings, lemon, dry mix, instant, prepared with whole milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19332~^~1900~^~Puddings, lemon, dry mix, regular~^~PUDDINGS,LEMON,DRY MIX,REG~^^^^^0^^6.25^3.50^8.80^3.90 -~19333~^~1900~^~Pudding, lemon, dry mix, regular, prepared with sugar, egg yolk and water~^~PUDDING,LEMON,DRY MIX,REG,PREP W/ SUGAR,EGG YOLK & H2O~^^^^^0^^^^^ -~19334~^~1900~^~Sugars, brown~^~SUGARS,BROWN~^^^~Y~^^0^^6.25^4.00^0.00^3.87 -~19335~^~1900~^~Sugars, granulated~^~SUGARS,GRANULATED~^~sucrose~^^~Y~^^0^^6.25^^^3.87 -~19336~^~1900~^~Sugars, powdered~^~SUGARS,POWDERED~^^^~Y~^^0^^6.25^3.50^8.40^3.90 -~19337~^~1900~^~Sweeteners, tabletop, aspartame, EQUAL, packets~^~SWEETENERS,TABLETOP,ASPRT,EQ,PACKETS~^^~Merisant Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19340~^~1900~^~Sugars, maple~^~SUGARS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19345~^~1900~^~Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S GENUINE CHOC FLAV LITE SYRUP~^^~Hershey Food Corp.~^~Y~^^0^^^4.00^9.00^4.00 -~19348~^~1900~^~Syrups, chocolate, fudge-type~^~SYRUPS,CHOC,FUDGE-TYPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19349~^~1900~^~Syrups, corn, dark~^~SYRUPS,CORN,DK~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19350~^~1900~^~Syrups, corn, light~^~SYRUPS,CORN,LT~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19351~^~1900~^~Syrups, corn, high-fructose~^~SYRUPS,CORN,HIGH-FRUCTOSE~^^^~Y~^^0^^6.25^^^3.70 -~19352~^~1900~^~Syrups, malt~^~SYRUPS,MALT~^^^^^0^^6.25^3.87^8.37^4.12 -~19353~^~1900~^~Syrups, maple~^~SYRUPS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19355~^~1900~^~Syrups, sorghum~^~SYRUPS,SORGHUM~^^^~Y~^^0^^6.25^^^3.87 -~19359~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS CRUNCHER~^~CANDIES,MARS SNACKFOOD US,SNICKERS CRUNCHER~^^~Masterfoods USA~^^^0^^^^^ -~19360~^~1900~^~Syrups, table blends, pancake, with 2% maple~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19362~^~1900~^~Syrups, table blends, corn, refiner, and sugar~^~SYRUPS,TABLE BLENDS,CORN,REFINER,&SUGAR~^^^^^0^^6.25^3.36^8.37^3.80 -~19363~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Wild Berry Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES WILD BERRY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19364~^~1900~^~Toppings, butterscotch or caramel~^~TOPPINGS,BUTTERSCOTCH OR CARAMEL~^^^~Y~^^0^^6.38^4.27^8.80^3.70 -~19365~^~1900~^~Toppings, marshmallow cream~^~TOPPINGS,MARSHMLLW CRM~^^^~Y~^^0^^0.00^4.00^9.00^4.00 -~19366~^~1900~^~Toppings, pineapple~^~TOPPINGS,PINEAPPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19367~^~1900~^~Toppings, nuts in syrup~^~TOPPINGS,NUTS IN SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19368~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Tropical Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES TROPICAL BITE SIZE CAND~^^~Masterfoods USA~^^^0^^^^^ -~19369~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Sours Original~^~CANDIES,MARS SNACKFOOD US,SKITTLES SOURS ORIGINAL~^^~Masterfoods USA~^^^0^^^^^ -~19370~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Original Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES ORIGINAL BITE SIZE CAND~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19371~^~1900~^~Frostings, vanilla, creamy, dry mix, prepared with margarine~^~FROSTINGS,VANILLA,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19372~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with margarine~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19375~^~1900~^~Frostings, glaze, prepared-from-recipe~^~FROSTINGS,GLAZE,PREPARED-FROM-RECIPE~^^^^^0^^^^^ -~19379~^~1900~^~Candies, fudge, chocolate marshmallow, prepared-from-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19382~^~1900~^~Candies, taffy, prepared-from-recipe~^~CANDIES,TAFFY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19383~^~1900~^~Candies, toffee, prepared-from-recipe~^~CANDIES,TOFFEE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19384~^~1900~^~Candies, divinity, prepared-from-recipe~^~CANDIES,DIVINITY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19387~^~1900~^~Frozen novelties, ice type, pineapple-coconut~^~FROZEN NOVELTIES,ICE TYPE,PINEAPPLE-COCONUT~^^^^^0^^6.25^3.40^8.40^3.80 -~19393~^~1900~^~Frozen yogurts, chocolate, soft-serve~^~FROZEN YOGURTS,CHOC,SOFT-SERVE~^^^^^0^^6.20^3.60^8.70^3.70 -~19400~^~2500~^~Snacks, banana chips~^~BANANA CHIPS~^^^~Y~^^0^^6.25^3.40^8.60^3.80 -~19401~^~2500~^~Snacks, cornnuts, barbecue-flavor~^~CORNNUTS,BARBECUE-FLAVOR~^^^^^0^^6.20^2.70^8.70^4.00 -~19403~^~2500~^~Snacks, crisped rice bar, almond~^~CRISPED RICE BAR,ALMOND~^^^^^0^^5.60^3.50^8.60^4.00 -~19404~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP~^^^~Y~^^0^^5.80^3.40^8.40^3.70 -~19405~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip, graham and marshmallow~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP,GRAHAM&MARSHMLLW~^^^^^0^^5.80^3.40^8.40^3.90 -~19406~^~2500~^~Snacks, granola bars, soft, uncoated, nut and raisin~^~GRANOLA BARS,SOFT,UNCOATED,NUT&RAISIN~^^^^^0^^5.70^3.50^8.40^4.00 -~19407~^~2500~^~Snacks, beef sticks, smoked~^~SNACKS,BF STKS,SMOKED~^^^^^0^^6.20^4.10^9.00^2.90 -~19408~^~2500~^~Snacks, pork skins, barbecue-flavor~^~PORK SKINS,BARBECUE-FLAVOR~^^^^^0^^6.25^4.27^9.02^3.87 -~19409~^~1900~^~Frostings, glaze, chocolate, prepared-from-recipe, with butter, NFSMI Recipe No. C-32~^~FROSTING,GLAZ,CHC,PREP-FRM-RCIP,W/ BUTR,NFSMI RECIP NO. C-32~^^^^^0^^^^^ -~19410~^~2500~^~Snack, potato chips, made from dried potatoes, plain~^~POTATO CHIPS,MADE FROM DRIED POTATOES,PLN~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19411~^~2500~^~Snacks, potato chips, plain, salted~^~POTATO CHIPS,PLAIN,SALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19412~^~2500~^~Snacks, potato chips, made from dried potatoes, cheese-flavor~^~POTATO CHIPS,MADE FROM DRIED POTATOES,CHEESE-FLAVOR~^^^^^0^^6.30^3.30^8.80^4.00 -~19413~^~2500~^~Snacks, rice cakes, brown rice, corn~^~SNACKS,RICE CAKES,BROWN RICE,CORN~^^^^^0^^6.10^3.00^8.40^4.10 -~19414~^~2500~^~Snacks, rice cakes, brown rice, multigrain~^~RICE CAKES,BROWN RICE,MULTIGRAIN~^^^^^0^^5.90^3.40^8.40^4.10 -~19415~^~2500~^~Snacks, potato sticks~^~SNACKS,POTATO STKS~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~19416~^~2500~^~Snacks, rice cakes, brown rice, rye~^~RICE CAKES,BROWN RICE,RYE~^^^^^0^^5.90^3.30^8.40^4.10 -~19418~^~2500~^~Snacks, sesame sticks, wheat-based, salted~^~SESAME STKS,WHEAT-BASED,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^3.90 -~19419~^~2500~^~Snacks, corn cakes~^~CORN CAKES~^^^^^0^^6.10^3.10^8.40^4.10 -~19420~^~2500~^~Snacks, granola bars, hard, peanut butter~^~GRANOLA BARS,HARD,PNUT BUTTER~^^^^^0^^5.60^3.40^8.70^3.90 -~19421~^~2500~^~Snacks, potato chips, cheese-flavor~^~POTATO CHIPS,CHEESE-FLAVOR~^^^^^0^^6.30^3.00^8.80^4.00 -~19422~^~2500~^~Snacks, potato chips, reduced fat~^~SNACKS,POTATO CHIPS,RED FAT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19423~^~2500~^~Snacks, potato chips, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FAT-FREE,MADE W/OLESTRA~^^^~Y~^^0^^6.25^^^ -~19424~^~2500~^~Snacks, tortilla chips, nacho-flavor, reduced fat~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,RED FAT~^^^^^0^^6.30^2.90^8.80^4.00 -~19433~^~2500~^~Tortilla chips, low fat, baked without fat~^~TORTILLA CHIPS,LOFAT,BKD WO/FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.40 -~19434~^~2500~^~Cheese puffs and twists, corn based, baked, low fat~^~CHEESE PUFFS & TWISTS,CORN BSD,BKD,LOFAT~^^^~Y~^^0^^6.50^^^ -~19435~^~2500~^~Snacks, granola bar, fruit-filled, nonfat~^~SNACKS,GRANOLA BAR,FRUIT-FILLED,NONFAT~^^^~Y~^^0^^^^^ -~19436~^~2500~^~Popcorn, sugar syrup/caramel, fat-free~^~POPCORN,SUGAR SYRUP/CARAMEL,FAT-FREE~^^^~Y~^^0^^6.50^^^ -~19437~^~2500~^~Snacks, potato chips, fat free, salted~^~POTATO CHIPS,FAT FREE,SALTED~^^^~Y~^^0^^6.50^^^ -~19438~^~2500~^~Snacks, KELLOGG, KELLOGG'S RICE KRISPIES TREATS Squares~^~SNACKS,KELLOGG,KELLOGG'S RICE KRISPIES TREATS SQUARES~^^^~Y~^^0^^6.50^^^ -~19439~^~2500~^~Snacks, KELLOGG, KELLOGG'S Low Fat Granola Bar, Crunchy Almond/Brown Sugar~^~SNACKS,KELLOGG'S LOFAT GRANOLA BAR,CRUNCHY ALMD/BRN SUGAR~^^^^^0^^^^^ -~19440~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, chocolate chip~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,CHOC CHIP~^^^^^0^^^^^ -~19441~^~2500~^~Snacks, KELLOGG, KELLOGG'S, NUTRI-GRAIN Cereal Bars, fruit~^~SNACKS,KELLOGG,KELLOGG'S,NUTRI-GRAIN CRL BARS,FRUIT~^^~Kellogg, Co.~^~Y~^^0^^6.50^^^ -~19444~^~2500~^~Snacks, tortilla chips, low fat, made with olestra, nacho cheese~^~SNACKS,TORTILLA CHIPS,LOFAT,MADE W/OLESTRA,NACHO CHS~^^^~Y~^^0^^6.50^^^ -~19445~^~2500~^~Snacks, potato chips, made from dried potatoes, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FRM DRIED POTATOES,FAT-FREE,W/ OLESTRA~^^^~Y~^^0^^6.20^^^ -~19524~^~2500~^~Snacks, taro chips~^~TARO CHIPS~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19701~^~1900~^~Candies, semisweet chocolate, made with butter~^~CANDIES,SEMISWEET CHOC,MADE W/BUTTER~^^^^^0^^5.63^1.83^8.50^3.40 -~19702~^~1900~^~Gelatin desserts, dry mix, with added ascorbic acid, sodium-citrate and salt~^~GELATIN DSSRT,DRY MIX,W/ ADDED VIT C,SODIUM-CITRATE & SALT~^^^^^0^^5.55^3.90^9.02^3.87 -~19703~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, added phosphorus, potassium, sodium, vitamin C~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,ADDED P,K,NA,VIT C~^^^^^0^^5.55^3.90^9.02^3.87 -~19704~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, no added sodium~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,NO ADDED NA~^^^^^0^^5.55^3.90^9.02^3.87 -~19705~^~1900~^~Puddings, banana, dry mix, instant, with added oil~^~PUDDINGS,BANANA,DRY MIX,INST,W/ ADDED OIL~^^^^^0^^6.40^4.20^8.80^3.90 -~19706~^~1900~^~Puddings, banana, dry mix, regular, with added oil~^~PUDDINGS,BANANA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.20^3.50^8.40^3.90 -~19708~^~1900~^~Puddings, lemon, dry mix, regular, with added oil, potassium, sodium~^~PUDDINGS,LEMON,DRY MIX,REG,W/ ADDED OIL,K,NA~^^^^^0^^6.25^3.50^8.80^3.90 -~19709~^~1900~^~Puddings, tapioca, dry mix, with no added salt~^~PUDDINGS,TAPIOCA,DRY MIX,W/ NO ADDED SALT~^^^^^0^^6.25^3.00^8.40^3.90 -~19710~^~1900~^~Puddings, vanilla, dry mix, regular, with added oil~^~PUDDINGS,VANILLA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.25^3.50^8.40^3.90 -~19719~^~1900~^~Jams and preserves, apricot~^~JAMS&PRESERVES,APRICOT~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~19720~^~1900~^~Syrups, table blends, pancake, with 2% maple, with added potassium~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE,W/ K~^^^^^0^^6.25^3.36^8.37^3.80 -~19800~^~2500~^~Snacks, corn cakes, very low sodium~^~CORN CAKES,VERY LO NA~^^^^^0^^6.10^3.10^8.40^4.10 -~19802~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor, unenriched~^~SNACKS,CORN-BASED,EXTRDD,PUFFS OR TWISTS,CHEESE-FLAVOR,UNENR~^^^^^0^^6.30^4.00^8.80^4.10 -~19804~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor, made with enriched masa flour~^~SNACKS,CORN-BASE,EXTRUD,CHIPS,BARBECUE-FLAVOR,W/ENR MASA FLR~^^^^^0^^6.25^^^ -~19806~^~2500~^~Snacks, popcorn, air-popped (Unsalted)~^~SNACKS,POPCORN,AIR-POPPED (UNSALTED)~^^^^^0^^6.25^2.73^8.37^4.03 -~19807~^~2500~^~Snacks, popcorn, oil-popped, white popcorn, salt added~^~SNACKS,POPCORN,OIL-POPPED,WHITE POPCORN,SALT ADDED~^^^^^0^^6.25^2.70^8.80^4.00 -~19809~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, salted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,SALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19810~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, unsalted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,UNSALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19811~^~2500~^~Snacks, potato chips, plain, unsalted~^~POTATO CHIPS,PLN,UNSALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19812~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, salted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,SALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19813~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, unsalted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,UNSALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19814~^~2500~^~Snacks, pretzels, hard, plain, made with enriched flour, unsalted~^~SNACKS,PRETZELS,HARD,PLN,MADE W/ ENR FLR,UNSALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19816~^~2500~^~Snacks, rice cakes, brown rice, plain, unsalted~^~RICE CAKES,BROWN RICE,PLN,UNSALTED~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19817~^~2500~^~Snacks, rice cakes, brown rice, buckwheat, unsalted~^~RICE CAKES,BROWN RICE,BUCKWHEAT,UNSALTED~^^^^^0^^6.10^3.40^8.40^4.00 -~19818~^~2500~^~Snacks, rice cakes, brown rice, multigrain, unsalted~^~RICE CAKES,BROWN RICE,MULTIGRAIN,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19819~^~2500~^~Snacks, rice cakes, brown rice, sesame seed, unsalted~^~RICE CAKES,BROWN RICE,SESAME SD,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19820~^~2500~^~Snacks, sesame sticks, wheat-based, unsalted~^~SESAME STKS,WHEAT-BASED,UNSALTED~^^^^^0^^5.70^3.70^8.70^3.90 -~19821~^~2500~^~Snacks, trail mix, regular, unsalted~^~TRAIL MIX,REG,UNSALTED~^^^^^0^^5.40^3.50^8.40^3.70 -~19822~^~2500~^~Snacks, trail mix, regular, with chocolate chips, unsalted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,UNSALTED NUTS&SEEDS~^^^^^0^^5.50^3.50^8.40^3.70 -~19823~^~2500~^~Potato chips, without salt, reduced fat~^~POTATO CHIPS,WO/SALT,RED FAT~^^^~Y~^^0^^6.50^^^ -~19833~^~2500~^~Snacks, tortilla chips, low fat, unsalted~^~TORTILLA CHIPS,LOFAT,UNSALTED~^^^~Y~^^0^^6.50^^^ -~19856~^~1900~^~Frozen novelties, juice type, POPSICLE SCRIBBLERS~^~FROZEN NOVELTIES,JUC TYPE,POPSICLE SCRIBBLERS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^4.00^9.00^4.00 -~19857~^~2500~^~Snacks, tortilla chips, nacho-flavor, made with enriched masa flour~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,MADE W/ENR MASA FLR~^^^^^0^^6.50^^^ -~19858~^~1900~^~Candies, sugar-coated almonds~^~CANDIES,SUGAR-COATED ALMONDS~^^^~Y~^^0^^5.18^3.90^9.02^3.87 -~19860~^~1900~^~Cocoa, dry powder, hi-fat or breakfast, processed with alkali~^~COCOA,DRY PDR,HI-FAT OR BRKFST,PROC W/ALKALI~^^^~Y~^^0^^6.25^^^ -~19866~^~1900~^~Candies, soft fruit and nut squares~^~CANDIES,SOFT FRUIT & NUT SQUARES~^^^~Y~^^0^^5.55^^^ -~19867~^~1900~^~Ice creams, vanilla, fat free~^~ICE CREAMS,VANILLA,FAT FREE~^^^~Y~^^0^^6.25^^^ -~19868~^~1900~^~Sweeteners, tabletop, sucralose, SPLENDA packets~^~SWEETENERS,TABLETOP,SUCRALOSE,SPLENDA PACKETS~^^~McNeil Nutritionals/McNeil_PPC, Inc.~^~Y~^^0^^6.25^0.00^0.00^3.68 -~19871~^~1900~^~Frozen novelties, No Sugar Added, FUDGSICLE pops~^~FROZEN NOVELTIES,NO SUGAR ADDED,FUDGSICLE POPS~^^~Good Humor - Breyers Ice Cream~^~Y~^^0^^6.25^^^ -~19873~^~1900~^~Frozen novelties, ice type, sugar free, orange, cherry, and grape POPSICLE pops~^~FROZ NOVELTIES,ICE TYPE,SUGAR FREE,ORNGE,CHRY,& GRP POPSICLE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19874~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Fudge Bar, 98% fat free, no sugar added~^~FRZ NVL, KLONDIKE,SLIM-A-BEAR FUDG BR,98% FT FR,NO SGR ADDED~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19875~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19876~^~1900~^~Ice creams, BREYERS, All Natural Light French Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19877~^~1900~^~Ice creams, BREYERS, 98% Fat Free Vanilla~^~ICE CREAMS,BREYERS,98% FAT FREE VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19878~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19879~^~1900~^~Ice creams, BREYERS, All Natural Light Mint Chocolate Chip~^~ICE CREAMS,BREYERS,ALL NAT LT MINT CHOC CHIP~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19880~^~1900~^~Ice creams, BREYERS, No Sugar Added, Butter Pecan~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,BUTTER PECAN~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19881~^~1900~^~Ice creams, BREYERS, No Sugar Added, French Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19882~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19883~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Fudge Twirl~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA FUDGE TWIRL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19884~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19886~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Chocolate Cone~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR CHOC CONE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19887~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Vanilla Sandwich~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR VANILLA SNDWCH~^^~Good Humor - Breyers Ice Cream~^^^0^^^^^ -~19890~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR, No Sugar Added, Stickless Bar~^~FROZEN NOVL,KLONDIKE,SLIM-A-BEAR,NO SGR ADDED,STICKLESS BAR~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19891~^~1900~^~Frozen novelties, No Sugar Added CREAMSICLE Pops~^~FROZEN NOVELTIES,NO SUGAR ADDED CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19892~^~1900~^~Frozen novelties, Sugar Free, CREAMSICLE Pops~^~FROZEN NOVELTIES,SUGAR FREE,CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19893~^~1900~^~Ice creams, BREYERS, All Natural Light French Chocolate~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19894~^~1900~^~Ice creams, BREYERS, 98% Fat Free Chocolate~^~ICE CREAMS,BREYERS,98% FAT FREE CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19895~^~1900~^~Ice creams, BREYERS, No Sugar Added, Chocolate Caramel~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,CHOC CARAMEL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19896~^~1900~^~Candies, REESE's Fast Break, milk chocolate, peanut butter, soft nougats, candy bar~^~CANDIES,REESE'S FAST BREAK,CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19897~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Covered Almonds~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC COVERED ALMONDS~^^~Masterfoods USA~^^^0^^^^^ -~19898~^~1900~^~Ice creams, regular, low carbohydrate, vanilla~^~ICE CREAMS,REG,LO CARBOHYDRATE,VANILLA~^^^~Y~^^0^^6.25^^^ -~19899~^~1900~^~Ice creams, regular, low carbohydrate, chocolate~^~ICE CREAMS,REG,LO CARBOHYDRATE,CHOC~^^^~Y~^^0^^6.25^^^ -~19902~^~1900~^~Chocolate, dark, 45- 59% cacao solids~^~CHOCOLATE,DK,45- 59% CACAO SOL~^^^^^0^^6.25^^^ -~19903~^~1900~^~Chocolate, dark, 60-69% cacao solids~^~CHOCOLATE,DK,60-69% CACAO SOL~^^^^^0^^^^^ -~19904~^~1900~^~Chocolate, dark, 70-85% cacao solids~^~CHOCOLATE,DK,70-85% CACAO SOL~^^^^^0^^^^^ -~19905~^~1900~^~Candies, chocolate, dark, NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)~^~CANDIES,CHOC,DK,NFS (45-59% CACAO SOL 90%; 60-69% CACAO SOL~^^^~Y~^^0^^6.25^^^ -~19906~^~1900~^~Sweeteners, for baking, brown, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,BROWN,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19907~^~1900~^~Sweeteners, for baking, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19908~^~1900~^~Sugar, turbinado~^~SUGAR,TURBINADO~^^^^^0^^^^^ -~19909~^~1900~^~Sweeteners, sugar substitute, granulated, brown~^~SWEETENERS,SUGAR SUB,GRANULATED,BROWN~^^^^^0^^^^^ -~19910~^~1900~^~Candies, crispy bar with peanut butter filling~^~CANDIES,CRISPY BAR W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~19911~^~1900~^~Syrup, maple, Canadian~^~SYRUP,MAPLE,CANADIAN~^^^^^0^^6.25^^^ -~19912~^~1900~^~Sweetener, syrup, agave~^~Sweetener, syrup, agave~^^^~Y~^^0^^^^^ -~19913~^~1900~^~Candies, NESTLE, BUTTERFINGER Crisp~^~Candies, NESTLE, BUTTERFINGER Crisp~^^^~Y~^^0^^6.25^^^ -~19914~^~1900~^~Candies, M&M MARS 3 MUSKETEERS Truffle Crisp~^~CANDIES,M&M MARS 3 MUSKETEERS TRUFFLE CRISP~^^^~Y~^^0^^6.25^^^ -~19916~^~1900~^~Syrups, chocolate, HERSHEY'S Sugar free, Genuine Chocolate Flavored, Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S SUGAR FREE,GENUINE CHOC FLAV,LITE SYRU~^^^~Y~^^0^^6.25^^^ -~19917~^~1900~^~Candies, M&M MARS Pretzel Chocolate Candies~^~CANDIES,M&M MARS PRETZEL CHOC CANDIES~^^^~Y~^^0^^6.25^^^ -~19918~^~1900~^~Sweetener, herbal extract powder from Stevia leaf~^~SWEETENER,HERBAL EXTRACT PDR FROM STEVIA LEAF~^^^~Y~^^0^^6.25^^^ -~19919~^~1900~^~Candies, fruit snacks, with high vitamin C~^~CANDIES,FRUIT SNACKS,W/ HI VIT C~^^^~Y~^^0^^6.25^^^ -~19920~^~1900~^~Jams, preserves, marmalades, sweetened with fruit juice~^~JAMS,PRESERVES,MARMALADES,SWTND W/ FRUIT JUC~^^^~Y~^^0^^6.25^^^ -~19921~^~1900~^~Candies, Tamarind~^~CANDIES,TAMARIND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~19922~^~1900~^~Candies, coconut bar, not chocolate covered~^~CANDIES,COCNT BAR,NOT CHOC COVERED~^^^~Y~^^0^^6.25^^^ -~19923~^~1900~^~Candies, HERSHEYS, PAYDAY Bar~^~CANDIES,HERSHEYS,PAYDAY BAR~^^^~Y~^^0^^6.25^^^ -~19924~^~1900~^~Syrup, NESTLE, chocolate~^~SYRUP,NESTLE,CHOC~^^^~Y~^^0^^6.25^^^ -~20001~^~2000~^~Amaranth grain, uncooked~^~AMARANTH GRAIN,UNCKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20002~^~2000~^~Amaranth grain, cooked~^~AMARANTH GRAIN,CKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20003~^~2000~^~Arrowroot flour~^~ARROWROOT FLOUR~^^^^^0^^6.25^2.78^8.37^4.03 -~20004~^~2000~^~Barley, hulled~^~BARLEY,HULLED~^^^^^0^~Hordeum vulgare L.~^5.83^3.55^8.37^3.95 -~20005~^~2000~^~Barley, pearled, raw~^~BARLEY,PEARLED,RAW~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20006~^~2000~^~Barley, pearled, cooked~^~BARLEY,PEARLED,COOKED~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20008~^~2000~^~Buckwheat~^~BUCKWHEAT~^^^^^0^~Fagopyrum esculentum Moench~^6.25^3.37^8.37^3.78 -~20009~^~2000~^~Buckwheat groats, roasted, dry~^~BUCKWHEAT GROATS,RSTD,DRY~^~kasha~^^^^0^^6.25^3.37^8.37^3.78 -~20010~^~2000~^~Buckwheat groats, roasted, cooked~^~BUCKWHEAT GROATS,RSTD,CKD~^~kasha~^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20011~^~2000~^~Buckwheat flour, whole-groat~^~BUCKWHEAT FLR,WHOLE-GROAT~^^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20012~^~2000~^~Bulgur, dry~^~BULGUR,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20013~^~2000~^~Bulgur, cooked~^~BULGUR,COOKED~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20014~^~2000~^~Corn grain, yellow~^~CORN GRAIN,YEL~^~dent corn, field corn~^^^^0^~Zea mays mays L.~^6.25^2.73^8.37^4.03 -~20015~^~2000~^~Corn bran, crude~^~CORN BRAN,CRUDE~^^^~Y~^^0^^6.25^1.82^8.37^2.35 -~20016~^~2000~^~Corn flour, whole-grain, yellow~^~CORN FLR,WHOLE-GRAIN,YEL~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20017~^~2000~^~Corn flour, masa, enriched, white~^~CORN FLR,MASA,ENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20018~^~2000~^~Corn flour, yellow, degermed, unenriched~^~CORN FLR,YEL,DEGERMED,UNENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20019~^~2000~^~Corn flour, masa, unenriched, white~^~CORN FLR,MASA,UNENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20020~^~2000~^~Cornmeal, whole-grain, yellow~^~CORNMEAL,WHOLE-GRAIN,YEL~^^^^^0^^6.25^2.73^8.37^4.03 -~20022~^~2000~^~Cornmeal, degermed, enriched, yellow~^~CORNMEAL,DEGERMED,ENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20023~^~2000~^~Cornmeal, yellow, self-rising, bolted, plain, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20024~^~2000~^~Cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20025~^~2000~^~Cornmeal, yellow, self-rising, degermed, enriched~^~CORNMEAL,YEL,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20027~^~2000~^~Cornstarch~^~CORNSTARCH~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20028~^~2000~^~Couscous, dry~^~COUSCOUS,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~20029~^~2000~^~Couscous, cooked~^~COUSCOUS,COOKED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20030~^~2000~^~Hominy, canned, white~^~HOMINY,CANNED,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20031~^~2000~^~Millet, raw~^~MILLET,RAW~^^^^^0^~Panicum miliaceum L.~^5.83^3.87^8.37^4.12 -~20032~^~2000~^~Millet, cooked~^~MILLET,COOKED~^^^~Y~^^0^^5.83^3.87^8.37^4.12 -~20033~^~2000~^~Oat bran, raw~^~OAT BRAN,RAW~^^^~Y~^^0^^5.83^1.82^8.37^2.35 -~20034~^~2000~^~Oat bran, cooked~^~OAT BRAN,COOKED~^^^^^0^^5.83^1.82^8.37^2.35 -~20035~^~2000~^~Quinoa, uncooked~^~QUINOA,UNCKD~^^^^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20036~^~2000~^~Rice, brown, long-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,RAW~^^^~Y~^^0^~Oryza sativa L.~^5.95^3.41^8.37^4.12 -~20037~^~2000~^~Rice, brown, long-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,CKD~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~20038~^~2000~^~Oats (Includes foods for USDA's Food Distribution Program)~^~OATS~^^^^^0^~Avena sativa L.~^5.83^3.46^8.37^4.12 -~20040~^~2000~^~Rice, brown, medium-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,RAW~^^^^^0^^5.95^3.41^8.37^4.12 -~20041~^~2000~^~Rice, brown, medium-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,CKD~^^^^^0^^5.95^3.41^8.37^4.12 -~20042~^~2000~^~Rice, brown, parboiled, dry, UNCLE BEN'S~^~RICE,BROWN,PARBLD,DRY,UNCLE BEN'S~^^~Mars Food US~^^^0^^^^^ -~20044~^~2000~^~Rice, white, long-grain, regular, raw, enriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,ENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20045~^~2000~^~Rice, white, long-grain, regular, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,REG,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20046~^~2000~^~Rice, white, long-grain, parboiled, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20047~^~2000~^~Rice, white, long-grain, parboiled, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20048~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20049~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, prepared~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,PREP~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20050~^~2000~^~Rice, white, medium-grain, raw, enriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,ENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20051~^~2000~^~Rice, white, medium-grain, enriched, cooked~^~RICE,WHITE,MEDIUM-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20052~^~2000~^~Rice, white, short-grain, enriched, uncooked~^~RICE,WHITE,SHORT-GRAIN,ENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20053~^~2000~^~Rice, white, short-grain, enriched, cooked~^~RICE,WHITE,SHORT-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20054~^~2000~^~Rice, white, glutinous, unenriched, uncooked~^~RICE,WHITE,GLUTINOUS,UNENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20055~^~2000~^~Rice, white, glutinous, unenriched, cooked~^~RICE,WHITE,GLUTINOUS,UNENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20058~^~2000~^~Rice, white, steamed, Chinese restaurant~^~RICE,WHITE,STMD,CHINESE RESTAURANT~^^^^^0^^^^^ -~20060~^~2000~^~Rice bran, crude~^~RICE BRAN,CRUDE~^^^~Y~^^0^^5.95^1.82^8.37^2.35 -~20061~^~2000~^~Rice flour, white, unenriched~^~RICE FLR,WHITE,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20062~^~2000~^~Rye grain~^~RYE GRAIN~^^^~Y~^^0^~Secale cereale L.~^5.83^3.05^8.37^3.86 -~20063~^~2000~^~Rye flour, dark~^~RYE FLOUR,DARK~^^^~Y~^^0^^5.83^2.96^8.37^3.78 -~20064~^~2000~^~Rye flour, medium~^~RYE FLOUR,MEDIUM~^^^~Y~^^0^^5.83^3.23^8.37^3.99 -~20065~^~2000~^~Rye flour, light~^~RYE FLOUR,LIGHT~^^^~Y~^^0^^5.83^3.41^8.37^4.07 -~20066~^~2000~^~Semolina, enriched~^~SEMOLINA,ENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20067~^~2000~^~Sorghum grain~^~SORGHUM GRAIN~^^^^^0^~Sorghum spp.~^6.25^0.91^8.37^4.03 -~20068~^~2000~^~Tapioca, pearl, dry~^~TAPIOCA,PEARL,DRY~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~20069~^~2000~^~Triticale~^~TRITICALE~^^^^^0^~X Triticosecale spp.~^5.83^3.32^8.37^3.82 -~20070~^~2000~^~Triticale flour, whole-grain~^~TRITICALE FLR,WHOLE-GRAIN~^^^^^0^^5.83^3.32^8.37^3.82 -~20071~^~2000~^~Wheat, hard red spring~^~WHEAT,HARD RED SPRING~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20072~^~2000~^~Wheat, hard red winter~^~WHEAT,HARD RED WINTER~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20073~^~2000~^~Wheat, soft red winter~^~WHEAT,SOFT RED WINTER~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20074~^~2000~^~Wheat, hard white~^~WHEAT,HARD WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20075~^~2000~^~Wheat, soft white~^~WHEAT,SOFT WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20076~^~2000~^~Wheat, durum~^~WHEAT,DURUM~^^^^^0^~Triticum durum Desf.~^5.83^3.59^8.37^3.78 -~20077~^~2000~^~Wheat bran, crude~^~WHEAT BRAN,CRUDE~^^^~Y~^^0^^6.31^1.82^8.37^2.35 -~20078~^~2000~^~Wheat germ, crude~^~WHEAT GERM,CRUDE~^^^^^0^^5.80^3.59^8.37^3.78 -~20080~^~2000~^~Wheat flour, whole-grain (Includes foods for USDA's Food Distribution Program)~^~WHEAT FLOUR,WHOLE-GRAIN~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20081~^~2000~^~Wheat flour, white, all-purpose, enriched, bleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,BLEACHED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20082~^~2000~^~Wheat flour, white, all-purpose, self-rising, enriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,SELF-RISING,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20083~^~2000~^~Wheat flour, white, bread, enriched~^~WHEAT FLR,WHITE,BREAD,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20084~^~2000~^~Wheat flour, white, cake, enriched~^~WHEAT FLR,WHITE,CAKE,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20086~^~2000~^~Wheat flour, white, tortilla mix, enriched~^~WHEAT FLR,WHITE,TORTILLA MIX,ENR~^^^^^0^^5.70^4.05^8.37^4.12 -~20087~^~2000~^~Wheat, sprouted~^~WHEAT,SPROUTED~^^^^^0^^5.83^3.59^8.37^3.78 -~20088~^~2000~^~Wild rice, raw~^~WILD RICE,RAW~^^^~Y~^^0^~Zizania spp.~^6.25^3.55^8.37^3.95 -~20089~^~2000~^~Wild rice, cooked~^~WILD RICE,COOKED~^^^~Y~^^0^^6.25^3.55^8.37^3.95 -~20090~^~2000~^~Rice flour, brown~^~RICE FLOUR,BROWN~^^^^^0^^5.95^3.41^8.37^4.12 -~20091~^~2000~^~Pasta, gluten-free, corn, dry~^~PASTA,GLUTEN-FREE,CORN,DRY~^^^^^0^^6.25^2.73^8.37^4.03 -~20092~^~2000~^~Pasta, gluten-free, corn, cooked~^~PASTA,GLUTEN-FREE,CORN,CKD~^^^^^0^^6.25^2.73^8.37^4.03 -~20093~^~2000~^~Pasta, fresh-refrigerated, plain, as purchased~^~PASTA,FRESH-REFRIGERATED,PLN,AS PURCHASED~^^^^^0^^5.78^3.93^8.41^4.09 -~20094~^~2000~^~Pasta, fresh-refrigerated, plain, cooked~^~PASTA,FRESH-REFRIGERATED,PLN,CKD~^^^^^0^^5.78^3.93^8.41^4.09 -~20095~^~2000~^~Pasta, fresh-refrigerated, spinach, as purchased~^~PASTA,FRESH-REFRIGERATED,SPINACH,AS PURCHASED~^^^^^0^^5.79^3.88^8.41^4.08 -~20096~^~2000~^~Pasta, fresh-refrigerated, spinach, cooked~^~PASTA,FRESH-REFRIGERATED,SPINACH,CKD~^^^^^0^^5.79^3.88^8.41^4.08 -~20097~^~2000~^~Pasta, homemade, made with egg, cooked~^~PASTA,HOMEMADE,MADE W/EGG,CKD~^^^^^0^^5.73^3.93^8.41^4.09 -~20098~^~2000~^~Pasta, homemade, made without egg, cooked~^~PASTA,HOMEMADE,MADE WO/EGG,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20105~^~2000~^~Macaroni, vegetable, enriched, dry~^~MACARONI,VEG,ENR,DRY~^^^^^0^^5.72^3.86^8.37^4.11 -~20106~^~2000~^~Macaroni, vegetable, enriched, cooked~^~MACARONI,VEG,ENR,CKD~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20109~^~2000~^~Noodles, egg, dry, enriched~^~NOODLES,EGG,DRY,ENRICHED~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20110~^~2000~^~Noodles, egg, enriched, cooked~^~NOODLES,EGG,ENR,CKD~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20111~^~2000~^~Noodles, egg, spinach, enriched, dry~^~NOODLES,EGG,SPINACH,ENR,DRY~^^^^^0^^5.79^3.88^8.41^4.08 -~20112~^~2000~^~Noodles, egg, spinach, enriched, cooked~^~NOODLES,EGG,SPINACH,ENR,CKD~^^^~Y~^^0^^5.79^3.88^8.41^4.08 -~20113~^~2000~^~Noodles, chinese, chow mein~^~NOODLES,CHINESE,CHOW MEIN~^^^~Y~^^0^^^^^ -~20114~^~2000~^~Noodles, japanese, soba, dry~^~NOODLES,JAPANESE,SOBA,DRY~^^^^^0^^6.06^3.37^8.37^3.78 -~20115~^~2000~^~Noodles, japanese, soba, cooked~^~NOODLES,JAPANESE,SOBA,CKD~^^^^^0^^6.06^3.37^8.37^3.78 -~20116~^~2000~^~Noodles, japanese, somen, dry~^~NOODLES,JAPANESE,SOMEN,DRY~^^^^^0^^5.70^3.91^8.37^4.12 -~20117~^~2000~^~Noodles, japanese, somen, cooked~^~NOODLES,JAPANESE,SOMEN,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20118~^~2000~^~Noodles, flat, crunchy, Chinese restaurant~^~NOODLES,FLAT,CRUNCHY,CHINESE RESTAURANT~^^^~Y~^^0^^5.73^4.05^8.37^4.12 -~20120~^~2000~^~Pasta, dry, enriched~^~PASTA,DRY,ENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, penne, rotini, farfalle, shells~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20121~^~2000~^~Pasta, cooked, enriched, without added salt~^~PASTA,CKD,ENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20124~^~2000~^~Pasta, whole-wheat, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,DRY~^~spaghetti, elbow macaroni, penne, farfalle, lasagna, shells, macaroni product~^^^^0^^5.83^3.59^8.37^3.78 -~20125~^~2000~^~Pasta, whole-wheat, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, farfalle, lasagna, rotini, shells~^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20126~^~2000~^~Spaghetti, spinach, dry~^~SPAGHETTI,SPINACH,DRY~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20127~^~2000~^~Spaghetti, spinach, cooked~^~SPAGHETTI,SPINACH,COOKED~^^^^^0^^5.72^3.86^8.37^4.11 -~20129~^~2000~^~Wheat flours, bread, unenriched~^~WHEAT FLOURS,BREAD,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20130~^~2000~^~Barley flour or meal~^~BARLEY FLOUR OR MEAL~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20131~^~2000~^~Barley malt flour~^~BARLEY MALT FLR~^^^^^0^^5.83^3.55^8.37^3.95 -~20132~^~2000~^~Oat flour, partially debranned~^~OAT FLR,PART DEBRANNED~^^^~Y~^^0^^^^^ -~20133~^~2000~^~Rice noodles, dry~^~RICE NOODLES,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20134~^~2000~^~Rice noodles, cooked~^~RICE NOODLES,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20135~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, farfalle, rotini, lasagna, shells, penne~^^^^0^^^3.78^8.37^3.95 -~20136~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, shells, penne, rotini, lasagna, farfalle~^^^^0^^^3.78^8.37^3.95 -~20137~^~2000~^~Quinoa, cooked~^~QUINOA,CKD~^^^~Y~^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20138~^~2000~^~Wheat, KAMUT khorasan, uncooked~^~WHEAT,KAMUT KHORASAN,UNCKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20139~^~2000~^~Wheat, KAMUT khorasan, cooked~^~WHEAT,KAMUT KHORASAN,CKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20140~^~2000~^~Spelt, uncooked~^~SPELT,UNCKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20141~^~2000~^~Spelt, cooked~^~SPELT,CKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20142~^~2000~^~Teff, uncooked~^~TEFF,UNCKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20143~^~2000~^~Teff, cooked~^~TEFF,CKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20310~^~2000~^~Noodles, egg, cooked, enriched, with added salt~^~NOODLES,EGG,CKD,ENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20314~^~2000~^~Corn grain, white~^~CORN GRAIN,WHITE~^~dent corn, field corn~^^^^0^^6.25^2.73^8.37^4.03 -~20315~^~2000~^~Corn flour, whole-grain, blue (harina de maiz morado)~^~CORN FLR,WHOLE-GRAIN,BLUE (HARINA DE MAIZ MORADO)~^^^^^0^^6.25^2.73^8.37^4.03 -~20316~^~2000~^~Corn flour, whole-grain, white~^~CORN FLR,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20317~^~2000~^~Corn flour, yellow, masa, enriched~^~CORN FLR,YEL,MASA,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20320~^~2000~^~Cornmeal, whole-grain, white~^~CORNMEAL,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20321~^~2000~^~Pasta, cooked, enriched, with added salt~^~PASTA,CKD,ENR,W/ ADDED SALT~^~spaghetti, elbow macaroni, lasagna, macaroni product, rotini, farfalle, penne, shells~^^^^0^^5.70^3.91^8.37^4.12 -~20322~^~2000~^~Cornmeal, degermed, enriched, white~^~CORNMEAL,DEGERMED,ENR,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20323~^~2000~^~Cornmeal, white, self-rising, bolted, plain, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20324~^~2000~^~Cornmeal, white, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20325~^~2000~^~Cornmeal, white, self-rising, degermed, enriched~^~CORNMEAL,WHITE,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20330~^~2000~^~Hominy, canned, yellow~^~HOMINY,CANNED,YELLOW~^^^^^0^^6.25^3.46^8.37^4.16 -~20345~^~2000~^~Rice, white, long-grain, regular, cooked, enriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,ENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20381~^~2000~^~Wheat flour, white, all-purpose, enriched, calcium-fortified~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,CALCIUM-FORTIFIED~^^^^^0^^5.70^4.05^8.37^4.12 -~20409~^~2000~^~Noodles, egg, dry, unenriched~^~NOODLES,EGG,DRY,UNENR~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20410~^~2000~^~Noodles, egg, unenriched, cooked, without added salt~^~NOODLES,EGG,UNENR,CKD,WO/ ADDED SALT~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20420~^~2000~^~Pasta, dry, unenriched~^~PASTA,DRY,UNENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, rotini, shells, farfalle, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20421~^~2000~^~Pasta, cooked, unenriched, without added salt~^~PASTA,CKD,UNENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, penne, shells, farfalle, rotini, lasagna~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20422~^~2000~^~Cornmeal, degermed, unenriched, yellow~^~CORNMEAL,DEGERMED,UNENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20444~^~2000~^~Rice, white, long-grain, regular, raw, unenriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20445~^~2000~^~Rice, white, long-grain, regular, unenriched, cooked without salt~^~RICE,WHITE,LONG-GRAIN,REG,UNENR,CKD WO/ SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20446~^~2000~^~Rice, white, long-grain, parboiled, unenriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20447~^~2000~^~Rice, white, long-grain, parboiled, unenriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20450~^~2000~^~Rice, white, medium-grain, raw, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20451~^~2000~^~Rice, white, medium-grain, cooked, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20452~^~2000~^~Rice, white, short-grain, raw, unenriched~^~RICE,WHITE,SHORT-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20453~^~2000~^~Rice, white, short-grain, cooked, unenriched~^~RICE,WHITE,SHORT-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20466~^~2000~^~Semolina, unenriched~^~SEMOLINA,UNENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20481~^~2000~^~Wheat flour, white, all-purpose, unenriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20510~^~2000~^~Noodles, egg, cooked, unenriched, with added salt~^~NOODLES,EGG,CKD,UNENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20521~^~2000~^~Pasta, cooked, unenriched, with added salt~^~PASTA,CKD,UNENR,W/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20522~^~2000~^~Cornmeal, degermed, unenriched, white~^~CORNMEAL,DEGERMED,UNENR,WHITE~^^^^^0^^6.25^3.46^8.37^4.16 -~20523~^~2000~^~Spaghetti, protein-fortified, cooked, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,CKD,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20545~^~2000~^~Rice, white, long-grain, regular, cooked, unenriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,UNENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20581~^~2000~^~Wheat flour, white, all-purpose, enriched, unbleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,UNBLEACHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20622~^~2000~^~Spaghetti, protein-fortified, dry, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,DRY,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20623~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20624~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20628~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20629~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20630~^~2000~^~Wheat flour, white (industrial), 10% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20634~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20635~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20636~^~2000~^~Wheat flour, white (industrial), 11.5% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20640~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20641~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20645~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20646~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20647~^~2000~^~Millet flour~^~MILLET FLR~^^^^^0^^5.83^4.00^9.00^4.00 -~20648~^~2000~^~Sorghum flour, whole-grain~^~SORGHUM FLR,WHOLE-GRAIN~^^^^^0^^6.25^2.28^8.37^4.07 -~20649~^~2000~^~Wheat flour, whole-grain, soft wheat~^~WHEAT FLR,WHOLE-GRAIN,SOFT WHEAT~^^^^^0^^^3.59^8.37^3.78 -~20650~^~2000~^~Sorghum flour, refined, unenriched~^~SORGHUM FLR,REFINED,UNENR~^^^^^0^^6.25^^^ -~20651~^~2000~^~Rice, brown, parboiled, cooked, UNCLE BENS~^~RICE,BROWN,PARBLD,CKD,UNCLE BENS~^^~Mars Food US~^^^0^^^3.41^8.37^4.12 -~20652~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, lasagna, shells, farfalle, rotini~^^^^0^^^3.78^8.37^3.95 -~20653~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, penne, shells~^^^^0^^^3.78^8.37^3.95 -~20654~^~2000~^~Pasta, gluten-free, brown rice flour, cooked, TINKYADA~^~PASTA,GLUTEN-FREE,BROWN RICE FLR,CKD,TINKYADA~^^~Tinkyada~^~Y~^^0^^5.95^4.12^8.37^3.41 -~20655~^~2000~^~Pasta, gluten-free, corn flour and quinoa flour, cooked, ANCIENT HARVEST~^~PASTA,GLUTEN-FREE,CORN FLR & QUINOA FLR,CKD,ANCIENT HARVEST~^^~Ancient Harvest~^~Y~^^0^^6.25^3.78^8.37^3.95 -~20656~^~2000~^~Pasta, gluten-free, rice flour and rice bran extract, cooked, DE BOLES~^~PASTA,GLUTEN-FREE,RICE FLR & RICE BRAN EXTRACT,CKD,DE BOLES~^^~De Boles~^^^0^^5.95^3.82^8.37^4.16 -~20657~^~2000~^~Pasta, gluten-free, corn and rice flour, cooked~^~PASTA,GLUTEN-FREE,CORN & RICE FLR,CKD~^^~Barilla~^~Y~^^0^^5.95^3.82^8.37^4.16 -~21003~^~2100~^~Fast foods, biscuit, with egg and bacon~^~FAST FOODS,BISCUIT,W/EGG&BACON~^^^~Y~^^0^^6.12^4.18^8.80^3.94 -~21004~^~2100~^~Fast foods, biscuit, with egg and ham~^~FAST FOODS,BISCUIT,W/EGG&HAM~^^^~Y~^^0^^6.09^4.15^8.80^3.94 -~21005~^~2100~^~Fast Foods, biscuit, with egg and sausage~^~BREAKFAST ITEMS,BISCUIT W/EGG&SAUSAGE~^^^~Y~^^0^^6.06^4.13^8.80^3.95 -~21007~^~2100~^~Fast foods, biscuit, with egg, cheese, and bacon~^~FAST FOODS,BISCUIT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.19^4.22^8.80^3.94 -~21008~^~2100~^~Fast foods, biscuit, with ham~^~FAST FOODS,BISCUIT,W/HAM~^^^~Y~^^0^^5.98^4.03^8.67^3.95 -~21009~^~2100~^~Fast foods, biscuit, with sausage~^~FAST FOODS,BISCUIT,W/SAUSAGE~^^^~Y~^^0^^5.87^4.01^8.75^3.95 -~21010~^~2100~^~Fast foods, biscuit, with crispy chicken fillet~^~FAST FOODS,BISCUIT,W/ CRISPY CHICK FILLET~^^^~Y~^^0^^6.04^4.08^8.74^3.95 -~21012~^~2100~^~Fast foods, croissant, with egg, cheese, and bacon~^~FAST FOODS,CROISSANT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.13^4.22^8.83^3.99 -~21013~^~2100~^~Fast foods, croissant, with egg, cheese, and ham~^~FAST FOODS,CROISSANT,W/EGG,CHS,&HAM~^^^~Y~^^0^^6.16^4.23^8.88^3.99 -~21014~^~2100~^~Fast foods, croissant, with egg, cheese, and sausage~^~FAST FOODS,CROISSANT,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.15^4.22^8.89^3.99 -~21018~^~2100~^~Fast foods, egg, scrambled~^~FAST FOODS,EGG,SCRAMBLED~^^^~Y~^^0^^6.26^4.35^8.92^3.80 -~21020~^~2100~^~Fast foods, english muffin, with cheese and sausage~^~FAST FOODS,ENG MUFFIN,W/CHS&SAUSAGE~^^^~Y~^^0^^6.13^4.12^8.89^3.94 -~21021~^~2100~^~Fast foods, english muffin, with egg, cheese, and canadian bacon~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&CANADIAN BACON~^^^~Y~^^0^^^^^ -~21022~^~2100~^~Fast foods, english muffin, with egg, cheese, and sausage~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.17^4.19^8.90^3.94 -~21024~^~2100~^~Fast foods, french toast sticks~^~FAST FOODS,FRENCH TOAST STKS~^^^~Y~^^0^^5.73^3.61^8.83^3.92 -~21026~^~2100~^~Fast foods, potatoes, hash browns, round pieces or patty~^~FAST FOODS,POTATOES,HASH BROWNS,RND PIECES OR PATTY~^^^~Y~^^0^^6.25^4.00^9.00^3.77 -~21028~^~2100~^~Fast foods, vanilla, light, soft-serve ice cream, with cone~^~FAST FOODS,VANILLA,LT,SOFT-SERVE ICE CRM,W/ CONE~^^^~Y~^^0^^6.29^4.20^8.78^3.88 -~21032~^~2100~^~Fast foods, sundae, caramel~^~FAST FOODS,SUNDAE,CARAMEL~^^^^^0^^6.38^4.27^8.79^3.87 -~21033~^~2100~^~Fast foods, sundae, hot fudge~^~FAST FOODS,SUNDAE,HOT FUDGE~^^^^^0^^6.38^4.27^8.79^3.87 -~21034~^~2100~^~Fast foods, sundae, strawberry~^~FAST FOODS,SUNDAE,STRAWBERRY~^^^^^0^^6.38^4.27^8.79^3.87 -~21059~^~2100~^~Fast foods, shrimp, breaded and fried~^~FAST FOODS,SHRIMP,BREADED&FRIED~^^^~Y~^^0^^6.22^4.23^8.89^3.83 -~21060~^~2100~^~Fast foods, burrito, with beans~^~FAST FOODS,BURRITO,W/BNS~^^^^^0^^5.88^3.68^8.37^3.96 -~21061~^~2100~^~Fast foods, burrito, with beans and cheese~^~FAST FOODS,BURRITO,W/BNS&CHS~^^^~Y~^^0^^6.11^3.76^8.71^3.98 -~21063~^~2100~^~Fast foods, burrito, with beans and beef~^~FAST FOODS,BURRITO,W/ BNS & BF~^^^~Y~^^0^^6.14^4.02^8.73^3.97 -~21064~^~2100~^~Fast foods, burrito, with beans, cheese, and beef~^~FAST FOODS,BURRITO,W/BNS,CHS,&BF~^^^~Y~^^0^^6.17^3.96^8.72^3.97 -~21078~^~2100~^~Fast foods, nachos, with cheese~^~FAST FOODS,NACHOS,W/CHS~^^^~Y~^^0^^6.30^3.73^8.48^4.15 -~21080~^~2100~^~Fast foods, nachos, with cheese, beans, ground beef, and tomatoes~^~FAST FOODS,NACHOS,W/ CHS,BNS,GROUND BF,& TOMATOES~^^^~Y~^^0^^6.37^3.83^8.53^4.13 -~21082~^~2100~^~Fast foods, taco with beef, cheese and lettuce, hard shell~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,HARD SHELL~^^^~Y~^^0^^6.29^4.05^8.78^3.97 -~21089~^~2100~^~Fast foods, cheeseburger; single, regular patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21090~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21091~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments and vegetables~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT & VEG~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21094~^~2100~^~Fast foods, cheeseburger, double, regular patty and bun, with condiments~^~FAST FOODS,CHEESEBURGER,DOUBLE,REG PATTY & BUN,W/ CONDMNT~^^^~Y~^^0^^^^^ -~21096~^~2100~^~Fast foods, cheeseburger; single, large patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; PLN~^^^~Y~^^0^^6.20^4.20^8.92^3.95 -~21102~^~2100~^~Fast foods, chicken fillet sandwich, plain with pickles~^~FAST FOODS,CHICK FILLET SNDWCH,PLN W/ PICKLES~^^^~Y~^^0^^6.15^4.18^8.88^3.95 -~21105~^~2100~^~Fast foods, fish sandwich, with tartar sauce~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU~^^^~Y~^^0^^6.07^4.11^8.79^3.93 -~21106~^~2100~^~Fast foods, fish sandwich, with tartar sauce and cheese~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU&CHS~^^^~Y~^^0^^6.11^4.12^8.81^3.93 -~21107~^~2100~^~Fast foods, hamburger; single, regular patty; plain~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.03^4.07^8.81^3.95 -~21108~^~2100~^~Fast foods, hamburger; single, regular patty; with condiments~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21121~^~2100~^~Fast foods, roast beef sandwich, plain~^~FAST FOODS,RST BF SNDWCH,PLN~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21124~^~2100~^~Fast foods, submarine sandwich, cold cut on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,COLD CUT BRD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.09^4.12^8.85^3.94 -~21125~^~2100~^~Fast foods, submarine sandwich, roast beef on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,RST BF BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21126~^~2100~^~Fast foods, submarine sandwich, tuna on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TUNA BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.05^4.09^8.74^3.93 -~21127~^~2100~^~Fast foods, coleslaw~^~FAST FOODS, COLESLAW~^^^^^0^^^^^ -~21129~^~2100~^~Fast foods, hush puppies~^~FAST FOODS,HUSH PUPPIES~^^^~Y~^^0^^6.25^2.73^8.84^4.03 -~21130~^~2100~^~Fast foods, onion rings, breaded and fried~^~FAST FOODS,ONION RINGS,BREADED&FRIED~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~21138~^~2100~^~Fast foods, potato, french fried in vegetable oil~^~FST FOODS, POTATO, FRNCH FRIED IN VEG OIL~^^^~Y~^^0^^^^^ -~21139~^~2100~^~Fast foods, potato, mashed~^~FAST FOODS,POTATO,MASHED~^^^~Y~^^0^^6.25^2.78^8.84^4.03 -~21141~^~2100~^~BURGER KING, Vanilla Shake~^~BURGER KING,VANILLA SHAKE~^^~Burger King Corporation~^^^0^^6.38^4.00^9.00^4.00 -~21142~^~2100~^~Fast food, biscuit~^~FAST FD,BISCUIT~^^^~Y~^^0^^^^^ -~21143~^~2100~^~CHICK-FIL-A, Chick-n-Strips~^~CHICK-FIL-A,CHICK-N-STRIPS~^^~Chick-Fil-A~^^^0^^^^^ -~21144~^~2100~^~CHICK-FIL-A, hash browns~^~CHICK-FIL-A,HASH BROWNS~^^~Chick-Fil-A~^^^0^^^^^ -~21145~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Cheese Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S LS 16" 51% WHL CHS PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21146~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Turkey Pepperoni Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S 51% WHL TRKY PEP PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21147~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Cheese Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21148~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Pepperoni Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PEP PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21149~^~2100~^~School Lunch, pizza, TONY'S Breakfast Pizza Sausage, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S BRKFST PIZZA SAUSAGE,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21150~^~2100~^~SUBWAY, sweet onion chicken teriyaki sub on white bread with lettuce, tomato and sweet onion sauce~^~SUBWAY,SWT ONION CHICK SUB WHT BRD LTTC,TMT & SWT ONION SAU~^^~Subway~^^^0^^^^^ -~21151~^~2100~^~Fast foods, submarine sandwich, sweet onion chicken teriyaki on white bread with lettuce, tomato and sweet onion sauce~^~FAST FOODS,SUB,SWT ONION CHICK WIT BRD W/ LTTC,TMT SWT ONION~^^^~Y~^^0^^^4.00^9.00^4.00 -~21152~^~2100~^~SUBWAY, SUBWAY CLUB sub on white bread with lettuce and tomato~^~SUBWAY,SUBWAY CLUB SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21153~^~2100~^~Fast foods, submarine sandwich, turkey, roast beef and ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY RST BF HM BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21154~^~2100~^~Fast foods, submarine sandwich, oven roasted chicken on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,OVEN RSTD CHCK WHT BRD LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21155~^~2100~^~Fast foods, submarine sandwich, turkey breast on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY BRST WHT BRD LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21156~^~2100~^~Fast foods, submarine sandwich, ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,HAM ON WHT BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21157~^~2100~^~SUBWAY, meatball marinara sub on white bread (no toppings)~^~SUBWAY,MEATBALL MARINARA SUB ON WHITE BREAD (NO TOPPINGS)~^^~Subway~^^^0^^^^^ -~21158~^~2100~^~Fast foods, submarine sandwich, meatball marinara on white bread~^~FAST FOODS,SUBMARINE SNDWCH,MEATBALL MARINARA ON WHITE BREAD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21159~^~2100~^~SUBWAY, steak & cheese sub on white bread with American cheese, lettuce and tomato~^~SUBWAY,STEAK & CHS SUB ON WHT BRD W/ AMERICAN CHS,LTTC & TMT~^^~Subway~^^^0^^^^^ -~21160~^~2100~^~Fast foods, submarine sandwich, steak and cheese on white bread with cheese, lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,STK CHS WHT BRD W/ CHS,LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21161~^~2100~^~SUBWAY, B.L.T. sub on white bread with bacon, lettuce and tomato~^~SUBWAY,B.L.T. SUB ON WHITE BREAD W/ BACON,LETTUCE & TOMATO~^~BLT~^~Subway~^^^0^^^^^ -~21162~^~2100~^~Fast foods, submarine sandwich, bacon, lettuce, and tomato on white bread~^~FAST FOODS,SUBMARINE SNDWCH,BACON,LETTUCE,& TOMATO WHT BRD~^~BLT~^^~Y~^^0^^^4.00^9.00^4.00 -~21202~^~2100~^~Fast foods, hamburger, large, single patty, with condiments~^~FAST FOODS,HAMBURGER,LRG,SINGLE PATTY,W/CONDMNT~^^^~Y~^^0^^^^^ -~21207~^~2100~^~SUBWAY, turkey breast sub on white bread with lettuce and tomato~^~SUBWAY,TURKEY BREAST SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21209~^~2100~^~SUBWAY, black forest ham sub on white bread with lettuce and tomato~^~SUBWAY,BLACK FOREST HAM SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21210~^~2100~^~SUBWAY, roast beef sub on white bread with lettuce and tomato~^~SUBWAY,RST BF SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21211~^~2100~^~SUBWAY, oven roasted chicken sub on white bread with lettuce and tomato~^~SUBWAY,OVEN RSTD CHICK SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21213~^~2100~^~SUBWAY, cold cut sub on white bread with lettuce and tomato~^~SUBWAY,COLD CUT SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21214~^~2100~^~SUBWAY, tuna sub on white bread with lettuce and tomato~^~SUBWAY,TUNA SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21224~^~2100~^~Pizza, cheese topping, regular crust, frozen, cooked~^~PIZZA,CHS TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21225~^~2100~^~Pizza, cheese topping, rising crust, frozen, cooked~^~PIZZA,CHS TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21226~^~2100~^~Pizza, meat and vegetable topping, regular crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21227~^~2100~^~Pizza, meat and vegetable topping, rising crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21228~^~2100~^~McDONALD'S, Hamburger~^~MCDONALD'S,HAMBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21229~^~2100~^~Fast foods, chicken, breaded and fried, boneless pieces, plain~^~FAST FOODS,CHICK,BREADED & FRIED,BNLESS PIECES,PLN~^~nuggets~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21230~^~2100~^~Fast Foods, crispy chicken filet sandwich, with lettuce and mayonnaise~^~FAST FOODS,CRISPY CHICK FILET SNDWCH,W/ LETTUCE & MAYO~^^^~Y~^^0^^^4.00^9.00^4.00 -~21232~^~2100~^~McDONALD'S, FILET-O-FISH~^~MCDONALD'S, FLT-O-FSH~^^~McDonald's Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21233~^~2100~^~McDONALD'S, Cheeseburger~^~MCDONALD'S, CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21234~^~2100~^~McDONALD'S, QUARTER POUNDER~^~MCDONALD'S,QUARTER POUNDER~^^~McDonald's Corporation~^^^0^^^^^ -~21235~^~2100~^~McDONALD'S, QUARTER POUNDER with Cheese~^~MCDONALD'S,QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21237~^~2100~^~McDONALD'S, BIG MAC~^~MCDONALD'S,BIG MAC~^^~McDonald's Corporation~^^^0^^^^^ -~21238~^~2100~^~McDONALD'S, french fries~^~MCDONALD'S,FRENCH FR~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21239~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, no cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,NO CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21240~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, with cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21241~^~2100~^~WENDY'S, Jr. Hamburger, without cheese~^~WENDY'S,JR. HAMBURGER,WO/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21242~^~2100~^~WENDY'S, Jr. Hamburger, with cheese~^~WENDY'S,JR. HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21243~^~2100~^~WENDY'S, CLASSIC DOUBLE, with cheese~^~WENDY'S,CLASSIC DOUBLE,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21244~^~2100~^~WENDY'S, Homestyle Chicken Fillet Sandwich~^~WENDY'S,HOMESTYLE CHICK FILLET SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21245~^~2100~^~WENDY'S, Ultimate Chicken Grill Sandwich~^~WENDY'S,ULTIMATE CHICK GRILL SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21246~^~2100~^~WENDY'S, Chicken Nuggets~^~WENDY'S,CHICK NUGGETS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21247~^~2100~^~WENDY'S, french fries~^~WENDY'S,FRENCH FR~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21248~^~2100~^~WENDY'S, Frosty Dairy Dessert~^~WENDY'S,FROSTY DAIRY DSSRT~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21249~^~2100~^~BURGER KING, french fries~^~BURGER KING,FRENCH FR~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21250~^~2100~^~BURGER KING, Hamburger~^~BURGER KING,HAMBURGER~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21251~^~2100~^~BURGER KING, Cheeseburger~^~BURGER KING, CHSBRGR~^^~Burger King Corporation~^^^0^^6.25^^^ -~21252~^~2100~^~BURGER KING, WHOPPER, no cheese~^~BURGER KING,WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21253~^~2100~^~BURGER KING, WHOPPER, with cheese~^~BURGER KING,WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21254~^~2100~^~BURGER KING, DOUBLE WHOPPER, no cheese~^~BURGER KING,DOUBLE WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21255~^~2100~^~BURGER KING, DOUBLE WHOPPER, with cheese~^~BURGER KING,DOUBLE WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21256~^~2100~^~BURGER KING, Chicken Strips~^~BURGER KING,CHICK STRIPS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21258~^~2100~^~BURGER KING, Premium Fish Sandwich~^~BURGER KING,PREMIUM FISH SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21259~^~2100~^~BURGER KING, Original Chicken Sandwich~^~BURGER KING,ORIGINAL CHICK SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21260~^~2100~^~TACO BELL, Original Taco with beef, cheese and lettuce~^~TACO BELL,ORIGINAL TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21261~^~2100~^~TACO BELL, Soft Taco with beef, cheese and lettuce~^~TACO BELL,SOFT TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21262~^~2100~^~TACO BELL, Soft Taco with chicken, cheese and lettuce~^~TACO BELL,SOFT TACO W/ CHICK,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21263~^~2100~^~TACO BELL, Soft Taco with steak~^~TACO BELL,SOFT TACO W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21264~^~2100~^~TACO BELL, Bean Burrito~^~TACO BELL,BEAN BURRITO~^^~Taco Bell Corp.~^^^0^^^^^ -~21265~^~2100~^~TACO BELL, BURRITO SUPREME with beef~^~TACO BELL,BURRITO SUPREME W/ BF~^^~Taco Bell Corp.~^^^0^^^^^ -~21266~^~2100~^~TACO BELL, BURRITO SUPREME with chicken~^~TACO BELL,BURRITO SUPREME W/ CHICK~^^~Taco Bell Corp.~^^^0^^^^^ -~21267~^~2100~^~TACO BELL, BURRITO SUPREME with steak~^~TACO BELL,BURRITO SUPREME W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21268~^~2100~^~TACO BELL, Nachos~^~TACO BELL,NACHOS~^^~Taco Bell Corp.~^^^0^^^^^ -~21269~^~2100~^~TACO BELL, Nachos Supreme~^~TACO BELL,NACHOS SUPREME~^^~Taco Bell Corp.~^^^0^^^^^ -~21270~^~2100~^~TACO BELL, Taco Salad~^~TACO BELL,TACO SALAD~^^~Taco Bell Corp.~^^^0^^^^^ -~21271~^~2100~^~PIZZA HUT 12" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21272~^~2100~^~PIZZA HUT 12" Cheese Pizza, Pan Crust~^~PIZZA HUT 12" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21273~^~2100~^~PIZZA HUT 12" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 12" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21274~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21275~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21276~^~2100~^~PIZZA HUT 12" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^4.00 -~21277~^~2100~^~DOMINO'S 14" Cheese Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" CHS PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21278~^~2100~^~DOMINO'S 14" Cheese Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" CHS PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21279~^~2100~^~DOMINO'S 14" Cheese Pizza, Crunchy Thin Crust~^~DOMINO'S 14" CHS PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21280~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21281~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" PEPPERONI PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21282~^~2100~^~DOMINO'S 14" EXTRAVAGANZZA FEAST Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" EXTRAVAGANZZA FST PIZZA,CLSSIC HAND-TOSSED CRST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21283~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Original Crust~^~PAPA JOHN'S 14" CHS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21284~^~2100~^~PAPA JOHN'S 14" Pepperoni Pizza, Original Crust~^~PAPA JOHN'S 14" PEPPERONI PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21285~^~2100~^~PAPA JOHN'S 14" The Works Pizza, Original Crust~^~PAPA JOHN'S 14" THE WORKS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21286~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Thin Crust~^~PAPA JOHN'S 14" CHS PIZZA,THIN CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21287~^~2100~^~LITTLE CAESARS 14" Original Round Cheese Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND CHS PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21288~^~2100~^~LITTLE CAESARS 14" Original Round Pepperoni Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND PEPPERONI PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21289~^~2100~^~LITTLE CAESARS 14" Original Round Meat and Vegetable Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND MEAT & VEG PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21290~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" CHS PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21291~^~2100~^~LITTLE CAESARS 14" Pepperoni Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" PEPPERONI PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21292~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Thin Crust~^~LITTLE CAESARS 14" CHS PIZZA,THIN CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21293~^~2100~^~PIZZA HUT 14" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21294~^~2100~^~PIZZA HUT 14" Cheese Pizza, Pan Crust~^~PIZZA HUT 14" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21295~^~2100~^~PIZZA HUT 14" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21296~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21297~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21298~^~2100~^~PIZZA HUT 14" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21299~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21300~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21301~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21302~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21303~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21304~^~2100~^~Fast Food, Pizza Chain, 14" pizza, meat and vegetable topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,MEAT & VEG TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21305~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21306~^~2100~^~Fast foods, griddle cake sandwich, sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,SAUSAGE~^^^~Y~^^0^^^^^ -~21307~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and bacon~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& BACON~^^^~Y~^^0^^^^^ -~21309~^~2100~^~McDONALD'S, Chicken McNUGGETS~^~MCDONALD'S,CHICK MCNUGGETS~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21319~^~2100~^~McDONALD'S, Hash Brown~^~MCDONALD'S,HASH BROWN~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21321~^~2100~^~McDONALD'S, Hotcakes (plain)~^~MCDONALD'S,HOTCAKES (PLAIN)~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21327~^~2100~^~McDONALD'S, Bacon, Egg & Cheese McGRIDDLES~^~MCDONALD'S,BACON,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21328~^~2100~^~McDONALD'S, Sausage McGRIDDLES~^~MCDONALD'S,SAUSAGE MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21329~^~2100~^~McDONALD'S, Sausage, Egg & Cheese McGRIDDLES~^~MCDONALD'S,SAUSAGE,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21333~^~2100~^~McDONALD'S, Vanilla Reduced Fat Ice Cream Cone~^~MCDONALD'S,VANILLA RED FAT ICE CRM CONE~^^~McDonald's Corporation~^^^0^^^^^ -~21334~^~2100~^~McDONALD'S, Strawberry Sundae~^~MCDONALD'S,STRAWBERRY SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21335~^~2100~^~McDONALD'S, Hot Caramel Sundae~^~MCDONALD'S,HOT CARAMEL SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21336~^~2100~^~McDONALD'S, Hot Fudge Sundae~^~MCDONALD'S,HOT FUDGE SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21338~^~2100~^~McDONALD'S, McFLURRY with M&M'S CANDIES~^~MCDONALD'S,MCFLURRY W/ M&M'S CANDIES~^^~McDonald's Corporation~^^^0^^^^^ -~21339~^~2100~^~McDONALD'S, McFLURRY with OREO cookies~^~MCDONALD'S,MCFLURRY W/ OREO COOKIES~^^~McDonald's Corporation~^^^0^^^^^ -~21340~^~2100~^~McDONALD'S, Sausage Burrito~^~MCDONALD'S,SAUSAGE BURRITO~^^~McDonald's Corporation~^^^0^^^^^ -~21341~^~2100~^~McDONALD'S, BIG BREAKFAST~^~MCDONALD'S,BIG BRKFST~^^~McDonald's Corporation~^^^0^^^^^ -~21344~^~2100~^~McDONALD'S, Double Cheeseburger~^~MCDONALD'S,DOUBLE CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21345~^~2100~^~McDONALD'S, DOUBLE QUARTER POUNDER with Cheese~^~MCDONALD'S,DOUBLE QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21350~^~2100~^~McDONALD'S, BIG MAC (without Big Mac Sauce)~^~MCDONALD'S,BIG MAC (WITHOUT BIG MAC SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21355~^~2100~^~McDONALD'S, McCHICKEN Sandwich~^~MCDONALD'S,MCCHICKEN SNDWCH~^^~McDonald's Corporation~^^^0^^^^^ -~21356~^~2100~^~McDONALD'S, McCHICKEN Sandwich (without mayonnaise)~^~MCDONALD'S,MCCHICKEN SNDWCH (WITHOUT MAYONNAISE)~^^~McDonald's Corporation~^^^0^^^^^ -~21357~^~2100~^~McDONALD'S, Egg McMUFFIN~^~MCDONALD'S,EGG MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21358~^~2100~^~McDONALD'S, Sausage McMUFFIN~^~MCDONALD'S,SAUSAGE MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21359~^~2100~^~McDONALD'S, Sausage McMUFFIN with Egg~^~MCDONALD'S,SAUSAGE MCMUFFIN W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21360~^~2100~^~McDONALD'S, Bacon Egg & Cheese Biscuit~^~MCDONALD'S,BACON EGG & CHS BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21361~^~2100~^~McDONALD'S, Sausage Biscuit~^~MCDONALD'S,SAUSAGE BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21362~^~2100~^~McDONALD'S, Sausage Biscuit with Egg~^~MCDONALD'S,SAUSAGE BISCUIT W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21363~^~2100~^~McDONALD'S, Deluxe Breakfast, with syrup and margarine~^~MCDONALD'S,DELUXE BRKFST,W/ SYRUP & MARGARINE~^^~McDonald's Corporation~^^^0^^^^^ -~21364~^~2100~^~McDONALD'S, Hotcakes and Sausage~^~MCDONALD'S,HOTCAKES & SAUSAGE~^^~McDonald's Corporation~^^^0^^^^^ -~21365~^~2100~^~McDONALD'S, Hotcakes (with 2 pats margarine & syrup)~^~MCDONALD'S,HOTCAKES (WITH 2 PATS MARGARINE & SYRUP)~^^~McDonald's Corporation~^^^0^^^^^ -~21376~^~2100~^~McDONALD'S, Bacon Ranch Salad with Grilled Chicken~^~MCDONALD'S,BACON RANCH SALAD W/ GRILLED CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21377~^~2100~^~McDONALD'S Bacon Ranch Salad with Crispy Chicken~^~MCDONALD'S BACON RANCH SALAD W/ CRISPY CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21378~^~2100~^~McDONALD'S, Bacon Ranch Salad without chicken~^~MCDONALD'S,BACON RANCH SALAD WO/ CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21379~^~2100~^~McDONALD'S, Side Salad~^~MCDONALD'S,SIDE SALAD~^^~McDonald's Corporation~^^^0^^^^^ -~21380~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT~^^~McDonald's Corporation~^^^0^^^^^ -~21381~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait (without granola)~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT (WITHOUT GRANOLA)~^^~McDonald's Corporation~^^^0^^^^^ -~21382~^~2100~^~McDONALD'S, FILET-O-FISH (without tartar sauce)~^~MCDONALD'S,FILET-O-FISH (WITHOUT TARTAR SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21383~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage, Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE,EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21384~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21385~^~2100~^~BURGER KING, CROISSAN'WICH with Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21386~^~2100~^~BURGER KING, french toast sticks~^~BURGER KING,FRENCH TOAST STKS~^^~Burger King Corporation~^^^0^^^^^ -~21387~^~2100~^~BURGER KING, Hash Brown Rounds~^~BURGER KING,HASH BROWN ROUNDS~^^~Burger King Corporation~^^^0^^^^^ -~21388~^~2100~^~Fast foods, miniature cinnamon rolls~^~FAST FOODS,MINIATURE CINN ROLLS~^^^^^0^^^4.00^9.00^4.00 -~21389~^~2100~^~Fast foods, hamburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,HAMBURGER; DOUBLE,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21390~^~2100~^~Fast foods, hamburger; single, large patty; with condiments, vegetables and mayonnaise~^~FT FDS, HAMBRGER; SIN, LRG PATTY; W/ CONDMNTS, VEG, MAYO~^^^~Y~^^0^^^^^ -~21393~^~2100~^~Fast foods, hamburger; single, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,HMBURGR; SNG,REG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^^^0^^6.25^4.00^9.00^4.00 -~21395~^~2100~^~Fast foods, cheeseburger; double, regular patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21396~^~2100~^~Fast foods, cheeseburger; double, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT~^^^^^0^^^^^ -~21397~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,CHESEBRGER; SING,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21398~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21399~^~2100~^~Fast Foods, cheeseburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FDS,CHSEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21400~^~2100~^~Fast foods, cheeseburger; double, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,CHSBURGR; DBL,RG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21401~^~2100~^~Fast foods, chicken tenders~^~FAST FOODS,CHICK TENDERS~^~chicken strips~^^~Y~^^0^^^^^ -~21410~^~2100~^~Fast foods, bagel, with egg, sausage patty, cheese, and condiments~^~FAST FOODS,BAGEL,W/ EGG,SAUSAGE PATTY,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21411~^~2100~^~Fast foods, bagel, with breakfast steak, egg, cheese, and condiments~^~FAST FOODS,BAGEL,W/ BRKFST STEAK,EGG,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21412~^~2100~^~Light Ice Cream, soft serve, blended with milk chocolate candies~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ MILK CHOC CANDIES~^^^~Y~^^0^^^^^ -~21413~^~2100~^~Light Ice Cream, soft serve, blended with cookie pieces~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ COOKIE PIECES~^^^~Y~^^0^^^^^ -~21415~^~2100~^~POPEYES, biscuit~^~POPEYES,BISCUIT~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21416~^~2100~^~POPEYES, Coleslaw~^~POPEYES,COLESLAW~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21417~^~2100~^~POPEYES, Mild Chicken Strips, analyzed 2006~^~POPEYES,MILD CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21418~^~2100~^~POPEYES, Spicy Chicken Strips, analyzed 2006~^~POPEYES,SPICY CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21419~^~2100~^~KFC, biscuit~^~KFC,BISCUIT~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21420~^~2100~^~KFC, Coleslaw~^~KFC,COLESLAW~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21421~^~2100~^~KFC, Crispy Chicken Strips~^~KFC,CRISPY CHICK STRIPS~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21422~^~2100~^~KFC, Popcorn Chicken~^~KFC,POPCORN CHICK~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21424~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Skin and Breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21425~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT NLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 18%; Handling loss, 1%~^47^^^^^ -~21426~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT ONLY,SKN BRG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 23%; Cartilage and bone, 24%~^47^^^^^ -~21427~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 36%; Cartilage and bone, 19%; Handling loss, 1%~^56^^^^^ -~21428~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 35%; Cartilage and bone, 26%; Handling loss, 1%~^63^^^^^ -~21429~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Skin and Breading~^~KFC,FRIED CHICK,EX CRISPY,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21430~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 33%; Cartilage and bone, 9%~^43^^^^^ -~21431~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT ONLY,SKN & BRDNG RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 21%~^49^^^^^ -~21432~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 13%~^53^^^^^ -~21433~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT ONLY,SKN & BRDING REMOVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 34%; Cartilage and bone, 24%~^58^^^^^ -~21434~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^18^^^^^ -~21435~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21436~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^19^^^^^ -~21437~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^26^^^^^ -~21438~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^9^^^^^ -~21439~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^21^^^^^ -~21440~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^13^^^^^ -~21441~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21442~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat only, skin and breading removed~^~POPEYES, CHICK,MILD,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 32%; Cartilage and bone, 17%; Handling loss, 1%~^50^^^^^ -~21443~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT ONLY,SKN & BREADING RE~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 22%; Cartilage and bone, 20%~^42^^^^^ -~21444~^~2100~^~POPEYES, Fried Chicken, Mild, Skin and Breading~^~POPEYES,FRIED CHICK,MILD,SKN & BREADING~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21445~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat only, skin and breading removed~^~POPEYES,FRIED CHCK,MILD,THIGH,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 20%~^60^^^^^ -~21446~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,WING,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 32%; Handling loss, 1%~^72^^^^^ -~21456~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,BREAST,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^17^^^^^ -~21457~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21458~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,THIGH,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21459~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,WING,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^32^^^^^ -~21461~^~2100~^~Fast foods, grilled chicken, bacon and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~GRILLED CHICK,BACON & TOMO CLB SNDWCH,W/ CHS,LETTUCE,& MAYO~^^^~Y~^^0^^^^^ -~21462~^~2100~^~Fast foods, crispy chicken, bacon, and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~CRISPY CHICK,BACON,& TOMATO CLUB SNDWCH,W/ CHS,LETUCE,& MAYO~^^^~Y~^^0^^^^^ -~21463~^~2100~^~Yogurt parfait, lowfat, with fruit and granola~^~YOGURT PARFAIT,LOWFAT,W/ FRUIT & GRANOLA~^^^~Y~^^0^^^^^ -~21464~^~2100~^~Fast Foods, Fried Chicken, Breast, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 30%; Cartilage and bone, 17%; Handling loss, 1%~^48^^^^^ -~21465~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,DRMSTK,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 24.5%, Cartilage and bone, 22%~^47^^^^^ -~21466~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,THIGH,MEAT ONLY,SKN & BREDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 13.6%~^52^^^^^ -~21467~^~2100~^~Fast Foods, Fried Chicken, Wing, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,WING,MEAT ONLY,SKN & BREADING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 37%; Cartilage and bone, 29%; Handling loss, 1%~^67^^^^^ -~21468~^~2100~^~Fast Foods, Fried Chicken, Skin and breading from all pieces~^~FAST FOODS,FRIED CHICK,SKN & BREADING FROM ALL PIECES~^^^^^0^^^^^ -~21469~^~2100~^~Fast Foods, Fried Chicken, Breast, meat and skin and breading~^~FAST FOODS,FRIED CHICK,BREAST,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^18^^^^^ -~21470~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat and skin with breading~^~FAST FOODS,FRIED CHICK,DRUMSTK,MEAT & SKN W/ BREADING~^^^~Y~^~Cartilage and bone~^22^^^^^ -~21471~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat and skin and breading~^~FAST FOODS,FRIED CHICK,THIGH,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^14^^^^^ -~21472~^~2100~^~Fast Foods, Fried Chicken, Wing, meat and skin and breading~^~FAST FOODS,FRIED CHICK,WING,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^29^^^^^ -~21473~^~2100~^~DIGIORNO Pizza, cheese topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21474~^~2100~^~DIGIORNO Pizza, cheese topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21475~^~2100~^~DIGIORNO Pizza, cheese topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21476~^~2100~^~DIGIORNO Pizza, pepperoni topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21477~^~2100~^~DIGIORNO Pizza, pepperoni topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21478~^~2100~^~DIGIORNO Pizza, pepperoni topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21479~^~2100~^~DIGIORNO Pizza, supreme topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21480~^~2100~^~DIGIORNO Pizza, supreme topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21482~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21483~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21484~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21485~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21486~^~2100~^~Fast foods, taco with beef, cheese and lettuce, soft~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,SOFT~^^^~Y~^^0^^^^^ -~21487~^~2100~^~Fast foods, taco with chicken, lettuce and cheese, soft~^~FAST FOODS,TACO W/ CHICK,LETTUCE & CHS,SOFT~^^^~Y~^^0^^^^^ -~21488~^~2100~^~Fast foods, quesadilla, with chicken~^~FAST FOODS,QUESADILLA,W/ CHICK~^^^~Y~^^0^^^^^ -~21490~^~2100~^~Fast Foods, grilled chicken filet sandwich, with lettuce, tomato and spread~^~FAST FDS,GRILLED CHICK FILET SNDWCH,W/ LETTUCE,TOMATO & SPRD~^^^~Y~^^0^^6.25^^^ -~21491~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21492~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Crunchy Thin Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21493~^~2100~^~DOMINO'S 14" Sausage Pizza, Crunchy Thin Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21494~^~2100~^~DOMINO'S 14" Sausage Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21495~^~2100~^~DOMINO'S 14" Sausage Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" SAUSAGE PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21496~^~2100~^~PIZZA HUT 14" Sausage Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21497~^~2100~^~PIZZA HUT 14" Sausage Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21498~^~2100~^~PIZZA HUT 14" Sausage Pizza, Pan Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21505~^~2100~^~Pizza, cheese topping, thin crust, frozen, cooked~^~PIZZA,CHS TOPPING,THIN CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~21506~^~2100~^~BURGER KING, Double Cheeseburger~^~BURGER KING,DOUBLE CHEESEBURGER~^^~Burger King Corporation~^^^0^^^^^ -~21507~^~2100~^~WENDY'S, Double Stack, with cheese~^~WENDY'S,DOUBLE STACK,W/ CHS~^^~Wendy's International, Inc.~^^^0^^^^^ -~21508~^~2100~^~WEND'YS, Crispy Chicken Sandwich~^~WEND'YS,CRISPY CHICK SNDWCH~^^~Wendy's International, Inc.~^^^0^^^^^ -~21509~^~2100~^~BURGER KING, Onion Rings~^~BURGER KING,ONION RINGS~^^~Burger King Corporation~^^^0^^^^^ -~21510~^~2100~^~WENDY'S, DAVE'S Hot 'N Juicy 1/4 LB, single~^~WENDY'S,DAVE'S HOT 'N JUICY 1/4 LB,SINGLE~^^~Wendy's International, Inc.~^^^0^^^^^ -~21511~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, stuffed crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,STUFFED CRUST~^^^~Y~^^0^^^^^ -~21512~^~2100~^~PIZZA HUT 14" Cheese Pizza, Stuffed Crust~^~PIZZA HUT 14" CHS PIZZA,STUFFED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21517~^~2100~^~Fast foods, crispy chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,CRISPY CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~snack, wrap~^^~Y~^^0^^^^^ -~21518~^~2100~^~Fast foods, grilled chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,GRILLED CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~wrap, snack~^^~Y~^^0^^^^^ -~21519~^~2100~^~Fast foods, breakfast burrito, with egg, cheese, and sausage~^~FAST FOODS,BRKFST BURRITO,W/ EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21520~^~2100~^~Fast foods, breadstick, soft, prepared with garlic and parmesan cheese~^~FAST FOODS,BREADSTICK,SOFT,PREP W/ GARLIC & PARMESAN CHS~^^^~Y~^^0^^^^^ -~21521~^~2100~^~Fast foods, strawberry banana smoothie made with ice and low-fat yogurt~^~FAST FOODS,STRWBY BANANA SMTH MADE W/ ICE & LOW-FAT YOGURT~^^^~Y~^^0^^6.25^^^ -~21522~^~2100~^~McDONALD'S, Southern Style Chicken Biscuit~^~MCDONALD'S,SOUTHERN STYLE CHICK BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21523~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Crispy~^~MCDONALD'S,RANCH SNACK WRAP,CRISPY~^^~McDonald's Corporation~^^^0^^^^^ -~21524~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Grilled~^~MCDONALD'S,RANCH SNACK WRAP,GRILLED~^^~McDonald's Corporation~^^^0^^^^^ -~21525~^~2100~^~PIZZA HUT, breadstick, parmesan garlic~^~PIZZA HUT,BREADSTICK,PARMESAN GARLIC~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21526~^~2100~^~CHICK-FIL-A, chicken sandwich~^~CHICK-FIL-A,CHICK SNDWCH~^^~Chick-Fil-A~^^^0^^^^^ -~21527~^~2100~^~ARBY'S, roast beef sandwich, classic~^~ARBY'S,RST BF SNDWCH,CLASSIC~^^~ARBY'S~^^^0^^^^^ -~21600~^~2100~^~School Lunch, pizza, cheese topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THIN CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21601~^~2100~^~School Lunch, pizza, cheese topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THICK CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21602~^~2100~^~School Lunch, pizza, pepperoni topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPPI TOPPING,THIN CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21603~^~2100~^~School Lunch, pizza, pepperoni topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPP TOPPING,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21604~^~2100~^~School Lunch, pizza, sausage topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SSAGE TOPPING,THIN CRST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^6.25^^^ -~21605~^~2100~^~School Lunch, pizza, sausage topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SAUSAGE TOP,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21610~^~2100~^~School Lunch, chicken patty, whole grain breaded~^~SCHOOL LUNCH,CHICK PATTY,WHL GRAIN BREADED~^~school lunch~^^~Y~^^0^^^^^ -~21611~^~2100~^~School Lunch, chicken nuggets, whole grain breaded~^~SCHOOL LUNCH,CHICK NUGGETS,WHL GRAIN BREADED~^^^~Y~^^0^^^4.00^9.00^4.00 -~22247~^~2200~^~Macaroni and Cheese, canned entree~^~MACARONI & CHS,CND ENTREE~^^^~Y~^^0^^^^^ -~22401~^~2200~^~Spaghetti with meat sauce, frozen entree~^~SPAGHETTI W/ MEAT SAU,FRZ ENTREE~^^^~Y~^^0^^5.80^4.00^9.00^4.00 -~22402~^~2200~^~Beef macaroni with tomato sauce, frozen entree, reduced fat~^~BEEF MACARONI W/ TOMATO SAU,FRZ ENTREE,RED FAT~^^^^^0^^5.80^4.00^9.00^4.00 -~22522~^~2200~^~Pasta with Sliced Franks in Tomato Sauce, canned entree~^~PASTA W/SLICED FRANKS IN TOMATO SAU,CND ENTREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~22528~^~2200~^~Turkey Pot Pie, frozen entree~^~TURKEY POT PIE,FRZ ENTREE~^^^^^0^^^^^ -~22529~^~2200~^~Beef Pot Pie, frozen entree, prepared~^~BEEF POT PIE,FRZ ENTREE,PREP~^^^^^0^^^^^ -~22535~^~2200~^~HOT POCKETS, CROISSANT POCKETS Chicken, Broccoli, and Cheddar Stuffed Sandwich, frozen~^~HOT POCKETS,CROISSANT POCKTS CHIK,BROC&CHDR STUFD SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22537~^~2200~^~HOT POCKETS Ham 'N Cheese Stuffed Sandwich, frozen~^~HOT POCKETS HAM 'N CHS STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22899~^~2200~^~Ravioli, cheese-filled, canned~^~RAVIOLI,CHEESE-FILLED,CND~^^^~Y~^^0^^^^^ -~22900~^~2200~^~Ravioli, meat-filled, with tomato sauce or meat sauce, canned~^~RAVIOLI,MEAT-FILLED,W/ TOMATO SAU OR MEAT SAU,CND~^^^~Y~^^0^^^^^ -~22901~^~2200~^~Tortellini, pasta with cheese filling, fresh-refrigerated, as purchased~^~TORTELLINI,PASTA W/ CHS FILLING,FRESH-REFRIGERATED~^^^~Y~^^0^^6.04^4.00^9.00^4.00 -~22902~^~2100~^~Pizza, meat topping, thick crust, frozen, cooked~^~PIZZA,MEAT TOPPING,THICK CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~22903~^~2100~^~Pizza, pepperoni topping, regular crust, frozen, cooked~^~PIZZA,PEPPERONI TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~22904~^~2200~^~Chili con carne with beans, canned entree~^~CHILI CON CARNE W/BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22905~^~2200~^~Beef stew, canned entree~^~BEEF STEW,CANNED ENTREE~^^^~Y~^^0^^^^^ -~22906~^~2200~^~Chicken pot pie, frozen entree, prepared~^~CHICKEN POT PIE,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22908~^~2200~^~Beef, corned beef hash, with potato, canned~^~BEEF,CORNED BF HASH,W/ POTATO,CND~^^~Hormel Foods Corp.~^~Y~^^0^^6.25^^^ -~22910~^~2200~^~Lasagna, cheese, frozen, prepared~^~LASAGNA,CHS,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22911~^~2200~^~Chili, no beans, canned entree~^~CHILI,NO BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22912~^~2200~^~Spaghetti, with meatballs in tomato sauce, canned~^~SPAGHETTI,W/ MEATBALLS IN TOMATO SAU,CND~^^^~Y~^^0^^6.25^^^ -~22914~^~2200~^~Pasta with tomato sauce, no meat, canned~^~PASTA W/ TOMATO SAU,NO MEAT,CND~^^^~Y~^^0^^^^^ -~22915~^~2200~^~Lasagna with meat & sauce, low-fat, frozen entree~^~LASAGNA W/ MEAT & SAU,LOW-FAT,FRZ ENTREE~^^^^^0^^^^^ -~22916~^~2200~^~Lasagna with meat & sauce, frozen entree~^~LASAGNA W/ MEAT & SAU,FRZ ENTREE~^^^~Y~^^0^^^^^ -~22917~^~2200~^~Burrito, beef and bean, frozen~^~BURRITO,BF & BEAN,FRZ~^^^^^0^^^^^ -~22918~^~2200~^~Burrito, bean and cheese, frozen~^~BURRITO, BEAN AND CHEESE, FROZEN~^^^^^0^^^^^ -~22919~^~2200~^~Macaroni and Cheese, canned, microwavable~^~MACARONI & CHS,CND,MICROWAVABLE~^^^^^0^^^^^ -~22928~^~2200~^~Burrito, beef and bean, microwaved~^~BURRITO,BF & BEAN,MICROWAVED~^^^^^0^^^^^ -~22953~^~2200~^~Egg rolls, pork, refrigerated, heated~^~EGG ROLLS,PORK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22954~^~2200~^~Egg rolls, chicken, refrigerated, heated~^~EGG ROLLS,CHICK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22955~^~2200~^~Egg rolls, vegetable, frozen, prepared~^~EGG ROLLS,VEG,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22956~^~2200~^~Lasagna, Vegetable, frozen, baked~^~LASAGNA,VEG,FRZ,BKD~^^^^^0^^^^^ -~22957~^~2200~^~Turkey, stuffing, mashed potatoes w/gravy, assorted vegetables, frozen, microwaved~^~TKY,STUFFING,MSHD POTATO W/GRAVY,ASSORTED VEG,FRZ,MICROWAVE~^^^~Y~^^0^^^^^ -~22958~^~2200~^~Rice bowl with chicken, frozen entree, prepared (includes fried, teriyaki, and sweet and sour varieties)~^~RICE BOWL W/ CHICK,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22959~^~2200~^~Macaroni and cheese dinner with dry sauce mix, boxed, uncooked~^~MACARONI & CHS DINNER W/ DRY SAU MIX,BOXED,UNCKD~^^^~Y~^^0^^^^^ -~22960~^~2200~^~Macaroni and cheese, dry mix, prepared with 2% milk and 80% stick margarine from dry mix~^~MAC & CHS,DRY MIX,PREP W/ 2% MILK & 80% STK MARGARINE DRY MX~^^^^^0^^^^^ -~22961~^~2200~^~HOT POCKETS, meatballs & mozzarella stuffed sandwich, frozen~^~HOT POCKETS,MEATBALLS & MOZZARELLA STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22962~^~2200~^~LEAN POCKETS, Ham N Cheddar~^~LEAN POCKETS,HAM N CHEDDAR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22963~^~2200~^~Lean Pockets, Meatballs & Mozzarella~^~LEAN POCKETS,MEATBALLS & MOZZARELLA~^^^^^0^^^^^ -~22969~^~2200~^~Chili with beans, microwavable bowls~^~CHILI W/ BNS,MICROWAVABLE BOWLS~^^^^^0^^^^^ -~22970~^~2200~^~Macaroni and cheese, frozen entree~^~MACARONI & CHS,FRZ ENTREE~^^^^^0^^^^^ -~22971~^~2200~^~Potato salad with egg~^~POTATO SALAD W/ EGG~^^^~Y~^^0^^^^^ -~22972~^~2200~^~Pulled pork in barbecue sauce~^~PULLED PORK IN BARBECUE SAU~^^^^^0^^^^^ -~22973~^~2200~^~Corn dogs, frozen, prepared~^~CORN DOGS,FRZ,PREP~^^^~Y~^^0^^^^^ -~22974~^~2200~^~Chicken, nuggets, dark and white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,DK & WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^~Y~^^0^^^^^ -~22975~^~2200~^~Chicken, nuggets, white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^^^0^^^^^ -~22976~^~2200~^~Ravioli, cheese with tomato sauce, frozen, not prepared, includes regular and light entrees~^~RAVIOLI,CHS W/ TOMATO SAU,FRZ,NOT PREP,INCL REG & LT ENTREES~^^^~Y~^^0^^^^^ -~22977~^~2200~^~Lasagna with meat sauce, frozen, prepared~^~LASAGNA W/ MEAT SAU,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22978~^~2200~^~Chicken tenders, breaded, frozen, prepared~^~CHICKEN TENDERS,BREADED,FRZ,PREP~^^^~Y~^^0^^^^^ -~22998~^~2200~^~RICE-A-RONI, chicken flavor, unprepared~^~RICE-A-RONI,CHICK FLAVOR,UNPREP~^^^~Y~^^0^^^^^ -~22999~^~2200~^~Rice and vermicelli mix, chicken flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,CHICK FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^^^ -~23000~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STK,BNLS,LN & FAT,0" FAT,ALL GRDS,R~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23001~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~23002~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,PRTRHS STK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~23003~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 24%~^24^^6.25^4.27^9.02^3.87 -~23004~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,L & F,1/8" F,SEL,CKD,GRILLED~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23005~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~23006~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BNE STEK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~T-Bone Steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23007~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~23008~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN & FAT,1/8" FAT,SEL,CKD,GRLLD~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue 32%~^32^^6.25^4.27^9.02^3.87 -~23030~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23031~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23032~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat , trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT 0" FAT,SEL,RAW~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23033~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23034~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23035~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,SHDR TNDR,MED,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23036~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1164 or #1030, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23037~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHLDR CLOD,TOP & CNTR ,STK,LN & FAT,0" FAT,CH,RAW~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23038~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,SHLDR CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,CH,CKD,GRLD~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23039~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD, TOP & CNTR,STK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23040~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23041~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23042~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23043~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23044~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23045~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.24^4.27^9.02^3.87 -~23046~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23047~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23048~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23049~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23050~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23051~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23052~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23053~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHK,CLD,SHLDR TNDR,MEDALLION,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23054~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHK,CLD,SHDR TNDR,MED,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23055~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23056~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCK,TIP SIDE,STK,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23057~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHUCK,CLOD,TOP & CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23058~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHCK,CLOD,SHLDR TOP&CNTR STKS,LN & FT,0",ALL GRDS,GRLD~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23059~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23060~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHUCK,CLOD,TOP BLADE,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23061~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23062~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23063~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL,RAW~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23064~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23065~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,SHLDR TENDER,MED,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1164 or #1030, Teres Major, Beef Value Cut, Tender Medallions~^^^^0^^6.25^4.27^9.02^3.87 -~23066~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23067~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 19%~^25^^6.25^^^ -~23068~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23069~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 18%~^27^^6.25^^^ -~23070~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,CKD,B~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 16%~^24^^6.25^^^ -~23071~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BF,CHK EYE CNTRY-STL RIBS,BNLS,LN,0" FAT,ALL GRDS, CKD, BRSD~^~Beef, Chuck, Bnls, Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23072~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 14%~^22^^6.25^^^ -~23073~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%, seam fat 13%~^23^^6.25^^^ -~23074~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE COUNTRY-STYLE RIBS,BNLS,LN,0" FAT,ALL GRDS, RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 13%~^22^^6.25^^^ -~23075~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%, seam fat 18%~^24^^6.25^^^ -~23076~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23077~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Beef, Chuck, Chuch Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 18%~^23^^6.25^^^ -~23078~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, ChuckEye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23079~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23080~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23081~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23082~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%, seam fat 3%~^10^^6.25^^^ -~23083~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23084~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~23085~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 9%~^14^^6.25^^^ -~23086~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TENDER STK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 8%~^14^^6.25^^^ -~23087~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 1%~^6^^6.25^^^ -~23088~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23089~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23090~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23091~^~1300~^~Beef, chuck for stew, separable lean and fat, select, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23092~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23093~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23094~^~1300~^~Beef, chuck for stew, separable lean and fat, select, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23095~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,RAW~^~URMIS #110~^^^^0^^6.25^^^ -~23096~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23097~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%, seam fat 13%~^17^^6.25^^^ -~23098~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL STEAK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 15%~^20^^6.25^^^ -~23099~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,UND BLD, POT RST,BNL,LN & FAT,0" FAT,ALL GR,CKD,BR~^~Beef Chuck Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^^^ -~23100~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLES,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~connective tissue 6%, Separable fat 20%~^26^^6.25^^^ -~23101~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2008~^^^~Bone and connective tissue 16%, separable fat 16%~^32^^6.25^^^ -~23102~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST/STK,BNL,LN & FT,0" FT, All GR, raw~^~URMIS #1151/1158, Beef Chuck, Under Blade Pot Roast/Steak~^^^~Connective tissue 6%~^6^^6.25^^^ -~23103~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BL POT RST OR STK,BNL,LN & FAT,0" FAT, CH, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23104~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL POT RST/STEAK,BNL,LN & FAT,0" FAT, SEL, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23105~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FAT, ALL GR, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steaks), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23106~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CT,LN&FT, 0" FT,CH,CKD,GLD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23107~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UNDBL CNTR STK,BNL,DEN CT,LN&FAT, 0" FT,SEL,CKD,GLD~^~Beef Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23108~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FT,0"FT,All Gr, RW~^~Beef, Chuck. Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23109~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UNDBLE CNTR STK,BNL,DENR CUT,LN & FAT,0"FAT, CH, RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23110~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CUT,LN & FT,0"FT, SEL,RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23111~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23112~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23113~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",ALL GRD,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23114~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",CH,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~23115~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHCK EYE RST,BNLS,A BF RST,LN & FAT,0",SEL,C,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23116~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23117~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23118~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%~^4^^6.25^^^ -~23119~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TNDR STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23120~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Mock Tender Staek, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23121~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23122~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,MOCK TEN STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23123~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23124~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23125~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRS~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23126~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23127~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23128~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23129~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23130~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23131~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23132~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23133~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%~^7^^6.25^^^ -~23134~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK EYE CTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23135~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK EYE CNTRY-STYL RIBS,BNL,LN & FAT,0" FAT,CHOICE, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23136~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23137~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23138~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,CHOICE,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23139~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%~^10^^6.25^^^ -~23140~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GR~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23141~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%~^6^^6.25^^^ -~23142~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23143~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23144~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23145~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%~^9^^6.25^^^ -~23146~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN,1/8" FT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23147~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1193~^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23148~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLES,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2018~^^^~connective tissue 5%, Separable fat 22%~^27^^6.25^^^ -~23149~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1203~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23150~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 14%, Separable fat 21%~^35^^6.25^^^ -~23151~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%, Separable fat 22%~^36^^6.25^^^ -~23152~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%, Separable fat 20%~^35^^6.25^^^ -~23153~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 20%~^24^^6.25^^^ -~23154~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2018/2009~^^^~Connective tissue 4%, Separable fat 21%~^25^^6.25^^^ -~23155~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1203/1194~^^^~Connective tissue 3%, Separable fat 18%~^21^^6.25^^^ -~23156~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23157~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRLD~^~URMIS #2012~^^^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23158~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILD~^~URMIS #1197~^^^~Bone and connective tissue 20%, Separable fat 19%~^39^^6.25^^^ -~23159~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 19%~^24^^6.25^^^ -~23160~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2009~^^^~connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23161~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%, Separable fat 18%~^23^^6.25^^^ -~23162~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLE,INSDE SKRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23163~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23164~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23165~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23166~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,CKD,GRILD~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23167~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 5%~^6^^6.25^^^ -~23168~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLES,OTSDE SKIRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 0.5%, Separable fat 3.5%~^4^^^^^ -~23169~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23170~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2428~^^^~Connective tissue 0.3%, Separable fat 3.3%~^4^^6.25^^^ -~23171~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%, Separable fat 8%~^9^^6.25^^^ -~23172~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,CKD,GRLD~^~URMIS #1613~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23173~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1613~^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23174~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,CKD,GRI~^^^^~Connective tissue 5%, Separable fat 16%~^26^^6.25^^^ -~23175~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 17%~^24^^6.25^^^ -~23176~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #2024~^^^~Connective tissue 5%, Separable fat 18%~^27^^6.25^^^ -~23177~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%, Separable fat 18%~^25^^6.25^^^ -~23178~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1209~^^^~Connective tissue 5%, Separable fat 13%~^24^^6.25^^^ -~23179~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%, Separable fat 14%~^22^^6.25^^^ -~23180~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%, Separable fat 8%~^69^^6.25^^^ -~23181~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%, Separable fat 12%~^64^^6.25^^^ -~23182~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%, Separable fat 9%~^69^^6.25^^^ -~23183~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%, Separable fat 13%~^66^^6.25^^^ -~23184~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 62%, Separable fat 7%~^69^^6.25^^^ -~23185~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%, Separable fat 11%~^63^^6.25^^^ -~23186~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,CHOC,CKD,GRL~^~URMIS #2012~^^^~Bone and connective tissue 19%~^19^^6.25^^^ -~23187~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,SEL,CKD,GRLD~^~URMIS #1197~^^^~Bone and connective tissue 20%~^20^^6.25^^^ -~23188~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BN-IN,LIP-ON,LN & FT,1/8" FT,AL GDS,CKD,GRL~^^^~Y~^~Bone and connective tissue 19%~^19^^6.25^^^ -~23189~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FT,CHC,CKD,RST~^~URMIS #2008~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23190~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RST~^~URMIS #1193~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23191~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LP-ON,LN & FT,1/8" FT,AL GRD,CKD,RST~^^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23192~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,IP-ON,LN & FT,1/8" FT,AL GRDS,RW~^^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23193~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,CHC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23194~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%~^15^^6.25^^^ -~23195~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,GRD~^~URMIS #2018~^^^~Connective tissue 6%~^6^^6.25^^^ -~23196~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,GILD~^~URMIS #1203~^^^~Connective tissue 6%~^6^^6.25^^^ -~23197~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FT,1/8" FT,AL GRD,CKD,GRLD~^^^~Y~^~Connective tissue 6%~^6^^6.25^^^ -~23198~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLS,LP-ON,LN & FT,1/8" FT,ALL GRD,CKD,RSTD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23199~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,RSTD~^~URMIS #2009~^^^~Connective tissue 6%~^6^^6.25^^^ -~23200~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%~^5^^6.25^^^ -~23201~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLS,LIP-ON,LN & FAT,1/8" FAT,AL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23202~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2018/2009~^^^~Connective tissue 4%~^4^^6.25^^^ -~23213~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1203/1194~^^^~Connective tissue 3%~^3^^6.25^^^ -~23214~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,INSD SKRT,LN & FAT,0" FAT,ALL GRD,CKD,GRL~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23215~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLSS,INSDE SKRT,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23216~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23217~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,INSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23218~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,CHOC,RW~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23219~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23220~^~1300~^~Beef, ground, unspecified fat content, cooked~^~BEEF,GROUND,UNSPEC FAT CONTENT,CKD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23221~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,AL GRD,CKD,GRLD~^^^^^0^^6.25^^^ -~23222~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,CHC,CKD,GRLD~^~URMIS #2428~^^^^0^^6.25^^^ -~23223~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLS,OTSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRILD~^~URMIS #1613~^^^^0^^6.25^^^ -~23224~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,OUTSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23225~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKRT,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%~^1^^6.25^^^ -~23226~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN & FAT,0" FAT,SEL,RW~^~URMIS #1613~^^^~Connective tissue 1%~^1^^6.25^^^ -~23227~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP OF,LN & FAT,0" FT,AL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23228~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2024~^^^~Connective tissue 5%~^5^^6.25^^^ -~23229~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEK,BNLES,LIP OFF,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1209~^^^~Connective tissue 5%~^5^^6.25^^^ -~23230~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,ALL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23231~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%~^4^^6.25^^^ -~23232~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%~^3^^6.25^^^ -~23233~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%~^61^^6.25^^^ -~23234~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%~^60^^6.25^^^ -~23235~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 63%~^62^^6.25^^^ -~23236~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23237~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%~^53^^6.25^^^ -~23238~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23239~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TOP SIRLIN PETITE RST,BNLS,LN,0" FAT,CHOC,CKD,RSTD~^~Gluteus medius, URMIS #2136~^^^~Connective tissue 6%, Separable fat 4%~^10^^6.25^^^ -~23240~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN PETITE RST/FILET,BNLS,LN,0" FAT,CHC,RW~^~URMIS #2136, Gluteus medius, URMIS #2138~^^^~Connective tissue 6%, Separable fat 5%~^11^^6.25^^^ -~23241~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN,1/8" FAT,AL GRDS,CKD,GLD~^~Biceps femoris~^^^~Connective tissue 8%, Separable fat 13%~^21^^6.25^^^ -~23242~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLON CAP STK,BNLS,LN,1/8" FAT,CHOIC,CKD,GRLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 14%~^22^^6.25^^^ -~23243~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,SEL,CKD,GRLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23244~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Biceps femoris~^^^~Connective tissue 7%, Separable fat 13%~^20^^6.25^^^ -~23245~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,CHOIC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23246~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23247~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 10%, Separable fat 9%~^19^^6.25^^^ -~23248~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS #2137~^^^~Connective tissue 12%, Separable fat 7%~^19^^6.25^^^ -~23249~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%, Separable fat 12%~^20^^6.25^^^ -~23250~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLSS,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%, Separable fat 7%~^16^^6.25^^^ -~23251~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%, Separable fat 6%~^14^^6.25^^^ -~23252~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%, Separable fat 7%~^17^^6.25^^^ -~23253~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 11%, Separable fat 9%~^20^^6.25^^^ -~23254~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,CHOC,RAW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%, Separable fat 7%~^20^^6.25^^^ -~23255~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,SEL,RAW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23256~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLS,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23257~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILD~^~URMIS #2138~^^^~Connective tissue 5%~^5^^6.25^^^ -~23258~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1323~^^^~Connective tissue 5%~^5^^6.25^^^ -~23259~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TOP SIRLON PTIT RST,BLS,LN,0" FAT,AL GRDS,CKD,RSTD~^~Gluteus medius~^^^~Connective tissue 6%~^6^^6.25^^^ -~23260~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TOP SIRLOIN PETITE RST,BNLS,LN,0" FAT,SEL,CKD,RSTD~^~Gluteus medius, URMIS #1321~^^^~Connective tissue 6%~^6^^6.25^^^ -~23261~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP SRLN PETIT RST/FILT,BNLS,LN,0" FAT,AL GRDS,RAW~^~Gluteus medius~^^^~Connective tissue 7%~^7^^6.25^^^ -~23262~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP SIRLON PETITE RST/FILET,BNLS,LN,0" FAT,SEL,RAW~^~URMIS #1323, Gluteus medius, URMIS #1321~^^^~Connective tissue 7%~^7^^6.25^^^ -~23263~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23264~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,CHOIC,RAW~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23265~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,SEL,RAW~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 5%~^5^^6.25^^^ -~23266~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Spinalis dorsi~^^^~Connective tissue 10%~^10^^6.25^^^ -~23267~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 10%~^10^^6.25^^^ -~23268~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 10%~^10^^6.25^^^ -~23269~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Spinalis dorsi~^^^~Connective tissue 12%~^12^^6.25^^^ -~23270~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 12%~^12^^6.25^^^ -~23271~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 12%~^12^^6.25^^^ -~23272~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 6%~^6^^6.25^^^ -~23273~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2068~^^^~Connective tissue 6%~^6^^6.25^^^ -~23274~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1253~^^^~Connective tissue 6%~^6^^6.25^^^ -~23275~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23276~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23277~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 6%~^6^^6.25^^^ -~23278~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SRL CP STK,BNLS,LN & FT,1/8" FT,ALGDS,CKD,GRLD~^~Biceps femoris~^^^~Connective tissue 8%~^8^^6.25^^^ -~23279~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,CHC,CKD,GLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23280~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,SEL,CKD,GLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%~^8^^6.25^^^ -~23281~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN & FAT,1/8" FAT,AL GDS,RW~^~Biceps femoris~^^^~Connective tissue 7%~^7^^6.25^^^ -~23282~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,CHC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23283~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%~^7^^6.25^^^ -~23284~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLS,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23285~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2137~^^^~Connective tissue 12%~^12^^6.25^^^ -~23286~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%~^9^^6.25^^^ -~23287~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PET RST,BNLS,LN & FAT,1/8" FAT,AL GDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%~^9^^6.25^^^ -~23288~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETI RST,BNLS,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%~^8^^6.25^^^ -~23289~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLS,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%~^10^^6.25^^^ -~23290~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETIT RST/FILT,BNS,LN & FAT,1/8" FAT,AL GRD,RW~^~Longissimus dorsi~^^^~Connective tissue 11%~^11^^6.25^^^ -~23291~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%~^13^^6.25^^^ -~23292~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%~^8^^6.25^^^ -~23293~^~1300~^~Beef, Australian, imported, grass-fed, ground, 85% lean / 15% fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,GROUND,85% LN / 15% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23294~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,LOIN,TENDERLN STK/RST,BNLESS,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23295~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TENLN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 3%~^3^^6.25^^^ -~23296~^~1300~^~Beef, Australian, imported, grass-fed, external fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~23297~^~1300~^~Beef, Australian, imported, grass-fed, seam fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~23298~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23299~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 4/5, raw~^~BEEF,AUST,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23300~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 9, raw~^~BEEF,AUST,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23301~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 9, raw~^~BEEF,AUSTRALIAN,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23302~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,TNDERLN STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23303~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,TOP LOIN STK/RST,BNLESS,LN,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 7%, Separable fat 16%~^23^^6.25^^^ -~23304~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AU,IMP,WGU,TDLN STK/RST,BNLES,LN & FAT, MRB SCR 4/5,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23305~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED, TOP LOIN STK/RST,BNLESS,LN FAT,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 7%~^7^^^^^ -~23306~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,TOP SIRLN CP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%, separable fat 1%~^3^^6.25^^^ -~23307~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RIBEYE STK/RST LIP-ON,BNLESS,LN,RAW~^~URMIS #1194, URMIS# 1203~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23308~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,BTTM RND STK/RST,BNLESS,LN,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^^^ -~23309~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RD,TP RND CAP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1553, URMIS #1454~^^^~Connective tissue 1%, separable fat 1%~^2^^6.25^^^ -~23310~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,LOIN,TENLN STK/RST,BNLESS,LN, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, separable fat 3%~^3^^6.25^^^ -~23311~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TOP LN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~connective tissue 6%, separable fat 17%~^23^^6.25^^^ -~23312~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLESS,LN,MARBLE SCORE 9,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23313~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLENDRIB STK/RST,BNLESS, MRB SCR 4/5,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 22%~^26^^6.25^^^ -~23314~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SML END RIB STK/RST,BNLESS,MRB SCR 9,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 24%~^28^^6.25^^^ -~23315~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP SIRLN CP-OFFSTK/RST,BNLES,LN&FAT,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%~^2^^^^^ -~23316~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,RBEYE STK/RST LIP-ON,BNLESS,LN&FAT,RAW~^~URMIS #1194, URMIS #1203~^^^~Connective tissue 7%~^7^^^^^ -~23317~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,BTTM RND STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%~^3^^^^^ -~23318~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP RNDCAP-OFF STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1553, URMIS #1454~^^^^0^^^^^ -~23319~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLES,LN & FAT,MRB SCR4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%~^6^^^^^ -~23320~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,LN & FAT,MARBLE SCORE9,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 6%~^6^^^^^ -~23321~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLES,LN&FAT,MRBSCR4/5,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23322~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLESS,LN&FAT,MRB SCR9,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23323~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AU,IMP,WGU,TNLN, STK/RST,BNLESS,LN & FAT, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^^0^^^^^ -~23324~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23325~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2368, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23326~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1553, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23327~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23328~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2366, Top Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23329~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 1%~^1^^6.25^^^ -~23330~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23331~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2295, Eye of Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23332~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 1%~^1^^6.25^^^ -~23333~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FT,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23334~^~1300~^~Beef, round, eye of round steak, boneless separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2296, Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23335~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 1%~^1^^6.25^^^ -~23336~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23337~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%~^1^^6.25^^^ -~23338~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 2%~^2^^6.25^^^ -~23339~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,ALLGRD,RW~^~Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^~Y~^~Connective tissue 9%~^9^^6.25^^^ -~23340~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23341~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,SEL,RW~^~Boneless Strip Steak, URMIS # 1404~^^^~Connective tissue 9%~^9^^6.25^^^ -~23342~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,L & F,0" FAT,ALL GRDS,RAW~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^^^ -~23343~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23344~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23345~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TNDRLN RST,BNLESS,L & F,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23346~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,L & F,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2201, Tenderloin roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23347~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1386, Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23348~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLS,LN&FAT,0" FAT,ALLGRD,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^^^ -~23349~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2366, Top Round Roast~^^^^0^^6.25^^^ -~23350~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1551, Top Round Roast~^^^^0^^6.25^^^ -~23351~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23352~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RD STEAK,BNLESS,L & F,0" FT,CHOIC,CK,GRLLED~^~URMIS # 2296, Eye of Round Steak~^^^^0^^6.25^^^ -~23353~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~Eye of Round Steak, URMIS # 1481~^^~Y~^^0^^6.25^^^ -~23354~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23355~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Steak, URMIS # 2368~^^^~Connective tissue 1%~^1^^6.25^^^ -~23356~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Steak, URMIS # 1553~^^^~Connective tissue 2%~^2^^6.25^^^ -~23357~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23358~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Roast, URMIS # 2366~^^^~Connective tissue 2%~^2^^6.25^^^ -~23359~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 2%~^2^^6.25^^^ -~23360~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23361~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Roast, URMIS # 2295~^^^~Connective tissue 2%~^2^^6.25^^^ -~23362~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 2%~^2^^6.25^^^ -~23363~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 2%~^2^^6.25^^^ -~23364~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Steak, URMIS # 2296~^^^~Connective tissue 2%~^2^^6.25^^^ -~23365~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 2%~^2^^6.25^^^ -~23366~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23367~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23368~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 1%, separable fat 2%~^3^^6.25^^^ -~23369~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Connective tissue 8%, separable fat 5%~^13^^6.25^^^ -~23370~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 6%~^14^^6.25^^^ -~23371~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^^^ -~23372~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Fillet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 2%~^2^^6.25^^^ -~23373~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23374~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23375~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Separable fat 1%~^1^^6.25^^^ -~23376~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Tenderloin Roast, URMIS # 2201~^^^~Separable fat 1%~^1^^6.25^^^ -~23377~^~1300~^~Beef, loin, tenderloin roast, separable lean only, boneless, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,LN,BNLESS,0" FAT,SEL,CKD,RSTD~^~Tenderloin Roast, URMIS # 1386~^^^~Separable fat 1%~^1^^6.25^^^ -~23378~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23379~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Top Round Roast, URMIS # 2366~^^^^0^^6.25^^^ -~23380~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Top Round Roast, URMIS # 1551~^^^^0^^6.25^^^ -~23381~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FT,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23382~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Eye of Round Steak, URMIS # 2296~^^^^0^^6.25^^^ -~23383~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Eye of Round Steak, URMIS # 1481~^^^^0^^6.25^^^ -~23384~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^21^^^^^ -~23385~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^22^^6.25^^^ -~23386~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~Beef, ln, top ln stk, bneless lip-on, 1/8" fat all grdes raw~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^22^^6.25^^^ -~23387~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LN,TP LN STEAK,BNLESS,LIP-ON,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansa City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23388~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LN,TP LN STK,BNLESS,LIPON,LN & FAT,1/8" FAT,ALL GRDS,RW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23389~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,CHOIC,GRILLED~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23390~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,SeL, CK GRLED~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23391~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8 FAT,A GRDS, GRILLED~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23392~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LON,TP LON STK,BNLSS,LIP-ON,LN,1/8" FAT,CHC,CKD,GRILLD~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 14%~^22^^6.25^^^ -~23393~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLD~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%, separable fat 12%~^21^^^^^ -~23394~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLSS,LIP-ON,LN,1/8" FAT,ALL GRDS,,GRLLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 13%~^21^^^^^ -~23395~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TP LN STK,BNLESS,LIP-ON,L&F,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23397~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%, Separable fat 7%~^12^^6.25^^^ -~23398~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN,RAW~^^^^~Bone and Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23399~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,CKD,BRSD~^^^^~Separable fat 29%~^29^^6.25^^^ -~23401~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,RAW~^^^^~Separable fat 27%~^27^^6.25^^^ -~23402~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23403~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN,RAW~^^^^~Separable fat 6%~^6^^6.25^^^ -~23404~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,RAW~^^^^~Separable fat 8%~^8^^6.25^^^ -~23405~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23406~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN,CKD,FAST RSTD~^^^^~Separable fat 9%~^9^^6.25^^^ -~23407~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN,RAW~^^^^~Separable fat 11%~^11^^6.25^^^ -~23408~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN,CKD,SLOW RSTD~^^^^^0^^6.25^^^ -~23409~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, raw~^~BEEF,NZ,IMP,EYE RND,LN,RAW~^^^^~Separable fat 2%~^2^^6.25^^^ -~23410~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN,CKD,BRSD~^^^^~Separable fat 3%~^3^^6.25^^^ -~23411~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, raw~^~BEEF,NZ,IMP,FLANK,LN,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~23412~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN,CKD,BRSD~^^^^~Separable fat 5%~^5^^6.25^^^ -~23413~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, raw~^~BEEF,NZ,IMP,FLAT,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23414~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,CKD,BLD~^^^^~Separable fat 15%~^15^^6.25^^^ -~23415~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,RAW~^^^^~Separable fat 12%~^12^^6.25^^^ -~23416~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN,CKD,BRSD~^^^^~Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23417~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, raw~^~BEEF,NZ,IMP,HIND SHIN,LN,RAW~^^^^~Conective tissue .91%, Separable fat 6%~^7^^6.25^^^ -~23418~^~1300~^~Beef, New Zealand, imported, inside, raw~^~BEEF,NZ,IMP,INSIDE,RAW~^^^^~Connective tissue .55% Separable fat 2%~^3^^6.25^^^ -~23419~^~1300~^~Beef, New Zealand, imported, intermuscular fat, cooked~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^^^6.25^^^ -~23420~^~1300~^~Beef, New Zealand, imported, intermuscular fat, raw~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^^^6.25^^^ -~23421~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,CKD,BLD~^^^^~Connective tissue 20%~^20^^6.25^^^ -~23422~^~1300~^~Beef, New Zealand, imported, knuckle, cooked, fast fried~^~BEEF,NZ,IMP,KNUCKLE,CKD,FAST FRIED~^^^^~Connective tissue .33%, Separable fat 5%~^5^^6.25^^^ -~23423~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,RAW~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23424~^~1300~^~Beef, New Zealand, imported, variety meats and by-products liver, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS LIVER,CKD,BLD~^^^^~Connective tissue 2%~^2^^6.25^^^ -~23425~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, liver, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,LIVER,RAW~^^^^~Connective tissue 3%~^3^^6.25^^^ -~23426~^~1300~^~Beef, New Zealand, imported, manufacturing beef, cooked, boiled~^~BEEF,NZ,IMP,MANUFACTURING BF,CKD,BLD~^^^^^0^^6.25^^^ -~23427~^~1300~^~Beef, New Zealand, imported, manufacturing beef, raw~^~BEEF,NZ,IMP,MANUFACTURING BF,RAW~^^^^^0^^6.25^^^ -~23428~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN,CKD,BRSD~^^^^^0^^6.25^^^ -~23429~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN,RAW~^^^^~Separable fat 4%~^4^^6.25^^^ -~23430~^~1300~^~Beef, New Zealand, imported, ribs prepared, cooked, fast roasted~^~BEEF,NZ,IMP,RIBS PREP,CKD,FAST RSTD~^^^^~Bone and Connective tissue 15%, Separable fat 10%~^25^^6.25^^^ -~23431~^~1300~^~Beef, New Zealand, imported, ribs prepared, raw~^~BEEF,NZ,IMP,RIBS PREP,RAW~^^^^~Bone and connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23432~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23433~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN,CKD,FAST FRIED~^^^^~Separable fat 14%~^14^^6.25^^^ -~23434~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN,RAW~^^^^~Separable fat 16%~^16^^6.25^^^ -~23435~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, cooked~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~23436~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, raw~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~23437~^~1300~^~Beef, New Zealand, imported, sweetbread, cooked, boiled~^~BEEF,NZ,IMP,SWEETBREAD,CKD,BLD~^^^^~Conncetive tissue 4%, Separable fat 4%~^8^^^^^ -~23438~^~1300~^~Beef, New Zealand, imported, sweetbread, raw~^~BEEF,NZ,IMP,SWEETBREAD,RAW~^^^^~Conncetive tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23439~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23440~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,RAW~^^^^^0^^^^^ -~23441~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~23442~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,CKD,BLD~^^^^~Connective tissue 9%, Separable fat 2%~^11^^6.25^^^ -~23443~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue 17%, Separable fat 3%~^20^^6.25^^^ -~23444~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE CKD,BLD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23445~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe uncooked, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE UNCKD,RAW~^^^^~Separable fat 10%~^10^^6.25^^^ -~23446~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%~^5^^^^^ -~23447~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,RAW~^^^^~Bone and Connective tissue 2%~^2^^^^^ -~23448~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23449~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,RAW~^^^^^0^^^^^ -~23450~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23451~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,RAW~^^^^^0^^^^^ -~23452~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23453~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23454~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~23455~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23456~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN & FAT,CKD,SLOW RSTD~^^^^^0^^^^^ -~23457~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, raw~^~BEEF,NZ,IMP,EYE RND,LN & FAT,RAW~^^^^^0^^^^^ -~23458~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23459~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, raw~^~BEEF,NZ,IMP,FLANK,LN & FAT,RAW~^^^^^0^^^^^ -~23460~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23461~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, raw~^~BEEF,NZ,IMP,FLAT,LN & FAT,RAW~^^^^^0^^^^^ -~23462~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,CKD,BRSD~^^^^~Connective tissue 2%~^2^^^^^ -~23463~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, raw~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,RAW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23464~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23465~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23466~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23467~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,RAW~^^^^^0^^^^^ -~23468~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23469~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23470~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23471~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23472~^~1300~^~Beef, ground, 93% lean meat / 7% fat, raw~^~BEEF,GROUND,93% LN MEAT / 7% FAT~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23473~^~1300~^~Beef, ground, 93% lean meat / 7% fat, patty, cooked, broiled~^~BEEF,GROUND,93% LN MEAT / 7% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23474~^~1300~^~Beef, ground, 93% lean meat /7% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,93% LN MEAT /7% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23475~^~1300~^~Beef, ground, 93% lean meat / 7% fat, loaf, cooked, baked~^~BEEF,GROUND,93% LN MEAT / 7% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23476~^~1300~^~Beef, ground, 93% lean meat / 7% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,93% LN MEAT / 7% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23477~^~1300~^~Beef, ground, 97% lean meat / 3% fat, raw~^~BEEF,GROUND,97% LN MEAT / 3% FAT,RAW~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23478~^~1300~^~Beef, ground, 97% lean meat / 3% fat, patty, cooked, broiled~^~BEEF,GROUND,97% LN MEAT / 3% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23479~^~1300~^~Beef, ground, 97% lean meat /3% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,97% LN MEAT /3% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23480~^~1300~^~Beef, ground, 97% lean meat / 3% fat, loaf, cooked, baked~^~BEEF,GROUND,97% LN MEAT / 3% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23481~^~1300~^~Beef, ground, 97% lean meat / 3% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,97% LN MEAT / 3% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23482~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23483~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23484~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,CKD~^^^^~No component data available~^0^^^^^ -~23485~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23490~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23491~^~1300~^~Beef composite, separable lean only, trimmed to 1/8" fat, choice, cooked~^~BEEF COMP,LN,1/8" FAT,CHOIC,CKD~^^^^~No component data available~^^^^^^ -~23494~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23495~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23496~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23497~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23498~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,CKD~^^^^~No component data available~^^^^^^ -~23499~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23509~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%, separable fat, 0%~^4^^6.25^4.27^9.02^3.87 -~23511~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN ONLY,TO 0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%, separable fat, 2%~^17^^6.25^4.27^9.02^3.87 -~23513~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, raw~^~BEEF,CHUCK,CLOD RST,LN,1/4" FAT,ALL GRDS,RAW~^^^^~Bone and heavy connective tissue, 4%, separable fat, 5%~^9^^6.25^4.27^9.02^3.87 -~23514~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%, separable fat, 6%~^10^^6.25^4.27^9.02^3.87 -~23515~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 11%~^19^^6.25^4.27^9.02^3.87 -~23516~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~23517~^~1300~^~Beef, chuck, clod steak, separable lean only, trimmed to 1/4" fat, all grades, cooked, braised~^~BEEF,CHUCK,CLOD STEAK,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 13%~^21^^6.25^4.27^9.02^3.87 -~23519~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,CHCK,MCK TENDER STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23521~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%~^3^^6.25^4.27^9.02^3.87 -~23523~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%~^13^^6.25^4.27^9.02^3.87 -~23525~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%~^16^^6.25^4.27^9.02^3.87 -~23528~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23531~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23533~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23536~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23540~^~1300~^~Beef, plate, inside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,SKIRT STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23541~^~1300~^~Beef, plate, outside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23545~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SIRLOIN,TRI-TIP STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~23547~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23549~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%~^15^^6.25^4.27^9.02^3.87 -~23552~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23554~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23557~^~1300~^~Beef, ground, 95% lean meat / 5% fat, raw~^~BEEF,GROUND,95% LN MEAT / 5% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23558~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23559~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23560~^~1300~^~Beef, ground, 95% lean meat / 5% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,95% LN MEAT / 5% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23561~^~1300~^~Beef, ground, 95% lean meat / 5% fat, loaf, cooked, baked~^~BEEF,GROUND,95% LN MEAT / 5% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23562~^~1300~^~Beef, ground, 90% lean meat / 10% fat, raw~^~BEEF,GROUND,90% LN MEAT / 10% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23563~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23564~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23565~^~1300~^~Beef, ground, 90% lean meat / 10% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,90% LN MEAT / 10% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23566~^~1300~^~Beef, ground, 90% lean meat / 10% fat, loaf, cooked, baked~^~BEEF,GROUND,90% LN MEAT / 10% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23567~^~1300~^~Beef, ground, 85% lean meat / 15% fat, raw (Includes foods for USDA's Food Distribution Program)~^~BEEF,GROUND,85% LN MEAT / 15% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23568~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,BRLD~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23569~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23570~^~1300~^~Beef, ground, 85% lean meat / 15% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,85% LN MEAT / 15% FAT,CRUMBLES,CKD,PAN-BROWNED~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23571~^~1300~^~Beef, ground, 85% lean meat / 15% fat, loaf, cooked, baked~^~BEEF,GROUND,85% LN MEAT / 15% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23572~^~1300~^~Beef, ground, 80% lean meat / 20% fat, raw~^~BEEF,GROUND,80% LN MEAT / 20% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23573~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,BRLD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23574~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,PAN-BROILED~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23575~^~1300~^~Beef, ground, 80% lean meat / 20% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,80% LN MEAT / 20% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23576~^~1300~^~Beef, ground, 80% lean meat / 20% fat, loaf, cooked, baked~^~BEEF,GROUND,80% LN MEAT / 20% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23577~^~1300~^~Beef, ground, 75% lean meat / 25% fat, raw~^~BEEF,GROUND,75% LN MEAT / 25% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23578~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23579~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23580~^~1300~^~Beef, ground, 75% lean meat / 25% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,75% LN MEAT / 25% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23581~^~1300~^~Beef, ground, 75% lean meat / 25% fat, loaf, cooked, baked~^~BEEF,GROUND,75% LN MEAT / 25% FAT,LOAF,CKD,BKD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23582~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,RAW~^^^^~Bone and connective tissue 5%, sep fat 19%~^24^^6.25^4.27^9.02^3.87 -~23583~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 2%, sep fat 19%~^21^^6.25^4.27^9.02^3.87 -~23584~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 3.26%,separable fat, 11.04%~^14^^6.25^4.27^9.02^3.87 -~23585~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 9%, sep fat 15%~^24^^6.25^4.27^9.02^3.87 -~23586~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,CKD,BRLD~^^^^~Bone and connective tissue 7%, sep fat 17%~^24^^6.25^4.27^9.02^3.87 -~23587~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388~^^^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23588~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 4.85%, separable fat, 11.31%~^16^^6.25^4.27^9.02^3.87 -~23589~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 13%~^25^^6.25^4.27^9.02^3.87 -~23590~^~1300~^~Beef, round, bottom round , roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^~Y~^~Bone and connective tissue 3.32%, separable fat 9.02%~^12^^6.25^4.27^9.02^3.87 -~23591~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23592~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23593~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue 4.61%, separable fat 7.21%~^12^^6.25^4.27^9.02^3.87 -~23594~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2.49%, separable fat 10.55%~^13^^6.25^^^ -~23595~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 1%, sep fat 19%~^20^^6.25^4.27^9.02^3.87 -~23596~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23597~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23598~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 1.21%, separable fat, 7.42%~^9^^6.25^4.27^9.02^3.87 -~23599~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 5%, sep fat 20%~^25^^6.25^4.27^9.02^3.87 -~23600~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue, 4.20%, separable fat, 13.37%~^18^^6.25^4.27^9.02^3.87 -~23601~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%, sep fat 18%~^20^^6.25^4.27^9.02^3.87 -~23602~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 27.87%, separable fat, 13.50%~^41^^6.25^4.27^9.02^3.87 -~23603~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23604~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,CKD~^^^^~Bone and connective tissue 2.33%, separable fat 8.89%~^11^^6.25^^^ -~23605~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 4.78%, separable fat, 6.51%~^11^^6.25^4.27^9.02^3.87 -~23606~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Bone and connective tissue, 11.91%, separable fat, 13.48%~^25^^6.25^4.27^9.02^3.87 -~23607~^~1300~^~Beef, short loin, top loin steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Bone and connective tissue 10%, separable fat 14%~^24^^6.25^4.00^9.00^4.00 -~23608~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 0.94%, separable fat, 5.51%~^6^^6.25^4.27^9.02^3.87 -~23609~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Separable fat 6%~^6^^6.25^4.27^9.02^3.87 -~23610~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 4.34%, separable fat, 12.57%~^17^^6.25^4.27^9.02^3.87 -~23611~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^~Y~^~Bone and connective tissue 3%, sep fat 13%~^16^^6.25^4.27^9.02^3.87 -~23612~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1864~^^~Y~^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23613~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23614~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue, 29.58%, separable fat, 12.85%~^42^^6.25^4.27^9.02^3.87 -~23615~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^20^^6.25^4.27^9.02^3.87 -~23616~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^~Y~^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23617~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2368~^^~Y~^~Separable fat~^6^^6.25^4.27^9.02^3.87 -~23618~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue 2.44%, separable fat 10.58%~^13^^6.25^4.27^9.02^3.87 -~23619~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue 1.37%, separable fat 8.55%~^10^^6.25^4.27^9.02^3.87 -~23620~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23621~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368~^^^~Bone and connective tissue 1%, sep fat 6%~^7^^6.25^4.27^9.02^3.87 -~23622~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^~Y~^~Bone and connective tissue 5.23%, separable fat 5.81%~^11^^6.25^4.27^9.02^3.87 -~23623~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,CHOIC,RAW~^^^^~Bone and connective tissue 5%, sep fat 21%~^26^^6.25^4.27^9.02^3.87 -~23624~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 3%, sep fat 16%~^19^^6.25^4.27^9.02^3.87 -~23625~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2237~^^~Y~^~Bone and connective tissue, 3.05%, separable fat, 14.02%~^17^^6.25^4.27^9.02^3.87 -~23626~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8"fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8"FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone and connective tissue 7%, separable fat 20%~^27^^6.25^4.27^9.02^3.87 -~23627~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 10%, separable fat 13%~^23^^6.25^4.27^9.02^3.87 -~23628~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 5%, sep fat 13%~^18^^6.25^4.27^9.02^3.87 -~23629~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237~^^~Y~^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23630~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 14%~^26^^6.25^4.27^9.02^3.87 -~23631~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1049~^^~Y~^~Bone and connective tissue 20%, sep fat 17%~^37^^6.25^4.27^9.02^3.87 -~23632~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^~Separable fat~^28^^6.25^4.27^9.02^3.87 -~23633~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue, 26.23%, separable fat, 14.12%~^40^^6.25^4.27^9.02^3.87 -~23634~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^19^^6.25^4.27^9.02^3.87 -~23635~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue 3%, sep fat 7%~^10^^6.25^4.27^9.02^3.87 -~23636~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1553~^^^~Separable fat~^7^^6.25^4.27^9.02^3.87 -~23637~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue 1.97%, separable fat 10.51%~^12^^6.25^4.27^9.02^3.87 -~23638~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 7.11%, separable fat, 18.25%~^25^^6.25^4.27^9.02^3.87 -~23640~^~1300~^~Beef, variety meats and by-products, tripe, cooked, simmered~^~BEEF,VAR MEATS & BY-PRODUCTS,TRIPE,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~23646~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23647~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^^^ -~23648~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^4.27^9.02^3.87 -~23649~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23650~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23651~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 4%, sep fat 4%~^8^^6.25^4.27^9.02^3.87 -~23652~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^4.27^9.02^3.87 -~23653~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,RAW~^~URMIS # 1525~^^^~Bone and connective tissue 3%, sep fat 4%~^7^^6.25^4.27^9.02^3.87 -~23654~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23655~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23656~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,RAW~^^^^~Separable fat~^3^^6.25^4.27^9.02^3.87 -~23657~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~23658~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~23659~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~23660~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~25000~^~2500~^~Snacks, popcorn, microwave, 94% fat free~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25001~^~2500~^~Snacks, popcorn, microwave, low fat~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25003~^~2500~^~Snacks, candy rolls, yogurt-covered, fruit flavored with high vitamin C~^~SNACKS,CANDY ROLLS,YOGURT-COVERED,FRUIT FLAV W/ HI VIT C~^^^~Y~^^0^^6.50^^^ -~25004~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Chewy Chocolate Peanut Bar~^~FORMULATE BAR,MAR SNACKFOO US,SNICKE MARATH CHE CHOC PNUT BA~^^^^^0^^^^^ -~25005~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON MULTIGRAIN CRUNCH BAR~^~FORM BAR,MARS SNKF US,SNICKERS MARATHON MULTIGRNCRUNCH~^^^^^0^^^^^ -~25006~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Double Chocolate Nut Bar~^~FORMULAT BAR,MARSNACKFOO US,SNICKE MARATHO DOUBL CHOC NUT BA~^^^^^0^^^^^ -~25007~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bars, peanut butter~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,PNUT BUTTER~^^^^^0^^^^^ -~25008~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Honey Nut Oat Bar~^~FORMULAT BAR,MAR SNACFOO US,SNICKER MARATHO HONE NUT OAT BAR~^^^^^0^^^^^ -~25009~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, M&M's milk chocolate~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BAR,M&M'S MILK CHOC~^^^^^0^^^^^ -~25010~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Almond Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC ALMOND~^^^^^0^^^^^ -~25012~^~2500~^~Snacks, sweet potato chips, unsalted~^~SNACKS,SWT POTATO CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25013~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, original flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN SNACK,ORIGINAL FLAVOR~^^^~Y~^^0^^6.50^^^ -~25014~^~2500~^~Snacks, popcorn, microwave, regular (butter) flavor, made with partially hydrogenated oil~^~SNACKS,POPCORN,MICROWAVE,REG (BUTTER) FLAVOR, W/PARHYD OIL~^^^~Y~^^0^^6.25^^^ -~25015~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Protein Performance Bar, Caramel Nut Rush~^~FORMBAR,MARSSNACK,SNICKERS MARATHONPROTPERFBAR,CARMELNUTRUSH~^^^~Y~^^0^^6.25^^^ -~25016~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Energy Bar, all flavors~^~FORMUL BAR,MA SNACKFO US,SNICKE MARATH ENER BAR,ALL FLAVO~^^^~Y~^^0^^^^^ -~25017~^~2500~^~Formulated bar, POWER BAR, chocolate~^~FORMULATED BAR,POWER BAR,CHOC~^^^~Y~^^0^^6.10^^^ -~25018~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Blueberry Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC BLUEBERRY~^^^^^0^^^^^ -~25020~^~2500~^~Formulated bar, SLIM-FAST OPTIMA meal bar, milk chocolate peanut~^~FORMULATED BAR,SLIM-FAST OPTIMA MEAL BAR,MILK CHOC PNUT~^^~Slim-Fast Foods Company~^~Y~^^0^^6.25^^^ -~25021~^~2500~^~Formulated bar, LUNA BAR, NUTZ OVER CHOCOLATE~^~FORMULATED BAR,LUNA BAR,NUTZ OVER CHOC~^^~LUNA BAR~^~Y~^^0^^6.25^^^ -~25022~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, multigrain, French onion flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,FRENCH ONION FLAVOR~^^^^^0^^^^^ -~25023~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, Harvest Cheddar flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,HARVEST CHEDDAR~^^^^^0^^^^^ -~25024~^~2500~^~Pretzels, soft, unsalted~^~PRETZELS,SOFT,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25025~^~2500~^~Snacks, soy chips or crisps, salted~^~SNACKS,SOY CHIPS OR CRISPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25026~^~2500~^~Popcorn, microwave, regular (butter) flavor, made with palm oil~^~Popcor, microwav, regula (butter) flavo, mad with pal oil~^^^~Y~^^0^^6.25^^^ -~25027~^~2500~^~Snacks, plantain chips, salted~^~SNACKS,PLANTAIN CHIPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25028~^~2500~^~Tortilla chips, yellow, plain, salted~^~Tortilla chips, yellow, plain, salted~^^^~Y~^^0^^6.25^^^ -~25030~^~2500~^~Snacks, vegetable chips, HAIN CELESTIAL GROUP, TERRA CHIPS~^~SNACKS,VEG CHIPS,HAIN CELESTIAL GROUP,TERRA CHIPS~^^^~Y~^^0^^6.25^^^ -~25031~^~2500~^~Formulated bar, ZONE PERFECT CLASSIC CRUNCH BAR, mixed flavors~^~FORM BAR,ZONE PERFECT CLASSIC CRUNCH BAR,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25032~^~2500~^~Snacks, granola bar, KASHI GOLEAN, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25033~^~2500~^~Snacks, granola bar, KASHI TLC Bar, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25034~^~2500~^~Snacks, granola bar, KASHI GOLEAN, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25035~^~2500~^~Snacks, granola bar, chewy, reduced sugar, all flavors~^~SNACKS,GRANOLA BAR,CHEWY,RED SUGAR,ALL FLAVORS~^^^~Y~^^0^^^^^ -~25036~^~2500~^~Snacks, granola bites, mixed flavors~^~SNACKS,GRANOLA BITES,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25037~^~2500~^~Snacks, pita chips, salted~^~SNACKS,PITA CHIPS,SALTED~^^^~Y~^^0^^^^^ -~25038~^~2500~^~Snacks, granola bars, soft, almond, confectioners coating~^~SNACKS,GRANOLA BARS,SOFT,ALMOND,CONFECTIONERS COATING~^^^~Y~^^0^^^^^ -~25039~^~2500~^~Snacks, granola bars, QUAKER OATMEAL TO GO, all flavors~^~SNACKS,GRANOLA BARS,QUAKER OATMEAL TO GO,ALL FLAVORS~^^^~Y~^^0^^6.25^^^ -~25040~^~2500~^~Snacks, vegetable chips, made from garden vegetables~^~SNACKS,VEG CHIPS,MADE FROM GARDEN VEG~^^^~Y~^^0^^6.26^^^ -~25041~^~2500~^~Snacks, granola bar, KASHI TLC Bar, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25043~^~2500~^~Snacks, candy bits, yogurt covered with vitamin C~^~SNACKS,CANDY BITS,YOGURT COVERED W/ VIT C~^^^~Y~^^0^^^^^ -~25045~^~2500~^~Formulated bar, high fiber, chewy, oats and chocolate~^~Formulated bar, high fiber, chewy, oats and chocolate~^^^~Y~^^0^^^^^ -~25046~^~2500~^~Snacks, bagel chips, plain~^~SNACKS,BAGEL CHIPS,PLN~^^^~Y~^^0^^6.25^^^ -~25048~^~2500~^~Snacks, NUTRI-GRAIN FRUIT AND NUT BAR~^~SNACKS,NUTRI-GRAIN FRUIT & NUT BAR~^^^~Y~^^0^^^^^ -~25050~^~2500~^~Snacks, yucca (cassava) chips, salted~^~SNACKS,YUCCA (CASSAVA) CHIPS,SALTED~^^^^^0^^^^^ -~25051~^~2500~^~Snacks, CLIF BAR, mixed flavors~^~Snacks, CLIF BAR, mixed flavors~^^^~Y~^^0^^^^^ -~25052~^~2500~^~Snacks, granola bar, QUAKER, chewy, 90 Calorie Bar~^~SNACKS,GRANOLA BAR,QUAKER,CHEWY,90 CAL BAR~^^^~Y~^^0^^6.25^^^ -~25053~^~2500~^~Snacks, granola bar, GENERAL MILLS NATURE VALLEY, SWEET&SALTY NUT, peanut~^~Snac, grano bar, GENER MILLS NATURE VALL, SWE&SAL NUT, peanu~^^^~Y~^^0^^6.25^^^ -~25054~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, with yogurt coating~^~Snack,gran bar,GENERAL MILLS, NATURE VALLEY, w yogu coati~^^^~Y~^^0^^^^^ -~25055~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, CHEWY TRAIL MIX~^~Snac, grano bar, GENER MILLS, NATUR VALLE, CHEWY TRAIL MIX~^^^~Y~^^0^^6.25^^^ -~25056~^~2500~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^^^~Y~^^0^^^^^ -~25059~^~2500~^~Snacks, brown rice chips~^~Snacks, brown rice chips~^^^~Y~^^0^^6.25^^^ -~25060~^~2500~^~Snack, Pretzel, hard chocolate coated~^~SNACK,PRETZEL,HARD CHOC COATD~^^^~Y~^^0^^6.25^^^ -~25062~^~2500~^~Snack, Mixed Berry Bar~^~Snack, Mixed Berry Bar~^^^~Y~^^0^^^^^ -~25063~^~2500~^~Snacks, potato chips, made from dried potatoes (preformed), multigrain~^~Snacks, potato chips, fr dried potatoes, multigrain~^^^~Y~^^0^^^^^ -~25064~^~2500~^~Snacks, potato chips, lightly salted~^~SNACKS,POTATO CHIPS,LIGHTLY SALTED~^^^~Y~^^0^^^^^ -~25065~^~2500~^~Snacks, Pretzels, gluten- free made with cornstarch and potato flour~^~SNACKS,PRETZELS,GLUTEN- FREE MADE W/ CORNSTARCH & POTATO FLR~^^^~Y~^^0^^^^^ -~25066~^~2500~^~Snacks, peas, roasted, wasabi-flavored~^~SNACKS,PEAS,RSTD,WASABI-FLAVORED~^^^~Y~^^0^^^^^ -~25067~^~2500~^~Formulated Bar, SOUTH BEACH protein bar~^~FORMULATED BAR,SOUTH BEACH PROT BAR~^^^~Y~^^0^^^^^ -~25068~^~2500~^~Snack, BALANCE, original bar~^~SNACK,BALANCE,ORIGINAL BAR~^^^~Y~^^0^^^^^ -~25070~^~2500~^~Snacks, shrimp cracker~^~SNACKS,SHRIMP CRACKER~^^^~Y~^^0^^^^^ -~25071~^~2500~^~Rice crackers~^~RICE CRACKERS~^^^~Y~^^0^^6.25^^^ -~27000~^~0600~^~Soup, egg drop, Chinese restaurant~^~SOUP,EGG DROP,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27001~^~0600~^~Soup, hot and sour, Chinese restaurant~^~SOUP,HOT & SOUR,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27002~^~0600~^~Soup, wonton, Chinese restaurant~^~SOUP,WONTON,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27035~^~0600~^~Soup, ramen noodle, dry, any flavor, reduced fat, reduced sodium~^~SOUP,RAMEN NOODLE,DRY,ANY FLAVOR,RED FAT,RED NA~^^^~Y~^^0^^6.25^^^ -~27042~^~0600~^~Soup, clam chowder, new england, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,RTS~^^^^^0^^^^^ -~27043~^~0600~^~Soup, clam chowder, new england, reduced sodium, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,RED NA,CND,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~27044~^~0600~^~Soup, chicken noodle, reduced sodium, canned, ready-to-serve~^~SOUP,CHICK NOODLE,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27045~^~0600~^~Soup, beef and vegetables, reduced sodium, canned, ready-to-serve~^~SOUP,BF & VEG,RED NA,CND,RTS~^^^^^0^^^^^ -~27046~^~0600~^~Sauce, duck, ready-to-serve~^~SAUCE,DUCK,RTS~^^^~Y~^^0^^^^^ -~27047~^~0600~^~Sauce, salsa, verde, ready-to-serve~^~SAUCE,SALSA,VERDE,RTS~^^^~Y~^^0^^^^^ -~27048~^~0600~^~Sauce, steak, tomato based~^~SAUCE,STEAK,TOMATO BSD~^^^~Y~^^0^^^^^ -~27049~^~0600~^~Sauce, tartar, ready-to-serve~^~SAUCE,TARTAR,RTS~^^^~Y~^^0^^^^^ -~27050~^~0600~^~Sauce, sweet and sour, ready-to-serve~^~SAUCE,SWT & SOUR,RTS~^^^~Y~^^0^^^^^ -~27051~^~0600~^~Sauce, cocktail, ready-to-serve~^~SAUCE,COCKTAIL,RTS~^^^~Y~^^0^^^^^ -~27052~^~0600~^~Dip, salsa con queso, cheese and salsa- medium~^~DIP,SALSA CON QUESO,CHS & SALSA- MED~^^^~Y~^^0^^^^^ -~27054~^~0600~^~Dip, TOSTITOS, salsa con queso, medium~^~DIP,TOSTITOS,SALSA CON QUESO,MED~^^~Pepsi-Cola North America~^^^0^^^^^ -~27055~^~0600~^~Sauce, barbecue, SWEET BABY RAY'S, original~^~SAUCE,BARBECUE,SWT BABY RAY'S,ORIGINAL~^^~Sweet baby Ray's, Inc.~^^^0^^^^^ -~27056~^~0600~^~Sauce, barbecue, BULL'S-EYE, original~^~SAUCE,BARBECUE,BULL'S-EYE,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~27057~^~0600~^~Sauce, barbecue, KC MASTERPIECE, original~^~SAUCE,BARBECUE,KC MASTERPIECE,ORIGINAL~^^^^^0^^^^^ -~27058~^~0600~^~Sauce, barbecue, OPEN PIT, original~^~SAUCE,BARBECUE,OPEN PIT,ORIGINAL~^^~Open Pit- Pinnacle Foods~^^^0^^^^^ -~27059~^~0600~^~Sauce, peanut, made from peanut butter, water, soy sauce~^~SAUCE,PNUT,MADE FROM PNUT BUTTER,H2O,SOY SAU~^^^~Y~^^0^^^4.00^9.00^4.00 -~27060~^~0600~^~Soup, chunky vegetable, reduced sodium, canned, ready-to-serve~^~SOUP,CHUNKY VEG,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27061~^~0600~^~Gravy, HEINZ Home Style, classic chicken~^~GRAVY,HEINZ HOME STYLE,CLASSIC CHICK~^^~H.J. Heinz, Co.~^^^0^^^^^ -~27062~^~0600~^~Soup, beef barley, ready to serve~^~SOUP,BF BARLEY,READY TO SERVE~^^^~Y~^^0^^^^^ -~27063~^~0600~^~Sauce, enchilada, red, mild, ready to serve~^~SAUCE,ENCHILADA,RED,MILD,READY TO SERVE~^^^~Y~^^0^^^4.00^9.00^4.00 -~27064~^~0600~^~Wasabi~^~WASABI~^^^~Y~^^0^^6.25^^^ -~27065~^~0600~^~Dip, bean, original flavor~^~DIP,BEAN,ORIGINAL FLAVOR~^^^~Y~^^0^^^^^ -~27066~^~0600~^~Sauce, horseradish~^~SAUCE,HORSERADISH~^^^~Y~^^0^^^^^ -~27068~^~0600~^~Dip, FRITO'S, bean, original flavor~^~DIP,FRITO'S,BEAN,ORIGINAL FLAVOR~^^~Pepsi-Cola North America~^^^0^^^^^ -~28285~^~1800~^~Bread, chapati or roti, whole wheat, commercially prepared, frozen~^~BREAD,CHAPATI OR ROTI,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28286~^~1800~^~Bread, paratha, whole wheat, commercially prepared, frozen~^~BREAD,PARATHA,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28287~^~1800~^~Bread, naan, whole wheat, commercially prepared, refrigerated~^~BREAD,NAAN,WHL WHEAT,COMMLY PREP,REFR~^^^~Y~^^0^^6.25^^^ -~28288~^~1800~^~Bread, roll, Mexican, bollilo~^~BREAD,ROLL,MEXICAN,BOLLILO~^^^~Y~^^0^^6.25^^^ -~28289~^~1800~^~Cookie, vanilla with caramel, coconut, and chocolate coating~^~COOKIE,VANILLA W/ CARAMEL,COCNT,& CHOC COATING~^^^~Y~^^0^^6.25^^^ -~28290~^~1800~^~Cookie, with peanut butter filling, chocolate-coated~^~COOKIE,W/ PNUT BUTTER FILLING,CHOCOLATE-COATED~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28291~^~1800~^~Cookies, animal, with frosting or icing~^~COOKIES,ANIMAL,W/ FRSTNG OR ICING~^^^~Y~^^0^^6.25^^^ -~28292~^~1800~^~Crackers, multigrain~^~CRACKERS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28293~^~1800~^~Cookie, butter or sugar, with chocolate icing or filling~^~COOKIE,BUTTER OR SUGAR,W/ CHOC ICING OR FILLING~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28294~^~1800~^~Cookie, chocolate, with icing or coating~^~COOKIE,CHOC,W/ ICING OR COATING~^^^~Y~^^0^^6.25^^^ -~28295~^~1800~^~Tortillas, ready-to-bake or -fry, whole wheat~^~TORTILLAS,RTB OR -FRY,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28296~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting, low-fat, with added fiber~^~CAKE,SNK CAKES,CREME-FILLED,CHOC W/ FRSTNG,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28297~^~1800~^~Cake, snack cakes, not chocolate, with icing or filling, low-fat, with added fiber~^~CAKE,SNK CAKES,NOT CHOC,W/ ICING OR FILLING,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28298~^~1800~^~Cookies, brownies, commercially prepared, reduced fat, with added fiber~^~COOKIES,BROWNIES,COMMLY PREP,RED FAT,W/ ADDED FIBER~^^^~Y~^^0^^6.25^^^ -~28299~^~1800~^~Cookies, chocolate sandwich, with creme filling, reduced fat~^~COOKIES,CHOC SNDWCH,W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28300~^~1800~^~Cookies, oatmeal sandwich, with creme filling~^~COOKIES,OATMEAL SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28301~^~1800~^~Cookies, peanut butter, commercially prepared, sugar free~^~COOKIES,PNUT BUTTER,COMMLY PREP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~28302~^~1800~^~Cookies, graham crackers, plain or honey, lowfat~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY,LOWFAT~^^^~Y~^^0^^6.25^^^ -~28303~^~1800~^~Crackers, cheese, whole grain~^~CRACKERS,CHS,WHL GRAIN~^^^~Y~^^0^^6.25^^^ -~28304~^~1800~^~Waffles, whole wheat, lowfat, frozen, ready-to-heat~^~WAFFLES,WHL WHEAT,LOWFAT,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28305~^~1800~^~Pancakes, plain, reduced fat~^~PANCAKES,PLN,RED FAT~^^^~Y~^^0^^6.25^^^ -~28306~^~1800~^~Bread, chapati or roti, plain, commercially prepared~^~BREAD,CHAPATI OR ROTI,PLN,COMMLY PREP~^^^^^0^^6.25^^^ -~28307~^~1800~^~Bread, naan, plain, commercially prepared, refrigerated~^~BREAD,NAAN,PLN,COMMLY PREP,REFR~^^^^^0^^6.25^^^ -~28308~^~1800~^~Crackers, standard snack-type, with whole wheat~^~CRACKERS,STD SNACK-TYPE,W/ WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28309~^~1800~^~Cookies, coconut macaroon~^~COOKIES,COCNT MACAROON~^^^~Y~^^0^^6.25^^^ -~28310~^~1800~^~Cookies, shortbread, reduced fat~^~COOKIES,SHORTBREAD,RED FAT~^^^~Y~^^0^^6.25^^^ -~28311~^~1800~^~Cookies, sugar wafer, chocolate-covered~^~COOKIES,SUGAR WAFER,CHOCOLATE-COVERED~^^^~Y~^^0^^6.25^^^ -~28312~^~1800~^~Rolls, hamburger or hot dog, wheat/cracked wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHEAT/CRACKED WHEAT~^^^~Y~^^0^^6.25^^^ -~28313~^~1800~^~Rolls, hamburger or hot dog, whole wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHL WHEAT~^^^~Y~^^0^^^^^ -~28314~^~1800~^~Crackers, sandwich-type, peanut butter filled, reduced fat~^~CRACKERS,SANDWICH-TYPE,PNUT BUTTER FILLED,RED FAT~^^^~Y~^^0^^6.25^^^ -~28315~^~1800~^~Bread, cinnamon~^~BREAD,CINN~^^^~Y~^^0^^6.25^^^ -~28316~^~1800~^~Bread, wheat, sprouted~^~BREAD,WHEAT,SPROUTED~^^^~Y~^^0^^6.25^^^ -~28317~^~1800~^~Bread, wheat, sprouted, toasted~^~BREAD,WHEAT,SPROUTED,TSTD~^^^~Y~^^0^^6.25^^^ -~28318~^~1800~^~Bread, french or vienna, whole wheat~^~BREAD,FRENCH OR VIENNA,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28319~^~1800~^~Bagels, whole grain white~^~BAGELS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28320~^~1800~^~English muffins, whole grain white~^~ENGLISH MUFFINS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28321~^~1800~^~Rolls, hamburger, whole grain white, calcium-fortified~^~ROLLS,HAMBURGER,WHL GRAIN WHITE,CALCIUM-FORTIFIED~^^^~Y~^^0^^6.25^^^ -~28322~^~1800~^~Bagels, multigrain~^~BAGELS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28324~^~1800~^~Pancakes, whole wheat, dry mix, incomplete~^~PANCAKES,WHL WHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.25^^^ -~28325~^~1800~^~Crackers, toast thins, low sodium~^~CRACKERS,TOAST THINS,LO NA~^^^~Y~^^0^^6.25^^^ -~28326~^~1800~^~Crackers, whole grain, sandwich-type, with peanut butter filling~^~CRACKERS,WHL GRAIN,SANDWICH-TYPE,W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~28327~^~1800~^~Crackers, water biscuits~^~CRACKERS,H2O BISCUITS~^^^~Y~^^0^^6.25^^^ -~28328~^~1800~^~Cookies, chocolate chip sandwich, with creme filling~^~COOKIES,CHOC CHIP SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28329~^~1800~^~Cookies, chocolate, made with rice cereal~^~COOKIES,CHOC,MADE W/ RICE CRL~^^^~Y~^^0^^6.25^^^ -~28330~^~1800~^~Cookies, marshmallow, with rice cereal and chocolate chips~^~COOKIES,MARSHMLLW,W/ RICE CRL & CHOC CHIPS~^^^~Y~^^0^^6.25^^^ -~28331~^~1800~^~Crackers, flavored, fish-shaped~^~CRACKERS,FLAV,FISH-SHAPED~^^^^^0^^6.25^^^ -~28332~^~1800~^~Cookies, gluten-free, chocolate sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,CHOC SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^^^^ -~28333~^~1800~^~Cookies, gluten-free, chocolate wafer~^~COOKIES,GLUTEN-FREE,CHOC WAFER~^^^^^0^^6.25^^^ -~28334~^~1800~^~Cookies, gluten-free, lemon wafer~^~COOKIES,GLUTEN-FREE,LEMON WAFER~^^^^^0^^6.25^^^ -~28335~^~1800~^~Cookies, gluten-free, vanilla sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,VANILLA SNDWCH,W/ CREME FILLING~^^^^^0^^6.25^^^ -~28336~^~1800~^~Bread, gluten-free, white, made with potato extract, rice starch, and rice flour~^~BREAD,GLUTEN-FREE,POTATO EXTRACT,RICE STARCH,& RICE FLOUR~^^^^^0^^6.25^^^ -~28337~^~1800~^~Bread, gluten-free, white, made with rice flour, corn starch, and/or tapioca~^~BREAD,GLUTEN-FREE,RICE FLOUR,CORN STARCH,AND/OR TAPIOCA~^^^~Y~^^0^^^^^ -~28338~^~1800~^~Bread, gluten-free, white, made with tapioca starch and brown rice flour~^~BRD,GLUTEN-FREE,WHITE,MADE W/TAPIOCA STARCH & BRWN RICE FLR~^^^^^0^^6.25^^^ -~28339~^~1800~^~Bread, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~BREAD,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28340~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and potato starch~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&POTATO STARCH~^^^^^0^^6.25^^^ -~28341~^~1800~^~Rolls, gluten-free, white, made with rice flour, rice starch, and corn starch~^~ROLLS,GLUTEN-FREE,RICE FLR,RICE STARCH,& CORN STARCH~^^^~Y~^^0^^^^^ -~28342~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and sorghum flour~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&SORGHUM FLR~^^^^^0^^6.25^^^ -~28343~^~1800~^~Rolls, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~ROLLS,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28344~^~1800~^~Crackers, gluten-free, multigrain and vegetable, made with corn starch and white rice flour~^~CRACKERS,GLUTEN-FREE,MULTIGRAIN & VEG,MADE W/ CORN STARCH &~^^^^^0^^6.25^^^ -~28345~^~1800~^~Crackers, gluten-free, multi-seeded and multigrain~^~CRACKERS,GLUTEN-FREE,MULTI-SEEDED & MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28346~^~1800~^~Waffles, gluten-free, frozen, ready-to-heat~^~WAFFLES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28347~^~1800~^~Pancakes, gluten-free, frozen, ready-to-heat~^~PANCAKES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28348~^~1800~^~Rolls, dinner, sweet~^~ROLLS,DINNER,SWT~^^^~Y~^^0^^6.25^^^ -~28349~^~1800~^~Cookies, oatmeal, reduced fat~^~COOKIES,OATMEAL,RED FAT~^^^~Y~^^0^^6.25^^^ -~28350~^~1800~^~Cookies, chocolate cream covered biscuit sticks~^~COOKIES,CHOC CRM COVERED BISCUIT STKS~^^^~Y~^^0^^6.25^^^ -~28351~^~1800~^~Cookies, Marie biscuit~^~COOKIES,MARIE BISCUIT~^^^~Y~^^0^^6.25^^^ -~28352~^~1800~^~Cookies, vanilla sandwich with creme filling, reduced fat~^~COOKIES,VANILLA SNDWCH W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28354~^~1800~^~Andrea's, Gluten Free Soft Dinner Roll~^~ANDREA'S,GLUTEN FREE SOFT DINNER ROLL~^^~Andrea's Gluten Free~^^^0^^6.25^^^ -~28355~^~1800~^~Crunchmaster, Multi-Grain Crisps, Snack Crackers, Gluten-Free~^~CRUNCHMASTER,MULTI-GRAIN CRISPS,SNACK CRACKERS,GLUTEN-FREE~^^~Crunchmaster~^^^0^^^^^ -~28356~^~1800~^~Glutino, Gluten Free Cookies, Chocolate Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,CHOC VANILLA CREME~^^~Glutino~^^^0^^^^^ -~28357~^~1800~^~Glutino, Gluten Free Cookies, Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,VANILLA CREME~^^~Glutino~^^^0^^6.25^^^ -~28358~^~1800~^~Glutino, Gluten Free Wafers, Lemon Flavored~^~GLUTINO,GLUTEN FREE WAFERS,LEMON FLAV~^^~Glutino~^^^0^^^^^ -~28359~^~1800~^~Glutino, Gluten Free Wafers, Milk Chocolate~^~GLUTINO,GLUTEN FREE WAFERS,MILK CHOC~^^~Glutino~^^^0^^6.25^^^ -~28360~^~1800~^~Mary's Gone Crackers, Original Crackers, Organic Gluten Free~^~MARY'S GONE CRACKERS,ORIGINAL CRACKERS,ORGANIC GLUTEN FREE~^^~Mary's Gone Crackers~^^^0^^6.25^^^ -~28361~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Cheddar~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,CHEDDAR~^^~Pepperidge Farm~^^^0^^^^^ -~28362~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Explosive Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,EXPLOSIVE PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28363~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Original~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,ORIGINAL~^^~Pepperidge Farm~^^^0^^^^^ -~28364~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Parmesan~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PARMESAN~^^~Pepperidge Farm~^^^0^^^^^ -~28365~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28366~^~1800~^~Rudi's, Gluten-Free Bakery, Original Sandwich Bread~^~RUDI'S,GLUTEN-FREE BAKERY,ORIGINAL SNDWCH BREAD~^^~Rudi's Bakery~^^^0^^6.25^^^ -~28367~^~1800~^~Sage Valley, Gluten Free Vanilla Sandwich Cookies~^~SAGE VALLEY,GLUTEN FREE VANILLA SNDWCH COOKIES~^^~Sage Valley~^^^0^^6.25^^^ -~28368~^~1800~^~Schar, Gluten-Free, Classic White Rolls~^~SCHAR,GLUTEN-FREE,CLASSIC WHITE ROLLS~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28369~^~1800~^~Schar, Gluten-Free, Wheat-Free, Classic White Bread~^~SCHAR,GLUTEN-FREE,WHEAT-FREE,CLASSIC WHITE BREAD~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28370~^~1800~^~Udi's, Gluten Free, Classic French Dinner Rolls~^~UDI'S,GLUTEN FREE,CLASSIC FRENCH DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28371~^~1800~^~Udi's, Gluten Free, Soft & Delicious White Sandwich Bread~^~UDI'S,GLUTEN FREE,SOFT & DELICIOUS WHITE SNDWCH BREAD~^^~Udi's Gluten Free~^^^0^^^^^ -~28372~^~1800~^~Udi's, Gluten Free, Soft & Hearty Whole Grain Bread~^~UDI'S,GLUTEN FREE,SOFT & HEARTY WHL GRAIN BREAD~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28373~^~1800~^~Udi's, Gluten Free, Whole Grain Dinner Rolls~^~UDI'S,GLUTEN FREE,WHL GRAIN DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28374~^~1800~^~Van's, Gluten Free, Totally Original Pancakes~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL PANCAKES~^^~Van's International Foods~^^^0^^6.25^^^ -~28375~^~1800~^~Van's, Gluten Free, Totally Original Waffles~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL WAFFLES~^^~Van's International Foods~^^^0^^^^^ -~28376~^~1800~^~Van's, The Perfect 10, Crispy Six Whole Grain + Four Seed Baked Crackers, Gluten Free~^~VAN'S,THE PRFCT 10,CRSP 6 WHL GRN 4 SD BKD CRCKRS,GLTN FREE~^^~Van's International Foods~^^^0^^6.25^^^ -~28397~^~1800~^~Bread, multi-grain (includes whole-grain)~^~BREAD,MULTI-GRAIN (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~28399~^~1800~^~Cookies, animal crackers (includes arrowroot, tea biscuits)~^~COOKIES,ANIMAL CRACKERS (INCL ARROWROOT,TEA BISCUITS,)~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~31019~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, dry~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,DRY~^^~Acadian Seaplants Limited~^^^0^~Chondrus crispus~^6.25^^^ -~31020~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, rehydrated~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,REHYDRATED~^^~Acadian Seaplants Limited~^^^0^^6.25^^^ -~31021~^~1100~^~Potatoes, hash brown, refrigerated, unprepared~^~POTATOES,HASH BROWN,REFR,UNPREP~^^^^^0^^^^^ -~31022~^~1100~^~Potatoes, hash brown, refrigerated, prepared, pan-fried in canola oil~^~POTATOES,HASH BROWN,REFR,PREP,PAN-FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^^^0^^^^^ -~31023~^~1100~^~Sweet Potatoes, french fried, frozen as packaged, salt added in processing~^~SWEET POTATOES,FRENCH FR,FRZ AS PACKAGED,SALT ADDED~^^^~Y~^^0^^6.25^4.03^8.37^2.78 -~31024~^~1100~^~Sweet Potatoes, french fried, crosscut, frozen, unprepared~^~SWEET POTATOES,FRENCH FR,CROSSCUT,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31025~^~1100~^~Sweet Potato puffs, frozen, unprepared~^~SWEET POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31026~^~1100~^~Potatoes, yellow fleshed, roasted, salt added in processing, frozen, unprepared~^~POTATOES,YEL FLESHED,RSTD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^^^^ -~31027~^~1100~^~Potatoes, yellow fleshed, french fried, frozen, unprepared~^~POTATOES,YEL FLESHED,FRENCH FR,FRZ,UNPREP~^^^^^0^^^^^ -~31028~^~1100~^~Potatoes, yellow fleshed, hash brown, shredded, salt added in processing, frozen, unprepared~^~POTATO\,YEL FLSH,HASH BRN,SHRD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31029~^~1100~^~Potatoes, french fried, wedge cut, frozen, unprepared~^~POTATOES,FRENCH FR,WEDGE CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31030~^~1100~^~Potatoes, french fried, steak cut, salt not added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,STK CUT,SALT NOT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31031~^~1100~^~Potatoes, french fried, cross cut, frozen, unprepared~^~POTATOES,FRENCH FR,CROSS CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31033~^~1100~^~Ginger root, pickled, canned, with artificial sweetener~^~GINGER ROOT,PICKLED,CND,W/ ART SWTNR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~31034~^~1100~^~Peppers, hot pickled, canned~^~PEPPERS,HOT PICKLED,CND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~31035~^~1100~^~Vegetable juice, BOLTHOUSE FARMS, DAILY GREENS~^~VEGETABLE JUC,BOLTHOUSE FARMS,DAILY GRNS~^^~Bolthouse Farms~^~Y~^^0^^6.25^2.44^8.37^3.57 -~31036~^~1100~^~Potatoes, mashed, ready-to-eat~^~POTATOES,MSHD,RTE~^^^~Y~^^0^^^^^ -~32000~^~2200~^~Rice and vermicelli mix, beef flavor, unprepared~^~RICE & VERMICELLI MIX,BF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32001~^~2200~^~Rice and vermicelli mix, beef flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,BF FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^3.87^8.37^4.14 -~32002~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, unprepared~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32003~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,PREP W/ 80% MARGARIN~^^^^^0^^^^^ -~32004~^~2200~^~Macaroni and cheese, box mix with cheese sauce, unprepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,UNPREP~^^^~Y~^^0^^^^^ -~32005~^~2200~^~Macaroni and cheese, box mix with cheese sauce, prepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,PREP~^^^^^0^^^^^ -~32006~^~2200~^~Taquitos, frozen, chicken and cheese, oven-heated~^~TAQUITOS,FRZ,CHICK & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32007~^~2200~^~Taquitos, frozen, beef and cheese, oven-heated~^~TAQUITOS,FRZ,BF & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32008~^~2200~^~Pasta mix, classic cheeseburger macaroni, unprepared~^~PASTA MIX,CLASSIC CHEESEBURGER MACARONI,UNPREP~^^^~Y~^^0^^^^^ -~32009~^~2200~^~Pasta mix, classic beef, unprepared~^~PASTA MIX,CLASSIC BF,UNPREP~^^^~Y~^^0^^6.25^^^ -~32010~^~2200~^~Pasta mix, Italian lasagna, unprepared~^~PASTA MIX,ITALIAN LASAGNA,UNPREP~^^^~Y~^^0^^6.25^^^ -~32011~^~2200~^~Yellow rice with seasoning, dry packet mix, unprepared~^~YELLOW RICE W/ SEASONING,DRY PACKET MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32012~^~2200~^~Pizza rolls, frozen, unprepared~^~PIZZA ROLLS,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32013~^~2200~^~Potsticker or wonton, pork and vegetable, frozen, unprepared~^~POTSTICKER OR WONTON,PORK & VEG,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32014~^~2200~^~Macaroni or noodles with cheese, made from reduced fat packaged mix, unprepared~^~MACARONI OR NOODLES W/ CHS,MADE FROM RED FAT PACKAGED MIX,UN~^^^~Y~^^0^^6.25^^^ -~32015~^~2200~^~Turnover, cheese-filled, tomato-based sauce, frozen, unprepared~^~TURNOVER,CHEESE-FILLED,TOMATO-BASED SAU,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32016~^~2200~^~Macaroni or noodles with cheese, microwaveable, unprepared~^~MACARONI OR NOODLES W/ CHS,MICROWAVEABLE,UNPREP~^^^~Y~^^0^^6.25^^^ -~32017~^~2200~^~Pasta mix, Italian four cheese lasagna, unprepared~^~PASTA MIX,ITALIAN FOUR CHS LASAGNA,UNPREP~^^^^^0^^6.25^^^ -~32018~^~2200~^~Spanish rice mix, dry mix, unprepared~^~SPANISH RICE MIX,DRY MIX,UNPREP~^^^^^0^^6.25^^^ -~32019~^~2200~^~Lasagna, cheese, frozen, unprepared~^~LASAGNA,CHS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~32020~^~2200~^~Chicken, thighs, frozen, breaded, reheated~^~CHICKEN,THIGHS,FRZ,BREADED,REHTD~^^^^^0^^6.25^^^ -~32021~^~2200~^~Spanish rice mix, dry mix, prepared (with canola/vegetable oil blend or diced tomatoes and margarine)~^~SPANISH RICE MIX,DRY MIX,PREP (WITH CANOLA/VEGETABLE OIL BLE~^^^^^0^^6.25^^^ -~32024~^~2200~^~Rice mix, cheese flavor, dry mix, unprepared~^~RICE MIX,CHS FLAVOR,DRY MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32025~^~2200~^~Dumpling, potato- or cheese-filled, frozen~^~DUMPLING,POTATO- OR CHEESE-FILLED,FRZ~^^^~Y~^^0^^6.25^^^ -~32026~^~2200~^~Turnover, chicken- or turkey-, and vegetable-filled, reduced fat, frozen~^~TURNOVER,CHICKEN- OR TURKEY-,& VEGETABLE-FILLED,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32027~^~2200~^~Turnover, meat- and cheese-filled, tomato-based sauce, reduced fat, frozen~^~TURNOVER,MEAT- & CHEESE-FILLED,TOMATO-BASED SAU,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32028~^~2200~^~Turnover, filled with egg, meat and cheese, frozen~^~TURNOVER,FILLED W/ EGG,MEAT & CHS,FRZ~^^^~Y~^^0^^6.25^^^ -~32029~^~2200~^~Rice mix, white and wild, flavored, unprepared~^~RICE MIX,WHITE & WILD,FLAV,UNPREP~^^^~Y~^^0^^6.25^^^ -~32031~^~2200~^~Salisbury steak with gravy, frozen~^~SALISBURY STEAK W/ GRAVY,FRZ~^^^~Y~^^0^^6.25^^^ -~32032~^~2200~^~Sausage, egg and cheese breakfast biscuit~^~SAUSAGE,EGG & CHS BRKFST BISCUIT~^^^~Y~^^0^^6.25^^^ -~32034~^~2200~^~HUNGRY MAN, Salisbury Steak With Gravy, frozen, unprepared~^~HUNGRY MAN,SALISBURY STEAK W/ GRAVY,FRZ,UNPREP~^^~Hungry Man~^^^0^^^^^ -~32035~^~2200~^~BANQUET, Salisbury Steak With Gravy, family size, frozen, unprepared~^~BANQUET,SALISBURY STEAK W/ GRAVY,FAMILY SIZE,FRZ,UNPREP~^^~Banquet Foods Corp.~^^^0^^^^^ -~32036~^~2200~^~JIMMY DEAN, Sausage, Egg, and Cheese Breakfast Biscuit, frozen, unprepared~^~JIMMY DEAN,SAUSAGE,EGG,& CHS BRKFST BISCUIT,FRZ,UNPREP~^^~Jimmy Dean Foods~^^^0^^^^^ -~33862~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with ARA and DHA, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33863~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM LIPIL,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33864~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, Liquid concentrate, not reconstituted~^~INF FORMU, MEA JOHN, ENFA, PRE LIPIL, INFA, LIQ CON, NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33865~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, Liquid concentrate, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFA,PREM,INFANT,LIQ CONC,NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33866~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler transitions, with ARA and DHA, powder~^~INF FORMU,MEAD JOH,ENFA,ENFA,GEN,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33867~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START, PROTECT PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33868~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, powder~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33869~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START 2, PROTECT PLUS, PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33870~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, Soy, Toddler transitions, with ARA and DHA, powder~^~INF FOR,ME JO,ENFAML,ENFA,SOY,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33871~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, powder, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMIL, GO & GR, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~33872~^~0300~^~Infant formula, GERBER, GOOD START 2 SOY, with iron, powder~^~INF FORMULA, GERBER, GOOD START 2 SOY, W/ IRON,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33873~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, PurAmino, powder, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFAM,NUTRAMIG,PURAMI,PDR,NO REC~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33874~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAMI,PREMATURE,20 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33875~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAML,PREMATURE,24 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33876~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33877~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33878~^~0300~^~Babyfood, GERBER, Banana with orange medley~^~BABYFOOD,GERBER,BANANA W/ ORANGE MEDLEY~^^~GERBER~^~Y~^^0^^6.25^3.98^8.37^3.16 -~33881~^~0300~^~Babyfood, rice cereal, dry, EARTHS BEST ORGANIC WHOLE GRAIN, fortified only with iron~^~BABYFOOD,RICE CRL,DRY,EARTHS BEST ORGANIC WHL GRAIN,FORT ONL~^^~Eaths Best~^^^0^^^^^ -~35001~^~3500~^~Agutuk, fish/berry with seal oil (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH/BERRY W/ SEAL OIL (ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35003~^~3500~^~Agutuk, meat-caribou (Alaskan ice cream) (Alaska Native)~^~AGUTUK,MEAT-CARIBOU (ALASKAN ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35004~^~3500~^~Ascidians (tunughnak) (Alaska Native)~^~ASCIDIANS (TUNUGHNAK) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35007~^~3500~^~Bear, black, meat (Alaska Native)~^~BEAR,BLACK,MEAT (ALASKA NATIVE)~^^^^^0^~Ursus americanus~^6.25^^^ -~35008~^~3500~^~Bear, polar, meat, raw (Alaska Native)~^~BEAR,POLAR,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ursus maritimus~^6.25^^^ -~35009~^~3500~^~Whale, beluga, meat, dried (Alaska Native)~^~WHALE,BELUGA,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35010~^~3500~^~Whale, beluga, eyes (Alaska Native)~^~WHALE,BELUGA,EYES (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35011~^~3500~^~Whale, beluga, meat, raw (Alaska Native)~^~Whale, beluga, meat, raw (Alaska Native)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35012~^~3500~^~Whale, beluga, flipper, raw (Alaska Native)~^~WHALE,BELUGA,FLIPPER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35013~^~3500~^~Whale, beluga, liver, raw (Alaska Native)~^~WHALE,BELUGA,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35014~^~3500~^~Oil, beluga, whale (Alaska Native)~^~OIL,BELUGA,WHALE (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^^^^ -~35015~^~3500~^~Blackberries, wild, raw (Alaska Native)~^~BLACKBERRIES,WILD,RAW (ALASKA NATIVE)~^~Crowberries~^^^^0^~Rubus spp.~^5.30^^^ -~35016~^~3500~^~Fish, blackfish, whole (Alaska Native)~^~FISH,BLACKFISH,WHL (ALASKA NATIVE)~^^^^^0^~Dallia pectoralis~^6.25^^^ -~35017~^~3500~^~Blueberries, wild, frozen (Alaska Native)~^~BLUEBERRIES,WILD,FRZ (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskanese and Ovalifolium~^5.30^^^ -~35021~^~3500~^~Caribou, bone marrow, raw (Alaska Native)~^~CARIBOU,BONE MARROW,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35022~^~3500~^~Caribou, eye, raw (Alaska Native)~^~CARIBOU,EYE,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35023~^~3500~^~Caribou, liver, raw (Alaska Native)~^~CARIBOU,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35024~^~3500~^~Stew/soup, caribou (Alaska Native)~^~STEW/SOUP,CARIBOU (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35025~^~3500~^~Caribou, tongue, raw (Alaska Native)~^~CARIBOU,TONGUE,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35026~^~3500~^~Chiton, leathery, gumboots (Alaska Native)~^~CHITON,LEATHERY,GUMBOOTS (ALASKA NATIVE)~^^^^^0^~Katharina tunicata~^6.25^^^ -~35027~^~3500~^~Cloudberries, raw (Alaska Native)~^~CLOUDBERRIES,RAW (ALASKA NATIVE)~^~baked apple berry, yellowberry, salmonberry~^^^^0^~Rubus chamaemorus L.~^5.30^^^ -~35028~^~3500~^~Cockles, raw (Alaska Native)~^~COCKLES,RAW (ALASKA NATIVE)~^^^^^0^~Clinocardium nuttallii~^6.25^^^ -~35029~^~3500~^~Cranberries, wild, bush, raw (Alaska Native)~^~CRANBERRIES,WILD,BUSH,RAW (ALASKA NATIVE)~^^^^^0^~Viburnum edule~^5.30^^^ -~35030~^~3500~^~Cranberry, low bush or lingenberry, raw (Alaska Native)~^~CRANBERRY,LO BUSH OR LINGENBERRY,RAW (ALASKA NATIVE)~^~lingenberry~^^^^0^~Vaccinium vitis-idaea~^5.30^^^ -~35034~^~3500~^~Fish, devilfish, meat (Alaska Native)~^~FISH,DEVILFISH,MEAT (ALASKA NATIVE)~^~Gray Whale~^^^^0^~Myoxocephalus~^6.25^^^ -~35038~^~3500~^~Fireweed, young leaves, raw (Alaska Native)~^~FIREWEED,YOUNG LEAVES,RAW (ALASKA NATIVE)~^^^^^0^~Chamerion angustifolium~^5.30^^^ -~35039~^~3500~^~Fish, herring eggs on giant kelp, Pacific (Alaska Native)~^~FISH,HERRING EGGS ON GIANT KELP,PACIFIC (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes & Macrocystis integrifolia~^6.25^^^ -~35040~^~3500~^~Fish, herring eggs, Pacific, dry (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,DRY (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35041~^~3500~^~Fish, herring eggs, Pacific, plain (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,PLN (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35042~^~3500~^~Fish, herring, Pacific, flesh, air-dried, packed in oil (Alaska Native)~^~FISH,HERRING,PACIFIC,FLSH,AIR-DRIED,PACK OIL (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35043~^~3500~^~Huckleberries, raw (Alaska Native)~^~HUCKLEBERRIES,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaense~^5.30^^^ -~35046~^~3500~^~Fish, lingcod, meat, raw (Alaska Native)~^~FISH,LINGCOD,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35047~^~3500~^~Fish, lingcod, liver (Alaska Native)~^~FISH,LINGCOD,LIVER (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35048~^~3500~^~Stew, moose (Alaska Native)~^~STEW,MOOSE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35049~^~3500~^~Moose, meat, raw (Alaska Native)~^~MOOSE,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35050~^~3500~^~Mashu roots, raw (Alaska Native)~^~MASHU ROOTS,RAW (ALASKA NATIVE)~^^^^^0^~Hedysarum alpinum~^5.30^^^ -~35051~^~3500~^~Moose, liver, braised (Alaska Native)~^~MOOSE,LIVER,BRSD (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35052~^~3500~^~Mouse nuts, roots (Alaska Native)~^~MOUSE NUTS,ROOTS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35053~^~3500~^~Mouse nuts, seedlings (Alaska Native)~^~MOUSE NUTS,SEEDLINGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35054~^~3500~^~Octopus (Alaska Native)~^~OCTOPUS (ALASKA NATIVE)~^^^^^0^~Octopus dofleini~^6.25^^^ -~35055~^~3500~^~Seal, bearded (Oogruk), meat, dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED (ALASKA NATIVE)~^~Oogruk~^^^^0^^6.25^^^ -~35056~^~3500~^~Seal, bearded (Oogruk), meat, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Erignathus barbatus~^6.25^^^ -~35057~^~3500~^~Oil, bearded seal (Oogruk) (Alaska Native)~^~OIL,BEARDED SEAL (OOGRUK) (ALASKA NATIVE)~^^^^^0^^^^^ -~35058~^~3500~^~Oopah (tunicate), whole animal (Alaska Native)~^~OOPAH (TUNICATE),WHL ANIMAL (ALASKA NATIVE)~^^^^^0^~Tunicata~^6.25^^^ -~35059~^~3500~^~Owl, horned, flesh, raw (Alaska Native)~^~OWL,HORNED,FLESH,RAW (ALASKA NATIVE)~^^^^^0^~Bubo virgimianus~^6.25^^^ -~35060~^~3500~^~Fish, pike, northern, liver (Alaska Native)~^~FISH,PIKE,NORTHERN,LIVER (ALASKA NATIVE)~^^^^^0^~Esox lucius~^6.25^^^ -~35063~^~3500~^~Rhubarb, wild, leaves (Alaska Native)~^~RHUBARB,WILD,LEAVES (ALASKA NATIVE)~^^^^^0^~Polygenum alaskanum~^5.30^^^ -~35064~^~3500~^~Fish, salmon, tipnuk, fermented (Alaska Native)~^~FISH,SALMON,TIPNUK,FERMENTED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35065~^~3500~^~Fish, salmon, king, chinook, kippered, canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,KIPPERED,CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35066~^~3500~^~Fish, salmon, king, chinook, smoked and canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED & CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35067~^~3500~^~Fish, salmon, king, chinook, smoked, brined (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED,BRINED (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35068~^~3500~^~Fish, salmon, king, chinook, liver (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,LIVER (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35069~^~3500~^~Duck, scoter, white-winged, meat (Alaska Native)~^~DUCK,SCOTER,WHITE-WINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Melanitta fusca~^5.30^^^ -~35070~^~3500~^~Sea cucumber, yane (Alaska Native)~^~SEA CUCUMBER,YANE (ALASKA NATIVE)~^^^^^0^~Stichopus californicus~^6.25^^^ -~35071~^~3500~^~Seal, ringed, meat (Alaska Native)~^~SEAL,RINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35072~^~3500~^~Seal, ringed, liver (Alaska Native)~^~SEAL,RINGED,LIVER (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35073~^~3500~^~Soup, fish, homemade (Alaska Native)~^~SOUP,FISH,HOMEMADE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35074~^~3500~^~Sourdock, young leaves (Alaska Native)~^~SOURDOCK,YOUNG LEAVES (ALASKA NATIVE)~^^^^^0^~Rumex articus~^6.25^^^ -~35075~^~3500~^~Squirrel, ground, meat (Alaska Native)~^~SQUIRREL,GROUND,MEAT (ALASKA NATIVE)~^^^^^0^~Citellus undulatus~^5.30^^^ -~35078~^~3500~^~Tea, tundra, herb and laborador combination (Alaska Native)~^~TEA,TUNDRA,HERB & LABORADOR COMBINATION (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35079~^~3500~^~Walrus, meat, dried (Alaska Native)~^~WALRUS,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35080~^~3500~^~Deer (venison), sitka, raw (Alaska Native)~^~DEER (VENISON),SITKA,RAW (ALASKA NATIVE)~^~sitka deer, venison~^^^^0^~Odocoileus spp~^6.25^4.27^9.02^3.87 -~35081~^~3500~^~Walrus, meat, raw (Alaska Native)~^~WALRUS,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35082~^~3500~^~Walrus, meat and subcutaneous fat raw (Alaska Native)~^~WALRUS,MEAT & SUBCUTANEOUS FAT RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35083~^~3500~^~Walrus, liver, raw (Alaska Native)~^~WALRUS,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35084~^~3500~^~Oil, walrus (Alaska Native)~^~OIL,WALRUS (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35085~^~3500~^~Whale, bowhead, subcutaneous fat (blubber) (Alaska Native)~^~WHALE,BOWHEAD,SUBCUTANEOUS FAT (BLUBBER) (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35086~^~3500~^~Whale, bowhead, skin and subcutaneous fat (muktuk) (Alaska Native)~^~WHALE,BOWHEAD,SKN & SUBCUTANEOUS FATMUKTUK(ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35087~^~3500~^~Oil, whale, bowhead (Alaska Native)~^~OIL,WHALE,BOWHEAD (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35088~^~3500~^~Fish, whitefish, broad, liver (Alaska Native)~^~FISH,WHITEFISH,BROAD,LIVER (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35089~^~3500~^~Fish, whitefish, mixed species, raw (Alaska Native)~^~FISH,WHITEFISH,MXD SP,RAW (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus spp.~^6.25^^^ -~35091~^~3500~^~Fish, whitefish, broad, head, eyes, cheeks and soft bones (Alaska Native)~^~FISH,WHITEFISH,HEAD,EYES,CHEEKS & SOFT BONES (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35092~^~3500~^~Willow, leaves in oil (Alaska Native)~^~WILLOW,LEAVES IN OIL (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^6.25^^^ -~35093~^~3500~^~Willow, young leaves, chopped (Alaska Native)~^~WILLOW,YOUNG LEAVES,CHOPD (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^5.30^^^ -~35130~^~3500~^~Mush, blue corn with ash (Navajo)~^~MUSH,BLUE CORN W/ ASH (NAVAJO)~^^^^^0^^^^^ -~35131~^~3500~^~Cornmeal, blue (Navajo)~^~CORNMEAL,BLUE (NAVAJO)~^^^^^0^^^^^ -~35132~^~3500~^~Melon, banana (Navajo)~^~MELON,BANANA (NAVAJO)~^^^^^0^^6.25^^^ -~35133~^~3500~^~Chilchen (Red Berry Beverage) (Navajo)~^~CHILCHEN (RED BERRY BEVERAGE) (NAVAJO)~^^^^^0^^6.25^^^ -~35134~^~3500~^~Corn, dried (Navajo)~^~CORN,DRIED (NAVAJO)~^^^^^0^^6.25^^^ -~35135~^~3500~^~Corn, white, steamed (Navajo)~^~CORN,WHITE,STMD (NAVAJO)~^^^^^0^^^^^ -~35136~^~3500~^~Cornmeal, white (Navajo)~^~CORNMEAL,WHITE (NAVAJO)~^^^^^0^^6.25^^^ -~35137~^~3500~^~Cornmeal, yellow (Navajo)~^~CORNMEAL,YEL (NAVAJO)~^^^^^0^^6.25^^^ -~35138~^~3500~^~Squash, Indian, raw (Navajo)~^~SQUASH,INDIAN,RAW (NAVAJO)~^^^^^0^^6.25^^^ -~35139~^~3500~^~Squash, Indian, cooked, boiled (Navajo)~^~SQUASH,INDIAN,CKD,BLD (NAVAJO)~^^^^^0^^6.25^^^ -~35140~^~3500~^~Bread, kneel down (Navajo)~^~BREAD,KNEEL DOWN (NAVAJO)~^^^^^0^^6.25^^^ -~35141~^~3500~^~Mutton, cooked, roasted (Navajo)~^~MUTTON,CKD,RSTD (NAVAJO)~^^^^^0^^6.25^^^ -~35142~^~3500~^~Frybread, made with lard (Navajo)~^~FRYBREAD,MADE W/ LARD (NAVAJO)~^^^^^0^^^^^ -~35143~^~3500~^~Tortilla, includes plain and from mutton sandwich (Navajo)~^~TORTILLA,INCL PLN & FROM MUTTON SNDWCH (NAVAJO)~^^^^^0^^^^^ -~35144~^~3500~^~Stew, dumpling with mutton (Navajo)~^~STEW,DUMPLING W/ MUTTON (NAVAJO)~^^^^^0^^^^^ -~35145~^~3500~^~Stew, hominy with mutton (Navajo)~^~STEW,HOMINY W/ MUTTON (NAVAJO)~^^^^^0^^6.25^^^ -~35146~^~3500~^~Stew, mutton, corn, squash (Navajo)~^~STEW,MUTTON,CORN,SQUASH (NAVAJO)~^^^^^0^^6.25^^^ -~35147~^~3500~^~Tamales (Navajo)~^~TAMALES (NAVAJO)~^^^^^0^^6.25^^^ -~35148~^~3500~^~Stew, steamed corn (Navajo)~^~STEW,STMD CORN (NAVAJO)~^^^^^0^^^^^ -~35149~^~3500~^~Fish, halibut, raw, with skin (Alaska Native)~^~FISH,HALIBUT,RAW,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35150~^~3500~^~Fish, salmon, coho (silver), raw (Alaska Native)~^~FISH,SALMON,COHO (SILVER),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35151~^~3500~^~Fish, salmon, sockeye (red), raw (Alaska Native)~^~FISH,SALMON,SOCKEYE (RED),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35152~^~3500~^~Fish, Salmon, Chum, raw (Alaska Native)~^~FISH,SALMON,CHUM,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35153~^~3500~^~Fish, salmon, king (chinook), raw (Alaska Native)~^~FISH,SALMON,KING (CHINOOK),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35154~^~3500~^~Salmonberries, raw (Alaska Native)~^~SALMONBERRIES,RAW (ALASKA NATIVE)~^~akpiks~^^^^0^~Rubus spectabilis~^5.30^^^ -~35155~^~3500~^~Blueberries, wild, raw (Alaska Native)~^~BLUEBERRIES,WILD,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaenese~^5.30^^^ -~35156~^~3500~^~Oil, spotted seal (Alaska Native)~^~OIL,SPOTTED SEAL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35157~^~3500~^~Fish, salmon, red, canned, bones removed (Alaska Native)~^~FISH,SALMON,RED,CND,BONES REMOVED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35158~^~3500~^~Fish, whitefish, eggs (Alaska Native)~^~FISH,WHITEFISH,EGGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35160~^~3500~^~Caribou, rump meat, half dried (Alaska Native)~^~CARIBOU,RUMP MEAT,HALF DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35161~^~3500~^~Caribou, shoulder meat, dried (Alaska Native)~^~CARIBOU,SHLDR MEAT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35162~^~3500~^~Caribou, hind quarter meat, raw (Alaska Native)~^~CARIBOU,HIND QUARTER MEAT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35164~^~3500~^~Seal, bearded (Oogruk), meat, dried, in oil (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED,IN OIL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35165~^~3500~^~Fish, whitefish, dried (Alaska Native)~^~FISH,WHITEFISH,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35166~^~3500~^~Fish, salmon, red, (sockeye), canned, smoked (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),CND,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35167~^~3500~^~Fish, salmon, red, (sockeye), kippered (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),KIPPERED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35168~^~3500~^~Fish, salmon, king, with skin, kippered, (Alaska Native)~^~FISH,SALMON,KING,W/ SKN,KIPPERED,(ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35169~^~3500~^~Fish, sheefish, raw (Alaska Native)~^~FISH,SHEEFISH,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35170~^~3500~^~Seal, bearded (Oogruk), meat, low quadrant, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,LO QUADRANT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35171~^~3500~^~Fish, salmon, chum, dried (Alaska Native)~^~FISH,SALMON,CHUM,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35172~^~3500~^~Elk, free range, ground, cooked patties (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,CKD PATTIES (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35173~^~3500~^~Elk, free range, ground, raw (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35174~^~3500~^~Buffalo, free range, top round steak, raw (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35175~^~3500~^~Seal, bearded (Oogruk), meat, partially dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,PART DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35176~^~3500~^~Buffalo, free range, top round steak, cooked (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35177~^~3500~^~Elk, free range, roast, eye of round, raw (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35178~^~3500~^~Elk, free range, roast, eye of round, cooked (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35179~^~3500~^~Chokecherries, raw, pitted (Shoshone Bannock)~^~CHOKECHERRIES,RAW,PITTED (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35180~^~3500~^~Steelhead trout, dried, flesh (Shoshone Bannock)~^~STEELHEAD TROUT,DRIED,FLESH (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35181~^~3500~^~Steelhead trout, boiled, canned (Alaska Native)~^~STEELHEAD TROUT,BLD,CND (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35182~^~3500~^~Acorn stew (Apache)~^~ACORN STEW (APACHE)~^^^^^0^^6.25^^^ -~35183~^~3500~^~Corn, dried, yellow (Northern Plains Indians)~^~CORN,DRIED,YEL (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35184~^~3500~^~Smelt, dried (Alaska Native)~^~SMELT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35185~^~3500~^~Frybread, made with lard (Apache)~^~FRYBREAD,MADE W/ LARD (APACHE)~^^^^^0^^^^^ -~35186~^~3500~^~Corned beef and potatoes in tortilla (Apache)~^~CORNED BF & POTATOES IN TORTILLA (APACHE)~^^^^^0^^^^^ -~35187~^~3500~^~Tennis Bread, plain (Apache)~^~TENNIS BREAD,PLN (APACHE)~^^^^^0^^6.25^^^ -~35188~^~3500~^~Fish, halibut, cooked, with skin (Alaska Native)~^~FISH,HALIBUT,CKD,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35190~^~3500~^~Salmon, red (sockeye), filets with skin, smoked (Alaska Native)~^~SALMON,RED (SOCKEYE),FILETS W/ SKN,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35192~^~3500~^~Agave, raw (Southwest)~^~AGAVE,RAW (SOUTHWEST)~^^^^^0^^6.25^^^ -~35193~^~3500~^~Agave, cooked (Southwest)~^~AGAVE,CKD (SOUTHWEST)~^^^^^0^^6.25^^^ -~35194~^~3500~^~Agave, dried (Southwest)~^~AGAVE,DRIED (SOUTHWEST)~^^^^^0^^6.25^^^ -~35195~^~3500~^~Cattail, Narrow Leaf Shoots (Northern Plains Indians)~^~CATTAIL,NARROW LEAF SHOOTS (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35196~^~3500~^~Lambsquarters, raw (Northern Plains Indians)~^~LAMBSQUARTERS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35197~^~3500~^~Lambsquarters, steamed (Northern Plains Indians)~^~LAMBSQUARTERS,STMD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35198~^~3500~^~Prickly pears, raw (Northern Plains Indians)~^~PRICKLY PEARS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35199~^~3500~^~Prickly pears, broiled (Northern Plains Indians)~^~PRICKLY PEARS,BRLD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35200~^~3500~^~Prairie Turnips, raw (Northern Plains Indians)~^~PRAIRIE TURNIPS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35201~^~3500~^~Prairie Turnips, boiled (Northern Plains Indians)~^~PRAIRIE TURNIPS,BLD (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35202~^~3500~^~Raspberries, wild (Northern Plains Indians)~^~RASPBERRIES,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35203~^~3500~^~Rose Hips, wild (Northern Plains Indians)~^~ROSE HIPS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35204~^~3500~^~Chokecherries, raw, pitted (Northern Plains Indians)~^~CHOKECHERRIES,RAW,PITTED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35205~^~3500~^~Stinging Nettles, blanched (Northern Plains Indians)~^~STINGING NETTLES,BLANCHED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35206~^~3500~^~Plums, wild (Northern Plains Indians)~^~PLUMS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35207~^~3500~^~Pinon Nuts, roasted (Navajo)~^~PINON NUTS,RSTD (NAVAJO)~^^^^^0^~Pinus spp.~^5.30^^^ -~35211~^~3500~^~Caribou, hind quarter, meat, cooked (Alaska Native)~^~CARIBOU,HIND QUARTER,MEAT,CKD (ALASKA NATIVE)~^^^^^0^^^^^ -~35225~^~3500~^~Agutuk, fish with shortening (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH W/ SHORTENING (ALASKAN ICE CREAM) (ALASKA NATIVE~^^^^^0^^6.25^^^ -~35226~^~3500~^~Sea lion, Steller, liver (Alaska Native)~^~SEA LION,STELLER,LIVER (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35227~^~3500~^~Sea lion, Steller, kidney (Alaska Native)~^~SEA LION,STELLER,KIDNEY (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35228~^~3500~^~Sea lion, Steller, heart (Alaska Native)~^~SEA LION,STELLER,HEART (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35229~^~3500~^~Sea lion, Steller, meat (Alaska Native)~^~SEA LION,STELLER,MEAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35230~^~3500~^~Sea lion, Steller, meat with fat (Alaska Native)~^~SEA LION,STELLER,MEAT W/ FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35231~^~3500~^~Sea lion, Steller, fat (Alaska Native)~^~SEA LION,STELLER,FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35232~^~3500~^~Wocas, dried seeds, Oregon, yellow pond lily (Klamath)~^~WOCAS,DRIED SEEDS,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35233~^~3500~^~Hazelnuts, beaked (Northern Plains Indians)~^~HAZELNUTS,BEAKED (NORTHERN PLAINS INDIANS)~^^^^^0^~Corylus cornuta Marsh.~^5.30^^^ -~35234~^~3500~^~Piki bread, made from blue cornmeal (Hopi)~^~PIKI BREAD,MADE FROM BLUE CORNMEAL (HOPI)~^^^^^0^^6.25^^^ -~35235~^~3500~^~Wocas, tuber, cooked, Oregon, yellow pond lily (Klamath)~^~WOCAS,TUBER,CKD,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35236~^~3500~^~Stew, pinto bean and hominy, badufsuki (Hopi)~^~STEW,PINTO BEAN & HOMINY,BADUFSUKI (HOPI)~^^^^^0^^^^^ -~35237~^~3500~^~Tamales, masa and pork filling (Hopi)~^~TAMALES,MASA & PORK FILLING (HOPI)~^^^^^0^^^^^ -~35238~^~3500~^~Tea, herbal, brewed, Hohoysi (Hopi)~^~TEA,HERBAL,BREWED,HOHOYSI (HOPI)~^^^^^0^^^^^ -~35239~^~3500~^~Tortilla, blue corn, Sakwavikaviki (Hopi)~^~TORTILLA,BLUE CORN,SAKWAVIKAVIKI (HOPI)~^^^^^0^^^^^ -~35240~^~3500~^~Bread, blue corn, somiviki (Hopi)~^~BREAD,BLUE CORN,SOMIVIKI (HOPI)~^^^^^0^^^^^ -~36000~^~3600~^~APPLEBEE'S, 9 oz house sirloin steak~^~APPLEBEE'S,9 OZ HOUSE SIRLOIN STEAK~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36001~^~3600~^~APPLEBEE'S, Double Crunch Shrimp~^~APPLEBEE'S,DOUBLE CRUNCH SHRIMP~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36002~^~3600~^~APPLEBEE'S, french fries~^~APPLEBEE'S,FRENCH FR~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36003~^~3600~^~APPLEBEE'S, KRAFT, Macaroni & Cheese, from kid's menu~^~APPLEBEE'S,KRAFT,MACARONI & CHS,FROM KID'S MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36004~^~3600~^~APPLEBEE'S, mozzarella sticks~^~APPLEBEE'S,MOZZARELLA STKS~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36005~^~3600~^~APPLEBEE'S, chicken tenders, from kids' menu~^~APPLEBEE'S,CHICK TENDERS,FROM KIDS' MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36006~^~3600~^~T.G.I. FRIDAY'S, FRIDAY'S Shrimp, breaded~^~T.G.I. FRIDAY'S,FRIDAY'S SHRIMP,BREADED~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36007~^~3600~^~T.G.I. FRIDAY'S, french fries~^~T.G.I. FRIDAY'S,FRENCH FR~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36008~^~3600~^~T.G.I. FRIDAY'S, fried mozzarella~^~T.G.I. FRIDAY'S, fried mozzarella~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36009~^~3600~^~T.G.I. FRIDAY'S, macaroni & cheese, from kid's menu~^~T.G.I. FRIDAY'S,MACARONI & CHS,FROM KID'S MENU~^~family style, Fridays, macaroni, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36010~^~3600~^~T.G.I. FRIDAY'S, chicken fingers, from kids' menu~^~T.G.I. FRIDAY'S,CHICK FINGERS,FROM KIDS' MENU~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36011~^~3600~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36012~^~3600~^~Restaurant, family style, fried mozzarella sticks~^~RESTAURANT,FAMILY STYLE,FRIED MOZZARELLA STKS~^~family style~^^~Y~^^0^^^^^ -~36013~^~3600~^~Restaurant, family style, sirloin steak~^~RESTAURANT,FAMILY STYLE,SIRLOIN STEAK~^~family style~^^^^0^^^^^ -~36014~^~3600~^~Restaurant, family style, french fries~^~RESTAURANT,FAMILY STYLE,FRENCH FR~^~family style~^^^^0^^^^^ -~36015~^~3600~^~Restaurant, family style, chicken fingers, from kid's menu~^~RESTAURANT,FAMILY STYLE,CHICK FINGERS,FROM KID'S MENU~^~family style~^^^^0^^^^^ -~36016~^~3600~^~Restaurant, family style, shrimp, breaded and fried~^~RESTAURANT,FAMILY STYLE,SHRIMP,BREADED & FRIED~^~family style~^^~Y~^^0^^^^^ -~36017~^~3600~^~Restaurant, family style, macaroni & cheese, from kids' menu~^~RESTAURANT,FAMILY STYLE,MACARONI & CHS,FROM KIDS' MENU~^~family style~^^~Y~^^0^^^^^ -~36018~^~3600~^~APPLEBEE'S, fish, hand battered~^~APPLEBEE'S,FISH,HAND BATTERED~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36019~^~3600~^~APPLEBEE'S, chili~^~APPLEBEE'S,CHILI~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36020~^~3600~^~T.G.I. FRIDAY'S, chicken fingers~^~T.G.I. FRIDAY'S,CHICK FINGERS~^^~T.G.I Friday's~^^^0^^^^^ -~36021~^~3600~^~APPLEBEE'S, coleslaw~^~APPLEBEE'S,COLESLAW~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36022~^~3600~^~APPLEBEE'S, crunchy onion rings~^~APPLEBEE'S,CRUNCHY ONION RINGS~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36023~^~3600~^~APPLEBEE'S, chicken tenders platter~^~APPLEBEE'S,CHICK TENDERS PLATTER~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36024~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED~^^~Cracker Barrel~^^^0^^^^^ -~36025~^~3600~^~CRACKER BARREL, coleslaw~^~CRACKER BARREL,COLESLAW~^^~Cracker Barrel~^^^0^^^^^ -~36026~^~3600~^~CRACKER BARREL, onion rings, thick-cut~^~CRACKER BARREL,ONION RINGS,THICK-CUT~^^~Cracker Barrel~^^^0^^^^^ -~36027~^~3600~^~DENNY'S, chicken strips~^~DENNY'S,CHICK STRIPS~^^~Denny's~^^^0^^^^^ -~36028~^~3600~^~DENNY'S, coleslaw~^~DENNY'S,COLESLAW~^^~Denny's~^^^0^^^^^ -~36029~^~3600~^~DENNY'S, fish fillet, battered or breaded, fried~^~DENNY'S,FISH FILLET,BATTERED OR BREADED,FRIED~^^~Denny's~^^^0^^^^^ -~36030~^~3600~^~DENNY'S, hash browns~^~DENNY'S,HASH BROWNS~^^~Denny's~^^^0^^^^^ -~36031~^~3600~^~DENNY'S, onion rings~^~DENNY'S,ONION RINGS~^^~Denny's~^^^0^^^^^ -~36032~^~3600~^~DENNY'S, spaghetti and meatballs~^~DENNY'S,SPAGHETTI & MEATBALLS~^^~Denny's~^^^0^^^^^ -~36033~^~3600~^~Restaurant, family style, fish fillet, battered or breaded, fried~^~RESTAURANT,FAMILY STYLE,FISH FILLET,BATTERED OR BREAD,FRIED~^~family style~^^~Y~^^0^^^^^ -~36034~^~3600~^~Restaurant, family style, chicken tenders~^~RESTAURANT,FAMILY STYLE,CHICK TENDERS~^~family style~^^^^0^^^^^ -~36035~^~3600~^~Restaurant, family style, coleslaw~^~RESTAURANT,FAMILY STYLE,COLESLAW~^~family style~^^~Y~^^0^^^^^ -~36036~^~3600~^~Restaurant, family style, onion rings~^~RESTAURANT,FAMILY STYLE,ONION RINGS~^~family style~^^^^0^^^^^ -~36037~^~3600~^~Restaurant, family style, chili with meat and beans~^~RESTAURANT,FAMILY STYLE,CHILI W/ MEAT & BNS~^^^~Y~^^0^^^^^ -~36038~^~3600~^~Restaurant, family style, spaghetti and meatballs~^~RESTAURANT,FAMILY STYLE,SPAGHETTI & MEATBALLS~^^^^^0^^^^^ -~36039~^~3600~^~Restaurant, family style, hash browns~^~RESTAURANT,FAMILY STYLE,HASH BROWNS~^^^^^0^^^4.00^9.00^4.00 -~36040~^~3600~^~CRACKER BARREL, macaroni n' cheese~^~CRACKER BARREL,MACARONI N' CHS~^~macaroni and cheese, family style~^~Cracker Barrel~^^^0^^^^^ -~36041~^~3600~^~Restaurant, Italian, lasagna with meat~^~RESTAURANT,ITALIAN,LASAGNA W/ MEAT~^^^~Y~^^0^^^^^ -~36042~^~3600~^~OLIVE GARDEN, lasagna classico~^~OLIVE GARDEN,LASAGNA CLASSICO~^^~Darden Group~^^^0^^^^^ -~36043~^~3600~^~CARRABBA'S ITALIAN GRILL, lasagne~^~CARRABBA'S ITALIAN GRILL,LASAGNE~^~lasagna~^~Carrabba's Italian Grill~^^^0^^^^^ -~36044~^~3600~^~ON THE BORDER, Mexican rice~^~ON THE BORDER,MEXICAN RICE~^^^^^0^^^^^ -~36045~^~3600~^~ON THE BORDER, refried beans~^~ON THE BORDER,REFRIED BNS~^^^^^0^^^^^ -~36046~^~3600~^~Restaurant, Italian, spaghetti with pomodoro sauce (no meat)~^~RESTAURANT,ITALIAN,SPAGHETTI W/ POMODORO SAU (NO MEAT)~^^^^^0^^^^^ -~36047~^~3600~^~OLIVE GARDEN, spaghetti with pomodoro sauce~^~OLIVE GARDEN,SPAGHETTI W/ POMODORO SAU~^^~Darden Group~^^^0^^^^^ -~36048~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with pomodoro sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ POMODORO SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36049~^~3600~^~ON THE BORDER, cheese enchilada~^~ON THE BORDER,CHS ENCHILADA~^^^^^0^^^^^ -~36050~^~3600~^~Restaurant, Mexican, cheese enchilada~^~RESTAURANT,MEXICAN,CHS ENCHILADA~^^^^^0^^^^^ -~36051~^~3600~^~ON THE BORDER, cheese quesadilla~^~ON THE BORDER,CHS QUESADILLA~^^^^^0^^^^^ -~36052~^~3600~^~Restaurant, Mexican, cheese quesadilla~^~RESTAURANT,MEXICAN,CHS QUESADILLA~^^^^^0^^^^^ -~36053~^~3600~^~CARRABBA'S ITALIAN GRILL, cheese ravioli with marinara sauce~^~CARRABBA'S ITALIAN GRILL,CHS RAVIOLI W/ MARINARA SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36054~^~3600~^~OLIVE GARDEN, cheese ravioli with marinara sauce~^~OLIVE GARDEN,CHS RAVIOLI W/ MARINARA SAU~^^~Darden Group~^^^0^^^^^ -~36055~^~3600~^~Restaurant, Italian, cheese ravioli with marinara sauce~^~RESTAURANT,ITALIAN,CHS RAVIOLI W/ MARINARA SAU~^^^^^0^^^^^ -~36056~^~3600~^~Restaurant, Mexican, cheese tamales~^~RESTAURANT,MEXICAN,CHS TAMALES~^^^^^0^^^^^ -~36057~^~3600~^~CARRABBA'S ITALIAN GRILL, chicken parmesan without cavatappi pasta~^~CARRABBA'S ITALIAN GRILL,CHICK PARMESAN WO/ CAVATAPPI PASTA~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36058~^~3600~^~OLIVE GARDEN, chicken parmigiana without pasta~^~OLIVE GARDEN,CHICK PARMIGIANA WO/ PASTA~^^~Darden Group~^^^0^^^^^ -~36059~^~3600~^~Restaurant, Italian, chicken parmesan without pasta~^~RESTAURANT,ITALIAN,CHICK PARMESAN WO/ PASTA~^^^^^0^^^^^ -~36060~^~3600~^~ON THE BORDER, soft taco with ground beef, cheese and lettuce~^~ON THE BORDER,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36061~^~3600~^~Restaurant, Mexican, soft taco with ground beef, cheese and lettuce~^~RESTAURANT,MEXICAN,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36401~^~3600~^~Restaurant, Latino, chicken and rice, entree, prepared~^~RESTAURANT,LATINO,CHICK & RICE,ENTREE,PREP~^^^^^0^^^^^ -~36403~^~3600~^~Restaurant, Latino, empanadas, beef, prepared~^~RESTAURANT,LATINO,EMPANADAS,BF,PREP~^^^~Y~^^0^^^^^ -~36404~^~3600~^~Restaurant, Latino, arroz con leche (rice pudding)~^~RESTAURANT,LATINO,ARROZ CON LECHE (RICE PUDDING)~^^^^^0^^^^^ -~36405~^~3600~^~Restaurant, Latino, Arroz con frijoles negros (rice and black beans)~^~RESTAURANT,LATINO,ARROZ CON FRIJOLES NEGROS (RICE&BLACK BNS)~^^^^^0^^^^^ -~36406~^~3600~^~Restaurant, Latino, Arroz con habichuelas colorados (Rice And Red Beans)~^~REST,LATINO,ARROZ CON ABICHUELAS COLORADOS (RICE&RED BNS)~^^^^^0^^^^^ -~36407~^~3600~^~Restaurant, Latino, Arroz con grandules (rice and pigeonpeas)~^~RESTAURANT,LATINO,ARROZ CON GRANDULES (RICE & PIGEONPEAS)~^^^^^0^^^^^ -~36408~^~3600~^~Restaurant, Latino, pupusas con frijoles (pupusas, bean)~^~RESTAURANT,LATINO,PUPUSAS CON FRIJOLES (PUPUSAS,BEAN)~^^^^^0^^^^^ -~36409~^~3600~^~Restaurant, Latino, pupusas con queso (pupusas, cheese)~^~RESTAURANT,LATINO,PUPUSAS CON QUESO (PUPUSAS,CHEESE)~^^^~Y~^^0^^^^^ -~36410~^~3600~^~Restaurant, Latino, pupusas del cerdo (pupusas, pork)~^~RESTAURANT,LATINO,PUPUSAS DEL CERDO (PUPUSAS,PORK)~^^^~Y~^^0^^^^^ -~36411~^~3600~^~Restaurant, Latino, tamale, corn~^~RESTAURANT,LATINO,TAMALE,CORN~^^^~Y~^^0^^^^^ -~36412~^~3600~^~Restaurant, Latino, tamale, pork~^~RESTAURANT,LATINO,TAMALE,PORK~^^^~Y~^^0^^^^^ -~36413~^~3600~^~Restaurant, Latino, black bean soup~^~RESTAURANT,LATINO,BLACK BEAN SOUP~^^^^^0^^^^^ -~36414~^~3600~^~Restaurant, Latino, tripe soup~^~RESTAURANT,LATINO,TRIPE SOUP~^^^^^0^^^^^ -~36415~^~3600~^~Restaurant, Latino, arepa (unleavened cornmeal bread)~^~RESTAURANT,LATINO,AREPA (UNLEAVENED CORNMEAL BREAD)~^^^^^0^^^^^ -~36416~^~3600~^~Restaurant, Latino, bunuelos (fried yeast bread)~^~RESTAURANT,LATINO,BUNUELOS (FRIED YEAST BREAD)~^^^^^0^^^^^ -~36417~^~3600~^~Restaurant, Mexican, spanish rice~^~RESTAURANT,MEXICAN,SPANISH RICE~^^^~Y~^^0^^^^^ -~36418~^~3600~^~Restaurant, Mexican, refried beans~^~RESTAURANT,MEXICAN,REFRIED BNS~^^^~Y~^^0^^^^^ -~36601~^~3600~^~Restaurant, Chinese, egg rolls, assorted~^~RESTAURANT,CHINESE,EGG ROLLS,ASSORTED~^^^^^0^^^^^ -~36602~^~3600~^~Restaurant, Chinese, fried rice, without meat~^~RESTAURANT,CHINESE,FRIED RICE,WO/ MEAT~^^^~Y~^^0^^^^^ -~36603~^~3600~^~Restaurant, Chinese, beef and vegetables~^~RESTAURANT,CHINESE,BF & VEG~^^^~Y~^^0^^^4.00^9.00^4.00 -~36604~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried, from kid's menu~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED,FRM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36605~^~3600~^~CRACKER BARREL, country fried shrimp platter~^~CRACKER BARREL,COUNTRY FRIED SHRIMP PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36606~^~3600~^~CRACKER BARREL, farm raised catfish platter~^~CRACKER BARREL,FARM RAISED CATFISH PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36607~^~3600~^~CRACKER BARREL, steak fries~^~CRACKER BARREL,STEAK FRIES~^~french, family style~^~Cracker Barrel~^^^0^^^^^ -~36608~^~3600~^~CRACKER BARREL, grilled sirloin steak~^~CRACKER BARREL,GRILLED SIRLOIN STEAK~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36609~^~3600~^~CRACKER BARREL, macaroni n' cheese plate, from kid's menu~^~CRACKER BARREL,MACARONI N' CHS PLATE,FROM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36610~^~3600~^~DENNY'S, french fries~^~DENNY'S,FRENCH FR~^~family style~^~Denny's~^^^0^^^^^ -~36611~^~3600~^~DENNY'S, mozzarella cheese sticks~^~DENNY'S,MOZZARELLA CHS STKS~^~family style~^~Denny's~^^^0^^^^^ -~36612~^~3600~^~DENNY'S, golden fried shrimp~^~DENNY'S,GOLDEN FRIED SHRIMP~^~family style~^~Denny's~^^^0^^^^^ -~36613~^~3600~^~DENNY'S, macaroni & cheese, from kid's menu~^~DENNY'S,MACARONI & CHS,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36614~^~3600~^~DENNY'S, chicken nuggets, star shaped, from kid's menu~^~DENNY'S,CHICK NUGGETS,STAR SHAPED,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36615~^~3600~^~DENNY'S, top sirloin steak~^~DENNY'S,TOP SIRLOIN STEAK~^~family style~^~Denny's~^^^0^^^^^ -~36617~^~3600~^~Restaurant, Chinese, lemon chicken~^~RESTAURANT,CHINESE,LEMON CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36618~^~3600~^~Restaurant, Chinese, general tso's chicken~^~RESTAURANT,CHINESE,GENERAL TSO'S CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36619~^~3600~^~Restaurant, Chinese, kung pao chicken~^~RESTAURANT,CHINESE,KUNG PAO CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36620~^~3600~^~Restaurant, Chinese, shrimp and vegetables~^~RESTAURANT,CHINESE,SHRIMP & VEG~^^^^^0^^^4.00^9.00^4.00 -~36621~^~3600~^~Restaurant, Chinese, sweet and sour chicken~^~RESTAURANT,CHINESE,SWT & SOUR CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36622~^~3600~^~Restaurant, Chinese, sweet and sour pork~^~RESTAURANT,CHINESE,SWT & SOUR PORK~^^^^^0^^^4.00^9.00^4.00 -~36623~^~3600~^~Restaurant, Chinese, chicken chow mein~^~RESTAURANT,CHINESE,CHICK CHOW MEIN~^^^^^0^^^4.00^9.00^4.00 -~36624~^~3600~^~Restaurant, Chinese, vegetable chow mein, without meat or noodles~^~RESTAURANT,CHINESE,VEG CHOW MEIN,WO/ MEAT OR NOODLES~^^^~Y~^^0^^^^^ -~36625~^~3600~^~Restaurant, Chinese, vegetable lo mein, without meat~^~RESTAURANT,CHINESE,VEG LO MEIN,WO/ MEAT~^^^~Y~^^0^^^^^ -~36626~^~3600~^~Restaurant, Chinese, chicken and vegetables~^~RESTAURANT,CHINESE,CHICK & VEG~^^^~Y~^^0^^^^^ -~36629~^~3600~^~Restaurant, Chinese, orange chicken~^~RESTAURANT,CHINESE,ORANGE CHICK~^^^~Y~^^0^^^^^ -~36630~^~3600~^~Restaurant, Italian, spaghetti with meat sauce~^~RESTAURANT,ITALIAN,SPAGHETTI W/ MEAT SAU~^^^^^0^^^^^ -~36631~^~3600~^~OLIVE GARDEN, spaghetti with meat sauce~^~OLIVE GARDEN,SPAGHETTI W/ MEAT SAU~^^~Darden Group~^^^0^^^^^ -~36632~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with meat sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ MEAT SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36633~^~3600~^~Restaurant, Chinese, sesame chicken~^~RESTAURANT,CHINESE,SESAME CHICK~^^^~Y~^^0^^^^^ -~42040~^~1900~^~Syrups, grenadine~^~SYRUPS,GRENADINE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42055~^~1400~^~Beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame~^~BEVERAGES,FRUIT-FLAVORED DRK,DRY PDR MIX,LO CAL,W/ ASPRT~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~42063~^~1900~^~Pectin, liquid~^~PECTIN,LIQUID~^^^~Y~^^0^^^^^ -~42074~^~1900~^~Frozen novelties, ice cream type, vanilla ice cream, light, no sugar added, chocolate coated~^~FROZ NOVLT,ICE CRM,VAN ICE CRM,LT,NO SUGAR ADDED,CHOC COATD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42116~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie~^~CREAMY DRSNG,MADE W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL~^^^~Y~^^0^^^^^ -~42117~^~0100~^~Imitation cheese, american or cheddar, low cholesterol~^~IMITATION CHS,AMERICAN OR CHEDDAR,LO CHOL~^^^~Y~^^0^^6.38^^^ -~42119~^~0300~^~Babyfood, banana juice with low fat yogurt~^~BABYFOOD,BANANA JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42120~^~0300~^~Babyfood, mixed fruit juice with low fat yogurt~^~BABYFOOD,MXD FRUIT JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42128~^~0700~^~Ham, turkey, sliced, extra lean, prepackaged or deli~^~HAM,TURKEY,SLICED,EX LN,PREPACKAGED OR DELI~^^^~Y~^^0^^^^^ -~42129~^~0700~^~Bologna, beef and pork, low fat~^~BOLOGNA,BF&PORK,LOFAT~^^^~Y~^^0^^^^^ -~42131~^~1900~^~Milk dessert, frozen, milk-fat free, chocolate~^~MILK DSSRT,FRZ,MILK-FAT FREE,CHOC~^^^~Y~^^0^^6.25^^^ -~42135~^~0100~^~Whipped topping, frozen, low fat~^~WHIPPED TOPPING,FRZ,LOFAT~^^^~Y~^^0^^6.38^^^ -~42136~^~0100~^~Cream substitute, powdered, light~^~CREAM SUB,PDR,LT~^^^~Y~^^0^^6.29^^^ -~42137~^~0400~^~Salad dressing, peppercorn dressing, commercial, regular~^~SALAD DRSNG,PEPPERCORN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~42138~^~0400~^~Mayonnaise, reduced-calorie or diet, cholesterol-free~^~MAYONNAISE,RED-CAL OR DIET,CHOL-FREE~^^^~Y~^^0^^^^^ -~42139~^~2500~^~Granola bar, soft, milk chocolate coated, peanut butter~^~GRANOLA BAR,SOFT,MILK CHOC COATD,PNUT BUTTER~^^^~Y~^^0^^^^^ -~42140~^~0400~^~Salad dressing, italian dressing, reduced calorie~^~SALAD DRSNG,ITALIAN DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42141~^~0100~^~Cream substitute, liquid, light~^~CREAM SUB,LIQ,LT~^^^~Y~^^0^^6.29^^^ -~42148~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Butter Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT BUTTER CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42150~^~0300~^~Babyfood, apple yogurt dessert, strained~^~BABYFOOD,APPL YOGURT DSSRT,STR~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42151~^~0400~^~Vegetable oil-butter spread, reduced calorie~^~VEGETABLE OIL-BUTTER SPRD,RED CAL~^^^~Y~^^0^^^^^ -~42153~^~0400~^~Salad dressing, blue or roquefort cheese dressing, light~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,LT~^^^~Y~^^0^^^^^ -~42155~^~0100~^~Cheese, monterey, low fat~^~CHEESE,MONTEREY,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42157~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, fat-free~^~CRMY DRSG,MDE W/ SOUR CRM AND/OR BTRMLK & OIL,RED CAL,FTFREE~^^^~Y~^^0^^^^^ -~42158~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, cholesterol-free~^~CREAMY DRSNG,W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL,CHOL-FREE~^^^~Y~^^0^^^^^ -~42161~^~0700~^~Bologna, beef, low fat~^~BOLOGNA,BEEF,LOW FAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42171~^~0400~^~Salad dressing, french dressing, reduced calorie~^~SALAD DRSNG,FRENCH DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42173~^~0700~^~Sausage, turkey and pork, fresh, bulk, patty or link, cooked~^~SAUSAGE,TURKEY & PORK,FRSH,BULK,PATTY OR LINK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42178~^~0400~^~Mayonnaise, made with tofu~^~MAYONNAISE,MADE WITH TOFU~^^^~Y~^^0^^^^^ -~42179~^~0700~^~Frankfurter, beef, low fat~^~FRANKFURTER,BF,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42183~^~1900~^~Candies, MARS SNACKFOOD US, TWIX chocolate fudge cookie bars~^~CANDIES,MARS SNACKFOOD US,TWIX CHOC FUDGE COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42185~^~1900~^~Frozen yogurts, chocolate, nonfat milk, sweetened without sugar~^~YOGURT,FRZ,CHOC,NON-FAT MILK,W/LO CAL SWTNR~^^^~Y~^^0^^6.25^^^ -~42186~^~1900~^~Frozen yogurts, chocolate~^~FROZEN YOGURTS,CHOC~^^^~Y~^^0^^6.25^^^ -~42187~^~1900~^~Frozen yogurts, flavors other than chocolate~^~FROZEN YOGURTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^^^^ -~42189~^~0100~^~Milk, buttermilk, fluid, cultured, reduced fat~^~MILK,BTTRMLK,FLUID,CULTURED,RED FAT~^^^~Y~^^0^^6.38^^^ -~42190~^~0700~^~Pork sausage rice links, brown and serve, cooked~^~PORK SAUSAGE RICE LINKS,BROWN&SERVE,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42192~^~0400~^~Salad dressing, blue or roquefort cheese dressing, fat-free~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,FAT-FREE~^^^~Y~^^0^^^4.03^8.84^3.80 -~42193~^~0400~^~Salad Dressing, mayonnaise-like, fat-free~^~SALAD DRSNG,MAYONNAISE-LIKE,FAT-FREE~^^^~Y~^^0^^^^^ -~42196~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Midnight Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY MIDNIGHT BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42200~^~1600~^~Papad~^~PAPAD~^^^~Y~^^0^^^^^ -~42204~^~2500~^~Rice cake, cracker (include hain mini rice cakes)~^~RICE CAKE,CRACKER (INCL HAIN MINI RICE CAKES)~^^^~Y~^^0^^^^^ -~42227~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Almond Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S ALMOND CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42230~^~0400~^~Salad Dressing, coleslaw, reduced fat~^~SALAD DRSNG,COLESLAW,RED FAT~^^^~Y~^^0^^^2.44^8.84^3.80 -~42231~^~0400~^~Oil, flaxseed, cold pressed~^~OIL,FLAXSEED,COLD PRESSED~^^^~Y~^^0^^^^8.84^ -~42235~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, lactose reduced~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,LACTOSE RED~^^^~Y~^^0^^6.38^^^ -~42236~^~0800~^~Cereals ready-to-eat, frosted oat cereal with marshmallows~^~CEREALS RTE,FRSTD OAT CRL W/MARSHMALLOWS~^^^~Y~^^0^^^^^ -~42237~^~0800~^~Cereals ready-to-eat, WEETABIX whole grain cereal~^~CEREALS RTE,WEETABIX WHL GRAIN CRL~^^~The Weetabix Company~^~Y~^^0^^^^^ -~42240~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with almonds~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ ALMONDS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42256~^~0400~^~Margarine-like, vegetable oil spread, stick or tub, sweetened~^~MARGARINE-LIKE,VEG OIL SPRD,STK OR TUB,SWTND~^^^~Y~^^0^^^^^ -~42259~^~2500~^~Snacks, popcorn, home-prepared, oil-popped, unsalted~^~SNACKS,POPCORN,HOME-PREPARED,OIL-POPPED,UNSALTED~^^^~Y~^^0^^^^^ -~42261~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS Crunchy Pecan Cereal~^~CEREALS RTE,POST,GREAT GRAINS CRUNCHY PECAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42265~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS, Raisin, Date & Pecan~^~CEREALS RTE,POST,GREAT GRAINS,RAISIN,DATE & PECAN~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42266~^~0300~^~Babyfood, juice, apple-sweet potato~^~BABYFOOD,JUC,APPLE-SWEET POTATO~^^^~Y~^^0^^6.25^3.34^8.37^3.92 -~42267~^~0300~^~Babyfood, juice, orange-carrot~^~BABYFOOD,JUC,ORANGE-CARROT~^^^~Y~^^0^^6.25^^^ -~42270~^~1400~^~Beverages, Orange juice drink~^~BEVERAGES,ORANGE JUC DRK~^^^^^0^^6.25^4.00^9.00^4.00 -~42272~^~2500~^~Snacks, granola bar, with coconut, chocolate coated~^~GRANOLA BAR,W/COCNT,CHOC COATD~^^^~Y~^^0^^^^^ -~42278~^~0300~^~Babyfood, vegetable and brown rice, strained~^~BABYFOOD,VEG&BROWN RICE,STR~^^^~Y~^^0^^^^^ -~42279~^~0300~^~Babyfood, peas and brown rice~^~BABYFOOD,PEAS&BROWN RICE~^^^~Y~^^0^^6.25^^^ -~42280~^~0700~^~Frankfurter, meat and poultry, low fat~^~FRANKFURTER,MEAT & POULTRY,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42281~^~1900~^~Gums, seed gums (includes locust bean, guar)~^~GUMS,SD GUMS (INCL LOCUST BEAN,GUAR)~^^^^^0^^6.25^^^ -~42283~^~2500~^~Snacks, potato chips, white, restructured, baked~^~POTATO CHIPS,WHITE,RESTRUCTURED,BKD~^^^~Y~^^0^^^^^ -~42284~^~0300~^~Babyfood, baked product, finger snacks cereal fortified~^~BABYFOOD,BKD PRODUCT,FINGER SNACKS CRL FORT~^^^~Y~^^0^^6.25^^^ -~42285~^~0300~^~Babyfood, cereal, brown rice, dry, instant~^~BABYFOOD,CRL,BROWN RICE,DRY,INST~^^^~Y~^^0^^6.25^^^ -~42286~^~0300~^~Babyfood, green beans and turkey, strained~^~BABYFOOD,GRN BNS&TURKEY,STR~^^^^^0^^6.25^^^ -~42289~^~0400~^~Oil, corn and canola~^~OIL,CORN AND CANOLA~^^^~Y~^^0^^^^8.84^ -~42290~^~0100~^~Milk, fluid, nonfat, calcium fortified (fat free or skim)~^~MILK,FLUID,NONFAT,CA FORT (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~42291~^~1600~^~Peanut butter, reduced sodium~^~PEANUT BUTTER,RED NA~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~42297~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Banana Nut Crunch~^~CEREALS RTE,POST GREAT GRAINS BANANA NUT CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42303~^~0100~^~Cheese, muenster, low fat~^~CHEESE,MUENSTER,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42304~^~0100~^~Cheese, mozzarella, nonfat~^~CHEESE,MOZZARELLA,NON-FAT~^^^~Y~^^0^^6.38^^^ -~42307~^~0400~^~Margarine-like, butter-margarine blend, 80% fat, stick, without salt~^~MARGARINE-LIKE,BUTTER-MARGARINE BLEND,80% FAT,STK,WO/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~42309~^~0400~^~Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,RED CAL,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~42316~^~0300~^~Babyfood, carrots, toddler~^~BABYFOOD,CARROTS,TODDLER~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~43004~^~0300~^~Babyfood, dessert, banana pudding, strained~^~BABYFOOD,DSSRT,BANANA PUDD,STR~^^^~Y~^^0^^6.25^^^ -~43006~^~0300~^~Babyfood, fruit, tutti frutti, strained~^~BABYFOOD,FRUIT,TUTTI FRUTTI,STR~^^^~Y~^^0^^6.25^^^ -~43007~^~0300~^~Babyfood, fruit, tutti frutti, junior~^~BABYFOOD,FRUIT,TUTTI FRUTTI,JR~^^^~Y~^^0^^6.25^^^ -~43008~^~0300~^~Babyfood, dinner, chicken and rice~^~BABYFOOD,DINNER,CHICK&RICE~^^^~Y~^^0^^6.25^^^ -~43015~^~0400~^~Salad dressing, caesar dressing, regular~^~SALAD DRSNG,CAESAR DRSNG,REG~^^^~Y~^^0^^^^^ -~43016~^~0400~^~Salad dressing, coleslaw~^~Salad dressing, coleslaw~^^^~Y~^^0^^^^^ -~43017~^~0400~^~Salad dressing, green goddess, regular~^~SALAD DRSNG,GRN GODDESS,REG~^^^~Y~^^0^^^^^ -~43019~^~0400~^~Salad dressing, sweet and sour~^~SALAD DRSNG,SWT&SOUR~^^^~Y~^^0^^^^^ -~43020~^~0400~^~Salad dressing, blue or roquefort cheese, low calorie~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS,LO CAL~^^^~Y~^^0^^^^^ -~43021~^~0400~^~Salad dressing, caesar, low calorie~^~SALAD DRSNG,CAESAR,LO CAL~^^^~Y~^^0^^^^^ -~43026~^~1900~^~Syrups, sugar free~^~SYRUPS,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~43027~^~1900~^~Jellies, no sugar (with sodium saccharin), any flavors~^~JELLIES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVORS~^^^~Y~^^0^^6.25^^^ -~43028~^~1900~^~Jams and preserves, no sugar (with sodium saccharin), any flavor~^~JAMS & PRESERVES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVOR~^^^~Y~^^0^^6.25^0.00^0.00^2.47 -~43031~^~1900~^~Candies, chocolate covered, caramel with nuts~^~CANDIES,CHOC COVERED,CARAMEL W/NUTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43046~^~1900~^~Candies, nougat, with almonds~^~CANDIES,NOUGAT,W/ ALMONDS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43057~^~1900~^~Candies, gum drops, no sugar or low calorie (sorbitol)~^~CANDIES,GUM DROPS,NO SUGAR OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43058~^~1900~^~Candies, hard, dietetic or low calorie (sorbitol)~^~CANDIES,HARD,DIETETIC OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43059~^~1900~^~Candies, chocolate covered, low sugar or low calorie~^~CANDIES,CHOC COVERED,LO SUGAR OR LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43060~^~1900~^~Chewing gum, sugarless~^~CHEWING GUM,SUGARLESS~^^^~Y~^^0^^6.25^^^ -~43075~^~0300~^~Fluid replacement, electrolyte solution (include PEDIALYTE)~^~FLUID REPLCMNT,ELECTROLYTE SOLN (INCLUDE PEDIALYTE)~^^^~Y~^^0^^^^^ -~43098~^~1900~^~Pie fillings, cherry, low calorie~^~PIE FILLINGS,CHERRY,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43100~^~2500~^~Breakfast bars, oats, sugar, raisins, coconut (include granola bar)~^~BREAKFAST BARS,OATS,SUGAR,RAISINS,COCNT (INCL GRANOLA BAR)~^^^~Y~^^0^^^^^ -~43109~^~2500~^~Pretzels, soft~^~PRETZELS,SOFT~^^^~Y~^^0^^6.25^^^ -~43112~^~1600~^~Beans, chili, barbecue, ranch style, cooked~^~BEANS,CHILI,BARBECUE,RANCH STYLE,CKD~^^^~Y~^^0^^^^^ -~43114~^~1600~^~Vermicelli, made from soy~^~VERMICELLI,MADE FROM SOY~^^^~Y~^^0^^^^^ -~43125~^~1600~^~Beans, liquid from stewed kidney beans~^~BEANS,LIQ FROM STWD KIDNEY BNS~^^^~Y~^^0^^^^^ -~43128~^~1600~^~Chicken, meatless~^~CHICKEN,MEATLESS~^^^~Y~^^0^^^^^ -~43130~^~1600~^~Frankfurter, meatless~^~FRANKFURTER,MEATLESS~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43131~^~1600~^~Luncheon slices, meatless~^~LUNCHEON SLICES,MEATLESS~^^^~Y~^^0^^^^^ -~43132~^~1600~^~Meatballs, meatless~^~MEATBALLS,MEATLESS~^^^~Y~^^0^^^^^ -~43134~^~1600~^~Vegetarian fillets~^~VEGETARIAN FILLETS~^^^~Y~^^0^^^^^ -~43135~^~1600~^~Sandwich spread, meatless~^~SANDWICH SPREAD,MEATLESS~^^^~Y~^^0^^^^^ -~43137~^~1600~^~Vegetarian meatloaf or patties~^~VEGETARIAN MEATLOAF OR PATTIES~^^^~Y~^^0^^^^^ -~43142~^~1100~^~Radishes, hawaiian style, pickled~^~RADISHES,HAWAIIAN STYLE,PICKLED~^^^~Y~^^0^^^^^ -~43143~^~1100~^~Cabbage, japanese style, fresh, pickled~^~CABBAGE,JAPANESE STYLE,FRSH,PICKLED~^^^~Y~^^0^^^^^ -~43144~^~1100~^~Cabbage, mustard, salted~^~CABBAGE,MUSTARD,SALTED~^^^~Y~^^0^^^^^ -~43146~^~1100~^~Eggplant, pickled~^~EGGPLANT,PICKLED~^^^~Y~^^0^^^^^ -~43154~^~1400~^~Alcoholic beverage, wine, cooking~^~ALCOHOLIC BEV,WINE,COOKING~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43155~^~1400~^~Alcoholic beverage, wine, light~^~ALCOHOLIC BEV,WINE,LT~^^^~Y~^^0^^^^^ -~43158~^~1900~^~Sweeteners, tabletop, saccharin (sodium saccharin)~^~SWEETENERS,TABLETOP,SACCHARIN (SODIUM SACCHARIN)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43205~^~0100~^~Beverage, instant breakfast powder, chocolate, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43212~^~1600~^~Bacon bits, meatless~^~BACON BITS,MEATLESS~^^^~Y~^^0^^^^^ -~43214~^~0400~^~Butter replacement, without fat, powder~^~BUTTER REPLCMNT,WO/FAT,PDR~^^^~Y~^^0^^^^^ -~43215~^~0400~^~Salad dressing, buttermilk, lite~^~SALAD DRSNG,BTTRMLK,LITE~^^^~Y~^^0^^^^^ -~43216~^~1900~^~Sweeteners, tabletop, fructose, dry, powder~^~SWEETENERS,TABLETOP,FRUCTOSE,DRY,PDR~^^^~Y~^^0^^6.25^^^ -~43217~^~1100~^~Tomato sauce, canned, no salt added~^~TOMATO SAU,CND,NO SALT ADDED~^^^^^0^^6.25^2.44^8.37^3.57 -~43218~^~0800~^~Cereals ready-to-eat, ALPEN~^~CEREALS RTE,ALPEN~^~muesli~^~The Weetabix Company~^~Y~^^0^^^^^ -~43241~^~0800~^~Cereals ready-to-eat, FAMILIA~^~CEREALS RTE,FAMILIA~^~muesli~^~bio-familia AG~^~Y~^^0^^^^^ -~43245~^~0800~^~Cereals ready-to-eat, wheat and bran, presweetened with nuts and fruits~^~CEREALS RTE,WHEAT&BRAN,PRESWEETENED W/NUTS&FRUITS~^^^~Y~^^0^^^^^ -~43260~^~0100~^~Beverage, instant breakfast powder, chocolate, sugar-free, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,SUGAR-FREE,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43261~^~0100~^~Yogurt, fruit variety, nonfat~^~YOGURT,FRUIT VAR,NON-FAT~^^^~Y~^^0^^6.38^^^ -~43268~^~0100~^~Whipped cream substitute, dietetic, made from powdered mix~^~WHIPPED CRM SUB,DIETETIC,MADE FROM PDR MIX~^^^~Y~^^0^^6.38^^^ -~43269~^~1900~^~Frozen novelties, ice cream type, sundae, prepackaged~^~FROZEN NOVELTIES,ICE CRM TYPE,SUNDAE,PREPACKAGED~^^^~Y~^^0^^6.25^^^ -~43273~^~0100~^~Cheese, cottage, with vegetables~^~CHEESE,COTTAGE,W/VEG~^^^~Y~^^0^^6.38^^^ -~43274~^~0100~^~Cheese, cream, low fat~^~CHEESE,CREAM,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43275~^~0100~^~Cheese, pasteurized process, American, low fat~^~CHEESE,PAST PROCESS,AMERICAN,LOFAT~^^^~Y~^^0^^6.38^^^ -~43276~^~0100~^~Cheese spread, cream cheese base~^~CHEESE SPRD,CRM CHS BASE~^^^~Y~^^0^^6.38^^^ -~43278~^~0100~^~Cheese, american cheddar, imitation~^~CHEESE,AMERICAN CHEDDAR,IMITN~^^^~Y~^^0^^6.38^^^ -~43282~^~0500~^~Quail, cooked, total edible~^~QUAIL,COOKED,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43283~^~0500~^~Pheasant, cooked, total edible~^~PHEASANT,CKD,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43285~^~0100~^~Eggs, scrambled, frozen mixture~^~EGGS,SCRMBLD,FRZ MIXTURE~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~43287~^~0500~^~Dove, cooked (includes squab)~^~DOVE,CKD (INCL SQUAB)~^^^~Y~^^0^^^^^ -~43297~^~1000~^~Pork, oriental style, dehydrated~^~PORK,ORIENTAL STYLE,DEHYD~^^^^^0^^^^^ -~43299~^~1600~^~Soybean, curd cheese~^~SOYBEAN,CURD CHEESE~^^^~Y~^^0^^^^^ -~43311~^~1100~^~Potatoes, canned, drained solids, no salt added~^~POTATOES,CND,DRND SOL,NO SALT~^^^~Y~^^0^^6.25^2.38^8.37^4.03 -~43312~^~1100~^~Vegetables, mixed (corn, lima beans, peas, green beans, carrots) canned, no salt added~^~VEGETABLES,MXD (CORN,LIMA BNS,PEAS,GRN BNS,CRRT) CND,NO SALT~^^^~Y~^^0^^^^^ -~43325~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN & REG,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43326~^~1000~^~Pork, cured, ham, low sodium, lean and fat, cooked~^~PORK,CURED,HAM,LO NA,LN & FAT,CKD~^^^~Y~^^0^^^^^ -~43327~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN (APPROXIMATLY 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43329~^~0400~^~Salad dressing, mayonnaise and mayonnaise-type, low calorie~^~SALAD DRSNG,MAYO & MAYONNAISE-TYPE,LO CAL~^^^^^0^^6.25^4.36^8.84^3.80 -~43331~^~0400~^~Salad dressing, bacon and tomato~^~SALAD DRSNG,BACON&TOMATO~^^^~Y~^^0^^^^^ -~43340~^~0100~^~Cheese, parmesan, low sodium~^~CHEESE,PARMESAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43344~^~1900~^~Jams, preserves, marmalade, reduced sugar~^~JAMS,PRESERVES,MARMALADE,RED SUGAR~^^^~Y~^^0^^6.25^^^ -~43345~^~1400~^~Beverages, fruit-flavored drink, powder, with high vitamin C with other added vitamins, low calorie~^~BEVER,FRUIT-FLAV DRK,PDR,W/ HI VIT C W/ OTHER ADD VIT,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~43346~^~1900~^~Frozen novelties, juice type, orange~^~FROZEN NOVELTIES,JUC TYPE,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43352~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, no sodium added~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,NO NA~^^^~Y~^^0^^6.38^^^ -~43355~^~0400~^~Mayonnaise, low sodium, low calorie or diet~^~MAYONNAISE,LO NA,LO CAL OR DIET~^^^~Y~^^0^^^^^ -~43364~^~2500~^~Snacks, tortilla chips, unsalted, white corn~^~SNACKS,TORTILLA CHIPS,UNSALTED,WHITE CORN~^^^~Y~^^0^^^^^ -~43365~^~1100~^~Tomato and vegetable juice, low sodium~^~TOMATO&VEG JUC,LO NA~^^^~Y~^^0^^^^^ -~43366~^~0500~^~Turkey, wing, smoked, cooked, with skin, bone removed~^~TURKEY,WING,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43367~^~0500~^~Turkey, drumstick, smoked, cooked, with skin, bone removed~^~TURKEY,DRUMSTK,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43369~^~1400~^~Beverages, Chocolate-flavored drink, whey and milk based~^~BEVERAGES,CHOCOLATE-FLAVORED DRK,WHEY & MILK BSD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43378~^~1000~^~Pork, cured, bacon, cooked, broiled, pan-fried or roasted, reduced sodium~^~PORK,CURED,BACON,CKD,BRLD,PAN-FRIED OR RSTD,RED NA~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43382~^~0900~^~Cranberry juice, unsweetened~^~CRANBERRY JUC,UNSWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~43384~^~0700~^~Beef, bologna, reduced sodium~^~BEEF,BOLOGNA,RED NA~^^^~Y~^^0^^^^^ -~43387~^~1100~^~Turnip greens, canned, no salt added~^~TURNIP GRNS,CND,NO SALT~^^^~Y~^^0^^^^^ -~43390~^~0500~^~Turkey, light or dark meat, smoked, cooked, with skin, bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43391~^~0500~^~Turkey, light or dark meat, smoked, cooked, skin and bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,SKN & BONE REMOVED~^^^~Y~^^0^^^^^ -~43392~^~1100~^~Hearts of palm, raw~^~HEARTS OF PALM,RAW~^^^~Y~^^^^^^^ -~43393~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat n' Bran, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT N' BRAN,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43396~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, with vegetables~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,W/VEG~^^^~Y~^^0^^6.38^^^ -~43398~^~0100~^~Cheese, pasteurized process, cheddar or American, low sodium~^~CHEESE,PAST PROCESS,CHEDDAR OR AMERICAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43401~^~1400~^~Beverages, coffee, instant, with whitener, reduced calorie~^~BEVERAGES,COFFEE,INST,W/ WHTNR,RED CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43404~^~1400~^~Beverages, cranberry-apple juice drink, low calorie, with vitamin C added~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,LO CAL,W/ VIT C ADDED~^^^~Y~^^0^^^^^ -~43405~^~0100~^~Cheese, swiss, low sodium~^~CHEESE,SWISS,LOW SODIUM~^^^~Y~^^0^^6.38^^^ -~43406~^~1100~^~Yeast extract spread~^~YEAST EXTRACT SPREAD~^^^~Y~^^0^^^^^ -~43408~^~0300~^~Babyfood, juice, pear~^~BABYFOOD,JUICE,PEAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~43410~^~1600~^~Chicken, meatless, breaded, fried~^~CHICKEN,MEATLESS,BREADED,FRIED~^^^~Y~^^0^^^^^ -~43417~^~0300~^~Babyfood, meat, beef with vegetables, toddler~^~BABYFOOD,MEAT,BF W/ VEG,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43432~^~0300~^~Babyfood, dinner, macaroni, beef and tomato sauce, toddler~^~BABYFOOD,DINNER,MACARONI,BF&TOMATO SAU,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43441~^~1800~^~Rolls, pumpernickel~^~ROLLS,PUMPERNICKEL~^^^~Y~^^0^^6.25^^^ -~43447~^~2500~^~Snacks, corn-based, extruded, chips, unsalted~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~43449~^~1600~^~Beans, baked, canned, no salt added~^~BEANS,BKD,CND,NO SALT ADDED~^^^~Y~^^0^^^^^ -~43450~^~1900~^~Frozen novelties, juice type, juice with cream~^~FROZEN NOVELTIES,JUC TYPE,JUC W/ CRM~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43476~^~1600~^~Tofu yogurt~^~TOFU YOGURT~^^^~Y~^^0^^^^^ -~43479~^~1400~^~Alcoholic beverage, rice (sake)~^~ALCOHOLIC BEV,RICE (SAKE)~^^^~Y~^^0^^^^^ -~43483~^~0800~^~Millet, puffed~^~MILLET,PUFFED~^^^~Y~^^0^^^^^ -~43495~^~0800~^~Cereals ready-to-eat, OAT BRAN FLAKES, HEALTH VALLEY~^~CEREALS RTE,OAT BRAN FLAKES,HEALTH VALLEY~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~43497~^~1500~^~Jellyfish, dried, salted~^~JELLYFISH,DRIED,SALTED~^^^^^0^^^^^ -~43506~^~1900~^~Frozen novelties, ice cream type, chocolate or caramel covered, with nuts~^~ICE CRM BAR,CHOC OR CARAMEL COVERED,W/NUTS~^^^~Y~^^0^^6.25^^^ -~43507~^~0700~^~Frankfurter, low sodium~^~FRANKFURTER,LO NA~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43514~^~1900~^~Frozen novelties, ice type, pop, with low calorie sweetener~^~FROZEN NOVELTIES,ICE TYPE,POP,W/ LO CAL SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43523~^~0300~^~Babyfood, mixed fruit yogurt, strained~^~BABYFOOD,MXD FRUIT YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43528~^~1400~^~Beverages, ABBOTT, ENSURE PLUS, ready-to-drink~^~BEVERAGES,ABBOTT,ENSURE PLUS,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^^^^ -~43529~^~0300~^~Babyfood, rice and apples, dry~^~BABYFOOD,RICE&APPLS,DRY~^^^~Y~^^0^^^^^ -~43535~^~0300~^~Babyfood, juice, apple - cherry~^~BABYFOOD,JUC,APPL - CHERRY~^^^~Y~^^0^^6.25^^^ -~43536~^~0300~^~Babyfood, dessert, peach yogurt~^~BABYFOOD,DSSRT,PEACH YOGURT~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43537~^~0300~^~Babyfood, dessert, blueberry yogurt, strained~^~BABYFOOD,DSSRT,BLUEBERRY YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43539~^~0300~^~Babyfood, dessert, banana yogurt, strained~^~BABYFOOD,DSSRT,BANANA YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43541~^~1900~^~Ice creams, chocolate, rich~^~ICE CREAMS,CHOC,RICH~^^^~Y~^^0^^6.25^^^ -~43543~^~0100~^~Milk, imitation, non-soy~^~MILK,IMITATION,NON-SOY~^^^~Y~^^0^^6.38^^^ -~43544~^~0300~^~Babyfood, cereal, rice with pears and apple, dry, instant fortified~^~BABYFOOD,CRL,RICE W/ PEARS & APPL,DRY,INST FORT~^^^~Y~^^0^^6.25^^^ -~43546~^~0300~^~Babyfood, banana no tapioca, strained~^~BABYFOOD,BANANA NO TAPIOCA,STR~^^^~Y~^^0^^6.25^^^ -~43550~^~0300~^~Babyfood, banana apple dessert, strained~^~BABYFOOD,BANANA APPL DSSRT,STR~^^^~Y~^^0^^6.25^^^ -~43566~^~2500~^~Snacks, tortilla chips, light (baked with less oil)~^~SNACKS,TORTILLA CHIPS,LT (BAKED W/ LESS OIL)~^^^~Y~^^0^^6.25^^^ -~43570~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, honey roasted~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,HONEY RSTD~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43572~^~2500~^~Popcorn, microwave, low fat and sodium~^~POPCORN,MICROWAVE,LOFAT&NA~^^^^^0^^^^^ -~43585~^~0300~^~Babyfood, fruit supreme dessert~^~BABYFOOD,FRUIT SUPREME DSSRT~^^^~Y~^^0^^6.25^^^ -~43589~^~0100~^~Cheese, swiss, low fat~^~CHEESE,SWISS,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43595~^~2500~^~Breakfast bar, corn flake crust with fruit~^~BREAKFAST BAR,CORN FLAKE CRUST W/FRUIT~^^^~Y~^^0^^^^^ -~43597~^~0100~^~Cheese, mozzarella, low sodium~^~CHEESE,MOZZARELLA,LO NA~^^^~Y~^^0^^6.38^^^ -~43598~^~0400~^~Mayonnaise dressing, no cholesterol~^~MAYONNAISE DRSNG,NO CHOL~^^^^^0^^^4.36^8.84^3.80 -~44005~^~0400~^~Oil, corn, peanut, and olive~^~OIL,CORN,PEANUT,AND OLIVE~^^^~Y~^^0^^^^^ -~44018~^~1900~^~Sweeteners, tabletop, fructose, liquid~^~SWEETENERS,TABLETOP,FRUCTOSE,LIQ~^^^~Y~^^0^^6.25^0.00^0.00^3.66 -~44061~^~1900~^~Puddings, chocolate flavor, low calorie, instant, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44074~^~0300~^~Babyfood, grape juice, no sugar, canned~^~BABYFOOD,GRAPE JUC,NO SUGAR,CND~^^^~Y~^^0^^6.25^^^ -~44110~^~1900~^~Jellies, reduced sugar, home preserved~^~JELLIES,RED SUGAR,HOME PRESERVED~^^^~Y~^^0^^6.25^^^ -~44158~^~1900~^~Pie fillings, blueberry, canned~^~PIE FILLINGS,BLUEBERRY,CND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44203~^~1400~^~Beverages, Cocktail mix, non-alcoholic, concentrated, frozen~^~BEVERAGES,COCKTAIL MIX,NON-ALCOHOLIC,CONCD,FRZ~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44258~^~1900~^~Puddings, chocolate flavor, low calorie, regular, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44259~^~1900~^~Puddings, all flavors except chocolate, low calorie, regular, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44260~^~1900~^~Puddings, all flavors except chocolate, low calorie, instant, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~48052~^~2000~^~Vital wheat gluten~^~VITAL WHEAT GLUTEN~^^^^^0^^^^^ -~80200~^~1500~^~Frog legs, raw~^~FROG LEGS,RAW~^^^~Y~^^0^^^^^ -~83110~^~1500~^~Fish, mackerel, salted~^~MACKEREL,SALTED~^^^^^0^^^^^ -~90240~^~1500~^~Mollusks, scallop, (bay and sea), cooked, steamed~^~SCALLOP,(BAY&SEA),CKD,STMD~^^^~Y~^^0^^^^^ -~90480~^~1900~^~Syrup, Cane~^~SYRUP,CANE~^^^^^0^^6.25^0.00^0.00^3.68 -~90560~^~1500~^~Mollusks, snail, raw~^~SNAIL,RAW~^^^~Y~^^0^^^^^ -~93600~^~1500~^~Turtle, green, raw~^~TURTLE,GREEN,RAW~^^^~Y~^^0^^^^^ diff --git a/Postgres/raw_data/NUTR_DEF.txt b/Postgres/raw_data/NUTR_DEF.txt deleted file mode 100755 index 1ab56bf..0000000 --- a/Postgres/raw_data/NUTR_DEF.txt +++ /dev/null @@ -1,149 +0,0 @@ -~203~^~g~^~PROCNT~^~Protein~^~2~^600 -~204~^~g~^~FAT~^~Total lipid (fat)~^~2~^800 -~205~^~g~^~CHOCDF~^~Carbohydrate, by difference~^~2~^1100 -~207~^~g~^~ASH~^~Ash~^~2~^1000 -~208~^~kcal~^~ENERC_KCAL~^~Energy~^~0~^300 -~209~^~g~^~STARCH~^~Starch~^~2~^2200 -~210~^~g~^~SUCS~^~Sucrose~^~2~^1600 -~211~^~g~^~GLUS~^~Glucose (dextrose)~^~2~^1700 -~212~^~g~^~FRUS~^~Fructose~^~2~^1800 -~213~^~g~^~LACS~^~Lactose~^~2~^1900 -~214~^~g~^~MALS~^~Maltose~^~2~^2000 -~221~^~g~^~ALC~^~Alcohol, ethyl~^~1~^18200 -~255~^~g~^~WATER~^~Water~^~2~^100 -~262~^~mg~^~CAFFN~^~Caffeine~^~0~^18300 -~263~^~mg~^~THEBRN~^~Theobromine~^~0~^18400 -~268~^~kJ~^~ENERC_KJ~^~Energy~^~0~^400 -~269~^~g~^~SUGAR~^~Sugars, total~^~2~^1500 -~287~^~g~^~GALS~^~Galactose~^~2~^2100 -~291~^~g~^~FIBTG~^~Fiber, total dietary~^~1~^1200 -~301~^~mg~^~CA~^~Calcium, Ca~^~0~^5300 -~303~^~mg~^~FE~^~Iron, Fe~^~2~^5400 -~304~^~mg~^~MG~^~Magnesium, Mg~^~0~^5500 -~305~^~mg~^~P~^~Phosphorus, P~^~0~^5600 -~306~^~mg~^~K~^~Potassium, K~^~0~^5700 -~307~^~mg~^~NA~^~Sodium, Na~^~0~^5800 -~309~^~mg~^~ZN~^~Zinc, Zn~^~2~^5900 -~312~^~mg~^~CU~^~Copper, Cu~^~3~^6000 -~313~^~g~^~FLD~^~Fluoride, F~^~1~^6240 -~315~^~mg~^~MN~^~Manganese, Mn~^~3~^6100 -~317~^~g~^~SE~^~Selenium, Se~^~1~^6200 -~318~^~IU~^~VITA_IU~^~Vitamin A, IU~^~0~^7500 -~319~^~g~^~RETOL~^~Retinol~^~0~^7430 -~320~^~g~^~VITA_RAE~^~Vitamin A, RAE~^~0~^7420 -~321~^~g~^~CARTB~^~Carotene, beta~^~0~^7440 -~322~^~g~^~CARTA~^~Carotene, alpha~^~0~^7450 -~323~^~mg~^~TOCPHA~^~Vitamin E (alpha-tocopherol)~^~2~^7900 -~324~^~IU~^~VITD~^~Vitamin D~^~0~^8750 -~325~^~g~^~ERGCAL~^~Vitamin D2 (ergocalciferol)~^~1~^8710 -~326~^~g~^~CHOCAL~^~Vitamin D3 (cholecalciferol)~^~1~^8720 -~328~^~g~^~VITD~^~Vitamin D (D2 + D3)~^~1~^8700 -~334~^~g~^~CRYPX~^~Cryptoxanthin, beta~^~0~^7460 -~337~^~g~^~LYCPN~^~Lycopene~^~0~^7530 -~338~^~g~^~LUT+ZEA~^~Lutein + zeaxanthin~^~0~^7560 -~341~^~mg~^~TOCPHB~^~Tocopherol, beta~^~2~^8000 -~342~^~mg~^~TOCPHG~^~Tocopherol, gamma~^~2~^8100 -~343~^~mg~^~TOCPHD~^~Tocopherol, delta~^~2~^8200 -~344~^~mg~^~TOCTRA~^~Tocotrienol, alpha~^~2~^8300 -~345~^~mg~^~TOCTRB~^~Tocotrienol, beta~^~2~^8400 -~346~^~mg~^~TOCTRG~^~Tocotrienol, gamma~^~2~^8500 -~347~^~mg~^~TOCTRD~^~Tocotrienol, delta~^~2~^8600 -~401~^~mg~^~VITC~^~Vitamin C, total ascorbic acid~^~1~^6300 -~404~^~mg~^~THIA~^~Thiamin~^~3~^6400 -~405~^~mg~^~RIBF~^~Riboflavin~^~3~^6500 -~406~^~mg~^~NIA~^~Niacin~^~3~^6600 -~410~^~mg~^~PANTAC~^~Pantothenic acid~^~3~^6700 -~415~^~mg~^~VITB6A~^~Vitamin B-6~^~3~^6800 -~417~^~g~^~FOL~^~Folate, total~^~0~^6900 -~418~^~g~^~VITB12~^~Vitamin B-12~^~2~^7300 -~421~^~mg~^~CHOLN~^~Choline, total~^~1~^7220 -~428~^~g~^~MK4~^~Menaquinone-4~^~1~^8950 -~429~^~g~^~VITK1D~^~Dihydrophylloquinone~^~1~^8900 -~430~^~g~^~VITK1~^~Vitamin K (phylloquinone)~^~1~^8800 -~431~^~g~^~FOLAC~^~Folic acid~^~0~^7000 -~432~^~g~^~FOLFD~^~Folate, food~^~0~^7100 -~435~^~g~^~FOLDFE~^~Folate, DFE~^~0~^7200 -~454~^~mg~^~BETN~^~Betaine~^~1~^7270 -~501~^~g~^~TRP_G~^~Tryptophan~^~3~^16300 -~502~^~g~^~THR_G~^~Threonine~^~3~^16400 -~503~^~g~^~ILE_G~^~Isoleucine~^~3~^16500 -~504~^~g~^~LEU_G~^~Leucine~^~3~^16600 -~505~^~g~^~LYS_G~^~Lysine~^~3~^16700 -~506~^~g~^~MET_G~^~Methionine~^~3~^16800 -~507~^~g~^~CYS_G~^~Cystine~^~3~^16900 -~508~^~g~^~PHE_G~^~Phenylalanine~^~3~^17000 -~509~^~g~^~TYR_G~^~Tyrosine~^~3~^17100 -~510~^~g~^~VAL_G~^~Valine~^~3~^17200 -~511~^~g~^~ARG_G~^~Arginine~^~3~^17300 -~512~^~g~^~HISTN_G~^~Histidine~^~3~^17400 -~513~^~g~^~ALA_G~^~Alanine~^~3~^17500 -~514~^~g~^~ASP_G~^~Aspartic acid~^~3~^17600 -~515~^~g~^~GLU_G~^~Glutamic acid~^~3~^17700 -~516~^~g~^~GLY_G~^~Glycine~^~3~^17800 -~517~^~g~^~PRO_G~^~Proline~^~3~^17900 -~518~^~g~^~SER_G~^~Serine~^~3~^18000 -~521~^~g~^~HYP~^~Hydroxyproline~^~3~^18100 -~573~^~mg~^^~Vitamin E, added~^~2~^7920 -~578~^~g~^^~Vitamin B-12, added~^~2~^7340 -~601~^~mg~^~CHOLE~^~Cholesterol~^~0~^15700 -~605~^~g~^~FATRN~^~Fatty acids, total trans~^~3~^15400 -~606~^~g~^~FASAT~^~Fatty acids, total saturated~^~3~^9700 -~607~^~g~^~F4D0~^~4:0~^~3~^9800 -~608~^~g~^~F6D0~^~6:0~^~3~^9900 -~609~^~g~^~F8D0~^~8:0~^~3~^10000 -~610~^~g~^~F10D0~^~10:0~^~3~^10100 -~611~^~g~^~F12D0~^~12:0~^~3~^10300 -~612~^~g~^~F14D0~^~14:0~^~3~^10500 -~613~^~g~^~F16D0~^~16:0~^~3~^10700 -~614~^~g~^~F18D0~^~18:0~^~3~^10900 -~615~^~g~^~F20D0~^~20:0~^~3~^11100 -~617~^~g~^~F18D1~^~18:1 undifferentiated~^~3~^12100 -~618~^~g~^~F18D2~^~18:2 undifferentiated~^~3~^13100 -~619~^~g~^~F18D3~^~18:3 undifferentiated~^~3~^13900 -~620~^~g~^~F20D4~^~20:4 undifferentiated~^~3~^14700 -~621~^~g~^~F22D6~^~22:6 n-3 (DHA)~^~3~^15300 -~624~^~g~^~F22D0~^~22:0~^~3~^11200 -~625~^~g~^~F14D1~^~14:1~^~3~^11500 -~626~^~g~^~F16D1~^~16:1 undifferentiated~^~3~^11700 -~627~^~g~^~F18D4~^~18:4~^~3~^14250 -~628~^~g~^~F20D1~^~20:1~^~3~^12400 -~629~^~g~^~F20D5~^~20:5 n-3 (EPA)~^~3~^15000 -~630~^~g~^~F22D1~^~22:1 undifferentiated~^~3~^12500 -~631~^~g~^~F22D5~^~22:5 n-3 (DPA)~^~3~^15200 -~636~^~mg~^~PHYSTR~^~Phytosterols~^~0~^15800 -~638~^~mg~^~STID7~^~Stigmasterol~^~0~^15900 -~639~^~mg~^~CAMD5~^~Campesterol~^~0~^16000 -~641~^~mg~^~SITSTR~^~Beta-sitosterol~^~0~^16200 -~645~^~g~^~FAMS~^~Fatty acids, total monounsaturated~^~3~^11400 -~646~^~g~^~FAPU~^~Fatty acids, total polyunsaturated~^~3~^12900 -~652~^~g~^~F15D0~^~15:0~^~3~^10600 -~653~^~g~^~F17D0~^~17:0~^~3~^10800 -~654~^~g~^~F24D0~^~24:0~^~3~^11300 -~662~^~g~^~F16D1T~^~16:1 t~^~3~^11900 -~663~^~g~^~F18D1T~^~18:1 t~^~3~^12300 -~664~^~g~^~F22D1T~^~22:1 t~^~3~^12700 -~665~^~g~^^~18:2 t not further defined~^~3~^13800 -~666~^~g~^^~18:2 i~^~3~^13700 -~669~^~g~^~F18D2TT~^~18:2 t,t~^~3~^13600 -~670~^~g~^~F18D2CLA~^~18:2 CLAs~^~3~^13300 -~671~^~g~^~F24D1C~^~24:1 c~^~3~^12800 -~672~^~g~^~F20D2CN6~^~20:2 n-6 c,c~^~3~^14300 -~673~^~g~^~F16D1C~^~16:1 c~^~3~^11800 -~674~^~g~^~F18D1C~^~18:1 c~^~3~^12200 -~675~^~g~^~F18D2CN6~^~18:2 n-6 c,c~^~3~^13200 -~676~^~g~^~F22D1C~^~22:1 c~^~3~^12600 -~685~^~g~^~F18D3CN6~^~18:3 n-6 c,c,c~^~3~^14100 -~687~^~g~^~F17D1~^~17:1~^~3~^12000 -~689~^~g~^~F20D3~^~20:3 undifferentiated~^~3~^14400 -~693~^~g~^~FATRNM~^~Fatty acids, total trans-monoenoic~^~3~^15500 -~695~^~g~^~FATRNP~^~Fatty acids, total trans-polyenoic~^~3~^15600 -~696~^~g~^~F13D0~^~13:0~^~3~^10400 -~697~^~g~^~F15D1~^~15:1~^~3~^11600 -~851~^~g~^~F18D3CN3~^~18:3 n-3 c,c,c (ALA)~^~3~^14000 -~852~^~g~^~F20D3N3~^~20:3 n-3~^~3~^14500 -~853~^~g~^~F20D3N6~^~20:3 n-6~^~3~^14600 -~855~^~g~^~F20D4N6~^~20:4 n-6~^~3~^14900 -~856~^~g~^^~18:3i~^~3~^14200 -~857~^~g~^~F21D5~^~21:5~^~3~^15100 -~858~^~g~^~F22D4~^~22:4~^~3~^15160 -~859~^~g~^~F18D1TN7~^~18:1-11 t (18:1t n-7)~^~3~^12310 diff --git a/Postgres/raw_data/NUT_DATA.txt b/Postgres/raw_data/NUT_DATA.txt deleted file mode 100644 index 9ff634c..0000000 --- a/Postgres/raw_data/NUT_DATA.txt +++ /dev/null @@ -1,644125 +0,0 @@ -~01001~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01001~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~01001~^~301~^24.^17^0.^~1~^~A~^^^7^19.^30.^4^22.^26.^~2, 3~^~11/01/2002~ -~01001~^~304~^2.^18^0.^~1~^~A~^^^7^1.^2.^4^1.^1.^~2, 3~^~03/01/2003~ -~01001~^~305~^24.^17^0.^~1~^~A~^^^7^19.^27.^7^22.^24.^~2, 3~^~03/01/2003~ -~01001~^~306~^24.^18^0.^~1~^~A~^^^7^17.^28.^2^20.^26.^~2, 3~^~03/01/2003~ -~01001~^~307~^643.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01001~^~318~^2499.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~319~^671.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01001~^~320~^684.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~321~^158.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01001~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~01001~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01001~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01001~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01001~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1995~ -~01001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01001~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~601~^215.^3^1.^~1~^~A~^^^1^213.^217.^2^209.^220.^~2, 3~^~03/01/2003~ -~01001~^~638~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~639~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~641~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~11/01/2002~ -~01002~^~208~^731.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01002~^~268~^3058.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01002~^~301~^23.^9^0.^~1~^~A~^^^1^21.^26.^1^20.^24.^~2, 3~^~02/01/2015~ -~01002~^~304~^1.^9^0.^~1~^~A~^^^1^1.^2.^6^1.^1.^~2, 3~^~02/01/2015~ -~01002~^~305~^24.^9^0.^~1~^~A~^^^1^23.^26.^1^21.^26.^~2, 3~^~02/01/2015~ -~01002~^~306~^41.^9^1.^~1~^~A~^^^1^23.^57.^5^37.^45.^~2, 3~^~02/01/2015~ -~01002~^~307~^583.^9^8.^~1~^~A~^^^1^544.^640.^6^561.^604.^~2, 3~^~02/01/2015~ -~01002~^~318~^2468.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01002~^~319~^671.^4^20.^~1~^~A~^^^1^641.^737.^2^580.^761.^~2, 3~^~02/01/2015~ -~01002~^~320~^683.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01002~^~321~^135.^4^8.^~1~^~A~^^^1^120.^171.^1^66.^202.^~2, 3~^~02/01/2015~ -~01002~^~322~^1.^4^0.^~1~^~A~^^^1^0.^3.^1^-5.^8.^~1, 2, 3~^~02/01/2015~ -~01002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~01002~^~334~^6.^4^0.^~1~^~A~^^^1^4.^7.^2^3.^8.^~2, 3~^~02/01/2015~ -~01002~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~338~^13.^4^1.^~1~^~A~^^^1^10.^16.^1^0.^26.^~2, 3~^~02/01/2015~ -~01002~^~417~^4.^2^^~1~^~A~^^^1^4.^4.^^^^~1~^~02/01/2015~ -~01002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01002~^~432~^4.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01002~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~601~^225.^6^0.^~1~^~A~^^^1^223.^228.^2^223.^227.^~2, 3~^~02/01/2015~ -~01003~^~208~^876.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~268~^3665.^0^^~4~^^^^^^^^^^^~09/01/2015~ -~01003~^~301~^4.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~304~^0.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~305~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~306~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~307~^2.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~318~^3069.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01003~^~319~^824.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01003~^~320~^840.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01003~^~321~^193.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01003~^~417~^0.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01003~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01003~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01003~^~601~^256.^19^0.^~1~^^^^^^^^^^^~08/01/1995~ -~01004~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01004~^~301~^528.^17^21.^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~304~^23.^11^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~305~^387.^12^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~306~^256.^12^41.^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~307~^1146.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01004~^~318~^721.^13^54.^~1~^^^^^^^^^^^~06/01/2013~ -~01004~^~319~^192.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~01004~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01004~^~321~^74.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~324~^21.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01004~^~417~^36.^34^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01004~^~432~^36.^34^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01004~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01004~^~601~^75.^4^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~268~^1552.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01005~^~301~^674.^13^31.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~304~^24.^9^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~305~^451.^9^18.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~306~^136.^9^22.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~307~^560.^9^37.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~318~^1080.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01005~^~319~^286.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01005~^~320~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01005~^~321~^76.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01005~^~417~^20.^30^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01005~^~432~^20.^30^3.^~1~^^^^^^^^^^^~02/01/2009~ -~01005~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01005~^~601~^94.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01006~^~301~^184.^3^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~304~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~305~^188.^3^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~306~^152.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~307~^629.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~318~^592.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01006~^~319~^173.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01006~^~320~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01006~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01006~^~417~^65.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01006~^~432~^65.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01006~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01006~^~601~^100.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01007~^~268~^1253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01007~^~301~^388.^11^52.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~304~^20.^10^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~305~^347.^10^20.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~306~^187.^9^21.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~307~^842.^10^62.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~318~^820.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01007~^~319~^240.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01007~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01007~^~321~^12.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01007~^~324~^18.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01007~^~417~^62.^18^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01007~^~432~^62.^18^8.^~1~^^^^^^^^^^^~02/01/2009~ -~01007~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01007~^~601~^72.^4^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01008~^~268~^1573.^0^^~4~^^^^^^^^^^^ -~01008~^~301~^673.^3^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~304~^22.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~305~^490.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~306~^93.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~307~^690.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~318~^1054.^4^38.^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~319~^262.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01008~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01008~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01008~^~432~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01008~^~601~^93.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01009~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01009~^~268~^1684.^0^^~4~^^^^^^^^^^^~01/01/2017~ -~01009~^~301~^710.^39^9.^~1~^~A~^^^2^695.^717.^10^689.^729.^~2, 3~^~01/01/2017~ -~01009~^~304~^27.^39^0.^~1~^~A~^^^2^26.^28.^17^26.^27.^~2, 3~^~08/01/2014~ -~01009~^~305~^455.^39^3.^~1~^~A~^^^2^450.^464.^16^447.^463.^~2, 3~^~01/01/2017~ -~01009~^~306~^76.^39^1.^~1~^~A~^^^2^75.^79.^13^72.^79.^~2, 3~^~01/01/2017~ -~01009~^~307~^653.^39^13.^~1~^~A~^^^2^644.^673.^18^625.^680.^~2, 3~^~06/01/2015~ -~01009~^~318~^1242.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01009~^~319~^330.^7^^~1~^~A~^^^2^256.^341.^^^^~2, 3~^~06/01/2015~ -~01009~^~320~^337.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01009~^~321~^85.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01009~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01009~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01009~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01009~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01009~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01009~^~417~^27.^4^^~1~^~A~^^^^14.^30.^^^^^~06/01/2015~ -~01009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01009~^~432~^27.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01009~^~601~^99.^29^0.^~1~^~A~^^^2^98.^101.^13^97.^100.^~2, 3~^~06/01/2015~ -~01010~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01010~^~268~^1620.^0^^~4~^^^^^^^^^^^ -~01010~^~301~^643.^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~304~^21.^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~305~^464.^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~306~^95.^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~307~^700.^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~318~^985.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~319~^220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01010~^~320~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01010~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01010~^~432~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01010~^~601~^103.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~268~^1647.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~ -~01011~^~301~^685.^16^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~304~^26.^12^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~305~^457.^12^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~306~^127.^12^16.^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~307~^604.^12^26.^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~318~^994.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01011~^~319~^257.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01011~^~320~^264.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01011~^~321~^82.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01011~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01011~^~432~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01011~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01011~^~601~^95.^4^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01012~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~268~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~301~^83.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~304~^8.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~305~^159.^3^3.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~306~^104.^3^8.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~307~^315.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01012~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~319~^36.^3^2.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~321~^12.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01012~^~417~^12.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01012~^~432~^12.^4^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01012~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01012~^~601~^17.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01013~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01013~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01013~^~301~^53.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~304~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~305~^113.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~306~^90.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~307~^344.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~318~^146.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~319~^37.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~320~^38.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~321~^14.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01013~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~432~^11.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01013~^~601~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01014~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~301~^86.^2^^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~304~^11.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~305~^190.^3^26.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~306~^137.^3^6.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~307~^372.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01014~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~319~^2.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2008~ -~01014~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01014~^~417~^9.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01014~^~432~^9.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~601~^7.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01015~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~301~^111.^15^6.^~1~^~A~^^^1^76.^168.^6^94.^127.^~2, 3~^~05/01/2014~ -~01015~^~304~^9.^15^0.^~1~^~A~^^^1^7.^11.^7^8.^9.^~2, 3~^~05/01/2014~ -~01015~^~305~^150.^15^3.^~1~^~A~^^^1^132.^175.^9^141.^157.^~2, 3~^~05/01/2014~ -~01015~^~306~^125.^15^5.^~1~^~A~^^^1^91.^159.^6^111.^137.^~2, 3~^~05/01/2014~ -~01015~^~307~^308.^15^4.^~1~^~A~^^^1^267.^420.^8^298.^318.^~2, 3~^~05/01/2014~ -~01015~^~318~^236.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01015~^~319~^68.^2^^~1~^~A~^^^1^62.^75.^^^^^~05/01/2014~ -~01015~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01015~^~321~^6.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2008~ -~01015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01015~^~417~^8.^2^^~1~^~A~^^^1^7.^13.^^^^^~05/01/2014~ -~01015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01015~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~601~^12.^8^0.^~1~^~A~^^^1^11.^13.^1^11.^11.^~2, 3~^~05/01/2014~ -~01016~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01016~^~301~^61.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~304~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~305~^134.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~306~^86.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~307~^406.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01016~^~319~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01016~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01016~^~321~^3.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01016~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01016~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~01016~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01016~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01017~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01017~^~268~^1466.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~301~^97.^11^2.^~1~^~A~^^^1^73.^136.^7^89.^103.^~2, 3~^~02/01/2015~ -~01017~^~304~^9.^12^0.^~1~^~A~^^^1^7.^12.^10^8.^10.^~2, 3~^~06/01/2008~ -~01017~^~305~^107.^12^1.^~1~^~A~^^^1^95.^132.^7^102.^111.^~2, 3~^~02/01/2015~ -~01017~^~306~^132.^11^5.^~1~^~A~^^^1^99.^167.^8^119.^145.^~2, 3~^~02/01/2015~ -~01017~^~307~^314.^12^7.^~1~^~A~^^^1^282.^357.^9^298.^330.^~2, 3~^~07/01/2017~ -~01017~^~318~^1111.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01017~^~319~^303.^4^34.^~1~^~A~^^^1^226.^358.^2^96.^509.^~2, 3~^~02/01/2015~ -~01017~^~320~^308.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01017~^~321~^59.^4^4.^~1~^~A~^^^1^47.^70.^2^35.^82.^~2, 3~^~02/01/2015~ -~01017~^~322~^1.^4^0.^~1~^~A~^^^1^0.^1.^1^-1.^2.^~1, 2, 3~^~02/01/2015~ -~01017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~01017~^~334~^2.^4^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~02/01/2015~ -~01017~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~01017~^~338~^7.^4^0.^~1~^~A~^^^1^6.^9.^2^7.^7.^~2, 3~^~02/01/2015~ -~01017~^~417~^9.^2^^~1~^~A~^^^1^9.^10.^^^^^~02/01/2015~ -~01017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01017~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01017~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~601~^101.^5^1.^~1~^~A~^^^1^96.^103.^3^97.^104.^~2, 3~^~02/01/2015~ -~01018~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01018~^~268~^1492.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01018~^~301~^731.^15^32.^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~304~^30.^9^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~305~^536.^10^18.^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~306~^188.^9^39.^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~307~^973.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01018~^~318~^825.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01018~^~319~^242.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01018~^~320~^243.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01018~^~321~^11.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01018~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01018~^~417~^16.^41^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01018~^~432~^16.^41^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01018~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01018~^~601~^89.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~268~^1107.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01019~^~301~^493.^4^42.^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~304~^19.^4^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~305~^337.^4^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~306~^62.^5^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~307~^1139.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01019~^~318~^422.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01019~^~319~^125.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01019~^~320~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01019~^~321~^3.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~324~^16.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01019~^~417~^32.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01019~^~432~^32.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01019~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01019~^~601~^89.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~268~^1628.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01020~^~301~^550.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~304~^14.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~305~^346.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~306~^64.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~307~^800.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~318~^913.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01020~^~319~^258.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01020~^~320~^261.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01020~^~321~^32.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~324~^23.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01020~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01020~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01020~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01020~^~601~^116.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~208~^466.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01021~^~268~^1948.^0^^~4~^^^^^^^^^^^ -~01021~^~301~^400.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~304~^70.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~305~^444.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~306~^1409.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~307~^600.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~318~^1113.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~319~^334.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~01021~^~320~^334.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~01021~^~417~^5.^8^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01021~^~432~^5.^8^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01021~^~601~^94.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~268~^1491.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01022~^~301~^700.^8^29.^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~304~^29.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~305~^546.^7^21.^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~306~^121.^8^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~307~^819.^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~318~^563.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01022~^~319~^164.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01022~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01022~^~321~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01022~^~417~^21.^20^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01022~^~432~^21.^20^2.^~1~^^^^^^^^^^^~02/01/2009~ -~01022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01022~^~601~^114.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~208~^413.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~268~^1728.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01023~^~301~^1011.^3^48.^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~304~^36.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01023~^~305~^605.^3^52.^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~306~^81.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~307~^714.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01023~^~318~^948.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01023~^~319~^268.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01023~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01023~^~321~^33.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01023~^~417~^10.^51^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01023~^~432~^10.^51^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01023~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01023~^~601~^110.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~268~^1368.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01024~^~301~^497.^3^100.^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~304~^21.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~305~^393.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~306~^128.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~307~^800.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~318~^1155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01024~^~319~^339.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01024~^~320~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01024~^~321~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01024~^~417~^58.^25^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01024~^~432~^58.^25^5.^~1~^^^^^^^^^^^~02/01/2009~ -~01024~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01024~^~601~^90.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~268~^1562.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01025~^~301~^746.^6^21.^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~304~^27.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~305~^444.^4^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~306~^81.^4^11.^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~307~^600.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~01025~^~318~^769.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01025~^~319~^192.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01025~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01025~^~321~^78.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01025~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01025~^~432~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01025~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01025~^~601~^89.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01026~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~268~^1249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01026~^~301~^505.^6^2.^~1~^~A~^^^1^494.^512.^5^498.^512.^~2, 3~^~03/01/2003~ -~01026~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~2, 3~^~03/01/2003~ -~01026~^~305~^354.^6^2.^~1~^~A~^^^1^348.^363.^5^347.^360.^~2, 3~^~03/01/2003~ -~01026~^~306~^76.^6^2.^~1~^~A~^^^1^71.^86.^5^70.^81.^~2, 3~^~03/01/2003~ -~01026~^~307~^486.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01026~^~318~^676.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01026~^~319~^174.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01026~^~320~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01026~^~321~^57.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~324~^16.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01026~^~417~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~01/01/2003~ -~01026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01026~^~432~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^^~02/01/2009~ -~01026~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01026~^~601~^79.^6^3.^~1~^~A~^^^1^67.^94.^5^69.^88.^~2, 3~^~03/01/2003~ -~01027~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~268~^1332.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01027~^~301~^575.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~304~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~305~^412.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~306~^75.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~307~^710.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01027~^~318~^745.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01027~^~319~^192.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01027~^~320~^197.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01027~^~321~^63.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~324~^18.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~01027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01027~^~417~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01027~^~432~^8.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01027~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01027~^~601~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~268~^1064.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01028~^~301~^782.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~01028~^~304~^23.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~305~^463.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~306~^84.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~307~^619.^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01028~^~318~^481.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01028~^~319~^124.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01028~^~320~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01028~^~321~^41.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~324~^12.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~01028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01028~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01028~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01028~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01028~^~601~^64.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~01029~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~268~^1236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01029~^~301~^697.^35^8.^~1~^~A~^^^2^656.^725.^18^679.^715.^~2, 3~^~06/01/2015~ -~01029~^~304~^27.^35^0.^~1~^~A~^^^2^25.^29.^17^26.^28.^~2, 3~^~05/01/2015~ -~01029~^~305~^548.^35^6.^~1~^~A~^^^2^527.^579.^19^535.^561.^~2, 3~^~06/01/2015~ -~01029~^~306~^188.^35^3.^~1~^~A~^^^2^124.^285.^17^181.^194.^~2, 3~^~06/01/2015~ -~01029~^~307~^666.^35^11.^~1~^~A~^^^2^651.^677.^18^642.^690.^~2, 3~^~06/01/2015~ -~01029~^~318~^829.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01029~^~319~^223.^4^^~1~^~A~^^^2^210.^232.^^^^~2, 3~^~06/01/2015~ -~01029~^~320~^227.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01029~^~321~^51.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~06/01/2015~ -~01029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~324~^15.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01029~^~417~^27.^4^1.^~1~^~A~^^^^24.^30.^^^^^~08/01/2014~ -~01029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01029~^~432~^27.^4^1.^~1~^~A~^^^^24.^30.^^^^^~08/01/2014~ -~01029~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~01029~^~601~^64.^19^0.^~1~^~A~^^^2^63.^65.^8^62.^65.^~2, 3~^~06/01/2015~ -~01030~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01030~^~301~^717.^14^25.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~304~^27.^10^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~305~^468.^11^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~306~^134.^11^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~307~^628.^11^27.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~318~^1012.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01030~^~319~^297.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01030~^~320~^298.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01030~^~321~^13.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01030~^~417~^12.^25^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01030~^~432~^12.^25^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01030~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01030~^~601~^96.^4^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01031~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~268~^1059.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~301~^117.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~304~^10.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~305~^138.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~306~^152.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~307~^334.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~318~^841.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~319~^239.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~ -~01031~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~321~^27.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~417~^14.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01031~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~601~^74.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01032~^~208~^420.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~268~^1757.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~301~^853.^11^56.^~1~^~A~^^^1^348.^1070.^5^707.^998.^~2, 3~^~05/01/2014~ -~01032~^~304~^34.^11^1.^~1~^~A~^^^1^25.^39.^5^31.^37.^~2, 3~^~05/01/2014~ -~01032~^~305~^627.^11^32.^~1~^~A~^^^1^411.^760.^5^542.^711.^~2, 3~^~05/01/2014~ -~01032~^~306~^180.^11^9.^~1~^~A~^^^1^121.^252.^8^158.^201.^~2, 3~^~05/01/2014~ -~01032~^~307~^1804.^11^82.^~1~^~A~^^^1^1440.^2350.^5^1596.^2011.^~2, 3~^~05/01/2014~ -~01032~^~318~^974.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~319~^255.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~320~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~321~^73.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~324~^21.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01032~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01032~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~601~^86.^5^5.^~1~^~A~^^^1^73.^102.^2^63.^109.^~2, 3~^~05/01/2014~ -~01033~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01033~^~268~^1641.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01033~^~301~^1184.^23^29.^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~304~^44.^4^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~305~^694.^19^20.^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~306~^92.^4^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~307~^1175.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01033~^~318~^781.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01033~^~319~^201.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~ -~01033~^~320~^207.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01033~^~321~^66.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~ -~01033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01033~^~324~^19.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~ -~01033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01033~^~417~^7.^20^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01033~^~432~^7.^20^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01033~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01033~^~601~^68.^4^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~268~^1471.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01034~^~301~^650.^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~304~^24.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~305~^360.^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~306~^136.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~307~^534.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~318~^1092.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01034~^~319~^313.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01034~^~320~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01034~^~321~^29.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~324~^21.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01034~^~417~^18.^19^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01034~^~432~^18.^19^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01034~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01034~^~601~^123.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~268~^1471.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01035~^~301~^756.^18^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~304~^28.^13^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~305~^496.^13^16.^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~306~^138.^11^12.^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~307~^727.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01035~^~318~^880.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01035~^~319~^230.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01035~^~320~^236.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01035~^~321~^68.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01035~^~417~^10.^15^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01035~^~432~^10.^15^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01035~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01035~^~601~^69.^4^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01036~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~268~^627.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~301~^206.^11^22.^~1~^~A~^^^1^148.^375.^5^147.^263.^~2, 3~^~01/01/2017~ -~01036~^~304~^20.^11^0.^~1~^~A~^^^1^15.^22.^5^18.^21.^~2, 3~^~01/01/2017~ -~01036~^~305~^154.^11^13.^~1~^~A~^^^1^120.^251.^5^119.^188.^~2, 3~^~01/01/2017~ -~01036~^~306~^219.^11^12.^~1~^~A~^^^1^117.^291.^5^186.^251.^~2, 3~^~01/01/2017~ -~01036~^~307~^110.^11^5.^~1~^~A~^^^1^84.^161.^5^95.^124.^~2, 3~^~01/01/2017~ -~01036~^~318~^445.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01036~^~319~^117.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01036~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01036~^~321~^33.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~324~^10.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01036~^~417~^4.^2^^~1~^~A~^^^1^4.^9.^^^^~1~^~01/01/2017~ -~01036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01036~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~ -~01036~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~601~^49.^7^3.^~1~^~A~^^^1^42.^57.^3^38.^60.^~2, 3~^~01/01/2017~ -~01037~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~268~^578.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01037~^~301~^272.^8^28.^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~304~^15.^8^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~305~^183.^8^18.^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~306~^125.^8^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~307~^99.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01037~^~318~^384.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01037~^~319~^105.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01037~^~320~^107.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01037~^~321~^20.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~324~^6.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01037~^~417~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01037~^~432~^13.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01037~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01037~^~601~^31.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~268~^1618.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01038~^~301~^1064.^6^64.^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~304~^41.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~305~^760.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~306~^86.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~307~^1433.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01038~^~318~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01038~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01038~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01038~^~321~^69.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01038~^~417~^7.^24^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01038~^~432~^7.^24^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01038~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01038~^~601~^104.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01039~^~268~^1544.^0^^~4~^^^^^^^^^^^ -~01039~^~301~^662.^12^34.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~304~^30.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~305~^392.^11^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~306~^91.^3^10.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~307~^1809.^4^157.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~318~^1047.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~319~^290.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01039~^~320~^294.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01039~^~417~^49.^24^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01039~^~432~^49.^24^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01039~^~601~^90.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01040~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~301~^890.^12^9.^~1~^~A~^^^1^842.^938.^8^867.^912.^~2, 3~^~02/01/2015~ -~01040~^~304~^33.^12^0.^~1~^~A~^^^1^32.^35.^9^32.^34.^~2, 3~^~02/01/2015~ -~01040~^~305~^574.^12^4.^~1~^~A~^^^1^553.^594.^9^563.^584.^~2, 3~^~02/01/2015~ -~01040~^~306~^72.^12^2.^~1~^~A~^^^1^57.^96.^7^65.^78.^~2, 3~^~02/01/2015~ -~01040~^~307~^187.^12^10.^~1~^~A~^^^1^144.^248.^6^159.^213.^~2, 3~^~02/01/2015~ -~01040~^~318~^1047.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01040~^~319~^283.^4^20.^~1~^~A~^^^1^226.^318.^1^32.^534.^~2, 3~^~02/01/2015~ -~01040~^~320~^288.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01040~^~321~^61.^4^3.^~1~^~A~^^^1^56.^70.^1^16.^104.^~2, 3~^~02/01/2015~ -~01040~^~322~^1.^4^0.^~1~^~A~^^^1^0.^1.^1^-1.^2.^~1, 2, 3~^~02/01/2015~ -~01040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~01040~^~334~^2.^4^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~02/01/2015~ -~01040~^~337~^1.^4^0.^~1~^~A~^^^1^0.^2.^1^-4.^5.^~1, 2, 3~^~02/01/2015~ -~01040~^~338~^8.^4^1.^~1~^~A~^^^1^6.^12.^1^-12.^28.^~2, 3~^~02/01/2015~ -~01040~^~417~^10.^2^^~1~^~A~^^^1^8.^11.^^^^^~02/01/2015~ -~01040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01040~^~432~^10.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01040~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~601~^93.^6^1.^~1~^~A~^^^1^90.^96.^2^88.^97.^~2, 3~^~02/01/2015~ -~01041~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01041~^~268~^1422.^0^^~4~^^^^^^^^^^^ -~01041~^~301~^700.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~304~^13.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~305~^500.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~306~^65.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~307~^753.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~318~^1045.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~319~^236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01041~^~320~^249.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01041~^~417~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01041~^~432~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01041~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01041~^~601~^102.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~01042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01042~^~268~^1531.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~01042~^~301~^1045.^19^34.^~1~^~A~^^^1^479.^1390.^16^971.^1118.^~2, 3~^~05/01/2011~ -~01042~^~304~^26.^19^0.^~1~^~A~^^^1^23.^28.^12^25.^26.^~2, 3~^~05/01/2011~ -~01042~^~305~^641.^19^14.^~1~^~A~^^^1^336.^767.^16^609.^672.^~2, 3~^~05/01/2011~ -~01042~^~306~^132.^19^3.^~1~^~A~^^^1^99.^212.^16^123.^140.^~2, 3~^~05/01/2011~ -~01042~^~307~^1671.^19^21.^~1~^~A~^^^1^1270.^1890.^15^1626.^1716.^~2, 3~^~05/01/2011~ -~01042~^~318~^1131.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01042~^~319~^313.^3^^~1~^~A~^^^1^278.^331.^^^^~2, 3~^~07/01/2012~ -~01042~^~320~^317.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01042~^~321~^49.^3^^~1~^~A~^^^1^0.^78.^^^^~1, 2, 3~^~07/01/2012~ -~01042~^~322~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~ -~01042~^~324~^301.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~334~^7.^3^^~1~^~A~^^^1^0.^11.^^^^~1, 2, 3~^~07/01/2012~ -~01042~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~ -~01042~^~338~^21.^3^^~1~^~A~^^^1^9.^28.^^^^~2, 3~^~07/01/2012~ -~01042~^~417~^8.^26^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01042~^~432~^8.^26^0.^~1~^^^^^^^^^^^~08/01/2010~ -~01042~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01042~^~601~^100.^3^^~1~^~A~^^^1^92.^103.^^^^~2, 3~^~05/01/2011~ -~01043~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01043~^~268~^1571.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01043~^~301~^614.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~304~^22.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~305~^744.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~307~^915.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01043~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01043~^~319~^231.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~320~^244.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01043~^~321~^150.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~322~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~01043~^~324~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~01043~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~01043~^~338~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~417~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~01043~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01043~^~601~^94.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01044~^~301~^772.^6^32.^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~304~^29.^6^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~305~^762.^7^59.^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~306~^216.^6^14.^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~307~^1370.^6^64.^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~318~^746.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01044~^~319~^192.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~01044~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01044~^~321~^63.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~01044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~324~^18.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01044~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01044~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01044~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01044~^~601~^85.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01045~^~268~^1386.^0^^~4~^^^^^^^^^^^ -~01045~^~301~^497.^5^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~304~^30.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~305~^400.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~306~^363.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~307~^966.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~318~^705.^5^27.^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~417~^5.^21^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01045~^~432~^5.^21^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01045~^~601~^64.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01046~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~268~^1382.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01046~^~301~^682.^10^114.^~1~^~A~^^^1^473.^1450.^9^422.^941.^~2, 3~^~05/01/2011~ -~01046~^~304~^27.^10^1.^~1~^~A~^^^1^24.^33.^9^24.^29.^~2, 3~^~05/01/2011~ -~01046~^~305~^438.^10^46.^~1~^~A~^^^1^349.^745.^9^333.^542.^~2, 3~^~05/01/2011~ -~01046~^~306~^255.^10^14.^~1~^~A~^^^1^208.^353.^9^221.^287.^~2, 3~^~05/01/2011~ -~01046~^~307~^1284.^10^36.^~1~^~A~^^^1^1100.^1490.^9^1201.^1366.^~2, 3~^~05/01/2011~ -~01046~^~318~^761.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01046~^~319~^196.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2003~ -~01046~^~320~^201.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01046~^~321~^65.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2003~ -~01046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~324~^102.^2^^~1~^~A~^^^1^0.^204.^1^^^~1~^~05/01/2011~ -~01046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01046~^~417~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01046~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01046~^~601~^98.^2^^~1~^~A~^^^1^86.^109.^1^^^^~05/01/2011~ -~01047~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01047~^~268~^1352.^0^^~4~^^^^^^^^^^^ -~01047~^~301~^723.^10^31.^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~304~^28.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~305~^526.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~306~^284.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~307~^1552.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~318~^856.^10^58.^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~319~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01047~^~320~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01047~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01047~^~432~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01047~^~601~^82.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~268~^1215.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01048~^~301~^562.^9^14.^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~304~^29.^4^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~305~^875.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2011~ -~01048~^~306~^242.^4^66.^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~307~^1625.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2011~ -~01048~^~318~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01048~^~319~^168.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~01048~^~320~^173.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01048~^~321~^55.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~01048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~324~^16.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01048~^~417~^7.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01048~^~432~^7.^3^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01048~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01048~^~601~^55.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01049~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~268~^548.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01049~^~301~^107.^10^1.^~1~^~A~^^^1^99.^114.^5^103.^111.^~2, 3~^~01/01/2015~ -~01049~^~304~^10.^10^0.^~1~^~A~^^^1^10.^10.^5^9.^10.^~2, 3~^~11/01/1976~ -~01049~^~305~^95.^10^3.^~1~^~A~^^^1^82.^106.^5^86.^103.^~2, 3~^~11/01/1976~ -~01049~^~306~^132.^10^1.^~1~^~A~^^^1^128.^140.^5^129.^135.^~2, 3~^~01/01/2015~ -~01049~^~307~^61.^10^6.^~1~^~A~^^^1^35.^88.^5^45.^76.^~2, 3~^~01/01/2015~ -~01049~^~318~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01049~^~319~^95.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01049~^~320~^97.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01049~^~321~^22.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~324~^2.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01049~^~417~^3.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01049~^~432~^3.^3^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01049~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01049~^~601~^35.^6^0.^~1~^~A~^^^1^33.^36.^2^32.^37.^~2, 3~^~01/01/2015~ -~01050~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01050~^~301~^91.^3^1.^~1~^~A~^^^1^89.^93.^2^85.^96.^~2, 3~^~01/01/2015~ -~01050~^~304~^9.^3^0.^~1~^~A~^^^1^9.^10.^2^7.^11.^~2, 3~^~11/01/1976~ -~01050~^~305~^92.^3^5.^~1~^~A~^^^1^85.^102.^2^69.^114.^~2, 3~^~01/01/2015~ -~01050~^~306~^136.^3^17.^~1~^~A~^^^1^118.^172.^2^59.^213.^~2, 3~^~01/01/2015~ -~01050~^~307~^72.^3^4.^~1~^~A~^^^1^66.^82.^2^50.^93.^~2, 3~^~01/01/2015~ -~01050~^~318~^452.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01050~^~319~^117.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~01050~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01050~^~321~^37.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~324~^44.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01050~^~417~^2.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01050~^~432~^2.^3^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01050~^~601~^59.^3^0.^~1~^~A~^^^1^59.^60.^2^58.^59.^~2, 3~^~01/01/2015~ -~01052~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~268~^1223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01052~^~301~^69.^9^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~304~^7.^6^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~305~^61.^8^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~306~^97.^8^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~307~^34.^9^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~318~^1013.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01052~^~319~^274.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01052~^~320~^279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01052~^~321~^60.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~324~^23.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01052~^~417~^4.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01052~^~432~^4.^3^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01052~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01052~^~601~^111.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01053~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01053~^~268~^1424.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01053~^~301~^66.^9^0.^~1~^~A~^^^1^63.^69.^6^63.^67.^~2, 3~^~01/01/2015~ -~01053~^~304~^7.^9^0.^~1~^~A~^^^1^6.^7.^6^6.^7.^~2, 3~^~11/01/1976~ -~01053~^~305~^58.^9^0.^~1~^~A~^^^1^56.^62.^6^56.^60.^~2, 3~^~01/01/2015~ -~01053~^~306~^95.^9^1.^~1~^~A~^^^1^86.^101.^6^90.^98.^~2, 3~^~01/01/2015~ -~01053~^~307~^27.^9^1.^~1~^~A~^^^1^24.^33.^6^24.^29.^~2, 3~^~01/01/2015~ -~01053~^~318~^1470.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01053~^~319~^405.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01053~^~320~^411.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01053~^~321~^72.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01053~^~324~^63.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01053~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01053~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01053~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01053~^~601~^113.^6^1.^~1~^~A~^^^1^108.^119.^3^107.^118.^~2, 3~^~01/01/2015~ -~01054~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01054~^~301~^101.^3^10.^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~304~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~305~^89.^3^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~306~^147.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~307~^8.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~01054~^~318~^685.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01054~^~319~^184.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01054~^~320~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01054~^~321~^43.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01054~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~324~^16.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01054~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01054~^~417~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01054~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01054~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01054~^~601~^76.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01055~^~301~^104.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~305~^95.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~306~^129.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~307~^89.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~01055~^~318~^372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01055~^~319~^100.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01055~^~320~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01055~^~321~^23.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01055~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01055~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01055~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01055~^~601~^39.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01056~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01056~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~301~^101.^10^0.^~1~^~A~^^^1^97.^108.^5^98.^103.^~2, 3~^~02/01/2015~ -~01056~^~304~^10.^10^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~06/01/2008~ -~01056~^~305~^76.^10^0.^~1~^~A~^^^1^73.^81.^5^73.^78.^~2, 3~^~02/01/2015~ -~01056~^~306~^125.^10^1.^~1~^~A~^^^1^106.^134.^8^120.^129.^~2, 3~^~02/01/2015~ -~01056~^~307~^31.^10^0.^~1~^~A~^^^1^27.^37.^7^29.^33.^~2, 3~^~02/01/2015~ -~01056~^~318~^447.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01056~^~319~^121.^4^11.^~1~^~A~^^^1^98.^171.^2^61.^180.^~2, 3~^~02/01/2015~ -~01056~^~320~^124.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01056~^~321~^25.^4^1.^~1~^~A~^^^1^21.^32.^1^11.^38.^~2, 3~^~02/01/2015~ -~01056~^~322~^0.^4^0.^~1~^~A~^^^1^0.^1.^1^0.^0.^~1, 2, 3~^~06/01/2008~ -~01056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~01056~^~334~^1.^4^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~02/01/2015~ -~01056~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2008~ -~01056~^~338~^4.^4^0.^~1~^~A~^^^1^2.^5.^2^1.^6.^~2, 3~^~02/01/2015~ -~01056~^~417~^6.^2^^~1~^~A~^^^1^4.^7.^^^^~1~^~02/01/2015~ -~01056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01056~^~432~^6.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~601~^59.^6^0.^~1~^~A~^^^1^53.^62.^2^55.^61.^~2, 3~^~02/01/2015~ -~01057~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01057~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01057~^~301~^130.^7^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~304~^19.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~305~^109.^6^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~306~^165.^6^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~307~^54.^6^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01057~^~319~^58.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01057~^~321~^7.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~01057~^~324~^49.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~01057~^~338~^54.^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~417~^1.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~432~^1.^3^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01057~^~601~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~268~^743.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~301~^113.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~305~^87.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~307~^48.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~321~^0.^0^^~4~^~BFFN~^~04034~^^^^^^^^^~01/01/2003~ -~01058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01058~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01058~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01058~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01058~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~636~^15.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01059~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01059~^~268~^264.^0^^~4~^^^^^^^^^^^ -~01059~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~305~^97.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~306~^139.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~307~^57.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~318~^7.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01059~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01059~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01059~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01059~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~636~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01060~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~268~^262.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01060~^~301~^128.^7^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~304~^13.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~305~^97.^6^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~306~^139.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~307~^57.^3^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01060~^~319~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01060~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01060~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01060~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01060~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01060~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~636~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01061~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01061~^~268~^529.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~301~^789.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~304~^115.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~305~^316.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~306~^393.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~307~^1316.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~318~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~319~^55.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~324~^5.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~417~^9.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~431~^0.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~432~^9.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~601~^26.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01064~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~01064~^~268~^388.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~01064~^~301~^87.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~318~^153.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~ -~01064~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~320~^25.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~ -~01064~^~321~^51.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01065~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01065~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~307~^33.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~ -~01065~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~ -~01065~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01067~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~268~^568.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01067~^~301~^9.^8^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~304~^0.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~305~^64.^8^13.^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~306~^191.^6^39.^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~307~^67.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~01067~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01067~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01067~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01067~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01067~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01067~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01067~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~636~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01068~^~268~^571.^0^^~4~^^^^^^^^^^^ -~01068~^~301~^9.^8^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~304~^0.^3^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~305~^64.^8^13.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~306~^191.^6^39.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~307~^79.^8^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~318~^89.^5^32.^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01068~^~320~^4.^5^1.^~1~^^^^^^^^^^^~06/01/2002~ -~01068~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01068~^~432~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01068~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~636~^9.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01069~^~208~^529.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~268~^2215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~301~^2.^11^0.^~1~^~A~^^^1^1.^5.^4^1.^3.^~1, 2, 3~^~02/01/2015~ -~01069~^~304~^1.^12^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~02/01/2015~ -~01069~^~305~^288.^11^11.^~1~^~A~^^^1^225.^345.^4^254.^320.^~2, 3~^~02/01/2015~ -~01069~^~306~^669.^11^31.^~1~^~A~^^^1^519.^826.^4^581.^757.^~2, 3~^~02/01/2015~ -~01069~^~307~^124.^12^8.^~1~^~A~^^^1^91.^188.^5^102.^145.^~2, 3~^~02/01/2015~ -~01069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~01069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01069~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01069~^~432~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~01069~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01069~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~636~^32.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01070~^~208~^577.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~268~^2415.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01070~^~301~^17.^3^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~304~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01070~^~305~^74.^3^34.^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~306~^166.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~307~^122.^4^33.^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01070~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~324~^0.^0^^~4~^~BFFN~^~04513~^^^^^^^^^~02/01/2009~ -~01070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01070~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01070~^~432~^0.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01070~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01070~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~636~^36.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01071~^~208~^194.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2014~ -~01071~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~268~^811.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2014~ -~01071~^~301~^90.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~305~^86.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~306~^151.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01071~^~319~^34.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01071~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~324~^38.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01071~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01071~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01071~^~601~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~636~^0.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~268~^1103.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01072~^~301~^5.^5^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~304~^1.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~305~^18.^4^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~306~^19.^3^13.^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~307~^62.^5^14.^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01072~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01072~^~321~^47.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01072~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01072~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01072~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01072~^~601~^0.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~636~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01073~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~268~^1332.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01073~^~301~^6.^13^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~304~^2.^10^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~305~^8.^13^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~306~^18.^10^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~307~^25.^14^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~318~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01073~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01073~^~321~^86.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01073~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01073~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01073~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01073~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~636~^23.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~268~^872.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01074~^~301~^3.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~304~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~305~^45.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~306~^161.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~307~^102.^3^28.^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~01074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01074~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~01074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01074~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01074~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01074~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~636~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01076~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01076~^~268~^257.^0^^~4~^^^^^^^^^^^ -~01076~^~301~^33.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~304~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~305~^74.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~306~^114.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~307~^78.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~318~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01076~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01076~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01076~^~432~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01076~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~636~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01077~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01077~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~01077~^~301~^113.^16^1.^~1~^~A~^^^1^112.^116.^11^108.^116.^~2, 3~^~11/01/2008~ -~01077~^~304~^10.^42^0.^~1~^~A~^^^9^7.^12.^6^9.^10.^~2, 3~^~11/01/2008~ -~01077~^~305~^84.^42^1.^~1~^~A~^^^9^59.^95.^8^81.^86.^~2, 3~^~11/01/2008~ -~01077~^~306~^132.^41^1.^~1~^~A~^^^9^106.^163.^15^127.^136.^~2, 3~^~11/01/2008~ -~01077~^~307~^43.^42^0.^~1~^~A~^^^9^26.^58.^17^41.^43.^~2, 3~^~11/01/2008~ -~01077~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~01077~^~319~^45.^4^1.^~1~^~A~^^^^^^^^^^~11/01/2008~ -~01077~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01077~^~321~^7.^10^0.^~1~^~A~^^^3^2.^9.^6^5.^8.^~2, 3~^~11/01/2008~ -~01077~^~322~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~324~^51.^24^3.^~1~^~A~^^^4^8.^82.^13^43.^58.^~2, 3~^~01/01/2009~ -~01077~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~417~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~ -~01077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01077~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~ -~01077~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~601~^10.^12^0.^~1~^~A~^^^1^6.^13.^11^9.^11.^~2, 3~^~03/01/2003~ -~01078~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01078~^~268~^268.^0^^~4~^^^^^^^^^^^ -~01078~^~301~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~305~^93.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~306~^151.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~307~^49.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~318~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~319~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01078~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01078~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01078~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01078~^~601~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~636~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01079~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01079~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~301~^120.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01079~^~304~^11.^31^0.^~1~^~A~^^^9^10.^13.^11^11.^11.^~2, 3~^~12/01/2008~ -~01079~^~305~^92.^28^0.^~1~^~A~^^^9^82.^98.^7^90.^92.^~2, 3~^~12/01/2008~ -~01079~^~306~^140.^31^2.^~1~^~A~^^^9^103.^172.^15^135.^144.^~2, 3~^~12/01/2008~ -~01079~^~307~^47.^31^0.^~1~^~A~^^^9^36.^69.^14^44.^48.^~2, 3~^~12/01/2008~ -~01079~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~319~^55.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~01079~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~321~^4.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2008~ -~01079~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01079~^~324~^49.^24^2.^~1~^~A~^^^4^0.^64.^10^42.^54.^~1, 2, 3~^~05/01/2009~ -~01079~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01079~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01079~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01079~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~12/01/2002~ -~01079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01079~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^^~08/01/2010~ -~01079~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~601~^8.^5^0.^~1~^~A~^^^2^8.^9.^3^7.^8.^~2, 3~^~12/01/2002~ -~01079~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01080~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01080~^~268~^213.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01080~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~304~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~305~^100.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~307~^52.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~318~^204.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~319~^55.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01080~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01080~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~ -~01080~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01080~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01080~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~268~^232.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01081~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~01081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~01081~^~321~^3.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~ -~01081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01081~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~01081~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01081~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01082~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01082~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~301~^125.^4^1.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01082~^~304~^11.^22^0.^~1~^~A~^^^1^9.^12.^14^10.^11.^~2, 3~^~01/01/2004~ -~01082~^~305~^95.^21^0.^~1~^~A~^^^1^86.^100.^17^94.^96.^~2, 3~^~01/01/2004~ -~01082~^~306~^150.^11^1.^~1~^~A~^^^1^^^^^^^~01/01/2004~ -~01082~^~307~^44.^23^0.^~1~^~A~^^^1^37.^58.^18^42.^45.^~2, 3~^~01/01/2004~ -~01082~^~318~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~319~^58.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~01082~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~324~^48.^24^2.^~1~^~A~^^^4^11.^67.^17^42.^53.^~2, 3~^~05/01/2009~ -~01082~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^~2, 3~^~12/01/2002~ -~01082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01082~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^^~05/01/2009~ -~01082~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~601~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^4.^5.^~2, 3~^~03/01/2003~ -~01082~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~01083~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01083~^~268~^178.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01083~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~304~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~305~^100.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~307~^52.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~318~^204.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~319~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01083~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01083~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~ -~01083~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01083~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01083~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01084~^~268~^203.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01084~^~301~^142.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~305~^111.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~306~^180.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~318~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~319~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01084~^~320~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01084~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~ -~01084~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01084~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01084~^~601~^4.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01085~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01085~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~301~^122.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01085~^~304~^11.^41^0.^~1~^~A~^^^8^6.^12.^13^10.^10.^~2, 3~^~01/01/2004~ -~01085~^~305~^101.^39^0.^~1~^~A~^^^8^51.^104.^10^99.^101.^~2, 3~^~01/01/2004~ -~01085~^~306~^156.^26^0.^~1~^~A~^^^8^149.^167.^9^154.^157.^~2, 3~^~01/01/2004~ -~01085~^~307~^42.^40^0.^~1~^~A~^^^8^30.^62.^11^40.^42.^~2, 3~^~01/01/2004~ -~01085~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~319~^61.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~01085~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01085~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01085~^~324~^47.^24^2.^~1~^~A~^^^4^5.^74.^11^41.^52.^~2, 3~^~05/01/2009~ -~01085~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01085~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01085~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01085~^~417~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^~2, 3~^~12/01/2002~ -~01085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01085~^~432~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^^~05/01/2009~ -~01085~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~601~^2.^4^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01086~^~268~^154.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01086~^~301~^129.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~305~^104.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~306~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01086~^~319~^64.^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~ -~01086~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01086~^~324~^49.^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~ -~01086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01086~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01086~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01086~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01086~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01087~^~268~^170.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01087~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~318~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~319~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01087~^~320~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01087~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~ -~01087~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01087~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01087~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~268~^169.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01088~^~301~^116.^12^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~304~^11.^9^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~305~^89.^12^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~306~^151.^14^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~307~^148.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01088~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01088~^~319~^13.^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~ -~01088~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01088~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~324~^1.^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~ -~01088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01088~^~417~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01088~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01088~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01088~^~601~^4.^4^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~268~^255.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01089~^~301~^101.^11^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~304~^5.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~305~^86.^9^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~306~^253.^11^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~307~^3.^10^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01089~^~319~^28.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01089~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01089~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01089~^~417~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01089~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01089~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~01089~^~601~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01090~^~268~^2075.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01090~^~301~^912.^18^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~304~^85.^15^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~305~^776.^18^14.^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~306~^1330.^15^41.^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~307~^371.^7^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~318~^934.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01090~^~319~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01090~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01090~^~321~^55.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01090~^~324~^420.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01090~^~417~^37.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01090~^~432~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01090~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01090~^~601~^97.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01091~^~268~^1516.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01091~^~301~^1257.^12^30.^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~304~^110.^9^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~305~^968.^13^25.^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~306~^1794.^2400^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~307~^535.^6^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01091~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~01091~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~01091~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~ -~01091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01091~^~417~^50.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01091~^~432~^50.^0^^~1~^^^^^^^^^^^~11/01/2002~ -~01091~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01091~^~601~^20.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01092~^~268~^1499.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01092~^~301~^1231.^16^25.^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~304~^117.^14^11.^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~305~^985.^17^21.^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~306~^1705.^11^51.^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~307~^549.^7^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~318~^2365.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01092~^~319~^709.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~01092~^~320~^709.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~01092~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01092~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01092~^~324~^440.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~ -~01092~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01092~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01092~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01092~^~417~^50.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01092~^~432~^50.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~01092~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01092~^~601~^18.^8^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01093~^~268~^1480.^0^^~4~^^^^^^^^^^^ -~01093~^~301~^280.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~304~^60.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~305~^1011.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~306~^680.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~307~^2280.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~318~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01093~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01093~^~417~^50.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01093~^~432~^50.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01093~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01094~^~301~^1184.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~304~^110.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~305~^933.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~306~^1592.^340^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~307~^517.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01094~^~319~^48.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01094~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01094~^~321~^9.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~324~^20.^0^^~4~^~BFSN~^~01211~^^^^^^^^^~02/01/2009~ -~01094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01094~^~417~^47.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01094~^~432~^47.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01094~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01094~^~601~^69.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~268~^1342.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01095~^~301~^284.^3^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~304~^26.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~305~^253.^3^17.^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~306~^371.^6^20.^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~307~^127.^6^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01095~^~319~^73.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01095~^~320~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01095~^~321~^14.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~324~^6.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01095~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01095~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01095~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01095~^~601~^34.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01096~^~301~^261.^39^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~304~^24.^6^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~305~^203.^37^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~306~^303.^10^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~307~^106.^10^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01096~^~319~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01096~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01096~^~321~^12.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~324~^79.^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~01096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01096~^~417~^8.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01096~^~432~^8.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01096~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01096~^~601~^29.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01097~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01097~^~301~^290.^10^14.^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~304~^27.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~305~^195.^9^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~306~^332.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~307~^115.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~318~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01097~^~319~^118.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01097~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01097~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01097~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01097~^~324~^79.^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~01097~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01097~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01097~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01097~^~417~^9.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01097~^~432~^9.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01097~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01097~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01102~^~262~^1.^0^^~4~^~BFZN~^~01103~^^^^^^^^^~10/01/2013~ -~01102~^~263~^23.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01102~^~268~^349.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01102~^~301~^112.^8^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~304~^13.^5^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~305~^101.^5^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~306~^167.^5^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~307~^60.^5^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~318~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01102~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01102~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01102~^~321~^7.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01102~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01102~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01102~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01102~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01102~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01102~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01102~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01102~^~601~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01103~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01103~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~01103~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01103~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01103~^~301~^109.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01103~^~304~^14.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~305~^102.^0^^~1~^^^^^^^^^^^~09/01/2005~ -~01103~^~306~^169.^0^^~1~^^^^^^^^^^^~09/01/2005~ -~01103~^~307~^66.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~01103~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01103~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~01103~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~324~^49.^0^^~4~^~BFZN~^~01079~^^^^^^^^^~02/01/2009~ -~01103~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01103~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01103~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01103~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01103~^~601~^8.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~638~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~639~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~641~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01104~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01104~^~262~^1.^5^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~07/01/2015~ -~01104~^~263~^12.^5^1.^~1~^~A~^^^1^11.^13.^3^8.^16.^~2, 3~^~07/01/2015~ -~01104~^~268~^267.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01104~^~301~^129.^13^1.^~1~^~A~^^^1^117.^169.^10^125.^132.^~2, 3~^~07/01/2015~ -~01104~^~304~^13.^13^0.^~1~^~A~^^^1^13.^13.^10^12.^13.^~2, 3~^~11/01/1976~ -~01104~^~305~^96.^13^1.^~1~^~A~^^^1^90.^97.^9^92.^98.^~2, 3~^~07/01/2015~ -~01104~^~306~^172.^13^3.^~1~^~A~^^^1^162.^174.^9^163.^179.^~2, 3~^~07/01/2015~ -~01104~^~307~^65.^13^2.^~1~^~A~^^^1^49.^69.^9^58.^70.^~2, 3~^~07/01/2015~ -~01104~^~318~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01104~^~319~^51.^3^^~1~^~A~^^^1^41.^73.^^^^~2, 3~^~07/01/2015~ -~01104~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01104~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01104~^~324~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01104~^~417~^3.^1^^~8~^^^^^^^^^^^~07/01/2015~ -~01104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01104~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01104~^~601~^5.^8^0.^~1~^~A~^^^1^5.^5.^5^4.^4.^~2, 3~^~07/01/2015~ -~01105~^~208~^77.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~263~^68.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~268~^324.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~301~^114.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~304~^23.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~305~^105.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~306~^197.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~307~^44.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01105~^~319~^51.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01105~^~321~^4.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~324~^45.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~417~^5.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~432~^5.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01105~^~601~^8.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01106~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01106~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01106~^~301~^134.^94^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~304~^14.^63^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~305~^111.^60^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~306~^204.^96^7.^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~307~^50.^68^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~318~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01106~^~319~^56.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01106~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01106~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01106~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01106~^~417~^1.^18^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01106~^~432~^1.^18^^~1~^^^^^^^^^^^~02/01/2009~ -~01106~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01106~^~601~^11.^36^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01107~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01107~^~301~^32.^755^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~304~^3.^303^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~305~^14.^632^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~306~^51.^172^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~307~^17.^342^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01107~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01107~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01107~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01107~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01107~^~417~^5.^7^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01107~^~432~^5.^7^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01107~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01107~^~601~^14.^54^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01108~^~268~^404.^0^^~4~^^^^^^^^^^^ -~01108~^~301~^169.^164^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~304~^31.^110^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~305~^117.^113^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~306~^178.^101^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~307~^52.^101^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~318~^178.^32^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~319~^53.^32^2.^~1~^^^^^^^^^^^~06/01/2002~ -~01108~^~320~^53.^32^2.^~1~^^^^^^^^^^^~06/01/2002~ -~01108~^~417~^6.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01108~^~432~^6.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01108~^~601~^19.^25^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01109~^~268~^451.^0^^~4~^^^^^^^^^^^ -~01109~^~301~^193.^92^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~304~^18.^62^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~305~^158.^92^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~306~^137.^74^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~307~^44.^74^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~318~^147.^11^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~319~^44.^11^0.^~1~^^^^^^^^^^^~06/01/2002~ -~01109~^~320~^44.^11^0.^~1~^^^^^^^^^^^~06/01/2002~ -~01109~^~417~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01109~^~432~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01109~^~601~^27.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01110~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01110~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01110~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01110~^~268~^496.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~01110~^~301~^132.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~304~^16.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~305~^126.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~306~^224.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~307~^111.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01110~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01110~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01110~^~321~^4.^0^^~4~^~BFFN~^~01102~^^^^^^^^^~01/01/2003~ -~01110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01110~^~324~^41.^0^^~4~^~BFFN~^~01102~^^^^^^^^^~07/01/2009~ -~01110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01110~^~417~^5.^7^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01110~^~432~^5.^7^0.^~1~^^^^^^^^^^^~07/01/2009~ -~01110~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01110~^~601~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~268~^468.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~01111~^~301~^146.^10^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~304~^12.^10^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~305~^115.^10^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~306~^183.^10^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~307~^95.^10^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~318~^91.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01111~^~319~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01111~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01111~^~321~^5.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~324~^48.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~07/01/2009~ -~01111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01111~^~417~^7.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01111~^~432~^7.^1^^~1~^^^^^^^^^^^~07/01/2009~ -~01111~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~01111~^~601~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~268~^100.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01112~^~301~^103.^15^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~304~^10.^15^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~305~^78.^14^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~306~^143.^5^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~307~^48.^5^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01112~^~319~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01112~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01112~^~321~^0.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01112~^~417~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01112~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01112~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01112~^~601~^1.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01113~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~268~^1419.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01113~^~301~^2054.^23^105.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~304~^199.^19^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~305~^1349.^20^82.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~306~^2289.^20^97.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~307~^968.^18^85.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~318~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01113~^~319~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01113~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01113~^~321~^1.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01113~^~417~^33.^10^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01113~^~432~^33.^10^4.^~1~^^^^^^^^^^^~01/01/2003~ -~01113~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01113~^~601~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01114~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~268~^112.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01114~^~301~^47.^37^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~304~^8.^7^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~305~^46.^37^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~306~^161.^11^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~307~^54.^9^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01114~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01114~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01114~^~321~^1.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01114~^~417~^1.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01114~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01114~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01114~^~601~^2.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01115~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~268~^1476.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01115~^~301~^796.^66^31.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~304~^176.^41^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~305~^932.^65^39.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~306~^2080.^60^50.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~307~^1079.^62^67.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01115~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~01115~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~01115~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~ -~01115~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01115~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~01115~^~417~^12.^40^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01115~^~432~^12.^40^0.^~1~^^^^^^^^^^^~11/01/2002~ -~01115~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01115~^~601~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~268~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01116~^~301~^121.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~304~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~305~^95.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~306~^155.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~307~^46.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~318~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01116~^~319~^27.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01116~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01116~^~321~^5.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~324~^2.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01116~^~417~^7.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01116~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01116~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01116~^~601~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01117~^~301~^183.^14^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~304~^17.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~305~^144.^16^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~306~^234.^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~307~^70.^9^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~318~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01117~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01117~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01117~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01117~^~417~^11.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01117~^~432~^11.^4^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01117~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01117~^~601~^6.^5^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01118~^~301~^199.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~304~^19.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~305~^157.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~306~^255.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~307~^77.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01118~^~319~^2.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01118~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01118~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01118~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01118~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01118~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01118~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01119~^~301~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~305~^135.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~306~^219.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01119~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01119~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01119~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01119~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01119~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01119~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01119~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01120~^~301~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~305~^109.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~306~^177.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01120~^~319~^11.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01120~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01120~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01120~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01120~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01120~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01120~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~268~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01121~^~301~^152.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~305~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~306~^195.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01121~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01121~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01121~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01121~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01121~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01121~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01121~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01122~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01122~^~301~^169.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~305~^133.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~306~^216.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~307~^65.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~318~^60.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~417~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01122~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~01122~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01122~^~601~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01123~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01123~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01123~^~301~^56.^6^0.^~1~^~A~^^^1^54.^58.^5^54.^57.^~2, 3~^~08/01/2010~ -~01123~^~304~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^~2, 3~^~08/01/2010~ -~01123~^~305~^198.^6^1.^~1~^~A~^^^1^193.^205.^5^193.^203.^~2, 3~^~08/01/2010~ -~01123~^~306~^138.^6^1.^~1~^~A~^^^1^132.^142.^5^134.^142.^~2, 3~^~08/01/2010~ -~01123~^~307~^142.^6^1.^~1~^~A~^^^1^139.^147.^5^139.^145.^~2, 3~^~08/01/2010~ -~01123~^~318~^540.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01123~^~319~^160.^6^6.^~1~^~A~^^^1^139.^187.^5^142.^176.^~2, 3~^~08/01/2010~ -~01123~^~320~^160.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01123~^~321~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~324~^82.^10^32.^~1~^~A~^^^1^39.^368.^9^9.^154.^~2, 3~^~09/01/2010~ -~01123~^~334~^9.^6^0.^~1~^~A~^^^1^7.^12.^5^7.^10.^~2, 3~^~08/01/2010~ -~01123~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~338~^503.^6^20.^~1~^~A~^^^1^431.^575.^5^449.^557.^~2, 3~^~08/01/2010~ -~01123~^~417~^47.^23^4.^~1~^~A~^^^2^^^^^^^~11/01/2002~ -~01123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01123~^~432~^47.^23^4.^~1~^~A~^^^2^^^^^^^~09/01/2010~ -~01123~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01123~^~601~^372.^12^6.^~1~^~A~^^^1^344.^405.^11^356.^386.^~2, 3~^~08/01/2010~ -~01124~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01124~^~268~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01124~^~301~^7.^12^0.^~1~^~A~^^^1^5.^9.^11^5.^7.^~2, 3~^~03/01/2003~ -~01124~^~304~^11.^12^0.^~1~^~A~^^^1^10.^12.^11^10.^11.^~2, 3~^~03/01/2003~ -~01124~^~305~^15.^12^0.^~1~^~A~^^^1^13.^17.^11^13.^15.^~2, 3~^~03/01/2003~ -~01124~^~306~^163.^12^1.^~1~^~A~^^^1^148.^173.^11^158.^166.^~2, 3~^~03/01/2003~ -~01124~^~307~^166.^12^1.^~1~^~A~^^^1^159.^179.^11^162.^170.^~2, 3~^~03/01/2003~ -~01124~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01124~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~324~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~ -~01124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~417~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~03/01/2003~ -~01124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01124~^~432~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^^~12/01/2006~ -~01124~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01124~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/1985~ -~01125~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01125~^~268~^1346.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~301~^129.^12^2.^~1~^~A~^^^1^118.^153.^11^123.^134.^~2, 3~^~03/01/2003~ -~01125~^~304~^5.^12^0.^~1~^~A~^^^1^3.^6.^11^4.^5.^~2, 3~^~03/01/2003~ -~01125~^~305~^390.^12^9.^~1~^~A~^^^1^352.^437.^11^368.^411.^~2, 3~^~03/01/2003~ -~01125~^~306~^109.^12^3.^~1~^~A~^^^1^90.^134.^11^100.^117.^~2, 3~^~03/01/2003~ -~01125~^~307~^48.^12^1.^~1~^~A~^^^1^39.^58.^11^44.^51.^~2, 3~^~03/01/2003~ -~01125~^~318~^1442.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~319~^371.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~320~^381.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~321~^88.^4^12.^~1~^~A~^^^1^70.^124.^3^49.^127.^~2, 3~^~01/01/2003~ -~01125~^~322~^38.^4^4.^~1~^~A~^^^1^28.^51.^3^22.^53.^~2, 3~^~01/01/2003~ -~01125~^~324~^218.^0^^~4~^~O~^^^^^^^^^^~09/01/2010~ -~01125~^~334~^33.^4^2.^~1~^~A~^^^1^25.^38.^3^24.^42.^~2, 3~^~01/01/2003~ -~01125~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~01125~^~338~^1094.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01125~^~417~^146.^7^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01125~^~432~^146.^7^6.^~1~^^^^^^^^^^^~09/01/2010~ -~01125~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~601~^1085.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~01126~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01126~^~268~^1238.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01126~^~301~^134.^15^2.^~1~^~A~^^^1^117.^158.^14^127.^140.^~4~^~04/01/2015~ -~01126~^~304~^11.^3^^~1~^~A~^^^1^10.^12.^^^^~2~^~04/01/2012~ -~01126~^~305~^420.^3^^~1~^~A~^^^1^378.^443.^^^^~2~^~04/01/2012~ -~01126~^~306~^121.^3^^~1~^~A~^^^1^118.^126.^^^^~2~^~04/01/2012~ -~01126~^~307~^67.^15^0.^~1~^~A~^^^1^61.^72.^14^64.^68.^~4~^~04/01/2015~ -~01126~^~318~^1469.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01126~^~319~^419.^15^12.^~1~^~A~^^^1^262.^466.^14^391.^445.^~4~^~04/01/2015~ -~01126~^~320~^422.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01126~^~321~^10.^3^^~1~^~A~^^^1^0.^31.^^^^~1, 2~^~04/01/2012~ -~01126~^~322~^36.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~ -~01126~^~324~^238.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01126~^~334~^32.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~ -~01126~^~337~^0.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~ -~01126~^~338~^904.^3^^~1~^~A~^^^1^646.^1226.^^^^~2~^~04/01/2012~ -~01126~^~417~^151.^3^^~1~^~A~^^^1^140.^169.^^^^~2~^~04/01/2012~ -~01126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01126~^~432~^151.^3^^~1~^~A~^^^1^140.^169.^^^^^~04/01/2012~ -~01126~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01126~^~601~^991.^3^^~1~^~A~^^^1^960.^1030.^^^^~2~^~07/01/2015~ -~01127~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~08/01/1997~ -~01127~^~262~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~263~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~268~^1283.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~301~^124.^3^^~1~^~A~^^^1^122.^126.^^^^~2~^~04/01/2012~ -~01127~^~304~^10.^3^^~1~^~A~^^^1^10.^11.^^^^~2~^~05/01/1996~ -~01127~^~305~^404.^3^^~1~^~A~^^^1^399.^407.^^^^~2~^~04/01/2012~ -~01127~^~306~^105.^3^^~1~^~A~^^^1^99.^109.^^^^~2~^~04/01/2012~ -~01127~^~307~^70.^3^^~1~^~A~^^^1^65.^74.^^^^~2~^~04/01/2012~ -~01127~^~318~^1103.^0^^~4~^~NC~^~01160~^^^^^^^^^~08/01/2012~ -~01127~^~319~^313.^0^^~4~^~BFZN~^~01160~^^^^^^^^^~08/01/2012~ -~01127~^~320~^316.^0^^~4~^~NC~^~01160~^^^^^^^^^~08/01/2012~ -~01127~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01127~^~322~^38.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~324~^123.^3^^~1~^~A~^^^1^84.^182.^^^^~2~^~04/01/2012~ -~01127~^~334~^33.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~337~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~338~^967.^3^^~1~^~A~^^^1^841.^1124.^^^^~2~^~04/01/2012~ -~01127~^~417~^174.^3^^~1~^~A~^^^1^163.^189.^^^^~2~^~04/01/2012~ -~01127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01127~^~432~^174.^3^^~1~^~A~^^^1^163.^189.^^^^^~04/01/2012~ -~01127~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~601~^917.^3^^~1~^~A~^^^1^876.^949.^^^^~2~^~04/01/2012~ -~01128~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01128~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01128~^~301~^62.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~304~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~305~^215.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~306~^152.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~307~^207.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~318~^787.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~319~^216.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~320~^219.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~321~^35.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~324~^88.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01128~^~334~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~338~^543.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~417~^51.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01128~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~432~^51.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01128~^~601~^401.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~636~^8.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01129~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01129~^~268~^649.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01129~^~301~^50.^14^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~304~^10.^14^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~305~^172.^14^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~306~^126.^14^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~307~^124.^14^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~318~^520.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01129~^~319~^148.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01129~^~320~^149.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01129~^~321~^11.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~324~^87.^0^^~4~^~O~^^^^^^^^^^~09/01/2010~ -~01129~^~334~^10.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~338~^353.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~417~^44.^14^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01129~^~432~^44.^14^2.^~1~^^^^^^^^^^^~09/01/2010~ -~01129~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01129~^~601~^373.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~01130~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01130~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~268~^643.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01130~^~301~^48.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~305~^167.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~306~^117.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~307~^155.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~318~^617.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~319~^169.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~320~^172.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~321~^28.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~324~^69.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01130~^~334~^8.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~338~^423.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~417~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01130~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~432~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01130~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01130~^~601~^313.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~636~^10.^0^^~1~^^^^^^^^^^^~09/01/2010~ -~01131~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01131~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01131~^~301~^56.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~304~^12.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~305~^197.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~306~^138.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~307~^297.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~318~^538.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~319~^159.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~320~^160.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~324~^82.^0^^~4~^~RK~^^^^^^^^^^~05/01/2011~ -~01131~^~334~^9.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~338~^501.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~417~^35.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~431~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~432~^35.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01131~^~601~^370.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~636~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01132~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01132~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01132~^~301~^66.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~305~^165.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~306~^132.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~307~^145.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~318~^578.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~319~^159.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~320~^161.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~321~^26.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~324~^72.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01132~^~334~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~338~^372.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~417~^36.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01132~^~432~^36.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01132~^~601~^277.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~636~^10.^0^^~1~^^^^^^^^^^^~09/01/2010~ -~01133~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~01133~^~268~^2476.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01133~^~301~^244.^15^8.^~1~^~A~^^^1^186.^295.^14^225.^263.^~4~^~04/01/2015~ -~01133~^~304~^34.^0^^~4~^~BFSN~^~01171~^^^^^^^^^~08/01/2012~ -~01133~^~305~^629.^3^^~1~^~A~^^^1^609.^666.^^^^~2~^~04/01/2012~ -~01133~^~306~^540.^3^^~1~^~A~^^^1^522.^571.^^^^~2~^~04/01/2012~ -~01133~^~307~^476.^15^11.^~1~^~A~^^^1^397.^547.^14^450.^501.^~4~^~04/01/2015~ -~01133~^~318~^1029.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01133~^~319~^300.^15^21.^~1~^~A~^^^1^223.^448.^14^254.^344.^~4~^~04/01/2015~ -~01133~^~320~^301.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01133~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01133~^~322~^0.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~02/01/2009~ -~01133~^~324~^331.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01133~^~334~^36.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~03/01/2007~ -~01133~^~337~^0.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~02/01/2009~ -~01133~^~338~^835.^3^^~1~^~A~^^^1^763.^923.^^^^~2~^~04/01/2012~ -~01133~^~417~^119.^3^^~1~^~A~^^^1^88.^165.^^^^~2~^~04/01/2012~ -~01133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01133~^~432~^119.^3^^~1~^~A~^^^1^88.^165.^^^^^~04/01/2012~ -~01133~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01133~^~601~^1630.^3^^~1~^~A~^^^1^1570.^1720.^^^^~2~^~07/01/2015~ -~01134~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01134~^~268~^2574.^0^^~4~^^^^^^^^^^^ -~01134~^~301~^222.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~304~^49.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~305~^715.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~306~^515.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~307~^548.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~318~^2050.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~319~^616.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01134~^~320~^616.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~01134~^~417~^193.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01134~^~432~^193.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01134~^~601~^2017.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01135~^~268~^1469.^0^^~4~^^^^^^^^^^^ -~01135~^~301~^83.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~304~^67.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~305~^83.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~306~^1042.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~307~^1156.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01135~^~321~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~322~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01135~^~334~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~337~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~338~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~417~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01135~^~432~^89.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01135~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01135~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~268~^1573.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01136~^~301~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~304~^72.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~305~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~306~^1116.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~307~^1238.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~01136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01136~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~01136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~417~^96.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01136~^~432~^96.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~01136~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~01136~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01137~^~208~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01137~^~268~^2800.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01137~^~301~^289.^15^4.^~1~^~A~^^^1^268.^316.^14^280.^298.^~4~^~04/01/2015~ -~01137~^~304~^26.^3^^~1~^~A~^^^1^24.^27.^^^^~2~^~04/01/2012~ -~01137~^~305~^1040.^3^^~1~^~A~^^^1^1020.^1050.^^^^~2~^~04/01/2012~ -~01137~^~306~^264.^3^^~1~^~A~^^^1^256.^272.^^^^~2~^~04/01/2012~ -~01137~^~307~^149.^15^4.^~1~^~A~^^^1^116.^172.^14^138.^158.^~4~^~04/01/2015~ -~01137~^~318~^1715.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01137~^~319~^477.^15^26.^~1~^~A~^^^1^343.^696.^14^419.^534.^~4~^~04/01/2015~ -~01137~^~320~^483.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01137~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01137~^~322~^79.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~ -~01137~^~324~^417.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01137~^~334~^70.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~ -~01137~^~337~^0.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~ -~01137~^~338~^1133.^3^^~1~^~A~^^^1^883.^1458.^^^^~2~^~04/01/2012~ -~01137~^~417~^209.^3^^~1~^~A~^^^1^162.^237.^^^^~2~^~04/01/2012~ -~01137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01137~^~432~^209.^3^^~1~^~A~^^^1^162.^237.^^^^^~04/01/2012~ -~01137~^~435~^209.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01137~^~601~^2307.^3^^~1~^~A~^^^1^2280.^2340.^^^^~2~^~07/01/2015~ -~01138~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01138~^~268~^776.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01138~^~301~^64.^6^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~304~^17.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~305~^220.^7^12.^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~306~^222.^3^79.^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~307~^146.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~318~^674.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01138~^~319~^192.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~320~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01138~^~321~^14.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~324~^69.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01138~^~334~^12.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~338~^459.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~417~^80.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01138~^~432~^80.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01138~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01138~^~601~^884.^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01139~^~268~^775.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01139~^~301~^60.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~304~^16.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~305~^208.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~306~^210.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~307~^138.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~318~^650.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01139~^~319~^185.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~320~^187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01139~^~321~^13.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~324~^66.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01139~^~334~^12.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~338~^442.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~417~^76.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01139~^~432~^76.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01139~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01139~^~601~^852.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01140~^~268~^663.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01140~^~301~^64.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~304~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~305~^226.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~306~^132.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~307~^141.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~318~^543.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01140~^~319~^155.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~320~^156.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01140~^~321~^11.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~324~^55.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01140~^~334~^10.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~338~^369.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~417~^66.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01140~^~432~^66.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01140~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01140~^~601~^844.^12^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01141~^~268~^716.^0^^~4~^^^^^^^^^^^ -~01141~^~301~^99.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~304~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~305~^170.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~306~^142.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~307~^151.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~318~^554.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~319~^166.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~01141~^~320~^166.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~01141~^~417~^71.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01141~^~432~^71.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~01141~^~601~^933.^10^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~268~^1856.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~301~^326.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~304~^65.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~305~^478.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~306~^744.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~307~^800.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~318~^1230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~319~^369.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~320~^369.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01144~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01144~^~417~^125.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01144~^~432~^125.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01144~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01144~^~601~^572.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01145~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01145~^~301~^24.^17^0.^~1~^~A~^^^7^19.^30.^4^22.^26.^~2, 3~^~01/01/2003~ -~01145~^~304~^2.^18^0.^~1~^~A~^^^7^1.^2.^4^1.^1.^~2, 3~^~01/01/2003~ -~01145~^~305~^24.^17^0.^~1~^~A~^^^7^19.^27.^7^22.^24.^~2, 3~^~03/01/2003~ -~01145~^~306~^24.^18^0.^~1~^~A~^^^7^17.^28.^2^20.^26.^~2, 3~^~03/01/2003~ -~01145~^~307~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~318~^2499.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01145~^~319~^671.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01145~^~320~^684.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01145~^~321~^158.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01145~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01145~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01145~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01145~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01145~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01145~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01145~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01145~^~601~^215.^3^1.^~1~^~A~^^^1^213.^217.^2^209.^220.^~2, 3~^~03/01/2003~ -~01145~^~638~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~639~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~641~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~01/01/2003~ -~01146~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01146~^~262~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~263~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~268~^1737.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01146~^~301~^1253.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~304~^51.^4^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~305~^735.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~306~^97.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~307~^1696.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~318~^865.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01146~^~319~^223.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~320~^229.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01146~^~321~^73.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~322~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~324~^21.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~334~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~337~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~338~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~417~^8.^20^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01146~^~432~^8.^20^0.^~1~^^^^^^^^^^^~02/01/2009~ -~01146~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01146~^~601~^72.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01151~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~01151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01151~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~01151~^~301~^122.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01151~^~304~^11.^41^0.^~1~^~A~^^^8^6.^12.^13^10.^10.^~2, 3~^~12/01/2008~ -~01151~^~305~^101.^39^0.^~1~^~A~^^^8^51.^104.^10^99.^101.^~2, 3~^~12/01/2008~ -~01151~^~306~^156.^26^0.^~1~^~A~^^^8^149.^167.^9^154.^157.^~2, 3~^~12/01/2008~ -~01151~^~307~^42.^40^0.^~1~^~A~^^^8^30.^62.^11^40.^42.^~2, 3~^~12/01/2008~ -~01151~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01151~^~319~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01151~^~321~^7.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~322~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~324~^0.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01151~^~334~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~337~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~338~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01151~^~417~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^~2, 3~^~12/01/2008~ -~01151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01151~^~432~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^^~01/01/2009~ -~01151~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01151~^~601~^2.^0^^~1~^^^^^^^^^^^~12/01/2008~ -~01152~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01152~^~268~^232.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01152~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~318~^75.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01152~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~01152~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01152~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01152~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01153~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01153~^~301~^261.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~304~^24.^6^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~305~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~306~^303.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~307~^106.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~318~^397.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~417~^8.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01153~^~432~^8.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~01153~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~01153~^~601~^29.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~268~^1516.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01154~^~301~^1257.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~304~^110.^9^3.^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~305~^968.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~306~^1794.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~307~^535.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~318~^2179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01154~^~319~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01154~^~320~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01154~^~321~^1.^0^^~4~^~BFZN~^~01091~^^^^^^^^^~01/01/2003~ -~01154~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~324~^440.^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01154~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~417~^50.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01154~^~432~^50.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01154~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01154~^~601~^20.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~208~^358.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~268~^1498.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01155~^~301~^1231.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~304~^117.^14^11.^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~305~^985.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~306~^1705.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~307~^549.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01155~^~319~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01155~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01155~^~321~^1.^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01155~^~417~^50.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01155~^~432~^50.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01155~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~01155~^~601~^18.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01156~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~268~^1891.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01156~^~301~^895.^7^117.^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~304~^54.^7^4.^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~305~^729.^6^5.^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~306~^48.^6^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~307~^423.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01156~^~318~^1745.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01156~^~319~^478.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01156~^~320~^486.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01156~^~321~^91.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~324~^26.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01156~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01156~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01156~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01156~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~268~^1523.^0^^~4~^^^^^^^^^^^~08/01/2012~ -~01157~^~301~^298.^29^54.^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~304~^29.^24^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~305~^375.^16^27.^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~306~^158.^11^13.^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~307~^415.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01157~^~318~^1464.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01157~^~319~^401.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01157~^~320~^407.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01157~^~321~^77.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01157~^~417~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01157~^~432~^2.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01157~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01157~^~601~^79.^7^2.^~1~^^^^^^^^^^^~11/01/1976~ -~01158~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01158~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01158~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~318~^49.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01158~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01158~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01158~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01159~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~268~^1106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01159~^~301~^140.^69^15.^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~304~^16.^69^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~305~^256.^65^10.^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~306~^26.^65^3.^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~307~^459.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01159~^~318~^1033.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01159~^~319~^283.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01159~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01159~^~321~^54.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~324~^15.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01159~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01159~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01159~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01159~^~601~^46.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01160~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~262~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~263~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~301~^113.^3^^~1~^~A~^^^1^101.^122.^^^^~2~^~04/01/2012~ -~01160~^~304~^7.^3^^~1~^~A~^^^1^5.^8.^^^^~2~^~04/01/2012~ -~01160~^~305~^414.^3^^~1~^~A~^^^1^369.^445.^^^^~2~^~04/01/2012~ -~01160~^~306~^111.^3^^~1~^~A~^^^1^103.^116.^^^^~2~^~04/01/2012~ -~01160~^~307~^3487.^3^^~1~^~A~^^^1^3080.^3760.^^^^~2~^~04/01/2012~ -~01160~^~318~^1043.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01160~^~319~^313.^3^^~1~^~A~^^^1^303.^324.^^^^~2~^~04/01/2012~ -~01160~^~320~^313.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01160~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01160~^~322~^38.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~324~^126.^3^^~1~^~A~^^^1^107.^136.^^^^~2~^~04/01/2012~ -~01160~^~334~^33.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~337~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~338~^712.^3^^~1~^~A~^^^1^606.^789.^^^^~2~^~04/01/2012~ -~01160~^~417~^112.^3^^~1~^~A~^^^1^65.^137.^^^^~2~^~04/01/2012~ -~01160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01160~^~432~^112.^3^^~1~^~A~^^^1^65.^137.^^^^^~04/01/2012~ -~01160~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~601~^912.^3^^~1~^~A~^^^1^842.^983.^^^^~2~^~04/01/2012~ -~01161~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~268~^1038.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01161~^~301~^610.^4^182.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~304~^41.^4^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~305~^583.^4^155.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~306~^455.^4^233.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~307~^685.^4^272.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~318~^1457.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01161~^~319~^437.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01161~^~320~^437.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01161~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01161~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01161~^~417~^11.^4^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01161~^~432~^11.^4^6.^~1~^^^^^^^^^^^~03/01/2007~ -~01161~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01161~^~601~^0.^4^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01162~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01162~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01162~^~301~^89.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~318~^199.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01162~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01162~^~321~^80.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01164~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01164~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~268~^824.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01164~^~301~^311.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~304~^19.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~305~^229.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~306~^142.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~307~^493.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~318~^310.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01164~^~319~^80.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01164~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01164~^~321~^26.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01164~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~324~^41.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~01164~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~01164~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1993~ -~01164~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01164~^~601~^38.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~636~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~268~^1561.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01165~^~301~^680.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~304~^28.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~305~^444.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~306~^87.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~307~^1131.^4^13.^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01165~^~319~^64.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01165~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01165~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01165~^~417~^1.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01165~^~432~^1.^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01165~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01165~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~268~^1490.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01166~^~301~^661.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~304~^26.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~305~^443.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~306~^86.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~307~^607.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01166~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01166~^~319~^55.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01166~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01166~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~324~^21.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01166~^~417~^8.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01166~^~432~^8.^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01166~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01166~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~268~^1567.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01167~^~301~^651.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~304~^23.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~305~^442.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~306~^52.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~307~^617.^4^6.^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01167~^~319~^56.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01167~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01167~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01167~^~417~^2.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01167~^~432~^2.^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01167~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01167~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01168~^~301~^415.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~305~^484.^35^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~306~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~307~^873.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01168~^~318~^207.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01168~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01168~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01168~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01168~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01168~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01168~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01168~^~601~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~268~^1666.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01169~^~301~^703.^49^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~304~^27.^37^0.^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~305~^484.^35^9.^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~306~^112.^76^8.^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~307~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~318~^996.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01169~^~319~^257.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01169~^~320~^264.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01169~^~321~^84.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01169~^~417~^18.^13^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01169~^~432~^18.^13^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01169~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01169~^~601~^100.^13^1.^~1~^^^^^^^^^^^~11/01/1976~ -~01171~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~262~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~263~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~268~^616.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~301~^62.^15^1.^~1~^~A~^^^1^55.^72.^14^59.^64.^~4~^~04/01/2015~ -~01171~^~304~^9.^3^^~1~^~A~^^^1^4.^11.^^^^~2~^~04/01/2012~ -~01171~^~305~^193.^3^^~1~^~A~^^^1^189.^199.^^^^~2~^~04/01/2012~ -~01171~^~306~^135.^3^^~1~^~A~^^^1^133.^137.^^^^~2~^~04/01/2012~ -~01171~^~307~^128.^15^1.^~1~^~A~^^^1^114.^136.^14^124.^132.^~4~^~04/01/2015~ -~01171~^~318~^570.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01171~^~319~^171.^15^5.^~1~^~A~^^^1^126.^213.^14^158.^183.^~4~^~04/01/2015~ -~01171~^~320~^171.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01171~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01171~^~322~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~324~^105.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01171~^~334~^9.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~337~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~338~^471.^3^^~1~^~A~^^^1^367.^662.^^^^~2~^~04/01/2012~ -~01171~^~417~^87.^3^^~1~^~A~^^^1^72.^110.^^^^~2~^~04/01/2012~ -~01171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01171~^~432~^87.^3^^~1~^~A~^^^1^72.^110.^^^^^~04/01/2012~ -~01171~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01171~^~601~^372.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~07/01/2015~ -~01172~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~01172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~01172~^~268~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~301~^8.^15^0.^~1~^~A~^^^1^6.^12.^14^7.^9.^~4~^~04/01/2015~ -~01172~^~304~^11.^3^^~1~^~A~^^^1^10.^12.^^^^~2~^~04/01/2012~ -~01172~^~305~^13.^3^^~1~^~A~^^^1^12.^14.^^^^~2~^~05/01/1996~ -~01172~^~306~^169.^3^^~1~^~A~^^^1^149.^192.^^^^~2~^~04/01/2012~ -~01172~^~307~^169.^15^1.^~1~^~A~^^^1^154.^177.^14^165.^173.^~4~^~04/01/2012~ -~01172~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01172~^~319~^0.^15^0.^~1~^~A~^^^1^0.^0.^14^0.^0.^~1, 4~^~04/01/2012~ -~01172~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01172~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01172~^~322~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~ -~01172~^~324~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~ -~01172~^~334~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~ -~01172~^~337~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~ -~01172~^~338~^20.^3^^~1~^~A~^^^1^20.^20.^^^^~1, 2~^~04/01/2012~ -~01172~^~417~^10.^3^^~1~^~A~^^^1^6.^15.^^^^~2~^~04/01/2012~ -~01172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01172~^~432~^10.^3^^~1~^~A~^^^1^6.^15.^^^^^~04/01/2012~ -~01172~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~ -~01173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~268~^1598.^0^^~4~^^^^^^^^^^^ -~01173~^~301~^62.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~304~^88.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~305~^111.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~306~^1125.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~307~^1280.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~01173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~01173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~324~^0.^0^^~4~^~BFZN~^~01136~^^^^^^^^^~08/01/2012~ -~01173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01173~^~417~^18.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01173~^~432~^18.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01173~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01173~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01174~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~301~^120.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01174~^~304~^11.^31^0.^~1~^~A~^^^9^10.^13.^11^11.^11.^~2, 3~^~12/01/2008~ -~01174~^~305~^92.^28^0.^~1~^~A~^^^9^82.^98.^7^90.^92.^~2, 3~^~12/01/2008~ -~01174~^~306~^140.^31^2.^~1~^~A~^^^9^103.^172.^15^135.^144.^~2, 3~^~12/01/2008~ -~01174~^~307~^47.^31^0.^~1~^~A~^^^9^36.^69.^14^44.^48.^~2, 3~^~12/01/2008~ -~01174~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~319~^27.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~ -~01174~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~321~^7.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~ -~01174~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~ -~01174~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~12/01/2008~ -~01174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^^~08/01/2010~ -~01174~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~601~^8.^5^0.^~1~^~A~^^^2^8.^9.^3^7.^8.^~2, 3~^~12/01/2008~ -~01174~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~301~^125.^4^1.^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01175~^~304~^11.^22^0.^~1~^~A~^^^1^9.^12.^14^10.^11.^~2, 3~^~12/01/2008~ -~01175~^~305~^95.^21^0.^~1~^~A~^^^1^86.^100.^17^94.^96.^~2, 3~^~12/01/2008~ -~01175~^~306~^150.^11^1.^~1~^~A~^^^1^^^^^^^~12/01/2008~ -~01175~^~307~^44.^23^0.^~1~^~A~^^^1^37.^58.^18^42.^45.^~2, 3~^~12/01/2008~ -~01175~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~319~^13.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~ -~01175~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~321~^2.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~ -~01175~^~322~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~ -~01175~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~337~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~ -~01175~^~338~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~ -~01175~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^~2, 3~^~12/01/2008~ -~01175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^^~01/01/2009~ -~01175~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01175~^~601~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^4.^5.^~2, 3~^~12/01/2008~ -~01175~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01178~^~208~^181.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~268~^757.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~301~^141.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~304~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~305~^85.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~306~^211.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~307~^70.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~318~^436.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01178~^~319~^117.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01178~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01178~^~321~^27.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~324~^10.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01178~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01178~^~601~^35.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~208~^136.^0^^~4~^^^^^^^^^^^~06/01/2013~ -~01179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~268~^569.^0^^~4~^^^^^^^^^^^~06/01/2013~ -~01179~^~301~^141.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~305~^71.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~306~^212.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~307~^83.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01179~^~318~^328.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01179~^~319~^88.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01179~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01179~^~321~^21.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~324~^8.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01179~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01179~^~601~^35.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01180~^~208~^74.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~268~^310.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~301~^125.^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~304~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~305~^95.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~306~^129.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~307~^141.^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~318~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01180~^~319~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01180~^~320~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01180~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~417~^11.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01180~^~432~^11.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~01180~^~601~^9.^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01184~^~208~^43.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~268~^180.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~301~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~304~^13.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~306~^177.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01184~^~319~^2.^0^^~4~^~BFFN~^~01119~^^^^^^^^^~02/01/2009~ -~01184~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01184~^~321~^0.^0^^~4~^~BFFN~^~01119~^^^^^^^^^~02/01/2009~ -~01184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01184~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01184~^~601~^2.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01185~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~01185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~268~^1548.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01185~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~304~^40.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~305~^700.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~306~^600.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~307~^1150.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~01185~^~319~^39.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01185~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~01185~^~321~^13.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~417~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01185~^~432~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~01185~^~601~^20.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01186~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01186~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01186~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~301~^351.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~304~^22.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~305~^523.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~306~^278.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~307~^702.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~319~^10.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~ -~01186~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01186~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01186~^~417~^35.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01186~^~432~^35.^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~601~^12.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01187~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~01187~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01187~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01187~^~268~^469.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~01187~^~301~^88.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~305~^166.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~307~^135.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~319~^0.^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~ -~01187~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01187~^~321~^0.^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~ -~01187~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01187~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01187~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01187~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01187~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01187~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01187~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01187~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01187~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01188~^~208~^276.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~268~^1155.^0^^~9~^~MC~^^^^^^^^^^ -~01188~^~301~^359.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~305~^806.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~306~^240.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~307~^1638.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~318~^649.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~601~^75.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~268~^900.^0^^~9~^~MC~^^^^^^^^^^ -~01189~^~301~^418.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~305~^943.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~306~^297.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~307~^1705.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~318~^628.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~601~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~208~^148.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~268~^619.^0^^~9~^~MC~^^^^^^^^^^ -~01190~^~301~^712.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~305~^923.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~306~^236.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~307~^1298.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~318~^2166.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~601~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~208~^303.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~268~^1268.^0^^~9~^~MC~^^^^^^^^^^ -~01191~^~301~^466.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~305~^863.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~306~^335.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~307~^1499.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~318~^1107.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~601~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~208~^222.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~268~^929.^0^^~9~^~MC~^^^^^^^^^^ -~01192~^~301~^574.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~305~^1024.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~306~^345.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~307~^1586.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~318~^982.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~601~^42.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~208~^152.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~268~^636.^0^^~9~^~MC~^^^^^^^^^^ -~01193~^~301~^161.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~305~^110.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~307~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~318~^1053.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~601~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~208~^91.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~268~^381.^0^^~9~^~MC~^^^^^^^^^^ -~01194~^~301~^141.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~305~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~306~^219.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~318~^679.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~601~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01199~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~268~^247.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~301~^96.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~304~^16.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~305~^151.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~306~^206.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~307~^100.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~01199~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~319~^12.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~321~^3.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~417~^4.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~01199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~432~^4.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~601~^5.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01200~^~208~^149.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~268~^623.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~01200~^~301~^108.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~304~^8.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~305~^68.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~306~^108.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~318~^175.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~319~^48.^0^^~4~^~BNA~^~01077~^^^^^^^^^~06/01/2003~ -~01200~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~01200~^~321~^9.^0^^~4~^~BNA~^~01077~^^^^^^^^^~06/01/2003~ -~01200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~417~^17.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~01200~^~431~^0.^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~432~^17.^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01200~^~601~^16.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01202~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~01202~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~301~^194.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~304~^14.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~305~^76.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~306~^123.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~307~^66.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~01202~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~01202~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~01202~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~01202~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~01202~^~601~^8.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~638~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~639~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~641~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01203~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~301~^152.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~304~^16.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~305~^133.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~306~^194.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~307~^58.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~319~^131.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01203~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~321~^4.^0^^~4~^~BFNN~^~43261~^^^^^^^^^~03/01/2005~ -~01203~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01203~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01203~^~417~^10.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01203~^~431~^0.^0^^~4~^~BFNN~^~43261~^^^^^^^^^~02/01/2009~ -~01203~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~01203~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01204~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~268~^1111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~301~^1109.^6^15.^~1~^~A~^^^1^1068.^1160.^5^1070.^1148.^~2, 3~^~05/01/2007~ -~01204~^~304~^38.^6^1.^~1~^~A~^^^1^33.^42.^5^34.^41.^~2, 3~^~05/01/2007~ -~01204~^~305~^729.^6^10.^~1~^~A~^^^1^704.^767.^5^703.^754.^~2, 3~^~05/01/2007~ -~01204~^~306~^125.^6^17.^~1~^~A~^^^1^68.^160.^5^79.^170.^~2, 3~^~05/01/2007~ -~01204~^~307~^1529.^6^51.^~1~^~A~^^^1^1367.^1713.^5^1395.^1662.^~2, 3~^~05/01/2007~ -~01204~^~318~^605.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~319~^156.^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~ -~01204~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~321~^51.^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~ -~01204~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~324~^15.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01204~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~417~^10.^2^^~1~^~A~^^^1^10.^11.^1^^^^~05/01/2007~ -~01204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~432~^10.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01204~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~601~^88.^3^6.^~1~^~A~^^^1^79.^99.^2^61.^113.^~2, 3~^~05/01/2007~ -~01205~^~208~^251.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~263~^100.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~268~^1049.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~301~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~304~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~305~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~306~^96.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~307~^67.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~01205~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01205~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01205~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01205~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~636~^20.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~208~^482.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~01206~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~263~^92.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~268~^2018.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~01206~^~301~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~304~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~305~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~306~^90.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~307~^123.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01206~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01206~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01206~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~636~^18.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01208~^~208~^274.^0^^~8~^^^^^^^^^^^~06/01/2013~ -~01208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~268~^1146.^0^^~8~^^^^^^^^^^^~06/01/2013~ -~01208~^~301~^756.^18^17.^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~304~^28.^13^0.^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~305~^496.^13^16.^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~306~^138.^11^12.^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~307~^615.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01208~^~318~^532.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01208~^~319~^137.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01208~^~321~^45.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~324~^13.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01208~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~417~^10.^15^1.^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~432~^10.^15^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01208~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~01208~^~601~^55.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01209~^~208~^282.^2^^~8~^~LC~^^^1^282.^282.^1^^^^~04/01/2007~ -~01209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~268~^1181.^2^^~8~^~LC~^^^^^^^^^^~02/01/2017~ -~01209~^~301~^1146.^2^^~8~^~LC~^^^1^882.^1411.^1^^^^~04/01/2007~ -~01209~^~304~^35.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~305~^583.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~306~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~307~^776.^2^^~8~^~LC~^^^1^705.^847.^1^^^^~04/01/2007~ -~01209~^~318~^586.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01209~^~319~^151.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~320~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01209~^~321~^50.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~324~^14.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~417~^20.^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~432~^20.^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01209~^~601~^62.^2^^~8~^~LC~^^^1^53.^71.^1^^^^~04/01/2007~ -~01211~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01211~^~268~^256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01211~^~301~^113.^16^1.^~1~^~A~^^^1^112.^116.^11^108.^116.^~2, 3~^~12/01/2008~ -~01211~^~304~^10.^42^0.^~1~^~A~^^^9^7.^12.^6^9.^10.^~2, 3~^~12/01/2008~ -~01211~^~305~^84.^42^1.^~1~^~A~^^^9^59.^95.^8^81.^86.^~2, 3~^~12/01/2008~ -~01211~^~306~^132.^41^1.^~1~^~A~^^^9^106.^163.^15^127.^136.^~2, 3~^~12/01/2008~ -~01211~^~307~^43.^42^0.^~1~^~A~^^^9^26.^58.^17^41.^43.^~2, 3~^~12/01/2008~ -~01211~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01211~^~319~^45.^4^1.^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01211~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01211~^~321~^7.^10^0.^~1~^~A~^^^3^2.^9.^6^5.^8.^~2, 3~^~12/01/2008~ -~01211~^~322~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~324~^2.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01211~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~417~^5.^8^0.^~1~^^^^^^^^^^^~12/01/2008~ -~01211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01211~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~ -~01211~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01211~^~601~^10.^12^0.^~1~^~A~^^^1^6.^13.^11^9.^11.^~2, 3~^~12/01/2008~ -~01212~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~268~^2075.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~301~^912.^18^17.^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~304~^85.^15^1.^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~305~^776.^18^14.^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~306~^1330.^15^41.^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~307~^371.^7^15.^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~318~^934.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~319~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~321~^55.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01212~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01212~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~417~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~432~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01212~^~601~^97.^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01215~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01215~^~301~^529.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~304~^33.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~305~^829.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~306~^330.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~307~^1201.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01215~^~318~^945.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01215~^~319~^243.^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~ -~01215~^~320~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01215~^~321~^80.^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~ -~01215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~324~^212.^0^^~4~^~O~^^^^^^^^^^~04/01/2009~ -~01215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~417~^18.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~432~^18.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01215~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01215~^~601~^53.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01216~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01216~^~301~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~305~^109.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~306~^177.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01216~^~319~^11.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01216~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01216~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~ -~01216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01216~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01216~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01216~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01216~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~268~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01217~^~301~^152.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~305~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~306~^195.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01217~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01217~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01217~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~ -~01217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01217~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01217~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01217~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01217~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01218~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01218~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01218~^~301~^152.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~304~^15.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~305~^119.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~306~^194.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~307~^58.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01218~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01218~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~ -~01218~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~417~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01218~^~601~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01219~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01219~^~301~^152.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~304~^16.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~305~^133.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~306~^194.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~307~^58.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01219~^~319~^131.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01219~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01219~^~321~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2005~ -~01219~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~ -~01219~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01219~^~417~^10.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01219~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~01219~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~01219~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01219~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01220~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01220~^~301~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~305~^135.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~306~^219.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01220~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01220~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01220~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01220~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01220~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01220~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01220~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01221~^~208~^43.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~268~^180.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~301~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~304~^13.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~306~^177.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01221~^~319~^2.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~01221~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01221~^~321~^0.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~01221~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01221~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01221~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01221~^~601~^2.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01222~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~01222~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01222~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~01222~^~268~^469.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~01222~^~301~^88.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~305~^166.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~307~^135.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~319~^0.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01222~^~321~^0.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01222~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01222~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01222~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01222~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01222~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01222~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01222~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01222~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~01222~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01223~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~268~^1720.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~301~^500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~304~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~305~^643.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~306~^1129.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~307~^329.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~318~^2500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~319~^750.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01223~^~320~^750.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~324~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~417~^200.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01223~^~431~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01223~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~268~^1657.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~301~^1200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~304~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~305~^700.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~306~^840.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~307~^250.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~318~^3500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~319~^1050.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~320~^1050.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~324~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~417~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~431~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~01224~^~435~^476.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~601~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01225~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~262~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~263~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~301~^251.^4^15.^~1~^~A~^^^1^230.^298.^3^200.^301.^~2, 3~^~05/01/2009~ -~01225~^~304~^22.^4^1.^~1~^~A~^^^1^20.^25.^3^17.^25.^~2, 3~^~05/01/2009~ -~01225~^~305~^193.^4^12.^~1~^~A~^^^1^178.^229.^3^153.^231.^~2, 3~^~05/01/2009~ -~01225~^~306~^350.^4^27.^~1~^~A~^^^1^307.^432.^3^260.^438.^~2, 3~^~05/01/2009~ -~01225~^~307~^129.^4^11.^~1~^~A~^^^1^113.^164.^3^91.^167.^~2, 3~^~05/01/2009~ -~01225~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01225~^~319~^73.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~320~^74.^0^^~4~^~NC~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~321~^14.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~322~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~324~^6.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~334~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~337~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~338~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~417~^11.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~431~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~432~^11.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~435~^11.^0^^~4~^~NC~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~601~^29.^4^0.^~1~^~A~^^^1^28.^30.^3^28.^30.^~2, 3~^~05/01/2009~ -~01226~^~208~^48.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~268~^201.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01226~^~301~^73.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~304~^15.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~305~^72.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~306~^213.^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~307~^199.^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~318~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~01226~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~01226~^~321~^135.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~01226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~324~^66.^0^^~4~^~S~^^^^^^^^^^~05/01/2009~ -~01226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01226~^~417~^16.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~01226~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~01226~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~01226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~01226~^~636~^95.^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01227~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~268~^1361.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~301~^661.^6^53.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~304~^27.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~305~^475.^6^34.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~306~^116.^6^4.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~307~^1808.^6^69.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~318~^800.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01227~^~319~^223.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~320~^226.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01227~^~321~^33.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~324~^73.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01227~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~338~^4.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~601~^78.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~262~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~263~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~301~^566.^6^11.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~304~^24.^6^0.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~305~^385.^6^6.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~306~^129.^6^3.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~307~^751.^6^62.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~318~^806.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01228~^~319~^221.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~320~^224.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01228~^~321~^41.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~324~^110.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01228~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~338~^3.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~417~^7.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~431~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~432~^7.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01228~^~601~^69.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~268~^1299.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~301~^690.^6^20.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~304~^29.^6^1.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~305~^467.^6^11.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~306~^126.^6^13.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~307~^704.^6^67.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~318~^555.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01229~^~319~^155.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~320~^157.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01229~^~321~^23.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~324~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01229~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~338~^3.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~601~^70.^6^4.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01230~^~208~^62.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~268~^260.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~301~^115.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~304~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~305~^85.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~306~^135.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~307~^105.^0^^~4~^~BFZN~^~01088~^^^^^^^^^~08/01/2011~ -~01230~^~318~^165.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01230~^~319~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01230~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~324~^52.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01230~^~601~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01231~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~268~^361.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01231~^~301~^171.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~304~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~305~^135.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~306~^219.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~307~^66.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01231~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01231~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~432~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01231~^~601~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01235~^~208~^104.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01235~^~268~^433.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~301~^159.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~305~^129.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~307~^81.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01235~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01235~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01235~^~601~^4.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~208~^222.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~262~^2.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01236~^~263~^69.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01236~^~268~^930.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~301~^131.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~304~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~305~^116.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~306~^177.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~307~^61.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~318~^589.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01236~^~319~^159.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~320~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01236~^~321~^30.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~322~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~324~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~338~^151.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01236~^~601~^91.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~263~^32.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~268~^1386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~301~^119.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~305~^173.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~306~^305.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~307~^68.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~318~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~321~^44.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~601~^28.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~208~^237.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~262~^4.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~263~^122.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~268~^990.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~301~^86.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~304~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~305~^72.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~306~^115.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~307~^129.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~318~^286.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01238~^~319~^86.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01238~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01238~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~338~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~417~^34.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~431~^27.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01238~^~601~^21.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~262~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~263~^42.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~301~^73.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~304~^16.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~305~^54.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~306~^68.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~307~^162.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~318~^122.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~319~^37.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~321~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~322~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01239~^~334~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~337~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~338~^6.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~601~^6.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~208~^354.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~263~^56.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~268~^1482.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~301~^63.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~304~^29.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~305~^108.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~306~^222.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~307~^94.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~318~^104.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~319~^31.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01240~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01240~^~321~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~431~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01240~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~208~^186.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~262~^1.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~263~^43.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~268~^777.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~301~^30.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~304~^10.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~305~^26.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~306~^41.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~307~^146.^1^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~01241~^~318~^321.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~319~^96.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01241~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01241~^~321~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~322~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01241~^~334~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~337~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~338~^2.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~417~^12.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~431~^10.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~432~^2.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~435~^19.^0^^~4~^~NC~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~601~^7.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~208~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~262~^1.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~263~^43.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~268~^837.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~301~^86.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~304~^10.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~305~^26.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~306~^41.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~307~^164.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~318~^430.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01242~^~319~^129.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01242~^~320~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01242~^~321~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~322~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01242~^~334~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~337~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~338~^2.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~417~^12.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~431~^10.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~432~^2.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~435~^19.^0^^~4~^~NC~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01243~^~262~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~263~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~268~^557.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01243~^~301~^147.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~304~^9.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~305~^75.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~306~^196.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~307~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~318~^461.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01243~^~319~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01243~^~320~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01243~^~321~^12.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~322~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01243~^~334~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~337~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~338~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~417~^4.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~431~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~432~^4.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~435~^4.^0^^~4~^~NC~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01244~^~208~^147.^2^^~8~^~LC~^^^1^132.^162.^1^^^^~04/01/2011~ -~01244~^~262~^2.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~263~^69.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~268~^615.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01244~^~301~^184.^2^^~8~^~LC~^^^1^147.^221.^1^^^^~04/01/2011~ -~01244~^~304~^20.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~305~^83.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~306~^316.^2^^~8~^~LC~^^^1^250.^382.^1^^^^~04/01/2011~ -~01244~^~307~^92.^2^^~8~^~LC~^^^1^81.^103.^1^^^^~04/01/2011~ -~01244~^~318~^424.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01244~^~319~^60.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01244~^~321~^135.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~322~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01244~^~334~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~337~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~338~^1.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~417~^4.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~431~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~432~^4.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~435~^4.^0^^~4~^~NC~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~601~^7.^2^^~8~^~LC~^^^1^7.^7.^1^^^^~04/01/2011~ -~01249~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01249~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01249~^~301~^94.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~307~^41.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~318~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01249~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01249~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01249~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01250~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~262~^2.^0^^~4~^~BFZN~^~01110~^^^^^^^^^~04/01/2011~ -~01250~^~263~^23.^0^^~4~^~BFZN~^~01110~^^^^^^^^^~04/01/2011~ -~01250~^~268~^368.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~301~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~304~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~305~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~306~^176.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~307~^92.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~318~^550.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~319~^165.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01250~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~324~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~417~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~431~^44.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01250~^~601~^2.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01251~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01251~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~268~^1606.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01251~^~301~^659.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~304~^25.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~305~^438.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~306~^85.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~307~^607.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01251~^~318~^659.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01251~^~319~^170.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~320~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01251~^~321~^56.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~324~^21.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~417~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~432~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~01251~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01252~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~301~^1375.^16^73.^~1~^~A~^^^1^809.^2510.^5^1189.^1559.^~2, 3~^~02/01/2016~ -~01252~^~304~^34.^16^0.^~1~^~A~^^^1^23.^37.^6^32.^35.^~2, 3~^~02/01/2016~ -~01252~^~305~^768.^16^36.^~1~^~A~^^^1^470.^1290.^5^676.^858.^~2, 3~^~02/01/2016~ -~01252~^~306~^295.^16^9.^~1~^~A~^^^1^174.^357.^5^270.^320.^~2, 3~^~02/01/2016~ -~01252~^~307~^1279.^16^9.^~1~^~A~^^^1^1120.^1540.^9^1257.^1300.^~2, 3~^~02/01/2016~ -~01252~^~318~^1261.^3^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01252~^~319~^248.^3^^~1~^~A~^^^1^212.^265.^^^^~2, 3~^~06/01/2015~ -~01252~^~320~^270.^3^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01252~^~321~^248.^3^^~1~^~A~^^^1^114.^575.^^^^~2, 3~^~06/01/2015~ -~01252~^~322~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~05/01/2015~ -~01252~^~324~^259.^3^^~1~^~A~^^^1^225.^282.^^^^~2, 3~^~06/01/2015~ -~01252~^~334~^23.^3^^~1~^~A~^^^1^2.^34.^^^^~2, 3~^~06/01/2015~ -~01252~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~ -~01252~^~338~^60.^3^^~1~^~A~^^^1^6.^98.^^^^~2, 3~^~06/01/2015~ -~01252~^~417~^18.^0^^~4~^~BFZN~^~01215~^^^^^^^^^~05/01/2011~ -~01252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~432~^18.^0^^~4~^~BFZN~^~01215~^^^^^^^^^~05/01/2011~ -~01252~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01252~^~601~^78.^3^^~1~^~A~^^^1^71.^80.^^^^~2, 3~^~05/01/2015~ -~01253~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~268~^1553.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~301~^1045.^19^34.^~1~^~A~^^^1^479.^1390.^16^971.^1118.^~2, 3~^~05/01/2011~ -~01253~^~304~^26.^19^0.^~1~^~A~^^^1^23.^28.^12^25.^26.^~2, 3~^~05/01/2011~ -~01253~^~305~^641.^19^14.^~1~^~A~^^^1^336.^767.^16^609.^672.^~2, 3~^~05/01/2011~ -~01253~^~306~^132.^19^3.^~1~^~A~^^^1^99.^212.^16^123.^140.^~2, 3~^~05/01/2011~ -~01253~^~307~^1671.^19^21.^~1~^~A~^^^1^1270.^1890.^15^1626.^1716.^~2, 3~^~05/01/2011~ -~01253~^~318~^945.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~319~^243.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~ -~01253~^~320~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~321~^80.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~ -~01253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~324~^23.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~ -~01253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~417~^8.^26^0.^~1~^^^^^^^^^^^~05/01/2011~ -~01253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~432~^8.^26^0.^~1~^^^^^^^^^^^~05/01/2011~ -~01253~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~601~^100.^3^^~1~^~A~^^^1^92.^103.^^^^~2, 3~^~05/01/2011~ -~01254~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01254~^~268~^1382.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~301~^682.^10^114.^~1~^~A~^^^1^473.^1450.^9^422.^941.^~2, 3~^~05/01/2011~ -~01254~^~304~^27.^10^1.^~1~^~A~^^^1^24.^33.^9^24.^29.^~2, 3~^~05/01/2011~ -~01254~^~305~^438.^10^46.^~1~^~A~^^^1^349.^745.^9^333.^542.^~2, 3~^~05/01/2011~ -~01254~^~306~^255.^10^14.^~1~^~A~^^^1^208.^353.^9^221.^287.^~2, 3~^~05/01/2011~ -~01254~^~307~^1441.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01254~^~318~^890.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01254~^~319~^235.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~01254~^~320~^240.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01254~^~321~^58.^2^^~1~^~A~^^^1^41.^76.^1^^^^~07/01/2012~ -~01254~^~322~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~07/01/2012~ -~01254~^~324~^102.^2^^~1~^~A~^^^1^0.^204.^1^^^~1~^~07/01/2012~ -~01254~^~334~^11.^2^^~1~^~A~^^^1^1.^20.^1^^^^~07/01/2012~ -~01254~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~ -~01254~^~338~^23.^2^^~1~^~A~^^^1^7.^38.^1^^^^~07/01/2012~ -~01254~^~417~^7.^0^^~4~^^^^^^^^^^^~05/01/2011~ -~01254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01254~^~432~^7.^0^^~4~^^^^^^^^^^^~05/01/2011~ -~01254~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~601~^98.^2^^~1~^~A~^^^1^86.^109.^1^^^^~05/01/2011~ -~01255~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~262~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~263~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~268~^577.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~301~^55.^3^^~1~^~A~^^^1^53.^57.^^^^~2~^~06/01/2011~ -~01255~^~304~^9.^3^^~1~^~A~^^^1^9.^9.^^^^~2~^~06/01/2011~ -~01255~^~305~^186.^3^^~1~^~A~^^^1^183.^190.^^^^~2~^~06/01/2011~ -~01255~^~306~^128.^3^^~1~^~A~^^^1^117.^135.^^^^~2~^~06/01/2011~ -~01255~^~307~^3663.^3^^~1~^~A~^^^1^3620.^3750.^^^^~2~^~06/01/2011~ -~01255~^~318~^504.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01255~^~319~^149.^3^^~1~^~A~^^^1^147.^153.^^^^~2~^~06/01/2011~ -~01255~^~320~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01255~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~06/01/2011~ -~01255~^~322~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~324~^61.^3^^~1~^~A~^^^1^44.^76.^^^^~1, 2~^~06/01/2011~ -~01255~^~334~^9.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~337~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~338~^417.^3^^~1~^~A~^^^1^324.^500.^^^^~2~^~06/01/2011~ -~01255~^~417~^69.^3^^~1~^~A~^^^1^56.^80.^^^^~2~^~07/01/2011~ -~01255~^~431~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~432~^69.^3^^~1~^~A~^^^1^56.^80.^^^^^~07/01/2011~ -~01255~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~01255~^~601~^387.^3^^~1~^~A~^^^1^357.^424.^^^^~2~^~06/01/2011~ -~01256~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~268~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~301~^110.^18^0.^~1~^~A~^^^1^108.^115.^7^109.^111.^~2, 3~^~08/01/2012~ -~01256~^~304~^11.^18^0.^~1~^~A~^^^1^10.^12.^7^10.^10.^~2, 3~^~02/01/2012~ -~01256~^~305~^135.^18^0.^~1~^~A~^^^1^130.^142.^8^133.^135.^~2, 3~^~08/01/2012~ -~01256~^~306~^141.^18^0.^~1~^~A~^^^1^132.^145.^14^140.^142.^~2, 3~^~08/01/2012~ -~01256~^~307~^36.^18^0.^~1~^~A~^^^1^33.^39.^15^34.^36.^~2, 3~^~08/01/2012~ -~01256~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~01256~^~319~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~01256~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~01256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~417~^7.^0^^~1~^~DA~^~01118~^^^^^^^^^~02/01/2012~ -~01256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~432~^7.^0^^~1~^~DA~^^^^^^^^^^~02/01/2012~ -~01256~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~601~^5.^9^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~2, 3~^~08/01/2012~ -~01258~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~268~^1495.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~301~^101.^15^8.^~1~^~A~^^^1^61.^163.^14^81.^119.^~4~^~04/01/2015~ -~01258~^~304~^82.^3^^~1~^~A~^^^1^73.^87.^^^^~2~^~07/01/2012~ -~01258~^~305~^104.^3^^~1~^~A~^^^1^97.^110.^^^^~2~^~07/01/2012~ -~01258~^~306~^884.^3^^~1~^~A~^^^1^710.^1040.^^^^~2~^~07/01/2012~ -~01258~^~307~^1299.^15^22.^~1~^~A~^^^1^1160.^1420.^14^1250.^1348.^~4~^~04/01/2015~ -~01258~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01258~^~319~^0.^15^0.^~1~^~A~^^^1^0.^0.^14^0.^0.^~1, 4~^~07/01/2012~ -~01258~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01258~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~07/01/2012~ -~01258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~324~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~07/01/2012~ -~01258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~338~^20.^3^^~1~^~A~^^^1^20.^20.^^^^~1, 2~^~07/01/2012~ -~01258~^~417~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~2~^~07/01/2012~ -~01258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~432~^0.^3^^~1~^~A~^^^1^0.^0.^^^^^~07/01/2012~ -~01258~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~01258~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2015~ -~01259~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~301~^557.^10^85.^~1~^~A~^^^1^340.^877.^9^363.^749.^~2, 3~^~05/01/2013~ -~01259~^~304~^27.^10^2.^~1~^~A~^^^1^19.^37.^9^20.^32.^~2, 3~^~05/01/2013~ -~01259~^~305~^931.^10^50.^~1~^~A~^^^1^792.^1160.^9^816.^1045.^~2, 3~^~05/01/2013~ -~01259~^~306~^250.^10^16.^~1~^~A~^^^1^195.^315.^9^213.^286.^~2, 3~^~05/01/2013~ -~01259~^~307~^1102.^10^86.^~1~^~A~^^^1^842.^1490.^9^906.^1296.^~2, 3~^~05/01/2013~ -~01259~^~318~^656.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~01259~^~319~^183.^2^^~1~^~A~^^^1^70.^296.^1^^^^~05/01/2013~ -~01259~^~320~^185.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~01259~^~321~^27.^4^8.^~1~^~A~^^^1^13.^50.^3^0.^54.^~2, 3~^~05/01/2013~ -~01259~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~05/01/2013~ -~01259~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01259~^~334~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2013~ -~01259~^~337~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~05/01/2013~ -~01259~^~338~^11.^4^6.^~1~^~A~^^^1^3.^31.^3^-9.^32.^~1, 2, 3~^~05/01/2013~ -~01259~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~601~^38.^6^3.^~1~^~A~^^^1^30.^46.^5^29.^46.^~2, 3~^~05/01/2013~ -~01260~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01260~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~268~^1323.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01260~^~301~^761.^5^12.^~1~^~A~^^^1^709.^823.^2^707.^814.^~2, 3~^~05/01/2013~ -~01260~^~304~^27.^5^0.^~1~^~A~^^^1^25.^31.^2^23.^30.^~2, 3~^~05/01/2013~ -~01260~^~305~^520.^5^5.^~1~^~A~^^^1^491.^545.^2^497.^541.^~2, 3~^~05/01/2013~ -~01260~^~306~^63.^5^3.^~1~^~A~^^^1^54.^82.^2^46.^78.^~2, 3~^~05/01/2013~ -~01260~^~307~^628.^5^4.^~1~^~A~^^^1^591.^643.^2^609.^646.^~2, 3~^~05/01/2013~ -~01260~^~318~^522.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~319~^142.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~320~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~321~^28.^2^^~1~^~A~^^^1^26.^29.^^^^^~05/01/2013~ -~01260~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2013~ -~01260~^~324~^13.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01260~^~334~^1.^2^^~1~^~A~^^^1^0.^2.^^^^~1~^~05/01/2013~ -~01260~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2013~ -~01260~^~338~^4.^2^^~1~^~A~^^^1^4.^4.^^^^^~05/01/2013~ -~01260~^~417~^20.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~432~^20.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~601~^76.^4^0.^~1~^~A~^^^1^71.^81.^1^75.^76.^~2, 3~^~05/01/2013~ -~01263~^~208~^141.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01263~^~268~^590.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~301~^134.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~304~^36.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~305~^113.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~306~^207.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~307~^64.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~318~^336.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~319~^90.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~320~^91.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~324~^26.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~431~^12.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01263~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01263~^~601~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~208~^358.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~268~^1497.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~301~^63.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~305~^57.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~306~^71.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~307~^84.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~318~^105.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~319~^35.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~320~^35.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01264~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01265~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01265~^~262~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~263~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01265~^~301~^893.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~304~^16.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~305~^484.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~306~^66.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~307~^1000.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~318~^207.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01265~^~319~^60.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01265~^~321~^4.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~322~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01265~^~334~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~337~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~338~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~417~^11.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~431~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~432~^11.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~435~^11.^0^^~4~^~NC~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~601~^18.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01266~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01266~^~262~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~263~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01266~^~301~^961.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~304~^36.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~305~^605.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~306~^111.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~307~^1000.^0^^~4~^~BFZN~^~01265~^^^^^^^^^~05/01/2013~ -~01266~^~318~^152.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01266~^~319~^39.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~320~^40.^0^^~4~^~NC~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~321~^13.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~322~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~324~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01266~^~334~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~337~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~338~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~417~^6.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~431~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~432~^6.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~435~^6.^0^^~4~^~NC~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~601~^18.^0^^~4~^~BFZN~^~01265~^^^^^^^^^~05/01/2013~ -~01267~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01267~^~262~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~263~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~268~^1531.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01267~^~301~^800.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~304~^38.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~305~^729.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~306~^125.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~307~^1400.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~318~^865.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01267~^~319~^223.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~320~^229.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~321~^73.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~322~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~324~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01267~^~334~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~337~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~338~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~417~^10.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~431~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~432~^10.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~435~^10.^0^^~4~^~NC~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~601~^100.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01270~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01270~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~301~^711.^18^4.^~1~^~A~^^^1^646.^747.^4^698.^723.^~2, 3~^~05/01/2014~ -~01270~^~304~^27.^18^0.^~1~^~A~^^^1^24.^30.^4^25.^27.^~2, 3~^~05/01/2014~ -~01270~^~305~^460.^18^5.^~1~^~A~^^^1^423.^492.^3^443.^476.^~2, 3~^~05/01/2014~ -~01270~^~306~^76.^18^4.^~1~^~A~^^^1^58.^94.^3^59.^91.^~2, 3~^~05/01/2014~ -~01270~^~307~^644.^18^11.^~1~^~A~^^^1^587.^699.^3^607.^680.^~2, 3~^~05/01/2014~ -~01270~^~318~^994.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~319~^256.^3^^~1~^~A~^^^1^249.^356.^^^^~2, 3~^~05/01/2014~ -~01270~^~320~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~321~^85.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~324~^41.^1^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~01270~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~417~^27.^4^^~1~^~A~^^^1^14.^30.^^^^~2, 3~^~05/01/2014~ -~01270~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~601~^99.^9^0.^~1~^~A~^^^1^97.^106.^1^94.^103.^~2, 3~^~05/01/2014~ -~01271~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~268~^1273.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~301~^716.^18^16.^~1~^~A~^^^1^638.^862.^6^676.^755.^~2, 3~^~05/01/2014~ -~01271~^~304~^29.^18^1.^~1~^~A~^^^1^24.^34.^6^26.^31.^~2, 3~^~05/01/2014~ -~01271~^~305~^537.^18^12.^~1~^~A~^^^1^443.^603.^6^506.^567.^~2, 3~^~05/01/2014~ -~01271~^~306~^131.^18^6.^~1~^~A~^^^1^62.^163.^6^114.^147.^~2, 3~^~05/01/2014~ -~01271~^~307~^682.^18^24.^~1~^~A~^^^1^549.^799.^6^623.^741.^~2, 3~^~05/01/2014~ -~01271~^~318~^846.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01271~^~319~^254.^3^^~1~^~A~^^^1^168.^264.^^^^~2, 3~^~05/01/2014~ -~01271~^~320~^254.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01271~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~324~^14.^0^^~4~^~BFFN~^~01028~^^^^^^^^^~05/01/2014~ -~01271~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~417~^27.^4^1.^~1~^~A~^^^1^24.^30.^1^10.^42.^~2, 3~^~05/01/2014~ -~01271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~432~^27.^4^1.^~1~^~A~^^^1^24.^30.^1^10.^42.^^~05/01/2014~ -~01271~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~601~^65.^9^1.^~1~^~A~^^^1^63.^68.^2^59.^71.^~2, 3~^~05/01/2014~ -~01275~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~268~^295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~301~^106.^6^1.^~1~^~A~^^^1^101.^109.^5^103.^109.^~2, 3~^~07/01/2014~ -~01275~^~304~^11.^6^0.^~1~^~A~^^^1^10.^11.^5^10.^10.^~2, 3~^~07/01/2014~ -~01275~^~305~^126.^6^0.^~1~^~A~^^^1^123.^129.^5^124.^128.^~2, 3~^~07/01/2014~ -~01275~^~306~^130.^6^2.^~1~^~A~^^^1^117.^136.^5^122.^137.^~2, 3~^~07/01/2014~ -~01275~^~307~^36.^6^1.^~1~^~A~^^^1^34.^41.^5^32.^39.^~2, 3~^~07/01/2014~ -~01276~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~301~^86.^6^1.^~1~^~A~^^^1^82.^89.^5^83.^89.^~2, 3~^~07/01/2014~ -~01276~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^10.^~2, 3~^~07/01/2014~ -~01276~^~305~^110.^6^1.^~1~^~A~^^^1^106.^113.^5^106.^112.^~2, 3~^~07/01/2014~ -~01276~^~306~^131.^6^1.^~1~^~A~^^^1^125.^135.^5^126.^134.^~2, 3~^~07/01/2014~ -~01276~^~307~^34.^6^0.^~1~^~A~^^^1^33.^36.^5^32.^35.^~2, 3~^~07/01/2014~ -~01276~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2014~ -~01276~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~338~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~268~^354.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~301~^89.^6^0.^~1~^~A~^^^1^86.^91.^5^86.^91.^~2, 3~^~07/01/2014~ -~01278~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~07/01/2014~ -~01278~^~305~^112.^6^0.^~1~^~A~^^^1^110.^114.^5^110.^112.^~2, 3~^~07/01/2014~ -~01278~^~306~^115.^6^2.^~1~^~A~^^^1^108.^121.^5^108.^120.^~2, 3~^~07/01/2014~ -~01278~^~307~^32.^6^1.^~1~^~A~^^^1^29.^37.^5^29.^34.^~2, 3~^~07/01/2014~ -~01278~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~07/01/2014~ -~01280~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~301~^94.^6^0.^~1~^~A~^^^1^92.^98.^5^91.^96.^~2, 3~^~07/01/2014~ -~01280~^~304~^11.^6^0.^~1~^~A~^^^1^10.^11.^5^10.^11.^~2, 3~^~07/01/2014~ -~01280~^~305~^114.^6^1.^~1~^~A~^^^1^111.^118.^5^110.^117.^~2, 3~^~07/01/2014~ -~01280~^~306~^145.^6^1.^~1~^~A~^^^1^140.^151.^5^140.^149.^~2, 3~^~07/01/2014~ -~01280~^~307~^33.^6^0.^~1~^~A~^^^1^31.^35.^5^31.^34.^~2, 3~^~07/01/2014~ -~01280~^~324~^40.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01284~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01284~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01284~^~301~^88.^9^0.^~1~^~A~^^^1^82.^96.^6^86.^90.^~2, 3~^~05/01/2015~ -~01284~^~304~^10.^9^0.^~1~^~A~^^^1^9.^10.^6^9.^10.^~2, 3~^~05/01/2015~ -~01284~^~305~^109.^9^0.^~1~^~A~^^^1^106.^113.^6^107.^111.^~2, 3~^~05/01/2015~ -~01284~^~306~^129.^9^1.^~1~^~A~^^^1^123.^135.^5^126.^131.^~2, 3~^~05/01/2015~ -~01284~^~307~^33.^9^0.^~1~^~A~^^^1^28.^36.^6^31.^33.^~2, 3~^~05/01/2015~ -~01284~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~319~^30.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01284~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~321~^7.^2^^~1~^~A~^^^1^5.^8.^^^^^~05/01/2015~ -~01284~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~01284~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~01284~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~01284~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~01284~^~338~^7.^2^^~1~^~A~^^^1^3.^18.^^^^^~05/01/2015~ -~01284~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01284~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~601~^12.^2^^~1~^~A~^^^1^8.^13.^^^^^~05/01/2015~ -~01285~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~301~^97.^16^0.^~1~^~A~^^^1^92.^103.^13^95.^98.^~2, 3~^~05/01/2015~ -~01285~^~304~^10.^16^0.^~1~^~A~^^^1^10.^11.^11^10.^10.^~2, 3~^~05/01/2015~ -~01285~^~305~^113.^16^0.^~1~^~A~^^^1^109.^118.^10^110.^114.^~2, 3~^~05/01/2015~ -~01285~^~306~^132.^16^1.^~1~^~A~^^^1^121.^151.^10^130.^134.^~2, 3~^~05/01/2015~ -~01285~^~307~^33.^16^0.^~1~^~A~^^^1^30.^37.^7^31.^33.^~2, 3~^~05/01/2015~ -~01285~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01285~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01285~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01285~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01285~^~324~^40.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01285~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01285~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01286~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~301~^99.^15^0.^~1~^~A~^^^1^86.^109.^10^97.^100.^~2, 3~^~05/01/2015~ -~01286~^~304~^10.^15^0.^~1~^~A~^^^1^9.^11.^10^9.^10.^~2, 3~^~05/01/2015~ -~01286~^~305~^119.^15^0.^~1~^~A~^^^1^110.^129.^8^118.^120.^~2, 3~^~05/01/2015~ -~01286~^~306~^123.^15^1.^~1~^~A~^^^1^108.^136.^9^119.^127.^~2, 3~^~05/01/2015~ -~01286~^~307~^34.^15^0.^~1~^~A~^^^1^28.^41.^9^32.^35.^~2, 3~^~05/01/2015~ -~01286~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01286~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01286~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~05/01/2015~ -~01286~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~417~^11.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~432~^11.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~601~^3.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01287~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~268~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~301~^115.^5^1.^~1~^~A~^^^1^110.^118.^4^111.^119.^~2, 3~^~05/01/2015~ -~01287~^~304~^11.^5^0.^~1~^~A~^^^1^11.^11.^4^10.^11.^~2, 3~^~05/01/2015~ -~01287~^~305~^137.^5^1.^~1~^~A~^^^1^133.^139.^4^133.^139.^~2, 3~^~05/01/2015~ -~01287~^~306~^141.^5^1.^~1~^~A~^^^1^136.^147.^4^135.^145.^~2, 3~^~05/01/2015~ -~01287~^~307~^34.^5^0.^~1~^~A~^^^1^34.^35.^4^33.^35.^~2, 3~^~05/01/2015~ -~01287~^~318~^309.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~319~^90.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01287~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~321~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~324~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01287~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~338~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~601~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01289~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01289~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01289~^~301~^130.^4^1.^~1~^~A~^^^1^128.^134.^3^125.^134.^~2, 3~^~07/01/2015~ -~01289~^~304~^12.^4^0.^~1~^~A~^^^1^12.^12.^3^11.^12.^~2, 3~^~07/01/2015~ -~01289~^~305~^105.^4^0.^~1~^~A~^^^1^104.^106.^3^103.^106.^~2, 3~^~07/01/2015~ -~01289~^~306~^164.^4^1.^~1~^~A~^^^1^161.^167.^3^159.^167.^~2, 3~^~07/01/2015~ -~01289~^~307~^40.^4^0.^~1~^~A~^^^1^39.^41.^3^37.^41.^~2, 3~^~07/01/2015~ -~01289~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01289~^~319~^171.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~320~^171.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01289~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~324~^41.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01289~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~601~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~07/01/2015~ -~01290~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~268~^261.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~301~^119.^4^0.^~1~^~A~^^^1^117.^121.^3^116.^121.^~2, 3~^~07/01/2015~ -~01290~^~304~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~07/01/2015~ -~01290~^~305~^96.^4^0.^~1~^~A~^^^1^95.^97.^3^94.^97.^~2, 3~^~07/01/2015~ -~01290~^~306~^154.^4^1.^~1~^~A~^^^1^151.^157.^3^149.^158.^~2, 3~^~07/01/2015~ -~01290~^~307~^37.^4^0.^~1~^~A~^^^1^35.^39.^3^34.^39.^~2, 3~^~07/01/2015~ -~01290~^~318~^599.^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01290~^~319~^178.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~320~^178.^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01290~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01290~^~324~^44.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01290~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01290~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01290~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01290~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~601~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^4.^4.^~2, 3~^~07/01/2015~ -~01291~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~268~^448.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01291~^~301~^267.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~304~^24.^6^0.^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~305~^203.^37^8.^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~306~^303.^10^8.^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~307~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~318~^192.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01291~^~319~^56.^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~ -~01291~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01291~^~321~^4.^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~ -~01291~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~324~^160.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~417~^8.^1^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~432~^8.^1^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01291~^~601~^0.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01292~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~01292~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01292~^~268~^282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01292~^~301~^127.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~304~^13.^5^0.^~1~^^^^^^^^^^^~06/01/2015~ -~01292~^~305~^101.^5^5.^~1~^^^^^^^^^^^~06/01/2015~ -~01292~^~306~^182.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~307~^79.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01292~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01292~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01292~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01292~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~324~^42.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01292~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01292~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01292~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01292~^~601~^2.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~268~^406.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~304~^11.^18^0.^~1~^~A~^^^1^10.^12.^7^10.^10.^~2, 3~^~06/01/2015~ -~01293~^~305~^135.^18^0.^~1~^~A~^^^1^130.^142.^8^133.^135.^~2, 3~^~06/01/2015~ -~01293~^~306~^141.^18^0.^~1~^~A~^^^1^132.^145.^14^140.^142.^~2, 3~^~06/01/2015~ -~01293~^~307~^35.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01293~^~319~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01293~^~321~^7.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01293~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~01293~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~432~^5.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01293~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01293~^~601~^13.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~304~^10.^9^0.^~1~^~A~^^^1^9.^10.^6^9.^10.^~2, 3~^~06/01/2015~ -~01294~^~305~^109.^9^0.^~1~^~A~^^^1^106.^113.^6^107.^111.^~2, 3~^~06/01/2015~ -~01294~^~306~^113.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~307~^37.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~318~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~319~^45.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01294~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~321~^7.^2^^~1~^~A~^^^1^5.^8.^^^^^~06/01/2015~ -~01294~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~ -~01294~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~ -~01294~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~ -~01294~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~ -~01294~^~338~^7.^2^^~1~^~A~^^^1^3.^18.^^^^^~06/01/2015~ -~01294~^~417~^5.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~01294~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~601~^10.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01295~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01295~^~268~^328.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~301~^118.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~304~^16.^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~305~^88.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~306~^141.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~307~^47.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~319~^61.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~321~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~322~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~324~^35.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~334~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~337~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~338~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~417~^11.^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01295~^~432~^11.^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~601~^3.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~304~^10.^15^0.^~1~^~A~^^^1^9.^11.^10^9.^10.^~2, 3~^~06/01/2015~ -~01297~^~305~^119.^15^0.^~1~^~A~^^^1^110.^129.^8^118.^120.^~2, 3~^~06/01/2015~ -~01297~^~306~^123.^15^1.^~1~^~A~^^^1^108.^136.^9^119.^127.^~2, 3~^~06/01/2015~ -~01297~^~307~^40.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~318~^371.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01297~^~319~^110.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~320~^110.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01297~^~321~^3.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~06/01/2015~ -~01297~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~417~^9.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~432~^9.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01297~^~601~^5.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~01298~^~262~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~263~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~268~^579.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~01298~^~301~^200.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~304~^7.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~305~^62.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~306~^108.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~307~^45.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01298~^~319~^34.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~320~^34.^0^^~4~^~NC~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~321~^6.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~322~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01298~^~334~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~337~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~338~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~417~^3.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~431~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~432~^3.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01298~^~601~^45.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~262~^4.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~263~^41.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~268~^1266.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~301~^90.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~304~^37.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~305~^146.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~306~^304.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~307~^56.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~318~^281.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~319~^56.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~320~^61.^0^^~4~^~NC~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~321~^56.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~322~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~324~^9.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01300~^~334~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~337~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~338~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~417~^14.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~431~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~432~^14.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~601~^56.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~263~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~301~^60.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~305~^128.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~306~^204.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~307~^115.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~318~^410.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~319~^116.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~320~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~321~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~431~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~601~^15.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~301~^62.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~304~^12.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~305~^84.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~306~^174.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~307~^46.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~318~^324.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~319~^92.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~320~^93.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~321~^10.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~324~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~601~^8.^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01303~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~262~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~263~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~268~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~301~^133.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~304~^10.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~305~^95.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~306~^132.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~307~^50.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~319~^46.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~321~^11.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~322~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~324~^1.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~334~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~337~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~338~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~417~^3.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~431~^0.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~432~^3.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~601~^17.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01304~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01304~^~268~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01304~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~307~^33.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01304~^~319~^21.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01304~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01304~^~601~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01305~^~208~^57.^1^^~8~^^^^1^57.^57.^^^^^~02/01/2016~ -~01305~^~262~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~263~^6.^4^0.^~1~^~A~^^^1^5.^6.^3^4.^6.^~2, 3~^~07/01/2015~ -~01305~^~268~^237.^0^^~8~^^^^^^^^^^^~02/01/2016~ -~01305~^~301~^122.^9^1.^~1~^~A~^^^1^116.^129.^8^118.^125.^~2, 3~^~07/01/2015~ -~01305~^~304~^13.^9^0.^~1~^~A~^^^1^12.^14.^8^12.^13.^~2, 3~^~07/01/2015~ -~01305~^~305~^98.^9^1.^~1~^~A~^^^1^93.^106.^8^94.^102.^~2, 3~^~07/01/2015~ -~01305~^~306~^168.^9^3.^~1~^~A~^^^1^156.^187.^8^159.^175.^~2, 3~^~07/01/2015~ -~01305~^~307~^66.^9^1.^~1~^~A~^^^1^61.^77.^8^61.^70.^~2, 3~^~07/01/2015~ -~01305~^~318~^321.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01305~^~319~^96.^2^^~1~^~A~^^^1^76.^115.^1^^^^~07/01/2015~ -~01305~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01305~^~321~^2.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~322~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~324~^60.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01305~^~334~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~337~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~338~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~417~^5.^2^^~8~^^^^1^3.^6.^1^^^^~07/01/2015~ -~01305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01305~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~ -~01305~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~601~^5.^6^0.^~1~^~A~^^^1^5.^5.^5^4.^5.^~2, 3~^~07/01/2015~ -~01306~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~263~^118.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~268~^1110.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~301~^133.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~304~^65.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~305~^143.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~306~^213.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~307~^113.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~319~^26.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~324~^8.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~417~^17.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~01306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~01306~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01306~^~601~^7.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01307~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01307~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01307~^~301~^88.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~318~^51.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01307~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01307~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01307~^~601~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01308~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01308~^~301~^111.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~307~^35.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~318~^194.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01308~^~319~^58.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01308~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01308~^~601~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01312~^~268~^328.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01312~^~301~^96.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01312~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01312~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01313~^~268~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01313~^~301~^89.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~318~^206.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01313~^~319~^53.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01313~^~321~^18.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01314~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01314~^~268~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01314~^~301~^112.^2^^~1~^~A~^^^1^111.^113.^1^^^^~08/01/2016~ -~01314~^~307~^37.^2^^~1~^~A~^^^1^37.^37.^^^^^~08/01/2016~ -~01314~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01314~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2016~ -~01314~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01314~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2016~ -~01314~^~601~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~08/01/2016~ -~01316~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01316~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~01316~^~301~^98.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01316~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01316~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01316~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01316~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01319~^~208~^80.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01319~^~268~^335.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~306~^128.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~307~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01319~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01319~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01319~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01319~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01319~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01319~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~208~^82.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01320~^~268~^343.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~301~^90.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~306~^128.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01320~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01320~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~01320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01320~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~208~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01321~^~268~^331.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~304~^10.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~305~^112.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~306~^132.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~307~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01321~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01321~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01321~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01321~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01321~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01322~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01322~^~301~^94.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~306~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~307~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01322~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01322~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~01322~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01322~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01323~^~208~^900.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~268~^3766.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~318~^4000.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~601~^300.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~02001~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~02001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~02001~^~268~^1099.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02001~^~301~^661.^7^76.^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~304~^135.^6^12.^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~305~^113.^4^6.^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~306~^1044.^8^67.^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~307~^77.^9^7.^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~318~^540.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02001~^~320~^27.^1^^~1~^^^^^^^^^^^~11/01/2001~ -~02001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02001~^~417~^36.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02001~^~432~^36.^0^^~4~^^^^^^^^^^^~11/01/2001~ -~02001~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~02001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02001~^~636~^61.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02002~^~268~^1411.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02002~^~301~^646.^5^38.^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~304~^170.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~305~^440.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~306~^1441.^5^61.^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~307~^16.^6^4.^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~318~^311.^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02002~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/2001~ -~02002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02002~^~417~^10.^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02002~^~432~^10.^0^^~4~^^^^^^^^^^^~11/01/2001~ -~02002~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~02002~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02003~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02003~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~301~^2240.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~304~^711.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~305~^274.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~306~^2630.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~307~^76.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~318~^744.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02003~^~320~^37.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~321~^378.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~322~^113.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02003~^~334~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~337~^393.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~338~^1150.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~417~^310.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02003~^~432~^310.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~435~^310.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02003~^~636~^106.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02004~^~268~^1312.^0^^~4~^^^^^^^^^^^ -~02004~^~301~^834.^4^168.^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~304~^120.^3^20.^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~305~^113.^3^8.^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~306~^529.^5^60.^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~307~^23.^4^1.^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~318~^6185.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02004~^~320~^309.^1^^~1~^^^^^^^^^^^~11/01/2001~ -~02004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02004~^~417~^180.^0^^~4~^^^^^^^^^^^~12/01/1988~ -~02004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02004~^~432~^180.^0^^~4~^^^^^^^^^^^~11/01/2001~ -~02004~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~11/01/2001~ -~02004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02005~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02005~^~268~^1393.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~02005~^~301~^689.^4^46.^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~304~^258.^2^^~1~^^^^^^^^^^^~02/01/2002~ -~02005~^~305~^568.^2^^~1~^^^^^^^^^^^~02/01/2002~ -~02005~^~306~^1351.^7^60.^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~307~^17.^7^2.^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~318~^363.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02005~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02005~^~321~^206.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~ -~02005~^~322~^8.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~ -~02005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02005~^~334~^16.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~ -~02005~^~337~^20.^0^^~4~^~BFZN~^~02030~^^^^^^^^^~06/01/2010~ -~02005~^~338~^454.^0^^~4~^~BFZN~^~02030~^^^^^^^^^~06/01/2010~ -~02005~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02005~^~432~^10.^0^^~4~^^^^^^^^^^^~06/01/2010~ -~02005~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02005~^~636~^76.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02006~^~268~^1303.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02006~^~301~^383.^7^78.^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~304~^229.^5^56.^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~305~^178.^6^17.^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~306~^1119.^21^198.^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~307~^18.^3^3.^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02006~^~320~^0.^1^^~1~^^^^^^^^^^^~01/01/2002~ -~02006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02006~^~636~^46.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02007~^~268~^1641.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~02007~^~301~^1767.^3^185.^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~304~^440.^3^20.^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~305~^547.^3^96.^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~306~^1400.^4^40.^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~307~^160.^5^17.^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~318~^52.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02007~^~320~^3.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~02007~^~321~^31.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~02007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02007~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02007~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~02007~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~02007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02007~^~636~^60.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02008~^~268~^990.^0^^~4~^^^^^^^^^^^~02/01/2002~ -~02008~^~301~^1346.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~304~^130.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~305~^450.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~306~^4740.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~307~^83.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~318~^5850.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02008~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~02008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02008~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02008~^~432~^274.^0^^~4~^^^^^^^^^^^~02/01/2002~ -~02008~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~02008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02009~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02009~^~268~^1179.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~301~^330.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~304~^149.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~305~^300.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~306~^1950.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~307~^2867.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~02009~^~318~^29650.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02009~^~320~^1483.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~321~^15000.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~322~^2090.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02009~^~334~^3490.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~337~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~338~^310.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~417~^28.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02009~^~432~^28.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02009~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02010~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02010~^~268~^1035.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~301~^1002.^6^38.^~11~^~JO~^^^4^903.^1265.^3^878.^1124.^~2~^~05/01/2007~ -~02010~^~304~^60.^5^7.^~1~^~A~^^^3^47.^87.^2^27.^92.^~2~^~02/01/2007~ -~02010~^~305~^64.^6^4.^~11~^~JO~^^^4^49.^83.^3^49.^77.^~2~^~05/01/2007~ -~02010~^~306~^431.^6^44.^~11~^~JO~^^^4^304.^512.^3^287.^573.^~2~^~05/01/2007~ -~02010~^~307~^10.^6^3.^~11~^~JO~^^^4^3.^19.^3^0.^20.^~1, 2~^~05/01/2007~ -~02010~^~318~^295.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~02010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02010~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~02010~^~321~^112.^5^90.^~1~^~A~^^^3^3.^353.^2^-279.^503.^~2~^~02/01/2007~ -~02010~^~322~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^-10.^12.^~1, 2~^~05/01/2007~ -~02010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02010~^~334~^129.^3^129.^~1~^~A~^^^2^0.^258.^1^-1510.^1768.^~1, 2~^~05/01/2007~ -~02010~^~337~^15.^3^14.^~1~^~A~^^^2^0.^29.^1^-170.^200.^~1, 2~^~05/01/2007~ -~02010~^~338~^222.^3^197.^~1~^~A~^^^2^19.^420.^1^-2293.^2737.^~2~^~05/01/2007~ -~02010~^~417~^6.^3^0.^~1~^~A~^^^2^5.^8.^1^5.^7.^~2~^~02/01/2007~ -~02010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02010~^~432~^6.^3^0.^~1~^~A~^^^2^5.^8.^1^5.^7.^^~05/01/2007~ -~02010~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02010~^~636~^26.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~02011~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02011~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~301~^632.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~304~^259.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~305~^104.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~306~^1020.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~307~^277.^2^^~1~^~A~^^^2^268.^285.^1^^^^~04/01/2011~ -~02011~^~318~^160.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~02011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02011~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~02011~^~321~^45.^2^^~1~^~A~^^^2^19.^70.^1^^^^~04/01/2011~ -~02011~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02011~^~334~^103.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~417~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02011~^~432~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02011~^~636~^256.^0^^~1~^^^^^^^^^^^~07/01/2013~ -~02012~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~02012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~02012~^~268~^1167.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02012~^~301~^1246.^10^95.^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~304~^694.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~02012~^~305~^481.^10^38.^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~306~^4466.^3^281.^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~307~^211.^1^^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~318~^5850.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02012~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02012~^~321~^3407.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~ -~02012~^~322~^31.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~ -~02012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02012~^~334~^175.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~ -~02012~^~337~^0.^0^^~4~^~BFSN~^~11165~^^^^^^^^^~02/01/2003~ -~02012~^~338~^2428.^0^^~4~^~BFZN~^~02029~^^^^^^^^^~06/01/2009~ -~02012~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02012~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02012~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02013~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02013~^~268~^1245.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02013~^~301~^709.^6^62.^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~304~^330.^3^36.^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~305~^409.^4^18.^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~306~^1267.^7^80.^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~307~^35.^7^4.^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02013~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~02013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02013~^~417~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02013~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~02013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02013~^~636~^46.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02014~^~268~^1567.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~02014~^~301~^931.^7^102.^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~304~^366.^4^33.^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~305~^499.^7^22.^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~306~^1788.^6^136.^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~307~^168.^6^18.^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~318~^1270.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02014~^~320~^64.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~02014~^~321~^762.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~ -~02014~^~322~^0.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~ -~02014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02014~^~334~^0.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~ -~02014~^~337~^0.^0^^~4~^~BFZN~^~02024~^^^^^^^^^~02/01/2003~ -~02014~^~338~^448.^0^^~4~^~BFZN~^~02024~^^^^^^^^^~02/01/2003~ -~02014~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02014~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~02014~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~02014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02014~^~636~^68.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02015~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02015~^~268~^1359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~301~^525.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~304~^255.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~305~^367.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~306~^1170.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~307~^52.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02015~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02015~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02015~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02015~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~417~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02015~^~432~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02016~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~02016~^~268~^1276.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02016~^~301~^1516.^5^115.^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~304~^256.^4^11.^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~305~^277.^4^66.^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~306~^1186.^6^118.^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~307~^20.^4^4.^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~318~^53.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02016~^~320~^3.^1^^~1~^^^^^^^^^^^~11/01/2001~ -~02016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02016~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02016~^~432~^10.^0^^~4~^^^^^^^^^^^~11/01/2001~ -~02016~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~02016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02016~^~636~^124.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02017~^~268~^1059.^0^^~4~^^^^^^^^^^^ -~02017~^~301~^1784.^4^202.^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~304~^451.^3^116.^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~305~^543.^3^163.^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~306~^3308.^4^923.^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~307~^208.^3^98.^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~318~^5850.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02017~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~02017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02018~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02018~^~268~^1443.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02018~^~301~^1196.^6^74.^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~304~^385.^4^71.^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~305~^487.^4^42.^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~306~^1694.^6^56.^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~307~^88.^7^10.^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~318~^135.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02018~^~320~^7.^1^^~1~^^^^^^^^^^^~01/01/2002~ -~02018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02018~^~636~^66.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02019~^~268~^1352.^0^^~4~^^^^^^^^^^^ -~02019~^~301~^176.^25^5.^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~304~^191.^3^61.^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~305~^296.^21^15.^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~306~^770.^4^80.^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~307~^67.^4^16.^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~318~^60.^0^^~4~^^^^^^^^^^^~11/01/1994~ -~02019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02019~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~02019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02019~^~417~^57.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02019~^~432~^57.^1^^~1~^^^^^^^^^^^~02/01/2002~ -~02019~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~02019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02019~^~636~^140.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02020~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02020~^~268~^1386.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~301~^79.^3^11.^~1~^~A~^^^2^65.^100.^1^-68.^226.^~2, 3~^~11/01/2008~ -~02020~^~304~^77.^3^3.^~1~^~A~^^^2^67.^86.^1^36.^117.^~2, 3~^~11/01/2008~ -~02020~^~305~^414.^3^21.^~1~^~A~^^^2^350.^478.^1^142.^685.^~2, 3~^~11/01/2008~ -~02020~^~306~^1193.^3^120.^~1~^~A~^^^2^1040.^1400.^1^-331.^2718.^~2, 3~^~11/01/2008~ -~02020~^~307~^60.^3^25.^~1~^~A~^^^2^22.^99.^1^-264.^384.^~2, 3~^~11/01/2008~ -~02020~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~02020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02020~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~02020~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02020~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~417~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02020~^~432~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02020~^~636~^8.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02021~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02021~^~268~^1404.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~301~^114.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~304~^214.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~306~^1320.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~318~^30.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02021~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~321~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02021~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02021~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02021~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02022~^~268~^1989.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02022~^~301~^252.^6^22.^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~304~^163.^3^3.^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~305~^110.^4^7.^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~306~^463.^6^81.^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~307~^80.^8^13.^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~318~^800.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02022~^~320~^40.^1^^~1~^^^^^^^^^^^~07/01/2002~ -~02022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02022~^~417~^76.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02022~^~432~^76.^0^^~4~^^^^^^^^^^^~07/01/2002~ -~02022~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~02022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02022~^~636~^73.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~02023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~02023~^~268~^1136.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02023~^~301~^1990.^10^197.^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~304~^346.^8^15.^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~305~^306.^7^39.^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~306~^1522.^12^72.^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~307~^77.^15^9.^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~318~^8068.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02023~^~320~^403.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02023~^~321~^4806.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~ -~02023~^~322~^0.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~ -~02023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02023~^~334~^70.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~ -~02023~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~02/01/2003~ -~02023~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~ -~02023~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02023~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02023~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02023~^~636~^60.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02024~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02024~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~301~^266.^4^40.^~11~^~JO~^^^3^223.^430.^2^90.^440.^~2~^~11/01/2008~ -~02024~^~304~^370.^4^1.^~11~^~JO~^^^3^366.^379.^2^362.^376.^~2~^~11/01/2008~ -~02024~^~305~^828.^4^27.^~11~^~JO~^^^3^776.^872.^2^707.^947.^~2~^~11/01/2008~ -~02024~^~306~^738.^4^5.^~11~^~JO~^^^3^693.^774.^2^713.^762.^~2~^~11/01/2008~ -~02024~^~307~^13.^4^7.^~11~^~JO~^^^3^4.^27.^2^-17.^44.^~1, 2~^~11/01/2008~ -~02024~^~318~^31.^2^^~1~^~A~^^^1^24.^38.^1^^^^~11/01/2008~ -~02024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02024~^~320~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~11/01/2008~ -~02024~^~321~^18.^2^^~1~^~A~^^^1^14.^23.^1^^^^~11/01/2008~ -~02024~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~ -~02024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02024~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~ -~02024~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~ -~02024~^~338~^568.^3^117.^~1~^~A~^^^2^448.^805.^1^-930.^2066.^~2, 3~^~11/01/2008~ -~02024~^~417~^162.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02024~^~432~^162.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02024~^~636~^118.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02025~^~268~^2196.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02025~^~301~^184.^5^22.^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~304~^183.^3^24.^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~305~^213.^4^9.^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~306~^350.^5^74.^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~307~^16.^5^2.^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~318~^102.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02025~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~02025~^~321~^28.^0^^~4~^~BNA~^~02011~^^^^^^^^^~04/01/2011~ -~02025~^~322~^0.^0^^~4~^~BNA~^~02011~^^^^^^^^^~02/01/2003~ -~02025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02025~^~334~^66.^0^^~4~^~BNA~^~02011~^^^^^^^^^~04/01/2011~ -~02025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02025~^~417~^76.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02025~^~432~^76.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02025~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02025~^~636~^62.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02026~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02026~^~268~^1429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~301~^384.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~304~^113.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~305~^322.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~306~^985.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02026~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02026~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~417~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02026~^~432~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02026~^~636~^87.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02027~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02027~^~268~^1107.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~301~^1597.^3^26.^~1~^~A~^^^2^1540.^1630.^1^1257.^1935.^~2, 3~^~06/01/2009~ -~02027~^~304~^270.^3^17.^~1~^~A~^^^2^238.^290.^1^49.^489.^~2, 3~^~06/01/2009~ -~02027~^~305~^148.^3^3.^~1~^~A~^^^2^139.^157.^1^109.^186.^~2, 3~^~06/01/2009~ -~02027~^~306~^1260.^3^33.^~1~^~A~^^^2^1200.^1340.^1^836.^1683.^~2, 3~^~06/01/2009~ -~02027~^~307~^25.^3^1.^~1~^~A~^^^2^17.^38.^1^10.^39.^~2, 3~^~06/01/2009~ -~02027~^~318~^1701.^2^^~1~^~A~^^^1^1359.^2044.^1^^^^~06/01/2009~ -~02027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02027~^~320~^85.^2^^~1~^~A~^^^1^68.^102.^1^^^^~06/01/2009~ -~02027~^~321~^1007.^2^^~1~^~A~^^^1^802.^1212.^1^^^^~06/01/2009~ -~02027~^~322~^20.^2^^~1~^~A~^^^1^15.^25.^1^^^^~06/01/2009~ -~02027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02027~^~334~^7.^2^^~1~^~A~^^^1^2.^13.^1^^^^~06/01/2009~ -~02027~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~ -~02027~^~338~^1895.^2^^~1~^~A~^^^1^1665.^2125.^1^^^^~06/01/2009~ -~02027~^~417~^237.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02027~^~432~^237.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02027~^~636~^203.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02028~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02028~^~268~^1181.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~301~^229.^3^5.^~1~^~A~^^^2^217.^244.^1^157.^301.^~2, 3~^~04/01/2010~ -~02028~^~304~^178.^3^3.^~1~^~A~^^^2^172.^181.^1^139.^216.^~2, 3~^~04/01/2010~ -~02028~^~305~^314.^3^3.^~1~^~A~^^^2^287.^333.^1^271.^356.^~2, 3~^~04/01/2010~ -~02028~^~306~^2280.^3^120.^~1~^~A~^^^2^2040.^2580.^1^755.^3804.^~2, 3~^~04/01/2010~ -~02028~^~307~^68.^3^4.^~1~^~A~^^^2^55.^81.^1^16.^118.^~2, 3~^~04/01/2010~ -~02028~^~318~^49254.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02028~^~320~^2463.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02028~^~321~^26162.^8^6757.^~1~^~A~^^^4^12334.^56000.^3^4657.^47666.^~2~^~04/01/2010~ -~02028~^~322~^595.^3^24.^~1~^~A~^^^2^0.^929.^1^286.^903.^~1, 2, 3~^~04/01/2010~ -~02028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02028~^~334~^6186.^5^3717.^~1~^~A~^^^3^2230.^19395.^2^-9810.^22182.^~2~^~04/01/2010~ -~02028~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~02028~^~338~^18944.^5^8560.^~1~^~A~^^^3^2230.^33668.^2^-17889.^55776.^~2~^~04/01/2010~ -~02028~^~417~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02028~^~432~^49.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02028~^~636~^175.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02029~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02029~^~268~^1220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~301~^1140.^3^56.^~1~^~A~^^^2^1010.^1230.^1^419.^1860.^~2, 3~^~06/01/2009~ -~02029~^~304~^400.^3^29.^~1~^~A~^^^2^357.^444.^1^31.^768.^~2, 3~^~06/01/2009~ -~02029~^~305~^436.^3^13.^~1~^~A~^^^2^418.^464.^1^270.^600.^~2, 3~^~06/01/2009~ -~02029~^~306~^2683.^3^36.^~1~^~A~^^^2^2450.^3040.^1^2217.^3149.^~2, 3~^~06/01/2009~ -~02029~^~307~^452.^14^54.^~1~^^^^^^^^^^^~01/01/1977~ -~02029~^~318~^1939.^2^^~1~^~A~^^^1^1108.^2769.^1^^^^~06/01/2009~ -~02029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02029~^~320~^97.^2^^~1~^~A~^^^1^55.^138.^1^^^^~06/01/2009~ -~02029~^~321~^1152.^2^^~1~^~A~^^^1^660.^1645.^1^^^^~06/01/2009~ -~02029~^~322~^17.^2^^~1~^~A~^^^1^7.^28.^1^^^^~06/01/2009~ -~02029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02029~^~334~^4.^2^^~1~^~A~^^^1^2.^6.^1^^^^~06/01/2009~ -~02029~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~ -~02029~^~338~^2428.^2^^~1~^~A~^^^1^1545.^3312.^1^^^^~06/01/2009~ -~02029~^~417~^180.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02029~^~432~^180.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02029~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02030~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02030~^~268~^1050.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~301~^443.^6^73.^~1~^~A~^^^3^330.^652.^2^127.^757.^~2~^~04/01/2010~ -~02030~^~304~^171.^6^17.^~1~^~A~^^^3^143.^238.^2^94.^247.^~2~^~04/01/2010~ -~02030~^~305~^158.^6^8.^~1~^~A~^^^3^123.^176.^2^122.^194.^~2~^~04/01/2010~ -~02030~^~306~^1329.^6^297.^~1~^~A~^^^3^916.^2440.^2^48.^2609.^~2~^~04/01/2010~ -~02030~^~307~^20.^5^2.^~1~^~A~^^^3^15.^29.^2^8.^32.^~2~^~04/01/2010~ -~02030~^~318~^547.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02030~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02030~^~321~^310.^4^58.^~1~^~A~^^^2^67.^540.^2^52.^566.^~2, 3~^~04/01/2010~ -~02030~^~322~^12.^4^4.^~1~^~A~^^^2^0.^34.^1^-48.^73.^~1, 2, 3~^~04/01/2010~ -~02030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02030~^~334~^25.^4^18.^~1~^~A~^^^2^1.^85.^1^-209.^258.^~1, 2, 3~^~04/01/2010~ -~02030~^~337~^20.^4^17.^~1~^~A~^^^2^0.^69.^1^-177.^217.^~1, 2, 3~^~04/01/2010~ -~02030~^~338~^454.^4^20.^~1~^~A~^^^2^167.^721.^1^316.^591.^~2, 3~^~04/01/2010~ -~02030~^~417~^17.^3^3.^~1~^~A~^^^2^13.^23.^1^-32.^67.^~2~^~04/01/2010~ -~02030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02030~^~432~^17.^3^3.^~1~^~A~^^^2^13.^23.^1^-32.^67.^^~04/01/2010~ -~02030~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02030~^~636~^92.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02031~^~268~^1331.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02031~^~301~^148.^50^8.^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~304~^152.^4^10.^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~305~^293.^51^10.^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~306~^2014.^8^128.^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~307~^30.^5^8.^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~318~^41610.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02031~^~320~^2081.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~02031~^~321~^21840.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~322~^0.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02031~^~334~^6252.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~337~^0.^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~338~^13157.^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~417~^106.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02031~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02031~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02031~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02032~^~268~^1238.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~02032~^~301~^265.^12^30.^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~304~^90.^12^12.^~1~^^^^^^^^^^^~02/01/1995~ -~02032~^~305~^176.^11^12.^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~306~^73.^9^7.^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~307~^5.^7^0.^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02032~^~320~^0.^1^^~1~^^^^^^^^^^^~03/01/2002~ -~02032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02032~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02032~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2002~ -~02032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~02032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02032~^~636~^55.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02033~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~02033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~02033~^~268~^2196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~301~^1438.^3^69.^~11~^~JO~^^^3^1320.^1560.^2^1139.^1736.^~2~^~06/01/2008~ -~02033~^~304~^347.^8^11.^~1~^~A~^^^2^333.^387.^1^198.^494.^~2~^~06/01/2008~ -~02033~^~305~^870.^9^78.^~1~^~A~^^^3^788.^1277.^2^532.^1206.^~2~^~06/01/2008~ -~02033~^~306~^719.^9^44.^~1~^~A~^^^3^601.^1054.^2^528.^909.^~2~^~06/01/2008~ -~02033~^~307~^26.^5^13.^~11~^~JO~^^^3^8.^54.^2^-33.^85.^~2~^~06/01/2008~ -~02033~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~02033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02033~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~02033~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02033~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~417~^82.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02033~^~432~^82.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02033~^~638~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~02033~^~639~^29.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~02033~^~641~^109.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~02034~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02034~^~268~^1284.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02034~^~301~^996.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~304~^224.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~305~^171.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~306~^684.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~307~^27.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~318~^2632.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02034~^~320~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~02034~^~321~^1568.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02034~^~322~^0.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02034~^~334~^23.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02034~^~337~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2014~ -~02034~^~338~^1107.^0^^~4~^~RA~^^^^^^^^^^~07/01/2014~ -~02034~^~417~^138.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02034~^~432~^138.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02034~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02034~^~636~^96.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02035~^~268~^1431.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~02035~^~301~^682.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~304~^136.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~305~^118.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~306~^663.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~307~^52.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~318~^261.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02035~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~02035~^~321~^99.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~ -~02035~^~322~^1.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~ -~02035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02035~^~334~^114.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~ -~02035~^~337~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~02035~^~338~^100.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~02035~^~417~^24.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~02035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02035~^~432~^24.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~02035~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02035~^~636~^71.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02036~^~268~^1387.^0^^~4~^^^^^^^^^^^ -~02036~^~301~^1280.^4^188.^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~304~^220.^3^5.^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~305~^70.^3^20.^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~306~^955.^5^70.^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~307~^50.^6^3.^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~318~^3128.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02036~^~320~^156.^1^^~1~^^^^^^^^^^^~07/01/2002~ -~02036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02036~^~417~^307.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1998~ -~02036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02036~^~432~^307.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2002~ -~02036~^~435~^307.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~02036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02036~^~636~^58.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~02037~^~268~^1298.^0^^~4~^^^^^^^^^^^ -~02037~^~301~^111.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~304~^264.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~305~^252.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~306~^1724.^3^251.^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~307~^148.^2^^~1~^^^^^^^^^^^~12/01/2001~ -~02037~^~318~^530.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02037~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2001~ -~02037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02037~^~417~^93.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02037~^~432~^93.^0^^~4~^^^^^^^^^^^~12/01/2001~ -~02037~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~12/01/2001~ -~02037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02038~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02038~^~268~^1317.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02038~^~301~^1652.^6^107.^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~304~^428.^5^19.^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~305~^91.^4^7.^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~306~^1070.^7^100.^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~307~^11.^4^3.^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~318~^5900.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02038~^~320~^295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02038~^~321~^3485.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~02038~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~02038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02038~^~334~^109.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~02038~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~04/01/2003~ -~02038~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~ -~02038~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02038~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02038~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02038~^~636~^244.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02039~^~268~^1138.^0^^~4~^^^^^^^^^^^ -~02039~^~301~^2132.^5^213.^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~304~^377.^3^18.^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~305~^140.^3^17.^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~306~^1051.^5^45.^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~307~^24.^7^5.^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~318~^5130.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02039~^~320~^257.^1^^~1~^^^^^^^^^^^~03/01/2002~ -~02039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02039~^~636~^31.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02041~^~268~^1236.^0^^~4~^^^^^^^^^^^ -~02041~^~301~^1139.^4^180.^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~304~^347.^3^64.^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~305~^313.^3^12.^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~306~^3020.^6^356.^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~307~^62.^4^25.^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~318~^4200.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02041~^~320~^210.^1^^~1~^^^^^^^^^^^~03/01/2002~ -~02041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02041~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02041~^~432~^274.^0^^~4~^^^^^^^^^^^~03/01/2002~ -~02041~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~02041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02041~^~636~^81.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~02042~^~268~^1156.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02042~^~301~^1890.^4^196.^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~304~^220.^4^56.^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~305~^201.^4^30.^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~306~^814.^27^47.^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~307~^55.^10^12.^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~318~^3800.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02042~^~320~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02042~^~321~^2264.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02042~^~322~^0.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02042~^~334~^33.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~ -~02042~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~04/01/2003~ -~02042~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~ -~02042~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02042~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~02042~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02042~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02042~^~636~^163.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02043~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~02043~^~268~^1305.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~301~^168.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~304~^208.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~305~^299.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~306~^2080.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02043~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02043~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02043~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02044~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~02044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~02044~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02044~^~301~^177.^3^23.^~1~^~A~^^^2^143.^200.^1^-115.^469.^~2~^~12/01/2006~ -~02044~^~304~^64.^3^17.^~1~^~A~^^^2^47.^82.^1^-153.^281.^~2~^~12/01/2006~ -~02044~^~305~^56.^3^12.^~1~^~A~^^^2^43.^72.^1^-106.^218.^~2~^~12/01/2006~ -~02044~^~306~^295.^3^166.^~1~^~A~^^^2^128.^565.^1^-1824.^2413.^~2~^~12/01/2006~ -~02044~^~307~^4.^2^^~1~^~A~^^^1^3.^4.^^^^^~12/01/2006~ -~02044~^~318~^5275.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~02044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02044~^~320~^264.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~02044~^~321~^3142.^10^1361.^~1~^~A~^^^3^350.^4820.^2^-2714.^8998.^~2~^~02/01/2003~ -~02044~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02044~^~334~^46.^7^43.^~1~^~A~^^^2^3.^89.^1^-503.^595.^~1, 2~^~02/01/2003~ -~02044~^~337~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~338~^5650.^7^1400.^~1~^~A~^^^2^4250.^7050.^1^-12138.^23438.^~2~^~02/01/2003~ -~02044~^~417~^68.^3^4.^~1~^~A~^^^2^57.^73.^1^12.^124.^~2~^~12/01/2006~ -~02044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02044~^~432~^68.^3^4.^~1~^~A~^^^2^57.^73.^1^12.^124.^^~12/01/2006~ -~02044~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~02044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02045~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02045~^~268~^180.^0^^~4~^^^^^^^^^^^ -~02045~^~301~^208.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~304~^55.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~305~^66.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~306~^738.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~307~^61.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~318~^7718.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02045~^~320~^386.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~02045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02045~^~417~^150.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02045~^~432~^150.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~02045~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02046~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~02046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~02046~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~301~^63.^18^0.^~1~^~A~^^^3^58.^74.^6^61.^63.^~2, 3~^~04/01/2014~ -~02046~^~304~^48.^18^0.^~1~^~A~^^^3^45.^51.^10^47.^48.^~2, 3~^~04/01/2014~ -~02046~^~305~^108.^18^1.^~1~^~A~^^^3^99.^129.^9^105.^110.^~2, 3~^~04/01/2014~ -~02046~^~306~^152.^18^5.^~1~^~A~^^^3^133.^184.^8^140.^164.^~2, 3~^~04/01/2014~ -~02046~^~307~^1104.^12^22.^~1~^~A~^^^1^1000.^1270.^7^1050.^1156.^~2, 3~^~04/01/2014~ -~02046~^~318~^109.^3^5.^~1~^~A~^^^1^102.^124.^1^45.^172.^~2, 3~^~04/01/2014~ -~02046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02046~^~320~^5.^3^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~04/01/2014~ -~02046~^~321~^51.^3^2.^~1~^~A~^^^1^48.^58.^1^22.^79.^~2, 3~^~04/01/2014~ -~02046~^~322~^1.^3^0.^~1~^~A~^^^1^1.^2.^1^0.^3.^~2, 3~^~04/01/2014~ -~02046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02046~^~334~^27.^3^1.^~1~^~A~^^^1^24.^32.^1^6.^47.^~2, 3~^~04/01/2014~ -~02046~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~338~^113.^3^7.^~1~^~A~^^^1^106.^133.^1^23.^203.^~2, 3~^~04/01/2014~ -~02046~^~417~^7.^4^0.^~1~^~A~^^^2^7.^8.^1^5.^9.^~2, 3~^~04/01/2006~ -~02046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02046~^~432~^7.^4^0.^~1~^~A~^^^2^7.^8.^1^5.^9.^^~11/01/2006~ -~02046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02047~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~268~^0.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~02047~^~301~^24.^3^11.^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~304~^1.^3^0.^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~305~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~306~^8.^3^1.^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~307~^38758.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~02047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~417~^0.^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02047~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~02047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02047~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02047~^~636~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~208~^21.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~268~^90.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02048~^~301~^7.^4^0.^~6~^~JA~^^^2^5.^8.^2^6.^7.^~2, 3~^~03/01/2005~ -~02048~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^2.^7.^~2, 3~^~02/01/2005~ -~02048~^~305~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^6.^9.^~2, 3~^~02/01/2005~ -~02048~^~306~^73.^4^5.^~6~^~JA~^^^2^59.^93.^1^1.^144.^~2~^~03/01/2005~ -~02048~^~307~^5.^4^0.^~6~^~JA~^^^2^5.^8.^1^-5.^16.^~2~^~03/01/2005~ -~02048~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~02048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~417~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02048~^~432~^0.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~02048~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02048~^~636~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02049~^~268~^423.^0^^~4~^^^^^^^^^^^ -~02049~^~301~^405.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~304~^160.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~305~^106.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~306~^609.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~307~^9.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~318~^4751.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~02049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02049~^~320~^238.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~02049~^~321~^2851.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~02049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02049~^~417~^45.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02049~^~432~^45.^2^^~1~^^^^^^^^^^^~05/01/2003~ -~02049~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~02049~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02050~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~268~^1205.^0^^~4~^^^^^^^^^^^ -~02050~^~301~^11.^4^0.^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~304~^12.^4^1.^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~305~^6.^4^0.^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~306~^148.^4^31.^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~307~^9.^4^3.^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~318~^0.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~02050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~417~^0.^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02050~^~432~^0.^2^^~1~^^^^^^^^^^^~09/01/2002~ -~02050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~02050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02051~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02051~^~268~^992.^0^^~4~^^^^^^^^^^^ -~02051~^~301~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~304~^5.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~305~^22.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~306~^98.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~307~^4.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02051~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~02051~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02051~^~417~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02051~^~432~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~02051~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02052~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~268~^234.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~02052~^~301~^3.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~304~^1.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~305~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~306~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~307~^3.^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02052~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~02052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~417~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02052~^~432~^0.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~02052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02053~^~208~^18.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~268~^76.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02053~^~301~^6.^4^2.^~6~^~JA~^^^2^3.^8.^1^-21.^33.^~2~^~03/01/2005~ -~02053~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~01/01/2005~ -~02053~^~305~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~01/01/2005~ -~02053~^~306~^2.^4^0.^~6~^~JA~^^^2^1.^3.^1^0.^3.^~2~^~03/01/2005~ -~02053~^~307~^2.^4^0.^~6~^~JA~^^^2^1.^3.^1^-4.^8.^~2~^~03/01/2005~ -~02053~^~318~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~02053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~417~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02053~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~02054~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1994~ -~02054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~02054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~02054~^~268~^96.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~02054~^~301~^40.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~304~^33.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~305~^10.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~306~^40.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~307~^2348.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~02054~^~318~^138.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02054~^~320~^7.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02054~^~321~^83.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02054~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02054~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02054~^~337~^0.^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~ -~02054~^~338~^0.^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~ -~02054~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02054~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~02054~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~02054~^~636~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~02055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~02055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~02055~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~02055~^~301~^56.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~304~^27.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~305~^31.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~306~^246.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~307~^420.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~02055~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02055~^~321~^1.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~02055~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~02055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02055~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~02055~^~337~^0.^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~ -~02055~^~338~^10.^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~ -~02055~^~417~^57.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02055~^~432~^57.^2^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~02055~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~02055~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02055~^~636~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02063~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02063~^~268~^548.^0^^~4~^^^^^^^^^^^ -~02063~^~301~^317.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~304~^91.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~305~^66.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~306~^668.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~307~^26.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~318~^2924.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02063~^~320~^146.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~02063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02063~^~417~^109.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02063~^~432~^109.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~02063~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02063~^~636~^44.^0^^~1~^^^^^^^^^^^~04/01/1996~ -~02064~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02064~^~268~^293.^0^^~4~^^^^^^^^^^^ -~02064~^~301~^243.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~304~^80.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~305~^73.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~306~^569.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~307~^31.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~318~^4248.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02064~^~320~^212.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~02064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02064~^~417~^114.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02064~^~432~^114.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~02064~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02064~^~636~^13.^0^^~1~^^^^^^^^^^^~04/01/1996~ -~02065~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02065~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02065~^~301~^199.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~304~^63.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~305~^60.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~306~^458.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~307~^30.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~318~^4054.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02065~^~320~^203.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~02065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02065~^~417~^105.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02065~^~432~^105.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~02065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02065~^~636~^10.^0^^~1~^^^^^^^^^^^~04/01/1996~ -~02066~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02066~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~02066~^~301~^1488.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~304~^602.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~305~^276.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~306~^1924.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~307~^344.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~318~^10579.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~02066~^~320~^529.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~02066~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~02066~^~417~^530.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~02066~^~432~^530.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~435~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~02066~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02066~^~636~^82.^1^^~1~^^^^^^^^^^^~04/01/1996~ -~02068~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~02068~^~268~^79.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~02068~^~301~^6.^6^1.^~6~^~JA~^^^3^4.^10.^2^1.^11.^~2~^~03/01/2006~ -~02068~^~304~^4.^4^1.^~1~^~A~^^^2^1.^5.^1^-12.^19.^~2~^~03/01/2006~ -~02068~^~305~^8.^4^1.^~1~^~A~^^^2^7.^12.^1^-8.^25.^~2~^~03/01/2006~ -~02068~^~306~^39.^5^11.^~6~^~JA~^^^3^18.^59.^2^-10.^88.^~2~^~03/01/2006~ -~02068~^~307~^8.^6^1.^~6~^~JA~^^^3^3.^10.^2^2.^13.^~2~^~03/01/2006~ -~02068~^~318~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~ -~02068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~02069~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~02069~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~02069~^~301~^27.^4^3.^~6~^~JA~^^^2^21.^31.^1^-12.^67.^~2~^~02/01/2006~ -~02069~^~304~^12.^3^2.^~1~^~A~^^^1^8.^16.^2^2.^21.^~2, 3~^~02/01/2006~ -~02069~^~305~^19.^3^4.^~1~^~A~^^^1^9.^26.^2^-2.^40.^~2, 3~^~02/01/2006~ -~02069~^~306~^112.^6^20.^~6~^~JA~^^^3^80.^176.^2^25.^198.^~2~^~03/01/2006~ -~02069~^~307~^23.^4^2.^~6~^~JA~^^^2^9.^31.^1^-11.^56.^~2~^~02/01/2006~ -~02069~^~318~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~ -~02069~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~02074~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~307~^17000.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~208~^322.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~268~^1346.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~306~^1000.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~307~^7203.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~318~^3744.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~417~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~432~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~208~^335.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~268~^1404.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~307~^4616.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~318~^2816.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~03000~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03000~^~262~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~263~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03000~^~301~^444.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~304~^82.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~305~^244.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~306~^333.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~307~^375.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~03000~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03000~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~338~^61.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~417~^20.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~431~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03000~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03000~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03000~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~636~^7.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~639~^1.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~641~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03001~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03001~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~268~^1454.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03001~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~305~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~306~^54.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~307~^89.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03001~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03001~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03001~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03002~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03002~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~301~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~03/01/2007~ -~03002~^~304~^11.^2^^~1~^~A~^^^1^10.^11.^1^^^^~03/01/2007~ -~03002~^~305~^93.^4^8.^~6~^~JA~^^^2^84.^110.^2^56.^129.^~4~^~03/01/2007~ -~03002~^~306~^187.^17^17.^~6~^~JA~^^^2^160.^220.^2^110.^262.^~4~^~03/01/2007~ -~03002~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03002~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~319~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03002~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~324~^15.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~417~^8.^2^^~1~^~A~^^^1^5.^11.^1^^^^~03/01/2007~ -~03002~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03002~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03002~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~601~^51.^2^^~1~^~A~^^^1^32.^70.^1^^^^~03/01/2007~ -~03003~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03003~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~301~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~304~^11.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~305~^93.^4^8.^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~306~^187.^17^17.^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03003~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~319~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2007~ -~03003~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~417~^8.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~431~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03003~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~601~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03005~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03005~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~305~^98.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~306~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03005~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~03005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~324~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03005~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~03005~^~601~^33.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03007~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03007~^~301~^5.^16^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~305~^94.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~306~^223.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~307~^42.^6^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03007~^~319~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03007~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03007~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03007~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03007~^~601~^48.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03008~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03008~^~301~^6.^19^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~305~^81.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~306~^204.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~307~^44.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03008~^~318~^5.^0^^~4~^~NC~^~10011~^^^^^^^^^~03/01/2009~ -~03008~^~319~^2.^0^^~4~^~BFSN~^~10011~^^^^^^^^^~02/01/2003~ -~03008~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03008~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03008~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03008~^~601~^24.^0^^~1~^^^^^^^^^^^~02/01/1994~ -~03009~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03009~^~301~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~304~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~305~^89.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~306~^210.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~307~^44.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03009~^~318~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03009~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03009~^~417~^2.^3^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03009~^~432~^2.^3^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03009~^~601~^29.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03010~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03010~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03010~^~301~^7.^2^^~6~^~JA~^^^2^7.^7.^1^^^^~03/01/2007~ -~03010~^~304~^13.^4^0.^~6~^~JA~^^^2^13.^13.^1^13.^13.^~4~^~03/01/2007~ -~03010~^~305~^104.^4^6.^~6~^~JA~^^^2^97.^110.^1^20.^186.^~4~^~03/01/2007~ -~03010~^~306~^193.^1^^~6~^~JA~^^^2^180.^205.^1^^^^~03/01/2007~ -~03010~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03010~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2007~ -~03010~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~324~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03010~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03010~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03010~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03010~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03011~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03011~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03011~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03011~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03011~^~301~^7.^19^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~305~^91.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~306~^211.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03011~^~318~^27.^17^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03011~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~03011~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03011~^~324~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03011~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03011~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~03011~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03011~^~601~^38.^0^^~1~^^^^^^^^^^^~02/01/1994~ -~03012~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03012~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03012~^~301~^64.^28^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~305~^97.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~306~^141.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03012~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03012~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03012~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~324~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03012~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03012~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03012~^~601~^61.^0^^~1~^^^^^^^^^^^~02/01/1994~ -~03013~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03013~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03013~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03013~^~301~^55.^19^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~305~^90.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~306~^122.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03013~^~318~^40.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~319~^11.^0^^~4~^~BFSN~^~05014~^^^^^^^^^~02/01/2003~ -~03013~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~03013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~417~^11.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03013~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03013~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03013~^~601~^59.^0^^~1~^^^^^^^^^^^~02/01/1994~ -~03014~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03014~^~268~^787.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03014~^~301~^73.^7^6.^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~304~^14.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~305~^121.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~306~^106.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03014~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03014~^~319~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03014~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03014~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03014~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03014~^~324~^4.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03014~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03014~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03014~^~417~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03014~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03014~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03014~^~601~^78.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03015~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03015~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03015~^~301~^41.^3^9.^~1~^~A~^^^1^29.^59.^2^0.^80.^~2, 3~^~03/01/2007~ -~03015~^~304~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~03/01/2007~ -~03015~^~305~^117.^3^3.^~1~^~A~^^^1^110.^120.^2^102.^131.^~2, 3~^~03/01/2007~ -~03015~^~306~^135.^3^13.^~1~^~A~^^^1^115.^160.^2^78.^191.^~2, 3~^~03/01/2007~ -~03015~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03015~^~318~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~03/01/2007~ -~03015~^~319~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~02/01/2003~ -~03015~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~324~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~417~^8.^3^2.^~1~^~A~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~ -~03015~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03015~^~432~^8.^3^2.^~1~^~AS~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~ -~03015~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03015~^~601~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^47.^68.^~2, 3~^~03/01/2007~ -~03016~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03016~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03016~^~301~^41.^3^9.^~1~^~A~^^^1^29.^59.^2^0.^80.^~2, 3~^~03/01/2007~ -~03016~^~304~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~03/01/2007~ -~03016~^~305~^117.^3^3.^~1~^~A~^^^1^110.^120.^2^102.^131.^~2, 3~^~03/01/2007~ -~03016~^~306~^135.^3^13.^~1~^~A~^^^1^115.^160.^2^78.^191.^~2, 3~^~03/01/2007~ -~03016~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03016~^~318~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~08/01/2004~ -~03016~^~319~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~02/01/2003~ -~03016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03016~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~324~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~417~^8.^3^2.^~1~^~A~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~ -~03016~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03016~^~432~^8.^3^2.^~1~^~AS~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~ -~03016~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03016~^~601~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^47.^68.^~2, 3~^~03/01/2007~ -~03017~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03017~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03017~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03017~^~268~^787.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03017~^~301~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~306~^120.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~307~^295.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03017~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~03017~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03017~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03017~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03017~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03017~^~324~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03017~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03017~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03017~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03017~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03017~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03017~^~601~^65.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03019~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~268~^1380.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~305~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~306~^312.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~307~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~321~^102.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~334~^76.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~338~^81.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03021~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03021~^~301~^34.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~305~^103.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~306~^114.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03021~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03021~^~319~^21.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03021~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03021~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03021~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03021~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03021~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03021~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03021~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03021~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03021~^~601~^70.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03022~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~268~^266.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~305~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~306~^106.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~307~^20.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~318~^417.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~321~^206.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~322~^78.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~334~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03023~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~268~^1440.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03023~^~301~^535.^5^10.^~1~^~A~^^^1^519.^577.^4^504.^564.^~2, 3~^~02/01/2015~ -~03023~^~304~^60.^5^0.^~1~^~A~^^^1^59.^62.^4^58.^61.^~2, 3~^~02/01/2015~ -~03023~^~305~^448.^5^6.^~1~^~A~^^^1^438.^474.^4^429.^466.^~2, 3~^~02/01/2015~ -~03023~^~306~^196.^5^2.^~1~^~A~^^^1^188.^201.^4^189.^202.^~2, 3~^~02/01/2015~ -~03023~^~307~^13.^5^1.^~1~^~A~^^^1^10.^17.^4^9.^16.^~2, 3~^~02/01/2015~ -~03023~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~334~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~417~^16.^3^2.^~1~^~A~^^^1^13.^20.^2^5.^25.^~2, 3~^~02/01/2015~ -~03023~^~431~^6.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03023~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03023~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03023~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03024~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~268~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~301~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~306~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~307~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03024~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03024~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~268~^201.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03025~^~301~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~304~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~306~^123.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~307~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~318~^294.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03025~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03025~^~321~^170.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~322~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~334~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~337~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~338~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03025~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~268~^194.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03026~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~306~^141.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~318~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03026~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03026~^~321~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~334~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03026~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03041~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03041~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03041~^~301~^14.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~304~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~305~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03041~^~306~^46.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03041~^~307~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~318~^416.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03041~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03041~^~417~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03041~^~432~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03042~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03042~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03042~^~301~^14.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~304~^7.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~305~^29.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~306~^47.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~307~^52.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~318~^660.^3^49.^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03042~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03042~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03042~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03043~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03043~^~268~^322.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03043~^~301~^18.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~306~^122.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03043~^~318~^1163.^3^227.^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03043~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03043~^~417~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03043~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03043~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03044~^~208~^61.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03044~^~268~^255.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~ -~03044~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~304~^12.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~305~^39.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~306~^112.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~307~^38.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~318~^878.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03044~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03044~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03044~^~321~^420.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03044~^~322~^213.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03044~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03044~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03044~^~337~^42.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03044~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03044~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~03044~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03044~^~432~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03044~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03044~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03045~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03045~^~268~^247.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03045~^~301~^14.^19^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~304~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~305~^44.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~306~^72.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~307~^35.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03045~^~318~^691.^19^24.^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03045~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03045~^~321~^338.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03045~^~322~^154.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03045~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03045~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03045~^~337~^250.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03045~^~338~^12.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03045~^~417~^9.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03045~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03045~^~432~^7.^0^^~4~^^^^^^^^^^^ -~03045~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03045~^~601~^4.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03046~^~208~^99.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03046~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03046~^~268~^414.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~301~^54.^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~304~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~305~^56.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~306~^32.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~307~^282.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~03046~^~318~^494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03046~^~319~^32.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~03046~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03046~^~321~^230.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03046~^~322~^2.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03046~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~03046~^~334~^3.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03046~^~337~^1632.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03046~^~338~^69.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03046~^~417~^36.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03046~^~432~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~03046~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03046~^~601~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03047~^~208~^63.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~268~^264.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~ -~03047~^~301~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~304~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~305~^38.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~306~^87.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~307~^15.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~318~^716.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03047~^~321~^350.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03047~^~322~^159.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03047~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03047~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03047~^~337~^476.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~338~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03047~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03047~^~432~^4.^0^^~4~^^^^^^^^^^^ -~03047~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03047~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03048~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03048~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03048~^~301~^102.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~305~^81.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~306~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~307~^264.^0^^~8~^~LC~^^^^^^^^^^~03/01/2016~ -~03048~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03048~^~319~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03048~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03048~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~417~^25.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03048~^~431~^22.^0^^~4~^~O~^^^^^^^^^^~05/01/2010~ -~03048~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2010~ -~03048~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03048~^~601~^7.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03049~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03049~^~268~^343.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03049~^~301~^11.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~305~^35.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~306~^120.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~307~^32.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03049~^~318~^502.^3^100.^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03049~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03049~^~417~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03049~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03049~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03050~^~208~^68.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03050~^~268~^285.^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~03050~^~301~^15.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~304~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~305~^35.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~306~^122.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~307~^30.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03050~^~318~^1255.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~03050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03050~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~03050~^~321~^601.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03050~^~322~^304.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03050~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03050~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~03050~^~337~^1030.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~03050~^~338~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03050~^~417~^27.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03050~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03050~^~432~^3.^0^^~4~^^^^^^^^^^^ -~03050~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~03050~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03051~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03051~^~268~^314.^0^^~4~^^^^^^^^^^^ -~03051~^~301~^22.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~304~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~305~^45.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~306~^163.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~307~^239.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~03051~^~318~^443.^6^116.^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03051~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03051~^~417~^32.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03051~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03051~^~432~^6.^0^^~4~^^^^^^^^^^^ -~03051~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03053~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03053~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~301~^17.^2^^~1~^~A~^^^1^13.^20.^1^^^^~04/01/2007~ -~03053~^~304~^10.^2^^~1~^~A~^^^1^9.^11.^1^^^^~04/01/2007~ -~03053~^~305~^33.^2^^~1~^~A~^^^1^27.^38.^1^^^^~04/01/2007~ -~03053~^~306~^145.^2^^~1~^~A~^^^1^130.^160.^1^^^^~04/01/2007~ -~03053~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03053~^~318~^4926.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~03053~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03053~^~320~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~03053~^~321~^2545.^2^^~1~^~A~^^^1^2390.^2700.^1^^^^~04/01/2007~ -~03053~^~322~^810.^2^^~1~^~A~^^^1^590.^1030.^1^^^^~04/01/2007~ -~03053~^~324~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03053~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~04/01/2007~ -~03053~^~337~^627.^2^^~1~^~A~^^^1^233.^1020.^1^^^^~04/01/2007~ -~03053~^~338~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03053~^~417~^6.^2^^~1~^~A~^^^1^2.^9.^1^^^^~04/01/2007~ -~03053~^~431~^3.^2^^~1~^~A~^^^1^1.^4.^1^^^^~04/01/2007~ -~03053~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03053~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~601~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~04/01/2007~ -~03053~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03054~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03054~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03054~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03054~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03054~^~301~^17.^2^^~1~^~A~^^^1^13.^20.^1^^^^~03/01/2007~ -~03054~^~304~^10.^2^^~1~^~A~^^^1^9.^11.^1^^^^~03/01/2007~ -~03054~^~305~^33.^2^^~1~^~A~^^^1^27.^38.^1^^^^~03/01/2007~ -~03054~^~306~^145.^2^^~1~^~A~^^^1^130.^160.^1^^^^~03/01/2007~ -~03054~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03054~^~318~^4926.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03054~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03054~^~320~^246.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03054~^~321~^2545.^2^^~1~^~A~^^^1^2390.^2700.^1^^^^~03/01/2007~ -~03054~^~322~^810.^2^^~1~^~A~^^^1^590.^1030.^1^^^^~03/01/2007~ -~03054~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~ -~03054~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2007~ -~03054~^~337~^627.^2^^~1~^~A~^^^1^233.^1020.^1^^^^~03/01/2007~ -~03054~^~338~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~417~^6.^2^^~1~^~A~^^^1^2.^9.^1^^^^~03/01/2007~ -~03054~^~431~^3.^2^^~1~^~A~^^^1^1.^4.^1^^^^~03/01/2007~ -~03054~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03054~^~601~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~03/01/2007~ -~03054~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03055~^~208~^96.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~03055~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03055~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03055~^~268~^402.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03055~^~301~^19.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~304~^15.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~305~^24.^1^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~306~^127.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~307~^38.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03055~^~318~^4436.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~03055~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03055~^~320~^222.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03055~^~321~^2165.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03055~^~322~^993.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03055~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03055~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03055~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03055~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03055~^~432~^11.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03055~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03055~^~601~^12.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03067~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03067~^~268~^213.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03067~^~301~^13.^21^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~304~^7.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~305~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~306~^95.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~307~^13.^15^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~318~^1483.^23^129.^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~319~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03067~^~320~^138.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03067~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03067~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03067~^~601~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03068~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03068~^~301~^27.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~304~^13.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~305~^52.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~306~^143.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~307~^25.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~318~^2182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03068~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~320~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03068~^~321~^1060.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~322~^495.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03068~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~338~^40.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~417~^15.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~ -~03068~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~ -~03068~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03068~^~601~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03069~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03069~^~301~^27.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~304~^13.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~305~^52.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~306~^143.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~307~^25.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~318~^1729.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03069~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03069~^~321~^840.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~322~^392.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03069~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~417~^15.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~ -~03069~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~ -~03069~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03069~^~601~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03070~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03070~^~268~^209.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03070~^~301~^37.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~304~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~305~^24.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~306~^66.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~318~^1384.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~03070~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03070~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03070~^~321~^674.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03070~^~322~^313.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03070~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03070~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03070~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~03070~^~338~^40.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~03070~^~417~^5.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03070~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03070~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03070~^~601~^4.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03072~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03072~^~268~^326.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03072~^~301~^36.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~305~^51.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~306~^92.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~307~^25.^0^^~4~^~T~^^^^^^^^^^~07/01/2010~ -~03072~^~318~^1010.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03072~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03072~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03072~^~321~^495.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03072~^~322~^214.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03072~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03072~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03072~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03072~^~338~^178.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03072~^~417~^16.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03072~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03072~^~432~^1.^0^^~4~^^^^^^^^^^^ -~03072~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03072~^~601~^29.^11^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03073~^~208~^59.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03073~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~268~^247.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03073~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~304~^14.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~305~^47.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~306~^158.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~318~^4132.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~320~^207.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03073~^~321~^2009.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~322~^938.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03073~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03073~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03073~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03073~^~601~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03075~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03075~^~268~^264.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03075~^~301~^28.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~304~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03075~^~305~^31.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~306~^55.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~307~^20.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~318~^1417.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03075~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03075~^~417~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03075~^~432~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03076~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03076~^~268~^268.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03076~^~301~^26.^4^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03076~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~306~^59.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~307~^26.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~318~^1051.^4^72.^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03076~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03076~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03076~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03077~^~208~^60.^1^^~9~^~MC~^^^^^^^^^^~07/01/1998~ -~03077~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~268~^251.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03077~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~304~^24.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~305~^50.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~306~^133.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~307~^11.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~318~^555.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03077~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03077~^~321~^282.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~322~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03077~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~337~^290.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~338~^341.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~432~^9.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03077~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03077~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03079~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03079~^~268~^184.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03079~^~301~^32.^4^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~305~^25.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~306~^63.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~307~^21.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~318~^991.^4^87.^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03079~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03079~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03079~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03081~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03081~^~268~^218.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03081~^~301~^32.^4^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~304~^9.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~305~^29.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~306~^73.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~307~^17.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~318~^994.^4^84.^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03081~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03081~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03081~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03082~^~208~^52.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03082~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~268~^218.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03082~^~301~^18.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~306~^91.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~307~^19.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03082~^~318~^1622.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03082~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~320~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03082~^~321~^789.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~322~^368.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03082~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~338~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03082~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03082~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03082~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~208~^56.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03083~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~268~^234.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~ -~03083~^~301~^24.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~305~^37.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~306~^86.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~307~^23.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03083~^~318~^1886.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03083~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03083~^~321~^927.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~322~^410.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~324~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03083~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~337~^1127.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~338~^134.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03083~^~432~^8.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~03083~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03083~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~208~^48.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03084~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~268~^201.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03084~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~305~^44.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~306~^102.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~307~^20.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~318~^4396.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~320~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03084~^~321~^2139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~322~^998.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03084~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~338~^76.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~417~^10.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03084~^~432~^10.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03084~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03084~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~208~^53.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03085~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~268~^222.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03085~^~301~^16.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~306~^98.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~307~^45.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03085~^~318~^4325.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03085~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~320~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03085~^~321~^2107.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~322~^976.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03085~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~338~^174.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~417~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03085~^~432~^7.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~03085~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03085~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~208~^67.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03089~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03089~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03089~^~268~^280.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03089~^~301~^66.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~305~^86.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~306~^67.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~307~^88.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~03089~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03089~^~319~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03089~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~324~^2.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~03089~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03089~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03089~^~431~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03089~^~432~^5.^0^^~4~^^^^^^^^^^^ -~03089~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03089~^~601~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03090~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03090~^~301~^51.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~305~^59.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~306~^44.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~307~^183.^0^^~8~^~LC~^^^^^^^^^^~03/01/2016~ -~03090~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03090~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03090~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~324~^2.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~03090~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03090~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03090~^~432~^2.^0^^~1~^^^^^^^^^^^ -~03090~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03090~^~601~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03091~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03091~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03091~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~301~^39.^26^1.^~6~^~JA~^^^2^37.^42.^2^33.^45.^~4~^~04/01/2007~ -~03091~^~304~^20.^4^2.^~6~^~JA~^^^2^17.^24.^2^11.^28.^~4~^~04/01/2007~ -~03091~^~305~^41.^2^^~1~^~A~^^^1^38.^44.^1^^^^~04/01/2007~ -~03091~^~306~^146.^17^8.^~6~^~JA~^^^2^130.^158.^2^110.^181.^~4~^~04/01/2007~ -~03091~^~307~^7.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03091~^~318~^355.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03091~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03091~^~321~^197.^2^^~1~^~A~^^^1^195.^199.^1^^^^~04/01/2007~ -~03091~^~322~^15.^2^^~1~^~A~^^^1^11.^18.^1^^^~1~^~04/01/2007~ -~03091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03091~^~334~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^~1~^~04/01/2007~ -~03091~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~ -~03091~^~338~^526.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03091~^~417~^24.^2^^~1~^~A~^^^1^21.^26.^1^^^^~04/01/2007~ -~03091~^~431~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03091~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03091~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03092~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03092~^~262~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~263~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~268~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03092~^~301~^65.^13^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~305~^19.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~306~^128.^13^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03092~^~318~^433.^13^37.^~1~^^^^^^^^^^^~08/01/2004~ -~03092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03092~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03092~^~321~^292.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~322~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03092~^~334~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~337~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~338~^493.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~417~^33.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03092~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03092~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03092~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03093~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03093~^~262~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~263~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03093~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~304~^19.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~305~^22.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~306~^116.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~307~^37.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~318~^481.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03093~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03093~^~321~^288.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~322~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03093~^~334~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~338~^487.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~417~^32.^0^^~4~^^^^^^^^^^^~04/01/1995~ -~03093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03093~^~432~^32.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03093~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03093~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03096~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03096~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03096~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03096~^~268~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03096~^~301~^60.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~304~^20.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~305~^61.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~306~^148.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~307~^18.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~318~^85.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~319~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03096~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03096~^~321~^28.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03096~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03096~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03096~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03096~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03096~^~417~^10.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03096~^~432~^10.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03096~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03096~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03098~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03098~^~262~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~263~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~268~^142.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03098~^~301~^14.^15^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~304~^14.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~305~^14.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~306~^182.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~307~^83.^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03098~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03098~^~321~^16.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~322~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03098~^~334~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~337~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~338~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~417~^31.^6^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03098~^~432~^31.^6^3.^~1~^^^^^^^^^^^~03/01/2003~ -~03098~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03098~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03099~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03099~^~262~^0.^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~263~^0.^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03099~^~301~^22.^29^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~305~^20.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~306~^196.^13^6.^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~307~^69.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03099~^~318~^11461.^29^341.^~1~^^^^^^^^^^^~03/01/2003~ -~03099~^~319~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~320~^573.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03099~^~321~^5575.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~322~^2602.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03099~^~334~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03099~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03099~^~417~^15.^9^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03099~^~432~^15.^9^2.^~1~^^^^^^^^^^^~03/01/2005~ -~03099~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03099~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03100~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03100~^~262~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~263~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03100~^~301~^23.^24^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~304~^11.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~305~^20.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~306~^202.^13^7.^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~307~^49.^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~318~^11810.^24^448.^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~319~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~320~^591.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03100~^~321~^5745.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~322~^2682.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03100~^~334~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03100~^~338~^230.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~03100~^~417~^17.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03100~^~432~^17.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03100~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03100~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03104~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03104~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03104~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~301~^24.^1^^~6~^~JA~^^^2^23.^25.^2^^^^~03/01/2007~ -~03104~^~304~^14.^4^2.^~6~^~JA~^^^2^12.^19.^2^4.^24.^~4~^~03/01/2007~ -~03104~^~305~^21.^4^5.^~6~^~JA~^^^2^15.^31.^2^-1.^42.^~4~^~03/01/2007~ -~03104~^~306~^185.^17^5.^~6~^~JA~^^^2^179.^280.^1^110.^259.^~2, 3~^~03/01/2007~ -~03104~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03104~^~318~^1703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03104~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03104~^~321~^896.^1^^~1~^~A~^^^2^531.^1670.^4^^^^~03/01/2007~ -~03104~^~322~^242.^1^^~1~^~A~^^^2^0.^923.^4^^^^~03/01/2007~ -~03104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03104~^~334~^9.^1^^~1~^~A~^^^2^0.^13.^4^^^~1~^~03/01/2007~ -~03104~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^3^0.^0.^~1, 4~^~03/01/2007~ -~03104~^~338~^3527.^9^1850.^~1~^~A~^^^1^586.^6943.^2^-4435.^11488.^~4~^~03/01/2007~ -~03104~^~417~^8.^2^^~1~^~A~^^^1^8.^8.^^^^^~03/01/2007~ -~03104~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03104~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03104~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~03104~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03105~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03105~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03105~^~268~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~301~^24.^1^^~6~^~JA~^^^2^23.^25.^2^^^^~03/01/2007~ -~03105~^~304~^14.^4^2.^~6~^~JA~^^^2^12.^19.^2^4.^24.^~4~^~03/01/2007~ -~03105~^~305~^21.^4^5.^~6~^~JA~^^^2^15.^31.^2^-1.^42.^~4~^~03/01/2007~ -~03105~^~306~^185.^17^5.^~6~^~JA~^^^2^179.^280.^1^110.^259.^~2, 3~^~03/01/2007~ -~03105~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03105~^~318~^1703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03105~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~321~^896.^1^^~1~^~A~^^^2^531.^1670.^4^^^^~03/01/2007~ -~03105~^~322~^242.^1^^~1~^~A~^^^2^0.^923.^4^^^^~03/01/2007~ -~03105~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03105~^~334~^9.^1^^~1~^~A~^^^2^0.^13.^4^^^~1~^~03/01/2007~ -~03105~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^3^0.^0.^~1, 4~^~03/01/2007~ -~03105~^~338~^3527.^9^1850.^~1~^~A~^^^1^586.^6943.^2^-4435.^11488.^~4~^~03/01/2007~ -~03105~^~417~^8.^2^^~1~^~A~^^^1^8.^8.^^^^^~03/01/2007~ -~03105~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03105~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03105~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03108~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~03108~^~262~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~263~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03108~^~301~^16.^26^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~305~^24.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~306~^263.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~307~^22.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~03108~^~318~^6438.^21^1046.^~1~^^^^^^^^^^^~08/01/2004~ -~03108~^~319~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~320~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03108~^~321~^3863.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~322~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03108~^~334~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~417~^10.^6^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03108~^~432~^10.^6^0.^~1~^^^^^^^^^^^~03/01/2005~ -~03108~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03108~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03109~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03109~^~262~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~263~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03109~^~301~^16.^14^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~304~^12.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~305~^24.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~306~^243.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~307~^18.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03109~^~318~^6636.^13^1029.^~1~^^^^^^^^^^^~08/01/2004~ -~03109~^~319~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~320~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03109~^~321~^3982.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~322~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03109~^~334~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03109~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03109~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03109~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03112~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03112~^~262~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~263~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~268~^217.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03112~^~301~^4.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~304~^15.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~305~^23.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~306~^110.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~307~^57.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03112~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03112~^~321~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~322~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03112~^~334~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~337~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~338~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03112~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03112~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03112~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03113~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~268~^1656.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~301~^1245.^6^11.^~1~^~A~^^^1^1210.^1280.^5^1216.^1273.^~2, 3~^~01/01/2016~ -~03113~^~304~^109.^6^1.^~1~^~A~^^^1^105.^112.^5^106.^111.^~2, 3~^~01/01/2016~ -~03113~^~305~^459.^6^5.^~1~^~A~^^^1^444.^486.^5^444.^474.^~2, 3~^~01/01/2016~ -~03113~^~306~^597.^6^4.^~1~^~A~^^^1^583.^617.^5^585.^609.^~2, 3~^~01/01/2016~ -~03113~^~307~^23.^6^0.^~1~^~A~^^^1^23.^26.^5^22.^24.^~2, 3~^~01/01/2016~ -~03113~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~03113~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2016~ -~03113~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~324~^508.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~ -~03113~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~338~^185.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~417~^250.^3^13.^~1~^~A~^^^1^227.^273.^2^192.^307.^~2, 3~^~01/01/2016~ -~03113~^~431~^215.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03113~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03113~^~435~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03113~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03114~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03114~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03114~^~301~^32.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~304~^26.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~305~^35.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~306~^352.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03114~^~318~^2793.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03114~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~320~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03114~^~321~^1476.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~322~^362.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03114~^~334~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~338~^970.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~417~^23.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03114~^~432~^23.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03114~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03114~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03115~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03115~^~262~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03115~^~263~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03115~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03115~^~301~^4.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~304~^4.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~305~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~306~^86.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~307~^2.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~03115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03115~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~03115~^~321~^11.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~322~^0.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03115~^~334~^2.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~337~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03115~^~338~^5.^0^^~4~^~NR~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~417~^0.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03115~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~03115~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03115~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03116~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03116~^~262~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~263~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~268~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03116~^~301~^4.^43^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~304~^3.^4^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~305~^7.^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~306~^71.^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~ -~03116~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~03116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03116~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03116~^~321~^12.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~322~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03116~^~334~^9.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~337~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~338~^17.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~417~^2.^6^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03116~^~432~^2.^6^0.^~1~^^^^^^^^^^^~03/01/2005~ -~03116~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03116~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03117~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03117~^~262~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~263~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~268~^155.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03117~^~301~^5.^46^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~305~^6.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~306~^77.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03117~^~318~^9.^10^^~1~^^^^^^^^^^^~08/01/2004~ -~03117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03117~^~321~^2.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~322~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03117~^~334~^2.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~337~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~338~^9.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03117~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03117~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03117~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03118~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03118~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03118~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03118~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03118~^~301~^9.^16^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~306~^121.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03118~^~318~^725.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03118~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03118~^~321~^412.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03118~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03118~^~334~^39.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03118~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03118~^~338~^11.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03118~^~417~^2.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03118~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03118~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03118~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03119~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03119~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03119~^~301~^20.^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~306~^90.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~307~^43.^21^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03119~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03119~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03119~^~321~^26.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03119~^~322~^20.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03119~^~334~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03119~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~338~^357.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03119~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03119~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03120~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03120~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~268~^272.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03120~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~306~^81.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~307~^52.^19^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~318~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03120~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03120~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~322~^10.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03120~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~338~^423.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~417~^20.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03120~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~432~^20.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03120~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03121~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03121~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03121~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~301~^18.^69^1.^~6~^~JA~^^^2^16.^20.^2^12.^22.^~4~^~03/01/2007~ -~03121~^~304~^17.^21^1.^~6~^~JA~^^^2^15.^19.^2^11.^23.^~4~^~03/01/2007~ -~03121~^~305~^50.^20^3.^~6~^~JA~^^^2^43.^56.^2^33.^66.^~4~^~03/01/2007~ -~03121~^~306~^106.^33^8.^~6~^~JA~^^^2^90.^117.^2^70.^141.^~4~^~03/01/2007~ -~03121~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03121~^~318~^216.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03121~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03121~^~321~^124.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03121~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~338~^1465.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03121~^~417~^28.^7^2.^~6~^~JA~^^^2^26.^31.^1^-3.^60.^~4~^~03/01/2007~ -~03121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03121~^~432~^28.^6^2.^~6~^~JA~^^^2^26.^31.^1^-3.^60.^~4~^~03/01/2007~ -~03121~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03122~^~208~^64.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03122~^~262~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~263~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~268~^268.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03122~^~301~^21.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~304~^19.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~305~^67.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~306~^81.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~307~^48.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~318~^304.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~319~^0.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03122~^~321~^178.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~322~^8.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03122~^~334~^0.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~337~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~338~^1805.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~417~^35.^0^^~4~^~FLM~^^^^^^^^^^~01/01/1995~ -~03122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03122~^~432~^35.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~03122~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03122~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03127~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03127~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03127~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03127~^~268~^155.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03127~^~301~^89.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~304~^55.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~305~^54.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~306~^191.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~307~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~318~^4170.^4^347.^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~319~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03127~^~320~^227.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03127~^~321~^2456.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03127~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03127~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03127~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03127~^~338~^4505.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03127~^~417~^61.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03127~^~432~^61.^3^1.^~1~^^^^^^^^^^^~03/01/2003~ -~03127~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03127~^~601~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03128~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03128~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03128~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03128~^~268~^264.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03128~^~301~^8.^22^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~306~^125.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03128~^~318~^723.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03128~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03128~^~321~^411.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03128~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03128~^~334~^39.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03128~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03128~^~338~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03128~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03128~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03128~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03128~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03129~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03129~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~268~^236.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03129~^~301~^5.^21^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~306~^88.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03129~^~318~^43.^22^8.^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03129~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03129~^~321~^17.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~03129~^~322~^17.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~03129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03129~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~03129~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~338~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~417~^6.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03129~^~432~^6.^9^0.^~1~^^^^^^^^^^^~03/01/2005~ -~03129~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03129~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03130~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03130~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03130~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03130~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03130~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~03/01/2007~ -~03130~^~304~^7.^5^0.^~6~^~JA~^^^2^6.^8.^1^3.^9.^~2, 3~^~03/01/2007~ -~03130~^~305~^15.^4^0.^~6~^~JA~^^^2^12.^20.^1^5.^24.^~2, 3~^~03/01/2007~ -~03130~^~306~^195.^2^^~1~^~A~^^^1^180.^210.^1^^^^~03/01/2007~ -~03130~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~ -~03130~^~318~^686.^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~03130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03130~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03130~^~321~^378.^2^^~1~^~A~^^^1^353.^402.^1^^^^~03/01/2007~ -~03130~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03130~^~334~^68.^2^^~1~^~A~^^^1^55.^80.^1^^^^~03/01/2007~ -~03130~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~03130~^~338~^163.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03130~^~417~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~03/01/2007~ -~03130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03130~^~432~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03130~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~03130~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03131~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03131~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03131~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2007~ -~03131~^~304~^7.^5^0.^~6~^~JA~^^^2^6.^8.^1^3.^9.^~2, 3~^~04/01/2007~ -~03131~^~305~^15.^4^0.^~6~^~JA~^^^2^12.^20.^1^5.^24.^~2, 3~^~04/01/2007~ -~03131~^~306~^195.^2^^~1~^~A~^^^1^180.^210.^1^^^^~04/01/2007~ -~03131~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~ -~03131~^~318~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03131~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~321~^378.^2^^~1~^~A~^^^1^353.^402.^1^^^^~04/01/2007~ -~03131~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~ -~03131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03131~^~334~^68.^2^^~1~^~A~^^^1^55.^80.^1^^^^~04/01/2007~ -~03131~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~ -~03131~^~338~^163.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03131~^~417~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~04/01/2007~ -~03131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03131~^~432~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03131~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03131~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03132~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03132~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03132~^~301~^8.^20^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~304~^8.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~306~^130.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03132~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~03132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03132~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03132~^~321~^9.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03132~^~334~^1.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~338~^36.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~417~^4.^9^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03132~^~432~^4.^9^1.^~1~^^^^^^^^^^^~03/01/2005~ -~03132~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03132~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03133~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03133~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03133~^~301~^8.^16^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~306~^115.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03133~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03133~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03133~^~321~^10.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03133~^~334~^1.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~338~^38.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03133~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03133~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03133~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03134~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03134~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~268~^297.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~03134~^~301~^6.^14^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~305~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~306~^85.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03134~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03134~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03134~^~321~^78.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03134~^~334~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~338~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03134~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03135~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03135~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03135~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03135~^~268~^310.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03135~^~301~^6.^15^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~304~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~305~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~306~^83.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03135~^~318~^94.^15^16.^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03135~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03135~^~321~^52.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03135~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03135~^~334~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03135~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03135~^~338~^29.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03135~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03135~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~03135~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03135~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03136~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03136~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03136~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03136~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03136~^~301~^15.^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~304~^10.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~305~^15.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~306~^177.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~307~^5.^19^1.^~1~^^^^^^^^^^^~03/01/2003~ -~03136~^~318~^453.^13^^~1~^^^^^^^^^^^~03/01/2003~ -~03136~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03136~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03136~^~321~^228.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03136~^~322~^33.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03136~^~334~^54.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03136~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03136~^~338~^39.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03136~^~417~^0.^9^^~1~^^^^^^^^^^^~03/01/2003~ -~03136~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03136~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~ -~03136~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03136~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03137~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03137~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~268~^293.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03137~^~301~^15.^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~305~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~306~^162.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~307~^2.^15^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03137~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03137~^~321~^105.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~322~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~334~^25.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03137~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03137~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03139~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03139~^~262~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~263~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~268~^418.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03139~^~301~^21.^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~304~^17.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~305~^30.^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~306~^306.^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03139~^~318~^60.^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~319~^0.^0^^~4~^~BNA~^~09292~^^^^^^^^^~04/01/2005~ -~03139~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03139~^~321~^30.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~322~^4.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03139~^~334~^7.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~337~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~338~^55.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~03139~^~432~^1.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03139~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03140~^~208~^70.^0^^~4~^~T~^^^^^^^^^^~02/01/2007~ -~03140~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03140~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03140~^~268~^293.^0^^~4~^~T~^^^^^^^^^^~02/01/2007~ -~03140~^~301~^8.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~305~^4.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~306~^66.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~307~^4.^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~318~^450.^0^^~4~^~NC~^~09176~^^^^^^^^^~02/01/2007~ -~03140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03140~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03140~^~321~^262.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~ -~03140~^~322~^10.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~ -~03140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03140~^~334~^6.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~ -~03140~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03140~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03140~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03140~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~03140~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03141~^~208~^57.^0^^~9~^~MC~^^^^^^^^^^~04/01/1995~ -~03141~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~268~^238.^0^^~9~^^^^^^^^^^^~04/01/2007~ -~03141~^~301~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~305~^13.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~306~^51.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~307~^6.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03141~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03141~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03141~^~321~^12.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03141~^~334~^2.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~338~^44.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1995~ -~03141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03141~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03141~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03141~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03142~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~268~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03142~^~301~^6.^16^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~305~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~306~^120.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03142~^~318~^339.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03142~^~321~^189.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~322~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03142~^~334~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~338~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03142~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03142~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03143~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03143~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~03143~^~301~^6.^18^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~306~^109.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03143~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03143~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03143~^~321~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03143~^~334~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03143~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03144~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~03144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03144~^~301~^1.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~306~^132.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03144~^~318~^45.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03144~^~321~^25.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03144~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03144~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~338~^56.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03144~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2003~ -~03144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03144~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03145~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03145~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03145~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03145~^~268~^212.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03145~^~301~^1.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~306~^132.^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03145~^~318~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03145~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03145~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03145~^~321~^24.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03145~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03145~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03145~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03145~^~338~^47.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~03145~^~417~^0.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~03145~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03145~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03145~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03145~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03147~^~208~^66.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03147~^~268~^276.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~03147~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~304~^9.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~305~^12.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03147~^~306~^131.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~307~^3.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03147~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03147~^~321~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03147~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03147~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03147~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03147~^~338~^8.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03147~^~417~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1994~ -~03147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03147~^~432~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03147~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03150~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03150~^~268~^155.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03150~^~301~^4.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~306~^78.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~307~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~03150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~03150~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03150~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~03150~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03151~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03151~^~268~^163.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03151~^~301~^4.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~306~^76.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~307~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~318~^21.^6^6.^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03151~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03151~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03151~^~432~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~03151~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03152~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03152~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03152~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03152~^~268~^243.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~03152~^~301~^5.^13^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03152~^~305~^8.^5^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~306~^80.^18^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03152~^~318~^22.^12^2.^~1~^^^^^^^^^^^~04/01/2003~ -~03152~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03152~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03152~^~321~^10.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03152~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03152~^~334~^7.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03152~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03152~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03152~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03152~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03152~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03152~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03152~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03153~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03153~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03153~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03153~^~268~^242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03153~^~301~^5.^12^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03153~^~305~^8.^5^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~306~^72.^18^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03153~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03153~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03153~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03153~^~321~^15.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03153~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03153~^~334~^9.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03153~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03153~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03154~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03154~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~268~^269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03154~^~301~^8.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~305~^17.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~306~^149.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~307~^3.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03154~^~318~^2050.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03154~^~320~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03154~^~321~^1225.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03154~^~334~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03154~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03154~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03154~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03156~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03156~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~268~^285.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03156~^~301~^7.^12^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~304~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~306~^78.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03156~^~318~^40.^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03156~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03156~^~321~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03156~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03156~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03156~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~417~^6.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03156~^~432~^6.^9^0.^~1~^^^^^^^^^^^~03/01/2005~ -~03156~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03156~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03157~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03157~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~268~^272.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03157~^~301~^7.^28^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~304~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~306~^68.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03157~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~03157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03157~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03157~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~322~^12.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03157~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03157~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~432~^18.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03157~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03158~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03158~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~268~^172.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03158~^~301~^10.^17^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~305~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~306~^116.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03158~^~318~^29.^12^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03158~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03158~^~321~^17.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03158~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03158~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03158~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~417~^3.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03158~^~432~^3.^9^0.^~1~^^^^^^^^^^^~03/01/2005~ -~03158~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03158~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03159~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03159~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03159~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~306~^118.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03159~^~318~^32.^8^^~1~^^^^^^^^^^^~03/01/2003~ -~03159~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03159~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03159~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03159~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03159~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03159~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03159~^~432~^3.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03159~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03159~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03160~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03160~^~268~^264.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03160~^~301~^7.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~306~^74.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~307~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~318~^184.^6^18.^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03160~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03160~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03160~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03160~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03161~^~208~^51.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03161~^~262~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~263~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~268~^213.^0^^~9~^^^^^^^^^^^~04/01/2007~ -~03161~^~301~^6.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03161~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~305~^17.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~306~^83.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~307~^9.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~03161~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03161~^~319~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03161~^~321~^69.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03161~^~334~^28.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~337~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~338~^103.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~417~^5.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/1995~ -~03161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03161~^~432~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~03161~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03161~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03162~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03162~^~268~^293.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03162~^~301~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~306~^79.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~307~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~318~^76.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03162~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03162~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03162~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~03163~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03163~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03163~^~301~^5.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~304~^25.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~305~^19.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~306~^233.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~307~^2.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03163~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03163~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03163~^~321~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03163~^~322~^15.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03163~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03163~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03163~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03163~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03163~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03163~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03164~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03164~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03164~^~301~^4.^7^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~305~^8.^5^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~306~^69.^5^5.^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03164~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03164~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03164~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03164~^~321~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03164~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03164~^~334~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03164~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~338~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~417~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03164~^~432~^4.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03164~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03165~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03165~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~268~^259.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03165~^~301~^5.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~305~^7.^5^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~306~^65.^4^5.^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03165~^~318~^41.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03165~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03165~^~321~^22.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03165~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03165~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03165~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03166~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03166~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03166~^~301~^4.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~305~^5.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~306~^91.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03166~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03166~^~319~^0.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03166~^~321~^8.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~322~^0.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03166~^~334~^6.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~337~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~338~^16.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~03/01/2003~ -~03166~^~417~^0.^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03166~^~432~^0.^9^^~1~^^^^^^^^^^^~03/01/2005~ -~03166~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03166~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03167~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03167~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~268~^213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03167~^~301~^7.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~305~^8.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~306~^123.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~307~^4.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~318~^9.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03167~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03167~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03167~^~322~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03167~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~417~^1.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1994~ -~03167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03167~^~432~^1.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~03167~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03167~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03168~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03168~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03168~^~301~^3.^6^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~305~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~306~^97.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03168~^~318~^63.^6^12.^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03168~^~321~^31.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03168~^~334~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~338~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~417~^1.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03168~^~432~^1.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03168~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03168~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03171~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03171~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03171~^~301~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~304~^7.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~305~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~306~^148.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03171~^~318~^16.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03171~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03171~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03171~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03171~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03171~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03171~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03171~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2005~ -~03171~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03171~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03172~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03172~^~262~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~263~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03172~^~301~^12.^19^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~304~^9.^5^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~305~^11.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~306~^184.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03172~^~318~^55.^18^7.^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~319~^0.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03172~^~321~^9.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~322~^2.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03172~^~334~^47.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~337~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~338~^113.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~417~^26.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03172~^~432~^26.^9^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03172~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03172~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03173~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03173~^~268~^180.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03173~^~301~^10.^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~305~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~306~^138.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~307~^3.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~318~^73.^4^28.^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03173~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03173~^~417~^12.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03173~^~432~^12.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03174~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03174~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03174~^~301~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~304~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~305~^8.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~306~^134.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03174~^~318~^27.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03174~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03174~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03174~^~334~^22.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03174~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~338~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~417~^10.^6^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~432~^10.^6^2.^~1~^^^^^^^^^^^~03/01/2003~ -~03174~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03174~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03175~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03175~^~268~^192.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03175~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~305~^12.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~306~^199.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~318~^216.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03175~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03175~^~417~^20.^3^5.^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03175~^~432~^20.^3^5.^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~03175~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03176~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03176~^~268~^209.^0^^~4~^^^^^^^^^^^ -~03176~^~301~^17.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~304~^14.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03176~^~305~^13.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03176~^~306~^200.^13^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~307~^3.^13^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~318~^46.^13^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03176~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03176~^~417~^24.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03176~^~432~^24.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03177~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03177~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03177~^~301~^8.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~304~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~305~^9.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~306~^141.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~307~^2.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~318~^31.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03177~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03177~^~417~^19.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03177~^~432~^19.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~03177~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03178~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03178~^~268~^293.^0^^~4~^^^^^^^^^^^ -~03178~^~301~^12.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~304~^8.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~306~^181.^15^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~307~^2.^15^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~318~^131.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03178~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03178~^~417~^13.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03178~^~432~^13.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03179~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03179~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03179~^~301~^8.^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~306~^101.^15^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03179~^~318~^42.^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03179~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03179~^~321~^19.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03179~^~322~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03179~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03179~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~338~^21.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~417~^7.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03179~^~432~^7.^9^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03179~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03179~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03181~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~03181~^~262~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~263~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~268~^1574.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~03181~^~301~^643.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~304~^115.^3^5.^~1~^^^^^^^^^^^~12/01/1978~ -~03181~^~305~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~03181~^~321~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~322~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~324~^286.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~334~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~337~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~338~^170.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03181~^~417~^179.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~431~^156.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03181~^~432~^23.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03181~^~435~^287.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03181~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~03184~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03184~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~268~^1684.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~03184~^~301~^600.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~304~^140.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~305~^200.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~306~^500.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~307~^66.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03184~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03184~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~338~^203.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03184~^~417~^166.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~431~^142.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~432~^24.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~435~^265.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~03185~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03185~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03185~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03185~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03185~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~304~^100.^3^4.^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~305~^333.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03185~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03185~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03185~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03185~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03185~^~338~^148.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~03185~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03185~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03186~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03186~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~268~^1636.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03186~^~301~^696.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~304~^90.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~305~^367.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~306~^668.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03186~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~03186~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03186~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03186~^~321~^51.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03186~^~322~^49.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03186~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03186~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03186~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~338~^96.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~417~^17.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03186~^~432~^17.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03186~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03186~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03187~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03187~^~262~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03187~^~263~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03187~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03187~^~301~^91.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~304~^7.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~305~^29.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~306~^111.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03187~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03187~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03187~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03187~^~338~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03187~^~417~^25.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03187~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03187~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03188~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03188~^~262~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03188~^~263~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03188~^~268~^350.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03188~^~301~^91.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~305~^29.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~306~^111.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~307~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03188~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03188~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03188~^~338~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03188~^~417~^25.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03188~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03189~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~262~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~263~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~268~^1649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~301~^1160.^15^9.^~1~^~A~^^^1^756.^1280.^5^1136.^1183.^~2, 3~^~04/01/2015~ -~03189~^~304~^110.^15^1.^~1~^~A~^^^1^97.^132.^9^108.^112.^~2, 3~^~04/01/2016~ -~03189~^~305~^506.^15^5.^~1~^~A~^^^1^444.^777.^6^493.^517.^~2, 3~^~04/01/2016~ -~03189~^~306~^549.^15^3.^~1~^~A~^^^1^318.^617.^6^539.^558.^~2, 3~^~04/01/2015~ -~03189~^~307~^21.^15^0.^~1~^~A~^^^1^7.^26.^6^19.^21.^~1, 2, 3~^~04/01/2015~ -~03189~^~318~^16.^0^^~4~^^^^^^^^^^^~04/01/2016~ -~03189~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03189~^~321~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~322~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~324~^510.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03189~^~334~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~337~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~338~^185.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~ -~03189~^~417~^247.^8^10.^~1~^~A~^^^1^217.^273.^2^202.^291.^~2, 3~^~04/01/2016~ -~03189~^~431~^212.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03189~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03189~^~435~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03189~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03190~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03190~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03190~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03190~^~268~^1671.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03190~^~301~^800.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~304~^118.^2^^~1~^^^^^^^^^^^~03/01/2003~ -~03190~^~305~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~306~^600.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03190~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03190~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03190~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03190~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03190~^~338~^157.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03190~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03190~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03191~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03191~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~268~^312.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03191~^~301~^6.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~306~^97.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03191~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03191~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~338~^90.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~417~^22.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~431~^22.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03191~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03192~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03192~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03192~^~301~^6.^7^1.^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03192~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03192~^~306~^97.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03192~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03192~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~417~^22.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~431~^22.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03192~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03193~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03193~^~268~^1636.^0^^~4~^^^^^^^^^^^ -~03193~^~301~^1154.^13^13.^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~304~^146.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~305~^733.^14^29.^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~306~^259.^13^8.^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~307~^47.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~318~^23.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03193~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03193~^~417~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03193~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03194~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03194~^~268~^1630.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~301~^860.^12^4.^~1~^~A~^^^1^747.^894.^4^849.^871.^~2, 3~^~04/01/2015~ -~03194~^~304~^37.^14^0.^~1~^~A~^^^1^28.^113.^7^36.^37.^~2, 3~^~04/01/2015~ -~03194~^~305~^273.^14^2.^~1~^~A~^^^1^231.^621.^3^264.^281.^~2, 3~^~04/01/2015~ -~03194~^~306~^281.^14^2.^~1~^~A~^^^1^95.^327.^4^273.^288.^~2, 3~^~04/01/2015~ -~03194~^~307~^32.^14^2.^~1~^~A~^^^1^7.^57.^4^26.^37.^~1, 2, 3~^~04/01/2015~ -~03194~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03194~^~321~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~ -~03194~^~322~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~ -~03194~^~324~^341.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03194~^~334~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~ -~03194~^~337~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~ -~03194~^~338~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~ -~03194~^~417~^230.^8^7.^~1~^~A~^^^1^207.^268.^2^201.^259.^~2, 3~^~04/01/2015~ -~03194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03194~^~432~^230.^8^7.^~1~^~A~^^^1^207.^268.^2^201.^259.^^~04/01/2015~ -~03194~^~435~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03195~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03195~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~268~^334.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03195~^~301~^17.^19^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~306~^28.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03195~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~03195~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~ -~03195~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03195~^~321~^9.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03195~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03195~^~334~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03195~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~417~^3.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~03195~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~ -~03195~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~03195~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~03195~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03197~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03197~^~268~^213.^0^^~4~^^^^^^^^^^^ -~03197~^~301~^24.^7^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~306~^39.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~307~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~318~^141.^6^19.^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03197~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03197~^~417~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03197~^~432~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03197~^~601~^63.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03198~^~268~^218.^0^^~4~^^^^^^^^^^^ -~03198~^~301~^24.^7^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~306~^35.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~307~^33.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~318~^144.^6^17.^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~319~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03198~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03198~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03198~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03198~^~601~^63.^0^^~1~^^^^^^^^^^^~04/01/1985~ -~03199~^~208~^58.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~268~^243.^0^^~4~^^^^^^^^^^^ -~03199~^~301~^27.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~305~^46.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~306~^44.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~307~^38.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~318~^161.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~417~^9.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03199~^~432~^9.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03199~^~601~^51.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03201~^~268~^331.^0^^~4~^^^^^^^^^^^ -~03201~^~301~^28.^17^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~305~^50.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~306~^35.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~307~^48.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~318~^94.^13^13.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~319~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03201~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03201~^~417~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03201~^~432~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03201~^~601~^94.^0^^~4~^^^^^^^^^^^~05/01/1989~ -~03205~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03205~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03205~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03205~^~268~^1681.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03205~^~301~^286.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~304~^107.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~305~^429.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~306~^346.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~03205~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~03205~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03205~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03205~^~321~^41.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03205~^~322~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03205~^~334~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03205~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03205~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03205~^~417~^234.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03205~^~431~^199.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03205~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03205~^~435~^374.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03205~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03206~^~208~^435.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~03206~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~268~^1820.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~03206~^~301~^83.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~304~^30.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~305~^189.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~306~^425.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~307~^9.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~318~^2348.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03206~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03206~^~320~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03206~^~321~^1002.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03206~^~322~^810.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03206~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03206~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~338~^175.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~417~^110.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~432~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~435~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03206~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03209~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~268~^1997.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~304~^37.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~305~^198.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~306~^245.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~307~^633.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~03209~^~318~^3571.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~320~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~321~^1760.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~322~^739.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~417~^86.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~431~^70.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03211~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03211~^~268~^1565.^0^^~4~^^^^^^^^^^^ -~03211~^~301~^751.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~304~^159.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~305~^539.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~306~^1330.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~307~^104.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~318~^54.^4^17.^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03211~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03211~^~417~^190.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03211~^~432~^190.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03211~^~435~^190.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03211~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03212~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03212~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03212~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03212~^~268~^1690.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03212~^~301~^691.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~304~^141.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~305~^410.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~306~^769.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03212~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~03212~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03212~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03212~^~321~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03212~^~322~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03212~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03212~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03212~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03212~^~417~^12.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03212~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03212~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03212~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03213~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03213~^~268~^1812.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~301~^101.^11^4.^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~304~^49.^2^^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~305~^179.^2^^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~306~^501.^2^^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~307~^300.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~03213~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03213~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03213~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03213~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03213~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03213~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~431~^74.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~601~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~03214~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03214~^~268~^1772.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03214~^~301~^32.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~304~^22.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~305~^116.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~306~^156.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~307~^319.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03214~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03214~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2009~ -~03214~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~417~^35.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03214~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03214~^~432~^10.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03214~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03214~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03215~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03215~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03215~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03215~^~268~^1661.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03215~^~301~^25.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~304~^28.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~305~^110.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~306~^137.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~307~^269.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03215~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2009~ -~03215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03215~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03215~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03215~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03215~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03215~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03215~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03215~^~417~^85.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03215~^~431~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03215~^~432~^20.^0^^~4~^^^^^^^^^^^ -~03215~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03215~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03216~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03216~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03216~^~268~^1703.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~301~^1278.^4^11.^~1~^~A~^^^1^1250.^1300.^3^1242.^1312.^~2, 3~^~01/01/2017~ -~03216~^~304~^63.^4^0.^~1~^~A~^^^1^63.^64.^3^62.^63.^~2, 3~^~01/01/2017~ -~03216~^~305~^186.^4^1.^~1~^~A~^^^1^183.^189.^3^180.^190.^~2, 3~^~01/01/2017~ -~03216~^~306~^318.^4^5.^~1~^~A~^^^1^308.^335.^3^299.^336.^~2, 3~^~01/01/2017~ -~03216~^~307~^259.^4^2.^~1~^~A~^^^1^256.^265.^3^252.^265.^~2, 3~^~01/01/2017~ -~03216~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03216~^~319~^27.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03216~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03216~^~321~^13.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03216~^~322~^6.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03216~^~324~^21.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03216~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~03216~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~03216~^~338~^169.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~03216~^~417~^49.^3^2.^~1~^~A~^^^1^45.^53.^2^39.^59.^~2, 3~^~01/01/2017~ -~03216~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03216~^~432~^20.^0^^~4~^^^^^^^^^^^ -~03216~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03216~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03217~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03217~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03217~^~268~^1783.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03217~^~301~^20.^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~304~^14.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~305~^55.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~306~^305.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~307~^227.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03217~^~318~^58.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03217~^~319~^15.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03217~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03217~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03217~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03217~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03217~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~417~^87.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03217~^~431~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03217~^~432~^20.^0^^~4~^^^^^^^^^^^ -~03217~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03217~^~601~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03220~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03220~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03220~^~268~^314.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03220~^~301~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~304~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~305~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~306~^33.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03220~^~318~^49.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03220~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~321~^21.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03220~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03220~^~334~^16.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03220~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03220~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03220~^~417~^1.^6^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03220~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03220~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03220~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03221~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03221~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~268~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~03221~^~301~^3.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~304~^4.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~305~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~306~^67.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~307~^3.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~318~^18.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03221~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03221~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03221~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03221~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03221~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03221~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03221~^~432~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03221~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03222~^~208~^78.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~03222~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~268~^326.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03222~^~301~^5.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~304~^2.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~305~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~306~^45.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03222~^~318~^31.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03222~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03222~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03222~^~321~^19.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03222~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03222~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03222~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03222~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/1995~ -~03222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03222~^~432~^2.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03222~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03222~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03224~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03224~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~268~^285.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03224~^~301~^5.^5^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~304~^2.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~306~^34.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03224~^~318~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03224~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03224~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03224~^~321~^145.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03224~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03224~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03224~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03224~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03224~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2003~ -~03224~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03224~^~601~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03225~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03225~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~268~^289.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03225~^~301~^5.^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~304~^2.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~306~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03225~^~318~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03225~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03225~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03225~^~321~^145.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03225~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03225~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03225~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03225~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~417~^0.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03225~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~03225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03225~^~601~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03226~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03226~^~268~^335.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03226~^~301~^32.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~305~^28.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~306~^86.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~307~^20.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03226~^~318~^115.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03226~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03226~^~417~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03226~^~432~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~03226~^~601~^3.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03227~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03227~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~268~^272.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03227~^~301~^4.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~03227~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03227~^~305~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~306~^54.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~307~^7.^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~03227~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03227~^~321~^69.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03227~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03227~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03227~^~334~^28.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03227~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03227~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03227~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03228~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03228~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03228~^~301~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03228~^~305~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~306~^56.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03228~^~318~^138.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03228~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~320~^7.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03228~^~321~^68.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03228~^~334~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03228~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03228~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03229~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03229~^~268~^251.^0^^~4~^^^^^^^^^^^ -~03229~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03229~^~305~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03229~^~306~^83.^13^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~307~^9.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~318~^184.^13^39.^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~320~^56.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03229~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~432~^2.^3^0.^~1~^^^^^^^^^^^~08/01/2012~ -~03230~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03230~^~268~^251.^0^^~4~^^^^^^^^^^^ -~03230~^~301~^11.^13^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~305~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~306~^93.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~307~^9.^13^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~318~^196.^13^40.^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~320~^26.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~03230~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/2012~ -~03233~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03233~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03233~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03233~^~268~^339.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03233~^~301~^31.^16^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~305~^31.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~306~^81.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03233~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03233~^~319~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03233~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03233~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03233~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03233~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03233~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03233~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03233~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03233~^~417~^5.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03233~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03233~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03233~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03235~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03235~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~268~^247.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03235~^~301~^9.^7^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~306~^94.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03235~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03235~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03235~^~321~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03235~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03235~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~417~^3.^9^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03235~^~432~^3.^9^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03235~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03235~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03236~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03236~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~268~^264.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03236~^~301~^9.^7^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~305~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~306~^95.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03236~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03236~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03236~^~321~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03236~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03236~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03236~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03238~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03238~^~268~^251.^0^^~4~^^^^^^^^^^^ -~03238~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~304~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~306~^58.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~307~^7.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~318~^20.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03238~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03238~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03238~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03245~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03245~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03245~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03245~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03245~^~301~^55.^36^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~305~^45.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~306~^66.^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03245~^~318~^64.^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~319~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03245~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03245~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03245~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03245~^~324~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03245~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03245~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03245~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03245~^~417~^6.^3^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03245~^~432~^6.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~03245~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03245~^~601~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03246~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03246~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~268~^360.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03246~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~305~^55.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~306~^68.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~307~^26.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~318~^47.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~319~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03246~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03246~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03246~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03246~^~324~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03246~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03246~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03246~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~03246~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03246~^~601~^38.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03265~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~03265~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~268~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03265~^~301~^6.^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~06/01/2006~ -~03265~^~305~^5.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~306~^90.^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03265~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03265~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03265~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03265~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03265~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03265~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03265~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03265~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03267~^~208~^52.^1^^~9~^~MC~^^^^^^^^^^~06/01/1998~ -~03267~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~268~^218.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03267~^~301~^64.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03267~^~304~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~305~^11.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~306~^86.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~307~^4.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~318~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03267~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03267~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03267~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03267~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03267~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03267~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03269~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03269~^~301~^127.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~305~^8.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~306~^92.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~307~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03269~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03269~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03269~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~417~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~03269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03269~^~432~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03269~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03269~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03274~^~208~^53.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03274~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~268~^222.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03274~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~306~^83.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~307~^34.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03274~^~318~^2612.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03274~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03274~^~321~^1270.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03274~^~322~^592.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03274~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03274~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03274~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~417~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03274~^~432~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03274~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03274~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03278~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03278~^~268~^172.^0^^~4~^^^^^^^^^^^ -~03278~^~301~^22.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03278~^~305~^24.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03278~^~306~^121.^13^4.^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~307~^38.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03278~^~318~^2728.^13^274.^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03278~^~320~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03278~^~417~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03278~^~432~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03279~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~301~^17.^13^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~304~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~305~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~306~^112.^13^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~307~^40.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~318~^9246.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~321~^4989.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~322~^1117.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~338~^178.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03280~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03280~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03280~^~301~^8.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~305~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~306~^108.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03280~^~318~^44.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03280~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03280~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03280~^~322~^17.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03280~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03280~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03280~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03280~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03282~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03282~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03282~^~301~^11.^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~305~^25.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~306~^170.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~307~^36.^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~318~^4195.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~03282~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03282~^~320~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03282~^~321~^2060.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03282~^~322~^915.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03282~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03282~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~338~^497.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03282~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~03282~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03282~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03283~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03283~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~268~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03283~^~301~^28.^17^3.^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~304~^21.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~305~^28.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~306~^168.^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03283~^~318~^6067.^19^232.^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03283~^~320~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03283~^~321~^3270.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03283~^~322~^740.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03283~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03283~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~338~^1374.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~417~^40.^16^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03283~^~432~^40.^16^2.^~1~^^^^^^^^^^^~03/01/2003~ -~03283~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03283~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03286~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~03286~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03286~^~301~^13.^8^1.^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~304~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~305~^22.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~306~^127.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03286~^~318~^3166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~03286~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~320~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03286~^~321~^1550.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~322~^699.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03286~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~338~^381.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~417~^4.^6^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03286~^~432~^4.^6^0.^~1~^^^^^^^^^^^~04/01/2003~ -~03286~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03286~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03287~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03287~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03287~^~301~^8.^22^0.^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~304~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~305~^30.^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~306~^46.^13^2.^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~307~^26.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03287~^~318~^656.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03287~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03287~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03287~^~321~^320.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03287~^~322~^146.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03287~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03287~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03287~^~337~^1030.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~338~^163.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~417~^12.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1998~ -~03287~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~03287~^~432~^6.^0^^~1~^^^^^^^^^^^ -~03287~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03287~^~601~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03289~^~208~^62.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03289~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~268~^259.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03289~^~301~^4.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~306~^120.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~307~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~318~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~03289~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03289~^~321~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03289~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03289~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03289~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03289~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~338~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1994~ -~03289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03289~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03289~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03289~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03290~^~208~^59.^0^^~9~^~MC~^^^^^^^^^^~05/01/1994~ -~03290~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~268~^247.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03290~^~301~^22.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~305~^45.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~306~^226.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~307~^69.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03290~^~318~^14452.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03290~^~320~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03290~^~321~^6813.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03290~^~322~^3716.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03290~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03290~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03290~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~338~^139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~417~^17.^0^^~4~^~FLM~^^^^^^^^^^~05/01/1994~ -~03290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03290~^~432~^17.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03290~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03290~^~601~^8.^0^^~4~^~FLM~^^^^^^^^^^~05/01/1994~ -~03293~^~208~^57.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~301~^3.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~304~^11.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~305~^32.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~306~^265.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~03293~^~318~^133.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03293~^~321~^73.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03293~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03293~^~334~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03293~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03293~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03293~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03296~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03296~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03296~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03296~^~268~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03296~^~301~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03296~^~304~^14.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~305~^63.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~306~^107.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~307~^176.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~03296~^~318~^2268.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03296~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03296~^~320~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03296~^~321~^1116.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03296~^~322~^489.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03296~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03296~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03296~^~337~^1175.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~338~^137.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~417~^3.^0^^~4~^^^^^^^^^^^~04/01/1995~ -~03296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03296~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03296~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03296~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03297~^~208~^65.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03297~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~268~^272.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~ -~03297~^~301~^18.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~306~^95.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~307~^12.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03297~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03297~^~321~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03297~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03297~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03297~^~334~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03297~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03297~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03298~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03298~^~263~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~268~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~301~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~305~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~306~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~307~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~318~^474.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03298~^~319~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03298~^~321~^278.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~322~^9.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03298~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~338~^511.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~417~^69.^2^^~1~^~A~^^^1^66.^72.^1^^^^~03/01/2007~ -~03298~^~431~^10.^2^^~1~^~A~^^^1^10.^10.^^^^^~03/01/2007~ -~03298~^~432~^59.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03298~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03298~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03301~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03301~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03301~^~301~^71.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~304~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~306~^22.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~307~^11.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03301~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03301~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~338~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03301~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03302~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~268~^1592.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03302~^~301~^457.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~304~^53.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~305~^382.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~306~^714.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~307~^286.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~318~^1396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03302~^~319~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~320~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03302~^~321~^686.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~334~^122.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~338~^294.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03302~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03303~^~208~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~03303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03303~^~268~^310.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~ -~03303~^~301~^30.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~304~^13.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~305~^25.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~306~^200.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~307~^22.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~318~^4318.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03303~^~319~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03303~^~320~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03303~^~321~^2590.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03303~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03303~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03303~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03303~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03303~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03303~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03303~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~03303~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03303~^~601~^11.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03376~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03376~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03376~^~301~^61.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~306~^84.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~307~^21.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~318~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~319~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~320~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~324~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~417~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~431~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03376~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03376~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03381~^~268~^2150.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03381~^~301~^390.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~305~^220.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~306~^540.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~307~^135.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~318~^1500.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~320~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03381~^~601~^32.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03382~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03382~^~301~^139.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~305~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~306~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~307~^55.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~318~^1050.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~319~^320.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~320~^320.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~324~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~417~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03382~^~432~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03382~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03384~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03384~^~301~^159.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~305~^87.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~306~^95.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~307~^68.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~318~^1300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~319~^400.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~320~^400.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~324~^290.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~417~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03384~^~432~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03384~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~208~^513.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~268~^2146.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~301~^420.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~307~^184.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~318~^1530.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~320~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~324~^380.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~417~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03385~^~432~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03385~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~208~^513.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03386~^~268~^2148.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03386~^~301~^420.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~307~^183.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~318~^1520.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~320~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~417~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~431~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03386~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03387~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03387~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~305~^30.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03387~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03387~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03388~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03388~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03388~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~306~^84.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~435~^18.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03389~^~208~^485.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03389~^~268~^2029.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03389~^~301~^620.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~304~^48.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~305~^350.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~306~^590.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~307~^178.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~318~^1440.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~319~^430.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~320~^430.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~324~^290.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~417~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~431~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03389~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03390~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03390~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03390~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~306~^72.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~307~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~318~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~319~^69.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~320~^69.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03390~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03391~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03391~^~268~^302.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03391~^~301~^73.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~305~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~306~^86.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~307~^37.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~318~^270.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03391~^~319~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~320~^82.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03391~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~417~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~431~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03391~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03392~^~208~^512.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~03392~^~268~^2144.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~03392~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~307~^230.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~318~^1490.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~320~^450.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~324~^250.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03392~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~03393~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03393~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03393~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~305~^30.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~307~^24.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~ -~03393~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~324~^49.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03681~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03681~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03681~^~301~^162.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~305~^110.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~306~^151.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~307~^43.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~318~^150.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~319~^42.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~324~^47.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~338~^12.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~417~^7.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~432~^7.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03681~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03682~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03682~^~268~^464.^0^^~4~^^^^^^^^^^^ -~03682~^~301~^218.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~305~^177.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~306~^349.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~318~^105.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03682~^~417~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03682~^~432~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03685~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03685~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~268~^402.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03685~^~301~^220.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~03685~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~305~^118.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~306~^166.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~307~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~318~^146.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~319~^40.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~320~^41.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~324~^45.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03685~^~601~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03686~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03686~^~301~^153.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~305~^111.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~306~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~307~^48.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~318~^155.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~322~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~338~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03686~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03689~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03689~^~268~^485.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03689~^~301~^220.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~305~^160.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~306~^204.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~307~^46.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~318~^105.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03689~^~319~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03689~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03689~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03689~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03689~^~601~^11.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~03690~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03690~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03690~^~301~^153.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~305~^111.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~306~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~307~^48.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~318~^155.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~322~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~338~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03690~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03693~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03693~^~268~^481.^0^^~4~^^^^^^^^^^^ -~03693~^~301~^289.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~304~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~305~^198.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~306~^170.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~417~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03693~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03694~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03694~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03694~^~301~^168.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~304~^25.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~305~^122.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~306~^151.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~307~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~318~^150.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03694~^~321~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03694~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03696~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03696~^~268~^481.^0^^~4~^^^^^^^^^^^ -~03696~^~301~^291.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~304~^45.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03696~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~306~^141.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~318~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~03696~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~03696~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~03696~^~321~^27.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~03696~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03696~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03696~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03696~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~03704~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03704~^~268~^481.^0^^~4~^^^^^^^^^^^ -~03704~^~301~^294.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~304~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~305~^184.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~306~^171.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~417~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03704~^~432~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03711~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03711~^~268~^469.^0^^~4~^^^^^^^^^^^ -~03711~^~301~^223.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~304~^37.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~305~^166.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~307~^58.^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~417~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~03711~^~432~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03711~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~03712~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03712~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03712~^~301~^156.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~305~^109.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~306~^180.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~307~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~318~^152.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~338~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03712~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03801~^~208~^127.^0^^~9~^^^^^^^^^^^~06/01/1994~ -~03801~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~268~^531.^0^^~9~^^^^^^^^^^^~05/01/2004~ -~03801~^~301~^81.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03801~^~304~^9.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~305~^46.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03801~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~307~^34.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~318~^381.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03801~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03801~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03801~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~324~^76.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03801~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~417~^19.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03801~^~431~^19.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03801~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03801~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~03801~^~601~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03802~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~268~^2131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03802~^~301~^343.^0^^~9~^~MC~^^^^^^^^^^~06/01/2007~ -~03802~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~305~^184.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~306~^553.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~318~^1537.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03802~^~319~^461.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03802~^~320~^461.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~03802~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03802~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~324~^307.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03802~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03802~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~431~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03802~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~03802~^~601~^32.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~ -~03805~^~208~^520.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~268~^2176.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~301~^400.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~305~^270.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~306~^560.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~307~^139.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~318~^1567.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~03805~^~319~^470.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~320~^470.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~324~^310.^0^^~4~^~S~^^^^^^^^^^~02/01/2003~ -~03805~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~417~^83.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~431~^83.^0^^~4~^~S~^^^^^^^^^^~02/01/2003~ -~03805~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03805~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~03805~^~601~^17.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03808~^~208~^511.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~262~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~263~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~268~^2138.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~301~^400.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~304~^41.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~305~^270.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~306~^560.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~307~^139.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~318~^1567.^0^^~4~^~NC~^~03805~^^^^^^^^^~10/01/2016~ -~03808~^~319~^470.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~320~^470.^0^^~4~^~NC~^~03805~^^^^^^^^^~10/01/2016~ -~03808~^~321~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~322~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~324~^310.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~334~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~337~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~338~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~417~^83.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~431~^83.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~432~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~435~^141.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~601~^17.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03812~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~305~^28.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03815~^~208~^64.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~03815~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~268~^268.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~03815~^~301~^51.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~305~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2004~ -~03815~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~ -~03815~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03815~^~319~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03815~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03815~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03815~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~ -~03818~^~208~^131.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~268~^547.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~301~^102.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~304~^11.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~305~^70.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~306~^142.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~307~^39.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~318~^394.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~319~^118.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03818~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~324~^79.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03818~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~417~^21.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~431~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03818~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03818~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03821~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~268~^2162.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03821~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03821~^~307~^240.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~318~^1767.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03821~^~319~^530.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~320~^530.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03821~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~324~^250.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03821~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~431~^80.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03821~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~03821~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03822~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03822~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~306~^73.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~307~^31.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03822~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03822~^~319~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03822~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03822~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~03822~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03823~^~301~^69.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~305~^54.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~306~^79.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~318~^194.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~319~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03823~^~320~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03823~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03825~^~208~^64.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~268~^268.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~301~^51.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~305~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~318~^194.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~319~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03825~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~03825~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03825~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03832~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03832~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~305~^28.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03832~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03832~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03832~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03837~^~208~^524.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03837~^~262~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~03837~^~263~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~03837~^~268~^2191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03837~^~301~^288.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~304~^31.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~305~^144.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~306~^411.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~307~^123.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~318~^1541.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03837~^~319~^462.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03837~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03837~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~324~^308.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03837~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~417~^77.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03837~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03837~^~601~^17.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03838~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03838~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~268~^2150.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03838~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~306~^560.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~307~^240.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03838~^~319~^450.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03838~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03838~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~324~^250.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~417~^79.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~431~^79.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~03838~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03838~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03841~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~ -~03841~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~268~^276.^0^^~9~^~MC~^^^^^^^^^^~03/01/2004~ -~03841~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~306~^71.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03841~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03841~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03841~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03841~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03841~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03841~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03841~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03841~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03841~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03842~^~208~^128.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~268~^536.^0^^~4~^~T~^^^^^^^^^^~04/01/2004~ -~03842~^~301~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~304~^10.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~305~^96.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~306~^138.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~307~^56.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~318~^380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03842~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03842~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03842~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~324~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03842~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03842~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03842~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03842~^~601~^0.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03843~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03843~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03843~^~301~^540.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~304~^39.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~305~^386.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~306~^555.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~307~^226.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~318~^1543.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03843~^~319~^463.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03843~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03843~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~324~^309.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~417~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03843~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03843~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~03843~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03844~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~306~^72.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~307~^31.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03845~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03845~^~301~^62.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~306~^72.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~307~^31.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03845~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03845~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~324~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03845~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03846~^~208~^66.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~268~^276.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~306~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03846~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03846~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~324~^29.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03846~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03849~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03849~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03849~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03849~^~268~^2112.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03849~^~301~^600.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~305~^330.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~306~^520.^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~ -~03849~^~307~^184.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~318~^2233.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03849~^~319~^670.^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~ -~03849~^~320~^670.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03849~^~321~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~322~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~324~^370.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~334~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~337~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~338~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~417~^128.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03849~^~431~^84.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~432~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03849~^~435~^187.^0^^~4~^~NC~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~601~^16.^0^^~4~^~BFFN~^~03808~^^^^^^^^^~04/01/2011~ -~03851~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03851~^~301~^99.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~304~^8.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~305~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03851~^~306~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~307~^31.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~318~^382.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03851~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03851~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03851~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~324~^76.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03851~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03851~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03851~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03851~^~601~^3.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03852~^~208~^512.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~268~^2143.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~301~^530.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03852~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~305~^350.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~306~^610.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~307~^183.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~318~^1533.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~320~^460.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~324~^310.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~417~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~431~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03853~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03853~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03853~^~301~^410.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~304~^32.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~305~^221.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~306~^552.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~307~^126.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03853~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03853~^~319~^473.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03853~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03853~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03853~^~324~^316.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~417~^79.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03853~^~431~^79.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03853~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03853~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03853~^~601~^14.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03854~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~268~^282.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~301~^68.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~305~^45.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~306~^78.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~307~^23.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~417~^10.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~431~^10.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03854~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03857~^~208~^64.^0^^~4~^~NC~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~262~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~263~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~268~^268.^0^^~4~^~NC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~301~^69.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~304~^5.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~305~^45.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~306~^79.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~307~^24.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~318~^197.^0^^~4~^~NC~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~319~^59.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~320~^59.^0^^~4~^~NC~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~321~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~322~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~324~^39.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~334~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~337~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~338~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~417~^11.^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~431~^11.^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~432~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~435~^18.^0^^~4~^~NC~^~03823~^^^^^^^^^~03/01/2009~ -~03857~^~601~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03859~^~208~^64.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~262~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~263~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~268~^269.^0^^~12~^~MA~^~03805~^^^^^^^^^~05/01/2011~ -~03859~^~301~^67.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~304~^7.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~305~^41.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~306~^74.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~307~^26.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~318~^193.^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~319~^58.^0^^~4~^~NR~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~320~^58.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2009~ -~03859~^~321~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~322~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~324~^39.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~334~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~337~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~338~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~417~^10.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~431~^10.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~432~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~435~^17.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2009~ -~03859~^~601~^2.^0^^~4~^~NR~^~03805~^^^^^^^^^~03/01/2009~ -~03860~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03860~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~268~^414.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~03860~^~301~^93.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~304~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~305~^76.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~306~^125.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~307~^36.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~318~^246.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03860~^~319~^74.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~320~^74.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~03860~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~417~^35.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~431~^36.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03860~^~601~^2.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03861~^~208~^480.^0^^~4~^~NC~^~03929~^^^^^^^^^~04/01/2006~ -~03861~^~262~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~263~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~268~^2007.^0^^~4~^~NC~^~03929~^^^^^^^^^~04/01/2006~ -~03861~^~301~^920.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~304~^52.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~305~^620.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~306~^570.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~307~^171.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~318~^1420.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~319~^430.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~320~^430.^0^^~4~^~NC~^~03929~^^^^^^^^^~01/01/2009~ -~03861~^~321~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~322~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~324~^284.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~ -~03861~^~334~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~337~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~338~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~417~^76.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~431~^76.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~432~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~435~^129.^0^^~4~^~NC~^~03929~^^^^^^^^^~01/01/2009~ -~03861~^~601~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03864~^~208~^67.^0^^~4~^~NC~^~03930~^^^^^^^^^~04/01/2006~ -~03864~^~262~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~263~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~268~^281.^0^^~4~^~NC~^~03930~^^^^^^^^^~04/01/2006~ -~03864~^~301~^128.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~304~^7.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~305~^85.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~306~^79.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~307~^23.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~318~^194.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~319~^58.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~320~^58.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~321~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~322~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~324~^40.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~334~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~337~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~338~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~417~^11.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~431~^11.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~432~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~435~^18.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2009~ -~03864~^~601~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03867~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03867~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03867~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03867~^~268~^2104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03867~^~301~^526.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~305~^316.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~306~^581.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~307~^200.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~318~^1503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03867~^~319~^451.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03867~^~320~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03867~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~324~^301.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03867~^~601~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03870~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~268~^413.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~301~^92.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~304~^19.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~305~^80.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~306~^124.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~307~^36.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~318~^152.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~319~^46.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03870~^~320~^46.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03870~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~324~^48.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03870~^~417~^28.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~431~^28.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~03870~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~601~^2.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03928~^~208~^502.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~03928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~03928~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~301~^526.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~ -~03928~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~305~^316.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~306~^581.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~307~^180.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~318~^1503.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~319~^466.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~03928~^~320~^466.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03928~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03928~^~324~^309.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~ -~03928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03928~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~431~^80.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03928~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03928~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03928~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03929~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~268~^2007.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03929~^~301~^920.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~304~^52.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~305~^620.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~306~^570.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~307~^171.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~318~^1420.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03929~^~319~^430.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~320~^430.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~324~^284.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~ -~03929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~417~^76.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~431~^76.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~03929~^~601~^0.^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03930~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~268~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03930~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~306~^79.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03930~^~319~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~03930~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03930~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03930~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03930~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~03934~^~208~^68.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~268~^287.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~305~^29.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~306~^154.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~307~^14.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~03934~^~318~^2496.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03934~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~320~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03934~^~321~^1488.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~322~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03934~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~338~^215.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03934~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03935~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03935~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~306~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03935~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~324~^29.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03935~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03936~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03936~^~301~^41.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~304~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~305~^28.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~306~^55.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~307~^14.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03936~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03936~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03936~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~324~^38.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03936~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~417~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~431~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03936~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03936~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03936~^~601~^4.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03937~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03937~^~301~^83.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~304~^9.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~305~^55.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~306~^109.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~307~^29.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03937~^~319~^118.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03937~^~324~^76.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03937~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~417~^10.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03937~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~03937~^~601~^8.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03938~^~208~^524.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~268~^2192.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03938~^~301~^331.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~304~^36.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~305~^221.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~306~^441.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~307~^118.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03938~^~319~^473.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03938~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~324~^303.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~03938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~417~^39.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~431~^39.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03938~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03938~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03938~^~601~^32.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03939~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~268~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03939~^~301~^59.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~304~^7.^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~305~^41.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~306~^69.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~307~^18.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~318~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03939~^~319~^56.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03939~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03939~^~321~^37.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03939~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~324~^37.^0^^~4~^~NR~^^^^^^^^^^~04/01/2008~ -~03939~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~417~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~431~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03939~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03939~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03939~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03940~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~268~^528.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03940~^~301~^118.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~03940~^~304~^14.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~305~^82.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~306~^138.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~307~^36.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~03940~^~319~^118.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~03940~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~03940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~324~^86.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~ -~03940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~417~^10.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03940~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03940~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03940~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03941~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~268~^2125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03941~^~301~^453.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~304~^51.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~305~^317.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~306~^528.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~307~^151.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03941~^~319~^473.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~03941~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03941~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~03941~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~324~^303.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03941~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~417~^38.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~431~^38.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03941~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03941~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03941~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03942~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~305~^35.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~307~^26.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~208~^504.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~268~^2110.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~301~^390.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~306~^540.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~307~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~03943~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03944~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03944~^~268~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03944~^~301~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~305~^42.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~306~^97.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~318~^315.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~319~^94.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03944~^~324~^48.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03944~^~417~^17.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~431~^17.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03944~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03944~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03945~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03945~^~268~^2174.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03945~^~301~^541.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~305~^319.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~306~^731.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~307~^170.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~318~^2371.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~03945~^~319~^711.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~320~^711.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~03945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03945~^~324~^361.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03945~^~417~^128.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~431~^128.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03945~^~435~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03945~^~601~^14.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03946~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03946~^~301~^58.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~304~^3.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~305~^39.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~306~^74.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~307~^21.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03946~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03946~^~324~^40.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03946~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03946~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03946~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03947~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03947~^~268~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03947~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~306~^138.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~307~^39.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~318~^385.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~319~^116.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~320~^116.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03947~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03947~^~324~^74.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03947~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03947~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03947~^~417~^19.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~431~^19.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03947~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03947~^~601~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03948~^~268~^2175.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03948~^~301~^436.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~304~^30.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~305~^293.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~306~^557.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~307~^158.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~318~^1559.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03948~^~319~^468.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~320~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03948~^~324~^369.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03948~^~417~^75.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~431~^75.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03948~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03948~^~601~^15.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03949~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^ -~03949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^ -~03949~^~301~^53.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03949~^~304~^4.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~305~^28.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~306~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~307~^16.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~03949~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03949~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03949~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03949~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~324~^39.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03949~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03949~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03949~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~03949~^~601~^2.^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03950~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03950~^~301~^410.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~304~^32.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~305~^221.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~306~^552.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~307~^126.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03950~^~318~^1578.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03950~^~319~^473.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03950~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03950~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03950~^~324~^316.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~417~^79.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03950~^~431~^79.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03950~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03950~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~03950~^~601~^14.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03951~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03951~^~301~^99.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~304~^8.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~305~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03951~^~306~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~307~^31.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~318~^382.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03951~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03951~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~324~^76.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03951~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03951~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~03951~^~601~^3.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03952~^~208~^128.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~268~^536.^0^^~4~^~T~^^^^^^^^^^~04/01/2004~ -~03952~^~301~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~304~^10.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~305~^96.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~306~^138.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~307~^56.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~318~^380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03952~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03952~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03952~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~324~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03952~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03952~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03952~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03952~^~601~^0.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03953~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~268~^274.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03953~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~306~^71.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03953~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03953~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03953~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03953~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03953~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03953~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03953~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03954~^~301~^540.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~304~^39.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~305~^386.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~306~^555.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~307~^226.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~318~^1543.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03954~^~319~^462.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03954~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~324~^309.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~417~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03954~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03954~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~03954~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03955~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03955~^~262~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~263~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~268~^306.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03955~^~301~^86.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~305~^48.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~306~^76.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~307~^27.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~318~^323.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03955~^~319~^97.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~320~^97.^0^^~4~^~NC~^~03849~^^^^^^^^^~10/01/2016~ -~03955~^~321~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~322~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~324~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~334~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~337~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~338~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~417~^19.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~431~^19.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03955~^~601~^1.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~03956~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03956~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03956~^~301~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~305~^95.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~306~^149.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~307~^41.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~318~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03956~^~319~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03956~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03956~^~601~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03957~^~208~^517.^1^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03957~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03957~^~301~^534.^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~304~^38.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~305~^382.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~306~^598.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~307~^224.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~318~^1528.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~03957~^~319~^458.^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~320~^458.^0^^~4~^~NC~^~03935~^^^^^^^^^~02/01/2009~ -~03957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~324~^229.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~417~^76.^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~431~^76.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~432~^0.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~435~^130.^0^^~4~^~NC~^~03935~^^^^^^^^^~02/01/2009~ -~03957~^~601~^8.^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03959~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~03959~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~268~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03959~^~301~^20.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~304~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~305~^24.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~306~^118.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~307~^176.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~318~^84.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~320~^13.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~338~^98.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~03959~^~601~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~638~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~639~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~641~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03960~^~208~^66.^0^^~9~^^^^^^^^^^^~06/01/1994~ -~03960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~268~^276.^0^^~9~^^^^^^^^^^^~05/01/2004~ -~03960~^~301~^42.^0^^~12~^^^^^^^^^^^~04/01/1991~ -~03960~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~305~^24.^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03960~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~06/01/2004~ -~03960~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03960~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03960~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03960~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03960~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03960~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03960~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~ -~03961~^~208~^66.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~268~^276.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03961~^~301~^42.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~305~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~03961~^~319~^60.^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~03961~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~03961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03961~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03961~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03963~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03963~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~263~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03963~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~305~^30.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03963~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03963~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03963~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03963~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03963~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03963~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03964~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03964~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~268~^1439.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03964~^~301~^1053.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~305~^247.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~306~^180.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~307~^157.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~03964~^~318~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03964~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03964~^~321~^166.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~338~^33.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~417~^65.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~431~^48.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~03964~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03965~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03965~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03965~^~301~^98.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~305~^86.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~306~^143.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~307~^38.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03965~^~319~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03965~^~321~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~338~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03965~^~601~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03966~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03966~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03966~^~301~^139.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~304~^15.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~305~^84.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~306~^154.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~307~^53.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~318~^397.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03966~^~319~^119.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03966~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03966~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~324~^80.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~417~^21.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~431~^21.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03966~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03967~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03967~^~262~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~04/01/2006~ -~03967~^~263~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~ -~03967~^~268~^2113.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03967~^~301~^970.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~304~^40.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03967~^~305~^650.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~306~^650.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03967~^~307~^179.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03967~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03967~^~324~^300.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03967~^~334~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~ -~03967~^~337~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~ -~03967~^~338~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~ -~03967~^~417~^79.^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~ -~03967~^~431~^79.^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~ -~03967~^~432~^0.^0^^~7~^~Z~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~435~^134.^0^^~4~^~NC~^~03968~^^^^^^^^^~10/01/2016~ -~03967~^~601~^7.^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~ -~03968~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03968~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~03968~^~301~^133.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~304~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~305~^89.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~306~^89.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~307~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03968~^~319~^58.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03968~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~324~^41.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~03968~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~03968~^~601~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03980~^~208~^516.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~268~^2158.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03980~^~301~^420.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~304~^41.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~307~^185.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~318~^1533.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03980~^~319~^460.^0^^~4~^~NR~^~03963~^^^^^^^^^~07/01/2012~ -~03980~^~320~^460.^0^^~4~^~NC~^~03963~^^^^^^^^^~07/01/2012~ -~03980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~324~^310.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~417~^82.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~431~^82.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03980~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~435~^139.^0^^~4~^~NC~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03982~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03982~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03982~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~306~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~307~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03982~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03982~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03982~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~268~^275.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~301~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~305~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~306~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~307~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~318~^197.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03983~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~324~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03983~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03984~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03984~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03984~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~305~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~306~^64.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~307~^46.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~318~^900.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03984~^~319~^270.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~320~^270.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03984~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~324~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~417~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~431~^26.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03984~^~601~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03985~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03985~^~301~^129.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~305~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~306~^76.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~307~^55.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~318~^828.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03985~^~319~^248.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~320~^248.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03985~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~324~^157.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03985~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~417~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~431~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03985~^~601~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03986~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03986~^~301~^51.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~305~^28.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03986~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03986~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~324~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03986~^~601~^3.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03987~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03987~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~268~^274.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03987~^~301~^125.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~305~^70.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~306~^76.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~307~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03987~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03987~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03987~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03988~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03988~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~305~^25.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03988~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03988~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03988~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03989~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~268~^277.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03989~^~301~^125.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~304~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~305~^70.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03989~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03989~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03989~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~208~^66.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03990~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~305~^25.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03990~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03990~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03990~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~263~^0.^0^^~4~^~BFFN~^~03986~^^^^^^^^^~02/01/2013~ -~03991~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~306~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~307~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~263~^0.^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~268~^274.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~301~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~305~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~307~^29.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03992~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03992~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03992~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03993~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~268~^274.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~301~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~305~^37.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~306~^70.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~307~^20.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03993~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03993~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03993~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03994~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~268~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03994~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~304~^30.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~305~^24.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~306~^395.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~307~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03994~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03994~^~321~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~322~^27.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~338~^24.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~417~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03994~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~636~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03995~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03995~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~305~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~306~^283.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~318~^51.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~319~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~ -~03995~^~320~^3.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03995~^~321~^20.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~ -~03995~^~322~^20.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~ -~03995~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~ -~03995~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~338~^47.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~417~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03995~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~636~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03996~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03996~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~304~^95.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~305~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03996~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03996~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~338~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~431~^139.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~435~^264.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03996~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~268~^1635.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~304~^47.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~305~^127.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~306~^504.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~307~^313.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~268~^2107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~301~^285.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~03998~^~304~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~305~^1044.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~306~^214.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~307~^500.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~03998~^~318~^265.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~319~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~321~^75.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~322~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~338~^914.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~601~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03999~^~208~^514.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~263~^0.^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~268~^2151.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~301~^432.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~305~^288.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~307~^154.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~318~^1557.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03999~^~319~^467.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~320~^467.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03999~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~324~^308.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03999~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~04001~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~268~^3774.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04001~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04001~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~324~^28.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04001~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04001~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04001~^~601~^109.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04002~^~301~^0.^1^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~304~^0.^1^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~306~^0.^3^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~307~^0.^3^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04002~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~324~^102.^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2009~ -~04002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04002~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04002~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04002~^~601~^95.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04011~^~208~^334.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~268~^1397.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~04011~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~305~^58.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~306~^52.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~307~^633.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~04011~^~318~^185.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~601~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~262~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~263~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~304~^2.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~305~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~306~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~307~^750.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~321~^30.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~338~^27.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~417~^4.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~431~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~432~^4.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04014~^~208~^84.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~268~^351.^0^^~9~^~MC~^^^^^^^^^^ -~04014~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~305~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~306~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~307~^788.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~318~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~601~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04015~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04015~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~268~^1485.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04015~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~305~^20.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~306~^173.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~307~^1133.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04015~^~318~^577.^0^^~4~^~O~^^^^^^^^^^~12/01/2007~ -~04015~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04015~^~321~^320.^0^^~4~^~FLC~^~04015~^^^^^^^^^~12/01/2007~ -~04015~^~322~^2.^0^^~4~^~BNA~^~04015~^^^^^^^^^~12/01/2007~ -~04015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04015~^~334~^49.^0^^~4~^~BNA~^~04015~^^^^^^^^^~12/01/2007~ -~04015~^~337~^3576.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~338~^173.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04015~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04016~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04016~^~262~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~263~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~268~^1854.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~301~^19.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~305~^37.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~306~^157.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~307~^1000.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04016~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04016~^~321~^21.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~322~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04016~^~334~^2.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~337~^16.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~338~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04016~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04016~^~601~^0.^6^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04017~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04017~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04017~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04017~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04017~^~301~^17.^6^0.^~1~^~A~^^^1^14.^19.^5^15.^19.^~2, 3~^~02/01/2003~ -~04017~^~304~^8.^6^0.^~1~^~A~^^^1^7.^8.^5^7.^8.^~2, 3~^~02/01/2003~ -~04017~^~305~^27.^6^0.^~1~^~A~^^^1^24.^30.^5^25.^28.^~2, 3~^~02/01/2003~ -~04017~^~306~^107.^6^2.^~1~^~A~^^^1^98.^115.^5^100.^113.^~2, 3~^~02/01/2003~ -~04017~^~307~^962.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04017~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04017~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04017~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04017~^~321~^92.^6^6.^~1~^~A~^^^1^72.^122.^5^74.^108.^~2, 3~^~02/01/2003~ -~04017~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~04017~^~324~^0.^0^^~4~^~BFZN~^~04120~^^^^^^^^^~07/01/2013~ -~04017~^~334~^52.^6^3.^~1~^~A~^^^1^40.^64.^5^43.^60.^~2, 3~^~02/01/2003~ -~04017~^~337~^2597.^6^163.^~1~^~A~^^^1^1955.^3027.^5^2176.^3016.^~2, 3~^~02/01/2003~ -~04017~^~338~^29.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04017~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~04017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04017~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04017~^~601~^26.^2^^~1~^~A~^^^1^24.^28.^1^^^^~02/01/2003~ -~04018~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04018~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~301~^5.^6^0.^~1~^~A~^^^1^4.^5.^5^4.^4.^~2, 3~^~05/01/2014~ -~04018~^~304~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^2.^2.^~2, 3~^~06/01/1979~ -~04018~^~305~^13.^6^0.^~1~^~A~^^^1^13.^14.^5^12.^13.^~2, 3~^~05/01/2014~ -~04018~^~306~^36.^6^0.^~1~^~A~^^^1^34.^38.^5^34.^37.^~2, 3~^~05/01/2014~ -~04018~^~307~^653.^6^5.^~1~^~A~^^^1^636.^667.^5^639.^666.^~2, 3~^~05/01/2014~ -~04018~^~318~^29.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~04018~^~319~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~05/01/2014~ -~04018~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~04018~^~321~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~05/01/2014~ -~04018~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~04018~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~334~^4.^2^^~1~^~A~^^^1^3.^4.^1^^^^~05/01/2014~ -~04018~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~04018~^~338~^28.^2^^~1~^~A~^^^1^25.^30.^1^^^^~05/01/2014~ -~04018~^~417~^6.^2^^~1~^~A~^^^1^6.^6.^^^^~1~^~05/01/2014~ -~04018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04018~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~04018~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04018~^~601~^19.^3^0.^~1~^~A~^^^1^18.^19.^2^17.^19.^~2, 3~^~05/01/2014~ -~04018~^~636~^97.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04020~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04020~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04020~^~268~^928.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~301~^11.^5^1.^~6~^~JA~^^^2^8.^14.^3^7.^15.^~4~^~12/01/2007~ -~04020~^~304~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^7.^8.^~2, 3~^~02/01/2003~ -~04020~^~305~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^23.^~2, 3~^~02/01/2003~ -~04020~^~306~^107.^3^1.^~1~^~A~^^^1^105.^111.^2^98.^115.^~2, 3~^~02/01/2003~ -~04020~^~307~^838.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04020~^~318~^541.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04020~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~321~^289.^3^20.^~1~^~A~^^^1^256.^326.^2^202.^376.^~2, 3~^~02/01/2003~ -~04020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04020~^~334~^70.^3^2.^~1~^~A~^^^1^68.^75.^2^60.^80.^~2, 3~^~02/01/2003~ -~04020~^~337~^2530.^3^165.^~1~^~A~^^^1^2243.^2815.^2^1819.^3240.^~2, 3~^~02/01/2003~ -~04020~^~338~^124.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04020~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04020~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~601~^0.^2^^~12~^~MA~^^^^0.^0.^^^^^~12/01/2007~ -~04021~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04021~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~301~^15.^10^0.^~1~^~A~^^^1^15.^16.^8^15.^15.^~2, 3~^~05/01/2012~ -~04021~^~304~^4.^10^0.^~1~^~A~^^^1^4.^5.^5^4.^4.^~2, 3~^~02/01/2003~ -~04021~^~305~^12.^10^0.^~1~^~A~^^^1^11.^14.^5^11.^12.^~2, 3~^~05/01/2012~ -~04021~^~306~^90.^10^3.^~1~^~A~^^^1^49.^138.^5^82.^97.^~2, 3~^~05/01/2012~ -~04021~^~307~^891.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04021~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04021~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04021~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04021~^~321~^7.^3^7.^~1~^~A~^^^1^0.^22.^2^-24.^38.^~1, 2, 3~^~02/01/2003~ -~04021~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04021~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2003~ -~04021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04021~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~636~^17.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04022~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~268~^592.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04022~^~301~^19.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~305~^37.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~306~^157.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~307~^868.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04022~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04022~^~321~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04022~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~337~^628.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04022~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04022~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04022~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04022~^~601~^6.^3^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~636~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04023~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04023~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04023~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~301~^27.^4^10.^~6~^~JA~^^^2^16.^60.^3^-7.^61.^~4~^~12/01/2007~ -~04023~^~304~^7.^3^0.^~1~^~A~^^^1^7.^7.^2^6.^7.^~2, 3~^~02/01/2003~ -~04023~^~305~^14.^3^0.^~1~^~A~^^^1^13.^15.^2^11.^16.^~2, 3~^~02/01/2003~ -~04023~^~306~^202.^3^3.^~1~^~A~^^^1^195.^206.^2^187.^216.^~2, 3~^~02/01/2003~ -~04023~^~307~^955.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04023~^~318~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04023~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~321~^154.^2^^~1~^~A~^^^1^0.^307.^1^^^~1~^~02/01/2003~ -~04023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04023~^~334~^65.^2^^~1~^~A~^^^1^28.^102.^1^^^^~02/01/2003~ -~04023~^~337~^3097.^2^^~1~^~A~^^^1^2615.^3578.^1^^^^~02/01/2003~ -~04023~^~338~^100.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04023~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04023~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04023~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~601~^11.^2^^~6~^~JA~^^^2^1.^20.^1^^^^~12/01/2007~ -~04025~^~208~^680.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~04025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~04025~^~268~^2844.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~301~^8.^12^0.^~1~^~A~^^^1^7.^8.^5^7.^7.^~2, 3~^~04/01/2012~ -~04025~^~304~^1.^12^0.^~1~^~A~^^^1^1.^1.^6^1.^1.^~2, 3~^~04/01/2007~ -~04025~^~305~^21.^12^0.^~1~^~A~^^^1^20.^24.^5^20.^21.^~2, 3~^~04/01/2012~ -~04025~^~306~^20.^12^2.^~1~^~A~^^^1^11.^32.^6^13.^27.^~2, 3~^~04/01/2012~ -~04025~^~307~^635.^12^7.^~1~^~A~^^^1^518.^709.^5^615.^655.^~2, 3~^~04/01/2012~ -~04025~^~318~^65.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~04025~^~319~^15.^4^0.^~1~^~A~^^^1^14.^17.^1^9.^21.^~2, 3~^~04/01/2012~ -~04025~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~04025~^~321~^6.^6^0.^~1~^~A~^^^1^1.^8.^2^4.^7.^~2, 3~^~04/01/2012~ -~04025~^~322~^0.^6^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~04/01/2012~ -~04025~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~04025~^~334~^4.^6^0.^~1~^~A~^^^1^1.^5.^3^3.^4.^~2, 3~^~04/01/2012~ -~04025~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~338~^12.^6^2.^~1~^~A~^^^1^5.^21.^2^4.^19.^~2, 3~^~04/01/2012~ -~04025~^~417~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^3.^7.^~1, 2, 3~^~04/01/2007~ -~04025~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~04025~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~04025~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04025~^~601~^42.^12^0.^~1~^~A~^^^1^39.^50.^6^41.^43.^~2, 3~^~04/01/2012~ -~04025~^~638~^39.^3^1.^~1~^~A~^^^1^35.^41.^2^31.^45.^~2, 3~^~02/01/2003~ -~04025~^~639~^39.^3^4.^~1~^~A~^^^1^30.^46.^2^19.^59.^~2, 3~^~02/01/2003~ -~04025~^~641~^102.^3^6.^~1~^~A~^^^1^89.^110.^2^73.^130.^~2, 3~^~02/01/2003~ -~04026~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~268~^2999.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04026~^~301~^18.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~304~^1.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~305~^28.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~306~^34.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~307~^568.^408^2.^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~318~^280.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~319~^84.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~04026~^~320~^84.^0^^~1~^^^^^^^^^^^~11/01/2002~ -~04026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~417~^8.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04026~^~432~^8.^0^^~4~^^^^^^^^^^^~11/01/2002~ -~04026~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04026~^~601~^59.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~636~^347.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04027~^~262~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~263~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~268~^969.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04027~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~306~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~307~^497.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04027~^~321~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~322~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04027~^~334~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~337~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~338~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~ -~04027~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04027~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04027~^~601~^24.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~636~^62.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04028~^~268~^404.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04028~^~301~^72.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~304~^7.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~305~^57.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~306~^97.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~307~^504.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~318~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~04028~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~04028~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04028~^~432~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~04028~^~601~^43.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~636~^6.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~208~^482.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~268~^2016.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04029~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~306~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~307~^353.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04029~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~04029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04029~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04029~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04029~^~601~^0.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~636~^216.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04030~^~268~^1628.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04030~^~301~^14.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~305~^26.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~306~^35.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~307~^1000.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~318~^220.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04030~^~319~^13.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~04030~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04030~^~321~^94.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04030~^~322~^1.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04030~^~324~^4.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~03/01/2009~ -~04030~^~334~^27.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04030~^~337~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04030~^~338~^87.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04030~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04030~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04030~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04030~^~601~^76.^7^5.^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~636~^75.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04031~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04031~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04031~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~04031~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04034~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04034~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04034~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~04034~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~636~^132.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04037~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04037~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04037~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04037~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~636~^1190.^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04038~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04038~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04038~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~636~^553.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04042~^~301~^0.^9^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~304~^0.^8^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~306~^0.^6^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~307~^0.^11^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~318~^0.^0^^~4~^^^^^^^^^^^~11/01/2002~ -~04042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04042~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04042~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04042~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~636~^207.^8^43.^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04044~^~301~^0.^3^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~304~^0.^3^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~305~^0.^10^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04044~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04044~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04044~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04044~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04044~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04044~^~638~^59.^3^3.^~1~^~A~^^^1^53.^65.^2^43.^74.^~2, 3~^~03/01/2007~ -~04044~^~639~^62.^3^3.^~1~^~A~^^^1^56.^66.^2^48.^75.^~2, 3~^~03/01/2007~ -~04044~^~641~^172.^3^5.^~1~^~A~^^^1^161.^180.^2^147.^195.^~2, 3~^~03/01/2007~ -~04047~^~208~^892.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~268~^3730.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~1, 2, 3~^~03/01/2015~ -~04047~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~ -~04047~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~ -~04047~^~306~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~ -~04047~^~307~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~ -~04047~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~04047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~04047~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~04047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~417~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04047~^~432~^0.^1^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04047~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~636~^86.^19^1.^~1~^^^^^^^^^^^~06/01/1979~ -~04053~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~2, 3~^~03/01/2005~ -~04053~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2005~ -~04053~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~306~^1.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~2, 3~^~03/01/2005~ -~04053~^~307~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^3.^~2, 3~^~03/01/2005~ -~04053~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04053~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~04053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~04053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04053~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~636~^221.^13^41.^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04055~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04055~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04055~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04058~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04058~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04058~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04058~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~636~^865.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04060~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04060~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04060~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~208~^719.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04073~^~268~^3007.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04073~^~301~^30.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~304~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~305~^23.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~306~^42.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~307~^943.^337^9.^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04073~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04073~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~417~^1.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04073~^~432~^1.^0^^~1~^^^^^^^^^^^~11/01/2002~ -~04073~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04073~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~636~^146.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04114~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04114~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04114~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~301~^13.^12^0.^~1~^~A~^^^1^12.^14.^9^12.^13.^~2, 3~^~05/01/2012~ -~04114~^~304~^5.^12^0.^~1~^~A~^^^1^4.^5.^10^4.^4.^~2, 3~^~05/01/2012~ -~04114~^~305~^15.^12^0.^~1~^~A~^^^1^13.^17.^9^14.^15.^~2, 3~^~05/01/2012~ -~04114~^~306~^84.^12^2.^~1~^~A~^^^1^59.^123.^10^78.^89.^~2, 3~^~05/01/2012~ -~04114~^~307~^993.^12^6.^~1~^~A~^^^1^929.^1060.^8^978.^1006.^~2, 3~^~05/01/2012~ -~04114~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04114~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04114~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04114~^~321~^21.^6^7.^~1~^~A~^^^1^0.^49.^5^0.^40.^~1, 2, 3~^~02/01/2003~ -~04114~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04114~^~334~^2.^6^1.^~1~^~A~^^^1^0.^11.^5^-2.^6.^~1, 2, 3~^~02/01/2003~ -~04114~^~337~^16.^6^10.^~1~^~A~^^^1^0.^52.^5^-10.^42.^~2, 3~^~02/01/2003~ -~04114~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04114~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04114~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~636~^71.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04120~^~208~^419.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04120~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04120~^~268~^1753.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~301~^27.^17^4.^~1~^~A~^^^1^11.^55.^16^17.^36.^~2, 3~^~10/01/2016~ -~04120~^~304~^7.^17^0.^~1~^~A~^^^1^3.^9.^16^6.^7.^~2, 3~^~10/01/2016~ -~04120~^~305~^25.^17^3.^~1~^~A~^^^1^12.^48.^16^17.^32.^~2, 3~^~10/01/2016~ -~04120~^~306~^108.^17^12.^~1~^~A~^^^1^38.^176.^16^81.^133.^~2, 3~^~10/01/2016~ -~04120~^~307~^661.^17^35.^~1~^~A~^^^1^420.^935.^16^585.^737.^~2, 3~^~10/01/2016~ -~04120~^~318~^464.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04120~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04120~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04120~^~321~^232.^5^38.^~1~^~A~^^^1^85.^287.^4^125.^338.^~2, 3~^~02/01/2003~ -~04120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04120~^~334~^92.^5^19.^~1~^~A~^^^1^15.^118.^4^37.^146.^~2, 3~^~02/01/2003~ -~04120~^~337~^373.^5^297.^~1~^~A~^^^1^57.^1562.^4^-452.^1198.^~2, 3~^~02/01/2003~ -~04120~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04120~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04120~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~04120~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04120~^~601~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04128~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04128~^~268~^1459.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~301~^6.^5^0.^~1~^~A~^^^1^5.^6.^4^5.^5.^~2, 3~^~03/01/2007~ -~04128~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^0.^~1, 2, 3~^~03/01/2007~ -~04128~^~305~^7.^5^0.^~1~^~A~^^^1^7.^8.^4^6.^7.^~2, 3~^~12/01/2016~ -~04128~^~306~^51.^5^0.^~1~^~A~^^^1^48.^53.^4^48.^54.^~2, 3~^~12/01/2016~ -~04128~^~307~^584.^5^11.^~1~^~A~^^^1^557.^619.^4^552.^615.^~2, 3~^~12/01/2016~ -~04128~^~318~^5339.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~319~^1297.^3^94.^~1~^~A~^^^1^1110.^1410.^2^892.^1701.^~2, 3~^~03/01/2007~ -~04128~^~320~^1348.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~04128~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2016~ -~04128~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04128~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04128~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04128~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04128~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~04128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04128~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~04128~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04128~^~601~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~04133~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04133~^~268~^2640.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04133~^~301~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~305~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~306~^24.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~307~^658.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~318~^514.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04133~^~320~^26.^0^^~1~^^^^^^^^^^^~03/01/2002~ -~04133~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04133~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~04133~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~636~^176.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04135~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~268~^1878.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04135~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~306~^8.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~307~^1.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04135~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04135~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04135~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~636~^66.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04141~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04141~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04141~^~268~^1919.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~301~^24.^5^5.^~1~^~A~^^^1^8.^33.^4^8.^38.^~2, 3~^~02/01/2003~ -~04141~^~304~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~2, 3~^~02/01/2003~ -~04141~^~305~^19.^5^3.^~1~^~A~^^^1^9.^29.^4^8.^29.^~2, 3~^~02/01/2003~ -~04141~^~306~^67.^5^6.^~1~^~A~^^^1^43.^77.^4^49.^83.^~2, 3~^~02/01/2003~ -~04141~^~307~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~04141~^~318~^464.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04141~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~321~^232.^5^38.^~1~^~A~^^^1^85.^287.^4^125.^338.^~2, 3~^~02/01/2003~ -~04141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04141~^~334~^92.^5^19.^~1~^~A~^^^1^15.^118.^4^37.^146.^~2, 3~^~02/01/2003~ -~04141~^~337~^373.^5^297.^~1~^~A~^^^1^57.^1562.^4^-452.^1198.^~2, 3~^~02/01/2003~ -~04141~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04141~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04141~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~04141~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04142~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~301~^11.^3^1.^~1~^~A~^^^1^8.^14.^2^3.^18.^~2, 3~^~02/01/2003~ -~04142~^~304~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^7.^8.^~2, 3~^~02/01/2003~ -~04142~^~305~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^23.^~2, 3~^~02/01/2003~ -~04142~^~306~^107.^3^1.^~1~^~A~^^^1^105.^111.^2^98.^115.^~2, 3~^~02/01/2003~ -~04142~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~04142~^~318~^541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~321~^289.^3^20.^~1~^~A~^^^1^256.^326.^2^202.^376.^~2, 3~^~02/01/2003~ -~04142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~334~^70.^3^2.^~1~^~A~^^^1^68.^75.^2^60.^80.^~2, 3~^~02/01/2003~ -~04142~^~337~^2530.^3^165.^~1~^~A~^^^1^2243.^2815.^2^1819.^3240.^~2, 3~^~02/01/2003~ -~04142~^~338~^124.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04142~^~417~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~04142~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04143~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~301~^7.^6^1.^~1~^~A~^^^1^4.^13.^5^3.^10.^~2, 3~^~02/01/2003~ -~04143~^~304~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^2.^3.^~2, 3~^~02/01/2003~ -~04143~^~305~^9.^6^0.^~1~^~A~^^^1^7.^12.^5^7.^11.^~2, 3~^~02/01/2003~ -~04143~^~306~^48.^6^3.^~1~^~A~^^^1^39.^61.^5^38.^57.^~2, 3~^~02/01/2003~ -~04143~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~04143~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~321~^21.^6^7.^~1~^~A~^^^1^0.^49.^5^0.^40.^~1, 2, 3~^~02/01/2003~ -~04143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04143~^~334~^2.^6^1.^~1~^~A~^^^1^0.^11.^5^-2.^6.^~1, 2, 3~^~02/01/2003~ -~04143~^~337~^16.^6^10.^~1~^~A~^^^1^0.^52.^5^-10.^42.^~2, 3~^~02/01/2003~ -~04143~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04143~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~04143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04143~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04143~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~04143~^~601~^67.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04144~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~268~^317.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~301~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^7.^9.^~2, 3~^~02/01/2003~ -~04144~^~304~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~02/01/2003~ -~04144~^~305~^11.^3^0.^~1~^~A~^^^1^10.^11.^2^9.^12.^~2, 3~^~02/01/2003~ -~04144~^~306~^85.^3^7.^~1~^~A~^^^1^77.^99.^2^54.^115.^~2, 3~^~02/01/2003~ -~04144~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~04144~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~321~^7.^3^7.^~1~^~A~^^^1^0.^22.^2^-24.^38.^~1, 2, 3~^~02/01/2003~ -~04144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04144~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~04144~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2003~ -~04144~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04144~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04144~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~04144~^~601~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04145~^~268~^2999.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04145~^~301~^18.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~305~^28.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~306~^34.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~307~^30.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~318~^280.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~319~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~04145~^~320~^84.^0^^~1~^^^^^^^^^^^~03/01/2002~ -~04145~^~601~^59.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04146~^~268~^2640.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04146~^~301~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~305~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~306~^24.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~307~^658.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~318~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~04146~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~04146~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04367~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~268~^551.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~301~^5.^3^0.^~1~^~A~^^^1^4.^6.^2^2.^6.^~2, 3~^~03/01/2003~ -~04367~^~304~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^2.^3.^~2, 3~^~03/01/2003~ -~04367~^~305~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~03/01/2003~ -~04367~^~306~^84.^3^4.^~1~^~A~^^^1^75.^89.^2^65.^101.^~2, 3~^~03/01/2003~ -~04367~^~307~^853.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04367~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~04367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04367~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~321~^38.^3^4.^~1~^~A~^^^1^30.^44.^2^20.^55.^~2, 3~^~03/01/2003~ -~04367~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04367~^~334~^15.^2^^~1~^~A~^^^1^10.^19.^1^^^^~03/01/2003~ -~04367~^~337~^319.^3^12.^~1~^~A~^^^1^294.^336.^2^263.^374.^~2, 3~^~03/01/2003~ -~04367~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04367~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04367~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2003~ -~04501~^~208~^884.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04501~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04501~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04501~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04501~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04501~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04501~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/1979~ -~04501~^~636~^201.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04502~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04502~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04502~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04502~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04502~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04502~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04502~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~636~^324.^9^14.^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2004~ -~04506~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04506~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~04506~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04506~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04506~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04506~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04510~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04510~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~04510~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~04510~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04510~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~636~^444.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04511~^~262~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~263~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04511~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04511~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~321~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~322~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04511~^~334~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~337~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~338~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~431~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~04511~^~435~^0.^0^^~4~^~NC~^~04510~^^^^^^^^^~06/01/2010~ -~04511~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~636~^444.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04513~^~208~^862.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04513~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~268~^3607.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04513~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04513~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04513~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04513~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04513~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04513~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04513~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~636~^95.^14^0.^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04514~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04514~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04514~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04514~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04514~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04514~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04514~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~636~^276.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04515~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04515~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04515~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04515~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04515~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04515~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04515~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04516~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04516~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04516~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04516~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04516~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~636~^102.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04517~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04517~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04517~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04517~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04517~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~636~^180.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~04518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~04518~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04518~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04518~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04518~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04518~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04518~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~638~^56.^4^^~1~^~A~^^^1^42.^68.^^^^~2~^~08/01/2012~ -~04518~^~639~^189.^4^^~1~^~A~^^^1^172.^197.^^^^~2~^~08/01/2012~ -~04518~^~641~^621.^4^^~1~^~A~^^^1^557.^647.^^^^~2~^~08/01/2012~ -~04528~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04528~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04528~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04528~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04528~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04528~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04528~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04528~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04528~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~636~^176.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04529~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04529~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04529~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04529~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04529~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04529~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~636~^266.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04530~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04530~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04530~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04530~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04530~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~636~^266.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~208~^763.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04531~^~268~^3192.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04531~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04531~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04531~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04531~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~417~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04531~^~432~^0.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~04531~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04531~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04532~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04532~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04532~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04532~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04532~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04532~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04532~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~636~^120.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04534~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04534~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04534~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04534~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04534~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04534~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04534~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04536~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04536~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04536~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04536~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04536~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~636~^357.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04539~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04539~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~268~^2027.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04539~^~301~^37.^2^^~9~^~MC~^^^1^29.^45.^1^^^^~12/01/2007~ -~04539~^~304~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~305~^74.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~306~^88.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~307~^642.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04539~^~318~^73.^2^^~9~^~MC~^^^1^69.^78.^1^^^^~12/01/2007~ -~04539~^~319~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~320~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~321~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~322~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~324~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~338~^26.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~04539~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04539~^~601~^31.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04541~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04541~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04541~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04541~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04541~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04541~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04541~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04541~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04542~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04542~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04542~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04542~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04542~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~324~^191.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04542~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04542~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04542~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04542~^~601~^85.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04543~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04543~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04543~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04543~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04543~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04543~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04543~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~636~^152.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04544~^~262~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~263~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~268~^3766.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04544~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04544~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04544~^~321~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~322~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04544~^~334~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~337~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~338~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04544~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04544~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04544~^~601~^56.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~636~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04545~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04545~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04545~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04545~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04545~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04545~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~636~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04546~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04546~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04546~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04546~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04546~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~04546~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04548~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04548~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04548~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04548~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04548~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04548~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04548~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04548~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04549~^~268~^3766.^0^^~4~^^^^^^^^^^^ -~04549~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04549~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04549~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04549~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04549~^~601~^56.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~636~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04550~^~268~^3766.^0^^~4~^^^^^^^^^^^ -~04550~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04550~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04550~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04550~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04550~^~601~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~636~^32.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04551~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04551~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04551~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04551~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04551~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04551~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04551~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~636~^86.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04554~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04554~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04554~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04554~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04554~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04554~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04554~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04554~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04556~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04556~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04556~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04556~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04556~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04556~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~636~^49.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04559~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04559~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04559~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04559~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04559~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04559~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~636~^148.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04560~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04560~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04560~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04560~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04560~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04560~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04560~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~636~^181.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04570~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04570~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04570~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04570~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04570~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04570~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~636~^49.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04572~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04572~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04572~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04572~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04572~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04572~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04572~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04573~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04573~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04573~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04573~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04573~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04573~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04573~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04575~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~268~^3767.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04575~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04575~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04575~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04575~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~324~^191.^0^^~4~^~BFZN~^~04542~^^^^^^^^^~03/01/2009~ -~04575~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04575~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04575~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04575~^~601~^102.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04576~^~268~^3767.^0^^~4~^^^^^^^^^^^ -~04576~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04576~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04576~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04576~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04576~^~601~^100.^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04581~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04581~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04581~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04581~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04581~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04582~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04582~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~04582~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~04582~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04582~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04582~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04582~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04582~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04582~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04582~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04582~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~04582~^~638~^3.^4^0.^~1~^~A~^^^1^2.^3.^3^2.^3.^~2, 3~^~03/01/2007~ -~04582~^~639~^241.^4^9.^~1~^~A~^^^1^223.^260.^3^211.^269.^~2, 3~^~03/01/2007~ -~04582~^~641~^413.^4^14.^~1~^~A~^^^1^382.^442.^3^366.^458.^~2, 3~^~03/01/2007~ -~04583~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04583~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04583~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04583~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04583~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04583~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04584~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04584~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~268~^3699.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~04584~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04584~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04584~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04584~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~04584~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04584~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04584~^~601~^0.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~04585~^~208~^727.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~04585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~04585~^~268~^3043.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~04585~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~305~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~307~^719.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04585~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~02/01/2009~ -~04585~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~04585~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~04585~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04585~^~417~^2.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04585~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~04585~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~04585~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04585~^~601~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04586~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04586~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04586~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04586~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04586~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04586~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04586~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04586~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04587~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04587~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~04587~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04587~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04587~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04587~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04587~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~04588~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04588~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04588~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~04588~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04589~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04589~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~318~^100000.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~319~^30000.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~04589~^~320~^30000.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~04589~^~324~^10000.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~ -~04589~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04589~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04589~^~601~^570.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04590~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04590~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04590~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04590~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04590~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~04590~^~601~^766.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04591~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04591~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04591~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04591~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04591~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~04591~^~601~^521.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04592~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04592~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04592~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04592~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04592~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~04592~^~601~^500.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04593~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04593~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04593~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04593~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04593~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~04593~^~601~^485.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04594~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~04594~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04594~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04594~^~324~^332.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~ -~04594~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04594~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04594~^~601~^710.^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04595~^~268~^3699.^0^^~4~^^^^^^^^^^^ -~04595~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~04595~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~04595~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~04595~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~04595~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04600~^~208~^362.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~262~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~263~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~268~^1515.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~301~^24.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~305~^20.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~306~^36.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~307~^786.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~02/01/2009~ -~04600~^~319~^768.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~04600~^~321~^610.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~322~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~324~^1.^0^^~4~^~BFZN~^~04585~^^^^^^^^^~02/01/2009~ -~04600~^~334~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~337~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~338~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~431~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~432~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2009~ -~04600~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04600~^~601~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04601~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~04601~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~268~^2088.^0^^~4~^^^^^^^^^^^~09/01/2015~ -~04601~^~301~^48.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~305~^34.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~307~^450.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~318~^1698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04601~^~319~^456.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~ -~04601~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04601~^~321~^107.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~ -~04601~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04601~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~04601~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04601~^~601~^106.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~268~^2088.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~301~^48.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~305~^34.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~307~^36.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~318~^1698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04602~^~319~^456.^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~ -~04602~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04602~^~321~^107.^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~ -~04602~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04602~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04602~^~601~^106.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04609~^~208~^897.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~268~^3753.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04609~^~301~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~304~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~305~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~306~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~307~^150.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04609~^~319~^0.^0^^~4~^~BFFN~^~04002~^^^^^^^^^~01/01/2003~ -~04609~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04609~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~324~^101.^0^^~4~^~BFFN~^~04002~^^^^^^^^^~03/01/2009~ -~04609~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04609~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04610~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04610~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04610~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04610~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04610~^~301~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~2, 3~^~03/01/2009~ -~04610~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~305~^5.^8^0.^~1~^~A~^^^1^5.^7.^7^4.^5.^~2, 3~^~03/01/2009~ -~04610~^~306~^18.^6^0.^~1~^~A~^^^1^15.^20.^5^15.^19.^~2, 3~^~03/01/2009~ -~04610~^~307~^751.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~04610~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~03/01/2009~ -~04610~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~04610~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04610~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04610~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04610~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04610~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04610~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04610~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04610~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04610~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04610~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04610~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04610~^~641~^275.^1^^~1~^~A~^^^1^275.^275.^^^^^~03/01/2009~ -~04611~^~208~^713.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04611~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04611~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04611~^~268~^2981.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04611~^~301~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~03/01/2007~ -~04611~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~03/01/2007~ -~04611~^~305~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~03/01/2007~ -~04611~^~306~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^^~03/01/2007~ -~04611~^~307~^657.^2^^~1~^~A~^^^1^606.^708.^1^^^^~03/01/2007~ -~04611~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~03/01/2009~ -~04611~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04611~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04611~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04611~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04611~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04611~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04611~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04611~^~636~^210.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04611~^~638~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04611~^~639~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04611~^~641~^112.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04612~^~208~^537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04612~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04612~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04612~^~268~^2248.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04612~^~301~^21.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~304~^2.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~305~^16.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~306~^30.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~307~^785.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~04612~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~03/01/2003~ -~04612~^~319~^768.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~04612~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04612~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04612~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04612~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04612~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04612~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04612~^~639~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04612~^~641~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04613~^~208~^533.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04613~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04613~^~268~^2230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~301~^21.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~305~^16.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~306~^30.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~307~^615.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~04613~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~03/01/2007~ -~04613~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04613~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04613~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04613~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04613~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04613~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04613~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04613~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04613~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2010~ -~04613~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~601~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04614~^~208~^526.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~268~^2199.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~301~^21.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~304~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~305~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~306~^30.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~307~^700.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~04614~^~318~^3571.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~319~^768.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04614~^~321~^610.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04614~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04614~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~638~^25.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~639~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~641~^74.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04615~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~262~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~263~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~301~^1.^6^0.^~1~^~A~^^^1^1.^2.^5^0.^1.^~1, 2, 3~^~04/01/2006~ -~04615~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~2, 3~^~04/01/2006~ -~04615~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~306~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~307~^4.^6^0.^~1~^~A~^^^1^3.^6.^5^3.^5.^~1, 2, 3~^~04/01/2006~ -~04615~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2006~ -~04615~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04615~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~321~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~322~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04615~^~334~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~337~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~338~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2006~ -~04615~^~431~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~ -~04615~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~04615~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~638~^51.^6^5.^~1~^~A~^^^1^27.^64.^5^36.^65.^~2, 3~^~04/01/2006~ -~04615~^~639~^50.^6^3.^~1~^~A~^^^1^33.^57.^5^41.^59.^~2, 3~^~04/01/2006~ -~04615~^~641~^138.^6^14.^~1~^~A~^^^1^84.^168.^5^101.^173.^~2, 3~^~04/01/2006~ -~04617~^~208~^717.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~262~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~263~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~268~^2999.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04617~^~301~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~304~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~305~^5.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~306~^18.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~307~^2.^0^^~4~^~O~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04617~^~319~^768.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~320~^819.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~321~^610.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~322~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~324~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~334~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~337~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~338~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~417~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~431~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~432~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~435~^1.^0^^~4~^~NC~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~601~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04618~^~208~^713.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~262~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~263~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~268~^2981.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04618~^~301~^3.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~304~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~305~^5.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~306~^17.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~307~^28.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04618~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04618~^~319~^768.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~320~^819.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~321~^610.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~322~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~324~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~334~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~337~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~338~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~417~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~431~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~432~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~435~^1.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~601~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04620~^~208~^533.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~262~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~263~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~268~^2230.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04620~^~301~^21.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~304~^2.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~305~^16.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~306~^30.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~307~^2.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~04620~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04620~^~319~^768.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~320~^819.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~321~^610.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~322~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04620~^~334~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~337~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~338~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~417~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~431~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~432~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~435~^1.^0^^~4~^~NC~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~601~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04624~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04624~^~268~^180.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04624~^~301~^38.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~304~^4.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~305~^30.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~306~^50.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~307~^833.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~04624~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~12/01/2006~ -~04624~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04624~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04624~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04624~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04624~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04626~^~208~^630.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04626~^~268~^2636.^0^^~9~^^^^^^^^^^^~12/01/2006~ -~04626~^~301~^20.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~305~^16.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~306~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~307~^590.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04626~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04626~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04626~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04626~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~04626~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04626~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~208~^330.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04627~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04627~^~268~^1381.^0^^~9~^^^^^^^^^^^~10/01/2004~ -~04627~^~301~^50.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~304~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~305~^39.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~306~^64.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~307~^630.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04627~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04627~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04627~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04627~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~04627~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04627~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04628~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~301~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~2, 3~^~02/01/2001~ -~04628~^~304~^1.^8^0.^~1~^~A~^^^1^1.^1.^7^0.^0.^~2, 3~^~02/01/2001~ -~04628~^~305~^5.^8^0.^~1~^~A~^^^1^5.^7.^7^4.^5.^~2, 3~^~02/01/2001~ -~04628~^~306~^18.^6^0.^~1~^~A~^^^1^15.^20.^5^15.^19.^~2, 3~^~02/01/2001~ -~04628~^~307~^654.^8^19.^~1~^~A~^^^1^522.^706.^7^606.^701.^~2, 3~^~02/01/2001~ -~04628~^~417~^1.^2^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~04628~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~04628~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~04628~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2001~ -~04628~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~641~^275.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04629~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~04629~^~268~^2627.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~04629~^~301~^7.^10^1.^~1~^~A~^^^1^6.^8.^1^-6.^19.^~4~^~02/01/2001~ -~04629~^~304~^2.^10^0.^~1~^~A~^^^1^2.^2.^1^-1.^4.^~4~^~02/01/2001~ -~04629~^~305~^10.^10^0.^~1~^~A~^^^1^10.^11.^1^-2.^22.^~4~^~02/01/2001~ -~04629~^~306~^46.^10^5.^~1~^~A~^^^1^38.^49.^1^-27.^118.^~4~^~02/01/2001~ -~04629~^~307~^700.^10^8.^~1~^~A~^^^1^689.^705.^1^590.^809.^~4~^~02/01/2001~ -~04629~^~318~^3571.^4^^~8~^~LC~^^^1^3571.^3571.^^^^~2~^~03/01/2007~ -~04629~^~417~^1.^3^0.^~1~^~A~^^^1^1.^1.^1^0.^2.^~4~^~02/01/2001~ -~04629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~04629~^~432~^1.^3^0.^~1~^~A~^^^1^1.^1.^1^0.^2.^^~03/01/2007~ -~04629~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~04629~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~02/01/2001~ -~04629~^~638~^25.^6^0.^~1~^~A~^^^1^24.^26.^1^15.^34.^~4~^~02/01/2001~ -~04629~^~639~^31.^6^0.^~1~^~A~^^^1^31.^31.^1^26.^34.^~4~^~02/01/2001~ -~04629~^~641~^81.^6^2.^~1~^~A~^^^1^80.^84.^1^54.^107.^~4~^~02/01/2001~ -~04630~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~301~^2.^18^0.^~1~^~A~^^^1^0.^5.^17^0.^2.^~1, 2, 3~^~11/01/2016~ -~04630~^~304~^1.^18^0.^~1~^~A~^^^1^0.^1.^17^0.^0.^~1, 2, 3~^~03/01/2002~ -~04630~^~305~^4.^18^0.^~1~^~A~^^^1^3.^4.^17^3.^4.^~2, 3~^~03/01/2002~ -~04630~^~306~^17.^18^3.^~1~^~A~^^^1^5.^64.^17^8.^24.^~2, 3~^~11/01/2016~ -~04630~^~307~^716.^18^21.^~1~^~A~^^^1^618.^894.^17^669.^761.^~2, 3~^~11/01/2016~ -~04630~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~04630~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04630~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~04630~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04631~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~301~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~04/01/2002~ -~04631~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~04/01/2002~ -~04631~^~305~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^~1~^~04/01/2002~ -~04631~^~306~^36.^2^^~1~^~A~^^^1^36.^37.^1^^^^~04/01/2002~ -~04631~^~307~^580.^2^^~1~^~A~^^^1^579.^580.^1^^^^~04/01/2002~ -~04631~^~318~^3307.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04631~^~319~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04631~^~320~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04631~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04631~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04631~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~04631~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~04631~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04631~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~04/01/2002~ -~04631~^~638~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2002~ -~04631~^~639~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2002~ -~04631~^~641~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~04/01/2002~ -~04633~^~208~^175.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04633~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04633~^~268~^732.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~301~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~304~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~305~^14.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~306~^25.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~307~^733.^0^^~8~^^^^^^^^^^^~12/01/2006~ -~04633~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04633~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04633~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04633~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04633~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04633~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~04634~^~208~^175.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~262~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~263~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~268~^732.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~301~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~304~^1.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~305~^14.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~306~^25.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~04634~^~318~^3577.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~04/01/2003~ -~04634~^~319~^768.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~320~^819.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~04/01/2003~ -~04634~^~321~^610.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~322~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04634~^~334~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~337~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~338~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~417~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~431~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~432~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~435~^0.^0^^~4~^~NC~^~04633~^^^^^^^^^~03/01/2009~ -~04634~^~601~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04635~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04635~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04635~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~301~^11.^3^2.^~1~^~A~^^^1^9.^17.^2^0.^23.^~2, 3~^~02/01/2003~ -~04635~^~304~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^5.^~2, 3~^~02/01/2003~ -~04635~^~305~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^1.^~2, 3~^~02/01/2003~ -~04635~^~306~^122.^3^3.^~1~^~A~^^^1^116.^129.^2^105.^139.^~2, 3~^~02/01/2003~ -~04635~^~307~^788.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~04635~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04635~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~321~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~04635~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04635~^~334~^13.^3^6.^~1~^~A~^^^1^0.^21.^2^-15.^41.^~1, 2, 3~^~02/01/2003~ -~04635~^~337~^1587.^3^77.^~1~^~A~^^^1^1475.^1737.^2^1251.^1922.^~2, 3~^~02/01/2003~ -~04635~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04635~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04635~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04636~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04636~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~301~^30.^3^6.^~1~^~A~^^^1^17.^40.^2^0.^59.^~2, 3~^~02/01/2003~ -~04636~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~2, 3~^~02/01/2003~ -~04636~^~305~^109.^3^54.^~1~^~A~^^^1^1.^179.^2^-126.^345.^~2, 3~^~02/01/2003~ -~04636~^~306~^102.^3^5.^~1~^~A~^^^1^92.^109.^2^80.^124.^~2, 3~^~02/01/2003~ -~04636~^~307~^1129.^3^35.^~1~^~A~^^^1^1073.^1195.^2^976.^1281.^~2, 3~^~07/01/2010~ -~04636~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04636~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~321~^40.^3^11.^~1~^~A~^^^1^20.^59.^2^-8.^88.^~2, 3~^~02/01/2003~ -~04636~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04636~^~334~^11.^3^6.^~1~^~A~^^^1^0.^21.^2^-15.^36.^~1, 2, 3~^~02/01/2003~ -~04636~^~337~^5.^3^5.^~1~^~A~^^^1^0.^15.^2^-16.^26.^~2, 3~^~02/01/2003~ -~04636~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04636~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~04636~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04638~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04638~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04638~^~301~^50.^3^11.^~1~^~A~^^^1^29.^69.^2^0.^99.^~2, 3~^~02/01/2003~ -~04638~^~304~^8.^3^1.^~1~^~A~^^^1^4.^10.^2^0.^14.^~2, 3~^~02/01/2003~ -~04638~^~305~^113.^3^19.^~1~^~A~^^^1^75.^142.^2^26.^198.^~2, 3~^~02/01/2003~ -~04638~^~306~^111.^3^6.^~1~^~A~^^^1^103.^125.^2^81.^140.^~2, 3~^~02/01/2003~ -~04638~^~307~^897.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04638~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~417~^6.^3^2.^~1~^~A~^^^1^3.^10.^2^-3.^15.^~2, 3~^~02/01/2003~ -~04638~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04638~^~432~^6.^3^2.^~1~^~A~^^^1^3.^10.^2^-3.^15.^^~05/01/2005~ -~04638~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04638~^~601~^7.^3^4.^~1~^~A~^^^1^2.^16.^2^-11.^25.^~2, 3~^~02/01/2003~ -~04639~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~04639~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04639~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04639~^~268~^1798.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~04639~^~301~^28.^18^1.^~1~^~A~^^^1^18.^47.^5^24.^31.^~2, 3~^~07/01/2013~ -~04639~^~304~^5.^18^0.^~1~^~A~^^^1^3.^6.^6^4.^5.^~2, 3~^~02/01/2003~ -~04639~^~305~^186.^18^7.^~1~^~A~^^^1^83.^257.^5^167.^205.^~2, 3~^~07/01/2015~ -~04639~^~306~^64.^18^2.^~1~^~A~^^^1^49.^98.^6^56.^70.^~2, 3~^~07/01/2013~ -~04639~^~307~^901.^18^6.^~1~^~A~^^^1^810.^1040.^10^886.^916.^~2, 3~^~09/01/2015~ -~04639~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~04639~^~319~^13.^3^^~1~^~A~^^^1^5.^23.^^^^~2, 3~^~07/01/2013~ -~04639~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~04639~^~321~^14.^9^8.^~1~^~A~^^^1^2.^84.^2^-23.^52.^~2, 3~^~07/01/2015~ -~04639~^~322~^0.^9^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~07/01/2013~ -~04639~^~324~^3.^2^^~1~^~A~^^^1^0.^8.^^^^~1~^~07/01/2013~ -~04639~^~334~^1.^9^0.^~1~^~A~^^^1^0.^1.^5^0.^0.^~2, 3~^~07/01/2013~ -~04639~^~337~^0.^9^0.^~1~^~A~^^^1^0.^3.^3^0.^1.^~1, 2, 3~^~07/01/2015~ -~04639~^~338~^21.^9^1.^~1~^~A~^^^1^16.^32.^3^14.^27.^~2, 3~^~07/01/2013~ -~04639~^~417~^4.^3^^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~04639~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~04639~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~04639~^~601~^26.^9^0.^~1~^~A~^^^1^19.^31.^4^24.^27.^~2, 3~^~07/01/2013~ -~04640~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~301~^40.^4^12.^~6~^~JA~^^^2^24.^47.^1^-116.^196.^~4~^~12/01/2007~ -~04640~^~304~^6.^3^1.^~1~^~A~^^^1^4.^9.^2^0.^11.^~2, 3~^~02/01/2003~ -~04640~^~305~^193.^3^38.^~1~^~A~^^^1^144.^269.^2^28.^358.^~2, 3~^~02/01/2003~ -~04640~^~306~^132.^3^6.^~1~^~A~^^^1^123.^145.^2^102.^160.^~2, 3~^~02/01/2003~ -~04640~^~307~^1120.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~04640~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04640~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~338~^49.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~417~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^~2, 3~^~02/01/2003~ -~04640~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04640~^~432~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^^~12/01/2007~ -~04640~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04640~^~601~^16.^5^8.^~6~^~JA~^^^2^5.^21.^1^-91.^123.^~4~^~12/01/2007~ -~04641~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04641~^~262~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04641~^~263~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04641~^~268~^997.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04641~^~301~^6.^12^0.^~1~^~A~^^^1^6.^7.^6^6.^6.^~2, 3~^~04/01/2012~ -~04641~^~304~^2.^12^0.^~1~^~A~^^^1^1.^3.^7^1.^1.^~2, 3~^~03/01/2003~ -~04641~^~305~^15.^12^0.^~1~^~A~^^^1^7.^37.^8^14.^15.^~2, 3~^~04/01/2012~ -~04641~^~306~^31.^12^3.^~1~^~A~^^^1^12.^70.^6^22.^39.^~2, 3~^~04/01/2012~ -~04641~^~307~^827.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04641~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~04641~^~319~^5.^4^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~04/01/2012~ -~04641~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~04641~^~321~^30.^6^0.^~1~^~A~^^^1^4.^104.^2^27.^32.^~2, 3~^~04/01/2012~ -~04641~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~04/01/2012~ -~04641~^~324~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~02/01/2011~ -~04641~^~334~^3.^6^0.^~1~^~A~^^^1^1.^4.^2^2.^3.^~2, 3~^~04/01/2012~ -~04641~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~338~^27.^6^1.^~1~^~A~^^^1^21.^29.^2^18.^35.^~2, 3~^~04/01/2012~ -~04641~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04641~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2003~ -~04641~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04641~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~04641~^~601~^16.^12^0.^~1~^~A~^^^1^13.^23.^10^14.^16.^~2, 3~^~04/01/2012~ -~04641~^~638~^21.^3^1.^~1~^~A~^^^1^19.^23.^2^15.^25.^~2, 3~^~03/01/2003~ -~04641~^~639~^19.^3^1.^~1~^~A~^^^1^16.^22.^2^10.^27.^~2, 3~^~03/01/2003~ -~04641~^~641~^48.^3^3.^~1~^~A~^^^1^42.^52.^2^34.^61.^~2, 3~^~03/01/2003~ -~04642~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04642~^~262~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~263~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04642~^~301~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~304~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~305~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~306~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~307~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~318~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~319~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~320~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~321~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~322~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~334~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~337~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~338~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~417~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~431~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~432~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~435~^0.^0^^~4~^~NC~^~04060~^^^^^^^^^~07/01/2009~ -~04642~^~601~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04643~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04643~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04643~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2008~ -~04643~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~208~^884.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04644~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04644~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04644~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2009~ -~04644~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04645~^~208~^884.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04645~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2009~ -~04645~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04646~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~301~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~304~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~305~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~306~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~307~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~12/01/2006~ -~04646~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04648~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04648~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04648~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~ -~04648~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04649~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04649~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~12/01/2006~ -~04649~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04650~^~208~^884.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~04650~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~318~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~07/01/2009~ -~04650~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~636~^250.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04651~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04651~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04651~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04651~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~ -~04651~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04652~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04652~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04652~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~ -~04652~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04653~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04653~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~ -~04653~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04654~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~262~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~263~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~301~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~304~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~305~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~306~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~307~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~318~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~319~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~320~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~321~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~322~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04654~^~334~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~337~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~338~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~417~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~431~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~432~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~435~^0.^0^^~4~^~NC~^~04543~^^^^^^^^^~12/01/2006~ -~04654~^~601~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~636~^152.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04655~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~262~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~263~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~268~^2626.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~301~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~304~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~305~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~306~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~307~^864.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04655~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04655~^~319~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~320~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~321~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~322~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~334~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~337~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~338~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~417~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~431~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~432~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~435~^0.^0^^~4~^~NC~^~04615~^^^^^^^^^~05/01/2010~ -~04655~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04656~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~ -~04656~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~ -~04657~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~306~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~ -~04658~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04659~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~04659~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~07/01/2009~ -~04659~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04660~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~ -~04660~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04661~^~208~^880.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~268~^3680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~07/01/2009~ -~04661~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04662~^~208~^880.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~268~^3680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~306~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~ -~04662~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~12/01/2006~ -~04663~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04664~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~ -~04664~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04665~^~208~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04665~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~268~^2989.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04665~^~301~^66.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~304~^6.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~305~^51.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~306~^94.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~307~^879.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04665~^~318~^4286.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04665~^~319~^981.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~04665~^~320~^1032.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04665~^~321~^610.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04665~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04665~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04666~^~208~^884.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~262~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~263~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~268~^3699.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~301~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~304~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~305~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~306~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~307~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~318~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~319~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~320~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~321~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~322~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~324~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~334~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~337~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~338~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~417~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~431~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~432~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~435~^0.^0^^~4~^~NC~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~601~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~208~^884.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~262~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~263~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~268~^3699.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~301~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~304~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~305~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~306~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~307~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~318~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~319~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~320~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~321~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~322~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~334~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~337~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~338~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~417~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~431~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~432~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~435~^0.^0^^~4~^~NC~^~04554~^^^^^^^^^~05/01/2010~ -~04667~^~601~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~636~^200.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04668~^~208~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04668~^~268~^2989.^0^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~04668~^~301~^3.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~304~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~305~^5.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~306~^18.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~307~^886.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04668~^~318~^3571.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04668~^~417~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~431~^0.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~432~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~435~^1.^0^^~4~^~NC~^~04628~^^^^^^^^^~01/01/2008~ -~04668~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04669~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~268~^3699.^0^^~4~^~NC~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~318~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~03/01/2007~ -~04669~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~636~^250.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04673~^~208~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~268~^2438.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~305~^4.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~306~^28.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~307~^646.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~318~^3819.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04674~^~208~^337.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~04674~^~268~^1410.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~04674~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~306~^32.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~307~^580.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~318~^5161.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~04674~^~319~^1410.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04674~^~320~^1433.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04675~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~268~^661.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~306~^12.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~307~^755.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~318~^4489.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~208~^47.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~268~^197.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~306~^26.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~307~^829.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~318~^5772.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~208~^605.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~04677~^~268~^2531.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~04677~^~305~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~307~^729.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~318~^5407.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~601~^23.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~04677~^~636~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~638~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~639~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~641~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04678~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~639~^202.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~641~^426.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04679~^~208~^792.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~268~^3314.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~307~^59.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~04679~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~04679~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04679~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04683~^~208~^606.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~268~^2537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~307~^536.^5^^~11~^~JO~^^^1^393.^643.^^^^~2~^~03/01/2007~ -~04683~^~318~^3571.^5^^~11~^~JO~^^^1^3571.^3571.^^^^~2~^~03/01/2007~ -~04684~^~208~^730.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~268~^3055.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~307~^714.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~04685~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~04686~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04686~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~268~^866.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04686~^~301~^67.^2^^~8~^~LC~^^^2^0.^133.^1^^^^~03/01/2007~ -~04686~^~304~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~305~^28.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~306~^55.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~307~^701.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04686~^~318~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04686~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04686~^~334~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04686~^~601~^0.^2^^~8~^~LC~^^^2^0.^0.^^^^^~03/01/2007~ -~04687~^~208~^357.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~04687~^~268~^1494.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~04687~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~306~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~307~^670.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~318~^4567.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~319~^1370.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~320~^1370.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04688~^~208~^165.^9^5.^~9~^~MC~^^^1^149.^196.^8^151.^178.^~4~^~12/01/2007~ -~04688~^~268~^690.^9^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~04688~^~301~^6.^9^0.^~9~^~MC~^^^1^4.^8.^8^4.^6.^~4~^~12/01/2007~ -~04688~^~307~^1102.^9^89.^~9~^~MC~^^^1^697.^1603.^8^894.^1308.^~4~^~12/01/2007~ -~04688~^~318~^347.^9^226.^~9~^~MC~^^^1^4.^2123.^8^-174.^869.^~4~^~12/01/2007~ -~04688~^~601~^0.^9^0.^~9~^~MC~^^^1^0.^0.^8^0.^0.^~4~^~12/01/2007~ -~04689~^~208~^333.^1^^~8~^~LC~^^^^^^^^^^~01/01/2009~ -~04689~^~268~^1393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~04689~^~301~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~01/01/2009~ -~04689~^~304~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~01/01/2009~ -~04689~^~305~^27.^2^^~1~^~A~^^^1^27.^27.^1^^^^~01/01/2009~ -~04689~^~306~^63.^2^^~1~^~A~^^^1^45.^82.^1^^^^~01/01/2009~ -~04689~^~307~^848.^2^^~1~^~A~^^^1^839.^857.^1^^^^~01/01/2009~ -~04689~^~318~^0.^1^^~8~^~LC~^^^^^^^^^~1~^~01/01/2009~ -~04689~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~601~^33.^1^^~8~^~LC~^^^^^^^^^^~01/01/2009~ -~04690~^~208~^339.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~262~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~263~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~268~^1417.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~04690~^~301~^6.^4^0.^~1~^~A~^^^2^3.^11.^2^3.^7.^~2, 3~^~03/01/2009~ -~04690~^~304~^1.^4^0.^~1~^~A~^^^2^1.^2.^2^0.^1.^~2, 3~^~03/01/2009~ -~04690~^~305~^5.^4^1.^~1~^~A~^^^2^1.^9.^2^0.^10.^~2, 3~^~03/01/2009~ -~04690~^~306~^34.^4^10.^~1~^~A~^^^2^4.^51.^2^-10.^78.^~2, 3~^~03/01/2009~ -~04690~^~307~^589.^4^23.^~1~^~A~^^^2^537.^670.^2^486.^691.^~2, 3~^~03/01/2009~ -~04690~^~318~^4322.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04690~^~319~^1297.^3^94.^~1~^~A~^^^1^1110.^1410.^2^892.^1701.^~2, 3~^~03/01/2009~ -~04690~^~320~^1297.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04690~^~321~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~322~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~324~^429.^0^^~4~^~O~^^^^^^^^^^~04/01/2009~ -~04690~^~334~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~337~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~338~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~417~^1.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~431~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~432~^1.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~435~^1.^0^^~4~^~NC~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~601~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04691~^~208~^717.^0^^~4~^~NR~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~262~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~263~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~268~^2999.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04691~^~301~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~304~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~305~^5.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~306~^18.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~307~^751.^0^^~4~^~O~^~04610~^^^^^^^^^~07/01/2010~ -~04691~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~319~^768.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~320~^819.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~321~^610.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~322~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04691~^~334~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~337~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~338~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~417~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~431~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~432~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~435~^1.^0^^~4~^~NC~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~601~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~636~^410.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04691~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04691~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04691~^~641~^275.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04692~^~208~^713.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~262~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~263~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~268~^2981.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~301~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~03/01/2009~ -~04692~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~03/01/2009~ -~04692~^~305~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~03/01/2009~ -~04692~^~306~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^^~03/01/2009~ -~04692~^~307~^657.^2^^~1~^~A~^^^1^606.^708.^1^^^^~03/01/2009~ -~04692~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~319~^768.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~320~^819.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~321~^610.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~322~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04692~^~334~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~337~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~338~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~417~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~431~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~432~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~435~^1.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~601~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~636~^210.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04692~^~638~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04692~^~639~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04692~^~641~^112.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04693~^~208~^537.^0^^~4~^~NC~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~262~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~263~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~268~^2247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~301~^21.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~304~^2.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~305~^16.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~306~^30.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~307~^785.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~319~^768.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~320~^819.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~321~^610.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~322~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04693~^~334~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~337~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~338~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~417~^1.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~431~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~432~^1.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~435~^1.^0^^~4~^~NC~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~601~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~636~^167.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04693~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04693~^~639~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04693~^~641~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04694~^~208~^533.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~262~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~263~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~268~^2229.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~301~^21.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~304~^2.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~305~^16.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~306~^30.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~307~^785.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~319~^768.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~320~^819.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~321~^610.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~322~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04694~^~334~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~337~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~338~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~417~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~431~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~432~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~435~^1.^0^^~4~^~NC~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~601~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04695~^~208~^535.^0^^~4~^~NC~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~262~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~263~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~268~^2238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04695~^~301~^21.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~304~^2.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~305~^16.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~306~^30.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~307~^785.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04695~^~319~^768.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~320~^819.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~321~^610.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~322~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04695~^~334~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~337~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~338~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~417~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~431~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~432~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~435~^1.^0^^~4~^~NC~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~601~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04696~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04696~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04696~^~301~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~305~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~306~^18.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~307~^2.^0^^~4~^~BFZN~^~04617~^^^^^^^^^~03/01/2009~ -~04696~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04696~^~319~^768.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~320~^819.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~321~^610.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04696~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04696~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04697~^~208~^542.^0^^~4~^~NC~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~262~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~263~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~268~^2269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04697~^~301~^21.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~304~^2.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~305~^16.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~306~^30.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~307~^2.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04697~^~319~^768.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~320~^819.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~321~^610.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~322~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04697~^~334~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~337~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~338~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~417~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~431~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~432~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~435~^1.^0^^~4~^~NC~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~601~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04698~^~208~^900.^0^^~4~^~NC~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~324~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04698~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04699~^~208~^900.^0^^~4~^~NC~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~04699~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04700~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2010~ -~04700~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~324~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~324~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04702~^~208~^884.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~262~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~263~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2010~ -~04702~^~301~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~304~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~305~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~306~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~307~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04702~^~319~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~320~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~321~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~322~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~324~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~334~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~337~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~338~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~417~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~431~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~432~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~435~^0.^0^^~4~^~NC~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~601~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04703~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04703~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~268~^1943.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04703~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~305~^22.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~306~^20.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~307~^512.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04703~^~318~^70.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~319~^10.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~321~^18.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~324~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~334~^7.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~338~^41.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04703~^~601~^29.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04704~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~268~^1668.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04704~^~301~^59.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~305~^49.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~306~^61.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~307~^933.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~04704~^~318~^180.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~321~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~324~^4.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~04704~^~601~^15.^1^^~8~^~LC~^^^^^^^^^^~01/01/2011~ -~04705~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04705~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~268~^547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04705~^~301~^33.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~305~^30.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~306~^48.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~307~^1265.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~318~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04705~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~208~^169.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~268~^705.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~301~^24.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~304~^13.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~305~^37.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~306~^69.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~307~^1004.^2^^~8~^~LC~^^^1^941.^1067.^1^^^^~12/01/2010~ -~04706~^~318~^18.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~319~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~320~^5.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04706~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04707~^~208~^878.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~268~^3675.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~305~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~306~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~639~^112.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~641~^235.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04708~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~268~^1512.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~301~^0.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~304~^2.^12^0.^~1~^~A~^^^1^1.^3.^7^1.^1.^~2, 3~^~05/01/2013~ -~04708~^~305~^15.^12^0.^~1~^~A~^^^1^7.^37.^8^14.^15.^~2, 3~^~05/01/2013~ -~04708~^~306~^31.^12^3.^~1~^~A~^^^1^12.^70.^6^22.^39.^~2, 3~^~05/01/2013~ -~04708~^~307~^800.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~04708~^~319~^5.^4^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~05/01/2013~ -~04708~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~04708~^~321~^30.^6^0.^~1~^~A~^^^1^4.^104.^2^27.^32.^~2, 3~^~05/01/2013~ -~04708~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~05/01/2013~ -~04708~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~334~^3.^6^0.^~1~^~A~^^^1^1.^4.^2^2.^3.^~2, 3~^~05/01/2013~ -~04708~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~338~^27.^6^1.^~1~^~A~^^^1^21.^29.^2^18.^35.^~2, 3~^~05/01/2013~ -~04708~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~601~^33.^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04709~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~262~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~263~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~301~^5.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~304~^2.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~305~^13.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~306~^36.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~307~^833.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~04709~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~319~^2.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~321~^3.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~322~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~04709~^~334~^2.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~337~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~338~^13.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~417~^6.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~431~^0.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~432~^6.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~601~^0.^0^^~8~^^^^^^^^^^^~07/01/2015~ -~05000~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~268~^604.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05000~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~305~^246.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~306~^284.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~307~^328.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~05000~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05000~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~05000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~05000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~432~^8.^4^2.^~1~^~A~^^^1^4.^13.^3^1.^14.^~2, 3~^~05/01/2012~ -~05000~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05000~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05001~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05001~^~268~^891.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~05001~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~305~^149.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~306~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~307~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~318~^771.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~319~^232.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05001~^~320~^232.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05001~^~417~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05001~^~432~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~05001~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05002~^~268~^1218.^0^^~4~^^^^^^^^^^^ -~05002~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~305~^158.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~306~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~318~^603.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~319~^181.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05002~^~320~^181.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05002~^~417~^32.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05002~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05002~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05002~^~601~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05003~^~268~^1138.^0^^~4~^^^^^^^^^^^ -~05003~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~305~^194.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~306~^237.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~307~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~318~^826.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~319~^248.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05003~^~320~^248.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05003~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~ -~05003~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05003~^~432~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05003~^~601~^112.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~268~^979.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05004~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~305~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~318~^636.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~319~^191.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~05004~^~320~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~324~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~417~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05004~^~432~^29.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05004~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05004~^~601~^107.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05005~^~268~^904.^0^^~4~^^^^^^^^^^^ -~05005~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~305~^144.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~306~^163.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~307~^66.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~318~^579.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~319~^174.^0^^~1~^^^^^^^^^^^~06/01/2013~ -~05005~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05005~^~417~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05005~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05005~^~601~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~268~^900.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~05006~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~304~^20.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~305~^147.^24^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~306~^189.^24^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~307~^70.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~318~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05006~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~05006~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05006~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~05006~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05006~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~268~^1209.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~05007~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~305~^155.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~307~^292.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~318~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~319~^28.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05007~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~05007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~05007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05007~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05007~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~05007~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~268~^1125.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~05008~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~305~^191.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~306~^234.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~307~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~318~^89.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~05008~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05008~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~05008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~05008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05008~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05008~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~05008~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05009~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~304~^23.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~305~^182.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~306~^223.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~307~^82.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~318~^161.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05009~^~319~^48.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05009~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05009~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05009~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05009~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05010~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~306~^166.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~307~^67.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~318~^146.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05010~^~319~^44.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05010~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~324~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05010~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05010~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05010~^~601~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~268~^498.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05011~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~304~^25.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~305~^173.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~306~^229.^24^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~307~^77.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05011~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~05011~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05011~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05011~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05011~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05012~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~306~^257.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~318~^59.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05012~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05012~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05012~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05012~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05012~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~268~^795.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05013~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~304~^25.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~305~^195.^16^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~306~^243.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~307~^86.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~318~^53.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05013~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~05013~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05013~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05013~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05013~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~268~^741.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05014~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~305~^150.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~306~^180.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~307~^70.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05014~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05014~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05014~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05014~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~268~^1460.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~05015~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~304~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~305~^100.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~306~^103.^24^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~307~^63.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~318~^262.^18^59.^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~319~^76.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~05015~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05015~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~05015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~324~^24.^0^^~4~^~T~^^^^^^^^^^~08/01/2009~ -~05015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05015~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~05015~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05015~^~601~^109.^8^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05016~^~268~^1648.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05016~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~305~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~306~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~307~^581.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~318~^138.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~05016~^~324~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05016~^~417~^40.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~ -~05016~^~431~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05016~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05016~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05017~^~268~^2100.^0^^~4~^^^^^^^^^^^ -~05017~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~305~^126.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~306~^125.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~318~^232.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~319~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05017~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05017~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~ -~05017~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05017~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05017~^~601~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~208~^454.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~268~^1900.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05018~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~304~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~305~^125.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~306~^136.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~307~^65.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~318~^260.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05018~^~319~^78.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~05018~^~320~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05018~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05018~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05018~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05019~^~268~^1519.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05019~^~301~^12.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~304~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~305~^99.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~306~^117.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~307~^56.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~318~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~05019~^~324~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05019~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05019~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05019~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05019~^~601~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05020~^~268~^519.^0^^~4~^^^^^^^^^^^ -~05020~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~306~^228.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~318~^8847.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~319~^2657.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05020~^~320~^2657.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05020~^~417~^345.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05020~^~432~^345.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~435~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05020~^~601~^262.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05021~^~268~^1159.^0^^~4~^^^^^^^^^^^ -~05021~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~305~^286.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~306~^330.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~307~^113.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~318~^11929.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~319~^3582.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05021~^~320~^3582.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05021~^~417~^379.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05021~^~432~^379.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~435~^379.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05021~^~601~^446.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05022~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05022~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~304~^14.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~305~^289.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~306~^224.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~318~^5869.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~319~^1751.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~320~^1753.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~05022~^~321~^13.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~ -~05022~^~322~^5.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~ -~05022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05022~^~334~^5.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~ -~05022~^~337~^12.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~ -~05022~^~338~^37.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05022~^~417~^257.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~431~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~432~^257.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~435~^257.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05022~^~601~^442.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05023~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~05023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~268~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~05023~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~305~^148.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~306~^237.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~307~^69.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~05023~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~05023~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05023~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05023~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~05023~^~601~^240.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05024~^~268~^644.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05024~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~306~^179.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~05024~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~05024~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~05024~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~05024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05024~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~05024~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~05024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05024~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05024~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~05024~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05024~^~601~^370.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05025~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05025~^~268~^640.^0^^~4~^^^^^^^^^^^ -~05025~^~301~^12.^9^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~304~^15.^11^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~305~^177.^11^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~306~^176.^11^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~307~^74.^11^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05025~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05025~^~417~^72.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05025~^~432~^72.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05025~^~601~^136.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05026~^~268~^774.^0^^~4~^^^^^^^^^^^ -~05026~^~301~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~304~^20.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~305~^199.^8^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~306~^132.^8^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~307~^48.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~318~^28.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~319~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05026~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05026~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05026~^~432~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05026~^~601~^242.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05027~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05027~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05027~^~301~^8.^4^1.^~1~^~A~^^^1^5.^10.^3^4.^10.^~2, 3~^~02/01/2003~ -~05027~^~304~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^17.^20.^~2, 3~^~02/01/2003~ -~05027~^~305~^297.^4^8.^~1~^~A~^^^1^274.^312.^3^270.^322.^~2, 3~^~02/01/2003~ -~05027~^~306~^230.^4^13.^~1~^~A~^^^1^193.^254.^3^186.^273.^~2, 3~^~02/01/2003~ -~05027~^~307~^71.^4^5.^~1~^~A~^^^1^57.^82.^3^53.^88.^~2, 3~^~02/01/2003~ -~05027~^~318~^11078.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05027~^~319~^3290.^4^239.^~1~^~A~^^^1^2890.^3880.^3^2527.^4052.^~2, 3~^~02/01/2003~ -~05027~^~320~^3296.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05027~^~321~^56.^4^^~1~^~A~^^^1^36.^89.^^^^~2~^~09/01/2004~ -~05027~^~322~^11.^4^^~1~^~A~^^^1^11.^11.^^^^~1, 2~^~09/01/2004~ -~05027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05027~^~334~^11.^4^^~1~^~A~^^^1^11.^11.^^^^~1, 2~^~09/01/2004~ -~05027~^~337~^40.^4^^~1~^~A~^^^1^25.^69.^^^^~2~^~09/01/2004~ -~05027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05027~^~417~^588.^4^46.^~1~^~A~^^^1^457.^675.^3^438.^736.^~2, 3~^~02/01/2003~ -~05027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05027~^~432~^588.^4^46.^~1~^~A~^^^1^457.^675.^3^438.^736.^^~03/01/2006~ -~05027~^~435~^588.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05027~^~601~^345.^4^5.^~1~^~A~^^^1^331.^356.^3^327.^361.^~2, 3~^~09/01/2004~ -~05028~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05028~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~301~^11.^4^2.^~1~^~A~^^^1^8.^18.^3^3.^18.^~2, 3~^~02/01/2003~ -~05028~^~304~^25.^4^0.^~1~^~A~^^^1^24.^25.^3^24.^25.^~2, 3~^~02/01/2003~ -~05028~^~305~^405.^4^5.^~1~^~A~^^^1^393.^417.^3^389.^421.^~2, 3~^~02/01/2003~ -~05028~^~306~^263.^4^13.^~1~^~A~^^^1^229.^295.^3^219.^307.^~2, 3~^~02/01/2003~ -~05028~^~307~^76.^4^3.^~1~^~A~^^^1^67.^83.^3^64.^86.^~2, 3~^~02/01/2003~ -~05028~^~318~^13328.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05028~^~319~^3978.^4^437.^~1~^~A~^^^1^3170.^5220.^3^2584.^5370.^~2, 3~^~02/01/2003~ -~05028~^~320~^3981.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05028~^~321~^30.^4^8.^~1~^~A~^^^1^11.^53.^3^2.^58.^~1, 2, 3~^~02/01/2003~ -~05028~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05028~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~337~^21.^4^7.^~1~^~A~^^^1^0.^34.^3^-2.^44.^~1, 2, 3~^~02/01/2003~ -~05028~^~338~^83.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~05028~^~417~^578.^4^46.^~1~^~A~^^^1^466.^693.^3^429.^726.^~2, 3~^~02/01/2003~ -~05028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05028~^~432~^578.^4^46.^~1~^~A~^^^1^466.^693.^3^429.^726.^^~08/01/2007~ -~05028~^~435~^578.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05028~^~601~^563.^4^22.^~1~^~A~^^^1^510.^614.^3^490.^635.^~2, 3~^~10/01/2004~ -~05029~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~268~^778.^0^^~4~^^^^^^^^^^^ -~05029~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~304~^23.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~305~^163.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~306~^204.^24^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~307~^65.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~318~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05029~^~319~^29.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05029~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05029~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05029~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05029~^~601~^67.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05030~^~268~^1159.^0^^~4~^^^^^^^^^^^ -~05030~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~305~^168.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~307~^287.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05030~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05030~^~417~^16.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05030~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05030~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05030~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~268~^1029.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05031~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~305~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~306~^239.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~318~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05031~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~324~^5.^0^^~4~^~BFFN~^~05008~^^^^^^^^^~03/01/2009~ -~05031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05031~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05031~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05031~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05032~^~268~^929.^0^^~4~^^^^^^^^^^^ -~05032~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~304~^25.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~305~^200.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~306~^227.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~307~^75.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~318~^110.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05032~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05032~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05032~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05032~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05033~^~268~^841.^0^^~4~^^^^^^^^^^^ -~05033~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~305~^146.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~306~^167.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~307~^63.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~318~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05033~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05033~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05033~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05033~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~268~^992.^0^^~4~^^^^^^^^^^^ -~05034~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~304~^19.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~305~^136.^24^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~306~^178.^24^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~307~^73.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~318~^163.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05034~^~319~^49.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05034~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05034~^~432~^7.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05034~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05034~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05035~^~268~^1247.^0^^~4~^^^^^^^^^^^ -~05035~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~305~^145.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~307~^295.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~318~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05035~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05035~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05035~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05035~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05035~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~05036~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~307~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~318~^104.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~319~^31.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05036~^~320~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05036~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05036~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~05036~^~601~^92.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05037~^~268~^1059.^0^^~4~^^^^^^^^^^^ -~05037~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~305~^168.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~306~^220.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~307~^87.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~318~^201.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~319~^60.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05037~^~320~^60.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05037~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05037~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05037~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05038~^~268~^975.^0^^~4~^^^^^^^^^^^ -~05038~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~304~^18.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~305~^133.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~306~^166.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~307~^70.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~318~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~319~^56.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05038~^~320~^56.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05038~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05038~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05038~^~601~^82.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~268~^477.^0^^~4~^^^^^^^^^^^ -~05039~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~304~^27.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~305~^187.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~306~^239.^24^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~307~^68.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~05039~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05039~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~05039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05039~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05039~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~05039~^~601~^58.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05040~^~268~^803.^0^^~4~^^^^^^^^^^^ -~05040~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~305~^231.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~307~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05040~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05040~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05040~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05040~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~268~^724.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05041~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~304~^27.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~305~^216.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~306~^247.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~307~^77.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~318~^29.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05041~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05041~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05041~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05041~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05041~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~268~^665.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05042~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~305~^159.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~306~^180.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~307~^65.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05042~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05042~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05042~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05042~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05042~^~601~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~268~^523.^0^^~4~^^^^^^^^^^^ -~05043~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~304~^23.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~305~^162.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~306~^222.^24^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~307~^85.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~318~^72.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05043~^~320~^22.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05043~^~432~^10.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05043~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05043~^~601~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05044~^~268~^1000.^0^^~4~^^^^^^^^^^^ -~05044~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~306~^253.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~307~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05044~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05044~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05044~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05044~^~601~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~268~^858.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05045~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~304~^23.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~305~^179.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~306~^240.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~307~^93.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~318~^72.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~05045~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05045~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05045~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05045~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05045~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~268~^803.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05046~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~305~^143.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~306~^181.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~307~^74.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~318~^69.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05046~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05046~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05046~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05046~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05046~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05047~^~268~^2632.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~05047~^~301~^7.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~304~^6.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~305~^54.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~306~^64.^24^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~307~^32.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~318~^509.^6^139.^~1~^^^^^^^^^^^~01/01/2007~ -~05047~^~319~^125.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~05047~^~320~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~05047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05047~^~324~^130.^0^^~4~^~BFFN~^~04542~^^^^^^^^^~04/01/2009~ -~05047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05047~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05047~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/2009~ -~05047~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~05047~^~601~^58.^8^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~268~^1335.^0^^~4~^^^^^^^^^^^ -~05048~^~301~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~304~^15.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~305~^113.^24^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~306~^144.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~307~^64.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~318~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~319~^75.^0^^~4~^~O~^^^^^^^^^^~06/01/2003~ -~05048~^~320~^75.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~05048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05048~^~432~^6.^0^^~1~^^^^^^^^^^^~06/01/2003~ -~05048~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~05048~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05049~^~268~^1385.^0^^~4~^^^^^^^^^^^ -~05049~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~306~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~307~^317.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~318~^119.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~319~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05049~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05049~^~417~^20.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05049~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05049~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05049~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05050~^~268~^1385.^0^^~4~^^^^^^^^^^^ -~05050~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~305~^166.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~307~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~318~^123.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~319~^37.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05050~^~320~^37.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05050~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05050~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05050~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05050~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~268~^1255.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05051~^~301~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~305~^154.^16^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~306~^210.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~307~^87.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~318~^348.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05051~^~319~^105.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05051~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05051~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05051~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05051~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~268~^1079.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05052~^~301~^18.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~304~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~305~^120.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~306~^145.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~307~^64.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~318~^308.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05052~^~319~^88.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05052~^~320~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05052~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05052~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05052~^~601~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~268~^573.^0^^~4~^^^^^^^^^^^ -~05053~^~301~^17.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~304~^22.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~305~^151.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~306~^204.^24^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~307~^82.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05053~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05053~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05053~^~432~^9.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05053~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05053~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05054~^~268~^1205.^0^^~4~^^^^^^^^^^^ -~05054~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~307~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~318~^98.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05054~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05054~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05054~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05054~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05055~^~301~^24.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~305~^165.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~306~^237.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~307~^96.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05055~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05055~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~268~^874.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05056~^~301~^21.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~304~^17.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~305~^130.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~306~^158.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~307~^67.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~318~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05056~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05056~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05056~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05056~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~268~^720.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~05057~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~304~^25.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~305~^174.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~306~^220.^24^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~307~^63.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~318~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~319~^24.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05057~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~324~^16.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~417~^4.^4^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05057~^~432~^4.^4^0.^~1~^^^^^^^^^^^~08/01/2009~ -~05057~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05057~^~601~^64.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~268~^1088.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05058~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~305~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~306~^201.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~307~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~318~^67.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~05058~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05058~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~324~^6.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05058~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05058~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05058~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05059~^~268~^929.^0^^~4~^^^^^^^^^^^ -~05059~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~305~^233.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~306~^259.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~319~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05059~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05059~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05059~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05059~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05059~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~05060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~268~^824.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05060~^~301~^14.^17^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~304~^27.^17^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~305~^214.^17^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~306~^245.^17^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~307~^71.^17^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~318~^93.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05060~^~319~^28.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05060~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05060~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05060~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05060~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~05061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05061~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~305~^156.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~306~^178.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~307~^62.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~318~^82.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05061~^~319~^25.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05061~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05061~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05061~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05061~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05062~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05062~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~301~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^3.^5.^~2, 3~^~04/01/2009~ -~05062~^~304~^28.^6^0.^~1~^~A~^^^1^27.^30.^5^27.^29.^~2, 3~^~04/01/2013~ -~05062~^~305~^213.^6^2.^~1~^~A~^^^1^207.^222.^5^206.^219.^~2, 3~^~04/01/2013~ -~05062~^~306~^334.^6^3.^~1~^~A~^^^1^321.^343.^5^325.^342.^~2, 3~^~04/01/2013~ -~05062~^~307~^45.^6^2.^~1~^~A~^^^1^38.^52.^5^39.^51.^~2, 3~^~04/01/2013~ -~05062~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~05062~^~319~^9.^2^^~1~^~A~^^^1^0.^18.^^^^~1~^~08/01/2015~ -~05062~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~05062~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05062~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2013~ -~05062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05062~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05062~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05062~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05062~^~601~^73.^3^2.^~1~^~A~^^^1^70.^79.^2^60.^85.^~2, 3~^~04/01/2013~ -~05063~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~268~^782.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05063~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~305~^246.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~306~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~318~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~319~^7.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05063~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05063~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05063~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05063~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05064~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~304~^29.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~305~^228.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~306~^256.^16^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~307~^74.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~318~^21.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~05064~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05064~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05064~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05064~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05064~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~268~^632.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05065~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~304~^24.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~305~^165.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~306~^187.^16^8.^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~307~^63.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~318~^19.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05065~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05065~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05065~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05065~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05065~^~601~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05066~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05066~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05066~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~305~^163.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~306~^211.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~307~^106.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05066~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05066~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~338~^102.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05066~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05067~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05067~^~268~^1121.^0^^~4~^^^^^^^^^^^ -~05067~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~305~^147.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~306~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~307~^269.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~318~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~319~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05067~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05067~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05067~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05067~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05067~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05068~^~268~^1025.^0^^~4~^^^^^^^^^^^ -~05068~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~307~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~318~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~319~^25.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05068~^~320~^25.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05068~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05068~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05068~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05068~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05069~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~268~^797.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~307~^123.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05069~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05069~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~338~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05069~^~601~^130.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05070~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~268~^854.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05070~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~305~^141.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~306~^184.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~307~^76.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~318~^91.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05070~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05070~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05070~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05070~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05070~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05071~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05071~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~301~^9.^6^0.^~1~^~A~^^^2^5.^12.^4^7.^9.^~2, 3~^~02/01/2013~ -~05071~^~304~^20.^6^0.^~1~^~A~^^^2^15.^22.^1^12.^27.^~2, 3~^~02/01/2013~ -~05071~^~305~^174.^6^5.^~1~^~A~^^^2^150.^184.^1^116.^231.^~2, 3~^~02/01/2013~ -~05071~^~306~^225.^6^6.^~1~^~A~^^^2^181.^251.^2^196.^253.^~2, 3~^~02/01/2013~ -~05071~^~307~^114.^6^8.^~1~^~A~^^^2^94.^142.^1^24.^203.^~2, 3~^~02/01/2013~ -~05071~^~318~^22.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05071~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05071~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~338~^102.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05071~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05071~^~601~^89.^5^1.^~1~^~A~^^^2^86.^94.^3^85.^93.^~2, 3~^~02/01/2013~ -~05072~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05072~^~268~^816.^0^^~4~^^^^^^^^^^^ -~05072~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~306~^249.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~307~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05072~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05072~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05072~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05072~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05073~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~301~^11.^6^0.^~1~^~A~^^^2^8.^13.^3^8.^12.^~2, 3~^~02/01/2013~ -~05073~^~304~^22.^6^0.^~1~^~A~^^^2^18.^25.^2^19.^25.^~2, 3~^~02/01/2013~ -~05073~^~305~^200.^6^3.^~1~^~A~^^^2^190.^212.^1^167.^232.^~2, 3~^~04/01/2011~ -~05073~^~306~^256.^6^4.^~1~^~A~^^^2^225.^274.^2^235.^276.^~2, 3~^~02/01/2013~ -~05073~^~307~^128.^6^8.^~1~^~A~^^^2^111.^172.^1^34.^221.^~2, 3~^~02/01/2013~ -~05073~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05073~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05073~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05073~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05073~^~601~^130.^5^2.^~1~^~A~^^^2^122.^137.^3^121.^138.^~2, 3~^~04/01/2011~ -~05074~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~268~^707.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05074~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~305~^150.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~306~^199.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~307~^80.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~318~^57.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05074~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05074~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05074~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05074~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05074~^~601~^88.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05075~^~208~^214.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~268~^897.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~305~^155.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~306~^203.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~318~^92.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05075~^~319~^28.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~05075~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~338~^91.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05075~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05075~^~601~^93.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05076~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05076~^~268~^1142.^0^^~4~^^^^^^^^^^^ -~05076~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~305~^152.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~306~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~307~^279.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~318~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~319~^27.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05076~^~320~^27.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05076~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05076~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05076~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05076~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05077~^~268~^1063.^0^^~4~^^^^^^^^^^^ -~05077~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~305~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~306~^233.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~318~^92.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~319~^28.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05077~^~320~^28.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05077~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05077~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05077~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05077~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05078~^~208~^184.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~268~^769.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~306~^264.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~307~^98.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~318~^68.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~319~^20.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~320~^20.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~05078~^~601~^127.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05079~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~268~^920.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05079~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~306~^176.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~307~^73.^16^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~318~^124.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05079~^~319~^37.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05079~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05079~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05079~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05079~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05079~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05079~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05080~^~208~^120.^0^^~4~^~PIK~^^^^^^^^^^~08/01/1979~ -~05080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~268~^501.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05080~^~305~^180.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~306~^238.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~318~^32.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~338~^95.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05080~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05081~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05081~^~268~^870.^0^^~4~^^^^^^^^^^^ -~05081~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~305~^193.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~306~^254.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~307~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~318~^66.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~319~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05081~^~320~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05081~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05081~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05081~^~601~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05082~^~208~^174.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~268~^727.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05082~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05082~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~306~^269.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~307~^99.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~318~^22.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05082~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05082~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05083~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~268~^774.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05083~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~305~^149.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~306~^190.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~307~^78.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05083~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05083~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05083~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05083~^~601~^89.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05084~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05084~^~268~^1243.^0^^~4~^^^^^^^^^^^ -~05084~^~301~^18.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~304~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~305~^112.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~306~^137.^8^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~307~^64.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~318~^216.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~319~^65.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05084~^~320~^65.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05084~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05084~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05084~^~601~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05085~^~268~^1381.^0^^~4~^^^^^^^^^^^ -~05085~^~301~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~305~^115.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~306~^151.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~307~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~318~^170.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~319~^51.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05085~^~320~^51.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05085~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~ -~05085~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05085~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05085~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05086~^~268~^1389.^0^^~4~^^^^^^^^^^^ -~05086~^~301~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~305~^132.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~306~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~307~^82.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~318~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~319~^57.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05086~^~320~^57.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05086~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~ -~05086~^~431~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05086~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05086~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~268~^1033.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05087~^~301~^27.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~304~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~305~^122.^8^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~306~^108.^8^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~307~^52.^8^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~318~^161.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05087~^~319~^48.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05087~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~324~^6.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05087~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05087~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05087~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05088~^~268~^644.^0^^~4~^^^^^^^^^^^ -~05088~^~301~^27.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~304~^17.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~305~^113.^8^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~306~^175.^8^8.^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~307~^81.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~318~^146.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05088~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05088~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05088~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~05088~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05089~^~268~^958.^0^^~4~^^^^^^^^^^^ -~05089~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~305~^135.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~306~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~307~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~318~^162.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~319~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05089~^~320~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05089~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05089~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05089~^~601~^105.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05090~^~268~^749.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05090~^~301~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~304~^16.^8^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~305~^128.^8^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~306~^140.^8^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~307~^64.^8^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~318~^121.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~319~^36.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~05090~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05090~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05090~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05090~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05090~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05091~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05091~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~268~^926.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05091~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~305~^157.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~306~^204.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~318~^78.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05091~^~319~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05091~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~338~^108.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~05091~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05091~^~601~^98.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05092~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05092~^~268~^1159.^0^^~4~^^^^^^^^^^^ -~05092~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~305~^155.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~306~^192.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~307~^288.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~318~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05092~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05092~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05092~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05092~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05092~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05093~^~268~^1096.^0^^~4~^^^^^^^^^^^ -~05093~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~306~^237.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~318~^98.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05093~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05093~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05093~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05093~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05093~^~601~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05094~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05094~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~268~^971.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05094~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05094~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~306~^253.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~307~^102.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~318~^55.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~338~^17.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05094~^~601~^133.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05095~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~268~^971.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05095~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~306~^170.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~307~^71.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~318~^151.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05095~^~319~^45.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05095~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05095~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05095~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05095~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05096~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05096~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~301~^7.^6^0.^~1~^~A~^^^2^5.^10.^3^6.^8.^~2, 3~^~02/01/2013~ -~05096~^~304~^23.^6^0.^~1~^~A~^^^2^20.^24.^2^20.^24.^~2, 3~^~04/01/2011~ -~05096~^~305~^185.^6^5.^~1~^~A~^^^2^169.^200.^3^166.^203.^~2, 3~^~02/01/2013~ -~05096~^~306~^242.^6^5.^~1~^~A~^^^2^226.^261.^3^225.^258.^~2, 3~^~02/01/2013~ -~05096~^~307~^95.^6^7.^~1~^~A~^^^2^82.^129.^1^29.^160.^~2, 3~^~02/01/2013~ -~05096~^~318~^24.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05096~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05096~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~338~^110.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05096~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05096~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05096~^~601~^94.^5^1.^~1~^~A~^^^2^92.^101.^3^88.^99.^~2, 3~^~02/01/2013~ -~05097~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05097~^~268~^912.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~05097~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~305~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~306~^259.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~05097~^~324~^8.^2^^~1~^~A~^^^1^3.^14.^^^^^~04/01/2009~ -~05097~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05097~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2009~ -~05097~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05097~^~601~^102.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05098~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~301~^9.^6^0.^~1~^~A~^^^2^8.^10.^3^8.^9.^~2, 3~^~02/01/2013~ -~05098~^~304~^24.^6^0.^~1~^~A~^^^2^22.^25.^2^20.^26.^~2, 3~^~08/01/1979~ -~05098~^~305~^230.^6^14.^~1~^~A~^^^2^210.^302.^1^53.^407.^~2, 3~^~02/01/2013~ -~05098~^~306~^269.^6^5.^~1~^~A~^^^2^237.^284.^2^240.^296.^~2, 3~^~02/01/2013~ -~05098~^~307~^106.^6^3.^~1~^~A~^^^2^80.^154.^2^91.^120.^~2, 3~^~02/01/2013~ -~05098~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05098~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05098~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05098~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05098~^~601~^133.^5^1.^~1~^~A~^^^2^126.^137.^3^129.^136.^~2, 3~^~02/01/2013~ -~05099~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~268~^816.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05099~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~305~^149.^16^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~306~^183.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~307~^75.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~318~^62.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05099~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05099~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05099~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05099~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05099~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05100~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~268~^798.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05100~^~301~^11.^6^0.^~1~^~A~^^^1^10.^13.^5^9.^11.^~2, 3~^~04/01/2013~ -~05100~^~304~^16.^6^0.^~1~^~A~^^^1^15.^17.^5^15.^16.^~2, 3~^~04/01/2013~ -~05100~^~305~^123.^6^2.^~1~^~A~^^^1^114.^130.^5^117.^128.^~2, 3~^~04/01/2013~ -~05100~^~306~^187.^6^3.^~1~^~A~^^^1^178.^198.^5^179.^194.^~2, 3~^~04/01/2013~ -~05100~^~307~^84.^6^5.^~1~^~A~^^^1^74.^112.^5^69.^99.^~2, 3~^~04/01/2013~ -~05100~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~319~^9.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05100~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~324~^5.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05100~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05100~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05100~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05100~^~601~^111.^3^2.^~1~^~A~^^^1^106.^114.^2^100.^121.^~2, 3~^~04/01/2013~ -~05101~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05101~^~268~^1356.^0^^~4~^^^^^^^^^^^ -~05101~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~305~^121.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~307~^320.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~318~^113.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~319~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05101~^~320~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05101~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05101~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05101~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05101~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05102~^~268~^1343.^0^^~4~^^^^^^^^^^^ -~05102~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~305~^150.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~306~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~318~^125.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~319~^38.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05102~^~320~^38.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05102~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05102~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05102~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05102~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05103~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~268~^1062.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~301~^18.^6^1.^~1~^~A~^^^1^15.^21.^5^15.^20.^~2, 3~^~04/01/2013~ -~05103~^~304~^19.^6^0.^~1~^~A~^^^1^18.^20.^5^18.^19.^~2, 3~^~08/01/1979~ -~05103~^~305~^147.^6^1.^~1~^~A~^^^1^142.^155.^5^142.^151.^~2, 3~^~04/01/2013~ -~05103~^~306~^212.^6^5.^~1~^~A~^^^1^202.^234.^5^198.^225.^~2, 3~^~04/01/2013~ -~05103~^~307~^98.^6^6.^~1~^~A~^^^1^84.^131.^5^79.^115.^~2, 3~^~04/01/2013~ -~05103~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~319~^12.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05103~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~324~^7.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05103~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05103~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05103~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05103~^~601~^141.^3^6.^~1~^~A~^^^1^129.^148.^2^115.^166.^~2, 3~^~04/01/2013~ -~05104~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~268~^1042.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05104~^~301~^12.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~304~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~305~^121.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~306~^139.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~307~^67.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~318~^133.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05104~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05104~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05104~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05104~^~601~^70.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05105~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~268~^527.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05105~^~301~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~304~^22.^24^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~305~^155.^24^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~306~^194.^24^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~307~^81.^24^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~318~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05105~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05105~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05105~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05105~^~601~^57.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05106~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05106~^~268~^883.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~05106~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~305~^164.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~306~^208.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~05106~^~324~^3.^2^^~1~^~A~^^^1^3.^4.^^^^^~04/01/2009~ -~05106~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05106~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/2009~ -~05106~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05106~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~268~^849.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05107~^~301~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~305~^166.^16^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~306~^210.^16^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~307~^92.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05107~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05107~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05107~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05107~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05107~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~05108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~268~^757.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05108~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~304~^18.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~305~^134.^16^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~306~^153.^16^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~307~^73.^16^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05108~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05108~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05108~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05108~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05108~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05108~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05109~^~268~^891.^0^^~4~^^^^^^^^^^^ -~05109~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~305~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~307~^69.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~318~^843.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~319~^253.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05109~^~320~^253.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05109~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05109~^~432~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05109~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05110~^~268~^920.^0^^~4~^^^^^^^^^^^ -~05110~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~305~^179.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~318~^597.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~319~^179.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05110~^~320~^179.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05110~^~417~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05110~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05110~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05111~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~268~^558.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~301~^4.^3^0.^~1~^~A~^^^1^3.^4.^2^3.^3.^~4~^~04/01/2014~ -~05111~^~304~^29.^3^0.^~1~^~A~^^^1^28.^30.^2^26.^30.^~4~^~04/01/2014~ -~05111~^~305~^256.^3^1.^~1~^~A~^^^1^255.^258.^2^251.^260.^~4~^~04/01/2014~ -~05111~^~306~^336.^3^2.^~1~^~A~^^^1^330.^339.^2^323.^347.^~4~^~04/01/2014~ -~05111~^~307~^50.^3^0.^~1~^~A~^^^1^49.^52.^2^46.^53.^~4~^~04/01/2014~ -~05111~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05111~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~05111~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05111~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~601~^80.^3^2.^~1~^~A~^^^1^75.^85.^2^68.^92.^~4~^~04/01/2014~ -~05112~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05112~^~268~^933.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~05112~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~305~^179.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~306~^211.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~318~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05112~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~05112~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~05112~^~601~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~268~^464.^0^^~4~^^^^^^^^^^^ -~05113~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~305~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~306~^238.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~318~^45.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~319~^13.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05113~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05113~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05113~^~432~^7.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05113~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05113~^~601~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05114~^~268~^699.^0^^~4~^^^^^^^^^^^ -~05114~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~305~^192.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05114~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05114~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05114~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05114~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05115~^~268~^531.^0^^~4~^^^^^^^^^^^ -~05115~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~305~^184.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~306~^227.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~318~^9592.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~319~^2880.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05115~^~320~^2880.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05115~^~417~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05115~^~432~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05115~^~601~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05116~^~268~^690.^0^^~4~^^^^^^^^^^^ -~05116~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~305~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~306~^160.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~307~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~318~^8136.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~319~^2443.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05116~^~320~^2443.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05116~^~417~^303.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05116~^~432~^303.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05116~^~601~^357.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~268~^456.^0^^~4~^^^^^^^^^^^ -~05117~^~301~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~305~^223.^7^17.^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~306~^252.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~307~^51.^6^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05117~^~320~^8.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05117~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05117~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05117~^~601~^57.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~268~^640.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05118~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~305~^217.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~306~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~307~^51.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~318~^25.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05118~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05118~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05118~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05118~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05118~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05118~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~268~^473.^0^^~4~^^^^^^^^^^^ -~05119~^~301~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~304~^21.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~305~^178.^3^29.^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~306~^227.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~307~^95.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05119~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05119~^~432~^9.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05119~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05119~^~601~^72.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05120~^~268~^745.^0^^~4~^^^^^^^^^^^ -~05120~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~305~^171.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~318~^54.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~319~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05120~^~320~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05120~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05120~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05120~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05121~^~268~^1050.^0^^~4~^^^^^^^^^^^ -~05121~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~318~^1102.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~319~^331.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05121~^~320~^331.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05121~^~417~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05121~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05121~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05122~^~208~^214.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~262~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~263~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~268~^894.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~301~^13.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~304~^19.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~305~^151.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~306~^171.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~307~^67.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~318~^609.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~319~^182.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~320~^182.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~321~^1.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~322~^0.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~324~^1.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~334~^0.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~337~^1.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~338~^3.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~417~^25.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~431~^0.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~432~^25.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05122~^~601~^107.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05123~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~268~^1079.^0^^~4~^^^^^^^^^^^ -~05123~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~305~^172.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~318~^178.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~319~^52.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05123~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05123~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05123~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~05123~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05124~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~05124~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~305~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~318~^131.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~319~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05124~^~320~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05124~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05124~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05124~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~268~^619.^0^^~4~^^^^^^^^^^^~08/01/2004~ -~05125~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~305~^209.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05125~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~05125~^~320~^32.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05125~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05125~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~05125~^~601~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~268~^992.^0^^~4~^^^^^^^^^^^ -~05126~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~305~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~306~^202.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~307~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~05126~^~319~^34.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~05126~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~05126~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05126~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~05126~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~05126~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05127~^~268~^703.^0^^~4~^^^^^^^^^^^ -~05127~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~305~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~318~^10497.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~319~^3152.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05127~^~320~^3152.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05127~^~417~^350.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05127~^~432~^350.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~435~^350.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05127~^~601~^240.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05128~^~268~^812.^0^^~4~^^^^^^^^^^^ -~05128~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~305~^223.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~306~^154.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~307~^56.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~318~^9536.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~319~^2864.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05128~^~320~^2864.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05128~^~417~^367.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05128~^~432~^367.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~435~^367.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05128~^~601~^355.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~268~^573.^0^^~4~^^^^^^^^^^^ -~05129~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~305~^231.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~306~^261.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05129~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05129~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05129~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05129~^~601~^47.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05130~^~268~^891.^0^^~4~^^^^^^^^^^^ -~05130~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~305~^225.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~306~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~307~^58.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~318~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~319~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05130~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05130~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05130~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~05130~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~268~^657.^0^^~4~^^^^^^^^^^^ -~05131~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~305~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~306~^242.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~307~^101.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~318~^135.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05131~^~320~^41.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05131~^~432~^10.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05131~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05131~^~601~^77.^4^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05132~^~268~^1079.^0^^~4~^^^^^^^^^^^ -~05132~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~318~^145.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05132~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05132~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05132~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~05132~^~601~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05133~^~268~^971.^0^^~4~^^^^^^^^^^^ -~05133~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~305~^181.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~306~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~307~^47.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~318~^905.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~319~^272.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05133~^~320~^272.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05133~^~417~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05133~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05133~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05134~^~268~^946.^0^^~4~^^^^^^^^^^^ -~05134~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~305~^239.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~306~^243.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~307~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~318~^734.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~319~^220.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05134~^~320~^220.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05134~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05134~^~432~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05134~^~601~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~268~^979.^0^^~4~^^^^^^^^^^^ -~05135~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~305~^183.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~318~^129.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~319~^37.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05135~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05135~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05135~^~432~^6.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05135~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05135~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05136~^~268~^958.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~05136~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~305~^246.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~306~^255.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~307~^49.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~318~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05136~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~05136~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~05136~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05137~^~268~^544.^0^^~4~^^^^^^^^^^^ -~05137~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~305~^207.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~318~^14566.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~319~^4374.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05137~^~320~^4374.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05137~^~417~^394.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05137~^~432~^394.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05137~^~601~^292.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05138~^~268~^686.^0^^~4~^^^^^^^^^^^ -~05138~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~305~^235.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~306~^153.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~307~^55.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~318~^13266.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~319~^3984.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05138~^~320~^3984.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05138~^~417~^414.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05138~^~432~^414.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~435~^414.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05138~^~601~^434.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~268~^1690.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~05139~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~305~^139.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~306~^209.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~318~^168.^20^5.^~1~^^^^^^^^^^^~01/01/2004~ -~05139~^~319~^50.^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~05139~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05139~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~324~^26.^0^^~4~^~BFFN~^~05006~^^^^^^^^^~08/01/2009~ -~05139~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05139~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~05139~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~05139~^~601~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~268~^1410.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05140~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~305~^156.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~307~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~318~^210.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~05140~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05140~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05140~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~324~^3.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05140~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05140~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05140~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05140~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~268~^566.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05141~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~305~^203.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~306~^271.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~307~^74.^5^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05141~^~319~^24.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05141~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05141~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~324~^3.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~05141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~417~^25.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05141~^~432~^25.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~05141~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05141~^~601~^77.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~268~^841.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05142~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~305~^203.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~306~^252.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~307~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~318~^77.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05142~^~319~^23.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05142~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05142~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~324~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~05142~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05142~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05142~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05143~^~268~^569.^0^^~4~^^^^^^^^^^^ -~05143~^~301~^11.^20^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~305~^269.^20^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~306~^230.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~307~^140.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~318~^39907.^8^1166.^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~319~^11984.^8^350.^~1~^^^^^^^^^^^~06/01/2002~ -~05143~^~320~^11984.^8^350.^~1~^^^^^^^^^^^~06/01/2002~ -~05143~^~417~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05143~^~432~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~435~^738.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05143~^~601~^515.^3^144.^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05144~^~268~^883.^0^^~4~^^^^^^^^^^^ -~05144~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~305~^168.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~306~^249.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~307~^56.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~318~^88.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~319~^26.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05144~^~320~^26.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05144~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05144~^~432~^21.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05144~^~601~^80.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05145~^~268~^515.^0^^~4~^^^^^^^^^^^ -~05145~^~301~^3.^17^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~305~^186.^17^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~306~^268.^17^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~307~^57.^17^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~318~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~319~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05145~^~320~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05145~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05145~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05145~^~601~^77.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05146~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~05146~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~305~^234.^3^49.^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~306~^308.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~318~^55.^10^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~319~^17.^10^0.^~1~^^^^^^^^^^^~06/01/2002~ -~05146~^~320~^17.^10^0.^~1~^^^^^^^^^^^~06/01/2002~ -~05146~^~417~^4.^10^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05146~^~432~^4.^10^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05146~^~601~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~268~^1276.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05147~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~305~^270.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~306~^329.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~307~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~318~^70.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~05147~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05147~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05147~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~324~^3.^0^^~4~^~BFFN~^~05140~^^^^^^^^^~03/01/2009~ -~05147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05147~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05147~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05147~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05148~^~268~^674.^0^^~4~^^^^^^^^^^^ -~05148~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~305~^312.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~306~^420.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~307~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05148~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05148~^~417~^31.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05148~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05148~^~601~^84.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05149~^~268~^996.^0^^~4~^^^^^^^^^^^ -~05149~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~305~^309.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~306~^388.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05149~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05149~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05149~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05149~^~601~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05150~^~268~^556.^0^^~4~^^^^^^^^^^^ -~05150~^~301~^43.^4^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~304~^24.^4^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~305~^261.^4^27.^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~306~^230.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~307~^140.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~318~^30998.^13^1467.^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~319~^9309.^13^440.^~1~^^^^^^^^^^^~06/01/2002~ -~05150~^~320~^9309.^13^440.^~1~^^^^^^^^^^^~06/01/2002~ -~05150~^~417~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05150~^~432~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~435~^738.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05150~^~601~^515.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05151~^~268~^661.^0^^~4~^^^^^^^^^^^ -~05151~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~304~^22.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~305~^153.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~306~^193.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~307~^67.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~318~^92.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~319~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05151~^~320~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05151~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05151~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05151~^~601~^74.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05152~^~268~^460.^0^^~4~^^^^^^^^^^^ -~05152~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~305~^169.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~306~^220.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~307~^69.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~318~^41.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05152~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05152~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05152~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05152~^~601~^63.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05153~^~268~^757.^0^^~4~^^^^^^^^^^^ -~05153~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~305~^214.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~306~^243.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~307~^40.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~318~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~319~^53.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05153~^~320~^53.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05153~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05153~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05153~^~601~^71.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05154~^~268~^556.^0^^~4~^^^^^^^^^^^ -~05154~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~305~^230.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~306~^262.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~307~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~318~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~319~^50.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05154~^~320~^50.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05154~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05154~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05154~^~601~^66.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05155~^~268~^556.^0^^~4~^^^^^^^^^^^ -~05155~^~301~^3.^25^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~304~^21.^24^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~305~^200.^25^9.^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~306~^242.^25^15.^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~307~^33.^25^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~318~^147.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05155~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05155~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05155~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05155~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05156~^~268~^561.^0^^~4~^^^^^^^^^^^ -~05156~^~301~^29.^14^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~304~^20.^14^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~305~^280.^14^23.^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~306~^296.^14^12.^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~307~^45.^14^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~318~^195.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05156~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05156~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05156~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05156~^~601~^80.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05157~^~268~^803.^0^^~4~^^^^^^^^^^^ -~05157~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~305~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~306~^216.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~318~^243.^5^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~319~^73.^5^1.^~1~^^^^^^^^^^^~06/01/2002~ -~05157~^~320~^73.^5^1.^~1~^^^^^^^^^^^~06/01/2002~ -~05157~^~417~^8.^5^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05157~^~432~^8.^5^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05157~^~601~^76.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05158~^~268~^561.^0^^~4~^^^^^^^^^^^ -~05158~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~304~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~305~^307.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~306~^237.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~307~^51.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~318~^57.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05158~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05158~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05158~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05158~^~601~^70.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05159~^~268~^515.^0^^~4~^^^^^^^^^^^ -~05159~^~301~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~304~^28.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~305~^228.^3^9.^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~306~^260.^4^33.^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~307~^55.^4^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~318~^37.^3^18.^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~319~^11.^3^5.^~1~^^^^^^^^^^^~06/01/2002~ -~05159~^~320~^11.^3^5.^~1~^^^^^^^^^^^~06/01/2002~ -~05159~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05159~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05159~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05160~^~268~^1230.^0^^~4~^^^^^^^^^^^ -~05160~^~301~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~304~^22.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~305~^248.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~306~^199.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~307~^54.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~318~^243.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~319~^73.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05160~^~320~^73.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05160~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05160~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05160~^~601~^95.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05161~^~268~^594.^0^^~4~^^^^^^^^^^^ -~05161~^~301~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~304~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~305~^307.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~306~^237.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~307~^51.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~318~^94.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~319~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05161~^~320~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05161~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05161~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05161~^~601~^90.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05162~^~268~^561.^0^^~4~^^^^^^^^^^^ -~05162~^~301~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~304~^28.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~305~^228.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~306~^260.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~307~^55.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~318~^57.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~319~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05162~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05162~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05162~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05162~^~601~^90.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05165~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05165~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05165~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~306~^224.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~307~^112.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~05165~^~319~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~05165~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~324~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05165~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~208~^189.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~268~^790.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~304~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~307~^103.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~318~^39.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05166~^~601~^109.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05167~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05167~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~305~^190.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~306~^235.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~307~^118.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~318~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05167~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~208~^159.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~268~^664.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~318~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05168~^~601~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05169~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~268~^1704.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05169~^~301~^13.^4^0.^~1~^~A~^^^^12.^14.^^^^^~08/01/2012~ -~05169~^~304~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^^~08/01/2012~ -~05169~^~305~^120.^2^^~1~^~A~^^^1^115.^124.^1^^^^~08/01/2012~ -~05169~^~306~^124.^2^^~1~^~A~^^^1^121.^128.^1^^^^~08/01/2012~ -~05169~^~307~^62.^2^^~1~^~A~^^^1^58.^66.^1^^^^~08/01/2012~ -~05169~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~05169~^~319~^85.^2^^~1~^~A~^^^^84.^87.^^^^^~08/01/2012~ -~05169~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~324~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05169~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05169~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05169~^~601~^122.^2^^~1~^~A~^^^1^107.^137.^1^^^^~08/01/2012~ -~05170~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~268~^1920.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~301~^21.^2^^~1~^~A~^^^1^17.^25.^1^^^^~08/01/2012~ -~05170~^~304~^33.^2^^~1~^~A~^^^1^31.^34.^1^^^^~08/01/2012~ -~05170~^~305~^233.^2^^~1~^~A~^^^1^224.^243.^1^^^^~08/01/2012~ -~05170~^~306~^242.^2^^~1~^~A~^^^1^234.^250.^1^^^^~08/01/2012~ -~05170~^~307~^116.^2^^~1~^~A~^^^1^103.^130.^1^^^^~08/01/2012~ -~05170~^~318~^262.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~319~^79.^2^^~1~^~A~^^^^76.^81.^^^^^~08/01/2012~ -~05170~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~324~^54.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05170~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05170~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~601~^177.^2^^~1~^~A~^^^1^168.^186.^1^^^^~08/01/2012~ -~05171~^~208~^124.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~268~^518.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~306~^198.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~307~^136.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~318~^13129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05171~^~319~^3939.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~320~^3939.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05171~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~324~^34.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~417~^331.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~432~^331.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~435~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05171~^~601~^333.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~208~^173.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~268~^722.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~305~^249.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~306~^177.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~307~^117.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~318~^15397.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~319~^4619.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~320~^4619.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~417~^303.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2003~ -~05172~^~432~^303.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05172~^~601~^521.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05173~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05173~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~301~^16.^4^0.^~1~^~A~^^^1^15.^18.^3^14.^17.^~2, 3~^~08/01/2012~ -~05173~^~304~^19.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^20.^~2, 3~^~08/01/2012~ -~05173~^~305~^164.^4^1.^~1~^~A~^^^1^160.^169.^3^157.^170.^~2, 3~^~08/01/2012~ -~05173~^~306~^185.^4^3.^~1~^~A~^^^1^175.^194.^3^172.^197.^~2, 3~^~08/01/2012~ -~05173~^~307~^147.^4^9.^~1~^~A~^^^1^131.^172.^3^115.^177.^~2, 3~^~08/01/2012~ -~05173~^~318~^154.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~319~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05173~^~324~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05173~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05173~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05173~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05173~^~601~^271.^4^13.^~1~^~A~^^^1^239.^306.^3^227.^315.^~2, 3~^~08/01/2012~ -~05174~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05174~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~301~^17.^4^0.^~1~^~A~^^^1^16.^18.^3^16.^18.^~2, 3~^~08/01/2012~ -~05174~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~08/01/2012~ -~05174~^~305~^187.^4^4.^~1~^~A~^^^1^182.^199.^3^173.^199.^~2, 3~^~08/01/2012~ -~05174~^~306~^193.^4^5.^~1~^~A~^^^1^179.^201.^3^176.^209.^~2, 3~^~08/01/2012~ -~05174~^~307~^127.^4^5.^~1~^~A~^^^1^120.^143.^3^110.^143.^~2, 3~^~08/01/2012~ -~05174~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05174~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05174~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05174~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05174~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05174~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05174~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05174~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05174~^~601~^452.^4^16.^~1~^~A~^^^1^412.^494.^3^398.^505.^~2, 3~^~08/01/2012~ -~05175~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05175~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~301~^18.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^19.^~2, 3~^~08/01/2012~ -~05175~^~304~^21.^4^0.^~1~^~A~^^^1^19.^23.^3^18.^24.^~2, 3~^~08/01/2012~ -~05175~^~305~^183.^4^3.^~1~^~A~^^^1^175.^191.^3^172.^194.^~2, 3~^~08/01/2012~ -~05175~^~306~^179.^4^5.^~1~^~A~^^^1^166.^193.^3^160.^197.^~2, 3~^~08/01/2012~ -~05175~^~307~^129.^4^5.^~1~^~A~^^^1^113.^138.^3^111.^145.^~2, 3~^~08/01/2012~ -~05175~^~318~^305.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~05175~^~319~^80.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~320~^82.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~05175~^~321~^23.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05175~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05175~^~337~^21.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05175~^~601~^225.^4^8.^~1~^~A~^^^1^203.^244.^3^197.^253.^~2, 3~^~08/01/2012~ -~05176~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05176~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05176~^~301~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~08/01/2012~ -~05176~^~304~^28.^4^0.^~1~^~A~^^^1^28.^29.^3^27.^28.^~2, 3~^~08/01/2012~ -~05176~^~305~^241.^4^14.^~1~^~A~^^^1^198.^261.^3^194.^288.^~2, 3~^~08/01/2012~ -~05176~^~306~^203.^4^4.^~1~^~A~^^^1^195.^215.^3^188.^217.^~2, 3~^~08/01/2012~ -~05176~^~307~^140.^4^6.^~1~^~A~^^^1^128.^160.^3^118.^162.^~2, 3~^~08/01/2012~ -~05176~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05176~^~319~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2013~ -~05176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05176~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05176~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05176~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05176~^~601~^359.^5^24.^~1~^~A~^^^1^263.^390.^4^291.^425.^~2, 3~^~08/01/2012~ -~05177~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05177~^~268~^534.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~301~^20.^4^1.^~1~^~A~^^^1^16.^25.^3^14.^26.^~2, 3~^~08/01/2012~ -~05177~^~304~^24.^4^0.^~1~^~A~^^^1^24.^25.^3^23.^24.^~2, 3~^~08/01/2012~ -~05177~^~305~^279.^4^11.^~1~^~A~^^^1^259.^312.^3^242.^315.^~2, 3~^~02/01/2003~ -~05177~^~306~^214.^4^5.^~1~^~A~^^^1^201.^225.^3^197.^230.^~2, 3~^~08/01/2012~ -~05177~^~307~^131.^4^11.^~1~^~A~^^^1^111.^163.^3^93.^167.^~2, 3~^~08/01/2012~ -~05177~^~318~^26901.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~05177~^~319~^8056.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~320~^8058.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~05177~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05177~^~324~^50.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05177~^~417~^677.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05177~^~432~^677.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05177~^~435~^677.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05177~^~601~^415.^3^5.^~1~^~A~^^^1^404.^423.^2^390.^440.^~2, 3~^~08/01/2012~ -~05178~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05178~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~301~^19.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^21.^~2, 3~^~08/01/2012~ -~05178~^~304~^26.^4^1.^~1~^~A~^^^1^25.^29.^3^23.^29.^~2, 3~^~08/01/2012~ -~05178~^~305~^312.^4^8.^~1~^~A~^^^1^298.^336.^3^284.^340.^~2, 3~^~08/01/2012~ -~05178~^~306~^153.^4^17.^~1~^~A~^^^1^107.^194.^3^96.^210.^~2, 3~^~08/01/2012~ -~05178~^~307~^98.^4^11.^~1~^~A~^^^1^74.^127.^3^62.^133.^~2, 3~^~08/01/2012~ -~05178~^~318~^35836.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05178~^~319~^10751.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~320~^10751.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05178~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05178~^~417~^691.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05178~^~432~^691.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05178~^~435~^691.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05178~^~601~^648.^3^43.^~1~^~A~^^^1^575.^727.^2^459.^837.^~2, 3~^~08/01/2012~ -~05179~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05179~^~301~^24.^3^0.^~1~^~A~^^^1^24.^25.^2^22.^25.^~4~^~08/01/2012~ -~05179~^~304~^15.^3^0.^~1~^~A~^^^1^15.^16.^2^13.^17.^~4~^~08/01/2012~ -~05179~^~305~^160.^3^6.^~1~^~A~^^^1^148.^170.^2^132.^186.^~4~^~08/01/2012~ -~05179~^~306~^133.^3^5.^~1~^~A~^^^1^123.^141.^2^110.^154.^~4~^~08/01/2012~ -~05179~^~307~^233.^3^19.^~1~^~A~^^^1^200.^267.^2^150.^315.^~4~^~08/01/2012~ -~05179~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05179~^~319~^13.^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~324~^13.^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05179~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05179~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05179~^~601~^115.^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05180~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05180~^~301~^58.^3^12.^~1~^~A~^^^1^40.^82.^2^3.^111.^~4~^~08/01/2012~ -~05180~^~304~^18.^3^0.^~1~^~A~^^^1^17.^20.^2^14.^21.^~4~^~08/01/2012~ -~05180~^~305~^182.^3^8.^~1~^~A~^^^1^168.^197.^2^146.^218.^~4~^~08/01/2012~ -~05180~^~306~^114.^3^3.^~1~^~A~^^^1^110.^121.^2^100.^128.^~4~^~08/01/2012~ -~05180~^~307~^246.^3^16.^~1~^~A~^^^1^214.^269.^2^174.^317.^~4~^~08/01/2012~ -~05180~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/1979~ -~05180~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05180~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~324~^12.^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05180~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05180~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05180~^~601~^128.^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05181~^~208~^161.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~268~^673.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~306~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~307~^105.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~318~^62.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~320~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05181~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~268~^739.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~306~^248.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05182~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05183~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05183~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~306~^208.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~307~^113.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~318~^86.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~320~^26.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~324~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05183~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~208~^206.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~268~^864.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~305~^215.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~306~^228.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~307~^105.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~318~^47.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05184~^~601~^134.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05185~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~301~^11.^4^0.^~1~^~A~^^^1^9.^12.^3^9.^12.^~2, 3~^~08/01/2012~ -~05185~^~304~^28.^4^1.^~1~^~A~^^^1^24.^31.^3^23.^32.^~2, 3~^~08/01/2012~ -~05185~^~305~^201.^4^6.^~1~^~A~^^^1^189.^213.^3^180.^221.^~2, 3~^~08/01/2012~ -~05185~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~08/01/2012~ -~05185~^~307~^113.^4^6.^~1~^~A~^^^1^101.^130.^3^93.^132.^~2, 3~^~08/01/2012~ -~05185~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05185~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05185~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05185~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~601~^57.^4^1.^~1~^~A~^^^1^55.^60.^3^53.^60.^~2, 3~^~08/01/2012~ -~05186~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~301~^9.^4^0.^~1~^~A~^^^1^8.^11.^3^7.^11.^~2, 3~^~08/01/2012~ -~05186~^~304~^32.^4^1.^~1~^~A~^^^1^29.^34.^3^28.^34.^~2, 3~^~08/01/2012~ -~05186~^~305~^230.^4^6.^~1~^~A~^^^1^215.^246.^3^208.^250.^~2, 3~^~08/01/2012~ -~05186~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~08/01/2012~ -~05186~^~307~^99.^4^8.^~1~^~A~^^^1^82.^118.^3^72.^125.^~2, 3~^~08/01/2012~ -~05186~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05186~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05186~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05186~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05186~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05186~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~601~^80.^4^2.^~1~^~A~^^^1^74.^88.^3^70.^88.^~2, 3~^~08/01/2012~ -~05187~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05187~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05187~^~301~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~4~^~08/01/2012~ -~05187~^~304~^25.^4^0.^~1~^~A~^^^1^23.^26.^3^22.^27.^~4~^~08/01/2012~ -~05187~^~305~^176.^4^15.^~1~^~A~^^^1^133.^204.^3^127.^224.^~4~^~08/01/2012~ -~05187~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~08/01/2012~ -~05187~^~307~^124.^4^10.^~1~^~A~^^^1^101.^151.^3^90.^157.^~4~^~08/01/2012~ -~05187~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05187~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05187~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05187~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05187~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05187~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05187~^~601~^79.^4^8.^~1~^~A~^^^1^54.^93.^3^52.^106.^~2, 3~^~08/01/2012~ -~05188~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~301~^17.^4^1.^~1~^~A~^^^1^14.^19.^3^13.^20.^~2, 3~^~08/01/2012~ -~05188~^~304~^27.^4^0.^~1~^~A~^^^1^25.^27.^3^25.^27.^~2, 3~^~08/01/2012~ -~05188~^~305~^212.^4^9.^~1~^~A~^^^1^198.^240.^3^181.^242.^~2, 3~^~08/01/2012~ -~05188~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~08/01/2012~ -~05188~^~307~^104.^4^13.^~1~^~A~^^^1^65.^123.^3^61.^145.^~2, 3~^~08/01/2012~ -~05188~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05188~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05188~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05188~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05188~^~601~^128.^4^12.^~1~^~A~^^^1^111.^164.^3^89.^166.^~2, 3~^~08/01/2012~ -~05190~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~268~^1020.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05190~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~305~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~306~^260.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05190~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~324~^1.^0^^~4~^~BFFN~^~05051~^^^^^^^^^~03/01/2009~ -~05190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05190~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05190~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05190~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05191~^~268~^657.^0^^~4~^^^^^^^^^^^ -~05191~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~306~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~307~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05191~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05191~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05191~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05191~^~601~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05192~^~268~^791.^0^^~4~^^^^^^^^^^^ -~05192~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~305~^210.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~306~^288.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05192~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05192~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05192~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05192~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05193~^~268~^602.^0^^~4~^^^^^^^^^^^ -~05193~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~305~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~306~^273.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~307~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~318~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~319~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05193~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05193~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05193~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05193~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~268~^870.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05194~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~305~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~306~^280.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05194~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~324~^4.^0^^~4~^~BFFN~^~05078~^^^^^^^^^~03/01/2009~ -~05194~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05194~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05194~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05194~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05195~^~268~^824.^0^^~4~^^^^^^^^^^^ -~05195~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~305~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~306~^240.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~307~^55.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~318~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~319~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05195~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05195~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05195~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05195~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05196~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~268~^958.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05196~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05196~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05196~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~324~^4.^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~05196~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05196~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05196~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05196~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~268~^720.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05200~^~301~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~304~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~305~^198.^6^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~306~^250.^6^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~307~^66.^6^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05200~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~324~^1.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05200~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05200~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05200~^~601~^105.^6^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05215~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05215~^~301~^11.^4^0.^~1~^~A~^^^^9.^13.^^^^^~01/01/2013~ -~05215~^~304~^25.^4^0.^~1~^~A~^^^^23.^26.^^^^^~01/01/2013~ -~05215~^~305~^176.^4^15.^~1~^~A~^^^^133.^204.^^^^^~01/01/2013~ -~05215~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~ -~05215~^~307~^124.^4^10.^~1~^~A~^^^^101.^151.^^^^^~01/01/2013~ -~05215~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05215~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05215~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05215~^~601~^79.^4^8.^~1~^~A~^^^^54.^93.^^^^^~01/01/2013~ -~05216~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~301~^17.^4^1.^~1~^~A~^^^^14.^19.^^^^^~01/01/2013~ -~05216~^~304~^27.^4^0.^~1~^~A~^^^^25.^27.^^^^^~01/01/2013~ -~05216~^~305~^212.^4^9.^~1~^~A~^^^^198.^240.^^^^^~01/01/2013~ -~05216~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~ -~05216~^~307~^104.^4^13.^~1~^~A~^^^^65.^123.^^^^^~01/01/2013~ -~05216~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05216~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05216~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05216~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~601~^128.^4^12.^~1~^~A~^^^^111.^164.^^^^^~01/01/2013~ -~05219~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~ -~05219~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~08/01/1979~ -~05219~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~ -~05219~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~ -~05219~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~ -~05219~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05219~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05219~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05219~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05219~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05219~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~ -~05220~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~ -~05220~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~ -~05220~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~ -~05220~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05220~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~ -~05220~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05220~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05220~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05220~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05220~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~ -~05227~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05227~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~268~^481.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05227~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~ -~05227~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~01/01/2013~ -~05227~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~ -~05227~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~ -~05227~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~ -~05227~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05227~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05227~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05227~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05227~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05227~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05227~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~ -~05228~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~ -~05228~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~ -~05228~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~ -~05228~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05228~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~ -~05228~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05228~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05228~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05228~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05228~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05228~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~ -~05236~^~208~^482.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05236~^~268~^2017.^0^^~4~^^^^^^^^^^^ -~05236~^~301~^32.^15^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~305~^133.^15^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~306~^155.^15^3.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~307~^44.^15^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~05236~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~05236~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05236~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05236~^~601~^106.^15^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05277~^~301~^14.^11^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~305~^111.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05277~^~306~^138.^12^13.^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~307~^503.^4^46.^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05277~^~319~^34.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~05277~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05277~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05277~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05277~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05277~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05277~^~601~^62.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05282~^~268~^1933.^0^^~4~^^^^^^^^^^^ -~05282~^~301~^70.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~305~^200.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~306~^138.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~307~^697.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~318~^3333.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~319~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05282~^~320~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05282~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05282~^~432~^60.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05282~^~601~^150.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05284~^~301~^12.^9^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~305~^162.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~306~^224.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~307~^518.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~05284~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~05284~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05284~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~324~^11.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~05284~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05284~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05284~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05284~^~601~^66.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05285~^~268~^577.^0^^~4~^^^^^^^^^^^ -~05285~^~301~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~305~^240.^6^16.^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~306~^310.^6^9.^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~307~^850.^6^61.^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05285~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05285~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05285~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05285~^~601~^55.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05286~^~268~^280.^0^^~4~^^^^^^^^^^^ -~05286~^~301~^14.^4^2.^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~304~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~305~^81.^4^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~306~^61.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~307~^554.^4^54.^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~318~^42.^4^12.^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~319~^13.^4^3.^~1~^^^^^^^^^^^~06/01/2002~ -~05286~^~320~^13.^4^3.^~1~^^^^^^^^^^^~06/01/2002~ -~05286~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05286~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05286~^~601~^18.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05293~^~268~^527.^0^^~4~^^^^^^^^^^^ -~05293~^~301~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~304~^21.^5^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~305~^214.^5^11.^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~306~^248.^17^14.^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~307~^397.^19^33.^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05293~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05293~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05293~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05293~^~601~^42.^13^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05294~^~268~^657.^0^^~4~^^^^^^^^^^^ -~05294~^~301~^8.^7^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~305~^171.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~306~^241.^7^12.^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~307~^437.^7^51.^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05294~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~05294~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05294~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05294~^~601~^62.^6^5.^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05295~^~268~^502.^0^^~4~^^^^^^^^^^^ -~05295~^~301~^1.^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~305~^158.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~306~^360.^6^4.^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~307~^678.^18^77.^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05295~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05295~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05295~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05295~^~601~^53.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05300~^~268~^1167.^0^^~4~^^^^^^^^^^^ -~05300~^~301~^14.^11^1.^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~305~^234.^11^22.^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~306~^260.^11^6.^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~307~^838.^11^28.^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05300~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05300~^~417~^29.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~05300~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~05300~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05300~^~601~^64.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05301~^~268~^1138.^0^^~4~^^^^^^^^^^^ -~05301~^~301~^138.^19^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~304~^12.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~305~^132.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~306~^104.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~307~^40.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~318~^245.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~319~^74.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05301~^~320~^74.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05301~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05301~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05301~^~601~^130.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05302~^~268~^833.^0^^~4~^^^^^^^^^^^ -~05302~^~301~^123.^16^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~304~^13.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~305~^154.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~306~^128.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~307~^51.^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~318~^107.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~319~^32.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05302~^~320~^32.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05302~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05302~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05302~^~601~^104.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05303~^~268~^1017.^0^^~4~^^^^^^^^^^^ -~05303~^~301~^187.^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~304~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~305~^132.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~306~^104.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~307~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~318~^149.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~319~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05303~^~320~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05303~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05303~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05303~^~601~^143.^7^7.^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05304~^~268~^841.^0^^~4~^^^^^^^^^^^ -~05304~^~301~^145.^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~305~^115.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~306~^173.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~307~^48.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05304~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~05304~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05304~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~05304~^~601~^95.^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05305~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05305~^~301~^19.^12^3.^~1~^~A~^^^1^3.^44.^11^10.^27.^~2, 3~^~04/01/2010~ -~05305~^~304~^23.^12^1.^~1~^~A~^^^1^18.^29.^11^20.^25.^~2, 3~^~04/01/2010~ -~05305~^~305~^200.^12^6.^~1~^~A~^^^1^165.^243.^11^184.^215.^~2, 3~^~04/01/2010~ -~05305~^~306~^237.^12^12.^~1~^~A~^^^1^195.^306.^11^208.^264.^~2, 3~^~04/01/2010~ -~05305~^~307~^58.^12^2.^~1~^~A~^^^1^46.^73.^11^51.^64.^~2, 3~^~04/01/2010~ -~05305~^~318~^66.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05305~^~319~^20.^3^6.^~1~^~A~^^^1^7.^30.^2^-8.^48.^~2, 3~^~04/01/2010~ -~05305~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05305~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05305~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~ -~05305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05305~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~05305~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05305~^~601~^69.^12^3.^~1~^~A~^^^1^54.^80.^11^62.^75.^~2, 3~^~04/01/2010~ -~05306~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~268~^850.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~301~^28.^24^3.^~1~^~A~^^^1^4.^63.^23^20.^36.^~2, 3~^~04/01/2010~ -~05306~^~304~^30.^24^0.^~1~^~A~^^^1^24.^36.^23^27.^31.^~2, 3~^~04/01/2010~ -~05306~^~305~^254.^24^6.^~1~^~A~^^^1^206.^314.^23^239.^267.^~2, 3~^~04/01/2010~ -~05306~^~306~^294.^24^10.^~1~^~A~^^^1^214.^379.^23^273.^314.^~2, 3~^~04/01/2010~ -~05306~^~307~^78.^24^3.^~1~^~A~^^^1^53.^106.^23^71.^84.^~2, 3~^~04/01/2010~ -~05306~^~318~^79.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05306~^~319~^24.^6^4.^~1~^~A~^^^1^8.^35.^5^10.^36.^~2, 3~^~04/01/2010~ -~05306~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05306~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~05306~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~ -~05306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05306~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~ -~05306~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~601~^93.^24^3.^~1~^~A~^^^1^58.^121.^23^84.^100.^~2, 3~^~04/01/2010~ -~05307~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~268~^837.^0^^~4~^^^^^^^^^^^ -~05307~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~305~^140.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~306~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~318~^108.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05307~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05307~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05307~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05307~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05307~^~601~^101.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05308~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~268~^1085.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05308~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~305~^146.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~306~^245.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~307~^64.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~318~^106.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05308~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05308~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05308~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~324~^2.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05308~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05308~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05308~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05308~^~601~^131.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05309~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~268~^485.^0^^~4~^^^^^^^^^^^ -~05309~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~305~^160.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~306~^269.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~307~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~318~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05309~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05309~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05309~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05309~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05309~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05310~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~268~^561.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05310~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~305~^149.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~306~^250.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~318~^65.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~05310~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05310~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05310~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05310~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~05310~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05310~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05310~^~601~^106.^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05311~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~268~^772.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05311~^~301~^14.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~304~^19.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~305~^153.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~306~^153.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~307~^482.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~05311~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~05311~^~319~^53.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~05311~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05311~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05311~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~417~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~05311~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05311~^~601~^50.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05312~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~268~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05312~^~301~^28.^3^4.^~1~^~A~^^^1^23.^36.^2^10.^44.^~2, 3~^~04/01/2004~ -~05312~^~304~^20.^3^1.^~1~^~A~^^^1^18.^22.^2^15.^24.^~2, 3~^~04/01/2004~ -~05312~^~305~^205.^3^24.^~1~^~A~^^^1^157.^230.^2^101.^309.^~2, 3~^~04/01/2004~ -~05312~^~306~^190.^3^21.^~1~^~A~^^^1^147.^216.^2^97.^282.^~2, 3~^~04/01/2004~ -~05312~^~307~^615.^3^140.^~1~^~A~^^^1^455.^894.^2^12.^1217.^~2, 3~^~04/01/2004~ -~05312~^~318~^58.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05312~^~319~^17.^3^3.^~1~^~A~^^^1^11.^22.^2^3.^31.^~1, 2, 3~^~04/01/2004~ -~05312~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05312~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~417~^10.^3^1.^~1~^~A~^^^1^8.^13.^2^3.^16.^~1, 2, 3~^~04/01/2004~ -~05312~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~432~^10.^3^1.^~1~^~A~^^^1^8.^13.^2^3.^16.^^~05/01/2004~ -~05312~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05312~^~601~^126.^3^5.^~1~^~A~^^^1^115.^135.^2^100.^151.^~2, 3~^~04/01/2004~ -~05313~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05313~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~268~^1039.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05313~^~301~^38.^3^5.^~1~^~A~^^^1^30.^48.^2^15.^60.^~2, 3~^~04/01/2004~ -~05313~^~304~^27.^3^3.^~1~^~A~^^^1^21.^32.^2^12.^40.^~2, 3~^~04/01/2004~ -~05313~^~305~^272.^3^32.^~1~^~A~^^^1^232.^336.^2^133.^410.^~2, 3~^~04/01/2004~ -~05313~^~306~^254.^3^30.^~1~^~A~^^^1^220.^315.^2^123.^385.^~2, 3~^~04/01/2004~ -~05313~^~307~^837.^3^240.^~1~^~A~^^^1^495.^1300.^2^-196.^1870.^~2, 3~^~04/01/2004~ -~05313~^~318~^68.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05313~^~319~^20.^3^2.^~1~^~A~^^^1^15.^25.^2^7.^33.^~2, 3~^~04/01/2004~ -~05313~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05313~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~417~^12.^3^1.^~1~^~A~^^^1^8.^15.^2^3.^20.^~1, 2, 3~^~04/01/2004~ -~05313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~432~^12.^3^1.^~1~^~A~^^^1^8.^15.^2^3.^20.^^~05/01/2004~ -~05313~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05313~^~601~^156.^3^14.^~1~^~A~^^^1^128.^174.^2^95.^216.^~2, 3~^~04/01/2004~ -~05314~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~301~^5.^6^0.^~1~^~A~^^^1^4.^7.^5^4.^6.^~2, 3~^~04/01/2013~ -~05314~^~304~^25.^6^0.^~1~^~A~^^^1^22.^27.^5^23.^26.^~2, 3~^~04/01/2013~ -~05314~^~305~^198.^6^9.^~1~^~A~^^^1^169.^231.^5^172.^222.^~2, 3~^~04/01/2013~ -~05314~^~306~^332.^6^25.^~1~^~A~^^^1^252.^399.^5^267.^396.^~2, 3~^~04/01/2013~ -~05314~^~307~^173.^6^12.^~1~^~A~^^^1^128.^220.^5^141.^205.^~2, 3~^~04/01/2013~ -~05314~^~318~^36.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~05314~^~319~^11.^2^^~1~^~A~^^^1^8.^13.^^^^^~04/01/2009~ -~05314~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~05314~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~324~^2.^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2013~ -~05314~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05314~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~05314~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05314~^~601~^64.^3^1.^~1~^~A~^^^1^62.^66.^2^58.^69.^~2, 3~^~04/01/2013~ -~05315~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~ -~05315~^~268~^845.^0^^~4~^^^^^^^^^^^ -~05315~^~301~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~307~^84.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~601~^136.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05316~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~ -~05316~^~268~^586.^0^^~4~^^^^^^^^^^^ -~05316~^~301~^9.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~307~^105.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~601~^143.^8^4.^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~ -~05317~^~268~^908.^0^^~4~^^^^^^^^^^^ -~05317~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~307~^110.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~601~^114.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~ -~05318~^~268~^745.^0^^~4~^^^^^^^^^^^ -~05318~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~307~^108.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~601~^105.^8^3.^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05319~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05319~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05319~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~305~^248.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~306~^291.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~307~^403.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~05319~^~319~^10.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05319~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~05319~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~05319~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~417~^9.^4^1.^~1~^~A~^^^1^6.^14.^3^2.^15.^~2, 3~^~05/01/2012~ -~05319~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05319~^~432~^9.^4^1.^~1~^~A~^^^1^6.^14.^3^2.^15.^~2, 3~^~05/01/2012~ -~05319~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05319~^~601~^155.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05320~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~05320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~268~^1013.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~05320~^~301~^28.^10^4.^~1~^~A~^^^1^14.^61.^9^18.^38.^~4~^~04/01/2004~ -~05320~^~304~^21.^10^0.^~1~^~A~^^^1^18.^25.^9^19.^22.^~4~^~04/01/2004~ -~05320~^~305~^233.^10^7.^~1~^~A~^^^1^198.^270.^9^216.^249.^~4~^~04/01/2004~ -~05320~^~306~^218.^10^5.^~1~^~A~^^^1^192.^244.^9^205.^230.^~4~^~04/01/2004~ -~05320~^~307~^559.^10^71.^~1~^~A~^^^1^382.^1160.^9^397.^721.^~4~^~04/01/2004~ -~05320~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05320~^~319~^21.^5^2.^~1~^~A~^^^1^11.^25.^4^13.^27.^~1, 4~^~04/01/2004~ -~05320~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~05320~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~417~^10.^10^0.^~1~^~A~^^^1^8.^16.^9^8.^12.^~1, 4~^~04/01/2004~ -~05320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~432~^10.^10^0.^~1~^~A~^^^1^8.^16.^9^8.^12.^^~10/01/2005~ -~05320~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~05320~^~601~^136.^10^5.^~1~^~A~^^^1^115.^170.^9^123.^147.^~4~^~04/01/2004~ -~05323~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~301~^20.^6^3.^~1~^~A~^^^1^11.^34.^5^12.^28.^~2, 3~^~02/01/2007~ -~05323~^~304~^25.^6^0.^~1~^~A~^^^1^21.^28.^5^22.^27.^~2, 3~^~02/01/2007~ -~05323~^~305~^196.^6^6.^~1~^~A~^^^1^166.^214.^5^178.^213.^~2, 3~^~02/01/2007~ -~05323~^~306~^248.^6^8.^~1~^~A~^^^1^216.^274.^5^226.^268.^~2, 3~^~02/01/2007~ -~05323~^~307~^518.^6^17.^~1~^~A~^^^1^442.^568.^5^471.^563.^~2, 3~^~02/01/2007~ -~05323~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~05323~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05323~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~05323~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~417~^5.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~432~^5.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~601~^45.^3^1.^~1~^~A~^^^1^42.^47.^2^39.^50.^~2, 3~^~02/01/2007~ -~05324~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~301~^19.^2^^~1~^~A~^^^1^16.^23.^1^^^^~02/01/2007~ -~05324~^~304~^24.^2^^~1~^~A~^^^1^23.^26.^1^^^^~02/01/2007~ -~05324~^~305~^208.^2^^~1~^~A~^^^1^200.^215.^1^^^^~02/01/2007~ -~05324~^~306~^261.^2^^~1~^~A~^^^1^257.^264.^1^^^^~02/01/2007~ -~05324~^~307~^532.^2^^~1~^~A~^^^1^500.^564.^1^^^^~02/01/2007~ -~05324~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~05324~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~05324~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05324~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~05324~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~601~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~305~^216.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~306~^225.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~307~^446.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~05326~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~05326~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~05326~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05326~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05326~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~601~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05327~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~268~^1101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05327~^~301~^19.^3^6.^~1~^~A~^^^1^12.^32.^2^-8.^47.^~2, 3~^~02/01/2007~ -~05327~^~304~^23.^3^0.^~1~^~A~^^^1^22.^24.^2^20.^25.^~2, 3~^~02/01/2007~ -~05327~^~305~^211.^3^10.^~1~^~A~^^^1^200.^231.^2^167.^254.^~2, 3~^~02/01/2007~ -~05327~^~306~^214.^3^9.^~1~^~A~^^^1^195.^224.^2^172.^255.^~2, 3~^~02/01/2007~ -~05327~^~307~^536.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~05327~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~05327~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~05327~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05327~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2012~ -~05327~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~417~^12.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^13.^~2, 3~^~02/01/2007~ -~05327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05327~^~432~^12.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^13.^^~03/01/2007~ -~05327~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05327~^~601~^41.^3^1.^~1~^~A~^^^1^39.^43.^2^34.^46.^~2, 3~^~02/01/2007~ -~05332~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~268~^598.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05332~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~4~^~04/01/2007~ -~05332~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~4~^~04/01/2007~ -~05332~^~305~^178.^4^1.^~1~^~A~^^^1^175.^181.^3^173.^183.^~4~^~04/01/2007~ -~05332~^~306~^522.^4^99.^~1~^~A~^^^1^341.^716.^3^205.^838.^~4~^~04/01/2007~ -~05332~^~307~^60.^4^3.^~1~^~A~^^^1^50.^66.^3^48.^71.^~4~^~04/01/2007~ -~05332~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~05332~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2007~ -~05332~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~05332~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~417~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 4~^~04/01/2007~ -~05332~^~431~^0.^4^0.^~7~^~Z~^^^1^0.^0.^3^0.^0.^~4~^~04/01/2007~ -~05332~^~432~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 4~^~04/01/2007~ -~05332~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~05332~^~601~^86.^4^3.^~1~^~A~^^^1^75.^94.^3^73.^98.^~4~^~04/01/2007~ -~05333~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~268~^790.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~301~^8.^4^0.^~1~^~A~^^^1^7.^9.^3^5.^9.^~4~^~05/01/2007~ -~05333~^~304~^28.^4^0.^~1~^~A~^^^1^27.^30.^3^26.^30.^~4~^~05/01/2007~ -~05333~^~305~^234.^4^4.^~1~^~A~^^^1^228.^246.^3^221.^247.^~4~^~05/01/2007~ -~05333~^~306~^677.^4^126.^~1~^~A~^^^1^457.^910.^3^274.^1079.^~4~^~05/01/2007~ -~05333~^~307~^75.^4^2.^~1~^~A~^^^1^68.^78.^3^67.^82.^~4~^~05/01/2007~ -~05333~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~05333~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~05333~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~05333~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~417~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~4~^~05/01/2007~ -~05333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~432~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~4~^~05/01/2007~ -~05333~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~05333~^~601~^107.^4^3.^~1~^~A~^^^1^98.^115.^3^94.^120.^~4~^~05/01/2007~ -~05334~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~268~^808.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~305~^216.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~306~^262.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~307~^335.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~319~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05334~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~417~^8.^4^1.^~1~^~A~^^^1^6.^10.^3^4.^11.^~2, 3~^~05/01/2012~ -~05334~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~432~^8.^4^1.^~1~^~A~^^^1^6.^10.^3^4.^11.^~2, 3~^~05/01/2012~ -~05334~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~601~^128.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05335~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~268~^900.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~301~^88.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~305~^83.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~306~^31.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~307~^67.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05335~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05335~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05335~^~417~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05335~^~432~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05335~^~601~^84.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05339~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05339~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~268~^768.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05339~^~301~^32.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~305~^264.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~306~^322.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~307~^725.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~05339~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~05339~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05339~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05339~^~601~^134.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05341~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~268~^859.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05341~^~301~^38.^4^5.^~1~^~A~^^^1^25.^49.^3^21.^55.^~2, 3~^~06/01/2007~ -~05341~^~304~^21.^4^2.^~1~^~A~^^^1^16.^28.^3^12.^30.^~2, 3~^~06/01/2007~ -~05341~^~305~^250.^4^19.^~1~^~A~^^^1^211.^299.^3^188.^310.^~2, 3~^~06/01/2007~ -~05341~^~306~^309.^4^36.^~1~^~A~^^^1^228.^394.^3^193.^423.^~2, 3~^~06/01/2007~ -~05341~^~307~^661.^4^74.^~1~^~A~^^^1^484.^850.^3^422.^899.^~2, 3~^~06/01/2007~ -~05341~^~318~^57.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~05341~^~319~^17.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~05341~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2007~ -~05341~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05341~^~601~^123.^4^17.^~1~^~A~^^^1^83.^158.^3^66.^178.^~2, 3~^~06/01/2007~ -~05342~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~268~^574.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~301~^13.^6^1.^~1~^~A~^^^1^10.^20.^5^8.^16.^~2, 3~^~05/01/2014~ -~05342~^~304~^25.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^26.^~2, 3~^~05/01/2014~ -~05342~^~305~^235.^6^2.^~1~^~A~^^^1^230.^243.^5^229.^240.^~2, 3~^~05/01/2014~ -~05342~^~306~^303.^6^17.^~1~^~A~^^^1^276.^388.^5^257.^347.^~2, 3~^~05/01/2014~ -~05342~^~307~^313.^6^65.^~1~^~A~^^^1^152.^612.^5^144.^481.^~2, 3~^~05/01/2014~ -~05342~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~05342~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05342~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~05342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~05342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~05342~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2015~ -~05342~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~05342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~05342~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~05342~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~05342~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05342~^~601~^86.^3^2.^~1~^~A~^^^1^82.^91.^2^74.^96.^~2, 3~^~05/01/2014~ -~05343~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05343~^~301~^21.^12^2.^~1~^~A~^^^1^14.^36.^11^15.^25.^~2, 3~^~03/01/2008~ -~05343~^~304~^24.^12^1.^~1~^~A~^^^1^20.^35.^11^21.^27.^~2, 3~^~03/01/2008~ -~05343~^~305~^257.^12^14.^~1~^~A~^^^1^167.^344.^11^225.^287.^~2, 3~^~03/01/2008~ -~05343~^~306~^301.^12^14.^~1~^~A~^^^1^238.^395.^11^268.^333.^~2, 3~^~03/01/2008~ -~05343~^~307~^417.^12^71.^~1~^~A~^^^1^95.^978.^11^260.^573.^~2, 3~^~03/01/2008~ -~05343~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05343~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05343~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~417~^10.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2008~ -~05343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~432~^10.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2008~ -~05343~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05343~^~601~^160.^12^5.^~1~^~A~^^^1^140.^202.^11^147.^171.^~2, 3~^~03/01/2008~ -~05344~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~268~^1698.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05344~^~301~^25.^12^2.^~1~^~A~^^^1^14.^42.^11^18.^30.^~2, 3~^~03/01/2008~ -~05344~^~304~^26.^12^1.^~1~^~A~^^^1^14.^36.^11^21.^29.^~2, 3~^~03/01/2008~ -~05344~^~305~^248.^12^23.^~1~^~A~^^^1^151.^441.^11^195.^299.^~2, 3~^~03/01/2008~ -~05344~^~306~^245.^12^15.^~1~^~A~^^^1^184.^344.^11^211.^278.^~2, 3~^~03/01/2008~ -~05344~^~307~^381.^12^70.^~1~^~A~^^^1^73.^788.^11^226.^535.^~2, 3~^~03/01/2008~ -~05344~^~318~^186.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05344~^~319~^56.^3^3.^~1~^~A~^^^1^51.^61.^2^42.^69.^~2, 3~^~03/01/2008~ -~05344~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05344~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~417~^11.^4^1.^~1~^~A~^^^1^8.^14.^3^6.^15.^~2, 3~^~03/01/2008~ -~05344~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2008~ -~05344~^~432~^11.^4^1.^~1~^~A~^^^1^8.^14.^3^6.^15.^~2, 3~^~03/01/2008~ -~05344~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~05344~^~601~^141.^12^5.^~1~^~A~^^^1^112.^166.^11^128.^152.^~2, 3~^~03/01/2008~ -~05345~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~268~^820.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05345~^~301~^13.^12^0.^~1~^~A~^^^1^10.^16.^11^11.^14.^~2, 3~^~03/01/2008~ -~05345~^~304~^21.^12^0.^~1~^~A~^^^1^16.^28.^11^18.^22.^~2, 3~^~03/01/2008~ -~05345~^~305~^217.^12^10.^~1~^~A~^^^1^169.^295.^11^192.^240.^~2, 3~^~03/01/2008~ -~05345~^~306~^264.^12^12.^~1~^~A~^^^1^210.^351.^11^237.^290.^~2, 3~^~03/01/2008~ -~05345~^~307~^337.^12^61.^~1~^~A~^^^1^85.^773.^11^201.^472.^~2, 3~^~03/01/2008~ -~05345~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05345~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05345~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05345~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~417~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~03/01/2008~ -~05345~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~432~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~03/01/2008~ -~05345~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05345~^~601~^130.^12^3.^~1~^~A~^^^1^108.^152.^11^121.^138.^~2, 3~^~03/01/2008~ -~05346~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~268~^822.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05346~^~301~^32.^4^6.^~1~^~A~^^^1^20.^47.^3^11.^52.^~2, 3~^~03/01/2008~ -~05346~^~304~^24.^4^3.^~1~^~A~^^^1^19.^34.^3^11.^35.^~2, 3~^~03/01/2008~ -~05346~^~305~^264.^4^13.^~1~^~A~^^^1^239.^298.^3^220.^306.^~2, 3~^~03/01/2008~ -~05346~^~306~^322.^4^33.^~1~^~A~^^^1^255.^414.^3^215.^427.^~2, 3~^~03/01/2008~ -~05346~^~307~^725.^4^113.^~1~^~A~^^^1^412.^928.^3^362.^1087.^~2, 3~^~03/01/2008~ -~05346~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05346~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05346~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05346~^~601~^140.^4^22.^~1~^~A~^^^1^81.^190.^3^68.^211.^~2, 3~^~03/01/2008~ -~05347~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05347~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05347~^~301~^35.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~305~^249.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~307~^584.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~318~^92.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~319~^28.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~320~^28.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05347~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05348~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~268~^768.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05348~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~306~^289.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~307~^347.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~318~^41.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~417~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~431~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~432~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05348~^~601~^96.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05349~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05349~^~301~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~307~^411.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~318~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~319~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~320~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~417~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~432~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05349~^~601~^156.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05351~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~268~^975.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05351~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~306~^260.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~307~^345.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~318~^70.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~319~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~320~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~417~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~431~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~432~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05351~^~601~^132.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05352~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05352~^~301~^29.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~305~^258.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~306~^296.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~307~^610.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~318~^87.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~320~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05352~^~601~^140.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05356~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~268~^1583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~301~^34.^12^7.^~1~^~A~^^^1^13.^105.^11^17.^50.^~2, 3~^~05/01/2012~ -~05356~^~304~^22.^12^1.^~1~^~A~^^^1^17.^32.^11^18.^25.^~2, 3~^~05/01/2012~ -~05356~^~305~^230.^12^10.^~1~^~A~^^^1^151.^302.^11^205.^253.^~2, 3~^~05/01/2012~ -~05356~^~306~^223.^12^14.^~1~^~A~^^^1^166.^337.^11^191.^254.^~2, 3~^~05/01/2012~ -~05356~^~307~^335.^12^23.^~1~^~A~^^^1^207.^462.^11^283.^386.^~2, 3~^~05/01/2012~ -~05356~^~318~^171.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~05356~^~319~^51.^3^6.^~1~^~A~^^^1^42.^65.^2^22.^80.^~2, 3~^~05/01/2012~ -~05356~^~320~^51.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~05356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05356~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05356~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05356~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~601~^120.^12^12.^~1~^~A~^^^1^43.^179.^11^92.^148.^~2, 3~^~05/01/2012~ -~05357~^~208~^251.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~268~^1051.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~305~^217.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~306~^254.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~307~^509.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~318~^79.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~319~^24.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~320~^24.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~324~^5.^0^^~4~^~BFFN~^~05073~^^^^^^^^^~06/01/2014~ -~05357~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~05357~^~601~^118.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05358~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05358~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05358~^~301~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~304~^25.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~305~^244.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~306~^276.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~307~^329.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05358~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05358~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~417~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05358~^~601~^90.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05359~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05359~^~301~^22.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~305~^245.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~306~^279.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~307~^392.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05359~^~319~^17.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05359~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05359~^~601~^149.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05361~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~268~^946.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05361~^~301~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~305~^218.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~306~^255.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~307~^335.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05361~^~319~^20.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05361~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05361~^~601~^127.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05362~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~268~^1073.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05362~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~305~^251.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~306~^285.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~307~^579.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05362~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05362~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05362~^~601~^129.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05363~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2014~ -~05363~^~304~^32.^2^^~1~^~A~^^^1^31.^33.^1^^^^~04/01/2014~ -~05363~^~305~^229.^2^^~1~^~A~^^^1^223.^235.^1^^^^~04/01/2014~ -~05363~^~306~^311.^2^^~1~^~A~^^^1^298.^323.^1^^^^~04/01/2014~ -~05363~^~307~^50.^2^^~1~^~A~^^^1^46.^55.^1^^^^~04/01/2014~ -~05363~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~05363~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~601~^40.^2^^~1~^~A~^^^1^40.^40.^1^^^^~04/01/2014~ -~05621~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05621~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05621~^~301~^7.^6^0.^~1~^~A~^^^1^4.^10.^5^5.^9.^~4~^~07/01/2001~ -~05621~^~304~^24.^6^0.^~1~^~A~^^^1^20.^25.^5^21.^26.^~4~^~07/01/2001~ -~05621~^~305~^222.^6^9.^~1~^~A~^^^1^177.^241.^5^197.^246.^~4~^~07/01/2001~ -~05621~^~306~^320.^6^10.^~1~^~A~^^^1^272.^340.^5^293.^346.^~4~^~07/01/2001~ -~05621~^~307~^56.^6^2.^~1~^~A~^^^1^47.^63.^5^50.^62.^~4~^~07/01/2001~ -~05621~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~ -~05621~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05621~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~05621~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~05621~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05621~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05621~^~601~^69.^0^^~4~^~BFYN~^~05622~^^^^^^^^^~07/01/2001~ -~05622~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05622~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05622~^~301~^8.^6^0.^~1~^~A~^^^1^7.^9.^5^7.^9.^~4~^~07/01/2001~ -~05622~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^28.^29.^~4~^~07/01/2001~ -~05622~^~305~^269.^6^2.^~1~^~A~^^^1^260.^275.^5^263.^275.^~4~^~07/01/2001~ -~05622~^~306~^375.^6^4.^~1~^~A~^^^1^363.^388.^5^363.^386.^~4~^~07/01/2001~ -~05622~^~307~^65.^6^2.^~1~^~A~^^^1^56.^73.^5^57.^72.^~4~^~07/01/2001~ -~05622~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~ -~05622~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05622~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~05622~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~05622~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~05622~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~05622~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~05622~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05622~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~05622~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05622~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05622~^~601~^87.^6^1.^~1~^~A~^^^1^83.^90.^5^83.^89.^~4~^~07/01/2001~ -~05623~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05623~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~268~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05623~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~304~^42.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~305~^236.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~306~^300.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~307~^120.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05623~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05623~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05623~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05623~^~601~^71.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05624~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~268~^645.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~4~^~11/01/2001~ -~05624~^~304~^30.^3^1.^~1~^~A~^^^1^28.^33.^2^23.^37.^~4~^~11/01/2001~ -~05624~^~305~^272.^3^5.^~1~^~A~^^^1^263.^282.^2^247.^295.^~4~^~11/01/2001~ -~05624~^~306~^397.^3^21.^~1~^~A~^^^1^358.^430.^2^306.^487.^~4~^~11/01/2001~ -~05624~^~307~^53.^3^3.^~1~^~A~^^^1^47.^58.^2^39.^67.^~4~^~11/01/2001~ -~05624~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~02/01/2002~ -~05624~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~417~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05624~^~432~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~601~^82.^3^1.^~1~^~A~^^^1^81.^86.^2^74.^90.^~4~^~11/01/2001~ -~05625~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~304~^31.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~305~^229.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~306~^240.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~307~^150.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05625~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~417~^12.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05625~^~432~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2002~ -~05625~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~601~^71.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~268~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05626~^~301~^4.^26^1.^~1~^~A~^^^2^3.^6.^1^-11.^20.^~2~^~07/01/2001~ -~05626~^~304~^40.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~305~^236.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~306~^330.^26^10.^~1~^~A~^^^2^320.^340.^1^202.^457.^~2~^~07/01/2001~ -~05626~^~307~^90.^26^0.^~1~^~A~^^^2^89.^90.^1^85.^94.^~2~^~07/01/2001~ -~05626~^~318~^15.^14^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05626~^~319~^4.^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~05626~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05626~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05626~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05626~^~601~^85.^6^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~05627~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05627~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~268~^703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05627~^~301~^7.^20^0.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~304~^34.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~305~^323.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~306~^324.^20^16.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~307~^110.^20^4.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05627~^~319~^3.^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05627~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~417~^10.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05627~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05627~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05627~^~601~^129.^20^8.^~1~^~A~^^^^^^^^^^~10/01/2001~ -~05628~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05628~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05628~^~301~^4.^25^1.^~1~^~A~^^^2^3.^5.^1^-9.^18.^~2~^~07/01/2001~ -~05628~^~304~^26.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~305~^229.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~306~^318.^25^2.^~1~^~A~^^^2^315.^320.^1^285.^349.^~2~^~07/01/2001~ -~05628~^~307~^102.^25^8.^~1~^~A~^^^2^94.^110.^1^0.^203.^~2~^~07/01/2001~ -~05628~^~318~^17.^14^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05628~^~319~^5.^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05628~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~417~^12.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05628~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05628~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05628~^~601~^67.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05629~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05629~^~301~^6.^19^0.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~304~^33.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~305~^307.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~306~^312.^19^15.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~307~^118.^19^4.^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05629~^~319~^3.^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05629~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~417~^10.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05629~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05629~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05629~^~601~^91.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05630~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05630~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~304~^29.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~305~^225.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~306~^320.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~307~^100.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~01/01/2002~ -~05630~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05630~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~417~^7.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~03/01/2002~ -~05630~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05630~^~432~^7.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05630~^~601~^78.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~268~^591.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~301~^4.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~304~^30.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~305~^217.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~306~^250.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~307~^150.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05631~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05631~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~601~^81.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05632~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~301~^9.^3^3.^~1~^~A~^^^1^5.^17.^2^-6.^24.^~4~^~11/01/2001~ -~05632~^~304~^30.^3^1.^~1~^~A~^^^1^28.^32.^2^23.^35.^~4~^~11/01/2001~ -~05632~^~305~^274.^3^10.^~1~^~A~^^^1^257.^292.^2^230.^317.^~4~^~11/01/2001~ -~05632~^~306~^374.^3^16.^~1~^~A~^^^1^345.^402.^2^303.^444.^~4~^~11/01/2001~ -~05632~^~307~^58.^3^2.^~1~^~A~^^^1^54.^63.^2^45.^69.^~4~^~11/01/2001~ -~05632~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~02/01/2002~ -~05632~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05632~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~417~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05632~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~05632~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~601~^88.^3^4.^~1~^~A~^^^1^80.^94.^2^70.^104.^~4~^~11/01/2001~ -~05641~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05641~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05641~^~301~^7.^6^0.^~1~^~A~^^^1^6.^9.^5^5.^8.^~4~^~07/01/2001~ -~05641~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~4~^~07/01/2001~ -~05641~^~305~^199.^6^1.^~1~^~A~^^^1^193.^202.^5^195.^202.^~4~^~07/01/2001~ -~05641~^~306~^291.^6^6.^~1~^~A~^^^1^274.^312.^5^273.^307.^~4~^~07/01/2001~ -~05641~^~307~^72.^6^1.^~1~^~A~^^^1^67.^78.^5^67.^76.^~4~^~07/01/2001~ -~05641~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~ -~05641~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05641~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~05641~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~05641~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~05641~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05641~^~601~^71.^0^^~4~^~BFYN~^~05642~^^^^^^^^^~07/01/2001~ -~05642~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~268~^734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~301~^8.^6^0.^~1~^~A~^^^1^7.^10.^5^6.^9.^~4~^~07/01/2001~ -~05642~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^21.^23.^~4~^~07/01/2001~ -~05642~^~305~^224.^6^2.^~1~^~A~^^^1^217.^232.^5^218.^229.^~4~^~07/01/2001~ -~05642~^~306~^323.^6^5.^~1~^~A~^^^1^299.^333.^5^309.^336.^~4~^~07/01/2001~ -~05642~^~307~^80.^6^0.^~1~^~A~^^^1^77.^83.^5^78.^82.^~4~^~07/01/2001~ -~05642~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~ -~05642~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05642~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~05642~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05642~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05642~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~05642~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~601~^83.^6^2.^~1~^~A~^^^1^76.^95.^5^75.^90.^~4~^~04/01/2005~ -~05643~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05643~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~268~^490.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05643~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~305~^211.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~306~^308.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~307~^75.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05643~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05643~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05643~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05643~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05643~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~268~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~305~^220.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~306~^320.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05644~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05644~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05644~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05644~^~601~^66.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~268~^591.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~305~^244.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~306~^352.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~307~^83.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~01/01/2002~ -~05645~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~05645~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2002~ -~05645~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~305~^226.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~306~^330.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~307~^76.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05646~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~417~^9.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05646~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05646~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~601~^73.^9^1.^~1~^~A~^^^1^70.^76.^2^65.^80.^~4~^~07/01/2001~ -~05647~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~268~^685.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~304~^26.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~305~^253.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~306~^366.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~307~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~ -~05647~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05647~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05647~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~601~^97.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~305~^221.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~306~^322.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~307~^90.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05648~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05648~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05648~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05648~^~601~^65.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~305~^229.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~306~^333.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~307~^70.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05649~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05649~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05649~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~601~^79.^9^1.^~1~^~A~^^^1^77.^83.^2^71.^87.^~4~^~07/01/2001~ -~05650~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~304~^26.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~305~^254.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~306~^367.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~ -~05650~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05650~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05650~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~601~^93.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05651~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05651~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~304~^21.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~305~^204.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~306~^297.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~307~^83.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05651~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05651~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~05651~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05651~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05651~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~304~^29.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~305~^281.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~306~^409.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~307~^81.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~ -~05652~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05652~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05652~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~601~^90.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~268~^483.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~305~^216.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~306~^315.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05653~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05653~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05653~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05653~^~601~^71.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~305~^220.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~306~^320.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~307~^86.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05654~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05654~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05654~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~601~^80.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~305~^213.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~306~^310.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~307~^67.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05655~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05655~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05655~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05655~^~601~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~268~^606.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~305~^251.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~306~^362.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~307~^80.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~ -~05656~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~417~^15.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05656~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05656~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~601~^85.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~305~^214.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~306~^312.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~307~^81.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~ -~05657~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05657~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~ -~05657~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~601~^75.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~305~^245.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~306~^353.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~307~^77.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~ -~05658~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~417~^15.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~05658~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2002~ -~05658~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~601~^93.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05661~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~301~^10.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^14.^~2, 3~^~02/01/2003~ -~05661~^~304~^27.^4^0.^~1~^~A~^^^1^26.^28.^3^25.^28.^~2, 3~^~02/01/2003~ -~05661~^~305~^442.^4^7.^~1~^~A~^^^1^428.^460.^3^417.^467.^~2, 3~^~02/01/2003~ -~05661~^~306~^315.^4^18.^~1~^~A~^^^1^282.^357.^3^257.^372.^~2, 3~^~02/01/2003~ -~05661~^~307~^92.^4^4.^~1~^~A~^^^1^85.^101.^3^78.^104.^~2, 3~^~02/01/2003~ -~05661~^~318~^14378.^4^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05661~^~319~^4293.^4^485.^~1~^~A~^^^1^3150.^5520.^3^2748.^5836.^~2, 3~^~02/01/2003~ -~05661~^~320~^4296.^4^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~05661~^~321~^31.^4^3.^~1~^~A~^^^1^25.^38.^3^20.^40.^~2, 3~^~02/01/2003~ -~05661~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~337~^25.^4^2.^~1~^~A~^^^1^18.^29.^3^15.^33.^~2, 3~^~02/01/2003~ -~05661~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05661~^~417~^560.^4^58.^~1~^~A~^^^1^441.^718.^3^372.^747.^~2, 3~^~02/01/2003~ -~05661~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05661~^~432~^560.^4^58.^~1~^~A~^^^1^441.^718.^3^372.^747.^^~08/01/2007~ -~05661~^~435~^560.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~601~^564.^4^13.^~1~^~A~^^^1^535.^600.^3^520.^606.^~2, 3~^~02/01/2003~ -~05662~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05662~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05662~^~301~^3.^4^0.^~1~^~A~^^^1^3.^5.^3^1.^5.^~2, 3~^~04/01/2010~ -~05662~^~304~^29.^4^0.^~1~^~A~^^^1^28.^29.^3^27.^30.^~2, 3~^~04/01/2010~ -~05662~^~305~^227.^4^9.^~1~^~A~^^^1^205.^243.^3^197.^256.^~2, 3~^~04/01/2010~ -~05662~^~306~^295.^4^8.^~1~^~A~^^^1^270.^306.^3^268.^321.^~2, 3~^~04/01/2010~ -~05662~^~307~^51.^4^1.^~1~^~A~^^^1^47.^54.^3^46.^55.^~2, 3~^~04/01/2010~ -~05662~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05662~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05662~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05662~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~417~^8.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05662~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05662~^~432~^8.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05662~^~435~^8.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~ -~05662~^~601~^55.^4^1.^~1~^~A~^^^1^54.^58.^3^51.^58.^~2, 3~^~04/01/2010~ -~05663~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05663~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~268~^632.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05663~^~301~^6.^4^0.^~1~^~A~^^^1^4.^7.^3^3.^8.^~2, 3~^~04/01/2010~ -~05663~^~304~^35.^4^1.^~1~^~A~^^^1^30.^36.^3^30.^38.^~2, 3~^~04/01/2010~ -~05663~^~305~^290.^4^12.^~1~^~A~^^^1^253.^314.^3^248.^331.^~2, 3~^~04/01/2010~ -~05663~^~306~^357.^4^14.^~1~^~A~^^^1^315.^379.^3^310.^402.^~2, 3~^~04/01/2010~ -~05663~^~307~^61.^4^0.^~1~^~A~^^^1^59.^63.^3^58.^63.^~2, 3~^~04/01/2010~ -~05663~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05663~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05663~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05663~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~417~^8.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05663~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05663~^~432~^8.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05663~^~435~^8.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05663~^~601~^71.^4^1.^~1~^~A~^^^1^66.^74.^3^65.^76.^~2, 3~^~04/01/2010~ -~05664~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05664~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05664~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~2, 3~^~04/01/2010~ -~05664~^~304~^35.^4^0.^~1~^~A~^^^1^33.^36.^3^31.^37.^~2, 3~^~04/01/2010~ -~05664~^~305~^264.^4^10.^~1~^~A~^^^1^245.^291.^3^230.^297.^~2, 3~^~04/01/2010~ -~05664~^~306~^339.^4^11.^~1~^~A~^^^1^316.^368.^3^303.^374.^~2, 3~^~04/01/2010~ -~05664~^~307~^59.^4^2.^~1~^~A~^^^1^53.^64.^3^51.^66.^~2, 3~^~04/01/2010~ -~05664~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05664~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05664~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05664~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~417~^7.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~ -~05664~^~431~^0.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~ -~05664~^~432~^7.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~ -~05664~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05664~^~601~^65.^4^2.^~1~^~A~^^^1^58.^67.^3^57.^72.^~2, 3~^~04/01/2010~ -~05665~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05665~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~268~^628.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05665~^~301~^21.^4^2.^~1~^~A~^^^1^16.^26.^3^13.^28.^~2, 3~^~04/01/2010~ -~05665~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^21.^~2, 3~^~04/01/2010~ -~05665~^~305~^193.^4^4.^~1~^~A~^^^1^181.^201.^3^178.^207.^~2, 3~^~04/01/2010~ -~05665~^~306~^213.^4^4.^~1~^~A~^^^1^206.^225.^3^198.^226.^~2, 3~^~04/01/2010~ -~05665~^~307~^69.^4^1.^~1~^~A~^^^1^65.^73.^3^63.^75.^~2, 3~^~04/01/2010~ -~05665~^~318~^73.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05665~^~319~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05665~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05665~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~417~^7.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05665~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05665~^~432~^7.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05665~^~435~^7.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~ -~05665~^~601~^74.^4^1.^~1~^~A~^^^1^70.^77.^3^68.^79.^~2, 3~^~04/01/2010~ -~05666~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05666~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05666~^~301~^31.^4^3.^~1~^~A~^^^1^25.^37.^3^20.^41.^~2, 3~^~04/01/2010~ -~05666~^~304~^29.^4^0.^~1~^~A~^^^1^28.^31.^3^27.^30.^~2, 3~^~04/01/2010~ -~05666~^~305~^259.^4^4.^~1~^~A~^^^1^247.^268.^3^244.^273.^~2, 3~^~04/01/2010~ -~05666~^~306~^304.^4^14.^~1~^~A~^^^1^282.^347.^3^256.^350.^~2, 3~^~04/01/2010~ -~05666~^~307~^90.^4^5.^~1~^~A~^^^1^82.^106.^3^73.^107.^~2, 3~^~04/01/2010~ -~05666~^~318~^101.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05666~^~319~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~320~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05666~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05666~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05666~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05666~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05666~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05666~^~601~^104.^4^5.^~1~^~A~^^^1^89.^111.^3^87.^120.^~2, 3~^~04/01/2010~ -~05667~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05667~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~268~^864.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05667~^~301~^29.^4^2.^~1~^~A~^^^1^22.^36.^3^20.^38.^~2, 3~^~04/01/2010~ -~05667~^~304~^25.^4^0.^~1~^~A~^^^1^24.^27.^3^23.^27.^~2, 3~^~04/01/2010~ -~05667~^~305~^210.^4^2.^~1~^~A~^^^1^206.^218.^3^201.^219.^~2, 3~^~04/01/2010~ -~05667~^~306~^247.^4^2.^~1~^~A~^^^1^240.^253.^3^237.^256.^~2, 3~^~04/01/2010~ -~05667~^~307~^91.^4^4.^~1~^~A~^^^1^84.^102.^3^77.^104.^~2, 3~^~04/01/2010~ -~05667~^~318~^105.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05667~^~319~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05667~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05667~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05667~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05667~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05667~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05667~^~601~^106.^4^5.^~1~^~A~^^^1^97.^121.^3^90.^122.^~2, 3~^~04/01/2010~ -~05668~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05668~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~268~^755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05668~^~301~^33.^4^4.^~1~^~A~^^^1^25.^44.^3^17.^47.^~2, 3~^~04/01/2010~ -~05668~^~304~^19.^4^0.^~1~^~A~^^^1^18.^21.^3^16.^21.^~2, 3~^~04/01/2010~ -~05668~^~305~^179.^4^4.^~1~^~A~^^^1^165.^185.^3^164.^193.^~2, 3~^~04/01/2010~ -~05668~^~306~^202.^4^4.^~1~^~A~^^^1^195.^210.^3^189.^214.^~2, 3~^~04/01/2010~ -~05668~^~307~^54.^4^4.^~1~^~A~^^^1^46.^68.^3^38.^69.^~2, 3~^~04/01/2010~ -~05668~^~318~^101.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05668~^~319~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~320~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05668~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05668~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~417~^6.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05668~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05668~^~432~^6.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~ -~05668~^~435~^6.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~ -~05668~^~601~^78.^4^0.^~1~^~A~^^^1^76.^80.^3^75.^80.^~2, 3~^~04/01/2010~ -~05669~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05669~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05669~^~301~^49.^4^6.^~1~^~A~^^^1^31.^63.^3^27.^70.^~2, 3~^~04/01/2010~ -~05669~^~304~^28.^4^0.^~1~^~A~^^^1^27.^29.^3^26.^29.^~2, 3~^~04/01/2010~ -~05669~^~305~^263.^4^15.^~1~^~A~^^^1^219.^285.^3^213.^312.^~2, 3~^~04/01/2010~ -~05669~^~306~^276.^4^3.^~1~^~A~^^^1^269.^285.^3^266.^286.^~2, 3~^~04/01/2010~ -~05669~^~307~^85.^4^3.^~1~^~A~^^^1^76.^94.^3^73.^96.^~2, 3~^~04/01/2010~ -~05669~^~318~^117.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05669~^~319~^35.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05669~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05669~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05669~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05669~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05669~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05669~^~601~^106.^4^3.^~1~^~A~^^^1^97.^111.^3^95.^116.^~2, 3~^~04/01/2010~ -~05670~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05670~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05670~^~301~^48.^4^6.^~1~^~A~^^^1^30.^60.^3^27.^68.^~2, 3~^~04/01/2010~ -~05670~^~304~^25.^4^0.^~1~^~A~^^^1^24.^27.^3^22.^27.^~2, 3~^~04/01/2010~ -~05670~^~305~^235.^4^14.^~1~^~A~^^^1^208.^271.^3^189.^281.^~2, 3~^~04/01/2010~ -~05670~^~306~^242.^4^16.^~1~^~A~^^^1^214.^283.^3^188.^294.^~2, 3~^~04/01/2010~ -~05670~^~307~^81.^4^6.^~1~^~A~^^^1^65.^96.^3^60.^101.^~2, 3~^~04/01/2010~ -~05670~^~318~^97.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05670~^~319~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~320~^29.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05670~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~05670~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05670~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05670~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~ -~05670~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~ -~05670~^~601~^105.^4^2.^~1~^~A~^^^1^99.^108.^3^98.^111.^~2, 3~^~04/01/2010~ -~05671~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~301~^12.^5^0.^~1~^~A~^^^1^11.^14.^4^11.^13.^~2, 3~^~04/01/2011~ -~05671~^~304~^22.^5^0.^~1~^~A~^^^1^21.^24.^4^21.^23.^~2, 3~^~04/01/2011~ -~05671~^~305~^184.^5^3.^~1~^~A~^^^1^170.^193.^4^172.^194.^~2, 3~^~04/01/2011~ -~05671~^~306~^239.^5^6.^~1~^~A~^^^1^229.^263.^4^221.^256.^~2, 3~^~04/01/2011~ -~05671~^~307~^117.^5^13.^~1~^~A~^^^1^97.^169.^4^79.^153.^~2, 3~^~04/01/2011~ -~05671~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05671~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05671~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05671~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05671~^~432~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05671~^~435~^5.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~ -~05671~^~601~^132.^5^7.^~1~^~A~^^^1^102.^143.^4^111.^153.^~2, 3~^~04/01/2011~ -~05672~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~268~^736.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~301~^12.^4^0.^~1~^~A~^^^1^11.^13.^3^10.^13.^~2, 3~^~04/01/2011~ -~05672~^~304~^25.^4^0.^~1~^~A~^^^1^23.^27.^3^22.^27.^~2, 3~^~04/01/2011~ -~05672~^~305~^201.^4^3.^~1~^~A~^^^1^193.^210.^3^189.^212.^~2, 3~^~04/01/2011~ -~05672~^~306~^266.^4^3.^~1~^~A~^^^1^260.^273.^3^255.^276.^~2, 3~^~04/01/2011~ -~05672~^~307~^77.^4^2.^~1~^~A~^^^1^72.^81.^3^69.^83.^~2, 3~^~04/01/2011~ -~05672~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05672~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05672~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05672~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05672~^~432~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05672~^~435~^5.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~ -~05672~^~601~^141.^4^2.^~1~^~A~^^^1^135.^147.^3^133.^149.^~2, 3~^~04/01/2011~ -~05673~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~268~^1855.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~301~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~2, 3~^~04/01/2011~ -~05673~^~304~^14.^4^0.^~1~^~A~^^^1^13.^14.^3^13.^14.^~2, 3~^~04/01/2011~ -~05673~^~305~^130.^4^0.^~1~^~A~^^^1^130.^131.^3^129.^131.^~2, 3~^~04/01/2011~ -~05673~^~306~^161.^4^7.^~1~^~A~^^^1^149.^183.^3^136.^184.^~2, 3~^~04/01/2011~ -~05673~^~307~^75.^4^5.^~1~^~A~^^^1^62.^84.^3^58.^91.^~2, 3~^~04/01/2011~ -~05673~^~318~^161.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05673~^~319~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~320~^48.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05673~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05673~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05673~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05673~^~338~^101.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05673~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05673~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05673~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~ -~05673~^~601~^130.^4^3.^~1~^~A~^^^1^122.^137.^3^120.^139.^~2, 3~^~04/01/2011~ -~05674~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~268~^1839.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~301~^6.^4^0.^~1~^~A~^^^1^6.^7.^3^5.^7.^~2, 3~^~04/01/2011~ -~05674~^~304~^8.^4^0.^~1~^~A~^^^1^8.^9.^3^7.^9.^~2, 3~^~04/01/2011~ -~05674~^~305~^95.^4^2.^~1~^~A~^^^1^88.^102.^3^85.^104.^~2, 3~^~04/01/2011~ -~05674~^~306~^119.^4^5.^~1~^~A~^^^1^104.^130.^3^101.^136.^~2, 3~^~04/01/2011~ -~05674~^~307~^51.^4^3.^~1~^~A~^^^1^45.^59.^3^40.^61.^~2, 3~^~04/01/2011~ -~05674~^~318~^196.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05674~^~319~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~320~^59.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05674~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05674~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05674~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05674~^~338~^103.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05674~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05674~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05674~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~ -~05674~^~601~^105.^4^2.^~1~^~A~^^^1^99.^110.^3^97.^113.^~2, 3~^~04/01/2011~ -~05675~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~268~^1934.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~301~^10.^4^1.^~1~^~A~^^^1^8.^12.^3^6.^13.^~2, 3~^~04/01/2011~ -~05675~^~304~^16.^4^0.^~1~^~A~^^^1^15.^16.^3^15.^16.^~2, 3~^~04/01/2011~ -~05675~^~305~^151.^4^1.^~1~^~A~^^^1^148.^155.^3^146.^155.^~2, 3~^~04/01/2011~ -~05675~^~306~^181.^4^3.^~1~^~A~^^^1^176.^191.^3^171.^191.^~2, 3~^~04/01/2011~ -~05675~^~307~^85.^4^5.^~1~^~A~^^^1^74.^98.^3^67.^103.^~2, 3~^~04/01/2011~ -~05675~^~318~^181.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05675~^~319~^54.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~320~^54.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05675~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05675~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05675~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05675~^~338~^91.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05675~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~ -~05675~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~05675~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~ -~05675~^~601~^132.^4^1.^~1~^~A~^^^1^127.^136.^3^126.^137.^~2, 3~^~04/01/2011~ -~05676~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05676~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05676~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~306~^229.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~307~^111.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05676~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05676~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~338~^13.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05676~^~601~^132.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05677~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05677~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~305~^187.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~306~^245.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05677~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~05677~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~338~^20.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~05677~^~601~^139.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05678~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~268~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~301~^9.^4^0.^~1~^~A~^^^2^7.^11.^2^6.^10.^~2, 3~^~02/01/2013~ -~05678~^~304~^16.^4^0.^~1~^~A~^^^2^13.^19.^2^13.^18.^~2, 3~^~02/01/2013~ -~05678~^~305~^143.^4^7.^~1~^~A~^^^2^119.^153.^2^108.^177.^~2, 3~^~02/01/2013~ -~05678~^~306~^192.^4^6.^~1~^~A~^^^2^167.^223.^2^161.^221.^~2, 3~^~02/01/2013~ -~05678~^~307~^152.^4^6.^~1~^~A~^^^2^129.^182.^2^123.^180.^~2, 3~^~02/01/2013~ -~05678~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~319~^8.^0^^~4~^~BFSN~^~05062~^^^^^^^^^~06/01/2011~ -~05678~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05678~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~338~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~06/01/2011~ -~05678~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~06/01/2011~ -~05678~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~05678~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~06/01/2011~ -~05678~^~601~^92.^3^0.^~1~^~A~^^^2^90.^95.^1^83.^100.^~2, 3~^~02/01/2013~ -~05679~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~301~^12.^4^1.^~1~^~A~^^^2^10.^15.^2^7.^17.^~2, 3~^~02/01/2013~ -~05679~^~304~^20.^4^0.^~1~^~A~^^^2^19.^21.^2^18.^21.^~2, 3~^~06/01/2011~ -~05679~^~305~^197.^4^4.^~1~^~A~^^^2^184.^212.^2^176.^216.^~2, 3~^~02/01/2013~ -~05679~^~306~^250.^4^12.^~1~^~A~^^^2^214.^270.^2^197.^302.^~2, 3~^~02/01/2013~ -~05679~^~307~^190.^4^15.^~1~^~A~^^^2^157.^230.^2^120.^258.^~2, 3~^~02/01/2013~ -~05679~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~319~^6.^0^^~4~^~BFSN~^~05073~^^^^^^^^^~06/01/2011~ -~05679~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05679~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~338~^100.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~05679~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~05679~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05679~^~601~^124.^3^3.^~1~^~A~^^^2^111.^135.^1^81.^166.^~2, 3~^~02/01/2013~ -~05680~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~306~^229.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~307~^169.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~319~^7.^0^^~4~^~BFSN~^~05671~^^^^^^^^^~06/01/2011~ -~05680~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~324~^2.^0^^~4~^~BFFN~^~05671~^^^^^^^^^~06/01/2011~ -~05680~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~05680~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~05680~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~601~^135.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05681~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~268~^685.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~301~^12.^2^^~1~^~A~^^^1^9.^15.^1^^^^~07/01/2011~ -~05681~^~304~^24.^2^^~1~^~A~^^^1^23.^25.^1^^^^~07/01/2011~ -~05681~^~305~^203.^2^^~1~^~A~^^^1^197.^208.^1^^^^~07/01/2011~ -~05681~^~306~^290.^2^^~1~^~A~^^^1^281.^298.^1^^^^~07/01/2011~ -~05681~^~307~^197.^2^^~1~^~A~^^^1^184.^210.^1^^^^~07/01/2011~ -~05681~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~319~^8.^0^^~4~^~BFSN~^~05672~^^^^^^^^^~07/01/2011~ -~05681~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~324~^12.^0^^~4~^~BFFN~^~05672~^^^^^^^^^~07/01/2011~ -~05681~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~417~^4.^0^^~4~^~BFPN~^~05672~^^^^^^^^^~07/01/2011~ -~05681~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05681~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~601~^126.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~301~^8.^5^0.^~1~^~A~^^^2^5.^9.^3^5.^9.^~2, 3~^~02/01/2013~ -~05682~^~304~^21.^5^0.^~1~^~A~^^^2^20.^21.^2^19.^22.^~2, 3~^~07/01/2011~ -~05682~^~305~^175.^5^2.^~1~^~A~^^^2^170.^186.^1^145.^203.^~2, 3~^~02/01/2013~ -~05682~^~306~^234.^5^1.^~1~^~A~^^^2^219.^257.^1^218.^248.^~2, 3~^~02/01/2013~ -~05682~^~307~^156.^5^7.^~1~^~A~^^^2^144.^183.^1^107.^204.^~2, 3~^~02/01/2013~ -~05682~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05682~^~319~^6.^0^^~4~^~BFSN~^~05672~^^^^^^^^^~07/01/2011~ -~05682~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05682~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~324~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~338~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05682~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05682~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05682~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~ -~05682~^~601~^87.^3^0.^~1~^~A~^^^2^83.^93.^1^78.^95.^~2, 3~^~02/01/2013~ -~05683~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~268~^688.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~301~^10.^5^0.^~1~^~A~^^^2^9.^12.^3^7.^12.^~2, 3~^~07/01/2011~ -~05683~^~304~^24.^5^0.^~1~^~A~^^^2^23.^25.^3^22.^25.^~2, 3~^~07/01/2011~ -~05683~^~305~^202.^5^6.^~1~^~A~^^^2^187.^221.^2^170.^233.^~2, 3~^~02/01/2013~ -~05683~^~306~^268.^5^7.^~1~^~A~^^^2^228.^317.^2^242.^293.^~2, 3~^~02/01/2013~ -~05683~^~307~^177.^5^6.^~1~^~A~^^^2^154.^217.^2^137.^216.^~2, 3~^~02/01/2013~ -~05683~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05683~^~319~^8.^0^^~4~^~BFSN~^~05098~^^^^^^^^^~07/01/2011~ -~05683~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05683~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~338~^92.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05683~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05683~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05683~^~435~^4.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~ -~05683~^~601~^122.^3^3.^~1~^~A~^^^2^114.^128.^1^83.^159.^~2, 3~^~02/01/2013~ -~05684~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~268~^1688.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~306~^146.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~307~^139.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~318~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~319~^44.^0^^~4~^~BFSN~^~05673~^^^^^^^^^~07/01/2011~ -~05684~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~324~^3.^0^^~4~^~BFFN~^~05673~^^^^^^^^^~07/01/2011~ -~05684~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05684~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05684~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05684~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~ -~05684~^~601~^124.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05685~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~268~^1614.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05685~^~301~^7.^4^0.^~1~^~A~^^^2^6.^10.^2^5.^8.^~2, 3~^~02/01/2013~ -~05685~^~304~^7.^4^0.^~1~^~A~^^^2^7.^8.^2^6.^7.^~2, 3~^~02/01/2013~ -~05685~^~305~^88.^4^1.^~1~^~A~^^^2^85.^90.^2^83.^92.^~2, 3~^~02/01/2013~ -~05685~^~306~^101.^4^5.^~1~^~A~^^^2^75.^158.^2^78.^123.^~2, 3~^~02/01/2013~ -~05685~^~307~^139.^4^10.^~1~^~A~^^^2^118.^174.^2^92.^185.^~2, 3~^~02/01/2013~ -~05685~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~319~^56.^0^^~4~^~BFSN~^~05674~^^^^^^^^^~07/01/2011~ -~05685~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~324~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05685~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05685~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05685~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~ -~05685~^~601~^113.^4^2.^~1~^~A~^^^2^105.^122.^2^102.^123.^~2, 3~^~02/01/2013~ -~05686~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05686~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~268~^1763.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05686~^~301~^15.^4^1.^~1~^~A~^^^2^11.^18.^2^10.^19.^~2, 3~^~02/01/2013~ -~05686~^~304~^18.^4^0.^~1~^~A~^^^2^15.^22.^2^14.^21.^~2, 3~^~02/01/2013~ -~05686~^~305~^176.^4^7.^~1~^~A~^^^2^152.^188.^2^143.^207.^~2, 3~^~02/01/2013~ -~05686~^~306~^198.^4^7.^~1~^~A~^^^2^157.^259.^2^165.^229.^~2, 3~^~02/01/2013~ -~05686~^~307~^162.^4^7.^~1~^~A~^^^2^111.^197.^2^130.^192.^~2, 3~^~02/01/2013~ -~05686~^~318~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05686~^~319~^53.^0^^~4~^~NR~^~05675~^^^^^^^^^~07/01/2011~ -~05686~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05686~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~324~^6.^0^^~4~^~BFFN~^~05675~^^^^^^^^^~06/01/2014~ -~05686~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05686~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~ -~05686~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05686~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~ -~05686~^~601~^154.^4^5.^~1~^~A~^^^2^142.^166.^2^131.^176.^~2, 3~^~02/01/2013~ -~05687~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05687~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05687~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~305~^162.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~306~^218.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~307~^165.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05687~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05687~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05687~^~601~^133.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~208~^146.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~268~^612.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~305~^135.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~306~^179.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~307~^150.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05688~^~319~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05688~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~338~^87.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05688~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~208~^180.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~268~^754.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~307~^186.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05689~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05689~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~338~^88.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05689~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05690~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05690~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05690~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~306~^259.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~307~^185.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~318~^52.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~319~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~320~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05690~^~601~^125.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~208~^197.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~268~^826.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~306~^191.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~307~^151.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~318~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05691~^~319~^22.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05691~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~338~^59.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05691~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~208~^214.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~268~^896.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~307~^174.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05692~^~319~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05692~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~338~^74.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05692~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05693~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~05693~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~05693~^~301~^33.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~305~^212.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~306~^263.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~307~^563.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~318~^51.^1^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~05693~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~320~^15.^1^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~05693~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05693~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05693~^~601~^117.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05694~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05694~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05694~^~301~^15.^6^0.^~1~^~A~^^^1^14.^15.^5^14.^15.^~2, 3~^~08/01/2012~ -~05694~^~304~^21.^6^1.^~1~^~A~^^^1^16.^26.^5^17.^24.^~2, 3~^~08/01/2012~ -~05694~^~305~^191.^6^3.^~1~^~A~^^^1^180.^205.^5^181.^200.^~2, 3~^~08/01/2012~ -~05694~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~08/01/2012~ -~05694~^~307~^167.^6^20.^~1~^~A~^^^1^136.^268.^5^114.^219.^~2, 3~^~08/01/2012~ -~05694~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05694~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05694~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05694~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05694~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05694~^~601~^79.^11^2.^~1~^~A~^^^1^69.^100.^10^73.^83.^~2, 3~^~08/01/2012~ -~05695~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~301~^16.^6^1.^~1~^~A~^^^1^13.^21.^5^13.^19.^~2, 3~^~08/01/2012~ -~05695~^~304~^24.^6^1.^~1~^~A~^^^1^20.^30.^5^20.^27.^~2, 3~^~08/01/2012~ -~05695~^~305~^208.^6^4.^~1~^~A~^^^1^194.^226.^5^195.^220.^~2, 3~^~08/01/2012~ -~05695~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~08/01/2012~ -~05695~^~307~^201.^6^19.^~1~^~A~^^^1^164.^293.^5^151.^250.^~2, 3~^~08/01/2012~ -~05695~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05695~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05695~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05695~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05695~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05695~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05695~^~601~^105.^11^2.^~1~^~A~^^^1^86.^118.^10^98.^110.^~2, 3~^~08/01/2012~ -~05696~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05696~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05696~^~301~^14.^6^0.^~1~^~A~^^^1^12.^16.^5^12.^15.^~2, 3~^~08/01/2012~ -~05696~^~304~^25.^6^0.^~1~^~A~^^^1^22.^29.^5^22.^27.^~2, 3~^~08/01/2012~ -~05696~^~305~^236.^6^6.^~1~^~A~^^^1^217.^256.^5^218.^253.^~2, 3~^~08/01/2012~ -~05696~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~08/01/2012~ -~05696~^~307~^206.^6^25.^~1~^~A~^^^1^101.^277.^5^138.^272.^~2, 3~^~08/01/2012~ -~05696~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05696~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05696~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05696~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05696~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05696~^~601~^54.^11^1.^~1~^~A~^^^1^43.^60.^10^50.^57.^~2, 3~^~08/01/2012~ -~05697~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~08/01/2012~ -~05697~^~304~^30.^6^1.^~1~^~A~^^^1^27.^36.^5^26.^33.^~2, 3~^~08/01/2012~ -~05697~^~305~^255.^6^7.^~1~^~A~^^^1^223.^269.^5^236.^273.^~2, 3~^~08/01/2012~ -~05697~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~08/01/2012~ -~05697~^~307~^238.^6^24.^~1~^~A~^^^1^151.^295.^5^174.^301.^~2, 3~^~08/01/2012~ -~05697~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05697~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05697~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05697~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05697~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05697~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05697~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05697~^~601~^69.^11^2.^~1~^~A~^^^1^55.^82.^10^64.^74.^~2, 3~^~08/01/2012~ -~05698~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~268~^1595.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~301~^13.^4^0.^~1~^~A~^^^^12.^14.^^^^^~08/01/2012~ -~05698~^~304~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~08/01/2012~ -~05698~^~305~^99.^2^^~1~^~A~^^^1^94.^104.^1^^^^~08/01/2012~ -~05698~^~306~^107.^2^^~1~^~A~^^^1^107.^108.^1^^^^~08/01/2012~ -~05698~^~307~^138.^2^^~1~^~A~^^^1^130.^146.^1^^^^~08/01/2012~ -~05698~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~319~^85.^2^^~1~^~A~^^^1^84.^87.^1^^^^~08/01/2012~ -~05698~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~324~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05698~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05698~^~601~^94.^2^^~1~^~A~^^^1^84.^104.^1^^^^~08/01/2012~ -~05699~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~268~^1889.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~301~^25.^4^2.^~1~^~A~^^^^17.^29.^^^^^~08/01/2012~ -~05699~^~304~^28.^2^^~1~^~A~^^^1^26.^31.^1^^^^~08/01/2012~ -~05699~^~305~^244.^2^^~1~^~A~^^^1^231.^256.^1^^^^~08/01/2012~ -~05699~^~306~^263.^2^^~1~^~A~^^^1^215.^310.^1^^^^~08/01/2012~ -~05699~^~307~^234.^2^^~1~^~A~^^^1^228.^239.^1^^^^~08/01/2012~ -~05699~^~318~^262.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~319~^79.^2^^~1~^~A~^^^1^76.^81.^1^^^^~08/01/2012~ -~05699~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~324~^54.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05699~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05699~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05699~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05699~^~601~^144.^2^^~1~^~A~^^^1^116.^171.^1^^^^~08/01/2012~ -~05700~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05700~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~268~^707.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05700~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~305~^172.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~306~^202.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~307~^161.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~318~^93.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~319~^28.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~320~^28.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~324~^20.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05701~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~268~^835.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05701~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~306~^232.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~307~^206.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~318~^52.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~324~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05701~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05701~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05702~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05702~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~306~^220.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~307~^195.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~318~^64.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05702~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~208~^157.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~268~^656.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~304~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~305~^254.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~306~^250.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~307~^237.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05703~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05703~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05704~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~268~^442.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05704~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~306~^237.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~307~^194.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~318~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05705~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05705~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~305~^235.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~307~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~318~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05705~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05705~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05706~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05706~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~306~^211.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~307~^180.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~318~^78.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~319~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~320~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05707~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05707~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~305~^236.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~306~^242.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~307~^224.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~318~^43.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05707~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05707~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05708~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05708~^~301~^8.^3^2.^~1~^~A~^^^1^5.^13.^2^-2.^18.^~2, 3~^~01/01/2013~ -~05708~^~304~^25.^3^0.^~1~^~A~^^^1^23.^26.^2^21.^27.^~2, 3~^~01/01/2013~ -~05708~^~305~^181.^3^2.^~1~^~A~^^^1^176.^185.^2^170.^192.^~2, 3~^~01/01/2013~ -~05708~^~306~^237.^3^10.^~1~^~A~^^^1^219.^256.^2^190.^283.^~2, 3~^~01/01/2013~ -~05708~^~307~^124.^3^30.^~1~^~A~^^^1^65.^164.^2^-4.^253.^~2, 3~^~01/01/2013~ -~05708~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05708~^~319~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~01/01/2013~ -~05708~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05708~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05708~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05708~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05708~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05708~^~338~^4.^2^^~1~^~A~^^^1^2.^6.^1^^^^~01/01/2013~ -~05708~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05708~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05708~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05708~^~601~^60.^2^^~1~^~A~^^^1^53.^67.^1^^^^~01/01/2013~ -~05709~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~301~^15.^3^4.^~1~^~A~^^^1^10.^24.^2^-4.^33.^~2, 3~^~01/01/2013~ -~05709~^~304~^27.^3^0.^~1~^~A~^^^1^26.^27.^2^25.^27.^~2, 3~^~01/01/2013~ -~05709~^~305~^219.^3^13.^~1~^~A~^^^1^193.^240.^2^159.^278.^~2, 3~^~01/01/2013~ -~05709~^~306~^264.^3^7.^~1~^~A~^^^1^257.^279.^2^232.^295.^~2, 3~^~01/01/2013~ -~05709~^~307~^184.^3^39.^~1~^~A~^^^1^105.^229.^2^13.^354.^~2, 3~^~01/01/2013~ -~05709~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~319~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~01/01/2013~ -~05709~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05709~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05709~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05709~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05709~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05709~^~338~^5.^2^^~1~^~A~^^^1^3.^6.^1^^^^~01/01/2013~ -~05709~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05709~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05709~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~601~^74.^2^^~1~^~A~^^^1^70.^78.^1^^^^~01/01/2013~ -~05710~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~268~^478.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~301~^9.^3^1.^~1~^~A~^^^1^6.^11.^2^1.^15.^~2, 3~^~01/01/2013~ -~05710~^~304~^27.^3^0.^~1~^~A~^^^1^25.^28.^2^23.^29.^~2, 3~^~01/01/2013~ -~05710~^~305~^185.^3^5.^~1~^~A~^^^1^175.^194.^2^161.^209.^~2, 3~^~01/01/2013~ -~05710~^~306~^267.^3^7.^~1~^~A~^^^1^255.^279.^2^236.^297.^~2, 3~^~01/01/2013~ -~05710~^~307~^74.^3^6.^~1~^~A~^^^1^62.^83.^2^47.^99.^~2, 3~^~01/01/2013~ -~05710~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~319~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~01/01/2013~ -~05710~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05710~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05710~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05710~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05710~^~338~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~01/01/2013~ -~05710~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05710~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05710~^~601~^53.^2^^~1~^~A~^^^1^53.^53.^1^^^^~01/01/2013~ -~05711~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05711~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~268~^568.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05711~^~301~^14.^3^2.^~1~^~A~^^^1^10.^18.^2^3.^24.^~2, 3~^~01/01/2013~ -~05711~^~304~^28.^3^1.^~1~^~A~^^^1^26.^30.^2^23.^33.^~2, 3~^~01/01/2013~ -~05711~^~305~^253.^3^43.^~1~^~A~^^^1^204.^341.^2^63.^442.^~2, 3~^~01/01/2013~ -~05711~^~306~^297.^3^16.^~1~^~A~^^^1^265.^315.^2^227.^365.^~2, 3~^~01/01/2013~ -~05711~^~307~^114.^3^1.^~1~^~A~^^^1^111.^117.^2^106.^120.^~2, 3~^~01/01/2013~ -~05711~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05711~^~319~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~01/01/2013~ -~05711~^~320~^3.^2^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05711~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05711~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05711~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05711~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05711~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05711~^~338~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2013~ -~05711~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05711~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05711~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05711~^~601~^70.^2^^~1~^~A~^^^1^65.^75.^1^^^^~01/01/2013~ -~05712~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~268~^470.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~301~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^3.^7.^~2, 3~^~01/01/2013~ -~05712~^~304~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^18.^20.^~2, 3~^~01/01/2013~ -~05712~^~305~^147.^4^2.^~1~^~A~^^^1^142.^155.^3^138.^156.^~2, 3~^~01/01/2013~ -~05712~^~306~^222.^4^18.^~1~^~A~^^^1^187.^276.^3^162.^282.^~2, 3~^~01/01/2013~ -~05712~^~307~^69.^4^4.^~1~^~A~^^^1^59.^80.^3^55.^82.^~2, 3~^~01/01/2013~ -~05712~^~318~^17.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~319~^5.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~320~^5.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~324~^7.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05712~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05712~^~601~^66.^3^4.^~1~^~A~^^^1^62.^75.^2^48.^84.^~2, 3~^~01/01/2013~ -~05713~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~268~^713.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~301~^12.^4^1.^~1~^~A~^^^1^7.^14.^3^6.^16.^~2, 3~^~01/01/2013~ -~05713~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~01/01/2013~ -~05713~^~305~^180.^4^6.^~1~^~A~^^^1^161.^191.^3^159.^199.^~2, 3~^~01/01/2013~ -~05713~^~306~^207.^4^9.^~1~^~A~^^^1^186.^223.^3^177.^236.^~2, 3~^~01/01/2013~ -~05713~^~307~^103.^4^1.^~1~^~A~^^^1^99.^108.^3^97.^108.^~2, 3~^~01/01/2013~ -~05713~^~318~^25.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~ -~05713~^~319~^8.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~ -~05713~^~320~^8.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~ -~05713~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~324~^28.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05713~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05713~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05713~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05713~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05713~^~601~^97.^3^4.^~1~^~A~^^^1^91.^105.^2^78.^114.^~2, 3~^~01/01/2013~ -~05714~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~268~^1589.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~01/01/2013~ -~05714~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2013~ -~05714~^~305~^80.^2^^~1~^~A~^^^1^74.^87.^1^^^^~01/01/2013~ -~05714~^~306~^93.^2^^~1~^~A~^^^1^88.^97.^1^^^^~01/01/2013~ -~05714~^~307~^78.^2^^~1~^~A~^^^1^74.^81.^1^^^^~01/01/2013~ -~05714~^~318~^263.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~319~^79.^2^^~1~^~A~^^^1^62.^95.^1^^^^~01/01/2013~ -~05714~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05714~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05714~^~324~^30.^2^^~1~^~A~^^^1^29.^31.^1^^^^~01/01/2013~ -~05714~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~01/01/2013~ -~05714~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05714~^~338~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~01/01/2013~ -~05714~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05714~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05714~^~601~^111.^2^^~1~^~A~^^^1^109.^112.^1^^^^~01/01/2013~ -~05715~^~208~^414.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~268~^1730.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~301~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~01/01/2013~ -~05715~^~304~^24.^2^^~1~^~A~^^^1^21.^27.^1^^^^~01/01/2013~ -~05715~^~305~^230.^2^^~1~^~A~^^^1^193.^267.^1^^^^~01/01/2013~ -~05715~^~306~^225.^2^^~1~^~A~^^^1^225.^225.^^^^^~01/01/2013~ -~05715~^~307~^106.^2^^~1~^~A~^^^1^94.^117.^1^^^^~01/01/2013~ -~05715~^~318~^198.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~319~^59.^2^^~1~^~A~^^^1^53.^65.^1^^^^~01/01/2013~ -~05715~^~320~^59.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05715~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05715~^~324~^31.^2^^~1~^~A~^^^1^26.^35.^1^^^^~01/01/2013~ -~05715~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~01/01/2013~ -~05715~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~ -~05715~^~338~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2013~ -~05715~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05715~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05715~^~601~^139.^2^^~1~^~A~^^^1^121.^156.^1^^^^~01/01/2013~ -~05716~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~268~^493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~301~^10.^6^1.^~1~^~A~^^^1^7.^19.^5^4.^14.^~2, 3~^~01/01/2013~ -~05716~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~01/01/2013~ -~05716~^~305~^158.^6^6.^~1~^~A~^^^1^126.^169.^5^140.^175.^~2, 3~^~01/01/2013~ -~05716~^~306~^220.^6^12.^~1~^~A~^^^1^188.^267.^5^186.^252.^~2, 3~^~01/01/2013~ -~05716~^~307~^87.^6^3.^~1~^~A~^^^1^77.^104.^5^76.^96.^~2, 3~^~01/01/2013~ -~05716~^~318~^68.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05716~^~319~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05716~^~320~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05716~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05716~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05716~^~324~^17.^2^^~1~^~A~^^^1^13.^22.^1^^^^~01/01/2013~ -~05716~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05716~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05716~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05716~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05716~^~601~^79.^3^1.^~1~^~A~^^^1^77.^82.^2^72.^85.^~2, 3~^~01/01/2013~ -~05717~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~301~^4.^5^0.^~1~^~A~^^^1^2.^6.^4^1.^5.^~2, 3~^~01/01/2013~ -~05717~^~304~^22.^5^0.^~1~^~A~^^^1^20.^24.^4^20.^23.^~2, 3~^~01/01/2013~ -~05717~^~305~^177.^5^6.^~1~^~A~^^^1^154.^195.^4^158.^195.^~2, 3~^~01/01/2013~ -~05717~^~306~^269.^5^11.^~1~^~A~^^^1^242.^296.^4^237.^299.^~2, 3~^~01/01/2013~ -~05717~^~307~^75.^5^6.^~1~^~A~^^^1^53.^91.^4^56.^93.^~2, 3~^~01/01/2013~ -~05717~^~318~^63.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~319~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~320~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05717~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05717~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05717~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05717~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05717~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05717~^~601~^78.^3^4.^~1~^~A~^^^1^71.^85.^2^60.^95.^~2, 3~^~01/01/2013~ -~05718~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~ -~05718~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~ -~05718~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~ -~05718~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05718~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~ -~05718~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05718~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05718~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05718~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05718~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05718~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05718~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05718~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~ -~05719~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05719~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05719~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~ -~05719~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~ -~05719~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~ -~05719~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~ -~05719~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~ -~05719~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~05719~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05719~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05719~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05719~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05719~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~ -~05720~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~ -~05720~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~ -~05720~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~ -~05720~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05720~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~ -~05720~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05720~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05720~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05720~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05720~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05720~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05720~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~ -~05721~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~301~^14.^6^0.^~1~^~A~^^^^12.^16.^^^^^~01/01/2013~ -~05721~^~304~^25.^6^0.^~1~^~A~^^^^22.^29.^^^^^~01/01/2013~ -~05721~^~305~^236.^6^6.^~1~^~A~^^^^217.^256.^^^^^~01/01/2013~ -~05721~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~ -~05721~^~307~^206.^6^25.^~1~^~A~^^^^101.^277.^^^^^~01/01/2013~ -~05721~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05721~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05721~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05721~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05721~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05721~^~601~^54.^11^1.^~1~^~A~^^^^43.^60.^^^^^~01/01/2013~ -~05722~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05722~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05722~^~301~^4.^5^0.^~1~^~A~^^^1^2.^8.^4^1.^6.^~2, 3~^~01/01/2013~ -~05722~^~304~^23.^5^1.^~1~^~A~^^^1^21.^28.^4^19.^26.^~2, 3~^~01/01/2013~ -~05722~^~305~^200.^5^1.^~1~^~A~^^^1^195.^204.^4^195.^204.^~2, 3~^~01/01/2013~ -~05722~^~306~^296.^5^3.^~1~^~A~^^^1^286.^306.^4^286.^305.^~2, 3~^~01/01/2013~ -~05722~^~307~^104.^5^5.^~1~^~A~^^^1^87.^120.^4^88.^119.^~2, 3~^~01/01/2013~ -~05722~^~318~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~319~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~320~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05722~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05722~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05722~^~338~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05722~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05722~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05722~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05722~^~601~^116.^3^8.^~1~^~A~^^^1^101.^130.^2^80.^152.^~2, 3~^~01/01/2013~ -~05723~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05723~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05723~^~301~^17.^6^3.^~1~^~A~^^^1^8.^32.^5^8.^25.^~2, 3~^~01/01/2013~ -~05723~^~304~^24.^6^1.^~1~^~A~^^^1^20.^29.^5^20.^27.^~2, 3~^~01/01/2013~ -~05723~^~305~^193.^6^3.^~1~^~A~^^^1^178.^201.^5^183.^201.^~2, 3~^~01/01/2013~ -~05723~^~306~^257.^6^5.^~1~^~A~^^^1^238.^273.^5^242.^271.^~2, 3~^~01/01/2013~ -~05723~^~307~^112.^6^3.^~1~^~A~^^^1^100.^121.^5^104.^120.^~2, 3~^~01/01/2013~ -~05723~^~318~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~319~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~320~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05723~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05723~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05723~^~338~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05723~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05723~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05723~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05723~^~601~^118.^3^7.^~1~^~A~^^^1^107.^131.^2^87.^148.^~2, 3~^~01/01/2013~ -~05724~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05724~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05724~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~ -~05724~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~ -~05724~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~ -~05724~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~ -~05724~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~ -~05724~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05724~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05724~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05724~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05724~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05724~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~ -~05725~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~301~^16.^6^1.^~1~^~A~^^^^13.^21.^^^^^~01/01/2013~ -~05725~^~304~^24.^6^1.^~1~^~A~^^^^20.^30.^^^^^~01/01/2013~ -~05725~^~305~^208.^6^4.^~1~^~A~^^^^194.^226.^^^^^~01/01/2013~ -~05725~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~ -~05725~^~307~^201.^6^19.^~1~^~A~^^^^164.^293.^^^^^~01/01/2013~ -~05725~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05725~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05725~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05725~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05725~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~05725~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~05725~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05725~^~601~^105.^11^2.^~1~^~A~^^^^86.^118.^^^^^~01/01/2013~ -~05726~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05726~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05726~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~ -~05726~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~ -~05726~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~ -~05726~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~ -~05726~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~ -~05726~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05726~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05726~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05726~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05726~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~ -~05727~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05727~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~268~^603.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05727~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~305~^171.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~306~^221.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~307~^126.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~318~^50.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~324~^13.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~338~^3.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05727~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05727~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05728~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~301~^16.^6^1.^~1~^~A~^^^^13.^21.^^^^^~01/01/2013~ -~05728~^~304~^24.^6^1.^~1~^~A~^^^^20.^30.^^^^^~01/01/2013~ -~05728~^~305~^208.^6^4.^~1~^~A~^^^^194.^226.^^^^^~01/01/2013~ -~05728~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~ -~05728~^~307~^201.^6^19.^~1~^~A~^^^^164.^293.^^^^^~01/01/2013~ -~05728~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05728~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05728~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05728~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05728~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05728~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05728~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05728~^~601~^105.^11^2.^~1~^~A~^^^^86.^118.^^^^^~01/01/2013~ -~05729~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~301~^14.^6^0.^~1~^~A~^^^^12.^16.^^^^^~01/01/2013~ -~05729~^~304~^25.^6^0.^~1~^~A~^^^^22.^29.^^^^^~01/01/2013~ -~05729~^~305~^236.^6^6.^~1~^~A~^^^^217.^256.^^^^^~01/01/2013~ -~05729~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~ -~05729~^~307~^206.^6^25.^~1~^~A~^^^^101.^277.^^^^^~01/01/2013~ -~05729~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05729~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05729~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05729~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05729~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05729~^~601~^54.^11^1.^~1~^~A~^^^^43.^60.^^^^^~01/01/2013~ -~05730~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~ -~05730~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~ -~05730~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~ -~05730~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05730~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~ -~05730~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05730~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05730~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05730~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05730~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05730~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05730~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05730~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~ -~05732~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05732~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~268~^647.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05732~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~318~^54.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~324~^12.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~338~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05732~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05733~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05733~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~305~^251.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~306~^292.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~307~^114.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05733~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05733~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~324~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~338~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05733~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05734~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~268~^846.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05734~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~305~^139.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~306~^192.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~318~^100.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~319~^30.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~320~^30.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~324~^19.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05734~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05735~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~268~^983.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05735~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~306~^215.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~307~^106.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~318~^80.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~319~^24.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~320~^24.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~324~^34.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05735~^~601~^115.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05736~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05736~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~305~^151.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~306~^208.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~318~^86.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~319~^26.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~320~^26.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~324~^18.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~338~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~05736~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05736~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05737~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05737~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~305~^196.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~307~^112.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~318~^38.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~324~^13.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~338~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05737~^~601~^120.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05738~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05738~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05738~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~ -~05738~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~01/01/2013~ -~05738~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~ -~05738~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~ -~05738~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~ -~05738~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05738~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05738~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05738~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05738~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05738~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~ -~05739~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~ -~05739~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~ -~05739~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~ -~05739~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~ -~05739~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~ -~05739~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05739~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05739~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05739~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05739~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05739~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05739~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05739~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~ -~05740~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05740~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05740~^~301~^11.^4^0.^~1~^~A~^^^^9.^13.^^^^^~01/01/2013~ -~05740~^~304~^25.^4^0.^~1~^~A~^^^^23.^26.^^^^^~01/01/2013~ -~05740~^~305~^176.^4^15.^~1~^~A~^^^^133.^204.^^^^^~01/01/2013~ -~05740~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~ -~05740~^~307~^124.^4^10.^~1~^~A~^^^^101.^151.^^^^^~01/01/2013~ -~05740~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05740~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05740~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05740~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~601~^79.^4^8.^~1~^~A~^^^^54.^93.^^^^^~01/01/2013~ -~05741~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~268~^691.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~301~^17.^4^1.^~1~^~A~^^^^14.^19.^^^^^~01/01/2013~ -~05741~^~304~^27.^4^0.^~1~^~A~^^^^25.^27.^^^^^~01/01/2013~ -~05741~^~305~^212.^4^9.^~1~^~A~^^^^198.^240.^^^^^~01/01/2013~ -~05741~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~ -~05741~^~307~^104.^4^13.^~1~^~A~^^^^65.^123.^^^^^~01/01/2013~ -~05741~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05741~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05741~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~05741~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05741~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05741~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05741~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05741~^~601~^128.^4^12.^~1~^~A~^^^^111.^164.^^^^^~01/01/2013~ -~05742~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05742~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05742~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~305~^161.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~318~^97.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~319~^29.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05742~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~338~^7.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05743~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05743~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~305~^187.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~306~^273.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~318~^46.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~319~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~320~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~324~^13.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~338~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05743~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05743~^~601~^116.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05744~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~268~^864.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05744~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~305~^159.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~306~^185.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~307~^157.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~318~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05744~^~319~^38.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05744~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~324~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05745~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~268~^860.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05745~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~305~^252.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~306~^252.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~307~^237.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~318~^72.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~319~^22.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~320~^22.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~324~^21.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05745~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05745~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05746~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~301~^6.^6^0.^~1~^~A~^^^1^5.^7.^5^4.^6.^~2, 3~^~04/01/2013~ -~05746~^~304~^32.^6^0.^~1~^~A~^^^1^31.^35.^5^30.^33.^~2, 3~^~04/01/2013~ -~05746~^~305~^241.^6^5.^~1~^~A~^^^1^231.^269.^5^226.^255.^~2, 3~^~04/01/2013~ -~05746~^~306~^343.^6^13.^~1~^~A~^^^1^316.^410.^5^307.^378.^~2, 3~^~04/01/2013~ -~05746~^~307~^47.^6^2.^~1~^~A~^^^1^40.^55.^5^40.^53.^~2, 3~^~04/01/2013~ -~05746~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05746~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05746~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~601~^116.^3^3.^~1~^~A~^^^1^111.^123.^2^99.^131.^~2, 3~^~04/01/2013~ -~05747~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~301~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^5.^5.^~2, 3~^~04/01/2013~ -~05747~^~304~^34.^6^1.^~1~^~A~^^^1^31.^36.^5^31.^37.^~2, 3~^~04/01/2013~ -~05747~^~305~^258.^6^7.^~1~^~A~^^^1^231.^271.^5^239.^277.^~2, 3~^~04/01/2013~ -~05747~^~306~^391.^6^16.^~1~^~A~^^^1^315.^424.^5^348.^433.^~2, 3~^~04/01/2013~ -~05747~^~307~^52.^6^2.^~1~^~A~^^^1^42.^58.^5^45.^57.^~2, 3~^~04/01/2013~ -~05747~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~05747~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~08/01/2015~ -~05747~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~05747~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05747~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~601~^104.^3^1.^~1~^~A~^^^1^100.^106.^2^95.^111.^~2, 3~^~04/01/2013~ -~05748~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~301~^5.^6^0.^~1~^~A~^^^1^5.^7.^5^4.^6.^~2, 3~^~04/01/2013~ -~05748~^~304~^28.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^29.^~2, 3~^~04/01/2013~ -~05748~^~305~^217.^6^7.^~1~^~A~^^^1^194.^243.^5^197.^237.^~2, 3~^~04/01/2013~ -~05748~^~306~^313.^6^25.^~1~^~A~^^^1^248.^387.^5^247.^378.^~2, 3~^~04/01/2013~ -~05748~^~307~^172.^6^17.^~1~^~A~^^^1^123.^222.^5^126.^216.^~2, 3~^~04/01/2013~ -~05748~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~319~^9.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05748~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05748~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~601~^99.^3^2.^~1~^~A~^^^1^95.^103.^2^89.^108.^~2, 3~^~04/01/2013~ -~05749~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05749~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05749~^~301~^6.^6^0.^~1~^~A~^^^1^5.^8.^5^5.^7.^~2, 3~^~04/01/2013~ -~05749~^~304~^31.^6^0.^~1~^~A~^^^1^30.^32.^5^30.^32.^~2, 3~^~04/01/2013~ -~05749~^~305~^249.^6^7.^~1~^~A~^^^1^232.^275.^5^229.^268.^~2, 3~^~04/01/2013~ -~05749~^~306~^420.^6^39.^~1~^~A~^^^1^318.^552.^5^317.^523.^~2, 3~^~04/01/2013~ -~05749~^~307~^215.^6^19.^~1~^~A~^^^1^149.^281.^5^163.^265.^~2, 3~^~04/01/2013~ -~05749~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05749~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05749~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05749~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05749~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~601~^106.^3^4.^~1~^~A~^^^1^100.^114.^2^88.^123.^~2, 3~^~04/01/2013~ -~06001~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06001~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~268~^289.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06001~^~301~^23.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~304~^3.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~305~^31.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~306~^138.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~307~^669.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06001~^~318~^441.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~320~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~321~^256.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06001~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~337~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~338~^326.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~417~^19.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06001~^~432~^19.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06001~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06001~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06002~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06002~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06002~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06002~^~301~^35.^10^2.^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~304~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~305~^75.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~306~^250.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~307~^970.^3^40.^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~318~^445.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06002~^~320~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~321~^219.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~322~^80.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~334~^12.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~337~^463.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~417~^66.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~432~^66.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06002~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06004~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~268~^540.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06004~^~301~^60.^13^2.^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~304~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~305~^98.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~306~^375.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~ -~06004~^~307~^672.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~ -~06004~^~318~^662.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~320~^34.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~321~^336.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~322~^118.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06004~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~337~^5946.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06004~^~417~^24.^3^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06004~^~432~^24.^3^1.^~1~^^^^^^^^^^^~03/01/2003~ -~06004~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06004~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06006~^~268~^594.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~06006~^~301~^66.^10^3.^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~304~^37.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~305~^126.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~306~^363.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~307~^831.^5^8.^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~318~^662.^10^47.^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06006~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06006~^~417~^24.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06006~^~432~^24.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06006~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06006~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06007~^~268~^397.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~06007~^~301~^32.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~304~^19.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~305~^59.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~306~^175.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~307~^400.^10^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~318~^1626.^10^168.^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06007~^~320~^81.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06007~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06007~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06007~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~208~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~268~^29.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06008~^~301~^6.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~305~^13.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~306~^54.^1^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~307~^372.^3^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06008~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06008~^~432~^2.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06008~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~06008~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~268~^280.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06009~^~301~^12.^28^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~304~^5.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~305~^37.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~306~^79.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~307~^653.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~06009~^~318~^202.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~320~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~321~^120.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06009~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~337~^8507.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06009~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06009~^~432~^4.^3^0.^~1~^^^^^^^^^^^ -~06009~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06009~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06010~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~268~^301.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06010~^~301~^32.^14^2.^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~304~^5.^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~305~^30.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~306~^98.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06010~^~318~^282.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~319~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~320~^22.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~321~^151.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06010~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~338~^155.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~417~^2.^4^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06010~^~432~^2.^4^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06010~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06010~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~301~^36.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~304~^12.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~305~^33.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~306~^37.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~307~^692.^0^^~12~^~MA~^^^^^^^^^^~03/01/2013~ -~06011~^~318~^235.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~319~^69.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~321~^2.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06011~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06011~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06011~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06011~^~601~^3.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06013~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06013~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~268~^130.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06013~^~301~^6.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~304~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~305~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~306~^170.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~307~^621.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06013~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~06013~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~06013~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06013~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06013~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06013~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06013~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~268~^297.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06015~^~301~^10.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~304~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06015~^~305~^45.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~306~^70.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~307~^354.^10^6.^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~318~^511.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06015~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06015~^~321~^249.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~322~^104.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06015~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~337~^73.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~338~^56.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06015~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06015~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~06015~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06016~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~268~^377.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06016~^~301~^14.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~304~^4.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~305~^31.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~306~^49.^6^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~307~^702.^1^^~8~^~LC~^^^1^^^^^^^~07/01/2010~ -~06016~^~318~^182.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06016~^~319~^41.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06016~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06016~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06016~^~432~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06016~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06016~^~601~^8.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06017~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06017~^~268~^188.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06017~^~301~^19.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~304~^3.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~305~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~306~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~307~^693.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~06017~^~318~^98.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06017~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06017~^~321~^57.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~337~^1416.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06017~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06017~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06017~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06018~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06018~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06018~^~301~^11.^10^0.^~1~^~A~^^^1^9.^12.^9^10.^11.^~4~^~02/01/2011~ -~06018~^~304~^7.^10^0.^~1~^~A~^^^1^6.^8.^9^6.^7.^~4~^~02/01/2011~ -~06018~^~305~^36.^10^1.^~1~^~A~^^^1^28.^40.^9^33.^38.^~4~^~02/01/2011~ -~06018~^~306~^117.^10^11.^~1~^~A~^^^1^73.^159.^9^91.^141.^~4~^~02/01/2011~ -~06018~^~307~^306.^10^8.^~1~^~A~^^^1^272.^338.^9^288.^324.^~4~^~02/01/2011~ -~06018~^~318~^1224.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06018~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06018~^~321~^593.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~322~^266.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06018~^~334~^14.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~338~^58.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~431~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~06018~^~601~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~301~^6.^12^0.^~1~^~A~^^^1^5.^13.^6^5.^6.^~2, 3~^~03/01/2014~ -~06019~^~304~^8.^12^0.^~1~^~A~^^^1^6.^9.^6^7.^8.^~2, 3~^~04/01/2004~ -~06019~^~305~^38.^12^0.^~1~^~A~^^^1^31.^40.^8^36.^38.^~2, 3~^~03/01/2014~ -~06019~^~306~^48.^12^3.^~1~^~A~^^^1^31.^215.^5^39.^56.^~2, 3~^~03/01/2014~ -~06019~^~307~^681.^12^6.^~1~^~A~^^^1^491.^764.^10^666.^695.^~2, 3~^~03/01/2014~ -~06019~^~318~^410.^13^65.^~8~^~LC~^^^1^3.^794.^12^267.^553.^~4~^~03/01/2014~ -~06019~^~319~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06019~^~321~^243.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~431~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~601~^8.^13^0.^~8~^~LC~^^^1^4.^12.^12^6.^10.^~4~^~03/01/2014~ -~06022~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06022~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~306~^45.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~307~^370.^10^7.^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~318~^2418.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06022~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~320~^122.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06022~^~321~^1183.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~322~^529.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06022~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~337~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~338~^96.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06022~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06022~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~208~^68.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~268~^285.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~304~^10.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~305~^42.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~306~^34.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~307~^645.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~318~^498.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06023~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06023~^~321~^257.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~322~^84.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06023~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~417~^1.^13^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06023~^~432~^1.^13^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06023~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06023~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06024~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~301~^14.^10^1.^~1~^~A~^^^1^9.^18.^9^11.^16.^~2, 3~^~04/01/2013~ -~06024~^~304~^8.^10^0.^~1~^~A~^^^1^6.^9.^9^7.^8.^~2, 3~^~04/01/2013~ -~06024~^~305~^35.^10^1.^~1~^~A~^^^1^28.^42.^9^31.^39.^~2, 3~^~04/01/2013~ -~06024~^~306~^133.^10^11.^~1~^~A~^^^1^98.^191.^9^108.^158.^~2, 3~^~04/01/2013~ -~06024~^~307~^229.^10^10.^~1~^~A~^^^1^170.^263.^9^204.^254.^~2, 3~^~04/01/2013~ -~06024~^~318~^1044.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~321~^512.^7^32.^~1~^~A~^^^1^404.^672.^6^431.^592.^~2, 3~^~04/01/2013~ -~06024~^~322~^224.^7^18.^~1~^~A~^^^1^156.^293.^6^179.^268.^~2, 3~^~04/01/2013~ -~06024~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~337~^70.^7^32.^~1~^~A~^^^1^0.^171.^6^-10.^150.^~1, 2, 3~^~04/01/2013~ -~06024~^~338~^134.^7^13.^~1~^~A~^^^1^89.^185.^6^101.^165.^~2, 3~^~04/01/2013~ -~06024~^~417~^13.^4^1.^~1~^~A~^^^1^10.^16.^3^8.^17.^~2, 3~^~04/01/2013~ -~06024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06024~^~432~^13.^4^1.^~1~^~A~^^^1^10.^16.^3^8.^17.^^~04/01/2013~ -~06024~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~601~^3.^7^0.^~1~^~A~^^^1^1.^4.^6^1.^3.^~2, 3~^~04/01/2013~ -~06025~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06025~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~268~^255.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06025~^~301~^14.^11^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~304~^5.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~305~^33.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~306~^126.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~307~^706.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06025~^~318~^2136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06025~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~320~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06025~^~321~^1042.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~322~^466.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06025~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~337~^328.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~338~^73.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06025~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06025~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06025~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~268~^489.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~301~^33.^14^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~304~^19.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~305~^113.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~306~^400.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~307~^788.^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~318~^1149.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06026~^~320~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~321~^603.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~322~^27.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~334~^147.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~337~^2584.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~338~^178.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~601~^10.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06027~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06027~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~268~^234.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06027~^~301~^28.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~304~^8.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06027~^~305~^35.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~306~^160.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~307~^417.^10^14.^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~318~^1340.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06027~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06027~^~321~^662.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~322~^270.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06027~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~337~^5112.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~417~^4.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06027~^~432~^4.^3^0.^~1~^^^^^^^^^^^~03/01/2009~ -~06027~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06027~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06028~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06028~^~301~^19.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~304~^8.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~305~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~306~^150.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~307~^698.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06028~^~318~^762.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06028~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06028~^~321~^399.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~322~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~334~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~337~^6426.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~338~^27.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~417~^8.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06028~^~432~^8.^3^0.^~1~^^^^^^^^^^^~02/01/2003~ -~06028~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06028~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06030~^~208~^72.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06030~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06030~^~268~^303.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~301~^16.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~304~^13.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~305~^260.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~306~^221.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06030~^~318~^58.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~320~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06030~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06030~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06032~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06032~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06032~^~301~^7.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~304~^4.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~305~^26.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~306~^125.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~307~^694.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06032~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2006~ -~06032~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06032~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06032~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06037~^~268~^234.^0^^~4~^^^^^^^^^^^ -~06037~^~301~^17.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06037~^~305~^74.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~306~^144.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~307~^532.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~318~^145.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06037~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06037~^~417~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06037~^~432~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06037~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06039~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06039~^~301~^25.^11^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~304~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~305~^46.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~306~^255.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~307~^288.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06039~^~318~^1783.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06039~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~320~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06039~^~321~^885.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~322~^370.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06039~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~337~^5963.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~417~^22.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06039~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06039~^~432~^13.^0^^~4~^^^^^^^^^^^ -~06039~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06039~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06040~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~268~^285.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06040~^~301~^28.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~304~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~305~^46.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~306~^255.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06040~^~318~^1708.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06040~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06040~^~321~^920.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06040~^~322~^210.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06040~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06040~^~337~^1480.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06040~^~338~^150.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06040~^~417~^29.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06040~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06040~^~432~^13.^3^0.^~1~^^^^^^^^^^^ -~06040~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06040~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~208~^61.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06042~^~301~^10.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~305~^50.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~306~^76.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~307~^573.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~06042~^~318~^158.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06042~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06042~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06042~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06042~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06043~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06043~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06043~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~301~^12.^12^1.^~1~^~A~^^^1^8.^18.^11^9.^13.^~2, 3~^~04/01/2004~ -~06043~^~304~^3.^12^0.^~1~^~A~^^^1^3.^5.^11^2.^3.^~2, 3~^~07/01/2012~ -~06043~^~305~^24.^12^1.^~1~^~A~^^^1^17.^33.^11^20.^27.^~2, 3~^~07/01/2012~ -~06043~^~306~^64.^12^1.^~1~^~A~^^^1^56.^72.^11^60.^66.^~2, 3~^~07/01/2012~ -~06043~^~307~^691.^12^17.^~1~^~A~^^^1^553.^790.^11^653.^728.^~2, 3~^~07/01/2012~ -~06043~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06043~^~319~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~07/01/2012~ -~06043~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06043~^~321~^0.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~07/01/2012~ -~06043~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~ -~06043~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~ -~06043~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~07/01/2012~ -~06043~^~338~^4.^2^^~1~^~A~^^^1^1.^6.^1^^^^~07/01/2012~ -~06043~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06043~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~06043~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06043~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~06044~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~268~^285.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06044~^~301~^8.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~304~^7.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~305~^29.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~306~^126.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~307~^773.^5^23.^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~318~^194.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~320~^17.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~321~^100.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06044~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~337~^6632.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~417~^7.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06044~^~432~^7.^3^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06044~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06044~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~268~^192.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06045~^~301~^22.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~304~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~305~^9.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~306~^56.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~307~^516.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06045~^~318~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06045~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~417~^12.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06045~^~432~^12.^3^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06045~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06045~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~208~^88.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~268~^368.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06046~^~301~^27.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~304~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~306~^98.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~307~^637.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~06046~^~318~^113.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~319~^27.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~320~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06046~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06046~^~432~^6.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06046~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06046~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06048~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06048~^~301~^18.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~304~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~305~^39.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~306~^40.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~307~^722.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06048~^~318~^58.^8^6.^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06048~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06048~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06048~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06048~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06048~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06049~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~268~^523.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06049~^~301~^21.^11^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~304~^30.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~305~^95.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~306~^145.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~307~^680.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~06049~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06049~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06049~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06049~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~417~^1.^4^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06049~^~432~^1.^4^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06049~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06049~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06050~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~268~^322.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06050~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~304~^16.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~305~^74.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~306~^127.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~307~^301.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06050~^~318~^2030.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06050~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~320~^102.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~321~^995.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06050~^~322~^445.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06050~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~338~^78.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06050~^~432~^2.^3^0.^~1~^^^^^^^^^^^~03/01/2003~ -~06050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06050~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06051~^~268~^590.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06051~^~301~^16.^14^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~304~^36.^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~305~^159.^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~306~^297.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~307~^630.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~06051~^~318~^331.^15^23.^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06051~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06051~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06051~^~432~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06051~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~268~^308.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06053~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~305~^41.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~306~^165.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~307~^604.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~318~^68.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~319~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~320~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06053~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06053~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~ -~06053~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06053~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06056~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06056~^~268~^301.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06056~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~305~^26.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~306~^47.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~307~^685.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~06056~^~318~^126.^10^9.^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~319~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06056~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06056~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06056~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2000~ -~06056~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06056~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06061~^~268~^469.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06061~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~304~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~305~^45.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~306~^176.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~307~^731.^5^53.^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~318~^425.^10^18.^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06061~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06061~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06061~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06061~^~432~^6.^0^^~4~^^^^^^^^^^^ -~06061~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06061~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06062~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~301~^6.^6^0.^~1~^~A~^^^1^5.^6.^5^5.^6.^~2, 3~^~03/01/2014~ -~06062~^~304~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^8.^~2, 3~^~03/01/2014~ -~06062~^~305~^38.^6^0.^~1~^~A~^^^1^37.^39.^5^37.^38.^~2, 3~^~03/01/2014~ -~06062~^~306~^44.^6^0.^~1~^~A~^^^1^42.^46.^5^42.^45.^~2, 3~^~03/01/2014~ -~06062~^~307~^683.^6^5.^~1~^~A~^^^1^671.^705.^5^669.^696.^~2, 3~^~03/01/2014~ -~06062~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06063~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06063~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~268~^389.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06063~^~301~^18.^11^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~305~^26.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~306~^257.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~307~^635.^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~318~^421.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~320~^23.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~321~^248.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06063~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~337~^17183.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06063~^~432~^11.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06063~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06063~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06064~^~268~^238.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06064~^~301~^21.^10^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06064~^~305~^44.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~306~^153.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~307~^391.^10^13.^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~318~^3032.^10^143.^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06064~^~320~^152.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06064~^~417~^5.^3^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06064~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06064~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06067~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06067~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06067~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06067~^~301~^18.^14^0.^~1~^~A~^^^1^16.^23.^7^17.^19.^~2, 3~^~02/01/2013~ -~06067~^~304~^10.^14^0.^~1~^~A~^^^1^9.^11.^8^10.^10.^~2, 3~^~02/01/2013~ -~06067~^~305~^29.^14^0.^~1~^~A~^^^1^20.^32.^8^27.^29.^~2, 3~^~02/01/2013~ -~06067~^~306~^180.^14^3.^~1~^~A~^^^1^120.^246.^10^172.^188.^~2, 3~^~02/01/2013~ -~06067~^~307~^267.^14^2.^~1~^~A~^^^1^248.^341.^10^261.^272.^~2, 3~^~02/01/2013~ -~06067~^~318~^1049.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06067~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06067~^~320~^52.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06067~^~321~^512.^6^26.^~1~^~A~^^^1^255.^727.^4^435.^587.^~2, 3~^~02/01/2013~ -~06067~^~322~^236.^6^22.^~1~^~A~^^^1^83.^362.^3^169.^302.^~2, 3~^~02/01/2013~ -~06067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06067~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~337~^580.^6^15.^~1~^~A~^^^1^365.^718.^3^524.^636.^~2, 3~^~02/01/2013~ -~06067~^~338~^132.^6^2.^~1~^~A~^^^1^61.^191.^4^125.^139.^~2, 3~^~02/01/2013~ -~06067~^~417~^7.^3^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06067~^~432~^7.^3^1.^~1~^^^^^^^^^^^~11/01/2006~ -~06067~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06067~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06068~^~268~^247.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06068~^~301~^17.^21^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~304~^6.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~305~^28.^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~306~^171.^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~307~^516.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06068~^~318~^2842.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06068~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06068~^~320~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06068~^~321~^1500.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06068~^~322~^410.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06068~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06068~^~337~^1930.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06068~^~338~^160.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06068~^~417~^9.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06068~^~432~^9.^3^0.^~1~^^^^^^^^^^^~04/01/2003~ -~06068~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06068~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~268~^277.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06070~^~301~^13.^30^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06070~^~305~^50.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~306~^140.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~307~^338.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06070~^~318~^1088.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06070~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~320~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~321~^536.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~322~^234.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06070~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~337~^1325.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~417~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06070~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06070~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06071~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06071~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06071~^~268~^264.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06071~^~301~^13.^25^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~304~^5.^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~305~^32.^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~306~^138.^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~307~^706.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06071~^~318~^3104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06071~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06071~^~320~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06071~^~321~^1618.^3^68.^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06071~^~322~^489.^3^53.^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06071~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06071~^~337~^364.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06071~^~338~^92.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06071~^~417~^8.^3^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06071~^~432~^8.^3^0.^~1~^^^^^^^^^^^~04/01/2003~ -~06071~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06071~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06072~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~268~^276.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06072~^~301~^14.^20^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~304~^5.^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~305~^32.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~306~^157.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~307~^515.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06072~^~318~^1707.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~320~^85.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~321~^831.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~322~^387.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06072~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~337~^29.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~338~^35.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06072~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06072~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06072~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~ -~06075~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~ -~06075~^~301~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~304~^51.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~305~^320.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~306~^446.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~307~^26000.^1^^~8~^~LC~^^^^^^^^^^~09/01/2011~ -~06075~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06075~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06075~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06075~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~417~^32.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06075~^~432~^32.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~06075~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06075~^~601~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06076~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~268~^711.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06076~^~301~^60.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~304~^50.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~305~^225.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~306~^403.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~307~^24000.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~06076~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06076~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06076~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~06076~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~06080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~06080~^~268~^1117.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06080~^~301~^187.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~304~^56.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~305~^166.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~306~^309.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~307~^23875.^4^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06080~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06080~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06080~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06080~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~06080~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06081~^~268~^828.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06081~^~301~^190.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~304~^56.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~305~^191.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~306~^374.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~307~^24000.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06081~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06081~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~06081~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06094~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~06094~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~268~^1227.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~06094~^~301~^143.^4^20.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~304~^60.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~305~^211.^4^5.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~306~^721.^4^11.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~307~^8031.^4^510.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~318~^15.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06094~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~338~^27.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06094~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~06094~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06094~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06101~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06101~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~268~^1866.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06101~^~301~^134.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~304~^48.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~305~^228.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~306~^408.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~307~^3857.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~06101~^~318~^11996.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06101~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~320~^600.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06101~^~321~^5620.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~322~^2820.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06101~^~334~^334.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~337~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~338~^920.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~417~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06101~^~432~^30.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06101~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06101~^~601~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06112~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06112~^~301~^25.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~304~^61.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~305~^154.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~306~^225.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~307~^3833.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06112~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~06112~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06114~^~268~^67.^0^^~4~^^^^^^^^^^^ -~06114~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~306~^81.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~307~^478.^0^^~8~^~LC~^^^^^^^^^^~09/01/2012~ -~06114~^~318~^0.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06114~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06114~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06114~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06115~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06115~^~268~^1310.^0^^~4~^^^^^^^^^^^~08/01/2006~ -~06115~^~301~^140.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~304~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~305~^153.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~306~^279.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~307~^11588.^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~318~^10.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06115~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~06115~^~417~^81.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06115~^~432~^81.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2006~ -~06115~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~06115~^~601~^4.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06116~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06116~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06116~^~301~^6.^5^1.^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~305~^30.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~306~^81.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~307~^633.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~06116~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06116~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06116~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06116~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~417~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06116~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~06116~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06116~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06118~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06118~^~268~^1536.^0^^~4~^^^^^^^^^^^ -~06118~^~301~^132.^10^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~305~^203.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~307~^4843.^22^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~318~^27.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06118~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06118~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06118~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06118~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06118~^~432~^14.^0^^~1~^^^^^^^^^^^ -~06118~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06118~^~601~^3.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06119~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~301~^10.^12^0.^~1~^~A~^^^1^9.^15.^5^9.^10.^~2, 3~^~02/01/2015~ -~06119~^~304~^3.^12^0.^~1~^~A~^^^1^3.^4.^10^3.^3.^~2, 3~^~02/01/2015~ -~06119~^~305~^20.^12^0.^~1~^~A~^^^1^13.^23.^10^19.^20.^~2, 3~^~02/01/2015~ -~06119~^~306~^42.^12^1.^~1~^~A~^^^1^30.^63.^10^38.^44.^~2, 3~^~02/01/2015~ -~06119~^~307~^389.^12^2.^~1~^~A~^^^1^360.^438.^8^383.^394.^~2, 3~^~02/01/2015~ -~06119~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~06119~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~06119~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06119~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06119~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/2015~ -~06119~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~06119~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2015~ -~06119~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~601~^5.^6^0.^~1~^~A~^^^1^4.^7.^2^3.^5.^~2, 3~^~02/01/2015~ -~06120~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06120~^~268~^1594.^0^^~4~^^^^^^^^^^^ -~06120~^~301~^146.^9^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~304~^40.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~305~^249.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~306~^404.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~307~^4152.^20^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~318~^308.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06120~^~319~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06120~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06120~^~417~^125.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06120~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06120~^~432~^109.^0^^~4~^^^^^^^^^^^ -~06120~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06120~^~601~^19.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06121~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06121~^~268~^209.^0^^~4~^^^^^^^^^^^ -~06121~^~301~^7.^7^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06121~^~305~^15.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~306~^106.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~307~^570.^6^8.^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~318~^0.^7^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06121~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06121~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06121~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06121~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06121~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06122~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~268~^1372.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06122~^~301~^230.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~304~^34.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~307~^6580.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06122~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06122~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06122~^~432~^14.^0^^~4~^^^^^^^^^^^ -~06122~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06122~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06123~^~268~^1347.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06123~^~301~^280.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~304~^34.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~307~^4186.^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06123~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06123~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06123~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06123~^~432~^14.^0^^~4~^^^^^^^^^^^ -~06123~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06123~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06124~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06124~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~268~^1536.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06124~^~301~^139.^3^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~304~^34.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~305~^188.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~306~^235.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~307~^5356.^3^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~318~^117.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~319~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~320~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06124~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~03/01/2003~ -~06124~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06124~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~06124~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06124~^~601~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06125~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06125~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06125~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~305~^29.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~306~^109.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~307~^577.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06125~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06125~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06125~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06125~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06125~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06125~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06126~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06126~^~268~^1536.^0^^~4~^^^^^^^^^^^ -~06126~^~301~^146.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~304~^44.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~305~^254.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~306~^428.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~307~^4392.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~318~^35.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06126~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06126~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06126~^~417~^82.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06126~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06126~^~432~^66.^0^^~4~^^^^^^^^^^^ -~06126~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06126~^~601~^14.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06127~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06127~^~268~^1439.^0^^~4~^^^^^^^^^^^ -~06127~^~301~^150.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~304~^45.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~307~^5730.^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06127~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06127~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~ -~06127~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06127~^~432~^14.^0^^~4~^^^^^^^^^^^ -~06127~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06127~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06128~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~268~^1576.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~301~^55.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~304~^38.^4^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~305~^195.^4^5.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~306~^306.^4^23.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~307~^3161.^1^^~8~^~LC~^^^1^^^^^^^~07/01/2017~ -~06128~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~321~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06128~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06128~^~417~^71.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~432~^9.^3^0.^~1~^^^^^^^^^^^~04/01/2004~ -~06128~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06128~^~601~^74.^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~06142~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/1998~ -~06142~^~268~^992.^0^^~4~^^^^^^^^^^^ -~06142~^~301~^20.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~305~^139.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~306~^401.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~307~^1145.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~417~^43.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06142~^~432~^43.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06147~^~208~^61.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06147~^~301~^4.^5^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~305~^29.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~306~^126.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~307~^709.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~06147~^~318~^0.^5^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06147~^~417~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06147~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06147~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06149~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06149~^~301~^23.^5^0.^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~305~^22.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~306~^56.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06149~^~307~^669.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06149~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06149~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06149~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06149~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06149~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06149~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06149~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06149~^~601~^8.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06150~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~268~^720.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~301~^33.^27^0.^~1~^~A~^^^1^10.^49.^9^32.^33.^~2, 3~^~07/01/2012~ -~06150~^~304~^13.^27^0.^~1~^~A~^^^1^5.^17.^8^12.^13.^~2, 3~^~07/01/2012~ -~06150~^~305~^20.^27^0.^~1~^~A~^^^1^16.^25.^14^19.^20.^~2, 3~^~07/01/2012~ -~06150~^~306~^232.^27^3.^~1~^~A~^^^1^46.^296.^9^223.^239.^~2, 3~^~07/01/2012~ -~06150~^~307~^1027.^27^6.^~1~^~A~^^^1^564.^1550.^11^1012.^1040.^~2, 3~^~07/01/2012~ -~06150~^~318~^224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06150~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06150~^~321~^133.^15^10.^~1~^~A~^^^1^13.^243.^4^105.^161.^~2, 3~^~07/01/2012~ -~06150~^~322~^0.^15^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06150~^~334~^2.^15^0.^~1~^~A~^^^1^0.^10.^5^0.^3.^~1, 2, 3~^~04/01/2015~ -~06150~^~337~^4550.^15^78.^~1~^~A~^^^1^448.^7589.^4^4330.^4770.^~2, 3~^~07/01/2012~ -~06150~^~338~^88.^15^2.^~1~^~A~^^^1^18.^141.^5^81.^94.^~2, 3~^~07/01/2012~ -~06150~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~06150~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~06151~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06151~^~268~^770.^0^^~4~^^^^^^^^^^^ -~06151~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~304~^12.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~305~^22.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~306~^259.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~307~^538.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~06151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06151~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~06151~^~321~^26.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~06151~^~322~^0.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~06151~^~334~^0.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~06151~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06151~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2003~ -~06151~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~06151~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~208~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~ -~06152~^~268~^226.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~06152~^~301~^54.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~305~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~306~^354.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~307~^348.^1^^~8~^~LC~^^^1^133.^540.^^^^^~05/01/2014~ -~06152~^~318~^667.^3^^~12~^~MA~^^^^^^^^^^~03/01/1996~ -~06152~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~ -~06152~^~601~^0.^1^^~8~^~LC~^^^1^0.^0.^^^^^~05/01/2014~ -~06158~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06158~^~268~^402.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06158~^~301~^31.^13^2.^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~304~^7.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~305~^47.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~306~^325.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~307~^698.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06158~^~318~^562.^13^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06158~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06158~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06158~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06158~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06158~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06159~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06159~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06159~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06159~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06159~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~04/01/2004~ -~06159~^~304~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^13.^14.^~2, 3~^~04/01/2004~ -~06159~^~305~^31.^6^0.^~1~^~A~^^^1^29.^33.^5^29.^32.^~2, 3~^~02/01/2011~ -~06159~^~306~^562.^6^11.^~1~^~A~^^^1^518.^598.^5^533.^590.^~2, 3~^~02/01/2011~ -~06159~^~307~^377.^6^3.^~1~^~A~^^^1^363.^384.^5^368.^385.^~2, 3~^~02/01/2011~ -~06159~^~318~^392.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~06159~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06159~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~06159~^~321~^235.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06159~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06159~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06159~^~337~^10920.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06159~^~338~^90.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~06159~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06159~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06159~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~06159~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06159~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06164~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~06164~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06164~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06164~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~301~^30.^12^0.^~1~^~A~^^^1^27.^33.^6^27.^31.^~2, 3~^~05/01/2012~ -~06164~^~304~^15.^12^0.^~1~^~A~^^^1^14.^17.^6^14.^15.^~2, 3~^~04/01/2004~ -~06164~^~305~^33.^12^0.^~1~^~A~^^^1^31.^38.^8^32.^33.^~2, 3~^~04/01/2015~ -~06164~^~306~^275.^12^3.^~1~^~A~^^^1^253.^327.^10^267.^282.^~2, 3~^~04/01/2015~ -~06164~^~307~^711.^12^13.^~1~^~A~^^^1^671.^784.^5^677.^743.^~2, 3~^~04/01/2015~ -~06164~^~318~^461.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06164~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~321~^276.^6^14.^~1~^~A~^^^1^236.^351.^3^227.^325.^~2, 3~^~04/01/2015~ -~06164~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~06164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06164~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~06164~^~337~^6063.^6^244.^~1~^~A~^^^1^5147.^7059.^2^5033.^7092.^~2, 3~^~04/01/2015~ -~06164~^~338~^204.^6^7.^~1~^~A~^^^1^177.^240.^3^178.^230.^~2, 3~^~04/01/2015~ -~06164~^~417~^4.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06164~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06164~^~432~^4.^6^0.^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~06164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~06164~^~601~^0.^3^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06166~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06166~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06166~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06166~^~268~^615.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06166~^~301~^118.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~304~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~305~^98.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~306~^156.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~307~^354.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~318~^377.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06166~^~319~^103.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~320~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06166~^~321~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~324~^48.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06166~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~417~^8.^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~ -~06166~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06166~^~432~^5.^0^^~1~^^^^^^^^^^^ -~06166~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06166~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~636~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06167~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06167~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06167~^~268~^778.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06167~^~301~^111.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~304~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~305~^96.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~306~^149.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~307~^373.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~318~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06167~^~319~^127.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~320~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06167~^~321~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~324~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06167~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~417~^11.^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~ -~06167~^~431~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06167~^~432~^6.^0^^~1~^^^^^^^^^^^ -~06167~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06167~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~636~^40.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06168~^~268~^46.^0^^~4~^^^^^^^^^^^ -~06168~^~301~^8.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~304~^5.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~305~^11.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~306~^144.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~307~^2643.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~318~^162.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~320~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~321~^91.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~322~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~334~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~338~^121.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~417~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06168~^~432~^6.^1^^~1~^^^^^^^^^^^~01/01/2003~ -~06168~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06168~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06169~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~268~^50.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~06169~^~301~^12.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~304~^12.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~305~^23.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~306~^128.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~307~^633.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~318~^1640.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~06169~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06169~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06169~^~321~^919.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~ -~06169~^~322~^62.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~ -~06169~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06169~^~334~^68.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~ -~06169~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~417~^1.^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~431~^1.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~06169~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06169~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06170~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06170~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~268~^54.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~301~^8.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~304~^7.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~305~^31.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~306~^185.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~307~^198.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06170~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06170~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06172~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~268~^151.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~301~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~304~^4.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~305~^27.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~306~^105.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~307~^143.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06172~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06172~^~601~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06174~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06174~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~268~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06174~^~301~^3.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~305~^56.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~306~^144.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~307~^156.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06174~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06174~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06174~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06174~^~601~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06175~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~268~^920.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06175~^~301~^32.^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~304~^24.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~305~^38.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~306~^119.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~307~^1615.^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~318~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06175~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06175~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06175~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06175~^~601~^3.^2^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~06176~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06176~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06176~^~301~^32.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~ -~06176~^~304~^4.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~ -~06176~^~305~^22.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~ -~06176~^~306~^54.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~ -~06176~^~307~^2733.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06176~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~417~^15.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06176~^~432~^15.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06176~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06176~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06177~^~208~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~268~^209.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~301~^20.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~304~^13.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~305~^34.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~306~^186.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~307~^215.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~318~^665.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06177~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~320~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~321~^349.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~322~^99.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06177~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~337~^6359.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~338~^90.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~417~^16.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06177~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06179~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06179~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~268~^146.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06179~^~301~^43.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~304~^175.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~305~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~306~^288.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~307~^7851.^3^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~06179~^~318~^12.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06179~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~417~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06179~^~432~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~06179~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06179~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06180~^~268~^192.^0^^~4~^^^^^^^^^^^ -~06180~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~305~^21.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~306~^53.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~307~^501.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06180~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06180~^~417~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06180~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06180~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~06182~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06182~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~268~^218.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06182~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~304~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~305~^51.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~306~^374.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~307~^383.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06182~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06182~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06182~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06182~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~208~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06183~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~268~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06183~^~301~^8.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~304~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~305~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~306~^85.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~307~^231.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06183~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06183~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06183~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06183~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06183~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06183~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06188~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~262~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~263~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~268~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~301~^3.^9^0.^~1~^~A~^^^1^1.^6.^8^1.^4.^~1, 2, 3~^~04/01/2015~ -~06188~^~304~^1.^9^0.^~1~^~A~^^^1^1.^3.^8^0.^1.^~2, 3~^~04/01/2015~ -~06188~^~305~^9.^9^1.^~1~^~A~^^^1^4.^12.^8^6.^11.^~2, 3~^~04/01/2015~ -~06188~^~306~^20.^9^1.^~1~^~A~^^^1^13.^26.^8^16.^23.^~2, 3~^~04/01/2015~ -~06188~^~307~^225.^9^27.^~1~^~A~^^^1^138.^382.^8^161.^288.^~2, 3~^~04/01/2015~ -~06188~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06188~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~ -~06188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~321~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~322~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~06188~^~334~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~337~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~338~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~417~^2.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~431~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~432~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2015~ -~06188~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2015~ -~06189~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06189~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~268~^372.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06189~^~301~^25.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~304~^61.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~305~^154.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~306~^225.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~307~^1778.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~06189~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06189~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06189~^~601~^0.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06190~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06190~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06190~^~301~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~304~^19.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~305~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~306~^158.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~307~^187.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~318~^702.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06190~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06190~^~321~^349.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~322~^145.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06190~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~337~^915.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06190~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06190~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06190~^~601~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06192~^~208~^71.^0^^~9~^~MC~^^^^^^^^^^~12/01/1995~ -~06192~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06192~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06192~^~268~^297.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~06192~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~306~^183.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~307~^166.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~318~^552.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06192~^~320~^28.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~321~^313.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~322~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06192~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06192~^~337~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06192~^~338~^1286.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~417~^20.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~432~^20.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06192~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06193~^~208~^68.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06193~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06193~^~268~^285.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~06193~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~306~^204.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~307~^196.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~318~^415.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06193~^~320~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~321~^201.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~322~^90.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06193~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~338~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06193~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06193~^~601~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06194~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06194~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~268~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06194~^~301~^4.^15^0.^~1~^~A~^^^1^0.^9.^10^3.^4.^~1, 2, 3~^~04/01/2013~ -~06194~^~304~^1.^15^0.^~1~^~A~^^^1^0.^2.^10^0.^1.^~1, 2, 3~^~04/01/2013~ -~06194~^~305~^4.^15^0.^~1~^~A~^^^1^1.^6.^6^3.^5.^~2, 3~^~04/01/2013~ -~06194~^~306~^18.^15^4.^~1~^~A~^^^1^2.^89.^5^5.^30.^~1, 2, 3~^~04/01/2013~ -~06194~^~307~^371.^15^6.^~1~^~A~^^^1^331.^449.^10^357.^384.^~2, 3~^~04/01/2013~ -~06194~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06194~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06194~^~321~^1.^3^^~1~^~A~^^^1^1.^2.^^^^~2, 3~^~04/01/2013~ -~06194~^~322~^0.^3^^~1~^~A~^^^1^0.^1.^^^^~2, 3~^~04/01/2013~ -~06194~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06194~^~334~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~337~^0.^3^^~1~^~A~^^^1^0.^1.^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~338~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~06194~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06194~^~601~^2.^1^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06201~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06201~^~268~^272.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06201~^~301~^70.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~305~^62.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~306~^145.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~307~^420.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~318~^242.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06201~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06201~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06201~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06201~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06201~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06208~^~208~^65.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06208~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~268~^272.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06208~^~301~^15.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~306~^73.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~307~^416.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~318~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06208~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06208~^~321~^186.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~322~^77.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06208~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~337~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06208~^~601~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06210~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06210~^~268~^276.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06210~^~301~^75.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~304~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~305~^61.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~306~^125.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~307~^272.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06210~^~318~^186.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06210~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~ -~06210~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06210~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06211~^~268~^385.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06211~^~301~^115.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~305~^100.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~306~^136.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~307~^406.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~318~^495.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~319~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06211~^~320~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06211~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06211~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06211~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06211~^~601~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06216~^~268~^322.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06216~^~301~^73.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~304~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~305~^61.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~306~^110.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~307~^362.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06216~^~318~^288.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06216~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~ -~06216~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06216~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06217~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06217~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06217~^~301~^20.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~305~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~306~^433.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~307~^385.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~318~^1721.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06217~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06217~^~321~^875.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~322~^314.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06217~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~337~^13848.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~417~^12.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06217~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06217~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06230~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~268~^254.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~301~^70.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~305~^173.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~306~^179.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~307~^273.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06230~^~318~^127.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~319~^37.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~320~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~324~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06230~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06243~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06243~^~301~^68.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2010~ -~06243~^~304~^7.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~305~^59.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~306~^103.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~307~^357.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06243~^~319~^30.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06243~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~324~^29.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~417~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~432~^3.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06243~^~601~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06246~^~208~^75.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06246~^~301~^72.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~305~^62.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~306~^125.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~307~^405.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~318~^182.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06246~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06246~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06246~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06246~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06246~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06248~^~268~^230.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06248~^~301~^68.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~305~^66.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~306~^96.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~307~^425.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~318~^92.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06248~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06248~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06248~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06248~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06248~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06249~^~268~^393.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06249~^~301~^68.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~304~^22.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~305~^94.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~306~^148.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~307~^352.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06249~^~318~^140.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06249~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~ -~06249~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06249~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06253~^~268~^251.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06253~^~301~^67.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~304~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~305~^65.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~306~^130.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~307~^230.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06253~^~318~^179.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~417~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06253~^~432~^4.^0^^~1~^^^^^^^^^^^~07/01/2010~ -~06253~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06253~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06256~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~268~^254.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~301~^69.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~304~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~305~^60.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~306~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~307~^354.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~318~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06256~^~319~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06256~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~324~^25.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06256~^~601~^10.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06264~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~06264~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~268~^301.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~06264~^~301~^131.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~304~^12.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~305~^110.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~306~^167.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~307~^184.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~318~^286.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~319~^83.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~320~^84.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~321~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~431~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~432~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~06264~^~601~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~06285~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~06285~^~301~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~304~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~305~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~306~^193.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~307~^347.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~318~^110.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~320~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~321~^65.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~322~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~337~^2032.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~432~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06285~^~601~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06307~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~301~^47.^6^0.^~1~^~A~^^^1^45.^49.^5^44.^48.^~4~^~07/01/2012~ -~06307~^~304~^15.^6^0.^~1~^~A~^^^1^14.^16.^5^14.^15.^~4~^~07/01/2012~ -~06307~^~305~^19.^6^0.^~1~^~A~^^^1^18.^19.^5^18.^19.^~4~^~07/01/2012~ -~06307~^~306~^247.^6^2.^~1~^~A~^^^1^238.^255.^5^238.^254.^~4~^~07/01/2012~ -~06307~^~307~^1242.^6^11.^~1~^~A~^^^1^1200.^1270.^5^1210.^1272.^~4~^~07/01/2012~ -~06307~^~318~^196.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~321~^116.^3^19.^~1~^~A~^^^1^90.^154.^2^32.^200.^~4~^~07/01/2012~ -~06307~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~06307~^~334~^3.^3^1.^~1~^~A~^^^1^0.^4.^2^-2.^8.^~1, 4~^~07/01/2012~ -~06307~^~337~^3556.^3^156.^~1~^~A~^^^1^3243.^3714.^2^2881.^4230.^~4~^~07/01/2012~ -~06307~^~338~^69.^3^4.^~1~^~A~^^^1^63.^77.^2^51.^87.^~4~^~07/01/2012~ -~06314~^~208~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~268~^173.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~301~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~318~^568.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~208~^37.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~268~^156.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~301~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~307~^181.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~318~^334.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~208~^51.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~268~^212.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~301~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~318~^618.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06338~^~208~^81.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06338~^~268~^339.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06338~^~301~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^8.^~2, 3~^~07/01/2012~ -~06338~^~304~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~07/01/2012~ -~06338~^~305~^19.^6^0.^~1~^~A~^^^1^17.^21.^5^17.^20.^~2, 3~^~07/01/2012~ -~06338~^~306~^67.^6^1.^~1~^~A~^^^1^59.^72.^5^62.^71.^~2, 3~^~07/01/2012~ -~06338~^~307~^697.^6^14.^~1~^~A~^^^1^659.^752.^5^658.^734.^~2, 3~^~07/01/2012~ -~06338~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06338~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06338~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06338~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06358~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06358~^~268~^331.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06358~^~301~^74.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~304~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~305~^69.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~306~^241.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~307~^442.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~318~^350.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06358~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06358~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06358~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06358~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06358~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06359~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06359~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~268~^229.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06359~^~301~^68.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~304~^13.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~305~^63.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~306~^343.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~307~^206.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~318~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06359~^~319~^29.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06359~^~321~^115.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06359~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06359~^~324~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06359~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06359~^~337~^5261.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~338~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~417~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~432~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06359~^~601~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06377~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06377~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06377~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~4~^~02/01/2011~ -~06377~^~304~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^13.^14.^~4~^~02/01/2011~ -~06377~^~305~^31.^6^0.^~1~^~A~^^^1^29.^33.^5^29.^32.^~4~^~02/01/2011~ -~06377~^~306~^562.^6^11.^~1~^~A~^^^1^518.^598.^5^533.^590.^~4~^~02/01/2011~ -~06377~^~307~^377.^6^3.^~1~^~A~^^^1^363.^384.^5^368.^385.^~4~^~02/01/2011~ -~06377~^~318~^323.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06377~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~06395~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06395~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06395~^~301~^11.^6^0.^~1~^~A~^^^1^9.^12.^5^9.^11.^~4~^~02/01/2011~ -~06395~^~304~^7.^6^0.^~1~^~A~^^^1^7.^8.^5^7.^7.^~4~^~02/01/2011~ -~06395~^~305~^35.^6^1.^~1~^~A~^^^1^28.^37.^5^31.^38.^~4~^~02/01/2011~ -~06395~^~306~^90.^6^4.^~1~^~A~^^^1^73.^105.^5^79.^101.^~4~^~02/01/2011~ -~06395~^~307~^325.^6^4.^~1~^~A~^^^1^308.^338.^5^311.^337.^~4~^~02/01/2011~ -~06395~^~321~^198.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06395~^~322~^20.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06395~^~601~^8.^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~06401~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06401~^~268~^146.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06401~^~301~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~305~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~306~^71.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~307~^402.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~318~^182.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06401~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06401~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06401~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06401~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06401~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06402~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~268~^191.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~301~^19.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~305~^38.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~306~^125.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~307~^487.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~318~^222.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~320~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~321~^110.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~322~^40.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06402~^~334~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~337~^232.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~338~^18.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~417~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~432~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06402~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~208~^63.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~268~^264.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~301~^31.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~305~^48.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~306~^147.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~307~^349.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~318~^324.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~320~^17.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~321~^164.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~322~^58.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06404~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~337~^2910.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~417~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~432~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06404~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06406~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06406~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06406~^~301~^35.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~304~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~305~^66.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~306~^191.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~307~^437.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~318~^348.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06406~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06406~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06406~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06406~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06406~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06409~^~208~^34.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~268~^140.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~305~^19.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~306~^40.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~307~^325.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~06409~^~318~^101.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~320~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~321~^60.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06409~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~337~^4253.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~431~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06409~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06410~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06410~^~268~^155.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06410~^~301~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~304~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~306~^50.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06410~^~318~^126.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06410~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06410~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06411~^~268~^264.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06411~^~301~^57.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~305~^55.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~306~^62.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~307~^388.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~318~^440.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~319~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06411~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06411~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06411~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06411~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06411~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06413~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~268~^67.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06413~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~305~^30.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~306~^86.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~307~^306.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06413~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06413~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06413~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06413~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06413~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06413~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06413~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06413~^~432~^2.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~06413~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06413~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06415~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~301~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^10.^~2, 3~^~05/01/2015~ -~06415~^~304~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^10.^~2, 3~^~05/01/2015~ -~06415~^~305~^55.^6^1.^~1~^~A~^^^1^50.^61.^5^50.^59.^~2, 3~^~05/01/2015~ -~06415~^~306~^129.^6^2.^~1~^~A~^^^1^122.^136.^5^123.^134.^~2, 3~^~05/01/2015~ -~06415~^~307~^308.^6^2.^~1~^~A~^^^1^300.^320.^5^300.^314.^~2, 3~^~05/01/2015~ -~06415~^~318~^157.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06415~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~321~^81.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~322~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~337~^229.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~338~^49.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06416~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06416~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06416~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~306~^36.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~307~^347.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06416~^~318~^230.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~319~^66.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06416~^~320~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06416~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06416~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06416~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06417~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~268~^96.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06417~^~301~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~305~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~306~^31.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~307~^391.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~318~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06417~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06417~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~337~^990.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~338~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06417~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06417~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06417~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06419~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06419~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06419~^~301~^5.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06419~^~305~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~306~^24.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~307~^335.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06419~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06419~^~321~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~431~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06419~^~601~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06423~^~208~^24.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~268~^102.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~304~^0.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~305~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~306~^41.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~307~^238.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06423~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06423~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06423~^~321~^83.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~322~^39.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06423~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~338~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06423~^~601~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~208~^57.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~268~^239.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~301~^18.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~305~^55.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~306~^196.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~307~^388.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~318~^563.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~320~^28.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~321~^295.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~322~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~334~^72.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~337~^1265.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~338~^87.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06426~^~601~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~208~^30.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~268~^126.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~301~^11.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~306~^74.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~307~^226.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~318~^373.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~319~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~320~^20.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~321~^195.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~322~^42.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06428~^~334~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~337~^3147.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~338~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06428~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~208~^35.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~268~^148.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~301~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~304~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~305~^127.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~306~^108.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06430~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~06430~^~319~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~320~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06430~^~601~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06431~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06431~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06431~^~301~^12.^6^0.^~1~^~A~^^^1^11.^15.^5^10.^13.^~4~^~02/01/2011~ -~06431~^~304~^11.^6^0.^~1~^~A~^^^1^10.^12.^5^10.^12.^~4~^~02/01/2011~ -~06431~^~305~^40.^6^0.^~1~^~A~^^^1^37.^43.^5^37.^42.^~4~^~02/01/2011~ -~06431~^~306~^115.^6^4.^~1~^~A~^^^1^100.^125.^5^104.^126.^~4~^~02/01/2011~ -~06431~^~307~^353.^6^7.^~1~^~A~^^^1^333.^387.^5^333.^372.^~4~^~02/01/2011~ -~06431~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~06431~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06431~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06431~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06431~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06431~^~338~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06431~^~601~^4.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06432~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06432~^~268~^50.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06432~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~304~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~305~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~306~^64.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~307~^264.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06432~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06432~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06432~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06434~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06434~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06434~^~301~^17.^5^0.^~1~^~A~^^^1^16.^19.^4^16.^18.^~4~^~02/01/2011~ -~06434~^~304~^10.^5^0.^~1~^~A~^^^1^9.^10.^4^9.^10.^~4~^~02/01/2011~ -~06434~^~305~^48.^5^1.^~1~^~A~^^^1^46.^54.^4^44.^52.^~4~^~02/01/2011~ -~06434~^~306~^163.^5^4.^~1~^~A~^^^1^151.^179.^4^150.^175.^~4~^~02/01/2011~ -~06434~^~307~^346.^5^5.^~1~^~A~^^^1^330.^364.^4^329.^362.^~4~^~02/01/2011~ -~06434~^~318~^2595.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~06434~^~321~^1255.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06434~^~322~^605.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06434~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~06434~^~337~^675.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06434~^~338~^137.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06434~^~601~^6.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06440~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06440~^~268~^142.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06440~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~304~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~305~^23.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~306~^130.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06440~^~318~^970.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06440~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06440~^~417~^15.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06440~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06440~^~432~^7.^0^^~1~^^^^^^^^^^^ -~06440~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06440~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~208~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06442~^~301~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~305~^25.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~306~^38.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~307~^365.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~318~^81.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06442~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06442~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06442~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06442~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06443~^~208~^39.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~268~^162.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~301~^7.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06443~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06443~^~305~^12.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~306~^31.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~307~^340.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~318~^4.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~320~^1.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~324~^4.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06443~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06444~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06444~^~268~^146.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06444~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~306~^65.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~307~^397.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~318~^514.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06444~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06444~^~417~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06444~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06444~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~208~^44.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~268~^184.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06446~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~305~^15.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~306~^49.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~307~^380.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~318~^121.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06446~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06446~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06446~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06446~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06448~^~268~^100.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06448~^~301~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~305~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~306~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~307~^407.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~318~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06448~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06448~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06448~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06448~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06448~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06448~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06449~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~268~^256.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~301~^12.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~305~^47.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~306~^71.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~307~^336.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06449~^~318~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~319~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~320~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~321~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06449~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06449~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06451~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06451~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06451~^~301~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~304~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~305~^84.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~306~^158.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~307~^398.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~318~^176.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06451~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06451~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06451~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06451~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06453~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06453~^~301~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~305~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~306~^56.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~307~^238.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06453~^~318~^118.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~319~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06453~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06453~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06453~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06453~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06456~^~208~^36.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~268~^150.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06456~^~304~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~305~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~306~^24.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~307~^391.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06456~^~318~^63.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~319~^15.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~320~^16.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06456~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~06456~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06456~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~208~^56.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~268~^234.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~305~^23.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~306~^88.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~307~^367.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~318~^219.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06461~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06461~^~320~^12.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06461~^~321~^114.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~322~^30.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06461~^~334~^2.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~337~^2929.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~338~^21.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~431~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06461~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~208~^47.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~268~^195.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~301~^11.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~305~^13.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~306~^129.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~307~^319.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~318~^210.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~320~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~321~^124.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~337~^8591.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06463~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06465~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06465~^~268~^117.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06465~^~301~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~305~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~306~^31.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~307~^334.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~318~^120.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06465~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06465~^~417~^8.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06465~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06465~^~432~^1.^0^^~4~^^^^^^^^^^^ -~06465~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06465~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06466~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06466~^~301~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~305~^17.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~306~^73.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~307~^376.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~318~^1014.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06466~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06466~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06466~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06466~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06466~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06466~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06468~^~208~^28.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~268~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~301~^10.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~305~^14.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~306~^86.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~307~^338.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~318~^1421.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~320~^71.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~321~^750.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~322~^205.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06468~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~337~^965.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~338~^80.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06468~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~208~^31.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~268~^132.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~306~^69.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~307~^349.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06471~^~318~^1552.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~320~^78.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~321~^809.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~322~^245.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06471~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~337~^182.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~338~^46.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06471~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~208~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~268~^138.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~306~^79.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~307~^253.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06472~^~318~^853.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~321~^415.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~322~^193.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06472~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~337~^14.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~338~^18.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06472~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~268~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~301~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~307~^382.^0^^~4~^~NR~^^^^^^^^^^~09/01/2011~ -~06475~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06475~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06475~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~268~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~301~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~307~^260.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~06476~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~06476~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~208~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~268~^19.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~301~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~307~^401.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~06480~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06480~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06481~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06481~^~268~^21.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06481~^~301~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~305~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~306~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~307~^326.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~318~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06481~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06481~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06481~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06481~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06483~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~268~^172.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06483~^~301~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~305~^37.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~306~^82.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~307~^454.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~318~^156.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~320~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~321~^82.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~322~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06483~^~334~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06483~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~06483~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06483~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06494~^~208~^12.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~268~^52.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~301~^9.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~304~^4.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~305~^9.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~306~^31.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~307~^346.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~318~^1.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06494~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~417~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~432~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06494~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06498~^~208~^38.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06498~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06498~^~268~^158.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~301~^29.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~304~^10.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~305~^33.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~306~^111.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~307~^356.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~318~^314.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~320~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~321~^174.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06498~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06498~^~334~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~337~^649.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06498~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06528~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~06528~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~268~^96.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06528~^~301~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~304~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~305~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~306~^13.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~307~^229.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06528~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06528~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~417~^7.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06528~^~431~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~06528~^~432~^1.^0^^~1~^^^^^^^^^^^ -~06528~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~06528~^~601~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06547~^~208~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06547~^~301~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~305~^14.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~306~^63.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~307~^386.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06547~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06547~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06547~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06547~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~208~^54.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~268~^226.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06549~^~301~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~305~^11.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~306~^63.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~307~^327.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06549~^~318~^465.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~06549~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06549~^~417~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06549~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06549~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06558~^~268~^209.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06558~^~301~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~305~^24.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~306~^169.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~307~^424.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~318~^292.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06558~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06558~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06558~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06558~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06558~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06558~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06559~^~208~^32.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~268~^135.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06559~^~304~^7.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06559~^~305~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~306~^275.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~307~^186.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~318~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06559~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~06559~^~321~^115.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~337~^5345.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~338~^44.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06559~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06583~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06583~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06583~^~268~^1841.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~301~^21.^24^0.^~1~^~A~^^^1^17.^44.^6^20.^22.^~2, 3~^~04/01/2013~ -~06583~^~304~^25.^24^0.^~1~^~A~^^^1^21.^32.^5^23.^26.^~2, 3~^~04/01/2013~ -~06583~^~305~^115.^24^1.^~1~^~A~^^^1^106.^133.^5^111.^119.^~2, 3~^~04/01/2013~ -~06583~^~306~^181.^24^2.^~1~^~A~^^^1^136.^205.^6^175.^186.^~2, 3~^~04/01/2013~ -~06583~^~307~^1855.^24^9.^~1~^~A~^^^1^1620.^2300.^10^1832.^1877.^~2, 3~^~04/01/2013~ -~06583~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~06583~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06583~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~06583~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~06583~^~322~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~06583~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06583~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~06583~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~06583~^~338~^20.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~06583~^~417~^116.^8^12.^~1~^~A~^^^1^97.^139.^1^-27.^259.^~2, 3~^~04/01/2013~ -~06583~^~431~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06583~^~432~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~ -~06584~^~208~^87.^0^^~9~^~MC~^^^^^^^^^^~09/01/1997~ -~06584~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~268~^364.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~06584~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~304~^13.^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~ -~06584~^~305~^42.^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~ -~06584~^~306~^207.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~307~^661.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06584~^~318~^825.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~06584~^~319~^30.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~320~^66.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~321~^435.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06584~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~338~^540.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~417~^40.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~432~^40.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06584~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06611~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~268~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~301~^2.^6^0.^~1~^~A~^^^1^1.^6.^5^0.^4.^~1, 2, 3~^~05/01/2015~ -~06611~^~304~^1.^6^0.^~1~^~A~^^^1^1.^3.^5^0.^2.^~2, 3~^~05/01/2015~ -~06611~^~305~^10.^6^0.^~1~^~A~^^^1^8.^12.^5^8.^12.^~2, 3~^~05/01/2015~ -~06611~^~306~^23.^6^1.^~1~^~A~^^^1^18.^26.^5^19.^25.^~2, 3~^~05/01/2015~ -~06611~^~307~^180.^6^17.^~1~^~A~^^^1^138.^260.^5^136.^223.^~2, 3~^~05/01/2015~ -~06611~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~268~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~301~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^2.^3.^~2, 3~^~05/01/2015~ -~06615~^~304~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~2, 3~^~05/01/2015~ -~06615~^~305~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^3.^~2, 3~^~05/01/2015~ -~06615~^~306~^20.^6^0.^~1~^~A~^^^1^17.^22.^5^17.^21.^~2, 3~^~05/01/2015~ -~06615~^~307~^303.^6^16.^~1~^~A~^^^1^253.^354.^5^261.^345.^~2, 3~^~05/01/2015~ -~06615~^~318~^289.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~321~^136.^2^^~1~^~A~^^^1^120.^152.^1^^^^~05/01/2015~ -~06615~^~322~^75.^2^^~1~^~A~^^^1^66.^84.^1^^^^~05/01/2015~ -~06615~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~06615~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~06615~^~338~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~05/01/2015~ -~06615~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~ -~06615~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06618~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~268~^749.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~301~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~04/01/2013~ -~06618~^~304~^19.^2^^~1~^~A~^^^1^18.^20.^1^^^^~04/01/2013~ -~06618~^~305~^35.^2^^~1~^~A~^^^1^35.^36.^1^^^^~04/01/2013~ -~06618~^~306~^99.^2^^~1~^~A~^^^1^96.^101.^1^^^^~04/01/2013~ -~06618~^~307~^319.^2^^~1~^~A~^^^1^295.^342.^1^^^^~04/01/2013~ -~06618~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~417~^4.^2^^~1~^~A~^^^1^4.^4.^^^^~1~^~04/01/2013~ -~06618~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~432~^4.^2^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06619~^~208~^55.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~268~^230.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~307~^131.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06619~^~321~^174.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~208~^53.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~268~^222.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~307~^131.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06620~^~321~^251.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~208~^40.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~268~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~301~^21.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~307~^138.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06621~^~321~^249.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~208~^57.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~268~^238.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~301~^22.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~307~^92.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06622~^~321~^233.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~208~^51.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~268~^213.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~307~^148.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06623~^~321~^288.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~208~^36.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~268~^151.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~301~^19.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~307~^141.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06624~^~321~^179.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~208~^44.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~268~^184.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~307~^145.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~ -~06625~^~321~^1127.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06626~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~301~^306.^3^6.^~1~^~A~^^^1^297.^320.^2^276.^336.^~2, 3~^~02/01/2015~ -~06626~^~304~^47.^3^1.^~1~^~A~^^^1^44.^50.^2^39.^54.^~2, 3~^~02/01/2015~ -~06626~^~305~^273.^3^1.^~1~^~A~^^^1^270.^276.^2^265.^280.^~2, 3~^~02/01/2015~ -~06626~^~306~^560.^3^0.^~1~^~A~^^^1^559.^560.^2^558.^561.^~2, 3~^~02/01/2015~ -~06626~^~307~^603.^3^4.^~1~^~A~^^^1^596.^611.^2^583.^621.^~2, 3~^~02/01/2015~ -~06626~^~318~^1544.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~321~^919.^2^^~1~^~A~^^^1^847.^991.^1^^^^~02/01/2015~ -~06626~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06626~^~334~^16.^2^^~1~^~A~^^^1^15.^17.^1^^^^~02/01/2015~ -~06626~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06626~^~338~^1242.^2^^~1~^~A~^^^1^1180.^1304.^1^^^^~02/01/2015~ -~06626~^~417~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^~2, 3~^~02/01/2015~ -~06626~^~432~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^^~02/01/2015~ -~06627~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~268~^1784.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~301~^173.^12^7.^~1~^~A~^^^1^111.^205.^11^155.^189.^~2, 3~^~02/01/2015~ -~06627~^~304~^45.^12^2.^~1~^~A~^^^1^38.^65.^11^39.^50.^~2, 3~^~02/01/2015~ -~06627~^~305~^132.^12^18.^~1~^~A~^^^1^92.^326.^11^90.^173.^~2, 3~^~02/01/2015~ -~06627~^~306~^205.^12^8.^~1~^~A~^^^1^176.^287.^11^187.^223.^~2, 3~^~02/01/2015~ -~06627~^~307~^998.^12^36.^~1~^~A~^^^1^866.^1270.^11^916.^1078.^~2, 3~^~02/01/2015~ -~06627~^~318~^1802.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06627~^~320~^90.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06627~^~321~^1075.^4^47.^~1~^~A~^^^1^957.^1163.^3^923.^1225.^~2, 3~^~02/01/2015~ -~06627~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~334~^12.^4^1.^~1~^~A~^^^1^9.^14.^3^8.^16.^~2, 3~^~02/01/2015~ -~06627~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~338~^917.^4^41.^~1~^~A~^^^1^818.^999.^3^783.^1050.^~2, 3~^~02/01/2015~ -~06627~^~417~^27.^6^1.^~1~^~A~^^^1^23.^32.^5^24.^30.^~2, 3~^~02/01/2015~ -~06627~^~432~^27.^6^1.^~1~^~A~^^^1^23.^32.^5^24.^30.^^~02/01/2015~ -~06628~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~301~^306.^3^6.^~1~^~A~^^^1^297.^320.^2^276.^336.^~2, 3~^~02/01/2015~ -~06628~^~304~^47.^3^1.^~1~^~A~^^^1^44.^50.^2^39.^54.^~2, 3~^~02/01/2015~ -~06628~^~305~^273.^3^1.^~1~^~A~^^^1^270.^276.^2^265.^280.^~2, 3~^~02/01/2015~ -~06628~^~306~^560.^3^0.^~1~^~A~^^^1^559.^560.^2^558.^561.^~2, 3~^~02/01/2015~ -~06628~^~307~^603.^3^4.^~1~^~A~^^^1^596.^611.^2^583.^621.^~2, 3~^~02/01/2015~ -~06628~^~318~^1544.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~321~^919.^2^^~1~^~A~^^^1^847.^991.^1^^^^~02/01/2015~ -~06628~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06628~^~334~^16.^2^^~1~^~A~^^^1^15.^17.^1^^^^~02/01/2015~ -~06628~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06628~^~338~^1242.^2^^~1~^~A~^^^1^1180.^1304.^1^^^^~02/01/2015~ -~06628~^~417~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^~2, 3~^~02/01/2015~ -~06628~^~432~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^^~02/01/2015~ -~06629~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~301~^166.^6^4.^~1~^~A~^^^1^145.^176.^5^154.^176.^~2, 3~^~02/01/2015~ -~06629~^~304~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^37.^41.^~2, 3~^~02/01/2015~ -~06629~^~305~^97.^6^1.^~1~^~A~^^^1^92.^101.^5^93.^100.^~2, 3~^~02/01/2015~ -~06629~^~306~^195.^6^3.^~1~^~A~^^^1^185.^207.^5^186.^204.^~2, 3~^~02/01/2015~ -~06629~^~307~^1028.^6^54.^~1~^~A~^^^1^931.^1270.^5^887.^1168.^~2, 3~^~02/01/2015~ -~06629~^~318~^1929.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~320~^96.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~321~^1151.^2^^~1~^~A~^^^1^1139.^1163.^1^^^^~02/01/2015~ -~06629~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06629~^~334~^13.^2^^~1~^~A~^^^1^13.^14.^1^^^^~02/01/2015~ -~06629~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06629~^~338~^986.^2^^~1~^~A~^^^1^973.^999.^1^^^^~02/01/2015~ -~06629~^~417~^29.^3^1.^~1~^~A~^^^1^27.^32.^2^22.^34.^~2, 3~^~02/01/2015~ -~06629~^~432~^29.^3^1.^~1~^~A~^^^1^27.^32.^2^22.^34.^^~02/01/2015~ -~06630~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~268~^2076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~301~^202.^3^3.^~1~^~A~^^^1^195.^205.^2^187.^216.^~2, 3~^~02/01/2015~ -~06630~^~304~^43.^3^0.^~1~^~A~^^^1^42.^45.^2^40.^46.^~2, 3~^~02/01/2015~ -~06630~^~305~^149.^3^2.^~1~^~A~^^^1^144.^153.^2^137.^160.^~2, 3~^~02/01/2015~ -~06630~^~306~^205.^3^6.^~1~^~A~^^^1^192.^213.^2^176.^233.^~2, 3~^~02/01/2015~ -~06630~^~307~^897.^3^17.^~1~^~A~^^^1^866.^926.^2^822.^971.^~2, 3~^~02/01/2015~ -~06630~^~318~^1674.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~320~^84.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~321~^999.^2^^~1~^~A~^^^1^957.^1041.^1^^^^~02/01/2015~ -~06630~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06630~^~334~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~02/01/2015~ -~06630~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06630~^~338~^848.^2^^~1~^~A~^^^1^818.^879.^1^^^^~02/01/2015~ -~06630~^~417~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^17.^34.^~2, 3~^~02/01/2015~ -~06630~^~432~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^17.^34.^^~02/01/2015~ -~06631~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06631~^~268~^388.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06631~^~301~^18.^9^0.^~1~^~A~^^^1^13.^21.^8^16.^19.^~2, 3~^~02/01/2015~ -~06631~^~304~^16.^9^0.^~1~^~A~^^^1^15.^17.^8^15.^16.^~2, 3~^~02/01/2015~ -~06631~^~305~^46.^9^0.^~1~^~A~^^^1^43.^49.^8^44.^47.^~2, 3~^~02/01/2015~ -~06631~^~306~^321.^9^9.^~1~^~A~^^^1^269.^347.^8^299.^343.^~2, 3~^~02/01/2015~ -~06631~^~307~^2124.^9^232.^~1~^~A~^^^1^1500.^2940.^8^1589.^2659.^~2, 3~^~02/01/2015~ -~06631~^~318~^2574.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06631~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06631~^~321~^1261.^6^115.^~1~^~A~^^^1^704.^1499.^5^963.^1558.^~2, 3~^~02/01/2015~ -~06631~^~322~^234.^6^29.^~1~^~A~^^^1^117.^315.^5^157.^310.^~2, 3~^~02/01/2015~ -~06631~^~334~^334.^6^18.^~1~^~A~^^^1^282.^409.^5^287.^380.^~2, 3~^~02/01/2015~ -~06631~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~06631~^~338~^896.^6^85.^~1~^~A~^^^1^705.^1209.^5^676.^1116.^~2, 3~^~02/01/2015~ -~06631~^~417~^22.^6^4.^~1~^~A~^^^1^7.^33.^5^11.^32.^~2, 3~^~02/01/2015~ -~06631~^~432~^22.^6^4.^~1~^~A~^^^1^7.^33.^5^11.^32.^^~02/01/2015~ -~06632~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06632~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06632~^~301~^15.^3^1.^~1~^~A~^^^1^13.^17.^2^10.^20.^~2, 3~^~02/01/2015~ -~06632~^~304~^16.^3^0.^~1~^~A~^^^1^15.^17.^2^14.^18.^~2, 3~^~02/01/2015~ -~06632~^~305~^46.^3^1.^~1~^~A~^^^1^43.^49.^2^37.^53.^~2, 3~^~02/01/2015~ -~06632~^~306~^302.^3^17.^~1~^~A~^^^1^269.^326.^2^228.^376.^~2, 3~^~02/01/2015~ -~06632~^~307~^2903.^3^20.^~1~^~A~^^^1^2870.^2940.^2^2816.^2990.^~2, 3~^~02/01/2015~ -~06632~^~318~^2773.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06632~^~320~^139.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06632~^~321~^1319.^2^^~1~^~A~^^^1^1259.^1379.^1^^^^~02/01/2015~ -~06632~^~322~^306.^2^^~1~^~A~^^^1^296.^315.^1^^^^~02/01/2015~ -~06632~^~334~^383.^2^^~1~^~A~^^^1^358.^409.^1^^^^~02/01/2015~ -~06632~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~ -~06632~^~338~^1136.^2^^~1~^~A~^^^1^1063.^1209.^1^^^^~02/01/2015~ -~06632~^~417~^17.^2^^~1~^~A~^^^1^16.^18.^1^^^^~02/01/2015~ -~06632~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06633~^~268~^330.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06633~^~301~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^18.^20.^~2, 3~^~02/01/2015~ -~06633~^~304~^16.^5^0.^~1~^~A~^^^1^15.^16.^4^15.^16.^~2, 3~^~02/01/2015~ -~06633~^~305~^46.^5^0.^~1~^~A~^^^1^44.^48.^4^44.^47.^~2, 3~^~02/01/2015~ -~06633~^~306~^341.^5^2.^~1~^~A~^^^1^334.^347.^4^334.^347.^~2, 3~^~02/01/2015~ -~06633~^~307~^1540.^5^11.^~1~^~A~^^^1^1500.^1560.^4^1508.^1571.^~2, 3~^~02/01/2015~ -~06633~^~318~^2764.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06633~^~320~^138.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06633~^~321~^1407.^3^48.^~1~^~A~^^^1^1334.^1499.^2^1197.^1616.^~2, 3~^~02/01/2015~ -~06633~^~322~^200.^3^42.^~1~^~A~^^^1^117.^259.^2^16.^383.^~2, 3~^~02/01/2015~ -~06633~^~334~^302.^3^10.^~1~^~A~^^^1^282.^314.^2^259.^345.^~2, 3~^~02/01/2015~ -~06633~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~06633~^~338~^721.^3^9.^~1~^~A~^^^1^705.^736.^2^681.^760.^~2, 3~^~02/01/2015~ -~06633~^~417~^31.^3^1.^~1~^~A~^^^1^28.^33.^2^24.^36.^~2, 3~^~02/01/2015~ -~06633~^~432~^31.^3^1.^~1~^~A~^^^1^28.^33.^2^24.^36.^^~02/01/2015~ -~06700~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~268~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~301~^3.^10^0.^~1~^~A~^^^1^1.^6.^9^2.^4.^~2, 3~^~04/01/2015~ -~06700~^~304~^1.^10^0.^~1~^~A~^^^1^1.^3.^9^0.^1.^~2, 3~^~04/01/2015~ -~06700~^~305~^3.^10^0.^~1~^~A~^^^1^1.^4.^9^2.^3.^~2, 3~^~04/01/2015~ -~06700~^~306~^19.^10^0.^~1~^~A~^^^1^14.^23.^9^17.^21.^~2, 3~^~04/01/2015~ -~06700~^~307~^296.^10^12.^~1~^~A~^^^1^231.^354.^9^267.^324.^~2, 3~^~04/01/2015~ -~06700~^~318~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~321~^111.^3^27.^~1~^~A~^^^1^60.^152.^2^-5.^226.^~2, 3~^~04/01/2015~ -~06700~^~322~^64.^3^11.^~1~^~A~^^^1^44.^84.^2^14.^114.^~2, 3~^~04/01/2015~ -~06700~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~337~^7.^3^7.^~1~^~A~^^^1^0.^21.^2^-23.^37.^~1, 2, 3~^~04/01/2015~ -~06700~^~338~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^5.^~1, 2, 3~^~04/01/2015~ -~06700~^~417~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~432~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^^~04/01/2015~ -~06700~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06720~^~208~^438.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~ -~06720~^~268~^1833.^0^^~9~^^^^^^^^^^^ -~06720~^~301~^204.^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~304~^36.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~305~^283.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~306~^428.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~307~^3202.^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~318~^202.^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06720~^~319~^55.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06720~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06720~^~417~^134.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06720~^~432~^134.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~06720~^~601~^23.^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06725~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06725~^~268~^414.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~06725~^~307~^299.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~318~^1150.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~320~^58.^1^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~06725~^~321~^690.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~06725~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06731~^~268~^490.^0^^~4~^^^^^^^^^^^ -~06731~^~307~^672.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~ -~06731~^~318~^183.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~321~^110.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~06731~^~601~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06742~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~06742~^~307~^376.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~318~^650.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~320~^33.^1^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~06742~^~321~^390.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~06742~^~601~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06749~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~301~^18.^10^0.^~1~^~A~^^^1^17.^18.^1^13.^21.^~4~^~02/01/2011~ -~06749~^~304~^10.^10^0.^~1~^~A~^^^1^9.^10.^1^0.^18.^~4~^~02/01/2013~ -~06749~^~305~^48.^10^2.^~1~^~A~^^^1^45.^48.^1^22.^73.^~4~^~02/01/2013~ -~06749~^~306~^174.^10^28.^~1~^~A~^^^1^163.^212.^1^-183.^530.^~4~^~02/01/2013~ -~06749~^~307~^326.^10^51.^~1~^~A~^^^1^256.^346.^1^-326.^978.^~4~^~02/01/2013~ -~06749~^~318~^2290.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06749~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~320~^115.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06749~^~321~^1110.^2^^~1~^~A~^^^1^600.^1255.^1^^^^~02/01/2013~ -~06749~^~322~^528.^2^^~1~^~A~^^^1^255.^605.^1^^^^~02/01/2013~ -~06749~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~02/01/2011~ -~06749~^~337~^624.^2^^~1~^~A~^^^1^442.^675.^1^^^^~02/01/2013~ -~06749~^~338~^119.^2^^~1~^~A~^^^1^54.^137.^1^^^^~02/01/2013~ -~06749~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06930~^~208~^174.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~ -~06930~^~268~^728.^0^^~9~^^^^^^^^^^^~03/01/2006~ -~06930~^~301~^184.^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~304~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~305~^157.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~306~^30.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~307~^828.^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~318~^316.^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06930~^~319~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06930~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~06930~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~06930~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~06930~^~601~^29.^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06931~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~268~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~301~^26.^36^1.^~1~^~A~^^^1^18.^37.^11^23.^28.^~2, 3~^~04/01/2015~ -~06931~^~304~^18.^36^0.^~1~^~A~^^^1^13.^26.^21^17.^18.^~2, 3~^~01/01/2011~ -~06931~^~305~^34.^36^0.^~1~^~A~^^^1^25.^40.^21^32.^34.^~2, 3~^~01/01/2011~ -~06931~^~306~^320.^36^4.^~1~^~A~^^^1^244.^373.^22^309.^330.^~2, 3~^~04/01/2015~ -~06931~^~307~^437.^36^5.^~1~^~A~^^^1^336.^590.^18^426.^448.^~2, 3~^~04/01/2015~ -~06931~^~318~^617.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~321~^370.^18^11.^~1~^~A~^^^1^291.^546.^9^344.^396.^~2, 3~^~04/01/2015~ -~06931~^~322~^0.^18^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2009~ -~06931~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06931~^~334~^0.^18^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~337~^12717.^18^218.^~1~^~A~^^^1^8927.^14616.^10^12229.^13203.^~2, 3~^~04/01/2015~ -~06931~^~338~^176.^18^14.^~1~^~A~^^^1^118.^297.^7^142.^209.^~2, 3~^~04/01/2015~ -~06931~^~417~^13.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~432~^13.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~06931~^~601~^2.^23^0.^~8~^~LC~^^^1^0.^8.^22^0.^2.^~1, 4~^~11/01/2006~ -~06955~^~208~^58.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06955~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~268~^243.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~06955~^~301~^11.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~304~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~305~^23.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~306~^272.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~307~^357.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~318~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06955~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06955~^~321~^205.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~322~^94.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06955~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06955~^~601~^6.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06956~^~208~^65.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~262~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~263~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~268~^273.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~301~^13.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~304~^14.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~305~^29.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~306~^229.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~307~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06956~^~318~^392.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~319~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~320~^20.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~321~^235.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~322~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06956~^~334~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~337~^10920.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~338~^90.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~417~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~431~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~432~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~435~^0.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~601~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06957~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06957~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~268~^1590.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~06957~^~301~^116.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~304~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~305~^212.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~306~^367.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~307~^5053.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06957~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~431~^43.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~432~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06957~^~601~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06958~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~268~^1544.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~06958~^~301~^141.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~304~^41.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~305~^239.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~306~^450.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~307~^5203.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06958~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~417~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~432~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06958~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~208~^409.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06959~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~268~^1711.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~06959~^~301~^115.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~304~^30.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~305~^203.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~306~^306.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~307~^4090.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~318~^63.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~320~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06959~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~417~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~431~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06959~^~601~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~208~^535.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06960~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~268~^2238.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~06960~^~301~^467.^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~304~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~305~^415.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~306~^254.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~307~^2590.^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~318~^213.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~319~^52.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~320~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~321~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~06960~^~601~^56.^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~06961~^~208~^21.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~268~^88.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~304~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~305~^16.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~306~^564.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~318~^458.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~320~^23.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~321~^257.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~322~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06961~^~334~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~338~^341.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06961~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~208~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~268~^84.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~304~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~305~^14.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~306~^564.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~318~^584.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~321~^333.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~322~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06962~^~334~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~338~^358.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~417~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06962~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06963~^~208~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06963~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~301~^30.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~304~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~305~^30.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~306~^86.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~06963~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06963~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06963~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06963~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06963~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06964~^~208~^30.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~262~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~263~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~268~^124.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~301~^8.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~304~^7.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~305~^14.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~306~^112.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~06964~^~318~^192.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~319~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~320~^10.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~321~^115.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~322~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06964~^~334~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~337~^5345.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~338~^44.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~417~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~431~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~432~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~435~^0.^0^^~4~^~NC~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~601~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06965~^~208~^62.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~268~^260.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~301~^12.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~304~^15.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~305~^47.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~307~^10.^1^^~1~^^^^^^^^^^^~11/01/2006~ -~06965~^~318~^12.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~319~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~320~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~321~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06965~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06965~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06966~^~208~^25.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~268~^106.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~301~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~305~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~306~^22.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~307~^173.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06966~^~318~^201.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~320~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~321~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06966~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~431~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06966~^~601~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~208~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~268~^137.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~301~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~304~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~305~^23.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~306~^217.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~307~^194.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~318~^860.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~321~^437.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~322~^157.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06967~^~334~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~337~^6924.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~338~^23.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~06967~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06968~^~208~^53.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~301~^19.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~305~^20.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~306~^41.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~307~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06968~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~320~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06968~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~06968~^~601~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~208~^343.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~268~^1435.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~301~^172.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~304~^62.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~305~^279.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~306~^1248.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~307~^2400.^1^^~8~^~LC~^^^^^^^^^^~09/01/2012~ -~06969~^~318~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06969~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06969~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~322~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06969~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~337~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~338~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06969~^~431~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06969~^~432~^57.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06969~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06969~^~601~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~208~^16.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~268~^67.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~301~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~305~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~306~^86.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~307~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06970~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06970~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06970~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06970~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06970~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06970~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~06971~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06971~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06971~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~06971~^~301~^107.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~304~^13.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~305~^60.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~306~^800.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~307~^1300.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~06971~^~318~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06971~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~06971~^~321~^43.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06971~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06971~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06971~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06971~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06971~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06972~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~06972~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~268~^384.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~06972~^~301~^20.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~305~^52.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~306~^370.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~307~^1338.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~318~^680.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06972~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~06972~^~321~^402.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~322~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06972~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~337~^12819.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06972~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06974~^~208~^69.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~268~^289.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~301~^11.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~304~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~305~^44.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~306~^153.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~307~^35.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~318~^2496.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~319~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~320~^138.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~321~^1195.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~322~^536.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06974~^~334~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~337~^139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~338~^116.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06974~^~601~^7.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06976~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~06976~^~262~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~263~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~06976~^~301~^27.^36^0.^~1~^~A~^^^1^18.^37.^35^25.^28.^~4~^~05/01/2011~ -~06976~^~304~^18.^36^0.^~1~^~A~^^^1^13.^26.^35^17.^19.^~4~^~05/01/2011~ -~06976~^~305~^34.^36^0.^~1~^~A~^^^1^25.^40.^35^32.^35.^~4~^~05/01/2011~ -~06976~^~306~^319.^36^5.^~1~^~A~^^^1^244.^373.^35^307.^330.^~4~^~05/01/2011~ -~06976~^~307~^30.^0^^~8~^~LC~^^^^^^^^^^~05/01/2011~ -~06976~^~318~^650.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~06976~^~319~^0.^0^^~4~^~BFSN~^~06931~^^^^^^^^^~07/01/2008~ -~06976~^~320~^33.^0^^~4~^~NC~^~06931~^^^^^^^^^~05/01/2011~ -~06976~^~321~^390.^18^15.^~1~^~A~^^^1^291.^546.^17^357.^422.^~4~^~05/01/2011~ -~06976~^~322~^0.^18^0.^~1~^~A~^^^1^0.^0.^17^0.^0.^~1, 4~^~05/01/2011~ -~06976~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06976~^~334~^0.^18^0.^~1~^~A~^^^1^0.^0.^17^0.^0.^~1, 4~^~05/01/2011~ -~06976~^~337~^12665.^18^396.^~1~^~A~^^^1^8927.^14616.^17^11828.^13500.^~4~^~05/01/2011~ -~06976~^~338~^190.^18^11.^~1~^~A~^^^1^118.^297.^17^164.^215.^~4~^~05/01/2011~ -~06976~^~417~^13.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~431~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~432~^13.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~435~^13.^0^^~4~^~NC~^~06931~^^^^^^^^^~07/01/2008~ -~06976~^~601~^2.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06977~^~208~^53.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~301~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~305~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~306~^81.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~307~^18.^1^^~12~^^^^^^^^^^^~05/01/2005~ -~06977~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06977~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~417~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06977~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06977~^~432~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06977~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06977~^~601~^3.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~208~^69.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~268~^289.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~301~^13.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~305~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~306~^140.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~318~^1967.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~320~^98.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~321~^961.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~322~^438.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06978~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~337~^722.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~338~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06978~^~601~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~208~^98.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~268~^410.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~301~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~305~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~306~^140.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~307~^435.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~318~^820.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~319~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~320~^84.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~321~^365.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~322~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06980~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~337~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~338~^386.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~431~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~432~^56.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~06980~^~601~^21.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~208~^438.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06981~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06981~^~268~^1832.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~301~^187.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~304~^56.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~305~^166.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~306~^309.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~307~^1067.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~318~^500.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06981~^~320~^25.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~321~^264.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~322~^70.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~06981~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06981~^~337~^19.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~338~^272.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06981~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06981~^~601~^13.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06982~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~268~^1846.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~301~^21.^12^0.^~1~^~A~^^^1^20.^22.^6^20.^21.^~2, 3~^~04/01/2013~ -~06982~^~304~^25.^12^0.^~1~^~A~^^^1^23.^32.^9^24.^26.^~2, 3~^~04/01/2013~ -~06982~^~305~^115.^12^0.^~1~^~A~^^^1^109.^133.^8^113.^117.^~2, 3~^~04/01/2013~ -~06982~^~306~^177.^12^1.^~1~^~A~^^^1^152.^189.^6^173.^179.^~2, 3~^~04/01/2013~ -~06982~^~307~^1727.^12^11.^~1~^~A~^^^1^1620.^1810.^7^1699.^1754.^~2, 3~^~04/01/2013~ -~06982~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06982~^~417~^111.^4^4.^~1~^~A~^^^1^104.^123.^2^90.^132.^~2, 3~^~04/01/2013~ -~06983~^~208~^439.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~268~^1839.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~301~^22.^12^0.^~1~^~A~^^^1^17.^44.^5^20.^23.^~2, 3~^~04/01/2013~ -~06983~^~304~^25.^12^0.^~1~^~A~^^^1^21.^30.^5^22.^27.^~2, 3~^~04/01/2013~ -~06983~^~305~^115.^12^2.^~1~^~A~^^^1^106.^130.^5^109.^121.^~2, 3~^~04/01/2013~ -~06983~^~306~^183.^12^3.^~1~^~A~^^^1^136.^205.^5^174.^191.^~2, 3~^~04/01/2013~ -~06983~^~307~^1923.^12^13.^~1~^~A~^^^1^1840.^2300.^8^1890.^1955.^~2, 3~^~04/01/2013~ -~06983~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06983~^~417~^118.^4^18.^~1~^~A~^^^1^97.^139.^1^-105.^341.^~2, 3~^~04/01/2013~ -~06985~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~06985~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~06985~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~305~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~307~^587.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06999~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~301~^12.^6^0.^~1~^~A~^^^1^10.^15.^5^9.^13.^~2, 3~^~02/01/2015~ -~06999~^~304~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~02/01/2015~ -~06999~^~305~^15.^6^0.^~1~^~A~^^^1^13.^17.^5^13.^15.^~2, 3~^~02/01/2015~ -~06999~^~306~^55.^6^2.^~1~^~A~^^^1^48.^63.^5^48.^61.^~2, 3~^~02/01/2015~ -~06999~^~307~^424.^6^3.^~1~^~A~^^^1^412.^438.^5^415.^433.^~2, 3~^~02/01/2015~ -~06999~^~601~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^9.^~2, 3~^~02/01/2015~ -~07001~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07001~^~268~^724.^0^^~4~^^^^^^^^^^^ -~07001~^~301~^55.^5^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~304~^17.^5^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~305~^132.^5^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~306~^329.^5^6.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~307~^1334.^5^47.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~318~^68.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07001~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07001~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07001~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07001~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07001~^~601~^37.^5^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07002~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07002~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07002~^~301~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~306~^244.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~307~^881.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07002~^~318~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~ -~07002~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07002~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07002~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07002~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~07002~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07002~^~601~^62.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07003~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07003~^~268~^996.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~07003~^~301~^8.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~304~^13.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~305~^103.^5^8.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~306~^253.^5^15.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~307~^1240.^5^27.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07003~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~07003~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07003~^~417~^3.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07003~^~432~^3.^4^0.^~1~^^^^^^^^^^^~02/01/2006~ -~07003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07003~^~601~^59.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07004~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~301~^12.^3^2.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~304~^15.^3^1.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~305~^130.^3^18.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~306~^283.^3^20.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~307~^1297.^3^65.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07004~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~324~^13.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07004~^~417~^5.^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07004~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/2002~ -~07004~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~601~^46.^3^1.^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07005~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07005~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07005~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07005~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~305~^22.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~306~^38.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~307~^680.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07005~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07005~^~324~^52.^0^^~4~^~BFFN~^~07074~^^^^^^^^^~03/01/2009~ -~07005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07005~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07005~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~07005~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07005~^~601~^120.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~ -~07006~^~208~^301.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~268~^1258.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~301~^41.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07006~^~304~^26.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~305~^169.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~306~^270.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~307~^756.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07006~^~318~^256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07006~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~07006~^~321~^148.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~338~^108.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~417~^17.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~432~^17.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07006~^~601~^93.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07007~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~07007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07007~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~07007~^~301~^21.^11^0.^~1~^~A~^^^1^10.^47.^5^20.^21.^~2, 3~^~04/01/2012~ -~07007~^~304~^13.^11^0.^~1~^~A~^^^1^9.^14.^5^12.^12.^~2, 3~^~04/01/2012~ -~07007~^~305~^154.^11^0.^~1~^~A~^^^1^103.^178.^5^152.^155.^~2, 3~^~04/01/2012~ -~07007~^~306~^351.^11^2.^~1~^~A~^^^1^156.^536.^5^345.^356.^~2, 3~^~04/01/2012~ -~07007~^~307~^1013.^11^1.^~1~^~A~^^^1^831.^1180.^5^1008.^1016.^~2, 3~^~08/01/2012~ -~07007~^~318~^90.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~07007~^~319~^17.^4^0.^~1~^~A~^^^1^14.^21.^1^9.^24.^~2, 3~^~04/01/2012~ -~07007~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~07007~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~ -~07007~^~322~^6.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~ -~07007~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07007~^~334~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~ -~07007~^~337~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~ -~07007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2006~ -~07007~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~ -~07007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07007~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~07007~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07007~^~601~^57.^11^0.^~1~^~A~^^^1^45.^63.^5^56.^57.^~2, 3~^~04/01/2012~ -~07008~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~07008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~07008~^~268~^1288.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~301~^85.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~304~^17.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~305~^163.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~306~^315.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~307~^960.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~07008~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~07008~^~319~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07008~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07008~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07008~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~07008~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~07008~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07008~^~601~^60.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07010~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07010~^~268~^1033.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~07010~^~301~^11.^3^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~304~^14.^3^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~305~^139.^3^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~306~^281.^3^18.^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~307~^907.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07010~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07010~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~07010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~324~^56.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~417~^5.^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07010~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~07010~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07010~^~601~^59.^3^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07011~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~301~^123.^3^^~1~^~A~^^^1^123.^123.^^^^~2~^~10/01/2002~ -~07011~^~304~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~305~^114.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~306~^135.^3^^~1~^~A~^^^1^135.^135.^^^^~2~^~10/01/2002~ -~07011~^~307~^1071.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~07011~^~318~^32.^3^^~1~^~A~^^^1^32.^32.^^^^~2~^~10/01/2002~ -~07011~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~07011~^~320~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~07011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~324~^26.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~07011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07011~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~601~^75.^4^^~1~^~A~^^^2^66.^87.^^^^~2~^~10/01/2002~ -~07011~^~636~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07013~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~268~^1393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07013~^~301~^28.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07013~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~305~^208.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~306~^348.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~307~^846.^1^^~11~^~JO~^^^2^803.^965.^^^^^~01/01/2003~ -~07013~^~318~^6.^1^^~11~^~JO~^^^2^0.^8.^^^^^~01/01/2003~ -~07013~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07013~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07013~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~07013~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07013~^~601~^74.^1^^~11~^~JO~^^^2^65.^96.^^^^^~01/01/2003~ -~07013~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07014~^~208~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~ -~07014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07014~^~268~^1368.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~ -~07014~^~301~^9.^23^0.^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~304~^11.^25^0.^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~305~^168.^26^5.^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~306~^199.^18^6.^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~307~^977.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07014~^~318~^14051.^21^1027.^~1~^^^^^^^^^^^~01/01/2007~ -~07014~^~319~^4220.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07014~^~320~^4220.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~07014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~417~^44.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~07014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07014~^~432~^44.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~07014~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07014~^~601~^180.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~07015~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~07015~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~268~^1353.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~07015~^~301~^48.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~305~^134.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~306~^281.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~307~^1112.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07015~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~07015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~324~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07015~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07015~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~06/01/2005~ -~07015~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07015~^~601~^63.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07016~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~07016~^~268~^1371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~305~^178.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~306~^206.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~307~^1082.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~319~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~324~^12.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~07016~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~07016~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~07016~^~601~^68.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~636~^3.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07018~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07018~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07018~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~304~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~305~^89.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~306~^106.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~307~^722.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~318~^99.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07018~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07018~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07018~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/2002~ -~07018~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07018~^~601~^56.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07019~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07019~^~268~^1237.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~301~^19.^3^1.^~1~^~A~^^^1^15.^22.^1^-4.^42.^~2, 3~^~10/01/2016~ -~07019~^~304~^20.^3^2.^~1~^~A~^^^1^18.^27.^1^-7.^48.^~2, 3~^~10/01/2016~ -~07019~^~305~^149.^3^2.^~1~^~A~^^^1^138.^156.^1^123.^174.^~2, 3~^~10/01/2016~ -~07019~^~306~^308.^3^3.^~1~^~A~^^^1^271.^351.^1^266.^349.^~2, 3~^~10/01/2016~ -~07019~^~307~^788.^3^10.^~1~^~A~^^^1^773.^815.^1^654.^921.^~2, 3~^~10/01/2016~ -~07019~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07019~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~07019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~324~^61.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~601~^63.^3^29.^~1~^~A~^^^1^4.^124.^1^-316.^442.^~2, 3~^~10/01/2016~ -~07020~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07020~^~268~^640.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~07020~^~301~^11.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~304~^11.^14^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~305~^73.^14^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~306~^101.^14^6.^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~307~^953.^15^37.^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07020~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~07020~^~417~^8.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07020~^~432~^8.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07020~^~601~^47.^14^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07021~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07021~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07021~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07021~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~305~^119.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~306~^210.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~307~^786.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07021~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07021~^~319~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07021~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~07021~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07021~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07021~^~601~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07021~^~636~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07022~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07022~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~301~^14.^17^0.^~1~^~A~^^^1^7.^28.^6^12.^15.^~2, 3~^~03/01/2016~ -~07022~^~304~^11.^17^0.^~1~^~A~^^^1^8.^17.^11^10.^11.^~2, 3~^~03/01/2016~ -~07022~^~305~^134.^17^1.^~1~^~A~^^^1^92.^172.^8^130.^137.^~2, 3~^~03/01/2016~ -~07022~^~306~^364.^17^7.^~1~^~A~^^^1^173.^489.^9^347.^379.^~2, 3~^~03/01/2016~ -~07022~^~307~^865.^17^9.^~1~^~A~^^^1^732.^1040.^11^844.^885.^~2, 3~^~03/01/2016~ -~07022~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2016~ -~07022~^~319~^3.^3^^~1~^~A~^^^1^2.^5.^^^^~2, 3~^~03/01/2016~ -~07022~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2016~ -~07022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~ -~07022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07022~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~07022~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~601~^58.^0^^~4~^~BFSN~^~07007~^^^^^^^^^~03/01/2016~ -~07024~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07024~^~268~^933.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07024~^~301~^74.^3^44.^~1~^~A~^^^1^15.^161.^2^-117.^265.^~2, 3~^~03/01/2007~ -~07024~^~304~^20.^3^0.^~1~^~A~^^^1^18.^21.^2^16.^23.^~2, 3~^~03/01/2007~ -~07024~^~305~^162.^3^19.^~1~^~A~^^^1^137.^201.^2^77.^246.^~2, 3~^~03/01/2007~ -~07024~^~306~^202.^3^17.^~1~^~A~^^^1^184.^236.^2^128.^275.^~2, 3~^~03/01/2007~ -~07024~^~307~^1027.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~07024~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07024~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07024~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07024~^~417~^7.^3^1.^~1~^~A~^^^1^4.^10.^2^0.^14.^~2, 3~^~03/01/2007~ -~07024~^~431~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~02/01/2009~ -~07024~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07024~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07024~^~601~^96.^3^4.^~1~^~A~^^^1^89.^105.^2^74.^116.^~2, 3~^~03/01/2007~ -~07025~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07025~^~268~^933.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07025~^~301~^148.^3^12.^~1~^~A~^^^1^132.^173.^2^93.^202.^~2, 3~^~03/01/2007~ -~07025~^~304~^14.^3^1.^~1~^~A~^^^1^12.^17.^2^7.^20.^~2, 3~^~03/01/2007~ -~07025~^~305~^172.^3^9.^~1~^~A~^^^1^160.^192.^2^129.^215.^~2, 3~^~03/01/2007~ -~07025~^~306~^392.^3^120.^~1~^~A~^^^1^152.^538.^2^-128.^911.^~2, 3~^~03/01/2007~ -~07025~^~307~^911.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07025~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07025~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~07025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07025~^~324~^23.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07025~^~417~^9.^3^1.^~1~^~A~^^^1^6.^10.^2^2.^14.^~2, 3~^~03/01/2007~ -~07025~^~431~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~02/01/2009~ -~07025~^~432~^7.^3^1.^~1~^~AS~^^^1^5.^9.^2^2.^12.^~2, 3~^~03/01/2007~ -~07025~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07025~^~601~^77.^3^0.^~1~^~A~^^^1^77.^78.^2^75.^78.^~2, 3~^~03/01/2007~ -~07025~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07026~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07026~^~268~^1000.^0^^~4~^^^^^^^^^^^~08/01/2012~ -~07026~^~301~^7.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07026~^~304~^13.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~305~^139.^4^17.^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~306~^284.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~307~^1280.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07026~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07026~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~324~^24.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07026~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07026~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07026~^~601~^49.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07027~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07027~^~301~^7.^4^1.^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~304~^16.^5^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~305~^155.^5^14.^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~306~^319.^5^8.^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~307~^1194.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07027~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07027~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~324~^29.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~417~^1.^3^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07027~^~432~^1.^3^0.^~1~^^^^^^^^^^^~03/01/2009~ -~07027~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07027~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07028~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07028~^~268~^446.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~301~^5.^18^0.^~1~^~A~^^^1^4.^8.^10^4.^6.^~2, 3~^~07/01/2011~ -~07028~^~304~^19.^18^0.^~1~^~A~^^^1^17.^21.^10^18.^19.^~2, 3~^~03/01/2016~ -~07028~^~305~^252.^18^6.^~1~^~A~^^^1^212.^296.^10^237.^266.^~2, 3~^~03/01/2016~ -~07028~^~306~^463.^18^44.^~1~^~A~^^^1^202.^1220.^5^348.^577.^~2, 3~^~03/01/2016~ -~07028~^~307~^945.^18^30.^~1~^~A~^^^1^647.^1320.^11^876.^1013.^~2, 3~^~03/01/2016~ -~07028~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07028~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~07028~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07028~^~324~^25.^0^^~4~^~BFNN~^~10134~^^^^^^^^^~03/01/2016~ -~07028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07028~^~417~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~03/01/2007~ -~07028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07028~^~432~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^^~04/01/2014~ -~07028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07028~^~601~^41.^0^^~4~^~BFSN~^~43327~^^^^^^^^^~07/01/2011~ -~07029~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07029~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07029~^~301~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~304~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~305~^153.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~306~^287.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~307~^814.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07029~^~318~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~09/01/2002~ -~07029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07029~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07029~^~324~^29.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07029~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07029~^~601~^57.^2^^~1~^~A~^^^1^50.^59.^^^^^~09/01/2002~ -~07029~^~636~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07030~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~268~^1100.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~301~^10.^4^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~304~^16.^4^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~305~^157.^4^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~306~^311.^4^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~307~^1245.^4^23.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07030~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07030~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07030~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07030~^~601~^70.^4^9.^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07031~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07031~^~268~^904.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07031~^~301~^8.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~304~^10.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~305~^120.^4^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~306~^150.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~307~^1075.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07031~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07031~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07031~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07031~^~601~^37.^4^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07032~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07032~^~268~^1010.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07032~^~301~^58.^8^4.^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~304~^16.^8^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~305~^253.^8^17.^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~306~^294.^8^10.^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~307~^1000.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07032~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~07032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07032~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07032~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07032~^~417~^3.^0^^~4~^^^^^^^^^^^~05/01/2004~ -~07032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07032~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07032~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07032~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~636~^0.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07033~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07033~^~268~^1025.^0^^~4~^^^^^^^^^^^ -~07033~^~301~^217.^4^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~304~^18.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~305~^495.^4^11.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~306~^162.^4^14.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~307~^1197.^4^45.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~318~^304.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~319~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07033~^~320~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07033~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07033~^~432~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07033~^~601~^61.^4^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07034~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07034~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07034~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~304~^9.^4^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~305~^56.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~306~^31.^4^7.^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~307~^941.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07034~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07034~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~324~^37.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~417~^2.^4^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07034~^~432~^2.^4^0.^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07034~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07036~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07036~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~301~^12.^5^1.^~1~^~A~^^^1^8.^14.^2^6.^16.^~2, 3~^~11/01/2016~ -~07036~^~304~^16.^5^0.^~1~^~A~^^^1^14.^17.^2^12.^19.^~2, 3~^~10/01/2016~ -~07036~^~305~^126.^5^4.^~1~^~A~^^^1^116.^134.^2^107.^144.^~2, 3~^~11/01/2016~ -~07036~^~306~^211.^5^35.^~1~^~A~^^^1^116.^253.^2^57.^365.^~2, 3~^~11/01/2016~ -~07036~^~307~^563.^5^100.^~1~^~A~^^^1^296.^684.^2^134.^991.^~2, 3~^~11/01/2016~ -~07036~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07036~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07036~^~601~^69.^3^0.^~1~^~A~^^^1^63.^71.^1^61.^76.^~2, 3~^~11/01/2016~ -~07038~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07038~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~301~^11.^5^0.^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~304~^11.^5^0.^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~305~^98.^5^6.^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~306~^199.^5^8.^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~307~^930.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~324~^44.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~417~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07038~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~07038~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~601~^60.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07039~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07039~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~301~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~305~^192.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~306~^330.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~307~^1374.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~318~^39.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~319~^12.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~07039~^~320~^12.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~07039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07039~^~324~^10.^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~07039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07039~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07039~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~07039~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~601~^55.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07040~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07040~^~268~^1272.^0^^~4~^^^^^^^^^^^ -~07040~^~301~^8.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~304~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~305~^207.^6^16.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~306~^226.^6^11.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~307~^1225.^6^40.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~318~^17490.^6^408.^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~319~^5252.^6^122.^~1~^^^^^^^^^^^~06/01/2002~ -~07040~^~320~^5252.^6^122.^~1~^^^^^^^^^^^~06/01/2002~ -~07040~^~417~^104.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07040~^~432~^104.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07040~^~601~^174.^5^21.^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07041~^~268~^1364.^0^^~4~^^^^^^^^^^^ -~07041~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~304~^12.^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~305~^230.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~306~^170.^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~307~^860.^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~318~^27667.^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~319~^8308.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07041~^~320~^8308.^0^^~1~^^^^^^^^^^^~03/01/2002~ -~07041~^~417~^30.^3^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07041~^~432~^30.^3^3.^~1~^^^^^^^^^^^~03/01/2002~ -~07041~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~07041~^~601~^158.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07043~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07043~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~301~^5.^15^0.^~1~^~A~^^^1^4.^7.^5^4.^5.^~2, 3~^~04/01/2014~ -~07043~^~304~^20.^15^0.^~1~^~A~^^^1^18.^21.^9^19.^20.^~2, 3~^~04/01/2014~ -~07043~^~305~^242.^15^2.^~1~^~A~^^^1^222.^282.^11^235.^248.^~2, 3~^~04/01/2014~ -~07043~^~306~^647.^15^22.^~1~^~A~^^^1^331.^928.^5^587.^706.^~2, 3~^~04/01/2014~ -~07043~^~307~^853.^15^15.^~1~^~A~^^^1^677.^1080.^10^819.^886.^~2, 3~^~04/01/2014~ -~07043~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~07043~^~319~^3.^3^^~1~^~A~^^^1^3.^4.^^^^~2, 3~^~04/01/2014~ -~07043~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~07043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07043~^~324~^1.^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2014~ -~07043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07043~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~07043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07043~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~07043~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~601~^51.^9^0.^~1~^~A~^^^1^46.^57.^4^48.^53.^~2, 3~^~04/01/2014~ -~07045~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07045~^~268~^1397.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~07045~^~301~^6.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~304~^10.^8^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~305~^82.^8^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~306~^215.^8^8.^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~307~^1289.^8^8.^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07045~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~07045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~324~^22.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~417~^6.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07045~^~432~^6.^1^^~1~^^^^^^^^^^^~04/01/2009~ -~07045~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07045~^~601~^62.^7^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07046~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~07046~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~268~^455.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~07046~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~304~^21.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~305~^162.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~306~^211.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07046~^~307~^772.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07046~^~318~^33.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2013~ -~07046~^~319~^10.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~320~^10.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2013~ -~07046~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~324~^2.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~07046~^~601~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07046~^~636~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07050~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07050~^~268~^1301.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~07050~^~301~^18.^5^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~304~^11.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~305~^97.^5^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~306~^163.^4^17.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~307~^1246.^4^65.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~07050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~324~^41.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07050~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~07050~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07050~^~601~^56.^4^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07051~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07051~^~268~^983.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07051~^~301~^109.^4^9.^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~304~^19.^4^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~305~^127.^4^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~306~^297.^4^10.^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~307~^964.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07051~^~318~^200.^1^^~1~^^^^^^^^^^^~01/01/2004~ -~07051~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07051~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~417~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07051~^~432~^2.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07051~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07051~^~601~^38.^3^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07052~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~07052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07052~^~268~^580.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~07052~^~301~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~07/01/2004~ -~07052~^~304~^14.^1^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~305~^200.^1^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~306~^345.^2^^~1~^~A~^^^1^317.^372.^1^^^^~07/01/2004~ -~07052~^~307~^1123.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07052~^~318~^12.^2^^~1~^~A~^^^1^4.^20.^1^^^^~08/01/2013~ -~07052~^~319~^4.^2^^~4~^~NR~^^^1^1.^6.^1^^^^~01/01/2008~ -~07052~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~07052~^~321~^7.^2^^~4~^~NR~^^^1^2.^12.^1^^^^~01/01/2008~ -~07052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07052~^~324~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~07052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07052~^~417~^5.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~07052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07052~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07052~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07052~^~601~^68.^2^^~1~^~A~^^^1^60.^76.^1^^^^~07/01/2004~ -~07053~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07053~^~268~^841.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07053~^~301~^10.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~304~^13.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~305~^175.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~306~^95.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~307~^386.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~318~^724.^5^34.^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~319~^217.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07053~^~320~^217.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~417~^321.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07053~^~432~^321.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07053~^~435~^321.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07053~^~601~^391.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07054~^~268~^1933.^0^^~4~^^^^^^^^^^^ -~07054~^~301~^70.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~304~^13.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~306~^138.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~307~^697.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~318~^3333.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~319~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07054~^~320~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07054~^~417~^60.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07054~^~432~^60.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07054~^~601~^150.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~268~^1335.^0^^~4~^^^^^^^^^^^ -~07055~^~301~^70.^10^9.^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~304~^13.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~305~^200.^10^23.^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~306~^138.^10^11.^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~307~^697.^10^35.^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~318~^3300.^10^939.^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~319~^991.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07055~^~320~^991.^10^282.^~1~^^^^^^^^^^^~05/01/2002~ -~07055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~417~^60.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07055~^~432~^60.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~07055~^~601~^255.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07056~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07056~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07056~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07056~^~301~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~305~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~306~^394.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~307~^732.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07056~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07056~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07056~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07056~^~417~^2.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07056~^~432~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2007~ -~07056~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07056~^~601~^46.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07057~^~208~^504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07057~^~268~^2110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~301~^19.^6^0.^~1~^~A~^^^1^17.^20.^5^17.^19.^~2, 3~^~04/01/2015~ -~07057~^~304~^18.^6^0.^~1~^~A~^^^1^18.^19.^5^17.^18.^~2, 3~^~04/01/2015~ -~07057~^~305~^158.^6^1.^~1~^~A~^^^1^155.^166.^5^153.^162.^~2, 3~^~04/01/2015~ -~07057~^~306~^274.^6^2.^~1~^~A~^^^1^267.^287.^5^266.^280.^~2, 3~^~04/01/2015~ -~07057~^~307~^1582.^6^32.^~1~^~A~^^^1^1530.^1740.^5^1498.^1664.^~2, 3~^~04/01/2015~ -~07057~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07057~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~07057~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07057~^~324~^52.^0^^~4~^~BFFN~^~07072~^^^^^^^^^~04/01/2015~ -~07057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07057~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~ -~07057~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~07057~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~ -~07057~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~07057~^~601~^97.^3^0.^~1~^~A~^^^1^96.^98.^2^93.^100.^~2, 3~^~04/01/2015~ -~07058~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07058~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~268~^939.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07058~^~301~^109.^3^19.^~1~^~A~^^^1^90.^129.^1^-139.^358.^~4~^~06/01/2004~ -~07058~^~304~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~305~^153.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~306~^371.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~307~^1040.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07058~^~318~^260.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07058~^~319~^78.^1^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~07058~^~320~^78.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~07058~^~321~^147.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~324~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~334~^46.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~338~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~432~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07058~^~601~^58.^3^0.^~1~^~A~^^^1^57.^58.^1^51.^63.^~4~^~06/01/2004~ -~07058~^~636~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07059~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07059~^~268~^1364.^0^^~4~^^^^^^^^^^^ -~07059~^~301~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~304~^14.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~305~^136.^6^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~306~^237.^6^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~307~^876.^6^63.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07059~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~07059~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07059~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07059~^~601~^70.^6^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07060~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07060~^~268~^590.^0^^~4~^^^^^^^^^^^ -~07060~^~301~^36.^4^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~304~^20.^4^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~305~^185.^4^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~306~^377.^4^18.^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~307~^1225.^4^95.^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07060~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~07060~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07060~^~417~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07060~^~432~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07060~^~601~^36.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07061~^~268~^1180.^0^^~4~^^^^^^^^^^^ -~07061~^~301~^43.^3^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~304~^16.^3^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~305~^129.^3^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~306~^225.^3^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~307~^1127.^3^68.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07061~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07061~^~324~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07061~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07061~^~432~^8.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07061~^~601~^45.^3^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07062~^~268~^971.^0^^~4~^^^^^^^^^^^ -~07062~^~301~^47.^5^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~304~^15.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~305~^125.^5^10.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~306~^267.^5^9.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~307~^1164.^5^33.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07062~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07062~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07062~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07062~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07062~^~601~^38.^4^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07063~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07063~^~268~^1207.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~301~^8.^14^0.^~1~^~A~^^^1^5.^13.^8^6.^9.^~2, 3~^~04/01/2013~ -~07063~^~304~^15.^14^0.^~1~^~A~^^^1^13.^16.^11^14.^14.^~2, 3~^~08/01/2015~ -~07063~^~305~^133.^14^1.^~1~^~A~^^^1^120.^146.^8^130.^136.^~2, 3~^~04/01/2013~ -~07063~^~306~^307.^14^5.^~1~^~A~^^^1^231.^626.^3^288.^325.^~2, 3~^~04/01/2013~ -~07063~^~307~^739.^14^12.^~1~^~A~^^^1^572.^884.^7^707.^769.^~2, 3~^~08/01/2015~ -~07063~^~318~^92.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07063~^~319~^27.^3^^~1~^~A~^^^1^24.^32.^^^^~2, 3~^~04/01/2013~ -~07063~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07063~^~324~^57.^2^^~1~^~A~^^^1^46.^72.^^^^^~04/01/2013~ -~07063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07063~^~417~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07063~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07063~^~432~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07063~^~435~^2.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~ -~07063~^~601~^70.^8^0.^~1~^~A~^^^1^67.^74.^4^67.^72.^~2, 3~^~04/01/2013~ -~07064~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07064~^~268~^1360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07064~^~301~^9.^15^1.^~1~^~A~^^^1^6.^16.^8^6.^11.^~2, 3~^~04/01/2013~ -~07064~^~304~^16.^15^0.^~1~^~A~^^^1^15.^19.^11^15.^17.^~2, 3~^~04/01/2013~ -~07064~^~305~^149.^15^3.^~1~^~A~^^^1^133.^185.^9^140.^156.^~2, 3~^~04/01/2013~ -~07064~^~306~^342.^15^7.^~1~^~A~^^^1^245.^689.^11^325.^357.^~2, 3~^~04/01/2013~ -~07064~^~307~^814.^15^18.^~1~^~A~^^^1^606.^1030.^9^771.^856.^~2, 3~^~04/01/2013~ -~07064~^~318~^93.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07064~^~319~^28.^3^^~1~^~A~^^^1^20.^42.^^^^~2, 3~^~04/01/2013~ -~07064~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07064~^~324~^58.^2^^~1~^~A~^^^1^54.^62.^^^^^~04/01/2013~ -~07064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~07064~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07064~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07064~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07064~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07064~^~601~^86.^9^2.^~1~^~A~^^^1^78.^110.^3^78.^92.^~2, 3~^~04/01/2013~ -~07065~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07065~^~268~^1657.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~07065~^~301~^10.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~304~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~305~^107.^6^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~306~^189.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~307~^929.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07065~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~07065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07065~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~07065~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07065~^~601~^71.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07066~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07066~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~268~^855.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07066~^~301~^31.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~305~^164.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~306~^207.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~307~^721.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07066~^~318~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07066~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07066~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07066~^~324~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~07066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07066~^~417~^23.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07066~^~432~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~07066~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07066~^~601~^58.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07067~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07067~^~268~^837.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07067~^~301~^10.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~304~^10.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~305~^33.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~306~^183.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~307~^653.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~07067~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~07067~^~319~^42.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07067~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~07067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~417~^5.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07067~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~07067~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07067~^~601~^30.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07068~^~208~^261.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~07068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07068~^~268~^1092.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~07068~^~301~^6.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~304~^13.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~305~^205.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~306~^188.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~307~^1140.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07068~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~07068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07068~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07068~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07068~^~432~^2.^2^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07068~^~601~^71.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07069~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07069~^~268~^1407.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07069~^~301~^15.^3^2.^~1~^~A~^^^1^10.^19.^2^3.^25.^~2, 3~^~03/01/2007~ -~07069~^~304~^19.^3^1.^~1~^~A~^^^1^16.^21.^2^13.^24.^~2, 3~^~03/01/2007~ -~07069~^~305~^191.^3^15.^~1~^~A~^^^1^160.^208.^2^124.^257.^~2, 3~^~03/01/2007~ -~07069~^~306~^316.^3^33.^~1~^~A~^^^1^251.^361.^2^172.^460.^~2, 3~^~03/01/2007~ -~07069~^~307~^1740.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07069~^~324~^41.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07069~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~03/01/2007~ -~07069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07069~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^^~02/01/2009~ -~07069~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07069~^~601~^89.^3^4.^~1~^~A~^^^1^81.^96.^2^69.^107.^~2, 3~^~03/01/2007~ -~07069~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07070~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~301~^40.^4^13.^~1~^~A~^^^^^^^^^^~01/01/2004~ -~07070~^~304~^22.^4^1.^~12~^~MA~^^^^^^^^^^~01/01/2004~ -~07070~^~305~^266.^4^5.^~12~^~MA~^^^^^^^^^^~01/01/2004~ -~07070~^~306~^216.^4^6.^~12~^~MA~^^^^^^^^^^~01/01/2004~ -~07070~^~307~^1107.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07070~^~318~^6.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07070~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~07070~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~324~^24.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~07070~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~432~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~07070~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~601~^76.^4^1.^~1~^~A~^^^^^^^^^^~01/01/2004~ -~07070~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~07071~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07071~^~268~^1703.^0^^~4~^^^^^^^^^^^ -~07071~^~301~^13.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~304~^22.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~305~^229.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~306~^378.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~307~^2260.^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07071~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07071~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07071~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07071~^~601~^79.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07072~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07072~^~268~^1583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07072~^~301~^24.^12^3.^~1~^~A~^^^1^11.^62.^2^9.^37.^~2, 3~^~05/01/2014~ -~07072~^~304~^20.^12^0.^~1~^~A~^^^1^15.^22.^2^18.^22.^~2, 3~^~05/01/2013~ -~07072~^~305~^192.^12^3.^~1~^~A~^^^1^136.^213.^3^179.^204.^~2, 3~^~05/01/2014~ -~07072~^~306~^363.^12^6.^~1~^~A~^^^1^243.^426.^3^340.^384.^~2, 3~^~05/01/2014~ -~07072~^~307~^1756.^12^36.^~1~^~A~^^^1^1230.^2020.^3^1646.^1866.^~2, 3~^~05/01/2014~ -~07072~^~318~^36.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~07072~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07072~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~07072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07072~^~324~^36.^3^^~1~^~A~^^^1^26.^41.^^^^~2, 3~^~05/01/2014~ -~07072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07072~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2012~ -~07072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07072~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~ -~07072~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07072~^~601~^108.^9^5.^~1~^~A~^^^1^87.^120.^1^53.^161.^~2, 3~^~04/01/2012~ -~07072~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/2014~ -~07073~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07073~^~268~^983.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07073~^~301~^12.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~304~^8.^5^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~305~^59.^5^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~306~^110.^5^5.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~307~^1013.^5^50.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~318~^87.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~319~^26.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07073~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~324~^22.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07073~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07073~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07073~^~601~^38.^3^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07074~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~07074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07074~^~268~^1295.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~07074~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^8.^12.^~2, 3~^~03/01/2007~ -~07074~^~304~^11.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^12.^~2, 3~^~03/01/2007~ -~07074~^~305~^157.^3^26.^~1~^~A~^^^1^103.^188.^2^40.^272.^~2, 3~^~03/01/2007~ -~07074~^~306~^483.^3^68.^~1~^~A~^^^1^346.^559.^2^187.^778.^~2, 3~^~03/01/2007~ -~07074~^~307~^827.^3^9.^~1~^~A~^^^1^815.^845.^2^788.^866.^~2, 3~^~03/01/2007~ -~07074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07074~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07074~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~07074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07074~^~324~^43.^0^^~4~^~BFFN~^~07013~^^^^^^^^^~02/01/2009~ -~07074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07074~^~417~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~03/01/2007~ -~07074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07074~^~432~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^^~05/01/2009~ -~07074~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~07074~^~601~^61.^3^1.^~1~^~A~^^^1^59.^63.^2^55.^65.^~2, 3~^~03/01/2007~ -~07075~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07075~^~268~^1338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07075~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~305~^121.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~306~^179.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~307~^911.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07075~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07075~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07075~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07075~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07075~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~07075~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07075~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07077~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07077~^~268~^1310.^0^^~4~^^^^^^^^^^^ -~07077~^~301~^41.^52^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~304~^16.^7^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~305~^137.^7^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~306~^286.^7^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~307~^1173.^7^24.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07077~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07077~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07077~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07077~^~601~^65.^7^2.^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07078~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07078~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07078~^~301~^9.^2^^~1~^~A~^^^1^8.^9.^^^^^~05/01/2004~ -~07078~^~304~^14.^14^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~305~^111.^7^10.^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~306~^260.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07078~^~307~^1300.^4^^~1~^~A~^^^2^1260.^1360.^^^^~2~^~05/01/2004~ -~07078~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~07078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07078~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~07078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07078~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07078~^~417~^2.^0^^~4~^^^^^^^^^^^~05/01/2004~ -~07078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07078~^~432~^2.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~07078~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07078~^~601~^74.^4^^~1~^~A~^^^2^67.^83.^^^^~2~^~05/01/2004~ -~07081~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07081~^~268~^442.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~301~^14.^18^2.^~1~^~A~^^^1^4.^34.^6^7.^20.^~2, 3~^~03/01/2016~ -~07081~^~304~^19.^18^0.^~1~^~A~^^^1^12.^24.^7^16.^20.^~2, 3~^~03/01/2016~ -~07081~^~305~^249.^18^6.^~1~^~A~^^^1^203.^309.^8^234.^264.^~2, 3~^~03/01/2016~ -~07081~^~306~^371.^18^34.^~1~^~A~^^^1^141.^1070.^7^288.^453.^~2, 3~^~03/01/2016~ -~07081~^~307~^898.^18^41.^~1~^~A~^^^1^603.^1150.^10^804.^991.^~2, 3~^~03/01/2016~ -~07081~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07081~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~07081~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07081~^~324~^6.^0^^~4~^~BFSN~^~05664~^^^^^^^^^~03/01/2016~ -~07081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07081~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2016~ -~07081~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~07081~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2013~ -~07081~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07081~^~601~^49.^0^^~4~^~BFSN~^~05664~^^^^^^^^^~03/01/2016~ -~07083~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07083~^~268~^962.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07083~^~301~^10.^3^2.^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~304~^7.^3^0.^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~305~^49.^3^2.^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~306~^101.^3^4.^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~307~^879.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07083~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07083~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~324~^25.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/2004~ -~07083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07083~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07083~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07083~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07088~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07088~^~268~^761.^0^^~4~^^^^^^^^^^^ -~07088~^~301~^9.^3^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~304~^16.^4^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~305~^137.^4^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~306~^291.^4^23.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~307~^1322.^4^26.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07088~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07088~^~324~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~ -~07088~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07088~^~432~^4.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07088~^~601~^50.^4^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07089~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07089~^~268~^1355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~301~^13.^11^1.^~1~^~A~^^^1^8.^16.^5^10.^15.^~2, 3~^~10/01/2016~ -~07089~^~304~^19.^11^0.^~1~^~A~^^^1^16.^23.^5^17.^21.^~2, 3~^~10/01/2016~ -~07089~^~305~^152.^11^6.^~1~^~A~^^^1^117.^182.^5^134.^169.^~2, 3~^~10/01/2016~ -~07089~^~306~^339.^11^40.^~1~^~A~^^^1^222.^592.^5^236.^442.^~2, 3~^~10/01/2016~ -~07089~^~307~^801.^11^38.^~1~^~A~^^^1^664.^1010.^5^701.^900.^~2, 3~^~10/01/2016~ -~07089~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07089~^~319~^10.^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~07089~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~07089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~07089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07089~^~324~^41.^0^^~4~^~BFFN~^~07013~^^^^^^^^^~03/01/2009~ -~07089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07089~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07089~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~07089~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07089~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~10/01/2016~ -~07089~^~601~^81.^6^6.^~1~^~A~^^^1^73.^97.^2^55.^106.^~2, 3~^~10/01/2016~ -~07090~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07090~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~07090~^~301~^13.^6^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~304~^14.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~305~^122.^6^7.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~306~^245.^6^9.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~307~^1182.^6^32.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07090~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07090~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07090~^~432~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~07090~^~601~^64.^6^3.^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07091~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07091~^~268~^674.^0^^~4~^^^^^^^^^^^ -~07091~^~301~^7.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~304~^16.^6^0.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~305~^136.^6^12.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~306~^321.^6^10.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~307~^1220.^6^84.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07091~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~07091~^~417~^7.^3^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07091~^~432~^7.^3^1.^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07091~^~601~^49.^5^4.^~1~^^^^^^^^^^^~09/01/1980~ -~07201~^~208~^316.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~268~^1322.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07201~^~301~^12.^30^0.^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~304~^14.^30^0.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~305~^109.^30^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~306~^168.^30^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~307~^1179.^31^71.^~1~^~A~^^^2^1108.^1250.^1^276.^2081.^~2~^~05/01/2002~ -~07201~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~05/01/2002~ -~07201~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07201~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~324~^32.^6^1.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~417~^13.^5^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07201~^~432~^13.^5^5.^~12~^~MA~^^^^^^^^^^~08/01/2002~ -~07201~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07201~^~601~^64.^31^5.^~1~^~A~^^^2^58.^70.^1^-10.^138.^~2~^~05/01/2002~ -~07207~^~208~^331.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~07207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~268~^1387.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~07207~^~301~^9.^16^0.^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07207~^~304~^14.^16^1.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~305~^199.^16^7.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~306~^202.^16^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~307~^1159.^17^1.^~1~^~A~^^^2^1157.^1160.^1^1139.^1177.^~2~^~05/01/2002~ -~07207~^~318~^15744.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07207~^~319~^4723.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07207~^~320~^4723.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07207~^~321~^0.^3^0.^~12~^~MA~^^^^^^^^^^~02/01/1997~ -~07207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~324~^44.^5^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~417~^47.^8^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07207~^~432~^47.^8^5.^~12~^~MA~^^^^^^^^^^~08/01/2002~ -~07207~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07207~^~601~^178.^15^2.^~1~^~A~^^^2^175.^180.^1^145.^209.^~2~^~05/01/2002~ -~07209~^~208~^109.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~268~^454.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07209~^~301~^10.^4^0.^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07209~^~304~^36.^4^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07209~^~305~^289.^4^15.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07209~^~306~^329.^4^8.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07209~^~307~^1438.^5^52.^~1~^~A~^^^2^1386.^1490.^1^777.^2098.^~2~^~05/01/2002~ -~07209~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~05/01/2002~ -~07209~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07209~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~417~^4.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~ -~07209~^~431~^0.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~ -~07209~^~432~^4.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~ -~07209~^~435~^4.^0^^~4~^~NC~^~05064~^^^^^^^^^~06/01/2008~ -~07209~^~601~^53.^5^0.^~1~^~A~^^^2^53.^54.^1^46.^60.^~2~^~05/01/2002~ -~07212~^~208~^180.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~268~^754.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07212~^~301~^9.^6^1.^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07212~^~304~^23.^6^0.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07212~^~305~^219.^6^3.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07212~^~306~^260.^6^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07212~^~307~^1249.^7^81.^~1~^~A~^^^2^1167.^1330.^1^212.^2284.^~2~^~05/01/2002~ -~07212~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~06/01/2002~ -~07212~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07212~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07212~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~417~^3.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~ -~07212~^~431~^0.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~ -~07212~^~432~^3.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~ -~07212~^~435~^3.^0^^~4~^~NC~^~07029~^^^^^^^^^~06/01/2008~ -~07212~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07230~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07230~^~301~^12.^14^2.^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07230~^~304~^21.^14^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~305~^180.^14^9.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~306~^356.^14^11.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~307~^1976.^31^94.^~1~^~A~^^^2^1882.^2070.^1^781.^3170.^~2~^~05/01/2002~ -~07230~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07230~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07230~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07230~^~321~^20.^1^^~12~^~MA~^^^^^^^^^^~03/01/1997~ -~07230~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~324~^62.^4^8.^~12~^~MA~^^^^^^^^^^~03/01/1997~ -~07230~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~417~^3.^2^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07230~^~432~^3.^2^^~12~^~MA~^^^^^^^^^^~08/01/2002~ -~07230~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07230~^~601~^97.^31^0.^~1~^~A~^^^2^96.^98.^1^85.^108.^~2~^~05/01/2002~ -~07236~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07236~^~268~^1316.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07236~^~301~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~304~^21.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07236~^~305~^248.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07236~^~306~^152.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07236~^~307~^1036.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/1997~ -~07236~^~601~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~268~^1376.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07241~^~301~^10.^31^0.^~1~^~A~^^^2^9.^11.^1^-2.^22.^~2~^~05/01/2002~ -~07241~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~305~^140.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~306~^130.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~307~^1025.^31^6.^~1~^~A~^^^2^1018.^1032.^1^937.^1111.^~2~^~05/01/2002~ -~07241~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07241~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07241~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07241~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~324~^24.^7^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07241~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~07241~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07241~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07241~^~601~^56.^31^9.^~1~^~A~^^^2^46.^65.^1^-64.^175.^~2~^~05/01/2002~ -~07254~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~07254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~268~^944.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~07254~^~301~^80.^18^3.^~1~^~A~^^^1^44.^135.^6^72.^88.^~2, 3~^~07/01/2014~ -~07254~^~304~^16.^18^0.^~1~^~A~^^^1^15.^18.^9^15.^16.^~2, 3~^~07/01/2014~ -~07254~^~305~^222.^18^3.^~1~^~A~^^^1^176.^270.^6^214.^229.^~2, 3~^~07/01/2014~ -~07254~^~306~^349.^18^13.^~1~^~A~^^^1^162.^742.^6^317.^381.^~2, 3~^~07/01/2014~ -~07254~^~307~^1069.^18^23.^~1~^~A~^^^1^692.^1250.^7^1012.^1125.^~2, 3~^~07/01/2014~ -~07254~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~07254~^~319~^10.^3^^~1~^~A~^^^1^0.^28.^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~07254~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~417~^10.^3^^~1~^~A~^^^1^9.^11.^^^^~2, 3~^~07/01/2014~ -~07254~^~432~^10.^3^^~1~^~A~^^^1^9.^11.^^^^^~07/01/2014~ -~07254~^~601~^86.^9^1.^~1~^~A~^^^1^80.^90.^4^82.^88.^~2, 3~^~07/01/2014~ -~07278~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~268~^1016.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07278~^~301~^26.^7^0.^~1~^~A~^^^2^26.^26.^^^^~2~^~06/01/2002~ -~07278~^~304~^41.^7^0.^~1~^~A~^^^2^41.^41.^^^^~2~^~06/01/2002~ -~07278~^~306~^449.^7^0.^~1~^~A~^^^2^449.^449.^^^^~2~^~06/01/2002~ -~07278~^~307~^1858.^13^0.^~1~^~A~^^^2^1858.^1858.^1^1857.^1857.^~2~^~06/01/2002~ -~07278~^~318~^49.^7^0.^~1~^~A~^^^2^48.^49.^1^45.^52.^~2~^~06/01/2002~ -~07278~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07278~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07278~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~417~^4.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~ -~07278~^~431~^0.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~ -~07278~^~432~^4.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~ -~07278~^~435~^4.^0^^~4~^~NC~^~07070~^^^^^^^^^~06/01/2008~ -~07278~^~601~^123.^7^0.^~1~^~A~^^^2^123.^123.^^^^~2~^~06/01/2002~ -~07900~^~208~^101.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07900~^~268~^423.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~301~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~304~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~305~^74.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~306~^243.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~307~^796.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~07900~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07900~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~324~^3.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07900~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07900~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07900~^~601~^21.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07905~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07905~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07905~^~301~^54.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~304~^14.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~305~^132.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~306~^220.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~307~^880.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~07905~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07905~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07905~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07905~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07905~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07905~^~601~^41.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07906~^~268~^1226.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~07906~^~304~^14.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~07906~^~305~^109.^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~ -~07906~^~306~^564.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~07906~^~307~^1036.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07906~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07906~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~07906~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~324~^23.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07906~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~417~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07906~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~432~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07906~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07908~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07908~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~07908~^~304~^14.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~305~^151.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07908~^~306~^409.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~307~^1411.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07908~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07908~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~07908~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07908~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07908~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07908~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07909~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07909~^~268~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~301~^39.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07909~^~306~^461.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~307~^1032.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07909~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~07909~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~324~^24.^0^^~4~^~BFNN~^~10134~^^^^^^^^^~04/01/2009~ -~07909~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~417~^4.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07909~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07909~^~432~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07909~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07910~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~268~^1428.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07910~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~305~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~306~^231.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~307~^60.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07910~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07910~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~417~^9.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07910~^~432~^9.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07910~^~601~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~268~^1277.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07911~^~301~^22.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~304~^12.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~305~^230.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~306~^170.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~307~^700.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~318~^13636.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~319~^4091.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~ -~07911~^~320~^4091.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~07911~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~417~^30.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~431~^0.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~432~^30.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~435~^30.^0^^~4~^~NC~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~601~^118.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~208~^223.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~268~^931.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07912~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~304~^24.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~305~^116.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~306~^259.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~307~^724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07912~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07912~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07912~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07912~^~601~^70.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07913~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~268~^1657.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07913~^~301~^94.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~305~^272.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~306~^1372.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~307~^623.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07913~^~318~^12.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~319~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07913~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07913~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~417~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07913~^~432~^8.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~07913~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07913~^~601~^90.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~636~^0.^0^^~4~^~BFZN~^~07069~^^^^^^^^^~06/01/2002~ -~07914~^~208~^149.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07914~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~268~^622.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07914~^~301~^25.^8^5.^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~305~^103.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~306~^194.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~307~^570.^8^6.^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07914~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07914~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07914~^~601~^30.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07915~^~208~^259.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07915~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~268~^1085.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07915~^~301~^12.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~304~^14.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~305~^136.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~306~^237.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~307~^1540.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07915~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~417~^2.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~431~^0.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~06/01/2002~ -~07915~^~432~^2.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~435~^2.^0^^~4~^~NC~^~07059~^^^^^^^^^~07/01/2005~ -~07915~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~636~^0.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07916~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07916~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~268~^1259.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07916~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~304~^12.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~305~^107.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~306~^189.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07916~^~319~^0.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07916~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~324~^44.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07916~^~417~^4.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~431~^0.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~432~^4.^0^^~4~^~NR~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~435~^4.^0^^~4~^~NC~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~601~^71.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07917~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~268~^1240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07917~^~301~^57.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07917~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07917~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~324~^12.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07917~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07917~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07917~^~601~^63.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~268~^1783.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07918~^~301~^81.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~307~^1483.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~318~^749.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07918~^~319~^225.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07918~^~320~^225.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07918~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~324~^12.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~417~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07918~^~432~^7.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07918~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07918~^~601~^89.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07919~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~301~^55.^8^0.^~1~^~A~^^^1^6.^63.^2^54.^54.^~2, 3~^~10/01/2016~ -~07919~^~304~^20.^8^0.^~1~^~A~^^^1^17.^23.^2^20.^20.^~2, 3~^~10/01/2016~ -~07919~^~305~^174.^8^0.^~1~^~A~^^^1^156.^268.^1^172.^175.^~2, 3~^~10/01/2016~ -~07919~^~306~^258.^8^0.^~1~^~A~^^^1^232.^728.^3^258.^258.^~2, 3~^~10/01/2016~ -~07919~^~307~^714.^8^1.^~1~^~A~^^^1^480.^914.^1^692.^735.^~2, 3~^~10/01/2016~ -~07919~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07919~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07919~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~07919~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~324~^17.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07919~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~417~^6.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~10/01/2016~ -~07919~^~431~^0.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~03/01/2009~ -~07919~^~432~^6.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~10/01/2016~ -~07919~^~435~^6.^0^^~4~^~NC~^~05305~^^^^^^^^^~10/01/2016~ -~07919~^~601~^76.^6^0.^~1~^~A~^^^1^69.^85.^1^75.^76.^~2, 3~^~10/01/2016~ -~07920~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07920~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07920~^~301~^74.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07920~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~307~^827.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07920~^~318~^334.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07920~^~319~^100.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07920~^~320~^100.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~07920~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07920~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07920~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07920~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07920~^~601~^61.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07921~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07921~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~304~^17.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~305~^142.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~306~^385.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~307~^1420.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~319~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~417~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~431~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~432~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~435~^2.^0^^~4~^~NC~^~07072~^^^^^^^^^~07/01/2005~ -~07921~^~601~^102.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07922~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07922~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~268~^1244.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07922~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07922~^~304~^15.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~305~^130.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~306~^283.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07922~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07922~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07922~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~417~^4.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07922~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07922~^~432~^4.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07922~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07922~^~601~^78.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07923~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~304~^23.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~305~^160.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~306~^211.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~318~^101.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07923~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07923~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07923~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07923~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07923~^~601~^71.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07924~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07924~^~301~^14.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~304~^14.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~305~^132.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~306~^246.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~307~^982.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07924~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~07924~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07924~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07924~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07924~^~601~^56.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07925~^~208~^95.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07925~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~268~^397.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07925~^~301~^9.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~304~^18.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~305~^150.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~306~^228.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~307~^1010.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~319~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~417~^7.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~431~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~432~^7.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~435~^7.^0^^~4~^~NC~^~13355~^^^^^^^^^~07/01/2003~ -~07925~^~601~^47.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~636~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07926~^~208~^425.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07926~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~268~^1777.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07926~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~304~^22.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~305~^229.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~306~^340.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~307~^1890.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07926~^~319~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07926~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~417~^2.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~431~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~432~^2.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~435~^2.^0^^~4~^~NC~^~07071~^^^^^^^^^~02/01/2006~ -~07926~^~601~^80.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~636~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07927~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07927~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~268~^659.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07927~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~304~^25.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~305~^185.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~306~^197.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~307~^928.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~318~^144.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~319~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07927~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~07927~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07927~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07927~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07928~^~208~^216.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~268~^904.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~07928~^~301~^100.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~305~^132.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~306~^246.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~307~^1034.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07928~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07928~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07928~^~601~^120.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07929~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~268~^659.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~07929~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~304~^25.^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~305~^185.^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~306~^197.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~307~^916.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~07929~^~318~^144.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~319~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07929~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~07929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~324~^8.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~417~^8.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~431~^0.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~432~^8.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~435~^8.^0^^~4~^~NC~^~07927~^^^^^^^^^~03/01/2009~ -~07929~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~208~^268.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~268~^1121.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07930~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07930~^~307~^936.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07930~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07930~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~601~^64.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07931~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07931~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~268~^1154.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07931~^~301~^27.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~306~^244.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~307~^732.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~318~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07931~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~07931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07931~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2002~ -~07931~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~07931~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2002~ -~07931~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07931~^~601~^62.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~636~^3.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07932~^~208~^80.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~268~^334.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07932~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~304~^36.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~305~^256.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~306~^316.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~307~^1040.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07932~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07932~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~208~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~268~^332.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07933~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~304~^9.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~305~^60.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~306~^67.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~307~^1087.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07933~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07933~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~208~^226.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~268~^947.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07934~^~307~^1200.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~601~^70.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07935~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~305~^121.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~306~^324.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~307~^883.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07935~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07935~^~601~^39.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07936~^~208~^211.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~268~^881.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~07936~^~301~^48.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~304~^17.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~305~^94.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~306~^138.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~307~^716.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~318~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~319~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~07936~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~07936~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~417~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~432~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07936~^~601~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07937~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~268~^1406.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07937~^~301~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~07937~^~304~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~305~^128.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~306~^222.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~307~^1055.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07937~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07937~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07938~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07938~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~07938~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~305~^384.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~306~^165.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~307~^900.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07938~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~417~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07938~^~432~^2.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07938~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07938~^~601~^22.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07939~^~208~^269.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~268~^1127.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2002~ -~07939~^~301~^267.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~305~^171.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~306~^264.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~307~^816.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~318~^263.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~319~^79.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07939~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~07939~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07939~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~07939~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2002~ -~07939~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07939~^~601~^66.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~636~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07940~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07940~^~301~^122.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~304~^27.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~305~^173.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~306~^313.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~307~^3.^8^0.^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07940~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07940~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~431~^13.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07940~^~601~^44.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07941~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~268~^1466.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07941~^~301~^8.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~304~^17.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~305~^142.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~306~^378.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~307~^936.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07941~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~07941~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~417~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~431~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~432~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~435~^2.^0^^~4~^~NC~^~07072~^^^^^^^^^~07/01/2003~ -~07941~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~636~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07942~^~208~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07942~^~268~^1366.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07942~^~301~^70.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~304~^13.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~305~^200.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~306~^138.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~307~^807.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~318~^15000.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~319~^991.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~320~^4505.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~07942~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~417~^60.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~431~^0.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~432~^60.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~435~^60.^0^^~4~^~NC~^~07055~^^^^^^^^^~07/01/2003~ -~07942~^~601~^105.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~208~^95.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~268~^398.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07943~^~307~^1160.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~ -~07943~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~601~^48.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~268~^468.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~07944~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~304~^20.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~305~^158.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~306~^349.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~307~^1200.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07944~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~07944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~417~^4.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~431~^0.^0^^~4~^~BFZN~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~432~^4.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~08/01/2002~ -~07944~^~435~^4.^0^^~4~^~NC~^~05196~^^^^^^^^^~07/01/2008~ -~07944~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07945~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~07945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~268~^1346.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~07945~^~301~^11.^12^0.^~1~^~A~^^^1^8.^15.^11^9.^11.^~2, 3~^~04/01/2011~ -~07945~^~304~^9.^12^0.^~1~^~A~^^^1^8.^10.^11^8.^9.^~2, 3~^~04/01/2011~ -~07945~^~305~^139.^12^1.^~1~^~A~^^^1^131.^152.^11^135.^143.^~2, 3~^~04/01/2011~ -~07945~^~306~^252.^12^33.^~1~^~A~^^^1^135.^401.^11^178.^326.^~2, 3~^~04/01/2011~ -~07945~^~307~^852.^12^22.^~1~^~A~^^^1^736.^967.^11^803.^901.^~2, 3~^~04/01/2011~ -~07945~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07945~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07945~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~324~^38.^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~417~^10.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~ -~07945~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~07945~^~601~^58.^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07949~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07949~^~268~^1161.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07949~^~301~^99.^3^2.^~1~^~A~^^^1^93.^102.^2^85.^111.^~2, 3~^~07/01/2002~ -~07949~^~304~^15.^3^0.^~1~^~A~^^^1^14.^16.^2^12.^17.^~2, 3~^~07/01/2002~ -~07949~^~305~^211.^3^5.^~1~^~A~^^^1^201.^220.^2^187.^234.^~2, 3~^~07/01/2002~ -~07949~^~306~^141.^3^11.^~1~^~A~^^^1^124.^164.^2^89.^192.^~2, 3~^~07/01/2002~ -~07949~^~307~^1013.^3^38.^~1~^~A~^^^1^939.^1070.^2^846.^1179.^~2, 3~^~07/01/2002~ -~07949~^~318~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~319~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~320~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~417~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~431~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~432~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~435~^6.^0^^~4~^~NC~^~07007~^^^^^^^^^~07/01/2005~ -~07949~^~601~^73.^2^^~1~^~A~^^^1^72.^73.^1^^^^~07/01/2002~ -~07950~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07950~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07950~^~301~^99.^2^^~1~^~A~^^^1^94.^103.^1^^^^~07/01/2002~ -~07950~^~304~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~07/01/2002~ -~07950~^~305~^206.^2^^~1~^~A~^^^1^203.^208.^1^^^^~07/01/2002~ -~07950~^~306~^152.^2^^~1~^~A~^^^1^148.^156.^1^^^^~07/01/2002~ -~07950~^~307~^1090.^2^^~1~^~A~^^^1^1080.^1100.^1^^^^~07/01/2002~ -~07950~^~318~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~319~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~320~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~417~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~431~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~432~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~435~^6.^0^^~4~^~NC~^~07007~^^^^^^^^^~07/01/2005~ -~07950~^~601~^77.^2^^~1~^~A~^^^1^73.^80.^1^^^^~07/01/2002~ -~07951~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~07951~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~301~^7.^4^^~6~^~JA~^^^2^5.^9.^^^^~2~^~03/01/2003~ -~07951~^~304~^13.^3^^~1~^~A~^^^1^12.^15.^^^^~2~^~10/01/2002~ -~07951~^~305~^76.^4^^~6~^~JA~^^^2^64.^99.^^^^~2~^~03/01/2003~ -~07951~^~306~^158.^4^^~6~^~JA~^^^2^93.^269.^^^^~2~^~03/01/2003~ -~07951~^~307~^482.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07951~^~318~^2086.^4^^~6~^~JA~^^^2^0.^4600.^^^^~2~^~03/01/2003~ -~07951~^~319~^626.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07951~^~320~^626.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07951~^~324~^13.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~07951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~07951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07951~^~417~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07951~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~601~^49.^4^^~6~^~JA~^^^2^42.^63.^^^^~2~^~03/01/2003~ -~07952~^~208~^298.^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~07952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~268~^1245.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~07952~^~301~^82.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~304~^15.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~305~^185.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~306~^152.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~307~^922.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07952~^~319~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07952~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~322~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~334~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~337~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07952~^~417~^9.^2^^~1~^~A~^^^1^^^^^^^~04/01/2003~ -~07952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~07952~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07952~^~601~^80.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07953~^~208~^438.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07953~^~268~^1832.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07953~^~301~^17.^14^0.^~1~^~A~^^^1^14.^27.^7^16.^18.^~2, 3~^~05/01/2014~ -~07953~^~304~^15.^14^0.^~1~^~A~^^^1^13.^19.^7^14.^15.^~2, 3~^~04/01/2013~ -~07953~^~305~^193.^14^6.^~1~^~A~^^^1^128.^260.^5^176.^208.^~2, 3~^~05/01/2014~ -~07953~^~306~^225.^14^4.^~1~^~A~^^^1^192.^277.^6^213.^237.^~2, 3~^~05/01/2014~ -~07953~^~307~^990.^14^16.^~1~^~A~^^^1^693.^1150.^5^948.^1030.^~2, 3~^~05/01/2014~ -~07953~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~07953~^~319~^22.^3^^~1~^~A~^^^1^21.^25.^^^^~2, 3~^~05/01/2014~ -~07953~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~07953~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07953~^~324~^41.^0^^~4~^~BFFN~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07953~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~601~^79.^9^1.^~1~^~A~^^^1^75.^87.^4^75.^81.^~2, 3~^~05/01/2014~ -~07954~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07954~^~268~^1370.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~301~^29.^6^8.^~1~^~A~^^^1^8.^97.^3^2.^54.^~2, 3~^~11/01/2016~ -~07954~^~304~^18.^6^0.^~1~^~A~^^^1^11.^24.^1^8.^27.^~2, 3~^~11/01/2016~ -~07954~^~305~^126.^6^6.^~1~^~A~^^^1^106.^149.^3^104.^147.^~2, 3~^~11/01/2016~ -~07954~^~306~^285.^6^5.^~1~^~A~^^^1^214.^361.^1^234.^335.^~2, 3~^~11/01/2016~ -~07954~^~307~^904.^6^5.^~1~^~A~^^^1^784.^1030.^1^850.^957.^~2, 3~^~11/01/2016~ -~07954~^~318~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~07954~^~319~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07954~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~07954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07954~^~324~^3.^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~ -~07954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~07954~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~ -~07954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07954~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~ -~07954~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07954~^~601~^60.^5^2.^~1~^~A~^^^1^53.^71.^3^52.^67.^~2, 3~^~11/01/2016~ -~07955~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07955~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~305~^177.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~307~^593.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07955~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07955~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07955~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07955~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07955~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07955~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~268~^1387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07956~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~305~^141.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~307~^813.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~07956~^~318~^81.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07956~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07956~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07956~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07956~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07956~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~07956~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07956~^~601~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~268~^1430.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07957~^~301~^74.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~305~^136.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~306~^230.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~307~^876.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~318~^102.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07957~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07957~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~338~^71.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07957~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07957~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07957~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07957~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07958~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~305~^202.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~306~^298.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~307~^665.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07958~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07958~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07958~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07958~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07958~^~601~^92.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07959~^~208~^272.^3^15.^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~07959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~268~^1138.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~07959~^~301~^92.^3^14.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~304~^15.^3^1.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~305~^227.^3^11.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~306~^313.^3^59.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~307~^1120.^3^20.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07959~^~319~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07959~^~321~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~322~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~334~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~337~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07959~^~417~^7.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2003~ -~07959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~432~^7.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~07959~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07959~^~601~^83.^3^3.^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07960~^~208~^336.^1^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~268~^1407.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07960~^~301~^196.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~305~^223.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~306~^162.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~307~^1240.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07960~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~07960~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2006~ -~07960~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~07960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~07960~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07960~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07961~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~268~^410.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~301~^11.^11^0.^~1~^~A~^^^1^4.^19.^5^9.^11.^~1, 2, 3~^~05/01/2013~ -~07961~^~304~^26.^11^0.^~1~^~A~^^^1^22.^32.^4^25.^26.^~2, 3~^~05/01/2012~ -~07961~^~305~^257.^11^1.^~1~^~A~^^^1^241.^278.^5^253.^261.^~2, 3~^~05/01/2013~ -~07961~^~306~^360.^11^5.^~1~^~A~^^^1^310.^500.^6^344.^374.^~2, 3~^~05/01/2013~ -~07961~^~307~^1032.^11^9.^~1~^~A~^^^1^816.^1140.^5^1008.^1055.^~2, 3~^~05/01/2013~ -~07961~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07961~^~319~^2.^6^0.^~1~^~A~^^^1^0.^5.^2^0.^3.^~1, 2, 3~^~05/01/2013~ -~07961~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~324~^2.^0^^~4~^~BFFN~^~05064~^^^^^^^^^~06/01/2014~ -~07961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07961~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07961~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07961~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~601~^51.^11^0.^~1~^~A~^^^1^42.^55.^6^49.^52.^~2, 3~^~05/01/2012~ -~07962~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~268~^1157.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~301~^106.^18^6.^~1~^~A~^^^1^60.^143.^6^91.^120.^~2, 3~^~09/01/2015~ -~07962~^~304~^11.^18^0.^~1~^~A~^^^1^10.^13.^7^10.^11.^~2, 3~^~03/01/2013~ -~07962~^~305~^175.^18^6.^~1~^~A~^^^1^129.^234.^5^158.^192.^~2, 3~^~09/01/2015~ -~07962~^~306~^359.^18^27.^~1~^~A~^^^1^145.^511.^7^292.^424.^~2, 3~^~09/01/2015~ -~07962~^~307~^976.^18^27.^~1~^~A~^^^1^741.^1240.^5^907.^1044.^~2, 3~^~09/01/2015~ -~07962~^~318~^102.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07962~^~319~^31.^3^^~1~^~A~^^^1^21.^34.^^^^~2, 3~^~05/01/2013~ -~07962~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07962~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~324~^27.^2^^~1~^~A~^^^1^25.^28.^^^^^~09/01/2015~ -~07962~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~417~^6.^2^^~1~^~A~^^^1^4.^8.^^^^~1~^~03/01/2013~ -~07962~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~07962~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~07962~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07962~^~601~^78.^9^2.^~1~^~A~^^^1^68.^98.^2^68.^87.^~2, 3~^~03/01/2013~ -~07963~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~301~^107.^18^5.^~1~^~A~^^^1^62.^145.^6^92.^120.^~2, 3~^~03/01/2013~ -~07963~^~304~^11.^18^0.^~1~^~A~^^^1^10.^17.^10^10.^12.^~2, 3~^~03/01/2013~ -~07963~^~305~^180.^18^6.^~1~^~A~^^^1^136.^257.^6^163.^196.^~2, 3~^~03/01/2013~ -~07963~^~306~^323.^18^28.^~1~^~A~^^^1^127.^477.^7^255.^389.^~2, 3~^~04/01/2013~ -~07963~^~307~^914.^18^38.^~1~^~A~^^^1^709.^1280.^6^819.^1009.^~2, 3~^~04/01/2013~ -~07963~^~318~^103.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07963~^~319~^31.^3^^~1~^~A~^^^1^24.^33.^^^^~2, 3~^~03/01/2013~ -~07963~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~324~^26.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~07963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~417~^6.^2^^~1~^~A~^^^1^4.^8.^^^^~1~^~04/01/2013~ -~07963~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07963~^~432~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07963~^~435~^9.^0^^~4~^~NC~^~07022~^^^^^^^^^~03/01/2013~ -~07963~^~601~^84.^9^2.^~1~^~A~^^^1^77.^97.^2^73.^94.^~2, 3~^~03/01/2013~ -~07964~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~268~^1262.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~301~^118.^18^6.^~1~^~A~^^^1^66.^154.^6^101.^134.^~2, 3~^~03/01/2013~ -~07964~^~304~^12.^18^0.^~1~^~A~^^^1^11.^16.^7^11.^12.^~2, 3~^~03/01/2013~ -~07964~^~305~^192.^18^7.^~1~^~A~^^^1^123.^236.^5^172.^212.^~2, 3~^~03/01/2013~ -~07964~^~306~^387.^18^20.^~1~^~A~^^^1^235.^580.^8^339.^434.^~2, 3~^~03/01/2013~ -~07964~^~307~^1079.^18^22.^~1~^~A~^^^1^816.^1340.^5^1022.^1135.^~2, 3~^~03/01/2013~ -~07964~^~318~^107.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07964~^~319~^32.^3^^~1~^~A~^^^1^22.^35.^^^^~2, 3~^~03/01/2013~ -~07964~^~320~^32.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07964~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~324~^27.^2^^~1~^~A~^^^1^24.^29.^^^^^~03/01/2013~ -~07964~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~417~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07964~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07964~^~432~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07964~^~435~^9.^0^^~4~^~NC~^~07022~^^^^^^^^^~03/01/2013~ -~07964~^~601~^85.^9^1.^~1~^~A~^^^1^77.^98.^2^78.^91.^~2, 3~^~03/01/2013~ -~07965~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~268~^907.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~301~^15.^4^2.^~1~^~A~^^^1^12.^21.^3^8.^21.^~2, 3~^~04/01/2013~ -~07965~^~304~^18.^4^0.^~1~^~A~^^^1^18.^18.^3^17.^18.^~2, 3~^~04/01/2013~ -~07965~^~305~^153.^4^1.^~1~^~A~^^^1^150.^157.^3^148.^157.^~2, 3~^~04/01/2013~ -~07965~^~306~^275.^4^0.^~1~^~A~^^^1^274.^277.^3^272.^277.^~2, 3~^~04/01/2013~ -~07965~^~307~^581.^4^14.^~1~^~A~^^^1^541.^610.^3^534.^626.^~2, 3~^~04/01/2013~ -~07965~^~318~^92.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~ -~07965~^~319~^27.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~ -~07965~^~320~^27.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~ -~07965~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~324~^16.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~417~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~432~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~435~^2.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~601~^67.^4^0.^~1~^~A~^^^1^65.^69.^3^63.^69.^~2, 3~^~04/01/2013~ -~07966~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~268~^1118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~301~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^18.^19.^~2, 3~^~04/01/2013~ -~07966~^~304~^22.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~04/01/2013~ -~07966~^~305~^185.^4^0.^~1~^~A~^^^1^183.^187.^3^181.^187.^~2, 3~^~04/01/2013~ -~07966~^~306~^328.^4^3.^~1~^~A~^^^1^321.^337.^3^317.^338.^~2, 3~^~04/01/2013~ -~07966~^~307~^698.^4^4.^~1~^~A~^^^1^685.^708.^3^682.^712.^~2, 3~^~04/01/2013~ -~07966~^~318~^93.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~319~^28.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~320~^28.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~324~^58.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~601~^82.^4^2.^~1~^~A~^^^1^77.^86.^3^75.^88.^~2, 3~^~04/01/2013~ -~07967~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~268~^1640.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~301~^16.^14^0.^~1~^~A~^^^1^12.^22.^7^14.^17.^~2, 3~^~04/01/2013~ -~07967~^~304~^13.^14^0.^~1~^~A~^^^1^11.^17.^4^12.^13.^~2, 3~^~04/01/2013~ -~07967~^~305~^164.^14^10.^~1~^~A~^^^1^109.^233.^3^131.^196.^~2, 3~^~04/01/2013~ -~07967~^~306~^211.^14^3.^~1~^~A~^^^1^183.^252.^8^202.^220.^~2, 3~^~04/01/2013~ -~07967~^~307~^810.^14^18.^~1~^~A~^^^1^602.^1010.^4^758.^860.^~2, 3~^~04/01/2013~ -~07967~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07967~^~319~^21.^3^^~1~^~A~^^^1^20.^22.^^^^~2, 3~^~04/01/2013~ -~07967~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~324~^48.^2^^~1~^~A~^^^1^45.^49.^^^^^~04/01/2013~ -~07967~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~601~^74.^9^2.^~1~^~A~^^^1^68.^93.^2^62.^84.^~2, 3~^~04/01/2013~ -~07968~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~268~^1410.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~301~^42.^15^5.^~1~^~A~^^^1^15.^91.^14^30.^54.^~2, 3~^~04/01/2013~ -~07968~^~304~^16.^15^0.^~1~^~A~^^^1^14.^20.^14^14.^16.^~2, 3~^~04/01/2013~ -~07968~^~305~^204.^15^10.^~1~^~A~^^^1^167.^281.^14^182.^225.^~2, 3~^~04/01/2013~ -~07968~^~306~^306.^15^36.^~1~^~A~^^^1^163.^566.^14^228.^383.^~2, 3~^~04/01/2013~ -~07968~^~307~^1062.^15^35.^~1~^~A~^^^1^891.^1290.^14^985.^1138.^~2, 3~^~04/01/2013~ -~07968~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07968~^~319~^9.^5^1.^~1~^~A~^^^1^6.^12.^4^6.^12.^~2, 3~^~04/01/2013~ -~07968~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07968~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~324~^35.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~07968~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~601~^73.^11^2.^~1~^~A~^^^1^63.^86.^10^68.^78.^~2, 3~^~04/01/2013~ -~07969~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~268~^1395.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~301~^40.^15^5.^~1~^~A~^^^1^15.^92.^14^27.^52.^~2, 3~^~04/01/2013~ -~07969~^~304~^15.^15^0.^~1~^~A~^^^1^14.^16.^14^14.^15.^~2, 3~^~04/01/2013~ -~07969~^~305~^199.^15^8.^~1~^~A~^^^1^167.^275.^14^180.^218.^~2, 3~^~04/01/2013~ -~07969~^~306~^304.^15^30.^~1~^~A~^^^1^176.^564.^14^239.^368.^~2, 3~^~04/01/2013~ -~07969~^~307~^1046.^15^37.^~1~^~A~^^^1^910.^1330.^14^966.^1125.^~2, 3~^~04/01/2013~ -~07969~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07969~^~319~^10.^5^2.^~1~^~A~^^^1^4.^15.^4^3.^15.^~2, 3~^~04/01/2013~ -~07969~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07969~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~324~^9.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~601~^73.^11^2.^~1~^~A~^^^1^63.^90.^10^67.^78.^~2, 3~^~04/01/2013~ -~07970~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~268~^1359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~301~^24.^15^1.^~1~^~A~^^^1^10.^121.^4^20.^27.^~2, 3~^~05/01/2014~ -~07970~^~304~^14.^15^0.^~1~^~A~^^^1^12.^15.^3^14.^14.^~2, 3~^~04/01/2013~ -~07970~^~305~^168.^15^1.^~1~^~A~^^^1^157.^257.^4^162.^172.^~2, 3~^~05/01/2014~ -~07970~^~306~^217.^15^8.^~1~^~A~^^^1^138.^533.^3^187.^245.^~2, 3~^~05/01/2014~ -~07970~^~307~^928.^15^18.^~1~^~A~^^^1^843.^1330.^4^877.^979.^~2, 3~^~05/01/2014~ -~07970~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~07970~^~319~^8.^5^^~1~^~A~^^^1^7.^18.^^^^~2, 3~^~05/01/2014~ -~07970~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~07970~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~324~^30.^2^^~1~^~A~^^^1^29.^37.^^^^^~05/01/2014~ -~07970~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~417~^1.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07970~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07970~^~432~^1.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07970~^~435~^1.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~ -~07970~^~601~^61.^11^0.^~1~^~A~^^^1^57.^87.^3^58.^64.^~2, 3~^~05/01/2014~ -~07971~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~268~^1174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~301~^125.^18^6.^~1~^~A~^^^1^65.^167.^1^57.^192.^~2, 3~^~05/01/2014~ -~07971~^~304~^15.^18^0.^~1~^~A~^^^1^12.^17.^1^10.^19.^~2, 3~^~04/01/2013~ -~07971~^~305~^212.^18^9.^~1~^~A~^^^1^175.^263.^1^119.^305.^~2, 3~^~05/01/2014~ -~07971~^~306~^320.^18^46.^~1~^~A~^^^1^148.^520.^1^-266.^906.^~2, 3~^~05/01/2014~ -~07971~^~307~^1379.^18^111.^~1~^~A~^^^1^758.^1970.^1^28.^2730.^~2, 3~^~05/01/2014~ -~07971~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07971~^~319~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~ -~07971~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07971~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~324~^34.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~05/01/2013~ -~07971~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~417~^7.^6^0.^~1~^~A~^^^1^4.^11.^1^2.^10.^~1, 2, 3~^~04/01/2013~ -~07971~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~ -~07971~^~432~^7.^6^0.^~1~^~A~^^^1^4.^11.^1^2.^10.^^~04/01/2013~ -~07971~^~435~^7.^0^^~4~^~NC~^~07022~^^^^^^^^^~04/01/2013~ -~07971~^~601~^92.^9^0.^~1~^~A~^^^1^87.^118.^4^90.^92.^~2, 3~^~05/01/2014~ -~07972~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~268~^1196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~301~^80.^15^8.^~1~^~A~^^^1^46.^136.^4^56.^104.^~2, 3~^~06/01/2014~ -~07972~^~304~^31.^15^1.^~1~^~A~^^^1^18.^58.^6^27.^33.^~2, 3~^~06/01/2014~ -~07972~^~305~^239.^15^8.^~1~^~A~^^^1^142.^288.^8^220.^258.^~2, 3~^~06/01/2014~ -~07972~^~306~^296.^15^4.^~1~^~A~^^^1^224.^379.^7^284.^307.^~2, 3~^~06/01/2014~ -~07972~^~307~^666.^15^18.^~1~^~A~^^^1^372.^785.^8^623.^708.^~2, 3~^~06/01/2014~ -~07972~^~318~^73.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~07972~^~319~^22.^2^^~1~^~A~^^^1^21.^23.^^^^^~06/01/2014~ -~07972~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~07972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~324~^2.^0^^~4~^~BFFN~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~417~^36.^3^^~1~^~A~^^^1^34.^38.^^^^~2, 3~^~06/01/2014~ -~07972~^~431~^0.^0^^~4~^~BFPN~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~432~^36.^3^^~1~^~A~^^^1^34.^38.^^^^^~06/01/2014~ -~07972~^~435~^36.^0^^~4~^~NC~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~601~^66.^6^4.^~1~^~A~^^^1^60.^79.^1^10.^120.^~2, 3~^~06/01/2014~ -~07973~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~268~^1539.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~301~^163.^18^5.^~1~^~A~^^^1^80.^250.^5^148.^178.^~2, 3~^~07/01/2014~ -~07973~^~304~^30.^18^0.^~1~^~A~^^^1^24.^34.^7^27.^31.^~2, 3~^~07/01/2014~ -~07973~^~305~^416.^18^8.^~1~^~A~^^^1^288.^527.^7^395.^436.^~2, 3~^~07/01/2014~ -~07973~^~306~^666.^18^66.^~1~^~A~^^^1^297.^1820.^7^509.^823.^~2, 3~^~07/01/2014~ -~07973~^~307~^2021.^18^59.^~1~^~A~^^^1^1290.^2590.^8^1883.^2158.^~2, 3~^~07/01/2014~ -~07973~^~318~^63.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~07973~^~319~^19.^3^^~1~^~A~^^^1^0.^42.^^^^~1, 2, 3~^~07/01/2014~ -~07973~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~07973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~324~^50.^0^^~4~^~BFFN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~07973~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~07973~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~07973~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~601~^153.^9^4.^~1~^~A~^^^1^136.^166.^4^140.^165.^~2, 3~^~07/01/2014~ -~07974~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~301~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~305~^145.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~306~^156.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~307~^900.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07974~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~319~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~320~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~324~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~601~^100.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07976~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07976~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07976~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~304~^43.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~305~^286.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~306~^1062.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~307~^446.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~324~^5.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07976~^~417~^71.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~432~^71.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~07976~^~601~^36.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07977~^~208~^141.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~268~^591.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~301~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~305~^286.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~306~^330.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~307~^1062.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~318~^39.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~319~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~324~^27.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07977~^~601~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~305~^110.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~306~^160.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~307~^294.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~319~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~324~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~601~^59.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07979~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~301~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~305~^147.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~306~^240.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~307~^679.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~417~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07979~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07979~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~601~^70.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08002~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~268~^1628.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~304~^99.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~305~^309.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~307~^592.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~319~^739.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08002~^~320~^741.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08002~^~321~^16.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~322~^11.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~324~^267.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08002~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08002~^~338~^334.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~08002~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08002~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08010~^~208~^398.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~268~^1665.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08010~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~305~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~307~^754.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08010~^~321~^67.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~ -~08010~^~322~^44.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~ -~08010~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~334~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2007~ -~08010~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~338~^645.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~417~^1555.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08010~^~431~^1536.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2011~ -~08010~^~435~^2630.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08010~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08011~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08011~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08011~^~268~^1662.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~306~^187.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~307~^725.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~318~^149.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~319~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~ -~08011~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08011~^~321~^89.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~ -~08011~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~ -~08011~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~03/01/2003~ -~08011~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08011~^~338~^538.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~417~^1630.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~431~^1611.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08011~^~435~^2757.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08011~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~208~^417.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08012~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08012~^~268~^1745.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~304~^69.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~305~^194.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~306~^236.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~307~^742.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~318~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08012~^~321~^68.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2007~ -~08012~^~322~^44.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~ -~08012~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~334~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~ -~08012~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~338~^850.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~417~^1554.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08012~^~431~^1535.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~ -~08012~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08012~^~435~^2629.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08012~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08013~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08013~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08013~^~268~^1556.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~301~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~304~^114.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~306~^633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~307~^497.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~318~^3299.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~08013~^~319~^990.^1^^~1~^~A~^^^^^^^^^^~04/01/2017~ -~08013~^~320~^990.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~08013~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~ -~08013~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~ -~08013~^~324~^143.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~ -~08013~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~ -~08013~^~338~^159.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~417~^714.^0^^~9~^~MC~^^^^^^^^^^~04/01/2017~ -~08013~^~431~^692.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2017~ -~08013~^~432~^22.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~435~^1198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~08013~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08015~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08015~^~262~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~263~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~268~^1661.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08015~^~301~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~305~^95.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~306~^193.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~307~^594.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~319~^776.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08015~^~320~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08015~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~324~^276.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~431~^341.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~ -~08015~^~435~^583.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08015~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08018~^~208~^331.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08018~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08018~^~268~^1385.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~301~^71.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08018~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08018~^~305~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~306~^239.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08018~^~307~^759.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08018~^~318~^154.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~319~^0.^0^^~4~^~BNA~^~20422~^^^^^^^^^~01/01/2011~ -~08018~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08018~^~321~^70.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2007~ -~08018~^~322~^46.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2007~ -~08018~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~334~^0.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2003~ -~08018~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08018~^~338~^1060.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~417~^1554.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08018~^~431~^1535.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~ -~08018~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08018~^~435~^2629.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08018~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08025~^~208~^383.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~268~^1602.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08025~^~301~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~04/01/2005~ -~08025~^~304~^23.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^24.^~2, 3~^~04/01/2005~ -~08025~^~305~^98.^3^1.^~1~^~A~^^^1^96.^100.^2^92.^102.^~2, 3~^~04/01/2005~ -~08025~^~306~^106.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~307~^545.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~318~^3788.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~08025~^~319~^1136.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08025~^~320~^1136.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08025~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~324~^303.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~08025~^~417~^606.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~08025~^~431~^602.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2005~ -~08025~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2005~ -~08025~^~435~^1027.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~08025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08029~^~208~^328.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~268~^1370.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~304~^229.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~305~^449.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~306~^533.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~307~^540.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08029~^~319~^748.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08029~^~320~^749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08029~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08029~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~338~^150.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08029~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~08029~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08029~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08034~^~208~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~268~^1682.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~305~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~306~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~307~^531.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~318~^2778.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08034~^~319~^833.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08034~^~320~^833.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08034~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~324~^296.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08034~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~417~^370.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08034~^~431~^366.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08034~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~ -~08034~^~435~^627.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08034~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08037~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~08037~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~268~^2046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~08037~^~301~^76.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~304~^168.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~305~^431.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~306~^539.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~307~^26.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~318~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~320~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~321~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~324~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~338~^137.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~417~^84.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~432~^84.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~435~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~08037~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08038~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~268~^1511.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~301~^32.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~304~^124.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~305~^467.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~306~^400.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~307~^465.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~318~^4.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~ -~08038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08038~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~08038~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2007~ -~08038~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08038~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2007~ -~08038~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~338~^166.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08038~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2013~ -~08038~^~431~^326.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2013~ -~08038~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2013~ -~08038~^~435~^573.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~08038~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08039~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~268~^1573.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~304~^101.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~305~^280.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~306~^336.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~307~^470.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~ -~08039~^~319~^775.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~08039~^~320~^775.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08039~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~ -~08039~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~417~^690.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08039~^~431~^671.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2011~ -~08039~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~08039~^~435~^1159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08039~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08046~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08046~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08046~^~268~^1650.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08046~^~304~^45.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08046~^~305~^132.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~306~^142.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~307~^553.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~318~^2344.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08046~^~319~^672.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~08046~^~320~^678.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08046~^~321~^46.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~322~^30.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~324~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~08046~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~338~^681.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~417~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~08046~^~431~^294.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~08046~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~08046~^~435~^518.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~08046~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08047~^~208~^381.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~268~^1594.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~301~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08047~^~304~^82.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~305~^250.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~306~^268.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~307~^825.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~318~^3352.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08047~^~319~^961.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~08047~^~320~^968.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08047~^~321~^67.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~322~^44.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~338~^1131.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~417~^1334.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08047~^~431~^1315.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~ -~08047~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08047~^~435~^2255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08047~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~208~^374.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08049~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08049~^~268~^1565.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~301~^351.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~305~^423.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~306~^283.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~307~^501.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~318~^40.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08049~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08049~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~01/01/2011~ -~08049~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~ -~08049~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~334~^11.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~ -~08049~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08049~^~338~^99.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~417~^1305.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~431~^1286.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08049~^~435~^2205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08049~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08054~^~208~^421.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08054~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08054~^~268~^1761.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~301~^109.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~304~^121.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~305~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~306~^483.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~307~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08054~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08054~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08054~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~ -~08054~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08054~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~ -~08054~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08054~^~338~^130.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~417~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~431~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2011~ -~08054~^~432~^37.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~08054~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~08054~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08059~^~208~^406.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~268~^1699.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~306~^187.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~307~^740.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~08059~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08059~^~321~^43.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~322~^28.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08059~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08059~^~338~^727.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~417~^1555.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08059~^~431~^1536.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~ -~08059~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08059~^~435~^2630.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08059~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08061~^~208~^324.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2004~ -~08061~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2004~ -~08061~^~268~^1354.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~304~^168.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~305~^339.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~306~^525.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~307~^382.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~318~^1271.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~ -~08061~^~319~^380.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08061~^~320~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08061~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08061~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08061~^~324~^68.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~ -~08061~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08061~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08061~^~338~^101.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08061~^~417~^339.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~08061~^~431~^320.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~08061~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2004~ -~08061~^~435~^563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~08061~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08066~^~208~^383.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~262~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08066~^~263~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08066~^~268~^1602.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~304~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~305~^118.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~306~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~ -~08066~^~319~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~07/01/2003~ -~08066~^~321~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~322~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08066~^~334~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~337~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08066~^~417~^154.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2002~ -~08066~^~431~^150.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2003~ -~08066~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~07/01/2003~ -~08066~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08066~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08073~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~268~^1592.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~301~^15.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08073~^~304~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~305~^227.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~306~^176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08073~^~307~^95.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~318~^2778.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08073~^~319~^832.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08073~^~320~^832.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08073~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~324~^296.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08073~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~338~^92.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~417~^370.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~ -~08073~^~431~^351.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2003~ -~08073~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~08073~^~435~^616.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~08073~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08074~^~208~^395.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08074~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~268~^1653.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08074~^~301~^357.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~304~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~305~^536.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~306~^607.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~318~^3571.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~ -~08074~^~319~^1071.^0^^~4~^~BNA~^~08074~^^^^^^^^^~02/01/2014~ -~08074~^~320~^1071.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08074~^~321~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~ -~08074~^~322~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~ -~08074~^~324~^286.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~334~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~ -~08074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~08074~^~338~^132.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~417~^714.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~431~^696.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~435~^1201.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08074~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08081~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08081~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08081~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~301~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~304~^93.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~305~^274.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~306~^348.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~307~^102.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~318~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08081~^~319~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2011~ -~08081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~08081~^~321~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08081~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08081~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08081~^~338~^166.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~417~^170.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~431~^128.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~432~^42.^0^^~4~^~BFZN~^~08148~^^^^^^^^^~02/01/2003~ -~08081~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~08081~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08083~^~208~^385.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08083~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~268~^1611.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~301~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08083~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~305~^37.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~307~^855.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~318~^2419.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~319~^695.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~08083~^~320~^700.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~08083~^~321~^46.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~322~^30.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~338~^780.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~431~^289.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08083~^~432~^34.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08083~^~435~^525.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08083~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08084~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08084~^~268~^1598.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~08084~^~301~^45.^2^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~304~^320.^5^16.^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~305~^1146.^10^28.^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~306~^947.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~307~^4.^7^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~318~^103.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~08084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~08084~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~08084~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~08084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08084~^~338~^790.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~08084~^~417~^352.^4^20.^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08084~^~432~^352.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~08084~^~435~^352.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08085~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08085~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08085~^~268~^1558.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~08085~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~304~^272.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~305~^1011.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~306~^964.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~307~^11.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~318~^96.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~08085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~08085~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~08085~^~321~^57.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~322~^0.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~08085~^~334~^0.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~337~^0.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~338~^721.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~417~^606.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~ -~08085~^~431~^285.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2014~ -~08085~^~432~^321.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~435~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~08085~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08090~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~08090~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~08090~^~268~^1549.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~301~^4.^6^0.^~1~^~A~^^^1^3.^7.^5^2.^6.^~2, 3~^~11/01/2008~ -~08090~^~304~^36.^6^3.^~1~^~A~^^^1^17.^43.^5^25.^46.^~2, 3~^~11/01/2008~ -~08090~^~305~^111.^6^11.^~1~^~A~^^^1^56.^130.^5^81.^140.^~2, 3~^~11/01/2008~ -~08090~^~306~^141.^6^9.^~1~^~A~^^^1^98.^160.^5^118.^164.^~4~^~11/01/2008~ -~08090~^~307~^1.^5^0.^~1~^~A~^^^1^1.^1.^4^0.^1.^~1, 2, 3~^~11/01/2008~ -~08090~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~08090~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08090~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~417~^171.^6^8.^~1~^~A~^^^1^150.^199.^5^148.^192.^~2, 3~^~05/01/2009~ -~08090~^~431~^132.^6^12.^~1~^~A~^^^1^99.^184.^5^99.^163.^~2, 3~^~05/01/2009~ -~08090~^~432~^39.^6^5.^~1~^~AS~^^^1^15.^51.^5^25.^51.^~2, 3~^~11/01/2008~ -~08090~^~435~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08091~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08091~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08091~^~301~^1.^12^0.^~1~^~A~^^^1^0.^2.^5^0.^1.^~2, 3~^~11/01/2008~ -~08091~^~304~^7.^12^0.^~1~^~A~^^^1^3.^10.^8^5.^8.^~2, 3~^~11/01/2008~ -~08091~^~305~^20.^12^1.^~1~^~A~^^^1^9.^29.^8^16.^24.^~2, 3~^~11/01/2008~ -~08091~^~306~^27.^12^1.^~1~^~A~^^^1^17.^37.^7^23.^30.^~2, 3~^~11/01/2008~ -~08091~^~307~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2009~ -~08091~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08091~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~ -~08091~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~ -~08091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08091~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~ -~08091~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~417~^28.^12^2.^~1~^~A~^^^1^16.^39.^9^22.^32.^~2, 3~^~05/01/2009~ -~08091~^~431~^14.^12^1.^~1~^~A~^^^1^6.^22.^10^10.^17.^~2, 3~^~05/01/2009~ -~08091~^~432~^14.^12^1.^~1~^~AS~^^^1^9.^20.^9^11.^16.^~2, 3~^~11/01/2008~ -~08091~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08092~^~208~^343.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~262~^0.^0^^~4~^~BFSN~^~08090~^~N~^^^^^^^^~12/01/2008~ -~08092~^~263~^0.^0^^~4~^~BFSN~^~08090~^~N~^^^^^^^^~12/01/2008~ -~08092~^~268~^1436.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~301~^378.^4^4.^~1~^~A~^^^1^370.^390.^3^362.^392.^~2, 3~^~12/01/2008~ -~08092~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~306~^135.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~307~^1121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08092~^~319~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~320~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~321~^1.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~322~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~334~^1.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~337~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~338~^5.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~417~^176.^4^6.^~1~^~A~^^^1^165.^189.^3^157.^195.^~2, 3~^~12/01/2008~ -~08092~^~431~^134.^4^10.^~1~^~A~^^^1^111.^154.^3^100.^168.^~2, 3~^~12/01/2008~ -~08092~^~432~^42.^4^5.^~1~^~AS~^^^1^33.^56.^3^25.^58.^~2, 3~^~12/01/2008~ -~08092~^~435~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08092~^~601~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~12/01/2008~ -~08093~^~208~^74.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~268~^309.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~301~^64.^8^0.^~1~^~A~^^^1^51.^75.^3^61.^66.^~2, 3~^~12/01/2008~ -~08093~^~304~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~305~^14.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~306~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~307~^227.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~417~^27.^8^1.^~1~^~A~^^^1^16.^39.^5^21.^31.^~2, 3~^~05/01/2009~ -~08093~^~431~^15.^8^1.^~1~^~A~^^^1^9.^23.^5^12.^17.^~2, 3~^~05/01/2009~ -~08093~^~432~^11.^8^0.^~1~^~AS~^^^1^7.^16.^5^8.^13.^~2, 3~^~12/01/2008~ -~08093~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08094~^~208~^363.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08094~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08094~^~268~^1519.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~304~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~305~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~306~^132.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~307~^1644.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~318~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~319~^3.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~ -~08094~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08094~^~321~^2.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~ -~08094~^~322~^0.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~ -~08094~^~324~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~334~^1.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~ -~08094~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08094~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08094~^~417~^168.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~431~^154.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~432~^14.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2014~ -~08094~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08094~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08096~^~208~^340.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~268~^1421.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~305~^93.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~307~^1523.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~ -~08096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08096~^~417~^178.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08100~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08100~^~262~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~263~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~268~^1548.^0^^~4~^^^^^^^^^^^~03/01/2008~ -~08100~^~301~^5.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~304~^23.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~305~^124.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~306~^143.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~307~^6.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/2003~ -~08100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08100~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~12/01/2003~ -~08100~^~321~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~322~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~324~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~01/01/2011~ -~08100~^~334~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~337~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~338~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~417~^29.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08100~^~432~^29.^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~08100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08102~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08102~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~268~^1548.^0^^~4~^^^^^^^^^^^~10/01/2008~ -~08102~^~301~^606.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~ -~08102~^~304~^27.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~305~^115.^3^2.^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~306~^120.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~307~^7.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08102~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08102~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08102~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08102~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08102~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~417~^121.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~ -~08102~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~08102~^~432~^34.^4^4.^~1~^^^^^^^^^^^ -~08102~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08102~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08103~^~208~^50.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~268~^208.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~301~^87.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~304~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~305~^15.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~306~^16.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~307~^6.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~318~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~324~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08103~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~338~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~417~^12.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~431~^8.^0^^~4~^~RP~^^~Y~^^^^^^^^~11/01/2008~ -~08103~^~432~^3.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~08103~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08104~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08104~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08104~^~268~^1508.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~301~^711.^11^76.^~1~^~A~^^^1^330.^1030.^10^540.^881.^~2, 3~^~10/01/2008~ -~08104~^~304~^45.^11^0.^~1~^~A~^^^1^40.^50.^10^43.^47.^~2, 3~^~10/01/2008~ -~08104~^~305~^252.^11^36.^~1~^~A~^^^1^150.^487.^10^171.^332.^~2, 3~^~10/01/2008~ -~08104~^~306~^153.^11^2.^~1~^~A~^^^1^139.^177.^10^146.^159.^~2, 3~^~10/01/2008~ -~08104~^~307~^124.^11^50.^~1~^~A~^^^1^7.^435.^10^12.^236.^~1, 2, 3~^~10/01/2008~ -~08104~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~ -~08104~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08104~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~338~^16.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~417~^121.^1^^~8~^~LC~^^~Y~^^^^^^^^~10/01/2008~ -~08104~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~08104~^~432~^34.^4^4.^~1~^^^^^^^^^^^ -~08104~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~08105~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~268~^231.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~301~^97.^26^6.^~1~^~A~^^^1^48.^157.^25^82.^111.^~2, 3~^~11/01/2008~ -~08105~^~304~^7.^26^0.^~1~^~A~^^^1^4.^9.^25^6.^7.^~2, 3~^~11/01/2008~ -~08105~^~305~^37.^26^2.^~1~^~A~^^^1^20.^61.^25^31.^41.^~2, 3~^~11/01/2008~ -~08105~^~306~^23.^26^0.^~1~^~A~^^^1^16.^29.^25^22.^24.^~2, 3~^~11/01/2008~ -~08105~^~307~^18.^26^3.^~1~^~A~^^^1^4.^51.^25^10.^24.^~1, 2, 3~^~11/01/2008~ -~08105~^~318~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~ -~08105~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08105~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~ -~08105~^~417~^77.^26^14.^~1~^~A~^^^1^20.^237.^25^46.^107.^~2, 3~^~11/01/2008~ -~08105~^~431~^60.^26^13.^~1~^~A~^^^1^8.^207.^25^32.^88.^~2, 3~^~11/01/2008~ -~08105~^~432~^17.^26^1.^~1~^~AS~^^^1^4.^41.^25^13.^20.^~2, 3~^~11/01/2008~ -~08105~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08106~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08106~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~268~^1531.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~08106~^~301~^357.^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~304~^34.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~305~^103.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~306~^115.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~307~^571.^0^^~9~^~MC~^^^^^^^^^^~09/01/2012~ -~08106~^~318~^4464.^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~319~^1341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~08106~^~320~^1341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~08106~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08106~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08106~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08106~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~338~^16.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~417~^357.^0^^~8~^~LC~^^^^^^^^^^~04/01/2003~ -~08106~^~431~^323.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~08106~^~432~^34.^4^4.^~1~^^^^^^^^^^^ -~08106~^~435~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~08106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08107~^~208~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~268~^259.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~301~^64.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~305~^18.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~306~^20.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~307~^102.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2012~ -~08107~^~318~^773.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~319~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~320~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~431~^56.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~08107~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08116~^~208~^365.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~08116~^~268~^1527.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~301~^286.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~305~^157.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~306~^100.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~08116~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2015~ -~08116~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~338~^14.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~417~^1140.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~431~^1121.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08116~^~435~^1925.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~08116~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08120~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08120~^~268~^1586.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08120~^~301~^52.^33^0.^~1~^^^^^^^^^^^~11/01/2006~ -~08120~^~304~^138.^4^1.^~1~^~A~^^^1^133.^141.^3^132.^143.^~2, 3~^~10/01/2006~ -~08120~^~305~^410.^4^10.^~1~^~A~^^^1^384.^434.^3^376.^443.^~2, 3~^~10/01/2006~ -~08120~^~306~^362.^4^4.^~1~^~A~^^^1^351.^369.^3^348.^375.^~2, 3~^~10/01/2006~ -~08120~^~307~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^4.^7.^~2, 3~^~11/01/2006~ -~08120~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~08120~^~320~^0.^1^^~1~^~A~^^~N~^^^^^^^^~11/01/2006~ -~08120~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~08120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~08120~^~338~^180.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~08120~^~417~^32.^24^3.^~1~^^^^^^^^^^^~11/01/2006~ -~08120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08120~^~432~^32.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~08120~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08121~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08121~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08121~^~301~^9.^4^0.^~1~^~A~^^^1^8.^10.^3^8.^10.^~2, 3~^~11/01/2006~ -~08121~^~304~^27.^8^0.^~1~^~A~^^^1^25.^29.^7^26.^28.^~2, 3~^~11/01/2006~ -~08121~^~305~^77.^8^2.^~1~^~A~^^^1^71.^90.^7^71.^82.^~2, 3~^~11/01/2006~ -~08121~^~306~^70.^8^1.^~1~^~A~^^^1^63.^77.^7^65.^73.^~2, 3~^~11/01/2006~ -~08121~^~307~^4.^8^0.^~1~^~A~^^^1^3.^6.^7^2.^4.^~1, 2, 3~^~11/01/2006~ -~08121~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08121~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~338~^180.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~417~^6.^8^0.^~1~^~A~^^^1^4.^10.^7^4.^7.^~2, 3~^~11/01/2006~ -~08121~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2006~ -~08121~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~08121~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~08122~^~208~^362.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08122~^~268~^1515.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08122~^~301~^351.^4^11.^~1~^~A~^^^1^328.^383.^3^313.^387.^~2, 3~^~08/01/2012~ -~08122~^~304~^128.^4^1.^~1~^~A~^^^1^125.^131.^3^123.^131.^~2, 3~^~08/01/2012~ -~08122~^~305~^423.^4^3.^~1~^~A~^^^1^415.^433.^3^410.^435.^~2, 3~^~08/01/2012~ -~08122~^~306~^366.^4^1.^~1~^~A~^^^1^363.^369.^3^360.^370.^~2, 3~^~08/01/2012~ -~08122~^~307~^220.^4^7.^~1~^~A~^^^1^206.^240.^3^196.^242.^~2, 3~^~08/01/2012~ -~08122~^~318~^2574.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~ -~08122~^~319~^772.^2^^~1~^~A~^^^1^759.^786.^1^^^^~08/01/2012~ -~08122~^~320~^772.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08122~^~417~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~08/01/2012~ -~08122~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~08/01/2012~ -~08122~^~432~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~05/01/2010~ -~08122~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08123~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08123~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08123~^~301~^80.^2^^~1~^~A~^^^1^70.^90.^1^^^^~12/01/2006~ -~08123~^~304~^26.^4^1.^~1~^~A~^^^1^24.^29.^3^22.^29.^~2, 3~^~12/01/2006~ -~08123~^~305~^77.^4^4.^~1~^~A~^^^1^71.^89.^3^63.^89.^~2, 3~^~12/01/2006~ -~08123~^~306~^61.^4^3.^~1~^~A~^^^1^53.^71.^3^49.^72.^~2, 3~^~12/01/2006~ -~08123~^~307~^49.^4^2.^~1~^~A~^^^1^44.^56.^3^40.^57.^~2, 3~^~12/01/2006~ -~08123~^~318~^433.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~319~^130.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~320~^130.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08123~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~417~^44.^4^3.^~1~^~A~^^^1^37.^52.^3^33.^55.^~2, 3~^~12/01/2006~ -~08123~^~431~^39.^0^^~4~^~NR~^^~Y~^^^^^^^^~12/01/2006~ -~08123~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08123~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08124~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08124~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08124~^~268~^1532.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~301~^243.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~304~^87.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~305~^294.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~318~^2454.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08128~^~208~^369.^0^^~4~^~BFZN~^~08410~^^^^^^^^^~08/01/2012~ -~08128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08128~^~268~^1542.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~08128~^~301~^234.^6^8.^~1~^~A~^^~Y~^1^211.^264.^4^209.^258.^~2, 3~^~08/01/2012~ -~08128~^~304~^92.^6^0.^~1~^~A~^^^1^75.^101.^4^89.^94.^~2, 3~^~08/01/2012~ -~08128~^~305~^322.^6^2.^~1~^~A~^^^1^245.^362.^3^313.^329.^~2, 3~^~08/01/2012~ -~08128~^~306~^284.^6^2.^~1~^~A~^^^1^235.^310.^4^276.^290.^~2, 3~^~08/01/2012~ -~08128~^~307~^434.^6^16.^~1~^~A~^^^1^373.^478.^3^380.^487.^~2, 3~^~08/01/2012~ -~08128~^~318~^1467.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~ -~08128~^~319~^440.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08128~^~320~^440.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08128~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2010~ -~08128~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08128~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~417~^191.^0^^~4~^~BFZN~^~08410~^~Y~^^^^^^^^~08/01/2012~ -~08128~^~431~^175.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~ -~08128~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08129~^~208~^96.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~268~^402.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~301~^61.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~304~^24.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~305~^80.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~306~^71.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~307~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~318~^366.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~319~^110.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~320~^110.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~324~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2010~ -~08129~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~338~^31.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~417~^48.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~431~^43.^0^^~4~^~RP~^^~Y~^^^^^^^^~08/01/2012~ -~08129~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08129~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08130~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~08130~^~268~^1540.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~08130~^~301~^226.^6^3.^~1~^~A~^^^1^217.^241.^5^215.^236.^~2, 3~^~04/01/2014~ -~08130~^~304~^88.^6^0.^~1~^~A~^^^1^85.^90.^5^86.^89.^~2, 3~^~04/01/2014~ -~08130~^~305~^297.^6^3.^~1~^~A~^^^1^283.^303.^5^289.^305.^~2, 3~^~04/01/2014~ -~08130~^~306~^424.^6^6.^~1~^~A~^^^1^410.^455.^5^406.^441.^~2, 3~^~04/01/2014~ -~08130~^~307~^506.^6^10.^~1~^~A~^^^1^478.^538.^5^479.^532.^~2, 3~^~04/01/2014~ -~08130~^~318~^1735.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~08130~^~319~^520.^3^14.^~1~^~A~^^^1^505.^548.^2^458.^581.^~2, 3~^~04/01/2014~ -~08130~^~320~^520.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~08130~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08130~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08130~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08130~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08130~^~338~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08130~^~417~^128.^3^1.^~1~^~A~^^^1^126.^130.^2^123.^133.^~2, 3~^~04/01/2014~ -~08130~^~431~^114.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08130~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08130~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08133~^~208~^88.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~268~^369.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~301~^56.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~304~^19.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~305~^64.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~306~^85.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~307~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~318~^460.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~319~^138.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~320~^138.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~324~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~338~^24.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~417~^50.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~431~^45.^0^^~4~^~RP~^^~Y~^^^^^^^^~08/01/2012~ -~08133~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08133~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08138~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~268~^1620.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~304~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~305~^232.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~307~^667.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~319~^500.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~08138~^~320~^500.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08138~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~338~^76.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08138~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08138~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08142~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~268~^1494.^0^^~4~^^^^^^^^^^^ -~08142~^~301~^500.^1^^~8~^~LC~^^^^^^^^^^~05/01/2011~ -~08142~^~304~^130.^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~305~^384.^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~306~^492.^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~307~^13.^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~08142~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~338~^292.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~417~^59.^6^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~432~^59.^6^^~1~^^^^^^^^^^^~02/01/2003~ -~08142~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~08142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08143~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08143~^~268~^234.^0^^~4~^^^^^^^^^^^ -~08143~^~301~^80.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~08143~^~304~^20.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~305~^60.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~306~^77.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~307~^2.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08143~^~417~^7.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08143~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~08143~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~08143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08144~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08144~^~268~^1431.^0^^~4~^^^^^^^^^^^~07/01/2004~ -~08144~^~301~^40.^2^^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~304~^122.^18^2.^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~305~^379.^18^7.^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~306~^389.^5^11.^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~307~^2.^17^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08144~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~08144~^~321~^0.^0^^~7~^~Z~^~20072~^^^^^^^^^~07/01/2004~ -~08144~^~322~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~08144~^~334~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~337~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~338~^227.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~417~^78.^10^1.^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08144~^~432~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~08144~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08145~^~208~^62.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~262~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~263~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~268~^259.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08145~^~301~^7.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~304~^22.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~305~^69.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~306~^71.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~307~^0.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~08145~^~318~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2007~ -~08145~^~319~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~320~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~321~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~322~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~334~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~337~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~338~^41.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~417~^14.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~05/01/2007~ -~08145~^~431~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~432~^14.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~05/01/2007~ -~08145~^~435~^14.^0^^~4~^~NC~^~08183~^^^^^^^^^~05/01/2007~ -~08145~^~601~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08146~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~262~^0.^0^^~4~^~BFSN~^~20071~^^^^^^^^^~12/01/2002~ -~08146~^~263~^0.^0^^~4~^~BFSN~^~20071~^~N~^^^^^^^^~12/01/2002~ -~08146~^~268~^1531.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~304~^133.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~305~^331.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~306~^364.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08146~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~01/01/2011~ -~08146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08146~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~08146~^~417~^154.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2002~ -~08146~^~431~^122.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~ -~08146~^~432~^32.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2011~ -~08146~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08146~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08147~^~208~^337.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~08147~^~262~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~ -~08147~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~08147~^~268~^1410.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~ -~08147~^~301~^56.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~304~^130.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~305~^375.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~306~^381.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~318~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~ -~08147~^~319~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~ -~08147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~08147~^~321~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~ -~08147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~324~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~06/01/2015~ -~08147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~417~^43.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~432~^43.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08147~^~601~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~ -~08148~^~208~^351.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08148~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08148~^~268~^1469.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~304~^133.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~305~^384.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~306~^387.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08148~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08148~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2013~ -~08148~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~338~^175.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~417~^40.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2011~ -~08148~^~432~^40.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~08148~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~08148~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08156~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08156~^~268~^1682.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~08156~^~301~^6.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~304~^25.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~305~^98.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~306~^113.^5^2.^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~307~^3.^30^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08156~^~417~^19.^10^3.^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08156~^~432~^19.^10^3.^~1~^^^^^^^^^^^~03/01/2001~ -~08156~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~08156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08157~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08157~^~268~^1523.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~08157~^~301~^28.^10^1.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~304~^145.^11^4.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~305~^355.^10^17.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~306~^348.^16^12.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~307~^4.^30^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08157~^~417~^32.^10^4.^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08157~^~432~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~08157~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~08157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08160~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08160~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~08160~^~301~^2.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~304~^27.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~305~^73.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~306~^137.^22^7.^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~307~^1.^154^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~08160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08160~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~08160~^~321~^97.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~322~^63.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~338~^1355.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~417~^5.^3^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08160~^~432~^5.^3^0.^~1~^^^^^^^^^^^~11/01/2002~ -~08160~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~08160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08161~^~208~^71.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~262~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~263~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08161~^~268~^298.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08161~^~301~^1.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~304~^7.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~305~^20.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~306~^27.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~307~^223.^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08161~^~318~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~319~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~320~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~321~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~322~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08161~^~334~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~337~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~338~^1.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~417~^28.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~431~^14.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~432~^14.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~435~^38.^0^^~4~^~NC~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~601~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08164~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^1^0.^1.^~2, 3~^~12/01/2008~ -~08164~^~304~^5.^4^1.^~1~^~A~^^^1^3.^7.^2^-1.^11.^~2, 3~^~12/01/2008~ -~08164~^~305~^14.^4^3.^~1~^~A~^^^1^9.^19.^2^0.^28.^~2, 3~^~12/01/2008~ -~08164~^~306~^22.^4^2.^~1~^~A~^^^1^17.^26.^2^8.^35.^~2, 3~^~12/01/2008~ -~08164~^~307~^2.^0^^~4~^~BFSN~^~08091~^^^^^^^^^~12/01/2008~ -~08164~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~08164~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~08164~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~338~^197.^0^^~4~^~RP~^^^^^^^^^^~12/01/2008~ -~08164~^~417~^27.^4^3.^~1~^~A~^^^1^18.^30.^1^-11.^65.^~2, 3~^~12/01/2008~ -~08164~^~431~^14.^4^1.^~1~^~A~^^^1^10.^15.^1^-2.^29.^~2, 3~^~12/01/2008~ -~08164~^~432~^13.^4^1.^~1~^~AS~^^^1^8.^15.^1^-8.^35.^~2, 3~^~12/01/2008~ -~08164~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~601~^0.^0^^~4~^~BFSN~^~08091~^^^^^^^^^~12/01/2008~ -~08165~^~208~^65.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~262~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~263~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08165~^~268~^273.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08165~^~301~^1.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~304~^5.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~305~^14.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~306~^22.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~307~^223.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08165~^~318~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~05/01/2009~ -~08165~^~319~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~320~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~321~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~322~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08165~^~334~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~337~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~338~^197.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~417~^27.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~431~^14.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~432~^13.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~435~^37.^0^^~4~^~NC~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~601~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08168~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08168~^~262~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~263~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~268~^218.^0^^~4~^^^^^^^^^^^ -~08168~^~301~^1.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~304~^3.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~305~^17.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~306~^20.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~307~^173.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08168~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~321~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~322~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~334~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~337~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~338~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~417~^3.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08168~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~08168~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08169~^~208~^50.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~268~^211.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~301~^89.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~304~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~305~^16.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~306~^17.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~307~^129.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~318~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~324~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08169~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~338~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~417~^17.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~431~^12.^0^^~4~^~RP~^^~Y~^^^^^^^^~11/01/2008~ -~08169~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08169~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~636~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08172~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08172~^~268~^1544.^0^^~4~^^^^^^^^^^^ -~08172~^~301~^14.^16^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~304~^13.^16^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~305~^88.^16^2.^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~306~^94.^16^4.^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~307~^3.^43^0.^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08172~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08172~^~417~^24.^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08172~^~432~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~08172~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~08172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~ -~08173~^~208~^53.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~262~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~263~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~268~^220.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~301~^97.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~304~^7.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~305~^37.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~306~^23.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~307~^126.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08173~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~319~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~337~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~338~^2.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~417~^77.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~431~^60.^0^^~4~^~BFZN~^^~Y~^^^^^^^^~11/01/2008~ -~08173~^~432~^17.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08173~^~601~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08177~^~208~^363.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~262~^3.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~08177~^~263~^97.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~08177~^~268~^1520.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~301~^375.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~304~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~305~^124.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~306~^245.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~307~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~318~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08177~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~322~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~334~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~337~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~338~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08177~^~417~^1143.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~431~^1115.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~432~^28.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08177~^~435~^1924.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08177~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08180~^~208~^71.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~262~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~263~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~268~^297.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08180~^~301~^9.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~304~^27.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~305~^77.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~306~^70.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~307~^71.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~08180~^~318~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~319~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~320~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~321~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~322~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~334~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~337~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~338~^180.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~417~^6.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~431~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~432~^6.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~435~^6.^0^^~4~^~NC~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~601~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08182~^~208~^59.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~268~^247.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~301~^80.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~08182~^~304~^21.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~305~^60.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~306~^77.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~307~^238.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08182~^~318~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~338~^45.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~432~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~08182~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08183~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~268~^259.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~301~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~304~^22.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~305~^69.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~307~^233.^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08183~^~318~^0.^0^^~4~^^^~N~^^^^^^^^~03/01/2007~ -~08183~^~319~^0.^0^^~4~^~NR~^^~N~^^^^^^^^~03/01/2007~ -~08183~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2007~ -~08183~^~321~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08183~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~338~^41.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~417~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~08183~^~431~^0.^0^^~4~^~NR~^^~N~^^^^^^^^~03/01/2007~ -~08183~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~08183~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~08183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~08191~^~208~^352.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~268~^1473.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~ -~08191~^~301~^13.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~304~^93.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~305~^276.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~307~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~318~^0.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~319~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~08191~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~08191~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08191~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~417~^192.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~431~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~08191~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~08191~^~435~^313.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08191~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08192~^~208~^395.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~268~^1653.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~301~^41.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~304~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~305~^162.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08192~^~306~^195.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~307~^341.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~318~^1364.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~ -~08192~^~319~^398.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08192~^~320~^400.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08192~^~321~^19.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~322~^7.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~324~^73.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08192~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~338~^205.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~417~^182.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08192~^~431~^163.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2003~ -~08192~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~07/01/2005~ -~08192~^~435~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~08192~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08200~^~208~^334.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08200~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08200~^~268~^1396.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08200~^~305~^346.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08200~^~306~^322.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~307~^7.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08200~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08200~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~ -~08200~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~08200~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08200~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~08200~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08200~^~338~^182.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~417~^29.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08200~^~432~^29.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08200~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08204~^~208~^405.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~262~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~08204~^~263~^136.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~08204~^~268~^1695.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~301~^70.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~304~^36.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~305~^141.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~306~^176.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~307~^534.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~08204~^~318~^4409.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~319~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~08204~^~320~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~08204~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08204~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08204~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08204~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08204~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08204~^~417~^353.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~431~^334.^0^^~4~^~NC~^^~Y~^^^^^^^^~03/01/2003~ -~08204~^~432~^19.^0^^~4~^~CAAN~^^^^^^^^^^~03/01/2003~ -~08204~^~435~^587.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~08204~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08206~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~262~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~263~^198.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~268~^1626.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~306~^201.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~307~^350.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~319~^477.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~08206~^~320~^481.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08206~^~321~^35.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~322~^23.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08206~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08206~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08206~^~338~^543.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~ -~08206~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~08206~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~08206~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08210~^~208~^374.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08210~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08210~^~268~^1563.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~301~^387.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~304~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~305~^390.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~306~^260.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~307~^463.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~318~^35.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08210~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08210~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08210~^~417~^1318.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08210~^~431~^1299.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~ -~08210~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08210~^~435~^2227.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08210~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08211~^~208~^412.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08211~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~268~^1726.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~304~^43.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~305~^133.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~306~^167.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~307~^679.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~318~^1496.^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~319~^434.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~08211~^~320~^436.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~08211~^~321~^23.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~322~^15.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08211~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~08211~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08211~^~338~^398.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~417~^563.^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~431~^544.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~08211~^~435~^945.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~08211~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08214~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~301~^201.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08214~^~305~^371.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08214~^~306~^357.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08214~^~307~^347.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08214~^~318~^1188.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~319~^356.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~ -~08214~^~320~^356.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08214~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~417~^722.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08214~^~431~^703.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2011~ -~08214~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2002~ -~08214~^~435~^1214.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~08214~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08215~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08215~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08215~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08215~^~268~^1585.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~301~^210.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~304~^114.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~305~^369.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08215~^~306~^359.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~307~^344.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~318~^1182.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~319~^354.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~ -~08215~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08215~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08215~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~417~^726.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08215~^~431~^708.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~ -~08215~^~432~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~08215~^~435~^1221.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~08215~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08216~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~268~^1555.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~08216~^~301~^242.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~304~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~305~^518.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~306~^438.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~307~^365.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~318~^1224.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~319~^358.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~ -~08216~^~320~^359.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08216~^~321~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~322~^9.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~338~^310.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~417~^737.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~ -~08216~^~431~^718.^0^^~4~^~NR~^^~Y~^^^^^^^^~12/01/2002~ -~08216~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2002~ -~08216~^~435~^1240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08216~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08218~^~208~^412.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08218~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08218~^~268~^1724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~301~^101.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~304~^110.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~307~^54.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~319~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~01/01/2011~ -~08218~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08218~^~321~^5.^0^^~4~^~BNA~^~20080~^^^^^^^^^~01/01/2011~ -~08218~^~322~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2007~ -~08218~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~334~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2007~ -~08218~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08218~^~338~^114.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~417~^33.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~08218~^~432~^33.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~08218~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08218~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~208~^388.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08220~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08220~^~268~^1623.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~301~^65.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~304~^100.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~305~^316.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~306~^431.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~307~^234.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~318~^21.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~319~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~ -~08220~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08220~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~ -~08220~^~322~^5.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~ -~08220~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~ -~08220~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~ -~08220~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08220~^~338~^224.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~417~^29.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~ -~08220~^~432~^29.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~08220~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~08220~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08221~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~268~^1542.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~301~^413.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~304~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~305~^115.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~306~^121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~307~^1197.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~318~^672.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~417~^171.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08225~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~262~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~263~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~301~^307.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~304~^84.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~305~^300.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~306~^280.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~307~^499.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~318~^3142.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08225~^~319~^943.^0^^~4~^~BNA~^^^^^^^^^^~11/01/2002~ -~08225~^~320~^943.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08225~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~322~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~324~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08225~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~337~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~338~^118.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~417~^251.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~ -~08225~^~431~^228.^0^^~4~^~NR~^^~Y~^^^^^^^^~11/01/2002~ -~08225~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~08225~^~435~^411.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08225~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08228~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~262~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~263~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~301~^297.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~305~^296.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~306~^374.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~307~^516.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~318~^2992.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~322~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~324~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~334~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~337~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~338~^103.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~417~^239.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~431~^202.^0^^~4~^~O~^^^^^^^^^^~12/01/2000~ -~08228~^~432~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08228~^~435~^381.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08228~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~208~^364.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~268~^1525.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08231~^~301~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~304~^241.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~305~^694.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~306~^579.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~318~^100.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08231~^~417~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08231~^~432~^38.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08231~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08231~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08236~^~208~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~268~^180.^0^^~4~^^^^^^^^^^^ -~08236~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~305~^83.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~306~^69.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~307~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~318~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08236~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08236~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08236~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2000~ -~08236~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~08236~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08240~^~208~^43.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~268~^180.^0^^~4~^^^^^^^^^^^ -~08240~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~305~^82.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~306~^69.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~307~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~318~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08240~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08240~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~08240~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2000~ -~08240~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~08240~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08249~^~208~^61.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~08249~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~08249~^~268~^255.^0^^~4~^^^^^^^^^^^ -~08249~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~305~^64.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~306~^75.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~307~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08249~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08249~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~431~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~ -~08249~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~ -~08249~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2001~ -~08249~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08252~^~208~^61.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~268~^255.^0^^~4~^^^^^^^^^^^ -~08252~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~305~^63.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~306~^75.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~307~^70.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~08252~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~08252~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~431~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~ -~08252~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~ -~08252~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2001~ -~08252~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08290~^~208~^353.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~268~^1477.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~304~^144.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~305~^327.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~306~^480.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~08290~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~08290~^~318~^353.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~319~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~08290~^~320~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~08290~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08290~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08290~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08290~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08290~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08290~^~417~^141.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~431~^122.^0^^~4~^~NC~^^~Y~^^^^^^^^~03/01/2003~ -~08290~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~08290~^~435~^226.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~08290~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08305~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~268~^1630.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~304~^72.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~305~^237.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~306~^212.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~307~^596.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2003~ -~08305~^~319~^738.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~08305~^~320~^740.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08305~^~321~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~322~^12.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~338~^286.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~417~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2003~ -~08305~^~431~^314.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2003~ -~08305~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~08305~^~435~^553.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08305~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08314~^~208~^348.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~268~^1458.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~301~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~305~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08314~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08314~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08316~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~268~^1510.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~301~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~305~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~08316~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08316~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08346~^~208~^401.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~268~^1677.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~305~^57.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~306~^110.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~307~^806.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~ -~08346~^~319~^475.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~08346~^~320~^479.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~08346~^~321~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~322~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~338~^635.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~ -~08346~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~ -~08346~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08346~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~08346~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~208~^396.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08347~^~268~^1657.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~305~^75.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~306~^109.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~307~^633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08347~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08347~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08347~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08347~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~208~^346.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~268~^1448.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~305~^121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~306~^114.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~307~^924.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~318~^1515.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~320~^455.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08348~^~324~^121.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~417~^1210.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~431~^1206.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08348~^~435~^2054.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08348~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08349~^~208~^391.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08349~^~268~^1634.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~301~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~305~^78.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~306~^104.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~307~^453.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~318~^1563.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~319~^444.^0^^~4~^~NR~^^^^^^^^^^~01/01/2015~ -~08349~^~320~^448.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08349~^~321~^37.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~322~^24.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~324~^125.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08349~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08349~^~338~^625.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~417~^625.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~431~^606.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~ -~08349~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~ -~08349~^~435~^1049.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~08349~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08351~^~208~^407.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~268~^1704.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~304~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08351~^~305~^213.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~306~^296.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~307~^774.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~08351~^~318~^159.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08351~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08351~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08351~^~417~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08351~^~432~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08351~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08351~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~268~^1558.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~304~^136.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~305~^429.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~306~^489.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~307~^653.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~318~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08352~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08352~^~417~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~432~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08352~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08353~^~208~^382.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~268~^1597.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~304~^106.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08353~^~305~^347.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~306~^325.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~307~^275.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~318~^17.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08353~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08353~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08353~^~417~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08353~^~432~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08353~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~268~^1587.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~301~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~304~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~305~^156.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~306~^199.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~307~^758.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~318~^162.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08354~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08354~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08354~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08354~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~208~^382.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~268~^1599.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~305~^166.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~306~^226.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~307~^452.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~318~^186.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08355~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08355~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08355~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08355~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08355~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~208~^200.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~268~^839.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~08363~^~301~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~304~^606.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~305~^1314.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~306~^1284.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~307~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08363~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~12/01/2006~ -~08363~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~08363~^~417~^193.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~432~^193.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~08363~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08365~^~208~^348.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~268~^1456.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~301~^45.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08365~^~304~^172.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~305~^362.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~307~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08365~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08365~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2002~ -~08365~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08365~^~417~^51.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~07/01/2014~ -~08365~^~432~^51.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~08365~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~268~^1532.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~304~^313.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~305~^1130.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~306~^1097.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~307~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~318~^127.^0^^~9~^~MC~^^^^^^^^^^~08/01/2014~ -~08366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~08366~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~08366~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~08/01/2014~ -~08366~^~417~^669.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2002~ -~08366~^~431~^317.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2002~ -~08366~^~432~^352.^0^^~4~^~BFZN~^~08084~^^^^^^^^^~07/01/2002~ -~08366~^~435~^892.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08366~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08402~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~262~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~263~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08402~^~301~^47.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~304~^270.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~305~^458.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~319~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~320~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~321~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~322~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08402~^~334~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~337~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~338~^180.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~417~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~431~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~432~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08402~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08409~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08409~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08409~^~268~^1627.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~301~^3.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~304~^12.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~305~^46.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~306~^82.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~307~^451.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~318~^1613.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~319~^448.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2014~ -~08409~^~320~^454.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~08409~^~321~^54.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08409~^~322~^36.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08409~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08409~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08409~^~338~^763.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~431~^304.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08409~^~432~^19.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2005~ -~08409~^~435~^536.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08409~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~ -~08410~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08410~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08410~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08410~^~268~^1542.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08410~^~301~^229.^4^9.^~1~^~A~^^~Y~^1^211.^248.^3^199.^258.^~2, 3~^~08/01/2012~ -~08410~^~304~^99.^4^1.^~1~^~A~^^^1^97.^101.^3^95.^102.^~2, 3~^~08/01/2012~ -~08410~^~305~^353.^4^3.^~1~^~A~^^^1^345.^362.^3^341.^365.^~2, 3~^~08/01/2012~ -~08410~^~306~^303.^4^3.^~1~^~A~^^^1^296.^310.^3^292.^313.^~2, 3~^~08/01/2012~ -~08410~^~307~^416.^4^24.^~1~^~A~^^^1^373.^469.^3^339.^492.^~2, 3~^~08/01/2012~ -~08410~^~318~^1467.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~319~^440.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~320~^440.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08410~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08410~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08410~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08410~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08410~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08410~^~417~^191.^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~431~^175.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08410~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08411~^~208~^384.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08411~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08411~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08411~^~268~^1607.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~301~^220.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~ -~08411~^~304~^89.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~305~^302.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~306~^250.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~307~^500.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~318~^2196.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08411~^~417~^176.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~ -~08411~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08417~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08417~^~268~^1541.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~301~^277.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~305~^315.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~306~^287.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~307~^700.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08417~^~318~^2683.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~ -~08417~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08417~^~417~^247.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08435~^~208~^346.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08435~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~268~^1449.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08435~^~301~^95.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~304~^206.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~305~^374.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~306~^446.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~307~^206.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08435~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08435~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08435~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08435~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08435~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~338~^331.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~08435~^~417~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08435~^~432~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~08435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08436~^~208~^360.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~08436~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~268~^1507.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08436~^~301~^235.^4^3.^~1~^~A~^^~Y~^1^227.^244.^3^223.^246.^~2, 3~^~08/01/2012~ -~08436~^~304~^82.^4^0.^~1~^~A~^^^1^81.^83.^3^80.^83.^~2, 3~^~08/01/2012~ -~08436~^~305~^292.^4^2.^~1~^~A~^^^1^287.^296.^3^285.^298.^~2, 3~^~08/01/2012~ -~08436~^~306~^360.^4^7.^~1~^~A~^^^1^347.^377.^3^336.^382.^~2, 3~^~08/01/2012~ -~08436~^~307~^440.^4^10.^~1~^~A~^^^1^414.^462.^3^406.^472.^~2, 3~^~08/01/2012~ -~08436~^~318~^1646.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~ -~08436~^~319~^494.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~320~^494.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~08436~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~338~^104.^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~08436~^~417~^213.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08436~^~431~^193.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~ -~08436~^~432~^19.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08436~^~435~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~08444~^~208~^342.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~268~^1430.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~301~^441.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~304~^32.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~305~^79.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~306~^172.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~307~^1805.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~08444~^~417~^187.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~208~^360.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~268~^1504.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08449~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~305~^76.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~306~^134.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~307~^1518.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08449~^~417~^173.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08449~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~208~^355.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~268~^1487.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~301~^409.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~304~^35.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~305~^95.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~307~^1930.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~318~^13.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~08450~^~417~^178.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~05/01/2003~ -~08451~^~301~^47.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~304~^270.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~305~^458.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~417~^49.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08452~^~208~^333.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~268~^1393.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~304~^147.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~305~^406.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~306~^502.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~307~^8.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~417~^49.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~07/01/2014~ -~08452~^~432~^49.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~08452~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08476~^~208~^379.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~268~^1587.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08476~^~304~^28.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~305~^69.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~306~^121.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~307~^759.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~08476~^~318~^1724.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~324~^138.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~417~^690.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~208~^370.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~268~^1550.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~301~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~04/01/2007~ -~08478~^~304~^46.^3^0.^~1~^~A~^^^1^45.^48.^2^42.^49.^~2, 3~^~04/01/2007~ -~08478~^~305~^222.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~306~^204.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~307~^204.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~318~^1852.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~319~^554.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~08478~^~320~^555.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~08478~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~324~^151.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~08478~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~338~^94.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~417~^741.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~08478~^~431~^728.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2009~ -~08478~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~435~^1250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08478~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08481~^~208~^398.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~08481~^~268~^1664.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~301~^367.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~305~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~306~^226.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~307~^838.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~318~^1959.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~324~^152.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2009~ -~08481~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08481~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08481~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08484~^~208~^342.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08484~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08484~^~268~^1433.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~304~^136.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~305~^339.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~306~^546.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~307~^466.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~318~^847.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~319~^253.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~08484~^~320~^253.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~08484~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08484~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08484~^~324~^102.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08484~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08484~^~338~^118.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~417~^339.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~431~^320.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08484~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08484~^~435~^563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08484~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~208~^443.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~ -~08487~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~268~^1853.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~301~^338.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~304~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~305~^176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~306~^179.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~307~^462.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~318~^1665.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~320~^500.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~322~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~324~^130.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~334~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~337~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~338~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~08487~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08487~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~208~^365.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~262~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~268~^1528.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~301~^377.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08488~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~305~^109.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~306~^93.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~318~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~324~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08489~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~268~^1538.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~301~^318.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~304~^15.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~305~^125.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~306~^130.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~417~^889.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~08489~^~431~^870.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08489~^~435~^1498.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08489~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08491~^~208~^388.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~268~^1623.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~301~^380.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08491~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~305~^315.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08491~^~306~^241.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~307~^683.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08493~^~268~^1633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~301~^303.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~305~^61.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~306~^96.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~318~^1515.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~324~^121.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~417~^606.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~431~^587.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~08493~^~435~^1017.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08493~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08494~^~208~^425.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08494~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08494~^~268~^1778.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08494~^~305~^250.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~306~^157.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~307~^473.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~319~^498.^0^^~4~^~NR~^^^^^^^^^^~01/01/2015~ -~08494~^~320~^498.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08494~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~338~^73.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08494~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~08494~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08494~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08495~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~262~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~263~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~268~^1659.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~301~^17.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~305~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~306~^181.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~307~^534.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~319~^776.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~08495~^~320~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08495~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~431~^341.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08495~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~08495~^~435~^584.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08495~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~208~^354.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~268~^1480.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~301~^29.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~304~^100.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~305~^273.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~01/01/2015~ -~08500~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08500~^~338~^184.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~417~^727.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~431~^699.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08500~^~432~^28.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08500~^~435~^1216.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08500~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08501~^~208~^404.^1^^~9~^~MC~^^^^^^^^^^~10/01/2008~ -~08501~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~268~^1690.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08501~^~301~^3.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~305~^67.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~306~^76.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~307~^630.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~08501~^~318~^3630.^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~319~^1090.^0^^~4~^~NR~^^^^^^^^^^~10/01/2008~ -~08501~^~320~^1090.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08501~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~324~^195.^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~417~^496.^0^^~4~^~NR~^^^^^^^^^^~10/01/2008~ -~08501~^~431~^492.^1^^~12~^~MA~^^~Y~^^^^^^^^~01/01/2005~ -~08501~^~432~^4.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~08501~^~435~^840.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08501~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08504~^~208~^390.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08504~^~268~^1633.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08504~^~301~^45.^3^2.^~1~^~A~^^^1^43.^49.^2^36.^53.^~2, 3~^~03/01/2005~ -~08504~^~304~^190.^3^0.^~1~^~A~^^^1^190.^190.^^^^~2, 3~^~03/01/2005~ -~08504~^~305~^533.^3^6.^~1~^~A~^^^1^520.^540.^2^504.^562.^~2, 3~^~03/01/2005~ -~08504~^~306~^630.^3^5.^~1~^~A~^^^1^620.^640.^2^605.^654.^~2, 3~^~03/01/2005~ -~08504~^~307~^586.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08504~^~318~^1771.^0^^~1~^~AS~^^~Y~^^^^^^^^~01/01/2007~ -~08504~^~319~^531.^3^24.^~1~^~A~^^^1^492.^576.^2^426.^636.^~2, 3~^~03/01/2005~ -~08504~^~320~^531.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~08504~^~324~^345.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08504~^~417~^1379.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08504~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08505~^~208~^376.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08505~^~268~^1573.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08505~^~301~^378.^3^7.^~1~^~A~^^~Y~^1^366.^391.^2^346.^408.^~2, 3~^~05/01/2009~ -~08505~^~304~^15.^3^0.^~1~^~A~^^^1^15.^15.^2^14.^15.^~2, 3~^~03/01/2005~ -~08505~^~305~^38.^3^0.^~1~^~A~^^^1^37.^39.^2^35.^40.^~2, 3~^~03/01/2005~ -~08505~^~306~^200.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08505~^~307~^767.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08505~^~318~^4167.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~ -~08505~^~319~^1061.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08505~^~320~^1092.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08505~^~321~^261.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08505~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~324~^333.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08505~^~334~^234.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08505~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08505~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08506~^~208~^384.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08506~^~268~^1607.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08506~^~301~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~03/01/2005~ -~08506~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^8.^~2, 3~^~03/01/2005~ -~08506~^~305~^33.^3^0.^~1~^~A~^^^1^33.^34.^2^32.^33.^~2, 3~^~03/01/2005~ -~08506~^~306~^107.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08506~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08506~^~318~^3571.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~ -~08506~^~319~^962.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08506~^~320~^981.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08506~^~321~^144.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08506~^~322~^38.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08506~^~324~^286.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08506~^~334~^111.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08506~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~417~^714.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08506~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08507~^~208~^379.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~08507~^~268~^1587.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~08507~^~301~^8.^3^0.^~1~^~A~^^^1^7.^10.^2^5.^11.^~2, 3~^~03/01/2005~ -~08507~^~304~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^13.^18.^~2, 3~^~03/01/2005~ -~08507~^~305~^63.^3^1.^~1~^~A~^^^1^61.^65.^2^57.^67.^~2, 3~^~03/01/2005~ -~08507~^~306~^224.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~307~^517.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~318~^4310.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~ -~08507~^~319~^1248.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08507~^~320~^1256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~08507~^~321~^63.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08507~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08507~^~324~^345.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~334~^53.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~08507~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~417~^966.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08510~^~208~^413.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~08510~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~268~^1728.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~08510~^~301~^410.^2^^~8~^~LC~^^^1^385.^435.^1^^^^~08/01/2015~ -~08510~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~305~^155.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~306~^254.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~307~^319.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~318~^627.^2^^~8~^~LC~^^^1^385.^870.^1^^^^~08/01/2015~ -~08510~^~319~^188.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~08510~^~320~^188.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~08510~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~08510~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~08510~^~324~^68.^2^^~8~^~LC~^^^1^31.^104.^1^^^^~08/01/2015~ -~08510~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~08510~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~08510~^~417~^98.^2^^~8~^~LC~^^^1^92.^104.^1^^^^~08/01/2015~ -~08510~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~08510~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~08510~^~601~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08511~^~208~^48.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~268~^199.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~301~^37.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08511~^~304~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~305~^22.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~306~^14.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~208~^47.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~268~^199.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~301~^49.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~305~^16.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~306~^32.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08512~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08544~^~208~^384.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~268~^1607.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~301~^40.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~304~^89.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~305~^255.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~306~^308.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~307~^214.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~318~^1563.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~319~^466.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~08544~^~320~^467.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08544~^~321~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~324~^83.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~338~^127.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~417~^208.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~431~^189.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2012~ -~08544~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~ -~08544~^~435~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~08544~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08546~^~208~^409.^1^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08546~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~268~^1712.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08546~^~301~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~304~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~305~^136.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~306~^143.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~307~^428.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~08546~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~08546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~08546~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08546~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08546~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~417~^15.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~08546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~08546~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08546~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08549~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~301~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~304~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~305~^391.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~306~^269.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~307~^488.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~318~^38.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~417~^1311.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08550~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~268~^1661.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~307~^724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~319~^24.^0^^~4~^~O~^^^^^^^^^^~05/01/2011~ -~08550~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~08550~^~321~^32.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~322~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~324~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~338~^521.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~417~^1537.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~431~^1518.^0^^~4~^~O~^^~Y~^^^^^^^^~05/01/2011~ -~08550~^~432~^19.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~435~^2600.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~08550~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08554~^~208~^413.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~268~^1729.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~301~^39.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~304~^85.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~305~^259.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~306~^274.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~307~^239.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~318~^1442.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~ -~08554~^~319~^431.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~08554~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08554~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~324~^77.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~ -~08554~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~338~^119.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~417~^192.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~ -~08554~^~431~^173.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2007~ -~08554~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2007~ -~08554~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08554~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~08571~^~208~^467.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~08571~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~08571~^~268~^1955.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~301~^51.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~304~^40.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~305~^323.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~306~^291.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~307~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08571~^~319~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08571~^~321~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~338~^143.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~08571~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08571~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2008~ -~08573~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~268~^1484.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~301~^882.^4^57.^~1~^~A~^^^1^752.^1030.^3^700.^1063.^~2, 3~^~11/01/2008~ -~08573~^~304~^46.^4^1.^~1~^~A~^^^1^42.^50.^3^40.^50.^~2, 3~^~11/01/2008~ -~08573~^~305~^398.^4^30.^~1~^~A~^^^1^351.^487.^3^299.^495.^~2, 3~^~11/01/2008~ -~08573~^~306~^160.^4^6.^~1~^~A~^^^1^148.^177.^3^140.^179.^~2, 3~^~11/01/2008~ -~08573~^~307~^328.^4^36.^~1~^~A~^^^1^269.^435.^3^210.^445.^~2, 3~^~11/01/2008~ -~08574~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~301~^104.^3^3.^~1~^~A~^^^1^97.^111.^2^87.^121.^~2, 3~^~11/01/2008~ -~08574~^~304~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^8.^~2, 3~^~11/01/2008~ -~08574~^~305~^47.^3^0.^~1~^~A~^^^1^47.^49.^2^43.^50.^~2, 3~^~11/01/2008~ -~08574~^~306~^23.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^24.^~2, 3~^~11/01/2008~ -~08574~^~307~^34.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^36.^~2, 3~^~11/01/2008~ -~08574~^~417~^29.^3^2.^~1~^~A~^^^1^26.^33.^2^20.^37.^~2, 3~^~11/01/2008~ -~08574~^~431~^15.^3^0.^~1~^~A~^^~Y~^1^15.^16.^2^13.^16.^~2, 3~^~11/01/2008~ -~08574~^~432~^14.^3^2.^~1~^~AS~^^^1^11.^18.^2^4.^23.^~2, 3~^~11/01/2008~ -~08574~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~301~^131.^4^3.^~1~^~A~^^^1^124.^140.^3^120.^141.^~2, 3~^~11/01/2008~ -~08575~^~304~^8.^4^0.^~1~^~A~^^^1^7.^8.^3^7.^8.^~2, 3~^~11/01/2008~ -~08575~^~305~^57.^4^1.^~1~^~A~^^^1^55.^61.^3^53.^61.^~2, 3~^~11/01/2008~ -~08575~^~306~^26.^4^1.^~1~^~A~^^^1^24.^29.^3^22.^30.^~2, 3~^~11/01/2008~ -~08575~^~307~^45.^4^2.^~1~^~A~^^^1^40.^51.^3^36.^52.^~2, 3~^~11/01/2008~ -~08575~^~417~^32.^4^2.^~1~^~A~^^^1^27.^37.^3^24.^38.^~2, 3~^~11/01/2008~ -~08575~^~431~^20.^4^2.^~1~^~A~^^~Y~^1^15.^24.^3^13.^26.^~2, 3~^~11/01/2008~ -~08575~^~432~^12.^4^1.^~1~^~AS~^^^1^8.^15.^3^5.^17.^~2, 3~^~11/01/2008~ -~08575~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~301~^801.^4^85.^~1~^~A~^^^1^558.^937.^3^529.^1072.^~2, 3~^~11/01/2008~ -~08576~^~304~^45.^4^1.^~1~^~A~^^^1^40.^47.^3^39.^50.^~2, 3~^~11/01/2008~ -~08576~^~305~^167.^4^5.^~1~^~A~^^^1^150.^174.^3^148.^185.^~2, 3~^~11/01/2008~ -~08576~^~306~^151.^4^4.^~1~^~A~^^^1^139.^157.^3^138.^164.^~2, 3~^~11/01/2008~ -~08576~^~307~^7.^4^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~268~^235.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~301~^125.^4^13.^~1~^~A~^^^1^93.^157.^3^81.^167.^~2, 3~^~11/01/2008~ -~08577~^~304~^8.^4^0.^~1~^~A~^^^1^7.^9.^3^6.^9.^~2, 3~^~11/01/2008~ -~08577~^~305~^27.^4^1.^~1~^~A~^^^1^25.^32.^3^22.^32.^~2, 3~^~11/01/2008~ -~08577~^~306~^23.^4^0.^~1~^~A~^^^1^22.^25.^3^20.^25.^~2, 3~^~11/01/2008~ -~08577~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~417~^26.^4^2.^~1~^~A~^^^1^20.^31.^3^18.^33.^~2, 3~^~11/01/2008~ -~08577~^~431~^14.^4^2.^~1~^~A~^^~Y~^1^8.^19.^3^6.^21.^~2, 3~^~11/01/2008~ -~08577~^~432~^12.^4^0.^~1~^~AS~^^^1^11.^13.^3^10.^13.^~2, 3~^~11/01/2008~ -~08577~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~301~^126.^4^11.^~1~^~A~^^^1^92.^145.^3^89.^162.^~2, 3~^~11/01/2008~ -~08578~^~304~^8.^4^0.^~1~^~A~^^^1^7.^8.^3^6.^8.^~2, 3~^~11/01/2008~ -~08578~^~305~^28.^4^0.^~1~^~A~^^^1^26.^30.^3^25.^31.^~2, 3~^~11/01/2008~ -~08578~^~306~^23.^4^0.^~1~^~A~^^^1^22.^24.^3^21.^24.^~2, 3~^~11/01/2008~ -~08578~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~417~^30.^4^2.^~1~^~A~^^^1^26.^35.^3^23.^36.^~2, 3~^~11/01/2008~ -~08578~^~431~^16.^4^1.^~1~^~A~^^~Y~^1^14.^19.^3^11.^19.^~2, 3~^~11/01/2008~ -~08578~^~432~^14.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^19.^~2, 3~^~11/01/2008~ -~08578~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08580~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~08580~^~268~^1587.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~08580~^~301~^600.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~304~^220.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~305~^530.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~306~^1030.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~318~^5900.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~08580~^~319~^1770.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~320~^1770.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~08625~^~208~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08625~^~268~^1680.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08625~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~304~^54.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~305~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~306~^185.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~307~^719.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~318~^147.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~417~^1615.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~208~^418.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~268~^1749.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~301~^98.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~304~^106.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~305~^334.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~306~^444.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~307~^47.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~318~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~417~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~432~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~301~^349.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~304~^91.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~305~^389.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~306~^262.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~307~^477.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~318~^37.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~417~^1436.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08629~^~208~^395.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~268~^1653.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~304~^56.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~305~^170.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~306~^189.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~307~^637.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~318~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~417~^1353.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08632~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~268~^1590.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~301~^201.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~305~^371.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~307~^347.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~318~^1189.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08632~^~417~^723.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08633~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~262~^0.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~ -~08633~^~263~^0.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~ -~08633~^~268~^1650.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~304~^75.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~305~^232.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~306~^262.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~307~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~318~^1786.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08633~^~319~^525.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~ -~08633~^~320~^527.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08633~^~321~^11.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~ -~08633~^~322~^2.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2013~ -~08633~^~324~^107.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08633~^~334~^18.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~ -~08633~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~338~^141.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08633~^~417~^357.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~431~^338.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~08633~^~432~^19.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~ -~08633~^~435~^594.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~08633~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08639~^~208~^358.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~268~^1498.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~301~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~304~^116.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~305~^391.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~306~^329.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~307~^760.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08639~^~318~^3409.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~417~^273.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~208~^367.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~268~^1536.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~301~^52.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~304~^148.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~305~^474.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~306~^350.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~307~^4.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~318~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~ -~08640~^~417~^32.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~432~^32.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~ -~08641~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~268~^1573.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~301~^246.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~304~^103.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~305~^359.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~306~^339.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~307~^559.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~318~^1666.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~417~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08642~^~208~^358.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~268~^1498.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~301~^355.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~304~^104.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~306~^389.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~307~^535.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~318~^3549.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~417~^284.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08655~^~208~^399.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~08655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~08655~^~268~^1670.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~305~^140.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~306~^177.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~307~^483.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~319~^743.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~08655~^~320~^748.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08655~^~321~^50.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~322~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~338~^787.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~417~^690.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~431~^671.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2013~ -~08655~^~435~^1159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08655~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08656~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~08656~^~268~^1463.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~301~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~305~^460.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~307~^458.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~319~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~08656~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~08656~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~338~^210.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~08656~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~08656~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08657~^~208~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~268~^1395.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~301~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~305~^126.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~306~^315.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~307~^704.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~04/01/2013~ -~08657~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~338~^775.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~08657~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08662~^~208~^399.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~268~^1669.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~301~^26.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~305~^139.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~306~^219.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~307~^410.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~318~^2419.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~431~^304.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2013~ -~08662~^~435~^535.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~08662~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08665~^~208~^400.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~268~^1672.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~305~^145.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~306~^184.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~307~^464.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08672~^~208~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~262~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~268~^1642.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~301~^267.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~304~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~306~^183.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08672~^~307~^368.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~318~^1333.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~417~^533.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08672~^~431~^514.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~08672~^~432~^19.^0^^~4~^~CAZN~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~435~^893.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08672~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~268~^1464.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~304~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~305~^331.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~435~^848.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~208~^396.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~268~^1658.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~305~^133.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~306~^200.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~307~^515.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08674~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08674~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08674~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~301~^33.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08675~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~305~^204.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~306~^240.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~307~^453.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~318~^1876.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~324~^144.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08675~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08675~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~268~^1620.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~305~^318.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~306~^241.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~307~^695.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08676~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08676~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~ -~08676~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08676~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08680~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~08680~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~08680~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~08680~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~08680~^~301~^258.^12^4.^~1~^~A~^^^1^217.^324.^8^248.^268.^~2, 3~^~04/01/2014~ -~08680~^~304~^90.^12^1.^~1~^~A~^^^1^85.^100.^6^87.^92.^~2, 3~^~04/01/2014~ -~08680~^~305~^305.^12^3.^~1~^~A~^^^1^283.^330.^9^298.^312.^~2, 3~^~04/01/2014~ -~08680~^~306~^361.^12^5.^~1~^~A~^^^1^256.^455.^10^350.^372.^~2, 3~^~04/01/2014~ -~08680~^~307~^505.^12^13.^~1~^~A~^^^1^360.^552.^7^471.^537.^~2, 3~^~04/01/2014~ -~08680~^~318~^2310.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~08680~^~319~^692.^6^56.^~1~^~A~^^^1^505.^1063.^2^459.^925.^~2, 3~^~04/01/2014~ -~08680~^~320~^692.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~08680~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08680~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08680~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~08680~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08680~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~08680~^~338~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08680~^~417~^148.^6^10.^~1~^~A~^^^1^126.^215.^2^103.^192.^~2, 3~^~04/01/2014~ -~08680~^~431~^132.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08680~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~601~^0.^0^^~4~^~BFZN~^~08130~^^^^^^^^^~04/01/2014~ -~08685~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~268~^1575.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~301~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08685~^~304~^77.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~305~^322.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~306~^568.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~307~^554.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~318~^3964.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~417~^1427.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08686~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~268~^1509.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~301~^268.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~304~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~305~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~306~^330.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~307~^642.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~318~^2429.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~417~^235.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~268~^1512.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~301~^243.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~304~^117.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~305~^396.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~307~^619.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~318~^2544.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~417~^204.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~268~^1531.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~301~^278.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~304~^91.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~305~^306.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~306~^256.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~307~^473.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~318~^3112.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~417~^249.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08689~^~208~^386.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~268~^1617.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~301~^64.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~305~^287.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~306~^317.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~307~^337.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~318~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~417~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~432~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~268~^1630.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~301~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~304~^86.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~305~^239.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~306~^344.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~307~^356.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~318~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~417~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~432~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~208~^353.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~268~^1476.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~301~^124.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~304~^113.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~305~^358.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~306~^445.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~307~^354.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~318~^19.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~432~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~268~^1617.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~301~^105.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~305~^302.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~306~^560.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~307~^201.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~318~^108.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~417~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~432~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~268~^1649.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~301~^132.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~304~^103.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~305~^333.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~307~^181.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~318~^45.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~417~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~432~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~268~^1510.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~301~^245.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~304~^119.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~305~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~306~^334.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~307~^618.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~318~^2558.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08709~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~268~^1560.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~304~^73.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~305~^273.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~306~^336.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~307~^14.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~09001~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09001~^~268~^134.^0^^~4~^^^^^^^^^^^ -~09001~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~307~^7.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~318~^767.^3^216.^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09001~^~320~^38.^3^10.^~1~^^^^^^^^^^^~06/01/2002~ -~09001~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09001~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09001~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09002~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~09002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09002~^~268~^96.^0^^~4~^^^^^^^^^^^ -~09002~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~318~^509.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09002~^~320~^25.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09002~^~321~^305.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~337~^0.^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~338~^17.^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09002~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~09002~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~09002~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09003~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09003~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09003~^~301~^6.^26^0.^~1~^~A~^^^4^4.^9.^5^5.^6.^~2~^~06/01/2003~ -~09003~^~304~^5.^26^0.^~1~^~A~^^^4^4.^6.^4^4.^5.^~2~^~06/01/2003~ -~09003~^~305~^11.^23^0.^~1~^~A~^^^3^10.^13.^3^10.^12.^~2~^~06/01/2003~ -~09003~^~306~^107.^26^2.^~1~^~A~^^^4^88.^136.^6^101.^112.^~2~^~06/01/2003~ -~09003~^~307~^1.^6^0.^~1~^~A~^^^2^1.^2.^1^0.^2.^~2~^~06/01/2003~ -~09003~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~09003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09003~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~09003~^~321~^27.^14^1.^~1~^~A~^^^2^11.^81.^1^15.^39.^~1, 2~^~06/01/2003~ -~09003~^~322~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~09003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09003~^~334~^11.^14^0.^~1~^~A~^^^2^0.^16.^2^6.^15.^~1, 2, 3~^~06/01/2003~ -~09003~^~337~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~09003~^~338~^29.^14^1.^~1~^~A~^^^2^11.^73.^4^26.^32.^~1, 2, 3~^~06/01/2003~ -~09003~^~417~^3.^23^0.^~1~^^^^^^^^^^^~04/01/2003~ -~09003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09003~^~432~^3.^23^0.^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~09003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09003~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09004~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~301~^5.^4^0.^~1~^~A~^^^1^4.^9.^1^0.^10.^~2, 3~^~09/01/2002~ -~09004~^~304~^4.^4^0.^~1~^~A~^^^1^4.^6.^1^2.^6.^~2, 3~^~09/01/2002~ -~09004~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^1^1.^21.^~2, 3~^~09/01/2002~ -~09004~^~306~^90.^4^7.^~1~^~A~^^^1^80.^102.^1^9.^171.^~2, 3~^~09/01/2002~ -~09004~^~307~^0.^85^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~318~^38.^4^1.^~1~^~A~^^^1^28.^42.^1^27.^49.^~2, 3~^~09/01/2002~ -~09004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09004~^~320~^2.^4^0.^~1~^~A~^^^1^1.^2.^1^1.^2.^~2, 3~^~09/01/2002~ -~09004~^~321~^17.^4^0.^~1~^~A~^^^1^11.^18.^1^5.^28.^~2, 3~^~09/01/2002~ -~09004~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~09004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09004~^~334~^13.^4^0.^~1~^~A~^^^1^9.^14.^2^9.^15.^~2, 3~^~09/01/2002~ -~09004~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~09004~^~338~^18.^4^0.^~1~^~A~^^^1^14.^19.^1^13.^21.^~2, 3~^~09/01/2002~ -~09004~^~417~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09004~^~432~^0.^6^0.^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09005~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09005~^~268~^222.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09005~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~306~^88.^6^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~318~^44.^6^9.^~1~^^^^^^^^^^^~09/01/2002~ -~09005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09005~^~320~^2.^6^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09005~^~321~^19.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09005~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09005~^~334~^14.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09005~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09005~^~338~^19.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~09/01/2002~ -~09005~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09005~^~432~^1.^6^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09005~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09006~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09006~^~268~^234.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09006~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~306~^93.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~318~^40.^6^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09006~^~320~^2.^6^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09006~^~321~^17.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09006~^~334~^13.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~338~^21.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09006~^~432~^1.^6^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09006~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09008~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09008~^~268~^280.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09008~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~305~^6.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~306~^70.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~318~^56.^6^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09008~^~320~^3.^6^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09008~^~321~^24.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~ -~09008~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~ -~09008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09008~^~334~^18.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~ -~09008~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~01/01/2003~ -~09008~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~01/01/2003~ -~09008~^~417~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09008~^~432~^0.^6^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09008~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09009~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09009~^~268~^1448.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09009~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~306~^640.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~307~^124.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~318~^81.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09009~^~320~^4.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~09009~^~321~^35.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09009~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09009~^~334~^27.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09009~^~337~^0.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~ -~09009~^~338~^25.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~ -~09009~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09009~^~432~^1.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~09009~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09010~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09010~^~268~^310.^0^^~4~^^^^^^^^^^^ -~09010~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~306~^136.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~307~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~318~^19.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09010~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09010~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09010~^~432~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09011~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09011~^~268~^1017.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09011~^~301~^14.^37^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~304~^16.^37^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~305~^38.^37^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~306~^450.^29^17.^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~307~^87.^29^12.^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~318~^0.^16^0.^~1~^^^^^^^^^^^~04/01/2003~ -~09011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09011~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09011~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~04/01/2003~ -~09011~^~338~^18.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~04/01/2003~ -~09011~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09011~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09011~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09012~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09012~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09012~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~304~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~306~^105.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~318~^17.^3^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09012~^~320~^1.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09012~^~321~^7.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09012~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09012~^~334~^6.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09012~^~337~^0.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~11/01/2002~ -~09012~^~338~^4.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~11/01/2002~ -~09012~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09012~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/2007~ -~09012~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09013~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09013~^~268~^347.^0^^~4~^^^^^^^^^^^ -~09013~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~305~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~307~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~318~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09013~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09013~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09013~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09014~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09014~^~268~^201.^0^^~4~^^^^^^^^^^^ -~09014~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~306~^77.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~318~^34.^6^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09014~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09014~^~432~^1.^6^0.^~1~^^^^^^^^^^^~07/01/2010~ -~09014~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09015~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09015~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2010~ -~09015~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~306~^76.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~318~^20.^6^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09015~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09015~^~432~^1.^6^0.^~1~^^^^^^^^^^^~07/01/2010~ -~09015~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09016~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09016~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09016~^~301~^8.^57^0.^~1~^~A~^^^17^4.^26.^8^6.^8.^~2, 3~^~05/01/2008~ -~09016~^~304~^5.^58^0.^~1~^~A~^^^17^4.^7.^22^4.^4.^~2, 3~^~05/01/2008~ -~09016~^~305~^7.^59^0.^~1~^~A~^^^17^5.^10.^16^6.^7.^~2, 3~^~05/01/2008~ -~09016~^~306~^101.^58^1.^~1~^~A~^^^17^73.^116.^18^98.^103.^~2, 3~^~05/01/2008~ -~09016~^~307~^4.^58^0.^~1~^~A~^^^17^1.^8.^25^3.^4.^~1, 2, 3~^~05/01/2008~ -~09016~^~318~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09016~^~321~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09016~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09016~^~334~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~ -~09016~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09016~^~338~^16.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09016~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09016~^~432~^0.^3^0.^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09017~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09017~^~268~^695.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09017~^~301~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~304~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~305~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~306~^448.^4^26.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~307~^25.^4^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~318~^0.^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09017~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09017~^~322~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09017~^~337~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09017~^~338~^57.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09017~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09017~^~432~^1.^4^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09017~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09018~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09018~^~268~^197.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09018~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~305~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~306~^126.^4^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~307~^7.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09018~^~321~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~322~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09018~^~334~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~337~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~338~^16.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09018~^~432~^0.^4^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09019~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09019~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09019~^~301~^4.^11^0.^~1~^~A~^^^4^3.^5.^3^1.^5.^~2~^~06/01/2008~ -~09019~^~304~^3.^11^0.^~1~^~A~^^^4^2.^3.^3^2.^2.^~2~^~06/01/2008~ -~09019~^~305~^5.^11^0.^~1~^~A~^^^4^3.^9.^3^4.^5.^~2~^~06/01/2008~ -~09019~^~306~^74.^11^3.^~1~^~A~^^^4^54.^88.^3^61.^86.^~2~^~06/01/2008~ -~09019~^~307~^2.^16^0.^~1~^^^^^^^^^^^~07/01/2008~ -~09019~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~09019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09019~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~09019~^~321~^13.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09019~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09019~^~334~^9.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09019~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~ -~09019~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~ -~09019~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~ -~09019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~09019~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~ -~09019~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09020~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09020~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09020~^~301~^3.^54^0.^~1~^~A~^^^16^2.^4.^15^2.^3.^~2~^~06/01/2008~ -~09020~^~304~^3.^55^0.^~1~^~A~^^^16^2.^4.^15^2.^3.^~2~^~06/01/2008~ -~09020~^~305~^6.^55^0.^~1~^~A~^^^16^4.^9.^15^6.^6.^~2~^~06/01/2008~ -~09020~^~306~^75.^55^2.^~1~^~A~^^^16^54.^101.^15^70.^80.^~2~^~06/01/2008~ -~09020~^~307~^2.^55^0.^~1~^~A~^^^16^0.^9.^15^1.^3.^~1, 2~^~06/01/2008~ -~09020~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~09020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09020~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~09020~^~321~^3.^0^^~4~^~BNA~^~09004~^^^^^^^^^~06/01/2008~ -~09020~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~ -~09020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09020~^~334~^2.^0^^~4~^~BNA~^~09004~^^^^^^^^^~06/01/2008~ -~09020~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~ -~09020~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~ -~09020~^~417~^1.^8^0.^~1~^~A~^^^2^1.^2.^1^-4.^6.^~2~^~06/01/2008~ -~09020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~09020~^~432~^1.^8^0.^~1~^~A~^^^2^1.^2.^1^-4.^6.^^~08/01/2008~ -~09020~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09021~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09021~^~268~^201.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09021~^~301~^13.^21^1.^~1~^~A~^^^8^9.^28.^7^10.^15.^~2, 3~^~01/01/2003~ -~09021~^~304~^10.^21^0.^~1~^~A~^^^8^9.^14.^5^9.^10.^~2, 3~^~01/01/2003~ -~09021~^~305~^23.^21^0.^~1~^~A~^^^8^13.^28.^10^22.^23.^~2, 3~^~01/01/2003~ -~09021~^~306~^259.^21^4.^~1~^~A~^^^8^214.^322.^9^249.^269.^~2, 3~^~01/01/2003~ -~09021~^~307~^1.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~318~^1926.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09021~^~320~^96.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09021~^~321~^1094.^8^346.^~1~^~A~^^^3^615.^1766.^2^-395.^2582.^~2~^~01/01/2003~ -~09021~^~322~^19.^8^10.^~1~^~A~^^^3^0.^37.^2^-27.^65.^~2~^~01/01/2003~ -~09021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09021~^~334~^104.^8^64.^~1~^~A~^^^3^22.^231.^2^-171.^380.^~2~^~01/01/2003~ -~09021~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09021~^~338~^89.^2^^~1~^~A~^^^2^46.^132.^1^^^^~01/01/2003~ -~09021~^~417~^9.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09021~^~432~^9.^4^1.^~1~^^^^^^^^^^^~12/01/2006~ -~09021~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09021~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09022~^~268~^113.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09022~^~301~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~304~^7.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~305~^13.^9^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~306~^192.^37^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~307~^3.^37^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~318~^1959.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09022~^~320~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09022~^~321~^1170.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09022~^~322~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09022~^~334~^11.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09022~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09022~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09022~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09022~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09023~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09023~^~268~^92.^0^^~4~^^^^^^^^^^^ -~09023~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~305~^16.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~306~^154.^3^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~307~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~318~^1810.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09023~^~320~^91.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~09023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09023~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09023~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09024~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09024~^~268~^201.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09024~^~301~^12.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~304~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~305~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~306~^165.^7^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~307~^4.^7^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~318~^1691.^7^153.^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09024~^~320~^85.^7^7.^~1~^^^^^^^^^^^~01/01/2007~ -~09024~^~321~^1010.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09024~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09024~^~334~^10.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09024~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09024~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09024~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09024~^~432~^2.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09024~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09025~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09025~^~268~^205.^0^^~4~^^^^^^^^^^^ -~09025~^~301~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~305~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~306~^140.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~318~^1271.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09025~^~320~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09025~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09025~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09026~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09026~^~268~^264.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09026~^~301~^11.^28^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~304~^8.^36^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~305~^13.^28^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~306~^138.^19^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~307~^4.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~318~^1322.^148^30.^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09026~^~320~^66.^148^1.^~1~^^^^^^^^^^^~01/01/2007~ -~09026~^~321~^789.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09026~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09026~^~334~^7.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09026~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09026~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09026~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09026~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09026~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09027~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09027~^~268~^347.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09027~^~301~^9.^129^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~304~^7.^135^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~305~^12.^130^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~306~^140.^95^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~307~^4.^107^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~318~^1230.^276^30.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09027~^~320~^62.^276^1.^~1~^^^^^^^^^^^~01/01/2007~ -~09027~^~321~^735.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09027~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09027~^~334~^7.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~ -~09027~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09027~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09027~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09027~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09027~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09028~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09028~^~268~^347.^0^^~4~^^^^^^^^^^^ -~09028~^~301~^9.^65^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~304~^8.^61^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~305~^13.^66^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~306~^134.^65^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~307~^11.^63^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~318~^1240.^168^37.^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09028~^~320~^62.^168^1.^~1~^^^^^^^^^^^~06/01/2002~ -~09028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09028~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09028~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09029~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09029~^~268~^402.^0^^~4~^^^^^^^^^^^ -~09029~^~301~^8.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~304~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~305~^15.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~306~^126.^4^11.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~307~^13.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~318~^1471.^15^110.^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09029~^~320~^74.^15^5.^~1~^^^^^^^^^^^~06/01/2002~ -~09029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09029~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09029~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09030~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09030~^~268~^1339.^0^^~4~^^^^^^^^^^^ -~09030~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~304~^63.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~305~^157.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~306~^1850.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~307~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~318~^12669.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09030~^~320~^633.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09030~^~417~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09030~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09031~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09031~^~268~^527.^0^^~4~^^^^^^^^^^^ -~09031~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~305~^62.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~306~^728.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~318~^4407.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09031~^~320~^220.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09031~^~417~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09031~^~432~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09032~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09032~^~268~^1009.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~301~^55.^3^4.^~1~^~A~^^^1^46.^60.^2^35.^73.^~2, 3~^~05/01/2002~ -~09032~^~304~^32.^3^3.^~1~^~A~^^^1^25.^36.^2^16.^47.^~2, 3~^~05/01/2002~ -~09032~^~305~^71.^3^8.^~1~^~A~^^^1^55.^82.^2^36.^105.^~2, 3~^~05/01/2002~ -~09032~^~306~^1162.^3^61.^~1~^~A~^^^1^1046.^1255.^2^897.^1426.^~2, 3~^~05/01/2002~ -~09032~^~307~^10.^33^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09032~^~318~^3604.^2^^~1~^~A~^^^1^3073.^4135.^1^^^^~05/01/2002~ -~09032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09032~^~320~^180.^2^^~1~^~A~^^^1^154.^207.^1^^^^~05/01/2002~ -~09032~^~321~^2163.^2^^~1~^~A~^^^1^1844.^2481.^1^^^^~05/01/2002~ -~09032~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~ -~09032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09032~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~ -~09032~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~ -~09032~^~338~^0.^2^^~1~^~AS~^^^1^0.^0.^^^^^~05/01/2002~ -~09032~^~417~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^~2, 3~^~05/01/2002~ -~09032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09032~^~432~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^^~04/01/2006~ -~09032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09033~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09033~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09033~^~301~^19.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~304~^11.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~305~^25.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~306~^411.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~307~^4.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~318~^1275.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~12/01/2006~ -~09033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09033~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09033~^~321~^765.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~322~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09033~^~334~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~337~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~338~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~417~^3.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09033~^~432~^3.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~09033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09034~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09034~^~268~^473.^0^^~4~^^^^^^^^^^^ -~09034~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~306~^443.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~318~^2139.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09034~^~320~^107.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09034~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09034~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09035~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09035~^~268~^410.^0^^~4~^^^^^^^^^^^ -~09035~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~318~^1680.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09035~^~320~^84.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09035~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09035~^~432~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09035~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09036~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09036~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09036~^~301~^11.^4^0.^~1~^~A~^^^1^10.^13.^2^9.^12.^~2, 3~^~12/01/2016~ -~09036~^~304~^5.^4^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~08/01/1982~ -~09036~^~305~^5.^4^0.^~1~^~A~^^^1^5.^8.^2^4.^5.^~2, 3~^~12/01/2016~ -~09036~^~306~^67.^4^1.^~1~^~A~^^^1^61.^97.^2^58.^75.^~2, 3~^~12/01/2016~ -~09036~^~307~^8.^4^0.^~1~^~A~^^^1^4.^11.^2^4.^12.^~1, 2, 3~^~12/01/2016~ -~09036~^~318~^322.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09036~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09036~^~321~^189.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09036~^~322~^3.^1^^~1~^~A~^^^1^3.^3.^^^^^~12/01/2016~ -~09036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09036~^~334~^5.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09036~^~337~^20.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09036~^~338~^6.^1^^~1~^~A~^^^1^6.^6.^^^^^~12/01/2016~ -~09036~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/1982~ -~09036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09036~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~09036~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09037~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09037~^~268~^670.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~301~^12.^29^0.^~1~^~A~^^^6^8.^19.^3^10.^14.^~2~^~03/01/2003~ -~09037~^~304~^29.^17^1.^~1~^~A~^^^5^17.^34.^2^22.^34.^~2~^~03/01/2003~ -~09037~^~305~^52.^16^1.^~1~^~A~^^^4^30.^70.^2^45.^59.^~2~^~03/01/2003~ -~09037~^~306~^485.^29^31.^~1~^~A~^^^6^219.^691.^4^394.^575.^~2~^~03/01/2003~ -~09037~^~307~^7.^23^1.^~1~^~A~^^^5^1.^17.^2^1.^11.^~2~^~03/01/2003~ -~09037~^~318~^146.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09037~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09037~^~321~^62.^33^7.^~1~^~A~^^^6^32.^140.^4^40.^83.^~2~^~03/01/2003~ -~09037~^~322~^24.^31^11.^~1~^~A~^^^6^0.^100.^4^-7.^56.^~1, 2~^~03/01/2003~ -~09037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09037~^~334~^28.^29^16.^~1~^~A~^^^5^0.^120.^3^-25.^81.^~1, 2~^~03/01/2003~ -~09037~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2003~ -~09037~^~338~^271.^16^16.^~1~^~A~^^^3^170.^379.^2^199.^342.^~2~^~03/01/2003~ -~09037~^~417~^81.^24^10.^~1~^~A~^^^4^14.^155.^2^36.^125.^~2~^~05/01/2004~ -~09037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09037~^~432~^81.^24^10.^~1~^~A~^^^4^14.^155.^2^36.^125.^^~08/01/2010~ -~09037~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09037~^~638~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~1, 4~^~03/01/2003~ -~09037~^~639~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2003~ -~09037~^~641~^76.^6^5.^~1~^~A~^^^1^62.^98.^5^62.^90.^~4~^~03/01/2003~ -~09038~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~301~^13.^24^0.^~1~^~A~^^^4^8.^19.^3^10.^14.^~2~^~03/01/2003~ -~09038~^~304~^29.^12^1.^~1~^~A~^^^3^19.^34.^2^22.^36.^~2~^~03/01/2003~ -~09038~^~305~^54.^12^1.^~1~^~A~^^^3^41.^70.^2^46.^62.^~2~^~03/01/2003~ -~09038~^~306~^507.^24^34.^~1~^~A~^^^4^356.^691.^3^397.^616.^~2~^~03/01/2003~ -~09038~^~307~^8.^18^1.^~1~^~A~^^^3^2.^17.^2^1.^13.^~2~^~03/01/2003~ -~09038~^~318~^147.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09038~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09038~^~321~^63.^29^8.^~1~^~A~^^^5^32.^140.^4^38.^87.^~2~^~03/01/2003~ -~09038~^~322~^24.^27^13.^~1~^~A~^^^5^0.^100.^4^-13.^60.^~1, 2~^~03/01/2003~ -~09038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09038~^~334~^27.^25^19.^~1~^~A~^^^4^0.^120.^3^-35.^88.^~1, 2~^~03/01/2003~ -~09038~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~338~^271.^16^16.^~1~^~A~^^^3^170.^379.^2^199.^342.^~2~^~03/01/2003~ -~09038~^~417~^89.^20^12.^~1~^~A~^^^3^71.^155.^2^36.^140.^~2~^~05/01/2004~ -~09038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09038~^~432~^89.^20^12.^~1~^~A~^^^3^71.^155.^2^36.^140.^^~08/01/2010~ -~09038~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09038~^~638~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~1, 4~^~03/01/2003~ -~09038~^~639~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2003~ -~09038~^~641~^76.^6^5.^~1~^~A~^^^1^62.^98.^5^62.^90.^~4~^~03/01/2003~ -~09039~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~301~^10.^5^0.^~1~^~A~^^^2^9.^14.^1^0.^21.^~2~^~06/01/2003~ -~09039~^~304~^24.^5^3.^~1~^~A~^^^2^17.^27.^1^-20.^67.^~2~^~06/01/2003~ -~09039~^~305~^40.^4^5.^~1~^~A~^^^1^30.^55.^3^23.^57.^~4~^~06/01/2003~ -~09039~^~306~^351.^5^73.^~1~^~A~^^^2^219.^424.^1^-580.^1281.^~2~^~06/01/2003~ -~09039~^~307~^2.^5^0.^~1~^~A~^^^2^1.^4.^4^0.^3.^~4~^~06/01/2003~ -~09039~^~318~^140.^4^19.^~1~^~A~^^^1^98.^183.^3^78.^201.^~4~^~06/01/2003~ -~09039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09039~^~320~^7.^4^0.^~1~^~A~^^^1^5.^9.^3^3.^10.^~4~^~06/01/2003~ -~09039~^~321~^53.^4^7.^~1~^~A~^^^1^38.^68.^3^28.^76.^~4~^~06/01/2003~ -~09039~^~322~^27.^4^6.^~1~^~A~^^^1^15.^41.^3^5.^48.^~4~^~06/01/2003~ -~09039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09039~^~334~^36.^4^14.^~1~^~A~^^^1^16.^78.^3^-9.^81.^~4~^~06/01/2003~ -~09039~^~417~^35.^4^7.^~1~^~A~^^^1^14.^48.^3^11.^59.^~4~^~06/01/2003~ -~09039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09039~^~432~^35.^4^7.^~1~^~A~^^^1^14.^48.^3^11.^59.^^~08/01/2010~ -~09039~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09040~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09040~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~301~^5.^45^0.^~1~^~A~^^^14^4.^7.^6^5.^5.^~2~^~12/01/2002~ -~09040~^~304~^27.^45^0.^~1~^~A~^^^14^18.^38.^1^22.^31.^~2~^~12/01/2002~ -~09040~^~305~^22.^45^0.^~1~^~A~^^^14^15.^29.^11^21.^21.^~2~^~12/01/2002~ -~09040~^~306~^358.^45^1.^~1~^~A~^^^14^308.^426.^7^353.^362.^~2~^~12/01/2002~ -~09040~^~307~^1.^45^0.^~1~^~A~^^^14^0.^5.^1^-4.^5.^~1, 2~^~12/01/2002~ -~09040~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09040~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09040~^~321~^26.^10^2.^~1~^~A~^^^3^14.^58.^1^-1.^53.^~1, 2~^~12/01/2002~ -~09040~^~322~^25.^8^4.^~1~^~A~^^^3^10.^75.^1^-31.^81.^~1, 2~^~12/01/2002~ -~09040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09040~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09040~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09040~^~338~^22.^6^2.^~1~^~A~^^^2^13.^27.^2^9.^34.^~2, 3~^~12/01/2002~ -~09040~^~417~^20.^11^0.^~1~^~A~^^^3^8.^27.^1^14.^26.^~2~^~12/01/2002~ -~09040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09040~^~432~^20.^11^0.^~1~^~A~^^^3^8.^27.^1^14.^26.^^~04/01/2006~ -~09040~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09040~^~636~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09041~^~268~^1448.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09041~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~304~^108.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~305~^74.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~306~^1491.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~318~^248.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09041~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09041~^~321~^101.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~322~^96.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09041~^~334~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~338~^84.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09041~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09041~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09042~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09042~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~301~^29.^5^6.^~1~^~A~^^^2^14.^44.^3^6.^51.^~2, 3~^~02/01/2003~ -~09042~^~304~^20.^4^1.^~1~^~A~^^^2^19.^25.^1^5.^35.^~2, 3~^~02/01/2003~ -~09042~^~305~^22.^4^0.^~1~^~A~^^^2^15.^31.^1^13.^31.^~2, 3~^~02/01/2003~ -~09042~^~306~^162.^2^^~1~^~A~^^^1^159.^164.^1^^^^~05/01/2003~ -~09042~^~307~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2003~ -~09042~^~318~^214.^4^39.^~1~^~A~^^^2^67.^340.^2^44.^383.^~2, 3~^~02/01/2003~ -~09042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09042~^~320~^11.^4^1.^~1~^~A~^^^2^3.^17.^2^2.^19.^~2, 3~^~02/01/2003~ -~09042~^~321~^128.^4^23.^~1~^~A~^^^2^40.^204.^2^26.^230.^~2, 3~^~02/01/2003~ -~09042~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09042~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~338~^118.^4^11.^~1~^~A~^^^2^87.^139.^2^69.^165.^~2, 3~^~02/01/2003~ -~09042~^~417~^25.^5^2.^~1~^~A~^^^2^20.^31.^3^18.^32.^~2, 3~^~02/01/2003~ -~09042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09042~^~432~^25.^5^2.^~1~^~A~^^^2^20.^31.^3^18.^32.^^~04/01/2006~ -~09042~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09043~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09043~^~301~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~304~^21.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~305~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~306~^135.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~307~^1.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~318~^123.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~320~^6.^0^^~4~^~NC~^~09042~^^^^^^^^^~03/01/2007~ -~09043~^~321~^74.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~322~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09043~^~334~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~337~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~338~^68.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~417~^10.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~432~^10.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2007~ -~09043~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09044~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~268~^1395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09044~^~301~^38.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~305~^36.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~306~^376.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~318~^2829.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09044~^~321~^1697.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~09044~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~338~^173.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09044~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09046~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09046~^~268~^385.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09046~^~301~^21.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~304~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~305~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~306~^99.^3^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~318~^219.^3^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09046~^~320~^11.^3^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09046~^~321~^131.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09046~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~337~^0.^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~338~^79.^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~417~^27.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09046~^~432~^27.^3^1.^~1~^^^^^^^^^^^~12/01/2006~ -~09046~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09048~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09048~^~268~^268.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09048~^~301~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~304~^22.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~305~^30.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~306~^140.^3^13.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~318~^114.^3^23.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09048~^~320~^6.^3^1.^~1~^^^^^^^^^^^~12/01/2006~ -~09048~^~321~^68.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09048~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~417~^34.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09048~^~432~^34.^3^3.^~1~^^^^^^^^^^^~12/01/2006~ -~09048~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09050~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~09050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09050~^~268~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~09050~^~301~^6.^12^0.^~1~^~A~^^^3^2.^11.^1^-3.^16.^~2~^~09/01/2002~ -~09050~^~304~^6.^12^0.^~1~^~A~^^^3^5.^7.^1^3.^8.^~2~^~09/01/2002~ -~09050~^~305~^12.^12^0.^~1~^~A~^^^3^7.^16.^1^5.^18.^~2~^~09/01/2002~ -~09050~^~306~^77.^6^5.^~1~^~A~^^^2^72.^83.^1^8.^146.^~4~^~05/01/2003~ -~09050~^~307~^1.^6^0.^~1~^~A~^^^2^0.^1.^1^-3.^5.^~4~^~05/01/2003~ -~09050~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~09050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09050~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~09050~^~321~^32.^16^3.^~1~^~A~^^^4^13.^89.^1^-9.^74.^~2~^~09/01/2002~ -~09050~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~ -~09050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09050~^~334~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~338~^80.^6^5.^~1~^~A~^^^2^63.^113.^1^34.^124.^~2, 3~^~09/01/2002~ -~09050~^~417~^6.^12^0.^~1~^~A~^^^3^3.^11.^1^4.^7.^~1, 2~^~09/01/2002~ -~09050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09050~^~432~^6.^12^0.^~1~^~A~^^^3^3.^11.^1^4.^7.^^~06/01/2010~ -~09050~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~09050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09052~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09052~^~268~^368.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09052~^~301~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~304~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~306~^40.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09052~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09052~^~321~^22.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~322~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09052~^~334~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~337~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~338~^53.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09052~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09052~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09053~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~09053~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~09053~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~304~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~306~^68.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~318~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~321~^35.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~09053~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~09054~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09054~^~268~^213.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09054~^~301~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~304~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~305~^11.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~306~^54.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~318~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09054~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09054~^~321~^28.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~322~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09054~^~334~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~337~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~338~^68.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~417~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09054~^~432~^7.^3^1.^~1~^^^^^^^^^^^~12/01/2006~ -~09054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09055~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~09055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09055~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~09055~^~301~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~304~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~305~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~306~^60.^3^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~318~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09055~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09055~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~09055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09055~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~09055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~09055~^~338~^73.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~09055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09055~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09055~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09055~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09056~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09056~^~268~^368.^0^^~4~^^^^^^^^^^^ -~09056~^~301~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~304~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~306~^90.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~318~^40.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09056~^~320~^2.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09056~^~417~^34.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09056~^~432~^34.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09057~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09057~^~268~^209.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09057~^~301~^27.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~304~^16.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~305~^27.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~306~^139.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~318~^67.^3^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09057~^~320~^3.^3^0.^~1~^^^^^^^^^^^~05/01/2007~ -~09057~^~321~^40.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09057~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~417~^63.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09057~^~432~^63.^3^4.^~1~^^^^^^^^^^^~05/01/2007~ -~09057~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09057~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09059~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09059~^~268~^431.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09059~^~301~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~305~^30.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~306~^490.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09059~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09059~^~321~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~09059~^~322~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~09059~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09059~^~334~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~09059~^~337~^0.^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~ -~09059~^~338~^22.^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~ -~09059~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09059~^~432~^14.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09059~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09059~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09060~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09060~^~268~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~301~^3.^5^0.^~1~^~A~^^^2^3.^4.^4^2.^4.^~4~^~09/01/2003~ -~09060~^~304~^10.^5^0.^~1~^~A~^^^2^9.^11.^4^8.^10.^~4~^~09/01/2003~ -~09060~^~305~^12.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^14.^~4~^~09/01/2003~ -~09060~^~306~^133.^5^8.^~1~^~A~^^^2^117.^164.^4^109.^155.^~4~^~09/01/2003~ -~09060~^~307~^2.^5^0.^~1~^~A~^^^2^1.^3.^4^0.^2.^~4~^~09/01/2003~ -~09060~^~318~^61.^4^19.^~1~^~A~^^^1^17.^96.^3^-1.^124.^~4~^~02/01/2003~ -~09060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09060~^~320~^3.^4^0.^~1~^~A~^^^1^1.^5.^3^0.^6.^~4~^~02/01/2003~ -~09060~^~321~^25.^4^24.^~1~^~A~^^^1^0.^49.^1^-286.^335.^~4~^~02/01/2003~ -~09060~^~322~^24.^4^8.^~1~^~A~^^^1^16.^33.^1^-83.^132.^~4~^~02/01/2003~ -~09060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09060~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~02/01/2003~ -~09060~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09060~^~338~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09060~^~417~^12.^4^2.^~1~^~A~^^^1^7.^18.^3^3.^19.^~4~^~09/01/2003~ -~09060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09060~^~432~^12.^4^2.^~1~^~A~^^^1^7.^18.^3^3.^19.^^~03/01/2007~ -~09060~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09061~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09061~^~268~^259.^0^^~4~^^^^^^^^^^^ -~09061~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~306~^260.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09061~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09061~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09062~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~268~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~301~^10.^6^2.^~1~^~A~^^^3^6.^16.^2^-1.^21.^~2~^~06/01/2009~ -~09062~^~304~^17.^6^0.^~1~^~A~^^^3^15.^20.^2^13.^20.^~2~^~06/01/2009~ -~09062~^~305~^26.^6^0.^~1~^~A~^^^3^20.^31.^2^23.^29.^~2~^~06/01/2009~ -~09062~^~306~^287.^6^30.^~1~^~A~^^^3^226.^368.^2^154.^419.^~2~^~06/01/2009~ -~09062~^~307~^7.^6^2.^~1~^~A~^^^3^4.^16.^2^-3.^16.^~2~^~06/01/2009~ -~09062~^~318~^5.^3^0.^~1~^~A~^^^1^4.^6.^2^2.^7.^~2, 3~^~07/01/2009~ -~09062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~09062~^~320~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~07/01/2009~ -~09062~^~321~^2.^3^0.^~1~^~A~^^^1^2.^3.^2^0.^4.^~2, 3~^~07/01/2009~ -~09062~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~07/01/2009~ -~09062~^~334~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~07/01/2009~ -~09062~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2009~ -~09062~^~338~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^2.^9.^~2, 3~^~07/01/2009~ -~09062~^~417~^23.^4^4.^~1~^~A~^^^2^18.^34.^1^-38.^84.^~2~^~06/01/2009~ -~09062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~09062~^~432~^23.^4^4.^~1~^~A~^^^2^18.^34.^1^-38.^84.^^~08/01/2009~ -~09062~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09063~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09063~^~268~^209.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09063~^~301~^16.^331^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~304~^9.^347^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~305~^15.^347^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~306~^173.^339^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~307~^3.^339^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~318~^1283.^330^18.^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09063~^~320~^64.^330^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09063~^~321~^770.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~ -~09063~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~ -~09063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09063~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~ -~09063~^~337~^0.^0^^~4~^~BFZN~^~09070~^^^^^^^^^~10/01/2002~ -~09063~^~338~^85.^0^^~4~^~BFZN~^~09070~^^^^^^^^^~10/01/2002~ -~09063~^~417~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09063~^~432~^8.^4^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09063~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09063~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09064~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09064~^~268~^151.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09064~^~301~^11.^5^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~306~^98.^5^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~307~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~318~^754.^5^40.^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09064~^~320~^38.^5^2.^~1~^^^^^^^^^^^~02/01/2007~ -~09064~^~321~^452.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~ -~09064~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~ -~09064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09064~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~ -~09064~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09064~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09064~^~417~^8.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09064~^~432~^8.^3^1.^~1~^^^^^^^^^^^~02/01/2007~ -~09064~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09064~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09065~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09065~^~268~^314.^0^^~4~^^^^^^^^^^^ -~09065~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~306~^95.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~318~^726.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09065~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09065~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09065~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09066~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09066~^~268~^381.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09066~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~306~^93.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~318~^714.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09066~^~320~^36.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09066~^~321~^428.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09066~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09066~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09066~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09066~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09067~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09067~^~268~^477.^0^^~4~^^^^^^^^^^^ -~09067~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~306~^91.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~318~^696.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09067~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09067~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09067~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09067~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09068~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09068~^~268~^192.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09068~^~301~^13.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~304~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~305~^16.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~306~^124.^3^11.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~318~^870.^3^203.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09068~^~320~^44.^3^10.^~1~^^^^^^^^^^^~02/01/2007~ -~09068~^~321~^522.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09068~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~337~^0.^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~338~^61.^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~417~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09068~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/2007~ -~09068~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09068~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09070~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09070~^~268~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~301~^13.^64^0.^~1~^~A~^^^20^11.^27.^16^12.^13.^~2~^~10/01/2002~ -~09070~^~304~^11.^65^0.^~1~^~A~^^^20^7.^19.^16^10.^11.^~2~^~10/01/2002~ -~09070~^~305~^21.^63^0.^~1~^~A~^^^19^13.^29.^16^21.^21.^~2~^~10/01/2002~ -~09070~^~306~^222.^65^1.^~1~^~A~^^^20^129.^267.^16^218.^224.^~2~^~10/01/2002~ -~09070~^~307~^0.^64^0.^~1~^~A~^^^20^0.^1.^16^0.^0.^~1, 2~^~10/01/2002~ -~09070~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~09070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09070~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~09070~^~321~^38.^6^10.^~1~^~A~^^^2^25.^60.^2^-8.^85.^~4~^~10/01/2002~ -~09070~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~ -~09070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09070~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~ -~09070~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~ -~09070~^~338~^85.^2^^~1~^~A~^^^1^84.^85.^1^^^^~10/01/2002~ -~09070~^~417~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^-6.^14.^~1, 2, 3~^~10/01/2002~ -~09070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09070~^~432~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^-6.^14.^^~05/01/2007~ -~09070~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09070~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09071~^~268~^192.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09071~^~301~^11.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~304~^9.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~305~^15.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~306~^131.^19^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~307~^1.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~318~^160.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09071~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09071~^~321~^96.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09071~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09071~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09071~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09072~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09072~^~268~^226.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09072~^~301~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~304~^12.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~305~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~306~^131.^6^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~318~^125.^5^30.^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09072~^~320~^6.^5^1.^~1~^^^^^^^^^^^~03/01/2007~ -~09072~^~321~^75.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09072~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09072~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09072~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09072~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09073~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09073~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09073~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~306~^148.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~318~^157.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09073~^~320~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09073~^~321~^94.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09073~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09073~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09073~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09073~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09074~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09074~^~268~^347.^0^^~4~^^^^^^^^^^^~05/01/2008~ -~09074~^~301~^9.^82^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~304~^9.^110^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~305~^18.^82^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~306~^145.^82^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~307~^3.^88^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~318~^154.^138^4.^~1~^^^^^^^^^^^~05/01/2008~ -~09074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09074~^~320~^8.^138^0.^~1~^^^^^^^^^^^~05/01/2008~ -~09074~^~321~^92.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~ -~09074~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~ -~09074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09074~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~ -~09074~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~05/01/2008~ -~09074~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~04/01/2008~ -~09074~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09074~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/2008~ -~09074~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09074~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09075~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09075~^~268~^427.^0^^~4~^^^^^^^^^^^ -~09075~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~306~^142.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~318~^151.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09075~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09075~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09075~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09075~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09075~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09077~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09077~^~268~^318.^0^^~4~^^^^^^^^^^^ -~09077~^~301~^18.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~304~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~305~^15.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~306~^194.^3^23.^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09077~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09077~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09078~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~09078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09078~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09078~^~301~^8.^5^0.^~1~^~A~^^^2^7.^9.^1^5.^10.^~2~^~08/01/2002~ -~09078~^~304~^6.^5^0.^~1~^~A~^^^2^6.^6.^1^5.^6.^~2~^~08/01/2002~ -~09078~^~305~^11.^5^1.^~1~^~A~^^^2^10.^14.^1^-7.^29.^~2~^~05/01/2015~ -~09078~^~306~^80.^5^5.^~1~^~A~^^^2^75.^91.^1^14.^145.^~2~^~05/01/2015~ -~09078~^~307~^2.^5^0.^~1~^~A~^^^2^0.^4.^1^0.^2.^~1, 2~^~08/01/2002~ -~09078~^~318~^63.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~09078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09078~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~09078~^~321~^38.^5^1.^~1~^~A~^^^2^29.^41.^1^14.^61.^~2~^~05/01/2015~ -~09078~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09078~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~338~^91.^4^9.^~1~^~A~^^^1^68.^111.^3^60.^121.^~2, 3~^~08/01/2002~ -~09078~^~417~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09078~^~432~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^^~04/01/2007~ -~09078~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~09078~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09079~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09079~^~268~^1288.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09079~^~301~^9.^7^1.^~1~^~A~^^^2^6.^10.^1^-5.^23.^~2~^~06/01/2015~ -~09079~^~304~^4.^4^0.^~1~^~A~^^^2^4.^5.^1^0.^8.^~2~^~06/01/2015~ -~09079~^~305~^8.^4^0.^~1~^~A~^^^2^7.^9.^1^7.^8.^~2~^~04/01/2003~ -~09079~^~306~^49.^4^8.^~1~^~A~^^^2^40.^60.^1^-60.^158.^~2~^~06/01/2015~ -~09079~^~307~^5.^7^1.^~1~^~A~^^^2^3.^12.^1^-18.^28.^~1, 2~^~06/01/2015~ -~09079~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09079~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09079~^~321~^27.^6^6.^~1~^~A~^^^1^14.^44.^5^11.^42.^~1, 4~^~06/01/2015~ -~09079~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09079~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09079~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09079~^~338~^138.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09079~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~ -~09079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09079~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2007~ -~09079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09079~^~601~^0.^7^0.^~1~^~A~^^^2^0.^0.^6^0.^0.^~1, 4~^~06/01/2015~ -~09081~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09081~^~268~^667.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09081~^~301~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~06/01/2015~ -~09081~^~304~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~06/01/2015~ -~09081~^~305~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~06/01/2015~ -~09081~^~306~^28.^2^^~1~^~A~^^^1^21.^34.^1^^^^~06/01/2015~ -~09081~^~307~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^~1~^~06/01/2015~ -~09081~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09081~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09081~^~321~^20.^2^^~1~^~A~^^^1^20.^20.^1^^^~1~^~06/01/2015~ -~09081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09081~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09081~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09081~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09081~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09082~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09082~^~268~^745.^0^^~4~^^^^^^^^^^^ -~09082~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~306~^38.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~307~^32.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09082~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09082~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09083~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09083~^~268~^264.^0^^~4~^^^^^^^^^^^ -~09083~^~301~^55.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~305~^59.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~306~^322.^4^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~318~^230.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09083~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09083~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09084~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09084~^~268~^234.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09084~^~301~^33.^5^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~304~^13.^5^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~306~^275.^6^16.^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~307~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~318~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~09084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09084~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~09084~^~321~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09084~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09084~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09084~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09084~^~338~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09084~^~417~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09084~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09084~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09085~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09085~^~268~^1215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~301~^88.^6^4.^~1~^~A~^^^1^67.^98.^5^75.^99.^~2, 3~^~07/01/2017~ -~09085~^~304~^36.^6^0.^~1~^~A~^^^1^35.^37.^5^35.^36.^~2, 3~^~07/01/2017~ -~09085~^~305~^99.^6^2.^~1~^~A~^^^1^93.^106.^5^92.^104.^~2, 3~^~07/01/2017~ -~09085~^~306~^777.^6^14.^~1~^~A~^^^1^736.^829.^5^740.^813.^~2, 3~^~07/01/2017~ -~09085~^~307~^43.^6^11.^~1~^~A~^^^1^21.^96.^5^12.^73.^~2, 3~^~07/01/2017~ -~09085~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~319~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~07/01/2017~ -~09085~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09085~^~321~^43.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~ -~09085~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~ -~09085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09085~^~334~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~ -~09085~^~337~^0.^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~ -~09085~^~338~^0.^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~ -~09085~^~417~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09085~^~432~^10.^4^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09085~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09085~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~ -~09086~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09086~^~268~^423.^0^^~4~^^^^^^^^^^^ -~09086~^~301~^30.^9^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~305~^21.^7^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~306~^382.^4^52.^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~318~^33.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09086~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~09086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09087~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~268~^1178.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~301~^39.^13^3.^~1~^~A~^^^3^30.^47.^2^25.^51.^~2~^~10/01/2002~ -~09087~^~304~^43.^13^0.^~1~^~A~^^^3^40.^45.^2^41.^44.^~2~^~10/01/2002~ -~09087~^~305~^62.^13^2.^~1~^~A~^^^3^54.^68.^2^50.^72.^~2~^~10/01/2002~ -~09087~^~306~^656.^13^24.^~1~^~A~^^^3^584.^731.^2^548.^763.^~2~^~10/01/2002~ -~09087~^~307~^2.^9^1.^~1~^~A~^^^2^1.^5.^1^-18.^23.^~1, 2~^~10/01/2002~ -~09087~^~318~^10.^8^1.^~1~^~A~^^^2^0.^13.^3^4.^15.^~2, 3~^~10/01/2002~ -~09087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09087~^~320~^0.^8^0.^~1~^~A~^^^2^0.^1.^3^0.^0.^~2, 3~^~10/01/2002~ -~09087~^~321~^6.^8^1.^~1~^~A~^^^2^0.^8.^3^2.^9.^~1, 2, 3~^~10/01/2002~ -~09087~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09087~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~338~^75.^8^5.^~1~^~A~^^^2^55.^102.^5^62.^88.^~2, 3~^~10/01/2002~ -~09087~^~417~^19.^13^1.^~1~^~A~^^^3^11.^28.^2^11.^26.^~2~^~10/01/2002~ -~09087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~432~^19.^13^1.^~1~^~A~^^^3^11.^28.^2^11.^26.^^~05/01/2007~ -~09087~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09088~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09088~^~268~^305.^0^^~4~^^^^^^^^^^^ -~09088~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~304~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09088~^~305~^39.^12^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~306~^280.^12^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~307~^6.^0^^~1~^^^^^^^^^^^~04/01/1985~ -~09088~^~318~^600.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09088~^~320~^30.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09088~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09088~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09088~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09089~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09089~^~268~^310.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09089~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~304~^17.^16^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~305~^14.^16^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~306~^232.^8^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~307~^1.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~318~^142.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09089~^~320~^7.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~09089~^~321~^85.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09089~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~338~^9.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09089~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09089~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09089~^~636~^31.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09090~^~268~^222.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09090~^~301~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~306~^103.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~318~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09090~^~320~^2.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09090~^~321~^23.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09090~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~338~^7.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~417~^2.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09090~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09090~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09091~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09091~^~268~^289.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09091~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~318~^37.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09091~^~320~^2.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09091~^~321~^22.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09091~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~338~^8.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~417~^2.^0^^~4~^^^^^^^^^^^~10/01/1986~ -~09091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09091~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09091~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09092~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09092~^~268~^368.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09092~^~301~^27.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~304~^10.^17^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~305~^10.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~306~^99.^17^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~307~^1.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~318~^37.^18^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09092~^~320~^2.^18^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09092~^~321~^22.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09092~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~338~^11.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~417~^2.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09092~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09092~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09092~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09093~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09093~^~268~^448.^0^^~4~^^^^^^^^^^^ -~09093~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~318~^36.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09093~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09094~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09094~^~268~^1041.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09094~^~301~^162.^8^1.^~1~^~A~^^^2^153.^169.^5^157.^167.^~2, 3~^~12/01/2002~ -~09094~^~304~^68.^8^0.^~1~^~A~^^^2^63.^73.^5^66.^68.^~2, 3~^~12/01/2002~ -~09094~^~305~^67.^8^1.^~1~^~A~^^^2^62.^70.^5^64.^70.^~2, 3~^~12/01/2002~ -~09094~^~306~^680.^8^12.^~1~^~A~^^^2^581.^773.^6^650.^710.^~2, 3~^~12/01/2002~ -~09094~^~307~^10.^8^0.^~1~^~A~^^^2^7.^14.^6^8.^11.^~1, 2, 3~^~12/01/2002~ -~09094~^~318~^10.^8^0.^~1~^~A~^^^2^10.^10.^^^^~2, 3~^~12/01/2002~ -~09094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09094~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~09094~^~321~^6.^8^0.^~1~^~A~^^^2^6.^6.^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09094~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~338~^32.^8^3.^~1~^~A~^^^2^23.^50.^4^22.^40.^~2, 3~^~12/01/2002~ -~09094~^~417~^9.^8^0.^~1~^~A~^^^2^4.^12.^4^7.^11.^~1, 2, 3~^~12/01/2002~ -~09094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09094~^~432~^9.^8^0.^~1~^~A~^^^2^4.^12.^4^7.^11.^^~04/01/2006~ -~09094~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09095~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09095~^~268~^449.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09095~^~301~^70.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~304~^29.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~305~^29.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~306~^294.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~307~^4.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~318~^4.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09095~^~321~^3.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~322~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09095~^~334~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~338~^14.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~417~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09095~^~432~^1.^3^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09096~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09096~^~268~^134.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09096~^~301~^5.^10^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~304~^7.^10^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~305~^11.^10^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~306~^94.^31^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~307~^4.^31^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~318~^250.^12^16.^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09096~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09096~^~321~^126.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09096~^~322~^0.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09096~^~334~^48.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09096~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09096~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09096~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09096~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09096~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09097~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09097~^~268~^192.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09097~^~301~^8.^7^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~304~^7.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~305~^14.^6^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~306~^95.^6^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~307~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~318~^305.^6^47.^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09097~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09097~^~321~^154.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~322~^0.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09097~^~334~^58.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09097~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09097~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09098~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09098~^~268~^188.^0^^~4~^^^^^^^^^^^ -~09098~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~305~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~306~^104.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~318~^233.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09098~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~09098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09098~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09098~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09098~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09099~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09099~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09099~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~318~^208.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09099~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09099~^~321~^104.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09099~^~322~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09099~^~334~^39.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09099~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09099~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09099~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09099~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09099~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09100~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09100~^~268~^305.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09100~^~301~^6.^102^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~304~^5.^85^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~305~^11.^105^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~306~^88.^120^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~307~^6.^140^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~318~^205.^262^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09100~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09100~^~321~^104.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09100~^~322~^0.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09100~^~334~^39.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~ -~09100~^~337~^0.^0^^~4~^~BFYN~^~09351~^^^^^^^^^~01/01/2003~ -~09100~^~338~^75.^0^^~4~^~BFYN~^~09351~^^^^^^^^^~01/01/2003~ -~09100~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09100~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09100~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09101~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09101~^~268~^368.^0^^~4~^^^^^^^^^^^ -~09101~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~306~^86.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~318~^201.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09101~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09101~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09101~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09101~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09102~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09102~^~268~^126.^0^^~4~^^^^^^^^^^^ -~09102~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~306~^78.^11^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~307~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~318~^440.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09102~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09102~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09102~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09102~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09102~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09103~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09103~^~268~^209.^0^^~4~^^^^^^^^^^^ -~09103~^~301~^11.^7^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~305~^14.^6^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~306~^116.^7^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~307~^5.^7^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~318~^600.^6^42.^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09103~^~320~^30.^6^2.^~1~^^^^^^^^^^^~06/01/2002~ -~09103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09103~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09103~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09103~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09103~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09104~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09104~^~268~^243.^0^^~4~^^^^^^^^^^^ -~09104~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~318~^429.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09104~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09104~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09104~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09106~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09106~^~268~^368.^0^^~4~^^^^^^^^^^^ -~09106~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~306~^80.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~318~^637.^5^22.^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09106~^~320~^32.^5^1.^~1~^^^^^^^^^^^~06/01/2002~ -~09106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09106~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09106~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09106~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09107~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09107~^~268~^184.^0^^~4~^^^^^^^^^^^ -~09107~^~301~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~304~^10.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~305~^27.^5^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~306~^198.^6^12.^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~318~^290.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09107~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09107~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09107~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09107~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09107~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09109~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09109~^~268~^305.^0^^~4~^^^^^^^^^^^ -~09109~^~301~^16.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~304~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~305~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~318~^138.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09109~^~320~^7.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09109~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09109~^~432~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09110~^~208~^349.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~268~^1461.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~301~^190.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~318~^26822.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09111~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09111~^~268~^134.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09111~^~301~^12.^49^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~304~^8.^97^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~305~^8.^50^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~306~^139.^73^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~307~^0.^36^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~318~^927.^0^^~4~^~RA~^^^^^^^^^^~09/01/2003~ -~09111~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09111~^~320~^46.^0^^~4~^~RA~^^^^^^^^^^~09/01/2003~ -~09111~^~321~^552.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~322~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09111~^~334~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~337~^1135.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~338~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~417~^10.^52^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09111~^~432~^10.^52^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09111~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09111~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09112~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09112~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09112~^~301~^22.^9^4.^~1~^~A~^^^3^13.^33.^2^3.^41.^~2~^~01/01/2003~ -~09112~^~304~^9.^9^0.^~1~^~A~^^^3^8.^10.^2^7.^9.^~2~^~01/01/2003~ -~09112~^~305~^18.^8^0.^~1~^~A~^^^2^15.^20.^6^16.^19.^~2, 3~^~01/01/2003~ -~09112~^~306~^135.^9^13.^~1~^~A~^^^3^95.^165.^2^76.^194.^~2~^~01/01/2003~ -~09112~^~307~^0.^17^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09112~^~318~^1150.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09112~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09112~^~321~^686.^91^245.^~1~^~A~^^^8^248.^2343.^7^104.^1267.^~2~^~01/01/2003~ -~09112~^~322~^3.^74^2.^~1~^~A~^^^6^0.^14.^5^-3.^8.^~2~^~01/01/2003~ -~09112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09112~^~334~^6.^73^4.^~1~^~A~^^^6^0.^30.^5^-6.^18.^~2~^~01/01/2003~ -~09112~^~337~^1419.^23^525.^~1~^~A~^^^5^160.^3362.^4^-39.^2877.^~2~^~01/01/2003~ -~09112~^~338~^5.^8^5.^~1~^~A~^^^4^0.^20.^3^-10.^20.^~2~^~01/01/2003~ -~09112~^~417~^13.^8^0.^~1~^~A~^^^2^8.^19.^3^11.^14.^~1, 2, 3~^~01/01/2003~ -~09112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09112~^~432~^13.^8^0.^~1~^~A~^^^2^8.^19.^3^11.^14.^^~08/01/2010~ -~09112~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09112~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09113~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09113~^~268~^155.^0^^~4~^^^^^^^^^^^ -~09113~^~301~^11.^22^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~304~^9.^22^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~306~^147.^22^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~307~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~318~^259.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09113~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~09113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09113~^~417~^12.^22^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09113~^~432~^12.^22^0.^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~ -~09113~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09114~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~09114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09114~^~268~^126.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~09114~^~301~^15.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~304~^8.^16^0.^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~305~^9.^16^0.^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~306~^127.^8^4.^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~307~^0.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09114~^~318~^259.^6^78.^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09114~^~320~^13.^6^3.^~1~^^^^^^^^^^^~09/01/2003~ -~09114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09114~^~417~^9.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09114~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09114~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~ -~09114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09116~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09116~^~268~^138.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09116~^~301~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~304~^9.^59^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~305~^8.^34^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~306~^148.^43^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~307~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~09116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09116~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~09116~^~321~^14.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09116~^~322~^8.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09116~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09116~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09116~^~338~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09116~^~417~^10.^30^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09116~^~432~^10.^30^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09116~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09116~^~636~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09117~^~268~^155.^0^^~4~^^^^^^^^^^^ -~09117~^~301~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~304~^9.^43^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~305~^12.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~306~^143.^35^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~307~^0.^11^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09117~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2003~ -~09117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09117~^~417~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09117~^~432~^12.^27^0.^~1~^^^^^^^^^^^~09/01/2003~ -~09117~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~ -~09117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09118~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09118~^~268~^134.^0^^~4~^^^^^^^^^^^ -~09118~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~305~^7.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~306~^150.^8^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~307~^0.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09118~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2003~ -~09118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09118~^~417~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09118~^~432~^9.^3^1.^~1~^^^^^^^^^^^~09/01/2003~ -~09118~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~ -~09118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09119~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~268~^151.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09119~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09119~^~320~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09119~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09119~^~432~^9.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09119~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09120~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~268~^155.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09120~^~301~^15.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~304~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~305~^12.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~306~^169.^14^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~307~^7.^13^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09120~^~320~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09120~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09120~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09120~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09120~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09121~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~268~^251.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09121~^~301~^14.^14^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~304~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~305~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~306~^129.^14^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~307~^2.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09121~^~320~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~09121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09121~^~417~^9.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09121~^~432~^9.^3^2.^~1~^^^^^^^^^^^~12/01/2006~ -~09121~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09123~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09123~^~262~^0.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~263~^0.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09123~^~301~^16.^11^0.^~1~^~A~^^^2^12.^20.^8^15.^16.^~2, 3~^~10/01/2016~ -~09123~^~304~^9.^11^0.^~1~^~A~^^^2^8.^10.^5^9.^9.^~2, 3~^~10/01/2016~ -~09123~^~305~^17.^11^0.^~1~^~A~^^^2^15.^19.^4^16.^17.^~2, 3~^~10/01/2016~ -~09123~^~306~^141.^11^3.^~1~^~A~^^^2^127.^160.^4^131.^150.^~2, 3~^~10/01/2016~ -~09123~^~307~^2.^11^0.^~1~^~A~^^^2^2.^3.^6^1.^2.^~1, 2, 3~^~10/01/2016~ -~09123~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~09123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09123~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~09123~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~09123~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09123~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09123~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09123~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09123~^~417~^14.^3^0.^~1~^~A~^^^1^8.^15.^1^7.^20.^~2, 3~^~10/01/2016~ -~09123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09123~^~432~^14.^3^0.^~1~^~A~^^^1^8.^15.^1^7.^20.^^~10/01/2016~ -~09123~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09123~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09124~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09124~^~268~^192.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~09124~^~301~^8.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~304~^10.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~305~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~306~^162.^16^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~307~^2.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~09124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09124~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~09124~^~321~^3.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~322~^2.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09124~^~334~^1.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~337~^0.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~338~^10.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09124~^~432~^10.^0^^~1~^^^^^^^^^^^~01/01/2005~ -~09124~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~09124~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09125~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09125~^~268~^611.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09125~^~301~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~304~^38.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~305~^49.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~306~^484.^3^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~318~^31.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09125~^~320~^2.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~09125~^~321~^13.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09125~^~322~^8.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09125~^~334~^3.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09125~^~337~^0.^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~ -~09125~^~338~^34.^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~ -~09125~^~417~^13.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09125~^~432~^13.^3^3.^~1~^^^^^^^^^^^~01/01/2007~ -~09125~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09125~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09126~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09126~^~268~^172.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09126~^~301~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~304~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~305~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~306~^136.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~318~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09126~^~320~^0.^3^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09126~^~321~^4.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09126~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09126~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~ -~09126~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09126~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09126~^~417~^4.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09126~^~432~^4.^3^1.^~1~^^^^^^^^^^^~12/01/2006~ -~09126~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09126~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09127~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~268~^164.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09127~^~301~^146.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~09127~^~304~^9.^6^0.^~1~^~A~^^^1^9.^10.^5^8.^9.^~2, 3~^~10/01/2016~ -~09127~^~305~^16.^6^0.^~1~^~A~^^^1^15.^17.^5^15.^16.^~2, 3~^~10/01/2016~ -~09127~^~306~^132.^6^3.^~1~^~A~^^^1^124.^145.^5^123.^141.^~2, 3~^~10/01/2016~ -~09127~^~307~^2.^6^0.^~1~^~A~^^^1^2.^4.^5^1.^3.^~1, 2, 3~^~10/01/2016~ -~09127~^~318~^320.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09127~^~319~^0.^0^^~4~^~BNA~^~09112~^^^^^^^^^~11/01/2016~ -~09127~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09127~^~321~^188.^2^^~1~^~A~^^^1^184.^193.^1^^^^~10/01/2016~ -~09127~^~322~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~10/01/2016~ -~09127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~334~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2016~ -~09127~^~337~^297.^2^^~1~^~A~^^^1^286.^307.^1^^^^~10/01/2016~ -~09127~^~338~^14.^2^^~1~^~A~^^^1^14.^15.^1^^^^~10/01/2016~ -~09127~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09127~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09128~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09128~^~268~^163.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09128~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~305~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~306~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~318~^10.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09128~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09128~^~321~^4.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~ -~09128~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~ -~09128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09128~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~ -~09128~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09128~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~ -~09128~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09128~^~432~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09128~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09129~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~09129~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~09129~^~301~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~305~^24.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~306~^203.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~307~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~09129~^~318~^67.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~321~^39.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~09129~^~338~^64.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09130~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~301~^11.^10^0.^~1~^~A~^^^4^9.^12.^3^9.^11.^~2~^~06/01/2008~ -~09130~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~06/01/2008~ -~09130~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~06/01/2008~ -~09130~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~06/01/2008~ -~09130~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~06/01/2008~ -~09130~^~318~^8.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~321~^5.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~322~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09130~^~334~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~06/01/2008~ -~09130~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~06/01/2008~ -~09130~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09130~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09130~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09130~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~09130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09131~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~09131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09131~^~268~^280.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09131~^~301~^14.^7^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~305~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~306~^191.^5^27.^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~307~^2.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~318~^100.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09131~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09131~^~321~^59.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09131~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~337~^0.^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~338~^72.^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09131~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09131~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09132~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09132~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~301~^10.^36^0.^~1~^~A~^^^11^6.^17.^10^9.^11.^~2~^~01/01/2003~ -~09132~^~304~^7.^36^0.^~1~^~A~^^^11^5.^10.^10^6.^7.^~2~^~01/01/2003~ -~09132~^~305~^20.^34^0.^~1~^~A~^^^10^14.^28.^9^18.^22.^~2~^~01/01/2003~ -~09132~^~306~^191.^36^6.^~1~^~A~^^^11^134.^292.^10^177.^205.^~2~^~01/01/2003~ -~09132~^~307~^2.^31^0.^~1~^~A~^^^11^0.^9.^10^1.^2.^~1, 2~^~05/01/2003~ -~09132~^~318~^66.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09132~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09132~^~321~^39.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09132~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09132~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09132~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09132~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~05/01/2006~ -~09132~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09132~^~636~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09133~^~268~^167.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09133~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~306~^107.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~318~^45.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09133~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09133~^~321~^26.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~322~^1.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09133~^~334~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~337~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~338~^48.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09133~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09133~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09133~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09134~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09134~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09134~^~301~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~306~^103.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~318~^64.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09134~^~320~^3.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~09134~^~321~^38.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09134~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~337~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~338~^48.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09134~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09134~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09134~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09135~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~09135~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09135~^~301~^11.^10^0.^~1~^~A~^^^4^9.^12.^3^9.^11.^~2~^~06/01/2008~ -~09135~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~06/01/2008~ -~09135~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~06/01/2008~ -~09135~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~06/01/2008~ -~09135~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~06/01/2008~ -~09135~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09135~^~321~^5.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~ -~09135~^~322~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~ -~09135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09135~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~ -~09135~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~11/01/2002~ -~09135~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~04/01/2014~ -~09135~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09135~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09135~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09135~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09138~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09138~^~268~^222.^0^^~4~^^^^^^^^^^^ -~09138~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~305~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~318~^720.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09138~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09139~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09139~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~301~^18.^2^^~1~^~A~^^^1^18.^19.^1^^^^~09/01/2003~ -~09139~^~304~^22.^2^^~1~^~A~^^^1^16.^28.^1^^^^~09/01/2003~ -~09139~^~305~^40.^2^^~1~^~A~^^^1^36.^43.^1^^^^~09/01/2003~ -~09139~^~306~^417.^2^^~1~^~A~^^^1^374.^460.^1^^^^~09/01/2003~ -~09139~^~307~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~09/01/2003~ -~09139~^~318~^624.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~09139~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09139~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~09139~^~321~^374.^21^205.^~1~^~A~^^^3^0.^1190.^2^-510.^1258.^~1, 2~^~04/01/2003~ -~09139~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2003~ -~09139~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09139~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2003~ -~09139~^~337~^5204.^19^106.^~1~^~A~^^^2^4700.^5500.^1^3847.^6560.^~2~^~04/01/2003~ -~09139~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09139~^~417~^49.^2^^~1~^~A~^^^1^47.^51.^1^^^^~09/01/2003~ -~09139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09139~^~432~^49.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~09139~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09140~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09140~^~268~^289.^0^^~4~^^^^^^^^^^^ -~09140~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~306~^292.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~307~^37.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~318~^90.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09140~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09143~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~09143~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09143~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~304~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~305~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~318~^283.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09143~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09143~^~321~^170.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~09143~^~322~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09143~^~334~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09143~^~337~^3909.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09143~^~338~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09143~^~417~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09143~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09143~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09144~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~268~^397.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~301~^24.^2^^~1~^~A~^^^1^19.^29.^1^^^^~01/01/2010~ -~09144~^~304~^29.^2^^~1~^~A~^^^1^18.^40.^1^^^^~01/01/2010~ -~09144~^~305~^21.^2^^~1~^~A~^^^1^17.^26.^1^^^^~01/01/2010~ -~09144~^~306~^448.^2^^~1~^~A~^^^1^347.^548.^1^^^^~01/01/2010~ -~09144~^~307~^2.^2^^~1~^~A~^^^1^2.^2.^^^^~1~^~01/01/2010~ -~09144~^~318~^110.^2^^~1~^~A~^^^1^61.^158.^1^^^^~08/01/2010~ -~09144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09144~^~320~^5.^2^^~1~^~A~^^^1^3.^8.^1^^^^~08/01/2010~ -~09144~^~321~^61.^2^^~1~^~A~^^^1^37.^84.^1^^^^~08/01/2010~ -~09144~^~322~^6.^2^^~1~^~A~^^^1^0.^12.^1^^^~1~^~08/01/2010~ -~09144~^~334~^5.^2^^~1~^~A~^^^1^0.^9.^1^^^~1~^~08/01/2010~ -~09144~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2010~ -~09144~^~338~^157.^2^^~1~^~A~^^^1^42.^273.^1^^^^~08/01/2010~ -~09144~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09144~^~432~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09145~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09145~^~268~^251.^0^^~4~^^^^^^^^^^^ -~09145~^~301~^19.^3^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~304~^15.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~305~^17.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~306~^79.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~318~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09145~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09146~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09146~^~268~^331.^0^^~4~^^^^^^^^^^^ -~09146~^~301~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~305~^23.^6^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~306~^250.^3^20.^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09146~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09146~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09147~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~09147~^~268~^1176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~09147~^~301~^63.^5^9.^~1~^~A~^^^1^38.^93.^4^37.^88.^~2, 3~^~07/01/2015~ -~09147~^~305~^68.^5^7.^~1~^~A~^^^1^47.^89.^4^46.^89.^~2, 3~^~07/01/2015~ -~09147~^~306~^217.^5^53.^~1~^~A~^^^1^64.^362.^4^68.^365.^~2, 3~^~07/01/2015~ -~09147~^~307~^5.^5^0.^~1~^~A~^^^1^2.^6.^4^3.^6.^~2, 3~^~07/01/2015~ -~09147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09148~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09148~^~268~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~301~^34.^20^4.^~1~^~A~^^^4^21.^45.^3^20.^46.^~2~^~01/01/2003~ -~09148~^~304~^17.^21^0.^~1~^~A~^^^4^12.^23.^3^13.^19.^~2~^~01/01/2003~ -~09148~^~305~^34.^19^1.^~1~^~A~^^^3^25.^42.^2^27.^40.^~2~^~01/01/2003~ -~09148~^~306~^312.^16^6.^~1~^~A~^^^3^286.^358.^2^283.^340.^~2~^~01/01/2003~ -~09148~^~307~^3.^18^0.^~1~^~A~^^^4^0.^4.^3^0.^5.^~1, 2~^~05/01/2003~ -~09148~^~318~^87.^18^4.^~1~^~A~^^^3^53.^120.^2^66.^107.^~2~^~01/01/2003~ -~09148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09148~^~320~^4.^18^0.^~1~^~A~^^^3^3.^6.^2^3.^5.^~2~^~01/01/2003~ -~09148~^~321~^52.^18^2.^~1~^~A~^^^3^32.^70.^2^39.^65.^~2~^~01/01/2003~ -~09148~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09148~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~338~^122.^6^5.^~1~^~A~^^^2^96.^150.^4^105.^137.^~2, 3~^~01/01/2003~ -~09148~^~417~^25.^17^2.^~1~^~A~^^^3^20.^35.^2^16.^33.^~2~^~01/01/2003~ -~09148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09148~^~432~^25.^17^2.^~1~^~A~^^^3^20.^35.^2^16.^33.^^~05/01/2009~ -~09148~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09149~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~09149~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09149~^~301~^62.^2^^~1~^~A~^^^1^47.^77.^^^^^~02/01/2003~ -~09149~^~304~^20.^2^^~1~^~A~^^^1^18.^21.^^^^^~02/01/2003~ -~09149~^~305~^19.^2^^~1~^~A~^^^1^16.^22.^^^^^~02/01/2003~ -~09149~^~306~^186.^2^^~1~^~A~^^^1^179.^193.^^^^^~02/01/2003~ -~09149~^~307~^10.^2^^~1~^~A~^^^1^9.^11.^^^^^~02/01/2003~ -~09149~^~318~^290.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09149~^~320~^15.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09149~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09149~^~322~^155.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09149~^~334~^193.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09149~^~337~^0.^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09149~^~338~^129.^0^^~4~^~BFZN~^~09202~^^^^^^^^^~05/01/2003~ -~09149~^~417~^17.^2^^~1~^~A~^^^1^15.^18.^^^^^~02/01/2003~ -~09149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09149~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~09149~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~09149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09150~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09150~^~268~^121.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09150~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~304~^8.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09150~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~318~^22.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~09150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09150~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~09150~^~321~^3.^2^^~1~^~A~^^^2^3.^3.^1^^^^~02/01/2003~ -~09150~^~322~^1.^2^^~1~^~A~^^^2^0.^1.^1^^^^~02/01/2003~ -~09150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09150~^~334~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09150~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09150~^~338~^11.^2^^~1~^~A~^^^2^9.^12.^1^^^^~02/01/2003~ -~09150~^~417~^11.^7^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09150~^~432~^11.^7^2.^~1~^^^^^^^^^^^~02/01/2007~ -~09150~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09150~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09152~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09152~^~268~^91.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~301~^6.^6^2.^~1~^~A~^^^2^3.^9.^1^-21.^33.^~2~^~11/01/2009~ -~09152~^~304~^6.^6^0.^~1~^~A~^^^2^3.^8.^1^-5.^17.^~2~^~11/01/2009~ -~09152~^~305~^8.^6^2.^~1~^~A~^^^2^4.^11.^1^-28.^44.^~2~^~11/01/2009~ -~09152~^~306~^103.^8^6.^~1~^~A~^^^2^53.^145.^1^26.^180.^~2~^~11/01/2009~ -~09152~^~307~^1.^15^0.^~1~^^^^^^^^^^^~11/01/2009~ -~09152~^~318~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09152~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09152~^~334~^4.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~338~^15.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~417~^20.^4^6.^~1~^~A~^^^2^12.^34.^1^-60.^99.^~2~^~11/01/2009~ -~09152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09152~^~432~^20.^4^6.^~1~^~A~^^^2^12.^34.^1^-60.^99.^^~11/01/2009~ -~09152~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09153~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09153~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~301~^10.^18^0.^~1~^~A~^^^1^7.^15.^11^8.^10.^~2, 3~^~03/01/2015~ -~09153~^~304~^7.^18^0.^~1~^~A~^^^1^6.^8.^12^6.^6.^~2, 3~^~03/01/2015~ -~09153~^~305~^9.^18^0.^~1~^~A~^^^1^7.^12.^11^8.^9.^~2, 3~^~08/01/1982~ -~09153~^~306~^109.^18^2.^~1~^~A~^^^1^76.^128.^12^103.^115.^~2, 3~^~03/01/2015~ -~09153~^~307~^24.^18^0.^~1~^~A~^^^1^14.^31.^12^22.^25.^~2, 3~^~03/01/2015~ -~09153~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09153~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09153~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~417~^9.^9^0.^~1~^~A~^^^1^4.^12.^4^8.^9.^~1, 2, 3~^~03/01/2015~ -~09153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09153~^~432~^9.^9^0.^~1~^~A~^^^1^4.^12.^4^8.^9.^^~03/01/2015~ -~09153~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09156~^~208~^47.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09156~^~268~^197.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09156~^~301~^134.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~306~^160.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09156~^~320~^3.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09156~^~321~^7.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~322~^1.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09156~^~334~^45.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~337~^0.^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~338~^18.^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~417~^13.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09156~^~432~^13.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09156~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09156~^~636~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09159~^~268~^126.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09159~^~301~^33.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~304~^6.^0^^~4~^^^^^^^^^^^~05/01/2004~ -~09159~^~305~^18.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~306~^102.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~307~^2.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~318~^50.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09159~^~320~^2.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~321~^30.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~322~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09159~^~334~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~337~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~338~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~417~^8.^7^2.^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09159~^~432~^8.^7^2.^~1~^^^^^^^^^^^~12/01/2006~ -~09159~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09159~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09160~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09160~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09160~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~301~^14.^4^0.^~1~^~A~^^^1^12.^16.^3^11.^16.^~2, 3~^~04/01/2004~ -~09160~^~304~^8.^4^0.^~1~^~A~^^^1^8.^8.^3^7.^8.^~2, 3~^~04/01/2004~ -~09160~^~305~^14.^4^0.^~1~^~A~^^^1^14.^15.^3^13.^15.^~2, 3~^~04/01/2004~ -~09160~^~306~^117.^4^5.^~1~^~A~^^^1^104.^126.^3^100.^133.^~2, 3~^~04/01/2004~ -~09160~^~307~^2.^4^0.^~1~^~A~^^^1^0.^4.^3^0.^4.^~1, 2, 3~^~04/01/2004~ -~09160~^~318~^50.^4^20.^~1~^~A~^^^1^19.^109.^3^-14.^113.^~2, 3~^~04/01/2004~ -~09160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09160~^~320~^2.^4^1.^~1~^~A~^^^1^1.^5.^3^0.^5.^~2, 3~^~04/01/2004~ -~09160~^~321~^30.^4^12.^~1~^~A~^^^1^11.^65.^3^-8.^68.^~1, 2, 3~^~04/01/2004~ -~09160~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09160~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~338~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2004~ -~09160~^~417~^10.^4^1.^~1~^~A~^^^1^7.^14.^3^5.^15.^~2, 3~^~04/01/2004~ -~09160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09160~^~432~^10.^4^1.^~1~^~A~^^^1^7.^14.^3^5.^15.^^~05/01/2006~ -~09160~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09161~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09161~^~268~^88.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09161~^~301~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~304~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~306~^75.^3^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~307~^16.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~318~^16.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09161~^~320~^1.^3^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09161~^~321~^10.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~322~^0.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09161~^~334~^0.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~337~^0.^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~338~^0.^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~417~^8.^6^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09161~^~432~^8.^6^2.^~1~^^^^^^^^^^^~12/01/2006~ -~09161~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09163~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~268~^1328.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09163~^~301~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~304~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~305~^36.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~306~^214.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~307~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~318~^141.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09163~^~321~^84.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~338~^208.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09164~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09164~^~268~^276.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09164~^~301~^5.^7^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~305~^31.^7^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~306~^171.^5^23.^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09164~^~320~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~09164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09164~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09164~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09164~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09164~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09165~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09165~^~268~^1159.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09165~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~304~^42.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~305~^181.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~306~^1110.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09165~^~320~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09165~^~417~^12.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09165~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09165~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09167~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09167~^~268~^230.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09167~^~301~^26.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~304~^21.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~305~^26.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~306~^145.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~318~^35.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09167~^~320~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09167~^~321~^21.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09167~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~417~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09167~^~432~^26.^3^2.^~1~^^^^^^^^^^^~01/01/2007~ -~09167~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09172~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09172~^~268~^251.^0^^~4~^^^^^^^^^^^ -~09172~^~301~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~306~^266.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~307~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09173~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09173~^~268~^1197.^0^^~4~^^^^^^^^^^^ -~09173~^~301~^45.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~304~^46.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~305~^196.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~306~^658.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~307~^48.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09173~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09174~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09174~^~268~^197.^0^^~4~^^^^^^^^^^^ -~09174~^~301~^16.^4^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~305~^27.^3^14.^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~306~^266.^4^77.^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~307~^1.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~318~^1528.^5^233.^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09174~^~320~^76.^5^11.^~1~^^^^^^^^^^^~06/01/2002~ -~09174~^~417~^14.^0^^~4~^^^^^^^^^^^~10/01/1986~ -~09174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09174~^~432~^14.^0^^~4~^^^^^^^^^^^~10/01/1986~ -~09174~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09174~^~636~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09175~^~268~^213.^0^^~4~^^^^^^^^^^^ -~09175~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~304~^16.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~306~^47.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~318~^230.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09175~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09175~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09175~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09175~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09176~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09176~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09176~^~301~^11.^8^0.^~1~^~A~^^^3^7.^16.^2^7.^13.^~2~^~06/01/2010~ -~09176~^~304~^10.^8^0.^~1~^~A~^^^3^8.^19.^2^7.^12.^~2~^~06/01/2010~ -~09176~^~305~^14.^7^1.^~1~^~A~^^^2^10.^18.^1^0.^27.^~2~^~06/01/2010~ -~09176~^~306~^168.^8^0.^~1~^~A~^^^3^120.^211.^2^163.^172.^~2~^~06/01/2010~ -~09176~^~307~^1.^8^0.^~1~^~A~^^^3^0.^3.^2^0.^3.^~1, 2~^~06/01/2010~ -~09176~^~318~^1082.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~09176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09176~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~09176~^~321~^640.^298^193.^~1~^~A~^^^4^185.^1680.^3^25.^1255.^~2~^~06/01/2010~ -~09176~^~322~^9.^8^3.^~1~^~A~^^^3^0.^40.^2^-7.^24.^~1, 2~^~06/01/2010~ -~09176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09176~^~334~^10.^8^7.^~1~^~A~^^^3^0.^32.^2^-20.^40.^~2~^~06/01/2010~ -~09176~^~337~^3.^3^1.^~1~^~A~^^^1^0.^6.^2^-4.^10.^~1, 2, 3~^~06/01/2010~ -~09176~^~338~^23.^4^17.^~1~^~A~^^^2^6.^63.^1^-198.^244.^~2~^~06/01/2010~ -~09176~^~417~^43.^6^17.^~1~^~A~^^^2^20.^69.^1^-174.^260.^~2~^~06/01/2010~ -~09176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09176~^~432~^43.^6^17.^~1~^~A~^^^2^20.^69.^1^-174.^260.^~2~^~06/01/2010~ -~09176~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09177~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09177~^~268~^305.^0^^~4~^^^^^^^^^^^ -~09177~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~304~^13.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~305~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~306~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~318~^35.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~320~^2.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~321~^16.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~322~^1.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09177~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~417~^31.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09177~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09177~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09178~^~208~^319.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~268~^1336.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~304~^20.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~305~^50.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~306~^279.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~307~^162.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~318~^1343.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~09178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~320~^67.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~09178~^~321~^786.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~09178~^~322~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~09178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~334~^29.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~09178~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~09178~^~338~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~09178~^~417~^68.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~432~^68.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~09178~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09181~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09181~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~301~^9.^54^0.^~1~^~A~^^^15^5.^18.^14^7.^11.^~2~^~12/01/2002~ -~09181~^~304~^12.^54^0.^~1~^~A~^^^15^7.^18.^14^10.^12.^~2~^~12/01/2002~ -~09181~^~305~^15.^53^0.^~1~^~A~^^^14^8.^25.^13^13.^16.^~2~^~12/01/2002~ -~09181~^~306~^267.^54^10.^~1~^~A~^^^15^112.^420.^14^245.^289.^~2~^~05/01/2003~ -~09181~^~307~^16.^50^1.^~1~^~A~^^^14^5.^44.^13^12.^18.^~2~^~05/01/2003~ -~09181~^~318~^3382.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09181~^~320~^169.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09181~^~321~^2020.^52^252.^~1~^~A~^^^7^1377.^4712.^6^1401.^2639.^~2~^~12/01/2002~ -~09181~^~322~^16.^42^10.^~1~^~A~^^^6^0.^61.^5^-9.^42.^~1, 2~^~12/01/2002~ -~09181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09181~^~334~^1.^21^1.^~1~^~A~^^^5^0.^6.^4^-2.^4.^~1, 2~^~12/01/2002~ -~09181~^~337~^0.^12^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~ -~09181~^~338~^26.^12^9.^~1~^~A~^^^4^0.^51.^3^-5.^57.^~2~^~12/01/2002~ -~09181~^~417~^21.^17^7.^~1~^~A~^^^3^7.^40.^2^-9.^51.^~1, 2~^~12/01/2002~ -~09181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09181~^~432~^21.^17^7.^~1~^~A~^^^3^7.^40.^2^-9.^51.^^~05/01/2006~ -~09181~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09181~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09183~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09183~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09183~^~301~^11.^2^^~1~^~A~^^^1^9.^12.^^^^^~01/01/2003~ -~09183~^~304~^11.^2^^~1~^~A~^^^1^9.^12.^^^^^~01/01/2003~ -~09183~^~305~^5.^2^^~1~^~A~^^^1^5.^6.^^^^^~01/01/2003~ -~09183~^~306~^182.^2^^~1~^~A~^^^1^171.^193.^^^^^~01/01/2003~ -~09183~^~307~^9.^2^^~1~^~A~^^^1^5.^13.^^^^^~01/01/2003~ -~09183~^~318~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~ -~09183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09183~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~09183~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~ -~09183~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~ -~09183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09183~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~ -~09183~^~337~^0.^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~ -~09183~^~338~^26.^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~ -~09183~^~417~^8.^2^^~1~^~A~^^^1^7.^9.^^^^^~01/01/2003~ -~09183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09183~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09183~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09184~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09184~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~301~^6.^19^1.^~1~^~A~^^^4^3.^13.^3^1.^10.^~2~^~01/01/2003~ -~09184~^~304~^10.^19^1.^~1~^~A~^^^4^7.^17.^3^6.^14.^~2~^~01/01/2003~ -~09184~^~305~^11.^18^0.^~1~^~A~^^^3^8.^16.^2^10.^12.^~2~^~01/01/2003~ -~09184~^~306~^228.^19^17.^~1~^~A~^^^4^144.^278.^3^170.^284.^~2~^~01/01/2003~ -~09184~^~307~^18.^12^1.^~1~^~A~^^^4^11.^26.^3^11.^23.^~2~^~01/01/2003~ -~09184~^~318~^50.^16^0.^~1~^~A~^^^3^33.^67.^2^47.^53.^~2~^~01/01/2003~ -~09184~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09184~^~320~^3.^16^0.^~1~^~A~^^^3^2.^3.^2^2.^2.^~2~^~01/01/2003~ -~09184~^~321~^30.^16^0.^~1~^~A~^^^3^20.^40.^2^28.^32.^~2~^~01/01/2003~ -~09184~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09184~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~338~^27.^6^3.^~1~^~A~^^^2^17.^42.^2^12.^41.^~2, 3~^~01/01/2003~ -~09184~^~417~^19.^18^3.^~1~^~A~^^^3^14.^44.^2^6.^32.^~2~^~01/01/2003~ -~09184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09184~^~432~^19.^18^3.^~1~^~A~^^^3^14.^44.^2^6.^32.^^~01/01/2007~ -~09184~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09185~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09185~^~268~^138.^0^^~4~^^^^^^^^^^^ -~09185~^~301~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~304~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~306~^280.^3^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~307~^31.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~318~^1774.^3^52.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09185~^~320~^89.^3^2.^~1~^^^^^^^^^^^~06/01/2002~ -~09185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09185~^~417~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09185~^~432~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09185~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09190~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09190~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09190~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~306~^194.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~318~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09190~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09190~^~321~^9.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~322~^12.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09190~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~337~^0.^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~338~^136.^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09190~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09190~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09191~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09191~^~268~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~301~^6.^4^1.^~1~^~A~^^^2^5.^8.^1^-11.^24.^~2~^~12/01/2002~ -~09191~^~304~^9.^8^0.^~1~^~A~^^^3^8.^10.^2^7.^10.^~2~^~12/01/2002~ -~09191~^~305~^26.^7^1.^~1~^~A~^^^2^22.^30.^5^22.^28.^~2, 3~^~12/01/2002~ -~09191~^~306~^201.^6^23.^~1~^~A~^^^3^149.^228.^2^101.^301.^~2~^~05/01/2003~ -~09191~^~307~^0.^3^0.^~1~^~A~^^^2^0.^1.^1^-1.^2.^~2~^~05/01/2003~ -~09191~^~318~^332.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09191~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09191~^~321~^150.^10^30.^~1~^~A~^^^4^100.^331.^3^52.^248.^~2~^~12/01/2002~ -~09191~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~ -~09191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09191~^~334~^98.^9^19.^~1~^~A~^^^3^59.^159.^2^13.^182.^~2~^~12/01/2002~ -~09191~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09191~^~338~^130.^8^14.^~1~^~A~^^^2^63.^245.^4^89.^170.^~2, 3~^~12/01/2002~ -~09191~^~417~^5.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^8.^~2, 3~^~12/01/2002~ -~09191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09191~^~432~^5.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^8.^^~08/01/2010~ -~09191~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09192~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09192~^~268~^117.^0^^~4~^^^^^^^^^^^ -~09192~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~306~^38.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~318~^830.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09192~^~320~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09192~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09193~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09193~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09193~^~268~^485.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~301~^88.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~304~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~305~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~306~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~307~^735.^51^16.^~1~^~A~^^^15^488.^986.^14^700.^770.^~2~^~01/01/2010~ -~09193~^~318~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09193~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~321~^198.^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~322~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~08/01/2016~ -~09193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09193~^~334~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~08/01/2016~ -~09193~^~337~^0.^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~338~^510.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~ -~09193~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09193~^~432~^0.^2^^~1~^^^^^^^^^^^~01/01/2010~ -~09193~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09193~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09194~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09194~^~268~^339.^0^^~4~^^^^^^^^^^^~01/01/2010~ -~09194~^~301~^94.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~304~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~305~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~306~^9.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~307~^735.^51^16.^~1~^~A~^^^15^488.^986.^14^700.^770.^~2~^~01/01/2010~ -~09194~^~318~^346.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09194~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09194~^~321~^204.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~ -~09194~^~322~^0.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~ -~09194~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09194~^~334~^8.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~ -~09194~^~337~^0.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~ -~09194~^~338~^510.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~ -~09194~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09194~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2010~ -~09194~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09194~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09195~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09195~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09195~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~301~^52.^6^3.^~6~^~JA~^^^2^35.^58.^5^42.^61.^~4~^~02/01/2003~ -~09195~^~304~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~02/01/2003~ -~09195~^~305~^4.^2^^~1~^~A~^^^1^3.^5.^1^^^^~02/01/2003~ -~09195~^~306~^42.^6^8.^~6~^~JA~^^^2^23.^77.^5^19.^64.^~4~^~02/01/2003~ -~09195~^~307~^1556.^6^146.^~6~^~JA~^^^2^1105.^1961.^5^1180.^1932.^~4~^~02/01/2003~ -~09195~^~318~^393.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~09195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09195~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~09195~^~321~^231.^3^27.^~1~^~A~^^^2^184.^280.^2^111.^351.^~4~^~02/01/2003~ -~09195~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09195~^~334~^9.^3^4.^~1~^~A~^^^2^3.^19.^2^-12.^30.^~4~^~02/01/2003~ -~09195~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~338~^510.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09195~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09195~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09200~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09200~^~268~^197.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09200~^~301~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~304~^10.^212^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~305~^14.^68^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~306~^181.^180^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~307~^0.^72^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~318~^225.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~09200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09200~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~09200~^~321~^71.^55^22.^~1~^~A~^^^3^40.^237.^2^-24.^167.^~2~^~05/01/2003~ -~09200~^~322~^11.^55^5.^~1~^~A~^^^3^0.^20.^2^-13.^36.^~1, 2~^~05/01/2003~ -~09200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09200~^~334~^116.^7^5.^~1~^~A~^^^2^83.^148.^1^41.^190.^~2~^~05/01/2003~ -~09200~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~05/01/2003~ -~09200~^~338~^129.^7^57.^~1~^~A~^^^2^54.^187.^1^-601.^860.^~2~^~05/01/2003~ -~09200~^~417~^30.^154^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09200~^~432~^30.^154^0.^~1~^^^^^^^^^^^~12/01/2006~ -~09200~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09201~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09201~^~268~^205.^0^^~4~^^^^^^^^^^^ -~09201~^~301~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~304~^10.^94^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~305~^17.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~306~^179.^86^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~307~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~318~^230.^78^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09201~^~320~^12.^78^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09201~^~417~^39.^81^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09201~^~432~^39.^81^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09202~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~268~^207.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~301~^43.^8^2.^~1~^~A~^^^2^37.^57.^3^36.^49.^~2, 3~^~01/01/2003~ -~09202~^~304~^11.^8^0.^~1~^~A~^^^2^10.^12.^4^10.^10.^~2, 3~^~01/01/2003~ -~09202~^~305~^23.^8^0.^~1~^~A~^^^2^22.^25.^6^21.^24.^~2, 3~^~01/01/2003~ -~09202~^~306~^166.^8^3.^~1~^~A~^^^2^147.^188.^5^157.^173.^~2, 3~^~01/01/2003~ -~09202~^~307~^1.^4^0.^~1~^~A~^^^1^0.^4.^3^-1.^3.^~1, 2, 3~^~01/01/2003~ -~09202~^~318~^247.^7^35.^~1~^~A~^^^2^155.^518.^1^-204.^698.^~2~^~05/01/2003~ -~09202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09202~^~320~^12.^7^1.^~1~^~A~^^^2^8.^26.^1^-10.^34.^~2~^~05/01/2003~ -~09202~^~321~^87.^7^27.^~1~^~A~^^^2^43.^237.^1^-266.^439.^~2~^~05/01/2003~ -~09202~^~322~^7.^7^7.^~1~^~A~^^^2^0.^14.^1^-83.^97.^~1, 2~^~05/01/2003~ -~09202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09202~^~334~^116.^7^5.^~1~^~A~^^^2^83.^148.^1^41.^190.^~2~^~05/01/2003~ -~09202~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~05/01/2003~ -~09202~^~338~^129.^7^57.^~1~^~A~^^^2^54.^187.^1^-601.^860.^~2~^~05/01/2003~ -~09202~^~417~^34.^70^1.^~1~^^^^^^^^^^^~01/01/2003~ -~09202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09202~^~432~^34.^70^1.^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09202~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09203~^~268~^192.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09203~^~301~^43.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~304~^10.^32^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~305~^12.^32^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~306~^169.^16^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~307~^0.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~318~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09203~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09203~^~321~^71.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~ -~09203~^~322~^11.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~ -~09203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09203~^~334~^116.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~ -~09203~^~337~^0.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~01/01/2003~ -~09203~^~338~^129.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~ -~09203~^~417~^17.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09203~^~432~^17.^3^3.^~1~^^^^^^^^^^^~12/01/2006~ -~09203~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09205~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~09205~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09205~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09205~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~09205~^~301~^70.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~318~^250.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~09205~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2002~ -~09205~^~417~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09205~^~432~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09205~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~09205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09206~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09206~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09206~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09206~^~268~^188.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09206~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~306~^200.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~318~^200.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09206~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09206~^~321~^33.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~322~^6.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09206~^~334~^169.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~337~^0.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~338~^115.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09206~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~09206~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09207~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09207~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09207~^~301~^10.^2^^~1~^~A~^^^1^9.^12.^1^^^^~05/01/2008~ -~09207~^~304~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^6.^13.^~2, 3~^~05/01/2008~ -~09207~^~305~^17.^3^0.^~1~^~A~^^^1^15.^18.^2^13.^20.^~2, 3~^~05/01/2008~ -~09207~^~306~^184.^3^2.^~1~^~A~^^^1^181.^190.^2^172.^196.^~2, 3~^~05/01/2008~ -~09207~^~307~^4.^3^0.^~1~^~A~^^^1^3.^4.^2^2.^4.^~2, 3~^~05/01/2008~ -~09207~^~318~^175.^28^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09207~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09207~^~321~^29.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~322~^5.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09207~^~334~^148.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~337~^0.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~338~^115.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09207~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09207~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~09207~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09209~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09209~^~268~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~301~^11.^13^0.^~1~^~A~^^^4^9.^13.^3^9.^12.^~2~^~03/01/2009~ -~09209~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~ -~09209~^~305~^17.^13^1.^~1~^~A~^^^4^13.^20.^3^13.^21.^~2~^~03/01/2009~ -~09209~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~ -~09209~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~ -~09209~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~ -~09209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09209~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~ -~09209~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09209~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09209~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~ -~09209~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~09209~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~ -~09209~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~ -~09209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09209~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~ -~09209~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09210~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09210~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~301~^140.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~09210~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~ -~09210~^~305~^47.^14^9.^~1~^~A~^^^2^18.^100.^9^26.^68.^~2, 3~^~03/01/2009~ -~09210~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~ -~09210~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~ -~09210~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~ -~09210~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09210~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~ -~09210~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09210~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09210~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~09210~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~ -~09210~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~ -~09210~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~ -~09210~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~ -~09210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09210~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~ -~09210~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~09211~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~301~^140.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~09211~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~ -~09211~^~305~^47.^14^9.^~1~^~A~^^^2^18.^100.^9^26.^68.^~2, 3~^~03/01/2009~ -~09211~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~ -~09211~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~ -~09211~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~ -~09211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~ -~09211~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09211~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~ -~09211~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~ -~09211~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~ -~09211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~ -~09211~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09212~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~09212~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~09212~^~301~^147.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~305~^78.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~306~^158.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~318~^66.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~320~^3.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~321~^13.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~322~^5.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~334~^48.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~338~^83.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~417~^19.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~432~^19.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~09212~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09213~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~268~^616.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~301~^578.^2^^~1~^~A~^^^1^568.^601.^^^^^~06/01/2014~ -~09213~^~304~^35.^14^0.^~1~^~A~^^^1^33.^39.^8^34.^36.^~2, 3~^~06/01/2014~ -~09213~^~305~^313.^2^^~1~^~A~^^^1^280.^386.^^^^^~06/01/2014~ -~09213~^~306~^629.^14^10.^~1~^~A~^^^1^556.^691.^7^605.^653.^~2, 3~^~06/01/2014~ -~09213~^~307~^7.^14^0.^~1~^~A~^^^1^2.^15.^7^4.^8.^~1, 2, 3~^~06/01/2014~ -~09213~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~321~^53.^6^10.^~1~^~A~^^^1^39.^86.^2^8.^97.^~2, 3~^~06/01/2014~ -~09213~^~322~^19.^6^2.^~1~^~A~^^^1^13.^24.^2^10.^27.^~2, 3~^~06/01/2014~ -~09213~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~334~^191.^6^28.^~1~^~A~^^^1^154.^279.^2^70.^312.^~2, 3~^~06/01/2014~ -~09213~^~337~^1.^6^0.^~1~^~A~^^^1^0.^4.^2^-2.^4.^~1, 2, 3~^~06/01/2014~ -~09213~^~338~^333.^6^4.^~1~^~A~^^^1^284.^361.^3^318.^348.^~2, 3~^~06/01/2014~ -~09213~^~417~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^~2, 3~^~06/01/2014~ -~09213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~432~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^^~06/01/2014~ -~09213~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09214~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09214~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~301~^38.^12^0.^~1~^~A~^^^1^35.^41.^5^36.^39.^~2, 3~^~05/01/2014~ -~09214~^~304~^35.^14^0.^~1~^~A~^^^1^33.^39.^8^34.^36.^~2, 3~^~05/01/2014~ -~09214~^~305~^61.^12^0.^~1~^~A~^^^1^56.^63.^5^59.^62.^~2, 3~^~05/01/2014~ -~09214~^~306~^629.^14^10.^~1~^~A~^^^1^556.^691.^7^605.^653.^~2, 3~^~05/01/2014~ -~09214~^~307~^7.^14^0.^~1~^~A~^^^1^2.^15.^7^4.^8.^~1, 2, 3~^~05/01/2014~ -~09214~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09214~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~321~^53.^6^10.^~1~^~A~^^^1^39.^86.^2^8.^97.^~2, 3~^~05/01/2014~ -~09214~^~322~^19.^6^2.^~1~^~A~^^^1^13.^24.^2^10.^27.^~2, 3~^~05/01/2014~ -~09214~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09214~^~334~^191.^6^28.^~1~^~A~^^^1^154.^279.^2^70.^312.^~2, 3~^~05/01/2014~ -~09214~^~337~^1.^6^0.^~1~^~A~^^^1^0.^4.^2^-2.^4.^~1, 2, 3~^~05/01/2014~ -~09214~^~338~^333.^6^4.^~1~^~A~^^^1^284.^361.^3^318.^348.^~2, 3~^~05/01/2014~ -~09214~^~417~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^~2, 3~^~05/01/2014~ -~09214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09214~^~432~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^^~05/01/2014~ -~09214~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09215~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09215~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09215~^~301~^12.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~08/01/1982~ -~09215~^~305~^15.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~306~^158.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~318~^66.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09215~^~320~^3.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~321~^13.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~322~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09215~^~334~^48.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~338~^83.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~417~^19.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~432~^19.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09215~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09216~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~09216~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~09216~^~301~^161.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~305~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~318~^420.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09216~^~320~^21.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~09216~^~417~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09216~^~432~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~09216~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~09216~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09216~^~636~^34.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09217~^~268~^180.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09217~^~301~^8.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~304~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~305~^14.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~306~^158.^14^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~307~^3.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~318~^119.^14^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09217~^~320~^6.^14^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09217~^~321~^20.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~09217~^~322~^4.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~09217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09217~^~334~^98.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~09217~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09217~^~338~^73.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09217~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09217~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09217~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09217~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09218~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09218~^~268~^223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09218~^~301~^37.^9^0.^~1~^~A~^^^2^29.^48.^1^26.^46.^~2~^~12/01/2003~ -~09218~^~304~^12.^9^0.^~1~^~A~^^^2^11.^13.^1^11.^12.^~2~^~12/01/2003~ -~09218~^~305~^20.^9^0.^~1~^~A~^^^2^17.^22.^1^18.^21.^~2~^~12/01/2003~ -~09218~^~306~^166.^9^2.^~1~^~A~^^^2^130.^196.^1^139.^193.^~2~^~12/01/2003~ -~09218~^~307~^2.^3^0.^~1~^~A~^^^1^0.^4.^2^-2.^5.^~1, 2, 3~^~04/01/2004~ -~09218~^~318~^681.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~09218~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09218~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~09218~^~321~^155.^12^58.^~1~^~A~^^^3^30.^445.^2^-97.^407.^~2~^~04/01/2004~ -~09218~^~322~^101.^8^86.^~1~^~A~^^^2^14.^400.^1^-997.^1198.^~2~^~07/01/2003~ -~09218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09218~^~334~^407.^8^77.^~1~^~A~^^^2^43.^485.^1^-578.^1393.^~2~^~07/01/2003~ -~09218~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~07/01/2003~ -~09218~^~338~^138.^8^105.^~1~^~A~^^^2^11.^243.^1^-1198.^1474.^~2~^~07/01/2003~ -~09218~^~417~^16.^9^2.^~1~^~A~^^^2^9.^23.^1^-13.^46.^~2~^~12/01/2003~ -~09218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09218~^~432~^16.^9^2.^~1~^~A~^^^2^9.^23.^1^-13.^46.^^~05/01/2006~ -~09218~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09218~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09219~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09219~^~268~^155.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09219~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~306~^133.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~307~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~318~^852.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09219~^~320~^43.^2^^~1~^^^^^^^^^^^~02/01/2007~ -~09219~^~321~^193.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~322~^133.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09219~^~334~^503.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~337~^0.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~338~^163.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09219~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09219~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09219~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09220~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09220~^~268~^255.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09220~^~301~^7.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~304~^8.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~305~^10.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~306~^78.^33^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~307~^6.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~318~^840.^34^100.^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09220~^~320~^42.^34^5.^~1~^^^^^^^^^^^~02/01/2007~ -~09220~^~321~^191.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~322~^131.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09220~^~334~^496.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~337~^0.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~338~^163.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09220~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09220~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09221~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09221~^~268~^180.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09221~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~306~^178.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~318~^253.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09221~^~320~^13.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~321~^38.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~322~^14.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09221~^~334~^214.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~337~^0.^0^^~4~^~BFSN~^~09218~^^^^^^^^^~02/01/2003~ -~09221~^~338~^166.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09221~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09221~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09221~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09226~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09226~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09226~^~301~^20.^70^2.^~1~^~A~^^^4^10.^32.^3^13.^26.^~2~^~07/01/2010~ -~09226~^~304~^21.^70^1.^~1~^~A~^^^4^16.^33.^3^15.^26.^~2~^~07/01/2010~ -~09226~^~305~^10.^69^2.^~1~^~A~^^^3^5.^20.^2^0.^19.^~2~^~07/01/2010~ -~09226~^~306~^182.^70^11.^~1~^~A~^^^4^90.^223.^3^146.^217.^~2~^~07/01/2010~ -~09226~^~307~^8.^70^2.^~1~^~A~^^^4^4.^24.^3^1.^14.^~2~^~07/01/2010~ -~09226~^~318~^950.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~09226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09226~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~09226~^~321~^274.^76^122.^~1~^~A~^^^7^31.^910.^6^-24.^572.^~2~^~07/01/2010~ -~09226~^~322~^2.^67^2.^~1~^~A~^^^4^0.^17.^3^-4.^9.^~1, 2~^~07/01/2010~ -~09226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09226~^~334~^589.^75^160.^~1~^~A~^^^6^13.^1264.^5^175.^1002.^~2~^~07/01/2010~ -~09226~^~337~^1828.^22^206.^~1~^~A~^^^3^678.^3674.^2^939.^2717.^~2~^~07/01/2010~ -~09226~^~338~^89.^67^31.^~1~^~A~^^^4^31.^318.^3^-11.^189.^~2~^~07/01/2010~ -~09226~^~417~^37.^8^1.^~1~^~A~^^^2^26.^44.^1^17.^55.^~2~^~07/01/2010~ -~09226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09226~^~432~^37.^8^1.^~1~^~A~^^^2^26.^44.^1^17.^55.^^~08/01/2010~ -~09226~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09228~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~301~^21.^2^^~1~^~A~^^^1^19.^24.^1^^^^~04/01/2010~ -~09228~^~304~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~04/01/2010~ -~09228~^~305~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~04/01/2010~ -~09228~^~306~^67.^2^^~1~^~A~^^^1^58.^75.^1^^^^~04/01/2010~ -~09228~^~307~^9.^2^^~1~^~A~^^^1^8.^11.^1^^^^~04/01/2010~ -~09228~^~318~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~337~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09229~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09229~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09229~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09229~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09229~^~301~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~304~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~305~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~306~^31.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~307~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~318~^361.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09229~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09229~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09229~^~321~^91.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~322~^0.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09229~^~334~^251.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~337~^0.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~338~^25.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~417~^2.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09229~^~432~^2.^3^1.^~1~^^^^^^^^^^^~01/01/2007~ -~09229~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09229~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09231~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09231~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09231~^~301~^12.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~305~^68.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~306~^348.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~307~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~318~^1272.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09231~^~320~^64.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09231~^~321~^743.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09231~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09231~^~334~^41.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09231~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~ -~09231~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~ -~09231~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09231~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09231~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09231~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09232~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09232~^~268~^213.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09232~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09232~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~306~^278.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09232~^~307~^6.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09232~^~318~^717.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09232~^~320~^36.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09232~^~321~^419.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~322~^0.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09232~^~334~^23.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~337~^0.^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~338~^0.^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~417~^7.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09232~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09232~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09232~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09233~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09233~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09233~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09233~^~268~^251.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~09233~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~306~^278.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~318~^943.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~09233~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09233~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~09233~^~321~^525.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~09233~^~322~^35.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~09233~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09233~^~334~^47.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~09233~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09233~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09233~^~417~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09233~^~432~^8.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~09233~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09233~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09236~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09236~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~301~^6.^28^0.^~1~^~A~^^^11^4.^8.^10^5.^6.^~2~^~12/01/2002~ -~09236~^~304~^9.^32^0.^~1~^~A~^^^12^7.^10.^11^8.^9.^~2~^~12/01/2002~ -~09236~^~305~^20.^31^0.^~1~^~A~^^^11^14.^25.^10^19.^21.^~2~^~12/01/2002~ -~09236~^~306~^190.^30^7.^~1~^~A~^^^12^138.^238.^11^174.^206.^~2~^~05/01/2003~ -~09236~^~307~^0.^26^0.^~1~^~A~^^^11^0.^1.^10^0.^0.^~2~^~05/01/2003~ -~09236~^~318~^326.^32^11.^~1~^~A~^^^5^133.^588.^2^275.^375.^~2~^~12/01/2002~ -~09236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09236~^~320~^16.^32^0.^~1~^~A~^^^5^7.^29.^2^13.^18.^~2~^~12/01/2002~ -~09236~^~321~^162.^32^5.^~1~^~A~^^^5^77.^289.^2^137.^185.^~2~^~12/01/2002~ -~09236~^~322~^0.^32^0.^~1~^~A~^^^5^0.^3.^2^-1.^2.^~1, 2~^~12/01/2002~ -~09236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09236~^~334~^67.^32^4.^~1~^~A~^^^5^3.^178.^3^52.^81.^~2~^~12/01/2002~ -~09236~^~337~^0.^8^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~ -~09236~^~338~^91.^8^19.^~1~^~A~^^^4^10.^167.^2^-28.^210.^~2~^~12/01/2002~ -~09236~^~417~^4.^4^^~1~^~A~^^^1^3.^4.^^^^~2~^~12/01/2002~ -~09236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09236~^~432~^4.^4^^~1~^~A~^^^1^3.^4.^^^^^~04/01/2006~ -~09236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09236~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09237~^~268~^100.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09237~^~301~^2.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~304~^5.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~305~^10.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~306~^99.^33^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~307~^3.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~318~^532.^29^35.^~1~^^^^^^^^^^^~12/01/2002~ -~09237~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09237~^~320~^27.^29^1.^~1~^^^^^^^^^^^~01/01/2007~ -~09237~^~321~^264.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09237~^~334~^109.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09237~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09237~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09237~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09238~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09238~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09238~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09238~^~268~^184.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09238~^~301~^6.^23^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~304~^7.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~305~^17.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~306~^128.^24^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~307~^4.^25^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~318~^381.^17^54.^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09238~^~320~^19.^17^2.^~1~^^^^^^^^^^^~01/01/2007~ -~09238~^~321~^189.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09238~^~334~^78.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09238~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09238~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09238~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09239~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09239~^~268~^176.^0^^~4~^^^^^^^^^^^ -~09239~^~301~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~305~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~306~^74.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~318~^270.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09239~^~320~^14.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~09239~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09239~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09239~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09239~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09240~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09240~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09240~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09240~^~268~^226.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09240~^~301~^3.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~304~^5.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~305~^11.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~306~^97.^11^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~307~^5.^11^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~318~^354.^128^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09240~^~320~^18.^128^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09240~^~321~^176.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09240~^~334~^73.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09240~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09240~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09240~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09241~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09241~^~268~^310.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09241~^~301~^3.^283^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~304~^5.^239^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~305~^11.^271^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~306~^92.^311^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~307~^6.^326^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~318~^332.^597^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09241~^~320~^17.^597^0.^~1~^^^^^^^^^^^~03/01/2007~ -~09241~^~321~^165.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09241~^~334~^68.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09241~^~432~^3.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~09241~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09241~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09242~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09242~^~268~^402.^0^^~4~^^^^^^^^^^^ -~09242~^~301~^3.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~304~^5.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~305~^11.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~306~^83.^45^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~307~^8.^32^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~318~^131.^148^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09242~^~320~^7.^148^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09242~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09242~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09242~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09243~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09243~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09243~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09243~^~268~^314.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09243~^~301~^6.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~304~^7.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~305~^9.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~306~^85.^19^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~307~^4.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~318~^317.^19^23.^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09243~^~320~^16.^19^1.^~1~^^^^^^^^^^^~03/01/2007~ -~09243~^~321~^157.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09243~^~334~^65.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~337~^0.^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~338~^61.^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09243~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09243~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09243~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09244~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09244~^~268~^1360.^0^^~4~^^^^^^^^^^^ -~09244~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~305~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~306~^1351.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~318~^1417.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09244~^~320~^71.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09244~^~417~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09244~^~432~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09244~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09245~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09245~^~268~^556.^0^^~4~^^^^^^^^^^^ -~09245~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~306~^554.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~318~^396.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09245~^~320~^20.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09245~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09245~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09245~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09245~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09246~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09246~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09246~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09246~^~301~^28.^24^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~304~^42.^24^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~305~^119.^24^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~306~^996.^24^12.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~307~^7.^24^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~318~^2163.^21^133.^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09246~^~320~^108.^21^6.^~1~^^^^^^^^^^^~03/01/2007~ -~09246~^~321~^1074.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09246~^~322~^3.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09246~^~334~^444.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09246~^~337~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~12/01/2002~ -~09246~^~338~^559.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~12/01/2002~ -~09246~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09246~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09246~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09247~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09247~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09247~^~268~^322.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09247~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~306~^320.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~318~^197.^3^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09247~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09247~^~321~^98.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~322~^0.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09247~^~334~^40.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~337~^0.^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~338~^180.^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09247~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~09247~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09247~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09248~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09248~^~268~^431.^0^^~4~^^^^^^^^^^^ -~09248~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~306~^292.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~318~^180.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09248~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09248~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09248~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09250~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09250~^~268~^393.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09250~^~301~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~304~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~305~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~306~^130.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~307~^6.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~318~^284.^3^16.^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09250~^~320~^14.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09250~^~321~^141.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09250~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09250~^~334~^58.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~ -~09250~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~09250~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~09250~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09250~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09250~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09251~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~268~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~301~^6.^5^0.^~1~^~A~^^^1^5.^7.^4^4.^7.^~2, 3~^~12/01/2016~ -~09251~^~304~^4.^5^0.^~1~^~A~^^^1^4.^5.^4^3.^4.^~2, 3~^~08/01/1982~ -~09251~^~305~^3.^5^0.^~1~^~A~^^^1^2.^3.^4^2.^2.^~2, 3~^~12/01/2016~ -~09251~^~306~^30.^5^0.^~1~^~A~^^^1^29.^32.^4^28.^32.^~2, 3~^~12/01/2016~ -~09251~^~307~^11.^5^0.^~1~^~A~^^^1^11.^12.^4^10.^11.^~2, 3~^~12/01/2016~ -~09251~^~318~^326.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~321~^193.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09251~^~334~^4.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2002~ -~09251~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09252~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09252~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09252~^~301~^9.^51^0.^~1~^~A~^^^14^6.^13.^4^8.^10.^~4~^~05/01/2003~ -~09252~^~304~^7.^51^0.^~1~^~A~^^^14^6.^7.^8^6.^6.^~4~^~05/01/2003~ -~09252~^~305~^12.^50^0.^~1~^~A~^^^13^8.^14.^10^11.^12.^~4~^~08/01/2012~ -~09252~^~306~^116.^50^3.^~1~^~A~^^^14^86.^144.^2^98.^134.^~4~^~08/01/2012~ -~09252~^~307~^1.^51^0.^~1~^~A~^^^13^0.^2.^11^0.^1.^~1, 4~^~12/01/2002~ -~09252~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~09252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09252~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~09252~^~321~^14.^16^4.^~1~^~A~^^^3^6.^27.^3^0.^26.^~1, 4~^~08/01/2012~ -~09252~^~322~^1.^16^0.^~1~^~A~^^^3^0.^6.^2^-2.^4.^~1, 4~^~08/01/2012~ -~09252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09252~^~334~^2.^14^0.^~1~^~A~^^^2^0.^8.^1^-3.^6.^~1, 2, 3~^~05/01/2003~ -~09252~^~337~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~09252~^~338~^44.^14^2.^~1~^~A~^^^2^11.^67.^2^33.^53.^~1, 2, 3~^~08/01/2012~ -~09252~^~417~^7.^16^0.^~1~^~A~^^^2^4.^14.^2^5.^8.^~1, 2, 3~^~12/01/2002~ -~09252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09252~^~432~^7.^16^0.^~1~^~A~^^^2^4.^14.^2^5.^8.^^~11/01/2006~ -~09252~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~09252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09252~^~636~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09253~^~268~^121.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09253~^~301~^4.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~304~^4.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~305~^7.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~306~^53.^54^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~307~^2.^80^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09253~^~320~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09253~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09253~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09253~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09253~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09253~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09253~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09254~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09254~^~268~^209.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09254~^~301~^9.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~304~^7.^13^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~305~^12.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~306~^96.^13^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~307~^4.^13^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~318~^6.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09254~^~320~^0.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~09254~^~321~^3.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09254~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09254~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09254~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09254~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09255~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09255~^~268~^197.^0^^~4~^^^^^^^^^^^ -~09255~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~304~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~305~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~306~^45.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09255~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09255~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09255~^~432~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09255~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09256~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09256~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09256~^~301~^5.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~304~^4.^17^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~305~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~306~^66.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09256~^~320~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09256~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09256~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09256~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09256~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09256~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09256~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09256~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09257~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09257~^~268~^310.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~09257~^~301~^5.^100^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~304~^4.^84^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~305~^7.^102^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~306~^65.^63^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~307~^5.^83^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~318~^0.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09257~^~320~^0.^26^0.^~1~^^^^^^^^^^^~11/01/2006~ -~09257~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09257~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09257~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09257~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09257~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09257~^~417~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09257~^~432~^1.^3^0.^~1~^^^^^^^^^^^~11/01/2006~ -~09257~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~09257~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09258~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09258~^~268~^406.^0^^~4~^^^^^^^^^^^ -~09258~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~304~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~306~^64.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09258~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09258~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09258~^~432~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09258~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09259~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09259~^~268~^1096.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09259~^~301~^34.^19^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~304~^33.^19^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~305~^59.^19^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~306~^533.^21^16.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~307~^6.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~318~^3.^15^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09259~^~320~^0.^15^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09259~^~321~^2.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09259~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09259~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09259~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09259~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09260~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09260~^~268~^531.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09260~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~306~^258.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~318~^42.^3^25.^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09260~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09260~^~321~^23.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~ -~09260~^~322~^1.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~ -~09260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09260~^~334~^3.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~ -~09260~^~337~^0.^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~ -~09260~^~338~^24.^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~ -~09260~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09260~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/2007~ -~09260~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09261~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09261~^~268~^586.^0^^~4~^^^^^^^^^^^ -~09261~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~306~^245.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09261~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09261~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09261~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09261~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09262~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09262~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09262~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09262~^~268~^251.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09262~^~301~^5.^22^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~304~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~305~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~306~^13.^21^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~307~^4.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~318~^1.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09262~^~320~^0.^16^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09262~^~321~^1.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09262~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~338~^20.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09262~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09262~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09262~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09263~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09263~^~268~^293.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09263~^~301~^8.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~304~^9.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~306~^161.^3^28.^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~318~^1627.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~09263~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09263~^~320~^81.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~09263~^~321~^253.^2^^~1~^~A~^^^1^240.^266.^1^^^^~02/01/2003~ -~09263~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09263~^~334~^1447.^2^^~1~^~A~^^^1^1234.^1660.^1^^^^~02/01/2003~ -~09263~^~337~^159.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09263~^~338~^834.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09263~^~417~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09263~^~432~^8.^4^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09263~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09263~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09263~^~636~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09264~^~268~^1146.^0^^~4~^^^^^^^^^^^ -~09264~^~301~^25.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~304~^31.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~305~^81.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~306~^802.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~318~^767.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09264~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09264~^~320~^38.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09264~^~321~^374.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09264~^~322~^18.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09264~^~334~^156.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09264~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09265~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09265~^~268~^531.^0^^~4~^^^^^^^^^^^ -~09265~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~306~^310.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09266~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09266~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09266~^~268~^209.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~301~^13.^21^0.^~1~^~A~^^^4^6.^19.^2^9.^16.^~2~^~01/01/2007~ -~09266~^~304~^12.^22^0.^~1~^~A~^^^4^9.^24.^3^11.^13.^~2~^~01/01/2007~ -~09266~^~305~^8.^21^0.^~1~^~A~^^^3^5.^17.^1^0.^15.^~2~^~01/01/2007~ -~09266~^~306~^109.^22^11.^~1~^~A~^^^4^81.^162.^1^17.^199.^~2~^~01/01/2007~ -~09266~^~307~^1.^11^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09266~^~318~^58.^16^7.^~1~^~A~^^^3^28.^83.^1^-24.^141.^~2~^~01/01/2007~ -~09266~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09266~^~320~^3.^16^0.^~1~^~A~^^^3^1.^4.^1^-1.^7.^~2~^~01/01/2007~ -~09266~^~321~^35.^16^4.^~1~^~A~^^^3^17.^50.^1^-14.^84.^~2~^~01/01/2007~ -~09266~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~ -~09266~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09266~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~ -~09266~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~ -~09266~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~ -~09266~^~417~^18.^18^8.^~1~^~A~^^^3^8.^36.^1^-94.^130.^~1, 2~^~01/01/2007~ -~09266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09266~^~432~^18.^18^8.^~1~^~A~^^^3^8.^36.^1^-94.^130.^^~02/01/2007~ -~09266~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09266~^~636~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09267~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09267~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09267~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09267~^~301~^15.^9^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~304~^18.^8^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~305~^4.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~306~^127.^9^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09267~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09267~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09267~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09267~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09267~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09267~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09268~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09268~^~268~^251.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09268~^~301~^14.^667^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~304~^14.^84^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~305~^6.^84^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~306~^122.^456^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~307~^1.^627^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~318~^38.^75^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09268~^~320~^2.^75^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09268~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09268~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09268~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09268~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09268~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09269~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09269~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09269~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09269~^~268~^218.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09269~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~306~^105.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09269~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09269~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09269~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09269~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~09269~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09269~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09270~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09270~^~268~^326.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09270~^~301~^14.^185^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~304~^16.^110^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~305~^7.^110^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~306~^104.^123^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~307~^1.^123^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~318~^14.^110^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09270~^~320~^1.^110^0.^~1~^^^^^^^^^^^~03/01/2007~ -~09270~^~321~^8.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09270~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~417~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09270~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~09270~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09270~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09271~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09271~^~268~^347.^0^^~4~^^^^^^^^^^^ -~09271~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~318~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09271~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09271~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09271~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09271~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09272~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09272~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09272~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09272~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09272~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~306~^100.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09272~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09272~^~321~^18.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09272~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09272~^~432~^11.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09272~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09272~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09273~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09273~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09273~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09273~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09273~^~301~^13.^86^2.^~1~^~A~^^^3^7.^24.^2^0.^26.^~2~^~04/01/2005~ -~09273~^~304~^12.^29^1.^~1~^~A~^^^2^11.^15.^1^-5.^30.^~2~^~04/01/2005~ -~09273~^~305~^8.^27^0.^~1~^~A~^^^2^6.^9.^1^3.^12.^~2~^~04/01/2005~ -~09273~^~306~^130.^64^3.^~1~^~A~^^^3^85.^160.^2^115.^145.^~2~^~04/01/2005~ -~09273~^~307~^2.^75^1.^~1~^~A~^^^3^0.^5.^2^-3.^7.^~2~^~04/01/2005~ -~09273~^~318~^5.^14^4.^~1~^~A~^^^1^0.^65.^1^-54.^63.^~2, 3~^~04/01/2005~ -~09273~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09273~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09273~^~321~^3.^0^^~4~^~BNA~^~09266~^^^^^^^^^~04/01/2005~ -~09273~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09273~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09273~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09273~^~337~^0.^0^^~4~^~BFZN~^~09275~^^^^^^^^^~01/01/2003~ -~09273~^~338~^0.^0^^~4~^~BFZN~^~09275~^^^^^^^^^~01/01/2003~ -~09273~^~417~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^~2~^~04/01/2005~ -~09273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09273~^~432~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^^~02/01/2007~ -~09273~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09273~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09274~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09274~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09274~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09274~^~268~^749.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09274~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~306~^472.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09274~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09274~^~321~^30.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09274~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09274~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09274~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09274~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09274~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09274~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09274~^~432~^37.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09274~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09274~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09275~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~09275~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09275~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09275~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~09275~^~301~^13.^51^0.^~1~^~A~^^^15^9.^20.^14^12.^13.^~2~^~12/01/2009~ -~09275~^~304~^14.^51^0.^~1~^~A~^^^15^11.^18.^14^13.^14.^~2~^~12/01/2009~ -~09275~^~305~^9.^51^0.^~1~^~A~^^^15^5.^14.^14^8.^9.^~2~^~12/01/2009~ -~09275~^~306~^132.^51^4.^~1~^~A~^^^15^82.^180.^14^122.^141.^~2~^~12/01/2009~ -~09275~^~307~^1.^51^0.^~1~^~A~^^^15^0.^3.^14^1.^1.^~1, 2~^~12/01/2009~ -~09275~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09275~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~09275~^~321~^6.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09275~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09275~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09275~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~ -~09275~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09275~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09275~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09275~^~432~^11.^0^^~4~^^^^^^^^^^^~12/01/2009~ -~09275~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~09275~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09276~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09276~^~268~^138.^0^^~4~^^^^^^^^^^^ -~09276~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~306~^103.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~318~^1500.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09276~^~320~^75.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09276~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09277~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09277~^~268~^510.^0^^~4~^^^^^^^^^^^~11/01/2016~ -~09277~^~301~^3.^4^0.^~6~^~JA~^^^2^3.^3.^2^2.^4.^~2, 3~^~11/01/2016~ -~09277~^~304~^36.^7^1.^~6~^~JA~^^^2^32.^37.^5^33.^39.^~2, 3~^~11/01/2016~ -~09277~^~305~^32.^4^1.^~6~^~JA~^^^2^28.^34.^2^25.^39.^~2, 3~^~11/01/2016~ -~09277~^~306~^487.^9^38.^~6~^~JA~^^^2^389.^499.^7^396.^577.^~2, 3~^~11/01/2016~ -~09277~^~307~^4.^7^2.^~6~^~JA~^^^2^2.^4.^5^-2.^9.^~1, 2, 3~^~11/01/2016~ -~09277~^~318~^1127.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09277~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~321~^457.^0^^~4~^~BNA~^~09040~^^^^^^^^^~11/01/2016~ -~09277~^~322~^438.^0^^~4~^~BNA~^~09040~^^^^^^^^^~11/01/2016~ -~09277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09277~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~01/01/2003~ -~09277~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~11/01/2016~ -~09277~^~338~^30.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~11/01/2016~ -~09277~^~417~^22.^7^0.^~6~^~JA~^^^2^19.^22.^5^19.^23.^~2, 3~^~11/01/2016~ -~09277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09277~^~432~^22.^7^0.^~6~^~JA~^^^2^19.^22.^5^19.^23.^^~11/01/2016~ -~09277~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09278~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09278~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~301~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^6.^~2, 3~^~11/01/2016~ -~09278~^~304~^41.^3^3.^~1~^~A~^^^1^35.^46.^2^27.^53.^~2, 3~^~11/01/2016~ -~09278~^~305~^37.^3^3.^~1~^~A~^^^1^32.^43.^2^23.^50.^~2, 3~^~11/01/2016~ -~09278~^~306~^477.^3^23.^~1~^~A~^^^1^453.^523.^2^378.^575.^~2, 3~^~11/01/2016~ -~09278~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^1.^~1, 2, 3~^~11/01/2016~ -~09278~^~318~^909.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09278~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~321~^369.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~09278~^~322~^353.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~09278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09278~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~09278~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~09278~^~338~^28.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~09278~^~417~^53.^2^^~1~^~A~^^^1^24.^82.^1^^^^~11/01/2016~ -~09278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09278~^~432~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09279~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09279~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09279~^~268~^192.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~301~^6.^39^0.^~1~^~A~^^^12^4.^26.^11^4.^7.^~2~^~12/01/2002~ -~09279~^~304~^7.^44^0.^~1~^~A~^^^13^5.^9.^12^6.^7.^~2~^~12/01/2002~ -~09279~^~305~^16.^44^0.^~1~^~A~^^^13^9.^25.^12^14.^17.^~2~^~12/01/2002~ -~09279~^~306~^157.^41^3.^~1~^~A~^^^13^111.^207.^12^147.^165.^~2~^~05/01/2003~ -~09279~^~307~^0.^37^0.^~1~^~A~^^^12^0.^2.^11^0.^0.^~1, 2~^~05/01/2003~ -~09279~^~318~^345.^7^43.^~1~^~A~^^^2^193.^555.^5^233.^456.^~2, 3~^~12/01/2002~ -~09279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09279~^~320~^17.^7^2.^~1~^~A~^^^2^10.^28.^5^11.^22.^~2, 3~^~12/01/2002~ -~09279~^~321~^190.^7^23.^~1~^~A~^^^2^109.^305.^5^128.^250.^~2, 3~^~12/01/2002~ -~09279~^~322~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09279~^~334~^35.^7^7.^~1~^~A~^^^2^13.^72.^4^12.^57.^~2, 3~^~12/01/2002~ -~09279~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09279~^~338~^73.^7^12.^~1~^~A~^^^2^37.^122.^5^39.^106.^~2, 3~^~12/01/2002~ -~09279~^~417~^5.^8^0.^~1~^~A~^^^2^3.^7.^3^5.^5.^~1, 2, 3~^~12/01/2002~ -~09279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09279~^~432~^5.^8^0.^~1~^~A~^^^2^3.^7.^3^5.^5.^^~01/01/2007~ -~09279~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09279~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09281~^~268~^172.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09281~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~306~^126.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~318~^914.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09281~^~320~^46.^1^^~1~^^^^^^^^^^^~01/01/2007~ -~09281~^~321~^502.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09281~^~334~^93.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09281~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09281~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09282~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09282~^~268~^243.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09282~^~301~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~305~^15.^6^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~306~^154.^6^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~318~^1009.^6^43.^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09282~^~320~^50.^6^2.^~1~^^^^^^^^^^^~01/01/2007~ -~09282~^~321~^554.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09282~^~334~^102.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09282~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09282~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09282~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09283~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09283~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09283~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09283~^~268~^264.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09283~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~306~^93.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~318~^231.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09283~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09283~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09283~^~321~^127.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~322~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09283~^~334~^23.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09283~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09283~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09283~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09284~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09284~^~268~^372.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09284~^~301~^9.^8^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~306~^91.^8^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~307~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~318~^259.^8^63.^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09284~^~320~^13.^8^3.^~1~^^^^^^^^^^^~01/01/2007~ -~09284~^~321~^142.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09284~^~334~^26.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09284~^~432~^3.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09284~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09284~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09285~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09285~^~268~^423.^0^^~4~^^^^^^^^^^^ -~09285~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~307~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~318~^254.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09285~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09285~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09285~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09285~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09286~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09286~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09286~^~268~^346.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~301~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^13.^~4~^~03/01/2008~ -~09286~^~304~^12.^3^1.^~1~^~A~^^^1^10.^15.^2^6.^18.^~4~^~03/01/2008~ -~09286~^~305~^36.^3^4.^~1~^~A~^^^1^27.^42.^2^16.^55.^~4~^~03/01/2008~ -~09286~^~306~^236.^3^12.^~1~^~A~^^^1^212.^249.^2^183.^288.^~4~^~03/01/2008~ -~09286~^~307~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^2.^3.^~1, 4~^~03/01/2008~ -~09286~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09286~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~321~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~ -~09286~^~322~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~ -~09286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09286~^~334~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~ -~09286~^~337~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~ -~09286~^~338~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~ -~09286~^~417~^38.^3^11.^~1~^~A~^^^1^21.^60.^2^-10.^86.^~4~^~03/01/2008~ -~09286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09286~^~432~^38.^3^11.^~1~^~A~^^^1^21.^60.^2^-10.^86.^^~06/01/2008~ -~09286~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09286~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~09286~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~09286~^~641~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~09287~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09287~^~268~^172.^0^^~4~^^^^^^^^^^^ -~09287~^~301~^56.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~304~^85.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~306~^220.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~307~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~318~^43.^4^43.^~1~^~A~^^^2^0.^87.^1^-507.^593.^~2~^~05/01/2003~ -~09287~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09287~^~320~^2.^4^2.^~1~^~A~^^^2^0.^4.^1^-25.^29.^~2~^~05/01/2003~ -~09287~^~321~^25.^4^24.^~1~^~A~^^^2^0.^49.^1^-286.^335.^~2~^~05/01/2003~ -~09287~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~05/01/2003~ -~09287~^~334~^3.^4^3.^~1~^~A~^^^2^0.^6.^1^-35.^41.^~2~^~05/01/2003~ -~09287~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09287~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/2003~ -~09287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09287~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09288~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09288~^~268~^439.^0^^~4~^^^^^^^^^^^ -~09288~^~301~^17.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~304~^15.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~305~^26.^20^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~306~^226.^20^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~307~^3.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~318~^797.^21^74.^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09288~^~320~^40.^21^3.^~1~^^^^^^^^^^^~06/01/2002~ -~09288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09288~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09288~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09288~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09288~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09288~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09289~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09289~^~268~^1418.^0^^~4~^^^^^^^^^^^ -~09289~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~304~^64.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~305~^112.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~306~^1058.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~318~^1762.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09289~^~320~^88.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09289~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09289~^~417~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09289~^~432~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09289~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09290~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09290~^~268~^473.^0^^~4~^^^^^^^^^^^ -~09290~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~305~^37.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~318~^523.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09290~^~320~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~09290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09290~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09290~^~432~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09290~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09291~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~301~^43.^42^1.^~1~^~A~^^^13^19.^72.^12^39.^45.^~2~^~10/01/2002~ -~09291~^~304~^41.^42^0.^~1~^~A~^^^13^30.^47.^12^39.^42.^~2~^~10/01/2002~ -~09291~^~305~^69.^42^1.^~1~^~A~^^^13^53.^81.^12^66.^72.^~2~^~10/01/2002~ -~09291~^~306~^732.^42^6.^~1~^~A~^^^13^630.^826.^12^716.^746.^~2~^~10/01/2002~ -~09291~^~307~^2.^38^0.^~1~^~A~^^^13^0.^4.^12^1.^1.^~1, 2~^~10/01/2002~ -~09291~^~318~^781.^31^230.^~1~^~A~^^^3^325.^1649.^2^-210.^1772.^~2~^~10/01/2002~ -~09291~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09291~^~320~^39.^31^11.^~1~^~A~^^^3^16.^82.^2^-10.^88.^~2~^~10/01/2002~ -~09291~^~321~^394.^31^117.^~1~^~A~^^^3^150.^834.^2^-111.^899.^~2~^~10/01/2002~ -~09291~^~322~^57.^31^17.^~1~^~A~^^^3^22.^115.^2^-18.^131.^~2~^~10/01/2002~ -~09291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09291~^~334~^93.^31^24.^~1~^~A~^^^3^42.^196.^2^-12.^198.^~2~^~10/01/2002~ -~09291~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~338~^148.^31^18.^~1~^~A~^^^3^87.^256.^2^68.^227.^~2~^~10/01/2002~ -~09291~^~417~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09291~^~432~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^^~08/01/2010~ -~09291~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09292~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09292~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09292~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09292~^~268~^448.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09292~^~301~^19.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~304~^18.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~305~^30.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~306~^321.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~307~^1.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~318~^342.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09292~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09292~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09292~^~321~^173.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~322~^25.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09292~^~334~^41.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~337~^0.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~338~^65.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09292~^~432~^0.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09292~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09292~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09293~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09293~^~268~^519.^0^^~4~^^^^^^^^^^^ -~09293~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~306~^312.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~318~^285.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09293~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09293~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09293~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~09293~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09294~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09294~^~268~^297.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09294~^~301~^12.^30^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~304~^14.^23^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~305~^25.^23^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~306~^276.^22^11.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~307~^4.^22^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~318~^3.^26^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09294~^~320~^0.^26^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09294~^~321~^2.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~ -~09294~^~322~^0.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~ -~09294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09294~^~334~^0.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~ -~09294~^~337~^0.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~10/01/2002~ -~09294~^~338~^40.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~10/01/2002~ -~09294~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09294~^~432~^0.^3^0.^~1~^^^^^^^^^^^~01/01/2007~ -~09294~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09294~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09295~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09295~^~268~^159.^0^^~4~^^^^^^^^^^^ -~09295~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~304~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~306~^216.^3^24.^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~09295~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09295~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~09295~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~09295~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~09295~^~334~^10.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~09295~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09296~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09296~^~268~^238.^0^^~4~^^^^^^^^^^^ -~09296~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~306~^197.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09296~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09296~^~417~^3.^0^^~4~^^^^^^^^^^^~11/01/1988~ -~09296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09296~^~432~^3.^0^^~4~^^^^^^^^^^^~11/01/1988~ -~09296~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09296~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09297~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09297~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~301~^64.^6^0.^~1~^~A~^^^1^61.^67.^5^62.^66.^~2, 3~^~07/01/2017~ -~09297~^~304~^35.^6^0.^~1~^~A~^^^1^34.^38.^5^33.^36.^~2, 3~^~08/01/1982~ -~09297~^~305~^101.^6^3.^~1~^~A~^^^1^90.^111.^5^93.^109.^~2, 3~^~07/01/2017~ -~09297~^~306~^746.^6^16.^~1~^~A~^^^1^669.^791.^5^702.^789.^~2, 3~^~08/01/1982~ -~09297~^~307~^24.^6^3.^~1~^~A~^^^1^16.^37.^5^14.^33.^~2, 3~^~07/01/2017~ -~09297~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09297~^~321~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~322~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09297~^~334~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~337~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~338~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09297~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09297~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09297~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09298~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09298~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~301~^62.^12^2.^~1~^~A~^^^1^53.^98.^10^57.^66.^~2, 3~^~07/01/2017~ -~09298~^~304~^36.^12^0.^~1~^~A~^^^1^33.^39.^10^35.^36.^~2, 3~^~07/01/2017~ -~09298~^~305~^98.^12^1.^~1~^~A~^^^1^92.^109.^6^94.^101.^~2, 3~^~07/01/2017~ -~09298~^~306~^744.^12^12.^~1~^~A~^^^1^681.^821.^6^713.^774.^~2, 3~^~07/01/2017~ -~09298~^~307~^26.^12^2.^~1~^~A~^^^1^17.^48.^6^18.^32.^~2, 3~^~07/01/2017~ -~09298~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~09298~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09298~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~09298~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09298~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~417~^5.^4^0.^~1~^~A~^^^1^4.^6.^3^3.^6.^~1, 2, 3~^~10/01/2002~ -~09298~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09298~^~432~^5.^4^0.^~1~^~A~^^^1^4.^6.^3^3.^6.^^~08/01/2010~ -~09298~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09298~^~601~^0.^11^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~ -~09299~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09299~^~268~^1238.^0^^~4~^^^^^^^^^^^ -~09299~^~301~^28.^34^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~304~^30.^34^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~305~^75.^34^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~306~^825.^26^14.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~307~^28.^26^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~318~^0.^14^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09299~^~320~^0.^14^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09299~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09299~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09299~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09299~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09301~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09301~^~268~^343.^0^^~4~^^^^^^^^^^^ -~09301~^~301~^22.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~305~^9.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~306~^42.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~318~^3.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09301~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~321~^2.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~417~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09301~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09301~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09301~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09302~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09302~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09302~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~301~^25.^11^1.^~1~^~A~^^^4^19.^32.^3^20.^28.^~2~^~12/01/2002~ -~09302~^~304~^22.^12^2.^~1~^~A~^^^4^13.^32.^3^14.^28.^~2~^~12/01/2002~ -~09302~^~305~^29.^11^2.^~1~^~A~^^^4^21.^37.^3^20.^38.^~2~^~12/01/2002~ -~09302~^~306~^151.^12^20.^~1~^~A~^^^4^93.^206.^3^86.^216.^~2~^~05/01/2003~ -~09302~^~307~^1.^8^0.^~1~^~A~^^^3^0.^3.^2^-1.^3.^~2~^~05/01/2003~ -~09302~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09302~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~09302~^~321~^12.^16^8.^~1~^~A~^^^5^0.^42.^4^-10.^33.^~1, 2~^~12/01/2002~ -~09302~^~322~^16.^12^6.^~1~^~A~^^^4^0.^31.^3^-3.^35.^~2~^~12/01/2002~ -~09302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09302~^~334~^0.^12^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~ -~09302~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~338~^136.^4^2.^~1~^~A~^^^2^123.^146.^2^126.^145.^~2, 3~^~12/01/2002~ -~09302~^~417~^21.^12^5.^~1~^~A~^^^4^7.^41.^3^2.^39.^~1, 2~^~12/01/2002~ -~09302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09302~^~432~^21.^12^5.^~1~^~A~^^^4^7.^41.^3^2.^39.^^~04/01/2006~ -~09302~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09304~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09304~^~268~^381.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09304~^~301~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~305~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~306~^94.^3^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~318~^33.^3^14.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09304~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09304~^~321~^12.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~322~^16.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09304~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~337~^0.^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~338~^91.^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~417~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09304~^~432~^11.^3^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09304~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09304~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09306~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09306~^~268~^431.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09306~^~301~^15.^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~304~^13.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~306~^114.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~318~^60.^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09306~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09306~^~321~^21.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09306~^~322~^29.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09306~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09306~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~ -~09306~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09306~^~338~^113.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09306~^~417~^26.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09306~^~432~^26.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~09306~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09306~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09307~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09307~^~268~^88.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09307~^~301~^86.^9^6.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~304~^12.^33^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~305~^14.^33^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~306~^288.^17^21.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~307~^4.^17^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~318~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09307~^~320~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~321~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09307~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~338~^170.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09307~^~417~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09307~^~432~^7.^4^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09307~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09307~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09309~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09309~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09309~^~268~^88.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09309~^~301~^194.^3^16.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~304~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~306~^108.^3^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~318~^107.^3^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09309~^~320~^5.^3^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09309~^~321~^64.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~322~^0.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09309~^~334~^0.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~337~^0.^0^^~4~^~BFZN~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~338~^170.^0^^~4~^~BFZN~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~417~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09309~^~432~^8.^3^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09309~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09309~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09310~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09310~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09310~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09310~^~268~^485.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09310~^~301~^145.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~305~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~306~^96.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09310~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09310~^~321~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09310~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09310~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09310~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09310~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09310~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09310~^~417~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09310~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/2007~ -~09310~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09310~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09311~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09311~^~268~^205.^0^^~4~^^^^^^^^^^^ -~09311~^~301~^215.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~306~^208.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~318~^287.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09311~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09311~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09312~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09312~^~268~^105.^0^^~4~^^^^^^^^^^^ -~09312~^~301~^29.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~306~^123.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~307~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~318~^339.^3^214.^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09312~^~320~^17.^3^10.^~1~^^^^^^^^^^^~06/01/2002~ -~09312~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09313~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09313~^~268~^347.^0^^~4~^^^^^^^^^^^ -~09313~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~304~^12.^0^^~4~^^^^^^^^^^^~09/01/1986~ -~09313~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09313~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09313~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1986~ -~09313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09313~^~432~^14.^0^^~4~^^^^^^^^^^^~09/01/1986~ -~09313~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09313~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09314~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~301~^18.^19^4.^~1~^~A~^^^3^5.^30.^2^-1.^37.^~2~^~08/01/2010~ -~09314~^~304~^11.^19^0.^~1~^~A~^^^3^8.^13.^2^8.^13.^~2~^~08/01/2010~ -~09314~^~305~^26.^19^5.^~1~^~A~^^^3^12.^41.^2^3.^47.^~2~^~08/01/2010~ -~09314~^~306~^454.^19^48.^~1~^~A~^^^3^263.^564.^2^242.^664.^~2~^~08/01/2010~ -~09314~^~307~^7.^5^1.^~1~^~A~^^^2^5.^10.^1^-15.^30.^~2~^~08/01/2010~ -~09314~^~318~^143.^5^1.^~1~^~A~^^^2^41.^346.^1^129.^156.^~2~^~08/01/2010~ -~09314~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09314~^~320~^7.^5^0.^~1~^~A~^^^2^2.^17.^1^6.^7.^~2~^~08/01/2010~ -~09314~^~321~^82.^5^3.^~1~^~A~^^^2^17.^202.^1^43.^120.^~2~^~08/01/2010~ -~09314~^~322~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~08/01/2010~ -~09314~^~334~^7.^5^7.^~1~^~A~^^^2^0.^18.^1^-86.^101.^~2~^~08/01/2010~ -~09314~^~337~^199.^3^66.^~1~^~A~^^^1^68.^289.^2^-89.^486.^~4~^~08/01/2010~ -~09314~^~338~^204.^3^54.^~1~^~A~^^^1^113.^302.^2^-32.^440.^~4~^~08/01/2010~ -~09314~^~417~^7.^4^1.^~1~^~A~^^^2^3.^10.^1^-9.^23.^~2~^~08/01/2010~ -~09314~^~432~^7.^4^1.^~1~^~A~^^^2^3.^10.^1^-9.^23.^^~08/01/2010~ -~09314~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09315~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09315~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09315~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~09315~^~268~^276.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09315~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~306~^278.^3^12.^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~307~^14.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~318~^2.^6^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09315~^~320~^0.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09315~^~321~^1.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~09315~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09315~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09315~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09315~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09315~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09315~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09315~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09316~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09316~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~301~^16.^73^0.^~1~^~A~^^^22^8.^24.^21^14.^16.^~2~^~05/01/2006~ -~09316~^~304~^13.^74^0.^~1~^~A~^^^21^8.^18.^20^12.^13.^~2~^~04/01/2003~ -~09316~^~305~^24.^73^0.^~1~^~A~^^^21^9.^39.^20^22.^25.^~2~^~04/01/2003~ -~09316~^~306~^153.^76^4.^~1~^~A~^^^22^77.^207.^21^144.^161.^~2~^~05/01/2003~ -~09316~^~307~^1.^72^0.^~1~^~A~^^^21^0.^2.^20^0.^1.^~1, 2~^~05/01/2003~ -~09316~^~318~^12.^6^0.^~1~^~A~^^^2^5.^20.^1^3.^19.^~2~^~05/01/2006~ -~09316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09316~^~320~^1.^6^0.^~1~^~A~^^^2^0.^1.^1^0.^0.^~2~^~05/01/2006~ -~09316~^~321~^7.^8^0.^~1~^~A~^^^3^3.^12.^2^6.^8.^~1, 2~^~02/01/2003~ -~09316~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09316~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09316~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~09316~^~338~^26.^6^8.^~1~^~A~^^^2^5.^53.^3^0.^52.^~2, 3~^~02/01/2003~ -~09316~^~417~^24.^3^5.^~1~^~A~^^^2^19.^30.^1^-44.^93.^~2~^~04/01/2003~ -~09316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09316~^~432~^24.^3^5.^~1~^~A~^^^2^19.^30.^1^-44.^93.^^~05/01/2006~ -~09316~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09316~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09317~^~268~^385.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09317~^~301~^13.^3^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~304~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~305~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~306~^86.^3^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~307~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~318~^26.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09317~^~320~^1.^3^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09317~^~321~^16.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09317~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~337~^0.^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~338~^18.^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~417~^28.^3^8.^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09317~^~432~^28.^3^8.^~1~^^^^^^^^^^^~02/01/2007~ -~09317~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09317~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09318~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09318~^~268~^146.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09318~^~301~^16.^6^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~305~^13.^7^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~306~^148.^6^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~318~^45.^5^10.^~1~^^^^^^^^^^^~02/01/2003~ -~09318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09318~^~320~^2.^5^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09318~^~321~^27.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09318~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~337~^0.^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~338~^26.^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~417~^17.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09318~^~432~^17.^3^5.^~1~^^^^^^^^^^^~02/01/2007~ -~09318~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09318~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09320~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09320~^~268~^402.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09320~^~301~^11.^18^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~304~^7.^12^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~305~^13.^13^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~306~^98.^10^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~307~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~318~^24.^18^2.^~1~^^^^^^^^^^^~04/01/2005~ -~09320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09320~^~320~^1.^18^0.^~1~^^^^^^^^^^^~02/01/2007~ -~09320~^~321~^14.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09320~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09320~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~ -~09320~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09320~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09320~^~417~^15.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09320~^~432~^15.^2^^~1~^^^^^^^^^^^~02/01/2007~ -~09320~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09320~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09321~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09321~^~268~^393.^0^^~4~^^^^^^^^^^^ -~09321~^~301~^24.^10^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~305~^32.^8^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~306~^247.^5^28.^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~307~^9.^5^3.^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~318~^6.^9^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09321~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09321~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09321~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09321~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09321~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09321~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09322~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~268~^1000.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09322~^~301~^74.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~304~^92.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~306~^628.^3^106.^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~307~^28.^3^17.^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09322~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09322~^~321~^18.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~09322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09322~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09322~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09322~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09322~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09325~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09325~^~268~^360.^0^^~4~^^^^^^^^^^^ -~09325~^~301~^13.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~304~^13.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~305~^7.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~306~^131.^26^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~307~^2.^26^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~318~^127.^40^10.^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09325~^~320~^6.^40^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09325~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09325~^~417~^9.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09325~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09325~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09325~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09326~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~09326~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~301~^7.^42^0.^~1~^~A~^^^13^4.^14.^12^6.^7.^~2~^~03/01/2003~ -~09326~^~304~^10.^45^0.^~1~^~A~^^^14^5.^12.^13^9.^10.^~2~^~03/01/2003~ -~09326~^~305~^11.^42^0.^~1~^~A~^^^13^5.^19.^12^10.^12.^~2~^~03/01/2003~ -~09326~^~306~^112.^44^3.^~1~^~A~^^^14^58.^191.^13^105.^119.^~2~^~05/01/2003~ -~09326~^~307~^1.^40^0.^~1~^~A~^^^13^0.^5.^12^1.^1.^~1, 2~^~05/01/2003~ -~09326~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09326~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~09326~^~321~^303.^14^8.^~1~^~A~^^^5^184.^476.^4^278.^326.^~2~^~03/01/2003~ -~09326~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~03/01/2003~ -~09326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09326~^~334~^78.^10^77.^~1~^~A~^^^4^0.^310.^3^-169.^324.^~1, 2~^~03/01/2003~ -~09326~^~337~^4532.^150^386.^~1~^~A~^^^4^3040.^5590.^3^3300.^5763.^~2~^~03/01/2003~ -~09326~^~338~^8.^9^4.^~1~^~A~^^^3^0.^17.^2^-12.^29.^~1, 2~^~03/01/2003~ -~09326~^~417~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~03/01/2003~ -~09326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09326~^~432~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^^~04/01/2006~ -~09326~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09326~^~636~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09328~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09328~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09328~^~301~^54.^1^^~1~^~A~^^^^54.^54.^^^^^~03/01/2003~ -~09328~^~304~^4.^1^^~1~^~A~^^^^4.^4.^^^^^~03/01/2003~ -~09328~^~305~^3.^1^^~1~^~A~^^^^3.^3.^^^^^~03/01/2003~ -~09328~^~306~^21.^1^^~1~^~A~^^^^21.^21.^^^^^~03/01/2003~ -~09328~^~307~^4.^1^^~1~^~A~^^^^4.^4.^^^^^~03/01/2003~ -~09328~^~318~^45.^0^^~4~^~RA~^^^^^^^^^^~01/01/2005~ -~09328~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~321~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09328~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~338~^59.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09328~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09334~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~301~^17.^5^0.^~1~^~A~^^^2^10.^26.^1^14.^18.^~2~^~07/01/2010~ -~09334~^~304~^9.^5^0.^~1~^~A~^^^2^8.^10.^1^9.^9.^~2~^~07/01/2010~ -~09334~^~305~^19.^5^1.^~1~^~A~^^^2^16.^21.^1^4.^32.^~2~^~07/01/2010~ -~09334~^~306~^172.^5^16.^~1~^~A~^^^2^150.^193.^1^-39.^383.^~2~^~07/01/2010~ -~09334~^~307~^3.^5^0.^~1~^~A~^^^2^2.^4.^1^0.^5.^~1, 2~^~07/01/2010~ -~09334~^~318~^6.^3^5.^~1~^~A~^^^2^0.^11.^1^-66.^77.^~2~^~07/01/2010~ -~09334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09334~^~320~^0.^3^0.^~1~^~A~^^^2^0.^1.^1^-3.^3.^~2~^~07/01/2010~ -~09334~^~321~^2.^3^1.^~1~^~A~^^^2^0.^4.^1^-21.^25.^~2~^~07/01/2010~ -~09334~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^1^-2.^2.^~2~^~07/01/2010~ -~09334~^~334~^3.^3^2.^~1~^~A~^^^2^0.^6.^1^-34.^39.^~2~^~07/01/2010~ -~09334~^~337~^5.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~338~^27.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~417~^23.^5^15.^~1~^~A~^^^2^4.^43.^1^-175.^221.^~1, 2~^~07/01/2010~ -~09334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09334~^~432~^23.^5^15.^~1~^~A~^^^2^4.^43.^1^-175.^221.^^~07/01/2010~ -~09334~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09334~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09340~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09340~^~268~^176.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09340~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~305~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~306~^121.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~307~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09340~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09340~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09340~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09340~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09340~^~417~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09340~^~432~^8.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~09340~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09340~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09351~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09351~^~268~^293.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~301~^7.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~304~^5.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~305~^12.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~306~^90.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~307~^6.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~318~^273.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09351~^~320~^14.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~321~^138.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09351~^~334~^52.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~338~^112.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09351~^~417~^3.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09351~^~432~^3.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~ -~09351~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09352~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~268~^370.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^9.^~2, 3~^~04/01/2008~ -~09352~^~304~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^5.^~2, 3~^~04/01/2008~ -~09352~^~305~^12.^3^1.^~1~^~A~^^^1^10.^13.^2^7.^16.^~2, 3~^~04/01/2008~ -~09352~^~306~^54.^3^5.^~1~^~A~^^^1^43.^61.^2^30.^77.^~2, 3~^~04/01/2008~ -~09352~^~307~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~04/01/2008~ -~09352~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~321~^22.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~09352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~09352~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~09352~^~338~^53.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~417~^2.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~432~^2.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09353~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~09353~^~268~^446.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~09353~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~305~^14.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~306~^46.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~307~^1.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~09353~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~09354~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09354~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09354~^~301~^16.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~304~^15.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~305~^7.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~306~^124.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~307~^1.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~318~^50.^0^^~4~^~NC~^~09268~^^^^^^^^^~02/01/2007~ -~09354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09354~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09354~^~321~^30.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09354~^~322~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09354~^~334~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09354~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09354~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09354~^~417~^5.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09354~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~02/01/2007~ -~09354~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09354~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2007~ -~09357~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09357~^~301~^10.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~304~^7.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~305~^13.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~306~^143.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~307~^4.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~318~^2924.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09357~^~321~^1746.^8^513.^~1~^~A~^^^5^560.^3370.^4^320.^3172.^~2~^~01/01/2003~ -~09357~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^^~01/01/2003~ -~09357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09357~^~334~^16.^2^^~1~^~A~^^^2^1.^32.^1^^^^~01/01/2003~ -~09357~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~338~^39.^2^^~1~^~A~^^^2^4.^75.^1^^^^~01/01/2003~ -~09357~^~417~^2.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~432~^2.^0^^~4~^~BD~^^^^^^^^^^~01/01/2007~ -~09357~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09357~^~601~^0.^0^^~7~^^^^^^^^^^^~01/01/2007~ -~09362~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09362~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09362~^~301~^11.^2^^~1~^~A~^^^1^10.^12.^1^^^^~04/01/2008~ -~09362~^~304~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~04/01/2008~ -~09362~^~305~^16.^2^^~1~^~A~^^^1^14.^17.^1^^^^~04/01/2008~ -~09362~^~306~^115.^2^^~1~^~A~^^^1^110.^120.^1^^^^~04/01/2008~ -~09362~^~307~^4.^2^^~1~^~A~^^^1^3.^4.^1^^^^~04/01/2008~ -~09367~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09367~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09367~^~301~^10.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~304~^9.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~305~^20.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~306~^148.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~307~^3.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~318~^237.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09367~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09367~^~321~^142.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09367~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09367~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~ -~09367~^~337~^0.^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~338~^57.^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~417~^5.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09367~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~06/01/2008~ -~09367~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09367~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/2008~ -~09370~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09370~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09370~^~301~^3.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~304~^5.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~305~^12.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~306~^94.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~307~^6.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~318~^626.^6^227.^~1~^~A~^^^3^168.^1081.^2^-354.^1605.^~2~^~11/01/2009~ -~09370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09370~^~320~^31.^6^11.^~1~^~A~^^^3^8.^54.^2^-17.^80.^~2~^~11/01/2009~ -~09370~^~321~^333.^6^148.^~1~^~A~^^^3^60.^625.^2^-306.^972.^~2~^~11/01/2009~ -~09370~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~11/01/2009~ -~09370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09370~^~334~^85.^6^51.^~1~^~A~^^^3^16.^295.^2^-137.^308.^~2~^~11/01/2009~ -~09370~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~11/01/2009~ -~09370~^~338~^33.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09370~^~417~^9.^3^1.^~1~^~A~^^^1^7.^13.^2^0.^17.^~2, 3~^~11/01/2009~ -~09370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09370~^~432~^9.^3^1.^~1~^~A~^^^1^7.^13.^2^0.^17.^^~11/01/2009~ -~09370~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09370~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2009~ -~09374~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09374~^~268~^309.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~301~^6.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~304~^4.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~305~^8.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~306~^66.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~307~^5.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09374~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~321~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09374~^~322~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09374~^~334~^2.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~417~^1.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09374~^~432~^1.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~ -~09374~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09379~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09379~^~268~^374.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09379~^~301~^10.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~304~^5.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~305~^15.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~306~^93.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~307~^19.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~318~^399.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09379~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09379~^~321~^219.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09379~^~334~^40.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~337~^0.^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~338~^73.^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~417~^3.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09379~^~432~^3.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~ -~09379~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09379~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09383~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09383~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09383~^~301~^12.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~304~^11.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~305~^11.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~306~^136.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~307~^5.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~318~^1312.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09383~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09383~^~321~^298.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~322~^204.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09383~^~334~^775.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~337~^0.^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~338~^243.^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~417~^5.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09383~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~ -~09383~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09383~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09400~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09400~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09400~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09400~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09400~^~301~^8.^57^0.^~1~^~A~^^^17^4.^26.^8^6.^8.^~2, 3~^~05/01/2008~ -~09400~^~304~^5.^58^0.^~1~^~A~^^^17^4.^7.^22^4.^4.^~2, 3~^~05/01/2008~ -~09400~^~305~^7.^59^0.^~1~^~A~^^^17^5.^10.^16^6.^7.^~2, 3~^~05/01/2008~ -~09400~^~306~^101.^58^1.^~1~^~A~^^^17^73.^116.^18^98.^103.^~2, 3~^~05/01/2008~ -~09400~^~307~^4.^58^0.^~1~^~A~^^^17^1.^8.^25^3.^4.^~1, 2, 3~^~05/01/2008~ -~09400~^~318~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09400~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09400~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09400~^~321~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~ -~09400~^~322~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~03/01/2006~ -~09400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09400~^~334~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~ -~09400~^~337~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~03/01/2006~ -~09400~^~338~^16.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~ -~09400~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09400~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09400~^~432~^0.^3^0.^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09400~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09401~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09401~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09401~^~301~^4.^11^0.^~1~^~A~^^^4^3.^5.^3^1.^5.^~2~^~06/01/2008~ -~09401~^~304~^3.^11^0.^~1~^~A~^^^4^2.^3.^3^2.^2.^~2~^~06/01/2008~ -~09401~^~305~^5.^11^0.^~1~^~A~^^^4^3.^9.^3^4.^5.^~2~^~06/01/2008~ -~09401~^~306~^74.^11^3.^~1~^~A~^^^4^54.^88.^3^61.^86.^~2~^~06/01/2008~ -~09401~^~307~^2.^16^0.^~1~^^^^^^^^^^^~07/01/2008~ -~09401~^~318~^29.^3^5.^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09401~^~320~^1.^3^0.^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09401~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~ -~09401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~09401~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~ -~09401~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09401~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09402~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09402~^~268~^318.^0^^~4~^^^^^^^^^^^ -~09402~^~301~^4.^40^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~304~^3.^27^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~305~^7.^27^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~306~^61.^37^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~307~^28.^9^4.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~318~^11.^23^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09402~^~320~^1.^23^0.^~1~^^^^^^^^^^^~06/01/2002~ -~09402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09402~^~417~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09402~^~432~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09402~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09404~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09404~^~268~^163.^0^^~4~^^^^^^^^^^^ -~09404~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~305~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~306~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~318~^440.^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09404~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~09404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09404~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09404~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09404~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09404~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09407~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~2, 3~^~12/01/2016~ -~09407~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^6.^~2, 3~^~12/01/2016~ -~09407~^~305~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^4.^6.^~2, 3~^~12/01/2016~ -~09407~^~306~^50.^3^2.^~1~^~A~^^^1^45.^53.^2^38.^61.^~2, 3~^~12/01/2016~ -~09407~^~307~^8.^3^1.^~1~^~A~^^^1^6.^11.^2^1.^14.^~2, 3~^~12/01/2016~ -~09407~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09407~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~321~^308.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09407~^~334~^68.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~338~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09407~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~09407~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09408~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09408~^~268~^251.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~09408~^~301~^5.^22^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~304~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~305~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~306~^13.^21^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~307~^4.^21^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~318~^1.^16^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09408~^~320~^0.^16^0.^~1~^^^^^^^^^^^~02/01/2006~ -~09408~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09408~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09408~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~09408~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~09408~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09409~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09409~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09409~^~301~^13.^86^2.^~1~^~A~^^^3^7.^24.^2^0.^26.^~2~^~04/01/2005~ -~09409~^~304~^12.^29^1.^~1~^~A~^^^2^11.^15.^1^-5.^30.^~2~^~04/01/2005~ -~09409~^~305~^8.^27^0.^~1~^~A~^^^2^6.^9.^1^3.^12.^~2~^~04/01/2005~ -~09409~^~306~^130.^64^3.^~1~^~A~^^^3^85.^160.^2^115.^145.^~2~^~04/01/2005~ -~09409~^~307~^2.^75^1.^~1~^~A~^^^3^0.^5.^2^-3.^7.^~2~^~04/01/2005~ -~09409~^~318~^5.^14^4.^~1~^~A~^^^1^0.^65.^1^-54.^63.^~2, 3~^~04/01/2005~ -~09409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09409~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09409~^~321~^3.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~04/01/2005~ -~09409~^~322~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09409~^~334~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~337~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~338~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~417~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^~2~^~04/01/2005~ -~09409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09409~^~432~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^^~02/01/2007~ -~09409~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09409~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09410~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09410~^~268~^695.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~09410~^~301~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~304~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~305~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~306~^448.^4^26.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~307~^25.^4^9.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~318~^0.^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~09410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09410~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09410~^~432~^1.^4^0.^~1~^^^^^^^^^^^~06/01/2005~ -~09410~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~09410~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09411~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09411~^~268~^197.^0^^~4~^^^^^^^^^^^ -~09411~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~305~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~306~^126.^4^7.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~307~^7.^4^2.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09411~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~09411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09411~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09411~^~432~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09411~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09412~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09412~^~268~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09412~^~301~^9.^4^0.^~1~^~A~^^^2^8.^11.^2^8.^10.^~2, 3~^~08/01/2012~ -~09412~^~304~^6.^4^0.^~1~^~A~^^^2^6.^7.^1^6.^6.^~2, 3~^~08/01/2012~ -~09412~^~305~^11.^4^0.^~1~^~A~^^^2^11.^12.^2^10.^12.^~2, 3~^~08/01/2012~ -~09412~^~306~^101.^4^4.^~1~^~A~^^^2^79.^121.^2^79.^122.^~2, 3~^~08/01/2012~ -~09412~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09412~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~09412~^~320~^1.^5^0.^~1~^~A~^^^3^0.^3.^1^0.^1.^~2, 3~^~08/01/2012~ -~09412~^~321~^14.^6^0.^~1~^~A~^^^3^5.^27.^2^9.^19.^~2, 3~^~08/01/2012~ -~09412~^~322~^2.^6^0.^~1~^~A~^^^3^0.^6.^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~334~^3.^4^1.^~1~^~A~^^^2^0.^8.^1^-9.^15.^~2, 3~^~08/01/2012~ -~09412~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~338~^51.^4^4.^~1~^~A~^^^2^40.^57.^1^-2.^104.^~2, 3~^~08/01/2012~ -~09412~^~417~^6.^4^0.^~1~^~A~^^^2^4.^8.^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~432~^6.^4^0.^~1~^~A~^^^2^4.^8.^^^^^~08/01/2012~ -~09413~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09413~^~268~^261.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09413~^~301~^11.^4^0.^~1~^~A~^^^2^8.^13.^1^4.^17.^~2, 3~^~08/01/2012~ -~09413~^~304~^7.^4^0.^~1~^~A~^^^2^7.^7.^2^6.^7.^~2, 3~^~08/01/2012~ -~09413~^~305~^13.^4^0.^~1~^~A~^^^2^13.^14.^2^13.^13.^~2, 3~^~08/01/2012~ -~09413~^~306~^123.^4^2.^~1~^~A~^^^2^112.^128.^1^87.^157.^~2, 3~^~08/01/2012~ -~09413~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09413~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~09413~^~320~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^0.^1.^~2, 3~^~08/01/2012~ -~09413~^~321~^14.^4^3.^~1~^~A~^^^2^5.^28.^1^-23.^50.^~2, 3~^~08/01/2012~ -~09413~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09413~^~334~^1.^4^0.^~1~^~A~^^^2^0.^3.^1^-1.^4.^~2, 3~^~08/01/2012~ -~09413~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09413~^~338~^53.^4^4.^~1~^~A~^^^2^41.^67.^2^34.^72.^~2, 3~^~08/01/2012~ -~09413~^~417~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-2.^16.^~1, 2, 3~^~08/01/2012~ -~09413~^~432~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-2.^16.^^~08/01/2012~ -~09414~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09414~^~268~^279.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09414~^~301~^10.^4^0.^~1~^~A~^^^2^9.^11.^2^8.^11.^~2, 3~^~08/01/2012~ -~09414~^~304~^7.^4^0.^~1~^~A~^^^2^7.^8.^2^6.^8.^~2, 3~^~08/01/2012~ -~09414~^~305~^14.^4^0.^~1~^~A~^^^2^14.^15.^1^12.^16.^~2, 3~^~08/01/2012~ -~09414~^~306~^122.^4^6.^~1~^~A~^^^2^94.^138.^1^44.^199.^~2, 3~^~08/01/2012~ -~09414~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09414~^~318~^19.^2^^~1~^~A~^^^2^19.^19.^^^^^~08/01/2012~ -~09414~^~320~^1.^2^^~1~^~A~^^^2^1.^1.^^^^^~08/01/2012~ -~09414~^~321~^11.^2^^~1~^~A~^^^2^11.^11.^^^^~1~^~08/01/2012~ -~09414~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~ -~09414~^~334~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~ -~09414~^~337~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~ -~09414~^~338~^11.^2^^~1~^~A~^^^2^11.^11.^^^^~1~^~08/01/2012~ -~09414~^~417~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-1.^16.^~1, 2, 3~^~08/01/2012~ -~09414~^~432~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-1.^16.^^~08/01/2012~ -~09415~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09415~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09415~^~301~^11.^4^0.^~1~^~A~^^^2^9.^12.^1^3.^18.^~2, 3~^~08/01/2012~ -~09415~^~304~^7.^4^0.^~1~^~A~^^^2^6.^8.^2^6.^7.^~2, 3~^~08/01/2012~ -~09415~^~305~^13.^4^0.^~1~^~A~^^^2^13.^13.^2^12.^13.^~2, 3~^~08/01/2012~ -~09415~^~306~^127.^4^5.^~1~^~A~^^^2^107.^154.^1^84.^170.^~2, 3~^~08/01/2012~ -~09415~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09415~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~09415~^~320~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^0.^1.^~2, 3~^~08/01/2012~ -~09415~^~321~^14.^4^1.^~1~^~A~^^^2^5.^26.^1^-2.^30.^~2, 3~^~08/01/2012~ -~09415~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~334~^1.^4^0.^~1~^~A~^^^2^0.^2.^^^^~2, 3~^~08/01/2012~ -~09415~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~338~^46.^4^5.^~1~^~A~^^^2^37.^57.^2^11.^80.^~2, 3~^~08/01/2012~ -~09415~^~417~^9.^4^2.^~1~^~A~^^^2^4.^14.^1^-21.^38.^~1, 2, 3~^~08/01/2012~ -~09415~^~432~^9.^4^2.^~1~^~A~^^^2^4.^14.^1^-21.^38.^^~08/01/2012~ -~09416~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09416~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09416~^~301~^15.^6^0.^~1~^~A~^^^2^14.^17.^4^14.^16.^~2, 3~^~10/01/2016~ -~09416~^~304~^9.^6^0.^~1~^~A~^^^2^8.^10.^4^8.^9.^~2, 3~^~10/01/2016~ -~09416~^~305~^17.^6^0.^~1~^~A~^^^2^15.^19.^4^16.^18.^~2, 3~^~10/01/2016~ -~09416~^~306~^142.^6^4.^~1~^~A~^^^2^129.^160.^4^129.^153.^~2, 3~^~10/01/2016~ -~09416~^~307~^2.^6^0.^~1~^~A~^^^2^2.^3.^4^1.^2.^~1, 2, 3~^~10/01/2016~ -~09416~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09416~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09416~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09416~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~09420~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09420~^~268~^385.^0^^~4~^^^^^^^^^^^ -~09420~^~301~^44.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~304~^10.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~305~^6.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~306~^96.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09420~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~09420~^~417~^14.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~09420~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~09420~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09421~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09421~^~268~^1160.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09421~^~301~^64.^2^^~1~^~A~^^^2^60.^69.^^^^^~04/01/2003~ -~09421~^~304~^54.^2^^~1~^~A~^^^2^53.^55.^^^^^~04/01/2003~ -~09421~^~305~^62.^2^^~1~^~A~^^^2^60.^64.^^^^^~04/01/2003~ -~09421~^~306~^696.^2^^~1~^~A~^^^2^690.^701.^^^^^~04/01/2003~ -~09421~^~307~^1.^2^^~1~^~A~^^^2^0.^1.^^^^~1~^~04/01/2003~ -~09421~^~318~^149.^2^^~1~^~A~^^^2^120.^178.^^^^^~04/01/2003~ -~09421~^~320~^7.^2^^~1~^~A~^^^2^6.^9.^^^^^~04/01/2003~ -~09421~^~321~^89.^2^^~1~^~A~^^^2^72.^107.^^^^^~04/01/2003~ -~09421~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~ -~09421~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09421~^~334~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~ -~09421~^~337~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~ -~09421~^~338~^23.^2^^~1~^~A~^^^2^17.^29.^^^^^~04/01/2003~ -~09421~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~09421~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09421~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09422~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09422~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09422~^~301~^6.^2^^~1~^~A~^^^1^5.^7.^^^^^~08/01/2002~ -~09422~^~304~^30.^2^^~1~^~A~^^^1^22.^37.^^^^^~08/01/2002~ -~09422~^~305~^39.^2^^~1~^~A~^^^1^38.^39.^^^^^~08/01/2002~ -~09422~^~306~^436.^2^^~1~^~A~^^^1^420.^453.^^^^^~08/01/2002~ -~09422~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09422~^~318~^44.^2^^~1~^~A~^^^1^42.^47.^^^^^~08/01/2002~ -~09422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09422~^~320~^2.^2^^~1~^~A~^^^1^2.^2.^^^^^~08/01/2002~ -~09422~^~321~^23.^2^^~1~^~A~^^^1^21.^26.^^^^^~08/01/2002~ -~09422~^~322~^6.^2^^~1~^~A~^^^1^5.^8.^^^^^~08/01/2002~ -~09422~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09422~^~417~^36.^2^^~1~^~A~^^^1^16.^56.^^^^^~08/01/2002~ -~09422~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~09422~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09423~^~208~^257.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~268~^1075.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~09423~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~306~^852.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~318~^2000.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09423~^~320~^100.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~09423~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09426~^~208~^322.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~268~^1345.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~301~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~304~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~305~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~306~^56.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~307~^98.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09426~^~318~^19.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~321~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09426~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~338~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09426~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~09427~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~09427~^~268~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~09427~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~305~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~306~^304.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~307~^20.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~318~^100.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~09427~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09427~^~320~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~09427~^~321~^60.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2000~ -~09428~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~09428~^~268~^462.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~09428~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~304~^32.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~305~^52.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~306~^131.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~318~^383.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~09428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~09428~^~320~^19.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~09428~^~321~^230.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2000~ -~09429~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09429~^~268~^190.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09429~^~301~^13.^11^1.^~1~^~A~^^^3^6.^19.^2^5.^20.^~2~^~06/01/2003~ -~09429~^~304~^12.^12^1.^~1~^~A~^^^3^9.^24.^2^5.^19.^~2~^~06/01/2003~ -~09429~^~305~^9.^11^2.^~1~^~A~^^^2^5.^17.^1^-27.^45.^~2~^~06/01/2003~ -~09429~^~306~^125.^12^18.^~1~^~A~^^^3^81.^162.^2^44.^205.^~2~^~06/01/2003~ -~09429~^~307~^1.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~06/01/2003~ -~09429~^~318~^52.^10^6.^~1~^~A~^^^2^33.^83.^1^-27.^131.^~2~^~06/01/2003~ -~09429~^~320~^3.^10^0.^~1~^~A~^^^2^2.^4.^1^-1.^6.^~2~^~06/01/2003~ -~09429~^~321~^31.^10^3.^~1~^~A~^^^2^20.^50.^1^-16.^78.^~2~^~06/01/2003~ -~09429~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~ -~09429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09429~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~ -~09429~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~ -~09429~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~ -~09429~^~417~^11.^10^2.^~1~^~A~^^^2^8.^17.^1^-18.^39.^~1, 2~^~06/01/2003~ -~09429~^~432~^11.^10^2.^~1~^~A~^^^2^8.^17.^1^-18.^39.^^~02/01/2007~ -~09430~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09430~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09430~^~301~^13.^10^0.^~1~^~A~^^^2^9.^18.^6^11.^15.^~2, 3~^~05/01/2003~ -~09430~^~304~^12.^10^0.^~1~^~A~^^^2^9.^17.^8^10.^14.^~2, 3~^~05/01/2003~ -~09430~^~305~^8.^10^0.^~1~^~A~^^^2^6.^11.^7^6.^8.^~2, 3~^~05/01/2003~ -~09430~^~306~^108.^10^2.^~1~^~A~^^^2^86.^130.^7^102.^112.^~2, 3~^~05/01/2003~ -~09430~^~307~^1.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~06/01/2003~ -~09430~^~318~^57.^6^6.^~1~^~A~^^^2^28.^82.^4^37.^76.^~2, 3~^~05/01/2003~ -~09430~^~320~^3.^6^0.^~1~^~A~^^^2^1.^4.^4^1.^3.^~2, 3~^~05/01/2003~ -~09430~^~321~^34.^6^3.^~1~^~A~^^^2^17.^49.^4^22.^45.^~2, 3~^~05/01/2003~ -~09430~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09430~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~417~^19.^8^1.^~1~^~A~^^^2^8.^36.^3^15.^23.^~1, 2, 3~^~05/01/2003~ -~09430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~09430~^~432~^19.^8^1.^~1~^~A~^^^2^8.^36.^3^15.^23.^^~02/01/2007~ -~09430~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09433~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09433~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09433~^~301~^30.^5^2.^~1~^~A~^^^2^25.^38.^3^23.^36.^~2, 3~^~05/01/2005~ -~09433~^~304~^10.^5^0.^~1~^~A~^^^2^9.^11.^3^9.^11.^~2, 3~^~05/01/2005~ -~09433~^~305~^21.^5^1.^~1~^~A~^^^2^18.^24.^3^17.^24.^~2, 3~^~05/01/2005~ -~09433~^~306~^177.^5^4.^~1~^~A~^^^2^149.^239.^3^161.^192.^~2, 3~^~05/01/2005~ -~09433~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~09433~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~09433~^~417~^24.^5^2.^~1~^~A~^^^2^16.^32.^3^15.^33.^~2, 3~^~05/01/2005~ -~09433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~09433~^~432~^24.^5^2.^~1~^~A~^^^2^16.^32.^3^15.^33.^^~05/01/2006~ -~09433~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09434~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09434~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~268~^245.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09434~^~301~^7.^2^^~1~^~A~^^^1^4.^11.^1^^^^~04/01/2006~ -~09434~^~304~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~04/01/2006~ -~09434~^~305~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~04/01/2006~ -~09434~^~306~^25.^2^^~1~^~A~^^^1^12.^38.^1^^^^~04/01/2006~ -~09434~^~307~^8.^2^^~1~^~A~^^^1^4.^12.^1^^^^~04/01/2006~ -~09434~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09434~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09434~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~ -~09434~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~ -~09434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09434~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~ -~09434~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~ -~09434~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09434~^~417~^6.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2006~ -~09434~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09434~^~432~^6.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2006~ -~09434~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~09434~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09435~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09435~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09435~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~306~^39.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~318~^106.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09435~^~337~^35.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09435~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09435~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~09435~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09436~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~268~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09436~^~301~^17.^2^^~1~^~A~^^^1^9.^24.^1^^^^~06/01/2006~ -~09436~^~304~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~06/01/2006~ -~09436~^~305~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~06/01/2006~ -~09436~^~306~^24.^2^^~1~^~A~^^^1^23.^26.^1^^^^~06/01/2006~ -~09436~^~307~^5.^2^^~1~^~A~^^^1^2.^8.^1^^^^~06/01/2006~ -~09436~^~318~^692.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~09436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~09436~^~321~^402.^2^^~1~^~A~^^^1^328.^476.^1^^^^~06/01/2006~ -~09436~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09436~^~334~^26.^2^^~1~^~A~^^^1^23.^29.^1^^^^~06/01/2006~ -~09436~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09436~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~11/01/2006~ -~09436~^~417~^7.^2^^~1~^~A~^^^1^5.^9.^1^^^^~06/01/2006~ -~09436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09436~^~432~^7.^2^^~1~^~A~^^^1^5.^9.^1^^^^~06/01/2006~ -~09436~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~09436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09437~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~09437~^~268~^240.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~09437~^~301~^10.^2^^~1~^~A~^^^1^7.^12.^1^^^^~04/01/2006~ -~09437~^~304~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2006~ -~09437~^~305~^2.^2^^~1~^~A~^^^1^2.^3.^1^^^^~04/01/2006~ -~09437~^~306~^27.^2^^~1~^~A~^^^1^21.^33.^1^^^^~04/01/2006~ -~09437~^~307~^7.^2^^~1~^~A~^^^1^4.^10.^1^^^^~04/01/2006~ -~09437~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~09437~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~09437~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09437~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09437~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09437~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~ -~09437~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~11/01/2006~ -~09437~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~04/01/2006~ -~09437~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09437~^~432~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~04/01/2006~ -~09437~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~09437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09442~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~268~^228.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09442~^~301~^11.^3^1.^~1~^~A~^^^1^8.^14.^2^3.^18.^~2, 3~^~06/01/2008~ -~09442~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^3.^10.^~2, 3~^~06/01/2008~ -~09442~^~305~^11.^3^0.^~1~^~A~^^^1^10.^13.^2^7.^14.^~2, 3~^~06/01/2008~ -~09442~^~306~^214.^3^5.^~1~^~A~^^^1^204.^222.^2^191.^236.^~2, 3~^~06/01/2008~ -~09442~^~307~^9.^3^3.^~1~^~A~^^^1^2.^13.^2^-6.^24.^~1, 2, 3~^~06/01/2008~ -~09442~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09442~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~ -~09442~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~ -~09442~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09442~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2008~ -~09442~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2008~ -~09442~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~ -~09442~^~417~^24.^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~432~^24.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2008~ -~09442~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~09442~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09443~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09443~^~301~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^^~06/01/2008~ -~09443~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~06/01/2008~ -~09443~^~305~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~06/01/2008~ -~09443~^~306~^96.^2^^~1~^~A~^^^1^95.^97.^1^^^^~06/01/2008~ -~09443~^~307~^7.^2^^~1~^~A~^^^1^5.^8.^1^^^^~06/01/2008~ -~09443~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~338~^33.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~09443~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09444~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~301~^72.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~305~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~306~^89.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~321~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~322~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~334~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~337~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~338~^16.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~417~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~432~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09446~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~268~^1293.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~301~^4.^3^0.^~1~^~A~^^^2^3.^4.^1^2.^4.^~2~^~07/01/2009~ -~09446~^~304~^58.^3^10.^~1~^~A~^^^2^48.^86.^1^-78.^195.^~2~^~07/01/2009~ -~09446~^~305~^44.^3^3.^~1~^~A~^^^2^40.^48.^1^5.^83.^~2~^~07/01/2009~ -~09446~^~306~^482.^3^18.^~1~^~A~^^^2^456.^545.^1^251.^713.^~2~^~07/01/2009~ -~09446~^~307~^2.^3^1.^~1~^~A~^^^2^1.^4.^1^-18.^22.^~1, 2~^~07/01/2009~ -~09446~^~318~^1192.^3^^~1~^~A~^^^1^1053.^1348.^^^^~2~^~07/01/2009~ -~09446~^~320~^60.^3^^~1~^~A~^^^1^53.^67.^^^^~2~^~07/01/2009~ -~09446~^~321~^548.^3^^~1~^~A~^^^1^460.^616.^^^^~2~^~07/01/2009~ -~09446~^~322~^332.^3^^~1~^~A~^^^1^268.^385.^^^^~2~^~07/01/2009~ -~09446~^~334~^2.^3^^~1~^~A~^^^1^1.^5.^^^^~1, 2~^~07/01/2009~ -~09446~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~268~^989.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^4.^7.^~2, 3~^~07/01/2009~ -~09447~^~304~^45.^3^5.^~1~^~A~^^^1^37.^55.^2^21.^67.^~2, 3~^~07/01/2009~ -~09447~^~305~^43.^3^2.^~1~^~A~^^^1^37.^47.^2^29.^55.^~2, 3~^~07/01/2009~ -~09447~^~306~^507.^3^31.^~1~^~A~^^^1^446.^550.^2^372.^642.^~2, 3~^~07/01/2009~ -~09447~^~307~^6.^3^1.^~1~^~A~^^^1^4.^7.^2^0.^11.^~1, 2, 3~^~07/01/2009~ -~09447~^~318~^1318.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~320~^66.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~321~^582.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~322~^407.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~334~^11.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09447~^~338~^100.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09448~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09448~^~268~^396.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09448~^~301~^42.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~305~^7.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~306~^194.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09449~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09449~^~268~^306.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09449~^~301~^46.^5^1.^~1~^~A~^^^1^44.^50.^4^42.^49.^~2, 3~^~07/01/2010~ -~09449~^~304~^20.^5^0.^~1~^~A~^^^1^19.^22.^4^19.^21.^~2, 3~^~07/01/2010~ -~09449~^~305~^10.^5^0.^~1~^~A~^^^1^9.^13.^4^8.^11.^~2, 3~^~07/01/2010~ -~09449~^~306~^244.^5^11.^~1~^~A~^^^1^215.^271.^4^211.^276.^~2, 3~^~07/01/2010~ -~09449~^~307~^3.^5^0.^~1~^~A~^^^1^2.^5.^4^1.^4.^~1, 2, 3~^~07/01/2010~ -~09449~^~318~^74.^5^2.^~1~^~A~^^^1^63.^79.^4^66.^81.^~2, 3~^~07/01/2010~ -~09449~^~320~^4.^5^0.^~1~^~A~^^^1^3.^4.^4^3.^4.^~2, 3~^~07/01/2010~ -~09449~^~321~^40.^5^1.^~1~^~A~^^^1^35.^44.^4^35.^44.^~2, 3~^~07/01/2010~ -~09449~^~322~^3.^5^0.^~1~^~A~^^^1^3.^5.^4^2.^4.^~2, 3~^~07/01/2010~ -~09449~^~334~^5.^5^0.^~1~^~A~^^^1^4.^6.^4^4.^5.^~2, 3~^~07/01/2010~ -~09449~^~337~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~338~^569.^5^14.^~1~^~A~^^^1^529.^604.^4^528.^610.^~2, 3~^~07/01/2010~ -~09449~^~417~^8.^3^0.^~1~^~AS~^^^1^7.^9.^2^6.^9.^~2, 3~^~07/01/2010~ -~09449~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~09449~^~432~^8.^3^0.^~1~^~AS~^^^1^7.^9.^2^6.^9.^~2, 3~^~07/01/2010~ -~09449~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09450~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09450~^~268~^103.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09450~^~301~^8.^3^1.^~1~^~A~^^^1^5.^10.^2^1.^13.^~2, 3~^~04/01/2010~ -~09450~^~304~^11.^3^2.^~1~^~A~^^^1^7.^16.^2^0.^22.^~2, 3~^~04/01/2010~ -~09450~^~305~^12.^3^2.^~1~^~A~^^^1^8.^18.^2^0.^24.^~2, 3~^~04/01/2010~ -~09450~^~306~^200.^3^6.^~1~^~A~^^^1^191.^212.^2^173.^226.^~2, 3~^~04/01/2010~ -~09450~^~307~^4.^3^2.^~1~^~A~^^^1^2.^9.^2^-6.^14.^~1, 2, 3~^~04/01/2010~ -~09450~^~318~^568.^3^148.^~1~^~A~^^^1^357.^854.^2^-70.^1206.^~2, 3~^~04/01/2010~ -~09450~^~320~^28.^3^7.^~1~^~A~^^^1^18.^43.^2^-3.^60.^~2, 3~^~04/01/2010~ -~09450~^~321~^333.^3^88.^~1~^~A~^^^1^207.^503.^2^-45.^712.^~2, 3~^~04/01/2010~ -~09450~^~322~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^~2, 3~^~04/01/2010~ -~09450~^~334~^10.^3^1.^~1~^~A~^^^1^7.^13.^2^3.^17.^~2, 3~^~04/01/2010~ -~09450~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~09450~^~338~^299.^3^19.^~1~^~A~^^^1^259.^320.^2^213.^384.^~2, 3~^~04/01/2010~ -~09450~^~417~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09450~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~09450~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09450~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09451~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09451~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09451~^~301~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~07/01/2009~ -~09451~^~304~^40.^2^^~1~^~A~^^^1^37.^43.^1^^^^~07/01/2009~ -~09451~^~305~^37.^2^^~1~^~A~^^^1^32.^42.^1^^^^~07/01/2009~ -~09451~^~306~^123.^2^^~1~^~A~^^^1^122.^123.^1^^^^~07/01/2009~ -~09451~^~307~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~07/01/2009~ -~09451~^~318~^147.^2^^~1~^~A~^^^1^135.^159.^1^^^^~07/01/2009~ -~09451~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09451~^~321~^88.^2^^~1~^~A~^^^1^81.^95.^1^^^^~07/01/2009~ -~09451~^~417~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~07/01/2009~ -~09451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~09451~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09451~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09452~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~09452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~09452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~09452~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~09452~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~306~^150.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~307~^4.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~318~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~334~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~417~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~432~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~09452~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09500~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09500~^~268~^247.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09500~^~301~^6.^5^0.^~1~^~A~^^^3^4.^9.^1^0.^12.^~2, 3~^~08/01/2012~ -~09500~^~304~^5.^5^0.^~1~^~A~^^^3^5.^5.^1^4.^5.^~2, 3~^~08/01/2012~ -~09500~^~305~^12.^4^0.^~1~^~A~^^^2^11.^12.^2^9.^13.^~2, 3~^~08/01/2012~ -~09500~^~306~^104.^5^2.^~1~^~A~^^^3^94.^109.^1^65.^141.^~2, 3~^~08/01/2012~ -~09500~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~318~^55.^4^3.^~1~^~A~^^^2^48.^60.^1^32.^77.^~2, 3~^~08/01/2012~ -~09500~^~320~^3.^4^0.^~1~^~A~^^^2^2.^3.^1^1.^3.^~2, 3~^~08/01/2012~ -~09500~^~321~^27.^4^1.^~1~^~A~^^^2^25.^29.^2^20.^33.^~2, 3~^~08/01/2012~ -~09500~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~334~^12.^4^1.^~1~^~A~^^^2^7.^15.^1^-1.^25.^~2, 3~^~08/01/2012~ -~09500~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~338~^31.^4^1.^~1~^~A~^^^2^22.^40.^2^21.^39.^~2, 3~^~08/01/2012~ -~09500~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09500~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09501~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09501~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09501~^~301~^6.^5^0.^~1~^~A~^^^3^5.^7.^1^4.^7.^~2, 3~^~08/01/2012~ -~09501~^~304~^5.^5^0.^~1~^~A~^^^3^4.^6.^2^4.^5.^~2, 3~^~08/01/2012~ -~09501~^~305~^10.^4^0.^~1~^~A~^^^2^10.^11.^2^8.^12.^~2, 3~^~08/01/2012~ -~09501~^~306~^100.^5^2.^~1~^~A~^^^3^88.^109.^1^75.^124.^~2, 3~^~08/01/2012~ -~09501~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~318~^51.^4^5.^~1~^~A~^^^2^38.^65.^2^29.^72.^~2, 3~^~08/01/2012~ -~09501~^~320~^3.^4^0.^~1~^~A~^^^2^2.^3.^2^1.^3.^~2, 3~^~08/01/2012~ -~09501~^~321~^25.^4^2.^~1~^~A~^^^2^17.^31.^2^11.^38.^~2, 3~^~08/01/2012~ -~09501~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~334~^12.^4^1.^~1~^~A~^^^2^10.^16.^1^-1.^25.^~2, 3~^~08/01/2012~ -~09501~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~338~^28.^4^2.^~1~^~A~^^^2^23.^34.^2^11.^43.^~2, 3~^~08/01/2012~ -~09501~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09501~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09502~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09502~^~268~^242.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09502~^~301~^5.^5^0.^~1~^~A~^^^3^4.^8.^1^-3.^13.^~2, 3~^~08/01/2012~ -~09502~^~304~^5.^5^0.^~1~^~A~^^^3^5.^6.^1^4.^6.^~2, 3~^~08/01/2012~ -~09502~^~305~^12.^4^0.^~1~^~A~^^^2^11.^13.^2^10.^13.^~2, 3~^~08/01/2012~ -~09502~^~306~^120.^5^1.^~1~^~A~^^^3^96.^136.^1^99.^141.^~2, 3~^~08/01/2012~ -~09502~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09502~^~318~^100.^4^6.^~1~^~A~^^^2^75.^135.^1^25.^173.^~2, 3~^~08/01/2012~ -~09502~^~320~^5.^4^0.^~1~^~A~^^^2^4.^7.^1^1.^8.^~2, 3~^~08/01/2012~ -~09502~^~321~^59.^4^4.^~1~^~A~^^^2^45.^81.^1^1.^116.^~2, 3~^~08/01/2012~ -~09502~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~334~^2.^4^2.^~1~^~A~^^^2^0.^8.^1^-23.^27.^~1, 2, 3~^~08/01/2012~ -~09502~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~338~^64.^4^4.^~1~^~A~^^^2^49.^73.^1^23.^104.^~2, 3~^~08/01/2012~ -~09502~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09502~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09503~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09503~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09503~^~301~^7.^4^0.^~1~^~A~^^^2^6.^8.^1^2.^11.^~2, 3~^~08/01/2012~ -~09503~^~304~^5.^4^0.^~1~^~A~^^^2^5.^5.^2^5.^5.^~2, 3~^~08/01/2012~ -~09503~^~305~^11.^4^0.^~1~^~A~^^^2^10.^11.^1^9.^11.^~2, 3~^~08/01/2012~ -~09503~^~306~^108.^4^3.^~1~^~A~^^^2^97.^117.^2^91.^123.^~2, 3~^~08/01/2012~ -~09503~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09503~^~318~^28.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09503~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09503~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~338~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09503~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09504~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09504~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09504~^~301~^7.^4^0.^~1~^~A~^^^2^6.^8.^1^4.^8.^~2, 3~^~08/01/2012~ -~09504~^~304~^5.^4^0.^~1~^~A~^^^2^5.^5.^1^4.^5.^~2, 3~^~08/01/2012~ -~09504~^~305~^13.^4^0.^~1~^~A~^^^2^11.^13.^1^6.^18.^~2, 3~^~08/01/2012~ -~09504~^~306~^109.^4^4.^~1~^~A~^^^2^90.^126.^2^84.^133.^~2, 3~^~08/01/2012~ -~09504~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09504~^~318~^38.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09504~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09504~^~321~^17.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09504~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09504~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09504~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09504~^~338~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09504~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09504~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09506~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09506~^~268~^203.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~301~^146.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~ -~09506~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2014~ -~09506~^~305~^17.^13^1.^~1~^~A~^^^4^13.^20.^3^13.^21.^~2~^~03/01/2014~ -~09506~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2014~ -~09506~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2014~ -~09506~^~318~^417.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~ -~09506~^~319~^112.^0^^~4~^~NR~^^^^^^^^^^~03/01/2014~ -~09506~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~ -~09506~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2014~ -~09506~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2014~ -~09506~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2014~ -~09506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09506~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~03/01/2014~ -~09506~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09507~^~208~^63.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~268~^262.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~306~^142.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~318~^2083.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~268~^223.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~301~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^^~06/01/2015~ -~09508~^~304~^10.^2^^~1~^~A~^^^1^10.^10.^1^^^^~06/01/2015~ -~09508~^~305~^15.^2^^~1~^~A~^^^1^15.^16.^1^^^^~06/01/2015~ -~09508~^~306~^165.^2^^~1~^~A~^^^1^162.^168.^1^^^^~06/01/2015~ -~09508~^~307~^6.^2^^~1~^~A~^^^1^6.^6.^1^^^^~06/01/2015~ -~09508~^~318~^428.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09508~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09508~^~321~^247.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09508~^~322~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09508~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~334~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09508~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09508~^~338~^183.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09508~^~417~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~06/01/2015~ -~09508~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~432~^15.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09508~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09510~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~09510~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~09510~^~301~^14.^58^4.^~1~^~A~^^^2^10.^24.^1^-46.^75.^~2~^~04/01/2014~ -~09510~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~306~^132.^35^5.^~1~^~A~^^^2^85.^160.^1^59.^203.^~2~^~04/01/2014~ -~09510~^~307~^3.^50^2.^~1~^~A~^^^2^0.^5.^1^-25.^30.^~2~^~04/01/2014~ -~09510~^~318~^235.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09510~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09510~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~208~^71.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~268~^296.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~306~^154.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09512~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~268~^258.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09512~^~301~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~04/01/2014~ -~09512~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~04/01/2014~ -~09512~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~04/01/2014~ -~09512~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~04/01/2014~ -~09512~^~318~^8.^0^^~1~^^^^^^^^^^^~02/01/2015~ -~09512~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~320~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~ -~09512~^~321~^5.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~ -~09512~^~322~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~ -~09512~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~334~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~ -~09512~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~02/01/2015~ -~09512~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~02/01/2015~ -~09512~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09512~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09512~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~09512~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09512~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09513~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~301~^7.^2^^~1~^~A~^^^1^6.^7.^1^^^^~06/01/2015~ -~09513~^~304~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~06/01/2015~ -~09513~^~305~^24.^2^^~1~^~A~^^^1^23.^25.^1^^^^~06/01/2015~ -~09513~^~306~^145.^2^^~1~^~A~^^^1^139.^151.^1^^^^~06/01/2015~ -~09513~^~307~^3.^2^^~1~^~A~^^^1^3.^4.^1^^^^~06/01/2015~ -~09513~^~318~^1408.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09513~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~ -~09513~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~321~^794.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09513~^~322~^14.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09513~^~334~^87.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09513~^~337~^1.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09513~^~338~^38.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09513~^~417~^14.^2^^~1~^~A~^^^1^14.^15.^1^^^^~06/01/2015~ -~09513~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09514~^~208~^46.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~268~^194.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~301~^10.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~306~^116.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~318~^290.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09515~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~301~^18.^3^0.^~1~^~A~^^^1^17.^18.^2^16.^19.^~2, 3~^~06/01/2015~ -~09515~^~304~^15.^3^0.^~1~^~A~^^^1^15.^15.^2^13.^15.^~2, 3~^~06/01/2015~ -~09515~^~305~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^16.^16.^~2, 3~^~06/01/2015~ -~09515~^~306~^177.^3^0.^~1~^~A~^^^1^176.^178.^2^174.^179.^~2, 3~^~06/01/2015~ -~09515~^~307~^11.^3^0.^~1~^~A~^^^1^10.^11.^2^9.^12.^~2, 3~^~06/01/2015~ -~09515~^~318~^417.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~09515~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~ -~09515~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~321~^242.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09515~^~322~^12.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09515~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09515~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09515~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09515~^~417~^17.^3^0.^~1~^~A~^^^1^16.^18.^2^14.^20.^~2, 3~^~06/01/2015~ -~09515~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~432~^17.^3^0.^~1~^~A~^^^1^16.^18.^2^14.^20.^^~06/01/2015~ -~09515~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09516~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09516~^~301~^11.^3^0.^~1~^~A~^^^1^10.^13.^2^7.^14.^~2, 3~^~06/01/2015~ -~09516~^~304~^13.^3^0.^~1~^~A~^^^1^12.^13.^2^12.^12.^~2, 3~^~06/01/2015~ -~09516~^~305~^16.^3^0.^~1~^~A~^^^1^16.^16.^2^15.^16.^~2, 3~^~06/01/2015~ -~09516~^~306~^184.^3^1.^~1~^~A~^^^1^181.^186.^2^177.^190.^~2, 3~^~06/01/2015~ -~09516~^~307~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^4.^6.^~2, 3~^~06/01/2015~ -~09516~^~318~^20.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~321~^9.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09516~^~322~^4.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09516~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09516~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~338~^25.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~417~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^25.^~2, 3~^~06/01/2015~ -~09516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~432~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^25.^^~06/01/2015~ -~09516~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09517~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~268~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09517~^~301~^70.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~306~^184.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09517~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~318~^1.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~320~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~321~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~322~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~334~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~337~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~338~^16.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09517~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09517~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09518~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~301~^24.^11^3.^~1~^~A~^^^1^13.^40.^3^12.^34.^~2, 3~^~12/01/2016~ -~09518~^~304~^23.^11^2.^~1~^~A~^^^1^15.^39.^3^12.^33.^~2, 3~^~12/01/2016~ -~09518~^~305~^30.^11^4.^~1~^~A~^^^1^18.^54.^2^14.^44.^~2, 3~^~12/01/2016~ -~09518~^~306~^184.^11^7.^~1~^~A~^^^1^141.^223.^8^166.^200.^~2, 3~^~12/01/2016~ -~09518~^~307~^4.^11^0.^~1~^~A~^^^1^4.^4.^7^3.^3.^~1, 2, 3~^~12/01/2016~ -~09518~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09518~^~321~^10.^6^3.^~1~^~A~^^^1^2.^32.^3^0.^19.^~2, 3~^~12/01/2016~ -~09518~^~322~^68.^6^19.^~1~^~A~^^^1^8.^230.^3^-2.^138.^~2, 3~^~12/01/2016~ -~09518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~338~^240.^6^31.^~1~^~A~^^^1^163.^320.^3^140.^339.^~2, 3~^~12/01/2016~ -~09518~^~417~^28.^3^0.^~1~^~A~^^^1^24.^36.^1^18.^37.^~2, 3~^~12/01/2016~ -~09518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~432~^28.^3^0.^~1~^~A~^^^1^24.^36.^1^18.^37.^^~12/01/2016~ -~09518~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09519~^~208~^48.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~268~^200.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~301~^8.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~306~^33.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~307~^6.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~318~^49.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~320~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~321~^29.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~337~^35.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~09519~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09520~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~301~^17.^10^0.^~1~^~A~^^^1^15.^24.^9^15.^19.^~4~^~03/01/2015~ -~09520~^~304~^12.^10^0.^~1~^~A~^^^1^11.^16.^9^11.^13.^~4~^~03/01/2015~ -~09520~^~305~^25.^10^1.^~1~^~A~^^^1^19.^31.^9^22.^27.^~4~^~03/01/2015~ -~09520~^~306~^315.^10^7.^~1~^~A~^^^1^270.^350.^9^297.^332.^~4~^~03/01/2015~ -~09520~^~307~^3.^10^0.^~1~^~A~^^^1^2.^4.^9^2.^3.^~4~^~03/01/2015~ -~09520~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09520~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09520~^~321~^14.^10^0.^~1~^~A~^^^1^11.^19.^9^11.^16.^~4~^~03/01/2015~ -~09520~^~322~^0.^10^0.^~1~^~A~^^^1^0.^0.^9^0.^0.^~1, 4~^~03/01/2015~ -~09520~^~324~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09520~^~337~^0.^10^0.^~1~^~A~^^^1^0.^0.^9^0.^0.^~1, 4~^~03/01/2015~ -~09520~^~338~^24.^10^2.^~1~^~A~^^^1^16.^36.^9^18.^28.^~4~^~03/01/2015~ -~09520~^~417~^31.^10^1.^~1~^~A~^^^1^22.^41.^9^26.^34.^~4~^~03/01/2015~ -~09520~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~432~^31.^10^1.^~1~^~A~^^^1^22.^41.^9^26.^34.^^~03/01/2015~ -~09520~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~268~^187.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~301~^19.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~09522~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~305~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~306~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~322~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~ -~09522~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~334~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~ -~09522~^~337~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~ -~09522~^~338~^68.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~ -~09522~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~432~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09523~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09523~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09523~^~301~^8.^5^0.^~1~^~A~^^^1^7.^9.^4^6.^8.^~2, 3~^~03/01/2015~ -~09523~^~304~^6.^5^0.^~1~^~A~^^^1^6.^7.^4^5.^6.^~2, 3~^~03/01/2015~ -~09523~^~305~^9.^5^0.^~1~^~A~^^^1^8.^9.^4^7.^9.^~2, 3~^~03/01/2015~ -~09523~^~306~^112.^5^2.^~1~^~A~^^^1^104.^118.^4^104.^119.^~2, 3~^~03/01/2015~ -~09523~^~307~^29.^5^0.^~1~^~A~^^^1^26.^31.^4^26.^31.^~2, 3~^~03/01/2015~ -~09523~^~417~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~03/01/2015~ -~09523~^~432~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^^~03/01/2015~ -~09524~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~301~^9.^6^0.^~1~^~A~^^^1^8.^12.^5^7.^11.^~2, 3~^~03/01/2015~ -~09524~^~304~^6.^6^0.^~1~^~A~^^^1^6.^7.^5^5.^6.^~2, 3~^~03/01/2015~ -~09524~^~305~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2015~ -~09524~^~306~^109.^6^3.^~1~^~A~^^^1^92.^119.^5^99.^118.^~2, 3~^~03/01/2015~ -~09524~^~307~^26.^6^0.^~1~^~A~^^^1^24.^29.^5^23.^28.^~2, 3~^~03/01/2015~ -~09524~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~417~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^9.^12.^~2, 3~^~03/01/2015~ -~09524~^~432~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^9.^12.^^~03/01/2015~ -~09525~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09525~^~268~^661.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09525~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~306~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~307~^5.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09525~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09525~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09526~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09526~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~306~^34.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~307~^5.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09526~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09526~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09528~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09528~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09528~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~306~^94.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~318~^129.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~09528~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~09528~^~321~^77.^4^4.^~1~^~A~^^^1^67.^89.^3^63.^91.^~4~^~05/01/2015~ -~09528~^~337~^116.^2^^~1~^~A~^^^1^99.^133.^1^^^^~05/01/2015~ -~09528~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09530~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~301~^10.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~304~^14.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~305~^18.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~306~^201.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~307~^2.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~318~^222.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~09530~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~ -~09530~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~321~^45.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09530~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09530~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~334~^169.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~ -~09530~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09530~^~338~^48.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09530~^~417~^30.^2^^~1~^~A~^^^1^29.^31.^1^^^^~06/01/2015~ -~09530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~432~^30.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09530~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~268~^207.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~301~^10.^3^0.^~1~^~A~^^^1^10.^11.^2^8.^11.^~2, 3~^~06/01/2015~ -~09531~^~304~^14.^3^0.^~1~^~A~^^^1^13.^14.^2^11.^15.^~2, 3~^~06/01/2015~ -~09531~^~305~^18.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^~2, 3~^~06/01/2015~ -~09531~^~306~^201.^3^6.^~1~^~A~^^^1^189.^209.^2^174.^226.^~2, 3~^~06/01/2015~ -~09531~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~06/01/2015~ -~09531~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~321~^11.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~322~^7.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~334~^9.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~338~^26.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~417~^35.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^38.^~2, 3~^~06/01/2015~ -~09531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~432~^35.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^38.^^~06/01/2015~ -~09531~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09542~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~304~^41.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~305~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~306~^431.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~417~^28.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~432~^28.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09543~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~301~^3.^3^0.^~1~^~A~^^^1^1.^4.^2^0.^6.^~2, 3~^~11/01/2016~ -~09543~^~304~^28.^3^1.^~1~^~A~^^^1^24.^31.^2^19.^36.^~2, 3~^~11/01/2016~ -~09543~^~305~^24.^3^1.^~1~^~A~^^^1^21.^26.^2^17.^29.^~2, 3~^~11/01/2016~ -~09543~^~306~^289.^3^6.^~1~^~A~^^^1^276.^298.^2^260.^317.^~2, 3~^~11/01/2016~ -~09543~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^1.^~1, 2, 3~^~11/01/2016~ -~09543~^~417~^48.^2^^~1~^~A~^^^1^29.^67.^1^^^^~11/01/2016~ -~09543~^~432~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09544~^~208~^250.^9^^~12~^~MA~^^^1^237.^264.^^^^~2~^~11/01/2016~ -~09544~^~268~^1045.^10^^~12~^~MA~^^^1^991.^1105.^^^^~2~^~11/01/2016~ -~09544~^~301~^342.^10^^~12~^~MA~^^^1^267.^424.^^^^~2~^~11/01/2016~ -~09544~^~304~^158.^12^^~12~^~MA~^^^1^119.^186.^^^^~2~^~11/01/2016~ -~09544~^~305~^47.^10^^~12~^~MA~^^^1^36.^71.^^^^~2~^~11/01/2016~ -~09544~^~306~^2189.^12^^~12~^~MA~^^^1^1665.^3305.^^^^~2~^~11/01/2016~ -~09544~^~307~^10.^10^^~12~^~MA~^^^1^0.^25.^^^^~2~^~11/01/2016~ -~09544~^~417~^43.^4^^~12~^~MA~^^^1^23.^67.^^^^~2~^~11/01/2016~ -~09544~^~432~^43.^4^^~12~^~MA~^^^1^23.^67.^^^^^~11/01/2016~ -~09546~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09546~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~268~^248.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09546~^~301~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~12/01/2016~ -~09546~^~304~^11.^2^^~1~^~A~^^^1^11.^11.^^^^^~12/01/2016~ -~09546~^~305~^17.^2^^~1~^~A~^^^1^13.^21.^1^^^^~12/01/2016~ -~09546~^~306~^161.^2^^~1~^~A~^^^1^136.^186.^1^^^^~12/01/2016~ -~09546~^~307~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^~1~^~12/01/2016~ -~09546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09552~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~301~^14.^4^0.^~1~^~A~^^^1^13.^16.^3^11.^16.^~2, 3~^~12/01/2016~ -~09552~^~304~^15.^4^1.^~1~^~A~^^^1^11.^18.^3^10.^20.^~2, 3~^~12/01/2016~ -~09552~^~305~^20.^4^0.^~1~^~A~^^^1^19.^22.^3^17.^22.^~2, 3~^~12/01/2016~ -~09552~^~306~^169.^4^15.^~1~^~A~^^^1^125.^195.^3^118.^218.^~2, 3~^~12/01/2016~ -~09552~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^3^3.^3.^~1, 2, 3~^~12/01/2016~ -~09552~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~321~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~12/01/2016~ -~09552~^~322~^30.^2^^~1~^~A~^^^1^22.^37.^1^^^^~12/01/2016~ -~09552~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09552~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09552~^~338~^448.^2^^~1~^~A~^^^1^355.^540.^1^^^^~12/01/2016~ -~09552~^~417~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~432~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~301~^23.^8^1.^~1~^~A~^^^1^12.^29.^4^18.^27.^~2, 3~^~12/01/2016~ -~09553~^~304~^25.^8^1.^~1~^~A~^^^1^14.^29.^4^20.^28.^~2, 3~^~12/01/2016~ -~09553~^~305~^30.^8^1.^~1~^~A~^^^1^18.^38.^4^25.^35.^~2, 3~^~12/01/2016~ -~09553~^~306~^195.^8^7.^~1~^~A~^^^1^138.^224.^4^175.^214.^~2, 3~^~12/01/2016~ -~09553~^~307~^4.^8^0.^~1~^~A~^^^1^4.^4.^5^3.^3.^~1, 2, 3~^~12/01/2016~ -~09553~^~318~^97.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~321~^19.^2^^~1~^~A~^^^1^9.^20.^^^^^~12/01/2016~ -~09553~^~322~^79.^2^^~1~^~A~^^^1^35.^85.^^^^^~12/01/2016~ -~09553~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09553~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09553~^~338~^469.^2^^~1~^~A~^^^1^195.^506.^^^^^~12/01/2016~ -~09553~^~417~^30.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~432~^30.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~268~^924.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~301~^97.^4^13.^~1~^~A~^^^1^81.^113.^1^-71.^265.^~2, 3~^~12/01/2016~ -~09554~^~304~^112.^4^5.^~1~^~A~^^^1^102.^122.^1^63.^161.^~2, 3~^~12/01/2016~ -~09554~^~305~^100.^4^9.^~1~^~A~^^^1^70.^115.^1^4.^196.^~2, 3~^~12/01/2016~ -~09554~^~306~^1178.^4^33.^~1~^~A~^^^1^1120.^1290.^1^783.^1572.^~2, 3~^~12/01/2016~ -~09554~^~307~^10.^4^1.^~1~^~A~^^^1^7.^13.^1^-13.^33.^~1, 2, 3~^~12/01/2016~ -~09554~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09554~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09554~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09554~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09554~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~ -~09554~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~10000~^~208~^585.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~268~^2449.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10000~^~301~^36.^4^7.^~1~^~A~^^^1^22.^53.^3^10.^60.^~2, 3~^~05/01/2007~ -~10000~^~304~^12.^4^0.^~1~^~A~^^^1^11.^13.^3^10.^12.^~2, 3~^~05/01/2007~ -~10000~^~305~^160.^4^7.^~1~^~A~^^^1^139.^176.^3^135.^184.^~2, 3~^~05/01/2007~ -~10000~^~306~^214.^4^17.^~1~^~A~^^^1^173.^247.^3^156.^271.^~2, 3~^~05/01/2007~ -~10000~^~307~^125.^4^23.^~1~^~A~^^^1^70.^179.^3^50.^199.^~2, 3~^~05/01/2007~ -~10000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10000~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~324~^61.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~417~^0.^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10000~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10000~^~601~^81.^4^8.^~1~^~A~^^^1^61.^104.^3^52.^109.^~2, 3~^~05/01/2007~ -~10001~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~268~^1573.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~10001~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~304~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~305~^155.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~306~^253.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~10001~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~10001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10001~^~432~^4.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~10001~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~10001~^~601~^74.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~636~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10002~^~208~^134.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~268~^562.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~306~^363.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~318~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~324~^19.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10002~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~208~^211.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~268~^884.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~306~^319.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~10003~^~601~^69.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10004~^~208~^812.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~268~^3397.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~10004~^~301~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~304~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~305~^38.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~306~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~307~^11.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~318~^15.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10004~^~319~^5.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10004~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~324~^122.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2009~ -~10004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10004~^~432~^1.^0^^~1~^^^^^^^^^^^~06/01/2009~ -~10004~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10004~^~601~^57.^8^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~268~^2167.^0^^~4~^^^^^^^^^^^~07/01/2004~ -~10005~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~304~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~305~^108.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~306~^185.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~307~^32.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~318~^10.^0^^~1~^^^^^^^^^^^~07/01/2002~ -~10005~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~ -~10005~^~320~^3.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~10005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~ -~10005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10005~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~ -~10005~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~10005~^~601~^72.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10006~^~208~^632.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~268~^2645.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~306~^333.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~318~^86.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10006~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10006~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~324~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~10006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10006~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~10006~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10006~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~208~^626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~268~^2621.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~305~^109.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~306~^125.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10007~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10007~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~324~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~10007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10007~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10007~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10007~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10008~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10008~^~268~^1025.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10008~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~305~^199.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~307~^47.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10008~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~10008~^~324~^20.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10008~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10008~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10008~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10008~^~601~^73.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~268~^1142.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10009~^~301~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~305~^263.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~306~^352.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~307~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~10009~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~324~^33.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10009~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10009~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10009~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~268~^569.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10010~^~301~^6.^38^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~304~^25.^25^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~305~^229.^11^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~306~^369.^149^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~307~^55.^123^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10010~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10010~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~417~^9.^4^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10010~^~432~^9.^4^3.^~1~^^^^^^^^^^^~03/01/2009~ -~10010~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10010~^~601~^68.^25^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10011~^~301~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~304~^25.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~305~^281.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~306~^373.^12^13.^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~307~^64.^12^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10011~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10011~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~324~^36.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~417~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10011~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10011~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10011~^~601~^94.^11^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10012~^~208~^182.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~268~^763.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~306~^356.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~10012~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10013~^~208~^209.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~268~^873.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~306~^416.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~307~^77.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~318~^10.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2004~ -~10013~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10013~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~324~^17.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10013~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10014~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~268~^500.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~301~^12.^6^0.^~1~^~A~^^^1^10.^14.^5^10.^13.^~2, 3~^~01/01/2011~ -~10014~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~01/01/2011~ -~10014~^~305~^235.^6^4.^~1~^~A~^^^1^219.^251.^5^223.^246.^~2, 3~^~01/01/2011~ -~10014~^~306~^359.^6^14.^~1~^~A~^^^1^324.^405.^5^321.^396.^~2, 3~^~01/01/2011~ -~10014~^~307~^76.^6^2.^~1~^~A~^^^1^71.^86.^5^70.^82.^~2, 3~^~01/01/2011~ -~10014~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10014~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~324~^11.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~417~^0.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~ -~10014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10014~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~601~^62.^6^1.^~1~^~A~^^^1^59.^67.^5^58.^64.^~2, 3~^~01/01/2011~ -~10015~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~301~^16.^6^0.^~1~^~A~^^^1^13.^19.^5^13.^18.^~2, 3~^~01/01/2011~ -~10015~^~304~^27.^6^0.^~1~^~A~^^^1^25.^31.^5^24.^28.^~2, 3~^~01/01/2011~ -~10015~^~305~^273.^6^6.^~1~^~A~^^^1^253.^295.^5^255.^291.^~2, 3~^~01/01/2011~ -~10015~^~306~^425.^6^15.^~1~^~A~^^^1^380.^477.^5^383.^465.^~2, 3~^~01/01/2011~ -~10015~^~307~^80.^6^2.^~1~^~A~^^^1^73.^90.^5^73.^86.^~2, 3~^~01/01/2011~ -~10015~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~319~^1.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10015~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~324~^12.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10015~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~601~^86.^6^3.^~1~^~A~^^^1^76.^97.^5^77.^95.^~2, 3~^~01/01/2011~ -~10016~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~268~^807.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10016~^~305~^204.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~318~^20.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~324~^20.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10016~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~208~^232.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~268~^970.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10017~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10017~^~305~^242.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10017~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10018~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~301~^12.^6^0.^~1~^~A~^^^1^9.^15.^5^9.^13.^~2, 3~^~01/01/2011~ -~10018~^~304~^21.^6^0.^~1~^~A~^^^1^18.^24.^5^18.^22.^~2, 3~^~01/01/2011~ -~10018~^~305~^224.^6^4.^~1~^~A~^^^1^201.^233.^5^212.^236.^~2, 3~^~01/01/2011~ -~10018~^~306~^329.^6^3.^~1~^~A~^^^1^322.^343.^5^320.^337.^~2, 3~^~01/01/2011~ -~10018~^~307~^90.^6^4.^~1~^~A~^^^1^81.^112.^5^78.^101.^~2, 3~^~01/01/2011~ -~10018~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~ -~10018~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~324~^11.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10018~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~601~^66.^6^2.^~1~^~A~^^^1^59.^79.^5^58.^72.^~2, 3~^~01/01/2011~ -~10019~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~268~^733.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~301~^14.^6^0.^~1~^~A~^^^1^12.^17.^5^12.^15.^~2, 3~^~01/01/2011~ -~10019~^~304~^24.^6^0.^~1~^~A~^^^1^21.^26.^5^22.^25.^~2, 3~^~01/01/2011~ -~10019~^~305~^261.^6^4.^~1~^~A~^^^1^246.^277.^5^248.^272.^~2, 3~^~01/01/2011~ -~10019~^~306~^376.^6^5.^~1~^~A~^^^1^362.^398.^5^361.^390.^~2, 3~^~01/01/2011~ -~10019~^~307~^84.^6^4.^~1~^~A~^^^1^73.^102.^5^73.^95.^~2, 3~^~01/01/2011~ -~10019~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~ -~10019~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~324~^15.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10019~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~601~^93.^6^4.^~1~^~A~^^^1^82.^111.^5^82.^103.^~2, 3~^~01/01/2011~ -~10020~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~268~^828.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10020~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~305~^197.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~306~^356.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10020~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10020~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~324~^21.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~10020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10020~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~10020~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10020~^~601~^63.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10021~^~301~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~306~^374.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10021~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~10021~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10021~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~324~^47.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10021~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10021~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10021~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10021~^~601~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~268~^1013.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10022~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~304~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~305~^246.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~306~^423.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~307~^62.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10022~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~10022~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~324~^53.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10022~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10022~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10022~^~601~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~268~^1038.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10023~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~305~^242.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~306~^408.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~307~^59.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10023~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10023~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10023~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10023~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10023~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10023~^~601~^82.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~268~^598.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10024~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~305~^211.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~306~^389.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~307~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10024~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10024~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10024~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10024~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10024~^~601~^59.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10025~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~268~^854.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10025~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~306~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10025~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10025~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~324~^31.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10025~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10025~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10025~^~601~^79.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10026~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~268~^879.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10026~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~304~^29.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~305~^253.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~306~^438.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~307~^64.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10026~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10026~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~324~^37.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10026~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10026~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10026~^~601~^79.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10027~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~268~^874.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10027~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~304~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~305~^249.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~306~^425.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~307~^58.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~10027~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10027~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~10027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10027~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~10027~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10027~^~601~^81.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10028~^~208~^194.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~268~^813.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~301~^35.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~318~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~324~^29.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~10028~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~208~^255.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~268~^1067.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~301~^51.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~306~^259.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~318~^13.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~324~^39.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10029~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~208~^231.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~268~^965.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~301~^56.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~305~^241.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~306~^315.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~318~^15.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~324~^40.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10030~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~208~^254.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~268~^1065.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~318~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~324~^35.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10031~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10032~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~301~^30.^12^3.^~1~^~A~^^^1^17.^48.^11^23.^37.^~2, 3~^~04/01/2010~ -~10032~^~304~^18.^12^0.^~1~^~A~^^^1^17.^22.^11^17.^19.^~2, 3~^~04/01/2010~ -~10032~^~305~^226.^12^6.^~1~^~A~^^^1^184.^265.^11^211.^239.^~2, 3~^~04/01/2010~ -~10032~^~306~^313.^12^10.^~1~^~A~^^^1^247.^361.^11^290.^335.^~2, 3~^~04/01/2010~ -~10032~^~307~^73.^12^1.^~1~^~A~^^^1^62.^79.^11^69.^76.^~2, 3~^~04/01/2010~ -~10032~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10032~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10032~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~324~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10032~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10032~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~601~^59.^6^0.^~1~^~A~^^^1^57.^62.^5^57.^61.^~2, 3~^~04/01/2010~ -~10033~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10033~^~301~^49.^12^3.^~1~^~A~^^^1^37.^72.^11^42.^56.^~2, 3~^~03/01/2010~ -~10033~^~304~^20.^12^1.^~1~^~A~^^^1^16.^30.^11^17.^21.^~2, 3~^~03/01/2010~ -~10033~^~305~^224.^12^4.^~1~^~A~^^^1^189.^256.^11^213.^233.^~2, 3~^~03/01/2010~ -~10033~^~306~^270.^12^5.^~1~^~A~^^^1^240.^297.^11^257.^281.^~2, 3~^~03/01/2010~ -~10033~^~307~^70.^12^1.^~1~^~A~^^^1^56.^78.^11^66.^74.^~2, 3~^~03/01/2010~ -~10033~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10033~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10033~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10033~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10033~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10033~^~601~^87.^6^0.^~1~^~A~^^^1^85.^91.^5^84.^89.^~2, 3~^~03/01/2010~ -~10034~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10034~^~301~^55.^12^6.^~1~^~A~^^^1^30.^94.^11^40.^69.^~2, 3~^~03/01/2010~ -~10034~^~304~^21.^12^1.^~1~^~A~^^^1^18.^28.^11^18.^23.^~2, 3~^~03/01/2010~ -~10034~^~305~^255.^12^5.^~1~^~A~^^^1^221.^285.^11^242.^266.^~2, 3~^~03/01/2010~ -~10034~^~306~^332.^12^4.^~1~^~A~^^^1^301.^352.^11^321.^342.^~2, 3~^~03/01/2010~ -~10034~^~307~^76.^12^1.^~1~^~A~^^^1^63.^84.^11^71.^79.^~2, 3~^~03/01/2010~ -~10034~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10034~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10034~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10034~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10034~^~601~^78.^6^2.^~1~^~A~^^^1^73.^84.^5^72.^82.^~2, 3~^~03/01/2010~ -~10035~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~268~^908.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~301~^27.^12^2.^~1~^~A~^^^1^13.^45.^11^20.^33.^~2, 3~^~04/01/2010~ -~10035~^~304~^19.^12^0.^~1~^~A~^^^1^17.^22.^11^18.^19.^~2, 3~^~04/01/2010~ -~10035~^~305~^203.^12^3.^~1~^~A~^^^1^186.^220.^11^195.^210.^~2, 3~^~04/01/2010~ -~10035~^~306~^337.^12^7.^~1~^~A~^^^1^293.^363.^11^320.^353.^~2, 3~^~04/01/2010~ -~10035~^~307~^78.^12^1.^~1~^~A~^^^1^69.^86.^11^74.^81.^~2, 3~^~04/01/2010~ -~10035~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10035~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~324~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10035~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10035~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~601~^83.^6^1.^~1~^~A~^^^1^78.^86.^5^79.^85.^~2, 3~^~04/01/2010~ -~10036~^~208~^170.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~268~^711.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~306~^343.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~10036~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10036~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10036~^~601~^69.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10037~^~208~^242.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~268~^1014.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~301~^55.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~305~^225.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~306~^273.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~307~^73.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~324~^33.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10037~^~601~^81.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10038~^~208~^209.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~268~^875.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~301~^24.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~305~^220.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~306~^344.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10038~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10039~^~208~^231.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~268~^966.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~305~^213.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~306~^350.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~307~^83.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~318~^15.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10039~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10040~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~268~^533.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10040~^~301~^18.^12^1.^~1~^~A~^^^1^12.^29.^11^13.^21.^~2, 3~^~02/01/2007~ -~10040~^~304~^26.^12^0.^~1~^~A~^^^1^23.^28.^11^25.^26.^~2, 3~^~02/01/2007~ -~10040~^~305~^220.^12^2.^~1~^~A~^^^1^206.^235.^11^213.^226.^~2, 3~^~02/01/2007~ -~10040~^~306~^362.^12^7.^~1~^~A~^^^1^304.^402.^11^345.^377.^~2, 3~^~02/01/2007~ -~10040~^~307~^58.^12^1.^~1~^~A~^^^1^51.^67.^11^55.^60.^~2, 3~^~02/01/2007~ -~10040~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10040~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10040~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10040~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~02/01/2007~ -~10040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10040~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10040~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10040~^~601~^69.^0^^~4~^~BFYN~^~10042~^^^^^^^^^~03/01/2007~ -~10041~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10041~^~301~^53.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~304~^21.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~305~^239.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~306~^288.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~307~^75.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10041~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~324~^29.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~ -~10041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10041~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10041~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10041~^~601~^81.^6^0.^~1~^~A~^^^1^79.^86.^5^78.^83.^~2, 3~^~05/01/2010~ -~10042~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10042~^~301~^23.^12^2.^~1~^~A~^^^1^14.^37.^11^17.^27.^~2, 3~^~02/01/2007~ -~10042~^~304~^26.^12^0.^~1~^~A~^^^1^23.^30.^11^25.^27.^~2, 3~^~02/01/2007~ -~10042~^~305~^228.^12^2.^~1~^~A~^^^1^211.^247.^11^221.^234.^~2, 3~^~02/01/2007~ -~10042~^~306~^356.^12^8.^~1~^~A~^^^1^276.^389.^11^337.^374.^~2, 3~^~02/01/2007~ -~10042~^~307~^56.^12^1.^~1~^~A~^^^1^50.^62.^11^53.^59.^~2, 3~^~02/01/2007~ -~10042~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~324~^28.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2009~ -~10042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10042~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10042~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10042~^~601~^84.^4^7.^~1~^~A~^^^1^71.^102.^3^61.^106.^~2, 3~^~02/01/2007~ -~10043~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~268~^811.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~301~^30.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~304~^21.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~305~^223.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~306~^370.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~307~^86.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~05/01/2010~ -~10043~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~324~^21.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~ -~10043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10043~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10043~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~601~^75.^6^1.^~1~^~A~^^^1^71.^85.^5^70.^80.^~2, 3~^~05/01/2010~ -~10044~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~268~^779.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~301~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~306~^337.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~307~^56.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10044~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10044~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10044~^~601~^58.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10045~^~208~^261.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~268~^1091.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~301~^53.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~305~^213.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~306~^259.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~307~^70.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~324~^37.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10045~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10046~^~208~^222.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~268~^929.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10046~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10047~^~208~^248.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~268~^1036.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10047~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10048~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10048~^~301~^24.^12^3.^~1~^~A~^^^1^15.^50.^11^17.^31.^~2, 3~^~03/01/2007~ -~10048~^~304~^25.^12^0.^~1~^~A~^^^1^22.^27.^11^23.^25.^~2, 3~^~03/01/2007~ -~10048~^~305~^216.^12^3.^~1~^~A~^^^1^186.^236.^11^207.^223.^~2, 3~^~03/01/2007~ -~10048~^~306~^359.^12^5.^~1~^~A~^^^1^322.^382.^11^346.^371.^~2, 3~^~03/01/2007~ -~10048~^~307~^60.^12^1.^~1~^~A~^^^1^52.^70.^11^56.^62.^~2, 3~^~03/01/2007~ -~10048~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10048~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~10048~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10048~^~601~^56.^0^^~4~^~BFYN~^~10050~^^^^^^^^^~03/01/2007~ -~10049~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10049~^~301~^51.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~304~^20.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~305~^229.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~306~^277.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~307~^72.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10049~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10049~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10049~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~ -~10049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10049~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~10049~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10049~^~601~^79.^6^1.^~1~^~A~^^^1^71.^83.^5^73.^83.^~2, 3~^~05/01/2010~ -~10050~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10050~^~301~^26.^12^2.^~1~^~A~^^^1^17.^46.^11^19.^33.^~2, 3~^~03/01/2007~ -~10050~^~304~^25.^12^0.^~1~^~A~^^^1^21.^27.^11^23.^25.^~2, 3~^~03/01/2007~ -~10050~^~305~^218.^12^3.^~1~^~A~^^^1^194.^240.^11^210.^225.^~2, 3~^~03/01/2007~ -~10050~^~306~^343.^12^7.^~1~^~A~^^^1^283.^371.^11^326.^359.^~2, 3~^~03/01/2007~ -~10050~^~307~^57.^12^1.^~1~^~A~^^^1^48.^62.^11^54.^59.^~2, 3~^~03/01/2007~ -~10050~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2009~ -~10050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10050~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~10050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10050~^~601~^66.^4^6.^~1~^~A~^^^1^48.^76.^3^45.^85.^~2, 3~^~03/01/2007~ -~10051~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~268~^863.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~05/01/2010~ -~10051~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^20.^22.^~2, 3~^~05/01/2010~ -~10051~^~305~^244.^6^5.^~1~^~A~^^^1^223.^256.^5^231.^257.^~2, 3~^~05/01/2010~ -~10051~^~306~^287.^6^10.^~1~^~A~^^^1^253.^317.^5^261.^313.^~2, 3~^~05/01/2010~ -~10051~^~307~^95.^6^3.^~1~^~A~^^^1^80.^106.^5^86.^104.^~2, 3~^~05/01/2010~ -~10051~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~319~^3.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~05/01/2010~ -~10051~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~324~^24.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~ -~10051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10051~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~601~^78.^6^2.^~1~^~A~^^^1^69.^85.^5^71.^84.^~2, 3~^~05/01/2010~ -~10052~^~208~^168.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~268~^704.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~306~^336.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10052~^~601~^70.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10053~^~208~^234.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~268~^979.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~301~^12.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~305~^285.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~306~^400.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~307~^58.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10053~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~208~^222.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~268~^928.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~301~^60.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~305~^280.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~306~^363.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~307~^86.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10054~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10055~^~208~^230.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~268~^961.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~306~^340.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10055~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10056~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~10056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~268~^538.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~10056~^~301~^12.^12^1.^~1~^~A~^^^1^9.^24.^11^9.^14.^~2, 3~^~03/01/2007~ -~10056~^~304~^25.^12^0.^~1~^~A~^^^1^23.^26.^11^24.^25.^~2, 3~^~03/01/2007~ -~10056~^~305~^219.^12^2.^~1~^~A~^^^1^204.^234.^11^212.^224.^~2, 3~^~03/01/2007~ -~10056~^~306~^353.^12^3.^~1~^~A~^^^1^329.^372.^11^343.^361.^~2, 3~^~03/01/2007~ -~10056~^~307~^59.^12^1.^~1~^~A~^^^1^52.^66.^11^56.^62.^~2, 3~^~03/01/2007~ -~10056~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10056~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10056~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2010~ -~10056~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~10056~^~601~^69.^0^^~4~^~BFYN~^~10059~^^^^^^^^^~03/01/2007~ -~10057~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~268~^814.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~301~^11.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~304~^26.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~305~^303.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~306~^428.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~307~^58.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~01/01/2011~ -~10057~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~324~^17.^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~ -~10057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~417~^0.^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10057~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10057~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~601~^88.^6^2.^~1~^~A~^^^1^79.^99.^5^80.^95.^~2, 3~^~01/01/2011~ -~10058~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~268~^729.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10058~^~301~^65.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~304~^25.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~305~^300.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~306~^391.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~307~^89.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10058~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~09/01/2002~ -~10058~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~324~^38.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10058~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10058~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10058~^~601~^88.^6^2.^~1~^~A~^^^1^80.^95.^5^81.^93.^~2, 3~^~01/01/2011~ -~10059~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10059~^~301~^13.^12^1.^~1~^~A~^^^1^7.^25.^11^9.^16.^~2, 3~^~01/01/2007~ -~10059~^~304~^26.^12^0.^~1~^~A~^^^1^22.^30.^11^24.^27.^~2, 3~^~01/01/2007~ -~10059~^~305~^235.^12^4.^~1~^~A~^^^1^201.^256.^11^226.^244.^~2, 3~^~01/01/2007~ -~10059~^~306~^352.^12^8.^~1~^~A~^^^1^293.^396.^11^332.^370.^~2, 3~^~01/01/2007~ -~10059~^~307~^59.^12^1.^~1~^~A~^^^1^50.^66.^11^55.^62.^~2, 3~^~01/01/2007~ -~10059~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~10059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~10059~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10059~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~ -~10059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10059~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10059~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10059~^~601~^89.^4^4.^~1~^~A~^^^1^82.^103.^3^73.^104.^~2, 3~^~01/01/2007~ -~10060~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10060~^~301~^5.^12^0.^~1~^~A~^^^1^4.^7.^11^4.^5.^~2, 3~^~02/01/2007~ -~10060~^~304~^27.^12^0.^~1~^~A~^^^1^22.^36.^11^25.^29.^~2, 3~^~02/01/2007~ -~10060~^~305~^247.^12^7.^~1~^~A~^^^1^223.^324.^11^229.^263.^~2, 3~^~02/01/2007~ -~10060~^~306~^399.^12^16.^~1~^~A~^^^1^298.^536.^11^362.^434.^~2, 3~^~02/01/2007~ -~10060~^~307~^53.^12^6.^~1~^~A~^^^1^37.^117.^11^39.^65.^~2, 3~^~02/01/2007~ -~10060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10060~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10060~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10060~^~601~^65.^12^5.^~1~^~A~^^^1^42.^97.^11^53.^76.^~2, 3~^~02/01/2007~ -~10061~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10061~^~301~^6.^12^0.^~1~^~A~^^^1^5.^7.^11^5.^6.^~2, 3~^~02/01/2007~ -~10061~^~304~^29.^12^0.^~1~^~A~^^^1^27.^31.^11^28.^29.^~2, 3~^~02/01/2007~ -~10061~^~305~^267.^12^7.^~1~^~A~^^^1^241.^338.^11^251.^282.^~2, 3~^~02/01/2007~ -~10061~^~306~^421.^12^4.^~1~^~A~^^^1^391.^444.^11^410.^430.^~2, 3~^~02/01/2007~ -~10061~^~307~^57.^12^8.^~1~^~A~^^^1^45.^149.^11^39.^75.^~2, 3~^~02/01/2007~ -~10061~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10061~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10061~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10061~^~601~^73.^12^2.^~1~^~A~^^^1^54.^90.^11^67.^79.^~4~^~02/01/2007~ -~10062~^~208~^155.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10062~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~268~^647.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10062~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~305~^226.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~306~^373.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~307~^48.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10062~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10062~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10063~^~208~^200.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~268~^835.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~306~^261.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~324~^38.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10063~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10064~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~268~^820.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~307~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10064~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~208~^192.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~268~^805.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~306~^349.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~307~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~324~^20.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10065~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10066~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10066~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~02/01/2007~ -~10066~^~304~^27.^12^0.^~1~^~A~^^^1^25.^29.^11^26.^28.^~2, 3~^~02/01/2007~ -~10066~^~305~^234.^12^3.^~1~^~A~^^^1^215.^266.^11^225.^242.^~2, 3~^~02/01/2007~ -~10066~^~306~^387.^12^5.^~1~^~A~^^^1^349.^416.^11^373.^400.^~2, 3~^~02/01/2007~ -~10066~^~307~^49.^12^3.^~1~^~A~^^^1^39.^80.^11^42.^56.^~2, 3~^~02/01/2007~ -~10066~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10066~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10066~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10066~^~601~^66.^12^5.^~1~^~A~^^^1^38.^105.^11^53.^79.^~2, 3~^~02/01/2007~ -~10067~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~301~^8.^6^0.^~1~^~A~^^^1^7.^8.^5^6.^8.^~2, 3~^~04/01/2010~ -~10067~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~04/01/2010~ -~10067~^~305~^230.^6^3.^~1~^~A~^^^1^218.^243.^5^220.^239.^~2, 3~^~04/01/2010~ -~10067~^~306~^269.^6^9.^~1~^~A~^^^1^233.^289.^5^244.^294.^~2, 3~^~04/01/2010~ -~10067~^~307~^67.^6^1.^~1~^~A~^^^1^61.^75.^5^62.^71.^~2, 3~^~04/01/2010~ -~10067~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10067~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~04/01/2010~ -~10067~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10067~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10067~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~601~^71.^6^0.^~1~^~A~^^^1^69.^73.^5^69.^73.^~2, 3~^~04/01/2010~ -~10068~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~268~^722.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10068~^~301~^5.^12^0.^~1~^~A~^^^1^5.^6.^11^5.^5.^~2, 3~^~02/01/2007~ -~10068~^~304~^27.^12^0.^~1~^~A~^^^1^25.^29.^11^26.^27.^~2, 3~^~02/01/2007~ -~10068~^~305~^237.^12^3.^~1~^~A~^^^1^213.^254.^11^228.^244.^~2, 3~^~02/01/2007~ -~10068~^~306~^367.^12^8.^~1~^~A~^^^1^321.^407.^11^348.^385.^~2, 3~^~02/01/2007~ -~10068~^~307~^45.^12^1.^~1~^~A~^^^1^39.^58.^11^41.^49.^~2, 3~^~02/01/2007~ -~10068~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10068~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~324~^23.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10068~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10068~^~601~^72.^12^2.^~1~^~A~^^^1^53.^87.^11^65.^78.^~2, 3~^~02/01/2007~ -~10069~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10069~^~301~^6.^12^0.^~1~^~A~^^^1^4.^9.^11^4.^6.^~2, 3~^~03/01/2007~ -~10069~^~304~^26.^12^0.^~1~^~A~^^^1^22.^28.^11^24.^27.^~2, 3~^~03/01/2007~ -~10069~^~305~^227.^12^3.^~1~^~A~^^^1^206.^251.^11^219.^235.^~2, 3~^~03/01/2007~ -~10069~^~306~^357.^12^6.^~1~^~A~^^^1^323.^399.^11^341.^372.^~2, 3~^~03/01/2007~ -~10069~^~307~^47.^12^1.^~1~^~A~^^^1^42.^54.^11^43.^49.^~2, 3~^~03/01/2007~ -~10069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10069~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10069~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10069~^~601~^79.^4^10.^~1~^~A~^^^1^62.^110.^3^45.^113.^~2, 3~^~03/01/2007~ -~10070~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~268~^987.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10070~^~301~^15.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~305~^182.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~306~^302.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~307~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10070~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10070~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~324~^70.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10070~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10070~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10070~^~601~^71.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~268~^1222.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10071~^~301~^24.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~305~^212.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~306~^329.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~307~^68.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10071~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10071~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~324~^61.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10071~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10071~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10071~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10072~^~268~^619.^0^^~4~^^^^^^^^^^^ -~10072~^~301~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~305~^202.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~306~^341.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~307~^76.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10072~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10072~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10072~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10072~^~601~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~268~^962.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10073~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~305~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~307~^75.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10073~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10073~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~324~^39.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10073~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10073~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10073~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10074~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~268~^806.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~305~^200.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~306~^413.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~318~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10074~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~208~^235.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~268~^985.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~305~^240.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~324~^45.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~417~^5.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~432~^5.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10075~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10076~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10076~^~268~^1326.^0^^~4~^^^^^^^^^^^ -~10076~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~304~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~305~^228.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~307~^70.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10076~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10076~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10076~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10076~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10077~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~301~^11.^6^1.^~1~^~A~^^^1^9.^16.^5^8.^14.^~2, 3~^~01/01/2011~ -~10077~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~2, 3~^~01/01/2011~ -~10077~^~305~^219.^6^6.^~1~^~A~^^^1^201.^241.^5^202.^236.^~2, 3~^~01/01/2011~ -~10077~^~306~^427.^6^11.^~1~^~A~^^^1^395.^462.^5^398.^454.^~2, 3~^~01/01/2011~ -~10077~^~307~^90.^6^1.^~1~^~A~^^^1^81.^93.^5^85.^94.^~2, 3~^~01/01/2011~ -~10077~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10077~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~324~^24.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~01/01/2011~ -~10077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10077~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10077~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~601~^62.^6^0.^~1~^~A~^^^1^60.^64.^5^59.^63.^~2, 3~^~01/01/2011~ -~10078~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~301~^16.^6^1.^~1~^~A~^^^1^12.^19.^5^12.^18.^~2, 3~^~01/01/2011~ -~10078~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~01/01/2011~ -~10078~^~305~^254.^6^3.^~1~^~A~^^^1^245.^271.^5^244.^264.^~2, 3~^~01/01/2011~ -~10078~^~306~^382.^6^15.^~1~^~A~^^^1^323.^418.^5^341.^422.^~2, 3~^~01/01/2011~ -~10078~^~307~^100.^6^1.^~1~^~A~^^^1^96.^107.^5^95.^103.^~2, 3~^~01/01/2011~ -~10078~^~318~^6.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10078~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~10/01/2004~ -~10078~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~10078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10078~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10078~^~601~^87.^6^4.^~1~^~A~^^^1^66.^101.^5^74.^99.^~2, 3~^~01/01/2011~ -~10079~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10079~^~268~^954.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10079~^~301~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~304~^20.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~305~^247.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~306~^351.^12^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~307~^80.^12^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10079~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~10079~^~324~^36.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10079~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10079~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10079~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10079~^~601~^95.^11^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10080~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~268~^778.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~305~^190.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10080~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~208~^267.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~268~^1116.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~301~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~324~^47.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10081~^~601~^98.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10082~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~268~^1084.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10082~^~301~^36.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~305~^210.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~306~^326.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~307~^69.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10082~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10082~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~324~^63.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10082~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10082~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10082~^~601~^95.^13^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~268~^1125.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10083~^~301~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~305~^197.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~306~^332.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~307~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10083~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10083~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~324~^54.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10083~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10083~^~601~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10084~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10084~^~301~^14.^12^1.^~1~^~A~^^^1^7.^26.^11^11.^17.^~2, 3~^~02/01/2007~ -~10084~^~304~^22.^12^0.^~1~^~A~^^^1^19.^24.^11^21.^22.^~2, 3~^~02/01/2007~ -~10084~^~305~^202.^12^3.^~1~^~A~^^^1^175.^220.^11^193.^210.^~2, 3~^~02/01/2007~ -~10084~^~306~^339.^12^5.^~1~^~A~^^^1^304.^380.^11^327.^351.^~2, 3~^~02/01/2007~ -~10084~^~307~^65.^12^1.^~1~^~A~^^^1^57.^73.^11^61.^68.^~2, 3~^~02/01/2007~ -~10084~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~417~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10084~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~10084~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~10084~^~601~^60.^12^4.^~1~^~A~^^^1^39.^92.^11^50.^69.^~2, 3~^~02/01/2007~ -~10085~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~268~^973.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10085~^~301~^25.^12^3.^~1~^~A~^^^1^13.^56.^11^17.^32.^~2, 3~^~02/01/2007~ -~10085~^~304~^24.^12^0.^~1~^~A~^^^1^21.^25.^11^23.^24.^~2, 3~^~02/01/2007~ -~10085~^~305~^217.^12^4.^~1~^~A~^^^1^188.^235.^11^207.^225.^~2, 3~^~02/01/2007~ -~10085~^~306~^318.^12^4.^~1~^~A~^^^1^283.^337.^11^307.^327.^~2, 3~^~02/01/2007~ -~10085~^~307~^60.^12^1.^~1~^~A~^^^1^53.^65.^11^58.^62.^~2, 3~^~02/01/2007~ -~10085~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~10085~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~324~^45.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~417~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10085~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~10085~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~10085~^~601~^100.^12^3.^~1~^~A~^^^1^85.^120.^11^92.^107.^~2, 3~^~02/01/2007~ -~10086~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~268~^950.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10086~^~301~^33.^5^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~305~^220.^5^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~306~^343.^5^10.^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~307~^74.^5^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10086~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10086~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~324~^48.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10086~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10086~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10086~^~601~^94.^13^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~268~^971.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10087~^~301~^27.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~305~^235.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~306~^427.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~307~^88.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10087~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10087~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~324~^41.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10087~^~432~^8.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10087~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10087~^~601~^85.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10088~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10088~^~301~^15.^12^0.^~1~^~A~^^^1^10.^23.^11^12.^17.^~2, 3~^~03/01/2007~ -~10088~^~304~^16.^12^0.^~1~^~A~^^^1^13.^19.^11^15.^17.^~2, 3~^~03/01/2007~ -~10088~^~305~^141.^12^5.^~1~^~A~^^^1^113.^173.^11^129.^152.^~2, 3~^~03/01/2007~ -~10088~^~306~^242.^12^8.^~1~^~A~^^^1^184.^289.^11^223.^259.^~2, 3~^~03/01/2007~ -~10088~^~307~^81.^12^3.^~1~^~A~^^^1^66.^101.^11^74.^88.^~2, 3~^~03/01/2007~ -~10088~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10088~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10088~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~324~^91.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10088~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10088~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10088~^~601~^80.^0^^~4~^~BFYN~^~10940~^^^^^^^^^~03/01/2007~ -~10089~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~268~^1661.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10089~^~301~^47.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~304~^24.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~305~^261.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~306~^320.^6^11.^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~307~^93.^5^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~318~^10.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10089~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~324~^104.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10089~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10089~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10089~^~601~^121.^6^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10093~^~208~^201.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~268~^839.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~305~^231.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~324~^31.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10093~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10094~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~301~^6.^6^0.^~1~^~A~^^^1^5.^10.^5^4.^8.^~2, 3~^~05/01/2014~ -~10094~^~304~^26.^6^0.^~1~^~A~^^^1^24.^27.^5^24.^26.^~2, 3~^~05/01/2014~ -~10094~^~305~^221.^6^7.^~1~^~A~^^^1^194.^243.^5^201.^239.^~2, 3~^~05/01/2014~ -~10094~^~306~^386.^6^12.^~1~^~A~^^^1^341.^434.^5^352.^419.^~2, 3~^~05/01/2014~ -~10094~^~307~^87.^6^18.^~1~^~A~^^^1^43.^143.^5^38.^135.^~2, 3~^~05/01/2014~ -~10094~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~10094~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~10094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~324~^23.^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~ -~10094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~417~^0.^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~ -~10094~^~431~^0.^0^^~4~^~BFPN~^~10040~^^^^^^^^^~01/01/2015~ -~10094~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~10094~^~435~^0.^0^^~4~^~NC~^~10040~^^^^^^^^^~01/01/2015~ -~10094~^~601~^56.^3^0.^~1~^~A~^^^1^54.^57.^2^51.^59.^~2, 3~^~05/01/2014~ -~10096~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10096~^~268~^531.^0^^~4~^^^^^^^^^^^ -~10096~^~301~^10.^3^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~304~^14.^3^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~305~^282.^3^15.^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~306~^258.^6^28.^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~307~^120.^5^12.^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10096~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10096~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10096~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10096~^~601~^2195.^27^249.^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10097~^~268~^577.^0^^~4~^^^^^^^^^^^ -~10097~^~301~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~305~^220.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~306~^195.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~307~^91.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10097~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10097~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10097~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10097~^~601~^2552.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10098~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~10098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10098~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~305~^48.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~306~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~307~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10098~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10098~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10098~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~10098~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10098~^~601~^154.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~208~^233.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~268~^975.^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10099~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~307~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10099~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10099~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10099~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10099~^~601~^277.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10100~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10100~^~268~^979.^0^^~4~^^^^^^^^^^^ -~10100~^~301~^21.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~306~^55.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~307~^191.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10100~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10100~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10100~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10100~^~601~^82.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10101~^~268~^695.^0^^~4~^^^^^^^^^^^ -~10101~^~301~^18.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~305~^24.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~306~^40.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~307~^167.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10101~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10101~^~417~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~10101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10101~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~10101~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10101~^~601~^90.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10102~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~10102~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~10102~^~301~^70.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~305~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~306~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~307~^132.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10102~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10102~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10102~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~10102~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~10102~^~601~^88.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10103~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~268~^494.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~10103~^~301~^5.^8^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~304~^19.^10^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~305~^169.^7^12.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~306~^294.^9^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~307~^56.^3^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~318~^25.^3^13.^~1~^^^^^^^^^^^~06/01/2005~ -~10103~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~10103~^~320~^8.^3^3.^~1~^^^^^^^^^^^~06/01/2005~ -~10103~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~417~^4.^4^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10103~^~432~^4.^4^1.^~1~^^^^^^^^^^^~06/01/2005~ -~10103~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~10103~^~601~^131.^32^12.^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10104~^~268~^619.^0^^~4~^^^^^^^^^^^ -~10104~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~304~^24.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~305~^178.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~306~^206.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~307~^35.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~318~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~319~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10104~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10104~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10104~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10104~^~601~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~208~^655.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~268~^2741.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~10105~^~301~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~304~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~305~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~306~^148.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~307~^25.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~318~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~10105~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~10105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10105~^~432~^1.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~10105~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~10105~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10106~^~268~^418.^0^^~4~^^^^^^^^^^^ -~10106~^~301~^9.^12^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~304~^17.^11^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~305~^204.^8^7.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~306~^229.^12^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~307~^121.^4^12.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~318~^198.^4^56.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~319~^59.^4^16.^~1~^^^^^^^^^^^~06/01/2002~ -~10106~^~320~^59.^4^16.^~1~^^^^^^^^^^^~06/01/2002~ -~10106~^~417~^42.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10106~^~432~^42.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10106~^~601~^319.^30^18.^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10107~^~268~^632.^0^^~4~^^^^^^^^^^^ -~10107~^~301~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~305~^240.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~306~^143.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~307~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~318~^260.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~319~^78.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10107~^~320~^78.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10107~^~417~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10107~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10107~^~601~^480.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~208~^857.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10109~^~268~^3586.^0^^~4~^^^^^^^^^^^ -~10109~^~301~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~304~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~305~^19.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~306~^31.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~10109~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~10109~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10109~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10109~^~601~^110.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10110~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10110~^~268~^561.^0^^~4~^^^^^^^^^^^ -~10110~^~301~^9.^10^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~304~^18.^11^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~305~^288.^8^21.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~306~^273.^11^10.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~307~^87.^3^15.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~318~^21650.^13^3334.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~319~^6502.^13^1001.^~1~^^^^^^^^^^^~06/01/2002~ -~10110~^~320~^6502.^13^1001.^~1~^^^^^^^^^^^~06/01/2002~ -~10110~^~417~^212.^7^36.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10110~^~432~^212.^7^36.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~435~^212.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10110~^~601~^301.^109^5.^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10111~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10111~^~268~^690.^0^^~4~^^^^^^^^^^^ -~10111~^~301~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~305~^241.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~306~^150.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~318~^17997.^6^2883.^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~319~^5405.^6^865.^~1~^^^^^^^^^^^~06/01/2002~ -~10111~^~320~^5405.^6^865.^~1~^^^^^^^^^^^~06/01/2002~ -~10111~^~417~^163.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10111~^~432~^163.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10111~^~601~^355.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10112~^~268~^356.^0^^~4~^^^^^^^^^^^ -~10112~^~301~^7.^14^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~304~^14.^13^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~305~^196.^14^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~306~^303.^16^16.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~307~^153.^15^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10112~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10112~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10112~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10112~^~601~^320.^28^20.^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10113~^~268~^414.^0^^~4~^^^^^^^^^^^ -~10113~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~305~^186.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~306~^151.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~307~^81.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10113~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10113~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10113~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10113~^~601~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10114~^~268~^1272.^0^^~4~^^^^^^^^^^^ -~10114~^~301~^315.^23^22.^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~304~^16.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~305~^200.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~306~^298.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~307~^50.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~318~^10.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~319~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~10114~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~10114~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10114~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10114~^~601~^77.^6^11.^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10115~^~268~^833.^0^^~4~^^^^^^^^^^^ -~10115~^~301~^11.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~304~^17.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~305~^234.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~306~^197.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~307~^44.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10115~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10115~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10115~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10115~^~601~^193.^6^10.^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10116~^~268~^916.^0^^~4~^^^^^^^^^^^ -~10116~^~301~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~305~^291.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~306~^168.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10116~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10116~^~417~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10116~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10116~^~601~^315.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10117~^~268~^418.^0^^~4~^^^^^^^^^^^ -~10117~^~301~^10.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~304~^13.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~305~^260.^10^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~306~^396.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~307~^98.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10117~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~10117~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10117~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10117~^~601~^363.^8^32.^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10118~^~268~^623.^0^^~4~^^^^^^^^^^^ -~10118~^~301~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~304~^15.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~305~^283.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~306~^227.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~307~^107.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10118~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10118~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10118~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10118~^~601~^504.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10119~^~208~^159.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~268~^665.^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10119~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~305~^130.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~306~^140.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~307~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10119~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10119~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~10119~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10119~^~601~^223.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10120~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~268~^929.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10120~^~301~^46.^12^3.^~1~^~A~^^^1^25.^58.^11^38.^52.^~2, 3~^~04/01/2010~ -~10120~^~304~^21.^12^0.^~1~^~A~^^^1^18.^24.^11^19.^22.^~2, 3~^~04/01/2010~ -~10120~^~305~^237.^12^5.^~1~^~A~^^^1^200.^271.^11^224.^249.^~2, 3~^~04/01/2010~ -~10120~^~306~^335.^12^9.^~1~^~A~^^^1^266.^379.^11^314.^354.^~2, 3~^~04/01/2010~ -~10120~^~307~^88.^12^1.^~1~^~A~^^^1^77.^97.^11^84.^91.^~2, 3~^~04/01/2010~ -~10120~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10120~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10120~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10120~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10120~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10120~^~601~^82.^6^1.^~1~^~A~^^^1^75.^88.^5^77.^86.^~2, 3~^~04/01/2010~ -~10121~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~268~^941.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~10121~^~301~^16.^6^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~304~^18.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~305~^193.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~306~^243.^5^20.^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~307~^110.^3^17.^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~10121~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~10121~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~10121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10121~^~432~^4.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~10121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~10121~^~601~^101.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10122~^~268~^1134.^0^^~4~^^^^^^^^^^^ -~10122~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~305~^174.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~306~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~307~^109.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10122~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10122~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10122~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10122~^~601~^146.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~636~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10123~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~301~^6.^18^0.^~1~^~A~^^^1^3.^12.^13^5.^6.^~2, 3~^~03/01/2016~ -~10123~^~304~^13.^18^0.^~1~^~A~^^^1^8.^16.^9^11.^14.^~2, 3~^~03/01/2016~ -~10123~^~305~^166.^18^4.^~1~^~A~^^^1^111.^207.^10^154.^176.^~2, 3~^~03/01/2016~ -~10123~^~306~^201.^18^8.^~1~^~A~^^^1^137.^255.^10^182.^218.^~2, 3~^~03/01/2016~ -~10123~^~307~^751.^18^22.^~1~^~A~^^^1^560.^1080.^9^700.^802.^~2, 3~^~03/01/2016~ -~10123~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10123~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~08/01/2004~ -~10123~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~324~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10123~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2012~ -~10123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10123~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~10123~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10123~^~601~^66.^18^1.^~1~^~A~^^^1^54.^76.^13^62.^69.^~2, 3~^~05/01/2012~ -~10128~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10128~^~268~^1623.^0^^~4~^^^^^^^^^^^ -~10128~^~301~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~304~^12.^6^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~305~^137.^6^17.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~306~^204.^6^11.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~307~^987.^6^40.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10128~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10128~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10128~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10128~^~601~^69.^4^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10130~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~268~^461.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10130~^~301~^6.^5^0.^~1~^~A~^^^1^4.^9.^1^2.^8.^~2, 3~^~04/01/2013~ -~10130~^~304~^20.^5^0.^~1~^~A~^^^1^17.^23.^2^17.^23.^~2, 3~^~04/01/2013~ -~10130~^~305~^240.^5^2.^~1~^~A~^^^1^215.^284.^2^229.^250.^~2, 3~^~05/01/2015~ -~10130~^~306~^683.^5^6.^~1~^~A~^^^1^278.^927.^1^631.^734.^~2, 3~^~05/01/2015~ -~10130~^~307~^751.^5^19.^~1~^~A~^^^1^653.^885.^1^505.^996.^~2, 3~^~05/01/2015~ -~10130~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/1992~ -~10130~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~10130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10130~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/1992~ -~10130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10130~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10130~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10130~^~601~^48.^3^^~1~^~A~^^^1^47.^50.^^^^~2, 3~^~04/01/2013~ -~10132~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10132~^~301~^32.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~305~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~306~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~307~^946.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~10132~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10132~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~324~^16.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10132~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10132~^~601~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~10134~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~268~^607.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10134~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~305~^196.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~306~^287.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~307~^1203.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10134~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10134~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10134~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10134~^~601~^53.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10136~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~268~^745.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10136~^~301~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~304~^22.^3^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~305~^281.^3^5.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~306~^409.^3^15.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~307~^1500.^3^86.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10136~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10136~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10136~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10136~^~601~^59.^3^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10137~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~268~^502.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~10137~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~304~^17.^21^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~305~^224.^21^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~306~^364.^17^6.^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~307~^1255.^21^39.^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10137~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10137~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~324~^93.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10137~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10137~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~10137~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~10137~^~601~^38.^2^^~1~^^^^^^^^^^^~02/01/2009~ -~10137~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10138~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10138~^~268~^569.^0^^~4~^^^^^^^^^^^ -~10138~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~304~^21.^4^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~305~^209.^4^21.^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~306~^348.^4^25.^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~307~^1135.^4^100.^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10138~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10138~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10138~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10138~^~601~^30.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10140~^~268~^946.^0^^~4~^^^^^^^^^^^ -~10140~^~301~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~304~^17.^4^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~305~^243.^4^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~306~^357.^4^10.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~307~^941.^4^82.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10140~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10140~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10140~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10140~^~601~^62.^4^13.^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10141~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~268~^816.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10141~^~301~^10.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~304~^25.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~305~^318.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~306~^510.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~307~^2695.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10141~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10141~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~324~^37.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~417~^5.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~03/01/2006~ -~10141~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10141~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10141~^~601~^70.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10142~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10142~^~268~^849.^0^^~4~^^^^^^^^^^^ -~10142~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~304~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~305~^215.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~307~^1386.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10142~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10142~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10142~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10142~^~601~^54.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10146~^~268~^1318.^0^^~4~^^^^^^^^^^^ -~10146~^~301~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~304~^10.^3^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~305~^149.^4^26.^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~306~^239.^3^54.^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~307~^1088.^4^60.^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10146~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10146~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10146~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10146~^~601~^70.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~208~^122.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~268~^510.^0^^~4~^^^^^^^^^^^ -~10149~^~301~^4.^20^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~304~^19.^46^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~305~^260.^46^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~306~^325.^53^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~307~^1269.^52^18.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10149~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10149~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10149~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10149~^~601~^45.^11^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~268~^1029.^0^^~4~^^^^^^^^^^^~08/01/2004~ -~10150~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~304~^15.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~305~^201.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~306~^310.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~307~^1284.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~10150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~417~^1.^0^^~4~^~BFZN~^~10859~^^^^^^^^^~01/01/2003~ -~10150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10150~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2004~ -~10150~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~10150~^~601~^56.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10152~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~268~^615.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10152~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~305~^232.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~306~^371.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~307~^1516.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10152~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~324~^27.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10152~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10152~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10152~^~601~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10153~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~268~^657.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10153~^~301~^7.^21^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~304~^22.^21^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~305~^227.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~306~^316.^21^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~307~^1327.^21^80.^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10153~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10153~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10153~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10153~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10153~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10153~^~601~^55.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10163~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~268~^677.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~301~^6.^6^0.^~1~^~A~^^^1^5.^7.^5^5.^7.^~2, 3~^~05/01/2014~ -~10163~^~304~^27.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^28.^~2, 3~^~05/01/2014~ -~10163~^~305~^242.^6^6.^~1~^~A~^^^1^219.^265.^5^224.^259.^~2, 3~^~05/01/2014~ -~10163~^~306~^407.^6^14.^~1~^~A~^^^1^362.^458.^5^368.^444.^~2, 3~^~05/01/2014~ -~10163~^~307~^91.^6^18.^~1~^~A~^^^1^39.^158.^5^42.^139.^~2, 3~^~05/01/2014~ -~10163~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~10163~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10163~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~10163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~324~^29.^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~ -~10163~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~417~^0.^0^^~4~^~BFNN~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~431~^0.^0^^~4~^~BFNN~^~10040~^^^^^^^^^~01/01/2015~ -~10163~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2014~ -~10163~^~435~^0.^0^^~4~^~NC~^~10040~^^^^^^^^^~01/01/2015~ -~10163~^~601~^74.^3^2.^~1~^~A~^^^1^70.^77.^2^64.^83.^~2, 3~^~05/01/2014~ -~10164~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10164~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~268~^842.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10164~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~307~^82.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~318~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10164~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10165~^~208~^748.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~268~^3130.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10165~^~301~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~304~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~305~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~306~^66.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~307~^2684.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~10165~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10165~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~324~^9.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10165~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10165~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10165~^~601~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10165~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~268~^2423.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10166~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~304~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~305~^98.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~306~^105.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~307~^505.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~324~^8.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10166~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10166~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10166~^~601~^68.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~208~^591.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10167~^~268~^2473.^0^^~4~^^^^^^^^^^^ -~10167~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~304~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~305~^160.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~306~^164.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~307~^624.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10167~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10167~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10167~^~432~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10167~^~601~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10168~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~268~^1172.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10168~^~301~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~305~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~306~^258.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~307~^1072.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10168~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10168~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10168~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~324~^29.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10168~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10168~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10168~^~601~^58.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10169~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~268~^711.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10169~^~301~^11.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~304~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~305~^243.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~306~^292.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~307~^1231.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10169~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~324~^35.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10169~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10169~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10169~^~601~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10170~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10170~^~268~^1125.^0^^~4~^^^^^^^^^^^ -~10170~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~304~^13.^4^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~305~^199.^8^6.^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~306~^295.^6^31.^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~307~^1250.^6^190.^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10170~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10170~^~417~^3.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10170~^~432~^3.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10170~^~601~^53.^4^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10171~^~268~^1201.^0^^~4~^^^^^^^^^^^ -~10171~^~301~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~304~^13.^4^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~305~^156.^4^22.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~306~^194.^4^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~307~^973.^4^30.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10171~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10171~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10171~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10171~^~601~^67.^4^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10173~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~268~^998.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10173~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~305~^82.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~306~^33.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10173~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10173~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~10173~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~10173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10173~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~10173~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~10173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10173~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10173~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10173~^~601~^107.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10174~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10174~^~268~^1582.^0^^~4~^^^^^^^^^^^ -~10174~^~301~^18.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~305~^50.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~306~^349.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~307~^63.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10174~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10174~^~417~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10174~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10174~^~601~^97.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10175~^~268~^1657.^0^^~4~^^^^^^^^^^^ -~10175~^~301~^14.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~305~^47.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~306~^157.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~307~^25.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10175~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10175~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10175~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10175~^~601~^129.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10176~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10176~^~301~^51.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~304~^24.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~305~^268.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~306~^378.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~307~^99.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10176~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~ -~10176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10176~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10176~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10176~^~601~^78.^6^1.^~1~^~A~^^^1^74.^84.^5^74.^82.^~2, 3~^~05/01/2010~ -~10177~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~268~^882.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10177~^~301~^45.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~304~^21.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~305~^237.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~306~^335.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~307~^88.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10177~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~417~^0.^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10177~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10177~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10177~^~601~^77.^6^1.^~1~^~A~^^^1^73.^81.^5^74.^80.^~2, 3~^~05/01/2010~ -~10178~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~268~^1072.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~301~^48.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~305~^226.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~307~^85.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~318~^17.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~ -~10178~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~ -~10178~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~324~^27.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10178~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~208~^238.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~268~^997.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~301~^53.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~305~^251.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~306~^353.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~307~^94.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~318~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10179~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~268~^1072.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~301~^48.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~305~^222.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~306~^313.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~307~^84.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~318~^18.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10180~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10181~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10181~^~301~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^9.^~2, 3~^~04/01/2010~ -~10181~^~304~^26.^6^0.^~1~^~A~^^^1^25.^27.^5^25.^26.^~2, 3~^~04/01/2010~ -~10181~^~305~^293.^6^3.^~1~^~A~^^^1^285.^306.^5^283.^302.^~2, 3~^~04/01/2010~ -~10181~^~306~^390.^6^5.^~1~^~A~^^^1^374.^409.^5^374.^404.^~2, 3~^~04/01/2010~ -~10181~^~307~^87.^6^1.^~1~^~A~^^^1^83.^92.^5^84.^90.^~2, 3~^~04/01/2010~ -~10181~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10181~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~04/01/2010~ -~10181~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~ -~10181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10181~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~10181~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10181~^~601~^69.^6^1.^~1~^~A~^^^1^65.^72.^5^66.^71.^~2, 3~^~04/01/2010~ -~10182~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~268~^678.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10182~^~301~^7.^6^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~304~^18.^28^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~305~^236.^31^7.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~306~^297.^70^6.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~307~^1278.^74^31.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10182~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10182~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10182~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~324~^26.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10182~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10182~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10182~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10182~^~601~^53.^19^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10183~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10183~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~305~^248.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~306~^362.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~307~^1385.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10183~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10183~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10183~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10183~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10183~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10183~^~601~^57.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10183~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10184~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~268~^602.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10184~^~301~^6.^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~304~^16.^32^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~305~^207.^32^6.^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~306~^334.^28^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~307~^1276.^36^32.^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10184~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~324~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10184~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10184~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10184~^~601~^38.^5^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10185~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~268~^699.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10185~^~301~^7.^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~304~^20.^8^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~305~^221.^8^14.^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~306~^351.^8^17.^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~307~^1068.^8^71.^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10185~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10185~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~324~^30.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~417~^5.^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10185~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~10185~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10185~^~601~^41.^6^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10186~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~268~^821.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~305~^283.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~306~^376.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~324~^23.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10186~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10187~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10187~^~268~^904.^0^^~4~^^^^^^^^^^^ -~10187~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~305~^200.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~306~^335.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~307~^55.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10187~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10187~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10187~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10187~^~601~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10188~^~208~^238.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~268~^995.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2009~ -~10188~^~306~^341.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~324~^38.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10188~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10189~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10189~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~268~^958.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10189~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~306~^366.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~318~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10189~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10192~^~208~^224.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~268~^936.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~305~^154.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~307~^87.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~318~^22.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~319~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~320~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10192~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10193~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~268~^1223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10193~^~301~^46.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~306~^240.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~307~^94.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10193~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~324~^48.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~10193~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10194~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10194~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~305~^193.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~306~^384.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~318~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10194~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~10194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10194~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~324~^54.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10194~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10194~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10194~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10194~^~601~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10195~^~268~^1067.^0^^~4~^^^^^^^^^^^ -~10195~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~304~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~305~^172.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~306~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~307~^40.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10195~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10195~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10195~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10195~^~601~^73.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10196~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~10196~^~301~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~305~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~306~^401.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~307~^62.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10196~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10196~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10196~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10196~^~601~^82.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~10197~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~268~^1142.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10197~^~301~^11.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~304~^24.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~305~^228.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~306~^428.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~307~^50.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~318~^7.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10197~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10197~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~324~^34.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10197~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~417~^7.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10197~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10197~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10197~^~601~^73.^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~636~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10198~^~268~^1054.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10198~^~301~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~305~^214.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~318~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10198~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~10198~^~324~^43.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10198~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10198~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10198~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10198~^~601~^81.^15^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10199~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~268~^636.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10199~^~301~^5.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~304~^22.^26^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~305~^207.^5^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~306~^421.^146^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~307~^45.^164^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~318~^6.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~10199~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10199~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10199~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~324~^25.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~417~^7.^4^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10199~^~432~^7.^4^1.^~1~^^^^^^^^^^^~03/01/2009~ -~10199~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10199~^~601~^55.^58^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10200~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~305~^173.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~306~^405.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~307~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10200~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10200~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~324~^35.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10200~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10200~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10200~^~601~^71.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10201~^~268~^904.^0^^~4~^^^^^^^^^^^ -~10201~^~301~^31.^5^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~304~^28.^8^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~305~^245.^6^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~306~^420.^17^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~307~^65.^17^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~318~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~319~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10201~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10201~^~417~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10201~^~432~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10201~^~601~^81.^15^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10202~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~268~^937.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10202~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~304~^27.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~305~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~306~^454.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~307~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~ -~10202~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~ -~10202~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10202~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10202~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10202~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10202~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10202~^~601~^70.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~636~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10203~^~268~^895.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10203~^~301~^6.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~305~^222.^5^5.^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~306~^363.^5^7.^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~307~^50.^5^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10203~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~10203~^~324~^29.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10203~^~417~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10203~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10203~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10203~^~601~^83.^15^3.^~1~^^^^^^^^^^^~12/01/1992~ -~10204~^~208~^189.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~268~^792.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10204~^~601~^74.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~208~^273.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~268~^1141.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~301~^34.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~324~^50.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10205~^~601~^103.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10206~^~208~^359.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~268~^1500.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~301~^25.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10206~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~306~^322.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~307~^52.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10206~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10206~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10206~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~324~^72.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10206~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~417~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~432~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10206~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10207~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~268~^584.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10207~^~301~^21.^12^2.^~1~^~A~^^^1^7.^32.^11^16.^25.^~2, 3~^~03/01/2007~ -~10207~^~304~^23.^12^0.^~1~^~A~^^^1^19.^25.^11^21.^23.^~2, 3~^~03/01/2007~ -~10207~^~305~^204.^12^3.^~1~^~A~^^^1^182.^219.^11^196.^211.^~2, 3~^~03/01/2007~ -~10207~^~306~^338.^12^4.^~1~^~A~^^^1^312.^367.^11^327.^348.^~2, 3~^~03/01/2007~ -~10207~^~307~^67.^12^1.^~1~^~A~^^^1^57.^78.^11^63.^70.^~2, 3~^~03/01/2007~ -~10207~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10207~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10207~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2009~ -~10207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10207~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~10207~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10207~^~601~^74.^0^^~4~^~BFYN~^~10208~^^^^^^^^^~03/01/2007~ -~10208~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~268~^1034.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10208~^~301~^33.^12^3.^~1~^~A~^^^1^10.^54.^11^25.^41.^~2, 3~^~03/01/2007~ -~10208~^~304~^23.^12^0.^~1~^~A~^^^1^21.^26.^11^22.^24.^~2, 3~^~03/01/2007~ -~10208~^~305~^208.^12^4.^~1~^~A~^^^1^182.^230.^11^197.^217.^~2, 3~^~03/01/2007~ -~10208~^~306~^297.^12^5.^~1~^~A~^^^1^262.^319.^11^284.^308.^~2, 3~^~03/01/2007~ -~10208~^~307~^60.^12^1.^~1~^~A~^^^1^47.^70.^11^55.^64.^~2, 3~^~03/01/2007~ -~10208~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10208~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10208~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~324~^49.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10208~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~ -~10208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10208~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10208~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10208~^~601~^105.^4^11.^~1~^~A~^^^1^72.^125.^3^67.^142.^~2, 3~^~03/01/2007~ -~10209~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10209~^~301~^31.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~304~^22.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~305~^235.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~306~^390.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~307~^91.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10209~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10209~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~ -~10209~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10209~^~601~^99.^6^1.^~1~^~A~^^^1^95.^104.^5^94.^102.^~2, 3~^~02/01/2011~ -~10210~^~208~^133.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~268~^555.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~305~^247.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~306~^354.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10210~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10211~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~268~^714.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10211~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~305~^291.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~306~^411.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~307~^56.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10211~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10211~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~324~^15.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10211~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~208~^170.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~268~^712.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10212~^~305~^292.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~306~^420.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2004~ -~10212~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10212~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10212~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~208~^192.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~268~^805.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~305~^304.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~306~^398.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10213~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10213~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10213~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10214~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~301~^9.^12^0.^~1~^~A~^^^1^8.^10.^11^8.^9.^~2, 3~^~02/01/2011~ -~10214~^~304~^23.^12^0.^~1~^~A~^^^1^19.^26.^11^21.^23.^~2, 3~^~02/01/2011~ -~10214~^~305~^251.^12^4.^~1~^~A~^^^1^222.^283.^11^240.^261.^~2, 3~^~02/01/2011~ -~10214~^~306~^354.^12^4.^~1~^~A~^^^1^333.^380.^11^343.^365.^~2, 3~^~02/01/2011~ -~10214~^~307~^63.^12^0.^~1~^~A~^^^1^58.^66.^11^61.^64.^~2, 3~^~02/01/2011~ -~10214~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10214~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10214~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10214~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~02/01/2011~ -~10214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10214~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~ -~10214~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~601~^63.^6^1.^~1~^~A~^^^1^57.^66.^5^58.^66.^~2, 3~^~12/01/1992~ -~10215~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10215~^~301~^11.^12^0.^~1~^~A~^^^1^9.^14.^11^9.^11.^~2, 3~^~01/01/2011~ -~10215~^~304~^25.^12^0.^~1~^~A~^^^1^23.^27.^11^24.^26.^~2, 3~^~01/01/2011~ -~10215~^~305~^294.^12^4.^~1~^~A~^^^1^265.^326.^11^283.^305.^~2, 3~^~01/01/2011~ -~10215~^~306~^416.^12^8.^~1~^~A~^^^1^368.^453.^11^396.^434.^~2, 3~^~01/01/2011~ -~10215~^~307~^56.^12^0.^~1~^~A~^^^1^51.^59.^11^54.^58.^~2, 3~^~01/01/2011~ -~10215~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10215~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10215~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~324~^14.^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~417~^0.^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10215~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10215~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10215~^~601~^80.^6^1.^~1~^~A~^^^1^72.^85.^5^74.^84.^~2, 3~^~01/01/2011~ -~10216~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~301~^11.^12^0.^~1~^~A~^^^1^10.^12.^11^10.^11.^~2, 3~^~01/01/2011~ -~10216~^~304~^27.^12^0.^~1~^~A~^^^1^23.^30.^11^25.^28.^~2, 3~^~12/01/1992~ -~10216~^~305~^296.^12^3.^~1~^~A~^^^1^275.^324.^11^286.^304.^~2, 3~^~01/01/2011~ -~10216~^~306~^425.^12^10.^~1~^~A~^^^1^376.^479.^11^401.^449.^~2, 3~^~01/01/2011~ -~10216~^~307~^66.^12^0.^~1~^~A~^^^1^61.^70.^11^63.^67.^~2, 3~^~01/01/2011~ -~10216~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10216~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~324~^25.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10216~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10216~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~601~^76.^6^1.^~1~^~A~^^^1^72.^81.^5^72.^80.^~2, 3~^~01/01/2011~ -~10217~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~268~^743.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~301~^12.^12^0.^~1~^~A~^^^1^11.^16.^11^11.^13.^~2, 3~^~01/01/2011~ -~10217~^~304~^28.^12^0.^~1~^~A~^^^1^24.^31.^11^26.^29.^~2, 3~^~01/01/2011~ -~10217~^~305~^311.^12^7.^~1~^~A~^^^1^269.^350.^11^293.^327.^~2, 3~^~01/01/2011~ -~10217~^~306~^408.^12^8.^~1~^~A~^^^1^364.^460.^11^388.^426.^~2, 3~^~01/01/2011~ -~10217~^~307~^66.^12^1.^~1~^~A~^^^1^57.^76.^11^62.^69.^~2, 3~^~01/01/2011~ -~10217~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~ -~10217~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~324~^24.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10217~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10217~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~601~^84.^6^2.^~1~^~A~^^^1^72.^89.^5^76.^91.^~2, 3~^~01/01/2011~ -~10218~^~208~^120.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~268~^502.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~305~^243.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~306~^393.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~307~^52.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~318~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10218~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10219~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10219~^~268~^1100.^0^^~4~^^^^^^^^^^^ -~10219~^~301~^14.^5^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~304~^19.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~305~^175.^5^6.^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~306~^287.^5^9.^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~307~^56.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~318~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~319~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10219~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~10219~^~417~^5.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10219~^~432~^5.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10219~^~601~^72.^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~268~^1243.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~10220~^~301~^22.^5^4.^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~305~^226.^5^5.^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~306~^362.^5^8.^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~307~^73.^4^2.^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~318~^8.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~10220~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~10220~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10220~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10220~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~10220~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10220~^~601~^94.^13^1.^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10221~^~268~^841.^0^^~4~^^^^^^^^^^^ -~10221~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~305~^290.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~306~^444.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~307~^64.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10221~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10221~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10221~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10221~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10222~^~208~^147.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~268~^615.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~305~^265.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~306~^419.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~318~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10222~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10222~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10223~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10223~^~268~^782.^0^^~4~^^^^^^^^^^^ -~10223~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~304~^36.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~305~^295.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~306~^451.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~307~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10223~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10223~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10223~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10223~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10224~^~208~^166.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~268~^696.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~306~^358.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~307~^47.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10224~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10225~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10225~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~03/01/2007~ -~10225~^~304~^26.^12^0.^~1~^~A~^^^1^23.^28.^11^24.^26.^~2, 3~^~03/01/2007~ -~10225~^~305~^225.^12^3.^~1~^~A~^^^1^207.^244.^11^218.^231.^~2, 3~^~03/01/2007~ -~10225~^~306~^374.^12^3.^~1~^~A~^^^1^355.^399.^11^366.^381.^~2, 3~^~03/01/2007~ -~10225~^~307~^49.^12^1.^~1~^~A~^^^1^42.^59.^11^45.^52.^~2, 3~^~03/01/2007~ -~10225~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10225~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~10225~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10225~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10225~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~10225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~10225~^~601~^63.^0^^~4~^~BFYN~^~10069~^^^^^^^^^~05/01/2007~ -~10226~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~268~^741.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~307~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~10226~^~601~^65.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~208~^235.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~268~^981.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~324~^38.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10227~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10228~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10228~^~268~^602.^0^^~4~^^^^^^^^^^^ -~10228~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~305~^209.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~306~^384.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~307~^54.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10228~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10228~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10228~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10228~^~601~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10229~^~268~^883.^0^^~4~^^^^^^^^^^^ -~10229~^~301~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~305~^234.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~306~^377.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~307~^57.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10229~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~10229~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~10229~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~10229~^~601~^85.^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10851~^~208~^106.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10851~^~268~^444.^0^^~9~^^^^^^^^^^^ -~10851~^~301~^4.^10^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~304~^20.^10^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~306~^319.^9^5.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~307~^1038.^20^43.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~318~^0.^10^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~601~^51.^19^2.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~208~^119.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10852~^~268~^499.^0^^~9~^^^^^^^^^^^ -~10852~^~301~^7.^7^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~304~^22.^8^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~306~^536.^8^58.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~307~^413.^15^89.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~318~^0.^8^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~601~^46.^8^10.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~208~^110.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10853~^~268~^461.^0^^~9~^^^^^^^^^^^ -~10853~^~301~^14.^9^4.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~304~^21.^9^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~306~^586.^9^27.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~307~^594.^18^36.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~318~^0.^9^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~601~^47.^9^3.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10854~^~208~^118.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10854~^~268~^492.^0^^~9~^^^^^^^^^^^ -~10854~^~301~^6.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10854~^~304~^20.^5^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10854~^~306~^542.^5^60.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10854~^~307~^590.^19^77.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~601~^42.^12^2.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~208~^167.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10855~^~268~^699.^0^^~9~^^^^^^^^^^^ -~10855~^~301~^14.^5^4.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~304~^21.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~306~^307.^5^4.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~307~^378.^10^47.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~601~^52.^7^2.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~208~^145.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10856~^~268~^609.^0^^~9~^^^^^^^^^^^ -~10856~^~301~^4.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~304~^21.^5^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~306~^310.^5^14.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~307~^358.^10^40.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~601~^49.^5^5.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~208~^122.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~ -~10857~^~268~^511.^0^^~9~^^^^^^^^^^^ -~10857~^~301~^6.^6^1.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~304~^19.^6^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~306~^279.^6^12.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~307~^1016.^12^29.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~318~^0.^6^0.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~601~^49.^6^3.^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10858~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10858~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10858~^~301~^10.^4^3.^~1~^~A~^^^1^5.^21.^3^-2.^22.^~2, 3~^~02/01/2003~ -~10858~^~304~^28.^4^0.^~1~^~A~^^^1^26.^30.^3^24.^30.^~2, 3~^~02/01/2003~ -~10858~^~305~^320.^4^6.^~1~^~A~^^^1^303.^335.^3^298.^341.^~2, 3~^~02/01/2003~ -~10858~^~306~^517.^4^49.^~1~^~A~^^^1^379.^606.^3^360.^673.^~2, 3~^~02/01/2003~ -~10858~^~307~^209.^4^26.^~1~^~A~^^^1^141.^272.^3^122.^294.^~2, 3~^~02/01/2003~ -~10858~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~10858~^~319~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~10858~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~02/01/2003~ -~10858~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10858~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10858~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10858~^~601~^75.^4^3.^~1~^~A~^^^1^68.^85.^3^63.^86.^~2, 3~^~02/01/2003~ -~10859~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~10859~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~268~^796.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~10859~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~305~^317.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~306~^512.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~307~^205.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10859~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10860~^~208~^548.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~268~^2293.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~301~^10.^4^0.^~1~^~A~^^^1^10.^12.^3^9.^11.^~2, 3~^~02/01/2003~ -~10860~^~304~^30.^4^1.^~1~^~A~^^^1^27.^34.^3^25.^34.^~2, 3~^~02/01/2003~ -~10860~^~305~^506.^4^10.^~1~^~A~^^^1^480.^529.^3^470.^540.^~2, 3~^~02/01/2003~ -~10860~^~306~^539.^4^20.^~1~^~A~^^^1^512.^600.^3^472.^604.^~2, 3~^~02/01/2003~ -~10860~^~307~^2193.^4^73.^~1~^~A~^^^1^1990.^2330.^3^1959.^2425.^~2, 3~^~02/01/2003~ -~10860~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~10860~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~10860~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~417~^2.^2^^~1~^~A~^^^1^2.^2.^^^^^~02/01/2003~ -~10860~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10860~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10860~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~601~^107.^4^1.^~1~^~A~^^^1^103.^112.^3^100.^112.^~2, 3~^~02/01/2003~ -~10861~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~268~^1992.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~301~^13.^18^0.^~1~^~A~^^^1^10.^19.^13^12.^14.^~2, 3~^~05/01/2012~ -~10861~^~304~^34.^18^0.^~1~^~A~^^^1^30.^37.^13^32.^34.^~2, 3~^~05/01/2012~ -~10861~^~305~^389.^18^5.^~1~^~A~^^^1^269.^483.^10^376.^402.^~2, 3~^~05/01/2012~ -~10861~^~306~^525.^18^6.^~1~^~A~^^^1^476.^588.^10^509.^540.^~2, 3~^~05/01/2012~ -~10861~^~307~^1783.^18^27.^~1~^~A~^^^1^1510.^2030.^13^1722.^1843.^~2, 3~^~05/01/2012~ -~10861~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10861~^~601~^111.^18^1.^~1~^~A~^^^1^94.^128.^7^106.^115.^~2, 3~^~05/01/2012~ -~10862~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~268~^1958.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~301~^11.^18^0.^~1~^~A~^^^1^9.^17.^9^10.^12.^~2, 3~^~05/01/2013~ -~10862~^~304~^31.^18^0.^~1~^~A~^^^1^28.^37.^6^29.^32.^~2, 3~^~05/01/2012~ -~10862~^~305~^388.^18^4.^~1~^~A~^^^1^273.^447.^10^379.^397.^~2, 3~^~05/01/2013~ -~10862~^~306~^499.^18^9.^~1~^~A~^^^1^440.^580.^7^475.^521.^~2, 3~^~05/01/2013~ -~10862~^~307~^1684.^18^34.^~1~^~A~^^^1^1340.^1910.^7^1603.^1764.^~2, 3~^~06/01/2013~ -~10862~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~10862~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~10862~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2012~ -~10862~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~10862~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~10862~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10862~^~601~^99.^18^1.^~1~^~A~^^^1^81.^117.^10^94.^102.^~2, 3~^~05/01/2013~ -~10863~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~10863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~10863~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~305~^129.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~306~^85.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10863~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~10863~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10863~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~10863~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~10863~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10863~^~601~^316.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10864~^~208~^898.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10864~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~268~^3756.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10864~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~306~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~10864~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~10864~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~417~^0.^0^^~4~^~BFNN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10864~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2006~ -~10864~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10864~^~601~^97.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10865~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10865~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10865~^~301~^8.^2^^~1~^~A~^^^1^7.^10.^1^^^^~03/01/2006~ -~10865~^~304~^18.^2^^~1~^~A~^^^1^17.^19.^1^^^^~03/01/2006~ -~10865~^~305~^246.^2^^~1~^~A~^^^1^240.^251.^1^^^^~03/01/2006~ -~10865~^~306~^250.^2^^~1~^~A~^^^1^227.^272.^1^^^^~03/01/2006~ -~10865~^~307~^1150.^2^^~1~^~A~^^^1^1090.^1210.^1^^^^~03/01/2006~ -~10865~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10865~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10865~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~417~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~432~^4.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10865~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10865~^~601~^62.^5^4.^~1~^~A~^^^1^55.^76.^4^50.^73.^~2, 3~^~03/01/2006~ -~10866~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10866~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~305~^235.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~306~^205.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~307~^1170.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10866~^~319~^9.^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10866~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~417~^3.^0^^~4~^~BFPN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~431~^0.^0^^~4~^~BFPN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2006~ -~10866~^~435~^3.^0^^~4~^~NC~^~10865~^^^^^^^^^~07/01/2008~ -~10866~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10867~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~268~^537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10867~^~301~^9.^3^0.^~1~^~A~^^^1^8.^11.^2^5.^12.^~2, 3~^~03/01/2006~ -~10867~^~304~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^14.^21.^~2, 3~^~03/01/2006~ -~10867~^~305~^216.^3^13.^~1~^~A~^^^1^201.^243.^2^158.^273.^~2, 3~^~03/01/2006~ -~10867~^~306~^241.^3^17.^~1~^~A~^^^1^214.^273.^2^166.^315.^~2, 3~^~03/01/2006~ -~10867~^~307~^1060.^3^105.^~1~^~A~^^^1^935.^1270.^2^606.^1514.^~2, 3~^~03/01/2006~ -~10867~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10867~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2006~ -~10867~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10867~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~03/01/2006~ -~10867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~432~^1.^2^^~4~^~NR~^^^1^1.^1.^^^^^~03/01/2006~ -~10867~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10867~^~601~^65.^6^3.^~1~^~A~^^^1^57.^79.^5^55.^73.^~2, 3~^~03/01/2006~ -~10868~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~268~^548.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~301~^11.^5^0.^~1~^~A~^^^1^11.^12.^4^10.^11.^~2, 3~^~03/01/2006~ -~10868~^~304~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^17.^21.^~2, 3~^~03/01/2006~ -~10868~^~305~^260.^5^2.^~1~^~A~^^^1^250.^266.^4^252.^267.^~2, 3~^~03/01/2006~ -~10868~^~306~^289.^5^12.^~1~^~A~^^^1^246.^315.^4^254.^323.^~2, 3~^~03/01/2006~ -~10868~^~307~^1374.^5^75.^~1~^~A~^^^1^1220.^1630.^4^1165.^1582.^~2, 3~^~03/01/2006~ -~10868~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~319~^12.^4^0.^~1~^~A~^^^1^11.^12.^3^11.^11.^~1, 2, 3~^~03/01/2006~ -~10868~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~417~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~ -~10868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~432~^2.^4^0.^~4~^~NR~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~ -~10868~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10868~^~601~^65.^8^1.^~1~^~A~^^^1^55.^71.^7^60.^69.^~2, 3~^~03/01/2006~ -~10869~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~301~^12.^3^1.^~1~^~A~^^^1^9.^13.^2^5.^17.^~2, 3~^~03/01/2006~ -~10869~^~304~^19.^3^0.^~1~^~A~^^^1^17.^20.^2^15.^23.^~2, 3~^~03/01/2006~ -~10869~^~305~^258.^3^3.^~1~^~A~^^^1^253.^264.^2^244.^271.^~2, 3~^~03/01/2006~ -~10869~^~306~^289.^3^10.^~1~^~A~^^^1^269.^305.^2^243.^333.^~2, 3~^~03/01/2006~ -~10869~^~307~^1237.^3^164.^~1~^~A~^^^1^1020.^1560.^2^527.^1945.^~2, 3~^~03/01/2006~ -~10869~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~319~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^~1~^~03/01/2006~ -~10869~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~417~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~03/01/2006~ -~10869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~432~^2.^2^^~4~^~NR~^^^1^1.^3.^1^^^^~03/01/2006~ -~10869~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10869~^~601~^64.^5^1.^~1~^~A~^^^1^60.^68.^4^59.^67.^~2, 3~^~03/01/2006~ -~10870~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10870~^~301~^8.^2^^~1~^~A~^^^1^6.^9.^1^^^^~03/01/2006~ -~10870~^~304~^17.^2^^~1~^~A~^^^1^16.^19.^1^^^^~03/01/2006~ -~10870~^~305~^240.^2^^~1~^~A~^^^1^224.^256.^1^^^^~03/01/2006~ -~10870~^~306~^272.^2^^~1~^~A~^^^1^252.^292.^1^^^^~03/01/2006~ -~10870~^~307~^1390.^2^^~1~^~A~^^^1^1330.^1450.^1^^^^~03/01/2006~ -~10870~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10870~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^~1~^~03/01/2006~ -~10870~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10870~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~417~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~03/01/2006~ -~10870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~432~^3.^2^^~4~^~NR~^^^1^2.^3.^1^^^^~03/01/2006~ -~10870~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10870~^~601~^45.^4^1.^~1~^~A~^^^1^42.^51.^3^39.^51.^~2, 3~^~03/01/2006~ -~10871~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10871~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10871~^~301~^8.^2^^~1~^~A~^^^1^6.^10.^1^^^^~03/01/2006~ -~10871~^~304~^15.^2^^~1~^~A~^^^1^14.^17.^1^^^^~03/01/2006~ -~10871~^~305~^224.^2^^~1~^~A~^^^1^212.^235.^1^^^^~03/01/2006~ -~10871~^~306~^245.^2^^~1~^~A~^^^1^226.^264.^1^^^^~03/01/2006~ -~10871~^~307~^1335.^2^^~1~^~A~^^^1^1280.^1390.^1^^^^~03/01/2006~ -~10871~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10871~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^~1~^~03/01/2006~ -~10871~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10871~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~324~^27.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10871~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~417~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~03/01/2006~ -~10871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~432~^2.^2^^~4~^~NR~^^^1^1.^3.^1^^^^~03/01/2006~ -~10871~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10871~^~601~^43.^4^0.^~1~^~A~^^^1^41.^45.^3^40.^45.^~2, 3~^~03/01/2006~ -~10872~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10872~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10872~^~301~^8.^2^^~1~^~A~^^^1^6.^10.^1^^^^~03/01/2006~ -~10872~^~304~^17.^2^^~1~^~A~^^^1^16.^18.^1^^^^~03/01/2006~ -~10872~^~305~^229.^2^^~1~^~A~^^^1^216.^241.^1^^^^~03/01/2006~ -~10872~^~306~^268.^2^^~1~^~A~^^^1^248.^287.^1^^^^~03/01/2006~ -~10872~^~307~^1310.^2^^~1~^~A~^^^1^1240.^1380.^1^^^^~03/01/2006~ -~10872~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10872~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^^^^~1~^~03/01/2006~ -~10872~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10872~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10872~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~417~^4.^2^^~1~^~A~^^^1^2.^5.^1^^^^~03/01/2006~ -~10872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~432~^4.^2^^~4~^~NR~^^^1^2.^5.^1^^^^~03/01/2006~ -~10872~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10872~^~601~^43.^4^0.^~1~^~A~^^^1^40.^44.^3^39.^45.^~2, 3~^~03/01/2006~ -~10873~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~301~^10.^3^1.^~1~^~A~^^^1^8.^12.^2^5.^15.^~2, 3~^~03/01/2006~ -~10873~^~304~^22.^3^1.^~1~^~A~^^^1^19.^24.^2^16.^27.^~2, 3~^~03/01/2006~ -~10873~^~305~^271.^3^1.^~1~^~A~^^^1^267.^273.^2^262.^278.^~2, 3~^~03/01/2006~ -~10873~^~306~^511.^3^169.^~1~^~A~^^^1^335.^850.^2^-217.^1240.^~2, 3~^~03/01/2006~ -~10873~^~307~^861.^3^56.^~1~^~A~^^^1^759.^955.^2^617.^1105.^~2, 3~^~03/01/2006~ -~10873~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^~1~^~03/01/2006~ -~10873~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~03/01/2006~ -~10873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~432~^1.^2^^~4~^~NR~^^^1^1.^1.^^^^^~03/01/2006~ -~10873~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10873~^~601~^72.^8^2.^~1~^~A~^^^1^67.^85.^7^67.^77.^~2, 3~^~03/01/2006~ -~10874~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~268~^605.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10874~^~301~^7.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^8.^~2, 3~^~03/01/2006~ -~10874~^~304~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^16.^24.^~2, 3~^~03/01/2006~ -~10874~^~305~^255.^3^7.^~1~^~A~^^^1^242.^269.^2^221.^288.^~2, 3~^~03/01/2006~ -~10874~^~306~^458.^3^159.^~1~^~A~^^^1^270.^775.^2^-228.^1144.^~2, 3~^~03/01/2006~ -~10874~^~307~^820.^3^27.^~1~^~A~^^^1^786.^874.^2^701.^937.^~2, 3~^~03/01/2006~ -~10874~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10874~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2006~ -~10874~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10874~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~417~^3.^2^^~1~^~A~^^^1^3.^3.^^^^^~03/01/2006~ -~10874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~432~^3.^2^^~4~^~NR~^^^1^3.^3.^^^^^~03/01/2006~ -~10874~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10874~^~601~^74.^7^3.^~1~^~A~^^^1^63.^88.^6^66.^82.^~2, 3~^~03/01/2006~ -~10875~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~301~^12.^2^^~1~^~A~^^^1^12.^13.^1^^^^~03/01/2006~ -~10875~^~304~^23.^2^^~1~^~A~^^^1^22.^23.^1^^^^~03/01/2006~ -~10875~^~305~^291.^2^^~1~^~A~^^^1^290.^291.^1^^^^~03/01/2006~ -~10875~^~306~^358.^2^^~1~^~A~^^^1^354.^361.^1^^^^~03/01/2006~ -~10875~^~307~^835.^2^^~1~^~A~^^^1^787.^882.^1^^^^~03/01/2006~ -~10875~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10875~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10875~^~601~^80.^2^^~1~^~A~^^^1^75.^86.^1^^^^~03/01/2006~ -~10876~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~268~^527.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10876~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~305~^312.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~306~^349.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~307~^986.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10876~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10876~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10876~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10876~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~601~^63.^3^2.^~1~^~A~^^^1^58.^68.^2^50.^75.^~2, 3~^~03/01/2006~ -~10877~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10877~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10877~^~301~^10.^3^1.^~1~^~A~^^^1^8.^12.^2^5.^15.^~2, 3~^~03/01/2006~ -~10877~^~304~^19.^3^0.^~1~^~A~^^^1^17.^20.^2^14.^22.^~2, 3~^~03/01/2006~ -~10877~^~305~^221.^3^11.^~1~^~A~^^^1^200.^240.^2^170.^270.^~2, 3~^~03/01/2006~ -~10877~^~306~^264.^3^4.^~1~^~A~^^^1^256.^270.^2^246.^281.^~2, 3~^~03/01/2006~ -~10877~^~307~^1267.^3^95.^~1~^~A~^^^1^1130.^1450.^2^856.^1676.^~2, 3~^~03/01/2006~ -~10877~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10877~^~319~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^~1~^~03/01/2006~ -~10877~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10877~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~432~^2.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10877~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10877~^~601~^66.^5^1.^~1~^~A~^^^1^61.^70.^4^61.^70.^~2, 3~^~03/01/2006~ -~10878~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10878~^~301~^9.^4^2.^~1~^~A~^^^1^6.^15.^3^2.^15.^~2, 3~^~03/01/2006~ -~10878~^~304~^21.^4^0.^~1~^~A~^^^1^19.^22.^3^17.^23.^~2, 3~^~03/01/2006~ -~10878~^~305~^284.^4^8.^~1~^~A~^^^1^267.^306.^3^257.^309.^~2, 3~^~03/01/2006~ -~10878~^~306~^337.^4^11.^~1~^~A~^^^1^310.^362.^3^298.^374.^~2, 3~^~03/01/2006~ -~10878~^~307~^1223.^4^64.^~1~^~A~^^^1^1030.^1300.^3^1016.^1428.^~2, 3~^~03/01/2006~ -~10878~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10878~^~319~^13.^4^0.^~1~^~A~^^^1^12.^13.^3^12.^13.^~1, 2, 3~^~03/01/2006~ -~10878~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10878~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10878~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~1, 2, 3~^~03/01/2006~ -~10878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^3.^3^0.^3.^~1, 2, 3~^~03/01/2006~ -~10878~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10878~^~601~^54.^12^0.^~1~^~A~^^^1^50.^58.^11^52.^55.^~2, 3~^~03/01/2006~ -~10879~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~268~^489.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~301~^9.^4^2.^~1~^~A~^^^1^5.^14.^3^1.^15.^~2, 3~^~03/01/2006~ -~10879~^~304~^19.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^21.^~2, 3~^~03/01/2006~ -~10879~^~305~^270.^4^7.^~1~^~A~^^^1^248.^279.^3^246.^293.^~2, 3~^~03/01/2006~ -~10879~^~306~^316.^4^13.^~1~^~A~^^^1^281.^338.^3^273.^358.^~2, 3~^~03/01/2006~ -~10879~^~307~^1193.^4^22.^~1~^~A~^^^1^1160.^1260.^3^1119.^1265.^~2, 3~^~03/01/2006~ -~10879~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10879~^~319~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^12.^13.^~1, 2, 3~^~03/01/2006~ -~10879~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10879~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~324~^28.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10879~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~417~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~03/01/2006~ -~10879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~432~^1.^4^0.^~4~^~NR~^^^1^1.^1.^^^^~2, 3~^~03/01/2006~ -~10879~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~601~^53.^12^1.^~1~^~A~^^^1^47.^62.^11^51.^55.^~2, 3~^~03/01/2006~ -~10880~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10880~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10880~^~301~^8.^4^1.^~1~^~A~^^^1^5.^14.^3^2.^14.^~2, 3~^~03/01/2006~ -~10880~^~304~^19.^4^0.^~1~^~A~^^^1^18.^21.^3^17.^21.^~2, 3~^~03/01/2006~ -~10880~^~305~^265.^4^6.^~1~^~A~^^^1^246.^278.^3^243.^286.^~2, 3~^~03/01/2006~ -~10880~^~306~^317.^4^7.^~1~^~A~^^^1^297.^331.^3^291.^341.^~2, 3~^~03/01/2006~ -~10880~^~307~^1141.^4^53.^~1~^~A~^^^1^995.^1250.^3^970.^1312.^~2, 3~^~03/01/2006~ -~10880~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10880~^~319~^13.^4^0.^~1~^~A~^^^1^11.^14.^3^10.^14.^~1, 2, 3~^~03/01/2006~ -~10880~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10880~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10880~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~417~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~ -~10880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~432~^2.^4^0.^~4~^~NR~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~ -~10880~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10880~^~601~^50.^12^0.^~1~^~A~^^^1^47.^53.^11^48.^51.^~2, 3~^~03/01/2006~ -~10881~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~268~^551.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~301~^9.^3^0.^~1~^~A~^^^1^8.^10.^2^7.^11.^~2, 3~^~03/01/2006~ -~10881~^~304~^15.^3^1.^~1~^~A~^^^1^13.^17.^2^10.^20.^~2, 3~^~03/01/2006~ -~10881~^~305~^202.^3^4.^~1~^~A~^^^1^195.^210.^2^183.^220.^~2, 3~^~03/01/2006~ -~10881~^~306~^224.^3^14.^~1~^~A~^^^1^197.^248.^2^160.^287.^~2, 3~^~03/01/2006~ -~10881~^~307~^1045.^3^49.^~1~^~A~^^^1^974.^1140.^2^831.^1257.^~2, 3~^~03/01/2006~ -~10881~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^~1~^~03/01/2006~ -~10881~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~417~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~03/01/2006~ -~10881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~432~^2.^2^^~4~^~NR~^^^1^1.^2.^1^^^^~03/01/2006~ -~10881~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10881~^~601~^72.^6^2.^~1~^~A~^^^1^66.^83.^5^66.^78.^~2, 3~^~03/01/2006~ -~10882~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10882~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10882~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~2, 3~^~03/01/2006~ -~10882~^~304~^22.^4^0.^~1~^~A~^^^1^21.^23.^3^20.^23.^~2, 3~^~03/01/2006~ -~10882~^~305~^322.^4^3.^~1~^~A~^^^1^311.^328.^3^310.^333.^~2, 3~^~03/01/2006~ -~10882~^~306~^364.^4^11.^~1~^~A~^^^1^336.^388.^3^327.^400.^~2, 3~^~03/01/2006~ -~10882~^~307~^1163.^4^71.^~1~^~A~^^^1^971.^1300.^3^933.^1391.^~2, 3~^~03/01/2006~ -~10882~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10882~^~319~^13.^4^0.^~1~^~A~^^^1^13.^13.^3^12.^13.^~1, 2, 3~^~03/01/2006~ -~10882~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10882~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~324~^37.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10882~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~417~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~03/01/2006~ -~10882~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~03/01/2006~ -~10882~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10882~^~601~^57.^11^0.^~1~^~A~^^^1^52.^65.^10^55.^59.^~2, 3~^~03/01/2006~ -~10883~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~268~^472.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^4.^7.^~2, 3~^~03/01/2006~ -~10883~^~304~^22.^3^1.^~1~^~A~^^^1^20.^24.^2^16.^26.^~2, 3~^~03/01/2006~ -~10883~^~305~^318.^3^8.^~1~^~A~^^^1^304.^332.^2^283.^353.^~2, 3~^~03/01/2006~ -~10883~^~306~^367.^3^27.^~1~^~A~^^^1^314.^407.^2^248.^485.^~2, 3~^~03/01/2006~ -~10883~^~307~^1180.^3^40.^~1~^~A~^^^1^1140.^1260.^2^1007.^1352.^~2, 3~^~03/01/2006~ -~10883~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10883~^~319~^13.^3^0.^~1~^~A~^^^1^13.^14.^2^11.^14.^~1, 2, 3~^~03/01/2006~ -~10883~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10883~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~324~^30.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10883~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~417~^2.^3^0.^~1~^~A~^^^1^0.^3.^2^-1.^5.^~1, 2, 3~^~03/01/2006~ -~10883~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~432~^2.^3^0.^~4~^~NR~^^^1^0.^3.^2^-1.^5.^~1, 2, 3~^~03/01/2006~ -~10883~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10883~^~601~^56.^9^1.^~1~^~A~^^^1^51.^66.^8^51.^59.^~2, 3~^~03/01/2006~ -~10884~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10884~^~301~^6.^4^0.^~1~^~A~^^^1^4.^7.^3^3.^7.^~2, 3~^~03/01/2006~ -~10884~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~03/01/2006~ -~10884~^~305~^303.^4^5.^~1~^~A~^^^1^288.^315.^3^284.^320.^~2, 3~^~03/01/2006~ -~10884~^~306~^347.^4^15.^~1~^~A~^^^1^305.^377.^3^297.^396.^~2, 3~^~03/01/2006~ -~10884~^~307~^1098.^4^72.^~1~^~A~^^^1^891.^1200.^3^865.^1329.^~2, 3~^~03/01/2006~ -~10884~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10884~^~319~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^12.^13.^~1, 2, 3~^~03/01/2006~ -~10884~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10884~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~324~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10884~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~417~^1.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~03/01/2006~ -~10884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~03/01/2006~ -~10884~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10884~^~601~^53.^11^1.^~1~^~A~^^^1^46.^59.^10^50.^55.^~2, 3~^~03/01/2006~ -~10885~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10885~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~305~^229.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~306~^229.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~307~^1040.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10885~^~319~^9.^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10885~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~417~^1.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~431~^0.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~432~^1.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~435~^1.^0^^~4~^~NC~^~10867~^^^^^^^^^~07/01/2008~ -~10885~^~601~^50.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10886~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~305~^235.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~306~^221.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~307~^1090.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10886~^~319~^9.^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10886~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~417~^1.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~431~^0.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~432~^1.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~435~^1.^0^^~4~^~NC~^~10868~^^^^^^^^^~05/01/2006~ -~10886~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10887~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~268~^448.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10887~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~305~^218.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~306~^221.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~307~^1070.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10887~^~319~^10.^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10887~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~417~^2.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~431~^0.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~432~^2.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~435~^2.^0^^~4~^~NC~^~10877~^^^^^^^^^~08/01/2006~ -~10887~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10888~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~268~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10888~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~305~^222.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~306~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~307~^1160.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10888~^~319~^9.^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10888~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~417~^1.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~431~^0.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~432~^1.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~435~^1.^0^^~4~^~NC~^~10869~^^^^^^^^^~03/01/2007~ -~10888~^~601~^49.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~268~^471.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10889~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~306~^234.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~307~^1090.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10889~^~319~^9.^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10889~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~417~^1.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~431~^0.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~432~^1.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~435~^1.^0^^~4~^~NC~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~601~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10890~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~305~^253.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~306~^303.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~307~^893.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10890~^~319~^10.^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10890~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~417~^1.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~431~^0.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~432~^1.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~435~^1.^0^^~4~^~NC~^~10873~^^^^^^^^^~05/01/2006~ -~10890~^~601~^68.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10891~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~305~^250.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~306~^299.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~307~^809.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10891~^~319~^10.^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10891~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~417~^3.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~431~^0.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~432~^3.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~435~^3.^0^^~4~^~NC~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10892~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~305~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~306~^300.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~307~^861.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10892~^~319~^12.^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10892~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~417~^1.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~431~^0.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~432~^1.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~435~^1.^0^^~4~^~NC~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10893~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~268~^455.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10893~^~301~^4.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~304~^20.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~305~^283.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~306~^317.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~307~^895.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10893~^~319~^12.^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10893~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~324~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10893~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~417~^1.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~431~^0.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~432~^1.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~435~^1.^0^^~4~^~NC~^~10876~^^^^^^^^^~03/01/2009~ -~10893~^~601~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~208~^507.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10894~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~268~^2122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10894~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~305~^169.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~306~^195.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~307~^677.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10894~^~319~^12.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10894~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~324~^75.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10894~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10894~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10894~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~208~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10895~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~268~^2153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10895~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~305~^143.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~306~^174.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~307~^616.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~324~^48.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10895~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10895~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~268~^716.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~305~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~306~^47.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~307~^1050.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~318~^76.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10898~^~319~^23.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10898~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10898~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10899~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10899~^~301~^15.^3^1.^~1~^~A~^^^1^12.^17.^2^9.^20.^~2, 3~^~03/01/2006~ -~10899~^~304~^25.^3^0.^~1~^~A~^^^1^25.^27.^2^22.^28.^~2, 3~^~03/01/2006~ -~10899~^~305~^296.^3^3.^~1~^~A~^^^1^290.^302.^2^281.^311.^~2, 3~^~03/01/2006~ -~10899~^~306~^427.^3^1.^~1~^~A~^^^1^423.^429.^2^418.^434.^~2, 3~^~03/01/2006~ -~10899~^~307~^870.^3^11.^~1~^~A~^^^1^847.^884.^2^820.^919.^~2, 3~^~03/01/2006~ -~10899~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10899~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10899~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10899~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~324~^44.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10899~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~432~^2.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~10899~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~601~^73.^3^1.^~1~^~A~^^^1^72.^76.^2^67.^79.^~2, 3~^~03/01/2006~ -~10900~^~208~^112.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~268~^469.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~305~^302.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~306~^346.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~307~^1096.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10900~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10900~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10900~^~601~^53.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~208~^129.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~268~^541.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~301~^4.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~305~^276.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~306~^310.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~307~^881.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~318~^39.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~320~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~324~^27.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10901~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10902~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10902~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~305~^248.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~306~^289.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~307~^839.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~318~^39.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~320~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10902~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10903~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~268~^797.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~305~^233.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~307~^779.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~318~^35.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10903~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10904~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10904~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~305~^231.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~307~^838.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~318~^36.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10904~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~208~^117.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~268~^490.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~306~^267.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~307~^1308.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~318~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~324~^23.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~417~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10905~^~601~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10906~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10906~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~304~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~306~^205.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~307~^1099.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~318~^33.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10906~^~601~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10907~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~268~^1016.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10907~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~304~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~306~^215.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~307~^936.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~318~^36.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10907~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~208~^179.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~268~^749.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~306~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~307~^990.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~318~^34.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10908~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~208~^121.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~268~^508.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~305~^262.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~306~^312.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~307~^1126.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~318~^42.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10909~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10909~^~601~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10910~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10910~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~305~^220.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~306~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~307~^1011.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10910~^~319~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10910~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10910~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~208~^167.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~268~^699.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~306~^219.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~307~^964.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~318~^32.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~319~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~320~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~10911~^~601~^52.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~208~^172.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~268~^718.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~305~^218.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~306~^199.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~307~^1069.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~318~^32.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~10912~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~208~^161.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~268~^675.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~305~^238.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~307~^1101.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~417~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10913~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10913~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~208~^200.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~268~^838.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~306~^232.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~307~^988.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10914~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10914~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10915~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10915~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~305~^251.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~306~^280.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~307~^1309.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~318~^39.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10915~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~208~^125.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~268~^523.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~305~^281.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~306~^334.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~307~^1212.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~318~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10916~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~208~^126.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~268~^527.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~307~^1181.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10917~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10917~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~268~^777.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~307~^1181.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10918~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10918~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10919~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10919~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~306~^216.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~307~^945.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10919~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10920~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10920~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~305~^250.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~307~^1188.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10920~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~208~^124.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~268~^519.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~305~^240.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~307~^1389.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~324~^34.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10921~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10921~^~601~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~208~^123.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~268~^513.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~305~^224.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~306~^245.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~307~^1335.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~324~^27.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10922~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10922~^~601~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10923~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10923~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~305~^260.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~306~^477.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~307~^841.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10923~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~268~^799.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~305~^244.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~306~^424.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~307~^801.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~417~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10924~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10924~^~601~^74.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10925~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10925~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~305~^280.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~306~^344.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~307~^821.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10925~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~208~^118.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~268~^494.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~305~^321.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~306~^363.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~307~^1160.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~324~^37.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10926~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10926~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10927~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~10927~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~305~^308.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~307~^977.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~10927~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~10927~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~324~^33.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10927~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10927~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10928~^~208~^114.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~268~^476.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~305~^318.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~306~^367.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~307~^1179.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10928~^~601~^56.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10929~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~268~^741.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10929~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~305~^263.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~306~^370.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~307~^826.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~324~^33.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10929~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10929~^~601~^71.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10931~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~301~^8.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^9.^~2, 3~^~04/01/2006~ -~10931~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^24.^~2, 3~^~04/01/2006~ -~10931~^~305~^275.^3^9.^~1~^~A~^^^1^259.^292.^2^234.^316.^~2, 3~^~04/01/2006~ -~10931~^~306~^394.^3^5.^~1~^~A~^^^1^383.^402.^2^369.^417.^~2, 3~^~04/01/2006~ -~10931~^~307~^846.^3^33.^~1~^~A~^^^1^780.^882.^2^703.^988.^~2, 3~^~04/01/2006~ -~10931~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10931~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10931~^~601~^71.^3^2.^~1~^~A~^^^1^66.^75.^2^59.^82.^~2, 3~^~04/01/2006~ -~10932~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~268~^525.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10932~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~2, 3~^~04/01/2006~ -~10932~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^25.^~2, 3~^~04/01/2006~ -~10932~^~305~^267.^3^5.^~1~^~A~^^^1^255.^273.^2^241.^291.^~2, 3~^~04/01/2006~ -~10932~^~306~^385.^3^9.^~1~^~A~^^^1^375.^403.^2^345.^424.^~2, 3~^~04/01/2006~ -~10932~^~307~^737.^3^26.^~1~^~A~^^^1^684.^770.^2^621.^853.^~2, 3~^~04/01/2006~ -~10932~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10932~^~319~^0.^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10932~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~10932~^~601~^63.^3^3.^~1~^~A~^^^1^57.^69.^2^47.^78.^~2, 3~^~04/01/2006~ -~10933~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~268~^582.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10933~^~301~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~04/01/2006~ -~10933~^~304~^23.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^24.^~2, 3~^~04/01/2006~ -~10933~^~305~^269.^3^6.^~1~^~A~^^^1^258.^282.^2^239.^299.^~2, 3~^~04/01/2006~ -~10933~^~306~^378.^3^3.^~1~^~A~^^^1^372.^381.^2^365.^390.^~2, 3~^~04/01/2006~ -~10933~^~307~^828.^3^31.^~1~^~A~^^^1^766.^867.^2^692.^963.^~2, 3~^~04/01/2006~ -~10933~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10933~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10933~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10933~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~601~^70.^3^2.^~1~^~A~^^^1^65.^75.^2^57.^82.^~2, 3~^~04/01/2006~ -~10934~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~268~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10934~^~301~^6.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~04/01/2006~ -~10934~^~304~^22.^3^0.^~1~^~A~^^^1^21.^22.^2^20.^22.^~2, 3~^~04/01/2006~ -~10934~^~305~^258.^3^8.^~1~^~A~^^^1^244.^272.^2^223.^293.^~2, 3~^~04/01/2006~ -~10934~^~306~^364.^3^2.^~1~^~A~^^^1^360.^368.^2^354.^373.^~2, 3~^~04/01/2006~ -~10934~^~307~^846.^3^15.^~1~^~A~^^^1^819.^874.^2^778.^914.^~2, 3~^~04/01/2006~ -~10934~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10934~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10934~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~10934~^~601~^61.^3^2.^~1~^~A~^^^1^59.^66.^2^51.^70.^~2, 3~^~04/01/2006~ -~10935~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10935~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~268~^799.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10935~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~305~^257.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~306~^356.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~307~^810.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~ -~10935~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10935~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~ -~10935~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~324~^39.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10935~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10935~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10936~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~268~^739.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10936~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~305~^243.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~306~^339.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~307~^816.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~10936~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10937~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~268~^757.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10937~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~305~^285.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~306~^405.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~307~^852.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10937~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~324~^40.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10937~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10937~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10938~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~268~^543.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10938~^~301~^13.^3^1.^~1~^~A~^^^1^12.^15.^2^8.^17.^~2, 3~^~04/01/2006~ -~10938~^~304~^23.^3^0.^~1~^~A~^^^1^22.^24.^2^20.^26.^~2, 3~^~04/01/2006~ -~10938~^~305~^263.^3^1.^~1~^~A~^^^1^260.^265.^2^256.^270.^~2, 3~^~04/01/2006~ -~10938~^~306~^370.^3^4.^~1~^~A~^^^1^361.^378.^2^348.^391.^~2, 3~^~04/01/2006~ -~10938~^~307~^760.^3^8.^~1~^~A~^^^1^744.^771.^2^724.^796.^~2, 3~^~04/01/2006~ -~10938~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10938~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10938~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10938~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10938~^~601~^65.^3^2.^~1~^~A~^^^1^62.^70.^2^53.^76.^~2, 3~^~04/01/2006~ -~10939~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10939~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~268~^725.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10939~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~305~^250.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~306~^348.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~307~^744.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10939~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10940~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~268~^1512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10940~^~301~^19.^12^1.^~1~^~A~^^^1^11.^38.^11^14.^23.^~2, 3~^~03/01/2007~ -~10940~^~304~^18.^12^0.^~1~^~A~^^^1^12.^21.^11^16.^19.^~2, 3~^~03/01/2007~ -~10940~^~305~^162.^12^6.^~1~^~A~^^^1^111.^188.^11^148.^175.^~2, 3~^~03/01/2007~ -~10940~^~306~^265.^12^12.^~1~^~A~^^^1^167.^313.^11^238.^291.^~2, 3~^~03/01/2007~ -~10940~^~307~^91.^12^5.^~1~^~A~^^^1^64.^134.^11^78.^103.^~2, 3~^~03/01/2007~ -~10940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10940~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~324~^88.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~ -~10940~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10940~^~601~^105.^4^13.^~1~^~A~^^^1^72.^126.^3^63.^146.^~2, 3~^~03/01/2007~ -~10942~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10942~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10942~^~301~^22.^4^3.^~1~^~A~^^^1^15.^32.^3^9.^34.^~2, 3~^~05/01/2007~ -~10942~^~304~^9.^4^0.^~1~^~A~^^^1^8.^10.^3^7.^10.^~2, 3~^~05/01/2007~ -~10942~^~305~^121.^4^7.^~1~^~A~^^^1^106.^142.^3^96.^145.^~2, 3~^~05/01/2007~ -~10942~^~306~^191.^4^33.^~1~^~A~^^^1^152.^291.^3^85.^297.^~2, 3~^~05/01/2007~ -~10942~^~307~^81.^4^11.^~1~^~A~^^^1^58.^109.^3^44.^118.^~2, 3~^~05/01/2007~ -~10942~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10942~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10942~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~417~^0.^0^^~4~^~BFPN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~10942~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10942~^~601~^83.^4^5.^~1~^~A~^^^1^71.^100.^3^64.^102.^~2, 3~^~05/01/2007~ -~10943~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10943~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~05/01/2007~ -~10943~^~304~^25.^12^0.^~1~^~A~^^^1^21.^29.^11^23.^26.^~2, 3~^~05/01/2007~ -~10943~^~305~^316.^12^12.^~1~^~A~^^^1^254.^424.^11^287.^344.^~2, 3~^~05/01/2007~ -~10943~^~306~^567.^12^66.^~1~^~A~^^^1^377.^948.^11^419.^713.^~2, 3~^~05/01/2007~ -~10943~^~307~^231.^11^33.^~1~^~A~^^^1^56.^392.^10^155.^306.^~2, 3~^~05/01/2007~ -~10943~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10943~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10943~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10943~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10943~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10943~^~601~^57.^12^1.^~1~^~A~^^^1^48.^65.^11^52.^60.^~2, 3~^~05/01/2007~ -~10944~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10944~^~301~^4.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~05/01/2007~ -~10944~^~304~^23.^12^0.^~1~^~A~^^^1^21.^28.^11^22.^24.^~2, 3~^~05/01/2007~ -~10944~^~305~^290.^12^7.^~1~^~A~^^^1^231.^326.^11^272.^307.^~2, 3~^~05/01/2007~ -~10944~^~306~^527.^12^65.^~1~^~A~^^^1^326.^992.^11^382.^670.^~2, 3~^~05/01/2007~ -~10944~^~307~^243.^12^32.^~1~^~A~^^^1^43.^379.^11^171.^313.^~2, 3~^~05/01/2007~ -~10944~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10944~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10944~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10944~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10944~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10944~^~601~^48.^12^1.^~1~^~A~^^^1^40.^60.^11^44.^51.^~2, 3~^~05/01/2007~ -~10945~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10945~^~301~^26.^12^4.^~1~^~A~^^^1^10.^57.^11^16.^35.^~2, 3~^~05/01/2007~ -~10945~^~304~^21.^12^0.^~1~^~A~^^^1^16.^25.^11^19.^22.^~2, 3~^~05/01/2007~ -~10945~^~305~^234.^12^5.^~1~^~A~^^^1^206.^269.^11^221.^246.^~2, 3~^~05/01/2007~ -~10945~^~306~^388.^12^46.^~1~^~A~^^^1^281.^720.^11^285.^490.^~2, 3~^~05/01/2007~ -~10945~^~307~^154.^12^14.^~1~^~A~^^^1^65.^208.^11^122.^184.^~2, 3~^~05/01/2007~ -~10945~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10945~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10945~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~417~^0.^0^^~4~^~BFPN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10945~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10945~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10945~^~601~^98.^12^2.^~1~^~A~^^^1^86.^115.^11^92.^104.^~2, 3~^~05/01/2007~ -~10946~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10946~^~301~^14.^12^1.^~1~^~A~^^^1^8.^33.^11^9.^18.^~2, 3~^~05/01/2007~ -~10946~^~304~^19.^12^0.^~1~^~A~^^^1^17.^21.^11^18.^19.^~2, 3~^~05/01/2007~ -~10946~^~305~^223.^12^6.^~1~^~A~^^^1^188.^260.^11^208.^237.^~2, 3~^~05/01/2007~ -~10946~^~306~^419.^12^50.^~1~^~A~^^^1^286.^854.^11^307.^530.^~2, 3~^~05/01/2007~ -~10946~^~307~^165.^12^14.^~1~^~A~^^^1^70.^238.^11^132.^197.^~2, 3~^~05/01/2007~ -~10946~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10946~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2011~ -~10946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~417~^0.^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~10946~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10946~^~601~^59.^12^1.^~1~^~A~^^^1^48.^76.^11^54.^63.^~2, 3~^~05/01/2007~ -~10947~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~301~^9.^5^2.^~1~^~A~^^^1^5.^20.^4^1.^16.^~2, 3~^~06/01/2014~ -~10947~^~304~^29.^5^0.^~1~^~A~^^^1^28.^31.^4^27.^30.^~2, 3~^~06/01/2014~ -~10947~^~305~^317.^5^19.^~1~^~A~^^^1^266.^384.^4^262.^372.^~2, 3~^~06/01/2014~ -~10947~^~306~^608.^5^37.^~1~^~A~^^^1^505.^686.^4^502.^713.^~2, 3~^~06/01/2014~ -~10947~^~307~^315.^5^29.^~1~^~A~^^^1^214.^381.^4^232.^398.^~2, 3~^~06/01/2014~ -~10947~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10947~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~10947~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10947~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10947~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~07/01/2009~ -~10947~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10947~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10947~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10947~^~601~^70.^3^2.^~1~^~A~^^^1^66.^75.^2^58.^82.^~2, 3~^~06/01/2014~ -~10948~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~301~^7.^5^1.^~1~^~A~^^^1^5.^15.^4^1.^12.^~2, 3~^~06/01/2014~ -~10948~^~304~^23.^5^0.^~1~^~A~^^^1^22.^25.^4^21.^24.^~2, 3~^~06/01/2014~ -~10948~^~305~^264.^5^21.^~1~^~A~^^^1^205.^317.^4^202.^324.^~2, 3~^~06/01/2014~ -~10948~^~306~^537.^5^40.^~1~^~A~^^^1^414.^644.^4^425.^647.^~2, 3~^~06/01/2014~ -~10948~^~307~^278.^5^19.^~1~^~A~^^^1^204.^310.^4^225.^331.^~2, 3~^~06/01/2014~ -~10948~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~10948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~05/01/2007~ -~10948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~10948~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10948~^~601~^51.^3^2.^~1~^~A~^^^1^48.^57.^2^39.^63.^~2, 3~^~06/01/2014~ -~10949~^~208~^171.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~268~^715.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~305~^244.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~306~^489.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~307~^251.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10949~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10949~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~324~^12.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10949~^~601~^56.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~208~^198.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~268~^829.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~305~^307.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~306~^581.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~307~^302.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10950~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10950~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10950~^~601~^71.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10951~^~208~^114.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10951~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~268~^478.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10951~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~305~^286.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~306~^519.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~307~^239.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~324~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10951~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10951~^~601~^49.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~208~^121.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~268~^504.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~305~^315.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~306~^563.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~307~^230.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10952~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10952~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~324~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10952~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~208~^169.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~268~^709.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~305~^211.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~306~^391.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~307~^155.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10953~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10953~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~208~^263.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~268~^1100.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~301~^27.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~305~^227.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~306~^370.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~307~^151.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10954~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10954~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~324~^44.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10954~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10955~^~208~^176.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~268~^735.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~301~^7.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~305~^251.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~306~^358.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~307~^722.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~318~^6.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10955~^~601~^62.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10956~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10956~^~301~^7.^6^0.^~1~^~A~^^^1^6.^8.^5^6.^7.^~4~^~02/01/2008~ -~10956~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~4~^~02/01/2008~ -~10956~^~305~^221.^6^3.^~1~^~A~^^^1^210.^230.^5^212.^228.^~4~^~02/01/2008~ -~10956~^~306~^366.^6^7.^~1~^~A~^^^1^336.^382.^5^347.^385.^~4~^~02/01/2008~ -~10956~^~307~^76.^6^4.^~1~^~A~^^^1^59.^93.^5^62.^88.^~4~^~02/01/2008~ -~10956~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~10956~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10956~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~10956~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^2.^~1, 4~^~02/01/2008~ -~10956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10956~^~432~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^2.^^~03/01/2008~ -~10956~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10956~^~601~^81.^12^1.^~1~^~A~^^^1^69.^88.^11^77.^84.^~4~^~02/01/2008~ -~10957~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10957~^~301~^7.^6^0.^~1~^~A~^^^1^5.^10.^5^4.^8.^~4~^~02/01/2008~ -~10957~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^22.^~4~^~02/01/2008~ -~10957~^~305~^207.^6^2.^~1~^~A~^^^1^199.^214.^5^200.^213.^~4~^~02/01/2008~ -~10957~^~306~^365.^6^4.^~1~^~A~^^^1^349.^379.^5^353.^376.^~4~^~02/01/2008~ -~10957~^~307~^73.^6^5.^~1~^~A~^^^1^60.^96.^5^59.^86.^~4~^~02/01/2008~ -~10957~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10957~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10957~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~417~^1.^3^1.^~1~^~A~^^^1^0.^3.^2^-3.^5.^~1, 4~^~02/01/2008~ -~10957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~432~^1.^3^1.^~1~^~A~^^^1^0.^3.^2^-3.^5.^^~03/01/2008~ -~10957~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10957~^~601~^63.^12^0.^~1~^~A~^^^1^58.^67.^11^61.^64.^~4~^~02/01/2008~ -~10958~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10958~^~301~^7.^6^0.^~1~^~A~^^^1^5.^11.^5^4.^8.^~4~^~02/01/2008~ -~10958~^~304~^26.^6^0.^~1~^~A~^^^1^25.^28.^5^24.^27.^~4~^~02/01/2008~ -~10958~^~305~^229.^6^2.^~1~^~A~^^^1^226.^239.^5^223.^234.^~4~^~02/01/2008~ -~10958~^~306~^378.^6^7.^~1~^~A~^^^1^343.^388.^5^359.^396.^~4~^~02/01/2008~ -~10958~^~307~^54.^6^2.^~1~^~A~^^^1^48.^61.^5^48.^60.^~4~^~02/01/2008~ -~10958~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10958~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10958~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10958~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~417~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 4~^~02/01/2008~ -~10958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~432~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^^~04/01/2008~ -~10958~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10958~^~601~^60.^12^1.^~1~^~A~^^^1^52.^67.^11^57.^62.^~4~^~02/01/2008~ -~10959~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10959~^~301~^7.^6^0.^~1~^~A~^^^1^5.^9.^5^5.^8.^~4~^~02/01/2008~ -~10959~^~304~^26.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^27.^~4~^~02/01/2008~ -~10959~^~305~^240.^6^3.^~1~^~A~^^^1^229.^253.^5^231.^249.^~4~^~02/01/2008~ -~10959~^~306~^364.^6^3.^~1~^~A~^^^1^346.^373.^5^353.^373.^~4~^~02/01/2008~ -~10959~^~307~^54.^6^3.^~1~^~A~^^^1^45.^72.^5^44.^64.^~4~^~02/01/2008~ -~10959~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~10959~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10959~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~10959~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~417~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~1, 4~^~02/01/2008~ -~10959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~432~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^^~04/01/2008~ -~10959~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10959~^~601~^78.^12^0.^~1~^~A~^^^1^74.^84.^11^76.^80.^~4~^~02/01/2008~ -~10960~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10960~^~301~^8.^4^0.^~1~^~A~^^^1^6.^9.^3^5.^9.^~4~^~03/01/2008~ -~10960~^~304~^27.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^28.^~4~^~03/01/2008~ -~10960~^~305~^254.^4^1.^~1~^~A~^^^1^250.^258.^3^248.^258.^~4~^~03/01/2008~ -~10960~^~306~^415.^4^9.^~1~^~A~^^^1^391.^433.^3^386.^444.^~4~^~03/01/2008~ -~10960~^~307~^53.^4^2.^~1~^~A~^^^1^50.^61.^3^45.^61.^~4~^~03/01/2008~ -~10960~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10960~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10960~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10960~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^-1.^3.^~1, 4~^~03/01/2008~ -~10960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~432~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^-1.^3.^^~04/01/2008~ -~10960~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10960~^~601~^82.^12^1.^~1~^~A~^^^1^75.^89.^11^79.^84.^~4~^~03/01/2008~ -~10961~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10961~^~301~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^5.^7.^~4~^~03/01/2008~ -~10961~^~304~^24.^4^0.^~1~^~A~^^^1^24.^25.^3^23.^25.^~4~^~03/01/2008~ -~10961~^~305~^229.^4^1.^~1~^~A~^^^1^225.^233.^3^223.^233.^~4~^~03/01/2008~ -~10961~^~306~^391.^4^3.^~1~^~A~^^^1^380.^397.^3^378.^403.^~4~^~03/01/2008~ -~10961~^~307~^50.^4^2.^~1~^~A~^^^1^47.^57.^3^43.^57.^~4~^~03/01/2008~ -~10961~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10961~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10961~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~417~^2.^4^1.^~1~^~A~^^^1^0.^5.^3^-2.^5.^~1, 4~^~03/01/2008~ -~10961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~432~^2.^4^1.^~1~^~A~^^^1^0.^5.^3^-2.^5.^^~04/01/2008~ -~10961~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10961~^~601~^66.^12^0.^~1~^~A~^^^1^63.^71.^11^64.^68.^~4~^~03/01/2008~ -~10962~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10962~^~301~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2008~ -~10962~^~304~^25.^6^0.^~1~^~A~^^^1^25.^26.^5^24.^25.^~4~^~03/01/2008~ -~10962~^~305~^237.^6^3.^~1~^~A~^^^1^222.^245.^5^227.^246.^~4~^~03/01/2008~ -~10962~^~306~^363.^6^6.^~1~^~A~^^^1^342.^384.^5^345.^379.^~4~^~03/01/2008~ -~10962~^~307~^43.^6^1.^~1~^~A~^^^1^38.^47.^5^39.^45.^~4~^~03/01/2008~ -~10962~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10962~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~10962~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~417~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^4.^~1, 4~^~03/01/2008~ -~10962~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~432~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^4.^^~04/01/2008~ -~10962~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10962~^~601~^84.^12^1.^~1~^~A~^^^1^80.^91.^11^81.^86.^~4~^~03/01/2008~ -~10963~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~268~^474.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10963~^~301~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^4.^5.^~4~^~03/01/2008~ -~10963~^~304~^25.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~03/01/2008~ -~10963~^~305~^232.^6^2.^~1~^~A~^^^1^224.^239.^5^225.^237.^~4~^~03/01/2008~ -~10963~^~306~^399.^6^3.^~1~^~A~^^^1^392.^413.^5^390.^407.^~4~^~03/01/2008~ -~10963~^~307~^50.^6^2.^~1~^~A~^^^1^43.^56.^5^44.^55.^~4~^~03/01/2008~ -~10963~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10963~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10963~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~10963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~417~^0.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^1.^~1, 4~^~03/01/2008~ -~10963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~432~^0.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^1.^^~04/01/2008~ -~10963~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10963~^~601~^62.^12^1.^~1~^~A~^^^1^57.^76.^11^59.^65.^~4~^~03/01/2008~ -~10972~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~268~^911.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10972~^~301~^15.^8^0.^~1~^~AR~^^^^14.^17.^^^^^~05/01/2009~ -~10972~^~304~^16.^8^0.^~1~^~AR~^^^^14.^18.^^^^^~05/01/2009~ -~10972~^~305~^161.^8^2.^~1~^~AR~^^^^143.^177.^^^^^~05/01/2009~ -~10972~^~306~^244.^8^5.^~1~^~AR~^^^^211.^289.^^^^^~05/01/2009~ -~10972~^~307~^68.^8^5.^~1~^~AR~^^^^50.^89.^^^^^~05/01/2009~ -~10972~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10972~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~10972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10972~^~601~^68.^16^2.^~1~^~AR~^^^^62.^85.^^^^^~05/01/2009~ -~10973~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10973~^~301~^15.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~304~^19.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~305~^190.^7^2.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~306~^310.^7^6.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~307~^67.^7^5.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10973~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10973~^~601~^59.^14^2.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10974~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~304~^19.^8^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~305~^192.^8^16.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~306~^280.^8^19.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~307~^94.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~324~^34.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10974~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10974~^~601~^100.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~268~^1211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10975~^~301~^20.^8^0.^~1~^~AR~^^^^17.^22.^^^^^~05/01/2009~ -~10975~^~304~^23.^8^0.^~1~^~AR~^^^^17.^25.^^^^^~05/01/2009~ -~10975~^~305~^226.^8^14.^~1~^~AR~^^^^153.^268.^^^^^~05/01/2009~ -~10975~^~306~^354.^8^14.^~1~^~AR~^^^^298.^391.^^^^^~05/01/2009~ -~10975~^~307~^89.^8^4.^~1~^~AR~^^^^71.^102.^^^^^~05/01/2009~ -~10975~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~324~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~10975~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~417~^1.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~432~^1.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10975~^~601~^89.^16^3.^~1~^~AR~^^^^81.^118.^^^^^~05/01/2009~ -~10976~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10976~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10976~^~301~^19.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~304~^27.^7^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~305~^261.^7^16.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~306~^428.^7^15.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~307~^84.^7^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10976~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~417~^0.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~432~^0.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10976~^~601~^78.^14^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~268~^1579.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10977~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~304~^18.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~305~^181.^8^7.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~306~^275.^8^25.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~307~^91.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10977~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~417~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~432~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10977~^~601~^99.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10978~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~268~^1260.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10978~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~304~^22.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~305~^221.^8^6.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~306~^345.^8^24.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~307~^89.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10978~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~417~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~432~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10978~^~601~^97.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~268~^773.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10979~^~301~^20.^7^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~304~^25.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~305~^261.^7^7.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~306~^415.^7^25.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~307~^88.^7^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10979~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10979~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~417~^3.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~432~^3.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~10979~^~601~^85.^14^5.^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10980~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10980~^~301~^26.^12^1.^~1~^~A~^^^1^21.^31.^11^23.^27.^~2, 3~^~04/01/2010~ -~10980~^~304~^17.^12^0.^~1~^~A~^^^1^16.^19.^11^16.^17.^~2, 3~^~04/01/2010~ -~10980~^~305~^165.^12^4.^~1~^~A~^^^1^135.^182.^11^155.^175.^~2, 3~^~04/01/2010~ -~10980~^~306~^268.^12^7.^~1~^~A~^^^1^234.^306.^11^252.^284.^~2, 3~^~04/01/2010~ -~10980~^~307~^95.^12^1.^~1~^~A~^^^1^86.^102.^11^91.^98.^~2, 3~^~04/01/2010~ -~10980~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10980~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~04/01/2010~ -~10980~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~324~^38.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~04/01/2010~ -~10980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~417~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~04/01/2010~ -~10980~^~431~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~01/01/2015~ -~10980~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~ -~10980~^~435~^0.^0^^~4~^~NC~^~10068~^^^^^^^^^~01/01/2015~ -~10980~^~601~^66.^6^0.^~1~^~A~^^^1^62.^68.^5^63.^67.^~2, 3~^~04/01/2010~ -~10981~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~268~^1069.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~301~^44.^12^7.^~1~^~A~^^^1^23.^101.^11^27.^59.^~2, 3~^~05/01/2010~ -~10981~^~304~^17.^12^0.^~1~^~A~^^^1^15.^19.^11^16.^17.^~2, 3~^~05/01/2010~ -~10981~^~305~^171.^12^4.^~1~^~A~^^^1^147.^205.^11^161.^180.^~2, 3~^~05/01/2010~ -~10981~^~306~^249.^12^8.^~1~^~A~^^^1^175.^285.^11^230.^268.^~2, 3~^~05/01/2010~ -~10981~^~307~^98.^12^1.^~1~^~A~^^^1^90.^104.^11^95.^99.^~2, 3~^~05/01/2010~ -~10981~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~319~^4.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~05/01/2010~ -~10981~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~324~^46.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10981~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~417~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~05/01/2010~ -~10981~^~431~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~01/01/2015~ -~10981~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~ -~10981~^~435~^0.^0^^~4~^~NC~^~10068~^^^^^^^^^~01/01/2015~ -~10981~^~601~^84.^6^1.^~1~^~A~^^^1^79.^92.^5^79.^88.^~2, 3~^~05/01/2010~ -~10982~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~301~^6.^12^0.^~1~^~A~^^^1^4.^9.^11^4.^6.^~2, 3~^~01/01/2011~ -~10982~^~304~^22.^12^0.^~1~^~A~^^^1^20.^24.^11^21.^22.^~2, 3~^~01/01/2011~ -~10982~^~305~^244.^12^4.^~1~^~A~^^^1^207.^260.^11^234.^253.^~2, 3~^~01/01/2011~ -~10982~^~306~^375.^12^4.^~1~^~A~^^^1^349.^399.^11^364.^385.^~2, 3~^~01/01/2011~ -~10982~^~307~^65.^12^1.^~1~^~A~^^^1^60.^74.^11^61.^67.^~2, 3~^~01/01/2011~ -~10982~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~ -~10982~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~324~^15.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10982~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10982~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10982~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~601~^58.^6^2.^~1~^~A~^^^1^53.^64.^5^52.^63.^~2, 3~^~01/01/2011~ -~10983~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~301~^11.^12^0.^~1~^~A~^^^1^8.^15.^11^9.^12.^~2, 3~^~01/01/2011~ -~10983~^~304~^24.^12^0.^~1~^~A~^^^1^22.^26.^11^23.^25.^~2, 3~^~01/01/2011~ -~10983~^~305~^277.^12^6.^~1~^~A~^^^1^227.^323.^11^261.^291.^~2, 3~^~01/01/2011~ -~10983~^~306~^457.^12^13.^~1~^~A~^^^1^403.^536.^11^427.^486.^~2, 3~^~01/01/2011~ -~10983~^~307~^68.^12^1.^~1~^~A~^^^1^59.^82.^11^63.^72.^~2, 3~^~01/01/2011~ -~10983~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~324~^19.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~10983~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10983~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~601~^76.^6^2.^~1~^~A~^^^1^67.^81.^5^70.^81.^~2, 3~^~01/01/2011~ -~10984~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~301~^7.^12^0.^~1~^~A~^^^1^5.^10.^11^6.^8.^~2, 3~^~01/01/2011~ -~10984~^~304~^25.^12^0.^~1~^~A~^^^1^22.^29.^11^24.^26.^~2, 3~^~01/01/2011~ -~10984~^~305~^284.^12^6.^~1~^~A~^^^1^255.^318.^11^269.^297.^~2, 3~^~01/01/2011~ -~10984~^~306~^430.^12^9.^~1~^~A~^^^1^373.^484.^11^409.^449.^~2, 3~^~01/01/2011~ -~10984~^~307~^58.^12^2.^~1~^~A~^^^1^46.^76.^11^52.^63.^~2, 3~^~01/01/2011~ -~10984~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~324~^26.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~01/01/2011~ -~10984~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10984~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~601~^76.^6^2.^~1~^~A~^^^1^65.^87.^5^69.^83.^~2, 3~^~01/01/2011~ -~10985~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~301~^7.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~304~^26.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~305~^285.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~306~^431.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~307~^58.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~319~^3.^0^^~4~^~BFSN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~324~^44.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~ -~10985~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~417~^0.^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~10985~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~ -~10985~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~601~^89.^6^2.^~1~^~A~^^^1^78.^95.^5^82.^94.^~2, 3~^~02/01/2011~ -~10986~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~301~^61.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~304~^24.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~305~^284.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~306~^370.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~307~^84.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~319~^3.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~324~^44.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~10986~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~ -~10986~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~601~^89.^6^2.^~1~^~A~^^^1^78.^95.^5^82.^94.^~2, 3~^~02/01/2011~ -~10987~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~301~^12.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~304~^26.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~305~^294.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~306~^486.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~307~^72.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~319~^1.^0^^~4~^~BFSN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~324~^30.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10987~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~417~^0.^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~10987~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~ -~10987~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~601~^99.^6^1.^~1~^~A~^^^1^95.^104.^5^94.^102.^~2, 3~^~02/01/2011~ -~10988~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10988~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~268~^847.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10988~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~305~^271.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~306~^407.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10988~^~601~^77.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10989~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10989~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~305~^233.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~306~^372.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10989~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10990~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10990~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~306~^439.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10990~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10991~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~268~^1032.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10991~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~305~^272.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~306~^408.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~307~^58.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10991~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~324~^46.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10991~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10992~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10992~^~301~^57.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~304~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~305~^265.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~306~^344.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~307~^81.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~318~^17.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~324~^47.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10992~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10993~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10993~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~305~^271.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~306~^441.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~307~^70.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10993~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10993~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10993~^~601~^96.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10994~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~10994~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~10994~^~301~^4.^6^0.^~1~^~A~^^^1^4.^5.^5^3.^4.^~2, 3~^~04/01/2012~ -~10994~^~304~^12.^6^0.^~1~^~A~^^^1^11.^15.^5^10.^13.^~2, 3~^~04/01/2012~ -~10994~^~305~^180.^6^5.^~1~^~A~^^^1^164.^198.^5^164.^194.^~2, 3~^~04/01/2012~ -~10994~^~306~^506.^6^13.^~1~^~A~^^^1^474.^542.^5^472.^540.^~2, 3~^~04/01/2012~ -~10994~^~307~^470.^6^11.^~1~^~A~^^^1^430.^509.^5^440.^500.^~2, 3~^~04/01/2012~ -~10994~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~10994~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~10994~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10998~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10998~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10998~^~301~^7.^5^0.^~1~^~A~^^^1^5.^10.^2^5.^7.^~2, 3~^~04/01/2013~ -~10998~^~304~^27.^5^0.^~1~^~A~^^^1^23.^28.^2^23.^29.^~2, 3~^~08/01/2015~ -~10998~^~305~^309.^5^16.^~1~^~A~^^^1^274.^418.^2^237.^379.^~2, 3~^~08/01/2015~ -~10998~^~306~^999.^5^83.^~1~^~A~^^^1^395.^1210.^2^640.^1357.^~2, 3~^~08/01/2015~ -~10998~^~307~^993.^5^45.^~1~^~A~^^^1^886.^1300.^2^797.^1188.^~2, 3~^~08/01/2015~ -~10998~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~10998~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~10998~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~431~^0.^0^^~7~^~Z~^~10130~^^^^^^^^^~04/01/2013~ -~10998~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~435~^4.^0^^~4~^~NC~^~10130~^^^^^^^^^~04/01/2013~ -~10998~^~601~^67.^3^0.^~1~^~A~^^^1^65.^68.^1^64.^68.^~2, 3~^~08/01/2015~ -~11001~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11001~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~301~^32.^10^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~304~^27.^10^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~305~^70.^10^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~306~^79.^10^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~307~^6.^10^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11001~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~321~^87.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11001~^~322~^6.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11001~^~334~^6.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11001~^~338~^0.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11001~^~417~^36.^10^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11001~^~432~^36.^10^0.^~1~^^^^^^^^^^^~03/01/2006~ -~11001~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11003~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11003~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11003~^~301~^215.^6^59.^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~305~^50.^15^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~306~^611.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~318~^2917.^5^1200.^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11003~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~11003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11003~^~417~^85.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11003~^~432~^85.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11003~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11004~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11004~^~268~^88.^0^^~4~^^^^^^^^^^^ -~11004~^~301~^209.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~306~^641.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~318~^2770.^5^1140.^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11004~^~320~^139.^5^57.^~1~^^^^^^^^^^^~06/01/2002~ -~11004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11004~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11004~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11004~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11005~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11005~^~268~^414.^0^^~4~^^^^^^^^^^^ -~11005~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~305~^174.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~306~^922.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~307~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11005~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11005~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11005~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11005~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11006~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11006~^~268~^326.^0^^~4~^^^^^^^^^^^ -~11006~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~304~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~305~^197.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~306~^881.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11006~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11006~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11006~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11006~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11007~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~268~^197.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11007~^~301~^44.^11^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~304~^60.^11^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~305~^90.^11^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~306~^370.^12^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~307~^94.^12^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11007~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~321~^8.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~322~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11007~^~334~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~337~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~338~^464.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~06/01/2005~ -~11007~^~417~^68.^9^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11007~^~432~^68.^9^2.^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11008~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11008~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11008~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~305~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~306~^286.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11008~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11008~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11008~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11008~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11008~^~338~^464.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11008~^~417~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11008~^~432~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11009~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11009~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11009~^~301~^19.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~304~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~305~^58.^4^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~306~^248.^3^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~307~^47.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~318~^154.^4^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11009~^~320~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11009~^~417~^126.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11009~^~432~^126.^3^4.^~1~^^^^^^^^^^^~12/01/1984~ -~11009~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11010~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11010~^~268~^188.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11010~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~305~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~306~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11010~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~321~^7.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~322~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11010~^~334~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11010~^~337~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11010~^~338~^394.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~417~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11010~^~432~^119.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11011~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11011~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11011~^~301~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~12/01/2002~ -~11011~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~ -~11011~^~305~^52.^4^0.^~1~^~A~^^^1^51.^53.^3^50.^53.^~2, 3~^~12/01/2002~ -~11011~^~306~^202.^4^8.^~1~^~A~^^^1^192.^227.^3^175.^228.^~2, 3~^~12/01/2002~ -~11011~^~307~^2.^17^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11011~^~318~^756.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11011~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11011~^~321~^449.^6^76.^~1~^~A~^^^1^317.^581.^2^120.^777.^~4~^~12/01/2002~ -~11011~^~322~^9.^6^5.^~1~^~A~^^^1^0.^17.^2^-12.^30.^~4~^~12/01/2002~ -~11011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11011~^~334~^0.^27^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~ -~11011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11011~^~338~^710.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11011~^~417~^52.^4^6.^~1~^~A~^^^1^40.^70.^3^31.^72.^~2, 3~^~03/01/2006~ -~11011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11011~^~432~^52.^4^6.^~1~^~A~^^^1^40.^70.^3^31.^72.^^~03/01/2006~ -~11011~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11011~^~636~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11012~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11012~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~301~^23.^4^0.^~1~^~A~^^^1^21.^25.^3^20.^25.^~2, 3~^~12/01/2002~ -~11012~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~ -~11012~^~305~^54.^4^2.^~1~^~A~^^^1^49.^62.^3^45.^62.^~2, 3~^~12/01/2002~ -~11012~^~306~^224.^4^7.^~1~^~A~^^^1^203.^237.^3^199.^247.^~2, 3~^~12/01/2002~ -~11012~^~307~^14.^4^1.^~1~^~A~^^^1^11.^16.^3^10.^17.^~2, 3~^~12/01/2002~ -~11012~^~318~^1006.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11012~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11012~^~321~^604.^4^60.^~1~^~A~^^^1^500.^771.^3^410.^796.^~2, 3~^~12/01/2002~ -~11012~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11012~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11012~^~337~^30.^4^2.^~1~^~A~^^^1^26.^36.^3^22.^36.^~2, 3~^~12/01/2002~ -~11012~^~338~^771.^4^78.^~1~^~A~^~11019~^^1^603.^977.^3^521.^1020.^~2, 3~^~03/01/2006~ -~11012~^~417~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^~2, 3~^~12/01/2002~ -~11012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11012~^~432~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^^~03/01/2006~ -~11012~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11013~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11013~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11013~^~301~^15.^166^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~304~^9.^143^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~305~^38.^153^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~306~^172.^112^3.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~307~^284.^21^16.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11013~^~318~^526.^203^11.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11013~^~417~^85.^3^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11013~^~432~^85.^3^10.^~1~^^^^^^^^^^^~12/01/1984~ -~11013~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11015~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11015~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~301~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~305~^43.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~306~^172.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~307~^287.^0^^~4~^~BD~^^^^^^^^^^~05/01/2013~ -~11015~^~318~^822.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11015~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~321~^493.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11015~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~338~^630.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~417~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11015~^~432~^96.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11015~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11018~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11018~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11018~^~301~^25.^43^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~304~^14.^14^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~305~^64.^20^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~306~^253.^15^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~307~^8.^15^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~318~^948.^39^50.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11018~^~320~^47.^39^2.^~1~^^^^^^^^^^^~06/01/2002~ -~11018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11018~^~417~^191.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11018~^~432~^191.^3^9.^~1~^^^^^^^^^^^~12/01/1984~ -~11018~^~435~^191.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11019~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11019~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~301~^18.^38^0.^~6~^~JA~^^^7^9.^26.^37^16.^19.^~4~^~12/01/2002~ -~11019~^~304~^10.^38^0.^~6~^~JA~^^^7^3.^16.^37^9.^11.^~4~^~12/01/2002~ -~11019~^~305~^49.^38^1.^~6~^~JA~^^^7^24.^73.^37^45.^52.^~4~^~12/01/2002~ -~11019~^~306~^172.^38^7.^~6~^~JA~^^^7^69.^292.^37^156.^186.^~4~^~12/01/2002~ -~11019~^~307~^3.^38^0.^~6~^~JA~^^^7^1.^23.^37^1.^4.^~4~^~12/01/2002~ -~11019~^~318~^806.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11019~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~321~^483.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11019~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11019~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11019~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11019~^~338~^618.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11019~^~417~^135.^6^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11019~^~432~^135.^6^25.^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11022~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11022~^~268~^126.^0^^~4~^^^^^^^^^^^ -~11022~^~301~^84.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~304~^85.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~305~^99.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~306~^608.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~318~^1734.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11022~^~320~^87.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11022~^~417~^128.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11022~^~432~^128.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11022~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11023~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11023~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~304~^94.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~305~^77.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~306~^602.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~318~^2416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11023~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~321~^1450.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~322~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11023~^~334~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~337~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~338~^2638.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~417~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11023~^~432~^88.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11023~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11024~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11024~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11024~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~305~^31.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~306~^296.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~318~^471.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~11024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11024~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~11024~^~321~^190.^10^^~1~^~A~^^^1^150.^230.^^^^~2~^~05/01/2003~ -~11024~^~322~^185.^10^^~1~^~A~^^^1^150.^220.^^^^~2~^~05/01/2003~ -~11024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11024~^~338~^170.^10^^~1~^~A~^^^1^100.^240.^^^^~2~^~05/01/2003~ -~11024~^~417~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11024~^~432~^72.^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11024~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11025~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11025~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11025~^~301~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~306~^319.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11025~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11025~^~321~^68.^0^^~4~^~O~^~11478~^^^^^^^^^~05/01/2007~ -~11025~^~322~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11025~^~334~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11025~^~337~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11025~^~338~^1323.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11025~^~417~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11025~^~432~^51.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11025~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11026~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~268~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11026~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~304~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~305~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~306~^533.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11026~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11026~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11026~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11026~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11026~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11026~^~636~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11027~^~268~^50.^0^^~4~^^^^^^^^^^^ -~11027~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~306~^533.^7^45.^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11027~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11027~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11027~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11027~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11028~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11028~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11028~^~301~^8.^7^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~304~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~305~^25.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~306~^80.^7^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~307~^7.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11028~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11028~^~321~^8.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~322~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11028~^~334~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~337~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~338~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11028~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11028~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11029~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11029~^~268~^121.^0^^~4~^^^^^^^^^^^ -~11029~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~306~^187.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~307~^6.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~318~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11029~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11029~^~417~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11029~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11029~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11030~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11030~^~268~^138.^0^^~4~^^^^^^^^^^^ -~11030~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~307~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~318~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11030~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11030~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11030~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11030~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11031~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11031~^~268~^473.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~301~^34.^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~304~^58.^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~305~^136.^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~306~^467.^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~307~^8.^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~318~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11031~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~321~^126.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11031~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11031~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11031~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11031~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11031~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11031~^~432~^34.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11031~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11032~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11032~^~268~^515.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11032~^~301~^32.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~304~^74.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~305~^130.^12^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~306~^570.^12^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~307~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~318~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11032~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11032~^~321~^182.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~11032~^~322~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11032~^~334~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11032~^~337~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11032~^~338~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11032~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11032~^~432~^26.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11032~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11033~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11033~^~268~^297.^0^^~4~^^^^^^^^^^^ -~11033~^~301~^28.^115^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~304~^34.^82^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~305~^71.^120^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~306~^285.^106^7.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~307~^252.^37^8.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~318~^150.^122^8.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11033~^~320~^8.^122^0.^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11033~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11033~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11033~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11037~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11037~^~268~^444.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11037~^~301~^24.^22^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~304~^38.^8^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~305~^74.^10^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~306~^478.^8^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~307~^58.^8^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~318~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11037~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11037~^~321~^134.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11037~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11037~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11037~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11037~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11037~^~417~^32.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11037~^~432~^32.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11037~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11038~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~301~^30.^47^0.^~1~^^^^5^20.^39.^35^28.^31.^~2, 3~^~12/01/2002~ -~11038~^~304~^42.^48^1.^~1~^^^^5^26.^57.^31^40.^44.^~2, 3~^~12/01/2002~ -~11038~^~305~^97.^47^2.^~1~^^^^5^69.^128.^27^92.^100.^~2, 3~^~12/01/2002~ -~11038~^~306~^304.^48^11.^~1~^^^^5^74.^440.^39^279.^327.^~2, 3~^~12/01/2002~ -~11038~^~307~^69.^48^3.^~1~^^^^5^26.^147.^37^61.^77.^~2, 3~^~12/01/2002~ -~11038~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11038~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~321~^114.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11038~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11038~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11039~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11039~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11039~^~301~^35.^66^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~304~^50.^20^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~305~^104.^26^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~306~^452.^29^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~307~^52.^28^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~318~^189.^55^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11039~^~320~^9.^55^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11039~^~417~^28.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11039~^~432~^28.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11039~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11040~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11040~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11040~^~301~^28.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~304~^56.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~305~^112.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~306~^411.^6^24.^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~307~^29.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11040~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11040~^~321~^100.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11040~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11040~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11040~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11040~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11040~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11040~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11040~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11043~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11043~^~268~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~301~^13.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~304~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~305~^54.^8^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~306~^149.^8^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~307~^6.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11043~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11043~^~322~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11043~^~334~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11043~^~417~^61.^16^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11043~^~432~^61.^16^6.^~1~^^^^^^^^^^^~03/01/2007~ -~11043~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11043~^~636~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11044~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11044~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~306~^101.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11044~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11044~^~321~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~322~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11044~^~334~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~337~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~338~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11044~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11044~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11045~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11045~^~268~^209.^0^^~4~^^^^^^^^^^^ -~11045~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~304~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~305~^79.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~306~^219.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~307~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~318~^31.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11045~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11045~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11045~^~432~^70.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11045~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11045~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11046~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11046~^~268~^280.^0^^~4~^^^^^^^^^^^ -~11046~^~301~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~304~^101.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~305~^100.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~306~^307.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~307~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~318~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11046~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11046~^~417~^132.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11046~^~432~^132.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11046~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11047~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11047~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11047~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~304~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~305~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~307~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~318~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~11047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11047~^~417~^106.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11047~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11047~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11047~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11048~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11048~^~268~^711.^0^^~4~^^^^^^^^^^^ -~11048~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~304~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~305~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~306~^756.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~307~^92.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11048~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11048~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11048~^~432~^50.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11048~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11049~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11049~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11049~^~301~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~304~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~305~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~306~^646.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~307~^83.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11049~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11049~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11049~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11049~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11050~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11050~^~268~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11050~^~301~^29.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~305~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~306~^109.^12^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~307~^334.^12^16.^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~318~^228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11050~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11050~^~321~^137.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11050~^~338~^331.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11050~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11050~^~432~^18.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11050~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11052~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11052~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11052~^~301~^37.^153^1.^~6~^~JA~^^^2^37.^49.^148^34.^39.^~2, 3~^~04/01/2009~ -~11052~^~304~^25.^151^0.^~6~^~JA~^^^2^18.^28.^148^23.^26.^~2, 3~^~04/01/2009~ -~11052~^~305~^38.^140^0.^~6~^~JA~^^^2^36.^45.^136^36.^39.^~2, 3~^~04/01/2009~ -~11052~^~306~^211.^154^4.^~6~^~JA~^^^2^209.^300.^150^201.^219.^~2, 3~^~04/01/2009~ -~11052~^~307~^6.^154^0.^~6~^~JA~^^^2^2.^8.^149^5.^6.^~1, 2, 3~^~04/01/2009~ -~11052~^~318~^690.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11052~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11052~^~321~^379.^77^48.^~1~^~A~^^^1^252.^510.^4^243.^515.^~4~^~08/01/2002~ -~11052~^~322~^69.^70^10.^~1~^~A~^^^1^44.^90.^3^37.^101.^~4~^~08/01/2002~ -~11052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11052~^~334~^0.^21^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2002~ -~11052~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~08/01/2002~ -~11052~^~338~^640.^6^50.^~1~^~A~^^^1^590.^690.^1^4.^1275.^~4~^~08/01/2002~ -~11052~^~417~^33.^8^2.^~6~^~JA~^^^2^19.^37.^5^25.^39.^~2, 3~^~04/01/2009~ -~11052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11052~^~432~^33.^8^2.^~6~^~JA~^^^2^19.^37.^5^25.^39.^^~05/01/2009~ -~11052~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11053~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11053~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11053~^~301~^44.^27^1.^~1~^^^^4^28.^72.^26^40.^48.^~4~^~08/01/2002~ -~11053~^~304~^18.^28^0.^~1~^^^^4^7.^25.^27^16.^20.^~4~^~08/01/2002~ -~11053~^~305~^29.^27^1.^~1~^^^^4^19.^42.^26^26.^31.^~4~^~08/01/2002~ -~11053~^~306~^146.^28^8.^~1~^^^^4^56.^250.^27^127.^163.^~4~^~08/01/2002~ -~11053~^~307~^1.^28^0.^~1~^^^^4^0.^3.^27^0.^0.^~4~^~08/01/2002~ -~11053~^~318~^633.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11053~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11053~^~321~^380.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~ -~11053~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~11053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11053~^~334~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~ -~11053~^~337~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~ -~11053~^~338~^641.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~ -~11053~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11053~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11053~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11054~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11054~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11054~^~301~^29.^53^0.^~6~^~JA~^^^4^15.^46.^36^27.^30.^~2, 3~^~04/01/2011~ -~11054~^~304~^13.^24^0.^~6~^~JA~^^^2^8.^16.^20^11.^13.^~2, 3~^~04/01/2011~ -~11054~^~305~^18.^24^0.^~6~^~JA~^^^2^13.^22.^22^17.^19.^~2, 3~^~04/01/2011~ -~11054~^~306~^92.^32^1.^~6~^~JA~^^^4^48.^119.^17^88.^95.^~2, 3~^~04/01/2011~ -~11054~^~307~^192.^52^13.^~6~^~JA~^^^4^2.^369.^34^165.^218.^~2, 3~^~04/01/2011~ -~11054~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11054~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11054~^~321~^91.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11054~^~322~^116.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11054~^~334~^18.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11054~^~337~^0.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~04/01/2011~ -~11054~^~338~^338.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11054~^~417~^26.^3^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11054~^~432~^26.^3^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11054~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11056~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11056~^~268~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~301~^37.^16^1.^~1~^~A~^^^2^26.^44.^6^33.^39.^~2, 3~^~03/01/2016~ -~11056~^~304~^13.^16^0.^~1~^~A~^^^2^11.^14.^6^12.^13.^~2, 3~^~04/01/2011~ -~11056~^~305~^22.^16^0.^~1~^~A~^^^2^16.^27.^6^20.^22.^~2, 3~^~03/01/2016~ -~11056~^~306~^96.^12^3.^~1~^~A~^^^1^76.^114.^5^86.^104.^~2, 3~^~08/01/2014~ -~11056~^~307~^268.^12^11.^~1~^~A~^^^1^183.^328.^5^238.^297.^~2, 3~^~03/01/2016~ -~11056~^~318~^353.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11056~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11056~^~321~^122.^2^^~1~^~A~^^^1^64.^179.^1^^^^~04/01/2011~ -~11056~^~322~^156.^2^^~1~^~A~^^^1^141.^171.^1^^^^~04/01/2011~ -~11056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11056~^~334~^24.^2^^~1~^~A~^^^1^11.^38.^1^^^~1~^~04/01/2011~ -~11056~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~04/01/2011~ -~11056~^~338~^384.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~03/01/2016~ -~11056~^~417~^24.^6^2.^~1~^~A~^^^2^17.^38.^1^3.^44.^~2, 3~^~03/01/2016~ -~11056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11056~^~432~^24.^6^2.^~1~^~A~^^^2^17.^38.^1^3.^44.^~2, 3~^~03/01/2016~ -~11056~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11058~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11058~^~268~^67.^0^^~4~^^^^^^^^^^^ -~11058~^~301~^22.^22^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~304~^13.^22^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~305~^16.^22^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~306~^93.^22^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~307~^373.^22^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~318~^525.^22^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11058~^~320~^26.^22^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11058~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11058~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11058~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11060~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11060~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11060~^~301~^42.^102^1.^~6~^~JA~^^^2^42.^51.^98^39.^45.^~2, 3~^~03/01/2008~ -~11060~^~304~^22.^31^0.^~6~^~JA~^^^2^21.^24.^26^21.^22.^~2, 3~^~03/01/2008~ -~11060~^~305~^32.^42^1.^~6~^~JA~^^^2^32.^35.^38^28.^35.^~2, 3~^~03/01/2008~ -~11060~^~306~^186.^30^11.^~6~^~JA~^^^2^169.^193.^26^162.^208.^~2, 3~^~03/01/2008~ -~11060~^~307~^3.^37^0.^~6~^~JA~^^^2^3.^9.^35^2.^4.^~2, 3~^~03/01/2008~ -~11060~^~318~^547.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11060~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11060~^~321~^292.^5^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11060~^~322~^72.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~ -~11060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11060~^~334~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~ -~11060~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~ -~11060~^~338~^663.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~ -~11060~^~417~^15.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11060~^~432~^15.^3^2.^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11061~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11061~^~268~^117.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~11061~^~301~^42.^40^2.^~1~^^^^1^18.^72.^20^36.^47.^~4~^~03/01/2006~ -~11061~^~304~^19.^40^0.^~1~^^^^1^12.^25.^20^17.^20.^~4~^~03/01/2006~ -~11061~^~305~^29.^40^0.^~1~^^^^1^22.^40.^20^27.^31.^~4~^~03/01/2006~ -~11061~^~306~^159.^40^10.^~1~^^^^1^21.^225.^20^137.^181.^~4~^~03/01/2006~ -~11061~^~307~^1.^40^0.^~1~^^^^1^0.^2.^20^0.^0.^~4~^~03/01/2006~ -~11061~^~318~^419.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11061~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11061~^~321~^224.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~ -~11061~^~322~^55.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~ -~11061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11061~^~334~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~08/01/2002~ -~11061~^~337~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~08/01/2002~ -~11061~^~338~^508.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~ -~11061~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11061~^~432~^23.^7^3.^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11061~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11062~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11062~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11062~^~301~^61.^3^3.^~1~^~A~^^^1^57.^67.^2^48.^74.^~2, 3~^~03/01/2008~ -~11062~^~304~^29.^3^2.^~1~^~A~^^^1^24.^31.^2^18.^38.^~2, 3~^~03/01/2008~ -~11062~^~305~^42.^3^2.^~1~^~A~^^^1^37.^45.^2^31.^53.^~2, 3~^~03/01/2008~ -~11062~^~306~^237.^3^15.^~1~^~A~^^^1^206.^259.^2^168.^305.^~2, 3~^~03/01/2008~ -~11062~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~1, 2, 3~^~03/01/2008~ -~11062~^~321~^277.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~322~^68.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~334~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~337~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~338~^629.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~417~^12.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~432~^12.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2008~ -~11063~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11063~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11063~^~301~^55.^4^1.^~1~^~A~^^^1^53.^58.^3^51.^58.^~2, 3~^~04/01/2009~ -~11063~^~304~^28.^4^2.^~1~^~A~^^^1^21.^33.^3^19.^36.^~2, 3~^~04/01/2009~ -~11063~^~305~^49.^4^1.^~1~^~A~^^^1^44.^53.^3^42.^54.^~2, 3~^~04/01/2009~ -~11063~^~306~^323.^4^17.^~1~^~A~^^^1^284.^363.^3^266.^378.^~2, 3~^~04/01/2009~ -~11063~^~307~^3.^4^0.^~1~^~A~^^^1^3.^3.^3^2.^3.^~2, 3~^~04/01/2009~ -~11063~^~417~^47.^2^^~1~^~A~^^^1^46.^48.^1^^^^~04/01/2009~ -~11063~^~432~^47.^2^^~1~^~A~^^^1^46.^48.^1^^^^~04/01/2009~ -~11080~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11080~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~11080~^~301~^16.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~304~^23.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~305~^40.^5^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~306~^325.^11^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~307~^78.^13^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11080~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~321~^20.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11080~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~417~^109.^8^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11080~^~432~^109.^8^12.^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11080~^~636~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11081~^~268~^184.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11081~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~306~^305.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11081~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11081~^~321~^21.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11081~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11081~^~432~^80.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11081~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11081~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11082~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~268~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~301~^18.^67^0.^~1~^^^^8^8.^31.^66^16.^18.^~4~^~09/01/2002~ -~11082~^~304~^18.^48^0.^~1~^^^^5^9.^26.^47^16.^18.^~4~^~09/01/2002~ -~11082~^~305~^15.^47^0.^~1~^^^^5^9.^18.^46^14.^15.^~4~^~09/01/2002~ -~11082~^~306~^159.^67^4.^~1~^^^^7^67.^256.^66^150.^167.^~4~^~09/01/2002~ -~11082~^~307~^143.^68^9.^~1~^^^^8^5.^304.^67^125.^161.^~4~^~09/01/2002~ -~11082~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11082~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~321~^14.^0^^~4~^~T~^^^^^^^^^^~09/01/2002~ -~11082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~417~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11082~^~432~^29.^3^4.^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11084~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11084~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~301~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~305~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~306~^148.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~307~^194.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~ -~11084~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11084~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~321~^15.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11084~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11084~^~432~^30.^0^^~4~^^^^^^^^^^^~07/01/2007~ -~11084~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11086~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11086~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~301~^117.^2^^~1~^^^^1^114.^119.^1^^^^~12/01/2002~ -~11086~^~304~^70.^2^^~1~^^^^1^68.^72.^1^^^^~12/01/2002~ -~11086~^~305~^41.^1^^~1~^^^^^41.^41.^^^^^~12/01/2002~ -~11086~^~306~^762.^6^154.^~1~^^^^1^454.^923.^2^98.^1424.^~4~^~12/01/2002~ -~11086~^~307~^226.^6^18.^~1~^^^^1^189.^248.^2^145.^306.^~4~^~12/01/2002~ -~11086~^~318~^6326.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11086~^~320~^316.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11086~^~321~^3794.^3^1233.^~1~^~A~^^^1^2560.^5028.^1^-11883.^19471.^~4~^~11/01/2002~ -~11086~^~322~^3.^36^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11086~^~334~^0.^36^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11086~^~338~^1503.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11086~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11086~^~432~^15.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11086~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11086~^~636~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11087~^~268~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~301~^114.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~305~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~306~^909.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~307~^241.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~318~^7654.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11087~^~320~^383.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~321~^4590.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~322~^4.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11087~^~334~^0.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~337~^0.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~338~^1819.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11087~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11087~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11088~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11088~^~268~^301.^0^^~4~^^^^^^^^^^^ -~11088~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~305~^95.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~306~^250.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~318~^350.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11088~^~320~^18.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11088~^~417~^96.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11088~^~432~^96.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11088~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11089~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11089~^~268~^259.^0^^~4~^^^^^^^^^^^ -~11089~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~305~^73.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~307~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~318~^270.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11089~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11089~^~417~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11089~^~432~^58.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11089~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11090~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11090~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11090~^~301~^47.^33^5.^~6~^~JA~^^^3^39.^53.^1^-18.^111.^~4~^~04/01/2003~ -~11090~^~304~^21.^33^2.^~6~^~JA~^^^3^18.^24.^1^-5.^47.^~4~^~04/01/2003~ -~11090~^~305~^66.^33^3.^~6~^~JA~^^^3^63.^71.^1^27.^103.^~4~^~04/01/2003~ -~11090~^~306~^316.^37^7.^~11~^~JO~^^^4^296.^322.^2^284.^346.^~4~^~04/01/2003~ -~11090~^~307~^33.^42^5.^~11~^~JO~^^^4^27.^48.^2^9.^55.^~4~^~04/01/2003~ -~11090~^~318~^623.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~11090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11090~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~11090~^~321~^361.^124^7.^~11~^~JO~^^^5^54.^1080.^3^339.^382.^~2, 3~^~12/01/2004~ -~11090~^~322~^25.^55^3.^~11~^~JO~^^^4^0.^179.^2^10.^38.^~1, 2, 3~^~04/01/2003~ -~11090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11090~^~334~^1.^52^0.^~11~^~JO~^^^4^0.^8.^^^^~1, 2, 3~^~12/01/2004~ -~11090~^~337~^0.^10^0.^~11~^~JO~^^^4^0.^0.^^^^~1, 2, 3~^~12/01/2004~ -~11090~^~338~^1403.^7^40.^~1~^~A~^^^3^431.^2060.^4^1286.^1518.^~2, 3~^~12/01/2004~ -~11090~^~417~^63.^27^12.^~11~^~JO~^^^4^42.^88.^2^8.^117.^~4~^~05/01/2003~ -~11090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11090~^~432~^63.^27^12.^~11~^~JO~^^^4^42.^88.^2^8.^117.^^~03/01/2006~ -~11090~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~11090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11091~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11091~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~301~^40.^4^3.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~304~^21.^4^1.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~305~^67.^4^1.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~306~^293.^4^11.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~307~^41.^4^7.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~318~^1548.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11091~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11091~^~321~^929.^17^42.^~1~^~A~^^^3^407.^1681.^2^734.^1123.^~2, 3~^~12/01/2004~ -~11091~^~322~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~11091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11091~^~334~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~11091~^~337~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~11091~^~338~^1080.^12^98.^~1~^~A~^^^3^447.^1937.^1^-129.^2289.^~2, 3~^~12/01/2004~ -~11091~^~417~^108.^4^30.^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11091~^~432~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11091~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11092~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11092~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~301~^56.^45^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~304~^18.^13^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~305~^50.^18^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~306~^212.^11^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~307~^24.^14^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~318~^1034.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11092~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~321~^610.^1^^~1~^~A~^^^1^270.^950.^1^^^^~10/01/2002~ -~11092~^~322~^20.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11092~^~334~^1.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11092~^~337~^0.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~10/01/2002~ -~11092~^~338~^1120.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11092~^~417~^67.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11092~^~432~^67.^3^1.^~1~^^^^^^^^^^^~01/01/2007~ -~11092~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11093~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11093~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11093~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11093~^~268~^117.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11093~^~301~^33.^20^1.^~1~^^^^1^16.^43.^19^30.^36.^~4~^~10/01/2002~ -~11093~^~304~^13.^20^0.^~1~^^^^1^9.^20.^19^11.^14.^~4~^~10/01/2002~ -~11093~^~305~^49.^20^1.^~1~^^^^1^36.^71.^19^45.^53.^~4~^~10/01/2002~ -~11093~^~306~^142.^20^11.^~1~^^^^1^73.^311.^19^118.^164.^~4~^~10/01/2002~ -~11093~^~307~^11.^20^0.^~1~^^^^1^4.^18.^19^9.^13.^~4~^~10/01/2002~ -~11093~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11093~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11093~^~321~^597.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~322~^19.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11093~^~334~^1.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~337~^0.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~338~^1095.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~417~^56.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11093~^~432~^56.^3^4.^~1~^^^^^^^^^^^~02/01/2007~ -~11093~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11094~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11094~^~268~^121.^0^^~4~^^^^^^^^^^^ -~11094~^~301~^41.^49^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~304~^16.^17^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~305~^59.^30^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~306~^250.^21^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~307~^17.^24^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~318~^1138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11094~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11094~^~321~^675.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~322~^15.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11094~^~334~^1.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~337~^0.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~338~^1525.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~417~^94.^9^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11094~^~432~^94.^9^9.^~1~^^^^^^^^^^^~10/01/2002~ -~11094~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11095~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11095~^~268~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~301~^51.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~304~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~306~^180.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~307~^24.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11095~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~321~^597.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~322~^19.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11095~^~334~^1.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~337~^0.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11095~^~338~^1095.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~417~^30.^16^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11095~^~432~^30.^16^6.^~1~^^^^^^^^^^^~02/01/2007~ -~11095~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11096~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11096~^~301~^108.^4^10.^~1~^~A~^^^2^86.^130.^2^61.^154.^~2, 3~^~12/01/2002~ -~11096~^~304~^22.^4^3.^~1~^~A~^^^2^15.^30.^2^7.^36.^~2, 3~^~12/01/2002~ -~11096~^~305~^73.^4^9.^~1~^~A~^^^2^51.^92.^2^33.^111.^~2, 3~^~12/01/2002~ -~11096~^~306~^196.^4^30.^~1~^~A~^^^2^108.^315.^2^63.^327.^~2, 3~^~12/01/2002~ -~11096~^~307~^33.^4^4.^~1~^~A~^^^2^19.^57.^2^13.^52.^~2, 3~^~12/01/2002~ -~11096~^~318~^2622.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~320~^131.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11096~^~321~^1573.^3^33.^~1~^~A~^^^2^696.^3227.^1^1149.^1996.^~2, 3~^~12/01/2002~ -~11096~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11096~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11096~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11096~^~338~^1121.^3^9.^~1~^~A~^^^2^391.^2553.^1^1006.^1235.^~2, 3~^~12/01/2002~ -~11096~^~417~^83.^4^7.^~1~^~A~^^^2^68.^108.^2^51.^115.^~2, 3~^~12/01/2002~ -~11096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~432~^83.^4^7.^~1~^~A~^^^2^68.^108.^2^51.^115.^^~03/01/2006~ -~11096~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11097~^~301~^118.^2^^~1~^~A~^^^1^112.^123.^1^^^^~12/01/2002~ -~11097~^~304~^27.^2^^~1~^~A~^^^1^25.^29.^1^^^^~12/01/2002~ -~11097~^~305~^82.^2^^~1~^~A~^^^1^79.^84.^1^^^^~12/01/2002~ -~11097~^~306~^343.^2^^~1~^~A~^^^1^333.^353.^1^^^^~12/01/2002~ -~11097~^~307~^56.^2^^~1~^~A~^^^1^35.^78.^1^^^^~12/01/2002~ -~11097~^~318~^4533.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~320~^227.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11097~^~321~^2720.^2^^~1~^~A~^^^1^2509.^2931.^1^^^^~12/01/2002~ -~11097~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~ -~11097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11097~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~ -~11097~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~ -~11097~^~338~^1683.^2^^~1~^~A~^^^1^1406.^1960.^1^^^^~12/01/2002~ -~11097~^~417~^71.^2^^~1~^~A~^^^1^51.^90.^1^^^^~12/01/2002~ -~11097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~432~^71.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11097~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11098~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11098~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11098~^~301~^42.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~305~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~306~^389.^4^21.^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~307~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~318~^754.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11098~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11098~^~321~^450.^21^56.^~1~^~A~^^^1^340.^530.^2^204.^695.^~4~^~11/01/2002~ -~11098~^~322~^6.^19^5.^~1~^~A~^^^1^0.^11.^1^-66.^77.^~4~^~11/01/2002~ -~11098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11098~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11098~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11098~^~338~^1590.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11098~^~417~^61.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11098~^~432~^61.^3^6.^~1~^^^^^^^^^^^~02/01/2007~ -~11098~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11098~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11099~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~318~^775.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11099~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11099~^~321~^465.^5^15.^~1~^~A~^^^1^450.^480.^1^274.^655.^~4~^~11/01/2002~ -~11099~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11099~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11099~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11099~^~338~^1290.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~11099~^~417~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11099~^~432~^60.^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11100~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11100~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11100~^~301~^26.^36^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~304~^20.^14^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~305~^62.^25^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~306~^370.^19^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~307~^10.^19^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~318~^617.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11100~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11100~^~321~^370.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11100~^~322~^0.^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11100~^~334~^0.^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11100~^~417~^123.^9^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11100~^~432~^123.^9^25.^~1~^^^^^^^^^^^~07/01/2003~ -~11100~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11101~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~262~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~263~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~268~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~301~^26.^18^0.^~1~^~A~^^^7^20.^32.^17^24.^27.^~4~^~11/01/2002~ -~11101~^~304~^18.^18^0.^~1~^~A~^^^7^11.^25.^17^16.^19.^~4~^~11/01/2002~ -~11101~^~305~^56.^18^2.^~1~^~A~^^^7^37.^84.^17^51.^61.^~4~^~11/01/2002~ -~11101~^~306~^290.^18^13.^~1~^~A~^^^7^176.^383.^17^261.^318.^~4~^~11/01/2002~ -~11101~^~307~^15.^18^2.^~1~^~A~^^^7^6.^42.^17^10.^19.^~4~^~11/01/2002~ -~11101~^~318~^926.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11101~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~321~^555.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~322~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11101~^~334~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~337~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~338~^1541.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~417~^101.^8^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11101~^~432~^101.^8^19.^~1~^^^^^^^^^^^~02/01/2007~ -~11101~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11104~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~268~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11104~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~305~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~306~^308.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11104~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11104~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11104~^~432~^23.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11104~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11105~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11105~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~301~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~305~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~306~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11105~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~321~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~322~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11105~^~334~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~337~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~338~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11105~^~432~^20.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11105~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11106~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11106~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11106~^~301~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~306~^655.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11106~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11106~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11106~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11106~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11107~^~208~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11107~^~268~^33.^0^^~4~^^^^^^^^^^^ -~11107~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~306~^354.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11107~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11107~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11107~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11107~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11107~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11108~^~208~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11108~^~268~^13.^0^^~4~^^^^^^^^^^^ -~11108~^~301~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~306~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11108~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11108~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11108~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11108~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11108~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11109~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11109~^~268~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~301~^40.^30^1.^~6~^~JA~^^^5^28.^70.^11^36.^42.^~2, 3~^~03/01/2006~ -~11109~^~304~^12.^31^0.^~6~^~JA~^^^5^9.^19.^20^11.^13.^~2, 3~^~03/01/2006~ -~11109~^~305~^26.^30^0.^~6~^~JA~^^^5^18.^35.^19^24.^27.^~2, 3~^~03/01/2006~ -~11109~^~306~^170.^31^4.^~6~^~JA~^^^5^130.^257.^23^160.^179.^~2, 3~^~03/01/2006~ -~11109~^~307~^18.^46^1.^~1~^^^^^^^^^^^~03/01/2006~ -~11109~^~318~^98.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11109~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11109~^~321~^42.^25^0.^~1~^~A~^^^2^21.^133.^2^38.^45.^~2, 3~^~03/01/2006~ -~11109~^~322~^33.^3^^~1~^~A~^^^2^0.^49.^^^^~2, 3~^~03/01/2006~ -~11109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11109~^~334~^0.^3^^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~03/01/2006~ -~11109~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11109~^~338~^30.^22^10.^~1~^~A~^^^1^10.^310.^1^-102.^163.^~2, 3~^~03/01/2006~ -~11109~^~417~^43.^19^7.^~1~^^^^^^^^^^^~03/01/2006~ -~11109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11109~^~432~^43.^19^7.^~1~^^^^^^^^^^^~03/01/2006~ -~11109~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11109~^~636~^11.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11110~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11110~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~301~^48.^4^5.^~1~^~A~^^^1^38.^65.^3^30.^66.^~2, 3~^~03/01/2006~ -~11110~^~304~^15.^4^0.^~1~^~A~^^^1^13.^17.^3^12.^17.^~2, 3~^~03/01/2006~ -~11110~^~305~^33.^4^0.^~1~^~A~^^^1^32.^35.^3^30.^35.^~2, 3~^~03/01/2006~ -~11110~^~306~^196.^4^8.^~1~^~A~^^^1^186.^221.^3^169.^222.^~2, 3~^~03/01/2006~ -~11110~^~307~^8.^29^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11110~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11110~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11110~^~321~^48.^4^19.^~1~^~A~^^^1^18.^104.^3^-15.^110.^~2, 3~^~03/01/2006~ -~11110~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11110~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~338~^27.^0^^~4~^~BFSY~^~11109~^^^^^^^^^~03/01/2006~ -~11110~^~417~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^~2, 3~^~03/01/2006~ -~11110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11110~^~432~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^^~03/01/2006~ -~11110~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11110~^~636~^10.^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11112~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11112~^~268~^130.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~301~^45.^4^1.^~1~^~A~^^^1^43.^48.^3^41.^48.^~2, 3~^~12/01/2002~ -~11112~^~304~^16.^4^1.^~1~^~A~^^^1^14.^20.^3^11.^20.^~2, 3~^~12/01/2002~ -~11112~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~12/01/2002~ -~11112~^~306~^243.^4^11.^~1~^~A~^^^1^221.^274.^3^206.^278.^~2, 3~^~12/01/2002~ -~11112~^~307~^27.^4^1.^~1~^~A~^^^1^26.^33.^3^21.^33.^~2, 3~^~12/01/2002~ -~11112~^~318~^1116.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~11112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11112~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~11112~^~321~^670.^4^410.^~1~^~A~^^^1^28.^1800.^3^-637.^1977.^~2, 3~^~11/01/2002~ -~11112~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~11112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11112~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~ -~11112~^~337~^20.^4^15.^~1~^~A~^^^1^0.^64.^3^-28.^68.^~1, 2, 3~^~11/01/2002~ -~11112~^~338~^329.^4^254.^~1~^~A~^^^1^31.^1090.^3^-482.^1140.^~2, 3~^~06/01/2006~ -~11112~^~417~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^~2, 3~^~12/01/2002~ -~11112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11112~^~432~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^^~06/01/2006~ -~11112~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11113~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11113~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11113~^~301~^42.^3^2.^~1~^~A~^^^1^36.^46.^2^29.^54.^~2, 3~^~12/01/2002~ -~11113~^~304~^17.^3^1.^~1~^~A~^^^1^16.^20.^2^11.^23.^~2, 3~^~12/01/2002~ -~11113~^~305~^33.^3^2.^~1~^~A~^^^1^30.^39.^2^20.^45.^~2, 3~^~12/01/2002~ -~11113~^~306~^262.^3^28.^~1~^~A~^^^1^212.^309.^2^141.^382.^~2, 3~^~12/01/2002~ -~11113~^~307~^28.^3^1.^~1~^~A~^^^1^25.^31.^2^20.^34.^~2, 3~^~03/01/2006~ -~11113~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11113~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11113~^~321~^20.^4^12.^~1~^~A~^^^1^3.^54.^3^-18.^57.^~1, 2, 3~^~12/01/2002~ -~11113~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11113~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11113~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11113~^~338~^20.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~11113~^~417~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~12/01/2002~ -~11113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11113~^~432~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^^~03/01/2006~ -~11113~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11113~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11114~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11114~^~268~^113.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11114~^~301~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~304~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~306~^230.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~307~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~318~^1000.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~319~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~321~^600.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~322~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11114~^~334~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~338~^77.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~417~^80.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11114~^~432~^80.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11114~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11115~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11115~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11115~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~306~^184.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~307~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~318~^889.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11115~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11115~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11115~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11115~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11115~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11116~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11116~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~301~^105.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~304~^19.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~306~^252.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~307~^65.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~318~^4468.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11116~^~320~^223.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~321~^2681.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11116~^~322~^1.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11116~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11116~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11116~^~338~^40.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11116~^~417~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11116~^~432~^66.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11116~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11117~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11117~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~306~^371.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~307~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~318~^4249.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11117~^~320~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~321~^2549.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11117~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~338~^38.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11117~^~432~^41.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11117~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11118~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~301~^33.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~304~^14.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~305~^24.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~306~^151.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~307~^498.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~319~^0.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~321~^55.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~322~^1.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~334~^0.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~337~^0.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~338~^49.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~417~^52.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~432~^52.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2014~ -~11118~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11119~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11119~^~268~^67.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11119~^~301~^77.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~304~^13.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~305~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~306~^238.^9^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~307~^9.^15^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~318~^318.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11119~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~321~^190.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11119~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11119~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~338~^48.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~417~^79.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11119~^~432~^79.^3^6.^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11120~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11120~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11120~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~318~^967.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11120~^~320~^48.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11120~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11120~^~432~^53.^0^^~1~^^^^^^^^^^^~08/01/2001~ -~11120~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2001~ -~11120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11122~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11122~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11122~^~301~^70.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~305~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~306~^400.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~307~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11122~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11122~^~417~^68.^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11122~^~432~^68.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2006~ -~11122~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11122~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11123~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11123~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11123~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~306~^392.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~307~^176.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~318~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11123~^~320~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11123~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11123~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11123~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11123~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11124~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11124~^~268~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~301~^33.^75^1.^~6~^~JA~^^^7^9.^42.^6^30.^35.^~2~^~03/01/2003~ -~11124~^~304~^12.^75^0.^~6~^~JA~^^^7^7.^19.^6^11.^13.^~2~^~03/01/2003~ -~11124~^~305~^35.^75^0.^~6~^~JA~^^^7^20.^44.^6^32.^36.^~2~^~03/01/2003~ -~11124~^~306~^320.^76^8.^~6~^~JA~^^^7^217.^430.^6^299.^340.^~2~^~03/01/2003~ -~11124~^~307~^69.^81^3.^~6~^~JA~^^^7^23.^104.^6^60.^76.^~2~^~03/01/2003~ -~11124~^~318~^16706.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11124~^~320~^835.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~321~^8285.^197^1082.^~11~^~JO~^^^14^1990.^21000.^20^6027.^10542.^~4~^~08/01/2004~ -~11124~^~322~^3477.^190^531.^~1~^~A~^^^12^910.^9710.^17^2354.^4599.^~4~^~08/01/2004~ -~11124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11124~^~334~^0.^45^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11124~^~337~^1.^8^0.^~1~^~A~^^^2^0.^4.^4^-1.^3.^~1, 4~^~08/01/2004~ -~11124~^~338~^256.^10^62.^~11~^~JO~^^^1^70.^450.^5^95.^417.^~4~^~08/01/2007~ -~11124~^~417~^19.^19^5.^~6~^~JA~^^^2^0.^70.^1^-46.^84.^~2~^~03/01/2003~ -~11124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11124~^~432~^19.^19^5.^~6~^~JA~^^^2^0.^70.^1^-46.^84.^^~08/01/2007~ -~11124~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11125~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11125~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~301~^30.^4^1.^~1~^~A~^^^1^27.^33.^3^26.^33.^~2, 3~^~04/01/2003~ -~11125~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~04/01/2003~ -~11125~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~04/01/2003~ -~11125~^~306~^235.^4^18.^~1~^~A~^^^1^201.^283.^3^177.^292.^~2, 3~^~04/01/2003~ -~11125~^~307~^58.^4^5.^~1~^~A~^^^1^46.^71.^3^41.^74.^~2, 3~^~04/01/2003~ -~11125~^~318~^17033.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11125~^~320~^852.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~321~^8332.^21^95.^~1~^~A~^^^2^4330.^10775.^3^8029.^8634.^~2, 3~^~04/01/2003~ -~11125~^~322~^3776.^21^47.^~1~^~A~^^^2^2200.^5200.^3^3623.^3928.^~2, 3~^~04/01/2003~ -~11125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11125~^~334~^0.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~ -~11125~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~338~^687.^4^70.^~1~^~A~^^^1^545.^855.^3^462.^911.^~2, 3~^~08/01/2007~ -~11125~^~417~^14.^12^0.^~1~^^^^^^^^^^^~08/01/2007~ -~11125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11125~^~432~^14.^12^0.^~1~^^^^^^^^^^^~08/01/2007~ -~11125~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11126~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11126~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11126~^~301~^31.^152^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~304~^9.^109^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~305~^20.^152^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~306~^173.^116^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~307~^240.^51^10.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~318~^12264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11126~^~320~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11126~^~321~^5940.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~322~^2692.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11126~^~334~^144.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~338~^490.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~417~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11126~^~432~^8.^9^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11126~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11126~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11128~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11128~^~268~^105.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11128~^~301~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~305~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~306~^179.^6^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~307~^242.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~ -~11128~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11128~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11128~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~10/01/2002~ -~11128~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~10/01/2002~ -~11128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11128~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11128~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11128~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11128~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11128~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11128~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11130~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11130~^~268~^152.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~301~^36.^5^0.^~1~^~A~^^^1^35.^39.^4^33.^38.^~2, 3~^~01/01/2003~ -~11130~^~304~^12.^5^0.^~1~^~A~^^^1^11.^13.^4^10.^12.^~2, 3~^~01/01/2003~ -~11130~^~305~^33.^5^1.^~1~^~A~^^^1^32.^38.^4^30.^36.^~2, 3~^~01/01/2003~ -~11130~^~306~^235.^5^14.^~1~^~A~^^^1^206.^290.^4^194.^275.^~2, 3~^~01/01/2003~ -~11130~^~307~^68.^5^2.^~1~^~A~^^^1^63.^75.^4^60.^75.^~2, 3~^~01/01/2003~ -~11130~^~318~^14210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11130~^~320~^710.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~321~^7047.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11130~^~322~^2958.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11130~^~334~^0.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~ -~11130~^~337~^1.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11130~^~338~^218.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11130~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11130~^~432~^10.^6^0.^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11131~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11131~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~301~^35.^3^0.^~1~^~A~^^^1^35.^37.^2^32.^38.^~2, 3~^~01/01/2003~ -~11131~^~304~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~01/01/2003~ -~11131~^~305~^31.^3^0.^~1~^~A~^^^1^30.^32.^2^28.^32.^~2, 3~^~01/01/2003~ -~11131~^~306~^192.^3^5.^~1~^~A~^^^1^181.^199.^2^168.^216.^~2, 3~^~01/01/2003~ -~11131~^~307~^59.^3^6.^~1~^~A~^^^1^47.^66.^2^32.^84.^~2, 3~^~01/01/2003~ -~11131~^~318~^16928.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11131~^~320~^846.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~321~^8199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~322~^3716.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11131~^~334~^199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~338~^676.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~417~^11.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11131~^~432~^11.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11134~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~268~^667.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~301~^16.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~304~^21.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~305~^27.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~306~^271.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~307~^14.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11134~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~321~^8.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11134~^~417~^27.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11134~^~432~^27.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11134~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11135~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11135~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11135~^~301~^22.^23^1.^~6~^~JA~^^^2^21.^24.^19^19.^24.^~2, 3~^~12/01/2008~ -~11135~^~304~^15.^22^0.^~6~^~JA~^^^2^13.^15.^17^13.^15.^~2, 3~^~12/01/2008~ -~11135~^~305~^44.^22^1.^~6~^~JA~^^^2^42.^49.^19^41.^46.^~2, 3~^~12/01/2008~ -~11135~^~306~^299.^24^10.^~6~^~JA~^^^2^271.^303.^19^276.^320.^~2, 3~^~12/01/2008~ -~11135~^~307~^30.^37^2.^~6~^~JA~^^^2^21.^30.^32^24.^34.^~2, 3~^~12/01/2008~ -~11135~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~11135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11135~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11135~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~12/01/2008~ -~11135~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~ -~11135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11135~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~ -~11135~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~ -~11135~^~338~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~4~^~11/01/2008~ -~11135~^~417~^57.^27^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11135~^~432~^57.^27^5.^~1~^^^^^^^^^^^~05/01/2009~ -~11135~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11135~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11136~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~301~^16.^27^0.^~1~^^^^4^12.^21.^15^15.^17.^~2, 3~^~03/01/2006~ -~11136~^~304~^9.^28^0.^~1~^^^^4^7.^15.^16^8.^10.^~2, 3~^~03/01/2006~ -~11136~^~305~^32.^27^1.^~1~^^^^4^23.^42.^22^29.^34.^~2, 3~^~03/01/2006~ -~11136~^~306~^142.^28^6.^~1~^^^^4^90.^224.^15^127.^155.^~2, 3~^~03/01/2006~ -~11136~^~307~^15.^28^1.^~1~^^^^4^4.^33.^19^11.^17.^~2, 3~^~03/01/2006~ -~11136~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11136~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11136~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~338~^29.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~417~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11136~^~432~^44.^8^2.^~1~^^^^^^^^^^^~03/01/2006~ -~11136~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11137~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11137~^~268~^100.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11137~^~301~^22.^40^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~304~^12.^11^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~305~^35.^19^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~306~^193.^13^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~307~^24.^23^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11137~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11137~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11137~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~338~^31.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~417~^64.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11137~^~432~^64.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11137~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11137~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11138~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11138~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~307~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11138~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~321~^6.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~322~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11138~^~334~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~337~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~338~^24.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11138~^~432~^41.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11141~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11141~^~268~^176.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11141~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~305~^115.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~306~^300.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~307~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11141~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11141~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11141~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11141~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~338~^1.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11141~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11141~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11141~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11142~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11142~^~268~^113.^0^^~4~^^^^^^^^^^^ -~11142~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~306~^173.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11142~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11142~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11142~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11142~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11143~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11143~^~268~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11143~^~301~^40.^55^1.^~6~^~JA~^^^7^11.^71.^54^37.^43.^~4~^~08/01/2002~ -~11143~^~304~^11.^56^0.^~6~^~JA~^^^7^5.^19.^55^9.^11.^~4~^~08/01/2002~ -~11143~^~305~^24.^55^0.^~6~^~JA~^^^7^11.^37.^54^22.^25.^~4~^~09/01/2002~ -~11143~^~306~^260.^56^7.^~6~^~JA~^^^7^131.^443.^55^244.^276.^~4~^~09/01/2002~ -~11143~^~307~^80.^56^3.^~6~^~JA~^^^7^30.^132.^55^72.^86.^~4~^~09/01/2002~ -~11143~^~318~^449.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11143~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11143~^~321~^270.^6^35.^~1~^~A~^^^2^121.^495.^3^156.^382.^~2, 3~^~08/01/2002~ -~11143~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11143~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~338~^283.^6^37.^~1~^~A~^^^2^170.^467.^3^165.^401.^~2, 3~^~08/01/2002~ -~11143~^~417~^36.^8^10.^~1~^~A~^^^2^11.^114.^3^3.^68.^~2, 3~^~05/01/2003~ -~11143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11143~^~432~^36.^8^10.^~1~^~A~^^^2^11.^114.^3^3.^68.^^~03/01/2006~ -~11143~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~ -~11143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11143~^~636~^6.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11144~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11144~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~318~^521.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11144~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~321~^313.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~322~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11144~^~334~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~337~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~338~^329.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~417~^33.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11144~^~432~^33.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/2011~ -~11144~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~11144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11144~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11145~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11145~^~301~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~304~^28.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~306~^330.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~307~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~318~^3500.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11145~^~320~^175.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11145~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11145~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11145~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11145~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11147~^~268~^79.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~301~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~304~^81.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~306~^379.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~307~^213.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~318~^6116.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11147~^~320~^306.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11147~^~321~^3647.^69^921.^~1~^~A~^^^1^2725.^4568.^1^-8062.^15356.^~4~^~12/01/2002~ -~11147~^~322~^45.^69^12.^~1~^~A~^^^1^32.^58.^1^-116.^206.^~4~^~12/01/2002~ -~11147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11147~^~334~^0.^17^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11147~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11147~^~338~^11000.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11147~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11147~^~432~^14.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11148~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11148~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~306~^549.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~307~^179.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~318~^6124.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11148~^~320~^306.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~321~^3652.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~322~^45.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11148~^~334~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~337~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~338~^11015.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11148~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11148~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11149~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11149~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11149~^~301~^17.^3^0.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~304~^12.^3^1.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~305~^18.^3^3.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~306~^125.^3^10.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~307~^2.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11149~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11149~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11149~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11149~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11149~^~417~^93.^3^28.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11149~^~432~^93.^3^28.^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11149~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11150~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11150~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11150~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11150~^~321~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~322~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11150~^~334~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~337~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~338~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11150~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11150~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11150~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11151~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11151~^~268~^71.^0^^~4~^^^^^^^^^^^ -~11151~^~301~^19.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~304~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~305~^26.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~306~^211.^6^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~307~^2.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~318~^29.^4^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11151~^~320~^1.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11151~^~417~^37.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11151~^~432~^37.^4^1.^~1~^^^^^^^^^^^~12/01/1984~ -~11151~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11151~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11152~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11152~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11152~^~301~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~305~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~306~^420.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~318~^5717.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11152~^~320~^286.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11152~^~321~^3430.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11152~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11152~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11152~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11152~^~338~^10300.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11152~^~417~^110.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11152~^~432~^110.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11152~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11154~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11154~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11154~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~305~^61.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~318~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11154~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11154~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11154~^~432~^23.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~11154~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11154~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11156~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11156~^~268~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11156~^~301~^92.^3^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~304~^42.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~305~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~306~^296.^3^32.^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~307~^3.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~318~^4353.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11156~^~320~^218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11156~^~321~^2612.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11156~^~338~^323.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11156~^~417~^105.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11156~^~432~^105.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11156~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11156~^~636~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11157~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11157~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11157~^~301~^117.^2^^~1~^~A~^^^1^97.^137.^^^^^~07/01/2003~ -~11157~^~304~^32.^2^^~1~^~A~^^^1^27.^36.^^^^^~07/01/2003~ -~11157~^~305~^54.^2^^~1~^~A~^^^1^50.^58.^^^^^~07/01/2003~ -~11157~^~306~^567.^2^^~1~^~A~^^^1^484.^650.^^^^^~07/01/2003~ -~11157~^~307~^118.^2^^~1~^~A~^^^1^113.^123.^^^^^~07/01/2003~ -~11157~^~318~^2320.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11157~^~320~^116.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11157~^~321~^1380.^4^191.^~1~^~A~^^^3^696.^1750.^2^556.^2203.^~2~^~07/01/2003~ -~11157~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11157~^~334~^24.^2^^~1~^~A~^^^2^0.^48.^1^^^^~07/01/2003~ -~11157~^~338~^3834.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11157~^~417~^177.^2^^~1~^~A~^^^1^101.^253.^^^^^~07/01/2003~ -~11157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11157~^~432~^177.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11157~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11158~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11158~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11158~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~305~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~306~^569.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~307~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~318~^2572.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11158~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11158~^~321~^1543.^4^98.^~1~^~A~^^^1^1280.^1750.^3^1230.^1855.^~4~^~12/01/2002~ -~11158~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11158~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11158~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11158~^~338~^3467.^3^238.^~1~^~A~^^^1^3019.^3834.^2^2440.^4494.^~4~^~12/01/2002~ -~11158~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11158~^~432~^50.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11158~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11161~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11161~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11161~^~301~^232.^6^10.^~1~^~A~^^^2^145.^308.^3^199.^264.^~2, 3~^~08/01/2012~ -~11161~^~304~^27.^14^2.^~6~^~JA~^^^2^9.^89.^3^18.^36.^~2, 3~^~08/01/2012~ -~11161~^~305~^25.^14^1.^~6~^~JA~^^^2^10.^74.^3^21.^29.^~2, 3~^~08/01/2012~ -~11161~^~306~^213.^20^31.^~6~^~JA~^^^2^169.^439.^16^146.^279.^~2, 3~^~08/01/2012~ -~11161~^~307~^17.^20^5.^~6~^~JA~^^^2^4.^20.^15^5.^28.^~2, 3~^~08/01/2012~ -~11161~^~318~^5019.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11161~^~320~^251.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11161~^~321~^2991.^6^207.^~1~^~A~^^^2^998.^5400.^3^2328.^3652.^~2, 3~^~08/01/2012~ -~11161~^~322~^14.^4^8.^~1~^~A~^^^1^0.^31.^3^-11.^39.^~1, 2, 3~^~08/01/2012~ -~11161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11161~^~334~^28.^4^6.^~1~^~A~^^^1^18.^45.^3^8.^47.^~2, 3~^~08/01/2012~ -~11161~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2012~ -~11161~^~338~^4323.^4^614.^~1~^~A~^^^1^3129.^5991.^3^2365.^6279.^~2, 3~^~08/01/2012~ -~11161~^~417~^129.^4^6.^~1~^~A~^^^2^81.^166.^1^52.^206.^~2, 3~^~08/01/2012~ -~11161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11161~^~432~^129.^4^6.^~1~^~A~^^^2^81.^166.^1^52.^206.^^~08/01/2012~ -~11161~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11162~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11162~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11162~^~301~^141.^29^7.^~6~^~JA~^^^5^50.^229.^19^125.^156.^~2, 3~^~08/01/2012~ -~11162~^~304~^21.^30^0.^~6~^~JA~^^^5^8.^33.^17^19.^23.^~2, 3~^~08/01/2012~ -~11162~^~305~^32.^29^1.^~6~^~JA~^^^5^16.^51.^19^28.^35.^~2, 3~^~08/01/2012~ -~11162~^~306~^117.^30^8.^~6~^~JA~^^^5^29.^226.^23^100.^133.^~2, 3~^~08/01/2012~ -~11162~^~307~^15.^30^1.^~6~^~JA~^^^5^2.^39.^20^11.^17.^~2, 3~^~08/01/2012~ -~11162~^~318~^7600.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11162~^~320~^380.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11162~^~321~^4513.^11^^~1~^~A~^^^2^1510.^5427.^^^^~2, 3~^~08/01/2012~ -~11162~^~322~^68.^6^56.^~1~^~A~^^^2^0.^180.^2^-175.^310.^~4~^~08/01/2012~ -~11162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11162~^~334~^26.^6^13.^~1~^~A~^^^2^0.^40.^2^-30.^83.^~4~^~08/01/2012~ -~11162~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 4~^~11/01/2002~ -~11162~^~338~^6197.^5^1647.^~1~^~A~^^^2^3204.^8887.^2^-891.^13285.^~4~^~08/01/2012~ -~11162~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11162~^~432~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11162~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11162~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11163~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11163~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11163~^~301~^201.^13^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~304~^29.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~305~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~306~^253.^3^46.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~307~^48.^3^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~318~^9183.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11163~^~320~^459.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11163~^~321~^5510.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11163~^~417~^73.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11163~^~432~^73.^3^9.^~1~^^^^^^^^^^^~07/01/2003~ -~11163~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11164~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11164~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~307~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~318~^11493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11164~^~320~^575.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~321~^6818.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~322~^127.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11164~^~334~^28.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~337~^0.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~338~^10898.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~417~^76.^6^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11164~^~432~^76.^6^12.^~1~^^^^^^^^^^^~01/01/2007~ -~11164~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11165~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11165~^~268~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~301~^67.^2^^~1~^^^^1^50.^84.^1^^^^~03/01/2007~ -~11165~^~304~^26.^3^4.^~1~^^^^1^18.^35.^2^5.^46.^~2, 3~^~08/01/2002~ -~11165~^~305~^48.^3^7.^~1~^^^^1^36.^61.^2^17.^78.^~2, 3~^~08/01/2002~ -~11165~^~306~^521.^3^43.^~1~^^^^1^436.^584.^2^331.^710.^~2, 3~^~08/01/2002~ -~11165~^~307~^46.^3^10.^~1~^^^^1^28.^64.^2^0.^90.^~2, 3~^~08/01/2002~ -~11165~^~318~^6748.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11165~^~320~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~321~^3930.^15^365.^~6~^~JA~^^^1^1990.^4800.^1^-398.^8258.^~2, 3~^~08/01/2002~ -~11165~^~322~^36.^3^27.^~6~^~JA~^^^1^0.^126.^1^-310.^382.^~2, 3~^~08/01/2002~ -~11165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11165~^~334~^202.^3^44.^~6~^~JA~^^^1^0.^493.^1^-361.^765.^~2, 3~^~08/01/2002~ -~11165~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~11165~^~338~^865.^6^^~1~^~A~^^^1^770.^1339.^^^^~2, 3~^~03/01/2001~ -~11165~^~417~^62.^2^^~1~^^^^1^58.^66.^1^^^^~03/01/2007~ -~11165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11165~^~432~^62.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11165~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11165~^~636~^5.^1^^~1~^^^^^5.^5.^^^^^~03/01/2001~ -~11165~^~638~^3.^1^^~1~^^^^^3.^3.^^^^^~03/01/2001~ -~11165~^~639~^0.^1^^~1~^^^^^0.^0.^^^^^~03/01/2001~ -~11165~^~641~^2.^1^^~1~^^^^^2.^2.^^^^^~03/01/2001~ -~11167~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11167~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~301~^2.^53^0.^~6~^~JA~^^^2^2.^2.^50^0.^3.^~2, 3~^~04/01/2009~ -~11167~^~304~^37.^89^1.^~6~^~JA~^^^2^29.^37.^86^33.^40.^~2, 3~^~04/01/2009~ -~11167~^~305~^89.^79^3.^~6~^~JA~^^^2^89.^98.^76^81.^96.^~2, 3~^~04/01/2009~ -~11167~^~306~^270.^92^5.^~6~^~JA~^^^2^248.^278.^90^259.^279.^~2, 3~^~04/01/2009~ -~11167~^~307~^15.^92^2.^~6~^~JA~^^^2^4.^15.^89^8.^20.^~2, 3~^~04/01/2009~ -~11167~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11167~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~321~^47.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~322~^16.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11167~^~334~^115.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~337~^0.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~338~^644.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~417~^42.^7^3.^~6~^~JA~^^^2^22.^46.^5^33.^51.^~2, 3~^~04/01/2009~ -~11167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11167~^~432~^42.^7^3.^~6~^~JA~^^^2^22.^46.^5^33.^51.^^~05/01/2009~ -~11167~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11168~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11168~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~301~^3.^30^0.^~6~^~JA~^^^5^1.^6.^11^2.^3.^~2, 3~^~04/01/2009~ -~11168~^~304~^26.^31^1.^~6~^~JA~^^^5^9.^41.^20^23.^29.^~2, 3~^~04/01/2009~ -~11168~^~305~^77.^30^2.^~6~^~JA~^^^5^45.^102.^16^72.^81.^~2, 3~^~04/01/2009~ -~11168~^~306~^218.^31^7.^~6~^~JA~^^^5^125.^302.^18^201.^235.^~2, 3~^~04/01/2009~ -~11168~^~307~^1.^31^0.^~6~^~JA~^^^5^0.^9.^3^0.^1.^~1, 2, 3~^~04/01/2009~ -~11168~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11168~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~321~^66.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~322~^23.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11168~^~334~^161.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~338~^906.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~417~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11168~^~432~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11168~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11170~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~11170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~11170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~11170~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~11170~^~301~^4.^60^0.^~6~^~JA~^^^10^2.^10.^32^3.^4.^~2, 3~^~03/01/2011~ -~11170~^~304~^15.^39^0.^~6~^~JA~^^^7^9.^20.^28^14.^15.^~2, 3~^~03/01/2011~ -~11170~^~305~^46.^38^0.^~6~^~JA~^^^7^37.^54.^25^45.^47.^~2, 3~^~03/01/2011~ -~11170~^~306~^136.^50^2.^~6~^~JA~^^^9^108.^220.^21^131.^140.^~2, 3~^~03/01/2011~ -~11170~^~307~^195.^4^11.^~1~^~A~^^^1^166.^219.^3^158.^231.^~2, 3~^~03/01/2011~ -~11170~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~11170~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11170~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~11170~^~321~^9.^8^^~1~^~A~^^^1^8.^9.^^^^~2, 3~^~03/01/2011~ -~11170~^~322~^10.^8^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~03/01/2011~ -~11170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11170~^~334~^14.^8^^~1~^~A~^^^1^10.^18.^^^^~2, 3~^~03/01/2011~ -~11170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~11170~^~338~^650.^6^^~1~^~A~^^^1^520.^780.^^^^~2, 3~^~03/01/2011~ -~11170~^~417~^38.^3^6.^~1~^^^^^^^^^^^~03/01/2011~ -~11170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11170~^~432~^38.^3^6.^~1~^^^^^^^^^^^~03/01/2011~ -~11170~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~11170~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11172~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11172~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~301~^3.^22^0.^~1~^~A~^^^2^1.^4.^8^2.^3.^~2, 3~^~08/01/2014~ -~11172~^~304~^13.^22^0.^~1~^~A~^^^2^11.^15.^10^12.^13.^~2, 3~^~08/01/2014~ -~11172~^~305~^46.^22^0.^~1~^~A~^^^2^39.^51.^10^44.^46.^~2, 3~^~08/01/2014~ -~11172~^~306~^132.^22^1.^~1~^~A~^^^2^103.^150.^10^128.^136.^~2, 3~^~04/01/2015~ -~11172~^~307~^205.^20^6.^~1~^~A~^^^2^126.^279.^6^189.^220.^~2, 3~^~04/01/2015~ -~11172~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11172~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11172~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11172~^~321~^14.^6^1.^~1~^~A~^^^1^10.^23.^2^7.^21.^~2, 3~^~04/01/2015~ -~11172~^~322~^6.^6^0.^~1~^~A~^^^1^4.^11.^1^-2.^14.^~2, 3~^~04/01/2015~ -~11172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11172~^~334~^20.^6^1.^~1~^~A~^^^1^13.^44.^3^13.^25.^~2, 3~^~04/01/2015~ -~11172~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11172~^~338~^695.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~04/01/2015~ -~11172~^~417~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^~2, 3~^~04/01/2016~ -~11172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11172~^~432~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^^~04/01/2016~ -~11172~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11174~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11174~^~268~^301.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11174~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~307~^261.^48^8.^~1~^^^^5^147.^457.^47^244.^277.^~4~^~05/01/2013~ -~11174~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11174~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11174~^~321~^30.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~322~^23.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11174~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~338~^949.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11174~^~432~^45.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11174~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11176~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11176~^~268~^331.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11176~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~307~^272.^66^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11176~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11176~^~321~^33.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~322~^26.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11176~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~338~^1045.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11176~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11176~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11177~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~268~^267.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11177~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^3.^~2, 3~^~04/01/2011~ -~11177~^~304~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~2, 3~^~04/01/2011~ -~11177~^~305~^41.^4^1.^~1~^~A~^^^1^38.^44.^3^36.^45.^~2, 3~^~04/01/2011~ -~11177~^~306~^116.^4^5.^~1~^~A~^^^1^102.^129.^3^97.^134.^~2, 3~^~04/01/2011~ -~11177~^~307~^163.^3^13.^~1~^~A~^^^1^137.^185.^2^102.^222.^~2, 3~^~04/01/2011~ -~11177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~417~^29.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~432~^29.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11178~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11178~^~268~^368.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~301~^4.^57^0.^~6~^~JA~^^^2^4.^5.^53^2.^5.^~2, 3~^~03/01/2008~ -~11178~^~304~^18.^25^0.^~6~^~JA~^^^2^18.^22.^22^16.^20.^~2, 3~^~03/01/2008~ -~11178~^~305~^70.^38^2.^~6~^~JA~^^^2^69.^85.^34^65.^74.^~2, 3~^~03/01/2008~ -~11178~^~306~^213.^24^7.^~6~^~JA~^^^2^210.^235.^20^197.^227.^~2, 3~^~03/01/2008~ -~11178~^~307~^3.^38^0.^~6~^~JA~^^^2^2.^4.^35^2.^3.^~1, 2, 3~^~03/01/2008~ -~11178~^~318~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11178~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~321~^49.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~322~^17.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11178~^~334~^120.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~337~^0.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~338~^672.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~417~^36.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11178~^~432~^36.^6^5.^~1~^^^^^^^^^^^~03/01/2008~ -~11178~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11179~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11179~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~301~^3.^24^0.^~1~^^^^2^2.^7.^15^3.^3.^~2, 3~^~03/01/2006~ -~11179~^~304~^28.^24^1.^~1~^^^^2^19.^41.^20^25.^30.^~2, 3~^~03/01/2006~ -~11179~^~305~^79.^24^2.^~1~^^^^2^60.^102.^20^74.^84.^~2, 3~^~03/01/2006~ -~11179~^~306~^233.^24^8.^~1~^^^^2^130.^302.^21^214.^250.^~2, 3~^~03/01/2006~ -~11179~^~307~^1.^24^0.^~1~^^^^2^0.^5.^13^0.^1.^~2, 3~^~03/01/2006~ -~11179~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11179~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~321~^50.^4^1.^~6~^~JA~^^^2^45.^52.^2^41.^57.^~2, 3~^~03/01/2006~ -~11179~^~322~^17.^4^2.^~6~^~JA~^^^2^13.^24.^2^5.^28.^~2, 3~^~03/01/2006~ -~11179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11179~^~334~^122.^4^5.^~6~^~JA~^^^2^108.^135.^2^96.^146.^~2, 3~^~03/01/2006~ -~11179~^~337~^0.^0^^~4~^~BFSN~^~11176~^^^^^^^^^~03/01/2006~ -~11179~^~338~^684.^5^^~1~^~A~^^^1^500.^960.^^^^~2, 3~^~03/01/2006~ -~11179~^~417~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^~2, 3~^~03/01/2006~ -~11179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11179~^~432~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^^~03/01/2006~ -~11179~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11180~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~268~^410.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~301~^4.^32^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~304~^32.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~305~^87.^25^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~306~^294.^13^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~307~^5.^29^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~318~^244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11180~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~321~^61.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~322~^21.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11180~^~334~^149.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~337~^0.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~338~^897.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~417~^40.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11180~^~432~^40.^0^^~1~^^^^^^^^^^^~03/01/2010~ -~11180~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11181~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11181~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11181~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~318~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11181~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11181~^~321~^58.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~322~^20.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11181~^~334~^142.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~338~^852.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11181~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~ -~11181~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11181~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11182~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~11182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~11182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~11182~^~268~^473.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~11182~^~301~^5.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~304~^25.^3^1.^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~305~^95.^3^4.^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~306~^276.^3^11.^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~307~^4.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~318~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11182~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11182~^~321~^59.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~322~^20.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~334~^144.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~337~^0.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~338~^807.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~417~^38.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~432~^38.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2008~ -~11182~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~11184~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11184~^~268~^314.^0^^~4~^^^^^^^^^^^ -~11184~^~301~^5.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~304~^25.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~305~^62.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~306~^153.^8^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~307~^347.^8^40.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~318~^232.^6^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11184~^~320~^12.^6^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11184~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11184~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11184~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11190~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11190~^~268~^88.^0^^~4~^^^^^^^^^^^ -~11190~^~301~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~305~^53.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~306~^459.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~307~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~318~^7092.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11190~^~320~^355.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11190~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11190~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11190~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11191~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11191~^~268~^376.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11191~^~301~^126.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~304~^51.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~305~^53.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~306~^431.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~318~^817.^2^^~1~^^^^^^^^^^^~05/01/2007~ -~11191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11191~^~320~^41.^2^^~1~^^^^^^^^^^^~05/01/2007~ -~11191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11191~^~417~^168.^6^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11191~^~432~^168.^6^12.^~1~^^^^^^^^^^^~04/01/2007~ -~11191~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11192~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11192~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11192~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~301~^128.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~304~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~306~^418.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~318~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11192~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~321~^475.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11192~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11192~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11192~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11192~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11192~^~417~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11192~^~432~^127.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11192~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11195~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11195~^~268~^582.^0^^~4~^^^^^^^^^^^ -~11195~^~301~^26.^22^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~304~^55.^5^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~306~^441.^5^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~307~^6.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~318~^84.^20^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11195~^~320~^4.^20^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11195~^~417~^187.^3^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11195~^~432~^187.^3^20.^~1~^^^^^^^^^^^~12/01/1984~ -~11195~^~435~^187.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11196~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11196~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11196~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11196~^~268~^552.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11196~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~304~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~306~^375.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11196~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11196~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11196~^~321~^45.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11196~^~322~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11196~^~334~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~337~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~338~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~417~^141.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11196~^~432~^141.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11196~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11196~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11197~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11197~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11197~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11197~^~268~^184.^0^^~4~^^^^^^^^^^^ -~11197~^~301~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~304~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~306~^215.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~318~^1369.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11197~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11197~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11197~^~321~^794.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~322~^55.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11197~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~338~^932.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~417~^53.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11197~^~432~^53.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11197~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11197~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11198~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11198~^~268~^142.^0^^~4~^^^^^^^^^^^ -~11198~^~301~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~318~^1400.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11198~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11198~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11198~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11198~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11198~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11199~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11199~^~268~^197.^0^^~4~^^^^^^^^^^^ -~11199~^~301~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~304~^44.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~305~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~306~^240.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~318~^865.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11199~^~320~^43.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11199~^~417~^62.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11199~^~432~^62.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11199~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11199~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11200~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11200~^~268~^197.^0^^~4~^^^^^^^^^^^ -~11200~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~318~^450.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11200~^~320~^23.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11200~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11200~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11200~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11201~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11201~^~268~^121.^0^^~4~^^^^^^^^^^^ -~11201~^~301~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~304~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~306~^455.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~307~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~318~^712.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11201~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11201~^~417~^101.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11201~^~432~^101.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11201~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11202~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11202~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11202~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~306~^351.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~318~^576.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11202~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11202~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11202~^~432~^60.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11202~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11203~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11203~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11203~^~301~^81.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~304~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~305~^76.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~306~^606.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~307~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~318~^6917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11203~^~320~^346.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11203~^~321~^4150.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11203~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11203~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11203~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11203~^~338~^12500.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11203~^~417~^80.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11203~^~432~^80.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11203~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11204~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11204~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11204~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~305~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~318~^4649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11204~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11204~^~320~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11204~^~321~^2790.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~322~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11204~^~334~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~337~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~338~^8402.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11204~^~432~^37.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11204~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11204~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11205~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11205~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11205~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~301~^16.^4^^~1~^~A~^^^1^16.^16.^0^^^~4~^~11/01/2002~ -~11205~^~304~^13.^4^^~1~^~A~^^^1^13.^13.^0^^^~4~^~11/01/2002~ -~11205~^~305~^24.^4^^~1~^~A~^^^1^24.^24.^0^^^~4~^~11/01/2002~ -~11205~^~306~^147.^4^^~1~^~A~^^^1^147.^147.^0^^^~4~^~11/01/2002~ -~11205~^~307~^2.^54^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11205~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~321~^45.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~ -~11205~^~322~^11.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~ -~11205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11205~^~334~^26.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~ -~11205~^~337~^0.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~ -~11205~^~338~^23.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~ -~11205~^~417~^7.^8^0.^~1~^~A~^^^1^7.^7.^1^7.^7.^~1, 4~^~11/01/2002~ -~11205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11205~^~432~^7.^8^0.^~1~^~A~^^^1^7.^7.^1^7.^7.^^~03/01/2006~ -~11205~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11205~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11206~^~208~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11206~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11206~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11206~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11206~^~301~^14.^51^1.^~6~^~JA~^^^6^7.^23.^4^11.^17.^~2, 3~^~10/01/2002~ -~11206~^~304~^12.^52^0.^~6~^~JA~^^^6^7.^16.^3^9.^13.^~2, 3~^~10/01/2002~ -~11206~^~305~^21.^51^0.^~6~^~JA~^^^6^16.^35.^5^19.^22.^~2, 3~^~10/01/2002~ -~11206~^~306~^136.^52^8.^~6~^~JA~^^^6^94.^241.^3^111.^160.^~2, 3~^~10/01/2002~ -~11206~^~307~^2.^48^0.^~1~^^^^5^1.^5.^35^1.^2.^~2, 3~^~05/01/2003~ -~11206~^~318~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11206~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11206~^~321~^31.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11206~^~322~^8.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11206~^~334~^18.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11206~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11206~^~338~^16.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11206~^~417~^14.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11206~^~432~^14.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11207~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11207~^~268~^188.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11207~^~301~^187.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~304~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~306~^397.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~318~^10161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11207~^~320~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11207~^~321~^5854.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~322~^363.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11207~^~334~^121.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~337~^0.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~01/01/2003~ -~11207~^~338~^13610.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11207~^~432~^27.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11207~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11208~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11208~^~268~^138.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11208~^~301~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~306~^232.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~307~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~318~^6837.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11208~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11208~^~320~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11208~^~321~^3940.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~322~^244.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11208~^~334~^82.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~337~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11208~^~338~^9158.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11208~^~432~^13.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11208~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11208~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11209~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11209~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11209~^~301~^9.^7^0.^~6~^~JA~^^^3^7.^10.^6^7.^9.^~4~^~08/01/2012~ -~11209~^~304~^14.^1^^~6~^~JA~^^^3^12.^15.^9^^^^~08/01/2012~ -~11209~^~305~^24.^7^1.^~6~^~JA~^^^3^21.^28.^6^22.^26.^~4~^~08/01/2012~ -~11209~^~306~^229.^7^6.^~6~^~JA~^^^3^201.^259.^6^212.^245.^~4~^~08/01/2012~ -~11209~^~307~^2.^7^0.^~6~^~JA~^^^3^1.^3.^6^1.^2.^~1, 4~^~08/01/2012~ -~11209~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11209~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11209~^~321~^14.^5^7.^~6~^~JA~^^^3^0.^37.^4^-8.^35.^~4~^~08/01/2012~ -~11209~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11209~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11209~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11209~^~338~^36.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11209~^~417~^22.^6^2.^~1~^^^^2^13.^27.^5^16.^26.^~4~^~01/01/2003~ -~11209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11209~^~432~^22.^6^2.^~1~^^^^2^13.^27.^5^16.^26.^^~03/01/2007~ -~11209~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11209~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11209~^~636~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11210~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~301~^6.^18^0.^~1~^~A~^^^7^5.^9.^6^5.^6.^~2~^~12/01/2002~ -~11210~^~304~^11.^21^1.^~6~^~JA~^^^8^8.^20.^7^8.^12.^~2~^~01/01/2003~ -~11210~^~305~^15.^18^0.^~1~^~A~^^^7^10.^21.^6^13.^16.^~2~^~01/01/2003~ -~11210~^~306~^123.^18^8.^~1~^~A~^^^7^93.^175.^6^102.^144.^~2~^~01/01/2003~ -~11210~^~307~^1.^18^0.^~1~^~A~^^^7^0.^2.^6^0.^1.^~2~^~01/01/2003~ -~11210~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11210~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~321~^22.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11210~^~322~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11210~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11210~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11210~^~338~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11210~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11210~^~432~^14.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11210~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11211~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11211~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11211~^~301~^60.^2^^~1~^~A~^^^1^57.^63.^1^^^^~05/01/2006~ -~11211~^~304~^61.^2^^~1~^~A~^^^1^52.^70.^1^^^^~05/01/2006~ -~11211~^~305~^161.^2^^~1~^~A~^^^1^160.^162.^1^^^^~05/01/2006~ -~11211~^~306~^482.^2^^~1~^~A~^^^1^387.^576.^1^^^^~05/01/2006~ -~11211~^~307~^6.^2^^~1~^~A~^^^1^3.^8.^1^^^^~05/01/2006~ -~11211~^~417~^303.^2^^~1~^~A~^^^1^201.^404.^1^^^^~04/01/2006~ -~11211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~11211~^~432~^303.^2^^~1~^~A~^^^1^201.^404.^1^^^^~04/01/2006~ -~11211~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11212~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11212~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11212~^~301~^63.^2^^~1~^~A~^^^1^55.^70.^1^^^^~05/01/2006~ -~11212~^~304~^64.^2^^~1~^~A~^^^1^46.^81.^1^^^^~05/01/2006~ -~11212~^~305~^169.^2^^~1~^~A~^^^1^148.^190.^1^^^^~05/01/2006~ -~11212~^~306~^436.^2^^~1~^~A~^^^1^296.^575.^1^^^^~05/01/2006~ -~11212~^~307~^6.^2^^~1~^~A~^^^1^5.^8.^1^^^^~05/01/2006~ -~11212~^~318~^298.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11212~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11212~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11212~^~321~^175.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~322~^0.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11212~^~334~^8.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~337~^0.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~338~^1619.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~417~^311.^2^^~1~^~A~^^^1^222.^400.^1^^^^~04/01/2006~ -~11212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~11212~^~432~^311.^2^^~1~^~A~^^^1^222.^400.^1^^^^~04/01/2006~ -~11212~^~435~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11212~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11213~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11213~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11213~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11213~^~268~^71.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11213~^~301~^52.^4^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~304~^15.^4^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~305~^28.^3^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~306~^314.^18^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~307~^22.^18^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~318~^2167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11213~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11213~^~320~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11213~^~321~^1300.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11213~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11213~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11213~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11213~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11213~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11213~^~417~^142.^6^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11213~^~432~^142.^6^13.^~1~^^^^^^^^^^^~03/01/2007~ -~11213~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11213~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11214~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11214~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11214~^~301~^46.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~304~^13.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~305~^22.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~306~^245.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~307~^19.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~318~^1888.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11214~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11214~^~321~^1133.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~417~^78.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~432~^78.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11214~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11215~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11215~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~301~^181.^8^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~304~^25.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~305~^153.^8^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~306~^401.^8^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~307~^17.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~321~^5.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11215~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~338~^16.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11215~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11215~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11216~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~268~^333.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11216~^~301~^16.^3^^~1~^^^^1^15.^18.^^^^~2~^~01/01/2003~ -~11216~^~304~^43.^2^^~1~^^^^1^43.^43.^^^^^~01/01/2003~ -~11216~^~305~^34.^3^^~1~^^^^1^27.^42.^^^^~2~^~01/01/2003~ -~11216~^~306~^415.^2^^~1~^^^^1^415.^415.^^^^^~01/01/2003~ -~11216~^~307~^13.^2^^~1~^^^^1^13.^13.^^^^^~01/01/2003~ -~11216~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11216~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11216~^~417~^11.^1^^~1~^^^^^11.^11.^^^^^~01/01/2003~ -~11216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11216~^~432~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11216~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11216~^~601~^0.^1^^~1~^^^^^0.^0.^^^^^~01/01/2003~ -~11216~^~636~^15.^1^^~1~^^^^^15.^15.^^^^^~01/01/2003~ -~11218~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11218~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11218~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~306~^150.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~318~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11218~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11218~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11218~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11218~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11218~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11219~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11219~^~268~^63.^0^^~4~^^^^^^^^^^^ -~11219~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~306~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11219~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11219~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11219~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11219~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11219~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11220~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11220~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11220~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~305~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~306~^139.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~318~^410.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11220~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11220~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11220~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11221~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11221~^~268~^234.^0^^~4~^^^^^^^^^^^ -~11221~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~305~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~306~^453.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~318~^260.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11221~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11221~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11221~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11222~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11222~^~268~^268.^0^^~4~^^^^^^^^^^^ -~11222~^~301~^185.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~304~^42.^0^^~4~^~T~^^^^^^^^^^~08/01/2015~ -~11222~^~305~^112.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~306~^337.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~318~^7564.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11222~^~320~^378.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11222~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11222~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11222~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11222~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11222~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11223~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11223~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11223~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11223~^~268~^251.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11223~^~301~^151.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~304~^34.^0^^~4~^~BFSY~^~11222~^^^^^^^^^~08/01/2015~ -~11223~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~318~^7013.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11223~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11223~^~320~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11223~^~321~^4208.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11223~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11223~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11223~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11223~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11223~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11223~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11223~^~432~^23.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11223~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11223~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11224~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11224~^~268~^192.^0^^~4~^^^^^^^^^^^ -~11224~^~301~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~304~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~306~^252.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~318~^864.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11224~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11224~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11224~^~321~^475.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~322~^87.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11224~^~334~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~338~^802.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~417~^62.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11224~^~432~^62.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11224~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11224~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11225~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11225~^~268~^209.^0^^~4~^^^^^^^^^^^ -~11225~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~306~^262.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~318~^142.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11225~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11225~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11225~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11225~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11225~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11225~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11226~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~268~^304.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~305~^78.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~306~^429.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~307~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11226~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11226~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11226~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11226~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11228~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11228~^~268~^105.^0^^~4~^^^^^^^^^^^ -~11228~^~301~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~305~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~306~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11228~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11228~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11228~^~432~^19.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11228~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11228~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11230~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11230~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11230~^~301~^113.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~304~^146.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~305~^116.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~306~^708.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~307~^70.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~11230~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11230~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~11230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11230~^~417~^160.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11230~^~432~^160.^0^^~4~^^^^^^^^^^^~07/01/2006~ -~11230~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11230~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11231~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11231~^~268~^142.^0^^~4~^^^^^^^^^^^ -~11231~^~301~^208.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~304~^64.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~305~^83.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~306~^559.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~318~^5559.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11231~^~320~^278.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11231~^~417~^123.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11231~^~432~^123.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11231~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11231~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11232~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11232~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~301~^211.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~306~^550.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~318~^5185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11232~^~320~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~321~^3111.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11232~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11232~^~417~^104.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11232~^~432~^104.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11232~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11233~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11233~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11233~^~268~^148.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~301~^254.^5^14.^~1~^~A~^^^1^203.^281.^4^215.^293.^~2, 3~^~10/01/2016~ -~11233~^~304~^33.^5^3.^~1~^~A~^^^1^28.^46.^4^23.^41.^~2, 3~^~10/01/2016~ -~11233~^~305~^55.^5^2.^~1~^~A~^^^1^47.^62.^4^47.^62.^~2, 3~^~10/01/2016~ -~11233~^~306~^348.^5^14.^~1~^~A~^^^1^301.^389.^4^308.^387.^~2, 3~^~10/01/2016~ -~11233~^~307~^53.^5^21.^~1~^~A~^^^1^16.^107.^4^-7.^113.^~2, 3~^~10/01/2016~ -~11233~^~318~^4812.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11233~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11233~^~320~^241.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11233~^~321~^2873.^3^499.^~1~^~A~^^^1^2155.^3833.^2^726.^5020.^~4~^~10/01/2016~ -~11233~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11233~^~334~^27.^3^5.^~1~^~A~^^^1^19.^37.^2^3.^50.^~2, 3~^~10/01/2016~ -~11233~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2003~ -~11233~^~338~^6261.^3^1211.^~1~^~A~^^^1^4459.^8565.^2^1047.^11473.^~2, 3~^~10/01/2016~ -~11233~^~417~^62.^3^5.^~1~^~A~^^^1^53.^72.^2^38.^85.^~2, 3~^~10/01/2016~ -~11233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11233~^~432~^62.^3^5.^~1~^~A~^^^1^53.^72.^2^38.^85.^^~10/01/2016~ -~11233~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11234~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11234~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11234~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~12/01/2016~ -~11234~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~12/01/2016~ -~11234~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~12/01/2016~ -~11234~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~12/01/2016~ -~11234~^~307~^16.^6^4.^~1~^~A~^^^1^2.^34.^5^3.^28.^~1, 2, 3~^~12/01/2016~ -~11234~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~11234~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11234~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~11234~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~12/01/2016~ -~11234~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~12/01/2016~ -~11234~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11234~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~12/01/2016~ -~11234~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11234~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~12/01/2016~ -~11234~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~12/01/2016~ -~11234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11234~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~12/01/2016~ -~11234~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11235~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11235~^~268~^116.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11235~^~301~^136.^10^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~304~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~305~^29.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~306~^333.^3^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~307~^15.^3^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~318~^4120.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11235~^~320~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11235~^~321~^2460.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~322~^0.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11235~^~334~^23.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~337~^0.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~338~^5360.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11235~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11235~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~11235~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11236~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11236~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~ -~11236~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~ -~11236~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~ -~11236~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~ -~11236~^~307~^16.^6^4.^~1~^~A~^^^1^2.^34.^5^3.^28.^~1, 2, 3~^~10/01/2016~ -~11236~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11236~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11236~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~ -~11236~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~ -~11236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11236~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~ -~11236~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~ -~11236~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~ -~11236~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~ -~11236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11236~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~ -~11236~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11237~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11237~^~268~^1079.^0^^~4~^^^^^^^^^^^ -~11237~^~301~^280.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~304~^125.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~305~^188.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~306~^1582.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11237~^~417~^61.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11237~^~432~^61.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11237~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11237~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11238~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11238~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11238~^~301~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^2.^~1, 2, 3~^~07/01/2009~ -~11238~^~304~^20.^4^1.^~1~^~A~^^^1^18.^25.^3^15.^25.^~2, 3~^~07/01/2009~ -~11238~^~305~^112.^4^11.^~1~^~A~^^^1^96.^144.^3^76.^146.^~2, 3~^~07/01/2009~ -~11238~^~306~^304.^4^37.^~1~^~A~^^^1^253.^417.^3^184.^424.^~2, 3~^~07/01/2009~ -~11238~^~307~^9.^4^2.^~1~^~A~^^^1^3.^13.^3^1.^15.^~2, 3~^~07/01/2009~ -~11238~^~324~^18.^4^10.^~1~^~A~^^^1^1.^46.^3^-14.^49.^~1, 2, 3~^~08/01/2010~ -~11238~^~417~^13.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^17.^~2, 3~^~05/01/2010~ -~11238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2012~ -~11238~^~432~^13.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^17.^^~05/01/2010~ -~11238~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2012~ -~11238~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~639~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~02/01/2010~ -~11238~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11239~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11239~^~268~^135.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11239~^~301~^15.^2^^~1~^~A~^^^1^10.^20.^1^^^^~07/01/2009~ -~11239~^~304~^13.^2^^~1~^~A~^^^1^10.^17.^1^^^^~07/01/2009~ -~11239~^~305~^57.^2^^~1~^~A~^^^1^51.^64.^1^^^^~07/01/2009~ -~11239~^~306~^506.^2^^~1~^~A~^^^1^493.^519.^1^^^^~07/01/2009~ -~11239~^~307~^9.^2^^~1~^~A~^^^1^8.^10.^1^^^^~07/01/2009~ -~11239~^~324~^212.^2^^~1~^~A~^^^1^87.^336.^1^^^^~08/01/2010~ -~11239~^~417~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~11239~^~432~^2.^2^^~1~^~A~^^^1^2.^3.^1^^^^~05/01/2010~ -~11239~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11239~^~638~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2010~ -~11239~^~639~^1.^2^^~1~^~A~^^^1^0.^2.^1^^^~1~^~02/01/2010~ -~11239~^~641~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2010~ -~11240~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~301~^43.^4^11.^~1~^~A~^^^1^20.^65.^3^6.^79.^~2, 3~^~07/01/2009~ -~11240~^~304~^19.^4^1.^~1~^~A~^^^1^17.^21.^3^15.^22.^~2, 3~^~07/01/2009~ -~11240~^~305~^194.^4^4.^~1~^~A~^^^1^180.^202.^3^178.^210.^~2, 3~^~07/01/2009~ -~11240~^~306~^411.^4^26.^~1~^~A~^^^1^354.^481.^3^325.^497.^~2, 3~^~07/01/2009~ -~11240~^~307~^21.^4^9.^~1~^~A~^^^1^3.^39.^3^-10.^52.^~2, 3~^~07/01/2009~ -~11240~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~11240~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~11240~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11240~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11240~^~324~^206.^4^17.^~1~^~A~^^^1^176.^250.^3^150.^261.^~2, 3~^~08/01/2010~ -~11240~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11240~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11240~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11240~^~417~^9.^4^2.^~1~^~AS~^^^1^5.^15.^3^1.^15.^~2, 3~^~05/01/2010~ -~11240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2012~ -~11240~^~432~^9.^4^2.^~1~^~A~^^^1^5.^15.^3^1.^15.^~2, 3~^~05/01/2010~ -~11240~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2012~ -~11240~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11240~^~639~^3.^4^1.^~1~^~A~^^^1^0.^6.^3^-2.^7.^~1, 2, 3~^~02/01/2010~ -~11240~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11241~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11241~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~306~^350.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11241~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11241~^~321~^22.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11241~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11241~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11241~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11241~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11241~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11241~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11242~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11242~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11242~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11242~^~268~^121.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11242~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11242~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11242~^~321~^21.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~322~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11242~^~334~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~337~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~338~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11242~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11242~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11242~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11243~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~301~^3.^7^0.^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~304~^13.^7^0.^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~305~^135.^7^7.^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~306~^437.^7^35.^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~307~^11.^7^1.^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11243~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11243~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~324~^14.^0^^~4~^~BFSN~^~11265~^^^^^^^^^~08/01/2009~ -~11243~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~417~^19.^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11243~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11244~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11244~^~268~^180.^0^^~4~^^^^^^^^^^^ -~11244~^~301~^309.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~305~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~306~^452.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~307~^43.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~318~^11600.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11244~^~320~^580.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11244~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11244~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11244~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11244~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11245~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11245~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11245~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11245~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11245~^~301~^258.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~306~^288.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~307~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~318~^7816.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11245~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11245~^~320~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11245~^~321~^4688.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~02/01/2007~ -~11245~^~322~^4.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11245~^~334~^0.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~337~^0.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~338~^1857.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11245~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11245~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11245~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11246~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11246~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11246~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11246~^~301~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~304~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~305~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~318~^1667.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11246~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11246~^~321~^1000.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11246~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~338~^1900.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~417~^64.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11246~^~432~^64.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11246~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11247~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11247~^~268~^130.^0^^~4~^^^^^^^^^^^~11/01/2007~ -~11247~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~306~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~318~^812.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11247~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11247~^~321~^487.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~322~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11247~^~334~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~337~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~338~^925.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11247~^~432~^24.^0^^~1~^^^^^^^^^^^~11/01/2007~ -~11247~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11247~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11248~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11248~^~268~^444.^0^^~4~^^^^^^^^^^^ -~11248~^~301~^25.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~304~^37.^9^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~305~^173.^9^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~306~^322.^9^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~307~^11.^9^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~318~^45.^9^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11248~^~320~^2.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11248~^~417~^100.^9^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11248~^~432~^100.^9^9.^~1~^^^^^^^^^^^~12/01/1984~ -~11248~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11249~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11249~^~268~^423.^0^^~4~^^^^^^^^^^^ -~11249~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~307~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11249~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11249~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11249~^~417~^67.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11249~^~432~^67.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11249~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11249~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11250~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11250~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11250~^~301~^35.^8^4.^~1~^~A~^^^2^21.^50.^6^25.^45.^~2, 3~^~12/01/2002~ -~11250~^~304~^13.^8^1.^~1~^~A~^^^2^8.^18.^6^9.^15.^~2, 3~^~12/01/2002~ -~11250~^~305~^33.^8^1.^~1~^~A~^^^2^26.^41.^5^29.^36.^~2, 3~^~12/01/2002~ -~11250~^~306~^238.^8^20.^~1~^~A~^^^2^167.^323.^4^183.^292.^~2, 3~^~12/01/2002~ -~11250~^~307~^5.^4^2.^~1~^^^^^^^^^^^~07/01/2007~ -~11250~^~318~^3312.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~11250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11250~^~320~^166.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~11250~^~321~^1987.^2^^~1~^~A~^^^1^1575.^2400.^1^^^^~12/01/2002~ -~11250~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~ -~11250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11250~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~ -~11250~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~ -~11250~^~338~^1223.^2^^~1~^~A~^^^1^993.^1454.^1^^^^~12/01/2002~ -~11250~^~417~^73.^3^25.^~1~^^^^^^^^^^^~07/01/2007~ -~11250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11250~^~432~^73.^3^25.^~1~^^^^^^^^^^^~07/01/2007~ -~11250~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11251~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11251~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11251~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~301~^33.^11^0.^~6~^~JA~^^^3^25.^42.^8^30.^34.^~2, 3~^~12/01/2002~ -~11251~^~304~^14.^11^0.^~6~^~JA~^^^3^11.^15.^5^12.^14.^~2, 3~^~12/01/2002~ -~11251~^~305~^30.^11^0.^~6~^~JA~^^^3^27.^34.^6^28.^31.^~2, 3~^~12/01/2002~ -~11251~^~306~^247.^11^8.^~6~^~JA~^^^3^183.^291.^3^221.^272.^~2, 3~^~12/01/2002~ -~11251~^~307~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~318~^8710.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~11251~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11251~^~320~^436.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~11251~^~321~^5226.^6^510.^~1~^~A~^^^2^1770.^8746.^4^3726.^6725.^~2, 3~^~02/01/2008~ -~11251~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11251~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11251~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11251~^~338~^2312.^6^331.^~1~^~A~^^^2^931.^4045.^3^1298.^3326.^~2, 3~^~12/01/2002~ -~11251~^~417~^136.^7^32.^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11251~^~432~^136.^7^32.^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11252~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~11252~^~268~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~301~^18.^98^0.^~6~^~JA~^^^14^8.^33.^40^16.^18.^~2, 3~^~11/01/2003~ -~11252~^~304~^7.^99^0.^~6~^~JA~^^^14^3.^14.^49^7.^7.^~2, 3~^~11/01/2003~ -~11252~^~305~^20.^98^0.^~6~^~JA~^^^14^5.^31.^29^18.^20.^~2, 3~^~11/01/2003~ -~11252~^~306~^141.^98^3.^~6~^~JA~^^^14^14.^250.^45^134.^146.^~2, 3~^~11/01/2003~ -~11252~^~307~^10.^91^0.^~6~^~JA~^^^14^1.^32.^37^9.^11.^~2, 3~^~11/01/2003~ -~11252~^~318~^502.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~11252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11252~^~320~^25.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~11252~^~321~^299.^53^4.^~1~^~A~^^^5^57.^333.^3^286.^311.^~2, 3~^~11/01/2003~ -~11252~^~322~^4.^51^0.^~1~^~A~^^^4^0.^4.^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11252~^~334~^0.^51^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~337~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~338~^277.^9^25.^~1~^~A~^^^3^87.^355.^3^198.^355.^~2, 3~^~11/01/2003~ -~11252~^~417~^29.^23^3.^~6~^~JA~^^^3^2.^63.^17^21.^37.^~2, 3~^~11/01/2003~ -~11252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11252~^~432~^29.^23^3.^~6~^~JA~^^^3^2.^63.^17^21.^37.^^~06/01/2007~ -~11252~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11252~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11253~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11253~^~301~^36.^8^2.^~1~^~A~^^^2^22.^45.^4^29.^41.^~2, 3~^~12/01/2002~ -~11253~^~304~^13.^8^1.^~1~^~A~^^^2^6.^17.^4^9.^16.^~2, 3~^~12/01/2002~ -~11253~^~305~^29.^8^2.^~1~^~A~^^^2^17.^36.^4^22.^35.^~2, 3~^~12/01/2002~ -~11253~^~306~^194.^8^10.^~1~^~A~^^^2^116.^263.^6^168.^220.^~2, 3~^~12/01/2002~ -~11253~^~307~^28.^8^4.^~1~^~A~^^^2^8.^48.^4^13.^41.^~2, 3~^~12/01/2002~ -~11253~^~318~^7405.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~11253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11253~^~320~^370.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~11253~^~321~^4443.^6^418.^~1~^~A~^^^2^3317.^6255.^3^3112.^5773.^~2, 3~^~12/01/2002~ -~11253~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11253~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11253~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11253~^~338~^1730.^2^^~1~^~A~^^^1^1593.^1867.^1^^^^~12/01/2002~ -~11253~^~417~^38.^8^2.^~1~^~A~^^^2^29.^53.^3^31.^44.^~2, 3~^~12/01/2002~ -~11253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11253~^~432~^38.^8^2.^~1~^~A~^^^2^29.^53.^3^31.^44.^^~06/01/2010~ -~11253~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11253~^~636~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~11254~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11254~^~301~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~304~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~305~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~306~^556.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~307~^40.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~11254~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11254~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~11254~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11254~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11254~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11254~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11254~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11254~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11255~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11255~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11255~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~305~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~306~^363.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11255~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11255~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11255~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11255~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11255~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11255~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11255~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11257~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11257~^~301~^33.^8^2.^~1~^~A~^^^2^18.^47.^5^25.^39.^~2, 3~^~12/01/2002~ -~11257~^~304~^12.^8^1.^~1~^~A~^^^2^7.^16.^3^9.^15.^~2, 3~^~12/01/2002~ -~11257~^~305~^28.^8^2.^~1~^~A~^^^2^17.^37.^4^20.^35.^~2, 3~^~12/01/2002~ -~11257~^~306~^187.^8^15.^~1~^~A~^^^2^120.^255.^6^148.^225.^~2, 3~^~12/01/2002~ -~11257~^~307~^25.^8^3.^~1~^~A~^^^2^11.^47.^5^15.^33.^~2, 3~^~12/01/2002~ -~11257~^~318~^7492.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~320~^375.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11257~^~321~^4495.^6^536.^~1~^~A~^^^2^3378.^7189.^3^2817.^6173.^~2, 3~^~12/01/2002~ -~11257~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11257~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11257~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11257~^~338~^1724.^2^^~1~^~A~^^^1^1704.^1743.^1^^^^~12/01/2002~ -~11257~^~417~^36.^8^2.^~1~^~A~^^^2^25.^49.^5^30.^41.^~2, 3~^~12/01/2002~ -~11257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~432~^36.^8^2.^~1~^~A~^^^2^25.^49.^5^30.^41.^^~03/01/2006~ -~11257~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11257~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11258~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11258~^~268~^280.^0^^~4~^^^^^^^^^^^ -~11258~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~306~^418.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~307~^13.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11258~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11258~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11258~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11258~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11259~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11259~^~268~^343.^0^^~4~^^^^^^^^^^^ -~11259~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~305~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~306~^495.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11259~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11259~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11259~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11259~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11259~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11260~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11260~^~268~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11260~^~301~^3.^52^0.^~11~^~JO~^^^11^1.^8.^35^2.^3.^~4~^~05/01/2005~ -~11260~^~304~^9.^42^0.^~6~^~JA~^^^10^5.^14.^33^8.^9.^~4~^~05/01/2005~ -~11260~^~305~^86.^43^3.^~11~^~JO~^^^11^29.^124.^34^77.^93.^~4~^~05/01/2005~ -~11260~^~306~^318.^48^11.^~6~^~JA~^^^11^118.^412.^35^295.^340.^~4~^~05/01/2005~ -~11260~^~307~^5.^38^0.^~11~^~JO~^^^11^2.^19.^33^3.^6.^~4~^~05/01/2005~ -~11260~^~318~^0.^1^^~1~^^^^^0.^0.^^^^^~02/01/2009~ -~11260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11260~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11260~^~324~^7.^5^2.^~11~^~JO~^^^2^2.^18.^4^-1.^15.^~4~^~08/01/2009~ -~11260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11260~^~417~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^~4~^~05/01/2010~ -~11260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11260~^~432~^17.^36^1.^~11~^~JO~^^^1^10.^28.^22^14.^18.^~4~^~05/01/2010~ -~11260~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11260~^~638~^0.^8^0.^~1~^~A~^^^2^0.^0.^7^0.^0.^~1, 4~^~02/01/2010~ -~11260~^~639~^2.^8^0.^~1~^~A~^^^2^2.^2.^7^1.^1.^~4~^~02/01/2010~ -~11260~^~641~^0.^8^0.^~1~^~A~^^^2^0.^1.^7^0.^0.^~1, 4~^~02/01/2010~ -~11261~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11261~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11261~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~305~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~306~^356.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~11261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11261~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11261~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11261~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11261~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11261~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11261~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11261~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11261~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11263~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11263~^~301~^4.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~304~^11.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~305~^105.^3^5.^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~306~^396.^3^15.^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~307~^12.^3^3.^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11263~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11263~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11263~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11263~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11263~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11263~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11263~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11263~^~417~^20.^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~432~^20.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11263~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11263~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11264~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11264~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11264~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11264~^~268~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11264~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~305~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~306~^129.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~307~^425.^0^^~4~^^^^^^^^^^^~05/01/2013~ -~11264~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~11264~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11264~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11264~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11264~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11264~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11264~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11264~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11264~^~417~^12.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11264~^~432~^12.^3^9.^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11264~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11265~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11265~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11265~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11265~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11265~^~301~^3.^5^0.^~1~^~A~^^^2^1.^8.^3^1.^5.^~2, 3~^~08/01/2009~ -~11265~^~305~^108.^5^4.^~1~^~A~^^^2^88.^130.^3^94.^121.^~2, 3~^~08/01/2009~ -~11265~^~306~^364.^5^13.^~1~^~A~^^^2^284.^484.^3^319.^407.^~2, 3~^~08/01/2009~ -~11265~^~307~^9.^5^1.^~1~^~A~^^^2^6.^15.^3^4.^14.^~2, 3~^~08/01/2009~ -~11265~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11265~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11265~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11265~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11265~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11265~^~324~^10.^4^6.^~1~^~A~^^^1^2.^31.^3^-12.^32.^~2, 3~^~08/01/2010~ -~11265~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11265~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11265~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11265~^~417~^28.^9^2.^~6~^~JA~^^^2^22.^41.^7^22.^32.^~2, 3~^~05/01/2010~ -~11265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11265~^~432~^28.^8^2.^~1~^~A~^^^1^23.^41.^7^23.^33.^~2, 3~^~08/01/2010~ -~11265~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11265~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11265~^~638~^0.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~ -~11265~^~639~^2.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~ -~11265~^~641~^0.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~ -~11266~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11266~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11266~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~304~^9.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1999~ -~11266~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~306~^448.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~11266~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11266~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~11266~^~321~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~ -~11266~^~322~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~ -~11266~^~324~^3.^4^1.^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~11266~^~334~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~ -~11266~^~337~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~ -~11266~^~338~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~ -~11266~^~417~^25.^5^5.^~6~^~JA~^^^2^^^^^^^~05/01/2010~ -~11266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11266~^~432~^25.^5^5.^~6~^~JA~^^^2^^^^^^^~05/01/2010~ -~11266~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11266~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11266~^~638~^0.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~ -~11266~^~639~^2.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~ -~11266~^~641~^0.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~ -~11267~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11267~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~268~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11267~^~301~^2.^3^0.^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~304~^19.^3^0.^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~305~^111.^3^10.^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~306~^326.^3^30.^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~307~^5.^3^1.^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11267~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~324~^21.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11267~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~417~^14.^2^^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11267~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11267~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~636~^3.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~12/01/2010~ -~11267~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11267~^~639~^3.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11267~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11268~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11268~^~268~^1238.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~11268~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~304~^132.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~305~^294.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~306~^1534.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/2009~ -~11268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11268~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11268~^~321~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~322~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~324~^154.^0^^~4~^~NR~^^^^^^^^^^~02/01/2010~ -~11268~^~334~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~337~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~338~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~417~^163.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11268~^~432~^163.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~11268~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11268~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11268~^~638~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11268~^~639~^20.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11268~^~641~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11269~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11269~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11269~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11269~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11269~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~11269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11269~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11269~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11269~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11269~^~324~^28.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11269~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11269~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11269~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11269~^~432~^21.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~11269~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11269~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11269~^~636~^4.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~12/01/2010~ -~11269~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~639~^4.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11270~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11270~^~268~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11270~^~301~^115.^5^7.^~6~^~JA~^^^2^103.^146.^2^83.^146.^~2, 3~^~08/01/2012~ -~11270~^~304~^32.^5^2.^~6~^~JA~^^^2^25.^36.^2^22.^41.^~2, 3~^~08/01/2012~ -~11270~^~305~^58.^5^2.^~6~^~JA~^^^2^43.^77.^2^47.^69.^~2, 3~^~08/01/2012~ -~11270~^~306~^384.^12^23.^~6~^~JA~^^^2^354.^560.^10^331.^435.^~2, 3~^~08/01/2012~ -~11270~^~307~^20.^12^5.^~6~^~JA~^^^2^2.^25.^8^6.^32.^~2, 3~^~08/01/2012~ -~11270~^~318~^3024.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11270~^~320~^151.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11270~^~321~^1790.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11270~^~322~^10.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11270~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11270~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11270~^~338~^3730.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11270~^~417~^12.^2^^~1~^~A~^^^1^3.^21.^1^^^^~08/01/2012~ -~11270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11270~^~432~^12.^2^^~1~^~A~^^^1^3.^21.^1^^^^~08/01/2012~ -~11270~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11270~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11271~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11271~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11271~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~301~^118.^2^^~6~^~JA~^^^2^74.^161.^1^^^^~08/01/2012~ -~11271~^~304~^13.^2^^~6~^~JA~^^^2^11.^15.^1^^^^~08/01/2012~ -~11271~^~305~^42.^2^^~6~^~JA~^^^2^41.^43.^1^^^^~08/01/2012~ -~11271~^~306~^162.^1^^~6~^~JA~^^^2^122.^202.^1^^^^~08/01/2012~ -~11271~^~307~^9.^2^^~6~^~JA~^^^2^3.^16.^1^^^^~08/01/2012~ -~11271~^~318~^12370.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11271~^~320~^618.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~321~^7400.^3^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~322~^9.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11271~^~334~^35.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11271~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11271~^~338~^10400.^3^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11271~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11272~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11272~^~268~^84.^0^^~4~^^^^^^^^^^^ -~11272~^~301~^116.^12^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~304~^15.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~305~^30.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~306~^170.^3^21.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~307~^29.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~318~^5155.^12^228.^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11272~^~320~^258.^12^11.^~1~^^^^^^^^^^^~06/01/2002~ -~11272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11272~^~417~^138.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11272~^~432~^138.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11272~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11272~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11273~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11273~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11273~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~307~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~318~^7076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11273~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~321~^4246.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~322~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11273~^~334~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~338~^6672.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11273~^~432~^70.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11273~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11274~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11274~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11274~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~304~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~306~^449.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~307~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~318~^9900.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11274~^~320~^495.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11274~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11274~^~417~^159.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11274~^~432~^159.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11274~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11274~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11275~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11275~^~268~^67.^0^^~4~^^^^^^^^^^^ -~11275~^~301~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~304~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~306~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~307~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~318~^8200.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11275~^~320~^410.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11275~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11275~^~417~^73.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11275~^~432~^73.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11275~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11275~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11276~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11276~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11276~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~306~^130.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~307~^130.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~318~^4400.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11276~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11276~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11276~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11276~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11276~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11277~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11277~^~268~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11277~^~301~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~304~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~307~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~318~^3622.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11277~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11277~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11277~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11277~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11278~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11278~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11278~^~301~^82.^4^4.^~6~^~JA~^^^2^63.^102.^2^62.^101.^~2, 3~^~08/01/2012~ -~11278~^~304~^57.^6^0.^~6~^~JA~^^^2^54.^60.^2^54.^60.^~2, 3~^~08/01/2012~ -~11278~^~305~^61.^4^1.^~6~^~JA~^^^2^56.^64.^2^53.^69.^~2, 3~^~08/01/2012~ -~11278~^~306~^299.^6^7.^~6~^~JA~^^^2^263.^325.^2^268.^330.^~2, 3~^~08/01/2012~ -~11278~^~307~^7.^6^0.^~6~^~JA~^^^2^2.^10.^2^3.^9.^~2, 3~^~08/01/2012~ -~11278~^~318~^716.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11278~^~320~^36.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11278~^~321~^416.^22^^~1~^~A~^^^2^78.^432.^^^^~2, 3~^~08/01/2012~ -~11278~^~322~^27.^22^^~1~^~A~^^^2^2.^28.^^^^~2, 3~^~08/01/2012~ -~11278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11278~^~334~^0.^22^^~1~^~A~^^^2^0.^4.^^^^~2, 3~^~08/01/2012~ -~11278~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11278~^~338~^280.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~417~^60.^13^27.^~6~^~JA~^^^2^32.^106.^1^-294.^414.^~2~^~08/01/2012~ -~11278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11278~^~432~^60.^13^27.^~6~^~JA~^^^2^32.^106.^1^-294.^414.^^~08/01/2012~ -~11278~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11278~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11279~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11279~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11279~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11279~^~301~^77.^18^5.^~1~^~A~^^^7^44.^112.^6^63.^90.^~2~^~01/01/2003~ -~11279~^~304~^36.^18^1.^~1~^~A~^^^7^18.^49.^6^32.^38.^~2~^~01/01/2003~ -~11279~^~305~^32.^18^1.^~1~^~A~^^^7^17.^45.^6^29.^35.^~2~^~01/01/2003~ -~11279~^~306~^135.^18^7.^~1~^~A~^^^7^61.^196.^6^116.^152.^~2~^~01/01/2003~ -~11279~^~307~^6.^18^1.^~1~^~A~^^^7^2.^15.^6^3.^8.^~2~^~01/01/2003~ -~11279~^~318~^283.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11279~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11279~^~321~^170.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11279~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11279~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11279~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11279~^~338~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11279~^~417~^46.^3^^~1~^^^^^39.^58.^^^^^~01/01/2003~ -~11279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11279~^~432~^46.^3^^~1~^^^^^39.^58.^^^^^~03/01/2007~ -~11279~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11280~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11280~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~301~^81.^41^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~304~^43.^12^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~305~^42.^24^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~306~^211.^10^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~307~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~318~^350.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11280~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~321~^210.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~322~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11280~^~334~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~337~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~338~^482.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~417~^148.^3^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11280~^~432~^148.^3^25.^~1~^^^^^^^^^^^~03/01/2007~ -~11280~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11281~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11281~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11281~^~301~^74.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~304~^40.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~305~^37.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~306~^184.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~307~^3.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~318~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11281~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11281~^~321~^183.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~322~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11281~^~334~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~337~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~338~^420.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~417~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11281~^~432~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~435~^100.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11282~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11282~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~301~^23.^89^0.^~6~^~JA~^^^13^10.^36.^49^21.^23.^~2, 3~^~03/01/2006~ -~11282~^~304~^10.^90^0.^~6~^~JA~^^^13^5.^13.^14^9.^10.^~2, 3~^~03/01/2006~ -~11282~^~305~^29.^89^0.^~6~^~JA~^^^13^14.^41.^44^28.^30.^~2, 3~^~03/01/2006~ -~11282~^~306~^146.^89^2.^~6~^~JA~^^^13^84.^228.^42^140.^152.^~2, 3~^~03/01/2006~ -~11282~^~307~^4.^81^0.^~6~^~JA~^^^12^1.^8.^21^3.^3.^~2, 3~^~03/01/2006~ -~11282~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11282~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11282~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11282~^~321~^1.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~ -~11282~^~322~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~ -~11282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11282~^~334~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~ -~11282~^~337~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~ -~11282~^~338~^4.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~ -~11282~^~417~^19.^17^0.^~1~^^^^1^18.^25.^1^17.^19.^~2, 3~^~03/01/2006~ -~11282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11282~^~432~^19.^17^0.^~1~^^^^1^18.^25.^1^17.^19.^^~03/01/2006~ -~11282~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11282~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11282~^~636~^15.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11283~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11283~^~262~^0.^0^^~7~^~Z~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~263~^0.^0^^~7~^~Z~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11283~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11283~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11283~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11283~^~321~^1.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~ -~11283~^~322~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11283~^~334~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~337~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~338~^4.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~ -~11283~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11283~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11283~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11283~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11283~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11284~^~268~^1460.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11284~^~301~^257.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~304~^92.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~305~^303.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~306~^1622.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11284~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11284~^~321~^11.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~322~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11284~^~334~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~337~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~338~^32.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~417~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11284~^~432~^166.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11284~^~435~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11284~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11285~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11285~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~301~^45.^16^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~304~^6.^16^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~305~^28.^16^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~306~^111.^16^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~307~^371.^16^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11285~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11285~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~338~^2.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11285~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~11285~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11286~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11286~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11286~^~301~^20.^4^2.^~1~^~A~^^^1^15.^26.^3^12.^27.^~2, 3~^~08/01/2004~ -~11286~^~304~^9.^4^1.^~1~^~A~^^^1^6.^11.^3^5.^12.^~2, 3~^~08/01/2004~ -~11286~^~305~^33.^4^3.^~1~^~A~^^^1^26.^40.^3^23.^42.^~2, 3~^~08/01/2004~ -~11286~^~306~^133.^4^6.^~1~^~A~^^^1^115.^146.^3^112.^153.^~2, 3~^~08/01/2004~ -~11286~^~307~^12.^4^1.^~1~^~A~^^^1^9.^16.^3^7.^17.^~2, 3~^~08/01/2004~ -~11286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11286~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~ -~11287~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11287~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11287~^~301~^17.^16^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~304~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~305~^22.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~306~^124.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~307~^12.^12^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~318~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11287~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11287~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11287~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11287~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11287~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11287~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11288~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11288~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11288~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~306~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11288~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11288~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~338~^3.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11288~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11288~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11289~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11289~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11289~^~268~^148.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~301~^36.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~304~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~305~^23.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~306~^142.^3^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~307~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11289~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~321~^1.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~11/01/2002~ -~11289~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11289~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~338~^4.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~11/01/2002~ -~11289~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11289~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11289~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11290~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11290~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11290~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~305~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~306~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11290~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11290~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11290~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11290~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~338~^3.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11290~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11290~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11290~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11291~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11291~^~268~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11291~^~301~^72.^3^15.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~304~^20.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~305~^37.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~306~^276.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~307~^16.^12^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~318~^997.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11291~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11291~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11291~^~321~^598.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~322~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11291~^~334~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~337~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~338~^1137.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~417~^64.^11^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11291~^~432~^64.^11^11.^~1~^^^^^^^^^^^~03/01/2007~ -~11291~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11291~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11292~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11292~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11292~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~301~^52.^4^6.^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~304~^16.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~305~^25.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~306~^159.^4^14.^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~307~^15.^4^4.^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~318~^4000.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~319~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~ -~11292~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~321~^2400.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~ -~11292~^~322~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~ -~11292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11292~^~334~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~ -~11292~^~337~^0.^0^^~4~^~BFSN~^~11291~^^^^^^^^^~02/01/2003~ -~11292~^~338~^858.^0^^~4~^~BFSN~^~11291~^^^^^^^^^~04/01/2009~ -~11292~^~417~^30.^2^^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11292~^~432~^30.^2^^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11293~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11293~^~268~^142.^0^^~4~^^^^^^^^^^^ -~11293~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~306~^212.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~307~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~318~^1160.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11293~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11293~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11293~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11293~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11294~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11294~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11294~^~301~^20.^8^2.^~1~^~A~^^^2^12.^28.^4^13.^26.^~2, 3~^~04/01/2003~ -~11294~^~304~^9.^8^0.^~1~^~A~^^^2^6.^10.^5^7.^9.^~2, 3~^~04/01/2003~ -~11294~^~305~^27.^8^1.^~1~^~A~^^^2^22.^34.^5^23.^29.^~2, 3~^~04/01/2003~ -~11294~^~306~^119.^8^3.^~1~^~A~^^^2^95.^148.^6^109.^128.^~2, 3~^~04/01/2003~ -~11294~^~307~^8.^8^1.^~1~^~A~^^^2^3.^19.^4^2.^13.^~2, 3~^~04/01/2003~ -~11294~^~318~^1.^4^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11294~^~320~^0.^4^^~1~^~AS~^^^^^^^^^^~08/01/2006~ -~11294~^~321~^1.^4^0.^~1~^~A~^^^2^0.^1.^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11294~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~338~^6.^4^1.^~1~^~A~^^^2^2.^7.^1^-8.^19.^~2, 3~^~04/01/2003~ -~11294~^~417~^23.^5^1.^~1~^~A~^^^2^14.^41.^3^17.^29.^~2, 3~^~04/01/2003~ -~11294~^~432~^23.^5^1.^~1~^~A~^^^2^14.^41.^3^17.^29.^^~03/01/2006~ -~11294~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~11295~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11295~^~268~^1079.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~11295~^~301~^46.^9^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~305~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~306~^190.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~307~^246.^13^15.^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11295~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11295~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11295~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11295~^~417~^48.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11295~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~11295~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11295~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11296~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11296~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11296~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~301~^31.^11^2.^~1~^~A~^^^1^20.^53.^4^23.^39.^~2, 3~^~08/01/1984~ -~11296~^~304~^17.^11^0.^~1~^~A~^^^1^14.^29.^2^14.^18.^~2, 3~^~04/01/2013~ -~11296~^~305~^71.^11^3.^~1~^~A~^^^1^56.^98.^1^35.^105.^~2, 3~^~04/01/2013~ -~11296~^~306~^123.^11^2.^~1~^~A~^^^1^110.^172.^3^115.^129.^~2, 3~^~04/01/2013~ -~11296~^~307~^370.^11^36.^~1~^~A~^^^1^259.^552.^1^101.^638.^~2, 3~^~04/01/2013~ -~11296~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~11296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11296~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~11296~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11296~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11296~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11296~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11296~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11296~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11296~^~417~^33.^7^2.^~1~^~A~^^^1^20.^41.^2^24.^41.^~2, 3~^~04/01/2013~ -~11296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11296~^~432~^33.^7^2.^~1~^~A~^^^1^20.^41.^2^24.^41.^^~04/01/2013~ -~11296~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11297~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11297~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11297~^~301~^138.^4^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~304~^50.^4^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~305~^58.^4^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~306~^554.^7^77.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~307~^56.^7^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~318~^8424.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11297~^~320~^421.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11297~^~321~^5054.^7^310.^~1~^~A~^^^1^4523.^5600.^2^3716.^6392.^~4~^~10/01/2002~ -~11297~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11297~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11297~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11297~^~338~^5561.^7^2753.^~1~^~A~^^^1^670.^10200.^2^-6288.^17409.^~4~^~10/01/2002~ -~11297~^~417~^152.^5^21.^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11297~^~432~^152.^5^21.^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~435~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11297~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11297~^~636~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~268~^314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11298~^~301~^36.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~305~^71.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~306~^375.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~11298~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11298~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~11298~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11298~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11298~^~417~^67.^4^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11298~^~432~^67.^4^6.^~1~^^^^^^^^^^^~02/01/2003~ -~11298~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11298~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11299~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11299~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~268~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11299~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~305~^69.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~306~^367.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11299~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11299~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11299~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11299~^~417~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11299~^~432~^58.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11299~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11299~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11300~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11300~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11300~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~305~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~306~^200.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~318~^1087.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11300~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~321~^630.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11300~^~322~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11300~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11300~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11300~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11300~^~338~^740.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11300~^~417~^42.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11300~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11300~^~432~^42.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11300~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11301~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11301~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11301~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11301~^~268~^176.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11301~^~301~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~305~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~306~^240.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11301~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11301~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11301~^~321~^597.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~322~^42.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11301~^~334~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~337~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~338~^702.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11301~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11301~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11301~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11302~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11302~^~268~^176.^0^^~4~^^^^^^^^^^^~03/01/2010~ -~11302~^~301~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~306~^192.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~318~^140.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11302~^~320~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11302~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11302~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11302~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11302~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11303~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11303~^~268~^218.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11303~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~318~^1311.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11303~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11303~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11303~^~321~^760.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~322~^53.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11303~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~338~^893.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11303~^~432~^35.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11303~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11303~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11304~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11304~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11304~^~301~^25.^8^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~304~^33.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~305~^108.^8^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~306~^244.^10^16.^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~307~^5.^7^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~318~^765.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11304~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11304~^~321~^449.^40^108.^~1~^~A~^^^1^340.^557.^1^-930.^1827.^~4~^~09/01/2002~ -~11304~^~322~^21.^40^5.^~1~^~A~^^^1^16.^26.^1^-44.^86.^~4~^~09/01/2002~ -~11304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11304~^~334~^0.^15^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11304~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11304~^~338~^2477.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~09/01/2002~ -~11304~^~417~^65.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11304~^~432~^65.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11304~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11304~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11305~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11305~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~301~^27.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~304~^39.^13^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~305~^117.^12^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~306~^271.^12^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~307~^3.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~318~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11305~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~321~^470.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~322~^22.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11305~^~334~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~337~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~338~^2593.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~417~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11305~^~432~^63.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11305~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11306~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11306~^~268~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~301~^20.^86^0.^~6~^~JA~^^^10^11.^28.^85^19.^20.^~4~^~04/01/2011~ -~11306~^~304~^19.^50^0.^~6~^~JA~^^^6^15.^25.^49^18.^19.^~4~^~04/01/2011~ -~11306~^~305~^63.^49^1.^~6~^~JA~^^^6^47.^77.^48^60.^64.^~4~^~04/01/2011~ -~11306~^~306~^106.^66^2.^~6~^~JA~^^^8^59.^155.^65^101.^110.^~4~^~04/01/2011~ -~11306~^~307~^185.^87^10.^~6~^~JA~^^^10^1.^334.^86^164.^205.^~4~^~04/01/2011~ -~11306~^~318~^1529.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11306~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~321~^910.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~ -~11306~^~322~^15.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~ -~11306~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11306~^~334~^0.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11306~^~337~^0.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11306~^~338~^1747.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~ -~11306~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11306~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11306~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11308~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11308~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11308~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11308~^~268~^286.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11308~^~301~^23.^9^1.^~1~^~A~^^^2^19.^30.^5^20.^26.^~2, 3~^~12/01/2007~ -~11308~^~304~^18.^9^0.^~1~^~A~^^^2^16.^20.^6^17.^19.^~2, 3~^~12/01/2007~ -~11308~^~305~^67.^9^1.^~1~^~A~^^^2^58.^76.^4^61.^72.^~2, 3~^~04/01/2011~ -~11308~^~306~^106.^9^6.^~1~^~A~^^^2^85.^141.^6^90.^121.^~2, 3~^~04/01/2011~ -~11308~^~307~^273.^9^12.^~1~^~A~^^^2^211.^321.^5^241.^303.^~2, 3~^~04/01/2011~ -~11308~^~318~^865.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~11308~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11308~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~11308~^~321~^514.^6^39.^~1~^~A~^^^2^320.^632.^4^405.^622.^~2, 3~^~12/01/2007~ -~11308~^~322~^9.^6^0.^~1~^~A~^^^2^0.^11.^^^^~1, 2, 3~^~12/01/2007~ -~11308~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11308~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2007~ -~11308~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11308~^~338~^1350.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11308~^~417~^31.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11308~^~432~^31.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11308~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11310~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11310~^~268~^209.^0^^~4~^^^^^^^^^^^ -~11310~^~301~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~304~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~305~^54.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~306~^122.^36^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~307~^254.^36^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~318~^433.^36^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11310~^~320~^22.^36^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11310~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11310~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11310~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11310~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11310~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11311~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11311~^~301~^24.^4^1.^~1~^~A~^^^1^20.^28.^3^18.^29.^~2, 3~^~04/01/2011~ -~11311~^~304~^18.^4^0.^~1~^~A~^^^1^17.^19.^3^16.^19.^~2, 3~^~04/01/2011~ -~11311~^~305~^65.^4^4.^~1~^~A~^^^1^56.^74.^3^51.^78.^~2, 3~^~04/01/2011~ -~11311~^~306~^105.^4^9.^~1~^~A~^^^1^89.^126.^3^75.^134.^~2, 3~^~04/01/2011~ -~11311~^~307~^231.^4^15.^~1~^~A~^^^1^207.^275.^3^182.^280.^~2, 3~^~04/01/2011~ -~11311~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~417~^30.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~432~^30.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11311~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11312~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11312~^~268~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~301~^22.^90^1.^~6~^~JA~^^^2^22.^35.^87^19.^24.^~2, 3~^~03/01/2008~ -~11312~^~304~^26.^31^0.^~6~^~JA~^^^2^25.^33.^28^23.^27.^~2, 3~^~03/01/2008~ -~11312~^~305~^82.^45^2.^~6~^~JA~^^^2^80.^111.^41^77.^86.^~2, 3~^~03/01/2008~ -~11312~^~306~^153.^38^5.^~6~^~JA~^^^2^149.^206.^34^141.^163.^~2, 3~^~03/01/2008~ -~11312~^~307~^108.^56^22.^~6~^~JA~^^^2^6.^112.^52^62.^153.^~2, 3~^~03/01/2008~ -~11312~^~318~^2058.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11312~^~320~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~321~^1225.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~322~^20.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11312~^~334~^0.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~337~^0.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~338~^2352.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11312~^~432~^53.^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11312~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11313~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11313~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11313~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11313~^~268~^326.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~11313~^~301~^24.^47^0.^~1~^^^^5^10.^36.^46^22.^25.^~4~^~09/01/2002~ -~11313~^~304~^22.^48^0.^~1~^^^^5^13.^29.^47^20.^22.^~4~^~09/01/2002~ -~11313~^~305~^77.^47^1.^~1~^^^^5^59.^99.^46^74.^80.^~4~^~09/01/2002~ -~11313~^~306~^110.^48^3.^~1~^^^^5^49.^165.^47^103.^116.^~4~^~09/01/2002~ -~11313~^~307~^72.^47^4.^~1~^^^^5^15.^147.^46^63.^80.^~4~^~09/01/2002~ -~11313~^~318~^2100.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11313~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11313~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11313~^~321~^1250.^7^50.^~1~^~A~^^^1^1200.^1300.^1^614.^1885.^~4~^~09/01/2002~ -~11313~^~322~^20.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11313~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11313~^~334~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11313~^~337~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11313~^~338~^2400.^8^0.^~1~^~A~^^^1^2400.^2400.^1^2400.^2400.^~4~^~09/01/2002~ -~11313~^~417~^59.^18^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11313~^~432~^59.^18^3.^~1~^^^^^^^^^^^~11/01/2006~ -~11313~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11313~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11316~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11316~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11316~^~301~^36.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~304~^56.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~305~^165.^4^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~306~^381.^4^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~307~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~318~^166.^3^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11316~^~417~^144.^8^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11316~^~432~^144.^8^20.^~1~^^^^^^^^^^^~12/01/1984~ -~11316~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~11316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11317~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11317~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11317~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~306~^268.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~318~^107.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~11317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11317~^~320~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~11317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11317~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11317~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11317~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11317~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11318~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11318~^~268~^159.^0^^~4~^^^^^^^^^^^ -~11318~^~301~^23.^164^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~304~^14.^89^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~305~^46.^151^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~306~^100.^88^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~307~^260.^161^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~318~^5770.^165^205.^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11318~^~320~^289.^165^10.^~1~^^^^^^^^^^^~06/01/2002~ -~11318~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11318~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11318~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11318~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11318~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11322~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11322~^~268~^222.^0^^~4~^^^^^^^^^^^ -~11322~^~301~^27.^34^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~304~^18.^11^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~305~^60.^19^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~306~^194.^10^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~307~^79.^13^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~318~^9497.^34^517.^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11322~^~320~^475.^34^25.^~1~^^^^^^^^^^^~06/01/2002~ -~11322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11322~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11322~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11322~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11322~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11323~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11323~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11323~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~306~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~307~^68.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~318~^9514.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11323~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11323~^~320~^476.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11323~^~321~^4725.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~322~^1868.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11323~^~334~^99.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~338~^1538.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11323~^~432~^26.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11323~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11323~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11324~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11324~^~268~^213.^0^^~4~^^^^^^^^^^^ -~11324~^~301~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~304~^16.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~305~^51.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~306~^96.^4^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~307~^442.^4^28.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~318~^161.^4^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11324~^~320~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11324~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11324~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11324~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11324~^~432~^27.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11324~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11324~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11326~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11326~^~268~^293.^0^^~4~^^^^^^^^^^^ -~11326~^~301~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~305~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~306~^203.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~307~^61.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~318~^544.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11326~^~320~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11326~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11326~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11326~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11327~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11327~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11327~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~306~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~307~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~318~^1051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11327~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11327~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11327~^~321~^626.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~322~^10.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11327~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~338~^1202.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11327~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11327~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11327~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11329~^~208~^21.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11329~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11329~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11329~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11329~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~306~^187.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~307~^1173.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~318~^721.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11329~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11329~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11329~^~321~^410.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~322~^14.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11329~^~334~^30.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~337~^0.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~338~^444.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11329~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11329~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11329~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11333~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11333~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~301~^10.^64^0.^~6~^~JA~^^^7^6.^15.^34^9.^10.^~2, 3~^~03/01/2003~ -~11333~^~304~^10.^65^0.^~6~^~JA~^^^7^3.^14.^35^9.^10.^~2, 3~^~03/01/2003~ -~11333~^~305~^20.^64^0.^~6~^~JA~^^^7^7.^25.^25^18.^20.^~2, 3~^~03/01/2003~ -~11333~^~306~^175.^64^4.^~6~^~JA~^^^7^63.^262.^35^166.^183.^~2, 3~^~03/01/2003~ -~11333~^~307~^3.^62^0.^~6~^~JA~^^^7^0.^27.^8^2.^3.^~2, 3~^~03/01/2003~ -~11333~^~318~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11333~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~321~^208.^73^0.^~6~^~JA~^^^3^0.^276.^3^205.^210.^~2, 3~^~03/01/2003~ -~11333~^~322~^21.^61^0.^~1~^~A~^^^2^0.^34.^3^19.^21.^~1, 2, 3~^~03/01/2003~ -~11333~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11333~^~334~^7.^7^6.^~1~^~A~^^^2^0.^46.^3^-14.^27.^~1, 2, 3~^~03/01/2003~ -~11333~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~338~^341.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11333~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11333~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11333~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11333~^~636~^9.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11334~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11334~^~262~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~263~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~268~^117.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11334~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~318~^468.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11334~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11334~^~321~^264.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~322~^26.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11334~^~334~^8.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~337~^0.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~338~^431.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11334~^~432~^16.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11334~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11334~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11335~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11335~^~301~^41.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~305~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~307~^1369.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~318~^155.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11335~^~320~^8.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11335~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11335~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11335~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11337~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11337~^~268~^84.^0^^~4~^^^^^^^^^^^ -~11337~^~301~^9.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~306~^91.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~318~^367.^7^175.^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11337~^~320~^18.^7^8.^~1~^^^^^^^^^^^~06/01/2002~ -~11337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11337~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11337~^~432~^14.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11337~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11337~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11338~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11338~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11338~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~318~^290.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11338~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11338~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11338~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11338~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11338~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11339~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11339~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11339~^~301~^8.^4^1.^~1~^~A~^^^1^4.^11.^3^3.^12.^~2, 3~^~10/01/2002~ -~11339~^~304~^8.^4^1.^~1~^~A~^^^1^5.^12.^3^4.^12.^~2, 3~^~10/01/2002~ -~11339~^~305~^15.^4^2.^~1~^~A~^^^1^10.^20.^3^8.^21.^~2, 3~^~10/01/2002~ -~11339~^~306~^134.^4^9.^~1~^~A~^^^1^111.^157.^3^103.^164.^~2, 3~^~10/01/2002~ -~11339~^~307~^17.^4^1.^~1~^~A~^^^1^12.^21.^3^10.^22.^~2, 3~^~10/01/2002~ -~11339~^~318~^273.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11339~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11339~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11339~^~321~^135.^4^12.^~1~^~A~^^^1^113.^166.^3^95.^173.^~2, 3~^~04/01/2003~ -~11339~^~322~^42.^4^4.^~1~^~A~^^^1^30.^51.^3^27.^56.^~2, 3~^~04/01/2003~ -~11339~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11339~^~334~^17.^4^16.^~1~^~A~^^^1^0.^66.^3^-36.^69.^~1, 2, 3~^~04/01/2003~ -~11339~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2003~ -~11339~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~ -~11339~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11344~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11344~^~268~^569.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11344~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~304~^68.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~305~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~306~^552.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11344~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11344~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11344~^~321~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11344~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11344~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11344~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11344~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11344~^~338~^190.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11344~^~417~^173.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11344~^~432~^173.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11344~^~435~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11344~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11345~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11345~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11345~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1986~ -~11345~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1986~ -~11345~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11345~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11345~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11345~^~321~^30.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~322~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11345~^~334~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~337~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~338~^141.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~417~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11345~^~432~^100.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11345~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11345~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11349~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11349~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11349~^~301~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~305~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~306~^183.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~307~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~318~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11349~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11349~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11349~^~321~^31.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~322~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11349~^~334~^17.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~337~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~338~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11349~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11349~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11349~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11350~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11350~^~268~^96.^0^^~4~^^^^^^^^^^^ -~11350~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~306~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~307~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~318~^8700.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11350~^~320~^435.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11350~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11350~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11350~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11350~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11351~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11351~^~268~^84.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11351~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~306~^184.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~307~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~318~^8700.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11351~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11351~^~321~^5220.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11351~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11351~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11351~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11351~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11351~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11352~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11352~^~268~^322.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11352~^~301~^12.^11^1.^~1~^~A~^^^2^6.^16.^2^5.^19.^~2~^~05/01/2002~ -~11352~^~304~^23.^11^0.^~1~^~A~^^^2^19.^25.^2^20.^25.^~2~^~05/01/2002~ -~11352~^~305~^57.^11^1.^~1~^~A~^^^2^48.^75.^1^46.^66.^~2~^~05/01/2002~ -~11352~^~306~^425.^11^14.^~1~^~A~^^^2^368.^506.^2^364.^485.^~2~^~09/01/2015~ -~11352~^~307~^6.^73^0.^~1~^^^^^^^^^^^~08/01/2010~ -~11352~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11352~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11352~^~321~^1.^11^0.^~11~^~JO~^^^2^0.^6.^2^-1.^3.^~1, 2~^~05/01/2002~ -~11352~^~322~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~ -~11352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11352~^~334~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~ -~11352~^~337~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~ -~11352~^~338~^9.^10^2.^~1~^~A~^^^2^1.^29.^2^0.^17.^~1, 2~^~09/01/2015~ -~11352~^~417~^15.^11^3.^~1~^~A~^^^2^9.^34.^2^0.^29.^~1, 2~^~09/01/2015~ -~11352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11352~^~432~^15.^11^3.^~1~^~A~^^^2^9.^34.^2^0.^29.^^~09/01/2015~ -~11352~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11352~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11353~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11353~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11353~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~301~^13.^4^0.^~1~^~A~^^^2^11.^15.^2^9.^16.^~2, 3~^~04/01/2002~ -~11353~^~304~^23.^4^1.^~1~^~A~^^^2^21.^25.^2^18.^28.^~2, 3~^~04/01/2002~ -~11353~^~305~^55.^4^3.^~1~^~A~^^^2^48.^60.^1^32.^76.^~2, 3~^~04/01/2002~ -~11353~^~306~^417.^4^21.^~1~^~A~^^^2^368.^458.^2^315.^518.^~2, 3~^~04/01/2002~ -~11353~^~307~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~04/01/2002~ -~11353~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~321~^0.^4^0.^~11~^~JO~^^^2^0.^1.^1^-4.^5.^~1, 2, 3~^~05/01/2002~ -~11353~^~322~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11353~^~334~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11353~^~337~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11353~^~338~^5.^4^2.^~11~^~JO~^^^2^1.^12.^1^-20.^30.^~1, 2, 3~^~08/01/2010~ -~11353~^~417~^14.^4^0.^~1~^~A~^^^2^9.^18.^1^7.^19.^~1, 2, 3~^~04/01/2002~ -~11353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11353~^~432~^14.^4^0.^~1~^~A~^^^2^9.^18.^1^7.^19.^^~08/01/2010~ -~11353~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~11353~^~636~^5.^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11354~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11354~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~301~^9.^3^0.^~1~^~A~^^^2^6.^11.^1^7.^10.^~2, 3~^~05/01/2002~ -~11354~^~304~^21.^3^0.^~1~^~A~^^^2^20.^22.^1^12.^29.^~2, 3~^~05/01/2002~ -~11354~^~305~^62.^3^0.^~1~^~A~^^^2^60.^65.^1^55.^68.^~2, 3~^~05/01/2002~ -~11354~^~306~^407.^3^9.^~1~^~A~^^^2^379.^433.^1^283.^529.^~2, 3~^~05/01/2002~ -~11354~^~307~^16.^3^1.^~1~^~A~^^^2^5.^23.^1^2.^30.^~2, 3~^~08/01/2010~ -~11354~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11354~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~321~^5.^3^0.^~11~^~JO~^^^2^1.^6.^^^^~1, 2, 3~^~05/01/2002~ -~11354~^~322~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11354~^~334~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11354~^~337~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11354~^~338~^13.^2^^~11~^~JO~^^^2^4.^22.^^^^^~08/01/2010~ -~11354~^~417~^18.^3^1.^~1~^~A~^^^2^9.^34.^1^1.^34.^~1, 2, 3~^~05/01/2002~ -~11354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11354~^~432~^18.^3^1.^~1~^~A~^^^2^9.^34.^1^1.^34.^^~08/01/2010~ -~11354~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11355~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11355~^~268~^295.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~301~^10.^4^1.^~1~^~A~^^^2^6.^16.^1^-4.^23.^~2, 3~^~05/01/2002~ -~11355~^~304~^22.^4^0.^~1~^~A~^^^2^19.^25.^1^15.^28.^~2, 3~^~05/01/2002~ -~11355~^~305~^61.^4^4.^~1~^~A~^^^2^54.^75.^1^20.^101.^~2, 3~^~05/01/2002~ -~11355~^~306~^455.^4^18.^~1~^~A~^^^2^373.^506.^1^243.^666.^~2, 3~^~05/01/2002~ -~11355~^~307~^18.^4^6.^~1~^~A~^^^2^4.^45.^1^-60.^97.^~1, 2, 3~^~08/01/2010~ -~11355~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11355~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~321~^4.^4^0.^~11~^~JO~^^^2^1.^6.^1^2.^5.^~1, 2, 3~^~05/01/2002~ -~11355~^~322~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11355~^~334~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11355~^~337~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11355~^~338~^21.^4^1.^~1~^~A~^^^2^12.^29.^2^15.^25.^~2, 3~^~08/01/2010~ -~11355~^~417~^18.^4^1.^~1~^~A~^^^2^9.^27.^2^8.^27.^~1, 2, 3~^~05/01/2002~ -~11355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11355~^~432~^18.^4^1.^~1~^~A~^^^2^9.^27.^2^8.^27.^^~08/01/2010~ -~11355~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11355~^~636~^5.^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11356~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11356~^~262~^0.^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~263~^0.^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~268~^397.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11356~^~301~^18.^8^1.^~1~^~A~^^^2^14.^30.^3^12.^22.^~2, 3~^~04/01/2002~ -~11356~^~304~^30.^8^0.^~1~^~A~^^^2^28.^33.^6^28.^31.^~2, 3~^~04/01/2002~ -~11356~^~305~^71.^8^1.^~1~^~A~^^^2^63.^77.^4^65.^75.^~2, 3~^~04/01/2002~ -~11356~^~306~^550.^8^21.^~1~^~A~^^^2^422.^616.^4^490.^608.^~2, 3~^~04/01/2002~ -~11356~^~307~^14.^8^4.^~1~^~A~^^^2^4.^46.^3^0.^26.^~1, 2, 3~^~03/01/2006~ -~11356~^~318~^10.^1^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11356~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11356~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11356~^~321~^6.^9^0.^~11~^~JO~^^^2^6.^6.^3^6.^6.^~1, 2, 3~^~08/01/2010~ -~11356~^~322~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11356~^~334~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~337~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~338~^19.^6^2.^~11~^~JO~^^^2^13.^26.^4^12.^24.^~2, 3~^~08/01/2010~ -~11356~^~417~^26.^8^3.^~1~^~A~^^^2^9.^58.^3^13.^38.^~1, 2, 3~^~03/01/2006~ -~11356~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11356~^~432~^26.^8^3.^~1~^~A~^^^2^9.^58.^3^13.^38.^^~08/01/2010~ -~11356~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11356~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~11357~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11357~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11357~^~301~^10.^5^1.^~1~^~A~^^^2^5.^19.^1^-4.^24.^~2, 3~^~05/01/2002~ -~11357~^~304~^27.^5^1.^~1~^~A~^^^2^25.^32.^2^22.^31.^~2, 3~^~05/01/2002~ -~11357~^~305~^75.^5^4.^~1~^~A~^^^2^67.^89.^2^58.^90.^~2, 3~^~05/01/2002~ -~11357~^~306~^544.^5^34.^~1~^~A~^^^2^453.^678.^3^428.^659.^~2, 3~^~05/01/2002~ -~11357~^~307~^7.^5^0.^~1~^~A~^^^2^4.^13.^2^4.^10.^~1, 2, 3~^~05/01/2002~ -~11357~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11357~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11357~^~321~^6.^5^0.^~11~^~JO~^^^2^6.^6.^^^^~1, 2, 3~^~05/01/2002~ -~11357~^~322~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11357~^~334~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11357~^~337~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~ -~11357~^~338~^30.^5^5.^~11~^~JO~^^^2^12.^58.^3^11.^48.^~2, 3~^~08/01/2010~ -~11357~^~417~^38.^5^4.^~1~^~A~^^^2^9.^72.^2^16.^58.^~1, 2, 3~^~05/01/2002~ -~11357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11357~^~432~^38.^5^4.^~1~^~A~^^^2^9.^72.^2^16.^58.^^~08/01/2010~ -~11357~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11357~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11358~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11358~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11358~^~301~^9.^8^0.^~1~^~A~^^^2^5.^14.^6^8.^10.^~2, 3~^~04/01/2002~ -~11358~^~304~^28.^8^0.^~1~^~A~^^^2^25.^32.^4^26.^29.^~2, 3~^~04/01/2002~ -~11358~^~305~^72.^8^4.^~1~^~A~^^^2^57.^99.^4^59.^84.^~2, 3~^~04/01/2002~ -~11358~^~306~^545.^8^12.^~1~^~A~^^^2^481.^590.^6^513.^576.^~2, 3~^~04/01/2002~ -~11358~^~307~^12.^8^4.^~1~^~A~^^^2^4.^44.^3^-1.^24.^~1, 2, 3~^~03/01/2006~ -~11358~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11358~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11358~^~321~^6.^7^0.^~11~^~JO~^^^2^6.^6.^2^6.^6.^~1, 2, 3~^~08/01/2010~ -~11358~^~322~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11358~^~334~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~337~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~338~^27.^5^4.^~11~^~JO~^^^2^8.^42.^3^13.^40.^~2, 3~^~08/01/2010~ -~11358~^~417~^27.^8^3.^~1~^~A~^^^2^9.^59.^3^15.^38.^~1, 2, 3~^~04/01/2002~ -~11358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11358~^~432~^27.^8^3.^~1~^~A~^^^2^9.^59.^3^15.^38.^^~08/01/2010~ -~11358~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11358~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11359~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11359~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11359~^~301~^13.^10^1.^~1~^~A~^^^2^8.^18.^7^10.^15.^~2, 3~^~04/01/2013~ -~11359~^~304~^21.^2^^~1~^~A~^^^1^21.^22.^1^^^^~03/01/2005~ -~11359~^~305~^81.^2^^~1~^~A~^^^1^72.^91.^1^^^^~03/01/2005~ -~11359~^~306~^380.^10^23.^~1~^~A~^^^2^281.^476.^7^324.^434.^~2, 3~^~07/01/2013~ -~11359~^~307~^349.^10^15.^~1~^~A~^^^2^280.^416.^3^298.^398.^~2, 3~^~07/01/2013~ -~11359~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11359~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11359~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~11359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~338~^13.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~11359~^~417~^31.^2^^~1~^~A~^^^1^21.^42.^1^^^^~03/01/2005~ -~11359~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11359~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11359~^~601~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~11360~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11360~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11360~^~301~^13.^49^1.^~6~^~JA~^^^6^6.^22.^5^10.^15.^~2~^~03/01/2005~ -~11360~^~304~^28.^50^1.^~6~^~JA~^^^6^20.^38.^5^22.^32.^~2~^~03/01/2005~ -~11360~^~305~^97.^49^3.^~6~^~JA~^^^6^66.^153.^5^87.^106.^~2~^~03/01/2005~ -~11360~^~306~^471.^50^25.^~6~^~JA~^^^6^117.^650.^5^406.^535.^~2~^~03/01/2005~ -~11360~^~307~^391.^2^^~1~^~A~^^^1^333.^449.^^^^^~03/01/2005~ -~11360~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11360~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~338~^15.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~417~^22.^2^^~1~^~A~^^^1^17.^26.^^^^^~03/01/2005~ -~11360~^~432~^22.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11361~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11361~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11361~^~301~^15.^3^2.^~1~^~A~^^^1^12.^19.^2^6.^23.^~2, 3~^~04/01/2013~ -~11361~^~306~^450.^3^43.^~1~^~A~^^^1^401.^536.^2^263.^635.^~2, 3~^~04/01/2013~ -~11361~^~307~^298.^3^12.^~1~^~A~^^^1^273.^312.^2^243.^352.^~2, 3~^~04/01/2013~ -~11361~^~318~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~11361~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~11362~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11362~^~268~^243.^0^^~4~^^^^^^^^^^^ -~11362~^~301~^30.^6^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~304~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~305~^38.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~306~^413.^6^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~307~^10.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11362~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11362~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11362~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11362~^~417~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11362~^~432~^17.^3^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11362~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11362~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11363~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11363~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~304~^25.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~305~^50.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~306~^391.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11363~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11363~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11363~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11363~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11363~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11364~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11364~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~301~^34.^6^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~304~^43.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~305~^101.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~306~^573.^6^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~307~^21.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11364~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11364~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11364~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11364~^~338~^30.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11364~^~417~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11364~^~432~^22.^6^1.^~1~^^^^^^^^^^^~02/01/2007~ -~11364~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11365~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11365~^~268~^364.^0^^~4~^^^^^^^^^^^~09/01/2015~ -~11365~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~304~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~306~^379.^6^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~307~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11365~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11365~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11365~^~321~^2.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11365~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11365~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11365~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11365~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11365~^~338~^10.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~ -~11365~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11365~^~432~^10.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11365~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11366~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11366~^~268~^326.^0^^~4~^^^^^^^^^^^ -~11366~^~301~^45.^5^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~304~^30.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~305~^54.^5^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~306~^407.^5^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~307~^14.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11366~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11366~^~417~^10.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11366~^~432~^10.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11366~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11366~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11367~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~11367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~11367~^~268~^360.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11367~^~301~^8.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~304~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~305~^40.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~306~^328.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11367~^~321~^1.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11367~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11367~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11367~^~338~^9.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~ -~11367~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~11367~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11367~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11368~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11368~^~268~^418.^0^^~4~^^^^^^^^^^^ -~11368~^~301~^5.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~304~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~305~^109.^5^52.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~306~^411.^5^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~307~^7.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11368~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11368~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11368~^~417~^12.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11368~^~432~^12.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11368~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11368~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11369~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11369~^~268~^552.^0^^~4~^^^^^^^^^^^ -~11369~^~301~^46.^5^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~304~^37.^5^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~305~^82.^5^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~306~^650.^5^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~307~^16.^5^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11369~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11369~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11369~^~417~^17.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11369~^~432~^17.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11369~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11369~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11370~^~208~^265.^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~ -~11370~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~268~^1109.^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~ -~11370~^~301~^14.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~304~^35.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~305~^70.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~306~^576.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~307~^342.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11370~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11370~^~321~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11370~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~338~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~432~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11370~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~636~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11371~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11371~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~268~^474.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11371~^~301~^21.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~304~^19.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~305~^48.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~306~^326.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~307~^333.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11371~^~319~^41.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11371~^~321~^30.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~338~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11371~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~636~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~638~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~639~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~641~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11372~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11372~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11372~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~305~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~306~^378.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~307~^335.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~318~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11372~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~11372~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~11372~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11372~^~601~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11373~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11373~^~301~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~306~^396.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~307~^433.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~318~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~319~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11373~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11373~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11373~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~11373~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~11373~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11373~^~601~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11374~^~268~^184.^0^^~4~^^^^^^^^^^^ -~11374~^~301~^39.^65^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~304~^14.^22^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~305~^22.^23^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~306~^205.^37^6.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~307~^217.^45^8.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11374~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11374~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11374~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11374~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11374~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11376~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11376~^~268~^251.^0^^~4~^^^^^^^^^^^ -~11376~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~307~^219.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~ -~11376~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11376~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11376~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11376~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11376~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11376~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11376~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11378~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11378~^~268~^1480.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~301~^27.^16^3.^~6~^~JA~^^^2^25.^51.^14^18.^35.^~2, 3~^~03/01/2006~ -~11378~^~304~^66.^24^6.^~6~^~JA~^^^2^65.^78.^22^52.^78.^~2, 3~^~03/01/2006~ -~11378~^~305~^156.^26^14.^~6~^~JA~^^^2^154.^210.^24^126.^185.^~2, 3~^~03/01/2006~ -~11378~^~306~^1098.^17^145.^~6~^~JA~^^^2^1084.^1320.^15^788.^1407.^~2, 3~^~03/01/2006~ -~11378~^~307~^77.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~11378~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11378~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~321~^6.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~322~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11378~^~334~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~337~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~338~^37.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~417~^46.^4^4.^~6~^~JA~^^^2^40.^62.^2^28.^62.^~2, 3~^~03/01/2006~ -~11378~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11378~^~432~^46.^4^4.^~6~^~JA~^^^2^40.^62.^2^28.^62.^^~03/01/2007~ -~11378~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11379~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11379~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11379~^~301~^32.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~304~^11.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~305~^39.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~306~^164.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~307~^164.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~318~^172.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11379~^~319~^46.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11379~^~321~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~324~^12.^0^^~4~^~NR~^^^^^^^^^^~12/01/2008~ -~11379~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11379~^~601~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11380~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11380~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11380~^~301~^41.^17^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~304~^98.^4^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~305~^245.^5^16.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~306~^703.^16^152.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~307~^67.^23^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11380~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11380~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11380~^~321~^7.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11380~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~338~^38.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~417~^40.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11380~^~432~^40.^3^9.^~1~^^^^^^^^^^^~12/01/2008~ -~11380~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11380~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11381~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11381~^~268~^452.^0^^~4~^^^^^^^^^^^ -~11381~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~306~^144.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~307~^257.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~318~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11381~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11381~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11381~^~321~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11381~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11381~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11381~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11381~^~601~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11382~^~268~^1494.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11382~^~301~^142.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~304~^74.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~305~^237.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~306~^1848.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~307~^82.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11382~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11382~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11382~^~321~^10.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11382~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~ -~11382~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11382~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~ -~11382~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~ -~11382~^~338~^37.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~ -~11382~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11382~^~432~^30.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11382~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11382~^~601~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11383~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~301~^35.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~304~^20.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~305~^62.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~306~^155.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~307~^172.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~319~^48.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~321~^33.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~324~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~338~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~432~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~636~^20.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11384~^~208~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11384~^~268~^1314.^0^^~4~^^^^^^^^^^^ -~11384~^~301~^311.^3^71.^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~304~^64.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~305~^404.^3^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~306~^990.^3^35.^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~307~^2095.^3^100.^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11384~^~319~^49.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11384~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11384~^~321~^60.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11384~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11384~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11384~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11385~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11385~^~268~^389.^0^^~4~^^^^^^^^^^^ -~11385~^~301~^83.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~305~^95.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~306~^219.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~307~^439.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~318~^213.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11385~^~319~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11385~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11385~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11385~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11385~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11385~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11385~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11385~^~601~^15.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11386~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11386~^~268~^1498.^0^^~4~^^^^^^^^^^^ -~11386~^~301~^62.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~304~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~305~^197.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~306~^905.^3^45.^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~307~^1578.^3^303.^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11386~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11386~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11386~^~417~^32.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11386~^~432~^32.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11386~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11386~^~601~^5.^0^^~4~^~RC~^^^^^^^^^^~10/01/1995~ -~11387~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11387~^~268~^389.^0^^~4~^^^^^^^^^^^ -~11387~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~307~^341.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~318~^148.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11387~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11387~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11387~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11387~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11387~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11387~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11387~^~601~^11.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11390~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11390~^~268~^343.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~11390~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~304~^11.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~305~^47.^4^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~306~^285.^20^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~307~^22.^117^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11390~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11390~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11390~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11390~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11390~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~11390~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11391~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~301~^17.^9^0.^~1~^~A~^^^1^15.^17.^1^5.^27.^~4~^~02/01/2013~ -~11391~^~304~^28.^9^2.^~1~^~A~^^^1^25.^28.^1^0.^56.^~4~^~02/01/2013~ -~11391~^~305~^79.^9^11.^~1~^~A~^^^1^63.^82.^1^-63.^220.^~4~^~02/01/2013~ -~11391~^~306~^496.^9^60.^~1~^~A~^^^1^411.^512.^1^-277.^1268.^~4~^~02/01/2013~ -~11391~^~307~^15.^9^2.^~1~^~A~^^^1^15.^19.^1^-15.^45.^~4~^~02/01/2013~ -~11391~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11391~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11391~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~417~^16.^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~ -~11391~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11391~^~432~^16.^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~ -~11391~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1987~ -~11392~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11392~^~268~^565.^0^^~4~^^^^^^^^^^^ -~11392~^~301~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~304~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~305~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~306~^248.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~307~^77.^11^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~318~^84.^7^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11392~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11392~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11392~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11392~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11392~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11393~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11393~^~268~^745.^0^^~4~^^^^^^^^^^^ -~11393~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~305~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~306~^327.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~307~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~318~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~319~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11393~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11393~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11393~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11393~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11393~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11393~^~601~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11394~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11394~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11394~^~301~^11.^3^0.^~1~^~A~^^^2^10.^12.^1^0.^23.^~2~^~05/01/2013~ -~11394~^~304~^21.^2^^~1~^~A~^^^1^20.^23.^^^^^~03/01/2005~ -~11394~^~305~^90.^2^^~1~^~A~^^^1^76.^103.^^^^^~03/01/2005~ -~11394~^~306~^379.^3^30.^~1~^~A~^^^2^348.^433.^1^-9.^766.^~2~^~05/01/2013~ -~11394~^~307~^323.^3^1.^~1~^~A~^^^2^245.^398.^1^301.^345.^~2~^~05/01/2013~ -~11394~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11394~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~11394~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11394~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11394~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11394~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11394~^~338~^14.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11394~^~417~^36.^2^^~1~^~A~^^^1^32.^40.^^^^^~03/01/2005~ -~11394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11394~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11394~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11395~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11395~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11395~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11395~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11395~^~301~^12.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~304~^25.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~305~^112.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~306~^505.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~307~^400.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11395~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~338~^17.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~417~^33.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~432~^33.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11396~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11396~^~268~^318.^0^^~4~^^^^^^^^^^^ -~11396~^~301~^13.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~305~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~306~^249.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~307~^33.^15^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~318~^148.^12^35.^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11396~^~320~^7.^12^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11396~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11396~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11396~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11396~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11397~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11397~^~268~^854.^0^^~4~^^^^^^^^^^^ -~11397~^~301~^20.^4^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~305~^93.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~306~^473.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~307~^43.^9^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~318~^188.^9^29.^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11397~^~320~^9.^9^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11397~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11397~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11397~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11397~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11397~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11398~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11398~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~301~^13.^12^0.^~1~^~A~^^^1^9.^15.^7^11.^13.^~2, 3~^~03/01/2005~ -~11398~^~304~^16.^12^0.^~1~^~A~^^^1^13.^20.^8^14.^16.^~2, 3~^~03/01/2005~ -~11398~^~305~^64.^12^2.^~1~^~A~^^^1^49.^88.^8^58.^68.^~2, 3~^~08/01/2014~ -~11398~^~306~^247.^12^11.^~1~^~A~^^^1^190.^354.^7^219.^274.^~2, 3~^~08/01/2014~ -~11398~^~307~^428.^12^12.^~1~^~A~^^^1^257.^483.^9^400.^455.^~2, 3~^~07/01/2012~ -~11398~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11398~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11398~^~321~^3.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~ -~11398~^~322~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~ -~11398~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11398~^~334~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~ -~11398~^~337~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~ -~11398~^~338~^15.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~ -~11398~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11398~^~432~^17.^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11398~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11399~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11399~^~268~^802.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11399~^~301~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~304~^17.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~305~^84.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~306~^287.^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~307~^463.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11399~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11399~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~11399~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~ -~11399~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~ -~11399~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~ -~11399~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~11399~^~417~^23.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~432~^23.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11399~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11401~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11401~^~268~^272.^0^^~4~^^^^^^^^^^^ -~11401~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~306~^287.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11401~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11401~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11401~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11401~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11401~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11402~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~301~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2005~ -~11402~^~304~^21.^6^0.^~1~^~A~^^^1^20.^23.^5^19.^22.^~2, 3~^~03/01/2005~ -~11402~^~305~^83.^6^5.^~1~^~A~^^^1^70.^103.^5^69.^96.^~2, 3~^~03/01/2005~ -~11402~^~306~^408.^6^8.^~1~^~A~^^^1^385.^433.^5^386.^429.^~2, 3~^~03/01/2005~ -~11402~^~307~^332.^6^36.^~1~^~A~^^^1^220.^416.^5^238.^425.^~2, 3~^~03/01/2005~ -~11402~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11402~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11402~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11402~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~338~^13.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11402~^~417~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^~2, 3~^~03/01/2005~ -~11402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11402~^~432~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^^~03/01/2006~ -~11402~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~11403~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11403~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~301~^12.^13^0.^~1~^~A~^^^1^8.^15.^9^11.^13.^~2, 3~^~08/01/2014~ -~11403~^~304~^24.^13^0.^~1~^~A~^^^1^17.^27.^9^22.^24.^~2, 3~^~08/01/2014~ -~11403~^~305~^87.^13^1.^~1~^~A~^^^1^63.^104.^10^83.^90.^~2, 3~^~08/01/2014~ -~11403~^~306~^478.^13^4.^~1~^~A~^^^1^340.^533.^9^468.^486.^~2, 3~^~08/01/2014~ -~11403~^~307~^324.^11^9.^~1~^~A~^^^1^185.^480.^7^300.^347.^~2, 3~^~04/01/2014~ -~11403~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11403~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11403~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11403~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11403~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~ -~11403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11403~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~ -~11403~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~ -~11403~^~338~^16.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11403~^~417~^23.^6^1.^~1~^~A~^^^1^18.^28.^4^18.^27.^~2, 3~^~08/01/2014~ -~11403~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11403~^~432~^23.^6^1.^~1~^~A~^^^1^18.^28.^4^18.^27.^^~08/01/2014~ -~11403~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11406~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11406~^~268~^640.^0^^~4~^^^^^^^^^^^ -~11406~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~306~^338.^3^35.^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~307~^32.^12^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11406~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11406~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11406~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11406~^~432~^15.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11406~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11406~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11407~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11407~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11407~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~306~^480.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11407~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11407~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11407~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~11407~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11407~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11408~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11408~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~11408~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~304~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~305~^77.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~306~^430.^4^36.^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~307~^490.^16^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11408~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11408~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11408~^~432~^22.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11408~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11408~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11409~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~11409~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~11409~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~305~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~306~^539.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~307~^613.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11409~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11409~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11409~^~432~^22.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11409~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11409~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11410~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11410~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11410~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~305~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~306~^394.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11410~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11410~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11411~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11411~^~268~^544.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11411~^~301~^9.^2^^~1~^~A~^^^1^8.^10.^^^^^~03/01/2005~ -~11411~^~304~^21.^2^^~1~^~A~^^^1^21.^21.^^^^^~03/01/2005~ -~11411~^~305~^78.^2^^~1~^~A~^^^1^70.^86.^^^^^~03/01/2005~ -~11411~^~306~^400.^2^^~1~^~A~^^^1^390.^409.^^^^^~03/01/2005~ -~11411~^~307~^317.^2^^~1~^~A~^^^1^220.^414.^^^^^~03/01/2005~ -~11411~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11411~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~338~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~417~^38.^2^^~1~^~A~^^^1^37.^39.^^^^^~03/01/2005~ -~11411~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11412~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11412~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11412~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11412~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11412~^~301~^10.^2^^~1~^~A~^^^1^10.^10.^^^^^~03/01/2005~ -~11412~^~304~^23.^2^^~1~^~A~^^^1^23.^24.^^^^^~03/01/2005~ -~11412~^~305~^90.^2^^~1~^~A~^^^1^85.^95.^^^^^~03/01/2005~ -~11412~^~306~^459.^2^^~1~^~A~^^^1^454.^464.^^^^^~03/01/2005~ -~11412~^~307~^373.^2^^~1~^~A~^^^1^251.^494.^^^^^~03/01/2005~ -~11412~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11412~^~417~^31.^2^^~1~^~A~^^^1^30.^31.^^^^^~03/01/2005~ -~11412~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11412~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11413~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11413~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~268~^1493.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11413~^~301~^65.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~304~^65.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~305~^168.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~306~^1001.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~307~^55.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11413~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11413~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11413~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11413~^~417~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11413~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11413~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11413~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11414~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11414~^~268~^598.^0^^~4~^^^^^^^^^^^ -~11414~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~306~^254.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~307~^529.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~318~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11414~^~319~^29.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11414~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11414~^~321~^36.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11414~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11414~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11414~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11414~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11414~^~601~^68.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11416~^~268~^63.^0^^~4~^^^^^^^^^^^ -~11416~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~318~^1947.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11416~^~320~^97.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11416~^~417~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11416~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11416~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11416~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11417~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11417~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11417~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11417~^~268~^63.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11417~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~306~^106.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~318~^1734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11417~^~319~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11417~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11417~^~321~^1040.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11417~^~322~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11417~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11417~^~334~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11417~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11417~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11417~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11417~^~432~^41.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11417~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11417~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11418~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11418~^~268~^79.^0^^~4~^^^^^^^^^^^ -~11418~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~305~^104.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~306~^436.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~318~^1942.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11418~^~320~^97.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11418~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11418~^~417~^36.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11418~^~432~^36.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11418~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11418~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11419~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11419~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11419~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11419~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~306~^438.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~318~^1600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11419~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11419~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11419~^~321~^960.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11419~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11419~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11419~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11419~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11419~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11419~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11419~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11419~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11419~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11422~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11422~^~268~^109.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11422~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~318~^8513.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11422~^~320~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11422~^~321~^3100.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11422~^~322~^4016.^0^^~4~^~BFSN~^~11424~^^^^^^^^^~07/01/2012~ -~11422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11422~^~334~^0.^0^^~4~^~BFSN~^~11424~^^^^^^^^^~07/01/2012~ -~11422~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11422~^~338~^1500.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11422~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11422~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11422~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11422~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11422~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11423~^~268~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11423~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~318~^5755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11423~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11423~^~321~^2096.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11423~^~322~^2715.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~ -~11423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11423~^~334~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~ -~11423~^~337~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11423~^~338~^1014.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11423~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11423~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11423~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11423~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11424~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11424~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11424~^~301~^26.^111^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~304~^23.^62^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~305~^35.^82^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~306~^206.^67^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~307~^5.^88^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~318~^15563.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11424~^~320~^778.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11424~^~321~^6940.^5^3880.^~1~^~A~^^^1^3060.^10820.^1^-42360.^56240.^~4~^~10/01/2002~ -~11424~^~322~^4795.^5^2625.^~1~^~A~^^^1^2170.^7420.^1^-28558.^38148.^~4~^~10/01/2002~ -~11424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11424~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11424~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11424~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11424~^~417~^12.^5^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11424~^~432~^12.^5^3.^~1~^^^^^^^^^^^~03/01/2007~ -~11424~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11424~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11426~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11426~^~268~^435.^0^^~4~^^^^^^^^^^^ -~11426~^~301~^37.^15^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~304~^16.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~305~^45.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~306~^138.^15^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~307~^208.^15^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~318~^8298.^16^309.^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11426~^~320~^415.^16^15.^~1~^^^^^^^^^^^~06/01/2002~ -~11426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11426~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11426~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11426~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11426~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11427~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11427~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11427~^~301~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~306~^494.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~318~^1320.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11427~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11427~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11427~^~432~^12.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11427~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11427~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11428~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11428~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11428~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~304~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~306~^488.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~307~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~318~^1852.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11428~^~320~^93.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11428~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11428~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11428~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11428~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11429~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11429~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11429~^~301~^25.^26^1.^~6~^~JA~^^^3^15.^35.^18^21.^28.^~4~^~12/01/2002~ -~11429~^~304~^10.^25^0.^~6~^~JA~^^^3^7.^14.^18^9.^11.^~4~^~12/01/2002~ -~11429~^~305~^20.^25^1.^~6~^~JA~^^^3^12.^34.^18^16.^23.^~4~^~12/01/2002~ -~11429~^~306~^233.^25^10.^~6~^~JA~^^^3^177.^308.^18^210.^256.^~4~^~12/01/2002~ -~11429~^~307~^39.^30^3.^~6~^~JA~^^^3^20.^66.^18^32.^46.^~4~^~12/01/2002~ -~11429~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11429~^~321~^4.^4^1.^~1~^~A~^^^2^1.^10.^1^-11.^20.^~2, 3~^~12/01/2002~ -~11429~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11429~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11429~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~ -~11429~^~338~^10.^4^0.^~1~^~A~^^^2^6.^14.^1^2.^16.^~2, 3~^~12/01/2002~ -~11429~^~417~^25.^19^3.^~6~^~JA~^^^3^7.^64.^18^16.^32.^~4~^~12/01/2002~ -~11429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11429~^~432~^25.^19^3.^~6~^~JA~^^^3^7.^64.^18^16.^32.^^~03/01/2006~ -~11429~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11429~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11429~^~636~^7.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11430~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~268~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11430~^~301~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~305~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~306~^227.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~307~^21.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11430~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11430~^~417~^28.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11430~^~432~^28.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11430~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11430~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11431~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11431~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11431~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11431~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~321~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~322~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11431~^~334~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~337~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~338~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~417~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11431~^~432~^17.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11431~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11432~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11432~^~268~^1134.^0^^~4~^^^^^^^^^^^ -~11432~^~301~^629.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~304~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~305~^204.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~306~^3494.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11432~^~321~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~322~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11432~^~334~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~337~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~338~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~417~^295.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11432~^~432~^295.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11432~^~435~^295.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11432~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11435~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11435~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11435~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11435~^~268~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11435~^~301~^43.^3^^~6~^~JA~^^^2^35.^47.^^^^~2, 3~^~08/01/2012~ -~11435~^~304~^20.^3^^~6~^~JA~^^^2^13.^23.^^^^~2, 3~^~08/01/2012~ -~11435~^~305~^53.^3^^~6~^~JA~^^^2^42.^58.^^^^~2, 3~^~08/01/2012~ -~11435~^~306~^305.^3^^~6~^~JA~^^^2^241.^337.^^^^~2, 3~^~08/01/2012~ -~11435~^~307~^12.^2^^~6~^~JA~^^^2^4.^20.^^^^^~08/01/2012~ -~11435~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11435~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11435~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11435~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11435~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11435~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11435~^~337~^14.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11435~^~338~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11435~^~417~^21.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11435~^~432~^21.^4^2.^~1~^^^^^^^^^^^~03/01/2007~ -~11435~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11436~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11436~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11436~^~301~^18.^1^^~6~^~JA~^^^2^18.^48.^^^^^~08/01/2012~ -~11436~^~304~^10.^1^^~6~^~JA~^^^2^10.^23.^^^^^~08/01/2012~ -~11436~^~305~^41.^1^^~6~^~JA~^^^2^41.^56.^^^^^~08/01/2012~ -~11436~^~306~^216.^1^^~6~^~JA~^^^2^216.^326.^^^^^~08/01/2012~ -~11436~^~307~^5.^1^^~6~^~JA~^^^2^5.^20.^^^^^~08/01/2012~ -~11436~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11436~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11436~^~321~^1.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11436~^~322~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11436~^~334~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11436~^~337~^10.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~ -~11436~^~338~^13.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~ -~11436~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11436~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11436~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11437~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11437~^~268~^343.^0^^~4~^^^^^^^^^^^ -~11437~^~301~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~305~^75.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~306~^380.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11437~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11437~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11437~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11437~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11437~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11438~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11438~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~306~^283.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~307~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11438~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11438~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11438~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11438~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11438~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11438~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11439~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11439~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~301~^30.^180^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~304~^13.^138^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~305~^20.^142^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~306~^170.^136^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~307~^661.^167^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11439~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~321~^8.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11439~^~322~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11439~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11439~^~334~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~ -~11439~^~337~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~ -~11439~^~338~^295.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~ -~11439~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11439~^~432~^24.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~11439~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11442~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~268~^109.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11442~^~301~^54.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~304~^67.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~305~^5.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~306~^226.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~307~^9.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11442~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11442~^~417~^85.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11442~^~432~^85.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11442~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11442~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11444~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~268~^205.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11444~^~301~^72.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~304~^144.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11444~^~305~^157.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~306~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~307~^67.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~318~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11444~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11444~^~321~^71.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11444~^~417~^182.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11444~^~432~^182.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11444~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11444~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11445~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11445~^~301~^168.^6^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~304~^121.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~307~^233.^3^149.^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11445~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11445~^~321~^70.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11445~^~417~^180.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11445~^~432~^180.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11445~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11445~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11446~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~268~^146.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11446~^~301~^70.^3^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~305~^58.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~306~^356.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~307~^48.^3^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~318~^5202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11446~^~320~^260.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11446~^~321~^3121.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11446~^~417~^146.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11446~^~432~^146.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11446~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11446~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11447~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11447~^~268~^113.^0^^~4~^^^^^^^^^^^ -~11447~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~305~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~306~^184.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11447~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11447~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11447~^~417~^102.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11447~^~432~^102.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11447~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11447~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11448~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11448~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11448~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11448~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11448~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11448~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11448~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11448~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11448~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11448~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11450~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11450~^~268~^614.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11450~^~301~^197.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~304~^65.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~305~^194.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~306~^620.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~318~^180.^2^^~1~^^^^^^^^^^^~06/01/2005~ -~11450~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11450~^~320~^9.^2^^~1~^^^^^^^^^^^~06/01/2005~ -~11450~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11450~^~417~^165.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11450~^~432~^165.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11450~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11450~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11450~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11451~^~268~^590.^0^^~4~^^^^^^^^^^^ -~11451~^~301~^145.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~304~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~305~^158.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~306~^539.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~318~^156.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11451~^~320~^8.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11451~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11451~^~417~^111.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11451~^~432~^111.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11451~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11451~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11451~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11452~^~268~^510.^0^^~4~^^^^^^^^^^^ -~11452~^~301~^67.^8^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~304~^72.^8^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~305~^164.^8^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~306~^484.^8^62.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~307~^14.^8^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~318~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11452~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11452~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11452~^~417~^172.^8^24.^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11452~^~432~^172.^8^24.^~1~^^^^^^^^^^^~12/01/1984~ -~11452~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11452~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11453~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11453~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11453~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11453~^~268~^339.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11453~^~301~^59.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~304~^60.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~305~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~306~^355.^3^41.^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11453~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11453~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11453~^~321~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~322~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11453~^~334~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~337~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~338~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~417~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11453~^~432~^80.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11453~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11453~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11454~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11454~^~268~^523.^0^^~4~^^^^^^^^^^^ -~11454~^~301~^82.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~304~^96.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~305~^216.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~306~^567.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~318~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11454~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11454~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11454~^~417~^127.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11454~^~432~^127.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11454~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11454~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11457~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11457~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11457~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~301~^99.^9^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~304~^79.^7^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~305~^49.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~306~^558.^10^28.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~307~^79.^10^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~318~^9377.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11457~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11457~^~320~^469.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11457~^~321~^5626.^5^766.^~1~^~A~^^^1^3970.^8900.^5^3655.^7597.^~4~^~09/01/2002~ -~11457~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^4^0.^0.^~4~^~09/01/2002~ -~11457~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11457~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~4~^~09/01/2002~ -~11457~^~337~^0.^7^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~09/01/2002~ -~11457~^~338~^12198.^7^1930.^~1~^~A~^^^1^9500.^15940.^2^3890.^20506.^~4~^~09/01/2002~ -~11457~^~417~^194.^6^35.^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11457~^~432~^194.^6^35.^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11457~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11458~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11458~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11458~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11458~^~268~^96.^0^^~4~^^^^^^^^^^^~10/01/2008~ -~11458~^~301~^136.^12^3.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~304~^87.^12^4.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~305~^56.^12^2.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~306~^466.^12^18.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~307~^70.^8^4.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~318~^10481.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11458~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11458~^~320~^524.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11458~^~321~^6288.^28^1002.^~1~^~A~^^^1^4130.^9480.^5^3711.^8865.^~4~^~09/01/2002~ -~11458~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~ -~11458~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11458~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~ -~11458~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~ -~11458~^~338~^11308.^24^2650.^~1~^~A~^^^1^5300.^20300.^4^3947.^18668.^~4~^~09/01/2002~ -~11458~^~417~^146.^3^13.^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11458~^~432~^146.^3^13.^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11458~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11459~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11459~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~11459~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~11459~^~268~^79.^0^^~4~^^^^^^^^^^^ -~11459~^~301~^83.^272^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~304~^56.^193^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~305~^32.^162^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~306~^230.^105^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~307~^319.^130^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~318~^8084.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~11459~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11459~^~320~^404.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~11459~^~321~^4850.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~322~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11459~^~334~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~337~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~338~^8722.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~417~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11459~^~432~^58.^3^4.^~1~^^^^^^^^^^^~12/01/1984~ -~11459~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11459~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11461~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11461~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11461~^~268~^96.^0^^~4~^^^^^^^^^^^~01/01/2009~ -~11461~^~301~^127.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~304~^76.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~306~^346.^6^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~307~^322.^0^^~4~^~BD~^~11459~^^^^^^^^^~01/01/2009~ -~11461~^~318~^9801.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11461~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11461~^~320~^490.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11461~^~321~^5881.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~322~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11461~^~334~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~337~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~338~^10575.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~417~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11461~^~432~^98.^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11461~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11463~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11463~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11463~^~268~^120.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~301~^129.^11^4.^~1~^~A~^^^1^94.^155.^6^119.^139.^~2, 3~^~07/01/2007~ -~11463~^~304~^75.^11^2.^~1~^~A~^^^1^66.^85.^9^70.^80.^~2, 3~^~07/01/2007~ -~11463~^~305~^49.^11^0.^~1~^~A~^^^1^45.^52.^6^47.^50.^~2, 3~^~07/01/2007~ -~11463~^~306~^346.^11^7.^~1~^~A~^^^1^292.^372.^8^327.^364.^~2, 3~^~07/01/2007~ -~11463~^~307~^74.^25^8.^~1~^^^^^^^^^^^~03/01/2006~ -~11463~^~318~^11726.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11463~^~320~^586.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~321~^7035.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~ -~11463~^~322~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~ -~11463~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11463~^~334~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~ -~11463~^~337~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~ -~11463~^~338~^12651.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~03/01/2006~ -~11463~^~417~^145.^11^8.^~1~^~A~^^^1^130.^218.^7^125.^164.^~2, 3~^~07/01/2007~ -~11463~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11463~^~432~^145.^11^8.^~1~^~A~^^^1^130.^218.^7^125.^164.^^~07/01/2007~ -~11463~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11464~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11464~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11464~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~301~^153.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~304~^82.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~305~^50.^6^2.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~306~^302.^6^20.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~307~^97.^6^7.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~318~^12061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11464~^~320~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~321~^7237.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~ -~11464~^~322~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~ -~11464~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11464~^~334~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~ -~11464~^~337~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~ -~11464~^~338~^15690.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11464~^~417~^121.^6^3.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11464~^~432~^121.^6^3.^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11467~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11467~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11467~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11467~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11467~^~301~^21.^11^1.^~6~^~JA~^^^2^19.^23.^8^18.^23.^~2, 3~^~04/01/2009~ -~11467~^~304~^20.^11^1.^~6~^~JA~^^^2^12.^21.^6^17.^22.^~2, 3~^~04/01/2009~ -~11467~^~305~^32.^11^1.^~6~^~JA~^^^2^28.^38.^8^29.^35.^~2, 3~^~04/01/2009~ -~11467~^~306~^222.^11^7.^~6~^~JA~^^^2^212.^269.^8^204.^240.^~2, 3~^~04/01/2009~ -~11467~^~307~^2.^11^0.^~6~^~JA~^^^2^2.^4.^8^1.^2.^~1, 2, 3~^~04/01/2009~ -~11467~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11467~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~321~^90.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11467~^~322~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11467~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11467~^~334~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11467~^~337~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11467~^~338~^290.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11467~^~417~^19.^8^1.^~6~^~JA~^^^2^5.^23.^6^15.^21.^~2, 3~^~04/01/2009~ -~11467~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11467~^~432~^19.^8^1.^~6~^~JA~^^^2^5.^23.^6^15.^21.^^~04/01/2009~ -~11467~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11468~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11468~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11468~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11468~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11468~^~301~^22.^30^0.^~6~^~JA~^^^6^14.^40.^8^20.^24.^~2, 3~^~04/01/2009~ -~11468~^~304~^16.^31^0.^~6~^~JA~^^^6^8.^21.^23^14.^16.^~2, 3~^~04/01/2009~ -~11468~^~305~^29.^30^1.^~6~^~JA~^^^6^18.^38.^21^27.^31.^~2, 3~^~04/01/2009~ -~11468~^~306~^177.^31^8.^~6~^~JA~^^^6^92.^294.^21^159.^195.^~2, 3~^~04/01/2009~ -~11468~^~307~^1.^31^0.^~6~^~JA~^^^6^0.^10.^3^0.^1.^~2, 3~^~04/01/2009~ -~11468~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11468~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11468~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11468~^~321~^670.^3^^~1~^~A~^^^1^670.^670.^0^^^~4~^~04/01/2009~ -~11468~^~322~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~ -~11468~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11468~^~334~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~ -~11468~^~337~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~ -~11468~^~338~^315.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~ -~11468~^~417~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~ -~11468~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11468~^~432~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~ -~11468~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11468~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11471~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11471~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11471~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11471~^~268~^54.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11471~^~301~^12.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~304~^13.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~305~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~306~^96.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11471~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11471~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11471~^~321~^61.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11471~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~338~^198.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11471~^~432~^10.^6^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11471~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11471~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11473~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11473~^~268~^84.^0^^~4~^^^^^^^^^^^ -~11473~^~301~^18.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~304~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~305~^35.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~306~^209.^6^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~318~^279.^6^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11473~^~320~^14.^6^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11473~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11473~^~417~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11473~^~432~^12.^6^1.^~1~^^^^^^^^^^^~12/01/1984~ -~11473~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11473~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11474~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11474~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11474~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11474~^~268~^105.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11474~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~304~^27.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~305~^41.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~306~^253.^6^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~307~^6.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11474~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11474~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11474~^~321~^120.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11474~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~338~^388.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~417~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11474~^~432~^13.^6^1.^~1~^^^^^^^^^^^~03/01/2007~ -~11474~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11474~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11475~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11475~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11475~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11475~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11475~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~306~^182.^7^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~307~^1.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11475~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11475~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11475~^~321~^130.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~322~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11475~^~334~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~337~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~338~^2308.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~417~^30.^3^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11475~^~432~^30.^3^10.^~1~^^^^^^^^^^^~12/01/1984~ -~11475~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11475~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11476~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11476~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11476~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11476~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11476~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~306~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~318~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11476~^~319~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11476~^~321~^51.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~322~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11476~^~334~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~338~^250.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11476~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11476~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11476~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11476~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11477~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11477~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11477~^~268~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~301~^16.^10^0.^~6~^~JA~^^^3^10.^22.^5^14.^18.^~2, 3~^~04/01/2009~ -~11477~^~304~^18.^10^0.^~6~^~JA~^^^3^15.^23.^4^15.^19.^~2, 3~^~04/01/2009~ -~11477~^~305~^38.^10^0.^~6~^~JA~^^^3^32.^42.^5^35.^40.^~2, 3~^~04/01/2009~ -~11477~^~306~^261.^10^6.^~6~^~JA~^^^3^227.^290.^1^215.^305.^~2, 3~^~04/01/2009~ -~11477~^~307~^8.^10^5.^~6~^~JA~^^^3^0.^53.^3^-9.^24.^~2, 3~^~04/01/2009~ -~11477~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11477~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~321~^120.^7^1.^~6~^~JA~^^^3^0.^410.^1^104.^135.^~2, 3~^~10/01/2002~ -~11477~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11477~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11477~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11477~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11477~^~338~^2125.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11477~^~417~^24.^8^1.^~6~^~JA~^^^3^7.^40.^4^19.^28.^~2, 3~^~04/01/2009~ -~11477~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11477~^~432~^24.^8^1.^~6~^~JA~^^^3^7.^40.^4^19.^28.^^~04/01/2009~ -~11477~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11478~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~11478~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11478~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11478~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~11478~^~301~^18.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^20.^~2, 3~^~04/01/2009~ -~11478~^~304~^19.^4^1.^~1~^~A~^^^1^14.^22.^3^13.^24.^~2, 3~^~04/01/2009~ -~11478~^~305~^37.^4^2.^~1~^~A~^^^1^31.^41.^3^29.^44.^~2, 3~^~04/01/2009~ -~11478~^~306~^264.^4^16.^~1~^~A~^^^1^228.^303.^3^210.^316.^~2, 3~^~04/01/2009~ -~11478~^~307~^3.^4^1.^~1~^~A~^^^1^2.^7.^3^-1.^7.^~1, 2, 3~^~04/01/2009~ -~11478~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~11478~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11478~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~11478~^~321~^670.^3^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11478~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~ -~11478~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11478~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~ -~11478~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~ -~11478~^~338~^1150.^6^650.^~1~^~A~^^^1^500.^1800.^1^-7109.^9409.^~4~^~04/01/2009~ -~11478~^~417~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~ -~11478~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11478~^~432~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~ -~11478~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~11478~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11479~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11479~^~268~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11479~^~301~^18.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~304~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~305~^28.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~306~^218.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~307~^2.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~318~^198.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11479~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11479~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11479~^~321~^119.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~322~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11479~^~334~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~337~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~338~^2102.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11479~^~432~^10.^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11479~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11479~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11480~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11480~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11480~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11480~^~268~^71.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11480~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11480~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11480~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11480~^~321~^106.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11480~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~338~^1877.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11480~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11480~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11480~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11481~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11481~^~268~^121.^0^^~4~^^^^^^^^^^^ -~11481~^~301~^17.^18^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~304~^14.^18^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~305~^29.^18^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~306~^274.^18^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~307~^374.^18^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~318~^539.^19^40.^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11481~^~320~^27.^19^2.^~1~^^^^^^^^^^^~06/01/2002~ -~11481~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11481~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11481~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11481~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11481~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11482~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11482~^~268~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11482~^~301~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~306~^347.^5^47.^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~307~^3.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~318~^367.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11482~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11482~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11482~^~321~^220.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11482~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11482~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11482~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11482~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11482~^~338~^38.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11482~^~417~^17.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11482~^~432~^17.^3^2.^~1~^^^^^^^^^^^~06/01/2003~ -~11482~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11482~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11483~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11483~^~268~^234.^0^^~4~^^^^^^^^^^^ -~11483~^~301~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~306~^437.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~318~^428.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11483~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11483~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11483~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11483~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11483~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11483~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11484~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11484~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11484~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~318~^817.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11484~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11484~^~320~^41.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11484~^~321~^490.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11484~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11484~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11484~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11484~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11484~^~338~^66.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11484~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11484~^~432~^11.^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11484~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11484~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11485~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11485~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11485~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11485~^~268~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11485~^~301~^48.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~304~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~306~^352.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~318~^10630.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11485~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11485~^~320~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11485~^~321~^4226.^9^2125.^~1~^~A~^^^1^1360.^8378.^2^-4919.^13371.^~4~^~11/01/2002~ -~11485~^~322~^834.^8^101.^~1~^~A~^^^1^732.^935.^1^-456.^2123.^~4~^~11/01/2002~ -~11485~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11485~^~334~^3471.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11485~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11485~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11485~^~417~^27.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11485~^~432~^27.^3^5.^~1~^^^^^^^^^^^~02/01/2003~ -~11485~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11485~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11486~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11486~^~268~^167.^0^^~4~^^^^^^^^^^^~10/01/2009~ -~11486~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~318~^11155.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11486~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11486~^~320~^558.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11486~^~321~^4570.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11486~^~322~^1130.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11486~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11486~^~334~^3116.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~04/01/2003~ -~11486~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11486~^~338~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11486~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11486~^~432~^19.^0^^~1~^^^^^^^^^^^~10/01/2009~ -~11486~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11486~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11487~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11487~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11487~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~301~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~318~^4790.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~319~^0.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~320~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~321~^1904.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~322~^376.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11487~^~334~^1564.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~337~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~338~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11487~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11487~^~432~^24.^0^^~4~^^^^^^^^^^^~04/01/2003~ -~11487~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11488~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11488~^~268~^163.^0^^~4~^^^^^^^^^^^ -~11488~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~318~^3339.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11488~^~320~^167.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11488~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11488~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11488~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11488~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11488~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11488~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11489~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11489~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11489~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11489~^~268~^167.^0^^~4~^^^^^^^^^^^~08/01/2011~ -~11489~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~306~^320.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~307~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~318~^1367.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11489~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11489~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11489~^~321~^820.^6^^~1~^~A~^^^1^820.^820.^^^^~2~^~06/01/2003~ -~11489~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11489~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11489~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~11489~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11489~^~432~^16.^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11489~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11490~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11490~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11490~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11490~^~268~^209.^0^^~4~^^^^^^^^^^^ -~11490~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~306~^358.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~318~^6705.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11490~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11490~^~320~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11490~^~321~^3580.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~322~^885.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11490~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~337~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11490~^~432~^16.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11490~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11490~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11491~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11491~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11491~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~306~^214.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~318~^4005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~319~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~ -~11491~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~321~^1641.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~ -~11491~^~322~^406.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~ -~11491~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11491~^~334~^1119.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~ -~11491~^~337~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11491~^~338~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11491~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11491~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11491~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11492~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~ -~11492~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11492~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11492~^~268~^130.^0^^~4~^^^^^^^^^^^ -~11492~^~301~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~306~^108.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~307~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11492~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11492~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11492~^~321~^64.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~322~^16.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11492~^~334~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~337~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~338~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~417~^12.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11492~^~432~^12.^3^2.^~1~^^^^^^^^^^^~12/01/1984~ -~11492~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11492~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11493~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11493~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11493~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11493~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11493~^~301~^21.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~305~^14.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~306~^117.^3^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~307~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11493~^~319~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11493~^~321~^59.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~322~^15.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11493~^~334~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~337~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~338~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~417~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11493~^~432~^8.^3^2.^~1~^^^^^^^^^^^~03/01/2007~ -~11493~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11493~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11495~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11495~^~268~^414.^0^^~4~^^^^^^^^^^^ -~11495~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~304~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~306~^369.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~318~^292.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11495~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11495~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11495~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11495~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11495~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11495~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11495~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11496~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11496~^~268~^481.^0^^~4~^^^^^^^^^^^ -~11496~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~306~^410.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~307~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~318~^294.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11496~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11496~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11496~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11496~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11496~^~432~^33.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11496~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11496~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11497~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11497~^~268~^322.^0^^~4~^^^^^^^^^^^ -~11497~^~301~^11.^29^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~304~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~305~^59.^22^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~306~^183.^29^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~307~^245.^29^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~318~^141.^23^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11497~^~320~^7.^23^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11497~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11497~^~417~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11497~^~432~^44.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11497~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11497~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11499~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11499~^~268~^264.^0^^~4~^^^^^^^^^^^ -~11499~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~304~^19.^21^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~305~^55.^15^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~306~^163.^24^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~307~^221.^24^15.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~318~^146.^18^30.^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11499~^~320~^7.^18^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11499~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11499~^~417~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11499~^~432~^32.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11499~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11499~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11501~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11501~^~268~^389.^0^^~4~^^^^^^^^^^^ -~11501~^~301~^16.^27^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~304~^24.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~305~^78.^16^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~306~^295.^5^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~307~^45.^4^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~318~^257.^27^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11501~^~320~^13.^27^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11501~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11501~^~417~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11501~^~432~^42.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11501~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11501~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11502~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11502~^~268~^389.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11502~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~306~^265.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11502~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11502~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11502~^~321~^82.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~322~^9.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11502~^~334~^61.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~338~^342.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11502~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11502~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11502~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11503~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11503~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~11503~^~301~^77.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~304~^71.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~306~^312.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~307~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~318~^6300.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11503~^~320~^315.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11503~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11503~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11503~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11503~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11503~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11504~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11504~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11504~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~306~^284.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~307~^122.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~318~^5200.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11504~^~320~^260.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11504~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11504~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11504~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11504~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11504~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11505~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~268~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~301~^78.^1^^~1~^~A~^^^2^37.^120.^1^^^^~07/01/2012~ -~11505~^~304~^70.^2^^~1~^~A~^^^2^61.^80.^1^^^^~07/01/2012~ -~11505~^~305~^81.^1^^~1~^~A~^^^2^68.^94.^1^^^^~07/01/2012~ -~11505~^~306~^508.^2^^~1~^~A~^^^2^498.^518.^1^^^^~07/01/2012~ -~11505~^~307~^6.^2^^~1~^~A~^^^2^3.^9.^1^^^^~07/01/2012~ -~11505~^~318~^3778.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~11505~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11505~^~320~^189.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~11505~^~321~^2217.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~322~^42.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11505~^~334~^58.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~11505~^~338~^14720.^2^^~1~^~A~^^^2^4790.^24651.^1^^^^~07/01/2012~ -~11505~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11505~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11506~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11506~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11506~^~301~^33.^1^^~6~^~JA~^^^2^24.^42.^1^^^^~07/01/2012~ -~11506~^~304~^48.^2^^~6~^~JA~^^^2^34.^61.^1^^^^~07/01/2012~ -~11506~^~305~^40.^1^^~6~^~JA~^^^2^20.^60.^1^^^^~07/01/2012~ -~11506~^~306~^312.^2^^~6~^~JA~^^^2^148.^477.^1^^^^~07/01/2012~ -~11506~^~307~^7.^2^^~6~^~JA~^^^2^2.^13.^1^^^^~07/01/2012~ -~11506~^~318~^2939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11506~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~11506~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11506~^~321~^1725.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~ -~11506~^~322~^33.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~ -~11506~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11506~^~334~^45.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~ -~11506~^~337~^0.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~ -~11506~^~338~^11449.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~ -~11506~^~417~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11506~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11506~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11506~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11507~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11507~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11507~^~268~^359.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~301~^30.^3^4.^~1~^~A~^^^1^24.^40.^2^10.^50.^~2, 3~^~10/01/2002~ -~11507~^~304~^25.^3^3.^~1~^~A~^^^1^19.^30.^2^11.^38.^~2, 3~^~10/01/2002~ -~11507~^~305~^47.^3^7.^~1~^~A~^^^1^38.^62.^2^15.^78.^~2, 3~^~10/01/2002~ -~11507~^~306~^337.^3^27.^~1~^~A~^^^1^282.^370.^2^218.^455.^~2, 3~^~10/01/2002~ -~11507~^~307~^55.^3^26.^~1~^~A~^^^1^21.^107.^2^-58.^168.^~2, 3~^~05/01/2004~ -~11507~^~318~^14187.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11507~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11507~^~320~^709.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11507~^~321~^8509.^43^224.^~1~^~A~^^^2^4030.^16000.^2^7544.^9473.^~2, 3~^~05/01/2004~ -~11507~^~322~^7.^41^3.^~1~^~A~^^^2^0.^133.^3^-2.^17.^~1, 2, 3~^~05/01/2004~ -~11507~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11507~^~334~^0.^38^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2004~ -~11507~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2004~ -~11507~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11507~^~417~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^16.^~1, 2, 3~^~05/01/2004~ -~11507~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11507~^~432~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^16.^^~02/01/2007~ -~11507~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11507~^~636~^12.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11508~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11508~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11508~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~301~^38.^67^2.^~6~^~JA~^^^12^14.^94.^66^33.^42.^~4~^~04/01/2003~ -~11508~^~304~^27.^68^0.^~6~^~JA~^^^12^15.^45.^67^25.^28.^~4~^~04/01/2003~ -~11508~^~305~^54.^67^1.^~6~^~JA~^^^12^26.^82.^66^50.^57.^~4~^~04/01/2003~ -~11508~^~306~^475.^68^9.^~6~^~JA~^^^12^306.^817.^67^456.^493.^~4~^~04/01/2003~ -~11508~^~307~^36.^68^3.^~6~^~JA~^^^12^4.^122.^67^28.^43.^~4~^~04/01/2003~ -~11508~^~318~^19218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11508~^~320~^961.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~321~^11509.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~322~^43.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11508~^~334~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~337~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~338~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~417~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^~1, 2, 3~^~12/01/2002~ -~11508~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11508~^~432~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^^~03/01/2006~ -~11508~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11510~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11510~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11510~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~301~^27.^4^6.^~1~^~A~^^^1^17.^46.^3^5.^48.^~2, 3~^~04/01/2003~ -~11510~^~304~^18.^4^2.^~1~^~A~^^^1^15.^24.^3^10.^24.^~2, 3~^~04/01/2003~ -~11510~^~305~^32.^4^5.^~1~^~A~^^^1^22.^47.^3^15.^49.^~2, 3~^~04/01/2003~ -~11510~^~306~^230.^4^25.^~1~^~A~^^^1^186.^288.^3^149.^311.^~2, 3~^~04/01/2003~ -~11510~^~307~^27.^4^5.^~1~^~A~^^^1^21.^43.^3^9.^43.^~2, 3~^~04/01/2003~ -~11510~^~318~^15740.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11510~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11510~^~320~^787.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11510~^~321~^9444.^10^804.^~1~^~A~^^^1^7119.^15160.^1^-773.^19660.^~2, 3~^~03/01/2006~ -~11510~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11510~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11510~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11510~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11510~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11510~^~417~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^~1, 2, 3~^~04/01/2003~ -~11510~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11510~^~432~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^^~02/01/2007~ -~11510~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11512~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11512~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11512~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~301~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~304~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~305~^49.^8^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~306~^312.^8^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~307~^53.^8^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~318~^7983.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11512~^~320~^399.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~321~^4790.^0^^~4~^~O~^~11510~^^^^^^^^^~02/01/2007~ -~11512~^~322~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11512~^~334~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~337~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~338~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11512~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11514~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11514~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11514~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~301~^30.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~304~^24.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~305~^52.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~306~^210.^4^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~307~^75.^4^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~318~^8699.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11514~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~321~^5219.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11514~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11514~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11514~^~432~^11.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11514~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11516~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11516~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11516~^~301~^37.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~304~^22.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~305~^45.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~306~^365.^6^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~307~^6.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~318~^10367.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~11516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11516~^~320~^518.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~11516~^~321~^6220.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11516~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11516~^~417~^21.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11516~^~432~^21.^6^3.^~1~^^^^^^^^^^^~07/01/2003~ -~11516~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11517~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11517~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~301~^35.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~304~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~306~^377.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~307~^8.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~318~^20870.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11517~^~320~^1043.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~321~^12498.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~322~^47.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11517~^~334~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~417~^22.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11517~^~432~^22.^6^3.^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11518~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11518~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11518~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~304~^33.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~305~^84.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~306~^591.^5^47.^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~307~^11.^8^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~318~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11518~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11518~^~321~^35.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11518~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11518~^~334~^20.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11518~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11518~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11518~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11518~^~432~^22.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11518~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11518~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11518~^~636~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11519~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11519~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11519~^~268~^594.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11519~^~301~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~305~^76.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~306~^484.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11519~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11519~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11519~^~321~^39.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~322~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11519~^~334~^22.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~337~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~338~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11519~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11519~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11519~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11520~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11520~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~301~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~304~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~305~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~306~^648.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~318~^4825.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~319~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11520~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~321~^2895.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11520~^~322~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11520~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11520~^~334~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~ -~11520~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11520~^~338~^1932.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11520~^~417~^126.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11520~^~432~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11520~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11521~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11521~^~268~^100.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11521~^~301~^86.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~304~^20.^3^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~305~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~306~^460.^3^122.^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~318~^4238.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11521~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11521~^~320~^212.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11521~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11521~^~417~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11521~^~432~^48.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11521~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11521~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11522~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11522~^~268~^46.^0^^~4~^^^^^^^^^^^ -~11522~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~306~^332.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11522~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11522~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11522~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11522~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11522~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11522~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11523~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11523~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11523~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~305~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~318~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11523~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11523~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11523~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11523~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11523~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11523~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11525~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11525~^~268~^184.^0^^~4~^^^^^^^^^^^ -~11525~^~301~^129.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~304~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~306~^606.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~318~^2045.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11525~^~320~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11525~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11525~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11525~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11525~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11525~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11526~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11526~^~268~^184.^0^^~4~^^^^^^^^^^^ -~11526~^~301~^149.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~306~^623.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~307~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~318~^1764.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11526~^~320~^88.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11526~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11526~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11526~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11526~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11526~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11527~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11527~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11527~^~268~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~304~^10.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~305~^28.^9^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~306~^204.^9^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~307~^13.^9^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~318~^642.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~319~^0.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~ -~11527~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~321~^346.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~ -~11527~^~322~^78.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~ -~11527~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11527~^~334~^0.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~ -~11527~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11527~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11527~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11527~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11527~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11527~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11529~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11529~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~301~^10.^69^0.^~6~^~JA~^^^8^7.^18.^62^9.^10.^~4~^~09/01/2002~ -~11529~^~304~^11.^70^0.^~6~^~JA~^^^8^7.^15.^63^10.^11.^~4~^~09/01/2002~ -~11529~^~305~^24.^69^0.^~6~^~JA~^^^8^15.^37.^62^22.^25.^~4~^~09/01/2002~ -~11529~^~306~^237.^67^5.^~6~^~JA~^^^8^144.^385.^60^226.^247.^~4~^~09/01/2002~ -~11529~^~307~^5.^66^0.^~6~^~JA~^^^8^1.^24.^59^3.^5.^~4~^~09/01/2002~ -~11529~^~318~^833.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11529~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11529~^~321~^449.^70^2.^~1~^~A~^^^3^184.^572.^3^441.^457.^~2, 3~^~09/01/2002~ -~11529~^~322~^101.^66^101.^~1~^~A~^^^3^0.^112.^59^-101.^304.^~2, 3~^~09/01/2002~ -~11529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11529~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~2, 3~^~09/01/2002~ -~11529~^~337~^2573.^13^54.^~1~^~A~^^^3^1136.^3419.^2^2361.^2784.^~2, 3~^~06/01/2003~ -~11529~^~338~^123.^10^4.^~1~^~A~^^^3^98.^138.^2^105.^140.^~2, 3~^~09/01/2002~ -~11529~^~417~^15.^19^2.^~6~^~JA~^^^3^1.^36.^12^10.^19.^~4~^~09/01/2002~ -~11529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11529~^~432~^15.^19^2.^~6~^~JA~^^^3^1.^36.^12^10.^19.^^~08/01/2010~ -~11529~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11529~^~636~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11530~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11530~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~301~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^15.^~4~^~10/01/2002~ -~11530~^~304~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~4~^~10/01/2002~ -~11530~^~305~^28.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^32.^~4~^~10/01/2002~ -~11530~^~306~^218.^4^12.^~1~^~A~^^^1^194.^250.^3^179.^256.^~4~^~10/01/2002~ -~11530~^~307~^11.^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11530~^~318~^489.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11530~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11530~^~321~^293.^8^34.^~1~^~A~^^^2^199.^408.^4^198.^388.^~4~^~06/01/2003~ -~11530~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~06/01/2003~ -~11530~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11530~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~06/01/2003~ -~11530~^~337~^3041.^8^379.^~1~^~A~^^^2^2342.^4400.^4^1987.^4093.^~4~^~06/01/2003~ -~11530~^~338~^94.^8^14.^~1~^~A~^^^2^70.^150.^4^54.^133.^~4~^~06/01/2003~ -~11530~^~417~^13.^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11530~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11530~^~636~^9.^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11531~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11531~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~301~^33.^18^2.^~1~^~A~^^^1^17.^53.^11^27.^37.^~2, 3~^~08/01/2014~ -~11531~^~304~^10.^18^0.^~1~^~A~^^^1^9.^11.^13^9.^9.^~2, 3~^~08/01/2014~ -~11531~^~305~^17.^18^0.^~1~^~A~^^^1^14.^19.^13^15.^17.^~2, 3~^~08/01/2014~ -~11531~^~306~^191.^18^2.^~1~^~A~^^^1^165.^206.^11^185.^195.^~2, 3~^~08/01/2014~ -~11531~^~307~^115.^18^6.^~1~^~A~^^^1^43.^189.^12^100.^129.^~2, 3~^~04/01/2014~ -~11531~^~318~^408.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11531~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~321~^245.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~ -~11531~^~322~^0.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~03/01/2007~ -~11531~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11531~^~334~^0.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~03/01/2007~ -~11531~^~337~^2537.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~ -~11531~^~338~^78.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~ -~11531~^~417~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~11531~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11531~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11531~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11533~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~262~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~263~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~301~^34.^40^2.^~1~^^^^4^10.^70.^39^29.^38.^~4~^~11/01/2002~ -~11533~^~304~^12.^90^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~305~^20.^88^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~306~^207.^10^13.^~1~^^^^2^161.^288.^9^177.^237.^~4~^~11/01/2002~ -~11533~^~307~^221.^38^10.^~1~^^^^4^87.^354.^37^199.^243.^~4~^~06/01/2013~ -~11533~^~318~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11533~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~321~^103.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11533~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~337~^4088.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~338~^126.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11533~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11533~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11533~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11537~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11537~^~268~^63.^0^^~4~^^^^^^^^^^^ -~11537~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~305~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~307~^401.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~318~^390.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11537~^~320~^20.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11537~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11537~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11537~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11537~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11537~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11540~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11540~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11540~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11540~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11540~^~301~^10.^12^0.^~1~^~A~^^^1^7.^14.^6^8.^11.^~2, 3~^~08/01/2014~ -~11540~^~304~^11.^12^0.^~1~^~A~^^^1^9.^14.^7^9.^11.^~2, 3~^~08/01/2014~ -~11540~^~305~^19.^12^0.^~1~^~A~^^^1^15.^23.^10^17.^19.^~2, 3~^~08/01/2014~ -~11540~^~306~^217.^12^8.^~1~^~A~^^^1^169.^282.^9^198.^235.^~2, 3~^~08/01/2014~ -~11540~^~307~^253.^12^4.^~1~^~A~^^^1^218.^294.^10^243.^262.^~2, 3~^~10/01/2014~ -~11540~^~318~^450.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11540~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11540~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11540~^~321~^270.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11540~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11540~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11540~^~334~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11540~^~337~^9037.^18^^~1~^~A~^^^3^5000.^11600.^^^^~2, 3~^~12/01/2002~ -~11540~^~338~^60.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11540~^~417~^20.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11540~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11540~^~432~^20.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11540~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11540~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11546~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11546~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11546~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~301~^36.^30^1.^~6~^~JA~^^^4^22.^59.^19^32.^39.^~2, 3~^~09/01/2002~ -~11546~^~304~^42.^6^2.^~1~^~A~^^^1^34.^47.^5^36.^47.^~2, 3~^~09/01/2002~ -~11546~^~305~^83.^6^2.^~1~^~A~^^^1^72.^93.^5^75.^90.^~2, 3~^~09/01/2002~ -~11546~^~306~^1014.^16^15.^~6~^~JA~^^^3^890.^1107.^12^980.^1046.^~2, 3~^~09/01/2002~ -~11546~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~11546~^~318~^1525.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11546~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11546~^~321~^901.^9^45.^~11~^~JO~^^^3^1.^1700.^4^773.^1027.^~2, 3~^~09/01/2002~ -~11546~^~322~^29.^7^28.^~11~^~JO~^^^2^0.^200.^1^-334.^391.^~2, 3~^~09/01/2002~ -~11546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11546~^~334~^0.^6^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~09/01/2002~ -~11546~^~337~^28764.^13^556.^~11~^~JO~^^^2^5400.^55661.^4^27219.^30308.^~2, 3~^~09/01/2002~ -~11546~^~338~^0.^6^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~09/01/2002~ -~11546~^~417~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^~2, 3~^~09/01/2002~ -~11546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11546~^~432~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^^~08/01/2010~ -~11546~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11547~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~301~^18.^36^0.^~6~^~JA~^^^4^11.^33.^24^16.^19.^~2, 3~^~09/01/2002~ -~11547~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~09/01/2002~ -~11547~^~305~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^38.^42.^~2, 3~^~09/01/2002~ -~11547~^~306~^439.^27^15.^~6~^~JA~^^^4^259.^618.^19^405.^472.^~2, 3~^~09/01/2002~ -~11547~^~307~^28.^32^2.^~6~^~JA~^^^4^2.^89.^25^24.^32.^~2, 3~^~09/01/2002~ -~11547~^~318~^510.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11547~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11547~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11547~^~321~^306.^6^10.^~1~^~A~^^^1^280.^353.^5^280.^332.^~2, 3~^~02/01/2007~ -~11547~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11547~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11547~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11547~^~337~^21754.^6^604.^~1~^~A~^^^1^19729.^23533.^5^20198.^23308.^~2, 3~^~02/01/2007~ -~11547~^~338~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11547~^~417~^11.^0^^~4~^^^^^^^^^^^~09/01/2002~ -~11547~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11547~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11547~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11548~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~301~^166.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~304~^178.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~305~^295.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~306~^1927.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~307~^134.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~318~^17247.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~319~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~320~^862.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~321~^10348.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~322~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11548~^~334~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~337~^46260.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~338~^1370.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~417~^120.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11548~^~432~^120.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11548~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11549~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11549~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~268~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11549~^~301~^14.^18^0.^~1~^~A~^^^2^11.^19.^6^12.^14.^~2, 3~^~08/01/2014~ -~11549~^~304~^15.^18^0.^~1~^~A~^^^2^13.^17.^10^14.^15.^~2, 3~^~08/01/2014~ -~11549~^~305~^27.^18^0.^~1~^~A~^^^2^21.^32.^8^25.^28.^~2, 3~^~08/01/2014~ -~11549~^~306~^297.^12^8.^~1~^~A~^^^1^249.^332.^6^274.^318.^~2, 3~^~08/01/2014~ -~11549~^~307~^474.^12^4.^~1~^~A~^^^1^394.^648.^9^463.^485.^~2, 3~^~08/01/2014~ -~11549~^~318~^435.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11549~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11549~^~321~^259.^8^9.^~11~^~JO~^^^2^139.^418.^4^232.^286.^~2, 3~^~08/01/2010~ -~11549~^~322~^0.^8^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2010~ -~11549~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11549~^~334~^3.^8^0.^~11~^~JO~^^^2^0.^13.^^^^~2, 3~^~08/01/2010~ -~11549~^~337~^13895.^8^316.^~11~^~JO~^^^2^10080.^16820.^4^13016.^14773.^~2, 3~^~04/01/2014~ -~11549~^~338~^24.^8^0.^~11~^~JO~^^^2^0.^111.^^^^~2, 3~^~04/01/2014~ -~11549~^~417~^9.^0^^~4~^^^^^^^^^^^~04/01/2014~ -~11549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11549~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/2014~ -~11549~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11549~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11551~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11551~^~268~^146.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~11551~^~301~^13.^66^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~304~^19.^32^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~305~^32.^32^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~306~^380.^32^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~307~^452.^32^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~318~^955.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11551~^~319~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~ -~11551~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11551~^~321~^570.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~322~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~ -~11551~^~334~^6.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~337~^18942.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~338~^31.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11551~^~432~^9.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~11551~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11551~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11553~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11553~^~268~^176.^0^^~4~^^^^^^^^^^^ -~11553~^~301~^17.^54^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~305~^39.^16^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~306~^413.^16^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~307~^551.^16^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~318~^850.^54^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11553~^~320~^43.^54^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11553~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11553~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11553~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11553~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11553~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11553~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11555~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11555~^~268~^247.^0^^~4~^^^^^^^^^^^ -~11555~^~301~^37.^56^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~305~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~306~^356.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~307~^543.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~318~^987.^61^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11555~^~320~^49.^61^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11555~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11555~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11555~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11555~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11555~^~601~^3.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11557~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11557~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11557~^~268~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~301~^13.^28^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~305~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~306~^398.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~307~^368.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11557~^~318~^810.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~319~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~ -~11557~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~321~^483.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~ -~11557~^~322~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~ -~11557~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11557~^~334~^6.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~ -~11557~^~337~^18454.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11557~^~338~^30.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11557~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11557~^~432~^14.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~11557~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11559~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11559~^~268~^134.^0^^~4~^^^^^^^^^^^ -~11559~^~301~^10.^27^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~306~^373.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~318~^801.^27^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11559~^~320~^40.^27^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11559~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11559~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11559~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11559~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11559~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11559~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11563~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11563~^~268~^167.^0^^~4~^^^^^^^^^^^ -~11563~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~318~^200.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11563~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11563~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11563~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11563~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11563~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11563~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11564~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11564~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11564~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~305~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~306~^191.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~307~^67.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11564~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11564~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11564~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11564~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11564~^~417~^15.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11564~^~432~^15.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11564~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11564~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11564~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11565~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11565~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11565~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11565~^~301~^33.^18^1.^~1~^~A~^^^7^27.^45.^17^30.^35.^~4~^~12/01/2002~ -~11565~^~304~^9.^18^0.^~1~^~A~^^^7^5.^12.^17^7.^9.^~4~^~12/01/2002~ -~11565~^~305~^26.^18^1.^~1~^~A~^^^7^11.^36.^17^22.^29.^~4~^~12/01/2002~ -~11565~^~306~^177.^18^6.^~1~^~A~^^^7^110.^221.^17^162.^190.^~4~^~12/01/2002~ -~11565~^~307~^16.^18^3.^~1~^~A~^^^7^3.^56.^17^8.^23.^~4~^~12/01/2002~ -~11565~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11565~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11565~^~320~^0.^0^^~4~^~NC~^~11564~^^^^^^^^^~03/01/2007~ -~11565~^~321~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~322~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11565~^~334~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~337~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~338~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11565~^~432~^9.^0^^~1~^^~11564~^^^^^^^^^~03/01/2007~ -~11565~^~435~^9.^0^^~4~^~NC~^~11564~^^^^^^^^^~03/01/2007~ -~11565~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11566~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11566~^~268~^67.^0^^~4~^^^^^^^^^^^ -~11566~^~301~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~306~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~307~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~318~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11566~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11566~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11566~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11566~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11566~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11566~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11567~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11567~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11567~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~307~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11567~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~321~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~322~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11567~^~334~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~337~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~338~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11567~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11567~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11568~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11568~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11568~^~268~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~301~^190.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~304~^31.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~306~^296.^5^20.^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~307~^40.^5^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~318~^11587.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11568~^~320~^579.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~321~^6952.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~ -~11568~^~322~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~ -~11568~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11568~^~334~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~ -~11568~^~337~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~ -~11568~^~338~^12825.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~ -~11568~^~417~^194.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11568~^~432~^194.^3^4.^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11568~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11569~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11569~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11569~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11569~^~301~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~305~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~307~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~318~^7625.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11569~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11569~^~320~^381.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11569~^~321~^4575.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11569~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11569~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11569~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11569~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11569~^~338~^8440.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11569~^~417~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11569~^~432~^118.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11569~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11569~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11570~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11570~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11570~^~301~^118.^4^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~305~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~306~^141.^5^15.^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~307~^277.^5^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~318~^3586.^5^324.^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11570~^~320~^179.^5^16.^~1~^^^^^^^^^^^~06/01/2002~ -~11570~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11570~^~417~^41.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11570~^~432~^41.^3^5.^~1~^^^^^^^^^^^~12/01/1984~ -~11570~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11570~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11574~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11574~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11574~^~301~^118.^13^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~304~^27.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~305~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~306~^184.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~307~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~318~^6184.^13^484.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11574~^~320~^309.^13^24.^~1~^^^^^^^^^^^~06/01/2002~ -~11574~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11574~^~417~^74.^6^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11574~^~432~^74.^6^7.^~1~^^^^^^^^^^^~12/01/1984~ -~11574~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11574~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11575~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11575~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11575~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~301~^152.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~305~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~318~^10765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11575~^~320~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~321~^6459.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~322~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11575~^~334~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~337~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~338~^11915.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~417~^39.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11575~^~432~^39.^3^6.^~1~^^^^^^^^^^^~03/01/2007~ -~11575~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11576~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11576~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11576~^~301~^114.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~307~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~318~^6108.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11576~^~320~^305.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11576~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11576~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11576~^~432~^41.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11576~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11576~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11577~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11577~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11577~^~301~^128.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~305~^32.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~306~^216.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~307~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~318~^8612.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11577~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11577~^~321~^5167.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11577~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~338~^9532.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11577~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~432~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11577~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11578~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~11578~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11578~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11578~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~11578~^~301~^14.^11^0.^~1~^~A~^^^1^7.^18.^4^13.^15.^~2, 3~^~04/01/2013~ -~11578~^~304~^11.^11^0.^~1~^~A~^^^1^9.^12.^4^9.^11.^~2, 3~^~08/01/1984~ -~11578~^~305~^19.^11^0.^~1~^~A~^^^1^18.^22.^7^18.^19.^~2, 3~^~04/01/2013~ -~11578~^~306~^185.^11^1.^~1~^~A~^^^1^176.^224.^9^180.^188.^~2, 3~^~04/01/2013~ -~11578~^~307~^169.^11^3.^~1~^~A~^^^1^156.^233.^9^159.^177.^~2, 3~^~04/01/2013~ -~11578~^~318~^706.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11578~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11578~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11578~^~321~^377.^6^21.^~1~^~A~^^^1^289.^465.^4^318.^436.^~2, 3~^~04/01/2013~ -~11578~^~322~^93.^6^7.^~1~^~A~^^^1^80.^111.^2^65.^119.^~2, 3~^~04/01/2013~ -~11578~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11578~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~11578~^~337~^7119.^6^143.^~1~^~A~^^^1^6742.^7778.^3^6636.^7601.^~2, 3~^~04/01/2013~ -~11578~^~338~^278.^6^72.^~1~^~A~^^^1^106.^521.^2^-36.^591.^~2, 3~^~04/01/2013~ -~11578~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11578~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11578~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11578~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11578~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11579~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11579~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11579~^~301~^21.^56^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~304~^15.^54^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~305~^37.^54^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~306~^138.^53^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~307~^224.^53^25.^~1~^^^^^^^^^^^~05/01/2013~ -~11579~^~318~^5081.^56^171.^~1~^^^^^^^^^^^~04/01/2013~ -~11579~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11579~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11579~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11579~^~432~^18.^0^^~1~^^^^^^^^^^^~01/01/2006~ -~11579~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11579~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11581~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11581~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11581~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~306~^291.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~307~^214.^0^^~4~^~RA~^^^^^^^^^^~05/01/2013~ -~11581~^~318~^11651.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11581~^~320~^583.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~321~^5670.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~ -~11581~^~322~^2636.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~ -~11581~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11581~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11581~^~338~^493.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11581~^~432~^24.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11581~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11583~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11583~^~268~^301.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11583~^~301~^25.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~304~^24.^13^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~305~^59.^25^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~306~^212.^10^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~307~^47.^13^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~318~^5078.^36^248.^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11583~^~320~^254.^36^12.^~1~^^^^^^^^^^^~06/01/2002~ -~11583~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11583~^~417~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11583~^~432~^29.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11583~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11583~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11584~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11584~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11584~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~306~^169.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~307~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~318~^4277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~319~^0.^0^^~4~^~BNA~^~11581~^^^^^^^^^~03/01/2007~ -~11584~^~320~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~321~^2082.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~ -~11584~^~322~^968.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~ -~11584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11584~^~334~^0.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~ -~11584~^~337~^0.^0^^~4~^~BFSN~^~11581~^^^^^^^^^~02/01/2003~ -~11584~^~338~^637.^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~ -~11584~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11584~^~432~^19.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11584~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11585~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~301~^15.^13^4.^~1~^~A~^^^1^9.^17.^1^-40.^70.^~4~^~04/01/2013~ -~11585~^~304~^12.^13^1.^~1~^~A~^^^1^9.^13.^1^-11.^35.^~4~^~04/01/2013~ -~11585~^~305~^19.^13^0.^~1~^~A~^^^1^19.^19.^1^19.^19.^~4~^~04/01/2013~ -~11585~^~306~^204.^13^5.^~1~^~A~^^^1^197.^207.^1^135.^273.^~4~^~04/01/2013~ -~11585~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~318~^706.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~321~^377.^6^17.^~1~^~A~^^^1^354.^385.^1^155.^599.^~4~^~04/01/2013~ -~11585~^~322~^93.^6^2.^~1~^~A~^^^1^90.^94.^1^63.^121.^~4~^~04/01/2013~ -~11585~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~1, 4~^~04/01/2013~ -~11585~^~337~^7119.^6^200.^~1~^~A~^^^1^7030.^7389.^1^4569.^9669.^~4~^~04/01/2013~ -~11585~^~338~^278.^6^123.^~1~^~A~^^^1^112.^333.^1^-1292.^1847.^~4~^~04/01/2013~ -~11585~^~417~^21.^0^^~4~^^^^^^^^^^^~04/01/2013~ -~11585~^~432~^21.^0^^~4~^^^^^^^^^^^~04/01/2013~ -~11585~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11587~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11587~^~268~^79.^0^^~4~^^^^^^^^^^^ -~11587~^~301~^109.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~304~^65.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~306~^510.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~307~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~318~^8000.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11587~^~320~^400.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11587~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11587~^~417~^140.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11587~^~432~^140.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11587~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11587~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11588~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11588~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~304~^22.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~306~^584.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~307~^14.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11588~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11588~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11588~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11588~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11588~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11588~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11588~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11590~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11590~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11590~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~305~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~306~^118.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~307~^8.^4^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11590~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~321~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11590~^~322~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11590~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11590~^~334~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11590~^~337~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11590~^~338~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~03/01/2007~ -~11590~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11590~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11590~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11590~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11591~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11591~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~11591~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~11591~^~268~^46.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11591~^~301~^120.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~304~^21.^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11591~^~305~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~306~^330.^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11591~^~307~^41.^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11591~^~318~^3191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11591~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11591~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11591~^~321~^1914.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~03/01/2007~ -~11591~^~322~^0.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11591~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11591~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11591~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11591~^~338~^5767.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11591~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11591~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11591~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11591~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11591~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11593~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11593~^~268~^54.^0^^~4~^^^^^^^^^^^ -~11593~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~306~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~307~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11593~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11593~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11593~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11593~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11593~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11593~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11594~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11594~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11594~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11594~^~268~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11594~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~307~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11594~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11594~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11594~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11594~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11594~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11594~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11594~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11594~^~338~^197.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11594~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11594~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11594~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11594~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11595~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11595~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11595~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11595~^~268~^205.^0^^~4~^^^^^^^^^^^ -~11595~^~301~^84.^7^27.^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~304~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~305~^37.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~306~^223.^3^21.^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~307~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~318~^128.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11595~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11595~^~417~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11595~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11595~^~432~^66.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11595~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11595~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11596~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11596~^~268~^159.^0^^~4~^^^^^^^^^^^ -~11596~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~306~^274.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~318~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11596~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11596~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11596~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11596~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11596~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11596~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11597~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11597~^~268~^310.^0^^~4~^^^^^^^^^^^ -~11597~^~301~^224.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~305~^63.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~306~^176.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~307~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~318~^8090.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11597~^~320~^405.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11597~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11597~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11597~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11597~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11597~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11599~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11599~^~268~^619.^0^^~4~^^^^^^^^^^^ -~11599~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~305~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~306~^586.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~307~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11599~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11599~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11599~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11599~^~432~^19.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11599~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11599~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11601~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~268~^494.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~301~^17.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~304~^21.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~306~^816.^6^72.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~307~^9.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11601~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~321~^83.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~11601~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11601~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11601~^~417~^23.^12^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11601~^~432~^23.^12^4.^~1~^^^^^^^^^^^~03/01/2007~ -~11601~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11601~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11602~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~301~^14.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~304~^18.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~305~^49.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~306~^670.^6^36.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~307~^8.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11602~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~321~^73.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~322~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11602~^~334~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~337~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~338~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~417~^16.^12^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11602~^~432~^16.^12^4.^~1~^^^^^^^^^^^~03/01/2007~ -~11602~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11603~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11603~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~268~^159.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11603~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~304~^12.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~305~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~306~^150.^3^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~307~^4.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11603~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11603~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11603~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11603~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11603~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11603~^~417~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11603~^~432~^12.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11603~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11603~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11604~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11604~^~268~^159.^0^^~4~^^^^^^^^^^^ -~11604~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~318~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11604~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11604~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11604~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11604~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11604~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11604~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11605~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11605~^~268~^305.^0^^~4~^^^^^^^^^^^ -~11605~^~301~^11.^29^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~304~^19.^21^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~305~^17.^29^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~306~^164.^21^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~307~^162.^27^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~318~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11605~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~11605~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11605~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11605~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11605~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11605~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11609~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11609~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11609~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11609~^~268~^272.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~11609~^~301~^11.^59^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~304~^15.^60^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~305~^17.^60^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~306~^115.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11609~^~307~^149.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11609~^~318~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11609~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11609~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11609~^~321~^29.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11609~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11609~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11609~^~432~^27.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~11609~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11609~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11613~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11613~^~268~^88.^0^^~4~^^^^^^^^^^^ -~11613~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~304~^52.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~305~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~306~^470.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~307~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~318~^4200.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11613~^~320~^210.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11613~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11613~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11613~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11613~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11613~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11614~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11614~^~268~^105.^0^^~4~^^^^^^^^^^^ -~11614~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~306~^491.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~318~^4385.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11614~^~320~^219.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11614~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11614~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11614~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11614~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11614~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11615~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11615~^~268~^1301.^0^^~4~^^^^^^^^^^^ -~11615~^~301~^813.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~304~^640.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~305~^518.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~306~^2960.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~307~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~318~^68300.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11615~^~320~^3415.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11615~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11615~^~417~^108.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11615~^~432~^108.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11615~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11615~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11616~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11616~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11616~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~304~^103.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~306~^390.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~318~^4000.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11616~^~320~^200.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11616~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11616~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11616~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11616~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11616~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11617~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11617~^~268~^84.^0^^~4~^^^^^^^^^^^ -~11617~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~306~^321.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~318~^3474.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11617~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11617~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11617~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11617~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11617~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11617~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11618~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11618~^~268~^628.^0^^~4~^^^^^^^^^^^ -~11618~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~305~^165.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~306~^340.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11618~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11618~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11618~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11618~^~432~^24.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11618~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11618~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11620~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11620~^~268~^155.^0^^~4~^^^^^^^^^^^ -~11620~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~304~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~305~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~306~^461.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~307~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~318~^74.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11620~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11620~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11620~^~417~^44.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11620~^~432~^44.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11620~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11620~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11621~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11621~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2010~ -~11621~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~306~^457.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~307~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11621~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11621~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11621~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11621~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11621~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11621~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11624~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11624~^~268~^1344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11624~^~301~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~304~^161.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~305~^346.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~306~^2400.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~318~^277.^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11624~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11624~^~320~^14.^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11624~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11624~^~417~^366.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11624~^~432~^366.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11624~^~435~^366.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11624~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11625~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11625~^~268~^1134.^0^^~4~^^^^^^^^^^^~08/01/2008~ -~11625~^~301~^176.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~304~^372.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~305~^548.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~306~^6300.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~307~^391.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~318~^63240.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11625~^~417~^194.^0^^~4~^~BFSN~^~11297~^^^^^^^^^~07/01/2002~ -~11625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~11625~^~432~^194.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2002~ -~11625~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~11625~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11626~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11626~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~301~^14.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~305~^32.^5^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~306~^27.^5^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11626~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11626~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~321~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~322~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11626~^~334~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~337~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~338~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~417~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11626~^~432~^10.^3^1.^~1~^^^^^^^^^^^~03/01/2007~ -~11626~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11632~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11632~^~268~^113.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~301~^23.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~304~^15.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~305~^18.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~306~^193.^3^26.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~307~^1671.^3^91.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~318~^1700.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~319~^0.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~321~^968.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~322~^32.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11632~^~334~^72.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~337~^0.^0^^~4~^~BFSN~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~338~^657.^0^^~4~^~BFSN~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~417~^14.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11632~^~432~^14.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11632~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11637~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11637~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11637~^~301~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~306~^280.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~307~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11637~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11637~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11637~^~417~^14.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11637~^~432~^14.^3^2.^~1~^^^^^^^^^^^~12/01/1984~ -~11637~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11637~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11640~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11640~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11640~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11640~^~268~^1457.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11640~^~301~^183.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~304~^104.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~305~^296.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~306~^1650.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~307~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11640~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11640~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11640~^~321~^13.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11640~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~338~^38.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~417~^116.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11640~^~432~^116.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11640~^~435~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11640~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11641~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11641~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11641~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~301~^15.^6^0.^~1~^^^^2^10.^18.^2^12.^18.^~2, 3~^~01/01/2003~ -~11641~^~304~^17.^6^0.^~1~^^^^2^15.^19.^4^15.^18.^~2, 3~^~01/01/2003~ -~11641~^~305~^38.^6^0.^~1~^^^^2^35.^40.^3^35.^40.^~2, 3~^~01/01/2003~ -~11641~^~306~^262.^6^10.^~1~^^^^2^227.^290.^1^157.^366.^~2, 3~^~01/01/2003~ -~11641~^~307~^2.^16^^~1~^^^^^^^^^^^~01/01/2003~ -~11641~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11641~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~321~^120.^7^1.^~6~^~JA~^^^3^0.^410.^1^104.^135.^~2, 3~^~01/01/2003~ -~11641~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11641~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11641~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11641~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11641~^~338~^2125.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11641~^~417~^29.^6^2.^~1~^^^^2^20.^40.^4^23.^34.^~2, 3~^~01/01/2003~ -~11641~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11641~^~432~^29.^6^2.^~1~^^^^2^20.^40.^4^23.^34.^^~03/01/2007~ -~11641~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11642~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11642~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11642~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11642~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11642~^~301~^27.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~304~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~305~^39.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~306~^192.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11642~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11642~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11642~^~321~^127.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~322~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11642~^~334~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~337~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~338~^2249.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~417~^20.^3^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11642~^~432~^20.^3^3.^~1~^^^^^^^^^^^~03/01/2007~ -~11642~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11642~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11643~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11643~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11643~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~301~^28.^5^2.^~1~^^^^1^22.^35.^4^21.^34.^~4~^~01/01/2003~ -~11643~^~304~^14.^5^2.^~1~^^^^1^6.^18.^4^8.^20.^~4~^~01/01/2003~ -~11643~^~305~^23.^4^2.^~1~^^^^1^16.^29.^3^13.^31.^~4~^~01/01/2003~ -~11643~^~306~^350.^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~307~^4.^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~318~^1367.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11643~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11643~^~320~^68.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11643~^~321~^820.^6^0.^~1~^~A~^^^1^820.^820.^1^820.^820.^~4~^~01/01/2003~ -~11643~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11643~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11643~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11643~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11643~^~338~^38.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11643~^~417~^24.^9^1.^~1~^^^^1^20.^28.^4^19.^28.^~4~^~01/01/2003~ -~11643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11643~^~432~^24.^9^1.^~1~^^^^1^20.^28.^4^19.^28.^^~03/01/2007~ -~11643~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11644~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11644~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11644~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~301~^22.^3^4.^~1~^^^^1^14.^29.^2^2.^41.^~4~^~01/01/2003~ -~11644~^~304~^13.^3^2.^~1~^^^^1^8.^17.^2^0.^24.^~4~^~01/01/2003~ -~11644~^~305~^19.^3^0.^~1~^^^^1^19.^20.^2^17.^21.^~4~^~01/01/2003~ -~11644~^~306~^241.^3^98.^~1~^^^^1^126.^437.^2^-183.^664.^~4~^~03/01/2006~ -~11644~^~307~^1.^2^^~1~^^^^1^1.^1.^1^^^^~01/01/2003~ -~11644~^~318~^5223.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11644~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11644~^~320~^261.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11644~^~321~^2793.^12^661.^~1~^~A~^^^1^1400.^4570.^3^686.^4898.^~4~^~01/01/2003~ -~11644~^~322~^682.^8^298.^~1~^~A~^^^1^117.^1130.^2^-601.^1965.^~4~^~01/01/2003~ -~11644~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11644~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11644~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11644~^~338~^1415.^7^785.^~1~^~A~^^^1^630.^2200.^1^-8559.^11389.^~4~^~01/01/2003~ -~11644~^~417~^20.^2^^~1~^^^^1^18.^23.^1^^^^~01/01/2003~ -~11644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11644~^~432~^20.^2^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11645~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11645~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11645~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11645~^~268~^372.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11645~^~301~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~304~^13.^36^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~305~^27.^36^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~306~^185.^27^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~307~^29.^6^6.^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~11645~^~318~^7530.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11645~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11645~^~320~^377.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11645~^~321~^4518.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11645~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11645~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11645~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11645~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11645~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11647~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11647~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~301~^17.^29^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~304~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~305~^25.^10^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~306~^193.^10^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~307~^39.^10^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~318~^9169.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11647~^~320~^458.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~321~^5501.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11647~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11647~^~432~^8.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11647~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11649~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11649~^~268~^138.^0^^~4~^^^^^^^^^^^ -~11649~^~301~^17.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~305~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~306~^369.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~307~^472.^5^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~318~^985.^5^66.^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11649~^~320~^49.^5^3.^~1~^^^^^^^^^^^~06/01/2002~ -~11649~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11649~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11649~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11649~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11649~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11653~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11653~^~268~^259.^0^^~4~^^^^^^^^^^^ -~11653~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~304~^53.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~305~^94.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~306~^307.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~307~^153.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~318~^2.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11653~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~11653~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11653~^~417~^118.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11653~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11653~^~432~^118.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11653~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11653~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11654~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11654~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11654~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~307~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~318~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11654~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11654~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11654~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11654~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11654~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11654~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11655~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11655~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~306~^292.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~307~^66.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~11655~^~318~^19124.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11655~^~320~^956.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~321~^9303.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~322~^4342.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11655~^~334~^0.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~337~^2.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~338~^333.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~417~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11655~^~432~^4.^3^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11655~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11656~^~208~^131.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~268~^548.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~301~^39.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~304~^15.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~305~^90.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~306~^176.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~307~^282.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~318~^296.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~319~^51.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~320~^57.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~321~^36.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~322~^10.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~324~^22.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~334~^70.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~338~^436.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~417~^29.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~432~^29.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11656~^~601~^72.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11657~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~301~^24.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~305~^46.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~306~^296.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~307~^302.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~319~^7.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~324~^8.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~601~^2.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~636~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11658~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11658~^~301~^165.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~305~^139.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~306~^231.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~307~^566.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~318~^2891.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11658~^~319~^120.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~320~^244.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11658~^~321~^1493.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~322~^3.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~324~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~11658~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~338~^3249.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~417~^73.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~431~^6.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~432~^67.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11658~^~601~^118.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11659~^~208~^164.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11659~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11659~^~268~^686.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~301~^26.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~304~^13.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~305~^25.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~306~^178.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~307~^119.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~318~^6524.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11659~^~319~^28.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~320~^349.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11659~^~321~^3858.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~324~^2.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~417~^6.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~432~^6.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11659~^~601~^9.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~636~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~638~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~639~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~641~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11660~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11660~^~268~^331.^0^^~4~^^^^^^^^^^^ -~11660~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~306~^247.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~307~^455.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~318~^666.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11660~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11660~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11660~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11660~^~432~^11.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11660~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11660~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11660~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11663~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11663~^~301~^625.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~304~^770.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~306~^1125.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~307~^102.^3^71.^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11663~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11663~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11663~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11663~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11663~^~417~^580.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11663~^~432~^580.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11663~^~435~^580.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11663~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11666~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11666~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~11666~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~11666~^~268~^109.^0^^~4~^^^^^^^^^^^ -~11666~^~301~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~306~^127.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~307~^98.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11666~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11666~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11666~^~321~^33.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~322~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11666~^~334~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~337~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~338~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11666~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11666~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11666~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11667~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11667~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~268~^1213.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11667~^~301~^120.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~304~^195.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~306~^1363.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~307~^1048.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~318~^570.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11667~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11667~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11667~^~321~^342.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11667~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11667~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11667~^~417~^94.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11667~^~432~^94.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11667~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11667~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11669~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11669~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11669~^~301~^150.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~304~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~305~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~306~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~307~^872.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~318~^360.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11669~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11669~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11669~^~321~^216.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11669~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11669~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11669~^~417~^196.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11669~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11669~^~432~^196.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11669~^~435~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11669~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11670~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11670~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11670~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11670~^~268~^167.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11670~^~301~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~305~^46.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~306~^340.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~307~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~318~^1179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11670~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11670~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11670~^~321~^671.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~322~^23.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11670~^~334~^50.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~337~^0.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~338~^725.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~417~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11670~^~432~^23.^3^2.^~1~^^^^^^^^^^^~03/01/2007~ -~11670~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11670~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11671~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11671~^~268~^339.^0^^~4~^^^^^^^^^^^ -~11671~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~305~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~307~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~318~^481.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11671~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11671~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11671~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11671~^~601~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11672~^~208~^268.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~268~^1123.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~301~^32.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~305~^128.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~306~^622.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~307~^764.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11672~^~319~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11672~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~324~^11.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~338~^87.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~417~^41.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~431~^6.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~432~^35.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11672~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~636~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11674~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11674~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11674~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11674~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11674~^~301~^15.^46^0.^~6~^~JA~^^^4^6.^20.^3^14.^15.^~2~^~06/01/2002~ -~11674~^~304~^28.^47^0.^~6~^~JA~^^^4^19.^31.^3^27.^29.^~2~^~06/01/2002~ -~11674~^~305~^70.^46^0.^~6~^~JA~^^^4^38.^80.^3^68.^71.^~2~^~06/01/2002~ -~11674~^~306~^535.^47^3.^~6~^~JA~^^^4^391.^640.^3^524.^545.^~2~^~06/01/2002~ -~11674~^~307~^10.^47^0.^~6~^~JA~^^^4^0.^14.^3^10.^10.^~2~^~06/01/2002~ -~11674~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11674~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11674~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11674~^~321~^6.^21^^~11~^~JO~^^^0^6.^6.^^^^~2~^~05/01/2002~ -~11674~^~322~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11674~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11674~^~334~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11674~^~337~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11674~^~338~^30.^12^^~11~^~JO~^^^0^30.^31.^^^^~2~^~08/01/2010~ -~11674~^~417~^28.^21^^~1~^~A~^^^0^26.^38.^^^^~2~^~06/01/2002~ -~11674~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11674~^~432~^28.^21^^~1~^~A~^^^0^26.^38.^^^^^~08/01/2010~ -~11674~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11674~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11675~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~11675~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~11675~^~301~^11.^10^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~304~^27.^10^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~305~^105.^10^44.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~306~^447.^10^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~307~^8.^10^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~11675~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11675~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~11675~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11675~^~417~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11675~^~432~^12.^10^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11675~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~11675~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11676~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11676~^~268~^180.^0^^~4~^^^^^^^^^^^ -~11676~^~301~^51.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~304~^44.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~305~^113.^3^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~306~^86.^3^16.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~307~^6.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~318~^391.^3^73.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11676~^~320~^20.^3^3.^~1~^^^^^^^^^^^~06/01/2002~ -~11676~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11676~^~417~^95.^3^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11676~^~432~^95.^3^11.^~1~^^^^^^^^^^^~12/01/1984~ -~11676~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11676~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11677~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11677~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11677~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11677~^~268~^301.^0^^~4~^^^^^^^^^^^~08/01/2011~ -~11677~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~306~^334.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11677~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11677~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11677~^~321~^3.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11677~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~338~^8.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11677~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11677~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11677~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11677~^~636~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11683~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11683~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11683~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11683~^~268~^1427.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~11683~^~301~^212.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~304~^118.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~305~^346.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~306~^2540.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~307~^275.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~318~^68466.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11683~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11683~^~320~^3423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11683~^~321~^33954.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~322~^14251.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11683~^~334~^0.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~ -~11683~^~337~^3.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~338~^1051.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~417~^55.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11683~^~432~^55.^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11683~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11683~^~636~^94.^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11693~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~ -~11693~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~11693~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~11693~^~268~^134.^0^^~4~^^^^^^^^^^^~04/01/2013~ -~11693~^~301~^34.^31^3.^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~304~^20.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~305~^32.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~306~^293.^12^21.^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~307~^186.^6^24.^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~11693~^~318~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~11693~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11693~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~11693~^~321~^129.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11693~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~337~^5106.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~338~^158.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~417~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11693~^~432~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11693~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~11695~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11695~^~268~^67.^0^^~4~^^^^^^^^^^^ -~11695~^~301~^5.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~304~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~305~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~306~^212.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~307~^42.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~318~^1496.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11695~^~320~^75.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11695~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11695~^~417~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11695~^~432~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11695~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11695~^~636~^4.^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11696~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~11696~^~268~^63.^0^^~4~^^^^^^^^^^^ -~11696~^~301~^11.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~304~^12.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~305~^36.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~306~^258.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~307~^23.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11696~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11696~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11696~^~417~^30.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11696~^~432~^30.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11696~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11696~^~636~^6.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11697~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11697~^~301~^6.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~305~^98.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~306~^454.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~307~^26.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11697~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11697~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11697~^~321~^11.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11697~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11697~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11697~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11697~^~417~^338.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11697~^~432~^338.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11697~^~435~^338.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11697~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11698~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~11698~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11698~^~301~^117.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~304~^32.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~305~^54.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~306~^567.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~307~^118.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~318~^1870.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11698~^~320~^94.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11698~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11698~^~417~^177.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11698~^~432~^177.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11698~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11700~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11700~^~268~^88.^0^^~4~^^^^^^^^^^^ -~11700~^~301~^209.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~306~^641.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~318~^2770.^5^1140.^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11700~^~320~^139.^5^57.^~1~^^^^^^^^^^^~06/01/2002~ -~11700~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11700~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11700~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11700~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11700~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11701~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11701~^~268~^326.^0^^~4~^^^^^^^^^^^ -~11701~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~304~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~305~^197.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~306~^881.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11701~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11701~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11701~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11701~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11701~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11701~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11702~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11702~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11702~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11702~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11702~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~305~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~306~^286.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~307~^296.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~11702~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11702~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11702~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11702~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11702~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11702~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11702~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~11702~^~338~^464.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11702~^~417~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11702~^~432~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11702~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11703~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11703~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11703~^~268~^188.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11703~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~305~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~306~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11703~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11703~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~321~^7.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~322~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11703~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11703~^~334~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11703~^~337~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~ -~11703~^~338~^394.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~417~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11703~^~432~^119.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11705~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11705~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11705~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~301~^23.^4^0.^~1~^~A~^^^1^21.^25.^3^20.^25.^~2, 3~^~12/01/2002~ -~11705~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~ -~11705~^~305~^54.^4^2.^~1~^~A~^^^1^49.^62.^3^45.^62.^~2, 3~^~12/01/2002~ -~11705~^~306~^224.^4^7.^~1~^~A~^^^1^203.^237.^3^199.^247.^~2, 3~^~12/01/2002~ -~11705~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11705~^~318~^1006.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11705~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11705~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11705~^~321~^604.^4^60.^~1~^~A~^^^1^500.^771.^3^410.^796.^~2, 3~^~12/01/2002~ -~11705~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11705~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11705~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11705~^~337~^30.^4^2.^~1~^~A~^^^1^26.^36.^3^22.^36.^~2, 3~^~12/01/2002~ -~11705~^~338~^771.^4^78.^~1~^~A~^^^1^603.^977.^3^521.^1020.^~2, 3~^~03/01/2006~ -~11705~^~417~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^~2, 3~^~12/01/2002~ -~11705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11705~^~432~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^^~03/01/2006~ -~11705~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11707~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11707~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11707~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~301~^15.^166^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~304~^9.^143^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~305~^38.^153^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~306~^172.^112^3.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~307~^26.^6^6.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~318~^776.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11707~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~321~^465.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~322~^0.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11707~^~334~^0.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~337~^23.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~338~^595.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~417~^85.^3^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11707~^~432~^85.^3^10.^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11709~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11709~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~301~^18.^38^0.^~6~^~JA~^^^7^9.^26.^37^16.^19.^~4~^~12/01/2002~ -~11709~^~304~^10.^38^0.^~6~^~JA~^^^7^3.^16.^37^9.^11.^~4~^~12/01/2002~ -~11709~^~305~^49.^38^1.^~6~^~JA~^^^7^24.^73.^37^45.^52.^~4~^~12/01/2002~ -~11709~^~306~^172.^38^7.^~6~^~JA~^^^7^69.^292.^37^156.^186.^~4~^~12/01/2002~ -~11709~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11709~^~318~^806.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11709~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~321~^483.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11709~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11709~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11709~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11709~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11709~^~338~^618.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11709~^~417~^135.^6^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11709~^~432~^135.^6^25.^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11710~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11710~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~304~^94.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~305~^77.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~306~^602.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11710~^~318~^2416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11710~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~321~^1450.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~322~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11710~^~334~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~337~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~338~^2638.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~417~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11710~^~432~^88.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11710~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11711~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11711~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11711~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11711~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11711~^~301~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~306~^319.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11711~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11711~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11711~^~321~^68.^0^^~4~^~O~^~11478~^^^^^^^^^~05/01/2007~ -~11711~^~322~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11711~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11711~^~334~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11711~^~337~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11711~^~338~^1323.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11711~^~417~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11711~^~432~^51.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11711~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11711~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11712~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11712~^~268~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11712~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~306~^533.^7^45.^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11712~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11712~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11712~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11712~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11712~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11712~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11712~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11713~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11713~^~268~^138.^0^^~4~^^^^^^^^^^^ -~11713~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~307~^243.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~318~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11713~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11713~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11713~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11713~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11713~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11713~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11714~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11714~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~11714~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11714~^~268~^515.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11714~^~301~^32.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~304~^74.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~305~^130.^12^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~306~^570.^12^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11714~^~318~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11714~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11714~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11714~^~321~^222.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11714~^~322~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11714~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11714~^~334~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11714~^~337~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11714~^~338~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~ -~11714~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11714~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11714~^~432~^26.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11714~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11714~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11715~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11715~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11715~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11715~^~268~^297.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11715~^~301~^28.^115^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~304~^34.^82^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~305~^71.^120^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~306~^285.^106^7.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~307~^4.^4^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11715~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11715~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11715~^~321~^90.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11715~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11715~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11715~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11715~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11715~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11715~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11715~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11715~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11715~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11715~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11716~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11716~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11716~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11716~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11716~^~301~^28.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~304~^56.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~305~^112.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~306~^411.^6^24.^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11716~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11716~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11716~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11716~^~321~^100.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11716~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11716~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11716~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11716~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11716~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11716~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11717~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~301~^30.^47^0.^~1~^^^^5^20.^39.^35^28.^31.^~2, 3~^~12/01/2002~ -~11717~^~304~^42.^48^1.^~1~^^^^5^26.^57.^31^40.^44.^~2, 3~^~12/01/2002~ -~11717~^~305~^97.^47^2.^~1~^^^^5^69.^128.^27^92.^100.^~2, 3~^~12/01/2002~ -~11717~^~306~^304.^48^11.^~1~^^^^5^74.^440.^39^279.^327.^~2, 3~^~12/01/2002~ -~11717~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11717~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11717~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~321~^114.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11717~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11717~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11717~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11717~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11717~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11718~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11718~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11718~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~306~^101.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11718~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11718~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~321~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~322~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11718~^~334~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~337~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~338~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11718~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11718~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11718~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11719~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11719~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11719~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~304~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~305~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~318~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11719~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~11719~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11719~^~417~^106.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11719~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11719~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11719~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11720~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11720~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11720~^~301~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~304~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~305~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~306~^646.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~307~^319.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11720~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11720~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11720~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11720~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11720~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11721~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11721~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11721~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~307~^287.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11721~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11721~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11721~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11721~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11721~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11721~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11721~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11722~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11722~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11722~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11722~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11722~^~301~^37.^149^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~304~^25.^147^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~305~^38.^136^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~306~^209.^150^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~307~^6.^150^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~318~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11722~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11722~^~417~^37.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11722~^~432~^37.^6^3.^~1~^^^^^^^^^^^~12/01/1984~ -~11722~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11722~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11723~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11723~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11723~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11723~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11723~^~301~^44.^27^1.^~1~^^^^4^28.^72.^26^40.^48.^~4~^~06/01/2005~ -~11723~^~304~^18.^28^0.^~1~^^^^4^7.^25.^27^16.^20.^~4~^~06/01/2005~ -~11723~^~305~^29.^27^1.^~1~^^^^4^19.^42.^26^26.^31.^~4~^~06/01/2005~ -~11723~^~306~^146.^28^8.^~1~^^^^4^56.^250.^27^127.^163.^~4~^~06/01/2005~ -~11723~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11723~^~318~^691.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11723~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11723~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11723~^~321~^380.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~ -~11723~^~322~^70.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~ -~11723~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11723~^~334~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~ -~11723~^~337~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~ -~11723~^~338~^641.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~ -~11723~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11723~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11723~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11724~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11724~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11724~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~301~^46.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~306~^299.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~319~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11724~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~321~^49.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11724~^~322~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11724~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11724~^~334~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11724~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~02/01/2003~ -~11724~^~338~^712.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11724~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11724~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11725~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~301~^46.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~306~^299.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11725~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~319~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11725~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~321~^49.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11725~^~322~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11725~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11725~^~334~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~ -~11725~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~02/01/2003~ -~11725~^~338~^712.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11725~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11725~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11726~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11726~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11726~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~306~^92.^701^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~307~^14.^26^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~318~^321.^1113^4.^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11726~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11726~^~320~^16.^1113^0.^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11726~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11726~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11726~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~ -~11726~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11726~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11727~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11727~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11727~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11727~^~268~^63.^0^^~4~^^^^^^^^^^^ -~11727~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~306~^98.^1079^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~307~^259.^58^8.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11727~^~318~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11727~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11727~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11727~^~321~^50.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11727~^~322~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11727~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11727~^~334~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11727~^~337~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11727~^~338~^363.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11727~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11727~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~ -~11727~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11727~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11728~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11728~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~268~^63.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11728~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~306~^98.^1079^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~307~^14.^26^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~318~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11728~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11728~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11728~^~321~^50.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~322~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11728~^~334~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~337~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~338~^363.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11728~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~ -~11728~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11728~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11729~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11729~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11729~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11729~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11729~^~301~^38.^4^1.^~1~^~A~^^^1^35.^44.^1^24.^50.^~2, 3~^~04/01/2011~ -~11729~^~304~^13.^4^0.^~1~^~A~^^^1^13.^14.^1^8.^18.^~2, 3~^~08/01/1984~ -~11729~^~305~^20.^4^1.^~1~^~A~^^^1^16.^24.^1^5.^33.^~2, 3~^~08/01/2014~ -~11729~^~306~^96.^4^3.^~1~^~A~^^^1^83.^113.^1^54.^136.^~2, 3~^~08/01/2014~ -~11729~^~307~^2.^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~11729~^~318~^353.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11729~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11729~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11729~^~321~^122.^2^^~1~^~A~^^^1^64.^179.^1^^^^~04/01/2011~ -~11729~^~322~^156.^2^^~1~^~A~^^^1^141.^171.^1^^^^~04/01/2011~ -~11729~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11729~^~334~^24.^2^^~1~^~A~^^^1^11.^38.^1^^^~1~^~04/01/2011~ -~11729~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11729~^~338~^452.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~04/01/2011~ -~11729~^~417~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11729~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11729~^~432~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11729~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11729~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11730~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11730~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11730~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11730~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11730~^~301~^42.^99^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~304~^22.^28^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~305~^32.^39^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~306~^186.^27^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~307~^3.^34^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11730~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11730~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11730~^~321~^71.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~322~^17.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11730~^~334~^0.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~337~^0.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~338~^666.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~417~^15.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11730~^~432~^15.^3^2.^~1~^^^^^^^^^^^~12/01/1984~ -~11730~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11730~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11731~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11731~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11731~^~301~^42.^40^2.^~1~^^^^1^18.^72.^20^36.^47.^~4~^~03/01/2006~ -~11731~^~304~^19.^40^0.^~1~^^^^1^12.^25.^20^17.^20.^~4~^~03/01/2006~ -~11731~^~305~^29.^40^0.^~1~^^^^1^22.^40.^20^27.^31.^~4~^~03/01/2006~ -~11731~^~306~^159.^40^10.^~1~^^^^1^21.^225.^20^137.^181.^~4~^~03/01/2006~ -~11731~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11731~^~318~^466.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11731~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11731~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11731~^~321~^249.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11731~^~322~^61.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11731~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11731~^~334~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~ -~11731~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~ -~11731~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~ -~11731~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11731~^~432~^23.^7^3.^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11731~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11732~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11732~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11732~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11732~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11732~^~301~^49.^7^2.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~304~^24.^7^1.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~305~^31.^7^2.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~306~^126.^7^9.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~307~^9.^11^2.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11732~^~319~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~ -~11732~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11732~^~321~^60.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~ -~11732~^~322~^15.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~ -~11732~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11732~^~334~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~ -~11732~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~ -~11732~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~ -~11732~^~417~^23.^7^3.^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11732~^~432~^23.^7^3.^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11732~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11733~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11733~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11733~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11733~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11733~^~301~^49.^7^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~304~^24.^7^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~305~^31.^7^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~306~^126.^7^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11733~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11733~^~319~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~ -~11733~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11733~^~321~^60.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~ -~11733~^~322~^15.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~ -~11733~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11733~^~334~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~ -~11733~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~ -~11733~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~ -~11733~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11733~^~432~^23.^7^3.^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11733~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11734~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~306~^305.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~307~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11734~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11734~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~321~^21.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11734~^~322~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11734~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11734~^~334~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~12/01/2002~ -~11734~^~337~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~12/01/2002~ -~11734~^~338~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11734~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11734~^~432~^80.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11734~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11735~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11735~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11735~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~301~^13.^200^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~304~^16.^134^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~305~^16.^198^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~306~^142.^138^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~307~^21.^9^7.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11735~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~321~^13.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11735~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~417~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11735~^~432~^29.^3^4.^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11736~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11736~^~268~^113.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11736~^~301~^114.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~305~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~306~^909.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~307~^477.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11736~^~318~^7654.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11736~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11736~^~320~^383.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11736~^~321~^4590.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~322~^4.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11736~^~334~^0.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~02/01/2007~ -~11736~^~337~^0.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~02/01/2007~ -~11736~^~338~^1819.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11736~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11736~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11736~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11736~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11737~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11737~^~268~^105.^0^^~4~^^^^^^^^^^^ -~11737~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~306~^491.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~307~^324.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~318~^4385.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11737~^~320~^219.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11737~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11737~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11737~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11737~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11737~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11738~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11738~^~268~^259.^0^^~4~^^^^^^^^^^^ -~11738~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~305~^73.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~307~^277.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~318~^270.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11738~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11738~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11738~^~417~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11738~^~432~^58.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11738~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11738~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11739~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11739~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11739~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11739~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11739~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~318~^16000.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11739~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11739~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11739~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~ -~11739~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11739~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11740~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11740~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11740~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11740~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11740~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~318~^3000.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11740~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11740~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11740~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~ -~11740~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11740~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11741~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11741~^~268~^117.^0^^~4~^^^^^^^^^^^ -~11741~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~318~^400.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11741~^~320~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11741~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11741~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11741~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~ -~11741~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11741~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11742~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~301~^40.^4^3.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~304~^21.^4^1.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~305~^67.^4^1.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~306~^293.^4^11.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~307~^262.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11742~^~318~^1548.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11742~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11742~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11742~^~321~^929.^17^42.^~1~^~A~^^^3^407.^1681.^2^734.^1123.^~2, 3~^~11/01/2006~ -~11742~^~322~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~11742~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11742~^~334~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~11742~^~337~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~11742~^~338~^1080.^12^98.^~1~^~A~^^^3^447.^1937.^1^-129.^2289.^~2, 3~^~11/01/2006~ -~11742~^~417~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11742~^~432~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11743~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11743~^~268~^117.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11743~^~301~^33.^20^1.^~1~^^^^1^16.^43.^19^30.^36.^~4~^~10/01/2002~ -~11743~^~304~^13.^20^0.^~1~^^^^1^9.^20.^19^11.^14.^~4~^~10/01/2002~ -~11743~^~305~^49.^20^1.^~1~^^^^1^36.^71.^19^45.^53.^~4~^~10/01/2002~ -~11743~^~306~^142.^20^11.^~1~^^^^1^73.^311.^19^118.^164.^~4~^~10/01/2002~ -~11743~^~307~^260.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11743~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11743~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11743~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11743~^~321~^597.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~322~^19.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11743~^~334~^1.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~337~^0.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~338~^1095.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~417~^56.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11743~^~432~^56.^3^4.^~1~^^^^^^^^^^^~05/01/2007~ -~11743~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11743~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11744~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11744~^~268~^117.^0^^~4~^^^^^^^^^^^ -~11744~^~301~^51.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~304~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~306~^180.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~307~^260.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~318~^1118.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11744~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11744~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11744~^~321~^663.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~322~^15.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11744~^~334~^1.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~337~^0.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~338~^1498.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~417~^30.^16^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11744~^~432~^30.^16^6.^~1~^^^^^^^^^^^~10/01/2002~ -~11744~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11744~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11745~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11745~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11745~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11745~^~318~^775.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11745~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11745~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11745~^~321~^465.^5^15.^~1~^~A~^^^1^450.^480.^1^274.^655.^~4~^~06/01/2005~ -~11745~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11745~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11745~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11745~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11745~^~338~^1290.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~11745~^~417~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11745~^~432~^60.^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11746~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11746~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11746~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11746~^~268~^176.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~11746~^~301~^26.^18^0.^~1~^~A~^^^7^20.^32.^17^24.^27.^~4~^~06/01/2005~ -~11746~^~304~^18.^18^0.^~1~^~A~^^^7^11.^25.^17^16.^19.^~4~^~06/01/2005~ -~11746~^~305~^56.^18^2.^~1~^~A~^^^7^37.^84.^17^51.^61.^~4~^~06/01/2005~ -~11746~^~306~^290.^18^13.^~1~^~A~^^^7^176.^383.^17^261.^318.^~4~^~06/01/2005~ -~11746~^~307~^259.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~11746~^~318~^926.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11746~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11746~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11746~^~321~^555.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~ -~11746~^~322~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~ -~11746~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11746~^~334~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~ -~11746~^~337~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~ -~11746~^~338~^1541.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~ -~11746~^~417~^101.^8^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11746~^~432~^101.^8^19.^~1~^^^^^^^^^^^~04/01/2009~ -~11746~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11746~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11747~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11747~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11747~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~301~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~305~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~306~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11747~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~321~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11747~^~322~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11747~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11747~^~334~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11747~^~337~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11747~^~338~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11747~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11747~^~432~^20.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11747~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11748~^~208~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11748~^~268~^33.^0^^~4~^^^^^^^^^^^ -~11748~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~306~^354.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11748~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11748~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11748~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11748~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11748~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11748~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11749~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11749~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11749~^~301~^47.^36^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~304~^15.^37^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~305~^23.^34^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~306~^246.^30^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~307~^18.^46^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~318~^126.^7^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11749~^~320~^6.^7^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11749~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11749~^~417~^57.^10^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11749~^~432~^57.^10^12.^~1~^^^^^^^^^^^~12/01/1984~ -~11749~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11749~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11749~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11750~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11750~^~301~^47.^36^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~304~^15.^37^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~305~^23.^34^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~306~^246.^30^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~307~^18.^46^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~318~^126.^7^23.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11750~^~320~^6.^7^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11750~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11750~^~417~^57.^10^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11750~^~432~^57.^10^12.^~1~^^^^^^^^^^^~12/01/1984~ -~11750~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11750~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11750~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11751~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~301~^48.^4^5.^~1~^~A~^^^1^38.^65.^3^30.^66.^~2, 3~^~03/01/2006~ -~11751~^~304~^15.^4^0.^~1~^~A~^^^1^13.^17.^3^12.^17.^~2, 3~^~03/01/2006~ -~11751~^~305~^33.^4^0.^~1~^~A~^^^1^32.^35.^3^30.^35.^~2, 3~^~03/01/2006~ -~11751~^~306~^196.^4^8.^~1~^~A~^^^1^186.^221.^3^169.^222.^~2, 3~^~03/01/2006~ -~11751~^~307~^255.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~11751~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11751~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11751~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11751~^~321~^48.^4^19.^~1~^~A~^^^1^18.^104.^3^-15.^110.^~2, 3~^~03/01/2006~ -~11751~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11751~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~338~^27.^0^^~4~^~BFSY~^~11109~^^^^^^^^^~03/01/2006~ -~11751~^~417~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^~2, 3~^~03/01/2006~ -~11751~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11751~^~432~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^^~03/01/2006~ -~11751~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11751~^~636~^10.^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11752~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11752~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11752~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~301~^42.^3^2.^~1~^~A~^^^1^36.^46.^2^29.^54.^~2, 3~^~06/01/2005~ -~11752~^~304~^17.^3^1.^~1~^~A~^^^1^16.^20.^2^11.^23.^~2, 3~^~06/01/2005~ -~11752~^~305~^33.^3^2.^~1~^~A~^^^1^30.^39.^2^20.^45.^~2, 3~^~06/01/2005~ -~11752~^~306~^262.^3^28.^~1~^~A~^^^1^212.^309.^2^141.^382.^~2, 3~^~06/01/2005~ -~11752~^~307~^244.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~11752~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~11752~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11752~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~11752~^~321~^20.^4^12.^~1~^~A~^^^1^3.^54.^3^-18.^57.^~1, 2, 3~^~06/01/2005~ -~11752~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~ -~11752~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11752~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~ -~11752~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~ -~11752~^~338~^20.^4^8.^~1~^~A~^^^1^0.^40.^3^-6.^46.^~1, 2, 3~^~06/01/2006~ -~11752~^~417~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~06/01/2005~ -~11752~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11752~^~432~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^^~06/01/2006~ -~11752~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11753~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11753~^~268~^100.^0^^~4~^^^^^^^^^^^ -~11753~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~306~^184.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~307~^260.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~318~^889.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11753~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11753~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11753~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11753~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11753~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11753~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11754~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11754~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11754~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~306~^371.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~307~^270.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~318~^4249.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11754~^~320~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~321~^2549.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11754~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~338~^38.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11754~^~432~^41.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11754~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11755~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11755~^~268~^59.^0^^~4~^^^^^^^^^^^ -~11755~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11755~^~318~^967.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11755~^~320~^48.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11755~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11755~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11755~^~432~^53.^0^^~1~^^^^^^^^^^^~08/01/2001~ -~11755~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2001~ -~11755~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11756~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11756~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11756~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~306~^392.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~307~^412.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11756~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11756~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11756~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11756~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11756~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11756~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11756~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11757~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11757~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11757~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~301~^30.^4^1.^~1~^~A~^^^1^27.^33.^3^26.^33.^~2, 3~^~03/01/2006~ -~11757~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~03/01/2006~ -~11757~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~03/01/2006~ -~11757~^~306~^235.^4^18.^~1~^~A~^^^1^201.^283.^3^177.^292.^~2, 3~^~03/01/2006~ -~11757~^~307~^302.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11757~^~318~^17033.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11757~^~320~^852.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~321~^8332.^21^95.^~1~^~A~^^^2^4330.^10775.^3^8029.^8634.^~2, 3~^~03/01/2006~ -~11757~^~322~^3776.^21^47.^~1~^~A~^^^2^2200.^5200.^3^3623.^3928.^~2, 3~^~03/01/2006~ -~11757~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11757~^~334~^0.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~ -~11757~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~338~^194.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~ -~11757~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11757~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~08/01/2007~ -~11757~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11758~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11758~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11758~^~268~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~301~^31.^152^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~304~^9.^109^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~305~^20.^152^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~306~^158.^75^5.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~307~^34.^10^5.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11758~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11758~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11758~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~02/01/2007~ -~11758~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~02/01/2007~ -~11758~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11758~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11758~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11758~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11758~^~417~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11758~^~432~^8.^9^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11758~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11759~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11759~^~268~^105.^0^^~4~^^^^^^^^^^^ -~11759~^~301~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~305~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~306~^179.^6^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~307~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~11759~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11759~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~11759~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~10/01/2002~ -~11759~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~10/01/2002~ -~11759~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11759~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11759~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11759~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~ -~11759~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11759~^~432~^9.^6^0.^~1~^^^^^^^^^^^~10/01/2002~ -~11759~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11759~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11760~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11760~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11760~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~301~^35.^3^0.^~1~^~A~^^^1^35.^37.^2^32.^38.^~2, 3~^~01/01/2003~ -~11760~^~304~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~01/01/2003~ -~11760~^~305~^31.^3^0.^~1~^~A~^^^1^30.^32.^2^28.^32.^~2, 3~^~01/01/2003~ -~11760~^~306~^192.^3^5.^~1~^~A~^^^1^181.^199.^2^168.^216.^~2, 3~^~01/01/2003~ -~11760~^~307~^295.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11760~^~318~^16928.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11760~^~320~^846.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~321~^8199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~322~^3716.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11760~^~334~^199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~338~^676.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~417~^11.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11760~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11760~^~432~^11.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11761~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~301~^16.^27^0.^~1~^^^^4^12.^21.^15^15.^17.^~2, 3~^~02/01/2007~ -~11761~^~304~^9.^28^0.^~1~^^^^4^7.^15.^16^8.^10.^~2, 3~^~02/01/2007~ -~11761~^~305~^32.^27^1.^~1~^^^^4^23.^42.^22^29.^34.^~2, 3~^~02/01/2007~ -~11761~^~306~^142.^28^6.^~1~^^^^4^90.^224.^15^127.^155.^~2, 3~^~02/01/2007~ -~11761~^~307~^242.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11761~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11761~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11761~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~338~^29.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~417~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11761~^~432~^44.^8^2.^~1~^^^^^^^^^^^~05/01/2007~ -~11761~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11762~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11762~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11762~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11762~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11762~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~321~^6.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~322~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11762~^~334~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~337~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~338~^24.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11762~^~432~^41.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11763~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~11763~^~268~^113.^0^^~4~^^^^^^^^^^^ -~11763~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~306~^173.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~307~^297.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11763~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11763~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11763~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11763~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11763~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11763~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11764~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11764~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11764~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~318~^521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11764~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11764~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11764~^~321~^313.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~322~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11764~^~334~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~337~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~338~^329.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11764~^~432~^22.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11764~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11764~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11764~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11765~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11765~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~306~^549.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~307~^415.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~318~^6124.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11765~^~320~^306.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~321~^3652.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~322~^45.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11765~^~334~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~337~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~338~^11015.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11765~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11765~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11766~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11766~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11766~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11766~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11766~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~321~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~322~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11766~^~334~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~337~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~338~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11766~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11766~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11766~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11767~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11767~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11767~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11767~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11767~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~305~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~306~^569.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~318~^2572.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11767~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11767~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11767~^~321~^1543.^4^98.^~1~^~A~^^^1^1280.^1750.^3^1230.^1855.^~4~^~12/01/2002~ -~11767~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11767~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11767~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11767~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11767~^~338~^3467.^3^238.^~1~^~A~^^^1^3019.^3834.^2^2440.^4494.^~4~^~12/01/2002~ -~11767~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11767~^~432~^50.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11767~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11767~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11768~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11768~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11768~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11768~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11768~^~301~^141.^29^7.^~6~^~JA~^^^5^50.^229.^19^125.^156.^~2, 3~^~08/01/2012~ -~11768~^~304~^21.^30^0.^~6~^~JA~^^^5^8.^33.^17^19.^23.^~2, 3~^~08/01/2012~ -~11768~^~305~^32.^29^1.^~6~^~JA~^^^5^16.^51.^19^28.^35.^~2, 3~^~08/01/2012~ -~11768~^~306~^117.^30^8.^~6~^~JA~^^^5^29.^226.^23^100.^133.^~2, 3~^~08/01/2012~ -~11768~^~307~^252.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~318~^7600.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11768~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11768~^~320~^380.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11768~^~321~^4513.^11^^~1~^~A~^^^2^1510.^5427.^^^^~2, 3~^~08/01/2012~ -~11768~^~322~^68.^6^56.^~1~^~A~^^^2^0.^180.^2^-175.^310.^~4~^~08/01/2012~ -~11768~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11768~^~334~^26.^6^13.^~1~^~A~^^^2^0.^40.^2^-30.^83.^~4~^~08/01/2012~ -~11768~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 4~^~12/01/2002~ -~11768~^~338~^6197.^5^1647.^~1~^~A~^^^2^3204.^8887.^2^-891.^13285.^~4~^~08/01/2012~ -~11768~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11768~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11768~^~432~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11768~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11768~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11769~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11769~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~11769~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~307~^286.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11769~^~318~^11493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11769~^~320~^575.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~321~^6818.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~322~^127.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11769~^~334~^28.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~337~^0.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~338~^10898.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~417~^76.^6^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11769~^~432~^76.^6^12.^~1~^^^^^^^^^^^~01/01/2007~ -~11769~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11770~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~11770~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~11770~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~301~^3.^30^0.^~6~^~JA~^^^5^1.^6.^11^2.^3.^~2, 3~^~04/01/2009~ -~11770~^~304~^26.^31^1.^~6~^~JA~^^^5^9.^41.^20^23.^29.^~2, 3~^~04/01/2009~ -~11770~^~305~^77.^30^2.^~6~^~JA~^^^5^45.^102.^16^72.^81.^~2, 3~^~04/01/2009~ -~11770~^~306~^218.^31^7.^~6~^~JA~^^^5^125.^302.^18^201.^235.^~2, 3~^~04/01/2009~ -~11770~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11770~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11770~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~321~^66.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~322~^23.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11770~^~334~^161.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11770~^~338~^906.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11770~^~417~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11770~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11770~^~432~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11770~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11771~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11771~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11771~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11771~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11771~^~301~^4.^60^0.^~6~^~JA~^^^10^2.^10.^32^3.^4.^~2, 3~^~04/01/2011~ -~11771~^~304~^15.^39^0.^~6~^~JA~^^^7^9.^20.^28^14.^15.^~2, 3~^~04/01/2011~ -~11771~^~305~^46.^38^0.^~6~^~JA~^^^7^37.^54.^25^45.^47.^~2, 3~^~04/01/2011~ -~11771~^~306~^136.^50^2.^~6~^~JA~^^^9^108.^220.^21^131.^140.^~2, 3~^~04/01/2011~ -~11771~^~307~^12.^33^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11771~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11771~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11771~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11771~^~321~^9.^8^^~1~^~A~^^^1^8.^9.^^^^~2, 3~^~04/01/2011~ -~11771~^~322~^10.^8^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~04/01/2011~ -~11771~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11771~^~334~^14.^8^^~1~^~A~^^^1^10.^18.^^^^~2, 3~^~04/01/2011~ -~11771~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11771~^~338~^650.^6^^~1~^~A~^^^1^520.^780.^^^^~2, 3~^~04/01/2011~ -~11771~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11771~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11771~^~432~^38.^3^6.^~1~^^^^^^^^^^^~09/01/2002~ -~11771~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11771~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11772~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11772~^~268~^301.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11772~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11772~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11772~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11772~^~321~^30.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~322~^23.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11772~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~338~^949.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11772~^~432~^45.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11772~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11773~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11773~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11773~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11773~^~268~^331.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11773~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11773~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11773~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11773~^~321~^33.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~322~^26.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11773~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~338~^1045.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11773~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11773~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11773~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11774~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~268~^329.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~301~^3.^2^^~1~^^^^2^2.^7.^23^^^^~09/01/2002~ -~11774~^~304~^28.^2^^~1~^^^^2^19.^41.^23^^^^~09/01/2002~ -~11774~^~305~^79.^2^^~1~^^^^2^60.^102.^23^^^^~09/01/2002~ -~11774~^~306~^233.^2^^~1~^^^^2^130.^302.^23^^^^~09/01/2002~ -~11774~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11774~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11774~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~321~^50.^4^1.^~6~^~JA~^^^2^45.^52.^3^44.^55.^~4~^~09/01/2002~ -~11774~^~322~^17.^4^2.^~6~^~JA~^^^2^13.^24.^3^9.^25.^~4~^~09/01/2002~ -~11774~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11774~^~334~^122.^4^5.^~6~^~JA~^^^2^108.^135.^3^103.^139.^~4~^~09/01/2002~ -~11774~^~337~^0.^0^^~4~^~BFSN~^~11176~^^^^^^^^^~09/01/2002~ -~11774~^~338~^730.^5^230.^~1~^~A~^^^1^500.^960.^1^-2192.^3652.^~4~^~09/01/2002~ -~11774~^~417~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^~4~^~09/01/2002~ -~11774~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11774~^~432~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^^~09/01/2002~ -~11774~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11775~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11775~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11775~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11775~^~318~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11775~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11775~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11775~^~321~^58.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~322~^20.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11775~^~334~^142.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~338~^852.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11775~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~ -~11775~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11775~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11777~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11777~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11777~^~268~^395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~301~^128.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~304~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~306~^418.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~307~^240.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~318~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11777~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~321~^475.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11777~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11777~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11777~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11777~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~11777~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11777~^~417~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11777~^~432~^127.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11777~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11778~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11778~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11778~^~268~^547.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~304~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~306~^375.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11778~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11778~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~321~^45.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11778~^~322~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11778~^~334~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~337~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~338~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~417~^141.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11778~^~432~^141.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11779~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11779~^~268~^142.^0^^~4~^^^^^^^^^^^ -~11779~^~301~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~318~^1400.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11779~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11779~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11779~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11779~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11779~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11779~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11780~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11780~^~268~^92.^0^^~4~^^^^^^^^^^^ -~11780~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~306~^351.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~318~^576.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11780~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11780~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11780~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11780~^~432~^60.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11780~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11780~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11781~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11781~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11781~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11781~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11781~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~305~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~318~^4649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11781~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11781~^~320~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11781~^~321~^2790.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~322~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11781~^~334~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~337~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~338~^8402.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11781~^~432~^37.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11781~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11781~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11782~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11782~^~268~^138.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11782~^~301~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~306~^232.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~307~^280.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~318~^14544.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11782~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11782~^~320~^727.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11782~^~321~^8727.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~322~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11782~^~334~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~337~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~338~^3398.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11782~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11782~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11782~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11783~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~301~^6.^18^0.^~1~^~A~^^^7^5.^9.^6^5.^6.^~2~^~01/01/2003~ -~11783~^~304~^11.^21^1.^~6~^~JA~^^^8^8.^20.^7^8.^12.^~2~^~01/01/2003~ -~11783~^~305~^15.^18^0.^~1~^~A~^^^7^10.^21.^6^13.^16.^~2~^~01/01/2003~ -~11783~^~306~^123.^18^8.^~1~^~A~^^^7^93.^175.^6^102.^144.^~2~^~01/01/2003~ -~11783~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11783~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11783~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~321~^22.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~322~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11783~^~334~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~337~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~338~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11783~^~432~^14.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11783~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11784~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11784~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11784~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11784~^~268~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11784~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~306~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11784~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11784~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11784~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11784~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11784~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11784~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11785~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11785~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11785~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11785~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11785~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~305~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~306~^453.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~318~^260.^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11785~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11785~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11785~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11785~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11785~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11785~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11786~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11786~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~268~^251.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11786~^~301~^151.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~304~^34.^0^^~4~^~BFSY~^~11222~^^^^^^^^^~08/01/2015~ -~11786~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~318~^7013.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11786~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11786~^~320~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11786~^~321~^4208.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11786~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11786~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11786~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11786~^~432~^23.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11786~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11786~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11787~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11787~^~268~^151.^0^^~4~^^^^^^^^^^^ -~11787~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~306~^457.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~307~^279.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11787~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11787~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11787~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11787~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11787~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11787~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11788~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11788~^~268~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11788~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~306~^262.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~318~^142.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11788~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11788~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11788~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11788~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11788~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11788~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11788~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11789~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11789~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11789~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~301~^211.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~306~^550.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~307~^247.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~318~^5185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11789~^~320~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~321~^3111.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11789~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11789~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11789~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11789~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11789~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11789~^~417~^104.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11789~^~432~^104.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11789~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11790~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11790~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11790~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~ -~11790~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~ -~11790~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~ -~11790~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~ -~11790~^~307~^252.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~ -~11790~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11790~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11790~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11790~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~ -~11790~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~ -~11790~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11790~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~ -~11790~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~11790~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~ -~11790~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~ -~11790~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11790~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~ -~11790~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11791~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11791~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11791~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~ -~11791~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~ -~11791~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~ -~11791~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~ -~11791~^~307~^252.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~ -~11791~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11791~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11791~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~11791~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~ -~11791~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~ -~11791~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11791~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~ -~11791~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~ -~11791~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~ -~11791~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~ -~11791~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11791~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~ -~11791~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11793~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11793~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11793~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11793~^~268~^121.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11793~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11793~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11793~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11793~^~321~^21.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~322~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11793~^~334~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~337~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~338~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11793~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11793~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11793~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11794~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11794~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11794~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11794~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11794~^~301~^258.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~306~^288.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~318~^7816.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11794~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11794~^~320~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11794~^~321~^4688.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~322~^4.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11794~^~334~^0.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~337~^0.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~338~^1857.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11794~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11794~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11794~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11795~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11795~^~268~^130.^0^^~4~^^^^^^^^^^^~11/01/2007~ -~11795~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~306~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~318~^812.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11795~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11795~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11795~^~321~^487.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~322~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11795~^~334~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~337~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~338~^925.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11795~^~432~^24.^0^^~1~^^^^^^^^^^^~11/01/2007~ -~11795~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~11795~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11796~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11796~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11796~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~305~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~306~^363.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11796~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11796~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11796~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11796~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11796~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11796~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11796~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11797~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11797~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11797~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11797~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11797~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~305~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~306~^356.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11797~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11797~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11797~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11797~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11797~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11797~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11797~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~ -~11797~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11797~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11797~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11798~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11798~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~11798~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~11798~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11798~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11798~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11798~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11798~^~324~^28.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11798~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11798~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11798~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11798~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11798~^~432~^21.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~11798~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11798~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11798~^~639~^4.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11798~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11799~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11799~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11799~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~301~^118.^2^^~6~^~JA~^^^2^74.^161.^1^^^^~08/01/2012~ -~11799~^~304~^13.^2^^~6~^~JA~^^^2^11.^15.^1^^^^~08/01/2012~ -~11799~^~305~^42.^2^^~6~^~JA~^^^2^41.^43.^1^^^^~08/01/2012~ -~11799~^~306~^162.^1^^~6~^~JA~^^^2^122.^202.^1^^^^~08/01/2012~ -~11799~^~307~^252.^0^^~4~^~NR~^^^^^^^^^^~08/01/1984~ -~11799~^~318~^10537.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11799~^~320~^527.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~321~^6300.^5^1100.^~1~^~A~^^^1^5200.^7400.^1^-7676.^20276.^~4~^~08/01/2012~ -~11799~^~322~^9.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11799~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11799~^~334~^35.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11799~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11799~^~338~^9900.^5^500.^~1~^~A~^^^1^9400.^10400.^1^3546.^16253.^~4~^~08/01/2012~ -~11799~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11799~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11799~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11799~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11800~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~307~^261.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11800~^~318~^7076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11800~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~321~^4246.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~322~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11800~^~334~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~338~^6672.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11800~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11800~^~432~^70.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11800~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11801~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11801~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11801~^~301~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~304~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~306~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~318~^8200.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11801~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11801~^~320~^410.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11801~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11801~^~417~^73.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11801~^~432~^73.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11801~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11801~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11802~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11802~^~268~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11802~^~301~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~304~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~307~^343.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~318~^3622.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11802~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11802~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11802~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11802~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11802~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11802~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11803~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11803~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11803~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11803~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11803~^~301~^77.^18^5.^~1~^~A~^^^7^44.^112.^6^63.^90.^~2~^~01/01/2003~ -~11803~^~304~^36.^18^1.^~1~^~A~^^^7^18.^49.^6^32.^38.^~2~^~01/01/2003~ -~11803~^~305~^32.^18^1.^~1~^~A~^^^7^17.^45.^6^29.^35.^~2~^~01/01/2003~ -~11803~^~306~^135.^18^7.^~1~^~A~^^^7^61.^196.^6^116.^152.^~2~^~01/01/2003~ -~11803~^~307~^241.^0^^~4~^^^^^^^^^^^~02/01/2004~ -~11803~^~318~^283.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11803~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11803~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11803~^~321~^170.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11803~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11803~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11803~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11803~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11803~^~338~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11803~^~417~^46.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11803~^~432~^46.^3^6.^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11803~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11804~^~208~^29.^0^^~4~^~NC~^~11280~^^^^^^^^^~02/01/2017~ -~11804~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~11804~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~11804~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11804~^~301~^74.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~304~^40.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~305~^37.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~306~^184.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~307~^239.^0^^~4~^~O~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~318~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11804~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11804~^~320~^15.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~321~^183.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~322~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11804~^~334~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~337~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~338~^420.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~417~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11804~^~432~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~435~^100.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11805~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11805~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~307~^239.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11805~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~321~^1.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~ -~11805~^~322~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11805~^~334~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~337~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~338~^4.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~ -~11805~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11805~^~432~^15.^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11805~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11805~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11806~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11806~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~306~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~307~^248.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11806~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11806~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~321~^1.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~322~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11806~^~334~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~337~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~338~^3.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11806~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11806~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11807~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11807~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11807~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~305~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~306~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11807~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11807~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~321~^1.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~ -~11807~^~322~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11807~^~334~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~337~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~338~^3.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~ -~11807~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11807~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11808~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~268~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~305~^69.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~306~^367.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11808~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11808~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~321~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~322~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11808~^~334~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~337~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~338~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~417~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11808~^~432~^58.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11808~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11809~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~301~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~305~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~306~^240.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11809~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11809~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~321~^597.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11809~^~322~^42.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11809~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11809~^~334~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11809~^~337~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11809~^~338~^702.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~ -~11809~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11809~^~432~^29.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~11809~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11810~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~268~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11810~^~318~^1311.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11810~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~321~^760.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~322~^53.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11810~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~338~^893.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11810~^~432~^35.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11810~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11811~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~301~^27.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~304~^39.^13^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~305~^117.^12^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~306~^271.^12^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11811~^~318~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11811~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~321~^470.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~322~^22.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11811~^~334~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~337~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~338~^2593.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~417~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11811~^~432~^63.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11811~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11812~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11812~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11812~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11812~^~268~^222.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11812~^~301~^18.^592^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~304~^17.^259^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~305~^53.^365^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~306~^100.^391^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~307~^9.^35^1.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~318~^1444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11812~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11812~^~320~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11812~^~321~^859.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~322~^14.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11812~^~334~^0.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~337~^0.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~338~^1650.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~417~^29.^3^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11812~^~432~^29.^3^7.^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11812~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11813~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11813~^~268~^289.^0^^~4~^^^^^^^^^^^ -~11813~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~304~^17.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~305~^67.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~306~^173.^6^16.^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~318~^533.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~11813~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11813~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~11813~^~321~^320.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11813~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11813~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11813~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11813~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11813~^~338~^1350.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~11813~^~417~^44.^4^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11813~^~432~^44.^4^6.^~1~^^^^^^^^^^^~09/01/2002~ -~11813~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~11813~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11814~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11814~^~268~^326.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~11814~^~301~^24.^47^0.^~1~^^^^5^10.^36.^46^22.^25.^~4~^~11/01/2006~ -~11814~^~304~^22.^48^0.^~1~^^^^5^13.^29.^47^20.^22.^~4~^~11/01/2006~ -~11814~^~305~^77.^47^1.^~1~^^^^5^59.^99.^46^74.^80.^~4~^~11/01/2006~ -~11814~^~306~^110.^48^3.^~1~^^^^5^49.^165.^47^103.^116.^~4~^~11/01/2006~ -~11814~^~307~^323.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11814~^~318~^2100.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11814~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11814~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11814~^~321~^1250.^7^50.^~1~^~A~^^^1^1200.^1300.^1^614.^1885.^~4~^~11/01/2006~ -~11814~^~322~^20.^0^^~4~^~BFZN~^~11313~^^^^^^^^^~05/01/2005~ -~11814~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11814~^~334~^0.^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~338~^2400.^8^0.^~1~^~A~^^^1^2400.^2400.^1^2400.^2400.^~4~^~11/01/2006~ -~11814~^~417~^59.^18^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11814~^~432~^59.^18^3.^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11814~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11815~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11815~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11815~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~306~^268.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11815~^~318~^107.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11815~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11815~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11815~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11815~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11815~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11815~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11815~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11816~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11816~^~268~^159.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11816~^~301~^23.^164^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~304~^14.^89^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~305~^46.^151^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~306~^100.^88^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~318~^6854.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11816~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11816~^~320~^343.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11816~^~321~^3400.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~322~^1353.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11816~^~334~^72.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~338~^1070.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11816~^~432~^18.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11816~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11816~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11817~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11817~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11817~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11817~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11817~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~306~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~307~^304.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11817~^~318~^9514.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11817~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11817~^~320~^476.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11817~^~321~^4725.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~322~^1868.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11817~^~334~^99.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~337~^0.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~338~^1538.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11817~^~432~^26.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11817~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11818~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11818~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11818~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11818~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11818~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~306~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~307~^273.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~318~^1051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11818~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11818~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11818~^~321~^626.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~322~^10.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11818~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~338~^1202.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11818~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11818~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11818~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11819~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11819~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11819~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~301~^14.^4^1.^~1~^^^^2^10.^18.^3^8.^20.^~4~^~01/01/2004~ -~11819~^~304~^23.^4^1.^~1~^^^^2^19.^27.^3^17.^29.^~4~^~01/01/2004~ -~11819~^~305~^43.^4^2.^~1~^^^^2^37.^46.^3^36.^49.^~4~^~01/01/2004~ -~11819~^~306~^322.^4^34.^~1~^^^^2^260.^420.^3^213.^431.^~4~^~01/01/2004~ -~11819~^~307~^9.^4^1.^~1~^^^^2^5.^12.^3^3.^13.^~4~^~01/01/2004~ -~11819~^~318~^952.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11819~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11819~^~320~^48.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11819~^~321~^534.^2^^~1~^^^^1^401.^667.^1^^^^~01/01/2003~ -~11819~^~322~^36.^1^^~1~^^^^^36.^36.^^^^^~01/01/2003~ -~11819~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11819~^~334~^40.^2^^~1~^^^^1^17.^63.^1^^^^~01/01/2003~ -~11819~^~337~^0.^0^^~4~^~BFSN~^~11329~^^^^^^^^^~01/01/2003~ -~11819~^~338~^709.^0^^~4~^~BFSN~^~11329~^^^^^^^^^~01/01/2003~ -~11819~^~417~^23.^5^0.^~1~^^^^2^23.^24.^2^21.^25.^~4~^~01/01/2004~ -~11819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11819~^~432~^23.^5^0.^~1~^^^^2^23.^24.^2^21.^25.^^~03/01/2007~ -~11819~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11820~^~208~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11820~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11820~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11820~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11820~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~306~^187.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~307~^1173.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~318~^11892.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11820~^~319~^0.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~320~^595.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11820~^~321~^6664.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~322~^446.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11820~^~334~^495.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~337~^0.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~338~^444.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11820~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11820~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11820~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11821~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11821~^~268~^111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11821~^~301~^7.^4^0.^~1~^~A~^^^1^6.^8.^3^5.^8.^~2, 3~^~11/01/2002~ -~11821~^~304~^12.^4^0.^~1~^~A~^^^1^12.^13.^3^11.^13.^~2, 3~^~11/01/2002~ -~11821~^~305~^26.^4^0.^~1~^~A~^^^1^24.^28.^3^23.^27.^~2, 3~^~11/01/2002~ -~11821~^~306~^211.^4^7.^~1~^~A~^^^1^190.^227.^3^186.^235.^~2, 3~^~11/01/2002~ -~11821~^~307~^4.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~06/01/2006~ -~11821~^~318~^3131.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11821~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11821~^~320~^157.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11821~^~321~^1624.^8^158.^~1~^~A~^^^2^407.^2978.^2^962.^2284.^~2, 3~^~03/01/2003~ -~11821~^~322~^20.^6^0.^~1~^~A~^^^2^0.^59.^^^^~1, 2, 3~^~03/01/2003~ -~11821~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11821~^~334~^490.^5^5.^~1~^~A~^^^2^43.^2205.^3^473.^506.^~2, 3~^~03/01/2003~ -~11821~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11821~^~338~^51.^4^8.^~1~^~A~^^^1^29.^67.^3^24.^76.^~2, 3~^~08/01/2007~ -~11821~^~417~^46.^2^^~1~^~A~^^^1^42.^51.^1^^^^~01/01/2006~ -~11821~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11821~^~432~^46.^2^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11821~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11821~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11822~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11822~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~307~^238.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~318~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11822~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~321~^264.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~322~^26.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11822~^~334~^8.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~337~^0.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~338~^431.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11822~^~432~^16.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11822~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11823~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~11823~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~318~^2941.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11823~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11823~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11823~^~321~^1525.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~ -~11823~^~322~^18.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~ -~11823~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11823~^~334~^460.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~ -~11823~^~337~^0.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~08/01/2007~ -~11823~^~338~^47.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~ -~11823~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11823~^~432~^16.^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11823~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11823~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11823~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~307~^238.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~318~^2941.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11824~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~321~^1525.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~322~^18.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11824~^~334~^460.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~337~^0.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~08/01/2007~ -~11824~^~338~^47.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11824~^~432~^16.^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11824~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11824~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11825~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~11825~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~11825~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11825~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11825~^~318~^290.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~11825~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11825~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11825~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11825~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11825~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11825~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11826~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11826~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11826~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11826~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11826~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~304~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11826~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~306~^456.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11826~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11826~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11826~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11826~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11826~^~321~^30.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~322~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11826~^~334~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~337~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~338~^141.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~417~^100.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11826~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11826~^~432~^100.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~11826~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11826~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11827~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11827~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11827~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11827~^~268~^84.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11827~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~306~^184.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~318~^8700.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11827~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11827~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11827~^~321~^5220.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11827~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11827~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11827~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11827~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11827~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11827~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11827~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11827~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11827~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11828~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11828~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11828~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11828~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11828~^~301~^15.^46^0.^~6~^~JA~^^^4^6.^20.^3^14.^15.^~2~^~05/01/2002~ -~11828~^~304~^28.^47^0.^~6~^~JA~^^^4^19.^31.^3^27.^29.^~2~^~05/01/2002~ -~11828~^~305~^70.^46^0.^~6~^~JA~^^^4^38.^80.^3^68.^71.^~2~^~05/01/2002~ -~11828~^~306~^535.^47^3.^~6~^~JA~^^^4^391.^640.^3^524.^545.^~2~^~05/01/2002~ -~11828~^~307~^10.^47^0.^~6~^~JA~^^^4^0.^14.^3^10.^10.^~2~^~08/01/2010~ -~11828~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11828~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11828~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11828~^~321~^6.^21^^~11~^~JO~^^^0^6.^6.^^^^~2~^~05/01/2002~ -~11828~^~322~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11828~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11828~^~334~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11828~^~337~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~ -~11828~^~338~^30.^12^^~11~^~JO~^^^0^30.^31.^^^^~2~^~08/01/2010~ -~11828~^~417~^28.^21^^~1~^~A~^^^0^26.^38.^^^^~2~^~05/01/2002~ -~11828~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11828~^~432~^28.^21^^~1~^~A~^^^0^26.^38.^^^^^~08/01/2010~ -~11828~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11828~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11829~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11829~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11829~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~304~^25.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~305~^50.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~306~^391.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11829~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11829~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11829~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11829~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11829~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11829~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11829~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11829~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11829~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11830~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11830~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11830~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~301~^34.^6^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~304~^43.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~305~^101.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~306~^573.^6^25.^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11830~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11830~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11830~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11830~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11830~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11830~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11830~^~338~^30.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11830~^~417~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11830~^~432~^22.^6^1.^~1~^^^^^^^^^^^~02/01/2007~ -~11830~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11831~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11831~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11831~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11831~^~268~^364.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11831~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~304~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~306~^379.^6^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11831~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11831~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11831~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11831~^~321~^2.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~ -~11831~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~ -~11831~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11831~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~ -~11831~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~ -~11831~^~338~^10.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~ -~11831~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11831~^~432~^10.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11831~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11831~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11832~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11832~^~268~^327.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11832~^~301~^45.^5^14.^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~304~^30.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~305~^54.^5^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~306~^407.^5^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11832~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11832~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11832~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11832~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11832~^~417~^10.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11832~^~432~^10.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11832~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11832~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11833~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11833~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11833~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11833~^~268~^360.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11833~^~301~^8.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~304~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~305~^40.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~306~^328.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11833~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11833~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11833~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11833~^~321~^1.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~ -~11833~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~ -~11833~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11833~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~ -~11833~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~ -~11833~^~338~^9.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~ -~11833~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11833~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~ -~11833~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11833~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11834~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11834~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11834~^~301~^11.^10^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~304~^27.^10^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~305~^105.^10^44.^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~306~^447.^10^19.^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11834~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11834~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11834~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11834~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11834~^~417~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11834~^~432~^12.^10^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11834~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11834~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11835~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11835~^~268~^420.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11835~^~301~^5.^5^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~304~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~305~^109.^5^52.^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~306~^411.^5^22.^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~307~^243.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11835~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11835~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11835~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11835~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11835~^~417~^12.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11835~^~432~^12.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11835~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11835~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11836~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11836~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11836~^~301~^46.^5^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~304~^37.^5^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~305~^82.^5^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~306~^650.^5^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~307~^252.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11836~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11836~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11836~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11836~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11836~^~417~^17.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11836~^~432~^17.^5^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11836~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11836~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11837~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11837~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11837~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~306~^287.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~307~^256.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11837~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11837~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11837~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11837~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11837~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11837~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11837~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11837~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11840~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11840~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11840~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~306~^480.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11840~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11840~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11840~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~11840~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11840~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11840~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~11840~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11840~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11841~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11841~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11841~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11841~^~268~^704.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11841~^~301~^12.^53^0.^~6~^~JA~^^^6^6.^22.^23^11.^13.^~2, 3~^~03/01/2005~ -~11841~^~304~^26.^54^0.^~6~^~JA~^^^6^20.^38.^40^25.^26.^~2, 3~^~03/01/2005~ -~11841~^~305~^97.^53^2.^~6~^~JA~^^^6^66.^153.^43^91.^102.^~2, 3~^~03/01/2005~ -~11841~^~306~^451.^54^10.^~6~^~JA~^^^6^117.^650.^36^430.^471.^~2, 3~^~03/01/2005~ -~11841~^~307~^32.^48^2.^~1~^^^^5^8.^73.^34^26.^37.^~2, 3~^~03/01/2005~ -~11841~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11841~^~417~^28.^6^2.^~1~^~A~^^^1^17.^37.^5^21.^35.^~2, 3~^~03/01/2005~ -~11841~^~432~^28.^6^2.^~1~^~A~^^^1^17.^37.^5^21.^35.^^~03/01/2005~ -~11841~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11842~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11842~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11842~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11842~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11842~^~301~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2005~ -~11842~^~304~^21.^6^0.^~1~^~A~^^^1^20.^23.^5^19.^22.^~2, 3~^~03/01/2005~ -~11842~^~305~^83.^6^5.^~1~^~A~^^^1^70.^103.^5^69.^96.^~2, 3~^~03/01/2005~ -~11842~^~306~^408.^6^8.^~1~^~A~^^^1^385.^433.^5^386.^429.^~2, 3~^~03/01/2005~ -~11842~^~307~^23.^211^0.^~1~^~A~^^^^^^^^^^~10/01/2005~ -~11842~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11842~^~417~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^~2, 3~^~03/01/2005~ -~11842~^~432~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^^~10/01/2005~ -~11842~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11843~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11843~^~268~^552.^0^^~4~^^^^^^^^^^^ -~11843~^~301~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~306~^396.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~307~^433.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~318~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11843~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11843~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11843~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11843~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11843~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~11843~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~11843~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11843~^~601~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~305~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~306~^378.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~307~^335.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11844~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~321~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11844~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11844~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~11844~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~11844~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~601~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11845~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11845~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11845~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11845~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~318~^5755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11845~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11845~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11845~^~321~^2096.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11845~^~322~^2715.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~ -~11845~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11845~^~334~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~ -~11845~^~337~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11845~^~338~^1014.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~ -~11845~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11845~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11845~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11845~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11846~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11846~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11846~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~301~^26.^111^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~304~^23.^62^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~305~^35.^82^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~306~^206.^67^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11846~^~318~^15563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11846~^~320~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~321~^6940.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~ -~11846~^~322~^4795.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~ -~11846~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11846~^~334~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~ -~11846~^~337~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~ -~11846~^~338~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~ -~11846~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11846~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11846~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11847~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~11847~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11847~^~268~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~306~^106.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11847~^~318~^1734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11847~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~321~^1040.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~05/01/2005~ -~11847~^~322~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11847~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11847~^~334~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11847~^~337~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11847~^~338~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11847~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11847~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11847~^~432~^41.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11847~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11848~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11848~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11848~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11848~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11848~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~306~^438.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~318~^1600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11848~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11848~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11848~^~321~^960.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11848~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11848~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11848~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11848~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11848~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11848~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11848~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11848~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11848~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11849~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11849~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11849~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~304~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~306~^488.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~307~^280.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~318~^1852.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11849~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11849~^~320~^93.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11849~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11849~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11849~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11849~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11849~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11850~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11850~^~268~^71.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11850~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11850~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11850~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11850~^~321~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~322~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11850~^~334~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~337~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~338~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~417~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11850~^~432~^17.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11850~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11850~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11851~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11851~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11851~^~301~^18.^1^^~6~^~JA~^^^2^18.^48.^^^^^~08/01/2012~ -~11851~^~304~^10.^1^^~6~^~JA~^^^2^10.^23.^^^^^~08/01/2012~ -~11851~^~305~^41.^1^^~6~^~JA~^^^2^41.^56.^^^^^~08/01/2012~ -~11851~^~306~^216.^1^^~6~^~JA~^^^2^216.^326.^^^^^~08/01/2012~ -~11851~^~307~^254.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~11851~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11851~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11851~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11851~^~321~^1.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11851~^~322~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11851~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11851~^~334~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~ -~11851~^~337~^10.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~ -~11851~^~338~^13.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~ -~11851~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11851~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11851~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11851~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11852~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11852~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11852~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~306~^283.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~307~^252.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11852~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11852~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11852~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11852~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11852~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11852~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11852~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11853~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11853~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11853~^~301~^145.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~304~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~305~^158.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~306~^539.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~318~^156.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11853~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11853~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11853~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11853~^~417~^111.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11853~^~432~^111.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11853~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11853~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11853~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11854~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11854~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11854~^~268~^96.^0^^~4~^^^^^^^^^^^~10/01/2008~ -~11854~^~301~^136.^12^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~304~^87.^12^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~305~^56.^12^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~306~^466.^12^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~307~^306.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11854~^~318~^10481.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11854~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11854~^~320~^524.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~11854~^~321~^6288.^28^1002.^~1~^~A~^^^1^4130.^9480.^5^3711.^8865.^~4~^~12/01/2002~ -~11854~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~ -~11854~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11854~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~ -~11854~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~ -~11854~^~338~^11308.^24^2650.^~1~^~A~^^^1^5300.^20300.^4^3947.^18668.^~4~^~12/01/2002~ -~11854~^~417~^146.^3^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11854~^~432~^146.^3^13.^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11854~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11855~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11855~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~11855~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~11855~^~268~^79.^0^^~4~^^^^^^^^^^^~01/01/2015~ -~11855~^~301~^83.^272^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~304~^56.^193^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~305~^32.^162^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~306~^230.^105^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~318~^8084.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~11855~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11855~^~320~^404.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~11855~^~321~^4850.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~322~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11855~^~334~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~337~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~338~^8722.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~417~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11855~^~432~^58.^3^4.^~1~^^^^^^^^^^^~12/01/1984~ -~11855~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11855~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11856~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11856~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11856~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~301~^153.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~304~^82.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~305~^50.^6^2.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~306~^302.^6^20.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~307~^322.^0^^~4~^^^^^^^^^^^~07/01/2007~ -~11856~^~318~^12061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11856~^~320~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~321~^7237.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11856~^~322~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11856~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11856~^~334~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11856~^~337~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11856~^~338~^15690.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11856~^~417~^121.^6^3.^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11856~^~432~^121.^6^3.^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11856~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11857~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11857~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11857~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11857~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11857~^~301~^27.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~304~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~305~^39.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~306~^192.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11857~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11857~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11857~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11857~^~321~^127.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~322~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11857~^~334~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~337~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~338~^2249.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~417~^20.^3^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11857~^~432~^20.^3^3.^~1~^^^^^^^^^^^~03/01/2007~ -~11857~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11857~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11858~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~301~^22.^30^0.^~6~^~JA~^^^6^14.^40.^8^20.^24.^~2, 3~^~04/01/2009~ -~11858~^~304~^16.^31^0.^~6~^~JA~^^^6^8.^21.^23^14.^16.^~2, 3~^~04/01/2009~ -~11858~^~305~^29.^30^1.^~6~^~JA~^^^6^18.^38.^21^27.^31.^~2, 3~^~04/01/2009~ -~11858~^~306~^177.^31^8.^~6~^~JA~^^^6^92.^294.^21^159.^195.^~2, 3~^~04/01/2009~ -~11858~^~307~^237.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~11858~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11858~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~321~^670.^3^^~1~^~A~^^^1^670.^670.^0^^^~4~^~04/01/2009~ -~11858~^~322~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~ -~11858~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11858~^~334~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~ -~11858~^~337~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~ -~11858~^~338~^315.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~ -~11858~^~417~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~ -~11858~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11858~^~432~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~ -~11858~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11859~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11859~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11859~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11859~^~268~^105.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11859~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~304~^27.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~305~^41.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~306~^253.^6^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11859~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11859~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11859~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11859~^~321~^120.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11859~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~338~^388.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~417~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11859~^~432~^13.^6^1.^~1~^^^^^^^^^^^~03/01/2007~ -~11859~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11859~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11860~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11860~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11860~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~306~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11860~^~318~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11860~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11860~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11860~^~321~^51.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~322~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11860~^~334~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~337~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~338~^250.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11860~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11860~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11860~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11861~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~301~^18.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^20.^~2, 3~^~04/01/2009~ -~11861~^~304~^19.^4^1.^~1~^~A~^^^1^14.^22.^3^13.^24.^~2, 3~^~04/01/2009~ -~11861~^~305~^37.^4^2.^~1~^~A~^^^1^31.^41.^3^29.^44.^~2, 3~^~04/01/2009~ -~11861~^~306~^264.^4^16.^~1~^~A~^^^1^228.^303.^3^210.^316.^~2, 3~^~04/01/2009~ -~11861~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11861~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11861~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~321~^670.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11861~^~322~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~ -~11861~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11861~^~334~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~ -~11861~^~337~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~ -~11861~^~338~^1150.^6^650.^~1~^~A~^^^1^500.^1800.^1^-7109.^9409.^~4~^~10/01/2002~ -~11861~^~417~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~ -~11861~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11861~^~432~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~ -~11861~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11862~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~268~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11862~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11862~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~321~^106.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11862~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~338~^1877.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11862~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11862~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11863~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11863~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11863~^~301~^22.^3^4.^~1~^^^^1^14.^29.^2^2.^41.^~4~^~08/01/2011~ -~11863~^~304~^13.^3^2.^~1~^^^^1^8.^17.^2^0.^24.^~4~^~08/01/2011~ -~11863~^~305~^19.^3^0.^~1~^^^^1^19.^20.^2^17.^21.^~4~^~08/01/2011~ -~11863~^~306~^241.^3^98.^~1~^^^^1^126.^437.^2^-183.^664.^~4~^~08/01/2011~ -~11863~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11863~^~318~^5223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11863~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11863~^~320~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11863~^~321~^2793.^12^661.^~1~^~A~^^^1^1400.^4570.^3^686.^4898.^~4~^~08/01/2011~ -~11863~^~322~^682.^8^298.^~1~^~A~^^^1^117.^1130.^2^-601.^1965.^~4~^~08/01/2011~ -~11863~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11863~^~334~^0.^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~ -~11863~^~337~^0.^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~ -~11863~^~338~^1415.^7^785.^~1~^~A~^^^1^630.^2200.^1^-8559.^11389.^~4~^~08/01/2011~ -~11863~^~417~^20.^2^^~1~^^^^1^18.^23.^1^^^^~08/01/2011~ -~11863~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11863~^~432~^20.^2^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11863~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11864~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11864~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11864~^~301~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~306~^437.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11864~^~318~^428.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11864~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11864~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11864~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11864~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11864~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11864~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11864~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11865~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11865~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11865~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11865~^~318~^258.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11865~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11865~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11865~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11865~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11865~^~432~^11.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11865~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11865~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11866~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11866~^~268~^167.^0^^~4~^^^^^^^^^^^~10/01/2009~ -~11866~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11866~^~318~^11155.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11866~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11866~^~320~^558.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11866~^~321~^4570.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11866~^~322~^1130.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11866~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11866~^~334~^3116.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11866~^~337~^0.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~10/01/2009~ -~11866~^~338~^0.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~10/01/2009~ -~11866~^~417~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11866~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11866~^~432~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2009~ -~11866~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~ -~11866~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11867~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11867~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11867~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11867~^~318~^3339.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11867~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11867~^~320~^167.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11867~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11867~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11867~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11867~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11867~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11868~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11868~^~268~^209.^0^^~4~^^^^^^^^^^^~08/01/2011~ -~11868~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~306~^358.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11868~^~318~^6705.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11868~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11868~^~320~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11868~^~321~^3580.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~322~^885.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11868~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~337~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11868~^~432~^16.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11868~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11868~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11869~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11869~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~306~^214.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11869~^~318~^4005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11869~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~321~^2139.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~ -~11869~^~322~^529.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~ -~11869~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11869~^~334~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~ -~11869~^~337~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~ -~11869~^~338~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~ -~11869~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11869~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11869~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11870~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11870~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11870~^~301~^21.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~306~^117.^3^11.^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11870~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11870~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11870~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11870~^~321~^59.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~ -~11870~^~322~^15.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~ -~11870~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11870~^~334~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~ -~11870~^~337~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~ -~11870~^~338~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~ -~11870~^~417~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11870~^~432~^8.^3^2.^~1~^^^^^^^^^^^~03/01/2007~ -~11870~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11870~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11871~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11871~^~268~^464.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11871~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~306~^410.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11871~^~318~^294.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11871~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11871~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11871~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11871~^~432~^33.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11871~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11871~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11872~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11872~^~268~^389.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11872~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~306~^265.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11872~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11872~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11872~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11872~^~321~^82.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11872~^~322~^9.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11872~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11872~^~334~^61.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11872~^~337~^0.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~03/01/2007~ -~11872~^~338~^342.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~03/01/2007~ -~11872~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11872~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11872~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11872~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11873~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11873~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11873~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~306~^284.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~307~^358.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~318~^5200.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11873~^~320~^260.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11873~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11873~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11873~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11873~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11873~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11874~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11874~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11874~^~301~^33.^1^^~6~^~JA~^^^2^24.^42.^1^^^^~07/01/2012~ -~11874~^~304~^48.^2^^~6~^~JA~^^^2^34.^61.^1^^^^~07/01/2012~ -~11874~^~305~^40.^1^^~6~^~JA~^^^2^20.^60.^1^^^^~07/01/2012~ -~11874~^~306~^312.^2^^~6~^~JA~^^^2^148.^477.^1^^^^~07/01/2012~ -~11874~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~318~^2939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11874~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11874~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11874~^~321~^1725.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~ -~11874~^~322~^33.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~ -~11874~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11874~^~334~^45.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~ -~11874~^~337~^0.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~03/01/2007~ -~11874~^~338~^11449.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~ -~11874~^~417~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11874~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11874~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11874~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11875~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~11875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~11875~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11875~^~301~^38.^67^2.^~6~^~JA~^^^12^14.^94.^66^33.^42.^~4~^~04/01/2003~ -~11875~^~304~^27.^68^0.^~6~^~JA~^^^12^15.^45.^67^25.^28.^~4~^~04/01/2003~ -~11875~^~305~^54.^67^1.^~6~^~JA~^^^12^26.^82.^66^50.^57.^~4~^~04/01/2003~ -~11875~^~306~^475.^68^9.^~6~^~JA~^^^12^306.^817.^67^456.^493.^~4~^~04/01/2003~ -~11875~^~307~^246.^0^^~4~^^^^^^^^^^^~05/01/2004~ -~11875~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11875~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11875~^~417~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^~1, 2, 3~^~04/01/2003~ -~11875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11875~^~432~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^^~02/01/2007~ -~11875~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11875~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11876~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~ -~11876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~ -~11876~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11876~^~301~^27.^4^6.^~1~^~A~^^^1^17.^46.^3^5.^48.^~2, 3~^~04/01/2003~ -~11876~^~304~^18.^4^2.^~1~^~A~^^^1^15.^24.^3^10.^24.^~2, 3~^~04/01/2003~ -~11876~^~305~^32.^4^5.^~1~^~A~^^^1^22.^47.^3^15.^49.^~2, 3~^~04/01/2003~ -~11876~^~306~^230.^4^25.^~1~^~A~^^^1^186.^288.^3^149.^311.^~2, 3~^~04/01/2003~ -~11876~^~307~^263.^0^^~4~^~O~^^^^^^^^^^~08/01/2009~ -~11876~^~318~^15740.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11876~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11876~^~320~^787.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11876~^~321~^9444.^10^804.^~1~^~A~^^^1^7119.^15160.^1^-773.^19660.^~2, 3~^~05/01/2004~ -~11876~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11876~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11876~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11876~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11876~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11876~^~417~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^~1, 2, 3~^~04/01/2003~ -~11876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11876~^~432~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^^~08/01/2009~ -~11876~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11876~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11877~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11877~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11877~^~301~^35.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~304~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~306~^377.^6^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11877~^~318~^16410.^6^881.^~1~^^^^^^^^^^^~06/01/2005~ -~11877~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11877~^~320~^821.^6^44.^~1~^^^^^^^^^^^~06/01/2005~ -~11877~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11877~^~417~^22.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11877~^~432~^22.^6^3.^~1~^^^^^^^^^^^~12/01/1984~ -~11877~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11877~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11878~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11878~^~268~^594.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11878~^~301~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~305~^76.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~306~^484.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~307~^251.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11878~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11878~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11878~^~321~^39.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~ -~11878~^~322~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~ -~11878~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11878~^~334~^22.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~ -~11878~^~337~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~ -~11878~^~338~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~ -~11878~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11878~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11878~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11878~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11879~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11879~^~268~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11879~^~301~^86.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~304~^20.^3^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~305~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~306~^460.^3^122.^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~318~^4238.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11879~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11879~^~320~^212.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11879~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11879~^~417~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11879~^~432~^48.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11879~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11879~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11880~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11880~^~268~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11880~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~305~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~318~^51.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11880~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11880~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~11880~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11880~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11880~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11880~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11880~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11881~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11881~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11881~^~301~^149.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~306~^623.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~307~^290.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~318~^1764.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11881~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11881~^~320~^88.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11881~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11881~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11881~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11881~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11881~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11884~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11884~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~301~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^15.^~4~^~05/01/2004~ -~11884~^~304~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~4~^~05/01/2004~ -~11884~^~305~^28.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^32.^~4~^~05/01/2004~ -~11884~^~306~^218.^4^12.^~1~^~A~^^^1^194.^250.^3^179.^256.^~4~^~05/01/2004~ -~11884~^~307~^247.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~318~^489.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~11884~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11884~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~11884~^~321~^293.^8^34.^~1~^~A~^^^2^199.^408.^4^198.^388.^~4~^~05/01/2004~ -~11884~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~05/01/2004~ -~11884~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11884~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~05/01/2004~ -~11884~^~337~^3041.^8^379.^~1~^~A~^^^2^2342.^4400.^4^1987.^4093.^~4~^~05/01/2004~ -~11884~^~338~^94.^8^14.^~1~^~A~^^^2^70.^150.^4^54.^133.^~4~^~05/01/2004~ -~11884~^~417~^13.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11884~^~432~^13.^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11884~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11885~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11885~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~301~^33.^18^2.^~1~^~A~^^^1^17.^53.^11^27.^37.^~2, 3~^~08/01/2014~ -~11885~^~304~^10.^18^0.^~1~^~A~^^^1^9.^11.^13^9.^9.^~2, 3~^~08/01/2014~ -~11885~^~305~^17.^18^0.^~1~^~A~^^^1^14.^19.^13^15.^17.^~2, 3~^~08/01/2014~ -~11885~^~306~^191.^18^2.^~1~^~A~^^^1^165.^206.^11^185.^195.^~2, 3~^~08/01/2014~ -~11885~^~307~^10.^9^1.^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11885~^~318~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11885~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~321~^265.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~ -~11885~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~12/01/2002~ -~11885~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11885~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~12/01/2002~ -~11885~^~337~^2745.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~ -~11885~^~338~^85.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~ -~11885~^~417~^8.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~11885~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11885~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11885~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11885~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11886~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11886~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~301~^10.^12^0.^~1~^~A~^^^1^7.^14.^6^8.^11.^~2, 3~^~08/01/2014~ -~11886~^~304~^11.^12^0.^~1~^~A~^^^1^9.^14.^7^9.^11.^~2, 3~^~08/01/2014~ -~11886~^~305~^19.^12^0.^~1~^~A~^^^1^15.^23.^10^17.^19.^~2, 3~^~08/01/2014~ -~11886~^~306~^217.^12^8.^~1~^~A~^^^1^169.^282.^9^198.^235.^~2, 3~^~08/01/2014~ -~11886~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11886~^~318~^450.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11886~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11886~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11886~^~321~^270.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11886~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11886~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11886~^~334~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11886~^~337~^9037.^18^^~1~^~A~^^^3^5000.^11600.^^^^~2, 3~^~12/01/2002~ -~11886~^~338~^60.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11886~^~417~^20.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11886~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11886~^~432~^20.^3^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11886~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11886~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11888~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11888~^~262~^0.^0^^~4~^~BFSN~^~11547~^^^^^^^^^~04/01/2013~ -~11888~^~263~^0.^0^^~4~^~BFSN~^~11547~^^^^^^^^^~04/01/2013~ -~11888~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11888~^~301~^18.^36^0.^~6~^~JA~^^^4^11.^33.^24^16.^19.^~2, 3~^~11/01/2002~ -~11888~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~11/01/2002~ -~11888~^~305~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^38.^42.^~2, 3~^~11/01/2002~ -~11888~^~306~^439.^27^15.^~6~^~JA~^^^4^259.^618.^19^405.^472.^~2, 3~^~11/01/2002~ -~11888~^~307~^202.^1^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~11888~^~318~^510.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11888~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11888~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11888~^~321~^306.^6^10.^~1~^~A~^^^1^280.^353.^5^280.^332.^~2, 3~^~02/01/2007~ -~11888~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11888~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11888~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11888~^~337~^21754.^6^604.^~1~^~A~^^^1^19729.^23533.^5^20198.^23308.^~2, 3~^~02/01/2007~ -~11888~^~338~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~ -~11888~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11888~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11888~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11888~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11888~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11889~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11889~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11889~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~307~^286.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11889~^~318~^0.^0^^~1~^^^^^^^^^^^~11/01/2014~ -~11889~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11889~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11889~^~321~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~322~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11889~^~334~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~337~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~338~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11889~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11889~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11889~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11890~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11890~^~268~^86.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11890~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~307~^272.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11890~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11890~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11890~^~321~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~322~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11890~^~334~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~337~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~338~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11890~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11890~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11890~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11891~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11891~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11891~^~301~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~305~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11891~^~318~^7625.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~11891~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11891~^~320~^381.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~11891~^~321~^4575.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11891~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11891~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11891~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11891~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11891~^~338~^8440.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11891~^~417~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11891~^~432~^118.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11891~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11891~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11892~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11892~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~301~^152.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~305~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~307~^251.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11892~^~318~^10765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11892~^~320~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~321~^6459.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~322~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11892~^~334~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~337~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~338~^11915.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~417~^39.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11892~^~432~^39.^3^6.^~1~^^^^^^^^^^^~03/01/2007~ -~11892~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11893~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~301~^128.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~305~^32.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~306~^216.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~307~^255.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~318~^8612.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~321~^5167.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11893~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~338~^9532.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~432~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11894~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~306~^169.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~307~^271.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11894~^~318~^4277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11894~^~320~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~321~^2082.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~05/01/2005~ -~11894~^~322~^968.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~05/01/2005~ -~11894~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11894~^~334~^0.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~337~^0.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~338~^637.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11894~^~432~^19.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11894~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11895~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11895~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11895~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~307~^343.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11895~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11895~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11895~^~321~^0.^0^^~4~^~O~^~11468~^^^^^^^^^~05/01/2007~ -~11895~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11895~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11895~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11895~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11895~^~338~^197.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11895~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11895~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11895~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11895~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11896~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11896~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11896~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~306~^274.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11896~^~318~^88.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11896~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11896~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11896~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11896~^~417~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11896~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11896~^~432~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11896~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11896~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11897~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11897~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11897~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~301~^14.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~304~^18.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~305~^49.^6^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~306~^670.^6^36.^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11897~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11897~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~321~^73.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~322~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11897~^~334~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~337~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~338~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~417~^16.^12^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11897~^~432~^16.^12^4.^~1~^^^^^^^^^^^~03/01/2007~ -~11897~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11898~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11898~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11898~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11898~^~318~^19.^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11898~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11898~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11898~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11898~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~11898~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11899~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11899~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11899~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~318~^450.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11899~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11899~^~320~^23.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11899~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11899~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11899~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11899~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11899~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11900~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11900~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11900~^~301~^2.^51^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~304~^37.^87^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~305~^89.^77^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~306~^270.^90^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~307~^15.^90^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~11900~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11900~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~11900~^~321~^1.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11900~^~322~^0.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11900~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11900~^~334~^0.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11900~^~338~^34.^5^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11900~^~417~^46.^6^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11900~^~432~^46.^6^3.^~1~^^^^^^^^^^^~02/01/2003~ -~11900~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11900~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11901~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11901~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11901~^~268~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~301~^2.^10^0.^~6~^~JA~^^^2^2.^2.^7^1.^2.^~2, 3~^~04/01/2009~ -~11901~^~304~^31.^10^3.^~6~^~JA~^^^2^26.^32.^6^22.^39.^~2, 3~^~04/01/2009~ -~11901~^~305~^92.^4^2.^~6~^~JA~^^^2^83.^103.^2^82.^100.^~2, 3~^~04/01/2009~ -~11901~^~306~^252.^10^20.^~6~^~JA~^^^2^241.^282.^6^202.^302.^~2, 3~^~04/01/2009~ -~11901~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~1, 2, 3~^~04/01/2009~ -~11901~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11901~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~321~^1.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11901~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~337~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~338~^43.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11901~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11901~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11901~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11902~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11902~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11902~^~268~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~301~^2.^10^0.^~6~^~JA~^^^2^2.^2.^7^1.^2.^~2, 3~^~04/01/2009~ -~11902~^~304~^31.^10^3.^~6~^~JA~^^^2^26.^32.^6^22.^39.^~2, 3~^~04/01/2009~ -~11902~^~305~^92.^4^2.^~6~^~JA~^^^2^83.^103.^2^82.^100.^~2, 3~^~04/01/2009~ -~11902~^~306~^252.^10^20.^~6~^~JA~^^^2^241.^282.^6^202.^302.^~2, 3~^~04/01/2009~ -~11902~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11902~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11902~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~321~^1.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11902~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~337~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~338~^43.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11902~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11902~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11902~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11903~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11903~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11903~^~301~^4.^329^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~304~^16.^151^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~305~^51.^174^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~306~^164.^272^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~307~^213.^50^15.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~11903~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11903~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~11903~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11903~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11903~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11903~^~432~^38.^3^6.^~1~^^^^^^^^^^^~01/01/2006~ -~11903~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11903~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11904~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11904~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11904~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~301~^4.^329^0.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~304~^16.^151^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~305~^51.^174^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~306~^164.^272^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~307~^12.^33^2.^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11904~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~321~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11904~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11904~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11904~^~334~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11904~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11904~^~338~^32.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11904~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11904~^~432~^38.^3^6.^~1~^^^^^^^^^^^~02/01/2003~ -~11904~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11905~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11905~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~301~^3.^22^0.^~1~^~A~^^^2^1.^4.^8^2.^3.^~2, 3~^~08/01/2014~ -~11905~^~304~^13.^22^0.^~1~^~A~^^^2^11.^15.^10^12.^13.^~2, 3~^~08/01/2014~ -~11905~^~305~^46.^22^0.^~1~^~A~^^^2^39.^51.^10^44.^46.^~2, 3~^~08/01/2014~ -~11905~^~306~^132.^22^1.^~1~^~A~^^^2^103.^150.^10^128.^136.^~2, 3~^~04/01/2016~ -~11905~^~307~^205.^20^6.^~1~^~A~^^^2^126.^279.^6^189.^220.^~2, 3~^~04/01/2016~ -~11905~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11905~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11905~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11905~^~321~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11905~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11905~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11905~^~334~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11905~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~08/01/2014~ -~11905~^~338~^40.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11905~^~417~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^~2, 3~^~04/01/2016~ -~11905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11905~^~432~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^^~04/01/2016~ -~11905~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11906~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11906~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11906~^~301~^4.^47^0.^~1~^^^^5^2.^6.^46^3.^4.^~4~^~05/01/2013~ -~11906~^~304~^15.^48^0.^~1~^^^^5^11.^21.^47^14.^15.^~4~^~05/01/2013~ -~11906~^~305~^40.^47^1.^~1~^^^^5^29.^58.^46^37.^41.^~4~^~05/01/2013~ -~11906~^~306~^119.^48^3.^~1~^^^^5^83.^168.^47^112.^125.^~4~^~05/01/2013~ -~11906~^~307~^261.^48^8.^~1~^^^^5^147.^457.^47^244.^277.^~4~^~05/01/2013~ -~11906~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~11906~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11906~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11906~^~321~^1.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~05/01/2015~ -~11906~^~322~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~ -~11906~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11906~^~334~^1.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~ -~11906~^~337~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~ -~11906~^~338~^44.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~05/01/2015~ -~11906~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11906~^~432~^45.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11906~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11906~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11907~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11907~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11907~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11907~^~268~^301.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11907~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11907~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11907~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11907~^~321~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~322~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11907~^~334~^1.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~337~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~338~^37.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11907~^~432~^45.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11907~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11907~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11908~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~307~^272.^66^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11908~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~321~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11908~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11908~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11908~^~334~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11908~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11908~^~338~^41.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~ -~11908~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11908~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11908~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11909~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11909~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~321~^1.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~ -~11909~^~322~^0.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~ -~11909~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11909~^~334~^1.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~ -~11909~^~337~^0.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~ -~11909~^~338~^40.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~ -~11909~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11909~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11909~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11910~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11910~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~301~^4.^57^0.^~6~^~JA~^^^2^4.^4.^53^2.^5.^~2, 3~^~02/01/2013~ -~11910~^~304~^18.^22^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~305~^70.^38^2.^~6~^~JA~^^^2^69.^87.^34^65.^74.^~2, 3~^~02/01/2013~ -~11910~^~306~^213.^24^7.^~6~^~JA~^^^2^210.^264.^22^198.^228.^~2, 3~^~02/01/2013~ -~11910~^~307~^3.^38^0.^~6~^~JA~^^^2^1.^3.^34^2.^3.^~1, 2, 3~^~02/01/2013~ -~11910~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~319~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~02/01/2013~ -~11910~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~321~^1.^3^0.^~12~^~MA~^^^1^1.^2.^2^0.^2.^~2, 3~^~02/01/2013~ -~11910~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~ -~11910~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11910~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~ -~11910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11910~^~338~^35.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~ -~11910~^~417~^36.^6^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11910~^~432~^36.^6^5.^~1~^^^^^^^^^^^~01/01/2006~ -~11910~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11910~^~601~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2013~ -~11911~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11911~^~268~^335.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11911~^~301~^4.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~304~^19.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~305~^57.^7^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~306~^147.^7^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~307~^5.^11^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11911~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11911~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11911~^~321~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11911~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11911~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11911~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11911~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11911~^~338~^50.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11911~^~417~^31.^10^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11911~^~432~^31.^10^2.^~1~^^^^^^^^^^^~02/01/2007~ -~11911~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11911~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11912~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11912~^~268~^335.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11912~^~301~^4.^7^0.^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~304~^19.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~305~^57.^7^4.^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~306~^147.^7^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11912~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11912~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11912~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11912~^~321~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11912~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11912~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11912~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11912~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11912~^~338~^50.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11912~^~417~^31.^10^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11912~^~432~^31.^10^2.^~1~^^^^^^^^^^^~02/01/2007~ -~11912~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11912~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11913~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~268~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~301~^4.^32^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~304~^32.^9^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~305~^87.^25^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~306~^294.^13^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~307~^5.^29^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11913~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11913~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11913~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11913~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11913~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11913~^~338~^61.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11913~^~417~^40.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11913~^~432~^40.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11913~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11914~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11914~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11914~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11914~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11914~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11914~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11914~^~338~^58.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11914~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11914~^~432~^31.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11914~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11915~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11915~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11915~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11915~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11915~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11915~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11915~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11915~^~338~^58.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~ -~11915~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11915~^~432~^31.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11915~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11916~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11916~^~268~^75.^0^^~4~^^^^^^^^^^^ -~11916~^~301~^41.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~305~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~307~^1369.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~318~^520.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11916~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11916~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11916~^~417~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11916~^~432~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11916~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11917~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11917~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~11917~^~301~^9.^7^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~306~^91.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~318~^2428.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11917~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11917~^~321~^1259.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~ -~11917~^~322~^15.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~ -~11917~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11917~^~334~^380.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~ -~11917~^~337~^0.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~08/01/2007~ -~11917~^~338~^39.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~ -~11917~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11917~^~432~^14.^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11917~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11917~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11918~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11918~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11918~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~318~^1917.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11918~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11918~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11918~^~321~^994.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~322~^12.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11918~^~334~^300.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~337~^0.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11918~^~338~^31.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11918~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11918~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11919~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11919~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11919~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11919~^~318~^1917.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11919~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11919~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11919~^~321~^994.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~322~^12.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11919~^~334~^300.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~337~^0.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11919~^~338~^31.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11919~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11919~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11921~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~268~^555.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~301~^7.^4^1.^~1~^~A~^^^1^4.^9.^3^3.^10.^~2, 3~^~04/01/2003~ -~11921~^~304~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~04/01/2003~ -~11921~^~305~^23.^4^3.^~1~^~A~^^^1^15.^30.^3^13.^33.^~2, 3~^~04/01/2003~ -~11921~^~306~^193.^4^11.^~1~^~A~^^^1^171.^223.^3^156.^229.^~2, 3~^~04/01/2003~ -~11921~^~307~^21.^4^4.^~1~^~A~^^^1^12.^33.^3^6.^35.^~2, 3~^~04/01/2003~ -~11921~^~318~^2760.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~320~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~321~^1570.^4^201.^~6~^~JA~^^^1^1050.^2000.^3^929.^2210.^~2, 3~^~04/01/2003~ -~11921~^~322~^96.^4^55.^~6~^~JA~^^^1^0.^207.^3^-81.^272.^~1, 2, 3~^~04/01/2003~ -~11921~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11921~^~334~^77.^4^4.^~6~^~JA~^^^1^65.^86.^3^62.^91.^~2, 3~^~04/01/2003~ -~11921~^~337~^484.^4^92.^~6~^~JA~^^^1^235.^648.^3^188.^778.^~2, 3~^~04/01/2003~ -~11921~^~338~^106.^4^19.^~6~^~JA~^^^1^69.^158.^3^44.^166.^~2, 3~^~03/01/2006~ -~11921~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~04/01/2003~ -~11921~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~ -~11921~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11922~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11922~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11922~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~307~^247.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11922~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11922~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11922~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11922~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11922~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11922~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11922~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11922~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11923~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11923~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~301~^59.^3^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~304~^60.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~305~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~306~^355.^3^41.^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11923~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11923~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~321~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~322~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11923~^~334~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~337~^0.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~338~^0.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~417~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11923~^~432~^80.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~11923~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11924~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11924~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11924~^~301~^82.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~304~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~305~^216.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~306~^567.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11924~^~318~^17.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11924~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11924~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11924~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11924~^~417~^127.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11924~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11924~^~432~^127.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11924~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11924~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11925~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11925~^~268~^84.^0^^~4~^^^^^^^^^^^ -~11925~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~306~^321.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~318~^3474.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11925~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~11925~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11925~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11925~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11925~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11925~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11926~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11926~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11926~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11926~^~318~^41.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11926~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11926~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11926~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11926~^~417~^67.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11926~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11926~^~432~^67.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11926~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11926~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11927~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11927~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11927~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~305~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~306~^495.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~307~^248.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11927~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11927~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~11927~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11927~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11927~^~432~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~11927~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11927~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11928~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11928~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11928~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~318~^200.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11928~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11928~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11928~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11928~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11928~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~ -~11928~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11928~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11929~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11929~^~268~^452.^0^^~4~^^^^^^^^^^^ -~11929~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~307~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11929~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11929~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11929~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11929~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11929~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11929~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11929~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11929~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11930~^~268~^473.^0^^~4~^^^^^^^^^^^ -~11930~^~301~^49.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~306~^233.^12^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~307~^332.^17^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11930~^~319~^42.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11930~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11930~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~11930~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11930~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11930~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11930~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~11930~^~601~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~208~^314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11931~^~268~^1314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~301~^134.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~304~^188.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~305~^327.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~306~^3170.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~307~^193.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~318~^77261.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~11931~^~320~^3863.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~321~^42891.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~11931~^~322~^6931.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~11931~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11931~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~11931~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~338~^5799.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~417~^229.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11931~^~432~^229.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~11931~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11932~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11932~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11932~^~301~^26.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~304~^13.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~305~^19.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~306~^109.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~307~^251.^12^17.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11932~^~319~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~ -~11932~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11932~^~321~^63.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~ -~11932~^~322~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~ -~11932~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11932~^~334~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~ -~11932~^~337~^0.^0^^~4~^~BFSN~^~11729~^^^^^^^^^~02/01/2003~ -~11932~^~338~^458.^0^^~4~^~BFSN~^~11729~^^^^^^^^^~08/01/2015~ -~11932~^~417~^32.^6^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11932~^~432~^32.^6^7.^~1~^^^^^^^^^^^~02/01/2007~ -~11932~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11932~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11933~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11933~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2015~ -~11933~^~301~^26.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~304~^13.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~305~^19.^12^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~306~^109.^12^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~318~^353.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11933~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11933~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11933~^~321~^122.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~322~^156.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11933~^~334~^24.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~337~^0.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~338~^452.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~417~^32.^6^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11933~^~432~^32.^6^7.^~1~^^^^^^^^^^^~05/01/2005~ -~11933~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11933~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11934~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~11934~^~268~^471.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~301~^24.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~304~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~305~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~306~^284.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~307~^317.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~319~^37.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~321~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~324~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~338~^7.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~417~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~432~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~601~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11935~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2004~ -~11935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2004~ -~11935~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~301~^15.^18^0.^~1~^~A~^^^1^14.^18.^9^14.^15.^~2, 3~^~08/01/2014~ -~11935~^~304~^13.^18^0.^~1~^~A~^^^1^12.^15.^12^12.^13.^~2, 3~^~08/01/2014~ -~11935~^~305~^26.^18^0.^~1~^~A~^^^1^23.^30.^12^25.^26.^~2, 3~^~08/01/2014~ -~11935~^~306~^281.^18^5.^~1~^~A~^^^1^243.^334.^11^268.^293.^~2, 3~^~08/01/2014~ -~11935~^~307~^907.^18^6.^~1~^~A~^^^1^836.^967.^14^892.^921.^~2, 3~^~07/01/2012~ -~11935~^~318~^527.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11935~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11935~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11935~^~321~^316.^6^29.^~1~^~A~^^^1^220.^585.^2^181.^451.^~2, 3~^~08/01/2014~ -~11935~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~ -~11935~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11935~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~ -~11935~^~337~^12062.^6^445.^~1~^~A~^^^1^10928.^13805.^2^10140.^13982.^~2, 3~^~08/01/2014~ -~11935~^~338~^161.^6^2.^~1~^~A~^^^1^151.^175.^2^144.^177.^~2, 3~^~08/01/2014~ -~11935~^~417~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^~2, 3~^~08/01/2014~ -~11935~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11935~^~432~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^^~08/01/2014~ -~11935~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11936~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11936~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~304~^9.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2015~ -~11936~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~306~^448.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11936~^~321~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~ -~11936~^~322~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~ -~11936~^~324~^1276.^6^245.^~1~^~A~^^^4^744.^2360.^5^645.^1906.^~4~^~04/01/2015~ -~11936~^~334~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~ -~11936~^~337~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~ -~11936~^~338~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~ -~11936~^~417~^28.^4^6.^~1~^~AS~^^^1^19.^46.^3^7.^47.^~2, 3~^~04/01/2015~ -~11936~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~432~^28.^4^6.^~1~^~A~^^^1^19.^46.^3^7.^47.^~2, 3~^~04/01/2015~ -~11936~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11936~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~638~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~11936~^~639~^2.^6^0.^~1~^~A~^^^2^2.^3.^4^1.^2.^~1, 2, 3~^~04/01/2015~ -~11936~^~641~^0.^6^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 2, 3~^~04/01/2015~ -~11937~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11937~^~268~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11937~^~301~^57.^18^1.^~1~^~A~^^^1^50.^76.^10^54.^60.^~2, 3~^~08/01/2014~ -~11937~^~304~^7.^18^0.^~1~^~A~^^^1^5.^11.^8^6.^7.^~2, 3~^~08/01/2014~ -~11937~^~305~^16.^18^0.^~1~^~A~^^^1^12.^19.^12^15.^16.^~2, 3~^~08/01/2014~ -~11937~^~306~^117.^18^3.^~1~^~A~^^^1^93.^145.^9^108.^124.^~2, 3~^~08/01/2014~ -~11937~^~307~^809.^18^19.^~1~^~A~^^^1^502.^1170.^11^766.^852.^~2, 3~^~04/01/2014~ -~11937~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11937~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11937~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11937~^~321~^53.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~ -~11937~^~322~^13.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~ -~11937~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11937~^~334~^30.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~ -~11937~^~337~^0.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~12/01/2006~ -~11937~^~338~^28.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~ -~11937~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~11937~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11937~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~11937~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11937~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11937~^~636~^14.^3^0.^~1~^^^^^^^^^^^~12/01/2006~ -~11938~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~268~^93.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~301~^3.^52^0.^~11~^~JO~^^^11^1.^8.^35^2.^3.^~4~^~04/01/2015~ -~11938~^~304~^9.^42^0.^~6~^~JA~^^^10^5.^14.^33^8.^9.^~4~^~04/01/2015~ -~11938~^~305~^86.^43^3.^~11~^~JO~^^^11^29.^124.^34^77.^93.^~4~^~04/01/2015~ -~11938~^~306~^318.^48^11.^~6~^~JA~^^^11^118.^412.^35^295.^340.^~4~^~04/01/2015~ -~11938~^~307~^5.^38^0.^~11~^~JO~^^^11^2.^19.^33^3.^6.^~4~^~04/01/2015~ -~11938~^~318~^0.^1^^~1~^^^^^0.^0.^^^^^~04/01/2015~ -~11938~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~324~^1046.^8^285.^~1~^~A~^^^3^607.^3008.^7^370.^1722.^~4~^~04/01/2015~ -~11938~^~417~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^~4~^~04/01/2015~ -~11938~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~432~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^^~04/01/2015~ -~11938~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~638~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~11938~^~639~^2.^8^0.^~1~^~A~^^^2^2.^2.^6^1.^1.^~2, 3~^~04/01/2015~ -~11938~^~641~^0.^8^0.^~1~^~A~^^^2^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2015~ -~11939~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11939~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11939~^~301~^3.^7^0.^~1~^~A~^^^2^1.^5.^5^1.^3.^~2, 3~^~08/01/2009~ -~11939~^~304~^13.^7^0.^~1~^~A~^^^2^9.^16.^4^11.^14.^~2, 3~^~08/01/2009~ -~11939~^~305~^135.^7^5.^~1~^~A~^^^2^98.^160.^4^119.^150.^~2, 3~^~08/01/2009~ -~11939~^~306~^437.^7^21.^~1~^~A~^^^2^306.^580.^4^377.^496.^~2, 3~^~08/01/2009~ -~11939~^~307~^11.^7^1.^~1~^~A~^^^2^6.^18.^3^5.^15.^~2, 3~^~08/01/2009~ -~11939~^~324~^524.^4^231.^~1~^~A~^^^1^124.^1022.^3^-211.^1259.^~2, 3~^~02/01/2010~ -~11939~^~417~^19.^2^^~1~^~A~^^^1^12.^26.^1^^^^~08/01/2009~ -~11939~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~639~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^3.^~2, 3~^~01/01/2010~ -~11939~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11940~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11940~^~268~^379.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~301~^61.^3^8.^~1~^~A~^^^1^52.^78.^2^24.^97.^~2, 3~^~04/01/2006~ -~11940~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^5.^9.^~2, 3~^~04/01/2006~ -~11940~^~305~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^14.^21.^~2, 3~^~04/01/2006~ -~11940~^~306~^100.^3^1.^~1~^~A~^^^1^98.^102.^2^95.^104.^~2, 3~^~04/01/2006~ -~11940~^~307~^457.^4^29.^~6~^~JA~^^^2^332.^611.^2^329.^585.^~2, 3~^~04/01/2006~ -~11940~^~318~^764.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11940~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~321~^325.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~ -~11940~^~322~^81.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~ -~11940~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11940~^~334~^186.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~ -~11940~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~ -~11940~^~338~^170.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~ -~11940~^~417~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11940~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11940~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11941~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~301~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~304~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~306~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~307~^1208.^6^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~318~^191.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11941~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~321~^81.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~322~^20.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11941~^~334~^47.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~338~^43.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11941~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11941~^~432~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11941~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11941~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11943~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11943~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~304~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~305~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~306~^158.^4^9.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~307~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~318~^2655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11943~^~319~^0.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~ -~11943~^~320~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11943~^~321~^1474.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~ -~11943~^~322~^238.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~ -~11943~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11943~^~334~^0.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~ -~11943~^~337~^0.^0^^~4~^~BFSN~^~11334~^^^^^^^^^~02/01/2003~ -~11943~^~338~^366.^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~ -~11943~^~417~^6.^5^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11943~^~432~^6.^5^0.^~1~^^^^^^^^^^^~03/01/2007~ -~11943~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11943~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11943~^~636~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11944~^~268~^381.^0^^~4~^^^^^^^^^^^ -~11944~^~301~^5.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~304~^19.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~305~^40.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~306~^78.^6^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~307~^1091.^7^68.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~318~^167.^6^39.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11944~^~320~^8.^6^1.^~1~^^^^^^^^^^^~06/01/2002~ -~11944~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11944~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11944~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11944~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11944~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11945~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11945~^~268~^544.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~301~^3.^7^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~304~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~306~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~307~^811.^7^18.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~318~^1218.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11945~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~321~^519.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~322~^129.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11945~^~334~^296.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~04/01/2005~ -~11945~^~338~^271.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11945~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11946~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11946~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~301~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~304~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~306~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~318~^191.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11946~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~321~^81.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~322~^20.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11946~^~334~^47.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~337~^0.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~338~^43.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~11946~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11946~^~432~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11946~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11946~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~268~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11947~^~301~^57.^18^1.^~1~^~A~^^^1^50.^76.^10^54.^60.^~2, 3~^~08/01/2014~ -~11947~^~304~^7.^18^0.^~1~^~A~^^^1^5.^11.^8^6.^7.^~2, 3~^~08/01/2014~ -~11947~^~305~^16.^18^0.^~1~^~A~^^^1^12.^19.^12^15.^16.^~2, 3~^~08/01/2014~ -~11947~^~306~^117.^18^3.^~1~^~A~^^^1^93.^145.^9^108.^124.^~2, 3~^~08/01/2014~ -~11947~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11947~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11947~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11947~^~321~^53.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~ -~11947~^~322~^13.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~ -~11947~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11947~^~334~^30.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~ -~11947~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11947~^~338~^28.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~ -~11947~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~11947~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11947~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~11947~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11947~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11947~^~636~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11948~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~301~^4.^48^1.^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~304~^4.^44^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~305~^12.^44^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~306~^32.^44^6.^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~318~^1116.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11948~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~321~^475.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~322~^118.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11948~^~334~^271.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~338~^248.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11948~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11948~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11949~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~11949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~11949~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~301~^15.^18^0.^~1~^~A~^^^1^14.^18.^9^14.^15.^~2, 3~^~08/01/2014~ -~11949~^~304~^13.^18^0.^~1~^~A~^^^1^12.^15.^12^12.^13.^~2, 3~^~08/01/2014~ -~11949~^~305~^26.^18^0.^~1~^~A~^^^1^23.^30.^12^25.^26.^~2, 3~^~08/01/2014~ -~11949~^~306~^281.^18^5.^~1~^~A~^^^1^243.^334.^11^268.^293.^~2, 3~^~08/01/2014~ -~11949~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11949~^~318~^527.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11949~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11949~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11949~^~321~^316.^6^29.^~1~^~A~^^^1^220.^585.^2^181.^451.^~2, 3~^~08/01/2014~ -~11949~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~ -~11949~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11949~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~ -~11949~^~337~^12062.^6^445.^~1~^~A~^^^1^10928.^13805.^2^10140.^13982.^~2, 3~^~08/01/2014~ -~11949~^~338~^161.^6^2.^~1~^~A~^^^1^151.^175.^2^144.^177.^~2, 3~^~08/01/2014~ -~11949~^~417~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^~2, 3~^~08/01/2014~ -~11949~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11949~^~432~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^^~08/01/2014~ -~11949~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11950~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11950~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11950~^~301~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~07/01/2009~ -~11950~^~304~^16.^2^^~1~^~A~^^^1^16.^16.^^^^^~07/01/2009~ -~11950~^~305~^105.^2^^~1~^~A~^^^1^100.^110.^1^^^^~07/01/2009~ -~11950~^~306~^359.^3^19.^~1~^~A~^^^1^339.^399.^2^273.^444.^~2, 3~^~07/01/2009~ -~11950~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^1.^4.^~2, 3~^~07/01/2009~ -~11950~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11950~^~324~^5.^4^3.^~1~^~A~^^^1^2.^16.^3^-5.^16.^~1, 2, 3~^~02/01/2010~ -~11950~^~417~^48.^6^5.^~6~^~JA~^^^2^32.^64.^2^28.^68.^~2, 3~^~05/01/2010~ -~11950~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11950~^~432~^48.^6^5.^~6~^~JA~^^^2^32.^64.^2^28.^68.^^~05/01/2010~ -~11950~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11950~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11950~^~638~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11950~^~639~^1.^7^0.^~1~^~A~^^^2^1.^2.^4^0.^1.^~1, 2, 3~^~02/01/2010~ -~11950~^~641~^0.^7^0.^~1~^~A~^^^2^0.^1.^2^0.^0.^~1, 2, 3~^~02/01/2010~ -~11951~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11951~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11951~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~305~^24.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~306~^212.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~318~^200.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11951~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11951~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11951~^~321~^120.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11951~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11951~^~417~^26.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11951~^~432~^26.^2^^~1~^^^^^^^^^^^~07/01/2003~ -~11951~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11951~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11952~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11952~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11952~^~301~^19.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~305~^40.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~306~^302.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~307~^22.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11952~^~319~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11952~^~321~^16.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~322~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11952~^~334~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~337~^0.^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~338~^8832.^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~417~^60.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11952~^~432~^60.^2^^~1~^^^^^^^^^^^~05/01/2007~ -~11952~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11952~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11953~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11953~^~268~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11953~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~304~^33.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~305~^93.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~306~^459.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~318~^490.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11953~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11953~^~320~^25.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11953~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11953~^~417~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11953~^~432~^20.^2^^~1~^^^^^^^^^^^~12/01/1984~ -~11953~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11953~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11954~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11954~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~306~^268.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~307~^1.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~318~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~319~^0.^0^^~4~^~BNA~^~11333~^^^^^^^^^~03/01/2007~ -~11954~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~321~^63.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~ -~11954~^~322~^10.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~ -~11954~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11954~^~334~^0.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~ -~11954~^~337~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~02/01/2003~ -~11954~^~338~^467.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11954~^~417~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11954~^~432~^7.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11954~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11955~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11955~^~268~^1079.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11955~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~304~^194.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~305~^356.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~306~^3427.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~307~^107.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11955~^~318~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11955~^~319~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~ -~11955~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11955~^~321~^524.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~ -~11955~^~322~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~ -~11955~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11955~^~334~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~ -~11955~^~337~^45902.^0^^~4~^~BFSN~^~11530~^^^^^^^^^~03/01/2007~ -~11955~^~338~^1419.^0^^~4~^~BFSN~^~11530~^^^^^^^^^~03/01/2007~ -~11955~^~417~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11955~^~432~^68.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11955~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11955~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11956~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11956~^~268~^891.^0^^~4~^^^^^^^^^^^ -~11956~^~301~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~304~^81.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~305~^139.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~306~^1565.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~307~^266.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~318~^1286.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11956~^~320~^64.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11956~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11956~^~417~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11956~^~432~^23.^1^^~1~^^^^^^^^^^^~12/01/1984~ -~11956~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11956~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11957~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~11957~^~301~^49.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~304~^17.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~305~^50.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~306~^414.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~307~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~318~^963.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~11957~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11957~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~11957~^~321~^578.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~322~^0.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11957~^~334~^0.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~338~^607.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~417~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11957~^~432~^27.^2^^~1~^^^^^^^^^^^~12/01/1984~ -~11957~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11957~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11958~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11958~^~268~^540.^0^^~4~^^^^^^^^^^^ -~11958~^~301~^4.^7^3.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~304~^7.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~305~^17.^6^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~306~^76.^6^2.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~307~^1096.^7^32.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~318~^267.^6^7.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11958~^~320~^13.^6^0.^~1~^^^^^^^^^^^~06/01/2002~ -~11958~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11958~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11958~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1984~ -~11958~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11958~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11959~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11959~^~268~^105.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~11959~^~301~^160.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~304~^47.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~306~^369.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~307~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~318~^2373.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11959~^~319~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~ -~11959~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11959~^~321~^1424.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~ -~11959~^~322~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~ -~11959~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11959~^~334~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~ -~11959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11959~^~338~^3555.^0^^~4~^~BFSN~^~11251~^^^^^^^^^~02/01/2003~ -~11959~^~417~^97.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11959~^~432~^97.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11959~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11959~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11960~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~268~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~301~^32.^8^1.^~1~^~A~^^^2^28.^36.^6^28.^34.^~2, 3~^~10/01/2002~ -~11960~^~304~^10.^8^0.^~1~^~A~^^^2^9.^13.^3^9.^11.^~2, 3~^~10/01/2002~ -~11960~^~305~^28.^8^0.^~1~^~A~^^^2^24.^31.^4^26.^30.^~2, 3~^~10/01/2002~ -~11960~^~306~^237.^8^8.^~1~^~A~^^^2^201.^312.^4^212.^260.^~2, 3~^~10/01/2002~ -~11960~^~307~^78.^8^4.^~1~^~A~^^^2^36.^112.^5^64.^90.^~2, 3~^~05/01/2003~ -~11960~^~318~^13790.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11960~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11960~^~320~^690.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11960~^~321~^6391.^7^1661.^~1~^~A~^^^1^4730.^8052.^1^-14714.^27496.^~4~^~10/01/2002~ -~11960~^~322~^3767.^7^1026.^~1~^~A~^^^1^2740.^4793.^1^-9276.^16809.^~4~^~10/01/2002~ -~11960~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11960~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11960~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11960~^~338~^358.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11960~^~417~^27.^8^2.^~1~^~A~^^^2^12.^50.^4^18.^34.^~2, 3~^~03/01/2006~ -~11960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11960~^~432~^27.^8^2.^~1~^~A~^^^2^12.^50.^4^18.^34.^^~03/01/2006~ -~11960~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11961~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11961~^~268~^117.^0^^~4~^^^^^^^^^^^ -~11961~^~301~^58.^3^12.^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~304~^38.^3^5.^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~305~^65.^3^13.^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~306~^177.^3^8.^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~307~^426.^3^41.^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11961~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~11961~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11961~^~417~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11961~^~432~^39.^2^^~1~^^^^^^^^^^^~12/01/1984~ -~11961~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11961~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11962~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11962~^~268~^1356.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11962~^~301~^45.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~304~^88.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~305~^159.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~306~^1870.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~307~^91.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~318~^26488.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11962~^~319~^0.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~320~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11962~^~321~^14844.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~322~^994.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11962~^~334~^1103.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~337~^0.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~338~^5494.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~417~^51.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11962~^~432~^51.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11962~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11962~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11963~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11963~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11963~^~301~^164.^4^26.^~1~^^^^1^118.^211.^3^80.^246.^~4~^~01/01/2003~ -~11963~^~304~^52.^4^3.^~1~^^^^1^45.^61.^3^41.^63.^~4~^~01/01/2003~ -~11963~^~305~^16.^4^1.^~1~^^^^1^14.^19.^3^12.^20.^~4~^~01/01/2003~ -~11963~^~306~^257.^4^37.^~1~^^^^1^170.^330.^3^137.^376.^~4~^~01/01/2003~ -~11963~^~307~^21.^8^1.^~1~^^^^1^18.^25.^3^15.^26.^~4~^~01/01/2003~ -~11963~^~318~^457.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11963~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11963~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11963~^~321~^250.^4^114.^~1~^^^^1^51.^477.^3^-112.^613.^~4~^~01/01/2003~ -~11963~^~322~^48.^2^^~1~^^^^1^47.^50.^1^^^^~01/01/2003~ -~11963~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11963~^~417~^3.^4^0.^~1~^^^^1^1.^5.^3^0.^5.^~4~^~01/01/2003~ -~11963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11963~^~432~^3.^4^0.^~1~^^^^1^1.^5.^3^0.^5.^^~03/01/2007~ -~11963~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11963~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11964~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11964~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11964~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~301~^164.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~304~^47.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~305~^16.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~306~^195.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~307~^20.^4^10.^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11964~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~321~^242.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~322~^47.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11964~^~334~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~337~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~338~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11964~^~432~^3.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~11964~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11965~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11965~^~268~^130.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~11965~^~301~^33.^6^1.^~1~^^^^2^28.^37.^5^28.^36.^~4~^~01/01/2003~ -~11965~^~304~^20.^6^0.^~1~^^^^2^18.^22.^5^18.^21.^~4~^~01/01/2003~ -~11965~^~305~^62.^6^1.^~1~^^^^2^54.^66.^5^57.^65.^~4~^~01/01/2003~ -~11965~^~306~^300.^6^14.^~1~^^^^2^244.^335.^5^262.^337.^~4~^~01/01/2003~ -~11965~^~307~^23.^4^3.^~1~^^^^1^13.^27.^3^12.^34.^~4~^~01/01/2003~ -~11965~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11965~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11965~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11965~^~321~^93.^7^25.^~1~^^^^2^20.^166.^4^22.^164.^~4~^~01/01/2003~ -~11965~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~ -~11965~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11965~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~ -~11965~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~ -~11965~^~338~^42.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~ -~11965~^~417~^57.^4^4.^~1~^^^^1^51.^69.^3^44.^70.^~4~^~01/01/2003~ -~11965~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11965~^~432~^57.^4^4.^~1~^^^^1^51.^69.^3^44.^70.^^~02/01/2007~ -~11965~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11965~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11967~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11967~^~268~^134.^0^^~4~^^^^^^^^^^^~11/01/2014~ -~11967~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~305~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~306~^278.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~307~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~318~^144.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11967~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11967~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11967~^~321~^86.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~322~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11967~^~334~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~337~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~338~^39.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11967~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11967~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11967~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11968~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11968~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11968~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~305~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~306~^278.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~307~^259.^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11968~^~318~^141.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11968~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11968~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11968~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11968~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11968~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1984~ -~11968~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11968~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11969~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11969~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~301~^100.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~305~^41.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~306~^261.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~318~^1638.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~319~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~321~^983.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~322~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11969~^~334~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~337~^0.^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~338~^912.^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~417~^99.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11969~^~432~^99.^2^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11969~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11970~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~11970~^~268~^50.^0^^~4~^^^^^^^^^^^~12/01/2007~ -~11970~^~301~^29.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~304~^8.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~305~^19.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~306~^87.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~318~^263.^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~11970~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11970~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~11970~^~321~^133.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11970~^~322~^49.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11970~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11970~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~11970~^~417~^43.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11970~^~432~^43.^2^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~11970~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~11970~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11972~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~11972~^~268~^414.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~11972~^~301~^65.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~304~^60.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~305~^101.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~306~^723.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~307~^6.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~11972~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11972~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~11972~^~321~^3.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~11972~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~11972~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11972~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~11972~^~417~^75.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11972~^~432~^75.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~11972~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~11972~^~601~^0.^1^^~7~^~Z~^^^^^^^^^^~02/01/2004~ -~11972~^~636~^6.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~641~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11973~^~268~^368.^0^^~4~^^^^^^^^^^^~10/01/2011~ -~11973~^~301~^37.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~304~^33.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~305~^129.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~306~^332.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~307~^25.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~318~^333.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11973~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11973~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~11973~^~321~^196.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11973~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11973~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11973~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11973~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11973~^~338~^1811.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11973~^~417~^148.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11973~^~432~^148.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~11973~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11973~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11973~^~636~^22.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~641~^18.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11974~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~301~^363.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~304~^95.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~305~^91.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~306~^272.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~307~^9.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~318~^27521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11974~^~320~^1376.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~321~^16194.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~322~^629.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11974~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11974~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11974~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11974~^~417~^83.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11974~^~432~^83.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11974~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11974~^~636~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~641~^20.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~11975~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11975~^~301~^289.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~304~^14.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~305~^34.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~306~^29.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~307~^2853.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~318~^5253.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11975~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11975~^~320~^263.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11975~^~321~^2838.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11975~^~322~^629.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11975~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11975~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11975~^~337~^0.^0^^~4~^~BFSY~^~11974~^^^^^^^^^~11/01/2011~ -~11975~^~338~^1487.^0^^~4~^~BFSY~^~11974~^^^^^^^^^~11/01/2011~ -~11975~^~417~^78.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11975~^~432~^78.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11975~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11975~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11976~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11976~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11976~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11976~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11976~^~301~^14.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~304~^17.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~305~^32.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~306~^256.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~318~^340.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11976~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11976~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11976~^~321~^184.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~322~^39.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11976~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11976~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~11976~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11976~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11976~^~417~^29.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11976~^~432~^29.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11976~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11976~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11976~^~636~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~641~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/1995~ -~11977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11977~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11977~^~301~^11.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~305~^40.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~306~^305.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~307~^10.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~318~^937.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11977~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11977~^~321~^534.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11977~^~322~^18.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11977~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11977~^~334~^40.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~11977~^~337~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~11/01/2002~ -~11977~^~338~^544.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11977~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11977~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11977~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11977~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11977~^~636~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~639~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~641~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~01/01/1995~ -~11978~^~268~^1176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~11978~^~301~^61.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~304~^113.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~305~^201.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~306~^2411.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~307~^43.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11978~^~318~^20438.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11978~^~320~^1022.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11978~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11978~^~417~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11978~^~432~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11978~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11979~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11979~^~268~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~301~^12.^2^^~1~^~A~^^^1^11.^13.^1^^^^~05/01/2010~ -~11979~^~304~^15.^2^^~1~^~A~^^^1^14.^16.^1^^^^~05/01/2010~ -~11979~^~305~^26.^2^^~1~^~A~^^^1^24.^29.^1^^^^~05/01/2010~ -~11979~^~306~^248.^2^^~1~^~A~^^^1^228.^268.^1^^^^~05/01/2010~ -~11979~^~307~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^~1~^~05/01/2010~ -~11979~^~318~^1078.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11979~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~321~^561.^2^^~1~^~A~^^^1^266.^855.^1^^^^~05/01/2010~ -~11979~^~322~^67.^2^^~1~^~A~^^^1^15.^119.^1^^^^~05/01/2010~ -~11979~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11979~^~334~^105.^2^^~1~^~A~^^^1^0.^210.^1^^^~1~^~05/01/2010~ -~11979~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2010~ -~11979~^~338~^861.^2^^~1~^~A~^^^1^788.^934.^1^^^^~05/01/2010~ -~11979~^~417~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11979~^~432~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11980~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11980~^~268~^88.^0^^~4~^^^^^^^^^^^ -~11980~^~301~^36.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~304~^4.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~305~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~306~^113.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~307~^397.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~318~^126.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11980~^~320~^6.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11980~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11980~^~417~^54.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11980~^~432~^54.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11980~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11981~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11981~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11981~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~304~^16.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~305~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~306~^202.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~318~^816.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11981~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11981~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11981~^~321~^465.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~322~^16.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11981~^~334~^34.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~337~^0.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~338~^502.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~417~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11981~^~432~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11981~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11982~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11982~^~268~^1443.^0^^~4~^^^^^^^^^^^ -~11982~^~301~^97.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~304~^130.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~305~^267.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~306~^2222.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~307~^89.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~318~^35760.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11982~^~320~^1788.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11982~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11982~^~417~^170.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11982~^~432~^170.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~435~^170.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11982~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11983~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11983~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~301~^23.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~304~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~305~^22.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~306~^200.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~307~^527.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~318~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~319~^0.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~ -~11983~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~321~^38.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~ -~11983~^~322~^10.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~ -~11983~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11983~^~334~^22.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~ -~11983~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~04/01/2003~ -~11983~^~338~^222.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~417~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11983~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~11984~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11984~^~268~^134.^0^^~4~^^^^^^^^^^^ -~11984~^~301~^275.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~304~^121.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~305~^86.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~306~^633.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~307~^43.^2^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~11984~^~318~^57.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11984~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11984~^~321~^38.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11984~^~417~^215.^2^^~1~^~A~^^^^^^^^^^~07/01/1997~ -~11984~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11984~^~432~^215.^2^^~1~^~A~^^^^^^^^^^~07/01/1997~ -~11984~^~435~^215.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11984~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11985~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11985~^~268~^431.^0^^~4~^^^^^^^^^^^ -~11985~^~301~^429.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~304~^156.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~305~^108.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~306~^494.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~307~^34.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~318~^3598.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11985~^~320~^180.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11985~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11985~^~417~^112.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11985~^~432~^112.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11985~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11986~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11986~^~268~^96.^0^^~4~^^^^^^^^^^^ -~11986~^~301~^124.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~304~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~305~^36.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~306~^256.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~307~^55.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~318~^1158.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11986~^~320~^58.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~11986~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11986~^~417~^114.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11986~^~432~^114.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~11986~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11987~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11987~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11987~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~301~^3.^4^1.^~1~^~A~^^^2^1.^8.^1^-10.^17.^~2, 3~^~04/01/2005~ -~11987~^~304~^18.^4^4.^~1~^~A~^^^2^12.^29.^1^-30.^66.^~2, 3~^~04/01/2005~ -~11987~^~305~^120.^4^10.^~1~^~A~^^^2^97.^162.^1^-15.^254.^~2, 3~^~04/01/2005~ -~11987~^~306~^420.^4^63.^~1~^~A~^^^2^310.^642.^1^-350.^1190.^~2, 3~^~04/01/2005~ -~11987~^~307~^18.^4^3.^~1~^~A~^^^2^1.^37.^2^1.^34.^~2, 3~^~04/01/2005~ -~11987~^~318~^48.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11987~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11987~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11987~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11987~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11987~^~324~^29.^4^24.^~1~^~A~^^^1^3.^103.^3^-50.^107.^~2, 3~^~08/01/2010~ -~11987~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11987~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11987~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11987~^~417~^38.^7^6.^~6~^~JA~^^^3^4.^71.^2^12.^63.^~2, 3~^~05/01/2010~ -~11987~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11987~^~432~^38.^7^6.^~6~^~JA~^^^3^4.^71.^2^12.^63.^^~08/01/2010~ -~11987~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11987~^~638~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11987~^~639~^1.^7^0.^~1~^~A~^^^2^1.^2.^2^1.^1.^~1, 2, 3~^~02/01/2010~ -~11987~^~641~^0.^7^0.^~1~^~A~^^^2^0.^1.^2^0.^0.^~1, 2, 3~^~02/01/2010~ -~11988~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11988~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11988~^~301~^159.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~304~^83.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~305~^184.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~306~^754.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~307~^35.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~11988~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11988~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~11988~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11988~^~417~^38.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11988~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~07/01/2006~ -~11988~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11988~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11989~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11989~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11989~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~305~^61.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~306~^78.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~307~^384.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11989~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11989~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11989~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11989~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11989~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11989~^~417~^38.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11989~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11989~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11989~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11990~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11990~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11990~^~301~^128.^2^^~1~^~A~^^^1^119.^137.^^^^^~07/01/2003~ -~11990~^~304~^69.^2^^~1~^~A~^^^1^50.^88.^^^^^~07/01/2003~ -~11990~^~305~^80.^2^^~1~^~A~^^^1^80.^81.^^^^^~07/01/2003~ -~11990~^~306~^568.^2^^~1~^~A~^^^1^492.^644.^^^^^~07/01/2003~ -~11990~^~307~^17.^2^^~1~^~A~^^^1^9.^25.^^^^^~07/01/2003~ -~11990~^~318~^35.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11990~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11990~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11990~^~321~^21.^3^^~1~^~A~^^^1^14.^28.^^^^~2~^~07/01/2003~ -~11990~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11990~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11990~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11990~^~417~^18.^2^^~1~^~A~^^^1^11.^26.^^^^^~07/01/2003~ -~11990~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11990~^~432~^18.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11990~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11990~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11991~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11991~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11991~^~301~^9.^2^^~1~^~A~^^^2^9.^10.^1^^^^~07/01/2003~ -~11991~^~304~^24.^2^^~1~^~A~^^^2^21.^26.^1^^^^~07/01/2003~ -~11991~^~305~^51.^2^^~1~^~A~^^^2^50.^52.^1^^^^~07/01/2003~ -~11991~^~306~^598.^2^^~1~^~A~^^^2^596.^600.^1^^^^~07/01/2003~ -~11991~^~307~^21.^2^^~1~^~A~^^^2^17.^25.^1^^^^~07/01/2003~ -~11991~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11991~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11991~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11991~^~321~^5.^3^1.^~1~^~A~^^^2^3.^6.^1^-15.^24.^~4~^~07/01/2003~ -~11991~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11991~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11991~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11991~^~417~^17.^2^^~1~^~A~^^^2^9.^25.^1^^^^~07/01/2003~ -~11991~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~11991~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11991~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11991~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11992~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11992~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11992~^~301~^6.^3^2.^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~304~^14.^3^1.^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~305~^127.^3^12.^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~306~^488.^3^55.^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~307~^17.^3^6.^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11992~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11992~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11992~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11992~^~324~^11.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11992~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11992~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11992~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11992~^~417~^16.^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~432~^16.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11992~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11992~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11993~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~268~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~301~^1.^2^^~1~^~A~^^^1^0.^2.^1^^^^~08/01/2009~ -~11993~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~305~^74.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~306~^204.^2^^~1~^~A~^^^1^194.^214.^1^^^^~08/01/2009~ -~11993~^~307~^1.^2^^~1~^~A~^^^1^1.^2.^1^^^^~08/01/2009~ -~11993~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~321~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~ -~11993~^~322~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~ -~11993~^~324~^1123.^4^656.^~1~^~A~^^^1^3.^2529.^3^-966.^3213.^~2, 3~^~08/01/2010~ -~11993~^~334~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~ -~11993~^~337~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~ -~11993~^~338~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~ -~11993~^~417~^21.^5^0.^~6~^~JA~^^^2^15.^30.^3^18.^23.^~2, 3~^~05/01/2010~ -~11993~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~432~^21.^5^0.^~6~^~JA~^^^2^15.^30.^3^18.^23.^^~08/01/2010~ -~11993~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~638~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~11993~^~639~^2.^6^0.^~1~^~A~^^^2^1.^2.^3^1.^1.^~1, 2, 3~^~02/01/2010~ -~11993~^~641~^0.^6^0.^~1~^~A~^^^2^0.^1.^1^0.^0.^~1, 2, 3~^~02/01/2010~ -~11994~^~208~^26.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2017~ -~11994~^~262~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~263~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11994~^~301~^105.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~304~^19.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~305~^43.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~306~^274.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~307~^7.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~318~^1720.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~11994~^~319~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~320~^86.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~321~^1032.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~322~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~11994~^~334~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~337~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~338~^957.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~417~^104.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~431~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~432~^104.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~435~^104.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~601~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11995~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11995~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11995~^~301~^32.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~304~^34.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~305~^101.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~306~^370.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~318~^3617.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11995~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11995~^~320~^181.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11995~^~321~^2040.^8^10.^~1~^~A~^^^2^2030.^2050.^1^1912.^2167.^~4~^~07/01/2003~ -~11995~^~322~^261.^8^70.^~1~^~A~^^^2^190.^331.^1^-635.^1156.^~4~^~07/01/2003~ -~11995~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11995~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~ -~11996~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11996~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11996~^~301~^24.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~304~^19.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~305~^58.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~306~^129.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~307~^0.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~318~^3350.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11996~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~11996~^~320~^168.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~11996~^~321~^1870.^5^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11996~^~322~^280.^5^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11996~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~11996~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~ -~11998~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11998~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11998~^~301~^3.^5^1.^~1~^~A~^^^2^1.^8.^4^0.^7.^~4~^~08/01/2009~ -~11998~^~304~^10.^4^0.^~11~^~JO~^^^2^9.^11.^4^9.^11.^~4~^~08/01/2009~ -~11998~^~305~^108.^5^6.^~1~^~A~^^^2^88.^130.^4^89.^127.^~4~^~08/01/2009~ -~11998~^~306~^364.^5^32.^~1~^~A~^^^2^284.^484.^4^271.^455.^~4~^~08/01/2009~ -~11998~^~307~^9.^5^1.^~1~^~A~^^^2^6.^15.^4^4.^14.^~4~^~08/01/2009~ -~11998~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~11998~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~324~^1135.^13^284.^~1~^~A~^^^5^134.^2566.^4^345.^1925.^~2~^~04/01/2015~ -~11998~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~417~^28.^9^2.^~6~^~JA~^^^2^22.^41.^7^22.^32.^~2, 3~^~01/01/2017~ -~11998~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11998~^~432~^28.^8^2.^~1~^~A~^^^1^23.^41.^7^23.^33.^~2, 3~^~12/01/2010~ -~11998~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11998~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~11998~^~638~^0.^1^^~1~^~A~^^^2^0.^0.^9^^^~1~^~01/01/2010~ -~11998~^~639~^2.^1^^~1~^~A~^^^2^1.^3.^9^^^~1~^~01/01/2010~ -~11998~^~641~^0.^1^^~1~^~A~^^^2^0.^1.^9^^^~1~^~01/01/2010~ -~12001~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12001~^~268~^799.^0^^~4~^^^^^^^^^^^ -~12001~^~301~^36.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~304~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~306~^941.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~307~^25.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~318~^256.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12001~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12001~^~417~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12001~^~432~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12003~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12003~^~268~^703.^0^^~4~^^^^^^^^^^^ -~12003~^~301~^61.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~304~^50.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~305~^124.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~306~^875.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~307~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~318~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12003~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12003~^~417~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12003~^~432~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12004~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12004~^~268~^908.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~12004~^~301~^98.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~304~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~305~^67.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~306~^1183.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~307~^31.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~318~^248.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12004~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12004~^~417~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12004~^~432~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~12004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12005~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12005~^~268~^1536.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~12005~^~301~^94.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~304~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~305~^178.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~306~^2011.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~307~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~318~^216.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12005~^~320~^11.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12005~^~417~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12005~^~432~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~12005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12006~^~208~^486.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~268~^2034.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~301~^631.^2^^~1~^~A~^^^2^590.^673.^1^^^^~06/01/2003~ -~12006~^~304~^335.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~305~^860.^4^93.^~6~^~JA~^^^3^686.^1005.^2^458.^1261.^~2~^~04/01/2011~ -~12006~^~306~^407.^3^246.^~6~^~JA~^^^2^160.^653.^1^-2724.^3537.^~2~^~04/01/2011~ -~12006~^~307~^16.^3^3.^~6~^~JA~^^^2^13.^19.^1^-22.^54.^~2~^~04/01/2011~ -~12006~^~318~^54.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~417~^49.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~432~^49.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12007~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12007~^~268~^1502.^0^^~4~^^^^^^^^^^^ -~12007~^~301~^478.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~304~^721.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~305~^1597.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~306~^1772.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~307~^35.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~318~^434.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12007~^~320~^22.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12007~^~417~^229.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12007~^~432~^229.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12008~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12008~^~268~^1389.^0^^~4~^^^^^^^^^^^ -~12008~^~301~^474.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~304~^716.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~305~^1587.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~306~^1761.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~307~^35.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~318~^432.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12008~^~320~^22.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~12008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12008~^~417~^228.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12008~^~432~^228.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12008~^~435~^228.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12011~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12011~^~268~^1536.^0^^~4~^^^^^^^^^^^ -~12011~^~301~^504.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~304~^760.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~305~^1684.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~306~^1869.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~318~^458.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12011~^~320~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12011~^~417~^242.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12011~^~432~^242.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~435~^242.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12012~^~208~^553.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~12012~^~268~^2313.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~12012~^~301~^70.^2^^~12~^~MA~^^^2^66.^74.^1^^^^~01/01/2015~ -~12012~^~304~^700.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~305~^1650.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~306~^1200.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~307~^5.^2^^~12~^~MA~^^^2^0.^9.^1^^^^~01/01/2015~ -~12012~^~318~^11.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~12012~^~321~^7.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~417~^110.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~12012~^~432~^110.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~12012~^~601~^0.^2^^~12~^~MA~^^^2^0.^0.^^^^^~01/01/2015~ -~12013~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12013~^~268~^1389.^0^^~4~^^^^^^^^^^^ -~12013~^~301~^163.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~304~^210.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~305~^626.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~306~^1368.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~307~^5.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~318~^50.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12013~^~320~^3.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12013~^~417~^104.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12013~^~432~^104.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12014~^~208~^559.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12014~^~268~^2339.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12014~^~301~^46.^3^0.^~1~^~A~^^^1^45.^47.^2^42.^48.^~2, 3~^~12/01/2008~ -~12014~^~304~^592.^3^7.^~1~^~A~^^^1^579.^603.^2^561.^622.^~2, 3~^~12/01/2008~ -~12014~^~305~^1233.^3^21.^~1~^~A~^^^1^1190.^1260.^2^1139.^1327.^~2, 3~^~12/01/2008~ -~12014~^~306~^809.^3^15.^~1~^~A~^^^1^784.^837.^2^743.^875.^~2, 3~^~12/01/2008~ -~12014~^~307~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~318~^16.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12014~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~321~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12014~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~338~^74.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12014~^~432~^58.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~12014~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12016~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12016~^~268~^2401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~301~^52.^2^^~1~^~A~^^^2^45.^59.^^^^^~04/01/2009~ -~12016~^~304~^550.^2^^~1~^~A~^^^2^544.^557.^^^^^~04/01/2009~ -~12016~^~305~^1174.^2^^~1~^~A~^^^2^1170.^1179.^^^^^~04/01/2009~ -~12016~^~306~^788.^2^^~1~^~A~^^^2^786.^789.^^^^^~04/01/2009~ -~12016~^~307~^18.^0^^~1~^^^^^^^^^^^~04/01/2009~ -~12016~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12016~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12016~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~338~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~417~^57.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12016~^~432~^57.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~12016~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12016~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~641~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12021~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12021~^~268~^2163.^0^^~4~^^^^^^^^^^^ -~12021~^~301~^78.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~304~^353.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~305~^644.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~306~^687.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~307~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12021~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12021~^~417~^160.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12021~^~432~^160.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12022~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12022~^~268~^1431.^0^^~4~^^^^^^^^^^^ -~12022~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~304~^350.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~305~^638.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~306~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~307~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~318~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12022~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12022~^~417~^159.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12022~^~432~^159.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12023~^~208~^573.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~268~^2397.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12023~^~301~^975.^21^102.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~304~^351.^3^23.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~305~^629.^20^23.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~306~^468.^4^34.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~307~^11.^3^6.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~318~^9.^8^6.^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12023~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12023~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~12023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12023~^~417~^97.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12023~^~432~^97.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~12023~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12023~^~636~^714.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~208~^565.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12024~^~268~^2364.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12024~^~301~^989.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~304~^356.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~305~^638.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~306~^475.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~307~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~318~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12024~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12024~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12024~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12029~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12029~^~268~^2372.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12029~^~301~^131.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12029~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12029~^~321~^40.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~322~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12029~^~334~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~337~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~338~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~417~^96.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12029~^~432~^96.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12029~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12032~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12032~^~268~^1598.^0^^~4~^^^^^^^^^^^ -~12032~^~301~^150.^6^6.^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~304~^362.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~305~^810.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~306~^425.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~307~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12032~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12032~^~417~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12032~^~432~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12033~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12033~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~12033~^~301~^149.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~304~^338.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~305~^757.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~306~^397.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~318~^64.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12033~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12033~^~417~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12033~^~432~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12034~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12034~^~268~^2372.^0^^~4~^^^^^^^^^^^ -~12034~^~301~^153.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~318~^66.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12034~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12034~^~417~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12034~^~432~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12036~^~208~^584.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12036~^~268~^2445.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12036~^~301~^78.^2^^~1~^~A~^^^1^69.^87.^1^^^^~05/01/2007~ -~12036~^~304~^325.^2^^~1~^~A~^^^1^320.^330.^1^^^^~05/01/2007~ -~12036~^~305~^660.^2^^~1~^~A~^^^1^660.^660.^^^^^~05/01/2007~ -~12036~^~306~^645.^2^^~1~^~A~^^^1^640.^650.^1^^^^~05/01/2007~ -~12036~^~307~^9.^2^^~1~^~A~^^^1^6.^12.^1^^^^~05/01/2007~ -~12036~^~318~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12036~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12036~^~321~^30.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~ -~12036~^~322~^0.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~ -~12036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12036~^~334~^0.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~ -~12036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12036~^~417~^227.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12036~^~432~^227.^0^^~4~^^^^^^^^^^^~11/01/2008~ -~12036~^~435~^227.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12036~^~636~^534.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~208~^582.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12037~^~268~^2435.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12037~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~305~^1155.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~306~^850.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~318~^9.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~ -~12037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12037~^~320~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~ -~12037~^~321~^5.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~ -~12037~^~322~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~ -~12037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12037~^~334~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~ -~12037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12037~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12037~^~432~^237.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12037~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12038~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12038~^~268~^2477.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~301~^87.^2^^~1~^~A~^^^2^85.^88.^^^^^~05/01/2004~ -~12038~^~304~^127.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~305~^1139.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~306~^483.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~318~^9.^3^^~1~^~A~^^^2^0.^45.^^^^~2~^~05/01/2004~ -~12038~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~320~^0.^3^^~1~^~A~^^^2^0.^2.^^^^~2~^~05/01/2004~ -~12038~^~321~^5.^3^^~1~^~A~^^^2^0.^27.^^^^~2~^~05/01/2004~ -~12038~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12038~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12038~^~417~^234.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12038~^~432~^234.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~12038~^~435~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~601~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~05/01/2004~ -~12039~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12039~^~268~^2590.^0^^~4~^^^^^^^^^^^ -~12039~^~301~^57.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~305~^1158.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~306~^491.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12039~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12039~^~417~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12039~^~432~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~435~^238.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12040~^~208~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~268~^2581.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~301~^64.^3^2.^~1~^~A~^^^1^61.^70.^2^52.^75.^~2, 3~^~08/01/2010~ -~12040~^~304~^311.^3^3.^~1~^~A~^^^1^307.^318.^2^296.^325.^~2, 3~^~08/01/2010~ -~12040~^~305~^666.^3^5.^~1~^~A~^^^1^658.^677.^2^641.^690.^~2, 3~^~08/01/2010~ -~12040~^~306~^576.^3^0.^~1~^~A~^^^1^576.^576.^2^574.^576.^~2, 3~^~08/01/2010~ -~12040~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/2010~ -~12040~^~318~^52.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12040~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12040~^~432~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~12040~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~638~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^16.^20.^~2, 3~^~08/01/2010~ -~12040~^~639~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^23.^~2, 3~^~08/01/2010~ -~12040~^~641~^170.^3^3.^~1~^~A~^^^1^163.^175.^2^154.^184.^~2, 3~^~08/01/2010~ -~12041~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12041~^~268~^1364.^0^^~4~^^^^^^^^^^^ -~12041~^~301~^114.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~305~^689.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~306~^67.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~318~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12041~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12041~^~417~^222.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12041~^~432~^222.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~435~^222.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12058~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~07/01/1995~ -~12058~^~268~^1619.^0^^~4~^^^^^^^^^^^ -~12058~^~301~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~304~^62.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~305~^79.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~306~^539.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~307~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~318~^39.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12058~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12058~^~417~^87.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12058~^~432~^87.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12059~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12059~^~268~^2130.^0^^~4~^^^^^^^^^^^ -~12059~^~301~^54.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~304~^82.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~305~^103.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~306~^709.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~307~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12059~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12059~^~417~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12059~^~432~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12059~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12060~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12060~^~268~^2096.^0^^~4~^^^^^^^^^^^ -~12060~^~301~^43.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~304~^110.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~305~^103.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~306~^712.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~307~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~318~^51.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12060~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12060~^~417~^114.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12060~^~432~^114.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12061~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12061~^~268~^2423.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~301~^269.^89^7.^~1~^~A~^^^3^198.^373.^2^237.^299.^~2~^~04/01/2013~ -~12061~^~304~^270.^88^1.^~1~^~A~^^^3^224.^303.^6^267.^273.^~2~^~04/01/2013~ -~12061~^~305~^481.^88^6.^~1~^~A~^^^3^364.^569.^4^462.^499.^~2~^~04/01/2013~ -~12061~^~306~^733.^88^16.^~1~^~A~^^^3^543.^902.^2^647.^819.^~2~^~04/01/2013~ -~12061~^~307~^1.^85^0.^~1~^~A~^^^3^0.^11.^3^0.^2.^~1, 2~^~05/01/2007~ -~12061~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~12061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~12061~^~321~^1.^26^0.^~1~^~A~^^^4^0.^6.^1^-6.^9.^~1, 2~^~05/01/2007~ -~12061~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~05/01/2007~ -~12061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12061~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12061~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12061~^~338~^1.^8^0.^~1~^~A~^^^2^1.^1.^^^^~1, 2, 3~^~09/01/2002~ -~12061~^~417~^44.^41^6.^~1~^~A~^^^2^10.^107.^1^-23.^110.^~2~^~04/01/2013~ -~12061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12061~^~432~^44.^41^6.^~1~^~A~^^^2^10.^107.^1^-23.^110.^^~04/01/2013~ -~12061~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~601~^0.^2^^~1~^~A~^^^1^0.^1.^8^^^~1~^~04/01/2013~ -~12061~^~638~^4.^82^0.^~1~^~A~^^^6^0.^12.^4^2.^6.^~1, 2~^~05/01/2007~ -~12061~^~639~^5.^82^0.^~1~^~A~^^^6^3.^12.^4^3.^6.^~2~^~05/01/2007~ -~12061~^~641~^130.^68^6.^~1~^~A~^^^6^101.^168.^3^109.^150.^~2~^~04/01/2013~ -~12062~^~208~^590.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12062~^~268~^2468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~301~^236.^8^17.^~1~^~A~^^^2^214.^267.^1^13.^457.^~2~^~03/01/2010~ -~12062~^~304~^268.^8^3.^~1~^~A~^^^2^244.^288.^1^220.^315.^~2~^~03/01/2010~ -~12062~^~305~^481.^8^1.^~1~^~A~^^^2^416.^511.^1^464.^497.^~2~^~03/01/2010~ -~12062~^~306~^659.^8^17.^~1~^~A~^^^2^600.^691.^1^432.^884.^~2~^~03/01/2010~ -~12062~^~307~^19.^8^6.^~1~^~A~^^^2^7.^31.^1^-63.^101.^~1, 2~^~03/01/2010~ -~12062~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~12062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12062~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~12062~^~321~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12062~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12062~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12062~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12062~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12062~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12062~^~417~^49.^7^20.^~1~^~A~^^^2^27.^112.^1^-211.^309.^~2~^~03/01/2010~ -~12062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12062~^~432~^49.^7^20.^~1~^~A~^^^2^27.^112.^1^-211.^309.^^~03/01/2010~ -~12062~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12062~^~636~^114.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~12062~^~638~^1.^5^0.^~1~^~A~^^^2^0.^1.^1^-1.^2.^~1, 2~^~03/01/2010~ -~12062~^~639~^4.^5^1.^~1~^~A~^^^2^2.^6.^1^-15.^24.^~1, 2~^~03/01/2010~ -~12062~^~641~^109.^5^0.^~1~^~A~^^^2^105.^113.^1^105.^111.^~2~^~03/01/2010~ -~12063~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12063~^~268~^2502.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~301~^268.^22^4.^~1~^~A~^^^3^215.^343.^2^246.^289.^~2~^~04/01/2013~ -~12063~^~304~^279.^21^3.^~1~^~A~^^^3^250.^297.^2^264.^292.^~2~^~04/01/2013~ -~12063~^~305~^471.^21^9.^~1~^~A~^^^3^371.^564.^2^430.^511.^~2~^~04/01/2013~ -~12063~^~306~^713.^21^11.^~1~^~A~^^^3^558.^854.^2^663.^762.^~2~^~04/01/2013~ -~12063~^~307~^3.^20^1.^~1~^~A~^^^3^0.^17.^2^-1.^7.^~1, 2~^~03/01/2010~ -~12063~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~12063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~12063~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12063~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12063~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12063~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12063~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12063~^~417~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^~2~^~04/01/2013~ -~12063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12063~^~432~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^^~04/01/2013~ -~12063~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~601~^0.^1^^~1~^~A~^^^1^0.^1.^11^^^~1~^~04/01/2013~ -~12063~^~638~^4.^16^0.^~1~^~A~^^^3^2.^6.^2^3.^4.^~2~^~03/01/2010~ -~12063~^~639~^4.^16^0.^~1~^~A~^^^3^3.^7.^2^1.^7.^~2~^~03/01/2010~ -~12063~^~641~^122.^16^6.^~1~^~A~^^^3^94.^190.^2^96.^148.^~2~^~04/01/2013~ -~12065~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12065~^~268~^2541.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~01/01/2001~ -~12065~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~01/01/2001~ -~12065~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~01/01/2001~ -~12065~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~01/01/2001~ -~12065~^~307~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~4~^~01/01/2001~ -~12065~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~05/01/2001~ -~12065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12065~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12065~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12065~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12065~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12065~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12065~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~01/01/2001~ -~12065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12065~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~11/01/2006~ -~12065~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12065~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12065~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12065~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12065~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12071~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~12071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12071~^~268~^1916.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12071~^~301~^172.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~304~^130.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~305~^258.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~306~^314.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~307~^9.^2^^~1~^~A~^^^^^^^^^^~09/01/1984~ -~12071~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~12071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12071~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~12071~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~12071~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~12071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12071~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~12071~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~12071~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~12071~^~417~^73.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12071~^~432~^73.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~12071~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12071~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12077~^~208~^576.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12077~^~268~^2410.^0^^~4~^^^^^^^^^^^ -~12077~^~301~^1.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~304~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~305~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~306~^1017.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~307~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12077~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12077~^~417~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12077~^~432~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12077~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12078~^~208~^659.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12078~^~268~^2757.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~301~^160.^7^5.^~1~^~A~^^^2^137.^181.^4^143.^175.^~2, 3~^~02/01/2003~ -~12078~^~304~^376.^7^3.^~1~^~A~^^^2^361.^389.^3^363.^389.^~2, 3~^~02/01/2003~ -~12078~^~305~^725.^7^5.^~1~^~A~^^^2^696.^738.^3^706.^743.^~2, 3~^~02/01/2003~ -~12078~^~306~^659.^7^8.^~1~^~A~^^^2^623.^682.^5^635.^681.^~2, 3~^~02/01/2003~ -~12078~^~307~^3.^7^0.^~1~^~A~^^^2^2.^5.^3^2.^3.^~1, 2, 3~^~02/01/2003~ -~12078~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12078~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12078~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12078~^~417~^22.^4^2.^~1~^~A~^^^1^15.^26.^3^14.^29.^~2, 3~^~02/01/2003~ -~12078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12078~^~432~^22.^4^2.^~1~^~A~^^^1^15.^26.^3^14.^29.^^~06/01/2006~ -~12078~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~12078~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12078~^~638~^6.^7^0.^~1~^~A~^^^2^6.^6.^1^1.^10.^~2~^~05/01/2011~ -~12078~^~639~^2.^7^0.^~1~^~A~^^^2^1.^2.^1^-2.^5.^~2~^~05/01/2011~ -~12078~^~641~^64.^7^1.^~1~^~A~^^^2^62.^70.^1^43.^85.^~2~^~04/01/2014~ -~12084~^~208~^612.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12084~^~268~^2561.^0^^~4~^^^^^^^^^^^ -~12084~^~301~^53.^4^1.^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~304~^237.^4^15.^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~305~^446.^4^37.^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~306~^421.^4^16.^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~307~^1.^4^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~318~^124.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12084~^~320~^6.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12084~^~417~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12084~^~432~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12085~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12085~^~268~^2402.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12085~^~301~^45.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~304~^260.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~305~^490.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~306~^565.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~307~^16.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12085~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12085~^~321~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~322~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12085~^~334~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~337~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~338~^23.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~417~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12085~^~432~^69.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~12085~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12085~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12085~^~636~^158.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12086~^~208~^580.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12086~^~268~^2426.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~301~^43.^8^0.^~1~^~A~^^^3^30.^52.^2^40.^45.^~2~^~04/01/2002~ -~12086~^~304~^273.^8^16.^~1~^~A~^^^3^251.^328.^2^202.^343.^~2~^~04/01/2002~ -~12086~^~305~^531.^8^37.^~1~^~A~^^^3^479.^649.^2^371.^691.^~2~^~04/01/2002~ -~12086~^~306~^632.^8^20.^~1~^~A~^^^3^592.^686.^2^545.^718.^~2~^~04/01/2002~ -~12086~^~307~^13.^3^2.^~1~^~A~^^^1^10.^18.^2^3.^23.^~4~^~04/01/2002~ -~12086~^~318~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~ -~12086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12086~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~ -~12086~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12086~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12086~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12086~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12086~^~338~^23.^8^1.^~1~^~AS~^^^2^18.^28.^6^18.^26.^~2, 3~^~04/01/2002~ -~12086~^~417~^25.^2^^~1~^~A~^^^2^24.^27.^^^^^~04/01/2002~ -~12086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12086~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12086~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12086~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~ -~12086~^~639~^10.^4^0.^~1~^~A~^^^1^9.^12.^3^7.^12.^~2, 3~^~05/01/2011~ -~12086~^~641~^119.^4^2.^~1~^~A~^^^1^114.^124.^3^111.^125.^~2, 3~^~05/01/2011~ -~12087~^~208~^553.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12087~^~268~^2314.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12087~^~301~^37.^2^^~1~^~A~^^^1^33.^42.^1^^^^~03/01/2002~ -~12087~^~304~^292.^2^^~1~^~A~^^^1^289.^295.^1^^^^~03/01/2002~ -~12087~^~305~^593.^2^^~1~^~A~^^^1^565.^621.^1^^^^~03/01/2002~ -~12087~^~306~^660.^2^^~1~^~A~^^^1^659.^660.^1^^^^~03/01/2002~ -~12087~^~307~^12.^2^^~1~^~A~^^^1^10.^15.^1^^^^~03/01/2002~ -~12087~^~318~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~12087~^~320~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~321~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~322~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12087~^~334~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~337~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~338~^22.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~417~^25.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~12087~^~432~^25.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~12087~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~12087~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12087~^~641~^113.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12088~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12088~^~268~^2456.^0^^~4~^^^^^^^^^^^ -~12088~^~301~^43.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~304~^258.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~305~^457.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~306~^546.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~307~^15.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12088~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12088~^~417~^68.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12088~^~432~^68.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12093~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12093~^~268~^937.^0^^~4~^^^^^^^^^^^ -~12093~^~301~^18.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~304~^84.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~305~^96.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~306~^447.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~307~^3.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~318~^202.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12093~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12093~^~417~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12093~^~432~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12093~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12094~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12094~^~268~^1519.^0^^~4~^^^^^^^^^^^ -~12094~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~304~^137.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~305~^155.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~306~^726.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~307~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~318~^328.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12094~^~320~^16.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12094~^~417~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12094~^~432~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12095~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12095~^~268~^640.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~12095~^~301~^12.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~305~^66.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~306~^306.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~307~^2.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~318~^138.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12095~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12095~^~417~^46.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12095~^~432~^46.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~12095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12096~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12096~^~268~^1000.^0^^~4~^^^^^^^^^^^ -~12096~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~304~^90.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~305~^102.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~306~^477.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~307~^4.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~318~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12096~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12096~^~417~^72.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12096~^~432~^72.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12097~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12097~^~268~^891.^0^^~4~^^^^^^^^^^^ -~12097~^~301~^27.^4^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~304~^32.^4^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~305~^93.^4^7.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~306~^518.^4^29.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~307~^3.^4^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~318~^28.^3^7.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12097~^~320~^1.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~12097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12097~^~417~^62.^3^4.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12097~^~432~^62.^3^4.^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12097~^~636~^22.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12098~^~268~^820.^0^^~4~^^^^^^^^^^^ -~12098~^~301~^19.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~304~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~305~^38.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~306~^484.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~307~^2.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~318~^26.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12098~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12098~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12098~^~432~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12099~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12099~^~268~^1565.^0^^~4~^^^^^^^^^^^ -~12099~^~301~^67.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~304~^74.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~305~^175.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~306~^986.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~307~^37.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12099~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12099~^~417~^109.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12099~^~432~^109.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12100~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12100~^~268~^1544.^0^^~4~^^^^^^^^^^^ -~12100~^~301~^64.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~304~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~305~^137.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~306~^991.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12100~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12100~^~417~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12100~^~432~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12101~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12101~^~268~^548.^0^^~4~^^^^^^^^^^^ -~12101~^~301~^46.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~305~^99.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~306~^715.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~307~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~318~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12101~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12101~^~417~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12101~^~432~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12104~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12104~^~268~^1481.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12104~^~301~^14.^5^2.^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~305~^113.^5^13.^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~306~^356.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~307~^20.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12104~^~321~^0.^0^^~4~^~BFFN~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12104~^~417~^26.^4^4.^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12104~^~432~^26.^4^4.^~1~^^^^^^^^^^^~11/01/2006~ -~12104~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12104~^~636~^47.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~208~^660.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~268~^2761.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12108~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~304~^90.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~305~^206.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~306~^543.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12108~^~320~^0.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~12108~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12108~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12108~^~432~^9.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~12108~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12108~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12109~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12109~^~268~^1908.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12109~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^8.^13.^~2, 3~^~04/01/2006~ -~12109~^~304~^51.^3^0.^~1~^~A~^^^1^50.^53.^2^47.^55.^~2, 3~^~04/01/2006~ -~12109~^~305~^100.^3^2.^~1~^~A~^^^1^94.^104.^2^87.^112.^~2, 3~^~04/01/2006~ -~12109~^~306~^361.^3^17.^~1~^~A~^^^1^326.^380.^2^285.^436.^~2, 3~^~04/01/2006~ -~12109~^~307~^285.^3^25.^~1~^~A~^^^1^234.^318.^2^173.^395.^~2, 3~^~04/01/2006~ -~12109~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12109~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12109~^~417~^3.^3^1.^~1~^~A~^^^1^2.^6.^2^-2.^9.^~2, 3~^~04/01/2006~ -~12109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~12109~^~432~^3.^3^1.^~1~^~A~^^^1^2.^6.^2^-2.^9.^~2, 3~^~04/01/2006~ -~12109~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12110~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12110~^~268~^1854.^0^^~4~^^^^^^^^^^^ -~12110~^~301~^14.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~304~^49.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~305~^103.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~306~^324.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~307~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12110~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12110~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12110~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12110~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12110~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12114~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12114~^~268~^2477.^0^^~4~^^^^^^^^^^^ -~12114~^~301~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~304~^92.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~305~^211.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~306~^554.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12114~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12114~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12114~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12115~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12115~^~268~^1381.^0^^~4~^^^^^^^^^^^ -~12115~^~301~^11.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~304~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~305~^122.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~306~^325.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~307~^4.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12115~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12115~^~417~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12115~^~432~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12115~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12116~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~268~^1494.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~301~^4.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~304~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12116~^~305~^22.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~306~^101.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~307~^36.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12116~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~321~^0.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12116~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12116~^~432~^14.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~12116~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12117~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~268~^962.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12117~^~301~^16.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~304~^37.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~305~^100.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~306~^263.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~307~^15.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12117~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12117~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12117~^~432~^16.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12117~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12117~^~636~^1.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12118~^~268~^824.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12118~^~301~^18.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~304~^46.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~305~^96.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~306~^220.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~307~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12118~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~12118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12118~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12118~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12118~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12119~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12119~^~268~^79.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12119~^~301~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~304~^25.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~305~^20.^3^4.^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~306~^250.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~307~^105.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12119~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12119~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12119~^~322~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12119~^~334~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12119~^~337~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12119~^~338~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12119~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12119~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12119~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12120~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~12120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~12120~^~268~^2629.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~301~^114.^4^1.^~1~^~A~^^^1^112.^117.^3^110.^117.^~4~^~12/01/2000~ -~12120~^~304~^163.^4^2.^~1~^~A~^^^1^159.^170.^3^155.^171.^~4~^~12/01/2000~ -~12120~^~305~^290.^4^5.^~1~^~A~^^^1^280.^300.^3^271.^308.^~4~^~12/01/2000~ -~12120~^~306~^680.^4^7.^~1~^~A~^^^1^668.^703.^3^654.^704.^~4~^~12/01/2000~ -~12120~^~307~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~4~^~12/01/2000~ -~12120~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~12120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12120~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~12120~^~321~^11.^5^10.^~1~^~A~^^^2^0.^21.^1^-119.^140.^~1, 2~^~12/01/2002~ -~12120~^~322~^3.^5^3.^~1~^~A~^^^2^0.^6.^1^-35.^41.^~2~^~12/01/2002~ -~12120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12120~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~ -~12120~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~ -~12120~^~338~^92.^4^9.^~1~^~A~^^^1^68.^115.^3^61.^122.^~2, 3~^~12/01/2002~ -~12120~^~417~^113.^4^1.^~1~^~A~^^^1^109.^116.^3^106.^118.^~4~^~12/01/2000~ -~12120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~12120~^~432~^113.^4^1.^~1~^~A~^^^1^109.^116.^3^106.^118.^^~03/01/2006~ -~12120~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12120~^~638~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^1.^1.^~1, 2, 3~^~12/01/2000~ -~12120~^~639~^7.^4^0.^~1~^~A~^^^1^6.^7.^3^6.^6.^~2, 3~^~05/01/2011~ -~12120~^~641~^102.^4^1.^~1~^~A~^^^1^99.^105.^3^97.^106.^~2, 3~^~05/01/2011~ -~12121~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~268~^2630.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~301~^149.^2^^~1~^~A~^^^1^147.^151.^^^^^~06/01/2001~ -~12121~^~304~^160.^2^^~1~^~A~^^^1^159.^161.^^^^^~06/01/2001~ -~12121~^~305~^310.^2^^~1~^~A~^^^1^310.^310.^^^^^~06/01/2001~ -~12121~^~306~^658.^2^^~1~^~A~^^^1^649.^667.^^^^^~06/01/2001~ -~12121~^~307~^0.^2^^~1~^~A~^^^1^0.^1.^^^^^~06/01/2001~ -~12121~^~318~^40.^1^^~1~^~AS~^^^^^^^^^^~06/01/2001~ -~12121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12121~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~12121~^~321~^23.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12121~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12121~^~417~^78.^2^^~1~^~A~^^^1^71.^85.^^^^^~06/01/2001~ -~12121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~12121~^~432~^78.^2^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12121~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2001~ -~12121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12121~^~636~^116.^2^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12121~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12121~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12121~^~641~^108.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12122~^~208~^646.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~268~^2703.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~301~^123.^4^3.^~1~^~A~^^^1^113.^130.^3^110.^134.^~4~^~12/01/2000~ -~12122~^~304~^173.^4^6.^~1~^~A~^^^1^155.^182.^3^153.^191.^~4~^~12/01/2000~ -~12122~^~305~^310.^4^8.^~1~^~A~^^^1^290.^330.^3^284.^335.^~4~^~12/01/2000~ -~12122~^~306~^755.^4^13.^~1~^~A~^^^1^728.^781.^3^710.^799.^~4~^~12/01/2000~ -~12122~^~307~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~4~^~12/01/2000~ -~12122~^~318~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12122~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12122~^~321~^36.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12122~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12122~^~417~^88.^4^5.^~1~^~A~^^^1^77.^102.^3^70.^104.^~4~^~12/01/2000~ -~12122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~12122~^~432~^88.^4^5.^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12122~^~636~^110.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12122~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12122~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12122~^~641~^103.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12127~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12127~^~268~^761.^0^^~4~^^^^^^^^^^^ -~12127~^~301~^2.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~305~^124.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~306~^510.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~307~^7.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~318~^558.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12127~^~320~^28.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12127~^~417~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12127~^~432~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12127~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12128~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12128~^~268~^1456.^0^^~4~^^^^^^^^^^^ -~12128~^~301~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~304~^53.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~306~^998.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~307~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~318~^1091.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12128~^~320~^55.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12128~^~417~^106.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12128~^~432~^106.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12128~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12129~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12129~^~268~^464.^0^^~4~^^^^^^^^^^^ -~12129~^~301~^4.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~304~^16.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~305~^54.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~306~^180.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~307~^307.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~318~^337.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12129~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12129~^~417~^33.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12129~^~432~^33.^0^^~4~^^^^^^^^^^^~11/01/2000~ -~12129~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12129~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12130~^~208~^657.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12130~^~268~^2749.^0^^~4~^^^^^^^^^^^ -~12130~^~301~^61.^8^4.^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~304~^173.^8^7.^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~305~^336.^8^18.^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~306~^436.^8^26.^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~307~^1.^8^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~318~^131.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12130~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12130~^~417~^40.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12130~^~432~^40.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12131~^~208~^718.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12131~^~268~^3004.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~301~^85.^3^11.^~1~^~A~^^^1^78.^109.^2^36.^133.^~4~^~12/01/2000~ -~12131~^~304~^130.^3^50.^~1~^~A~^^^1^114.^246.^2^-88.^348.^~4~^~12/01/2000~ -~12131~^~305~^188.^3^11.^~1~^~A~^^^1^170.^203.^2^137.^237.^~4~^~12/01/2000~ -~12131~^~306~^368.^3^10.^~1~^~A~^^^1^353.^382.^2^324.^411.^~4~^~12/01/2000~ -~12131~^~307~^5.^3^1.^~1~^~A~^^^1^3.^6.^2^0.^9.^~4~^~12/01/2000~ -~12131~^~318~^0.^0^^~4~^~BFZN~^~12132~^^^^^^^^^~05/01/2001~ -~12131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12131~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~12131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12131~^~417~^11.^3^1.^~1~^~A~^^^1^9.^13.^2^5.^17.^~4~^~12/01/2000~ -~12131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12131~^~432~^11.^3^1.^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12131~^~636~^116.^1^^~1~^~A~^^^^^^^^^^~07/01/1999~ -~12131~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12131~^~639~^8.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12131~^~641~^108.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12132~^~208~^718.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12132~^~268~^3005.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12132~^~301~^70.^4^14.^~1~^~A~^^^1^55.^112.^3^23.^116.^~4~^~12/01/2000~ -~12132~^~304~^118.^4^2.^~1~^~A~^^^1^114.^122.^3^111.^125.^~4~^~12/01/2000~ -~12132~^~305~^198.^4^6.^~1~^~A~^^^1^188.^214.^3^178.^218.^~4~^~12/01/2000~ -~12132~^~306~^363.^4^14.^~1~^~A~^^^1^343.^405.^3^318.^407.^~4~^~12/01/2000~ -~12132~^~307~^4.^4^0.^~1~^~A~^^^1^3.^6.^3^2.^6.^~4~^~12/01/2000~ -~12132~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12132~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12132~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12132~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~417~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^~4~^~12/01/2000~ -~12132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~12132~^~432~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^^~04/01/2006~ -~12132~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~12132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12132~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2000~ -~12132~^~639~^10.^4^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~05/01/2011~ -~12132~^~641~^145.^4^2.^~1~^~A~^^^1^141.^151.^3^137.^151.^~2, 3~^~05/01/2011~ -~12135~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~12135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~12135~^~268~^2538.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~301~^87.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~304~^227.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~305~^438.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~306~^643.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12135~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~338~^19.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~417~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12135~^~432~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12136~^~208~^572.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12136~^~268~^2395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12136~^~301~^129.^2^^~1~^~A~^^^1^122.^135.^1^^^^~06/01/2015~ -~12136~^~304~^209.^2^^~1~^~A~^^^1^206.^212.^1^^^^~06/01/2015~ -~12136~^~305~^493.^2^^~1~^~A~^^^1^480.^506.^1^^^^~06/01/2015~ -~12136~^~306~^758.^2^^~1~^~A~^^^1^742.^774.^1^^^^~06/01/2015~ -~12136~^~307~^232.^2^^~1~^~A~^^^1^219.^245.^1^^^^~06/01/2015~ -~12136~^~318~^90.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~12136~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~12136~^~321~^54.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~12136~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~12136~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~12136~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~12136~^~338~^233.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~12136~^~417~^60.^2^^~1~^~A~^^^1^60.^60.^1^^^^~06/01/2015~ -~12136~^~432~^60.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12137~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~05/01/2011~ -~12137~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~05/01/2011~ -~12137~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~05/01/2011~ -~12137~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~05/01/2011~ -~12137~^~307~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12137~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12137~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~417~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12137~^~432~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12137~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12137~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12138~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12138~^~268~^2573.^0^^~4~^^^^^^^^^^^ -~12138~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~304~^251.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~305~^449.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~307~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~318~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12138~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12138~^~417~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12138~^~432~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12140~^~208~^622.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12140~^~268~^2602.^0^^~4~^^^^^^^^^^^ -~12140~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~304~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~305~^371.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~306~^318.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~307~^505.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~318~^1.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12140~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12140~^~417~^142.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12140~^~432~^142.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12141~^~208~^608.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12141~^~268~^2544.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12141~^~301~^106.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~304~^202.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~305~^412.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~306~^585.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~307~^113.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~417~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12141~^~432~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12142~^~208~^691.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12142~^~268~^2889.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~301~^70.^3^4.^~1~^~A~^^^1^65.^80.^2^49.^90.^~4~^~01/01/2001~ -~12142~^~304~^121.^3^4.^~1~^~A~^^^1^113.^127.^2^103.^138.^~4~^~01/01/2001~ -~12142~^~305~^277.^3^17.^~1~^~A~^^^1^250.^310.^2^200.^352.^~4~^~01/01/2001~ -~12142~^~306~^410.^3^17.^~1~^~A~^^^1^387.^444.^2^336.^484.^~4~^~01/01/2001~ -~12142~^~307~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~01/01/2001~ -~12142~^~318~^56.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12142~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12142~^~321~^29.^9^1.^~1~^~A~^^^3^6.^46.^1^15.^43.^~1, 2~^~09/01/2002~ -~12142~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~ -~12142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12142~^~334~^9.^8^1.^~1~^~A~^^^2^0.^14.^3^3.^14.^~1, 2, 3~^~09/01/2002~ -~12142~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12142~^~338~^17.^8^1.^~1~^~A~^^^2^10.^23.^6^13.^21.^~2, 3~^~09/01/2002~ -~12142~^~417~^22.^3^3.^~1~^~A~^^^1^14.^27.^2^5.^38.^~4~^~01/01/2001~ -~12142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12142~^~432~^22.^3^3.^~1~^~A~^^^1^14.^27.^2^5.^38.^^~03/01/2006~ -~12142~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~12142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12142~^~638~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~01/01/2001~ -~12142~^~639~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~2, 3~^~05/01/2011~ -~12142~^~641~^117.^3^0.^~1~^~A~^^^1^117.^117.^2^116.^118.^~2, 3~^~05/01/2011~ -~12143~^~208~^710.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~268~^2969.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~301~^72.^3^10.^~1~^~A~^^^1^62.^93.^2^27.^116.^~4~^~01/01/2001~ -~12143~^~304~^132.^3^6.^~1~^~A~^^^1^121.^142.^2^106.^158.^~4~^~01/01/2001~ -~12143~^~305~^293.^3^20.^~1~^~A~^^^1^260.^330.^2^206.^380.^~4~^~01/01/2001~ -~12143~^~306~^424.^3^32.^~1~^~A~^^^1^390.^489.^2^284.^563.^~4~^~01/01/2001~ -~12143~^~307~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~4~^~01/01/2001~ -~12143~^~318~^140.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~ -~12143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12143~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~12143~^~321~^84.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12143~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12143~^~417~^16.^3^4.^~1~^~A~^^^1^9.^25.^2^-4.^35.^~4~^~01/01/2001~ -~12143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12143~^~432~^16.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12143~^~636~^85.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12143~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~639~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~641~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~208~^715.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~268~^2990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~301~^67.^3^6.^~1~^~A~^^^1^60.^80.^2^40.^94.^~4~^~01/01/2001~ -~12144~^~304~^121.^3^4.^~1~^~A~^^^1^114.^129.^2^102.^139.^~4~^~01/01/2001~ -~12144~^~305~^263.^3^18.^~1~^~A~^^^1^240.^300.^2^183.^343.^~4~^~01/01/2001~ -~12144~^~306~^392.^3^6.^~1~^~A~^^^1^380.^402.^2^364.^420.^~4~^~01/01/2001~ -~12144~^~307~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^-1.^3.^~4~^~01/01/2001~ -~12144~^~318~^104.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~ -~12144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12144~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~12144~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12144~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12144~^~417~^15.^3^1.^~1~^~A~^^^1^13.^18.^2^8.^20.^~4~^~01/01/2001~ -~12144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12144~^~432~^15.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12144~^~636~^108.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12144~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~641~^96.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12145~^~208~^719.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12145~^~268~^3008.^0^^~4~^^^^^^^^^^^~08/01/2009~ -~12145~^~301~^145.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~304~^302.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~305~^575.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~306~^507.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~318~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12145~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12145~^~417~^60.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12145~^~432~^60.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~12145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12147~^~208~^673.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12147~^~268~^2816.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~301~^16.^8^0.^~1~^~A~^^^2^14.^23.^3^13.^19.^~2, 3~^~02/01/2003~ -~12147~^~304~^251.^8^2.^~1~^~A~^^^2^236.^263.^5^243.^258.^~2, 3~^~02/01/2003~ -~12147~^~305~^575.^8^9.^~1~^~A~^^^2^530.^630.^6^552.^598.^~2, 3~^~02/01/2003~ -~12147~^~306~^597.^8^11.^~1~^~A~^^^2^518.^696.^5^567.^625.^~2, 3~^~02/01/2003~ -~12147~^~307~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~318~^29.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12147~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~321~^17.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~ -~12147~^~322~^0.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~ -~12147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12147~^~334~^0.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~ -~12147~^~337~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~02/01/2003~ -~12147~^~338~^9.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~02/01/2003~ -~12147~^~417~^34.^6^0.^~1~^~A~^^^2^31.^36.^3^31.^36.^~2, 3~^~10/01/2003~ -~12147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12147~^~432~^34.^6^0.^~1~^~A~^^^2^31.^36.^3^31.^36.^^~04/01/2006~ -~12147~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12147~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~ -~12147~^~639~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^19.^20.^~2, 3~^~05/01/2011~ -~12147~^~641~^132.^4^0.^~1~^~A~^^^1^131.^133.^3^130.^133.^~2, 3~^~05/01/2011~ -~12149~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~07/01/1995~ -~12149~^~268~^2632.^0^^~4~^^^^^^^^^^^ -~12149~^~301~^8.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~304~^234.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~305~^35.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~306~^628.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~307~^72.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~318~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12149~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12149~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12149~^~432~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12151~^~208~^560.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12151~^~268~^2342.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~301~^105.^9^2.^~1~^~A~^^^3^100.^123.^2^94.^115.^~2~^~03/01/2009~ -~12151~^~304~^121.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~305~^490.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~306~^1025.^8^64.^~1~^~A~^^^2^881.^1090.^1^203.^1846.^~2~^~03/01/2001~ -~12151~^~307~^1.^2^^~1~^~A~^^^2^1.^2.^1^^^~1~^~03/01/2009~ -~12151~^~318~^516.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~12151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12151~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~12151~^~321~^305.^4^54.^~1~^~A~^^^4^166.^428.^3^132.^477.^~2~^~04/01/2015~ -~12151~^~322~^10.^3^10.^~1~^~A~^^^3^0.^30.^2^-33.^53.^~2~^~04/01/2015~ -~12151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12151~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~338~^2903.^2^^~1~^~A~^^^2^1405.^4401.^1^^^^~04/01/2015~ -~12151~^~417~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12151~^~432~^51.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12151~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12151~^~636~^214.^1^^~1~^^^^^^^^^^^~06/01/1999~ -~12151~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12151~^~639~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12151~^~641~^198.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12152~^~208~^572.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12152~^~268~^2392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~301~^107.^13^5.^~1~^~A~^^^3^98.^127.^2^82.^131.^~2~^~05/01/2010~ -~12152~^~304~^109.^5^11.^~1~^~A~^^^2^98.^123.^1^-31.^249.^~2~^~05/01/2010~ -~12152~^~305~^469.^5^16.^~1~^~A~^^^2^452.^500.^1^258.^678.^~2~^~05/01/2010~ -~12152~^~306~^1007.^12^39.^~1~^~A~^^^3^875.^1090.^2^837.^1177.^~2~^~05/01/2010~ -~12152~^~307~^6.^5^3.^~1~^~A~^^^2^3.^19.^1^-43.^56.^~1, 2~^~05/01/2010~ -~12152~^~318~^266.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~12152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12152~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~12152~^~321~^159.^15^44.^~1~^~A~^^^5^60.^337.^4^35.^283.^~2~^~04/01/2015~ -~12152~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~ -~12152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12152~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~ -~12152~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~ -~12152~^~338~^1160.^9^48.^~1~^~A~^^^3^1070.^1269.^2^951.^1368.^~2~^~05/01/2010~ -~12152~^~417~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^~2~^~05/01/2010~ -~12152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12152~^~432~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^^~05/01/2010~ -~12152~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12152~^~638~^2.^8^0.^~1~^~A~^^^3^2.^3.^2^1.^3.^~1, 2~^~04/01/2015~ -~12152~^~639~^10.^8^0.^~1~^~A~^^^3^10.^11.^2^9.^11.^~2~^~05/01/2010~ -~12152~^~641~^210.^8^5.^~1~^~A~^^^3^202.^220.^2^188.^232.^~2~^~08/01/2011~ -~12154~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12154~^~268~^2590.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~301~^61.^16^2.^~1~^~A~^^^2^58.^64.^1^25.^96.^~2~^~06/01/2002~ -~12154~^~304~^201.^16^1.^~1~^~A~^^^2^200.^202.^1^188.^213.^~2~^~06/01/2002~ -~12154~^~305~^513.^16^49.^~1~^~A~^^^2^464.^562.^1^-109.^1135.^~2~^~06/01/2002~ -~12154~^~306~^523.^16^1.^~1~^~A~^^^2^522.^524.^1^510.^535.^~2~^~06/01/2002~ -~12154~^~307~^2.^13^1.^~1~^~A~^^^2^1.^3.^1^-11.^15.^~2~^~06/01/2002~ -~12154~^~318~^40.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12154~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~321~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12154~^~334~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~ -~12154~^~337~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~ -~12154~^~338~^9.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~ -~12154~^~417~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12154~^~432~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~12154~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~12154~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~638~^1.^4^0.^~1~^~A~^^^2^0.^1.^1^-3.^4.^~1, 2~^~02/01/2011~ -~12154~^~639~^5.^4^0.^~1~^~A~^^^2^4.^5.^1^1.^7.^~2~^~06/01/2002~ -~12154~^~641~^115.^4^0.^~1~^~A~^^^2^114.^116.^1^104.^126.^~2~^~02/01/2014~ -~12155~^~208~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1999~ -~12155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1999~ -~12155~^~268~^2738.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~301~^98.^7^3.^~1~^~A~^^^1^86.^110.^6^90.^104.^~4~^~03/01/2001~ -~12155~^~304~^158.^7^1.^~1~^~A~^^^1^154.^164.^6^154.^160.^~4~^~12/01/2000~ -~12155~^~305~^346.^7^3.^~1~^~A~^^^1^340.^360.^6^336.^354.^~4~^~12/01/2000~ -~12155~^~306~^441.^7^6.^~1~^~A~^^^1^415.^470.^6^425.^456.^~4~^~12/01/2000~ -~12155~^~307~^2.^7^0.^~1~^~A~^^^1^0.^7.^6^0.^4.^~4~^~12/01/2000~ -~12155~^~318~^20.^6^12.^~1~^~A~^^^3^0.^77.^5^-11.^52.^~4~^~10/01/2002~ -~12155~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12155~^~320~^1.^6^0.^~1~^~A~^^^3^0.^4.^5^0.^2.^~4~^~10/01/2002~ -~12155~^~321~^12.^6^7.^~1~^~A~^^^3^0.^46.^5^-6.^31.^~1, 4~^~10/01/2002~ -~12155~^~322~^0.^6^0.^~1~^~A~^^^3^0.^0.^5^0.^0.^~1, 4~^~10/01/2002~ -~12155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12155~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~12155~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~ -~12155~^~338~^9.^3^0.^~1~^~A~^^^2^8.^11.^1^6.^11.^~1, 2, 3~^~10/01/2002~ -~12155~^~417~^98.^7^3.^~1~^~A~^^^1^81.^113.^6^88.^107.^~4~^~12/01/2000~ -~12155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~12155~^~432~^98.^7^3.^~1~^~A~^^^1^81.^113.^6^88.^107.^^~03/01/2006~ -~12155~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12155~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~ -~12155~^~639~^5.^4^0.^~1~^~A~^^^1^5.^5.^3^4.^5.^~2, 3~^~05/01/2011~ -~12155~^~641~^87.^4^3.^~1~^~A~^^^1^82.^95.^3^77.^96.^~2, 3~^~05/01/2011~ -~12156~^~208~^500.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~268~^2092.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~306~^232.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~307~^446.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12157~^~208~^643.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~12157~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~268~^2690.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~12157~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~304~^151.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~305~^329.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~306~^459.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~307~^643.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~12157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~12157~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~12157~^~321~^11.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~322~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~334~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~337~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~338~^8.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~417~^91.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~12157~^~432~^91.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~ -~12157~^~435~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~12157~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12158~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12158~^~268~^866.^0^^~4~^^^^^^^^^^^ -~12158~^~301~^86.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~304~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~306~^1082.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~307~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~318~^294.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12158~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12158~^~417~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12158~^~432~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12160~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12160~^~268~^2117.^0^^~4~^^^^^^^^^^^ -~12160~^~301~^100.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~304~^440.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~305~^800.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~306~^1350.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~307~^25.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~318~^442.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12160~^~320~^22.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12160~^~417~^233.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12160~^~432~^233.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~435~^233.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12163~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12163~^~268~^1866.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~12163~^~301~^55.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~304~^262.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~305~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~306~^919.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~307~^18.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~318~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12163~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12163~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12163~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~12163~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12166~^~208~^595.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12166~^~268~^2489.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12166~^~301~^426.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~304~^95.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~305~^732.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~306~^414.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~307~^115.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12166~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12166~^~321~^40.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~322~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12166~^~334~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~337~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~338~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12166~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12166~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12166~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12167~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12167~^~268~^1025.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12167~^~301~^29.^4^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~304~^33.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~305~^107.^4^13.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~306~^592.^3^15.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~307~^2.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~318~^24.^3^9.^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12167~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12167~^~321~^14.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~12167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12167~^~337~^0.^0^^~4~^~BFSN~^~12635~^^^^^^^^^~02/01/2003~ -~12167~^~338~^13.^0^^~4~^~BFSN~^~12635~^^^^^^^^^~02/01/2003~ -~12167~^~417~^70.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12167~^~432~^70.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~12167~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12169~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12169~^~268~^2454.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12169~^~301~^960.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~304~^362.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~305~^659.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~306~^582.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~307~^12.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~318~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12169~^~320~^3.^0^^~1~^^^^^^^^^^^~05/01/2009~ -~12169~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12169~^~417~^100.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12169~^~432~^100.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12169~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12169~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12170~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12170~^~268~^2201.^0^^~4~^^^^^^^^^^^ -~12170~^~301~^159.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~304~^361.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~305~^807.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~306~^423.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~307~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12170~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12170~^~417~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12170~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12170~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12171~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12171~^~268~^2540.^0^^~4~^^^^^^^^^^^ -~12171~^~301~^141.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~304~^353.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~305~^790.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~306~^459.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~307~^1.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12171~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12171~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12171~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12171~^~432~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12171~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12174~^~208~^557.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12174~^~268~^2330.^0^^~4~^^^^^^^^^^^ -~12174~^~301~^54.^10^7.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~304~^515.^6^24.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~305~^755.^10^37.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~306~^648.^6^15.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~307~^99.^6^88.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12174~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~12174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12174~^~417~^58.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12174~^~432~^58.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12175~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12175~^~268~^1506.^0^^~4~^^^^^^^^^^^ -~12175~^~301~^72.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~304~^115.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~305~^169.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~306~^768.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~307~^34.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~318~^86.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12175~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12175~^~417~^109.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12175~^~432~^109.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12175~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12175~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12176~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12176~^~268~^845.^0^^~4~^^^^^^^^^^^ -~12176~^~301~^4.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~304~^32.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~305~^59.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~306~^232.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~307~^12.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12176~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12176~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12176~^~432~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12177~^~208~^684.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12177~^~268~^2862.^0^^~4~^^^^^^^^^^^ -~12177~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~304~^92.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~305~^209.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~306~^551.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12177~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12177~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12177~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12179~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~268~^2096.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12179~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~304~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~305~^107.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~306~^337.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~307~^262.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12179~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12179~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12179~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12179~^~432~^8.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12179~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12179~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12193~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12193~^~268~^1331.^0^^~4~^^^^^^^^^^^ -~12193~^~301~^1633.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~304~^314.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~305~^6.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~306~^2130.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~307~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~318~^63.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12193~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12193~^~417~^95.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12193~^~432~^95.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12193~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12195~^~208~^614.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~268~^2568.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~301~^347.^8^12.^~1~^~A~^^^1^279.^384.^7^317.^377.^~4~^~02/01/2010~ -~12195~^~304~^279.^8^6.^~1~^~A~^^^1^247.^310.^7^263.^293.^~4~^~02/01/2010~ -~12195~^~305~^508.^8^10.^~1~^~A~^^^1^442.^547.^7^482.^533.^~4~^~02/01/2010~ -~12195~^~306~^748.^8^21.^~1~^~A~^^^1^678.^839.^7^698.^798.^~4~^~02/01/2010~ -~12195~^~307~^7.^8^0.^~1~^~A~^^^1^7.^7.^7^7.^7.^~1, 4~^~05/01/2010~ -~12195~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12195~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~321~^1.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~322~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12195~^~334~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~337~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~338~^1.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~417~^53.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12195~^~432~^53.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2010~ -~12195~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12195~^~636~^139.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~12195~^~638~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~1, 4~^~05/01/2010~ -~12195~^~639~^6.^8^0.^~1~^~A~^^^1^5.^8.^7^4.^6.^~4~^~02/01/2010~ -~12195~^~641~^131.^8^3.^~1~^~A~^^^1^116.^147.^7^122.^138.^~4~^~02/01/2010~ -~12198~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12198~^~268~^2385.^0^^~4~^^^^^^^^^^^ -~12198~^~301~^420.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~304~^96.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~305~^752.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~306~^414.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~307~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12198~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12198~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12198~^~432~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12198~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12200~^~208~^647.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12200~^~268~^2707.^0^^~4~^^^^^^^^^^^ -~12200~^~301~^22.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~304~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~305~^366.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~306~^320.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~307~^91.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~318~^1.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12200~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12200~^~417~^125.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12200~^~432~^125.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12201~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~268~^2640.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12201~^~301~^60.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~304~^345.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~305~^667.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~318~^66.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12201~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12201~^~321~^40.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~12201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12201~^~417~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12201~^~432~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12201~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12201~^~638~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12201~^~639~^53.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12201~^~641~^232.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12202~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12202~^~268~^644.^0^^~4~^^^^^^^^^^^ -~12202~^~301~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~304~^49.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~305~^72.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~306~^329.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~307~^14.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~318~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12202~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12202~^~417~^47.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12202~^~432~^47.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12202~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12203~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12203~^~268~^234.^0^^~4~^^^^^^^^^^^ -~12203~^~301~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~304~^18.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~305~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~306~^119.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~307~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~318~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12203~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12203~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12203~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12203~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12204~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12204~^~268~^841.^0^^~4~^^^^^^^^^^^ -~12204~^~301~^35.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~304~^64.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~305~^93.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~306~^427.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~307~^19.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~318~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12204~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12204~^~417~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12204~^~432~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12204~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12205~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12205~^~268~^372.^0^^~4~^^^^^^^^^^^ -~12205~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~304~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~305~^168.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~306~^367.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~307~^1.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~318~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12205~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12205~^~417~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12205~^~432~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12206~^~208~^594.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12206~^~268~^2485.^0^^~4~^^^^^^^^^^^ -~12206~^~301~^263.^3^3.^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~304~^240.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~305~^400.^3^5.^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~306~^560.^3^0.^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~307~^130.^7^8.^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12206~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~12206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12206~^~417~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12206~^~432~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12220~^~208~^534.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~12220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~12220~^~268~^2234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~301~^255.^7^35.^~1~^~A~^^^3^200.^340.^2^102.^408.^~2~^~03/01/2005~ -~12220~^~304~^392.^7^20.^~1~^~A~^^^3^354.^431.^2^305.^478.^~2~^~03/01/2005~ -~12220~^~305~^642.^3^20.^~1~^~A~^^^2^603.^722.^1^384.^899.^~2~^~03/01/2005~ -~12220~^~306~^813.^7^9.^~1~^~A~^^^3^673.^1004.^2^772.^853.^~2~^~03/01/2005~ -~12220~^~307~^30.^7^3.^~1~^~A~^^^3^21.^45.^2^12.^46.^~2~^~03/01/2005~ -~12220~^~318~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~03/01/2005~ -~12220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12220~^~320~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~03/01/2005~ -~12220~^~321~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2005~ -~12220~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2005~ -~12220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12220~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2005~ -~12220~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2005~ -~12220~^~338~^651.^9^52.^~1~^~A~^^^1^500.^970.^8^529.^772.^~4~^~03/01/2003~ -~12220~^~417~^87.^3^24.^~1~^~A~^^^2^35.^112.^1^-230.^404.^~2~^~03/01/2005~ -~12220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12220~^~432~^87.^3^24.^~1~^~A~^^^2^35.^112.^1^-230.^404.^^~11/01/2006~ -~12220~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~12220~^~638~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~05/01/2011~ -~12220~^~639~^45.^2^^~1~^~A~^^^1^40.^50.^1^^^^~05/01/2011~ -~12220~^~641~^90.^2^^~1~^~A~^^^1^84.^96.^1^^^^~05/01/2011~ -~12516~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12516~^~268~^2401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~301~^52.^2^^~1~^~A~^^^2^45.^59.^^^^^~04/01/2009~ -~12516~^~304~^550.^2^^~1~^~A~^^^2^544.^557.^^^^^~04/01/2009~ -~12516~^~305~^1174.^2^^~1~^~A~^^^2^1170.^1179.^^^^^~04/01/2009~ -~12516~^~306~^788.^2^^~1~^~A~^^^2^786.^789.^^^^^~04/01/2009~ -~12516~^~307~^256.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12516~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12516~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~338~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~417~^57.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12516~^~432~^57.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~12516~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12516~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~641~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12529~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12529~^~268~^2372.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12529~^~301~^131.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~307~^588.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12529~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12529~^~321~^40.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~322~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12529~^~334~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~337~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~338~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~417~^96.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12529~^~432~^96.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12529~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12529~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12536~^~208~^546.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~268~^2285.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12536~^~301~^70.^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~304~^129.^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~305~^1155.^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~306~^850.^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~307~^6008.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12536~^~318~^9.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~320~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~321~^5.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~322~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~334~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~417~^237.^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~432~^237.^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12536~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12537~^~208~^582.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12537~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12537~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12537~^~268~^2435.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12537~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~305~^1155.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~306~^850.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~307~^655.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12537~^~318~^9.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~ -~12537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12537~^~320~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~ -~12537~^~321~^5.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~ -~12537~^~322~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12537~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12537~^~334~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12537~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12537~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12537~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12537~^~432~^237.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~12537~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12537~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12538~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12538~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~12538~^~268~^2477.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~301~^87.^2^^~1~^~A~^^^2^85.^88.^^^^^~03/01/2004~ -~12538~^~304~^127.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~305~^1139.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~306~^483.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~307~^303.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~12538~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~12538~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~12538~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~12538~^~321~^5.^3^^~1~^~A~^^^2^0.^27.^^^^~2~^~03/01/2004~ -~12538~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12538~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12538~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12538~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12538~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12538~^~417~^234.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12538~^~432~^234.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~12538~^~435~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~601~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~03/01/2004~ -~12539~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12539~^~268~^2590.^0^^~4~^^^^^^^^^^^ -~12539~^~301~^57.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~305~^1158.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~306~^491.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~307~^613.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12539~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~12539~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12539~^~417~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12539~^~432~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~435~^238.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~12539~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12540~^~208~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12540~^~268~^2581.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12540~^~301~^64.^3^2.^~1~^~A~^^^1^61.^70.^2^52.^75.^~2, 3~^~02/01/2010~ -~12540~^~304~^311.^3^3.^~1~^~A~^^^1^307.^318.^2^296.^325.^~2, 3~^~02/01/2010~ -~12540~^~305~^666.^3^5.^~1~^~A~^^^1^658.^677.^2^641.^690.^~2, 3~^~02/01/2010~ -~12540~^~306~^576.^3^0.^~1~^~A~^^^1^576.^576.^2^574.^576.^~2, 3~^~02/01/2010~ -~12540~^~307~^331.^3^19.^~1~^~A~^^^1^295.^360.^2^248.^412.^~2, 3~^~02/01/2010~ -~12540~^~318~^52.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~12540~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12540~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12540~^~417~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~12540~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12540~^~432~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~12540~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12540~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~638~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^16.^20.^~2, 3~^~02/01/2010~ -~12540~^~639~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^23.^~2, 3~^~02/01/2010~ -~12540~^~641~^170.^3^3.^~1~^~A~^^^1^163.^175.^2^154.^184.^~2, 3~^~02/01/2010~ -~12563~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12563~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12563~^~268~^2502.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~301~^268.^22^4.^~1~^~A~^^^3^215.^343.^2^246.^289.^~2~^~04/01/2013~ -~12563~^~304~^279.^21^3.^~1~^~A~^^^3^250.^297.^2^264.^292.^~2~^~04/01/2013~ -~12563~^~305~^471.^21^9.^~1~^~A~^^^3^371.^564.^2^430.^511.^~2~^~04/01/2013~ -~12563~^~306~^713.^21^11.^~1~^~A~^^^3^558.^854.^2^663.^762.^~2~^~04/01/2013~ -~12563~^~307~^234.^13^18.^~1~^~A~^^^1^55.^552.^6^188.^279.^~2, 3~^~10/01/2016~ -~12563~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~12563~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12563~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~12563~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12563~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12563~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12563~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12563~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12563~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12563~^~417~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^~2~^~04/01/2013~ -~12563~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12563~^~432~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^^~04/01/2013~ -~12563~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~601~^0.^1^^~1~^~A~^^^1^0.^1.^11^^^~1~^~04/01/2013~ -~12563~^~638~^4.^16^0.^~1~^~A~^^^3^2.^6.^2^3.^4.^~2~^~05/01/2010~ -~12563~^~639~^4.^16^0.^~1~^~A~^^^3^3.^7.^2^1.^7.^~2~^~05/01/2010~ -~12563~^~641~^122.^16^6.^~1~^~A~^^^3^94.^190.^2^96.^148.^~2~^~04/01/2013~ -~12565~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12565~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~ -~12565~^~268~^2541.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~01/01/2001~ -~12565~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~01/01/2001~ -~12565~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~01/01/2001~ -~12565~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~01/01/2001~ -~12565~^~307~^339.^528^^~1~^~A~^^^^^^^^^^~08/01/1999~ -~12565~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~05/01/2001~ -~12565~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12565~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12565~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12565~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12565~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12565~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12565~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12565~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~01/01/2001~ -~12565~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12565~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~11/01/2006~ -~12565~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12565~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12565~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12565~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12565~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12567~^~208~^607.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~268~^2540.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~301~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~304~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~306~^679.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~307~^548.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12585~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12585~^~268~^2402.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~12585~^~301~^45.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~304~^260.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~305~^490.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~306~^565.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~307~^640.^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12585~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12585~^~321~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~322~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12585~^~334~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~337~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~338~^23.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~417~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12585~^~432~^69.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~12585~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12585~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12585~^~636~^158.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12586~^~208~^581.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12586~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12586~^~268~^2431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~301~^43.^8^0.^~1~^~A~^^^3^30.^52.^2^40.^45.^~2~^~04/01/2002~ -~12586~^~304~^273.^8^16.^~1~^~A~^^^3^251.^328.^2^202.^343.^~2~^~04/01/2002~ -~12586~^~305~^531.^8^37.^~1~^~A~^^^3^479.^649.^2^371.^691.^~2~^~04/01/2002~ -~12586~^~306~^632.^8^20.^~1~^~A~^^^3^592.^686.^2^545.^718.^~2~^~04/01/2002~ -~12586~^~307~^308.^6^30.^~1~^~A~^^^4^242.^499.^3^211.^405.^~2~^~04/01/2002~ -~12586~^~318~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~ -~12586~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12586~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~ -~12586~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12586~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12586~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12586~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12586~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~ -~12586~^~338~^23.^8^1.^~1~^~AS~^^^2^18.^28.^6^18.^26.^~2, 3~^~04/01/2002~ -~12586~^~417~^25.^2^^~1~^~A~^^^2^24.^27.^^^^^~04/01/2002~ -~12586~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12586~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12586~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12586~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~ -~12586~^~639~^10.^4^0.^~1~^~A~^^^1^9.^12.^3^7.^12.^~2, 3~^~05/01/2011~ -~12586~^~641~^119.^4^2.^~1~^~A~^^^1^114.^124.^3^111.^125.^~2, 3~^~05/01/2011~ -~12588~^~208~^609.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~12588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~12588~^~268~^2549.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12588~^~301~^61.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~304~^206.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~305~^388.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~306~^447.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~307~^295.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12588~^~321~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~ -~12588~^~322~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~ -~12588~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12588~^~334~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~ -~12588~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~12588~^~338~^18.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12588~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12588~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12632~^~208~^716.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~12632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~12632~^~268~^2996.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~301~^70.^4^14.^~1~^~A~^^^1^55.^112.^3^23.^116.^~4~^~12/01/2000~ -~12632~^~304~^118.^4^2.^~1~^~A~^^^1^114.^122.^3^111.^125.^~4~^~12/01/2000~ -~12632~^~305~^198.^4^6.^~1~^~A~^^^1^188.^214.^3^178.^218.^~4~^~12/01/2000~ -~12632~^~306~^363.^4^14.^~1~^~A~^^^1^343.^405.^3^318.^407.^~4~^~12/01/2000~ -~12632~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12632~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~12632~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12632~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~12632~^~321~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~ -~12632~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~ -~12632~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12632~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12632~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12632~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~ -~12632~^~417~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^~4~^~12/01/2000~ -~12632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~12632~^~432~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^^~10/01/2006~ -~12632~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12632~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2000~ -~12632~^~639~^10.^4^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~05/01/2011~ -~12632~^~641~^145.^4^2.^~1~^~A~^^^1^141.^151.^3^137.^151.^~2, 3~^~05/01/2011~ -~12635~^~208~^594.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12635~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12635~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12635~^~268~^2485.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12635~^~301~^70.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~304~^225.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~305~^435.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~306~^693.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12635~^~307~^345.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12635~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12635~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12635~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~338~^21.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12635~^~417~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12635~^~432~^50.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~12635~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12635~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12637~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12637~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12637~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~05/01/2011~ -~12637~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~05/01/2011~ -~12637~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~05/01/2011~ -~12637~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~05/01/2011~ -~12637~^~307~^273.^10^10.^~1~^~A~^^^1^219.^338.^9^248.^297.^~2, 3~^~05/01/2011~ -~12637~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~12637~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12637~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~12637~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~12637~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~12637~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12637~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~12637~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12637~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12637~^~417~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12637~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12637~^~432~^83.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~12637~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12637~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12638~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12638~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12638~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12638~^~268~^2573.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~12638~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~304~^251.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~305~^449.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~307~^306.^3^43.^~8~^~LC~^^^1^258.^393.^2^119.^493.^~4~^~05/01/2004~ -~12638~^~318~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12638~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12638~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~338~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~417~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12638~^~432~^56.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~12638~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~12638~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12643~^~208~^710.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~268~^2969.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~301~^72.^3^10.^~1~^~A~^^^1^62.^93.^2^27.^116.^~4~^~01/01/2001~ -~12643~^~304~^132.^3^6.^~1~^~A~^^^1^121.^142.^2^106.^158.^~4~^~01/01/2001~ -~12643~^~305~^293.^3^20.^~1~^~A~^^^1^260.^330.^2^206.^380.^~4~^~01/01/2001~ -~12643~^~306~^424.^3^32.^~1~^~A~^^^1^390.^489.^2^284.^563.^~4~^~01/01/2001~ -~12643~^~307~^383.^0^^~4~^~S~^^^^^^^^^^~08/01/1999~ -~12643~^~318~^140.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~ -~12643~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12643~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~12643~^~321~^84.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12643~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12643~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12643~^~417~^16.^3^4.^~1~^~A~^^^1^9.^25.^2^-4.^35.^~4~^~01/01/2001~ -~12643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12643~^~432~^16.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~12643~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12643~^~636~^85.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~12643~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~639~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~641~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~208~^715.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~268~^2990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~301~^67.^3^6.^~1~^~A~^^^1^60.^80.^2^40.^94.^~4~^~01/01/2001~ -~12644~^~304~^121.^3^4.^~1~^~A~^^^1^114.^129.^2^102.^139.^~4~^~01/01/2001~ -~12644~^~305~^263.^3^18.^~1~^~A~^^^1^240.^300.^2^183.^343.^~4~^~01/01/2001~ -~12644~^~306~^392.^3^6.^~1~^~A~^^^1^380.^402.^2^364.^420.^~4~^~01/01/2001~ -~12644~^~307~^393.^0^^~4~^~S~^^^^^^^^^^~08/01/1999~ -~12644~^~318~^104.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~ -~12644~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12644~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~12644~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12644~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12644~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12644~^~417~^15.^3^1.^~1~^~A~^^^1^13.^18.^2^8.^20.^~4~^~01/01/2001~ -~12644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12644~^~432~^15.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12644~^~636~^108.^1^^~1~^^^^^^^^^^^~05/01/1999~ -~12644~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~641~^96.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12652~^~208~^569.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12652~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~12652~^~268~^2379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~301~^107.^13^5.^~1~^~A~^^^3^98.^127.^2^82.^131.^~2~^~05/01/2010~ -~12652~^~304~^109.^5^11.^~1~^~A~^^^2^98.^123.^1^-31.^249.^~2~^~05/01/2010~ -~12652~^~305~^469.^5^16.^~1~^~A~^^^2^452.^500.^1^258.^678.^~2~^~05/01/2010~ -~12652~^~306~^1007.^12^39.^~1~^~A~^^^3^875.^1090.^2^837.^1177.^~2~^~05/01/2010~ -~12652~^~307~^428.^17^34.^~1~^~A~^^^3^195.^1120.^2^281.^574.^~2~^~05/01/2010~ -~12652~^~318~^266.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~12652~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12652~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~12652~^~321~^159.^15^44.^~1~^~A~^^^5^60.^337.^4^35.^283.^~2~^~04/01/2015~ -~12652~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~ -~12652~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12652~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~ -~12652~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~ -~12652~^~338~^1160.^9^48.^~1~^~A~^^^3^1070.^1269.^2^951.^1368.^~2~^~05/01/2010~ -~12652~^~417~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^~2~^~05/01/2010~ -~12652~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12652~^~432~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^^~05/01/2010~ -~12652~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12652~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12652~^~638~^2.^8^0.^~1~^~A~^^^3^2.^3.^2^1.^3.^~1, 2~^~04/01/2015~ -~12652~^~639~^10.^8^0.^~1~^~A~^^^3^10.^11.^2^9.^11.^~2~^~05/01/2010~ -~12652~^~641~^210.^8^5.^~1~^~A~^^^3^202.^220.^2^188.^232.^~2~^~08/01/2011~ -~12663~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12663~^~268~^1866.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~12663~^~301~^55.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~304~^262.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~305~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~306~^919.^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~307~^2541.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~12663~^~318~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12663~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12663~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12663~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12663~^~432~^9.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~12663~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12663~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12665~^~208~^607.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~12665~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~268~^2540.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~12665~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~07/01/2012~ -~12665~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~07/01/2012~ -~12665~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~07/01/2012~ -~12665~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~07/01/2012~ -~12665~^~307~^143.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12665~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~12665~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12665~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12665~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12665~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~07/01/2012~ -~12665~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~07/01/2012~ -~12665~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12695~^~208~^614.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12695~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~12695~^~268~^2568.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~301~^347.^8^12.^~1~^~A~^^^1^279.^384.^7^317.^377.^~4~^~05/01/2010~ -~12695~^~304~^279.^8^6.^~1~^~A~^^^1^247.^310.^7^263.^293.^~4~^~05/01/2010~ -~12695~^~305~^508.^8^10.^~1~^~A~^^^1^442.^547.^7^482.^533.^~4~^~05/01/2010~ -~12695~^~306~^748.^8^21.^~1~^~A~^^^1^678.^839.^7^698.^798.^~4~^~05/01/2010~ -~12695~^~307~^227.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12695~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12695~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~321~^1.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~08/01/2010~ -~12695~^~322~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~ -~12695~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12695~^~334~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~ -~12695~^~337~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~ -~12695~^~338~^1.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~ -~12695~^~417~^53.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~08/01/2010~ -~12695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12695~^~432~^53.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2010~ -~12695~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12695~^~638~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~1, 4~^~05/01/2010~ -~12695~^~639~^6.^8^0.^~1~^~A~^^^1^5.^8.^7^4.^6.^~4~^~05/01/2010~ -~12695~^~641~^131.^8^3.^~1~^~A~^^^1^116.^147.^7^122.^138.^~4~^~05/01/2010~ -~12698~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~07/01/1984~ -~12698~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12698~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12698~^~268~^2477.^0^^~4~^^^^^^^^^^^ -~12698~^~301~^141.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~304~^95.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~305~^790.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~306~^459.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~307~^35.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~318~^67.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12698~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12698~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12698~^~417~^98.^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12698~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12698~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~12698~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12737~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~08/01/2012~ -~12737~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~08/01/2012~ -~12737~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~08/01/2012~ -~12737~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~08/01/2012~ -~12737~^~307~^161.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12737~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~417~^83.^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12737~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~432~^83.^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12737~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12738~^~208~^607.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~263~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~268~^2540.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~301~^130.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~304~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~305~^433.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~306~^714.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~307~^143.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~318~^27.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12738~^~321~^13.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~324~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~417~^104.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~432~^104.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13000~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13000~^~301~^9.^11^0.^~1~^~A~^^^1^5.^13.^10^7.^10.^~2, 3~^~06/01/2007~ -~13000~^~304~^23.^11^0.^~1~^~A~^^^1^22.^25.^10^22.^23.^~2, 3~^~06/01/2007~ -~13000~^~305~^212.^11^1.^~1~^~A~^^^1^202.^222.^10^207.^216.^~2, 3~^~06/01/2007~ -~13000~^~306~^342.^11^1.^~1~^~A~^^^1^334.^352.^10^338.^346.^~2, 3~^~06/01/2007~ -~13000~^~307~^55.^11^1.^~1~^~A~^^^1^49.^61.^10^52.^57.^~2, 3~^~06/01/2007~ -~13000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~13000~^~319~^0.^0^^~4~^~BFFN~^~23584~^^^^^^^^^~01/01/2008~ -~13000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~13000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~417~^13.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~431~^0.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~01/01/2008~ -~13000~^~432~^13.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~435~^13.^0^^~4~^~NC~^~23584~^^^^^^^^^~01/01/2008~ -~13000~^~601~^55.^14^0.^~1~^~A~^^^1^49.^62.^13^52.^56.^~2, 3~^~06/01/2007~ -~13001~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13001~^~268~^1218.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~13001~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~304~^17.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~305~^154.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~306~^267.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~307~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~320~^0.^0^^~4~^^^^^^^^^^^~09/01/2010~ -~13001~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13001~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~13001~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13001~^~601~^74.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13002~^~268~^1163.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~13002~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~304~^17.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~305~^156.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~306~^271.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~307~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13002~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2006~ -~13002~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13002~^~601~^74.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~208~^674.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~268~^2820.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~13019~^~301~^26.^4^7.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~304~^5.^4^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~305~^61.^4^4.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~306~^96.^4^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~307~^26.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13019~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~13019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~324~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13019~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13019~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~13019~^~601~^99.^13^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13020~^~208~^680.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~13020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~13020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~13020~^~268~^2845.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~13020~^~301~^19.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~304~^6.^4^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~305~^64.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~306~^99.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~307~^23.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13020~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13020~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13020~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~13020~^~601~^95.^6^3.^~1~^^^^^^^^^^^~02/01/2003~ -~13023~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13023~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~305~^201.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~307~^79.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~319~^0.^0^^~4~^~BFSN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13023~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13023~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~13023~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~13023~^~601~^62.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13047~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~268~^828.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13047~^~301~^12.^11^1.^~1~^~A~^^^1^8.^21.^10^9.^14.^~2, 3~^~06/01/2007~ -~13047~^~304~^19.^11^0.^~1~^~A~^^^1^16.^20.^10^17.^19.^~2, 3~^~06/01/2007~ -~13047~^~305~^175.^11^2.^~1~^~A~^^^1^153.^192.^10^168.^181.^~2, 3~^~06/01/2007~ -~13047~^~306~^289.^11^5.^~1~^~A~^^^1^247.^308.^10^277.^299.^~2, 3~^~06/01/2007~ -~13047~^~307~^68.^11^1.^~1~^~A~^^^1^55.^74.^10^64.^71.^~2, 3~^~06/01/2007~ -~13047~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~13047~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~13047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~417~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13047~^~601~^62.^15^0.^~1~^~A~^^^1^58.^71.^14^60.^64.^~2, 3~^~06/01/2007~ -~13055~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~268~^1173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13055~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~306~^237.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13055~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13055~^~601~^107.^0^^~4~^~BFSN~^~13983~^^^^^^^^^~07/01/2010~ -~13065~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~268~^692.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~301~^27.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~305~^193.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~306~^330.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13065~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13065~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13066~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~268~^1100.^0^^~4~^^^^^^^^^^^~09/01/2004~ -~13066~^~301~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~306~^337.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~307~^70.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2004~ -~13066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13066~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~13066~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~13066~^~601~^72.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13067~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~268~^843.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13067~^~301~^18.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13067~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13067~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13067~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13068~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13068~^~301~^28.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13068~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~13068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13068~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13068~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13068~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13069~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~268~^992.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13069~^~301~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~304~^24.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~305~^267.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~306~^351.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~307~^72.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~13069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~13069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~417~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13069~^~432~^9.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~13069~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~13069~^~601~^71.^6^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13070~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~268~^811.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13070~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~306~^338.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13070~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13070~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13070~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13095~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13095~^~268~^1146.^0^^~4~^^^^^^^^^^^ -~13095~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~304~^18.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~305~^168.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~306~^305.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~307~^56.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13095~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13095~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13095~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13095~^~601~^68.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13096~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~268~^1108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13096~^~301~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13096~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13096~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~13096~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13096~^~601~^88.^0^^~4~^~BFSN~^~23126~^^^^^^^^^~08/01/2010~ -~13097~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13097~^~268~^674.^0^^~4~^^^^^^^^^^^ -~13097~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~305~^196.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~306~^373.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~307~^63.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13097~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13097~^~417~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13097~^~432~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13097~^~601~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13098~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13098~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~305~^227.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~306~^363.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13098~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13098~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13098~^~601~^90.^0^^~4~^~BFSN~^~13980~^^^^^^^^^~07/01/2010~ -~13147~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13147~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13147~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~304~^14.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~305~^137.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~306~^232.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~307~^49.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13147~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13147~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13147~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13147~^~601~^76.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13148~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~268~^1971.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13148~^~301~^12.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~304~^15.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~305~^162.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~306~^224.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~307~^50.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13148~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13148~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13148~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13148~^~601~^94.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13149~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13149~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~305~^190.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13149~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13149~^~417~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13149~^~432~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~13149~^~601~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13150~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~268~^1234.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13150~^~301~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~305~^235.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~306~^313.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~307~^58.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13150~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~13150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~13150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~324~^12.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13150~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13150~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13150~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13156~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~268~^799.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13156~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~304~^28.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~306~^422.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13156~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13156~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13156~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~13156~^~601~^78.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13158~^~268~^720.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~13158~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~304~^28.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~306~^423.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13158~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13158~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13158~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~13158~^~601~^78.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13165~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~268~^924.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13165~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~305~^191.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~306~^254.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~307~^52.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13165~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13165~^~601~^92.^0^^~4~^~BFSN~^~13975~^^^^^^^^^~07/01/2010~ -~13227~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13227~^~268~^536.^0^^~4~^^^^^^^^^^^~09/01/2009~ -~13227~^~301~^20.^7^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~304~^14.^7^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~305~^204.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~306~^387.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~307~^63.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13227~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13227~^~417~^8.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13227~^~432~^8.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~13227~^~601~^39.^7^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13228~^~268~^841.^0^^~4~^^^^^^^^^^^~04/01/2009~ -~13228~^~301~^32.^7^2.^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~304~^30.^7^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~305~^263.^7^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~306~^447.^7^5.^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~307~^64.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13228~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13228~^~417~^10.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13228~^~432~^10.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~13228~^~601~^78.^7^5.^~1~^^^^^^^^^^^~05/01/1990~ -~13231~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13231~^~268~^674.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~301~^18.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~305~^209.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~306~^276.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~13231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~13231~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~13231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~324~^3.^0^^~4~^~BFFN~^~23151~^^^^^^^^^~06/01/2013~ -~13231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13231~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13231~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13231~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2013~ -~13231~^~601~^59.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~268~^923.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~305~^224.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~306~^290.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13232~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~324~^3.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~ -~13232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13232~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13232~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13232~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~ -~13232~^~601~^85.^4^2.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~301~^21.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~305~^196.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~306~^263.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~307~^35.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~13235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~ -~13235~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~324~^3.^0^^~4~^~BFFN~^~23151~^^^^^^^^^~05/01/2013~ -~13235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13235~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13235~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~13235~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2013~ -~13235~^~601~^59.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~268~^908.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~305~^210.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~306~^280.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~307~^68.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13236~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~324~^3.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~ -~13236~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13236~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13236~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13236~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~ -~13236~^~601~^81.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13284~^~208~^149.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~268~^625.^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2009~ -~13284~^~301~^10.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~304~^20.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~305~^157.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~306~^297.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~307~^52.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~318~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~319~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~320~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~417~^6.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~431~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~432~^6.^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2009~ -~13284~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13284~^~601~^60.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13285~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~301~^14.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~305~^206.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~306~^306.^6^3.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~307~^65.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~319~^2.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~324~^5.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~417~^8.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~ -~13285~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~ -~13285~^~432~^8.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~ -~13285~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~601~^104.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13293~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~268~^587.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13293~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~305~^202.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~306~^369.^6^6.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~307~^81.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13293~^~319~^2.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13293~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~324~^4.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13293~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13293~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13293~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13293~^~601~^66.^5^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13294~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~268~^606.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13294~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~305~^200.^4^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~306~^361.^4^8.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~307~^80.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13294~^~319~^2.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13294~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~324~^4.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~417~^4.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~ -~13294~^~431~^0.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~ -~13294~^~432~^4.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~ -~13294~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2010~ -~13294~^~601~^65.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13317~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~268~^1236.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13317~^~301~^11.^2^^~1~^~A~^^^1^10.^11.^1^^^^~02/01/2007~ -~13317~^~304~^19.^2^^~1~^~A~^^^1^18.^19.^1^^^^~02/01/2007~ -~13317~^~305~^174.^2^^~1~^~A~^^^1^172.^176.^1^^^^~02/01/2007~ -~13317~^~306~^305.^2^^~1~^~A~^^^1^299.^311.^1^^^^~02/01/2007~ -~13317~^~307~^77.^2^^~1~^~A~^^^1^74.^79.^1^^^^~02/01/2007~ -~13317~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13317~^~319~^0.^0^^~4~^~BFSN~^~23578~^^^^^^^^^~03/01/2007~ -~13317~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~13317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~13317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~417~^21.^2^^~1~^~A~^^^1^12.^29.^1^^^^~02/01/2007~ -~13317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13317~^~432~^21.^2^^~1~^~A~^^^1^12.^29.^1^^^^~02/01/2007~ -~13317~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13317~^~601~^84.^2^^~1~^~A~^^^1^84.^84.^^^^^~02/01/2007~ -~13318~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13318~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~301~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~305~^362.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~306~^274.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~307~^126.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~318~^147.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13318~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13318~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13318~^~321~^88.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13318~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13318~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13318~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13318~^~417~^3.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13318~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~601~^3010.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13319~^~208~^196.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~268~^820.^0^^~4~^^^^^^^^^^^ -~13319~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~304~^15.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~305~^386.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~306~^354.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~307~^158.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13319~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13319~^~417~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13319~^~432~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13319~^~601~^1995.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~636~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13320~^~208~^151.^0^^~4~^~NR~^^^^^^^^^^~06/01/2011~ -~13320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13320~^~268~^630.^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~305~^335.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~306~^244.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~307~^108.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~318~^117.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13320~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13320~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13320~^~321~^70.^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~13320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13320~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13320~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13320~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13320~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13320~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13320~^~601~^3100.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~13321~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~13321~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~305~^212.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~307~^98.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13321~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13321~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~13321~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~337~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~417~^3.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13321~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13321~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13321~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~13321~^~601~^124.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~208~^165.^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~13322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~268~^690.^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~13322~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~305~^254.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~306~^219.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13322~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13322~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13322~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13322~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~13322~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13322~^~601~^212.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~208~^99.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~13323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~268~^413.^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~13323~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~305~^257.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~307~^182.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~318~^1397.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13323~^~319~^419.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~320~^419.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13323~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~324~^45.^46^^~1~^~A~^^^2^17.^108.^^^^~2, 3~^~02/01/2009~ -~13323~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~337~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~417~^98.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13323~^~432~^98.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~13323~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13323~^~601~^411.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13324~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13324~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~305~^304.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~306~^135.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~307~^94.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13324~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13324~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~324~^45.^46^^~1~^~A~^^^2^17.^108.^^^^~2, 3~^~02/01/2009~ -~13324~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~337~^23.^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~13324~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~417~^83.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13324~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13324~^~432~^83.^2^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~13324~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13324~^~601~^716.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13325~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13325~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13325~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13325~^~268~^564.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13325~^~301~^5.^4^0.^~1~^~A~^^^1^5.^5.^3^4.^5.^~2, 3~^~02/01/2003~ -~13325~^~304~^18.^4^0.^~1~^~A~^^^1^18.^19.^3^17.^19.^~2, 3~^~02/01/2003~ -~13325~^~305~^387.^4^5.^~1~^~A~^^^1^377.^403.^3^368.^406.^~2, 3~^~02/01/2003~ -~13325~^~306~^313.^4^3.^~1~^~A~^^^1^304.^320.^3^302.^323.^~2, 3~^~02/01/2003~ -~13325~^~307~^69.^4^2.^~1~^~A~^^^1^64.^73.^3^62.^76.^~2, 3~^~02/01/2003~ -~13325~^~318~^16898.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~13325~^~319~^4948.^4^1321.^~1~^~A~^^^1^2530.^8710.^3^740.^9154.^~2, 3~^~02/01/2003~ -~13325~^~320~^4968.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~13325~^~321~^232.^4^203.^~1~^~A~^^^1^11.^841.^3^-415.^879.^~1, 2, 3~^~02/01/2003~ -~13325~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~ -~13325~^~334~^13.^4^1.^~1~^~A~^^^1^11.^18.^3^7.^18.^~1, 2, 3~^~02/01/2003~ -~13325~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13325~^~417~^290.^4^42.^~1~^~A~^^^1^181.^389.^3^153.^426.^~2, 3~^~02/01/2003~ -~13325~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~13325~^~432~^290.^4^42.^~1~^~A~^^^1^181.^389.^3^153.^426.^^~02/01/2009~ -~13325~^~435~^290.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13325~^~601~^275.^4^7.^~1~^~A~^^^1^259.^294.^3^250.^299.^~2, 3~^~02/01/2003~ -~13326~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13326~^~301~^6.^4^0.^~1~^~A~^^^1^6.^7.^3^5.^6.^~2, 3~^~02/01/2003~ -~13326~^~304~^21.^4^1.^~1~^~A~^^^1^18.^24.^3^16.^24.^~2, 3~^~02/01/2003~ -~13326~^~305~^497.^4^13.^~1~^~A~^^^1^460.^517.^3^454.^538.^~2, 3~^~02/01/2003~ -~13326~^~306~^352.^4^8.^~1~^~A~^^^1^333.^373.^3^325.^378.^~2, 3~^~02/01/2003~ -~13326~^~307~^79.^4^1.^~1~^~A~^^^1^75.^81.^3^73.^83.^~2, 3~^~02/01/2003~ -~13326~^~318~^31714.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~13326~^~319~^9428.^4^554.^~1~^~A~^^^1^7920.^10400.^3^7662.^11192.^~2, 3~^~02/01/2003~ -~13326~^~320~^9442.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~13326~^~321~^162.^4^52.^~1~^~A~^^^1^92.^319.^3^-5.^329.^~2, 3~^~02/01/2003~ -~13326~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~ -~13326~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13326~^~417~^253.^4^35.^~1~^~A~^^^1^164.^333.^3^138.^366.^~2, 3~^~02/01/2003~ -~13326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~432~^253.^4^35.^~1~^~A~^^^1^164.^333.^3^138.^366.^^~02/01/2009~ -~13326~^~435~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13326~^~601~^396.^4^9.^~1~^~A~^^^1^377.^419.^3^366.^425.^~2, 3~^~02/01/2003~ -~13327~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~268~^734.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13327~^~301~^6.^4^0.^~1~^~A~^^^1^5.^6.^3^5.^6.^~2, 3~^~02/01/2003~ -~13327~^~304~^22.^4^0.^~1~^~A~^^^1^20.^23.^3^19.^24.^~2, 3~^~02/01/2003~ -~13327~^~305~^485.^4^8.^~1~^~A~^^^1^467.^504.^3^457.^512.^~2, 3~^~02/01/2003~ -~13327~^~306~^351.^4^9.^~1~^~A~^^^1^333.^368.^3^321.^380.^~2, 3~^~02/01/2003~ -~13327~^~307~^77.^4^3.^~1~^~A~^^^1^68.^83.^3^66.^86.^~2, 3~^~02/01/2003~ -~13327~^~318~^26088.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~13327~^~319~^7728.^4^890.^~1~^~A~^^^1^5770.^9790.^3^4893.^10561.^~2, 3~^~10/01/2004~ -~13327~^~320~^7744.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~13327~^~321~^182.^4^40.^~1~^~A~^^^1^110.^295.^3^53.^310.^~2, 3~^~10/01/2004~ -~13327~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~10/01/2004~ -~13327~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~ -~13327~^~334~^21.^4^6.^~1~^~A~^^^1^11.^38.^3^0.^41.^~1, 2, 3~^~10/01/2004~ -~13327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~417~^260.^4^35.^~1~^~A~^^^1^177.^351.^3^146.^373.^~2, 3~^~02/01/2003~ -~13327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~432~^260.^4^35.^~1~^~A~^^^1^177.^351.^3^146.^373.^^~02/01/2009~ -~13327~^~435~^260.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13327~^~601~^381.^4^12.^~1~^~A~^^^1^349.^405.^3^341.^419.^~2, 3~^~02/01/2003~ -~13328~^~208~^92.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~268~^385.^0^^~4~^^^^^^^^^^^ -~13328~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~304~^14.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~305~^224.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~306~^340.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~307~^198.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~318~^46.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13328~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13328~^~417~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13328~^~432~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13328~^~601~^242.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~208~^120.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~268~^502.^0^^~4~^^^^^^^^^^^ -~13329~^~301~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~304~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~305~^178.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~306~^173.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~307~^101.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~318~^39.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13329~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13329~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13329~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13329~^~601~^277.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~208~^276.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~268~^1155.^0^^~4~^^^^^^^^^^^ -~13330~^~301~^485.^55^16.^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~304~^17.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~305~^324.^28^9.^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~306~^277.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~307~^57.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13330~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13330~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13330~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13330~^~601~^209.^18^11.^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~208~^235.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~268~^983.^0^^~4~^^^^^^^^^^^ -~13331~^~301~^9.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~304~^18.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~305~^327.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~306~^276.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~307~^67.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13331~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13331~^~417~^3.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13331~^~432~^3.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13331~^~601~^205.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~208~^271.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~268~^1134.^0^^~4~^^^^^^^^^^^ -~13332~^~301~^16.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~304~^21.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~305~^453.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~306~^246.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~307~^60.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13332~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13332~^~417~^3.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13332~^~432~^3.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13332~^~601~^262.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~208~^105.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~268~^439.^0^^~4~^^^^^^^^^^^ -~13333~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~304~^22.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~305~^296.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~306~^429.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~307~^85.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13333~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13333~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13333~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13333~^~601~^263.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~208~^145.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~268~^607.^0^^~4~^^^^^^^^^^^ -~13334~^~301~^12.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~304~^19.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~305~^305.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~306~^284.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~307~^57.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13334~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13334~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13334~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13334~^~601~^347.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~208~^854.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~268~^3573.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~13335~^~301~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~305~^15.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~306~^16.^7^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~307~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~13335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13335~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~13335~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~13335~^~601~^68.^5^2.^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13337~^~268~^987.^0^^~4~^^^^^^^^^^^ -~13337~^~301~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~304~^14.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~305~^393.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~306~^360.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~307~^96.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13337~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~13337~^~417~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13337~^~432~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13337~^~601~^223.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13338~^~268~^1335.^0^^~4~^^^^^^^^^^^ -~13338~^~301~^10.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~304~^10.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~305~^364.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~306~^433.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~307~^116.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13338~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13338~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13338~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13338~^~601~^294.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13339~^~268~^937.^0^^~4~^^^^^^^^^^^ -~13339~^~301~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~304~^16.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~305~^133.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~306~^315.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~307~^69.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13339~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13339~^~417~^7.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13339~^~432~^7.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13339~^~601~^87.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13340~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~268~^1186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13340~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~305~^145.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~306~^184.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13340~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~324~^15.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~13340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13340~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~13340~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13340~^~601~^132.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13341~^~301~^69.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~305~^64.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~306~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~307~^97.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13341~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~13341~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13341~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13341~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~13341~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13341~^~601~^122.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13342~^~208~^309.^0^^~9~^~MC~^^^^^^^^^^~06/01/1998~ -~13342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~13342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~13342~^~268~^1293.^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~13342~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~304~^16.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~305~^133.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~306~^233.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~307~^68.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13342~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13342~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~13342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13342~^~324~^15.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13342~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13342~^~417~^7.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~ -~13342~^~432~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~13342~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13342~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13343~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~268~^887.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13343~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~306~^256.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13343~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13343~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13343~^~601~^99.^0^^~4~^~BFSN~^~13596~^^^^^^^^^~07/01/2010~ -~13344~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13344~^~268~^1699.^0^^~4~^^^^^^^^^^^ -~13344~^~301~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~304~^11.^22^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~305~^100.^22^2.^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~306~^153.^22^6.^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~307~^955.^22^14.^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13344~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13344~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13344~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13344~^~601~^82.^22^2.^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13345~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~268~^1879.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13345~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~304~^27.^22^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~305~^236.^22^7.^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~306~^412.^22^13.^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~307~^2253.^22^43.^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~318~^0.^0^^~7~^^^^^^^^^^^~05/01/1990~ -~13345~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~13345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~324~^7.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~13345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~417~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13345~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13345~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13345~^~601~^119.^22^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13346~^~268~^828.^0^^~4~^^^^^^^^^^^ -~13346~^~301~^7.^6^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~304~^14.^11^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~305~^117.^5^9.^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~306~^297.^11^31.^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~307~^1217.^19^41.^~1~^^^^^^^^^^^~07/01/2002~ -~13346~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13346~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13346~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13346~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~13346~^~601~^54.^5^9.^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13347~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~268~^1050.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13347~^~301~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13347~^~304~^12.^5^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~305~^125.^13^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~306~^145.^5^21.^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~307~^973.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13347~^~318~^0.^0^^~7~^^^^^^^^^^^~05/01/1990~ -~13347~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~13347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~324~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~13347~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13347~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13347~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13347~^~601~^98.^5^9.^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13348~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~13348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~13348~^~268~^1046.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13348~^~301~^12.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13348~^~304~^14.^6^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~305~^111.^6^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~306~^136.^6^9.^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~307~^897.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13348~^~318~^0.^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~13348~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~417~^9.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13348~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13348~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13348~^~601~^86.^8^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13349~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~305~^206.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~306~^380.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~319~^2.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~324~^3.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13349~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13349~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13349~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2010~ -~13349~^~601~^66.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13350~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~268~^640.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~304~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~305~^181.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~306~^235.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~307~^2790.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~324~^1.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13351~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~305~^205.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~306~^314.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~307~^73.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~319~^2.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13351~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13351~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13351~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13351~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~601~^93.^6^8.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13352~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~268~^953.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~305~^207.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~306~^318.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~307~^73.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13352~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13352~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13352~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13352~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2010~ -~13352~^~601~^89.^4^10.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13353~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13353~^~268~^464.^0^^~4~^^^^^^^^^^^ -~13353~^~301~^10.^7^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~304~^18.^7^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~305~^139.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~306~^402.^7^22.^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~307~^1322.^7^41.^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~13353~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13353~^~417~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13353~^~432~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13353~^~601~^34.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13354~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~268~^875.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13354~^~301~^16.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~305~^202.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~306~^306.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~307~^74.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13354~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13354~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13354~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13354~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13354~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13354~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13354~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2010~ -~13354~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13355~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13355~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13355~^~301~^10.^4^^~1~^~A~^^^1^9.^10.^^^^~2~^~05/01/2004~ -~13355~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~305~^175.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~306~^210.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~307~^1078.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13355~^~318~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~321~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13355~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13355~^~601~^68.^5^^~1~^~A~^^^2^63.^73.^^^^~2~^~05/01/2004~ -~13355~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13356~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~301~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~305~^181.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~306~^321.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~307~^77.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13356~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13356~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13356~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~13356~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~601~^69.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13357~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13357~^~268~^1305.^0^^~4~^^^^^^^^^^^ -~13357~^~301~^7.^8^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~304~^13.^5^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~305~^105.^5^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~306~^176.^5^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~307~^1131.^7^69.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~13357~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13357~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13357~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13357~^~601~^67.^5^4.^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~13358~^~268~^556.^0^^~4~^^^^^^^^^^^ -~13358~^~301~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~304~^21.^7^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~305~^181.^7^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~306~^377.^7^17.^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~307~^1258.^33^33.^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~13358~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~13358~^~417~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13358~^~432~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13358~^~601~^46.^8^3.^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13359~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~305~^180.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~306~^317.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~307~^76.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13359~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~ -~13359~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~ -~13359~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~ -~13359~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2010~ -~13359~^~601~^70.^4^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13361~^~208~^230.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~268~^962.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~305~^224.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~306~^323.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13361~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13362~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13362~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13362~^~301~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~305~^222.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~306~^321.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13362~^~601~^86.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~208~^203.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~268~^847.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~301~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~305~^231.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~306~^333.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13363~^~601~^85.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13364~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13364~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~268~^850.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13364~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~305~^237.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~306~^339.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~307~^64.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~318~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13364~^~601~^90.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13365~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13365~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13365~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~305~^235.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~306~^338.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~307~^63.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~318~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13365~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~208~^188.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~268~^788.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~305~^237.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~306~^346.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~307~^64.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13366~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13367~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~268~^1218.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13367~^~301~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~304~^21.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~305~^216.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~306~^259.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13367~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13367~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13367~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13368~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~268~^912.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13368~^~301~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~305~^241.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~306~^285.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~307~^70.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13368~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13368~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13368~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13368~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13368~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13369~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13369~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~305~^200.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~306~^264.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13369~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13369~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13369~^~601~^92.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~ -~13370~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~268~^858.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13370~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~305~^205.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~306~^267.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13370~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13370~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13370~^~601~^100.^0^^~4~^~BFSN~^~13595~^^^^^^^^^~07/01/2010~ -~13371~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~268~^1498.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13371~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~304~^18.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~305~^187.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~306~^233.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~307~^68.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13371~^~432~^7.^0^^~1~^^^^^^^^^^^~04/01/2008~ -~13371~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13371~^~601~^92.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~268~^1021.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13372~^~301~^6.^10^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~304~^22.^10^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~305~^226.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~306~^273.^10^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~307~^77.^10^5.^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~417~^8.^11^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13372~^~432~^8.^11^1.^~1~^^^^^^^^^^^~04/01/2008~ -~13372~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13372~^~601~^91.^8^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13373~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~268~^1241.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13373~^~301~^16.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~305~^174.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~306~^231.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~307~^47.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13373~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~13373~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~13373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13373~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13373~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13373~^~601~^116.^0^^~4~^~BFSN~^~23131~^^^^^^^^^~07/01/2010~ -~13375~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~268~^1185.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13375~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~305~^178.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~306~^235.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~307~^48.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13375~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13375~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13375~^~601~^115.^0^^~4~^~BFSN~^~23133~^^^^^^^^^~07/01/2010~ -~13377~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13377~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~268~^886.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13377~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~306~^262.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13377~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13377~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13377~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13377~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13377~^~601~^100.^0^^~4~^~BFSN~^~23081~^^^^^^^^^~07/01/2010~ -~13378~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13378~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~306~^270.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13378~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13378~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13378~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13378~^~601~^98.^0^^~4~^~BFSN~^~23082~^^^^^^^^^~07/01/2010~ -~13379~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~268~^1397.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13379~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~305~^205.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~306~^236.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13379~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13379~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13379~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13379~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~13379~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13379~^~601~^104.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13380~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13380~^~301~^14.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~304~^19.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~305~^174.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~306~^262.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~307~^61.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~319~^8.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~324~^6.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~601~^100.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13381~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~268~^1203.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13381~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~305~^171.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~306~^261.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~307~^64.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~319~^8.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~324~^5.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~ -~13381~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~ -~13381~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~ -~13381~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2015~ -~13381~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13382~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~268~^1059.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13382~^~301~^13.^11^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~304~^23.^11^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~305~^235.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~306~^263.^11^8.^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~307~^71.^11^6.^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13382~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13382~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13382~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~417~^6.^11^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13382~^~432~^6.^11^1.^~1~^^^^^^^^^^^~03/01/2009~ -~13382~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13382~^~601~^106.^8^1.^~1~^^^^^^^^^^^~05/01/1990~ -~13383~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~268~^965.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13383~^~301~^14.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~305~^207.^4^3.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~306~^307.^4^4.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~307~^63.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~319~^2.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~324~^6.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13383~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13383~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~ -~13383~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2010~ -~13383~^~601~^105.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13384~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13384~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~305~^204.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~306~^306.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~319~^2.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~324~^4.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13384~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13384~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~ -~13384~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2010~ -~13384~^~601~^102.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13386~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13386~^~268~^1556.^0^^~4~^^^^^^^^^^^ -~13386~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~305~^172.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~306~^290.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13386~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13386~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13386~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13386~^~601~^85.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13387~^~268~^1385.^0^^~4~^^^^^^^^^^^ -~13387~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~305~^177.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~306~^300.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13387~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13387~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13387~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13387~^~601~^84.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13388~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~268~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13388~^~301~^8.^11^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~304~^25.^11^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~305~^209.^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~306~^357.^11^6.^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~307~^73.^11^7.^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13388~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13388~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13388~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~417~^9.^14^0.^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13388~^~432~^9.^14^0.^~1~^^^^^^^^^^^~03/01/2009~ -~13388~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13388~^~601~^81.^8^2.^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~13389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~13389~^~268~^1059.^0^^~4~^^^^^^^^^^^ -~13389~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~305~^209.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~307~^73.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13389~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13389~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13389~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~13389~^~601~^81.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13390~^~268~^920.^0^^~4~^^^^^^^^^^^ -~13390~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~305~^209.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~307~^73.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13390~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13390~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13390~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~13390~^~601~^81.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13391~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13391~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~306~^340.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13391~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13391~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13391~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13391~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13391~^~601~^89.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~ -~13392~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13392~^~268~^1305.^0^^~4~^^^^^^^^^^^ -~13392~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~305~^183.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~306~^342.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13392~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13392~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13392~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13392~^~601~^83.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13393~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~13393~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~305~^184.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~306~^344.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13393~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13393~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13393~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13393~^~601~^83.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13394~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13394~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~305~^233.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~306~^376.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13394~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13394~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13394~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13394~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13394~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13394~^~601~^91.^0^^~4~^~BFSN~^~13982~^^^^^^^^^~07/01/2010~ -~13395~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13395~^~268~^941.^0^^~4~^^^^^^^^^^^ -~13395~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~304~^27.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~305~^208.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~306~^394.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~307~^69.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13395~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13395~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13395~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~13395~^~601~^80.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13396~^~268~^828.^0^^~4~^^^^^^^^^^^ -~13396~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~304~^27.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~305~^208.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~306~^394.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~307~^69.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13396~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~13396~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13396~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~13396~^~601~^80.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13398~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~268~^934.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13398~^~301~^8.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~305~^208.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~306~^271.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~307~^44.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13398~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13398~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13398~^~601~^95.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13399~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~304~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~305~^171.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~306~^223.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~307~^36.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13399~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13399~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13399~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13399~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~601~^79.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13401~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~268~^962.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~305~^199.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~306~^264.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~307~^42.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13401~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13401~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13401~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13402~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~305~^162.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~306~^215.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13402~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13402~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13402~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13404~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~301~^9.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~305~^216.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~306~^279.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~307~^45.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13404~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13404~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13404~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~601~^93.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13405~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~305~^179.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~306~^232.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~307~^37.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13405~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13405~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13405~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13407~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~268~^897.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~306~^278.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~307~^44.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13407~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13407~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13407~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13407~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13407~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~601~^93.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13408~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~305~^176.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~306~^228.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13408~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13408~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13408~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13410~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~268~^932.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~306~^271.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~307~^43.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13410~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13410~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13410~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~601~^95.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13411~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~268~^774.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13411~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~305~^172.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~306~^222.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13411~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13411~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13411~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13411~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13413~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~306~^289.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~307~^46.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13413~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13413~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13413~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13414~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~268~^707.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~306~^238.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~307~^38.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13414~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13414~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13414~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13415~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13415~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~268~^698.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13415~^~301~^16.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~304~^15.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~305~^279.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~306~^401.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~307~^67.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~318~^14.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~319~^4.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~320~^4.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13415~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~417~^5.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~431~^0.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~432~^5.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~435~^5.^0^^~4~^~NC~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~601~^76.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~07/01/2010~ -~13416~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13416~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~268~^715.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13416~^~301~^16.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~304~^15.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~305~^279.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~306~^408.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~307~^66.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~318~^13.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~319~^4.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~320~^4.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13416~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~417~^5.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~431~^0.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~432~^5.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~435~^5.^0^^~4~^~NC~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~601~^74.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13417~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13417~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13417~^~301~^16.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~304~^14.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~305~^280.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~306~^392.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~307~^63.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~318~^21.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~319~^6.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~320~^6.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13417~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~417~^5.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~431~^0.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~432~^5.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~435~^5.^0^^~4~^~NC~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~601~^79.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13418~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13418~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13418~^~301~^16.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~304~^15.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~305~^281.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~306~^404.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~307~^67.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~318~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~319~^1.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~320~^1.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~13418~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~417~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~431~^0.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~432~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~435~^5.^0^^~4~^~NC~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~601~^76.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13419~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13419~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~268~^696.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13419~^~301~^16.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~304~^15.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~305~^280.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~306~^411.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~307~^66.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~318~^7.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~319~^2.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~320~^2.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13419~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~417~^5.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~431~^0.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~432~^5.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~435~^5.^0^^~4~^~NC~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~601~^74.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~07/01/2010~ -~13420~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13420~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13420~^~301~^16.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~304~^14.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~305~^281.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~306~^394.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~307~^63.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~318~^9.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~319~^3.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~320~^3.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~ -~13420~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~417~^5.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~431~^0.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~432~^5.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~435~^5.^0^^~4~^~NC~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~601~^79.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13421~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13421~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~268~^788.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13421~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~305~^166.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~306~^217.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13421~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13421~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13421~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13421~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13421~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13421~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13421~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13422~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~305~^164.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~306~^216.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13422~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13422~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13422~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13423~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~268~^759.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~304~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~305~^169.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~306~^218.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13423~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13423~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13423~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13424~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13424~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~306~^226.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~ -~13424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13424~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13424~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13424~^~601~^74.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13425~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~268~^737.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13425~^~301~^6.^10^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~306~^225.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13425~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13425~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13425~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13425~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13426~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13426~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~306~^230.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13426~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13426~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13426~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~601~^71.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13428~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13428~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~268~^874.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~13428~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~13428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13428~^~432~^9.^0^^~1~^^^^^^^^^^^~07/01/2009~ -~13428~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~13428~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~268~^904.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13430~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13430~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~ -~13430~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13430~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~268~^837.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13432~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13432~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13432~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~ -~13432~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13432~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~268~^866.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13436~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~305~^226.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~306~^334.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13436~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13436~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~ -~13436~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13436~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~268~^795.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13438~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~305~^226.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~306~^334.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13438~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~ -~13438~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13438~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13439~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~268~^881.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~305~^257.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~306~^350.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13439~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~324~^3.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13439~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~601~^93.^6^4.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~305~^258.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~306~^356.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13440~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~324~^3.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13440~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13440~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13440~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13440~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~ -~13440~^~601~^93.^4^5.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~268~^843.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~304~^14.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~305~^257.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~306~^348.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13441~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~324~^2.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13441~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~13441~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~13441~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~13441~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~03/01/2013~ -~13441~^~601~^93.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13442~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~268~^827.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~305~^285.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~306~^390.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13442~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13442~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~04/01/2013~ -~13442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~601~^93.^6^4.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~268~^885.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~301~^17.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~304~^23.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~305~^321.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~306~^443.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~307~^71.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13443~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~324~^3.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~13443~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~13443~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~13443~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~13443~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~04/01/2013~ -~13443~^~601~^93.^4^5.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13444~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~304~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~305~^265.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~306~^359.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13444~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~324~^3.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13444~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13444~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13444~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~ -~13444~^~601~^93.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13445~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~268~^931.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~305~^265.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~306~^366.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13445~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13445~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~324~^3.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~601~^81.^0^^~4~^~BFSN~^~13910~^^^^^^^^^~07/01/2015~ -~13446~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~301~^14.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~304~^19.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~305~^262.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~306~^361.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~307~^59.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13446~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~324~^4.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~13446~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2013~ -~13446~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~13446~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~04/01/2013~ -~13446~^~601~^88.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13447~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~268~^865.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~304~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~305~^274.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~306~^371.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13447~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~324~^3.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13447~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~13447~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~13447~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~13447~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~04/01/2013~ -~13447~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~13448~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~268~^845.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~305~^275.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~306~^376.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13448~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~05/01/2013~ -~13448~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13449~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~268~^882.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~305~^268.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~306~^367.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13449~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13449~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~324~^3.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13449~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13449~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13449~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~13449~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~ -~13449~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13450~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~268~^790.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~304~^15.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~305~^277.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~306~^375.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13450~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~324~^2.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13450~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13450~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13450~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13450~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~ -~13450~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13451~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13451~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13451~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~304~^25.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~305~^229.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~306~^368.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~307~^61.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13451~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13451~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13451~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13451~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13451~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13451~^~601~^88.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13452~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~268~^916.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~305~^218.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~306~^355.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~307~^58.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13452~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13452~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13452~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13452~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~601~^89.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13453~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~304~^26.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~305~^239.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~306~^381.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~307~^63.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13453~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13453~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13453~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13453~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13454~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~305~^244.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~306~^393.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~307~^64.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13454~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~ -~13454~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13454~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13454~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13454~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13455~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~268~^788.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~305~^237.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~306~^380.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13455~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13455~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13455~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13455~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13456~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~305~^253.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~306~^410.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13456~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13456~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13456~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13456~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13459~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13459~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~268~^1155.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13459~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~13459~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13459~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13460~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13460~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13460~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13460~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13463~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~268~^1116.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13463~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~306~^330.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13463~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13464~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~305~^206.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~306~^274.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~307~^51.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13464~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13464~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13464~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~324~^3.^0^^~4~^~BFFN~^~23150~^^^^^^^^^~06/01/2013~ -~13464~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13464~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~ -~13464~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13464~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~601~^58.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2001~ -~13465~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~305~^224.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~306~^291.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~307~^68.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13465~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~324~^3.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2013~ -~13465~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13465~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~ -~13465~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13465~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~601~^82.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13466~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13466~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13466~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~305~^211.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~306~^328.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13466~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13467~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13467~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~268~^939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13467~^~301~^6.^30^1.^~1~^~A~^^^2^4.^7.^1^-11.^22.^~2~^~07/01/2001~ -~13467~^~304~^25.^27^2.^~1~^~A~^^^2^22.^27.^1^-6.^55.^~2~^~07/01/2001~ -~13467~^~305~^211.^6^7.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13467~^~306~^301.^30^65.^~1~^~A~^^^2^236.^367.^1^-532.^1134.^~2~^~07/01/2001~ -~13467~^~307~^69.^22^3.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13467~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13467~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~ -~13467~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13467~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13467~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13467~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13468~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~268~^608.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~305~^200.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~306~^266.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~307~^43.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13468~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~324~^2.^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~ -~13468~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13468~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13468~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13468~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~ -~13468~^~601~^57.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13469~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~268~^847.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~301~^20.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~305~^227.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~306~^292.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~307~^67.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13469~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~324~^3.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~ -~13469~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13469~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13469~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13469~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~ -~13469~^~601~^78.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13470~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13470~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13470~^~301~^6.^30^1.^~1~^~A~^^^2^4.^7.^1^-11.^22.^~2~^~07/01/2001~ -~13470~^~304~^25.^27^2.^~1~^~A~^^^2^22.^27.^1^-6.^55.^~2~^~07/01/2001~ -~13470~^~305~^211.^6^7.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13470~^~306~^367.^26^14.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13470~^~307~^69.^22^3.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13470~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13470~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13470~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13470~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13473~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13473~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~268~^1033.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13473~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~306~^302.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~13473~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13473~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13474~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~268~^1081.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13474~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~306~^300.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13474~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13477~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13477~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~305~^200.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~307~^68.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13477~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13478~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~268~^642.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~301~^21.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~305~^200.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~306~^267.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~307~^42.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13478~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~324~^3.^0^^~4~^~BFFN~^~23150~^^^^^^^^^~06/01/2013~ -~13478~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13478~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~ -~13478~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13478~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~601~^59.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~305~^219.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~306~^290.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~307~^67.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13479~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~324~^3.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~05/01/2013~ -~13479~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13479~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~ -~13479~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13479~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~601~^82.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13481~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13481~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~268~^827.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13481~^~301~^4.^29^2.^~1~^~A~^^^2^2.^6.^1^-21.^29.^~2~^~07/01/2001~ -~13481~^~304~^26.^27^1.^~1~^~A~^^^2^24.^28.^1^3.^49.^~2~^~07/01/2001~ -~13481~^~305~^215.^6^5.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13481~^~306~^327.^29^51.^~1~^~A~^^^2^275.^378.^1^-325.^979.^~2~^~07/01/2001~ -~13481~^~307~^71.^24^3.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13481~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13481~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13481~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13481~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13482~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~301~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~305~^214.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~306~^284.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~307~^57.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13482~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~324~^2.^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~ -~13482~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13482~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13482~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~13482~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~ -~13482~^~601~^59.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~301~^18.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~305~^234.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~306~^304.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~307~^66.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13483~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~324~^3.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~ -~13483~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13483~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13483~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~ -~13483~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~ -~13483~^~601~^83.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13484~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13484~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~268~^742.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13484~^~301~^4.^28^2.^~1~^~A~^^^2^2.^6.^1^-21.^29.^~2~^~07/01/2001~ -~13484~^~304~^26.^26^1.^~1~^~A~^^^2^24.^28.^1^3.^49.^~2~^~07/01/2001~ -~13484~^~305~^215.^6^5.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13484~^~306~^327.^28^51.^~1~^~A~^^^2^275.^378.^1^-325.^979.^~2~^~07/01/2001~ -~13484~^~307~^71.^24^3.^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13484~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13484~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13484~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13484~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13485~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13485~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13485~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~306~^279.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13485~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13485~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13485~^~601~^102.^0^^~4~^~BFSN~^~13597~^^^^^^^^^~07/01/2010~ -~13486~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13486~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~268~^630.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13486~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~305~^194.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~306~^318.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13486~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13486~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13486~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13487~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13487~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13487~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~305~^191.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~306~^309.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~307~^51.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13487~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13487~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13487~^~601~^63.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13488~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13488~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13488~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~305~^196.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~306~^327.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13488~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13488~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13488~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13490~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13490~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~268~^763.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13490~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~305~^242.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~306~^392.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13490~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13490~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13490~^~601~^95.^0^^~4~^~BFSN~^~13981~^^^^^^^^^~07/01/2010~ -~13491~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13491~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13491~^~301~^18.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~304~^17.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~305~^306.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~306~^435.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~307~^75.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~318~^9.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~319~^3.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~320~^3.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~13491~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~417~^5.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~431~^0.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~432~^5.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~435~^5.^0^^~4~^~NC~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~601~^86.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13492~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13492~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13492~^~301~^18.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~304~^17.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~305~^307.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~306~^429.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~307~^78.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~318~^9.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~319~^3.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~320~^3.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13492~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~417~^5.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~431~^0.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~432~^5.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~435~^5.^0^^~4~^~NC~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~601~^85.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13493~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13493~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~268~^660.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13493~^~301~^19.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~304~^17.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~305~^305.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~306~^438.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~307~^76.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~318~^10.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~319~^3.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~320~^3.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~ -~13493~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~417~^5.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~431~^0.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~432~^5.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~435~^5.^0^^~4~^~NC~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~601~^88.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13494~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13494~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13494~^~301~^41.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~305~^202.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~306~^328.^12^17.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~307~^96.^12^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13494~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13494~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~417~^13.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~432~^13.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~ -~13494~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13494~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13495~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13495~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~268~^1007.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13495~^~301~^33.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~304~^17.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~305~^166.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~306~^241.^12^14.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~307~^73.^12^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13495~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13495~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~417~^7.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~432~^7.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~ -~13495~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13495~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13496~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~268~^995.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13496~^~301~^37.^12^8.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~305~^194.^12^8.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~306~^308.^12^19.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~307~^92.^12^3.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13496~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13496~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~417~^10.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~02/01/2006~ -~13496~^~431~^0.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~ -~13496~^~432~^10.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~02/01/2006~ -~13496~^~435~^10.^0^^~4~^~NC~^~13497~^^^^^^^^^~03/01/2006~ -~13496~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~13497~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~268~^1158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~13497~^~301~^35.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~304~^19.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~305~^185.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~306~^275.^36^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~307~^81.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13497~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13497~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~417~^11.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~432~^11.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~ -~13497~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13497~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13498~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~268~^1389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~13498~^~301~^24.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~304~^14.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~305~^132.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~306~^218.^36^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13498~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13498~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~417~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~432~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~13498~^~601~^78.^36^2.^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~13499~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~301~^11.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~305~^186.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~306~^329.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~307~^77.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13499~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13499~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13499~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13499~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~ -~13499~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2010~ -~13499~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13500~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~268~^819.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~305~^224.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~306~^390.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~307~^87.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13500~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13500~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13500~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13500~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13500~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~601~^95.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13501~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~268~^844.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~305~^226.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~306~^389.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13501~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13501~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13501~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13501~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13501~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~13501~^~601~^93.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13502~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~268~^782.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~305~^228.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~306~^394.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~307~^89.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13502~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13502~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13502~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13502~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13502~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~13502~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13519~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~305~^203.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~306~^338.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~307~^83.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13519~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13519~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13519~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13519~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13519~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13520~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13520~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~305~^202.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~306~^340.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~307~^82.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13520~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13520~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13520~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13520~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13520~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13520~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13520~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~13520~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13523~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~268~^557.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~305~^211.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~306~^346.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~307~^87.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13523~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13523~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13523~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13523~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13523~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~13523~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13595~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~268~^552.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~304~^24.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~305~^222.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~306~^362.^6^6.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~307~^83.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13595~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13595~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13595~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13595~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13595~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13596~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~268~^573.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~304~^24.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~305~^224.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~306~^367.^4^7.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~307~^82.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13596~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13596~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13596~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13596~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13596~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~13596~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13597~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13597~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13597~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~305~^218.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~306~^353.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13597~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13597~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13597~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13597~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13597~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13597~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13597~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~13597~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~268~^879.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~305~^217.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~306~^379.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~307~^85.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13598~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13598~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13598~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13598~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13598~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~601~^95.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13647~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~305~^236.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~306~^399.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~307~^73.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13647~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~324~^1.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13647~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13647~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13647~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~601~^65.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~268~^525.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~304~^25.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~305~^237.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~306~^408.^4^10.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~307~^74.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13648~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~324~^2.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13648~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13648~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13648~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~13648~^~601~^64.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13649~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13649~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~304~^26.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~305~^235.^6^3.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~306~^386.^6^14.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~307~^71.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13649~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13649~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13649~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~324~^1.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13649~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13649~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13649~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~13649~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~305~^217.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~306~^374.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~307~^84.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13650~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13650~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13650~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13650~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13650~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~13650~^~601~^92.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~301~^17.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~305~^189.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~306~^332.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~307~^81.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13786~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13786~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13786~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13786~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13786~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~268~^773.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~305~^186.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~306~^310.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~307~^80.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13788~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13788~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13788~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13788~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13788~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~13788~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13791~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13791~^~301~^18.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~304~^19.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~305~^187.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~306~^367.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~307~^82.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13791~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13791~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13791~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13791~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13791~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13791~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13791~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~13791~^~601~^73.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13795~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13795~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13795~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13795~^~305~^174.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~306~^283.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~307~^52.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13795~^~601~^72.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~208~^259.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~268~^1084.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~305~^180.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~306~^271.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~307~^50.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~324~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13796~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~13796~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13796~^~601~^87.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13797~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13797~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13797~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13797~^~305~^171.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~306~^276.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~307~^50.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13797~^~601~^72.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~208~^268.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~268~^1121.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~305~^175.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~306~^265.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~307~^49.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13798~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13798~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13798~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13799~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13799~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13799~^~305~^168.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~306~^279.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~307~^51.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13799~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13799~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13799~^~601~^68.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~208~^245.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~268~^1026.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~305~^174.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~306~^262.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~307~^51.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~318~^10.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13800~^~601~^85.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13803~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13803~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13803~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~305~^177.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~306~^282.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13803~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13803~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13803~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13803~^~601~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13804~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~268~^1385.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13804~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~305~^207.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~306~^251.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13804~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13804~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13804~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13804~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13804~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13804~^~601~^93.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13805~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~268~^1158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13805~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~305~^165.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~306~^276.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13805~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13805~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~417~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13805~^~432~^10.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13805~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13805~^~601~^92.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~ -~13806~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~268~^1210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~305~^175.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~306~^232.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~307~^48.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13806~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13806~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13806~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~601~^106.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~ -~13807~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13807~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~268~^1117.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13807~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~306~^264.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13807~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13807~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13807~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13807~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13808~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~268~^1460.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13808~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~305~^194.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~306~^241.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13808~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13808~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13808~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13808~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13809~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13809~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~268~^1022.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13809~^~301~^17.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~304~^19.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~305~^174.^4^4.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~306~^290.^4^8.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~307~^62.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13809~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13809~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~417~^10.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13809~^~432~^10.^4^0.^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13809~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13809~^~601~^91.^0^^~4~^~BFSN~^~23000~^^^^^^^^^~07/01/2010~ -~13810~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~301~^17.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~304~^20.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~305~^183.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~306~^242.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~307~^50.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13810~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13810~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13810~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~417~^9.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13810~^~432~^9.^4^0.^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13810~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~601~^120.^0^^~4~^~BFSN~^~23131~^^^^^^^^^~07/01/2010~ -~13811~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13811~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13811~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~304~^19.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~305~^171.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~306~^290.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~307~^63.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13811~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13811~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~417~^10.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13811~^~432~^10.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13811~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13811~^~601~^89.^0^^~4~^~BFSN~^~23111~^^^^^^^^^~07/01/2010~ -~13812~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~268~^1292.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~304~^20.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~305~^182.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~306~^241.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~307~^49.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13812~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13812~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13812~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~417~^9.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13812~^~432~^9.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13812~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~601~^121.^0^^~4~^~BFSN~^~23132~^^^^^^^^^~07/01/2010~ -~13813~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13813~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~268~^1001.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13813~^~301~^18.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~304~^19.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~305~^176.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~306~^290.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~307~^62.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13813~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13813~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~417~^10.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13813~^~432~^10.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13813~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13813~^~601~^93.^0^^~4~^~BFSN~^~23112~^^^^^^^^^~07/01/2010~ -~13814~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~268~^1235.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~301~^18.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~304~^20.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~305~^184.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~306~^243.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~307~^50.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13814~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13814~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~324~^12.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13814~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~417~^9.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13814~^~432~^9.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13814~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~601~^119.^0^^~4~^~BFSN~^~23133~^^^^^^^^^~07/01/2010~ -~13815~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13815~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~268~^1038.^0^^~4~^^^^^^^^^^^~01/01/2017~ -~13815~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~305~^162.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~306~^271.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13815~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13815~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13815~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~13816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~268~^1427.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13816~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~305~^202.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~306~^233.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~13816~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~ -~13816~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~13816~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13816~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13816~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13816~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13816~^~601~^104.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13817~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~268~^1123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13817~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~305~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13817~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13817~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13817~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13817~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13818~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~268~^1502.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13818~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~305~^198.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~306~^230.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~319~^0.^0^^~4~^~BFSN~^~13816~^^^^^^^^^~03/01/2007~ -~13818~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13818~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13818~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13818~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13818~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13818~^~601~^103.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13819~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~268~^962.^0^^~4~^^^^^^^^^^^~01/01/2017~ -~13819~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~305~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~306~^276.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13819~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13819~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13819~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13820~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~268~^1331.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13820~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~305~^206.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~306~^237.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~307~^66.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13820~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13820~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13820~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13820~^~601~^104.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13821~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~304~^22.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~305~^210.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~306~^344.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~307~^80.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13821~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13821~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13821~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13821~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13821~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~601~^83.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13822~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~268~^795.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~301~^18.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~305~^211.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~306~^339.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~307~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13822~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13822~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13822~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13822~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13822~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~13822~^~601~^84.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13823~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~268~^720.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~301~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~304~^22.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~306~^351.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~307~^81.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13823~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13823~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13823~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13823~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~13823~^~601~^81.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13824~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13824~^~268~^1280.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13824~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~305~^156.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~306~^272.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13824~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13824~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13824~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13825~^~268~^1410.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13825~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~305~^179.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~306~^315.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13825~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13825~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13825~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13826~^~268~^1469.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13826~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~305~^177.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~306~^305.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13826~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13826~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13826~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13827~^~268~^1347.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13827~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~305~^154.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13827~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13827~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13827~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13828~^~268~^1473.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13828~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~306~^313.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13828~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13828~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13828~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~13829~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~268~^1527.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13829~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~305~^176.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~306~^302.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~319~^0.^0^^~4~^~BFSN~^~13840~^^^^^^^^^~03/01/2007~ -~13829~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13829~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13829~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13829~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13829~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13829~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13830~^~268~^1205.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13830~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~305~^159.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~306~^278.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13830~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13830~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13830~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13831~^~268~^1318.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13831~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~306~^321.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13831~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13831~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13831~^~601~^81.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13832~^~268~^1381.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13832~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~305~^180.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~306~^310.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13832~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13832~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13832~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13833~^~268~^1485.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~13833~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~305~^152.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~306~^263.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13833~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~13833~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13833~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13834~^~268~^1615.^0^^~4~^^^^^^^^^^^ -~13834~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~305~^169.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~306~^310.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13834~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13834~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13834~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13834~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13835~^~268~^1674.^0^^~4~^^^^^^^^^^^ -~13835~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13835~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13835~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13835~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13835~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13838~^~268~^1322.^0^^~4~^^^^^^^^^^^ -~13838~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~305~^153.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~306~^260.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13838~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13838~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13838~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13838~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13839~^~268~^1414.^0^^~4~^^^^^^^^^^^ -~13839~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~306~^309.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13839~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13839~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13839~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13839~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~13840~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~268~^1485.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13840~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~305~^173.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~306~^293.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~13840~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~ -~13840~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~13840~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13840~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13840~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13840~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13840~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13841~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~13841~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~305~^150.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~306~^254.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13841~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13841~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13841~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13841~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13842~^~268~^1548.^0^^~4~^^^^^^^^^^^ -~13842~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~306~^297.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13842~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13842~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13842~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13842~^~601~^81.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13843~^~268~^1582.^0^^~4~^^^^^^^^^^^ -~13843~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~305~^169.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~306~^286.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13843~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13843~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13843~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13843~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13844~^~268~^1234.^0^^~4~^^^^^^^^^^^ -~13844~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~305~^155.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~306~^266.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~307~^56.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13844~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13844~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13844~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13844~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13845~^~268~^1356.^0^^~4~^^^^^^^^^^^ -~13845~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~306~^309.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13845~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13845~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13845~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13845~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13846~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~13846~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~305~^176.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~306~^299.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13846~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13846~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13846~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13846~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13847~^~268~^1536.^0^^~4~^^^^^^^^^^^ -~13847~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~305~^147.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~306~^248.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13847~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13847~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13847~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13847~^~601~^73.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13848~^~268~^1690.^0^^~4~^^^^^^^^^^^ -~13848~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~305~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~306~^298.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13848~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13848~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13848~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13848~^~601~^86.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13849~^~268~^1644.^0^^~4~^^^^^^^^^^^ -~13849~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~305~^172.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~306~^291.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13849~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13849~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13849~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13849~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13850~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13850~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~268~^1065.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13850~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~305~^176.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~306~^295.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13850~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13850~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13850~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13850~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13850~^~601~^81.^0^^~4~^~BFSN~^~23128~^^^^^^^^^~07/01/2010~ -~13851~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~268~^1218.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~305~^201.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~306~^323.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13851~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13851~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13851~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13851~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13851~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~601~^97.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~ -~13852~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13852~^~268~^1427.^0^^~4~^^^^^^^^^^^ -~13852~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~305~^183.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~306~^324.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13852~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13852~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13852~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13852~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13853~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13853~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~268~^1101.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13853~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~305~^172.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~306~^293.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~307~^48.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13853~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13853~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13853~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13853~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13853~^~601~^80.^0^^~4~^~BFSN~^~23129~^^^^^^^^^~07/01/2010~ -~13854~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~268~^1272.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~306~^298.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13854~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13854~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13854~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13854~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~601~^94.^0^^~4~^~BFSN~^~23126~^^^^^^^^^~07/01/2010~ -~13855~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13855~^~268~^1502.^0^^~4~^^^^^^^^^^^ -~13855~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~305~^181.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13855~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13855~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13855~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13855~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13856~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13856~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13856~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~306~^297.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13856~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13856~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13856~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13856~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13856~^~601~^85.^0^^~4~^~BFSN~^~23130~^^^^^^^^^~07/01/2010~ -~13857~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~268~^1165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13857~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13857~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13857~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13857~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~601~^103.^0^^~4~^~BFSN~^~23127~^^^^^^^^^~07/01/2010~ -~13858~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13858~^~268~^1351.^0^^~4~^^^^^^^^^^^ -~13858~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~306~^328.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13858~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13858~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13858~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13858~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13859~^~268~^1401.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13859~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~305~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~306~^286.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13859~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13859~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13859~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13859~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13860~^~268~^1481.^0^^~4~^^^^^^^^^^^ -~13860~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~306~^332.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13860~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13860~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13860~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13860~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13861~^~268~^1720.^0^^~4~^^^^^^^^^^^ -~13861~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~306~^323.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13861~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~13861~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13861~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~13861~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13862~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~305~^224.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~306~^388.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~307~^88.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13862~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13862~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13862~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13862~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13862~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~13862~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~268~^610.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~305~^201.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~306~^335.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~307~^82.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13863~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13863~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13863~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13863~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13863~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13864~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13864~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~268~^816.^0^^~4~^^^^^^^^^^^~01/01/2017~ -~13864~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~305~^199.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~306~^342.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~13864~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13864~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13864~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13864~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13864~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13864~^~601~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13865~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~268~^983.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13865~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~305~^240.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~306~^395.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2009~ -~13865~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13865~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13865~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13865~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13865~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13865~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~13866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~268~^770.^0^^~4~^^^^^^^^^^^~01/01/2017~ -~13866~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~305~^199.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~306~^342.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13866~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13866~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13866~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13866~^~601~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13867~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~268~^912.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13867~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~305~^240.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~306~^395.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13867~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13867~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13867~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13867~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13868~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13868~^~301~^20.^4^4.^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~304~^22.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~305~^199.^4^3.^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~306~^327.^4^9.^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~307~^56.^4^2.^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13868~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13868~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13868~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13868~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13868~^~601~^73.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13869~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~268~^1033.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~301~^8.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~304~^21.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~305~^204.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~306~^266.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~307~^43.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13869~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13869~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13869~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13869~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13869~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~601~^100.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13870~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~268~^911.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13870~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~305~^164.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~306~^214.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~307~^35.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13870~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13870~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13870~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13870~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13870~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13871~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~305~^197.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~306~^319.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~307~^53.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13871~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13871~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13871~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~601~^75.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13872~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~301~^7.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~305~^199.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~306~^263.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~307~^42.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13872~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13872~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13872~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13872~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~601~^101.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13873~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~305~^159.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~306~^210.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~307~^34.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13873~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13873~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13873~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13873~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13874~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~268~^782.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~301~^23.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~305~^201.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~306~^335.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~307~^60.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13874~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13874~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13874~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13874~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~601~^72.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13875~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~301~^8.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~305~^208.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~306~^269.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~307~^43.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13875~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13875~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13875~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13875~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~601~^98.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13876~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~305~^170.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~306~^219.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~307~^35.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13876~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13876~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13876~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13876~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13877~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13877~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13877~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13877~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13877~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13878~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~306~^227.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13878~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13878~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13878~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13878~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13878~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13879~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13879~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13879~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~306~^334.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13879~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13879~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13879~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13879~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13879~^~601~^70.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13880~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~305~^171.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~306~^227.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13880~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13880~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13880~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13880~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13881~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13881~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~268~^668.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13881~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~305~^208.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~306~^346.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13881~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13881~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13881~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13881~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13881~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13882~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~306~^228.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13882~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13882~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13882~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13882~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13883~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13883~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~268~^791.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13883~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~306~^329.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13883~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13883~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13883~^~601~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~13884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13884~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~305~^230.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~306~^367.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~13884~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~ -~13884~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~13884~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13884~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13884~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13884~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13884~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~268~^833.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13885~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~305~^192.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~306~^326.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13885~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13885~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13885~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13885~^~601~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~268~^954.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13886~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~305~^229.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~306~^365.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~319~^0.^0^^~4~^~BFSN~^~13884~^^^^^^^^^~03/01/2007~ -~13886~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13886~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13886~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13886~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13886~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13886~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13887~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~268~^745.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13887~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~305~^195.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~306~^332.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13887~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13887~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13887~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13887~^~601~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13888~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~268~^879.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13888~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~305~^232.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~306~^370.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13888~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13888~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13888~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13888~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13888~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13888~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13889~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13889~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~305~^199.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~306~^336.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13889~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13889~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13889~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13889~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13889~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13889~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13889~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~13889~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13890~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~301~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~304~^35.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~305~^286.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~306~^484.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~307~^65.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13890~^~319~^0.^0^^~4~^~BFSN~^~23621~^^^^^^^^^~03/01/2007~ -~13890~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13890~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13890~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~417~^14.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13890~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~601~^102.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13891~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~268~^693.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13891~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~305~^212.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13891~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13891~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13891~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13891~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13891~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13892~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~13892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~268~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13892~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~305~^215.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~13892~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~ -~13892~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~13892~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13892~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13892~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13892~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13892~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13893~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13893~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13893~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~305~^193.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~306~^252.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~307~^41.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13893~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13893~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13893~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13893~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13893~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13893~^~601~^90.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13894~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13894~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13894~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~306~^341.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13894~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13894~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13894~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13894~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13894~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13895~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13895~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~268~^1046.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13895~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~305~^214.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~306~^317.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13895~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13895~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13895~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13895~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13896~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13896~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13896~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~306~^248.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~307~^40.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13896~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13896~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13896~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13896~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13896~^~601~^92.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13897~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13897~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~268~^1113.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13897~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~304~^33.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~305~^274.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~306~^480.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13897~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13897~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13897~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~417~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13897~^~432~^12.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13897~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~13897~^~601~^97.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13898~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13898~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13898~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13898~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13898~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13898~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13898~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13898~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13899~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13899~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~268~^941.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13899~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~305~^217.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~306~^321.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13899~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13899~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13899~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13899~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13900~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~268~^839.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13900~^~301~^8.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~306~^256.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~307~^41.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13900~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13900~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13900~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13900~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13900~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13901~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13901~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~268~^724.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13901~^~301~^3.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~305~^213.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~306~^371.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~307~^51.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13901~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13901~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13901~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13901~^~601~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13902~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~268~^941.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13902~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~304~^30.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~305~^243.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~306~^436.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~307~^61.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13902~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~417~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13902~^~432~^12.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13902~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~13902~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13903~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13903~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~268~^573.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13903~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~305~^210.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~306~^344.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~307~^86.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13903~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13903~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13903~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13903~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13903~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13903~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13903~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~13903~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~305~^210.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~306~^344.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~307~^80.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13904~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13904~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13904~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13904~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13904~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13905~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~268~^914.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~304~^10.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~305~^188.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~306~^246.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13905~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~324~^5.^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~ -~13905~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~ -~13905~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~ -~13905~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~ -~13905~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~03/01/2013~ -~13905~^~601~^61.^4^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~305~^207.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~306~^255.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13906~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~324~^5.^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~ -~13906~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13906~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13906~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13906~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~ -~13906~^~601~^85.^4^2.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~301~^21.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~304~^10.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~305~^174.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~306~^229.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~307~^35.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13907~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~324~^5.^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~ -~13907~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~417~^5.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13907~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13907~^~432~^5.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13907~^~435~^5.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~ -~13907~^~601~^62.^4^0.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~268~^1230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~304~^17.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~305~^194.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~306~^240.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~13908~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~324~^6.^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~ -~13908~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13908~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13908~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~13908~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~ -~13908~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13909~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13909~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~268~^953.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13909~^~301~^24.^4^6.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~304~^21.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~305~^186.^4^1.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~306~^313.^4^5.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~307~^52.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13909~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13909~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13909~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13909~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13909~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13910~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~268~^1106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~301~^19.^4^2.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~304~^22.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~305~^204.^4^5.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~306~^328.^4^8.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~307~^54.^4^1.^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13910~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13910~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13910~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13910~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13910~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~601~^88.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13911~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~268~^992.^0^^~4~^^^^^^^^^^^~05/01/2013~ -~13911~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~306~^302.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13911~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13912~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~268~^1164.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13912~^~301~^17.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~305~^195.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~306~^316.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~307~^52.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13912~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13912~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~324~^12.^0^^~4~^~BFFN~^~13910~^^^^^^^^^~07/01/2015~ -~13912~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13912~^~431~^0.^0^^~4~^~BFPN~^~13910~^^^^^^^^^~07/01/2015~ -~13912~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13912~^~435~^8.^0^^~4~^~NC~^~13910~^^^^^^^^^~07/01/2015~ -~13912~^~601~^97.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13913~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13913~^~301~^23.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~305~^189.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~306~^313.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~307~^52.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13913~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13913~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13913~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13913~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13913~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13914~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13914~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~268~^1048.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13914~^~301~^22.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~304~^23.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~305~^213.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~306~^340.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~307~^57.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13914~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13914~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13914~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13914~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13914~^~601~^79.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13915~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~13915~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~268~^1176.^0^^~4~^^^^^^^^^^^~05/01/2008~ -~13915~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~306~^295.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~13915~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13915~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2008~ -~13915~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~13915~^~601~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13916~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~268~^1297.^0^^~4~^^^^^^^^^^^~05/01/2008~ -~13916~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~305~^197.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~306~^354.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~13916~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13916~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2008~ -~13916~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13916~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13917~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~268~^1036.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13917~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~306~^302.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13917~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13917~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13917~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13917~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13918~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~268~^1119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13918~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~305~^205.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~306~^329.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13918~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13918~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13918~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13918~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13918~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13918~^~601~^97.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13919~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~268~^1356.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13919~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~306~^331.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13919~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13919~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13919~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13919~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13920~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13920~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13920~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~306~^303.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13920~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13920~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13920~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13920~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13920~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13921~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~305~^196.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~306~^318.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13921~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13921~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13921~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13921~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~601~^99.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13922~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~13922~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~268~^1385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~13922~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~305~^236.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~306~^407.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13922~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13922~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13922~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13922~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13923~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13923~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~305~^182.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~306~^300.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13923~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13923~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13923~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13923~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13923~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13924~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~268~^1097.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13924~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13924~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13924~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13924~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13925~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13925~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~268~^1322.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13925~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~306~^331.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13925~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13925~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13925~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13925~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13926~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~268~^1146.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13926~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~305~^181.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~307~^49.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13926~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13926~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13926~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~13926~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13927~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~268~^1289.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~13927~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~305~^210.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~306~^368.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13927~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13927~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~ -~13927~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~13927~^~601~^86.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~268~^1435.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13928~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~306~^336.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~319~^0.^0^^~4~^~BFSN~^~13918~^^^^^^^^^~03/01/2007~ -~13928~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13928~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~324~^17.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13928~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13928~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13928~^~601~^88.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13929~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~268~^842.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13929~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~306~^315.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13929~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13929~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13929~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13929~^~601~^75.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13930~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~268~^1019.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~306~^336.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13930~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13930~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13930~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~601~^92.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13931~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~268~^895.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13931~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~305~^181.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~306~^309.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~307~^51.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13931~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13931~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13931~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13931~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13932~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~268~^1073.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~305~^201.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~306~^327.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13932~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13932~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13932~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13933~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~13933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~268~^1310.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~13933~^~301~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~304~^28.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~305~^235.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~306~^406.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~307~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~319~^0.^0^^~4~^~BFSN~^~13930~^^^^^^^^^~03/01/2007~ -~13933~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~13933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13933~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~ -~13933~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~13933~^~601~^98.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13934~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~268~^789.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13934~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~305~^194.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~306~^321.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13934~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13934~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13934~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13934~^~601~^72.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13935~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~305~^217.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~306~^345.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13935~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~13935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~13935~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13935~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~601~^89.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13937~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13937~^~268~^716.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13937~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13937~^~304~^22.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13937~^~305~^223.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13937~^~306~^386.^0^^~4~^~BFNY~^^^^^^^^^^~07/01/2001~ -~13937~^~307~^74.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13937~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13937~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~13937~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2002~ -~13937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~324~^6.^4^1.^~1~^~A~^^^1^3.^8.^3^1.^10.^~2, 3~^~04/01/2009~ -~13937~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~417~^9.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13937~^~432~^9.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13937~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13937~^~601~^87.^0^^~4~^~BFSN~^~23081~^^^^^^^^^~07/01/2010~ -~13940~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13940~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13940~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13940~^~304~^22.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13940~^~305~^222.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13940~^~306~^384.^0^^~4~^~BFNY~^^^^^^^^^^~07/01/2001~ -~13940~^~307~^74.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~13940~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~ -~13940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2002~ -~13940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~324~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~04/01/2009~ -~13940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~417~^10.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13940~^~432~^10.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13940~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13940~^~601~^90.^0^^~4~^~BFSN~^~23082~^^^^^^^^^~07/01/2010~ -~13943~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13943~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13943~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~304~^26.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~305~^249.^4^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~306~^372.^4^9.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~307~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13943~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13943~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13943~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13943~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13943~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13943~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~13943~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~09/01/2010~ -~13943~^~601~^81.^3^1.^~1~^~AR~^^^^^^^^^^~09/01/2010~ -~13946~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13946~^~268~^708.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~305~^249.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~306~^371.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~307~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13946~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13946~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13946~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13946~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13946~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~13946~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~13946~^~601~^83.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13948~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13948~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~305~^210.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~306~^339.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13948~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13948~^~601~^79.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13949~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~305~^220.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~306~^351.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~307~^58.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13949~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13949~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13949~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13950~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~305~^208.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~306~^275.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~307~^57.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13950~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13950~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13950~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~601~^93.^0^^~4~^~BFSN~^~13983~^^^^^^^^^~07/01/2010~ -~13951~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~305~^223.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~306~^355.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~307~^59.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13951~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13951~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~601~^92.^0^^~4~^~BFSN~^~23127~^^^^^^^^^~07/01/2010~ -~13952~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~306~^340.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13952~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13952~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13952~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~601~^89.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~ -~13953~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~268~^883.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13953~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~306~^323.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13953~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13953~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2015~ -~13953~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~13953~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13954~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~268~^692.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13954~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~305~^189.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~306~^317.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~307~^52.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13954~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13954~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13954~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13955~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13955~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~304~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~305~^189.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~306~^308.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~307~^50.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13955~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13955~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13955~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13955~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13956~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13956~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~305~^183.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~306~^313.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~307~^51.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13956~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13956~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13956~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13956~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13957~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~268~^841.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13957~^~301~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~306~^338.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13957~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13957~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13957~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13958~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13958~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~305~^194.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~306~^321.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13958~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13958~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13958~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13958~^~601~^65.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13959~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13959~^~301~^18.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~304~^17.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~305~^305.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~306~^433.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~307~^75.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~318~^15.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~319~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~320~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13959~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~417~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~431~^0.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~432~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~435~^5.^0^^~4~^~NC~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~601~^86.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13961~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13961~^~268~^675.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13961~^~301~^8.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13961~^~304~^23.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~305~^234.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13961~^~306~^293.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~307~^73.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13961~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13961~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13961~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13961~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13961~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13961~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13961~^~601~^94.^0^^~4~^~BFSN~^~23084~^^^^^^^^^~07/01/2010~ -~13963~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13963~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13963~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13963~^~304~^23.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~305~^217.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13963~^~306~^293.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13963~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13963~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13963~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13963~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13963~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13963~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13963~^~601~^99.^0^^~4~^~BFSN~^~23085~^^^^^^^^^~07/01/2010~ -~13965~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13965~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13965~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13965~^~304~^24.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~305~^218.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13965~^~306~^304.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13965~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13965~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13965~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13965~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13965~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13965~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13965~^~601~^93.^0^^~4~^~BFSN~^~13501~^^^^^^^^^~07/01/2010~ -~13967~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13967~^~268~^769.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13967~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13967~^~304~^24.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~305~^217.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13967~^~306~^304.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13967~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13967~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13967~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~417~^9.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13967~^~432~^9.^0^^~4~^~BFYN~^^^^^^^^^^~07/01/2010~ -~13967~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13967~^~601~^94.^0^^~4~^~BFSN~^~13502~^^^^^^^^^~07/01/2010~ -~13968~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13968~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13968~^~301~^18.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~304~^17.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~305~^305.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~306~^426.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~307~^78.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~318~^15.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~319~^4.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~320~^4.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13968~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~417~^5.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~431~^0.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~432~^5.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~435~^5.^0^^~4~^~NC~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~601~^86.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13969~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~13969~^~301~^19.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~304~^16.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~305~^304.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~306~^436.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~307~^76.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~318~^16.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~319~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~320~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13969~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~417~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~431~^0.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~432~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~435~^5.^0^^~4~^~NC~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~601~^88.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13970~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13970~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13970~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~305~^195.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~306~^328.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13970~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13970~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2003~ -~13970~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13970~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13970~^~601~^65.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13971~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~268~^608.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~305~^197.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13971~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~13971~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13971~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13972~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~305~^204.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~306~^357.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~307~^85.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13972~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13972~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13972~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13972~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~601~^69.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13973~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~268~^580.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13973~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~305~^201.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~306~^332.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13973~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13973~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13973~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13973~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~13973~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~13973~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13974~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13974~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~305~^200.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~306~^393.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~307~^86.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13974~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13974~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13974~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13974~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13974~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13974~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~13974~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~13974~^~601~^74.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~268~^708.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~305~^212.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~306~^349.^4^7.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~307~^79.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13975~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13975~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13975~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13975~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~13975~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~13975~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13977~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13977~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13977~^~301~^11.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~304~^24.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13977~^~305~^236.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~306~^295.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13977~^~307~^76.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13977~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13977~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~417~^7.^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13977~^~432~^7.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~ -~13977~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13977~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13979~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13979~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13979~^~301~^10.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13979~^~305~^221.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~306~^393.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~307~^94.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13979~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13979~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13979~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~417~^8.^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13979~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13979~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13979~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13980~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13980~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~305~^200.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~306~^264.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13980~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13980~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13980~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13980~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~13980~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~13980~^~601~^102.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13981~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~268~^937.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13981~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~306~^308.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~307~^75.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13981~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13981~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13981~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13981~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13981~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13981~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~13981~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~13981~^~601~^108.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13982~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~305~^201.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~306~^276.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~307~^75.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13982~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13982~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13982~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13982~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13982~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~601~^105.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~305~^206.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~306~^336.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~307~^82.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13983~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13983~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13983~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13983~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~13983~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~13983~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13985~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13985~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~13985~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~13985~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13985~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13985~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~13985~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~13985~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13985~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13985~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13985~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~14003~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14003~^~301~^4.^3^0.^~1~^~A~^^^1^4.^6.^2^1.^7.^~2, 3~^~04/01/2004~ -~14003~^~304~^6.^3^0.^~1~^~A~^^^1^6.^6.^2^4.^6.^~2, 3~^~04/01/2004~ -~14003~^~305~^14.^3^2.^~1~^~A~^^^1^10.^17.^2^4.^22.^~2, 3~^~04/01/2004~ -~14003~^~306~^27.^3^2.^~1~^~A~^^^1^24.^31.^2^17.^37.^~2, 3~^~04/01/2004~ -~14003~^~307~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^6.^~2, 3~^~04/01/2004~ -~14003~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14003~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~14003~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14003~^~417~^6.^3^0.^~1~^~A~^^^1^4.^7.^2^2.^8.^~1, 2, 3~^~04/01/2004~ -~14003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14003~^~432~^6.^3^0.^~1~^~A~^^^1^4.^7.^2^2.^8.^^~03/01/2005~ -~14003~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14003~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14004~^~208~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~268~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~304~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~305~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~306~^33.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14005~^~208~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~268~^117.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~304~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~306~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14006~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14006~^~301~^4.^4^0.^~1~^~A~^^^1^3.^4.^3^3.^4.^~2, 3~^~04/01/2004~ -~14006~^~304~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^3.^5.^~2, 3~^~04/01/2004~ -~14006~^~305~^12.^4^1.^~1~^~A~^^^1^7.^14.^3^6.^16.^~2, 3~^~04/01/2004~ -~14006~^~306~^21.^4^1.^~1~^~A~^^^1^17.^25.^3^16.^26.^~2, 3~^~04/01/2004~ -~14006~^~307~^4.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^7.^~2, 3~^~04/01/2004~ -~14006~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14006~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~14006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~417~^6.^4^1.^~1~^~A~^^^1^4.^9.^3^2.^10.^~1, 2, 3~^~04/01/2004~ -~14006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14006~^~432~^6.^4^1.^~1~^~A~^^^1^4.^9.^3^2.^10.^^~04/01/2005~ -~14006~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14006~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14007~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14007~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14007~^~301~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~304~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~305~^11.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~306~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14009~^~208~^125.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~268~^523.^0^^~4~^^^^^^^^^^^ -~14009~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~305~^2.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~306~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~307~^40.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~318~^2.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14009~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14009~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14009~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14010~^~208~^186.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~268~^777.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~301~^3.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~304~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~305~^5.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~306~^21.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~307~^5.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~14010~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~14010~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14010~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14013~^~208~^27.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~268~^112.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~304~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~305~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~306~^17.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14013~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14015~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14015~^~268~^992.^0^^~4~^^^^^^^^^^^ -~14015~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~304~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~305~^36.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~306~^83.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~307~^71.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~318~^24.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14015~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14015~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14015~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14015~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14016~^~208~^38.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~268~^157.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~304~^7.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~305~^8.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~306~^50.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~307~^63.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14016~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14016~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14016~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~14016~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14017~^~208~^174.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~268~^728.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~301~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~304~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~305~^7.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~306~^71.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~307~^6.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~318~^2.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~320~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~321~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~417~^12.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~432~^12.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14017~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14019~^~208~^110.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~268~^460.^0^^~4~^^^^^^^^^^^ -~14019~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~304~^7.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~305~^10.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~306~^10.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~307~^57.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~318~^97.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14019~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14019~^~417~^11.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14019~^~432~^11.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14019~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14021~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14021~^~262~^13.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~268~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14021~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~306~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~307~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14022~^~208~^5.^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~262~^30.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~268~^23.^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~307~^75.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~14022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14024~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14024~^~268~^1602.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14024~^~301~^272.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~304~^19.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~305~^13.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~306~^19.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~307~^274.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~318~^30.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14024~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14024~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14024~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14024~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14025~^~208~^164.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~268~^684.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~301~^46.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~305~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~306~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~307~^47.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~318~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14025~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14026~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14026~^~262~^34.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14026~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~268~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14026~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~307~^85.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14026~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14026~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14026~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14027~^~208~^119.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~268~^498.^0^^~4~^^^^^^^^^^^ -~14027~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~305~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~306~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~307~^44.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~318~^13.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14027~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14027~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14027~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14027~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14028~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14028~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~268~^364.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14028~^~301~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~306~^28.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~307~^102.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14028~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~14028~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14029~^~208~^153.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~268~^638.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~301~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~305~^5.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~306~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~307~^61.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14029~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14030~^~208~^44.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~262~^34.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14030~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~268~^183.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~307~^85.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14030~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14031~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14031~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~268~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14031~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~305~^0.^0^^~4~^~BFZN~^~14440~^^^^^^^^^~02/01/2013~ -~14031~^~306~^8.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~307~^10.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14033~^~208~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~268~^1609.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~301~^256.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~304~^181.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~305~^643.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~306~^564.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~307~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~318~^54.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~319~^15.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~417~^200.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~431~^200.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~432~^0.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~435~^340.^0^^~4~^~NC~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~601~^205.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14034~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~268~^1552.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14034~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~304~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~305~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~306~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~307~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14034~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14034~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14034~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14035~^~208~^405.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14035~^~268~^1694.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~301~^95.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~305~^441.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~306~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~307~^452.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14035~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14035~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~417~^100.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~432~^100.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14035~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14036~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14036~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14036~^~301~^69.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~305~^101.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~306~^198.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14036~^~307~^95.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~318~^294.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14036~^~319~^88.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~320~^88.^0^^~4~^~NC~^^^^^^^^^^~11/01/2013~ -~14036~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~324~^28.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~417~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~431~^33.^0^^~4~^~O~^^^^^^^^^^~04/01/2014~ -~14036~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~14036~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14037~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~268~^967.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14037~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14037~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14037~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14037~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14038~^~208~^15.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~262~^23.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~268~^61.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~306~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~307~^21.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14038~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14038~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14041~^~208~^138.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~268~^579.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~301~^135.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~304~^38.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~305~^115.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~306~^138.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~307~^77.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~318~^480.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~319~^72.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~320~^84.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14041~^~321~^144.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~324~^92.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~417~^38.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~431~^38.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14041~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14041~^~601~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14044~^~208~^61.^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14044~^~268~^255.^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14044~^~301~^130.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~304~^44.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~305~^136.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14044~^~306~^179.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~318~^571.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14044~^~319~^171.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14044~^~320~^171.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14044~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~324~^45.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14044~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14044~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~431~^41.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14044~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~14044~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14044~^~601~^4.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~208~^57.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~268~^238.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~301~^161.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~304~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~305~^161.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~306~^193.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~307~^68.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~318~^565.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~319~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14045~^~320~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~324~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~431~^39.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14045~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14045~^~601~^3.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14047~^~268~^1876.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14047~^~301~^364.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~304~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~305~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~306~^247.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~307~^472.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~318~^3447.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14047~^~319~^1034.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~14047~^~320~^1034.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14047~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~324~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~417~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~431~^384.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14047~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~435~^653.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14047~^~601~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14048~^~208~^38.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~262~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~263~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~268~^159.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~301~^9.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~304~^10.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~305~^16.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~306~^192.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~307~^10.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~318~^400.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~319~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~320~^20.^0^^~4~^~NC~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~321~^232.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~ -~14048~^~322~^0.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~ -~14048~^~324~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~334~^15.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~ -~14048~^~337~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~338~^116.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~417~^44.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~431~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~432~^44.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~435~^44.^0^^~4~^~NC~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~601~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14050~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~268~^967.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14050~^~301~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~304~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~306~^2.^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~307~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~14050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14050~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14050~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14051~^~268~^967.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~14051~^~301~^0.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~304~^0.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~306~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~307~^1.^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14051~^~417~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14051~^~432~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14051~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~14052~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~14052~^~301~^0.^244^0.^~6~^~JA~^^^1^0.^0.^1^0.^1.^~4~^~11/01/2002~ -~14052~^~304~^0.^242^0.^~6~^~JA~^^^1^0.^0.^1^0.^0.^~4~^~11/01/2002~ -~14052~^~305~^3.^28^2.^~6~^~JA~^^^1^0.^5.^1^-31.^37.^~4~^~11/01/2002~ -~14052~^~306~^1.^258^0.^~6~^~JA~^^^1^1.^2.^1^-6.^8.^~4~^~11/01/2002~ -~14052~^~307~^0.^261^0.^~6~^~JA~^^^1^0.^1.^1^0.^1.^~4~^~11/01/2002~ -~14052~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14052~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~14052~^~417~^0.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14052~^~432~^0.^10^^~1~^^^^^^^^^^^~07/01/2003~ -~14052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14052~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14054~^~208~^50.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~263~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~268~^209.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~304~^12.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~306~^75.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~307~^71.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14054~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14054~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14054~^~601~^0.^1^^~11~^~JO~^^^1^0.^0.^1^^^^~05/01/2013~ -~14054~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~641~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14055~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14055~^~262~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~263~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~268~^1810.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14055~^~301~^1039.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14055~^~304~^473.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~305~^563.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~306~^752.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~307~^495.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~318~^2886.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14055~^~319~^865.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~320~^865.^0^^~4~^~NC~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~321~^1.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~322~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~324~^384.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~334~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~337~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~338~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~417~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~431~^384.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~432~^1.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~435~^653.^0^^~4~^~NC~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~601~^6.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14056~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~268~^260.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14056~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~306~^130.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~318~^9698.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~14056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~320~^485.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~14056~^~321~^5784.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~322~^46.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~334~^23.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~337~^899.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~338~^783.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14056~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14056~^~601~^0.^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~ -~14057~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~268~^671.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14057~^~301~^8.^26^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~304~^9.^19^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~305~^9.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~306~^92.^81^8.^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~307~^9.^89^1.^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14057~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~14057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~417~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14057~^~432~^0.^3^0.^~1~^^^^^^^^^^^~11/01/2002~ -~14057~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14057~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14058~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14058~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14058~^~301~^698.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~304~^233.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~305~^581.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~306~^872.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~307~^372.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~318~^2907.^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~14058~^~319~^872.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14058~^~320~^872.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14058~^~321~^1.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~322~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~324~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~334~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~337~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~338~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~417~^233.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~431~^233.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~14058~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14058~^~435~^395.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14058~^~601~^12.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14060~^~262~^38.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~268~^258.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14060~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~306~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~307~^48.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~14060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~431~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14060~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~435~^283.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~262~^32.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~268~^17.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~417~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14061~^~431~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14061~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~435~^283.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14061~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14062~^~208~^105.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~268~^441.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~301~^127.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~304~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~305~^105.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~306~^156.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~307~^84.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~318~^527.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14062~^~319~^158.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~320~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14062~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~417~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~431~^42.^0^^~4~^~O~^^^^^^^^^^~04/01/2014~ -~14062~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~14062~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14063~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~14063~^~262~^1.^0^^~9~^~MC~^~14315~^^^^^^^^^~07/01/2013~ -~14063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~268~^1465.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~14063~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~304~^410.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~305~^500.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~306~^1705.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~307~^500.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~14063~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2017~ -~14063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~324~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~417~^7.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~ -~14063~^~431~^0.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~ -~14063~^~432~^7.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~ -~14063~^~435~^7.^0^^~4~^~NC~^~14315~^^^^^^^^^~05/01/2013~ -~14063~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~208~^21.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~262~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~263~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~268~^87.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~304~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~305~^4.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~306~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14064~^~320~^10.^0^^~4~^~O~^^^^^^^^^^~07/01/2013~ -~14064~^~321~^79.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~ -~14064~^~322~^2.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~ -~14064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~334~^60.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~ -~14064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~338~^47.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~ -~14064~^~417~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~431~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14064~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14064~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~208~^45.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~268~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~14065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~208~^352.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~268~^1472.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~301~^469.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~304~^195.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~305~^1321.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~306~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~307~^156.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~417~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~432~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14066~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14067~^~268~^1622.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14067~^~301~^178.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~304~^64.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~305~^1272.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~306~^933.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~307~^733.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~319~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~320~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~321~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~322~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14067~^~334~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~337~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~338~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~417~^289.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~431~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~432~^289.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~435~^289.^0^^~4~^~NC~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14073~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14073~^~262~^13.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14073~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~307~^6.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14073~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14073~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14074~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14074~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~307~^6.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14074~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~301~^33.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~14075~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~306~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~14075~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14075~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~262~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~268~^203.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~301~^13.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~304~^3.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~305~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14079~^~306~^2.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14079~^~307~^18.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~417~^0.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~05/01/2014~ -~14079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14079~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14080~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14080~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~307~^636.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~318~^4545.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~319~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14080~^~320~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14080~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14080~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14082~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~301~^33.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~14082~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~306~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~ -~14082~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~14082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14082~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14083~^~208~^49.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~268~^205.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~301~^234.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~305~^97.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~306~^158.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~307~^77.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~318~^458.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14083~^~319~^137.^0^^~4~^~BFZN~^~42290~^^^^^^^^^~05/01/2014~ -~14083~^~320~^137.^0^^~4~^~NC~^~42290~^^^^^^^^^~05/01/2014~ -~14083~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~324~^60.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14083~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14083~^~601~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14084~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14084~^~301~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~02/01/2005~ -~14084~^~304~^11.^2^^~1~^~A~^^^1^10.^12.^1^^^^~02/01/2005~ -~14084~^~305~^20.^2^^~1~^~A~^^^1^18.^23.^1^^^^~02/01/2005~ -~14084~^~306~^99.^2^^~1~^~A~^^^1^71.^127.^1^^^^~02/01/2005~ -~14084~^~307~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~02/01/2005~ -~14084~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14084~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~14084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~02/01/2005~ -~14084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14084~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14084~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14084~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14086~^~208~^37.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~268~^154.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~307~^29.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~318~^1429.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~208~^37.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~268~^154.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~307~^29.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~318~^408.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~268~^170.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~307~^20.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14090~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14090~^~301~^7.^9^1.^~1~^~A~^^^1^2.^15.^8^4.^10.^~2, 3~^~07/01/2014~ -~14090~^~304~^6.^9^0.^~1~^~A~^^^1^3.^10.^8^4.^8.^~2, 3~^~07/01/2014~ -~14090~^~305~^5.^9^0.^~1~^~A~^^^1^1.^8.^8^2.^7.^~2, 3~^~07/01/2014~ -~14090~^~306~^165.^9^9.^~1~^~A~^^^1^116.^203.^8^142.^187.^~2, 3~^~07/01/2014~ -~14090~^~307~^26.^9^5.^~1~^~A~^^^1^11.^52.^8^13.^38.^~2, 3~^~07/01/2014~ -~14090~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~14090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~14090~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~14090~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14091~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14091~^~301~^184.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~305~^9.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~306~^67.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~307~^72.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~14091~^~319~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~14091~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~324~^41.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~417~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~432~^1.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~14091~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14091~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14092~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14092~^~262~^0.^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~263~^5.^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14092~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~304~^10.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~306~^96.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~307~^75.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14092~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~14092~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14092~^~321~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~322~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~334~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~337~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~338~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~417~^1.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~431~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~432~^1.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~435~^1.^0^^~4~^~NC~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14093~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14093~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14093~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~306~^148.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~ -~14093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14093~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14095~^~208~^50.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~262~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~263~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~268~^209.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~301~^2.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~304~^2.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~305~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~306~^10.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~307~^6.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14095~^~319~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~320~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~321~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~322~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14095~^~334~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~337~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~338~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~417~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~431~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~432~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~435~^1.^0^^~4~^~NC~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~601~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14096~^~208~^85.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14096~^~268~^356.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~305~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14096~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14096~^~321~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~322~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14096~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~338~^6.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14096~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~14096~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14096~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14097~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14097~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14098~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14098~^~268~^349.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14099~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14099~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14100~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14100~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14101~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14101~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14102~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14102~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14103~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14103~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14105~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14105~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14106~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14106~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~306~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14106~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~14106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14106~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14106~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14106~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14107~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14107~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14108~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14108~^~268~^359.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14109~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14109~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14113~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14113~^~268~^346.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14116~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14116~^~268~^334.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14117~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14117~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14119~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~268~^122.^0^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~301~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~305~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~306~^19.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~318~^2083.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~320~^104.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~321~^1178.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~322~^144.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14119~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14119~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14120~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14120~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14121~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~14121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~14121~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14121~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~304~^1.^2^^~1~^^^^^^^^^^^~07/01/2001~ -~14121~^~305~^0.^5^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~306~^2.^5^1.^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~307~^21.^6^5.^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~318~^0.^1^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14121~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~14121~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~14121~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14121~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14124~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14124~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14125~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14125~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14126~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14126~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14130~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14130~^~268~^213.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14130~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~304~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~305~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~306~^1.^8^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~307~^12.^8^2.^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14130~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14130~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14130~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14132~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14132~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14134~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14134~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14135~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14135~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14136~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14136~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14136~^~301~^3.^15^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~304~^1.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~305~^0.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~306~^1.^19^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~307~^7.^26^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14136~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~14136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14136~^~432~^0.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~14136~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14136~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14137~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14137~^~262~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14137~^~268~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14137~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~305~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~306~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~307~^21.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14138~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14138~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14140~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14140~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14142~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14142~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14142~^~301~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~305~^0.^9^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~306~^1.^25^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~307~^15.^25^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14142~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14142~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14142~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14142~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14143~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/1999~ -~14143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14143~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14143~^~301~^4.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~306~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~307~^6.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14143~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~14143~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14143~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14143~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~14143~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14143~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14144~^~262~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2013~ -~14144~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14144~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~307~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14144~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~14144~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14144~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14144~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14144~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14145~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14145~^~262~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2005~ -~14145~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14145~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14145~^~301~^2.^4^^~1~^~A~^^^4^0.^4.^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~304~^1.^4^^~1~^~A~^^^4^0.^1.^^^^~2, 3~^~04/01/2005~ -~14145~^~305~^0.^4^^~1~^~A~^^^4^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~306~^1.^4^^~1~^~A~^^^4^0.^2.^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~307~^9.^4^^~1~^~A~^^^4^1.^13.^^^^~2, 3~^~04/01/2005~ -~14145~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14145~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~14145~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14145~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~417~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14145~^~432~^0.^2^^~1~^^^^^^^^^^^~04/01/2005~ -~14145~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14145~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14146~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~ -~14146~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14146~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14146~^~301~^3.^4^0.^~1~^~A~^^^1^3.^3.^1^2.^3.^~2, 3~^~04/01/2005~ -~14146~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^1^0.^0.^~1, 2, 3~^~04/01/2005~ -~14146~^~305~^10.^4^0.^~1~^~A~^^^1^8.^15.^1^9.^11.^~2, 3~^~04/01/2005~ -~14146~^~306~^7.^4^0.^~1~^~A~^^^1^6.^9.^1^6.^7.^~2, 3~^~04/01/2005~ -~14146~^~307~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^3.^4.^~2, 3~^~04/01/2005~ -~14146~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14146~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~14146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14146~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14146~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14146~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14147~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~14147~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14147~^~268~^171.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14147~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~04/01/2005~ -~14147~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~ -~14147~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^3^8.^12.^~2, 3~^~04/01/2005~ -~14147~^~306~^3.^4^0.^~1~^~A~^^^1^1.^4.^3^0.^5.^~1, 2, 3~^~04/01/2005~ -~14147~^~307~^4.^4^0.^~1~^~A~^^^1^2.^6.^3^0.^6.^~1, 2, 3~^~04/01/2005~ -~14147~^~318~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~319~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~320~^0.^0^^~4~^~NC~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~321~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~322~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14147~^~334~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~337~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~338~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14147~^~417~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~431~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~432~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~435~^0.^0^^~4~^~NC~^~14400~^^^^^^^^^~12/01/2006~ -~14147~^~601~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14148~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~14148~^~262~^9.^6^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~01/01/2015~ -~14148~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14148~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~14148~^~301~^1.^12^0.^~1~^~A~^^^1^1.^2.^9^1.^1.^~2, 3~^~01/01/2015~ -~14148~^~304~^0.^12^0.^~1~^~A~^^^1^0.^0.^6^0.^0.^~2, 3~^~04/01/2005~ -~14148~^~305~^9.^12^0.^~1~^~A~^^^1^9.^9.^6^6.^11.^~2, 3~^~01/01/2015~ -~14148~^~306~^5.^12^0.^~1~^~A~^^^1^3.^6.^9^3.^5.^~2, 3~^~01/01/2015~ -~14148~^~307~^3.^12^0.^~1~^~A~^^^1^3.^4.^7^1.^4.^~2, 3~^~01/01/2015~ -~14148~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14148~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14148~^~321~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~322~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14148~^~334~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~337~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~338~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14148~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14148~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14148~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14149~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14149~^~262~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~2, 3~^~04/01/2005~ -~14149~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14149~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14149~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~04/01/2005~ -~14149~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~ -~14149~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^3^8.^12.^~2, 3~^~04/01/2005~ -~14149~^~306~^3.^4^0.^~1~^~A~^^^1^1.^4.^3^0.^5.^~1, 2, 3~^~04/01/2005~ -~14149~^~307~^4.^4^0.^~1~^~A~^^^1^2.^6.^3^0.^6.^~1, 2, 3~^~04/01/2005~ -~14149~^~318~^0.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~14149~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2005~ -~14150~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14150~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14150~^~301~^5.^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~304~^1.^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~305~^1.^11^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~306~^2.^76^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~307~^12.^30^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14150~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14150~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14150~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14150~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14151~^~208~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~262~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14151~^~268~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14151~^~301~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~306~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~307~^6.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14151~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14151~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14152~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14152~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14153~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14153~^~262~^10.^3^^~1~^^^^^^^^^^^~04/01/2003~ -~14153~^~268~^172.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14153~^~301~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~304~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~305~^11.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~306~^1.^8^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~307~^10.^8^1.^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14153~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14153~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14153~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14154~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14154~^~262~^29.^3^0.^~1~^~A~^^^1^29.^30.^2^27.^30.^~2, 3~^~02/01/2015~ -~14154~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14154~^~301~^6.^6^0.^~1~^~A~^^^1^5.^8.^5^4.^7.^~2, 3~^~02/01/2015~ -~14154~^~304~^19.^6^0.^~1~^~A~^^^1^18.^19.^5^18.^18.^~2, 3~^~02/01/2015~ -~14154~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~306~^3.^6^0.^~1~^~A~^^^1^2.^6.^5^1.^5.^~1, 2, 3~^~02/01/2015~ -~14154~^~307~^39.^6^0.^~1~^~A~^^^1^36.^41.^5^36.^40.^~2, 3~^~02/01/2015~ -~14154~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14154~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14154~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14154~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~14155~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14155~^~268~^142.^0^^~4~^^^^^^^^^^^~11/01/2004~ -~14155~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~304~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~305~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~306~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~307~^12.^3^1.^~8~^~LC~^^^1^10.^14.^2^7.^17.^~4~^~11/01/2004~ -~14155~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14155~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~14155~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14155~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14155~^~432~^0.^0^^~4~^^^^^^^^^^^~11/01/2004~ -~14155~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~14156~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14156~^~262~^30.^2^^~13~^~AI~^^^1^29.^31.^1^^^^~02/01/2005~ -~14156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14156~^~268~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14156~^~301~^13.^2^^~13~^~AI~^^^1^12.^14.^1^^^^~02/01/2005~ -~14156~^~304~^3.^2^^~13~^~AI~^^^1^3.^3.^1^^^^~02/01/2005~ -~14156~^~305~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~306~^3.^2^^~13~^~AI~^^^1^1.^6.^1^^^^~02/01/2005~ -~14156~^~307~^83.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14156~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~14156~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~320~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14156~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14156~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~03/01/2009~ -~14156~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14157~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14157~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14157~^~268~^172.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14157~^~301~^5.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~304~^1.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~305~^0.^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~306~^1.^27^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~307~^13.^27^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14157~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14157~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14158~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14158~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14159~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14159~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14160~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14160~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14160~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~306~^71.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14161~^~208~^47.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~268~^195.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~301~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~ -~14161~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~306~^14.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~ -~14161~^~307~^11.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~318~^20.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~319~^0.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~320~^1.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~321~^9.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~322~^4.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~334~^1.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~337~^0.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~338~^25.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~ -~14161~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14162~^~208~^22.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~268~^92.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~301~^3.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~304~^5.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~305~^9.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~306~^51.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~307~^13.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14162~^~319~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~320~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~321~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~322~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~334~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~337~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~338~^16.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~417~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~431~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~432~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~435~^0.^0^^~4~^~NC~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14163~^~208~^101.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~263~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~268~^424.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~301~^127.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~304~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~305~^127.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~306~^245.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~307~^63.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~318~^527.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~319~^158.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14163~^~320~^158.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14163~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~324~^101.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~417~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~431~^42.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14163~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14163~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14163~^~601~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14164~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~262~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~ -~14164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~301~^160.^6^1.^~1~^~A~^^^1^158.^166.^5^156.^163.^~2, 3~^~06/01/2015~ -~14164~^~304~^24.^6^0.^~1~^~A~^^^1^23.^27.^5^22.^25.^~2, 3~^~06/01/2015~ -~14164~^~305~^94.^6^1.^~1~^~A~^^^1^89.^97.^5^90.^96.^~2, 3~^~06/01/2015~ -~14164~^~306~^191.^6^5.^~1~^~A~^^^1^172.^208.^5^176.^204.^~2, 3~^~06/01/2015~ -~14164~^~307~^60.^6^1.^~1~^~A~^^^1^52.^64.^5^55.^64.^~2, 3~^~06/01/2015~ -~14164~^~318~^570.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~319~^171.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14164~^~320~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~324~^100.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~417~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~06/01/2015~ -~14164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14164~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~601~^5.^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14165~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14165~^~262~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^17.^18.^~2, 3~^~02/01/2015~ -~14165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14165~^~301~^2.^6^0.^~1~^~A~^^^1^1.^3.^5^1.^2.^~2, 3~^~02/01/2015~ -~14165~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~2, 3~^~02/01/2015~ -~14165~^~305~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~02/01/2015~ -~14165~^~306~^19.^6^0.^~1~^~A~^^^1^17.^21.^5^17.^21.^~2, 3~^~02/01/2015~ -~14165~^~307~^40.^6^2.^~1~^~A~^^^1^29.^44.^5^34.^46.^~2, 3~^~02/01/2015~ -~14165~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~14165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14166~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~14166~^~262~^11.^17^0.^~1~^^^^^^^^^^^~04/01/2003~ -~14166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14166~^~268~^0.^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14166~^~301~^4.^74^0.^~6~^~JA~^^^1^3.^4.^1^0.^8.^~4~^~12/01/2002~ -~14166~^~304~^1.^74^0.^~6~^~JA~^^^1^1.^1.^1^-2.^3.^~4~^~12/01/2002~ -~14166~^~305~^11.^41^0.^~6~^~JA~^^^1^11.^11.^1^8.^12.^~4~^~12/01/2002~ -~14166~^~306~^4.^74^2.^~6~^~JA~^^^1^2.^6.^1^-24.^32.^~4~^~12/01/2002~ -~14166~^~307~^16.^72^0.^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14166~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~ -~14166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~417~^0.^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14166~^~432~^0.^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~14166~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14167~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~306~^10.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~ -~14167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14168~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14168~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14168~^~301~^32.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~304~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~305~^7.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~306~^104.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~307~^103.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14168~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14168~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14168~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14168~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14169~^~208~^75.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~268~^313.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~301~^98.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~305~^80.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~306~^131.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~307~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~318~^97.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~319~^27.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14169~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14169~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14169~^~601~^10.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14171~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14171~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14171~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~306~^19.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~307~^19.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14171~^~320~^63.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14171~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14171~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14173~^~208~^36.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~262~^18.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~263~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~268~^149.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~304~^9.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~305~^59.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~306~^175.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~307~^34.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14173~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14173~^~321~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~322~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~324~^1.^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~334~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~337~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~338~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~417~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~431~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~432~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~435~^0.^0^^~4~^~NC~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~601~^5.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14174~^~208~^21.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~268~^87.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~301~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~304~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~305~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~306~^10.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14174~^~319~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~320~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~321~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~322~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~334~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~337~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~338~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~417~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~431~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~432~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~435~^1.^0^^~4~^~NC~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14177~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~263~^104.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~268~^356.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~301~^95.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~305~^88.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~306~^172.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~307~^58.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14177~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14177~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14177~^~601~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14179~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14179~^~262~^28.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14179~^~263~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14179~^~301~^74.^5^1.^~1~^~A~^^^1^70.^77.^4^69.^77.^~2, 3~^~02/01/2015~ -~14179~^~304~^9.^5^0.^~1~^~A~^^^1^9.^10.^4^8.^9.^~2, 3~^~02/01/2015~ -~14179~^~305~^59.^5^0.^~1~^~A~^^^1^56.^61.^4^55.^61.^~2, 3~^~02/01/2015~ -~14179~^~306~^175.^5^4.^~1~^~A~^^^1^166.^192.^4^160.^188.^~2, 3~^~02/01/2015~ -~14179~^~307~^26.^5^0.^~1~^~A~^^^1^24.^27.^4^24.^27.^~2, 3~^~02/01/2015~ -~14179~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14179~^~319~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~320~^0.^0^^~4~^~NC~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~321~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~322~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~08/01/2015~ -~14179~^~334~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~337~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~338~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~417~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~431~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~432~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~435~^0.^0^^~4~^~NC~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~601~^5.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14180~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14180~^~262~^37.^0^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~14180~^~268~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14180~^~301~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~2, 3~^~02/01/2015~ -~14180~^~304~^4.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^3.^~2, 3~^~02/01/2015~ -~14180~^~305~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~02/01/2015~ -~14180~^~306~^50.^6^1.^~1~^~A~^^^1^44.^56.^5^46.^54.^~2, 3~^~02/01/2015~ -~14180~^~307~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~1, 2, 3~^~02/01/2015~ -~14180~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~14180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14180~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14181~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~14181~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~263~^190.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~268~^1167.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~14181~^~301~^14.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~304~^65.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~305~^129.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~306~^224.^3^^~1~^^^^^^^^^^^~01/01/2005~ -~14181~^~307~^72.^15^13.^~1~^~A~^^^^^^^^^^~03/01/1998~ -~14181~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2008~ -~14181~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~14181~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2003~ -~14181~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14181~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14181~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14181~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14181~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~14181~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14182~^~208~^90.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14182~^~263~^64.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14182~^~268~^377.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~301~^89.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~305~^90.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~306~^145.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~307~^47.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~318~^88.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~319~^24.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14182~^~321~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14182~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14182~^~601~^9.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14183~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14183~^~262~^20.^2^^~1~^~A~^^^1^20.^21.^1^^^^~02/01/2015~ -~14183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14183~^~301~^52.^6^1.^~1~^~A~^^^1^44.^57.^5^47.^56.^~2, 3~^~02/01/2015~ -~14183~^~304~^9.^6^0.^~1~^~A~^^^1^7.^10.^5^7.^10.^~2, 3~^~02/01/2015~ -~14183~^~305~^59.^6^2.^~1~^~A~^^^1^51.^67.^5^51.^66.^~2, 3~^~02/01/2015~ -~14183~^~306~^136.^6^7.^~1~^~A~^^^1^115.^157.^5^115.^155.^~2, 3~^~02/01/2015~ -~14183~^~307~^31.^6^1.^~1~^~A~^^^1^25.^36.^5^26.^35.^~2, 3~^~02/01/2015~ -~14183~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~14183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~14183~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14185~^~262~^16.^2^^~1~^~A~^^^1^14.^19.^1^^^^~02/01/2015~ -~14185~^~263~^2.^2^^~1~^~A~^^^1^1.^4.^1^^^~1~^~02/01/2015~ -~14185~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14185~^~301~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~2, 3~^~02/01/2015~ -~14185~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~2, 3~^~02/01/2015~ -~14185~^~305~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~02/01/2015~ -~14185~^~306~^12.^3^1.^~1~^~A~^^^1^10.^14.^2^6.^16.^~2, 3~^~02/01/2015~ -~14185~^~307~^3.^3^0.^~1~^~A~^^^1^3.^4.^2^2.^4.^~2, 3~^~02/01/2015~ -~14185~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~14185~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14185~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14187~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~14187~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~14187~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~306~^89.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~307~^362.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14187~^~318~^149.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~14187~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~320~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~321~^89.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~337~^2982.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~14187~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14188~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14188~^~262~^4.^3^0.^~1~^~A~^^^2^3.^5.^1^2.^4.^~2, 3~^~06/01/2015~ -~14188~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14188~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14188~^~301~^3.^8^0.^~1~^~A~^^^2^1.^11.^5^2.^4.^~2, 3~^~06/01/2015~ -~14188~^~304~^1.^8^0.^~1~^~A~^^^2^0.^2.^5^0.^1.^~2, 3~^~02/01/2015~ -~14188~^~305~^0.^8^0.^~1~^~A~^^^2^0.^0.^5^0.^0.^~2, 3~^~02/01/2015~ -~14188~^~306~^5.^8^0.^~1~^~A~^^^2^3.^9.^5^4.^6.^~2, 3~^~02/01/2015~ -~14188~^~307~^2.^8^0.^~1~^~A~^^^2^1.^4.^5^1.^2.^~1, 2, 3~^~02/01/2015~ -~14188~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~14188~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14188~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14189~^~208~^46.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~262~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14189~^~268~^192.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~301~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~304~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~305~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~306~^10.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~307~^6.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14189~^~319~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~320~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~321~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~322~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14189~^~334~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~337~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~338~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~417~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~431~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~432~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~435~^1.^0^^~4~^~NC~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~601~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14190~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14190~^~262~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2015~ -~14190~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~ -~14190~^~268~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14190~^~301~^1.^5^0.^~1~^~A~^^^1^0.^3.^4^0.^2.^~1, 2, 3~^~04/01/2015~ -~14190~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^1.^~2, 3~^~04/01/2015~ -~14190~^~305~^0.^5^0.^~1~^~A~^^^1^0.^0.^4^0.^0.^~2, 3~^~04/01/2015~ -~14190~^~306~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^5.^5.^~2, 3~^~04/01/2015~ -~14190~^~307~^6.^5^1.^~1~^~A~^^^1^2.^10.^4^1.^10.^~2, 3~^~04/01/2015~ -~14190~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14191~^~262~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~14191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~268~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14191~^~301~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^1.^~2, 3~^~04/01/2015~ -~14191~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~1, 2, 3~^~04/01/2015~ -~14191~^~305~^36.^6^0.^~1~^~A~^^^1^35.^37.^5^35.^36.^~2, 3~^~04/01/2015~ -~14191~^~306~^13.^6^0.^~1~^~A~^^^1^12.^13.^5^12.^12.^~2, 3~^~04/01/2015~ -~14191~^~307~^26.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^27.^~2, 3~^~04/01/2015~ -~14191~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14192~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14192~^~262~^18.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~263~^323.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~268~^1664.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14192~^~301~^133.^3^17.^~8~^~LC~^^^1^99.^158.^2^57.^208.^~4~^~01/01/2005~ -~14192~^~304~^83.^9^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~305~^315.^8^^~1~^^^^^^^^^^^~01/01/2005~ -~14192~^~306~^712.^8^^~1~^^^^^^^^^^^~01/01/2005~ -~14192~^~307~^504.^8^^~1~^^^^^^^^^^^~01/01/2005~ -~14192~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14192~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14192~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~12/01/2006~ -~14194~^~208~^55.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~263~^44.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~268~^229.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~301~^21.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~304~^12.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~305~^43.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~306~^99.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~307~^73.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14194~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14194~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14194~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14195~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~301~^80.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~307~^800.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~318~^10.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14196~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14196~^~262~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~263~^658.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~268~^1576.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14196~^~301~^576.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14196~^~304~^208.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~305~^893.^1^^~1~^^^^^^^^^^^~02/01/2003~ -~14196~^~306~^2702.^2^^~1~^^^^^^^^^^^~02/01/2003~ -~14196~^~307~^876.^3^189.^~8~^~LC~^^^1^496.^1067.^2^58.^1692.^~4~^~01/01/2005~ -~14196~^~318~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14196~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14196~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14196~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14196~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14196~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~01/01/2005~ -~14197~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~306~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2006~ -~14197~^~307~^850.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~318~^11.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14199~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14199~^~262~^9.^4^2.^~1~^~A~^^^1^4.^14.^3^0.^17.^~2, 3~^~04/01/2015~ -~14199~^~263~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2015~ -~14199~^~268~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14199~^~301~^4.^7^1.^~1~^~A~^^^1^0.^12.^6^0.^8.^~1, 2, 3~^~04/01/2015~ -~14199~^~304~^1.^7^0.^~1~^~A~^^^1^0.^2.^6^0.^1.^~2, 3~^~04/01/2015~ -~14199~^~305~^1.^7^0.^~1~^~A~^^^1^0.^4.^6^0.^3.^~1, 2, 3~^~04/01/2015~ -~14199~^~306~^14.^7^3.^~1~^~A~^^^1^9.^28.^6^6.^22.^~2, 3~^~04/01/2015~ -~14199~^~307~^3.^7^0.^~1~^~A~^^^1^2.^6.^6^1.^4.^~2, 3~^~04/01/2015~ -~14199~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14199~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14199~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14201~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~14201~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14201~^~268~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~14201~^~301~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~304~^5.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~306~^54.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~307~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14201~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~14201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14201~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~14201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14201~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14201~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14201~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~208~^9.^0^^~4~^~NC~^~14201~^^^^^^^^^~08/01/2012~ -~14202~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14202~^~268~^37.^0^^~4~^~NC~^~14201~^^^^^^^^^~08/01/2012~ -~14202~^~301~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~304~^80.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~305~^7.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~306~^115.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~307~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~319~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~320~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~321~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~322~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14202~^~334~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~337~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~338~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~431~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~14202~^~435~^1.^0^^~4~^~NC~^~14201~^^^^^^^^^~10/01/2006~ -~14202~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14203~^~262~^1571.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~14203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14203~^~268~^1473.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14203~^~301~^141.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~304~^327.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~305~^303.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~306~^3535.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~307~^37.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~319~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~320~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~321~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~322~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14203~^~334~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~337~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~338~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~431~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~432~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~435~^0.^0^^~4~^~NC~^~14218~^^^^^^^^^~03/01/2008~ -~14203~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14204~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14204~^~262~^25.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14204~^~263~^324.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14204~^~268~^1843.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14204~^~301~^60.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~304~^122.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~305~^451.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~306~^1856.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~307~^500.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~318~^4.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~321~^2.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14204~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~338~^6.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~417~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14204~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14206~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14206~^~262~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~04/01/2015~ -~14206~^~263~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~14206~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14206~^~301~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^0.^~2, 3~^~04/01/2015~ -~14206~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~1, 2, 3~^~04/01/2015~ -~14206~^~305~^31.^6^0.^~1~^~A~^^^1^30.^32.^5^30.^31.^~2, 3~^~04/01/2015~ -~14206~^~306~^12.^6^0.^~1~^~A~^^^1^12.^13.^5^12.^12.^~2, 3~^~04/01/2015~ -~14206~^~307~^21.^6^0.^~1~^~A~^^^1^20.^25.^5^19.^23.^~2, 3~^~04/01/2015~ -~14206~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~208~^2.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14207~^~262~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~14207~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~14207~^~268~^9.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14207~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~14207~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~ -~14207~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~ -~14207~^~306~^37.^3^0.^~1~^~A~^^^1^36.^37.^2^34.^38.^~2, 3~^~04/01/2015~ -~14207~^~307~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~1, 2, 3~^~04/01/2015~ -~14207~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14209~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~262~^40.^8^0.^~1~^~A~^^^4^30.^44.^4^38.^41.^~2, 3~^~04/01/2004~ -~14209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14209~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~301~^2.^11^0.^~1~^~A~^^^4^1.^5.^7^1.^1.^~2, 3~^~04/01/2004~ -~14209~^~304~^3.^11^0.^~1~^~A~^^^4^2.^5.^7^2.^3.^~2, 3~^~04/01/2004~ -~14209~^~305~^3.^11^0.^~1~^~A~^^^4^2.^4.^7^2.^2.^~1, 2, 3~^~04/01/2004~ -~14209~^~306~^49.^11^0.^~1~^~A~^^^4^43.^52.^7^47.^50.^~2, 3~^~04/01/2004~ -~14209~^~307~^2.^11^0.^~1~^~A~^^^4^0.^5.^7^1.^1.^~2, 3~^~04/01/2004~ -~14209~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14209~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~14209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14209~^~417~^2.^6^0.^~1~^~A~^^^4^0.^3.^2^1.^2.^~1, 2, 3~^~04/01/2004~ -~14209~^~431~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2004~ -~14209~^~432~^2.^6^0.^~1~^~A~^^^4^0.^3.^2^1.^2.^^~03/01/2006~ -~14209~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14210~^~208~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14210~^~262~^212.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~14210~^~268~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14210~^~301~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~304~^80.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~305~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~306~^115.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~307~^14.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~14210~^~319~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~320~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~321~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~322~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14210~^~334~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~337~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~338~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~417~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~431~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14210~^~435~^1.^0^^~4~^~NC~^~14209~^^^^^^^^^~10/01/2006~ -~14210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~14211~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14211~^~262~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~04/01/2015~ -~14211~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~ -~14211~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14211~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~ -~14211~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~305~^33.^3^0.^~1~^~A~^^^1^33.^34.^2^32.^34.^~2, 3~^~04/01/2015~ -~14211~^~306~^14.^3^0.^~1~^~A~^^^1^14.^14.^2^13.^14.^~2, 3~^~04/01/2015~ -~14211~^~307~^17.^3^0.^~1~^~A~^^^1^17.^17.^2^16.^17.^~2, 3~^~04/01/2015~ -~14211~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~14211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14211~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14214~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14214~^~262~^3142.^15^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~14214~^~268~^1479.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14214~^~301~^141.^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~304~^327.^23^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~305~^303.^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~306~^3535.^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~307~^37.^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14214~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~14214~^~321~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~322~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14214~^~334~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~337~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~338~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14214~^~432~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14214~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~14214~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14215~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~262~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~268~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~306~^30.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14215~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14215~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14216~^~208~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~268~^61.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14216~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14217~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14217~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~306~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~307~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~14217~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14217~^~432~^0.^0^^~4~^~O~^^^^^^^^^^~08/01/2015~ -~14217~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14217~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2015~ -~14218~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14218~^~262~^122.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~268~^1470.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14218~^~301~^140.^27^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~304~^311.^23^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~305~^286.^26^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~306~^3501.^29^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~307~^23.^29^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14218~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14218~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14219~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~268~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~306~^36.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14219~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14219~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14220~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14220~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14220~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~307~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14220~^~319~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14220~^~321~^14.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~322~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14220~^~334~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~337~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~338~^19.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14220~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14220~^~435~^8.^0^^~4~^~NC~^~43404~^^^^^^^^^~08/01/2015~ -~14220~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~268~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14221~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~306~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~14221~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14221~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14221~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14221~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14222~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14222~^~262~^2063.^3^144.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~268~^1485.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14222~^~301~^103.^3^2.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~304~^213.^3^8.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~305~^271.^3^7.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~306~^3395.^3^99.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~307~^277.^3^20.^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14222~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14222~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14222~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14223~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~262~^21.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~268~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~306~^35.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~307~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14223~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14223~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14224~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14224~^~262~^360.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14224~^~263~^294.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14224~^~268~^1925.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14224~^~301~^271.^2^^~8~^~LC~^^^1^222.^320.^1^^^^~12/01/2002~ -~14224~^~304~^68.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~305~^251.^9^^~1~^^^^^^^^^^^~01/01/2005~ -~14224~^~306~^1033.^9^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~307~^317.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14224~^~318~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14224~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14224~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~12/01/2006~ -~14226~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14226~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~306~^47.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14226~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14226~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~322~^31.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~334~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14226~^~337~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14226~^~338~^19.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14226~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14227~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14227~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~305~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14227~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~14227~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14227~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14227~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14227~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14231~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14231~^~268~^2013.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14231~^~301~^12.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~305~^203.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~306~^546.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~307~^399.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14233~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14233~^~268~^205.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14233~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~306~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14233~^~319~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14233~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~322~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~324~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~334~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~337~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~338~^19.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2015~ -~14233~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14234~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14234~^~262~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~263~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~268~^188.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14234~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~306~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14234~^~319~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14234~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~322~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~324~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~334~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~337~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~338~^19.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~435~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14235~^~268~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14235~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~306~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~14235~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14235~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14235~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14236~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14236~^~262~^19.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14236~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~268~^1508.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14236~^~301~^58.^1^^~1~^^^^^58.^58.^^^^^~12/01/2006~ -~14236~^~304~^244.^11^107.^~11~^~JO~^^^1^137.^351.^1^-1115.^1603.^~4~^~12/01/2002~ -~14236~^~305~^580.^11^144.^~11~^~JO~^^^1^436.^724.^1^-1250.^2411.^~4~^~12/01/2002~ -~14236~^~306~^2443.^11^860.^~11~^~JO~^^^1^1583.^3303.^1^-8484.^13370.^~4~^~12/01/2002~ -~14236~^~307~^83.^11^19.^~11~^~JO~^^^1^63.^102.^1^-164.^330.^~4~^~12/01/2002~ -~14236~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14236~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~338~^194.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~432~^52.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~14236~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14237~^~208~^6.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~268~^25.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14237~^~304~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~305~^10.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~306~^41.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~307~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14237~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14237~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14237~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~338~^3.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14237~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14238~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14238~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~268~^263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14238~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~306~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14238~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14238~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14238~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~338~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~417~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~432~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14238~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14239~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14239~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14239~^~301~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~305~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~306~^27.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~307~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14239~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14239~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14240~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14240~^~268~^268.^0^^~4~^^^^^^^^^^^ -~14240~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~304~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~306~^61.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~307~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~318~^463.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14240~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14240~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14240~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~14240~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14241~^~268~^234.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14241~^~301~^8.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~304~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~305~^4.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~306~^24.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~307~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~318~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14241~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14241~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14241~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14241~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14242~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14242~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14242~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14242~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14242~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14242~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14242~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~417~^0.^3^0.^~13~^~AI~^^^1^0.^0.^2^0.^0.^~4~^~02/01/2005~ -~14242~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~432~^0.^3^0.^~13~^~AI~^^^1^0.^0.^2^0.^0.^^~03/01/2006~ -~14242~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14242~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14243~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14243~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~268~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14243~^~301~^9.^1^^~9~^~MC~^^^^9.^9.^^^^^~03/01/2003~ -~14243~^~304~^2.^1^^~9~^~MC~^^^^2.^2.^^^^^~03/01/2003~ -~14243~^~305~^1.^1^^~9~^~MC~^^^^1.^1.^^^^^~03/01/2003~ -~14243~^~306~^25.^1^^~13~^~AI~^^^^25.^25.^^^^^~02/01/2003~ -~14243~^~307~^3.^1^^~9~^~MC~^^^^3.^3.^^^^^~03/01/2003~ -~14243~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14243~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14243~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14245~^~208~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~268~^396.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~301~^92.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~305~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~306~^121.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~307~^55.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~318~^94.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14245~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14245~^~601~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14246~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14246~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14246~^~301~^2.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~304~^3.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~305~^2.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~306~^169.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~321~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~322~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~334~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~337~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~338~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~417~^1.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~431~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~432~^1.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~435~^1.^0^^~4~^~NC~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~262~^11.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14247~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~307~^2.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14247~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14248~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14248~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14248~^~301~^4.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~304~^5.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~305~^12.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~306~^21.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~307~^4.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14248~^~319~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~320~^0.^0^^~4~^~NC~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~321~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~322~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~334~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~337~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~338~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~417~^6.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~431~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~432~^6.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~435~^6.^0^^~4~^~NC~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14250~^~208~^56.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~268~^236.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~304~^3.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~305~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~306~^54.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14250~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14251~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~268~^243.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14251~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~305~^32.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~306~^62.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14251~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~14251~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~432~^18.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14251~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14252~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~306~^33.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14252~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14252~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14253~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~306~^59.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~14253~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~208~^47.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~268~^197.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~306~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~307~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14255~^~321~^14.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~417~^4.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14255~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14255~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~208~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~268~^194.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~306~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14256~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14256~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~417~^22.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14256~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14256~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14257~^~208~^19.^2^^~1~^~A~^^^1^19.^19.^1^^^^~06/01/2015~ -~14257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~268~^78.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14257~^~301~^3.^2^^~1~^~A~^^^1^3.^4.^1^^^^~06/01/2015~ -~14257~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~306~^38.^2^^~1~^~A~^^^1^37.^39.^1^^^^~06/01/2015~ -~14257~^~307~^15.^2^^~1~^~A~^^^1^13.^18.^1^^^^~06/01/2015~ -~14257~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14257~^~321~^15.^2^^~1~^~A~^^^1^15.^15.^^^^~1~^~06/01/2015~ -~14257~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14258~^~208~^45.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~268~^187.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14258~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~305~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~307~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14258~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~417~^4.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14258~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14258~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14258~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14259~^~208~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~268~^94.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~306~^34.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~14259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14259~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14259~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14260~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~262~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~306~^15.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~262~^12.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~301~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~304~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~305~^26.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~306~^19.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~307~^7.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14262~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~301~^25.^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~304~^20.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~305~^36.^4^2.^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~306~^393.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~307~^3.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~318~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~321~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~322~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14262~^~334~^97.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~338~^93.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~417~^26.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~432~^26.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14262~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14263~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~268~^192.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~304~^6.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~305~^10.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~306~^112.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14263~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14263~^~321~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~322~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~334~^28.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~338~^27.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14263~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14264~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~14264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~14264~^~301~^8.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~304~^3.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~305~^3.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~306~^25.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~307~^10.^2^^~8~^~LC~^^^1^10.^10.^1^^^^~02/01/2003~ -~14264~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~417~^4.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~431~^0.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~432~^4.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~435~^4.^0^^~4~^~NC~^~14267~^^^^^^^^^~12/01/2006~ -~14264~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~14267~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14267~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14267~^~301~^8.^15^1.^~1~^~A~^^^7^2.^20.^14^5.^11.^~4~^~02/01/2003~ -~14267~^~304~^3.^18^0.^~1~^~A~^^^7^1.^7.^17^2.^4.^~4~^~02/01/2003~ -~14267~^~305~^3.^17^0.^~1~^~A~^^^7^0.^11.^16^1.^4.^~4~^~02/01/2003~ -~14267~^~306~^31.^18^5.^~1~^~A~^^^7^11.^87.^17^19.^43.^~4~^~02/01/2005~ -~14267~^~307~^38.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~14267~^~318~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14267~^~334~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~417~^1.^2^^~11~^~JO~^^^1^0.^1.^1^^^^~02/01/2005~ -~14267~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~432~^1.^2^^~11~^~JO~^^^^^^^^^^~02/01/2005~ -~14267~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14267~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14268~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14268~^~268~^678.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14268~^~301~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~304~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~305~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~306~^44.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~318~^39.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14268~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14268~^~417~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14268~^~432~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14268~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14269~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~268~^191.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~306~^13.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~307~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~318~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~320~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14269~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14270~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~268~^1946.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14270~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~306~^57.^0^^~4~^~BFFN~^~14231~^^^^^^^^^~06/01/2015~ -~14270~^~307~^333.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14270~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14276~^~208~^10.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~268~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14276~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14276~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14277~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14277~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~268~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14277~^~301~^52.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14277~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~305~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~306~^12.^5^3.^~11~^~JO~^^^1^5.^22.^4^3.^20.^~4~^~01/01/2003~ -~14277~^~307~^16.^2^^~8~^~LC~^^^1^13.^18.^1^^^^~02/01/2005~ -~14277~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14277~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14277~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14277~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14277~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14278~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14278~^~262~^12.^6^0.^~1~^~A~^^^1^8.^18.^2^10.^13.^~2, 3~^~06/01/2015~ -~14278~^~263~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2015~ -~14278~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14278~^~301~^0.^12^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~2, 3~^~06/01/2015~ -~14278~^~304~^1.^12^0.^~1~^~A~^^^1^0.^1.^8^0.^0.^~2, 3~^~06/01/2015~ -~14278~^~305~^0.^12^0.^~1~^~A~^^^1^0.^0.^6^0.^0.^~2, 3~^~06/01/2015~ -~14278~^~306~^8.^12^0.^~1~^~A~^^^1^7.^9.^6^7.^8.^~2, 3~^~06/01/2015~ -~14278~^~307~^1.^12^0.^~1~^~A~^^^1^1.^1.^8^0.^0.^~2, 3~^~06/01/2015~ -~14278~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~14278~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14279~^~262~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14279~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14279~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14279~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~ -~14279~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~ -~14279~^~305~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~ -~14279~^~306~^12.^2^^~1~^~A~^^^1^11.^13.^1^^^^~06/01/2015~ -~14279~^~307~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~06/01/2015~ -~14279~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~262~^1.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~263~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~301~^11.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~305~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~306~^27.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14280~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~208~^38.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~262~^1.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~263~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~268~^157.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~301~^11.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~305~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~306~^27.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14282~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14282~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14282~^~301~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~305~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~306~^33.^6^4.^~13~^~AI~^^^1^26.^52.^5^22.^43.^~4~^~01/01/2003~ -~14282~^~307~^9.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14282~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14282~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14282~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14282~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14284~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14284~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14284~^~301~^3.^13^0.^~1~^~A~^^^1^1.^6.^2^0.^4.^~2, 3~^~06/01/2015~ -~14284~^~304~^1.^13^0.^~1~^~A~^^^1^1.^3.^4^1.^1.^~2, 3~^~06/01/2015~ -~14284~^~305~^1.^13^0.^~1~^~A~^^^1^1.^1.^7^0.^1.^~2, 3~^~06/01/2015~ -~14284~^~306~^19.^13^0.^~1~^~A~^^^1^16.^21.^3^17.^20.^~2, 3~^~06/01/2015~ -~14284~^~307~^2.^13^0.^~1~^~A~^^^1^2.^5.^5^1.^2.^~1, 2, 3~^~06/01/2015~ -~14285~^~208~^45.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~268~^187.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~306~^39.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~307~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~318~^483.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~14285~^~321~^290.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~417~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14285~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14285~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14286~^~208~^22.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~268~^92.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~301~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~306~^51.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~14286~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14287~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~14287~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14287~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14287~^~268~^1573.^0^^~4~^^^^^^^^^^^~10/01/2013~ -~14287~^~301~^20.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~304~^247.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~306~^147.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14287~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14287~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~14287~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14287~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14287~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~417~^6.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~14287~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~14287~^~432~^6.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~14287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14287~^~601~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14288~^~208~^14.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~268~^58.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~305~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~307~^6.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14288~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14288~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14288~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14291~^~208~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~262~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~268~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~306~^19.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14292~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14292~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~14292~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~14292~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14292~^~301~^7.^2^^~1~^~A~^^^1^6.^9.^1^^^^~01/01/2009~ -~14292~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~ -~14292~^~305~^7.^2^^~1~^~A~^^^1^6.^7.^1^^^^~01/01/2009~ -~14292~^~306~^72.^2^^~1~^~A~^^^1^65.^79.^1^^^^~01/01/2009~ -~14292~^~307~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~ -~14292~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14292~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~14292~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14292~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14292~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14292~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14292~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14292~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~14292~^~417~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~ -~14292~^~431~^0.^2^^~7~^~Z~^^^1^0.^0.^^^^^~01/01/2009~ -~14292~^~432~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~ -~14292~^~435~^7.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~14292~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14293~^~208~^40.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~268~^168.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~305~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~306~^15.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14293~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14293~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~334~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14293~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14294~^~208~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~262~^9.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~268~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~306~^20.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14296~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~14296~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~268~^1592.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~14296~^~301~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^^~01/01/2009~ -~14296~^~304~^165.^2^^~1~^~A~^^^1^152.^177.^1^^^^~01/01/2009~ -~14296~^~305~^99.^2^^~1~^~A~^^^1^96.^102.^1^^^^~01/01/2009~ -~14296~^~306~^39.^2^^~1~^~A~^^^1^35.^43.^1^^^^~01/01/2009~ -~14296~^~307~^130.^2^^~1~^~A~^^^1^124.^136.^1^^^^~01/01/2009~ -~14296~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14296~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14296~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~417~^0.^1^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14296~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14296~^~601~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14297~^~208~^27.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~268~^112.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~304~^13.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~305~^7.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~306~^3.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~307~^13.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14297~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14297~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~208~^52.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~268~^219.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~301~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~304~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~305~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~306~^10.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~307~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14303~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14303~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14305~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14305~^~268~^156.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14305~^~301~^7.^4^1.^~11~^~JO~^^^1^3.^8.^3^2.^10.^~4~^~01/01/2003~ -~14305~^~304~^7.^3^0.^~11~^~JO~^^^1^6.^9.^2^2.^10.^~4~^~01/01/2003~ -~14305~^~305~^16.^3^7.^~11~^~JO~^^^1^8.^31.^2^-16.^47.^~4~^~01/01/2003~ -~14305~^~306~^8.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~307~^13.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14305~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14305~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~14305~^~321~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~ -~14305~^~322~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~ -~14305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14305~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14305~^~337~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~ -~14305~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14305~^~417~^14.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14305~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~14305~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14305~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~14309~^~208~^372.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~14309~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~268~^1555.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~14309~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~307~^636.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~318~^4545.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~319~^1365.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14309~^~320~^1365.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14309~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14309~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14309~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14310~^~208~^86.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14310~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14310~^~268~^359.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~301~^123.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~305~^107.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~306~^200.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~307~^72.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~318~^942.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~319~^280.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~320~^281.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14310~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~14310~^~601~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14311~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14311~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~268~^1789.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14311~^~301~^298.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~304~^93.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~305~^358.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~306~^758.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~307~^405.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14311~^~318~^224.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~319~^62.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~320~^63.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~321~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14311~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~417~^46.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~14311~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~14311~^~432~^46.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~14311~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14311~^~601~^24.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14312~^~208~^88.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~268~^369.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~301~^117.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~305~^106.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~306~^183.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~307~^79.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14312~^~319~^32.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14312~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~417~^8.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14312~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~432~^8.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14312~^~601~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14315~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14315~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14315~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~306~^0.^1^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~307~^530.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~14315~^~318~^4550.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~14315~^~319~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14315~^~320~^1365.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14315~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14315~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14315~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14316~^~208~^87.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14316~^~263~^28.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14316~^~268~^365.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~301~^139.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~305~^109.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~306~^217.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~307~^87.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~318~^1199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14316~^~319~^357.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~320~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14316~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~324~^123.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14316~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14316~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14317~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~262~^37.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~263~^345.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14317~^~268~^1720.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~301~^60.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~304~^70.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~305~^175.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~306~^618.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14317~^~307~^190.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14317~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~319~^32.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14317~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14317~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~431~^18.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14318~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~263~^28.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~268~^357.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~301~^98.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~305~^91.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~306~^172.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~307~^60.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~318~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14318~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14318~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14318~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14323~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14323~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14323~^~301~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~4~^~02/01/2005~ -~14323~^~304~^2.^6^0.^~1~^~A~^^^1^1.^2.^5^1.^2.^~4~^~02/01/2005~ -~14323~^~305~^1.^6^0.^~1~^~A~^^^1^1.^2.^5^0.^1.^~4~^~02/01/2005~ -~14323~^~306~^18.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14323~^~307~^3.^6^0.^~1~^~A~^^^1^0.^4.^5^1.^3.^~1, 4~^~02/01/2005~ -~14323~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14323~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14323~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14323~^~334~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14323~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14327~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~14327~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~304~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~305~^8.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~306~^80.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~307~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~318~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14327~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14327~^~321~^79.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14327~^~334~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~338~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~14327~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14334~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~268~^197.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~14334~^~301~^7.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~304~^6.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~305~^6.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~306~^61.^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~307~^14.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14334~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14334~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14334~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~14334~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14341~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~268~^209.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~14341~^~301~^5.^15^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~304~^6.^15^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~305~^4.^15^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~306~^46.^22^1.^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~307~^3.^15^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14341~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14341~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14341~^~334~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~14341~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~301~^115.^2^^~1~^~A~^^^2^104.^125.^^^^^~04/01/2005~ -~14347~^~304~^13.^2^^~1~^~A~^^^2^12.^13.^^^^^~04/01/2005~ -~14347~^~305~^98.^2^^~1~^~A~^^^2^97.^98.^^^^^~04/01/2005~ -~14347~^~306~^166.^2^^~1~^~A~^^^2^153.^178.^^^^^~04/01/2005~ -~14347~^~307~^81.^2^^~1~^~A~^^^2^62.^100.^^^^^~04/01/2005~ -~14347~^~318~^304.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~14347~^~319~^91.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~14347~^~320~^91.^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14347~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~14347~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14347~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14347~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~14347~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~601~^23.^2^^~1~^~A~^^^2^16.^31.^^^^^~04/01/2005~ -~14350~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~268~^1626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14350~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~305~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~306~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~307~^38.^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14350~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14351~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14351~^~268~^368.^0^^~4~^^^^^^^^^^^ -~14351~^~301~^110.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~304~^12.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~305~^86.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~306~^139.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~307~^48.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~318~^116.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~319~^26.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~ -~14351~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14351~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14351~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14351~^~601~^12.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~636~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14352~^~208~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~14352~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14352~^~301~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~306~^37.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~307~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14352~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~14352~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~417~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14352~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14352~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14353~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14353~^~262~^169.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14353~^~263~^11.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14353~^~268~^1320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14353~^~301~^118.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~304~^272.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~305~^239.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~306~^6040.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~307~^72.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~318~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~319~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~320~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~321~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~322~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14353~^~334~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~337~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~338~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~417~^103.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~431~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~432~^103.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~435~^103.^0^^~4~^~NC~^~14366~^^^^^^^^^~10/01/2006~ -~14353~^~601~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14355~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14355~^~262~^20.^41^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~263~^2.^0^^~1~^^^^^^^^^^^~05/01/1998~ -~14355~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14355~^~301~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~305~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~306~^37.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~307~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14355~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~417~^5.^7^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14355~^~432~^5.^7^0.^~1~^^^^^^^^^^^~03/01/2006~ -~14355~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14355~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14356~^~208~^338.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~262~^57.^0^^~4~^~O~^~14375~^^^^^^^^^~05/01/2007~ -~14356~^~263~^4.^0^^~4~^~O~^~14375~^^^^^^^^^~05/01/2007~ -~14356~^~268~^1412.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~301~^21.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~304~^125.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~305~^140.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~306~^2568.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~307~^412.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~318~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~319~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~320~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14356~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14356~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~417~^35.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~431~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~432~^35.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~435~^35.^0^^~4~^~NC~^~14375~^^^^^^^^^~05/01/2007~ -~14356~^~601~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14357~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14357~^~262~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14357~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14357~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14357~^~301~^2.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~304~^3.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~305~^2.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~306~^169.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~307~^5.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~318~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~319~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~320~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~321~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~322~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~334~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~337~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~338~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~417~^1.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~431~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~432~^1.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~435~^1.^0^^~4~^~NC~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~601~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14366~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14366~^~262~^5714.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14366~^~263~^71.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~268~^1320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14366~^~301~^118.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~304~^272.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~305~^239.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~306~^6040.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~14366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~417~^103.^5^^~1~^^^^^^^^^^^~02/01/2005~ -~14366~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~14366~^~432~^103.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~14366~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14366~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14367~^~208~^1.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~262~^11.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~268~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~301~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~306~^18.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14367~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14367~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14367~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14368~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14368~^~262~^1794.^1^^~1~^^^^^^^^^^^~06/01/2013~ -~14368~^~263~^40.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~268~^1445.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14368~^~301~^28.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~304~^139.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~305~^107.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~306~^3453.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~307~^55.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~14368~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14368~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~14368~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~14368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14368~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~14368~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14368~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~14368~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14368~^~432~^61.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14368~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14370~^~262~^35.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~263~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14370~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14370~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~306~^169.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14370~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14370~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14371~^~208~^35.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~268~^147.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~301~^2.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~305~^0.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~306~^15.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~307~^2.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14371~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14375~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14375~^~262~^2240.^1^^~9~^~MC~^^^^2240.^2240.^^^^^~12/01/2006~ -~14375~^~263~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~268~^1412.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14375~^~301~^21.^1^^~9~^~MC~^^^^21.^21.^^^^^~12/01/2006~ -~14375~^~304~^125.^1^^~9~^~MC~^^^^125.^125.^^^^^~12/01/2006~ -~14375~^~305~^140.^1^^~9~^~MC~^^^^140.^140.^^^^^~12/01/2006~ -~14375~^~306~^2568.^1^^~9~^~MC~^^^^2568.^2568.^^^^^~12/01/2006~ -~14375~^~307~^412.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~14375~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~432~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14375~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14376~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~262~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~268~^7.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~301~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~304~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~305~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~306~^14.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~307~^6.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2007~ -~14376~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14376~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14376~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14376~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14381~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14381~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~268~^4.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14381~^~301~^2.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~304~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~305~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~306~^9.^33^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~307~^1.^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14381~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~417~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14381~^~432~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14381~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14384~^~268~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~14384~^~301~^14.^41^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~304~^0.^40^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~305~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~306~^0.^42^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~307~^1.^44^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14384~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~14384~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14384~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~14384~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~14384~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14385~^~268~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~14385~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~304~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~305~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~306~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~307~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14385~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~14385~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14385~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~14385~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14385~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14390~^~208~^29.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~263~^51.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~268~^123.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~301~^48.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~305~^70.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~306~^211.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~307~^72.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14390~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14390~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14390~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14390~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14390~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14390~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14400~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14400~^~262~^8.^7^0.^~1~^~A~^^^4^2.^10.^3^7.^8.^~2, 3~^~04/01/2005~ -~14400~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14400~^~268~^157.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14400~^~301~^2.^7^0.^~1~^~A~^^^4^0.^4.^3^1.^2.^~1, 2, 3~^~04/01/2005~ -~14400~^~304~^0.^7^0.^~1~^~A~^^^4^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~ -~14400~^~305~^10.^7^0.^~1~^~A~^^^4^6.^13.^3^9.^11.^~2, 3~^~04/01/2005~ -~14400~^~306~^2.^7^0.^~1~^~A~^^^4^0.^4.^3^0.^3.^~1, 2, 3~^~04/01/2005~ -~14400~^~307~^4.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^5.^~1, 2, 3~^~04/01/2005~ -~14400~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14400~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~14400~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14400~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14400~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14400~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14400~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14405~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14405~^~268~^732.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14405~^~301~^20.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~304~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~305~^12.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14405~^~306~^270.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~307~^10.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~318~^21.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14405~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14405~^~417~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14405~^~432~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14405~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14406~^~208~^42.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~268~^177.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~301~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~305~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~306~^66.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~307~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~318~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14406~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14407~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14407~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~268~^1615.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14407~^~301~^385.^3^61.^~13~^~AI~^^^1^265.^470.^2^119.^650.^~4~^~02/01/2003~ -~14407~^~304~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~305~^151.^5^^~9~^~MC~^^^^143.^164.^^^^^~02/01/2003~ -~14407~^~306~^190.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~14407~^~307~^17.^5^^~9~^~MC~^^^^11.^20.^^^^^~02/01/2003~ -~14407~^~318~^2000.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~14407~^~319~^599.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~320~^599.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14407~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14407~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14407~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14407~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14407~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14407~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14407~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14408~^~208~^49.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~268~^206.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~301~^52.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~305~^19.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~306~^25.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~307~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~318~^256.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14408~^~319~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14408~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14408~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14409~^~208~^217.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~14409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~14409~^~268~^908.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~301~^1378.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~304~^275.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~305~^629.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~306~^3132.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~307~^81.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~318~^20000.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~319~^6006.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~ -~14409~^~320~^6006.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14409~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~14409~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14409~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14411~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14411~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14411~^~301~^3.^287^0.^~1~^~A~^^^1^0.^10.^286^2.^3.^~2, 3~^~04/01/2006~ -~14411~^~304~^1.^287^0.^~1~^~A~^^^1^0.^5.^286^0.^1.^~2, 3~^~04/01/2006~ -~14411~^~305~^0.^287^0.^~1~^~A~^^^1^0.^0.^286^0.^0.^~1, 2, 3~^~04/01/2006~ -~14411~^~306~^0.^287^0.^~1~^~A~^^^1^0.^20.^286^0.^0.^~1, 2, 3~^~04/01/2006~ -~14411~^~307~^4.^287^0.^~1~^~A~^^^1^0.^39.^286^3.^4.^~2, 3~^~04/01/2006~ -~14411~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14411~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14411~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14411~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14412~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14412~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14412~^~301~^3.^50^^~1~^~A~^^^1^0.^10.^^^^~2~^~11/01/2005~ -~14412~^~304~^1.^50^^~1~^~A~^^^1^0.^5.^^^^~2~^~11/01/2005~ -~14412~^~305~^0.^50^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~11/01/2005~ -~14412~^~306~^0.^50^^~1~^~A~^^^1^0.^1.^^^^~1, 2~^~11/01/2005~ -~14412~^~307~^5.^50^^~1~^~A~^^^1^0.^27.^^^^~2~^~11/01/2005~ -~14414~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14414~^~262~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14414~^~268~^1406.^0^^~4~^^^^^^^^^^^~06/01/2014~ -~14414~^~301~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~306~^30.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14414~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14414~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14414~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14415~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14415~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~268~^1368.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14415~^~301~^16.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~304~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~305~^50.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~306~^32.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~307~^92.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~318~^620.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~319~^171.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~320~^173.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~321~^30.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14415~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14415~^~601~^58.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14416~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14416~^~262~^12.^7^^~1~^~A~^^^4^3.^20.^^^^~2, 3~^~04/01/2005~ -~14416~^~263~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~14416~^~268~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14416~^~301~^3.^6^^~1~^~A~^^^3^3.^4.^^^^~1, 2, 3~^~03/01/2006~ -~14416~^~304~^1.^7^^~1~^~A~^^^4^0.^1.^^^^~1, 2, 3~^~04/01/2005~ -~14416~^~305~^9.^7^^~1~^~A~^^^4^5.^15.^^^^~2, 3~^~04/01/2005~ -~14416~^~306~^8.^6^^~1~^~A~^^^3^6.^10.^^^^~2, 3~^~03/01/2006~ -~14416~^~307~^8.^7^^~1~^~A~^^^4^3.^20.^^^^~2, 3~^~04/01/2005~ -~14416~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14416~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14416~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14416~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~417~^0.^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14416~^~432~^0.^1^^~1~^^^^^^^^^^^~03/01/2006~ -~14416~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~14416~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14421~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14421~^~262~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~268~^272.^0^^~4~^^^^^^^^^^^ -~14421~^~301~^119.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~304~^16.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~305~^99.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~306~^172.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~307~^49.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~318~^124.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~319~^28.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~ -~14421~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14421~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14421~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14421~^~601~^13.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14422~^~262~^25.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~263~^833.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~268~^1377.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14422~^~301~^1412.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14422~^~304~^210.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~305~^893.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14422~^~306~^2240.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14422~^~307~^659.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14422~^~318~^698.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~319~^209.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~320~^209.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14422~^~324~^188.^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~ -~14422~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14422~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14422~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~417~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14422~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14422~^~432~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14422~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14422~^~601~^24.^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~ -~14423~^~208~^29.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~263~^73.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~268~^121.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~301~^127.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~304~^19.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~305~^78.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~306~^197.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~307~^61.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~318~^61.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14423~^~319~^18.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14423~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~417~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14423~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14424~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14424~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~268~^720.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~14424~^~301~^130.^1^^~13~^~AI~^^^^130.^130.^^^^^~01/01/2003~ -~14424~^~304~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~305~^76.^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~306~^435.^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~307~^24.^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14424~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14424~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14424~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14425~^~208~^49.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~268~^205.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~301~^39.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~305~^22.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~306~^124.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~307~^10.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14425~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14426~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14426~^~262~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~263~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~268~^640.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~14426~^~301~^399.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~304~^34.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~305~^115.^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~306~^465.^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~307~^26.^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~318~^21.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~319~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~320~^1.^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~321~^11.^0^^~4~^~O~^~14425~^^^^^^^^^~06/01/2003~ -~14426~^~322~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14426~^~334~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~337~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~338~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14426~^~431~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14426~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14426~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14427~^~208~^45.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~268~^186.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~301~^118.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~304~^11.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~305~^33.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~306~^167.^3^17.^~13~^~AI~^^^1^132.^191.^2^89.^244.^~4~^~01/01/2003~ -~14427~^~307~^10.^3^3.^~13~^~AI~^^^1^7.^16.^2^-2.^23.^~4~^~01/01/2003~ -~14427~^~318~^6.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~321~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14427~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14428~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14428~^~268~^473.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14428~^~301~^113.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~304~^13.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~305~^100.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~306~^182.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~307~^83.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~318~^120.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~319~^26.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~ -~14428~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14428~^~417~^3.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14428~^~432~^3.^3^^~1~^^^^^^^^^^^~01/01/2001~ -~14428~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~14428~^~601~^11.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~208~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~268~^0.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~14429~^~301~^3.^236^0.^~1~^~A~^^^1^0.^10.^235^2.^3.^~2, 3~^~04/01/2006~ -~14429~^~304~^1.^236^0.^~1~^~A~^^^1^0.^3.^235^0.^1.^~2, 3~^~04/01/2006~ -~14429~^~305~^0.^236^0.^~1~^~A~^^^1^0.^0.^235^0.^0.^~1, 2, 3~^~04/01/2006~ -~14429~^~306~^1.^236^0.^~1~^~A~^^^1^0.^20.^235^0.^0.^~2, 3~^~04/01/2006~ -~14429~^~307~^3.^236^0.^~1~^~A~^^^1^0.^39.^235^2.^4.^~2, 3~^~04/01/2006~ -~14429~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~14429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14429~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14429~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2006~ -~14429~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14429~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~14430~^~268~^841.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14430~^~301~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~304~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~306~^49.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~307~^4.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~318~^34.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14430~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14430~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14430~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14430~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14431~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14431~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14431~^~301~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~306~^12.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~318~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14431~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14432~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14432~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14432~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14432~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14432~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14433~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14433~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14434~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14434~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14436~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14436~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~268~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14436~^~301~^100.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~304~^5.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~305~^7.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~306~^83.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~307~^54.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~318~^417.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14436~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14436~^~321~^219.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14436~^~334~^62.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14436~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14436~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14436~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2005~ -~14437~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14437~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14437~^~301~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14437~^~304~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14437~^~306~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14437~^~307~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14438~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14438~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14438~^~301~^3.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14438~^~304~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14438~^~306~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14438~^~307~^1.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14439~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14439~^~301~^4.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~304~^2.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~306~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~307~^1.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14440~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14440~^~268~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14440~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14440~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14440~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14450~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14450~^~301~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~306~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14460~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14460~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14460~^~301~^1.^2^^~1~^~A~^^^1^0.^1.^^^^^~03/01/2007~ -~14460~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~ -~14460~^~305~^10.^2^^~1~^~A~^^^1^9.^10.^^^^^~03/01/2007~ -~14460~^~306~^15.^2^^~1~^~A~^^^1^15.^16.^^^^^~03/01/2007~ -~14460~^~307~^39.^2^^~1~^~A~^^^1^39.^39.^^^^^~03/01/2007~ -~14460~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14460~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~14460~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14461~^~208~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~ -~14461~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~268~^134.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~11/01/2007~ -~14461~^~304~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~06/01/2013~ -~14461~^~305~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~11/01/2007~ -~14461~^~306~^18.^2^^~1~^~A~^^^1^16.^21.^^^^^~11/01/2007~ -~14461~^~307~^42.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14461~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~14461~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14462~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~14462~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~268~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14462~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2005~ -~14462~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2008~ -~14462~^~305~^25.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14462~^~306~^16.^2^^~1~^~A~^^^1^16.^17.^1^^^^~04/01/2005~ -~14462~^~307~^33.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14462~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~14462~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14462~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~14462~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14475~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14475~^~262~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14475~^~268~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14475~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~306~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14475~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14476~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14476~^~262~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~02/01/2005~ -~14476~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2005~ -~14476~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14476~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~02/01/2005~ -~14476~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2005~ -~14476~^~305~^26.^2^^~1~^~A~^^^1^26.^26.^1^^^^~02/01/2005~ -~14476~^~306~^19.^2^^~1~^~A~^^^1^19.^19.^^^^^~02/01/2005~ -~14476~^~307~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~02/01/2005~ -~14476~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~04/01/2005~ -~14530~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14530~^~268~^351.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~14530~^~301~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~306~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~307~^33.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~318~^21.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14530~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14530~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14530~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14530~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14531~^~268~^623.^0^^~4~^^^^^^^^^^^ -~14531~^~301~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~304~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~305~^6.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~306~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~307~^20.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~318~^13.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14531~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14531~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14531~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14532~^~268~^1151.^0^^~4~^^^^^^^^^^^ -~14532~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14532~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14532~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14532~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14532~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14533~^~268~^1234.^0^^~4~^^^^^^^^^^^ -~14533~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14533~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14533~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14533~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14534~^~262~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14534~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14534~^~268~^1289.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14534~^~301~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~306~^30.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14534~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14534~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14534~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~14534~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14536~^~301~^8.^26^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~304~^9.^19^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~305~^9.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~306~^92.^81^8.^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~307~^9.^89^1.^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14536~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~14536~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~417~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14536~^~432~^0.^3^0.^~1~^^^^^^^^^^^~11/01/2002~ -~14536~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14536~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14537~^~268~^0.^0^^~4~^^^^^^^^^^^ -~14537~^~301~^4.^56^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~304~^1.^56^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~305~^0.^23^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~306~^2.^56^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~307~^16.^72^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14537~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14537~^~417~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14537~^~432~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14537~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14538~^~262~^34.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~ -~14538~^~263~^608.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~07/01/2013~ -~14538~^~268~^1504.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14538~^~301~^1440.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~14538~^~304~^208.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~305~^1630.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~14538~^~306~^2702.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~307~^653.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~318~^1600.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~319~^479.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~320~^479.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14538~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14538~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14538~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14538~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14538~^~432~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14538~^~601~^11.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14541~^~208~^37.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~268~^155.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~301~^17.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~305~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~307~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14541~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14541~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14542~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14542~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~268~^804.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14542~^~301~^8.^2^^~1~^~A~^^^1^6.^9.^1^^^^~01/01/2009~ -~14542~^~304~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~ -~14542~^~305~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~ -~14542~^~306~^76.^2^^~1~^~A~^^^1^71.^81.^1^^^^~01/01/2009~ -~14542~^~307~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^^~01/01/2009~ -~14542~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14542~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14542~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14542~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14542~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14542~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14542~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~ -~14542~^~417~^11.^2^^~1~^~A~^^^1^8.^13.^1^^^^~01/01/2009~ -~14542~^~431~^0.^2^^~7~^~Z~^^^1^0.^0.^^^^^~01/01/2009~ -~14542~^~432~^11.^2^^~1~^~A~^^^1^8.^13.^1^^^^~01/01/2009~ -~14542~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14542~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14543~^~208~^43.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~268~^178.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~305~^2.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~306~^17.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14543~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14543~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14544~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14544~^~262~^20.^41^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~268~^4.^0^^~4~^^^^^^^^^^^ -~14544~^~301~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~304~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~305~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~306~^21.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~307~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14544~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14544~^~417~^5.^7^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14544~^~432~^5.^7^0.^~1~^^^^^^^^^^^~04/01/2001~ -~14544~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~14544~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14545~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~14545~^~301~^2.^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~304~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~305~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~306~^9.^33^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~307~^1.^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~318~^20.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14545~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14545~^~321~^12.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~14545~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14545~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~417~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14545~^~432~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14545~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14548~^~262~^124.^6^19.^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~268~^1611.^0^^~4~^^^^^^^^^^^ -~14548~^~301~^3.^4^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~304~^11.^4^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~305~^14.^4^0.^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~306~^217.^4^9.^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~307~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14548~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14548~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14548~^~417~^43.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14548~^~432~^43.^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~14548~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14550~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~268~^1046.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14550~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14550~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14550~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14550~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14550~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14550~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~14551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~14551~^~268~^1100.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14551~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14551~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~14551~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14551~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~14551~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14551~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14552~^~208~^42.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14552~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14552~^~263~^63.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14552~^~268~^176.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14552~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~304~^1.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~305~^1.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~306~^50.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~307~^4.^0^^~4~^~O~^^^^^^^^^^~09/01/2012~ -~14552~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14552~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14552~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~14552~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14552~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~417~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14552~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14552~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14552~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2001~ -~14553~^~208~^6.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14553~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14553~^~268~^25.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~301~^9.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~304~^10.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~305~^15.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~306~^88.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~307~^7.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~14553~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~14553~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14553~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~417~^1.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14553~^~432~^1.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14553~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~14555~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~14555~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~14555~^~301~^10.^1^^~6~^~JA~^^^3^0.^38.^12^^^~1~^~01/01/2005~ -~14555~^~304~^2.^1^^~6~^~JA~^^^3^0.^9.^12^^^~1~^~01/01/2005~ -~14555~^~305~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~01/01/2005~ -~14555~^~306~^0.^1^^~6~^~JA~^^^3^0.^1.^12^^^~1~^~01/01/2005~ -~14555~^~307~^2.^1^^~6~^~JA~^^^3^0.^13.^12^^^~1~^~01/01/2005~ -~14555~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~14555~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~417~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14555~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14557~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14557~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~263~^277.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~268~^1673.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14557~^~301~^455.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~304~^53.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~305~^86.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~306~^280.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~307~^136.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14557~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2003~ -~14557~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14557~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14558~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14558~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~263~^23.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~268~^373.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14558~^~301~^141.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~304~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~305~^84.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~306~^144.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~307~^50.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~318~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14558~^~319~^41.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14558~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~324~^47.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14558~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14559~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~14559~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~14559~^~301~^8.^11^0.^~1~^~A~^^^2^7.^8.^1^1.^14.^~4~^~09/01/2004~ -~14559~^~304~^2.^11^0.^~1~^~A~^^^2^2.^2.^1^1.^3.^~4~^~09/01/2004~ -~14559~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~14559~^~306~^0.^11^0.^~1~^~A~^^^2^0.^0.^1^0.^1.^~1, 4~^~09/01/2004~ -~14559~^~307~^0.^11^0.^~1~^~A~^^^2^0.^1.^1^-3.^4.^~1, 4~^~09/01/2004~ -~14599~^~208~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14599~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~ -~14599~^~263~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14599~^~301~^2.^1^^~8~^~LC~^^^^^^^^^~1~^~06/01/2011~ -~14599~^~304~^1.^1^^~8~^~LC~^^^^^^^^^~1~^~06/01/2011~ -~14599~^~305~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2011~ -~14599~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~ -~14599~^~307~^42.^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~ -~14599~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14599~^~319~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~320~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~321~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~322~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~14599~^~334~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~337~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~338~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~417~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~431~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~432~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~435~^0.^0^^~4~^~NC~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~601~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14601~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~262~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~263~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~305~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14602~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14602~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~14602~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~305~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14602~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14604~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~14604~^~262~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~263~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14604~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~02/01/2007~ -~14604~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~02/01/2007~ -~14604~^~305~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2007~ -~14604~^~306~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~02/01/2007~ -~14604~^~307~^14.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14604~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~14604~^~319~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~320~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~321~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~322~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14604~^~334~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~337~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~338~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~417~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~431~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~432~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~435~^0.^0^^~4~^~NC~^~14555~^^^^^^^^^~03/01/2009~ -~14604~^~601~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~208~^22.^2^^~4~^~NC~^^^1^21.^21.^^^^^~02/01/2007~ -~14605~^~262~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~263~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~14605~^~301~^17.^2^^~8~^~LC~^^^1^17.^17.^^^^^~02/01/2007~ -~14605~^~304~^3.^2^^~8~^~LC~^^^1^0.^7.^^^^^~02/01/2007~ -~14605~^~305~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~306~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~307~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~14605~^~318~^105.^2^^~8~^~LC~^^^1^0.^211.^^^^^~02/01/2007~ -~14605~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~14605~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~14605~^~321~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~322~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14605~^~334~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~337~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~338~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~417~^8.^2^^~8~^~LC~^^^1^0.^17.^^^^^~02/01/2007~ -~14605~^~431~^8.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~14605~^~432~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14605~^~601~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14607~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~268~^17.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~306~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~306~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~306~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~306~^34.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~306~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~307~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~306~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~306~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~306~^85.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~318~^407.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~14621~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~306~^102.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~318~^813.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~14622~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~306~^118.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~307~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~318~^1626.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~14623~^~208~^45.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~268~^187.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~14623~^~301~^1.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~306~^98.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~318~^6.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14625~^~208~^46.^1^^~8~^~LC~^^^1^46.^46.^0^^^^~08/01/2008~ -~14625~^~262~^31.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14625~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~268~^192.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14625~^~301~^13.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14625~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~307~^27.^1^^~8~^~LC~^^^1^27.^27.^0^^^^~03/01/2009~ -~14625~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14625~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14625~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~08/01/2009~ -~14625~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14626~^~208~^46.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~262~^33.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14626~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~268~^192.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14626~^~301~^13.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~307~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14626~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~10/01/2009~ -~14626~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14627~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14627~^~262~^33.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~14627~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14627~^~301~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~306~^2.^6^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~307~^77.^6^0.^~1~^~A~^^^1^77.^78.^5^76.^77.^~2, 3~^~05/01/2015~ -~14627~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14627~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14628~^~208~^2.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~262~^30.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~268~^9.^1^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14628~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~304~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14628~^~306~^2.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~307~^31.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14628~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~08/01/2009~ -~14628~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14629~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14629~^~262~^33.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~14629~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~268~^244.^0^^~8~^~LC~^^^^^^^^^^~11/01/2011~ -~14629~^~301~^1.^5^0.^~1~^~A~^^^1^1.^2.^4^1.^1.^~2, 3~^~11/01/2011~ -~14629~^~304~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~305~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~306~^6.^5^0.^~1~^~A~^^^1^5.^7.^4^4.^7.^~2, 3~^~11/01/2011~ -~14629~^~307~^16.^5^0.^~1~^~A~^^^1^14.^16.^4^14.^16.^~2, 3~^~11/01/2011~ -~14629~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14629~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2009~ -~14629~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~208~^4.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~262~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~268~^17.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14630~^~301~^13.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~304~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~305~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~306~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~307~^52.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14630~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~324~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14632~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~301~^110.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~305~^110.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~306~^160.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14633~^~208~^4.^4^0.^~8~^~LC~^^^1^4.^4.^3^4.^4.^~4~^~03/01/2009~ -~14633~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~268~^17.^4^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14633~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14633~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~306~^24.^4^5.^~8~^~LC~^^^1^15.^34.^3^6.^41.^~4~^~03/01/2009~ -~14633~^~307~^14.^4^0.^~8~^~LC~^^^1^13.^15.^3^11.^15.^~4~^~03/01/2009~ -~14633~^~318~^2090.^4^10.^~8~^~LC~^^^1^2058.^2101.^3^2055.^2124.^~4~^~03/01/2009~ -~14633~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14633~^~321~^1253.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~337~^144.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14633~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14634~^~208~^77.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~268~^322.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~301~^164.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~305~^85.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~306~^130.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~307~^49.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~318~^175.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~319~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~324~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14634~^~601~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14635~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14635~^~262~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~263~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~268~^192.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14635~^~301~^8.^3^0.^~8~^~LC~^^^1^8.^8.^2^8.^8.^~4~^~04/01/2009~ -~14635~^~304~^7.^3^0.^~8~^~LC~^^^1^7.^7.^2^6.^6.^~4~^~04/01/2009~ -~14635~^~305~^1.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~306~^101.^4^6.^~8~^~LC~^^^2^85.^118.^3^79.^121.^~4~^~05/01/2009~ -~14635~^~307~^29.^4^1.^~8~^~LC~^^^2^28.^33.^3^26.^32.^~4~^~05/01/2009~ -~14635~^~318~^713.^4^346.^~8~^~LC~^^^2^6.^1626.^3^-388.^1814.^~4~^~05/01/2009~ -~14635~^~319~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14635~^~321~^427.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~322~^1.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~14635~^~334~^0.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~337~^144.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~338~^2.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~417~^3.^3^0.^~8~^~LC~^^^1^3.^3.^2^3.^3.^~4~^~05/01/2009~ -~14635~^~431~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~14635~^~435~^3.^0^^~4~^~NC~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~601~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14636~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14636~^~262~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~263~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~268~^161.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14636~^~301~^5.^4^0.^~1~^~A~^^^1^5.^6.^3^4.^5.^~2, 3~^~04/01/2009~ -~14636~^~304~^2.^4^0.^~1~^~A~^^^1^2.^2.^3^1.^2.^~2, 3~^~04/01/2009~ -~14636~^~305~^1.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^1.^~2, 3~^~04/01/2009~ -~14636~^~306~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~2, 3~^~04/01/2009~ -~14636~^~307~^2.^4^0.^~1~^~A~^^^1^0.^4.^3^0.^4.^~1, 2, 3~^~04/01/2009~ -~14636~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14636~^~319~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~320~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~321~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~322~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~324~^0.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2009~ -~14636~^~334~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~337~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~338~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~14636~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~14636~^~432~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~14636~^~435~^1.^0^^~4~^~NC~^~14264~^^^^^^^^^~05/01/2009~ -~14636~^~601~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14637~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14637~^~262~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~263~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14637~^~301~^17.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~304~^3.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~305~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~306~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~307~^8.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14637~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14637~^~319~^32.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~320~^32.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~321~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~322~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~324~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~14637~^~334~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~337~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~338~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~417~^8.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~431~^8.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~432~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~435~^14.^0^^~4~^~NC~^~14605~^^^^^^^^^~05/01/2009~ -~14637~^~601~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14638~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14638~^~268~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14638~^~301~^18.^3^6.^~1~^~A~^^^1^7.^28.^2^-7.^44.^~2, 3~^~05/01/2009~ -~14638~^~304~^3.^3^0.^~1~^~A~^^^1^1.^4.^2^-1.^6.^~2, 3~^~05/01/2009~ -~14638~^~305~^15.^3^5.^~1~^~A~^^^1^6.^25.^2^-7.^38.^~2, 3~^~05/01/2009~ -~14638~^~306~^34.^3^15.^~1~^~A~^^^1^10.^62.^2^-30.^99.^~2, 3~^~05/01/2009~ -~14638~^~307~^14.^3^7.^~1~^~A~^^^1^6.^29.^2^-16.^45.^~2, 3~^~05/01/2009~ -~14639~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14639~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14639~^~301~^118.^3^6.^~8~^~LC~^^^1^104.^125.^2^88.^147.^~4~^~06/01/2009~ -~14639~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~305~^56.^3^6.^~8~^~LC~^^^1^42.^63.^2^25.^85.^~4~^~06/01/2009~ -~14639~^~306~^27.^1^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~14639~^~307~^39.^3^3.^~8~^~LC~^^^1^33.^46.^2^23.^54.^~4~^~06/01/2009~ -~14639~^~318~^208.^3^0.^~8~^~LC~^^^1^208.^208.^2^208.^208.^~4~^~06/01/2009~ -~14639~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~14639~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~14639~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~324~^42.^3^0.^~8~^~LC~^^^1^42.^42.^2^41.^41.^~4~^~06/01/2009~ -~14639~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~14639~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~06/01/2009~ -~14640~^~208~^49.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~262~^19.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14640~^~301~^2.^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14640~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~208~^1.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~262~^19.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~268~^6.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14641~^~301~^2.^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14641~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14641~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14644~^~208~^8.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~262~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~263~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~268~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~304~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~305~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~306~^13.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~307~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~319~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~320~^0.^0^^~4~^~NC~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~321~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~322~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~334~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~337~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~338~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~431~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~432~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~435~^0.^0^^~4~^~NC~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14645~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14645~^~262~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~263~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14645~^~301~^3.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~304~^1.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~305~^0.^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~ -~14645~^~306~^31.^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~ -~14645~^~307~^36.^7^11.^~8~^~LC~^^^1^17.^105.^6^7.^64.^~4~^~03/01/2011~ -~14645~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14645~^~319~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~320~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~321~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~322~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~14645~^~334~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~337~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~338~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~417~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~431~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~432~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~435~^0.^0^^~4~^~NC~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~601~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14646~^~208~^27.^0^^~4~^~NC~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~262~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~263~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14646~^~301~^3.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~304~^1.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~305~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~306~^31.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~307~^36.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14646~^~319~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~320~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~321~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~322~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~14646~^~334~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~337~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~338~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~417~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~431~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~432~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~435~^0.^0^^~4~^~NC~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~601~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14647~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~268~^122.^0^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~301~^42.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^1.^~1, 2, 3~^~03/01/2011~ -~14647~^~305~^0.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^0.^~1, 2, 3~^~03/01/2011~ -~14647~^~306~^31.^5^1.^~1~^~A~^^^1^27.^34.^4^27.^34.^~2, 3~^~03/01/2011~ -~14647~^~307~^25.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~14647~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~14647~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~14647~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~03/01/2011~ -~14647~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~324~^10.^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~14647~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~417~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~14647~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~432~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~14647~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14647~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14648~^~208~^54.^4^2.^~11~^~JO~^^^1^50.^59.^3^46.^60.^~4~^~03/01/2011~ -~14648~^~262~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~263~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~268~^225.^0^^~11~^~JO~^^^^^^^^^^~03/01/2011~ -~14648~^~301~^3.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~304~^5.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~305~^7.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~306~^122.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~307~^61.^3^11.^~8~^~LC~^^^1^38.^72.^2^12.^109.^~4~^~06/01/2013~ -~14648~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14648~^~319~^5.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~320~^5.^0^^~4~^~NC~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~321~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~322~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~14648~^~334~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~337~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~338~^16.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~417~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~431~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~432~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~435~^0.^0^^~4~^~NC~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~601~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14649~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~14649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~14649~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14649~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~306~^20.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~14649~^~319~^0.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~14649~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~14649~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~417~^1.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~431~^0.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~432~^1.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~435~^1.^0^^~4~^~NC~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~601~^0.^0^^~4~^~BFFN~^~11416~^^^^^^^^^~04/01/2011~ -~14651~^~208~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~268~^192.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~301~^3.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14651~^~304~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~305~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~306~^122.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~307~^8.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~318~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14651~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~14651~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14654~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~268~^1641.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14654~^~301~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~304~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~305~^1429.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~306~^1000.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~307~^1214.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~318~^6250.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~319~^1875.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14654~^~320~^1875.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14654~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~324~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~417~^571.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~431~^571.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14654~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~435~^971.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14654~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~15001~^~208~^131.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~268~^548.^0^^~4~^^^^^^^^^^^ -~15001~^~301~^147.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~304~^41.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~305~^174.^3^26.^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~306~^383.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~307~^104.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15001~^~319~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15001~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15001~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~15001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15001~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15002~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~268~^879.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15002~^~301~^232.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~304~^69.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~305~^252.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~307~^3668.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15002~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~324~^69.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~417~^13.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15002~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15002~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15002~^~601~^85.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15003~^~268~^477.^0^^~4~^^^^^^^^^^^ -~15003~^~301~^80.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~305~^200.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~306~^356.^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~307~^70.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15003~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15003~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15003~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15003~^~601~^68.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15004~^~268~^406.^0^^~4~^^^^^^^^^^^ -~15004~^~301~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~305~^198.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~306~^256.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~307~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~318~^90.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~319~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15004~^~320~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15004~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15004~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15004~^~601~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15005~^~268~^519.^0^^~4~^^^^^^^^^^^ -~15005~^~301~^7.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~304~^33.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~305~^227.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~306~^372.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~307~^60.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~318~^398.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~319~^120.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15005~^~320~^120.^3^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15005~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15005~^~432~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15005~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15006~^~268~^377.^0^^~4~^^^^^^^^^^^ -~15006~^~301~^50.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~305~^200.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~306~^404.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~307~^97.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~318~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~319~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15006~^~320~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15006~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15006~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15006~^~601~^60.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15007~^~268~^611.^0^^~4~^^^^^^^^^^^ -~15007~^~301~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~304~^25.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~305~^240.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~306~^375.^24^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~307~^89.^24^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15007~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15007~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15007~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15007~^~601~^65.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~268~^531.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15008~^~301~^41.^11^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~304~^29.^7^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~305~^415.^7^125.^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~306~^333.^14^35.^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~307~^49.^5^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15008~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15008~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~324~^988.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15008~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15008~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15008~^~601~^66.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15009~^~268~^678.^0^^~4~^^^^^^^^^^^ -~15009~^~301~^52.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~305~^531.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~306~^427.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~307~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~318~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~319~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15009~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15009~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15009~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15009~^~601~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15010~^~268~^397.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15010~^~301~^14.^5^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~304~^23.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~305~^209.^4^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~306~^358.^4^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~307~^43.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15010~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15010~^~324~^500.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~ -~15010~^~417~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15010~^~432~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15010~^~601~^58.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15011~^~268~^956.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15011~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~305~^216.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~306~^340.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~307~^280.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~318~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~320~^8.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~15011~^~417~^30.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15011~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15011~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15011~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15011~^~601~^71.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~15012~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15012~^~268~^1105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15012~^~301~^275.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~304~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~305~^356.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~306~^181.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~307~^1500.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~318~^905.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15012~^~319~^271.^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~ -~15012~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15012~^~324~^117.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15012~^~338~^648.^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~ -~15012~^~417~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15012~^~432~^50.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~15012~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15012~^~601~^588.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15013~^~268~^410.^0^^~4~^^^^^^^^^^^ -~15013~^~301~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~304~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~305~^152.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~306~^354.^18^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~307~^55.^18^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15013~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15013~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15013~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15013~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15014~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~268~^741.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15014~^~301~^26.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~304~^17.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~305~^150.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~306~^293.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~307~^481.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~318~^943.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15014~^~319~^283.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15014~^~320~^283.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~324~^530.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15014~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15014~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15014~^~601~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15015~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15015~^~301~^16.^101^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~304~^32.^30^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~305~^203.^75^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~306~^413.^49^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~307~^54.^44^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15015~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15015~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~15015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15015~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15015~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~15015~^~601~^43.^37^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15016~^~301~^14.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~304~^42.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~305~^138.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~306~^244.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~307~^78.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15016~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15016~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15016~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~324~^46.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15016~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15016~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15016~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15017~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15017~^~301~^21.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~305~^260.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~306~^528.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~307~^218.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15017~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15017~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~324~^47.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15017~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15017~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15017~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15018~^~301~^160.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~304~^133.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~305~^950.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~306~^1458.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~307~^7027.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15018~^~319~^42.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15018~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~324~^161.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~417~^25.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15018~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15018~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15018~^~601~^152.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15019~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~301~^8.^11^0.^~1~^~A~^^^1^5.^15.^10^6.^10.^~2, 3~^~07/01/2010~ -~15019~^~304~^20.^11^3.^~1~^~A~^^^1^10.^44.^10^12.^26.^~2, 3~^~07/01/2010~ -~15019~^~305~^281.^11^31.^~1~^~A~^^^1^169.^413.^10^211.^350.^~2, 3~^~07/01/2010~ -~15019~^~306~^235.^11^34.^~1~^~A~^^^1^109.^376.^10^157.^313.^~2, 3~^~07/01/2010~ -~15019~^~307~^303.^11^65.^~1~^~A~^^^1^64.^573.^10^157.^449.^~2, 3~^~07/01/2010~ -~15019~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15019~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~324~^20.^4^4.^~1~^~A~^^^1^6.^30.^3^3.^35.^~2, 3~^~07/01/2010~ -~15019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15019~^~432~^7.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15019~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~601~^47.^4^3.^~1~^~A~^^^1^36.^54.^3^34.^59.^~2, 3~^~07/01/2010~ -~15020~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~268~^435.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15020~^~301~^15.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~304~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~306~^345.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~307~^56.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15020~^~319~^12.^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15020~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~324~^27.^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15020~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15020~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15020~^~601~^61.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15021~^~268~^925.^0^^~4~^^^^^^^^^^^ -~15021~^~301~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~305~^217.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~306~^340.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~307~^348.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~318~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~319~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15021~^~320~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15021~^~417~^34.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15021~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15021~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15021~^~601~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15022~^~268~^364.^0^^~4~^^^^^^^^^^^ -~15022~^~301~^10.^23^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~304~^31.^19^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~305~^204.^6^17.^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~306~^392.^22^14.^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~307~^31.^20^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~318~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~319~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15022~^~320~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15022~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15022~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15022~^~601~^41.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15023~^~268~^356.^0^^~4~^^^^^^^^^^^ -~15023~^~301~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~305~^143.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~306~^416.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~307~^88.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~318~^180.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~319~^54.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15023~^~320~^54.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15023~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15023~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15023~^~601~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15024~^~268~^498.^0^^~4~^^^^^^^^^^^ -~15024~^~301~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~305~^180.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~306~^275.^189^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~307~^75.^163^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~318~^170.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~319~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15024~^~320~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15024~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15024~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15024~^~601~^64.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15025~^~301~^20.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~304~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15025~^~305~^216.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~306~^272.^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~307~^51.^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~318~^3477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15025~^~319~^1043.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15025~^~320~^1043.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~324~^932.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15025~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15025~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15025~^~601~^126.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15026~^~268~^987.^0^^~4~^^^^^^^^^^^ -~15026~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~304~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15026~^~305~^277.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~306~^349.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~318~^3787.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~319~^1137.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15026~^~320~^1137.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15026~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15026~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15026~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15026~^~601~^161.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15027~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15027~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15027~^~268~^1160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~301~^16.^18^0.^~1~^~A~^^^1^14.^23.^13^15.^17.^~2, 3~^~03/01/2013~ -~15027~^~304~^25.^18^0.^~1~^~A~^^^1^16.^35.^12^23.^26.^~2, 3~^~03/01/2013~ -~15027~^~305~^191.^18^3.^~1~^~A~^^^1^132.^282.^11^184.^198.^~2, 3~^~03/01/2013~ -~15027~^~306~^185.^18^2.^~1~^~A~^^^1^115.^240.^10^179.^189.^~2, 3~^~03/01/2013~ -~15027~^~307~^402.^18^11.^~1~^~A~^^^1^311.^644.^7^375.^429.^~2, 3~^~03/01/2013~ -~15027~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~15027~^~319~^3.^3^^~1~^~A~^^^1^2.^5.^^^^~2, 3~^~03/01/2013~ -~15027~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~15027~^~321~^3.^3^^~1~^~A~^^^1^2.^4.^^^^~2, 3~^~03/01/2013~ -~15027~^~322~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~324~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~03/01/2013~ -~15027~^~334~^2.^3^^~1~^~A~^^^1^1.^3.^^^^~2, 3~^~03/01/2013~ -~15027~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~338~^42.^3^^~1~^~A~^^^1^30.^51.^^^^~2, 3~^~03/01/2013~ -~15027~^~417~^24.^3^^~1~^~A~^^^1^14.^37.^^^^~2, 3~^~03/01/2013~ -~15027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~15027~^~432~^24.^3^^~1~^~A~^^^1^14.^37.^^^^^~03/01/2013~ -~15027~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~601~^28.^9^0.^~1~^~A~^^^1^23.^32.^5^26.^30.^~2, 3~^~03/01/2013~ -~15028~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15028~^~268~^294.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~301~^21.^4^3.^~1~^~A~^^^1^13.^31.^3^8.^32.^~2, 3~^~07/01/2010~ -~15028~^~304~^18.^4^2.^~1~^~A~^^^1^12.^22.^3^11.^25.^~2, 3~^~07/01/2010~ -~15028~^~305~^252.^4^31.^~1~^~A~^^^1^195.^330.^3^152.^350.^~2, 3~^~07/01/2010~ -~15028~^~306~^160.^4^37.^~1~^~A~^^^1^67.^230.^3^40.^279.^~2, 3~^~07/01/2010~ -~15028~^~307~^296.^4^51.^~1~^~A~^^^1^179.^429.^3^132.^458.^~2, 3~^~07/01/2010~ -~15028~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15028~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15028~^~324~^113.^11^20.^~1~^~A~^^^1^18.^265.^10^68.^158.^~2, 3~^~07/01/2010~ -~15028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15028~^~417~^5.^3^1.^~1~^~A~^^^1^2.^8.^2^-2.^12.^~2, 3~^~07/01/2010~ -~15028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15028~^~432~^5.^3^1.^~1~^~AS~^^^1^2.^8.^2^-2.^12.^~2, 3~^~07/01/2010~ -~15028~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~601~^45.^4^2.^~1~^~A~^^^1^42.^51.^3^38.^51.^~2, 3~^~07/01/2010~ -~15029~^~208~^86.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~268~^362.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~301~^25.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~305~^309.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~306~^197.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~307~^363.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~318~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~320~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~324~^139.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15029~^~601~^56.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15030~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15030~^~268~^351.^0^^~4~^^^^^^^^^^^ -~15030~^~301~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~304~^9.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~305~^73.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~306~^91.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~307~^524.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~318~^89.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~319~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15030~^~320~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15030~^~417~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15030~^~432~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15030~^~601~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15031~^~268~^385.^0^^~4~^^^^^^^^^^^ -~15031~^~301~^27.^5^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~304~^31.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~305~^162.^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~306~^483.^3^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~307~^53.^4^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~318~^143.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~319~^43.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15031~^~320~^43.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15031~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15031~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15031~^~601~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15032~^~268~^494.^0^^~4~^^^^^^^^^^^ -~15032~^~301~^21.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~305~^143.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~306~^475.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~307~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~318~^165.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15032~^~319~^50.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15032~^~320~^50.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15032~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15032~^~432~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15032~^~601~^47.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15033~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~268~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~301~^11.^8^1.^~1~^~A~^^^1^5.^15.^7^8.^13.^~2, 3~^~07/01/2010~ -~15033~^~304~^21.^8^1.^~1~^~A~^^^1^17.^25.^7^18.^23.^~2, 3~^~07/01/2010~ -~15033~^~305~^227.^8^21.^~1~^~A~^^^1^183.^341.^7^175.^279.^~2, 3~^~07/01/2010~ -~15033~^~306~^286.^8^24.^~1~^~A~^^^1^192.^360.^7^229.^343.^~2, 3~^~07/01/2010~ -~15033~^~307~^213.^8^55.^~1~^~A~^^^1^76.^452.^7^82.^343.^~2, 3~^~07/01/2010~ -~15033~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15033~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~324~^18.^3^3.^~1~^~A~^^^1^11.^24.^2^2.^34.^~2, 3~^~07/01/2010~ -~15033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~417~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15033~^~432~^12.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15033~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~601~^54.^3^3.^~1~^~A~^^^1^46.^58.^2^37.^70.^~2, 3~^~07/01/2010~ -~15034~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15034~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~268~^378.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~301~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~304~^26.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~305~^278.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~306~^351.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~307~^261.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~318~^62.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~319~^21.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~320~^21.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~324~^23.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~417~^13.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~432~^13.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15034~^~601~^66.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15035~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~268~^485.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15035~^~301~^49.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~305~^251.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~306~^415.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~307~^763.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~318~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15035~^~319~^24.^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~ -~15035~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~324~^34.^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~ -~15035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15035~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15035~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15035~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15036~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~301~^7.^10^1.^~1~^~A~^^^1^4.^22.^9^3.^11.^~2, 3~^~07/01/2010~ -~15036~^~304~^23.^10^0.^~1~^~A~^^^1^19.^30.^9^20.^25.^~2, 3~^~07/01/2010~ -~15036~^~305~^236.^10^2.^~1~^~A~^^^1^223.^254.^9^229.^242.^~2, 3~^~07/01/2010~ -~15036~^~306~^435.^10^16.^~1~^~A~^^^1^293.^477.^9^397.^471.^~2, 3~^~07/01/2010~ -~15036~^~307~^68.^10^7.^~1~^~A~^^^1^33.^112.^9^50.^84.^~2, 3~^~07/01/2010~ -~15036~^~318~^67.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15036~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15036~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~324~^190.^10^43.^~1~^~A~^^^1^30.^434.^9^90.^289.^~2, 3~^~07/01/2010~ -~15036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~417~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15036~^~432~^12.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15036~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~601~^49.^4^2.^~1~^~A~^^^1^42.^56.^3^40.^58.^~2, 3~^~07/01/2010~ -~15037~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15037~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~268~^464.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~301~^9.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~305~^287.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~306~^528.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~307~^82.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~318~^73.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~319~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~320~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~324~^231.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~432~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15037~^~601~^60.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15038~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15038~^~268~^778.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15038~^~301~^3.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~304~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~305~^164.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~306~^268.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~307~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15038~^~319~^14.^0^^~4~^~BFSN~^~15028~^^^^^^^^^~03/01/2009~ -~15038~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~324~^1097.^0^^~4~^~BFFN~^~15028~^^^^^^^^^~03/01/2009~ -~15038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15038~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15038~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15038~^~601~^46.^9^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15039~^~268~^661.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15039~^~301~^57.^3^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~304~^32.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~305~^236.^4^33.^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~306~^327.^5^50.^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~307~^90.^7^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15039~^~319~^28.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15039~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~324~^167.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15039~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15039~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15039~^~601~^60.^20^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~208~^203.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~268~^849.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15040~^~301~^74.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~304~^41.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~305~^303.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~306~^419.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~307~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15040~^~319~^36.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15040~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15040~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~324~^214.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15040~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15040~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15040~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15040~^~601~^77.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15041~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~15041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15041~^~268~^1096.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15041~^~301~^77.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~304~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~305~^89.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~306~^69.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~307~^870.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~318~^860.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15041~^~319~^258.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15041~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15041~^~324~^113.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~15041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15041~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15041~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15041~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15041~^~601~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15042~^~268~^908.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15042~^~301~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~304~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~305~^325.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~306~^447.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~307~^918.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~318~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15042~^~319~^40.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15042~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~324~^86.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15042~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15042~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15042~^~601~^82.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15043~^~268~^816.^0^^~4~^^^^^^^^^^^ -~15043~^~301~^83.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~304~^32.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~305~^228.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~306~^423.^31^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~307~^74.^31^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~318~^106.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~319~^32.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15043~^~320~^32.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15043~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15043~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15043~^~601~^77.^3^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15044~^~268~^364.^0^^~4~^^^^^^^^^^^ -~15044~^~301~^34.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~304~^63.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~305~^198.^3^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~306~^379.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~307~^135.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~318~^100.^3^65.^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~319~^30.^3^19.^~1~^^^^^^^^^^^~06/01/2002~ -~15044~^~320~^30.^3^19.^~1~^^^^^^^^^^^~06/01/2002~ -~15044~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15044~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15044~^~601~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15045~^~268~^356.^0^^~4~^^^^^^^^^^^ -~15045~^~301~^14.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~304~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~305~^201.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~306~^437.^95^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~307~^59.^95^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~319~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15045~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15045~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15045~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15045~^~601~^52.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15046~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15046~^~268~^858.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15046~^~301~^12.^7^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~304~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~305~^217.^8^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~306~^314.^10^19.^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~307~^90.^14^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15046~^~319~^50.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15046~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15046~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~324~^643.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15046~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15046~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15046~^~601~^70.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15047~^~268~^1096.^0^^~4~^^^^^^^^^^^ -~15047~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~304~^97.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~305~^278.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~306~^401.^10^15.^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~307~^83.^10^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~318~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~319~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15047~^~320~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15047~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15047~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15047~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15047~^~601~^75.^10^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15048~^~268~^653.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15048~^~301~^241.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~305~^301.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~306~^194.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~307~^379.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~318~^433.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15048~^~319~^130.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15048~^~320~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~324~^292.^0^^~4~^~BFFN~^~15050~^^^^^^^^^~03/01/2009~ -~15048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~417~^5.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15048~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15048~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15048~^~601~^79.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15049~^~268~^439.^0^^~4~^^^^^^^^^^^ -~15049~^~301~^31.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~305~^248.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~306~^435.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~307~^158.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~318~^727.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~319~^218.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15049~^~320~^218.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15049~^~417~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15049~^~432~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15049~^~601~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~268~^661.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15050~^~301~^23.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~304~^28.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~305~^125.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~306~^406.^3^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~307~^86.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~318~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15050~^~319~^19.^0^^~4~^~BFSN~^~15127~^^^^^^^^^~03/01/2009~ -~15050~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~324~^366.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~417~^2.^5^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15050~^~432~^2.^5^0.^~1~^^^^^^^^^^^~03/01/2009~ -~15050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15050~^~601~^47.^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~268~^582.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15051~^~301~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~304~^33.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~305~^205.^3^31.^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~306~^446.^3^32.^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~307~^59.^3^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~318~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15051~^~319~^39.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15051~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~324~^292.^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~ -~15051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15051~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15051~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15051~^~601~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15052~^~268~^661.^0^^~4~^^^^^^^^^^^ -~15052~^~301~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~304~^38.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~305~^271.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~306~^554.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~307~^66.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~318~^109.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15052~^~319~^33.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15052~^~320~^33.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15052~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15052~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15052~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15052~^~601~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15053~^~268~^619.^0^^~4~^^^^^^^^^^^ -~15053~^~301~^51.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~305~^162.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~306~^292.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~307~^72.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15053~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15053~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15053~^~432~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15053~^~601~^52.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15054~^~268~^318.^0^^~4~^^^^^^^^^^^ -~15054~^~301~^8.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~304~^21.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~306~^400.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~307~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~318~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15054~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15054~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15054~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15054~^~601~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~268~^490.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15055~^~301~^41.^6^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~304~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~305~^221.^7^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~306~^357.^10^19.^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~307~^65.^12^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~318~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15055~^~319~^37.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15055~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~324~^61.^0^^~4~^~BFFN~^~15057~^^^^^^^^^~03/01/2009~ -~15055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~417~^9.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15055~^~432~^9.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15055~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15055~^~601~^49.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15056~^~268~^628.^0^^~4~^^^^^^^^^^^ -~15056~^~301~^31.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~304~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~305~^244.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~306~^458.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~307~^71.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~318~^141.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~319~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15056~^~320~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15056~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15056~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15056~^~601~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15057~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~301~^28.^11^4.^~1~^~A~^^^1^10.^57.^10^17.^38.^~2, 3~^~07/01/2010~ -~15057~^~304~^23.^11^1.^~1~^~A~^^^1^18.^31.^10^19.^25.^~2, 3~^~07/01/2010~ -~15057~^~305~^248.^11^20.^~1~^~A~^^^1^157.^355.^10^201.^295.^~2, 3~^~07/01/2010~ -~15057~^~306~^187.^11^27.^~1~^~A~^^^1^102.^338.^10^125.^248.^~2, 3~^~07/01/2010~ -~15057~^~307~^287.^11^42.^~1~^~A~^^^1^54.^413.^10^192.^381.^~2, 3~^~07/01/2010~ -~15057~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15057~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~324~^48.^4^32.^~1~^~A~^^^1^9.^144.^3^-54.^150.^~2, 3~^~07/01/2010~ -~15057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15057~^~432~^9.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15057~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~601~^52.^4^2.^~1~^~A~^^^1^45.^56.^3^43.^59.^~2, 3~^~07/01/2010~ -~15058~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15058~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~268~^401.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~301~^34.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~304~^27.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~305~^300.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~306~^226.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~307~^347.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~318~^44.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~320~^15.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~324~^58.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15058~^~601~^63.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15059~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15059~^~268~^331.^0^^~4~^^^^^^^^^^^ -~15059~^~301~^10.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~304~^13.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~306~^400.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~307~^61.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~318~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15059~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15059~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15059~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15059~^~601~^52.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~268~^381.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15060~^~301~^80.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~305~^200.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~306~^269.^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~307~^62.^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15060~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15060~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~324~^118.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15060~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15060~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15060~^~601~^90.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15061~^~268~^490.^0^^~4~^^^^^^^^^^^ -~15061~^~301~^102.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~305~^257.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~306~^344.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~307~^79.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~318~^32.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~319~^10.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15061~^~320~^10.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15061~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15061~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15061~^~601~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~268~^368.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15062~^~301~^57.^3^15.^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~304~^31.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~305~^220.^3^23.^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~306~^259.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~307~^39.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~318~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15062~^~319~^21.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15062~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15062~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~324~^99.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15062~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15062~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15062~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15063~^~268~^473.^0^^~4~^^^^^^^^^^^ -~15063~^~301~^73.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~305~^282.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~306~^331.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~307~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~318~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15063~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15063~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15063~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15063~^~601~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15064~^~268~^389.^0^^~4~^^^^^^^^^^^ -~15064~^~301~^110.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~306~^389.^3^70.^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~307~^51.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~318~^70.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~319~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15064~^~320~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15064~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15064~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15064~^~601~^86.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~268~^385.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15065~^~301~^60.^17^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~304~^67.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~305~^221.^22^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~306~^356.^30^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~307~^86.^28^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~318~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15065~^~319~^14.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15065~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~324~^42.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15065~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15065~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15065~^~601~^71.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15066~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~301~^15.^8^4.^~1~^~A~^^^1^5.^36.^7^4.^24.^~2, 3~^~07/01/2010~ -~15066~^~304~^16.^8^2.^~1~^~A~^^^1^9.^27.^7^10.^21.^~2, 3~^~07/01/2010~ -~15066~^~305~^284.^8^48.^~1~^~A~^^^1^135.^541.^7^170.^397.^~2, 3~^~07/01/2010~ -~15066~^~306~^160.^8^40.^~1~^~A~^^^1^73.^416.^7^64.^254.^~2, 3~^~07/01/2010~ -~15066~^~307~^333.^8^67.^~1~^~A~^^^1^72.^617.^7^174.^491.^~2, 3~^~07/01/2010~ -~15066~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15066~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~324~^8.^3^4.^~1~^~A~^^^1^3.^17.^2^-11.^27.^~2, 3~^~07/01/2010~ -~15066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~417~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15066~^~432~^3.^2^^~1~^^^^^^^^^^^~07/01/2010~ -~15066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~601~^46.^3^3.^~1~^~A~^^^1^42.^52.^2^32.^59.^~2, 3~^~07/01/2010~ -~15067~^~208~^111.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~268~^464.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~301~^72.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~304~^81.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~305~^267.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~306~^430.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~307~^419.^0^^~4~^~O~^^^^^^^^^^~09/01/2011~ -~15067~^~318~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~319~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~320~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~324~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~417~^3.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~432~^3.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15067~^~601~^86.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15068~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~268~^686.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15068~^~301~^22.^6^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~304~^27.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~305~^195.^6^19.^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~306~^381.^7^39.^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~307~^65.^7^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15068~^~319~^40.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15068~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~324~^439.^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~ -~15068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15068~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15068~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15068~^~601~^50.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15069~^~268~^883.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~15069~^~301~^43.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~304~^31.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~305~^341.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~306~^636.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~307~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~318~^120.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~319~^36.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~15069~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~15069~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15069~^~432~^17.^0^^~4~^^^^^^^^^^^~04/01/2004~ -~15069~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~15069~^~601~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15070~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15070~^~301~^14.^4^1.^~1~^~A~^^^1^10.^17.^3^9.^19.^~2, 3~^~07/01/2010~ -~15070~^~304~^27.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^29.^~2, 3~^~07/01/2010~ -~15070~^~305~^205.^4^8.^~1~^~A~^^^1^192.^227.^3^179.^231.^~2, 3~^~07/01/2010~ -~15070~^~306~^386.^4^6.^~1~^~A~^^^1^371.^401.^3^365.^406.^~2, 3~^~07/01/2010~ -~15070~^~307~^74.^4^3.^~1~^~A~^^^1^63.^82.^3^61.^86.^~2, 3~^~07/01/2010~ -~15070~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15070~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~324~^151.^4^90.^~1~^~A~^^^1^37.^421.^3^-137.^439.^~2, 3~^~07/01/2010~ -~15070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15070~^~432~^9.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15070~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15070~^~601~^50.^3^2.^~1~^~A~^^^1^48.^54.^2^41.^59.^~2, 3~^~07/01/2010~ -~15071~^~208~^109.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~268~^458.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~301~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~304~^33.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~305~^248.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~306~^467.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~307~^89.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~318~^16.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~320~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~324~^183.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15071~^~601~^61.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15072~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15072~^~301~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~304~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~305~^402.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~306~^221.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~307~^91.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~318~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15072~^~319~^90.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2003~ -~15072~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~324~^484.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~338~^214.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2003~ -~15072~^~417~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15072~^~432~^80.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15072~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15072~^~601~^374.^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15073~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~301~^9.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~304~^17.^3^1.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~305~^107.^3^14.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~306~^167.^3^9.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~318~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~319~^21.^0^^~4~^~T~^^^^^^^^^^~03/01/2005~ -~15073~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~417~^26.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15073~^~432~^26.^3^2.^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~601~^60.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15074~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15074~^~268~^816.^0^^~4~^^^^^^^^^^^ -~15074~^~301~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~304~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~305~^168.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~306~^358.^56^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~307~^56.^56^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~318~^310.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~319~^93.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15074~^~320~^93.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15074~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15074~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15074~^~601~^49.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15075~^~268~^1075.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15075~^~301~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~304~^74.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~305~^222.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~306~^471.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~307~^737.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~318~^408.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~320~^122.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~15075~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15075~^~432~^20.^0^^~4~^^^^^^^^^^^~08/01/2010~ -~15075~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15075~^~601~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15076~^~268~^594.^0^^~4~^^^^^^^^^^^ -~15076~^~301~^12.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~304~^29.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~305~^200.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~306~^490.^3^30.^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~307~^44.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~318~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~319~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15076~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15076~^~417~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15076~^~432~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15076~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~268~^490.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15077~^~301~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~304~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~305~^164.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~306~^175.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~307~^672.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~15077~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15077~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15077~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~324~^685.^0^^~4~^~BFSN~^~15085~^^^^^^^^^~03/01/2009~ -~15077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15077~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15077~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15077~^~601~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~301~^26.^3^13.^~6~^~JA~^^^2^7.^47.^1^-143.^195.^~2, 3~^~04/01/2003~ -~15078~^~304~^95.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15078~^~305~^289.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15078~^~306~^394.^77^^~1~^^^^1^352.^447.^^^^~2, 3~^~04/01/2003~ -~15078~^~307~^47.^79^0.^~6~^~JA~^^^2^37.^64.^1^46.^47.^~2, 3~^~04/01/2003~ -~15078~^~318~^453.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~319~^136.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~15078~^~320~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~417~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15078~^~432~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~15078~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~601~^50.^2^^~1~^~A~^^^1^41.^60.^1^^^^~04/01/2003~ -~15079~^~208~^120.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~268~^502.^0^^~4~^^^^^^^^^^^ -~15079~^~301~^11.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~304~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~305~^283.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~306~^429.^6^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~307~^50.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~318~^99.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~319~^30.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15079~^~320~^30.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15079~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15079~^~432~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15079~^~601~^74.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15080~^~268~^590.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15080~^~301~^249.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~305~^354.^6^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~307~^391.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~15080~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15080~^~319~^18.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15080~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15080~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~324~^386.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15080~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15080~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15080~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~268~^611.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15081~^~301~^36.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~304~^31.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~305~^262.^3^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~306~^423.^47^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~307~^46.^47^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~318~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15081~^~319~^40.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15081~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15081~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~324~^361.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~417~^9.^3^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15081~^~432~^9.^3^3.^~1~^^^^^^^^^^^~03/01/2009~ -~15081~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15081~^~601~^45.^3^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15082~^~268~^770.^0^^~4~^^^^^^^^^^^ -~15082~^~301~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~304~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~305~^298.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~306~^455.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~307~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~318~^108.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~319~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15082~^~320~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15082~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15082~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15082~^~601~^57.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15083~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~2, 3~^~07/01/2010~ -~15083~^~304~^27.^3^0.^~1~^~A~^^^1^26.^28.^2^25.^28.^~2, 3~^~07/01/2010~ -~15083~^~305~^261.^3^10.^~1~^~A~^^^1^243.^279.^2^216.^305.^~2, 3~^~07/01/2010~ -~15083~^~306~^366.^3^26.^~1~^~A~^^^1^318.^410.^2^251.^481.^~2, 3~^~07/01/2010~ -~15083~^~307~^75.^3^25.^~1~^~A~^^^1^43.^125.^2^-33.^183.^~2, 3~^~07/01/2010~ -~15083~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~319~^35.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15083~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~324~^435.^3^75.^~1~^~A~^^^1^285.^525.^2^110.^759.^~2, 3~^~07/01/2010~ -~15083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15083~^~432~^4.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15083~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~601~^46.^2^^~1~^~A~^^^1^42.^50.^1^^^^~07/01/2010~ -~15084~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15084~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~301~^215.^17^7.^~1~^~A~^^^1^154.^262.^16^198.^231.^~2, 3~^~05/01/2011~ -~15084~^~304~^30.^17^0.^~1~^~A~^^^1^27.^34.^16^28.^30.^~2, 3~^~05/01/2011~ -~15084~^~305~^337.^17^5.^~1~^~A~^^^1^299.^379.^16^324.^349.^~2, 3~^~05/01/2011~ -~15084~^~306~^344.^17^4.^~1~^~A~^^^1^301.^368.^16^334.^352.^~2, 3~^~05/01/2011~ -~15084~^~307~^403.^17^8.^~1~^~A~^^^1^304.^471.^16^383.^421.^~2, 3~^~05/01/2011~ -~15084~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15084~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15084~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~324~^547.^0^^~4~^~BFFN~^~15083~^^^^^^^^^~03/01/2009~ -~15084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~417~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15084~^~432~^15.^3^0.^~1~^^^^^^^^^^^~03/01/2009~ -~15084~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15084~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15085~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~268~^549.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~301~^9.^22^^~1~^~A~^^^3^7.^10.^^^^~2~^~08/01/2015~ -~15085~^~304~^30.^22^^~1~^~A~^^^3^30.^31.^^^^~2~^~07/01/2010~ -~15085~^~305~^257.^22^^~1~^~A~^^^3^248.^266.^^^^~2~^~08/01/2015~ -~15085~^~306~^367.^22^^~1~^~A~^^^3^343.^398.^^^^~2~^~08/01/2015~ -~15085~^~307~^78.^22^^~1~^~A~^^^3^50.^112.^^^^~2~^~08/01/2015~ -~15085~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~319~^49.^15^2.^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~320~^49.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~324~^563.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~15085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15085~^~417~^6.^19^^~1~^~A~^^^2^4.^8.^^^^~2~^~08/01/2015~ -~15085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15085~^~432~^6.^19^^~1~^~A~^^^2^4.^8.^^^^^~08/01/2015~ -~15085~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~601~^51.^22^^~1~^~A~^^^3^50.^53.^^^^~2~^~08/01/2015~ -~15086~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15086~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~268~^653.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15086~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~305~^305.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~306~^436.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~307~^92.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15086~^~319~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~320~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~324~^670.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15086~^~601~^61.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15087~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~301~^232.^12^5.^~1~^~A~^^^1^204.^260.^11^218.^244.^~2, 3~^~05/01/2011~ -~15087~^~304~^31.^12^0.^~1~^~A~^^^1^27.^34.^11^29.^32.^~2, 3~^~06/01/2005~ -~15087~^~305~^338.^12^3.^~1~^~A~^^^1^320.^353.^11^331.^345.^~2, 3~^~05/01/2011~ -~15087~^~306~^314.^12^5.^~1~^~A~^^^1^286.^338.^11^302.^324.^~2, 3~^~05/01/2011~ -~15087~^~307~^408.^12^18.^~1~^~A~^^^1^334.^532.^11^367.^448.^~2, 3~^~05/01/2011~ -~15087~^~318~^184.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15087~^~319~^55.^12^3.^~1~^~A~^^^1^38.^77.^11^47.^62.^~2, 3~^~05/01/2011~ -~15087~^~320~^55.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~324~^841.^3^71.^~1~^~A~^^^1^706.^949.^2^533.^1147.^~2, 3~^~05/01/2011~ -~15087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~417~^4.^4^0.^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15087~^~432~^4.^4^0.^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15087~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15087~^~601~^79.^12^1.^~1~^~A~^^^1^70.^84.^11^75.^81.^~2, 3~^~05/01/2011~ -~15088~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15088~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~15088~^~301~^382.^22^14.^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~304~^39.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~305~^490.^22^15.^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~306~^397.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~307~^307.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~15088~^~318~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15088~^~319~^32.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15088~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15088~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~324~^193.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15088~^~601~^142.^4^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~208~^185.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15089~^~268~^774.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~301~^240.^3^36.^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~304~^34.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~305~^366.^3^54.^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~306~^341.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~307~^414.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15089~^~319~^32.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15089~^~321~^26.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15089~^~324~^193.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15089~^~337~^1398.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~417~^24.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15089~^~432~^24.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15089~^~601~^61.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15090~^~301~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~304~^23.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~305~^185.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~306~^287.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~307~^42.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~318~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15090~^~319~^27.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15090~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15090~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~324~^47.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15090~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15090~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15090~^~601~^52.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15091~^~301~^10.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~304~^41.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~305~^194.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~306~^256.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~307~^68.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~318~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15091~^~319~^46.^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15091~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15091~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~324~^226.^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15091~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15091~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15091~^~601~^41.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15092~^~268~^519.^0^^~4~^^^^^^^^^^^ -~15092~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~304~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~305~^248.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~306~^328.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~307~^87.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~318~^213.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~319~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15092~^~320~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15092~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15092~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15092~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15093~^~268~^435.^0^^~4~^^^^^^^^^^^ -~15093~^~301~^17.^6^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~304~^31.^6^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~305~^250.^6^14.^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~306~^341.^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~307~^58.^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15093~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15093~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15093~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15093~^~601~^83.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~268~^824.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15094~^~301~^47.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~305~^272.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~306~^384.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~307~^51.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15094~^~319~^32.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15094~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~324~^190.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15094~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15094~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15094~^~601~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15095~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~268~^544.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15095~^~301~^34.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~304~^49.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~305~^210.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~306~^160.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~307~^79.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15095~^~319~^70.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15095~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~324~^24.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15095~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15095~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15095~^~601~^51.^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15096~^~268~^954.^0^^~4~^^^^^^^^^^^ -~15096~^~301~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~304~^43.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~305~^194.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~306~^155.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~307~^122.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~318~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~319~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15096~^~320~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15096~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15096~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15096~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15096~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15096~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15097~^~268~^452.^0^^~4~^^^^^^^^^^^ -~15097~^~301~^21.^3^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~304~^32.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~305~^313.^3^25.^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~306~^404.^4^63.^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~307~^71.^4^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15097~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15097~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15097~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15097~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15098~^~268~^527.^0^^~4~^^^^^^^^^^^ -~15098~^~301~^37.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~304~^35.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~305~^350.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~306~^512.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~307~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~318~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~319~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15098~^~320~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15098~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15098~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15098~^~601~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15099~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15099~^~301~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~305~^230.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~306~^290.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~307~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15099~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15099~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~324~^31.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15099~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15099~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15099~^~601~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15100~^~268~^519.^0^^~4~^^^^^^^^^^^ -~15100~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~305~^295.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~306~^372.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~307~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~318~^58.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~319~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15100~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15100~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15100~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15100~^~601~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15101~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~268~^418.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15101~^~301~^32.^22^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~304~^32.^6^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~305~^198.^28^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~306~^417.^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~307~^64.^19^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15101~^~319~^32.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15101~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15101~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~324~^408.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15101~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15101~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15101~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15101~^~601~^37.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15102~^~268~^536.^0^^~4~^^^^^^^^^^^ -~15102~^~301~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~305~^201.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~306~^522.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~307~^57.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~318~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~319~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15102~^~320~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15102~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15102~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15102~^~601~^47.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15103~^~268~^515.^0^^~4~^^^^^^^^^^^ -~15103~^~301~^14.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~304~^42.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~305~^186.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~306~^496.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~307~^29.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15103~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15103~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15103~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15103~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15104~^~301~^13.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~304~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~305~^211.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~306~^284.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~307~^54.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~318~^700.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15104~^~319~^210.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15104~^~320~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~324~^412.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15104~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15104~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15104~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~268~^565.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15105~^~301~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~304~^45.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~305~^271.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~306~^364.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~307~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~318~^875.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15105~^~319~^263.^0^^~4~^~BFYN~^~15104~^^^^^^^^^~02/01/2003~ -~15105~^~320~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~324~^515.^0^^~4~^~BFYN~^~15104~^^^^^^^^^~03/01/2009~ -~15105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15105~^~432~^17.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15105~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15105~^~601~^77.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15106~^~301~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~304~^47.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~305~^281.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~306~^379.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~307~^739.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~318~^933.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15106~^~319~^280.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15106~^~320~^280.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~324~^642.^0^^~4~^~BFSN~^~15105~^^^^^^^^^~03/01/2009~ -~15106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15106~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15106~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15106~^~601~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15107~^~268~^385.^0^^~4~^^^^^^^^^^^ -~15107~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~306~^380.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~307~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~318~^170.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~319~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15107~^~320~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15107~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15107~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15107~^~601~^41.^5^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15108~^~268~^372.^0^^~4~^^^^^^^^^^^ -~15108~^~301~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~305~^180.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~306~^350.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~307~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~319~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15108~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15108~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15108~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15108~^~601~^67.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~268~^414.^0^^~4~^^^^^^^^^^^ -~15109~^~301~^9.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~306~^112.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~307~^143.^3^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15109~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15109~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15109~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15109~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~15109~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15109~^~601~^30.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15110~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~301~^5.^11^0.^~1~^~A~^^^1^3.^8.^10^3.^6.^~2, 3~^~07/01/2010~ -~15110~^~304~^29.^11^1.^~1~^~A~^^^1^26.^39.^10^26.^32.^~2, 3~^~07/01/2010~ -~15110~^~305~^255.^11^4.^~1~^~A~^^^1^231.^280.^10^245.^263.^~2, 3~^~07/01/2010~ -~15110~^~306~^418.^11^14.^~1~^~A~^^^1^321.^480.^10^386.^449.^~2, 3~^~07/01/2010~ -~15110~^~307~^81.^11^14.^~1~^~A~^^^1^36.^192.^10^48.^113.^~2, 3~^~07/01/2010~ -~15110~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~319~^36.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15110~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~324~^558.^11^161.^~1~^~A~^^^1^107.^1961.^10^198.^917.^~2, 3~^~07/01/2010~ -~15110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15110~^~432~^2.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15110~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~601~^66.^4^2.^~1~^~A~^^^1^59.^71.^3^56.^74.^~2, 3~^~07/01/2010~ -~15111~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15111~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~268~^718.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~301~^6.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~304~^35.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~305~^304.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~306~^499.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~307~^97.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~318~^129.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~319~^43.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~324~^666.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15111~^~601~^78.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15112~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15112~^~268~^402.^0^^~4~^^^^^^^^^^^ -~15112~^~301~^26.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~304~^28.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~305~^187.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~306~^433.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~307~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~318~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~319~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15112~^~320~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15112~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15112~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15112~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15113~^~268~^615.^0^^~4~^^^^^^^^^^^ -~15113~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~305~^236.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~306~^512.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~307~^59.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~318~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~319~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15113~^~320~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15113~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15113~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15113~^~601~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15114~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~268~^619.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15114~^~301~^43.^15^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~304~^22.^19^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~305~^245.^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~306~^361.^20^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~307~^52.^25^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15114~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15114~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15114~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~324~^155.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~417~^13.^1^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15114~^~432~^13.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15114~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15114~^~601~^58.^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15115~^~268~^498.^0^^~4~^^^^^^^^^^^ -~15115~^~301~^67.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~304~^31.^22^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~305~^271.^5^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~306~^481.^22^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~307~^31.^22^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~318~^62.^22^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~319~^19.^22^2.^~1~^^^^^^^^^^^~06/01/2002~ -~15115~^~320~^19.^22^2.^~1~^^^^^^^^^^^~06/01/2002~ -~15115~^~417~^12.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15115~^~432~^12.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15115~^~601~^59.^7^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15116~^~268~^628.^0^^~4~^^^^^^^^^^^ -~15116~^~301~^86.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15116~^~304~^31.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~305~^269.^4^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~306~^448.^4^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~307~^56.^4^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15116~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15116~^~417~^19.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15116~^~432~^19.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15116~^~601~^69.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~268~^602.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15117~^~301~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15117~^~304~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15117~^~305~^254.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15117~^~306~^252.^4^41.^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~307~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~318~^2183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15117~^~319~^655.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15117~^~320~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~324~^227.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15117~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15117~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15117~^~601~^38.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15118~^~268~^770.^0^^~4~^^^^^^^^^^^ -~15118~^~301~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~304~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~305~^326.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~306~^323.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~318~^2520.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~319~^757.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15118~^~320~^757.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15118~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15118~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15118~^~601~^49.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15119~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15119~^~301~^13.^9^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~304~^31.^8^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~305~^311.^9^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~306~^207.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~307~^416.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~15119~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15119~^~319~^23.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15119~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~324~^269.^0^^~4~^~BFNN~^~15117~^^^^^^^^^~03/01/2009~ -~15119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~417~^5.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15119~^~432~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2009~ -~15119~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15119~^~601~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15121~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~268~^361.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~301~^17.^24^0.^~1~^~A~^^^1^10.^22.^11^16.^18.^~2, 3~^~06/01/2012~ -~15121~^~304~^23.^24^0.^~1~^~A~^^^1^19.^27.^12^21.^23.^~2, 3~^~06/01/2012~ -~15121~^~305~^139.^24^0.^~1~^~A~^^^1^116.^151.^18^137.^140.^~2, 3~^~06/01/2012~ -~15121~^~306~^179.^24^1.^~1~^~A~^^^1^156.^197.^15^175.^183.^~2, 3~^~06/01/2012~ -~15121~^~307~^247.^24^10.^~1~^~A~^^^1^152.^350.^10^222.^270.^~2, 3~^~06/01/2012~ -~15121~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15121~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15121~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~324~^47.^4^^~1~^~A~^^^1^29.^54.^^^^~2, 3~^~06/01/2012~ -~15121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~417~^4.^7^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15121~^~432~^4.^7^0.^~1~^^^^^^^^^^^~03/01/2009~ -~15121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15121~^~601~^36.^4^^~1~^~A~^^^1^31.^38.^^^^~2, 3~^~06/01/2012~ -~15123~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15123~^~268~^431.^0^^~4~^^^^^^^^^^^ -~15123~^~301~^29.^3^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~304~^34.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~305~^222.^8^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~306~^407.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~307~^37.^4^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~318~^52.^3^22.^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~319~^16.^3^6.^~1~^^^^^^^^^^^~06/01/2002~ -~15123~^~320~^16.^3^6.^~1~^^^^^^^^^^^~06/01/2002~ -~15123~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15123~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15123~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15123~^~601~^47.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~304~^34.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~305~^267.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~307~^396.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~417~^5.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15124~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2006~ -~15124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~601~^31.^6^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15126~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~15126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~268~^536.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15126~^~301~^14.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~304~^33.^5^1.^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~305~^217.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~306~^237.^6^35.^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~307~^377.^7^40.^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15126~^~319~^6.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15126~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15126~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~324~^80.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15126~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15126~^~432~^2.^3^0.^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15126~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15127~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~301~^4.^11^0.^~1~^~A~^^^1^3.^4.^10^3.^3.^~2, 3~^~07/01/2010~ -~15127~^~304~^35.^11^0.^~1~^~A~^^^1^27.^38.^10^32.^36.^~2, 3~^~07/01/2010~ -~15127~^~305~^278.^11^4.^~1~^~A~^^^1^248.^297.^10^269.^287.^~2, 3~^~07/01/2010~ -~15127~^~306~^441.^11^9.^~1~^~A~^^^1^396.^491.^10^421.^461.^~2, 3~^~07/01/2010~ -~15127~^~307~^45.^11^5.^~1~^~A~^^^1^26.^83.^10^32.^56.^~2, 3~^~07/01/2010~ -~15127~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~319~^18.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15127~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~324~^69.^4^4.^~1~^~A~^^^1^59.^78.^3^53.^83.^~2, 3~^~07/01/2010~ -~15127~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15127~^~432~^2.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15127~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~601~^39.^4^0.^~1~^~A~^^^1^38.^40.^3^38.^40.^~2, 3~^~07/01/2010~ -~15128~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15128~^~268~^782.^0^^~4~^^^^^^^^^^^ -~15128~^~301~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~304~^19.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~305~^178.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~306~^178.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~307~^402.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~318~^97.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~15128~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~15128~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15128~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15128~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15128~^~601~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15129~^~268~^397.^0^^~4~^^^^^^^^^^^ -~15129~^~301~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~304~^51.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~305~^129.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~306~^238.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~307~^150.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~318~^35.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~319~^11.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15129~^~320~^11.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15129~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15129~^~432~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15129~^~601~^48.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~268~^561.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15130~^~301~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~305~^270.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~306~^317.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~307~^51.^17^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15130~^~319~^36.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15130~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~324~^478.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15130~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15130~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15130~^~601~^60.^24^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~268~^452.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15131~^~301~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~304~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~305~^132.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~306~^423.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~307~^1019.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15131~^~319~^57.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15131~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~324~^512.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~417~^7.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15131~^~432~^7.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15131~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15131~^~601~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~268~^377.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15132~^~301~^48.^12^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~304~^21.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~305~^222.^13^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~306~^249.^32^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~307~^72.^34^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15132~^~319~^30.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15132~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~324~^57.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~417~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15132~^~432~^13.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15132~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15132~^~601~^67.^11^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~268~^483.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15133~^~301~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~305~^285.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~306~^434.^11^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~307~^132.^11^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~318~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15133~^~319~^38.^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15133~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15133~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~324~^73.^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15133~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15133~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15133~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15133~^~601~^84.^11^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15134~^~268~^402.^0^^~4~^^^^^^^^^^^ -~15134~^~301~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~307~^85.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~318~^375.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~319~^113.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15134~^~320~^113.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15134~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15134~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15134~^~601~^46.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15135~^~268~^611.^0^^~4~^^^^^^^^^^^ -~15135~^~301~^23.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~305~^157.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~306~^420.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~307~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~318~^95.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~319~^29.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15135~^~320~^29.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15135~^~417~^4.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15135~^~432~^4.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~15135~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15136~^~268~^351.^0^^~4~^^^^^^^^^^^ -~15136~^~301~^46.^36^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~304~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~305~^219.^43^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~306~^204.^3^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~307~^836.^3^40.^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~318~^24.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~319~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15136~^~320~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~15136~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15136~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15136~^~601~^42.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15137~^~268~^406.^0^^~4~^^^^^^^^^^^ -~15137~^~301~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~304~^63.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~305~^280.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~306~^262.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~307~^1072.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~318~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15137~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15137~^~417~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15137~^~432~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15137~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15138~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~268~^396.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~301~^13.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15138~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~306~^90.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15138~^~307~^529.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~15138~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~15138~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15138~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15138~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15138~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~431~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15138~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15138~^~601~^20.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15139~^~268~^364.^0^^~4~^^^^^^^^^^^ -~15139~^~301~^89.^30^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~304~^34.^17^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~305~^229.^37^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~306~^329.^15^17.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~307~^293.^15^19.^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~318~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~319~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15139~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15139~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15139~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15139~^~601~^78.^6^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15140~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~301~^91.^3^10.^~1~^~A~^^^1^70.^104.^2^44.^137.^~2, 3~^~07/01/2010~ -~15140~^~304~^36.^3^4.^~1~^~A~^^^1^27.^41.^2^15.^56.^~2, 3~^~07/01/2010~ -~15140~^~305~^234.^3^45.^~1~^~A~^^^1^145.^295.^2^38.^429.^~2, 3~^~07/01/2010~ -~15140~^~306~^259.^3^36.^~1~^~A~^^^1^185.^296.^2^100.^417.^~2, 3~^~07/01/2010~ -~15140~^~307~^395.^3^55.^~1~^~A~^^^1^315.^502.^2^154.^634.^~2, 3~^~07/01/2010~ -~15140~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15140~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15140~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~07/01/2010~ -~15140~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15140~^~417~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15140~^~432~^51.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15140~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~601~^97.^3^18.^~1~^~A~^^^1^61.^120.^2^18.^176.^~2, 3~^~07/01/2010~ -~15141~^~208~^83.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~268~^347.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~301~^91.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~305~^234.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~306~^259.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~307~^563.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~15141~^~318~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~417~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~432~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15141~^~601~^97.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15142~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15142~^~268~^649.^0^^~4~^^^^^^^^^^^ -~15142~^~301~^105.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~305~^213.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~306~^324.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~307~^330.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~318~^252.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~15142~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~15142~^~417~^53.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15142~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15142~^~432~^42.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15142~^~601~^150.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15143~^~268~^360.^0^^~4~^^^^^^^^^^^ -~15143~^~301~^46.^8^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~304~^45.^8^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~305~^182.^12^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~306~^354.^8^9.^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~307~^295.^8^39.^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~318~^90.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~319~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15143~^~320~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15143~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15143~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15143~^~601~^59.^5^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15144~^~268~^377.^0^^~4~^^^^^^^^^^^ -~15144~^~301~^26.^4^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~304~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~305~^133.^4^34.^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~306~^173.^4^23.^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~307~^539.^4^67.^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~318~^150.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~319~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15144~^~320~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15144~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15144~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15144~^~601~^55.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~268~^322.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15145~^~301~^27.^17^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~304~^27.^16^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~305~^256.^20^13.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~306~^302.^5^17.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~307~^58.^11^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15145~^~319~^16.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15145~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15145~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15145~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~417~^37.^5^14.^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15145~^~432~^37.^5^14.^~1~^^^^^^^^^^^~03/01/2009~ -~15145~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15145~^~601~^114.^5^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~15146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~268~^343.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15146~^~301~^60.^4^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~304~^33.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~305~^270.^4^28.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~306~^296.^4^41.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~307~^94.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15146~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15146~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~417~^44.^4^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15146~^~432~^44.^4^18.^~1~^^^^^^^^^^^~03/01/2009~ -~15146~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15146~^~601~^133.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15147~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15147~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~268~^324.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~301~^84.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~304~^38.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~305~^161.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~306~^200.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~307~^423.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15147~^~601~^127.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15148~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~268~^372.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~301~^96.^3^7.^~1~^~A~^^^1^84.^109.^2^64.^127.^~2, 3~^~07/01/2010~ -~15148~^~304~^43.^3^3.^~1~^~A~^^^1^38.^48.^2^30.^56.^~2, 3~^~07/01/2010~ -~15148~^~305~^185.^3^10.^~1~^~A~^^^1^173.^206.^2^138.^230.^~2, 3~^~07/01/2010~ -~15148~^~306~^230.^3^4.^~1~^~A~^^^1^222.^235.^2^212.^247.^~2, 3~^~07/01/2010~ -~15148~^~307~^486.^3^31.^~1~^~A~^^^1^425.^526.^2^352.^620.^~2, 3~^~07/01/2010~ -~15148~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15148~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~324~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~07/01/2010~ -~15148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15148~^~417~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15148~^~432~^11.^2^^~1~^^^^^^^^^^^~07/01/2010~ -~15148~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~601~^146.^3^8.^~1~^~A~^^^1^135.^162.^2^110.^181.^~2, 3~^~07/01/2010~ -~15149~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15149~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~301~^54.^4^9.^~1~^~A~^^^1^38.^73.^3^25.^83.^~2, 3~^~07/01/2010~ -~15149~^~304~^22.^4^1.^~1~^~A~^^^1^20.^26.^3^18.^26.^~2, 3~^~07/01/2010~ -~15149~^~305~^244.^4^17.^~1~^~A~^^^1^215.^287.^3^188.^298.^~2, 3~^~07/01/2010~ -~15149~^~306~^113.^4^15.^~1~^~A~^^^1^95.^159.^3^63.^162.^~2, 3~^~07/01/2010~ -~15149~^~307~^566.^4^29.^~1~^~A~^^^1^508.^642.^3^472.^658.^~2, 3~^~07/01/2010~ -~15149~^~318~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~319~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15149~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15149~^~324~^2.^5^1.^~1~^~A~^^^1^0.^6.^4^-1.^5.^~1, 2, 3~^~07/01/2010~ -~15149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15149~^~417~^19.^4^1.^~1~^~A~^^^1^16.^23.^3^14.^24.^~2, 3~^~07/01/2010~ -~15149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15149~^~432~^19.^4^1.^~1~^~AS~^^^1^16.^23.^3^14.^24.^~2, 3~^~07/01/2010~ -~15149~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~601~^126.^4^4.^~1~^~A~^^^1^114.^137.^3^110.^141.^~2, 3~^~07/01/2010~ -~15150~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15150~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~268~^1013.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15150~^~301~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~305~^218.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~306~^225.^11^13.^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~307~^344.^11^33.^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~318~^189.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15150~^~320~^56.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~15150~^~324~^5.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~431~^9.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~432~^23.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15150~^~601~^138.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15151~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15151~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15151~^~301~^91.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~304~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~305~^306.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~306~^170.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~307~^947.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~318~^301.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~15151~^~319~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~320~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~417~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~432~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15151~^~601~^211.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15152~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~15152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~15152~^~268~^416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~301~^145.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~304~^33.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~305~^195.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~306~^80.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~307~^870.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~15152~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15152~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~15152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15152~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~15152~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~601~^252.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15153~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15153~^~268~^423.^0^^~4~^^^^^^^^^^^ -~15153~^~301~^19.^3^5.^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~306~^89.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~307~^705.^3^24.^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~319~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15153~^~320~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15153~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15153~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15153~^~601~^36.^3^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15154~^~268~^469.^0^^~4~^^^^^^^^^^^ -~15154~^~301~^49.^20^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~305~^238.^21^31.^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~306~^180.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~307~^177.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~318~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~319~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15154~^~320~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15154~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15154~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15154~^~601~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15155~^~301~^31.^6^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~304~^48.^6^21.^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~305~^190.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~306~^250.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~307~^301.^6^27.^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15155~^~319~^2.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15155~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15155~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~417~^5.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15155~^~432~^5.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15155~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15155~^~601~^85.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15156~^~268~^791.^0^^~4~^^^^^^^^^^^ -~15156~^~301~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~304~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~305~^217.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~306~^284.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~307~^591.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~318~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~319~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15156~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15156~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15156~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15156~^~432~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15156~^~601~^94.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15157~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15157~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~301~^39.^4^1.^~1~^~A~^^^1^36.^41.^3^34.^43.^~2, 3~^~07/01/2010~ -~15157~^~304~^19.^4^1.^~1~^~A~^^^1^17.^24.^3^14.^24.^~2, 3~^~07/01/2010~ -~15157~^~305~^198.^4^8.^~1~^~A~^^^1^174.^211.^3^171.^224.^~2, 3~^~07/01/2010~ -~15157~^~306~^46.^4^3.^~1~^~A~^^^1^36.^51.^3^34.^57.^~2, 3~^~07/01/2010~ -~15157~^~307~^601.^4^2.^~1~^~A~^^^1^594.^607.^3^592.^609.^~2, 3~^~07/01/2010~ -~15157~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15157~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15157~^~324~^1.^4^0.^~1~^~A~^^^1^0.^4.^3^-1.^4.^~1, 2, 3~^~07/01/2010~ -~15157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15157~^~417~^5.^4^1.^~1~^~A~^^^1^0.^6.^3^0.^9.^~1, 2, 3~^~07/01/2010~ -~15157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15157~^~432~^5.^4^1.^~1~^~AS~^^^1^0.^6.^3^0.^9.^~1, 2, 3~^~07/01/2010~ -~15157~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~601~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~07/01/2010~ -~15158~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15158~^~268~^845.^0^^~4~^^^^^^^^^^^ -~15158~^~301~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~304~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~305~^188.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~306~^326.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~307~^364.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~318~^302.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~319~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15158~^~320~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15158~^~417~^36.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15158~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15158~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15158~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15158~^~601~^61.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15159~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~ -~15159~^~301~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~304~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~305~^338.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~307~^1202.^0^^~4~^~O~^^^^^^^^^^~09/01/2011~ -~15159~^~318~^570.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~320~^171.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~15159~^~417~^29.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15159~^~432~^29.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15159~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15160~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15160~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~268~^595.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~301~^65.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~304~^32.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~305~^327.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15160~^~307~^112.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15160~^~318~^496.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~319~^149.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~320~^149.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~324~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15160~^~601~^50.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15162~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~268~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15162~^~301~^13.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~304~^11.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~305~^114.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~306~^149.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~307~^215.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15162~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15162~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15162~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15162~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15162~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15162~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15162~^~601~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15163~^~268~^331.^0^^~4~^^^^^^^^^^^ -~15163~^~301~^90.^13^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~305~^387.^13^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~306~^354.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~307~^372.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~318~^375.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~319~^113.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15163~^~320~^113.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15163~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15163~^~432~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15163~^~601~^112.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~268~^360.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15164~^~301~^26.^6^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~304~^34.^6^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~305~^197.^9^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~306~^320.^6^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~307~^286.^6^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~318~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15164~^~319~^48.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15164~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~417~^42.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15164~^~432~^42.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15164~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15164~^~601~^28.^6^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15165~^~268~^720.^0^^~4~^^^^^^^^^^^ -~15165~^~301~^33.^18^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~304~^37.^18^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~305~^285.^27^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~306~^268.^18^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~307~^369.^18^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~318~^304.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~319~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15165~^~320~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15165~^~417~^76.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15165~^~432~^76.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15165~^~601~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~268~^343.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15166~^~301~^53.^13^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~305~^186.^15^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~306~^350.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~307~^230.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15166~^~319~^45.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15166~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15166~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15166~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15166~^~601~^48.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15167~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~ -~15167~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~268~^213.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~301~^59.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~305~^97.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~306~^156.^3^36.^~1~^^^^^^^^^^^~09/01/1987~ -~15167~^~307~^85.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~318~^44.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~319~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~320~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15167~^~601~^40.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15168~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15168~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15168~^~301~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~305~^159.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~306~^244.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~307~^417.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~318~^302.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15168~^~320~^90.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~15168~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15168~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15168~^~432~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15168~^~601~^71.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~15169~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~268~^427.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~301~^116.^3^72.^~1~^~A~^^^1^37.^261.^2^-196.^428.^~2, 3~^~07/01/2010~ -~15169~^~304~^35.^3^6.^~1~^~A~^^^1^24.^47.^2^5.^63.^~2, 3~^~07/01/2010~ -~15169~^~305~^194.^3^15.^~1~^~A~^^^1^169.^223.^2^125.^261.^~2, 3~^~07/01/2010~ -~15169~^~306~^139.^3^3.^~1~^~A~^^^1^135.^146.^2^124.^153.^~2, 3~^~07/01/2010~ -~15169~^~307~^166.^3^46.^~1~^~A~^^^1^89.^251.^2^-35.^368.^~2, 3~^~07/01/2010~ -~15169~^~318~^88.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15169~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~324~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^-1.^4.^~2, 3~^~07/01/2010~ -~15169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~417~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15169~^~432~^14.^0^^~1~^^^^^^^^^^^~07/01/2010~ -~15169~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~601~^79.^3^7.^~1~^~A~^^^1^65.^92.^2^45.^112.^~2, 3~^~07/01/2010~ -~15170~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15170~^~301~^45.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~305~^139.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~306~^229.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~307~^112.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15170~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15170~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~324~^1.^0^^~4~^~BFZN~^~15167~^^^^^^^^^~08/01/2010~ -~15170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15170~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/2010~ -~15170~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15170~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15171~^~268~^339.^0^^~4~^^^^^^^^^^^ -~15171~^~301~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~304~^22.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~305~^162.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~306~^168.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~307~^106.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~318~^270.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15171~^~319~^81.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15171~^~320~^81.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15171~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15171~^~432~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15171~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15171~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15172~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~268~^289.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~301~^6.^12^0.^~1~^~A~^^^1^3.^15.^11^3.^7.^~2, 3~^~07/01/2010~ -~15172~^~304~^22.^12^2.^~1~^~A~^^^1^10.^37.^11^16.^27.^~2, 3~^~07/01/2010~ -~15172~^~305~^334.^12^22.^~1~^~A~^^^1^230.^468.^11^284.^383.^~2, 3~^~07/01/2010~ -~15172~^~306~^205.^12^27.^~1~^~A~^^^1^86.^361.^11^143.^266.^~2, 3~^~07/01/2010~ -~15172~^~307~^392.^12^47.^~1~^~A~^^^1^193.^774.^11^286.^496.^~2, 3~^~07/01/2010~ -~15172~^~318~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15172~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15172~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~324~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~07/01/2010~ -~15172~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15172~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15172~^~432~^16.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~15172~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~601~^24.^4^1.^~1~^~A~^^^1^21.^27.^3^19.^28.^~2, 3~^~07/01/2010~ -~15173~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15173~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15173~^~301~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~304~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~305~^236.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~307~^464.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~318~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15173~^~320~^22.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~15173~^~417~^37.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15173~^~431~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15173~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15173~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15173~^~601~^54.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~15174~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15174~^~268~^414.^0^^~4~^^^^^^^^^^^ -~15174~^~301~^8.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~306~^103.^3^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~307~^795.^3^23.^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~319~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15174~^~320~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15174~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15174~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15174~^~601~^22.^3^12.^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~268~^385.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15175~^~301~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~305~^221.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~306~^246.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~307~^44.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15175~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15175~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15175~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15175~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15175~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15175~^~601~^233.^7^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15176~^~268~^732.^0^^~4~^^^^^^^^^^^ -~15176~^~301~^39.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~305~^251.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~306~^279.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~307~^306.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~318~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15176~^~319~^11.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15176~^~320~^11.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~15176~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~15176~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15176~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15176~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15176~^~601~^260.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~268~^573.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15177~^~301~^57.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~304~^86.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~305~^141.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~306~^347.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~307~^206.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15177~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15177~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~417~^6.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15177~^~432~^6.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15177~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15177~^~601~^65.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15178~^~268~^1151.^0^^~4~^^^^^^^^^^^ -~15178~^~301~^113.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~304~^172.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~305~^282.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~306~^694.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~307~^412.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~318~^162.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~319~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15178~^~320~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15178~^~417~^11.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15178~^~432~^11.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15178~^~601~^130.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15179~^~268~^490.^0^^~4~^^^^^^^^^^^ -~15179~^~301~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~304~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~305~^164.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~306~^175.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~307~^2000.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~318~^88.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~319~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15179~^~320~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15179~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15179~^~432~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15179~^~601~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15180~^~268~^590.^0^^~4~^^^^^^^^^^^ -~15180~^~301~^249.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~305~^354.^6^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~307~^75.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~318~^61.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~319~^18.^6^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15180~^~320~^18.^6^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15180~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15180~^~432~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15180~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15181~^~268~^582.^0^^~4~^^^^^^^^^^^ -~15181~^~301~^213.^25^12.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~304~^34.^25^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~305~^329.^25^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~306~^326.^25^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~307~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15181~^~318~^55.^14^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~319~^17.^14^1.^~1~^^^^^^^^^^^~06/01/2002~ -~15181~^~320~^17.^14^1.^~1~^^^^^^^^^^^~06/01/2002~ -~15181~^~417~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15181~^~432~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15181~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15182~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15182~^~268~^640.^0^^~4~^^^^^^^^^^^ -~15182~^~301~^239.^26^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~304~^29.^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~305~^326.^43^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~306~^377.^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~307~^75.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~318~^176.^32^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~319~^53.^32^3.^~1~^^^^^^^^^^^~06/01/2002~ -~15182~^~320~^53.^32^3.^~1~^^^^^^^^^^^~06/01/2002~ -~15182~^~417~^10.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15182~^~432~^10.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15182~^~601~^44.^3^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15183~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15183~^~301~^13.^9^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~304~^31.^8^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~305~^311.^9^18.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~306~^207.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~318~^78.^6^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~417~^5.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15183~^~432~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2006~ -~15183~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15183~^~601~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15184~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15184~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15184~^~301~^11.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~304~^27.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~305~^163.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~306~^237.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~307~^50.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2006~ -~15184~^~318~^56.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~417~^4.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15184~^~432~^4.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15184~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15184~^~601~^30.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15185~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15185~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15185~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~304~^34.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~305~^267.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~318~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~417~^5.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15185~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2006~ -~15185~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15185~^~601~^31.^6^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15186~^~208~^128.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~15186~^~268~^536.^0^^~4~^^^^^^^^^^^ -~15186~^~301~^14.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~304~^33.^5^1.^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~305~^217.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~306~^237.^6^35.^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~307~^50.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~15186~^~318~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~319~^6.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15186~^~320~^6.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~15186~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15186~^~432~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15186~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15187~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15187~^~268~^611.^0^^~4~^^^^^^^^^^^ -~15187~^~301~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~307~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15187~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15187~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15187~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15187~^~601~^87.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15188~^~268~^519.^0^^~4~^^^^^^^^^^^ -~15188~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~304~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~305~^254.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~306~^328.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~307~^88.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15188~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15188~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15188~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15188~^~601~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15189~^~268~^665.^0^^~4~^^^^^^^^^^^ -~15189~^~301~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~305~^291.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~306~^477.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~307~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~318~^459.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~319~^138.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15189~^~320~^138.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15189~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15189~^~432~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15189~^~601~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15190~^~268~^481.^0^^~4~^^^^^^^^^^^ -~15190~^~301~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~306~^518.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~307~^124.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~318~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~319~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15190~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15190~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15190~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15190~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15191~^~268~^782.^0^^~4~^^^^^^^^^^^ -~15191~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~304~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~305~^308.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~306~^481.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~307~^114.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~318~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15191~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15191~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15191~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15191~^~601~^83.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15192~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15192~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~268~^354.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~301~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~305~^345.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~306~^289.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~307~^372.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~318~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~324~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15192~^~601~^57.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15193~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15193~^~268~^469.^0^^~4~^^^^^^^^^^^ -~15193~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~305~^262.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~306~^503.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~307~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~319~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15193~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15193~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15193~^~432~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15193~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15194~^~268~^456.^0^^~4~^^^^^^^^^^^ -~15194~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~305~^183.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~306~^533.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~307~^113.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~318~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~319~^62.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15194~^~320~^62.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15194~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15194~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15194~^~601~^94.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15195~^~268~^640.^0^^~4~^^^^^^^^^^^ -~15195~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~305~^231.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~306~^353.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~307~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~318~^196.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15195~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15195~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15195~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15195~^~601~^82.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15196~^~268~^1000.^0^^~4~^^^^^^^^^^^ -~15196~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~305~^210.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~306~^344.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~307~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~318~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15196~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15196~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15196~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15196~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15197~^~268~^1046.^0^^~4~^^^^^^^^^^^ -~15197~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~305~^292.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~306~^542.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~307~^95.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~318~^116.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15197~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15197~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15197~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15197~^~601~^99.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15198~^~268~^464.^0^^~4~^^^^^^^^^^^ -~15198~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~304~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~305~^254.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~306~^486.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~307~^173.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15198~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15198~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15198~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15198~^~601~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15199~^~268~^456.^0^^~4~^^^^^^^^^^^ -~15199~^~301~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~305~^258.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~306~^560.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~307~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~318~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15199~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15199~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15199~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15199~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15200~^~268~^561.^0^^~4~^^^^^^^^^^^ -~15200~^~301~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~305~^318.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~306~^558.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~307~^203.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~318~^839.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~319~^252.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15200~^~320~^252.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15200~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15200~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15200~^~601~^68.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~268~^841.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15201~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~304~^36.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~305~^160.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~306~^521.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~307~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15201~^~319~^23.^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~ -~15201~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~324~^457.^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~ -~15201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15201~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15201~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15201~^~601~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15202~^~268~^795.^0^^~4~^^^^^^^^^^^ -~15202~^~301~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~305~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~306~^374.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~307~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~318~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15202~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15202~^~417~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15202~^~432~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15202~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15203~^~268~^406.^0^^~4~^^^^^^^^^^^ -~15203~^~301~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~306~^513.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~307~^23.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~318~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15203~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15203~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15203~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15203~^~601~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15204~^~268~^498.^0^^~4~^^^^^^^^^^^ -~15204~^~301~^141.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~306~^499.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~318~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15204~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15204~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15204~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15204~^~601~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15205~^~268~^494.^0^^~4~^^^^^^^^^^^ -~15205~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~304~^86.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~305~^283.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~307~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~318~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15205~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15205~^~417~^3.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15205~^~432~^3.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15205~^~601~^91.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15206~^~268~^427.^0^^~4~^^^^^^^^^^^ -~15206~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~304~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~306~^513.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~307~^78.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~318~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15206~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15206~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15206~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15206~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15207~^~268~^854.^0^^~4~^^^^^^^^^^^ -~15207~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~304~^26.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~305~^515.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~306~^283.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~307~^117.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~318~^303.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~319~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15207~^~320~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15207~^~417~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15207~^~432~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15207~^~601~^479.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15208~^~268~^1046.^0^^~4~^^^^^^^^^^^ -~15208~^~301~^45.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~304~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~305~^215.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~306~^459.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~307~^72.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~318~^338.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~319~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15208~^~320~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15208~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15208~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15208~^~601~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15209~^~268~^761.^0^^~4~^^^^^^^^^^^ -~15209~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~304~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~307~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~318~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~319~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15209~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15209~^~417~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15209~^~432~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15209~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15210~^~268~^967.^0^^~4~^^^^^^^^^^^ -~15210~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~304~^122.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~305~^371.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~306~^505.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~307~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~318~^496.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~319~^149.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15210~^~320~^149.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15210~^~417~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15210~^~432~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15210~^~601~^85.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15211~^~268~^644.^0^^~4~^^^^^^^^^^^ -~15211~^~301~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~304~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~305~^363.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~306~^550.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~307~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~318~^114.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~319~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15211~^~320~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15211~^~417~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15211~^~432~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15211~^~601~^95.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15212~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15212~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~268~^638.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~304~^32.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~305~^313.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~306~^439.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~307~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~318~^126.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~320~^42.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~324~^522.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15212~^~601~^55.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15213~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15213~^~268~^565.^0^^~4~^^^^^^^^^^^ -~15213~^~301~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~304~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~305~^237.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~306~^368.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~307~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15213~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15213~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15213~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15213~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15214~^~268~^556.^0^^~4~^^^^^^^^^^^ -~15214~^~301~^22.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~305~^321.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~306~^437.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~307~^74.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15214~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15214~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15214~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15214~^~601~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15215~^~268~^1054.^0^^~4~^^^^^^^^^^^ -~15215~^~301~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~305~^349.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~306~^492.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~318~^120.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~319~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15215~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15215~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15215~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15215~^~601~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15216~^~268~^661.^0^^~4~^^^^^^^^^^^ -~15216~^~301~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~305~^238.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~306~^636.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15216~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15216~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15216~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15216~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15217~^~268~^498.^0^^~4~^^^^^^^^^^^ -~15217~^~301~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~306~^487.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~307~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~318~^196.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15217~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15217~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15217~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15217~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15218~^~268~^477.^0^^~4~^^^^^^^^^^^ -~15218~^~301~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~305~^231.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~306~^449.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~307~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~318~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15218~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15218~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15218~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15218~^~601~^86.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15219~^~268~^795.^0^^~4~^^^^^^^^^^^ -~15219~^~301~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~304~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~305~^314.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~306~^463.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~307~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~318~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~319~^19.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15219~^~320~^19.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15219~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15219~^~432~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15219~^~601~^74.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15220~^~268~^552.^0^^~4~^^^^^^^^^^^ -~15220~^~301~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~304~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~305~^285.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~306~^522.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~307~^47.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~318~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15220~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15220~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15220~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15220~^~601~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15221~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15221~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~268~^543.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~301~^4.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~304~^42.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~305~^333.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~306~^527.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~307~^54.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~318~^65.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~319~^22.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~320~^22.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~324~^82.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15221~^~601~^47.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15222~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15222~^~268~^510.^0^^~4~^^^^^^^^^^^ -~15222~^~301~^23.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~304~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~305~^165.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~306~^305.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~307~^192.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~318~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15222~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15222~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15222~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15222~^~601~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15223~^~268~^720.^0^^~4~^^^^^^^^^^^ -~15223~^~301~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~305~^346.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~318~^131.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~319~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15223~^~320~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15223~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15223~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15223~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15224~^~268~^515.^0^^~4~^^^^^^^^^^^ -~15224~^~301~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~306~^385.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~307~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~318~^433.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~319~^130.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15224~^~320~^130.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15224~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15224~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15224~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15225~^~268~^782.^0^^~4~^^^^^^^^^^^ -~15225~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~305~^201.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~306~^538.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15225~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15225~^~417~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15225~^~432~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15225~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15226~^~268~^460.^0^^~4~^^^^^^^^^^^ -~15226~^~301~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~306~^408.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~307~^378.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15226~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15226~^~417~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15226~^~432~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15226~^~601~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15227~^~268~^481.^0^^~4~^^^^^^^^^^^ -~15227~^~301~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~304~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~305~^128.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~306~^200.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~307~^691.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~318~^173.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~319~^52.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15227~^~320~^52.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15227~^~417~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15227~^~432~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15227~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15228~^~268~^598.^0^^~4~^^^^^^^^^^^ -~15228~^~301~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~304~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~305~^229.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~306~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~307~^227.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~318~^20.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~319~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15228~^~320~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15228~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15228~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15228~^~601~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15229~^~268~^661.^0^^~4~^^^^^^^^^^^ -~15229~^~301~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~304~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~305~^580.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~306~^637.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~307~^744.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~318~^675.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~319~^203.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15229~^~320~^203.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~15229~^~417~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15229~^~432~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15229~^~601~^224.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~268~^686.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15230~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~304~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~305~^279.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~306~^630.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~307~^460.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15230~^~319~^90.^0^^~4~^~BFYN~^~15166~^^^^^^^^^~02/01/2003~ -~15230~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15230~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15230~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~417~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15230~^~432~^24.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15230~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15230~^~601~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~268~^682.^0^^~4~^^^^^^^^^^^ -~15231~^~301~^16.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~304~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~305~^243.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~306~^302.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~307~^212.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~318~^487.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15231~^~319~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15231~^~320~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15231~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15231~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15231~^~601~^100.^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15232~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~301~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~304~^18.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~305~^102.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~306~^181.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~307~^69.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~318~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~319~^24.^0^^~4~^~T~^^^^^^^^^^~03/01/2005~ -~15232~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~417~^5.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15232~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15232~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~601~^80.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15233~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15233~^~268~^439.^0^^~4~^^^^^^^^^^^ -~15233~^~301~^11.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~304~^28.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~305~^304.^3^33.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~306~^419.^4^15.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~307~^50.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15233~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15233~^~417~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15233~^~432~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15233~^~601~^72.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15234~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~301~^8.^12^0.^~1~^~A~^^^1^6.^10.^11^7.^8.^~2, 3~^~07/01/2010~ -~15234~^~304~^19.^12^0.^~1~^~A~^^^1^17.^21.^11^17.^19.^~2, 3~^~07/01/2010~ -~15234~^~305~^204.^12^10.^~1~^~A~^^^1^161.^280.^11^181.^227.^~2, 3~^~07/01/2010~ -~15234~^~306~^302.^12^13.^~1~^~A~^^^1^197.^362.^11^272.^331.^~2, 3~^~07/01/2010~ -~15234~^~307~^98.^12^22.^~1~^~A~^^^1^37.^276.^11^48.^148.^~2, 3~^~07/01/2010~ -~15234~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15234~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15234~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~324~^9.^4^3.^~1~^~A~^^^1^1.^15.^3^-1.^18.^~2, 3~^~07/01/2010~ -~15234~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~417~^10.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15234~^~432~^10.^3^0.^~1~^^^^^^^^^^^~07/01/2010~ -~15234~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~601~^55.^4^2.^~1~^~A~^^^1^49.^60.^3^47.^62.^~2, 3~^~07/01/2010~ -~15235~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15235~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~268~^601.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~301~^9.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~304~^23.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~305~^247.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~306~^366.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~307~^119.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~318~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~324~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15235~^~601~^66.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15236~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~262~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~263~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~301~^9.^4^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~304~^27.^4^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~305~^240.^4^4.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~306~^363.^4^5.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~307~^59.^4^11.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15236~^~319~^58.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15236~^~321~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~322~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~324~^441.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~15236~^~334~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~337~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~338~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~417~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15236~^~432~^26.^1^^~1~^^^^^^^^^^^~05/01/2008~ -~15236~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~601~^55.^4^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15237~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~15237~^~262~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~263~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~15237~^~301~^15.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~15237~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~305~^252.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~306~^384.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~307~^61.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~318~^230.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15237~^~319~^69.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15237~^~321~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~322~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~324~^526.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~15237~^~334~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~337~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~338~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~417~^34.^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15237~^~432~^34.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~15237~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~15237~^~601~^63.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15238~^~268~^669.^0^^~4~^^^^^^^^^^^ -~15238~^~301~^12.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~304~^31.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~305~^292.^3^20.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~306~^450.^3^19.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~307~^47.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~318~^188.^3^22.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~319~^56.^3^6.^~1~^^^^^^^^^^^~06/01/2002~ -~15238~^~320~^56.^3^6.^~1~^^^^^^^^^^^~06/01/2002~ -~15238~^~417~^13.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15238~^~432~^13.^3^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15238~^~601~^51.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15239~^~268~^745.^0^^~4~^^^^^^^^^^^ -~15239~^~301~^12.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~304~^34.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~305~^332.^3^31.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~306~^460.^3^13.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~307~^52.^3^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~318~^197.^3^24.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~319~^59.^3^7.^~1~^^^^^^^^^^^~06/01/2002~ -~15239~^~320~^59.^3^7.^~1~^^^^^^^^^^^~06/01/2002~ -~15239~^~417~^14.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15239~^~432~^14.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15239~^~601~^63.^3^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~301~^25.^8^3.^~1~^~A~^^^1^19.^45.^7^17.^31.^~2, 3~^~07/01/2010~ -~15240~^~304~^25.^8^0.^~1~^~A~^^^1^20.^27.^7^23.^26.^~2, 3~^~07/01/2010~ -~15240~^~305~^226.^8^6.^~1~^~A~^^^1^188.^251.^7^210.^241.^~2, 3~^~07/01/2010~ -~15240~^~306~^377.^8^15.^~1~^~A~^^^1^284.^422.^7^340.^412.^~2, 3~^~07/01/2010~ -~15240~^~307~^51.^8^3.^~1~^~A~^^^1^35.^63.^7^44.^58.^~2, 3~^~07/01/2010~ -~15240~^~318~^280.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~319~^84.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15240~^~320~^84.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~324~^635.^8^48.^~1~^~A~^^^1^417.^780.^7^520.^750.^~2, 3~^~07/01/2010~ -~15240~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~417~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15240~^~432~^11.^3^0.^~1~^^^^^^^^^^^~07/01/2010~ -~15240~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~601~^59.^3^1.^~1~^~A~^^^1^57.^61.^2^53.^63.^~2, 3~^~07/01/2010~ -~15241~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15241~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~268~^704.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~301~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~305~^270.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~306~^450.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~307~^61.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~318~^301.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~319~^100.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~320~^100.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~324~^759.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15241~^~601~^70.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15242~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15242~^~268~^301.^0^^~4~^^^^^^^^^^^ -~15242~^~301~^25.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~304~^30.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~305~^218.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~306~^261.^4^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~307~^62.^4^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15242~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15242~^~417~^30.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15242~^~432~^30.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15242~^~601~^107.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15243~^~268~^364.^0^^~4~^^^^^^^^^^^ -~15243~^~301~^51.^4^7.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~304~^33.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~305~^241.^4^11.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~306~^238.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~307~^97.^4^6.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15243~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~ -~15243~^~417~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15243~^~432~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15243~^~601~^137.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15244~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15244~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~268~^331.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~301~^92.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~305~^150.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~306~^242.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~307~^132.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~318~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~319~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~320~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15244~^~601~^62.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15245~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15245~^~268~^247.^0^^~4~^^^^^^^^^^^ -~15245~^~301~^44.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~15245~^~304~^33.^4^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~305~^93.^4^10.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~306~^124.^4^15.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~307~^178.^4^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~318~^25.^4^14.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~319~^8.^4^4.^~1~^^^^^^^^^^^~06/01/2002~ -~15245~^~320~^8.^4^4.^~1~^^^^^^^^^^^~06/01/2002~ -~15245~^~417~^18.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15245~^~432~^18.^4^4.^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15245~^~601~^25.^4^1.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15246~^~268~^331.^0^^~4~^^^^^^^^^^^ -~15246~^~301~^56.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~15246~^~304~^33.^4^2.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~305~^115.^4^16.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~306~^152.^4^20.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~307~^163.^4^8.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~318~^63.^4^31.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~319~^19.^4^9.^~1~^^^^^^^^^^^~06/01/2002~ -~15246~^~320~^19.^4^9.^~1~^^^^^^^^^^^~06/01/2002~ -~15246~^~417~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15246~^~432~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15246~^~601~^38.^4^3.^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15247~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~268~^582.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15247~^~301~^45.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1995~ -~15247~^~304~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~305~^322.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~306~^434.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~307~^58.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~318~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15247~^~319~^51.^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~ -~15247~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15247~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~324~^451.^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~ -~15247~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~417~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~15247~^~432~^13.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~15247~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15247~^~601~^55.^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15250~^~208~^130.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~268~^544.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~301~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~304~^238.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~305~^217.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~306~^163.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~307~^153.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15250~^~319~^7.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15250~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15250~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15250~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~417~^179.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~432~^179.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15250~^~435~^179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15250~^~601~^65.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15251~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~06/01/1995~ -~15251~^~268~^887.^0^^~4~^^^^^^^^^^^ -~15251~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~305~^176.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~306~^165.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~307~^173.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15251~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15251~^~432~^6.^0^^~4~^^^^^^^^^^^~06/01/1995~ -~15251~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15251~^~601~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~15252~^~268~^791.^0^^~4~^^^^^^^^^^^ -~15252~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~305~^173.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~306~^161.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~307~^167.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15252~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~15252~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1996~ -~15252~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~15252~^~601~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15253~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~262~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~263~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~268~^639.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~301~^198.^12^6.^~1~^~A~^^^1^167.^247.^11^182.^212.^~2, 3~^~05/01/2011~ -~15253~^~304~^30.^12^0.^~1~^~A~^^^1^27.^34.^11^28.^31.^~2, 3~^~05/01/2011~ -~15253~^~305~^321.^12^4.^~1~^~A~^^^1^298.^358.^11^309.^331.^~2, 3~^~05/01/2011~ -~15253~^~306~^329.^12^5.^~1~^~A~^^^1^303.^355.^11^318.^340.^~2, 3~^~05/01/2011~ -~15253~^~307~^433.^12^18.^~1~^~A~^^^1^348.^543.^11^391.^474.^~2, 3~^~05/01/2011~ -~15253~^~318~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~319~^39.^12^2.^~1~^~A~^^^1^25.^58.^11^32.^45.^~2, 3~^~05/01/2011~ -~15253~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15253~^~321~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~322~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~324~^761.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~334~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~337~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~338~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~431~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~432~^3.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~435~^3.^0^^~4~^~NC~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~601~^67.^12^0.^~1~^~A~^^^1^63.^72.^11^64.^68.^~2, 3~^~05/01/2011~ -~15260~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~268~^576.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~301~^283.^17^6.^~1~^~A~^^^1^228.^317.^16^269.^295.^~2, 3~^~05/01/2011~ -~15260~^~304~^32.^17^0.^~1~^~A~^^^1^30.^35.^16^31.^32.^~2, 3~^~05/01/2011~ -~15260~^~305~^379.^17^3.^~1~^~A~^^^1^345.^406.^16^370.^387.^~2, 3~^~05/01/2011~ -~15260~^~306~^333.^17^3.^~1~^~A~^^^1^311.^355.^16^326.^340.^~2, 3~^~05/01/2011~ -~15260~^~307~^381.^17^7.^~1~^~A~^^^1^293.^428.^16^364.^398.^~2, 3~^~05/01/2011~ -~15260~^~318~^65.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15260~^~319~^20.^17^5.^~1~^~A~^^^1^5.^77.^16^8.^30.^~2, 3~^~05/01/2011~ -~15260~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~324~^580.^3^33.^~1~^~A~^^^1^514.^616.^2^437.^723.^~2, 3~^~05/01/2011~ -~15260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~417~^4.^13^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~432~^4.^13^0.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15260~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15260~^~601~^83.^17^1.^~1~^~A~^^^1^74.^90.^16^80.^85.^~2, 3~^~05/01/2011~ -~15261~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~268~^400.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15261~^~301~^10.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~304~^27.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~305~^170.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~306~^302.^3^7.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~307~^52.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15261~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~324~^124.^0^^~4~^~BFSN~^~15060~^^^^^^^^^~03/01/2009~ -~15261~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~417~^24.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~432~^24.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~15261~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15261~^~601~^50.^3^1.^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15262~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~268~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~301~^14.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~305~^204.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~306~^380.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~307~^56.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15262~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15262~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~324~^150.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~15262~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~417~^6.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~432~^6.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~601~^57.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15264~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~262~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~263~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~301~^37.^12^2.^~1~^~A~^^^1^23.^53.^11^30.^42.^~2, 3~^~05/01/2011~ -~15264~^~304~^24.^12^0.^~1~^~A~^^^1^20.^29.^11^22.^25.^~2, 3~^~05/01/2011~ -~15264~^~305~^236.^12^3.^~1~^~A~^^^1^219.^264.^11^227.^244.^~2, 3~^~05/01/2011~ -~15264~^~306~^312.^12^5.^~1~^~A~^^^1^286.^351.^11^301.^323.^~2, 3~^~05/01/2011~ -~15264~^~307~^386.^12^15.^~1~^~A~^^^1^332.^511.^11^352.^419.^~2, 3~^~05/01/2011~ -~15264~^~318~^187.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15264~^~319~^56.^12^2.^~1~^~A~^^^1^42.^69.^11^50.^61.^~2, 3~^~05/01/2011~ -~15264~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15264~^~321~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~322~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~324~^859.^3^102.^~1~^~A~^^^1^736.^1062.^2^420.^1297.^~2, 3~^~05/01/2011~ -~15264~^~334~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~337~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~338~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~417~^4.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~431~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~432~^4.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~435~^4.^0^^~4~^~NC~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~601~^66.^12^0.^~1~^~A~^^^1^61.^72.^11^64.^68.^~2, 3~^~05/01/2011~ -~15265~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~262~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~263~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~301~^60.^17^3.^~1~^~A~^^^1^27.^86.^16^52.^67.^~2, 3~^~05/01/2011~ -~15265~^~304~^24.^17^0.^~1~^~A~^^^1^19.^27.^16^23.^25.^~2, 3~^~05/01/2011~ -~15265~^~305~^253.^17^3.^~1~^~A~^^^1^223.^277.^16^244.^260.^~2, 3~^~05/01/2011~ -~15265~^~306~^326.^17^4.^~1~^~A~^^^1^298.^354.^16^317.^335.^~2, 3~^~05/01/2011~ -~15265~^~307~^378.^17^7.^~1~^~A~^^^1^302.^427.^16^362.^392.^~2, 3~^~05/01/2011~ -~15265~^~318~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~319~^20.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~320~^20.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~321~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~322~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~324~^563.^3^28.^~1~^~A~^^^1^531.^620.^2^438.^686.^~2, 3~^~05/01/2011~ -~15265~^~334~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~337~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~338~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~417~^4.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~431~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~432~^4.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~435~^4.^0^^~4~^~NC~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~601~^83.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15266~^~208~^76.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~268~^318.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~301~^12.^3^^~1~^~A~^^^1^11.^13.^^^^~2~^~08/01/2012~ -~15266~^~304~^34.^3^^~1~^~A~^^^1^30.^40.^^^^~2~^~08/01/2012~ -~15266~^~305~^190.^3^^~1~^~A~^^^1^187.^191.^^^^~2~^~08/01/2012~ -~15266~^~306~^331.^3^^~1~^~A~^^^1^316.^349.^^^^~2~^~08/01/2012~ -~15266~^~307~^159.^3^^~1~^~A~^^^1^146.^182.^^^^~2~^~08/01/2012~ -~15266~^~601~^61.^3^^~1~^~A~^^^1^58.^65.^^^^~2~^~08/01/2012~ -~15267~^~208~^86.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~ -~15267~^~268~^362.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~ -~15267~^~301~^13.^3^^~1~^~A~^^^1^12.^16.^^^^~2~^~08/01/2012~ -~15267~^~304~^37.^3^^~1~^~A~^^^1^31.^44.^^^^~2~^~08/01/2012~ -~15267~^~305~^206.^3^^~1~^~A~^^^1^205.^206.^^^^~2~^~08/01/2012~ -~15267~^~306~^364.^3^^~1~^~A~^^^1^358.^373.^^^^~2~^~08/01/2012~ -~15267~^~307~^166.^3^^~1~^~A~^^^1^146.^193.^^^^~2~^~08/01/2012~ -~15267~^~601~^74.^3^^~1~^~A~^^^1^73.^76.^^^^~2~^~08/01/2012~ -~15269~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~301~^17.^3^^~1~^~A~^^^1^10.^25.^^^^~2~^~08/01/2012~ -~15269~^~304~^35.^3^^~1~^~A~^^^1^26.^45.^^^^~2~^~08/01/2012~ -~15269~^~305~^205.^3^^~1~^~A~^^^1^185.^221.^^^^~2~^~08/01/2012~ -~15269~^~306~^372.^3^^~1~^~A~^^^1^328.^401.^^^^~2~^~08/01/2012~ -~15269~^~307~^134.^3^^~1~^~A~^^^1^92.^210.^^^^~2~^~08/01/2012~ -~15269~^~601~^61.^3^^~1~^~A~^^^1^57.^68.^^^^~2~^~08/01/2012~ -~15270~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~301~^64.^3^^~1~^~A~^^^1^60.^66.^^^^~2~^~08/01/2012~ -~15270~^~304~^35.^3^^~1~^~A~^^^1^35.^35.^^^^~2~^~08/01/2012~ -~15270~^~305~^214.^3^^~1~^~A~^^^1^209.^218.^^^^~2~^~08/01/2012~ -~15270~^~306~^264.^3^^~1~^~A~^^^1^250.^280.^^^^~2~^~08/01/2012~ -~15270~^~307~^119.^3^^~1~^~A~^^^1^115.^123.^^^^~2~^~08/01/2012~ -~15270~^~601~^161.^3^^~1~^~A~^^^1^156.^165.^^^^~2~^~08/01/2012~ -~15271~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~301~^70.^3^^~1~^~A~^^^1^64.^75.^^^^~2~^~08/01/2012~ -~15271~^~304~^39.^3^^~1~^~A~^^^1^38.^39.^^^^~2~^~08/01/2012~ -~15271~^~305~^237.^3^^~1~^~A~^^^1^234.^241.^^^^~2~^~08/01/2012~ -~15271~^~306~^259.^3^^~1~^~A~^^^1^247.^265.^^^^~2~^~08/01/2012~ -~15271~^~307~^111.^3^^~1~^~A~^^^1^107.^114.^^^^~2~^~08/01/2012~ -~15271~^~601~^189.^3^^~1~^~A~^^^1^177.^197.^^^^~2~^~08/01/2012~ -~15274~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~301~^25.^3^7.^~1~^~A~^^^1^12.^36.^2^-4.^55.^~2, 3~^~08/01/2013~ -~15274~^~304~^28.^3^0.^~1~^~A~^^^1^26.^30.^2^23.^31.^~2, 3~^~08/01/2013~ -~15274~^~305~^246.^3^6.^~1~^~A~^^^1^234.^253.^2^220.^271.^~2, 3~^~08/01/2013~ -~15274~^~306~^417.^3^9.^~1~^~A~^^^1^407.^436.^2^376.^457.^~2, 3~^~08/01/2013~ -~15274~^~307~^45.^3^1.^~1~^~A~^^^1^43.^48.^2^38.^51.^~2, 3~^~08/01/2013~ -~15274~^~601~^60.^3^1.^~1~^~A~^^^1^57.^64.^2^51.^68.^~2, 3~^~08/01/2013~ -~16001~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16001~^~268~^1377.^0^^~4~^^^^^^^^^^^ -~16001~^~301~^66.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~304~^127.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~305~^381.^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~306~^1254.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~307~^5.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~318~^17.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16001~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~16001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16001~^~417~^622.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16001~^~432~^622.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~435~^622.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16001~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~636~^76.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16002~^~268~^536.^0^^~4~^^^^^^^^^^^ -~16002~^~301~^28.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~305~^168.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~306~^532.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~307~^8.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16002~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16002~^~417~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16002~^~432~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16002~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16003~^~268~^992.^0^^~4~^^^^^^^^^^^ -~16003~^~301~^22.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~304~^31.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~305~^74.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~306~^119.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~307~^218.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~318~^5.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~16003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16003~^~417~^107.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16003~^~432~^107.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16003~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16004~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~16004~^~301~^27.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~304~^18.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~306~^45.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~307~^83.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16004~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16004~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16004~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16004~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~16005~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~16005~^~301~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~304~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~305~^109.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~306~^358.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~307~^422.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16005~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~16005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16005~^~417~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16005~^~432~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~16005~^~601~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16006~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16006~^~268~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~301~^34.^5^2.^~6~^~JA~^^^2^31.^50.^4^27.^40.^~2, 3~^~12/01/2005~ -~16006~^~304~^27.^5^1.^~6~^~JA~^^^2^23.^32.^4^22.^30.^~2, 3~^~12/01/2005~ -~16006~^~305~^74.^5^4.^~6~^~JA~^^^2^67.^104.^4^61.^87.^~2, 3~^~12/01/2005~ -~16006~^~306~^224.^5^11.^~6~^~JA~^^^2^199.^296.^4^192.^254.^~2, 3~^~12/01/2005~ -~16006~^~307~^343.^5^13.^~6~^~JA~^^^2^292.^397.^4^305.^381.^~2, 3~^~12/01/2005~ -~16006~^~318~^108.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16006~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16006~^~321~^65.^5^6.^~1~^~A~^^^1^54.^85.^4^47.^82.^~2, 3~^~05/01/2004~ -~16006~^~322~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16006~^~334~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~337~^511.^5^45.^~1~^~A~^^^1^432.^687.^4^386.^636.^~2, 3~^~05/01/2004~ -~16006~^~338~^16.^5^6.^~1~^~A~^^^1^3.^36.^4^-1.^33.^~1, 2, 3~^~03/01/2006~ -~16006~^~417~^12.^7^0.^~6~^~JA~^^^2^4.^24.^4^9.^13.^~2, 3~^~05/01/2004~ -~16006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16006~^~432~^12.^7^0.^~6~^~JA~^^^2^4.^24.^4^9.^13.^^~03/01/2006~ -~16006~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16007~^~268~^506.^0^^~4~^^^^^^^^^^^ -~16007~^~301~^45.^10^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~304~^25.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~305~^81.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~306~^320.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~307~^475.^4^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~318~^213.^10^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16007~^~320~^11.^10^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16007~^~417~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16007~^~432~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16007~^~601~^22.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16008~^~268~^596.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~301~^48.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~304~^28.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~305~^104.^4^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~306~^235.^21^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~307~^430.^29^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~319~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~ -~16008~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~321~^52.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~ -~16008~^~322~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~ -~16008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16008~^~334~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~ -~16008~^~337~^409.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~ -~16008~^~338~^13.^0^^~4~^~RF~^^^^^^^^^^~04/01/2007~ -~16008~^~417~^30.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16008~^~432~^30.^2^^~1~^^^^^^^^^^^~04/01/2007~ -~16008~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~601~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~16009~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~16009~^~301~^53.^67^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~304~^34.^11^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~305~^108.^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~306~^309.^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~307~^414.^70^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~16009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16009~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~16009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16009~^~417~^36.^3^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16009~^~432~^36.^3^9.^~1~^^^^^^^^^^^~01/01/2006~ -~16009~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~16009~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16010~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16010~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~301~^39.^18^0.^~1~^~A~^^^1^32.^49.^3^36.^41.^~2, 3~^~08/01/2014~ -~16010~^~304~^30.^18^0.^~1~^~A~^^^1^26.^42.^6^28.^30.^~2, 3~^~08/01/2014~ -~16010~^~305~^88.^18^0.^~1~^~A~^^^1^75.^111.^7^85.^89.^~2, 3~^~08/01/2014~ -~16010~^~306~^231.^18^3.^~1~^~A~^^^1^178.^319.^4^220.^241.^~2, 3~^~08/01/2014~ -~16010~^~307~^391.^18^5.^~1~^~A~^^^1^253.^481.^4^377.^405.^~2, 3~^~08/01/2014~ -~16010~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~16010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16010~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~16010~^~321~^9.^9^0.^~1~^~A~^^^1^1.^31.^3^6.^11.^~2, 3~^~08/01/2014~ -~16010~^~322~^0.^9^0.^~1~^~A~^^^1^0.^2.^3^0.^0.^~1, 2, 3~^~11/01/2004~ -~16010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16010~^~334~^2.^9^0.^~1~^~A~^^^1^0.^14.^2^0.^5.^~1, 2, 3~^~08/01/2014~ -~16010~^~337~^83.^9^27.^~1~^~A~^^^1^0.^751.^2^-37.^202.^~1, 2, 3~^~08/01/2014~ -~16010~^~338~^9.^9^2.^~1~^~A~^^^1^1.^27.^3^0.^17.^~1, 2, 3~^~07/01/2014~ -~16010~^~417~^8.^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~16010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16010~^~432~^8.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16010~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16010~^~601~^7.^0^^~4~^~T~^^^^^^^^^^~08/01/2014~ -~16011~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16011~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~301~^56.^225^0.^~6~^~JA~^^^2^17.^56.^3^55.^55.^~2, 3~^~04/01/2004~ -~16011~^~304~^34.^83^0.^~6~^~JA~^^^2^24.^35.^3^34.^34.^~2, 3~^~04/01/2004~ -~16011~^~305~^116.^186^0.^~6~^~JA~^^^2^55.^117.^3^115.^116.^~2, 3~^~04/01/2004~ -~16011~^~306~^295.^86^0.^~6~^~JA~^^^2^177.^300.^3^294.^295.^~2, 3~^~04/01/2004~ -~16011~^~307~^437.^223^0.^~6~^~JA~^^^2^265.^440.^3^436.^437.^~2, 3~^~04/01/2004~ -~16011~^~318~^84.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~16011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16011~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~16011~^~321~^50.^4^6.^~1~^~A~^^^1^34.^65.^3^29.^71.^~2, 3~^~04/01/2004~ -~16011~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16011~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~337~^322.^4^69.^~1~^~A~^^^1^172.^508.^3^99.^543.^~2, 3~^~04/01/2004~ -~16011~^~338~^14.^4^4.^~1~^~A~^^^1^3.^22.^3^1.^26.^~1, 2, 3~^~02/01/2008~ -~16011~^~417~^15.^8^0.^~6~^~JA~^^^2^6.^23.^3^14.^15.^~2, 3~^~04/01/2004~ -~16011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16011~^~432~^15.^8^0.^~6~^~JA~^^^2^6.^23.^3^14.^15.^^~02/01/2008~ -~16011~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16014~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16014~^~301~^123.^11^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~304~^171.^26^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~305~^352.^11^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~306~^1483.^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~318~^17.^1^^~1~^^^^^^^^^^^~01/01/2011~ -~16014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16014~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16014~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16014~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16014~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16014~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16014~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16014~^~417~^444.^8^33.^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16014~^~432~^444.^8^33.^~1~^^^^^^^^^^^~04/01/2007~ -~16014~^~435~^444.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16014~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~268~^552.^0^^~4~^^^^^^^^^^^ -~16015~^~301~^27.^14^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~304~^70.^14^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~305~^140.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~306~^355.^14^25.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~307~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16015~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~417~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16015~^~432~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16015~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16016~^~268~^1417.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~16016~^~301~^160.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~304~^160.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~305~^440.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~306~^1500.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~307~^9.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~318~^17.^0^^~1~^^^^^^^^^^^~01/01/2011~ -~16016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16016~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16016~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~417~^444.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16016~^~432~^444.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16016~^~435~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16016~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16017~^~268~^544.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16017~^~301~^55.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~304~^49.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~305~^152.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~306~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~307~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~318~^6.^0^^~1~^^^^^^^^^^^~01/01/2011~ -~16017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16017~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~16017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16017~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16017~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16017~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16017~^~417~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16017~^~432~^86.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16017~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16017~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~268~^380.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16018~^~301~^35.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~305~^108.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~306~^308.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~307~^384.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~318~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16018~^~321~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~322~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16018~^~334~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~417~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16018~^~432~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16018~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16019~^~268~^1402.^0^^~4~^^^^^^^^^^^ -~16019~^~301~^127.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~304~^156.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~305~^372.^8^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~306~^1332.^8^33.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~307~^6.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~318~^2.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16019~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16019~^~417~^604.^8^28.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16019~^~432~^604.^8^28.^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~435~^604.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16019~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16020~^~268~^569.^0^^~4~^^^^^^^^^^^ -~16020~^~301~^50.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~304~^50.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~305~^135.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~306~^387.^8^8.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~307~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16020~^~417~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16020~^~432~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~435~^207.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16020~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16021~^~268~^347.^0^^~4~^^^^^^^^^^^ -~16021~^~301~^34.^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~304~^32.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~305~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~306~^260.^6^24.^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~307~^332.^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16021~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16021~^~417~^77.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16021~^~432~^77.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16021~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16022~^~268~^1435.^0^^~4~^^^^^^^^^^^ -~16022~^~301~^186.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~304~^188.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~305~^304.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~306~^1316.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~307~^18.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16022~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16022~^~417~^399.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16022~^~432~^399.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~435~^399.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16022~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16023~^~268~^540.^0^^~4~^^^^^^^^^^^ -~16023~^~301~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~304~^56.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~305~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~306~^370.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16023~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16023~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16023~^~432~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16023~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16024~^~268~^1419.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~301~^175.^36^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~304~^189.^36^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~305~^447.^35^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~306~^1387.^36^50.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~307~^14.^31^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16024~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~417~^482.^32^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16024~^~432~^482.^32^14.^~1~^^^^^^^^^^^~02/01/2003~ -~16024~^~435~^482.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16025~^~268~^494.^0^^~4~^^^^^^^^^^^ -~16025~^~301~^68.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~304~^50.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~305~^165.^20^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~306~^391.^20^10.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16025~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16025~^~417~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16025~^~432~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16025~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16026~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~304~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~305~^136.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~306~^351.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~307~^370.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16026~^~318~^1.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16026~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16026~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16026~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16026~^~432~^81.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16026~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16027~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16027~^~268~^1393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16027~^~301~^143.^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~304~^140.^69^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~305~^407.^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~306~^1406.^67^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~307~^24.^55^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16027~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16027~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~417~^394.^32^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16027~^~432~^394.^32^13.^~1~^^^^^^^^^^^~02/01/2003~ -~16027~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16027~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~636~^127.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16028~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~301~^35.^53^0.^~6~^~JA~^^^10^20.^49.^52^33.^37.^~4~^~02/01/2003~ -~16028~^~304~^42.^54^0.^~6~^~JA~^^^10^29.^57.^53^40.^44.^~4~^~02/01/2003~ -~16028~^~305~^138.^53^3.^~6~^~JA~^^^10^89.^202.^52^132.^144.^~4~^~02/01/2003~ -~16028~^~306~^405.^54^9.^~6~^~JA~^^^10^284.^580.^53^385.^423.^~4~^~02/01/2003~ -~16028~^~307~^1.^50^0.^~6~^~JA~^^^10^0.^38.^49^0.^2.^~4~^~02/01/2003~ -~16028~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16028~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16028~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16028~^~432~^130.^8^3.^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16029~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16029~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16029~^~301~^34.^44^6.^~6~^~JA~^^^2^27.^40.^1^-49.^116.^~4~^~04/01/2004~ -~16029~^~304~^27.^2^^~6~^~JA~^^^2^24.^31.^1^^^^~04/01/2004~ -~16029~^~305~^90.^2^^~6~^~JA~^^^2^75.^105.^1^^^^~04/01/2004~ -~16029~^~306~^237.^41^20.^~6~^~JA~^^^2^216.^257.^1^-23.^496.^~4~^~04/01/2004~ -~16029~^~307~^296.^42^51.^~6~^~JA~^^^2^245.^347.^1^-352.^944.^~4~^~04/01/2004~ -~16029~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~16029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16029~^~417~^36.^1^^~6~^~JA~^^^2^23.^49.^1^^^^~04/01/2004~ -~16029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16029~^~432~^36.^1^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~16029~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~16029~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16030~^~268~^1381.^0^^~4~^^^^^^^^^^^ -~16030~^~301~^195.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~304~^160.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~305~^405.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~306~^1490.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~307~^11.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16030~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16030~^~417~^394.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16030~^~432~^394.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16030~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16031~^~268~^519.^0^^~4~^^^^^^^^^^^ -~16031~^~301~^66.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~305~^137.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~306~^419.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~307~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16031~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16031~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16031~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16031~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16032~^~268~^1408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~301~^83.^50^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~304~^138.^49^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~305~^406.^50^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~306~^1359.^51^24.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~307~^12.^44^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16032~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16032~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16032~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16032~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16032~^~417~^394.^32^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16032~^~432~^394.^32^13.^~1~^^^^^^^^^^^~04/01/2007~ -~16032~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16033~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~307~^2.^21^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16033~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16033~^~432~^130.^8^3.^~1~^^^^^^^^^^^~04/01/2007~ -~16033~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16034~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16034~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16034~^~301~^29.^48^0.^~6~^~JA~^^^3^27.^55.^3^28.^30.^~2, 3~^~04/01/2011~ -~16034~^~304~^30.^6^0.^~6~^~JA~^^^3^24.^33.^3^26.^32.^~2, 3~^~04/01/2011~ -~16034~^~305~^106.^6^1.^~6~^~JA~^^^3^75.^118.^3^100.^111.^~2, 3~^~04/01/2011~ -~16034~^~306~^260.^45^15.^~6~^~JA~^^^3^216.^306.^39^228.^290.^~2, 3~^~04/01/2011~ -~16034~^~307~^256.^5^27.^~1~^~A~^^^2^202.^339.^3^169.^341.^~2, 3~^~04/01/2011~ -~16034~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2011~ -~16034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16034~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16034~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16034~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16034~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16034~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16034~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16034~^~417~^23.^1^^~6~^~JA~^^^2^23.^49.^^^^^~06/01/2014~ -~16034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16034~^~432~^23.^1^^~6~^~JA~^^^^^^^^^^~06/01/2014~ -~16034~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16035~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16035~^~268~^1377.^0^^~4~^^^^^^^^^^^ -~16035~^~301~^131.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~304~^138.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~305~^406.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~306~^1346.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~307~^13.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16035~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16035~^~417~^393.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16035~^~432~^393.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~435~^393.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16035~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16036~^~268~^515.^0^^~4~^^^^^^^^^^^ -~16036~^~301~^44.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~304~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~306~^378.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16036~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16036~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16036~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16036~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16037~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16037~^~268~^1411.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~301~^147.^13^2.^~11~^~JO~^^^2^106.^163.^11^140.^153.^~2, 3~^~04/01/2004~ -~16037~^~304~^175.^13^1.^~11~^~JO~^^^2^103.^190.^11^171.^179.^~2, 3~^~04/01/2004~ -~16037~^~305~^407.^13^6.^~11~^~JO~^^^2^264.^452.^11^392.^422.^~2, 3~^~04/01/2004~ -~16037~^~306~^1185.^13^10.^~11~^~JO~^^^2^867.^1279.^11^1162.^1207.^~2, 3~^~04/01/2004~ -~16037~^~307~^5.^9^0.^~11~^~JO~^^^2^4.^10.^7^3.^7.^~2, 3~^~04/01/2004~ -~16037~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16037~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16037~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~417~^364.^17^11.^~11~^~JO~^^^2^80.^487.^15^340.^388.^~2, 3~^~04/01/2004~ -~16037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16037~^~432~^364.^17^11.^~11~^~JO~^^^2^80.^487.^15^340.^388.^^~11/01/2006~ -~16037~^~435~^364.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~16038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~16038~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~301~^69.^44^2.^~11~^~JO~^^^5^36.^117.^32^64.^74.^~2, 3~^~04/01/2004~ -~16038~^~304~^53.^45^0.^~11~^~JO~^^^5^31.^71.^34^51.^55.^~2, 3~^~04/01/2004~ -~16038~^~305~^144.^44^3.^~11~^~JO~^^^5^95.^199.^35^137.^150.^~2, 3~^~04/01/2004~ -~16038~^~306~^389.^45^10.^~11~^~JO~^^^5^247.^580.^33^367.^411.^~2, 3~^~04/01/2004~ -~16038~^~307~^0.^37^0.^~11~^~JO~^^^5^0.^3.^30^0.^0.^~2, 3~^~04/01/2004~ -~16038~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~321~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~ -~16038~^~322~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~ -~16038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16038~^~334~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~ -~16038~^~337~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~ -~16038~^~338~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~ -~16038~^~417~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^~2, 3~^~03/01/2015~ -~16038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16038~^~432~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^^~03/01/2015~ -~16038~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16039~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16039~^~268~^473.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~16039~^~301~^47.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~304~^47.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~305~^134.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~306~^288.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~307~^336.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16039~^~318~^1.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16039~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16039~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16039~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~417~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16039~^~432~^62.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16039~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16040~^~268~^1435.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16040~^~301~^130.^14^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~304~^182.^10^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~305~^415.^10^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~306~^1464.^14^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~307~^8.^6^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16040~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16040~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16040~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16040~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16040~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16040~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16040~^~417~^463.^9^32.^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16040~^~432~^463.^9^32.^~1~^^^^^^^^^^^~04/01/2007~ -~16040~^~435~^463.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16040~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16041~^~268~^623.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16041~^~301~^52.^9^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~304~^65.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~305~^165.^9^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~306~^508.^9^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16041~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16041~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16041~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16041~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16041~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16041~^~417~^168.^8^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16041~^~432~^168.^8^13.^~1~^^^^^^^^^^^~04/01/2007~ -~16041~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16041~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16042~^~268~^1452.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~301~^113.^16^2.^~11~^~JO~^^^2^98.^127.^13^107.^117.^~2, 3~^~04/01/2004~ -~16042~^~304~^176.^16^1.^~11~^~JO~^^^2^161.^188.^13^172.^180.^~2, 3~^~04/01/2004~ -~16042~^~305~^411.^16^6.^~11~^~JO~^^^2^373.^462.^14^397.^425.^~2, 3~^~04/01/2004~ -~16042~^~306~^1393.^16^10.^~11~^~JO~^^^2^1317.^1470.^14^1369.^1416.^~2, 3~^~04/01/2004~ -~16042~^~307~^12.^12^1.^~11~^~JO~^^^2^6.^22.^10^10.^14.^~2, 3~^~04/01/2004~ -~16042~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16042~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16042~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16042~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16042~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16042~^~417~^525.^12^23.^~1~^~A~^^^1^421.^666.^11^473.^575.^~2, 3~^~11/01/2006~ -~16042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16042~^~432~^525.^12^23.^~1~^~A~^^^1^421.^666.^11^473.^575.^^~11/01/2006~ -~16042~^~435~^525.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16043~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16043~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~301~^46.^65^0.^~11~^~JO~^^^12^32.^67.^44^44.^48.^~2, 3~^~04/01/2004~ -~16043~^~304~^50.^66^0.^~11~^~JO~^^^12^35.^71.^44^48.^51.^~2, 3~^~04/01/2004~ -~16043~^~305~^147.^65^2.^~11~^~JO~^^^12^107.^205.^42^141.^151.^~2, 3~^~04/01/2004~ -~16043~^~306~^436.^66^8.^~11~^~JO~^^^12^264.^650.^41^417.^454.^~2, 3~^~04/01/2004~ -~16043~^~307~^1.^58^0.^~11~^~JO~^^^12^0.^13.^12^0.^1.^~2, 3~^~04/01/2004~ -~16043~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16043~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16043~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16043~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16043~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16043~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~16043~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~16043~^~417~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^~2, 3~^~03/01/2006~ -~16043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16043~^~432~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^^~03/01/2006~ -~16043~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~601~^0.^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16044~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16044~^~268~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16044~^~301~^47.^27^3.^~6~^~JA~^^^4^25.^119.^12^40.^53.^~2, 3~^~04/01/2011~ -~16044~^~304~^33.^4^2.^~1~^~A~^^^1^27.^39.^3^24.^41.^~2, 3~^~04/01/2011~ -~16044~^~305~^92.^4^4.^~1~^~A~^^^1^77.^99.^3^76.^107.^~2, 3~^~12/01/1986~ -~16044~^~306~^276.^12^17.^~6~^~JA~^^^2^160.^351.^9^237.^314.^~2, 3~^~04/01/2011~ -~16044~^~307~^268.^4^19.^~1~^~A~^^^1^234.^307.^3^205.^331.^~2, 3~^~04/01/2011~ -~16044~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~16044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16044~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~16044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~16044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~16044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~16044~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16044~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16044~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16045~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16045~^~268~^1406.^0^^~4~^^^^^^^^^^^ -~16045~^~301~^173.^14^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~304~^183.^12^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~305~^445.^12^28.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~306~^1542.^14^45.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~307~^12.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16045~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16045~^~417~^386.^12^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16045~^~432~^386.^12^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~435~^386.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16045~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16046~^~268~^594.^0^^~4~^^^^^^^^^^^ -~16046~^~301~^73.^9^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~304~^68.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~305~^169.^9^12.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~306~^463.^9^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16046~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16046~^~417~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16046~^~432~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16046~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16047~^~268~^1443.^0^^~4~^^^^^^^^^^^ -~16047~^~301~^166.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~304~^222.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~305~^488.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~306~^1042.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~307~^12.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~318~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16047~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16047~^~417~^389.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16047~^~432~^389.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~435~^389.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16047~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~268~^601.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~16048~^~301~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~304~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~318~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16048~^~432~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16048~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16049~^~268~^1393.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16049~^~301~^240.^5^47.^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~304~^190.^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~305~^301.^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~306~^1795.^5^253.^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16049~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16049~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16049~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16049~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16049~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16049~^~417~^388.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16049~^~432~^388.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16049~^~435~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16049~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16050~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~301~^90.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~305~^113.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~306~^561.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16050~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16050~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16050~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16050~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16050~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16050~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16050~^~432~^81.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16050~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16051~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16051~^~301~^73.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~304~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~305~^91.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~306~^454.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~307~^340.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2015~ -~16051~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16051~^~321~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~322~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16051~^~334~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~337~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~338~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~417~^65.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16051~^~432~^65.^0^^~1~^^^^^^^^^^^~05/01/2006~ -~16051~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16051~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~301~^103.^31^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~304~^192.^10^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~305~^421.^29^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~306~^1062.^8^61.^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~307~^13.^5^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16052~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~321~^32.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16052~^~417~^423.^8^33.^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16052~^~432~^423.^8^33.^~1~^^^^^^^^^^^~04/01/2007~ -~16052~^~435~^423.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~636~^124.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~268~^460.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16053~^~301~^36.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~304~^43.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~305~^125.^8^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~306~^268.^8^27.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16053~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16053~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16053~^~417~^104.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16053~^~432~^104.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16053~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16053~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16054~^~268~^297.^0^^~4~^^^^^^^^^^^ -~16054~^~301~^26.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~304~^32.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~305~^79.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~306~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~307~^453.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~318~^10.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16054~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16054~^~417~^33.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16054~^~432~^33.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16054~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~268~^929.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~16055~^~301~^348.^10^129.^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~304~^54.^6^84.^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~305~^79.^4^53.^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~306~^827.^6^113.^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~307~^35.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16055~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16055~^~321~^8.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16055~^~417~^29.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16055~^~432~^29.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~16055~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16055~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16056~^~301~^57.^35^2.^~1~^~A~^^^2^20.^88.^26^52.^61.^~2, 3~^~04/01/2014~ -~16056~^~304~^79.^35^1.^~1~^~A~^^^2^53.^107.^31^75.^82.^~2, 3~^~04/01/2014~ -~16056~^~305~^252.^19^13.^~1~^~A~^^^1^164.^329.^18^223.^280.^~2, 3~^~04/01/2014~ -~16056~^~306~^718.^34^18.^~1~^~A~^^^2^582.^1086.^20^678.^757.^~2, 3~^~04/01/2014~ -~16056~^~307~^24.^35^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16056~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16056~^~321~^40.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~417~^557.^16^27.^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16056~^~432~^557.^16^27.^~1~^^^^^^^^^^^~04/01/2007~ -~16056~^~435~^557.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16057~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~301~^49.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~304~^48.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~305~^168.^21^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~306~^291.^21^10.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~307~^7.^17^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16057~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16057~^~417~^172.^8^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16057~^~432~^172.^8^9.^~1~^^^^^^^^^^^~04/01/2007~ -~16057~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16058~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16058~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16058~^~301~^35.^4^3.^~1~^~A~^^^1^24.^41.^3^22.^46.^~2, 3~^~05/01/2011~ -~16058~^~304~^27.^4^0.^~1~^~A~^^^1^26.^27.^3^25.^27.^~2, 3~^~05/01/2011~ -~16058~^~305~^80.^4^2.^~1~^~A~^^^1^73.^87.^3^70.^89.^~2, 3~^~05/01/2011~ -~16058~^~306~^144.^4^11.^~1~^~A~^^^1^121.^175.^3^107.^180.^~2, 3~^~05/01/2011~ -~16058~^~307~^278.^4^22.^~1~^~A~^^^1^240.^340.^3^205.^350.^~2, 3~^~05/01/2011~ -~16058~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16058~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~16058~^~321~^9.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16058~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~ -~16058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16058~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~ -~16058~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~ -~16058~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~ -~16058~^~417~^25.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16058~^~432~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~05/01/2011~ -~16058~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16059~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~16059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16059~^~268~^433.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~16059~^~301~^47.^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~304~^45.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~305~^154.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~306~^365.^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~307~^423.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~318~^337.^16^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~16059~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16059~^~321~^180.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~16059~^~334~^43.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~337~^1069.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~338~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~417~^23.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~16059~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16059~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16059~^~601~^17.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16060~^~268~^1435.^0^^~4~^^^^^^^^^^^ -~16060~^~301~^85.^4^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~304~^333.^4^92.^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~305~^438.^4^55.^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~306~^1375.^4^152.^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~307~^58.^3^36.^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~318~^33.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16060~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16060~^~417~^639.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16060~^~432~^639.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~435~^639.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16060~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16061~^~268~^490.^0^^~4~^^^^^^^^^^^ -~16061~^~301~^26.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~304~^96.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~306~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~307~^19.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16061~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16061~^~417~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16061~^~432~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16061~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~268~^1406.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16062~^~301~^110.^47^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~304~^184.^45^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~305~^424.^46^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~306~^1112.^44^40.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~307~^16.^39^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16062~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16062~^~321~^30.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16062~^~417~^633.^17^41.^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16062~^~432~^633.^17^41.^~1~^^^^^^^^^^^~04/01/2007~ -~16062~^~435~^633.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16062~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~301~^24.^28^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~304~^53.^29^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~305~^156.^28^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~306~^278.^29^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~307~^4.^24^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16063~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16063~^~417~^208.^8^19.^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16063~^~432~^208.^8^19.^~1~^^^^^^^^^^^~04/01/2007~ -~16063~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16064~^~268~^322.^0^^~4~^^^^^^^^^^^ -~16064~^~301~^20.^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~304~^28.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~305~^70.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~306~^172.^3^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~307~^293.^3^13.^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~16064~^~318~^13.^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16064~^~417~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16064~^~432~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16064~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16065~^~268~^347.^0^^~4~^^^^^^^^^^^ -~16065~^~301~^17.^33^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~304~^43.^30^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~305~^96.^30^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~306~^178.^31^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~307~^350.^33^12.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~318~^0.^30^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16065~^~320~^0.^30^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16065~^~417~^51.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16065~^~432~^51.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16065~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16065~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~268~^1441.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16067~^~301~^130.^4^29.^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~304~^283.^3^115.^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~305~^372.^4^63.^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~306~^1235.^3^150.^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~307~^21.^3^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16067~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~417~^23.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16067~^~432~^23.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16067~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16068~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16068~^~268~^491.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16068~^~301~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~305~^120.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~307~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16068~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~16068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16068~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16068~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16068~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16069~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~268~^1473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16069~^~301~^35.^38^1.^~1~^~A~^^^2^17.^58.^35^32.^37.^~2, 3~^~04/01/2014~ -~16069~^~304~^47.^38^1.^~1~^~A~^^^2^18.^82.^30^43.^50.^~2, 3~^~04/01/2014~ -~16069~^~305~^281.^28^8.^~1~^~A~^^^1^207.^403.^27^264.^297.^~2, 3~^~04/01/2014~ -~16069~^~306~^677.^38^10.^~1~^~A~^^^2^528.^894.^34^655.^698.^~2, 3~^~04/01/2014~ -~16069~^~307~^6.^4^1.^~1~^~A~^^^1^2.^9.^3^1.^10.^~2, 3~^~03/01/2010~ -~16069~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~16069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16069~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~16069~^~321~^23.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16069~^~417~^479.^8^24.^~1~^~A~^^^1^380.^596.^7^419.^537.^~2, 3~^~03/01/2010~ -~16069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16069~^~432~^479.^8^24.^~1~^~A~^^^1^380.^596.^7^419.^537.^^~03/01/2010~ -~16069~^~435~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~16069~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16070~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~301~^19.^20^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~305~^180.^20^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~306~^369.^20^25.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16070~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16070~^~417~^181.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16070~^~432~^181.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16070~^~435~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~268~^1414.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16071~^~301~^81.^48^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~304~^224.^45^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~305~^385.^47^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~306~^1724.^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~307~^18.^41^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16071~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16071~^~417~^395.^16^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16071~^~432~^395.^16^13.^~1~^^^^^^^^^^^~04/01/2007~ -~16071~^~435~^395.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16071~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16072~^~301~^17.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~304~^43.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~305~^111.^29^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~306~^508.^30^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~307~^2.^23^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16072~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~16072~^~417~^83.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16072~^~432~^83.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16072~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16072~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16073~^~268~^331.^0^^~4~^^^^^^^^^^^ -~16073~^~301~^21.^13^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~304~^39.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~305~^74.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~306~^220.^6^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~307~^336.^6^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16073~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16073~^~417~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16073~^~432~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16073~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16074~^~268~^1402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~301~^81.^25^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~304~^188.^25^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~305~^370.^25^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~306~^1403.^25^53.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~307~^13.^21^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16074~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~321~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~322~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16074~^~334~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~337~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~338~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~417~^400.^16^20.^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16074~^~432~^400.^16^20.^~1~^^^^^^^^^^^~05/01/2003~ -~16074~^~435~^400.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16075~^~268~^527.^0^^~4~^^^^^^^^^^^ -~16075~^~301~^29.^21^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~304~^53.^21^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~305~^127.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~306~^401.^21^21.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~307~^3.^17^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16075~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16075~^~417~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16075~^~432~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16075~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16076~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~268~^1554.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~16076~^~301~^176.^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~304~^198.^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~305~^440.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~306~^1013.^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~307~^15.^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~16076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16076~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2011~ -~16076~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16076~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~417~^355.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16076~^~432~^355.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16076~^~435~^355.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16076~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16077~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16077~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16077~^~301~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~305~^128.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~306~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~307~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~318~^7.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~16077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16077~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~16077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16077~^~417~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16077~^~432~^59.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~16077~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16077~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16078~^~268~^1435.^0^^~4~^^^^^^^^^^^ -~16078~^~301~^150.^5^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~304~^381.^5^67.^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~305~^489.^5^52.^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~306~^1191.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~307~^30.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~318~^32.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16078~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16078~^~417~^649.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16078~^~432~^649.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16078~^~435~^649.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16078~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16079~^~268~^490.^0^^~4~^^^^^^^^^^^ -~16079~^~301~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~304~^104.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~305~^150.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~306~^304.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~307~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16079~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16079~^~417~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16079~^~432~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16079~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16079~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16080~^~268~^1452.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16080~^~301~^132.^49^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~304~^189.^29^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~305~^367.^48^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~306~^1246.^18^42.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~307~^15.^12^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~318~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16080~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16080~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16080~^~321~^68.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16080~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~16080~^~417~^625.^8^42.^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16080~^~432~^625.^8^42.^~1~^^^^^^^^^^^~04/01/2007~ -~16080~^~435~^625.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16080~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~636~^23.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~301~^27.^9^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~304~^48.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~305~^99.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~306~^266.^9^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16081~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~321~^14.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16081~^~417~^159.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16081~^~432~^159.^8^11.^~1~^^^^^^^^^^^~04/01/2007~ -~16081~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~268~^1470.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16082~^~301~^25.^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~305~^32.^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~306~^10.^3^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~307~^10.^3^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16082~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16082~^~432~^2.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16082~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16082~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16083~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~16083~^~268~^1427.^0^^~4~^^^^^^^^^^^ -~16083~^~301~^138.^9^21.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~304~^267.^6^46.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~305~^379.^9^83.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~306~^983.^5^38.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~307~^38.^4^7.^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~318~^23.^2^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~16083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16083~^~320~^1.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~16083~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16083~^~417~^216.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16083~^~432~^216.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~16083~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16084~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16084~^~268~^439.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16084~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~305~^156.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~306~^231.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~307~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16084~^~319~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16084~^~321~^19.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~322~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16084~^~334~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~337~^0.^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~338~^0.^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~417~^94.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16084~^~432~^94.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16084~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16084~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16085~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~268~^1521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~301~^46.^85^1.^~1~^~A~^^^3^17.^127.^71^42.^49.^~2, 3~^~03/01/2016~ -~16085~^~304~^63.^85^1.^~1~^~A~^^^3^18.^129.^66^60.^64.^~2, 3~^~03/01/2016~ -~16085~^~305~^334.^72^4.^~1~^~A~^^^2^260.^467.^57^326.^342.^~2, 3~^~03/01/2016~ -~16085~^~306~^852.^85^9.^~1~^~A~^^^3^558.^1090.^72^832.^871.^~2, 3~^~03/01/2016~ -~16085~^~307~^5.^18^0.^~1~^~A~^^^1^4.^17.^17^3.^6.^~1, 2, 3~^~03/01/2016~ -~16085~^~318~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16085~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16085~^~321~^89.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16085~^~417~^15.^9^1.^~1~^~A~^^^1^9.^21.^8^11.^19.^~2, 3~^~03/01/2016~ -~16085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16085~^~432~^15.^9^1.^~1~^~A~^^^1^9.^21.^8^11.^19.^^~03/01/2016~ -~16085~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16086~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~268~^494.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~301~^14.^20^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~305~^99.^20^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~306~^362.^20^27.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16086~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~321~^4.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16086~^~417~^65.^13^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16086~^~432~^65.^13^14.^~1~^^^^^^^^^^^~04/01/2007~ -~16086~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16087~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16087~^~268~^2374.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~301~^92.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~304~^168.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~305~^376.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~306~^705.^47^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~307~^18.^35^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16087~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16087~^~321~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~ -~16087~^~322~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~ -~16087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16087~^~334~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~ -~16087~^~337~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~ -~16087~^~338~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~04/01/2014~ -~16087~^~417~^240.^8^15.^~1~^~A~^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16087~^~432~^240.^8^15.^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16088~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16088~^~268~^1331.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~16088~^~301~^55.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~304~^102.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~305~^198.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~306~^180.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~307~^751.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16088~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16088~^~321~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~322~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16088~^~334~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~337~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~338~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16088~^~432~^75.^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16088~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16088~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16089~^~208~^599.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16089~^~268~^2506.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16089~^~301~^61.^4^3.^~1~^~A~^^^1^52.^67.^3^49.^71.^~2, 3~^~02/01/2003~ -~16089~^~304~^176.^4^3.^~1~^~A~^^^1^170.^186.^3^164.^187.^~2, 3~^~02/01/2003~ -~16089~^~305~^397.^4^5.^~1~^~A~^^^1^390.^414.^3^377.^415.^~2, 3~^~02/01/2003~ -~16089~^~306~^726.^4^6.^~1~^~A~^^^1^714.^737.^3^706.^744.^~2, 3~^~02/01/2003~ -~16089~^~307~^320.^4^29.^~1~^~A~^^^1^245.^377.^3^227.^412.^~2, 3~^~07/01/2012~ -~16089~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~16089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16089~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~16089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16089~^~417~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^~2, 3~^~02/01/2003~ -~16089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16089~^~432~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^^~02/01/2007~ -~16089~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16090~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16090~^~268~^2455.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~301~^58.^17^1.^~1~^~A~^^^1^34.^75.^9^54.^61.^~2, 3~^~04/01/2014~ -~16090~^~304~^178.^17^1.^~1~^~A~^^^1^162.^188.^10^174.^181.^~2, 3~^~04/01/2014~ -~16090~^~305~^363.^17^2.^~1~^~A~^^^1^331.^375.^15^358.^367.^~2, 3~^~04/01/2014~ -~16090~^~306~^634.^17^5.^~1~^~A~^^^1^603.^686.^10^622.^644.^~2, 3~^~04/01/2014~ -~16090~^~307~^410.^14^17.^~1~^~A~^^^1^310.^681.^12^372.^448.^~2, 3~^~04/01/2014~ -~16090~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~16090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16090~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~16090~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~417~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^~2, 3~^~04/01/2014~ -~16090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16090~^~432~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^^~04/01/2014~ -~16090~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16091~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~16091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~16091~^~268~^2386.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~301~^106.^5^8.^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~304~^188.^5^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~305~^388.^5^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~306~^744.^7^37.^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~307~^22.^7^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~321~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~322~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16091~^~334~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~337~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~338~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~417~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16091~^~432~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16091~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16092~^~268~^2423.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~16092~^~301~^100.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~304~^168.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~305~^387.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~306~^776.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~307~^433.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16092~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16092~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16092~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16092~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16093~^~268~^2385.^0^^~4~^^^^^^^^^^^ -~16093~^~301~^62.^3^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~304~^184.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~305~^336.^3^29.^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~306~^332.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~307~^1.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16093~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16093~^~417~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16093~^~432~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~435~^246.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16093~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16094~^~268~^2464.^0^^~4~^^^^^^^^^^^ -~16094~^~301~^54.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~304~^160.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~305~^319.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~306~^612.^4^74.^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~307~^772.^4^115.^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16094~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16094~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16094~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16094~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~208~^563.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16095~^~268~^2356.^0^^~4~^^^^^^^^^^^~05/01/2014~ -~16095~^~301~^89.^15^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~304~^171.^15^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~305~^380.^15^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~306~^690.^15^38.^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~307~^10.^15^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16095~^~321~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~322~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16095~^~334~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~337~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~338~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~417~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16095~^~432~^239.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16095~^~435~^239.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16096~^~208~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16096~^~268~^2418.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~16096~^~301~^86.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~304~^188.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~305~^506.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~306~^652.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~307~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16096~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16096~^~417~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16096~^~432~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16096~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16097~^~268~^2464.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~16097~^~301~^45.^11^2.^~6~^~JA~^^^2^41.^70.^3^38.^52.^~2, 3~^~03/01/2004~ -~16097~^~304~^160.^196^0.^~6~^~JA~^^^2^159.^204.^3^159.^159.^~2, 3~^~03/01/2004~ -~16097~^~305~^319.^196^0.^~6~^~JA~^^^2^317.^430.^3^317.^319.^~2, 3~^~03/01/2004~ -~16097~^~306~^745.^190^0.^~6~^~JA~^^^2^603.^747.^3^743.^745.^~2, 3~^~03/01/2004~ -~16097~^~307~^486.^274^0.^~6~^~JA~^^^2^393.^640.^3^483.^488.^~2, 3~^~03/01/2004~ -~16097~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16097~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16097~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16097~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~417~^92.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16097~^~432~^92.^2^^~1~^^^^^^^^^^^~03/01/2006~ -~16097~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16097~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16097~^~638~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~05/01/2011~ -~16097~^~639~^15.^4^0.^~1~^~A~^^^1^14.^15.^3^14.^15.^~2, 3~^~05/01/2011~ -~16097~^~641~^77.^4^1.^~1~^~A~^^^1^73.^79.^3^73.^81.^~2, 3~^~05/01/2011~ -~16098~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~268~^2501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16098~^~301~^49.^18^0.^~1~^~A~^^^1^43.^55.^9^47.^50.^~2, 3~^~08/01/2014~ -~16098~^~304~^168.^18^1.^~1~^~A~^^^1^155.^182.^8^165.^170.^~2, 3~^~08/01/2014~ -~16098~^~305~^335.^18^1.^~1~^~A~^^^1^313.^357.^9^330.^339.^~2, 3~^~08/01/2014~ -~16098~^~306~^558.^18^2.^~1~^~A~^^^1^533.^592.^14^553.^563.^~2, 3~^~07/01/2014~ -~16098~^~307~^426.^18^3.^~1~^~A~^^^1^409.^482.^8^417.^435.^~2, 3~^~07/01/2014~ -~16098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16098~^~417~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^~2, 3~^~08/01/2014~ -~16098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16098~^~432~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^^~08/01/2014~ -~16098~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16099~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16099~^~268~^1368.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~16099~^~301~^140.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~304~^370.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~305~^760.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~306~^1290.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~307~^180.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16099~^~321~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~322~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16099~^~334~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~337~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~338~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~417~^248.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16099~^~432~^248.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~16099~^~435~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16099~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16100~^~268~^1790.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16100~^~301~^130.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~304~^48.^8^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~305~^508.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~306~^1358.^8^70.^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~307~^1.^7^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16100~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16100~^~417~^133.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16100~^~432~^133.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16100~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16101~^~268~^1435.^0^^~4~^^^^^^^^^^^ -~16101~^~301~^130.^18^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~304~^183.^14^17.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~305~^367.^18^30.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~306~^1392.^9^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~307~^17.^4^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~318~^28.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16101~^~320~^1.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16101~^~417~^456.^8^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16101~^~432~^456.^8^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~435~^456.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16101~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16102~^~268~^506.^0^^~4~^^^^^^^^^^^ -~16102~^~301~^43.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~304~^46.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~305~^119.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~306~^384.^8^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~318~^3.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16102~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16102~^~417~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16102~^~432~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16102~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16103~^~268~^379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16103~^~301~^29.^17^0.^~1~^~A~^^^1^24.^41.^7^27.^29.^~2, 3~^~04/01/2014~ -~16103~^~304~^35.^17^0.^~1~^~A~^^^1^29.^44.^8^34.^36.^~2, 3~^~08/01/2014~ -~16103~^~305~^92.^17^1.^~1~^~A~^^^1^80.^114.^9^88.^96.^~2, 3~^~08/01/2014~ -~16103~^~306~^319.^17^5.^~1~^~A~^^^1^249.^414.^8^306.^332.^~2, 3~^~08/01/2014~ -~16103~^~307~^370.^17^8.^~1~^~A~^^^1^256.^425.^9^351.^388.^~2, 3~^~04/01/2014~ -~16103~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16103~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16103~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16103~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16103~^~417~^11.^4^1.^~1~^^^^^^^^^^^~03/01/2008~ -~16103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16103~^~432~^11.^4^1.^~1~^^^^^^^^^^^~03/01/2008~ -~16103~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16103~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16104~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~268~^1294.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16104~^~301~^23.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~304~^19.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~305~^70.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~306~^170.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~307~^1465.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~318~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16104~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16104~^~321~^53.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16104~^~417~^42.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16104~^~432~^42.^2^^~1~^^^^^^^^^^^~04/01/2007~ -~16104~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16104~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16106~^~268~^1301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16106~^~301~^204.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~304~^216.^14^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~305~^639.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~306~^1902.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~307~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~318~^32.^14^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16106~^~320~^2.^14^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16106~^~417~^198.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16106~^~432~^198.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~435~^198.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16106~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~268~^1069.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16107~^~301~^63.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~304~^36.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~305~^225.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~306~^231.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~307~^888.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16107~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16107~^~417~^26.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16107~^~432~^26.^2^^~1~^^^^^^^^^^^~04/01/2007~ -~16107~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16107~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~16108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~16108~^~268~^1866.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16108~^~301~^277.^71^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~304~^280.^49^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~305~^704.^82^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~306~^1797.^56^28.^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~307~^2.^5^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~16108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16108~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~16108~^~321~^13.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~322~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16108~^~334~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~337~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~338~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~417~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16108~^~432~^375.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~16108~^~435~^375.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~16108~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~636~^161.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16109~^~301~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~304~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~305~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~306~^515.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~307~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16109~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16109~^~417~^54.^4^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16109~^~432~^54.^4^2.^~1~^^^^^^^^^^^~04/01/2007~ -~16109~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16109~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16110~^~301~^138.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~304~^145.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~305~^363.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~306~^1470.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~307~^163.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16110~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16110~^~321~^120.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16110~^~417~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16110~^~432~^211.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~16110~^~435~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16110~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16111~^~268~^1880.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16111~^~301~^140.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1997~ -~16111~^~304~^228.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~305~^649.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~306~^1364.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~307~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~16111~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16111~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~16111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16111~^~417~^205.^3^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16111~^~432~^205.^3^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~435~^205.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16111~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16112~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~268~^828.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16112~^~301~^57.^5^0.^~6~^~JA~^^^2^43.^66.^1^49.^65.^~2, 3~^~12/01/2003~ -~16112~^~304~^48.^8^6.^~6~^~JA~^^^2^42.^68.^5^30.^66.^~2, 3~^~12/01/2003~ -~16112~^~305~^159.^5^0.^~6~^~JA~^^^2^153.^170.^1^149.^168.^~2, 3~^~12/01/2003~ -~16112~^~306~^210.^12^18.^~6~^~JA~^^^2^164.^454.^9^169.^251.^~2, 3~^~12/01/2003~ -~16112~^~307~^3728.^12^303.^~6~^~JA~^^^2^3647.^4249.^9^3042.^4413.^~2, 3~^~12/01/2003~ -~16112~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16112~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16112~^~321~^52.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16112~^~417~^19.^3^2.^~6~^~JA~^^^2^8.^33.^1^-9.^46.^~2, 3~^~12/01/2003~ -~16112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16112~^~432~^19.^3^2.^~6~^~JA~^^^2^8.^33.^1^-9.^46.^^~04/01/2007~ -~16112~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16112~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~268~^883.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16113~^~301~^217.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~304~^115.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~305~^174.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~306~^729.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~307~^7.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16113~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16113~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16113~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16113~^~432~^8.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16113~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16113~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16114~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~268~^803.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~301~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~304~^81.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~305~^266.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~306~^412.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~307~^9.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~ -~16114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16114~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~ -~16114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16114~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~16114~^~432~^24.^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~ -~16114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~16115~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16115~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~268~^1816.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16115~^~301~^206.^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~304~^429.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~305~^494.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~306~^2515.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~307~^13.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16115~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16115~^~321~^72.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16115~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16115~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16115~^~417~^345.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16115~^~432~^345.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~16115~^~435~^345.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16115~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~208~^439.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16116~^~268~^1836.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16116~^~301~^188.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~304~^369.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~305~^476.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~306~^2041.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~307~^12.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~16116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16116~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~16116~^~321~^73.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~322~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16116~^~334~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~337~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~338~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~417~^227.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16116~^~432~^227.^0^^~1~^^^^^^^^^^^~04/01/2003~ -~16116~^~435~^227.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~16116~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~268~^1367.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16117~^~301~^241.^17^27.^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~304~^290.^13^32.^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~305~^674.^11^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~306~^2384.^13^243.^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~307~^20.^13^2.^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16117~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16117~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16117~^~417~^305.^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16117~^~432~^305.^7^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~435~^305.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16117~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16118~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16118~^~268~^1557.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16118~^~301~^285.^2^^~1~^~A~^^^1^270.^300.^1^^^^~01/01/2008~ -~16118~^~304~^285.^2^^~1~^~A~^^^1^270.^300.^1^^^^~01/01/2008~ -~16118~^~305~^675.^2^^~1~^~A~^^^1^660.^690.^1^^^^~01/01/2008~ -~16118~^~306~^2090.^2^^~1~^~A~^^^1^2040.^2140.^1^^^^~01/01/2008~ -~16118~^~307~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~01/01/2008~ -~16118~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16118~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~16118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16118~^~417~^289.^0^^~4~^~BFNN~^~16117~^^^^^^^^^~01/01/2008~ -~16118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16118~^~432~^289.^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2008~ -~16118~^~435~^289.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16119~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16119~^~268~^1409.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16119~^~301~^244.^10^38.^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~304~^306.^7^8.^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~305~^701.^8^16.^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~306~^2490.^7^79.^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~307~^3.^7^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~318~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16119~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16119~^~417~^303.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16119~^~432~^303.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16119~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16120~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16120~^~268~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~301~^25.^14^6.^~6~^~JA~^^^2^16.^38.^3^5.^45.^~4~^~08/01/2007~ -~16120~^~304~^25.^9^0.^~6~^~JA~^^^2^25.^25.^1^22.^27.^~4~^~08/01/2007~ -~16120~^~305~^52.^10^2.^~6~^~JA~^^^2^51.^55.^1^19.^84.^~4~^~08/01/2007~ -~16120~^~306~^118.^14^22.^~6~^~JA~^^^2^58.^152.^3^44.^190.^~4~^~08/01/2007~ -~16120~^~307~^51.^14^4.^~6~^~JA~^^^2^39.^59.^3^36.^65.^~4~^~08/01/2007~ -~16120~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~319~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~321~^2.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~322~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~324~^0.^7^0.^~12~^~MA~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2007~ -~16120~^~334~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~337~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~338~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~417~^18.^12^3.^~6~^~JA~^^^2^10.^22.^2^1.^33.^~4~^~08/01/2007~ -~16120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2004~ -~16120~^~432~^18.^12^3.^~6~^~JA~^^^2^10.^22.^2^1.^33.^^~08/01/2007~ -~16120~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~601~^0.^7^0.^~12~^~MA~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2007~ -~16121~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~268~^1373.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16121~^~301~^363.^5^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~304~^315.^5^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~305~^839.^5^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~306~^2202.^5^70.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~307~^3.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16121~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~417~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16121~^~432~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16121~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~268~^1401.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16122~^~301~^178.^176^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~304~^39.^155^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~305~^776.^163^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~306~^81.^102^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~307~^1005.^592^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16122~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~417~^176.^112^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16122~^~432~^176.^112^3.^~1~^^^^^^^^^^^~04/01/2007~ -~16122~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16122~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16123~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~16123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16123~^~268~^222.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~16123~^~301~^33.^6^0.^~1~^~A~^^^1^32.^34.^5^32.^33.^~2, 3~^~06/01/2012~ -~16123~^~304~^74.^6^0.^~1~^~A~^^^1^73.^74.^5^73.^74.^~2, 3~^~06/01/2012~ -~16123~^~305~^166.^6^0.^~1~^~A~^^^1^163.^168.^5^163.^167.^~2, 3~^~06/01/2012~ -~16123~^~306~^435.^6^3.^~1~^~A~^^^1^426.^449.^5^425.^445.^~2, 3~^~06/01/2012~ -~16123~^~307~^5493.^6^42.^~1~^~A~^^^1^5390.^5660.^5^5383.^5603.^~2, 3~^~06/01/2012~ -~16123~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~16123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16123~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~16123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~417~^14.^5^3.^~6~^~JA~^^^2^9.^16.^3^1.^26.^~2, 3~^~12/01/2003~ -~16123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~16123~^~432~^14.^5^3.^~6~^~JA~^^^2^9.^16.^3^1.^26.^^~07/01/2007~ -~16123~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~16123~^~601~^0.^1^^~6~^~JA~^^^2^0.^0.^^^^^~12/01/2003~ -~16124~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~268~^251.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16124~^~301~^20.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~304~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~305~^130.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~306~^212.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~307~^5586.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16124~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~417~^18.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16124~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16124~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16124~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~16125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16125~^~301~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^16.^17.^~2, 3~^~06/01/2012~ -~16125~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~06/01/2012~ -~16125~^~305~^94.^6^2.^~1~^~A~^^^1^87.^103.^5^88.^99.^~2, 3~^~06/01/2012~ -~16125~^~306~^447.^6^5.^~1~^~A~^^^1^427.^464.^5^431.^461.^~2, 3~^~06/01/2012~ -~16125~^~307~^6820.^6^35.^~1~^~A~^^^1^6650.^6900.^5^6727.^6912.^~2, 3~^~06/01/2012~ -~16125~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16125~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~417~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16125~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16125~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16125~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16126~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~16126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16126~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~16126~^~301~^201.^7^26.^~1~^~A~^^^2^127.^306.^4^127.^273.^~2, 3~^~12/01/2003~ -~16126~^~304~^37.^5^1.^~1~^~A~^^^2^32.^46.^4^31.^42.^~2, 3~^~12/01/2003~ -~16126~^~305~^121.^6^5.^~1~^~A~^^^2^92.^147.^4^104.^137.^~2, 3~^~12/01/2003~ -~16126~^~306~^148.^7^8.^~1~^~A~^^^2^99.^176.^4^123.^172.^~2, 3~^~12/01/2003~ -~16126~^~307~^12.^7^3.^~1~^~A~^^^2^3.^30.^4^1.^22.^~2, 3~^~12/01/2003~ -~16126~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~16126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16126~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16126~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16126~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16126~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16126~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2006~ -~16126~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~12/01/2003~ -~16126~^~417~^19.^6^3.^~1~^~A~^^^2^8.^33.^4^9.^28.^~2, 3~^~12/01/2003~ -~16126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16126~^~432~^19.^6^3.^~1~^~A~^^^2^8.^33.^4^9.^28.^^~03/01/2006~ -~16126~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16126~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16127~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16127~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16127~^~301~^111.^5^8.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~304~^27.^4^2.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~305~^92.^4^6.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~306~^120.^5^20.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~307~^8.^5^1.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16127~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16127~^~321~^4.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16127~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16127~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16127~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~16127~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16127~^~417~^44.^4^1.^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16127~^~432~^44.^4^1.^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16127~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16128~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16128~^~268~^1995.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16128~^~301~^364.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~304~^59.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~305~^483.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~306~^20.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~318~^518.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16128~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16128~^~417~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16128~^~432~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16128~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16129~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16129~^~301~^372.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~304~^60.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~305~^287.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~306~^146.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16129~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16129~^~321~^16.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~322~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16129~^~334~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~417~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16129~^~432~^27.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16129~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16129~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16130~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16130~^~301~^80.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~304~^26.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~305~^60.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~306~^213.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~307~^9.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16130~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~16130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16130~^~417~^26.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16130~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16130~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16132~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16132~^~301~^46.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~305~^73.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~306~^75.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~307~^2873.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16132~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16132~^~417~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16132~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16132~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16133~^~268~^1452.^0^^~4~^^^^^^^^^^^ -~16133~^~301~^138.^4^12.^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~304~^338.^4^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~305~^559.^4^24.^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~306~^1157.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~307~^17.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~318~^52.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16133~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16133~^~417~^658.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16133~^~432~^658.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~435~^658.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16133~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16134~^~268~^494.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~16134~^~301~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~304~^98.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16134~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16134~^~417~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16134~^~432~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16134~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~268~^1711.^0^^~4~^^^^^^^^^^^ -~16135~^~301~^440.^48^24.^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~304~^179.^43^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~305~^451.^48^12.^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~306~^977.^30^45.^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~307~^38.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16135~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16135~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~417~^45.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16135~^~432~^45.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16136~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16136~^~268~^615.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~16136~^~301~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~305~^153.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~306~^280.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~307~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16136~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16136~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16136~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16136~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16137~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16137~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~268~^742.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16137~^~301~^49.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~304~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~305~^110.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~306~^173.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~307~^242.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16137~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16137~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16137~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~417~^59.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~432~^59.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16137~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~636~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16138~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16138~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~16138~^~301~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~305~^192.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~306~^585.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~307~^294.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~318~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16138~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16138~^~417~^93.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~16138~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~16138~^~432~^78.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16138~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16139~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~16139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~16139~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16139~^~301~^123.^15^0.^~12~^~MA~^^^1^123.^123.^5^123.^123.^~4~^~08/01/2007~ -~16139~^~304~^15.^8^6.^~12~^~MA~^^^1^0.^16.^4^-4.^34.^~4~^~08/01/2007~ -~16139~^~305~^43.^7^39.^~12~^~MA~^^^1^0.^103.^3^-81.^168.^~4~^~08/01/2007~ -~16139~^~306~^122.^15^6.^~12~^~MA~^^^1^111.^132.^5^106.^138.^~4~^~08/01/2007~ -~16139~^~307~^47.^15^12.^~12~^~MA~^^^1^31.^68.^5^14.^80.^~4~^~08/01/2007~ -~16139~^~318~^185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~16139~^~319~^55.^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16139~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~16139~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~324~^43.^15^6.^~12~^~MA~^^^1^33.^56.^5^26.^60.^~4~^~08/01/2007~ -~16139~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~417~^9.^15^9.^~12~^~MA~^^^1^7.^37.^5^-16.^34.^~4~^~08/01/2007~ -~16139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~16139~^~432~^9.^15^9.^~12~^~MA~^^^1^7.^37.^5^-16.^34.^^~08/01/2007~ -~16139~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16139~^~601~^0.^15^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~ -~16144~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16144~^~268~^1498.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16144~^~301~^48.^12^2.^~1~^~A~^^^2^26.^71.^10^41.^53.^~2, 3~^~04/01/2014~ -~16144~^~304~^59.^12^1.^~1~^~A~^^^2^41.^77.^9^55.^63.^~2, 3~^~04/01/2014~ -~16144~^~305~^294.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~306~^668.^12^22.^~1~^~A~^^^2^554.^916.^8^614.^720.^~2, 3~^~04/01/2014~ -~16144~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~318~^58.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16144~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~ -~16144~^~321~^35.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16144~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16144~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16144~^~417~^204.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16144~^~432~^204.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~16144~^~435~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~16144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1997~ -~16144~^~636~^57.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~638~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~641~^47.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16145~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16145~^~301~^57.^4^4.^~1~^~A~^^^1^44.^63.^3^43.^69.^~2, 3~^~04/01/2011~ -~16145~^~304~^30.^4^0.^~1~^~A~^^^1^28.^32.^3^27.^32.^~2, 3~^~04/01/2011~ -~16145~^~305~^121.^4^3.^~1~^~A~^^^1^109.^126.^3^108.^132.^~2, 3~^~04/01/2011~ -~16145~^~306~^277.^4^6.^~1~^~A~^^^1^259.^287.^3^257.^295.^~2, 3~^~04/01/2011~ -~16145~^~307~^231.^4^28.^~1~^~A~^^^1^179.^298.^3^140.^320.^~2, 3~^~04/01/2011~ -~16145~^~321~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~322~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~334~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~337~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~338~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~417~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~432~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16146~^~301~^63.^4^8.^~1~^~A~^^^1^40.^77.^3^34.^90.^~2, 3~^~04/01/2011~ -~16146~^~304~^32.^4^2.^~1~^~A~^^^1^27.^36.^3^25.^38.^~2, 3~^~04/01/2011~ -~16146~^~305~^101.^4^6.^~1~^~A~^^^1^81.^108.^3^80.^122.^~2, 3~^~04/01/2011~ -~16146~^~306~^274.^4^18.^~1~^~A~^^^1^220.^301.^3^215.^331.^~2, 3~^~04/01/2011~ -~16146~^~307~^239.^4^15.^~1~^~A~^^^1^211.^278.^3^189.^287.^~2, 3~^~04/01/2011~ -~16146~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~337~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~338~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16146~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16147~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16147~^~268~^739.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~301~^136.^4^19.^~1~^~A~^^^1^103.^190.^3^74.^197.^~2, 3~^~02/01/2005~ -~16147~^~304~^56.^4^8.^~1~^~A~^^^1^41.^79.^3^29.^81.^~2, 3~^~02/01/2005~ -~16147~^~305~^206.^4^22.^~1~^~A~^^^1^169.^268.^3^133.^277.^~2, 3~^~02/01/2005~ -~16147~^~306~^333.^4^65.^~1~^~A~^^^1^225.^499.^3^125.^539.^~2, 3~^~02/01/2005~ -~16147~^~307~^569.^4^59.^~1~^~A~^^^1^450.^731.^3^380.^756.^~2, 3~^~02/01/2005~ -~16147~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16147~^~321~^10.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~322~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16147~^~334~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~337~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~338~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~417~^124.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~432~^124.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16147~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16147~^~601~^5.^4^2.^~1~^~A~^^^1^1.^10.^3^-1.^11.^~2, 3~^~02/01/2005~ -~16149~^~208~^650.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16149~^~262~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~263~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~268~^2720.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16149~^~301~^72.^2^^~9~^~MC~^^^1^71.^73.^1^^^^~05/01/2006~ -~16149~^~304~^164.^2^^~9~^~MC~^^^1^163.^165.^1^^^^~05/01/2006~ -~16149~^~305~^350.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~306~^818.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~307~^292.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16149~^~318~^0.^2^^~9~^~MC~^^^1^0.^0.^^^^^~05/01/2015~ -~16149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~16149~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16149~^~321~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~322~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16149~^~334~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~337~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~338~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~417~^144.^2^^~9~^~MC~^^^1^144.^144.^1^^^^~05/01/2006~ -~16149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16149~^~432~^144.^2^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~16149~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16149~^~601~^0.^2^^~9~^~MC~^^^1^0.^0.^^^^^~05/01/2006~ -~16150~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16150~^~268~^2174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~301~^35.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~304~^170.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~305~^369.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~306~^669.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~307~^540.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~319~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16150~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~16150~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~16150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16150~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~16150~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~16150~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~16150~^~417~^60.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16150~^~432~^60.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16150~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16155~^~208~^591.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16155~^~268~^2472.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16155~^~301~^43.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~05/01/2007~ -~16155~^~304~^355.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~305~^368.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~306~^667.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~307~^420.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~318~^3907.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16155~^~319~^1172.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~16155~^~320~^1172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16155~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~ -~16155~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~ -~16155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16155~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~ -~16155~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~ -~16155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16155~^~417~^373.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~16155~^~431~^239.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~16155~^~432~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16155~^~435~^540.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16155~^~636~^102.^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~208~^593.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16156~^~268~^2482.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16156~^~301~^45.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~ -~16156~^~304~^370.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~305~^316.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~ -~16156~^~306~^744.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~ -~16156~^~307~^366.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~318~^3907.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16156~^~319~^1172.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~16156~^~320~^1172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16156~^~321~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16156~^~322~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16156~^~334~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16156~^~337~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16156~^~338~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16156~^~417~^313.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~16156~^~431~^221.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~16156~^~432~^92.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~ -~16156~^~435~^467.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16156~^~636~^47.^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16157~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16157~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~301~^45.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~304~^166.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~305~^318.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~306~^846.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~307~^64.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~319~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~321~^25.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~322~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16157~^~334~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16157~^~417~^437.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16157~^~432~^437.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~16157~^~435~^437.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16157~^~636~^39.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16158~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16158~^~268~^992.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~301~^47.^11^1.^~1~^~A~^^^1^26.^57.^5^42.^50.^~2, 3~^~12/01/2016~ -~16158~^~304~^75.^11^1.^~1~^~A~^^^1^57.^82.^5^69.^79.^~2, 3~^~12/01/2016~ -~16158~^~305~^181.^11^1.^~1~^~A~^^^1^134.^190.^6^176.^184.^~2, 3~^~12/01/2016~ -~16158~^~306~^312.^11^2.^~1~^~A~^^^1^231.^327.^5^306.^318.^~2, 3~^~12/01/2016~ -~16158~^~307~^426.^11^8.^~1~^~A~^^^1^387.^489.^5^404.^447.^~2, 3~^~12/01/2016~ -~16158~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~16158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16158~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~16158~^~321~^12.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~16158~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~16158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16158~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~16158~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~16158~^~338~^258.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~16158~^~417~^48.^6^0.^~1~^~A~^^^1^13.^53.^2^43.^51.^~2, 3~^~12/01/2016~ -~16158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16158~^~432~^48.^6^0.^~1~^~A~^^^1^13.^53.^2^43.^51.^^~12/01/2016~ -~16158~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16159~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~268~^349.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~301~^282.^2^^~1~^~A~^^^1^273.^291.^1^^^^~07/01/2015~ -~16159~^~304~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~07/01/2015~ -~16159~^~305~^111.^2^^~1~^~A~^^^1^100.^122.^1^^^^~07/01/2015~ -~16159~^~306~^130.^2^^~1~^~A~^^^1^123.^137.^1^^^^~07/01/2015~ -~16159~^~307~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~07/01/2015~ -~16159~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~ -~16159~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16159~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~ -~16159~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~417~^9.^2^^~1~^~A~^^^1^8.^10.^1^^^^~07/01/2015~ -~16159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16159~^~432~^9.^2^^~1~^~A~^~16126~^^^^^^^^^~07/01/2015~ -~16159~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~ -~16160~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16160~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16160~^~301~^345.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~304~^53.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~305~^231.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~306~^146.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16160~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16160~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~ -~16161~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16161~^~268~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16161~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~304~^29.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~305~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~306~^180.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~16161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16161~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~16161~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~208~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~268~^259.^0^^~9~^^^^^^^^^^^ -~16162~^~301~^32.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~305~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~306~^194.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~307~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16162~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~16162~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~208~^55.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~268~^230.^0^^~9~^^^^^^^^^^^ -~16163~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~305~^100.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~306~^154.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~307~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16163~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~16163~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~208~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~268~^155.^0^^~9~^^^^^^^^^^^~02/01/2010~ -~16164~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~304~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~305~^81.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~306~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~307~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16164~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~16164~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~208~^38.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~268~^159.^0^^~9~^^^^^^^^^^^ -~16165~^~301~^43.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~304~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~305~^83.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~306~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~307~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16165~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~16165~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16166~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~262~^2.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~ -~16166~^~263~^23.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~ -~16166~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~301~^25.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~304~^15.^4^5.^~12~^~MA~^^^1^4.^16.^2^-8.^38.^~4~^~08/01/2007~ -~16166~^~305~^51.^4^26.^~12~^~MA~^^^1^41.^103.^2^-61.^164.^~4~^~08/01/2007~ -~16166~^~306~^143.^9^25.^~12~^~MA~^^^1^119.^202.^5^78.^207.^~4~^~08/01/2007~ -~16166~^~307~^53.^9^11.^~12~^~MA~^^^1^37.^74.^5^23.^82.^~4~^~08/01/2007~ -~16166~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~16166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~324~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~417~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^~4~^~08/01/2007~ -~16166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~16166~^~432~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^^~08/01/2007~ -~16166~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~601~^0.^9^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~ -~16167~^~208~^588.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16167~^~268~^2462.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~301~^54.^5^3.^~1~^~A~^^^1^44.^64.^4^43.^64.^~2, 3~^~02/01/2004~ -~16167~^~304~^179.^5^10.^~1~^~A~^^^1^157.^206.^4^149.^207.^~2, 3~^~02/01/2004~ -~16167~^~305~^335.^5^14.^~1~^~A~^^^1^305.^372.^4^295.^375.^~2, 3~^~02/01/2004~ -~16167~^~306~^592.^5^30.^~1~^~A~^^^1^523.^683.^4^507.^676.^~2, 3~^~02/01/2004~ -~16167~^~307~^476.^5^38.^~1~^~A~^^^1^365.^566.^4^369.^582.^~2, 3~^~02/01/2004~ -~16167~^~318~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16167~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16167~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~ -~16167~^~417~^35.^5^9.^~1~^~A~^^^1^13.^65.^4^9.^61.^~2, 3~^~02/01/2004~ -~16167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16167~^~432~^35.^5^9.^~1~^~A~^^^1^13.^65.^4^9.^61.^^~11/01/2009~ -~16167~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16168~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16168~^~262~^2.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~ -~16168~^~263~^23.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~ -~16168~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16168~^~301~^126.^9^13.^~12~^~MA~^^^1^82.^129.^5^90.^161.^~4~^~08/01/2007~ -~16168~^~304~^15.^4^5.^~12~^~MA~^^^1^4.^16.^2^-8.^38.^~4~^~08/01/2007~ -~16168~^~305~^51.^4^26.^~12~^~MA~^^^1^41.^103.^2^-61.^164.^~4~^~08/01/2007~ -~16168~^~306~^143.^9^25.^~12~^~MA~^^^1^119.^202.^5^78.^207.^~4~^~08/01/2007~ -~16168~^~307~^53.^9^11.^~12~^~MA~^^^1^37.^74.^5^23.^82.^~4~^~08/01/2007~ -~16168~^~318~^235.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~16168~^~319~^70.^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16168~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~16168~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~324~^40.^9^11.^~12~^~MA~^^^1^16.^58.^5^10.^69.^~4~^~08/01/2007~ -~16168~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~417~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^~4~^~08/01/2007~ -~16168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~16168~^~432~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^^~08/01/2007~ -~16168~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~16168~^~601~^0.^9^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~ -~16171~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~301~^35.^2^^~1~^~A~^^^1^33.^36.^1^^^^~03/01/2008~ -~16171~^~304~^38.^2^^~1~^~A~^^^1^37.^39.^1^^^^~03/01/2008~ -~16171~^~305~^114.^2^^~1~^~A~^^^1^111.^116.^1^^^^~03/01/2008~ -~16171~^~306~^344.^2^^~1~^~A~^^^1^310.^377.^1^^^^~03/01/2008~ -~16171~^~307~^430.^2^^~1~^~A~^^^1^390.^469.^1^^^^~03/01/2008~ -~16172~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~301~^34.^2^^~1~^~A~^^^1^34.^34.^^^^^~03/01/2008~ -~16172~^~304~^38.^2^^~1~^~A~^^^1^38.^39.^1^^^^~03/01/2008~ -~16172~^~305~^111.^2^^~1~^~A~^^^1^110.^111.^1^^^^~03/01/2008~ -~16172~^~306~^344.^2^^~1~^~A~^^^1^319.^368.^1^^^^~03/01/2008~ -~16172~^~307~^350.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~16172~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~319~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~16172~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~16172~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~337~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~338~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~417~^57.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~432~^57.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2009~ -~16172~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~16172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16173~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~268~^604.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~301~^33.^2^^~1~^~A~^^^1^32.^34.^1^^^^~06/01/2008~ -~16173~^~304~^36.^2^^~1~^~A~^^^1^32.^40.^1^^^^~06/01/2008~ -~16173~^~305~^91.^2^^~1~^~A~^^^1^85.^97.^1^^^^~06/01/2008~ -~16173~^~306~^310.^2^^~1~^~A~^^^1^300.^320.^1^^^^~06/01/2008~ -~16173~^~307~^375.^2^^~1~^~A~^^^1^360.^390.^1^^^^~06/01/2008~ -~16173~^~417~^5.^2^^~1~^~A~^^^1^2.^7.^1^^^^~06/01/2008~ -~16173~^~432~^5.^2^^~1~^~A~^^^1^2.^7.^1^^^^~06/01/2008~ -~16174~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16174~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16174~^~301~^96.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~304~^77.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~305~^253.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~306~^401.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16174~^~417~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16174~^~432~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~16174~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16210~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16210~^~268~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16210~^~301~^184.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~305~^181.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~307~^34.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~318~^1902.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~320~^95.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~16210~^~324~^157.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16211~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16211~^~268~^492.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16211~^~301~^188.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~208~^98.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~268~^412.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~301~^77.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~318~^37.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~16212~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16213~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16213~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16213~^~301~^125.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16214~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16214~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16214~^~301~^75.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16215~^~208~^44.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16215~^~268~^184.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16215~^~301~^127.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~304~^16.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~306~^131.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~318~^129.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~324~^35.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~417~^18.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~432~^18.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16215~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~ -~16216~^~208~^47.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16216~^~268~^197.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16216~^~301~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~306~^156.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~417~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~432~^17.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16216~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~ -~16219~^~208~^30.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16219~^~268~^126.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16219~^~301~^123.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~304~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~306~^82.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~307~^49.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~318~^124.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~324~^33.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~417~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~432~^10.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16219~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~ -~16222~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16222~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16222~^~301~^124.^6^26.^~12~^~MA~^^^1^82.^165.^4^51.^195.^~4~^~08/01/2007~ -~16222~^~304~^16.^4^0.^~12~^~MA~^^^1^16.^16.^2^16.^16.^~4~^~06/01/2007~ -~16222~^~305~^32.^4^37.^~12~^~MA~^^^1^25.^103.^2^-128.^193.^~4~^~06/01/2007~ -~16222~^~306~^120.^6^16.^~12~^~MA~^^^1^86.^123.^4^73.^165.^~4~^~08/01/2007~ -~16222~^~307~^37.^6^9.^~12~^~MA~^^^1^29.^53.^4^9.^64.^~4~^~08/01/2007~ -~16222~^~318~^207.^6^120.^~12~^~MA~^^^1^206.^514.^4^-126.^540.^~4~^~08/01/2007~ -~16222~^~324~^49.^6^3.^~12~^~MA~^^^1^41.^49.^4^39.^57.^~4~^~08/01/2007~ -~16222~^~601~^0.^6^0.^~12~^~MA~^^^1^0.^0.^4^0.^0.^~4~^~08/01/2007~ -~16223~^~208~^45.^4^4.^~12~^~MA~^^^1^41.^53.^3^29.^60.^~4~^~06/01/2007~ -~16223~^~268~^189.^0^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16223~^~301~^140.^4^24.^~12~^~MA~^^^1^82.^144.^3^61.^217.^~4~^~06/01/2007~ -~16223~^~306~^141.^4^29.^~12~^~MA~^^^1^103.^181.^3^45.^236.^~4~^~06/01/2007~ -~16223~^~307~^50.^4^5.^~12~^~MA~^^^1^41.^56.^3^31.^68.^~4~^~06/01/2007~ -~16223~^~318~^393.^4^165.^~12~^~MA~^^^1^206.^617.^3^-133.^920.^~4~^~06/01/2007~ -~16223~^~324~^47.^4^11.^~12~^~MA~^^^1^16.^49.^3^8.^85.^~4~^~06/01/2007~ -~16223~^~417~^32.^3^8.^~12~^~MA~^^^1^16.^33.^2^-6.^69.^~4~^~06/01/2007~ -~16223~^~432~^32.^3^8.^~12~^~MA~^^^1^16.^33.^2^-6.^69.^^~06/01/2007~ -~16223~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~06/01/2007~ -~16225~^~208~^30.^6^2.^~12~^~MA~^^^1^25.^31.^3^23.^36.^~4~^~10/01/2008~ -~16225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16225~^~268~^126.^6^^~12~^~MA~^^^^^^^^^^~08/01/2009~ -~16225~^~301~^123.^6^0.^~12~^~MA~^^^1^123.^123.^3^123.^123.^~4~^~06/01/2007~ -~16225~^~304~^15.^6^3.^~12~^~MA~^^^1^7.^16.^3^4.^25.^~4~^~06/01/2007~ -~16225~^~305~^87.^4^13.^~12~^~MA~^^^1^62.^103.^2^28.^145.^~4~^~06/01/2007~ -~16225~^~306~^117.^6^21.^~12~^~MA~^^^1^66.^123.^3^48.^184.^~4~^~06/01/2007~ -~16225~^~307~^48.^6^13.^~12~^~MA~^^^1^39.^78.^3^4.^92.^~4~^~06/01/2007~ -~16225~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16225~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16225~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16225~^~321~^1.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~322~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~324~^47.^6^5.^~12~^~MA~^^^1^33.^49.^3^30.^63.^~4~^~06/01/2007~ -~16225~^~334~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~337~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~338~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~417~^9.^5^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^~4~^~06/01/2007~ -~16225~^~431~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~432~^9.^5^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^^~10/01/2008~ -~16225~^~435~^9.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~ -~16225~^~601~^0.^6^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~10/01/2008~ -~16227~^~208~^47.^4^4.^~12~^~MA~^^^1^37.^49.^3^32.^60.^~4~^~10/01/2008~ -~16227~^~262~^2.^0^^~4~^~BFSN~^~16168~^^^^^^^^^~04/01/2009~ -~16227~^~263~^19.^0^^~4~^~BFSN~^~16168~^^^^^^^^^~04/01/2009~ -~16227~^~268~^197.^4^^~12~^~MA~^^^^^^^^^^~08/01/2009~ -~16227~^~301~^123.^4^0.^~12~^~MA~^^^1^123.^123.^3^123.^123.^~4~^~06/01/2007~ -~16227~^~304~^15.^4^3.^~12~^~MA~^^^1^7.^16.^3^4.^25.^~4~^~06/01/2007~ -~16227~^~305~^87.^3^13.^~12~^~MA~^^^1^62.^103.^2^28.^145.^~4~^~06/01/2007~ -~16227~^~306~^144.^4^48.^~12~^~MA~^^^1^66.^202.^3^-9.^297.^~4~^~06/01/2007~ -~16227~^~307~^46.^4^16.^~12~^~MA~^^^1^31.^78.^3^-5.^96.^~4~^~06/01/2007~ -~16227~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16227~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16227~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16227~^~321~^2.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~322~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~324~^47.^4^5.^~12~^~MA~^^^1^33.^49.^3^30.^63.^~4~^~06/01/2007~ -~16227~^~334~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~337~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~338~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~417~^9.^3^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^~4~^~06/01/2007~ -~16227~^~431~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~432~^9.^3^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^^~04/01/2009~ -~16227~^~435~^9.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~ -~16227~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~10/01/2008~ -~16228~^~208~^34.^2^^~4~^~NC~^^^1^21.^29.^1^^^^~06/01/2007~ -~16228~^~268~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~16228~^~301~^123.^2^^~12~^~MA~^^^1^123.^123.^1^^^^~06/01/2007~ -~16228~^~304~^13.^2^^~12~^~MA~^^^1^7.^25.^1^^^^~06/01/2007~ -~16228~^~305~^103.^2^^~12~^~MA~^^^1^103.^103.^1^^^^~06/01/2007~ -~16228~^~306~^117.^2^^~12~^~MA~^^^1^115.^119.^1^^^^~06/01/2007~ -~16228~^~307~^63.^2^^~12~^~MA~^^^1^51.^70.^1^^^^~06/01/2007~ -~16228~^~318~^206.^2^^~12~^~MA~^^^1^206.^206.^1^^^^~06/01/2007~ -~16228~^~324~^41.^2^^~12~^~MA~^^^1^41.^41.^1^^^^~06/01/2007~ -~16228~^~417~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16228~^~432~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16228~^~601~^0.^2^^~12~^~MA~^^^1^0.^0.^1^^^^~06/01/2007~ -~16229~^~208~^43.^2^^~12~^~MA~^^^1^37.^49.^1^^^^~05/01/2009~ -~16229~^~268~^180.^2^^~12~^~MA~^^^^^^^^^^~08/01/2009~ -~16229~^~301~^82.^2^^~12~^~MA~^^^1^82.^82.^^^^^~06/01/2007~ -~16229~^~305~^62.^2^^~12~^~MA~^^^1^62.^62.^^^^^~06/01/2007~ -~16229~^~306~^64.^2^^~12~^~MA~^^^1^62.^66.^1^^^^~06/01/2007~ -~16229~^~307~^37.^2^^~12~^~MA~^^^1^37.^37.^^^^^~06/01/2007~ -~16229~^~318~^206.^2^^~12~^~MA~^^^1^206.^206.^^^^^~06/01/2007~ -~16229~^~320~^62.^2^^~12~^~MA~^^^1^62.^62.^^^^^~05/01/2009~ -~16229~^~324~^41.^2^^~12~^~MA~^^^1^41.^41.^^^^^~05/01/2009~ -~16229~^~601~^0.^2^^~12~^~MA~^^^1^0.^0.^^^^^~05/01/2009~ -~16230~^~208~^28.^4^1.^~12~^~MA~^^^1^25.^33.^2^20.^36.^~2, 3~^~10/01/2008~ -~16230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16230~^~268~^117.^4^^~12~^~MA~^^^^^^^^^^~08/01/2009~ -~16230~^~301~^116.^4^0.^~12~^~MA~^^^1^103.^123.^^^^~2, 3~^~08/01/2007~ -~16230~^~304~^10.^4^0.^~12~^~MA~^^^1^7.^16.^^^^~2, 3~^~08/01/2007~ -~16230~^~305~^87.^4^0.^~12~^~MA~^^^1^62.^103.^^^^~2, 3~^~08/01/2007~ -~16230~^~306~^105.^4^0.^~12~^~MA~^^^1^86.^115.^1^95.^114.^~2, 3~^~08/01/2007~ -~16230~^~307~^57.^4^0.^~12~^~MA~^^^1^43.^66.^^^^~2, 3~^~08/01/2007~ -~16230~^~318~^206.^4^0.^~12~^~MA~^^^1^206.^206.^^^^~2, 3~^~10/01/2008~ -~16230~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16230~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~16230~^~321~^1.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~322~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~324~^41.^4^0.^~12~^~MA~^^^1^41.^41.^^^^~2, 3~^~06/01/2007~ -~16230~^~334~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~337~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~338~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~417~^7.^2^^~12~^~MA~^^^1^7.^7.^1^^^^~06/01/2007~ -~16230~^~431~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~432~^7.^2^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~16230~^~435~^7.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~ -~16230~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~08/01/2007~ -~16231~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16231~^~262~^2.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~263~^19.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16231~^~301~^116.^4^0.^~12~^~MA~^^^1^103.^123.^^^^~2, 3~^~04/01/2009~ -~16231~^~304~^10.^4^0.^~12~^~MA~^^^1^7.^16.^^^^~2, 3~^~04/01/2009~ -~16231~^~305~^87.^4^0.^~12~^~MA~^^^1^62.^103.^^^^~2, 3~^~04/01/2009~ -~16231~^~306~^105.^4^0.^~12~^~MA~^^^1^86.^115.^1^95.^114.^~2, 3~^~04/01/2009~ -~16231~^~307~^57.^4^0.^~12~^~MA~^^^1^43.^66.^^^^~2, 3~^~04/01/2009~ -~16231~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16231~^~319~^61.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~320~^61.^0^^~4~^~NC~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~321~^2.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~322~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~324~^41.^4^0.^~12~^~MA~^^^1^41.^41.^^^^~2, 3~^~04/01/2009~ -~16231~^~334~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~337~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~338~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~417~^7.^2^^~12~^~MA~^^^1^7.^7.^1^^^^~04/01/2009~ -~16231~^~431~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~432~^7.^2^^~12~^~MA~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~435~^7.^0^^~4~^~NC~^~16227~^^^^^^^^^~05/01/2009~ -~16231~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2009~ -~16235~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16235~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16236~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16236~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16237~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~268~^243.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16237~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16237~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16238~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~268~^121.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16238~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~208~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~268~^138.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16239~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16239~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~208~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~268~^205.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16240~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~208~^45.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~268~^188.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16241~^~301~^144.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~318~^412.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16242~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16242~^~301~^165.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16242~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16242~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16243~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16243~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~208~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~268~^138.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16244~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16244~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~307~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16244~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16244~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~208~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~268~^222.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16245~^~301~^144.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~307~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~318~^412.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~208~^74.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~268~^310.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16246~^~301~^16.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~307~^61.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~417~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~432~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16247~^~208~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~268~^222.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16247~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~324~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~268~^243.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16248~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~208~^62.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~268~^259.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16249~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~306~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16250~^~208~^79.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~268~^331.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16250~^~301~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~324~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16251~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16251~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16251~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16252~^~208~^66.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~268~^276.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16252~^~301~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~324~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~208~^94.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~268~^393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16253~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16254~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~208~^94.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~268~^393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16255~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16256~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16257~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16258~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16259~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~208~^100.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~268~^418.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16260~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~208~^133.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~268~^556.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16261~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~208~^133.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~268~^556.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~16262~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16262~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16271~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16271~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16271~^~301~^130.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16272~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16272~^~301~^394.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~305~^203.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~307~^79.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~318~^1913.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~320~^96.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~16272~^~324~^153.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16273~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16273~^~301~^246.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~305~^129.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~307~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~324~^101.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16274~^~268~^310.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16274~^~301~^237.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~305~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~324~^101.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16275~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16275~^~301~^239.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~307~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~324~^98.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16276~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16276~^~301~^176.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~307~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16277~^~268~^336.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16277~^~301~^180.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~307~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16278~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16278~^~301~^66.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16279~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16279~^~268~^245.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16279~^~301~^78.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~307~^34.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~318~^34.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16281~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16281~^~301~^149.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~307~^33.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16302~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16302~^~268~^536.^0^^~4~^^^^^^^^^^^ -~16302~^~301~^28.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~305~^168.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~306~^532.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~307~^244.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16302~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16302~^~417~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16302~^~432~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16302~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16315~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~268~^552.^0^^~4~^^^^^^^^^^^ -~16315~^~301~^27.^14^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~304~^70.^14^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~305~^140.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~306~^355.^14^25.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16315~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16315~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16315~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~417~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16315~^~432~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16315~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16316~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~268~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16316~^~301~^35.^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~304~^35.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~305~^108.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~306~^308.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~307~^138.^5^19.^~8~^~LC~^^^^122.^130.^^^^^~02/01/2013~ -~16316~^~318~^4.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16316~^~321~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~322~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~334~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~417~^61.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~432~^61.^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16317~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~268~^544.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16317~^~301~^55.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~304~^49.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~305~^152.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~306~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~307~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~318~^6.^0^^~1~^^^^^^^^^^^~01/01/2011~ -~16317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16317~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~16317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~417~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16317~^~432~^86.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16317~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16317~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16320~^~268~^569.^0^^~4~^^^^^^^^^^^ -~16320~^~301~^50.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~304~^50.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~305~^135.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~306~^387.^8^8.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16320~^~417~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16320~^~432~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~435~^207.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16320~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16323~^~268~^540.^0^^~4~^^^^^^^^^^^ -~16323~^~301~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~304~^56.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~305~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~306~^370.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~307~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16323~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16323~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16323~^~432~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16323~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16325~^~268~^494.^0^^~4~^^^^^^^^^^^ -~16325~^~301~^68.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~304~^50.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~305~^165.^20^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~306~^391.^20^10.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16325~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16325~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16325~^~417~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16325~^~432~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16325~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16326~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16326~^~301~^53.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~304~^51.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~305~^136.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~306~^351.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~307~^177.^0^^~8~^~LC~^^^^^^^^^^~01/01/2013~ -~16326~^~318~^1.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16326~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~417~^81.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~432~^81.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16328~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16328~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16328~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16328~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16328~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16328~^~432~^130.^8^3.^~1~^^^^^^^^^^^~02/01/2003~ -~16328~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16331~^~268~^519.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~16331~^~301~^66.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~305~^137.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~306~^419.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16331~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16331~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16331~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16331~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16331~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16331~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16333~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16333~^~432~^130.^8^3.^~1~^^^^^^^^^^^~04/01/2007~ -~16333~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16335~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~301~^58.^4^4.^~1~^~A~^^^1^46.^68.^3^43.^72.^~2, 3~^~04/01/2011~ -~16335~^~304~^29.^4^0.^~1~^~A~^^^1^28.^30.^3^26.^30.^~2, 3~^~04/01/2011~ -~16335~^~305~^118.^4^5.^~1~^~A~^^^1^103.^129.^3^100.^135.^~2, 3~^~04/01/2011~ -~16335~^~306~^250.^4^6.^~1~^~A~^^^1^233.^262.^3^230.^268.^~2, 3~^~04/01/2011~ -~16335~^~307~^208.^4^26.^~1~^~A~^^^1^164.^274.^3^123.^292.^~2, 3~^~04/01/2011~ -~16335~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~321~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~322~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~334~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~337~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~338~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~417~^23.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~432~^23.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16336~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16336~^~268~^515.^0^^~4~^^^^^^^^^^^ -~16336~^~301~^44.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~304~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~306~^378.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16336~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16336~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16336~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16336~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16336~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16337~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~301~^29.^48^0.^~6~^~JA~^^^3^27.^55.^3^28.^30.^~2, 3~^~01/01/2013~ -~16337~^~304~^30.^6^0.^~6~^~JA~^^^3^24.^33.^3^26.^32.^~2, 3~^~01/01/2013~ -~16337~^~305~^106.^6^1.^~6~^~JA~^^^3^75.^118.^3^100.^111.^~2, 3~^~01/01/2013~ -~16337~^~306~^260.^45^15.^~6~^~JA~^^^3^216.^306.^39^228.^290.^~2, 3~^~01/01/2013~ -~16337~^~307~^117.^4^18.^~8~^~LC~^^^4^88.^169.^^^^^~01/01/2013~ -~16337~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16337~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~16337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~417~^26.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~16337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~432~^26.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~16337~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16338~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16338~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16338~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~301~^69.^44^2.^~11~^~JO~^^^5^36.^117.^32^64.^74.^~2, 3~^~04/01/2004~ -~16338~^~304~^53.^45^0.^~11~^~JO~^^^5^31.^71.^34^51.^55.^~2, 3~^~04/01/2004~ -~16338~^~305~^144.^44^3.^~11~^~JO~^^^5^95.^199.^35^137.^150.^~2, 3~^~04/01/2004~ -~16338~^~306~^389.^45^10.^~11~^~JO~^^^5^247.^580.^33^367.^411.^~2, 3~^~04/01/2004~ -~16338~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16338~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16338~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~321~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~ -~16338~^~322~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~ -~16338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16338~^~334~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~ -~16338~^~337~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~ -~16338~^~338~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~ -~16338~^~417~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^~2, 3~^~10/01/2014~ -~16338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16338~^~432~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^^~10/01/2014~ -~16338~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16341~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16341~^~268~^623.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16341~^~301~^52.^9^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~304~^65.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~305~^165.^9^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~306~^508.^9^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16341~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16341~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16341~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16341~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~417~^168.^8^13.^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16341~^~432~^168.^8^13.^~1~^^^^^^^^^^^~04/01/2007~ -~16341~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16341~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16343~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~16343~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~16343~^~301~^46.^65^0.^~11~^~JO~^^^12^32.^67.^44^44.^48.^~2, 3~^~04/01/2004~ -~16343~^~304~^50.^66^0.^~11~^~JO~^^^12^35.^71.^44^48.^51.^~2, 3~^~04/01/2004~ -~16343~^~305~^147.^65^2.^~11~^~JO~^^^12^107.^205.^42^141.^151.^~2, 3~^~04/01/2004~ -~16343~^~306~^436.^66^8.^~11~^~JO~^^^12^264.^650.^41^417.^454.^~2, 3~^~04/01/2004~ -~16343~^~307~^238.^0^^~1~^^^^^^^^^^^~04/01/2004~ -~16343~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~16343~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~16343~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~16343~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~16343~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16343~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~16343~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~16343~^~338~^0.^0^^~4~^~BFZN~^~16043~^^^^^^^^^~06/01/2005~ -~16343~^~417~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^~2, 3~^~06/01/2005~ -~16343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16343~^~432~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^^~06/01/2005~ -~16343~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~16343~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2004~ -~16345~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~268~^490.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16345~^~301~^64.^4^7.^~1~^~A~^^^1^46.^79.^3^39.^88.^~2, 3~^~04/01/2011~ -~16345~^~304~^30.^4^2.^~1~^~A~^^^1^25.^34.^3^23.^37.^~2, 3~^~04/01/2011~ -~16345~^~305~^96.^4^6.^~1~^~A~^^^1^78.^105.^3^75.^116.^~2, 3~^~04/01/2011~ -~16345~^~306~^234.^4^20.^~1~^~A~^^^1^173.^257.^3^168.^298.^~2, 3~^~04/01/2011~ -~16345~^~307~^212.^4^13.^~1~^~A~^^^1^184.^246.^3^168.^255.^~2, 3~^~04/01/2011~ -~16345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~417~^21.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~432~^21.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16345~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16346~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16346~^~268~^594.^0^^~4~^^^^^^^^^^^ -~16346~^~301~^73.^9^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~304~^68.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~305~^169.^9^12.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~306~^463.^9^18.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16346~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16346~^~417~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16346~^~432~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16346~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16347~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~268~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~301~^47.^27^3.^~6~^~JA~^^^4^25.^119.^12^40.^53.^~2, 3~^~01/01/2013~ -~16347~^~304~^33.^4^2.^~1~^~A~^^^1^27.^39.^3^24.^41.^~2, 3~^~01/01/2013~ -~16347~^~305~^92.^4^4.^~1~^~A~^^^1^77.^99.^3^76.^107.^~2, 3~^~01/01/2013~ -~16347~^~306~^276.^12^17.^~6~^~JA~^^^2^160.^351.^9^237.^314.^~2, 3~^~01/01/2013~ -~16347~^~307~^146.^0^^~8~^~LC~^^^^^^^^^^~01/01/2013~ -~16347~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~16347~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16347~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16348~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~268~^601.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~16348~^~301~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~304~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~318~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16348~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~ -~16348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16348~^~432~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16348~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~301~^90.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~305~^113.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~306~^561.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~307~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16350~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16350~^~432~^81.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16350~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16353~^~268~^460.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16353~^~301~^36.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~304~^43.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~305~^125.^8^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~306~^268.^8^27.^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16353~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16353~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16353~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16353~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16353~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16353~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16353~^~417~^104.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16353~^~432~^104.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16353~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16353~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~301~^49.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~304~^48.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~305~^168.^21^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~306~^291.^21^10.^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16357~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~321~^16.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~322~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16357~^~334~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~337~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~338~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~417~^172.^8^9.^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16357~^~432~^172.^8^9.^~1~^^^^^^^^^^^~04/01/2007~ -~16357~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16358~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~301~^45.^4^5.^~1~^~A~^^^1^29.^52.^3^28.^61.^~2, 3~^~05/01/2011~ -~16358~^~304~^26.^4^0.^~1~^~A~^^^1^24.^28.^3^23.^28.^~2, 3~^~05/01/2011~ -~16358~^~305~^85.^4^4.^~1~^~A~^^^1^74.^95.^3^70.^98.^~2, 3~^~05/01/2011~ -~16358~^~306~^126.^4^7.^~1~^~A~^^^1^108.^145.^3^101.^150.^~2, 3~^~05/01/2011~ -~16358~^~307~^246.^4^20.^~1~^~A~^^^1^215.^303.^3^181.^311.^~2, 3~^~05/01/2011~ -~16358~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~321~^14.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~417~^48.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~432~^48.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~301~^43.^4^4.^~1~^~A~^^^1^28.^48.^3^27.^58.^~2, 3~^~05/01/2011~ -~16359~^~304~^24.^4^1.^~1~^~A~^^^1^21.^28.^3^19.^28.^~2, 3~^~05/01/2011~ -~16359~^~305~^80.^4^5.^~1~^~A~^^^1^69.^95.^3^62.^97.^~2, 3~^~05/01/2011~ -~16359~^~306~^109.^4^8.^~1~^~A~^^^1^94.^132.^3^83.^134.^~2, 3~^~05/01/2011~ -~16359~^~307~^212.^4^17.^~1~^~A~^^^1^185.^259.^3^157.^267.^~2, 3~^~05/01/2011~ -~16359~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~321~^13.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~417~^41.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~432~^41.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16360~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~301~^35.^4^3.^~1~^~A~^^^1^24.^41.^3^22.^46.^~2, 3~^~01/01/2013~ -~16360~^~304~^27.^4^0.^~1~^~A~^^^1^26.^27.^3^25.^27.^~2, 3~^~01/01/2013~ -~16360~^~305~^80.^4^2.^~1~^~A~^^^1^73.^87.^3^70.^89.^~2, 3~^~01/01/2013~ -~16360~^~306~^144.^4^11.^~1~^~A~^^^1^121.^175.^3^107.^180.^~2, 3~^~01/01/2013~ -~16360~^~307~^132.^5^17.^~8~^~LC~^^^^122.^130.^^^^^~01/01/2013~ -~16360~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~321~^9.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~417~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~01/01/2013~ -~16360~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~432~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~01/01/2013~ -~16360~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16361~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16361~^~268~^490.^0^^~4~^^^^^^^^^^^ -~16361~^~301~^26.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~304~^96.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~306~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~307~^255.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16361~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16361~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16361~^~417~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16361~^~432~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16361~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~301~^24.^28^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~304~^53.^29^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~305~^156.^28^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~306~^278.^29^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16363~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~321~^9.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~322~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16363~^~334~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~337~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~338~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~417~^208.^8^19.^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16363~^~432~^208.^8^19.^~1~^^^^^^^^^^^~04/01/2007~ -~16363~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16368~^~268~^490.^0^^~4~^^^^^^^^^^^ -~16368~^~301~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~305~^120.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16368~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~16368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16368~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16368~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16368~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~301~^19.^20^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~305~^180.^20^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~306~^369.^20^25.^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~321~^5.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~322~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16370~^~334~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~337~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~338~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~417~^181.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16370~^~432~^181.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16370~^~435~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~301~^17.^29^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~304~^43.^30^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~305~^111.^29^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~306~^508.^30^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16372~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~321~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~322~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16372~^~334~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~337~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~338~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~417~^83.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16372~^~432~^83.^8^6.^~1~^^^^^^^^^^^~04/01/2007~ -~16372~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16375~^~268~^527.^0^^~4~^^^^^^^^^^^ -~16375~^~301~^29.^21^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~304~^53.^21^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~305~^127.^21^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~306~^401.^21^21.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~307~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16375~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16375~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16375~^~417~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16375~^~432~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16375~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16377~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16377~^~301~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~305~^128.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~306~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~16377~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16377~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~16377~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16377~^~417~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16377~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16377~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16377~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16377~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16379~^~268~^490.^0^^~4~^^^^^^^^^^^ -~16379~^~301~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~304~^104.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~305~^150.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~306~^304.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~307~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16379~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16379~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16379~^~417~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16379~^~432~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16379~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16379~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~301~^27.^9^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~304~^48.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~305~^99.^9^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~306~^266.^9^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16381~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~321~^14.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~322~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16381~^~334~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~337~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~338~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~417~^159.^8^11.^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16381~^~432~^159.^8^11.^~1~^^^^^^^^^^^~04/01/2007~ -~16381~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16384~^~268~^439.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16384~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~305~^156.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~306~^231.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16384~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16384~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16384~^~321~^19.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~322~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16384~^~334~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~337~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~338~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~417~^94.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16384~^~432~^94.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16384~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16384~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~301~^14.^20^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~305~^99.^20^5.^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~306~^362.^20^27.^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16386~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~321~^4.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~322~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16386~^~334~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~337~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~338~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~417~^65.^13^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16386~^~432~^65.^13^14.^~1~^^^^^^^^^^^~04/01/2007~ -~16386~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16389~^~208~^599.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16389~^~268~^2506.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~301~^61.^4^3.^~1~^~A~^^^1^52.^67.^3^49.^71.^~2, 3~^~10/01/2011~ -~16389~^~304~^176.^4^3.^~1~^~A~^^^1^170.^186.^3^164.^187.^~2, 3~^~10/01/2011~ -~16389~^~305~^397.^4^5.^~1~^~A~^^^1^390.^414.^3^377.^415.^~2, 3~^~10/01/2011~ -~16389~^~306~^726.^4^6.^~1~^~A~^^^1^714.^737.^3^706.^744.^~2, 3~^~10/01/2011~ -~16389~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16389~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2011~ -~16389~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16389~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2011~ -~16389~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~16389~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~16389~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16389~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~16389~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~16389~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~16389~^~417~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^~2, 3~^~10/01/2011~ -~16389~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16389~^~432~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^^~10/01/2011~ -~16389~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16390~^~268~^2455.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~301~^58.^17^1.^~1~^~A~^^^1^34.^75.^9^54.^61.^~2, 3~^~04/01/2014~ -~16390~^~304~^178.^17^1.^~1~^~A~^^^1^162.^188.^10^174.^181.^~2, 3~^~04/01/2014~ -~16390~^~305~^363.^17^2.^~1~^~A~^^^1^331.^375.^15^358.^367.^~2, 3~^~04/01/2014~ -~16390~^~306~^634.^17^5.^~1~^~A~^^^1^603.^686.^10^622.^644.^~2, 3~^~04/01/2014~ -~16390~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~16390~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16390~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~16390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~417~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^~2, 3~^~04/01/2014~ -~16390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16390~^~432~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^^~04/01/2014~ -~16390~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16392~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16392~^~268~^2423.^0^^~4~^^^^^^^^^^^ -~16392~^~301~^100.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~304~^168.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~305~^387.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~306~^776.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16392~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16392~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16392~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16392~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16392~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16394~^~268~^2464.^0^^~4~^^^^^^^^^^^ -~16394~^~301~^54.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~304~^160.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~305~^319.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~306~^612.^4^74.^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16394~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16394~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16394~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16394~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16394~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~208~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16396~^~268~^2418.^0^^~4~^^^^^^^^^^^ -~16396~^~301~^86.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~304~^188.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~305~^506.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~306~^652.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16396~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16396~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16396~^~417~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16396~^~432~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16396~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16397~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16397~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16397~^~268~^2464.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~16397~^~301~^45.^11^2.^~6~^~JA~^^^2^41.^70.^3^38.^52.^~2, 3~^~03/01/2004~ -~16397~^~304~^160.^196^0.^~6~^~JA~^^^2^159.^204.^3^159.^159.^~2, 3~^~03/01/2004~ -~16397~^~305~^319.^196^0.^~6~^~JA~^^^2^317.^430.^3^317.^319.^~2, 3~^~03/01/2004~ -~16397~^~306~^745.^190^0.^~6~^~JA~^^^2^603.^747.^3^743.^745.^~2, 3~^~03/01/2004~ -~16397~^~307~^17.^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16397~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16397~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16397~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16397~^~321~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16397~^~322~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16397~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16397~^~334~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16397~^~337~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16397~^~338~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~ -~16397~^~417~^92.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16397~^~432~^92.^2^^~1~^^^^^^^^^^^~03/01/2006~ -~16397~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16397~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~638~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~05/01/2011~ -~16397~^~639~^15.^4^0.^~1~^~A~^^^1^14.^15.^3^14.^15.^~2, 3~^~05/01/2011~ -~16397~^~641~^77.^4^1.^~1~^~A~^^^1^73.^79.^3^73.^81.^~2, 3~^~05/01/2011~ -~16398~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16398~^~268~^2501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~301~^49.^18^0.^~1~^~A~^^^1^43.^55.^9^47.^50.^~2, 3~^~08/01/2014~ -~16398~^~304~^168.^18^1.^~1~^~A~^^^1^155.^182.^8^165.^170.^~2, 3~^~08/01/2014~ -~16398~^~305~^335.^18^1.^~1~^~A~^^^1^313.^357.^9^330.^339.^~2, 3~^~08/01/2014~ -~16398~^~306~^558.^18^2.^~1~^~A~^^^1^533.^592.^14^553.^563.^~2, 3~^~08/01/2014~ -~16398~^~307~^17.^0^^~4~^~O~^^^^^^^^^^~03/01/2014~ -~16398~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~16398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16398~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~16398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~417~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^~2, 3~^~08/01/2014~ -~16398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16398~^~432~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^^~08/01/2014~ -~16398~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16399~^~208~^608.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~268~^2542.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~301~^45.^4^2.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~304~^191.^4^2.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~305~^426.^4^6.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~306~^780.^4^10.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~307~^356.^4^1.^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16402~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16402~^~268~^506.^0^^~4~^^^^^^^^^^^ -~16402~^~301~^43.^8^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~304~^46.^8^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~305~^119.^8^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~306~^384.^8^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~318~^3.^8^0.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16402~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~16402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16402~^~417~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16402~^~432~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16402~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16403~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~268~^373.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~301~^29.^17^0.^~1~^~A~^^^1^24.^41.^7^27.^29.^~2, 3~^~08/01/2014~ -~16403~^~304~^35.^17^0.^~1~^~A~^^^1^29.^44.^8^34.^36.^~2, 3~^~08/01/2014~ -~16403~^~305~^92.^17^1.^~1~^~A~^^^1^80.^114.^9^88.^96.^~2, 3~^~08/01/2014~ -~16403~^~306~^319.^17^5.^~1~^~A~^^^1^249.^414.^8^306.^332.^~2, 3~^~08/01/2014~ -~16403~^~307~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~16403~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16403~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16403~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~417~^26.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~432~^26.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~16403~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16403~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16409~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16409~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16409~^~301~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~304~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~305~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~306~^515.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16409~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16409~^~321~^5.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~322~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16409~^~334~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~337~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~338~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~417~^54.^4^2.^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16409~^~432~^54.^4^2.^~1~^^^^^^^^^^^~05/01/2003~ -~16409~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16409~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16410~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16410~^~301~^138.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~304~^145.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~305~^363.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~306~^1470.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~307~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1996~ -~16410~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~16410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16410~^~417~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16410~^~432~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~435~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16410~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16420~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~268~^1373.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16420~^~301~^363.^5^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~304~^140.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~305~^839.^5^15.^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~306~^450.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~307~^900.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16420~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~16420~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16420~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16420~^~417~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16420~^~432~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16420~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16422~^~268~^1345.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16422~^~301~^178.^176^6.^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~304~^39.^155^1.^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~305~^776.^163^7.^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~306~^1590.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2003~ -~16422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~16422~^~321~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~322~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16422~^~334~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~337~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~338~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~417~^176.^112^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16422~^~432~^176.^112^3.^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~16422~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16424~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~301~^30.^6^0.^~1~^~A~^^^1^29.^31.^5^29.^31.^~2, 3~^~04/01/2013~ -~16424~^~304~^69.^6^0.^~1~^~A~^^^1^68.^70.^5^68.^70.^~2, 3~^~04/01/2013~ -~16424~^~305~^166.^6^0.^~1~^~A~^^^1^164.^168.^5^164.^167.^~2, 3~^~04/01/2013~ -~16424~^~306~^352.^6^4.^~1~^~A~^^^1^338.^368.^5^338.^364.^~2, 3~^~04/01/2013~ -~16424~^~307~^3598.^6^10.^~1~^~A~^^^1^3570.^3630.^5^3570.^3626.^~2, 3~^~04/01/2013~ -~16424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~16424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16424~^~417~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16424~^~432~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~268~^375.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~301~^11.^4^^~1~^~A~^^^1^9.^12.^^^^~2~^~04/01/2013~ -~16425~^~304~^34.^4^^~1~^~A~^^^1^31.^37.^^^^~2~^~04/01/2013~ -~16425~^~305~^89.^4^^~1~^~A~^^^1^86.^93.^^^^~2~^~04/01/2013~ -~16425~^~306~^3098.^4^^~1~^~A~^^^1^2590.^3350.^^^^~2~^~04/01/2013~ -~16425~^~307~^2890.^4^^~1~^~A~^^^1^2360.^3150.^^^^~2~^~04/01/2013~ -~16425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~16425~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~16425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~16425~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16425~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16426~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16426~^~268~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16426~^~301~^683.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~304~^58.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~305~^190.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~306~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~307~^14.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~318~^166.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~16426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16426~^~417~^29.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16426~^~432~^29.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~16426~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~16426~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~268~^317.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16427~^~301~^350.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~304~^30.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~305~^97.^3^14.^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~306~^121.^4^26.^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~307~^7.^4^3.^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~318~^85.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16427~^~417~^15.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16427~^~432~^15.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16427~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~208~^470.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16428~^~268~^1965.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16428~^~301~^2134.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~304~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~305~^483.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~306~^20.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~16428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16428~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~16428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16428~^~417~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16428~^~432~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~16428~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16429~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16429~^~301~^961.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~304~^95.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~305~^287.^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~306~^146.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16429~^~417~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16429~^~432~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~16429~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~268~^485.^0^^~4~^^^^^^^^^^^~09/01/2015~ -~16432~^~301~^1229.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~304~^58.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~305~^73.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~306~^75.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~307~^2873.^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16432~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16432~^~417~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16432~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16432~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16434~^~268~^494.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~16434~^~301~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~304~^98.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~318~^16.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16434~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16434~^~417~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16434~^~432~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16434~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16436~^~268~^615.^0^^~4~^^^^^^^^^^^~02/01/2010~ -~16436~^~301~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~305~^153.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~306~^280.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~307~^249.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~16436~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~16436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~16436~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~16436~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~16436~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~ -~17000~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~268~^561.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~307~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17000~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17001~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17001~^~268~^1117.^0^^~4~^^^^^^^^^^^ -~17001~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~305~^160.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~306~^230.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17001~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17001~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17001~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17001~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17001~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~17002~^~268~^1230.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17002~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~305~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17002~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17002~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17002~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17002~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17002~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17003~^~268~^561.^0^^~4~^^^^^^^^^^^ -~17003~^~301~^10.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~304~^26.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~305~^189.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~306~^280.^32^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~307~^66.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17003~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17003~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17003~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17003~^~601~^65.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17004~^~268~^862.^0^^~4~^^^^^^^^^^^ -~17004~^~301~^15.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~305~^210.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~306~^344.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~307~^76.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17004~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17004~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17004~^~417~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17004~^~432~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17004~^~601~^92.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~208~^665.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17005~^~268~^2782.^0^^~4~^^^^^^^^^^^ -~17005~^~301~^19.^30^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~304~^9.^30^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~305~^73.^14^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~306~^82.^30^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~307~^31.^30^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17005~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17005~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17005~^~417~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17005~^~432~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17005~^~601~^90.^14^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~268~^2452.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17006~^~301~^23.^14^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~304~^13.^14^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~305~^114.^14^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~306~^194.^14^10.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~307~^58.^14^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17006~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17006~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~417~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17006~^~432~^3.^7^0.^~1~^^^^^^^^^^^~12/01/2006~ -~17006~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17006~^~601~^114.^14^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17007~^~268~^841.^0^^~4~^^^^^^^^^^^ -~17007~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~306~^214.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17007~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17007~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17007~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17007~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17007~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~268~^1017.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17008~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~305~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~306~^257.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17008~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17008~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17008~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17008~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17008~^~601~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17009~^~268~^502.^0^^~4~^^^^^^^^^^^ -~17009~^~301~^9.^24^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~304~^25.^24^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~305~^187.^8^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~306~^237.^24^18.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~307~^79.^24^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17009~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17009~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17009~^~417~^22.^8^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17009~^~432~^22.^8^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17009~^~601~^69.^8^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17010~^~268~^782.^0^^~4~^^^^^^^^^^^ -~17010~^~301~^20.^8^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~304~^23.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~305~^175.^8^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~306~^267.^8^20.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~307~^74.^8^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17010~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17010~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17010~^~417~^19.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17010~^~432~^19.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17010~^~601~^104.^8^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17011~^~268~^962.^0^^~4~^^^^^^^^^^^ -~17011~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~306~^249.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17011~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17011~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17011~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17011~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17011~^~601~^69.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~268~^1079.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17012~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~305~^191.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17012~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17012~^~432~^20.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17012~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17012~^~601~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17013~^~268~^536.^0^^~4~^^^^^^^^^^^ -~17013~^~301~^6.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~305~^193.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~306~^289.^32^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~307~^62.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17013~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17013~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17013~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17013~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17013~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~268~^799.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17014~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~305~^206.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~306~^338.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~307~^68.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17014~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17014~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17014~^~432~^23.^16^1.^~1~^^^^^^^^^^^~12/01/2006~ -~17014~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17014~^~601~^89.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17015~^~268~^841.^0^^~4~^^^^^^^^^^^ -~17015~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~305~^178.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~306~^261.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17015~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17015~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17015~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17015~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17015~^~601~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17016~^~268~^941.^0^^~4~^^^^^^^^^^^ -~17016~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~306~^326.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~307~^65.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17016~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17016~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17016~^~417~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17016~^~432~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17016~^~601~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17017~^~268~^523.^0^^~4~^^^^^^^^^^^ -~17017~^~301~^6.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~305~^195.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~306~^290.^32^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~307~^61.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17017~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17017~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17017~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17017~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17017~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17018~^~268~^753.^0^^~4~^^^^^^^^^^^ -~17018~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~305~^208.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~306~^342.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~307~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17018~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17018~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17018~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17018~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17018~^~601~^87.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17019~^~268~^1138.^0^^~4~^^^^^^^^^^^ -~17019~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~305~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~306~^231.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17019~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17019~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17019~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17019~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17019~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17020~^~268~^1222.^0^^~4~^^^^^^^^^^^ -~17020~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~306~^301.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17020~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17020~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17020~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17020~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17020~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17021~^~268~^561.^0^^~4~^^^^^^^^^^^ -~17021~^~301~^7.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~304~^27.^32^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~305~^189.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~306~^284.^32^14.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~307~^64.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17021~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17021~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17021~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17021~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17021~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17022~^~268~^854.^0^^~4~^^^^^^^^^^^ -~17022~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~304~^25.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~305~^203.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~306~^333.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~307~^71.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17022~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17022~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17022~^~417~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17022~^~432~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17022~^~601~^92.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17023~^~268~^1297.^0^^~4~^^^^^^^^^^^ -~17023~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~305~^152.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~306~^214.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17023~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17023~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17023~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17023~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17023~^~601~^74.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~268~^1322.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17024~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~305~^196.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~307~^77.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17024~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17024~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17024~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17024~^~601~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~268~^1293.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17025~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~305~^180.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~306~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~307~^64.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17025~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17025~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17025~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17025~^~601~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17026~^~268~^598.^0^^~4~^^^^^^^^^^^ -~17026~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~305~^190.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~306~^276.^32^14.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~307~^68.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17026~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17026~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17026~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17026~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17026~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~268~^904.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17027~^~301~^19.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~304~^28.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~305~^226.^16^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~306~^376.^16^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~307~^84.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17027~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17027~^~432~^24.^16^1.^~1~^^^^^^^^^^^~12/01/2006~ -~17027~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17027~^~601~^95.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17028~^~268~^845.^0^^~4~^^^^^^^^^^^ -~17028~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~305~^206.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~306~^267.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17028~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17028~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17028~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17028~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17028~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17029~^~268~^1556.^0^^~4~^^^^^^^^^^^ -~17029~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~305~^137.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~306~^190.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17029~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17029~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17029~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17029~^~432~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17029~^~601~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~268~^1510.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17030~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~305~^178.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~306~^270.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17030~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17030~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17030~^~432~^14.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17030~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17030~^~601~^99.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17031~^~268~^1502.^0^^~4~^^^^^^^^^^^ -~17031~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~305~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~306~^271.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~307~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17031~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17031~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17031~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17031~^~432~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17031~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17032~^~268~^707.^0^^~4~^^^^^^^^^^^ -~17032~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~304~^25.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~305~^181.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~306~^265.^32^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~307~^72.^32^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17032~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17032~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17032~^~417~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17032~^~432~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17032~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~268~^983.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17033~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~305~^213.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~307~^85.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17033~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17033~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17033~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17033~^~601~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17034~^~268~^971.^0^^~4~^^^^^^^^^^^ -~17034~^~301~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~304~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~305~^195.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~306~^315.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~307~^81.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17034~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17034~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17034~^~417~^22.^15^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17034~^~432~^22.^15^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17034~^~601~^88.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~268~^1105.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17035~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~305~^158.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~306~^230.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~307~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17035~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17035~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17035~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17035~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17035~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17036~^~268~^1439.^0^^~4~^^^^^^^^^^^ -~17036~^~301~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~305~^186.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~306~^248.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~307~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17036~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17036~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17036~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17036~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17036~^~601~^116.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17037~^~268~^1163.^0^^~4~^^^^^^^^^^^ -~17037~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~306~^301.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~307~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17037~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17037~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17037~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17037~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17037~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~268~^1155.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17038~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~305~^184.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~306~^251.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17038~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17038~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17038~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17038~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~268~^602.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17039~^~301~^15.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~304~^24.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~305~^184.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~306~^274.^32^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~307~^70.^32^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17039~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17039~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17039~^~432~^23.^16^1.^~1~^^^^^^^^^^^~12/01/2006~ -~17039~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17039~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17040~^~268~^1184.^0^^~4~^^^^^^^^^^^ -~17040~^~301~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~305~^204.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~306~^261.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17040~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17040~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17040~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17040~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17040~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~268~^879.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17041~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~306~^324.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17041~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17041~^~432~^23.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17041~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17041~^~601~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~268~^854.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17042~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~305~^200.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~306~^265.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17042~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17042~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17042~^~432~^25.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17042~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17042~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17043~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~17043~^~301~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~305~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~306~^238.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~307~^60.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17043~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17043~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17043~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17043~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17043~^~601~^71.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17044~^~268~^1448.^0^^~4~^^^^^^^^^^^ -~17044~^~301~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~305~^206.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17044~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17044~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17044~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17044~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17044~^~601~^120.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17045~^~268~^1176.^0^^~4~^^^^^^^^^^^ -~17045~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~305~^197.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~306~^309.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~307~^77.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17045~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17045~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17045~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17045~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17045~^~601~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17046~^~268~^1167.^0^^~4~^^^^^^^^^^^ -~17046~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~306~^259.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~307~^65.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17046~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17046~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17046~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17046~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17046~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17047~^~268~^552.^0^^~4~^^^^^^^^^^^ -~17047~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~304~^25.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~305~^186.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~306~^287.^32^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~307~^69.^32^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17047~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17047~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17047~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17047~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17047~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17048~^~268~^1167.^0^^~4~^^^^^^^^^^^ -~17048~^~301~^26.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~304~^29.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~305~^232.^16^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~306~^338.^16^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~307~^76.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17048~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17048~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17048~^~417~^22.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17048~^~432~^22.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17048~^~601~^121.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17049~^~268~^837.^0^^~4~^^^^^^^^^^^ -~17049~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~304~^30.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~305~^219.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~306~^340.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17049~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17049~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17049~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17049~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17049~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17050~^~268~^803.^0^^~4~^^^^^^^^^^^ -~17050~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~305~^202.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~306~^277.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17050~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17050~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17050~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17050~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17050~^~601~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17051~^~268~^1084.^0^^~4~^^^^^^^^^^^ -~17051~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~305~^160.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~306~^229.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~307~^62.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17051~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17051~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17051~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17051~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17051~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17052~^~268~^1443.^0^^~4~^^^^^^^^^^^ -~17052~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~305~^185.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~306~^243.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~307~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17052~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17052~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17052~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17052~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17052~^~601~^116.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~268~^1163.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17053~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~306~^336.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17053~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17053~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17053~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17053~^~601~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17054~^~268~^1176.^0^^~4~^^^^^^^^^^^ -~17054~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~306~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17054~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17054~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17054~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17054~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17054~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17055~^~268~^632.^0^^~4~^^^^^^^^^^^ -~17055~^~301~^16.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~304~^24.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~305~^183.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~306~^268.^32^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~307~^70.^32^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17055~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17055~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17055~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17055~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17055~^~601~^67.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17056~^~268~^1205.^0^^~4~^^^^^^^^^^^ -~17056~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~305~^202.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~306~^254.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17056~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17056~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17056~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17056~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17056~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17057~^~268~^883.^0^^~4~^^^^^^^^^^^ -~17057~^~301~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~305~^216.^16^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~306~^368.^16^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~307~^88.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17057~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17057~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17057~^~417~^21.^15^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17057~^~432~^21.^15^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17057~^~601~^91.^16^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17058~^~268~^874.^0^^~4~^^^^^^^^^^^ -~17058~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~305~^199.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~306~^258.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17058~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17058~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17058~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17058~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17058~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17059~^~268~^561.^0^^~4~^^^^^^^^^^^ -~17059~^~301~^9.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~304~^26.^32^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~305~^189.^16^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~306~^284.^32^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~307~^65.^32^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17059~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17059~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17059~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17059~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17059~^~601~^65.^16^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~268~^933.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17060~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~305~^205.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~306~^260.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~307~^70.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17060~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17060~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17060~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17060~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17061~^~268~^778.^0^^~4~^^^^^^^^^^^ -~17061~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~305~^224.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~306~^335.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17061~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17061~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17061~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17061~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17061~^~601~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17062~^~268~^1159.^0^^~4~^^^^^^^^^^^ -~17062~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~304~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~305~^168.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~306~^136.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~307~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17062~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17062~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17062~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17062~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17062~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17063~^~268~^1276.^0^^~4~^^^^^^^^^^^ -~17063~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~306~^162.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~307~^46.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17063~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17063~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17063~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17063~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17063~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17064~^~268~^536.^0^^~4~^^^^^^^^^^^ -~17064~^~301~^8.^9^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~304~^19.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~305~^202.^9^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~306~^171.^9^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~307~^46.^9^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17064~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17064~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17064~^~417~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17064~^~432~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17064~^~601~^74.^9^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17065~^~268~^862.^0^^~4~^^^^^^^^^^^ -~17065~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~305~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~306~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~307~^50.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17065~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17065~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17065~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17065~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17065~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~208~^640.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17066~^~268~^2678.^0^^~4~^^^^^^^^^^^ -~17066~^~301~^23.^9^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~304~^6.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~305~^86.^9^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~306~^51.^9^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~307~^22.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17066~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17066~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17066~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17066~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17066~^~601~^87.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17067~^~268~^2452.^0^^~4~^^^^^^^^^^^ -~17067~^~301~^27.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~304~^11.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~305~^135.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~306~^87.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~307~^35.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17067~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17067~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17067~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17067~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17067~^~601~^109.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17068~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17068~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17068~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~305~^157.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~306~^286.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~268~^1073.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~306~^250.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~318~^27.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17070~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/1989~ -~17070~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17070~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~305~^173.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17071~^~601~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17072~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17072~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17072~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~306~^315.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~318~^29.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17073~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17073~^~268~^1029.^0^^~4~^^^^^^^^^^^ -~17073~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~306~^167.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~307~^43.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17073~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17073~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17073~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17073~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17073~^~601~^101.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17074~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~268~^528.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~305~^198.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~306~^350.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~307~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17074~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17075~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17075~^~268~^757.^0^^~4~^^^^^^^^^^^ -~17075~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~305~^234.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~306~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~307~^45.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17075~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17075~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17075~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17075~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17075~^~601~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17076~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17076~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17076~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~305~^149.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~306~^262.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~318~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17077~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~268~^1318.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~17077~^~301~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~305~^208.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~306~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~307~^49.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17077~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17077~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~17077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17077~^~432~^1.^0^^~1~^^^^^^^^^^^~12/01/2006~ -~17077~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17077~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17078~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17078~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17079~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17079~^~268~^833.^0^^~4~^^^^^^^^^^^ -~17079~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~305~^240.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~306~^189.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~307~^55.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17079~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17079~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17079~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17079~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17079~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17080~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17080~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~306~^277.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17081~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17081~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~268~^1058.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17081~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~306~^304.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~318~^33.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~17081~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17081~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17082~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~268~^670.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~305~^185.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17082~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17083~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~17083~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17083~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17084~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17084~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~268~^1136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17084~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~306~^261.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~318~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17085~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17085~^~268~^1494.^0^^~4~^^^^^^^^^^^ -~17085~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~305~^196.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~306~^147.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~307~^51.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17085~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17085~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17085~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17085~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17085~^~601~^123.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17086~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~268~^643.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~306~^307.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17086~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17087~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17087~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~17087~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~306~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17087~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17087~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17087~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17087~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17087~^~601~^127.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17088~^~268~^602.^0^^~4~^^^^^^^^^^^ -~17088~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~305~^203.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~306~^315.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17088~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17088~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17088~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17088~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17088~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~268~^967.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17089~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~305~^239.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~306~^325.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~307~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17089~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17089~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17089~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17089~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17089~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17090~^~268~^469.^0^^~4~^^^^^^^^^^^ -~17090~^~301~^15.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~304~^25.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~305~^211.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~306~^328.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~307~^86.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17090~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17090~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17090~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17090~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17090~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~268~^820.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17091~^~301~^24.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~305~^250.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~306~^338.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~307~^89.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17091~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17091~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~417~^16.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17091~^~432~^16.^12^2.^~1~^^^^^^^^^^^~02/01/2009~ -~17091~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17091~^~601~^118.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~208~^638.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17092~^~268~^2669.^0^^~4~^^^^^^^^^^^ -~17092~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~304~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~305~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~306~^107.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~307~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17092~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17092~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17092~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17092~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17092~^~601~^73.^5^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~208~^642.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17093~^~268~^2686.^0^^~4~^^^^^^^^^^^ -~17093~^~301~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~304~^10.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~305~^116.^8^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~306~^173.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17093~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17093~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17093~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17093~^~432~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17093~^~601~^73.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~17094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~17094~^~268~^490.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17094~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~306~^367.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~307~^63.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17094~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17094~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17094~^~432~^14.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17094~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17094~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~268~^883.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17095~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~305~^249.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17095~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17095~^~432~^18.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17095~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17095~^~601~^134.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~268~^994.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17096~^~301~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~306~^371.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~307~^454.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~318~^34.^0^^~1~^^^^^^^^^^^~12/01/2005~ -~17096~^~319~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17096~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17096~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17096~^~417~^27.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~17096~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~17096~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17096~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~636~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~268~^883.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17097~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~305~^279.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~306~^425.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17097~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17097~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17097~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17097~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17097~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17097~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17097~^~601~^105.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~268~^669.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17098~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~305~^234.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~306~^389.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17098~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17098~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17098~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17098~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17098~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17099~^~268~^448.^0^^~4~^^^^^^^^^^^ -~17099~^~301~^5.^11^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~304~^27.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~305~^223.^12^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~306~^372.^12^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~307~^64.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17099~^~319~^0.^0^^~4~^^^^^^^^^^^~08/01/2002~ -~17099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~17099~^~417~^14.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17099~^~432~^14.^12^3.^~1~^^^^^^^^^^^~08/01/2002~ -~17099~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~17099~^~601~^78.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17100~^~268~^849.^0^^~4~^^^^^^^^^^^ -~17100~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~304~^30.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~305~^252.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~306~^387.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17100~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17100~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17100~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17100~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17100~^~601~^135.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17101~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17101~^~301~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~304~^32.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~305~^258.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~307~^455.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~318~^34.^0^^~1~^^^^^^^^^^^~12/01/2005~ -~17101~^~319~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17101~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17101~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17101~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~417~^28.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~ -~17101~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~17101~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17101~^~601~^113.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~636~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17102~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~268~^766.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17102~^~301~^7.^11^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~304~^32.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~305~^290.^12^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~306~^442.^12^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~307~^77.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17102~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17102~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17102~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17102~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~417~^16.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17102~^~432~^16.^12^2.^~1~^^^^^^^^^^^~02/01/2009~ -~17102~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17102~^~601~^107.^22^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17103~^~268~^628.^0^^~4~^^^^^^^^^^^ -~17103~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~305~^236.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~306~^393.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17103~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17103~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17103~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17103~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17103~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17104~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~17104~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~17104~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~304~^43.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~306~^241.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~307~^98.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~17104~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~324~^69.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17104~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17105~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~268~^1188.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17105~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~306~^280.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~307~^80.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17105~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17105~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17105~^~432~^14.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17105~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17105~^~601~^118.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~268~^908.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17106~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~305~^212.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~306~^325.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~307~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17106~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17106~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17106~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17106~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17106~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17107~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~301~^11.^6^^~1~^~A~^^^1^8.^13.^^^^~2~^~04/01/2014~ -~17107~^~304~^47.^6^^~1~^~A~^^^1^33.^98.^^^^~2~^~04/01/2014~ -~17107~^~305~^237.^6^^~1~^~A~^^^1^200.^306.^^^^~2~^~04/01/2014~ -~17107~^~306~^260.^6^^~1~^~A~^^^1^234.^302.^^^^~2~^~04/01/2014~ -~17107~^~307~^99.^6^^~1~^~A~^^^1^89.^114.^^^^~2~^~04/01/2014~ -~17107~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17107~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~06/01/2002~ -~17107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~324~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17107~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17107~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17107~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~601~^55.^6^^~1~^~A~^^^1^49.^58.^^^^~2~^~04/01/2014~ -~17108~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~268~^946.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17108~^~301~^32.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~304~^27.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~305~^237.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~306~^297.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~307~^84.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17108~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17108~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17108~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~417~^15.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17108~^~432~^15.^12^2.^~1~^^^^^^^^^^^~02/01/2009~ -~17108~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17108~^~601~^125.^22^10.^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~268~^732.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17109~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~305~^222.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~306~^340.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~307~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17109~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17109~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17109~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17109~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17109~^~601~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17110~^~268~^678.^0^^~4~^^^^^^^^^^^ -~17110~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~305~^184.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~306~^290.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~307~^89.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17110~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17110~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17110~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17110~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17110~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~268~^1050.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17111~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~305~^210.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17111~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17111~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17111~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17111~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17111~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17111~^~601~^139.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17112~^~268~^954.^0^^~4~^^^^^^^^^^^ -~17112~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~305~^197.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~306~^295.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~307~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17112~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17112~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17112~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17112~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17112~^~601~^110.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17113~^~268~^502.^0^^~4~^^^^^^^^^^^ -~17113~^~301~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~304~^23.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~305~^194.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~306~^306.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~307~^95.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17113~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17113~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17113~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17113~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17113~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~268~^912.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17114~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~306~^318.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~307~^99.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17114~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17114~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17114~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17114~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17114~^~601~^144.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17115~^~268~^741.^0^^~4~^^^^^^^^^^^ -~17115~^~301~^12.^11^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~304~^24.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~305~^207.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~306~^311.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~307~^97.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17115~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17115~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17115~^~417~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17115~^~432~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17115~^~601~^115.^22^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~268~^544.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17116~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~305~^203.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~306~^302.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~307~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17116~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17116~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17116~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17116~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17116~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17116~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~268~^954.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17117~^~301~^35.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~306~^309.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17117~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17117~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17117~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17117~^~601~^126.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17118~^~268~^770.^0^^~4~^^^^^^^^^^^ -~17118~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~306~^322.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~307~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17118~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17118~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17118~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17118~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17118~^~601~^113.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17119~^~268~^469.^0^^~4~^^^^^^^^^^^ -~17119~^~301~^22.^18^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~304~^24.^18^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~305~^208.^18^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~306~^311.^18^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~307~^92.^18^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17119~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17119~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17119~^~417~^11.^18^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17119~^~432~^11.^18^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17119~^~601~^86.^18^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17120~^~268~^833.^0^^~4~^^^^^^^^^^^ -~17120~^~301~^37.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~305~^260.^12^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~306~^319.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~307~^97.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17120~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17120~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17120~^~417~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17120~^~432~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17120~^~601~^130.^22^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17121~^~268~^711.^0^^~4~^^^^^^^^^^^ -~17121~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~307~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17121~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17121~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17121~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17121~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17121~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~268~^552.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17122~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~305~^208.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17122~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17122~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17122~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17122~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17122~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17123~^~268~^987.^0^^~4~^^^^^^^^^^^ -~17123~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~305~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~306~^333.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~307~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17123~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17123~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17123~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17123~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17123~^~601~^148.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17124~^~268~^766.^0^^~4~^^^^^^^^^^^ -~17124~^~301~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~305~^221.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~306~^348.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~307~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17124~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17124~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17124~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17124~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17124~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17125~^~268~^439.^0^^~4~^^^^^^^^^^^ -~17125~^~301~^22.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~304~^26.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~305~^215.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~306~^339.^12^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~307~^86.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17125~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17125~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17125~^~417~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17125~^~432~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17125~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17126~^~268~^841.^0^^~4~^^^^^^^^^^^ -~17126~^~301~^30.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~304~^30.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~305~^276.^12^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~306~^347.^12^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~307~^90.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17126~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17126~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17126~^~417~^19.^11^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17126~^~432~^19.^11^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17126~^~601~^155.^12^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17127~^~268~^686.^0^^~4~^^^^^^^^^^^ -~17127~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~306~^356.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~307~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17127~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17127~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17127~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17127~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17127~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17128~^~208~^148.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~268~^620.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~301~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/1989~ -~17128~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~306~^198.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17128~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~324~^60.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17128~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17129~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~268~^941.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17129~^~301~^38.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~305~^244.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~306~^297.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~307~^98.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17129~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17129~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17129~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17129~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17129~^~601~^153.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17130~^~268~^778.^0^^~4~^^^^^^^^^^^ -~17130~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~305~^212.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~307~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17130~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17130~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17130~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17130~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17130~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17131~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~301~^23.^6^^~1~^~A~^^^1^11.^47.^^^^~2~^~04/01/1989~ -~17131~^~304~^33.^6^^~1~^~A~^^^1^28.^41.^^^^~2~^~04/01/2014~ -~17131~^~305~^209.^6^^~1~^~A~^^^1^165.^288.^^^^~2~^~04/01/2014~ -~17131~^~306~^203.^6^^~1~^~A~^^^1^156.^288.^^^^~2~^~04/01/2014~ -~17131~^~307~^92.^6^^~1~^~A~^^^1^86.^102.^^^^~2~^~04/01/2014~ -~17131~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17131~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~06/01/2002~ -~17131~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~324~^47.^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17131~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17131~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17131~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~601~^60.^6^^~1~^~A~^^^1^53.^67.^^^^~2~^~04/01/2014~ -~17132~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~268~^828.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17132~^~301~^40.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~305~^252.^12^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~306~^305.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~307~^101.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17132~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17132~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~417~^15.^12^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17132~^~432~^15.^12^3.^~1~^^^^^^^^^^^~02/01/2009~ -~17132~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17132~^~601~^158.^12^13.^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17133~^~268~^715.^0^^~4~^^^^^^^^^^^ -~17133~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~307~^102.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17133~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17133~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17133~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17133~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17133~^~601~^119.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~268~^636.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17134~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~305~^209.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~306~^329.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17134~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17134~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17134~^~432~^13.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17134~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17134~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17135~^~268~^1054.^0^^~4~^^^^^^^^^^^ -~17135~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~305~^243.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~306~^321.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17135~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17135~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17135~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17135~^~432~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17135~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~268~^845.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17136~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~305~^223.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~306~^351.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17136~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17136~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17136~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17136~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17136~^~601~^102.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17137~^~268~^460.^0^^~4~^^^^^^^^^^^ -~17137~^~301~^11.^12^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~304~^26.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~305~^220.^12^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~306~^348.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~307~^80.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17137~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17137~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17137~^~417~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17137~^~432~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17137~^~601~^79.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17138~^~268~^854.^0^^~4~^^^^^^^^^^^ -~17138~^~301~^19.^11^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~304~^29.^11^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~305~^259.^11^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~306~^339.^11^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~307~^81.^11^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17138~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17138~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17138~^~417~^16.^11^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17138~^~432~^16.^11^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17138~^~601~^113.^18^9.^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17139~^~268~^703.^0^^~4~^^^^^^^^^^^ -~17139~^~301~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~305~^231.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~306~^365.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~307~^85.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17139~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17139~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17139~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17139~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17139~^~601~^104.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17140~^~268~^456.^0^^~4~^^^^^^^^^^^ -~17140~^~301~^17.^12^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~304~^25.^12^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~305~^213.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~306~^331.^12^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~307~^83.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17140~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17140~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17140~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17140~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17140~^~601~^84.^12^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17141~^~268~^787.^0^^~4~^^^^^^^^^^^ -~17141~^~301~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~305~^239.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~306~^342.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~307~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17141~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17141~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17141~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17141~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17141~^~601~^145.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17142~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~301~^12.^6^^~1~^~A~^^^1^6.^20.^^^^~2~^~04/01/2014~ -~17142~^~304~^31.^6^^~1~^~A~^^^1^23.^38.^^^^~2~^~04/01/2014~ -~17142~^~305~^197.^6^^~1~^~A~^^^1^133.^258.^^^^~2~^~04/01/2014~ -~17142~^~306~^198.^6^^~1~^~A~^^^1^135.^264.^^^^~2~^~04/01/2014~ -~17142~^~307~^103.^6^^~1~^~A~^^^1^73.^120.^^^^~2~^~04/01/2014~ -~17142~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17142~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17142~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17142~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~324~^51.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17142~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17142~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17142~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~601~^49.^6^^~1~^~A~^^^1^44.^53.^^^^~2~^~04/01/2014~ -~17143~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~268~^720.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17143~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~306~^337.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~318~^0.^0^^~7~^^^^^^^^^^^ -~17143~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17143~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17143~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17143~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17143~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17143~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17143~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17144~^~268~^477.^0^^~4~^^^^^^^^^^^ -~17144~^~301~^3.^22^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~304~^27.^22^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~305~^188.^22^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~306~^353.^22^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~307~^51.^22^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17144~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17144~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17144~^~601~^95.^36^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17145~^~268~^628.^0^^~4~^^^^^^^^^^^ -~17145~^~301~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~305~^210.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~306~^372.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~307~^54.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17145~^~417~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~ -~17145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~17145~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2002~ -~17145~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~17145~^~601~^126.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17146~^~268~^674.^0^^~4~^^^^^^^^^^^ -~17146~^~301~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~305~^151.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17146~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17146~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17147~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~268~^1084.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17147~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~304~^23.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~306~^263.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~307~^71.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17147~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17147~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17147~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17147~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17147~^~601~^98.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17148~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~268~^751.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17148~^~301~^14.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~304~^23.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~305~^213.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~306~^353.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~307~^76.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~17148~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~320~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~417~^16.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~431~^0.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~432~^16.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~435~^16.^0^^~4~^~NC~^~17331~^^^^^^^^^~02/01/2009~ -~17148~^~601~^71.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~268~^611.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~301~^11.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~304~^21.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~305~^194.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~306~^328.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~307~^70.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~17149~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~17149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~417~^12.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~431~^0.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~432~^12.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~435~^12.^0^^~4~^~NC~^~17330~^^^^^^^^^~02/01/2009~ -~17149~^~601~^55.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2008~ -~17150~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17150~^~268~^611.^0^^~4~^^^^^^^^^^^ -~17150~^~301~^15.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~304~^25.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~305~^237.^3^26.^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~306~^348.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~307~^51.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17150~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17150~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17151~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~268~^887.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17151~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~305~^292.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~306~^403.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17151~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17151~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17151~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17151~^~601~^117.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17152~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17152~^~268~^598.^0^^~4~^^^^^^^^^^^ -~17152~^~301~^18.^4^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~305~^224.^5^15.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~306~^436.^5^7.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~307~^78.^5^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17152~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17152~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17152~^~417~^15.^3^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17152~^~432~^15.^3^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17152~^~601~^44.^7^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17153~^~268~^787.^0^^~4~^^^^^^^^^^^ -~17153~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~306~^459.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17153~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17153~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17153~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17153~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17153~^~601~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17154~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~268~^2130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~318~^141.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17154~^~319~^42.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17154~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17155~^~208~^201.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~268~^841.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17155~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17155~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17156~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17156~^~268~^456.^0^^~4~^^^^^^^^^^^ -~17156~^~301~^6.^23^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~304~^25.^30^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~305~^187.^30^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~306~^343.^30^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~307~^54.^30^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17156~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17156~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17156~^~601~^62.^50^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17157~^~268~^598.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17157~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~305~^209.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~306~^361.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17157~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17157~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17157~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17157~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17158~^~268~^510.^0^^~4~^^^^^^^^^^^ -~17158~^~301~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~305~^120.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17158~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17158~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17159~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~268~^669.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17159~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~304~^27.^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~305~^134.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~306~^396.^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~307~^60.^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17159~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17159~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17159~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~417~^6.^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17159~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17159~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17159~^~601~^77.^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17160~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17160~^~268~^414.^0^^~4~^^^^^^^^^^^ -~17160~^~301~^12.^147^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~304~^32.^143^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~305~^197.^137^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~306~^297.^128^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~307~^53.^128^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17160~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17160~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17160~^~417~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17160~^~432~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17160~^~601~^46.^5^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17161~^~268~^548.^0^^~4~^^^^^^^^^^^ -~17161~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~304~^33.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17161~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17161~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17161~^~417~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17161~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17161~^~601~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17162~^~268~^531.^0^^~4~^^^^^^^^^^^ -~17162~^~301~^17.^11^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~304~^26.^9^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~305~^208.^8^21.^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~306~^295.^10^22.^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~307~^57.^9^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17162~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17162~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17162~^~417~^4.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17162~^~432~^4.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17162~^~601~^83.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~268~^699.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17163~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~305~^233.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~307~^60.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17163~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17163~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17163~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17163~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~268~^502.^0^^~4~^^^^^^^^^^^ -~17164~^~301~^5.^20^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~304~^23.^14^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~305~^202.^19^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~306~^318.^19^14.^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~307~^51.^19^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17164~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17164~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~417~^4.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17164~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~17164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17164~^~601~^85.^43^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17165~^~268~^661.^0^^~4~^^^^^^^^^^^ -~17165~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~306~^335.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~307~^54.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17165~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17165~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17165~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17166~^~268~^464.^0^^~4~^^^^^^^^^^^ -~17166~^~301~^4.^21^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~304~^23.^21^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~305~^161.^21^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~306~^312.^21^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~307~^58.^21^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17166~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17166~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17166~^~601~^55.^29^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17167~^~268~^611.^0^^~4~^^^^^^^^^^^ -~17167~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~305~^180.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~306~^328.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~307~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17167~^~417~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~ -~17167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~17167~^~432~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~ -~17167~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17167~^~601~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17168~^~268~^456.^0^^~4~^^^^^^^^^^^ -~17168~^~301~^13.^14^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~305~^180.^14^11.^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~306~^385.^7^8.^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~307~^82.^7^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17168~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17168~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17168~^~417~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17168~^~432~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17168~^~601~^57.^7^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17169~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~304~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~ -~17169~^~305~^201.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~306~^405.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~307~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17169~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17169~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17169~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17169~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17169~^~601~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17170~^~268~^556.^0^^~4~^^^^^^^^^^^ -~17170~^~301~^6.^25^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~304~^24.^46^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~305~^221.^23^9.^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~306~^360.^45^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~307~^53.^36^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17170~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17170~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17170~^~601~^52.^13^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17171~^~268~^732.^0^^~4~^^^^^^^^^^^ -~17171~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~305~^247.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~306~^379.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~307~^55.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17171~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17171~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17171~^~601~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17172~^~268~^427.^0^^~4~^^^^^^^^^^^ -~17172~^~301~^5.^29^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~304~^23.^27^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~305~^158.^30^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~306~^317.^27^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~307~^65.^27^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17172~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17172~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17172~^~601~^59.^33^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~268~^561.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17173~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~305~^176.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~306~^334.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~307~^69.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17173~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~417~^4.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17173~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17173~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17173~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17174~^~268~^678.^0^^~4~^^^^^^^^^^^ -~17174~^~301~^25.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~305~^220.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~306~^276.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~307~^82.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17174~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17174~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17175~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17175~^~268~^979.^0^^~4~^^^^^^^^^^^ -~17175~^~301~^36.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~305~^271.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~306~^320.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17175~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17175~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17175~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17175~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17175~^~601~^121.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~268~^925.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17176~^~301~^17.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~304~^34.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~305~^278.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~306~^438.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~307~^58.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~17176~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17176~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~417~^10.^0^^~4~^^^^^^^^^^^~03/01/1992~ -~17176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17176~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17176~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17176~^~601~^129.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17177~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17177~^~268~^569.^0^^~4~^^^^^^^^^^^ -~17177~^~301~^13.^23^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~304~^19.^26^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~305~^213.^3^12.^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~306~^330.^3^25.^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~307~^41.^21^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17177~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17177~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17177~^~417~^8.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17177~^~432~^8.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17177~^~601~^57.^77^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17178~^~268~^824.^0^^~4~^^^^^^^^^^^ -~17178~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~305~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~307~^47.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17178~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17178~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17178~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17178~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17178~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~268~^862.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17179~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~306~^300.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~307~^37.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17179~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17179~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~417~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17179~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~17179~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17179~^~601~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17180~^~268~^477.^0^^~4~^^^^^^^^^^^ -~17180~^~301~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~304~^29.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~305~^226.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~306~^378.^98^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~307~^50.^98^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17180~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17180~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17180~^~601~^81.^40^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17181~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~305~^240.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~306~^343.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~307~^45.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17181~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~417~^8.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17181~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17181~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17181~^~601~^123.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~17182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~268~^1067.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17182~^~301~^14.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~304~^30.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~305~^261.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~306~^398.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~307~^79.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17182~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17182~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17182~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17182~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~417~^11.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17182~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17182~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17182~^~601~^97.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17183~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17183~^~268~^502.^0^^~4~^^^^^^^^^^^ -~17183~^~301~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~305~^172.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~306~^304.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~307~^103.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17183~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17183~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17183~^~601~^83.^15^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17184~^~301~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~305~^211.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~306~^352.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~307~^119.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17184~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17184~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~17184~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17184~^~601~^121.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17185~^~268~^510.^0^^~4~^^^^^^^^^^^ -~17185~^~301~^9.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~304~^12.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~305~^270.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~306~^296.^5^25.^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~307~^112.^6^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17185~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17185~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17185~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17185~^~601~^1352.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17186~^~268~^607.^0^^~4~^^^^^^^^^^^ -~17186~^~301~^12.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~304~^14.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~305~^337.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~306~^205.^3^39.^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~307~^134.^3^39.^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~318~^0.^1^^~4~^^^^^^^^^^^~04/01/1989~ -~17186~^~319~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~ -~17186~^~320~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~ -~17186~^~417~^5.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17186~^~432~^5.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17186~^~601~^2043.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17187~^~268~^1142.^0^^~4~^^^^^^^^^^^ -~17187~^~301~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~305~^495.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~306~^358.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~307~^157.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~318~^0.^1^^~4~^^^^^^^^^^^~04/01/1989~ -~17187~^~319~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~ -~17187~^~320~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~ -~17187~^~417~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17187~^~432~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17187~^~601~^2504.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17188~^~268~^494.^0^^~4~^^^^^^^^^^^ -~17188~^~301~^10.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~304~^14.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~305~^274.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~306~^315.^6^22.^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~307~^127.^6^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~318~^0.^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17188~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17188~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17188~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17188~^~601~^1590.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17189~^~268~^569.^0^^~4~^^^^^^^^^^^ -~17189~^~301~^16.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~305~^385.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~306~^214.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~307~^156.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17189~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17189~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17189~^~417~^3.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17189~^~432~^3.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17189~^~601~^3100.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17190~^~268~^891.^0^^~4~^^^^^^^^^^^ -~17190~^~301~^10.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~304~^18.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~305~^434.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~306~^472.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~307~^176.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17190~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17190~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17190~^~417~^6.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17190~^~432~^6.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17190~^~601~^2120.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17191~^~268~^510.^0^^~4~^^^^^^^^^^^ -~17191~^~301~^6.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~304~^17.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~305~^175.^6^9.^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~306~^316.^87^3.^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~307~^89.^83^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17191~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17191~^~417~^2.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17191~^~432~^2.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17191~^~601~^135.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17192~^~268~^774.^0^^~4~^^^^^^^^^^^ -~17192~^~301~^14.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~305~^254.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~306~^188.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~307~^63.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17192~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17192~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17192~^~417~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17192~^~432~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17192~^~601~^249.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17193~^~268~^460.^0^^~4~^^^^^^^^^^^ -~17193~^~301~^5.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~304~^18.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~305~^211.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~306~^261.^3^35.^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~307~^77.^3^16.^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17193~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17193~^~417~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17193~^~432~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17193~^~601~^104.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17194~^~268~^778.^0^^~4~^^^^^^^^^^^ -~17194~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~306~^199.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17194~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17194~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~17194~^~417~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17194~^~432~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17194~^~601~^176.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17195~^~268~^406.^0^^~4~^^^^^^^^^^^ -~17195~^~301~^13.^8^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~304~^17.^7^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~305~^246.^6^6.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~306~^277.^77^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~307~^156.^75^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~318~^316.^18^23.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~319~^95.^18^7.^~1~^^^^^^^^^^^~06/01/2002~ -~17195~^~320~^95.^18^7.^~1~^^^^^^^^^^^~06/01/2002~ -~17195~^~417~^28.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17195~^~432~^28.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17195~^~601~^337.^8^24.^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17196~^~268~^573.^0^^~4~^^^^^^^^^^^ -~17196~^~301~^18.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~304~^20.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~305~^290.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~306~^178.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~307~^151.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~318~^455.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~319~^137.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~17196~^~320~^137.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~17196~^~417~^81.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17196~^~432~^81.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17196~^~601~^565.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17197~^~268~^414.^0^^~4~^^^^^^^^^^^ -~17197~^~301~^11.^4^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~305~^241.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~306~^272.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~307~^178.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~318~^308.^5^50.^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~319~^92.^5^15.^~1~^^^^^^^^^^^~06/01/2002~ -~17197~^~320~^92.^5^15.^~1~^^^^^^^^^^^~06/01/2002~ -~17197~^~417~^21.^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17197~^~432~^21.^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17197~^~601~^364.^3^46.^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17198~^~268~^682.^0^^~4~^^^^^^^^^^^ -~17198~^~301~^29.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~305~^372.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~306~^159.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~307~^110.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~318~^669.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~319~^201.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~17198~^~320~^201.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~17198~^~417~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17198~^~432~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17198~^~601~^791.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17199~^~268~^582.^0^^~4~^^^^^^^^^^^ -~17199~^~301~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~304~^19.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~305~^364.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~306~^313.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~307~^70.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~318~^24612.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~319~^7391.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~17199~^~320~^7391.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~17199~^~417~^230.^4^19.^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17199~^~432~^230.^4^19.^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~435~^230.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17199~^~601~^371.^4^43.^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17200~^~268~^920.^0^^~4~^^^^^^^^^^^ -~17200~^~301~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~305~^420.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~306~^221.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~307~^56.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~318~^24945.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~319~^7491.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~17200~^~320~^7491.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~17200~^~417~^73.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17200~^~432~^73.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17200~^~601~^501.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17201~^~268~^996.^0^^~4~^^^^^^^^^^^ -~17201~^~301~^9.^3^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~304~^23.^3^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~305~^427.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~306~^352.^3^26.^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~307~^124.^3^33.^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~318~^25998.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~319~^7777.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~17201~^~320~^7782.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~17201~^~417~^400.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17201~^~432~^400.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~435~^400.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17201~^~601~^493.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17202~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~02/01/2003~ -~17202~^~304~^20.^2^^~1~^~A~^^^1^19.^20.^1^^^^~02/01/2003~ -~17202~^~305~^379.^2^^~1~^~A~^^^1^338.^419.^1^^^^~02/01/2003~ -~17202~^~306~^308.^2^^~1~^~A~^^^1^299.^317.^1^^^^~02/01/2003~ -~17202~^~307~^77.^2^^~1~^~A~^^^1^73.^81.^1^^^^~02/01/2003~ -~17202~^~318~^39056.^2^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17202~^~319~^11705.^2^^~1~^~A~^^^1^2410.^21000.^1^^^^~02/01/2003~ -~17202~^~320~^11707.^2^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17202~^~321~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~ -~17202~^~322~^13.^2^^~1~^~A~^^^1^11.^15.^1^^^~1~^~02/01/2003~ -~17202~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~ -~17202~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~17202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17202~^~417~^125.^2^^~1~^~A~^^^1^120.^130.^1^^^^~02/01/2003~ -~17202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~432~^125.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~17202~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~601~^334.^2^^~1~^~A~^^^1^317.^350.^1^^^^~02/01/2003~ -~17203~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~301~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~02/01/2003~ -~17203~^~304~^20.^2^^~1~^~A~^^^1^16.^24.^1^^^^~02/01/2003~ -~17203~^~305~^460.^2^^~1~^~A~^^^1^449.^470.^1^^^^~02/01/2003~ -~17203~^~306~^329.^2^^~1~^~A~^^^1^323.^334.^1^^^^~02/01/2003~ -~17203~^~307~^78.^2^^~1~^~A~^^^1^77.^79.^1^^^^~02/01/2003~ -~17203~^~318~^70564.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17203~^~319~^21140.^2^^~1~^~A~^^^1^5680.^36600.^1^^^^~02/01/2003~ -~17203~^~320~^21145.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17203~^~321~^47.^2^^~1~^~A~^^^1^44.^50.^1^^^^~02/01/2003~ -~17203~^~322~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~ -~17203~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~ -~17203~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~17203~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17203~^~417~^331.^2^^~1~^~A~^^^1^284.^377.^1^^^^~02/01/2003~ -~17203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~432~^331.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~17203~^~435~^331.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~601~^511.^2^^~1~^~A~^^^1^489.^532.^1^^^^~02/01/2003~ -~17204~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~301~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~02/01/2003~ -~17204~^~304~^23.^2^^~1~^~A~^^^1^22.^24.^1^^^^~02/01/2003~ -~17204~^~305~^483.^2^^~1~^~A~^^^1^460.^506.^1^^^^~02/01/2003~ -~17204~^~306~^353.^2^^~1~^~A~^^^1^345.^360.^1^^^^~02/01/2003~ -~17204~^~307~^85.^2^^~1~^~A~^^^1^85.^86.^1^^^^~02/01/2003~ -~17204~^~318~^66989.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17204~^~319~^20070.^2^^~1~^~A~^^^1^4740.^35400.^1^^^^~02/01/2003~ -~17204~^~320~^20074.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~17204~^~321~^40.^2^^~1~^~A~^^^1^31.^49.^1^^^^~02/01/2003~ -~17204~^~322~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~ -~17204~^~334~^16.^2^^~1~^~A~^^^1^11.^20.^1^^^~1~^~02/01/2003~ -~17204~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~17204~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17204~^~417~^350.^2^^~1~^~A~^^^2^320.^380.^^^^^~02/01/2003~ -~17204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~432~^350.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~17204~^~435~^350.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~601~^485.^2^^~1~^~A~^^^1^436.^534.^1^^^^~02/01/2003~ -~17205~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17205~^~268~^397.^0^^~4~^^^^^^^^^^^ -~17205~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~304~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~305~^219.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~306~^238.^4^4.^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~307~^157.^4^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~318~^89.^8^10.^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~319~^27.^8^3.^~1~^^^^^^^^^^^~06/01/2002~ -~17205~^~320~^27.^8^3.^~1~^^^^^^^^^^^~06/01/2002~ -~17205~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17205~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17206~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17206~^~268~^473.^0^^~4~^^^^^^^^^^^ -~17206~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~304~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~305~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~306~^127.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~307~^84.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~318~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~319~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17206~^~320~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17206~^~417~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17206~^~432~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17206~^~601~^284.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17207~^~268~^377.^0^^~4~^^^^^^^^^^^ -~17207~^~301~^7.^5^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~304~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~305~^288.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~306~^274.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~307~^108.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17207~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17207~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17207~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17207~^~601~^229.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17208~^~268~^435.^0^^~4~^^^^^^^^^^^ -~17208~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~304~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~305~^232.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~306~^142.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17208~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17208~^~417~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17208~^~432~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17208~^~601~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17209~^~268~^1155.^0^^~4~^^^^^^^^^^^ -~17209~^~301~^162.^5^23.^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~305~^337.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~306~^288.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17209~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17209~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17209~^~432~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17209~^~601~^213.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17210~^~268~^636.^0^^~4~^^^^^^^^^^^ -~17210~^~301~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~304~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~305~^400.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~306~^420.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~307~^75.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17210~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17210~^~417~^13.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17210~^~432~^13.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17210~^~601~^260.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17211~^~268~^979.^0^^~4~^^^^^^^^^^^ -~17211~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~305~^431.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~306~^291.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~307~^52.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17211~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17211~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17211~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17211~^~601~^400.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17212~^~268~^761.^0^^~4~^^^^^^^^^^^ -~17212~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~305~^329.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~306~^278.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17212~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17212~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17212~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17212~^~601~^173.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17213~^~268~^1071.^0^^~4~^^^^^^^^^^^ -~17213~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~305~^512.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~306~^278.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17213~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17213~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17213~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17214~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17214~^~268~^423.^0^^~4~^^^^^^^^^^^ -~17214~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~305~^280.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~306~^358.^4^5.^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~307~^84.^4^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17214~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17214~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17214~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17214~^~601~^250.^3^15.^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17215~^~268~^653.^0^^~4~^^^^^^^^^^^ -~17215~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~305~^341.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~306~^248.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17215~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17215~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17215~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17215~^~601~^385.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17216~^~268~^410.^0^^~4~^^^^^^^^^^^ -~17216~^~301~^6.^5^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~304~^17.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~305~^339.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~306~^362.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~307~^97.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17216~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17216~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17216~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17216~^~601~^340.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17217~^~268~^540.^0^^~4~^^^^^^^^^^^ -~17217~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~304~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~305~^312.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~306~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17217~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17217~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17217~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17217~^~601~^447.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17218~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~17218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~17218~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~305~^533.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~306~^488.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17218~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17218~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~17218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17218~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~17218~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~17218~^~601~^250.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~268~^522.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17219~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~305~^627.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~306~^435.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17219~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17219~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17219~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~17219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17219~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17219~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~17219~^~601~^350.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17220~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17220~^~268~^929.^0^^~4~^^^^^^^^^^^ -~17220~^~301~^9.^7^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~304~^21.^7^2.^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~305~^184.^6^14.^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~306~^257.^7^17.^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~307~^78.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~318~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17220~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17220~^~417~^4.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17220~^~432~^4.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17220~^~601~^156.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17221~^~268~^1151.^0^^~4~^^^^^^^^^^^ -~17221~^~301~^10.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~305~^134.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~306~^158.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~307~^67.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17221~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17221~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17221~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17221~^~601~^189.^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17222~^~268~^548.^0^^~4~^^^^^^^^^^^ -~17222~^~301~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~304~^17.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~305~^159.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~306~^271.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~307~^82.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~318~^1.^10^1.^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~319~^0.^10^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17222~^~320~^0.^10^0.^~1~^^^^^^^^^^^~06/01/2002~ -~17222~^~417~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17222~^~432~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17222~^~601~^62.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17223~^~268~^845.^0^^~4~^^^^^^^^^^^ -~17223~^~301~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~304~^18.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~305~^166.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~306~^162.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~307~^64.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17223~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~17223~^~417~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17223~^~432~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17223~^~601~^238.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~268~^1180.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~17224~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~305~^157.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~306~^222.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17224~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17224~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~17224~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17224~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17224~^~432~^18.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~17224~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17224~^~601~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~268~^1184.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~17225~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~305~^201.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~306~^339.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~307~^81.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17225~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17225~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~17225~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17225~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17225~^~432~^19.^0^^~1~^^^^^^^^^^^~11/01/2006~ -~17225~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17225~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17226~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17226~^~268~^1017.^0^^~4~^^^^^^^^^^^ -~17226~^~301~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~306~^239.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17226~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17226~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17226~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17226~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17227~^~268~^1134.^0^^~4~^^^^^^^^^^^~02/01/2006~ -~17227~^~301~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~306~^318.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17227~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~02/01/2006~ -~17227~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~17227~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17228~^~268~^841.^0^^~4~^^^^^^^^^^^ -~17228~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~306~^214.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17228~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17228~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17228~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17228~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17229~^~268~^1017.^0^^~4~^^^^^^^^^^^ -~17229~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~306~^257.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17229~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17229~^~417~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17229~^~432~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17229~^~601~^106.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17230~^~268~^874.^0^^~4~^^^^^^^^^^^ -~17230~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~306~^258.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17230~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17230~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17230~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17230~^~601~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17231~^~268~^1013.^0^^~4~^^^^^^^^^^^ -~17231~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~305~^194.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17231~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17231~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17231~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17231~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17232~^~268~^774.^0^^~4~^^^^^^^^^^^ -~17232~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17232~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17232~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17232~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17232~^~601~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17233~^~268~^908.^0^^~4~^^^^^^^^^^^ -~17233~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~306~^329.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17233~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17233~^~417~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17233~^~432~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17233~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17234~^~268~^1092.^0^^~4~^^^^^^^^^^^ -~17234~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~305~^161.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~306~^235.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~307~^56.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17234~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17234~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17234~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17234~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17235~^~268~^1188.^0^^~4~^^^^^^^^^^^ -~17235~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17235~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17235~^~417~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17235~^~432~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17235~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17236~^~268~^1167.^0^^~4~^^^^^^^^^^^ -~17236~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~305~^159.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~306~^226.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17236~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17236~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17236~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17236~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17237~^~268~^1243.^0^^~4~^^^^^^^^^^^ -~17237~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~306~^336.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~307~^78.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17237~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17237~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17237~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17237~^~601~^99.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17238~^~268~^1213.^0^^~4~^^^^^^^^^^^ -~17238~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~306~^250.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17238~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17238~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17238~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17238~^~601~^93.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17239~^~268~^1431.^0^^~4~^^^^^^^^^^^ -~17239~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~305~^143.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~306~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17239~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17239~^~417~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17239~^~432~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17239~^~601~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17240~^~268~^1423.^0^^~4~^^^^^^^^^^^ -~17240~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~305~^184.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~306~^277.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~307~^77.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17240~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17240~^~417~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17240~^~432~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17240~^~601~^98.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17241~^~268~^1427.^0^^~4~^^^^^^^^^^^ -~17241~^~301~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~306~^277.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~307~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17241~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17241~^~417~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17241~^~432~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17241~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17242~^~268~^1021.^0^^~4~^^^^^^^^^^^ -~17242~^~301~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~306~^237.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17242~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17242~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17242~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17242~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17243~^~268~^1414.^0^^~4~^^^^^^^^^^^ -~17243~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~306~^261.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~307~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17243~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17243~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17243~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17243~^~601~^117.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17244~^~268~^1121.^0^^~4~^^^^^^^^^^^ -~17244~^~301~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~306~^335.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~307~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17244~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17244~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17244~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17244~^~601~^95.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17245~^~268~^1125.^0^^~4~^^^^^^^^^^^ -~17245~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~306~^251.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~307~^66.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17245~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17245~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17245~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17245~^~601~^91.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17246~^~268~^1021.^0^^~4~^^^^^^^^^^^ -~17246~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~305~^162.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~306~^244.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~307~^61.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17246~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17246~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17246~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17246~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17247~^~268~^1410.^0^^~4~^^^^^^^^^^^ -~17247~^~301~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~305~^210.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~306~^311.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17247~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17247~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17247~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17247~^~601~^120.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17248~^~268~^1125.^0^^~4~^^^^^^^^^^^ -~17248~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~304~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~306~^314.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~307~^78.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17248~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17248~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17248~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17248~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17249~^~268~^1117.^0^^~4~^^^^^^^^^^^ -~17249~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~306~^262.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17249~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17249~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17249~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17249~^~601~^91.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17250~^~268~^1021.^0^^~4~^^^^^^^^^^^ -~17250~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~306~^234.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17250~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17250~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17250~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17250~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17251~^~268~^1418.^0^^~4~^^^^^^^^^^^ -~17251~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~305~^187.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~306~^244.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~307~^75.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17251~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17251~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17251~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17251~^~601~^116.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17252~^~268~^1117.^0^^~4~^^^^^^^^^^^ -~17252~^~301~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~306~^341.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~307~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17252~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17252~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17252~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17252~^~601~^95.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17253~^~268~^1130.^0^^~4~^^^^^^^^^^^ -~17253~^~301~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~306~^248.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17253~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17253~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17253~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17253~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17254~^~268~^971.^0^^~4~^^^^^^^^^^^ -~17254~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~305~^179.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~306~^147.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~307~^41.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17254~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17254~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17254~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17254~^~601~^77.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17255~^~268~^1130.^0^^~4~^^^^^^^^^^^ -~17255~^~301~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~305~^211.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~306~^161.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~307~^46.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17255~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17255~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17255~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17255~^~601~^106.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17256~^~268~^933.^0^^~4~^^^^^^^^^^^ -~17256~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~306~^131.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17256~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17256~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17256~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17256~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17257~^~268~^1079.^0^^~4~^^^^^^^^^^^ -~17257~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~306~^118.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~307~^47.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17257~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17257~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17257~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17257~^~601~^102.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17258~^~268~^841.^0^^~4~^^^^^^^^^^^ -~17258~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~305~^189.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~306~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~307~^41.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17258~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17258~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17258~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17258~^~601~^75.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17259~^~268~^979.^0^^~4~^~PAE~^^^^^^^^^^ -~17259~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~305~^221.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~306~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~307~^44.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17259~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17259~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17259~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17259~^~601~^101.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17260~^~268~^1142.^0^^~4~^^^^^^^^^^^ -~17260~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~306~^128.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~307~^39.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17260~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17260~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17260~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17260~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17261~^~268~^1238.^0^^~4~^^^^^^^^^^^ -~17261~^~301~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~305~^213.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~306~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~307~^50.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17261~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17261~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17261~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17261~^~601~^113.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17262~^~268~^1301.^0^^~4~^^^^^^^^^^^ -~17262~^~301~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~304~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~305~^153.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~306~^120.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~307~^42.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17262~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17262~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17262~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17262~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17263~^~268~^1326.^0^^~4~^^^^^^^^^^^ -~17263~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~305~^173.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~306~^128.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~307~^44.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17263~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17263~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17263~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17263~^~601~^99.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17264~^~268~^1050.^0^^~4~^^^^^^^^^^^ -~17264~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~305~^168.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~306~^137.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~307~^42.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17264~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17264~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17264~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17264~^~601~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~ -~17265~^~268~^1431.^0^^~4~^^^^^^^^^^^ -~17265~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~306~^151.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~307~^52.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17265~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~ -~17265~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17265~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17265~^~601~^123.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17267~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~ -~17267~^~268~^473.^0^^~4~^^^^^^^^^^^ -~17267~^~301~^5.^92^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~304~^24.^96^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~305~^203.^96^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~306~^335.^92^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~307~^51.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~318~^3.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~17267~^~601~^71.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~ -~17268~^~268~^485.^0^^~4~^^^^^^^^^^^ -~17268~^~301~^6.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~304~^24.^96^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~305~^198.^96^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~306~^344.^93^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~307~^48.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~318~^3.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~17268~^~601~^62.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~ -~17269~^~268~^456.^0^^~4~^^^^^^^^^^^ -~17269~^~301~^4.^95^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~304~^24.^95^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~305~^189.^95^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~306~^322.^91^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~307~^59.^92^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~318~^2.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~17269~^~601~^66.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17270~^~208~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~17270~^~268~^2180.^0^^~4~^^^^^^^^^^^ -~17270~^~301~^6.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~304~^10.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~305~^102.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~306~^181.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~307~^49.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17270~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17270~^~601~^95.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~17271~^~268~^870.^0^^~4~^^^^^^^^^^^ -~17271~^~301~^7.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~305~^172.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~306~^286.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~307~^71.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~601~^71.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17272~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~ -~17272~^~268~^1113.^0^^~4~^^^^^^^^^^^ -~17272~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~417~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17272~^~432~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~17272~^~601~^113.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~ -~17273~^~268~^1180.^0^^~4~^^^^^^^^^^^ -~17273~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~305~^186.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~306~^266.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~417~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17273~^~432~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17273~^~601~^112.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~ -~17274~^~268~^1038.^0^^~4~^^^^^^^^^^^ -~17274~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~417~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17274~^~432~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17274~^~601~^114.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17275~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~17275~^~268~^912.^0^^~4~^^^^^^^^^^^ -~17275~^~301~^9.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~305~^208.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~306~^289.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~307~^68.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~417~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17275~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17275~^~601~^116.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17276~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~17276~^~268~^473.^0^^~4~^^^^^^^^^^^~03/01/2001~ -~17276~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~306~^314.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~417~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17276~^~432~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~17276~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~ -~17277~^~268~^799.^0^^~4~^^^^^^^^^^^ -~17277~^~301~^33.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~305~^225.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~307~^93.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~417~^17.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17277~^~432~^17.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17277~^~601~^124.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17278~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~17278~^~268~^452.^0^^~4~^^^^^^^^^^^ -~17278~^~301~^20.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~304~^21.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~305~^192.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~306~^316.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~307~^85.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~417~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17278~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17278~^~601~^75.^3^0.^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~17279~^~268~^741.^0^^~4~^^^^^^^^^^^ -~17279~^~301~^34.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~305~^228.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~306~^309.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~307~^94.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~17279~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~17279~^~417~^17.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~17279~^~432~^17.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~17279~^~601~^126.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17280~^~208~^229.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17280~^~268~^958.^0^^~9~^^^^^^^^^^^ -~17280~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~306~^284.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~208~^256.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17281~^~268~^1071.^0^^~9~^^^^^^^^^^^ -~17281~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~306~^301.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~208~^142.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17282~^~268~^594.^0^^~9~^^^^^^^^^^^ -~17282~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~306~^320.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~307~^83.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~208~^201.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17283~^~268~^841.^0^^~9~^^^^^^^^^^^ -~17283~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~307~^80.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17284~^~208~^648.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17284~^~268~^2711.^0^^~9~^^^^^^^^^^^ -~17284~^~301~^19.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~304~^7.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~305~^71.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~306~^112.^6^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~307~^33.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~601~^77.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~208~^639.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17285~^~268~^2674.^0^^~9~^^^^^^^^^^^ -~17285~^~301~^27.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~304~^12.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~305~^114.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~306~^179.^6^6.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~307~^51.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~601~^83.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17286~^~208~^195.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17286~^~268~^816.^0^^~9~^^^^^^^^^^^ -~17286~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~305~^158.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~306~^270.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~208~^236.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17287~^~268~^987.^0^^~9~^^^^^^^^^^^ -~17287~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~305~^167.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~307~^93.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17288~^~208~^123.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17288~^~268~^515.^0^^~9~^^^^^^^^^^^ -~17288~^~301~^11.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~304~^20.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~305~^171.^3^6.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~306~^295.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~307~^106.^3^7.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~601~^66.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~208~^165.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17289~^~268~^690.^0^^~9~^^^^^^^^^^^ -~17289~^~301~^14.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~304~^22.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~305~^177.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~306~^255.^3^9.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~307~^100.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~601~^92.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17290~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17290~^~268~^900.^0^^~9~^^^^^^^^^^^ -~17290~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~305~^173.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~306~^295.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~208~^244.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17291~^~268~^1021.^0^^~9~^^^^^^^^^^^ -~17291~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~306~^309.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~208~^135.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17292~^~268~^565.^0^^~9~^^^^^^^^^^^ -~17292~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~208~^190.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17293~^~268~^795.^0^^~9~^^^^^^^^^^^ -~17293~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~306~^326.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~208~^201.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17294~^~268~^841.^0^^~9~^^^^^^^^^^^ -~17294~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~306~^301.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~208~^231.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17295~^~268~^967.^0^^~9~^^^^^^^^^^^ -~17295~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17296~^~208~^133.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17296~^~268~^556.^0^^~9~^^^^^^^^^^^ -~17296~^~301~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~305~^191.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~306~^329.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~307~^81.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~601~^64.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~208~^182.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17297~^~268~^761.^0^^~9~^^^^^^^^^^^ -~17297~^~301~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~305~^213.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~306~^329.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~307~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~601~^83.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17298~^~208~^254.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17298~^~268~^1063.^0^^~9~^^^^^^^^^^^ -~17298~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~305~^167.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~208~^281.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17299~^~268~^1176.^0^^~9~^^^^^^^^^^^ -~17299~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~306~^297.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~601~^102.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17300~^~208~^138.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17300~^~268~^577.^0^^~9~^^^^^^^^^^^ -~17300~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~304~^23.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~305~^195.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~306~^328.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~307~^80.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~601~^63.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17301~^~268~^900.^0^^~9~^^^^^^^^^^^ -~17301~^~301~^13.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~305~^214.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~306~^318.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~307~^83.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~601~^105.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17302~^~208~^208.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17302~^~268~^870.^0^^~9~^^^^^^^^^^^ -~17302~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~208~^235.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17303~^~268~^983.^0^^~9~^^^^^^^^^^^ -~17303~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~305~^224.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~306~^336.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17304~^~208~^132.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17304~^~268~^552.^0^^~9~^^^^^^^^^^^ -~17304~^~301~^9.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~305~^214.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~306~^342.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~307~^64.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~601~^64.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~208~^188.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17305~^~268~^787.^0^^~9~^^^^^^^^^^^ -~17305~^~301~^13.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~304~^26.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~305~^237.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~306~^354.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~307~^66.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~601~^85.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17306~^~208~^195.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17306~^~268~^816.^0^^~9~^^^^^^^^^^^ -~17306~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17307~^~268~^900.^0^^~9~^^^^^^^^^^^ -~17307~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~306~^342.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17308~^~208~^143.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17308~^~268~^598.^0^^~9~^^^^^^^^^^^ -~17308~^~301~^9.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~305~^214.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~306~^342.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~307~^64.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~601~^64.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~208~^183.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17309~^~268~^766.^0^^~9~^^^^^^^^^^^ -~17309~^~301~^13.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~304~^26.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~305~^237.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~306~^354.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~307~^66.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~601~^85.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17310~^~208~^203.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17310~^~268~^849.^0^^~9~^^^^^^^^^^^ -~17310~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~305~^185.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~306~^302.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~208~^219.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17311~^~268~^916.^0^^~9~^^^^^^^^^^^ -~17311~^~301~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~306~^331.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17312~^~208~^146.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17312~^~268~^611.^0^^~9~^^^^^^^^^^^ -~17312~^~301~^15.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~304~^24.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~305~^199.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~306~^327.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~307~^75.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~601~^64.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~208~^192.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17313~^~268~^803.^0^^~9~^^^^^^^^^^^ -~17313~^~301~^21.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~304~^26.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~305~^220.^6^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~306~^340.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~307~^80.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~601~^81.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17314~^~208~^237.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~268~^992.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~305~^132.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~306~^189.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~318~^12.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17315~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~268~^1275.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17315~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~306~^292.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~307~^79.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17315~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17316~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~304~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~305~^150.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~306~^209.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~307~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~319~^5.^0^^~4~^~BFSN~^~17397~^^^^^^^^^~11/01/2014~ -~17316~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17317~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~268~^978.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~305~^216.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~306~^320.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~307~^85.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~319~^4.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~ -~17317~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~324~^0.^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~601~^92.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17318~^~208~^256.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17318~^~268~^1071.^0^^~9~^^^^^^^^^^^ -~17318~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~306~^267.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~208~^296.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17319~^~268~^1238.^0^^~9~^^^^^^^^^^^ -~17319~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~307~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~208~^155.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17320~^~268~^649.^0^^~9~^^^^^^^^^^^ -~17320~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~305~^178.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~306~^306.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~307~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~208~^233.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17321~^~268~^975.^0^^~9~^^^^^^^^^^^ -~17321~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~208~^243.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17322~^~268~^1017.^0^^~9~^^^^^^^^^^^ -~17322~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~208~^311.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17323~^~268~^1301.^0^^~9~^^^^^^^^^^^ -~17323~^~301~^27.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~305~^201.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~306~^268.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~601~^106.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17324~^~208~^137.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17324~^~268~^573.^0^^~9~^^^^^^^^^^^ -~17324~^~301~^15.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~304~^22.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~305~^193.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~306~^325.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~307~^83.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~601~^62.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~208~^238.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17325~^~268~^996.^0^^~9~^^^^^^^^^^^ -~17325~^~301~^27.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~305~^221.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~306~^287.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~307~^78.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~601~^111.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17326~^~208~^262.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17326~^~268~^1096.^0^^~9~^^^^^^^^^^^ -~17326~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~306~^260.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~208~^291.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17327~^~268~^1218.^0^^~9~^^^^^^^^^^^ -~17327~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~306~^295.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~307~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17328~^~208~^164.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17328~^~268~^686.^0^^~9~^^^^^^^^^^^ -~17328~^~301~^19.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~304~^20.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~305~^170.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~306~^298.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~307~^90.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~601~^64.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~208~^231.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~17329~^~268~^967.^0^^~9~^^^^^^^^^^^ -~17329~^~301~^28.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~304~^21.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~305~^188.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~306~^315.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~307~^94.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~601~^85.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17330~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17330~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17330~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^7.^13.^~4~^~09/01/2001~ -~17330~^~304~^19.^3^0.^~1~^~A~^^^1^18.^20.^2^17.^21.^~4~^~09/01/2001~ -~17330~^~305~^181.^3^5.^~1~^~A~^^^1^170.^189.^2^156.^206.^~4~^~09/01/2001~ -~17330~^~306~^307.^3^11.^~1~^~A~^^^1^285.^324.^2^257.^355.^~4~^~09/01/2001~ -~17330~^~307~^66.^3^2.^~1~^~A~^^^1^61.^70.^2^54.^76.^~4~^~09/01/2001~ -~17330~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~17330~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~ -~17330~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~17330~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17330~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17330~^~601~^70.^6^2.^~1~^~A~^^^1^66.^82.^5^63.^76.^~4~^~09/01/2001~ -~17331~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17331~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~268~^996.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17331~^~301~^13.^3^1.^~1~^~A~^^^1^12.^16.^2^7.^18.^~4~^~09/01/2001~ -~17331~^~304~^22.^3^1.^~1~^~A~^^^1^20.^24.^2^17.^26.^~4~^~09/01/2001~ -~17331~^~305~^205.^3^11.^~1~^~A~^^^1^184.^224.^2^155.^255.^~4~^~09/01/2001~ -~17331~^~306~^341.^3^17.^~1~^~A~^^^1^306.^366.^2^263.^417.^~4~^~09/01/2001~ -~17331~^~307~^73.^3^3.^~1~^~A~^^^1^67.^77.^2^59.^86.^~4~^~09/01/2001~ -~17331~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~17331~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~ -~17331~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~17331~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17331~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17331~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~17331~^~601~^83.^6^1.^~1~^~A~^^^1^77.^88.^5^78.^86.^~4~^~09/01/2001~ -~17332~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17332~^~268~^714.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~301~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~4~^~11/01/2001~ -~17332~^~304~^27.^3^0.^~1~^~A~^^^1^26.^29.^2^23.^31.^~4~^~11/01/2001~ -~17332~^~305~^253.^3^12.^~1~^~A~^^^1^234.^277.^2^197.^307.^~4~^~11/01/2001~ -~17332~^~306~^387.^3^12.^~1~^~A~^^^1^363.^404.^2^333.^440.^~4~^~11/01/2001~ -~17332~^~307~^53.^3^3.^~1~^~A~^^^1^49.^61.^2^36.^69.^~4~^~11/01/2001~ -~17332~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17332~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17332~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~417~^18.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~ -~17332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17332~^~432~^18.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~ -~17332~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~17332~^~601~^86.^6^1.^~1~^~A~^^^1^83.^91.^5^83.^88.^~4~^~11/01/2001~ -~17333~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~4~^~11/01/2001~ -~17333~^~304~^26.^3^0.^~1~^~A~^^^1^25.^28.^2^22.^29.^~4~^~11/01/2001~ -~17333~^~305~^239.^3^4.^~1~^~A~^^^1^234.^249.^2^218.^260.^~4~^~11/01/2001~ -~17333~^~306~^316.^3^6.^~1~^~A~^^^1^307.^329.^2^286.^344.^~4~^~11/01/2001~ -~17333~^~307~^57.^3^4.^~1~^~A~^^^1^52.^65.^2^38.^75.^~4~^~11/01/2001~ -~17333~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17333~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~417~^21.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~ -~17333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17333~^~432~^21.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~ -~17333~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~17333~^~601~^111.^6^3.^~1~^~A~^^^1^100.^123.^5^102.^118.^~4~^~11/01/2001~ -~17334~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~301~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~4~^~11/01/2001~ -~17334~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^26.^~4~^~11/01/2001~ -~17334~^~305~^213.^3^4.^~1~^~A~^^^1^205.^220.^2^194.^232.^~4~^~11/01/2001~ -~17334~^~306~^353.^3^5.^~1~^~A~^^^1^343.^359.^2^331.^374.^~4~^~11/01/2001~ -~17334~^~307~^62.^3^1.^~1~^~A~^^^1^60.^65.^2^55.^68.^~4~^~11/01/2001~ -~17334~^~318~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~ -~17334~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~ -~17334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~417~^13.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17334~^~432~^13.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17334~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~17334~^~601~^64.^6^0.^~1~^~A~^^^1^61.^66.^5^62.^66.^~4~^~11/01/2001~ -~17335~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~301~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^4.^8.^~4~^~11/01/2001~ -~17335~^~304~^26.^3^1.^~1~^~A~^^^1^24.^28.^2^21.^30.^~4~^~11/01/2001~ -~17335~^~305~^238.^3^5.^~1~^~A~^^^1^227.^245.^2^214.^261.^~4~^~11/01/2001~ -~17335~^~306~^371.^3^8.^~1~^~A~^^^1^357.^385.^2^336.^405.^~4~^~11/01/2001~ -~17335~^~307~^52.^3^4.^~1~^~A~^^^1^44.^58.^2^34.^70.^~4~^~11/01/2001~ -~17335~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17335~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~ -~17335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~417~^18.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17335~^~432~^18.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17335~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~17335~^~601~^79.^6^1.^~1~^~A~^^^1^73.^84.^5^73.^83.^~4~^~11/01/2001~ -~17336~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~301~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~4~^~03/01/2003~ -~17336~^~304~^28.^3^1.^~1~^~A~^^^1^26.^30.^2^22.^32.^~4~^~03/01/2003~ -~17336~^~305~^257.^3^10.^~1~^~A~^^^1^249.^279.^2^210.^302.^~4~^~03/01/2003~ -~17336~^~306~^382.^3^14.^~1~^~A~^^^1^371.^411.^2^321.^442.^~4~^~03/01/2003~ -~17336~^~307~^41.^3^3.^~1~^~A~^^^1^38.^47.^2^27.^54.^~4~^~03/01/2003~ -~17336~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~417~^19.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17336~^~432~^19.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~601~^85.^6^2.^~1~^~A~^^^1^75.^90.^5^78.^92.^~4~^~03/01/2003~ -~17337~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~268~^508.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~301~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~4~^~11/01/2001~ -~17337~^~304~^27.^3^0.^~1~^~A~^^^1^26.^27.^2^25.^27.^~4~^~11/01/2001~ -~17337~^~305~^237.^3^1.^~1~^~A~^^^1^234.^240.^2^229.^244.^~4~^~11/01/2001~ -~17337~^~306~^390.^3^2.^~1~^~A~^^^1^385.^395.^2^377.^402.^~4~^~11/01/2001~ -~17337~^~307~^47.^3^1.^~1~^~A~^^^1^45.^48.^2^42.^51.^~4~^~11/01/2001~ -~17337~^~318~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~ -~17337~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~ -~17337~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~417~^14.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17337~^~432~^14.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~ -~17337~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~17337~^~601~^65.^6^1.^~1~^~A~^^^1^60.^67.^5^62.^67.^~4~^~11/01/2001~ -~17338~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17338~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~268~^722.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17338~^~301~^12.^3^2.^~1~^~A~^^^1^8.^17.^2^-1.^24.^~4~^~02/01/2002~ -~17338~^~304~^22.^3^0.^~1~^~A~^^^1^21.^22.^2^20.^23.^~4~^~02/01/2002~ -~17338~^~305~^195.^3^1.^~1~^~A~^^^1^193.^199.^2^187.^203.^~4~^~02/01/2002~ -~17338~^~306~^322.^3^2.^~1~^~A~^^^1^317.^325.^2^311.^332.^~4~^~02/01/2002~ -~17338~^~307~^79.^3^3.^~1~^~A~^^^1^74.^85.^2^66.^92.^~4~^~02/01/2002~ -~17338~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2002~ -~17338~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2002~ -~17338~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17338~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17338~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17338~^~601~^66.^0^^~4~^~BFYN~^~17339~^^^^^^^^^~02/01/2002~ -~17339~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17339~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~268~^806.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17339~^~301~^10.^3^1.^~1~^~A~^^^1^7.^11.^2^4.^14.^~4~^~02/01/2002~ -~17339~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^25.^~4~^~02/01/2002~ -~17339~^~305~^221.^3^3.^~1~^~A~^^^1^215.^228.^2^205.^237.^~4~^~02/01/2002~ -~17339~^~306~^354.^3^2.^~1~^~A~^^^1^349.^359.^2^341.^366.^~4~^~02/01/2002~ -~17339~^~307~^85.^3^4.^~1~^~A~^^^1^79.^95.^2^65.^105.^~4~^~02/01/2002~ -~17339~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17339~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2002~ -~17339~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~17339~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17339~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17339~^~601~^78.^2^^~1~^~A~^^^1^70.^86.^1^^^^~02/01/2002~ -~17340~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~268~^699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2001~ -~17340~^~304~^28.^2^^~1~^~A~^^^1^28.^28.^1^^^^~10/01/2001~ -~17340~^~305~^256.^2^^~1~^~A~^^^1^252.^259.^1^^^^~10/01/2001~ -~17340~^~306~^404.^2^^~1~^~A~^^^1^402.^406.^1^^^^~10/01/2001~ -~17340~^~307~^54.^2^^~1~^~A~^^^1^47.^62.^1^^^^~10/01/2001~ -~17340~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17340~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17340~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17340~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17340~^~601~^75.^3^4.^~1~^~A~^^^1^70.^83.^2^56.^92.^~4~^~10/01/2001~ -~17341~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2001~ -~17341~^~304~^28.^2^^~1~^~A~^^^1^28.^29.^1^^^^~10/01/2001~ -~17341~^~305~^266.^2^^~1~^~A~^^^1^263.^269.^1^^^^~10/01/2001~ -~17341~^~306~^392.^2^^~1~^~A~^^^1^387.^397.^1^^^^~10/01/2001~ -~17341~^~307~^51.^2^^~1~^~A~^^^1^46.^55.^1^^^^~10/01/2001~ -~17341~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17341~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17341~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17341~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17341~^~601~^78.^3^1.^~1~^~A~^^^1^76.^81.^2^71.^84.^~4~^~10/01/2001~ -~17342~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~301~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~10/01/2001~ -~17342~^~304~^29.^2^^~1~^~A~^^^1^29.^30.^1^^^^~10/01/2001~ -~17342~^~305~^285.^2^^~1~^~A~^^^1^281.^288.^1^^^^~10/01/2001~ -~17342~^~306~^392.^2^^~1~^~A~^^^1^371.^413.^1^^^^~10/01/2001~ -~17342~^~307~^50.^2^^~1~^~A~^^^1^46.^54.^1^^^^~10/01/2001~ -~17342~^~318~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17342~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17342~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17342~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17342~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17343~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~301~^11.^3^1.^~1~^~A~^^^1^10.^14.^2^5.^17.^~4~^~02/01/2002~ -~17343~^~304~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^23.^~4~^~02/01/2002~ -~17343~^~305~^201.^3^3.^~1~^~A~^^^1^196.^209.^2^184.^218.^~4~^~02/01/2002~ -~17343~^~306~^330.^3^5.^~1~^~A~^^^1^323.^341.^2^305.^354.^~4~^~02/01/2002~ -~17343~^~307~^75.^3^2.^~1~^~A~^^^1^71.^81.^2^62.^87.^~4~^~02/01/2002~ -~17343~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17343~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~17343~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17343~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17343~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17343~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~601~^80.^0^^~4~^~BFYN~^~17344~^^^^^^^^^~02/01/2002~ -~17344~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~268~^783.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~301~^14.^3^1.^~1~^~A~^^^1^11.^17.^2^6.^20.^~4~^~02/01/2002~ -~17344~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^25.^~4~^~02/01/2002~ -~17344~^~305~^228.^3^2.^~1~^~A~^^^1^222.^231.^2^215.^239.^~4~^~02/01/2002~ -~17344~^~306~^364.^3^3.^~1~^~A~^^^1^356.^369.^2^346.^380.^~4~^~02/01/2002~ -~17344~^~307~^78.^3^2.^~1~^~A~^^^1^75.^82.^2^69.^87.^~4~^~02/01/2002~ -~17344~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17344~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~ -~17344~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~17344~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17344~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17344~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17344~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~601~^98.^6^0.^~1~^~A~^^^1^94.^101.^5^95.^100.^~4~^~02/01/2002~ -~17345~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17345~^~301~^6.^3^1.^~1~^~A~^^^1^5.^9.^2^0.^11.^~4~^~02/01/2002~ -~17345~^~304~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^28.^31.^~4~^~02/01/2002~ -~17345~^~305~^277.^3^7.^~1~^~A~^^^1^264.^289.^2^245.^308.^~4~^~02/01/2002~ -~17345~^~306~^398.^3^11.^~1~^~A~^^^1^377.^416.^2^348.^446.^~4~^~02/01/2002~ -~17345~^~307~^57.^3^4.^~1~^~A~^^^1^48.^61.^2^38.^75.^~4~^~02/01/2002~ -~17345~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17345~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~417~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17345~^~432~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17345~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17345~^~601~^79.^6^1.^~1~^~A~^^^1^73.^84.^5^74.^82.^~4~^~02/01/2002~ -~17346~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~268~^797.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17346~^~301~^6.^3^0.^~1~^~A~^^^1^6.^8.^2^3.^9.^~4~^~03/01/2002~ -~17346~^~304~^28.^3^0.^~1~^~A~^^^1^27.^29.^2^25.^30.^~4~^~03/01/2002~ -~17346~^~305~^261.^3^6.^~1~^~A~^^^1^249.^272.^2^232.^289.^~4~^~03/01/2002~ -~17346~^~306~^313.^3^5.^~1~^~A~^^^1^303.^321.^2^290.^335.^~4~^~03/01/2002~ -~17346~^~307~^52.^3^1.^~1~^~A~^^^1^50.^54.^2^47.^56.^~4~^~03/01/2002~ -~17346~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17346~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17346~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17346~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17346~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~417~^11.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17346~^~432~^11.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17346~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17346~^~601~^113.^6^2.^~1~^~A~^^^1^103.^118.^5^107.^118.^~4~^~03/01/2002~ -~17347~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~301~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^3.^6.^~4~^~02/01/2002~ -~17347~^~304~^33.^3^0.^~1~^~A~^^^1^32.^34.^2^29.^35.^~4~^~02/01/2002~ -~17347~^~305~^299.^3^6.^~1~^~A~^^^1^288.^309.^2^273.^325.^~4~^~02/01/2002~ -~17347~^~306~^434.^3^14.^~1~^~A~^^^1^418.^464.^2^370.^498.^~4~^~02/01/2002~ -~17347~^~307~^57.^3^2.^~1~^~A~^^^1^53.^61.^2^46.^66.^~4~^~02/01/2002~ -~17347~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~417~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17347~^~432~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~17347~^~601~^88.^6^3.^~1~^~A~^^^1^77.^98.^5^79.^96.^~4~^~02/01/2002~ -~17348~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~301~^4.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~4~^~02/01/2002~ -~17348~^~304~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^26.^32.^~4~^~02/01/2002~ -~17348~^~305~^272.^3^4.^~1~^~A~^^^1^263.^279.^2^251.^291.^~4~^~02/01/2002~ -~17348~^~306~^377.^3^16.^~1~^~A~^^^1^346.^404.^2^304.^449.^~4~^~02/01/2002~ -~17348~^~307~^45.^3^3.^~1~^~A~^^^1^40.^51.^2^31.^58.^~4~^~02/01/2002~ -~17348~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17348~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~417~^10.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17348~^~432~^10.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17348~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~17348~^~601~^85.^6^2.^~1~^~A~^^^1^78.^92.^5^79.^90.^~4~^~02/01/2002~ -~17349~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~307~^112.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17349~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17350~^~208~^145.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~268~^607.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~307~^108.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17350~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17350~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17351~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~307~^98.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17351~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17351~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17351~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17352~^~208~^144.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~268~^602.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~307~^95.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~ -~17352~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~ -~17352~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17353~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~601~^73.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17354~^~208~^596.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~268~^2494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~305~^118.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~306~^198.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~318~^113.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~319~^34.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~601~^82.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~208~^640.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~268~^2679.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~305~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~306~^119.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~307~^34.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~318~^153.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~319~^46.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~324~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~208~^703.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~268~^2942.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~305~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~306~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~307~^28.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~318~^146.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~319~^44.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~320~^44.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~324~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~268~^646.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~305~^384.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~307~^101.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~601~^2559.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~268~^492.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~305~^327.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~306~^307.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~307~^117.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~601~^2100.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~305~^152.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~306~^183.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~307~^86.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~601~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~305~^180.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~306~^293.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~307~^107.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~318~^31.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~268~^595.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~305~^205.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~306~^339.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~307~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~601~^74.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~208~^674.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~268~^2820.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~306~^164.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~318~^201.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~319~^60.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~320~^60.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~324~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~305~^201.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~306~^346.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17364~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~305~^312.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~306~^271.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~307~^199.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~319~^85.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~601~^508.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~305~^137.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~306~^186.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~268~^752.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~305~^164.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~306~^303.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~307~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~305~^245.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~307~^168.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~318~^204.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~319~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~320~^61.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~601~^369.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~268~^704.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~305~^459.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~318~^66240.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~319~^19872.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~320~^19872.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~601~^566.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~268~^569.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~305~^381.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~306~^285.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~318~^51447.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~319~^15434.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~320~^15434.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~601~^386.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~305~^122.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~306~^162.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~307~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~305~^156.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~306~^281.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~268~^673.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~305~^237.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~306~^187.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~318~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~601~^186.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~305~^204.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~306~^277.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~307~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~601~^119.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~305~^550.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~306~^354.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~601~^462.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~305~^310.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~306~^302.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~601~^160.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~305~^302.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~306~^265.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~307~^118.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~318~^72.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~319~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~601~^523.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~305~^179.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~306~^265.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~307~^119.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~601~^393.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~268~^1138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~305~^143.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~306~^132.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~324~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~601~^126.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~268~^940.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~305~^142.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~306~^207.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~601~^88.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~305~^213.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~306~^369.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~306~^344.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~301~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~306~^213.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~601~^99.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~301~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~306~^321.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~305~^268.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~306~^433.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~601~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17385~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17385~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17385~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~305~^222.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~306~^381.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17385~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17385~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17386~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~305~^205.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~306~^345.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~307~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~268~^549.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~305~^193.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~306~^356.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~307~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~305~^234.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~306~^355.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~318~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~601~^86.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~268~^502.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~305~^217.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~306~^368.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~305~^180.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~601~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~305~^185.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~601~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~268~^632.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~301~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~307~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~268~^1104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~301~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~305~^194.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~306~^289.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~307~^97.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~601~^121.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~268~^831.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~306~^337.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~306~^325.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~305~^200.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~306~^330.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~305~^192.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~306~^334.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~601~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~268~^869.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~301~^42.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~305~^233.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~306~^367.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~307~^84.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~601~^85.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~306~^334.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~307~^80.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~305~^223.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~306~^373.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17401~^~208~^376.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~268~^1574.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~305~^122.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~306~^182.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~307~^51.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~318~^80.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~319~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~320~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17402~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~268~^1410.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17402~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~305~^129.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~306~^240.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~318~^68.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~319~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~320~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17403~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~268~^1031.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17403~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~306~^249.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~601~^111.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17404~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17404~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~318~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17405~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~268~^887.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17405~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~305~^210.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~306~^353.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~318~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17406~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~268~^1387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17406~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~318~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~320~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~601~^81.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17407~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17407~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~305~^179.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~306~^306.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~318~^52.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17408~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17408~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~306~^290.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~318~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17409~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17409~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~305~^234.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~306~^355.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~318~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17410~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17410~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~305~^217.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~306~^368.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~307~^60.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17411~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~268~^1285.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17411~^~301~^52.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~306~^276.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~318~^42.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~601~^116.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17412~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~268~^968.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17412~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~306~^290.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17413~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17413~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~305~^178.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~318~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17414~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17414~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~306~^280.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17415~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~268~^1348.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17415~^~301~^34.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~305~^162.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~306~^207.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~318~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17416~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17416~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~305~^160.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~306~^274.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~307~^71.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~318~^50.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17417~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~268~^1231.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17417~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17418~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17418~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~304~^31.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~306~^432.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~601~^94.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17419~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~268~^816.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17419~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~306~^323.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~318~^17.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17420~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17420~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~305~^186.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~306~^324.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~307~^62.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~318~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~324~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17421~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17421~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~305~^201.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~306~^349.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~318~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~306~^344.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17423~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17423~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17423~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~306~^379.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17424~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~301~^18.^6^^~1~^~A~^^^1^9.^26.^^^^~2~^~04/01/2014~ -~17424~^~304~^34.^6^^~1~^~A~^^^1^31.^37.^^^^~2~^~04/01/2014~ -~17424~^~305~^231.^6^^~1~^~A~^^^1^207.^247.^^^^~2~^~04/01/2014~ -~17424~^~306~^245.^6^^~1~^~A~^^^1^216.^266.^^^^~2~^~04/01/2014~ -~17424~^~307~^146.^6^^~1~^~A~^^^1^98.^180.^^^^~2~^~04/01/2014~ -~17424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17424~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~324~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17424~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17424~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17424~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~601~^77.^5^^~1~^~A~^^^1^75.^83.^^^^~2~^~04/01/2014~ -~17425~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~268~^633.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~301~^6.^6^^~1~^~A~^^^1^5.^8.^^^^~2~^~04/01/2014~ -~17425~^~304~^38.^6^^~1~^~A~^^^1^35.^41.^^^^~2~^~04/01/2014~ -~17425~^~305~^277.^6^^~1~^~A~^^^1^230.^324.^^^^~2~^~04/01/2014~ -~17425~^~306~^323.^6^^~1~^~A~^^^1^304.^349.^^^^~2~^~04/01/2014~ -~17425~^~307~^88.^6^^~1~^~A~^^^1^79.^100.^^^^~2~^~04/01/2014~ -~17425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17425~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17425~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17425~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17425~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~601~^72.^6^^~1~^~A~^^^1^69.^76.^^^^~2~^~04/01/2014~ -~17426~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~268~^447.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~301~^4.^6^^~1~^~A~^^^1^3.^5.^^^^~2~^~04/01/2014~ -~17426~^~304~^30.^6^^~1~^~A~^^^1^23.^35.^^^^~2~^~04/01/2014~ -~17426~^~305~^212.^6^^~1~^~A~^^^1^152.^242.^^^^~2~^~04/01/2014~ -~17426~^~306~^273.^6^^~1~^~A~^^^1^198.^298.^^^^~2~^~04/01/2014~ -~17426~^~307~^86.^6^^~1~^~A~^^^1^72.^99.^^^^~2~^~04/01/2014~ -~17426~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17426~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17426~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17426~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17426~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17426~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17426~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~601~^56.^6^^~1~^~A~^^^1^44.^63.^^^^~2~^~04/01/2014~ -~17427~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~301~^13.^6^^~1~^~A~^^^1^12.^16.^^^^~2~^~04/01/2014~ -~17427~^~304~^33.^6^^~1~^~A~^^^1^30.^35.^^^^~2~^~04/01/2014~ -~17427~^~305~^214.^6^^~1~^~A~^^^1^185.^231.^^^^~2~^~04/01/2014~ -~17427~^~306~^239.^6^^~1~^~A~^^^1^209.^259.^^^^~2~^~04/01/2014~ -~17427~^~307~^85.^6^^~1~^~A~^^^1^73.^92.^^^^~2~^~04/01/2014~ -~17427~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17427~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17427~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17427~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~324~^32.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17427~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17427~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17427~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~601~^78.^6^^~1~^~A~^^^1^73.^81.^^^^~2~^~04/01/2014~ -~17428~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~268~^392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~301~^11.^6^^~1~^~A~^^^1^8.^15.^^^^~2~^~04/01/2014~ -~17428~^~304~^33.^6^^~1~^~A~^^^1^29.^35.^^^^~2~^~04/01/2014~ -~17428~^~305~^212.^6^^~1~^~A~^^^1^171.^281.^^^^~2~^~04/01/2014~ -~17428~^~306~^163.^6^^~1~^~A~^^^1^135.^196.^^^^~2~^~04/01/2014~ -~17428~^~307~^109.^6^^~1~^~A~^^^1^98.^115.^^^^~2~^~04/01/2014~ -~17428~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17428~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~324~^27.^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17428~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17428~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17428~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~601~^62.^6^^~1~^~A~^^^1^58.^65.^^^^~2~^~04/01/2014~ -~17429~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17429~^~301~^21.^6^^~1~^~A~^^^1^16.^27.^^^^~2~^~04/01/2014~ -~17429~^~304~^34.^6^^~1~^~A~^^^1^28.^38.^^^^~2~^~04/01/2014~ -~17429~^~305~^218.^6^^~1~^~A~^^^1^174.^248.^^^^~2~^~04/01/2014~ -~17429~^~306~^205.^6^^~1~^~A~^^^1^181.^240.^^^^~2~^~04/01/2014~ -~17429~^~307~^90.^6^^~1~^~A~^^^1^72.^132.^^^^~2~^~04/01/2014~ -~17429~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17429~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~324~^33.^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17429~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17429~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17429~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17429~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~601~^92.^6^^~1~^~A~^^^1^81.^99.^^^^~2~^~04/01/2014~ -~17430~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~301~^21.^6^^~1~^~A~^^^1^19.^24.^^^^~2~^~04/01/2014~ -~17430~^~304~^34.^6^^~1~^~A~^^^1^15.^46.^^^^~2~^~04/01/2014~ -~17430~^~305~^253.^6^^~1~^~A~^^^1^212.^289.^^^^~2~^~04/01/2014~ -~17430~^~306~^245.^6^^~1~^~A~^^^1^214.^272.^^^^~2~^~04/01/2014~ -~17430~^~307~^113.^6^^~1~^~A~^^^1^88.^149.^^^^~2~^~04/01/2014~ -~17430~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17430~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~ -~17430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~324~^40.^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17430~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17430~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~17430~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~601~^77.^6^^~1~^~A~^^^1^53.^105.^^^^~2~^~04/01/2014~ -~17431~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17431~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~268~^2106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17431~^~301~^31.^2^^~1~^~A~^^^1^30.^32.^^^^^~04/01/2014~ -~17431~^~304~^19.^2^^~1~^~A~^^^1^18.^20.^^^^^~04/01/2014~ -~17431~^~305~^133.^2^^~1~^~A~^^^1^124.^141.^^^^^~04/01/2014~ -~17431~^~306~^107.^2^^~1~^~A~^^^1^99.^115.^^^^^~04/01/2014~ -~17431~^~307~^89.^2^^~1~^~A~^^^1^84.^94.^^^^^~04/01/2014~ -~17431~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17431~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~324~^220.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~417~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~431~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~432~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~435~^0.^0^^~4~^~NC~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~601~^86.^2^^~1~^~A~^^^1^86.^87.^^^^^~04/01/2014~ -~17432~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~268~^2260.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17432~^~301~^58.^2^^~1~^~A~^^^1^54.^61.^^^^^~04/01/2014~ -~17432~^~304~^26.^2^^~1~^~A~^^^1^25.^26.^^^^^~04/01/2014~ -~17432~^~305~^168.^2^^~1~^~A~^^^1^159.^176.^^^^^~04/01/2014~ -~17432~^~306~^152.^2^^~1~^~A~^^^1^145.^159.^^^^^~04/01/2014~ -~17432~^~307~^103.^2^^~1~^~A~^^^1^82.^125.^^^^^~04/01/2014~ -~17432~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~ -~17432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17432~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~324~^142.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~417~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~431~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~432~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~435~^0.^0^^~4~^~NC~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~601~^85.^2^^~1~^~A~^^^1^83.^87.^^^^^~04/01/2014~ -~17433~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17433~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~268~^1857.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17433~^~301~^30.^2^^~1~^~A~^^^1^30.^30.^^^^^~04/01/2014~ -~17433~^~304~^23.^2^^~1~^~A~^^^1^21.^26.^^^^^~04/01/2014~ -~17433~^~305~^150.^2^^~1~^~A~^^^1^137.^162.^^^^^~04/01/2014~ -~17433~^~306~^179.^2^^~1~^~A~^^^1^154.^204.^^^^^~04/01/2014~ -~17433~^~307~^89.^2^^~1~^~A~^^^1^82.^96.^^^^^~04/01/2014~ -~17433~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~17433~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~324~^142.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~417~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~431~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~432~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~435~^0.^0^^~4~^~NC~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~601~^83.^2^^~1~^~A~^^^1^83.^83.^^^^^~04/01/2014~ -~17434~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17434~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~268~^2111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17434~^~301~^43.^2^^~1~^~A~^^^1^40.^46.^^^^^~04/01/2014~ -~17434~^~304~^24.^2^^~1~^~A~^^^1^24.^25.^^^^^~04/01/2014~ -~17434~^~305~^152.^2^^~1~^~A~^^^1^146.^158.^^^^^~04/01/2014~ -~17434~^~306~^155.^2^^~1~^~A~^^^1^136.^174.^^^^^~04/01/2014~ -~17434~^~307~^87.^2^^~1~^~A~^^^1^86.^88.^^^^^~04/01/2014~ -~17434~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~319~^0.^0^^~4~^~BFSN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17434~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~324~^181.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~417~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~431~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~432~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~435~^0.^0^^~4~^~NC~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~601~^82.^2^^~1~^~A~^^^1^82.^83.^^^^^~04/01/2014~ -~17435~^~208~^107.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~268~^447.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~306~^162.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~307~^107.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~17435~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~324~^31.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17435~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~208~^182.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~268~^762.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~304~^34.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~306~^201.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~307~^90.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17436~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~208~^198.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~268~^829.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~306~^229.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~324~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17437~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~208~^199.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~268~^831.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~301~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~304~^33.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~305~^242.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~306~^235.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~307~^111.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~324~^54.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17438~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17439~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~268~^793.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~305~^196.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~307~^70.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~319~^2.^0^^~4~^~BFSN~^~17400~^^^^^^^^^~10/01/2014~ -~17439~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~601~^107.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~305~^151.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~306~^192.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~307~^86.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~319~^2.^0^^~4~^~BFSN~^~17390~^^^^^^^^^~10/01/2014~ -~17440~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~601~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~305~^163.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~306~^227.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~307~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~319~^2.^0^^~4~^~BFSN~^~17391~^^^^^^^^^~10/01/2014~ -~17441~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~268~^771.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~307~^61.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~319~^2.^0^^~4~^~BFSN~^~17384~^^^^^^^^^~10/01/2014~ -~17442~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~601~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~305~^210.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~306~^311.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~319~^2.^0^^~4~^~BFSN~^~17385~^^^^^^^^^~10/01/2014~ -~17443~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~307~^83.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~319~^3.^0^^~4~^~BFSN~^~17074~^^^^^^^^^~10/01/2014~ -~17444~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~268~^898.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~305~^215.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~306~^308.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~307~^80.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~319~^2.^0^^~4~^~BFSN~^~17400~^^^^^^^^^~10/01/2014~ -~17445~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~601~^117.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~305~^167.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~306~^238.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~319~^3.^0^^~4~^~BFSN~^~17074~^^^^^^^^^~10/01/2014~ -~17446~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~306~^230.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~319~^3.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~10/01/2014~ -~17447~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~601~^97.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17448~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~268~^1020.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~306~^237.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~319~^4.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~ -~17448~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~601~^96.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~208~^538.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~17449~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~268~^2252.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~17449~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~305~^148.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~306~^207.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~601~^81.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~268~^2037.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~305~^92.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~306~^149.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~307~^69.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~208~^554.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~268~^2318.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~306~^164.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~307~^53.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~601~^110.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~268~^1919.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~305~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~306~^126.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~601~^90.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17453~^~208~^219.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~268~^918.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~601~^106.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~208~^187.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~268~^781.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~305~^161.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~306~^218.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~307~^80.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~208~^204.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~268~^855.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~306~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~268~^822.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~306~^210.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~307~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~208~^226.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~ -~17457~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~268~^944.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~ -~17457~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~307~^77.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~601~^113.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~208~^175.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~268~^734.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~306~^225.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~208~^187.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~268~^781.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~301~^2.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~306~^231.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17460~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~268~^597.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~301~^2.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~318~^5.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17461~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~268~^988.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~305~^220.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~306~^294.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~307~^85.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~319~^5.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~ -~17461~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~324~^0.^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17461~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~601~^103.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17462~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~268~^809.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~306~^227.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~307~^71.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17463~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~268~^1216.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17463~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~306~^228.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~318~^12.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17464~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17464~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~307~^82.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17464~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~601~^101.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~18001~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18001~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18001~^~268~^1103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~301~^219.^12^68.^~1~^~A~^^^1^99.^1043.^3^0.^437.^~2, 3~^~03/01/2014~ -~18001~^~304~^29.^12^1.^~1~^~A~^^^1^26.^45.^3^25.^33.^~2, 3~^~03/01/2014~ -~18001~^~305~^99.^12^7.^~1~^~A~^^^1^87.^183.^3^74.^122.^~2, 3~^~03/01/2014~ -~18001~^~306~^107.^12^4.^~1~^~A~^^^1^82.^166.^3^90.^123.^~2, 3~^~03/01/2014~ -~18001~^~307~^422.^12^7.^~1~^~A~^^^1^331.^479.^5^401.^442.^~2, 3~^~03/01/2014~ -~18001~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18001~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18001~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18001~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18001~^~417~^106.^6^4.^~1~^~A~^^^1^93.^119.^3^89.^121.^~2, 3~^~03/01/2014~ -~18001~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18001~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18001~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18002~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18002~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18002~^~301~^15.^2^^~1~^~A~^^^1^8.^23.^1^^^^~06/01/2015~ -~18002~^~304~^24.^2^^~1~^~A~^^^1^21.^27.^1^^^^~03/01/2005~ -~18002~^~305~^92.^2^^~1~^~A~^^^1^86.^99.^1^^^^~03/01/2005~ -~18002~^~306~^116.^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~307~^457.^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18002~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18002~^~338~^55.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~417~^131.^2^^~1~^~A~^^^1^117.^144.^1^^^^~03/01/2005~ -~18002~^~431~^103.^2^^~1~^~A~^^^1^98.^108.^1^^^^~03/01/2005~ -~18002~^~432~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18002~^~435~^203.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18002~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~636~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18003~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18003~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~18003~^~301~^13.^3^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~304~^25.^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~305~^84.^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~306~^68.^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~307~^505.^3^28.^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~318~^109.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18003~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18003~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18003~^~431~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18003~^~432~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18003~^~601~^24.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18005~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~268~^1146.^0^^~4~^^^^^^^^^^^~07/01/2012~ -~18005~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~304~^28.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~305~^100.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~306~^148.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~307~^407.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18005~^~318~^73.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~319~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~320~^21.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18005~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18005~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~338~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~417~^111.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18005~^~431~^90.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18005~^~432~^21.^0^^~4~^~NR~^^^^^^^^^^~08/01/1992~ -~18005~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18005~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18006~^~208~^294.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~268~^1230.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18006~^~301~^20.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~305~^83.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~306~^163.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~307~^370.^0^^~4~^~BFSN~^~18005~^^^^^^^^^~07/01/2012~ -~18006~^~318~^71.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~319~^23.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~320~^23.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~ -~18006~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18006~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~338~^56.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~417~^102.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~431~^86.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~18006~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18006~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18006~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18007~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~268~^1067.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~18007~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~304~^31.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~305~^110.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~306~^115.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~307~^590.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18007~^~318~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18007~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18007~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~417~^98.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~431~^52.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18007~^~432~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18007~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~268~^1414.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18009~^~301~^49.^23^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~304~^17.^20^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~305~^430.^20^35.^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~306~^224.^20^24.^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~307~^942.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18009~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18009~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18009~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18009~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~431~^58.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18009~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18009~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18010~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~10/01/2010~ -~18010~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~268~^1792.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18010~^~301~^179.^4^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~304~^25.^12^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~305~^585.^4^45.^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~306~^163.^4^22.^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~307~^1276.^4^74.^~1~^^^^^^^^^^^~10/01/2010~ -~18010~^~318~^4.^0^^~4~^^^^^^^^^^^~10/01/2010~ -~18010~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18010~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~18010~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18010~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~417~^125.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~431~^91.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~18010~^~432~^34.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~18010~^~435~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18010~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18011~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18011~^~268~^1402.^0^^~4~^^^^^^^^^^^ -~18011~^~301~^185.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~305~^470.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~306~^188.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~307~^955.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~318~^94.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18011~^~319~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18011~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18011~^~417~^52.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18011~^~431~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18011~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~435~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18011~^~601~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18012~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~268~^1132.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18012~^~301~^26.^2^^~9~^~MC~^^^1^25.^27.^1^^^^~04/01/2012~ -~18012~^~304~^15.^23^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~305~^400.^23^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~306~^159.^19^32.^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~307~^828.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18012~^~318~^0.^2^^~9~^~MC~^^^1^0.^0.^1^^^^~04/01/2012~ -~18012~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~18012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~18012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~18012~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18012~^~431~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18012~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18012~^~601~^0.^2^^~9~^~MC~^^^1^0.^0.^1^^^^~04/01/2012~ -~18013~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18013~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~268~^1337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18013~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~305~^465.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~306~^185.^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~ -~18013~^~307~^962.^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~ -~18013~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~18013~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18013~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~338~^11.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~417~^83.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~431~^78.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18013~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~18013~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18014~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~268~^1285.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~301~^51.^6^4.^~1~^~A~^^^1^34.^65.^5^39.^61.^~2, 3~^~11/01/2005~ -~18014~^~304~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^15.^17.^~2, 3~^~11/01/2005~ -~18014~^~305~^470.^6^7.^~1~^~A~^^^1^453.^496.^5^450.^489.^~2, 3~^~11/01/2005~ -~18014~^~306~^162.^5^11.^~1~^~A~^^^1^133.^193.^4^130.^192.^~2, 3~^~11/01/2005~ -~18014~^~307~^977.^2^^~9~^~MC~^^^1^943.^1011.^1^^^^~04/01/2012~ -~18014~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~431~^46.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18014~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~268~^1357.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~301~^27.^12^0.^~1~^~A~^^^1^25.^36.^10^25.^28.^~2, 3~^~03/01/2014~ -~18015~^~304~^18.^12^0.^~1~^~A~^^^1^15.^19.^7^16.^18.^~2, 3~^~11/01/2005~ -~18015~^~305~^446.^12^4.^~1~^~A~^^^1^420.^496.^10^435.^455.^~2, 3~^~03/01/2014~ -~18015~^~306~^152.^12^10.^~1~^~A~^^^1^108.^325.^7^126.^176.^~2, 3~^~03/01/2014~ -~18015~^~307~^1002.^12^20.^~1~^~A~^^^1^808.^1130.^9^956.^1048.^~2, 3~^~03/01/2014~ -~18015~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~18015~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~03/01/2014~ -~18015~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~18015~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18015~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18015~^~417~^63.^6^2.^~1~^~A~^^^1^49.^71.^4^55.^70.^~2, 3~^~03/01/2014~ -~18015~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18015~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18015~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18016~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18016~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18016~^~301~^235.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~305~^164.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~306~^121.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~307~^580.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~318~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~417~^61.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18016~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18016~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18016~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~636~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18017~^~268~^1100.^0^^~4~^^^^^^^^^^^ -~18017~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~304~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~305~^236.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~306~^456.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~307~^670.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18017~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18017~^~417~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~431~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18017~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18017~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18017~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18019~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18019~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18019~^~268~^1364.^0^^~4~^^^^^^^^^^^ -~18019~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~306~^134.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~307~^302.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~318~^493.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18019~^~319~^97.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18019~^~320~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18019~^~321~^102.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18019~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18019~^~431~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18019~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18019~^~601~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~636~^34.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18021~^~301~^70.^3^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~304~^63.^3^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~305~^112.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~306~^318.^3^66.^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~307~^631.^3^109.^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~318~^87.^1^^~1~^^^^^^^^^^^~01/01/2005~ -~18021~^~319~^25.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~18021~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18021~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~338~^71.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18021~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18021~^~432~^7.^9^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18021~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18022~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~268~^1749.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~18022~^~301~^57.^29^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~304~^24.^21^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~305~^489.^45^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~306~^113.^43^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~307~^817.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18022~^~318~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18022~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18022~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~322~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18022~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~338~^391.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18022~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18022~^~432~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18022~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18023~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18023~^~262~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~263~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~268~^1383.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~301~^135.^12^1.^~1~^~A~^^^1^49.^147.^5^130.^138.^~2, 3~^~07/01/2014~ -~18023~^~304~^17.^12^0.^~1~^~A~^^^1^15.^18.^5^15.^17.^~2, 3~^~08/01/2012~ -~18023~^~305~^391.^12^2.^~1~^~A~^^^1^285.^411.^5^383.^398.^~2, 3~^~07/01/2014~ -~18023~^~306~^133.^12^1.^~1~^~A~^^^1^126.^142.^5^127.^137.^~2, 3~^~08/01/2012~ -~18023~^~307~^599.^12^7.^~1~^~A~^^^1^511.^632.^5^579.^618.^~2, 3~^~08/01/2012~ -~18023~^~318~^168.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~18023~^~319~^31.^2^^~1~^~A~^^^1^30.^80.^^^^^~08/01/2012~ -~18023~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~18023~^~321~^26.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~322~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~324~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~334~^21.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~18023~^~338~^550.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~417~^55.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1998~ -~18023~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18023~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18023~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~18023~^~601~^57.^6^1.^~1~^~A~^^^1^48.^59.^2^52.^61.^~2, 3~^~08/01/2012~ -~18024~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18024~^~268~^1113.^0^^~4~^^^^^^^^^^^ -~18024~^~301~^249.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~305~^169.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~306~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~307~^658.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~318~^277.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~417~^77.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18024~^~431~^58.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18024~^~432~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~18024~^~601~^40.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18025~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~18025~^~301~^43.^27^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~304~^52.^13^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~305~^153.^13^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~306~^177.^15^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~307~^538.^21^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18025~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18025~^~431~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18025~^~432~^39.^11^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18025~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18027~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18027~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~268~^1201.^0^^~4~^^^^^^^^^^^~07/01/2012~ -~18027~^~301~^93.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~305~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~306~^115.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~307~^380.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18027~^~318~^211.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~319~^63.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~320~^63.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~324~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18027~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~417~^105.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~18027~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18027~^~432~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18027~^~601~^51.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~636~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18028~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18028~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~268~^1318.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~18028~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~306~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~307~^417.^0^^~4~^~BFSN~^~18027~^^^^^^^^^~07/01/2012~ -~18028~^~318~^231.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18028~^~319~^69.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18028~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~324~^21.^0^^~4~^~RK~^^^^^^^^^^~03/01/2009~ -~18028~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~417~^98.^0^^~4~^~RK~^^^^^^^^^^~07/01/2012~ -~18028~^~431~^44.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18028~^~432~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18028~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18028~^~601~^56.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~636~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18029~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~268~^1139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~301~^52.^6^16.^~1~^~A~^^^1^15.^102.^5^9.^94.^~2, 3~^~05/01/2014~ -~18029~^~304~^32.^6^1.^~1~^~A~^^^1^25.^38.^5^26.^37.^~2, 3~^~05/01/2014~ -~18029~^~305~^105.^6^5.^~1~^~A~^^^1^92.^131.^5^90.^119.^~2, 3~^~05/01/2014~ -~18029~^~306~^117.^6^3.^~1~^~A~^^^1^103.^124.^5^109.^125.^~2, 3~^~05/01/2014~ -~18029~^~307~^602.^6^28.^~1~^~A~^^^1^486.^674.^5^528.^674.^~2, 3~^~05/01/2014~ -~18029~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18029~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18029~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~417~^123.^3^12.^~1~^~A~^^^1^99.^141.^2^69.^176.^~2, 3~^~05/01/2014~ -~18029~^~431~^67.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~432~^56.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~435~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18030~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~268~^1335.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~301~^47.^2^^~1~^~A~^^^1^35.^60.^1^^^^~11/01/2005~ -~18030~^~304~^31.^2^^~1~^~A~^^^1^31.^31.^1^^^^~11/01/2005~ -~18030~^~305~^126.^2^^~1~^~A~^^^1^125.^126.^1^^^^~11/01/2005~ -~18030~^~306~^140.^2^^~1~^~A~^^^1^139.^141.^1^^^^~11/01/2005~ -~18030~^~307~^720.^2^^~1~^~A~^^^1^718.^722.^1^^^^~11/01/2005~ -~18030~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18030~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18030~^~338~^13.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~417~^140.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~431~^111.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~432~^29.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~435~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~18030~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18032~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18032~^~268~^1213.^0^^~4~^^^^^^^^^^^ -~18032~^~301~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~305~^114.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~307~^398.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~318~^194.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~319~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18032~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18032~^~417~^47.^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~ -~18032~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18032~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18032~^~601~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~636~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18033~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~268~^1083.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~301~^105.^6^2.^~1~^~A~^^^1^61.^125.^1^75.^134.^~2, 3~^~01/01/2017~ -~18033~^~304~^26.^6^1.^~1~^~A~^^^1^22.^43.^1^2.^49.^~2, 3~^~01/01/2017~ -~18033~^~305~^95.^6^1.^~1~^~A~^^^1^86.^99.^1^83.^106.^~2, 3~^~01/01/2017~ -~18033~^~306~^124.^6^3.^~1~^~A~^^^1^110.^160.^1^73.^173.^~2, 3~^~01/01/2017~ -~18033~^~307~^618.^6^20.^~1~^~A~^^^1^471.^742.^1^361.^874.^~2, 3~^~01/01/2017~ -~18033~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~18033~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18033~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18033~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18033~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18033~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~417~^102.^3^1.^~1~^~A~^^^1^98.^113.^1^88.^115.^~2, 3~^~01/01/2017~ -~18033~^~431~^18.^0^^~4~^~BFPN~^~18064~^^^^^^^^^~01/01/2017~ -~18033~^~432~^102.^3^1.^~1~^~A~^^^1^98.^113.^1^88.^115.^^~01/01/2017~ -~18033~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2017~ -~18036~^~208~^288.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~268~^1204.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~301~^111.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~304~^85.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~305~^247.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~306~^250.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~307~^414.^0^^~4~^~BFSN~^~28397~^^^^^^^^^~07/01/2012~ -~18036~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18036~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~338~^97.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~417~^70.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~431~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~432~^70.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18036~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18037~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18037~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~268~^987.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18037~^~301~^65.^3^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~304~^35.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~305~^141.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~306~^147.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18037~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~319~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18037~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18037~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~338~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~417~^81.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~18037~^~431~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18037~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18037~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18038~^~208~^259.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~268~^1084.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18038~^~301~^71.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~305~^116.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~306~^123.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~307~^387.^0^^~4~^~BFSN~^~18037~^^^^^^^^^~07/01/2012~ -~18038~^~318~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~319~^2.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18038~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18038~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18038~^~431~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18038~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18038~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18039~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~268~^1125.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18039~^~301~^66.^23^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~304~^37.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~305~^126.^10^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~306~^142.^12^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~307~^447.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18039~^~318~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18039~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18039~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18039~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18039~^~432~^27.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18039~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18040~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18040~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~268~^1222.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18040~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~306~^154.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~307~^486.^0^^~4~^~BFSN~^~18039~^^^^^^^^^~08/01/2012~ -~18040~^~318~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18040~^~319~^5.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18040~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18040~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~338~^75.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~417~^53.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18040~^~431~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18040~^~432~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18040~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18041~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18041~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~268~^1151.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18041~^~301~^86.^38^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~305~^97.^13^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~306~^120.^17^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~307~^536.^24^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~ -~18041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18041~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18041~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18041~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18041~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~338~^53.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~417~^107.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~431~^83.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18041~^~432~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18041~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18042~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~268~^1096.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18042~^~301~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~304~^69.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~305~^180.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~306~^170.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~307~^421.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18042~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18042~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18042~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18042~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~338~^53.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~18042~^~417~^35.^0^^~4~^^^^^^^^^^^~01/01/1999~ -~18042~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18042~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18042~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18042~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18043~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~268~^1025.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~18043~^~301~^124.^12^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~304~^65.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~305~^185.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~306~^322.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~307~^404.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18043~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18043~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~417~^116.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~431~^81.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18043~^~432~^35.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~435~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18043~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~208~^250.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~268~^1046.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18044~^~301~^68.^40^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~304~^54.^13^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~305~^178.^11^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~306~^208.^18^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~307~^596.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18044~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18044~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18044~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~338~^46.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~431~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18044~^~432~^34.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18044~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~268~^1146.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18047~^~301~^66.^29^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~305~^109.^13^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~306~^227.^15^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~307~^347.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18047~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18047~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18047~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~338~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~417~^106.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18047~^~432~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~435~^156.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18047~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18048~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~268~^1243.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18048~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~306~^246.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~307~^377.^0^^~4~^~BFSN~^~18047~^^^^^^^^^~08/01/2012~ -~18048~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18048~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18048~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~417~^98.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18048~^~432~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18048~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18048~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18049~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~268~^841.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18049~^~301~^57.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~304~^55.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~305~^139.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~306~^102.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~307~^459.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18049~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18049~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18049~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~417~^81.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~431~^47.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18049~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18049~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~208~^239.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~268~^1000.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18050~^~301~^68.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~304~^55.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~305~^144.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~306~^122.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~307~^547.^0^^~4~^~BFSN~^~18049~^^^^^^^^^~08/01/2012~ -~18050~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18050~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~321~^2.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18050~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~417~^82.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~431~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~432~^34.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18050~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18051~^~268~^879.^0^^~4~^^^^^^^^^^^ -~18051~^~301~^115.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~304~^24.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~305~^100.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~306~^124.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~307~^388.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~318~^6.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18051~^~417~^55.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18051~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18051~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18051~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~268~^849.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18053~^~301~^76.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~304~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~305~^78.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~306~^98.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~307~^513.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18053~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18053~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18053~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18053~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~338~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~417~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~431~^35.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18053~^~432~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18053~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18055~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~268~^907.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~301~^163.^3^2.^~1~^~A~^^^1^138.^183.^1^128.^198.^~2, 3~^~03/01/2011~ -~18055~^~304~^43.^3^1.^~1~^~A~^^^1^35.^54.^1^20.^64.^~2, 3~^~03/01/2011~ -~18055~^~305~^149.^3^2.^~1~^~A~^^^1^127.^175.^1^116.^180.^~2, 3~^~03/01/2011~ -~18055~^~306~^150.^3^2.^~1~^~A~^^^1^141.^164.^1^121.^178.^~2, 3~^~03/01/2011~ -~18055~^~307~^332.^3^7.^~1~^~A~^^^1^272.^405.^1^242.^420.^~2, 3~^~03/01/2011~ -~18055~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18055~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18055~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~417~^91.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~431~^63.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18055~^~432~^28.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18055~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18055~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18057~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~268~^866.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18057~^~301~^94.^14^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~304~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~305~^121.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~306~^76.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~307~^479.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18057~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18057~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18057~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~417~^95.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~18057~^~431~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18057~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18057~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18059~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~268~^1017.^0^^~4~^^^^^^^^^^^~07/01/2012~ -~18059~^~301~^69.^4^30.^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~304~^80.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~305~^178.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~306~^215.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~307~^269.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18059~^~318~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18059~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18059~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18059~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~338~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~417~^86.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~18059~^~432~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18059~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18060~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~268~^1084.^0^^~4~^^^^^^^^^^^~07/01/2012~ -~18060~^~301~^73.^103^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~304~^40.^38^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~305~^125.^37^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~306~^166.^53^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~307~^603.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18060~^~318~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~18060~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~18060~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18060~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~338~^54.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~417~^110.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~431~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~18060~^~432~^51.^4^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18060~^~601~^0.^7^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18061~^~208~^284.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~268~^1188.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~18061~^~301~^80.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~304~^43.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~305~^138.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~306~^183.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~307~^664.^0^^~4~^~BFSN~^~18060~^^^^^^^^^~08/01/2012~ -~18061~^~318~^4.^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18061~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~321~^4.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18061~^~334~^1.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~338~^56.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~417~^103.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~431~^64.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18061~^~432~^39.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18061~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18064~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18064~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18064~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~301~^125.^9^9.^~1~^~A~^^^1^98.^157.^5^100.^149.^~2, 3~^~04/01/2016~ -~18064~^~304~^41.^9^2.^~1~^~A~^^^1^35.^54.^5^34.^47.^~2, 3~^~04/01/2016~ -~18064~^~305~^129.^9^6.^~1~^~A~^^^1^112.^175.^5^112.^144.^~2, 3~^~04/01/2016~ -~18064~^~306~^141.^9^5.^~1~^~A~^^^1^128.^160.^5^127.^154.^~2, 3~^~04/01/2016~ -~18064~^~307~^473.^9^30.^~1~^~A~^^^1^375.^573.^5^395.^550.^~2, 3~^~04/01/2016~ -~18064~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18064~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~18064~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18064~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18064~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18064~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18064~^~338~^44.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~18064~^~432~^65.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18064~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18065~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~268~^1311.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~301~^165.^2^^~1~^~A~^^^1^160.^169.^1^^^^~11/01/2005~ -~18065~^~304~^59.^3^2.^~1~^~A~^^^1^53.^63.^2^46.^71.^~2, 3~^~11/01/2005~ -~18065~^~305~^188.^3^2.^~1~^~A~^^^1^184.^191.^2^179.^196.^~2, 3~^~11/01/2005~ -~18065~^~306~^223.^3^6.^~1~^~A~^^^1^216.^235.^2^196.^249.^~2, 3~^~11/01/2005~ -~18065~^~307~^601.^0^^~4~^~BFSN~^~18064~^^^^^^^^^~08/01/2012~ -~18065~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18065~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~338~^50.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~417~^86.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~431~^20.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~432~^65.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18065~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18069~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18069~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18069~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18069~^~268~^1113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18069~^~301~^144.^6^20.^~1~^~A~^^^1^87.^212.^5^92.^195.^~2, 3~^~05/01/2014~ -~18069~^~304~^23.^6^0.^~1~^~A~^^^1^22.^26.^5^21.^25.^~2, 3~^~05/01/2014~ -~18069~^~305~^98.^6^4.^~1~^~A~^^^1^85.^117.^5^85.^109.^~2, 3~^~05/01/2014~ -~18069~^~306~^126.^6^5.^~1~^~A~^^^1^107.^144.^5^111.^141.^~2, 3~^~05/01/2014~ -~18069~^~307~^490.^6^15.^~1~^~A~^^^1^417.^526.^5^450.^529.^~2, 3~^~05/01/2014~ -~18069~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18069~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18069~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18069~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~18069~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~18069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18069~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~18069~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18069~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18069~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~12/01/2002~ -~18069~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~12/01/2002~ -~18069~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~12/01/2002~ -~18069~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~18069~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2002~ -~18070~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18070~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18070~^~301~^119.^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~305~^103.^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~306~^131.^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~307~^537.^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~ -~18070~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18070~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18070~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18070~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~417~^104.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~431~^80.^0^^~4~^~RK~^^^^^^^^^^~07/01/2015~ -~18070~^~432~^23.^0^^~4~^~RK~^^^^^^^^^^~07/01/2015~ -~18070~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18070~^~601~^1.^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18071~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18071~^~268~^1146.^0^^~4~^^^^^^^^^^^ -~18071~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~305~^96.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~306~^111.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~307~^336.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~319~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18071~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18071~^~417~^85.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18071~^~431~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18071~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18071~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18073~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~18073~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~305~^115.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~306~^146.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~307~^359.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~319~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18073~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18073~^~417~^91.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18073~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18073~^~432~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18073~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18075~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18075~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18075~^~268~^1055.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~301~^161.^10^15.^~1~^~A~^^^1^109.^249.^7^123.^198.^~2, 3~^~04/01/2013~ -~18075~^~304~^75.^10^1.^~1~^~A~^^^1^66.^87.^6^71.^79.^~2, 3~^~04/01/2013~ -~18075~^~305~^212.^10^5.^~1~^~A~^^^1^190.^248.^6^198.^225.^~2, 3~^~04/01/2013~ -~18075~^~306~^254.^10^10.^~1~^~A~^^^1^207.^308.^3^222.^285.^~2, 3~^~04/01/2013~ -~18075~^~307~^455.^10^25.^~1~^~A~^^^1^255.^545.^7^394.^515.^~2, 3~^~04/01/2013~ -~18075~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~18075~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18075~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~18075~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~18075~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18075~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~18075~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18075~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18075~^~338~^87.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~18075~^~417~^42.^7^4.^~1~^~A~^^^1^24.^60.^4^28.^55.^~2, 3~^~04/01/2013~ -~18075~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2009~ -~18075~^~432~^42.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~18075~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18076~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18076~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18076~^~301~^130.^2^^~1~^~A~^^^1^127.^134.^1^^^^~11/01/2005~ -~18076~^~304~^99.^2^^~1~^~A~^^^1^97.^101.^1^^^^~11/01/2005~ -~18076~^~305~^303.^2^^~1~^~A~^^^1^296.^309.^1^^^^~11/01/2005~ -~18076~^~306~^326.^2^^~1~^~A~^^^1^313.^338.^1^^^^~11/01/2005~ -~18076~^~307~^565.^0^^~4~^~BFSN~^~18075~^^^^^^^^^~07/01/2015~ -~18076~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18076~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~338~^89.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~417~^52.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~432~^52.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18076~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18077~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18077~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18077~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~304~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~306~^314.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~307~^346.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18077~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18077~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18077~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~338~^89.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~417~^65.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~431~^18.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18077~^~432~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18077~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18078~^~262~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18078~^~263~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18078~^~268~^1276.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18078~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~306~^345.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~307~^381.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18078~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18078~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18078~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~338~^97.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~417~^67.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~431~^31.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18078~^~432~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18078~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18079~^~208~^395.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~268~^1653.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~301~^183.^6^2.^~1~^~A~^^^1^174.^194.^5^175.^190.^~2, 3~^~01/01/2003~ -~18079~^~304~^43.^6^0.^~1~^~A~^^^1^43.^44.^5^42.^44.^~2, 3~^~01/01/2003~ -~18079~^~305~^165.^6^1.^~1~^~A~^^^1^161.^168.^5^162.^168.^~2, 3~^~01/01/2003~ -~18079~^~306~^196.^6^2.^~1~^~A~^^^1^189.^201.^5^190.^201.^~2, 3~^~01/01/2003~ -~18079~^~307~^732.^6^3.^~1~^~A~^^^1^718.^745.^5^721.^741.^~2, 3~^~01/01/2003~ -~18079~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~18079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18079~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~18079~^~321~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18079~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~338~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~18079~^~417~^107.^6^3.^~1~^~A~^^^1^94.^120.^5^97.^116.^~2, 3~^~01/01/2003~ -~18079~^~431~^82.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~18079~^~432~^25.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18079~^~435~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~18079~^~636~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18080~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18080~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~268~^1724.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~18080~^~301~^22.^4^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~304~^32.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~305~^121.^4^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~306~^124.^5^33.^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~307~^713.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18080~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~18080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18080~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~417~^162.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~18080~^~432~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18080~^~435~^255.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18080~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18081~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~268~^1615.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18081~^~301~^97.^49^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~304~^40.^10^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~305~^141.^10^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~306~^246.^19^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~307~^1405.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18081~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18081~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18081~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~417~^168.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~431~^82.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18081~^~432~^86.^5^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~435~^225.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18081~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18082~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18082~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18082~^~301~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~305~^38.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~306~^67.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~307~^479.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18082~^~318~^497.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~319~^107.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~320~^114.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~321~^85.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18082~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~338~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18082~^~417~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~431~^18.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~432~^19.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18082~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/1992~ -~18084~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18084~^~268~^1628.^0^^~4~^^^^^^^^^^^~11/01/2004~ -~18084~^~301~^78.^20^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~304~^44.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~305~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~306~^204.^3^43.^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~307~^1429.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18084~^~318~^157.^1^^~1~^^^^^^^^^^^~11/01/2004~ -~18084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18084~^~320~^8.^1^^~1~^^^^^^^^^^^~08/01/2008~ -~18084~^~417~^175.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18084~^~431~^133.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18084~^~432~^42.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18084~^~435~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~18084~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18085~^~208~^179.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~268~^749.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18085~^~301~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~306~^62.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~307~^526.^0^^~4~^~BFSN~^~18084~^^^^^^^^^~07/01/2015~ -~18085~^~318~^340.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18085~^~319~^73.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~320~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18085~^~321~^58.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18085~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~417~^97.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18085~^~431~^89.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18085~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18085~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18086~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18086~^~301~^140.^6^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~305~^324.^1^^~1~^~A~^^^^^^^^^^~12/01/2005~ -~18086~^~306~^93.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~307~^749.^3^54.^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18086~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~ -~18086~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18086~^~431~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18086~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18086~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~208~^257.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~268~^1075.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18088~^~301~^84.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~304~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~305~^232.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~306~^135.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~307~^511.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~18088~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18088~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18088~^~321~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18088~^~322~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18088~^~334~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18088~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~431~^14.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18088~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18088~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18090~^~208~^252.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~263~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18090~^~268~^1054.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18090~^~301~^23.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~304~^6.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~305~^49.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~306~^39.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~307~^254.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18090~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18090~^~319~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18090~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~324~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18090~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~338~^27.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~431~^6.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18090~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18090~^~601~^37.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18092~^~268~^1736.^0^^~4~^^^^^^^^^^^ -~18092~^~301~^172.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~305~^247.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~306~^169.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~307~^567.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~318~^1930.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18092~^~320~^97.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18092~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~431~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18092~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18092~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18092~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18095~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18095~^~263~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~18095~^~268~^1104.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18095~^~301~^48.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~305~^105.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~306~^166.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~307~^164.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~318~^448.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18095~^~319~^69.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18095~^~321~^131.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18095~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18095~^~324~^14.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18095~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18095~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~18095~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18095~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18095~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18095~^~601~^42.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18096~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~262~^6.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~263~^215.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~268~^1629.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~301~^30.^6^1.^~1~^~A~^^^1^25.^38.^5^25.^34.^~2, 3~^~07/01/2011~ -~18096~^~304~^31.^6^1.^~1~^~A~^^^1^28.^35.^5^27.^34.^~2, 3~^~07/01/2011~ -~18096~^~305~^137.^6^5.^~1~^~A~^^^1^124.^155.^5^123.^150.^~2, 3~^~07/01/2011~ -~18096~^~306~^270.^6^8.^~1~^~A~^^^1^241.^292.^5^249.^290.^~2, 3~^~07/01/2011~ -~18096~^~307~^348.^6^19.^~1~^~A~^^^1^285.^407.^5^298.^397.^~2, 3~^~07/01/2011~ -~18096~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~319~^1.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18096~^~321~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~322~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~18096~^~334~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~337~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~338~^3.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18096~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18096~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18096~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18096~^~601~^22.^3^2.^~1~^~A~^^^1^16.^26.^2^9.^34.^~2, 3~^~08/01/2012~ -~18097~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18097~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18097~^~263~^207.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18097~^~268~^1634.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18097~^~301~^133.^44^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~304~^41.^36^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~305~^286.^32^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~306~^337.^40^24.^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~307~^866.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18097~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18097~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18097~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~417~^54.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18097~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18097~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18097~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18101~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18101~^~268~^1551.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18101~^~301~^60.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~304~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~305~^106.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~306~^140.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~307~^315.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~318~^140.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18101~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18101~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18101~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18102~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18102~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~268~^1490.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18102~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~306~^99.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18102~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18102~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~324~^8.^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~ -~18102~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~338~^4.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~431~^27.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18102~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~18102~^~601~^1.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18103~^~268~^1418.^0^^~4~^^^^^^^^^^^ -~18103~^~301~^59.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~304~^15.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~305~^101.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~306~^289.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18103~^~307~^339.^4^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~318~^287.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~319~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18103~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18103~^~417~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18103~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~ -~18103~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~ -~18103~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18103~^~601~^85.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18104~^~268~^1749.^0^^~4~^^^^^^^^^^^ -~18104~^~301~^54.^34^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~304~^22.^34^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~305~^108.^33^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~306~^123.^32^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~307~^351.^35^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~318~^111.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18104~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18104~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18104~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18104~^~432~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18104~^~601~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~208~^331.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18105~^~268~^1385.^0^^~4~^^^^^^^^^^^ -~18105~^~301~^38.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~304~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~305~^75.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~306~^78.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~307~^323.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~318~^123.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~319~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18105~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18105~^~417~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18105~^~431~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~ -~18105~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~ -~18105~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18105~^~601~^69.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18106~^~208~^311.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18106~^~268~^1301.^0^^~4~^^^^^^^^^^^ -~18106~^~301~^45.^3^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~304~^17.^3^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~305~^118.^3^27.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~306~^90.^3^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~307~^385.^3^19.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~318~^140.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18106~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18106~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18106~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18106~^~432~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18106~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18108~^~208~^318.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18108~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18108~^~268~^1331.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~18108~^~301~^136.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~305~^215.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~306~^112.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~307~^421.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~318~^139.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~18108~^~319~^35.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18108~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18108~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~324~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~338~^43.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~417~^48.^0^^~4~^~RK~^^^^^^^^^^~01/01/1999~ -~18108~^~431~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18108~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18108~^~601~^49.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18110~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18110~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~268~^1356.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18110~^~301~^33.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~306~^153.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~307~^101.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18110~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18110~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18110~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18110~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~417~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~431~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18110~^~432~^3.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18110~^~601~^5.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~208~^437.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18114~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~268~^1828.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18114~^~301~^94.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~305~^226.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~306~^341.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~307~^657.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18114~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18114~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18114~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~417~^51.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~431~^37.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18114~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18114~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18114~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18116~^~268~^1490.^0^^~4~^^^^^^^^^^^ -~18116~^~301~^71.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~304~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~305~^54.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~306~^439.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~318~^48.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18116~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18116~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18116~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18116~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18116~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18119~^~268~^1335.^0^^~4~^^^^^^^^^^^ -~18119~^~301~^120.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~305~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~306~^112.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~307~^319.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~318~^253.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~319~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18119~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18119~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18119~^~431~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18119~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18119~^~601~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18120~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~301~^47.^9^5.^~1~^~A~^^^1^26.^61.^5^32.^61.^~2, 3~^~04/01/2013~ -~18120~^~304~^8.^9^0.^~1~^~A~^^^1^7.^9.^5^7.^8.^~2, 3~^~04/01/2013~ -~18120~^~305~^140.^9^9.^~1~^~A~^^^1^96.^170.^5^115.^163.^~2, 3~^~04/01/2013~ -~18120~^~306~^149.^9^19.^~1~^~A~^^^1^72.^202.^5^97.^199.^~2, 3~^~04/01/2013~ -~18120~^~307~^377.^9^29.^~1~^~A~^^^1^252.^446.^5^301.^452.^~2, 3~^~04/01/2013~ -~18120~^~318~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~319~^69.^2^^~1~^~A~^^^1^53.^133.^^^^^~04/01/2013~ -~18120~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~324~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~334~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~338~^203.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~417~^42.^6^3.^~1~^~A~^^^1^11.^53.^2^30.^54.^~2, 3~^~04/01/2013~ -~18120~^~431~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~601~^66.^6^2.^~1~^~A~^^^1^51.^122.^4^57.^73.^~2, 3~^~04/01/2013~ -~18121~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18121~^~268~^1628.^0^^~4~^^^^^^^^^^^ -~18121~^~301~^64.^7^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~304~^13.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~305~^134.^6^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~306~^106.^4^25.^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~307~^400.^11^41.^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~318~^118.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18121~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18121~^~417~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18121~^~431~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18121~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18121~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18121~^~601~^58.^6^25.^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18126~^~268~^1448.^0^^~4~^^^^^^^^^^^ -~18126~^~301~^205.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~305~^143.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~306~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~307~^506.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~318~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~319~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18126~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18126~^~417~^53.^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~ -~18126~^~431~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18126~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18126~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18127~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~262~^6.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~263~^215.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~301~^116.^2^^~1~^~A~^^^1^11.^220.^1^^^^~10/01/2005~ -~18127~^~304~^36.^2^^~1~^~A~^^^1^33.^40.^1^^^^~10/01/2005~ -~18127~^~305~^87.^2^^~1~^~A~^^^1^67.^107.^1^^^^~10/01/2005~ -~18127~^~306~^176.^2^^~1~^~A~^^^1^161.^191.^1^^^^~10/01/2005~ -~18127~^~307~^332.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18127~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18127~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18127~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~417~^26.^2^^~1~^~A~^^^1^20.^32.^1^^^^~10/01/2005~ -~18127~^~431~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~10/01/2005~ -~18127~^~432~^13.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18127~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18127~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18128~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18128~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~301~^24.^2^^~1~^~A~^^^1^19.^28.^1^^^^~10/01/2007~ -~18128~^~304~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~10/01/2007~ -~18128~^~305~^185.^2^^~1~^~A~^^^1^180.^190.^1^^^^~10/01/2007~ -~18128~^~306~^71.^2^^~1~^~A~^^^1^59.^82.^1^^^^~10/01/2007~ -~18128~^~307~^470.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18128~^~318~^17.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18128~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~324~^4.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18128~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18128~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18128~^~417~^38.^2^^~1~^~A~^^^1^24.^51.^1^^^^~10/01/2007~ -~18128~^~431~^24.^2^^~1~^~A~^^^1^12.^35.^1^^^^~10/01/2007~ -~18128~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18128~^~601~^41.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18131~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18131~^~268~^1661.^0^^~4~^^^^^^^^^^^ -~18131~^~301~^26.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~305~^296.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~306~^149.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~307~^260.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18131~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18131~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~431~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18131~^~432~^9.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18131~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18133~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18133~^~301~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~306~^99.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~307~^623.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~18133~^~318~^154.^0^^~1~^^^^^^^^^^^~07/01/2012~ -~18133~^~319~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18133~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18133~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~338~^85.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~431~^34.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18133~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18133~^~601~^102.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18134~^~268~^1243.^0^^~4~^^^^^^^^^^^ -~18134~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~306~^141.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~307~^228.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~318~^258.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~319~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18134~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18134~^~417~^39.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18134~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18134~^~432~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18134~^~601~^170.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18135~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~268~^1771.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~301~^77.^16^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~305~^277.^16^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~306~^72.^8^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~307~^665.^8^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18135~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18135~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18135~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~417~^91.^1^^~13~^~AI~^^^^^^^^^^~05/01/2003~ -~18135~^~431~^63.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18139~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18139~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~268~^1494.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18139~^~301~^130.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~305~^93.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~306~^95.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~318~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18139~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18139~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~338~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~417~^38.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~431~^31.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18139~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18139~^~601~^2.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18140~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18140~^~262~^0.^0^^~4~^~BFZN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~263~^0.^0^^~4~^~BFZN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~301~^32.^6^2.^~1~^~A~^^^1^26.^42.^5^26.^37.^~2, 3~^~07/01/2011~ -~18140~^~304~^20.^6^2.^~1~^~A~^^^1^15.^27.^5^14.^25.^~2, 3~^~07/01/2011~ -~18140~^~305~^138.^6^6.^~1~^~A~^^^1^117.^158.^5^121.^153.^~2, 3~^~07/01/2011~ -~18140~^~306~^187.^6^16.^~1~^~A~^^^1^133.^233.^5^146.^228.^~2, 3~^~07/01/2011~ -~18140~^~307~^310.^6^14.^~1~^~A~^^^1^274.^364.^5^272.^347.^~2, 3~^~07/01/2011~ -~18140~^~318~^26.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~319~^7.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~320~^7.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~321~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~322~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~324~^6.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~334~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~337~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~338~^14.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~417~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~18140~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18140~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18140~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18140~^~601~^16.^3^1.^~1~^~A~^^^1^13.^18.^2^9.^22.^~2, 3~^~08/01/2012~ -~18141~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18141~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~268~^1636.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18141~^~301~^62.^31^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~304~^6.^32^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~305~^143.^31^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~306~^53.^32^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~307~^269.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18141~^~318~^108.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~319~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18141~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~324~^16.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~334~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~338~^104.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18141~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18141~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18141~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~18141~^~601~^75.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18142~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~268~^1768.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18142~^~301~^115.^44^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~304~^9.^32^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~305~^253.^28^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~306~^63.^36^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~307~^860.^0^^~4~^~T~^^^^^^^^^^~04/01/2013~ -~18142~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18142~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18142~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~417~^104.^1^^~13~^~AI~^^^^^^^^^^~05/01/2013~ -~18142~^~431~^95.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~18142~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18142~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18142~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18144~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~268~^1563.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18144~^~301~^211.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~304~^10.^46^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~305~^310.^55^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~306~^47.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~307~^728.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~18144~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18144~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~417~^68.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~431~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18144~^~432~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18144~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18144~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18146~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18146~^~268~^1510.^0^^~4~^^^^^^^^^^^ -~18146~^~301~^146.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~306~^91.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~307~^343.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~318~^139.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18146~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18146~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18146~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18146~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18146~^~601~^54.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18147~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~268~^1343.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~18147~^~301~^51.^4^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~304~^11.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~305~^93.^4^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~306~^90.^4^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~307~^438.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18147~^~318~^547.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~319~^156.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18147~^~320~^159.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18147~^~321~^34.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18147~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~338~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18147~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18147~^~432~^15.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18147~^~601~^55.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18148~^~268~^1146.^0^^~4~^^^^^^^^^^^ -~18148~^~301~^172.^6^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~304~^19.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~305~^234.^6^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~306~^211.^6^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~307~^380.^6^52.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~318~^366.^4^35.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~319~^92.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18148~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18148~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18148~^~432~^18.^10^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18148~^~601~^29.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~208~^405.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18151~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18151~^~263~^78.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18151~^~268~^1695.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18151~^~301~^29.^18^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~304~^31.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~305~^101.^12^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~306~^149.^11^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~307~^286.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18151~^~318~^69.^1^^~1~^^^^^^^^^^^~07/01/2012~ -~18151~^~319~^20.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~320~^20.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18151~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18151~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18151~^~417~^47.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18151~^~431~^35.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18151~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18151~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18151~^~601~^17.^4^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~208~^434.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18152~^~268~^1816.^0^^~4~^^^^^^^^^^^ -~18152~^~301~^19.^36^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~304~^40.^25^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~305~^82.^37^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~306~^219.^29^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~307~^303.^37^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~318~^11.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18152~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18152~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18152~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18152~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18152~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~208~^466.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18154~^~268~^1950.^0^^~4~^^^^^^^^^^^ -~18154~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~305~^132.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~306~^176.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~307~^343.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~318~^827.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18154~^~319~^161.^0^^~4~^~RP~^^^^^^^^^^~04/01/2002~ -~18154~^~320~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18154~^~321~^174.^0^^~4~^~RP~^^^^^^^^^^~04/01/2002~ -~18154~^~417~^29.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18154~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18154~^~432~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18154~^~601~^73.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18155~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~268~^1954.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18155~^~301~^29.^5^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~304~^12.^3^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~305~^102.^4^28.^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~306~^111.^3^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~307~^282.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18155~^~318~^673.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18155~^~319~^162.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18155~^~321~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~324~^16.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~18155~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18155~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~417~^76.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18155~^~431~^70.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18155~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18155~^~601~^117.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18156~^~208~^349.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18156~^~268~^1460.^0^^~4~^^^^^^^^^^^ -~18156~^~301~^34.^38^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~304~^32.^7^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~305~^83.^38^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~306~^138.^37^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~307~^192.^38^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18156~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18156~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18156~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18156~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18156~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18157~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18157~^~262~^10.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~263~^354.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~268~^1812.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~18157~^~301~^31.^16^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~304~^53.^13^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~305~^132.^15^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~306~^210.^16^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~307~^580.^18^38.^~1~^^^^^^^^^^^~07/01/2013~ -~18157~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18157~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18157~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~431~^39.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18157~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18157~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18157~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18158~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~262~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~263~^105.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~268~^1889.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~304~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~305~^63.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~306~^134.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~307~^418.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18158~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2002~ -~18158~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~338~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~417~^62.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18159~^~208~^492.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~262~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18159~^~263~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18159~^~268~^2060.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~301~^21.^12^0.^~1~^~A~^^^1^19.^24.^7^20.^21.^~2, 3~^~02/01/2013~ -~18159~^~304~^41.^12^0.^~1~^~A~^^^1^36.^49.^6^38.^43.^~2, 3~^~07/01/2014~ -~18159~^~305~^109.^12^0.^~1~^~A~^^^1^89.^117.^6^106.^111.^~2, 3~^~07/01/2014~ -~18159~^~306~^171.^12^3.^~1~^~A~^^^1^149.^198.^5^161.^179.^~2, 3~^~07/01/2014~ -~18159~^~307~^311.^12^5.^~1~^~A~^^^1^285.^365.^6^299.^323.^~2, 3~^~07/01/2014~ -~18159~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18159~^~319~^0.^2^^~1~^~A~^^^1^0.^1.^^^^~1~^~02/01/2013~ -~18159~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18159~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18159~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18159~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18159~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18159~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18159~^~417~^72.^6^6.^~1~^~A~^^^1^59.^90.^2^42.^100.^~2, 3~^~02/01/2013~ -~18159~^~431~^29.^2^^~1~^~A~^^^2^25.^33.^^^^^~04/01/2008~ -~18159~^~432~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18159~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~18160~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~268~^1858.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~301~^17.^6^0.^~1~^~A~^^^1^15.^18.^5^15.^17.^~2, 3~^~02/01/2013~ -~18160~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~02/01/2013~ -~18160~^~305~^61.^6^0.^~1~^~A~^^^1^59.^63.^5^58.^62.^~2, 3~^~02/01/2013~ -~18160~^~306~^130.^6^3.^~1~^~A~^^^1^119.^145.^5^120.^138.^~2, 3~^~02/01/2013~ -~18160~^~307~^276.^6^2.^~1~^~A~^^^1^266.^281.^5^270.^282.^~2, 3~^~02/01/2013~ -~18160~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18160~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~18160~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18160~^~417~^27.^3^1.^~1~^~A~^^^1^25.^31.^2^20.^34.^~2, 3~^~02/01/2013~ -~18160~^~431~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18160~^~432~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18161~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18161~^~262~^12.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~263~^91.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~268~^2079.^0^^~4~^^^^^^^^^^^ -~18161~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~304~^36.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~305~^80.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~306~^208.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~307~^290.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18161~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18161~^~417~^51.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18161~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18161~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18163~^~208~^451.^2^^~9~^~MC~^^^1^450.^453.^1^^^^~04/01/2012~ -~18163~^~262~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~263~^72.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~268~^1889.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18163~^~301~^14.^2^^~9~^~MC~^^^1^14.^14.^1^^^^~04/01/2012~ -~18163~^~304~^24.^9^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~305~^69.^9^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~306~^180.^19^27.^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~307~^321.^2^^~9~^~MC~^^^1^317.^326.^1^^^^~04/01/2012~ -~18163~^~318~^12.^2^^~9~^~MC~^^^1^4.^19.^1^^^^~04/01/2012~ -~18163~^~320~^4.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18163~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~431~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18163~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18163~^~435~^91.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~18163~^~601~^7.^2^^~9~^~MC~^^^1^6.^8.^1^^^^~04/01/2012~ -~18164~^~208~^492.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~268~^2059.^0^^~4~^^^^^^^^^^^ -~18164~^~301~^28.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~304~^27.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~305~^76.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~306~^200.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~307~^232.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~318~^59.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18164~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18164~^~417~^44.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18164~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18164~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18164~^~601~^27.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18165~^~208~^488.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18165~^~262~^16.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18165~^~263~^127.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18165~^~268~^2042.^0^^~4~^^^^^^^^^^^ -~18165~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~304~^55.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~307~^361.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~318~^683.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18165~^~319~^130.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18165~^~320~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18165~^~321~^150.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18165~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18165~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18165~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18165~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18166~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~262~^5.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18166~^~263~^184.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18166~^~268~^1939.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18166~^~301~^21.^12^0.^~1~^~A~^^^1^19.^65.^9^19.^22.^~2, 3~^~07/01/2014~ -~18166~^~304~^47.^12^0.^~1~^~A~^^^1^38.^55.^6^45.^48.^~2, 3~^~04/01/2013~ -~18166~^~305~^93.^12^1.^~1~^~A~^^^1^86.^135.^8^89.^95.^~2, 3~^~04/01/2013~ -~18166~^~306~^234.^12^16.^~1~^~A~^^^1^195.^318.^5^192.^275.^~2, 3~^~04/01/2013~ -~18166~^~307~^388.^12^9.^~1~^~A~^^^1^338.^525.^5^364.^411.^~2, 3~^~04/01/2013~ -~18166~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18166~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18166~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18166~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18166~^~417~^61.^5^7.^~1~^~A~^^^1^42.^77.^2^31.^90.^~2, 3~^~04/01/2013~ -~18166~^~431~^58.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~432~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18166~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18166~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2008~ -~18167~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18167~^~262~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~263~^132.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~268~^2013.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~18167~^~301~^35.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~304~^39.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~305~^90.^11^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~306~^240.^11^15.^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~307~^326.^11^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18167~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18167~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18167~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18167~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18167~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18167~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18167~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18168~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~18168~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~263~^190.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~268~^2081.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~18168~^~301~^16.^2^^~1~^~A~^^^1^16.^16.^1^^^^~03/01/2004~ -~18168~^~304~^36.^2^^~1~^~A~^^^1^36.^37.^1^^^^~03/01/2004~ -~18168~^~305~^69.^2^^~1~^~A~^^^1^68.^71.^1^^^^~03/01/2004~ -~18168~^~306~^137.^2^^~1~^~A~^^^1^134.^140.^1^^^^~03/01/2004~ -~18168~^~307~^351.^2^^~1~^~A~^^^1^346.^356.^1^^^^~03/01/2004~ -~18168~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~ -~18168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18168~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~ -~18168~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18168~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18168~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18168~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~417~^46.^2^^~1~^~A~^^^1^46.^46.^1^^^^~03/01/2004~ -~18168~^~431~^34.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18168~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18168~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18168~^~638~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~639~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~641~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18170~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18170~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~268~^1456.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18170~^~301~^64.^28^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~304~^27.^25^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~305~^62.^26^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~306~^207.^26^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~307~^350.^27^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18170~^~319~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18170~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18170~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~431~^25.^0^^~4~^^^^^^^^^^^~06/01/2003~ -~18170~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18170~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18171~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18171~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~268~^1582.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18171~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~304~^7.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~305~^35.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~306~^41.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18171~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18171~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~417~^66.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18171~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18171~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18172~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18172~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~268~^1741.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18172~^~301~^77.^24^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~304~^49.^23^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~305~^83.^24^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~306~^346.^22^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~307~^555.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18172~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18172~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18172~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18172~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~417~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~431~^82.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18172~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18172~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18172~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18173~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~268~^1799.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~301~^77.^16^0.^~1~^~A~^^^1^46.^445.^5^74.^78.^~2, 3~^~06/01/2014~ -~18173~^~304~^40.^16^1.^~1~^~A~^^^1^31.^48.^1^30.^49.^~2, 3~^~06/01/2014~ -~18173~^~305~^185.^16^1.^~1~^~A~^^^1^167.^243.^2^176.^193.^~2, 3~^~06/01/2014~ -~18173~^~306~^170.^16^3.^~1~^~A~^^^1^145.^252.^2^153.^186.^~2, 3~^~06/01/2014~ -~18173~^~307~^516.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18173~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18173~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18173~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~417~^91.^9^4.^~1~^~A~^^^1^54.^122.^2^71.^110.^~2, 3~^~06/01/2014~ -~18173~^~431~^72.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18174~^~208~^500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~18174~^~262~^3.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~263~^88.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~268~^2092.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~18174~^~301~^46.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~305~^87.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~307~^265.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~318~^8.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~320~^2.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18174~^~324~^1.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18174~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18174~^~338~^13.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~417~^50.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~431~^38.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~18174~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~18174~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18175~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18175~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~268~^1527.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18175~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~306~^113.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~307~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18175~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18175~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18175~^~321~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~322~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~324~^22.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18175~^~334~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~338~^266.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~417~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~431~^23.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18175~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18175~^~601~^221.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2006~ -~18176~^~208~^421.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18176~^~262~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18176~^~263~^159.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18176~^~268~^1761.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18176~^~301~^46.^21^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~304~^36.^21^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~305~^97.^21^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~306~^182.^21^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~307~^188.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18176~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18176~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~417~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~431~^20.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18176~^~432~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18176~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18176~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18177~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18177~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~268~^1799.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18177~^~301~^74.^14^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~304~^52.^9^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~305~^95.^10^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~306~^346.^12^30.^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~307~^459.^13^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18177~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18177~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18177~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~431~^82.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18177~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18177~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18177~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~208~^450.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18178~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~268~^1883.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18178~^~301~^37.^28^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~304~^33.^20^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~305~^138.^24^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~306~^142.^24^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~307~^520.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18178~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18178~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18178~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18178~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18178~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18178~^~338~^31.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~417~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18178~^~431~^52.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18178~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18178~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18178~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18179~^~268~^1711.^0^^~4~^^^^^^^^^^^ -~18179~^~301~^90.^3^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~304~^30.^3^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~305~^209.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~306~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~307~^349.^3^43.^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~318~^32.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18179~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18179~^~417~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18179~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18179~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18179~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18179~^~601~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18180~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18180~^~268~^1933.^0^^~4~^^^^^^^^^^^ -~18180~^~301~^25.^13^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~304~^48.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~305~^163.^3^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~306~^183.^9^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~307~^473.^9^33.^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~318~^28.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18180~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18180~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~431~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18180~^~432~^11.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18180~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18180~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18182~^~268~^1774.^0^^~4~^^^^^^^^^^^ -~18182~^~301~^31.^26^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~304~^28.^17^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~305~^104.^18^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~306~^147.^18^15.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~307~^294.^30^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~318~^70.^6^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18182~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18182~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18182~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18182~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18182~^~601~^24.^15^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18183~^~208~^471.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~268~^1971.^0^^~4~^^^^^^^^^^^ -~18183~^~301~^35.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~304~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~305~^116.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~306~^163.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~307~^327.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~318~^70.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18183~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18183~^~417~^27.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~ -~18183~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18183~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18183~^~601~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18184~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~268~^1846.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~301~^28.^14^0.^~1~^~A~^^^1^25.^36.^13^25.^30.^~2, 3~^~01/01/2017~ -~18184~^~304~^34.^14^1.^~1~^~A~^^^1^24.^40.^13^31.^36.^~2, 3~^~01/01/2017~ -~18184~^~305~^114.^14^2.^~1~^~A~^^^1^89.^135.^13^107.^120.^~2, 3~^~01/01/2017~ -~18184~^~306~^230.^14^10.^~1~^~A~^^^1^175.^279.^13^207.^252.^~2, 3~^~01/01/2017~ -~18184~^~307~^322.^14^7.^~1~^~A~^^^1^284.^370.^13^305.^338.^~2, 3~^~01/01/2017~ -~18184~^~417~^35.^8^4.^~1~^~A~^^^1^18.^56.^7^25.^44.^~2, 3~^~01/01/2017~ -~18184~^~432~^35.^8^4.^~1~^~A~^^^1^18.^56.^7^25.^44.^^~01/01/2017~ -~18185~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18185~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18185~^~268~^1978.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~301~^41.^5^8.^~1~^~A~^^^1^25.^59.^2^5.^75.^~2, 3~^~05/01/2014~ -~18185~^~304~^44.^5^3.^~1~^~A~^^^1^39.^51.^2^28.^58.^~2, 3~^~05/01/2014~ -~18185~^~305~^156.^5^47.^~1~^~A~^^^1^104.^257.^2^-48.^360.^~2, 3~^~05/01/2014~ -~18185~^~306~^202.^5^12.^~1~^~A~^^^1^178.^248.^2^149.^255.^~2, 3~^~05/01/2014~ -~18185~^~307~^463.^5^32.^~1~^~A~^^^1^265.^520.^2^322.^603.^~2, 3~^~05/01/2014~ -~18185~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~18185~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~18185~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18185~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18185~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18185~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18185~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18185~^~417~^57.^3^0.^~1~^~A~^^^1^56.^82.^1^54.^59.^~2, 3~^~05/01/2014~ -~18185~^~431~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~601~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~18186~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18186~^~268~^1912.^0^^~4~^^^^^^^^^^^ -~18186~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~304~^32.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~305~^87.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~306~^107.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~307~^336.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18186~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18186~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18186~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18186~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18186~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18187~^~268~^1916.^0^^~4~^^^^^^^^^^^ -~18187~^~301~^101.^34^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~304~^37.^22^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~305~^241.^23^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~306~^308.^26^31.^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~307~^397.^38^32.^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~318~^47.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18187~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18187~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18187~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18187~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18187~^~601~^27.^17^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18188~^~208~^503.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~268~^2105.^0^^~4~^^^^^^^^^^^ -~18188~^~301~^111.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~305~^264.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~306~^338.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~307~^436.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~318~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18188~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18188~^~417~^44.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~ -~18188~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18188~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18188~^~601~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18189~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18189~^~268~^1987.^0^^~4~^^^^^^^^^^^ -~18189~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~304~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~305~^116.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~306~^231.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~307~^518.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~318~^647.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18189~^~319~^125.^0^^~4~^^^^^^^^^^^~04/01/2002~ -~18189~^~320~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18189~^~321~^138.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18189~^~417~^55.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18189~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18189~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18189~^~601~^31.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~208~^478.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18190~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18190~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18190~^~268~^2000.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18190~^~301~^53.^19^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~304~^49.^19^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~305~^188.^18^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~306~^192.^19^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~307~^368.^19^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18190~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18190~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18190~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18190~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~417~^61.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18190~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18190~^~432~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18190~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18190~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18191~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18191~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18191~^~268~^1678.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18191~^~301~^46.^4^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~304~^21.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~305~^83.^3^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~306~^140.^3^22.^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~307~^418.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18191~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18191~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18191~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18191~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18191~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~417~^32.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18191~^~431~^23.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18191~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18191~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18191~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18192~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18192~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18192~^~268~^2151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~301~^13.^12^0.^~1~^~A~^^^1^11.^16.^8^12.^13.^~2, 3~^~05/01/2014~ -~18192~^~304~^14.^12^0.^~1~^~A~^^^1^13.^15.^10^14.^14.^~2, 3~^~05/01/2014~ -~18192~^~305~^66.^12^0.^~1~^~A~^^^1^64.^69.^8^65.^66.^~2, 3~^~05/01/2014~ -~18192~^~306~^88.^12^1.^~1~^~A~^^^1^80.^98.^10^85.^90.^~2, 3~^~05/01/2014~ -~18192~^~307~^353.^12^2.^~1~^~A~^^^1^272.^417.^10^348.^358.^~2, 3~^~05/01/2014~ -~18192~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18192~^~338~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~417~^81.^6^8.^~1~^~A~^^^1^54.^106.^2^48.^114.^~2, 3~^~05/01/2014~ -~18192~^~431~^61.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18192~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18193~^~208~^542.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18193~^~268~^2268.^0^^~4~^^^^^^^^^^^ -~18193~^~301~^30.^23^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~304~^18.^22^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~305~^85.^23^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~306~^73.^23^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~307~^281.^23^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18193~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18193~^~417~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18193~^~431~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18193~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18193~^~601~^33.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~208~^426.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18196~^~268~^1782.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~18196~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~306~^335.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~307~^83.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18196~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18196~^~417~^48.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18196~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18196~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~208~^450.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18198~^~262~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~263~^61.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~268~^1883.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18198~^~301~^46.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~305~^109.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~306~^199.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~307~^244.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18198~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18198~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18198~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18198~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~417~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~431~^48.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18198~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18198~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18198~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18199~^~208~^461.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18199~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~263~^96.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~268~^1929.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~18199~^~301~^98.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~304~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~305~^200.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~306~^295.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~307~^342.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~18199~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18199~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18199~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18199~^~431~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18199~^~432~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18199~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18199~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18200~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18200~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~268~^1879.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18200~^~301~^54.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~305~^122.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~306~^175.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~307~^273.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18200~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18200~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18200~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18200~^~334~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~337~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~338~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~417~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~431~^39.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18200~^~432~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18200~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18200~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~208~^535.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18201~^~268~^2238.^0^^~4~^^^^^^^^^^^ -~18201~^~301~^43.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~304~^51.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~305~^154.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~306~^294.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~307~^412.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18201~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18201~^~417~^54.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18201~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18201~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18201~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18201~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18202~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~262~^0.^0^^~4~^~BFNN~^~18213~^^^^^^^^^~06/01/2015~ -~18202~^~263~^0.^0^^~4~^~BFNN~^~18213~^^^^^^^^^~06/01/2015~ -~18202~^~268~^2221.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~305~^40.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~306~^57.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~307~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18202~^~320~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~321~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~322~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~324~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~334~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~337~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~338~^31.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~417~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18202~^~431~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18202~^~432~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18202~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~268~^1941.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~301~^35.^9^9.^~1~^~A~^^^1^15.^71.^4^9.^60.^~2, 3~^~05/01/2014~ -~18204~^~304~^13.^9^0.^~1~^~A~^^^1^10.^15.^4^11.^13.^~2, 3~^~05/01/2014~ -~18204~^~305~^99.^9^14.^~1~^~A~^^^1^54.^158.^4^59.^137.^~2, 3~^~05/01/2014~ -~18204~^~306~^87.^9^5.^~1~^~A~^^^1^70.^104.^4^73.^101.^~2, 3~^~05/01/2014~ -~18204~^~307~^385.^9^28.^~1~^~A~^^^1^213.^539.^4^306.^463.^~2, 3~^~05/01/2014~ -~18204~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~18204~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~324~^0.^0^^~4~^~BFNN~^~18159~^^^^^^^^^~05/01/2014~ -~18204~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~338~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18204~^~417~^72.^6^10.^~1~^~A~^^^1^50.^105.^2^25.^117.^~2, 3~^~05/01/2014~ -~18204~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~432~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~601~^12.^2^^~1~^~A~^^^1^1.^47.^^^^^~05/01/2014~ -~18205~^~208~^436.^2^^~9~^~MC~^^^1^428.^443.^1^^^^~04/01/2012~ -~18205~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~268~^1823.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18205~^~301~^8.^2^^~9~^~MC~^^^1^7.^8.^1^^^^~04/01/2012~ -~18205~^~304~^7.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~305~^169.^11^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~306~^147.^7^66.^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~307~^328.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18205~^~318~^37.^1^^~1~^^^^^^^^^^^~04/01/2012~ -~18205~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18205~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~417~^63.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18205~^~601~^11.^2^^~9~^~MC~^^^1^11.^12.^1^^^^~04/01/2012~ -~18206~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18206~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~268~^2046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18206~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~306~^163.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~307~^362.^0^^~4~^~BFSN~^~18205~^^^^^^^^^~07/01/2015~ -~18206~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18206~^~319~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~320~^12.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~18206~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18206~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~338~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~417~^70.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~431~^61.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~18206~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~18206~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18206~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18209~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~262~^9.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~263~^77.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~301~^27.^6^1.^~1~^~A~^^^1^22.^33.^5^22.^31.^~2, 3~^~06/01/2010~ -~18209~^~304~^16.^6^0.^~1~^~A~^^^1^14.^19.^5^13.^17.^~2, 3~^~06/01/2010~ -~18209~^~305~^72.^6^2.^~1~^~A~^^^1^65.^84.^5^64.^78.^~2, 3~^~06/01/2010~ -~18209~^~306~^117.^6^5.^~1~^~A~^^^1^102.^131.^5^102.^130.^~2, 3~^~06/01/2010~ -~18209~^~307~^103.^6^6.^~1~^~A~^^^1^94.^135.^5^86.^119.^~2, 3~^~06/01/2010~ -~18209~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~417~^77.^4^15.^~1~^^^^1^55.^122.^3^27.^125.^~2, 3~^~06/01/2010~ -~18209~^~431~^75.^4^15.^~1~^~A~^^^1^54.^121.^3^26.^124.^~2, 3~^~06/01/2010~ -~18209~^~432~^1.^4^0.^~1~^~AS~^^^1^1.^1.^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~636~^102.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18210~^~208~^483.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18210~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~268~^2021.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18210~^~301~^27.^38^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~304~^14.^31^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~305~^75.^36^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~306~^91.^33^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~307~^388.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18210~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18210~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18210~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18210~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~417~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18210~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18210~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18211~^~208~^558.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18211~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~268~^2335.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18211~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~306~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~307~^253.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18211~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18211~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18211~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~338~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~417~^55.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18211~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18211~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18212~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~268~^1845.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18212~^~301~^48.^51^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~304~^14.^47^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~305~^104.^47^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~306~^97.^46^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~307~^388.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18212~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18212~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18212~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18212~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~431~^51.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18212~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18212~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18212~^~601~^51.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18213~^~208~^455.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~262~^0.^0^^~4~^~BFNN~^~18185~^^^^^^^^^~06/01/2015~ -~18213~^~263~^0.^0^^~4~^~BFNN~^~18185~^^^^^^^^^~06/01/2015~ -~18213~^~268~^1903.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~301~^36.^17^0.^~1~^~A~^^^1^9.^53.^8^33.^38.^~2, 3~^~06/01/2015~ -~18213~^~304~^12.^17^0.^~1~^~A~^^^1^9.^15.^9^11.^12.^~2, 3~^~08/01/1992~ -~18213~^~305~^88.^17^1.^~1~^~A~^^^1^50.^115.^10^85.^91.^~2, 3~^~06/01/2015~ -~18213~^~306~^99.^17^2.^~1~^~A~^^^1^68.^120.^7^92.^105.^~2, 3~^~06/01/2015~ -~18213~^~307~^325.^17^7.^~1~^~A~^^^1^185.^402.^6^307.^343.^~2, 3~^~06/01/2015~ -~18213~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~18213~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~18213~^~321~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~322~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~324~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~334~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~337~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~338~^1.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~417~^83.^9^3.^~1~^~A~^^^1^61.^99.^2^66.^100.^~2, 3~^~06/01/2015~ -~18213~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18213~^~432~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~601~^9.^2^^~1~^~A~^^^1^0.^15.^^^^~1~^~06/01/2015~ -~18214~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18214~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18214~^~268~^2044.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~301~^136.^12^2.^~1~^~A~^^^1^108.^168.^10^130.^140.^~2, 3~^~03/01/2011~ -~18214~^~304~^25.^12^0.^~1~^~A~^^^1^22.^28.^9^24.^25.^~2, 3~^~03/01/2011~ -~18214~^~305~^200.^12^1.^~1~^~A~^^^1^173.^229.^8^195.^204.^~2, 3~^~03/01/2011~ -~18214~^~306~^156.^12^2.^~1~^~A~^^^1^134.^178.^10^150.^160.^~2, 3~^~03/01/2011~ -~18214~^~307~^973.^12^28.^~1~^~A~^^^1^688.^1280.^9^908.^1037.^~2, 3~^~03/01/2011~ -~18214~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18214~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~321~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18214~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18214~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18214~^~334~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18214~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18214~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18214~^~417~^152.^1^^~13~^~AI~^^^^^^^^^^~05/01/2003~ -~18214~^~431~^127.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18214~^~432~^25.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~435~^241.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18214~^~601~^3.^6^0.^~1~^~A~^^^1^2.^5.^3^3.^3.^~2, 3~^~03/01/2011~ -~18215~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~268~^2074.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~301~^50.^6^0.^~1~^~A~^^^1^46.^52.^5^47.^52.^~2, 3~^~12/01/2002~ -~18215~^~304~^56.^6^0.^~1~^~A~^^^1^54.^58.^5^54.^57.^~2, 3~^~12/01/2002~ -~18215~^~305~^268.^6^7.^~1~^~A~^^^1^233.^283.^5^247.^288.^~2, 3~^~12/01/2002~ -~18215~^~306~^218.^6^4.^~1~^~A~^^^1^205.^237.^5^206.^230.^~2, 3~^~12/01/2002~ -~18215~^~307~^829.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18215~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~319~^1.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18215~^~320~^1.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18215~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18215~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~417~^94.^5^2.^~1~^~A~^^^1^90.^101.^4^87.^100.^~2, 3~^~12/01/2002~ -~18215~^~431~^69.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~18215~^~432~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18215~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18215~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~ -~18216~^~208~^366.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18216~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~268~^1531.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18216~^~301~^31.^4^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~304~^78.^4^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~305~^269.^4^19.^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~306~^319.^4^34.^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~307~^410.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18216~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18216~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18216~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~338~^194.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18216~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18216~^~432~^22.^16^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18216~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~208~^395.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18217~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~268~^1653.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18217~^~301~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~305~^89.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~306~^112.^4^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18217~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18217~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18217~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18217~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18217~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~338~^18.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2001~ -~18217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~18217~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18217~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18217~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18218~^~268~^1636.^0^^~4~^^^^^^^^^^^ -~18218~^~301~^40.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~304~^24.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18218~^~305~^148.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18218~^~306~^150.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~318~^42.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~319~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18218~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18218~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2001~ -~18218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~18218~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2001~ -~18218~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~18218~^~601~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18219~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18219~^~268~^1469.^0^^~4~^^^^^^^^^^^ -~18219~^~301~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~304~^134.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~305~^305.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~306~^316.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~307~^2.^5^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18219~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18219~^~417~^35.^9^1.^~1~^^^^^^^^^^^~01/01/1999~ -~18219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18219~^~432~^35.^9^1.^~1~^^^^^^^^^^^~01/01/1999~ -~18219~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18219~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18220~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~268~^1632.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18220~^~301~^93.^15^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~304~^59.^8^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~305~^196.^12^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~306~^202.^13^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~307~^598.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18220~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18220~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18220~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18220~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18220~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~417~^124.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18220~^~431~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18220~^~432~^26.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18220~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18221~^~268~^1628.^0^^~4~^^^^^^^^^^^ -~18221~^~301~^78.^8^15.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~304~^39.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~305~^183.^6^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~306~^193.^6^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~307~^899.^5^58.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18221~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18221~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18221~^~431~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18221~^~432~^22.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18221~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18222~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18222~^~268~^1565.^0^^~4~^^^^^^^^^^^ -~18222~^~301~^43.^3^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~304~^56.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~305~^165.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~306~^148.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~307~^837.^3^50.^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18222~^~417~^132.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18222~^~431~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18222~^~432~^24.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18222~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18223~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~268~^1865.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18223~^~301~^172.^9^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~304~^22.^9^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~305~^303.^9^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~306~^114.^9^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~307~^687.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~18223~^~318~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18223~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18223~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~417~^90.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~431~^70.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18223~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18223~^~435~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18223~^~601~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~208~^407.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18224~^~268~^1703.^0^^~4~^^^^^^^^^^^ -~18224~^~301~^27.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~304~^36.^12^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~305~^153.^15^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~306~^245.^14^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~307~^253.^15^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~318~^41.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~319~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18224~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18224~^~417~^87.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18224~^~431~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18224~^~432~^64.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18224~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18224~^~601~^78.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18225~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18225~^~268~^2013.^0^^~4~^^^^^^^^^^^ -~18225~^~301~^222.^5^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~304~^37.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~305~^339.^4^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~306~^342.^5^61.^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~307~^1044.^5^73.^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~318~^334.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18225~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18225~^~417~^81.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18225~^~431~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18225~^~432~^16.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18225~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18225~^~601~^9.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18226~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~268~^1397.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18226~^~301~^40.^21^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~304~^121.^21^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~305~^334.^21^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~306~^495.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~307~^557.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18226~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18226~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18226~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~338~^245.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~417~^45.^17^5.^~1~^^^^^^^^^^^~01/01/1999~ -~18226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18226~^~432~^45.^17^5.^~1~^^^^^^^^^^^~02/01/2003~ -~18226~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18226~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18227~^~268~^1594.^0^^~4~^^^^^^^^^^^ -~18227~^~301~^44.^5^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~304~^106.^5^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~305~^307.^5^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~306~^454.^5^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~307~^887.^6^51.^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18227~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18227~^~417~^52.^2^^~1~^^^^^^^^^^^~01/01/1999~ -~18227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18227~^~432~^52.^2^^~1~^^^^^^^^^^^~01/01/1999~ -~18227~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18227~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18228~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18228~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18228~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18228~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18228~^~301~^19.^12^0.^~1~^~A~^^^1^18.^23.^5^18.^20.^~2, 3~^~02/01/2013~ -~18228~^~304~^23.^12^0.^~1~^~A~^^^1^21.^29.^5^22.^24.^~2, 3~^~02/01/2013~ -~18228~^~305~^102.^12^0.^~1~^~A~^^^1^99.^125.^5^100.^103.^~2, 3~^~07/01/2014~ -~18228~^~306~^152.^12^3.^~1~^~A~^^^1^142.^177.^5^143.^161.^~2, 3~^~07/01/2014~ -~18228~^~307~^941.^12^17.^~1~^~A~^^^1^750.^1110.^6^896.^985.^~2, 3~^~07/01/2014~ -~18228~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18228~^~319~^1.^2^^~1~^~A~^^^1^0.^1.^^^^~1~^~02/01/2013~ -~18228~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18228~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18228~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18228~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18228~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18228~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18228~^~417~^134.^6^2.^~1~^~A~^^^1^99.^146.^3^126.^142.^~2, 3~^~02/01/2013~ -~18228~^~431~^117.^2^^~1~^~A~^^^1^108.^126.^1^^^^~05/01/2013~ -~18228~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18228~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18228~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~04/01/2008~ -~18229~^~208~^510.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18229~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18229~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18229~^~268~^2132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~301~^120.^12^2.^~1~^~A~^^^1^37.^146.^5^115.^125.^~2, 3~^~07/01/2014~ -~18229~^~304~^18.^12^0.^~1~^~A~^^^1^15.^20.^5^17.^18.^~2, 3~^~07/01/2014~ -~18229~^~305~^248.^12^1.^~1~^~A~^^^1^225.^259.^6^244.^252.^~2, 3~^~07/01/2014~ -~18229~^~306~^118.^12^5.^~1~^~A~^^^1^103.^138.^5^105.^130.^~2, 3~^~02/01/2013~ -~18229~^~307~^726.^12^18.^~1~^~A~^^^1^638.^877.^5^678.^774.^~2, 3~^~07/01/2014~ -~18229~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~18229~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2014~ -~18229~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~18229~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18229~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~417~^92.^6^3.^~1~^~A~^^^1^77.^102.^2^77.^106.^~2, 3~^~07/01/2014~ -~18229~^~431~^84.^2^^~1~^~A~^^^1^83.^84.^1^^^^~05/01/2013~ -~18229~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18230~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18230~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~268~^1996.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18230~^~301~^257.^6^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~304~^36.^5^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~305~^406.^5^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~306~^429.^6^53.^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~307~^978.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18230~^~318~^62.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18230~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18230~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~417~^100.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~431~^86.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18230~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18230~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18230~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18231~^~208~^494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~18231~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~268~^2067.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~18231~^~301~^81.^6^16.^~1~^~A~^^^1^46.^135.^5^39.^121.^~2, 3~^~12/01/2002~ -~18231~^~304~^55.^6^1.^~1~^~A~^^^1^52.^57.^5^52.^57.^~2, 3~^~12/01/2002~ -~18231~^~305~^274.^6^2.^~1~^~A~^^^1^267.^280.^5^267.^280.^~2, 3~^~12/01/2002~ -~18231~^~306~^215.^6^5.^~1~^~A~^^^1^201.^235.^5^201.^228.^~2, 3~^~12/01/2002~ -~18231~^~307~^801.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18231~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~18231~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~18231~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18231~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~417~^86.^6^2.^~1~^~A~^^^1^75.^90.^5^80.^91.^~2, 3~^~12/01/2002~ -~18231~^~431~^52.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~18231~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18231~^~435~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18231~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18231~^~636~^49.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18232~^~208~^455.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18232~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18232~^~268~^1903.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~301~^92.^12^2.^~1~^~A~^^^1^20.^121.^6^85.^99.^~2, 3~^~05/01/2014~ -~18232~^~304~^72.^12^1.^~1~^~A~^^^1^41.^80.^10^69.^74.^~2, 3~^~05/01/2014~ -~18232~^~305~^302.^12^5.^~1~^~A~^^^1^146.^325.^6^288.^314.^~2, 3~^~05/01/2014~ -~18232~^~306~^283.^12^4.^~1~^~A~^^^1^172.^314.^10^273.^292.^~2, 3~^~05/01/2014~ -~18232~^~307~^699.^12^35.^~1~^~A~^^^1^578.^900.^5^608.^789.^~2, 3~^~05/01/2014~ -~18232~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18232~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18232~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18232~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18232~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18232~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18232~^~338~^180.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18232~^~417~^38.^6^6.^~1~^~A~^^^1^21.^175.^2^12.^63.^~2, 3~^~05/01/2014~ -~18232~^~431~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~18232~^~432~^36.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18232~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18233~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18233~^~268~^2079.^0^^~4~^^^^^^^^^^^ -~18233~^~301~^204.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~304~^54.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~305~^382.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~306~^306.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~307~^839.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18233~^~318~^71.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~320~^21.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18233~^~417~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18233~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18233~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18233~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18233~^~601~^7.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18234~^~268~^2071.^0^^~4~^^^^^^^^^^^ -~18234~^~301~^170.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~305~^347.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~306~^297.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~307~^807.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18234~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18234~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18234~^~431~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18234~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18234~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18234~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18235~^~208~^427.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18235~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18235~^~268~^1786.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~301~^36.^4^0.^~1~^~A~^^^1^36.^37.^3^35.^37.^~2, 3~^~10/01/2008~ -~18235~^~304~^110.^4^1.^~1~^~A~^^^1^106.^112.^3^105.^113.^~2, 3~^~10/01/2008~ -~18235~^~305~^331.^4^3.^~1~^~A~^^^1^322.^337.^3^320.^340.^~2, 3~^~10/01/2008~ -~18235~^~306~^345.^4^3.^~1~^~A~^^^1^336.^349.^3^334.^354.^~2, 3~^~10/01/2008~ -~18235~^~307~^800.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18235~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18235~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18235~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18235~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~338~^179.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18235~^~417~^28.^8^0.^~1~^^^^^^^^^^^~01/01/1999~ -~18235~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~432~^28.^8^0.^~1~^^^^^^^^^^^~10/01/2008~ -~18235~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18236~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18236~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~268~^1603.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18236~^~301~^23.^15^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~304~^24.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~305~^104.^16^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~306~^115.^14^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~307~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18236~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18236~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~18236~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~18236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18236~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~18236~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~338~^76.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~417~^136.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~431~^114.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~18236~^~432~^22.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18236~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18236~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18237~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~268~^1507.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18237~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~305~^119.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~307~^483.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~318~^1183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18237~^~319~^274.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~320~^288.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~321~^159.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~324~^55.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~334~^4.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~338~^237.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~417~^53.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~431~^31.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~432~^22.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18237~^~601~^171.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18239~^~208~^406.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18239~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~268~^1699.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~18239~^~301~^37.^26^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~304~^16.^25^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~305~^105.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~306~^118.^25^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~307~^384.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18239~^~318~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18239~^~319~^202.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~320~^206.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18239~^~321~^38.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18239~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~431~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~18239~^~432~^28.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18239~^~601~^67.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18240~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18240~^~268~^1063.^0^^~4~^^^^^^^^^^^ -~18240~^~301~^30.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~305~^58.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~306~^90.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~307~^274.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~318~^380.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18240~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18240~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18240~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18240~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18240~^~432~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18240~^~601~^31.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~208~^414.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18241~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~268~^1732.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18241~^~301~^53.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~305~^130.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~306~^132.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~307~^361.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18241~^~318~^805.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~319~^197.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~320~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~18241~^~321~^89.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18241~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18241~^~431~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18241~^~432~^33.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18241~^~601~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18242~^~268~^1703.^0^^~4~^^^^^^^^^^^ -~18242~^~301~^76.^5^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~304~^31.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~305~^115.^4^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~306~^124.^6^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~307~^698.^6^60.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18242~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18242~^~417~^132.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18242~^~431~^110.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18242~^~432~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~435~^209.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18242~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18243~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~268~^1946.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18243~^~301~^96.^40^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~304~^42.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~305~^140.^5^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~306~^181.^15^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~307~^1333.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18243~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18243~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18243~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18243~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~417~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~431~^65.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18243~^~432~^40.^8^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18243~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18244~^~208~^403.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18244~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~268~^1686.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18244~^~301~^71.^30^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~304~^19.^31^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~305~^107.^30^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~306~^125.^29^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~307~^414.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18244~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18244~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18244~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~338~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~417~^68.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~431~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18244~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18244~^~601~^21.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18245~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~268~^1565.^0^^~4~^^^^^^^^^^^~01/01/2009~ -~18245~^~301~^35.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~304~^15.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~305~^108.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~306~^98.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~307~^417.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18245~^~318~^128.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~319~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18245~^~321~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18245~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~338~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18245~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18245~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18245~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18245~^~601~^23.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18246~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18246~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~268~^1552.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18246~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~307~^445.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18246~^~318~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~319~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18246~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18246~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~338~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~431~^31.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18246~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18246~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18246~^~601~^114.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18248~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18248~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18248~^~268~^1815.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~301~^40.^5^0.^~1~^~A~^^^1^31.^47.^3^38.^42.^~2, 3~^~04/01/2014~ -~18248~^~304~^17.^5^0.^~1~^~A~^^^1^16.^19.^3^16.^17.^~2, 3~^~04/01/2014~ -~18248~^~305~^260.^5^5.^~1~^~A~^^^1^246.^292.^1^200.^319.^~2, 3~^~04/01/2014~ -~18248~^~306~^134.^5^4.^~1~^~A~^^^1^125.^146.^2^115.^151.^~2, 3~^~04/01/2014~ -~18248~^~307~^477.^5^8.^~1~^~A~^^^1^452.^526.^1^401.^551.^~2, 3~^~04/01/2014~ -~18248~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18248~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18248~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~417~^92.^4^1.^~1~^~A~^^^1^83.^98.^2^82.^100.^~2, 3~^~04/01/2014~ -~18248~^~431~^76.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~601~^10.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18249~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18249~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~263~^53.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~268~^1892.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18249~^~301~^24.^2^^~1~^~A~^^^1^24.^25.^1^^^^~10/01/2005~ -~18249~^~304~^30.^2^^~1~^~A~^^^1^24.^36.^1^^^^~10/01/2005~ -~18249~^~305~^210.^2^^~1~^~A~^^^1^185.^235.^1^^^^~10/01/2005~ -~18249~^~306~^201.^2^^~1~^~A~^^^1^158.^244.^1^^^^~10/01/2005~ -~18249~^~307~^326.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18249~^~318~^16.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18249~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18249~^~338~^24.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~417~^65.^2^^~1~^~A~^^^1^64.^65.^1^^^^~10/01/2005~ -~18249~^~431~^37.^2^^~1~^~A~^^^1^35.^38.^1^^^^~10/01/2005~ -~18249~^~432~^28.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18249~^~435~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18249~^~601~^19.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18250~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18250~^~268~^1782.^0^^~4~^^^^^^^^^^^ -~18250~^~301~^60.^15^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~304~^17.^7^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~305~^117.^6^19.^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~306~^102.^6^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~307~^402.^19^22.^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~318~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18250~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18250~^~417~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18250~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18250~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18250~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18250~^~601~^32.^15^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18251~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18251~^~263~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~ -~18251~^~268~^1745.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18251~^~301~^213.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~304~^34.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~305~^162.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~306~^106.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~307~^215.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18251~^~318~^39.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18251~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18251~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~417~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~431~^28.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18251~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18251~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18251~^~601~^57.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18253~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~268~^1724.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18253~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~305~^123.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~306~^78.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~307~^345.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18253~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18253~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~417~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~431~^34.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18253~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18253~^~601~^11.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18254~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~268~^1510.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18254~^~301~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~305~^76.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~306~^80.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~307~^309.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18254~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18254~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18254~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~431~^56.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18254~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18254~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18254~^~601~^24.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18255~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18255~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18255~^~268~^1760.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~301~^101.^8^13.^~1~^~A~^^^1^19.^176.^5^65.^136.^~2, 3~^~08/01/2012~ -~18255~^~304~^17.^8^0.^~1~^~A~^^^1^15.^18.^2^15.^19.^~2, 3~^~08/01/2012~ -~18255~^~305~^117.^8^4.^~1~^~A~^^^1^76.^181.^6^106.^128.^~2, 3~^~08/01/2012~ -~18255~^~306~^102.^8^1.^~1~^~A~^^^1^91.^123.^5^96.^106.^~2, 3~^~08/01/2012~ -~18255~^~307~^316.^8^10.^~1~^~A~^^^1^218.^498.^6^290.^342.^~2, 3~^~08/01/2012~ -~18255~^~318~^23.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~320~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~18255~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18255~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~417~^108.^2^^~1~^~A~^^^1^98.^117.^1^^^^~11/01/2005~ -~18255~^~431~^68.^2^^~1~^~A~^^^1^59.^76.^1^^^^~11/01/2005~ -~18255~^~432~^40.^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~18255~^~435~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18255~^~601~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18256~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18256~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~268~^1423.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18256~^~301~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~305~^85.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~306~^79.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~307~^455.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18256~^~318~^71.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18256~^~321~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~322~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18256~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~338~^108.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~417~^68.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~431~^51.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18256~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18256~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18256~^~601~^26.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18258~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18258~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18258~^~301~^163.^2^^~1~^~A~^^^1^143.^182.^1^^^^~03/01/2005~ -~18258~^~304~^24.^2^^~1~^~A~^^^1^24.^24.^1^^^^~03/01/2005~ -~18258~^~305~^92.^2^^~1~^~A~^^^1^85.^100.^1^^^^~03/01/2005~ -~18258~^~306~^109.^2^^~1~^~A~^^^1^104.^113.^1^^^^~03/01/2005~ -~18258~^~307~^425.^2^^~1~^~A~^^^1^408.^441.^1^^^^~05/01/2013~ -~18258~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18258~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18258~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18258~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~417~^94.^2^^~1~^~A~^^^1^73.^115.^1^^^^~03/01/2005~ -~18258~^~431~^55.^2^^~1~^~A~^^^1^36.^73.^1^^^^~11/01/2006~ -~18258~^~432~^40.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18258~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18258~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18259~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~268~^1130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~301~^197.^2^^~1~^~A~^^^1^175.^218.^1^^^^~03/01/2005~ -~18259~^~304~^28.^2^^~1~^~A~^^^1^28.^29.^1^^^^~03/01/2005~ -~18259~^~305~^107.^2^^~1~^~A~^^^1^99.^116.^1^^^^~03/01/2005~ -~18259~^~306~^129.^2^^~1~^~A~^^^1^118.^140.^1^^^^~03/01/2005~ -~18259~^~307~^477.^2^^~1~^~A~^^^1^455.^498.^1^^^^~03/01/2005~ -~18259~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18259~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18259~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18259~^~338~^47.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~417~^119.^2^^~1~^~A~^^^1^96.^141.^1^^^^~03/01/2005~ -~18259~^~431~^88.^2^^~1~^~A~^^^1^77.^98.^1^^^^~03/01/2005~ -~18259~^~432~^31.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18259~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18259~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18260~^~208~^235.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~268~^983.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18260~^~301~^196.^10^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~304~^41.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~305~^81.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~306~^156.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18260~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18260~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18260~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~417~^80.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18260~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18260~^~432~^35.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~18260~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18262~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18262~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~301~^114.^2^^~1~^~A~^^^1^80.^147.^1^^^^~03/01/2005~ -~18262~^~304~^23.^2^^~1~^~A~^^^1^23.^24.^1^^^^~03/01/2005~ -~18262~^~305~^91.^2^^~1~^~A~^^^1^85.^98.^1^^^^~03/01/2005~ -~18262~^~306~^173.^2^^~1~^~A~^^^1^162.^184.^1^^^^~03/01/2005~ -~18262~^~307~^299.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18262~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18262~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18262~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18262~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18262~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18262~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18262~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18262~^~417~^74.^2^^~1~^~A~^^^1^70.^78.^1^^^^~03/01/2005~ -~18262~^~431~^54.^2^^~1~^~A~^^^1^53.^55.^1^^^^~03/01/2005~ -~18262~^~432~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18262~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18262~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18262~^~636~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18263~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18263~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18263~^~268~^1153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~301~^139.^2^^~1~^~A~^^^1^95.^184.^1^^^^~03/01/2005~ -~18263~^~304~^28.^2^^~1~^~A~^^^1^27.^28.^1^^^^~03/01/2005~ -~18263~^~305~^108.^2^^~1~^~A~^^^1^99.^117.^1^^^^~03/01/2005~ -~18263~^~306~^194.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~18263~^~307~^342.^0^^~4~^~BFSN~^~18262~^^^^^^^^^~08/01/2012~ -~18263~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18263~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18263~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~338~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~417~^86.^2^^~1~^~A~^^^1^76.^95.^1^^^^~03/01/2005~ -~18263~^~431~^66.^2^^~1~^~A~^^^1^62.^69.^1^^^^~03/01/2005~ -~18263~^~432~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18263~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18263~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~636~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18264~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~268~^933.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18264~^~301~^178.^11^22.^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~304~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~305~^107.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~306~^186.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18264~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18264~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18264~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~338~^92.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~417~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18264~^~432~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18264~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18264~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~208~^203.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~268~^849.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18266~^~301~^265.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~304~^71.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~305~^282.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~306~^210.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~307~^364.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18266~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18266~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18266~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18266~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~338~^91.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~417~^49.^0^^~4~^^^^^^^^^^^~01/01/1999~ -~18266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18266~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18266~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18266~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18268~^~268~^891.^0^^~4~^^^^^^^^^^^ -~18268~^~301~^107.^52^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~304~^17.^26^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~305~^139.^24^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~306~^134.^46^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~307~^495.^46^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~318~^187.^39^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18268~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18268~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18268~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18268~^~432~^24.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18268~^~601~^82.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18269~^~268~^958.^0^^~4~^^^^^^^^^^^ -~18269~^~301~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~306~^134.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~307~^479.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~318~^503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18269~^~319~^118.^0^^~4~^^^^^^^^^^^~04/01/2002~ -~18269~^~320~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18269~^~321~^66.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18269~^~417~^43.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18269~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18269~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18269~^~601~^116.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18270~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~268~^1410.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18270~^~301~^278.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~305~^189.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~306~^144.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~307~^668.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18270~^~319~^38.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18270~^~321~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~322~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18270~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~338~^401.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18270~^~431~^69.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18270~^~432~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18270~^~601~^45.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18271~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~268~^1745.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18271~^~301~^25.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~305~^97.^13^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~306~^112.^13^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~307~^256.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18271~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18271~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18271~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18271~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~417~^173.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~431~^168.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18271~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~435~^291.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18271~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18272~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~268~^1682.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18272~^~301~^44.^13^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~304~^31.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~305~^103.^13^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~306~^145.^13^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18272~^~318~^0.^1^^~1~^^^^^^^^^^^~07/01/2012~ -~18272~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18272~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18272~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~417~^140.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~431~^136.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18272~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18272~^~435~^236.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18272~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18273~^~268~^1238.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~18273~^~301~^200.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~306~^121.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~307~^467.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~318~^140.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18273~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18273~^~417~^51.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18273~^~431~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18273~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18273~^~601~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18274~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~268~^1568.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~301~^44.^15^0.^~1~^~A~^^^1^36.^59.^2^40.^47.^~2, 3~^~07/01/2014~ -~18274~^~304~^10.^15^0.^~1~^~A~^^^1^9.^12.^6^9.^9.^~2, 3~^~11/01/2005~ -~18274~^~305~^146.^15^4.^~1~^~A~^^^1^122.^165.^2^127.^163.^~2, 3~^~07/01/2014~ -~18274~^~306~^121.^15^7.^~1~^~A~^^^1^79.^167.^2^91.^150.^~2, 3~^~07/01/2014~ -~18274~^~307~^336.^15^4.^~1~^~A~^^^1^258.^446.^3^321.^350.^~2, 3~^~07/01/2014~ -~18274~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~319~^21.^3^^~1~^~A~^^^1^18.^27.^^^^~2, 3~^~07/01/2014~ -~18274~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~ -~18274~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~338~^37.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~417~^48.^1^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~18274~^~431~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~18274~^~432~^12.^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~18274~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18274~^~601~^30.^1^^~1~^^^^^^^^^^^~08/01/2012~ -~18275~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18275~^~268~^1224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18275~^~301~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~305~^220.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~306~^48.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~307~^479.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~318~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18275~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~18275~^~417~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18277~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18277~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~268~^1310.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18277~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~305~^59.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~306~^83.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~307~^417.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18277~^~318~^318.^1^^~1~^^^^^^^^^^^~07/01/2012~ -~18277~^~319~^94.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18277~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18277~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~338~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~417~^65.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~431~^54.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18277~^~432~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18277~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18277~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18278~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18278~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~18278~^~301~^189.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~305~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~306~^123.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~307~^441.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~318~^141.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~319~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18278~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18278~^~417~^48.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18278~^~431~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18278~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18278~^~601~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18279~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~268~^1278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18279~^~301~^74.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18279~^~304~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~305~^284.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18279~^~306~^69.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~307~^385.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18279~^~318~^208.^2^^~1~^^^^^^^^^^^~07/01/2012~ -~18279~^~319~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18279~^~321~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~322~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18279~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~338~^263.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18279~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18279~^~432~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18279~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18279~^~601~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18280~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18280~^~268~^1343.^0^^~4~^^^^^^^^^^^ -~18280~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~305~^384.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~306~^131.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~307~^795.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~318~^210.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~319~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18280~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18280~^~417~^57.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18280~^~431~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18280~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18280~^~601~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18281~^~268~^1448.^0^^~4~^^^^^^^^^^^ -~18281~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~304~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~305~^151.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~306~^92.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~307~^430.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~318~^97.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18281~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18281~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18281~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18281~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18281~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18281~^~601~^13.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18282~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18282~^~268~^1322.^0^^~4~^^^^^^^^^^^ -~18282~^~301~^259.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~305~^177.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~307~^585.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~318~^241.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~417~^75.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18282~^~431~^57.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~18282~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~18282~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18283~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~268~^1130.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18283~^~301~^63.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~304~^157.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~305~^376.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~306~^507.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~307~^393.^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18283~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18283~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18283~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~338~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~417~^89.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~431~^71.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18283~^~432~^18.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~435~^139.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18283~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18284~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18284~^~268~^1657.^0^^~4~^^^^^^^^^^^ -~18284~^~301~^36.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~304~^87.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~305~^480.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~306~^200.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~307~^700.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18284~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18284~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18284~^~432~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18284~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18284~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18288~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18288~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18288~^~268~^977.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~301~^78.^6^0.^~1~^~A~^^^1^75.^81.^5^75.^80.^~2, 3~^~08/01/2012~ -~18288~^~304~^14.^6^0.^~1~^~A~^^^1^14.^14.^5^13.^13.^~2, 3~^~08/01/2004~ -~18288~^~305~^215.^6^1.^~1~^~A~^^^1^212.^219.^5^211.^218.^~2, 3~^~08/01/2012~ -~18288~^~306~^90.^6^2.^~1~^~A~^^^1^83.^98.^5^84.^95.^~2, 3~^~08/01/2012~ -~18288~^~307~^461.^6^3.^~1~^~A~^^^1^449.^474.^5^451.^470.^~2, 3~^~08/01/2012~ -~18288~^~318~^1511.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18288~^~319~^453.^2^^~1~^~A~^^^1^451.^454.^1^^^^~08/01/2012~ -~18288~^~320~^453.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18288~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18288~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~18288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18288~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18288~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~18288~^~338~^59.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18288~^~417~^71.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~431~^57.^0^^~4~^~O~^^^^^^^^^^~12/01/2004~ -~18288~^~432~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2004~ -~18288~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18288~^~601~^18.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18289~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~301~^344.^17^2.^~1~^~A~^^^1^253.^421.^6^337.^351.^~2, 3~^~04/01/2011~ -~18289~^~304~^28.^17^0.^~1~^~A~^^^1^21.^31.^7^26.^28.^~2, 3~^~04/01/2011~ -~18289~^~305~^600.^17^3.^~1~^~A~^^^1^546.^727.^7^592.^607.^~2, 3~^~04/01/2011~ -~18289~^~306~^191.^17^5.^~1~^~A~^^^1^115.^334.^5^177.^204.^~2, 3~^~04/01/2011~ -~18289~^~307~^1082.^17^13.^~1~^~A~^^^1^964.^1290.^7^1050.^1112.^~2, 3~^~04/01/2011~ -~18289~^~601~^2.^5^0.^~1~^~A~^^^1^1.^21.^2^1.^2.^~1, 2, 3~^~04/01/2011~ -~18290~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18290~^~268~^812.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~18290~^~301~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~305~^334.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~306~^175.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~307~^628.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~318~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~319~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18290~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18290~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18290~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18290~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18290~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18290~^~601~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18291~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~268~^1485.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18291~^~301~^342.^134^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~304~^31.^60^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~305~^627.^135^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~306~^191.^82^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~307~^1148.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18291~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18291~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18291~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18291~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~338~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~417~^136.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~431~^127.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18291~^~432~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~435~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18291~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18292~^~268~^912.^0^^~4~^^^^^^^^^^^ -~18292~^~301~^215.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~305~^313.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~306~^199.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~307~^505.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~318~^250.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~319~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18292~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18292~^~417~^36.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18292~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18292~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18292~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18293~^~268~^950.^0^^~4~^^^^^^^^^^^ -~18293~^~301~^219.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~305~^159.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~307~^439.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~318~^196.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18293~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18293~^~417~^38.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18293~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18293~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18293~^~601~^59.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18294~^~268~^929.^0^^~4~^^^^^^^^^^^ -~18294~^~301~^206.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~305~^151.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~307~^412.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~318~^199.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~319~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18294~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18294~^~417~^36.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18294~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18294~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18294~^~601~^56.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18295~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~268~^1423.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18295~^~301~^476.^33^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~304~^190.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~305~^913.^33^19.^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~306~^316.^20^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~307~^684.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18295~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~ -~18295~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18295~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18295~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~338~^154.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~417~^53.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~431~^18.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18295~^~432~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18295~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18295~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18297~^~268~^1460.^0^^~4~^^^^^^^^^^^ -~18297~^~301~^99.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~304~^47.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~305~^596.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~306~^676.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~307~^456.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~318~^126.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18297~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18297~^~417~^107.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18297~^~431~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18297~^~432~^14.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18297~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18299~^~268~^1439.^0^^~4~^^^^^^^^^^^ -~18299~^~301~^449.^19^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~304~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~305~^782.^19^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~306~^445.^9^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~307~^1419.^9^32.^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~318~^31.^10^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18299~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18299~^~417~^82.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18299~^~432~^54.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18299~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18299~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18300~^~268~^870.^0^^~4~^^^^^^^^^^^ -~18300~^~301~^250.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~304~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~305~^373.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~306~^279.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~307~^572.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~318~^226.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~319~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18300~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18300~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18300~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18300~^~432~^21.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18300~^~601~^61.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18301~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~268~^992.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18301~^~301~^11.^40^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~304~^7.^36^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~305~^24.^35^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~306~^65.^39^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~307~^201.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18301~^~318~^124.^7^24.^~1~^^^^^^^^^^^~11/01/2006~ -~18301~^~319~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18301~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18301~^~334~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~431~^23.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18301~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18301~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18302~^~268~^1109.^0^^~4~^^^^^^^^^^^ -~18302~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~306~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~307~^211.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~318~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18302~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18302~^~417~^24.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18302~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18302~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18302~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18303~^~268~^1050.^0^^~4~^^^^^^^^^^^ -~18303~^~301~^73.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~305~^167.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~306~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~307~^290.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~318~^408.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18303~^~320~^95.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18303~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18303~^~432~^7.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18303~^~601~^29.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18304~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18304~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~268~^1125.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18304~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~305~^92.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~306~^165.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~307~^240.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~318~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~18304~^~319~^59.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~18304~^~321~^21.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~322~^5.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~324~^32.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~18304~^~334~^1.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~338~^46.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18304~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18304~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18304~^~601~^51.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18305~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~268~^971.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18305~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~304~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~305~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~306~^50.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~307~^287.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18305~^~318~^140.^1^^~1~^^^^^^^^^^^~07/01/2012~ -~18305~^~319~^41.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18305~^~321~^39.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18305~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~431~^23.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18305~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18305~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~18305~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18306~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18306~^~268~^1025.^0^^~4~^^^^^^^^^^^ -~18306~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~306~^50.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~307~^185.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~318~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18306~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18306~^~417~^23.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18306~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18306~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18306~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18308~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~268~^1088.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18308~^~301~^12.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~305~^29.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~306~^81.^5^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~307~^246.^5^43.^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18308~^~319~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18308~^~321~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18308~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~431~^19.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18308~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18308~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18309~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18309~^~268~^1130.^0^^~4~^^^^^^^^^^^ -~18309~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~306~^77.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~307~^191.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~318~^409.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18309~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18309~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18309~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18309~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18309~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18310~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18310~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18310~^~263~^56.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18310~^~301~^66.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~305~^79.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~306~^161.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~307~^266.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~318~^166.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~319~^45.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~320~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~431~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18310~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18310~^~601~^12.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18312~^~208~^260.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18312~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~263~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~18312~^~301~^77.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~305~^231.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~307~^460.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~318~^413.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~319~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18312~^~320~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18312~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~431~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18312~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18312~^~601~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18313~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~268~^1247.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18313~^~301~^29.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~305~^85.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~306~^65.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~307~^204.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18313~^~318~^90.^1^^~1~^^^^^^^^^^^~07/01/2012~ -~18313~^~319~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18313~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~324~^6.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18313~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18313~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18313~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18313~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18314~^~268~^1155.^0^^~4~^^^^^^^^^^^ -~18314~^~301~^72.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~305~^169.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~306~^141.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~307~^329.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~318~^405.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18314~^~320~^95.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18314~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18314~^~432~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18314~^~601~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18316~^~268~^1088.^0^^~4~^^^^^^^^^^^ -~18316~^~301~^81.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~304~^18.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~305~^122.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~306~^175.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~307~^335.^3^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~318~^110.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~319~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18316~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18316~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18316~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18316~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18316~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18316~^~601~^35.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18317~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~268~^879.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18317~^~301~^80.^4^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~305~^112.^3^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~306~^106.^4^23.^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~307~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18317~^~318~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18317~^~319~^57.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18317~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~324~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18317~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~338~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~417~^20.^8^0.^~1~^^^^^^^^^^^~03/01/1998~ -~18317~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18317~^~432~^20.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18317~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18317~^~601~^33.^6^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18319~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~268~^1322.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18319~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~307~^333.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18319~^~318~^27.^5^8.^~1~^^^^^^^^^^^~07/01/2012~ -~18319~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18319~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18319~^~334~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18319~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18319~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18319~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18320~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18320~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~268~^1121.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18320~^~301~^56.^3^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~304~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~305~^105.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~306~^89.^3^29.^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~307~^172.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18320~^~318~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18320~^~319~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18320~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18320~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~431~^16.^0^^~4~^^^^^^^^^^^~06/01/2003~ -~18320~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18320~^~601~^45.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18321~^~268~^1192.^0^^~4~^^^^^^^^^^^ -~18321~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~306~^65.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~307~^242.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~318~^160.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~319~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18321~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18321~^~417~^25.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18321~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18321~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18321~^~601~^53.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18322~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~268~^1209.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18322~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~307~^254.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~318~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18322~^~321~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18322~^~334~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~338~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~417~^23.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18322~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18322~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18322~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18323~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18323~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~305~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~306~^125.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~307~^217.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18323~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18323~^~319~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18323~^~321~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18323~^~334~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~417~^29.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18323~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18323~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18323~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18324~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18324~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18324~^~301~^22.^2^^~1~^~A~^^^1^22.^22.^^^^^~10/01/2007~ -~18324~^~304~^22.^2^^~1~^~A~^^^1^21.^23.^1^^^^~10/01/2007~ -~18324~^~305~^83.^2^^~1~^~A~^^^1^80.^86.^1^^^^~10/01/2007~ -~18324~^~306~^99.^2^^~1~^~A~^^^1^99.^99.^^^^^~10/01/2007~ -~18324~^~307~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18324~^~318~^175.^4^28.^~1~^^^^^^^^^^^~10/01/2007~ -~18324~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18324~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2007~ -~18324~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18324~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~417~^32.^2^^~1~^~A~^^^1^26.^38.^1^^^^~10/01/2007~ -~18324~^~431~^16.^2^^~1~^~A~^^^1^12.^19.^1^^^^~10/01/2007~ -~18324~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18324~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18324~^~601~^42.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18325~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18325~^~268~^1724.^0^^~4~^^^^^^^^^^^ -~18325~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~305~^94.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~307~^262.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~318~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18325~^~319~^77.^0^^~4~^^^^^^^^^^^~04/01/2002~ -~18325~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18325~^~321~^60.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18325~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18325~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18325~^~432~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18325~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18326~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~268~^1015.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~301~^64.^3^18.^~1~^~A~^^^1^45.^100.^2^-14.^141.^~2, 3~^~11/01/2007~ -~18326~^~304~^14.^3^0.^~1~^~A~^^^1^13.^16.^2^10.^18.^~2, 3~^~11/01/2007~ -~18326~^~305~^81.^3^9.^~1~^~A~^^^1^65.^98.^2^39.^122.^~2, 3~^~11/01/2007~ -~18326~^~306~^167.^3^12.^~1~^~A~^^^1^150.^190.^2^114.^218.^~2, 3~^~11/01/2007~ -~18326~^~307~^239.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18326~^~318~^3434.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~319~^334.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~320~^448.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~321~^1023.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~322~^686.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18326~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18326~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~417~^26.^3^4.^~1~^~A~^^^1^19.^33.^2^8.^43.^~2, 3~^~11/01/2007~ -~18326~^~431~^16.^3^4.^~1~^~A~^^^1^8.^25.^2^-5.^37.^~2, 3~^~11/01/2007~ -~18326~^~432~^10.^3^1.^~1~^~AS~^^^1^8.^11.^2^5.^14.^~2, 3~^~11/01/2007~ -~18326~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18326~^~601~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18327~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18327~^~268~^854.^0^^~4~^^^^^^^^^^^ -~18327~^~301~^94.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~305~^98.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~306~^186.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~307~^225.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~318~^8020.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18327~^~319~^30.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18327~^~320~^426.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18327~^~321~^4752.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18327~^~417~^21.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18327~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18327~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18327~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18328~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18328~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~305~^104.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~306~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~307~^260.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~318~^306.^0^^~1~^^^^^^^^^^^~03/01/2003~ -~18328~^~319~^81.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18328~^~321~^22.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~322~^2.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~324~^47.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~18328~^~334~^1.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~338~^52.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18328~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18328~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18328~^~601~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18332~^~268~^2167.^0^^~4~^^^^^^^^^^^ -~18332~^~301~^61.^20^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~304~^15.^15^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~305~^86.^21^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~306~^64.^8^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~307~^753.^16^22.^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18332~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18332~^~417~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~431~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18332~^~432~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18332~^~435~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18332~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18333~^~268~^2096.^0^^~4~^^^^^^^^^^^ -~18333~^~301~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~305~^84.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~306~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~307~^729.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18333~^~417~^70.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~ -~18333~^~431~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18333~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18333~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18333~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18334~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~268~^1910.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~301~^19.^2^^~1~^~A~^^^1^17.^20.^1^^^^~04/01/2008~ -~18334~^~304~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~04/01/2008~ -~18334~^~305~^72.^2^^~1~^~A~^^^1^70.^75.^1^^^^~04/01/2008~ -~18334~^~306~^97.^2^^~1~^~A~^^^1^94.^100.^1^^^^~04/01/2008~ -~18334~^~307~^409.^2^^~1~^~A~^^^1^404.^414.^1^^^^~04/01/2008~ -~18334~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~18334~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18334~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18334~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~324~^0.^0^^~4~^~BFYN~^~18335~^^^^^^^^^~05/01/2014~ -~18334~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18334~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18334~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18334~^~417~^70.^2^^~1~^~A~^^^1^39.^101.^1^^^^~04/01/2008~ -~18334~^~431~^46.^2^^~1~^~A~^^^1^18.^73.^1^^^^~04/01/2008~ -~18334~^~432~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18334~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18335~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~268~^2127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~301~^21.^2^^~1~^~A~^^^1^20.^23.^1^^^^~04/01/2008~ -~18335~^~304~^17.^2^^~1~^~A~^^^1^17.^17.^1^^^^~04/01/2008~ -~18335~^~305~^82.^2^^~1~^~A~^^^1^80.^85.^1^^^^~04/01/2008~ -~18335~^~306~^114.^2^^~1~^~A~^^^1^114.^114.^^^^^~04/01/2008~ -~18335~^~307~^467.^2^^~1~^~A~^^^1^455.^478.^1^^^^~04/01/2008~ -~18335~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2008~ -~18335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18335~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~338~^1.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18335~^~417~^68.^2^^~1~^~A~^^^1^41.^94.^1^^^^~04/01/2008~ -~18335~^~431~^49.^2^^~1~^~A~^^^1^22.^76.^1^^^^~04/01/2008~ -~18335~^~432~^19.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18335~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~18336~^~208~^527.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18336~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~268~^2205.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18336~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~305~^67.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~306~^67.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~307~^542.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18336~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18336~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18336~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18336~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~338~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~417~^67.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18336~^~431~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18336~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18336~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~208~^551.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18337~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~268~^2305.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18337~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~306~^61.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~307~^249.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18337~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18337~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~338~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~417~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~431~^65.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18337~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18337~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18338~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~268~^1251.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18338~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~306~^74.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~307~^483.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18338~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18338~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18338~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~338~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~417~^88.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~431~^70.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18338~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18338~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18339~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~18339~^~301~^32.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~304~^25.^5^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~305~^100.^11^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~306~^100.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~307~^906.^5^34.^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18339~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18339~^~417~^145.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~431~^120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18339~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18339~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18339~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18342~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~301~^178.^3^6.^~1~^~A~^^^1^166.^188.^2^150.^205.^~2, 3~^~10/01/2005~ -~18342~^~304~^26.^3^0.^~1~^~A~^^^1^25.^26.^2^23.^27.^~2, 3~^~10/01/2005~ -~18342~^~305~^122.^3^1.^~1~^~A~^^^1^120.^124.^2^116.^126.^~2, 3~^~10/01/2005~ -~18342~^~306~^139.^3^9.^~1~^~A~^^^1^122.^155.^2^97.^179.^~2, 3~^~10/01/2005~ -~18342~^~307~^467.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18342~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18342~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~417~^101.^2^^~1~^~A~^^^1^71.^130.^1^^^^~10/01/2005~ -~18342~^~431~^71.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18342~^~432~^30.^2^^~1~^~A~^^^1^27.^32.^1^^^^~10/01/2005~ -~18342~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18342~^~601~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18344~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18344~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~268~^1284.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18344~^~301~^59.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~305~^101.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~306~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~307~^566.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18344~^~318~^26.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18344~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18344~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18344~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~338~^71.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~417~^184.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~431~^131.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18344~^~432~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18344~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18344~^~601~^50.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18345~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~268~^987.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18345~^~301~^85.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~304~^33.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~305~^115.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~306~^121.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~307~^413.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18345~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~18345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18345~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18345~^~431~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18345~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18345~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18345~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~208~^286.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18346~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~268~^1197.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18346~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~304~^54.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~305~^159.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~307~^650.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18346~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18346~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18346~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18346~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~338~^54.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~417~^99.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18346~^~432~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18346~^~435~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18346~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18347~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~268~^1142.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18347~^~301~^176.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~304~^36.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~305~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~306~^115.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~307~^524.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18347~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~ -~18347~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~18347~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18347~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18347~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~431~^45.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18347~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18347~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18347~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18348~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~268~^1113.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18348~^~301~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~304~^85.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~305~^224.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~306~^272.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~307~^521.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18348~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~18348~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18348~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~338~^115.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~417~^30.^0^^~4~^^^^^^^^^^^~01/01/1999~ -~18348~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18348~^~432~^30.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18348~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18348~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~208~^277.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18349~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~268~^1159.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18349~^~301~^91.^27^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~305~^84.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~306~^114.^6^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~307~^574.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18349~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~18349~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18349~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18349~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~417~^113.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~431~^80.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18349~^~432~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18349~^~435~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18349~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18350~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~268~^1167.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~301~^144.^5^13.^~1~^~A~^^^1^99.^176.^4^107.^180.^~2, 3~^~02/01/2015~ -~18350~^~304~^23.^5^0.^~1~^~A~^^^1^21.^26.^4^20.^25.^~2, 3~^~02/01/2015~ -~18350~^~305~^101.^5^9.^~1~^~A~^^^1^79.^130.^4^76.^126.^~2, 3~^~02/01/2015~ -~18350~^~306~^122.^5^9.^~1~^~A~^^^1^98.^147.^4^94.^148.^~2, 3~^~02/01/2015~ -~18350~^~307~^494.^5^19.^~1~^~A~^^^1^433.^548.^4^438.^548.^~2, 3~^~02/01/2015~ -~18350~^~318~^107.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18350~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18350~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18350~^~321~^7.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18350~^~417~^94.^3^26.^~1~^~A~^^^1^51.^141.^2^-18.^206.^~2, 3~^~02/01/2015~ -~18350~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18350~^~432~^41.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18350~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~ -~18351~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~18351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18351~^~268~^1100.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18351~^~301~^95.^15^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~304~^44.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~305~^122.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~306~^160.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~307~^458.^3^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18351~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18351~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~18351~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~18351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18351~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~18351~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~18351~^~338~^45.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~18351~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~03/01/2003~ -~18351~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~03/01/2003~ -~18351~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~03/01/2003~ -~18351~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18351~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18353~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~268~^1226.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18353~^~301~^95.^35^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~304~^27.^9^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~305~^100.^6^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~306~^108.^9^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~307~^544.^5^28.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18353~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18353~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18353~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18353~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18353~^~431~^80.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18353~^~432~^15.^4^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~18353~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18354~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~268~^1146.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18354~^~301~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~304~^9.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~305~^33.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~306~^149.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~307~^135.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18354~^~318~^30.^2^^~1~^^^^^^^^^^^~07/01/2012~ -~18354~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18354~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18354~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~417~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~431~^22.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18354~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18354~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18354~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18355~^~268~^1506.^0^^~4~^^^^^^^^^^^ -~18355~^~301~^118.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~304~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~305~^98.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~306~^137.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~307~^357.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~318~^254.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18355~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18355~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18355~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18355~^~601~^76.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18356~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18356~^~301~^72.^10^19.^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~304~^17.^10^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~305~^76.^10^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~306~^111.^8^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~307~^304.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18356~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18356~^~319~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18356~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18356~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~338~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~417~^72.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~431~^48.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18356~^~432~^24.^4^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18356~^~601~^66.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18357~^~268~^1393.^0^^~4~^^^^^^^^^^^ -~18357~^~301~^31.^14^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~304~^11.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~305~^321.^11^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~306~^58.^11^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~307~^765.^14^15.^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18357~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18357~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18357~^~431~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18357~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18357~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18357~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~208~^362.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~268~^1515.^0^^~4~^^^^^^^^^^^ -~18358~^~301~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~304~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~305~^348.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~306~^63.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~307~^832.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~318~^2.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18358~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18358~^~417~^55.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18358~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18358~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18358~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18360~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18360~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18360~^~268~^1991.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~301~^100.^16^2.^~1~^~A~^^^1^61.^128.^8^94.^106.^~2, 3~^~07/01/2014~ -~18360~^~304~^83.^16^1.^~1~^~A~^^^1^70.^144.^5^78.^86.^~2, 3~^~07/01/2014~ -~18360~^~305~^233.^16^3.^~1~^~A~^^^1^208.^328.^8^225.^240.^~2, 3~^~07/01/2014~ -~18360~^~306~^231.^16^4.^~1~^~A~^^^1^202.^281.^12^220.^241.^~2, 3~^~07/01/2014~ -~18360~^~307~^324.^16^22.^~1~^~A~^^^1^11.^577.^8^271.^376.^~2, 3~^~07/01/2014~ -~18360~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~18360~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18360~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~321~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~322~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18360~^~334~^13.^3^10.^~1~^~A~^^^1^3.^33.^2^-31.^56.^~1, 2, 3~^~02/01/2006~ -~18360~^~337~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~338~^106.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2012~ -~18360~^~417~^69.^2^^~1~^~A~^^^1^60.^78.^1^^^^~02/01/2006~ -~18360~^~431~^24.^2^^~1~^~A~^^^1^11.^36.^1^^^^~02/01/2006~ -~18360~^~432~^46.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18360~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~18360~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18361~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18361~^~268~^1549.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18361~^~301~^293.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~306~^105.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~307~^361.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~417~^137.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18362~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18362~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18362~^~268~^1622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~301~^16.^11^1.^~1~^~A~^^^1^10.^26.^8^12.^19.^~2, 3~^~04/01/2014~ -~18362~^~304~^12.^11^0.^~1~^~A~^^^1^11.^14.^8^11.^12.^~2, 3~^~01/01/2006~ -~18362~^~305~^87.^11^5.^~1~^~A~^^^1^67.^117.^8^75.^98.^~2, 3~^~04/01/2014~ -~18362~^~306~^102.^11^7.^~1~^~A~^^^1^70.^140.^8^85.^117.^~2, 3~^~04/01/2014~ -~18362~^~307~^334.^11^7.^~1~^~A~^^^1^258.^373.^8^315.^352.^~2, 3~^~01/01/2006~ -~18362~^~318~^680.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~319~^202.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~320~^202.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~321~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~322~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18362~^~334~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~337~^0.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~338~^52.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~ -~18362~^~417~^111.^5^11.^~1~^~A~^^^1^77.^146.^3^74.^147.^~2, 3~^~04/01/2014~ -~18362~^~431~^91.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~18362~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~18362~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~18363~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~301~^81.^6^11.^~1~^~A~^^^1^48.^129.^5^50.^110.^~2, 3~^~02/01/2004~ -~18363~^~304~^72.^6^5.^~1~^~A~^^^1^60.^93.^5^59.^85.^~2, 3~^~02/01/2004~ -~18363~^~305~^314.^42^26.^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~306~^186.^6^4.^~1~^~A~^^^1^178.^206.^5^174.^196.^~2, 3~^~02/01/2004~ -~18363~^~307~^45.^6^3.^~1~^~A~^^^1^34.^58.^5^36.^54.^~2, 3~^~02/01/2004~ -~18363~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18363~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18363~^~417~^5.^6^0.^~1~^~A~^^^1^3.^9.^5^2.^7.^~2, 3~^~02/01/2004~ -~18363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2004~ -~18363~^~432~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2004~ -~18363~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~18363~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18364~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~268~^1279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~301~^146.^16^7.^~1~^~A~^^^1^30.^197.^8^129.^161.^~2, 3~^~02/01/2015~ -~18364~^~304~^22.^16^0.^~1~^~A~^^^1^20.^25.^11^21.^22.^~2, 3~^~02/01/2015~ -~18364~^~305~^206.^16^6.^~1~^~A~^^^1^119.^260.^8^190.^221.^~2, 3~^~02/01/2015~ -~18364~^~306~^125.^16^4.^~1~^~A~^^^1^95.^209.^8^114.^136.^~2, 3~^~02/01/2015~ -~18364~^~307~^736.^16^10.^~1~^~A~^^^1^531.^873.^9^711.^760.^~2, 3~^~02/01/2015~ -~18364~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~18364~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~ -~18364~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18364~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18364~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~417~^94.^9^5.^~1~^~A~^^^1^58.^125.^4^79.^108.^~2, 3~^~02/01/2015~ -~18364~^~431~^79.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18365~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18365~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18365~^~268~^1193.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~301~^308.^2^^~1~^~A~^^^1^192.^423.^1^^^^~10/01/2004~ -~18365~^~304~^23.^2^^~1~^~A~^^^1^19.^28.^1^^^^~10/01/2004~ -~18365~^~305~^361.^2^^~1~^~A~^^^1^350.^371.^1^^^^~10/01/2004~ -~18365~^~306~^125.^2^^~1~^~A~^^^1^110.^140.^1^^^^~10/01/2004~ -~18365~^~307~^638.^2^^~1~^~A~^^^1^601.^674.^1^^^^~10/01/2004~ -~18365~^~318~^1271.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~319~^380.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~320~^381.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18365~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~417~^68.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18365~^~431~^57.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18365~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~18365~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18365~^~601~^14.^2^^~1~^~A~^^^1^7.^22.^1^^^^~10/01/2004~ -~18367~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18367~^~268~^1218.^0^^~4~^^^^^^^^^^^ -~18367~^~301~^255.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~305~^190.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~306~^159.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~307~^511.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~318~^228.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~319~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18367~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18367~^~417~^46.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18367~^~431~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18367~^~432~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18367~^~601~^69.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18368~^~268~^1218.^0^^~4~^^^^^^^^^^^ -~18368~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~305~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~307~^572.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~318~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18368~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18368~^~417~^86.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18368~^~431~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18368~^~432~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18368~^~601~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~268~^222.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18369~^~301~^5876.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~304~^27.^4^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~305~^2191.^4^40.^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~306~^20.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~307~^10600.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18369~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18369~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18369~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~268~^213.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18370~^~301~^7364.^3^32.^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~304~^39.^3^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~305~^9918.^3^309.^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~306~^5.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~307~^7893.^3^404.^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18370~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18370~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~268~^406.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18371~^~301~^4332.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~305~^6869.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~306~^10100.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~307~^90.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18371~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18371~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18371~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18371~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~268~^0.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18372~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~305~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~306~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~307~^27360.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18372~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18372~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18372~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~268~^1079.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~18373~^~301~^8.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~305~^5.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~306~^16500.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~307~^52.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18373~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18373~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18373~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~18374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18374~^~301~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~304~^40.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~305~^336.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~306~^601.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~307~^30.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18374~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~18374~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18374~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~417~^785.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18374~^~432~^785.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~18374~^~435~^785.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18374~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18375~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~268~^1361.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18375~^~301~^30.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~304~^54.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~305~^637.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~306~^955.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18375~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~417~^2340.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18375~^~432~^2340.^1^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~435~^2340.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18375~^~601~^0.^1^^~1~^^^^^^^^^^^~01/01/2009~ -~18376~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~262~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~263~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~268~^1604.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~301~^182.^6^5.^~1~^~A~^^^1^168.^200.^5^168.^195.^~2, 3~^~04/01/2004~ -~18376~^~304~^46.^6^0.^~1~^~A~^^^1^45.^46.^5^45.^46.^~2, 3~^~04/01/2004~ -~18376~^~305~^177.^6^2.^~1~^~A~^^^1^170.^186.^5^169.^184.^~2, 3~^~04/01/2004~ -~18376~^~306~^231.^6^5.^~1~^~A~^^^1^221.^260.^5^215.^246.^~2, 3~^~04/01/2004~ -~18376~^~307~^2100.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18376~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18376~^~319~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18376~^~321~^116.^2^^~1~^~A~^^^1^114.^118.^1^^^^~04/01/2004~ -~18376~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~18376~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~338~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~417~^119.^6^2.^~1~^~A~^^^1^112.^129.^5^112.^125.^~2, 3~^~04/01/2004~ -~18376~^~431~^91.^0^^~4~^~NR~^~18079~^^^^^^^^^~08/01/2012~ -~18376~^~432~^28.^0^^~4~^~NC~^~18079~^^^^^^^^^~08/01/2012~ -~18376~^~435~^183.^0^^~4~^~NC~^~18079~^^^^^^^^^~08/01/2012~ -~18376~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18377~^~208~^447.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18377~^~268~^1870.^0^^~4~^^^^^^^^^^^ -~18377~^~301~^105.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~305~^167.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~307~^598.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~318~^757.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18377~^~319~^146.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18377~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18377~^~321~^162.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~ -~18377~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18377~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18377~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~18377~^~601~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~208~^488.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18378~^~268~^2042.^0^^~4~^^^^^^^^^^^ -~18378~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~304~^55.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~306~^221.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~307~^341.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~318~^594.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~319~^131.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18378~^~320~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18378~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18378~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18378~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18378~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18383~^~208~^270.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~268~^1130.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~18383~^~301~^136.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~304~^56.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~305~^189.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~306~^346.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~307~^444.^0^^~4~^~BFSN~^~18043~^^^^^^^^^~08/01/2012~ -~18383~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18383~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18383~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~338~^73.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~417~^99.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18383~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18383~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18383~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18384~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~268~^1105.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18384~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~304~^76.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~305~^174.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~306~^212.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~307~^292.^0^^~4~^~BFSN~^~18059~^^^^^^^^^~08/01/2012~ -~18384~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18384~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18384~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~338~^51.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~417~^79.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18384~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18384~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18384~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18386~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~268~^1393.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18386~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~305~^192.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~306~^88.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~307~^444.^0^^~4~^~BFSN~^~18277~^^^^^^^^^~08/01/2012~ -~18386~^~318~^324.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18386~^~319~^101.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~320~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18386~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18386~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~338~^20.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~417~^59.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~431~^50.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~18386~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18386~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18386~^~601~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18388~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~268~^1310.^0^^~4~^^^^^^^^^^^ -~18388~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~305~^284.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~306~^177.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~307~^527.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18388~^~319~^56.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18388~^~321~^1.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~417~^30.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~431~^23.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18388~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18388~^~601~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18390~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18390~^~268~^950.^0^^~4~^^^^^^^^^^^ -~18390~^~301~^157.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~305~^139.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~307~^522.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~319~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18390~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18390~^~417~^38.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18390~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18390~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18390~^~601~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18396~^~268~^1322.^0^^~4~^^^^^^^^^^^ -~18396~^~301~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~305~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~306~^152.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~307~^415.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~318~^338.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~319~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18396~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18396~^~417~^90.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18396~^~431~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18396~^~432~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18396~^~601~^35.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18399~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~268~^2025.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18399~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~305~^64.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~306~^86.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~307~^560.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~318~^833.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18399~^~319~^179.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~320~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18399~^~321~^143.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~338~^31.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18399~^~431~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18399~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18399~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18400~^~268~^1636.^0^^~4~^^^^^^^^^^^ -~18400~^~301~^36.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~304~^30.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~305~^89.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~306~^83.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~307~^285.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18400~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18400~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18400~^~417~^158.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18400~^~431~^148.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18400~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~435~^262.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18400~^~601~^45.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18401~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18401~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~268~^2222.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18401~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~305~^78.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~306~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~307~^515.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~318~^1172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18401~^~319~^253.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~320~^269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18401~^~321~^197.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~324~^21.^0^^~4~^~RP~^^^^^^^^^^~04/01/2009~ -~18401~^~334~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~338~^27.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~417~^49.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18401~^~431~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18401~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~18401~^~601~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18402~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~268~^1962.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18402~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~306~^59.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~307~^482.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18402~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18402~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18402~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18402~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~338~^9.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~417~^71.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~431~^61.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18402~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18402~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18403~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18403~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18403~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18403~^~268~^1307.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18403~^~301~^307.^6^52.^~1~^~A~^^^1^193.^474.^5^170.^442.^~2, 3~^~10/01/2004~ -~18403~^~304~^24.^6^1.^~1~^~A~^^^1^21.^30.^5^20.^26.^~2, 3~^~10/01/2004~ -~18403~^~305~^429.^6^10.^~1~^~A~^^^1^389.^462.^5^401.^456.^~2, 3~^~10/01/2004~ -~18403~^~306~^144.^6^7.^~1~^~A~^^^1^126.^173.^5^124.^163.^~2, 3~^~10/01/2004~ -~18403~^~307~^467.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18403~^~318~^1330.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18403~^~319~^398.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18403~^~320~^398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18403~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18403~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18403~^~338~^51.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~417~^75.^2^^~1~^~A~^^^1^70.^79.^1^^^^~10/01/2004~ -~18403~^~431~^64.^2^^~1~^~A~^^^1^58.^69.^1^^^^~10/01/2004~ -~18403~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~18403~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18403~^~601~^15.^3^5.^~1~^~A~^^^1^8.^26.^2^-8.^38.^~2, 3~^~10/01/2004~ -~18406~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18406~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~18406~^~301~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18406~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18406~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18406~^~431~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18406~^~432~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18406~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18407~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~18407~^~301~^74.^8^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18407~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18407~^~417~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18407~^~432~^22.^11^1.^~1~^^^^^^^^^^^~12/01/2001~ -~18407~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18407~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18408~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~18408~^~301~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18408~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18408~^~417~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18408~^~432~^22.^11^1.^~1~^^^^^^^^^^^~12/01/2001~ -~18408~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18408~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18412~^~268~^1749.^0^^~4~^^^^^^^^^^^ -~18412~^~301~^57.^29^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~304~^24.^21^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~305~^489.^45^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~306~^113.^43^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~307~^1111.^43^34.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~318~^115.^3^33.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18412~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18412~^~417~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18412~^~432~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18412~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18413~^~268~^1151.^0^^~4~^^^^^^^^^^^ -~18413~^~301~^86.^38^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~305~^97.^13^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~306~^120.^17^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~307~^536.^24^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18413~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18413~^~417~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18413~^~432~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18413~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18414~^~268~^1146.^0^^~4~^^^^^^^^^^^ -~18414~^~301~^66.^29^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~305~^109.^13^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~306~^227.^15^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~307~^390.^20^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18414~^~417~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18414~^~432~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18414~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18416~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~268~^1116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18416~^~301~^108.^250^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~304~^24.^108^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~305~^94.^96^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~306~^119.^105^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~18416~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18416~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18416~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18416~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18416~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18416~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~03/01/2003~ -~18416~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~03/01/2003~ -~18416~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~03/01/2003~ -~18416~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18416~^~601~^1.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18417~^~268~^1749.^0^^~4~^^^^^^^^^^^ -~18417~^~301~^54.^34^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~304~^22.^34^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~305~^108.^33^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~306~^123.^32^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~307~^351.^35^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~318~^111.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18417~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18417~^~417~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18417~^~432~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18417~^~601~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18418~^~268~^1628.^0^^~4~^^^^^^^^^^^ -~18418~^~301~^64.^7^13.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~304~^13.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~305~^134.^6^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~306~^106.^4^25.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~307~^400.^11^41.^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~318~^118.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18418~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18418~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18418~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18418~^~601~^58.^6^25.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18419~^~268~^1770.^0^^~4~^^^^^^^^^^^ -~18419~^~301~^77.^16^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~305~^277.^16^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~306~^72.^8^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~307~^665.^8^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18419~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18419~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18419~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18419~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18420~^~268~^1807.^0^^~4~^^^^^^^^^^^ -~18420~^~301~^135.^50^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~304~^10.^46^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~305~^310.^55^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~306~^82.^27^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~307~^657.^61^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18420~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18420~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18420~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18420~^~601~^2.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18421~^~268~^1954.^0^^~4~^^^^^^^^^^^ -~18421~^~301~^29.^5^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~304~^12.^3^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~305~^102.^4^28.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~306~^111.^3^20.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~307~^351.^4^58.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~318~^673.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~319~^151.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18421~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18421~^~417~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18421~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18421~^~601~^117.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18422~^~262~^11.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~263~^83.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~268~^2013.^0^^~4~^^^^^^^^^^^~06/01/2009~ -~18422~^~301~^25.^115^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~304~^31.^110^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~305~^108.^110^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~306~^135.^107^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~307~^315.^112^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~318~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18422~^~417~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18422~^~432~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18422~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18423~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18423~^~268~^1519.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18423~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~306~^113.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~307~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~318~^556.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~319~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18423~^~320~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18423~^~417~^77.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18423~^~431~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18423~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~18423~^~601~^221.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2006~ -~18424~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18424~^~268~^1632.^0^^~4~^^^^^^^^^^^ -~18424~^~301~^93.^15^14.^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~304~^59.^8^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~305~^196.^12^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~306~^202.^13^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~307~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18424~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18424~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18424~^~431~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18424~^~432~^26.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18424~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18425~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~268~^1760.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~301~^119.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18425~^~304~^25.^8^0.^~1~^~A~^^^1^23.^28.^7^23.^26.^~2, 3~^~04/01/2008~ -~18425~^~305~^111.^8^3.^~1~^~A~^^^1^100.^122.^7^102.^118.^~2, 3~^~04/01/2008~ -~18425~^~306~^724.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18425~^~307~^198.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18425~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18425~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18425~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18425~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18425~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~417~^140.^2^^~1~^~A~^^^1^139.^140.^1^^^^~04/01/2008~ -~18425~^~431~^117.^2^^~1~^~A~^^^1^108.^126.^1^^^^~04/01/2008~ -~18425~^~432~^23.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18425~^~435~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18426~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18426~^~268~^1816.^0^^~4~^^^^^^^^^^^ -~18426~^~301~^119.^162^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~304~^27.^162^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~305~^105.^165^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~306~^128.^166^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~307~^766.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18426~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18426~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18426~^~431~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18426~^~432~^31.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~435~^189.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18426~^~601~^0.^9^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18427~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~268~^2100.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18427~^~301~^120.^145^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~304~^27.^137^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~305~^228.^139^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~306~^355.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~307~^216.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18427~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18427~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18427~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18427~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18427~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~417~^90.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~431~^75.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18427~^~601~^0.^7^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18428~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~268~^1979.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18428~^~301~^49.^55^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~304~^62.^52^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~305~^220.^53^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~306~^203.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~307~^190.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18428~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18428~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~338~^81.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~431~^32.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18428~^~432~^18.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~18428~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18429~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~268~^1854.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18429~^~301~^50.^24^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~304~^99.^24^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~305~^295.^23^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~306~^297.^24^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~307~^186.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18429~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~18429~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18429~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~338~^179.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~417~^28.^8^0.^~1~^^^^^^^^^^^~01/01/1999~ -~18429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18429~^~432~^28.^8^0.^~1~^^^^^^^^^^^~03/01/2003~ -~18429~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18429~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18430~^~268~^1686.^0^^~4~^^^^^^^^^^^ -~18430~^~301~^71.^30^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~304~^19.^31^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~305~^107.^30^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~306~^125.^29^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~307~^371.^31^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~318~^12.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18430~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18430~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18430~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18430~^~601~^21.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18431~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~18431~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~318~^74.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18431~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18431~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18431~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18431~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18432~^~208~^293.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~268~^1226.^0^^~4~^^^^^^^^^^^ -~18432~^~301~^119.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~305~^103.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~306~^131.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~307~^376.^0^^~4~^~BFSN~^~18416~^^^^^^^^^~09/01/2012~ -~18432~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18432~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18432~^~431~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18432~^~432~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18432~^~601~^1.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18433~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~18433~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~318~^175.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18433~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18433~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18433~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18433~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18434~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~268~^2105.^0^^~4~^^^^^^^^^^^~12/01/2005~ -~18434~^~301~^151.^48^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~304~^36.^43^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~305~^218.^44^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~306~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~307~^458.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18434~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18434~^~321~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18434~^~334~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~431~^64.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18434~^~432~^25.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18434~^~601~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18435~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~18435~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~318~^200.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~319~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18435~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18435~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18435~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18435~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18436~^~268~^1686.^0^^~4~^^^^^^^^^^^ -~18436~^~301~^43.^13^9.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~304~^22.^7^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~305~^93.^7^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~306~^108.^7^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~307~^342.^14^30.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~318~^14.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18436~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18436~^~417~^22.^3^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18436~^~432~^22.^3^3.^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18436~^~601~^6.^8^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18437~^~268~^983.^0^^~4~^^^^^^^^^^^ -~18437~^~301~^52.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18437~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18437~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18437~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18437~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18437~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18438~^~268~^983.^0^^~4~^^^^^^^^^^^ -~18438~^~301~^174.^28^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18438~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18438~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18438~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18438~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18439~^~268~^983.^0^^~4~^^^^^^^^^^^ -~18439~^~301~^52.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18439~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18439~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18439~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18439~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18443~^~268~^992.^0^^~4~^^^^^^^^^^^ -~18443~^~301~^11.^40^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~304~^7.^36^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~305~^24.^35^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~306~^65.^39^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~307~^266.^41^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~318~^124.^7^24.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~319~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18443~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18443~^~417~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18443~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18443~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18444~^~268~^1322.^0^^~4~^^^^^^^^^^^ -~18444~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~307~^374.^23^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~318~^172.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18444~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18444~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18444~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18444~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18444~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18445~^~268~^1322.^0^^~4~^^^^^^^^^^^ -~18445~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~307~^374.^23^12.^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~318~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18445~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18445~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18445~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18445~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18445~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18446~^~268~^1912.^0^^~4~^^^^^^^^^^^ -~18446~^~301~^18.^7^5.^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~304~^16.^7^4.^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~305~^53.^7^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~306~^98.^7^18.^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~307~^576.^7^60.^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18446~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18446~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18446~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18446~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18447~^~268~^1552.^0^^~4~^^^^^^^^^^^ -~18447~^~301~^32.^11^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~304~^25.^5^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~305~^100.^11^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~306~^100.^5^2.^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~307~^906.^5^34.^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18447~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18447~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~18447~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18447~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18448~^~268~^1958.^0^^~4~^^^^^^^^^^^ -~18448~^~301~^160.^3^45.^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~304~^105.^3^15.^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~305~^248.^3^25.^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~306~^179.^3^35.^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~307~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18448~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18448~^~417~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~ -~18448~^~431~^99.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18448~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18448~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18449~^~268~^929.^0^^~4~^^^^^^^^^^^ -~18449~^~301~^175.^53^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~304~^65.^30^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~305~^314.^42^26.^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~306~^154.^35^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~307~^11.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18449~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18449~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18449~^~417~^114.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18449~^~431~^99.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18449~^~432~^15.^11^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~435~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18449~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18450~^~268~^1360.^0^^~4~^^^^^^^^^^^ -~18450~^~301~^39.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~304~^26.^38^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~305~^124.^38^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~306~^131.^40^7.^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~307~^478.^40^24.^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18450~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18450~^~417~^123.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~431~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18450~^~432~^12.^10^1.^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~435~^201.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18450~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18451~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18451~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~268~^1184.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18451~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~305~^146.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~306~^110.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~307~^341.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~318~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18451~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18451~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18451~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~431~^39.^0^^~4~^^^^^^^^^^^~03/01/2003~ -~18451~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~18451~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18453~^~268~^1690.^0^^~4~^^^^^^^^^^^ -~18453~^~301~^155.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~305~^324.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~306~^65.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~307~^604.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~318~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18453~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~18453~^~417~^76.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~431~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18453~^~432~^5.^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~18453~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18457~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~268~^1644.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~18457~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~305~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~306~^115.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~307~^849.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18457~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18457~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18457~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18457~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18457~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18457~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~ -~18457~^~431~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~18457~^~432~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~435~^202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18457~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18459~^~208~^372.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18459~^~301~^44.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~304~^44.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~305~^93.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~306~^66.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~307~^361.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18459~^~318~^950.^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~319~^285.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~18459~^~320~^285.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~18459~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18459~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~417~^100.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~18459~^~431~^47.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~18459~^~432~^53.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~18459~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18459~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18513~^~208~^442.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~268~^1849.^0^^~9~^~MC~^^^^^^^^^^ -~18513~^~301~^20.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~306~^87.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~307~^308.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~417~^58.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~432~^58.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~18513~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18522~^~208~^497.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18522~^~268~^2079.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18522~^~301~^14.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~306~^127.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~307~^270.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~318~^16.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~417~^60.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~432~^60.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18522~^~601~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18524~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~18524~^~268~^1924.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~18524~^~301~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~306~^123.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18524~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~18524~^~417~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~432~^5.^1^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~18524~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18527~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18527~^~268~^1673.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18527~^~301~^28.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~306~^159.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~307~^331.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~318~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~417~^56.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~432~^56.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18527~^~601~^6.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~208~^431.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18528~^~268~^1802.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18528~^~301~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~306~^239.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~307~^384.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~318~^14.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~417~^63.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~432~^63.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18528~^~601~^7.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18529~^~208~^430.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~268~^1799.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~18529~^~301~^41.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~306~^92.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~307~^449.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18529~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~18529~^~417~^59.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~432~^59.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~18529~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18532~^~208~^420.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18532~^~268~^1759.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18532~^~301~^24.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~306~^125.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~307~^605.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18532~^~318~^11.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~18532~^~417~^61.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~432~^61.^1^^~9~^^^^^^^^^^^~06/01/2010~ -~18532~^~601~^12.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~208~^435.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18533~^~268~^1822.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18533~^~301~^32.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~306~^185.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~307~^377.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~417~^50.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~432~^50.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18533~^~601~^8.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~208~^403.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18535~^~268~^1687.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18535~^~301~^29.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~306~^117.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~307~^577.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~318~^17.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~417~^69.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~432~^69.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18535~^~601~^25.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~208~^421.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18537~^~268~^1763.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18537~^~301~^35.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~306~^219.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~307~^394.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~417~^54.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~432~^54.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18537~^~601~^10.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~208~^406.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18538~^~268~^1701.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18538~^~301~^38.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~306~^285.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~307~^339.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~417~^47.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~432~^47.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18538~^~601~^8.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~208~^406.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18539~^~268~^1698.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18539~^~301~^32.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~307~^561.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~318~^12.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~417~^71.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~432~^71.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18539~^~601~^25.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~208~^468.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18540~^~268~^1956.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18540~^~301~^36.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~306~^113.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~307~^471.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~318~^2.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~417~^82.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~432~^82.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18540~^~601~^1.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18541~^~208~^480.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~268~^2008.^0^^~9~^~MC~^^^^^^^^^^ -~18541~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~306~^209.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~307~^404.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~318~^61.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~601~^37.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18544~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18544~^~268~^1675.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18544~^~301~^20.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~306~^118.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~307~^334.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~318~^18.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~417~^62.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~432~^62.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18544~^~601~^6.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18547~^~268~^1675.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18547~^~301~^20.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~306~^118.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~307~^377.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18547~^~318~^18.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~18547~^~417~^62.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~432~^62.^1^^~9~^^^^^^^^^^^~06/01/2010~ -~18547~^~601~^6.^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18562~^~208~^424.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18562~^~268~^1773.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18562~^~301~^62.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~306~^309.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~307~^406.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~318~^2.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~417~^76.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~432~^76.^1^^~9~^^^^^^^^^^^~11/01/2016~ -~18562~^~601~^1.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18566~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~10/01/1998~ -~18566~^~268~^1703.^0^^~4~^^^^^^^^^^^ -~18566~^~307~^760.^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18567~^~208~^381.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~268~^1594.^0^^~9~^~MC~^^^^^^^^^^ -~18567~^~301~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~305~^129.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~307~^1532.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~318~^107.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~432~^80.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~18567~^~601~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18603~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18603~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18603~^~307~^1680.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18608~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18608~^~268~^1946.^0^^~4~^^^^^^^^^^^ -~18608~^~307~^357.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18610~^~208~^418.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18610~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18610~^~301~^82.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~307~^590.^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18612~^~208~^548.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18612~^~268~^2293.^0^^~4~^^^^^^^^^^^ -~18612~^~307~^223.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18614~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18614~^~268~^1705.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18614~^~301~^17.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~306~^51.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~307~^457.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~320~^0.^1^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~18614~^~417~^49.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~432~^49.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~18614~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18615~^~268~^1623.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18615~^~301~^168.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~306~^212.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~307~^1295.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~320~^0.^1^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~18615~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18616~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18616~^~268~^1202.^0^^~4~^^^^^^^^^^^ -~18616~^~301~^191.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18616~^~307~^898.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18617~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18617~^~268~^1776.^0^^~4~^~NC~^^^^^^^^^^ -~18617~^~301~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~304~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~305~^202.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~306~^177.^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~307~^659.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~417~^46.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~432~^46.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~18617~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~208~^476.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~268~^1992.^0^^~9~^~MC~^^^^^^^^^^ -~18619~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~304~^48.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~305~^103.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~306~^194.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~307~^528.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~18621~^~208~^492.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~268~^2058.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~301~^154.^4^1.^~1~^~A~^^^1^151.^157.^3^150.^158.^~2, 3~^~06/01/2008~ -~18621~^~304~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^18.^19.^~2, 3~^~06/01/2008~ -~18621~^~305~^273.^4^2.^~1~^~A~^^^1^268.^278.^3^266.^279.^~2, 3~^~06/01/2008~ -~18621~^~306~^119.^4^4.^~1~^~A~^^^1^110.^127.^3^105.^132.^~2, 3~^~06/01/2008~ -~18621~^~307~^882.^4^41.^~1~^~A~^^^1^804.^991.^3^750.^1013.^~2, 3~^~06/01/2008~ -~18621~^~417~^72.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~18621~^~431~^55.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~18621~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~18621~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18629~^~208~^236.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~268~^985.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~307~^854.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~ -~18629~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~208~^450.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~268~^1881.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~301~^14.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~307~^326.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~318~^19.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~ -~18630~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~208~^243.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~268~^1019.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~301~^19.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~307~^575.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~ -~18631~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~208~^293.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~268~^1227.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~307~^1066.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~ -~18633~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18634~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18634~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18634~^~307~^1059.^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18635~^~208~^330.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~268~^1381.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~301~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~307~^780.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~318~^1.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~ -~18635~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18637~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18637~^~268~^1577.^0^^~4~^^^^^^^^^^^ -~18637~^~307~^2182.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18639~^~208~^232.^1^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18639~^~268~^972.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18639~^~301~^180.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~307~^345.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~ -~18639~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~18639~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~ -~18639~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18640~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18640~^~268~^1008.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18640~^~301~^48.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~307~^300.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~318~^75.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~601~^47.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18641~^~208~^273.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~268~^1142.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~18641~^~301~^87.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~307~^488.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18651~^~208~^305.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~262~^8.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~263~^95.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~268~^1276.^0^^~9~^~MC~^^^^^^^^^^ -~18651~^~301~^30.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18651~^~304~^25.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~305~^71.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~306~^111.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~307~^174.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18651~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18651~^~417~^19.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~432~^19.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~18651~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18927~^~208~^490.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18927~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~268~^2052.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18927~^~301~^89.^6^1.^~1~^~A~^^^1^85.^93.^5^85.^91.^~2, 3~^~12/01/2002~ -~18927~^~304~^28.^6^0.^~1~^~A~^^^1^27.^29.^5^27.^28.^~2, 3~^~12/01/2002~ -~18927~^~305~^288.^6^8.^~1~^~A~^^^1^261.^317.^5^266.^309.^~2, 3~^~12/01/2002~ -~18927~^~306~^295.^6^3.^~1~^~A~^^^1^281.^302.^5^287.^302.^~2, 3~^~12/01/2002~ -~18927~^~307~^878.^6^16.^~1~^~A~^^^1^838.^950.^5^836.^920.^~2, 3~^~12/01/2002~ -~18927~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18927~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~320~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~18927~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~417~^82.^6^2.^~1~^~A~^^^1^76.^88.^5^76.^87.^~2, 3~^~12/01/2002~ -~18927~^~431~^66.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~18927~^~601~^6.^3^0.^~1~^~A~^^^1^6.^6.^2^5.^6.^~2, 3~^~12/01/2002~ -~18927~^~636~^44.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18932~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18932~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~268~^1144.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18932~^~301~^279.^2^^~1~^~A~^^^1^116.^441.^1^^^^~10/01/2004~ -~18932~^~304~^19.^2^^~1~^~A~^^^1^18.^19.^1^^^^~10/01/2004~ -~18932~^~305~^388.^2^^~1~^~A~^^^1^373.^403.^1^^^^~10/01/2004~ -~18932~^~306~^126.^2^^~1~^~A~^^^1^109.^142.^1^^^^~10/01/2004~ -~18932~^~307~^621.^2^^~1~^~A~^^^1^555.^687.^1^^^^~10/01/2004~ -~18932~^~318~^1340.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18932~^~319~^401.^2^^~1~^~A~^^^1^191.^610.^1^^^^~10/01/2004~ -~18932~^~320~^401.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18932~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~338~^63.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~417~^63.^2^^~1~^~A~^^^1^57.^68.^1^^^^~10/01/2004~ -~18932~^~431~^49.^2^^~1~^~A~^^^1^43.^54.^1^^^^~10/01/2004~ -~18932~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~18932~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~18932~^~601~^15.^2^^~1~^~A~^^^1^7.^24.^1^^^^~10/01/2004~ -~18933~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18933~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~268~^1291.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18933~^~301~^299.^5^89.^~1~^~A~^^^1^82.^511.^4^49.^547.^~2, 3~^~11/01/2004~ -~18933~^~304~^22.^6^1.^~1~^~A~^^^1^15.^29.^5^16.^26.^~2, 3~^~11/01/2004~ -~18933~^~305~^444.^6^4.^~1~^~A~^^^1^429.^458.^5^433.^454.^~2, 3~^~11/01/2004~ -~18933~^~306~^138.^6^14.^~1~^~A~^^^1^93.^192.^5^102.^174.^~2, 3~^~11/01/2004~ -~18933~^~307~^710.^6^38.^~1~^~A~^^^1^589.^824.^5^611.^809.^~2, 3~^~07/01/2017~ -~18933~^~318~^1463.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18933~^~319~^437.^3^137.^~1~^~A~^^^1^210.^685.^2^-154.^1028.^~2, 3~^~11/01/2004~ -~18933~^~320~^438.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18933~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~18933~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~338~^66.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~417~^68.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^96.^~2, 3~^~11/01/2004~ -~18933~^~431~^55.^3^5.^~1~^~A~^^^1^45.^63.^2^32.^78.^~2, 3~^~11/01/2004~ -~18933~^~432~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~18933~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18933~^~601~^13.^3^6.^~1~^~A~^^^1^6.^26.^2^-14.^40.^~2, 3~^~11/01/2004~ -~18934~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~268~^1209.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~301~^125.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18934~^~304~^20.^2^^~1~^~A~^^^1^20.^20.^1^^^^~11/01/2004~ -~18934~^~305~^410.^2^^~1~^~A~^^^1^382.^438.^1^^^^~11/01/2004~ -~18934~^~306~^110.^2^^~1~^~A~^^^1^103.^116.^1^^^^~11/01/2004~ -~18934~^~307~^663.^2^^~1~^~A~^^^1^581.^745.^1^^^^~11/01/2004~ -~18934~^~318~^1430.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~18934~^~319~^429.^2^^~1~^~A~^^^1^212.^646.^1^^^^~11/01/2004~ -~18934~^~320~^429.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~18934~^~417~^64.^2^^~1~^~A~^^^1^59.^68.^1^^^^~11/01/2004~ -~18934~^~431~^50.^2^^~1~^~A~^^^1^48.^52.^1^^^^~11/01/2004~ -~18934~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~18934~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~601~^16.^2^^~1~^~A~^^^1^7.^25.^1^^^^~11/01/2004~ -~18935~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~301~^197.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~304~^25.^2^^~1~^~A~^^^1^21.^29.^1^^^^~11/01/2004~ -~18935~^~305~^410.^2^^~1~^~A~^^^1^398.^422.^1^^^^~11/01/2004~ -~18935~^~306~^148.^2^^~1~^~A~^^^1^127.^169.^1^^^^~11/01/2004~ -~18935~^~307~^682.^2^^~1~^~A~^^^1^649.^714.^1^^^^~11/01/2004~ -~18935~^~417~^67.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~431~^56.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~ -~18935~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~18935~^~601~^16.^2^^~1~^~A~^^^1^7.^24.^1^^^^~11/01/2004~ -~18936~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2004~ -~18936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2004~ -~18936~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18936~^~301~^72.^4^8.^~1~^~A~^^^1^51.^92.^3^44.^100.^~2, 3~^~12/01/2004~ -~18936~^~304~^16.^4^2.^~1~^~A~^^^1^13.^25.^3^7.^25.^~2, 3~^~12/01/2004~ -~18936~^~305~^350.^4^51.^~1~^~A~^^^1^243.^485.^3^185.^514.^~2, 3~^~12/01/2004~ -~18936~^~306~^122.^4^24.^~1~^~A~^^^1^86.^193.^3^45.^198.^~2, 3~^~12/01/2004~ -~18936~^~307~^566.^4^48.^~1~^~A~^^^1^455.^693.^3^410.^721.^~2, 3~^~12/01/2004~ -~18936~^~318~^719.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18936~^~319~^216.^3^204.^~1~^~A~^^^1^11.^625.^2^-664.^1096.^~1, 2, 3~^~12/01/2004~ -~18936~^~320~^216.^0^^~1~^~AS~^^^^^^^^^^~12/01/2004~ -~18936~^~417~^54.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~18936~^~431~^45.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~18936~^~432~^9.^0^^~1~^~AS~^^^^^^^^^^~12/01/2004~ -~18936~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18938~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18938~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18938~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18938~^~268~^1609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18938~^~301~^12.^17^0.^~1~^~A~^^^1^10.^21.^6^11.^12.^~2, 3~^~04/01/2013~ -~18938~^~304~^11.^17^0.^~1~^~A~^^^1^10.^13.^12^10.^11.^~2, 3~^~03/01/2007~ -~18938~^~305~^71.^17^0.^~1~^~A~^^^1^61.^109.^7^68.^73.^~2, 3~^~07/01/2014~ -~18938~^~306~^86.^17^2.^~1~^~A~^^^1^66.^150.^11^81.^90.^~2, 3~^~07/01/2014~ -~18938~^~307~^311.^17^5.^~1~^~A~^^^1^258.^345.^5^297.^325.^~2, 3~^~07/01/2014~ -~18938~^~318~^672.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~18938~^~319~^202.^2^^~1~^~A~^^^1^163.^240.^1^^^^~05/01/2013~ -~18938~^~320~^202.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18938~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~18938~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~18938~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~18938~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~18938~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~18938~^~338~^52.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~417~^90.^7^3.^~1~^~A~^^^1^59.^98.^1^66.^113.^~2, 3~^~07/01/2014~ -~18938~^~431~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~18938~^~432~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18939~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~268~^1711.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~305~^76.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~306~^81.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~307~^354.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~318~^1563.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~18939~^~319~^467.^2^^~1~^~A~^^^1^246.^687.^1^^^^~01/01/2006~ -~18939~^~320~^467.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~18939~^~321~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~ -~18939~^~322~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~ -~18939~^~334~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~ -~18939~^~337~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~ -~18939~^~417~^48.^2^^~1~^~A~^^^1^42.^53.^1^^^^~01/01/2006~ -~18939~^~431~^40.^2^^~1~^~A~^^^1^36.^44.^1^^^^~01/01/2006~ -~18939~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~18939~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~18940~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18940~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18940~^~301~^35.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~304~^10.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~305~^125.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~306~^96.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~307~^413.^0^^~8~^~LC~^~18274~^^^^^^^^^~05/01/2010~ -~18940~^~318~^39.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~319~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~320~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~18940~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~338~^56.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~417~^48.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~431~^36.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~18940~^~601~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~18942~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~268~^2097.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~301~^29.^3^5.^~1~^~A~^^^1^19.^38.^2^5.^52.^~2, 3~^~08/01/2007~ -~18942~^~304~^23.^3^3.^~1~^~A~^^^1^16.^29.^2^6.^38.^~2, 3~^~08/01/2007~ -~18942~^~305~^117.^3^21.^~1~^~A~^^^1^96.^160.^2^25.^209.^~2, 3~^~08/01/2007~ -~18942~^~306~^113.^3^12.^~1~^~A~^^^1^90.^130.^2^61.^165.^~2, 3~^~08/01/2007~ -~18942~^~307~^471.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18942~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~338~^23.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~417~^65.^3^8.^~1~^~A~^^^1^50.^80.^2^27.^101.^~2, 3~^~08/01/2007~ -~18942~^~431~^46.^3^6.^~1~^~A~^^^1^36.^58.^2^17.^73.^~2, 3~^~09/01/2007~ -~18942~^~432~^19.^3^2.^~1~^~AS~^^^1^14.^22.^2^8.^29.^~2, 3~^~08/01/2007~ -~18942~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18943~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~18943~^~262~^8.^3^0.^~1~^~A~^^^1^6.^9.^2^4.^11.^~2, 3~^~05/01/2014~ -~18943~^~263~^100.^3^24.^~1~^~A~^^^1^69.^148.^2^-5.^204.^~2, 3~^~09/01/2007~ -~18943~^~268~^2025.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~18943~^~301~^32.^3^7.^~1~^~A~^^^1^19.^46.^2^-2.^65.^~2, 3~^~09/01/2007~ -~18943~^~304~^40.^3^2.^~1~^~A~^^^1^37.^46.^2^28.^52.^~2, 3~^~09/01/2007~ -~18943~^~305~^120.^3^10.^~1~^~A~^^^1^100.^130.^2^76.^163.^~2, 3~^~09/01/2007~ -~18943~^~306~^187.^3^8.^~1~^~A~^^^1^170.^200.^2^148.^224.^~2, 3~^~09/01/2007~ -~18943~^~307~^503.^3^48.^~1~^~A~^^^1^450.^600.^2^295.^711.^~2, 3~^~09/01/2007~ -~18943~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~324~^0.^0^^~4~^~BFFN~^~18942~^^^^^^^^^~05/01/2014~ -~18943~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~417~^72.^3^7.^~1~^~A~^^^1^59.^85.^2^40.^104.^~2, 3~^~09/01/2007~ -~18943~^~431~^50.^3^7.^~1~^~A~^^^1^36.^63.^2^16.^84.^~2, 3~^~09/01/2007~ -~18943~^~432~^22.^3^0.^~1~^~AS~^^^1^21.^23.^2^19.^24.^~2, 3~^~09/01/2007~ -~18943~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18943~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18944~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~268~^1215.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~301~^14.^3^3.^~1~^~A~^^^1^9.^20.^2^0.^28.^~2, 3~^~11/01/2007~ -~18944~^~304~^8.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^8.^~2, 3~^~11/01/2007~ -~18944~^~305~^29.^3^2.^~1~^~A~^^^1^24.^34.^2^16.^41.^~2, 3~^~11/01/2007~ -~18944~^~306~^76.^3^6.^~1~^~A~^^^1^64.^84.^2^49.^101.^~2, 3~^~11/01/2007~ -~18944~^~307~^200.^3^30.^~1~^~A~^^^1^170.^260.^2^70.^329.^~2, 3~^~11/01/2007~ -~18944~^~318~^82.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~319~^17.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~320~^18.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~334~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~337~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~ -~18944~^~417~^21.^3^11.^~1~^~A~^^^1^0.^41.^2^-29.^71.^~1, 2, 3~^~11/01/2007~ -~18944~^~431~^15.^3^8.^~1~^~A~^^^1^0.^27.^2^-19.^49.^~1, 2, 3~^~11/01/2007~ -~18944~^~432~^6.^3^4.^~1~^~AS~^^^1^0.^14.^2^-12.^23.^~1, 2, 3~^~11/01/2007~ -~18944~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18944~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^^^^~2, 3~^~11/01/2007~ -~18945~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~268~^1958.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~301~^20.^3^1.^~1~^~A~^^^1^17.^23.^2^12.^28.^~2, 3~^~04/01/2008~ -~18945~^~304~^15.^3^0.^~1~^~A~^^^1^14.^15.^2^13.^16.^~2, 3~^~04/01/2008~ -~18945~^~305~^68.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^96.^~2, 3~^~04/01/2008~ -~18945~^~306~^91.^3^7.^~1~^~A~^^^1^77.^103.^2^57.^124.^~2, 3~^~04/01/2008~ -~18945~^~307~^353.^3^32.^~1~^~A~^^^1^290.^399.^2^212.^493.^~2, 3~^~04/01/2008~ -~18945~^~417~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~431~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~432~^29.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18945~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~268~^2117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~301~^12.^2^^~1~^~A~^^^1^10.^14.^1^^^^~04/01/2008~ -~18946~^~304~^9.^2^^~1~^~A~^^^1^8.^9.^1^^^^~04/01/2008~ -~18946~^~305~^52.^2^^~1~^~A~^^^1^50.^55.^1^^^^~04/01/2008~ -~18946~^~306~^83.^2^^~1~^~A~^^^1^76.^91.^1^^^^~04/01/2008~ -~18946~^~307~^472.^2^^~1~^~A~^^^1^404.^540.^1^^^^~04/01/2008~ -~18946~^~417~^32.^2^^~1~^~A~^^^1^0.^64.^1^^^~1~^~04/01/2008~ -~18946~^~431~^21.^2^^~1~^~A~^^^1^0.^42.^1^^^~1~^~04/01/2008~ -~18946~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18946~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~208~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~268~^2179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~301~^23.^3^2.^~1~^~A~^^^1^19.^27.^2^13.^32.^~2, 3~^~04/01/2008~ -~18947~^~304~^17.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^18.^~2, 3~^~04/01/2008~ -~18947~^~305~^77.^3^7.^~1~^~A~^^^1^62.^86.^2^45.^107.^~2, 3~^~04/01/2008~ -~18947~^~306~^103.^3^9.^~1~^~A~^^^1^85.^119.^2^60.^145.^~2, 3~^~04/01/2008~ -~18947~^~307~^393.^3^37.^~1~^~A~^^^1^326.^454.^2^233.^552.^~2, 3~^~04/01/2008~ -~18947~^~417~^94.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~431~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~432~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18947~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~268~^1864.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~301~^10.^2^^~1~^~A~^^^1^8.^12.^1^^^^~04/01/2008~ -~18948~^~304~^8.^2^^~1~^~A~^^^1^7.^8.^1^^^^~04/01/2008~ -~18948~^~305~^45.^2^^~1~^~A~^^^1^44.^46.^1^^^^~04/01/2008~ -~18948~^~306~^73.^2^^~1~^~A~^^^1^68.^78.^1^^^^~04/01/2008~ -~18948~^~307~^409.^2^^~1~^~A~^^^1^360.^457.^1^^^^~04/01/2008~ -~18948~^~417~^25.^2^^~1~^~A~^^^1^2.^47.^1^^^^~04/01/2008~ -~18948~^~431~^18.^2^^~1~^~A~^^^1^0.^36.^1^^^~1~^~04/01/2008~ -~18948~^~432~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18948~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18949~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18949~^~262~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~263~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18949~^~301~^39.^4^0.^~1~^~A~^^^1^38.^39.^3^38.^39.^~2, 3~^~10/01/2008~ -~18949~^~304~^120.^4^0.^~1~^~A~^^^1^119.^121.^3^117.^121.^~2, 3~^~10/01/2008~ -~18949~^~305~^364.^4^2.^~1~^~A~^^^1^360.^372.^3^355.^372.^~2, 3~^~10/01/2008~ -~18949~^~306~^373.^4^2.^~1~^~A~^^^1^368.^377.^3^366.^379.^~2, 3~^~10/01/2008~ -~18949~^~307~^745.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~18949~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18949~^~319~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~320~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~321~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~322~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~324~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~334~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~337~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~338~^194.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~417~^30.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~431~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~432~^30.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~435~^30.^0^^~4~^~NC~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~601~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18950~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18950~^~262~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~263~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~268~^1857.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18950~^~301~^80.^4^5.^~1~^~A~^^^1^65.^90.^3^62.^98.^~2, 3~^~10/01/2008~ -~18950~^~304~^47.^4^0.^~1~^~A~^^^1^45.^49.^3^44.^49.^~2, 3~^~10/01/2008~ -~18950~^~305~^258.^4^6.^~1~^~A~^^^1^243.^275.^3^236.^279.^~2, 3~^~10/01/2008~ -~18950~^~306~^210.^4^1.^~1~^~A~^^^1^207.^213.^3^205.^214.^~2, 3~^~10/01/2008~ -~18950~^~307~^776.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~18950~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18950~^~319~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~320~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~321~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~322~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~324~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~334~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~337~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~338~^86.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~417~^127.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~431~^100.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~432~^26.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~435~^197.^0^^~4~^~NC~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~601~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18951~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18951~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~263~^89.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~268~^1242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18951~^~301~^357.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~305~^272.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~306~^74.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~307~^529.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~318~^1429.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~319~^429.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~18951~^~320~^429.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~18951~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~324~^2.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~338~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~417~^75.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~431~^59.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~18951~^~432~^16.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~18951~^~435~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18951~^~601~^21.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18952~^~208~^474.^2^^~8~^~LC~^^^1^450.^497.^1^^^^~01/01/2009~ -~18952~^~268~^1983.^2^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~18952~^~301~^76.^3^8.^~1~^~A~^^^1^67.^94.^2^38.^114.^~2, 3~^~01/01/2009~ -~18952~^~304~^76.^3^4.^~1~^~A~^^^1^68.^84.^2^56.^96.^~2, 3~^~01/01/2009~ -~18952~^~305~^203.^3^17.^~1~^~A~^^^1^170.^230.^2^127.^279.^~2, 3~^~01/01/2009~ -~18952~^~306~^237.^3^8.^~1~^~A~^^^1^220.^250.^2^198.^274.^~2, 3~^~01/01/2009~ -~18952~^~307~^657.^3^43.^~1~^~A~^^^1^570.^710.^2^468.^844.^~2, 3~^~01/01/2009~ -~18953~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~301~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~305~^200.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~306~^350.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~307~^510.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~318~^584.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~319~^135.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~321~^81.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~324~^14.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~417~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~431~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~601~^59.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18954~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~268~^1634.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~301~^46.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~305~^300.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~306~^210.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~307~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18955~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~262~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~263~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~268~^1537.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~301~^86.^3^26.^~1~^~A~^^^1^37.^128.^2^-28.^200.^~2, 3~^~05/01/2009~ -~18955~^~304~^24.^3^0.^~1~^~A~^^^1^22.^25.^2^19.^27.^~2, 3~^~05/01/2009~ -~18955~^~305~^94.^3^6.^~1~^~A~^^^1^88.^107.^2^67.^121.^~2, 3~^~05/01/2009~ -~18955~^~306~^103.^3^14.^~1~^~A~^^^1^78.^128.^2^41.^165.^~2, 3~^~05/01/2009~ -~18955~^~307~^228.^3^49.^~1~^~A~^^^1^128.^283.^2^12.^442.^~2, 3~^~05/01/2009~ -~18955~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18955~^~319~^5.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~320~^5.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~321~^3.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~322~^1.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~324~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~334~^1.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~337~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~338~^36.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~417~^108.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~431~^68.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~432~^40.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~435~^155.^0^^~4~^~NC~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~601~^30.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18956~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18956~^~268~^1954.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18956~^~301~^63.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~305~^255.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~306~^90.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~307~^515.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18957~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18957~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~305~^119.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~306~^101.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~307~^357.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18958~^~268~^1863.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18958~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~305~^297.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~306~^94.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~307~^445.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~268~^1588.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~301~^14.^3^3.^~1~^~A~^^^1^10.^20.^2^0.^27.^~2, 3~^~05/01/2009~ -~18959~^~304~^15.^3^1.^~1~^~A~^^^1^12.^19.^2^7.^23.^~2, 3~^~05/01/2009~ -~18959~^~305~^56.^3^10.^~1~^~A~^^^1^41.^77.^2^11.^101.^~2, 3~^~05/01/2009~ -~18959~^~306~^103.^3^12.^~1~^~A~^^^1^83.^127.^2^48.^158.^~2, 3~^~05/01/2009~ -~18959~^~307~^231.^3^44.^~1~^~A~^^^1^144.^287.^2^41.^420.^~2, 3~^~05/01/2009~ -~18959~^~321~^17.^2^^~1~^~A~^^^1^5.^29.^1^^^^~05/01/2009~ -~18959~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2009~ -~18959~^~334~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~05/01/2009~ -~18959~^~337~^348.^2^^~1~^~A~^^^1^16.^680.^1^^^^~05/01/2009~ -~18959~^~338~^14.^2^^~1~^~A~^^^1^1.^27.^1^^^^~05/01/2009~ -~18959~^~601~^10.^3^8.^~1~^~A~^^^1^0.^26.^2^-26.^45.^~1, 2, 3~^~05/01/2009~ -~18960~^~208~^433.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18960~^~268~^1812.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18960~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~304~^39.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~305~^145.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~306~^124.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~307~^665.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18961~^~208~^484.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18961~^~268~^2025.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~18961~^~301~^26.^6^^~1~^~A~^^^1^15.^50.^^^^~2~^~06/01/2010~ -~18961~^~304~^25.^6^^~1~^~A~^^^1^24.^26.^^^^~2~^~06/01/2010~ -~18961~^~305~^98.^6^^~1~^~A~^^^1^95.^101.^^^^~2~^~06/01/2010~ -~18961~^~306~^129.^6^^~1~^~A~^^^1^120.^142.^^^^~2~^~06/01/2010~ -~18961~^~307~^1148.^6^^~1~^~A~^^^1^1050.^1270.^^^^~2~^~06/01/2010~ -~18961~^~417~^149.^4^^~1~^^^^1^103.^179.^^^^~2~^~06/01/2010~ -~18961~^~431~^148.^4^^~1~^~A~^^^1^101.^178.^^^^~2~^~06/01/2010~ -~18961~^~432~^2.^4^^~1~^~AS~^^^1^1.^2.^^^^~1, 2~^~06/01/2010~ -~18961~^~435~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18962~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~268~^1941.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~301~^734.^2^^~1~^~A~^^^1^723.^744.^^^^^~06/01/2010~ -~18962~^~304~^28.^2^^~1~^~A~^^^1^28.^28.^^^^^~06/01/2010~ -~18962~^~305~^100.^2^^~1~^~A~^^^1^99.^101.^^^^^~06/01/2010~ -~18962~^~306~^117.^2^^~1~^~A~^^^1^117.^117.^^^^^~06/01/2010~ -~18962~^~307~^752.^2^^~1~^~A~^^^1^737.^766.^^^^^~06/01/2010~ -~18963~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~268~^1464.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~301~^27.^10^3.^~1~^~A~^^^1^18.^47.^9^20.^34.^~2, 3~^~04/01/2011~ -~18963~^~304~^23.^10^0.^~1~^~A~^^^1^19.^25.^9^21.^23.^~2, 3~^~04/01/2011~ -~18963~^~305~^87.^10^2.^~1~^~A~^^^1^78.^99.^9^82.^92.^~2, 3~^~04/01/2011~ -~18963~^~306~^103.^10^3.^~1~^~A~^^^1^89.^119.^9^95.^111.^~2, 3~^~04/01/2011~ -~18963~^~307~^544.^10^3.^~1~^~A~^^^1^522.^571.^9^534.^552.^~2, 3~^~04/01/2011~ -~18963~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~319~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~324~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~417~^186.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~431~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~432~^136.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~435~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18964~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~268~^1890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~301~^183.^10^1.^~1~^~A~^^^1^133.^192.^6^179.^186.^~2, 3~^~07/01/2014~ -~18964~^~304~^14.^10^0.^~1~^~A~^^^1^13.^15.^6^13.^14.^~2, 3~^~03/01/2011~ -~18964~^~305~^131.^10^1.^~1~^~A~^^^1^93.^140.^5^127.^134.^~2, 3~^~07/01/2014~ -~18964~^~306~^102.^10^1.^~1~^~A~^^^1^77.^110.^6^98.^105.^~2, 3~^~07/01/2014~ -~18964~^~307~^305.^10^2.^~1~^~A~^^^1^285.^339.^6^298.^311.^~2, 3~^~03/01/2011~ -~18964~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~417~^72.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~431~^53.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18964~^~601~^5.^6^0.^~1~^~A~^^^1^1.^6.^2^4.^5.^~2, 3~^~07/01/2014~ -~18965~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18965~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~268~^1748.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18965~^~301~^67.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~305~^162.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~306~^141.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~307~^1167.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~318~^56.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~319~^8.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~320~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~321~^16.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~18965~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~338~^68.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~417~^228.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~431~^174.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~432~^54.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~435~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18965~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18966~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~268~^1665.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18966~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~304~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~305~^196.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~306~^221.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~307~^1214.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18966~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18966~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~338~^80.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~417~^82.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~431~^52.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~432~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18966~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18967~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~268~^994.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~301~^684.^2^^~1~^~A~^^^1^672.^696.^1^^^^~03/01/2011~ -~18967~^~304~^26.^2^^~1~^~A~^^^1^26.^26.^^^^^~03/01/2011~ -~18967~^~305~^103.^2^^~1~^~A~^^^1^103.^103.^^^^^~03/01/2011~ -~18967~^~306~^127.^2^^~1~^~A~^^^1^125.^129.^1^^^^~03/01/2011~ -~18967~^~307~^478.^2^^~1~^~A~^^^1^446.^509.^1^^^^~03/01/2011~ -~18967~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~417~^127.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~432~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18968~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18968~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~268~^1047.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18968~^~301~^20.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~305~^142.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~306~^165.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~307~^439.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18968~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~338~^88.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~417~^76.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~431~^46.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~432~^31.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18968~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18969~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~268~^1398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~301~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~305~^71.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~306~^68.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~307~^265.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~318~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~319~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~320~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~324~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~338~^86.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~417~^66.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~601~^66.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18970~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18970~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~268~^1244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18970~^~301~^163.^12^13.^~1~^~A~^^^1^60.^224.^11^133.^192.^~2, 3~^~03/01/2011~ -~18970~^~304~^21.^12^0.^~1~^~A~^^^1^17.^27.^11^19.^23.^~2, 3~^~03/01/2011~ -~18970~^~305~^213.^12^15.^~1~^~A~^^^1^103.^260.^11^179.^247.^~2, 3~^~03/01/2011~ -~18970~^~306~^133.^12^12.^~1~^~A~^^^1^97.^245.^11^104.^160.^~2, 3~^~03/01/2011~ -~18970~^~307~^742.^12^35.^~1~^~A~^^^1^559.^882.^11^664.^819.^~2, 3~^~03/01/2011~ -~18970~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~417~^118.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~431~^100.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~435~^188.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18970~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18971~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18971~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18971~^~301~^188.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~304~^28.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~305~^369.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~306~^718.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~307~^375.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~318~^89.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~319~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~320~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~417~^126.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~431~^33.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~432~^92.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18971~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~208~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18972~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~268~^1709.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18972~^~301~^90.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~305~^120.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~306~^84.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~307~^750.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18972~^~319~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~320~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~417~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~431~^75.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~432~^32.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18972~^~601~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~262~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~268~^1044.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~301~^35.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~305~^128.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~306~^114.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~307~^561.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~417~^138.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~431~^54.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~432~^84.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~435~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~19000~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19000~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19000~^~301~^429.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~304~^336.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~305~^560.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~306~^294.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~307~^168.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19000~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19000~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19000~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~639~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~641~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19001~^~262~^12.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~263~^128.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~19001~^~268~^2045.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19001~^~301~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~304~^47.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~305~^145.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~306~^260.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~307~^54.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19001~^~319~^37.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19001~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~432~^9.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~19001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19001~^~601~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~638~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~639~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~641~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19002~^~208~^410.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~19002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~268~^1715.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~19002~^~301~^20.^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~305~^407.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~306~^597.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19002~^~307~^1785.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~19002~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19002~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~19002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~324~^11.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~19002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19002~^~417~^134.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19002~^~432~^134.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~19002~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~19002~^~601~^48.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19003~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19003~^~268~^2256.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19003~^~301~^138.^12^4.^~1~^~A~^^^1^114.^160.^11^128.^147.^~2, 3~^~05/01/2014~ -~19003~^~304~^72.^12^1.^~1~^~A~^^^1^64.^83.^11^67.^75.^~2, 3~^~05/01/2014~ -~19003~^~305~^194.^12^4.^~1~^~A~^^^1^176.^217.^11^184.^202.^~2, 3~^~05/01/2014~ -~19003~^~306~^144.^12^4.^~1~^~A~^^^1^119.^166.^11^134.^154.^~2, 3~^~05/01/2014~ -~19003~^~307~^514.^12^28.^~1~^~A~^^^1^300.^645.^11^450.^577.^~2, 3~^~05/01/2014~ -~19003~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19003~^~319~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2003~ -~19003~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19003~^~321~^20.^6^3.^~1~^~A~^^^1^13.^30.^5^11.^28.^~2, 3~^~05/01/2014~ -~19003~^~322~^2.^6^0.^~1~^~A~^^^1^0.^5.^5^0.^4.^~1, 2, 3~^~05/01/2014~ -~19003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19003~^~334~^41.^6^9.^~1~^~A~^^^1^22.^79.^5^16.^64.^~2, 3~^~05/01/2014~ -~19003~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~338~^527.^6^94.^~1~^~A~^^^1^334.^958.^5^283.^770.^~2, 3~^~05/01/2014~ -~19003~^~417~^8.^6^1.^~1~^~A~^^^1^4.^11.^5^4.^11.^~1, 2, 3~^~05/01/2014~ -~19003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19003~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19003~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~638~^21.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^22.^~2, 3~^~08/01/2015~ -~19003~^~639~^51.^4^2.^~1~^~A~^^^1^42.^53.^3^41.^59.^~2, 3~^~02/01/2005~ -~19003~^~641~^148.^4^8.^~1~^~A~^^^1^123.^157.^3^121.^174.^~2, 3~^~02/01/2005~ -~19004~^~208~^523.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19004~^~268~^2188.^0^^~4~^^^^^^^^^^^ -~19004~^~301~^131.^21^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~304~^77.^19^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~305~^207.^19^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~306~^236.^22^31.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~307~^763.^7^35.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~318~^611.^15^58.^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19004~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19004~^~417~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19004~^~432~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19004~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19004~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~208~^510.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19005~^~268~^2134.^0^^~4~^^^^^^^^^^^ -~19005~^~301~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~305~^44.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~306~^81.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~307~^1022.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~318~^318.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19005~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19005~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19005~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19005~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19007~^~268~^2089.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19007~^~301~^29.^15^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~304~^28.^15^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~305~^72.^15^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~306~^143.^14^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~307~^950.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~19007~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19007~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19007~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19007~^~321~^51.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19007~^~322~^33.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19007~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19007~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19007~^~338~^879.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19007~^~417~^110.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19007~^~431~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~19007~^~432~^16.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19007~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19008~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19008~^~268~^2372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~301~^53.^12^2.^~1~^~A~^^^1^43.^63.^11^48.^57.^~2, 3~^~02/01/2016~ -~19008~^~304~^18.^12^0.^~1~^~A~^^^1^16.^20.^11^17.^18.^~2, 3~^~02/01/2016~ -~19008~^~305~^126.^12^3.^~1~^~A~^^^1^108.^145.^11^119.^133.^~2, 3~^~02/01/2016~ -~19008~^~306~^180.^12^4.^~1~^~A~^^^1^156.^206.^11^168.^190.^~2, 3~^~02/01/2016~ -~19008~^~307~^928.^12^30.^~1~^~A~^^^1^775.^1070.^11^861.^994.^~2, 3~^~02/01/2016~ -~19008~^~318~^95.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~19008~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~321~^23.^6^3.^~1~^~A~^^^1^12.^30.^5^14.^30.^~2, 3~^~02/01/2016~ -~19008~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2005~ -~19008~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~334~^29.^6^4.^~1~^~A~^^^1^12.^39.^5^18.^39.^~2, 3~^~02/01/2016~ -~19008~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2016~ -~19008~^~338~^635.^6^16.^~1~^~A~^^^1^562.^669.^5^591.^678.^~2, 3~^~02/01/2016~ -~19008~^~417~^80.^6^3.^~1~^~A~^^^1^65.^89.^5^70.^89.^~2, 3~^~02/01/2016~ -~19008~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~ -~19008~^~432~^80.^6^3.^~1~^~A~^^^1^65.^89.^5^70.^89.^^~02/01/2016~ -~19008~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~601~^7.^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~19008~^~636~^276.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19009~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~19009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19009~^~268~^1868.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~19009~^~301~^9.^8^1.^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~304~^113.^8^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~305~^275.^8^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~306~^278.^8^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~307~^564.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~ -~19009~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~07/01/2003~ -~19009~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~19009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~19009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~19009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19009~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19009~^~432~^0.^1^^~4~^^^^^^^^^^^~05/01/2003~ -~19009~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19009~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19010~^~208~^404.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19010~^~268~^1690.^0^^~4~^^^^^^^^^^^ -~19010~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~304~^48.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~305~^134.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~306~^168.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~318~^1764.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~417~^140.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19010~^~432~^140.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19010~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~19013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~19013~^~268~^1504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19013~^~301~^18.^2^^~1~^^^^^^^^^^^~06/01/2002~ -~19013~^~304~^14.^7^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~305~^24.^6^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~306~^164.^7^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~307~^199.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~19013~^~318~^58.^0^^~4~^~NC~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19013~^~320~^3.^0^^~4~^~NC~^~19014~^^^^^^^^^~07/01/2017~ -~19013~^~321~^34.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~322~^1.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19013~^~334~^0.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~337~^0.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~338~^51.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~417~^4.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19013~^~432~^4.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~435~^4.^0^^~4~^~NC~^~19014~^^^^^^^^^~12/01/2006~ -~19013~^~601~^0.^4^0.^~8~^~LC~^^^1^0.^0.^3^0.^0.^~4~^~02/01/2003~ -~19014~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19014~^~268~^1551.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19014~^~301~^32.^17^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~304~^20.^17^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~305~^31.^16^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~306~^294.^17^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~307~^317.^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~318~^57.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19014~^~320~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~321~^34.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19014~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19014~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19014~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19014~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19015~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~268~^1972.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19015~^~301~^61.^18^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~304~^97.^3^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~305~^277.^21^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~306~^336.^19^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~307~^294.^24^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19015~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19015~^~321~^17.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~322~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~19015~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~338~^189.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~417~^23.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19015~^~432~^23.^3^1.^~1~^^^^^^^^^^^~03/01/2006~ -~19015~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19015~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19016~^~268~^2071.^0^^~4~^^^^^^^^^^^ -~19016~^~301~^32.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~304~^81.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~305~^228.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~306~^273.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~307~^256.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~318~^37.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19016~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19016~^~417~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19016~^~432~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19016~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~208~^438.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19017~^~268~^1833.^0^^~4~^^^^^^^^^^^ -~19017~^~301~^77.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~304~^72.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~305~^204.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~306~^251.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~307~^344.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~318~^42.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19017~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19017~^~417~^13.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19017~^~432~^13.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19017~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19018~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19018~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19018~^~301~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~306~^7.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19018~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19018~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19018~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19018~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19020~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19020~^~268~^1854.^0^^~4~^^^^^^^^^^^ -~19020~^~301~^105.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~304~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~305~^230.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~306~^325.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19020~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19020~^~417~^24.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19020~^~432~^24.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19020~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19021~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19021~^~268~^1782.^0^^~4~^^^^^^^^^^^ -~19021~^~301~^91.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~305~^250.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~306~^291.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~307~^409.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~318~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19021~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19021~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19021~^~417~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19021~^~432~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19021~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19022~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19022~^~268~^1874.^0^^~4~^^^^^^^^^^^ -~19022~^~301~^101.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~305~^220.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~306~^362.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~307~^282.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19022~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19022~^~417~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19022~^~432~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19022~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19024~^~208~^466.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19024~^~268~^1950.^0^^~4~^^^^^^^^^^^ -~19024~^~301~^103.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~304~^66.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~305~^199.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~306~^313.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~307~^200.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~318~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19024~^~319~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19024~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19024~^~417~^26.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19024~^~432~^26.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19024~^~601~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19025~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~268~^1981.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19025~^~301~^21.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~304~^66.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~305~^132.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~306~^220.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~307~^174.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19025~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~417~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~432~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19025~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19026~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19026~^~262~^6.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~263~^42.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19026~^~301~^108.^3^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~304~^67.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~305~^227.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~306~^339.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~307~^193.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19026~^~319~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19026~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19026~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19026~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~19026~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~417~^25.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19026~^~432~^25.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19026~^~601~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~208~^432.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19027~^~268~^1807.^0^^~4~^^^^^^^^^^^ -~19027~^~301~^80.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~304~^88.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~305~^262.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~306~^377.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~307~^328.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~318~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19027~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19027~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19027~^~417~^33.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19027~^~432~^33.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19027~^~601~^1.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19029~^~208~^609.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19029~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~263~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~268~^2548.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19029~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~306~^73.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~307~^29.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19029~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~636~^40.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~641~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19030~^~208~^261.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~268~^1090.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19030~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~306~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19030~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19030~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19030~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19031~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19031~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~19031~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~19031~^~268~^2117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19031~^~301~^54.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~304~^118.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~305~^262.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~306~^328.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~307~^413.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19031~^~417~^38.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19031~^~432~^38.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19031~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~636~^25.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19034~^~268~^1618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19034~^~301~^7.^4^0.^~1~^~A~^^^1^6.^7.^3^6.^6.^~2, 3~^~09/01/2004~ -~19034~^~304~^144.^4^2.^~1~^~A~^^^1^136.^149.^3^134.^153.^~2, 3~^~09/01/2004~ -~19034~^~305~^358.^4^5.^~1~^~A~^^^1^342.^368.^3^338.^376.^~2, 3~^~09/01/2004~ -~19034~^~306~^329.^4^2.^~1~^~A~^^^1^324.^335.^3^321.^336.^~2, 3~^~09/01/2004~ -~19034~^~307~^8.^4^0.^~1~^~A~^^^1^7.^11.^3^5.^10.^~2, 3~^~09/01/2004~ -~19034~^~318~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19034~^~319~^0.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~ -~19034~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19034~^~321~^89.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~ -~19034~^~322~^58.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~ -~19034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19034~^~334~^0.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~ -~19034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19034~^~338~^1450.^0^^~4~^~BFSN~^~20014~^^^^^^^^^~03/01/2003~ -~19034~^~417~^31.^4^2.^~1~^~A~^^^1^25.^38.^3^22.^40.^~2, 3~^~09/01/2004~ -~19034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19034~^~432~^31.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~19034~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19034~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19035~^~208~^583.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19035~^~268~^2440.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19035~^~301~^4.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^4.^~2, 3~^~05/01/2006~ -~19035~^~304~^79.^6^1.^~1~^~A~^^^1^75.^84.^5^75.^83.^~2, 3~^~05/01/2006~ -~19035~^~305~^199.^6^4.^~1~^~A~^^^1^185.^212.^5^188.^210.^~2, 3~^~05/01/2006~ -~19035~^~306~^182.^6^4.^~1~^~A~^^^1^167.^201.^5^170.^194.^~2, 3~^~05/01/2006~ -~19035~^~307~^909.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19035~^~318~^154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19035~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~05/01/2006~ -~19035~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19035~^~321~^70.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19035~^~322~^46.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19035~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19035~^~338~^829.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~19035~^~417~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^23.^27.^~2, 3~^~05/01/2006~ -~19035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19035~^~432~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^23.^27.^^~07/01/2007~ -~19035~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19035~^~601~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19036~^~262~^0.^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~263~^0.^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~268~^1607.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~19036~^~301~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~304~^159.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~305~^277.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~306~^327.^3^28.^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~307~^288.^4^55.^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~318~^72.^3^28.^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~319~^0.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19036~^~321~^33.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~322~^21.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19036~^~334~^0.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19036~^~338~^537.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19036~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19036~^~432~^18.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19036~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19036~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19038~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19038~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~268~^1674.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~19038~^~301~^66.^14^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~304~^80.^14^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~305~^127.^11^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~306~^355.^15^12.^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~307~^177.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19038~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19038~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19038~^~321~^35.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~322~^23.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19038~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~338~^580.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~417~^16.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19038~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~432~^16.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19038~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19038~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~208~^431.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19039~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~268~^1803.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~19039~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~304~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~305~^83.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~306~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~307~^206.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19039~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19039~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19039~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19039~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19040~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19040~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~268~^2203.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19040~^~301~^113.^11^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~304~^91.^6^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~305~^361.^6^36.^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~306~^261.^8^23.^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~307~^889.^10^73.^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19040~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19040~^~321~^62.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~322~^40.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19040~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~338~^1002.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~417~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19040~^~432~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19040~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19040~^~601~^11.^5^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~208~^544.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19041~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~268~^2276.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19041~^~301~^30.^21^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~304~^11.^21^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~305~^85.^18^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~306~^127.^24^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~307~^1818.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~19041~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19041~^~319~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19041~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19041~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19041~^~432~^0.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19041~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19041~^~601~^95.^15^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19042~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~268~^2038.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~301~^32.^13^2.^~1~^~A~^^^1^17.^83.^10^25.^38.^~2, 3~^~04/01/2015~ -~19042~^~304~^58.^13^2.^~1~^~A~^^^1^45.^66.^7^53.^63.^~2, 3~^~05/01/2013~ -~19042~^~305~^145.^13^6.^~1~^~A~^^^1^114.^186.^7^129.^160.^~2, 3~^~05/01/2013~ -~19042~^~306~^1186.^13^56.^~1~^~A~^^^1^864.^1390.^7^1051.^1320.^~2, 3~^~04/01/2015~ -~19042~^~307~^545.^13^17.^~1~^~A~^^^1^443.^934.^9^506.^583.^~2, 3~^~04/01/2015~ -~19042~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19042~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~321~^203.^7^17.^~1~^~A~^^^1^124.^250.^4^154.^252.^~2, 3~^~04/01/2015~ -~19042~^~322~^5.^7^0.^~1~^~A~^^^1^0.^8.^4^2.^7.^~1, 2, 3~^~05/01/2013~ -~19042~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~334~^60.^7^6.^~1~^~A~^^^1^44.^81.^3^38.^82.^~2, 3~^~04/01/2015~ -~19042~^~337~^130.^7^20.^~1~^~A~^^^1^66.^304.^4^75.^184.^~2, 3~^~04/01/2015~ -~19042~^~338~^151.^7^13.^~1~^~A~^^^1^107.^202.^4^114.^188.^~2, 3~^~04/01/2015~ -~19042~^~417~^64.^3^7.^~1~^~A~^^^1^42.^79.^1^-35.^163.^~2, 3~^~04/01/2015~ -~19042~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~432~^64.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19042~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19043~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19043~^~268~^2222.^0^^~4~^^^^^^^^^^^ -~19043~^~301~^72.^39^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~304~^74.^35^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~305~^176.^35^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~306~^1331.^37^20.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~307~^549.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~ -~19043~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19043~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19043~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19043~^~321~^90.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19043~^~417~^62.^4^12.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19043~^~432~^62.^4^12.^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19043~^~601~^7.^5^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~301~^29.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^33.^~2, 3~^~03/01/2008~ -~19045~^~304~^45.^4^0.^~1~^~A~^^^1^44.^47.^3^41.^47.^~2, 3~^~03/01/2008~ -~19045~^~305~^129.^4^3.^~1~^~A~^^^1^122.^137.^3^118.^139.^~2, 3~^~03/01/2008~ -~19045~^~306~^760.^4^22.^~1~^~A~^^^1^723.^825.^3^688.^832.^~2, 3~^~03/01/2008~ -~19045~^~307~^450.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19045~^~318~^0.^1^^~4~^^^^^^^^^^^~03/01/2008~ -~19045~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19045~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19045~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~432~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19045~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~208~^547.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19046~^~268~^2289.^0^^~4~^^^^^^^^^^^ -~19046~^~301~^64.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~304~^55.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~305~^169.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~306~^496.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~307~^541.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~ -~19046~^~318~^755.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~320~^323.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~19046~^~417~^23.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19046~^~432~^23.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19046~^~601~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19047~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~268~^1608.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~19047~^~301~^27.^21^0.^~1~^~A~^^^2^21.^32.^6^26.^27.^~2, 3~^~05/01/2013~ -~19047~^~304~^29.^21^0.^~1~^~A~^^^2^24.^36.^4^27.^31.^~2, 3~^~04/01/2005~ -~19047~^~305~^128.^21^1.^~1~^~A~^^^2^110.^150.^6^124.^131.^~2, 3~^~07/01/2014~ -~19047~^~306~^223.^21^3.^~1~^~A~^^^2^153.^432.^4^213.^231.^~2, 3~^~12/01/2014~ -~19047~^~307~^1240.^21^23.^~1~^~A~^^^2^849.^1640.^8^1186.^1293.^~2, 3~^~12/01/2014~ -~19047~^~318~^0.^15^0.^~1~^^^^^^^^^^^~05/01/2013~ -~19047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19047~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19047~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19047~^~417~^166.^4^0.^~1~^~A~^^^2^155.^236.^1^164.^167.^~2, 3~^~07/01/2014~ -~19047~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~19047~^~432~^166.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~19047~^~435~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19047~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19048~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~263~^87.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~268~^1914.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19048~^~301~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~304~^41.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~305~^145.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~306~^225.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~307~^569.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19048~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19048~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19048~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~417~^9.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19048~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19048~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19048~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~208~^463.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~268~^1937.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~301~^197.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~304~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~305~^143.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~306~^130.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19049~^~307~^1117.^3^53.^~1~^^^^^^^^^^^~05/01/2013~ -~19049~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19049~^~319~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19049~^~321~^18.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19049~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~417~^8.^1^^~4~^^^^^^^^^^^~06/01/2013~ -~19049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~ -~19049~^~432~^8.^1^^~4~^^^^^^^^^^^~06/01/2013~ -~19049~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19049~^~601~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19050~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19050~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~19050~^~301~^28.^3^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~305~^125.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~306~^430.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~307~^203.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19050~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19050~^~417~^54.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19050~^~432~^54.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19050~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19051~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~268~^1620.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19051~^~301~^11.^9^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~304~^131.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~305~^360.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~306~^290.^6^21.^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~307~^166.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19051~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~19051~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19051~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19051~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19051~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19052~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19052~^~268~^1590.^0^^~4~^^^^^^^^^^^ -~19052~^~301~^11.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~304~^151.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~306~^299.^4^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~307~^116.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19052~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19052~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19052~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19052~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19053~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19053~^~268~^1640.^0^^~4~^^^^^^^^^^^ -~19053~^~301~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~304~^136.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~305~^375.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~306~^290.^6^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~307~^227.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19053~^~417~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19053~^~432~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19053~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19056~^~208~^472.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~19056~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~19056~^~268~^1976.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~301~^106.^12^2.^~1~^~A~^^^1^75.^132.^6^98.^112.^~2, 3~^~07/01/2014~ -~19056~^~304~^84.^12^1.^~1~^~A~^^^1^58.^90.^5^80.^87.^~2, 3~^~07/01/2014~ -~19056~^~305~^225.^12^4.^~1~^~A~^^^1^155.^242.^5^213.^235.^~2, 3~^~07/01/2014~ -~19056~^~306~^182.^12^3.^~1~^~A~^^^1^157.^204.^5^171.^191.^~2, 3~^~07/01/2014~ -~19056~^~307~^328.^12^10.^~1~^~A~^^^1^184.^515.^8^302.^353.^~2, 3~^~07/01/2014~ -~19056~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19056~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~19056~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19056~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19056~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~19056~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19056~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19056~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~19056~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19056~^~417~^12.^4^0.^~1~^~A~^^^1^11.^14.^1^1.^23.^~2, 3~^~05/01/2013~ -~19056~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~19056~^~432~^12.^4^0.^~1~^~A~^^^1^11.^14.^1^1.^23.^^~07/01/2014~ -~19056~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~05/01/2009~ -~19056~^~638~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~05/01/2006~ -~19056~^~639~^24.^4^0.^~1~^~A~^^^1^22.^25.^3^20.^26.^~2, 3~^~05/01/2006~ -~19056~^~641~^61.^4^1.^~1~^~A~^^^1^56.^64.^3^55.^66.^~2, 3~^~05/01/2006~ -~19057~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19057~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~268~^2173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19057~^~301~^137.^12^3.^~1~^~A~^^^1^120.^167.^5^128.^145.^~2, 3~^~07/01/2014~ -~19057~^~304~^75.^12^1.^~1~^~A~^^^1^70.^79.^5^71.^78.^~2, 3~^~05/01/2014~ -~19057~^~305~^252.^12^2.^~1~^~A~^^^1^213.^257.^5^246.^257.^~2, 3~^~07/01/2014~ -~19057~^~306~^223.^12^4.^~1~^~A~^^^1^203.^310.^5^212.^233.^~2, 3~^~07/01/2014~ -~19057~^~307~^691.^12^14.^~1~^~A~^^^1^514.^730.^5^653.^728.^~2, 3~^~07/01/2014~ -~19057~^~318~^112.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~321~^35.^6^1.^~1~^~A~^^^1^31.^135.^4^31.^39.^~2, 3~^~07/01/2014~ -~19057~^~322~^8.^6^0.^~1~^~A~^^^1^7.^9.^2^6.^10.^~2, 3~^~05/01/2014~ -~19057~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~334~^55.^6^2.^~1~^~A~^^^1^50.^103.^2^46.^63.^~2, 3~^~07/01/2014~ -~19057~^~337~^33.^6^2.^~1~^~A~^^^1^14.^218.^4^26.^40.^~2, 3~^~07/01/2014~ -~19057~^~338~^769.^6^10.^~1~^~A~^^^1^483.^889.^3^733.^805.^~2, 3~^~07/01/2014~ -~19057~^~417~^13.^6^0.^~1~^~A~^^^1^8.^14.^2^8.^16.^~2, 3~^~07/01/2014~ -~19057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19057~^~432~^13.^6^0.^~1~^~A~^^^1^8.^14.^2^8.^16.^^~07/01/2014~ -~19057~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19058~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~19058~^~268~^2098.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~19058~^~301~^134.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~304~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~305~^252.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~306~^259.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~307~^519.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19059~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19059~^~268~^1933.^0^^~4~^^^^^^^^^^^ -~19059~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~304~^158.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~305~^345.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~306~^685.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~307~^229.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~318~^18.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19059~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19059~^~417~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19059~^~432~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19059~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~208~^442.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~19061~^~268~^1847.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~19061~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~304~^96.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~306~^709.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~307~^95.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~19061~^~318~^49.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19061~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19061~^~417~^42.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19061~^~432~^42.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19061~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~636~^80.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19062~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~268~^2024.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19062~^~301~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~304~^161.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~305~^387.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~306~^648.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~307~^121.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~417~^52.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~432~^52.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~601~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~639~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~641~^31.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19063~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19063~^~268~^2008.^0^^~4~^^^^^^^^^^^ -~19063~^~301~^155.^13^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~304~^88.^13^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~305~^239.^13^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~306~^217.^13^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~307~^787.^16^51.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~318~^905.^8^119.^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19063~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19063~^~417~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19063~^~432~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19063~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19063~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19064~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~262~^7.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~263~^75.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~305~^57.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~306~^116.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2003~ -~19064~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2003~ -~19064~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~ -~19064~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~431~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~432~^6.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~ -~19064~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19064~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19065~^~208~^479.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~268~^2003.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~301~^64.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~305~^112.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~306~^254.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~307~^142.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~318~^42.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~208~^338.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~268~^1413.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~301~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~305~^47.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~306~^14.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~307~^261.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19067~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19068~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19068~^~301~^35.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~304~^7.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~305~^28.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~306~^44.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~307~^295.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~19068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~19068~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~19068~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19068~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~19068~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19068~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19069~^~208~^459.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~263~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~268~^1920.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~301~^36.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~304~^48.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~305~^97.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~306~^220.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~307~^230.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19069~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19069~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19069~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19069~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19069~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19069~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19069~^~417~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19069~^~432~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19069~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19070~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19070~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~268~^1638.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19070~^~301~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~306~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~307~^391.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~318~^100.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~319~^27.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19070~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19070~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19070~^~601~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19071~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19071~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~268~^2259.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19071~^~301~^303.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~304~^36.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~305~^126.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~306~^633.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~307~^107.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19071~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19071~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19071~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19074~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19074~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~268~^1598.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19074~^~301~^138.^41^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~304~^17.^41^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~305~^114.^40^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~306~^214.^42^12.^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~307~^245.^42^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~318~^42.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19074~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19074~^~601~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19075~^~208~^462.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~268~^1932.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~301~^213.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~305~^150.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~306~^341.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~307~^122.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~318~^303.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~601~^27.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19076~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19076~^~262~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~263~^75.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19076~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~305~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~306~^116.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~19076~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19076~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~431~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~432~^6.^1^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~19076~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19076~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19077~^~208~^472.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19077~^~262~^47.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~263~^1597.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~268~^1975.^0^^~4~^^^^^^^^^^^~09/01/2004~ -~19077~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~304~^265.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~305~^340.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~306~^1166.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~318~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19077~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19077~^~417~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19077~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19077~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19078~^~208~^642.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~262~^80.^3^0.^~1~^~A~^^^1^80.^80.^^^^~2, 3~^~02/01/2003~ -~19078~^~263~^1297.^3^34.^~1~^~A~^^^1^1240.^1360.^2^1146.^1446.^~2, 3~^~08/01/2014~ -~19078~^~268~^2685.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~301~^101.^3^7.^~1~^~A~^^^1^87.^109.^2^70.^132.^~2, 3~^~02/01/2003~ -~19078~^~304~^327.^3^7.^~1~^~A~^^^1^312.^338.^2^293.^360.^~2, 3~^~02/01/2003~ -~19078~^~305~^400.^3^25.^~1~^~A~^^^1^350.^431.^2^291.^507.^~2, 3~^~02/01/2003~ -~19078~^~306~^830.^3^41.^~1~^~A~^^^1^784.^914.^2^649.^1010.^~2, 3~^~02/01/2003~ -~19078~^~307~^24.^3^2.^~1~^~A~^^^1^19.^28.^2^12.^35.^~2, 3~^~02/01/2003~ -~19078~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~19078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19078~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~19078~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~19078~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~19078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19078~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~19078~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~ -~19078~^~338~^38.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19078~^~417~^28.^2^^~1~^~A~^^^1^28.^28.^^^^^~02/01/2003~ -~19078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19078~^~432~^28.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19078~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19078~^~601~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~08/01/2014~ -~19078~^~638~^38.^2^^~1~^~A~^^^1^38.^38.^1^^^^~02/01/2003~ -~19078~^~639~^13.^2^^~1~^~A~^^^1^13.^13.^^^^^~02/01/2003~ -~19078~^~641~^85.^2^^~1~^~A~^^^1^85.^86.^1^^^^~02/01/2003~ -~19079~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19079~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19079~^~301~^205.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~304~^18.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~305~^157.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~306~^290.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~307~^88.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19079~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19079~^~601~^1.^2^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19080~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19080~^~262~^62.^6^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~263~^486.^7^40.^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~268~^2008.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19080~^~301~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~304~^115.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~305~^132.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~306~^365.^6^17.^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~307~^11.^6^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~338~^18.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19080~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19081~^~208~^507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19081~^~262~^66.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~263~^426.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~268~^2120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19081~^~301~^24.^6^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~304~^113.^6^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~305~^147.^4^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~306~^290.^6^17.^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~307~^16.^4^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~318~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~319~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~320~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~321~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~322~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19081~^~334~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~337~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~338~^18.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19081~^~432~^3.^1^^~4~^^^^^^^^^^^~04/01/2005~ -~19081~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19081~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19083~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19083~^~262~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~263~^185.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~268~^1533.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19083~^~301~^17.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~304~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~305~^95.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~306~^168.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~307~^26.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19083~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19083~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19083~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19084~^~208~^569.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19084~^~268~^2383.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19084~^~301~^203.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~307~^52.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19084~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19085~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19085~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19085~^~301~^34.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19085~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~305~^31.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~306~^64.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~307~^89.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19085~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19085~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19085~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19085~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~208~^529.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19086~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~268~^2213.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19086~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~304~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~305~^310.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~306~^505.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~307~^250.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19086~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~417~^77.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~432~^77.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19086~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19087~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19087~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19087~^~301~^199.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~304~^12.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~305~^176.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~306~^286.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~307~^90.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~318~^30.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19087~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19087~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19087~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19087~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19087~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19087~^~601~^21.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19088~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19088~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~268~^755.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19088~^~301~^161.^3^4.^~9~^~MC~^^^1^155.^169.^2^143.^178.^~4~^~05/01/2004~ -~19088~^~304~^14.^18^0.^~1~^~A~^^^7^13.^16.^6^13.^15.^~4~^~03/01/2003~ -~19088~^~305~^103.^18^3.^~1~^~A~^^^7^91.^118.^6^94.^112.^~4~^~03/01/2003~ -~19088~^~306~^208.^18^6.^~1~^~A~^^^7^186.^240.^6^191.^225.^~4~^~03/01/2003~ -~19088~^~307~^74.^18^2.^~1~^~A~^^^7^64.^84.^6^68.^80.^~4~^~03/01/2003~ -~19088~^~318~^448.^3^21.^~9~^~MC~^^^1^417.^489.^2^355.^539.^~4~^~05/01/2004~ -~19088~^~319~^127.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~320~^128.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19088~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~19088~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19088~^~601~^27.^3^12.^~9~^~MC~^^^1^14.^53.^2^-27.^81.^~4~^~05/01/2004~ -~19089~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19089~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~268~^1042.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19089~^~301~^117.^2^^~8~^~LC~^^^1^93.^142.^1^^^^~03/01/2003~ -~19089~^~304~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~305~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~306~^157.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~307~^61.^2^^~8~^~LC~^^^1^56.^66.^1^^^^~03/01/2003~ -~19089~^~318~^653.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~319~^179.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~320~^182.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~324~^12.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19089~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~435~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19089~^~601~^92.^2^^~8~^~LC~^^^1^70.^113.^1^^^^~03/01/2003~ -~19090~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19090~^~268~^930.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19090~^~301~^131.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~304~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~305~^116.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~307~^61.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~318~^589.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~319~^159.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~320~^162.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~322~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~324~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19090~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~338~^151.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~417~^9.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19090~^~432~^9.^1^^~4~^^^^^^^^^^^~03/01/2009~ -~19090~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19090~^~601~^91.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19091~^~208~^384.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~268~^1606.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~301~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~305~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~306~^111.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~307~^28.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~208~^347.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~268~^1453.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~301~^8.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~305~^24.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~306~^37.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19092~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19093~^~208~^531.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~268~^2222.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~301~^251.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~305~^206.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~306~^438.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~307~^101.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~318~^229.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~601~^24.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19094~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19094~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19094~^~301~^83.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~304~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~305~^96.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~306~^118.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~307~^53.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~318~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19094~^~319~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19094~^~321~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~334~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~338~^65.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19094~^~601~^90.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19095~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19095~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19095~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19095~^~268~^868.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19095~^~301~^128.^17^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~304~^14.^12^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~305~^105.^12^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~306~^199.^12^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~307~^80.^19^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~318~^421.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~319~^116.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19095~^~321~^19.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19095~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19095~^~324~^8.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~19095~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19095~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19095~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19095~^~417~^5.^4^1.^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19095~^~432~^5.^4^1.^~1~^^^^^^^^^^^~03/01/2006~ -~19095~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19095~^~601~^44.^10^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~208~^126.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19096~^~268~^527.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~19096~^~301~^157.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~304~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~305~^121.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~306~^221.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~307~^70.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~318~^103.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19096~^~319~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19096~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19096~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~ -~19096~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~ -~19096~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~ -~19096~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19096~^~601~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19097~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19097~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19097~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19097~^~301~^54.^10^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~304~^8.^8^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~305~^40.^7^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~306~^96.^12^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~307~^46.^12^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~318~^46.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~319~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~320~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19097~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19097~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19097~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19097~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19098~^~208~^482.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~262~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~263~^79.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~268~^2017.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~19098~^~301~^73.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~304~^62.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~305~^141.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~306~^347.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~307~^225.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~318~^51.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~319~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~320~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19098~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~417~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~19098~^~432~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19098~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19099~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19099~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~268~^1560.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19099~^~301~^3.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~304~^0.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~305~^0.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~306~^4.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~307~^11.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~318~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~319~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19099~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19099~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~417~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~431~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~432~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19099~^~601~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19100~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19100~^~262~^8.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~263~^130.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19100~^~301~^49.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~304~^36.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~305~^71.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~306~^134.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~307~^45.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~318~^159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19100~^~319~^43.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19100~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19100~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~338~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~417~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~432~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19100~^~601~^14.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19101~^~262~^7.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~263~^112.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~268~^1927.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19101~^~301~^57.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~304~^55.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~305~^114.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~306~^183.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~307~^39.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19101~^~319~^37.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19101~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~08/01/2003~ -~19101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19101~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~338~^5.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~432~^16.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19101~^~601~^12.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19102~^~208~^387.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~268~^1620.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~301~^42.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~305~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~306~^119.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~307~^118.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~318~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~319~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~320~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19102~^~601~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19103~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19103~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~268~^1602.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19103~^~301~^38.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~304~^3.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~305~^30.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~306~^49.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~307~^47.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~318~^168.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19103~^~319~^45.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19103~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19103~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~417~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~432~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19103~^~601~^15.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~208~^435.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19104~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~268~^1819.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19104~^~301~^47.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~304~^24.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~305~^73.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~306~^103.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~307~^42.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19104~^~319~^40.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19104~^~321~^11.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19104~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~417~^12.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~432~^12.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19104~^~601~^13.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19105~^~208~^512.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19105~^~268~^2142.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19105~^~301~^89.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~306~^502.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19105~^~307~^36.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~318~^68.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19106~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19106~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~268~^1655.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19106~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~304~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~305~^1.^8^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~306~^5.^9^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~307~^44.^9^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19106~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19106~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19107~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~19107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~268~^1648.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19107~^~301~^3.^37^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~304~^3.^37^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~305~^3.^37^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~306~^5.^37^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~307~^38.^33^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19107~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19107~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19108~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19108~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~268~^1568.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19108~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~305~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~306~^37.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~307~^50.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19108~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19108~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19108~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19109~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19109~^~262~^14.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~263~^116.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~268~^2169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19109~^~301~^125.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~304~^37.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~305~^135.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~318~^81.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~19109~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~19109~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19109~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~338~^23.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~ -~19109~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~431~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~432~^8.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~ -~19109~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19109~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19110~^~208~^523.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19110~^~268~^2188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19110~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~304~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~305~^123.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~306~^325.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~307~^196.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~318~^102.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~417~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19111~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19111~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~263~^119.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~268~^1988.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19111~^~301~^47.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~304~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~305~^94.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~306~^249.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~307~^230.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19111~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19111~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19111~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19111~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19111~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19111~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~19111~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19111~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19112~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19112~^~268~^1455.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19112~^~301~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~ -~19112~^~307~^287.^3^2.^~8~^~LC~^^^1^282.^289.^2^275.^297.^~4~^~03/01/2002~ -~19112~^~318~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~ -~19112~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~ -~19113~^~208~^291.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~268~^1216.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~301~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~306~^3.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~307~^287.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19113~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~19113~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~19113~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19113~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19114~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19114~^~262~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~263~^69.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19114~^~301~^159.^2^^~9~^~MC~^^^1^158.^160.^1^^^^~05/01/2004~ -~19114~^~304~^20.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~305~^83.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~306~^170.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~307~^71.^2^^~9~^~MC~^^^1^67.^75.^1^^^^~05/01/2004~ -~19114~^~318~^424.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19114~^~319~^60.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19114~^~321~^135.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19114~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19114~^~601~^28.^2^^~9~^~MC~^^^1^15.^41.^1^^^^~05/01/2004~ -~19115~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19115~^~262~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~263~^29.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~268~^1954.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19115~^~301~^168.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~305~^234.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~306~^325.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~307~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~318~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19115~^~319~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19115~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19115~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19115~^~601~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19116~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19116~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~268~^1331.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19116~^~301~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~304~^2.^10^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~305~^8.^6^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~306~^5.^10^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~307~^80.^3^12.^~8~^~LC~^^^1^56.^100.^2^23.^135.^~4~^~02/01/2003~ -~19116~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19116~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19116~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19116~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19117~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19117~^~268~^1962.^0^^~4~^^^^^^^^^^^ -~19117~^~301~^33.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~304~^218.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~305~^607.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~306~^187.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~307~^195.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19117~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~ -~19117~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~ -~19117~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~ -~19117~^~417~^65.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19117~^~432~^65.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~19117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~19118~^~208~^462.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~263~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~268~^1933.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~301~^69.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~305~^140.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~306~^259.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~307~^193.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~19118~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~19118~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~19118~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19118~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19118~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19118~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19118~^~417~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~432~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19118~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19119~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19119~^~268~^2172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19119~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~307~^38.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~601~^10.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19120~^~208~^535.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19120~^~262~^20.^9^0.^~1~^~A~^^^^20.^20.^^^^^~02/01/2003~ -~19120~^~263~^205.^8^6.^~1~^~A~^^^^166.^221.^^^^^~02/01/2003~ -~19120~^~268~^2239.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19120~^~301~^189.^27^0.^~1~^~A~^^^1^188.^189.^1^184.^192.^~4~^~02/01/2003~ -~19120~^~304~^63.^27^3.^~1~^~A~^^^1^59.^66.^1^22.^102.^~4~^~02/01/2003~ -~19120~^~305~^208.^27^6.^~1~^~A~^^^1^202.^215.^1^124.^292.^~4~^~02/01/2003~ -~19120~^~306~^372.^27^30.^~1~^~A~^^^1^342.^403.^1^-11.^756.^~4~^~02/01/2003~ -~19120~^~307~^79.^27^8.^~1~^~A~^^^1^70.^87.^1^-30.^188.^~4~^~02/01/2003~ -~19120~^~318~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19120~^~319~^59.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19120~^~321~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~ -~19120~^~322~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~ -~19120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19120~^~334~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~ -~19120~^~337~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~ -~19120~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~417~^12.^5^0.^~1~^~A~^^^^9.^13.^^^^^~02/01/2003~ -~19120~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19120~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19120~^~601~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~19120~^~638~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~19120~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~19120~^~641~^37.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~19121~^~208~^105.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~268~^441.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19121~^~301~^102.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~305~^216.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~306~^131.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~307~^296.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~319~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19121~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19121~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19121~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19122~^~208~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~268~^422.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19122~^~301~^109.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~305~^83.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~306~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~307~^164.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~318~^178.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~319~^49.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19122~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19122~^~324~^35.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19122~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19123~^~208~^105.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~263~^39.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~268~^441.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19123~^~301~^104.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~304~^19.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~305~^238.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~306~^168.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~307~^284.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~319~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19123~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19123~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19123~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19124~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19124~^~262~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~263~^231.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~268~^1782.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19124~^~301~^34.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~304~^95.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~305~^142.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~306~^397.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~307~^3.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19124~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19124~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19125~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19125~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~263~^230.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19125~^~301~^108.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~304~^64.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~305~^152.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~306~^407.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19125~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19125~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19125~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19125~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19126~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19126~^~262~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~263~^145.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~268~^2172.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19126~^~301~^104.^5^15.^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~304~^96.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~305~^212.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~306~^502.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~307~^41.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~318~^131.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~319~^41.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19126~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19126~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~417~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~432~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19126~^~601~^9.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~263~^122.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~301~^86.^4^14.^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~305~^143.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~306~^514.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~307~^36.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~318~^91.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~319~^29.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19127~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19127~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19127~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19127~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19127~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19127~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19127~^~601~^3.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19128~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19128~^~301~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~304~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~305~^43.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19128~^~306~^3.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~19128~^~307~^178.^2^^~8~^~LC~^^^1^178.^178.^1^^^^~12/01/2006~ -~19128~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19128~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19128~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19128~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~12/01/2006~ -~19129~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19129~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~268~^977.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19129~^~301~^3.^18^0.^~1~^~A~^^^7^1.^5.^17^2.^3.^~4~^~02/01/2003~ -~19129~^~304~^2.^18^0.^~1~^~A~^^^7^1.^3.^17^1.^2.^~4~^~02/01/2003~ -~19129~^~305~^9.^18^1.^~1~^~A~^^^7^0.^19.^17^6.^12.^~4~^~02/01/2003~ -~19129~^~306~^15.^18^1.^~1~^~A~^^^7^3.^25.^17^12.^18.^~4~^~02/01/2003~ -~19129~^~307~^82.^18^7.^~1~^~A~^^^7^49.^154.^17^67.^97.^~4~^~02/01/2003~ -~19129~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19129~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19129~^~601~^0.^1^^~8~^~LC~^^^1^0.^0.^0^^^^~02/01/2003~ -~19130~^~208~^577.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19130~^~268~^2414.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~301~^192.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~307~^64.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19132~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~262~^18.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~263~^183.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~268~^2200.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~301~^224.^12^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~304~^90.^6^5.^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~305~^264.^6^14.^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~306~^444.^8^6.^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~307~^74.^11^8.^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~19132~^~319~^52.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~19132~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19132~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~338~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~417~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19132~^~432~^13.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~19132~^~601~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19134~^~208~^511.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19134~^~262~^20.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~263~^203.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~268~^2136.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19134~^~301~^187.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~304~^62.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~305~^207.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~306~^370.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~307~^86.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~19134~^~319~^65.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19134~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19134~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~431~^6.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19134~^~601~^23.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19135~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19135~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~263~^64.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~268~^1907.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19135~^~301~^115.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~304~^20.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~305~^67.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~306~^124.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~307~^167.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19135~^~319~^31.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19135~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~324~^16.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19135~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19136~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19136~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~263~^111.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~268~^2263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19136~^~301~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~304~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~305~^61.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~306~^153.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~307~^317.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19136~^~319~^61.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~19136~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19136~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~19136~^~322~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~19136~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19136~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19137~^~208~^254.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~268~^1063.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19137~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~305~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~306~^51.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~307~^21.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~318~^18.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19137~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19137~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19138~^~208~^510.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~262~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~263~^152.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~268~^2133.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~301~^157.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~304~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~305~^171.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~306~^297.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~307~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~318~^513.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~319~^142.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~320~^144.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~321~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19138~^~601~^53.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19139~^~208~^517.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~268~^2163.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~301~^34.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~318~^74.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19140~^~208~^515.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~262~^10.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~263~^108.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~268~^2156.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~301~^102.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~304~^69.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~305~^190.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~306~^347.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~307~^50.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19140~^~319~^22.^0^^~4~^~O~^^^^^^^^^^~01/01/2006~ -~19140~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19140~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19140~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19140~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19140~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19140~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19140~^~417~^55.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19140~^~432~^55.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19140~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~208~^492.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~262~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~263~^143.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~268~^2057.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19141~^~301~^105.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~304~^44.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~305~^146.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~306~^261.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~307~^61.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19141~^~319~^56.^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19141~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19141~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19141~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19141~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~19141~^~432~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19141~^~601~^14.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19142~^~208~^493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19142~^~262~^17.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~263~^130.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~268~^2064.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19142~^~301~^21.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~304~^55.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~305~^91.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~306~^321.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~307~^145.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19142~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19142~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~338~^5.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19142~^~601~^2.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~208~^538.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~262~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19143~^~263~^198.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19143~^~268~^2252.^0^^~9~^~MC~^^^^^^^^^^~05/01/2003~ -~19143~^~301~^110.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~304~^47.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~305~^163.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~306~^394.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~307~^41.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~318~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19143~^~319~^35.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19143~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19143~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19143~^~417~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~432~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2003~ -~19143~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19143~^~601~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19144~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19144~^~262~^8.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~263~^55.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~268~^1957.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19144~^~301~^76.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~304~^25.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~305~^86.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~306~^163.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~307~^203.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~318~^127.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~319~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19144~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19144~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19144~^~601~^12.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19145~^~208~^500.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~262~^30.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~263~^168.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~268~^2092.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~306~^305.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~307~^150.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~318~^107.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19146~^~208~^502.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~301~^116.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~318~^224.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19147~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19147~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~268~^2184.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19147~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~304~^110.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~305~^308.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~306~^407.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~307~^156.^0^^~8~^~LC~^^^^^^^^^^~11/01/1997~ -~19147~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19147~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~417~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~432~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19147~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19148~^~208~^486.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19148~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~268~^2033.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19148~^~301~^27.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~304~^42.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~305~^106.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~306~^168.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~307~^445.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19148~^~319~^38.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19148~^~321~^9.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19148~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~417~^46.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~432~^46.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19148~^~601~^12.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19149~^~208~^422.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~268~^1766.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~301~^85.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~307~^33.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~318~^77.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19150~^~208~^515.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~262~^7.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~263~^72.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~268~^2153.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19150~^~301~^78.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~304~^62.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~305~^161.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~306~^343.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~307~^357.^0^^~9~^~MC~^^^^^^^^^^~07/01/2010~ -~19150~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~19150~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~19150~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19150~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19150~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~338~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~417~^50.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~432~^50.^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19150~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19150~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~208~^497.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~268~^2080.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19151~^~301~^69.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~304~^88.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~305~^207.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~306~^359.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~307~^194.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19151~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19151~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19151~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19151~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19151~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19151~^~417~^55.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~19151~^~432~^55.^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19151~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19151~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~208~^474.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~262~^6.^1^^~8~^~LC~^^^^^^^^^^~11/01/2004~ -~19152~^~263~^52.^1^^~8~^~LC~^^^^^^^^^^~11/01/2004~ -~19152~^~268~^1984.^0^^~9~^~MC~^^^^^^^^^^~11/01/2004~ -~19152~^~301~^145.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~304~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~305~^71.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~306~^188.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~307~^188.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19152~^~319~^33.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19152~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19152~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19152~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~ -~19152~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19152~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19153~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19153~^~268~^1807.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19153~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~307~^1.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19153~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19153~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19154~^~208~^516.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19154~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~268~^2161.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19154~^~301~^639.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~304~^251.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~305~^412.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~306~^307.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~307~^167.^0^^~8~^~LC~^^^^^^^^^^~11/01/1997~ -~19154~^~318~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19154~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~417~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19154~^~432~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19154~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19155~^~208~^491.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19155~^~262~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~263~^85.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~268~^2053.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19155~^~301~^93.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~304~^72.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~305~^190.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~307~^239.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~19155~^~318~^161.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19155~^~319~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19155~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19155~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~338~^16.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~ -~19155~^~417~^27.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~431~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~432~^21.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~ -~19155~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19155~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~208~^408.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19156~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~268~^1706.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19156~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~304~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~305~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~306~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~318~^1.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19156~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19156~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19156~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19157~^~208~^502.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~301~^116.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~318~^224.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19157~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19159~^~208~^436.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19159~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~263~^106.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~268~^1825.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19159~^~301~^54.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~305~^69.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~306~^133.^3^51.^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~307~^194.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19159~^~319~^20.^0^^~4~^~O~^^^^^^^^^^~12/01/2005~ -~19159~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19159~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19159~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19159~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19159~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19159~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19159~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19159~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19160~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19160~^~262~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~263~^70.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19160~^~301~^106.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~304~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~305~^105.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~306~^186.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~307~^198.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19160~^~319~^20.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19160~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19160~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~431~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~19160~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~19160~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19160~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~208~^547.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19161~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~263~^70.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~268~^2290.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19161~^~301~^75.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~304~^61.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~305~^173.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~306~^264.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~307~^226.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~318~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19161~^~319~^20.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19161~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19161~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~338~^31.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~417~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19161~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19162~^~208~^494.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~262~^10.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~263~^100.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~268~^2067.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~19162~^~301~^118.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~304~^28.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~305~^138.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~306~^303.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~307~^299.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~318~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19162~^~319~^37.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19162~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19162~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~417~^18.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~ -~19162~^~432~^18.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19162~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19163~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19163~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~268~^1507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19163~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~305~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~306~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~307~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19163~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19164~^~208~^556.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19164~^~268~^2325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19164~^~301~^30.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~304~^31.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~305~^51.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~306~^502.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~432~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19164~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19165~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19165~^~262~^230.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~263~^2057.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19165~^~301~^128.^9^8.^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~304~^499.^9^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~305~^734.^9^19.^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~306~^1524.^6^74.^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~307~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~318~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~319~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19165~^~321~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~322~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19165~^~334~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~337~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~338~^38.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~417~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19165~^~432~^32.^2^^~1~^^^^^^^^^^^~02/01/2003~ -~19165~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19165~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19166~^~262~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~263~^2634.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19166~^~301~^111.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~304~^476.^3^14.^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~305~^728.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~306~^2509.^3^585.^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~307~^19.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~318~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~319~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19166~^~321~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~322~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19166~^~334~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~337~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~338~^38.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~417~^32.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19166~^~432~^32.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19166~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19166~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19168~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19168~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~268~^437.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19168~^~301~^107.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~304~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~305~^113.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~306~^148.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~307~^61.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19168~^~319~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19168~^~321~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~334~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~338~^59.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~432~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19168~^~601~^84.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19169~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19169~^~268~^1715.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19169~^~301~^228.^6^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~304~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~305~^332.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~306~^540.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~307~^281.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~318~^217.^6^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~319~^63.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19169~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19169~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19169~^~601~^258.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19170~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19170~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19170~^~301~^139.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~304~^16.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~305~^130.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~306~^207.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~307~^84.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~318~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19170~^~319~^52.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19170~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~324~^47.^0^^~4~^~RP~^^^^^^^^^^~08/01/2009~ -~19170~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~417~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~432~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19170~^~601~^51.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19171~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19171~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19171~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~307~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19172~^~208~^381.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19172~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~268~^1594.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19172~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~305~^141.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19172~^~306~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~307~^466.^4^54.^~8~^~LC~^^^2^364.^619.^3^293.^639.^~4~^~02/01/2003~ -~19172~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19172~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19172~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19172~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~02/01/2003~ -~19173~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19173~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19173~^~301~^3.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~305~^22.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~307~^75.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19173~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19173~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19173~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19175~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19175~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19175~^~301~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~305~^1293.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19175~^~306~^14.^7^1.^~1~^^^^^^^^^^^~03/01/2003~ -~19175~^~307~^862.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19175~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19175~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19175~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19176~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19176~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19176~^~301~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~305~^68.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~19176~^~307~^48.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19176~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19176~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19176~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19177~^~208~^335.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19177~^~268~^1402.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19177~^~301~^55.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~304~^22.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~306~^16.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~307~^196.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19177~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19177~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19177~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~417~^30.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19177~^~432~^30.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19177~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19181~^~208~^394.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~268~^1647.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~301~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~304~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~305~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~306~^108.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~307~^46.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19182~^~208~^225.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~262~^7.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~263~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~268~^941.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~301~^96.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~305~^117.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~306~^143.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~307~^38.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~318~^509.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~319~^138.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~320~^140.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~321~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~322~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~334~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~338~^94.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~417~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~432~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19182~^~601~^140.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19183~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~263~^70.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~268~^593.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~301~^51.^4^10.^~1~^~A~^^^1^28.^80.^3^17.^85.^~2, 3~^~10/01/2006~ -~19183~^~304~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^~2, 3~^~10/01/2006~ -~19183~^~305~^56.^4^8.^~1~^~A~^^^1^39.^80.^3^28.^83.^~2, 3~^~10/01/2006~ -~19183~^~306~^184.^4^14.^~1~^~A~^^^1^146.^208.^3^136.^231.^~2, 3~^~10/01/2006~ -~19183~^~307~^152.^4^3.^~1~^~A~^^^1^142.^160.^3^139.^163.^~2, 3~^~10/01/2006~ -~19183~^~318~^46.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~319~^14.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~320~^14.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19183~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~19183~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19183~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19184~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19184~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~263~^245.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19184~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~305~^72.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~306~^236.^17^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19184~^~307~^1771.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19184~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19184~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19184~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19184~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19185~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19185~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19185~^~263~^62.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19185~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~19185~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~305~^239.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~318~^120.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19185~^~319~^24.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19185~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19185~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19185~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~ -~19185~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2002~ -~19185~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19185~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19186~^~208~^161.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~268~^675.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~301~^35.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~304~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~305~^28.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~306~^78.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~307~^351.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~318~^142.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~319~^26.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~320~^29.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~321~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~334~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~338~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~431~^12.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~432~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19186~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19187~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~ -~19187~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19187~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19187~^~268~^1456.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19187~^~301~^24.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~304~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~305~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~306~^153.^5^8.^~1~^^^^^^^^^^^~08/01/1991~ -~19187~^~307~^432.^5^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19187~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19187~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19187~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19187~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19187~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19188~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19188~^~262~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~263~^362.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19188~^~301~^53.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~304~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~305~^88.^4^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~306~^209.^20^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~307~^479.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19188~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19188~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19188~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19188~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19189~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19189~^~262~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~263~^63.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~268~^500.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19189~^~301~^106.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~304~^20.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~305~^87.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~306~^150.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~307~^98.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~318~^139.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~ -~19189~^~319~^39.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19189~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19189~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19190~^~208~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~262~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~263~^63.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~268~^463.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~301~^112.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~304~^21.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~305~^94.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~306~^156.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~307~^102.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~318~^163.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19190~^~319~^47.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19190~^~321~^3.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~324~^42.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~ -~19190~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19190~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~638~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~639~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~641~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19191~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19191~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19191~^~268~^448.^0^^~4~^^^^^^^^^^^ -~19191~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~305~^201.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~307~^246.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~318~^150.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19191~^~319~^45.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19191~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19191~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19191~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19191~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19191~^~601~^6.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19193~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~301~^95.^6^0.^~1~^~A~^^^1^93.^99.^5^92.^97.^~2, 3~^~05/01/2013~ -~19193~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19193~^~305~^82.^6^0.^~1~^~A~^^^1^80.^84.^5^80.^83.^~2, 3~^~05/01/2013~ -~19193~^~306~^125.^6^0.^~1~^~A~^^^1^124.^127.^5^124.^126.^~2, 3~^~05/01/2013~ -~19193~^~307~^97.^6^0.^~1~^~A~^^^1^94.^100.^5^94.^99.^~2, 3~^~05/01/2013~ -~19193~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~19193~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~19193~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19193~^~601~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^10.^14.^~2, 3~^~05/01/2013~ -~19194~^~208~^376.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~268~^1573.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19194~^~301~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~305~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~307~^366.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~19194~^~417~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19194~^~432~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19194~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19195~^~208~^121.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~268~^507.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19195~^~301~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~305~^85.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~306~^128.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~307~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~318~^115.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19195~^~319~^28.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19195~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19195~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19195~^~601~^11.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19198~^~208~^369.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~268~^1544.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19198~^~301~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~304~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~305~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~306~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~307~^477.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19198~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19198~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19198~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19198~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19199~^~208~^115.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~268~^481.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19199~^~301~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~305~^81.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~306~^131.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~307~^120.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~318~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~319~^24.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19199~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19199~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19199~^~601~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19201~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19201~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19201~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19201~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19201~^~301~^49.^4^0.^~1~^~A~^^^1^45.^74.^1^43.^53.^~2, 3~^~10/01/2006~ -~19201~^~304~^4.^4^0.^~1~^~A~^^^1^4.^6.^1^3.^5.^~2, 3~^~10/01/2006~ -~19201~^~305~^41.^4^2.^~1~^~A~^^^1^36.^58.^1^11.^70.^~2, 3~^~10/01/2006~ -~19201~^~306~^65.^4^1.^~1~^~A~^^^1^56.^99.^1^49.^79.^~2, 3~^~10/01/2006~ -~19201~^~307~^172.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19201~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19201~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19201~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~19201~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19201~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19201~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19201~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19202~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19202~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~268~^1577.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19202~^~301~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~305~^705.^3^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~306~^12.^16^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~307~^1400.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19202~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19202~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19202~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19202~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19202~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19203~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19203~^~268~^477.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~19203~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~306~^128.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~307~^286.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19203~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19203~^~321~^18.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19203~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~ -~19203~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2002~ -~19203~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19203~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19204~^~208~^107.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~268~^449.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2003~ -~19204~^~301~^101.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~304~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~305~^207.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~306~^130.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~307~^268.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~319~^45.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19204~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19204~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19204~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19205~^~208~^112.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~268~^470.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~301~^146.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~304~^17.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~305~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~306~^214.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~307~^87.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19205~^~319~^60.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19205~^~321~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~ -~19205~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~417~^8.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~432~^8.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~19205~^~601~^49.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~638~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~639~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~641~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19206~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19206~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~268~^1585.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19206~^~301~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~304~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~305~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~306~^20.^17^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~307~^613.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19206~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19206~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~19206~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19206~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19206~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19207~^~208~^113.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~268~^473.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~301~^99.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~304~^9.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~305~^74.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~306~^119.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~307~^156.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~318~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19207~^~319~^40.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19207~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~324~^45.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19207~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19208~^~208~^111.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~268~^465.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19208~^~301~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~305~^87.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~306~^130.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~307~^109.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~318~^172.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~319~^45.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19208~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19208~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19208~^~601~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~208~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~268~^438.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19209~^~301~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~305~^82.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~306~^133.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~307~^121.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~318~^160.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19209~^~319~^46.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19209~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19209~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19209~^~601~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~208~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~268~^425.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19212~^~301~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~305~^83.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~306~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~307~^159.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~318~^160.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19212~^~319~^47.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19212~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19212~^~324~^35.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19212~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19213~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~263~^42.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~268~^357.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19213~^~301~^126.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~304~^20.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~305~^98.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~306~^182.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~307~^52.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19213~^~319~^50.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19213~^~321~^11.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19213~^~324~^36.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19213~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~208~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~268~^324.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19214~^~301~^121.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~304~^13.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~305~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~306~^142.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~307~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19214~^~319~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19214~^~324~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19214~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19216~^~208~^485.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~268~^2028.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~301~^43.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~304~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~305~^104.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~306~^217.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~307~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~318~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~320~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~334~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~338~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~417~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~432~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19216~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19217~^~208~^24.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~268~^100.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19217~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~305~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~306~^26.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~307~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19217~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19217~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19217~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19217~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19218~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~268~^542.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~301~^71.^2^^~1~^~A~^^^1^67.^76.^1^^^^~10/01/2006~ -~19218~^~304~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~10/01/2006~ -~19218~^~305~^60.^2^^~1~^~A~^^^1^59.^61.^1^^^^~10/01/2006~ -~19218~^~306~^92.^2^^~1~^~A~^^^1^87.^98.^1^^^^~10/01/2006~ -~19218~^~307~^145.^2^^~1~^~A~^^^1^136.^154.^1^^^^~10/01/2006~ -~19218~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~19218~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~19218~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~ -~19218~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~ -~19218~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19218~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~ -~19218~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~ -~19218~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19218~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19219~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19219~^~268~^435.^0^^~4~^^^^^^^^^^^ -~19219~^~301~^113.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~305~^89.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~306~^159.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~307~^163.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19219~^~319~^48.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19219~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19219~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19219~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19219~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19219~^~601~^7.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19220~^~262~^13.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19220~^~263~^424.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19220~^~268~^1519.^0^^~4~^^^^^^^^^^^~07/01/2008~ -~19220~^~301~^166.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~304~^81.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~305~^129.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~306~^430.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~307~^187.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~19220~^~318~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19220~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~19220~^~417~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19220~^~432~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19220~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19221~^~208~^96.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~263~^42.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~268~^403.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19221~^~301~^124.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~304~^20.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~305~^97.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~306~^179.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~307~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~318~^110.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19221~^~319~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19221~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19221~^~324~^36.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19221~^~601~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19222~^~208~^383.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~268~^1602.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19222~^~301~^117.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~304~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~305~^91.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~306~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~307~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19222~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19222~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19222~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19223~^~208~^89.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~268~^371.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~ -~19223~^~301~^119.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~305~^93.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~306~^140.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~307~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~318~^115.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19223~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19223~^~321~^17.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19223~^~324~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19223~^~601~^13.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19225~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19225~^~268~^351.^0^^~4~^^^^^^^^^^^ -~19225~^~301~^3733.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~304~^18.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~305~^340.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~306~^292.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~307~^26050.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19225~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19225~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19225~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19225~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~208~^397.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~263~^79.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~268~^1661.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~19226~^~301~^8.^7^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~304~^21.^6^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~306~^196.^9^18.^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~307~^183.^15^19.^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~19226~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19226~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19226~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~636~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19227~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19227~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19227~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19227~^~268~^1811.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19227~^~301~^13.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~304~^19.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~306~^186.^9^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~307~^160.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19227~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19227~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19227~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19227~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19227~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19227~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19227~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19228~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19228~^~268~^1737.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19228~^~301~^3.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~305~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~306~^35.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~307~^191.^3^3.^~8~^~LC~^^^1^188.^197.^2^177.^204.^~4~^~03/01/2002~ -~19228~^~318~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~ -~19228~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19228~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~19228~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~19228~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19230~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19230~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~268~^1748.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19230~^~301~^3.^6^0.^~1~^~A~^^^1^2.^4.^5^2.^3.^~2, 3~^~03/01/2003~ -~19230~^~304~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^1.^~1, 2, 3~^~03/01/2003~ -~19230~^~305~^18.^6^5.^~1~^~A~^^^1^4.^32.^5^4.^31.^~1, 2, 3~^~03/01/2003~ -~19230~^~306~^34.^6^2.^~1~^~A~^^^1^27.^40.^5^28.^39.^~2, 3~^~03/01/2003~ -~19230~^~307~^184.^6^2.^~1~^~A~^^^1^176.^195.^5^176.^191.^~2, 3~^~03/01/2003~ -~19230~^~318~^0.^4^0.^~8~^~LC~^^^1^0.^0.^3^0.^0.^~4~^~02/01/2003~ -~19230~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19230~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19230~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19230~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19230~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19230~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19230~^~417~^8.^6^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2003~ -~19230~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19230~^~432~^8.^6^0.^~1~^~A~^^^1^8.^8.^^^^^~03/01/2006~ -~19230~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19230~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19231~^~208~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~268~^430.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19231~^~301~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~305~^86.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~306~^163.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~307~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~318~^180.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19231~^~319~^51.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19231~^~321~^11.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19231~^~324~^36.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19231~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~208~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~268~^475.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19232~^~301~^111.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~305~^84.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~306~^160.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~307~^112.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~318~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~319~^28.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19232~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19232~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~ -~19232~^~324~^36.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~19232~^~601~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19233~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19233~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19233~^~301~^40.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~306~^108.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~307~^191.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~318~^1.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~19233~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~19233~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19233~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19233~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19233~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19234~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~306~^70.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~307~^187.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19234~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~19234~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19234~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19235~^~208~^93.^3^3.^~8~^~LC~^^^1^88.^101.^2^76.^109.^~4~^~11/01/2006~ -~19235~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~263~^53.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~268~^390.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19235~^~301~^39.^3^17.^~8~^~LC~^^^1^4.^60.^2^-36.^115.^~4~^~11/01/2006~ -~19235~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~306~^208.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~19235~^~307~^154.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19235~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19235~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19235~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19235~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~19235~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19235~^~601~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~19236~^~208~^568.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19236~^~268~^2375.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19236~^~304~^59.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~305~^227.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~306~^471.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~307~^74.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~318~^177.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~417~^16.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~601~^19.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~208~^521.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~268~^2181.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~301~^112.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~304~^63.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~305~^194.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~306~^382.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~307~^179.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~318~^60.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~417~^42.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~208~^517.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~268~^2165.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~301~^68.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~304~^68.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~305~^175.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~306~^364.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~307~^141.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~318~^36.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~417~^56.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19240~^~208~^389.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~262~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19240~^~263~^188.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19240~^~268~^1628.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19240~^~301~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~304~^38.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~305~^62.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~307~^76.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19240~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19240~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19240~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19240~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19241~^~208~^408.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19241~^~262~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~263~^146.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~268~^1708.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19241~^~301~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~304~^30.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~305~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~306~^143.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~307~^124.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~318~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19241~^~319~^75.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19241~^~321~^18.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~324~^7.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~19241~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~417~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19241~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19241~^~601~^24.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19243~^~208~^530.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~268~^2217.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~301~^86.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~304~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~305~^71.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~306~^210.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~307~^245.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~318~^232.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~417~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~601~^19.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19244~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19244~^~268~^1715.^0^^~4~^^^^^^^^^^^~07/01/2008~ -~19244~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~305~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~306~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~307~^13.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19244~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~19244~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19244~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19244~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19246~^~268~^1552.^0^^~4~^^^^^^^^^^^~07/01/2008~ -~19246~^~301~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~304~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~305~^7.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~307~^234.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19246~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~19246~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19246~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19246~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19247~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19247~^~268~^1021.^0^^~4~^^^^^^^^^^^ -~19247~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~305~^5.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~306~^77.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~307~^156.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19247~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19247~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19247~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19247~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19248~^~208~^563.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19248~^~268~^2356.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19248~^~301~^109.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~304~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~305~^129.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~306~^306.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~307~^39.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~318~^117.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~417~^8.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19249~^~208~^521.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~263~^48.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~268~^2181.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~301~^70.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~304~^49.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~305~^144.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~306~^295.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~307~^264.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~318~^58.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~319~^14.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19249~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19249~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19249~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19249~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~432~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19249~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~208~^520.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~268~^2175.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~301~^138.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~304~^2.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~305~^112.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~306~^294.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~307~^64.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~318~^92.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~417~^3.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~432~^3.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~208~^474.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~268~^1985.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~301~^61.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~304~^48.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~305~^130.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~306~^284.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~307~^330.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~318~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~417~^39.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~432~^39.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19254~^~208~^546.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19254~^~268~^2282.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19254~^~301~^160.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~307~^63.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~318~^292.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~208~^520.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19255~^~268~^2176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19255~^~301~^37.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~318~^134.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19256~^~208~^463.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19256~^~268~^1938.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19256~^~301~^141.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~307~^273.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~318~^262.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~601~^20.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~208~^458.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19258~^~268~^1915.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19258~^~301~^83.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~307~^246.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~318~^246.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~601~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19260~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19260~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19260~^~301~^136.^4^4.^~9~^~MC~^^^1^130.^151.^3^120.^152.^~4~^~05/01/2004~ -~19260~^~304~^9.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~305~^75.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~306~^196.^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~19260~^~307~^96.^4^23.^~9~^~MC~^^^1^66.^164.^3^23.^169.^~4~^~05/01/2004~ -~19260~^~318~^302.^4^14.^~9~^~MC~^^^1^281.^345.^3^256.^348.^~4~^~05/01/2004~ -~19260~^~319~^85.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19260~^~321~^12.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19260~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~19260~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19260~^~601~^27.^4^8.^~9~^~MC~^^^1^18.^53.^3^-1.^54.^~4~^~05/01/2004~ -~19263~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19263~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19263~^~301~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~304~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~305~^6.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~306~^53.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19263~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19263~^~318~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19263~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19263~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19265~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19265~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~263~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19265~^~301~^121.^2^^~9~^~MC~^^^1^121.^121.^1^^^^~05/01/2004~ -~19265~^~304~^15.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~305~^106.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~306~^196.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~307~^75.^2^^~9~^~MC~^^^1^72.^77.^1^^^^~05/01/2004~ -~19265~^~318~^264.^2^^~9~^~MC~^^^1^262.^266.^1^^^^~05/01/2004~ -~19265~^~319~^74.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~320~^75.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~19265~^~321~^10.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19265~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~19265~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19265~^~601~^16.^2^^~9~^~MC~^^^1^16.^16.^1^^^^~05/01/2004~ -~19268~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19268~^~262~^839.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~263~^368.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~268~^2259.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19268~^~301~^100.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~306~^342.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~307~^25.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~338~^16.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19268~^~601~^13.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19269~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19269~^~268~^1559.^0^^~4~^^^^^^^^^^^ -~19269~^~307~^317.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19270~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19270~^~262~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~263~^62.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~268~^904.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~19270~^~301~^109.^34^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~304~^29.^36^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~305~^107.^28^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~306~^249.^35^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~307~^76.^36^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~318~^416.^5^30.^~1~^^^^^^^^^^^~03/01/2003~ -~19270~^~319~^116.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~320~^118.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~321~^19.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~322~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~324~^8.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19270~^~334~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~337~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~338~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~417~^16.^5^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19270~^~432~^16.^5^1.^~1~^^^^^^^^^^^~03/01/2009~ -~19270~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19270~^~601~^34.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19271~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~268~^803.^0^^~4~^^^^^^^^^^^ -~19271~^~301~^120.^4^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~304~^14.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~305~^100.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~306~^188.^4^8.^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~307~^60.^4^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~318~^320.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~319~^96.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19271~^~417~^12.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19271~^~432~^12.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19271~^~601~^29.^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19272~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19272~^~268~^1428.^0^^~4~^^^^^^^^^^^ -~19272~^~307~^36.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19272~^~318~^5436.^1^^~12~^~MA~^^^^^^^^^^~12/01/1997~ -~19273~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19273~^~268~^1432.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19273~^~307~^111.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~318~^835.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19274~^~208~^373.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~268~^1561.^0^^~4~^^^^^^^^^^^ -~19274~^~301~^18.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~304~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~305~^24.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~306~^164.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~307~^317.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~318~^116.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~417~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~432~^14.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2011~ -~19274~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19279~^~208~^549.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~262~^800.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~263~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~268~^2298.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~301~^169.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~304~^64.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~305~^188.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~306~^413.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~307~^70.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~318~^168.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19279~^~319~^51.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19279~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~ -~19279~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~338~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19279~^~601~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19280~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~ -~19280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19280~^~268~^536.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19280~^~301~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~304~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~305~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~306~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~307~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19280~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19280~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~19280~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19281~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19281~^~268~^222.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19281~^~301~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~304~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~305~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~306~^6.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~307~^4.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19281~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19281~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~19283~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19283~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19283~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~19283~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2005~ -~19283~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~19283~^~306~^15.^3^3.^~1~^~A~^^^1^7.^20.^2^-1.^31.^~2, 3~^~04/01/2005~ -~19283~^~307~^7.^3^0.^~1~^~A~^^^1^7.^7.^2^6.^7.^~2, 3~^~04/01/2005~ -~19283~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19283~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19283~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19292~^~208~^475.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19292~^~268~^1987.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19292~^~301~^90.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~307~^136.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~318~^167.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19293~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19293~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~268~^665.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~19293~^~301~^143.^8^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~304~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~305~^129.^3^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~306~^211.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~307~^87.^8^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~318~^212.^3^8.^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~319~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~320~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19293~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19293~^~417~^6.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~432~^6.^2^^~1~^^^^^^^^^^^~03/01/2009~ -~19293~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19293~^~601~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19294~^~208~^173.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19294~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~268~^724.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19294~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~304~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~305~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~306~^91.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19294~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~321~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19294~^~334~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19294~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19295~^~208~^536.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19295~^~268~^2244.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19295~^~301~^54.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~307~^358.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~318~^314.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~601~^24.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19296~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19296~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19296~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19296~^~268~^1272.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19296~^~301~^6.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~304~^2.^14^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~305~^4.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~306~^52.^14^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~307~^4.^14^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19296~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~19296~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19296~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~417~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19296~^~432~^2.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19296~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19296~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19297~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19297~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~268~^1163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19297~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~307~^32.^5^9.^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19297~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19297~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19297~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19297~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19297~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~636~^12.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19300~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19300~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19300~^~301~^7.^70^0.^~6~^~JA~^^^1^7.^8.^1^0.^15.^~4~^~11/01/2002~ -~19300~^~304~^6.^70^0.^~6~^~JA~^^^1^6.^6.^1^3.^8.^~4~^~11/01/2002~ -~19300~^~305~^6.^67^1.^~6~^~JA~^^^1^5.^7.^1^-7.^19.^~4~^~11/01/2002~ -~19300~^~306~^54.^72^10.^~6~^~JA~^^^1^43.^64.^1^-77.^185.^~4~^~11/01/2002~ -~19300~^~307~^30.^77^1.^~11~^~JO~^^^1^28.^31.^1^10.^48.^~4~^~11/01/2002~ -~19300~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19300~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19300~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19301~^~208~^474.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19301~^~262~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~263~^129.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~268~^1982.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19301~^~301~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~304~^46.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~305~^88.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~306~^170.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~307~^79.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~318~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19301~^~319~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19301~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~338~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~417~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~432~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19301~^~601~^23.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19302~^~208~^472.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19302~^~268~^1974.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19302~^~301~^132.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~307~^156.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~318~^166.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19303~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19303~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~268~^1029.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19303~^~301~^38.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~305~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~306~^37.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~307~^56.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~318~^62.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~320~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~321~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~322~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19303~^~334~^38.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~338~^58.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19303~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19304~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19304~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19304~^~301~^205.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~304~^242.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~305~^31.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~306~^1464.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~307~^37.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19304~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19304~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19304~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19304~^~432~^0.^2^^~1~^^^^^^^^^^^~03/01/2006~ -~19304~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19304~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19306~^~208~^480.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19306~^~268~^2007.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19306~^~301~^96.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~307~^224.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~318~^174.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~208~^463.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19307~^~268~^1935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19307~^~301~^91.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~307~^146.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~318~^137.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~208~^443.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19308~^~268~^1852.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19308~^~301~^60.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~307~^172.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~318~^99.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19309~^~208~^408.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~268~^1707.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19309~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19310~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19310~^~268~^1360.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~19310~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~304~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~305~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~306~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~307~^200.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~318~^3.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19310~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19310~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19310~^~432~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19310~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19312~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19312~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~268~^420.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19312~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~305~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~306~^45.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~307~^47.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19312~^~318~^24.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~320~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19312~^~334~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~338~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19312~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19313~^~208~^409.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19313~^~268~^1710.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19313~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19313~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19314~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~19314~^~268~^481.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~19314~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~304~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~305~^15.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~306~^105.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~307~^18.^4^8.^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19314~^~318~^205.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19314~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19314~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19314~^~417~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19314~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19314~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19315~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19315~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19315~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~307~^89.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19315~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19318~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19318~^~268~^1536.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~19318~^~301~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~305~^804.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~306~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~307~^1499.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19318~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19318~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19318~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19318~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19319~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19319~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19319~^~301~^94.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~304~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~305~^206.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~306~^112.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~307~^290.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~318~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19319~^~319~^38.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19319~^~321~^6.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~322~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~324~^42.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~19319~^~334~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~337~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~338~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19319~^~601~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19320~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19320~^~268~^1532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19320~^~301~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~305~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~307~^788.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19320~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19320~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19320~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19320~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19321~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19321~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19321~^~301~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~304~^10.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~305~^74.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~306~^118.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~307~^158.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~318~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19321~^~319~^39.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19321~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~ -~19321~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19321~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~636~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19322~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19322~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~268~^1736.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19322~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~305~^721.^1^^~4~^^^^^^^^^^^~12/01/2006~ -~19322~^~306~^96.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~307~^1040.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19322~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~19322~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19322~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19322~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19323~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19323~^~268~^490.^0^^~4~^^^^^^^^^^^ -~19323~^~301~^100.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~305~^200.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~306~^129.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~307~^246.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19323~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19323~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19323~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19323~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19323~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19324~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~268~^1814.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19324~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~305~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~306~^133.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~307~^682.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19324~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19324~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19324~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19324~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19325~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19325~^~268~^477.^0^^~4~^^^^^^^^^^^ -~19325~^~301~^111.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~305~^88.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~306~^157.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~307~^162.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~318~^110.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~319~^25.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19325~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19325~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19325~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19325~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19325~^~601~^12.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19326~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19326~^~268~^2255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19326~^~301~^1164.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~307~^7.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~318~^31.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~417~^273.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19326~^~432~^273.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~ -~19326~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19327~^~268~^2197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19327~^~301~^985.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~307~^8.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~318~^25.^1^^~9~^~MC~^^^^^^^^^^~07/01/2006~ -~19327~^~417~^182.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19327~^~432~^182.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~19327~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19328~^~268~^2164.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19328~^~301~^1070.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~307~^40.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~318~^27.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~417~^200.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19328~^~432~^200.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~ -~19328~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19330~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19330~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19330~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19330~^~268~^1582.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19330~^~301~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~304~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~305~^752.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~306~^8.^12^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~307~^1332.^13^32.^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19330~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19330~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19330~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19330~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19331~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19331~^~268~^481.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~19331~^~301~^99.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~306~^127.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~307~^267.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19331~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19331~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19331~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19331~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19331~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19332~^~268~^1519.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19332~^~301~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~304~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~305~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~307~^506.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19332~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19332~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19332~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19332~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19333~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19333~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19333~^~301~^8.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~304~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~305~^16.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~306~^6.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~307~^63.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~318~^58.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~319~^15.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~320~^15.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~321~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~322~^2.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~334~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~338~^44.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19333~^~601~^49.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19334~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19334~^~268~^1590.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19334~^~301~^83.^14^16.^~1~^~A~^^^1^16.^169.^7^44.^121.^~2, 3~^~12/01/2006~ -~19334~^~304~^9.^15^0.^~1~^~A~^^^1^0.^17.^11^8.^10.^~2, 3~^~12/01/2006~ -~19334~^~305~^4.^15^1.^~1~^~A~^^^1^0.^12.^7^0.^7.^~1, 2, 3~^~12/01/2006~ -~19334~^~306~^133.^15^15.^~1~^~A~^^^1^2.^212.^8^98.^167.^~2, 3~^~12/01/2006~ -~19334~^~307~^28.^15^4.^~1~^~A~^^^1^3.^63.^8^17.^38.^~2, 3~^~12/01/2006~ -~19334~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19334~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19334~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19334~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19334~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19334~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19334~^~417~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19334~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19334~^~601~^0.^1^^~4~^^^^^^^^^^^~12/01/2006~ -~19335~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~268~^1618.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19335~^~301~^1.^8^0.^~1~^~A~^^^1^0.^3.^7^0.^1.^~1, 2, 3~^~03/01/2009~ -~19335~^~304~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~305~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~306~^2.^8^0.^~1~^~A~^^^1^1.^3.^7^1.^2.^~1, 2, 3~^~03/01/2009~ -~19335~^~307~^1.^8^0.^~1~^~A~^^^1^1.^1.^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19335~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~19335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19335~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2009~ -~19335~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19335~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19336~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19336~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~268~^1627.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19336~^~301~^1.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~2, 3~^~03/01/2009~ -~19336~^~304~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~305~^0.^8^0.^~1~^~A~^^^1^0.^1.^7^0.^0.^~2, 3~^~03/01/2009~ -~19336~^~306~^2.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~03/01/2009~ -~19336~^~307~^2.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~03/01/2009~ -~19336~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19336~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19336~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19336~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19336~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19337~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19337~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~268~^1527.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19337~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~306~^4.^3^0.^~1~^~A~^^^1^4.^6.^2^1.^7.^~1, 2, 3~^~02/01/2005~ -~19337~^~307~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2005~ -~19337~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19337~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19337~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19340~^~208~^354.^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~268~^1481.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19340~^~301~^90.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~304~^19.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~305~^3.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~306~^274.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~307~^11.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19340~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19340~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19340~^~601~^0.^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19345~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19345~^~262~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~263~^195.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19345~^~301~^11.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~19345~^~304~^36.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~306~^187.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~307~^100.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19345~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19345~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19345~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19345~^~338~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19345~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19348~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19348~^~262~^7.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~263~^247.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~268~^1465.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19348~^~301~^49.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~304~^48.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~305~^97.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~306~^284.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~307~^346.^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~318~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~319~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~320~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19348~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19348~^~601~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19349~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~19349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19349~^~268~^1195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~19349~^~301~^18.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~304~^8.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~305~^11.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~306~^44.^1^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~307~^155.^2^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~318~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19349~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~19349~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19349~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19349~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19349~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19349~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19349~^~417~^0.^2^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19349~^~432~^0.^2^^~1~^^^^^^^^^^^~07/01/2003~ -~19349~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19349~^~601~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~ -~19350~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~19350~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19350~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19350~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~19350~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~306~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~318~^0.^1^^~4~^^^^^^^^^^^~12/01/2004~ -~19350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~19350~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19350~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19350~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19350~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19350~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19350~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19350~^~432~^0.^2^^~1~^^^^^^^^^^^~12/01/2004~ -~19350~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~19350~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~19351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~19351~^~268~^1176.^0^^~4~^^^^^^^^^^^~12/01/2004~ -~19351~^~301~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~304~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~305~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~306~^0.^16^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~307~^2.^19^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19351~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2004~ -~19351~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~19351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19351~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19351~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19351~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19351~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19351~^~432~^0.^1^^~4~^^^^^^^^^^^~12/01/2004~ -~19351~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19351~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19352~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19352~^~268~^1331.^0^^~4~^^^^^^^^^^^~09/01/2004~ -~19352~^~301~^61.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~305~^236.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~306~^320.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19352~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~19352~^~417~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19352~^~432~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19352~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19353~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19353~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19353~^~268~^1088.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~301~^102.^16^6.^~1~^~A~^^^2^78.^123.^1^17.^186.^~2~^~03/01/2010~ -~19353~^~304~^21.^16^0.^~1~^~A~^^^2^15.^24.^1^18.^23.^~2~^~03/01/2010~ -~19353~^~305~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19353~^~306~^212.^16^12.^~1~^~A~^^^2^175.^225.^1^54.^370.^~2~^~03/01/2010~ -~19353~^~307~^12.^16^4.^~1~^~A~^^^2^4.^16.^1^-41.^65.^~2~^~03/01/2010~ -~19353~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~ -~19353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2003~ -~19353~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19353~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19353~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19353~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19353~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19353~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2010~ -~19353~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~ -~19355~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19355~^~301~^150.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~304~^100.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~305~^56.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~306~^1000.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19355~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~ -~19355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19355~^~432~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~ -~19355~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19355~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19359~^~208~^488.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19359~^~268~^2041.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19359~^~301~^90.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~307~^189.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~318~^120.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19360~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19360~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~268~^1109.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19360~^~301~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~306~^6.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~307~^61.^7^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19360~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19360~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19362~^~208~^319.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~268~^1335.^0^^~4~^^^^^^^^^^^~05/01/2006~ -~19362~^~301~^23.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~306~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~307~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19362~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19362~^~417~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19362~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19362~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19363~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19363~^~268~^1682.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19363~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19363~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19364~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~19364~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~19364~^~301~^49.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~305~^39.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~306~^66.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~307~^341.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~318~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~19364~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~ -~19364~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~19364~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19364~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~19364~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19364~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19364~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19365~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~19365~^~262~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~263~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~268~^1347.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19365~^~301~^3.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~304~^2.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~305~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~306~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~307~^80.^3^12.^~8~^~LC~^^^1^56.^100.^2^23.^135.^~4~^~02/01/2003~ -~19365~^~318~^1.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19365~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19365~^~321~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~322~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19365~^~334~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~337~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~338~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19365~^~417~^1.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19365~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~19365~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19365~^~601~^0.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19366~^~208~^253.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19366~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~268~^1059.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19366~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~304~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~306~^43.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~307~^42.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~318~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19366~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19366~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19367~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19367~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~268~^1876.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19367~^~301~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~304~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~305~^118.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~306~^151.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~307~^42.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19367~^~318~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19367~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~432~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19367~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19368~^~208~^405.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19368~^~268~^1693.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19368~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19368~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19369~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19369~^~268~^1677.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19369~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~307~^14.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19369~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~208~^405.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~268~^1695.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~305~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~306~^12.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19370~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19370~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19370~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19371~^~208~^413.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~268~^1728.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19371~^~301~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~304~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~305~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~306~^10.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~307~^114.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~318~^393.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~319~^73.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19371~^~321~^91.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19371~^~417~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~432~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19371~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~208~^404.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~262~^5.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~263~^145.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~268~^1692.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~ -~19372~^~301~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~304~^30.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~305~^50.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~306~^143.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~307~^163.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~318~^393.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~319~^73.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19372~^~321~^91.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19372~^~417~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~432~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19372~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~636~^29.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19375~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19375~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~268~^1427.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19375~^~301~^17.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~304~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~305~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~306~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~307~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~318~^14.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~319~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19375~^~321~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~417~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~432~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19375~^~601~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~208~^453.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~262~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~263~^139.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~268~^1893.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~301~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~304~^36.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~305~^67.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~306~^147.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~307~^85.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~318~^273.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19379~^~319~^73.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~320~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19379~^~321~^17.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~338~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~417~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~432~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19379~^~601~^25.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~208~^397.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~268~^1660.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~301~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~304~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~305~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~306~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~307~^52.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~318~^100.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~319~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~320~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~321~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~417~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~432~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19382~^~601~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~208~^560.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~268~^2342.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~301~^34.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~304~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~305~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~306~^51.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~307~^135.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~318~^1152.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~319~^314.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~320~^319.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~321~^64.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~417~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~432~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19383~^~601~^104.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~208~^364.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~268~^1523.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~301~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~304~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~305~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~306~^23.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~307~^34.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~318~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~320~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~321~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~417~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~432~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19384~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19387~^~208~^113.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~268~^473.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19387~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~304~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~305~^9.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19387~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19387~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19387~^~432~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19387~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~208~^160.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19393~^~262~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19393~^~263~^106.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19393~^~268~^669.^0^^~4~^^^^^^^^^^^ -~19393~^~301~^147.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~304~^27.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~305~^139.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~306~^261.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~307~^98.^3^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~318~^160.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19393~^~319~^43.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~19393~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19393~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~ -~19393~^~417~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19393~^~432~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19393~^~601~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19400~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~268~^2170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19400~^~301~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~304~^76.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~305~^56.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~306~^536.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~307~^6.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~318~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19400~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19400~^~321~^34.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19400~^~322~^32.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19400~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~19400~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~338~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~417~^14.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19400~^~432~^14.^2^^~1~^^^^^^^^^^^~03/01/2003~ -~19400~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19400~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19401~^~208~^436.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19401~^~268~^1824.^0^^~4~^^^^^^^^^^^ -~19401~^~301~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~304~^109.^4^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~305~^283.^4^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~306~^286.^4^14.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~307~^600.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~ -~19401~^~318~^338.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19401~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19401~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19401~^~432~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19401~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19403~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19403~^~268~^1916.^0^^~4~^^^^^^^^^^^ -~19403~^~301~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~304~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~305~^167.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~306~^229.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~307~^234.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~318~^2645.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/2011~ -~19403~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19404~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19404~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19404~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~301~^41.^3^7.^~1~^~A~^^^1^26.^50.^2^8.^72.^~2, 3~^~03/01/2006~ -~19404~^~304~^64.^3^1.^~1~^~A~^^^1^61.^67.^2^55.^71.^~2, 3~^~03/01/2006~ -~19404~^~305~^176.^3^3.^~1~^~A~^^^1^169.^181.^2^160.^191.^~2, 3~^~03/01/2006~ -~19404~^~306~^237.^3^20.^~1~^~A~^^^1^209.^276.^2^150.^323.^~2, 3~^~03/01/2006~ -~19404~^~307~^291.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~19404~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~19404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19404~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~19404~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19404~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~417~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^17.^~2, 3~^~03/01/2006~ -~19404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19404~^~432~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^17.^^~03/01/2006~ -~19404~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19404~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19405~^~208~^427.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19405~^~268~^1787.^0^^~4~^^^^^^^^^^^ -~19405~^~301~^89.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~304~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~305~^202.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~306~^275.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~307~^316.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~318~^47.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19405~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19405~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19405~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19405~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19406~^~208~^454.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19406~^~268~^1900.^0^^~4~^^^^^^^^^^^ -~19406~^~301~^84.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~304~^91.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~305~^241.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~306~^392.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~307~^254.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~318~^41.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19406~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19406~^~417~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19406~^~432~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19406~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19407~^~208~^550.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19407~^~268~^2301.^0^^~4~^^^^^^^^^^^ -~19407~^~301~^68.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~304~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~305~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~306~^257.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~307~^1531.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~ -~19407~^~318~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19407~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19407~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19407~^~321~^150.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19407~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19407~^~432~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19407~^~601~^133.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~208~^538.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~268~^2251.^0^^~4~^^^^^^^^^^^ -~19408~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~305~^220.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~307~^2667.^9^194.^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~318~^667.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19408~^~319~^38.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19408~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19408~^~321~^324.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19408~^~417~^31.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19408~^~432~^31.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19408~^~601~^115.^8^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19409~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19409~^~262~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~263~^98.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~268~^1502.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19409~^~301~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~305~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~306~^130.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~307~^132.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~318~^249.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~319~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~320~^69.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~321~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~417~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~432~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19409~^~601~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19410~^~208~^545.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~268~^2280.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~301~^17.^6^0.^~1~^~A~^^^1^14.^20.^5^15.^19.^~2, 3~^~05/01/2014~ -~19410~^~304~^40.^6^1.^~1~^~A~^^^1^36.^44.^5^36.^42.^~2, 3~^~05/01/2014~ -~19410~^~305~^110.^6^4.^~1~^~A~^^^1^96.^131.^5^97.^122.^~2, 3~^~05/01/2014~ -~19410~^~306~^637.^6^25.^~1~^~A~^^^1^571.^743.^5^570.^702.^~2, 3~^~05/01/2014~ -~19410~^~307~^529.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~19410~^~318~^0.^1^^~4~^^^^^^^^^^^~03/01/2008~ -~19410~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19410~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19410~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~417~^19.^3^3.^~1~^~A~^^^1^15.^25.^2^4.^33.^~2, 3~^~05/01/2014~ -~19410~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19410~^~432~^19.^3^3.^~1~^~A~^^^1^15.^25.^2^4.^33.^^~05/01/2014~ -~19410~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~636~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2008~ -~19411~^~208~^532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~19411~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~19411~^~268~^2227.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~301~^21.^17^0.^~1~^~A~^^^1^12.^31.^7^18.^23.^~2, 3~^~05/01/2014~ -~19411~^~304~^63.^17^1.^~1~^~A~^^^1^49.^81.^8^60.^65.^~2, 3~^~05/01/2014~ -~19411~^~305~^153.^17^4.^~1~^~A~^^^1^120.^201.^7^142.^163.^~2, 3~^~05/01/2014~ -~19411~^~306~^1196.^17^23.^~1~^~A~^^^1^983.^1380.^7^1140.^1250.^~2, 3~^~05/01/2014~ -~19411~^~307~^527.^17^16.^~1~^~A~^^^1^235.^633.^6^486.^567.^~2, 3~^~05/01/2014~ -~19411~^~318~^0.^5^0.^~1~^^^^^^^^^^^~09/01/2004~ -~19411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19411~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~19411~^~322~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~19411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19411~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19411~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19411~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19411~^~417~^29.^9^3.^~1~^~A~^^^1^20.^36.^2^14.^42.^~2, 3~^~05/01/2014~ -~19411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19411~^~432~^29.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19411~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~636~^181.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~19412~^~208~^551.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19412~^~268~^2305.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~19412~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~304~^53.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~305~^163.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~306~^381.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~307~^600.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19412~^~318~^3.^0^^~4~^~O~^^^^^^^^^^~06/01/2006~ -~19412~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19412~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19412~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19412~^~432~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~19412~^~601~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19413~^~268~^1611.^0^^~4~^^^^^^^^^^^ -~19413~^~301~^9.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~305~^320.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~306~^275.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~307~^167.^0^^~4~^~T~^^^^^^^^^^~07/01/2010~ -~19413~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19413~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19413~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19413~^~432~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19413~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19414~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19414~^~268~^1619.^0^^~4~^^^^^^^^^^^ -~19414~^~301~^21.^10^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~304~^137.^4^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~305~^370.^4^16.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~306~^294.^8^19.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~307~^252.^3^76.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19414~^~417~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19414~^~432~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19414~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19415~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19415~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~268~^2184.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19415~^~301~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~304~^64.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~305~^172.^3^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~306~^1237.^3^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~307~^633.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19415~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19415~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19415~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19415~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19415~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19415~^~417~^40.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19415~^~432~^40.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19415~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19416~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19416~^~268~^1615.^0^^~4~^^^^^^^^^^^ -~19416~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~304~^144.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~306~^311.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~307~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~318~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19416~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19416~^~417~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19416~^~432~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19416~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19418~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~268~^2264.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19418~^~301~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~304~^45.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~305~^138.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~307~^1488.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19418~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19418~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19418~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19418~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~417~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19418~^~432~^22.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19418~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19418~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19419~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19419~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19419~^~268~^1619.^0^^~4~^^^^^^^^^^^~05/01/2009~ -~19419~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~305~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~306~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~307~^488.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~318~^242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19419~^~319~^69.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~19419~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19419~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~19419~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~19419~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~19419~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19419~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19419~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19419~^~432~^19.^1^^~1~^^^^^^^^^^^~04/01/2003~ -~19419~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19419~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~208~^483.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19420~^~268~^2021.^0^^~4~^^^^^^^^^^^ -~19420~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~304~^55.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~305~^139.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~306~^291.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~307~^283.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~318~^16.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19420~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19420~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19420~^~432~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19420~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19421~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19421~^~268~^2075.^0^^~4~^^^^^^^^^^^ -~19421~^~301~^72.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~304~^75.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~305~^299.^4^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~306~^1528.^4^31.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~307~^458.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~ -~19421~^~318~^33.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19421~^~319~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19421~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19421~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19421~^~432~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19421~^~601~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19422~^~268~^1971.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19422~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~304~^89.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~305~^193.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~306~^1744.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~19422~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19422~^~321~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~322~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19422~^~334~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~337~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~338~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~417~^27.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19422~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19422~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19422~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19423~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19423~^~268~^1147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19423~^~301~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~304~^69.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~306~^1160.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~307~^554.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19423~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19423~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19423~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19423~^~417~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19423~^~432~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19423~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1998~ -~19424~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19424~^~268~^1862.^0^^~4~^^^^^^^^^^^ -~19424~^~301~^159.^15^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~304~^97.^15^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~305~^318.^15^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~306~^272.^15^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~307~^1003.^24^16.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~318~^380.^15^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19424~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19424~^~417~^26.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19424~^~432~^26.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19424~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~19424~^~601~^3.^15^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19433~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19433~^~262~^0.^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~263~^0.^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~268~^1875.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19433~^~301~^159.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~304~^97.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~305~^318.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~306~^272.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~307~^517.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19433~^~318~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19433~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19433~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19433~^~321~^47.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~322~^30.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19433~^~334~^1.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~337~^0.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~338~^652.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~417~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19433~^~432~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19433~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19434~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19434~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~268~^1809.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19434~^~301~^357.^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~304~^41.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~305~^357.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~306~^286.^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~307~^842.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~19434~^~318~^250.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19434~^~319~^38.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19434~^~321~^58.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~322~^30.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19434~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~338~^643.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~417~^97.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~19434~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~432~^97.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~19434~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19434~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19435~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19435~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19435~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19435~^~268~^1431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19435~^~301~^3.^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19435~^~304~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~305~^122.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~306~^220.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~307~^16.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~19435~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~19435~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19435~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~19435~^~321~^12.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19435~^~334~^9.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~338~^113.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~417~^316.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~19435~^~431~^302.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~19435~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~435~^527.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~19435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19436~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19436~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~268~^1593.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19436~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~304~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~305~^55.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~306~^110.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~307~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2005~ -~19436~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19436~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19436~^~321~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~322~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19436~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~338~^242.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19436~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~19437~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19437~^~262~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~263~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~268~^1586.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19437~^~301~^35.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~304~^70.^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~ -~19437~^~305~^167.^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~ -~19437~^~306~^1628.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19437~^~307~^643.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19437~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19437~^~321~^7.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19437~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~338~^39.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~417~^45.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19437~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19437~^~432~^45.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19437~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19438~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~19438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~19438~^~268~^1743.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19438~^~301~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~305~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~306~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~307~^351.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~318~^900.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19438~^~319~^270.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19438~^~320~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~417~^241.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19438~^~431~^199.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~19438~^~432~^42.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~19438~^~435~^381.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19438~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~268~^1632.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~19439~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~304~^87.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~305~^248.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~306~^249.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~307~^291.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~318~^2381.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~319~^713.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19439~^~320~^713.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19439~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19439~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19439~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19440~^~208~^420.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~268~^1757.^0^^~4~^~T~^^^^^^^^^^~06/01/2006~ -~19440~^~301~^1084.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~304~^70.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~305~^207.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~306~^279.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~307~^246.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19440~^~319~^14.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19440~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19440~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~19440~^~417~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19440~^~432~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~19440~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~19440~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19441~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~268~^1528.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~301~^576.^6^6.^~1~^~A~^^^1^562.^607.^5^558.^593.^~2, 3~^~04/01/2015~ -~19441~^~304~^37.^6^0.^~1~^~A~^^^1^36.^38.^5^36.^37.^~2, 3~^~04/01/2015~ -~19441~^~305~^134.^6^0.^~1~^~A~^^^1^132.^138.^5^132.^136.^~2, 3~^~04/01/2015~ -~19441~^~306~^247.^6^3.^~1~^~A~^^^1^239.^259.^5^239.^254.^~2, 3~^~04/01/2015~ -~19441~^~307~^354.^6^4.^~1~^~A~^^^1^334.^365.^5^342.^364.^~2, 3~^~04/01/2015~ -~19441~^~318~^2028.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~19441~^~319~^603.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19441~^~320~^604.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~19441~^~321~^8.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~322~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2015~ -~19441~^~334~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~417~^14.^3^2.^~1~^~A~^^^1^11.^18.^2^5.^23.^~2, 3~^~04/01/2015~ -~19441~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19441~^~432~^14.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19441~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2015~ -~19444~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~19444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19444~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19444~^~268~^1330.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~19444~^~301~^128.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~304~^99.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~ -~19444~^~305~^245.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~ -~19444~^~306~^396.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~ -~19444~^~307~^705.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19444~^~318~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19444~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19444~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19444~^~321~^107.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~19444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19444~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~19444~^~337~^45.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~338~^507.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~19444~^~417~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~19444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19444~^~432~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~19444~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~19444~^~601~^2.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~ -~19445~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19445~^~301~^20.^4^0.^~1~^~A~^^^1^18.^21.^3^17.^21.^~2, 3~^~07/01/2008~ -~19445~^~304~^48.^4^0.^~1~^~A~^^^1^47.^48.^3^46.^48.^~2, 3~^~07/01/2008~ -~19445~^~305~^132.^4^2.^~1~^~A~^^^1^128.^136.^3^125.^138.^~2, 3~^~07/01/2008~ -~19445~^~306~^931.^4^8.^~1~^~A~^^^1^911.^953.^3^902.^958.^~2, 3~^~07/01/2008~ -~19445~^~307~^429.^4^15.^~1~^~A~^^^1^404.^472.^3^379.^477.^~2, 3~^~07/01/2008~ -~19445~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~19445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~19445~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~19445~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~417~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19445~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~432~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19445~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19445~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~19524~^~208~^498.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19524~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~268~^2084.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19524~^~301~^60.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~304~^84.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~305~^131.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~306~^755.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~307~^342.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19524~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19524~^~321~^66.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19524~^~334~^37.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~417~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19524~^~432~^20.^1^^~4~^^^^^^^^^^^~03/01/2003~ -~19524~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19524~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~208~^477.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~262~^62.^6^3.^~1~^^^^^^^^^^^~08/01/1993~ -~19701~^~263~^486.^7^40.^~1~^^^^^^^^^^^~08/01/1993~ -~19701~^~268~^1996.^0^^~4~^^^^^^^^^^^ -~19701~^~301~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~304~^115.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~305~^132.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~306~^365.^6^17.^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~307~^11.^6^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19701~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19701~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19701~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19701~^~601~^18.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~208~^381.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19702~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19702~^~268~^1594.^0^^~4~^^^^^^^^^^^ -~19702~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~305~^142.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~306~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~307~^491.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19702~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19702~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19702~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19702~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~208~^345.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19703~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19703~^~268~^1443.^0^^~4~^^^^^^^^^^^ -~19703~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~304~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~305~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~306~^1985.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~307~^2751.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19703~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~19703~^~417~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19703~^~432~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~19703~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~208~^345.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19704~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19704~^~268~^1443.^0^^~4~^^^^^^^^^^^ -~19704~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~304~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~305~^1293.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~306~^14.^7^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~307~^158.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19704~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19704~^~417~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19704~^~432~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19704~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~208~^386.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19705~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19705~^~268~^1615.^0^^~4~^^^^^^^^^^^ -~19705~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19705~^~304~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~305~^804.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~306~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~307~^1499.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19705~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19705~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19705~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19705~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~ -~19706~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19706~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19706~^~268~^1619.^0^^~4~^^^^^^^^^^^ -~19706~^~301~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~305~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~307~^788.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19706~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19706~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19706~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19706~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~ -~19708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19708~^~268~^1531.^0^^~4~^^^^^^^^^^^ -~19708~^~304~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~305~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~306~^257.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~307~^849.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19708~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19708~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19708~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19708~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~208~^369.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19709~^~268~^1544.^0^^~4~^^^^^^^^^^^ -~19709~^~301~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~305~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19709~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19709~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19709~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19709~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19710~^~268~^1544.^0^^~4~^^^^^^^^^^^ -~19710~^~301~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~304~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~305~^3.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~306~^20.^17^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~307~^754.^17^17.^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19710~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~ -~19710~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19710~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19710~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19719~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19719~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~268~^1014.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19719~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~305~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~307~^40.^3^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~318~^205.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19719~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19719~^~321~^116.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~322~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19719~^~334~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~338~^9.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~432~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19719~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19720~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19720~^~268~^1109.^0^^~4~^^^^^^^^^^^ -~19720~^~301~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~306~^22.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~307~^61.^7^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19720~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19720~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19720~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19720~^~432~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19720~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19800~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19800~^~268~^1619.^0^^~4~^^^^^^^^^^^ -~19800~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~305~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~306~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~307~^28.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~318~^242.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19800~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19800~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19800~^~432~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19800~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19802~^~208~^558.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19802~^~268~^2336.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~301~^58.^6^2.^~1~^~A~^^^^52.^65.^^^^^~05/01/2005~ -~19802~^~304~^20.^6^0.^~1~^~A~^^^^19.^21.^^^^^~05/01/2005~ -~19802~^~305~^108.^151^2.^~1~^^^^^^^^^^^~08/01/2015~ -~19802~^~306~^197.^6^9.^~1~^~A~^^^^174.^239.^^^^^~05/01/2005~ -~19802~^~307~^896.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~19802~^~318~^0.^1^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~19802~^~320~^0.^1^^~1~^~AS~^^^^^^^^^^~07/01/2006~ -~19802~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19802~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19802~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19802~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19802~^~417~^120.^1^^~1~^^^^^^^^^^^~08/01/2015~ -~19802~^~431~^86.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~19802~^~432~^34.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~19802~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~19802~^~601~^4.^63^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19804~^~208~^523.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~268~^2188.^0^^~4~^^^^^^^^^^^ -~19804~^~301~^131.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~304~^77.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~305~^207.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~306~^236.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~307~^763.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~318~^611.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19804~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19804~^~417~^200.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19804~^~432~^200.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19804~^~435~^200.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19804~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~19806~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19806~^~268~^1598.^0^^~4~^^^^^^^^^^^ -~19806~^~301~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~304~^131.^4^16.^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~305~^300.^3^49.^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~306~^301.^3^28.^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19806~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19806~^~417~^23.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19806~^~432~^23.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19806~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19807~^~208~^500.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19807~^~268~^2092.^0^^~4~^^^^^^^^^^^ -~19807~^~301~^10.^55^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~304~^108.^50^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~305~^250.^49^7.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~306~^225.^51^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~307~^884.^29^65.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~318~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19807~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19807~^~417~^17.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19807~^~432~^17.^3^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19807~^~601~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19809~^~268~^2243.^0^^~4~^^^^^^^^^^^ -~19809~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~307~^594.^251^9.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~318~^0.^5^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19809~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19809~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19809~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19809~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19810~^~268~^2243.^0^^~4~^^^^^^^^^^^ -~19810~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~318~^0.^5^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19810~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19810~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19810~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19810~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19811~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~268~^2243.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19811~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19811~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19811~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19811~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19811~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19811~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19811~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19811~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19812~^~268~^1594.^0^^~4~^^^^^^^^^^^ -~19812~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~307~^1715.^87^61.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~318~^0.^15^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19812~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19812~^~417~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19812~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19812~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19812~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19813~^~268~^1594.^0^^~4~^^^^^^^^^^^ -~19813~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~307~^289.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~318~^0.^15^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19813~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19813~^~417~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19813~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19813~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19813~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~19814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~19814~^~268~^1594.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19814~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~307~^250.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~19814~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19814~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19814~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19814~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19814~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19814~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19814~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19814~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19814~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19814~^~417~^171.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~19814~^~431~^88.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~19814~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19814~^~435~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19814~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~268~^1619.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19816~^~301~^11.^9^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~304~^131.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~305~^360.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~306~^290.^6^21.^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~307~^26.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19816~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19816~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19816~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19816~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19816~^~417~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19816~^~432~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19816~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19817~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19817~^~268~^1590.^0^^~4~^^^^^^^^^^^ -~19817~^~301~^11.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~304~^151.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~306~^299.^4^10.^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19817~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19817~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19817~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19817~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19818~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19818~^~268~^1619.^0^^~4~^^^^^^^^^^^ -~19818~^~301~^21.^10^3.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~304~^137.^4^4.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~305~^370.^4^16.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~306~^294.^8^19.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19818~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19818~^~417~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19818~^~432~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19818~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19819~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19819~^~268~^1640.^0^^~4~^^^^^^^^^^^ -~19819~^~301~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~304~^136.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~305~^375.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~306~^290.^6^13.^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19819~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19819~^~417~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19819~^~432~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19819~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19820~^~268~^2264.^0^^~4~^^^^^^^^^^^ -~19820~^~301~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~304~^45.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~305~^138.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~307~^29.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~318~^88.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19820~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19820~^~417~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19820~^~432~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19820~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19821~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19821~^~268~^1933.^0^^~4~^^^^^^^^^^^ -~19821~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~304~^158.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~305~^345.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~306~^685.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~318~^18.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~19821~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19821~^~417~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19821~^~432~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19821~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19822~^~268~^2025.^0^^~4~^^^^^^^^^^^ -~19822~^~301~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~304~^161.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~305~^387.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~306~^648.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~307~^27.^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~318~^44.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19822~^~320~^13.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19822~^~417~^65.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19822~^~432~^65.^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19822~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19823~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~268~^2037.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19823~^~301~^21.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~304~^89.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~305~^193.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~306~^1744.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~307~^8.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~19823~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~19823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19823~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19823~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19823~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19823~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19833~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19833~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19833~^~301~^159.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~304~^97.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~305~^318.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~306~^272.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~307~^15.^0^^~4~^~BFZY~^^^^^^^^^^~04/01/2007~ -~19833~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19833~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19833~^~321~^37.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~322~^24.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19833~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~338~^507.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~417~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~19833~^~432~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19833~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19856~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19856~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19856~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~306~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19857~^~208~^511.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19857~^~268~^2137.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19857~^~301~^147.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~304~^82.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~305~^244.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~306~^216.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~307~^708.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~318~^371.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19857~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~19857~^~417~^130.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~19857~^~432~^130.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~19857~^~601~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~636~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19858~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19858~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~268~^1945.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19858~^~301~^100.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~304~^137.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~305~^166.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~306~^255.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19858~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19858~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19858~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19858~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~417~^15.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~432~^15.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19858~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19860~^~208~^479.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19860~^~262~^72.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1998~ -~19860~^~263~^2445.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1998~ -~19860~^~268~^2006.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19860~^~301~^122.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~304~^476.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~305~^758.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~306~^2509.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~307~^20.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19860~^~319~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19860~^~321~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~322~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19860~^~334~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~337~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~338~^33.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~417~^38.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~431~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~432~^38.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19860~^~601~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19866~^~208~^390.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~268~^1633.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~301~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~306~^82.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~307~^131.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19866~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19866~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19866~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19866~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19867~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19867~^~262~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~263~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19867~^~301~^149.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~304~^21.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~305~^150.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~306~^302.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~307~^97.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~318~^698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19867~^~319~^198.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19867~^~321~^23.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~322~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19867~^~334~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~337~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~338~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~417~^7.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~431~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~19867~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19867~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19868~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19868~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~268~^1404.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19868~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~306~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19868~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19868~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19868~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19871~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~263~^133.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~301~^231.^3^3.^~1~^~A~^^^1^224.^237.^2^214.^246.^~2, 3~^~07/01/2015~ -~19871~^~304~^27.^3^0.^~1~^~A~^^^1^26.^28.^2^24.^28.^~2, 3~^~07/01/2015~ -~19871~^~305~^160.^3^2.^~1~^~A~^^^1^155.^163.^2^149.^170.^~2, 3~^~07/01/2015~ -~19871~^~306~^253.^3^1.^~1~^~A~^^^1^250.^256.^2^245.^260.^~2, 3~^~07/01/2015~ -~19871~^~307~^96.^3^2.^~1~^~A~^^^1^94.^100.^2^86.^104.^~2, 3~^~07/01/2015~ -~19871~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~19871~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~19871~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19871~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~19871~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~19871~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~19871~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19873~^~208~^21.^1^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19873~^~268~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19873~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2005~ -~19873~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~306~^11.^3^2.^~1~^~A~^^^1^8.^17.^2^-1.^24.^~2, 3~^~04/01/2005~ -~19873~^~307~^10.^3^2.^~1~^~A~^^^1^7.^14.^2^0.^19.^~2, 3~^~04/01/2005~ -~19873~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19873~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~208~^124.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~268~^517.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~301~^138.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~307~^120.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~318~^49.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~208~^162.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~268~^678.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~301~^169.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~307~^71.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~318~^437.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~208~^173.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~268~^723.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~301~^155.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~307~^73.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~318~^489.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~208~^137.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~268~^574.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~301~^122.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~307~^73.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~318~^268.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~208~^161.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~268~^673.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~307~^69.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~318~^417.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~601~^14.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~208~^196.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~268~^822.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~301~^160.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~307~^67.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~318~^404.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~208~^180.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~268~^752.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~301~^130.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~307~^164.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~318~^281.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~208~^154.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~268~^645.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~301~^151.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~307~^87.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~318~^345.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~208~^143.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~268~^600.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~301~^133.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~318~^291.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~208~^153.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~268~^641.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~301~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~307~^72.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~318~^262.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~601~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~208~^143.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~268~^600.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~301~^132.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~318~^292.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~208~^224.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~268~^938.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~301~^125.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~307~^159.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~318~^259.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~601~^2.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19887~^~268~^1001.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19887~^~301~^142.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~307~^191.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~318~^288.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19890~^~268~^1011.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19890~^~301~^289.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~307~^86.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~318~^289.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19891~^~268~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19891~^~301~^137.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~307~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~318~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~208~^49.^1^^~9~^~MC~^^^^^^^^^^~09/01/2015~ -~19892~^~268~^204.^0^^~9~^~MC~^^^^^^^^^^~09/01/2015~ -~19892~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~208~^201.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~268~^839.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~307~^75.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~318~^446.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~601~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~208~^136.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~268~^568.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~301~^126.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~307~^75.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~318~^255.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~208~^151.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~268~^632.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~301~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~307~^77.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~318~^266.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~601~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19896~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19896~^~262~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~263~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~268~^2070.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19896~^~301~^36.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~304~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~305~^156.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~306~^257.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~307~^321.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~318~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~319~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~320~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19896~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~417~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~432~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19896~^~601~^9.^1^^~8~^~LC~^^^^^^^^^~1~^~02/01/2005~ -~19897~^~208~^573.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19897~^~268~^2395.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19897~^~301~^840.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~307~^9.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~318~^20.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19897~^~417~^143.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19897~^~432~^143.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~ -~19897~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19898~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~262~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~263~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~268~^903.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~301~^128.^17^5.^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~304~^14.^12^0.^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~305~^105.^12^4.^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~306~^199.^12^6.^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~307~^48.^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19898~^~318~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~319~^116.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~321~^19.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~322~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19898~^~334~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~337~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~338~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~417~^5.^4^1.^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~431~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~432~^5.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~601~^32.^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19899~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~262~^3.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~263~^62.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~268~^990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~301~^109.^34^2.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~304~^29.^36^0.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~305~^107.^28^1.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~306~^249.^35^4.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~307~^76.^36^2.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~318~^419.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~319~^116.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19899~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~321~^19.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19899~^~322~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19899~^~334~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~337~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~338~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~417~^16.^5^1.^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~431~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~432~^16.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19899~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~601~^34.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19902~^~208~^546.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19902~^~262~^43.^3^^~1~^~A~^^^1^40.^50.^^^^~2, 3~^~08/01/2008~ -~19902~^~263~^493.^3^^~1~^~A~^^^1^450.^560.^^^^~2, 3~^~08/01/2008~ -~19902~^~268~^2283.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19902~^~301~^56.^5^0.^~1~^~A~^^^1^44.^78.^1^49.^61.^~2, 3~^~08/01/2008~ -~19902~^~304~^146.^5^2.^~1~^~A~^^^1^129.^171.^1^122.^170.^~2, 3~^~08/01/2008~ -~19902~^~305~^206.^5^2.^~1~^~A~^^^1^181.^230.^1^182.^229.^~2, 3~^~08/01/2008~ -~19902~^~306~^559.^5^8.^~1~^~A~^^^1^496.^596.^1^455.^662.^~2, 3~^~08/01/2008~ -~19902~^~307~^24.^5^0.^~1~^~A~^^^1^4.^40.^1^20.^27.^~1, 2, 3~^~08/01/2008~ -~19902~^~318~^50.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19902~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19902~^~321~^26.^3^^~1~^~A~^^^1^21.^28.^^^^~2, 3~^~08/01/2008~ -~19902~^~322~^7.^3^^~1~^~A~^^^1^6.^8.^^^^~2, 3~^~08/01/2008~ -~19902~^~334~^1.^3^^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~08/01/2008~ -~19902~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~338~^31.^3^^~1~^~A~^^^1^25.^34.^^^^~2, 3~^~08/01/2008~ -~19902~^~601~^8.^3^^~1~^~A~^^^1^2.^11.^^^^~2, 3~^~04/01/2009~ -~19902~^~638~^25.^3^^~1~^~A~^^^1^24.^28.^^^^~2, 3~^~04/01/2009~ -~19902~^~639~^11.^3^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~04/01/2009~ -~19902~^~641~^66.^3^^~1~^~A~^^^1^62.^75.^^^^~2, 3~^~04/01/2009~ -~19903~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19903~^~262~^86.^3^^~1~^~A~^^^1^70.^100.^^^^~2, 3~^~08/01/2008~ -~19903~^~263~^632.^3^^~1~^~A~^^^1^540.^700.^^^^~2, 3~^~08/01/2008~ -~19903~^~268~^2422.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19903~^~301~^62.^6^0.^~1~^~A~^^^1^54.^80.^3^60.^62.^~2, 3~^~08/01/2008~ -~19903~^~304~^176.^6^0.^~1~^~A~^^^1^156.^190.^3^173.^177.^~2, 3~^~08/01/2008~ -~19903~^~305~^260.^6^1.^~1~^~A~^^^1^227.^282.^3^256.^264.^~2, 3~^~08/01/2008~ -~19903~^~306~^567.^6^3.^~1~^~A~^^^1^483.^625.^3^554.^578.^~2, 3~^~08/01/2008~ -~19903~^~307~^10.^6^0.^~1~^~A~^^^1^4.^15.^3^9.^11.^~1, 2, 3~^~08/01/2008~ -~19903~^~318~^50.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19903~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19903~^~321~^25.^3^^~1~^~A~^^^1^22.^26.^^^^~2, 3~^~08/01/2008~ -~19903~^~322~^9.^3^^~1~^~A~^^^1^7.^10.^^^^~2, 3~^~08/01/2008~ -~19903~^~334~^1.^3^^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~08/01/2008~ -~19903~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~338~^32.^3^^~1~^~A~^^^1^24.^38.^^^^~2, 3~^~08/01/2008~ -~19903~^~601~^6.^3^^~1~^~A~^^^1^4.^7.^^^^~2, 3~^~04/01/2009~ -~19903~^~638~^29.^3^^~1~^~A~^^^1^27.^30.^^^^~2, 3~^~04/01/2009~ -~19903~^~639~^12.^3^^~1~^~A~^^^1^10.^13.^^^^~2, 3~^~04/01/2009~ -~19903~^~641~^75.^3^^~1~^~A~^^^1^69.^77.^^^^~2, 3~^~04/01/2009~ -~19904~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19904~^~262~^80.^2^^~1~^~A~^^^1^80.^80.^^^^^~08/01/2008~ -~19904~^~263~^802.^2^^~1~^~A~^^^1^710.^940.^^^^^~08/01/2008~ -~19904~^~268~^2504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19904~^~301~^73.^2^^~1~^~A~^^^1^64.^87.^^^^^~08/01/2008~ -~19904~^~304~^228.^2^^~1~^~A~^^^1^195.^277.^^^^^~08/01/2008~ -~19904~^~305~^308.^2^^~1~^~A~^^^1^271.^364.^^^^^~08/01/2008~ -~19904~^~306~^715.^2^^~1~^~A~^^^1^623.^854.^^^^^~08/01/2008~ -~19904~^~307~^20.^2^^~1~^~A~^^^1^14.^25.^^^^^~08/01/2008~ -~19904~^~318~^39.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19904~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19904~^~321~^19.^2^^~1~^~A~^^^1^17.^22.^^^^^~08/01/2008~ -~19904~^~322~^7.^2^^~1~^~A~^^^1^6.^9.^^^^^~08/01/2008~ -~19904~^~334~^1.^2^^~1~^~A~^^^1^1.^2.^^^^^~08/01/2008~ -~19904~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2009~ -~19904~^~338~^27.^2^^~1~^~A~^^^1^23.^33.^^^^^~08/01/2008~ -~19904~^~601~^3.^2^^~1~^~A~^^^1^2.^3.^^^^^~04/01/2009~ -~19904~^~638~^31.^2^^~1~^~A~^^^1^29.^34.^^^^^~04/01/2009~ -~19904~^~639~^12.^2^^~1~^~A~^^^1^11.^12.^^^^^~04/01/2009~ -~19904~^~641~^86.^2^^~1~^~A~^^^1^80.^95.^^^^^~04/01/2009~ -~19905~^~208~^550.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19905~^~262~^47.^8^^~1~^~A~^^^1^40.^100.^^^^~2, 3~^~08/01/2008~ -~19905~^~263~^515.^8^^~1~^~A~^^^1^450.^940.^^^^~2, 3~^~08/01/2008~ -~19905~^~268~^2301.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19905~^~301~^57.^13^0.^~1~^~A~^^^1^44.^87.^1^51.^62.^~2, 3~^~08/01/2008~ -~19905~^~304~^152.^13^1.^~1~^~A~^^^1^129.^277.^1^130.^173.^~2, 3~^~08/01/2008~ -~19905~^~305~^214.^13^1.^~1~^~A~^^^1^181.^364.^1^192.^235.^~2, 3~^~08/01/2008~ -~19905~^~306~^568.^13^7.^~1~^~A~^^^1^483.^854.^1^474.^660.^~2, 3~^~08/01/2008~ -~19905~^~307~^23.^13^0.^~1~^~A~^^^1^4.^40.^1^20.^26.^~1, 2, 3~^~08/01/2008~ -~19905~^~318~^49.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19905~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19905~^~321~^25.^8^^~1~^~A~^^^1^17.^28.^^^^~2, 3~^~08/01/2008~ -~19905~^~322~^7.^8^^~1~^~A~^^^1^6.^10.^^^^~2, 3~^~08/01/2008~ -~19905~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19905~^~334~^1.^8^^~1~^~A~^^^1^1.^2.^^^^~2, 3~^~08/01/2008~ -~19905~^~337~^0.^8^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~338~^31.^8^^~1~^~A~^^^1^23.^38.^^^^~2, 3~^~08/01/2008~ -~19905~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~19905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~19905~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19905~^~601~^7.^8^^~1~^~A~^^^1^2.^11.^^^^~2, 3~^~04/01/2009~ -~19905~^~638~^26.^8^^~1~^~A~^^^1^24.^34.^^^^~2, 3~^~04/01/2009~ -~19905~^~639~^11.^8^^~1~^~A~^^^1^8.^13.^^^^~2, 3~^~04/01/2009~ -~19905~^~641~^67.^8^^~1~^~A~^^^1^62.^95.^^^^~2, 3~^~04/01/2009~ -~19906~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19906~^~268~^1625.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19906~^~301~^63.^4^2.^~1~^~A~^^^1^58.^69.^3^55.^70.^~2, 3~^~03/01/2009~ -~19906~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~03/01/2009~ -~19906~^~305~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~03/01/2009~ -~19906~^~306~^130.^4^4.^~1~^~A~^^^1^123.^142.^3^116.^143.^~2, 3~^~03/01/2009~ -~19906~^~307~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2009~ -~19907~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19907~^~268~^1666.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19907~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~2, 3~^~03/01/2009~ -~19907~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2009~ -~19907~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2009~ -~19907~^~306~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^3.^~1, 2, 3~^~03/01/2009~ -~19907~^~307~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^1.^2.^~1, 2, 3~^~03/01/2009~ -~19908~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19908~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19908~^~301~^12.^6^4.^~1~^~A~^^^1^4.^25.^5^1.^22.^~2, 3~^~03/01/2009~ -~19908~^~304~^2.^6^0.^~1~^~A~^^^1^1.^5.^5^1.^3.^~2, 3~^~03/01/2009~ -~19908~^~305~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~2, 3~^~03/01/2009~ -~19908~^~306~^29.^6^11.^~1~^~A~^^^1^10.^81.^5^0.^58.^~2, 3~^~03/01/2009~ -~19908~^~307~^3.^6^0.^~1~^~A~^^^1^1.^6.^5^1.^5.^~1, 2, 3~^~03/01/2009~ -~19909~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19909~^~268~^1453.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19909~^~301~^879.^3^20.^~1~^~A~^^^1^838.^905.^2^789.^969.^~2, 3~^~03/01/2009~ -~19909~^~304~^6.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~03/01/2009~ -~19909~^~305~^8.^3^0.^~1~^~A~^^^1^7.^9.^2^6.^9.^~2, 3~^~03/01/2009~ -~19909~^~306~^39.^3^2.^~1~^~A~^^^1^36.^43.^2^30.^47.^~2, 3~^~03/01/2009~ -~19909~^~307~^572.^3^30.^~1~^~A~^^^1^513.^610.^2^443.^701.^~2, 3~^~03/01/2009~ -~19910~^~208~^542.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19910~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~263~^48.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~268~^2269.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19910~^~301~^70.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~304~^49.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~305~^144.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~306~^295.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~307~^264.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~318~^58.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19910~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19910~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19910~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19910~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~431~^40.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~432~^0.^1^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~19910~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19910~^~601~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19911~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~19911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19911~^~268~^1128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~19911~^~301~^109.^600^2.^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~304~^21.^600^2.^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~306~^225.^90^8.^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~307~^9.^13^3.^~1~^~A~^^^^^^^^^^~07/01/2011~ -~19911~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19911~^~320~^0.^0^^~4~^~T~^^^^^^^^^^~10/01/2001~ -~19911~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19912~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19912~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19912~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2011~ -~19912~^~304~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^0.^3.^~1, 2, 3~^~05/01/2011~ -~19912~^~305~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^2.^~1, 2, 3~^~05/01/2011~ -~19912~^~306~^4.^3^1.^~1~^~A~^^^1^2.^6.^2^-1.^9.^~1, 2, 3~^~05/01/2011~ -~19912~^~307~^4.^3^1.^~1~^~A~^^^1^2.^7.^2^-1.^9.^~1, 2, 3~^~05/01/2011~ -~19912~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19912~^~319~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~320~^8.^0^^~4~^~NC~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~321~^94.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~322~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~334~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~337~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~338~^0.^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~417~^30.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~431~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~432~^30.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~435~^30.^0^^~4~^~NC~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19913~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19913~^~262~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~263~^185.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~268~^1947.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19913~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~304~^89.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~305~^153.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~306~^429.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~307~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19913~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19913~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~417~^25.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~432~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19913~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19913~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19913~^~636~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19914~^~208~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~262~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~263~^163.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~268~^2250.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~301~^150.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~304~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~305~^165.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~306~^296.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~307~^63.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~319~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~601~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19916~^~208~^43.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~19916~^~262~^12.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~263~^407.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~268~^179.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~19916~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19916~^~304~^74.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~305~^113.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~306~^388.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~307~^343.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19916~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19916~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19916~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19916~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~208~^447.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19917~^~262~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~263~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~268~^1869.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19917~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19917~^~304~^39.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~306~^253.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~307~^475.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19917~^~319~^34.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19917~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19917~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~417~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~431~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19917~^~601~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19918~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19918~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19918~^~301~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~304~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~305~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~306~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~307~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19918~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~19918~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19919~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~268~^1474.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~306~^8.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~307~^23.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19920~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19920~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~268~^886.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19920~^~301~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~305~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~306~^65.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19920~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19920~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19920~^~321~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19920~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19921~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~268~^1385.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19921~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~305~^56.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~306~^309.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~307~^1643.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19921~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19921~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19921~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19922~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~268~^2012.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19922~^~301~^43.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~304~^27.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~305~^93.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~306~^294.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~307~^128.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19922~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~417~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19922~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~636~^39.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19923~^~208~^490.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19923~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~268~^2051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19923~^~301~^94.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19923~^~304~^90.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~305~^197.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~306~^725.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~307~^231.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19923~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19923~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~417~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~432~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19923~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19924~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~262~^18.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~263~^163.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~268~^1125.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~304~^40.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~305~^58.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~306~^122.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~307~^150.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~19924~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~20001~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~268~^1554.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~301~^159.^3^26.^~1~^~A~^^^1^129.^211.^2^46.^271.^~4~^~05/01/2008~ -~20001~^~304~^248.^3^23.^~1~^~A~^^^1^216.^294.^2^147.^349.^~4~^~05/01/2008~ -~20001~^~305~^557.^3^46.^~1~^~A~^^^1^502.^649.^2^358.^755.^~4~^~05/01/2008~ -~20001~^~306~^508.^3^17.^~1~^~A~^^^1^478.^537.^2^434.^581.^~4~^~05/01/2008~ -~20001~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^3.^~1, 4~^~05/01/2008~ -~20001~^~318~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20001~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20001~^~321~^1.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20001~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20001~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~338~^28.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20001~^~417~^82.^3^14.^~1~^~A~^^^1^66.^111.^2^20.^144.^~4~^~05/01/2008~ -~20001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20001~^~432~^82.^3^14.^~1~^~A~^^^1^66.^111.^2^20.^144.^~4~^~05/01/2008~ -~20001~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20001~^~636~^24.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20002~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~20002~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~20002~^~301~^47.^3^^~1~^~A~^^^1^35.^64.^^^^~2~^~04/01/2007~ -~20002~^~304~^65.^3^^~1~^~A~^^^1^55.^84.^^^^~2~^~04/01/2007~ -~20002~^~305~^148.^3^^~1~^~A~^^^1^127.^180.^^^^~2~^~04/01/2007~ -~20002~^~306~^135.^3^^~1~^~A~^^^1^122.^143.^^^^~2~^~04/01/2007~ -~20002~^~307~^6.^3^^~1~^~A~^^^1^4.^9.^^^^~1, 2~^~04/01/2007~ -~20002~^~417~^22.^3^^~1~^~A~^^^1^18.^30.^^^^~2~^~04/01/2007~ -~20002~^~432~^22.^3^^~1~^~A~^^^1^18.^30.^^^^~2~^~04/01/2007~ -~20003~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20003~^~268~^1494.^0^^~4~^^^^^^^^^^^ -~20003~^~301~^40.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~304~^3.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~305~^5.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~306~^11.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~307~^2.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20003~^~417~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20003~^~432~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20004~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~268~^1481.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~20004~^~301~^33.^16^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~304~^133.^16^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~305~^264.^9^24.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~306~^452.^16^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~307~^12.^15^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~318~^22.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20004~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20004~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~20004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~338~^160.^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20004~^~417~^19.^6^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20004~^~432~^19.^6^1.^~1~^^^^^^^^^^^~09/01/2002~ -~20004~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~20004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20005~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20005~^~268~^1473.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20005~^~301~^29.^11^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~304~^79.^11^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~305~^221.^15^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~306~^280.^13^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~307~^9.^13^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~318~^22.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20005~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20005~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~20005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20005~^~338~^160.^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20005~^~417~^23.^8^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20005~^~432~^23.^8^1.^~1~^^^^^^^^^^^~03/01/2007~ -~20005~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20006~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20006~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20006~^~301~^11.^4^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~304~^22.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~305~^54.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~306~^93.^5^21.^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~307~^3.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20006~^~318~^7.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20006~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20006~^~321~^5.^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~ -~20006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20006~^~338~^56.^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~ -~20006~^~417~^16.^3^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20006~^~432~^16.^3^8.^~1~^^^^^^^^^^^~03/01/2007~ -~20006~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20008~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20008~^~268~^1435.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20008~^~301~^18.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~304~^231.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~305~^347.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~306~^460.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~307~^1.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20008~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20008~^~417~^30.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20008~^~432~^30.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20009~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20009~^~268~^1448.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20009~^~301~^17.^5^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~304~^221.^4^39.^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~305~^319.^4^114.^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~306~^320.^5^103.^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~307~^11.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20009~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20009~^~417~^42.^3^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20009~^~432~^42.^3^4.^~1~^^^^^^^^^^^~12/01/2006~ -~20009~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20010~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~20010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~20010~^~268~^385.^0^^~4~^^^^^^^^^^^~11/01/2006~ -~20010~^~301~^7.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~304~^51.^5^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~305~^70.^4^19.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~306~^88.^4^19.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~307~^4.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20010~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~20010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20010~^~338~^60.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20010~^~417~^14.^4^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20010~^~432~^14.^4^7.^~1~^^^^^^^^^^^~11/01/2006~ -~20010~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~20010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20011~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~268~^1402.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20011~^~301~^41.^4^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~304~^251.^4^19.^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~305~^337.^4^101.^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~306~^577.^4^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~307~^11.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20011~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20011~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20011~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20011~^~417~^54.^8^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20011~^~432~^54.^8^6.^~1~^^^^^^^^^^^~12/01/2006~ -~20011~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20012~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20012~^~268~^1431.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20012~^~301~^35.^10^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~304~^164.^9^23.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~305~^300.^9^36.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~306~^410.^9^37.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~307~^17.^6^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20012~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~322~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20012~^~334~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~337~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~417~^27.^5^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20012~^~432~^27.^5^3.^~1~^^^^^^^^^^^~03/01/2007~ -~20012~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20012~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/1989~ -~20013~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20013~^~268~^347.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~20013~^~301~^10.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~304~^32.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~305~^40.^3^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~306~^68.^3^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~307~^5.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20013~^~321~^1.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~322~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20013~^~334~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~337~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~338~^54.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~417~^18.^3^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20013~^~432~^18.^3^3.^~1~^^^^^^^^^^^~01/01/2007~ -~20013~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20014~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20014~^~268~^1527.^0^^~4~^^^^^^^^^^^ -~20014~^~301~^7.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~304~^127.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~305~^210.^5^28.^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~306~^287.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~307~^35.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20014~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20014~^~321~^97.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~322~^63.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20014~^~334~^0.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~337~^0.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~338~^1355.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~417~^19.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20014~^~432~^19.^0^^~4~^^^^^^^^^^^~10/01/2002~ -~20014~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20015~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20015~^~268~^937.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20015~^~301~^42.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~304~^64.^5^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~305~^72.^4^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~306~^44.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~307~^7.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~318~^71.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20015~^~320~^4.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~20015~^~321~^32.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~322~^21.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20015~^~334~^0.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~417~^4.^4^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20015~^~432~^4.^4^1.^~1~^^^^^^^^^^^~12/01/2006~ -~20015~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20016~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20016~^~268~^1510.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~20016~^~301~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~304~^93.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~305~^272.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~306~^315.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~307~^5.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20016~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20016~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20016~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20016~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~417~^25.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20016~^~432~^25.^2^^~1~^^^^^^^^^^^~01/01/2007~ -~20016~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20017~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20017~^~268~^1517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20017~^~301~^138.^23^33.^~1~^~A~^^^4^53.^210.^3^32.^243.^~2~^~07/01/2014~ -~20017~^~304~^93.^4^8.^~1~^~A~^^^3^81.^110.^2^55.^130.^~2~^~12/01/2009~ -~20017~^~305~^231.^5^20.^~1~^~A~^^^4^178.^275.^3^167.^295.^~2~^~07/01/2014~ -~20017~^~306~^262.^8^26.^~1~^~A~^^^5^159.^311.^4^188.^336.^~2~^~07/01/2014~ -~20017~^~307~^5.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^8.^~2~^~12/01/2009~ -~20017~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20017~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20017~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20017~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20017~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20017~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2009~ -~20017~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20017~^~417~^162.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~20017~^~431~^133.^0^^~8~^~LC~^^^^^^^^^^~04/01/2017~ -~20017~^~432~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~12/01/2009~ -~20017~^~435~^256.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~20017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20018~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20018~^~268~^1569.^0^^~4~^^^^^^^^^^^ -~20018~^~301~^2.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~305~^60.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~306~^90.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20018~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20018~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20018~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~417~^48.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/1996~ -~20018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20018~^~432~^48.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~ -~20018~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20019~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~268~^1517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20019~^~301~^138.^23^33.^~1~^~A~^^^4^53.^210.^3^32.^243.^~2~^~07/01/2014~ -~20019~^~304~^93.^4^8.^~1~^~A~^^^3^81.^110.^2^55.^130.^~2~^~12/01/2009~ -~20019~^~305~^231.^5^20.^~1~^~A~^^^4^178.^275.^3^167.^295.^~2~^~07/01/2014~ -~20019~^~306~^262.^8^26.^~1~^~A~^^^5^159.^311.^4^188.^336.^~2~^~07/01/2014~ -~20019~^~307~^5.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^8.^~2~^~12/01/2009~ -~20019~^~318~^5.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20019~^~417~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~01/01/2010~ -~20019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~432~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~12/01/2009~ -~20019~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~20019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20020~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20020~^~268~^1515.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~20020~^~301~^6.^9^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~304~^127.^6^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~305~^241.^3^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~306~^287.^6^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~307~^35.^6^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20020~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20020~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20020~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~417~^25.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20020~^~432~^25.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~20020~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20022~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20022~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20022~^~301~^3.^6^0.^~1~^~A~^^^2^2.^5.^3^1.^4.^~2, 3~^~12/01/2009~ -~20022~^~304~^32.^7^3.^~1~^~A~^^^2^18.^49.^4^22.^42.^~2, 3~^~12/01/2009~ -~20022~^~305~^99.^7^9.^~1~^~A~^^^2^63.^146.^4^71.^126.^~2, 3~^~12/01/2009~ -~20022~^~306~^142.^7^11.^~1~^~A~^^^2^95.^187.^4^110.^172.^~2, 3~^~12/01/2009~ -~20022~^~307~^7.^6^1.^~1~^~A~^^^2^4.^12.^4^2.^11.^~1, 2, 3~^~12/01/2009~ -~20022~^~318~^214.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20022~^~320~^11.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20022~^~321~^97.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20022~^~322~^63.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20022~^~334~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~04/01/2006~ -~20022~^~338~^1628.^5^272.^~1~^~A~^^^2^1355.^2120.^1^-1834.^5089.^~2~^~12/01/2009~ -~20022~^~417~^209.^36^21.^~1~^~A~^^^4^62.^387.^21^165.^253.^~4~^~12/01/2009~ -~20022~^~431~^180.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20022~^~432~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~12/01/2009~ -~20022~^~435~^335.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20023~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20023~^~268~^1397.^0^^~4~^^^^^^^^^^^~08/01/2008~ -~20023~^~301~^361.^16^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~304~^86.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~305~^804.^16^16.^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~306~^255.^3^48.^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~307~^1247.^3^156.^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~318~^469.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20023~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~20023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20023~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~ -~20023~^~431~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20023~^~432~^57.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~435~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~20023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20024~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20024~^~268~^1456.^0^^~4~^^^^^^^^^^^ -~20024~^~301~^299.^38^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~304~^54.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~305~^651.^37^13.^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~306~^207.^8^20.^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~307~^1319.^8^22.^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~318~^287.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20024~^~320~^14.^1^^~1~^^^^^^^^^^^~05/01/2003~ -~20024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20024~^~417~^264.^2^^~1~^~A~^^^1^254.^273.^^^^^~05/01/2003~ -~20024~^~431~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20024~^~432~^66.^10^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~435~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20025~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20025~^~268~^1485.^0^^~4~^^^^^^^^^^^~06/01/2008~ -~20025~^~301~^350.^20^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~304~^49.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~305~^623.^19^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~306~^170.^4^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~307~^1348.^4^47.^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~318~^214.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~06/01/2008~ -~20025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20025~^~320~^11.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~06/01/2008~ -~20025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20025~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~ -~20025~^~431~^202.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20025~^~432~^31.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~435~^374.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20027~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~268~^1594.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~20027~^~301~^2.^7^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~304~^3.^7^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~305~^13.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~306~^3.^7^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~307~^9.^4^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20027~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~20027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20027~^~417~^0.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20027~^~432~^0.^1^^~4~^^^^^^^^^^^~02/01/2007~ -~20027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~20027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20028~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20028~^~268~^1573.^0^^~4~^^^^^^^^^^^ -~20028~^~301~^24.^6^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~304~^44.^6^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~305~^170.^5^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~306~^166.^6^17.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~307~^10.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20028~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20028~^~417~^20.^4^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20028~^~432~^20.^4^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20029~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20029~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20029~^~301~^8.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~304~^8.^4^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~305~^22.^4^13.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~306~^58.^3^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~307~^5.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20029~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20029~^~321~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~322~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~20029~^~334~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~337~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~338~^25.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~417~^15.^3^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20029~^~432~^15.^3^8.^~1~^^^^^^^^^^^~03/01/2007~ -~20029~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20030~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20030~^~268~^301.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20030~^~301~^10.^9^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~304~^16.^7^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~305~^35.^7^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~306~^9.^7^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20030~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20030~^~321~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~322~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20030~^~334~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~337~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~338~^30.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~417~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20030~^~432~^1.^4^0.^~1~^^^^^^^^^^^~03/01/2007~ -~20030~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20030~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20031~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20031~^~268~^1582.^0^^~4~^^^^^^^^^^^ -~20031~^~301~^8.^19^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~304~^114.^19^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~305~^285.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~306~^195.^19^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~307~^5.^19^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20031~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20031~^~417~^85.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20031~^~432~^85.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20031~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~20031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20032~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20032~^~268~^498.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20032~^~301~^3.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~304~^44.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~305~^100.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~306~^62.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~307~^2.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20032~^~321~^2.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~322~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20032~^~334~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~337~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~338~^70.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~417~^19.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20032~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20032~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20033~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20033~^~268~^1029.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20033~^~301~^58.^8^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~304~^235.^8^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~305~^734.^5^26.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~306~^566.^8^36.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~307~^4.^8^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20033~^~321~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~322~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20033~^~334~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~337~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~338~^180.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~417~^52.^6^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20033~^~432~^52.^6^8.^~1~^^^^^^^^^^^~03/01/2007~ -~20033~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20034~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20034~^~268~^167.^0^^~4~^^^^^^^^^^^ -~20034~^~301~^10.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~304~^40.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~305~^119.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~306~^92.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~307~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20034~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20034~^~417~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20034~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~20035~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20035~^~268~^1539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20035~^~301~^47.^3^0.^~1~^~A~^^^1^47.^48.^2^45.^48.^~2, 3~^~04/01/2007~ -~20035~^~304~^197.^3^6.^~1~^~A~^^^1^190.^210.^2^167.^225.^~2, 3~^~04/01/2007~ -~20035~^~305~^457.^3^23.^~1~^~A~^^^1^410.^480.^2^356.^557.^~2, 3~^~04/01/2007~ -~20035~^~306~^563.^3^38.^~1~^~A~^^^1^520.^640.^2^397.^728.^~2, 3~^~04/01/2007~ -~20035~^~307~^5.^3^0.^~1~^~A~^^^1^3.^6.^2^0.^8.^~2, 3~^~04/01/2007~ -~20035~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20035~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20035~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20035~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20035~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20035~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20035~^~338~^163.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20035~^~417~^184.^3^8.^~1~^~A~^^^1^170.^199.^2^148.^220.^~2, 3~^~04/01/2007~ -~20035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20035~^~432~^184.^3^8.^~1~^~A~^^^1^170.^199.^2^148.^220.^~2, 3~^~04/01/2007~ -~20035~^~435~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20036~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~268~^1534.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~301~^9.^6^0.^~1~^~A~^^^1^8.^10.^4^8.^9.^~2, 3~^~04/01/2015~ -~20036~^~304~^116.^6^3.^~1~^~A~^^^1^103.^128.^4^105.^126.^~2, 3~^~04/01/2015~ -~20036~^~305~^311.^6^8.^~1~^~A~^^^1^284.^337.^4^287.^333.^~2, 3~^~04/01/2015~ -~20036~^~306~^250.^6^6.^~1~^~A~^^^1^231.^268.^4^232.^266.^~2, 3~^~04/01/2015~ -~20036~^~307~^5.^6^0.^~1~^~A~^^^1^5.^5.^4^4.^4.^~1, 2, 3~^~04/01/2015~ -~20036~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20036~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~20036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20036~^~417~^23.^3^0.^~1~^~A~^^^1^22.^24.^1^21.^23.^~2, 3~^~04/01/2015~ -~20036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20036~^~432~^23.^3^0.^~1~^~A~^^^1^22.^24.^1^21.^23.^^~04/01/2015~ -~20036~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20037~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20037~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~301~^3.^6^0.^~1~^~A~^^^1^3.^3.^4^2.^3.^~2, 3~^~04/01/2015~ -~20037~^~304~^39.^6^1.^~1~^~A~^^^1^32.^42.^4^34.^43.^~2, 3~^~04/01/2015~ -~20037~^~305~^103.^6^4.^~1~^~A~^^^1^83.^114.^4^90.^115.^~2, 3~^~04/01/2015~ -~20037~^~306~^86.^6^3.^~1~^~A~^^^1^68.^94.^4^74.^96.^~2, 3~^~04/01/2015~ -~20037~^~307~^4.^6^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~04/01/2015~ -~20037~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20037~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~20037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20037~^~417~^9.^3^0.^~1~^~A~^^^1^9.^9.^1^7.^10.^~2, 3~^~04/01/2015~ -~20037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20037~^~432~^9.^3^0.^~1~^~A~^^^1^9.^9.^1^7.^10.^^~04/01/2015~ -~20037~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20038~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20038~^~268~^1628.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20038~^~301~^54.^8^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~304~^177.^14^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~305~^523.^14^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~306~^429.^14^21.^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~307~^2.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20038~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20038~^~417~^56.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20038~^~432~^56.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20040~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20040~^~268~^1515.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20040~^~301~^33.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~304~^143.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~305~^264.^3^17.^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~306~^268.^4^14.^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~307~^4.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20040~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20040~^~417~^20.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20040~^~432~^20.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20041~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20041~^~268~^469.^0^^~4~^^^^^^^^^^^ -~20041~^~301~^10.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~304~^44.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~305~^77.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~306~^79.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~307~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20041~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20041~^~417~^4.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20041~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20042~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~301~^8.^6^0.^~1~^~A~^^^1^7.^9.^5^7.^8.^~2, 3~^~03/01/2015~ -~20042~^~304~^98.^6^2.^~1~^~A~^^^1^92.^110.^5^91.^105.^~2, 3~^~03/01/2015~ -~20042~^~305~^275.^6^4.^~1~^~A~^^^1^266.^292.^5^264.^285.^~2, 3~^~03/01/2015~ -~20042~^~306~^219.^6^5.^~1~^~A~^^^1^207.^242.^5^204.^232.^~2, 3~^~03/01/2015~ -~20042~^~307~^6.^6^0.^~1~^~A~^^^1^5.^7.^5^5.^6.^~2, 3~^~03/01/2015~ -~20042~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~417~^14.^3^2.^~1~^~A~^^^1^11.^19.^2^4.^24.^~2, 3~^~03/01/2015~ -~20042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~432~^14.^3^2.^~1~^~A~^^^1^11.^19.^2^4.^24.^^~03/01/2015~ -~20042~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20044~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~268~^1527.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20044~^~301~^28.^22^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~304~^25.^13^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~305~^115.^15^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~306~^115.^17^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~307~^5.^10^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20044~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~417~^231.^0^^~4~^~S~^^^^^^^^^^~09/01/1997~ -~20044~^~431~^223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20044~^~432~^8.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~435~^387.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20044~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/1989~ -~20045~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~268~^544.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~20045~^~301~^10.^33^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~304~^12.^38^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~305~^43.^27^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~306~^35.^34^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~307~^1.^13^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20045~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~20045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20045~^~417~^58.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20045~^~431~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20045~^~432~^3.^8^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~20045~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20046~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20046~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~301~^71.^2^^~1~^~A~^^^2^55.^87.^^^^^~12/01/2009~ -~20046~^~304~^27.^2^^~1~^~A~^^^2^27.^27.^^^^^~12/01/2009~ -~20046~^~305~^153.^2^^~1~^~A~^^^2^150.^156.^^^^^~12/01/2009~ -~20046~^~306~^174.^2^^~1~^~A~^^^2^160.^187.^^^^^~12/01/2009~ -~20046~^~307~^2.^2^^~1~^~A~^^^2^1.^3.^^^^~1~^~12/01/2009~ -~20046~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20046~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~321~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2005~ -~20046~^~322~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~12/01/2009~ -~20046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20046~^~334~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2005~ -~20046~^~337~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2005~ -~20046~^~338~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2005~ -~20046~^~417~^257.^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20046~^~431~^249.^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20046~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~20046~^~435~^431.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20047~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20047~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20047~^~301~^19.^3^1.^~1~^~A~^^^1^16.^21.^2^13.^24.^~2, 3~^~02/01/2005~ -~20047~^~304~^9.^3^0.^~1~^~A~^^^1^8.^10.^2^5.^11.^~2, 3~^~02/01/2005~ -~20047~^~305~^55.^3^2.^~1~^~A~^^^1^51.^59.^2^45.^65.^~2, 3~^~02/01/2005~ -~20047~^~306~^56.^2^^~1~^~A~^^^1^55.^57.^1^^^^~02/01/2005~ -~20047~^~307~^2.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~02/01/2005~ -~20047~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20047~^~417~^81.^2^^~1~^~A~^^^1^73.^89.^1^^^^~02/01/2005~ -~20047~^~431~^79.^2^^~1~^~A~^^^1^73.^84.^1^^^^~12/01/2006~ -~20047~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~20047~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20047~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20048~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20048~^~268~^1591.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20048~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~305~^118.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~306~^27.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~307~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20048~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~417~^275.^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20048~^~431~^273.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~432~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~20048~^~435~^466.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20049~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20049~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20049~^~301~^8.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^10.^~2, 3~^~02/01/2005~ -~20049~^~304~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~02/01/2005~ -~20049~^~305~^37.^3^1.^~1~^~A~^^^1^36.^39.^2^32.^41.^~2, 3~^~02/01/2005~ -~20049~^~306~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~02/01/2005~ -~20049~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~02/01/2005~ -~20049~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20049~^~321~^0.^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2003~ -~20049~^~322~^0.^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2003~ -~20049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20049~^~334~^0.^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2003~ -~20049~^~337~^0.^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2003~ -~20049~^~338~^0.^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2003~ -~20049~^~417~^70.^3^21.^~1~^~A~^^^1^28.^92.^2^-20.^160.^~2, 3~^~05/01/2002~ -~20049~^~431~^69.^3^20.^~1~^~A~^^^1^27.^90.^2^-20.^158.^~2, 3~^~02/01/2005~ -~20049~^~432~^1.^3^0.^~1~^~AS~^^^1^1.^2.^2^0.^2.^~2, 3~^~03/01/2007~ -~20049~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20049~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20050~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20050~^~268~^1506.^0^^~4~^^^^^^^^^^^ -~20050~^~301~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~304~^35.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~305~^108.^4^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~306~^86.^5^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~307~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20050~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20050~^~417~^231.^0^^~4~^~S~^^^^^^^^^^~09/01/1997~ -~20050~^~431~^222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20050~^~432~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~435~^386.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20051~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20051~^~268~^544.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20051~^~301~^3.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~304~^13.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~305~^37.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~306~^29.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~307~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20051~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20051~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20051~^~417~^58.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20051~^~431~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20051~^~432~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20051~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20052~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20052~^~268~^1498.^0^^~4~^^^^^^^^^^^ -~20052~^~301~^3.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~304~^23.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~305~^95.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~306~^76.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~307~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20052~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20052~^~417~^231.^0^^~4~^~S~^^^^^^^^^^~09/01/1997~ -~20052~^~431~^225.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20052~^~432~^6.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~435~^389.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20053~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20053~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20053~^~301~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~304~^8.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~305~^33.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~306~^26.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~307~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20053~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20053~^~417~^59.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20053~^~431~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20053~^~432~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20053~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20054~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20054~^~268~^1548.^0^^~4~^^^^^^^^^^^ -~20054~^~301~^11.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~304~^23.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~305~^71.^3^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~306~^77.^3^14.^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~307~^7.^3^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20054~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20054~^~417~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20054~^~432~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20055~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~20055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~20055~^~268~^406.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20055~^~301~^2.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~304~^5.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~305~^8.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~306~^10.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~307~^5.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20055~^~321~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~322~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20055~^~334~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~337~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~338~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~417~^1.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20055~^~432~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20055~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20055~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20058~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20058~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20058~^~301~^5.^4^0.^~1~^~A~^^^1^3.^6.^3^2.^6.^~4~^~05/01/2008~ -~20058~^~304~^5.^4^0.^~1~^~A~^^^1^4.^8.^3^2.^7.^~4~^~05/01/2008~ -~20058~^~305~^33.^4^2.^~1~^~A~^^^1^31.^39.^3^26.^39.^~4~^~05/01/2008~ -~20058~^~306~^20.^4^1.^~1~^~A~^^^1^15.^24.^3^13.^25.^~4~^~05/01/2008~ -~20058~^~307~^5.^4^1.^~1~^~A~^^^1^4.^9.^3^0.^9.^~1, 4~^~05/01/2008~ -~20058~^~417~^5.^4^2.^~1~^~A~^^^1^1.^11.^3^-2.^11.^~4~^~05/01/2008~ -~20058~^~431~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~06/01/2008~ -~20058~^~432~^5.^4^2.^~1~^~AS~^^^1^1.^11.^3^-2.^11.^~4~^~05/01/2008~ -~20058~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20060~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~268~^1322.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20060~^~301~^57.^5^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~304~^781.^5^150.^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~305~^1677.^5^236.^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~306~^1485.^5^198.^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~307~^5.^5^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20060~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20060~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~11/01/2002~ -~20060~^~417~^63.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20060~^~432~^63.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~20060~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20061~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~268~^1531.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~20061~^~301~^10.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~304~^35.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~305~^98.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~306~^76.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~307~^0.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~20061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20061~^~417~^4.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20061~^~432~^4.^2^^~1~^^^^^^^^^^^~02/01/2007~ -~20061~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~20061~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20062~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20062~^~268~^1414.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~301~^24.^10^0.^~1~^~A~^^^1^21.^30.^9^21.^25.^~4~^~06/01/2009~ -~20062~^~304~^110.^10^2.^~1~^~A~^^^1^99.^123.^9^104.^115.^~4~^~06/01/2009~ -~20062~^~305~^332.^10^10.^~1~^~A~^^^1^297.^387.^9^309.^354.^~4~^~06/01/2009~ -~20062~^~306~^510.^10^11.^~1~^~A~^^^1^467.^602.^9^484.^534.^~4~^~06/01/2009~ -~20062~^~307~^2.^10^0.^~1~^~A~^^^1^2.^2.^9^2.^2.^~1, 4~^~06/01/2009~ -~20062~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20062~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~321~^7.^0^^~4~^~BFZN~^~20063~^^^^^^^^^~07/01/2009~ -~20062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20062~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20062~^~338~^210.^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20062~^~417~^38.^10^2.^~1~^~A~^^^1^28.^51.^9^31.^43.^~4~^~06/01/2009~ -~20062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20062~^~432~^38.^10^2.^~1~^~A~^^^1^28.^51.^9^31.^43.^^~07/01/2009~ -~20062~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~601~^0.^10^0.^~1~^~A~^^^1^0.^0.^9^0.^0.^~1, 4~^~06/01/2009~ -~20063~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20063~^~268~^1360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20063~^~301~^37.^12^1.^~1~^~A~^^^1^30.^43.^11^34.^39.^~4~^~06/01/2009~ -~20063~^~304~^160.^12^7.^~1~^~A~^^^1^137.^216.^11^143.^175.^~4~^~06/01/2009~ -~20063~^~305~^499.^12^19.^~1~^~A~^^^1^422.^640.^11^456.^540.^~4~^~06/01/2009~ -~20063~^~306~^717.^12^24.^~1~^~A~^^^1^633.^933.^11^663.^770.^~4~^~06/01/2009~ -~20063~^~307~^2.^12^0.^~1~^~A~^^^1^2.^2.^11^2.^2.^~1, 4~^~06/01/2009~ -~20063~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20063~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20063~^~321~^7.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~20063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20063~^~338~^210.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20063~^~417~^33.^12^0.^~1~^~A~^^^1^31.^42.^11^31.^34.^~4~^~06/01/2009~ -~20063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20063~^~432~^33.^12^0.^~1~^~A~^^^1^31.^42.^11^31.^34.^^~07/01/2009~ -~20063~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20063~^~601~^0.^12^0.^~1~^~A~^^^1^0.^0.^11^0.^0.^~1, 4~^~06/01/2009~ -~20064~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~268~^1459.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20064~^~301~^24.^11^1.^~1~^~A~^^^1^18.^35.^10^20.^28.^~4~^~06/01/2009~ -~20064~^~304~^63.^11^2.^~1~^~A~^^^1^52.^77.^10^57.^67.^~4~^~06/01/2009~ -~20064~^~305~^225.^11^5.^~1~^~A~^^^1^198.^264.^10^212.^236.^~4~^~06/01/2009~ -~20064~^~306~^374.^11^8.^~1~^~A~^^^1^349.^442.^10^355.^392.^~4~^~06/01/2009~ -~20064~^~307~^2.^11^0.^~1~^~A~^^^1^2.^2.^10^2.^2.^~1, 4~^~06/01/2009~ -~20064~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20064~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20064~^~338~^210.^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20064~^~417~^34.^11^0.^~1~^~A~^^^1^30.^37.^10^33.^35.^~4~^~06/01/2009~ -~20064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20064~^~432~^34.^11^0.^~1~^~A~^^^1^30.^37.^10^33.^35.^^~07/01/2009~ -~20064~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20064~^~601~^0.^11^0.^~1~^~A~^^^1^0.^0.^10^0.^0.^~1, 4~^~06/01/2009~ -~20065~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~268~^1492.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20065~^~301~^13.^12^0.^~1~^~A~^^^1^8.^17.^11^10.^14.^~4~^~06/01/2009~ -~20065~^~304~^32.^12^0.^~1~^~A~^^^1^26.^36.^11^29.^33.^~4~^~06/01/2009~ -~20065~^~305~^130.^12^3.^~1~^~A~^^^1^117.^150.^11^122.^136.^~4~^~06/01/2009~ -~20065~^~306~^224.^12^5.^~1~^~A~^^^1^196.^258.^11^211.^236.^~4~^~06/01/2009~ -~20065~^~307~^2.^12^0.^~1~^~A~^^^1^2.^2.^11^2.^2.^~1, 4~^~06/01/2009~ -~20065~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20065~^~338~^210.^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20065~^~417~^23.^12^1.^~1~^~A~^^^1^18.^30.^11^21.^25.^~4~^~06/01/2009~ -~20065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20065~^~432~^23.^12^1.^~1~^~A~^^^1^18.^30.^11^21.^25.^^~07/01/2009~ -~20065~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20065~^~601~^0.^12^0.^~1~^~A~^^^1^0.^0.^11^0.^0.^~1, 4~^~06/01/2009~ -~20066~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20066~^~268~^1506.^0^^~4~^^^^^^^^^^^ -~20066~^~301~^17.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~304~^47.^6^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~305~^136.^4^12.^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~306~^186.^4^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~307~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20066~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20066~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20066~^~417~^183.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~05/01/2003~ -~20066~^~431~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20066~^~432~^72.^2^^~1~^^^^^^^^^^^~05/01/2003~ -~20066~^~435~^261.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20066~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20067~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~268~^1377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~301~^13.^5^0.^~1~^~A~^^^1^11.^15.^4^10.^15.^~4~^~04/01/2014~ -~20067~^~304~^165.^6^24.^~6~^~JA~^^^2^118.^190.^1^-151.^481.^~2~^~04/01/2014~ -~20067~^~305~^289.^5^16.^~1~^~A~^^^1^227.^330.^4^241.^335.^~4~^~04/01/2014~ -~20067~^~306~^363.^5^21.^~1~^~A~^^^1^292.^416.^4^304.^421.^~4~^~04/01/2014~ -~20067~^~307~^2.^5^0.^~1~^~A~^^^1^1.^4.^4^0.^4.^~4~^~04/01/2014~ -~20067~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20067~^~319~^0.^5^0.^~1~^~A~^^^1^0.^0.^4^0.^0.^~1, 4~^~04/01/2014~ -~20067~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20067~^~417~^20.^1^^~13~^~AI~^^^^^^^^^^~12/01/2012~ -~20067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20067~^~432~^20.^1^^~13~^~AI~^^^^^^^^^^~12/01/2012~ -~20067~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~20067~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20068~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~268~^1498.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~20068~^~301~^20.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~304~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~305~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~306~^11.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~307~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20068~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~20068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~417~^4.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20068~^~432~^4.^2^^~1~^^^^^^^^^^^~02/01/2007~ -~20068~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~20068~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20069~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20069~^~268~^1406.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~20069~^~301~^37.^6^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~304~^130.^6^12.^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~305~^358.^6^25.^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~306~^332.^6^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~307~^5.^6^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20069~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20069~^~417~^73.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20069~^~432~^73.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~20069~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20070~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20070~^~268~^1414.^0^^~4~^^^^^^^^^^^ -~20070~^~301~^35.^6^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~304~^153.^6^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~305~^321.^7^30.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~306~^466.^6^16.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~307~^2.^6^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20070~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20070~^~417~^74.^8^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20070~^~432~^74.^8^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20070~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20071~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20071~^~268~^1377.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20071~^~301~^25.^106^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~304~^124.^106^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~305~^332.^21^14.^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~306~^340.^71^13.^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~307~^2.^70^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~318~^9.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20071~^~320~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20071~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20071~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20071~^~417~^43.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20071~^~432~^43.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~20071~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20071~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20072~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20072~^~268~^1368.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20072~^~301~^29.^87^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~304~^126.^87^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~305~^288.^27^12.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~306~^363.^61^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~307~^2.^58^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20072~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20072~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~20072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20072~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20072~^~417~^38.^5^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20072~^~432~^38.^5^2.^~1~^^^^^^^^^^^~03/01/2007~ -~20072~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20072~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20073~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20073~^~268~^1385.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20073~^~301~^27.^54^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~304~^126.^53^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~305~^493.^4^57.^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~306~^397.^30^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~307~^2.^31^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20073~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~20073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20073~^~417~^41.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20073~^~432~^41.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~20073~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20073~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20074~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~268~^1431.^0^^~4~^^^^^^^^^^^ -~20074~^~301~^32.^11^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~304~^93.^11^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~305~^355.^11^15.^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~306~^432.^11^21.^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~307~^2.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20074~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20074~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20074~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20074~^~417~^38.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20074~^~432~^38.^0^^~4~^^^^^^^^^^^~09/01/2002~ -~20074~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20074~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20075~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~268~^1423.^0^^~4~^^^^^^^^^^^ -~20075~^~301~^34.^123^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~304~^90.^123^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~305~^402.^123^14.^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~306~^435.^123^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~307~^2.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20075~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20075~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20075~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20075~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20075~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20075~^~417~^41.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20075~^~432~^41.^0^^~4~^^^^^^^^^^^~09/01/2002~ -~20075~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20075~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20076~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20076~^~268~^1418.^0^^~4~^^^^^^^^^^^ -~20076~^~301~^34.^37^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~304~^144.^39^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~305~^508.^37^20.^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~306~^431.^37^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~307~^2.^9^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20076~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20076~^~417~^43.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20076~^~432~^43.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20076~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20076~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20077~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20077~^~268~^904.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20077~^~301~^73.^4^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~304~^611.^4^75.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~305~^1013.^3^92.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~306~^1182.^4^123.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~307~^2.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~318~^9.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~20077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20077~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~20077~^~321~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~20077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20077~^~338~^240.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~20077~^~417~^79.^4^13.^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20077~^~432~^79.^4^13.^~1~^^^^^^^^^^^~03/01/2007~ -~20077~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20077~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20078~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20078~^~268~^1506.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20078~^~301~^39.^6^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~304~^239.^6^14.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~305~^842.^6^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~306~^892.^6^41.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~307~^12.^6^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20078~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20078~^~417~^281.^10^22.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20078~^~432~^281.^10^22.^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~435~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20078~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20080~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20080~^~268~^1424.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~301~^34.^3^1.^~1~^~A~^^^1^32.^36.^2^29.^39.^~2, 3~^~01/01/2010~ -~20080~^~304~^137.^3^8.^~1~^~A~^^^1^120.^150.^2^98.^174.^~2, 3~^~01/01/2010~ -~20080~^~305~^357.^3^3.^~1~^~A~^^^1^350.^360.^2^342.^371.^~2, 3~^~01/01/2010~ -~20080~^~306~^363.^3^12.^~1~^~A~^^^1^340.^380.^2^311.^415.^~2, 3~^~01/01/2010~ -~20080~^~307~^2.^3^0.^~1~^~A~^^^1^2.^3.^2^2.^2.^~2, 3~^~01/01/2010~ -~20080~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~20080~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20080~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~ -~20080~^~321~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~20080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20080~^~338~^220.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20080~^~417~^44.^7^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20080~^~432~^44.^7^4.^~1~^^^^^^^^^^^~01/01/2010~ -~20080~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20081~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20081~^~268~^1523.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~20081~^~301~^15.^113^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~304~^22.^129^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~305~^108.^47^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~306~^107.^94^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~307~^2.^82^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20081~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20081~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~20081~^~338~^18.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20081~^~417~^183.^9^5.^~1~^~A~^^^1^160.^203.^8^170.^196.^~2, 3~^~10/01/2002~ -~20081~^~431~^154.^9^5.^~1~^~A~^^^1^131.^170.^8^141.^167.^~2, 3~^~10/01/2002~ -~20081~^~432~^29.^9^1.^~1~^~AS~^^^1^22.^34.^8^25.^32.^~2, 3~^~10/01/2002~ -~20081~^~435~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20081~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20082~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20082~^~268~^1481.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20082~^~301~^338.^30^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~304~^19.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~305~^595.^14^38.^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~306~^124.^11^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~307~^1193.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~20082~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20082~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20082~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20082~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20082~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20082~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20082~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20082~^~417~^196.^3^14.^~1~^~A~^^^1^178.^224.^2^135.^256.^~2, 3~^~05/01/2002~ -~20082~^~431~^158.^3^18.^~1~^~A~^^^1^128.^191.^2^79.^236.^~2, 3~^~05/01/2002~ -~20082~^~432~^38.^3^5.^~1~^~AS~^^^1^32.^50.^2^13.^63.^~2, 3~^~05/01/2002~ -~20082~^~435~^307.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20082~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20083~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20083~^~268~^1510.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20083~^~301~^15.^163^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~304~^25.^160^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~305~^97.^11^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~306~^100.^81^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~307~^2.^74^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~318~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20083~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20083~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~20083~^~338~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20083~^~417~^183.^3^1.^~1~^~A~^^^1^182.^185.^2^178.^187.^~2, 3~^~05/01/2002~ -~20083~^~431~^150.^3^2.^~1~^~A~^^^1^146.^154.^2^140.^160.^~2, 3~^~05/01/2002~ -~20083~^~432~^33.^3^2.^~1~^~AS~^^^1^28.^36.^2^22.^43.^~2, 3~^~05/01/2002~ -~20083~^~435~^288.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20083~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20084~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20084~^~268~^1515.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20084~^~301~^14.^63^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~304~^16.^77^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~305~^85.^16^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~306~^105.^41^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~307~^2.^38^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20084~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~ -~20084~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20084~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20084~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20084~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~20084~^~338~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20084~^~417~^186.^3^17.^~1~^~A~^^^1^157.^218.^2^109.^261.^~2, 3~^~10/01/2002~ -~20084~^~431~^138.^3^18.^~1~^~A~^^^1^105.^170.^2^57.^219.^~2, 3~^~10/01/2002~ -~20084~^~432~^47.^3^2.^~1~^~AS~^^^1^42.^52.^2^34.^59.^~2, 3~^~10/01/2002~ -~20084~^~435~^282.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20086~^~208~^405.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20086~^~268~^1695.^0^^~4~^^^^^^^^^^^ -~20086~^~301~^205.^25^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~304~^21.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~305~^210.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~306~^100.^4^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~307~^677.^4^49.^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20086~^~417~^136.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~20086~^~431~^112.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20086~^~432~^24.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~435~^215.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20087~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20087~^~268~^828.^0^^~4~^^^^^^^^^^^ -~20087~^~301~^28.^8^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~304~^82.^8^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~305~^200.^8^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~306~^169.^8^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~307~^16.^8^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20087~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20087~^~417~^38.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20087~^~432~^38.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20087~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20088~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20088~^~268~^1494.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20088~^~301~^21.^41^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~304~^177.^41^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~305~^433.^40^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~306~^427.^41^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~307~^7.^7^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~318~^19.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20088~^~320~^1.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~20088~^~321~^11.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~322~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20088~^~334~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~337~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~417~^95.^5^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20088~^~432~^95.^5^11.^~1~^^^^^^^^^^^~03/01/2007~ -~20088~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20089~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20089~^~268~^423.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20089~^~301~^3.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~304~^32.^5^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~305~^82.^5^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~306~^101.^5^20.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~307~^3.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20089~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20089~^~321~^2.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~322~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20089~^~334~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~337~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~338~^64.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~417~^26.^3^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20089~^~432~^26.^3^3.^~1~^^^^^^^^^^^~03/01/2007~ -~20089~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20090~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20090~^~268~^1519.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20090~^~301~^11.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~304~^112.^3^25.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~305~^337.^3^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~306~^289.^3^19.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~307~^8.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20090~^~417~^16.^6^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20090~^~432~^16.^6^2.^~1~^^^^^^^^^^^~05/01/2005~ -~20090~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20091~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20091~^~268~^1494.^0^^~4~^^^^^^^^^^^ -~20091~^~301~^4.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~304~^119.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~305~^253.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~306~^294.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~307~^3.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~318~^170.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20091~^~320~^9.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~20091~^~417~^25.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20091~^~432~^25.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20092~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20092~^~268~^527.^0^^~4~^^^^^^^^^^^ -~20092~^~301~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~304~^36.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~305~^76.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~306~^31.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~307~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~318~^57.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20092~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20092~^~417~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20092~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20092~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20093~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20093~^~268~^1205.^0^^~4~^^^^^^^^^^^ -~20093~^~301~^15.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~304~^46.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~305~^163.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~306~^179.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~307~^26.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~318~^47.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~319~^14.^0^^~4~^^^^^^^^^^^~07/01/2002~ -~20093~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~20093~^~417~^176.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1997~ -~20093~^~431~^154.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20093~^~432~^22.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~435~^284.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~20093~^~601~^73.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20094~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20094~^~268~^548.^0^^~4~^^^^^^^^^^^ -~20094~^~301~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~304~^18.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~305~^63.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~306~^24.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~307~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~318~^20.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20094~^~319~^6.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20094~^~320~^6.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20094~^~417~^64.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1997~ -~20094~^~431~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20094~^~432~^7.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20094~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20094~^~601~^33.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20095~^~268~^1209.^0^^~4~^^^^^^^^^^^ -~20095~^~301~^43.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~304~^63.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~305~^148.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~306~^272.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~307~^27.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~318~^241.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~319~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~20095~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~20095~^~417~^177.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1997~ -~20095~^~431~^121.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20095~^~432~^56.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~435~^262.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20095~^~601~^73.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20096~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20096~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20096~^~301~^18.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~304~^24.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~305~^57.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~306~^37.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~307~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~318~^103.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20096~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~20096~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~20096~^~417~^64.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1997~ -~20096~^~431~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20096~^~432~^18.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20096~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20096~^~601~^33.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20097~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20097~^~301~^10.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~304~^14.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~305~^52.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~306~^21.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~307~^83.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~318~^58.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20097~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20097~^~417~^43.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~20097~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20097~^~432~^19.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20097~^~601~^41.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~636~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20098~^~268~^519.^0^^~4~^^^^^^^^^^^ -~20098~^~301~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~304~^14.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~305~^40.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~306~^19.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~307~^74.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20098~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20098~^~417~^43.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~ -~20098~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20098~^~432~^17.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20098~^~636~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20105~^~268~^1536.^0^^~4~^^^^^^^^^^^ -~20105~^~301~^34.^6^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~304~^46.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~305~^116.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~306~^285.^5^61.^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~307~^43.^5^20.^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~318~^160.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20105~^~320~^8.^1^^~1~^^^^^^^^^^^~05/01/2003~ -~20105~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20105~^~417~^278.^0^^~4~^~BFZN~^~20120~^^^^^^^^^~05/01/2003~ -~20105~^~431~^261.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20105~^~432~^17.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~435~^460.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20105~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20106~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~20106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~ -~20106~^~268~^536.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~20106~^~301~^11.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~304~^19.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~305~^50.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~306~^31.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~307~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~318~^92.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20106~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20106~^~321~^55.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~20106~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20106~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20106~^~337~^245.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20106~^~338~^13.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~20106~^~417~^65.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20106~^~431~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20106~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~20106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20109~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~20109~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~20109~^~268~^1609.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~301~^35.^3^0.^~1~^~A~^^^1^34.^37.^2^31.^39.^~2, 3~^~11/01/2004~ -~20109~^~304~^58.^3^1.^~1~^~A~^^^1^56.^61.^2^51.^65.^~2, 3~^~11/01/2004~ -~20109~^~305~^241.^3^2.^~1~^~A~^^^1^236.^245.^2^229.^252.^~2, 3~^~11/01/2004~ -~20109~^~306~^244.^3^8.^~1~^~A~^^^1^236.^260.^2^209.^278.^~2, 3~^~11/01/2004~ -~20109~^~307~^21.^3^2.^~1~^~A~^^^1^16.^26.^2^8.^32.^~2, 3~^~11/01/2004~ -~20109~^~318~^62.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20109~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~320~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~20109~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~324~^11.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2009~ -~20109~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~338~^110.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~20109~^~417~^230.^13^14.^~1~^~A~^^^2^83.^347.^1^41.^418.^~2~^~11/01/2004~ -~20109~^~431~^201.^0^^~4~^~O~^^^^^^^^^^~11/01/2004~ -~20109~^~432~^29.^12^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20109~^~435~^370.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~601~^84.^3^5.^~1~^~A~^^^1^73.^92.^2^59.^107.^~2, 3~^~11/01/2004~ -~20110~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20110~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~301~^12.^42^0.^~1~^~A~^^^13^9.^17.^12^11.^13.^~2~^~11/01/2004~ -~20110~^~304~^21.^42^0.^~1~^~A~^^^13^11.^31.^12^19.^22.^~2~^~11/01/2004~ -~20110~^~305~^76.^42^3.^~1~^~A~^^^13^52.^109.^12^68.^84.^~2~^~11/01/2004~ -~20110~^~306~^38.^42^2.^~1~^~A~^^^13^18.^66.^12^33.^43.^~2~^~11/01/2004~ -~20110~^~307~^5.^42^0.^~1~^~A~^^^13^1.^40.^12^2.^6.^~1, 2~^~11/01/2004~ -~20110~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~319~^6.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~321~^1.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~322~^0.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~324~^4.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~02/01/2009~ -~20110~^~334~^0.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~337~^0.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~338~^38.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~11/01/2002~ -~20110~^~417~^84.^3^8.^~1~^~A~^^^1^67.^94.^2^47.^120.^~2, 3~^~11/01/2004~ -~20110~^~431~^77.^0^^~4~^~O~^^^^^^^^^^~11/01/2004~ -~20110~^~432~^7.^12^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20110~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~601~^29.^3^1.^~1~^~A~^^^1^27.^33.^2^22.^36.^~2, 3~^~11/01/2004~ -~20111~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20111~^~268~^1598.^0^^~4~^^^^^^^^^^^ -~20111~^~301~^56.^4^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~304~^82.^3^23.^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~305~^193.^3^24.^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~306~^355.^3^53.^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~307~^72.^3^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~318~^315.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~417~^245.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~05/01/2003~ -~20111~^~431~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20111~^~432~^88.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~435~^354.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20111~^~601~^95.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20112~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20112~^~268~^552.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~20112~^~301~^19.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~304~^24.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~305~^57.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~306~^37.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~307~^12.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~318~^103.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~319~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20112~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20112~^~321~^51.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~20112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20112~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~20112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20112~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20112~^~338~^2232.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~20112~^~417~^64.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20112~^~431~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20112~^~432~^21.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20112~^~601~^33.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20113~^~208~^471.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~20113~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~20113~^~268~^1973.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~305~^98.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~306~^103.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~307~^866.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20113~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~20113~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~20113~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~20113~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~417~^125.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~431~^90.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~432~^35.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~20113~^~435~^188.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~20113~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20114~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20114~^~268~^1406.^0^^~4~^^^^^^^^^^^ -~20114~^~301~^35.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~304~^95.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~305~^254.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~306~^252.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~307~^792.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20114~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20114~^~417~^60.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20114~^~432~^60.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20115~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20115~^~268~^414.^0^^~4~^^^^^^^^^^^ -~20115~^~301~^4.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~304~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~305~^25.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~306~^35.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~307~^60.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20115~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20115~^~417~^7.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20115~^~432~^7.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20115~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20116~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20116~^~268~^1490.^0^^~4~^^^^^^^^^^^ -~20116~^~301~^23.^6^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~304~^28.^5^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~305~^80.^6^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~306~^164.^6^33.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~307~^1840.^6^344.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20116~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20116~^~417~^14.^4^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20116~^~432~^14.^4^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20117~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20117~^~268~^548.^0^^~4~^^^^^^^^^^^ -~20117~^~301~^8.^3^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~304~^2.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~305~^27.^4^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~306~^29.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~307~^161.^3^68.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20117~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20117~^~417~^2.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20117~^~432~^2.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20118~^~208~^521.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~20118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~268~^2181.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~20118~^~301~^21.^4^3.^~1~^~A~^^^1^16.^32.^3^8.^33.^~2, 3~^~04/01/2008~ -~20118~^~304~^21.^4^2.^~1~^~A~^^^1^17.^27.^3^14.^27.^~2, 3~^~04/01/2008~ -~20118~^~305~^87.^4^5.^~1~^~A~^^^1^74.^98.^3^71.^103.^~2, 3~^~04/01/2008~ -~20118~^~306~^89.^4^8.^~1~^~A~^^^1^68.^105.^3^61.^117.^~2, 3~^~04/01/2008~ -~20118~^~307~^378.^3^48.^~1~^~A~^^^1^282.^433.^2^171.^584.^~2, 3~^~04/01/2008~ -~20118~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~338~^54.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~417~^17.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~432~^17.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~20118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20120~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20120~^~268~^1553.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~301~^21.^4^0.^~1~^~A~^^^2^18.^24.^2^19.^23.^~2, 3~^~05/01/2006~ -~20120~^~304~^53.^5^1.^~1~^~A~^^^2^50.^56.^3^48.^56.^~2, 3~^~05/01/2006~ -~20120~^~305~^189.^5^4.^~1~^~A~^^^2^180.^199.^2^169.^208.^~2, 3~^~05/01/2006~ -~20120~^~306~^223.^5^3.^~1~^~A~^^^2^210.^235.^3^212.^233.^~2, 3~^~05/01/2006~ -~20120~^~307~^6.^6^1.^~1~^~A~^^^3^2.^10.^2^-2.^13.^~2~^~05/01/2006~ -~20120~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20120~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20120~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20120~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20120~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20120~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20120~^~417~^237.^16^72.^~1~^~A~^^^3^143.^492.^2^-75.^550.^~2~^~10/01/2004~ -~20120~^~431~^219.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~20120~^~432~^18.^30^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20120~^~435~^391.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20121~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20121~^~268~^660.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20121~^~301~^7.^51^0.^~1~^~A~^^^14^6.^11.^13^6.^7.^~2~^~05/01/2006~ -~20121~^~304~^18.^56^0.^~1~^~A~^^^14^14.^27.^13^16.^19.^~2~^~05/01/2006~ -~20121~^~305~^58.^56^2.^~1~^~A~^^^14^37.^87.^13^52.^64.^~2~^~05/01/2006~ -~20121~^~306~^44.^52^2.^~1~^~A~^^^14^24.^83.^13^38.^49.^~2~^~05/01/2006~ -~20121~^~307~^1.^39^0.^~1~^~A~^^^12^0.^2.^11^0.^0.^~1, 2~^~10/01/2004~ -~20121~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20121~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20121~^~321~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20121~^~322~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20121~^~334~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20121~^~337~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20121~^~338~^7.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20121~^~417~^73.^18^3.^~1~^~A~^^^2^43.^98.^9^64.^81.^~2, 3~^~10/01/2004~ -~20121~^~431~^66.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~20121~^~432~^7.^22^0.^~1~^^^^^^^^^^^~10/01/2004~ -~20121~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20124~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~268~^1471.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~301~^29.^10^1.^~1~^~A~^^^1^24.^42.^5^25.^31.^~2, 3~^~06/01/2015~ -~20124~^~304~^128.^10^2.^~1~^~A~^^^1^109.^136.^7^123.^133.^~2, 3~^~06/01/2015~ -~20124~^~305~^343.^10^3.^~1~^~A~^^^1^317.^356.^6^335.^350.^~2, 3~^~06/01/2015~ -~20124~^~306~^434.^10^4.^~1~^~A~^^^1^417.^453.^4^421.^446.^~2, 3~^~06/01/2015~ -~20124~^~307~^6.^10^0.^~1~^~A~^^^1^5.^9.^7^5.^6.^~1, 2, 3~^~06/01/2015~ -~20124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20124~^~417~^69.^6^12.^~1~^~A~^^^1^37.^107.^1^-31.^168.^~2, 3~^~06/01/2015~ -~20124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20124~^~432~^69.^6^12.^~1~^~A~^^^1^37.^107.^1^-31.^168.^^~06/01/2015~ -~20124~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20125~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20125~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~301~^13.^10^0.^~1~^~A~^^^1^11.^18.^5^11.^14.^~2, 3~^~05/01/2015~ -~20125~^~304~^54.^10^1.^~1~^~A~^^^1^44.^61.^6^51.^56.^~2, 3~^~05/01/2015~ -~20125~^~305~^127.^10^2.^~1~^~A~^^^1^107.^143.^4^119.^134.^~2, 3~^~05/01/2015~ -~20125~^~306~^96.^10^3.^~1~^~A~^^^1^74.^114.^4^86.^104.^~2, 3~^~05/01/2015~ -~20125~^~307~^4.^10^0.^~1~^~A~^^^1^4.^4.^5^3.^3.^~1, 2, 3~^~05/01/2015~ -~20125~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20125~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20125~^~321~^2.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~20125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~20125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~20125~^~338~^94.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~05/01/2015~ -~20125~^~417~^21.^6^2.^~1~^~A~^^^1^10.^30.^1^1.^39.^~2, 3~^~05/01/2015~ -~20125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20125~^~432~^21.^6^2.^~1~^~A~^^^1^10.^30.^1^1.^39.^^~05/01/2015~ -~20125~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20126~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20126~^~268~^1556.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~20126~^~301~^58.^3^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~304~^174.^3^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~305~^332.^3^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~306~^376.^3^40.^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~307~^36.^3^11.^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~318~^461.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20126~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20126~^~321~^277.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~20126~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~20126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20126~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~20126~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~338~^3487.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~417~^48.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20126~^~432~^48.^2^^~1~^^^^^^^^^^^~03/01/2007~ -~20126~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20126~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20127~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20127~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20127~^~301~^30.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~304~^62.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~305~^108.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~306~^58.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~307~^14.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~318~^152.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20127~^~320~^8.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20127~^~417~^12.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20127~^~432~^12.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20127~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20129~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20129~^~268~^1510.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20129~^~301~^15.^163^0.^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~304~^25.^160^0.^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~305~^97.^11^2.^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~306~^100.^81^2.^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~307~^2.^74^0.^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20129~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20129~^~321~^1.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~322~^0.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20129~^~334~^0.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~337~^0.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~338~^79.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~417~^33.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~20129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20129~^~432~^33.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20129~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~20130~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~268~^1443.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~20130~^~301~^32.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~304~^96.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~305~^296.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~306~^309.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~307~^4.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~318~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~09/01/2002~ -~20130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20130~^~320~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~09/01/2002~ -~20130~^~321~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~09/01/2002~ -~20130~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20130~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~338~^160.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20130~^~417~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20130~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~20130~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~20130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20131~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~268~^1510.^0^^~4~^^^^^^^^^^^ -~20131~^~301~^37.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~304~^97.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~305~^303.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~306~^224.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~318~^19.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20131~^~320~^1.^2^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20131~^~321~^11.^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~20131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~338~^160.^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~417~^38.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20131~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20131~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~20131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20132~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~268~^1688.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20132~^~301~^55.^2^^~1~^~A~^^^1^54.^56.^1^^^^~09/01/2002~ -~20132~^~304~^144.^2^^~1~^~A~^^^1^143.^144.^1^^^^~09/01/2002~ -~20132~^~305~^452.^2^^~1~^~A~^^^1^449.^456.^1^^^^~09/01/2002~ -~20132~^~306~^371.^2^^~1~^~A~^^^1^365.^378.^1^^^^~09/01/2002~ -~20132~^~307~^19.^2^^~1~^~A~^^^1^19.^19.^1^^^^~09/01/2002~ -~20132~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20132~^~321~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~322~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20132~^~334~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~337~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~338~^180.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20132~^~417~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~432~^32.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~20132~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20133~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~20133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20133~^~268~^1523.^0^^~4~^^^^^^^^^^^~03/01/2013~ -~20133~^~301~^18.^3^7.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~304~^12.^3^5.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~305~^153.^3^36.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~306~^30.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~307~^182.^2^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20133~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~20133~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~20133~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~20133~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~20133~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20134~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~20134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20134~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~20134~^~301~^4.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~304~^3.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~305~^20.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~306~^4.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~307~^19.^2^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20134~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~20134~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~20134~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2013~ -~20134~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~20134~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20135~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~268~^1515.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~301~^27.^6^0.^~1~^~A~^^^1^23.^33.^4^25.^28.^~2, 3~^~06/01/2015~ -~20135~^~304~^104.^6^0.^~1~^~A~^^^1^82.^122.^4^102.^105.^~2, 3~^~06/01/2015~ -~20135~^~305~^287.^6^1.^~1~^~A~^^^1^234.^333.^4^283.^291.^~2, 3~^~06/01/2015~ -~20135~^~306~^366.^6^2.^~1~^~A~^^^1^294.^426.^4^360.^371.^~2, 3~^~06/01/2015~ -~20135~^~307~^11.^6^0.^~1~^~A~^^^1^8.^14.^4^10.^11.^~2, 3~^~06/01/2015~ -~20135~^~417~^59.^4^3.^~1~^~A~^^^1^32.^84.^2^42.^75.^~2, 3~^~06/01/2015~ -~20135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20135~^~432~^59.^4^3.^~1~^~A~^^^1^32.^84.^2^42.^75.^^~06/01/2015~ -~20135~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~301~^12.^6^0.^~1~^~A~^^^1^11.^15.^4^11.^13.^~2, 3~^~06/01/2015~ -~20136~^~304~^45.^6^0.^~1~^~A~^^^1^35.^56.^4^43.^46.^~2, 3~^~06/01/2015~ -~20136~^~305~^110.^6^2.^~1~^~A~^^^1^92.^132.^4^104.^115.^~2, 3~^~06/01/2015~ -~20136~^~306~^77.^6^3.^~1~^~A~^^^1^54.^108.^4^68.^85.^~2, 3~^~06/01/2015~ -~20136~^~307~^6.^6^0.^~1~^~A~^^^1^4.^9.^4^5.^6.^~1, 2, 3~^~06/01/2015~ -~20136~^~417~^20.^4^1.^~1~^~A~^^^1^10.^30.^2^14.^26.^~2, 3~^~06/01/2015~ -~20136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20136~^~432~^20.^4^1.^~1~^~A~^^^1^10.^30.^2^14.^26.^^~06/01/2015~ -~20136~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20137~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~268~^503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20137~^~301~^17.^3^2.^~1~^~A~^^^1^14.^23.^2^4.^29.^~2, 3~^~03/01/2007~ -~20137~^~304~^64.^3^12.^~1~^~A~^^^1^47.^88.^2^11.^117.^~2, 3~^~03/01/2007~ -~20137~^~305~^152.^3^29.^~1~^~A~^^^1^111.^209.^2^25.^278.^~2, 3~^~03/01/2007~ -~20137~^~306~^172.^3^25.^~1~^~A~^^^1^129.^216.^2^63.^279.^~2, 3~^~03/01/2007~ -~20137~^~307~^7.^3^3.^~1~^~A~^^^1^4.^13.^2^-6.^20.^~1, 2, 3~^~03/01/2007~ -~20137~^~318~^5.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~04/01/2007~ -~20137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20137~^~320~^0.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~04/01/2007~ -~20137~^~321~^3.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~322~^0.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~20137~^~334~^0.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~337~^0.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~338~^53.^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~417~^42.^3^3.^~1~^~A~^^^1^35.^48.^2^25.^57.^~2, 3~^~03/01/2007~ -~20137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20137~^~432~^42.^3^3.^~1~^~A~^^^1^35.^48.^2^25.^57.^~2, 3~^~03/01/2007~ -~20137~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20137~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20138~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20138~^~268~^1409.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20138~^~301~^22.^4^2.^~1~^~A~^^^2^19.^27.^1^-6.^50.^~2~^~06/01/2013~ -~20138~^~304~^130.^2^^~1~^~A~^^^1^117.^142.^^^^^~06/01/2013~ -~20138~^~305~^364.^2^^~1~^~A~^^^1^298.^429.^^^^^~06/01/2013~ -~20138~^~306~^403.^4^23.^~1~^~A~^^^2^369.^467.^1^108.^697.^~2~^~06/01/2013~ -~20138~^~307~^5.^4^0.^~1~^~A~^^^2^4.^6.^1^1.^9.^~2~^~06/01/2013~ -~20138~^~318~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~20138~^~338~^301.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2013~ -~20139~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20139~^~268~^552.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20139~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~304~^48.^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~305~^147.^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~306~^164.^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~318~^4.^0^^~4~^~BFSN~^~20138~^^^^^^^^^~04/01/2007~ -~20139~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20139~^~417~^11.^2^^~1~^~A~^^^1^10.^12.^^^^^~06/01/2013~ -~20139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20139~^~432~^11.^2^^~1~^~A~^^^1^10.^12.^^^^^~06/01/2013~ -~20139~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20139~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20140~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20140~^~268~^1414.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20140~^~301~^27.^3^0.^~1~^~A~^^^1^27.^28.^2^25.^29.^~4~^~04/01/2007~ -~20140~^~304~^136.^3^3.^~1~^~A~^^^1^129.^142.^2^119.^151.^~4~^~04/01/2007~ -~20140~^~305~^401.^3^25.^~1~^~A~^^^1^350.^430.^2^290.^511.^~4~^~04/01/2007~ -~20140~^~306~^388.^3^2.^~1~^~A~^^^1^384.^392.^2^378.^397.^~4~^~04/01/2007~ -~20140~^~307~^8.^3^2.^~1~^~A~^^^1^4.^11.^2^-1.^16.^~1, 4~^~04/01/2007~ -~20140~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~20140~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20140~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20140~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20140~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20140~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~20140~^~338~^169.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20140~^~417~^45.^3^6.^~1~^~A~^^^1^35.^57.^2^17.^72.^~4~^~04/01/2007~ -~20140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~20140~^~432~^45.^3^6.^~1~^~A~^^^1^35.^57.^2^17.^72.^~4~^~04/01/2007~ -~20140~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~20141~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20141~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20141~^~301~^10.^3^0.^~1~^~A~^^^1^10.^11.^2^9.^11.^~4~^~04/01/2007~ -~20141~^~304~^49.^3^1.^~1~^~A~^^^1^46.^51.^2^42.^55.^~4~^~04/01/2007~ -~20141~^~305~^150.^3^11.^~1~^~A~^^^1^128.^164.^2^102.^197.^~4~^~04/01/2007~ -~20141~^~306~^143.^3^5.^~1~^~A~^^^1^134.^153.^2^118.^166.^~4~^~04/01/2007~ -~20141~^~307~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~1, 4~^~04/01/2007~ -~20141~^~318~^4.^0^^~4~^~BFSN~^~20140~^^^^^^^^^~04/01/2007~ -~20141~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20141~^~320~^0.^0^^~4~^~BFSN~^~20140~^^^^^^^^^~04/01/2007~ -~20141~^~417~^13.^3^2.^~1~^~A~^^^1^10.^18.^2^2.^23.^~4~^~04/01/2007~ -~20141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20141~^~432~^13.^3^2.^~1~^~A~^^^1^10.^18.^2^2.^23.^~4~^~04/01/2007~ -~20141~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20141~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20142~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20142~^~268~^1536.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20142~^~301~^180.^3^3.^~1~^~A~^^^1^175.^187.^2^164.^195.^~2, 3~^~04/01/2007~ -~20142~^~304~^184.^3^3.^~1~^~A~^^^1^180.^190.^2^170.^197.^~2, 3~^~04/01/2007~ -~20142~^~305~^429.^3^18.^~1~^~A~^^^1^411.^465.^2^351.^506.^~2, 3~^~04/01/2007~ -~20142~^~306~^427.^3^13.^~1~^~A~^^^1^410.^454.^2^369.^485.^~2, 3~^~04/01/2007~ -~20142~^~307~^12.^3^2.^~1~^~A~^^^1^8.^18.^2^0.^23.^~2, 3~^~04/01/2007~ -~20142~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20142~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20142~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20142~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20142~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20142~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~20142~^~338~^66.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20143~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20143~^~268~^422.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20143~^~301~^49.^2^^~1~^~A~^^^1^49.^50.^1^^^^~01/01/2009~ -~20143~^~304~^50.^2^^~1~^~A~^^^1^48.^52.^1^^^^~01/01/2009~ -~20143~^~305~^120.^2^^~1~^~A~^^^1^112.^128.^1^^^^~01/01/2009~ -~20143~^~306~^107.^2^^~1~^~A~^^^1^104.^110.^1^^^^~01/01/2009~ -~20143~^~307~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~01/01/2009~ -~20143~^~318~^2.^0^^~4~^~BFSN~^~20142~^^^^^^^^^~04/01/2007~ -~20143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20143~^~320~^0.^0^^~4~^~BFSN~^~20142~^^^^^^^^^~04/01/2007~ -~20143~^~417~^18.^3^2.^~1~^~A~^^^1^15.^23.^2^7.^28.^~4~^~01/01/2009~ -~20143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20143~^~432~^18.^3^2.^~1~^~A~^^^1^15.^23.^2^7.^28.^~4~^~01/01/2009~ -~20143~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20310~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20310~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20310~^~301~^12.^42^0.^~1~^~A~^^^13^9.^17.^12^11.^13.^~2~^~11/01/2004~ -~20310~^~304~^21.^42^0.^~1~^~A~^^^13^11.^31.^12^19.^22.^~2~^~11/01/2004~ -~20310~^~305~^76.^42^3.^~1~^~A~^^^13^52.^109.^12^68.^84.^~2~^~11/01/2004~ -~20310~^~306~^38.^42^2.^~1~^~A~^^^13^18.^66.^12^33.^43.^~2~^~11/01/2004~ -~20310~^~307~^165.^1^^~1~^^^^^^^^^^^~11/01/2004~ -~20310~^~318~^21.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~319~^6.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~320~^6.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~321~^1.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~322~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~334~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~337~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~338~^38.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20310~^~417~^84.^3^8.^~1~^~A~^^^1^67.^94.^2^47.^120.^~2, 3~^~11/01/2004~ -~20310~^~431~^77.^0^^~4~^~O~^^^^^^^^^^~11/01/2004~ -~20310~^~432~^7.^12^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20310~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20310~^~601~^29.^3^1.^~1~^~A~^^^1^27.^33.^2^22.^36.^~2, 3~^~11/01/2004~ -~20314~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20314~^~268~^1527.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20314~^~301~^7.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~304~^127.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~305~^210.^5^28.^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~306~^287.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~307~^35.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20314~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~ -~20314~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20314~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20315~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~20315~^~268~^1524.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~20315~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~304~^110.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~305~^263.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~306~^381.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20316~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20316~^~268~^1510.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20316~^~301~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~304~^93.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~305~^272.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~306~^315.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~307~^5.^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20316~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20316~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20316~^~321~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~10/01/2002~ -~20316~^~322~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~10/01/2002~ -~20316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20316~^~334~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~10/01/2002~ -~20316~^~337~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~10/01/2002~ -~20316~^~338~^5.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~10/01/2002~ -~20316~^~417~^25.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20316~^~432~^25.^2^^~1~^^^^^^^^^^^~12/01/2006~ -~20316~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20317~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20317~^~268~^1517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20317~^~301~^138.^23^33.^~1~^~A~^^^4^53.^210.^3^32.^243.^~2~^~07/01/2014~ -~20317~^~304~^93.^4^8.^~1~^~A~^^^3^81.^110.^2^55.^130.^~2~^~12/01/2009~ -~20317~^~305~^231.^5^20.^~1~^~A~^^^4^178.^275.^3^167.^295.^~2~^~07/01/2014~ -~20317~^~306~^262.^8^26.^~1~^~A~^^^5^159.^311.^4^188.^336.^~2~^~07/01/2014~ -~20317~^~307~^5.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^8.^~2~^~12/01/2009~ -~20317~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20317~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20317~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20317~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20317~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20317~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~417~^162.^0^^~4~^~NR~^~20022~^^^^^^^^^~11/01/2016~ -~20317~^~431~^133.^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~20317~^~432~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~07/01/2014~ -~20317~^~435~^256.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~20317~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20320~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~20320~^~268~^1515.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20320~^~301~^6.^9^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~304~^127.^6^18.^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~305~^241.^3^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~306~^287.^6^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~307~^35.^6^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20320~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20320~^~321~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~03/01/2003~ -~20320~^~322~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~03/01/2003~ -~20320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20320~^~334~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~03/01/2003~ -~20320~^~337~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~03/01/2003~ -~20320~^~338~^5.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~03/01/2003~ -~20320~^~417~^25.^0^^~4~^^^^^^^^^^^~04/01/1989~ -~20320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20320~^~432~^25.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20320~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20320~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20321~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20321~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20321~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~301~^7.^51^0.^~1~^~A~^^^14^6.^11.^13^6.^7.^~2~^~05/01/2006~ -~20321~^~304~^18.^56^0.^~1~^~A~^^^14^14.^27.^13^16.^19.^~2~^~05/01/2006~ -~20321~^~305~^58.^56^2.^~1~^~A~^^^14^37.^87.^13^52.^64.^~2~^~05/01/2006~ -~20321~^~306~^44.^52^2.^~1~^~A~^^^14^24.^83.^13^38.^49.^~2~^~05/01/2006~ -~20321~^~307~^131.^5^8.^~1~^~A~^^^1^103.^150.^4^107.^154.^~2, 3~^~05/01/2006~ -~20321~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20321~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~321~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20321~^~322~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20321~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20321~^~334~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20321~^~337~^0.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20321~^~338~^7.^0^^~4~^~BFSN~^~20081~^^^^^^^^^~10/01/2002~ -~20321~^~417~^73.^18^3.^~1~^~A~^^^2^43.^98.^9^64.^81.^~2, 3~^~10/01/2004~ -~20321~^~431~^66.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~20321~^~432~^7.^22^0.^~1~^^^^^^^^^^^~10/01/2004~ -~20321~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20322~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20322~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20322~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20322~^~301~^3.^6^0.^~1~^~A~^^^2^2.^5.^3^1.^4.^~2, 3~^~12/01/2009~ -~20322~^~304~^32.^7^3.^~1~^~A~^^^2^18.^49.^4^22.^42.^~2, 3~^~12/01/2009~ -~20322~^~305~^99.^7^9.^~1~^~A~^^^2^63.^146.^4^71.^126.^~2, 3~^~12/01/2009~ -~20322~^~306~^142.^7^11.^~1~^~A~^^^2^95.^187.^4^110.^172.^~2, 3~^~12/01/2009~ -~20322~^~307~^7.^6^1.^~1~^~A~^^^2^4.^12.^4^2.^11.^~1, 2, 3~^~12/01/2009~ -~20322~^~318~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20322~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20322~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2009~ -~20322~^~338~^5.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20322~^~417~^209.^36^21.^~1~^~A~^^^4^62.^387.^21^165.^253.^~4~^~12/01/2009~ -~20322~^~431~^180.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20322~^~432~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~12/01/2009~ -~20322~^~435~^335.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~20322~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20323~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20323~^~268~^1397.^0^^~4~^^^^^^^^^^^ -~20323~^~301~^361.^16^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~304~^86.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~305~^804.^16^16.^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~306~^255.^3^48.^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~307~^1247.^3^156.^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20323~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~20323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20323~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~ -~20323~^~431~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20323~^~432~^57.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~435~^356.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20323~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20324~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20324~^~268~^1456.^0^^~4~^^^^^^^^^^^ -~20324~^~301~^299.^38^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~304~^54.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~305~^651.^37^13.^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~306~^207.^8^20.^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~307~^1319.^8^22.^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20324~^~320~^0.^1^^~1~^^^^^^^^^^^~05/01/2003~ -~20324~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20324~^~417~^264.^2^^~1~^~A~^^^1^254.^273.^^^^^~05/01/2003~ -~20324~^~431~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20324~^~432~^66.^10^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~435~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20324~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20325~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20325~^~268~^1484.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20325~^~301~^350.^20^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~304~^49.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~305~^623.^19^8.^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~306~^170.^4^7.^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~307~^1348.^4^47.^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20325~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~20325~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20325~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~ -~20325~^~431~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20325~^~432~^31.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~435~^375.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20325~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20330~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20330~^~268~^301.^0^^~4~^^^^^^^^^^^ -~20330~^~301~^10.^9^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~304~^16.^7^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~305~^35.^7^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~306~^9.^7^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~307~^345.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~20330~^~318~^110.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20330~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20330~^~417~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20330~^~432~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20330~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20345~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20345~^~268~^544.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20345~^~301~^10.^33^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~304~^12.^38^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~305~^43.^27^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~306~^35.^34^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~307~^382.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20345~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20345~^~321~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~322~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20345~^~334~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~337~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~338~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~417~^58.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20345~^~431~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20345~^~432~^3.^8^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20345~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20381~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20381~^~268~^1523.^0^^~4~^^^^^^^^^^^ -~20381~^~301~^252.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~304~^22.^129^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~305~^108.^47^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~306~^107.^94^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~307~^2.^82^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20381~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20381~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~ -~20381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20381~^~417~^183.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~05/01/2003~ -~20381~^~431~^154.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~05/01/2003~ -~20381~^~432~^29.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~05/01/2003~ -~20381~^~435~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20381~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20409~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20409~^~268~^1609.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20409~^~301~^35.^3^0.^~1~^~A~^^^1^34.^37.^2^31.^39.^~2, 3~^~11/01/2004~ -~20409~^~304~^58.^3^1.^~1~^~A~^^^1^56.^61.^2^51.^65.^~2, 3~^~11/01/2004~ -~20409~^~305~^241.^3^2.^~1~^~A~^^^1^236.^245.^2^229.^252.^~2, 3~^~11/01/2004~ -~20409~^~306~^244.^3^8.^~1~^~A~^^^1^236.^260.^2^209.^278.^~2, 3~^~11/01/2004~ -~20409~^~307~^21.^3^2.^~1~^~A~^^^1^16.^26.^2^8.^32.^~2, 3~^~11/01/2004~ -~20409~^~318~^62.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20409~^~319~^17.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20409~^~321~^2.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~322~^0.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~324~^11.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~20409~^~334~^1.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~337~^0.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~338~^110.^0^^~4~^~BFZN~^~20109~^^^^^^^^^~11/01/2002~ -~20409~^~417~^29.^12^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20409~^~432~^29.^12^6.^~1~^^^^^^^^^^^~03/01/2009~ -~20409~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20409~^~601~^84.^3^5.^~1~^~A~^^^1^73.^92.^2^59.^107.^~2, 3~^~11/01/2004~ -~20410~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20410~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~301~^12.^42^0.^~1~^~A~^^^13^9.^17.^12^11.^13.^~2~^~11/01/2004~ -~20410~^~304~^21.^42^0.^~1~^~A~^^^13^11.^31.^12^19.^22.^~2~^~11/01/2004~ -~20410~^~305~^76.^42^3.^~1~^~A~^^^13^52.^109.^12^68.^84.^~2~^~11/01/2004~ -~20410~^~306~^38.^42^2.^~1~^~A~^^^13^18.^66.^12^33.^43.^~2~^~11/01/2004~ -~20410~^~307~^5.^42^0.^~1~^~A~^^^13^1.^40.^12^2.^6.^~1, 2~^~11/01/2004~ -~20410~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~319~^6.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~321~^1.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~322~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~324~^4.^0^^~4~^~BFSN~^~20109~^^^^^^^^^~03/01/2009~ -~20410~^~334~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~337~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~338~^38.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20410~^~417~^7.^12^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20410~^~432~^7.^12^1.^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~601~^29.^3^1.^~1~^~A~^^^1^27.^33.^2^22.^36.^~2, 3~^~11/01/2004~ -~20420~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~268~^1553.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~301~^21.^4^0.^~1~^~A~^^^2^18.^24.^2^19.^23.^~2, 3~^~05/01/2006~ -~20420~^~304~^53.^5^1.^~1~^~A~^^^2^50.^56.^3^48.^56.^~2, 3~^~05/01/2006~ -~20420~^~305~^189.^5^4.^~1~^~A~^^^2^180.^199.^2^169.^208.^~2, 3~^~05/01/2006~ -~20420~^~306~^223.^5^3.^~1~^~A~^^^2^210.^235.^3^212.^233.^~2, 3~^~05/01/2006~ -~20420~^~307~^6.^6^1.^~1~^~A~^^^3^2.^10.^2^-2.^13.^~2~^~05/01/2006~ -~20420~^~318~^0.^0^^~4~^~BFZN~^~20120~^^^^^^^^^~03/01/2005~ -~20420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20420~^~320~^0.^0^^~4~^~BFZN~^~20120~^^^^^^^^^~03/01/2005~ -~20420~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20420~^~417~^18.^30^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20420~^~432~^18.^30^1.^~1~^^^^^^^^^^^~05/01/2006~ -~20420~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20421~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~20421~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~20421~^~268~^660.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~301~^7.^51^0.^~1~^~A~^^^14^6.^11.^13^6.^7.^~2~^~05/01/2006~ -~20421~^~304~^18.^56^0.^~1~^~A~^^^14^14.^27.^13^16.^19.^~2~^~05/01/2006~ -~20421~^~305~^58.^56^2.^~1~^~A~^^^14^37.^87.^13^52.^64.^~2~^~05/01/2006~ -~20421~^~306~^44.^52^2.^~1~^~A~^^^14^24.^83.^13^38.^49.^~2~^~05/01/2006~ -~20421~^~307~^1.^39^0.^~1~^~A~^^^12^0.^2.^11^0.^0.^~1, 2~^~03/01/2005~ -~20421~^~318~^0.^0^^~4~^~BFZN~^~20121~^^^^^^^^^~09/01/2015~ -~20421~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20421~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20421~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~338~^7.^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2015~ -~20421~^~417~^7.^22^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20421~^~432~^7.^22^0.^~1~^^^^^^^^^^^~05/01/2006~ -~20421~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20422~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20422~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20422~^~301~^3.^6^0.^~1~^~A~^^^2^2.^5.^3^1.^4.^~2, 3~^~12/01/2009~ -~20422~^~304~^32.^7^3.^~1~^~A~^^^2^18.^49.^4^22.^42.^~2, 3~^~12/01/2009~ -~20422~^~305~^99.^7^9.^~1~^~A~^^^2^63.^146.^4^71.^126.^~2, 3~^~12/01/2009~ -~20422~^~306~^142.^7^11.^~1~^~A~^^^2^95.^187.^4^110.^172.^~2, 3~^~12/01/2009~ -~20422~^~307~^7.^6^1.^~1~^~A~^^^2^4.^12.^4^2.^11.^~1, 2, 3~^~12/01/2009~ -~20422~^~318~^214.^3^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~20422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20422~^~320~^11.^3^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~20422~^~321~^97.^3^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~20422~^~322~^63.^3^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~20422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20422~^~334~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~05/01/2006~ -~20422~^~338~^1628.^5^272.^~1~^~A~^^^2^1355.^2120.^1^-1834.^5089.^~2~^~12/01/2009~ -~20422~^~417~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~04/01/2010~ -~20422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20422~^~432~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~06/01/2006~ -~20422~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~20422~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20444~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20444~^~268~^1527.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20444~^~301~^28.^22^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~304~^25.^13^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~305~^115.^15^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~306~^115.^17^10.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~307~^5.^10^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~318~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20444~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20444~^~321~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~322~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20444~^~334~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~337~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~338~^0.^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~417~^8.^5^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20444~^~432~^8.^5^0.^~1~^^^^^^^^^^^~12/01/2006~ -~20444~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20444~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20445~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20445~^~268~^544.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20445~^~301~^10.^33^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~304~^12.^38^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~305~^43.^27^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~306~^35.^34^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~307~^1.^13^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20445~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20445~^~321~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~322~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20445~^~334~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~337~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~338~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~417~^3.^8^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20445~^~432~^3.^8^0.^~1~^^^^^^^^^^^~12/01/2006~ -~20445~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20445~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20446~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20446~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20446~^~301~^71.^2^^~1~^~A~^^^2^55.^87.^^^^^~01/01/2010~ -~20446~^~304~^27.^2^^~1~^~A~^^^2^27.^27.^^^^^~01/01/2010~ -~20446~^~305~^153.^2^^~1~^~A~^^^2^150.^156.^^^^^~01/01/2010~ -~20446~^~306~^174.^2^^~1~^~A~^^^2^160.^187.^^^^^~01/01/2010~ -~20446~^~307~^2.^2^^~1~^~A~^^^2^1.^3.^^^^~1~^~01/01/2010~ -~20446~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20446~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20446~^~417~^8.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~20446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20446~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~20446~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20446~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20447~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20447~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20447~^~301~^19.^3^1.^~1~^~A~^^^1^16.^21.^2^13.^24.^~2, 3~^~03/01/2005~ -~20447~^~304~^9.^3^0.^~1~^~A~^^^1^8.^10.^2^5.^11.^~2, 3~^~03/01/2005~ -~20447~^~305~^55.^3^2.^~1~^~A~^^^1^51.^59.^2^45.^65.^~2, 3~^~03/01/2005~ -~20447~^~306~^56.^2^^~1~^~A~^^^1^55.^57.^1^^^^~03/01/2005~ -~20447~^~307~^2.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~03/01/2005~ -~20447~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20447~^~417~^3.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~20447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20447~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~20447~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20447~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20450~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20450~^~268~^1506.^0^^~4~^^^^^^^^^^^ -~20450~^~301~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~304~^35.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~305~^108.^4^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~306~^86.^5^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~307~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20450~^~417~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20450~^~432~^9.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20450~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20451~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20451~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20451~^~301~^3.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~304~^13.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~305~^37.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~306~^29.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~307~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20451~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~ -~20451~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20451~^~417~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20451~^~432~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20451~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20452~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20452~^~268~^1498.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20452~^~301~^3.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~304~^23.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~305~^95.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~306~^76.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~307~^1.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20452~^~417~^6.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20452~^~432~^6.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20452~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20453~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20453~^~268~^544.^0^^~4~^^^^^^^^^^^ -~20453~^~301~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~304~^8.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~305~^33.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~306~^26.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~307~^0.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20453~^~417~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20453~^~432~^2.^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20453~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20466~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20466~^~268~^1506.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~20466~^~301~^17.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~304~^47.^6^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~305~^136.^4^12.^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~306~^186.^4^9.^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~307~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~318~^0.^0^^~7~^^^^^^^^^^^~11/01/1993~ -~20466~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20466~^~320~^0.^0^^~7~^^^^^^^^^^^~06/01/2002~ -~20466~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20466~^~417~^72.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20466~^~432~^72.^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~20466~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/1989~ -~20481~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20481~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20481~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20481~^~268~^1523.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20481~^~301~^15.^113^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~304~^22.^129^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~305~^108.^47^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~306~^107.^94^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~307~^2.^82^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20481~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20481~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20481~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20481~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~417~^26.^15^3.^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20481~^~432~^26.^15^3.^~1~^^^^^^^^^^^~12/01/2006~ -~20481~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20481~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20510~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20510~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20510~^~301~^12.^42^0.^~1~^~A~^^^13^9.^17.^12^11.^13.^~2~^~11/01/2004~ -~20510~^~304~^21.^42^0.^~1~^~A~^^^13^11.^31.^12^19.^22.^~2~^~11/01/2004~ -~20510~^~305~^76.^42^3.^~1~^~A~^^^13^52.^109.^12^68.^84.^~2~^~11/01/2004~ -~20510~^~306~^38.^42^2.^~1~^~A~^^^13^18.^66.^12^33.^43.^~2~^~11/01/2004~ -~20510~^~307~^165.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~318~^21.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~319~^6.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~320~^6.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~321~^1.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~322~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~334~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~337~^0.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~338~^38.^0^^~4~^~BFZN~^~20110~^^^^^^^^^~11/01/2004~ -~20510~^~417~^7.^12^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20510~^~432~^7.^12^1.^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20510~^~601~^29.^3^1.^~1~^~A~^^^1^27.^33.^2^22.^36.^~2, 3~^~11/01/2004~ -~20521~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~301~^7.^51^0.^~1~^~A~^^^14^6.^11.^13^6.^7.^~2~^~05/01/2006~ -~20521~^~304~^18.^56^0.^~1~^~A~^^^14^14.^27.^13^16.^19.^~2~^~05/01/2006~ -~20521~^~305~^58.^56^2.^~1~^~A~^^^14^37.^87.^13^52.^64.^~2~^~05/01/2006~ -~20521~^~306~^44.^52^2.^~1~^~A~^^^14^24.^83.^13^38.^49.^~2~^~05/01/2006~ -~20521~^~307~^131.^5^8.^~1~^~A~^^^1^103.^150.^4^107.^154.^~2, 3~^~05/01/2006~ -~20521~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20521~^~417~^7.^22^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20521~^~432~^7.^0^^~4~^~BFZN~^~20321~^^^^^^^^^~05/01/2006~ -~20521~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20522~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20522~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20522~^~301~^3.^6^0.^~1~^~A~^^^2^2.^5.^3^1.^4.^~2, 3~^~12/01/2009~ -~20522~^~304~^32.^7^3.^~1~^~A~^^^2^18.^49.^4^22.^42.^~2, 3~^~12/01/2009~ -~20522~^~305~^99.^7^9.^~1~^~A~^^^2^63.^146.^4^71.^126.^~2, 3~^~12/01/2009~ -~20522~^~306~^142.^7^11.^~1~^~A~^^^2^95.^187.^4^110.^172.^~2, 3~^~12/01/2009~ -~20522~^~307~^7.^6^1.^~1~^~A~^^^2^4.^12.^4^2.^11.^~1, 2, 3~^~12/01/2009~ -~20522~^~318~^3.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20522~^~320~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~321~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~322~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20522~^~334~^1.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~337~^0.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~338~^5.^0^^~4~^~BFZN~^~20322~^^^^^^^^^~05/01/2006~ -~20522~^~417~^30.^4^^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~04/01/2010~ -~20522~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20522~^~432~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~12/01/2009~ -~20522~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~20522~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20523~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20523~^~268~^686.^0^^~4~^^^^^^^^^^^ -~20523~^~301~^10.^4^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~304~^30.^3^6.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~305~^50.^3^24.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~306~^42.^3^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~307~^5.^3^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20523~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20523~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~ -~20523~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20523~^~417~^82.^0^^~4~^~BFSY~^^^^^^^^^^~09/01/1997~ -~20523~^~431~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~20523~^~432~^11.^3^4.^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~20523~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20545~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20545~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20545~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20545~^~268~^544.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20545~^~301~^10.^33^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~304~^12.^38^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~305~^43.^27^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~306~^35.^34^1.^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~307~^382.^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20545~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20545~^~321~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~322~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20545~^~334~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~337~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~338~^0.^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~417~^3.^8^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~20545~^~432~^3.^8^0.^~1~^^^^^^^^^^^~12/01/2006~ -~20545~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20545~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20581~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20581~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20581~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20581~^~268~^1523.^0^^~4~^^^^^^^^^^^ -~20581~^~301~^15.^113^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~304~^22.^129^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~305~^108.^47^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~306~^107.^94^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~307~^2.^82^0.^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~318~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~20581~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20581~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~20581~^~338~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20581~^~417~^183.^9^5.^~1~^~A~^^^1^160.^203.^8^170.^196.^~2, 3~^~10/01/2002~ -~20581~^~431~^154.^9^5.^~1~^~A~^^^1^131.^170.^8^141.^167.^~2, 3~^~10/01/2002~ -~20581~^~432~^29.^9^1.^~1~^~AS~^^^1^22.^34.^8^25.^32.^~2, 3~^~10/01/2002~ -~20581~^~435~^291.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~20581~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20622~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20622~^~268~^1565.^0^^~4~^^^^^^^^^^^ -~20622~^~301~^39.^19^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~304~^65.^6^12.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~305~^163.^5^44.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~306~^201.^6^26.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~307~^8.^10^2.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20622~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~20622~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20622~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20622~^~417~^278.^0^^~4~^~BFZN~^~20120~^^^^^^^^^~05/01/2003~ -~20622~^~431~^258.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20622~^~432~^20.^5^5.^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~435~^458.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~20622~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20623~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20623~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~268~^1533.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20623~^~301~^20.^4^1.^~1~^~A~^^^1^18.^25.^3^15.^25.^~2, 3~^~08/01/2004~ -~20623~^~304~^20.^4^2.^~1~^~A~^^^1^16.^24.^3^13.^26.^~2, 3~^~08/01/2004~ -~20623~^~305~^85.^4^5.^~1~^~A~^^^1^75.^101.^3^66.^103.^~2, 3~^~08/01/2004~ -~20623~^~306~^131.^4^4.^~1~^~A~^^^1^124.^143.^3^117.^144.^~2, 3~^~08/01/2004~ -~20623~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20623~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20623~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20623~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~08/01/2004~ -~20623~^~431~^140.^0^^~4~^~NR~^^^^^^^^^^~12/01/2010~ -~20623~^~432~^31.^0^^~4~^~BFZN~^~20624~^^^^^^^^^~09/01/2004~ -~20623~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~20623~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~268~^1533.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~301~^20.^4^1.^~1~^~A~^^^1^18.^25.^3^15.^25.^~2, 3~^~08/01/2004~ -~20624~^~304~^20.^4^2.^~1~^~A~^^^1^16.^24.^3^13.^26.^~2, 3~^~08/01/2004~ -~20624~^~305~^85.^4^5.^~1~^~A~^^^1^75.^101.^3^66.^103.^~2, 3~^~08/01/2004~ -~20624~^~306~^131.^4^4.^~1~^~A~^^^1^124.^143.^3^117.^144.^~2, 3~^~08/01/2004~ -~20624~^~307~^2.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~07/01/2005~ -~20624~^~318~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~07/01/2007~ -~20624~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~320~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~07/01/2007~ -~20624~^~321~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~09/01/2004~ -~20624~^~322~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~09/01/2004~ -~20624~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20624~^~334~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~09/01/2004~ -~20624~^~337~^0.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~09/01/2004~ -~20624~^~338~^18.^0^^~4~^~BFZN~^~20481~^^^^^^^^^~09/01/2004~ -~20624~^~417~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^~2, 3~^~08/01/2004~ -~20624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~432~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^^~07/01/2007~ -~20624~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~268~^1530.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~301~^20.^3^1.^~1~^~A~^^^1^19.^23.^2^15.^24.^~2, 3~^~09/01/2004~ -~20628~^~304~^25.^3^1.^~1~^~A~^^^1^23.^27.^2^20.^29.^~2, 3~^~09/01/2004~ -~20628~^~305~^107.^3^2.^~1~^~A~^^^1^104.^112.^2^96.^117.^~2, 3~^~09/01/2004~ -~20628~^~306~^149.^3^2.^~1~^~A~^^^1^145.^152.^2^139.^157.^~2, 3~^~09/01/2004~ -~20628~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20628~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20628~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20628~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~09/01/2004~ -~20628~^~431~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~432~^31.^0^^~4~^~BFZN~^~20629~^^^^^^^^^~09/01/2004~ -~20628~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~268~^1530.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~301~^20.^3^1.^~1~^~A~^^^1^19.^23.^2^15.^24.^~2, 3~^~09/01/2004~ -~20629~^~304~^25.^3^1.^~1~^~A~^^^1^23.^27.^2^20.^29.^~2, 3~^~09/01/2004~ -~20629~^~305~^107.^3^2.^~1~^~A~^^^1^104.^112.^2^96.^117.^~2, 3~^~09/01/2004~ -~20629~^~306~^149.^3^2.^~1~^~A~^^^1^145.^152.^2^139.^157.^~2, 3~^~09/01/2004~ -~20629~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20629~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20629~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~417~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^~2, 3~^~09/01/2004~ -~20629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~432~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^^~07/01/2007~ -~20629~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20630~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~268~^1530.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~301~^20.^3^1.^~1~^~A~^^^1^19.^23.^2^15.^24.^~2, 3~^~10/01/2004~ -~20630~^~304~^25.^3^1.^~1~^~A~^^^1^23.^27.^2^20.^29.^~2, 3~^~10/01/2004~ -~20630~^~305~^107.^3^2.^~1~^~A~^^^1^104.^112.^2^96.^117.^~2, 3~^~10/01/2004~ -~20630~^~306~^149.^3^2.^~1~^~A~^^^1^145.^152.^2^139.^157.^~2, 3~^~10/01/2004~ -~20630~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20630~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20630~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20630~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~10/01/2004~ -~20630~^~431~^140.^0^^~4~^~NR~^^^^^^^^^^~07/01/2007~ -~20630~^~432~^31.^0^^~4~^~BFZN~^~20629~^^^^^^^^^~10/01/2004~ -~20630~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~268~^1518.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~301~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^20.^~2, 3~^~09/01/2004~ -~20634~^~304~^30.^4^1.^~1~^~A~^^^1^28.^33.^3^26.^33.^~2, 3~^~09/01/2004~ -~20634~^~305~^112.^4^2.^~1~^~A~^^^1^107.^119.^3^104.^119.^~2, 3~^~09/01/2004~ -~20634~^~306~^138.^4^2.^~1~^~A~^^^1^133.^144.^3^130.^145.^~2, 3~^~09/01/2004~ -~20634~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20634~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20634~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20634~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~09/01/2004~ -~20634~^~431~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~432~^31.^0^^~4~^~BFZN~^~20635~^^^^^^^^^~09/01/2004~ -~20634~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~268~^1518.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~301~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^20.^~2, 3~^~09/01/2004~ -~20635~^~304~^30.^4^1.^~1~^~A~^^^1^28.^33.^3^26.^33.^~2, 3~^~09/01/2004~ -~20635~^~305~^112.^4^2.^~1~^~A~^^^1^107.^119.^3^104.^119.^~2, 3~^~09/01/2004~ -~20635~^~306~^138.^4^2.^~1~^~A~^^^1^133.^144.^3^130.^145.^~2, 3~^~09/01/2004~ -~20635~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20635~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20635~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~417~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^~2, 3~^~09/01/2004~ -~20635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~432~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^^~07/01/2007~ -~20635~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20636~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~268~^1518.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~301~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^20.^~2, 3~^~10/01/2004~ -~20636~^~304~^30.^4^1.^~1~^~A~^^^1^28.^33.^3^26.^33.^~2, 3~^~10/01/2004~ -~20636~^~305~^112.^4^2.^~1~^~A~^^^1^107.^119.^3^104.^119.^~2, 3~^~10/01/2004~ -~20636~^~306~^138.^4^2.^~1~^~A~^^^1^133.^144.^3^130.^145.^~2, 3~^~10/01/2004~ -~20636~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20636~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20636~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20636~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~10/01/2004~ -~20636~^~431~^140.^0^^~4~^~NR~^^^^^^^^^^~07/01/2007~ -~20636~^~432~^31.^0^^~4~^~BFZN~^~20635~^^^^^^^^^~10/01/2004~ -~20636~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20640~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20640~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~301~^24.^4^4.^~1~^~A~^^^1^17.^37.^3^9.^38.^~2, 3~^~09/01/2004~ -~20640~^~304~^35.^4^2.^~1~^~A~^^^1^31.^42.^3^26.^43.^~2, 3~^~09/01/2004~ -~20640~^~305~^119.^4^3.^~1~^~A~^^^1^110.^124.^3^109.^129.^~2, 3~^~09/01/2004~ -~20640~^~306~^128.^4^4.^~1~^~A~^^^1^117.^138.^3^113.^142.^~2, 3~^~09/01/2004~ -~20640~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20640~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20640~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20640~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20640~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~09/01/2004~ -~20640~^~431~^140.^0^^~4~^~NR~^^^^^^^^^^~07/01/2007~ -~20640~^~432~^31.^0^^~4~^~BFZN~^~20641~^^^^^^^^^~09/01/2004~ -~20640~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~301~^24.^4^4.^~1~^~A~^^^1^17.^37.^3^9.^38.^~2, 3~^~09/01/2004~ -~20641~^~304~^35.^4^2.^~1~^~A~^^^1^31.^42.^3^26.^43.^~2, 3~^~09/01/2004~ -~20641~^~305~^119.^4^3.^~1~^~A~^^^1^110.^124.^3^109.^129.^~2, 3~^~09/01/2004~ -~20641~^~306~^128.^4^4.^~1~^~A~^^^1^117.^138.^3^113.^142.^~2, 3~^~09/01/2004~ -~20641~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20641~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20641~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~417~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^~2, 3~^~09/01/2004~ -~20641~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~432~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^^~07/01/2007~ -~20641~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~301~^17.^4^0.^~1~^~A~^^^1^16.^19.^3^14.^18.^~2, 3~^~09/01/2004~ -~20645~^~304~^38.^4^1.^~1~^~A~^^^1^36.^42.^3^33.^42.^~2, 3~^~09/01/2004~ -~20645~^~305~^128.^4^1.^~1~^~A~^^^1^124.^130.^3^123.^132.^~2, 3~^~09/01/2004~ -~20645~^~306~^120.^4^3.^~1~^~A~^^^1^116.^132.^3^107.^132.^~2, 3~^~09/01/2004~ -~20645~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20645~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20645~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~417~^170.^27^6.^~1~^~A~^^^1^77.^248.^26^157.^183.^~2, 3~^~09/01/2004~ -~20645~^~431~^140.^0^^~4~^~NR~^^^^^^^^^^~07/01/2007~ -~20645~^~432~^31.^0^^~4~^~BFZN~^~20646~^^^^^^^^^~09/01/2004~ -~20645~^~435~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~301~^17.^4^0.^~1~^~A~^^^1^16.^19.^3^14.^18.^~2, 3~^~09/01/2004~ -~20646~^~304~^38.^4^1.^~1~^~A~^^^1^36.^42.^3^33.^42.^~2, 3~^~09/01/2004~ -~20646~^~305~^128.^4^1.^~1~^~A~^^^1^124.^130.^3^123.^132.^~2, 3~^~09/01/2004~ -~20646~^~306~^120.^4^3.^~1~^~A~^^^1^116.^132.^3^107.^132.^~2, 3~^~09/01/2004~ -~20646~^~307~^2.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~07/01/2005~ -~20646~^~318~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~320~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~321~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~322~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~20646~^~334~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~337~^0.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~338~^18.^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~417~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^~2, 3~^~09/01/2004~ -~20646~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~432~^31.^27^1.^~1~^~A~^^^1^15.^55.^26^27.^33.^^~07/01/2007~ -~20646~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20647~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20647~^~268~^1597.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20647~^~301~^14.^6^2.^~1~^~A~^^^2^10.^17.^1^-14.^43.^~2~^~06/01/2010~ -~20647~^~304~^119.^7^3.^~1~^~A~^^^2^101.^143.^1^68.^169.^~2~^~06/01/2010~ -~20647~^~305~^285.^7^9.^~1~^~A~^^^2^251.^336.^1^162.^406.^~2~^~06/01/2010~ -~20647~^~306~^224.^6^6.^~1~^~A~^^^2^199.^244.^1^143.^304.^~2~^~06/01/2010~ -~20647~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~417~^42.^5^12.^~1~^~A~^^^2^26.^67.^1^-122.^207.^~2~^~06/01/2010~ -~20647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~20647~^~432~^42.^5^12.^~1~^~A~^^^2^26.^67.^1^-122.^207.^~2~^~06/01/2010~ -~20647~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20648~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~301~^12.^10^0.^~1~^~A~^^^3^6.^17.^2^10.^13.^~2~^~06/01/2010~ -~20648~^~304~^123.^9^4.^~1~^~A~^^^3^102.^132.^2^104.^141.^~2~^~04/01/2014~ -~20648~^~305~^278.^9^9.^~1~^~A~^^^3^255.^306.^2^235.^321.^~2~^~04/01/2014~ -~20648~^~306~^324.^9^13.^~1~^~A~^^^3^288.^358.^2^265.^382.^~2~^~04/01/2014~ -~20648~^~307~^3.^5^1.^~1~^~A~^^^2^1.^4.^1^-11.^16.^~1, 2~^~04/01/2014~ -~20648~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20648~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~04/01/2014~ -~20648~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20648~^~417~^25.^6^8.^~1~^~A~^^^2^11.^43.^1^-80.^130.^~2~^~06/01/2010~ -~20648~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~20648~^~432~^25.^6^8.^~1~^~A~^^^2^11.^43.^1^-80.^130.^^~06/01/2010~ -~20648~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20649~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~268~^1391.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~301~^33.^24^0.^~1~^~A~^^^1^25.^43.^23^31.^34.^~4~^~07/01/2011~ -~20649~^~304~^117.^24^1.^~1~^~A~^^^1^98.^140.^23^113.^120.^~4~^~07/01/2011~ -~20649~^~305~^323.^24^7.^~1~^~A~^^^1^220.^376.^23^308.^337.^~4~^~07/01/2011~ -~20649~^~306~^394.^24^5.^~1~^~A~^^^1^359.^464.^23^382.^406.^~4~^~07/01/2011~ -~20649~^~307~^3.^5^1.^~1~^~A~^^^1^1.^10.^4^0.^7.^~4~^~07/01/2011~ -~20649~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~20649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~417~^28.^24^1.^~1~^~A~^^^1^14.^40.^23^25.^30.^~4~^~07/01/2011~ -~20649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~432~^28.^24^1.^~1~^~A~^^^1^14.^40.^23^25.^30.^~4~^~07/01/2011~ -~20649~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20650~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~268~^1492.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~305~^87.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~306~^145.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20651~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20651~^~268~^614.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20651~^~301~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~03/01/2015~ -~20651~^~304~^39.^6^1.^~1~^~A~^^^1^34.^42.^5^35.^42.^~2, 3~^~03/01/2015~ -~20651~^~305~^96.^6^2.^~1~^~A~^^^1^91.^105.^5^90.^101.^~2, 3~^~03/01/2015~ -~20651~^~306~^61.^6^4.^~1~^~A~^^^1^46.^74.^5^50.^71.^~2, 3~^~03/01/2015~ -~20651~^~307~^4.^6^0.^~1~^~A~^^^1^4.^5.^5^3.^4.^~1, 2, 3~^~03/01/2015~ -~20651~^~417~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~03/01/2015~ -~20651~^~432~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^^~03/01/2015~ -~20652~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20652~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20652~^~301~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~06/01/2015~ -~20652~^~304~^41.^3^1.^~1~^~A~^^^1^39.^43.^2^35.^45.^~2, 3~^~06/01/2015~ -~20652~^~305~^97.^3^2.^~1~^~A~^^^1^92.^101.^2^85.^108.^~2, 3~^~06/01/2015~ -~20652~^~306~^71.^3^1.^~1~^~A~^^^1^68.^74.^2^63.^78.^~2, 3~^~06/01/2015~ -~20652~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~06/01/2015~ -~20652~^~417~^38.^3^4.^~1~^~A~^^^1^32.^46.^2^20.^55.^~2, 3~^~06/01/2015~ -~20652~^~431~^18.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~20652~^~432~^20.^0^^~4~^~BFZN~^~20136~^^^^^^^^^~06/01/2015~ -~20652~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~268~^1509.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~301~^25.^3^0.^~1~^~A~^^^1^23.^26.^2^21.^28.^~2, 3~^~06/01/2015~ -~20653~^~304~^94.^3^0.^~1~^~A~^^^1^93.^94.^2^92.^94.^~2, 3~^~06/01/2015~ -~20653~^~305~^252.^3^7.^~1~^~A~^^^1^243.^268.^2^218.^286.^~2, 3~^~06/01/2015~ -~20653~^~306~^318.^3^8.^~1~^~A~^^^1^303.^333.^2^280.^354.^~2, 3~^~06/01/2015~ -~20653~^~307~^12.^3^3.^~1~^~A~^^^1^9.^19.^2^-1.^26.^~2, 3~^~06/01/2015~ -~20653~^~417~^114.^3^5.^~1~^~A~^^^1^105.^124.^2^90.^137.^~2, 3~^~06/01/2015~ -~20653~^~431~^55.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~20653~^~432~^59.^0^^~4~^~BFZN~^~20135~^^^^^^^^^~06/01/2015~ -~20653~^~435~^153.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~268~^577.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~301~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^4.^5.^~2, 3~^~06/01/2015~ -~20654~^~304~^36.^6^2.^~1~^~A~^^^1^27.^45.^5^28.^42.^~2, 3~^~06/01/2015~ -~20654~^~305~^87.^6^5.^~1~^~A~^^^1^65.^103.^5^73.^101.^~2, 3~^~06/01/2015~ -~20654~^~306~^25.^6^2.^~1~^~A~^^^1^16.^36.^5^17.^31.^~2, 3~^~06/01/2015~ -~20654~^~307~^4.^6^0.^~1~^~A~^^^1^4.^4.^5^3.^3.^~1, 2, 3~^~06/01/2015~ -~20654~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~321~^0.^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~322~^0.^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~324~^0.^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~334~^0.^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~338~^0.^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~417~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~432~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^^~06/01/2015~ -~20654~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~301~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^4.^8.^~2, 3~^~06/01/2015~ -~20655~^~304~^41.^3^0.^~1~^~A~^^^1^40.^42.^2^38.^44.^~2, 3~^~06/01/2015~ -~20655~^~305~^91.^3^2.^~1~^~A~^^^1^88.^97.^2^78.^103.^~2, 3~^~06/01/2015~ -~20655~^~306~^63.^3^2.^~1~^~A~^^^1^58.^67.^2^52.^74.^~2, 3~^~06/01/2015~ -~20655~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^3.^~1, 2, 3~^~06/01/2015~ -~20655~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~20655~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~20655~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20655~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20655~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~334~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20655~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20655~^~338~^131.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20655~^~417~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~06/01/2015~ -~20655~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~20655~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20656~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20656~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~304~^52.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~305~^132.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~306~^55.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~268~^748.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~301~^2.^3^0.^~1~^~A~^^^1^1.^2.^1^1.^1.^~2, 3~^~06/01/2015~ -~20657~^~304~^11.^3^0.^~1~^~A~^^^1^10.^12.^1^8.^12.^~2, 3~^~06/01/2015~ -~20657~^~305~^33.^3^0.^~1~^~A~^^^1^33.^34.^1^29.^36.^~2, 3~^~06/01/2015~ -~20657~^~306~^24.^3^0.^~1~^~A~^^^1^23.^25.^1^23.^24.^~2, 3~^~06/01/2015~ -~20657~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^1^3.^3.^~1, 2, 3~^~06/01/2015~ -~20657~^~318~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~322~^21.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~20657~^~338~^539.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~417~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~432~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^^~06/01/2015~ -~20657~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~21003~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~21003~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21003~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21003~^~268~^1276.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~21003~^~301~^126.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~304~^16.^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~305~^159.^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~306~^167.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~307~^844.^1^^~1~^^^^^^^^^^^~08/01/2012~ -~21003~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21003~^~319~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~320~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21003~^~324~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21003~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21003~^~338~^107.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21003~^~417~^40.^0^^~4~^~RK~^^^^^^^^^^~02/01/1998~ -~21003~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~21003~^~432~^20.^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21003~^~601~^235.^3^32.^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21004~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21004~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21004~^~268~^973.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21004~^~301~^115.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~304~^16.^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~305~^165.^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~306~^166.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~307~^1093.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21004~^~318~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21004~^~319~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21004~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21004~^~324~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21004~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21004~^~338~^108.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21004~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~02/01/1998~ -~21004~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~21004~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21004~^~601~^156.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21005~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~21005~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~21005~^~268~^1305.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~301~^51.^4^2.^~1~^~A~^^^1^46.^56.^3^43.^57.^~2, 3~^~09/01/2006~ -~21005~^~304~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^12.^14.^~2, 3~^~09/01/2006~ -~21005~^~305~^312.^4^6.^~1~^~A~^^^1^295.^324.^3^292.^330.^~2, 3~^~09/01/2006~ -~21005~^~306~^149.^4^4.^~1~^~A~^^^1^140.^163.^3^133.^164.^~2, 3~^~09/01/2006~ -~21005~^~307~^672.^4^22.^~1~^~A~^^^1^611.^717.^3^601.^742.^~2, 3~^~09/01/2006~ -~21005~^~318~^203.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~319~^39.^4^3.^~1~^~A~^^^1^31.^46.^3^29.^49.^~2, 3~^~09/01/2006~ -~21005~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~321~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~324~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~21005~^~338~^87.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~417~^42.^4^4.^~1~^~A~^^^1^31.^51.^3^28.^56.^~2, 3~^~09/01/2006~ -~21005~^~431~^34.^4^3.^~1~^~A~^^^1^25.^43.^3^21.^45.^~2, 3~^~09/01/2006~ -~21005~^~432~^9.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21005~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~601~^161.^4^6.^~1~^~A~^^^1^149.^177.^3^139.^183.^~2, 3~^~09/01/2006~ -~21007~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~262~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~263~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~301~^103.^4^2.^~1~^~A~^^^1^96.^107.^3^95.^110.^~2, 3~^~09/01/2006~ -~21007~^~304~^15.^4^0.^~1~^~A~^^^1^12.^16.^3^12.^17.^~2, 3~^~09/01/2006~ -~21007~^~305~^363.^4^14.^~1~^~A~^^^1^318.^380.^3^315.^410.^~2, 3~^~09/01/2006~ -~21007~^~306~^131.^4^7.^~1~^~A~^^^1^110.^145.^3^107.^154.^~2, 3~^~09/01/2006~ -~21007~^~307~^816.^4^35.^~1~^~A~^^^1^720.^884.^3^703.^928.^~2, 3~^~09/01/2006~ -~21007~^~318~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~319~^75.^4^7.^~1~^~A~^^^1^57.^91.^3^51.^98.^~2, 3~^~09/01/2006~ -~21007~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~321~^23.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~322~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~324~^21.^0^^~4~^~BFFN~^~21003~^^^^^^^^^~03/01/2009~ -~21007~^~334~^6.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~337~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~338~^270.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~417~^48.^4^3.^~1~^~A~^^^1^40.^56.^3^35.^59.^~2, 3~^~09/01/2006~ -~21007~^~431~^39.^4^2.^~1~^~A~^^^1^34.^47.^3^30.^48.^~2, 3~^~09/01/2006~ -~21007~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21007~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~601~^166.^4^5.^~1~^~A~^^^1^151.^179.^3^146.^184.^~2, 3~^~09/01/2006~ -~21008~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~21008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21008~^~268~^1431.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~21008~^~301~^142.^4^19.^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~304~^20.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~305~^490.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~306~^174.^4^14.^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~307~^974.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21008~^~318~^118.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~21008~^~319~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~320~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~321~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~324~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21008~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~02/01/1998~ -~21008~^~431~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~21008~^~432~^7.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21008~^~601~^22.^3^4.^~1~^^^^^^^^^^^~09/01/1988~ -~21009~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~268~^1552.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~301~^47.^4^2.^~1~^~A~^^^1^43.^54.^3^38.^56.^~2, 3~^~09/01/2006~ -~21009~^~304~^13.^4^0.^~1~^~A~^^^1^13.^13.^3^12.^13.^~2, 3~^~09/01/2006~ -~21009~^~305~^341.^4^7.^~1~^~A~^^^1^318.^353.^3^315.^365.^~2, 3~^~09/01/2006~ -~21009~^~306~^153.^4^4.^~1~^~A~^^^1^139.^159.^3^138.^168.^~2, 3~^~09/01/2006~ -~21009~^~307~^814.^4^6.^~1~^~A~^^^1^796.^825.^3^793.^834.^~2, 3~^~09/01/2006~ -~21009~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~321~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~324~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~417~^49.^4^4.^~1~^~A~^^^1^41.^62.^3^33.^63.^~2, 3~^~09/01/2006~ -~21009~^~431~^38.^4^5.^~1~^~A~^^^1^29.^51.^3^21.^53.^~2, 3~^~11/01/2006~ -~21009~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21009~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~601~^28.^4^0.^~1~^~A~^^^1^26.^31.^3^25.^31.^~2, 3~^~09/01/2006~ -~21010~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~268~^1255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~301~^44.^3^3.^~1~^~A~^^^1^38.^51.^2^27.^60.^~2, 3~^~05/01/2015~ -~21010~^~304~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^13.^21.^~2, 3~^~05/01/2015~ -~21010~^~305~^355.^3^8.^~1~^~A~^^^1^339.^367.^2^319.^390.^~2, 3~^~05/01/2015~ -~21010~^~306~^206.^3^6.^~1~^~A~^^^1^193.^214.^2^177.^235.^~2, 3~^~05/01/2015~ -~21010~^~307~^868.^3^11.^~1~^~A~^^^1^846.^882.^2^819.^916.^~2, 3~^~05/01/2015~ -~21010~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~319~^10.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~417~^64.^2^^~1~^~A~^^^1^57.^71.^1^^^^~05/01/2015~ -~21010~^~431~^36.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21010~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21010~^~601~^24.^3^1.^~1~^~A~^^^1^21.^26.^2^16.^32.^~2, 3~^~06/01/2015~ -~21012~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~21012~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~268~^1210.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~21012~^~301~^146.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~305~^217.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~306~^160.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~307~^602.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~318~^638.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21012~^~319~^173.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~320~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21012~^~321~^35.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~324~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~334~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~338~^196.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~417~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~431~^24.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~432~^27.^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21012~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21012~^~601~^170.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21013~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~268~^1093.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~301~^95.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~304~^17.^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~305~^221.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~306~^179.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~307~^711.^3^10.^~1~^^^^^^^^^^^~03/01/2015~ -~21013~^~318~^529.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~319~^144.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~320~^146.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~321~^29.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~324~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~338~^144.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~417~^42.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~431~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~601~^140.^3^21.^~1~^^^^^^^^^^^~09/01/1988~ -~21014~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~262~^0.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~263~^0.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~268~^1289.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~301~^90.^6^2.^~1~^~A~^^^1^83.^101.^5^82.^96.^~2, 3~^~09/01/1988~ -~21014~^~304~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^16.^17.^~2, 3~^~04/01/2013~ -~21014~^~305~^138.^6^2.^~1~^~A~^^^1^131.^146.^5^131.^144.^~2, 3~^~04/01/2013~ -~21014~^~306~^158.^6^2.^~1~^~A~^^^1^148.^168.^5^150.^165.^~2, 3~^~04/01/2013~ -~21014~^~307~^577.^6^7.^~1~^~A~^^^1^559.^613.^5^556.^597.^~2, 3~^~04/01/2013~ -~21014~^~318~^622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~319~^170.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~320~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~321~^29.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~322~^0.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~324~^27.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~334~^8.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~337~^0.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~338~^336.^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~417~^50.^3^1.^~1~^~A~^^^1^48.^52.^2^44.^55.^~2, 3~^~04/01/2013~ -~21014~^~431~^34.^0^^~4~^~BFZN~^~21005~^^^^^^^^^~04/01/2013~ -~21014~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~601~^123.^3^7.^~1~^~A~^^^1^112.^137.^2^91.^155.^~2, 3~^~04/01/2013~ -~21018~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~21018~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~21018~^~268~^887.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~21018~^~301~^57.^6^4.^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~304~^14.^4^0.^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~305~^242.^4^10.^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~306~^147.^6^12.^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~307~^187.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21018~^~318~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21018~^~319~^171.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~320~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21018~^~321~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~324~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~338~^233.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21018~^~601~^426.^7^26.^~1~^^^^^^^^^^^~09/01/1988~ -~21020~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~268~^1415.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~301~^210.^4^11.^~1~^~A~^^^1^189.^234.^3^172.^246.^~2, 3~^~09/01/2006~ -~21020~^~304~^21.^4^0.^~1~^~A~^^^1^20.^24.^3^18.^23.^~2, 3~^~09/01/2006~ -~21020~^~305~^168.^4^8.^~1~^~A~^^^1^148.^184.^3^141.^193.^~2, 3~^~09/01/2006~ -~21020~^~306~^179.^4^9.^~1~^~A~^^^1^160.^199.^3^149.^208.^~2, 3~^~09/01/2006~ -~21020~^~307~^668.^4^10.^~1~^~A~^^^1^642.^693.^3^632.^702.^~2, 3~^~09/01/2006~ -~21020~^~318~^219.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~319~^55.^3^11.^~1~^~A~^^^1^37.^76.^2^5.^103.^~2, 3~^~09/01/2006~ -~21020~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~321~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~324~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~417~^51.^4^3.^~1~^~A~^^^1^43.^60.^3^39.^61.^~2, 3~^~09/01/2006~ -~21020~^~431~^34.^4^1.^~1~^~A~^^^1^29.^36.^3^28.^39.^~2, 3~^~09/01/2006~ -~21020~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21020~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~601~^43.^4^1.^~1~^~A~^^^1^40.^45.^3^39.^46.^~2, 3~^~09/01/2006~ -~21021~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~301~^192.^6^18.^~1~^~A~^^^1^127.^234.^5^144.^240.^~2, 3~^~08/01/2012~ -~21021~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^18.^21.^~2, 3~^~08/01/2012~ -~21021~^~305~^200.^6^3.^~1~^~A~^^^1^189.^213.^5^191.^209.^~2, 3~^~08/01/2012~ -~21021~^~306~^173.^6^4.^~1~^~A~^^^1^162.^192.^5^161.^184.^~2, 3~^~08/01/2012~ -~21021~^~307~^617.^6^10.^~1~^~A~^^^1^568.^646.^5^588.^644.^~2, 3~^~08/01/2012~ -~21021~^~318~^347.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21021~^~319~^97.^4^8.^~1~^~A~^^^1^77.^118.^3^70.^123.^~2, 3~^~09/01/2006~ -~21021~^~320~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21021~^~321~^12.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~324~^26.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~334~^3.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~338~^140.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~417~^71.^4^2.^~1~^~A~^^^1^64.^78.^3^61.^80.^~2, 3~^~09/01/2006~ -~21021~^~431~^51.^4^3.^~1~^~A~^^^1^43.^57.^3^40.^61.^~2, 3~^~09/01/2006~ -~21021~^~432~^20.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21021~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21021~^~601~^168.^4^2.^~1~^~A~^^^1^163.^176.^3^158.^177.^~2, 3~^~09/01/2006~ -~21022~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~262~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~263~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~268~^1196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~301~^168.^3^8.^~1~^~A~^^^1^151.^181.^2^129.^206.^~2, 3~^~09/01/2006~ -~21022~^~304~^17.^4^0.^~1~^~A~^^^1^16.^18.^3^15.^18.^~2, 3~^~09/01/2006~ -~21022~^~305~^180.^4^6.^~1~^~A~^^^1^164.^194.^3^160.^199.^~2, 3~^~09/01/2006~ -~21022~^~306~^147.^4^5.^~1~^~A~^^^1^134.^162.^3^128.^165.^~2, 3~^~09/01/2006~ -~21022~^~307~^548.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21022~^~318~^270.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~319~^68.^4^6.^~1~^~A~^^^1^55.^83.^3^47.^87.^~2, 3~^~09/01/2006~ -~21022~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~321~^24.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~322~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~324~^22.^0^^~4~^~BFFN~^~21007~^^^^^^^^^~03/01/2009~ -~21022~^~334~^7.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~337~^0.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~338~^280.^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~417~^57.^4^3.^~1~^~A~^^^1^51.^67.^3^45.^68.^~2, 3~^~09/01/2006~ -~21022~^~431~^41.^4^3.^~1~^~A~^^^1^35.^50.^3^30.^51.^~2, 3~^~09/01/2006~ -~21022~^~432~^16.^0^^~1~^~AS~^^^^^^^^^^~09/01/2006~ -~21022~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~601~^163.^4^6.^~1~^~A~^^^1^144.^176.^3^141.^183.^~2, 3~^~09/01/2006~ -~21024~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~268~^1422.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~301~^53.^4^3.^~1~^~A~^^^1^43.^62.^3^40.^64.^~2, 3~^~03/01/2007~ -~21024~^~304~^19.^4^1.^~1~^~A~^^^1^17.^21.^3^15.^22.^~2, 3~^~03/01/2007~ -~21024~^~305~^87.^4^6.^~1~^~A~^^^1^75.^104.^3^65.^108.^~2, 3~^~03/01/2007~ -~21024~^~306~^111.^4^3.^~1~^~A~^^^1^104.^119.^3^101.^120.^~2, 3~^~03/01/2007~ -~21024~^~307~^400.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21024~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21024~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~417~^183.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~431~^41.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~432~^142.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21024~^~435~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2007~ -~21026~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21026~^~268~^1140.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~301~^19.^16^0.^~1~^~A~^^^1^10.^23.^9^17.^19.^~2, 3~^~05/01/2014~ -~21026~^~304~^21.^16^0.^~1~^~A~^^^1^16.^26.^6^18.^23.^~2, 3~^~05/01/2014~ -~21026~^~305~^98.^16^3.^~1~^~A~^^^1^82.^119.^6^88.^107.^~2, 3~^~05/01/2014~ -~21026~^~306~^355.^16^27.^~1~^~A~^^^1^222.^477.^5^285.^424.^~2, 3~^~05/01/2014~ -~21026~^~307~^566.^16^22.^~1~^~A~^^^1^305.^676.^6^511.^621.^~2, 3~^~05/01/2014~ -~21026~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21026~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~321~^1.^7^0.^~1~^~A~^^^1^1.^3.^3^1.^1.^~2, 3~^~05/01/2014~ -~21026~^~322~^0.^7^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~03/01/2006~ -~21026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21026~^~334~^0.^7^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~21026~^~337~^0.^7^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~ -~21026~^~338~^18.^7^0.^~1~^~A~^^^1^14.^22.^4^17.^18.^~2, 3~^~05/01/2014~ -~21026~^~417~^12.^9^0.^~1~^~A~^^^1^10.^16.^4^10.^13.^~2, 3~^~05/01/2014~ -~21026~^~431~^0.^3^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2006~ -~21026~^~432~^12.^9^0.^~1~^~A~^^^1^10.^16.^4^10.^13.^^~05/01/2014~ -~21026~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~601~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2006~ -~21028~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21028~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~268~^681.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21028~^~301~^129.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~305~^111.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~306~^193.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~307~^81.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21028~^~318~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21028~^~319~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~320~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~321~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~417~^13.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~21028~^~431~^8.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21028~^~601~^15.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21032~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21032~^~268~^820.^0^^~4~^^^^^^^^^^^ -~21032~^~301~^122.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~304~^18.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~305~^140.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~306~^205.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~307~^126.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~318~^170.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~319~^43.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21032~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21032~^~417~^8.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~21032~^~432~^8.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~21032~^~601~^16.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21033~^~262~^1.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21033~^~263~^49.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21033~^~268~^753.^0^^~4~^^^^^^^^^^^ -~21033~^~301~^131.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~304~^21.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~305~^144.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~306~^250.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~307~^115.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~318~^140.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21033~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21033~^~417~^6.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~21033~^~432~^6.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~21033~^~601~^13.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21034~^~268~^732.^0^^~4~^^^^^^^^^^^ -~21034~^~301~^105.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~304~^16.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~305~^101.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~306~^177.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~307~^60.^3^5.^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~318~^145.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21034~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~21034~^~417~^12.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~21034~^~432~^12.^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~ -~21034~^~601~^14.^3^1.^~1~^^^^^^^^^^^~09/01/1988~ -~21059~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~268~^1290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~301~^29.^6^0.^~1~^~A~^^^1^26.^32.^5^26.^31.^~4~^~03/01/2011~ -~21059~^~304~^16.^6^0.^~1~^~A~^^^1^15.^18.^5^14.^17.^~4~^~03/01/2011~ -~21059~^~305~^185.^6^5.^~1~^~A~^^^1^161.^201.^5^170.^199.^~4~^~03/01/2011~ -~21059~^~306~^82.^6^3.^~1~^~A~^^^1^70.^94.^5^72.^91.^~4~^~03/01/2011~ -~21059~^~307~^897.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21059~^~318~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~319~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~431~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~432~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~601~^58.^3^1.^~1~^~A~^^^1^56.^59.^2^52.^62.^~4~^~03/01/2011~ -~21060~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21060~^~268~^862.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~21060~^~301~^52.^7^7.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~304~^40.^7^0.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~305~^45.^7^3.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~306~^301.^7^13.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~307~^454.^7^38.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~318~^153.^3^44.^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~417~^40.^0^^~4~^~RK~^^^^^^^^^^~11/01/1997~ -~21060~^~601~^2.^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21061~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~301~^124.^6^5.^~1~^~A~^^^1^99.^135.^5^108.^138.^~2, 3~^~03/01/2011~ -~21061~^~304~^34.^6^0.^~1~^~A~^^^1^33.^36.^5^33.^35.^~2, 3~^~03/01/2011~ -~21061~^~305~^163.^6^2.^~1~^~A~^^^1^155.^169.^5^157.^168.^~2, 3~^~03/01/2011~ -~21061~^~306~^261.^6^4.^~1~^~A~^^^1^243.^275.^5^249.^273.^~2, 3~^~03/01/2011~ -~21061~^~307~^563.^6^6.^~1~^~A~^^^1^533.^574.^5^546.^578.^~2, 3~^~03/01/2011~ -~21061~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~319~^23.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~21061~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~321~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~337~^943.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~417~^104.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~431~^33.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~432~^71.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~601~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~2, 3~^~03/01/2011~ -~21063~^~208~^191.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~268~^801.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~301~^90.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~305~^163.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~306~^269.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~307~^570.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~21063~^~318~^79.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~319~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~320~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~321~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~337~^638.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~417~^73.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~431~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~432~^48.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~435~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~21063~^~601~^26.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21064~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~301~^90.^6^1.^~1~^~A~^^^1^85.^96.^5^85.^95.^~2, 3~^~04/01/2013~ -~21064~^~304~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^21.^24.^~2, 3~^~04/01/2013~ -~21064~^~305~^131.^6^1.^~1~^~A~^^^1^124.^135.^5^125.^135.^~2, 3~^~04/01/2013~ -~21064~^~306~^204.^6^3.^~1~^~A~^^^1^194.^214.^5^195.^211.^~2, 3~^~04/01/2013~ -~21064~^~307~^451.^6^6.^~1~^~A~^^^1^420.^469.^5^432.^468.^~2, 3~^~04/01/2013~ -~21064~^~318~^277.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21064~^~319~^45.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~320~^52.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21064~^~321~^63.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~334~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~337~^160.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~338~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~417~^45.^3^3.^~1~^~A~^^^1^39.^52.^2^29.^61.^~2, 3~^~04/01/2013~ -~21064~^~431~^31.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~432~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~601~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~04/01/2013~ -~21078~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~268~^1436.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~301~^63.^6^1.^~1~^~A~^^^1^60.^68.^5^60.^66.^~2, 3~^~04/01/2013~ -~21078~^~304~^42.^6^1.^~1~^~A~^^^1^38.^46.^5^38.^44.^~2, 3~^~04/01/2013~ -~21078~^~305~^198.^6^1.^~1~^~A~^^^1^192.^202.^5^194.^201.^~2, 3~^~04/01/2013~ -~21078~^~306~^362.^6^6.^~1~^~A~^^^1^342.^382.^5^344.^379.^~2, 3~^~04/01/2013~ -~21078~^~307~^313.^6^8.^~1~^~A~^^^1^288.^338.^5^290.^336.^~2, 3~^~04/01/2013~ -~21078~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21078~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21078~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21078~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~337~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~338~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~417~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^~2, 3~^~04/01/2013~ -~21078~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~432~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^^~04/01/2013~ -~21078~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~601~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^1.^4.^~2, 3~^~04/01/2013~ -~21080~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~262~^0.^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~263~^0.^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~268~^915.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~301~^47.^6^1.^~1~^~A~^^^1^44.^53.^5^43.^50.^~2, 3~^~04/01/2013~ -~21080~^~304~^33.^6^0.^~1~^~A~^^^1^31.^34.^5^30.^34.^~2, 3~^~04/01/2013~ -~21080~^~305~^153.^6^2.^~1~^~A~^^^1^145.^165.^5^145.^159.^~2, 3~^~04/01/2013~ -~21080~^~306~^298.^6^7.^~1~^~A~^^^1^272.^327.^5^279.^317.^~2, 3~^~04/01/2013~ -~21080~^~307~^348.^6^5.^~1~^~A~^^^1^336.^375.^5^332.^362.^~2, 3~^~04/01/2013~ -~21080~^~318~^242.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21080~^~319~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21080~^~321~^64.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~324~^2.^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~334~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~337~^252.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~338~^46.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~417~^14.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^17.^~2, 3~^~04/01/2013~ -~21080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~21080~^~432~^14.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^17.^^~04/01/2013~ -~21080~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~601~^14.^3^0.^~1~^~A~^^^1^13.^15.^2^11.^15.^~2, 3~^~04/01/2013~ -~21082~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~268~^946.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~301~^89.^6^4.^~1~^~A~^^^1^74.^107.^5^77.^99.^~2, 3~^~03/01/2011~ -~21082~^~304~^32.^6^0.^~1~^~A~^^^1^31.^33.^5^31.^32.^~2, 3~^~03/01/2011~ -~21082~^~305~^178.^6^2.^~1~^~A~^^^1^172.^186.^5^171.^184.^~2, 3~^~03/01/2011~ -~21082~^~306~^209.^6^4.^~1~^~A~^^^1^195.^227.^5^196.^221.^~2, 3~^~03/01/2011~ -~21082~^~307~^397.^6^10.^~1~^~A~^^^1^351.^428.^5^370.^424.^~2, 3~^~03/01/2011~ -~21082~^~318~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~321~^46.^4^13.^~1~^~A~^^^1^20.^77.^3^4.^88.^~2, 3~^~03/01/2011~ -~21082~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~338~^120.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~417~^19.^3^4.^~1~^~A~^^^1^14.^28.^2^0.^38.^~2, 3~^~03/01/2011~ -~21082~^~431~^2.^3^0.^~1~^~A~^^^1^1.^4.^2^-1.^6.^~2, 3~^~03/01/2011~ -~21082~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~21082~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~601~^28.^3^0.^~1~^~A~^^^1^27.^30.^2^23.^31.^~2, 3~^~03/01/2011~ -~21089~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~262~^0.^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~263~^0.^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~268~^1290.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~301~^119.^6^5.^~1~^~A~^^^1^102.^142.^5^105.^133.^~2, 3~^~04/01/2013~ -~21089~^~304~^26.^6^0.^~1~^~A~^^^1^24.^27.^5^24.^27.^~2, 3~^~04/01/2013~ -~21089~^~305~^161.^6^1.^~1~^~A~^^^1^157.^168.^5^156.^165.^~2, 3~^~04/01/2013~ -~21089~^~306~^196.^6^3.^~1~^~A~^^^1^188.^212.^5^187.^204.^~2, 3~^~04/01/2013~ -~21089~^~307~^515.^6^4.^~1~^~A~^^^1^501.^528.^5^503.^526.^~2, 3~^~04/01/2013~ -~21089~^~318~^254.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21089~^~319~^45.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21089~^~321~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~324~^2.^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21089~^~338~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~417~^70.^3^3.^~1~^~A~^^^1^62.^76.^2^52.^86.^~2, 3~^~04/01/2013~ -~21089~^~431~^28.^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~432~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~601~^43.^3^0.^~1~^~A~^^^1^42.^45.^2^40.^46.^~2, 3~^~04/01/2013~ -~21090~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~268~^1128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~301~^123.^3^^~1~^~A~^^^3^92.^184.^^^^~2, 3~^~11/01/2005~ -~21090~^~304~^23.^3^^~1~^~A~^^^3^22.^25.^^^^~2, 3~^~11/01/2005~ -~21090~^~305~^142.^3^^~1~^~A~^^^3^134.^150.^^^^~2, 3~^~11/01/2005~ -~21090~^~306~^184.^3^^~1~^~A~^^^3^178.^197.^^^^~2, 3~^~11/01/2005~ -~21090~^~307~^628.^3^^~1~^~A~^^^3^602.^660.^^^^~2, 3~^~11/01/2005~ -~21090~^~318~^261.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~319~^50.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~321~^55.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~324~^3.^0^^~4~^~BFFN~^~21398~^^^^^^^^^~03/01/2009~ -~21090~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~337~^1003.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~417~^26.^1^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21090~^~431~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21090~^~432~^7.^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~21090~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~601~^39.^3^^~1~^~A~^^^3^35.^45.^^^^~2, 3~^~11/01/2005~ -~21091~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~305~^134.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~306~^178.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~307~^546.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21091~^~318~^107.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~320~^12.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~321~^47.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~21091~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~337~^1170.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~417~^42.^0^^~4~^~RK~^^^^^^^^^^~02/01/2006~ -~21091~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21091~^~432~^14.^1^^~1~^^^^^^^^^^^~02/01/2006~ -~21091~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21091~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21094~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~301~^150.^18^36.^~1~^~A~^^^1^73.^178.^2^-7.^308.^~4~^~01/01/2013~ -~21094~^~304~^21.^18^0.^~1~^~A~^^^1^21.^23.^2^17.^25.^~4~^~01/01/2013~ -~21094~^~305~^165.^18^4.^~1~^~A~^^^1^157.^168.^2^146.^182.^~4~^~01/01/2013~ -~21094~^~306~^226.^18^14.^~1~^~A~^^^1^216.^258.^2^162.^289.^~4~^~01/01/2013~ -~21094~^~307~^617.^18^67.^~1~^~A~^^^1^477.^668.^2^328.^905.^~4~^~01/01/2013~ -~21094~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~319~^40.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~320~^44.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~321~^51.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~322~^1.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~324~^7.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~334~^3.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~337~^980.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~338~^17.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~417~^43.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~431~^26.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~432~^17.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~601~^50.^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21096~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~262~^0.^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~263~^0.^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~268~^1298.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~301~^114.^6^4.^~1~^~A~^^^1^105.^133.^5^102.^124.^~2, 3~^~04/01/2013~ -~21096~^~304~^24.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^24.^~2, 3~^~04/01/2013~ -~21096~^~305~^163.^6^1.^~1~^~A~^^^1^160.^166.^5^160.^165.^~2, 3~^~04/01/2013~ -~21096~^~306~^210.^6^5.^~1~^~A~^^^1^193.^227.^5^195.^223.^~2, 3~^~04/01/2013~ -~21096~^~307~^481.^6^6.^~1~^~A~^^^1^459.^500.^5^463.^498.^~2, 3~^~04/01/2013~ -~21096~^~318~^275.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21096~^~319~^53.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21096~^~321~^58.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~324~^2.^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21096~^~338~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~417~^62.^3^4.^~1~^~A~^^^1^53.^69.^2^41.^82.^~2, 3~^~04/01/2013~ -~21096~^~431~^30.^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~432~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~601~^51.^3^2.^~1~^~A~^^^1^46.^56.^2^38.^62.^~2, 3~^~04/01/2013~ -~21102~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~301~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^48.^68.^~2, 3~^~06/01/2015~ -~21102~^~304~^24.^3^0.^~1~^~A~^^^1^24.^25.^2^23.^25.^~2, 3~^~06/01/2015~ -~21102~^~305~^185.^3^1.^~1~^~A~^^^1^182.^187.^2^178.^192.^~2, 3~^~06/01/2015~ -~21102~^~306~^245.^3^8.^~1~^~A~^^^1^229.^260.^2^206.^283.^~2, 3~^~06/01/2015~ -~21102~^~307~^753.^3^17.^~1~^~A~^^^1^718.^772.^2^677.^828.^~2, 3~^~06/01/2015~ -~21102~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~321~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~324~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~338~^78.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~417~^47.^3^6.^~1~^~A~^^^1^34.^55.^2^19.^75.^~2, 3~^~06/01/2015~ -~21102~^~431~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~432~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~601~^35.^3^1.^~1~^~A~^^^1^33.^36.^2^29.^39.^~2, 3~^~06/01/2015~ -~21105~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~268~^1074.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~301~^37.^6^0.^~1~^~A~^^^1^35.^40.^5^35.^39.^~4~^~07/01/2012~ -~21105~^~304~^25.^6^0.^~1~^~A~^^^1^24.^26.^5^23.^25.^~4~^~07/01/2012~ -~21105~^~305~^116.^6^0.^~1~^~A~^^^1^113.^119.^5^113.^118.^~4~^~07/01/2012~ -~21105~^~306~^206.^6^2.^~1~^~A~^^^1^200.^218.^5^198.^213.^~4~^~07/01/2012~ -~21105~^~307~^602.^6^8.^~1~^~A~^^^1^578.^634.^5^579.^624.^~4~^~07/01/2012~ -~21105~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21105~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~320~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~321~^44.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~322~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~334~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~338~^54.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~417~^46.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~431~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~432~^15.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21105~^~601~^35.^8^4.^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~268~^1168.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~301~^120.^6^4.^~1~^~A~^^^1^108.^138.^5^107.^132.^~2, 3~^~07/01/2012~ -~21106~^~304~^27.^6^0.^~1~^~A~^^^1^25.^29.^5^25.^27.^~2, 3~^~07/01/2012~ -~21106~^~305~^137.^6^2.^~1~^~A~^^^1^129.^148.^5^130.^143.^~2, 3~^~07/01/2012~ -~21106~^~306~^220.^6^5.^~1~^~A~^^^1^204.^238.^5^206.^233.^~2, 3~^~07/01/2012~ -~21106~^~307~^434.^6^6.^~1~^~A~^^^1^408.^449.^5^416.^450.^~2, 3~^~07/01/2012~ -~21106~^~318~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21106~^~319~^20.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21106~^~321~^17.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~322~^2.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~324~^37.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~334~^6.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~338~^28.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~417~^44.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~431~^31.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~432~^12.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21106~^~601~^37.^11^3.^~1~^^^^^^^^^^^~09/01/1988~ -~21107~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~262~^0.^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~263~^0.^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~301~^62.^6^5.^~1~^~A~^^^1^44.^82.^5^47.^76.^~2, 3~^~04/01/2013~ -~21107~^~304~^27.^6^0.^~1~^~A~^^^1^23.^30.^5^24.^28.^~2, 3~^~04/01/2013~ -~21107~^~305~^134.^6^1.^~1~^~A~^^^1^128.^140.^5^129.^138.^~2, 3~^~04/01/2013~ -~21107~^~306~^197.^6^1.^~1~^~A~^^^1^194.^202.^5^193.^199.^~2, 3~^~04/01/2013~ -~21107~^~307~^331.^6^3.^~1~^~A~^^^1^319.^342.^5^320.^340.^~2, 3~^~04/01/2013~ -~21107~^~318~^51.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21107~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21107~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21107~^~324~^2.^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~337~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~338~^38.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~417~^80.^3^6.^~1~^~A~^^^1^69.^91.^2^52.^107.^~2, 3~^~04/01/2013~ -~21107~^~431~^29.^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~432~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~601~^33.^3^0.^~1~^~A~^^^1^32.^34.^2^30.^35.^~2, 3~^~04/01/2013~ -~21108~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~268~^1101.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~301~^116.^12^5.^~1~^~A~^^^1^65.^149.^5^103.^129.^~2, 3~^~07/01/2012~ -~21108~^~304~^22.^12^0.^~1~^~A~^^^1^19.^26.^6^20.^22.^~2, 3~^~07/01/2012~ -~21108~^~305~^110.^12^1.^~1~^~A~^^^1^102.^132.^6^107.^113.^~2, 3~^~07/01/2012~ -~21108~^~306~^197.^12^2.^~1~^~A~^^^1^182.^220.^5^189.^203.^~2, 3~^~07/01/2012~ -~21108~^~307~^487.^12^15.^~1~^~A~^^^1^440.^580.^5^446.^528.^~2, 3~^~07/01/2012~ -~21108~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21108~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21108~^~321~^34.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~337~^1003.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~338~^27.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~417~^46.^8^2.^~1~^~A~^^^2^28.^64.^4^39.^51.^~2, 3~^~07/01/2012~ -~21108~^~431~^29.^8^2.^~1~^~A~^^^2^21.^37.^6^23.^33.^~2, 3~^~02/01/2007~ -~21108~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~601~^29.^12^0.^~1~^~A~^^^3^26.^35.^9^28.^30.^~2, 3~^~01/01/2006~ -~21121~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~268~^1019.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~301~^55.^3^6.^~1~^~A~^^^1^41.^62.^2^25.^84.^~2, 3~^~06/01/2015~ -~21121~^~304~^23.^3^0.^~1~^~A~^^^1^23.^23.^2^22.^23.^~2, 3~^~06/01/2015~ -~21121~^~305~^200.^3^2.^~1~^~A~^^^1^196.^205.^2^188.^211.^~2, 3~^~06/01/2015~ -~21121~^~306~^224.^3^5.^~1~^~A~^^^1^213.^231.^2^200.^247.^~2, 3~^~06/01/2015~ -~21121~^~307~^653.^3^12.^~1~^~A~^^^1^641.^677.^2^601.^704.^~2, 3~^~06/01/2015~ -~21121~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~417~^51.^3^6.^~1~^~A~^^^1^44.^64.^2^22.^79.^~2, 3~^~06/01/2015~ -~21121~^~431~^12.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2000~ -~21121~^~432~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~601~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^27.^32.^~2, 3~^~06/01/2015~ -~21124~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~301~^171.^6^2.^~1~^~A~^^^1^163.^181.^5^163.^177.^~2, 3~^~04/01/2013~ -~21124~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^19.^20.^~2, 3~^~04/01/2013~ -~21124~^~305~^112.^6^2.^~1~^~A~^^^1^106.^119.^5^106.^116.^~2, 3~^~04/01/2013~ -~21124~^~306~^282.^6^4.^~1~^~A~^^^1^264.^291.^5^270.^292.^~2, 3~^~04/01/2013~ -~21124~^~307~^575.^6^19.^~1~^~A~^^^1^529.^654.^5^524.^624.^~2, 3~^~04/01/2013~ -~21124~^~318~^170.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21124~^~319~^16.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21124~^~321~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~334~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~337~^275.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~338~^115.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~417~^66.^3^5.^~1~^~A~^^^1^55.^73.^2^42.^88.^~2, 3~^~04/01/2013~ -~21124~^~431~^57.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~601~^27.^3^0.^~1~^~A~^^^1^27.^29.^2^24.^30.^~2, 3~^~04/01/2013~ -~21125~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~301~^164.^6^3.^~1~^~A~^^^1^158.^180.^5^154.^172.^~2, 3~^~04/01/2013~ -~21125~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~2, 3~^~04/01/2013~ -~21125~^~305~^118.^6^3.^~1~^~A~^^^1^112.^129.^5^110.^125.^~2, 3~^~04/01/2013~ -~21125~^~306~^188.^6^3.^~1~^~A~^^^1^178.^196.^5^180.^195.^~2, 3~^~04/01/2013~ -~21125~^~307~^329.^6^9.^~1~^~A~^^^1^290.^356.^5^303.^354.^~2, 3~^~04/01/2013~ -~21125~^~318~^77.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21125~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21125~^~321~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21125~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~337~^213.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~338~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~417~^67.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^94.^~2, 3~^~04/01/2013~ -~21125~^~431~^58.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~601~^18.^3^0.^~1~^~A~^^^1^17.^20.^2^15.^21.^~2, 3~^~04/01/2013~ -~21126~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~268~^914.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~301~^136.^6^2.^~1~^~A~^^^1^127.^147.^5^129.^143.^~2, 3~^~04/01/2013~ -~21126~^~304~^22.^6^0.^~1~^~A~^^^1^22.^23.^5^21.^22.^~2, 3~^~04/01/2013~ -~21126~^~305~^109.^6^3.^~1~^~A~^^^1^102.^126.^5^100.^118.^~2, 3~^~04/01/2013~ -~21126~^~306~^177.^6^2.^~1~^~A~^^^1^164.^183.^5^169.^184.^~2, 3~^~04/01/2013~ -~21126~^~307~^329.^6^12.^~1~^~A~^^^1^297.^367.^5^297.^360.^~2, 3~^~04/01/2013~ -~21126~^~318~^78.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21126~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21126~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21126~^~324~^21.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~337~^143.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~338~^51.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~417~^51.^3^5.^~1~^~A~^^^1^40.^56.^2^27.^73.^~2, 3~^~04/01/2013~ -~21126~^~431~^33.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~21126~^~432~^18.^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~601~^28.^3^2.^~1~^~A~^^^1^24.^32.^2^18.^37.^~2, 3~^~04/01/2013~ -~21127~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~301~^30.^8^1.^~1~^~A~^^^2^28.^31.^1^9.^49.^~2~^~05/01/2009~ -~21127~^~304~^8.^8^0.^~1~^~A~^^^2^7.^9.^1^-1.^18.^~2~^~05/01/2009~ -~21127~^~305~^20.^8^0.^~1~^~A~^^^2^20.^20.^1^15.^24.^~2~^~05/01/2009~ -~21127~^~306~^129.^8^11.^~1~^~A~^^^2^118.^140.^1^-10.^269.^~2~^~05/01/2009~ -~21127~^~307~^203.^8^14.^~1~^~A~^^^2^189.^218.^1^18.^387.^~2~^~05/01/2009~ -~21127~^~318~^95.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~21127~^~319~^28.^4^27.^~1~^~A~^^^2^1.^56.^1^-318.^374.^~2~^~05/01/2009~ -~21127~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~21127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~21127~^~601~^4.^8^2.^~1~^~A~^^^2^2.^7.^1^-26.^35.^~2~^~05/01/2009~ -~21129~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~268~^1238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~301~^100.^6^1.^~1~^~A~^^^1^94.^106.^5^95.^104.^~4~^~03/01/2011~ -~21129~^~304~^40.^6^1.^~1~^~A~^^^1^35.^42.^5^36.^42.^~4~^~03/01/2011~ -~21129~^~305~^410.^6^6.^~1~^~A~^^^1^382.^435.^5^392.^428.^~4~^~03/01/2011~ -~21129~^~306~^256.^6^7.^~1~^~A~^^^1^225.^278.^5^236.^276.^~4~^~03/01/2011~ -~21129~^~307~^813.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21129~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~21129~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~338~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~417~^143.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~431~^114.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~435~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~21129~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21130~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~262~^0.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~263~^0.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~268~^1718.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~301~^115.^6^15.^~1~^~A~^^^1^79.^187.^5^75.^155.^~2, 3~^~08/01/2012~ -~21130~^~304~^19.^6^0.^~1~^~A~^^^1^18.^21.^5^18.^20.^~2, 3~^~09/01/1988~ -~21130~^~305~^158.^6^1.^~1~^~A~^^^1^153.^165.^5^153.^162.^~2, 3~^~08/01/2012~ -~21130~^~306~^167.^6^4.^~1~^~A~^^^1^153.^183.^5^155.^178.^~2, 3~^~08/01/2012~ -~21130~^~307~^776.^6^13.^~1~^~A~^^^1^741.^815.^5^740.^811.^~2, 3~^~08/01/2012~ -~21130~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~21130~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21130~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21130~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21130~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~21130~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21130~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21130~^~338~^38.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21130~^~417~^42.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~431~^0.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~432~^42.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~435~^42.^0^^~4~^~NC~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~601~^0.^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21138~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21138~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21138~^~268~^1305.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~301~^18.^18^0.^~1~^~A~^^^1^12.^23.^8^16.^20.^~2, 3~^~08/01/2012~ -~21138~^~304~^35.^18^0.^~1~^~A~^^^1^25.^40.^9^33.^36.^~2, 3~^~08/01/2012~ -~21138~^~305~^125.^18^3.^~1~^~A~^^^1^88.^153.^8^116.^134.^~2, 3~^~08/01/2012~ -~21138~^~306~^579.^18^11.^~1~^~A~^^^1^451.^675.^7^552.^605.^~2, 3~^~08/01/2012~ -~21138~^~307~^210.^18^14.^~1~^~A~^^^1^115.^363.^6^175.^243.^~2, 3~^~08/01/2012~ -~21138~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~ -~21138~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~21138~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21138~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21138~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~338~^27.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~417~^30.^12^4.^~1~^~A~^^^3^8.^64.^3^16.^43.^~2, 3~^~02/01/2005~ -~21138~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21138~^~432~^30.^12^4.^~1~^~A~^^^3^8.^64.^3^16.^43.^^~03/01/2010~ -~21138~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21138~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21138~^~636~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~21139~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~268~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~301~^18.^6^0.^~1~^~A~^^^1^17.^20.^5^16.^19.^~2, 3~^~03/01/2011~ -~21139~^~304~^15.^6^0.^~1~^~A~^^^1^13.^16.^5^13.^15.^~2, 3~^~03/01/2011~ -~21139~^~305~^59.^6^4.^~1~^~A~^^^1^48.^73.^5^48.^69.^~2, 3~^~03/01/2011~ -~21139~^~306~^286.^6^8.^~1~^~A~^^^1^256.^319.^5^263.^309.^~2, 3~^~03/01/2011~ -~21139~^~307~^306.^6^13.^~1~^~A~^^^1^265.^348.^5^272.^339.^~2, 3~^~03/01/2011~ -~21139~^~318~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~319~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~21139~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21141~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~301~^104.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~305~^97.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~306~^153.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~307~^100.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~601~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21142~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~301~^70.^12^0.^~1~^~A~^^^1^52.^110.^7^67.^71.^~2, 3~^~04/01/2014~ -~21142~^~304~^15.^12^0.^~1~^~A~^^^1^13.^16.^6^14.^15.^~2, 3~^~04/01/2014~ -~21142~^~305~^474.^12^3.^~1~^~A~^^^1^296.^548.^6^464.^483.^~2, 3~^~04/01/2014~ -~21142~^~306~^131.^12^4.^~1~^~A~^^^1^105.^214.^10^121.^140.^~2, 3~^~04/01/2014~ -~21142~^~307~^979.^12^17.^~1~^~A~^^^1^706.^1120.^5^934.^1023.^~2, 3~^~04/01/2014~ -~21142~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21142~^~319~^18.^2^^~1~^~A~^^^1^0.^64.^^^^~1~^~04/01/2014~ -~21142~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21142~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~417~^84.^6^2.^~1~^~A~^^^1^75.^95.^2^73.^95.^~2, 3~^~04/01/2014~ -~21142~^~431~^53.^0^^~4~^~BFZN~^~18015~^^^^^^^^^~03/01/2015~ -~21142~^~432~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21142~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21142~^~601~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~03/01/2015~ -~21143~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~301~^25.^4^1.^~1~^~A~^^^1^20.^28.^3^19.^30.^~2, 3~^~05/01/2014~ -~21143~^~304~^30.^4^1.^~1~^~A~^^^1^28.^33.^3^26.^33.^~2, 3~^~05/01/2014~ -~21143~^~305~^264.^4^9.^~1~^~A~^^^1^246.^284.^3^234.^293.^~2, 3~^~05/01/2014~ -~21143~^~306~^497.^4^17.^~1~^~A~^^^1^456.^538.^3^442.^551.^~2, 3~^~05/01/2014~ -~21143~^~307~^577.^4^18.^~1~^~A~^^^1^541.^626.^3^517.^636.^~2, 3~^~05/01/2014~ -~21143~^~417~^40.^3^1.^~1~^~A~^^^1^37.^42.^2^33.^46.^~2, 3~^~05/01/2014~ -~21143~^~601~^56.^3^0.^~1~^~A~^^^1^55.^57.^2^52.^59.^~2, 3~^~05/01/2014~ -~21144~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~301~^22.^4^0.^~1~^~A~^^^1^19.^23.^3^18.^24.^~2, 3~^~05/01/2014~ -~21144~^~304~^25.^4^0.^~1~^~A~^^^1^24.^26.^3^23.^26.^~2, 3~^~05/01/2014~ -~21144~^~305~^100.^4^7.^~1~^~A~^^^1^87.^119.^3^77.^122.^~2, 3~^~05/01/2014~ -~21144~^~306~^456.^4^10.^~1~^~A~^^^1^425.^477.^3^420.^490.^~2, 3~^~05/01/2014~ -~21144~^~307~^454.^4^65.^~1~^~A~^^^1^305.^623.^3^244.^663.^~2, 3~^~05/01/2014~ -~21144~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21144~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21144~^~321~^2.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~05/01/2014~ -~21144~^~322~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^1.^~1, 2, 3~^~05/01/2014~ -~21144~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~338~^17.^3^1.^~1~^~A~^^^1^14.^20.^2^9.^23.^~2, 3~^~05/01/2014~ -~21144~^~417~^13.^3^1.^~1~^~A~^^^1^10.^15.^2^6.^20.^~2, 3~^~05/01/2014~ -~21145~^~208~^243.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~268~^1018.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~301~^183.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~304~^38.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~305~^270.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~306~^288.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~307~^400.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~318~^217.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~319~^31.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~321~^69.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~208~^248.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~268~^1037.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~301~^147.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~304~^39.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~305~^290.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~306~^293.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~307~^450.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~318~^244.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~319~^34.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~321~^79.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~208~^233.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~268~^975.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~301~^207.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~304~^48.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~305~^300.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~306~^331.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~307~^400.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~318~^324.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~319~^56.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~321~^83.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~208~^238.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~268~^994.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~301~^192.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~304~^49.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~305~^300.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~306~^363.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~307~^470.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~318~^379.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~319~^63.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~321~^101.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~208~^240.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~268~^1004.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~301~^176.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~304~^28.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~305~^210.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~306~^229.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~307~^600.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~318~^395.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~319~^90.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~321~^56.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~601~^20.^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21150~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~301~^142.^6^2.^~1~^~A~^^^1^136.^153.^5^134.^148.^~2, 3~^~04/01/2015~ -~21150~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~2, 3~^~04/01/2015~ -~21150~^~305~^139.^6^2.^~1~^~A~^^^1^132.^147.^5^132.^145.^~2, 3~^~04/01/2015~ -~21150~^~306~^285.^6^8.^~1~^~A~^^^1^258.^316.^5^263.^305.^~2, 3~^~04/01/2015~ -~21150~^~307~^305.^6^5.^~1~^~A~^^^1^290.^325.^5^291.^317.^~2, 3~^~04/01/2015~ -~21150~^~318~^56.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21150~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21150~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21150~^~321~^33.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21150~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21150~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21150~^~337~^208.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21150~^~338~^87.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21150~^~417~^58.^3^1.^~1~^~A~^^^1^55.^61.^2^50.^64.^~2, 3~^~04/01/2015~ -~21150~^~601~^22.^3^1.^~1~^~A~^^^1^19.^23.^2^16.^26.^~2, 3~^~04/01/2015~ -~21151~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~301~^142.^6^2.^~1~^~A~^^^1^136.^153.^5^134.^148.^~2, 3~^~05/01/2015~ -~21151~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~2, 3~^~05/01/2015~ -~21151~^~305~^139.^6^2.^~1~^~A~^^^1^132.^147.^5^132.^145.^~2, 3~^~05/01/2015~ -~21151~^~306~^285.^6^8.^~1~^~A~^^^1^258.^316.^5^263.^305.^~2, 3~^~05/01/2015~ -~21151~^~307~^305.^6^5.^~1~^~A~^^^1^290.^325.^5^291.^317.^~2, 3~^~05/01/2015~ -~21151~^~318~^56.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21151~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21151~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21151~^~321~^33.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21151~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21151~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21151~^~337~^208.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21151~^~338~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21151~^~417~^58.^3^1.^~1~^~A~^^^1^55.^61.^2^50.^64.^~2, 3~^~05/01/2015~ -~21151~^~431~^34.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~601~^22.^3^1.^~1~^~A~^^^1^19.^23.^2^16.^26.^~2, 3~^~05/01/2015~ -~21152~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~268~^610.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~301~^153.^6^2.^~1~^~A~^^^1^144.^161.^5^146.^160.^~2, 3~^~04/01/2015~ -~21152~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^23.^~2, 3~^~04/01/2015~ -~21152~^~305~^131.^6^1.^~1~^~A~^^^1^127.^137.^5^126.^136.^~2, 3~^~04/01/2015~ -~21152~^~306~^265.^6^1.^~1~^~A~^^^1^256.^269.^5^259.^270.^~2, 3~^~04/01/2015~ -~21152~^~307~^348.^6^7.^~1~^~A~^^^1^321.^371.^5^327.^367.^~2, 3~^~04/01/2015~ -~21152~^~318~^49.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21152~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21152~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21152~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21152~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21152~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21152~^~337~^149.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21152~^~338~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21152~^~417~^65.^3^3.^~1~^~A~^^^1^60.^72.^2^49.^80.^~2, 3~^~04/01/2015~ -~21152~^~601~^16.^3^0.^~1~^~A~^^^1^16.^16.^2^15.^16.^~2, 3~^~04/01/2015~ -~21153~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~268~^610.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~301~^153.^6^2.^~1~^~A~^^^1^144.^161.^5^146.^160.^~2, 3~^~05/01/2015~ -~21153~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^23.^~2, 3~^~05/01/2015~ -~21153~^~305~^131.^6^1.^~1~^~A~^^^1^127.^137.^5^126.^136.^~2, 3~^~05/01/2015~ -~21153~^~306~^265.^6^1.^~1~^~A~^^^1^256.^269.^5^259.^270.^~2, 3~^~05/01/2015~ -~21153~^~307~^348.^6^7.^~1~^~A~^^^1^321.^371.^5^327.^367.^~2, 3~^~05/01/2015~ -~21153~^~318~^49.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21153~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21153~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21153~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21153~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21153~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21153~^~337~^149.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21153~^~338~^56.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21153~^~417~^65.^3^3.^~1~^~A~^^^1^60.^72.^2^49.^80.^~2, 3~^~05/01/2015~ -~21153~^~431~^50.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~601~^16.^3^0.^~1~^~A~^^^1^16.^16.^2^15.^16.^~2, 3~^~05/01/2015~ -~21154~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~301~^154.^6^2.^~1~^~A~^^^1^147.^162.^5^147.^160.^~2, 3~^~05/01/2015~ -~21154~^~304~^22.^6^0.^~1~^~A~^^^1^22.^22.^5^21.^22.^~2, 3~^~05/01/2015~ -~21154~^~305~^145.^6^1.^~1~^~A~^^^1^141.^150.^5^140.^148.^~2, 3~^~05/01/2015~ -~21154~^~306~^198.^6^3.^~1~^~A~^^^1^185.^206.^5^189.^205.^~2, 3~^~05/01/2015~ -~21154~^~307~^268.^6^1.^~1~^~A~^^^1^259.^273.^5^262.^272.^~2, 3~^~05/01/2015~ -~21154~^~318~^64.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21154~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21154~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21154~^~321~^34.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21154~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21154~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21154~^~337~^224.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21154~^~338~^75.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21154~^~417~^68.^3^4.^~1~^~A~^^^1^59.^75.^2^46.^88.^~2, 3~^~05/01/2015~ -~21154~^~431~^50.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~432~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~601~^23.^3^0.^~1~^~A~^^^1^21.^24.^2^19.^25.^~2, 3~^~05/01/2015~ -~21155~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~301~^169.^6^2.^~1~^~A~^^^1^162.^183.^5^161.^176.^~2, 3~^~05/01/2015~ -~21155~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~2, 3~^~05/01/2015~ -~21155~^~305~^122.^6^2.^~1~^~A~^^^1^113.^126.^5^115.^127.^~2, 3~^~05/01/2015~ -~21155~^~306~^253.^6^5.^~1~^~A~^^^1^241.^279.^5^238.^266.^~2, 3~^~05/01/2015~ -~21155~^~307~^317.^6^5.^~1~^~A~^^^1^305.^342.^5^302.^330.^~2, 3~^~05/01/2015~ -~21155~^~318~^47.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21155~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21155~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21155~^~321~^28.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21155~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21155~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21155~^~337~^207.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21155~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21155~^~417~^66.^3^6.^~1~^~A~^^^1^54.^75.^2^38.^94.^~2, 3~^~05/01/2015~ -~21155~^~431~^50.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~601~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^~2, 3~^~05/01/2015~ -~21156~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~301~^169.^6^3.^~1~^~A~^^^1^160.^182.^5^159.^177.^~2, 3~^~05/01/2015~ -~21156~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~2, 3~^~05/01/2015~ -~21156~^~305~^116.^6^3.^~1~^~A~^^^1^103.^129.^5^105.^125.^~2, 3~^~05/01/2015~ -~21156~^~306~^367.^6^8.^~1~^~A~^^^1^336.^398.^5^346.^388.^~2, 3~^~05/01/2015~ -~21156~^~307~^396.^6^11.^~1~^~A~^^^1^348.^419.^5^368.^424.^~2, 3~^~05/01/2015~ -~21156~^~318~^41.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21156~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21156~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21156~^~321~^25.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21156~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21156~^~324~^9.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21156~^~337~^167.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21156~^~338~^76.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21156~^~417~^72.^3^6.^~1~^~A~^^^1^59.^82.^2^41.^101.^~2, 3~^~05/01/2015~ -~21156~^~431~^54.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~601~^12.^3^0.^~1~^~A~^^^1^12.^13.^2^10.^13.^~2, 3~^~05/01/2015~ -~21157~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~301~^176.^6^5.^~1~^~A~^^^1^159.^190.^5^163.^189.^~2, 3~^~04/01/2015~ -~21157~^~304~^29.^6^0.^~1~^~A~^^^1^27.^31.^5^26.^30.^~2, 3~^~04/01/2015~ -~21157~^~305~^97.^6^2.^~1~^~A~^^^1^89.^107.^5^89.^104.^~2, 3~^~04/01/2015~ -~21157~^~306~^275.^6^10.^~1~^~A~^^^1^251.^312.^5^246.^302.^~2, 3~^~04/01/2015~ -~21157~^~307~^437.^6^10.^~1~^~A~^^^1^402.^476.^5^408.^464.^~2, 3~^~04/01/2015~ -~21157~^~318~^292.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21157~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21157~^~320~^15.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21157~^~321~^175.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21157~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21157~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21157~^~337~^3152.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21157~^~338~^95.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21157~^~417~^79.^3^11.^~1~^~A~^^^1^60.^99.^2^31.^126.^~2, 3~^~04/01/2015~ -~21157~^~601~^15.^3^0.^~1~^~A~^^^1^15.^17.^2^12.^18.^~2, 3~^~04/01/2015~ -~21158~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~301~^176.^6^5.^~1~^~A~^^^1^159.^190.^5^163.^189.^~2, 3~^~05/01/2015~ -~21158~^~304~^29.^6^0.^~1~^~A~^^^1^27.^31.^5^26.^30.^~2, 3~^~05/01/2015~ -~21158~^~305~^97.^6^2.^~1~^~A~^^^1^89.^107.^5^89.^104.^~2, 3~^~05/01/2015~ -~21158~^~306~^275.^6^10.^~1~^~A~^^^1^251.^312.^5^246.^302.^~2, 3~^~05/01/2015~ -~21158~^~307~^437.^6^10.^~1~^~A~^^^1^402.^476.^5^408.^464.^~2, 3~^~05/01/2015~ -~21158~^~318~^292.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21158~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21158~^~320~^15.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21158~^~321~^175.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21158~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21158~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21158~^~337~^3152.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21158~^~338~^95.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21158~^~417~^79.^3^11.^~1~^~A~^^^1^60.^99.^2^31.^126.^~2, 3~^~05/01/2015~ -~21158~^~431~^49.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~432~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~601~^15.^3^0.^~1~^~A~^^^1^15.^17.^2^12.^18.^~2, 3~^~05/01/2015~ -~21159~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~301~^183.^6^3.^~1~^~A~^^^1^172.^191.^5^174.^190.^~2, 3~^~04/01/2015~ -~21159~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^22.^~2, 3~^~04/01/2015~ -~21159~^~305~^132.^6^2.^~1~^~A~^^^1^122.^139.^5^125.^138.^~2, 3~^~04/01/2015~ -~21159~^~306~^183.^6^3.^~1~^~A~^^^1^171.^192.^5^174.^191.^~2, 3~^~04/01/2015~ -~21159~^~307~^444.^6^5.^~1~^~A~^^^1^428.^464.^5^430.^457.^~2, 3~^~04/01/2015~ -~21159~^~318~^87.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21159~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21159~^~320~^12.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21159~^~321~^33.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21159~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21159~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21159~^~337~^203.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21159~^~338~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21159~^~417~^63.^3^3.^~1~^~A~^^^1^57.^69.^2^48.^77.^~2, 3~^~04/01/2015~ -~21159~^~601~^24.^3^1.^~1~^~A~^^^1^22.^25.^2^18.^29.^~2, 3~^~04/01/2015~ -~21160~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21160~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21160~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~301~^183.^6^3.^~1~^~A~^^^1^172.^191.^5^174.^190.^~2, 3~^~05/01/2015~ -~21160~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^22.^~2, 3~^~05/01/2015~ -~21160~^~305~^132.^6^2.^~1~^~A~^^^1^122.^139.^5^125.^138.^~2, 3~^~05/01/2015~ -~21160~^~306~^183.^6^3.^~1~^~A~^^^1^171.^192.^5^174.^191.^~2, 3~^~05/01/2015~ -~21160~^~307~^444.^6^5.^~1~^~A~^^^1^428.^464.^5^430.^457.^~2, 3~^~05/01/2015~ -~21160~^~318~^87.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21160~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21160~^~320~^12.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21160~^~321~^33.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21160~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21160~^~324~^6.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~21160~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21160~^~337~^203.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21160~^~338~^56.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21160~^~417~^63.^3^3.^~1~^~A~^^^1^57.^69.^2^48.^77.^~2, 3~^~05/01/2015~ -~21160~^~431~^55.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~21160~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~21160~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~21160~^~601~^24.^3^1.^~1~^~A~^^^1^22.^25.^2^18.^29.^~2, 3~^~05/01/2015~ -~21161~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~301~^210.^6^2.^~1~^~A~^^^1^202.^219.^5^203.^217.^~2, 3~^~04/01/2015~ -~21161~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~04/01/2015~ -~21161~^~305~^101.^6^1.^~1~^~A~^^^1^97.^104.^5^97.^103.^~2, 3~^~04/01/2015~ -~21161~^~306~^186.^6^3.^~1~^~A~^^^1^177.^198.^5^178.^194.^~2, 3~^~04/01/2015~ -~21161~^~307~^354.^6^9.^~1~^~A~^^^1^329.^395.^5^329.^379.^~2, 3~^~04/01/2015~ -~21161~^~318~^70.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21161~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21161~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21161~^~321~^42.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21161~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21161~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21161~^~337~^195.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21161~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21161~^~417~^89.^3^7.^~1~^~A~^^^1^76.^101.^2^57.^120.^~2, 3~^~04/01/2015~ -~21161~^~601~^13.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^16.^~2, 3~^~04/01/2015~ -~21162~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~301~^210.^6^2.^~1~^~A~^^^1^202.^219.^5^203.^217.^~2, 3~^~05/01/2015~ -~21162~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~05/01/2015~ -~21162~^~305~^101.^6^1.^~1~^~A~^^^1^97.^104.^5^97.^103.^~2, 3~^~05/01/2015~ -~21162~^~306~^186.^6^3.^~1~^~A~^^^1^177.^198.^5^178.^194.^~2, 3~^~05/01/2015~ -~21162~^~307~^354.^6^9.^~1~^~A~^^^1^329.^395.^5^329.^379.^~2, 3~^~05/01/2015~ -~21162~^~318~^70.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21162~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21162~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~21162~^~321~^42.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21162~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21162~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~21162~^~337~^195.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21162~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21162~^~417~^89.^3^7.^~1~^~A~^^^1^76.^101.^2^57.^120.^~2, 3~^~05/01/2015~ -~21162~^~431~^65.^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~432~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~601~^13.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^16.^~2, 3~^~05/01/2015~ -~21202~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~268~^1070.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~301~^87.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~305~^121.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~306~^225.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~307~^374.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~318~^45.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~321~^26.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~337~^668.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~431~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21202~^~432~^9.^1^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~21202~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~601~^40.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21207~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~301~^169.^6^2.^~1~^~A~^^^1^162.^183.^5^161.^176.^~2, 3~^~04/01/2015~ -~21207~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~2, 3~^~04/01/2015~ -~21207~^~305~^122.^6^2.^~1~^~A~^^^1^113.^126.^5^115.^127.^~2, 3~^~04/01/2015~ -~21207~^~306~^253.^6^5.^~1~^~A~^^^1^241.^279.^5^238.^266.^~2, 3~^~04/01/2015~ -~21207~^~307~^317.^6^5.^~1~^~A~^^^1^305.^342.^5^302.^330.^~2, 3~^~04/01/2015~ -~21207~^~318~^47.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21207~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21207~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21207~^~321~^28.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21207~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21207~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21207~^~337~^207.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21207~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21207~^~417~^66.^3^6.^~1~^~A~^^^1^54.^75.^2^38.^94.^~2, 3~^~04/01/2015~ -~21207~^~601~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^~2, 3~^~04/01/2015~ -~21209~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~301~^169.^6^3.^~1~^~A~^^^1^160.^182.^5^159.^177.^~2, 3~^~04/01/2015~ -~21209~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~2, 3~^~04/01/2015~ -~21209~^~305~^116.^6^3.^~1~^~A~^^^1^103.^129.^5^105.^125.^~2, 3~^~04/01/2015~ -~21209~^~306~^367.^6^8.^~1~^~A~^^^1^336.^398.^5^346.^388.^~2, 3~^~04/01/2015~ -~21209~^~307~^396.^6^11.^~1~^~A~^^^1^348.^419.^5^368.^424.^~2, 3~^~04/01/2015~ -~21209~^~318~^41.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21209~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21209~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21209~^~321~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21209~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21209~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21209~^~337~^167.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21209~^~338~^76.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21209~^~417~^72.^3^6.^~1~^~A~^^^1^59.^82.^2^41.^101.^~2, 3~^~04/01/2015~ -~21209~^~601~^12.^3^0.^~1~^~A~^^^1^12.^13.^2^10.^13.^~2, 3~^~04/01/2015~ -~21210~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~268~^647.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~301~^164.^6^3.^~1~^~A~^^^1^158.^180.^5^154.^172.^~2, 3~^~05/01/2013~ -~21210~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~2, 3~^~05/01/2013~ -~21210~^~305~^118.^6^3.^~1~^~A~^^^1^112.^129.^5^110.^125.^~2, 3~^~05/01/2013~ -~21210~^~306~^188.^6^3.^~1~^~A~^^^1^178.^196.^5^180.^195.^~2, 3~^~05/01/2013~ -~21210~^~307~^329.^6^9.^~1~^~A~^^^1^290.^356.^5^303.^354.^~2, 3~^~05/01/2013~ -~21210~^~318~^77.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21210~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~320~^6.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21210~^~321~^40.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21210~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~337~^213.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~338~^44.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~417~^67.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^94.^~2, 3~^~05/01/2013~ -~21210~^~601~^18.^3^0.^~1~^~A~^^^1^17.^20.^2^15.^21.^~2, 3~^~05/01/2013~ -~21211~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~301~^154.^6^2.^~1~^~A~^^^1^147.^162.^5^147.^160.^~2, 3~^~04/01/2015~ -~21211~^~304~^22.^6^0.^~1~^~A~^^^1^22.^22.^5^21.^22.^~2, 3~^~04/01/2015~ -~21211~^~305~^145.^6^1.^~1~^~A~^^^1^141.^150.^5^140.^148.^~2, 3~^~04/01/2015~ -~21211~^~306~^198.^6^3.^~1~^~A~^^^1^185.^206.^5^189.^205.^~2, 3~^~04/01/2015~ -~21211~^~307~^268.^6^1.^~1~^~A~^^^1^259.^273.^5^262.^272.^~2, 3~^~04/01/2015~ -~21211~^~318~^64.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21211~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21211~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~21211~^~321~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21211~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21211~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~21211~^~337~^224.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21211~^~338~^75.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21211~^~417~^68.^3^4.^~1~^~A~^^^1^59.^75.^2^46.^88.^~2, 3~^~04/01/2015~ -~21211~^~601~^23.^3^0.^~1~^~A~^^^1^21.^24.^2^19.^25.^~2, 3~^~04/01/2015~ -~21213~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~268~^896.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~301~^171.^6^2.^~1~^~A~^^^1^163.^181.^5^163.^177.^~2, 3~^~05/01/2013~ -~21213~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^19.^20.^~2, 3~^~05/01/2013~ -~21213~^~305~^112.^6^2.^~1~^~A~^^^1^106.^119.^5^106.^116.^~2, 3~^~05/01/2013~ -~21213~^~306~^282.^6^4.^~1~^~A~^^^1^264.^291.^5^270.^292.^~2, 3~^~05/01/2013~ -~21213~^~307~^575.^6^19.^~1~^~A~^^^1^529.^654.^5^524.^624.^~2, 3~^~05/01/2013~ -~21213~^~318~^170.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21213~^~319~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~320~^22.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21213~^~321~^61.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~334~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~337~^275.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~338~^115.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~417~^66.^3^5.^~1~^~A~^^^1^55.^73.^2^42.^88.^~2, 3~^~05/01/2013~ -~21213~^~601~^27.^3^0.^~1~^~A~^^^1^27.^29.^2^24.^30.^~2, 3~^~05/01/2013~ -~21214~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~301~^136.^6^2.^~1~^~A~^^^1^127.^147.^5^129.^143.^~2, 3~^~05/01/2013~ -~21214~^~304~^22.^6^0.^~1~^~A~^^^1^22.^23.^5^21.^22.^~2, 3~^~05/01/2013~ -~21214~^~305~^109.^6^3.^~1~^~A~^^^1^102.^126.^5^100.^118.^~2, 3~^~05/01/2013~ -~21214~^~306~^177.^6^2.^~1~^~A~^^^1^164.^183.^5^169.^184.^~2, 3~^~05/01/2013~ -~21214~^~307~^329.^6^12.^~1~^~A~^^^1^297.^367.^5^297.^360.^~2, 3~^~05/01/2013~ -~21214~^~318~^78.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21214~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~320~^11.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21214~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21214~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~337~^143.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~338~^51.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~417~^51.^3^5.^~1~^~A~^^^1^40.^56.^2^27.^73.^~2, 3~^~05/01/2013~ -~21214~^~601~^28.^3^2.^~1~^~A~^^^1^24.^32.^2^18.^37.^~2, 3~^~05/01/2013~ -~21224~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~262~^0.^0^^~4~^~BFCN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~263~^0.^0^^~4~^~BFCN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~268~^1121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~301~^179.^8^5.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~304~^23.^8^0.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~305~^179.^8^3.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~306~^152.^8^6.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~307~^447.^8^8.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~318~^342.^0^^~4~^~NC~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~319~^58.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~320~^66.^0^^~4~^~NC~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~321~^88.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21224~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~337~^1829.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~338~^34.^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~417~^38.^8^2.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~431~^38.^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~21224~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~21224~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~601~^14.^5^0.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~262~^0.^0^^~4~^~BFCN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~263~^0.^0^^~4~^~BFCN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~268~^1088.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~301~^177.^4^11.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~304~^26.^4^1.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~305~^238.^4^4.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~306~^175.^4^10.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~307~^556.^4^22.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~318~^359.^0^^~4~^~NC~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~319~^61.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~320~^69.^0^^~4~^~NC~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~321~^93.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21225~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~337~^1925.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~338~^24.^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~417~^37.^4^11.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~431~^37.^0^^~4~^~NR~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~21225~^~435~^63.^0^^~4~^~NC~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~601~^16.^4^1.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~262~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~263~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~268~^1153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~301~^152.^5^11.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~304~^25.^5^0.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~305~^181.^5^11.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~306~^209.^5^13.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~307~^555.^5^17.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~318~^339.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~319~^58.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~320~^65.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~321~^88.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~324~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~337~^1815.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~338~^55.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21226~^~417~^34.^5^4.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~431~^34.^0^^~4~^~NR~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~601~^16.^3^2.^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~262~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~263~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~301~^155.^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~304~^27.^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~305~^211.^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~306~^189.^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~307~^640.^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~318~^355.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~319~^61.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~320~^68.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~321~^92.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~324~^0.^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~337~^1899.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~338~^58.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~03/01/2009~ -~21227~^~417~^70.^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~21227~^~431~^41.^0^^~4~^~BFSN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~432~^29.^0^^~4~^~BFSN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~601~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21228~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~268~^1103.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~301~^127.^6^6.^~1~^~A~^^^1^111.^149.^5^109.^143.^~4~^~07/01/2012~ -~21228~^~304~^21.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~4~^~07/01/2012~ -~21228~^~305~^107.^6^1.^~1~^~A~^^^1^102.^111.^5^102.^110.^~4~^~05/01/2005~ -~21228~^~306~^192.^6^3.^~1~^~A~^^^1^182.^201.^5^183.^199.^~4~^~07/01/2012~ -~21228~^~307~^494.^6^19.^~1~^~A~^^^1^447.^580.^5^442.^544.^~4~^~07/01/2012~ -~21228~^~318~^55.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~417~^64.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~601~^27.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21229~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~268~^1283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~301~^11.^12^0.^~1~^~A~^^^1^9.^13.^6^10.^11.^~2, 3~^~08/01/2012~ -~21229~^~304~^24.^12^0.^~1~^~A~^^^1^22.^26.^6^23.^24.^~2, 3~^~08/01/2012~ -~21229~^~305~^272.^12^5.^~1~^~A~^^^1^252.^297.^5^257.^286.^~2, 3~^~08/01/2012~ -~21229~^~306~^251.^12^4.^~1~^~A~^^^1^223.^272.^6^238.^263.^~2, 3~^~08/01/2012~ -~21229~^~307~^594.^12^21.^~1~^~A~^^^1^478.^780.^5^539.^648.^~2, 3~^~08/01/2012~ -~21229~^~318~^16.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~319~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~320~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~21229~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~338~^2.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~417~^11.^4^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~431~^5.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~432~^6.^4^0.^~1~^~AS~^^^1^^^^^^^~04/01/2004~ -~21229~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21229~^~601~^55.^4^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21230~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21230~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21230~^~268~^1153.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~301~^72.^18^2.^~1~^~A~^^^1^32.^102.^6^65.^79.^~2, 3~^~07/01/2012~ -~21230~^~304~^20.^18^0.^~1~^~A~^^^1^18.^24.^6^19.^20.^~2, 3~^~07/01/2012~ -~21230~^~305~^144.^18^1.^~1~^~A~^^^1^121.^187.^7^141.^147.^~2, 3~^~07/01/2012~ -~21230~^~306~^179.^18^2.^~1~^~A~^^^1^164.^208.^7^173.^185.^~2, 3~^~07/01/2012~ -~21230~^~307~^617.^18^4.^~1~^~A~^^^1^541.^714.^11^605.^627.^~2, 3~^~07/01/2012~ -~21230~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~319~^1.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21230~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21230~^~321~^44.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2012~ -~21230~^~322~^1.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2012~ -~21230~^~324~^7.^0^^~4~^~BFFN~^~21490~^^^^^^^^^~05/01/2013~ -~21230~^~334~^0.^0^^~1~^~RKA~^^^^^^^^^^~02/01/2011~ -~21230~^~337~^0.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2012~ -~21230~^~338~^41.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2012~ -~21230~^~417~^29.^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~431~^20.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21230~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21230~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21230~^~601~^29.^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21232~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~301~^120.^6^4.^~1~^~A~^^^1^108.^138.^5^107.^132.^~4~^~07/01/2012~ -~21232~^~304~^27.^6^0.^~1~^~A~^^^1^25.^29.^5^25.^27.^~4~^~07/01/2012~ -~21232~^~305~^137.^6^2.^~1~^~A~^^^1^129.^148.^5^130.^143.^~4~^~07/01/2012~ -~21232~^~306~^220.^6^5.^~1~^~A~^^^1^204.^238.^5^206.^233.^~4~^~07/01/2012~ -~21232~^~307~^434.^6^6.^~1~^~A~^^^1^408.^449.^5^416.^450.^~4~^~07/01/2012~ -~21232~^~417~^21.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~601~^32.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21233~^~208~^263.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21233~^~268~^1100.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21233~^~301~^167.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~304~^20.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~305~^140.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~306~^200.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~307~^626.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21233~^~318~^243.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~417~^59.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~601~^35.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21234~^~208~^244.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21234~^~268~^1021.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21234~^~301~^84.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~304~^22.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~305~^124.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~306~^227.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~307~^427.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21234~^~318~^56.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21234~^~417~^56.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21234~^~601~^39.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~208~^258.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21235~^~268~^1079.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21235~^~301~^144.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~304~^22.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~305~^161.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~306~^219.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~307~^579.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21235~^~318~^280.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21235~^~417~^51.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21235~^~601~^47.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~208~^257.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21237~^~268~^1076.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21237~^~301~^116.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~304~^20.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~305~^122.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~306~^181.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~307~^460.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21237~^~318~^188.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~417~^46.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~601~^36.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21238~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~268~^1352.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~301~^19.^6^0.^~1~^~A~^^^1^17.^23.^5^16.^21.^~2, 3~^~08/01/2012~ -~21238~^~304~^37.^6^0.^~1~^~A~^^^1^35.^39.^5^35.^38.^~2, 3~^~08/01/2012~ -~21238~^~305~^127.^6^5.^~1~^~A~^^^1^116.^144.^5^113.^140.^~2, 3~^~08/01/2012~ -~21238~^~306~^596.^6^15.^~1~^~A~^^^1^566.^646.^5^556.^635.^~2, 3~^~08/01/2012~ -~21238~^~307~^189.^6^20.^~1~^~A~^^^1^115.^251.^5^137.^241.^~2, 3~^~08/01/2012~ -~21238~^~318~^0.^1^^~12~^~MA~^^^^^^^^^^~08/01/2012~ -~21238~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21238~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21238~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~338~^27.^2^^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21239~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21239~^~268~^892.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21239~^~301~^34.^4^4.^~1~^~A~^^^1^26.^48.^3^19.^49.^~2, 3~^~08/01/2004~ -~21239~^~304~^18.^4^0.^~1~^~A~^^^1^18.^20.^3^16.^20.^~2, 3~^~08/01/2004~ -~21239~^~305~^103.^4^2.^~1~^~A~^^^1^96.^110.^3^93.^112.^~2, 3~^~08/01/2004~ -~21239~^~306~^195.^4^5.^~1~^~A~^^^1^186.^210.^3^178.^211.^~2, 3~^~08/01/2004~ -~21239~^~307~^395.^4^20.^~1~^~A~^^^1^356.^449.^3^330.^459.^~2, 3~^~08/01/2004~ -~21239~^~601~^35.^4^1.^~1~^~A~^^^1^32.^40.^3^30.^40.^~2, 3~^~08/01/2004~ -~21240~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~268~^923.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~301~^75.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~305~^126.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~306~^187.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~307~^476.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~601~^38.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~268~^1017.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~301~^45.^4^8.^~1~^~A~^^^1^30.^68.^3^19.^70.^~2, 3~^~08/01/2004~ -~21241~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~08/01/2004~ -~21241~^~305~^107.^4^0.^~1~^~A~^^^1^106.^109.^3^104.^109.^~2, 3~^~08/01/2004~ -~21241~^~306~^175.^4^3.^~1~^~A~^^^1^168.^183.^3^164.^184.^~2, 3~^~08/01/2004~ -~21241~^~307~^539.^4^19.^~1~^~A~^^^1^503.^577.^3^477.^600.^~2, 3~^~08/01/2004~ -~21241~^~601~^27.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^29.^~2, 3~^~08/01/2004~ -~21242~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~268~^1070.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~305~^134.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~306~^178.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~307~^660.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~268~^1007.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~301~^58.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~305~^134.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~306~^214.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~307~^422.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~601~^51.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21244~^~268~^896.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21244~^~301~^23.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~305~^161.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~306~^228.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~307~^401.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~601~^31.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~268~^751.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~306~^221.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~307~^427.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~601~^40.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21246~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~268~^1364.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~301~^11.^6^0.^~1~^~A~^^^1^9.^13.^5^9.^12.^~4~^~08/01/2012~ -~21246~^~304~^22.^6^0.^~1~^~A~^^^1^22.^23.^5^21.^23.^~4~^~08/01/2012~ -~21246~^~305~^271.^6^5.^~1~^~A~^^^1^254.^290.^5^257.^284.^~4~^~08/01/2012~ -~21246~^~306~^250.^6^6.^~1~^~A~^^^1^223.^267.^5^233.^266.^~4~^~08/01/2012~ -~21246~^~307~^708.^6^18.^~1~^~A~^^^1^653.^780.^5^661.^754.^~4~^~08/01/2012~ -~21246~^~601~^50.^4^0.^~1~^~A~^^^1^48.^52.^3^47.^52.^~2, 3~^~08/01/2004~ -~21247~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~301~^16.^6^1.^~1~^~A~^^^1^12.^22.^5^12.^19.^~2, 3~^~08/01/2012~ -~21247~^~304~^33.^6^1.^~1~^~A~^^^1^28.^40.^5^28.^37.^~2, 3~^~08/01/2012~ -~21247~^~305~^126.^6^11.^~1~^~A~^^^1^88.^153.^5^97.^154.^~2, 3~^~08/01/2012~ -~21247~^~306~^625.^6^25.^~1~^~A~^^^1^536.^675.^5^559.^690.^~2, 3~^~08/01/2012~ -~21247~^~307~^219.^6^11.^~1~^~A~^^^1^178.^262.^5^188.^249.^~2, 3~^~08/01/2012~ -~21248~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~268~^552.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~301~^128.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~306~^185.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~307~^98.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~601~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21249~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~268~^1172.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~301~^17.^6^1.^~1~^~A~^^^1^13.^21.^5^13.^20.^~2, 3~^~08/01/2012~ -~21249~^~304~^27.^6^0.^~1~^~A~^^^1^25.^29.^5^25.^28.^~2, 3~^~08/01/2012~ -~21249~^~305~^119.^6^3.^~1~^~A~^^^1^108.^132.^5^110.^128.^~2, 3~^~08/01/2012~ -~21249~^~306~^467.^6^4.^~1~^~A~^^^1^451.^479.^5^455.^478.^~2, 3~^~08/01/2012~ -~21249~^~307~^279.^6^23.^~1~^~A~^^^1^213.^363.^5^219.^338.^~2, 3~^~08/01/2012~ -~21250~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~268~^1094.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~301~^76.^6^2.^~1~^~A~^^^1^65.^81.^5^69.^81.^~4~^~07/01/2012~ -~21250~^~304~^25.^6^0.^~1~^~A~^^^1^24.^26.^5^23.^25.^~4~^~07/01/2012~ -~21250~^~305~^126.^6^1.^~1~^~A~^^^1^119.^132.^5^121.^131.^~4~^~07/01/2012~ -~21250~^~306~^217.^6^1.^~1~^~A~^^^1^210.^220.^5^212.^220.^~4~^~07/01/2012~ -~21250~^~307~^461.^6^6.^~1~^~A~^^^1^440.^479.^5^443.^479.^~4~^~07/01/2012~ -~21250~^~417~^64.^4^1.^~1~^~A~^^^1^61.^68.^3^58.^68.^~2, 3~^~07/01/2004~ -~21250~^~431~^37.^4^2.^~1~^~A~^^^1^32.^45.^3^27.^46.^~2, 3~^~07/01/2004~ -~21250~^~432~^27.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21250~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21250~^~601~^35.^4^0.^~1~^~A~^^^1^33.^37.^3^32.^37.^~2, 3~^~07/01/2004~ -~21251~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21251~^~268~^1198.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21251~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~305~^143.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~306~^178.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~307~^602.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~601~^45.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21252~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21252~^~301~^39.^3^4.^~1~^~A~^^^1^34.^49.^2^18.^60.^~2, 3~^~07/01/2004~ -~21252~^~304~^18.^3^0.^~1~^~A~^^^1^17.^19.^2^15.^20.^~2, 3~^~07/01/2004~ -~21252~^~305~^90.^3^1.^~1~^~A~^^^1^88.^92.^2^84.^95.^~2, 3~^~07/01/2004~ -~21252~^~306~^169.^3^1.^~1~^~A~^^^1^167.^171.^2^164.^174.^~2, 3~^~07/01/2004~ -~21252~^~307~^313.^3^9.^~1~^~A~^^^1^302.^331.^2^273.^352.^~2, 3~^~07/01/2004~ -~21252~^~417~^47.^4^3.^~1~^~A~^^^1^37.^54.^3^35.^58.^~2, 3~^~07/01/2004~ -~21252~^~431~^33.^4^3.^~1~^~A~^^^1^27.^42.^3^22.^43.^~2, 3~^~07/01/2004~ -~21252~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21252~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21252~^~601~^30.^4^0.^~1~^~A~^^^1^29.^32.^3^28.^31.^~2, 3~^~07/01/2004~ -~21253~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21253~^~268~^1044.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21253~^~301~^82.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~305~^113.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~306~^169.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~307~^453.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~417~^51.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~431~^30.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~432~^21.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21253~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21253~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21254~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21254~^~301~^35.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~305~^111.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~306~^192.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~307~^289.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~417~^45.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~432~^23.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21254~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21254~^~601~^46.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21255~^~268~^1111.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21255~^~301~^78.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~305~^128.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~306~^189.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~307~^387.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~417~^27.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21255~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21255~^~601~^47.^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21256~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^12.^13.^~2, 3~^~05/01/2014~ -~21256~^~304~^27.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^28.^~2, 3~^~05/01/2014~ -~21256~^~305~^291.^6^6.^~1~^~A~^^^1^273.^309.^5^275.^306.^~2, 3~^~05/01/2014~ -~21256~^~306~^315.^6^4.^~1~^~A~^^^1^296.^326.^5^302.^326.^~2, 3~^~05/01/2014~ -~21256~^~307~^859.^6^24.^~1~^~A~^^^1^774.^920.^5^795.^922.^~2, 3~^~05/01/2014~ -~21256~^~318~^11.^1^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21256~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21256~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21256~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21256~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21256~^~338~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~417~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^7.^10.^~2, 3~^~05/01/2014~ -~21256~^~601~^44.^3^2.^~1~^~A~^^^1^40.^46.^2^34.^52.^~2, 3~^~05/01/2014~ -~21258~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~268~^1088.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~301~^37.^6^0.^~1~^~A~^^^1^35.^40.^5^35.^39.^~4~^~07/01/2012~ -~21258~^~304~^25.^6^0.^~1~^~A~^^^1^24.^26.^5^23.^25.^~4~^~08/01/2004~ -~21258~^~305~^116.^6^0.^~1~^~A~^^^1^113.^119.^5^113.^118.^~4~^~07/01/2012~ -~21258~^~306~^206.^6^2.^~1~^~A~^^^1^200.^218.^5^198.^213.^~4~^~07/01/2012~ -~21258~^~307~^602.^6^8.^~1~^~A~^^^1^578.^634.^5^579.^624.^~4~^~07/01/2012~ -~21258~^~601~^31.^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21259~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21259~^~268~^1195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~301~^46.^6^2.^~1~^~A~^^^1^38.^54.^5^40.^51.^~4~^~07/01/2012~ -~21259~^~304~^23.^6^0.^~1~^~A~^^^1^23.^24.^5^22.^23.^~4~^~07/01/2012~ -~21259~^~305~^128.^6^1.^~1~^~A~^^^1^121.^133.^5^123.^131.^~4~^~07/01/2012~ -~21259~^~306~^196.^6^4.^~1~^~A~^^^1^178.^208.^5^183.^208.^~4~^~07/01/2012~ -~21259~^~307~^638.^6^20.^~1~^~A~^^^1^575.^714.^5^585.^691.^~4~^~07/01/2012~ -~21259~^~417~^33.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~431~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~432~^12.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21259~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21259~^~601~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21260~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~301~^89.^6^4.^~1~^~A~^^^1^74.^107.^5^77.^99.^~4~^~02/01/2011~ -~21260~^~304~^32.^6^0.^~1~^~A~^^^1^31.^33.^5^31.^32.^~4~^~02/01/2011~ -~21260~^~305~^178.^6^2.^~1~^~A~^^^1^172.^186.^5^171.^184.^~4~^~10/01/2004~ -~21260~^~306~^209.^6^4.^~1~^~A~^^^1^195.^227.^5^196.^221.^~4~^~02/01/2011~ -~21260~^~307~^397.^6^10.^~1~^~A~^^^1^351.^428.^5^370.^424.^~4~^~02/01/2011~ -~21260~^~318~^77.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21260~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21260~^~321~^46.^4^13.^~1~^~A~^^^1^20.^77.^3^4.^88.^~2, 3~^~10/01/2004~ -~21260~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21260~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21260~^~417~^19.^3^4.^~1~^~A~^^^1^14.^28.^2^0.^38.^~2, 3~^~10/01/2004~ -~21260~^~431~^2.^3^0.^~1~^~A~^^^1^1.^4.^2^-1.^6.^~2, 3~^~10/01/2004~ -~21260~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21260~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21260~^~601~^28.^3^0.^~1~^~A~^^^1^27.^30.^2^23.^31.^~4~^~02/01/2011~ -~21261~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~268~^860.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~301~^123.^6^6.^~1~^~A~^^^1^97.^147.^5^106.^140.^~4~^~03/01/2011~ -~21261~^~304~^19.^6^0.^~1~^~A~^^^1^18.^20.^5^18.^19.^~4~^~03/01/2011~ -~21261~^~305~^167.^6^4.^~1~^~A~^^^1^147.^176.^5^154.^178.^~4~^~03/01/2011~ -~21261~^~306~^161.^6^5.^~1~^~A~^^^1^139.^174.^5^147.^174.^~4~^~03/01/2011~ -~21261~^~307~^560.^6^11.^~1~^~A~^^^1^527.^588.^5^530.^589.^~4~^~03/01/2011~ -~21261~^~318~^79.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21261~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21261~^~321~^48.^4^5.^~1~^~A~^^^1^35.^61.^3^29.^65.^~2, 3~^~10/01/2004~ -~21261~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21261~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21261~^~417~^52.^4^5.^~1~^~A~^^^1^36.^63.^3^33.^69.^~2, 3~^~10/01/2004~ -~21261~^~431~^28.^4^6.^~1~^~A~^^^1^7.^38.^3^5.^49.^~2, 3~^~10/01/2004~ -~21261~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21261~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21261~^~601~^25.^3^1.^~1~^~A~^^^1^22.^28.^2^17.^31.^~4~^~03/01/2011~ -~21262~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~301~^122.^6^3.^~1~^~A~^^^1^112.^131.^5^113.^130.^~4~^~03/01/2011~ -~21262~^~304~^24.^6^0.^~1~^~A~^^^1^23.^25.^5^23.^24.^~4~^~03/01/2011~ -~21262~^~305~^244.^6^3.^~1~^~A~^^^1^229.^254.^5^235.^253.^~4~^~03/01/2011~ -~21262~^~306~^217.^6^7.^~1~^~A~^^^1^191.^237.^5^198.^234.^~4~^~03/01/2011~ -~21262~^~307~^613.^6^10.^~1~^~A~^^^1^575.^642.^5^586.^640.^~4~^~03/01/2011~ -~21262~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21262~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21262~^~321~^15.^4^3.^~1~^~A~^^^1^11.^27.^3^2.^27.^~1, 2, 3~^~10/01/2004~ -~21262~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21262~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21262~^~417~^48.^4^6.^~1~^~A~^^^1^30.^60.^3^27.^68.^~2, 3~^~10/01/2004~ -~21262~^~431~^30.^4^5.^~1~^~A~^^^1^15.^39.^3^13.^47.^~2, 3~^~10/01/2004~ -~21262~^~432~^18.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21262~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21262~^~601~^29.^3^0.^~1~^~A~^^^1^27.^31.^2^24.^33.^~4~^~03/01/2011~ -~21263~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~268~^941.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~301~^117.^4^5.^~1~^~A~^^^1^103.^128.^3^99.^134.^~2, 3~^~10/01/2004~ -~21263~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~10/01/2004~ -~21263~^~305~^155.^4^2.^~1~^~A~^^^1^151.^161.^3^147.^162.^~2, 3~^~10/01/2004~ -~21263~^~306~^183.^4^3.^~1~^~A~^^^1^178.^193.^3^172.^193.^~2, 3~^~10/01/2004~ -~21263~^~307~^551.^4^10.^~1~^~A~^^^1^520.^566.^3^517.^585.^~2, 3~^~10/01/2004~ -~21263~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21263~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21263~^~321~^14.^4^1.^~1~^~A~^^^1^11.^16.^3^9.^17.^~1, 2, 3~^~10/01/2004~ -~21263~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~417~^37.^4^5.^~1~^~A~^^^1^23.^47.^3^20.^52.^~2, 3~^~10/01/2004~ -~21263~^~431~^22.^4^2.^~1~^~A~^^^1^16.^28.^3^12.^31.^~2, 3~^~10/01/2004~ -~21263~^~432~^15.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21263~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~601~^31.^4^0.^~1~^~A~^^^1^31.^32.^3^30.^31.^~2, 3~^~10/01/2004~ -~21264~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~268~^873.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~301~^124.^6^5.^~1~^~A~^^^1^99.^135.^5^108.^138.^~4~^~03/01/2011~ -~21264~^~304~^34.^6^0.^~1~^~A~^^^1^33.^36.^5^33.^35.^~4~^~03/01/2011~ -~21264~^~305~^163.^6^2.^~1~^~A~^^^1^155.^169.^5^157.^168.^~4~^~03/01/2011~ -~21264~^~306~^261.^6^4.^~1~^~A~^^^1^243.^275.^5^249.^273.^~4~^~03/01/2011~ -~21264~^~307~^563.^6^6.^~1~^~A~^^^1^533.^574.^5^546.^578.^~4~^~03/01/2011~ -~21264~^~318~^67.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21264~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21264~^~321~^40.^4^7.^~1~^~A~^^^1^22.^58.^3^16.^64.^~2, 3~^~10/01/2004~ -~21264~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21264~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21264~^~417~^50.^4^9.^~1~^~A~^^^1^33.^76.^3^20.^80.^~2, 3~^~10/01/2004~ -~21264~^~431~^25.^4^4.^~1~^~A~^^^1^17.^38.^3^9.^40.^~2, 3~^~10/01/2004~ -~21264~^~432~^25.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21264~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21264~^~601~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~4~^~03/01/2011~ -~21265~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~301~^90.^6^1.^~1~^~A~^^^1^85.^96.^5^85.^95.^~2, 3~^~05/01/2013~ -~21265~^~304~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^21.^24.^~2, 3~^~05/01/2013~ -~21265~^~305~^131.^6^1.^~1~^~A~^^^1^124.^135.^5^125.^135.^~2, 3~^~05/01/2013~ -~21265~^~306~^204.^6^3.^~1~^~A~^^^1^194.^214.^5^195.^211.^~2, 3~^~05/01/2013~ -~21265~^~307~^451.^6^6.^~1~^~A~^^^1^420.^469.^5^432.^468.^~2, 3~^~05/01/2013~ -~21265~^~318~^277.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21265~^~319~^45.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~320~^52.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21265~^~321~^63.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~334~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~337~^160.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~338~^77.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~417~^45.^3^3.^~1~^~A~^^^1^39.^52.^2^29.^61.^~2, 3~^~10/01/2004~ -~21265~^~431~^33.^4^4.^~1~^~A~^^^1^24.^46.^3^17.^48.^~2, 3~^~10/01/2004~ -~21265~^~432~^12.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21265~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21265~^~601~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~05/01/2013~ -~21266~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~301~^94.^4^3.^~1~^~A~^^^1^85.^103.^3^81.^105.^~2, 3~^~10/01/2004~ -~21266~^~304~^28.^4^1.^~1~^~A~^^^1^26.^31.^3^25.^31.^~2, 3~^~10/01/2004~ -~21266~^~305~^163.^4^4.^~1~^~A~^^^1^153.^170.^3^149.^175.^~2, 3~^~10/01/2004~ -~21266~^~306~^264.^4^4.^~1~^~A~^^^1^256.^274.^3^251.^277.^~2, 3~^~10/01/2004~ -~21266~^~307~^564.^4^13.^~1~^~A~^^^1^541.^589.^3^521.^605.^~2, 3~^~10/01/2004~ -~21266~^~318~^82.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21266~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21266~^~321~^49.^4^4.^~1~^~A~^^^1^41.^60.^3^36.^62.^~2, 3~^~10/01/2004~ -~21266~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~417~^48.^4^3.^~1~^~A~^^^1^40.^54.^3^36.^58.^~2, 3~^~10/01/2004~ -~21266~^~431~^23.^4^4.^~1~^~A~^^^1^11.^31.^3^8.^36.^~2, 3~^~10/01/2004~ -~21266~^~432~^25.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21266~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~601~^21.^4^1.^~1~^~A~^^^1^18.^24.^3^17.^24.^~2, 3~^~10/01/2004~ -~21267~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~268~^767.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~301~^101.^4^3.^~1~^~A~^^^1^94.^109.^3^90.^111.^~2, 3~^~10/01/2004~ -~21267~^~304~^27.^4^0.^~1~^~A~^^^1^27.^28.^3^26.^28.^~2, 3~^~10/01/2004~ -~21267~^~305~^131.^4^5.^~1~^~A~^^^1^125.^147.^3^114.^148.^~2, 3~^~10/01/2004~ -~21267~^~306~^228.^4^5.^~1~^~A~^^^1^219.^241.^3^211.^243.^~2, 3~^~10/01/2004~ -~21267~^~307~^534.^4^11.^~1~^~A~^^^1^513.^564.^3^497.^569.^~2, 3~^~10/01/2004~ -~21267~^~318~^72.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21267~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21267~^~321~^43.^4^1.^~1~^~A~^^^1^39.^45.^3^38.^48.^~2, 3~^~10/01/2004~ -~21267~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~417~^39.^4^7.^~1~^~A~^^^1^18.^52.^3^14.^63.^~2, 3~^~10/01/2004~ -~21267~^~431~^22.^4^5.^~1~^~A~^^^1^7.^32.^3^4.^39.^~2, 3~^~10/01/2004~ -~21267~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21267~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~601~^21.^4^1.^~1~^~A~^^^1^18.^23.^3^17.^24.^~2, 3~^~10/01/2004~ -~21268~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~268~^1466.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~301~^63.^6^1.^~1~^~A~^^^1^60.^68.^5^60.^66.^~2, 3~^~05/01/2013~ -~21268~^~304~^42.^6^1.^~1~^~A~^^^1^38.^46.^5^38.^44.^~2, 3~^~05/01/2013~ -~21268~^~305~^198.^6^1.^~1~^~A~^^^1^192.^202.^5^194.^201.^~2, 3~^~05/01/2013~ -~21268~^~306~^362.^6^6.^~1~^~A~^^^1^342.^382.^5^344.^379.^~2, 3~^~05/01/2013~ -~21268~^~307~^313.^6^8.^~1~^~A~^^^1^288.^338.^5^290.^336.^~2, 3~^~05/01/2013~ -~21268~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21268~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21268~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~21268~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~337~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~338~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~417~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^~2, 3~^~05/01/2013~ -~21268~^~432~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^^~05/01/2013~ -~21268~^~601~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^1.^4.^~2, 3~^~05/01/2013~ -~21269~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~268~^932.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~301~^47.^6^1.^~1~^~A~^^^1^44.^53.^5^43.^50.^~2, 3~^~05/01/2013~ -~21269~^~304~^33.^6^0.^~1~^~A~^^^1^31.^34.^5^30.^34.^~2, 3~^~05/01/2013~ -~21269~^~305~^153.^6^2.^~1~^~A~^^^1^145.^165.^5^145.^159.^~2, 3~^~05/01/2013~ -~21269~^~306~^298.^6^7.^~1~^~A~^^^1^272.^327.^5^279.^317.^~2, 3~^~05/01/2013~ -~21269~^~307~^348.^6^5.^~1~^~A~^^^1^336.^375.^5^332.^362.^~2, 3~^~05/01/2013~ -~21269~^~318~^242.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21269~^~319~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21269~^~321~^64.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~334~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~337~^252.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~338~^46.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~417~^14.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^17.^~2, 3~^~05/01/2013~ -~21269~^~432~^14.^3^0.^~1~^~A~^^^1^12.^15.^2^9.^17.^^~05/01/2013~ -~21269~^~601~^14.^3^0.^~1~^~A~^^^1^13.^15.^2^11.^15.^~2, 3~^~05/01/2013~ -~21270~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~268~^710.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~301~^95.^4^5.^~1~^~A~^^^1^84.^108.^3^78.^111.^~2, 3~^~10/01/2004~ -~21270~^~304~^27.^4^0.^~1~^~A~^^^1^26.^28.^3^25.^28.^~2, 3~^~10/01/2004~ -~21270~^~305~^103.^4^5.^~1~^~A~^^^1^93.^114.^3^86.^120.^~2, 3~^~10/01/2004~ -~21270~^~306~^229.^4^2.^~1~^~A~^^^1^224.^234.^3^220.^237.^~2, 3~^~10/01/2004~ -~21270~^~307~^363.^4^13.^~1~^~A~^^^1^338.^401.^3^318.^407.^~2, 3~^~10/01/2004~ -~21270~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21270~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21270~^~321~^37.^4^8.^~1~^~A~^^^1^11.^51.^3^8.^65.^~1, 2, 3~^~10/01/2004~ -~21270~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~417~^43.^4^3.^~1~^~A~^^^1^34.^52.^3^30.^54.^~2, 3~^~10/01/2004~ -~21270~^~431~^16.^4^6.^~1~^~A~^^^1^4.^33.^3^-3.^35.^~2, 3~^~10/01/2004~ -~21270~^~432~^27.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21270~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~601~^19.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^21.^~2, 3~^~10/01/2004~ -~21271~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~268~^1132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~301~^209.^4^6.^~1~^~A~^^^1^198.^227.^3^186.^230.^~2, 3~^~01/01/2005~ -~21271~^~304~^22.^4^0.^~1~^~A~^^^1^21.^23.^3^20.^23.^~2, 3~^~01/01/2005~ -~21271~^~305~^249.^4^5.^~1~^~A~^^^1^236.^263.^3^230.^267.^~2, 3~^~01/01/2005~ -~21271~^~306~^173.^4^6.^~1~^~A~^^^1^160.^189.^3^152.^193.^~2, 3~^~01/01/2005~ -~21271~^~307~^685.^4^31.^~1~^~A~^^^1^592.^728.^3^585.^784.^~2, 3~^~01/01/2005~ -~21271~^~318~^435.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~21271~^~319~^72.^4^6.^~1~^~A~^^^1^56.^88.^3^51.^93.^~2, 3~^~01/01/2005~ -~21271~^~320~^82.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~21271~^~321~^116.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21271~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~21271~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~21271~^~337~^2310.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21271~^~338~^69.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21271~^~601~^24.^4^1.^~1~^~A~^^^1^21.^29.^3^18.^29.^~2, 3~^~01/01/2005~ -~21272~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21272~^~268~^1170.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21272~^~301~^208.^4^9.^~1~^~A~^^^1^187.^232.^3^178.^237.^~2, 3~^~01/01/2005~ -~21272~^~304~^21.^4^0.^~1~^~A~^^^1^20.^23.^3^18.^23.^~2, 3~^~01/01/2005~ -~21272~^~305~^241.^4^9.^~1~^~A~^^^1^220.^268.^3^209.^272.^~2, 3~^~01/01/2005~ -~21272~^~306~^168.^4^3.^~1~^~A~^^^1^162.^177.^3^157.^178.^~2, 3~^~01/01/2005~ -~21272~^~307~^624.^4^50.^~1~^~A~^^^1^542.^768.^3^464.^782.^~2, 3~^~01/01/2005~ -~21272~^~318~^260.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21272~^~319~^73.^4^5.^~1~^~A~^^^1^60.^89.^3^53.^91.^~2, 3~^~01/01/2005~ -~21272~^~320~^73.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21272~^~601~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~01/01/2005~ -~21273~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~268~^1266.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~301~^278.^4^19.^~1~^~A~^^^1^221.^308.^3^216.^339.^~2, 3~^~01/01/2005~ -~21273~^~304~^24.^4^0.^~1~^~A~^^^1^23.^25.^3^21.^25.^~2, 3~^~01/01/2005~ -~21273~^~305~^317.^4^15.^~1~^~A~^^^1^272.^340.^3^266.^366.^~2, 3~^~01/01/2005~ -~21273~^~306~^191.^4^4.^~1~^~A~^^^1^181.^203.^3^175.^205.^~2, 3~^~01/01/2005~ -~21273~^~307~^784.^4^50.^~1~^~A~^^^1^664.^874.^3^621.^945.^~2, 3~^~01/01/2005~ -~21273~^~318~^374.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21273~^~319~^107.^4^6.^~1~^~A~^^^1^87.^119.^3^84.^128.^~2, 3~^~01/01/2005~ -~21273~^~320~^107.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21273~^~601~^34.^4^2.^~1~^~A~^^^1^28.^37.^3^27.^40.^~2, 3~^~01/01/2005~ -~21274~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21274~^~268~^1171.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21274~^~301~^155.^4^5.^~1~^~A~^^^1^140.^168.^3^136.^174.^~2, 3~^~01/01/2005~ -~21274~^~304~^23.^4^0.^~1~^~A~^^^1^22.^24.^3^22.^23.^~2, 3~^~01/01/2005~ -~21274~^~305~^218.^4^3.^~1~^~A~^^^1^212.^227.^3^206.^229.^~2, 3~^~01/01/2005~ -~21274~^~306~^207.^4^3.^~1~^~A~^^^1^197.^215.^3^195.^218.^~2, 3~^~01/01/2005~ -~21274~^~307~^801.^4^17.^~1~^~A~^^^1^755.^833.^3^746.^854.^~2, 3~^~01/01/2005~ -~21274~^~318~^204.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21274~^~319~^56.^4^4.^~1~^~A~^^^1^50.^68.^3^42.^69.^~2, 3~^~01/01/2005~ -~21274~^~320~^57.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21274~^~601~^26.^4^1.^~1~^~A~^^^1^24.^29.^3^22.^29.^~2, 3~^~01/01/2005~ -~21275~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~268~^1246.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~301~^146.^4^3.^~1~^~A~^^^1^137.^151.^3^135.^155.^~2, 3~^~01/01/2005~ -~21275~^~304~^22.^4^0.^~1~^~A~^^^1^21.^23.^3^20.^23.^~2, 3~^~01/01/2005~ -~21275~^~305~^205.^4^5.^~1~^~A~^^^1^191.^216.^3^188.^220.^~2, 3~^~01/01/2005~ -~21275~^~306~^199.^4^1.^~1~^~A~^^^1^195.^201.^3^194.^202.^~2, 3~^~01/01/2005~ -~21275~^~307~^692.^4^22.^~1~^~A~^^^1^633.^727.^3^620.^763.^~2, 3~^~01/01/2005~ -~21275~^~318~^171.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21275~^~319~^46.^4^5.^~1~^~A~^^^1^36.^61.^3^27.^63.^~2, 3~^~01/01/2005~ -~21275~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21275~^~601~^25.^4^1.^~1~^~A~^^^1^21.^26.^3^21.^28.^~2, 3~^~01/01/2005~ -~21276~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21276~^~268~^1015.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21276~^~301~^129.^4^5.^~1~^~A~^^^1^122.^144.^3^112.^145.^~2, 3~^~01/01/2005~ -~21276~^~304~^23.^4^0.^~1~^~A~^^^1^22.^24.^3^21.^25.^~2, 3~^~01/01/2005~ -~21276~^~305~^200.^4^2.^~1~^~A~^^^1^192.^203.^3^191.^207.^~2, 3~^~01/01/2005~ -~21276~^~306~^233.^4^10.^~1~^~A~^^^1^211.^262.^3^199.^266.^~2, 3~^~01/01/2005~ -~21276~^~307~^689.^4^12.^~1~^~A~^^^1^652.^712.^3^648.^730.^~2, 3~^~01/01/2005~ -~21276~^~318~^137.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21276~^~319~^35.^4^8.^~1~^~A~^^^1^21.^59.^3^9.^61.^~2, 3~^~01/01/2005~ -~21276~^~320~^36.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21276~^~601~^20.^4^1.^~1~^~A~^^^1^18.^22.^3^16.^23.^~2, 3~^~01/01/2005~ -~21277~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21277~^~268~^1075.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~301~^167.^6^2.^~1~^~A~^^^1^158.^172.^5^160.^173.^~4~^~02/01/2011~ -~21277~^~304~^24.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~01/01/2005~ -~21277~^~305~^204.^6^2.^~1~^~A~^^^1^196.^211.^5^197.^210.^~4~^~02/01/2011~ -~21277~^~306~^161.^6^5.^~1~^~A~^^^1^148.^183.^5^146.^174.^~4~^~02/01/2011~ -~21277~^~307~^523.^6^8.^~1~^~A~^^^1^486.^542.^5^501.^543.^~4~^~02/01/2011~ -~21277~^~318~^301.^4^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21277~^~319~^55.^4^2.^~1~^~A~^^^1^49.^60.^3^46.^62.^~2, 3~^~01/01/2005~ -~21277~^~320~^61.^4^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21277~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~ -~21277~^~601~^17.^3^0.^~1~^~A~^^^1^15.^19.^2^12.^21.^~4~^~02/01/2011~ -~21278~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~268~^1111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~301~^166.^6^3.^~1~^~A~^^^1^156.^176.^5^156.^174.^~4~^~02/01/2011~ -~21278~^~304~^24.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^24.^~4~^~02/01/2011~ -~21278~^~305~^203.^6^3.^~1~^~A~^^^1^192.^216.^5^192.^212.^~4~^~02/01/2011~ -~21278~^~306~^169.^6^4.^~1~^~A~^^^1^155.^183.^5^157.^179.^~4~^~02/01/2011~ -~21278~^~307~^615.^6^16.^~1~^~A~^^^1^569.^685.^5^573.^656.^~4~^~02/01/2011~ -~21278~^~601~^16.^3^1.^~1~^~A~^^^1^15.^19.^2^11.^21.^~4~^~02/01/2011~ -~21279~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~268~^1247.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~301~^292.^6^15.^~1~^~A~^^^1^224.^341.^5^250.^332.^~4~^~02/01/2011~ -~21279~^~304~^24.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~02/01/2011~ -~21279~^~305~^292.^6^12.^~1~^~A~^^^1^236.^327.^5^259.^323.^~4~^~02/01/2011~ -~21279~^~306~^202.^6^9.^~1~^~A~^^^1^180.^234.^5^177.^227.^~4~^~02/01/2011~ -~21279~^~307~^628.^6^10.^~1~^~A~^^^1^596.^666.^5^600.^655.^~4~^~02/01/2011~ -~21279~^~601~^27.^3^2.^~1~^~A~^^^1^22.^30.^2^15.^38.^~4~^~02/01/2011~ -~21280~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~301~^141.^6^4.^~1~^~A~^^^1^129.^156.^5^129.^151.^~4~^~02/01/2011~ -~21280~^~304~^24.^6^0.^~1~^~A~^^^1^23.^27.^5^22.^25.^~4~^~02/01/2011~ -~21280~^~305~^191.^6^3.^~1~^~A~^^^1^182.^202.^5^182.^199.^~4~^~02/01/2011~ -~21280~^~306~^183.^6^5.^~1~^~A~^^^1^159.^201.^5^167.^197.^~4~^~02/01/2011~ -~21280~^~307~^611.^6^6.^~1~^~A~^^^1^595.^640.^5^594.^627.^~4~^~02/01/2011~ -~21280~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~ -~21280~^~601~^25.^3^2.^~1~^~A~^^^1^21.^29.^2^14.^34.^~4~^~02/01/2011~ -~21281~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~301~^149.^6^7.^~1~^~A~^^^1^130.^180.^5^130.^168.^~4~^~02/01/2011~ -~21281~^~304~^24.^6^0.^~1~^~A~^^^1^23.^25.^5^23.^24.^~4~^~02/01/2011~ -~21281~^~305~^197.^6^6.^~1~^~A~^^^1^181.^223.^5^180.^213.^~4~^~02/01/2011~ -~21281~^~306~^190.^6^6.^~1~^~A~^^^1^169.^212.^5^172.^207.^~4~^~02/01/2011~ -~21281~^~307~^693.^6^7.^~1~^~A~^^^1^671.^725.^5^673.^712.^~4~^~02/01/2011~ -~21281~^~601~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^22.^26.^~4~^~02/01/2011~ -~21282~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~268~^1021.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~301~^113.^4^9.^~1~^~A~^^^1^91.^132.^3^83.^141.^~2, 3~^~01/01/2005~ -~21282~^~304~^22.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~01/01/2005~ -~21282~^~305~^184.^4^6.^~1~^~A~^^^1^169.^196.^3^161.^205.^~2, 3~^~01/01/2005~ -~21282~^~306~^174.^4^3.^~1~^~A~^^^1^167.^182.^3^164.^184.^~2, 3~^~01/01/2005~ -~21282~^~307~^456.^4^14.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21282~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21282~^~319~^48.^4^11.^~1~^~A~^^^1^36.^81.^3^12.^83.^~2, 3~^~01/01/2005~ -~21282~^~320~^51.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21282~^~601~^20.^4^1.^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21283~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~301~^166.^9^9.^~1~^~A~^^^1^149.^234.^8^145.^187.^~2, 3~^~01/01/2005~ -~21283~^~304~^24.^9^0.^~1~^~A~^^^1^22.^25.^8^23.^24.^~2, 3~^~01/01/2005~ -~21283~^~305~^203.^9^6.^~1~^~A~^^^1^182.^249.^8^187.^217.^~2, 3~^~01/01/2005~ -~21283~^~306~^138.^9^3.^~1~^~A~^^^1^124.^157.^8^128.^147.^~2, 3~^~01/01/2005~ -~21283~^~307~^578.^9^12.^~1~^~A~^^^1^522.^646.^8^549.^606.^~2, 3~^~01/01/2005~ -~21283~^~318~^295.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~21283~^~319~^54.^4^7.^~1~^~A~^^^1^43.^78.^3^28.^79.^~2, 3~^~01/01/2005~ -~21283~^~320~^60.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~21283~^~321~^69.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21283~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~21283~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~21283~^~337~^1520.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21283~^~338~^47.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~21283~^~417~^77.^4^1.^~1~^~A~^^^1^72.^80.^3^71.^82.^~2, 3~^~01/01/2005~ -~21283~^~431~^45.^4^2.^~1~^~A~^^^1^40.^49.^3^38.^51.^~2, 3~^~06/01/2008~ -~21283~^~432~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~21283~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21283~^~601~^19.^9^0.^~1~^~A~^^^1^17.^21.^8^17.^19.^~2, 3~^~01/01/2005~ -~21284~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~268~^1150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~301~^152.^9^8.^~1~^~A~^^^1^128.^202.^8^133.^170.^~2, 3~^~01/01/2005~ -~21284~^~304~^23.^9^0.^~1~^~A~^^^1^22.^24.^8^22.^23.^~2, 3~^~01/01/2005~ -~21284~^~305~^196.^9^5.^~1~^~A~^^^1^169.^229.^8^182.^209.^~2, 3~^~01/01/2005~ -~21284~^~306~^150.^9^3.^~1~^~A~^^^1^137.^169.^8^142.^157.^~2, 3~^~01/01/2005~ -~21284~^~307~^671.^9^12.^~1~^~A~^^^1^622.^718.^8^642.^698.^~2, 3~^~01/01/2005~ -~21284~^~318~^294.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21284~^~319~^52.^4^10.^~1~^~A~^^^1^39.^84.^3^17.^86.^~2, 3~^~01/01/2005~ -~21284~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21284~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~417~^72.^4^3.^~1~^~A~^^^1^63.^82.^3^59.^84.^~2, 3~^~01/01/2005~ -~21284~^~431~^43.^4^2.^~1~^~A~^^^1^35.^48.^3^33.^52.^~2, 3~^~01/01/2005~ -~21284~^~432~^29.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~21284~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21284~^~601~^26.^9^0.^~1~^~A~^^^1^22.^28.^8^23.^27.^~2, 3~^~01/01/2005~ -~21285~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~301~^99.^4^4.^~1~^~A~^^^1^92.^110.^3^84.^112.^~2, 3~^~01/01/2005~ -~21285~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~01/01/2005~ -~21285~^~305~^160.^4^4.^~1~^~A~^^^1^150.^170.^3^147.^172.^~2, 3~^~01/01/2005~ -~21285~^~306~^160.^4^4.^~1~^~A~^^^1^150.^170.^3^147.^172.^~2, 3~^~01/01/2005~ -~21285~^~307~^570.^4^7.^~1~^~A~^^^1^550.^580.^3^547.^592.^~2, 3~^~01/01/2005~ -~21285~^~318~^172.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21285~^~319~^27.^4^1.^~1~^~A~^^^1^25.^33.^3^21.^33.^~2, 3~^~01/01/2005~ -~21285~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21285~^~417~^65.^4^5.^~1~^~A~^^^1^52.^74.^3^48.^82.^~2, 3~^~01/01/2005~ -~21285~^~431~^38.^4^4.^~1~^~A~^^^1^28.^45.^3^25.^50.^~2, 3~^~01/01/2005~ -~21285~^~432~^27.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21285~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~601~^21.^4^0.^~1~^~A~^^^1^20.^23.^3^18.^23.^~2, 3~^~01/01/2005~ -~21286~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~268~^1235.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~301~^238.^4^11.^~1~^~A~^^^1^210.^260.^3^202.^272.^~2, 3~^~01/01/2005~ -~21286~^~304~^22.^4^0.^~1~^~A~^^^1^22.^23.^3^21.^23.^~2, 3~^~01/01/2005~ -~21286~^~305~^245.^4^8.^~1~^~A~^^^1^220.^260.^3^217.^272.^~2, 3~^~01/01/2005~ -~21286~^~306~^160.^4^7.^~1~^~A~^^^1^140.^170.^3^137.^182.^~2, 3~^~01/01/2005~ -~21286~^~307~^528.^4^13.^~1~^~A~^^^1^500.^560.^3^483.^571.^~2, 3~^~01/01/2005~ -~21286~^~318~^390.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21286~^~319~^77.^4^9.^~1~^~A~^^^1^63.^106.^3^45.^108.^~2, 3~^~01/01/2005~ -~21286~^~320~^84.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21286~^~601~^28.^4^0.^~1~^~A~^^^1^26.^30.^3^25.^30.^~2, 3~^~01/01/2005~ -~21287~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~268~^1110.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~301~^233.^8^17.^~1~^~A~^^^1^156.^315.^7^192.^273.^~2, 3~^~02/01/2005~ -~21287~^~304~^28.^8^0.^~1~^~A~^^^1^26.^30.^7^26.^29.^~2, 3~^~02/01/2005~ -~21287~^~305~^231.^8^8.^~1~^~A~^^^1^187.^270.^7^210.^252.^~2, 3~^~02/01/2005~ -~21287~^~306~^170.^8^6.^~1~^~A~^^^1^143.^194.^7^154.^184.^~2, 3~^~02/01/2005~ -~21287~^~307~^454.^8^10.^~1~^~A~^^^1^398.^490.^7^428.^479.^~2, 3~^~02/01/2005~ -~21287~^~318~^360.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21287~^~319~^72.^3^6.^~1~^~A~^^^1^61.^82.^2^44.^98.^~2, 3~^~02/01/2005~ -~21287~^~320~^78.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21287~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~601~^24.^8^2.^~1~^~A~^^^1^15.^33.^7^18.^29.^~2, 3~^~02/01/2005~ -~21288~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21288~^~268~^1142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21288~^~301~^210.^8^10.^~1~^~A~^^^1^163.^239.^7^185.^234.^~2, 3~^~02/01/2005~ -~21288~^~304~^28.^8^0.^~1~^~A~^^^1^25.^30.^7^26.^29.^~2, 3~^~02/01/2005~ -~21288~^~305~^224.^8^4.^~1~^~A~^^^1^201.^239.^7^212.^235.^~2, 3~^~02/01/2005~ -~21288~^~306~^178.^8^5.^~1~^~A~^^^1^160.^206.^7^165.^191.^~2, 3~^~02/01/2005~ -~21288~^~307~^518.^8^6.^~1~^~A~^^^1^492.^545.^7^503.^532.^~2, 3~^~02/01/2005~ -~21288~^~318~^331.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~21288~^~319~^65.^3^3.^~1~^~A~^^^1^59.^71.^2^49.^81.^~2, 3~^~02/01/2005~ -~21288~^~320~^71.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~21288~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~601~^28.^8^1.^~1~^~A~^^^1^22.^32.^7^24.^30.^~2, 3~^~02/01/2005~ -~21289~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~268~^1017.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~301~^167.^3^10.^~1~^~A~^^^1^148.^184.^2^122.^211.^~2, 3~^~02/01/2005~ -~21289~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^26.^~2, 3~^~02/01/2005~ -~21289~^~305~^207.^3^3.^~1~^~A~^^^1^199.^211.^2^190.^223.^~2, 3~^~02/01/2005~ -~21289~^~306~^195.^3^6.^~1~^~A~^^^1^187.^208.^2^165.^223.^~2, 3~^~02/01/2005~ -~21289~^~307~^578.^3^9.^~1~^~A~^^^1^561.^595.^2^535.^619.^~2, 3~^~02/01/2005~ -~21289~^~318~^211.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21289~^~319~^46.^3^5.^~1~^~A~^^^1^39.^56.^2^22.^68.^~2, 3~^~02/01/2005~ -~21289~^~320~^48.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21289~^~601~^31.^3^2.^~1~^~A~^^^1^27.^36.^2^19.^42.^~2, 3~^~02/01/2005~ -~21290~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~268~^1100.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~301~^224.^3^50.^~1~^~A~^^^1^162.^325.^2^5.^442.^~2, 3~^~02/01/2005~ -~21290~^~304~^27.^3^1.^~1~^~A~^^^1^25.^29.^2^21.^32.^~2, 3~^~02/01/2005~ -~21290~^~305~^221.^3^25.^~1~^~A~^^^1^191.^271.^2^112.^329.^~2, 3~^~02/01/2005~ -~21290~^~306~^160.^3^17.^~1~^~A~^^^1^140.^195.^2^84.^235.^~2, 3~^~02/01/2005~ -~21290~^~307~^432.^3^24.^~1~^~A~^^^1^397.^480.^2^324.^538.^~2, 3~^~02/01/2005~ -~21290~^~318~^334.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21290~^~319~^71.^3^11.^~1~^~A~^^^1^56.^93.^2^23.^118.^~2, 3~^~02/01/2005~ -~21290~^~320~^76.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21290~^~601~^23.^3^4.^~1~^~A~^^^1^17.^33.^2^2.^43.^~2, 3~^~02/01/2005~ -~21291~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~268~^1109.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~301~^201.^3^34.^~1~^~A~^^^1^151.^267.^2^52.^349.^~2, 3~^~02/01/2005~ -~21291~^~304~^27.^3^1.^~1~^~A~^^^1^25.^29.^2^22.^31.^~2, 3~^~02/01/2005~ -~21291~^~305~^215.^3^18.^~1~^~A~^^^1^185.^250.^2^133.^296.^~2, 3~^~02/01/2005~ -~21291~^~306~^173.^3^15.^~1~^~A~^^^1^155.^204.^2^106.^239.^~2, 3~^~02/01/2005~ -~21291~^~307~^492.^3^27.^~1~^~A~^^^1^446.^540.^2^374.^608.^~2, 3~^~02/01/2005~ -~21291~^~318~^315.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21291~^~319~^59.^3^4.^~1~^~A~^^^1^54.^68.^2^41.^77.^~2, 3~^~02/01/2005~ -~21291~^~320~^65.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21291~^~601~^26.^3^4.^~1~^~A~^^^1^19.^33.^2^8.^43.^~2, 3~^~02/01/2005~ -~21292~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~268~^1294.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~301~^422.^2^^~1~^~A~^^^1^330.^513.^1^^^^~02/01/2005~ -~21292~^~304~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~02/01/2005~ -~21292~^~305~^297.^2^^~1~^~A~^^^1^242.^352.^1^^^^~02/01/2005~ -~21292~^~306~^177.^2^^~1~^~A~^^^1^155.^198.^1^^^^~02/01/2005~ -~21292~^~307~^455.^2^^~1~^~A~^^^1^403.^507.^1^^^^~02/01/2005~ -~21292~^~318~^542.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21292~^~319~^116.^2^^~1~^~A~^^^1^96.^135.^1^^^^~02/01/2005~ -~21292~^~320~^123.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21292~^~601~^39.^2^^~1~^~A~^^^1^31.^48.^1^^^^~02/01/2005~ -~21293~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~268~^1152.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~301~^209.^6^10.^~1~^~A~^^^1^180.^243.^5^181.^236.^~4~^~02/01/2011~ -~21293~^~304~^24.^6^0.^~1~^~A~^^^1^21.^26.^5^21.^25.^~4~^~02/01/2011~ -~21293~^~305~^228.^6^8.^~1~^~A~^^^1^202.^259.^5^205.^250.^~4~^~02/01/2011~ -~21293~^~306~^183.^6^5.^~1~^~A~^^^1^164.^198.^5^168.^197.^~4~^~02/01/2011~ -~21293~^~307~^674.^6^14.^~1~^~A~^^^1^605.^704.^5^635.^711.^~4~^~02/01/2011~ -~21293~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21293~^~417~^108.^4^4.^~1~^~A~^^^1^95.^114.^3^93.^121.^~2, 3~^~02/01/2005~ -~21293~^~431~^60.^4^3.^~1~^~A~^^^1^50.^67.^3^47.^71.^~2, 3~^~02/01/2005~ -~21293~^~432~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21293~^~601~^18.^3^1.^~1~^~A~^^^1^14.^20.^2^10.^25.^~4~^~02/01/2011~ -~21294~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~268~^1155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~301~^192.^6^8.^~1~^~A~^^^1^161.^210.^5^169.^214.^~4~^~02/01/2011~ -~21294~^~304~^21.^6^0.^~1~^~A~^^^1^21.^22.^5^21.^21.^~4~^~02/01/2005~ -~21294~^~305~^216.^6^6.^~1~^~A~^^^1^192.^232.^5^199.^233.^~4~^~02/01/2011~ -~21294~^~306~^170.^6^3.^~1~^~A~^^^1^158.^184.^5^159.^179.^~4~^~02/01/2011~ -~21294~^~307~^580.^6^8.^~1~^~A~^^^1^553.^603.^5^557.^601.^~4~^~02/01/2011~ -~21294~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21294~^~417~^106.^4^6.^~1~^~A~^^^1^90.^118.^3^84.^127.^~2, 3~^~02/01/2005~ -~21294~^~431~^66.^4^3.^~1~^~A~^^^1^58.^77.^3^53.^78.^~2, 3~^~02/01/2005~ -~21294~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~435~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21294~^~601~^18.^3^0.^~1~^~A~^^^1^17.^19.^2^15.^21.^~4~^~02/01/2011~ -~21295~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~268~^1278.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~301~^284.^6^12.^~1~^~A~^^^1^246.^333.^5^251.^316.^~4~^~02/01/2011~ -~21295~^~304~^24.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~02/01/2011~ -~21295~^~305~^298.^6^10.^~1~^~A~^^^1^270.^339.^5^271.^324.^~4~^~02/01/2011~ -~21295~^~306~^197.^6^4.^~1~^~A~^^^1^181.^212.^5^185.^207.^~4~^~02/01/2011~ -~21295~^~307~^857.^6^7.^~1~^~A~^^^1^830.^878.^5^836.^876.^~4~^~02/01/2011~ -~21295~^~417~^96.^4^4.^~1~^~A~^^^1^85.^107.^3^81.^110.^~2, 3~^~02/01/2005~ -~21295~^~431~^56.^4^3.^~1~^~A~^^^1^49.^66.^3^44.^67.^~2, 3~^~02/01/2005~ -~21295~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21295~^~601~^30.^3^2.^~1~^~A~^^^1^26.^34.^2^19.^40.^~4~^~02/01/2011~ -~21296~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~268~^1218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~301~^166.^6^7.^~1~^~A~^^^1^141.^197.^5^146.^185.^~4~^~02/01/2011~ -~21296~^~304~^24.^6^0.^~1~^~A~^^^1^22.^26.^5^22.^25.^~4~^~02/01/2011~ -~21296~^~305~^206.^6^5.^~1~^~A~^^^1^190.^228.^5^192.^218.^~4~^~02/01/2011~ -~21296~^~306~^207.^6^2.^~1~^~A~^^^1^198.^217.^5^200.^213.^~4~^~02/01/2011~ -~21296~^~307~^759.^6^5.^~1~^~A~^^^1^737.^776.^5^743.^773.^~4~^~02/01/2011~ -~21296~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21296~^~417~^112.^4^7.^~1~^~A~^^^1^100.^134.^3^86.^136.^~2, 3~^~02/01/2005~ -~21296~^~431~^68.^4^7.^~1~^~A~^^^1^57.^89.^3^44.^91.^~2, 3~^~02/01/2005~ -~21296~^~432~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21296~^~601~^26.^3^2.^~1~^~A~^^^1^22.^29.^2^16.^35.^~4~^~02/01/2011~ -~21297~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~268~^1216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~301~^147.^6^7.^~1~^~A~^^^1^122.^174.^5^128.^165.^~4~^~02/01/2011~ -~21297~^~304~^22.^6^0.^~1~^~A~^^^1^22.^23.^5^21.^22.^~4~^~02/01/2005~ -~21297~^~305~^193.^6^4.^~1~^~A~^^^1^179.^209.^5^180.^205.^~4~^~02/01/2011~ -~21297~^~306~^187.^6^3.^~1~^~A~^^^1^180.^201.^5^178.^195.^~4~^~02/01/2011~ -~21297~^~307~^676.^6^8.^~1~^~A~^^^1^637.^694.^5^654.^696.^~4~^~02/01/2011~ -~21297~^~324~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~21297~^~417~^103.^4^4.^~1~^~A~^^^1^91.^111.^3^89.^116.^~2, 3~^~02/01/2005~ -~21297~^~431~^57.^4^3.^~1~^~A~^^^1^52.^65.^3^47.^66.^~2, 3~^~02/01/2005~ -~21297~^~432~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21297~^~601~^23.^3^0.^~1~^~A~^^^1^22.^25.^2^19.^27.^~4~^~02/01/2011~ -~21298~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~268~^1038.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~301~^104.^4^3.^~1~^~A~^^^1^97.^110.^3^92.^115.^~2, 3~^~02/01/2005~ -~21298~^~304~^23.^4^0.^~1~^~A~^^^1^23.^24.^3^22.^24.^~2, 3~^~02/01/2005~ -~21298~^~305~^183.^4^4.^~1~^~A~^^^1^170.^190.^3^167.^197.^~2, 3~^~02/01/2005~ -~21298~^~306~^208.^4^4.^~1~^~A~^^^1^200.^220.^3^192.^222.^~2, 3~^~02/01/2005~ -~21298~^~307~^658.^4^15.^~1~^~A~^^^1^630.^700.^3^608.^706.^~2, 3~^~02/01/2005~ -~21298~^~318~^156.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21298~^~319~^29.^4^2.^~1~^~A~^^^1^24.^36.^3^20.^37.^~2, 3~^~02/01/2005~ -~21298~^~320~^32.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21298~^~417~^59.^4^1.^~1~^~A~^^^1^56.^62.^3^54.^62.^~2, 3~^~02/01/2005~ -~21298~^~431~^35.^4^2.^~1~^~A~^^^1^30.^42.^3^25.^43.^~2, 3~^~02/01/2005~ -~21298~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21298~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~601~^28.^4^0.^~1~^~A~^^^1^25.^29.^3^24.^30.^~2, 3~^~02/01/2005~ -~21299~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~21299~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~21299~^~268~^1113.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~301~^188.^12^8.^~1~^~A~^^^1^158.^243.^11^169.^205.^~4~^~02/01/2011~ -~21299~^~304~^24.^12^0.^~1~^~A~^^^1^21.^26.^11^23.^24.^~4~^~06/01/2005~ -~21299~^~305~^216.^12^5.^~1~^~A~^^^1^196.^259.^11^203.^228.^~4~^~02/01/2011~ -~21299~^~306~^172.^12^5.^~1~^~A~^^^1^148.^198.^11^160.^182.^~4~^~02/01/2011~ -~21299~^~307~^598.^12^24.^~1~^~A~^^^1^486.^704.^11^545.^651.^~4~^~02/01/2011~ -~21299~^~318~^358.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~21299~^~319~^61.^15^4.^~1~^~A~^^^4^54.^72.^3^47.^74.^~4~^~06/01/2005~ -~21299~^~320~^69.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~21299~^~321~^92.^2^^~1~^~A~^^^1^69.^116.^1^^^^~06/01/2009~ -~21299~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~06/01/2009~ -~21299~^~324~^0.^15^0.^~1~^~A~^^^4^0.^0.^3^0.^0.^~4~^~02/01/2005~ -~21299~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~07/01/2008~ -~21299~^~337~^1915.^2^^~1~^~A~^^^1^1520.^2310.^1^^^^~06/01/2009~ -~21299~^~338~^58.^2^^~1~^~A~^^^1^47.^69.^1^^^^~06/01/2009~ -~21299~^~417~^93.^8^15.^~1~^~A~^^^2^77.^108.^1^-101.^286.^~4~^~02/01/2005~ -~21299~^~431~^52.^8^7.^~1~^~A~^^^2^45.^60.^1^-39.^144.^~4~^~02/01/2005~ -~21299~^~432~^40.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21299~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~21299~^~601~^17.^6^0.^~1~^~A~^^^1^14.^20.^5^15.^19.^~4~^~02/01/2011~ -~21300~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21300~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21300~^~268~^1133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~301~^179.^12^5.^~1~^~A~^^^1^156.^210.^11^165.^191.^~2, 3~^~02/01/2011~ -~21300~^~304~^23.^12^0.^~1~^~A~^^^1^21.^25.^11^21.^23.^~2, 3~^~02/01/2011~ -~21300~^~305~^209.^12^4.^~1~^~A~^^^1^192.^232.^11^200.^218.^~2, 3~^~02/01/2011~ -~21300~^~306~^169.^12^2.^~1~^~A~^^^1^155.^184.^11^163.^175.^~2, 3~^~02/01/2011~ -~21300~^~307~^597.^12^10.^~1~^~A~^^^1^553.^685.^11^574.^619.^~2, 3~^~02/01/2011~ -~21300~^~318~^360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21300~^~319~^61.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21300~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21300~^~321~^93.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21300~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21300~^~324~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2005~ -~21300~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21300~^~337~^1927.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21300~^~338~^22.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~21300~^~417~^106.^4^6.^~1~^~A~^^^^90.^118.^^^^^~02/01/2005~ -~21300~^~431~^66.^4^3.^~1~^~A~^^^^58.^77.^^^^^~02/01/2005~ -~21300~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21300~^~435~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21300~^~601~^17.^6^0.^~1~^~A~^^^1^15.^19.^5^15.^19.^~2, 3~^~02/01/2011~ -~21301~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21301~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21301~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~301~^288.^12^9.^~1~^~A~^^^1^224.^341.^11^266.^309.^~2, 3~^~02/01/2011~ -~21301~^~304~^24.^12^0.^~1~^~A~^^^1^23.^26.^11^23.^24.^~2, 3~^~02/01/2011~ -~21301~^~305~^295.^12^7.^~1~^~A~^^^1^236.^339.^11^277.^311.^~2, 3~^~02/01/2011~ -~21301~^~306~^199.^12^5.^~1~^~A~^^^1^180.^234.^11^188.^210.^~2, 3~^~02/01/2011~ -~21301~^~307~^742.^12^34.^~1~^~A~^^^1^596.^878.^11^665.^819.^~2, 3~^~02/01/2011~ -~21301~^~318~^376.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21301~^~319~^64.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21301~^~320~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21301~^~321~^97.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21301~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21301~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21301~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21301~^~337~^2013.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21301~^~338~^30.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~21301~^~417~^96.^4^4.^~1~^~A~^^^^85.^107.^^^^^~02/01/2005~ -~21301~^~431~^56.^4^3.^~1~^~A~^^^^49.^66.^^^^^~02/01/2005~ -~21301~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21301~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~21301~^~601~^28.^6^1.^~1~^~A~^^^1^22.^34.^5^23.^32.^~2, 3~^~02/01/2011~ -~21302~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21302~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21302~^~268~^1180.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~301~^153.^12^5.^~1~^~A~^^^1^129.^197.^11^140.^165.^~2, 3~^~02/01/2011~ -~21302~^~304~^24.^12^0.^~1~^~A~^^^1^22.^27.^11^23.^25.^~2, 3~^~06/01/2005~ -~21302~^~305~^198.^12^3.^~1~^~A~^^^1^182.^228.^11^190.^206.^~2, 3~^~02/01/2011~ -~21302~^~306~^195.^12^4.^~1~^~A~^^^1^159.^217.^11^184.^205.^~2, 3~^~02/01/2011~ -~21302~^~307~^685.^12^22.^~1~^~A~^^^1^595.^776.^11^635.^734.^~2, 3~^~02/01/2011~ -~21302~^~318~^365.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21302~^~319~^62.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21302~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21302~^~321~^94.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21302~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21302~^~324~^0.^15^0.^~1~^~A~^^^4^0.^0.^3^0.^0.^~4~^~02/01/2005~ -~21302~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21302~^~337~^1957.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21302~^~338~^24.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~21302~^~417~^92.^8^19.^~1~^~A~^^^2^72.^112.^1^-157.^341.^~4~^~02/01/2005~ -~21302~^~431~^56.^8^12.^~1~^~A~^^^2^43.^68.^1^-103.^214.^~4~^~02/01/2005~ -~21302~^~432~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21302~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~21302~^~601~^25.^6^1.^~1~^~A~^^^1^21.^29.^5^21.^28.^~2, 3~^~02/01/2011~ -~21303~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21303~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21303~^~268~^1199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~301~^148.^12^4.^~1~^~A~^^^1^122.^180.^11^137.^158.^~2, 3~^~02/01/2011~ -~21303~^~304~^23.^12^0.^~1~^~A~^^^1^22.^25.^11^22.^23.^~2, 3~^~02/01/2011~ -~21303~^~305~^195.^12^3.^~1~^~A~^^^1^179.^223.^11^186.^203.^~2, 3~^~02/01/2011~ -~21303~^~306~^189.^12^3.^~1~^~A~^^^1^169.^212.^11^180.^196.^~2, 3~^~02/01/2011~ -~21303~^~307~^684.^12^5.^~1~^~A~^^^1^637.^725.^11^671.^697.^~2, 3~^~02/01/2011~ -~21303~^~318~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~319~^63.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~02/01/2011~ -~21303~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~321~^95.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21303~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21303~^~324~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2005~ -~21303~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21303~^~337~^1966.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21303~^~338~^23.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~21303~^~417~^103.^4^4.^~1~^~A~^^^^91.^111.^^^^^~02/01/2005~ -~21303~^~431~^57.^4^3.^~1~^~A~^^^^52.^65.^^^^^~02/01/2005~ -~21303~^~432~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21303~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21303~^~601~^24.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^25.^~2, 3~^~02/01/2011~ -~21304~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21304~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21304~^~268~^1020.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~301~^120.^15^15.^~1~^~A~^^^4^99.^167.^3^70.^170.^~4~^~06/01/2005~ -~21304~^~304~^23.^15^0.^~1~^~A~^^^4^21.^24.^3^20.^24.^~4~^~06/01/2005~ -~21304~^~305~^183.^15^9.^~1~^~A~^^^4^160.^207.^3^152.^213.^~4~^~06/01/2005~ -~21304~^~306~^184.^15^10.^~1~^~A~^^^4^160.^208.^3^150.^217.^~4~^~06/01/2005~ -~21304~^~307~^589.^15^23.^~1~^~A~^^^4^552.^658.^3^514.^663.^~4~^~06/01/2005~ -~21304~^~318~^315.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~319~^54.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21304~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~321~^81.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21304~^~322~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21304~^~334~^0.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21304~^~337~^1689.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~07/01/2008~ -~21304~^~338~^26.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~21304~^~417~^62.^8^3.^~1~^~A~^^^2^59.^65.^1^18.^104.^~4~^~02/01/2005~ -~21304~^~431~^36.^8^1.^~1~^~A~^^^2^35.^38.^1^14.^58.^~4~^~02/01/2005~ -~21304~^~432~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21304~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~21304~^~601~^27.^15^2.^~1~^~A~^^^4^21.^31.^3^20.^33.^~4~^~06/01/2005~ -~21305~^~208~^291.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21305~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~268~^1217.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21305~^~301~^96.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~305~^307.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~306~^146.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~307~^652.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21305~^~319~^57.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~320~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~321~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~324~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~338~^81.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~431~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~432~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21305~^~601~^132.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21306~^~208~^318.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21306~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~268~^1332.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21306~^~301~^63.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~305~^316.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~306~^145.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~307~^737.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~318~^0.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21306~^~319~^0.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~320~^0.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21306~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~338~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~431~^37.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~432~^37.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21306~^~601~^24.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21307~^~208~^272.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21307~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~268~^1137.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21307~^~301~^109.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~305~^184.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~306~^158.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~307~^718.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~21307~^~318~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21307~^~319~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~320~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~321~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~324~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~338~^94.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~417~^61.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~21307~^~431~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~432~^31.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21307~^~601~^147.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21309~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~301~^11.^6^0.^~1~^~A~^^^1^10.^12.^5^9.^11.^~4~^~08/01/2012~ -~21309~^~304~^24.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~08/01/2012~ -~21309~^~305~^272.^6^7.^~1~^~A~^^^1^252.^297.^5^253.^290.^~4~^~08/01/2012~ -~21309~^~306~^252.^6^5.^~1~^~A~^^^1^232.^272.^5^236.^266.^~4~^~08/01/2012~ -~21309~^~307~^566.^6^26.^~1~^~A~^^^1^478.^655.^5^497.^634.^~4~^~08/01/2012~ -~21309~^~601~^44.^12^0.^~1~^~A~^^^1^39.^50.^11^42.^45.^~4~^~06/01/2008~ -~21319~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~268~^1133.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~301~^19.^6^0.^~1~^~A~^^^1^18.^22.^5^17.^20.^~2, 3~^~05/01/2014~ -~21319~^~304~^20.^6^1.^~1~^~A~^^^1^16.^24.^5^17.^23.^~2, 3~^~05/01/2014~ -~21319~^~305~^99.^6^4.^~1~^~A~^^^1^82.^118.^5^86.^111.^~2, 3~^~05/01/2014~ -~21319~^~306~^341.^6^36.^~1~^~A~^^^1^222.^442.^5^245.^435.^~2, 3~^~05/01/2014~ -~21319~^~307~^580.^6^29.^~1~^~A~^^^1^444.^642.^5^505.^654.^~2, 3~^~05/01/2014~ -~21319~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21319~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~21319~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21319~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21319~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21319~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21319~^~338~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21319~^~417~^12.^3^0.^~1~^~A~^^^1^12.^12.^2^10.^12.^~2, 3~^~05/01/2014~ -~21319~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~208~^228.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21321~^~268~^954.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21321~^~301~^84.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~305~^260.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~306~^173.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~307~^358.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~318~^57.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21321~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21321~^~321~^34.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~417~^96.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21327~^~208~^272.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~268~^1137.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~301~^109.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~307~^673.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21327~^~318~^313.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~601~^147.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21328~^~208~^312.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21328~^~268~^1305.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21328~^~301~^63.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~305~^316.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~306~^145.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~307~^737.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~318~^0.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~417~^37.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~601~^24.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~208~^283.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21329~^~268~^1183.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21329~^~301~^96.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~305~^307.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~306~^146.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~307~^652.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~318~^264.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~601~^132.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21333~^~208~^162.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21333~^~268~^678.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21333~^~301~^129.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~305~^111.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~306~^193.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~307~^67.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~318~^321.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~417~^9.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~432~^9.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~601~^15.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21334~^~268~^659.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21334~^~301~^110.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~304~^11.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~305~^91.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~306~^173.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~307~^47.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~318~^271.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~320~^81.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~417~^11.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~432~^11.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~601~^13.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~208~^188.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21335~^~268~^787.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21335~^~301~^127.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~304~^12.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~305~^112.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~306~^186.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~307~^80.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~318~^307.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~319~^92.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~320~^92.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~417~^2.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~432~^2.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~601~^16.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~208~^186.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21336~^~268~^778.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21336~^~301~^139.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~304~^19.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~305~^128.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~306~^246.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~307~^94.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~318~^270.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~319~^81.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~320~^81.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~417~^0.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~432~^0.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~601~^13.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~208~^177.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21338~^~268~^741.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21338~^~301~^135.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~304~^17.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~305~^116.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~306~^208.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~307~^54.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~318~^312.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~417~^3.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~432~^3.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~601~^16.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~208~^165.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21339~^~268~^690.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21339~^~301~^129.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~305~^111.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~306~^198.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~307~^75.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~318~^323.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~417~^5.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~432~^5.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~601~^15.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21340~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~301~^132.^6^2.^~1~^~A~^^^1^125.^137.^5^126.^137.^~2, 3~^~06/01/2015~ -~21340~^~304~^18.^6^0.^~1~^~A~^^^1^17.^19.^5^17.^18.^~2, 3~^~06/01/2015~ -~21340~^~305~^168.^6^2.^~1~^~A~^^^1^157.^175.^5^160.^174.^~2, 3~^~06/01/2015~ -~21340~^~306~^150.^6^3.^~1~^~A~^^^1^139.^159.^5^142.^158.^~2, 3~^~06/01/2015~ -~21340~^~307~^744.^6^7.^~1~^~A~^^^1^715.^763.^5^725.^762.^~2, 3~^~06/01/2015~ -~21340~^~318~^474.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21340~^~319~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~320~^79.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21340~^~321~^149.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~322~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~334~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~337~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~338~^204.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~417~^63.^2^^~1~^~A~^^^1^57.^70.^1^^^^~06/01/2015~ -~21340~^~601~^137.^4^4.^~1~^~A~^^^1^127.^147.^3^123.^150.^~2, 3~^~06/01/2015~ -~21341~^~208~^285.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~268~^1192.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~301~^51.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~304~^15.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~305~^256.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~306~^207.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~307~^549.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~318~^234.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~320~^70.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~601~^173.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21344~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~268~^1180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~301~^178.^6^5.^~1~^~A~^^^1^165.^196.^5^164.^191.^~4~^~07/01/2012~ -~21344~^~304~^21.^6^0.^~1~^~A~^^^1^20.^22.^5^20.^21.^~4~^~07/01/2012~ -~21344~^~305~^166.^6^1.^~1~^~A~^^^1^162.^172.^5^161.^170.^~4~^~07/01/2012~ -~21344~^~306~^216.^6^3.^~1~^~A~^^^1^206.^229.^5^206.^225.^~4~^~07/01/2012~ -~21344~^~307~^668.^6^19.^~1~^~A~^^^1^618.^750.^5^616.^718.^~4~^~07/01/2012~ -~21344~^~601~^48.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21345~^~208~^262.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21345~^~268~^1096.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21345~^~301~^106.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~304~^21.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~305~^165.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~306~^242.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~307~^476.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21345~^~318~^200.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21345~^~417~^45.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21345~^~601~^57.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~208~^234.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21350~^~268~^978.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21350~^~301~^124.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~304~^21.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~305~^130.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~306~^192.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21350~^~318~^186.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~417~^50.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~601~^35.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21355~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~268~^1140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~301~^88.^6^4.^~1~^~A~^^^1^75.^102.^5^77.^98.^~4~^~06/01/2008~ -~21355~^~304~^20.^6^0.^~1~^~A~^^^1^18.^21.^5^18.^20.^~4~^~07/01/2012~ -~21355~^~305~^139.^6^1.^~1~^~A~^^^1^132.^143.^5^134.^143.^~4~^~06/01/2008~ -~21355~^~306~^173.^6^3.^~1~^~A~^^^1^164.^187.^5^164.^182.^~4~^~07/01/2012~ -~21355~^~307~^624.^6^5.^~1~^~A~^^^1^610.^644.^5^610.^637.^~4~^~07/01/2012~ -~21355~^~601~^27.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~208~^240.^0^^~9~^~MC~^^^^^^^^^^~06/01/2008~ -~21356~^~268~^1004.^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~21356~^~301~^96.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~304~^20.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~305~^150.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~306~^184.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~307~^555.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21356~^~318~^55.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~417~^72.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~601~^22.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21357~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~301~^192.^6^18.^~1~^~A~^^^1^127.^234.^5^144.^240.^~4~^~07/01/2012~ -~21357~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^18.^21.^~4~^~07/01/2012~ -~21357~^~305~^200.^6^3.^~1~^~A~^^^1^189.^213.^5^191.^209.^~4~^~07/01/2012~ -~21357~^~306~^173.^6^4.^~1~^~A~^^^1^162.^192.^5^161.^184.^~4~^~07/01/2012~ -~21357~^~307~^617.^6^10.^~1~^~A~^^^1^568.^646.^5^588.^644.^~4~^~07/01/2012~ -~21357~^~417~^79.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~601~^165.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~208~^333.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~268~^1395.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~301~^224.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~304~^21.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~305~^163.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~306~^188.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~307~^693.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~318~^260.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~417~^69.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~601~^39.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~208~^274.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~268~^1146.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~301~^172.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~304~^18.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~305~^171.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~306~^171.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~307~^572.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~318~^335.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~601~^154.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21360~^~208~^304.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~21360~^~268~^1272.^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~21360~^~301~^109.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~304~^12.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~305~^335.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~306~^121.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~307~^863.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~318~^399.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~601~^167.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21361~^~268~^1573.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21361~^~301~^55.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~305~^323.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~306~^177.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~307~^875.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~318~^26.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~319~^8.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~320~^8.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~417~^91.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~601~^29.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~208~^311.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~21362~^~268~^1301.^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~21362~^~301~^58.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~305~^303.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~306~^165.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~307~^664.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~318~^214.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~319~^64.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~320~^64.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~417~^85.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~601~^152.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~208~^285.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21363~^~268~^1193.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21363~^~301~^50.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~305~^216.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~306~^170.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~307~^437.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~318~^258.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~601~^109.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21364~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21364~^~268~^1230.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21364~^~301~^78.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~305~^171.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~306~^148.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~307~^484.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~318~^202.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~417~^54.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~601~^19.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~208~^272.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21365~^~268~^1138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21365~^~301~^57.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~304~^13.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~305~^177.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~306~^125.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~307~^283.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~318~^241.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~417~^65.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~601~^9.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21376~^~208~^81.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~21376~^~268~^339.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~21376~^~301~^48.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~307~^230.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21376~^~318~^2012.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~601~^28.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~208~^122.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21377~^~268~^512.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21377~^~301~^46.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~307~^273.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~21377~^~318~^2485.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~601~^22.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21378~^~208~^61.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21378~^~268~^253.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21378~^~301~^63.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~304~^10.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~305~^45.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~306~^201.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~307~^132.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~318~^2891.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~417~^53.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~601~^12.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~208~^20.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21379~^~268~^85.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21379~^~301~^24.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~306~^220.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~307~^12.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~318~^2850.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~417~^57.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~432~^57.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~601~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~208~^105.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~268~^439.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~301~^86.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~305~^84.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~306~^167.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~307~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21380~^~318~^59.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~417~^13.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~432~^13.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~601~^5.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~208~^90.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~268~^377.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~301~^87.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~304~^12.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~305~^71.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~306~^165.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~307~^38.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~318~^62.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~417~^11.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~432~^11.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~601~^5.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21382~^~208~^243.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~268~^1016.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~301~^128.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~304~^23.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~305~^131.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~306~^194.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~307~^464.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~318~^93.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~417~^57.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~601~^25.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21383~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~268~^1289.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~301~^90.^6^2.^~1~^~A~^^^1^83.^101.^5^82.^96.^~2, 3~^~05/01/2013~ -~21383~^~304~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^16.^17.^~2, 3~^~05/01/2013~ -~21383~^~305~^138.^6^2.^~1~^~A~^^^1^131.^146.^5^131.^144.^~2, 3~^~05/01/2013~ -~21383~^~306~^158.^6^2.^~1~^~A~^^^1^148.^168.^5^150.^165.^~2, 3~^~05/01/2013~ -~21383~^~307~^577.^6^7.^~1~^~A~^^^1^559.^613.^5^556.^597.^~2, 3~^~05/01/2013~ -~21383~^~318~^568.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21383~^~319~^170.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~320~^170.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21383~^~417~^50.^3^1.^~1~^~A~^^^1^48.^52.^2^44.^55.^~2, 3~^~05/01/2013~ -~21383~^~601~^123.^3^7.^~1~^~A~^^^1^112.^137.^2^91.^155.^~2, 3~^~05/01/2013~ -~21384~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~268~^1573.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~301~^107.^4^2.^~1~^~A~^^^1^100.^112.^3^98.^115.^~2, 3~^~11/01/2005~ -~21384~^~304~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^18.^20.^~2, 3~^~11/01/2005~ -~21384~^~305~^158.^4^3.^~1~^~A~^^^1^152.^166.^3^147.^167.^~2, 3~^~11/01/2005~ -~21384~^~306~^205.^4^0.^~1~^~A~^^^1^204.^207.^3^202.^207.^~2, 3~^~11/01/2005~ -~21384~^~307~^782.^4^14.^~1~^~A~^^^1^747.^816.^3^735.^828.^~2, 3~^~11/01/2005~ -~21384~^~601~^43.^4^1.^~1~^~A~^^^1^38.^47.^3^37.^49.^~2, 3~^~11/01/2005~ -~21385~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~301~^231.^4^3.^~1~^~A~^^^1^221.^238.^3^219.^243.^~2, 3~^~11/01/2005~ -~21385~^~304~^17.^4^0.^~1~^~A~^^^1^17.^18.^3^16.^18.^~2, 3~^~11/01/2005~ -~21385~^~305~^249.^4^3.^~1~^~A~^^^1^238.^257.^3^236.^260.^~2, 3~^~11/01/2005~ -~21385~^~306~^168.^4^1.^~1~^~A~^^^1^166.^171.^3^163.^171.^~2, 3~^~11/01/2005~ -~21385~^~307~^650.^4^6.^~1~^~A~^^^1^638.^663.^3^629.^669.^~2, 3~^~11/01/2005~ -~21385~^~601~^139.^4^2.^~1~^~A~^^^1^135.^144.^3^131.^145.^~2, 3~^~11/01/2005~ -~21386~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~268~^1458.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~301~^53.^4^3.^~1~^~A~^^^1^43.^62.^3^40.^64.^~2, 3~^~11/01/2005~ -~21386~^~304~^19.^4^1.^~1~^~A~^^^1^17.^21.^3^15.^22.^~2, 3~^~11/01/2005~ -~21386~^~305~^87.^4^6.^~1~^~A~^^^1^75.^104.^3^65.^108.^~2, 3~^~11/01/2005~ -~21386~^~306~^111.^4^3.^~1~^~A~^^^1^104.^119.^3^101.^120.^~2, 3~^~11/01/2005~ -~21386~^~307~^428.^4^25.^~1~^~A~^^^1^378.^487.^3^345.^509.^~2, 3~^~11/01/2005~ -~21386~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2005~ -~21387~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~268~^1265.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~301~^15.^6^1.^~1~^~A~^^^1^10.^21.^5^10.^18.^~2, 3~^~05/01/2014~ -~21387~^~304~^20.^6^1.^~1~^~A~^^^1^16.^23.^5^17.^23.^~2, 3~^~05/01/2014~ -~21387~^~305~^95.^6^4.^~1~^~A~^^^1^87.^119.^5^81.^107.^~2, 3~^~05/01/2014~ -~21387~^~306~^364.^6^13.^~1~^~A~^^^1^305.^400.^5^329.^398.^~2, 3~^~05/01/2014~ -~21387~^~307~^568.^6^27.^~1~^~A~^^^1^468.^676.^5^497.^637.^~2, 3~^~05/01/2014~ -~21387~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21387~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21387~^~321~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~05/01/2014~ -~21387~^~322~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~2, 3~^~05/01/2014~ -~21387~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2006~ -~21387~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2006~ -~21387~^~338~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^24.^~2, 3~^~05/01/2014~ -~21387~^~417~^13.^3^1.^~1~^~A~^^^1^10.^16.^2^4.^21.^~2, 3~^~05/01/2014~ -~21387~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2006~ -~21388~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21388~^~268~^1687.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21388~^~301~^54.^4^0.^~1~^~A~^^^1^52.^55.^3^51.^55.^~2, 3~^~11/01/2005~ -~21388~^~304~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^13.^13.^~2, 3~^~11/01/2005~ -~21388~^~305~^180.^4^2.^~1~^~A~^^^1^176.^185.^3^173.^186.^~2, 3~^~11/01/2005~ -~21388~^~306~^131.^4^1.^~1~^~A~^^^1^126.^135.^3^124.^136.^~2, 3~^~11/01/2005~ -~21388~^~307~^554.^4^9.^~1~^~A~^^^1^534.^572.^3^523.^584.^~2, 3~^~11/01/2005~ -~21388~^~601~^21.^4^0.^~1~^~A~^^^1^18.^22.^3^18.^23.^~2, 3~^~11/01/2005~ -~21389~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21389~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~21389~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21389~^~301~^35.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~305~^111.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~306~^192.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~307~^289.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21389~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~320~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~321~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~322~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~337~^806.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~338~^31.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~417~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~432~^23.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21389~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21389~^~601~^46.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~268~^946.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~301~^46.^7^9.^~11~^~JO~^^^0^34.^65.^2^5.^87.^~4~^~02/01/2006~ -~21390~^~304~^18.^7^0.^~11~^~JO~^^^0^18.^18.^2^17.^18.^~4~^~02/01/2006~ -~21390~^~305~^97.^7^3.^~11~^~JO~^^^0^90.^103.^2^80.^113.^~4~^~02/01/2006~ -~21390~^~306~^188.^7^9.^~11~^~JO~^^^0^169.^200.^2^147.^228.^~4~^~02/01/2006~ -~21390~^~307~^342.^7^26.^~11~^~JO~^^^0^313.^395.^2^226.^456.^~4~^~02/01/2006~ -~21390~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~321~^103.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~322~^15.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~337~^1068.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~417~^64.^4^0.^~6~^~JA~^^^0^47.^48.^1^41.^52.^~4~^~07/01/2009~ -~21390~^~431~^33.^4^3.^~1~^~A~^^^^27.^42.^^^^^~02/01/2007~ -~21390~^~432~^31.^0^^~6~^~JA~^^^^^^^^^^~02/01/2007~ -~21390~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~601~^33.^8^1.^~11~^~JO~^^^0^30.^35.^2^26.^39.^~4~^~02/01/2006~ -~21393~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21393~^~268~^1084.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21393~^~301~^103.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~306~^194.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~307~^386.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~431~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~432~^5.^1^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21393~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21393~^~601~^32.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21395~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~301~^150.^18^3.^~1~^~A~^^^1^67.^196.^6^141.^159.^~2, 3~^~07/01/2012~ -~21395~^~304~^21.^18^0.^~1~^~A~^^^1^20.^25.^8^21.^21.^~2, 3~^~07/01/2012~ -~21395~^~305~^165.^18^1.^~1~^~A~^^^1^146.^172.^8^161.^167.^~2, 3~^~07/01/2012~ -~21395~^~306~^226.^18^2.^~1~^~A~^^^1^206.^273.^8^219.^231.^~2, 3~^~07/01/2012~ -~21395~^~307~^617.^18^13.^~1~^~A~^^^1^389.^750.^6^583.^650.^~2, 3~^~07/01/2012~ -~21395~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~319~^40.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21395~^~321~^51.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~322~^1.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~324~^7.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2013~ -~21395~^~334~^3.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~337~^980.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~338~^17.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~417~^43.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~431~^26.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21395~^~601~^50.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21396~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21396~^~268~^1136.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21396~^~301~^106.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~304~^21.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~305~^165.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~306~^242.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~307~^480.^0^^~1~^~RKA~^^^^^^^^^^~02/01/2006~ -~21396~^~318~^200.^0^^~1~^~RKA~^^^^^^^^^^~02/01/2006~ -~21396~^~417~^45.^0^^~1~^~RKA~^^^^^^^^^^~02/01/2006~ -~21396~^~601~^57.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21397~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21397~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21397~^~268~^1121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~301~^73.^6^5.^~1~^~A~^^^1^49.^86.^5^59.^87.^~2, 3~^~08/01/2012~ -~21397~^~304~^18.^6^0.^~1~^~A~^^^1^17.^18.^5^17.^18.^~2, 3~^~08/01/2012~ -~21397~^~305~^125.^6^4.^~1~^~A~^^^1^108.^138.^5^112.^137.^~2, 3~^~08/01/2012~ -~21397~^~306~^208.^6^3.^~1~^~A~^^^1^198.^224.^5^198.^218.^~2, 3~^~08/01/2012~ -~21397~^~307~^473.^6^23.^~1~^~A~^^^1^377.^539.^5^411.^534.^~2, 3~^~08/01/2012~ -~21397~^~318~^256.^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~21397~^~319~^44.^3^4.^~1~^~A~^^^1^36.^50.^2^26.^62.^~2, 3~^~08/01/2012~ -~21397~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~21397~^~321~^64.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21397~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2013~ -~21397~^~324~^3.^0^^~4~^~BFFN~^~21390~^^^^^^^^^~03/01/2009~ -~21397~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21397~^~337~^208.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21397~^~338~^41.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21397~^~417~^51.^1^^~6~^~JA~^^^0^46.^51.^^^^^~07/01/2009~ -~21397~^~431~^30.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21397~^~432~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21397~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21397~^~601~^51.^3^1.^~1~^~A~^^^1^48.^52.^2^44.^57.^~2, 3~^~08/01/2012~ -~21398~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~268~^1127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~301~^179.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~305~^183.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~306~^223.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~307~^591.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~318~^237.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~319~^47.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~320~^51.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~321~^47.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~324~^3.^0^^~4~^~BFFN~^~21397~^^^^^^^^^~03/01/2009~ -~21398~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~337~^810.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~431~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~432~^4.^1^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21398~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~601~^48.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21399~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21399~^~268~^1059.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~301~^68.^2^^~1~^~A~^^^2^58.^78.^^^^^~02/01/2006~ -~21399~^~304~^19.^2^^~1~^~A~^^^2^19.^19.^^^^^~02/01/2006~ -~21399~^~305~^131.^2^^~1~^~A~^^^2^128.^134.^^^^^~02/01/2006~ -~21399~^~306~^202.^2^^~1~^~A~^^^2^189.^214.^^^^^~02/01/2006~ -~21399~^~307~^405.^2^^~1~^~A~^^^2^387.^422.^^^^^~02/01/2006~ -~21399~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~321~^49.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~324~^4.^0^^~4~^~BFFN~^~21389~^^^^^^^^^~03/01/2009~ -~21399~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~337~^77.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~417~^27.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~21399~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21399~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~601~^49.^2^^~1~^~A~^^^2^47.^51.^^^^^~02/01/2006~ -~21400~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~268~^1091.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~301~^127.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~305~^136.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~306~^182.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~307~^485.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~318~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~319~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~320~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~321~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~324~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~417~^27.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~431~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~21400~^~432~^9.^1^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21400~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21401~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~262~^0.^0^^~4~^~BFPN~^~21229~^^^^^^^^^~03/01/2009~ -~21401~^~263~^0.^0^^~4~^~BFPN~^~21229~^^^^^^^^^~03/01/2009~ -~21401~^~268~^1136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~301~^17.^10^0.^~1~^~A~^^^1^12.^28.^4^15.^18.^~2, 3~^~05/01/2014~ -~21401~^~304~^28.^10^0.^~1~^~A~^^^1^26.^33.^7^27.^29.^~2, 3~^~05/01/2014~ -~21401~^~305~^282.^10^5.^~1~^~A~^^^1^246.^309.^8^270.^293.^~2, 3~^~05/01/2014~ -~21401~^~306~^373.^10^6.^~1~^~A~^^^1^296.^538.^5^356.^389.^~2, 3~^~05/01/2014~ -~21401~^~307~^769.^10^17.^~1~^~A~^^^1^541.^920.^6^725.^811.^~2, 3~^~05/01/2014~ -~21401~^~318~^11.^1^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21401~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~320~^3.^1^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~21401~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21401~^~324~^7.^0^^~4~^~BFFN~^~21229~^^^^^^^^^~08/01/2012~ -~21401~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21401~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21401~^~338~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~417~^19.^6^0.^~1~^~A~^^^1^8.^42.^3^17.^20.^~2, 3~^~05/01/2014~ -~21401~^~431~^6.^0^^~4~^~BFPN~^~21229~^^^^^^^^^~05/01/2009~ -~21401~^~432~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~601~^48.^6^1.^~1~^~A~^^^1^40.^57.^2^41.^53.^~2, 3~^~05/01/2014~ -~21410~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~262~^0.^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~263~^0.^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~268~^1235.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~301~^94.^3^3.^~1~^~A~^^^1^88.^99.^2^80.^106.^~2, 3~^~09/01/2005~ -~21410~^~304~^20.^3^1.^~1~^~A~^^^1^18.^21.^2^15.^24.^~2, 3~^~09/01/2005~ -~21410~^~305~^185.^3^4.^~1~^~A~^^^1^178.^192.^2^167.^202.^~2, 3~^~09/01/2005~ -~21410~^~306~^123.^3^5.^~1~^~A~^^^1^113.^132.^2^99.^146.^~2, 3~^~09/01/2005~ -~21410~^~307~^550.^3^25.^~1~^~A~^^^1^499.^576.^2^440.^658.^~2, 3~^~09/01/2005~ -~21410~^~318~^212.^0^^~1~^~AS~^^^^^^^^^^~09/01/2005~ -~21410~^~319~^64.^3^22.^~1~^~A~^^^1^18.^93.^2^-35.^162.^~2, 3~^~09/01/2005~ -~21410~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~09/01/2005~ -~21410~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~ -~21410~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~324~^18.^0^^~4~^~BFFN~^~21005~^^^^^^^^^~03/01/2009~ -~21410~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~338~^119.^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~417~^53.^3^6.^~1~^~A~^^^1^41.^60.^2^26.^79.^~2, 3~^~09/01/2005~ -~21410~^~431~^39.^3^6.^~1~^~A~^^^1^26.^47.^2^10.^66.^~2, 3~^~11/01/2006~ -~21410~^~432~^15.^0^^~1~^~AS~^^^^^^^^^^~09/01/2005~ -~21410~^~435~^80.^0^^~4~^~NC~^~21005~^^^^^^^^^~03/01/2009~ -~21410~^~601~^133.^3^2.^~1~^~A~^^^1^127.^137.^2^119.^145.^~2, 3~^~09/01/2005~ -~21411~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~262~^0.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21411~^~263~^0.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21411~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~301~^93.^4^6.^~1~^~A~^^^1^80.^110.^3^73.^113.^~2, 3~^~09/01/2005~ -~21411~^~304~^22.^4^0.^~1~^~A~^^^1^21.^23.^3^20.^23.^~2, 3~^~09/01/2005~ -~21411~^~305~^204.^4^13.^~1~^~A~^^^1^172.^235.^3^161.^246.^~2, 3~^~09/01/2005~ -~21411~^~306~^145.^4^4.^~1~^~A~^^^1^133.^157.^3^128.^160.^~2, 3~^~09/01/2005~ -~21411~^~307~^642.^1^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~21411~^~318~^306.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~319~^81.^4^9.^~1~^~A~^^^1^56.^101.^3^49.^112.^~2, 3~^~09/01/2005~ -~21411~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~321~^20.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~322~^0.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~324~^15.^0^^~4~^~BFFN~^~21410~^^^^^^^^^~03/01/2009~ -~21411~^~334~^4.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~337~^0.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21411~^~338~^151.^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~417~^47.^4^2.^~1~^~A~^^^1^41.^53.^3^38.^55.^~2, 3~^~09/01/2005~ -~21411~^~431~^38.^4^2.^~1~^~A~^^^1^35.^44.^3^30.^44.^~2, 3~^~11/01/2006~ -~21411~^~432~^10.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21411~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~601~^130.^4^3.^~1~^~A~^^^1^123.^139.^3^119.^140.^~2, 3~^~09/01/2005~ -~21412~^~208~^182.^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21412~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~263~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~268~^760.^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21412~^~301~^135.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~304~^17.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~305~^116.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~306~^208.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~307~^54.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21412~^~319~^31.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21412~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21412~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~417~^3.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~432~^3.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~21412~^~601~^16.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~208~^169.^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21413~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~263~^43.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~268~^707.^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21413~^~301~^129.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~304~^14.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~305~^111.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~306~^198.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~307~^75.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21413~^~319~^25.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~320~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21413~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~431~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~21413~^~601~^15.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21415~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~301~^108.^6^0.^~1~^~A~^^^1^104.^110.^5^105.^110.^~2, 3~^~04/01/2014~ -~21415~^~304~^13.^6^0.^~1~^~A~^^^1^13.^14.^5^12.^13.^~2, 3~^~04/01/2014~ -~21415~^~305~^309.^6^2.^~1~^~A~^^^1^296.^316.^5^301.^316.^~2, 3~^~04/01/2014~ -~21415~^~306~^173.^6^10.^~1~^~A~^^^1^141.^214.^5^145.^199.^~2, 3~^~04/01/2014~ -~21415~^~307~^745.^6^11.^~1~^~A~^^^1^706.^785.^5^714.^775.^~2, 3~^~04/01/2014~ -~21415~^~318~^212.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21415~^~319~^64.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21415~^~417~^91.^3^3.^~1~^~A~^^^1^85.^95.^2^77.^105.^~2, 3~^~04/01/2014~ -~21415~^~601~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~01/01/2007~ -~21416~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21416~^~268~^674.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21416~^~301~^31.^4^1.^~1~^~A~^^^1^28.^35.^3^26.^36.^~2, 3~^~01/01/2007~ -~21416~^~304~^7.^4^0.^~1~^~A~^^^1^7.^8.^3^6.^8.^~2, 3~^~01/01/2007~ -~21416~^~305~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^20.^~2, 3~^~01/01/2007~ -~21416~^~306~^118.^4^5.^~1~^~A~^^^1^112.^134.^3^101.^135.^~2, 3~^~01/01/2007~ -~21416~^~307~^218.^4^4.^~1~^~A~^^^1^210.^230.^3^203.^231.^~2, 3~^~01/01/2007~ -~21416~^~318~^185.^2^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~21416~^~319~^56.^2^^~1~^~A~^^^1^14.^97.^1^^^^~01/01/2007~ -~21416~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~21416~^~601~^7.^4^0.^~1~^~A~^^^1^5.^8.^3^5.^8.^~2, 3~^~01/01/2007~ -~21417~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21417~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21417~^~301~^12.^4^0.^~1~^~A~^^^1^12.^13.^3^11.^12.^~2, 3~^~01/01/2007~ -~21417~^~304~^26.^4^0.^~1~^~A~^^^1^26.^26.^3^25.^26.^~2, 3~^~01/01/2007~ -~21417~^~305~^265.^4^3.^~1~^~A~^^^1^254.^270.^3^253.^277.^~2, 3~^~01/01/2007~ -~21417~^~306~^269.^4^3.^~1~^~A~^^^1^258.^276.^3^256.^280.^~2, 3~^~01/01/2007~ -~21417~^~307~^922.^4^18.^~1~^~A~^^^1^892.^964.^3^864.^979.^~2, 3~^~01/01/2007~ -~21417~^~601~^52.^4^0.^~1~^~A~^^^1^51.^52.^3^50.^52.^~2, 3~^~01/01/2007~ -~21418~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~268~^1060.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~301~^12.^4^0.^~1~^~A~^^^1^12.^12.^3^11.^12.^~2, 3~^~01/01/2007~ -~21418~^~304~^28.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^29.^~2, 3~^~01/01/2007~ -~21418~^~305~^276.^4^8.^~1~^~A~^^^1^254.^291.^3^249.^301.^~2, 3~^~01/01/2007~ -~21418~^~306~^289.^4^8.^~1~^~A~^^^1^267.^304.^3^262.^315.^~2, 3~^~01/01/2007~ -~21418~^~307~^997.^4^30.^~1~^~A~^^^1^936.^1080.^3^900.^1093.^~2, 3~^~01/01/2007~ -~21418~^~601~^53.^4^1.^~1~^~A~^^^1^50.^57.^3^47.^57.^~2, 3~^~01/01/2007~ -~21419~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~268~^1496.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~301~^55.^6^0.^~1~^~A~^^^1^52.^57.^5^52.^57.^~2, 3~^~04/01/2014~ -~21419~^~304~^16.^6^0.^~1~^~A~^^^1^15.^16.^5^15.^16.^~2, 3~^~04/01/2014~ -~21419~^~305~^538.^6^5.^~1~^~A~^^^1^517.^548.^5^524.^550.^~2, 3~^~04/01/2014~ -~21419~^~306~^115.^6^4.^~1~^~A~^^^1^105.^133.^5^103.^125.^~2, 3~^~11/01/2006~ -~21419~^~307~^1070.^6^24.^~1~^~A~^^^1^981.^1120.^5^1008.^1132.^~2, 3~^~04/01/2014~ -~21419~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21419~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~21419~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21419~^~417~^81.^3^3.^~1~^~A~^^^1^75.^88.^2^64.^98.^~2, 3~^~04/01/2014~ -~21419~^~601~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~11/01/2006~ -~21420~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~301~^28.^4^0.^~1~^~A~^^^1^27.^29.^3^26.^29.^~2, 3~^~11/01/2006~ -~21420~^~304~^9.^4^0.^~1~^~A~^^^1^8.^10.^3^7.^10.^~2, 3~^~11/01/2006~ -~21420~^~305~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^21.^~2, 3~^~11/01/2006~ -~21420~^~306~^140.^4^6.^~1~^~A~^^^1^129.^156.^3^120.^160.^~2, 3~^~11/01/2006~ -~21420~^~307~^189.^4^3.^~1~^~A~^^^1^178.^197.^3^175.^201.^~2, 3~^~11/01/2006~ -~21420~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21420~^~319~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~11/01/2006~ -~21420~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21420~^~601~^2.^4^0.^~1~^~A~^^^1^2.^2.^3^1.^2.^~2, 3~^~11/01/2006~ -~21421~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~268~^1148.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~301~^25.^4^0.^~1~^~A~^^^1^23.^27.^3^21.^27.^~2, 3~^~11/01/2006~ -~21421~^~304~^33.^4^0.^~1~^~A~^^^1^30.^34.^3^29.^35.^~2, 3~^~11/01/2006~ -~21421~^~305~^298.^4^7.^~1~^~A~^^^1^277.^312.^3^274.^321.^~2, 3~^~11/01/2006~ -~21421~^~306~^333.^4^8.^~1~^~A~^^^1^310.^345.^3^307.^358.^~2, 3~^~11/01/2006~ -~21421~^~307~^948.^4^102.^~1~^~A~^^^1^762.^1240.^3^622.^1273.^~2, 3~^~11/01/2006~ -~21421~^~601~^51.^4^1.^~1~^~A~^^^1^48.^55.^3^45.^56.^~2, 3~^~11/01/2006~ -~21422~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~268~^1469.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~301~^32.^4^0.^~1~^~A~^^^1^30.^33.^3^29.^33.^~2, 3~^~11/01/2006~ -~21422~^~304~^28.^4^0.^~1~^~A~^^^1^28.^29.^3^27.^29.^~2, 3~^~11/01/2006~ -~21422~^~305~^299.^4^8.^~1~^~A~^^^1^277.^320.^3^270.^326.^~2, 3~^~11/01/2006~ -~21422~^~306~^288.^4^5.^~1~^~A~^^^1^274.^298.^3^271.^303.^~2, 3~^~11/01/2006~ -~21422~^~307~^1140.^4^61.^~1~^~A~^^^1^971.^1260.^3^946.^1334.^~2, 3~^~11/01/2006~ -~21422~^~601~^40.^4^1.^~1~^~A~^^^1^38.^44.^3^35.^44.^~2, 3~^~11/01/2006~ -~21424~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~268~^1606.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~301~^117.^6^18.^~1~^~A~^^^1^61.^176.^5^70.^164.^~2, 3~^~04/01/2014~ -~21424~^~304~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^22.^26.^~2, 3~^~04/01/2014~ -~21424~^~305~^252.^6^8.^~1~^~A~^^^1^226.^275.^5^231.^272.^~2, 3~^~04/01/2014~ -~21424~^~306~^244.^6^10.^~1~^~A~^^^1^222.^292.^5^217.^271.^~2, 3~^~04/01/2014~ -~21424~^~307~^1042.^6^62.^~1~^~A~^^^1^852.^1230.^5^879.^1203.^~2, 3~^~04/01/2014~ -~21424~^~318~^66.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21424~^~319~^20.^2^^~1~^~A~^^^1^18.^22.^1^^^^~04/01/2014~ -~21424~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21424~^~601~^82.^3^9.^~1~^~A~^^^1^70.^100.^2^42.^122.^~2, 3~^~04/01/2014~ -~21425~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~268~^622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~301~^25.^6^3.^~1~^~A~^^^1^12.^34.^5^16.^33.^~2, 3~^~04/01/2014~ -~21425~^~304~^27.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^28.^~2, 3~^~04/01/2014~ -~21425~^~305~^255.^6^4.^~1~^~A~^^^1^240.^271.^5^242.^268.^~2, 3~^~04/01/2014~ -~21425~^~306~^285.^6^9.^~1~^~A~^^^1^258.^320.^5^260.^309.^~2, 3~^~04/01/2014~ -~21425~^~307~^499.^6^30.^~1~^~A~^^^1^375.^602.^5^420.^576.^~2, 3~^~04/01/2014~ -~21425~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21425~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21425~^~601~^96.^3^6.^~1~^~A~^^^1^88.^108.^2^69.^122.^~2, 3~^~04/01/2014~ -~21426~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~268~^730.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~301~^16.^6^1.^~1~^~A~^^^1^13.^22.^5^13.^19.^~2, 3~^~04/01/2007~ -~21426~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^22.^24.^~2, 3~^~04/01/2007~ -~21426~^~305~^223.^6^2.^~1~^~A~^^^1^213.^228.^5^216.^229.^~2, 3~^~04/01/2007~ -~21426~^~306~^273.^6^5.^~1~^~A~^^^1^251.^290.^5^258.^287.^~2, 3~^~04/01/2007~ -~21426~^~307~^524.^6^38.^~1~^~A~^^^1^378.^649.^5^426.^622.^~2, 3~^~04/01/2007~ -~21426~^~319~^11.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21426~^~601~^137.^6^3.^~1~^~A~^^^1^128.^147.^5^129.^145.^~2, 3~^~04/01/2007~ -~21427~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~268~^732.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~301~^20.^6^2.^~1~^~A~^^^1^15.^30.^5^14.^26.^~2, 3~^~04/01/2007~ -~21427~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^19.^20.^~2, 3~^~04/01/2014~ -~21427~^~305~^213.^6^6.^~1~^~A~^^^1^185.^229.^5^196.^228.^~2, 3~^~04/01/2014~ -~21427~^~306~^230.^6^2.^~1~^~A~^^^1^224.^236.^5^225.^235.^~2, 3~^~04/01/2014~ -~21427~^~307~^568.^6^45.^~1~^~A~^^^1^401.^679.^5^451.^683.^~2, 3~^~04/01/2014~ -~21427~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21427~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21427~^~601~^122.^3^4.^~1~^~A~^^^1^115.^129.^2^104.^139.^~2, 3~^~04/01/2014~ -~21428~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~301~^40.^6^5.^~1~^~A~^^^1^27.^60.^5^26.^53.^~2, 3~^~04/01/2014~ -~21428~^~304~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^24.^~2, 3~^~04/01/2014~ -~21428~^~305~^249.^6^5.^~1~^~A~^^^1^232.^268.^5^234.^263.^~2, 3~^~04/01/2014~ -~21428~^~306~^286.^6^17.^~1~^~A~^^^1^245.^361.^5^240.^330.^~2, 3~^~04/01/2014~ -~21428~^~307~^738.^6^33.^~1~^~A~^^^1^631.^864.^5^651.^824.^~2, 3~^~04/01/2014~ -~21428~^~318~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21428~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21428~^~601~^141.^3^7.^~1~^~A~^^^1^129.^155.^2^108.^173.^~2, 3~^~04/01/2014~ -~21429~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~268~^1939.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~301~^41.^12^1.^~1~^~A~^^^1^33.^53.^11^37.^44.^~2, 3~^~04/01/2007~ -~21429~^~304~^18.^12^0.^~1~^~A~^^^1^16.^21.^11^16.^18.^~2, 3~^~04/01/2007~ -~21429~^~305~^149.^12^3.^~1~^~A~^^^1^124.^167.^11^141.^157.^~2, 3~^~04/01/2007~ -~21429~^~306~^170.^12^2.^~1~^~A~^^^1^162.^185.^11^165.^175.^~2, 3~^~04/01/2007~ -~21429~^~307~^828.^12^34.^~1~^~A~^^^1^540.^951.^11^752.^904.^~2, 3~^~04/01/2007~ -~21429~^~318~^116.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~21429~^~319~^35.^6^2.^~1~^~A~^^^1^28.^43.^5^28.^40.^~2, 3~^~04/01/2007~ -~21429~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~21429~^~601~^59.^12^2.^~1~^~A~^^^1^45.^68.^11^53.^63.^~2, 3~^~04/01/2007~ -~21430~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~268~^642.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~301~^20.^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~304~^28.^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~305~^253.^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~306~^309.^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~307~^477.^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21430~^~601~^87.^0^^~4~^~BFSN~^~21425~^^^^^^^^^~04/01/2007~ -~21431~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~268~^713.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~301~^16.^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~304~^23.^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~305~^224.^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~306~^273.^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~307~^526.^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~319~^11.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21431~^~601~^137.^0^^~4~^~BFSN~^~21426~^^^^^^^^^~04/01/2007~ -~21432~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~301~^21.^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~304~^22.^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~305~^223.^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~306~^271.^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~307~^558.^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~319~^14.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21432~^~601~^118.^0^^~4~^~BFSN~^~21427~^^^^^^^^^~05/01/2007~ -~21433~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~268~^986.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~301~^30.^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~304~^25.^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~305~^226.^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~306~^265.^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~307~^714.^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~319~^14.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21433~^~601~^146.^0^^~4~^~BFSN~^~21428~^^^^^^^^^~04/01/2007~ -~21434~^~208~^231.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~268~^966.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~301~^33.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~304~^25.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~305~^225.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~306~^267.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~307~^606.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~320~^17.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~601~^81.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21435~^~208~^239.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~268~^999.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~301~^29.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~304~^23.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~305~^211.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~306~^250.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~307~^625.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~319~^22.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21435~^~601~^117.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21436~^~208~^269.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~268~^1125.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~301~^64.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~304~^22.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~305~^230.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~306~^237.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21436~^~307~^781.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~318~^50.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~319~^15.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~320~^15.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~601~^104.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~208~^297.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~268~^1241.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~301~^77.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~304~^24.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~305~^250.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~306~^266.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~307~^884.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~318~^48.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~319~^14.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~320~^14.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~601~^113.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21438~^~208~^268.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~268~^1121.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~301~^27.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~304~^24.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~305~^215.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~306~^258.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~307~^607.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~319~^17.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21438~^~601~^76.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~208~^274.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~268~^1146.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~301~^25.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~304~^21.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~305~^198.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~306~^237.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~307~^632.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~319~^19.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21439~^~601~^109.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~208~^309.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~268~^1293.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~301~^30.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~304~^20.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~305~^189.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~306~^225.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~307~^682.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~319~^23.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21440~^~601~^91.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21441~^~208~^337.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~268~^1409.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~301~^35.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~304~^22.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~305~^192.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~306~^223.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~307~^765.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~319~^23.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21441~^~601~^107.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21442~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~301~^20.^6^2.^~1~^~A~^^^1^14.^31.^5^13.^26.^~2, 3~^~04/01/2014~ -~21442~^~304~^29.^6^0.^~1~^~A~^^^1^26.^31.^5^27.^31.^~2, 3~^~04/01/2014~ -~21442~^~305~^219.^6^4.^~1~^~A~^^^1^199.^233.^5^206.^231.^~2, 3~^~04/01/2014~ -~21442~^~306~^327.^6^6.^~1~^~A~^^^1^307.^345.^5^311.^343.^~2, 3~^~04/01/2014~ -~21442~^~307~^526.^6^38.^~1~^~A~^^^1^363.^624.^5^427.^624.^~2, 3~^~04/01/2014~ -~21442~^~318~^12.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21442~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21442~^~601~^97.^3^7.^~1~^~A~^^^1^88.^111.^2^66.^127.^~2, 3~^~04/01/2014~ -~21443~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~268~^713.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~306~^321.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~307~^478.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~319~^10.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~21443~^~601~^127.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~21444~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~268~^1811.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~301~^26.^6^2.^~1~^~A~^^^1^19.^34.^5^19.^32.^~2, 3~^~04/01/2014~ -~21444~^~304~^19.^6^0.^~1~^~A~^^^1^17.^20.^5^17.^19.^~2, 3~^~04/01/2014~ -~21444~^~305~^119.^6^3.^~1~^~A~^^^1^109.^132.^5^110.^128.^~2, 3~^~04/01/2014~ -~21444~^~306~^192.^6^3.^~1~^~A~^^^1^182.^206.^5^182.^201.^~2, 3~^~04/01/2014~ -~21444~^~307~^769.^6^26.^~1~^~A~^^^1^656.^832.^5^699.^838.^~2, 3~^~04/01/2014~ -~21444~^~318~^84.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21444~^~319~^25.^2^^~1~^~A~^^^1^24.^27.^1^^^^~04/01/2014~ -~21444~^~320~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21444~^~601~^82.^3^5.^~1~^~A~^^^1^71.^88.^2^58.^106.^~2, 3~^~04/01/2014~ -~21445~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~268~^785.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~301~^34.^6^7.^~1~^~A~^^^1^17.^57.^5^15.^52.^~2, 3~^~06/01/2014~ -~21445~^~304~^24.^6^0.^~1~^~A~^^^1^23.^25.^5^23.^24.^~2, 3~^~06/01/2014~ -~21445~^~305~^187.^6^3.^~1~^~A~^^^1^178.^199.^5^178.^195.^~2, 3~^~06/01/2014~ -~21445~^~306~^294.^6^3.^~1~^~A~^^^1^282.^301.^5^286.^302.^~2, 3~^~06/01/2014~ -~21445~^~307~^601.^6^14.^~1~^~A~^^^1^545.^645.^5^563.^638.^~2, 3~^~06/01/2014~ -~21445~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~21445~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~21445~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~21445~^~601~^131.^3^5.^~1~^~A~^^^1^125.^141.^2^107.^153.^~2, 3~^~06/01/2014~ -~21446~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~301~^38.^6^6.^~1~^~A~^^^1^23.^55.^5^22.^53.^~2, 3~^~04/01/2014~ -~21446~^~304~^26.^6^0.^~1~^~A~^^^1^25.^29.^5^24.^27.^~2, 3~^~04/01/2014~ -~21446~^~305~^188.^6^4.^~1~^~A~^^^1^171.^202.^5^176.^198.^~2, 3~^~04/01/2014~ -~21446~^~306~^314.^6^5.^~1~^~A~^^^1^299.^333.^5^299.^329.^~2, 3~^~04/01/2014~ -~21446~^~307~^814.^6^45.^~1~^~A~^^^1^685.^975.^5^696.^930.^~2, 3~^~04/01/2014~ -~21446~^~318~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21446~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~21446~^~601~^156.^3^1.^~1~^~A~^^^1^155.^159.^2^151.^161.^~2, 3~^~04/01/2014~ -~21456~^~208~^274.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~268~^1147.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~301~^23.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21456~^~304~^25.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21456~^~305~^191.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~306~^283.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~307~^540.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~318~^53.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~320~^16.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~601~^98.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~208~^293.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~268~^1228.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~301~^20.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~304~^22.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~305~^171.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~306~^261.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~307~^588.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~319~^23.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2007~ -~21457~^~601~^108.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21458~^~208~^310.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~268~^1298.^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~301~^30.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~304~^21.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~305~^153.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~306~^243.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~307~^685.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~318~^64.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~319~^19.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~320~^19.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~601~^107.^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21459~^~208~^338.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~268~^1414.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~301~^31.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~304~^22.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~305~^149.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~306~^245.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~307~^788.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~318~^63.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~319~^19.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~320~^19.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~601~^114.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21461~^~208~^220.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~268~^922.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~301~^95.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~304~^32.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~305~^215.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~306~^226.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~307~^630.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~318~^359.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21461~^~319~^21.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21461~^~321~^169.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~322~^9.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~324~^5.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~337~^240.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~338~^73.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~417~^31.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~431~^6.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~432~^25.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21461~^~601~^46.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~208~^257.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~268~^1077.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~301~^92.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~304~^31.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~305~^224.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~306~^256.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~307~^605.^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~318~^343.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21462~^~319~^17.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~320~^32.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~321~^166.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~322~^9.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~324~^7.^0^^~4~^~BFFN~^~21461~^^^^^^^^^~03/01/2009~ -~21462~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~337~^237.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~338~^72.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~417~^30.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~21462~^~431~^6.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~432~^23.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21462~^~601~^38.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21463~^~208~^84.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~268~^351.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~301~^105.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~304~^17.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~305~^93.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~306~^189.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~307~^49.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~318~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21463~^~319~^29.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~320~^30.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~321~^12.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~324~^4.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~338~^12.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~417~^51.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~431~^38.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~432~^13.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21463~^~601~^3.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21464~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~262~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21464~^~263~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21464~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~301~^23.^12^2.^~1~^~A~^^^1^12.^34.^11^17.^27.^~2, 3~^~04/01/2014~ -~21464~^~304~^28.^12^0.^~1~^~A~^^^1^26.^31.^11^27.^29.^~2, 3~^~05/01/2009~ -~21464~^~305~^237.^12^6.^~1~^~A~^^^1^199.^271.^11^223.^251.^~2, 3~^~05/01/2009~ -~21464~^~306~^306.^12^8.^~1~^~A~^^^1^258.^345.^11^288.^324.^~2, 3~^~04/01/2014~ -~21464~^~307~^512.^12^23.^~1~^~A~^^^1^363.^624.^11^460.^564.^~2, 3~^~04/01/2014~ -~21464~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~319~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^^~04/01/2014~ -~21464~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~321~^0.^0^^~4~^~BFFN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~322~^0.^0^^~4~^~BFFN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~324~^5.^0^^~4~^~BFZN~^~05063~^^^^^^^^^~05/01/2009~ -~21464~^~334~^0.^0^^~4~^~BFFN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~337~^0.^0^^~4~^~BFFN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~338~^0.^0^^~4~^~BFFN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~417~^12.^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~431~^0.^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~432~^12.^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~435~^12.^0^^~4~^~NC~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~601~^97.^6^4.^~1~^~A~^^^1^88.^111.^5^85.^107.^~2, 3~^~04/01/2014~ -~21465~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~262~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21465~^~263~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21465~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~301~^16.^12^0.^~1~^~A~^^^2^15.^16.^1^8.^23.^~2~^~05/01/2009~ -~21465~^~304~^24.^12^0.^~1~^~A~^^^2^23.^24.^1^19.^28.^~2~^~05/01/2009~ -~21465~^~305~^211.^12^12.^~1~^~A~^^^2^199.^223.^1^55.^366.^~2~^~05/01/2009~ -~21465~^~306~^291.^12^17.^~1~^~A~^^^2^273.^309.^1^63.^518.^~2~^~05/01/2009~ -~21465~^~307~^492.^12^32.^~1~^~A~^^^2^460.^524.^1^83.^900.^~2~^~05/01/2009~ -~21465~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~319~^11.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~320~^11.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~321~^0.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~322~^0.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~324~^5.^0^^~4~^~BFZN~^~05012~^^^^^^^^^~05/01/2009~ -~21465~^~334~^0.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~337~^0.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~338~^0.^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~417~^10.^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~431~^0.^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~432~^10.^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~435~^10.^0^^~4~^~NC~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~601~^133.^12^4.^~1~^~A~^^^2^128.^137.^1^71.^193.^~2~^~05/01/2009~ -~21466~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~262~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21466~^~263~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21466~^~268~^747.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~301~^24.^12^2.^~1~^~A~^^^1^15.^57.^10^18.^29.^~2, 3~^~07/01/2014~ -~21466~^~304~^21.^12^0.^~1~^~A~^^^1^19.^25.^7^20.^21.^~2, 3~^~07/01/2014~ -~21466~^~305~^206.^12^4.^~1~^~A~^^^1^178.^229.^5^194.^216.^~2, 3~^~07/01/2014~ -~21466~^~306~^248.^12^1.^~1~^~A~^^^1^224.^301.^8^244.^252.^~2, 3~^~07/01/2014~ -~21466~^~307~^577.^12^32.^~1~^~A~^^^1^401.^679.^5^493.^660.^~2, 3~^~07/01/2014~ -~21466~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~319~^12.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~07/01/2014~ -~21466~^~320~^12.^0^^~4~^~NC~^~05345~^^^^^^^^^~07/01/2014~ -~21466~^~321~^0.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~322~^0.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~324~^8.^0^^~4~^~BFZN~^~05097~^^^^^^^^^~05/01/2009~ -~21466~^~334~^0.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~337~^0.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~338~^0.^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~417~^12.^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~431~^0.^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~432~^12.^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21466~^~601~^125.^6^3.^~1~^~A~^^^1^115.^141.^3^114.^135.^~2, 3~^~07/01/2014~ -~21467~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~262~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21467~^~263~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21467~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~301~^40.^12^3.^~1~^~A~^^^1^23.^60.^8^31.^49.^~2, 3~^~07/01/2014~ -~21467~^~304~^24.^12^0.^~1~^~A~^^^1^22.^29.^10^23.^25.^~2, 3~^~07/01/2014~ -~21467~^~305~^225.^12^7.^~1~^~A~^^^1^171.^268.^6^206.^243.^~2, 3~^~07/01/2014~ -~21467~^~306~^296.^12^10.^~1~^~A~^^^1^245.^361.^6^269.^322.^~2, 3~^~07/01/2014~ -~21467~^~307~^761.^12^24.^~1~^~A~^^^1^631.^975.^9^704.^816.^~2, 3~^~07/01/2014~ -~21467~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~319~^10.^2^^~1~^~A~^^^1^9.^10.^^^^^~04/01/2014~ -~21467~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21467~^~321~^0.^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~322~^0.^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~324~^3.^0^^~4~^~BFZN~^~05106~^^^^^^^^^~05/01/2009~ -~21467~^~334~^0.^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~337~^0.^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~338~^0.^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~417~^8.^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~431~^0.^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~432~^8.^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~435~^8.^0^^~4~^~NC~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~601~^148.^6^4.^~1~^~A~^^^1^129.^159.^3^133.^162.^~2, 3~^~07/01/2014~ -~21468~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~262~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21468~^~263~^0.^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21468~^~268~^1664.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~301~^92.^12^13.^~1~^~A~^^^1^19.^176.^5^57.^125.^~2, 3~^~04/01/2014~ -~21468~^~304~^23.^12^0.^~1~^~A~^^^1^17.^28.^6^21.^24.^~2, 3~^~04/01/2014~ -~21468~^~305~^215.^12^5.^~1~^~A~^^^1^109.^275.^5^200.^229.^~2, 3~^~04/01/2014~ -~21468~^~306~^230.^12^7.^~1~^~A~^^^1^182.^292.^5^210.^249.^~2, 3~^~04/01/2014~ -~21468~^~307~^965.^12^45.^~1~^~A~^^^1^656.^1230.^5^849.^1081.^~2, 3~^~04/01/2014~ -~21468~^~318~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~319~^21.^4^1.^~1~^~A~^^^1^18.^27.^1^9.^33.^~2, 3~^~04/01/2014~ -~21468~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~321~^0.^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~322~^0.^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~324~^7.^0^^~4~^~BFZN~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~334~^0.^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~337~^0.^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~338~^0.^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~417~^41.^0^^~4~^~BFNN~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~431~^32.^0^^~4~^~BFNN~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~432~^9.^0^^~4~^~BFNN~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~435~^64.^0^^~4~^~NC~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~601~^82.^6^6.^~1~^~A~^^^1^70.^100.^2^55.^109.^~2, 3~^~04/01/2014~ -~21469~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~268~^963.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~301~^45.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~304~^26.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~305~^230.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~306~^282.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~307~^657.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~319~^10.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~324~^5.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~417~^21.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~431~^10.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~432~^11.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~601~^92.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21470~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21470~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~268~^1118.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21470~^~301~^24.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~304~^22.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~305~^188.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~306~^253.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~307~^591.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~318~^75.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~319~^22.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~320~^22.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~324~^5.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~417~^21.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~431~^12.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~432~^10.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21470~^~601~^111.^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~208~^274.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~268~^1147.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~301~^54.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~304~^22.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~305~^210.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~306~^240.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~307~^747.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21471~^~319~^16.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21471~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~324~^7.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~417~^25.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~431~^14.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~432~^11.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21471~^~601~^106.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~208~^310.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21472~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~268~^1298.^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~301~^67.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~304~^24.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~305~^220.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~306~^262.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~307~^867.^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21472~^~319~^16.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21472~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~324~^5.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~417~^25.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21472~^~431~^17.^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21472~^~432~^8.^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21472~^~601~^114.^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21473~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~268~^1165.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~301~^235.^3^6.^~1~^~A~^^^1^222.^246.^2^205.^263.^~4~^~03/01/2010~ -~21473~^~304~^27.^3^0.^~1~^~A~^^^1^26.^28.^2^24.^28.^~4~^~03/01/2010~ -~21473~^~305~^354.^3^9.^~1~^~A~^^^1^336.^368.^2^313.^394.^~4~^~03/01/2010~ -~21473~^~306~^185.^3^9.^~1~^~A~^^^1^171.^204.^2^142.^226.^~4~^~03/01/2010~ -~21473~^~307~^806.^3^19.^~1~^~A~^^^1^768.^829.^2^723.^888.^~4~^~03/01/2010~ -~21473~^~318~^266.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21473~^~319~^80.^3^1.^~1~^~A~^^^1^77.^82.^2^74.^85.^~4~^~03/01/2010~ -~21473~^~320~^80.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21473~^~601~^28.^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21474~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~268~^1070.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~301~^192.^5^4.^~1~^~A~^^^1^179.^204.^4^180.^203.^~4~^~03/01/2010~ -~21474~^~304~^27.^5^0.^~1~^~A~^^^1^25.^27.^4^25.^27.^~4~^~03/01/2010~ -~21474~^~305~^241.^5^10.^~1~^~A~^^^1^224.^280.^4^213.^269.^~4~^~03/01/2010~ -~21474~^~306~^196.^5^4.^~1~^~A~^^^1^184.^208.^4^182.^208.^~4~^~03/01/2010~ -~21474~^~307~^696.^5^4.^~1~^~A~^^^1^681.^707.^4^684.^708.^~4~^~03/01/2010~ -~21474~^~318~^154.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21474~^~319~^46.^5^2.^~1~^~A~^^^1^40.^53.^4^40.^51.^~4~^~03/01/2010~ -~21474~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21474~^~601~^15.^3^0.^~1~^~A~^^^1^14.^17.^2^11.^18.^~4~^~03/01/2010~ -~21475~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~268~^1033.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~301~^275.^3^4.^~1~^~A~^^^1^266.^280.^2^256.^292.^~4~^~03/01/2010~ -~21475~^~304~^27.^3^0.^~1~^~A~^^^1^27.^28.^2^25.^28.^~4~^~03/01/2010~ -~21475~^~305~^236.^3^2.^~1~^~A~^^^1^231.^240.^2^224.^248.^~4~^~03/01/2010~ -~21475~^~306~^233.^3^4.^~1~^~A~^^^1^226.^240.^2^216.^250.^~4~^~03/01/2010~ -~21475~^~307~^506.^3^12.^~1~^~A~^^^1^482.^522.^2^452.^558.^~4~^~03/01/2010~ -~21475~^~318~^212.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21475~^~319~^64.^3^3.^~1~^~A~^^^1^56.^68.^2^47.^79.^~4~^~03/01/2010~ -~21475~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21475~^~601~^21.^2^^~1~^~A~^^^1^20.^22.^1^^^^~03/01/2010~ -~21476~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~268~^1167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~301~^226.^3^1.^~1~^~A~^^^1^223.^228.^2^219.^232.^~4~^~03/01/2010~ -~21476~^~304~^26.^3^0.^~1~^~A~^^^1^26.^27.^2^24.^28.^~4~^~03/01/2010~ -~21476~^~305~^270.^3^3.^~1~^~A~^^^1^266.^277.^2^254.^284.^~4~^~03/01/2010~ -~21476~^~306~^179.^3^5.^~1~^~A~^^^1^174.^190.^2^157.^201.^~4~^~03/01/2010~ -~21476~^~307~^753.^3^13.^~1~^~A~^^^1^731.^777.^2^695.^810.^~4~^~03/01/2010~ -~21476~^~318~^212.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21476~^~319~^64.^3^1.^~1~^~A~^^^1^61.^67.^2^56.^70.^~4~^~03/01/2010~ -~21476~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21476~^~601~^24.^2^^~1~^~A~^^^1^24.^25.^1^^^^~03/01/2010~ -~21477~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~268~^1110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~301~^157.^5^1.^~1~^~A~^^^1^153.^164.^4^152.^161.^~4~^~03/01/2010~ -~21477~^~304~^27.^5^0.^~1~^~A~^^^1^26.^27.^4^26.^26.^~4~^~03/01/2010~ -~21477~^~305~^225.^5^4.^~1~^~A~^^^1^210.^235.^4^213.^236.^~4~^~03/01/2010~ -~21477~^~306~^212.^5^3.^~1~^~A~^^^1^203.^224.^4^201.^221.^~4~^~03/01/2010~ -~21477~^~307~^743.^5^8.^~1~^~A~^^^1^714.^764.^4^719.^766.^~4~^~03/01/2010~ -~21477~^~318~^137.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21477~^~319~^41.^5^1.^~1~^~A~^^^1^38.^44.^4^37.^44.^~4~^~03/01/2010~ -~21477~^~320~^41.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21477~^~601~^18.^3^0.^~1~^~A~^^^1^18.^20.^2^16.^20.^~4~^~03/01/2010~ -~21478~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~268~^1185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~301~^209.^4^2.^~1~^~A~^^^1^202.^215.^3^200.^217.^~4~^~03/01/2010~ -~21478~^~304~^28.^4^0.^~1~^~A~^^^1^27.^29.^3^27.^29.^~4~^~03/01/2010~ -~21478~^~305~^213.^4^1.^~1~^~A~^^^1^210.^214.^3^209.^216.^~4~^~03/01/2010~ -~21478~^~306~^268.^4^6.^~1~^~A~^^^1^257.^279.^3^248.^288.^~4~^~03/01/2010~ -~21478~^~307~^663.^4^14.^~1~^~A~^^^1^634.^696.^3^618.^708.^~4~^~03/01/2010~ -~21478~^~318~^152.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21478~^~319~^46.^4^2.^~1~^~A~^^^1^40.^51.^3^37.^54.^~4~^~03/01/2010~ -~21478~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21478~^~601~^28.^2^^~1~^~A~^^^1^27.^28.^1^^^^~03/01/2010~ -~21479~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~268~^1066.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~301~^139.^6^5.^~1~^~A~^^^1^124.^155.^5^125.^152.^~4~^~03/01/2010~ -~21479~^~304~^27.^6^0.^~1~^~A~^^^1^26.^28.^5^25.^27.^~4~^~03/01/2010~ -~21479~^~305~^211.^6^5.^~1~^~A~^^^1^190.^228.^5^196.^226.^~4~^~03/01/2010~ -~21479~^~306~^210.^6^3.^~1~^~A~^^^1^196.^223.^5^200.^219.^~4~^~03/01/2010~ -~21479~^~307~^712.^6^8.^~1~^~A~^^^1^689.^740.^5^689.^734.^~4~^~03/01/2010~ -~21479~^~318~^117.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21479~^~319~^35.^6^2.^~1~^~A~^^^1^29.^42.^5^29.^40.^~4~^~03/01/2010~ -~21479~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21479~^~601~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^17.^20.^~4~^~03/01/2010~ -~21480~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~301~^161.^4^7.^~1~^~A~^^^1^149.^181.^3^138.^183.^~4~^~03/01/2010~ -~21480~^~304~^28.^4^0.^~1~^~A~^^^1^28.^28.^3^27.^28.^~4~^~03/01/2010~ -~21480~^~305~^187.^4^4.^~1~^~A~^^^1^179.^200.^3^173.^201.^~4~^~03/01/2010~ -~21480~^~306~^278.^4^3.^~1~^~A~^^^1^271.^284.^3^267.^288.^~4~^~03/01/2010~ -~21480~^~307~^555.^4^12.^~1~^~A~^^^1^529.^581.^3^515.^595.^~4~^~03/01/2010~ -~21480~^~318~^138.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21480~^~319~^41.^4^0.^~1~^~A~^^^1^40.^43.^3^38.^43.^~4~^~03/01/2010~ -~21480~^~320~^41.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~21480~^~601~^20.^2^^~1~^~A~^^^1^17.^23.^1^^^^~03/01/2010~ -~21482~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~262~^0.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~263~^0.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~268~^1181.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~301~^143.^12^4.^~1~^~A~^^^1^114.^173.^11^132.^152.^~4~^~02/01/2011~ -~21482~^~304~^23.^12^0.^~1~^~A~^^^1^20.^26.^11^21.^24.^~4~^~02/01/2011~ -~21482~^~305~^193.^12^4.^~1~^~A~^^^1^166.^220.^11^182.^203.^~4~^~02/01/2011~ -~21482~^~306~^190.^12^2.^~1~^~A~^^^1^177.^204.^11^184.^195.^~4~^~02/01/2011~ -~21482~^~307~^637.^12^14.^~1~^~A~^^^1^572.^735.^11^603.^669.^~4~^~02/01/2011~ -~21482~^~318~^351.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~319~^60.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~320~^67.^0^^~4~^~NC~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~321~^91.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~322~^0.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21482~^~334~^0.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~337~^1878.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~338~^22.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~417~^98.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~431~^55.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~432~^43.^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~601~^23.^6^1.^~1~^~A~^^^1^20.^27.^5^19.^26.^~4~^~02/01/2011~ -~21483~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~262~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~263~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~268~^1342.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~301~^213.^12^6.^~1~^~A~^^^1^165.^243.^11^198.^228.^~4~^~02/01/2011~ -~21483~^~304~^25.^12^0.^~1~^~A~^^^1^22.^27.^11^23.^25.^~4~^~02/01/2011~ -~21483~^~305~^254.^12^6.^~1~^~A~^^^1^211.^285.^11^240.^267.^~4~^~02/01/2011~ -~21483~^~306~^225.^12^4.^~1~^~A~^^^1^201.^258.^11^216.^234.^~4~^~02/01/2011~ -~21483~^~307~^782.^12^19.^~1~^~A~^^^1^683.^903.^11^738.^825.^~4~^~02/01/2011~ -~21483~^~318~^429.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~319~^59.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~320~^70.^0^^~4~^~NC~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~321~^140.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~322~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21483~^~334~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~337~^1836.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~338~^22.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~417~^86.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~431~^52.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~432~^34.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~601~^36.^6^1.^~1~^~A~^^^1^31.^41.^5^32.^40.^~4~^~02/01/2011~ -~21484~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~262~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~263~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~268~^1170.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~301~^144.^12^3.^~1~^~A~^^^1^119.^163.^11^135.^151.^~4~^~02/01/2011~ -~21484~^~304~^24.^12^0.^~1~^~A~^^^1^22.^28.^11^23.^25.^~4~^~02/01/2011~ -~21484~^~305~^193.^12^3.^~1~^~A~^^^1^167.^209.^11^185.^201.^~4~^~02/01/2011~ -~21484~^~306~^197.^12^5.^~1~^~A~^^^1^169.^226.^11^183.^209.^~4~^~02/01/2011~ -~21484~^~307~^633.^12^14.^~1~^~A~^^^1^534.^693.^11^599.^665.^~4~^~02/01/2011~ -~21484~^~318~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~319~^60.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~320~^68.^0^^~4~^~NC~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~321~^91.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~322~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21484~^~334~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~337~^1884.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~338~^23.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~417~^88.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~431~^53.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~432~^35.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~601~^23.^6^1.^~1~^~A~^^^1^21.^28.^5^20.^26.^~4~^~02/01/2011~ -~21485~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~262~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~263~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~268~^1383.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~301~^216.^12^7.^~1~^~A~^^^1^168.^249.^11^199.^232.^~4~^~02/01/2011~ -~21485~^~304~^25.^12^0.^~1~^~A~^^^1^23.^26.^11^23.^25.^~4~^~02/01/2011~ -~21485~^~305~^253.^12^4.^~1~^~A~^^^1^222.^273.^11^242.^263.^~4~^~02/01/2011~ -~21485~^~306~^223.^12^3.^~1~^~A~^^^1^205.^246.^11^214.^230.^~4~^~02/01/2011~ -~21485~^~307~^875.^12^29.^~1~^~A~^^^1^757.^1020.^11^810.^938.^~4~^~02/01/2011~ -~21485~^~318~^366.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~319~^62.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~320~^70.^0^^~4~^~NC~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~321~^94.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~322~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21485~^~334~^0.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~337~^1958.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~338~^24.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~417~^92.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~431~^56.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~432~^36.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~601~^37.^6^0.^~1~^~A~^^^1^34.^40.^5^34.^39.^~4~^~02/01/2011~ -~21486~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~268~^860.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~301~^123.^6^6.^~1~^~A~^^^1^97.^147.^5^106.^140.^~2, 3~^~03/01/2011~ -~21486~^~304~^19.^6^0.^~1~^~A~^^^1^18.^20.^5^18.^19.^~2, 3~^~03/01/2011~ -~21486~^~305~^167.^6^4.^~1~^~A~^^^1^147.^176.^5^154.^178.^~2, 3~^~03/01/2011~ -~21486~^~306~^161.^6^5.^~1~^~A~^^^1^139.^174.^5^147.^174.^~2, 3~^~03/01/2011~ -~21486~^~307~^560.^6^11.^~1~^~A~^^^1^527.^588.^5^530.^589.^~2, 3~^~03/01/2011~ -~21486~^~318~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~319~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~321~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~338~^66.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~417~^63.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~431~^47.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~601~^25.^3^1.^~1~^~A~^^^1^22.^28.^2^17.^31.^~2, 3~^~03/01/2011~ -~21487~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~301~^122.^6^3.^~1~^~A~^^^1^112.^131.^5^113.^130.^~2, 3~^~03/01/2011~ -~21487~^~304~^24.^6^0.^~1~^~A~^^^1^23.^25.^5^23.^24.^~2, 3~^~03/01/2011~ -~21487~^~305~^244.^6^3.^~1~^~A~^^^1^229.^254.^5^235.^253.^~2, 3~^~03/01/2011~ -~21487~^~306~^217.^6^7.^~1~^~A~^^^1^191.^237.^5^198.^234.^~2, 3~^~03/01/2011~ -~21487~^~307~^613.^6^10.^~1~^~A~^^^1^575.^642.^5^586.^640.^~2, 3~^~03/01/2011~ -~21487~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~319~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~321~^83.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~338~^77.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~417~^53.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~431~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~601~^29.^3^0.^~1~^~A~^^^1^27.^31.^2^24.^33.^~2, 3~^~03/01/2011~ -~21488~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~268~^1228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~301~^269.^6^12.^~1~^~A~^^^1^224.^296.^5^237.^299.^~4~^~03/01/2011~ -~21488~^~304~^25.^6^0.^~1~^~A~^^^1^24.^26.^5^24.^25.^~4~^~03/01/2011~ -~21488~^~305~^313.^6^5.^~1~^~A~^^^1^298.^334.^5^299.^326.^~4~^~03/01/2011~ -~21488~^~306~^183.^6^5.^~1~^~A~^^^1^167.^202.^5^168.^196.^~4~^~03/01/2011~ -~21488~^~307~^745.^6^12.^~1~^~A~^^^1^716.^800.^5^713.^775.^~4~^~03/01/2011~ -~21488~^~318~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~319~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~320~^72.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~321~^23.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~324~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~431~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~601~^37.^3^0.^~1~^~A~^^^1^36.^39.^2^34.^40.^~4~^~03/01/2011~ -~21490~^~208~^182.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~268~^762.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~301~^62.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~304~^23.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~305~^142.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~306~^197.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~307~^427.^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21490~^~318~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21490~^~319~^3.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~320~^11.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~321~^81.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~322~^14.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~324~^2.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~337~^347.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~338~^50.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~417~^39.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~431~^26.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~432~^13.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21490~^~601~^40.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21491~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~268~^1392.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~301~^196.^6^9.^~1~^~A~^^^1^168.^225.^5^172.^220.^~4~^~02/01/2011~ -~21491~^~304~^25.^6^0.^~1~^~A~^^^1^24.^26.^5^23.^25.^~4~^~02/01/2011~ -~21491~^~305~^244.^6^6.^~1~^~A~^^^1^222.^269.^5^225.^261.^~4~^~02/01/2011~ -~21491~^~306~^222.^6^5.^~1~^~A~^^^1^205.^243.^5^206.^236.^~4~^~02/01/2011~ -~21491~^~307~^967.^6^14.^~1~^~A~^^^1^925.^1020.^5^928.^1004.^~4~^~02/01/2011~ -~21491~^~601~^37.^3^1.^~1~^~A~^^^1^34.^40.^2^29.^43.^~4~^~02/01/2011~ -~21492~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~268~^1374.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~301~^236.^6^3.^~1~^~A~^^^1^223.^249.^5^226.^245.^~4~^~02/01/2011~ -~21492~^~304~^25.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~02/01/2011~ -~21492~^~305~^263.^6^3.^~1~^~A~^^^1^250.^273.^5^254.^270.^~4~^~02/01/2011~ -~21492~^~306~^224.^6^5.^~1~^~A~^^^1^208.^246.^5^209.^237.^~4~^~02/01/2011~ -~21492~^~307~^783.^6^11.^~1~^~A~^^^1^757.^824.^5^754.^811.^~4~^~02/01/2011~ -~21492~^~601~^38.^3^0.^~1~^~A~^^^1^37.^40.^2^33.^42.^~4~^~02/01/2011~ -~21493~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~268~^1334.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~301~^234.^6^3.^~1~^~A~^^^1^220.^243.^5^225.^241.^~4~^~02/01/2011~ -~21493~^~304~^25.^6^0.^~1~^~A~^^^1^24.^27.^5^24.^26.^~4~^~02/01/2011~ -~21493~^~305~^270.^6^4.^~1~^~A~^^^1^254.^285.^5^257.^282.^~4~^~02/01/2011~ -~21493~^~306~^231.^6^6.^~1~^~A~^^^1^217.^258.^5^215.^246.^~4~^~02/01/2011~ -~21493~^~307~^725.^6^13.^~1~^~A~^^^1^683.^761.^5^690.^759.^~4~^~02/01/2011~ -~21493~^~601~^35.^3^1.^~1~^~A~^^^1^34.^39.^2^28.^42.^~4~^~02/01/2011~ -~21494~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~268~^1140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~301~^137.^6^3.^~1~^~A~^^^1^119.^144.^5^127.^146.^~4~^~02/01/2011~ -~21494~^~304~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^23.^26.^~4~^~02/01/2011~ -~21494~^~305~^196.^6^6.^~1~^~A~^^^1^167.^209.^5^179.^211.^~4~^~02/01/2011~ -~21494~^~306~^183.^6^3.^~1~^~A~^^^1^169.^194.^5^172.^192.^~4~^~02/01/2011~ -~21494~^~307~^594.^6^15.^~1~^~A~^^^1^534.^640.^5^553.^634.^~4~^~02/01/2011~ -~21494~^~601~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^22.^~4~^~02/01/2011~ -~21495~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~301~^154.^6^5.^~1~^~A~^^^1^137.^173.^5^140.^167.^~4~^~02/01/2011~ -~21495~^~304~^24.^6^0.^~1~^~A~^^^1^22.^26.^5^23.^25.^~4~^~02/01/2011~ -~21495~^~305~^207.^6^4.^~1~^~A~^^^1^193.^220.^5^196.^216.^~4~^~02/01/2011~ -~21495~^~306~^188.^6^3.^~1~^~A~^^^1^179.^199.^5^179.^195.^~4~^~02/01/2011~ -~21495~^~307~^677.^6^15.^~1~^~A~^^^1^621.^735.^5^637.^715.^~4~^~02/01/2011~ -~21495~^~601~^23.^3^1.^~1~^~A~^^^1^20.^27.^2^14.^31.^~4~^~02/01/2011~ -~21496~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~268~^1350.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~301~^193.^6^5.^~1~^~A~^^^1^165.^203.^5^177.^208.^~4~^~02/01/2011~ -~21496~^~304~^24.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^25.^~4~^~02/01/2011~ -~21496~^~305~^238.^6^6.^~1~^~A~^^^1^211.^252.^5^222.^253.^~4~^~02/01/2011~ -~21496~^~306~^220.^6^5.^~1~^~A~^^^1^201.^243.^5^205.^234.^~4~^~02/01/2011~ -~21496~^~307~^839.^6^15.^~1~^~A~^^^1^794.^903.^5^799.^878.^~4~^~02/01/2011~ -~21496~^~601~^37.^3^2.^~1~^~A~^^^1^31.^41.^2^24.^49.^~4~^~02/01/2011~ -~21497~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~268~^1200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~301~^150.^6^5.^~1~^~A~^^^1^131.^163.^5^136.^163.^~4~^~02/01/2011~ -~21497~^~304~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^21.^24.^~4~^~02/01/2011~ -~21497~^~305~^191.^6^4.^~1~^~A~^^^1^173.^202.^5^180.^202.^~4~^~02/01/2011~ -~21497~^~306~^211.^6^7.^~1~^~A~^^^1^175.^226.^5^191.^230.^~4~^~02/01/2011~ -~21497~^~307~^671.^6^11.^~1~^~A~^^^1^613.^693.^5^640.^701.^~4~^~02/01/2011~ -~21497~^~601~^26.^3^1.^~1~^~A~^^^1^23.^28.^2^19.^32.^~4~^~02/01/2011~ -~21498~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~268~^1202.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~301~^132.^6^4.^~1~^~A~^^^1^114.^142.^5^121.^142.^~4~^~02/01/2011~ -~21498~^~304~^21.^6^0.^~1~^~A~^^^1^20.^23.^5^20.^22.^~4~^~02/01/2011~ -~21498~^~305~^179.^6^2.^~1~^~A~^^^1^166.^184.^5^171.^185.^~4~^~02/01/2011~ -~21498~^~306~^192.^6^3.^~1~^~A~^^^1^177.^204.^5^182.^201.^~4~^~02/01/2011~ -~21498~^~307~^596.^6^9.^~1~^~A~^^^1^572.^624.^5^571.^621.^~4~^~02/01/2011~ -~21498~^~601~^23.^3^2.^~1~^~A~^^^1^20.^27.^2^13.^32.^~4~^~02/01/2011~ -~21505~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~262~^0.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~263~^0.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~268~^1098.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~301~^228.^12^6.^~1~^~A~^^^1^191.^275.^10^214.^241.^~2, 3~^~06/01/2014~ -~21505~^~304~^24.^12^0.^~1~^~A~^^^1^22.^28.^9^23.^24.^~2, 3~^~06/01/2014~ -~21505~^~305~^215.^12^1.^~1~^~A~^^^1^196.^237.^9^210.^218.^~2, 3~^~06/01/2014~ -~21505~^~306~^201.^12^3.^~1~^~A~^^^1^175.^225.^7^193.^208.^~2, 3~^~06/01/2014~ -~21505~^~307~^471.^12^4.^~1~^~A~^^^1^446.^503.^9^460.^481.^~2, 3~^~05/01/2012~ -~21505~^~318~^374.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21505~^~319~^64.^3^3.^~1~^~A~^^^1^56.^68.^2^47.^79.^~4~^~01/01/2013~ -~21505~^~320~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21505~^~321~^97.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~322~^0.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~21505~^~334~^0.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~337~^2013.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~338~^30.^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~417~^87.^0^^~4~^~BFNN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~431~^51.^0^^~4~^~BFNN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~432~^36.^0^^~4~^~BFNN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~435~^122.^0^^~4~^~NC~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~601~^21.^2^^~1~^~A~^^^1^20.^22.^1^^^^~01/01/2013~ -~21506~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~268~^1181.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~301~^120.^6^4.^~1~^~A~^^^1^104.^131.^5^109.^131.^~4~^~07/01/2012~ -~21506~^~304~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^24.^~4~^~07/01/2012~ -~21506~^~305~^168.^6^1.^~1~^~A~^^^1^162.^171.^5^163.^171.^~4~^~07/01/2012~ -~21506~^~306~^231.^6^4.^~1~^~A~^^^1^222.^251.^5^219.^242.^~4~^~07/01/2012~ -~21506~^~307~^562.^6^11.^~1~^~A~^^^1^521.^597.^5^532.^590.^~4~^~07/01/2012~ -~21507~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~268~^1192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~301~^73.^6^2.^~1~^~A~^^^1^67.^83.^5^66.^79.^~4~^~07/01/2012~ -~21507~^~304~^21.^6^0.^~1~^~A~^^^1^20.^22.^5^19.^21.^~4~^~07/01/2012~ -~21507~^~305~^157.^6^3.^~1~^~A~^^^1^146.^162.^5^148.^164.^~4~^~07/01/2012~ -~21507~^~306~^258.^6^5.^~1~^~A~^^^1^236.^273.^5^243.^271.^~4~^~07/01/2012~ -~21507~^~307~^477.^6^23.^~1~^~A~^^^1^389.^540.^5^415.^538.^~4~^~07/01/2012~ -~21508~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~268~^1162.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~301~^37.^6^2.^~1~^~A~^^^1^32.^52.^5^29.^44.^~4~^~07/01/2012~ -~21508~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^19.^20.^~4~^~07/01/2012~ -~21508~^~305~^182.^6^2.^~1~^~A~^^^1^172.^187.^5^175.^187.^~4~^~07/01/2012~ -~21508~^~306~^185.^6^4.^~1~^~A~^^^1^167.^197.^5^174.^195.^~4~^~07/01/2012~ -~21508~^~307~^566.^6^5.^~1~^~A~^^^1^541.^580.^5^551.^579.^~4~^~07/01/2012~ -~21509~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~268~^1744.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~301~^115.^6^15.^~1~^~A~^^^1^79.^187.^5^75.^155.^~2, 3~^~08/01/2012~ -~21509~^~304~^19.^6^0.^~1~^~A~^^^1^18.^21.^5^18.^20.^~2, 3~^~08/01/2012~ -~21509~^~305~^158.^6^1.^~1~^~A~^^^1^153.^165.^5^153.^162.^~2, 3~^~08/01/2012~ -~21509~^~306~^167.^6^4.^~1~^~A~^^^1^153.^183.^5^155.^178.^~2, 3~^~08/01/2012~ -~21509~^~307~^776.^6^13.^~1~^~A~^^^1^741.^815.^5^740.^811.^~2, 3~^~08/01/2012~ -~21509~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21509~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21509~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21509~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21509~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21509~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21509~^~338~^38.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~268~^1121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~301~^73.^6^5.^~1~^~A~^^^1^49.^86.^5^59.^87.^~2, 3~^~08/01/2012~ -~21510~^~304~^18.^6^0.^~1~^~A~^^^1^17.^18.^5^17.^18.^~2, 3~^~08/01/2012~ -~21510~^~305~^125.^6^4.^~1~^~A~^^^1^108.^138.^5^112.^137.^~2, 3~^~08/01/2012~ -~21510~^~306~^208.^6^3.^~1~^~A~^^^1^198.^224.^5^198.^218.^~2, 3~^~08/01/2012~ -~21510~^~307~^473.^6^23.^~1~^~A~^^^1^377.^539.^5^411.^534.^~2, 3~^~08/01/2012~ -~21510~^~318~^256.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21510~^~319~^44.^3^4.^~1~^~A~^^^1^36.^50.^2^26.^62.^~2, 3~^~08/01/2012~ -~21510~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21510~^~321~^64.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~21510~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~337~^208.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~338~^41.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~601~^51.^3^1.^~1~^~A~^^^1^48.^52.^2^44.^57.^~2, 3~^~08/01/2012~ -~21511~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~262~^0.^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~263~^0.^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~301~^238.^6^5.^~1~^~A~^^^1^224.^254.^5^224.^251.^~2, 3~^~04/01/2013~ -~21511~^~304~^22.^6^0.^~1~^~A~^^^1^21.^22.^5^21.^22.^~2, 3~^~04/01/2013~ -~21511~^~305~^249.^6^3.^~1~^~A~^^^1^238.^261.^5^239.^258.^~2, 3~^~04/01/2013~ -~21511~^~306~^229.^6^3.^~1~^~A~^^^1^219.^244.^5^219.^238.^~2, 3~^~04/01/2013~ -~21511~^~307~^615.^6^5.^~1~^~A~^^^1^594.^632.^5^600.^629.^~2, 3~^~04/01/2013~ -~21511~^~318~^511.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21511~^~319~^110.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~320~^117.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~21511~^~321~^87.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~324~^0.^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21511~^~337~^935.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~338~^45.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~417~^90.^3^3.^~1~^~A~^^^1^85.^96.^2^76.^103.^~2, 3~^~04/01/2013~ -~21511~^~431~^50.^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~601~^30.^3^1.^~1~^~A~^^^1^28.^33.^2^22.^37.^~2, 3~^~04/01/2013~ -~21512~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~301~^238.^6^5.^~1~^~A~^^^1^224.^254.^5^224.^251.^~2, 3~^~05/01/2013~ -~21512~^~304~^22.^6^0.^~1~^~A~^^^1^21.^22.^5^21.^22.^~2, 3~^~05/01/2013~ -~21512~^~305~^249.^6^3.^~1~^~A~^^^1^238.^261.^5^239.^258.^~2, 3~^~05/01/2013~ -~21512~^~306~^229.^6^3.^~1~^~A~^^^1^219.^244.^5^219.^238.^~2, 3~^~05/01/2013~ -~21512~^~307~^615.^6^5.^~1~^~A~^^^1^594.^632.^5^600.^629.^~2, 3~^~05/01/2013~ -~21512~^~318~^511.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21512~^~319~^110.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~320~^117.^1^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~21512~^~321~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21512~^~337~^935.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~338~^45.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~417~^90.^3^3.^~1~^~A~^^^1^85.^96.^2^76.^103.^~2, 3~^~05/01/2013~ -~21512~^~601~^30.^3^1.^~1~^~A~^^^1^28.^33.^2^22.^37.^~2, 3~^~05/01/2013~ -~21517~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~301~^88.^4^5.^~1~^~A~^^^1^75.^101.^3^70.^104.^~2, 3~^~05/01/2015~ -~21517~^~304~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^17.^19.^~2, 3~^~05/01/2015~ -~21517~^~305~^186.^4^5.^~1~^~A~^^^1^171.^198.^3^167.^203.^~2, 3~^~05/01/2015~ -~21517~^~306~^173.^4^7.^~1~^~A~^^^1^158.^193.^3^149.^196.^~2, 3~^~05/01/2015~ -~21517~^~307~^607.^4^8.^~1~^~A~^^^1^583.^624.^3^578.^634.^~2, 3~^~05/01/2015~ -~21517~^~318~^101.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21517~^~319~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~320~^24.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21517~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21517~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21517~^~338~^51.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~417~^36.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~431~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2016~ -~21517~^~432~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~21517~^~601~^29.^3^1.^~1~^~A~^^^1^27.^31.^2^23.^34.^~2, 3~^~06/01/2015~ -~21518~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~301~^93.^6^5.^~1~^~A~^^^1^79.^107.^5^79.^105.^~2, 3~^~05/01/2015~ -~21518~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^18.^21.^~2, 3~^~05/01/2015~ -~21518~^~305~^184.^6^7.^~1~^~A~^^^1^162.^213.^5^164.^203.^~2, 3~^~05/01/2015~ -~21518~^~306~^192.^6^5.^~1~^~A~^^^1^170.^206.^5^177.^205.^~2, 3~^~05/01/2015~ -~21518~^~307~^577.^6^17.^~1~^~A~^^^1^534.^650.^5^531.^622.^~2, 3~^~05/01/2015~ -~21518~^~318~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~21518~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21518~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~21518~^~321~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~338~^26.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~417~^45.^2^^~1~^~A~^^^1^37.^52.^1^^^^~05/01/2015~ -~21518~^~431~^35.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~432~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~601~^41.^3^4.^~1~^~A~^^^1^35.^50.^2^21.^60.^~2, 3~^~06/01/2015~ -~21519~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~301~^132.^6^2.^~1~^~A~^^^1^125.^137.^5^126.^137.^~2, 3~^~05/01/2015~ -~21519~^~304~^18.^6^0.^~1~^~A~^^^1^17.^19.^5^17.^18.^~2, 3~^~05/01/2015~ -~21519~^~305~^168.^6^2.^~1~^~A~^^^1^157.^175.^5^160.^174.^~2, 3~^~05/01/2015~ -~21519~^~306~^150.^6^3.^~1~^~A~^^^1^139.^159.^5^142.^158.^~2, 3~^~05/01/2015~ -~21519~^~307~^744.^6^7.^~1~^~A~^^^1^715.^763.^5^725.^762.^~2, 3~^~05/01/2015~ -~21519~^~318~^474.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21519~^~319~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~320~^79.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21519~^~321~^149.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~322~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~324~^31.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~334~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~337~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~338~^204.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~417~^63.^2^^~1~^~A~^^^1^57.^70.^1^^^^~05/01/2015~ -~21519~^~431~^36.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~601~^137.^4^4.^~1~^~A~^^^1^127.^147.^3^123.^150.^~2, 3~^~06/01/2015~ -~21520~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~268~^1434.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~301~^87.^3^25.^~1~^~A~^^^1^40.^129.^2^-23.^197.^~2, 3~^~06/01/2015~ -~21520~^~304~^22.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^23.^~2, 3~^~06/01/2015~ -~21520~^~305~^129.^3^20.^~1~^~A~^^^1^98.^167.^2^41.^216.^~2, 3~^~06/01/2015~ -~21520~^~306~^132.^3^5.^~1~^~A~^^^1^121.^138.^2^107.^156.^~2, 3~^~06/01/2015~ -~21520~^~307~^539.^3^14.^~1~^~A~^^^1^514.^564.^2^477.^601.^~2, 3~^~06/01/2015~ -~21520~^~318~^88.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~319~^23.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~321~^7.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~417~^147.^3^6.^~1~^~A~^^^1^135.^157.^2^119.^174.^~2, 3~^~06/01/2015~ -~21520~^~431~^123.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~432~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~435~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21521~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~268~^272.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~301~^20.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~306~^131.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~307~^14.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~321~^7.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~322~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~601~^1.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21522~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~268~^1274.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~301~^44.^3^3.^~1~^~A~^^^1^38.^51.^2^27.^60.^~2, 3~^~05/01/2015~ -~21522~^~304~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^13.^21.^~2, 3~^~05/01/2015~ -~21522~^~305~^355.^3^8.^~1~^~A~^^^1^339.^367.^2^319.^390.^~2, 3~^~05/01/2015~ -~21522~^~306~^206.^3^6.^~1~^~A~^^^1^193.^214.^2^177.^235.^~2, 3~^~05/01/2015~ -~21522~^~307~^868.^3^11.^~1~^~A~^^^1^846.^882.^2^819.^916.^~2, 3~^~05/01/2015~ -~21522~^~417~^64.^2^^~1~^~A~^^^1^57.^71.^1^^^^~05/01/2015~ -~21522~^~601~^24.^3^1.^~1~^~A~^^^1^21.^26.^2^16.^32.^~2, 3~^~02/01/2016~ -~21523~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~301~^88.^4^5.^~1~^~A~^^^1^75.^101.^3^70.^104.^~2, 3~^~05/01/2015~ -~21523~^~304~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^17.^19.^~2, 3~^~05/01/2015~ -~21523~^~305~^186.^4^5.^~1~^~A~^^^1^171.^198.^3^167.^203.^~2, 3~^~05/01/2015~ -~21523~^~306~^173.^4^7.^~1~^~A~^^^1^158.^193.^3^149.^196.^~2, 3~^~05/01/2015~ -~21523~^~307~^607.^4^8.^~1~^~A~^^^1^583.^624.^3^578.^634.^~2, 3~^~05/01/2015~ -~21523~^~318~^101.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21523~^~319~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~320~^24.^1^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21523~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21523~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21523~^~338~^51.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~417~^36.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~601~^29.^3^1.^~1~^~A~^^^1^27.^31.^2^23.^34.^~2, 3~^~02/01/2016~ -~21524~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~301~^93.^6^5.^~1~^~A~^^^1^79.^107.^5^79.^105.^~2, 3~^~05/01/2015~ -~21524~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^18.^21.^~2, 3~^~05/01/2015~ -~21524~^~305~^184.^6^7.^~1~^~A~^^^1^162.^213.^5^164.^203.^~2, 3~^~05/01/2015~ -~21524~^~306~^192.^6^5.^~1~^~A~^^^1^170.^206.^5^177.^205.^~2, 3~^~05/01/2015~ -~21524~^~307~^577.^6^17.^~1~^~A~^^^1^534.^650.^5^531.^622.^~2, 3~^~05/01/2015~ -~21524~^~318~^88.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21524~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21524~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21524~^~417~^45.^2^^~1~^~A~^^^1^37.^52.^1^^^^~05/01/2015~ -~21524~^~601~^41.^3^4.^~1~^~A~^^^1^35.^50.^2^21.^60.^~2, 3~^~02/01/2016~ -~21525~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~268~^1434.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~301~^87.^3^25.^~1~^~A~^^^1^40.^129.^2^-23.^197.^~2, 3~^~06/01/2015~ -~21525~^~304~^22.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^23.^~2, 3~^~06/01/2015~ -~21525~^~305~^129.^3^20.^~1~^~A~^^^1^98.^167.^2^41.^216.^~2, 3~^~06/01/2015~ -~21525~^~306~^132.^3^5.^~1~^~A~^^^1^121.^138.^2^107.^156.^~2, 3~^~06/01/2015~ -~21525~^~307~^539.^3^14.^~1~^~A~^^^1^514.^564.^2^477.^601.^~2, 3~^~06/01/2015~ -~21525~^~417~^147.^3^6.^~1~^~A~^^^1^135.^157.^2^119.^174.^~2, 3~^~06/01/2015~ -~21525~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~268~^1044.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~301~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^48.^68.^~2, 3~^~06/01/2015~ -~21526~^~304~^24.^3^0.^~1~^~A~^^^1^24.^25.^2^23.^25.^~2, 3~^~06/01/2015~ -~21526~^~305~^185.^3^1.^~1~^~A~^^^1^182.^187.^2^178.^192.^~2, 3~^~06/01/2015~ -~21526~^~306~^245.^3^8.^~1~^~A~^^^1^229.^260.^2^206.^283.^~2, 3~^~06/01/2015~ -~21526~^~307~^753.^3^17.^~1~^~A~^^^1^718.^772.^2^677.^828.^~2, 3~^~06/01/2015~ -~21526~^~417~^47.^3^6.^~1~^~A~^^^1^34.^55.^2^19.^75.^~2, 3~^~06/01/2015~ -~21526~^~601~^35.^3^1.^~1~^~A~^^^1^33.^36.^2^29.^39.^~2, 3~^~06/01/2015~ -~21527~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~268~^1014.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~301~^55.^3^6.^~1~^~A~^^^1^41.^62.^2^25.^84.^~2, 3~^~06/01/2015~ -~21527~^~304~^23.^3^0.^~1~^~A~^^^1^23.^23.^2^22.^23.^~2, 3~^~06/01/2015~ -~21527~^~305~^200.^3^2.^~1~^~A~^^^1^196.^205.^2^188.^211.^~2, 3~^~06/01/2015~ -~21527~^~306~^224.^3^5.^~1~^~A~^^^1^213.^231.^2^200.^247.^~2, 3~^~06/01/2015~ -~21527~^~307~^653.^3^12.^~1~^~A~^^^1^641.^677.^2^601.^704.^~2, 3~^~06/01/2015~ -~21527~^~417~^51.^3^6.^~1~^~A~^^^1^44.^64.^2^22.^79.^~2, 3~^~06/01/2015~ -~21527~^~601~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^27.^32.^~2, 3~^~06/01/2015~ -~21600~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~268~^1035.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~301~^218.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~304~^51.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~305~^316.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~306~^348.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~307~^421.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~318~^341.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~319~^59.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~320~^66.^0^^~4~^~NC~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~321~^87.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~322~^0.^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~324~^0.^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~334~^0.^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~337~^2027.^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~338~^31.^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~417~^54.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~431~^34.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~432~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~601~^12.^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21601~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21601~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~268~^1064.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21601~^~301~^193.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~304~^40.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~305~^284.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~306~^303.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~307~^421.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~318~^228.^0^^~4~^~NC~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~319~^32.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21601~^~321~^73.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~324~^0.^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~337~^1829.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~338~^55.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~417~^88.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~431~^50.^0^^~4~^~BFSN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~432~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21601~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21601~^~601~^19.^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21602~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~301~^202.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~304~^51.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~305~^316.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~306~^382.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~307~^495.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~318~^399.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~319~^67.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~320~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~321~^106.^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~322~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~324~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~334~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~337~^1964.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~338~^24.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~417~^55.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~431~^36.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~432~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~601~^24.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21603~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~268~^1083.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21603~^~301~^155.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~304~^41.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~305~^305.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~306~^308.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~307~^474.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~318~^257.^0^^~4~^~NC~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~319~^36.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~320~^43.^0^^~4~^~NC~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~321~^83.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~322~^0.^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~324~^0.^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~334~^0.^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~337~^1839.^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~338~^21.^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~417~^59.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~431~^39.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21603~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21603~^~601~^24.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~301~^238.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~304~^52.^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~305~^318.^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~306~^385.^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~307~^457.^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2015~ -~21604~^~318~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~319~^79.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~320~^89.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~321~^116.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~322~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~324~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~334~^0.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~337~^1984.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~338~^24.^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~417~^71.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~431~^47.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~432~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~601~^25.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21605~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~268~^1075.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~301~^168.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~305~^279.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21605~^~306~^282.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21605~^~307~^433.^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21605~^~318~^309.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~319~^54.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~321~^78.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~322~^0.^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~324~^0.^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~334~^0.^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~337~^1944.^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~338~^23.^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~417~^81.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~431~^56.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~432~^25.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~601~^26.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~301~^34.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~304~^26.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~305~^221.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~306~^278.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~307~^467.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~324~^12.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~417~^9.^0^^~4~^~BFNN~^~21611~^^^^^^^^^~05/01/2015~ -~21610~^~431~^4.^0^^~4~^~BFNN~^~21611~^^^^^^^^^~05/01/2015~ -~21610~^~432~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~601~^36.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~262~^0.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~263~^0.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~268~^1130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~301~^32.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~304~^24.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~305~^183.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~306~^231.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~307~^511.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~318~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~319~^16.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~324~^11.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~337~^0.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~417~^11.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~431~^5.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~601~^50.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~22247~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~301~^35.^2^^~1~^~A~^^^1^35.^35.^1^^^^~06/01/2004~ -~22247~^~304~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~06/01/2004~ -~22247~^~305~^47.^2^^~1~^~A~^^^1^45.^49.^1^^^^~06/01/2004~ -~22247~^~306~^84.^2^^~1~^~A~^^^1^84.^85.^1^^^^~06/01/2004~ -~22247~^~307~^302.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22247~^~318~^65.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~22247~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~431~^11.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~601~^6.^2^^~1~^~A~^^^1^6.^6.^1^^^^~06/01/2004~ -~22401~^~208~^90.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~22401~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~22401~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~22401~^~268~^377.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~22401~^~301~^18.^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~304~^15.^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~305~^49.^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~306~^144.^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~307~^238.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~22401~^~318~^174.^3^^~12~^~MA~^^^^^^^^^^~01/01/2007~ -~22401~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~22401~^~320~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~321~^104.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~22401~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~337~^3200.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~417~^46.^0^^~4~^~FLM~^^^^^^^^^^~11/01/1997~ -~22401~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~ -~22401~^~432~^9.^0^^~4~^^^^^^^^^^^ -~22401~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~22401~^~601~^6.^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22402~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~305~^65.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~306~^202.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~307~^178.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~318~^152.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~320~^8.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~321~^91.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~22402~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~22402~^~337~^5196.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~417~^31.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~431~^23.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~601~^10.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22522~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~22522~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~268~^375.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~22522~^~301~^60.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~305~^43.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~306~^191.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~307~^287.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~22522~^~318~^198.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~319~^4.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2010~ -~22522~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~22522~^~321~^110.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2010~ -~22522~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2010~ -~22522~^~324~^16.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2010~ -~22522~^~337~^7506.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~338~^5.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~417~^40.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~431~^13.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2015~ -~22522~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~601~^9.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~22528~^~268~^736.^0^^~4~^^^^^^^^^^^ -~22528~^~307~^350.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~318~^1767.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~321~^1060.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~22528~^~601~^16.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22529~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~268~^919.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~301~^14.^4^1.^~1~^~A~^^^1^11.^17.^3^9.^18.^~2, 3~^~12/01/2007~ -~22529~^~304~^13.^4^0.^~1~^~A~^^^1^12.^14.^3^11.^14.^~2, 3~^~12/01/2007~ -~22529~^~305~^67.^4^5.^~1~^~A~^^^1^57.^82.^3^49.^84.^~2, 3~^~12/01/2007~ -~22529~^~306~^115.^4^12.^~1~^~A~^^^1^98.^150.^3^75.^153.^~2, 3~^~12/01/2007~ -~22529~^~307~^365.^4^14.^~1~^~A~^^^1^330.^400.^3^319.^410.^~2, 3~^~12/01/2007~ -~22529~^~417~^18.^3^11.^~1~^~A~^^^1^6.^41.^2^-31.^67.^~2, 3~^~12/01/2007~ -~22529~^~431~^15.^3^9.^~1~^~A~^^^1^5.^34.^2^-26.^56.^~2, 3~^~12/01/2007~ -~22529~^~432~^3.^3^1.^~1~^~AS~^^^1^1.^7.^2^-4.^11.^~2, 3~^~12/01/2007~ -~22529~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~22529~^~601~^21.^3^2.^~1~^~A~^^^1^18.^26.^2^9.^31.^~2, 3~^~12/01/2007~ -~22535~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~22535~^~262~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~263~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~268~^983.^0^^~4~^^^^^^^^^^^~07/01/2010~ -~22535~^~301~^152.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~304~^18.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~305~^168.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~306~^188.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~307~^346.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22535~^~318~^265.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~319~^54.^0^^~4~^~NR~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~320~^58.^0^^~4~^~NC~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~321~^50.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~22535~^~322~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~324~^10.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~334~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~337~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~338~^115.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~417~^54.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~431~^43.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~432~^11.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~435~^84.^0^^~4~^~NC~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~601~^29.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22537~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22537~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22537~^~301~^152.^4^1.^~1~^~A~^^^1^147.^155.^3^145.^157.^~2, 3~^~06/01/2009~ -~22537~^~304~^18.^4^0.^~1~^~A~^^^1^17.^18.^3^17.^18.^~2, 3~^~06/01/2009~ -~22537~^~305~^168.^4^1.^~1~^~A~^^^1^165.^170.^3^164.^171.^~2, 3~^~06/01/2009~ -~22537~^~306~^188.^4^3.^~1~^~A~^^^1^182.^197.^3^177.^198.^~2, 3~^~06/01/2009~ -~22537~^~307~^386.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22537~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~22537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22537~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22537~^~321~^23.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22537~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22537~^~324~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22537~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~338~^115.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~417~^54.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~431~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~435~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22537~^~601~^23.^4^0.^~1~^~A~^^^1^23.^23.^3^22.^23.^~2, 3~^~06/01/2009~ -~22899~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22899~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~268~^324.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22899~^~301~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~305~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~306~^232.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~307~^306.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~318~^207.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~319~^0.^0^^~4~^~BNA~^~11547~^^^^^^^^^~03/01/2011~ -~22899~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22899~^~321~^124.^0^^~4~^~BNA~^~11547~^^^^^^^^^~03/01/2011~ -~22899~^~322~^0.^0^^~4~^~BNA~^~11547~^^^^^^^^^~03/01/2011~ -~22899~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22899~^~334~^0.^0^^~4~^~BNA~^~11547~^^^^^^^^^~03/01/2011~ -~22899~^~337~^8625.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~338~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~417~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~431~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22899~^~601~^3.^2^^~8~^~LC~^^^1^2.^4.^1^^^^~03/01/2011~ -~22900~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~301~^12.^17^0.^~1~^~A~^^^1^11.^17.^10^11.^12.^~2, 3~^~07/01/2014~ -~22900~^~304~^12.^17^0.^~1~^~A~^^^1^11.^17.^9^11.^12.^~2, 3~^~07/01/2014~ -~22900~^~305~^40.^17^0.^~1~^~A~^^^1^37.^52.^7^38.^40.^~2, 3~^~07/01/2014~ -~22900~^~306~^178.^17^1.^~1~^~A~^^^1^153.^188.^5^173.^182.^~2, 3~^~07/01/2014~ -~22900~^~307~^283.^17^3.^~1~^~A~^^^1^258.^457.^9^274.^291.^~2, 3~^~07/01/2014~ -~22900~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~321~^121.^8^15.^~1~^~A~^^^1^90.^153.^2^54.^188.^~2, 3~^~07/01/2014~ -~22900~^~322~^1.^8^0.^~1~^~A~^^^1^0.^18.^2^-2.^4.^~1, 2, 3~^~07/01/2014~ -~22900~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~334~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~337~^3335.^8^226.^~1~^~A~^^^1^2862.^4222.^2^2363.^4306.^~2, 3~^~07/01/2014~ -~22900~^~338~^65.^8^3.^~1~^~A~^^^1^57.^81.^2^52.^77.^~2, 3~^~07/01/2014~ -~22900~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~431~^10.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22900~^~601~^5.^8^0.^~1~^~A~^^^1^4.^7.^2^4.^5.^~2, 3~^~04/01/2011~ -~22901~^~208~^307.^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~22901~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~22901~^~268~^1284.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~22901~^~301~^152.^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~305~^212.^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~306~^89.^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~307~^406.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~22901~^~318~^143.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~319~^37.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~22901~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~22901~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~431~^62.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~22901~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22901~^~435~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22901~^~601~^42.^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22902~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~262~^0.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~263~^0.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~301~^150.^17^7.^~1~^~A~^^^2^143.^157.^1^58.^241.^~4~^~06/01/2015~ -~22902~^~304~^25.^17^1.^~1~^~A~^^^2^23.^27.^1^1.^48.^~4~^~04/01/2004~ -~22902~^~305~^209.^17^15.^~1~^~A~^^^2^193.^225.^1^5.^411.^~4~^~06/01/2015~ -~22902~^~306~^201.^17^10.^~1~^~A~^^^2^190.^212.^1^61.^340.^~4~^~06/01/2015~ -~22902~^~307~^690.^17^53.^~1~^~A~^^^2^637.^743.^1^15.^1363.^~4~^~06/01/2015~ -~22902~^~318~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~319~^41.^5^1.^~1~^~A~^^^^38.^44.^^^^^~06/01/2015~ -~22902~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~321~^93.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~322~^0.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~324~^0.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~334~^0.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~337~^1937.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~338~^23.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~417~^101.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~431~^56.^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~432~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~601~^21.^9^2.^~1~^~A~^^^2^18.^23.^1^-10.^51.^~4~^~06/01/2015~ -~22902~^~636~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~22903~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~262~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~263~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~268~^1148.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~301~^168.^4^2.^~1~^~A~^^^1^106.^187.^1^136.^199.^~2, 3~^~06/01/2015~ -~22903~^~304~^27.^4^0.^~1~^~A~^^^1^25.^29.^1^20.^34.^~2, 3~^~06/01/2015~ -~22903~^~305~^196.^4^5.^~1~^~A~^^^1^160.^240.^1^129.^262.^~2, 3~^~06/01/2015~ -~22903~^~306~^239.^4^5.^~1~^~A~^^^1^227.^252.^1^168.^310.^~2, 3~^~06/01/2015~ -~22903~^~307~^590.^4^12.^~1~^~A~^^^1^523.^645.^1^429.^749.^~2, 3~^~06/01/2015~ -~22903~^~318~^229.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~319~^69.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~321~^0.^3^0.^~1~^~A~^^^^^^^^^^~04/01/2004~ -~22903~^~322~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~324~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~334~^0.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~337~^2157.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~338~^26.^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~417~^75.^2^^~1~^~A~^^^1^73.^77.^1^^^^~06/01/2015~ -~22903~^~431~^46.^0^^~4~^~BFNN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~432~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~601~^27.^5^0.^~1~^~A~^^^1^17.^31.^2^26.^28.^~2, 3~^~06/01/2015~ -~22904~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~268~^447.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~301~^33.^11^0.^~1~^~A~^^^1^30.^38.^10^31.^35.^~2, 3~^~04/01/2011~ -~22904~^~304~^28.^11^0.^~1~^~A~^^^1^25.^32.^10^27.^29.^~2, 3~^~04/01/2011~ -~22904~^~305~^87.^11^1.^~1~^~A~^^^1^81.^95.^10^84.^90.^~2, 3~^~04/01/2011~ -~22904~^~306~^264.^11^2.^~1~^~A~^^^1^251.^278.^10^257.^269.^~2, 3~^~04/01/2011~ -~22904~^~307~^449.^11^6.^~1~^~A~^^^1^422.^500.^10^434.^463.^~2, 3~^~04/01/2011~ -~22904~^~318~^467.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~22904~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~22904~^~321~^233.^3^9.^~1~^~A~^^^1^217.^248.^2^193.^272.^~2, 3~^~04/01/2011~ -~22904~^~322~^9.^3^2.^~1~^~A~^^^1^5.^12.^2^0.^18.^~2, 3~^~04/01/2011~ -~22904~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~334~^85.^3^3.^~1~^~A~^^^1^77.^90.^2^67.^102.^~2, 3~^~04/01/2011~ -~22904~^~337~^663.^3^76.^~1~^~A~^^^1^530.^795.^2^334.^991.^~2, 3~^~04/01/2011~ -~22904~^~338~^151.^3^9.^~1~^~A~^^^1^137.^168.^2^111.^190.^~2, 3~^~04/01/2011~ -~22904~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~601~^9.^11^0.^~1~^~A~^^^1^7.^12.^10^8.^9.^~2, 3~^~04/01/2011~ -~22905~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~22905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22905~^~268~^413.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~22905~^~301~^12.^4^0.^~1~^~A~^^^2^10.^15.^2^8.^15.^~2, 3~^~11/01/2008~ -~22905~^~304~^8.^4^0.^~1~^~A~^^^2^5.^10.^2^3.^12.^~2, 3~^~11/01/2008~ -~22905~^~305~^42.^4^1.^~1~^~A~^^^2^37.^46.^2^34.^49.^~2, 3~^~11/01/2008~ -~22905~^~306~^163.^4^12.^~1~^~A~^^^2^125.^180.^2^108.^217.^~2, 3~^~11/01/2008~ -~22905~^~307~^388.^4^23.^~1~^~A~^^^2^328.^436.^2^285.^489.^~2, 3~^~11/01/2008~ -~22905~^~318~^223.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~22905~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~22905~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~22905~^~321~^106.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~322~^53.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~22905~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~337~^28.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~22905~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~22905~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~22905~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~22905~^~601~^13.^3^1.^~1~^~A~^^^2^10.^14.^1^-5.^30.^~2, 3~^~11/01/2008~ -~22906~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22906~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22906~^~268~^853.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~301~^20.^12^0.^~1~^~A~^^^1^16.^26.^5^18.^21.^~2, 3~^~07/01/2014~ -~22906~^~304~^11.^12^0.^~1~^~A~^^^1^11.^12.^5^11.^11.^~2, 3~^~06/01/2012~ -~22906~^~305~^72.^12^0.^~1~^~A~^^^1^65.^81.^5^70.^74.^~2, 3~^~07/01/2014~ -~22906~^~306~^110.^12^2.^~1~^~A~^^^1^92.^130.^8^105.^115.^~2, 3~^~07/01/2014~ -~22906~^~307~^393.^12^8.^~1~^~A~^^^1^328.^470.^6^371.^415.^~2, 3~^~07/01/2014~ -~22906~^~318~^675.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22906~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2012~ -~22906~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~22906~^~321~^339.^6^33.^~1~^~A~^^^1^171.^421.^4^245.^432.^~2, 3~^~07/01/2014~ -~22906~^~322~^132.^6^13.^~1~^~A~^^^1^99.^208.^3^88.^175.^~2, 3~^~07/01/2014~ -~22906~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~22906~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2012~ -~22906~^~337~^2.^6^0.^~1~^~A~^^^1^2.^6.^2^0.^4.^~2, 3~^~06/01/2012~ -~22906~^~338~^90.^6^4.^~1~^~A~^^^1^72.^122.^4^78.^101.^~2, 3~^~07/01/2014~ -~22906~^~417~^35.^3^12.^~1~^~A~^^^1^10.^50.^2^-18.^88.^~2, 3~^~12/01/2007~ -~22906~^~431~^22.^3^11.^~1~^~A~^^^1^0.^34.^2^-25.^70.^~1, 2, 3~^~12/01/2007~ -~22906~^~432~^12.^3^2.^~1~^~AS~^^^1^10.^17.^2^2.^22.^~2, 3~^~12/01/2007~ -~22906~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~22906~^~601~^15.^6^0.^~1~^~A~^^^1^11.^19.^3^13.^16.^~2, 3~^~07/01/2014~ -~22908~^~208~^164.^1^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22908~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22908~^~301~^19.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~304~^13.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~305~^56.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~306~^172.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~307~^412.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~22908~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22908~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~22908~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22908~^~601~^32.^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22910~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~262~^0.^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~263~^0.^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~268~^542.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~301~^111.^2^^~1~^~A~^^^1^109.^112.^1^^^^~05/01/2013~ -~22910~^~304~^21.^2^^~1~^~A~^^^1^21.^21.^1^^^^~05/01/2013~ -~22910~^~305~^107.^2^^~1~^~A~^^^1^106.^108.^1^^^^~05/01/2013~ -~22910~^~306~^182.^2^^~1~^~A~^^^1^177.^186.^1^^^^~05/01/2013~ -~22910~^~307~^284.^2^^~1~^~A~^^^1^261.^307.^1^^^^~05/01/2013~ -~22910~^~318~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~319~^39.^2^^~1~^~A~^^^1^32.^46.^1^^^^~05/01/2013~ -~22910~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~321~^87.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~322~^2.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~324~^1.^0^^~4~^~BFYN~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~334~^0.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~337~^2779.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~338~^28.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~417~^32.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~431~^26.^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~601~^13.^2^^~1~^~A~^^^1^11.^14.^1^^^^~05/01/2013~ -~22911~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~22911~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~268~^495.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~22911~^~301~^30.^12^1.^~1~^~A~^^^1^22.^36.^11^27.^32.^~2, 3~^~02/01/2004~ -~22911~^~304~^20.^12^1.^~1~^~A~^^^1^13.^28.^11^16.^22.^~2, 3~^~02/01/2004~ -~22911~^~305~^77.^12^7.^~1~^~A~^^^1^59.^120.^11^60.^93.^~2, 3~^~02/01/2004~ -~22911~^~306~^185.^12^15.^~1~^~A~^^^1^114.^274.^11^151.^219.^~2, 3~^~02/01/2004~ -~22911~^~307~^411.^0^^~4~^~T~^^^^^^^^^^~04/01/2013~ -~22911~^~318~^271.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~22911~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~320~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~321~^138.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~322~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~334~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~337~^248.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~338~^16.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~22911~^~601~^21.^6^1.^~1~^~A~^^^1^16.^26.^5^17.^25.^~2, 3~^~02/01/2004~ -~22912~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~268~^420.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~301~^29.^18^1.^~1~^~A~^^^1^10.^90.^5^23.^33.^~2, 3~^~07/01/2014~ -~22912~^~304~^13.^18^0.^~1~^~A~^^^1^12.^16.^12^12.^13.^~2, 3~^~07/01/2014~ -~22912~^~305~^57.^18^0.^~1~^~A~^^^1^44.^89.^7^55.^59.^~2, 3~^~07/01/2014~ -~22912~^~306~^217.^18^3.^~1~^~A~^^^1^148.^252.^6^209.^224.^~2, 3~^~07/01/2014~ -~22912~^~307~^280.^18^2.^~1~^~A~^^^1^203.^435.^10^273.^286.^~2, 3~^~07/01/2014~ -~22912~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22912~^~319~^5.^3^^~1~^~A~^^^1^2.^8.^^^^~2, 3~^~07/01/2014~ -~22912~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22912~^~321~^141.^9^3.^~1~^~A~^^^1^95.^216.^4^130.^151.^~2, 3~^~07/01/2014~ -~22912~^~322~^15.^9^2.^~1~^~A~^^^1^0.^69.^2^3.^26.^~1, 2, 3~^~07/01/2014~ -~22912~^~324~^8.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~334~^0.^9^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~337~^3453.^9^47.^~1~^~A~^^^1^2278.^4017.^6^3337.^3567.^~2, 3~^~07/01/2014~ -~22912~^~338~^78.^9^1.^~1~^~A~^^^1^64.^86.^5^74.^82.^~2, 3~^~07/01/2014~ -~22912~^~417~^20.^6^1.^~1~^~A~^^^1^17.^24.^5^17.^23.^~2, 3~^~07/01/2014~ -~22912~^~431~^13.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~22912~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~22912~^~601~^7.^9^0.^~1~^~A~^^^1^6.^8.^2^5.^7.^~2, 3~^~06/01/2012~ -~22914~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22914~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22914~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~301~^13.^11^0.^~1~^~A~^^^1^9.^15.^10^11.^13.^~2, 3~^~04/01/2011~ -~22914~^~304~^14.^11^0.^~1~^~A~^^^1^10.^16.^10^12.^14.^~2, 3~^~03/01/2004~ -~22914~^~305~^39.^11^1.^~1~^~A~^^^1^31.^44.^10^36.^40.^~2, 3~^~04/01/2011~ -~22914~^~306~^192.^11^8.^~1~^~A~^^^1^136.^217.^10^173.^210.^~2, 3~^~04/01/2011~ -~22914~^~307~^381.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22914~^~318~^696.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22914~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~321~^407.^6^169.^~1~^~A~^^^1^127.^1157.^5^-28.^843.^~2, 3~^~04/01/2011~ -~22914~^~322~^14.^6^8.^~1~^~A~^^^1^0.^50.^5^-9.^36.^~1, 2, 3~^~04/01/2011~ -~22914~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22914~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~337~^2678.^6^141.^~1~^~A~^^^1^2215.^3232.^5^2312.^3042.^~2, 3~^~04/01/2011~ -~22914~^~338~^92.^6^5.^~1~^~A~^^^1^78.^115.^5^79.^105.^~2, 3~^~04/01/2011~ -~22914~^~417~^26.^4^^~8~^~LC~^^^1^26.^26.^0^^^~4~^~07/01/2017~ -~22914~^~431~^27.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22914~^~432~^26.^4^^~4~^~FLA~^^^1^26.^26.^0^^^^~07/01/2017~ -~22914~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~601~^6.^4^^~8~^~LC~^^^1^6.^6.^0^^^~4~^~07/01/2017~ -~22915~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~268~^424.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~301~^108.^2^^~1~^~A~^^^1^105.^110.^1^^^^~03/01/2004~ -~22915~^~304~^19.^3^0.^~1~^~A~^^^1^18.^20.^2^16.^21.^~2, 3~^~03/01/2004~ -~22915~^~305~^34.^3^4.^~1~^~A~^^^1^24.^40.^2^12.^54.^~2, 3~^~03/01/2004~ -~22915~^~306~^150.^3^14.^~1~^~A~^^^1^123.^173.^2^86.^213.^~2, 3~^~03/01/2004~ -~22915~^~307~^181.^3^8.^~1~^~A~^^^1^173.^198.^2^145.^217.^~2, 3~^~03/01/2004~ -~22915~^~417~^38.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~601~^7.^2^^~1~^~A~^^^1^4.^10.^1^^^^~03/01/2004~ -~22916~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~262~^0.^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~263~^0.^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~301~^73.^12^2.^~1~^~A~^^^1^56.^102.^5^66.^80.^~2, 3~^~07/01/2014~ -~22916~^~304~^18.^12^0.^~1~^~A~^^^1^16.^21.^5^17.^18.^~2, 3~^~07/01/2014~ -~22916~^~305~^102.^12^2.^~1~^~A~^^^1^89.^121.^5^96.^108.^~2, 3~^~07/01/2014~ -~22916~^~306~^184.^12^4.^~1~^~A~^^^1^163.^221.^5^171.^197.^~2, 3~^~07/01/2014~ -~22916~^~307~^347.^12^3.^~1~^~A~^^^1^326.^392.^6^337.^355.^~2, 3~^~07/01/2014~ -~22916~^~318~^437.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22916~^~319~^18.^2^^~1~^~A~^^^1^16.^24.^^^^^~07/01/2014~ -~22916~^~320~^37.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22916~^~321~^222.^6^22.^~1~^~A~^^^1^172.^385.^3^146.^297.^~2, 3~^~07/01/2014~ -~22916~^~322~^7.^6^2.^~1~^~A~^^^1^0.^72.^2^-3.^18.^~1, 2, 3~^~07/01/2014~ -~22916~^~324~^1.^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~334~^2.^6^1.^~1~^~A~^^^1^0.^9.^2^-3.^8.^~1, 2, 3~^~07/01/2014~ -~22916~^~337~^3350.^6^316.^~1~^~A~^^^1^2386.^4116.^2^1997.^4702.^~2, 3~^~07/01/2014~ -~22916~^~338~^175.^6^6.^~1~^~A~^^^1^153.^240.^3^152.^196.^~2, 3~^~07/01/2014~ -~22916~^~417~^14.^3^3.^~1~^~A~^^^1^11.^21.^2^0.^29.^~2, 3~^~05/01/2013~ -~22916~^~431~^11.^0^^~4~^~BFYY~^~22977~^^^^^^^^^~05/01/2013~ -~22916~^~432~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22916~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22916~^~601~^14.^6^0.^~1~^~A~^^^1^12.^19.^2^10.^17.^~2, 3~^~07/01/2014~ -~22917~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22917~^~268~^999.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22917~^~301~^34.^2^^~1~^~A~^^^1^32.^36.^1^^^^~01/01/2007~ -~22917~^~304~^32.^2^^~1~^~A~^^^1^30.^35.^1^^^^~01/01/2007~ -~22917~^~305~^72.^2^^~1~^~A~^^^1^60.^84.^1^^^^~01/01/2007~ -~22917~^~306~^221.^2^^~1~^~A~^^^1^219.^223.^1^^^^~01/01/2007~ -~22917~^~307~^587.^2^^~1~^~A~^^^1^550.^623.^1^^^^~01/01/2007~ -~22917~^~318~^212.^1^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~22917~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~22917~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22917~^~321~^117.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22917~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22917~^~334~^21.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22917~^~337~^2533.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22917~^~338~^52.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22917~^~417~^80.^2^^~1~^~A~^^^1^74.^86.^1^^^^~01/01/2007~ -~22917~^~431~^62.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~22917~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~22917~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22917~^~601~^8.^2^^~1~^~A~^^^1^7.^8.^1^^^^~01/01/2007~ -~22918~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~22918~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~22918~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~301~^52.^11^1.^~1~^~A~^^^1^40.^66.^1^38.^65.^~2, 3~^~03/01/2011~ -~22918~^~304~^31.^11^0.^~1~^~A~^^^1^26.^39.^1^24.^38.^~2, 3~^~03/01/2011~ -~22918~^~305~^117.^11^2.^~1~^~A~^^^1^99.^138.^2^101.^133.^~2, 3~^~03/01/2011~ -~22918~^~306~^210.^11^3.^~1~^~A~^^^1^173.^261.^2^186.^234.^~2, 3~^~03/01/2011~ -~22918~^~307~^351.^11^5.^~1~^~A~^^^1^251.^429.^1^302.^398.^~2, 3~^~03/01/2011~ -~22918~^~318~^68.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22918~^~319~^5.^5^0.^~1~^~A~^^^1^4.^8.^1^3.^6.^~2, 3~^~03/01/2011~ -~22918~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22918~^~321~^24.^4^0.^~1~^~A~^^^1^2.^38.^1^22.^25.^~2, 3~^~03/01/2011~ -~22918~^~322~^1.^4^0.^~1~^~A~^^^1^0.^2.^1^1.^1.^~2, 3~^~03/01/2011~ -~22918~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22918~^~334~^11.^4^0.^~1~^~A~^^^1^0.^18.^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~338~^36.^4^1.^~1~^~A~^^^1^27.^43.^1^14.^57.^~2, 3~^~03/01/2011~ -~22918~^~417~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22918~^~431~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~22918~^~432~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22918~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~601~^2.^11^0.^~1~^~A~^^^1^1.^4.^2^1.^3.^~2, 3~^~03/01/2011~ -~22919~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2004~ -~22919~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~06/01/2004~ -~22919~^~301~^57.^2^^~1~^~A~^^^1^53.^61.^1^^^^~06/01/2004~ -~22919~^~304~^13.^2^^~1~^~A~^^^1^12.^13.^1^^^^~06/01/2004~ -~22919~^~305~^97.^2^^~1~^~A~^^^1^94.^99.^1^^^^~06/01/2004~ -~22919~^~306~^72.^2^^~1~^~A~^^^1^70.^74.^1^^^^~06/01/2004~ -~22919~^~307~^335.^2^^~1~^~A~^^^1^328.^342.^1^^^^~06/01/2004~ -~22919~^~601~^20.^2^^~1~^~A~^^^1^20.^21.^1^^^^~06/01/2004~ -~22928~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22928~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22928~^~268~^1247.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~301~^39.^6^3.^~1~^~A~^^^1^23.^50.^5^29.^48.^~2, 3~^~01/01/2007~ -~22928~^~304~^36.^6^3.^~1~^~A~^^^1^23.^47.^5^27.^45.^~2, 3~^~01/01/2007~ -~22928~^~305~^97.^5^7.^~1~^~A~^^^1^77.^114.^4^77.^116.^~2, 3~^~01/01/2007~ -~22928~^~306~^271.^5^3.^~1~^~A~^^^1^260.^282.^4^260.^281.^~2, 3~^~01/01/2007~ -~22928~^~307~^659.^5^30.^~1~^~A~^^^1^598.^742.^4^575.^742.^~2, 3~^~01/01/2007~ -~22928~^~318~^261.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~22928~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~321~^144.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~334~^25.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~337~^3128.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~338~^64.^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~417~^76.^6^3.^~1~^~A~^^^1^68.^88.^5^68.^84.^~2, 3~^~01/01/2007~ -~22928~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22928~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~601~^9.^3^0.^~1~^~A~^^^1^9.^10.^2^8.^10.^~2, 3~^~01/01/2007~ -~22953~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22953~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22953~^~301~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~305~^91.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~306~^212.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~307~^407.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22953~^~318~^7804.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~320~^390.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~321~^3845.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~322~^1674.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~338~^454.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~417~^80.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~431~^34.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~432~^46.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22953~^~601~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22954~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~268~^822.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22954~^~301~^47.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~304~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~305~^118.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~306~^281.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~307~^478.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~22954~^~318~^1066.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~320~^55.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~321~^524.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~322~^223.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~338~^73.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~417~^63.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~431~^42.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~432~^20.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22954~^~601~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22955~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~22955~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~268~^894.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~301~^50.^6^3.^~1~^~A~^^^1^34.^62.^2^37.^62.^~2, 3~^~04/01/2014~ -~22955~^~304~^23.^6^0.^~1~^~A~^^^1^14.^34.^3^21.^24.^~2, 3~^~04/01/2014~ -~22955~^~305~^72.^6^1.^~1~^~A~^^^1^46.^115.^2^65.^77.^~2, 3~^~04/01/2014~ -~22955~^~306~^222.^6^7.^~1~^~A~^^^1^170.^268.^2^192.^251.^~2, 3~^~04/01/2014~ -~22955~^~307~^490.^6^21.^~1~^~A~^^^1^401.^568.^2^403.^577.^~2, 3~^~04/01/2014~ -~22955~^~318~^972.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~22955~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~320~^49.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~22955~^~321~^494.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~322~^179.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~22955~^~337~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~338~^149.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~417~^71.^3^^~1~^~A~^^^1^25.^95.^^^^~2, 3~^~04/01/2014~ -~22955~^~431~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~22955~^~432~^66.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~22956~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~22956~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~268~^580.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~22956~^~301~^150.^2^^~1~^~A~^^^1^146.^153.^1^^^^~06/01/2007~ -~22956~^~304~^21.^2^^~1~^~A~^^^1^17.^24.^1^^^^~06/01/2007~ -~22956~^~305~^140.^2^^~1~^~A~^^^1^131.^148.^1^^^^~06/01/2007~ -~22956~^~306~^170.^2^^~1~^~A~^^^1^115.^224.^1^^^^~06/01/2007~ -~22956~^~307~^445.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~22956~^~318~^647.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2007~ -~22956~^~319~^42.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~320~^68.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~321~^256.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~322~^90.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~22956~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~338~^101.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22956~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~22956~^~601~^14.^2^^~1~^~A~^^^1^13.^14.^1^^^^~06/01/2007~ -~22957~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~22957~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~22957~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~22957~^~268~^536.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~22957~^~301~^27.^4^3.^~1~^~A~^^^1^21.^36.^3^16.^37.^~2, 3~^~10/01/2007~ -~22957~^~304~^18.^4^1.^~1~^~A~^^^1^16.^21.^3^14.^21.^~2, 3~^~10/01/2007~ -~22957~^~305~^106.^4^0.^~1~^~A~^^^1^104.^106.^3^103.^107.^~2, 3~^~10/01/2007~ -~22957~^~306~^230.^4^20.^~1~^~A~^^^1^201.^291.^3^163.^295.^~2, 3~^~10/01/2007~ -~22957~^~307~^326.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2011~ -~22957~^~318~^319.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~319~^34.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~22957~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22957~^~321~^124.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~338~^327.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~417~^24.^3^2.^~1~^~A~^^^1^20.^28.^2^13.^33.^~2, 3~^~10/01/2007~ -~22957~^~431~^7.^3^3.^~1~^~A~^^^1^4.^14.^2^-7.^21.^~2, 3~^~10/01/2007~ -~22957~^~432~^16.^3^5.^~1~^~AS~^^^1^6.^24.^2^-6.^39.^~2, 3~^~10/01/2007~ -~22957~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~22957~^~601~^14.^4^3.^~1~^~A~^^^1^8.^22.^3^4.^23.^~2, 3~^~10/01/2007~ -~22958~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~268~^529.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~301~^13.^3^1.^~1~^~A~^^^1^10.^16.^2^5.^20.^~2, 3~^~12/01/2007~ -~22958~^~304~^14.^3^1.^~1~^~A~^^^1^10.^16.^2^5.^21.^~2, 3~^~12/01/2007~ -~22958~^~305~^94.^3^10.^~1~^~A~^^^1^75.^110.^2^50.^137.^~2, 3~^~12/01/2007~ -~22958~^~306~^123.^3^8.^~1~^~A~^^^1^110.^140.^2^85.^161.^~2, 3~^~12/01/2007~ -~22958~^~307~^333.^3^76.^~1~^~A~^^^1^180.^420.^2^2.^664.^~2, 3~^~12/01/2007~ -~22958~^~318~^609.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~321~^287.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~322~^107.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22958~^~334~^43.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~337~^53.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~338~^97.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~417~^18.^3^4.^~1~^~A~^^^1^12.^26.^2^0.^35.^~2, 3~^~12/01/2007~ -~22958~^~431~^5.^3^1.^~1~^~A~^^^1^3.^7.^2^0.^9.^~2, 3~^~12/01/2007~ -~22958~^~432~^13.^3^2.^~1~^~AS~^^^1^9.^19.^2^0.^26.^~2, 3~^~12/01/2007~ -~22958~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~22958~^~601~^16.^3^5.^~1~^~A~^^^1^10.^27.^2^-6.^39.^~2, 3~^~12/01/2007~ -~22959~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22959~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~268~^1587.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22959~^~301~^146.^12^2.^~1~^~A~^^^1^70.^178.^10^141.^150.^~2, 3~^~07/01/2014~ -~22959~^~304~^49.^12^0.^~1~^~A~^^^1^44.^52.^10^48.^50.^~2, 3~^~08/01/2012~ -~22959~^~305~^331.^12^5.^~1~^~A~^^^1^200.^378.^6^318.^343.^~2, 3~^~07/01/2014~ -~22959~^~306~^347.^12^3.^~1~^~A~^^^1^326.^407.^10^338.^355.^~2, 3~^~07/01/2014~ -~22959~^~307~^680.^12^13.^~1~^~A~^^^1^526.^829.^7^648.^712.^~2, 3~^~08/01/2012~ -~22959~^~318~^66.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~320~^18.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~417~^204.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~431~^187.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~435~^334.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~22959~^~601~^7.^2^^~1~^~A~^^^1^5.^8.^1^^^^~12/01/2008~ -~22960~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~268~^794.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~301~^63.^12^1.^~1~^~A~^^^1^39.^86.^8^58.^66.^~2, 3~^~08/01/2012~ -~22960~^~304~^17.^12^0.^~1~^~A~^^^1^15.^19.^6^16.^17.^~2, 3~^~08/01/2012~ -~22960~^~305~^112.^12^2.^~1~^~A~^^^1^75.^142.^6^105.^118.^~2, 3~^~08/01/2012~ -~22960~^~306~^129.^12^3.^~1~^~A~^^^1^106.^146.^7^120.^137.^~2, 3~^~08/01/2012~ -~22960~^~307~^338.^12^7.^~1~^~A~^^^1^273.^383.^5^318.^357.^~2, 3~^~08/01/2012~ -~22960~^~417~^70.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2012~ -~22960~^~431~^63.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2012~ -~22960~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2012~ -~22960~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~601~^3.^6^0.^~1~^~A~^^^1^1.^5.^3^2.^4.^~1, 2, 3~^~08/01/2012~ -~22961~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22961~^~268~^1055.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22961~^~301~^181.^5^5.^~1~^~A~^^^1^161.^193.^4^165.^196.^~2, 3~^~06/01/2009~ -~22961~^~304~^22.^5^0.^~1~^~A~^^^1^21.^23.^4^21.^23.^~2, 3~^~06/01/2009~ -~22961~^~305~^186.^5^1.^~1~^~A~^^^1^181.^190.^4^181.^191.^~2, 3~^~06/01/2009~ -~22961~^~306~^204.^5^2.^~1~^~A~^^^1^200.^214.^4^196.^211.^~2, 3~^~06/01/2009~ -~22961~^~307~^378.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22961~^~318~^242.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22961~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~22961~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22961~^~321~^141.^2^^~1~^~A~^^^1^134.^147.^1^^^^~06/01/2009~ -~22961~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~ -~22961~^~324~^10.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~334~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~06/01/2009~ -~22961~^~337~^1743.^2^^~1~^~A~^^^1^1507.^1979.^1^^^^~06/01/2009~ -~22961~^~338~^130.^2^^~1~^~A~^^^1^128.^133.^1^^^^~06/01/2009~ -~22961~^~417~^76.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~431~^44.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~432~^33.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~601~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^18.^21.^~2, 3~^~06/01/2009~ -~22962~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~262~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~263~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~268~^962.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~301~^196.^4^4.^~1~^~A~^^^1^184.^205.^3^181.^210.^~2, 3~^~06/01/2009~ -~22962~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^20.^22.^~2, 3~^~06/01/2009~ -~22962~^~305~^197.^4^2.^~1~^~A~^^^1^190.^202.^3^187.^205.^~2, 3~^~06/01/2009~ -~22962~^~306~^203.^4^2.^~1~^~A~^^^1^199.^209.^3^195.^211.^~2, 3~^~06/01/2009~ -~22962~^~307~^423.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~22962~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~22962~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~22962~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~22962~^~321~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~322~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~324~^10.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~334~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~337~^0.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~338~^115.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~417~^54.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~431~^43.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~432~^11.^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~435~^84.^0^^~4~^~NC~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~601~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^21.^~2, 3~^~06/01/2009~ -~22963~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~301~^196.^5^2.^~1~^~A~^^^1^190.^204.^4^188.^203.^~2, 3~^~06/01/2009~ -~22963~^~304~^23.^5^0.^~1~^~A~^^^1^22.^23.^4^22.^23.^~2, 3~^~06/01/2009~ -~22963~^~305~^180.^5^2.^~1~^~A~^^^1^175.^189.^4^172.^186.^~2, 3~^~06/01/2009~ -~22963~^~306~^221.^5^1.^~1~^~A~^^^1^217.^223.^4^217.^223.^~2, 3~^~06/01/2009~ -~22963~^~307~^557.^5^11.^~1~^~A~^^^1^522.^585.^4^524.^589.^~2, 3~^~06/01/2009~ -~22963~^~318~^256.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~319~^28.^0^^~4~^~BFFN~^~22961~^^^^^^^^^~06/01/2009~ -~22963~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~321~^92.^2^^~1~^~A~^^^1^92.^93.^1^^^^~06/01/2009~ -~22963~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~ -~22963~^~334~^10.^2^^~1~^~A~^^^1^10.^10.^1^^^^~06/01/2009~ -~22963~^~337~^2174.^2^^~1~^~A~^^^1^2127.^2221.^1^^^^~06/01/2009~ -~22963~^~338~^153.^2^^~1~^~A~^^^1^151.^155.^1^^^^~06/01/2009~ -~22963~^~601~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^18.^20.^~2, 3~^~06/01/2009~ -~22969~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~301~^34.^9^1.^~1~^~A~^^^1^30.^39.^4^30.^37.^~2, 3~^~03/01/2011~ -~22969~^~304~^25.^9^0.^~1~^~A~^^^1^21.^28.^5^23.^25.^~2, 3~^~03/01/2011~ -~22969~^~305~^80.^9^1.^~1~^~A~^^^1^76.^86.^6^77.^83.^~2, 3~^~03/01/2011~ -~22969~^~306~^245.^9^5.^~1~^~A~^^^1^215.^272.^7^231.^258.^~2, 3~^~03/01/2011~ -~22969~^~307~^385.^9^4.^~1~^~A~^^^1^297.^485.^7^374.^394.^~2, 3~^~03/01/2011~ -~22969~^~318~^452.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22969~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22969~^~321~^228.^5^8.^~1~^~A~^^^1^198.^255.^2^195.^260.^~2, 3~^~03/01/2011~ -~22969~^~322~^14.^5^0.^~1~^~A~^^^1^13.^16.^2^11.^16.^~2, 3~^~03/01/2011~ -~22969~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~334~^73.^5^8.^~1~^~A~^^^1^55.^116.^2^34.^111.^~2, 3~^~03/01/2011~ -~22969~^~337~^1523.^5^109.^~1~^~A~^^^1^546.^2617.^1^402.^2642.^~2, 3~^~03/01/2011~ -~22969~^~338~^126.^5^10.^~1~^~A~^^^1^101.^180.^3^87.^163.^~2, 3~^~03/01/2011~ -~22969~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22969~^~601~^10.^9^0.^~1~^~A~^^^1^7.^13.^6^9.^10.^~2, 3~^~03/01/2011~ -~22970~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~301~^114.^20^0.^~1~^~A~^^^1^54.^141.^16^111.^115.^~2, 3~^~03/01/2011~ -~22970~^~304~^17.^20^0.^~1~^~A~^^^1^12.^25.^10^16.^17.^~2, 3~^~03/01/2011~ -~22970~^~305~^119.^20^0.^~1~^~A~^^^1^102.^139.^8^116.^120.^~2, 3~^~03/01/2011~ -~22970~^~306~^95.^20^1.^~1~^~A~^^^1^41.^131.^9^91.^98.^~2, 3~^~03/01/2011~ -~22970~^~307~^290.^20^2.^~1~^~A~^^^1^231.^363.^14^284.^295.^~2, 3~^~03/01/2011~ -~22970~^~318~^182.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22970~^~319~^45.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~22970~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~321~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22970~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~22970~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~601~^10.^20^0.^~1~^~A~^^^1^5.^16.^8^9.^10.^~2, 3~^~03/01/2011~ -~22971~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~301~^15.^10^1.^~1~^~A~^^^1^9.^21.^9^11.^17.^~2, 3~^~03/01/2011~ -~22971~^~304~^15.^10^0.^~1~^~A~^^^1^13.^19.^9^14.^16.^~2, 3~^~03/01/2011~ -~22971~^~305~^53.^10^3.^~1~^~A~^^^1^38.^71.^9^46.^60.^~2, 3~^~03/01/2011~ -~22971~^~306~^242.^10^4.^~1~^~A~^^^1^207.^259.^9^231.^253.^~2, 3~^~03/01/2011~ -~22971~^~307~^329.^10^24.^~1~^~A~^^^1^216.^447.^9^274.^383.^~2, 3~^~03/01/2011~ -~22971~^~318~^163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~319~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~321~^67.^3^41.^~1~^~A~^^^1^10.^148.^2^-111.^246.^~2, 3~^~03/01/2011~ -~22971~^~322~^5.^3^3.^~1~^~A~^^^1^1.^12.^2^-10.^20.^~2, 3~^~03/01/2011~ -~22971~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~334~^3.^3^0.^~1~^~A~^^^1^1.^4.^2^0.^5.^~2, 3~^~03/01/2011~ -~22971~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~338~^43.^3^5.^~1~^~A~^^^1^35.^53.^2^19.^66.^~2, 3~^~03/01/2011~ -~22971~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~601~^17.^10^4.^~1~^~A~^^^1^7.^51.^9^7.^26.^~2, 3~^~03/01/2011~ -~22972~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~301~^44.^11^2.^~1~^~A~^^^1^11.^66.^4^38.^50.^~2, 3~^~03/01/2011~ -~22972~^~304~^22.^11^0.^~1~^~A~^^^1^18.^25.^5^20.^23.^~2, 3~^~03/01/2011~ -~22972~^~305~^161.^11^7.^~1~^~A~^^^1^119.^192.^4^140.^182.^~2, 3~^~03/01/2011~ -~22972~^~306~^305.^11^3.^~1~^~A~^^^1^250.^352.^5^295.^315.^~2, 3~^~03/01/2011~ -~22972~^~307~^666.^11^18.^~1~^~A~^^^1^558.^752.^4^615.^715.^~2, 3~^~03/01/2011~ -~22972~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22972~^~319~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~22972~^~321~^126.^5^9.^~1~^~A~^^^1^37.^223.^2^90.^162.^~2, 3~^~03/01/2011~ -~22972~^~322~^46.^5^5.^~1~^~A~^^^1^0.^99.^1^-10.^101.^~1, 2, 3~^~03/01/2011~ -~22972~^~324~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~334~^19.^5^3.^~1~^~A~^^^1^0.^46.^2^4.^32.^~1, 2, 3~^~03/01/2011~ -~22972~^~337~^3435.^5^61.^~1~^~A~^^^1^2815.^4034.^1^3002.^3868.^~2, 3~^~03/01/2011~ -~22972~^~338~^90.^5^6.^~1~^~A~^^^1^77.^123.^2^63.^117.^~2, 3~^~03/01/2011~ -~22972~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~601~^35.^11^0.^~1~^~A~^^^1^27.^44.^8^33.^36.^~2, 3~^~03/01/2011~ -~22973~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~268~^1047.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~301~^72.^12^11.^~1~^~A~^^^1^9.^128.^4^40.^104.^~2, 3~^~07/01/2014~ -~22973~^~304~^17.^12^0.^~1~^~A~^^^1^11.^18.^5^16.^17.^~2, 3~^~07/01/2014~ -~22973~^~305~^224.^12^3.^~1~^~A~^^^1^131.^245.^6^215.^231.^~2, 3~^~07/01/2014~ -~22973~^~306~^125.^12^3.^~1~^~A~^^^1^109.^220.^7^116.^134.^~2, 3~^~07/01/2014~ -~22973~^~307~^668.^12^36.^~1~^~A~^^^1^495.^790.^4^567.^769.^~2, 3~^~07/01/2014~ -~22973~^~318~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~319~^47.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~321~^3.^6^0.^~1~^~A~^^^1^0.^20.^2^0.^6.^~1, 2, 3~^~07/01/2014~ -~22973~^~322~^0.^6^0.^~1~^~A~^^^1^0.^3.^2^0.^0.^~1, 2, 3~^~04/01/2011~ -~22973~^~324~^15.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~334~^4.^6^2.^~1~^~A~^^^1^0.^19.^2^-4.^13.^~1, 2, 3~^~07/01/2014~ -~22973~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~338~^132.^6^3.^~1~^~A~^^^1^119.^194.^2^120.^144.^~2, 3~^~07/01/2014~ -~22973~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22973~^~601~^44.^12^4.^~1~^~A~^^^1^20.^64.^4^33.^55.^~2, 3~^~07/01/2014~ -~22974~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~22974~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2012~ -~22974~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2012~ -~22974~^~268~^1122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~22974~^~301~^47.^15^8.^~1~^~A~^^^1^8.^430.^4^25.^69.^~2, 3~^~04/01/2016~ -~22974~^~304~^25.^15^0.^~1~^~A~^^^1^16.^41.^5^23.^26.^~2, 3~^~04/01/2016~ -~22974~^~305~^165.^15^5.^~1~^~A~^^^1^107.^420.^7^152.^176.^~2, 3~^~04/01/2016~ -~22974~^~306~^206.^15^5.^~1~^~A~^^^1^150.^337.^4^191.^221.^~2, 3~^~04/01/2016~ -~22974~^~307~^540.^15^13.^~1~^~A~^^^1^449.^679.^7^507.^572.^~2, 3~^~04/01/2016~ -~22974~^~318~^135.^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~22974~^~319~^11.^5^0.^~1~^~A~^^^1^4.^13.^2^6.^15.^~2, 3~^~04/01/2016~ -~22974~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~22974~^~321~^48.^3^^~1~^~A~^^^1^19.^66.^^^^~2, 3~^~04/01/2016~ -~22974~^~322~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~324~^10.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2011~ -~22974~^~334~^25.^3^^~1~^~A~^^^1^8.^50.^^^^~2, 3~^~04/01/2016~ -~22974~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~338~^85.^3^^~1~^~A~^^^1^60.^105.^^^^~2, 3~^~04/01/2016~ -~22974~^~417~^35.^2^^~1~^~A~^^^1^34.^38.^^^^^~04/01/2016~ -~22974~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22974~^~432~^35.^2^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~22974~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~601~^32.^11^0.^~1~^~A~^^^1^23.^37.^3^29.^33.^~2, 3~^~06/01/2014~ -~22975~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22975~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~22975~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~22975~^~268~^1093.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22975~^~301~^38.^14^1.^~1~^~A~^^^1^7.^45.^10^35.^40.^~2, 3~^~05/01/2013~ -~22975~^~304~^35.^14^1.^~1~^~A~^^^1^16.^45.^5^30.^38.^~2, 3~^~05/01/2013~ -~22975~^~305~^213.^14^7.^~1~^~A~^^^1^128.^273.^6^194.^232.^~2, 3~^~05/01/2013~ -~22975~^~306~^281.^14^10.^~1~^~A~^^^1^187.^343.^5^253.^308.^~2, 3~^~05/01/2013~ -~22975~^~307~^538.^14^9.^~1~^~A~^^^1^490.^758.^9^516.^560.^~2, 3~^~05/01/2013~ -~22975~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22975~^~319~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~320~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~417~^5.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22975~^~601~^34.^4^0.^~1~^~A~^^^1^32.^35.^3^31.^36.^~2, 3~^~08/01/2010~ -~22976~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~268~^464.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~301~^79.^15^5.^~1~^~A~^^^1^55.^146.^14^66.^91.^~2, 3~^~04/01/2011~ -~22976~^~304~^20.^15^0.^~1~^~A~^^^1^16.^24.^14^18.^21.^~2, 3~^~04/01/2011~ -~22976~^~305~^78.^15^3.^~1~^~A~^^^1^65.^113.^14^71.^84.^~2, 3~^~04/01/2011~ -~22976~^~306~^233.^15^8.^~1~^~A~^^^1^181.^310.^14^214.^252.^~2, 3~^~04/01/2011~ -~22976~^~307~^280.^15^12.^~1~^~A~^^^1^151.^346.^14^253.^306.^~2, 3~^~04/01/2011~ -~22976~^~318~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~319~^14.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~321~^262.^9^51.^~1~^~A~^^^1^129.^525.^8^143.^380.^~2, 3~^~04/01/2011~ -~22976~^~322~^0.^9^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~334~^0.^9^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~337~^2966.^9^229.^~1~^~A~^^^1^1887.^4136.^8^2437.^3494.^~2, 3~^~04/01/2011~ -~22976~^~338~^293.^9^72.^~1~^~A~^^^1^132.^661.^8^124.^460.^~2, 3~^~04/01/2011~ -~22976~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~431~^34.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~601~^11.^6^1.^~1~^~A~^^^1^8.^15.^5^7.^14.^~2, 3~^~04/01/2011~ -~22977~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~268~^564.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~301~^88.^12^3.^~1~^~A~^^^1^61.^112.^6^77.^97.^~2, 3~^~06/01/2012~ -~22977~^~304~^20.^12^0.^~1~^~A~^^^1^18.^22.^7^19.^20.^~2, 3~^~06/01/2012~ -~22977~^~305~^115.^12^2.^~1~^~A~^^^1^97.^129.^6^107.^121.^~2, 3~^~06/01/2012~ -~22977~^~306~^196.^12^3.^~1~^~A~^^^1^166.^227.^5^186.^206.^~2, 3~^~06/01/2012~ -~22977~^~307~^373.^12^9.^~1~^~A~^^^1^328.^430.^6^349.^396.^~2, 3~^~06/01/2012~ -~22977~^~318~^437.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~22977~^~319~^23.^2^^~1~^~A~^^^1^21.^27.^^^^^~06/01/2012~ -~22977~^~320~^41.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~22977~^~321~^210.^6^10.^~1~^~A~^^^1^181.^286.^3^175.^243.^~2, 3~^~06/01/2012~ -~22977~^~322~^8.^6^2.^~1~^~A~^^^1^0.^35.^2^-1.^17.^~1, 2, 3~^~06/01/2012~ -~22977~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~334~^3.^6^0.^~1~^~A~^^^1^0.^12.^2^0.^5.^~1, 2, 3~^~06/01/2012~ -~22977~^~337~^3592.^6^176.^~1~^~A~^^^1^2594.^4388.^3^3032.^4151.^~2, 3~^~06/01/2012~ -~22977~^~338~^176.^6^8.^~1~^~A~^^^1^147.^241.^3^149.^202.^~2, 3~^~06/01/2012~ -~22977~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~22977~^~431~^17.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~22977~^~432~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22977~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22977~^~601~^17.^6^0.^~1~^~A~^^^1^15.^20.^3^15.^17.^~2, 3~^~06/01/2012~ -~22978~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~301~^39.^13^10.^~1~^~A~^^^1^7.^230.^3^4.^72.^~2, 3~^~07/01/2014~ -~22978~^~304~^29.^13^0.^~1~^~A~^^^1^21.^46.^4^27.^31.^~2, 3~^~07/01/2014~ -~22978~^~305~^200.^13^4.^~1~^~A~^^^1^150.^292.^4^187.^212.^~2, 3~^~07/01/2014~ -~22978~^~306~^281.^13^5.^~1~^~A~^^^1^234.^383.^4^264.^297.^~2, 3~^~07/01/2014~ -~22978~^~307~^527.^13^6.^~1~^~A~^^^1^435.^683.^4^508.^544.^~2, 3~^~07/01/2014~ -~22978~^~318~^40.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22978~^~319~^5.^2^^~1~^~A~^^^1^4.^6.^^^^^~07/01/2014~ -~22978~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~22978~^~321~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~334~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~338~^44.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~417~^28.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~431~^7.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~22978~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~22978~^~601~^36.^7^1.^~1~^~A~^^^1^22.^44.^1^22.^49.^~2, 3~^~07/01/2014~ -~22998~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22998~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~268~^1490.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22998~^~301~^18.^6^1.^~1~^~A~^^^1^15.^22.^5^15.^20.^~2, 3~^~08/01/2012~ -~22998~^~304~^31.^6^0.^~1~^~A~^^^1^30.^34.^5^29.^33.^~2, 3~^~08/01/2012~ -~22998~^~305~^126.^6^2.^~1~^~A~^^^1^120.^135.^5^119.^131.^~2, 3~^~08/01/2012~ -~22998~^~306~^153.^6^4.^~1~^~A~^^^1^142.^169.^5^141.^164.^~2, 3~^~08/01/2012~ -~22998~^~307~^884.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22998~^~318~^51.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~337~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~338~^105.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~431~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~432~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~22998~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22999~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~268~^568.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~301~^7.^6^0.^~1~^~A~^^^1^6.^8.^5^5.^7.^~2, 3~^~08/01/2012~ -~22999~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~08/01/2012~ -~22999~^~305~^36.^6^0.^~1~^~A~^^^1^35.^38.^5^34.^37.^~2, 3~^~08/01/2012~ -~22999~^~306~^58.^6^3.^~1~^~A~^^^1^48.^75.^5^48.^67.^~2, 3~^~08/01/2012~ -~22999~^~307~^377.^6^9.^~1~^~A~^^^1^353.^412.^5^353.^400.^~2, 3~^~08/01/2012~ -~22999~^~318~^139.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22999~^~319~^42.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22999~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~23000~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~304~^25.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~305~^234.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~306~^395.^6^9.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~307~^72.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23000~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~324~^1.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23000~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23000~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23000~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~601~^66.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23001~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~268~^897.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~304~^10.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~305~^185.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~306~^243.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~307~^48.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23001~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~324~^4.^0^^~4~^~BFFN~^~23192~^^^^^^^^^~06/01/2013~ -~23001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23001~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23001~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23001~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~601~^61.^6^0.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~268~^1154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~305~^208.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~306~^257.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~307~^64.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23002~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~324~^5.^0^^~4~^~BFFN~^~23188~^^^^^^^^^~06/01/2013~ -~23002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23002~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23002~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23002~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~601~^83.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~304~^10.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~305~^179.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~306~^235.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~307~^42.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23003~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~324~^4.^0^^~4~^~BFFN~^~23194~^^^^^^^^^~06/01/2013~ -~23003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23003~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23003~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23003~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~03/01/2013~ -~23003~^~601~^60.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~268~^1100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~301~^20.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~305~^212.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~306~^259.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~307~^63.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23004~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~324~^5.^0^^~4~^~BFFN~^~23187~^^^^^^^^^~06/01/2013~ -~23004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23004~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23004~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23004~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~03/01/2013~ -~23004~^~601~^79.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~268~^932.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~301~^21.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~304~^10.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~305~^177.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~306~^232.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~307~^40.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23005~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~324~^5.^0^^~4~^~BFFN~^~23192~^^^^^^^^^~06/01/2013~ -~23005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23005~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23005~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23005~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~601~^62.^6^0.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~268~^1208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~304~^18.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~305~^201.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~306~^248.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~307~^62.^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23006~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~324~^6.^0^^~4~^~BFFN~^~23188~^^^^^^^^^~06/01/2013~ -~23006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23006~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23006~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23006~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~601~^83.^6^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~268~^898.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~301~^23.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~304~^10.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~305~^188.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~306~^246.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~307~^52.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23007~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~324~^4.^0^^~4~^~BFFN~^~23194~^^^^^^^^^~06/01/2013~ -~23007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23007~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23007~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~03/01/2013~ -~23007~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~03/01/2013~ -~23007~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~268~^1175.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~301~^18.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~305~^215.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~306~^261.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~307~^62.^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23008~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~324~^5.^0^^~4~^~BFFN~^~23187~^^^^^^^^^~06/01/2013~ -~23008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23008~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23008~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23008~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~03/01/2013~ -~23008~^~601~^84.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23030~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~268~^558.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23030~^~301~^5.^2^^~1~^~A~^^^1^4.^5.^^^^^~01/01/2005~ -~23030~^~304~^24.^2^^~1~^~A~^^^1^24.^25.^^^^^~01/01/2005~ -~23030~^~305~^213.^2^^~1~^~A~^^^1^210.^215.^^^^^~01/01/2005~ -~23030~^~306~^378.^2^^~1~^~A~^^^1^367.^389.^^^^^~01/01/2005~ -~23030~^~307~^62.^2^^~1~^~A~^^^1^60.^64.^^^^^~01/01/2005~ -~23030~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23030~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23030~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23030~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23030~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23030~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23030~^~601~^61.^6^^~1~^~A~^^^1^59.^66.^^^^~2~^~01/01/2005~ -~23031~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~268~^730.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23031~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^^^^^~01/01/2005~ -~23031~^~304~^26.^2^^~1~^~A~^^^1^25.^27.^^^^^~01/01/2005~ -~23031~^~305~^236.^2^^~1~^~A~^^^1^224.^247.^^^^^~01/01/2005~ -~23031~^~306~^365.^2^^~1~^~A~^^^1^362.^368.^^^^^~01/01/2005~ -~23031~^~307~^55.^2^^~1~^~A~^^^1^52.^58.^^^^^~01/01/2005~ -~23031~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23031~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23031~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23031~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23031~^~601~^82.^6^^~1~^~A~^^^1^80.^85.^^^^~2~^~01/01/2005~ -~23032~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23032~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~305~^219.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~306~^386.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23032~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23032~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~23032~^~601~^61.^4^^~1~^~A~^^^1^60.^63.^^^^~2~^~01/01/2005~ -~23033~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~268~^670.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23033~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~305~^245.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~306~^365.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23033~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23033~^~601~^78.^4^^~1~^~A~^^^1^74.^86.^^^^~2~^~01/01/2005~ -~23034~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~268~^606.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23034~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23034~^~304~^23.^2^^~1~^~A~^^^1^23.^24.^^^^^~01/01/2005~ -~23034~^~305~^200.^2^^~1~^~A~^^^1^196.^203.^^^^^~01/01/2005~ -~23034~^~306~^339.^2^^~1~^~A~^^^1^327.^351.^^^^^~01/01/2005~ -~23034~^~307~^59.^2^^~1~^~A~^^^1^58.^61.^^^^^~01/01/2005~ -~23034~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23034~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23034~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23034~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23034~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23034~^~601~^56.^6^^~1~^~A~^^^1^51.^60.^^^^~2~^~01/01/2005~ -~23035~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~268~^756.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23035~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23035~^~304~^25.^2^^~1~^~A~^^^1^24.^27.^^^^^~01/01/2005~ -~23035~^~305~^227.^2^^~1~^~A~^^^1^211.^242.^^^^^~01/01/2005~ -~23035~^~306~^361.^2^^~1~^~A~^^^1^334.^387.^^^^^~01/01/2005~ -~23035~^~307~^60.^2^^~1~^~A~^^^1^57.^63.^^^^^~01/01/2005~ -~23035~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23035~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23035~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23035~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23035~^~601~^76.^6^^~1~^~A~^^^1^75.^79.^^^^~2~^~01/01/2005~ -~23036~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~268~^593.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23036~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~305~^219.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~306~^366.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23036~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23036~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23036~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23036~^~601~^58.^4^^~1~^~A~^^^1^56.^60.^^^^~2~^~01/01/2005~ -~23037~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23037~^~301~^4.^2^^~1~^~A~^^^1^4.^5.^^^^^~01/01/2005~ -~23037~^~304~^24.^2^^~1~^~A~^^^1^24.^24.^^^^^~01/01/2005~ -~23037~^~305~^212.^2^^~1~^~A~^^^1^208.^215.^^^^^~01/01/2005~ -~23037~^~306~^347.^2^^~1~^~A~^^^1^347.^347.^^^^^~01/01/2005~ -~23037~^~307~^61.^2^^~1~^~A~^^^1^58.^64.^^^^^~01/01/2005~ -~23037~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23037~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23037~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23037~^~601~^57.^6^^~1~^~A~^^^1^55.^61.^^^^~2~^~01/01/2005~ -~23038~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~268~^772.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23038~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23038~^~304~^24.^2^^~1~^~A~^^^1^24.^24.^^^^^~01/01/2005~ -~23038~^~305~^223.^2^^~1~^~A~^^^1^220.^226.^^^^^~01/01/2005~ -~23038~^~306~^342.^2^^~1~^~A~^^^1^327.^356.^^^^^~01/01/2005~ -~23038~^~307~^59.^2^^~1~^~A~^^^1^59.^60.^^^^^~01/01/2005~ -~23038~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23038~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23038~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23038~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23038~^~601~^74.^6^^~1~^~A~^^^1^66.^79.^^^^~2~^~01/01/2005~ -~23039~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23039~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~305~^221.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23039~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23039~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23039~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23039~^~601~^58.^4^^~1~^~A~^^^1^56.^60.^^^^~2~^~01/01/2005~ -~23040~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23040~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~305~^249.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~306~^401.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23040~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23040~^~601~^77.^4^^~1~^~A~^^^1^72.^82.^^^^~2~^~01/01/2005~ -~23041~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23041~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23041~^~304~^20.^2^^~1~^~A~^^^1^20.^21.^^^^^~01/01/2005~ -~23041~^~305~^178.^2^^~1~^~A~^^^1^177.^178.^^^^^~01/01/2005~ -~23041~^~306~^302.^2^^~1~^~A~^^^1^289.^314.^^^^^~01/01/2005~ -~23041~^~307~^74.^2^^~1~^~A~^^^1^74.^75.^^^^^~01/01/2005~ -~23041~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23041~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23041~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23041~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23041~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~23041~^~601~^65.^6^^~1~^~A~^^^1^62.^69.^^^^~2~^~01/01/2005~ -~23042~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23042~^~301~^6.^2^^~1~^~A~^^^1^6.^6.^^^^^~01/01/2005~ -~23042~^~304~^23.^2^^~1~^~A~^^^1^22.^23.^^^^^~01/01/2005~ -~23042~^~305~^199.^2^^~1~^~A~^^^1^191.^206.^^^^^~01/01/2005~ -~23042~^~306~^317.^2^^~1~^~A~^^^1^309.^324.^^^^^~01/01/2005~ -~23042~^~307~^78.^2^^~1~^~A~^^^1^75.^81.^^^^^~01/01/2005~ -~23042~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23042~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23042~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23042~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~23042~^~601~^83.^6^^~1~^~A~^^^1^77.^92.^^^^~2~^~01/01/2005~ -~23043~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~268~^694.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23043~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~305~^198.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~306~^324.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~307~^75.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23043~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23043~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23043~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23043~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23043~^~601~^66.^4^^~1~^~A~^^^1^65.^69.^^^^~2~^~01/01/2005~ -~23044~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~268~^887.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23044~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~305~^211.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~306~^333.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~307~^76.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23044~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23044~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23044~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23044~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~23044~^~601~^83.^4^^~1~^~A~^^^1^82.^86.^^^^~2~^~01/01/2005~ -~23045~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23045~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23045~^~304~^24.^2^^~1~^~A~^^^1^23.^25.^^^^^~01/01/2005~ -~23045~^~305~^214.^2^^~1~^~A~^^^1^211.^217.^^^^^~01/01/2005~ -~23045~^~306~^365.^2^^~1~^~A~^^^1^351.^378.^^^^^~01/01/2005~ -~23045~^~307~^54.^2^^~1~^~A~^^^1^51.^57.^^^^^~01/01/2005~ -~23045~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23045~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23045~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23045~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23045~^~601~^58.^6^^~1~^~A~^^^1^57.^60.^^^^~2~^~01/01/2005~ -~23046~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~268~^787.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23046~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23046~^~304~^26.^2^^~1~^~A~^^^1^25.^27.^^^^^~01/01/2005~ -~23046~^~305~^238.^2^^~1~^~A~^^^1^229.^247.^^^^^~01/01/2005~ -~23046~^~306~^373.^2^^~1~^~A~^^^1^357.^389.^^^^^~01/01/2005~ -~23046~^~307~^51.^2^^~1~^~A~^^^1^51.^52.^^^^^~01/01/2005~ -~23046~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23046~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23046~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23046~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~23046~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23046~^~601~^75.^6^^~1~^~A~^^^1^71.^83.^^^^~2~^~01/01/2005~ -~23047~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~268~^574.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23047~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~305~^216.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~306~^360.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~307~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23047~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23047~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23047~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~23047~^~601~^59.^4^^~1~^~A~^^^1^56.^60.^^^^~2~^~01/01/2005~ -~23048~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23048~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~305~^243.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~306~^386.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~307~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23048~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23048~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23048~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23048~^~601~^74.^4^^~1~^~A~^^^1^72.^77.^^^^~2~^~01/01/2005~ -~23049~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~268~^628.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23049~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23049~^~304~^24.^2^^~1~^~A~^^^1^23.^25.^^^^^~01/01/2005~ -~23049~^~305~^209.^2^^~1~^~A~^^^1^204.^213.^^^^^~01/01/2005~ -~23049~^~306~^338.^2^^~1~^~A~^^^1^317.^358.^^^^^~01/01/2005~ -~23049~^~307~^63.^2^^~1~^~A~^^^1^61.^65.^^^^^~01/01/2005~ -~23049~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23049~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23049~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23049~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23049~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23049~^~601~^61.^6^^~1~^~A~^^^1^59.^62.^^^^~2~^~01/01/2005~ -~23050~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~268~^800.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23050~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^^^^^~01/01/2005~ -~23050~^~304~^25.^2^^~1~^~A~^^^1^25.^26.^^^^^~01/01/2005~ -~23050~^~305~^232.^2^^~1~^~A~^^^1^231.^232.^^^^^~01/01/2005~ -~23050~^~306~^361.^2^^~1~^~A~^^^1^360.^361.^^^^^~01/01/2005~ -~23050~^~307~^57.^2^^~1~^~A~^^^1^55.^58.^^^^^~01/01/2005~ -~23050~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23050~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23050~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23050~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23050~^~601~^78.^6^^~1~^~A~^^^1^75.^81.^^^^~2~^~01/01/2005~ -~23051~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~268~^540.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23051~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~305~^217.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~306~^360.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23051~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23051~^~601~^61.^4^^~1~^~A~^^^1^58.^64.^^^^~2~^~01/01/2005~ -~23052~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~268~^696.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23052~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~305~^237.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~306~^368.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23052~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23052~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2005~ -~23052~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~23052~^~601~^75.^4^^~1~^~A~^^^1^73.^77.^^^^~2~^~01/01/2005~ -~23053~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23053~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~305~^196.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23053~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23053~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23053~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23053~^~601~^57.^10^^~1~^~A~^^^1^51.^60.^^^^~2~^~01/01/2005~ -~23054~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23054~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~01/01/2005~ -~23054~^~304~^25.^3^^~1~^~A~^^^1^24.^27.^^^^~2~^~01/01/2005~ -~23054~^~305~^225.^3^^~1~^~A~^^^1^211.^242.^^^^~2~^~01/01/2005~ -~23054~^~306~^356.^3^^~1~^~A~^^^1^334.^387.^^^^~2~^~01/01/2005~ -~23054~^~307~^59.^3^^~1~^~A~^^^1^57.^63.^^^^~2~^~01/01/2005~ -~23054~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23054~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23054~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23054~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23054~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23054~^~601~^78.^10^^~1~^~A~^^^1^75.^84.^^^^~2~^~01/01/2005~ -~23055~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23055~^~301~^5.^3^^~1~^~A~^^^1^4.^5.^^^^~2~^~01/01/2005~ -~23055~^~304~^24.^3^^~1~^~A~^^^1^24.^25.^^^^~2~^~01/01/2005~ -~23055~^~305~^215.^3^^~1~^~A~^^^1^210.^219.^^^^~2~^~01/01/2005~ -~23055~^~306~^381.^3^^~1~^~A~^^^1^367.^389.^^^^~2~^~01/01/2005~ -~23055~^~307~^61.^3^^~1~^~A~^^^1^57.^64.^^^^~2~^~01/01/2005~ -~23055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23055~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23055~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23055~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23055~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23055~^~601~^61.^7^^~1~^~A~^^^1^60.^63.^^^^~2~^~01/01/2005~ -~23056~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~268~^702.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23056~^~301~^5.^3^^~1~^~A~^^^1^5.^6.^^^^~2~^~01/01/2005~ -~23056~^~304~^26.^3^^~1~^~A~^^^1^25.^27.^^^^~2~^~01/01/2005~ -~23056~^~305~^239.^3^^~1~^~A~^^^1^224.^247.^^^^~2~^~01/01/2005~ -~23056~^~306~^365.^3^^~1~^~A~^^^1^362.^368.^^^^~2~^~01/01/2005~ -~23056~^~307~^54.^3^^~1~^~A~^^^1^52.^58.^^^^~2~^~01/01/2005~ -~23056~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23056~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23056~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23056~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23056~^~601~^80.^7^^~1~^~A~^^^1^74.^86.^^^^~2~^~01/01/2005~ -~23057~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23057~^~301~^4.^3^^~1~^~A~^^^1^4.^5.^^^^~2~^~01/01/2005~ -~23057~^~304~^24.^3^^~1~^~A~^^^1^24.^25.^^^^~2~^~01/01/2005~ -~23057~^~305~^215.^3^^~1~^~A~^^^1^208.^221.^^^^~2~^~01/01/2005~ -~23057~^~306~^355.^3^^~1~^~A~^^^1^347.^370.^^^^~2~^~01/01/2005~ -~23057~^~307~^60.^3^^~1~^~A~^^^1^58.^64.^^^^~2~^~01/01/2005~ -~23057~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23057~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23057~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23057~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23057~^~601~^57.^10^^~1~^~A~^^^1^55.^61.^^^^~2~^~01/01/2005~ -~23058~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~268~^761.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~02/01/2005~ -~23058~^~304~^26.^3^^~1~^~A~^^^1^24.^28.^^^^~2~^~02/01/2005~ -~23058~^~305~^232.^3^^~1~^~A~^^^1^220.^249.^^^^~2~^~02/01/2005~ -~23058~^~306~^361.^3^^~1~^~A~^^^1^327.^401.^^^^~2~^~02/01/2005~ -~23058~^~307~^60.^3^^~1~^~A~^^^1^59.^62.^^^^~2~^~02/01/2005~ -~23058~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23058~^~601~^76.^10^^~1~^~A~^^^1^66.^82.^^^^~2~^~02/01/2005~ -~23059~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~268~^736.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~301~^6.^3^^~1~^~A~^^^1^5.^6.^^^^~2~^~02/01/2005~ -~23059~^~304~^21.^3^^~1~^~A~^^^1^20.^23.^^^^~2~^~02/01/2005~ -~23059~^~305~^184.^3^^~1~^~A~^^^1^177.^198.^^^^~2~^~02/01/2005~ -~23059~^~306~^309.^3^^~1~^~A~^^^1^289.^324.^^^^~2~^~02/01/2005~ -~23059~^~307~^74.^3^^~1~^~A~^^^1^74.^75.^^^^~2~^~02/01/2005~ -~23059~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~601~^66.^10^^~1~^~A~^^^1^62.^69.^^^^~2~^~02/01/2005~ -~23060~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~268~^928.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~301~^6.^3^^~1~^~A~^^^1^6.^6.^^^^~2~^~04/01/2005~ -~23060~^~304~^23.^3^^~1~^~A~^^^1^22.^24.^^^^~2~^~04/01/2005~ -~23060~^~305~^203.^3^^~1~^~A~^^^1^191.^211.^^^^~2~^~04/01/2005~ -~23060~^~306~^322.^3^^~1~^~A~^^^1^309.^333.^^^^~2~^~04/01/2005~ -~23060~^~307~^77.^3^^~1~^~A~^^^1^75.^81.^^^^~2~^~04/01/2005~ -~23060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23060~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23060~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~601~^83.^10^^~1~^~A~^^^1^77.^92.^^^^~2~^~04/01/2005~ -~23061~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~268~^596.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~02/01/2005~ -~23061~^~304~^24.^3^^~1~^~A~^^^1^23.^25.^^^^~2~^~02/01/2005~ -~23061~^~305~^215.^3^^~1~^~A~^^^1^211.^217.^^^^~2~^~02/01/2005~ -~23061~^~306~^363.^3^^~1~^~A~^^^1^351.^378.^^^^~2~^~02/01/2005~ -~23061~^~307~^54.^3^^~1~^~A~^^^1^51.^57.^^^^~2~^~02/01/2005~ -~23061~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~601~^59.^13^^~1~^~A~^^^1^56.^66.^^^^~2~^~02/01/2005~ -~23062~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23062~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~02/01/2005~ -~23062~^~304~^26.^3^^~1~^~A~^^^1^25.^27.^^^^~2~^~02/01/2005~ -~23062~^~305~^240.^3^^~1~^~A~^^^1^229.^247.^^^^~2~^~02/01/2005~ -~23062~^~306~^377.^3^^~1~^~A~^^^1^357.^389.^^^^~2~^~02/01/2005~ -~23062~^~307~^52.^3^^~1~^~A~^^^1^51.^53.^^^^~2~^~02/01/2005~ -~23062~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23062~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23062~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~23062~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23062~^~601~^77.^13^^~1~^~A~^^^1^71.^85.^^^^~2~^~02/01/2005~ -~23063~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~02/01/2005~ -~23063~^~304~^24.^3^^~1~^~A~^^^1^23.^25.^^^^~2~^~02/01/2005~ -~23063~^~305~^211.^3^^~1~^~A~^^^1^204.^217.^^^^~2~^~02/01/2005~ -~23063~^~306~^345.^3^^~1~^~A~^^^1^317.^360.^^^^~2~^~02/01/2005~ -~23063~^~307~^62.^3^^~1~^~A~^^^1^61.^65.^^^^~2~^~02/01/2005~ -~23063~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~601~^61.^10^^~1~^~A~^^^1^58.^64.^^^^~2~^~02/01/2005~ -~23064~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~268~^760.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~301~^5.^3^^~1~^~A~^^^1^5.^5.^^^^~2~^~02/01/2005~ -~23064~^~304~^25.^3^^~1~^~A~^^^1^25.^26.^^^^~2~^~02/01/2005~ -~23064~^~305~^233.^3^^~1~^~A~^^^1^231.^237.^^^^~2~^~02/01/2005~ -~23064~^~306~^363.^3^^~1~^~A~^^^1^360.^368.^^^^~2~^~02/01/2005~ -~23064~^~307~^58.^3^^~1~^~A~^^^1^55.^60.^^^^~2~^~02/01/2005~ -~23064~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~601~^77.^10^^~1~^~A~^^^1^73.^81.^^^^~2~^~02/01/2005~ -~23065~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~305~^223.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~306~^348.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2005~ -~23065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2005~ -~23065~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~23065~^~601~^80.^4^^~1~^~A~^^^1^77.^84.^^^^~2~^~02/01/2005~ -~23066~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~268~^732.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~305~^187.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~306~^313.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23066~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23066~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23066~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23066~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~23066~^~601~^73.^4^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23067~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23067~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~305~^181.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~306~^303.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~307~^93.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23067~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23067~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23067~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23067~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23067~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~23067~^~601~^80.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23068~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~268~^708.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~305~^185.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~306~^307.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~307~^85.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23068~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23068~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23068~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23068~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~601~^76.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23069~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~268~^978.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23069~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~305~^200.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~306~^279.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~307~^69.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23069~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23069~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23069~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23069~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23069~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23069~^~601~^100.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23070~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~268~^923.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23070~^~301~^16.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~305~^212.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~306~^292.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~307~^70.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23070~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23070~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23070~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23070~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23070~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~23070~^~601~^99.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23071~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~268~^956.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~301~^17.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~305~^203.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~306~^286.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~307~^69.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23071~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23071~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23071~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23071~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~601~^99.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23072~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~305~^195.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~306~^330.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23072~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23072~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23072~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23072~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~23072~^~601~^70.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23073~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~268~^575.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23073~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~304~^18.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~305~^189.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~306~^293.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~307~^82.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23073~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23073~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23073~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23073~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23073~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~23073~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23074~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~304~^18.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~305~^193.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~306~^317.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~307~^82.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23074~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23074~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23074~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23074~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~601~^70.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23075~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~268~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~301~^16.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~305~^227.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~306~^391.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23075~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23075~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23075~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23075~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23075~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23075~^~601~^86.^4^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23076~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23076~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~268~^834.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23076~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~304~^25.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~305~^226.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~306~^356.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~307~^74.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23076~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23076~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23076~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23076~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23076~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23076~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23076~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~23076~^~601~^91.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23077~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~301~^17.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~304~^25.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~305~^228.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~306~^380.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~307~^75.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23077~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23077~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23077~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23077~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~601~^88.^6^4.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23078~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~305~^201.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~306~^371.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~307~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23078~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23078~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23078~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23078~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~23078~^~601~^66.^3^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~306~^388.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~307~^73.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23079~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23079~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23079~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23079~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23079~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~23079~^~601~^69.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~268~^641.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~304~^22.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~305~^202.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~306~^371.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~307~^70.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23080~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23080~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23080~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23080~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~268~^837.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~305~^234.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~306~^358.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~307~^60.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23081~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~324~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23081~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23081~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23081~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23081~^~601~^97.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23082~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~268~^795.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~304~^27.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~305~^234.^4^4.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~306~^360.^4^12.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~307~^63.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23082~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~324~^5.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23082~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23082~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23082~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~23082~^~601~^99.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23083~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~268~^820.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~304~^25.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~305~^234.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~306~^359.^6^7.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~307~^61.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23083~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~324~^5.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23083~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23083~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23083~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~601~^98.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23084~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~268~^823.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~305~^240.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~306~^315.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23084~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23084~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23084~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23084~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23084~^~601~^113.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23085~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~268~^757.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~305~^239.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~306~^298.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~307~^70.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23085~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23085~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23085~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23085~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~23085~^~601~^117.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23086~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~268~^796.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~305~^239.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~306~^309.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~307~^68.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23086~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23086~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23086~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23086~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~601~^115.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23087~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~305~^230.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~306~^349.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~307~^83.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23087~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23087~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23087~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23087~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~23087~^~601~^67.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23088~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23088~^~301~^11.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~305~^216.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~306~^344.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~307~^76.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23088~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23088~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23088~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23088~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23088~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23088~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~23088~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23089~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~301~^11.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~304~^25.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~305~^225.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~306~^346.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~307~^81.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23089~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23089~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23089~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23089~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23090~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~268~^799.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~301~^16.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~305~^228.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~306~^319.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~307~^67.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23090~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23090~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23090~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23090~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~601~^99.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23091~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~268~^779.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~305~^236.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~306~^320.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~307~^68.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23091~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23091~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23091~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23091~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~ -~23091~^~601~^102.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23092~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23092~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~305~^223.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~306~^315.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~307~^65.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23092~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23092~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23092~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23092~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23092~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23092~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23092~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23092~^~601~^96.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23093~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~305~^213.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~306~^367.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~307~^80.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23093~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23093~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23093~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23093~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23093~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~601~^64.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23094~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~306~^359.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~307~^81.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23094~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23094~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23094~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~ -~23094~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~ -~23094~^~601~^66.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23095~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23095~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~305~^217.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~306~^373.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~307~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23095~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23095~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23095~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23095~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~ -~23095~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~ -~23095~^~601~^63.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23096~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~268~^928.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23096~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~305~^210.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~306~^312.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~307~^65.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23096~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23096~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23096~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23096~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23096~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~ -~23096~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~ -~23096~^~601~^106.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23097~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~268~^899.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23097~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~306~^303.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23097~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23097~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23097~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23097~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23097~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23097~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~ -~23097~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2010~ -~23097~^~601~^108.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23098~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~306~^308.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~307~^65.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23098~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~601~^107.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23099~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~268~^1219.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~301~^14.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~304~^19.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~305~^173.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~306~^262.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~307~^62.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~319~^8.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~324~^6.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23099~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23099~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23099~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~601~^99.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23100~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~268~^866.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~301~^7.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~304~^25.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~305~^177.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~306~^296.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~307~^59.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23100~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23100~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23100~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23100~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~601~^79.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~301~^11.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~304~^24.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~305~^174.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~306~^296.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~307~^68.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23101~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23101~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23101~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23101~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23101~^~601~^83.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23102~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~268~^820.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~304~^20.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~305~^184.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~306~^336.^6^7.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~307~^76.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~324~^4.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23102~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23102~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23102~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~601~^66.^5^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~268~^845.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~304~^19.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~305~^181.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~306~^329.^4^9.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~307~^76.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~319~^4.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~324~^5.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23103~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23103~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23103~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~23103~^~601~^66.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~268~^783.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~305~^188.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~306~^347.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~307~^77.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~319~^4.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~324~^4.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23104~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23104~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23104~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~23104~^~601~^67.^1^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23105~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~305~^202.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~306~^310.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~307~^73.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23105~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23105~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23105~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23105~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~601~^93.^6^8.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~268~^986.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~305~^204.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~306~^313.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~307~^73.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23106~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23106~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23106~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23106~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23106~^~601~^89.^4^10.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23107~^~301~^16.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~305~^198.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~306~^301.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~307~^73.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23107~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23107~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23107~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23107~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23107~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23107~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~301~^11.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~305~^178.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~306~^315.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~307~^76.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23108~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23108~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23108~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23108~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~601~^69.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~268~^792.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~305~^177.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~306~^312.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23109~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23109~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23109~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23109~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~23109~^~601~^70.^4^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~301~^11.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~305~^181.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~306~^320.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~307~^76.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23110~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23110~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23110~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23110~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~23110~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~268~^556.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~304~^24.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~305~^234.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~306~^403.^4^11.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~307~^74.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23111~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~324~^2.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23111~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23111~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23111~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~23111~^~601~^64.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23112~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~305~^233.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~306~^383.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~307~^70.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23112~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23112~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23112~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~324~^1.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23112~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23112~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23112~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~23112~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~268~^988.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~305~^187.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~306~^308.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~307~^76.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23113~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23113~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23113~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23113~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~601~^83.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~268~^1007.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~301~^18.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~305~^189.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~306~^307.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23114~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23114~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23114~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23114~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23114~^~601~^84.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~305~^185.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~306~^312.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~307~^76.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23115~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23115~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23115~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23115~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23115~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23115~^~601~^81.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~268~^1150.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~305~^181.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~306~^273.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~307~^65.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23116~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23117~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~268~^1189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23117~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~306~^275.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~307~^64.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23117~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23117~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23117~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23117~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23117~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23117~^~601~^98.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23118~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~268~^1093.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23118~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~306~^270.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23118~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23118~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23118~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23118~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23118~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23118~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23118~^~601~^94.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23119~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~268~^920.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~304~^22.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~305~^230.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~306~^298.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~307~^67.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23119~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23119~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23119~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23119~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~601~^113.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~268~^943.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~305~^230.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~306~^303.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~307~^66.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23120~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23120~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23120~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23120~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23120~^~601~^112.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~268~^885.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~304~^22.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~305~^230.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~306~^288.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~307~^69.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23121~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23121~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23121~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23121~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23121~^~601~^115.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~268~^534.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~301~^11.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~304~^25.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~305~^223.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~306~^343.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~307~^80.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23122~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23122~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23122~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23122~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23123~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~305~^229.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~306~^347.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~307~^82.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23123~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23123~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23123~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23123~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23123~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~23123~^~601~^67.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~268~^510.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~301~^11.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~305~^215.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~306~^341.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~307~^76.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23124~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23124~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23124~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23124~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~23124~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~268~^1277.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~305~^170.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~306~^239.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~307~^70.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23125~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23125~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23125~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23125~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~601~^100.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~268~^1328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23126~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~305~^168.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~306~^228.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~307~^70.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23126~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23126~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23126~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23126~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23126~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23126~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23126~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23126~^~601~^98.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~268~^1199.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~305~^180.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~306~^269.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~307~^71.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23127~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23127~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23127~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23127~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23127~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23127~^~601~^104.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~268~^983.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~304~^18.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~305~^165.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~306~^277.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~307~^78.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23128~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23128~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23128~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23128~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23128~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~601~^75.^6^4.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~305~^167.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~306~^282.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23129~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23129~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23129~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~ -~23129~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~ -~23129~^~601~^73.^4^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~268~^950.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~304~^17.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~305~^162.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~306~^273.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~307~^85.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23130~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23130~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23130~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~ -~23130~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~ -~23130~^~601~^78.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~268~^855.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~304~^25.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~305~^230.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~306~^352.^6^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~307~^61.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23131~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~324~^6.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23131~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23131~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23131~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~601~^98.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~268~^866.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~304~^24.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~305~^230.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~306~^353.^4^8.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~307~^60.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23132~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~324~^6.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~417~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23132~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23132~^~432~^8.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23132~^~435~^8.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23132~^~601~^98.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~268~^839.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~305~^228.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~306~^352.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~307~^62.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23133~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~324~^5.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~417~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23133~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23133~^~432~^8.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23133~^~435~^8.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~ -~23133~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23134~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~268~^1237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~301~^16.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~304~^17.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~305~^172.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~306~^247.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~307~^65.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23134~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23134~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23134~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23134~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~601~^96.^6^1.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~268~^1266.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~301~^16.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~304~^16.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~305~^169.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~306~^241.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~307~^65.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23135~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23135~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23135~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23135~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~08/01/2010~ -~23135~^~601~^96.^4^1.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~268~^1193.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23136~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~304~^19.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~305~^181.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~306~^255.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~307~^66.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23136~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23136~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23136~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23136~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23136~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2010~ -~23136~^~601~^95.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~268~^857.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~304~^16.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~305~^175.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~306~^291.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~307~^77.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23137~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23137~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23137~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23137~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23137~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~601~^70.^6^1.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~268~^880.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~304~^16.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~305~^177.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~306~^302.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~307~^76.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23138~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23138~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23138~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23138~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23138~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~08/01/2010~ -~23138~^~601~^70.^4^2.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~268~^822.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~304~^16.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~305~^172.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~306~^271.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~307~^77.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23139~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23139~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23139~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23139~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23139~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~08/01/2010~ -~23139~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~268~^1157.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~301~^16.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~304~^22.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~305~^193.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~306~^325.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~307~^71.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23140~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23140~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23140~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23140~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23140~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~601~^87.^6^3.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~268~^1184.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~305~^192.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~306~^333.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~307~^71.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23141~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23141~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23141~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2010~ -~23141~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~08/01/2010~ -~23141~^~601~^86.^4^4.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~268~^1118.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23142~^~301~^17.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~304~^22.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~305~^192.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~306~^307.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~307~^70.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23142~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23142~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23142~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23142~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23142~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23142~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2010~ -~23142~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2010~ -~23142~^~601~^89.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~268~^931.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~305~^179.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~306~^329.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~307~^66.^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23143~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23143~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23143~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23143~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23143~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~601~^68.^6^1.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~268~^950.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~305~^179.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~306~^330.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~307~^66.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23144~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23144~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23144~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23144~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2010~ -~23144~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~08/01/2010~ -~23144~^~601~^68.^4^2.^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~268~^903.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~305~^184.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~306~^342.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~307~^68.^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23145~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23145~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23145~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23145~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2010~ -~23145~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~08/01/2010~ -~23145~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23146~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~268~^968.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~301~^11.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~304~^24.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~305~^173.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~306~^295.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~307~^69.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23146~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23146~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23146~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23146~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~601~^80.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~268~^915.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~305~^170.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~306~^295.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~307~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23147~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23147~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23147~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23147~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23147~^~601~^77.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~268~^908.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~301~^8.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~304~^25.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~305~^174.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~306~^282.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~307~^60.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23148~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23148~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23148~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23148~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23148~^~601~^80.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~268~^804.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~301~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~305~^181.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~306~^318.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~307~^59.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23149~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~324~^3.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23149~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23149~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23149~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23149~^~601~^77.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~268~^696.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~301~^9.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~304~^21.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~305~^152.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~306~^275.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~307~^64.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23150~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23150~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23150~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23150~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~601~^64.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~301~^9.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~304~^22.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~305~^156.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~306~^270.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~307~^65.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23151~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~324~^4.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23151~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23151~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23151~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23151~^~601~^65.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~301~^10.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~305~^148.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~306~^281.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23152~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~324~^2.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23152~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23152~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23152~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23152~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~301~^6.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~304~^23.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~305~^156.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~306~^276.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~307~^56.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23153~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~324~^3.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23153~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23153~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23153~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~601~^66.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~268~^674.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~301~^7.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~304~^22.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~305~^153.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~306~^262.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~307~^56.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23154~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~324~^3.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23154~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23154~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23154~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23154~^~601~^63.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~268~^619.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~301~^5.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~305~^160.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~306~^297.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~307~^55.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23155~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~324~^3.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23155~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23155~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23155~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23155~^~601~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~301~^22.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~304~^25.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~305~^184.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~306~^279.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~307~^67.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23156~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~324~^4.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2011~ -~23156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23156~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23156~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23156~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~601~^80.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~301~^22.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~304~^25.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~305~^184.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~306~^276.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~307~^67.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23157~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~324~^4.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~06/01/2011~ -~23157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23157~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23157~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23157~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23157~^~601~^82.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~268~^879.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~301~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~305~^185.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~306~^284.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23158~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~324~^3.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~06/01/2012~ -~23158~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23158~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23158~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23158~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23158~^~601~^78.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~301~^8.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~304~^24.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~305~^178.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~306~^326.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~307~^56.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23159~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~324~^4.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2011~ -~23159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23159~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23159~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23159~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~601~^80.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~268~^956.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~301~^8.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~304~^24.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~305~^175.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~306~^319.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~307~^54.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23160~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~324~^5.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23160~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23160~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23160~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23160~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23160~^~601~^81.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~268~^845.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~301~^8.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~305~^183.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~306~^335.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~307~^59.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23161~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~324~^4.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2012~ -~23161~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23161~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23161~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23161~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23161~^~601~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~268~^980.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~301~^7.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~304~^24.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~305~^171.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~306~^303.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~307~^63.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23162~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~324~^5.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2012~ -~23162~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23162~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23162~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23162~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~601~^92.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~301~^6.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~305~^151.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~306~^272.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~307~^66.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23163~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~324~^4.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2012~ -~23163~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23163~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23163~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23163~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~601~^64.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~268~^1011.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~301~^7.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~305~^168.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~306~^298.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~307~^64.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23164~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~324~^5.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23164~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23164~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23164~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23164~^~601~^93.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~268~^717.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~301~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~305~^150.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~306~^264.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23165~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~324~^4.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2011~ -~23165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23165~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23165~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23165~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23165~^~601~^64.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~268~^933.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~301~^7.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~305~^176.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~306~^312.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~307~^62.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23166~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~324~^4.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2011~ -~23166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23166~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23166~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23166~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23166~^~601~^91.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~268~^641.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~301~^6.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~304~^22.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~305~^154.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~306~^292.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~307~^66.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23167~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~06/01/2011~ -~23167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23167~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23167~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23167~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23167~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~268~^1179.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~301~^7.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~304~^25.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~305~^188.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~306~^284.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~307~^71.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23168~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~324~^7.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2012~ -~23168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23168~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23168~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23168~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~601~^102.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~268~^864.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~301~^5.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~305~^148.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~306~^253.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~307~^67.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23169~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~324~^6.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2012~ -~23169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23169~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23169~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23169~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~601~^69.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~268~^1216.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~301~^7.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~305~^185.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~306~^286.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~307~^71.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23170~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~324~^8.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2012~ -~23170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23170~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23170~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23170~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23170~^~601~^105.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~268~^886.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~301~^5.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~305~^147.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~306~^251.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~307~^68.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23171~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~324~^6.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2012~ -~23171~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23171~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23171~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23171~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23171~^~601~^70.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~268~^1123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~301~^8.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~304~^26.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~305~^197.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~306~^284.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~307~^70.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23172~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~324~^7.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2012~ -~23172~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23172~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23172~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23172~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23172~^~601~^99.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~301~^6.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~305~^153.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~306~^260.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~307~^65.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23173~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~324~^6.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2012~ -~23173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23173~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23173~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23173~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23173~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~301~^7.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~304~^25.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~305~^177.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~306~^296.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~307~^59.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23174~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~324~^4.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2011~ -~23174~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23174~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23174~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23174~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~601~^79.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~268~^645.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~301~^6.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~304~^23.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~305~^156.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~306~^276.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~307~^56.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23175~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~324~^3.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2011~ -~23175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23175~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23175~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23175~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~601~^66.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~301~^8.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~304~^25.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~305~^174.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~306~^282.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~307~^60.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23176~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~324~^4.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23176~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23176~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23176~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23176~^~601~^80.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~301~^7.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~304~^22.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~305~^153.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~306~^262.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~307~^56.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23177~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~324~^4.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2012~ -~23177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23177~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23177~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23177~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23177~^~601~^63.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~301~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~304~^26.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~305~^181.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~306~^318.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~307~^59.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23178~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~324~^3.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2011~ -~23178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23178~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23178~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23178~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23178~^~601~^77.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~301~^5.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~305~^160.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~306~^297.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~307~^55.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23179~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~324~^3.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2011~ -~23179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23179~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23179~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23179~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23179~^~601~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~268~^1249.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~306~^284.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~307~^68.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23180~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~324~^6.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2012~ -~23180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~601~^90.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23181~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~301~^9.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~305~^143.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~306~^258.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~601~^70.^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23182~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~306~^280.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~307~^68.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23182~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23182~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23182~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~324~^7.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~06/01/2012~ -~23182~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23182~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23182~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23182~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23182~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23183~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~301~^8.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~305~^146.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~306~^254.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23183~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~324~^8.^0^^~4~^~BFFN~^~23151~^^^^^^^^^~06/01/2012~ -~23183~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23183~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23183~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23183~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23183~^~601~^72.^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~268~^1199.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23184~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~305~^188.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~306~^289.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~307~^68.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23184~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23184~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~324~^5.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~06/01/2012~ -~23184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23184~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23184~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23184~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23184~^~601~^89.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23185~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~301~^9.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~305~^138.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~306~^264.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23185~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~324~^5.^0^^~4~^~BFFN~^~23152~^^^^^^^^^~06/01/2012~ -~23185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23185~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23185~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23185~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23185~^~601~^67.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~268~^1310.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~301~^22.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~305~^156.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~306~^242.^4^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~307~^60.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23186~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~324~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23186~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23186~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23186~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23186~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23186~^~601~^83.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~268~^1272.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~301~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~305~^155.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~306~^246.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~307~^59.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23187~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23187~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23187~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23187~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23187~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23187~^~601~^80.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~268~^1295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~301~^22.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~304~^21.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~305~^156.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~306~^243.^6^4.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~307~^60.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23188~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23188~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23188~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23188~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~601~^82.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~268~^1283.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~304~^21.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~305~^153.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~306~^264.^4^8.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~307~^62.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23189~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23189~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23189~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23189~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23189~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23189~^~601~^83.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~268~^1214.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~305~^149.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~306~^262.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~307~^64.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23190~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23190~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23190~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23190~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23190~^~601~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~268~^1255.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~304~^21.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~305~^152.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~306~^263.^6^7.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~307~^63.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23191~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23191~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23191~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23191~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23191~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~601~^82.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~301~^10.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~304~^18.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~305~^128.^6^3.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~306~^233.^6^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~307~^56.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23192~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23192~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23192~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23192~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23192~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~601~^69.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~301~^10.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~304~^18.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~305~^131.^4^4.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~306~^231.^4^7.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~307~^57.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23193~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23193~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23193~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23193~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23193~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23193~^~601~^70.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~268~^1037.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~305~^124.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~306~^237.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~307~^55.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23194~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23194~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23194~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23194~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23194~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23194~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~268~^1269.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~304~^21.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~305~^149.^4^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~306~^247.^4^7.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~307~^54.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23195~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23195~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23195~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23195~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23195~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23195~^~601~^81.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~268~^1140.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~301~^10.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~305~^157.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~306~^279.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~307~^54.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23196~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23196~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23196~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23196~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23196~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23196~^~601~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~268~^1218.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~301~^11.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~305~^152.^6^4.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~306~^260.^6^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~307~^54.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23197~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23197~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23197~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23197~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23197~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~601~^80.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~301~^11.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~304~^21.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~305~^155.^6^3.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~306~^286.^6^6.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~307~^52.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23198~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23198~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23198~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23198~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23198~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~601~^81.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~268~^1266.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~301~^11.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~304~^21.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~305~^152.^4^3.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~306~^281.^4^7.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~307~^51.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23199~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23199~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23199~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23199~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23199~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~268~^1157.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~301~^11.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~305~^160.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~306~^295.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~307~^54.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23200~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23200~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23200~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23200~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23200~^~601~^80.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~268~^1021.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~301~^8.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~304~^19.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~305~^132.^6^3.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~306~^236.^6^4.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~307~^50.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23201~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23201~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23201~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23201~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~601~^70.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~268~^1059.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~301~^8.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~304~^19.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~305~^128.^4^3.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~306~^224.^4^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~307~^50.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23202~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23202~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23202~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23202~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23202~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23202~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~301~^7.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~305~^137.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~306~^256.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~307~^50.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23213~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23213~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23213~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23213~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23213~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23213~^~601~^74.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~268~^1026.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~301~^7.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~305~^168.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~306~^298.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~307~^63.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23214~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23214~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23214~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23214~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23214~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~601~^92.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~268~^1060.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~301~^7.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~305~^165.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~306~^293.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23215~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23215~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23215~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23215~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23215~^~601~^93.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~268~^975.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~301~^7.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~305~^173.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~306~^307.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~307~^61.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23216~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23216~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23216~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23216~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23216~^~601~^91.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~268~^782.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~301~^6.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~305~^145.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~306~^262.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~307~^64.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23217~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23217~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23217~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23217~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~601~^65.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~301~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~305~^144.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~306~^254.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~307~^65.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23218~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23218~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23218~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23218~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23218~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23218~^~601~^65.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~268~^730.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~301~^6.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~305~^149.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~306~^283.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~307~^65.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23219~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23219~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23219~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23219~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23219~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23219~^~601~^65.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23220~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23220~^~301~^25.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~305~^213.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~306~^353.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~307~^85.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23220~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~324~^8.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~417~^9.^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~431~^0.^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~432~^9.^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23221~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~268~^1224.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~301~^8.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~304~^24.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~305~^185.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~306~^280.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~307~^70.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23221~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23221~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23221~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23221~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23221~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~601~^102.^6^4.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~268~^1257.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~301~^8.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~305~^182.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~306~^282.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~307~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23222~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23222~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23222~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23222~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23222~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23222~^~601~^104.^4^5.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~268~^1174.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~301~^8.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~304~^26.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~305~^193.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~306~^280.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~307~^69.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23223~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23223~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23223~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23223~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23223~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23223~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~268~^969.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~301~^6.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~305~^142.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~306~^242.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~307~^65.^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23224~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23224~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23224~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23224~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23224~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~601~^71.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~268~^996.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~301~^6.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~305~^140.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~306~^240.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~307~^65.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23225~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23225~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23225~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23225~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23225~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23225~^~601~^71.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~268~^929.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~301~^6.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~305~^147.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~306~^251.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~307~^63.^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23226~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23226~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23226~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23226~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23226~^~601~^70.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~268~^1132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~301~^12.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~305~^163.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~306~^279.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23227~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23228~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23228~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~268~^1194.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23228~^~301~^12.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~305~^159.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~306~^264.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23228~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23228~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23228~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23228~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23228~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23228~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23228~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23228~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23229~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23229~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~268~^1039.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23229~^~301~^10.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~305~^170.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~306~^301.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23229~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23229~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23229~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23229~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23229~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23229~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23229~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23229~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23230~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~301~^8.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~305~^137.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~306~^246.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23230~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23230~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23231~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~268~^1010.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23231~^~301~^8.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~305~^133.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~306~^231.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~307~^51.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23231~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23231~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23231~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23231~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23231~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23231~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23232~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~268~^869.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23232~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~305~^144.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~306~^268.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23232~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23232~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23232~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23232~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23232~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23232~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23232~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23233~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~268~^1505.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~305~^163.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~306~^255.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~319~^9.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23233~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23233~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23234~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23234~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23234~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~305~^160.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~306~^248.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23234~^~319~^9.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23234~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23234~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23234~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23234~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2011~ -~23234~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2011~ -~23234~^~601~^88.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23235~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~268~^1429.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23235~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~305~^168.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~306~^267.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~307~^64.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23235~^~319~^9.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23235~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23235~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23235~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23235~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2011~ -~23235~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2011~ -~23235~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23236~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~268~^1354.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~301~^10.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~305~^120.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~306~^218.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23236~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23236~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~601~^75.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~268~^1404.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~301~^9.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~305~^122.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~306~^214.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23237~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23237~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23237~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2011~ -~23237~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2011~ -~23237~^~601~^76.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~268~^1278.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~301~^10.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~305~^117.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~306~^224.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23238~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23238~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23238~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23238~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2011~ -~23238~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2011~ -~23238~^~601~^73.^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23239~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23239~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~268~^725.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23239~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~305~^245.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~306~^379.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23239~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~324~^4.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23239~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23239~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23239~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23239~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23239~^~601~^88.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23240~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~268~^551.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23240~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~306~^395.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~307~^65.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23240~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~324~^3.^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23240~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23240~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23240~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23240~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2011~ -~23240~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~268~^757.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23241~^~301~^17.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~07/01/2011~ -~23241~^~304~^25.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~07/01/2011~ -~23241~^~305~^232.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~306~^371.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~307~^62.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~07/01/2011~ -~23241~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23241~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23241~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23241~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23241~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23241~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23241~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~601~^84.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23242~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~268~^789.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23242~^~301~^17.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~07/01/2011~ -~23242~^~304~^25.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~07/01/2011~ -~23242~^~305~^233.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~306~^374.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~307~^62.^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23242~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~324~^4.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23242~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23242~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23242~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23242~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23242~^~601~^83.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23243~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~268~^710.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23243~^~301~^21.^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~304~^26.^0^^~4~^~BFNN~^~23588~^^^^^^^^^~07/01/2011~ -~23243~^~305~^240.^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~306~^389.^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~307~^63.^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23243~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~10/01/2001~ -~23243~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23243~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23243~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23243~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23243~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23244~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~268~^560.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23244~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~305~^220.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~306~^375.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23244~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~324~^3.^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23244~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23244~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23244~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23244~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23245~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~268~^576.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23245~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23245~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23245~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23245~^~306~^367.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23245~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23245~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23245~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~324~^3.^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23245~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23245~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23245~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23245~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2011~ -~23245~^~601~^67.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23246~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23246~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23246~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23246~^~305~^213.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23246~^~306~^355.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23246~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23246~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23246~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23246~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23246~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23246~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23246~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2011~ -~23246~^~601~^67.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23247~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23247~^~301~^17.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~304~^26.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~305~^235.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~306~^377.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~307~^63.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23247~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23247~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23247~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23247~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23247~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~601~^86.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23248~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~268~^848.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23248~^~301~^17.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23248~^~304~^25.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~305~^233.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~306~^374.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~307~^62.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23248~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~324~^5.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~10/01/2001~ -~23248~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23248~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23248~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23248~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23248~^~601~^85.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23249~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~268~^771.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23249~^~301~^22.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~07/01/2011~ -~23249~^~304~^27.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~305~^251.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~306~^407.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~307~^65.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23249~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~10/01/2001~ -~23249~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23249~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23249~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23249~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23249~^~601~^87.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23250~^~301~^17.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~304~^25.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23250~^~305~^232.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~306~^371.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~307~^62.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23250~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23250~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23250~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23250~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23250~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~601~^81.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23251~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23251~^~301~^17.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23251~^~304~^25.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23251~^~305~^231.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~306~^371.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~307~^62.^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23251~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23251~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~324~^5.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~10/01/2001~ -~23251~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23251~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23251~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23251~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23251~^~601~^79.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~268~^751.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23252~^~301~^22.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~304~^26.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~305~^245.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~306~^396.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~307~^64.^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23252~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~10/01/2001~ -~23252~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23252~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23252~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23252~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23252~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~268~^598.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23253~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23253~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23253~^~305~^239.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23253~^~306~^407.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23253~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23253~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23253~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~324~^3.^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23253~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23253~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23253~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~601~^69.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23254~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23254~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23254~^~305~^226.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23254~^~306~^402.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23254~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23254~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23254~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~324~^3.^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23254~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23254~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23254~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23254~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2011~ -~23254~^~601~^65.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23255~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~268~^565.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23255~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23255~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23255~^~305~^220.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~306~^387.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23255~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23255~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23255~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23255~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23255~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~10/01/2001~ -~23255~^~601~^76.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~268~^714.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23256~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23256~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23256~^~305~^256.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23256~^~306~^397.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23256~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23256~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23256~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23256~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23256~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23256~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~601~^79.^6^3.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~268~^729.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23257~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23257~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23257~^~305~^255.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23257~^~306~^395.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23257~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23257~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23257~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23257~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~324~^4.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23257~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23257~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23257~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23257~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23257~^~601~^81.^4^4.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~268~^692.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23258~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23258~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23258~^~305~^262.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~306~^390.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23258~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23258~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23258~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23258~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23258~^~601~^74.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~268~^710.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23259~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23259~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23259~^~305~^243.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~306~^377.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23259~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23259~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23259~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23259~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23259~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~601~^86.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~268~^689.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23260~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23260~^~304~^29.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~305~^268.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~306~^426.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23260~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23260~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23260~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23260~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23260~^~601~^84.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23261~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~306~^395.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~307~^65.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23261~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~324~^3.^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23261~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23261~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23261~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23261~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~601~^69.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23262~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23262~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23262~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23262~^~305~^220.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23262~^~306~^388.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23262~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23262~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23262~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23262~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23262~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23262~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23262~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2011~ -~23262~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~268~^555.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23263~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23263~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23263~^~305~^226.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23263~^~306~^402.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23263~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23263~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23263~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23263~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~324~^3.^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23263~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23263~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23263~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23263~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~601~^65.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23264~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~268~^579.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23264~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23264~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23264~^~305~^226.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23264~^~306~^401.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23264~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23264~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23264~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~324~^3.^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23264~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23264~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23264~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23264~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2011~ -~23264~^~601~^65.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23265~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23265~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23265~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~305~^233.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~306~^389.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23265~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23265~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23265~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23265~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23265~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23265~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2011~ -~23265~^~601~^65.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23266~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23266~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23266~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23266~^~305~^220.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23266~^~306~^351.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23266~^~307~^86.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23266~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23266~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~10/01/2001~ -~23266~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23266~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23266~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23266~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~601~^76.^6^4.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23267~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~268~^1084.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23267~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23267~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23267~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~307~^86.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23267~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~324~^5.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23267~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23267~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23267~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23267~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23267~^~601~^78.^4^5.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~268~^947.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23268~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23268~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23268~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~306~^346.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~307~^79.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23268~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23268~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~324~^4.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23268~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23268~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23268~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23268~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23268~^~601~^73.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23269~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~268~^754.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23269~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23269~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23269~^~305~^210.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~307~^88.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23269~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23269~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~324~^4.^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23269~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23269~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23269~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23269~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~601~^64.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23270~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23270~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23270~^~305~^210.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23270~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23270~^~307~^88.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23270~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23270~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~324~^4.^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23270~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23270~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23270~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2011~ -~23270~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2011~ -~23270~^~601~^64.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23271~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23271~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23271~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23271~^~305~^223.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~306~^365.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~307~^84.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23271~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23271~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23271~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~324~^3.^0^^~4~^~BFSN~^~23155~^^^^^^^^^~10/01/2001~ -~23271~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23271~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23271~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2011~ -~23271~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2011~ -~23271~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23272~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~268~^831.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23272~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23272~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23272~^~305~^262.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23272~^~306~^410.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23272~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23272~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23272~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23272~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23272~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23272~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23272~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~601~^82.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23273~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23273~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23273~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23273~^~305~^261.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23273~^~306~^409.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23273~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23273~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23273~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~324~^5.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~10/01/2001~ -~23273~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23273~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23273~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23273~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23273~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23274~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23274~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23274~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23274~^~305~^242.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~306~^383.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~307~^87.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23274~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23274~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~10/01/2001~ -~23274~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23274~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23274~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23274~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23274~^~601~^82.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23275~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23275~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23275~^~304~^28.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~305~^254.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~306~^398.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23275~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~324~^4.^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23275~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23275~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23275~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23275~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~601~^85.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~268~^785.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23276~^~301~^5.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23276~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23276~^~305~^234.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~306~^363.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23276~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23276~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~324~^4.^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23276~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23276~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23276~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2011~ -~23276~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2011~ -~23276~^~601~^83.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~268~^688.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23277~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23277~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~305~^236.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~306~^372.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~307~^84.^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2011~ -~23277~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~324~^3.^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23277~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23277~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23277~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2011~ -~23277~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2011~ -~23277~^~601~^89.^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23278~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~268~^1013.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23278~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~304~^26.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~305~^226.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~306~^361.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~307~^89.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23278~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23278~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23278~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23278~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~601~^84.^6^2.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23279~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~268~^997.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23279~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23279~^~304~^26.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~305~^231.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~306~^368.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~307~^91.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23279~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~324~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23279~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23279~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23279~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23279~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~08/01/2011~ -~23279~^~601~^83.^4^2.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~268~^1040.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23280~^~301~^6.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~08/01/2011~ -~23280~^~304~^24.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~305~^217.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~306~^342.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~307~^78.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23280~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23280~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23280~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23280~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2011~ -~23280~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~268~^800.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23281~^~301~^6.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~304~^22.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~305~^192.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~306~^326.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~307~^80.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23281~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23281~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23281~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23281~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23281~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~601~^68.^6^1.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~268~^834.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23282~^~301~^6.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~304~^22.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~305~^191.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~306~^325.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~307~^80.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23282~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23282~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23282~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~08/01/2011~ -~23282~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23283~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~268~^747.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23283~^~301~^7.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~304~^24.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~305~^207.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~306~^339.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~307~^78.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23283~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23283~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23283~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23283~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23283~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23283~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23283~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~08/01/2011~ -~23283~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~268~^1000.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23284~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23284~^~304~^27.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23284~^~305~^236.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~306~^376.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~307~^93.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23284~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23284~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23284~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23284~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23284~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~601~^86.^6^1.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23285~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23285~^~304~^26.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~305~^231.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~306~^368.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~307~^91.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23285~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23285~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~324~^7.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23285~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23285~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23285~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~08/01/2011~ -~23285~^~601~^85.^4^1.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23286~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23286~^~301~^6.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~08/01/2011~ -~23286~^~304~^27.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~305~^239.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~306~^378.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~307~^86.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23286~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23286~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23286~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23286~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23286~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~601~^87.^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23287~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23287~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23287~^~304~^27.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23287~^~305~^236.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~306~^376.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~307~^93.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23287~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23287~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23287~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23287~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23287~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~601~^82.^6^2.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23288~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~268~^998.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23288~^~301~^7.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~304~^27.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~305~^235.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~306~^375.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~307~^92.^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23288~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23288~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~324~^7.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23288~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~08/01/2011~ -~23288~^~601~^80.^4^2.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23289~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23289~^~301~^6.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~08/01/2011~ -~23289~^~304~^26.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~305~^234.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~306~^369.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~307~^84.^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23289~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23289~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23289~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23289~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23289~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23289~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2011~ -~23289~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2011~ -~23289~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23290~^~301~^6.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23290~^~304~^24.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23290~^~305~^212.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~306~^360.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~307~^89.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23290~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23290~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23290~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23290~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2011~ -~23290~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~601~^69.^6^0.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~268~^833.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23291~^~301~^6.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~304~^24.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~305~^212.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~306~^360.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~307~^89.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23291~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23291~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23291~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~08/01/2011~ -~23291~^~601~^65.^4^0.^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23292~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23292~^~301~^7.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~08/01/2011~ -~23292~^~304~^26.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~305~^225.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~306~^369.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~307~^85.^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23292~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23292~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23292~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23292~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23292~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23292~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~08/01/2011~ -~23292~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~08/01/2011~ -~23292~^~601~^76.^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23293~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~268~^1001.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23293~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23293~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23293~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~268~^579.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23294~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23294~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~601~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~307~^64.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23295~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23295~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~268~^2130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~307~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~318~^121.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23296~^~319~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~320~^36.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23296~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~208~^562.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~268~^2352.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~307~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~318~^120.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23297~^~319~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~320~^36.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23297~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~208~^596.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~268~^2492.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~307~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23298~^~319~^22.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23298~^~601~^73.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~208~^594.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~268~^2484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23299~^~319~^22.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23299~^~601~^95.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~208~^639.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~268~^2672.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23300~^~319~^22.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23300~^~601~^95.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~208~^627.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~268~^2622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23301~^~319~^22.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23301~^~601~^96.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23302~^~208~^151.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~268~^631.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~307~^62.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~601~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23303~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~268~^548.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~307~^66.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23303~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23303~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~601~^41.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23304~^~208~^206.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~268~^860.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~318~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~208~^199.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~268~^831.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~307~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~318~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~601~^46.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23306~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23306~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23306~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~268~^668.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23307~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23307~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~601~^50.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~268~^544.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~307~^71.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23308~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23308~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~268~^542.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23309~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23309~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~601~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~268~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23310~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23310~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~601~^74.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~268~^931.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~307~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23311~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23311~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~268~^1383.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~307~^68.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23312~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23312~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~268~^978.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23313~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23313~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~268~^1380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23314~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23314~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~601~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23315~^~208~^127.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~268~^532.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~318~^1.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2002~ -~23315~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2002~ -~23315~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23316~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23316~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~307~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23316~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23316~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~601~^52.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~208~^140.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~268~^586.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23317~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23317~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23318~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~268~^538.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23318~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23318~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~601~^47.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~208~^289.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~268~^1210.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~307~^56.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23319~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23319~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~208~^392.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~268~^1640.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~318~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~601~^68.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23321~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~268~^1327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23321~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~307~^52.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~318~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23322~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~268~^1690.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23322~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~23322~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23323~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~268~^1039.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23323~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23323~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23323~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~601~^74.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23324~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~305~^219.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~306~^312.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~307~^54.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23324~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~324~^1.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23324~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23324~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23324~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23324~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~601~^62.^6^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~305~^220.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~306~^307.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23325~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~324~^1.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23325~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23325~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23325~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23325~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23325~^~601~^62.^4^2.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~305~^219.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~306~^314.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~307~^54.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23326~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~324~^1.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23326~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23326~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23326~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23326~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23326~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~305~^219.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~306~^311.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~307~^54.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23327~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~324~^1.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23327~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23327~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23327~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23327~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~601~^62.^6^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~268~^536.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~305~^219.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~306~^306.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23328~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~324~^1.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23328~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23328~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23328~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23328~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23328~^~601~^62.^4^2.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~305~^218.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~306~^313.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~307~^54.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23329~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~324~^1.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23329~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23329~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23329~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23329~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23329~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~305~^221.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~306~^317.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~307~^53.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23330~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~324~^1.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23330~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~601~^60.^6^3.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~305~^220.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~306~^323.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23331~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~324~^1.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23331~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23331~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23331~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23331~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23331~^~601~^58.^4^4.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~268~^503.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~305~^221.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~306~^309.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~307~^50.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~319~^5.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23332~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~324~^1.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23332~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23332~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23332~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23332~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23332~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~305~^220.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~306~^317.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~307~^53.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23333~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~324~^1.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23333~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~601~^60.^6^3.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~268~^533.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~305~^220.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~306~^322.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23334~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~324~^1.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23334~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23334~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23334~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23334~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23334~^~601~^58.^4^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~305~^221.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~306~^310.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~307~^50.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~319~^5.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23335~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~324~^1.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~05/01/2013~ -~23335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23335~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23335~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23335~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23335~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~305~^211.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~306~^284.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~307~^44.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~319~^5.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~324~^2.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23336~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~601~^61.^6^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~268~^639.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~305~^208.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~306~^279.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~307~^44.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23337~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~324~^2.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23337~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23337~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23337~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23337~^~601~^61.^4^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~268~^601.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~305~^219.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~306~^294.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~307~^42.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23338~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~324~^2.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23338~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23338~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23338~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23338~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23338~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~305~^200.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~306~^273.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~307~^45.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23339~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~324~^3.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23339~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~601~^61.^6^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23340~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~268~^716.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~305~^198.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~306~^271.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~307~^45.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23340~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~324~^3.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23340~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23340~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23340~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23340~^~601~^59.^4^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23341~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~268~^633.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~305~^204.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~306~^279.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~307~^46.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23341~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~324~^2.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23341~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23341~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23341~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23341~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23341~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23342~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~305~^212.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~306~^285.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~307~^44.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23342~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~324~^2.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23342~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~601~^61.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23343~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~268~^628.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~305~^209.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~306~^280.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~307~^44.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23343~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~324~^2.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23343~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23343~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23343~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~02/01/2013~ -~23343~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~02/01/2013~ -~23343~^~601~^60.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23344~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~305~^219.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~306~^295.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~307~^42.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23344~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~324~^2.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23344~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23344~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23344~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~02/01/2013~ -~23344~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~02/01/2013~ -~23344~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~23345~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~304~^18.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~305~^254.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~306~^346.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~307~^56.^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23345~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23345~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~324~^2.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~05/01/2013~ -~23345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23345~^~601~^84.^6^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~268~^788.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~305~^252.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~306~^347.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23346~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~ -~23346~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23346~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~324~^3.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23346~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~23346~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~23346~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~ -~23346~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~ -~23346~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~304~^14.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~305~^258.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~306~^349.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~307~^54.^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23347~^~319~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23347~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~324~^2.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~23347~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23347~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23347~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~ -~23347~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~03/01/2013~ -~23347~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23348~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23348~^~301~^16.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~304~^15.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~305~^270.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~306~^384.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~307~^67.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~318~^14.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~319~^4.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~320~^4.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~05/01/2013~ -~23348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~417~^5.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~431~^0.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~432~^5.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~435~^5.^0^^~4~^~NC~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~601~^77.^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23349~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~268~^684.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23349~^~301~^16.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~304~^15.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~305~^271.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~306~^378.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~307~^69.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~318~^13.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~319~^4.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~320~^4.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23349~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~417~^5.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~431~^0.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~432~^5.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~435~^5.^0^^~4~^~NC~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~601~^76.^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23350~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23350~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23350~^~301~^17.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~304~^15.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~305~^269.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~306~^387.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~307~^67.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~318~^14.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~319~^4.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~320~^4.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~23350~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~417~^5.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~431~^0.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~432~^5.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~435~^5.^0^^~4~^~NC~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~601~^78.^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23351~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23351~^~301~^17.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~304~^15.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~305~^286.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~306~^411.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~307~^68.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~318~^14.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~319~^4.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~320~^4.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~05/01/2013~ -~23351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~417~^5.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~431~^0.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~432~^5.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~435~^5.^0^^~4~^~NC~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~601~^78.^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23352~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23352~^~301~^17.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~304~^16.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~305~^286.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~306~^419.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~307~^67.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~318~^14.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~319~^4.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~320~^4.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~417~^5.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~431~^0.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~432~^5.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~435~^5.^0^^~4~^~NC~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~601~^76.^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23353~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23353~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~268~^643.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23353~^~301~^16.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~304~^15.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~305~^287.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~306~^402.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~307~^65.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~318~^22.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~319~^7.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~320~^7.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~05/01/2013~ -~23353~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~417~^5.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~431~^0.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~432~^5.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~435~^5.^0^^~4~^~NC~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~601~^81.^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23354~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~305~^220.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~306~^313.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~307~^54.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23354~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~324~^1.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23354~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23354~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23354~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23354~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~601~^62.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~305~^221.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~306~^309.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~319~^2.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23355~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~324~^1.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23355~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23355~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23355~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23355~^~601~^61.^4^2.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~305~^220.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~306~^316.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~307~^55.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23356~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~324~^1.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23356~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23356~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23356~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23356~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~305~^220.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~306~^313.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~307~^54.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23357~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~324~^1.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23357~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23357~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23357~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23357~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~601~^62.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~305~^221.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~306~^309.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23358~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~324~^1.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23358~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23358~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23358~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23358~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23358~^~601~^61.^4^2.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~305~^220.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~306~^316.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~307~^55.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23359~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~324~^1.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23359~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23359~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23359~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23359~^~601~^63.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~305~^222.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~306~^319.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~307~^53.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23360~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~324~^1.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23360~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~601~^60.^6^3.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~305~^221.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~306~^324.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23361~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~324~^1.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23361~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23361~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23361~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23361~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23361~^~601~^58.^4^4.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~305~^222.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~306~^312.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~307~^50.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23362~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~324~^1.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23362~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23362~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23362~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23362~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23362~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~305~^222.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~306~^319.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~307~^53.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23363~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~324~^1.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~601~^60.^6^3.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~305~^221.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~306~^324.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23364~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~324~^1.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23364~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23364~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23364~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23364~^~601~^58.^4^4.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~305~^222.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~306~^312.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~307~^50.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23365~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~324~^1.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23365~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23365~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23365~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23365~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23365~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~305~^215.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~306~^289.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~307~^44.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23366~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~324~^3.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~601~^61.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~305~^212.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~306~^284.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~307~^45.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23367~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~324~^3.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23367~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23367~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23367~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23367~^~601~^60.^4^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~304~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~305~^222.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~306~^298.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~307~^42.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23368~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~324~^2.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23368~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23368~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23368~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23368~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23368~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~305~^207.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~306~^284.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~307~^46.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23369~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~324~^2.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23369~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23369~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23369~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~601~^60.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~268~^622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~305~^205.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~306~^283.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~307~^46.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23370~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~324~^3.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23370~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23370~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23370~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23370~^~601~^58.^4^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~268~^565.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23371~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~305~^210.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~306~^288.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~307~^47.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23371~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23371~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~324~^2.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23371~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23371~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23371~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23371~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~305~^215.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~306~^289.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~307~^44.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23372~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~324~^3.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~601~^61.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~304~^12.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~305~^212.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~306~^284.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~307~^45.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~324~^3.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23373~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23373~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~04/01/2013~ -~23373~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~04/01/2013~ -~23373~^~601~^60.^4^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~304~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~305~^222.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~306~^298.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~307~^42.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23374~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~324~^2.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23374~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23374~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23374~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~04/01/2013~ -~23374~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~04/01/2013~ -~23374~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~268~^743.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~304~^18.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~305~^255.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~306~^350.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~307~^56.^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23375~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~23375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23375~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23375~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23375~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~601~^84.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~304~^18.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~305~^253.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~306~^350.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23376~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~324~^3.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23376~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~23376~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~23376~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~ -~23376~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~04/01/2013~ -~23376~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~268~^707.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~304~^14.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~305~^259.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~306~^352.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~307~^54.^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~23377~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~324~^3.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~04/01/2013~ -~23377~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~23377~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~23377~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~ -~23377~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~04/01/2013~ -~23377~^~601~^85.^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23378~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~23378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~23378~^~301~^16.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~304~^15.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~305~^272.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~306~^387.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~307~^67.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~318~^8.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~319~^2.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~320~^2.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~23378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~417~^5.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~431~^0.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~432~^5.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~435~^5.^0^^~4~^~NC~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~601~^77.^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23379~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23379~^~301~^16.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~304~^15.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~305~^272.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~306~^381.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~307~^69.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~318~^7.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~319~^2.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~320~^2.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23379~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~417~^5.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~431~^0.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~432~^5.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~435~^5.^0^^~4~^~NC~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~601~^76.^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23380~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~268~^626.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23380~^~301~^17.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~304~^15.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~305~^271.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~306~^390.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~307~^67.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~318~^8.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~319~^3.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~320~^3.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~04/01/2013~ -~23380~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~417~^5.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~431~^0.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~432~^5.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~435~^5.^0^^~4~^~NC~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~601~^78.^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23381~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23381~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~268~^646.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23381~^~301~^17.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~304~^15.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~305~^288.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~306~^414.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~307~^68.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~318~^8.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~319~^2.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~320~^2.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~23381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~417~^5.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~431~^0.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~432~^5.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~435~^5.^0^^~4~^~NC~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~601~^78.^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23382~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~268~^661.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23382~^~301~^17.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~304~^16.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~305~^288.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~306~^421.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~307~^68.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~318~^7.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~319~^2.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~320~^2.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23382~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~417~^5.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~431~^0.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~432~^5.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~435~^5.^0^^~4~^~NC~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~601~^76.^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23383~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23383~^~301~^16.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~304~^15.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~305~^289.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~306~^405.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~307~^65.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~318~^9.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~319~^3.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~320~^3.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~ -~23383~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~417~^5.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~431~^0.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~432~^5.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~435~^5.^0^^~4~^~NC~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~601~^81.^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23384~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~268~^565.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~305~^210.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~306~^288.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~307~^47.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23384~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~324~^2.^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2013~ -~23384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23384~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23384~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23384~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~ -~23384~^~601~^62.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~268~^622.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~301~^15.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~305~^205.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~306~^283.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~307~^46.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23385~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~324~^3.^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2013~ -~23385~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~23385~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~23385~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~ -~23385~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2013~ -~23385~^~601~^58.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~301~^15.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~304~^12.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~305~^207.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~306~^284.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~307~^46.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23386~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~324~^2.^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2013~ -~23386~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23386~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23386~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23386~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~601~^60.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~268~^799.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~301~^15.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~305~^191.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~306~^258.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~307~^45.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23387~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~324~^4.^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23387~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23387~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23387~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~ -~23387~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~ -~23387~^~601~^64.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~268~^834.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~301~^16.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~305~^188.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~306~^254.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~307~^44.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23388~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~324~^4.^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23388~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23388~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23388~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23388~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23388~^~601~^62.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~268~^1152.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~305~^212.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~306~^259.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~307~^54.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23389~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~324~^6.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23389~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2013~ -~23389~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2013~ -~23389~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2013~ -~23389~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2013~ -~23389~^~601~^81.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~268~^1032.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~305~^223.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~306~^282.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~307~^50.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~319~^8.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23390~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~324~^5.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~23390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2013~ -~23390~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2013~ -~23390~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2013~ -~23390~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2013~ -~23390~^~601~^81.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~268~^1104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~305~^216.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~306~^265.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~307~^52.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~324~^5.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~23391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23391~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23391~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23391~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23391~^~601~^81.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~268~^869.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~305~^226.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~306~^293.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23392~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~324~^4.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2013~ -~23392~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23392~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23392~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23392~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~ -~23392~^~601~^80.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~268~^770.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~301~^13.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~305~^236.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~306~^315.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~307~^51.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23393~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~324~^3.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~ -~23393~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23393~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23393~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~ -~23393~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~ -~23393~^~601~^80.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~301~^13.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~305~^229.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~306~^299.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~307~^54.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23394~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~23394~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23394~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23394~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23394~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~601~^80.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~268~^857.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~301~^16.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~304~^10.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~305~^187.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~306~^253.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~307~^44.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23395~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~324~^4.^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23395~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2013~ -~23395~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2013~ -~23395~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2013~ -~23395~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2013~ -~23395~^~601~^61.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23397~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~268~^808.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~305~^165.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~306~^181.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~307~^33.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~601~^91.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~305~^190.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~306~^325.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~268~^1108.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~305~^113.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~306~^142.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~318~^53.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~319~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~268~^810.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~305~^148.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~306~^277.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~307~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~268~^843.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~305~^167.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~306~^178.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~601~^95.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~306~^321.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~305~^180.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~306~^315.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23405~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~268~^872.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~305~^157.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~306~^189.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~307~^38.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~601~^98.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~306~^361.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~601~^94.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~268~^675.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~306~^319.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~307~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~318~^56.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~319~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~268~^684.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~305~^222.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~306~^374.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~601~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~305~^192.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~306~^352.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~324~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~601~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~305~^141.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~306~^192.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~307~^28.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~324~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~268~^595.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~306~^331.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~601~^49.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~268~^944.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~305~^159.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~306~^172.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~318~^49.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~601~^94.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~268~^646.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~306~^291.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~307~^50.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~318~^36.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~305~^265.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~306~^184.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~318~^47.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~319~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~601~^201.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~268~^438.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~306~^275.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~307~^86.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~601~^124.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~268~^698.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~305~^155.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~306~^217.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~305~^178.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~306~^326.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~268~^537.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~305~^198.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~306~^338.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~324~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~208~^560.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~268~^2344.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~305~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~306~^125.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~307~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~208~^602.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~268~^2518.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~304~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~305~^68.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~306~^143.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~601~^104.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~305~^338.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~306~^144.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~307~^123.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~318~^347.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~319~^104.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~320~^104.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~324~^33.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~601~^1002.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~305~^232.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~306~^405.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~305~^234.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~306~^225.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~307~^175.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~318~^297.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~319~^89.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~320~^89.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~601~^404.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~305~^397.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~306~^336.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~318~^70046.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~319~^21014.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~320~^21014.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~601~^243.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~268~^556.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~305~^362.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~307~^53.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~318~^94398.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~319~^28319.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~320~^28319.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~601~^254.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~268~^528.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~305~^129.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~306~^193.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~601~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~305~^182.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~306~^340.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~601~^49.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~305~^144.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~306~^151.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~307~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~318~^35.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~305~^158.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~306~^297.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~268~^824.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~305~^204.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~306~^363.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~318~^29.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~324~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~305~^184.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~306~^337.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~601~^57.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~268~^786.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~304~^29.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~305~^254.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~306~^427.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~318~^39.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~268~^907.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~305~^217.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~306~^364.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~318~^63.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~601~^70.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~268~^626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~305~^177.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~208~^731.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~268~^3057.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~304~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~306~^129.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~307~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~208~^685.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~268~^2868.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~301~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~305~^51.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~306~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~307~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~324~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~268~^1332.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~305~^356.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~324~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~601~^249.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~268~^1270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~305~^331.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~306~^318.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~307~^64.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~318~^65.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~324~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~601~^217.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~268~^835.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~305~^259.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~306~^427.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~307~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~601~^81.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23440~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23440~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~268~^744.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23440~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~305~^153.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~318~^39.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~601~^56.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23441~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~268~^584.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~305~^204.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~306~^362.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~318~^31.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~268~^1134.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~305~^157.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~306~^189.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~324~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~601~^105.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~268~^1016.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~305~^150.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~306~^252.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~318~^40.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~319~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~324~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~601~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~301~^158.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~306~^102.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~324~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~601~^199.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~268~^323.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23445~^~301~^112.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~305~^159.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~306~^217.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~307~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23445~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23445~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~601~^117.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23446~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23446~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23446~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~305~^157.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~306~^177.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~307~^33.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~318~^41.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~324~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23447~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23447~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~307~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~318~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~208~^453.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23448~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~268~^1893.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23448~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~304~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~305~^94.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~306~^137.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~307~^33.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~318~^32.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23449~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~268~^1442.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23449~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~304~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~305~^118.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~306~^223.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~307~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~318~^29.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23450~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~268~^1047.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23450~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~305~^158.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~306~^173.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~307~^29.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23451~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23451~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~305~^179.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~306~^306.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~324~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23452~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~268~^1056.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23452~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~305~^149.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~306~^183.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~307~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23453~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~268~^755.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23453~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~305~^169.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~306~^295.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~307~^53.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23454~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~268~^1198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23454~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~306~^338.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~208~^225.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~268~^941.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~305~^161.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~306~^297.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~307~^43.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~318~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23456~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~268~^703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23456~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~306~^372.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~307~^43.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~318~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~324~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23457~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~268~^540.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23457~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~305~^189.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~306~^346.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~307~^39.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~318~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~324~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~601~^48.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23458~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23458~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~305~^139.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~306~^190.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~307~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23459~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23459~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~305~^171.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~306~^323.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~307~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~318~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~601~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23460~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~268~^1052.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23460~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~305~^154.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~306~^170.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~307~^30.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~318~^47.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23461~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~268~^741.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23461~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~306~^283.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~318~^34.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23462~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~268~^820.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23462~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~306~^211.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~307~^43.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~318~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~208~^147.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~268~^616.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~318~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23464~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23464~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~268~^826.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23464~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~305~^144.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~306~^151.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~307~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23465~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~268~^802.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23465~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~305~^253.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~306~^425.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23466~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~305~^191.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~306~^343.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~324~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23467~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23467~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~268~^607.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23467~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~305~^190.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~306~^341.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~318~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~324~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23468~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23468~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~306~^325.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~307~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~318~^53.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~324~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23469~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~268~^1055.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23469~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~305~^153.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~306~^268.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~307~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~318~^33.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23470~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~268~^846.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23470~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~304~^30.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~305~^258.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~306~^425.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~307~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~318~^42.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~601~^81.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23471~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~268~^611.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23471~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~306~^359.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~307~^39.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~318~^30.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~324~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23472~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23472~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~268~^637.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23472~^~301~^10.^36^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~304~^21.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~305~^192.^36^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~306~^336.^36^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23472~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23472~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23472~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23472~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~417~^5.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23472~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23472~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23472~^~601~^63.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23473~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~268~^806.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23473~^~301~^9.^36^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~304~^22.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~305~^205.^36^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~306~^342.^36^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23473~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23473~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23473~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23473~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~417~^7.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23473~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23473~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23473~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23474~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~268~^760.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23474~^~301~^11.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~304~^24.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~305~^220.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~306~^371.^12^13.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~307~^72.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23474~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23474~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23474~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23474~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23474~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2014~ -~23474~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23474~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23474~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23475~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23475~^~301~^10.^12^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~304~^21.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~305~^197.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~306~^309.^12^9.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~307~^59.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23475~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23475~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~417~^6.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23475~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23475~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23475~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23476~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~268~^875.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23476~^~301~^12.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~304~^28.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~305~^258.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~306~^449.^12^11.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~307~^86.^12^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23476~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23476~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23476~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23476~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~417~^8.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23476~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23476~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23476~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23477~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23477~^~301~^8.^36^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~304~^22.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~305~^203.^36^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~306~^357.^36^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23477~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23477~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23477~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23477~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~417~^4.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23477~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23477~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23477~^~601~^60.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23478~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~268~^639.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23478~^~301~^5.^36^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~304~^23.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~305~^208.^36^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~306~^353.^36^6.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~307~^64.^36^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23478~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23478~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23478~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23478~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~417~^7.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23478~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23478~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23478~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23479~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~268~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23479~^~301~^7.^12^7.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~304~^24.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~305~^224.^12^7.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~306~^382.^12^17.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~307~^69.^12^3.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23479~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23479~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23479~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23479~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~417~^7.^0^^~4~^~BFPN~^~23478~^^^^^^^^^~05/01/2014~ -~23479~^~431~^0.^0^^~4~^~BFPN~^~23478~^^^^^^^^^~07/01/2014~ -~23479~^~432~^7.^0^^~4~^~BFPN~^~23478~^^^^^^^^^~05/01/2014~ -~23479~^~435~^7.^0^^~4~^~NC~^~23478~^^^^^^^^^~07/01/2014~ -~23479~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23480~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~268~^646.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23480~^~301~^6.^12^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~304~^22.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~305~^202.^12^7.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~306~^321.^12^13.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~307~^56.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23480~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23480~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23480~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23480~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~417~^6.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23480~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23480~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23480~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23481~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~268~^732.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23481~^~301~^7.^12^6.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~304~^29.^12^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~305~^267.^12^7.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~306~^470.^12^15.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~307~^84.^12^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23481~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23481~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23481~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23481~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~417~^7.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23481~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23481~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23481~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23482~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23482~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23482~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~304~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~305~^194.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~306~^310.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~307~^61.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~318~^9.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~23482~^~601~^65.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~208~^140.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~268~^587.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~305~^194.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~306~^316.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~307~^56.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~318~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~23483~^~601~^62.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~208~^194.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~268~^810.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~301~^12.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~305~^200.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~306~^303.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~307~^54.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~318~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~23484~^~601~^80.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23485~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~268~^579.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23485~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~304~^18.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~305~^202.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~306~^322.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~307~^60.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~318~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~23485~^~601~^63.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23490~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23490~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~268~^596.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23490~^~301~^18.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~305~^193.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~306~^308.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~307~^55.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~318~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23490~^~601~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~208~^203.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~268~^850.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~301~^11.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~304~^22.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~305~^197.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~306~^298.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~307~^53.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~318~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23491~^~601~^82.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23494~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23494~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~304~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~305~^194.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~306~^306.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~307~^61.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~318~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23494~^~601~^66.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~268~^633.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~305~^206.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~306~^335.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~307~^66.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~601~^66.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23496~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~268~^557.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23496~^~301~^12.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~305~^205.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~306~^330.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~307~^63.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23496~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23497~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23497~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~304~^18.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~305~^197.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~306~^315.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~307~^61.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~318~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23497~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23498~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~268~^700.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23498~^~301~^11.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~304~^22.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~305~^192.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~306~^294.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~307~^51.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~318~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23498~^~601~^74.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23499~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23499~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~304~^22.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~305~^198.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~306~^328.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~307~^58.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~318~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23499~^~601~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23509~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23509~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~268~^667.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23509~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~305~^227.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~306~^293.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~307~^71.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23509~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23509~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23509~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23509~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23509~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23509~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23509~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23509~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23511~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~268~^850.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23511~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~305~^217.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~306~^304.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~307~^68.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23511~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23511~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23511~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23511~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23511~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23511~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23511~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23511~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23513~^~208~^129.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2002~ -~23513~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~268~^540.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~301~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~305~^192.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~306~^354.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~307~^64.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23513~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23513~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23513~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23513~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23513~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23513~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23513~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23513~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~23513~^~601~^59.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23514~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23514~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23514~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~305~^222.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~306~^385.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~307~^74.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~23514~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~417~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~432~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23514~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23515~^~208~^173.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2002~ -~23515~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~268~^726.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~305~^215.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~306~^372.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~307~^71.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23515~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23515~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23515~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23515~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23515~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23515~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23515~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23515~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~23515~^~601~^71.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23516~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23516~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~304~^26.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~305~^249.^6^4.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~306~^372.^6^7.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~307~^68.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23516~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23516~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23516~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23516~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23516~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23516~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23516~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23516~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23516~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23516~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~601~^82.^6^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23517~^~208~^189.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2002~ -~23517~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~268~^790.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~305~^233.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~306~^287.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~307~^60.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23517~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~ -~23517~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23517~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23517~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23517~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23517~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23517~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~23517~^~601~^94.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23519~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23519~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~268~^675.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23519~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~305~^234.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~306~^293.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~307~^73.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23519~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23519~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23519~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23519~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23519~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23519~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23519~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23519~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23521~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23521~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~305~^217.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~306~^293.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~307~^68.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23521~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23521~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23521~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23521~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23521~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23521~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23521~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23521~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23523~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~268~^948.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23523~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~305~^215.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~306~^300.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~307~^68.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23523~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23523~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23523~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23523~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23523~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23523~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23523~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23523~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23525~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~268~^835.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23525~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~305~^212.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~306~^298.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~307~^67.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23525~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23525~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23525~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23525~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23525~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23525~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23525~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~23525~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23528~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23528~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~268~^903.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~23528~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~305~^210.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~306~^363.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~307~^71.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~23528~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~23528~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23531~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~23531~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~305~^215.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~306~^372.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~307~^72.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~23531~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23531~^~417~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~432~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~23531~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23533~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23533~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23533~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~304~^26.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~305~^245.^4^4.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~306~^367.^4^8.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~307~^67.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23533~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23533~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23533~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23533~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23533~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23533~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23533~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23533~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23533~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23533~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23533~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~ -~23533~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~ -~23533~^~601~^81.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~268~^739.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23536~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~305~^245.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~306~^366.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23536~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23536~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23536~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23536~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23536~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23536~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23536~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23536~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23536~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~ -~23536~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23536~^~601~^83.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23540~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~23540~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23540~^~301~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~305~^230.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~306~^289.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~307~^75.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23540~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23540~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23540~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23540~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23540~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23540~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23540~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23540~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23541~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23541~^~301~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~305~^214.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~306~^379.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~307~^92.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23541~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23541~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23541~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23541~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23541~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23541~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23541~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23541~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23545~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~268~^1108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23545~^~301~^12.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~305~^265.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~306~^437.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~307~^72.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23545~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~23545~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23545~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23545~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23545~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23545~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23545~^~417~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~432~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23545~^~601~^68.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~23547~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~268~^671.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23547~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~305~^227.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~306~^293.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~307~^71.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23547~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23547~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23547~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23547~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23547~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23547~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23547~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23547~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23549~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23549~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~305~^214.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~307~^67.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23549~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~ -~23549~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23549~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23549~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23549~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23549~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23549~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~23549~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~23552~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~268~^868.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23552~^~301~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~305~^212.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~306~^367.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~307~^71.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23552~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23552~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23552~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23552~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23552~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23552~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23552~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~23552~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23554~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23554~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23554~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~304~^25.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~305~^245.^6^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~306~^366.^6^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~307~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23554~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23554~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23554~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23554~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23554~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23554~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23554~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23554~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23554~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23554~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23554~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23554~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23554~^~601~^81.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23557~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23557~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23557~^~301~^9.^36^3.^~1~^~AR~^^^^^^^^^^~07/01/2002~ -~23557~^~304~^22.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~305~^198.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~306~^346.^36^5.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23557~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23557~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23557~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23557~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~417~^5.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23557~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~23557~^~432~^5.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23557~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~23557~^~601~^62.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23558~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23558~^~301~^7.^36^3.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23558~^~304~^22.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~305~^206.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~306~^347.^36^5.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~307~^65.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23558~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23558~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23558~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23558~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~417~^7.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23558~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~432~^7.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23558~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23558~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23559~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~268~^685.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23559~^~301~^9.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~304~^24.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~305~^222.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~306~^376.^12^15.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~307~^71.^12^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23559~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23559~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23559~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23559~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23559~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23559~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23559~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23559~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23560~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23560~^~301~^9.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~304~^28.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~305~^263.^12^6.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~306~^459.^12^13.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~307~^85.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23560~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23560~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23560~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23560~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~417~^7.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~432~^7.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23560~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23561~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23561~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23561~^~301~^8.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~304~^22.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~305~^199.^12^6.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~306~^315.^12^11.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~307~^58.^12^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23561~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23561~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23561~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23561~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~417~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~432~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23561~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~23562~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~268~^735.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~23562~^~301~^12.^36^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23562~^~304~^20.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~305~^184.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~306~^321.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23562~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23562~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23562~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23562~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~417~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23562~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23562~^~432~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23562~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~23562~^~601~^65.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23563~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~268~^910.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23563~^~301~^13.^36^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23563~^~304~^22.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~305~^202.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~306~^333.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~307~^68.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23563~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23563~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23563~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23563~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~417~^8.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23563~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~432~^8.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23563~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23563~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23564~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~268~^854.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23564~^~301~^15.^12^4.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~304~^23.^12^0.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~305~^216.^12^4.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~306~^363.^12^10.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~307~^75.^12^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23564~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23564~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23564~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23564~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2002~ -~23564~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2002~ -~23564~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~23564~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23565~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~268~^963.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23565~^~301~^16.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~304~^27.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~305~^250.^12^4.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~306~^433.^12^9.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~307~^87.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23565~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23565~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23565~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23565~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~417~^8.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~432~^8.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23565~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23566~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23566~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~268~^894.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23566~^~301~^13.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~304~^21.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~305~^193.^12^4.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~306~^300.^12^7.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~307~^61.^12^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23566~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23566~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23566~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23566~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~417~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~432~^6.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23566~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23567~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~268~^898.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23567~^~301~^15.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~304~^18.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~305~^171.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~306~^295.^36^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23567~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23567~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~417~^6.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~23567~^~432~^6.^5^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23567~^~601~^68.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23568~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~268~^1045.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23568~^~301~^18.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~304~^21.^36^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~305~^198.^36^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~306~^318.^36^4.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~307~^72.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23568~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23568~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23568~^~417~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~432~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23568~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23569~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~268~^969.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23569~^~301~^20.^12^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~304~^22.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~305~^211.^12^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~306~^349.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~307~^79.^12^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23569~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23569~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23569~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23569~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~417~^8.^0^^~4~^~BFPN~^~23568~^^^^^^^^^~06/01/2002~ -~23569~^~431~^0.^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~432~^8.^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~435~^8.^0^^~4~^~NC~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~268~^1073.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~301~^22.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~304~^25.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~305~^238.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~306~^407.^12^6.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~307~^89.^12^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23570~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23570~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23570~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23570~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~417~^10.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23570~^~432~^10.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23570~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23571~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23571~^~301~^18.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~305~^186.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~306~^286.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~307~^64.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23571~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23571~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23571~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23571~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~417~^6.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23571~^~432~^6.^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23571~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23572~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~268~^1062.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23572~^~301~^18.^36^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23572~^~304~^17.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~305~^158.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~306~^270.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23572~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23572~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~417~^7.^6^0.^~1~^~AR~^^^^^^^^^^~09/01/2004~ -~23572~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~432~^7.^6^0.^~1~^~AR~^^^^^^^^^^~09/01/2004~ -~23572~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~23572~^~601~^71.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23573~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23573~^~301~^24.^36^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23573~^~304~^20.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~305~^194.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~306~^304.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~307~^75.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23573~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23573~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23573~^~417~^10.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23573~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~432~^10.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23573~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23573~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23574~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~268~^1031.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23574~^~301~^26.^12^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~304~^21.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~305~^205.^12^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~306~^335.^12^8.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~307~^83.^12^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23574~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23574~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~417~^9.^0^^~4~^~BFPN~^~23573~^^^^^^^^^~06/01/2002~ -~23574~^~431~^0.^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~432~^9.^0^^~4~^~BFPN~^~23573~^^^^^^^^^~06/01/2002~ -~23574~^~435~^9.^0^^~4~^~NC~^~23573~^^^^^^^^^~03/01/2009~ -~23574~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23575~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~268~^1138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23575~^~301~^28.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~304~^23.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~305~^226.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~306~^380.^12^8.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~307~^91.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23575~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23575~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~417~^11.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~432~^11.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23575~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23576~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23576~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23576~^~301~^23.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~304~^19.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~305~^179.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~306~^271.^12^6.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~307~^67.^12^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23576~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23576~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~417~^7.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~432~^7.^6^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23576~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23577~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~268~^1225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23577~^~301~^21.^36^3.^~1~^~AR~^^^^^^^^^^~07/01/2002~ -~23577~^~304~^15.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~305~^145.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~306~^244.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23577~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23577~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23577~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23577~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~417~^8.^6^1.^~1~^~AR~^^^^^^^^^^~09/01/2004~ -~23577~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~432~^8.^6^1.^~1~^~AR~^^^^^^^^^^~09/01/2004~ -~23577~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~23577~^~601~^75.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23578~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~268~^1169.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23578~^~301~^30.^36^3.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23578~^~304~^20.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~305~^189.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~306~^289.^36^5.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~307~^78.^36^1.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23578~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23578~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~417~^11.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23578~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~432~^11.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23578~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23578~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23579~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~268~^1040.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23579~^~301~^32.^12^5.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~305~^199.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~306~^322.^12^13.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~307~^87.^12^2.^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23579~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23579~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~417~^10.^0^^~4~^~BFPN~^~23578~^^^^^^^^^~06/01/2002~ -~23579~^~431~^0.^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~432~^10.^0^^~4~^~BFPN~^~23578~^^^^^^^^^~06/01/2002~ -~23579~^~435~^10.^0^^~4~^~NC~^~23578~^^^^^^^^^~03/01/2009~ -~23579~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23580~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~268~^1157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23580~^~301~^34.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~304~^22.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~305~^214.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~306~^354.^12^12.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~307~^93.^12^3.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23580~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23580~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~417~^12.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~432~^12.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23580~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23581~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23581~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~268~^1062.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23581~^~301~^28.^12^4.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~304~^18.^12^0.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~305~^172.^12^5.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~306~^256.^12^10.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~307~^70.^12^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23581~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23581~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~417~^7.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~432~^7.^6^1.^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~23581~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23582~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23582~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~268~^561.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23582~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~306~^353.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23582~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23582~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23582~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23582~^~601~^73.^0^^~4~^~BFSN~^~23067~^^^^^^^^^~07/01/2010~ -~23583~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~306~^354.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23583~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23583~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23583~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~601~^64.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23584~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23584~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23584~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23584~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23584~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~601~^59.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23585~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~268~^558.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23585~^~301~^23.^3^8.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~304~^24.^3^0.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~305~^214.^3^0.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~306~^361.^3^7.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~307~^57.^3^1.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23585~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23585~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23585~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23585~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23585~^~601~^40.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23586~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23586~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~268~^786.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23586~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~305~^253.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~306~^409.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23586~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23586~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23586~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23586~^~601~^98.^0^^~4~^~BFSN~^~13981~^^^^^^^^^~07/01/2010~ -~23587~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23587~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~268~^812.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23587~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~305~^238.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~306~^386.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23587~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23587~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~23587~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23587~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23588~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~268~^711.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23588~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~305~^238.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~306~^386.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23588~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23588~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23588~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23588~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23589~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23589~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~268~^742.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23589~^~301~^21.^3^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~305~^239.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~306~^386.^3^6.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~307~^62.^3^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23589~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23589~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23589~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23589~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23589~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23589~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23590~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~268~^684.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~306~^238.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~307~^38.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23590~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23590~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23590~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23590~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~601~^74.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23591~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23591~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~268~^684.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23591~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~305~^188.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~306~^245.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~307~^39.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23591~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23591~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23591~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23591~^~601~^75.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23592~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~306~^270.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~307~^43.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23592~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23592~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23592~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23593~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~268~^858.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~301~^7.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~304~^23.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~305~^222.^3^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~306~^289.^3^6.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~307~^46.^3^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23593~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23593~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23593~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23593~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~601~^92.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23594~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~268~^534.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~301~^20.^5^4.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~304~^24.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~305~^214.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~306~^350.^5^6.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~307~^59.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23594~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23594~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23594~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23594~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23595~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23595~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~268~^819.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23595~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~306~^266.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23595~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23595~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23595~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23595~^~601~^97.^0^^~4~^~BFSN~^~13595~^^^^^^^^^~07/01/2010~ -~23596~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23596~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23596~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~306~^336.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~307~^74.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23596~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23596~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23596~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23596~^~601~^65.^0^^~4~^~BFSN~^~13595~^^^^^^^^^~07/01/2010~ -~23597~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23597~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~268~^517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23597~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23597~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23597~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23597~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23597~^~601~^59.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23598~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~305~^186.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~306~^241.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~307~^38.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23598~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23598~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23598~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23598~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23599~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23599~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23599~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~306~^347.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23599~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23599~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23599~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23599~^~601~^75.^0^^~4~^~BFSN~^~23068~^^^^^^^^^~07/01/2010~ -~23600~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~268~^835.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~305~^230.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~306~^370.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23600~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23600~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23600~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23600~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23601~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23601~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~268~^641.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23601~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~306~^347.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23601~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23601~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23601~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23601~^~601~^65.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23602~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~268~^897.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~301~^16.^5^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~304~^23.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~305~^213.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~306~^277.^5^3.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~307~^56.^5^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23602~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23602~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23602~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23602~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23602~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~601~^104.^0^^~4~^~BFSN~^~23083~^^^^^^^^^~07/01/2010~ -~23603~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23603~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23603~^~301~^16.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~304~^23.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~305~^203.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~306~^337.^5^6.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~307~^74.^5^3.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23603~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23603~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23603~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23603~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23603~^~601~^65.^0^^~4~^~BFSN~^~13647~^^^^^^^^^~07/01/2010~ -~23604~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23604~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~268~^684.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23604~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~306~^230.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23604~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23604~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23604~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23604~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23605~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~301~^7.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~304~^23.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~305~^217.^5^3.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~306~^282.^5^3.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~307~^45.^5^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23605~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23605~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23605~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23605~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23605~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~601~^94.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23606~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23606~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23606~^~301~^19.^5^2.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~304~^25.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~305~^231.^5^4.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~306~^372.^5^6.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~307~^61.^5^1.^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23606~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23606~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23606~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23606~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23606~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23606~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23607~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23607~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23607~^~301~^25.^5^6.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~304~^24.^5^0.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~305~^211.^5^1.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~306~^354.^5^4.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~307~^57.^5^0.^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23607~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23607~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23607~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23607~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23607~^~601~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23608~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23608~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~268~^774.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23608~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~306~^264.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~307~^42.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23608~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23608~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23608~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23608~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23608~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23609~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23609~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23609~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~306~^362.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23609~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23609~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23609~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23609~^~601~^55.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23610~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~305~^233.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~306~^376.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23610~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23610~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23610~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23610~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~601~^79.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23611~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23611~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~268~^549.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23611~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23611~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23611~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23611~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23611~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23611~^~601~^60.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23612~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23612~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23612~^~301~^15.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~304~^23.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~305~^201.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~306~^332.^3^10.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~307~^74.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23612~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23612~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23612~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23612~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23612~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23612~^~601~^65.^0^^~4~^~BFSN~^~13648~^^^^^^^^^~07/01/2010~ -~23613~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23613~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~268~^541.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23613~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~305~^203.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~306~^335.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~307~^75.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23613~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23613~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23613~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23613~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23613~^~601~^65.^0^^~4~^~BFSN~^~13596~^^^^^^^^^~07/01/2010~ -~23614~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23614~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23614~^~301~^15.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~304~^23.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~305~^213.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~306~^275.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~307~^56.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23614~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23614~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23614~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23614~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23614~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23614~^~601~^106.^0^^~4~^~BFSN~^~23081~^^^^^^^^^~07/01/2010~ -~23615~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23615~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~268~^848.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23615~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~306~^261.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23615~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23615~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23615~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23615~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23615~^~601~^97.^0^^~4~^~BFSN~^~13596~^^^^^^^^^~07/01/2010~ -~23616~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23616~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~268~^536.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23616~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~305~^221.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~306~^351.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23616~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23616~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23616~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~417~^14.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~432~^14.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23616~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23616~^~601~^60.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23617~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23617~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23617~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~306~^352.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23617~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23617~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23617~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23617~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23617~^~601~^63.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23618~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23618~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~268~^584.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23618~^~301~^19.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~304~^24.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~305~^215.^3^5.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~306~^341.^3^9.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~307~^56.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23618~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23618~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23618~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23618~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23618~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23618~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23618~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23619~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~268~^748.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~306~^225.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23619~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23619~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23619~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23620~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~268~^734.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~306~^241.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~307~^39.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23620~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23620~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23620~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23621~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~268~^808.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~305~^203.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~306~^263.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~307~^42.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23621~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23621~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23621~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23622~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~301~^7.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~304~^23.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~305~^215.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~306~^278.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~307~^45.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23622~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23622~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23622~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23622~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23622~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23622~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23622~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~601~^97.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23623~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23623~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23623~^~301~^28.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~306~^341.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23623~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23623~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23623~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23623~^~601~^68.^0^^~4~^~BFSN~^~23066~^^^^^^^^^~07/01/2010~ -~23624~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~301~^28.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23624~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23624~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23624~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23625~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~268~^566.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~301~^28.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~305~^205.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~306~^342.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23625~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23625~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23625~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23625~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23626~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~268~^847.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23626~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~306~^352.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23626~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23626~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23626~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23626~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23626~^~601~^88.^0^^~4~^~BFSN~^~13980~^^^^^^^^^~07/01/2010~ -~23627~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23627~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23627~^~301~^29.^3^7.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~304~^24.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~305~^208.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~306~^348.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~307~^58.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23627~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23627~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23627~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23627~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23627~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23628~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~305~^223.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~306~^358.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23628~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23628~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23628~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23629~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~305~^231.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~306~^369.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23629~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23629~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23629~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23629~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23630~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23630~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~268~^840.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23630~^~301~^16.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~305~^226.^3^5.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~306~^362.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~307~^60.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23630~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23630~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23630~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23630~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23630~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23631~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~301~^18.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~304~^23.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~305~^204.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~306~^339.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~307~^77.^3^6.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23631~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23631~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23631~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23631~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23631~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~601~^66.^0^^~4~^~BFSN~^~13649~^^^^^^^^^~07/01/2010~ -~23632~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23632~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~305~^200.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~306~^333.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~307~^76.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23632~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23632~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23632~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23632~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23632~^~601~^66.^0^^~4~^~BFSN~^~13597~^^^^^^^^^~07/01/2010~ -~23633~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23633~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~268~^858.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23633~^~301~^17.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~304~^23.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~305~^215.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~306~^281.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~307~^57.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23633~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23633~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23633~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~23633~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23633~^~601~^103.^0^^~4~^~BFSN~^~23082~^^^^^^^^^~07/01/2010~ -~23634~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23634~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~268~^789.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23634~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~306~^273.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23634~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23634~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23634~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23634~^~601~^98.^0^^~4~^~BFSN~^~13597~^^^^^^^^^~07/01/2010~ -~23635~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23635~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23635~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~306~^364.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23635~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23635~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23635~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23635~^~601~^58.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23636~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~268~^540.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~305~^224.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~306~^373.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~307~^64.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23636~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23636~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~417~^14.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~432~^14.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23636~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23637~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~268~^534.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~301~^21.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~304~^24.^3^0.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~305~^217.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~306~^361.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~307~^62.^3^2.^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23637~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23637~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23637~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23637~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~601~^59.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23638~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~305~^235.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~306~^378.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~23638~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23638~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23638~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23638~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~601~^87.^0^^~4~^~BFSN~^~13982~^^^^^^^^^~07/01/2010~ -~23640~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~23640~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~23640~^~301~^81.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~306~^42.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~307~^68.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23640~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~23640~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~417~^3.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23640~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23640~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~01/01/2008~ -~23640~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~23640~^~601~^157.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23646~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23646~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23646~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~306~^333.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23646~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23646~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23646~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23646~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23647~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23647~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~306~^324.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23647~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23647~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23647~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23647~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23648~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23648~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~268~^645.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23648~^~301~^27.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~305~^193.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~306~^323.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23648~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23648~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23648~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23648~^~601~^64.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23649~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~268~^748.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23649~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~306~^359.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23649~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23649~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23649~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23649~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23650~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23650~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~268~^540.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23650~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~306~^344.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23650~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23650~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23650~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23650~^~601~^59.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23651~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23651~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~268~^526.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23651~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~306~^323.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23651~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23651~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23651~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23651~^~601~^57.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23652~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~268~^543.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~305~^200.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~306~^318.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23652~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23652~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23652~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~601~^58.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23653~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~268~^508.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~305~^203.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~306~^337.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23653~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23653~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23653~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~601~^55.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23654~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~268~^777.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~305~^217.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~306~^350.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23654~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23654~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23654~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23655~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~268~^744.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~305~^226.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~306~^365.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23655~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23655~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23655~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23656~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23656~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23656~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23656~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23657~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~306~^341.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23657~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23657~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23657~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~601~^60.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23658~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~268~^1162.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~305~^166.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~306~^281.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23658~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23658~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~417~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~432~^10.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~23658~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~601~^91.^0^^~4~^~BFSN~^~13975~^^^^^^^^^~07/01/2010~ -~23659~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~305~^164.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~306~^271.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23659~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23659~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~23659~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~601~^94.^0^^~4~^~BFSN~^~13983~^^^^^^^^^~07/01/2010~ -~23660~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~268~^1247.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~305~^171.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~306~^227.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~307~^46.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23660~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~ -~23660~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~23660~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~601~^107.^0^^~4~^~BFSN~^~13975~^^^^^^^^^~07/01/2010~ -~25000~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~25000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~25000~^~268~^1682.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~301~^14.^8^0.^~1~^~A~^^^1^10.^18.^4^11.^17.^~2, 3~^~03/01/2008~ -~25000~^~304~^124.^8^12.^~1~^~A~^^^1^112.^137.^4^88.^160.^~2, 3~^~03/01/2008~ -~25000~^~305~^304.^8^24.^~1~^~A~^^^1^278.^329.^4^236.^370.^~2, 3~^~03/01/2008~ -~25000~^~306~^284.^8^19.^~1~^~A~^^^1^256.^311.^4^230.^337.^~2, 3~^~03/01/2008~ -~25000~^~307~^571.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~25000~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~25000~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~25000~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~25000~^~321~^75.^2^^~1~^~A~^^^^53.^98.^^^^^~03/01/2008~ -~25000~^~322~^7.^2^^~1~^~A~^^^^6.^7.^^^^^~03/01/2008~ -~25000~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25000~^~334~^160.^2^^~1~^~A~^^^^114.^206.^^^^^~03/01/2008~ -~25000~^~337~^0.^2^^~1~^~A~^^^^0.^0.^^^^^~03/01/2008~ -~25000~^~338~^1259.^2^^~1~^~A~^^^^1231.^1287.^^^^^~03/01/2008~ -~25000~^~417~^18.^4^2.^~1~^~A~^^^^12.^21.^^^^^~03/01/2008~ -~25000~^~431~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~03/01/2008~ -~25000~^~432~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~25000~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~25000~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2008~ -~25001~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~25001~^~262~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~263~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~268~^1774.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~25001~^~301~^11.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~304~^151.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~305~^264.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~306~^241.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~307~^629.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~25001~^~318~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~25001~^~319~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~320~^12.^0^^~4~^~NC~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~321~^108.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~322~^70.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25001~^~334~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~337~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~338~^1762.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~417~^17.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~431~^0.^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~432~^17.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~435~^17.^0^^~4~^~NC~^~25000~^^^^^^^^^~07/01/2008~ -~25001~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2007~ -~25003~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25003~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25003~^~301~^430.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25003~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~305~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~306~^100.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~307~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25003~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25003~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~338~^62.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25003~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~636~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25004~^~208~^396.^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25004~^~268~^1657.^0^^~12~^~MA~^^^^^^^^^^~06/01/2014~ -~25004~^~301~^965.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~304~^255.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~305~^455.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~307~^462.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~318~^3637.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~417~^727.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~431~^727.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25004~^~432~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25004~^~435~^1236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25004~^~601~^4.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~208~^422.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25005~^~268~^1764.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25005~^~301~^953.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~304~^255.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~305~^455.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~307~^418.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~318~^3182.^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25005~^~417~^727.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~431~^727.^1^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25005~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~25005~^~435~^1236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25005~^~601~^3.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~25006~^~268~^1577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~25006~^~301~^1495.^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~25006~^~304~^317.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~305~^566.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~307~^333.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~318~^4445.^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25006~^~417~^905.^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25006~^~431~^905.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25006~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2006~ -~25006~^~435~^1538.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25006~^~601~^4.^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25007~^~208~^463.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25007~^~268~^1937.^0^^~4~^~NR~^^^^^^^^^^~07/01/2006~ -~25007~^~301~^871.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~307~^268.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~318~^71.^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~25007~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25008~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~25008~^~268~^1596.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~25008~^~304~^317.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~307~^318.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~318~^4451.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~324~^181.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~417~^905.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~431~^821.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~25008~^~432~^84.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~25008~^~435~^1480.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~25009~^~208~^415.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25009~^~268~^1735.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~25009~^~301~^943.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~307~^341.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~318~^51.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~601~^4.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~208~^347.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25010~^~268~^1452.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25010~^~301~^1209.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~307~^260.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~318~^32.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~417~^182.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25010~^~431~^182.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25010~^~432~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25010~^~435~^309.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25010~^~601~^2.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25012~^~208~^532.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~25012~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~268~^2225.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~25012~^~301~^59.^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~304~^65.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~305~^145.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~306~^925.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~307~^35.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~25012~^~318~^23675.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~25012~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~320~^1184.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~25012~^~321~^14205.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~25012~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~417~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~432~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25012~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~636~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25013~^~208~^491.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~268~^2054.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~301~^20.^4^1.^~1~^~A~^^^1^18.^22.^3^16.^23.^~2, 3~^~04/01/2006~ -~25013~^~304~^76.^4^0.^~1~^~A~^^^1^75.^77.^3^74.^77.^~2, 3~^~04/01/2006~ -~25013~^~305~^222.^4^0.^~1~^~A~^^^1^221.^222.^3^220.^222.^~2, 3~^~04/01/2006~ -~25013~^~306~^232.^4^2.^~1~^~A~^^^1^228.^239.^3^224.^240.^~2, 3~^~04/01/2006~ -~25013~^~307~^423.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~25013~^~318~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25013~^~321~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~322~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~338~^441.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~417~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~431~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~25013~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25013~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25014~^~208~^557.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~268~^2330.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~301~^20.^12^0.^~1~^~A~^^^1^16.^25.^11^17.^22.^~2, 3~^~03/01/2008~ -~25014~^~304~^94.^12^5.^~1~^~A~^^^1^62.^131.^11^82.^106.^~2, 3~^~07/01/2013~ -~25014~^~305~^251.^12^13.^~1~^~A~^^^1^166.^332.^11^222.^280.^~2, 3~^~07/01/2013~ -~25014~^~306~^240.^12^13.^~1~^~A~^^^1^187.^313.^11^211.^269.^~2, 3~^~07/01/2013~ -~25014~^~307~^764.^12^41.^~1~^~A~^^^1^612.^982.^11^672.^855.^~2, 3~^~07/01/2013~ -~25014~^~318~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~319~^13.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~25014~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~321~^58.^5^6.^~1~^~A~^^^1^43.^73.^4^41.^74.^~2, 3~^~07/01/2013~ -~25014~^~322~^5.^5^1.^~1~^~A~^^^1^0.^9.^4^1.^9.^~1, 2, 3~^~03/01/2008~ -~25014~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~25014~^~334~^93.^5^13.^~1~^~A~^^^1^68.^138.^4^56.^130.^~2, 3~^~07/01/2013~ -~25014~^~337~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~338~^1112.^5^51.^~1~^~A~^^^1^964.^1217.^4^969.^1254.^~2, 3~^~07/01/2013~ -~25014~^~417~^15.^4^2.^~1~^~A~^^^^10.^20.^^^^^~03/01/2008~ -~25014~^~431~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~03/01/2008~ -~25014~^~432~^15.^4^2.^~1~^~AS~^^^^10.^20.^^^^^~03/01/2008~ -~25014~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~25014~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~636~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25015~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25015~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~263~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~268~^1734.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25015~^~301~^625.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~304~^175.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~305~^375.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~306~^188.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~307~^238.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~318~^2188.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~319~^651.^0^^~4~^~O~^^^^^^^^^^~09/01/2009~ -~25015~^~320~^652.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25015~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~324~^150.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~417~^500.^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~431~^500.^0^^~4~^~O~^^^^^^^^^^~09/01/2009~ -~25015~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2009~ -~25015~^~435~^850.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25015~^~601~^6.^1^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25016~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~25016~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~263~^57.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~268~^1615.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~25016~^~301~^754.^3^205.^~12~^~MA~^^^0^343.^965.^2^-129.^1636.^~2, 3~^~05/01/2006~ -~25016~^~304~^317.^1^^~12~^~MA~^^^^^^^^^^~05/01/2006~ -~25016~^~305~^455.^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~306~^351.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~307~^383.^4^34.^~12~^~MA~^^^0^318.^462.^3^273.^492.^~2, 3~^~05/01/2006~ -~25016~^~318~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25016~^~319~^62.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25016~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~324~^181.^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~417~^816.^2^^~8~^~LC~^^^0^727.^905.^1^^^^~05/01/2006~ -~25016~^~431~^739.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~25016~^~432~^77.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~25016~^~435~^1334.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~25016~^~601~^4.^1^^~12~^~MA~^^^^^^^^^^~05/01/2006~ -~25017~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~268~^1519.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25017~^~301~^504.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~304~^248.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~305~^614.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~306~^362.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~307~^308.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~25017~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~25017~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~25017~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~417~^615.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~25017~^~431~^615.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~25017~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~435~^1046.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25017~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25018~^~208~^325.^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25018~^~268~^1360.^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25018~^~301~^1207.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~307~^260.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~318~^32.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~417~^273.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25018~^~431~^273.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25018~^~432~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~25018~^~435~^464.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25018~^~601~^2.^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25020~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~268~^1615.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25020~^~301~^668.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~304~^250.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25020~^~305~^673.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~306~^289.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~307~^253.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~318~^3133.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25020~^~319~^940.^0^^~4~^~NR~^^^^^^^^^^~09/01/2009~ -~25020~^~320~^940.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~324~^214.^1^^~8~^~LC~^^^^^^^^^^~05/01/2008~ -~25020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~417~^430.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~431~^422.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~435~^725.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25020~^~601~^7.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~25021~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25021~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~263~^67.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~268~^1685.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25021~^~301~^886.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~304~^329.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~305~^785.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~306~^412.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~307~^386.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~318~^1251.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25021~^~319~^374.^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~25021~^~320~^374.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25021~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~324~^125.^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25021~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~417~^1057.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~431~^1023.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~432~^34.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25021~^~435~^1773.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25021~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~25022~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~25022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25022~^~268~^2075.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~25022~^~301~^42.^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~304~^67.^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~305~^215.^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~306~^257.^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~307~^467.^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~25022~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25022~^~417~^18.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~432~^18.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25023~^~208~^491.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~25023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25023~^~268~^2055.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~25023~^~301~^41.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25023~^~304~^61.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~305~^245.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~306~^238.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~307~^705.^0^^~4~^~T~^^^^^^^^^^~07/01/2011~ -~25023~^~318~^222.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25023~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~25023~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25023~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25023~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25024~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~25024~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~268~^1443.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~25024~^~301~^23.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~304~^21.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~305~^79.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~306~^88.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~307~^252.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~25024~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25024~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~25024~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25024~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~25024~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25025~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~268~^1610.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~301~^171.^2^^~4~^~FLC~^^^1^56.^285.^^^^^~07/01/2007~ -~25025~^~304~^170.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~305~^7.^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~306~^7.^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~307~^842.^2^^~4~^~FLC~^^^1^720.^963.^^^^^~07/01/2007~ -~25025~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25025~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25025~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25025~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~25025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25025~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25025~^~417~^240.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~432~^240.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~601~^0.^2^^~4~^~FLC~^^^1^0.^0.^^^^^~07/01/2007~ -~25025~^~636~^2.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25026~^~208~^535.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~25026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~268~^2237.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~25026~^~301~^23.^8^0.^~1~^~A~^^^1^21.^25.^1^14.^31.^~2, 3~^~09/01/2012~ -~25026~^~304~^110.^8^8.^~1~^~A~^^^1^81.^145.^1^35.^183.^~2, 3~^~07/01/2014~ -~25026~^~305~^275.^8^26.^~1~^~A~^^^1^201.^388.^1^-13.^564.^~2, 3~^~07/01/2014~ -~25026~^~306~^393.^8^29.^~1~^~A~^^^1^243.^538.^1^47.^739.^~2, 3~^~07/01/2014~ -~25026~^~307~^763.^8^68.^~1~^~A~^^^1^587.^1050.^1^-70.^1596.^~2, 3~^~07/01/2014~ -~25026~^~318~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~25026~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~25026~^~321~^50.^5^1.^~1~^~A~^^^1^44.^68.^2^43.^57.^~2, 3~^~07/01/2014~ -~25026~^~322~^6.^5^1.^~1~^~A~^^^1^0.^11.^2^0.^12.^~1, 2, 3~^~07/01/2014~ -~25026~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~25026~^~334~^111.^5^2.^~1~^~A~^^^1^74.^141.^2^100.^122.^~2, 3~^~07/01/2014~ -~25026~^~337~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~338~^1115.^5^4.^~1~^~A~^^^1^1006.^1225.^2^1093.^1135.^~2, 3~^~07/01/2014~ -~25026~^~417~^15.^4^2.^~1~^~A~^^^^10.^20.^^^^^~09/01/2012~ -~25026~^~431~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~09/01/2012~ -~25026~^~432~^15.^4^2.^~1~^~AS~^^^^10.^20.^^^^^~09/01/2012~ -~25026~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~25026~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25027~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~268~^2221.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~301~^9.^4^0.^~1~^~A~^^^1^8.^11.^3^7.^11.^~2, 3~^~05/01/2009~ -~25027~^~304~^71.^4^1.^~1~^~A~^^^1^68.^74.^3^66.^75.^~2, 3~^~05/01/2009~ -~25027~^~305~^78.^4^4.^~1~^~A~^^^1^68.^89.^3^64.^90.^~2, 3~^~05/01/2009~ -~25027~^~306~^786.^4^35.^~1~^~A~^^^1^701.^853.^3^672.^898.^~2, 3~^~05/01/2009~ -~25027~^~307~^202.^3^87.^~1~^~A~^^^1^114.^377.^2^-173.^578.^~2, 3~^~05/01/2009~ -~25027~^~318~^1386.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~25027~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25027~^~321~^611.^2^^~1~^~A~^^^1^598.^623.^1^^^^~05/01/2009~ -~25027~^~322~^441.^2^^~1~^~A~^^^1^430.^453.^1^^^^~05/01/2009~ -~25027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~25027~^~334~^0.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~05/01/2009~ -~25027~^~337~^36.^2^^~1~^~A~^^^1^34.^39.^1^^^^~05/01/2009~ -~25027~^~338~^16.^2^^~1~^~A~^^^1^14.^19.^1^^^^~05/01/2009~ -~25027~^~417~^35.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~25027~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~432~^35.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~25027~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25027~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25028~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~268~^2080.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~301~^104.^19^4.^~1~^~A~^^^2^77.^156.^16^93.^114.^~2, 3~^~07/01/2013~ -~25028~^~304~^84.^19^1.^~1~^~A~^^^2^73.^99.^17^80.^87.^~2, 3~^~04/01/2011~ -~25028~^~305~^234.^19^3.^~1~^~A~^^^2^209.^257.^17^226.^240.^~2, 3~^~07/01/2013~ -~25028~^~306~^206.^19^4.^~1~^~A~^^^2^155.^248.^17^196.^215.^~2, 3~^~07/01/2013~ -~25028~^~307~^310.^18^16.^~1~^~A~^^^2^195.^399.^16^275.^343.^~2, 3~^~07/01/2013~ -~25028~^~318~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25028~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25028~^~321~^39.^8^5.^~1~^~A~^^^2^25.^67.^2^10.^66.^~2, 3~^~04/01/2011~ -~25028~^~322~^56.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~25028~^~334~^57.^8^8.^~1~^~A~^^^2^40.^101.^4^31.^81.^~2, 3~^~04/01/2011~ -~25028~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~338~^1198.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~417~^22.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~432~^22.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~25028~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25030~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25030~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~268~^2162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25030~^~301~^79.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~304~^86.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~305~^198.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~306~^1266.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~307~^246.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~318~^1932.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25030~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~320~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25030~^~321~^1138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~322~^1.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25030~^~334~^41.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~417~^87.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~432~^87.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25030~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25031~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~25031~^~262~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~263~^99.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~268~^1782.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~25031~^~301~^200.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~304~^80.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~305~^300.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~306~^250.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~307~^444.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~25031~^~318~^3500.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25031~^~319~^1050.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~25031~^~320~^1050.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25031~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~417~^160.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~431~^160.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~25031~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25031~^~435~^272.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25031~^~601~^8.^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~263~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~268~^1630.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~301~^103.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~304~^321.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~305~^255.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~306~^429.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~307~^321.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~318~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25032~^~319~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25032~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~324~^7.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~25032~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~338~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~417~^39.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~431~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~432~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25032~^~601~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~636~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~208~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~268~^1794.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~305~^271.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~306~^415.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~307~^293.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~338~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~417~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~431~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~432~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25034~^~262~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~263~^106.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25034~^~268~^1644.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25034~^~301~^434.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25034~^~304~^86.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~305~^263.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~306~^300.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~307~^486.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~318~^179.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25034~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25034~^~321~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~338~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~417~^215.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~431~^70.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25034~^~432~^144.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25034~^~435~^264.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25034~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25035~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25035~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~263~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~268~^1725.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25035~^~301~^417.^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25035~^~304~^48.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~305~^159.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~306~^199.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~307~^312.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~25035~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25035~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25035~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~338~^47.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25035~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~636~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25036~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~268~^1888.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25036~^~301~^41.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~304~^69.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~305~^216.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~306~^285.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~307~^167.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~25036~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25036~^~319~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25036~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~338~^82.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~417~^33.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~431~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~432~^26.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25036~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~636~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25037~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~268~^1912.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~301~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^16.^18.^~2, 3~^~04/01/2009~ -~25037~^~304~^37.^6^0.^~1~^~A~^^^1^36.^38.^5^36.^38.^~2, 3~^~04/01/2009~ -~25037~^~305~^124.^6^0.^~1~^~A~^^^1^121.^126.^5^122.^126.^~2, 3~^~04/01/2009~ -~25037~^~306~^129.^6^1.^~1~^~A~^^^1^123.^134.^5^124.^133.^~2, 3~^~04/01/2009~ -~25037~^~307~^854.^6^5.^~1~^~A~^^^1^838.^876.^5^840.^868.^~2, 3~^~04/01/2009~ -~25037~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25037~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25037~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~417~^135.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~431~^114.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~435~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25037~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~636~^17.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25038~^~208~^455.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25038~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~268~^1903.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25038~^~301~^136.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~304~^95.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~305~^192.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~306~^320.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~307~^486.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25038~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25038~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25038~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25038~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25039~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25039~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~268~^1626.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25039~^~301~^333.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~304~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~305~^167.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~306~^238.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~307~^367.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~318~^793.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25039~^~319~^235.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~320~^236.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25039~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~322~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~324~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~338~^58.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~417~^75.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~431~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25039~^~601~^36.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~636~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25040~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25040~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~268~^1978.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~25040~^~301~^52.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~304~^53.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~305~^130.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~306~^838.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~307~^412.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~25040~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25040~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25040~^~321~^102.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25040~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~337~^7248.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~417~^16.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25040~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~636~^150.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25040~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~639~^55.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~641~^95.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25041~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~268~^1867.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~304~^97.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~305~^333.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~306~^545.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~307~^400.^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~321~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~322~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25041~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~338~^73.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~417~^81.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~432~^81.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25043~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25043~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~268~^1737.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25043~^~301~^500.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25043~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~305~^190.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~306~^338.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~307~^75.^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~25043~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25043~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25043~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~417~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~432~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25043~^~601~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25045~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~25045~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~263~^24.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~268~^1629.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~25045~^~301~^250.^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25045~^~304~^190.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~305~^419.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~306~^447.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~307~^237.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~25045~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25045~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25045~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~338~^65.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~417~^35.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~431~^12.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25045~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25046~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~268~^1887.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~301~^24.^6^0.^~1~^~A~^^^1^22.^27.^5^22.^26.^~2, 3~^~04/01/2009~ -~25046~^~304~^39.^6^0.^~1~^~A~^^^1^37.^41.^5^37.^41.^~2, 3~^~04/01/2009~ -~25046~^~305~^131.^6^1.^~1~^~A~^^^1^127.^135.^5^128.^134.^~2, 3~^~04/01/2009~ -~25046~^~306~^140.^6^2.^~1~^~A~^^^1^131.^145.^5^134.^145.^~2, 3~^~04/01/2009~ -~25046~^~307~^233.^6^3.^~1~^~A~^^^1^222.^244.^5^224.^241.^~2, 3~^~04/01/2009~ -~25046~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25046~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25046~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~417~^142.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~431~^112.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~432~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~435~^220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25046~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~636~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25048~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~268~^1685.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25048~^~301~^65.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~304~^105.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~305~^290.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~306~^328.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~307~^195.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~318~^896.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25048~^~319~^266.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~320~^267.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25048~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~324~^31.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~338~^40.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~417~^127.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~431~^109.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~435~^203.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~25048~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25050~^~208~^515.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25050~^~268~^2157.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25050~^~301~^52.^4^8.^~1~^~A~^^^1^39.^75.^3^25.^77.^~2, 3~^~05/01/2009~ -~25050~^~304~^46.^4^5.^~1~^~A~^^^1^35.^56.^3^28.^63.^~2, 3~^~05/01/2009~ -~25050~^~305~^99.^4^16.^~1~^~A~^^^1^51.^125.^3^46.^150.^~2, 3~^~05/01/2009~ -~25050~^~306~^868.^4^98.^~1~^~A~^^^1^580.^1020.^3^555.^1179.^~2, 3~^~05/01/2009~ -~25050~^~307~^296.^4^52.^~1~^~A~^^^1^140.^363.^3^127.^463.^~2, 3~^~05/01/2009~ -~25051~^~208~^346.^2^^~8~^~LC~^^^1^338.^353.^^^^^~04/01/2011~ -~25051~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~268~^1446.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25051~^~301~^368.^2^^~8~^~LC~^^^1^368.^368.^^^^^~04/01/2011~ -~25051~^~304~^147.^2^^~8~^~LC~^^^1^147.^147.^^^^^~04/01/2011~ -~25051~^~305~^294.^2^^~8~^~LC~^^^1^294.^294.^^^^^~04/01/2011~ -~25051~^~306~^412.^2^^~8~^~LC~^^^1^368.^456.^^^^^~04/01/2011~ -~25051~^~307~^195.^2^^~8~^~LC~^^^1^184.^206.^^^^^~04/01/2011~ -~25051~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25051~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25051~^~321~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~417~^118.^2^^~8~^~LC~^^^1^118.^118.^^^^^~04/01/2011~ -~25051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~25051~^~432~^118.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~25051~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25051~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^^^^^~04/01/2011~ -~25052~^~208~^408.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25052~^~262~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~263~^57.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~268~^1708.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25052~^~301~^333.^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~304~^71.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~305~^152.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~306~^224.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~307~^313.^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25052~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25052~^~321~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~25052~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~338~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~25052~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25052~^~638~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~639~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~641~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25053~^~208~^487.^1^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25053~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~268~^2037.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25053~^~301~^57.^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~304~^102.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~305~^272.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~306~^390.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~307~^414.^1^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~318~^473.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~319~^142.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~320~^142.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~431~^33.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25053~^~601~^0.^1^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~25054~^~208~^423.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~268~^1768.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~301~^286.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~304~^62.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~305~^191.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~306~^168.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~307~^271.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~318~^1582.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25054~^~319~^475.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~320~^475.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25054~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~417~^126.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~431~^112.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~435~^205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25054~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25055~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~268~^1735.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25055~^~301~^116.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~304~^63.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~305~^168.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~306~^189.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~307~^185.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~25055~^~318~^1007.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~319~^302.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~320~^302.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25055~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~417~^92.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~431~^72.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25055~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~263~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~268~^2007.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~301~^65.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~304~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~305~^162.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~306~^231.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~307~^269.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~319~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~338~^43.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~636~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~639~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~641~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25059~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~268~^1607.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~301~^11.^9^1.^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~304~^131.^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~305~^360.^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~306~^290.^6^21.^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~307~^326.^6^37.^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25059~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25059~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~338~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~417~^21.^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25059~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~601~^0.^1^^~4~^^^^^^^^^^^~03/01/2013~ -~25059~^~636~^40.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~639~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~641~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~263~^87.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~268~^1955.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~301~^141.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~304~^35.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~305~^128.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~306~^199.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~307~^494.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~318~^83.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~319~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~320~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~417~^74.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~431~^58.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~268~^1601.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25062~^~301~^105.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~304~^91.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~305~^343.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~306~^446.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~307~^447.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~318~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~319~^26.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~338~^104.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~417~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~432~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25063~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~268~^2114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~301~^26.^10^2.^~1~^~A~^^^1^17.^39.^9^19.^32.^~2, 3~^~04/01/2013~ -~25063~^~304~^40.^10^0.^~1~^~A~^^^1^39.^42.^9^39.^41.^~2, 3~^~04/01/2013~ -~25063~^~305~^127.^10^1.^~1~^~A~^^^1^121.^134.^9^123.^129.^~2, 3~^~04/01/2013~ -~25063~^~306~^330.^10^4.^~1~^~A~^^^1^310.^354.^9^319.^340.^~2, 3~^~04/01/2013~ -~25063~^~307~^544.^10^22.^~1~^~A~^^^1^351.^591.^9^493.^595.^~2, 3~^~04/01/2013~ -~25063~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25063~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25063~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~417~^16.^6^0.^~1~^~A~^^^1^14.^17.^5^14.^17.^~2, 3~^~04/01/2013~ -~25063~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~432~^16.^6^0.^~1~^~A~^^^1^14.^17.^5^14.^17.^^~04/01/2013~ -~25063~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25063~^~601~^0.^0^^~4~^~BFSN~^~19410~^^^^^^^^^~05/01/2013~ -~25064~^~208~^560.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~25064~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~25064~^~268~^2341.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~301~^24.^233^0.^~6~^~JA~^^^2^11.^24.^226^22.^24.^~2, 3~^~05/01/2013~ -~25064~^~304~^62.^16^2.^~1~^~A~^^^2^45.^72.^13^57.^66.^~2, 3~^~05/01/2013~ -~25064~^~305~^148.^16^7.^~1~^~A~^^^2^101.^214.^9^130.^165.^~2, 3~^~05/01/2013~ -~25064~^~306~^1304.^16^37.^~1~^~A~^^^2^810.^1642.^11^1221.^1385.^~2, 3~^~05/01/2013~ -~25064~^~307~^187.^10^14.^~1~^~A~^^^1^133.^264.^9^154.^218.^~2, 3~^~05/01/2013~ -~25064~^~318~^0.^5^0.^~1~^^^^^^^^^^^~05/01/2013~ -~25064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~25064~^~322~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~25064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~417~^58.^7^5.^~1~^~A~^^^2^27.^75.^4^43.^72.^~2, 3~^~05/01/2013~ -~25064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~432~^58.^4^8.^~1~^~A~^^^^51.^90.^^^^^~05/01/2013~ -~25064~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~601~^0.^24^0.^~1~^^^^^^^^^^^~05/01/2013~ -~25064~^~636~^181.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~25065~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25065~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~268~^1626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25065~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25065~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~305~^21.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~306~^69.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~307~^1567.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25065~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25065~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25066~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~268~^1808.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25066~^~301~^123.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~304~^102.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~305~^270.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~306~^732.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~307~^300.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~318~^1537.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25066~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25066~^~321~^901.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~322~^42.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~338~^4930.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~417~^138.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~432~^138.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25066~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25067~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~263~^29.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~268~^1722.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25067~^~301~^322.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25067~^~304~^71.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~305~^445.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~306~^793.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~307~^436.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25067~^~318~^6720.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25067~^~319~^66.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~320~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25067~^~321~^3901.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~25067~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~338~^11713.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~417~^184.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~432~^184.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~435~^184.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25067~^~601~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~639~^12.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~641~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~263~^47.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~25068~^~268~^1736.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~301~^543.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25068~^~304~^119.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~305~^465.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~306~^678.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~307~^253.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25068~^~318~^5000.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~319~^1495.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~320~^1496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~324~^65.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~417~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~25068~^~432~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~636~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25070~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25070~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~268~^1781.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25070~^~301~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~304~^72.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~305~^191.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~306~^193.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~307~^571.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~25070~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~25070~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~25070~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~25070~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~338~^116.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~417~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~432~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25070~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~639~^40.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~641~^68.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25071~^~304~^156.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~305~^362.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~306~^243.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~307~^233.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~417~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~636~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~27000~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~268~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~301~^7.^4^1.^~1~^~A~^^^1^5.^10.^3^3.^10.^~2, 3~^~03/01/2008~ -~27000~^~304~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^1.^2.^~2, 3~^~03/01/2008~ -~27000~^~305~^15.^4^5.^~1~^~A~^^^1^7.^31.^3^-2.^32.^~2, 3~^~03/01/2008~ -~27000~^~306~^22.^4^5.^~1~^~A~^^^1^15.^37.^3^5.^38.^~2, 3~^~03/01/2008~ -~27000~^~307~^370.^4^48.^~1~^~A~^^^1^283.^504.^3^215.^523.^~2, 3~^~03/01/2008~ -~27000~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~319~^18.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~320~^20.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~321~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~324~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~27000~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~338~^48.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~601~^23.^4^4.^~1~^~A~^^^1^18.^35.^3^9.^36.^~2, 3~^~03/01/2008~ -~27001~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27001~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~268~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27001~^~301~^19.^4^2.^~1~^~A~^^^1^13.^26.^3^10.^28.^~2, 3~^~03/01/2008~ -~27001~^~304~^9.^4^1.^~1~^~A~^^^1^4.^12.^3^2.^14.^~2, 3~^~03/01/2008~ -~27001~^~305~^32.^4^5.^~1~^~A~^^^1^18.^43.^3^15.^49.^~2, 3~^~03/01/2008~ -~27001~^~306~^55.^4^7.^~1~^~A~^^^1^37.^67.^3^32.^77.^~2, 3~^~03/01/2008~ -~27001~^~307~^376.^4^17.^~1~^~A~^^^1^333.^420.^3^319.^432.^~2, 3~^~03/01/2008~ -~27001~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27001~^~319~^9.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~320~^9.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~321~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~324~^5.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~334~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~338~^22.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~417~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~432~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27001~^~601~^21.^4^5.^~1~^~A~^^^1^9.^35.^3^3.^38.^~2, 3~^~03/01/2008~ -~27002~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~301~^5.^4^0.^~1~^~A~^^^1^3.^7.^3^2.^7.^~2, 3~^~03/01/2008~ -~27002~^~304~^3.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^3.^~2, 3~^~03/01/2008~ -~27002~^~305~^18.^4^5.^~1~^~A~^^^1^9.^30.^3^2.^34.^~2, 3~^~03/01/2008~ -~27002~^~306~^32.^4^4.^~1~^~A~^^^1^25.^44.^3^17.^46.^~2, 3~^~03/01/2008~ -~27002~^~307~^406.^4^67.^~1~^~A~^^^1^308.^604.^3^189.^621.^~2, 3~^~03/01/2008~ -~27002~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~321~^6.^2^^~1~^~A~^^^1^1.^10.^1^^^^~03/01/2008~ -~27002~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2009~ -~27002~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~334~^0.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~03/01/2008~ -~27002~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2009~ -~27002~^~338~^12.^2^^~1~^~A~^^^1^3.^21.^1^^^^~03/01/2008~ -~27002~^~417~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~431~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~601~^4.^4^1.^~1~^~A~^^^1^1.^8.^3^-1.^8.^~1, 2, 3~^~03/01/2008~ -~27035~^~208~^350.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~268~^1464.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~301~^22.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~305~^117.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~306~^128.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~307~^1200.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~338~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~417~^122.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~431~^98.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~432~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~435~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~27035~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27042~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27042~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27042~^~301~^15.^12^1.^~1~^~A~^^^1^11.^20.^11^13.^17.^~4~^~02/01/2011~ -~27042~^~304~^10.^12^0.^~1~^~A~^^^1^8.^12.^11^8.^10.^~4~^~02/01/2011~ -~27042~^~305~^65.^12^7.^~1~^~A~^^^1^37.^98.^11^48.^82.^~4~^~02/01/2011~ -~27042~^~306~^175.^12^18.^~1~^~A~^^^1^100.^253.^11^134.^215.^~4~^~02/01/2011~ -~27042~^~307~^343.^12^5.^~1~^~A~^^^1^317.^387.^11^331.^353.^~4~^~02/01/2011~ -~27042~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~27042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~27042~^~321~^5.^2^^~1~^~A~^^^1^3.^8.^1^^^^~02/01/2011~ -~27042~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~02/01/2011~ -~27042~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~02/01/2011~ -~27042~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~02/01/2011~ -~27042~^~338~^20.^2^^~1~^~A~^^^1^18.^22.^1^^^^~02/01/2011~ -~27043~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~268~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~301~^14.^4^0.^~1~^~A~^^^1^12.^15.^3^11.^15.^~4~^~04/01/2011~ -~27043~^~304~^13.^4^0.^~1~^~A~^^^1^12.^13.^3^12.^13.^~4~^~04/01/2011~ -~27043~^~305~^31.^4^0.^~1~^~A~^^^1^29.^32.^3^29.^32.^~4~^~04/01/2011~ -~27043~^~306~^337.^4^8.^~1~^~A~^^^1^324.^361.^3^309.^364.^~4~^~04/01/2011~ -~27043~^~307~^194.^4^2.^~1~^~A~^^^1^187.^196.^3^186.^200.^~4~^~04/01/2011~ -~27043~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~319~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~321~^5.^2^^~1~^~A~^^^1^3.^8.^1^^^^~04/01/2011~ -~27043~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~04/01/2011~ -~27043~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~04/01/2011~ -~27043~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~04/01/2011~ -~27043~^~338~^20.^2^^~1~^~A~^^^1^18.^22.^1^^^^~04/01/2011~ -~27043~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~601~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27044~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27044~^~262~^0.^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~263~^0.^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27044~^~301~^11.^12^0.^~1~^~A~^^^1^10.^13.^11^10.^11.^~4~^~02/01/2011~ -~27044~^~304~^8.^12^0.^~1~^~A~^^^1^6.^10.^11^7.^8.^~4~^~02/01/2011~ -~27044~^~305~^42.^12^1.^~1~^~A~^^^1^38.^48.^11^39.^44.^~4~^~02/01/2011~ -~27044~^~306~^285.^12^22.^~1~^~A~^^^1^199.^376.^11^235.^334.^~4~^~02/01/2011~ -~27044~^~307~^186.^12^3.^~1~^~A~^^^1^163.^206.^11^178.^194.^~4~^~02/01/2011~ -~27044~^~318~^964.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27044~^~319~^1.^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27044~^~321~^506.^2^^~1~^~A~^^^1^306.^706.^1^^^^~01/01/2013~ -~27044~^~322~^142.^2^^~1~^~A~^^^1^66.^218.^1^^^^~01/01/2013~ -~27044~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~27044~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~01/01/2013~ -~27044~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~01/01/2013~ -~27044~^~338~^58.^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~417~^8.^2^^~1~^~A~^^^1^5.^10.^1^^^^~01/01/2013~ -~27044~^~431~^4.^2^^~1~^~A~^^^1^2.^6.^1^^^^~01/01/2013~ -~27044~^~432~^4.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~27044~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27044~^~601~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^^~01/01/2013~ -~27045~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27045~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27045~^~301~^17.^9^0.^~1~^~A~^^^1^15.^19.^8^15.^17.^~4~^~02/01/2011~ -~27045~^~304~^9.^9^0.^~1~^~A~^^^1^8.^11.^8^8.^9.^~4~^~02/01/2011~ -~27045~^~305~^43.^9^1.^~1~^~A~^^^1^37.^48.^8^40.^46.^~4~^~02/01/2011~ -~27045~^~306~^277.^9^27.^~1~^~A~^^^1^210.^401.^8^212.^341.^~4~^~02/01/2011~ -~27045~^~307~^175.^9^3.^~1~^~A~^^^1^157.^191.^8^167.^182.^~4~^~02/01/2011~ -~27046~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27046~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~268~^1026.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27046~^~301~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~305~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~306~^87.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~307~^712.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~27046~^~318~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27046~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27046~^~321~^100.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27046~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27047~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~268~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27047~^~301~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~305~^41.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~306~^259.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~307~^906.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~27047~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27047~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27047~^~321~^123.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~322~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~334~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~338~^422.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27047~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27048~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27048~^~301~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~305~^33.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~306~^312.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~307~^1647.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~318~^295.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~320~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~321~^177.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~337~^12564.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27048~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~27049~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~268~^883.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27049~^~301~^26.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~304~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~305~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~306~^68.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~307~^667.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~318~^165.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~319~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~320~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~321~^67.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~322~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~334~^35.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~338~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27049~^~601~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27050~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~268~^645.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27050~^~301~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~304~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~305~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~306~^99.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~307~^539.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~27050~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27050~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27050~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27050~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27051~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27051~^~301~^26.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~305~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~306~^309.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~307~^1262.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~27051~^~318~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27051~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27051~^~321~^212.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~322~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~337~^6753.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27051~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~301~^98.^14^9.^~1~^~A~^^^1^70.^180.^13^78.^118.^~2, 3~^~07/01/2012~ -~27052~^~304~^8.^14^0.^~1~^~A~^^^1^6.^16.^13^6.^10.^~2, 3~^~07/01/2012~ -~27052~^~305~^200.^14^30.^~1~^~A~^^^1^71.^466.^13^133.^265.^~2, 3~^~07/01/2012~ -~27052~^~306~^105.^14^11.^~1~^~A~^^^1^77.^207.^13^79.^129.^~2, 3~^~07/01/2012~ -~27052~^~307~^796.^14^35.^~1~^~A~^^^1^653.^1100.^13^718.^873.^~2, 3~^~07/01/2012~ -~27052~^~318~^287.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27052~^~319~^22.^6^2.^~1~^~A~^^^1^17.^35.^5^14.^29.^~2, 3~^~07/01/2012~ -~27052~^~320~^33.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27052~^~321~^112.^6^10.^~1~^~A~^^^1^90.^159.^5^86.^138.^~2, 3~^~07/01/2012~ -~27052~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~27052~^~334~^30.^6^4.^~1~^~A~^^^1^22.^48.^5^20.^40.^~2, 3~^~07/01/2012~ -~27052~^~337~^300.^6^32.^~1~^~A~^^^1^195.^382.^5^217.^382.^~2, 3~^~07/01/2012~ -~27052~^~338~^67.^6^8.^~1~^~A~^^^1^37.^96.^5^45.^87.^~2, 3~^~07/01/2012~ -~27052~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27052~^~601~^9.^8^1.^~1~^~A~^^^1^3.^15.^7^6.^11.^~2, 3~^~07/01/2012~ -~27054~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~268~^556.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~301~^90.^6^2.^~1~^~A~^^^1^84.^97.^5^84.^96.^~2, 3~^~07/01/2012~ -~27054~^~304~^7.^6^0.^~1~^~A~^^^1^6.^8.^5^6.^7.^~2, 3~^~07/01/2012~ -~27054~^~305~^177.^6^2.^~1~^~A~^^^1^171.^189.^5^169.^183.^~2, 3~^~07/01/2012~ -~27054~^~306~^88.^6^2.^~1~^~A~^^^1^82.^101.^5^81.^95.^~2, 3~^~07/01/2012~ -~27054~^~307~^773.^6^29.^~1~^~A~^^^1^684.^884.^5^696.^848.^~2, 3~^~07/01/2012~ -~27054~^~318~^259.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27054~^~319~^24.^2^^~1~^~A~^^^1^23.^25.^1^^^^~07/01/2012~ -~27054~^~320~^33.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27054~^~321~^95.^2^^~1~^~A~^^^1^90.^101.^1^^^^~07/01/2012~ -~27054~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~ -~27054~^~334~^25.^2^^~1~^~A~^^^1^23.^26.^1^^^^~07/01/2012~ -~27054~^~337~^332.^2^^~1~^~A~^^^1^306.^357.^1^^^^~07/01/2012~ -~27054~^~338~^59.^2^^~1~^~A~^^^1^59.^60.^1^^^^~07/01/2012~ -~27054~^~601~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^6.^10.^~2, 3~^~07/01/2012~ -~27055~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~268~^803.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~301~^11.^6^0.^~1~^~A~^^^1^10.^12.^5^10.^11.^~4~^~07/01/2012~ -~27055~^~304~^11.^6^0.^~1~^~A~^^^1^11.^11.^5^10.^11.^~4~^~07/01/2012~ -~27055~^~305~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^20.^22.^~4~^~07/01/2012~ -~27055~^~306~^235.^6^11.^~1~^~A~^^^1^208.^271.^5^206.^264.^~4~^~07/01/2012~ -~27055~^~307~^765.^6^4.^~1~^~A~^^^1^750.^777.^5^753.^776.^~4~^~07/01/2012~ -~27055~^~318~^274.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~321~^164.^3^5.^~1~^~A~^^^1^155.^175.^2^139.^189.^~4~^~07/01/2012~ -~27055~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27055~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27055~^~337~^7343.^3^133.^~1~^~A~^^^1^7130.^7589.^2^6768.^7917.^~4~^~07/01/2012~ -~27055~^~338~^129.^3^6.^~1~^~A~^^^1^120.^141.^2^103.^155.^~4~^~07/01/2012~ -~27056~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~301~^43.^6^0.^~1~^~A~^^^1^41.^45.^5^41.^44.^~4~^~07/01/2012~ -~27056~^~304~^16.^6^0.^~1~^~A~^^^1^15.^17.^5^15.^16.^~4~^~07/01/2012~ -~27056~^~305~^22.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^23.^~4~^~07/01/2012~ -~27056~^~306~^263.^6^4.^~1~^~A~^^^1^250.^280.^5^251.^273.^~4~^~07/01/2012~ -~27056~^~307~^1012.^6^30.^~1~^~A~^^^1^919.^1140.^5^932.^1090.^~4~^~07/01/2012~ -~27056~^~318~^320.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~321~^190.^3^26.^~1~^~A~^^^1^157.^243.^2^74.^305.^~4~^~07/01/2012~ -~27056~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27056~^~334~^5.^3^2.^~1~^~A~^^^1^0.^10.^2^-7.^17.^~1, 4~^~07/01/2012~ -~27056~^~337~^4573.^3^28.^~1~^~A~^^^1^4517.^4607.^2^4451.^4695.^~4~^~07/01/2012~ -~27056~^~338~^100.^3^5.^~1~^~A~^^^1^94.^110.^2^78.^122.^~4~^~07/01/2012~ -~27057~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27057~^~268~^671.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27057~^~301~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^38.^41.^~4~^~07/01/2012~ -~27057~^~304~^16.^6^0.^~1~^~A~^^^1^16.^17.^5^16.^16.^~4~^~07/01/2012~ -~27057~^~305~^24.^6^0.^~1~^~A~^^^1^22.^25.^5^22.^24.^~4~^~07/01/2012~ -~27057~^~306~^277.^6^7.^~1~^~A~^^^1^252.^296.^5^257.^295.^~4~^~07/01/2012~ -~27057~^~307~^613.^6^10.^~1~^~A~^^^1^564.^632.^5^586.^640.^~4~^~07/01/2012~ -~27057~^~318~^277.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27057~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27057~^~321~^164.^3^39.^~1~^~A~^^^1^96.^232.^2^-4.^331.^~4~^~07/01/2012~ -~27057~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27057~^~334~^5.^3^2.^~1~^~A~^^^1^0.^9.^2^-6.^16.^~1, 4~^~07/01/2012~ -~27057~^~337~^4494.^3^172.^~1~^~A~^^^1^4286.^4837.^2^3750.^5236.^~4~^~07/01/2012~ -~27057~^~338~^99.^3^5.^~1~^~A~^^^1^88.^107.^2^74.^122.^~4~^~07/01/2012~ -~27058~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27058~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27058~^~301~^20.^3^1.^~1~^~A~^^^1^18.^22.^2^15.^25.^~4~^~07/01/2012~ -~27058~^~304~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~4~^~07/01/2012~ -~27058~^~305~^17.^3^0.^~1~^~A~^^^1^16.^17.^2^15.^17.^~4~^~07/01/2012~ -~27058~^~306~^56.^3^8.^~1~^~A~^^^1^46.^73.^2^19.^92.^~4~^~07/01/2012~ -~27058~^~307~^1517.^3^28.^~1~^~A~^^^1^1460.^1550.^2^1394.^1639.^~4~^~07/01/2012~ -~27058~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27058~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27058~^~321~^17.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^24.^~4~^~07/01/2012~ -~27058~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27058~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~ -~27058~^~337~^460.^3^6.^~1~^~A~^^^1^448.^472.^2^430.^489.^~4~^~07/01/2012~ -~27058~^~338~^19.^3^0.^~1~^~A~^^^1^18.^19.^2^17.^19.^~4~^~07/01/2012~ -~27059~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~301~^22.^5^0.^~1~^~A~^^^1^21.^23.^4^21.^23.^~2, 3~^~04/01/2013~ -~27059~^~304~^45.^5^0.^~1~^~A~^^^1^43.^47.^4^43.^46.^~2, 3~^~04/01/2013~ -~27059~^~305~^107.^5^1.^~1~^~A~^^^1^103.^110.^4^103.^110.^~2, 3~^~04/01/2013~ -~27059~^~306~^235.^5^4.^~1~^~A~^^^1^217.^242.^4^222.^247.^~2, 3~^~04/01/2013~ -~27059~^~307~^1338.^5^12.^~1~^~A~^^^1^1300.^1370.^4^1302.^1373.^~2, 3~^~04/01/2013~ -~27059~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~417~^22.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^23.^~2, 3~^~04/01/2013~ -~27059~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~432~^22.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^23.^^~04/01/2013~ -~27059~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27060~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~27060~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~27060~^~301~^25.^2^^~1~^~A~^^^1^21.^30.^1^^^^~02/01/2013~ -~27060~^~304~^12.^2^^~1~^~A~^^^1^11.^12.^1^^^^~02/01/2013~ -~27060~^~305~^28.^2^^~1~^~A~^^^1^26.^30.^1^^^^~02/01/2013~ -~27060~^~306~^349.^2^^~1~^~A~^^^1^334.^364.^1^^^^~02/01/2013~ -~27060~^~307~^138.^2^^~1~^~A~^^^1^127.^148.^1^^^^~02/01/2013~ -~27060~^~318~^1122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27060~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27060~^~321~^572.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~322~^195.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~337~^659.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~338~^116.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27060~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27061~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~268~^192.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~301~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~02/01/2015~ -~27061~^~304~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^3.^~2, 3~^~02/01/2015~ -~27061~^~305~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^22.^~2, 3~^~02/01/2015~ -~27061~^~306~^35.^6^1.^~1~^~A~^^^1^30.^39.^5^31.^38.^~2, 3~^~02/01/2015~ -~27061~^~307~^372.^6^2.^~1~^~A~^^^1^360.^380.^5^364.^379.^~2, 3~^~02/01/2015~ -~27061~^~601~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^3.^~2, 3~^~02/01/2015~ -~27062~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~268~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~301~^11.^11^0.^~1~^~A~^^^1^9.^14.^10^10.^12.^~2, 3~^~04/01/2015~ -~27062~^~304~^9.^11^0.^~1~^~A~^^^1^8.^11.^10^8.^9.^~2, 3~^~04/01/2015~ -~27062~^~305~^50.^11^2.^~1~^~A~^^^1^39.^61.^10^45.^54.^~2, 3~^~04/01/2015~ -~27062~^~306~^121.^11^3.^~1~^~A~^^^1^100.^136.^10^111.^129.^~2, 3~^~04/01/2015~ -~27062~^~307~^297.^11^4.^~1~^~A~^^^1^270.^320.^10^286.^307.^~2, 3~^~04/01/2015~ -~27062~^~318~^279.^2^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~27062~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~ -~27062~^~320~^14.^2^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~27062~^~321~^139.^2^^~1~^~A~^^^1^81.^196.^1^^^^~04/01/2015~ -~27062~^~322~^58.^2^^~1~^~A~^^^1^27.^89.^1^^^^~04/01/2015~ -~27062~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~ -~27062~^~337~^357.^2^^~1~^~A~^^^1^229.^485.^1^^^^~04/01/2015~ -~27062~^~338~^56.^2^^~1~^~A~^^^1^49.^63.^1^^^^~04/01/2015~ -~27062~^~417~^11.^3^0.^~1~^~A~^^^1^9.^12.^2^7.^14.^~2, 3~^~04/01/2015~ -~27062~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~432~^11.^3^0.^~1~^~A~^^^1^9.^12.^2^7.^14.^^~04/01/2015~ -~27062~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~601~^4.^3^0.^~1~^~A~^^^1^3.^4.^2^2.^5.^~2, 3~^~04/01/2015~ -~27063~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~268~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~301~^7.^12^0.^~1~^~A~^^^1^5.^20.^8^5.^7.^~2, 3~^~04/01/2015~ -~27063~^~304~^6.^12^0.^~1~^~A~^^^1^5.^12.^6^5.^7.^~2, 3~^~04/01/2015~ -~27063~^~305~^11.^12^0.^~1~^~A~^^^1^7.^20.^5^9.^12.^~2, 3~^~04/01/2015~ -~27063~^~306~^101.^12^4.^~1~^~A~^^^1^65.^172.^7^89.^111.^~2, 3~^~04/01/2015~ -~27063~^~307~^547.^12^16.^~1~^~A~^^^1^390.^671.^2^466.^627.^~2, 3~^~04/01/2015~ -~27063~^~318~^717.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~321~^362.^6^53.^~1~^~A~^^^1^143.^1155.^1^-258.^983.^~2, 3~^~04/01/2015~ -~27063~^~322~^74.^6^11.^~1~^~A~^^^1^0.^248.^1^-60.^208.^~1, 2, 3~^~04/01/2015~ -~27063~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~334~^62.^6^10.^~1~^~A~^^^1^18.^203.^1^-66.^190.^~2, 3~^~04/01/2015~ -~27063~^~337~^994.^6^59.^~1~^~A~^^^1^32.^1334.^2^684.^1302.^~2, 3~^~04/01/2015~ -~27063~^~338~^103.^6^15.^~1~^~A~^^^1^42.^320.^1^-78.^284.^~2, 3~^~04/01/2015~ -~27063~^~417~^5.^6^0.^~1~^~A~^^^1^4.^8.^1^2.^6.^~1, 2, 3~^~04/01/2015~ -~27063~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~432~^5.^6^0.^~1~^~A~^^^1^4.^8.^1^2.^6.^^~04/01/2015~ -~27063~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27064~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~268~^1220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~301~^41.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~305~^26.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~306~^182.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~307~^3390.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~27064~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~338~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~301~^26.^3^0.^~1~^~A~^^^1^25.^27.^2^24.^28.^~2, 3~^~06/01/2015~ -~27065~^~304~^40.^3^0.^~1~^~A~^^^1^39.^41.^2^38.^42.^~2, 3~^~06/01/2015~ -~27065~^~305~^105.^3^1.^~1~^~A~^^^1^102.^106.^2^98.^110.^~2, 3~^~06/01/2015~ -~27065~^~306~^368.^3^4.^~1~^~A~^^^1^362.^377.^2^347.^387.^~2, 3~^~06/01/2015~ -~27065~^~307~^443.^3^4.^~1~^~A~^^^1^435.^447.^2^425.^460.^~2, 3~^~06/01/2015~ -~27065~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~417~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^22.^~2, 3~^~06/01/2015~ -~27065~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~432~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^22.^^~06/01/2015~ -~27065~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~268~^2103.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~301~^12.^4^4.^~1~^~A~^^^1^5.^20.^3^-1.^26.^~2, 3~^~06/01/2015~ -~27066~^~304~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^15.^~2, 3~^~06/01/2015~ -~27066~^~305~^19.^4^3.^~1~^~A~^^^1^13.^26.^3^7.^30.^~2, 3~^~06/01/2015~ -~27066~^~306~^44.^4^17.^~1~^~A~^^^1^15.^77.^3^-9.^98.^~2, 3~^~06/01/2015~ -~27066~^~307~^730.^4^3.^~1~^~A~^^^1^724.^739.^3^718.^740.^~2, 3~^~06/01/2015~ -~27066~^~318~^66.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~324~^10.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~338~^51.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~06/01/2015~ -~27066~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~601~^50.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27068~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~301~^26.^3^0.^~1~^~A~^^^1^25.^27.^2^24.^28.^~2, 3~^~06/01/2015~ -~27068~^~304~^40.^3^0.^~1~^~A~^^^1^39.^41.^2^38.^42.^~2, 3~^~06/01/2015~ -~27068~^~305~^105.^3^1.^~1~^~A~^^^1^102.^106.^2^98.^110.^~2, 3~^~06/01/2015~ -~27068~^~306~^368.^3^4.^~1~^~A~^^^1^362.^377.^2^347.^387.^~2, 3~^~06/01/2015~ -~27068~^~307~^443.^3^4.^~1~^~A~^^^1^435.^447.^2^425.^460.^~2, 3~^~06/01/2015~ -~27068~^~417~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^22.^~2, 3~^~06/01/2015~ -~27068~^~432~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^22.^^~06/01/2015~ -~28285~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~262~^0.^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~263~^0.^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~301~^36.^3^^~1~^~A~^^^1^18.^65.^^^^~2, 3~^~04/01/2013~ -~28285~^~304~^56.^3^^~1~^~A~^^^1^39.^84.^^^^~2, 3~^~04/01/2013~ -~28285~^~305~^158.^3^^~1~^~A~^^^1^119.^237.^^^^~2, 3~^~04/01/2013~ -~28285~^~306~^196.^3^^~1~^~A~^^^1^140.^276.^^^^~2, 3~^~04/01/2013~ -~28285~^~307~^298.^0^^~1~^~A~^^^^^^^^^^~11/01/2013~ -~28285~^~318~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~319~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~320~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~321~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~322~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~324~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~334~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~337~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~338~^11.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~417~^45.^2^^~1~^~A~^^^1^14.^77.^^^^^~04/01/2013~ -~28285~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~28285~^~432~^45.^2^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~601~^0.^0^^~4~^~BFFN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~262~^0.^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~263~^0.^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~268~^1362.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~301~^25.^2^^~1~^~A~^^^1^22.^28.^^^^^~04/01/2013~ -~28286~^~304~^37.^2^^~1~^~A~^^^1^16.^58.^^^^^~04/01/2013~ -~28286~^~305~^120.^2^^~1~^~A~^^^1^92.^148.^^^^^~04/01/2013~ -~28286~^~306~^139.^2^^~1~^~A~^^^1^84.^193.^^^^^~04/01/2013~ -~28286~^~307~^452.^2^^~1~^~A~^^^1^451.^452.^^^^^~04/01/2013~ -~28286~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~319~^2.^2^^~1~^~A~^^^1^0.^3.^^^^~1~^~04/01/2013~ -~28286~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~321~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~322~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~324~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~334~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~337~^0.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~338~^12.^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~417~^10.^2^^~1~^~A~^^^1^4.^15.^^^^~1~^~04/01/2013~ -~28286~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~28286~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~28286~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~601~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~262~^0.^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~263~^0.^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~268~^1196.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~301~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~304~^68.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~305~^188.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~306~^185.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~307~^467.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~319~^2.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~320~^2.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~321~^0.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~322~^0.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~324~^0.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~334~^0.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~337~^0.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~338~^11.^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~417~^16.^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~431~^0.^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~28287~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~601~^1.^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28288~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~262~^0.^0^^~4~^~BFNN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~263~^0.^0^^~4~^~BFNN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~268~^1330.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~301~^41.^2^^~1~^~A~^^^1^39.^43.^^^^^~04/01/2013~ -~28288~^~304~^30.^2^^~1~^~A~^^^1^28.^32.^^^^^~04/01/2013~ -~28288~^~305~^111.^2^^~1~^~A~^^^1^108.^114.^^^^^~04/01/2013~ -~28288~^~306~^131.^2^^~1~^~A~^^^1^112.^149.^^^^^~04/01/2013~ -~28288~^~307~^506.^2^^~1~^~A~^^^1^465.^546.^^^^^~04/01/2013~ -~28288~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~319~^1.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~320~^1.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~321~^0.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~322~^0.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~324~^0.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~334~^0.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~337~^0.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~338~^14.^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~417~^127.^2^^~1~^~A~^^^1^123.^131.^^^^^~04/01/2013~ -~28288~^~431~^70.^0^^~4~^~BFPN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~432~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~601~^1.^2^^~1~^~A~^^^1^1.^2.^^^^~1~^~04/01/2013~ -~28289~^~208~^489.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~262~^18.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~263~^157.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~268~^2046.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~301~^40.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~304~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~305~^76.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~306~^195.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~307~^182.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~318~^25.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~320~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~417~^28.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~431~^20.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28289~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28289~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~208~^562.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28290~^~262~^21.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~263~^186.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~268~^2350.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28290~^~301~^35.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~304~^17.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~305~^37.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~306~^217.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~307~^371.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28290~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~417~^63.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~431~^16.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~432~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28290~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28290~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~268~^2131.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~305~^5.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~306~^96.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~307~^257.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~417~^59.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~431~^50.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~208~^482.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~268~^2018.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~301~^14.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~304~^29.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~305~^292.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~306~^171.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~307~^883.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~338~^73.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~417~^103.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~431~^57.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~432~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28293~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~263~^237.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~268~^2105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~301~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~305~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~306~^234.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~307~^301.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28293~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~324~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~417~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~431~^33.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~432~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~208~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~262~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~263~^159.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~268~^2122.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~301~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~304~^25.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~305~^75.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~306~^95.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~307~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~417~^58.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28295~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~268~^1299.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~301~^244.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~304~^85.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~305~^346.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~306~^262.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~307~^617.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28295~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~338~^130.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~417~^138.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~432~^138.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28296~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~263~^132.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~268~^1712.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28296~^~301~^149.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~304~^34.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~305~^146.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~306~^193.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~307~^483.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~28296~^~319~^1.^0^^~4~^~BFFN~^~18127~^^^^^^^^^~02/01/2013~ -~28296~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28296~^~321~^0.^0^^~4~^~BFFN~^~18127~^^^^^^^^^~02/01/2013~ -~28296~^~322~^0.^0^^~4~^~BFFN~^~18127~^^^^^^^^^~02/01/2013~ -~28296~^~324~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~334~^0.^0^^~4~^~BFFN~^~18127~^^^^^^^^^~02/01/2013~ -~28296~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~338~^3.^0^^~4~^~BFFN~^~18127~^^^^^^^^^~02/01/2013~ -~28296~^~417~^69.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~431~^51.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28296~^~601~^93.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~28297~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~268~^1725.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~28297~^~301~^223.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~305~^98.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~306~^73.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~307~^316.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28297~^~319~^5.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~320~^5.^0^^~4~^~NC~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~321~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~322~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~324~^10.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~334~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~338~^9.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~28297~^~417~^75.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~431~^57.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~28297~^~601~^93.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28298~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~263~^97.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~268~^1441.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28298~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~304~^31.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~305~^59.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~306~^143.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~307~^290.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~417~^42.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~431~^34.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28298~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28298~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~208~^436.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~263~^95.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~268~^1822.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28299~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~305~^66.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~306~^176.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~307~^471.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28299~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28299~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~338~^30.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~417~^68.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~431~^56.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~268~^1663.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~304~^35.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~305~^94.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~306~^136.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~307~^500.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28300~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~417~^38.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~431~^25.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~432~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~208~^523.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28301~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~268~^2187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28301~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~304~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~305~^132.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~306~^202.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~307~^448.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~338~^31.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~417~^83.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~431~^48.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~432~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28301~^~435~^117.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28301~^~601~^17.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~301~^429.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~304~^56.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~305~^163.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~306~^171.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~307~^629.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~338~^105.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~417~^80.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~431~^54.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~432~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28303~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~268~^1724.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28303~^~301~^128.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~304~^68.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~305~^264.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~306~^212.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~307~^706.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28303~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28303~^~319~^8.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~320~^12.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~321~^44.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~322~^0.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~334~^12.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~338~^24.^0^^~4~^~BFFN~^~18214~^^^^^^^^^~02/01/2013~ -~28303~^~417~^103.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~431~^62.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~432~^41.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~28303~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28303~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28304~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28304~^~301~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~304~^65.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~305~^286.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~306~^164.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~307~^557.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~318~^519.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~28304~^~319~^155.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~05/01/2013~ -~28304~^~320~^155.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~05/01/2013~ -~28304~^~321~^1.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~02/01/2013~ -~28304~^~322~^0.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~02/01/2013~ -~28304~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~334~^1.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~02/01/2013~ -~28304~^~337~^0.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~02/01/2013~ -~28304~^~338~^24.^0^^~4~^~BFFN~^~18932~^^^^^^^^^~02/01/2013~ -~28304~^~417~^57.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~431~^44.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~432~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28304~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28304~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28305~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~268~^1127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~301~^57.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~304~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~305~^190.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~306~^97.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~307~^429.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~338~^66.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~417~^112.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~431~^92.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~601~^24.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28306~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~301~^93.^2^^~1~^~A~^^^1^51.^136.^^^^^~04/01/2013~ -~28306~^~304~^62.^2^^~1~^~A~^^^1^47.^76.^^^^^~04/01/2013~ -~28306~^~305~^184.^2^^~1~^~A~^^^1^147.^220.^^^^^~04/01/2013~ -~28306~^~306~^266.^2^^~1~^~A~^^^1^266.^266.^^^^^~04/01/2013~ -~28306~^~307~^409.^2^^~1~^~A~^^^1^360.^457.^^^^^~04/01/2013~ -~28306~^~417~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~432~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~268~^1218.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~301~^84.^2^^~1~^~A~^^^1^55.^114.^^^^^~04/01/2013~ -~28307~^~304~^27.^2^^~1~^~A~^^^1^25.^30.^^^^^~04/01/2013~ -~28307~^~305~^100.^2^^~1~^~A~^^^1^99.^101.^^^^^~04/01/2013~ -~28307~^~306~^125.^2^^~1~^~A~^^^1^122.^128.^^^^^~04/01/2013~ -~28307~^~307~^465.^2^^~1~^~A~^^^1^443.^487.^^^^^~04/01/2013~ -~28307~^~417~^102.^2^^~1~^~A~^^^1^75.^129.^^^^^~04/01/2013~ -~28307~^~432~^102.^2^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28308~^~208~^463.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~262~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~263~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~268~^1938.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~301~^167.^5^0.^~1~^~A~^^^1^165.^169.^4^164.^169.^~2, 3~^~05/01/2014~ -~28308~^~304~^47.^5^0.^~1~^~A~^^^1^46.^49.^4^45.^48.^~2, 3~^~05/01/2014~ -~28308~^~305~^356.^5^2.^~1~^~A~^^^1^350.^365.^4^348.^362.^~2, 3~^~05/01/2014~ -~28308~^~306~^209.^5^6.^~1~^~A~^^^1^197.^233.^4^190.^227.^~2, 3~^~05/01/2014~ -~28308~^~307~^748.^5^55.^~1~^~A~^^^1^636.^938.^4^593.^902.^~2, 3~^~05/01/2014~ -~28308~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~28308~^~319~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~320~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~321~^4.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~322~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~324~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~334~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~337~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~338~^180.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~417~^58.^3^5.^~1~^~A~^^^1^48.^66.^2^34.^81.^~2, 3~^~05/01/2014~ -~28308~^~431~^22.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~28308~^~432~^36.^0^^~4~^~BFPN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~28308~^~601~^0.^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28309~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~268~^1924.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~301~^5.^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~304~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~305~^68.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~306~^123.^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~307~^241.^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28310~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~268~^1889.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~301~^13.^12^0.^~1~^~A~^^^1^11.^16.^8^12.^13.^~2, 3~^~06/01/2015~ -~28310~^~304~^14.^12^0.^~1~^~A~^^^1^13.^15.^10^14.^14.^~2, 3~^~06/01/2015~ -~28310~^~305~^66.^12^0.^~1~^~A~^^^1^64.^69.^8^65.^66.^~2, 3~^~06/01/2015~ -~28310~^~306~^88.^12^1.^~1~^~A~^^^1^80.^98.^10^85.^90.^~2, 3~^~06/01/2015~ -~28310~^~307~^571.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~338~^24.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~417~^81.^6^8.^~1~^~A~^^^1^54.^106.^2^48.^114.^~2, 3~^~06/01/2015~ -~28310~^~431~^45.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~432~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~262~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~263~^178.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~268~^2201.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~305~^117.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~306~^311.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~307~^138.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~417~^15.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~431~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28312~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~262~^0.^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~263~^0.^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~268~^1123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~301~^196.^11^20.^~1~^~A~^^^1^66.^303.^9^150.^242.^~2, 3~^~06/01/2015~ -~28312~^~304~^47.^11^2.^~1~^~A~^^^1^19.^72.^9^40.^53.^~2, 3~^~06/01/2015~ -~28312~^~305~^154.^11^7.^~1~^~A~^^^1^116.^201.^9^136.^171.^~2, 3~^~06/01/2015~ -~28312~^~306~^181.^11^6.^~1~^~A~^^^1^133.^220.^9^166.^196.^~2, 3~^~06/01/2015~ -~28312~^~307~^463.^11^12.^~1~^~A~^^^1^394.^521.^8^434.^492.^~2, 3~^~06/01/2015~ -~28312~^~318~^99.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~319~^27.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~320~^27.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~321~^6.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~322~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~324~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~334~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~337~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~338~^6.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~417~^84.^8^3.^~1~^~A~^^^1^46.^105.^6^74.^93.^~2, 3~^~06/01/2015~ -~28312~^~431~^53.^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~432~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~601~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~262~^0.^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~263~^0.^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~268~^1124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~301~^198.^11^2.^~1~^~A~^^^1^117.^223.^9^191.^204.^~2, 3~^~06/01/2015~ -~28313~^~304~^81.^11^1.^~1~^~A~^^^1^62.^97.^9^77.^83.^~2, 3~^~06/01/2015~ -~28313~^~305~^217.^11^1.^~1~^~A~^^^1^195.^236.^9^213.^220.^~2, 3~^~06/01/2015~ -~28313~^~306~^242.^11^3.^~1~^~A~^^^1^222.^301.^9^235.^249.^~2, 3~^~06/01/2015~ -~28313~^~307~^477.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28313~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~319~^32.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~320~^33.^0^^~4~^~NC~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~321~^8.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~322~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~324~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~334~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~337~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~338~^7.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~417~^42.^6^6.^~1~^~A~^^^1^33.^72.^5^26.^58.^~2, 3~^~06/01/2015~ -~28313~^~431~^0.^0^^~4~^~BFZN~^~18075~^^^^^^^^^~06/01/2015~ -~28313~^~432~^42.^0^^~4~^~BFZN~^~18075~^^^^^^^^^~06/01/2015~ -~28313~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~601~^0.^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28314~^~208~^437.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28314~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~268~^1830.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28314~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~304~^30.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~305~^97.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~306~^122.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~307~^639.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~417~^111.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~431~^86.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~432~^26.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28314~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28315~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~268~^1060.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~305~^57.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~306~^74.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~307~^388.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~334~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~338~^26.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~417~^56.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~431~^36.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~432~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~268~^787.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~304~^66.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~305~^176.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~306~^198.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~307~^474.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~338~^104.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~28316~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~28316~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28317~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28317~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28317~^~301~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~304~^71.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~305~^192.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~306~^215.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~307~^515.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~338~^107.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28317~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28318~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~268~^1000.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~301~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~304~^52.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~305~^159.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~306~^163.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~307~^375.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~338~^97.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~417~^96.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~431~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~432~^46.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~301~^93.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~304~^41.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~305~^144.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~306~^176.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~307~^372.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~338~^75.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~417~^140.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~431~^56.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~432~^83.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~435~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28320~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~268~^1023.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28320~^~301~^140.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~304~^33.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~305~^127.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~306~^130.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~307~^386.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28320~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~338~^67.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~417~^70.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28320~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28321~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~268~^1065.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~301~^233.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~304~^38.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~305~^153.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~306~^190.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~307~^512.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~338~^52.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~417~^140.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~431~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~432~^106.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~268~^1007.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~301~^124.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~304~^85.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~305~^188.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~306~^204.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~307~^359.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~338~^80.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~417~^81.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~431~^48.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~432~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~601~^6.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28324~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~268~^1466.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~301~^158.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~304~^84.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~305~^789.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~306~^368.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~307~^1632.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~338~^108.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~417~^84.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~431~^59.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~432~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~208~^442.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~268~^1848.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~304~^102.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~305~^266.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~306~^306.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~307~^177.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~338~^164.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~417~^33.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~432~^33.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~268~^1947.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~301~^33.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~305~^256.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~306~^330.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~307~^635.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~318~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~338~^79.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~417~^74.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~431~^34.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~432~^40.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~268~^1607.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~305~^100.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~306~^99.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~432~^24.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~208~^425.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~263~^61.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~268~^1777.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~305~^59.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~306~^94.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~307~^279.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~417~^56.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~431~^46.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~432~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~263~^61.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~268~^1842.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~301~^32.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~304~^38.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~305~^96.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~306~^227.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~307~^210.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28329~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28329~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~431~^18.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~208~^435.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~263~^204.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~268~^1819.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~305~^98.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~306~^227.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~307~^341.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~319~^40.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~321~^32.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~324~^36.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~417~^36.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~431~^32.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28331~^~208~^463.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~268~^1936.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~301~^83.^19^1.^~1~^~A~^^^1^40.^123.^2^74.^91.^~2, 3~^~06/01/2015~ -~28331~^~304~^25.^19^0.^~1~^~A~^^^1^22.^30.^3^23.^26.^~2, 3~^~06/01/2015~ -~28331~^~305~^167.^19^2.^~1~^~A~^^^1^109.^209.^2^157.^176.^~2, 3~^~06/01/2015~ -~28331~^~306~^224.^19^2.^~1~^~A~^^^1^160.^337.^5^216.^230.^~2, 3~^~06/01/2015~ -~28331~^~307~^970.^19^15.^~1~^~A~^^^1^714.^1250.^7^933.^1005.^~2, 3~^~06/01/2015~ -~28331~^~417~^153.^3^13.^~1~^~A~^^^1^130.^175.^2^97.^209.^~2, 3~^~06/01/2015~ -~28332~^~208~^474.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~262~^6.^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~263~^188.^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~268~^1983.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~301~^19.^3^0.^~1~^~A~^^^1^18.^20.^2^16.^21.^~2, 3~^~06/01/2015~ -~28332~^~304~^40.^3^0.^~1~^~A~^^^1^40.^41.^2^39.^41.^~2, 3~^~06/01/2015~ -~28332~^~305~^70.^3^0.^~1~^~A~^^^1^70.^71.^2^67.^72.^~2, 3~^~06/01/2015~ -~28332~^~306~^157.^3^3.^~1~^~A~^^^1^150.^161.^2^142.^171.^~2, 3~^~06/01/2015~ -~28332~^~307~^275.^3^5.^~1~^~A~^^^1^268.^286.^2^250.^299.^~2, 3~^~06/01/2015~ -~28332~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~319~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~320~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~321~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~322~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~324~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~334~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~337~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~338~^3.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28332~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28332~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~601~^0.^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28333~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~268~^2265.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~301~^109.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~304~^41.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~305~^144.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~306~^340.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~307~^122.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~208~^515.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~268~^2156.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~301~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^7.^10.^~2, 3~^~06/01/2015~ -~28334~^~304~^3.^3^0.^~1~^~A~^^^1^3.^4.^2^3.^3.^~2, 3~^~06/01/2015~ -~28334~^~305~^39.^3^0.^~1~^~A~^^^1^37.^40.^2^35.^41.^~2, 3~^~06/01/2015~ -~28334~^~306~^36.^3^1.^~1~^~A~^^^1^35.^39.^2^31.^41.^~2, 3~^~06/01/2015~ -~28334~^~307~^111.^3^1.^~1~^~A~^^^1^108.^114.^2^103.^118.^~2, 3~^~06/01/2015~ -~28334~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28335~^~208~^493.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~268~^2064.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~301~^14.^2^^~1~^~A~^^^1^11.^17.^1^^^^~06/01/2015~ -~28335~^~304~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~06/01/2015~ -~28335~^~305~^39.^2^^~1~^~A~^^^1^32.^47.^1^^^^~06/01/2015~ -~28335~^~306~^105.^2^^~1~^~A~^^^1^67.^144.^1^^^^~06/01/2015~ -~28335~^~307~^201.^2^^~1~^~A~^^^1^189.^212.^1^^^^~06/01/2015~ -~28336~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~268~^1339.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~301~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~305~^37.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~306~^92.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~307~^528.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28337~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~268~^1036.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~301~^138.^3^20.^~1~^~A~^^^1^97.^161.^2^48.^227.^~2, 3~^~06/01/2015~ -~28337~^~304~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~06/01/2015~ -~28337~^~305~^51.^3^3.^~1~^~A~^^^1^44.^55.^2^35.^67.^~2, 3~^~06/01/2015~ -~28337~^~306~^75.^3^9.^~1~^~A~^^^1^61.^93.^2^34.^116.^~2, 3~^~06/01/2015~ -~28337~^~307~^447.^3^10.^~1~^~A~^^^1^427.^461.^2^402.^491.^~2, 3~^~06/01/2015~ -~28337~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~324~^0.^0^^~4~^~BFFN~^~18069~^^^^^^^^^~06/01/2015~ -~28337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~417~^36.^2^^~1~^~A~^^^1^15.^57.^1^^^^~06/01/2015~ -~28337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28337~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28338~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~301~^59.^3^0.^~1~^~A~^^^1^58.^59.^2^57.^60.^~2, 3~^~06/01/2015~ -~28338~^~304~^25.^3^1.^~1~^~A~^^^1^23.^27.^2^19.^29.^~2, 3~^~06/01/2015~ -~28338~^~305~^70.^3^1.^~1~^~A~^^^1^68.^73.^2^62.^76.^~2, 3~^~06/01/2015~ -~28338~^~306~^107.^3^4.^~1~^~A~^^^1^100.^116.^2^85.^127.^~2, 3~^~06/01/2015~ -~28338~^~307~^515.^3^14.^~1~^~A~^^^1^486.^535.^2^451.^578.^~2, 3~^~06/01/2015~ -~28338~^~417~^19.^2^^~1~^~A~^^^1^17.^22.^1^^^^~06/01/2015~ -~28338~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~268~^1295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~301~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~305~^77.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~306~^123.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~307~^510.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28340~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28340~^~301~^82.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~304~^44.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~305~^126.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~306~^161.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~307~^707.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~262~^0.^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~263~^0.^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~268~^1000.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~301~^180.^2^^~1~^~A~^^^1^174.^185.^1^^^^~06/01/2015~ -~28341~^~304~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~06/01/2015~ -~28341~^~305~^50.^2^^~1~^~A~^^^1^50.^50.^1^^^^~06/01/2015~ -~28341~^~306~^76.^2^^~1~^~A~^^^1^75.^76.^1^^^^~06/01/2015~ -~28341~^~307~^593.^2^^~1~^~A~^^^1^572.^614.^1^^^^~06/01/2015~ -~28341~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~319~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~320~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~321~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~322~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~324~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~334~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~337~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~338~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~431~^0.^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~601~^0.^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28342~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28342~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28342~^~301~^41.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~305~^128.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~306~^165.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~307~^544.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~417~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~432~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28343~^~268~^1376.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28343~^~301~^118.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~304~^96.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~305~^233.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~306~^273.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~307~^507.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~268~^1910.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~301~^28.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~305~^57.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~306~^86.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~307~^890.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~208~^453.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~262~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~263~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~268~^1894.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~301~^238.^5^5.^~1~^~A~^^^1^57.^254.^1^171.^303.^~2, 3~^~06/01/2015~ -~28345~^~304~^164.^5^1.^~1~^~A~^^^1^94.^198.^1^143.^183.^~2, 3~^~06/01/2015~ -~28345~^~305~^374.^5^4.^~1~^~A~^^^1^269.^422.^1^314.^434.^~2, 3~^~06/01/2015~ -~28345~^~306~^381.^5^5.^~1~^~A~^^^1^255.^477.^1^316.^445.^~2, 3~^~06/01/2015~ -~28345~^~307~^438.^5^4.^~1~^~A~^^^1^303.^730.^1^407.^469.^~2, 3~^~06/01/2015~ -~28345~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~319~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~320~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~321~^4.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~322~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~324~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~334~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~337~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~338~^174.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~417~^35.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28345~^~432~^35.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~601~^0.^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28346~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~262~^0.^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~263~^0.^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~268~^1099.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~301~^40.^5^6.^~1~^~A~^^^1^13.^48.^4^21.^58.^~2, 3~^~06/01/2015~ -~28346~^~304~^31.^5^1.^~1~^~A~^^^1^28.^35.^4^28.^34.^~2, 3~^~06/01/2015~ -~28346~^~305~^359.^5^12.^~1~^~A~^^^1^341.^407.^4^324.^392.^~2, 3~^~06/01/2015~ -~28346~^~306~^124.^5^5.^~1~^~A~^^^1^114.^140.^4^109.^137.^~2, 3~^~06/01/2015~ -~28346~^~307~^505.^5^3.^~1~^~A~^^^1^492.^511.^4^495.^515.^~2, 3~^~06/01/2015~ -~28346~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28346~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~321~^1.^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~322~^0.^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28346~^~334~^1.^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~337~^0.^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~338~^44.^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28346~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28346~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28347~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~262~^0.^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~263~^0.^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~301~^39.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~305~^306.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~307~^331.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~321~^1.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~322~^0.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~324~^0.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~334~^0.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~337~^0.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~338~^39.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28347~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~601~^12.^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28348~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~262~^0.^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~263~^0.^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~268~^1342.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~301~^62.^6^3.^~1~^~A~^^^1^51.^69.^5^53.^70.^~2, 3~^~06/01/2015~ -~28348~^~304~^24.^6^0.^~1~^~A~^^^1^24.^25.^5^23.^25.^~2, 3~^~06/01/2015~ -~28348~^~305~^127.^6^2.^~1~^~A~^^^1^119.^135.^5^119.^134.^~2, 3~^~06/01/2015~ -~28348~^~306~^149.^6^2.^~1~^~A~^^^1^140.^157.^5^142.^156.^~2, 3~^~06/01/2015~ -~28348~^~307~^253.^6^2.^~1~^~A~^^^1^247.^262.^5^246.^259.^~2, 3~^~06/01/2015~ -~28348~^~318~^135.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~319~^40.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~28348~^~321~^0.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~322~^0.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~324~^0.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~334~^0.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~337~^0.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~338~^15.^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~417~^91.^3^3.^~1~^~A~^^^1^85.^98.^2^74.^107.^~2, 3~^~06/01/2015~ -~28348~^~431~^51.^0^^~4~^~BFNN~^~18347~^^^^^^^^^~06/01/2015~ -~28348~^~432~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28349~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~268~^1527.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~304~^32.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~305~^92.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~306~^274.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~307~^562.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~318~^402.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~319~^86.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~320~^92.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~321~^68.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~417~^54.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~431~^32.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~601~^20.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~208~^447.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~263~^64.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~268~^1870.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~301~^50.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~304~^36.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~305~^184.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~306~^181.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~307~^213.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~268~^1697.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~304~^28.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~305~^193.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~306~^307.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~307~^370.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~417~^118.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~431~^98.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~435~^186.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~268~^1770.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~301~^42.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~304~^12.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~305~^60.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~306~^104.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~307~^354.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~338~^40.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~417~^93.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~431~^78.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28354~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28354~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28354~^~301~^41.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~305~^128.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~306~^165.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~307~^544.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~417~^31.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~432~^31.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~268~^1906.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~301~^246.^2^^~1~^~A~^^^1^238.^254.^1^^^^~07/01/2015~ -~28355~^~304~^149.^2^^~1~^~A~^^^1^146.^151.^1^^^^~07/01/2015~ -~28355~^~305~^354.^2^^~1~^~A~^^^1^347.^361.^1^^^^~07/01/2015~ -~28355~^~306~^339.^2^^~1~^~A~^^^1^331.^346.^1^^^^~07/01/2015~ -~28355~^~307~^370.^2^^~1~^~A~^^^1^363.^376.^1^^^^~07/01/2015~ -~28355~^~417~^35.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~432~^35.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28356~^~208~^474.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~268~^1983.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~301~^19.^3^0.^~1~^~A~^^^1^18.^20.^2^16.^21.^~2, 3~^~07/01/2015~ -~28356~^~304~^40.^3^0.^~1~^~A~^^^1^40.^41.^2^39.^41.^~2, 3~^~07/01/2015~ -~28356~^~305~^70.^3^0.^~1~^~A~^^^1^70.^71.^2^67.^72.^~2, 3~^~07/01/2015~ -~28356~^~306~^157.^3^3.^~1~^~A~^^^1^150.^161.^2^142.^171.^~2, 3~^~07/01/2015~ -~28356~^~307~^275.^3^5.^~1~^~A~^^^1^268.^286.^2^250.^299.^~2, 3~^~07/01/2015~ -~28356~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28356~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~268~^2039.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~305~^32.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~306~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~307~^189.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~208~^515.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~268~^2156.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~301~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^7.^10.^~2, 3~^~07/01/2015~ -~28358~^~304~^3.^3^0.^~1~^~A~^^^1^3.^4.^2^3.^3.^~2, 3~^~07/01/2015~ -~28358~^~305~^39.^3^0.^~1~^~A~^^^1^37.^40.^2^35.^41.^~2, 3~^~07/01/2015~ -~28358~^~306~^36.^3^1.^~1~^~A~^^^1^35.^39.^2^31.^41.^~2, 3~^~07/01/2015~ -~28358~^~307~^111.^3^1.^~1~^~A~^^^1^108.^114.^2^103.^118.^~2, 3~^~07/01/2015~ -~28358~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~268~^2265.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~301~^109.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~304~^41.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~305~^144.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~306~^340.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~307~^122.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28360~^~268~^1866.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28360~^~301~^223.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~304~^198.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~305~^422.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~306~^477.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~307~^587.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28361~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28361~^~268~^1910.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28361~^~301~^114.^3^6.^~1~^~A~^^^1^101.^123.^2^85.^142.^~2, 3~^~07/01/2015~ -~28361~^~304~^26.^3^1.^~1~^~A~^^^1^25.^28.^2^21.^30.^~2, 3~^~07/01/2015~ -~28361~^~305~^177.^3^5.^~1~^~A~^^^1^168.^186.^2^154.^199.^~2, 3~^~07/01/2015~ -~28361~^~306~^199.^3^8.^~1~^~A~^^^1^183.^208.^2^164.^233.^~2, 3~^~07/01/2015~ -~28361~^~307~^874.^3^22.^~1~^~A~^^^1^844.^918.^2^778.^970.^~2, 3~^~07/01/2015~ -~28362~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28362~^~268~^1918.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28362~^~301~^47.^2^^~1~^~A~^^^1^40.^54.^1^^^^~07/01/2015~ -~28362~^~304~^26.^2^^~1~^~A~^^^1^24.^28.^1^^^^~07/01/2015~ -~28362~^~305~^118.^2^^~1~^~A~^^^1^109.^127.^1^^^^~07/01/2015~ -~28362~^~306~^296.^2^^~1~^~A~^^^1^287.^304.^1^^^^~07/01/2015~ -~28362~^~307~^868.^2^^~1~^~A~^^^1^834.^901.^1^^^^~07/01/2015~ -~28363~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~268~^1953.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~301~^74.^5^0.^~1~^~A~^^^1^72.^75.^4^72.^75.^~2, 3~^~07/01/2015~ -~28363~^~304~^23.^5^0.^~1~^~A~^^^1^22.^23.^4^21.^23.^~2, 3~^~07/01/2015~ -~28363~^~305~^156.^5^1.^~1~^~A~^^^1^153.^160.^4^152.^159.^~2, 3~^~07/01/2015~ -~28363~^~306~^169.^5^3.^~1~^~A~^^^1^160.^184.^4^158.^180.^~2, 3~^~07/01/2015~ -~28363~^~307~^947.^5^30.^~1~^~A~^^^1^861.^1050.^4^861.^1033.^~2, 3~^~07/01/2015~ -~28363~^~417~^153.^3^13.^~1~^~A~^^^1^130.^175.^2^97.^209.^~2, 3~^~07/01/2015~ -~28363~^~432~^153.^3^13.^~1~^~A~^^^1^130.^175.^2^97.^209.^^~07/01/2015~ -~28364~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~268~^1921.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~301~^101.^6^0.^~1~^~A~^^^1^100.^103.^5^99.^102.^~2, 3~^~07/01/2015~ -~28364~^~304~^24.^6^0.^~1~^~A~^^^1^22.^27.^5^22.^26.^~2, 3~^~07/01/2015~ -~28364~^~305~^204.^6^1.^~1~^~A~^^^1^196.^209.^5^198.^208.^~2, 3~^~07/01/2015~ -~28364~^~306~^168.^6^3.^~1~^~A~^^^1^161.^180.^5^160.^176.^~2, 3~^~07/01/2015~ -~28364~^~307~^1187.^6^18.^~1~^~A~^^^1^1130.^1250.^5^1138.^1235.^~2, 3~^~07/01/2015~ -~28365~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~301~^93.^3^2.^~1~^~A~^^^1^88.^96.^2^83.^102.^~2, 3~^~07/01/2015~ -~28365~^~304~^28.^3^1.^~1~^~A~^^^1^26.^30.^2^22.^33.^~2, 3~^~07/01/2015~ -~28365~^~305~^173.^3^4.^~1~^~A~^^^1^165.^179.^2^155.^190.^~2, 3~^~07/01/2015~ -~28365~^~306~^326.^3^7.^~1~^~A~^^^1^312.^337.^2^294.^358.^~2, 3~^~07/01/2015~ -~28365~^~307~^815.^3^53.^~1~^~A~^^^1^714.^898.^2^583.^1047.^~2, 3~^~07/01/2015~ -~28366~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~268~^1339.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~301~^24.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~305~^37.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~306~^92.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~307~^528.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~268~^2089.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~305~^47.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~306~^144.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~307~^212.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28368~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~268~^1000.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~301~^180.^2^^~1~^~A~^^^1^174.^185.^1^^^^~07/01/2015~ -~28368~^~304~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~07/01/2015~ -~28368~^~305~^50.^2^^~1~^~A~^^^1^50.^50.^1^^^^~07/01/2015~ -~28368~^~306~^76.^2^^~1~^~A~^^^1^75.^76.^1^^^^~07/01/2015~ -~28368~^~307~^593.^2^^~1~^~A~^^^1^572.^614.^1^^^^~07/01/2015~ -~28368~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28368~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28369~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~268~^1004.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~301~^159.^2^^~1~^~A~^^^1^157.^161.^1^^^^~07/01/2015~ -~28369~^~304~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^^~07/01/2015~ -~28369~^~305~^55.^2^^~1~^~A~^^^1^54.^55.^1^^^^~07/01/2015~ -~28369~^~306~^66.^2^^~1~^~A~^^^1^61.^72.^1^^^^~07/01/2015~ -~28369~^~307~^441.^2^^~1~^~A~^^^1^427.^454.^1^^^^~07/01/2015~ -~28369~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28369~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28370~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28370~^~301~^82.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~304~^44.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~305~^126.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~306~^161.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~307~^707.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~301~^59.^3^0.^~1~^~A~^^^1^58.^59.^2^57.^60.^~2, 3~^~07/01/2015~ -~28371~^~304~^25.^3^1.^~1~^~A~^^^1^23.^27.^2^19.^29.^~2, 3~^~07/01/2015~ -~28371~^~305~^70.^3^1.^~1~^~A~^^^1^68.^73.^2^62.^76.^~2, 3~^~07/01/2015~ -~28371~^~306~^107.^3^4.^~1~^~A~^^^1^100.^116.^2^85.^127.^~2, 3~^~07/01/2015~ -~28371~^~307~^515.^3^14.^~1~^~A~^^^1^486.^535.^2^451.^578.^~2, 3~^~07/01/2015~ -~28371~^~417~^19.^2^^~1~^~A~^^^1^17.^22.^1^^^^~07/01/2015~ -~28371~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~268~^1295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~301~^60.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~305~^77.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~306~^123.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~307~^510.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~268~^1376.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~301~^118.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~304~^96.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~305~^233.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~306~^273.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~307~^507.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~301~^39.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~305~^306.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~307~^331.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28375~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~268~^1038.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~301~^48.^3^0.^~1~^~A~^^^1^47.^48.^2^46.^49.^~2, 3~^~07/01/2015~ -~28375~^~304~^31.^3^0.^~1~^~A~^^^1^30.^33.^2^27.^35.^~2, 3~^~07/01/2015~ -~28375~^~305~^345.^3^3.^~1~^~A~^^^1^341.^352.^2^329.^360.^~2, 3~^~07/01/2015~ -~28375~^~306~^121.^3^5.^~1~^~A~^^^1^114.^131.^2^99.^143.^~2, 3~^~07/01/2015~ -~28375~^~307~^508.^3^1.^~1~^~A~^^^1^506.^510.^2^503.^512.^~2, 3~^~07/01/2015~ -~28375~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28376~^~268~^1971.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28376~^~301~^57.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~304~^94.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~305~^269.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~306~^255.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~307~^730.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28397~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28397~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28397~^~268~^1108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~301~^103.^4^14.^~1~^~A~^^^1^60.^130.^3^54.^150.^~2, 3~^~03/01/2007~ -~28397~^~304~^78.^4^9.^~1~^~A~^^^1^53.^100.^3^47.^108.^~2, 3~^~03/01/2007~ -~28397~^~305~^228.^4^17.^~1~^~A~^^^1^200.^280.^3^170.^284.^~2, 3~^~03/01/2007~ -~28397~^~306~^230.^4^21.^~1~^~A~^^^1^170.^270.^3^161.^298.^~2, 3~^~03/01/2007~ -~28397~^~307~^381.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~28397~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~28397~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~28397~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~28397~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28397~^~338~^94.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~417~^75.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~432~^75.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28399~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~28399~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~268~^1866.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~28399~^~301~^43.^36^5.^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~304~^18.^32^0.^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~305~^114.^35^6.^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~306~^100.^34^2.^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~307~^335.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~28399~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~28399~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~28399~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~417~^103.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~431~^89.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~28399~^~432~^14.^1^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~28399~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~ -~31019~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~268~^1083.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31019~^~301~^299.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~304~^692.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~305~^260.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~306~^2944.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~307~^4331.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~318~^8120.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~31019~^~320~^406.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~31019~^~321~^4872.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~324~^126.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~31019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~417~^188.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~432~^188.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~435~^188.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31019~^~601~^33.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~268~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31020~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~304~^84.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~305~^32.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~306~^358.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~307~^526.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~318~^987.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~31020~^~320~^49.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~31020~^~321~^592.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~417~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~432~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31021~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31021~^~301~^6.^6^0.^~1~^~A~^^^1^6.^7.^5^5.^6.^~4~^~02/01/2013~ -~31021~^~304~^19.^6^0.^~1~^~A~^^^1^18.^21.^5^18.^20.^~4~^~02/01/2013~ -~31021~^~305~^70.^6^2.^~1~^~A~^^^1^65.^79.^5^64.^75.^~4~^~02/01/2013~ -~31021~^~306~^425.^6^8.^~1~^~A~^^^1^398.^450.^5^402.^446.^~4~^~02/01/2013~ -~31021~^~307~^42.^6^1.^~1~^~A~^^^1^39.^46.^5^39.^45.^~4~^~02/01/2013~ -~31021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~268~^1011.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~301~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^8.^10.^~4~^~02/01/2013~ -~31022~^~304~^32.^6^0.^~1~^~A~^^^1^29.^34.^5^29.^33.^~4~^~02/01/2013~ -~31022~^~305~^122.^6^2.^~1~^~A~^^^1^115.^131.^5^115.^127.^~4~^~02/01/2013~ -~31022~^~306~^704.^6^14.^~1~^~A~^^^1^639.^743.^5^665.^741.^~4~^~02/01/2013~ -~31022~^~307~^77.^6^3.^~1~^~A~^^^1^68.^86.^5^68.^86.^~4~^~02/01/2013~ -~31022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31023~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~301~^52.^6^2.^~1~^~A~^^^1^44.^57.^2^43.^59.^~2, 3~^~06/01/2015~ -~31023~^~304~^26.^6^0.^~1~^~A~^^^1^25.^28.^3^24.^28.^~2, 3~^~06/01/2015~ -~31023~^~305~^59.^6^1.^~1~^~A~^^^1^41.^80.^3^54.^64.^~2, 3~^~06/01/2015~ -~31023~^~306~^409.^6^16.^~1~^~A~^^^1^317.^488.^4^362.^454.^~2, 3~^~06/01/2015~ -~31023~^~307~^146.^6^3.^~1~^~A~^^^1^74.^222.^2^133.^157.^~2, 3~^~06/01/2015~ -~31023~^~318~^8674.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~31023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~320~^434.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~31023~^~321~^5204.^2^^~1~^~A~^^^1^4141.^6268.^^^^^~07/01/2015~ -~31023~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2015~ -~31023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2015~ -~31023~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2015~ -~31023~^~338~^8.^2^^~1~^~A~^^^1^7.^10.^^^^^~07/01/2015~ -~31023~^~417~^32.^4^1.^~1~^~A~^^^1^29.^37.^1^8.^55.^~2, 3~^~06/01/2015~ -~31023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~432~^32.^4^1.^~1~^~A~^^^1^29.^37.^1^8.^55.^^~06/01/2015~ -~31023~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31024~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31024~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31024~^~301~^39.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~306~^244.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~307~^214.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~318~^3320.^1^^~12~^~MA~^^^^^^^^^^~04/01/2013~ -~31024~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31025~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31025~^~301~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~306~^248.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~307~^250.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~318~^3000.^1^^~12~^~MA~^^^^^^^^^^~04/01/2013~ -~31025~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31026~^~208~^119.^3^0.^~9~^~MC~^^^1^117.^120.^2^114.^122.^~2, 3~^~04/01/2013~ -~31026~^~268~^497.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~31026~^~301~^11.^3^1.^~1~^~A~^^^1^7.^14.^2^2.^19.^~2, 3~^~04/01/2013~ -~31026~^~306~^444.^3^3.^~1~^~A~^^^1^439.^450.^2^429.^457.^~2, 3~^~04/01/2013~ -~31026~^~307~^338.^3^26.^~1~^~A~^^^1^310.^390.^2^225.^450.^~2, 3~^~04/01/2013~ -~31026~^~318~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31026~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31027~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31027~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31027~^~301~^9.^3^0.^~1~^~A~^^^1^9.^10.^2^7.^10.^~2, 3~^~04/01/2013~ -~31027~^~306~^447.^3^76.^~1~^~A~^^^1^352.^599.^2^116.^777.^~2, 3~^~04/01/2013~ -~31027~^~307~^300.^3^31.^~1~^~A~^^^1^238.^333.^2^166.^434.^~2, 3~^~04/01/2013~ -~31027~^~318~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31027~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31028~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31028~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31028~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~306~^398.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~307~^330.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~318~^0.^1^^~12~^~MA~^^^^^^^^^^~04/01/2013~ -~31028~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31029~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31029~^~268~^677.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31029~^~301~^14.^3^2.^~1~^~A~^^^1^11.^18.^2^4.^22.^~2, 3~^~04/01/2013~ -~31029~^~306~^381.^3^18.^~1~^~A~^^^1^345.^405.^2^302.^459.^~2, 3~^~04/01/2013~ -~31029~^~307~^380.^3^31.^~1~^~A~^^^1^321.^429.^2^244.^515.^~2, 3~^~04/01/2013~ -~31029~^~318~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31029~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~ -~31030~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31030~^~268~^561.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31030~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~306~^360.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~318~^0.^1^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~31030~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31031~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~31031~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~306~^310.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~307~^393.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~318~^0.^1^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~31031~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31033~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~301~^74.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~304~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~306~^36.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~307~^906.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~301~^61.^3^22.^~1~^~A~^^^1^22.^100.^2^-35.^158.^~2, 3~^~06/01/2015~ -~31034~^~304~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^4.^8.^~2, 3~^~06/01/2015~ -~31034~^~305~^13.^3^0.^~1~^~A~^^^1^13.^14.^2^10.^15.^~2, 3~^~06/01/2015~ -~31034~^~306~^113.^3^13.^~1~^~A~^^^1^99.^139.^2^56.^169.^~2, 3~^~06/01/2015~ -~31034~^~307~^1430.^3^80.^~1~^~A~^^^1^1330.^1590.^2^1082.^1777.^~2, 3~^~06/01/2015~ -~31034~^~318~^870.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~31034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~31034~^~321~^440.^2^^~1~^~A~^^^1^214.^666.^1^^^^~07/01/2015~ -~31034~^~322~^163.^2^^~1~^~A~^^^1^23.^302.^1^^^^~07/01/2015~ -~31034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~334~^1.^2^^~1~^~A~^^^1^0.^2.^1^^^~1~^~07/01/2015~ -~31034~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2015~ -~31034~^~338~^585.^2^^~1~^~A~^^^1^441.^729.^1^^^^~07/01/2015~ -~31034~^~417~^13.^2^^~1~^~A~^^^1^13.^14.^1^^^^~06/01/2015~ -~31034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~432~^13.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~268~^128.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~301~^110.^3^0.^~1~^~A~^^^1^109.^110.^2^108.^111.^~2, 3~^~06/01/2015~ -~31035~^~304~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^11.^11.^~2, 3~^~06/01/2015~ -~31035~^~305~^90.^3^1.^~1~^~A~^^^1^88.^93.^2^83.^96.^~2, 3~^~06/01/2015~ -~31035~^~306~^224.^3^6.^~1~^~A~^^^1^215.^237.^2^196.^252.^~2, 3~^~06/01/2015~ -~31035~^~307~^15.^3^0.^~1~^~A~^^^1^14.^15.^2^13.^15.^~2, 3~^~06/01/2015~ -~31035~^~318~^2048.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~319~^600.^0^^~4~^~S~^^^^^^^^^^~06/01/2015~ -~31035~^~320~^602.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~321~^26.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~322~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~338~^111.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~417~^63.^2^^~1~^~A~^^^1^60.^67.^1^^^^~06/01/2015~ -~31035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~432~^63.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31036~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31036~^~268~^444.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~301~^34.^8^0.^~1~^~A~^^^1^27.^52.^4^32.^35.^~2, 3~^~06/01/2015~ -~31036~^~304~^14.^8^0.^~1~^~A~^^^1^14.^15.^2^13.^15.^~2, 3~^~06/01/2015~ -~31036~^~305~^61.^8^1.^~1~^~A~^^^1^53.^74.^3^56.^65.^~2, 3~^~06/01/2015~ -~31036~^~306~^274.^8^6.^~1~^~A~^^^1^250.^312.^3^250.^298.^~2, 3~^~06/01/2015~ -~31036~^~307~^298.^8^4.^~1~^~A~^^^1^237.^342.^4^285.^310.^~2, 3~^~06/01/2015~ -~31036~^~318~^205.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~319~^52.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~321~^19.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31036~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31036~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~601~^13.^2^^~1~^~A~^^^1^12.^13.^^^^^~06/01/2015~ -~32000~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32000~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~268~^1501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32000~^~301~^32.^6^0.^~1~^~A~^^^1^28.^35.^5^29.^34.^~2, 3~^~08/01/2012~ -~32000~^~304~^34.^6^0.^~1~^~A~^^^1^31.^36.^5^31.^35.^~2, 3~^~08/01/2012~ -~32000~^~305~^125.^6^2.^~1~^~A~^^^1^118.^132.^5^119.^130.^~2, 3~^~08/01/2012~ -~32000~^~306~^169.^6^7.^~1~^~A~^^^1^141.^187.^5^150.^187.^~2, 3~^~08/01/2012~ -~32000~^~307~^1337.^6^72.^~1~^~A~^^^1^1000.^1480.^5^1149.^1523.^~2, 3~^~08/01/2012~ -~32000~^~318~^1403.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32000~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~320~^70.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~321~^696.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~322~^292.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~338~^22.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~417~^189.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~431~^147.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~432~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32000~^~435~^292.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32000~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32001~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32001~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32001~^~301~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^10.^~2, 3~^~08/01/2012~ -~32001~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~08/01/2012~ -~32001~^~305~^33.^6^0.^~1~^~A~^^^1^32.^36.^5^32.^34.^~2, 3~^~08/01/2012~ -~32001~^~306~^48.^6^2.^~1~^~A~^^^1^40.^58.^5^41.^55.^~2, 3~^~08/01/2012~ -~32001~^~307~^364.^6^10.^~1~^~A~^^^1^331.^395.^5^337.^390.^~2, 3~^~08/01/2012~ -~32002~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32002~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32002~^~301~^83.^6^2.^~1~^~A~^^^1^69.^90.^5^75.^90.^~2, 3~^~08/01/2012~ -~32002~^~304~^32.^6^0.^~1~^~A~^^^1^30.^34.^5^30.^32.^~2, 3~^~08/01/2012~ -~32002~^~305~^154.^6^1.^~1~^~A~^^^1^148.^157.^5^150.^157.^~2, 3~^~08/01/2012~ -~32002~^~306~^188.^6^3.^~1~^~A~^^^1^178.^203.^5^178.^198.^~2, 3~^~08/01/2012~ -~32002~^~307~^1303.^6^27.^~1~^~A~^^^1^1200.^1370.^5^1232.^1373.^~2, 3~^~08/01/2012~ -~32002~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32002~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~32002~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32002~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~417~^212.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~431~^192.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32002~^~435~^347.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32002~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32003~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~301~^29.^6^1.^~1~^~A~^^^1^25.^33.^5^25.^32.^~2, 3~^~08/01/2012~ -~32003~^~304~^11.^6^0.^~1~^~A~^^^1^10.^12.^5^9.^11.^~2, 3~^~08/01/2012~ -~32003~^~305~^48.^6^1.^~1~^~A~^^^1^44.^52.^5^44.^51.^~2, 3~^~08/01/2012~ -~32003~^~306~^69.^6^3.^~1~^~A~^^^1^61.^83.^5^60.^77.^~2, 3~^~08/01/2012~ -~32003~^~307~^430.^6^18.^~1~^~A~^^^1^366.^492.^5^383.^476.^~2, 3~^~08/01/2012~ -~32003~^~318~^129.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32003~^~319~^39.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~32003~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32004~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32004~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32004~^~301~^145.^12^2.^~1~^~A~^^^1^131.^156.^9^139.^150.^~2, 3~^~08/01/2012~ -~32004~^~304~^34.^12^0.^~1~^~A~^^^1^33.^36.^6^33.^34.^~2, 3~^~08/01/2012~ -~32004~^~305~^391.^12^4.^~1~^~A~^^^1^359.^411.^9^380.^402.^~2, 3~^~08/01/2012~ -~32004~^~306~^197.^12^1.^~1~^~A~^^^1^186.^208.^10^192.^201.^~2, 3~^~08/01/2012~ -~32004~^~307~^766.^12^12.^~1~^~A~^^^1^662.^861.^9^738.^794.^~2, 3~^~08/01/2012~ -~32004~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32004~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~320~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~321~^14.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~338~^19.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~417~^134.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~431~^119.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~435~^217.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32004~^~601~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32005~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~301~^85.^12^2.^~1~^~A~^^^1^68.^100.^10^80.^90.^~2, 3~^~08/01/2012~ -~32005~^~304~^15.^12^0.^~1~^~A~^^^1^13.^17.^9^14.^16.^~2, 3~^~08/01/2012~ -~32005~^~305~^234.^12^3.^~1~^~A~^^^1^200.^271.^10^225.^242.^~2, 3~^~08/01/2012~ -~32005~^~306~^80.^12^1.^~1~^~A~^^^1^74.^90.^10^77.^82.^~2, 3~^~08/01/2012~ -~32005~^~307~^460.^12^6.^~1~^~A~^^^1^424.^509.^9^444.^476.^~2, 3~^~08/01/2012~ -~32005~^~318~^72.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32005~^~319~^22.^2^^~1~^~A~^^^1^18.^26.^^^^^~08/01/2012~ -~32005~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32005~^~601~^8.^6^0.^~1~^~A~^^^1^7.^9.^4^7.^8.^~2, 3~^~08/01/2012~ -~32006~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~268~^1189.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~301~^104.^12^2.^~1~^~A~^^^1^45.^149.^8^97.^110.^~2, 3~^~04/01/2013~ -~32006~^~304~^24.^12^0.^~1~^~A~^^^1^22.^27.^10^23.^24.^~2, 3~^~04/01/2013~ -~32006~^~305~^132.^12^2.^~1~^~A~^^^1^119.^143.^10^126.^137.^~2, 3~^~04/01/2013~ -~32006~^~306~^155.^12^2.^~1~^~A~^^^1^130.^179.^10^148.^160.^~2, 3~^~04/01/2013~ -~32006~^~307~^453.^12^6.^~1~^~A~^^^1^325.^565.^8^438.^467.^~2, 3~^~04/01/2013~ -~32006~^~318~^206.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32006~^~319~^23.^2^^~1~^~A~^^^1^22.^24.^^^^^~04/01/2013~ -~32006~^~320~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32006~^~321~^63.^2^^~1~^~A~^^^1^46.^77.^^^^^~04/01/2013~ -~32006~^~322~^1.^2^^~1~^~A~^^^1^1.^2.^^^^^~04/01/2013~ -~32006~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~334~^26.^2^^~1~^~A~^^^1^18.^32.^^^^^~04/01/2013~ -~32006~^~337~^133.^2^^~1~^~A~^^^1^130.^136.^^^^^~04/01/2013~ -~32006~^~338~^111.^2^^~1~^~A~^^^1^102.^118.^^^^^~04/01/2013~ -~32006~^~417~^68.^4^1.^~1~^~A~^^^1^52.^88.^2^62.^73.^~2, 3~^~04/01/2013~ -~32006~^~431~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~601~^13.^6^0.^~1~^~A~^^^1^10.^17.^3^10.^15.^~2, 3~^~04/01/2013~ -~32007~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~268~^1199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~301~^97.^11^1.^~1~^~A~^^^1^36.^151.^4^91.^102.^~2, 3~^~04/01/2013~ -~32007~^~304~^24.^11^0.^~1~^~A~^^^1^21.^25.^7^23.^24.^~2, 3~^~04/01/2013~ -~32007~^~305~^137.^11^1.^~1~^~A~^^^1^119.^155.^5^132.^140.^~2, 3~^~04/01/2013~ -~32007~^~306~^174.^11^1.^~1~^~A~^^^1^165.^183.^5^169.^179.^~2, 3~^~04/01/2013~ -~32007~^~307~^456.^11^4.^~1~^~A~^^^1^371.^535.^5^444.^467.^~2, 3~^~04/01/2013~ -~32007~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32007~^~319~^25.^2^^~1~^~A~^^^1^17.^30.^^^^^~04/01/2013~ -~32007~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32007~^~321~^103.^2^^~1~^~A~^^^1^73.^126.^^^^^~04/01/2013~ -~32007~^~322~^1.^2^^~1~^~A~^^^1^1.^2.^^^^^~04/01/2013~ -~32007~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~334~^36.^2^^~1~^~A~^^^1^23.^45.^^^^^~04/01/2013~ -~32007~^~337~^413.^2^^~1~^~A~^^^1^328.^480.^^^^^~04/01/2013~ -~32007~^~338~^119.^2^^~1~^~A~^^^1^98.^136.^^^^^~04/01/2013~ -~32007~^~417~^68.^4^2.^~1~^~A~^^^1^53.^86.^1^51.^85.^~2, 3~^~04/01/2013~ -~32007~^~431~^63.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~432~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~601~^11.^6^0.^~1~^~A~^^^1^7.^14.^3^9.^12.^~2, 3~^~04/01/2013~ -~32008~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~268~^1462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~301~^28.^6^0.^~1~^~A~^^^1^27.^28.^5^26.^28.^~2, 3~^~04/01/2013~ -~32008~^~304~^35.^6^0.^~1~^~A~^^^1^32.^38.^5^32.^36.^~2, 3~^~04/01/2013~ -~32008~^~305~^131.^6^1.^~1~^~A~^^^1^123.^136.^5^126.^135.^~2, 3~^~04/01/2013~ -~32008~^~306~^204.^6^6.^~1~^~A~^^^1^179.^225.^5^187.^220.^~2, 3~^~04/01/2013~ -~32008~^~307~^2152.^6^66.^~1~^~A~^^^1^1850.^2310.^5^1980.^2323.^~2, 3~^~04/01/2013~ -~32008~^~318~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~319~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~320~^25.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~321~^208.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~337~^925.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~417~^122.^3^24.^~1~^~A~^^^1^92.^171.^2^16.^228.^~2, 3~^~04/01/2013~ -~32008~^~431~^109.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~432~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~435~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32009~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32009~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~268~^1482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32009~^~301~^21.^6^0.^~1~^~A~^^^1^20.^22.^5^19.^21.^~2, 3~^~04/01/2013~ -~32009~^~304~^39.^6^3.^~1~^~A~^^^1^34.^53.^5^31.^47.^~2, 3~^~04/01/2013~ -~32009~^~305~^127.^6^1.^~1~^~A~^^^1^122.^135.^5^122.^131.^~2, 3~^~04/01/2013~ -~32009~^~306~^342.^6^9.^~1~^~A~^^^1^318.^371.^5^318.^365.^~2, 3~^~04/01/2013~ -~32009~^~307~^1537.^6^34.^~1~^~A~^^^1^1450.^1650.^5^1448.^1625.^~2, 3~^~04/01/2013~ -~32009~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~417~^127.^3^20.^~1~^~A~^^^1^87.^158.^2^36.^216.^~2, 3~^~04/01/2013~ -~32009~^~431~^101.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~32009~^~432~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32009~^~435~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32009~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32010~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~268~^1491.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~301~^52.^6^1.^~1~^~A~^^^1^49.^56.^5^49.^55.^~2, 3~^~04/01/2013~ -~32010~^~304~^37.^6^0.^~1~^~A~^^^1^35.^39.^5^35.^38.^~2, 3~^~04/01/2013~ -~32010~^~305~^124.^6^2.^~1~^~A~^^^1^116.^131.^5^118.^129.^~2, 3~^~04/01/2013~ -~32010~^~306~^277.^6^5.^~1~^~A~^^^1^251.^291.^5^262.^291.^~2, 3~^~04/01/2013~ -~32010~^~307~^1850.^6^46.^~1~^~A~^^^1^1730.^2060.^5^1730.^1969.^~2, 3~^~04/01/2013~ -~32010~^~318~^141.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~319~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~320~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~321~^78.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~337~^334.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~338~^27.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~417~^113.^3^5.^~1~^~A~^^^1^103.^121.^2^90.^135.^~2, 3~^~04/01/2013~ -~32010~^~431~^105.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~435~^187.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32011~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~268~^1433.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~301~^35.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~304~^112.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~305~^174.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~306~^801.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~307~^1316.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~318~^175.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~320~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~417~^140.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~431~^112.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~435~^219.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32012~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32012~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~268~^1371.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32012~^~301~^125.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~305~^137.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~306~^301.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~307~^599.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~318~^519.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32012~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~320~^67.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~321~^209.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~322~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~337~^6530.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~417~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~431~^35.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~432~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32012~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32012~^~601~^6.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32013~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~268~^568.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32013~^~301~^28.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~305~^127.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~306~^284.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~307~^441.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32013~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~320~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~321~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~324~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~338~^21.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32013~^~601~^17.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32014~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~262~^0.^0^^~4~^~BFZN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~263~^0.^0^^~4~^~BFZN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~268~^1242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~301~^202.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~304~^35.^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~305~^403.^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~306~^203.^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~307~^867.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~318~^101.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~319~^30.^0^^~4~^~NR~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~320~^30.^0^^~4~^~NR~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~321~^5.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~322~^0.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~324~^0.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~334~^1.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~337~^0.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~338~^7.^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~417~^138.^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~431~^123.^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~435~^224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~601~^15.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32015~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32015~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~268~^984.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32015~^~301~^276.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~305~^47.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~306~^179.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~307~^598.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~318~^311.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32015~^~319~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~320~^52.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~321~^97.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~322~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~324~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~337~^1687.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~338~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~417~^63.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~431~^42.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~432~^21.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32015~^~601~^20.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32016~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32016~^~262~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~263~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~268~^1623.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32016~^~301~^328.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~304~^49.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~305~^328.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~306~^348.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~307~^902.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~318~^336.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32016~^~319~^98.^0^^~4~^~NR~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~320~^99.^0^^~4~^~NC~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~321~^5.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~322~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~324~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~334~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~337~^0.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~338~^15.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~417~^204.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~431~^187.^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32016~^~435~^334.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32016~^~601~^8.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32017~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~268~^1487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~301~^55.^6^1.^~1~^~A~^^^1^53.^61.^5^52.^58.^~2, 3~^~04/01/2013~ -~32017~^~304~^42.^6^0.^~1~^~A~^^^1^40.^44.^5^40.^43.^~2, 3~^~04/01/2013~ -~32017~^~305~^162.^6^2.^~1~^~A~^^^1^156.^171.^5^155.^168.^~2, 3~^~04/01/2013~ -~32017~^~306~^271.^6^7.^~1~^~A~^^^1^255.^309.^5^250.^291.^~2, 3~^~04/01/2013~ -~32017~^~307~^2093.^6^58.^~1~^~A~^^^1^1820.^2220.^5^1941.^2244.^~2, 3~^~04/01/2013~ -~32017~^~318~^126.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~319~^38.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32017~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~417~^140.^3^5.^~1~^~A~^^^1^129.^145.^2^116.^162.^~2, 3~^~04/01/2013~ -~32017~^~601~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32018~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~268~^1518.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~301~^29.^12^0.^~1~^~A~^^^1^25.^32.^9^28.^29.^~2, 3~^~04/01/2014~ -~32018~^~304~^37.^12^0.^~1~^~A~^^^1^33.^42.^6^35.^38.^~2, 3~^~04/01/2014~ -~32018~^~305~^146.^12^1.^~1~^~A~^^^1^126.^166.^6^143.^148.^~2, 3~^~04/01/2014~ -~32018~^~306~^445.^12^17.^~1~^~A~^^^1^173.^752.^5^399.^490.^~2, 3~^~04/01/2014~ -~32018~^~307~^1085.^12^41.^~1~^~A~^^^1^725.^1670.^10^992.^1177.^~2, 3~^~04/01/2014~ -~32018~^~318~^469.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32018~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32018~^~321~^255.^2^^~1~^~A~^^^1^80.^376.^^^^^~04/01/2014~ -~32018~^~322~^1.^2^^~1~^~A~^^^1^0.^3.^^^^~1~^~04/01/2014~ -~32018~^~334~^52.^2^^~1~^~A~^^^1^38.^63.^^^^^~04/01/2014~ -~32018~^~337~^3677.^2^^~1~^~A~^^^1^0.^6232.^^^^~1~^~04/01/2014~ -~32018~^~338~^245.^2^^~1~^~A~^^^1^188.^285.^^^^^~04/01/2014~ -~32018~^~417~^162.^6^6.^~1~^~A~^^^1^109.^198.^4^141.^181.^~2, 3~^~04/01/2014~ -~32019~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~268~^605.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~301~^84.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~305~^90.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~306~^159.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~307~^312.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~319~^15.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~320~^23.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~321~^87.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~322~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~337~^2779.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~417~^44.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~431~^36.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~601~^11.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32020~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~301~^75.^6^11.^~1~^~A~^^^1^40.^111.^5^45.^105.^~2, 3~^~04/01/2014~ -~32020~^~304~^31.^6^0.^~1~^~A~^^^1^30.^33.^5^29.^32.^~2, 3~^~04/01/2014~ -~32020~^~305~^190.^6^6.^~1~^~A~^^^1^175.^218.^5^172.^208.^~2, 3~^~04/01/2014~ -~32020~^~306~^279.^6^7.^~1~^~A~^^^1^258.^300.^5^261.^297.^~2, 3~^~04/01/2014~ -~32020~^~307~^813.^6^6.^~1~^~A~^^^1^794.^832.^5^796.^828.^~2, 3~^~04/01/2014~ -~32020~^~318~^125.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32020~^~319~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~32020~^~320~^37.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32020~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~32020~^~601~^87.^3^2.^~1~^~A~^^^1^84.^91.^2^76.^96.^~2, 3~^~04/01/2014~ -~32021~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~268~^525.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~301~^18.^12^0.^~1~^~A~^^^1^11.^34.^6^15.^19.^~2, 3~^~04/01/2014~ -~32021~^~304~^13.^12^0.^~1~^~A~^^^1^12.^15.^9^12.^13.^~2, 3~^~04/01/2014~ -~32021~^~305~^45.^12^0.^~1~^~A~^^^1^33.^56.^10^43.^46.^~2, 3~^~04/01/2014~ -~32021~^~306~^185.^12^3.^~1~^~A~^^^1^116.^235.^9^176.^193.^~2, 3~^~04/01/2014~ -~32021~^~307~^349.^12^5.^~1~^~A~^^^1^303.^452.^6^335.^362.^~2, 3~^~04/01/2014~ -~32021~^~318~^208.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32021~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~32021~^~321~^116.^2^^~1~^~A~^^^1^99.^139.^^^^^~04/01/2014~ -~32021~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2014~ -~32021~^~334~^19.^2^^~1~^~A~^^^1^14.^22.^^^^^~04/01/2014~ -~32021~^~337~^1580.^2^^~1~^~A~^^^1^1554.^1617.^^^^^~04/01/2014~ -~32021~^~338~^102.^2^^~1~^~A~^^^1^90.^118.^^^^^~04/01/2014~ -~32021~^~417~^68.^6^2.^~1~^~A~^^^1^36.^92.^4^61.^74.^~2, 3~^~04/01/2014~ -~32024~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~268~^1515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~301~^140.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~304~^88.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~305~^369.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~306~^351.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~307~^1193.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~321~^3.^0^^~4~^~BFFN~^~32002~^^^^^^^^^~03/01/2015~ -~32024~^~322~^0.^0^^~4~^~BFFN~^~32002~^^^^^^^^^~03/01/2015~ -~32024~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~338~^72.^0^^~4~^~BFFN~^~32002~^^^^^^^^^~03/01/2015~ -~32024~^~417~^175.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~431~^92.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~432~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~601~^9.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~301~^35.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~304~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~305~^79.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~306~^107.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~307~^474.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~319~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~417~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~431~^52.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~601~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~268~^703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~301~^157.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~304~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~305~^161.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~306~^167.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~307~^276.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~318~^222.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~319~^35.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~321~^61.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~338~^201.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~417~^48.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~431~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~432~^29.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32027~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~268~^899.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~301~^197.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~304~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~305~^202.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~306~^117.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~307~^378.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~318~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~319~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~320~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~321~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~324~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~337~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~338~^32.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~417~^58.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~431~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~432~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~435~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~601~^20.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~301~^79.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~304~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~305~^111.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~306~^177.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~307~^378.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~318~^157.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~319~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~320~^39.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~321~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~324~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~417~^46.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~431~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~601~^31.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32029~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~268~^595.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~301~^35.^16^1.^~1~^~A~^^^1^27.^41.^8^32.^37.^~2, 3~^~02/01/2017~ -~32029~^~304~^18.^16^0.^~1~^~A~^^^1^16.^19.^9^17.^19.^~2, 3~^~02/01/2017~ -~32029~^~305~^73.^16^1.^~1~^~A~^^^1^67.^82.^9^69.^76.^~2, 3~^~02/01/2017~ -~32029~^~306~^113.^16^2.^~1~^~A~^^^1^100.^122.^8^107.^118.^~2, 3~^~02/01/2017~ -~32029~^~307~^443.^16^10.^~1~^~A~^^^1^421.^497.^7^417.^469.^~2, 3~^~02/01/2017~ -~32029~^~318~^16.^0^^~4~^~NC~^~32002~^^^^^^^^^~02/01/2017~ -~32029~^~319~^4.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32029~^~321~^1.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~322~^0.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~334~^0.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~337~^0.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~338~^28.^0^^~4~^~BFNN~^~32002~^^^^^^^^^~04/01/2015~ -~32029~^~417~^68.^9^10.^~1~^~A~^^^1^27.^93.^2^25.^109.^~2, 3~^~02/01/2017~ -~32029~^~431~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~432~^68.^9^10.^~1~^~A~^^^1^27.^93.^2^25.^109.^^~02/01/2017~ -~32029~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32031~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~262~^0.^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~263~^0.^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~301~^47.^9^1.^~1~^~A~^^^1^28.^54.^2^39.^53.^~2, 3~^~06/01/2015~ -~32031~^~304~^17.^9^0.^~1~^~A~^^^1^13.^20.^3^15.^18.^~2, 3~^~06/01/2015~ -~32031~^~305~^127.^9^2.^~1~^~A~^^^1^97.^138.^3^119.^134.^~2, 3~^~06/01/2015~ -~32031~^~306~^144.^9^3.^~1~^~A~^^^1^106.^206.^2^128.^158.^~2, 3~^~06/01/2015~ -~32031~^~307~^509.^9^2.^~1~^~A~^^^1^370.^582.^5^503.^515.^~2, 3~^~06/01/2015~ -~32031~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~319~^2.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~320~^2.^0^^~4~^~NC~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~321~^0.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~322~^0.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~324~^1.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~334~^0.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~337~^0.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~338~^0.^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~32031~^~431~^0.^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~32031~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~601~^33.^9^1.^~1~^~A~^^^1^20.^39.^2^28.^37.^~2, 3~^~06/01/2015~ -~32032~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~262~^0.^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~263~^0.^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~268~^1354.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~301~^136.^5^3.^~1~^~A~^^^1^108.^148.^1^93.^177.^~2, 3~^~06/01/2015~ -~32032~^~304~^16.^5^0.^~1~^~A~^^^1^14.^26.^1^8.^23.^~2, 3~^~06/01/2015~ -~32032~^~305~^298.^5^6.^~1~^~A~^^^1^256.^311.^2^270.^325.^~2, 3~^~06/01/2015~ -~32032~^~306~^269.^5^1.^~1~^~A~^^^1^170.^293.^3^265.^273.^~2, 3~^~06/01/2015~ -~32032~^~307~^591.^5^14.^~1~^~A~^^^1^532.^671.^1^486.^696.^~2, 3~^~06/01/2015~ -~32032~^~318~^632.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~319~^173.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~320~^176.^0^^~4~^~NC~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~321~^29.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~322~^0.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~324~^27.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~334~^8.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~337~^0.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~338~^342.^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~417~^52.^2^^~1~^~A~^^^1^50.^54.^1^^^^~06/01/2015~ -~32032~^~431~^38.^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~432~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~601~^78.^5^6.^~1~^~A~^^^1^14.^86.^1^-5.^162.^~2, 3~^~06/01/2015~ -~32034~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~301~^29.^3^0.^~1~^~A~^^^1^28.^31.^2^25.^32.^~2, 3~^~07/01/2015~ -~32034~^~304~^19.^3^0.^~1~^~A~^^^1^17.^20.^2^14.^22.^~2, 3~^~07/01/2015~ -~32034~^~305~^106.^3^4.^~1~^~A~^^^1^99.^114.^2^86.^125.^~2, 3~^~07/01/2015~ -~32034~^~306~^195.^3^5.^~1~^~A~^^^1^186.^206.^2^169.^220.^~2, 3~^~07/01/2015~ -~32034~^~307~^379.^3^6.^~1~^~A~^^^1^370.^392.^2^349.^407.^~2, 3~^~07/01/2015~ -~32034~^~601~^26.^3^0.^~1~^~A~^^^1^26.^26.^2^25.^26.^~2, 3~^~07/01/2015~ -~32035~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~301~^51.^3^2.^~1~^~A~^^^1^46.^54.^2^40.^60.^~2, 3~^~07/01/2015~ -~32035~^~304~^17.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^~2, 3~^~07/01/2015~ -~32035~^~305~^135.^3^2.^~1~^~A~^^^1^129.^138.^2^122.^146.^~2, 3~^~07/01/2015~ -~32035~^~306~^142.^3^4.^~1~^~A~^^^1^133.^150.^2^120.^163.^~2, 3~^~07/01/2015~ -~32035~^~307~^517.^3^2.^~1~^~A~^^^1^513.^521.^2^507.^527.^~2, 3~^~07/01/2015~ -~32035~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~601~^36.^3^1.^~1~^~A~^^^1^34.^39.^2^30.^42.^~2, 3~^~07/01/2015~ -~32036~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~268~^1370.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~301~^137.^3^0.^~1~^~A~^^^1^136.^139.^2^133.^141.^~2, 3~^~07/01/2015~ -~32036~^~304~^15.^3^0.^~1~^~A~^^^1^14.^16.^2^13.^16.^~2, 3~^~07/01/2015~ -~32036~^~305~^302.^3^4.^~1~^~A~^^^1^297.^311.^2^281.^321.^~2, 3~^~07/01/2015~ -~32036~^~306~^292.^3^1.^~1~^~A~^^^1^289.^293.^2^285.^297.^~2, 3~^~07/01/2015~ -~32036~^~307~^589.^3^6.^~1~^~A~^^^1^578.^600.^2^561.^616.^~2, 3~^~07/01/2015~ -~32036~^~417~^52.^2^^~1~^~A~^^^1^50.^54.^1^^^^~07/01/2015~ -~32036~^~601~^85.^3^0.^~1~^~A~^^^1^85.^86.^2^83.^87.^~2, 3~^~07/01/2015~ -~33862~^~208~^516.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33862~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~268~^2160.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33862~^~301~^400.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~304~^41.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~305~^220.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~318~^1533.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33862~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~320~^460.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33862~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~324~^380.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~417~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~431~^82.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~435~^139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33862~^~601~^19.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33863~^~208~^510.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~268~^2134.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~301~^390.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~304~^41.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~305~^220.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~318~^1525.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33863~^~319~^458.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~320~^458.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33863~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~324~^300.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~417~^81.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~431~^81.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33863~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33864~^~208~^129.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~262~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~263~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~268~^540.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~33864~^~301~^101.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~304~^10.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~305~^56.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~306~^139.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~307~^35.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~318~^394.^0^^~4~^~NC~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~319~^118.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~320~^118.^0^^~4~^~NC~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~321~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~322~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~324~^40.^0^^~4~^~NR~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~334~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~337~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~338~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~417~^12.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~431~^12.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~432~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~435~^21.^0^^~4~^~NC~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~601~^0.^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33865~^~208~^129.^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~262~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~263~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~268~^541.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33865~^~301~^101.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~304~^10.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~305~^55.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~306~^138.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~307~^35.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~318~^395.^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~319~^118.^0^^~4~^~NR~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~320~^118.^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~321~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~322~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~324~^40.^0^^~4~^~NR~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~334~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~337~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~338~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~417~^12.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~431~^12.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~432~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~435~^21.^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~601~^0.^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33866~^~208~^500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33866~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~263~^0.^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~268~^2090.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33866~^~301~^990.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~304~^40.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~305~^650.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~306~^650.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~307~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33866~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33866~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33866~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33866~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33866~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33866~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33866~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33866~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~208~^512.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~268~^2142.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~301~^343.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~305~^195.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~306~^553.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~318~^1550.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33867~^~319~^465.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33867~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~324~^307.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33867~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~208~^492.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~263~^0.^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~268~^2059.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~301~^935.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~304~^34.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~305~^522.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~306~^531.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~307~^133.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~318~^1490.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33868~^~319~^447.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~320~^447.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33868~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~324~^295.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~417~^74.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~431~^74.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33868~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33869~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33869~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~263~^0.^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~268~^2096.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33869~^~301~^956.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~305~^543.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~306~^553.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~318~^1523.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33869~^~319~^457.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~320~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33869~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~324~^307.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33869~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33870~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33870~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~268~^1991.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33870~^~301~^930.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~304~^52.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~305~^620.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~306~^570.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~307~^171.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~318~^1433.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33870~^~319~^430.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~320~^430.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33870~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~324~^280.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~417~^76.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~431~^76.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33870~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~208~^512.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~262~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33871~^~263~^0.^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~268~^2142.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~301~^998.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~305~^666.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~306~^768.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~307~^154.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~318~^1550.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33871~^~319~^465.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33871~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~324~^307.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33871~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33872~^~208~^501.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~262~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~268~^2096.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~301~^526.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~305~^316.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~306~^581.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~307~^200.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~318~^1517.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~319~^455.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~320~^455.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~324~^301.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~431~^80.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~601~^0.^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33873~^~208~^512.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33873~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~268~^2144.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33873~^~301~^470.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~305~^260.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~307~^230.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33873~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33873~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~324~^250.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33873~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~268~^274.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~305~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~306~^64.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~307~^38.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~318~^833.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33874~^~319~^250.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~320~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33874~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~324~^157.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~417~^26.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~431~^26.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33874~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~268~^279.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~305~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~306~^64.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~307~^38.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~318~^828.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~319~^248.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~320~^248.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~324~^157.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~417~^26.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~431~^26.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33876~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~301~^51.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~305~^28.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~306~^71.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~307~^18.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~324~^49.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~208~^510.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~268~^2134.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~301~^390.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~304~^41.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~305~^220.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~318~^1525.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33877~^~319~^458.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~320~^458.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33877~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~324~^300.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~417~^81.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~431~^81.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33877~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33878~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~33878~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~33878~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~33878~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~33878~^~304~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~306~^265.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~307~^10.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~33878~^~318~^557.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~33878~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~33878~^~321~^322.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~322~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~334~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~337~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~417~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~432~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~33878~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~636~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33881~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~33881~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~33881~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~304~^112.^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~305~^256.^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~306~^184.^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~307~^7.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2016~ -~33881~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~33881~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~417~^24.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~432~^24.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~33881~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~35001~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35001~^~268~^1479.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35001~^~301~^8.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~304~^7.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~305~^46.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~306~^70.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~307~^21.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~318~^696.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~417~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~432~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~601~^10.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~35003~^~268~^1079.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~35003~^~301~^16.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~304~^20.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~305~^170.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~306~^228.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~307~^95.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~318~^559.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~417~^4.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~432~^4.^1^^~13~^~AI~^^^^^^^^^^~05/01/2004~ -~35003~^~601~^89.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35004~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35004~^~301~^47.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~306~^102.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~307~^656.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~318~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~601~^7.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35007~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35007~^~305~^162.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~318~^260.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35008~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35008~^~301~^17.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~306~^40.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~318~^1400.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35009~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~268~^1370.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~301~^22.^2^^~6~^~JA~^^^2^16.^28.^1^^^^~07/01/2007~ -~35009~^~304~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~305~^549.^2^^~6~^~JA~^^^2^490.^608.^1^^^^~07/01/2007~ -~35009~^~306~^800.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~307~^220.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2006~ -~35009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35009~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35009~^~601~^122.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~636~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~268~^1217.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35010~^~305~^187.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35010~^~318~^1870.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35010~^~319~^561.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35010~^~320~^561.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~268~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35011~^~301~^7.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~304~^22.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~305~^239.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~306~^283.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~307~^78.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~318~^340.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35011~^~319~^102.^0^^~4~^~T~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~320~^102.^0^^~4~^~NC~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~417~^4.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~431~^0.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~432~^4.^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~435~^4.^0^^~4~^~NC~^~35014~^^^^^^^^^~07/01/2006~ -~35011~^~601~^80.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35012~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35012~^~301~^11.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35012~^~305~^153.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35012~^~318~^930.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35012~^~319~^279.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35012~^~320~^279.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35013~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35013~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35013~^~301~^11.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35013~^~305~^230.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35013~^~318~^22100.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35014~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35014~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~318~^2310.^0^^~4~^~T~^^^^^^^^^^~07/01/2006~ -~35014~^~320~^694.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~35014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~324~^228.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35015~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35015~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35015~^~301~^5.^3^0.^~11~^~JO~^^^1^4.^5.^1^-1.^11.^~4~^~04/01/2006~ -~35015~^~304~^4.^3^0.^~11~^~JO~^^^1^4.^4.^1^0.^7.^~4~^~04/01/2006~ -~35015~^~305~^11.^3^3.^~11~^~JO~^^^1^7.^14.^1^-32.^53.^~4~^~04/01/2006~ -~35015~^~306~^75.^2^^~1~^~A~^^^1^73.^77.^1^^^^~04/01/2006~ -~35015~^~307~^6.^3^3.^~11~^~JO~^^^1^3.^10.^1^-33.^46.^~4~^~04/01/2006~ -~35015~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35015~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35015~^~321~^27.^2^^~1~^~A~^^^1^16.^39.^1^^^^~04/01/2006~ -~35015~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2006~ -~35015~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2006~ -~35015~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2006~ -~35015~^~417~^11.^2^^~1~^~A~^^^1^3.^18.^1^^^^~04/01/2006~ -~35015~^~431~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~04/01/2006~ -~35015~^~432~^11.^2^^~1~^~A~^^^1^3.^18.^1^^^^~04/01/2006~ -~35015~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35016~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35016~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35016~^~301~^236.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~305~^287.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~318~^1202.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35017~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35017~^~301~^15.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~318~^163.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~208~^786.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35021~^~268~^3290.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35021~^~305~^107.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~318~^240.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35022~^~268~^1365.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35022~^~301~^19.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~305~^58.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~318~^400.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35023~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35023~^~301~^4.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~305~^282.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~318~^28800.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35024~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35024~^~301~^7.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~304~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~305~^12.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~306~^84.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~307~^72.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~318~^1607.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~417~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~432~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35025~^~268~^1088.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35025~^~301~^6.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~305~^150.^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35025~^~318~^190.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35026~^~268~^346.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35026~^~301~^121.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~318~^1650.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35027~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35027~^~301~^18.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~305~^35.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~318~^210.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35028~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35028~^~301~^30.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35029~^~268~^232.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35029~^~301~^20.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~305~^15.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~306~^140.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~307~^26.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~318~^1060.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35030~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35030~^~301~^26.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~305~^21.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~318~^90.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35034~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35034~^~301~^12.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~305~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~318~^1020.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35038~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35038~^~301~^13.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~305~^166.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~306~^251.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~307~^50.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~318~^5720.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35039~^~268~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35039~^~301~^161.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~307~^61.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~318~^89.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35040~^~268~^1306.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35040~^~301~^29.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~305~^808.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35041~^~268~^308.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35041~^~301~^19.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~307~^61.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~318~^57.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~601~^40.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35042~^~268~^2048.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35042~^~305~^684.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~318~^1300.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35043~^~268~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35043~^~301~^15.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~307~^10.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~318~^79.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35046~^~268~^330.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35046~^~306~^433.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~307~^59.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~318~^230.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35047~^~268~^1776.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35047~^~301~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~305~^123.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~318~^9100.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35048~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35048~^~301~^12.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~304~^6.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~305~^16.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~306~^100.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~307~^222.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~318~^1043.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~417~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~432~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35049~^~301~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~304~^23.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~305~^165.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~306~^317.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~307~^65.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~318~^0.^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35049~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~601~^54.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35050~^~268~^566.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35050~^~305~^67.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~318~^16.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~35051~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~35051~^~301~^7.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~304~^20.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~305~^429.^0^^~13~^~AI~^^^^^^^^^^~02/01/2008~ -~35051~^~306~^235.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~307~^70.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~318~^96000.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~417~^217.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~432~^217.^1^^~13~^~AI~^^^^^^^^^^~05/01/2004~ -~35051~^~601~^389.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35052~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35052~^~301~^22.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~305~^175.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35053~^~268~^436.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35053~^~301~^17.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~305~^150.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35054~^~268~^236.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35054~^~301~^35.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~305~^158.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~318~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~601~^41.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35055~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~268~^1469.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35055~^~305~^784.^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~318~^1310.^1^^~13~^~AI~^^^^^^^^^^~06/01/2006~ -~35055~^~320~^393.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35056~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35056~^~268~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35056~^~301~^10.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~305~^198.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~318~^1400.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~601~^100.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35057~^~208~^899.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35057~^~268~^3760.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35057~^~301~^0.^3^0.^~6~^~JA~^^^3^0.^0.^2^0.^0.^~1, 4~^~05/01/2007~ -~35057~^~304~^0.^2^^~1~^~A~^^^2^0.^0.^1^^^~1~^~05/01/2007~ -~35057~^~305~^0.^3^0.^~6~^~JA~^^^3^0.^0.^2^0.^0.^~1, 4~^~05/01/2007~ -~35057~^~306~^0.^2^^~1~^~A~^^^2^0.^0.^1^^^~1~^~05/01/2007~ -~35057~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35057~^~318~^33.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35057~^~319~^10.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35057~^~320~^10.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35057~^~324~^30.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35057~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35057~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35057~^~601~^52.^3^0.^~1~^~A~^^^2^52.^52.^2^50.^53.^~4~^~05/01/2007~ -~35058~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35058~^~268~^279.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35058~^~301~^53.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35058~^~305~^103.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35059~^~268~^568.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35059~^~301~^16.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~305~^218.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~318~^350.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35060~^~268~^651.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35060~^~301~^28.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~305~^412.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~318~^860.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35063~^~268~^255.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35063~^~305~^87.^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35063~^~318~^4480.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35064~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35064~^~305~^46.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~318~^780.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35065~^~268~^1113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35065~^~301~^38.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~318~^50.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35066~^~268~^627.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35066~^~301~^60.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~318~^319.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35067~^~268~^1797.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35067~^~301~^23.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~306~^700.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~307~^693.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~318~^527.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~601~^107.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35068~^~268~^651.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35068~^~301~^28.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~305~^412.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~318~^3140.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35069~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35069~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35069~^~301~^8.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35069~^~318~^280.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35070~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35070~^~301~^30.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~318~^310.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35071~^~268~^596.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35071~^~301~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~305~^238.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~307~^110.^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35071~^~318~^385.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35071~^~319~^115.^0^^~4~^~T~^^^^^^^^^^~05/01/2006~ -~35071~^~320~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35071~^~601~^90.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35072~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35072~^~301~^13.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~305~^3.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~318~^36600.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~320~^4880.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~35073~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35073~^~268~^300.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35073~^~301~^35.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~304~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~305~^112.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~306~^128.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~307~^30.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~318~^40.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~417~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~432~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~601~^12.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35074~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35074~^~301~^2.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~305~^55.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~318~^11900.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35075~^~268~^466.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35075~^~305~^175.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~318~^220.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35078~^~268~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35078~^~301~^2.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~304~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~305~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~306~^9.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~307~^132.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~318~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~417~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~432~^1.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~601~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35079~^~268~^1052.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35079~^~305~^415.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~318~^410.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~35080~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~35080~^~301~^7.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~318~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~35080~^~601~^18.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35081~^~268~^833.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35081~^~301~^18.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~305~^122.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~318~^170.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~601~^80.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35082~^~268~^1180.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35082~^~305~^125.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~318~^550.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35083~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35083~^~305~^208.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~318~^81200.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35084~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35084~^~301~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~318~^2600.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~601~^120.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~208~^870.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35085~^~268~^3640.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35085~^~305~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~601~^150.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35086~^~268~^1947.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35086~^~301~^5.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~305~^87.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~318~^750.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~601~^54.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35087~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35087~^~301~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~305~^0.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~318~^2810.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35088~^~268~^435.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35088~^~301~^53.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~305~^297.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~318~^1510.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35089~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35089~^~304~^33.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~305~^280.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~306~^317.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~307~^51.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~318~^540.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~601~^55.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35091~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35091~^~268~^447.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35091~^~305~^242.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35092~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35092~^~268~^2476.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35092~^~305~^58.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35093~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35093~^~301~^130.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~305~^126.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~318~^18700.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35130~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~268~^226.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~301~^96.^2^^~1~^~A~^^^1^73.^118.^1^^^^~04/01/2004~ -~35130~^~304~^20.^2^^~1~^~A~^^^1^18.^22.^1^^^^~04/01/2004~ -~35130~^~305~^39.^2^^~1~^~A~^^^1^37.^41.^1^^^^~04/01/2004~ -~35130~^~306~^58.^2^^~1~^~A~^^^1^57.^59.^1^^^^~04/01/2004~ -~35130~^~307~^8.^2^^~1~^~A~^^^1^4.^12.^1^^^~1~^~04/01/2004~ -~35130~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35131~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~268~^1666.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~301~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~04/01/2004~ -~35131~^~304~^133.^2^^~1~^~A~^^^1^110.^155.^1^^^^~04/01/2004~ -~35131~^~305~^354.^2^^~1~^~A~^^^1^341.^366.^1^^^^~04/01/2004~ -~35131~^~306~^393.^2^^~1~^~A~^^^1^377.^408.^1^^^^~04/01/2004~ -~35131~^~307~^7.^2^^~1~^~A~^^^1^4.^11.^1^^^~1~^~04/01/2004~ -~35131~^~417~^58.^2^^~1~^~A~^^^1^46.^69.^1^^^^~04/01/2004~ -~35131~^~432~^58.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35132~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35132~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~306~^140.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~307~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~305~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~306~^28.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~307~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~304~^124.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~305~^337.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~306~^511.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~417~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~432~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~301~^14.^3^2.^~1~^~A~^^^1^10.^19.^2^1.^25.^~2, 3~^~04/01/2004~ -~35135~^~304~^123.^3^3.^~1~^~A~^^^1^117.^129.^2^107.^137.^~2, 3~^~04/01/2004~ -~35135~^~305~^312.^3^22.^~1~^~A~^^^1^268.^345.^2^213.^410.^~2, 3~^~04/01/2004~ -~35135~^~306~^532.^3^39.^~1~^~A~^^^1^462.^600.^2^360.^703.^~2, 3~^~04/01/2004~ -~35135~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~04/01/2004~ -~35135~^~417~^100.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~432~^100.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~268~^1665.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~304~^125.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~305~^280.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~306~^443.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~417~^32.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~35136~^~432~^32.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~35136~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~35137~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~268~^1606.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~304~^107.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~305~^225.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~306~^322.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~417~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~35137~^~432~^34.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~35137~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~35138~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35138~^~268~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35138~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~305~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~306~^205.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~307~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35139~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35139~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~268~^816.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~304~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~305~^164.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~306~^320.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~307~^126.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~417~^98.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~432~^98.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35141~^~268~^978.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35141~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~305~^272.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~306~^409.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~307~^135.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35141~^~601~^109.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35142~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~268~^1380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~301~^57.^3^16.^~1~^~A~^^^1^30.^87.^2^-13.^127.^~2, 3~^~04/01/2004~ -~35142~^~304~^18.^3^1.^~1~^~A~^^^1^15.^21.^2^10.^25.^~2, 3~^~04/01/2004~ -~35142~^~305~^123.^3^20.^~1~^~A~^^^1^99.^164.^2^35.^211.^~2, 3~^~04/01/2004~ -~35142~^~306~^77.^3^4.^~1~^~A~^^^1^70.^84.^2^58.^95.^~2, 3~^~04/01/2004~ -~35142~^~307~^329.^3^84.^~1~^~A~^^^1^161.^425.^2^-33.^690.^~2, 3~^~04/01/2004~ -~35142~^~417~^122.^3^12.^~1~^~A~^^^1^100.^142.^2^69.^174.^~2, 3~^~04/01/2004~ -~35142~^~431~^105.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35142~^~432~^17.^1^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35142~^~435~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35142~^~601~^7.^3^1.^~1~^~A~^^^1^5.^9.^2^1.^12.^~2, 3~^~04/01/2004~ -~35143~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35143~^~268~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35143~^~301~^70.^2^^~1~^~A~^^^1^60.^81.^1^^^^~04/01/2004~ -~35143~^~304~^19.^2^^~1~^~A~^^^1^18.^20.^1^^^^~04/01/2004~ -~35143~^~305~^146.^2^^~1~^~A~^^^1^128.^164.^1^^^^~04/01/2004~ -~35143~^~306~^105.^2^^~1~^~A~^^^1^85.^126.^1^^^^~04/01/2004~ -~35143~^~307~^482.^2^^~1~^~A~^^^1^477.^487.^1^^^^~04/01/2004~ -~35143~^~417~^98.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~431~^87.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~432~^11.^1^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35143~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35144~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~268~^422.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~301~^14.^2^^~1~^~A~^^^1^10.^18.^1^^^^~04/01/2004~ -~35144~^~304~^8.^2^^~1~^~A~^^^1^5.^12.^1^^^^~04/01/2004~ -~35144~^~305~^63.^2^^~1~^~A~^^^1^44.^83.^1^^^^~04/01/2004~ -~35144~^~306~^82.^2^^~1~^~A~^^^1^55.^109.^1^^^^~04/01/2004~ -~35144~^~307~^46.^2^^~1~^~A~^^^1^28.^64.^1^^^^~04/01/2004~ -~35144~^~318~^0.^2^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35144~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~ -~35144~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35144~^~417~^41.^2^^~1~^~A~^^^1^19.^63.^1^^^^~04/01/2004~ -~35144~^~432~^41.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35144~^~601~^28.^2^^~1~^~A~^^^1^21.^35.^1^^^^~04/01/2004~ -~35145~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~305~^82.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~306~^118.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~307~^45.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35145~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35145~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35146~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35146~^~301~^38.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~305~^111.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~306~^199.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35146~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35146~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~432~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35146~^~601~^43.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~268~^639.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~301~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~305~^99.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~306~^131.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~307~^427.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35147~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~35147~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~601~^17.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~268~^470.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~301~^22.^2^^~1~^~A~^^^1^14.^31.^1^^^^~04/01/2004~ -~35148~^~304~^24.^2^^~1~^~A~^^^1^22.^25.^1^^^^~04/01/2004~ -~35148~^~305~^107.^2^^~1~^~A~^^^1^94.^121.^1^^^^~04/01/2004~ -~35148~^~306~^177.^2^^~1~^~A~^^^1^135.^219.^1^^^^~04/01/2004~ -~35148~^~307~^104.^2^^~1~^~A~^^^1^29.^178.^1^^^^~04/01/2004~ -~35148~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35149~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~35149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~35149~^~301~^20.^4^1.^~1~^~A~^^^1^5.^27.^2^14.^24.^~2, 3~^~04/01/2006~ -~35149~^~304~^26.^4^0.^~1~^~A~^^^1^22.^28.^2^23.^27.^~2, 3~^~04/01/2006~ -~35149~^~305~^244.^4^4.^~1~^~A~^^^1^220.^262.^2^226.^260.^~2, 3~^~04/01/2006~ -~35149~^~306~^449.^4^12.^~1~^~A~^^^1^420.^487.^2^396.^501.^~2, 3~^~04/01/2006~ -~35149~^~307~^79.^4^3.^~1~^~A~^^^1^55.^98.^2^62.^95.^~2, 3~^~04/01/2006~ -~35149~^~318~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35149~^~319~^47.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35149~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~417~^15.^4^2.^~1~^~A~^^^1^9.^24.^2^5.^25.^~2, 3~^~04/01/2006~ -~35149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~35149~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35149~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35149~^~601~^72.^4^0.^~1~^~A~^^^1^53.^79.^2^70.^73.^~2, 3~^~04/01/2006~ -~35150~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~268~^587.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35150~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~305~^240.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~306~^380.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35150~^~319~^30.^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35150~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~432~^13.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35150~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35150~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~268~^641.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35151~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~305~^240.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~306~^360.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35151~^~319~^58.^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35151~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35151~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35152~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~305~^230.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~318~^105.^0^^~4~^~NC~^~35171~^^^^^^^^^~04/01/2006~ -~35152~^~319~^32.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35152~^~320~^32.^0^^~4~^~NC~^~35171~^^^^^^^^^~05/01/2009~ -~35152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~432~^18.^0^^~4~^~BFSN~^~35171~^^^^^^^^^~04/01/2006~ -~35152~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35152~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35153~^~301~^42.^2^^~11~^~JO~^^^2^6.^79.^1^^^^~06/01/2006~ -~35153~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~305~^208.^2^^~11~^~JO~^^^2^186.^230.^1^^^^~06/01/2006~ -~35153~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~307~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~318~^453.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35153~^~319~^136.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35153~^~320~^136.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35153~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35153~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35154~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35154~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~305~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~306~^110.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~318~^496.^1^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~35154~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35154~^~321~^277.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~322~^41.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~417~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35154~^~432~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35155~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35155~^~268~^255.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35155~^~301~^13.^2^^~1~^~A~^^^2^8.^18.^^^^^~04/01/2006~ -~35155~^~304~^7.^2^^~1~^~A~^^^2^6.^8.^^^^^~04/01/2006~ -~35155~^~305~^29.^2^^~1~^~A~^^^2^18.^40.^^^^^~04/01/2006~ -~35155~^~306~^75.^2^^~1~^~A~^^^2^74.^75.^^^^^~04/01/2006~ -~35155~^~307~^6.^2^^~1~^~A~^^^2^5.^8.^^^^^~04/01/2006~ -~35155~^~318~^115.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35155~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35155~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35155~^~321~^69.^2^^~1~^~A~^^^2^11.^127.^^^^~1~^~04/01/2006~ -~35155~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2006~ -~35155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35155~^~334~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2006~ -~35155~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35155~^~417~^33.^2^^~1~^~A~^^^2^11.^55.^^^^^~04/01/2006~ -~35155~^~431~^0.^2^^~7~^~Z~^^^2^0.^0.^^^^^~04/01/2006~ -~35155~^~432~^33.^2^^~1~^~A~^^^2^11.^55.^^^^^~04/01/2006~ -~35155~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35156~^~208~^894.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~268~^3740.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35156~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~318~^3480.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~35156~^~319~^1044.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~320~^1044.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~35156~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~324~^30.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35157~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~268~^674.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35157~^~301~^28.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~304~^32.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~305~^260.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~307~^390.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~318~^216.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35157~^~319~^65.^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~35157~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35157~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35157~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~268~^436.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~301~^46.^2^^~6~^~JA~^^^2^37.^54.^1^^^^~04/01/2006~ -~35158~^~304~^30.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~305~^306.^2^^~6~^~JA~^^^2^300.^312.^1^^^^~04/01/2006~ -~35158~^~306~^190.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~307~^160.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~318~^305.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~319~^91.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35158~^~320~^91.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35158~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~417~^53.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35158~^~432~^53.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35158~^~601~^439.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35160~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35160~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~304~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~305~^480.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~306~^710.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~307~^390.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~318~^173.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35160~^~319~^52.^0^^~4~^~O~^^^^^^^^^^~03/01/2006~ -~35160~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35160~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~35160~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35160~^~601~^141.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~268~^1132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~304~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~305~^550.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~306~^810.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~307~^950.^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~319~^11.^0^^~4~^~T~^^^^^^^^^^~03/01/2006~ -~35161~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~324~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2006~ -~35161~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35161~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35161~^~601~^164.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~268~^508.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35162~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~305~^230.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~306~^320.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~318~^312.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~35162~^~319~^94.^6^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~320~^94.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~35162~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~417~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~35162~^~601~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~268~^1535.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35164~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~304~^29.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~305~^240.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~306~^400.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~307~^120.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~318~^1947.^0^^~4~^~O~^^^^^^^^^^~06/01/2006~ -~35164~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35164~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35164~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35165~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~268~^1551.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35165~^~301~^810.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~304~^85.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~305~^1040.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~306~^1080.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~307~^200.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~318~^131.^0^^~4~^~NC~^~35089~^^^^^^^^^~07/01/2007~ -~35165~^~319~^39.^0^^~4~^~T~^^^^^^^^^^~05/01/2006~ -~35165~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35165~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35165~^~601~^266.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35166~^~301~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~304~^39.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~305~^350.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~306~^470.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~307~^600.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~318~^63.^0^^~4~^~BFSN~^~35190~^^^^^^^^^~07/01/2007~ -~35166~^~319~^19.^0^^~4~^~BFSN~^~35190~^^^^^^^^^~04/01/2006~ -~35166~^~320~^19.^0^^~4~^~NC~^~35190~^^^^^^^^^~07/01/2007~ -~35166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~417~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35166~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35166~^~601~^93.^0^^~4~^~BFFN~^~35190~^^^^^^^^^~04/01/2006~ -~35167~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35167~^~301~^54.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~305~^280.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~306~^400.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~307~^460.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~318~^50.^0^^~4~^~T~^^^^^^^^^^~06/01/2006~ -~35167~^~319~^14.^0^^~4~^~BFFN~^~35190~^^^^^^^^^~06/01/2006~ -~35167~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35167~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~324~^80.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35167~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35167~^~601~^68.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35168~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~268~^876.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35168~^~301~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~304~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~305~^270.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~306~^390.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~307~^870.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~318~^41.^0^^~4~^~BFFN~^~35065~^^^^^^^^^~07/01/2007~ -~35168~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35168~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~324~^46.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35168~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35168~^~601~^67.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~35169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~35169~^~301~^140.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~305~^300.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~306~^390.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~35169~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~35169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~35169~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~35169~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35170~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~305~^140.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~306~^210.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~318~^648.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35170~^~319~^194.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~35170~^~320~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~601~^121.^0^^~4~^~BFSN~^~35056~^^^^^^^^^~06/01/2006~ -~35171~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~35171~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35171~^~301~^155.^2^^~1~^~A~^^^2^120.^190.^1^^^^~07/01/2007~ -~35171~^~304~^68.^2^^~1~^~A~^^^2^67.^69.^1^^^^~07/01/2007~ -~35171~^~305~^650.^2^^~1~^~A~^^^2^650.^650.^1^^^^~07/01/2007~ -~35171~^~306~^910.^2^^~1~^~A~^^^2^900.^920.^1^^^^~07/01/2007~ -~35171~^~307~^190.^2^^~1~^~A~^^^2^130.^250.^1^^^^~07/01/2007~ -~35171~^~318~^53.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35171~^~319~^16.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35171~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35171~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~417~^12.^2^^~1~^~A~^^^2^11.^12.^1^^^^~07/01/2007~ -~35171~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~35171~^~432~^12.^2^^~1~^~A~^^^2^11.^12.^1^^^^~07/01/2007~ -~35171~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~35171~^~601~^214.^2^^~1~^~A~^^^2^213.^214.^1^^^^~07/01/2007~ -~35172~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~268~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~305~^236.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~306~^379.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35172~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35172~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35172~^~601~^70.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35173~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~305~^196.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~306~^328.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~35173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35174~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35174~^~268~^408.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35174~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~305~^200.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~306~^355.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~35175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35175~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~304~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~305~^510.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~306~^960.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~307~^130.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35175~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~35175~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35176~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~305~^246.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~306~^376.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~307~^41.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35176~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~601~^82.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~268~^409.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35177~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~305~^215.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~306~^367.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35177~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~268~^619.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35178~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~305~^236.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~306~^369.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~307~^50.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35178~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35178~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35178~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35179~^~301~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~305~^45.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35179~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35179~^~321~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35179~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~268~^1597.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~301~^85.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~304~^84.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~305~^976.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~306~^1720.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~307~^2850.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35180~^~319~^64.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~35180~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~324~^628.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~601~^227.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~301~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~305~^249.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~306~^365.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~307~^118.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~318~^65.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~35181~^~319~^20.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~35181~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~324~^604.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~305~^62.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~306~^110.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~307~^130.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35182~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35182~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~417~^33.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~431~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~432~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35182~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35182~^~601~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~208~^419.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35183~^~268~^1752.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~304~^149.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~305~^344.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~306~^775.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~318~^261.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35183~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35183~^~321~^117.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~322~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35183~^~334~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~417~^111.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~432~^111.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~268~^1614.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~35184~^~301~^1600.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~304~^89.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~305~^1400.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~306~^1000.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~307~^420.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~318~^463.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35184~^~319~^139.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~320~^139.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~35184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~601~^249.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~35185~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~268~^1292.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~301~^52.^2^^~1~^~A~^^^1^47.^57.^1^^^^~04/01/2006~ -~35185~^~304~^19.^2^^~1~^~A~^^^1^17.^21.^1^^^^~04/01/2006~ -~35185~^~305~^112.^2^^~1~^~A~^^^1^98.^126.^1^^^^~04/01/2006~ -~35185~^~306~^75.^2^^~1~^~A~^^^1^70.^80.^1^^^^~04/01/2006~ -~35185~^~307~^671.^2^^~1~^~A~^^^1^436.^906.^1^^^^~04/01/2006~ -~35185~^~417~^112.^2^^~1~^~A~^^^1^111.^112.^1^^^^~04/01/2006~ -~35185~^~431~^93.^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35185~^~432~^19.^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35185~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~601~^4.^2^^~1~^~A~^^^1^3.^5.^1^^^^~04/01/2006~ -~35186~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~301~^27.^2^^~1~^~A~^^^1^26.^28.^1^^^^~04/01/2006~ -~35186~^~304~^22.^2^^~1~^~A~^^^1^22.^22.^1^^^^~04/01/2006~ -~35186~^~305~^82.^2^^~1~^~A~^^^1^78.^85.^1^^^^~04/01/2006~ -~35186~^~306~^275.^2^^~1~^~A~^^^1^272.^278.^1^^^^~04/01/2006~ -~35186~^~307~^511.^2^^~1~^~A~^^^1^511.^511.^^^^^~04/01/2006~ -~35186~^~417~^70.^2^^~1~^~A~^^^1^65.^75.^1^^^^~04/01/2006~ -~35186~^~432~^70.^2^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35186~^~601~^11.^2^^~1~^~A~^^^1^9.^13.^1^^^^~04/01/2006~ -~35187~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~268~^1082.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~301~^67.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~305~^160.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~306~^100.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~307~^810.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~417~^162.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~431~^128.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~432~^34.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35187~^~435~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~268~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~301~^33.^3^5.^~1~^~A~^^^1^24.^43.^2^9.^56.^~4~^~04/01/2006~ -~35188~^~304~^29.^3^0.^~1~^~A~^^^1^29.^31.^2^26.^32.^~4~^~04/01/2006~ -~35188~^~305~^275.^3^8.^~1~^~A~^^^1^265.^292.^2^237.^312.^~4~^~04/01/2006~ -~35188~^~306~^501.^3^0.^~1~^~A~^^^1^499.^502.^2^496.^504.^~4~^~04/01/2006~ -~35188~^~307~^86.^3^5.^~1~^~A~^^^1^78.^97.^2^62.^110.^~4~^~04/01/2006~ -~35188~^~318~^160.^0^^~4~^~NC~^~35149~^^^^^^^^^~04/01/2006~ -~35188~^~319~^48.^0^^~4~^~BFSN~^~35149~^^^^^^^^^~04/01/2006~ -~35188~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~417~^22.^3^3.^~1~^~A~^^^1^15.^26.^2^6.^38.^~4~^~04/01/2006~ -~35188~^~432~^22.^3^3.^~1~^~A~^^^1^15.^26.^2^6.^38.^^~04/01/2006~ -~35188~^~601~^75.^3^4.^~1~^~A~^^^1^70.^84.^2^56.^93.^~4~^~04/01/2006~ -~35190~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~268~^1445.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35190~^~301~^58.^2^^~1~^~A~^^^2^34.^81.^1^^^^~07/01/2007~ -~35190~^~304~^58.^2^^~1~^~A~^^^2^51.^64.^1^^^^~07/01/2007~ -~35190~^~305~^650.^2^^~1~^~A~^^^2^570.^730.^1^^^^~07/01/2007~ -~35190~^~306~^960.^2^^~1~^~A~^^^2^940.^980.^1^^^^~07/01/2007~ -~35190~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35190~^~318~^103.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35190~^~319~^31.^2^^~1~^~A~^^^2^30.^32.^1^^^^~07/01/2007~ -~35190~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~417~^9.^2^^~1~^~A~^^^2^4.^14.^1^^^^~07/01/2007~ -~35190~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~432~^9.^2^^~1~^~A~^^^2^4.^14.^1^^^^~07/01/2007~ -~35190~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35190~^~601~^155.^2^^~1~^~A~^^^2^141.^168.^1^^^^~07/01/2007~ -~35192~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35192~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~268~^286.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35192~^~301~^417.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~304~^55.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~305~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35192~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35192~^~321~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35192~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35192~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35193~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35193~^~301~^460.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~304~^39.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~306~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~318~^113.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35193~^~321~^68.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35193~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35193~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~268~^1427.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35194~^~301~^770.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~304~^207.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~305~^37.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~306~^767.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35194~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35194~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~35194~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35194~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35195~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35195~^~268~^106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35195~^~301~^54.^2^^~1~^~A~^^^1^38.^70.^1^^^^~05/01/2007~ -~35195~^~304~^63.^2^^~1~^~A~^^^1^31.^95.^1^^^^~05/01/2007~ -~35195~^~305~^45.^2^^~1~^~A~^^^1^36.^54.^1^^^^~05/01/2007~ -~35195~^~306~^309.^2^^~1~^~A~^^^1^258.^359.^1^^^^~05/01/2007~ -~35195~^~307~^109.^2^^~1~^~A~^^^1^73.^144.^1^^^^~05/01/2007~ -~35195~^~318~^11.^2^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35195~^~320~^1.^2^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35195~^~321~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~05/01/2007~ -~35195~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~35195~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~35195~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~35195~^~338~^76.^2^^~1~^~A~^^^1^50.^101.^1^^^^~05/01/2007~ -~35195~^~417~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~05/01/2007~ -~35195~^~432~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~05/01/2007~ -~35196~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35196~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35196~^~301~^366.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~304~^163.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~305~^63.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~306~^1270.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~318~^1952.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35196~^~320~^98.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35196~^~321~^1171.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35196~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35196~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35196~^~338~^3616.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~417~^48.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~432~^48.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35197~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35197~^~301~^349.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~304~^164.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~305~^56.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~306~^1070.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35197~^~318~^3882.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35197~^~320~^194.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35197~^~321~^2329.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35197~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35197~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35197~^~338~^6162.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35198~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35198~^~301~^180.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~304~^69.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~305~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~306~^130.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35199~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35199~^~268~^379.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35200~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35200~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35200~^~301~^130.^2^^~1~^~A~^^^1^127.^133.^1^^^^~05/01/2007~ -~35200~^~304~^63.^2^^~1~^~A~^^^1^58.^67.^1^^^^~05/01/2007~ -~35200~^~305~^31.^2^^~1~^~A~^^^1^28.^34.^1^^^^~05/01/2007~ -~35200~^~306~^156.^2^^~1~^~A~^^^1^153.^159.^1^^^^~05/01/2007~ -~35200~^~307~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^~1~^~05/01/2007~ -~35200~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35201~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35201~^~268~^541.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35201~^~301~^103.^2^^~1~^~A~^^^1^98.^109.^1^^^^~05/01/2007~ -~35201~^~304~^49.^2^^~1~^~A~^^^1^49.^50.^1^^^^~05/01/2007~ -~35201~^~305~^20.^2^^~1~^~A~^^^1^20.^21.^1^^^^~05/01/2007~ -~35201~^~306~^108.^2^^~1~^~A~^^^1^94.^122.^1^^^^~05/01/2007~ -~35201~^~307~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^~1~^~05/01/2007~ -~35202~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35202~^~268~^261.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35202~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~305~^41.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~306~^175.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~318~^50.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35202~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35202~^~321~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~334~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~338~^130.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35203~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35203~^~301~^169.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~304~^69.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~305~^61.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~306~^429.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~318~^4345.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35203~^~320~^217.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35203~^~321~^2350.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~322~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~334~^483.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~337~^6800.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~338~^2001.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35204~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35204~^~268~^677.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35204~^~301~^60.^3^6.^~1~^~A~^^^1^49.^72.^2^30.^88.^~4~^~05/01/2007~ -~35204~^~304~^27.^3^1.^~1~^~A~^^^1^25.^29.^2^21.^31.^~4~^~05/01/2007~ -~35204~^~305~^67.^3^6.^~1~^~A~^^^1^60.^79.^2^39.^93.^~4~^~05/01/2007~ -~35204~^~306~^379.^3^48.^~1~^~A~^^^1^317.^474.^2^170.^586.^~2, 3~^~05/01/2007~ -~35204~^~307~^5.^3^1.^~1~^~A~^^^1^4.^7.^2^0.^9.^~1, 4~^~05/01/2007~ -~35204~^~318~^168.^3^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35204~^~320~^8.^3^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35204~^~321~^90.^3^18.^~1~^~A~^^^1^55.^117.^2^11.^168.^~4~^~05/01/2007~ -~35204~^~322~^2.^3^1.^~1~^~A~^^^1^0.^4.^2^-2.^6.^~1, 4~^~05/01/2007~ -~35204~^~334~^19.^3^2.^~1~^~A~^^^1^17.^24.^2^8.^30.^~4~^~05/01/2007~ -~35204~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~05/01/2007~ -~35204~^~338~^347.^3^27.^~1~^~A~^^^1^293.^383.^2^229.^463.^~4~^~05/01/2007~ -~35204~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35204~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35205~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35205~^~268~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35205~^~301~^481.^2^^~1~^~A~^^^1^452.^510.^1^^^^~05/01/2007~ -~35205~^~304~^57.^2^^~1~^~A~^^^1^54.^60.^1^^^^~05/01/2007~ -~35205~^~305~^71.^2^^~1~^~A~^^^1^56.^87.^1^^^^~05/01/2007~ -~35205~^~306~^334.^2^^~1~^~A~^^^1^316.^352.^1^^^^~05/01/2007~ -~35205~^~307~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^~1~^~05/01/2007~ -~35205~^~318~^2011.^2^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35205~^~320~^101.^2^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~35205~^~321~^1150.^2^^~1~^~A~^^^1^1098.^1202.^1^^^^~05/01/2007~ -~35205~^~322~^114.^2^^~1~^~A~^^^1^56.^171.^1^^^^~05/01/2007~ -~35205~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~35205~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~ -~35205~^~338~^4178.^2^^~1~^~A~^^^1^3338.^5018.^1^^^^~05/01/2007~ -~35205~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35205~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35205~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35205~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~35206~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35206~^~268~^381.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35206~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~304~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~305~^30.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~306~^364.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~318~^3464.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35206~^~320~^173.^1^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35206~^~321~^1930.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~322~^140.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~334~^157.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~338~^920.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~268~^2262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~304~^152.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~305~^345.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~306~^458.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~307~^310.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35211~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35211~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~05/01/2007~ -~35211~^~304~^24.^2^^~1~^~A~^^^1^22.^26.^^^^^~05/01/2007~ -~35211~^~305~^215.^2^^~1~^~A~^^^1^200.^230.^1^^^^~05/01/2007~ -~35211~^~306~^245.^2^^~1~^~A~^^^1^170.^320.^1^^^^~05/01/2007~ -~35211~^~307~^45.^2^^~1~^~A~^^^1^38.^52.^1^^^^~05/01/2007~ -~35211~^~318~^312.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35211~^~319~^94.^6^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35211~^~320~^94.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35211~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~417~^4.^2^^~1~^~A~^^^1^3.^4.^1^^^^~05/01/2007~ -~35211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35211~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35211~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35211~^~601~^107.^2^^~1~^~A~^^^1^81.^134.^1^^^^~05/01/2007~ -~35225~^~208~^470.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35225~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35225~^~304~^16.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~305~^134.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~306~^206.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~307~^24.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~318~^257.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~320~^34.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~35225~^~601~^26.^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35226~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35226~^~268~^572.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35226~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~305~^396.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~306~^291.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~307~^88.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~601~^359.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35227~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35227~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~305~^301.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~306~^253.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~307~^231.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~35227~^~601~^390.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35228~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35228~^~268~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35228~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~305~^263.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~306~^319.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~307~^115.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35229~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35229~^~268~^503.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35229~^~301~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^4.^7.^~2, 3~^~07/01/2008~ -~35229~^~304~^22.^4^0.^~1~^~A~^^^1^20.^24.^3^19.^25.^~2, 3~^~07/01/2008~ -~35229~^~305~^253.^4^3.^~1~^~A~^^^1^247.^263.^3^241.^264.^~2, 3~^~07/01/2008~ -~35229~^~306~^406.^3^22.^~1~^~A~^^^1^360.^433.^2^306.^504.^~2, 3~^~07/01/2008~ -~35229~^~307~^62.^4^3.^~1~^~A~^^^1^52.^66.^3^50.^72.^~2, 3~^~07/01/2008~ -~35229~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~35229~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~35229~^~601~^64.^2^^~1~^~A~^^^1^59.^68.^1^^^^~07/01/2008~ -~35230~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35230~^~268~^1014.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35230~^~301~^6.^2^^~1~^~A~^^^1^6.^6.^^^^^~07/01/2008~ -~35230~^~304~^19.^2^^~1~^~A~^^^1^19.^20.^1^^^^~07/01/2008~ -~35230~^~305~^214.^2^^~1~^~A~^^^1^198.^230.^1^^^^~07/01/2008~ -~35230~^~306~^346.^2^^~1~^~A~^^^1^302.^390.^1^^^^~07/01/2008~ -~35230~^~307~^80.^2^^~1~^~A~^^^1^69.^90.^1^^^^~07/01/2008~ -~35230~^~320~^89.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~324~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~35230~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35231~^~208~^850.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35231~^~268~^3555.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35231~^~318~^323.^1^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~35231~^~319~^97.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35231~^~320~^97.^1^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~35231~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~35231~^~601~^95.^2^^~1~^~A~^^^1^80.^111.^1^^^^~07/01/2008~ -~35232~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35232~^~268~^1512.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~301~^27.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~304~^86.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~305~^229.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~306~^553.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~307~^25.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~35232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35232~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~35232~^~638~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~35232~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~35232~^~641~^35.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~35233~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~35233~^~268~^2629.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~35233~^~301~^441.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~304~^235.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~305~^411.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~306~^738.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~35234~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~268~^1630.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~301~^184.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~304~^181.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~305~^374.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~306~^604.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~318~^3.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~338~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35235~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~301~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~306~^187.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~307~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~35235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35235~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~35235~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~35235~^~639~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~35235~^~641~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~35236~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~268~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~301~^7.^3^2.^~1~^~A~^^^1^2.^11.^2^-3.^17.^~2, 3~^~04/01/2010~ -~35236~^~304~^11.^3^3.^~1~^~A~^^^1^6.^16.^2^-1.^24.^~2, 3~^~04/01/2010~ -~35236~^~305~^25.^3^6.^~1~^~A~^^^1^13.^36.^2^-3.^53.^~2, 3~^~04/01/2010~ -~35236~^~306~^86.^3^19.^~1~^~A~^^^1^55.^123.^2^0.^171.^~2, 3~^~04/01/2010~ -~35236~^~307~^45.^3^8.^~1~^~A~^^^1^32.^61.^2^7.^81.^~2, 3~^~04/01/2010~ -~35236~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~321~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2010~ -~35236~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~04/01/2010~ -~35236~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~338~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2010~ -~35236~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~638~^2.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^2.^~2, 3~^~04/01/2010~ -~35236~^~639~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2010~ -~35236~^~641~^4.^3^0.^~1~^~A~^^^1^4.^5.^2^2.^6.^~2, 3~^~04/01/2010~ -~35237~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~268~^704.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~301~^18.^3^0.^~1~^~A~^^^1^17.^19.^2^14.^20.^~2, 3~^~04/01/2010~ -~35237~^~304~^35.^3^1.^~1~^~A~^^^1^34.^38.^2^30.^40.^~2, 3~^~04/01/2010~ -~35237~^~305~^141.^3^5.^~1~^~A~^^^1^132.^151.^2^116.^164.^~2, 3~^~04/01/2010~ -~35237~^~306~^250.^3^8.^~1~^~A~^^^1^237.^267.^2^211.^288.^~2, 3~^~04/01/2010~ -~35237~^~307~^298.^3^22.^~1~^~A~^^^1^259.^337.^2^200.^394.^~2, 3~^~04/01/2010~ -~35237~^~318~^1548.^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35237~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~320~^81.^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35237~^~321~^740.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~322~^17.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~334~^342.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35237~^~338~^616.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~601~^27.^3^0.^~1~^~A~^^^1^26.^29.^2^23.^31.^~2, 3~^~04/01/2010~ -~35238~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35238~^~268~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35238~^~301~^5.^3^0.^~1~^~A~^^^1^5.^5.^^^^~2, 3~^~04/01/2010~ -~35238~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~35238~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~ -~35238~^~306~^44.^3^6.^~1~^~A~^^^1^35.^57.^2^15.^72.^~2, 3~^~04/01/2010~ -~35238~^~307~^27.^3^3.^~1~^~A~^^^1^20.^34.^2^10.^43.^~2, 3~^~04/01/2010~ -~35239~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~301~^174.^3^5.^~1~^~A~^^^1^168.^184.^2^151.^195.^~2, 3~^~04/01/2010~ -~35239~^~304~^32.^3^1.^~1~^~A~^^^1^31.^34.^2^27.^36.^~2, 3~^~04/01/2010~ -~35239~^~305~^339.^3^10.^~1~^~A~^^^1^328.^360.^2^292.^384.^~2, 3~^~04/01/2010~ -~35239~^~306~^132.^3^5.^~1~^~A~^^^1^126.^142.^2^109.^153.^~2, 3~^~04/01/2010~ -~35239~^~307~^663.^3^19.^~1~^~A~^^^1^641.^701.^2^580.^745.^~2, 3~^~04/01/2010~ -~35239~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~338~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~301~^34.^3^12.^~1~^~A~^^^1^21.^58.^2^-18.^86.^~2, 3~^~04/01/2010~ -~35240~^~304~^43.^3^2.^~1~^~A~^^^1^40.^49.^2^31.^55.^~2, 3~^~04/01/2010~ -~35240~^~305~^94.^3^3.^~1~^~A~^^^1^88.^100.^2^78.^108.^~2, 3~^~04/01/2010~ -~35240~^~306~^114.^3^12.^~1~^~A~^^^1^96.^139.^2^59.^169.^~2, 3~^~04/01/2010~ -~35240~^~307~^9.^3^0.^~1~^~A~^^^1^9.^10.^2^7.^11.^~2, 3~^~04/01/2010~ -~35240~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35240~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35240~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~338~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~36000~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~301~^16.^6^0.^~1~^~A~^^^1^16.^17.^5^15.^16.^~2, 3~^~03/01/2013~ -~36000~^~304~^24.^6^0.^~1~^~A~^^^1^23.^26.^5^22.^24.^~2, 3~^~03/01/2013~ -~36000~^~305~^202.^6^2.^~1~^~A~^^^1^193.^212.^5^194.^208.^~2, 3~^~03/01/2013~ -~36000~^~306~^350.^6^6.^~1~^~A~^^^1^334.^370.^5^334.^365.^~2, 3~^~03/01/2013~ -~36000~^~307~^604.^6^20.^~1~^~A~^^^1^535.^664.^5^550.^657.^~2, 3~^~03/01/2013~ -~36000~^~318~^22.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~601~^79.^3^1.^~1~^~A~^^^1^78.^82.^2^73.^84.^~2, 3~^~03/01/2013~ -~36001~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36001~^~268~^1352.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~301~^45.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~305~^271.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~306~^97.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~307~^838.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~601~^86.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36002~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~301~^19.^6^1.^~1~^~A~^^^1^16.^23.^5^16.^21.^~2, 3~^~03/01/2013~ -~36002~^~304~^29.^6^0.^~1~^~A~^^^1^27.^32.^5^26.^31.^~2, 3~^~03/01/2013~ -~36002~^~305~^137.^6^3.^~1~^~A~^^^1^130.^148.^5^128.^145.^~2, 3~^~03/01/2013~ -~36002~^~306~^538.^6^21.^~1~^~A~^^^1^466.^603.^5^482.^593.^~2, 3~^~03/01/2013~ -~36002~^~307~^618.^6^16.^~1~^~A~^^^1^558.^674.^5^575.^660.^~2, 3~^~03/01/2013~ -~36002~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36002~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36002~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36002~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36002~^~638~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36002~^~639~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36002~^~641~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36003~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~301~^79.^6^0.^~1~^~A~^^^1^76.^82.^5^77.^81.^~2, 3~^~03/01/2013~ -~36003~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~03/01/2013~ -~36003~^~305~^104.^6^1.^~1~^~A~^^^1^101.^109.^5^100.^106.^~2, 3~^~03/01/2013~ -~36003~^~306~^163.^6^3.^~1~^~A~^^^1^152.^174.^5^154.^172.^~2, 3~^~03/01/2013~ -~36003~^~307~^288.^6^3.^~1~^~A~^^^1^281.^299.^5^279.^296.^~2, 3~^~03/01/2013~ -~36003~^~318~^67.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36003~^~319~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36003~^~321~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36003~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36003~^~338~^95.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~601~^7.^3^0.^~1~^~A~^^^1^7.^7.^2^6.^7.^~2, 3~^~03/01/2013~ -~36004~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~268~^1323.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~301~^319.^6^7.^~1~^~A~^^^1^290.^347.^5^299.^338.^~2, 3~^~03/01/2013~ -~36004~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^18.^20.^~2, 3~^~04/01/2009~ -~36004~^~305~^307.^6^8.^~1~^~A~^^^1^270.^322.^5^285.^327.^~2, 3~^~03/01/2013~ -~36004~^~306~^106.^6^4.^~1~^~A~^^^1^90.^122.^5^93.^118.^~2, 3~^~03/01/2013~ -~36004~^~307~^838.^6^21.^~1~^~A~^^^1^756.^907.^5^782.^892.^~2, 3~^~03/01/2013~ -~36004~^~318~^432.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36004~^~319~^110.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~320~^113.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36004~^~321~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36004~^~334~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36004~^~338~^44.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~601~^33.^3^1.^~1~^~A~^^^1^30.^36.^2^25.^41.^~2, 3~^~03/01/2013~ -~36005~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~268~^1238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~301~^23.^6^0.^~1~^~A~^^^1^22.^25.^5^21.^24.^~2, 3~^~03/01/2013~ -~36005~^~304~^30.^6^0.^~1~^~A~^^^1^29.^32.^5^29.^31.^~2, 3~^~03/01/2013~ -~36005~^~305~^305.^6^3.^~1~^~A~^^^1^295.^318.^5^294.^315.^~2, 3~^~03/01/2013~ -~36005~^~306~^337.^6^3.^~1~^~A~^^^1^325.^349.^5^328.^345.^~2, 3~^~03/01/2013~ -~36005~^~307~^763.^6^6.^~1~^~A~^^^1^739.^780.^5^747.^779.^~2, 3~^~03/01/2013~ -~36005~^~318~^72.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36005~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36005~^~321~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36005~^~334~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~337~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~601~^51.^3^0.^~1~^~A~^^^1^50.^53.^2^47.^54.^~2, 3~^~03/01/2013~ -~36006~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~268~^1264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~301~^33.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~36006~^~305~^226.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~306~^122.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~307~^1210.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36007~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~268~^1238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~301~^19.^6^0.^~1~^~A~^^^1^15.^22.^5^15.^21.^~2, 3~^~03/01/2013~ -~36007~^~304~^31.^6^1.^~1~^~A~^^^1^27.^37.^5^27.^34.^~2, 3~^~03/01/2013~ -~36007~^~305~^121.^6^7.^~1~^~A~^^^1^91.^150.^5^100.^140.^~2, 3~^~03/01/2013~ -~36007~^~306~^604.^6^31.^~1~^~A~^^^1^494.^706.^5^522.^684.^~2, 3~^~03/01/2013~ -~36007~^~307~^409.^6^105.^~1~^~A~^^^1^106.^781.^5^137.^679.^~2, 3~^~03/01/2013~ -~36007~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36007~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36007~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36007~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~36007~^~638~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~36007~^~639~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~36007~^~641~^28.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~36008~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~268~^1395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~301~^351.^6^9.^~1~^~A~^^^1^323.^380.^5^327.^374.^~2, 3~^~03/01/2013~ -~36008~^~304~^23.^6^0.^~1~^~A~^^^1^21.^24.^5^21.^23.^~2, 3~^~03/01/2013~ -~36008~^~305~^290.^6^5.^~1~^~A~^^^1^269.^306.^5^274.^304.^~2, 3~^~03/01/2013~ -~36008~^~306~^97.^6^2.^~1~^~A~^^^1^91.^105.^5^90.^103.^~2, 3~^~03/01/2013~ -~36008~^~307~^738.^6^8.^~1~^~A~^^^1^719.^775.^5^715.^760.^~2, 3~^~03/01/2013~ -~36008~^~318~^331.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36008~^~319~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~320~^89.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36008~^~321~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36008~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36008~^~338~^51.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~601~^43.^3^0.^~1~^~A~^^^1^42.^44.^2^39.^45.^~2, 3~^~03/01/2013~ -~36009~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~301~^89.^6^3.^~1~^~A~^^^1^75.^99.^5^80.^97.^~2, 3~^~03/01/2013~ -~36009~^~304~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^12.^14.^~2, 3~^~03/01/2013~ -~36009~^~305~^131.^6^3.^~1~^~A~^^^1^119.^144.^5^121.^139.^~2, 3~^~03/01/2013~ -~36009~^~306~^88.^6^6.^~1~^~A~^^^1^70.^113.^5^71.^104.^~2, 3~^~03/01/2013~ -~36009~^~307~^482.^6^19.^~1~^~A~^^^1^407.^557.^5^430.^533.^~2, 3~^~03/01/2013~ -~36009~^~318~^92.^1^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36009~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~320~^25.^1^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36009~^~321~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~322~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36009~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36009~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36009~^~338~^68.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~601~^8.^3^1.^~1~^~A~^^^1^6.^11.^2^2.^13.^~2, 3~^~03/01/2013~ -~36010~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~268~^1382.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~301~^27.^6^3.^~1~^~A~^^^1^16.^34.^5^18.^36.^~2, 3~^~03/01/2013~ -~36010~^~304~^28.^6^1.^~1~^~A~^^^1^24.^31.^5^25.^30.^~2, 3~^~05/01/2009~ -~36010~^~305~^338.^6^13.^~1~^~A~^^^1^293.^390.^5^302.^373.^~2, 3~^~03/01/2013~ -~36010~^~306~^300.^6^10.^~1~^~A~^^^1^263.^327.^5^271.^327.^~2, 3~^~03/01/2013~ -~36010~^~307~^792.^6^40.^~1~^~A~^^^1^649.^875.^5^688.^896.^~2, 3~^~03/01/2013~ -~36010~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36010~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36010~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36010~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36010~^~338~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~601~^44.^3^1.^~1~^~A~^^^1^41.^47.^2^36.^52.^~2, 3~^~03/01/2013~ -~36011~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~268~^822.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~301~^7.^6^0.^~1~^~A~^^^1^6.^9.^5^6.^8.^~2, 3~^~05/01/2009~ -~36011~^~304~^28.^6^0.^~1~^~A~^^^1^27.^30.^5^26.^29.^~2, 3~^~03/01/2013~ -~36011~^~305~^240.^6^3.^~1~^~A~^^^1^231.^255.^5^231.^249.^~2, 3~^~03/01/2013~ -~36011~^~306~^379.^6^5.^~1~^~A~^^^1^370.^403.^5^365.^391.^~2, 3~^~03/01/2013~ -~36011~^~307~^232.^6^17.^~1~^~A~^^^1^192.^306.^5^187.^275.^~2, 3~^~03/01/2013~ -~36011~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36011~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36011~^~601~^95.^3^4.^~1~^~A~^^^1^87.^102.^2^77.^112.^~2, 3~^~03/01/2013~ -~36012~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~268~^1358.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~301~^334.^18^5.^~1~^~A~^^^2^290.^380.^12^322.^344.^~2, 3~^~04/01/2013~ -~36012~^~304~^21.^18^0.^~1~^~A~^^^2^19.^24.^11^20.^21.^~2, 3~^~04/01/2013~ -~36012~^~305~^318.^18^3.^~1~^~A~^^^2^269.^368.^14^309.^326.^~2, 3~^~04/01/2013~ -~36012~^~306~^108.^18^2.^~1~^~A~^^^2^90.^134.^16^103.^112.^~2, 3~^~04/01/2013~ -~36012~^~307~^861.^18^13.^~1~^~A~^^^2^719.^1060.^15^831.^890.^~2, 3~^~04/01/2013~ -~36012~^~318~^366.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36012~^~319~^97.^4^5.^~1~^~A~^^^2^87.^110.^1^24.^169.^~2, 3~^~04/01/2013~ -~36012~^~320~^99.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36012~^~321~^25.^3^4.^~1~^~A~^^^2^15.^37.^1^-27.^78.^~2, 3~^~04/01/2013~ -~36012~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^1^0.^1.^~1, 2, 3~^~04/01/2013~ -~36012~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~334~^2.^3^1.^~1~^~A~^^^2^1.^4.^1^-10.^15.^~2, 3~^~04/01/2013~ -~36012~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~338~^43.^3^2.^~1~^~A~^^^2^35.^51.^1^12.^74.^~2, 3~^~04/01/2013~ -~36012~^~417~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^18.^34.^~2, 3~^~04/01/2013~ -~36012~^~431~^14.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36012~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~601~^36.^9^1.^~1~^~A~^^^2^30.^44.^5^32.^39.^~2, 3~^~04/01/2013~ -~36013~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~301~^10.^18^0.^~1~^~A~^^^2^6.^17.^11^8.^12.^~2, 3~^~04/01/2013~ -~36013~^~304~^27.^18^0.^~1~^~A~^^^2^23.^31.^15^25.^27.^~2, 3~^~04/01/2013~ -~36013~^~305~^230.^18^4.^~1~^~A~^^^2^193.^279.^15^220.^240.^~2, 3~^~04/01/2013~ -~36013~^~306~^379.^18^4.^~1~^~A~^^^2^334.^445.^16^368.^389.^~2, 3~^~04/01/2013~ -~36013~^~307~^339.^18^40.^~1~^~A~^^^2^61.^664.^13^251.^426.^~2, 3~^~04/01/2013~ -~36013~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36013~^~319~^8.^3^1.^~1~^~A~^^^2^7.^11.^1^-10.^26.^~2, 3~^~04/01/2013~ -~36013~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36013~^~601~^87.^9^2.^~1~^~A~^^^2^78.^102.^6^80.^93.^~2, 3~^~04/01/2013~ -~36014~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~268~^1210.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~301~^17.^18^0.^~1~^~A~^^^2^13.^23.^12^16.^18.^~2, 3~^~04/01/2013~ -~36014~^~304~^29.^18^0.^~1~^~A~^^^2^26.^37.^14^27.^30.^~2, 3~^~04/01/2013~ -~36014~^~305~^124.^18^3.^~1~^~A~^^^2^91.^150.^14^116.^131.^~2, 3~^~04/01/2013~ -~36014~^~306~^545.^18^14.^~1~^~A~^^^2^448.^706.^14^512.^576.^~2, 3~^~04/01/2013~ -~36014~^~307~^357.^18^40.^~1~^~A~^^^2^22.^781.^11^268.^445.^~2, 3~^~04/01/2013~ -~36014~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36014~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2013~ -~36014~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36014~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36014~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36014~^~601~^1.^3^^~1~^~A~^^^0^0.^1.^^^^~2~^~06/01/2009~ -~36014~^~638~^7.^3^^~1~^~A~^^^0^7.^8.^^^^~2~^~06/01/2009~ -~36014~^~639~^11.^3^^~1~^~A~^^^0^11.^12.^^^^~2~^~06/01/2009~ -~36014~^~641~^27.^3^^~1~^~A~^^^0^27.^28.^^^^~2~^~06/01/2009~ -~36015~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~268~^1284.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~301~^21.^18^1.^~1~^~A~^^^2^11.^34.^11^17.^23.^~2, 3~^~06/01/2009~ -~36015~^~304~^29.^18^0.^~1~^~A~^^^2^24.^32.^16^27.^29.^~2, 3~^~06/01/2009~ -~36015~^~305~^306.^18^6.^~1~^~A~^^^2^244.^390.^16^291.^320.^~2, 3~^~04/01/2013~ -~36015~^~306~^322.^18^6.^~1~^~A~^^^2^263.^377.^16^308.^335.^~2, 3~^~04/01/2013~ -~36015~^~307~^809.^18^20.^~1~^~A~^^^2^649.^1060.^12^763.^853.^~2, 3~^~04/01/2013~ -~36015~^~318~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36015~^~319~^4.^3^1.^~1~^~A~^^^2^2.^7.^1^-16.^23.^~2, 3~^~04/01/2013~ -~36015~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36015~^~321~^9.^3^7.^~1~^~A~^^^2^1.^23.^1^-84.^102.^~2, 3~^~04/01/2013~ -~36015~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^1^-1.^1.^~1, 2, 3~^~04/01/2013~ -~36015~^~334~^4.^3^3.^~1~^~A~^^^2^0.^11.^1^-41.^49.^~2, 3~^~04/01/2013~ -~36015~^~337~^2.^3^1.^~1~^~A~^^^2^0.^6.^1^-22.^26.^~1, 2, 3~^~04/01/2013~ -~36015~^~338~^58.^3^6.^~1~^~A~^^^2^49.^72.^1^-26.^142.^~2, 3~^~04/01/2013~ -~36015~^~417~^7.^3^1.^~1~^~A~^^^1^4.^8.^2^1.^11.^~1, 2, 3~^~04/01/2013~ -~36015~^~432~^7.^3^1.^~1~^~A~^^^1^4.^8.^2^1.^11.^^~04/01/2013~ -~36015~^~601~^46.^9^1.^~1~^~A~^^^2^40.^53.^6^42.^48.^~2, 3~^~04/01/2013~ -~36016~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~262~^0.^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~263~^0.^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~268~^1288.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~301~^42.^4^3.^~1~^~A~^^^1^33.^47.^3^32.^51.^~2, 3~^~03/01/2014~ -~36016~^~304~^21.^4^2.^~1~^~A~^^^1^16.^26.^3^13.^27.^~2, 3~^~03/01/2014~ -~36016~^~305~^301.^4^66.^~1~^~A~^^^1^210.^498.^3^88.^513.^~2, 3~^~03/01/2014~ -~36016~^~306~^108.^4^9.^~1~^~A~^^^1^86.^128.^3^76.^140.^~2, 3~^~03/01/2014~ -~36016~^~307~^1125.^4^119.^~1~^~A~^^^1^838.^1400.^3^744.^1504.^~2, 3~^~03/01/2014~ -~36016~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~319~^3.^4^1.^~1~^~A~^^^1^1.^7.^3^-1.^7.^~2, 3~^~03/01/2014~ -~36016~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~321~^0.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~322~^0.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~324~^1.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~334~^0.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~337~^0.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~338~^10.^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~417~^43.^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~431~^28.^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~432~^15.^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36016~^~601~^87.^4^1.^~1~^~A~^^^1^83.^89.^3^82.^90.^~2, 3~^~03/01/2014~ -~36017~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~268~^634.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~301~^99.^24^5.^~1~^~A~^^^2^75.^158.^12^88.^110.^~2, 3~^~04/01/2013~ -~36017~^~304~^19.^24^0.^~1~^~A~^^^2^13.^25.^21^16.^20.^~2, 3~^~04/01/2013~ -~36017~^~305~^137.^24^7.^~1~^~A~^^^2^101.^217.^13^121.^153.^~2, 3~^~04/01/2013~ -~36017~^~306~^135.^24^7.^~1~^~A~^^^2^70.^193.^19^120.^150.^~2, 3~^~04/01/2013~ -~36017~^~307~^361.^24^16.^~1~^~A~^^^2^280.^557.^15^325.^396.^~2, 3~^~04/01/2013~ -~36017~^~318~^118.^4^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36017~^~319~^30.^4^12.^~1~^~A~^^^2^15.^65.^1^-118.^179.^~2, 3~^~04/01/2013~ -~36017~^~320~^31.^4^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36017~^~321~^9.^4^4.^~1~^~A~^^^2^4.^22.^1^-38.^57.^~2, 3~^~04/01/2013~ -~36017~^~322~^1.^4^0.^~1~^~A~^^^2^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2013~ -~36017~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~334~^0.^4^0.^~1~^~A~^^^2^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2013~ -~36017~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36017~^~338~^77.^4^19.^~1~^~A~^^^2^37.^110.^1^-75.^230.^~2, 3~^~04/01/2013~ -~36017~^~417~^34.^6^2.^~1~^~A~^^^1^24.^39.^5^28.^39.^~2, 3~^~04/01/2013~ -~36017~^~431~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~432~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36017~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36017~^~601~^10.^12^1.^~1~^~A~^^^2^5.^17.^6^6.^12.^~2, 3~^~04/01/2013~ -~36018~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~268~^844.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~301~^13.^6^0.^~1~^~A~^^^1^12.^17.^5^11.^15.^~2, 3~^~03/01/2013~ -~36018~^~304~^20.^6^0.^~1~^~A~^^^1^19.^22.^5^19.^21.^~2, 3~^~03/01/2013~ -~36018~^~305~^234.^6^3.^~1~^~A~^^^1^220.^244.^5^224.^243.^~2, 3~^~03/01/2013~ -~36018~^~306~^241.^6^7.^~1~^~A~^^^1^224.^276.^5^220.^260.^~2, 3~^~03/01/2013~ -~36018~^~307~^607.^6^30.^~1~^~A~^^^1^457.^651.^5^527.^685.^~2, 3~^~03/01/2013~ -~36018~^~318~^22.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36018~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36018~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~322~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36018~^~334~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36018~^~338~^100.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~601~^34.^3^0.^~1~^~A~^^^1^33.^36.^2^31.^37.^~2, 3~^~03/01/2013~ -~36019~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~301~^34.^6^4.^~1~^~A~^^^1^24.^52.^5^23.^45.^~2, 3~^~03/01/2013~ -~36019~^~304~^18.^6^0.^~1~^~A~^^^1^16.^20.^5^16.^19.^~2, 3~^~03/01/2013~ -~36019~^~305~^104.^6^6.^~1~^~A~^^^1^88.^124.^5^88.^120.^~2, 3~^~03/01/2013~ -~36019~^~306~^320.^6^6.^~1~^~A~^^^1^288.^334.^5^302.^337.^~2, 3~^~03/01/2013~ -~36019~^~307~^381.^6^16.^~1~^~A~^^^1^324.^430.^5^339.^422.^~2, 3~^~03/01/2013~ -~36019~^~318~^1436.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36019~^~319~^93.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~320~^149.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36019~^~321~^577.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36019~^~334~^200.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~337~^4639.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~338~^367.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~601~^45.^3^4.^~1~^~A~^^^1^38.^53.^2^26.^62.^~2, 3~^~03/01/2013~ -~36020~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~268~^1359.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~301~^26.^6^3.^~1~^~A~^^^1^16.^33.^5^18.^34.^~2, 3~^~03/01/2013~ -~36020~^~304~^29.^6^0.^~1~^~A~^^^1^27.^32.^5^26.^30.^~2, 3~^~03/01/2013~ -~36020~^~305~^350.^6^11.^~1~^~A~^^^1^312.^382.^5^320.^379.^~2, 3~^~03/01/2013~ -~36020~^~306~^308.^6^8.^~1~^~A~^^^1^286.^335.^5^287.^328.^~2, 3~^~03/01/2013~ -~36020~^~307~^787.^6^38.^~1~^~A~^^^1^650.^865.^5^687.^886.^~2, 3~^~03/01/2013~ -~36020~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36020~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36020~^~338~^50.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~601~^46.^3^4.^~1~^~A~^^^1^39.^53.^2^28.^63.^~2, 3~^~03/01/2013~ -~36021~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~301~^36.^6^1.^~1~^~A~^^^1^34.^40.^5^33.^39.^~2, 3~^~03/01/2013~ -~36021~^~304~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^11.^~2, 3~^~03/01/2013~ -~36021~^~305~^23.^6^0.^~1~^~A~^^^1^21.^26.^5^21.^25.^~2, 3~^~03/01/2013~ -~36021~^~306~^156.^6^5.^~1~^~A~^^^1^142.^168.^5^142.^169.^~2, 3~^~03/01/2013~ -~36021~^~307~^178.^6^18.^~1~^~A~^^^1^102.^231.^5^129.^226.^~2, 3~^~03/01/2013~ -~36021~^~318~^1504.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~321~^685.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~322~^425.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~337~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~338~^53.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~601~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^4.^~1, 2, 3~^~03/01/2013~ -~36022~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~268~^1487.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~301~^22.^6^0.^~1~^~A~^^^1^21.^24.^5^20.^23.^~2, 3~^~03/01/2013~ -~36022~^~304~^17.^6^0.^~1~^~A~^^^1^16.^19.^5^15.^18.^~2, 3~^~03/01/2013~ -~36022~^~305~^90.^6^2.^~1~^~A~^^^1^80.^99.^5^82.^96.^~2, 3~^~03/01/2013~ -~36022~^~306~^135.^6^6.^~1~^~A~^^^1^119.^166.^5^117.^151.^~2, 3~^~03/01/2013~ -~36022~^~307~^833.^6^13.^~1~^~A~^^^1^794.^873.^5^798.^868.^~2, 3~^~03/01/2013~ -~36022~^~318~^4.^1^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36022~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36022~^~320~^0.^1^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36022~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36022~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36022~^~338~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~268~^1241.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~301~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~03/01/2013~ -~36023~^~304~^30.^6^0.^~1~^~A~^^^1^30.^32.^5^29.^31.^~2, 3~^~03/01/2013~ -~36023~^~305~^298.^6^5.^~1~^~A~^^^1^269.^312.^5^282.^312.^~2, 3~^~03/01/2013~ -~36023~^~306~^336.^6^4.^~1~^~A~^^^1^323.^356.^5^324.^347.^~2, 3~^~03/01/2013~ -~36023~^~307~^740.^6^11.^~1~^~A~^^^1^702.^768.^5^710.^769.^~2, 3~^~03/01/2013~ -~36023~^~318~^67.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36023~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36023~^~321~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~322~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36023~^~334~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~337~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~601~^52.^3^1.^~1~^~A~^^^1^50.^54.^2^47.^57.^~2, 3~^~03/01/2013~ -~36024~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~268~^1225.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~301~^12.^6^0.^~1~^~A~^^^1^10.^13.^5^10.^12.^~2, 3~^~04/01/2013~ -~36024~^~304~^28.^6^0.^~1~^~A~^^^1^26.^32.^5^25.^30.^~2, 3~^~04/01/2013~ -~36024~^~305~^268.^6^13.^~1~^~A~^^^1^240.^328.^5^232.^302.^~2, 3~^~04/01/2013~ -~36024~^~306~^319.^6^12.^~1~^~A~^^^1^290.^376.^5^286.^350.^~2, 3~^~04/01/2013~ -~36024~^~307~^874.^6^59.^~1~^~A~^^^1^752.^1150.^5^721.^1027.^~2, 3~^~04/01/2013~ -~36024~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36024~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36024~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36024~^~338~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~417~^7.^3^1.^~1~^~A~^^^1^4.^9.^2^0.^13.^~1, 2, 3~^~04/01/2013~ -~36024~^~432~^7.^3^1.^~1~^~A~^^^1^4.^9.^2^0.^13.^^~04/01/2013~ -~36024~^~601~^40.^3^1.^~1~^~A~^^^1^37.^42.^2^33.^46.^~2, 3~^~04/01/2013~ -~36025~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~268~^730.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~301~^34.^6^1.^~1~^~A~^^^1^30.^37.^5^30.^36.^~2, 3~^~04/01/2013~ -~36025~^~304~^11.^6^0.^~1~^~A~^^^1^9.^12.^5^9.^12.^~2, 3~^~04/01/2013~ -~36025~^~305~^24.^6^0.^~1~^~A~^^^1^21.^26.^5^21.^25.^~2, 3~^~04/01/2013~ -~36025~^~306~^162.^6^6.^~1~^~A~^^^1^148.^183.^5^145.^178.^~2, 3~^~04/01/2013~ -~36025~^~307~^110.^6^2.^~1~^~A~^^^1^103.^119.^5^104.^115.^~2, 3~^~04/01/2013~ -~36025~^~318~^777.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36025~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36025~^~321~^374.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~322~^163.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36025~^~338~^70.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~268~^1368.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~301~^19.^6^0.^~1~^~A~^^^1^18.^19.^5^18.^19.^~2, 3~^~04/01/2013~ -~36026~^~304~^21.^6^0.^~1~^~A~^^^1^20.^21.^5^20.^21.^~2, 3~^~04/01/2013~ -~36026~^~305~^100.^6^0.^~1~^~A~^^^1^98.^102.^5^98.^101.^~2, 3~^~04/01/2013~ -~36026~^~306~^141.^6^1.^~1~^~A~^^^1^135.^146.^5^136.^145.^~2, 3~^~04/01/2013~ -~36026~^~307~^463.^6^5.^~1~^~A~^^^1^447.^487.^5^448.^477.^~2, 3~^~04/01/2013~ -~36026~^~318~^41.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36026~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36026~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~334~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36026~^~338~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~268~^1236.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~301~^11.^6^0.^~1~^~A~^^^1^10.^15.^5^9.^13.^~2, 3~^~04/01/2013~ -~36027~^~304~^30.^6^0.^~1~^~A~^^^1^28.^31.^5^28.^30.^~2, 3~^~04/01/2013~ -~36027~^~305~^273.^6^7.^~1~^~A~^^^1^252.^293.^5^254.^290.^~2, 3~^~04/01/2013~ -~36027~^~306~^334.^6^6.^~1~^~A~^^^1^308.^349.^5^318.^350.^~2, 3~^~04/01/2013~ -~36027~^~307~^798.^6^27.^~1~^~A~^^^1^707.^859.^5^727.^869.^~2, 3~^~04/01/2013~ -~36027~^~318~^87.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36027~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36027~^~321~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36027~^~334~^16.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36027~^~338~^102.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~417~^14.^3^3.^~1~^~A~^^^1^8.^19.^2^0.^28.^~2, 3~^~04/01/2013~ -~36027~^~601~^44.^3^2.^~1~^~A~^^^1^39.^47.^2^33.^55.^~2, 3~^~04/01/2013~ -~36028~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~301~^32.^6^1.^~1~^~A~^^^1^29.^36.^5^29.^35.^~2, 3~^~04/01/2013~ -~36028~^~304~^9.^6^0.^~1~^~A~^^^1^9.^11.^5^8.^10.^~2, 3~^~04/01/2013~ -~36028~^~305~^29.^6^0.^~1~^~A~^^^1^26.^32.^5^26.^31.^~2, 3~^~04/01/2013~ -~36028~^~306~^141.^6^4.^~1~^~A~^^^1^126.^156.^5^130.^151.^~2, 3~^~04/01/2013~ -~36028~^~307~^376.^6^24.^~1~^~A~^^^1^298.^464.^5^312.^439.^~2, 3~^~04/01/2013~ -~36028~^~318~^707.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36028~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36028~^~321~^309.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~322~^197.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~337~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~338~^78.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~601~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~301~^14.^6^0.^~1~^~A~^^^1^13.^16.^5^12.^15.^~2, 3~^~04/01/2013~ -~36029~^~304~^25.^6^0.^~1~^~A~^^^1^23.^27.^5^23.^26.^~2, 3~^~04/01/2013~ -~36029~^~305~^181.^6^1.^~1~^~A~^^^1^174.^188.^5^176.^186.^~2, 3~^~04/01/2013~ -~36029~^~306~^261.^6^5.^~1~^~A~^^^1^238.^279.^5^247.^274.^~2, 3~^~04/01/2013~ -~36029~^~307~^516.^6^6.^~1~^~A~^^^1^497.^545.^5^498.^533.^~2, 3~^~04/01/2013~ -~36029~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36029~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36029~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36029~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~337~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~338~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~417~^17.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^~2, 3~^~04/01/2013~ -~36029~^~601~^37.^3^0.^~1~^~A~^^^1^36.^38.^2^33.^41.^~2, 3~^~04/01/2013~ -~36030~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~301~^17.^6^0.^~1~^~A~^^^1^14.^20.^5^14.^19.^~2, 3~^~04/01/2013~ -~36030~^~304~^26.^6^1.^~1~^~A~^^^1^23.^30.^5^23.^28.^~2, 3~^~04/01/2013~ -~36030~^~305~^71.^6^3.^~1~^~A~^^^1^61.^83.^5^61.^80.^~2, 3~^~04/01/2013~ -~36030~^~306~^416.^6^18.^~1~^~A~^^^1^369.^472.^5^369.^462.^~2, 3~^~04/01/2013~ -~36030~^~307~^468.^6^18.^~1~^~A~^^^1^392.^518.^5^419.^516.^~2, 3~^~04/01/2013~ -~36030~^~417~^23.^3^2.^~1~^~A~^^^1^20.^28.^2^11.^33.^~2, 3~^~04/01/2013~ -~36030~^~432~^23.^3^2.^~1~^~A~^^^1^20.^28.^2^11.^33.^^~04/01/2013~ -~36031~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~268~^1613.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~301~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^20.^22.^~2, 3~^~04/01/2013~ -~36031~^~304~^20.^6^0.^~1~^~A~^^^1^19.^21.^5^18.^21.^~2, 3~^~04/01/2013~ -~36031~^~305~^92.^6^1.^~1~^~A~^^^1^87.^95.^5^88.^95.^~2, 3~^~04/01/2013~ -~36031~^~306~^150.^6^6.^~1~^~A~^^^1^136.^180.^5^134.^166.^~2, 3~^~04/01/2013~ -~36031~^~307~^780.^6^17.^~1~^~A~^^^1^719.^839.^5^735.^824.^~2, 3~^~04/01/2013~ -~36031~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36031~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36031~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36031~^~338~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~301~^45.^6^2.^~1~^~A~^^^1^38.^54.^5^38.^51.^~2, 3~^~04/01/2013~ -~36032~^~304~^23.^6^0.^~1~^~A~^^^1^19.^25.^5^20.^24.^~2, 3~^~04/01/2013~ -~36032~^~305~^89.^6^2.^~1~^~A~^^^1^82.^100.^5^82.^96.^~2, 3~^~04/01/2013~ -~36032~^~306~^206.^6^8.^~1~^~A~^^^1^170.^227.^5^183.^228.^~2, 3~^~04/01/2013~ -~36032~^~307~^351.^6^16.^~1~^~A~^^^1^299.^415.^5^307.^393.^~2, 3~^~04/01/2013~ -~36032~^~318~^258.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36032~^~319~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36032~^~321~^120.^3^13.^~1~^~A~^^^1^93.^134.^2^61.^178.^~2, 3~^~04/01/2013~ -~36032~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~337~^2740.^3^404.^~1~^~A~^^^1^1956.^3303.^2^1000.^4479.^~2, 3~^~04/01/2013~ -~36032~^~338~^159.^3^2.^~1~^~A~^^^1^155.^162.^2^149.^168.^~2, 3~^~04/01/2013~ -~36032~^~417~^36.^3^4.^~1~^~A~^^^1^28.^42.^2^17.^53.^~2, 3~^~04/01/2013~ -~36032~^~601~^19.^3^1.^~1~^~A~^^^1^15.^22.^2^10.^27.^~2, 3~^~04/01/2013~ -~36033~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~262~^0.^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~263~^0.^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~268~^915.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~301~^14.^12^0.^~1~^~A~^^^2^12.^17.^9^12.^14.^~2, 3~^~04/01/2013~ -~36033~^~304~^23.^12^0.^~1~^~A~^^^2^19.^27.^10^22.^23.^~2, 3~^~04/01/2013~ -~36033~^~305~^207.^12^2.^~1~^~A~^^^2^174.^244.^8^202.^212.^~2, 3~^~04/01/2013~ -~36033~^~306~^251.^12^4.^~1~^~A~^^^2^224.^279.^9^240.^261.^~2, 3~^~04/01/2013~ -~36033~^~307~^561.^12^15.^~1~^~A~^^^2^457.^651.^6^521.^600.^~2, 3~^~04/01/2013~ -~36033~^~318~^16.^2^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36033~^~319~^2.^2^^~1~^~A~^^^2^2.^2.^^^^^~04/01/2013~ -~36033~^~320~^3.^2^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36033~^~321~^3.^2^^~1~^~A~^^^2^1.^5.^^^^^~04/01/2013~ -~36033~^~322~^0.^2^^~1~^~A~^^^2^0.^1.^^^^~1~^~04/01/2013~ -~36033~^~324~^15.^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~334~^4.^2^^~1~^~A~^^^2^3.^5.^^^^^~04/01/2013~ -~36033~^~337~^1.^2^^~1~^~A~^^^2^0.^1.^^^^~1~^~04/01/2013~ -~36033~^~338~^74.^2^^~1~^~A~^^^2^48.^100.^^^^^~04/01/2013~ -~36033~^~417~^17.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^~2, 3~^~04/01/2013~ -~36033~^~431~^0.^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~432~^17.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^^~04/01/2013~ -~36033~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~601~^36.^6^0.^~1~^~A~^^^2^33.^38.^4^34.^37.^~2, 3~^~04/01/2013~ -~36034~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~268~^1265.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~301~^18.^24^0.^~1~^~A~^^^2^10.^33.^13^16.^19.^~2, 3~^~04/01/2013~ -~36034~^~304~^29.^24^0.^~1~^~A~^^^2^26.^32.^21^28.^29.^~2, 3~^~04/01/2013~ -~36034~^~305~^297.^24^6.^~1~^~A~^^^2^240.^382.^20^284.^309.^~2, 3~^~04/01/2013~ -~36034~^~306~^324.^24^4.^~1~^~A~^^^2^286.^376.^22^314.^333.^~2, 3~^~04/01/2013~ -~36034~^~307~^800.^24^19.^~1~^~A~^^^2^650.^1150.^18^758.^840.^~2, 3~^~04/01/2013~ -~36034~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36034~^~319~^6.^4^2.^~1~^~A~^^^2^2.^11.^2^-10.^22.^~2, 3~^~04/01/2013~ -~36034~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36034~^~321~^11.^4^6.^~1~^~A~^^^2^1.^22.^2^-17.^40.^~2, 3~^~04/01/2013~ -~36034~^~322~^0.^4^0.^~1~^~A~^^^2^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2013~ -~36034~^~334~^7.^4^4.^~1~^~A~^^^2^1.^16.^2^-14.^28.^~2, 3~^~04/01/2013~ -~36034~^~337~^1.^4^1.^~1~^~A~^^^2^0.^5.^1^-15.^18.^~1, 2, 3~^~04/01/2013~ -~36034~^~338~^68.^4^14.^~1~^~A~^^^2^49.^102.^1^-34.^170.^~2, 3~^~04/01/2013~ -~36034~^~417~^11.^6^2.^~1~^~A~^^^1^4.^19.^5^5.^16.^~1, 2, 3~^~04/01/2013~ -~36034~^~432~^11.^6^2.^~1~^~A~^^^1^4.^19.^5^5.^16.^^~04/01/2013~ -~36034~^~601~^46.^12^1.^~1~^~A~^^^2^37.^54.^9^42.^48.^~2, 3~^~04/01/2013~ -~36035~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~301~^34.^18^0.^~1~^~A~^^^2^29.^40.^16^32.^35.^~2, 3~^~04/01/2013~ -~36035~^~304~^10.^18^0.^~1~^~A~^^^2^9.^12.^16^9.^10.^~2, 3~^~04/01/2013~ -~36035~^~305~^25.^18^0.^~1~^~A~^^^2^21.^32.^13^23.^26.^~2, 3~^~04/01/2013~ -~36035~^~306~^153.^18^3.^~1~^~A~^^^2^126.^183.^16^145.^160.^~2, 3~^~04/01/2013~ -~36035~^~307~^221.^18^28.^~1~^~A~^^^2^102.^464.^12^158.^283.^~2, 3~^~04/01/2013~ -~36035~^~318~^996.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36035~^~319~^5.^3^1.^~1~^~A~^^^2^2.^8.^1^-7.^17.^~2, 3~^~04/01/2013~ -~36035~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36035~^~321~^456.^3^21.^~1~^~A~^^^2^309.^685.^1^179.^732.^~2, 3~^~04/01/2013~ -~36035~^~322~^262.^3^11.^~1~^~A~^^^2^163.^425.^1^121.^402.^~2, 3~^~04/01/2013~ -~36035~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~334~^2.^3^0.^~1~^~A~^^^2^1.^2.^1^-2.^6.^~2, 3~^~04/01/2013~ -~36035~^~337~^4.^3^2.^~1~^~A~^^^2^0.^7.^1^-26.^34.^~1, 2, 3~^~04/01/2013~ -~36035~^~338~^67.^3^2.^~1~^~A~^^^2^53.^78.^1^32.^101.^~2, 3~^~04/01/2013~ -~36035~^~417~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~432~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36035~^~601~^8.^5^2.^~1~^~A~^^^2^1.^23.^1^-21.^36.^~1, 2, 3~^~04/01/2013~ -~36036~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~268~^1489.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~301~^21.^18^0.^~1~^~A~^^^2^18.^24.^16^20.^21.^~2, 3~^~04/01/2013~ -~36036~^~304~^19.^18^0.^~1~^~A~^^^2^16.^21.^11^18.^19.^~2, 3~^~04/01/2013~ -~36036~^~305~^94.^18^1.^~1~^~A~^^^2^80.^102.^14^91.^96.^~2, 3~^~04/01/2013~ -~36036~^~306~^142.^18^3.^~1~^~A~^^^2^119.^180.^14^135.^148.^~2, 3~^~04/01/2013~ -~36036~^~307~^692.^18^32.^~1~^~A~^^^2^447.^873.^11^620.^763.^~2, 3~^~04/01/2013~ -~36036~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36036~^~319~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^-8.^10.^~1, 2, 3~^~04/01/2013~ -~36036~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36036~^~321~^6.^3^4.^~1~^~A~^^^2^2.^15.^1^-49.^61.^~2, 3~^~04/01/2013~ -~36036~^~322~^1.^3^0.^~1~^~A~^^^2^0.^1.^1^-4.^6.^~1, 2, 3~^~04/01/2013~ -~36036~^~334~^4.^3^2.^~1~^~A~^^^2^1.^9.^1^-24.^32.^~2, 3~^~04/01/2013~ -~36036~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~338~^42.^3^8.^~1~^~A~^^^2^13.^69.^1^-65.^149.^~2, 3~^~04/01/2013~ -~36036~^~417~^14.^2^^~1~^~A~^^^1^13.^14.^1^^^^~04/01/2013~ -~36036~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~301~^34.^6^4.^~1~^~A~^^^1^24.^52.^5^23.^45.^~2, 3~^~04/01/2013~ -~36037~^~304~^18.^6^0.^~1~^~A~^^^1^16.^20.^5^16.^19.^~2, 3~^~04/01/2013~ -~36037~^~305~^104.^6^6.^~1~^~A~^^^1^88.^124.^5^88.^120.^~2, 3~^~04/01/2013~ -~36037~^~306~^320.^6^6.^~1~^~A~^^^1^288.^334.^5^302.^337.^~2, 3~^~04/01/2013~ -~36037~^~307~^381.^6^16.^~1~^~A~^^^1^324.^430.^5^339.^422.^~2, 3~^~04/01/2013~ -~36037~^~318~^1436.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36037~^~319~^93.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~320~^149.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36037~^~321~^577.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36037~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~334~^200.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~337~^4639.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~338~^367.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~417~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~432~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36037~^~601~^45.^3^4.^~1~^~A~^^^1^38.^53.^2^26.^62.^~2, 3~^~04/01/2013~ -~36038~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~301~^45.^6^2.^~1~^~A~^^^1^38.^54.^5^38.^51.^~2, 3~^~04/01/2013~ -~36038~^~304~^23.^6^0.^~1~^~A~^^^1^19.^25.^5^20.^24.^~2, 3~^~04/01/2013~ -~36038~^~305~^89.^6^2.^~1~^~A~^^^1^82.^100.^5^82.^96.^~2, 3~^~04/01/2013~ -~36038~^~306~^206.^6^8.^~1~^~A~^^^1^170.^227.^5^183.^228.^~2, 3~^~04/01/2013~ -~36038~^~307~^351.^6^16.^~1~^~A~^^^1^299.^415.^5^307.^393.^~2, 3~^~04/01/2013~ -~36038~^~318~^258.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36038~^~319~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36038~^~321~^120.^3^13.^~1~^~A~^^^1^93.^134.^2^61.^178.^~2, 3~^~04/01/2013~ -~36038~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~337~^2740.^3^404.^~1~^~A~^^^1^1956.^3303.^2^1000.^4479.^~2, 3~^~04/01/2013~ -~36038~^~338~^159.^3^2.^~1~^~A~^^^1^155.^162.^2^149.^168.^~2, 3~^~04/01/2013~ -~36038~^~417~^36.^3^4.^~1~^~A~^^^1^28.^42.^2^17.^53.^~2, 3~^~04/01/2013~ -~36038~^~601~^19.^3^1.^~1~^~A~^^^1^15.^22.^2^10.^27.^~2, 3~^~04/01/2013~ -~36039~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~301~^17.^6^0.^~1~^~A~^^^1^14.^20.^5^14.^19.^~2, 3~^~04/01/2013~ -~36039~^~304~^26.^6^1.^~1~^~A~^^^1^23.^30.^5^23.^28.^~2, 3~^~04/01/2013~ -~36039~^~305~^71.^6^3.^~1~^~A~^^^1^61.^83.^5^61.^80.^~2, 3~^~04/01/2013~ -~36039~^~306~^416.^6^18.^~1~^~A~^^^1^369.^472.^5^369.^462.^~2, 3~^~04/01/2013~ -~36039~^~307~^468.^6^18.^~1~^~A~^^^1^392.^518.^5^419.^516.^~2, 3~^~04/01/2013~ -~36039~^~417~^23.^3^2.^~1~^~A~^^^1^20.^28.^2^11.^33.^~2, 3~^~04/01/2013~ -~36039~^~432~^23.^3^2.^~1~^~A~^^^1^20.^28.^2^11.^33.^^~04/01/2013~ -~36040~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~268~^812.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~301~^145.^6^5.^~1~^~A~^^^1^130.^164.^5^131.^158.^~2, 3~^~04/01/2013~ -~36040~^~304~^17.^6^0.^~1~^~A~^^^1^15.^19.^5^14.^18.^~2, 3~^~04/01/2013~ -~36040~^~305~^202.^6^7.^~1~^~A~^^^1^181.^225.^5^182.^220.^~2, 3~^~04/01/2013~ -~36040~^~306~^127.^6^4.^~1~^~A~^^^1^111.^137.^5^115.^138.^~2, 3~^~04/01/2013~ -~36040~^~307~^375.^6^11.^~1~^~A~^^^1^349.^426.^5^344.^404.^~2, 3~^~04/01/2013~ -~36040~^~318~^230.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36040~^~319~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~320~^61.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36040~^~321~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36040~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36040~^~338~^47.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~417~^28.^3^5.^~1~^~A~^^^1^17.^35.^2^3.^52.^~2, 3~^~04/01/2013~ -~36040~^~601~^18.^3^0.^~1~^~A~^^^1^17.^19.^2^15.^19.^~2, 3~^~04/01/2013~ -~36041~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~262~^0.^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~263~^0.^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~268~^774.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~301~^197.^12^5.^~1~^~A~^^^1^167.^231.^11^184.^209.^~2, 3~^~03/01/2014~ -~36041~^~304~^22.^12^0.^~1~^~A~^^^1^21.^25.^11^21.^23.^~2, 3~^~03/01/2014~ -~36041~^~305~^178.^12^3.^~1~^~A~^^^1^157.^197.^11^170.^185.^~2, 3~^~03/01/2014~ -~36041~^~306~^255.^12^7.^~1~^~A~^^^1^218.^289.^11^237.^271.^~2, 3~^~03/01/2014~ -~36041~^~307~^466.^12^11.^~1~^~A~^^^1^421.^552.^11^439.^492.^~2, 3~^~03/01/2014~ -~36041~^~318~^550.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36041~^~319~^64.^2^^~1~^~A~^^^1^48.^81.^1^^^^~03/01/2014~ -~36041~^~320~^81.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36041~^~321~^197.^6^24.^~1~^~A~^^^1^124.^291.^5^134.^258.^~2, 3~^~03/01/2014~ -~36041~^~322~^9.^6^4.^~1~^~A~^^^1^0.^24.^5^-2.^20.^~1, 2, 3~^~03/01/2014~ -~36041~^~324~^1.^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~337~^2517.^6^259.^~1~^~A~^^^1^1734.^3523.^5^1849.^3185.^~2, 3~^~03/01/2014~ -~36041~^~338~^97.^6^4.^~1~^~A~^^^1^81.^112.^5^86.^108.^~2, 3~^~03/01/2014~ -~36041~^~417~^26.^6^4.^~1~^~A~^^^1^15.^39.^5^14.^36.^~2, 3~^~03/01/2014~ -~36041~^~431~^17.^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36041~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36041~^~601~^36.^6^2.^~1~^~A~^^^1^29.^42.^5^30.^41.^~2, 3~^~03/01/2014~ -~36042~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~268~^770.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~301~^211.^6^7.^~1~^~A~^^^1^188.^231.^5^191.^229.^~2, 3~^~03/01/2014~ -~36042~^~304~^22.^6^0.^~1~^~A~^^^1^21.^22.^5^21.^22.^~2, 3~^~03/01/2014~ -~36042~^~305~^183.^6^4.^~1~^~A~^^^1^169.^197.^5^171.^194.^~2, 3~^~03/01/2014~ -~36042~^~306~^258.^6^11.^~1~^~A~^^^1^218.^289.^5^227.^288.^~2, 3~^~03/01/2014~ -~36042~^~307~^450.^6^9.^~1~^~A~^^^1^421.^489.^5^424.^474.^~2, 3~^~03/01/2014~ -~36042~^~318~^414.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36042~^~319~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~320~^60.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36042~^~321~^153.^3^16.^~1~^~A~^^^1^124.^180.^2^83.^223.^~2, 3~^~03/01/2014~ -~36042~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~337~^2177.^3^331.^~1~^~A~^^^1^1734.^2825.^2^752.^3601.^~2, 3~^~03/01/2014~ -~36042~^~338~^105.^3^3.^~1~^~A~^^^1^99.^112.^2^87.^121.^~2, 3~^~03/01/2014~ -~36042~^~417~^35.^3^1.^~1~^~A~^^^1^33.^39.^2^27.^43.^~2, 3~^~03/01/2014~ -~36042~^~601~^40.^3^0.^~1~^~A~^^^1^39.^42.^2^36.^44.^~2, 3~^~03/01/2014~ -~36043~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~268~^799.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~301~^185.^3^9.^~1~^~A~^^^1^167.^198.^2^144.^225.^~2, 3~^~03/01/2014~ -~36043~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^25.^~2, 3~^~03/01/2014~ -~36043~^~305~^176.^3^9.^~1~^~A~^^^1^157.^189.^2^134.^217.^~2, 3~^~03/01/2014~ -~36043~^~306~^266.^3^14.^~1~^~A~^^^1^237.^281.^2^203.^327.^~2, 3~^~03/01/2014~ -~36043~^~307~^524.^3^17.^~1~^~A~^^^1^493.^552.^2^450.^597.^~2, 3~^~03/01/2014~ -~36043~^~318~^685.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36043~^~319~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~320~^102.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36043~^~321~^240.^3^28.^~1~^~A~^^^1^191.^291.^2^115.^363.^~2, 3~^~03/01/2014~ -~36043~^~322~^19.^3^3.^~1~^~A~^^^1^12.^24.^2^3.^33.^~2, 3~^~03/01/2014~ -~36043~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~337~^2858.^3^335.^~1~^~A~^^^1^2449.^3523.^2^1413.^4301.^~2, 3~^~03/01/2014~ -~36043~^~338~^90.^3^5.^~1~^~A~^^^1^81.^98.^2^68.^112.^~2, 3~^~03/01/2014~ -~36043~^~417~^16.^3^0.^~1~^~A~^^^1^15.^17.^2^13.^19.^~2, 3~^~03/01/2014~ -~36043~^~601~^31.^3^1.^~1~^~A~^^^1^29.^33.^2^26.^36.^~2, 3~^~03/01/2014~ -~36044~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~268~^814.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~301~^39.^4^0.^~1~^~A~^^^1^38.^41.^3^37.^41.^~2, 3~^~03/01/2014~ -~36044~^~304~^15.^4^0.^~1~^~A~^^^1^15.^16.^3^14.^15.^~2, 3~^~03/01/2014~ -~36044~^~305~^74.^4^0.^~1~^~A~^^^1^71.^76.^3^70.^76.^~2, 3~^~03/01/2014~ -~36044~^~306~^131.^4^2.^~1~^~A~^^^1^127.^134.^3^124.^136.^~2, 3~^~03/01/2014~ -~36044~^~307~^677.^4^31.^~1~^~A~^^^1^615.^740.^3^575.^778.^~2, 3~^~03/01/2014~ -~36044~^~318~^61.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36044~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36044~^~321~^37.^2^^~1~^~A~^^^1^28.^45.^1^^^^~03/01/2014~ -~36044~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2014~ -~36044~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2014~ -~36044~^~337~^208.^2^^~1~^~A~^^^1^194.^223.^1^^^^~03/01/2014~ -~36044~^~338~^100.^2^^~1~^~A~^^^1^96.^104.^1^^^^~03/01/2014~ -~36044~^~417~^52.^2^^~1~^~A~^^^1^49.^56.^1^^^^~03/01/2014~ -~36044~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~03/01/2014~ -~36045~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~268~^604.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~301~^57.^4^1.^~1~^~A~^^^1^54.^60.^3^52.^60.^~2, 3~^~03/01/2014~ -~36045~^~304~^47.^4^0.^~1~^~A~^^^1^46.^48.^3^44.^48.^~2, 3~^~03/01/2014~ -~36045~^~305~^137.^4^2.^~1~^~A~^^^1^132.^145.^3^129.^145.^~2, 3~^~03/01/2014~ -~36045~^~306~^423.^4^4.^~1~^~A~^^^1^413.^433.^3^409.^436.^~2, 3~^~03/01/2014~ -~36045~^~307~^378.^4^4.^~1~^~A~^^^1^368.^389.^3^362.^394.^~2, 3~^~03/01/2014~ -~36045~^~417~^36.^2^^~1~^~A~^^^1^25.^47.^1^^^^~03/01/2014~ -~36045~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36045~^~601~^6.^2^^~1~^~A~^^^1^6.^6.^1^^^^~03/01/2014~ -~36046~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~268~^434.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~301~^15.^12^1.^~1~^~A~^^^1^9.^28.^11^11.^17.^~2, 3~^~04/01/2014~ -~36046~^~304~^16.^12^0.^~1~^~A~^^^1^13.^18.^11^14.^16.^~2, 3~^~04/01/2014~ -~36046~^~305~^44.^12^1.^~1~^~A~^^^1^38.^53.^11^41.^47.^~2, 3~^~04/01/2014~ -~36046~^~306~^140.^12^6.^~1~^~A~^^^1^109.^173.^11^126.^153.^~2, 3~^~04/01/2014~ -~36046~^~307~^191.^12^11.^~1~^~A~^^^1^138.^255.^11^166.^216.^~2, 3~^~04/01/2014~ -~36046~^~318~^202.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36046~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36046~^~321~^120.^4^7.^~1~^~A~^^^1^102.^137.^3^96.^143.^~2, 3~^~04/01/2014~ -~36046~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~334~^2.^4^1.^~1~^~A~^^^1^0.^7.^3^-3.^7.^~1, 2, 3~^~04/01/2014~ -~36046~^~337~^1872.^4^73.^~1~^~A~^^^1^1665.^2010.^3^1638.^2105.^~2, 3~^~04/01/2014~ -~36046~^~338~^132.^4^2.^~1~^~A~^^^1^126.^137.^3^123.^140.^~2, 3~^~04/01/2014~ -~36046~^~417~^29.^6^3.^~1~^~A~^^^1^20.^39.^5^21.^37.^~2, 3~^~04/01/2014~ -~36046~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~2, 3~^~04/01/2014~ -~36047~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~268~^428.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~301~^11.^6^0.^~1~^~A~^^^1^9.^13.^5^9.^11.^~2, 3~^~04/01/2014~ -~36047~^~304~^16.^6^0.^~1~^~A~^^^1^16.^18.^5^15.^17.^~2, 3~^~04/01/2014~ -~36047~^~305~^44.^6^1.^~1~^~A~^^^1^40.^53.^5^38.^48.^~2, 3~^~04/01/2014~ -~36047~^~306~^124.^6^5.^~1~^~A~^^^1^109.^140.^5^110.^136.^~2, 3~^~04/01/2014~ -~36047~^~307~^183.^6^6.^~1~^~A~^^^1^152.^202.^5^164.^200.^~2, 3~^~04/01/2014~ -~36047~^~318~^218.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36047~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36047~^~321~^131.^2^^~1~^~A~^^^1^124.^137.^1^^^^~04/01/2014~ -~36047~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2014~ -~36047~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2014~ -~36047~^~337~^1781.^2^^~1~^~A~^^^1^1665.^1897.^1^^^^~04/01/2014~ -~36047~^~338~^128.^2^^~1~^~A~^^^1^126.^130.^1^^^^~04/01/2014~ -~36047~^~417~^27.^3^2.^~1~^~A~^^^1^23.^30.^2^17.^35.^~2, 3~^~04/01/2014~ -~36047~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2014~ -~36048~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~268~^435.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~301~^17.^3^0.^~1~^~A~^^^1^15.^18.^2^13.^19.^~2, 3~^~04/01/2014~ -~36048~^~304~^14.^3^0.^~1~^~A~^^^1^14.^15.^2^12.^16.^~2, 3~^~04/01/2014~ -~36048~^~305~^43.^3^1.^~1~^~A~^^^1^41.^46.^2^36.^49.^~2, 3~^~04/01/2014~ -~36048~^~306~^143.^3^3.^~1~^~A~^^^1^136.^149.^2^126.^159.^~2, 3~^~04/01/2014~ -~36048~^~307~^218.^3^30.^~1~^~A~^^^1^157.^255.^2^85.^350.^~2, 3~^~04/01/2014~ -~36048~^~318~^187.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36048~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36048~^~321~^110.^2^^~1~^~A~^^^1^102.^119.^1^^^^~04/01/2014~ -~36048~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2014~ -~36048~^~334~^3.^2^^~1~^~A~^^^1^0.^7.^1^^^~1~^~04/01/2014~ -~36048~^~337~^1964.^2^^~1~^~A~^^^1^1917.^2010.^1^^^^~04/01/2014~ -~36048~^~338~^137.^2^^~1~^~A~^^^1^136.^137.^1^^^^~04/01/2014~ -~36048~^~417~^32.^3^5.^~1~^~A~^^^1^20.^39.^2^6.^57.^~2, 3~^~04/01/2014~ -~36048~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2014~ -~36049~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~268~^1134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~301~^293.^4^14.^~1~^~A~^^^1^276.^335.^3^247.^337.^~2, 3~^~05/01/2014~ -~36049~^~304~^30.^4^0.^~1~^~A~^^^1^28.^31.^3^27.^32.^~2, 3~^~05/01/2014~ -~36049~^~305~^288.^4^5.^~1~^~A~^^^1^272.^300.^3^268.^306.^~2, 3~^~05/01/2014~ -~36049~^~306~^176.^4^6.^~1~^~A~^^^1^165.^190.^3^156.^195.^~2, 3~^~05/01/2014~ -~36049~^~307~^561.^4^23.^~1~^~A~^^^1^501.^599.^3^486.^635.^~2, 3~^~05/01/2014~ -~36049~^~318~^195.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36049~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36049~^~321~^112.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36049~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36049~^~334~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36049~^~337~^1562.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36049~^~338~^58.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36049~^~417~^14.^2^^~1~^~A~^^^1^14.^15.^1^^^^~05/01/2014~ -~36049~^~601~^41.^2^^~1~^~A~^^^1^40.^42.^1^^^^~05/01/2014~ -~36050~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~268~^1142.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~301~^314.^12^12.^~1~^~A~^^^1^251.^405.^11^285.^341.^~2, 3~^~05/01/2014~ -~36050~^~304~^29.^12^0.^~1~^~A~^^^1^24.^31.^11^27.^30.^~2, 3~^~05/01/2014~ -~36050~^~305~^268.^12^11.^~1~^~A~^^^1^198.^332.^11^242.^293.^~2, 3~^~05/01/2014~ -~36050~^~306~^140.^12^8.^~1~^~A~^^^1^105.^190.^11^120.^158.^~2, 3~^~05/01/2014~ -~36050~^~307~^528.^12^21.^~1~^~A~^^^1^386.^622.^11^479.^575.^~2, 3~^~05/01/2014~ -~36050~^~318~^988.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36050~^~319~^186.^2^^~1~^~A~^^^1^124.^249.^1^^^^~05/01/2014~ -~36050~^~320~^205.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36050~^~321~^191.^4^73.^~1~^~A~^^^1^110.^410.^3^-41.^423.^~2, 3~^~05/01/2014~ -~36050~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~334~^58.^4^31.^~1~^~A~^^^1^11.^150.^3^-42.^157.^~2, 3~^~05/01/2014~ -~36050~^~337~^820.^4^335.^~1~^~A~^^^1^42.^1562.^3^-246.^1886.^~2, 3~^~05/01/2014~ -~36050~^~338~^143.^4^67.^~1~^~A~^^^1^58.^344.^3^-70.^357.^~2, 3~^~05/01/2014~ -~36050~^~417~^17.^6^1.^~1~^~A~^^^1^14.^22.^5^14.^20.^~2, 3~^~05/01/2014~ -~36050~^~601~^42.^6^2.^~1~^~A~^^^1^31.^50.^5^34.^48.^~2, 3~^~05/01/2014~ -~36051~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~268~^1648.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~301~^432.^4^12.^~1~^~A~^^^1^397.^455.^3^391.^471.^~2, 3~^~05/01/2014~ -~36051~^~304~^24.^4^0.^~1~^~A~^^^1^23.^25.^3^22.^25.^~2, 3~^~05/01/2014~ -~36051~^~305~^373.^4^6.^~1~^~A~^^^1^359.^391.^3^351.^393.^~2, 3~^~05/01/2014~ -~36051~^~306~^95.^4^3.^~1~^~A~^^^1^89.^104.^3^84.^105.^~2, 3~^~05/01/2014~ -~36051~^~307~^677.^4^2.^~1~^~A~^^^1^671.^684.^3^667.^686.^~2, 3~^~05/01/2014~ -~36051~^~417~^55.^2^^~1~^~A~^^^1^55.^56.^1^^^^~05/01/2014~ -~36051~^~601~^59.^2^^~1~^~A~^^^1^55.^63.^1^^^^~05/01/2014~ -~36052~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~268~^1539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~301~^430.^12^11.^~1~^~A~^^^1^351.^492.^11^404.^456.^~2, 3~^~05/01/2014~ -~36052~^~304~^24.^12^0.^~1~^~A~^^^1^22.^27.^11^23.^24.^~2, 3~^~05/01/2014~ -~36052~^~305~^347.^12^11.^~1~^~A~^^^1^285.^399.^11^321.^371.^~2, 3~^~05/01/2014~ -~36052~^~306~^102.^12^5.^~1~^~A~^^^1^81.^141.^11^90.^112.^~2, 3~^~05/01/2014~ -~36052~^~307~^701.^12^18.^~1~^~A~^^^1^630.^846.^11^660.^740.^~2, 3~^~05/01/2014~ -~36052~^~318~^518.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36052~^~319~^155.^2^^~1~^~A~^^^1^140.^171.^1^^^^~05/01/2014~ -~36052~^~320~^155.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36052~^~417~^52.^6^3.^~1~^~A~^^^1^38.^63.^5^41.^61.^~2, 3~^~05/01/2014~ -~36052~^~601~^52.^6^3.^~1~^~A~^^^1^41.^63.^5^42.^60.^~2, 3~^~05/01/2014~ -~36053~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~301~^135.^3^7.^~1~^~A~^^^1^123.^150.^2^100.^168.^~2, 3~^~05/01/2014~ -~36053~^~304~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^24.^~2, 3~^~05/01/2014~ -~36053~^~305~^126.^3^5.^~1~^~A~^^^1^116.^136.^2^101.^150.^~2, 3~^~05/01/2014~ -~36053~^~306~^195.^3^5.^~1~^~A~^^^1^184.^201.^2^171.^217.^~2, 3~^~05/01/2014~ -~36053~^~307~^371.^3^43.^~1~^~A~^^^1^283.^418.^2^181.^559.^~2, 3~^~05/01/2014~ -~36053~^~318~^496.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~319~^40.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~321~^218.^2^^~1~^~A~^^^1^205.^232.^1^^^^~05/01/2014~ -~36053~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36053~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36053~^~337~^2401.^2^^~1~^~A~^^^1^2225.^2577.^1^^^^~05/01/2014~ -~36053~^~338~^98.^2^^~1~^~A~^^^1^75.^121.^1^^^^~05/01/2014~ -~36053~^~417~^11.^2^^~1~^~A~^^^1^10.^12.^1^^^^~05/01/2014~ -~36053~^~601~^30.^3^0.^~1~^~A~^^^1^28.^31.^2^25.^33.^~2, 3~^~05/01/2014~ -~36054~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~301~^121.^6^4.^~1~^~A~^^^1^110.^143.^5^108.^133.^~2, 3~^~05/01/2014~ -~36054~^~304~^23.^6^0.^~1~^~A~^^^1^22.^23.^5^22.^23.^~2, 3~^~05/01/2014~ -~36054~^~305~^129.^6^3.^~1~^~A~^^^1^119.^144.^5^119.^138.^~2, 3~^~05/01/2014~ -~36054~^~306~^184.^6^7.^~1~^~A~^^^1^163.^213.^5^164.^204.^~2, 3~^~05/01/2014~ -~36054~^~307~^269.^6^8.^~1~^~A~^^^1^246.^299.^5^247.^291.^~2, 3~^~05/01/2014~ -~36054~^~318~^330.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36054~^~319~^38.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~320~^48.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36054~^~321~^123.^2^^~1~^~A~^^^1^114.^131.^1^^^^~05/01/2014~ -~36054~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36054~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36054~^~337~^1368.^2^^~1~^~A~^^^1^1103.^1634.^1^^^^~05/01/2014~ -~36054~^~338~^111.^2^^~1~^~A~^^^1^104.^119.^1^^^^~05/01/2014~ -~36054~^~417~^44.^2^^~1~^~A~^^^1^36.^53.^1^^^^~05/01/2014~ -~36054~^~601~^23.^3^0.^~1~^~A~^^^1^22.^23.^2^21.^24.^~2, 3~^~05/01/2014~ -~36055~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~268~^642.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~301~^120.^12^4.^~1~^~A~^^^1^96.^150.^11^110.^130.^~2, 3~^~05/01/2014~ -~36055~^~304~^22.^12^0.^~1~^~A~^^^1^18.^25.^11^20.^22.^~2, 3~^~05/01/2014~ -~36055~^~305~^121.^12^4.^~1~^~A~^^^1^97.^144.^11^112.^130.^~2, 3~^~05/01/2014~ -~36055~^~306~^195.^12^5.^~1~^~A~^^^1^163.^235.^11^181.^207.^~2, 3~^~05/01/2014~ -~36055~^~307~^306.^12^16.^~1~^~A~^^^1^246.^418.^11^269.^342.^~2, 3~^~05/01/2014~ -~36055~^~318~^413.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36055~^~319~^39.^2^^~1~^~A~^^^1^38.^40.^1^^^^~05/01/2014~ -~36055~^~320~^53.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36055~^~321~^170.^4^28.^~1~^~A~^^^1^114.^232.^3^80.^260.^~2, 3~^~05/01/2014~ -~36055~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~337~^1885.^4^325.^~1~^~A~^^^1^1103.^2577.^3^849.^2919.^~2, 3~^~05/01/2014~ -~36055~^~338~^105.^4^10.^~1~^~A~^^^1^75.^121.^3^70.^138.^~2, 3~^~05/01/2014~ -~36055~^~417~^28.^4^10.^~1~^~A~^^^1^10.^53.^3^-5.^60.^~2, 3~^~05/01/2014~ -~36055~^~601~^26.^6^1.^~1~^~A~^^^1^22.^31.^5^22.^30.^~2, 3~^~05/01/2014~ -~36056~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~268~^903.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~301~^111.^9^30.^~1~^~A~^^^1^30.^314.^8^39.^181.^~2, 3~^~05/01/2014~ -~36056~^~304~^30.^9^1.^~1~^~A~^^^1^22.^34.^8^27.^33.^~2, 3~^~05/01/2014~ -~36056~^~305~^161.^9^13.^~1~^~A~^^^1^98.^248.^8^129.^192.^~2, 3~^~05/01/2014~ -~36056~^~306~^176.^9^14.^~1~^~A~^^^1^130.^262.^8^141.^210.^~2, 3~^~05/01/2014~ -~36056~^~307~^503.^9^35.^~1~^~A~^^^1^368.^695.^8^421.^585.^~2, 3~^~05/01/2014~ -~36056~^~318~^731.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36056~^~319~^105.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~320~^124.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36056~^~321~^189.^2^^~1~^~A~^^^1^180.^198.^1^^^^~05/01/2014~ -~36056~^~322~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~05/01/2014~ -~36056~^~334~^68.^2^^~1~^~A~^^^1^43.^93.^1^^^^~05/01/2014~ -~36056~^~337~^268.^2^^~1~^~A~^^^1^0.^536.^1^^^~1~^~05/01/2014~ -~36056~^~338~^102.^2^^~1~^~A~^^^1^80.^124.^1^^^^~05/01/2014~ -~36056~^~417~^12.^5^3.^~1~^~A~^^^1^8.^24.^4^2.^20.^~2, 3~^~05/01/2014~ -~36056~^~601~^30.^5^3.^~1~^~A~^^^1^23.^43.^4^19.^39.^~2, 3~^~05/01/2014~ -~36057~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~301~^142.^3^5.^~1~^~A~^^^1^132.^149.^2^119.^164.^~2, 3~^~05/01/2014~ -~36057~^~304~^30.^3^1.^~1~^~A~^^^1^27.^31.^2^24.^34.^~2, 3~^~05/01/2014~ -~36057~^~305~^235.^3^5.^~1~^~A~^^^1^227.^245.^2^211.^257.^~2, 3~^~05/01/2014~ -~36057~^~306~^319.^3^4.^~1~^~A~^^^1^313.^328.^2^299.^338.^~2, 3~^~05/01/2014~ -~36057~^~307~^467.^3^60.^~1~^~A~^^^1^356.^564.^2^207.^727.^~2, 3~^~05/01/2014~ -~36057~^~318~^356.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36057~^~319~^42.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~320~^53.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36057~^~321~^129.^2^^~1~^~A~^^^1^109.^150.^1^^^^~05/01/2014~ -~36057~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36057~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36057~^~337~^1998.^2^^~1~^~A~^^^1^1215.^2782.^1^^^^~05/01/2014~ -~36057~^~338~^113.^2^^~1~^~A~^^^1^108.^119.^1^^^^~05/01/2014~ -~36057~^~417~^22.^2^^~1~^~A~^^^1^19.^25.^1^^^^~05/01/2014~ -~36057~^~601~^67.^3^6.^~1~^~A~^^^1^54.^75.^2^38.^96.^~2, 3~^~05/01/2014~ -~36058~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~268~^885.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~301~^95.^6^7.^~1~^~A~^^^1^77.^128.^5^75.^114.^~2, 3~^~05/01/2014~ -~36058~^~304~^25.^6^0.^~1~^~A~^^^1^24.^27.^5^23.^26.^~2, 3~^~05/01/2014~ -~36058~^~305~^236.^6^5.^~1~^~A~^^^1^222.^261.^5^221.^249.^~2, 3~^~05/01/2014~ -~36058~^~306~^277.^6^8.^~1~^~A~^^^1^254.^305.^5^255.^299.^~2, 3~^~05/01/2014~ -~36058~^~307~^625.^6^15.^~1~^~A~^^^1^575.^673.^5^585.^664.^~2, 3~^~05/01/2014~ -~36058~^~318~^259.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36058~^~319~^29.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~320~^37.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36058~^~321~^97.^2^^~1~^~A~^^^1^85.^109.^1^^^^~05/01/2014~ -~36058~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36058~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~ -~36058~^~337~^1211.^2^^~1~^~A~^^^1^1097.^1324.^1^^^^~05/01/2014~ -~36058~^~338~^59.^2^^~1~^~A~^^^1^55.^62.^1^^^^~05/01/2014~ -~36058~^~417~^16.^2^^~1~^~A~^^^1^15.^18.^1^^^^~05/01/2014~ -~36058~^~601~^40.^3^1.^~1~^~A~^^^1^38.^44.^2^31.^48.^~2, 3~^~05/01/2014~ -~36059~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~268~^854.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~301~^106.^12^8.^~1~^~A~^^^1^70.^149.^11^87.^124.^~2, 3~^~05/01/2014~ -~36059~^~304~^26.^12^0.^~1~^~A~^^^1^24.^31.^11^24.^27.^~2, 3~^~05/01/2014~ -~36059~^~305~^227.^12^6.^~1~^~A~^^^1^174.^261.^11^213.^240.^~2, 3~^~05/01/2014~ -~36059~^~306~^293.^12^6.^~1~^~A~^^^1^254.^328.^11^277.^307.^~2, 3~^~05/01/2014~ -~36059~^~307~^536.^12^34.^~1~^~A~^^^1^313.^673.^11^459.^612.^~2, 3~^~05/01/2014~ -~36059~^~318~^307.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36059~^~319~^36.^2^^~1~^~A~^^^1^29.^42.^1^^^^~05/01/2014~ -~36059~^~320~^45.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36059~^~321~^113.^4^13.^~1~^~A~^^^1^85.^150.^3^70.^155.^~2, 3~^~05/01/2014~ -~36059~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~337~^1605.^4^395.^~1~^~A~^^^1^1097.^2782.^3^347.^2862.^~2, 3~^~05/01/2014~ -~36059~^~338~^86.^4^15.^~1~^~A~^^^1^55.^119.^3^34.^136.^~2, 3~^~05/01/2014~ -~36059~^~417~^19.^4^2.^~1~^~A~^^^1^15.^25.^3^12.^25.^~2, 3~^~05/01/2014~ -~36059~^~601~^54.^6^6.^~1~^~A~^^^1^38.^75.^5^35.^71.^~2, 3~^~05/01/2014~ -~36060~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~301~^123.^4^7.^~1~^~A~^^^1^114.^145.^3^99.^146.^~2, 3~^~05/01/2014~ -~36060~^~304~^30.^4^0.^~1~^~A~^^^1^28.^30.^3^27.^31.^~2, 3~^~05/01/2014~ -~36060~^~305~^188.^4^3.^~1~^~A~^^^1^176.^194.^3^174.^200.^~2, 3~^~05/01/2014~ -~36060~^~306~^274.^4^7.^~1~^~A~^^^1^263.^295.^3^250.^296.^~2, 3~^~05/01/2014~ -~36060~^~307~^646.^4^5.^~1~^~A~^^^1^632.^657.^3^628.^662.^~2, 3~^~05/01/2014~ -~36060~^~318~^89.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36060~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36060~^~321~^53.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36060~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36060~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36060~^~337~^686.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36060~^~338~^28.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36060~^~417~^40.^2^^~1~^~A~^^^1^36.^45.^1^^^^~05/01/2014~ -~36060~^~601~^30.^2^^~1~^~A~^^^1^27.^33.^1^^^^~05/01/2014~ -~36061~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~301~^116.^11^5.^~1~^~A~^^^1^89.^146.^10^104.^127.^~2, 3~^~05/01/2014~ -~36061~^~304~^27.^11^1.^~1~^~A~^^^1^19.^33.^10^23.^29.^~2, 3~^~05/01/2014~ -~36061~^~305~^172.^11^5.^~1~^~A~^^^1^140.^194.^10^159.^183.^~2, 3~^~05/01/2014~ -~36061~^~306~^244.^11^9.^~1~^~A~^^^1^198.^295.^10^221.^265.^~2, 3~^~05/01/2014~ -~36061~^~307~^509.^11^40.^~1~^~A~^^^1^221.^657.^10^418.^598.^~2, 3~^~05/01/2014~ -~36061~^~318~^250.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36061~^~319~^44.^2^^~1~^~A~^^^1^36.^53.^1^^^^~05/01/2014~ -~36061~^~320~^49.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36061~^~321~^61.^4^15.^~1~^~A~^^^1^25.^102.^3^10.^110.^~2, 3~^~05/01/2014~ -~36061~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~334~^2.^4^2.^~1~^~A~^^^1^0.^8.^3^-4.^8.^~1, 2, 3~^~05/01/2014~ -~36061~^~337~^696.^4^374.^~1~^~A~^^^1^25.^1745.^3^-497.^1888.^~2, 3~^~05/01/2014~ -~36061~^~338~^44.^4^7.^~1~^~A~^^^1^28.^64.^3^19.^68.^~2, 3~^~05/01/2014~ -~36061~^~417~^38.^5^5.^~1~^~A~^^^1^18.^51.^4^22.^53.^~2, 3~^~05/01/2014~ -~36061~^~601~^34.^5^1.^~1~^~A~^^^1^27.^39.^4^28.^38.^~2, 3~^~05/01/2014~ -~36401~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36401~^~268~^727.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36401~^~301~^18.^5^2.^~1~^~A~^^^1^14.^30.^4^10.^26.^~2, 3~^~05/01/2009~ -~36401~^~304~^18.^5^3.^~1~^~A~^^^1^11.^26.^4^9.^26.^~2, 3~^~05/01/2009~ -~36401~^~305~^122.^5^19.^~1~^~A~^^^1^88.^177.^4^67.^177.^~2, 3~^~05/01/2009~ -~36401~^~306~^184.^5^36.^~1~^~A~^^^1^99.^281.^4^82.^285.^~2, 3~^~05/01/2009~ -~36401~^~307~^518.^5^42.^~1~^~A~^^^1^414.^642.^4^400.^636.^~2, 3~^~05/01/2009~ -~36401~^~601~^36.^5^4.^~1~^~A~^^^1^26.^52.^4^23.^48.^~2, 3~^~05/01/2009~ -~36403~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36403~^~268~^1403.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36403~^~301~^20.^3^7.^~1~^~A~^^^1^9.^35.^2^-12.^53.^~2, 3~^~05/01/2009~ -~36403~^~304~^21.^3^4.^~1~^~A~^^^1^12.^26.^2^2.^38.^~2, 3~^~05/01/2009~ -~36403~^~305~^103.^3^15.^~1~^~A~^^^1^77.^129.^2^37.^167.^~2, 3~^~05/01/2009~ -~36403~^~306~^190.^3^24.^~1~^~A~^^^1^141.^218.^2^84.^294.^~2, 3~^~05/01/2009~ -~36403~^~307~^440.^3^31.^~1~^~A~^^^1^402.^503.^2^304.^576.^~2, 3~^~05/01/2009~ -~36403~^~318~^183.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36403~^~319~^10.^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36403~^~321~^73.^3^48.^~1~^~A~^^^1^19.^169.^2^-135.^280.^~2, 3~^~05/01/2009~ -~36403~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~334~^33.^3^21.^~1~^~A~^^^1^9.^75.^2^-57.^123.^~2, 3~^~05/01/2009~ -~36403~^~337~^417.^3^270.^~1~^~A~^^^1^0.^923.^2^-745.^1579.^~1, 2, 3~^~05/01/2009~ -~36403~^~338~^174.^3^77.^~1~^~A~^^^1^41.^310.^2^-159.^507.^~2, 3~^~05/01/2009~ -~36403~^~417~^45.^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~431~^34.^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~432~^11.^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36403~^~601~^26.^3^0.^~1~^~A~^^^1^25.^27.^2^23.^27.^~2, 3~^~05/01/2009~ -~36404~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~268~^610.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~301~^90.^4^20.^~1~^~A~^^^1^36.^127.^3^26.^153.^~2, 3~^~06/01/2009~ -~36404~^~304~^11.^4^2.^~1~^~A~^^^1^5.^14.^3^3.^17.^~2, 3~^~06/01/2009~ -~36404~^~305~^83.^4^17.^~1~^~A~^^^1^38.^110.^3^28.^137.^~2, 3~^~06/01/2009~ -~36404~^~306~^142.^4^32.^~1~^~A~^^^1^58.^198.^3^40.^244.^~2, 3~^~06/01/2009~ -~36404~^~307~^106.^4^35.^~1~^~A~^^^1^41.^182.^3^-6.^218.^~2, 3~^~06/01/2009~ -~36404~^~601~^8.^4^0.^~1~^~A~^^^1^6.^10.^3^5.^11.^~2, 3~^~06/01/2009~ -~36405~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~301~^37.^4^5.^~1~^~A~^^^1^26.^48.^3^19.^53.^~2, 3~^~06/01/2009~ -~36405~^~304~^26.^4^2.^~1~^~A~^^^1^21.^31.^3^19.^33.^~2, 3~^~06/01/2009~ -~36405~^~305~^87.^4^2.^~1~^~A~^^^1^84.^92.^3^80.^93.^~2, 3~^~06/01/2009~ -~36405~^~306~^224.^4^12.^~1~^~A~^^^1^193.^255.^3^183.^264.^~2, 3~^~06/01/2009~ -~36405~^~307~^420.^4^48.^~1~^~A~^^^1^309.^506.^3^265.^573.^~2, 3~^~06/01/2009~ -~36406~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~301~^15.^3^2.^~1~^~A~^^^1^10.^18.^2^5.^25.^~2, 3~^~06/01/2009~ -~36406~^~304~^21.^3^0.^~1~^~A~^^^1^20.^23.^2^17.^24.^~2, 3~^~06/01/2009~ -~36406~^~305~^75.^3^3.^~1~^~A~^^^1^70.^82.^2^59.^90.^~2, 3~^~06/01/2009~ -~36406~^~306~^194.^3^19.^~1~^~A~^^^1^158.^224.^2^111.^276.^~2, 3~^~06/01/2009~ -~36406~^~307~^370.^3^31.^~1~^~A~^^^1^310.^414.^2^236.^503.^~2, 3~^~06/01/2009~ -~36407~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~268~^761.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~305~^54.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~306~^84.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~307~^583.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36408~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~268~^960.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~301~^51.^6^7.^~1~^~A~^^^1^35.^76.^5^32.^70.^~2, 3~^~05/01/2010~ -~36408~^~304~^54.^6^2.^~1~^~A~^^^1^48.^61.^5^48.^59.^~2, 3~^~05/01/2010~ -~36408~^~305~^144.^6^4.^~1~^~A~^^^1^128.^155.^5^133.^154.^~2, 3~^~05/01/2010~ -~36408~^~306~^305.^6^17.^~1~^~A~^^^1^265.^360.^5^260.^349.^~2, 3~^~05/01/2010~ -~36408~^~307~^305.^6^93.^~1~^~A~^^^1^136.^741.^5^63.^546.^~2, 3~^~05/01/2010~ -~36409~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~268~^1070.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~301~^325.^6^16.^~1~^~A~^^^1^270.^372.^5^281.^368.^~2, 3~^~05/01/2010~ -~36409~^~304~^36.^6^0.^~1~^~A~^^^1^32.^39.^5^33.^38.^~2, 3~^~05/01/2010~ -~36409~^~305~^271.^6^10.^~1~^~A~^^^1^232.^292.^5^244.^297.^~2, 3~^~05/01/2010~ -~36409~^~306~^120.^6^7.^~1~^~A~^^^1^107.^156.^5^100.^139.^~2, 3~^~05/01/2010~ -~36409~^~307~^400.^6^65.^~1~^~A~^^^1^243.^697.^5^232.^567.^~2, 3~^~05/01/2010~ -~36409~^~318~^321.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36409~^~319~^87.^3^10.^~1~^~A~^^^1^67.^102.^2^42.^131.^~2, 3~^~05/01/2010~ -~36409~^~320~^89.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36409~^~321~^18.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~324~^48.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~334~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~338~^2.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~417~^3.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~432~^3.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36409~^~601~^32.^6^1.^~1~^~A~^^^1^26.^36.^5^27.^35.^~2, 3~^~05/01/2010~ -~36410~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36410~^~268~^971.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~301~^49.^6^10.^~1~^~A~^^^1^25.^87.^5^22.^75.^~2, 3~^~05/01/2010~ -~36410~^~304~^38.^6^0.^~1~^~A~^^^1^34.^40.^5^35.^39.^~2, 3~^~05/01/2010~ -~36410~^~305~^162.^6^8.^~1~^~A~^^^1^126.^186.^5^140.^184.^~2, 3~^~05/01/2010~ -~36410~^~306~^255.^6^22.^~1~^~A~^^^1^194.^329.^5^197.^312.^~2, 3~^~05/01/2010~ -~36410~^~307~^426.^6^53.^~1~^~A~^^^1^286.^626.^5^288.^562.^~2, 3~^~05/01/2010~ -~36410~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36410~^~319~^8.^3^6.^~1~^~A~^^^1^1.^20.^2^-18.^33.^~2, 3~^~05/01/2010~ -~36410~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36410~^~321~^35.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~324~^28.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~337~^752.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~338~^26.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~417~^4.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~432~^4.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36410~^~601~^29.^6^2.^~1~^~A~^^^1^17.^35.^5^22.^35.^~2, 3~^~05/01/2010~ -~36411~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36411~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~301~^24.^6^12.^~1~^~A~^^^1^4.^84.^5^-8.^56.^~2, 3~^~05/01/2010~ -~36411~^~304~^29.^6^1.^~1~^~A~^^^1^22.^35.^5^24.^33.^~2, 3~^~05/01/2010~ -~36411~^~305~^93.^6^4.^~1~^~A~^^^1^79.^108.^5^80.^106.^~2, 3~^~05/01/2010~ -~36411~^~306~^186.^6^14.^~1~^~A~^^^1^145.^228.^5^149.^222.^~2, 3~^~05/01/2010~ -~36411~^~307~^277.^6^31.^~1~^~A~^^^1^170.^390.^5^196.^357.^~2, 3~^~05/01/2010~ -~36411~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~36411~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~36411~^~321~^23.^3^11.^~1~^~A~^^^1^2.^38.^2^-24.^70.^~2, 3~^~05/01/2010~ -~36411~^~322~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^4.^~1, 2, 3~^~05/01/2010~ -~36411~^~324~^18.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~334~^4.^3^2.^~1~^~A~^^^1^1.^10.^2^-8.^16.^~2, 3~^~05/01/2010~ -~36411~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~338~^145.^3^121.^~1~^~A~^^^1^16.^387.^2^-377.^667.^~2, 3~^~05/01/2010~ -~36411~^~417~^1.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~432~^1.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~36411~^~601~^17.^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36412~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36412~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36412~^~268~^727.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~301~^75.^6^17.^~1~^~A~^^^1^19.^134.^5^29.^119.^~2, 3~^~05/01/2010~ -~36412~^~304~^26.^6^1.^~1~^~A~^^^1^21.^32.^5^21.^30.^~2, 3~^~05/01/2010~ -~36412~^~305~^120.^6^12.^~1~^~A~^^^1^72.^158.^5^88.^151.^~2, 3~^~05/01/2010~ -~36412~^~306~^152.^6^8.^~1~^~A~^^^1^113.^171.^5^130.^172.^~2, 3~^~05/01/2010~ -~36412~^~307~^473.^6^28.^~1~^~A~^^^1^412.^573.^5^400.^545.^~2, 3~^~05/01/2010~ -~36412~^~318~^238.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36412~^~319~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^^~05/01/2010~ -~36412~^~320~^12.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36412~^~321~^113.^2^^~1~^~A~^^^1^31.^195.^1^^^^~05/01/2010~ -~36412~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2010~ -~36412~^~324~^13.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~334~^58.^2^^~1~^~A~^^^1^17.^99.^1^^^^~05/01/2010~ -~36412~^~337~^85.^2^^~1~^~A~^^^1^65.^105.^1^^^^~05/01/2010~ -~36412~^~338~^110.^2^^~1~^~A~^^^1^24.^196.^1^^^^~05/01/2010~ -~36412~^~417~^39.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~431~^30.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~ -~36412~^~601~^20.^6^1.^~1~^~A~^^^1^16.^23.^5^17.^23.^~2, 3~^~05/01/2010~ -~36413~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~301~^42.^5^3.^~1~^~A~^^^1^36.^53.^4^34.^50.^~2, 3~^~05/01/2010~ -~36413~^~304~^41.^5^3.^~1~^~A~^^^1^33.^51.^4^31.^49.^~2, 3~^~05/01/2010~ -~36413~^~305~^109.^5^8.^~1~^~A~^^^1^99.^142.^4^85.^131.^~2, 3~^~05/01/2010~ -~36413~^~306~^340.^5^22.^~1~^~A~^^^1^293.^426.^4^276.^403.^~2, 3~^~05/01/2010~ -~36413~^~307~^311.^5^33.^~1~^~A~^^^1^230.^400.^4^217.^404.^~2, 3~^~05/01/2010~ -~36413~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36413~^~319~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~05/01/2010~ -~36413~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36413~^~601~^1.^5^0.^~1~^~A~^^^1^0.^2.^4^0.^2.^~1, 2, 3~^~05/01/2010~ -~36414~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~268~^309.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~301~^22.^6^2.^~1~^~A~^^^1^13.^30.^5^15.^27.^~2, 3~^~05/01/2010~ -~36414~^~304~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^11.^~2, 3~^~05/01/2010~ -~36414~^~305~^42.^6^2.^~1~^~A~^^^1^32.^49.^5^34.^48.^~2, 3~^~05/01/2010~ -~36414~^~306~^81.^6^10.^~1~^~A~^^^1^32.^104.^5^54.^107.^~2, 3~^~05/01/2010~ -~36414~^~307~^411.^6^32.^~1~^~A~^^^1^322.^535.^5^326.^494.^~2, 3~^~05/01/2010~ -~36414~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36414~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36414~^~601~^59.^6^9.^~1~^~A~^^^1^25.^83.^5^34.^83.^~2, 3~^~05/01/2010~ -~36415~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~268~^916.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~301~^89.^4^54.^~1~^~A~^^^1^6.^249.^3^-85.^262.^~2, 3~^~05/01/2010~ -~36415~^~304~^27.^4^11.^~1~^~A~^^^1^9.^61.^3^-10.^64.^~2, 3~^~05/01/2010~ -~36415~^~305~^117.^4^31.^~1~^~A~^^^1^45.^174.^3^15.^218.^~2, 3~^~05/01/2010~ -~36415~^~306~^88.^4^28.^~1~^~A~^^^1^34.^165.^3^-2.^177.^~2, 3~^~05/01/2010~ -~36415~^~307~^270.^4^66.^~1~^~A~^^^1^149.^422.^3^58.^481.^~2, 3~^~05/01/2010~ -~36415~^~318~^213.^4^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36415~^~319~^60.^4^37.^~1~^~A~^^^1^0.^153.^3^-58.^178.^~1, 2, 3~^~05/01/2010~ -~36415~^~320~^61.^4^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36415~^~321~^7.^4^6.^~1~^~A~^^^1^0.^27.^3^-13.^27.^~2, 3~^~05/01/2010~ -~36415~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~05/01/2010~ -~36415~^~334~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~05/01/2010~ -~36415~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~338~^4.^4^1.^~1~^~A~^^^1^2.^7.^3^1.^7.^~2, 3~^~05/01/2010~ -~36415~^~601~^5.^4^4.^~1~^~A~^^^1^0.^19.^3^-9.^20.^~1, 2, 3~^~05/01/2010~ -~36416~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~36416~^~268~^1935.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~36416~^~301~^215.^3^59.^~1~^~A~^^^1^110.^315.^2^-39.^470.^~2, 3~^~05/01/2010~ -~36416~^~304~^19.^3^1.^~1~^~A~^^^1^17.^22.^2^12.^25.^~2, 3~^~05/01/2010~ -~36416~^~305~^157.^3^37.^~1~^~A~^^^1^81.^200.^2^-6.^320.^~2, 3~^~05/01/2010~ -~36416~^~306~^104.^3^7.^~1~^~A~^^^1^92.^117.^2^72.^135.^~2, 3~^~05/01/2010~ -~36416~^~307~^418.^3^125.^~1~^~A~^^^1^200.^634.^2^-121.^956.^~2, 3~^~05/01/2010~ -~36417~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~301~^20.^12^4.^~1~^~A~^^^1^5.^41.^11^9.^29.^~2, 3~^~03/01/2014~ -~36417~^~304~^13.^12^0.^~1~^~A~^^^1^10.^17.^11^11.^14.^~2, 3~^~03/01/2014~ -~36417~^~305~^57.^12^4.^~1~^~A~^^^1^39.^76.^11^48.^66.^~2, 3~^~03/01/2014~ -~36417~^~306~^116.^12^5.^~1~^~A~^^^1^77.^134.^11^103.^128.^~2, 3~^~03/01/2014~ -~36417~^~307~^528.^12^39.^~1~^~A~^^^1^323.^740.^11^441.^614.^~2, 3~^~03/01/2014~ -~36417~^~318~^100.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36417~^~319~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~03/01/2014~ -~36417~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36417~^~321~^54.^6^14.^~1~^~A~^^^1^24.^111.^5^16.^91.^~2, 3~^~03/01/2014~ -~36417~^~322~^8.^6^5.^~1~^~A~^^^1^0.^31.^5^-5.^22.^~1, 2, 3~^~03/01/2014~ -~36417~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~337~^452.^6^137.^~1~^~A~^^^1^194.^1092.^5^98.^805.^~2, 3~^~03/01/2014~ -~36417~^~338~^66.^6^15.^~1~^~A~^^^1^18.^104.^5^25.^106.^~2, 3~^~03/01/2014~ -~36417~^~417~^50.^6^5.^~1~^~A~^^^1^29.^66.^5^36.^62.^~2, 3~^~03/01/2014~ -~36417~^~431~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36417~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36417~^~601~^0.^6^0.^~1~^~A~^^^1^0.^2.^5^0.^1.^~2, 3~^~03/01/2014~ -~36418~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~268~^651.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~301~^57.^12^3.^~1~^~A~^^^1^39.^87.^11^48.^65.^~2, 3~^~03/01/2014~ -~36418~^~304~^44.^12^0.^~1~^~A~^^^1^37.^48.^11^42.^46.^~2, 3~^~03/01/2014~ -~36418~^~305~^128.^12^4.^~1~^~A~^^^1^102.^148.^11^117.^137.^~2, 3~^~03/01/2014~ -~36418~^~306~^402.^12^11.^~1~^~A~^^^1^317.^444.^11^377.^425.^~2, 3~^~03/01/2014~ -~36418~^~307~^376.^12^16.^~1~^~A~^^^1^309.^521.^11^340.^412.^~2, 3~^~03/01/2014~ -~36418~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36418~^~319~^11.^2^^~1~^~A~^^^1^2.^20.^1^^^^~03/01/2014~ -~36418~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36418~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~417~^29.^6^3.^~1~^~A~^^^1^22.^47.^5^19.^38.^~2, 3~^~03/01/2014~ -~36418~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~432~^29.^6^3.^~1~^~A~^^^1^22.^47.^5^19.^38.^^~03/01/2014~ -~36418~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~36418~^~601~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^4.^6.^~2, 3~^~03/01/2014~ -~36601~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~268~^1045.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~301~^40.^4^5.^~1~^~A~^^^1^32.^54.^3^23.^55.^~2, 3~^~10/01/2008~ -~36601~^~304~^18.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^20.^~2, 3~^~10/01/2008~ -~36601~^~305~^85.^4^10.^~1~^~A~^^^1^64.^110.^3^53.^117.^~2, 3~^~10/01/2008~ -~36601~^~306~^165.^4^5.^~1~^~A~^^^1^150.^170.^3^149.^180.^~2, 3~^~10/01/2008~ -~36601~^~307~^468.^4^54.^~1~^~A~^^^1^350.^560.^3^294.^640.^~2, 3~^~10/01/2008~ -~36601~^~601~^16.^4^4.^~1~^~A~^^^1^8.^30.^3^0.^31.^~2, 3~^~10/01/2008~ -~36602~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~36602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~36602~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~301~^12.^28^0.^~1~^~A~^^^5^4.^20.^4^10.^13.^~2~^~04/01/2013~ -~36602~^~304~^10.^28^0.^~1~^~A~^^^5^6.^14.^4^8.^10.^~2~^~04/01/2009~ -~36602~^~305~^51.^28^2.^~1~^~A~^^^5^28.^70.^4^44.^57.^~2~^~04/01/2013~ -~36602~^~306~^76.^28^5.^~1~^~A~^^^5^35.^115.^4^60.^91.^~2~^~04/01/2013~ -~36602~^~307~^387.^28^17.^~1~^~A~^^^5^215.^528.^4^339.^434.^~2~^~04/01/2013~ -~36602~^~318~^279.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36602~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36602~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36602~^~321~^128.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36602~^~322~^38.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36602~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36602~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36602~^~337~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36602~^~338~^103.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36602~^~417~^6.^4^1.^~1~^~A~^^^1^2.^11.^3^0.^11.^~2, 3~^~10/01/2008~ -~36602~^~431~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~432~^6.^4^1.^~1~^~AS~^^^1^2.^11.^3^0.^11.^~2, 3~^~10/01/2008~ -~36602~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36602~^~601~^18.^4^5.^~1~^~A~^^^1^3.^26.^3^1.^35.^~2, 3~^~04/01/2013~ -~36603~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36603~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36603~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~301~^22.^24^0.^~1~^~A~^^^4^17.^35.^17^20.^23.^~2, 3~^~07/01/2010~ -~36603~^~304~^15.^24^0.^~1~^~A~^^^4^12.^18.^18^14.^15.^~2, 3~^~07/01/2010~ -~36603~^~305~^76.^24^4.^~1~^~A~^^^4^50.^160.^4^63.^87.^~2, 3~^~07/01/2010~ -~36603~^~306~^204.^24^5.^~1~^~A~^^^4^163.^254.^13^192.^215.^~2, 3~^~07/01/2010~ -~36603~^~307~^409.^24^20.^~1~^~A~^^^4^118.^584.^18^365.^452.^~2, 3~^~07/01/2010~ -~36603~^~318~^1262.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36603~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~320~^63.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36603~^~321~^595.^3^127.^~1~^~A~^^^1^464.^850.^2^46.^1143.^~2, 3~^~07/01/2010~ -~36603~^~322~^323.^3^31.^~1~^~A~^^^1^266.^375.^2^187.^458.^~2, 3~^~07/01/2010~ -~36603~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2012~ -~36603~^~334~^1.^3^1.^~1~^~A~^^^1^0.^4.^2^-4.^6.^~1, 2, 3~^~07/01/2010~ -~36603~^~337~^4.^3^4.^~1~^~A~^^^1^0.^12.^2^-13.^21.^~2, 3~^~07/01/2010~ -~36603~^~338~^268.^3^53.^~1~^~A~^^^1^199.^372.^2^39.^496.^~2, 3~^~07/01/2010~ -~36603~^~417~^45.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36603~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36603~^~432~^45.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36603~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36603~^~601~^14.^6^1.^~1~^~A~^^^1^10.^21.^5^8.^18.^~2, 3~^~07/01/2010~ -~36604~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~268~^1231.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~301~^12.^6^0.^~1~^~A~^^^1^11.^14.^5^10.^13.^~2, 3~^~04/01/2013~ -~36604~^~304~^29.^6^0.^~1~^~A~^^^1^27.^32.^5^26.^30.^~2, 3~^~06/01/2009~ -~36604~^~305~^275.^6^10.^~1~^~A~^^^1^244.^319.^5^247.^301.^~2, 3~^~04/01/2013~ -~36604~^~306~^330.^6^10.^~1~^~A~^^^1^308.^377.^5^301.^357.^~2, 3~^~04/01/2013~ -~36604~^~307~^871.^6^47.^~1~^~A~^^^1^751.^1060.^5^749.^992.^~2, 3~^~04/01/2013~ -~36604~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36604~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36604~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36604~^~338~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~417~^7.^3^1.^~1~^~A~^^^1^4.^8.^2^1.^11.^~1, 2, 3~^~04/01/2013~ -~36604~^~432~^7.^3^1.^~1~^~A~^^^1^4.^8.^2^1.^11.^^~04/01/2013~ -~36604~^~601~^42.^3^0.^~1~^~A~^^^1^40.^44.^2^37.^46.^~2, 3~^~06/01/2009~ -~36605~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~301~^43.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~305~^210.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~306~^86.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~307~^1050.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36606~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~301~^43.^5^5.^~1~^~A~^^^1^34.^65.^4^26.^58.^~4~^~06/01/2009~ -~36606~^~304~^34.^5^0.^~1~^~A~^^^1^32.^36.^4^31.^36.^~4~^~06/01/2009~ -~36606~^~305~^470.^5^32.^~1~^~A~^^^1^396.^566.^4^378.^560.^~4~^~06/01/2009~ -~36606~^~306~^434.^5^9.^~1~^~A~^^^1^407.^459.^4^408.^460.^~4~^~06/01/2009~ -~36606~^~307~^414.^5^32.^~1~^~A~^^^1^310.^482.^4^323.^503.^~4~^~06/01/2009~ -~36606~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36606~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36606~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36606~^~601~^67.^5^0.^~1~^~A~^^^1^65.^69.^4^63.^69.^~4~^~06/01/2009~ -~36607~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~301~^19.^6^0.^~1~^~A~^^^1^17.^23.^5^17.^21.^~2, 3~^~04/01/2013~ -~36607~^~304~^32.^6^0.^~1~^~A~^^^1^30.^34.^5^29.^34.^~2, 3~^~04/01/2013~ -~36607~^~305~^117.^6^4.^~1~^~A~^^^1^99.^130.^5^105.^129.^~2, 3~^~04/01/2013~ -~36607~^~306~^551.^6^11.^~1~^~A~^^^1^515.^587.^5^521.^580.^~2, 3~^~04/01/2013~ -~36607~^~307~^43.^6^3.^~1~^~A~^^^1^30.^52.^5^33.^52.^~2, 3~^~04/01/2013~ -~36607~^~417~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36607~^~432~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36607~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36607~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~641~^19.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36608~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~268~^848.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~301~^7.^6^0.^~1~^~A~^^^1^6.^8.^5^6.^7.^~2, 3~^~04/01/2013~ -~36608~^~304~^28.^6^0.^~1~^~A~^^^1^27.^31.^5^26.^29.^~2, 3~^~04/01/2013~ -~36608~^~305~^249.^6^6.^~1~^~A~^^^1^239.^279.^5^232.^265.^~2, 3~^~04/01/2013~ -~36608~^~306~^408.^6^8.^~1~^~A~^^^1^389.^445.^5^386.^430.^~2, 3~^~04/01/2013~ -~36608~^~307~^180.^6^40.^~1~^~A~^^^1^61.^317.^5^77.^283.^~2, 3~^~04/01/2013~ -~36608~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36608~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36608~^~601~^87.^3^3.^~1~^~A~^^^1^82.^93.^2^74.^100.^~2, 3~^~04/01/2013~ -~36609~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~268~^802.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~301~^146.^6^4.^~1~^~A~^^^1^129.^158.^5^132.^158.^~2, 3~^~04/01/2013~ -~36609~^~304~^17.^6^0.^~1~^~A~^^^1^14.^19.^5^14.^18.^~2, 3~^~04/01/2013~ -~36609~^~305~^202.^6^5.^~1~^~A~^^^1^180.^217.^5^186.^217.^~2, 3~^~04/01/2013~ -~36609~^~306~^125.^6^1.^~1~^~A~^^^1^117.^131.^5^119.^129.^~2, 3~^~04/01/2013~ -~36609~^~307~^374.^6^7.^~1~^~A~^^^1^342.^392.^5^355.^393.^~2, 3~^~04/01/2013~ -~36609~^~318~^254.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36609~^~319~^65.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~320~^67.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36609~^~321~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36609~^~338~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~417~^31.^3^4.^~1~^~A~^^^1^24.^39.^2^13.^49.^~2, 3~^~04/01/2013~ -~36609~^~432~^31.^3^4.^~1~^~A~^^^1^24.^39.^2^13.^49.^^~04/01/2013~ -~36609~^~601~^16.^3^0.^~1~^~A~^^^1^15.^17.^2^13.^18.^~2, 3~^~06/01/2009~ -~36610~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~268~^1178.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~301~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^13.^14.^~2, 3~^~04/01/2013~ -~36610~^~304~^27.^6^0.^~1~^~A~^^^1^26.^30.^5^25.^28.^~2, 3~^~04/01/2013~ -~36610~^~305~^115.^6^4.^~1~^~A~^^^1^100.^130.^5^104.^125.^~2, 3~^~04/01/2013~ -~36610~^~306~^492.^6^16.^~1~^~A~^^^1^448.^564.^5^450.^534.^~2, 3~^~04/01/2013~ -~36610~^~307~^44.^6^14.^~1~^~A~^^^1^22.^112.^5^7.^80.^~2, 3~^~04/01/2013~ -~36610~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36610~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36610~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36610~^~638~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~639~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~641~^27.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36611~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~268~^1355.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~301~^331.^6^3.^~1~^~A~^^^1^320.^343.^5^321.^339.^~2, 3~^~04/01/2013~ -~36611~^~304~^21.^6^0.^~1~^~A~^^^1^21.^22.^5^20.^21.^~2, 3~^~04/01/2013~ -~36611~^~305~^358.^6^4.^~1~^~A~^^^1^343.^368.^5^347.^368.^~2, 3~^~04/01/2013~ -~36611~^~306~^121.^6^3.^~1~^~A~^^^1^112.^134.^5^112.^130.^~2, 3~^~04/01/2013~ -~36611~^~307~^1008.^6^18.^~1~^~A~^^^1^964.^1060.^5^960.^1055.^~2, 3~^~04/01/2013~ -~36611~^~318~^343.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36611~^~319~^95.^2^^~1~^~A~^^^1^94.^96.^1^^^^~04/01/2013~ -~36611~^~320~^96.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36611~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36611~^~338~^35.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~417~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^18.^34.^~2, 3~^~04/01/2013~ -~36611~^~601~^32.^3^0.^~1~^~A~^^^1^32.^32.^2^31.^32.^~2, 3~^~04/01/2013~ -~36612~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~268~^1336.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~301~^47.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~305~^498.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~306~^128.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~307~^1400.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~417~^54.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~601~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36613~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~268~^626.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~301~^83.^6^3.^~1~^~A~^^^1^75.^101.^5^73.^93.^~2, 3~^~04/01/2013~ -~36613~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~04/01/2013~ -~36613~^~305~^113.^6^7.^~1~^~A~^^^1^101.^147.^5^94.^131.^~2, 3~^~04/01/2013~ -~36613~^~306~^165.^6^9.^~1~^~A~^^^1^126.^193.^5^141.^189.^~2, 3~^~04/01/2013~ -~36613~^~307~^300.^6^8.^~1~^~A~^^^1^280.^340.^5^277.^321.^~2, 3~^~04/01/2013~ -~36613~^~318~^58.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36613~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36613~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36613~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36613~^~338~^110.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~417~^36.^3^1.^~1~^~A~^^^1^33.^38.^2^29.^42.^~2, 3~^~04/01/2013~ -~36613~^~601~^7.^3^1.^~1~^~A~^^^1^5.^9.^2^1.^12.^~2, 3~^~04/01/2013~ -~36614~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~268~^1575.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~301~^16.^6^0.^~1~^~A~^^^1^14.^18.^5^14.^17.^~2, 3~^~04/01/2013~ -~36614~^~304~^22.^6^0.^~1~^~A~^^^1^21.^24.^5^21.^23.^~2, 3~^~04/01/2013~ -~36614~^~305~^254.^6^6.^~1~^~A~^^^1^234.^278.^5^236.^271.^~2, 3~^~04/01/2013~ -~36614~^~306~^244.^6^4.^~1~^~A~^^^1^232.^260.^5^232.^256.^~2, 3~^~04/01/2013~ -~36614~^~307~^644.^6^17.^~1~^~A~^^^1^564.^681.^5^598.^689.^~2, 3~^~04/01/2013~ -~36614~^~318~^58.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36614~^~319~^17.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~320~^17.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36614~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36614~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36614~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36614~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36614~^~338~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~417~^29.^3^3.^~1~^~A~^^^1^23.^33.^2^14.^43.^~2, 3~^~04/01/2013~ -~36614~^~601~^57.^3^0.^~1~^~A~^^^1^55.^58.^2^52.^60.^~2, 3~^~04/01/2013~ -~36615~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~301~^6.^6^0.^~1~^~A~^^^1^6.^7.^5^5.^7.^~4~^~06/01/2009~ -~36615~^~304~^24.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~4~^~06/01/2009~ -~36615~^~305~^264.^6^3.^~1~^~A~^^^1^254.^275.^5^254.^273.^~4~^~06/01/2009~ -~36615~^~306~^341.^6^4.^~1~^~A~^^^1^326.^354.^5^329.^351.^~4~^~06/01/2009~ -~36615~^~307~^349.^6^12.^~1~^~A~^^^1^313.^382.^5^317.^381.^~4~^~06/01/2009~ -~36615~^~601~^82.^6^1.^~1~^~A~^^^1^78.^88.^5^78.^86.^~4~^~06/01/2009~ -~36617~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36617~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36617~^~268~^1054.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~301~^40.^14^5.^~1~^~A~^^^2^12.^94.^12^26.^52.^~2, 3~^~05/01/2013~ -~36617~^~304~^16.^14^0.^~1~^~A~^^^2^11.^23.^12^14.^17.^~2, 3~^~05/01/2013~ -~36617~^~305~^136.^14^8.^~1~^~A~^^^2^87.^199.^11^116.^154.^~2, 3~^~05/01/2013~ -~36617~^~306~^161.^14^10.^~1~^~A~^^^2^98.^231.^12^138.^182.^~2, 3~^~05/01/2013~ -~36617~^~307~^252.^14^38.^~1~^~A~^^^2^97.^490.^12^168.^335.^~2, 3~^~05/01/2013~ -~36617~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36617~^~319~^2.^3^1.^~1~^~A~^^^1^0.^5.^2^-3.^8.^~1, 2, 3~^~07/01/2010~ -~36617~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36617~^~321~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^2.^~2, 3~^~07/01/2010~ -~36617~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~07/01/2010~ -~36617~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~36617~^~334~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^1.^~2, 3~^~07/01/2010~ -~36617~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~07/01/2010~ -~36617~^~338~^36.^3^4.^~1~^~A~^^^1^31.^46.^2^14.^57.^~2, 3~^~07/01/2010~ -~36617~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~36617~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~601~^32.^7^2.^~1~^~A~^^^2^21.^44.^5^24.^39.^~2, 3~^~07/01/2010~ -~36618~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36618~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36618~^~268~^1233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~301~^12.^12^0.^~1~^~A~^^^1^9.^15.^11^11.^13.^~2, 3~^~07/01/2010~ -~36618~^~304~^18.^12^1.^~1~^~A~^^^1^13.^24.^11^15.^20.^~2, 3~^~07/01/2010~ -~36618~^~305~^127.^12^10.^~1~^~A~^^^1^84.^206.^11^103.^149.^~2, 3~^~07/01/2010~ -~36618~^~306~^201.^12^14.^~1~^~A~^^^1^133.^299.^11^168.^233.^~2, 3~^~07/01/2010~ -~36618~^~307~^435.^12^15.^~1~^~A~^^^1^298.^501.^11^399.^469.^~2, 3~^~07/01/2010~ -~36618~^~318~^94.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36618~^~319~^7.^3^0.^~1~^~A~^^^1^7.^8.^2^5.^8.^~2, 3~^~07/01/2010~ -~36618~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36618~^~321~^37.^3^9.^~1~^~A~^^^1^17.^50.^2^-5.^79.^~2, 3~^~07/01/2010~ -~36618~^~322~^2.^3^1.^~1~^~A~^^^1^0.^4.^2^-3.^7.^~1, 2, 3~^~07/01/2010~ -~36618~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~36618~^~334~^9.^3^2.^~1~^~A~^^^1^5.^12.^2^0.^18.^~2, 3~^~07/01/2010~ -~36618~^~337~^20.^3^19.^~1~^~A~^^^1^0.^59.^2^-64.^103.^~2, 3~^~07/01/2010~ -~36618~^~338~^99.^3^18.^~1~^~A~^^^1^63.^124.^2^19.^178.^~2, 3~^~07/01/2010~ -~36618~^~417~^11.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~07/01/2010~ -~36618~^~431~^5.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~07/01/2010~ -~36618~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~601~^53.^6^3.^~1~^~A~^^^1^43.^64.^5^43.^61.^~2, 3~^~07/01/2010~ -~36619~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~268~^541.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~301~^20.^12^1.^~1~^~A~^^^1^10.^35.^11^15.^24.^~2, 3~^~07/01/2010~ -~36619~^~304~^24.^12^1.^~1~^~A~^^^1^14.^39.^11^20.^28.^~2, 3~^~07/01/2010~ -~36619~^~305~^94.^12^6.^~1~^~A~^^^1^59.^134.^11^79.^108.^~2, 3~^~07/01/2010~ -~36619~^~306~^218.^12^12.^~1~^~A~^^^1^159.^300.^11^190.^246.^~2, 3~^~07/01/2010~ -~36619~^~307~^402.^12^25.^~1~^~A~^^^1^284.^535.^11^344.^458.^~2, 3~^~07/01/2010~ -~36619~^~318~^1299.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36619~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~320~^65.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36619~^~321~^601.^3^273.^~1~^~A~^^^1^217.^1132.^2^-577.^1780.^~2, 3~^~07/01/2010~ -~36619~^~322~^341.^3^177.^~1~^~A~^^^1^68.^674.^2^-422.^1104.^~2, 3~^~07/01/2010~ -~36619~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~334~^16.^3^4.^~1~^~A~^^^1^9.^23.^2^-1.^32.^~2, 3~^~07/01/2010~ -~36619~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~07/01/2010~ -~36619~^~338~^226.^3^26.^~1~^~A~^^^1^185.^276.^2^112.^340.^~2, 3~^~07/01/2010~ -~36619~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36619~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~432~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36619~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36619~^~601~^26.^6^3.^~1~^~A~^^^1^16.^40.^5^16.^35.^~2, 3~^~07/01/2010~ -~36620~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~268~^327.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~301~^36.^12^1.^~1~^~A~^^^1^26.^44.^11^32.^39.^~2, 3~^~02/01/2011~ -~36620~^~304~^16.^12^0.^~1~^~A~^^^1^11.^19.^11^14.^17.^~2, 3~^~02/01/2011~ -~36620~^~305~^74.^12^4.^~1~^~A~^^^1^44.^97.^11^65.^83.^~2, 3~^~02/01/2011~ -~36620~^~306~^192.^12^10.^~1~^~A~^^^1^131.^258.^11^168.^214.^~2, 3~^~02/01/2011~ -~36620~^~307~^375.^12^28.^~1~^~A~^^^1^149.^514.^11^312.^436.^~2, 3~^~02/01/2011~ -~36620~^~318~^1320.^3^298.^~1~^~A~^^^1^928.^1907.^2^33.^2606.^~2, 3~^~02/01/2011~ -~36620~^~319~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~320~^66.^3^14.^~1~^~A~^^^1^46.^95.^2^1.^130.^~2, 3~^~02/01/2011~ -~36620~^~321~^626.^3^145.^~1~^~A~^^^1^439.^914.^2^-1.^1254.^~2, 3~^~02/01/2011~ -~36620~^~322~^331.^3^66.^~1~^~A~^^^1^237.^461.^2^43.^619.^~2, 3~^~02/01/2011~ -~36620~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~337~^6.^3^5.^~1~^~A~^^^1^0.^17.^2^-18.^29.^~2, 3~^~02/01/2011~ -~36620~^~338~^330.^3^33.^~1~^~A~^^^1^288.^396.^2^185.^474.^~2, 3~^~02/01/2011~ -~36620~^~601~^36.^6^2.^~1~^~A~^^^1^28.^41.^5^29.^42.^~2, 3~^~02/01/2011~ -~36621~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36621~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36621~^~268~^1045.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~301~^45.^7^15.^~1~^~A~^^^1^15.^132.^6^8.^82.^~2, 3~^~02/01/2011~ -~36621~^~304~^15.^7^0.^~1~^~A~^^^1^13.^17.^6^13.^16.^~2, 3~^~02/01/2011~ -~36621~^~305~^135.^7^26.^~1~^~A~^^^1^82.^281.^6^71.^198.^~2, 3~^~02/01/2011~ -~36621~^~306~^158.^7^8.^~1~^~A~^^^1^127.^191.^6^138.^177.^~2, 3~^~02/01/2011~ -~36621~^~307~^246.^7^29.^~1~^~A~^^^1^139.^379.^6^172.^319.^~2, 3~^~02/01/2011~ -~36621~^~318~^317.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36621~^~319~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~02/01/2011~ -~36621~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36621~^~321~^138.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~322~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~324~^7.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~11/01/2012~ -~36621~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~36621~^~337~^134.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~338~^37.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~417~^11.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~11/01/2012~ -~36621~^~431~^5.^0^^~4~^~BFZN~^~21229~^^^^^^^^^~11/01/2012~ -~36621~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~36621~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~ -~36621~^~601~^27.^3^1.^~1~^~A~^^^1^24.^29.^2^20.^32.^~2, 3~^~02/01/2011~ -~36622~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~268~^1129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~301~^46.^12^5.^~1~^~A~^^^1^14.^88.^11^33.^58.^~2, 3~^~02/01/2011~ -~36622~^~304~^13.^12^0.^~1~^~A~^^^1^9.^16.^11^11.^14.^~2, 3~^~02/01/2011~ -~36622~^~305~^133.^12^12.^~1~^~A~^^^1^65.^209.^11^106.^159.^~2, 3~^~02/01/2011~ -~36622~^~306~^152.^12^8.^~1~^~A~^^^1^99.^197.^11^133.^170.^~2, 3~^~02/01/2011~ -~36622~^~307~^304.^12^34.^~1~^~A~^^^1^144.^578.^11^229.^379.^~2, 3~^~02/01/2011~ -~36622~^~318~^553.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36622~^~319~^2.^3^0.^~1~^~A~^^^1^0.^3.^2^-1.^4.^~1, 2, 3~^~02/01/2011~ -~36622~^~320~^29.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36622~^~321~^259.^3^227.^~1~^~A~^^^1^9.^713.^2^-719.^1237.^~2, 3~^~02/01/2011~ -~36622~^~322~^139.^3^122.^~1~^~A~^^^1^0.^382.^2^-386.^664.^~2, 3~^~02/01/2011~ -~36622~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~02/01/2011~ -~36622~^~337~^199.^3^123.^~1~^~A~^^^1^32.^440.^2^-330.^729.^~2, 3~^~02/01/2011~ -~36622~^~338~^22.^3^9.^~1~^~A~^^^1^9.^41.^2^-19.^64.^~2, 3~^~02/01/2011~ -~36622~^~601~^24.^6^2.^~1~^~A~^^^1^20.^37.^5^17.^31.^~2, 3~^~02/01/2011~ -~36623~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~301~^21.^12^1.^~1~^~A~^^^1^12.^28.^11^17.^24.^~2, 3~^~02/01/2011~ -~36623~^~304~^11.^12^0.^~1~^~A~^^^1^6.^16.^11^8.^12.^~2, 3~^~02/01/2011~ -~36623~^~305~^54.^12^4.^~1~^~A~^^^1^32.^87.^11^43.^64.^~2, 3~^~02/01/2011~ -~36623~^~306~^124.^12^8.^~1~^~A~^^^1^91.^165.^11^105.^143.^~2, 3~^~02/01/2011~ -~36623~^~307~^311.^12^36.^~1~^~A~^^^1^75.^505.^11^230.^391.^~2, 3~^~02/01/2011~ -~36623~^~318~^362.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36623~^~319~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^-2.^4.^~1, 2, 3~^~02/01/2011~ -~36623~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36623~^~321~^166.^3^128.^~1~^~A~^^^1^10.^420.^2^-384.^716.^~2, 3~^~02/01/2011~ -~36623~^~322~^99.^3^77.^~1~^~A~^^^1^0.^253.^2^-236.^434.^~1, 2, 3~^~02/01/2011~ -~36623~^~334~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^-1.^3.^~1, 2, 3~^~02/01/2011~ -~36623~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2011~ -~36623~^~338~^66.^3^15.^~1~^~A~^^^1^48.^97.^2^0.^132.^~2, 3~^~02/01/2011~ -~36623~^~601~^16.^6^1.^~1~^~A~^^^1^11.^23.^5^11.^19.^~2, 3~^~02/01/2011~ -~36624~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~301~^25.^10^1.^~1~^~A~^^^1^15.^35.^9^20.^29.^~2, 3~^~04/01/2013~ -~36624~^~304~^9.^10^0.^~1~^~A~^^^1^6.^13.^9^7.^10.^~2, 3~^~04/01/2013~ -~36624~^~305~^30.^10^1.^~1~^~A~^^^1^27.^37.^9^28.^32.^~2, 3~^~04/01/2013~ -~36624~^~306~^136.^10^4.^~1~^~A~^^^1^117.^164.^9^125.^147.^~2, 3~^~04/01/2013~ -~36624~^~307~^344.^10^29.^~1~^~A~^^^1^227.^528.^9^278.^409.^~2, 3~^~04/01/2013~ -~36624~^~318~^270.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36624~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36624~^~321~^148.^3^56.^~1~^~A~^^^1^88.^261.^2^-96.^391.^~2, 3~^~04/01/2013~ -~36624~^~322~^28.^3^16.^~1~^~A~^^^1^10.^60.^2^-41.^97.^~2, 3~^~04/01/2013~ -~36624~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36624~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~338~^178.^3^50.^~1~^~A~^^^1^109.^277.^2^-41.^396.^~2, 3~^~04/01/2013~ -~36624~^~417~^40.^3^4.^~1~^~A~^^^1^33.^47.^2^22.^57.^~2, 3~^~04/01/2013~ -~36624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~432~^40.^3^4.^~1~^~A~^^^1^33.^47.^2^22.^57.^^~04/01/2013~ -~36624~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~301~^21.^12^1.^~1~^~A~^^^1^14.^27.^11^18.^23.^~2, 3~^~04/01/2013~ -~36625~^~304~^14.^12^0.^~1~^~A~^^^1^12.^17.^11^13.^15.^~2, 3~^~04/01/2013~ -~36625~^~305~^45.^12^1.^~1~^~A~^^^1^36.^58.^11^41.^48.^~2, 3~^~04/01/2013~ -~36625~^~306~^105.^12^4.^~1~^~A~^^^1^87.^133.^11^96.^114.^~2, 3~^~04/01/2013~ -~36625~^~307~^430.^12^18.^~1~^~A~^^^1^371.^578.^11^390.^469.^~2, 3~^~04/01/2013~ -~36625~^~318~^179.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36625~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36625~^~321~^97.^3^18.^~1~^~A~^^^1^62.^123.^2^18.^175.^~2, 3~^~04/01/2013~ -~36625~^~322~^21.^3^6.^~1~^~A~^^^1^8.^30.^2^-6.^48.^~2, 3~^~04/01/2013~ -~36625~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36625~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~337~^3.^3^3.^~1~^~A~^^^1^0.^10.^2^-10.^17.^~1, 2, 3~^~04/01/2013~ -~36625~^~338~^112.^3^10.^~1~^~A~^^^1^90.^123.^2^65.^157.^~2, 3~^~04/01/2013~ -~36625~^~417~^28.^3^9.^~1~^~A~^^^1^13.^46.^2^-14.^69.^~2, 3~^~04/01/2013~ -~36625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~432~^28.^3^9.^~1~^~A~^^^1^13.^46.^2^-14.^69.^^~04/01/2013~ -~36625~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~301~^20.^23^0.^~1~^~A~^^^4^13.^28.^3^18.^21.^~2~^~04/01/2013~ -~36626~^~304~^15.^23^0.^~1~^~A~^^^4^11.^22.^3^13.^16.^~2~^~04/01/2013~ -~36626~^~305~^73.^23^3.^~1~^~A~^^^4^50.^90.^3^62.^82.^~2~^~04/01/2013~ -~36626~^~306~^185.^23^2.^~1~^~A~^^^4^111.^240.^3^176.^194.^~2~^~04/01/2013~ -~36626~^~307~^413.^23^7.^~1~^~A~^^^4^273.^711.^3^387.^437.^~2~^~04/01/2013~ -~36626~^~318~^630.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36626~^~319~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36626~^~321~^286.^3^49.^~1~^~A~^^^1^190.^354.^2^72.^498.^~2, 3~^~04/01/2013~ -~36626~^~322~^66.^3^21.^~1~^~A~^^^1^32.^106.^2^-26.^158.^~2, 3~^~04/01/2013~ -~36626~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2013~ -~36626~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~338~^301.^3^34.^~1~^~A~^^^1^236.^353.^2^153.^448.^~2, 3~^~04/01/2013~ -~36626~^~417~^40.^3^1.^~1~^~A~^^^1^38.^42.^2^34.^44.^~2, 3~^~04/01/2013~ -~36626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~432~^40.^3^1.^~1~^~A~^^^1^38.^42.^2^34.^44.^^~04/01/2013~ -~36626~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~601~^21.^3^1.^~1~^~A~^^^1^19.^25.^2^13.^28.^~2, 3~^~04/01/2013~ -~36629~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~268~^1096.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~301~^14.^9^1.^~1~^~A~^^^1^10.^21.^8^11.^15.^~2, 3~^~04/01/2013~ -~36629~^~304~^20.^9^1.^~1~^~A~^^^1^15.^26.^8^16.^22.^~2, 3~^~04/01/2013~ -~36629~^~305~^130.^9^9.^~1~^~A~^^^1^96.^187.^8^108.^151.^~2, 3~^~04/01/2013~ -~36629~^~306~^209.^9^12.^~1~^~A~^^^1^159.^264.^8^180.^237.^~2, 3~^~04/01/2013~ -~36629~^~307~^553.^9^60.^~1~^~A~^^^1^381.^950.^8^412.^692.^~2, 3~^~04/01/2013~ -~36629~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36629~^~319~^74.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~320~^75.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36629~^~321~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36629~^~324~^5.^0^^~4~^~BFZN~^~36617~^^^^^^^^^~04/01/2013~ -~36629~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~337~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~338~^81.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~417~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^~2, 3~^~04/01/2013~ -~36629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~432~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^12.^^~04/01/2013~ -~36629~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~601~^61.^3^4.^~1~^~A~^^^1^52.^67.^2^41.^80.^~2, 3~^~04/01/2013~ -~36630~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~301~^17.^12^1.^~1~^~A~^^^1^13.^32.^11^13.^20.^~2, 3~^~04/01/2014~ -~36630~^~304~^17.^12^0.^~1~^~A~^^^1^14.^19.^11^16.^18.^~2, 3~^~04/01/2014~ -~36630~^~305~^59.^12^1.^~1~^~A~^^^1^51.^66.^11^56.^62.^~2, 3~^~04/01/2014~ -~36630~^~306~^172.^12^5.^~1~^~A~^^^1^142.^197.^11^158.^184.^~2, 3~^~04/01/2014~ -~36630~^~307~^230.^12^10.^~1~^~A~^^^1^185.^311.^11^205.^254.^~2, 3~^~04/01/2014~ -~36630~^~318~^232.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36630~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2014~ -~36630~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36630~^~321~^134.^4^19.^~1~^~A~^^^1^89.^182.^3^73.^194.^~2, 3~^~04/01/2014~ -~36630~^~322~^6.^4^2.^~1~^~A~^^^1^0.^11.^3^-1.^13.^~1, 2, 3~^~04/01/2014~ -~36630~^~334~^4.^4^2.^~1~^~A~^^^1^0.^9.^3^-3.^10.^~1, 2, 3~^~04/01/2014~ -~36630~^~337~^2236.^4^289.^~1~^~A~^^^1^1836.^3080.^3^1316.^3156.^~2, 3~^~04/01/2014~ -~36630~^~338~^122.^4^11.^~1~^~A~^^^1^88.^141.^3^84.^160.^~2, 3~^~04/01/2014~ -~36630~^~417~^30.^6^2.^~1~^~A~^^^1^22.^36.^5^24.^35.^~2, 3~^~04/01/2014~ -~36630~^~601~^9.^6^0.^~1~^~A~^^^1^7.^12.^5^6.^10.^~2, 3~^~04/01/2014~ -~36631~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~268~^508.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~301~^15.^6^0.^~1~^~A~^^^1^14.^17.^5^13.^15.^~2, 3~^~04/01/2014~ -~36631~^~304~^18.^6^0.^~1~^~A~^^^1^16.^19.^5^16.^18.^~2, 3~^~04/01/2014~ -~36631~^~305~^60.^6^1.^~1~^~A~^^^1^54.^63.^5^56.^63.^~2, 3~^~04/01/2014~ -~36631~^~306~^164.^6^8.^~1~^~A~^^^1^142.^191.^5^141.^186.^~2, 3~^~04/01/2014~ -~36631~^~307~^209.^6^4.^~1~^~A~^^^1^200.^232.^5^196.^221.^~2, 3~^~04/01/2014~ -~36631~^~318~^191.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36631~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36631~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36631~^~321~^112.^2^^~1~^~A~^^^1^89.^136.^1^^^^~04/01/2014~ -~36631~^~322~^3.^2^^~1~^~A~^^^1^0.^5.^1^^^~1~^~04/01/2014~ -~36631~^~334~^3.^2^^~1~^~A~^^^1^0.^5.^1^^^~1~^~04/01/2014~ -~36631~^~337~^2015.^2^^~1~^~A~^^^1^1887.^2142.^1^^^^~04/01/2014~ -~36631~^~338~^132.^2^^~1~^~A~^^^1^124.^141.^1^^^^~04/01/2014~ -~36631~^~417~^30.^3^2.^~1~^~A~^^^1^27.^35.^2^20.^40.^~2, 3~^~04/01/2014~ -~36631~^~601~^8.^3^0.^~1~^~A~^^^1^7.^9.^2^4.^11.^~2, 3~^~04/01/2014~ -~36632~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~301~^15.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^~2, 3~^~04/01/2014~ -~36632~^~304~^15.^3^1.^~1~^~A~^^^1^14.^17.^2^11.^19.^~2, 3~^~04/01/2014~ -~36632~^~305~^58.^3^4.^~1~^~A~^^^1^51.^66.^2^38.^77.^~2, 3~^~04/01/2014~ -~36632~^~306~^187.^3^9.^~1~^~A~^^^1^169.^197.^2^147.^226.^~2, 3~^~04/01/2014~ -~36632~^~307~^270.^3^27.^~1~^~A~^^^1^219.^311.^2^153.^386.^~2, 3~^~04/01/2014~ -~36632~^~318~^272.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36632~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36632~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36632~^~321~^156.^2^^~1~^~A~^^^1^131.^182.^1^^^^~04/01/2014~ -~36632~^~322~^10.^2^^~1~^~A~^^^1^9.^11.^1^^^^~04/01/2014~ -~36632~^~334~^4.^2^^~1~^~A~^^^1^0.^9.^1^^^~1~^~04/01/2014~ -~36632~^~337~^2458.^2^^~1~^~A~^^^1^1836.^3080.^1^^^^~04/01/2014~ -~36632~^~338~^112.^2^^~1~^~A~^^^1^88.^137.^1^^^^~04/01/2014~ -~36632~^~417~^30.^3^4.^~1~^~A~^^^1^22.^36.^2^12.^47.^~2, 3~^~04/01/2014~ -~36632~^~601~^9.^3^1.^~1~^~A~^^^1^7.^12.^2^3.^15.^~2, 3~^~04/01/2014~ -~36633~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~36633~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~36633~^~268~^1226.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~301~^12.^12^1.^~1~^~A~^^^1^7.^25.^11^8.^14.^~2, 3~^~06/01/2015~ -~36633~^~304~^22.^12^1.^~1~^~A~^^^1^14.^29.^11^19.^24.^~2, 3~^~06/01/2015~ -~36633~^~305~^130.^12^8.^~1~^~A~^^^1^89.^187.^11^111.^148.^~2, 3~^~06/01/2015~ -~36633~^~306~^204.^12^12.^~1~^~A~^^^1^139.^279.^11^176.^230.^~2, 3~^~06/01/2015~ -~36633~^~307~^482.^12^56.^~1~^~A~^^^1^166.^801.^11^358.^605.^~2, 3~^~06/01/2015~ -~36633~^~318~^293.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~319~^82.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~321~^10.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~322~^0.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~324~^5.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~334~^3.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~337~^28.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~338~^90.^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~417~^8.^2^^~1~^~A~^^^1^7.^8.^1^^^^~06/01/2015~ -~36633~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~36633~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~36633~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~601~^59.^3^6.^~1~^~A~^^^1^47.^68.^2^31.^86.^~2, 3~^~06/01/2015~ -~42040~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42040~^~268~^1120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42040~^~301~^6.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~304~^4.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~305~^4.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~306~^28.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~307~^27.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~319~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~320~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~321~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~322~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42040~^~334~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~337~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~338~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~431~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~435~^0.^0^^~4~^~NC~^~19351~^^^^^^^^^~12/01/2006~ -~42040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~42055~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~42055~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~42055~^~301~^1047.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~42055~^~304~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~305~^1239.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~42055~^~306~^498.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~42055~^~307~^404.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42055~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42055~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~42055~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42063~^~208~^11.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~42063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42063~^~268~^46.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~42063~^~301~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~304~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~305~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~306~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~307~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~318~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~42063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~ -~42063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~417~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~42063~^~432~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~42063~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42074~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42074~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~263~^32.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~268~^924.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42074~^~301~^222.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~304~^28.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~305~^173.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~306~^305.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~307~^104.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~318~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42074~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~42074~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42074~^~321~^44.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~42074~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~324~^7.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42074~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42074~^~601~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42116~^~208~^160.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42116~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42116~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42116~^~268~^669.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42116~^~301~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~305~^7.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~306~^36.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~307~^833.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~42116~^~318~^137.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~320~^11.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~321~^64.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~322~^17.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~337~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~338~^78.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42116~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~42116~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42117~^~208~^390.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~268~^1632.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~301~^705.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~304~^30.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~305~^530.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~306~^55.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~307~^670.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~318~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~42117~^~319~^113.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42117~^~320~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~42117~^~321~^28.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42117~^~432~^18.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~42117~^~601~^15.^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42119~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42119~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42119~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42119~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42119~^~301~^79.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~304~^10.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~305~^65.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~306~^160.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~307~^37.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42119~^~319~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42119~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42119~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42119~^~322~^3.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42119~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~42119~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42119~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42119~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42119~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42119~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42119~^~601~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42120~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42120~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42120~^~268~^310.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42120~^~301~^81.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~304~^10.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~305~^60.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~306~^137.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~307~^36.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42120~^~319~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42120~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42120~^~321~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42120~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42120~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~ -~42120~^~334~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42120~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42120~^~338~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42120~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42120~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~42120~^~601~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42128~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~42128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42128~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~42128~^~301~^5.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~304~^20.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~305~^304.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~306~^299.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~307~^1038.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~318~^0.^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42128~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42128~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42128~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42128~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~42128~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42128~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42128~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42128~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42128~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42128~^~601~^67.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42129~^~208~^230.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42129~^~268~^962.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~301~^11.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~304~^12.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~305~^181.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~306~^156.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~307~^1108.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~324~^19.^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~42129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42129~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42129~^~601~^39.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42131~^~208~^167.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~262~^3.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2005~ -~42131~^~263~^62.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42131~^~268~^699.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~301~^154.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~304~^45.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~305~^123.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~306~^333.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~307~^97.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42131~^~321~^18.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42131~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42135~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~268~^938.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~301~^71.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~304~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~305~^74.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~306~^101.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~307~^72.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~319~^0.^0^^~4~^~BFFN~^~01073~^^^^^^^^^~01/01/2003~ -~42135~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~321~^45.^0^^~4~^~BFFN~^~01073~^^^^^^^^^~01/01/2003~ -~42135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~417~^3.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42135~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~601~^2.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42136~^~208~^431.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~268~^1803.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~301~^1.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~304~^0.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~305~^136.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~306~^902.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~307~^229.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42136~^~319~^0.^0^^~4~^~BFFN~^~01069~^^^^^^^^^~01/01/2003~ -~42136~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~42136~^~321~^9.^0^^~4~^~BFFN~^~01069~^^^^^^^^^~01/01/2003~ -~42136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~417~^1.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42136~^~432~^1.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~42136~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42137~^~208~^564.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~262~^0.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~263~^0.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~268~^2360.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~301~^22.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~305~^26.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~306~^176.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~307~^1103.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~42137~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42137~^~319~^10.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42137~^~321~^2.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~322~^1.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~324~^4.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~334~^1.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~337~^0.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~338~^29.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~417~^4.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~431~^0.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~432~^4.^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42137~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42137~^~601~^49.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42138~^~208~^333.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~268~^1393.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~301~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~304~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~305~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~306~^67.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~307~^733.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~42138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42138~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~42138~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42138~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~417~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~431~^0.^0^^~4~^~BFZN~^~43598~^^^^^^^^^~03/01/2005~ -~42138~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~42138~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42139~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42139~^~262~^3.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~42139~^~263~^41.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~42139~^~268~^2241.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42139~^~301~^108.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~304~^67.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~305~^227.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~306~^339.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~307~^193.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42139~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42139~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42139~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~417~^25.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42139~^~432~^25.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~42139~^~601~^12.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42140~^~208~^200.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42140~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~268~^837.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42140~^~301~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~305~^7.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~306~^33.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42140~^~307~^1074.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~42140~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42140~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42140~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42141~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~301~^1.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~304~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~305~^75.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~306~^177.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~307~^60.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~319~^0.^0^^~4~^~BFFN~^~01067~^^^^^^^^^~01/01/2003~ -~42141~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~321~^3.^0^^~4~^~BFFN~^~01067~^^^^^^^^^~01/01/2003~ -~42141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~417~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42141~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~601~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42148~^~208~^529.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~262~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~263~^63.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~268~^2214.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~301~^88.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~304~^81.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~305~^191.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~306~^330.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~307~^213.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~318~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42148~^~319~^28.^0^^~4~^~O~^^^^^^^^^^~01/01/2006~ -~42148~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42148~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42148~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~417~^45.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42148~^~432~^45.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42148~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42150~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42150~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~268~^389.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42150~^~301~^6.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~304~^15.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~305~^31.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~306~^70.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~307~^20.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42150~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42150~^~321~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~42150~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~417~^9.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42150~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42150~^~601~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42151~^~208~^465.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~262~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~263~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~268~^1946.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~301~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~304~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~305~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~306~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~307~^581.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42151~^~319~^768.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42151~^~321~^610.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~322~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42151~^~334~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~337~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~338~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~417~^1.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~431~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42151~^~601~^54.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42153~^~208~^86.^0^^~4~^^^^^^^^^^^~03/01/1993~ -~42153~^~262~^0.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~263~^0.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~268~^360.^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~301~^68.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~304~^4.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~305~^47.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~306~^51.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~307~^939.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~42153~^~318~^254.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42153~^~319~^65.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~320~^67.^0^^~4~^~NC~^~04539~^^^^^^^^^~07/01/2004~ -~42153~^~321~^19.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~322~^4.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42153~^~334~^4.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~337~^0.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~338~^126.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~417~^28.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~431~^0.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~432~^28.^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42153~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42153~^~601~^10.^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42155~^~208~^313.^0^^~8~^^^^^^^^^^^~06/01/2013~ -~42155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~268~^1310.^0^^~8~^^^^^^^^^^^~06/01/2013~ -~42155~^~301~^705.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~304~^27.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~305~^444.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~306~^81.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~307~^781.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~42155~^~318~^549.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42155~^~319~^137.^0^^~4~^~BFFN~^~01025~^^^^^^^^^~01/01/2003~ -~42155~^~320~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42155~^~321~^55.^0^^~4~^~BFFN~^~01025~^^^^^^^^^~01/01/2003~ -~42155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~324~^16.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42155~^~417~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~431~^0.^0^^~4~^~BFNN~^~01025~^^^^^^^^^~01/01/2003~ -~42155~^~432~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42155~^~601~^65.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42157~^~208~^107.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~262~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~263~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~268~^448.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~301~^36.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~304~^5.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~305~^77.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~306~^133.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~307~^897.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~42157~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42157~^~319~^1.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~320~^1.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~321~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~322~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42157~^~334~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~337~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~338~^4.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~417~^6.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~431~^0.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~432~^6.^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42157~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42157~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42158~^~208~^140.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~262~^0.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~263~^0.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~268~^586.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~301~^36.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~304~^5.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~305~^100.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~306~^49.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~307~^932.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42158~^~319~^17.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~320~^18.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~321~^4.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~322~^2.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42158~^~334~^2.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~337~^0.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~338~^49.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~417~^4.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~431~^0.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~432~^4.^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42158~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42158~^~601~^0.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42161~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42161~^~268~^854.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42161~^~301~^9.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~304~^12.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~305~^178.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~306~^147.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~307~^821.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~42161~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42161~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42161~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42161~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~324~^15.^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~42161~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42161~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42161~^~601~^44.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42171~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~42171~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~268~^948.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~42171~^~301~^11.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~304~^9.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~42171~^~305~^14.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~306~^79.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~307~^804.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~42171~^~318~^204.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~320~^10.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~321~^120.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42171~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~337~^3843.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42171~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42173~^~208~^307.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42173~^~268~^1284.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~301~^32.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~304~^19.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~305~^191.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~306~^337.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~307~^878.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42173~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42173~^~324~^79.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~42173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42173~^~417~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42173~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42173~^~601~^84.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42178~^~208~^322.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~268~^1348.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~301~^53.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~304~^52.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~305~^49.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~306~^66.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~307~^773.^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~42178~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42178~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~42178~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42178~^~321~^23.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42178~^~334~^6.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~338~^21.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~417~^8.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~42178~^~432~^8.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42178~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42179~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~42179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42179~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~42179~^~301~^8.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~304~^11.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~305~^191.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~306~^129.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~307~^744.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~42179~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42179~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42179~^~324~^24.^0^^~4~^~BFFN~^~07022~^^^^^^^^^~02/01/2009~ -~42179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42179~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42179~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42179~^~601~^40.^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42183~^~208~^553.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42183~^~262~^10.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1998~ -~42183~^~263~^212.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1998~ -~42183~^~268~^2313.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42183~^~301~^130.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~304~^46.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~305~^147.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~306~^309.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~307~^266.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42183~^~319~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42183~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42183~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~417~^9.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42183~^~432~^9.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42183~^~601~^6.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42185~^~208~^107.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~262~^3.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42185~^~263~^106.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42185~^~268~^448.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~301~^159.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~304~^40.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~305~^129.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~306~^339.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~307~^81.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~318~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~319~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~42185~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42185~^~321~^8.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~322~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42185~^~334~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~337~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~338~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~417~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~ -~42185~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42185~^~601~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~42186~^~262~^3.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42186~^~263~^106.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42186~^~268~^547.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~42186~^~301~^100.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~304~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~305~^89.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~306~^234.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~307~^63.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~318~^141.^0^^~4~^~NC~^~19270~^^^^^^^^^~03/01/2009~ -~42186~^~319~^38.^0^^~4~^~BFFN~^~19270~^^^^^^^^^~03/01/2003~ -~42186~^~320~^39.^0^^~4~^~NC~^~19270~^^^^^^^^^~06/01/2009~ -~42186~^~321~^9.^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42186~^~322~^0.^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42186~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42186~^~334~^0.^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42186~^~337~^0.^0^^~4~^~BFFN~^~19270~^^^^^^^^^~03/01/2003~ -~42186~^~338~^0.^0^^~4~^~BFFN~^~19270~^^^^^^^^^~03/01/2003~ -~42186~^~417~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~431~^0.^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42186~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~42186~^~601~^13.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~208~^127.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~262~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~04/01/2005~ -~42187~^~263~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~04/01/2005~ -~42187~^~268~^531.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~301~^100.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~304~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~305~^89.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~306~^156.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~307~^63.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~318~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42187~^~319~^48.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~320~^49.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2006~ -~42187~^~321~^9.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~322~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42187~^~334~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~337~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~338~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~417~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~431~^0.^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42187~^~601~^13.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42189~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42189~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42189~^~301~^143.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~304~^13.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~305~^82.^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~306~^180.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~307~^105.^0^^~4~^~BFZN~^~01088~^^^^^^^^^~08/01/2011~ -~42189~^~318~^58.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42189~^~319~^16.^0^^~4~^~BFFN~^~01088~^^^^^^^^^~01/01/2003~ -~42189~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42189~^~321~^3.^0^^~4~^~BFFN~^~01088~^^^^^^^^^~01/01/2003~ -~42189~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42189~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42189~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42189~^~601~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42190~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~42190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~42190~^~268~^1703.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~42190~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~305~^116.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~306~^212.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~307~^689.^4^^~1~^~A~^^^3^616.^764.^^^^~2~^~09/01/2015~ -~42190~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42190~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~324~^36.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~42190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42190~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42190~^~601~^66.^4^^~1~^~A~^^^3^48.^77.^^^^~2~^~05/01/2004~ -~42192~^~208~^115.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~268~^481.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~301~^51.^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~304~^15.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~305~^107.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~306~^194.^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~307~^814.^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~318~^18.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~319~^5.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~320~^5.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42192~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~42192~^~601~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42193~^~208~^84.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~268~^351.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42193~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~304~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~305~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~306~^49.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~307~^788.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~42193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42193~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42193~^~417~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~432~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42193~^~601~^9.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42196~^~208~^443.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~262~^30.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~263~^238.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~268~^1855.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~301~^53.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~304~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~305~^75.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~306~^196.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~307~^168.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~318~^155.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~319~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~320~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~321~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42196~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42196~^~601~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42200~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~268~^1552.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~301~^143.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~304~^271.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~305~^385.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~306~^1000.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~307~^1745.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~319~^13.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~321~^4.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~324~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~417~^219.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~432~^219.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~435~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~601~^4.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~636~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42204~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42204~^~262~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~263~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~268~^1638.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42204~^~301~^11.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~304~^131.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~305~^360.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~306~^428.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~307~^71.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42204~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42204~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42204~^~321~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~322~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42204~^~334~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~337~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~338~^0.^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~417~^21.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42204~^~432~^21.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42204~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42227~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42227~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~263~^73.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~268~^2184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42227~^~301~^155.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~304~^116.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~305~^203.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~306~^381.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~307~^45.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~318~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42227~^~319~^24.^0^^~4~^~O~^^^^^^^^^^~12/01/2005~ -~42227~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42227~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42227~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42227~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42227~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42227~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42227~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42227~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42230~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42230~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~268~^1376.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42230~^~301~^36.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~304~^5.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~305~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~306~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~307~^1600.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42230~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42230~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~42230~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42230~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42230~^~601~^25.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42231~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~268~^3700.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~42231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42231~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~42231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~417~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42231~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42231~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~42231~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~638~^30.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~639~^98.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~641~^206.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42235~^~208~^74.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~268~^310.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~301~^53.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~42235~^~304~^5.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~305~^134.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~306~^86.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~307~^220.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~42235~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42235~^~319~^11.^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~42235~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~42235~^~321~^3.^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~42235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~417~^12.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42235~^~432~^12.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~42235~^~601~^4.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42236~^~208~^400.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~42236~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~42236~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~42236~^~268~^1674.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~42236~^~301~^333.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~42236~^~304~^28.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42236~^~305~^141.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42236~^~306~^207.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~307~^533.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~42236~^~318~^1667.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~42236~^~319~^500.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~ -~42236~^~320~^500.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~42236~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~42236~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~42236~^~324~^143.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2009~ -~42236~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~ -~42236~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~42236~^~338~^92.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~417~^353.^0^^~8~^^^~Y~^^^^^^^^~02/01/2005~ -~42236~^~431~^334.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2003~ -~42236~^~432~^19.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~42236~^~435~^587.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42236~^~601~^0.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~208~^371.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42237~^~268~^1554.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~301~^57.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~304~^92.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~305~^172.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~306~^429.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~307~^371.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~318~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~319~^0.^0^^~4~^~FLC~^^~N~^^^^^^^^~02/01/2003~ -~42237~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42237~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42237~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42237~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42237~^~338~^215.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~417~^46.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~431~^0.^0^^~4~^~FLC~^^~N~^^^^^^^^~02/01/2003~ -~42237~^~432~^46.^0^^~8~^^^^^^^^^^^~04/01/2014~ -~42237~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42237~^~601~^0.^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42240~^~208~^409.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~42240~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~42240~^~268~^1713.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~305~^172.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~306~^211.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~307~^417.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~318~^2344.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~319~^675.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~42240~^~320~^680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~42240~^~321~^43.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~322~^28.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~324~^125.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~42240~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~42240~^~338~^630.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~417~^625.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~431~^606.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~42240~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~42240~^~435~^1049.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~42240~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42256~^~208~^534.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42256~^~268~^2234.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~301~^0.^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~304~^0.^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~305~^16.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~306~^30.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~307~^542.^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~42256~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~42256~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42256~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42256~^~417~^0.^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42256~^~432~^0.^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42256~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42259~^~208~^500.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42259~^~268~^2092.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~301~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~304~^108.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~305~^250.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~306~^225.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~307~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42259~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~321~^70.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~42259~^~322~^46.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~42259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42259~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42259~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42259~^~338~^1087.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~42259~^~417~^17.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42259~^~432~^17.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42261~^~208~^403.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~268~^1685.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~301~^39.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~42261~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~305~^296.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~306~^337.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~307~^287.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~318~^1442.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~319~^430.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~42261~^~320~^430.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~42261~^~321~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~324~^77.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~338~^137.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~417~^192.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~431~^173.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~42261~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~42261~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~42265~^~208~^378.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~268~^1582.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~301~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~304~^87.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42265~^~305~^253.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~306~^378.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~307~^247.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~318~^1364.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~319~^407.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~42265~^~320~^407.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~42265~^~321~^4.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~324~^73.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~338~^115.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~417~^182.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~431~^163.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~42265~^~435~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~42265~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~42266~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42266~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~42266~^~301~^15.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~304~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~305~^14.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~306~^137.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~307~^5.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~318~^3081.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42266~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~320~^154.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42266~^~321~^1849.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42266~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42266~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42266~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42266~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~417~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42266~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42266~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42267~^~208~^43.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42267~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~268~^180.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42267~^~301~^16.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~304~^10.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~305~^19.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~306~^174.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~307~^10.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~318~^1880.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42267~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42267~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42267~^~321~^863.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~322~^395.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42267~^~334~^135.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~338~^135.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~417~^39.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42267~^~432~^39.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42267~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42270~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~42270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~42270~^~268~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~42270~^~301~^2.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~304~^3.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~305~^4.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~306~^42.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~307~^2.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~318~^44.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~320~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~321~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~334~^37.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~338~^29.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~42270~^~417~^4.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42270~^~432~^4.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~42270~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42272~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42272~^~262~^3.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~42272~^~263~^41.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1998~ -~42272~^~268~^2223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42272~^~301~^42.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~304~^56.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~305~^154.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~306~^254.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~307~^152.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42272~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42272~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42272~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~417~^9.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42272~^~432~^9.^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~42272~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42278~^~208~^69.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42278~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42278~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42278~^~268~^289.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42278~^~301~^14.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~304~^15.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~305~^33.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~306~^135.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~307~^14.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~318~^150.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42278~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42278~^~321~^73.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42278~^~322~^33.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42278~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42278~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42278~^~338~^550.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42278~^~417~^16.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42278~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42278~^~601~^0.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42279~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42279~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42279~^~301~^14.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~304~^25.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~305~^52.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~306~^93.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~307~^6.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~318~^390.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42279~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42279~^~321~^228.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~322~^11.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~338~^1261.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~417~^16.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~42279~^~601~^0.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42280~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42280~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42280~^~301~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~304~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~305~^155.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~306~^261.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~307~^983.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~318~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~319~^1.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42280~^~320~^1.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~42280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42280~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42280~^~601~^44.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42281~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~42281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~268~^1390.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~42281~^~301~^294.^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~304~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~305~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~306~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~307~^125.^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~318~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~42281~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42281~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42281~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42281~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42281~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42281~^~417~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~432~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~42281~^~601~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42283~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42283~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42283~^~301~^125.^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~304~^43.^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~305~^274.^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~306~^721.^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~307~^536.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~42283~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42283~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42283~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42283~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42283~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~417~^0.^1^^~4~^^^^^^^^^^^~02/01/2006~ -~42283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~42283~^~432~^0.^1^^~4~^^^^^^^^^^^~02/01/2006~ -~42283~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~42283~^~601~^0.^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42284~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42284~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~268~^1763.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~301~^400.^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~304~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~305~^709.^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~306~^114.^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~42284~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42284~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42284~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42284~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~417~^114.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~42284~^~431~^95.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~42284~^~432~^18.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~42284~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42284~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42285~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~268~^1698.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~301~^55.^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~304~^28.^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~305~^272.^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~306~^386.^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~307~^12.^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2003~ -~42285~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42285~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~417~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42285~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42286~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~301~^31.^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~304~^22.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~305~^56.^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~306~^188.^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~307~^11.^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~318~^629.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~321~^377.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~338~^637.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~417~^29.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~432~^29.^0^^~4~^^^^^^^^^^^~04/01/2003~ -~42286~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~601~^11.^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42289~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~301~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~304~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~305~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~306~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~307~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42289~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~417~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42289~^~638~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~03/01/2007~ -~42289~^~639~^233.^2^^~1~^~A~^^^1^233.^234.^1^^^^~03/01/2007~ -~42289~^~641~^419.^2^^~1~^~A~^^^1^416.^423.^1^^^^~03/01/2007~ -~42290~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~268~^145.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42290~^~301~^204.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~304~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~305~^101.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~306~^166.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~307~^52.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~318~^458.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42290~^~319~^137.^0^^~4~^~BFFN~^~01085~^^^^^^^^^~01/01/2003~ -~42290~^~320~^137.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42290~^~321~^0.^0^^~4~^~BFFN~^~01085~^^^^^^^^^~01/01/2003~ -~42290~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~324~^47.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~02/01/2009~ -~42290~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42290~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42290~^~601~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42291~^~208~^590.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~42291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42291~^~268~^2468.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~42291~^~301~^41.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~304~^159.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~305~^317.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~306~^747.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~307~^203.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42291~^~319~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~42291~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42291~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~417~^92.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~431~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~ -~42291~^~432~^92.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~42291~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42297~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~268~^1631.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~305~^279.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~306~^349.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~307~^238.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~318~^1271.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~319~^377.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~42297~^~320~^378.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~42297~^~321~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~322~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~324~^68.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~338~^124.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~417~^339.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~431~^320.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~42297~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~42297~^~435~^563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~42297~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42303~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42303~^~301~^529.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~304~^27.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~305~^468.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~306~^134.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~307~^600.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~318~^593.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42303~^~319~^174.^0^^~4~^~BFFN~^~01030~^^^^^^^^^~01/01/2003~ -~42303~^~320~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42303~^~321~^8.^0^^~4~^~BFFN~^~01030~^^^^^^^^^~01/01/2003~ -~42303~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~324~^13.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42303~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42303~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42303~^~601~^63.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42304~^~301~^961.^1^^~13~^~AI~^^^^^^^^^^~03/01/2003~ -~42304~^~304~^33.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~305~^656.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~306~^106.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~307~^743.^1^^~13~^~AI~^^^^^^^^^^~03/01/2003~ -~42304~^~318~^481.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42304~^~319~^124.^0^^~4~^~BFZN~^~01028~^^^^^^^^^~01/01/2003~ -~42304~^~320~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42304~^~321~^41.^0^^~4~^~BFZN~^~01028~^^^^^^^^^~01/01/2003~ -~42304~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~324~^0.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42304~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~417~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~42304~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42304~^~601~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42307~^~208~^718.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42307~^~268~^3004.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~301~^28.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~304~^2.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~305~^23.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~306~^37.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~307~^28.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42307~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2004~ -~42307~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42307~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~324~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~42307~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~417~^2.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~42307~^~432~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42307~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42307~^~601~^88.^0^^~4~^~S~^^^^^^^^^^~04/01/2003~ -~42309~^~208~^450.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~262~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~10/01/2004~ -~42309~^~263~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~268~^1883.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~301~^28.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~304~^2.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~305~^23.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~306~^37.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~307~^607.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~318~^3571.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~319~^768.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42309~^~321~^610.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~322~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42309~^~334~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~337~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~338~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~417~^2.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~431~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42309~^~601~^71.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~42316~^~262~^0.^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~263~^0.^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~42316~^~301~^19.^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~304~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~305~^21.^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~306~^129.^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~307~^48.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~42316~^~318~^14710.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42316~^~320~^736.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42316~^~321~^7156.^0^^~4~^~BNA~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~322~^3340.^0^^~4~^~BNA~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42316~^~334~^0.^0^^~4~^~BNA~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~337~^1.^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~338~^167.^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~417~^7.^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~42316~^~432~^7.^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~42316~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43004~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43004~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43004~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43004~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43004~^~301~^11.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~304~^5.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~305~^34.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~306~^90.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~307~^54.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43004~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43004~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43004~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~43004~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~43004~^~324~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43004~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~43004~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43004~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43004~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43004~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43004~^~601~^29.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43006~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~268~^277.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43006~^~301~^15.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~304~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~305~^17.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~306~^46.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~307~^25.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~318~^133.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43006~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~43006~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43006~^~321~^35.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~43006~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~43006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43006~^~334~^89.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~43006~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~417~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43006~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43006~^~601~^15.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43007~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~268~^290.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43007~^~301~^14.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~304~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~305~^28.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~306~^47.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~307~^17.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43007~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~43007~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43007~^~321~^52.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43007~^~334~^134.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~338~^25.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~417~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43007~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43007~^~601~^15.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43008~^~301~^18.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~304~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~305~^20.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~306~^60.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~307~^25.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43008~^~318~^1169.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43008~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43008~^~321~^571.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~322~^260.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~338~^105.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~417~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43008~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43008~^~601~^10.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43015~^~208~^542.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~268~^2266.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~301~^48.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~43015~^~304~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~305~^19.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~306~^29.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~307~^1209.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~43015~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~319~^9.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~322~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~324~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2009~ -~43015~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~338~^22.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~417~^2.^1^^~1~^^^^^^^^^^^~12/01/2007~ -~43015~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~12/01/2007~ -~43015~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~43015~^~601~^39.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~43016~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~268~^1689.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~301~^9.^15^0.^~1~^~A~^^^1^8.^10.^6^9.^9.^~2, 3~^~10/01/2016~ -~43016~^~304~^3.^15^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~2, 3~^~10/01/2016~ -~43016~^~305~^42.^15^0.^~1~^~A~^^^1^21.^60.^6^40.^43.^~2, 3~^~10/01/2016~ -~43016~^~306~^35.^15^2.^~1~^~A~^^^1^12.^53.^5^29.^41.^~2, 3~^~10/01/2016~ -~43016~^~307~^850.^15^11.^~1~^~A~^^^1^506.^1090.^5^818.^880.^~2, 3~^~10/01/2016~ -~43016~^~318~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43016~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43016~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~324~^0.^0^^~4~^~BFSN~^~42230~^^^^^^^^^~10/01/2016~ -~43016~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~417~^4.^3^^~1~^~A~^^^1^1.^9.^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~432~^4.^3^^~1~^~A~^^^1^1.^9.^^^^^~10/01/2016~ -~43016~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~601~^41.^3^^~1~^~A~^^^1^21.^63.^^^^~2, 3~^~10/01/2016~ -~43017~^~208~^427.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43017~^~268~^1787.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~301~^34.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~304~^7.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~305~^31.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~306~^58.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~307~^867.^1^^~8~^~LC~^^^^^^^^^^~07/01/2005~ -~43017~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~319~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43017~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~417~^4.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~43017~^~432~^4.^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43017~^~601~^40.^0^^~1~^^^^^^^^^^^~07/01/2005~ -~43019~^~208~^15.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~268~^63.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~301~^4.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~304~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~305~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~306~^33.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~307~^208.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43019~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43019~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43020~^~208~^99.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~268~^414.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~301~^89.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~304~^7.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~305~^83.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~306~^5.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~307~^939.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~43020~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43020~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43020~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43020~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~417~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~432~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43020~^~601~^1.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43021~^~208~^110.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~268~^460.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~301~^24.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~304~^2.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~305~^19.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~306~^29.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~307~^1148.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~43021~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43021~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43021~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43021~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~417~^2.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~43021~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~43021~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43021~^~601~^2.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43026~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43026~^~301~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~304~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~305~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~306~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~307~^210.^0^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~43026~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43026~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43026~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43026~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43027~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~43027~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~43027~^~301~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~305~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~306~^96.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~307~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~318~^707.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~43027~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~43027~^~321~^402.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~322~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~334~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~338~^33.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~43027~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~636~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43028~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43028~^~262~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~263~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43028~^~301~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~304~^5.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~305~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~306~^69.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~307~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~319~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43028~^~321~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~322~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43028~^~334~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~337~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~338~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~417~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~431~^0.^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43028~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43031~^~208~^470.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43031~^~262~^19.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~43031~^~263~^113.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~43031~^~268~^1965.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43031~^~301~^78.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~304~^81.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~305~^166.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~306~^445.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~307~^156.^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~43031~^~318~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43031~^~319~^41.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43031~^~321~^7.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~322~^0.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43031~^~334~^0.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~337~^0.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~338~^0.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~417~^92.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~431~^0.^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~432~^92.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43031~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43046~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43046~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~268~^1665.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43046~^~301~^32.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~304~^32.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~305~^55.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~306~^105.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~307~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43046~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43046~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43046~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43057~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~43057~^~262~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~263~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~268~^1482.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~43057~^~301~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~304~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~305~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~306~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43057~^~307~^7.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~319~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~320~^0.^0^^~4~^~NC~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~321~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~322~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43057~^~334~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~337~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~338~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~431~^0.^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~435~^0.^0^^~4~^~NC~^~43058~^^^^^^^^^~12/01/2006~ -~43057~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43058~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~43058~^~262~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~263~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~268~^1650.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~43058~^~301~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~304~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~305~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~306~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~307~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~319~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~320~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~321~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~322~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43058~^~334~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~337~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~338~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~431~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~432~^0.^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~435~^0.^0^^~4~^~NC~^~19335~^^^^^^^^^~05/01/2009~ -~43058~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43059~^~208~^590.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~262~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~263~^150.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~268~^2467.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~301~^285.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~304~^129.^0^^~4~^^^^^^^^^^^~02/01/2015~ -~43059~^~305~^332.^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~306~^606.^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~307~^111.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~319~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43059~^~321~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~43059~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~417~^25.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~432~^25.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~601~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43060~^~208~^268.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~262~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~263~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~268~^1121.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~301~^20.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~304~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~305~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~306~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~307~^7.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~319~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~320~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~321~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~322~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43060~^~334~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~337~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~338~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~417~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~431~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~432~^0.^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~435~^0.^0^^~4~^~NC~^~19163~^^^^^^^^^~12/01/2006~ -~43060~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~ -~43075~^~208~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~268~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~43075~^~301~^10.^0^^~1~^^^^^^^^^^^~06/01/2006~ -~43075~^~304~^1.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~305~^10.^0^^~1~^^^^^^^^^^^~06/01/2006~ -~43075~^~306~^77.^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~43075~^~307~^101.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~43075~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~43075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43075~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43075~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43075~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/2006~ -~43098~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43098~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43098~^~301~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~304~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~305~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~306~^118.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43098~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43098~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43098~^~321~^125.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~43098~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43098~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~338~^70.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~43098~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~43098~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43098~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43100~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43100~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~268~^1943.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43100~^~301~^60.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~304~^101.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~305~^277.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~306~^326.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~307~^251.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~43100~^~318~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43100~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43100~^~321~^91.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43100~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~338~^107.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~417~^81.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43100~^~432~^81.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43100~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2005~ -~43109~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43109~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~268~^1415.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43109~^~301~^23.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~304~^21.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~305~^79.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~306~^88.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~307~^203.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~ -~43109~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43109~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43109~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43109~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43109~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43112~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43112~^~268~^404.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~301~^31.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~304~^45.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~305~^154.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~306~^450.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~307~^725.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~319~^0.^0^^~4~^~BNA~^~16011~^^^^^^^^^~03/01/2003~ -~43112~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~321~^7.^0^^~4~^~BNA~^~16011~^^^^^^^^^~03/01/2003~ -~43112~^~322~^0.^0^^~4~^~BNA~^~16011~^^^^^^^^^~03/01/2003~ -~43112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43112~^~334~^0.^0^^~4~^~BNA~^~16011~^^^^^^^^^~03/01/2003~ -~43112~^~337~^297.^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43112~^~338~^13.^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43112~^~417~^26.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43112~^~432~^26.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43114~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43114~^~268~^1383.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~301~^55.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~304~^2.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~305~^20.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~306~^3.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~307~^4.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43114~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~321~^22.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~322~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43114~^~334~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~337~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~338~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~03/01/2003~ -~43114~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43114~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43125~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43125~^~301~^13.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~304~^37.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~305~^88.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~306~^408.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~307~^2.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~417~^33.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~432~^33.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43125~^~601~^4.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43128~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43128~^~301~^35.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43128~^~304~^17.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~305~^335.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~306~^54.^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~307~^709.^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43128~^~321~^0.^0^^~8~^~LC~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~322~^0.^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43128~^~334~^0.^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~337~^0.^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~338~^0.^0^^~8~^~LC~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~417~^76.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43128~^~432~^76.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43128~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43130~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~43130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~43130~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43130~^~301~^33.^0^^~1~^^^^^^^^^^^~01/01/2005~ -~43130~^~304~^18.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~305~^344.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~306~^98.^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~307~^471.^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~417~^78.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~432~^78.^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43130~^~601~^0.^0^^~7~^^^^^^^^^^^~01/01/2005~ -~43131~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~43131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~43131~^~268~^790.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43131~^~301~^41.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43131~^~304~^23.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~305~^442.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~306~^200.^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~307~^711.^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~417~^100.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~432~^100.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43131~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43132~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~268~^824.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43132~^~301~^25.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~304~^18.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~305~^344.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~306~^180.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~307~^550.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~417~^78.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43132~^~432~^78.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43134~^~208~^290.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~268~^1213.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~301~^95.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~304~^23.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~305~^450.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~306~^600.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~307~^490.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~417~^102.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~432~^102.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43134~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43135~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43135~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43135~^~301~^44.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~304~^20.^0^^~4~^~BFSN~^~43131~^^^^^^^^^~08/01/2015~ -~43135~^~305~^220.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~306~^340.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~307~^630.^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~318~^0.^0^^~7~^^^^^^^^^^^~08/01/2015~ -~43135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43135~^~321~^0.^0^^~4~^~BFSN~^~43131~^^^^^^^^^~08/01/2015~ -~43135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~417~^103.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~432~^103.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43135~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43137~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~268~^824.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43137~^~301~^29.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~304~^18.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~305~^344.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~306~^180.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~307~^550.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43137~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43137~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~417~^78.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~432~^78.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43137~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43142~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~301~^28.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~304~^8.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~305~^31.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~306~^333.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~307~^789.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~321~^0.^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43142~^~322~^0.^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43142~^~334~^0.^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43142~^~337~^0.^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43142~^~338~^0.^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43142~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43143~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43143~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~301~^48.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~304~^12.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~305~^43.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~306~^853.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~307~^277.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~318~^189.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~319~^0.^0^^~4~^~BNA~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~321~^100.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43143~^~322~^27.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43143~^~334~^0.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43143~^~337~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~338~^32.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~417~^42.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43143~^~432~^42.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43144~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43144~^~268~^116.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~301~^67.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~304~^15.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~305~^27.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~306~^246.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~307~^717.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~318~^971.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~319~^0.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43144~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~321~^513.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43144~^~322~^140.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43144~^~334~^0.^0^^~4~^~BNA~^~11110~^^^^^^^^^~02/01/2003~ -~43144~^~337~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~ -~43144~^~338~^29.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~417~^72.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43144~^~432~^72.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43146~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43146~^~268~^205.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~301~^25.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~304~^6.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~305~^9.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~306~^12.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~307~^1674.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~319~^0.^0^^~4~^~BNA~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~321~^30.^0^^~4~^~BNA~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~322~^0.^0^^~4~^~BNA~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43146~^~334~^0.^0^^~4~^~BNA~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~337~^0.^0^^~4~^~BFSN~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~338~^0.^0^^~4~^~BFSN~^~11210~^^^^^^^^^~02/01/2003~ -~43146~^~417~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43146~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43154~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43154~^~268~^209.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43154~^~301~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~304~^10.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~305~^15.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~306~^88.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~307~^626.^0^^~4~^^^^^^^^^^^~06/01/2014~ -~43154~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~319~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~320~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~321~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~322~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43154~^~334~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~337~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~338~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~417~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~431~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~432~^1.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~435~^1.^0^^~4~^~NC~^~14084~^^^^^^^^^~12/01/2006~ -~43154~^~601~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43155~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~43155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~43155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43155~^~268~^206.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~43155~^~301~^9.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~304~^10.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~305~^15.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~306~^88.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~307~^7.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~319~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~320~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~321~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~322~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43155~^~334~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~337~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~338~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~417~^1.^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~431~^0.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~432~^1.^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43155~^~435~^1.^0^^~4~^~NC~^~14084~^^^^^^^^^~10/01/2006~ -~43155~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2004~ -~43158~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43158~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~268~^1507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43158~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~306~^4.^3^0.^~1~^~A~^^^1^4.^6.^2^1.^7.^~1, 2, 3~^~02/01/2005~ -~43158~^~307~^428.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~43158~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43158~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43158~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43158~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43205~^~208~^353.^0^^~1~^^^^^^^^^^^~10/01/2013~ -~43205~^~262~^25.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~43205~^~263~^290.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~43205~^~268~^1477.^0^^~1~^^^^^^^^^^^~10/01/2013~ -~43205~^~301~^285.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~304~^228.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~305~^427.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~306~^947.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~307~^385.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~318~^2083.^0^^~4~^~O~^^^^^^^^^^~10/01/2013~ -~43205~^~319~^625.^0^^~4~^~O~^^^^^^^^^^~10/01/2013~ -~43205~^~320~^625.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~43205~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43205~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~417~^285.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~431~^285.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43205~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43205~^~435~^485.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43205~^~601~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43212~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~268~^1989.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43212~^~301~^101.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~304~^95.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~305~^217.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~306~^145.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~307~^1770.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43212~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43212~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43212~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~417~^127.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43212~^~432~^127.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43212~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43214~^~208~^373.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~268~^1561.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~301~^23.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~304~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~305~^8.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~306~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~307~^1200.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43214~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43214~^~601~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43215~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~268~^845.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~301~^40.^4^12.^~6~^~JA~^^^2^24.^47.^1^-116.^196.^~4~^~12/01/2007~ -~43215~^~304~^6.^3^1.^~1~^~A~^^^1^4.^9.^2^0.^11.^~2, 3~^~02/01/2003~ -~43215~^~305~^193.^3^38.^~1~^~A~^^^1^144.^269.^2^28.^358.^~2, 3~^~02/01/2003~ -~43215~^~306~^132.^3^6.^~1~^~A~^^^1^123.^145.^2^102.^160.^~2, 3~^~02/01/2003~ -~43215~^~307~^1120.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~43215~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43215~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~338~^49.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~417~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^~2, 3~^~02/01/2003~ -~43215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43215~^~432~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^^~12/01/2007~ -~43215~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43215~^~601~^16.^5^8.^~6~^~JA~^^^2^5.^21.^1^-91.^123.^~4~^~12/01/2007~ -~43215~^~638~^9.^2^^~1~^~A~^^^1^7.^11.^1^^^^~12/01/2007~ -~43215~^~639~^20.^2^^~1~^~A~^^^1^11.^29.^1^^^^~12/01/2007~ -~43215~^~641~^38.^2^^~1~^~A~^^^1^27.^48.^1^^^^~12/01/2007~ -~43216~^~208~^368.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43216~^~268~^1540.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~301~^0.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~304~^0.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~305~^0.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~306~^0.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~307~^12.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43216~^~319~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~320~^0.^0^^~4~^~NC~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~321~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~322~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43216~^~334~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~337~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~338~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~417~^0.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~431~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~432~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~435~^0.^0^^~4~^~NC~^~19351~^^^^^^^^^~10/01/2006~ -~43216~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43217~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~43217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43217~^~268~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43217~^~301~^14.^18^0.^~1~^~A~^^^2^11.^19.^6^12.^14.^~2, 3~^~08/01/2014~ -~43217~^~304~^15.^18^0.^~1~^~A~^^^2^13.^17.^10^14.^15.^~2, 3~^~08/01/2014~ -~43217~^~305~^27.^18^0.^~1~^~A~^^^2^21.^32.^8^25.^28.^~2, 3~^~08/01/2014~ -~43217~^~306~^297.^12^8.^~1~^~A~^^^1^249.^332.^6^274.^318.^~2, 3~^~08/01/2014~ -~43217~^~307~^11.^1^^~1~^^^^^^^^^^^~06/01/2008~ -~43217~^~318~^435.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~43217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~43217~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43217~^~321~^259.^8^9.^~11~^~JO~^^^2^139.^418.^4^232.^286.^~2, 3~^~05/01/2011~ -~43217~^~322~^0.^8^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2011~ -~43217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43217~^~334~^3.^8^0.^~11~^~JO~^^^2^0.^13.^^^^~2, 3~^~05/01/2011~ -~43217~^~337~^13895.^8^316.^~11~^~JO~^^^2^10080.^16820.^4^13016.^14773.^~2, 3~^~04/01/2014~ -~43217~^~338~^24.^8^0.^~11~^~JO~^^^2^0.^111.^^^^~2, 3~^~04/01/2014~ -~43217~^~417~^9.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~08/01/2014~ -~43217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~43217~^~432~^9.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2014~ -~43217~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~43217~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~43218~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43218~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~268~^1473.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43218~^~301~^147.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~304~^94.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~305~^371.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~306~^418.^1^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43218~^~307~^27.^1^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43218~^~318~^0.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~319~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~02/01/2003~ -~43218~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~02/01/2003~ -~43218~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43218~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43218~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43218~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43218~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43218~^~417~^30.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43218~^~431~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~02/01/2003~ -~43218~^~432~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43218~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43218~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43241~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43241~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~268~^1623.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43241~^~301~^173.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43241~^~304~^317.^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43241~^~305~^337.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~306~^494.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43241~^~318~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~320~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43241~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~338~^130.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~417~^16.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~431~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43241~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43241~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43241~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43245~^~208~^385.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~268~^1611.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~ -~43245~^~301~^43.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~304~^120.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~305~^294.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~306~^382.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43245~^~307~^245.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43245~^~318~^1364.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~319~^410.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43245~^~320~^410.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43245~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~324~^73.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~417~^182.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~431~^163.^0^^~4~^~NC~^^~Y~^^^^^^^^~01/01/2003~ -~43245~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~ -~43245~^~435~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43245~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43260~^~208~^358.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~262~^52.^0^^~4~^~BFAN~^^^^^^^^^^~03/01/1998~ -~43260~^~263~^608.^0^^~4~^~BFAN~^^^^^^^^^^~03/01/1998~ -~43260~^~268~^1498.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~301~^500.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~304~^410.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~305~^500.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~306~^1705.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~307~^717.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~318~^8962.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43260~^~319~^2686.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43260~^~320~^2686.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43260~^~321~^5.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43260~^~417~^500.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~431~^500.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43260~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43260~^~435~^850.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43260~^~601~^44.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43261~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43261~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43261~^~301~^152.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~304~^15.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~305~^119.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~306~^194.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~307~^58.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43261~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43261~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43261~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~417~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43261~^~601~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43268~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~268~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43268~^~301~^3.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~304~^1.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~305~^30.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~306~^26.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43268~^~307~^106.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43268~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43268~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43268~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43268~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43268~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~417~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43268~^~432~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43268~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43269~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43269~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~263~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~268~^794.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43269~^~301~^120.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~304~^19.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~305~^131.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~306~^211.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~307~^95.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~318~^458.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43269~^~319~^130.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43269~^~321~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~43269~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43269~^~601~^13.^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43273~^~208~^95.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~268~^397.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~301~^56.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~304~^4.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~305~^128.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~306~^86.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~307~^403.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~318~^372.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43273~^~319~^41.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43273~^~321~^142.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43273~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~417~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~43273~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~432~^17.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~43273~^~601~^14.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~636~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43274~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43274~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43274~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43274~^~268~^872.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43274~^~301~^148.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~304~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~305~^152.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~306~^247.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~307~^317.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43274~^~318~^552.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43274~^~319~^160.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~ -~43274~^~320~^161.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43274~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~324~^11.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43274~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43274~^~417~^19.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~431~^0.^0^^~4~^~BFZN~^~01017~^^^^^^^^^~06/01/2008~ -~43274~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~43274~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43274~^~601~^54.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43275~^~208~^180.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43275~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~268~^753.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43275~^~301~^684.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~304~^24.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~305~^827.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~306~^180.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~307~^1789.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~43275~^~318~^215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43275~^~319~^55.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43275~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43275~^~321~^18.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43275~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43275~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~417~^9.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43275~^~432~^9.^0^^~4~^~BFNN~^~01042~^^^^^^^^^~02/01/2003~ -~43275~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43275~^~601~^35.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~208~^295.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~268~^1234.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~301~^71.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~304~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~305~^91.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~306~^112.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~307~^436.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~43276~^~318~^1031.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43276~^~319~^300.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~02/01/2009~ -~43276~^~320~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43276~^~321~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43276~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~324~^21.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~02/01/2009~ -~43276~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43276~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43276~^~601~^90.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43278~^~208~^239.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~268~^1000.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43278~^~301~^562.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~304~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~305~^712.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~306~^242.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~307~^1345.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~318~^430.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43278~^~319~^111.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43278~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43278~^~321~^37.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~417~^7.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43278~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43278~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43278~^~601~^36.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43282~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43282~^~301~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~304~^22.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~305~^279.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~306~^216.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~307~^52.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~318~^234.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~319~^70.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43282~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43282~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43282~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43282~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43282~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43282~^~601~^86.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43283~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~268~^998.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43283~^~301~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~304~^22.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~305~^242.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~306~^271.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~307~^43.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~318~^190.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~319~^57.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43283~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43283~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43283~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43283~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43283~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43283~^~417~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43283~^~601~^89.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43285~^~208~^131.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~43285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~268~^548.^0^^~1~^^^^^^^^^^^~05/01/2011~ -~43285~^~301~^17.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~306~^147.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~307~^162.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~318~^410.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~43285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43285~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~43285~^~321~^246.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~324~^72.^0^^~4~^~BFZN~^~01132~^^^^^^^^^~09/01/2010~ -~43285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~417~^17.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43285~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/2010~ -~43285~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~43285~^~601~^277.^0^^~4~^~BFZN~^~01132~^^^^^^^^^~08/01/2010~ -~43287~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43287~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43287~^~301~^17.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~304~^26.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~305~^332.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~306~^256.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~307~^57.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~318~^95.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~319~^28.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43287~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43287~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43287~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43287~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43287~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43287~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43287~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43287~^~601~^116.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43297~^~208~^615.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~268~^2573.^0^^~4~^^^^^^^^^^^ -~43297~^~301~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~304~^11.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~305~^128.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~306~^139.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~307~^685.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43297~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~417~^2.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~432~^2.^0^^~4~^^^^^^^^^^^~01/01/2003~ -~43297~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43297~^~601~^67.^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43299~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43299~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43299~^~268~^630.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~301~^188.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~304~^228.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~305~^222.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~306~^199.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~307~^20.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~319~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~321~^25.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~322~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43299~^~334~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~417~^22.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43299~^~432~^22.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43311~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~43311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43311~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~43311~^~301~^5.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~304~^14.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~305~^28.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~306~^229.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~307~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43311~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43311~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43311~^~321~^1.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~322~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43311~^~334~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~337~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~338~^6.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~417~^6.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43311~^~432~^6.^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43311~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43312~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43312~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~301~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~304~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~305~^37.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~306~^138.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~307~^26.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~318~^11651.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~319~^0.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~02/01/2003~ -~43312~^~320~^583.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~321~^5670.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~02/01/2003~ -~43312~^~322~^2636.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~02/01/2003~ -~43312~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43312~^~334~^5.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43312~^~337~^0.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~02/01/2003~ -~43312~^~338~^493.^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43312~^~417~^18.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43312~^~432~^18.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43325~^~208~^165.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~268~^690.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~301~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~304~^19.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~305~^248.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~306~^362.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~307~^969.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43325~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43325~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43325~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43325~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~417~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43325~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43325~^~601~^57.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~208~^172.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~268~^720.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~301~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~304~^21.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~305~^265.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~306~^386.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~307~^969.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~318~^0.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~43326~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43326~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~324~^33.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43326~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~417~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43326~^~601~^58.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~208~^145.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~268~^607.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~301~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~304~^14.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~305~^196.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~306~^287.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~307~^969.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~318~^0.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~43327~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43327~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43327~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43327~^~417~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43327~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43327~^~601~^53.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43329~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43329~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43329~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43329~^~268~^1099.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43329~^~301~^14.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43329~^~304~^2.^4^0.^~6~^~JA~^^^2^2.^2.^1^0.^4.^~2~^~02/01/2003~ -~43329~^~305~^30.^4^4.^~6~^~JA~^^^2^26.^35.^1^-25.^86.^~2~^~02/01/2003~ -~43329~^~306~^24.^4^15.^~6~^~JA~^^^2^9.^40.^1^-170.^219.^~2~^~02/01/2003~ -~43329~^~307~^837.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43329~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43329~^~319~^12.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43329~^~321~^94.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~322~^1.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43329~^~334~^27.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~337~^0.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~338~^87.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43329~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~431~^0.^2^^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~ -~43329~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43329~^~601~^26.^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43331~^~208~^326.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~262~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~263~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~268~^1364.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~301~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~304~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~305~^25.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~306~^108.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~307~^905.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~43331~^~318~^211.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43331~^~319~^4.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~320~^11.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~321~^92.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~322~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43331~^~334~^52.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~337~^2597.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~338~^29.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~417~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~431~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~432~^0.^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43331~^~601~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43340~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~268~^1887.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~301~^800.^0^^~4~^~O~^^^^^^^^^^~07/01/2013~ -~43340~^~304~^51.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~305~^807.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~306~^107.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~307~^63.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~318~^463.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~319~^123.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~320~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~321~^32.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43340~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43340~^~431~^0.^0^^~4~^~BFNN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~432~^10.^0^^~4~^~BFNN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~601~^79.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43344~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43344~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~268~^633.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43344~^~301~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~304~^4.^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~305~^7.^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~306~^59.^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~307~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~318~^9.^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43344~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43344~^~601~^0.^0^^~7~^^^^^^^^^^^~08/01/1985~ -~43345~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43345~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43345~^~301~^800.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43345~^~304~^245.^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~305~^493.^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~306~^2518.^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~307~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~318~^20000.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43345~^~319~^5996.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43345~^~320~^5997.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43345~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43345~^~334~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~43345~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~43345~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43346~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43346~^~268~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43346~^~301~^9.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~304~^8.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~305~^13.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~306~^100.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~307~^8.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~318~^21.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~319~^0.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~320~^1.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~321~^12.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~322~^0.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43346~^~334~^0.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~337~^0.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~338~^39.^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43346~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43352~^~208~^72.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~268~^301.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~301~^61.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~304~^5.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~305~^134.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~306~^86.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~307~^13.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43352~^~319~^11.^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~43352~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43352~^~321~^3.^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~43352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~417~^12.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43352~^~432~^12.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~43352~^~601~^4.^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43355~^~208~^231.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~262~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~263~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~268~^967.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~301~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~304~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~305~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~306~^10.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~307~^110.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43355~^~319~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~320~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~321~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~322~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43355~^~334~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~337~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~338~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~417~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~431~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~432~^0.^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~43355~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43355~^~601~^24.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43364~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~268~^2103.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43364~^~301~^174.^5^4.^~1~^~A~^^^1^165.^193.^4^160.^187.^~2, 3~^~05/01/2005~ -~43364~^~304~^146.^5^3.^~1~^~A~^^^1^135.^158.^4^136.^156.^~2, 3~^~05/01/2005~ -~43364~^~305~^200.^5^10.^~1~^~A~^^^1^163.^227.^4^170.^229.^~2, 3~^~05/01/2005~ -~43364~^~306~^215.^5^4.^~1~^~A~^^^1^199.^229.^4^202.^228.^~2, 3~^~05/01/2005~ -~43364~^~307~^15.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43364~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~43364~^~321~^37.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43364~^~322~^24.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43364~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~338~^507.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43364~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43364~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43364~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43365~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43365~^~268~^91.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~301~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~304~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~305~^17.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~306~^193.^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~307~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2015~ -~43365~^~318~^1558.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2004~ -~43365~^~320~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~321~^830.^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43365~^~322~^210.^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43365~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43365~^~334~^0.^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43365~^~337~^9660.^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43365~^~338~^80.^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43365~^~417~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43365~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43366~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43366~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~268~^926.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43366~^~301~^24.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~304~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~305~^197.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~306~^266.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~307~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43366~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43366~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~324~^4.^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~43366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43366~^~601~^81.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43367~^~301~^32.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~304~^23.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~305~^199.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~306~^280.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~307~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43367~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43367~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~324~^5.^0^^~4~^~BFFN~^~05069~^^^^^^^^^~03/01/2009~ -~43367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43367~^~417~^9.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43367~^~601~^85.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43369~^~208~^49.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~262~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~263~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~268~^205.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~301~^100.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~305~^24.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~306~^79.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~307~^91.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~318~^200.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~43369~^~319~^60.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~43369~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43369~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~324~^50.^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~43369~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43369~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~43369~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43378~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~268~^2262.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~301~^11.^8^0.^~1~^~A~^^^1^10.^13.^7^10.^12.^~2, 3~^~02/01/2003~ -~43378~^~304~^33.^8^1.^~1~^~A~^^^1^27.^38.^7^29.^35.^~2, 3~^~02/01/2003~ -~43378~^~305~^533.^8^11.^~1~^~A~^^^1^480.^574.^7^505.^561.^~2, 3~^~02/01/2003~ -~43378~^~306~^565.^8^14.^~1~^~A~^^^1^512.^624.^7^529.^599.^~2, 3~^~02/01/2003~ -~43378~^~307~^1030.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~43378~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~43378~^~319~^11.^8^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~43378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~324~^42.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~417~^2.^2^^~1~^~A~^^^1^2.^2.^^^^^~02/01/2003~ -~43378~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~43378~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~601~^110.^8^1.^~1~^~A~^^^1^103.^118.^7^105.^113.^~2, 3~^~02/01/2003~ -~43382~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43382~^~268~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~301~^8.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~304~^6.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~305~^13.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~306~^77.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~307~^2.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~318~^45.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43382~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~321~^27.^0^^~4~^~BNA~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~322~^0.^0^^~4~^~BNA~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43382~^~334~^0.^0^^~4~^~BNA~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~337~^0.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~338~^68.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~417~^1.^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43382~^~432~^1.^0^^~4~^~BFZY~^^^^^^^^^^~02/01/2007~ -~43382~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43384~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~43384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~43384~^~268~^1299.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43384~^~301~^12.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~305~^82.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~306~^155.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~307~^682.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43384~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~324~^28.^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~43384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43384~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43384~^~601~^56.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43387~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43387~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43387~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43387~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43387~^~301~^118.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~304~^20.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~305~^21.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~306~^141.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~307~^29.^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~318~^5954.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43387~^~319~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~03/01/2007~ -~43387~^~320~^298.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43387~^~321~^3573.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~322~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43387~^~334~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~337~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~338~^6591.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~417~^92.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~05/01/2007~ -~43387~^~431~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~03/01/2007~ -~43387~^~432~^92.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~05/01/2007~ -~43387~^~435~^92.^0^^~4~^~NC~^~11569~^^^^^^^^^~05/01/2007~ -~43387~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2007~ -~43390~^~208~^208.^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~268~^870.^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43390~^~301~^26.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~304~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~305~^203.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~306~^280.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~307~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43390~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~43390~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~43390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~324~^1.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~43390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43390~^~417~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43390~^~601~^82.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43391~^~301~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~304~^26.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~305~^213.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~306~^298.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~307~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~43391~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~324~^3.^0^^~4~^~BFFN~^~05013~^^^^^^^^^~03/01/2009~ -~43391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~417~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43391~^~601~^76.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43392~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~268~^481.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~301~^18.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~304~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~305~^140.^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~306~^1806.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~307~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~318~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~321~^41.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43392~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43392~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~417~^24.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43392~^~432~^24.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43393~^~208~^339.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43393~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43393~^~268~^1416.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~304~^174.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~305~^418.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~306~^391.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43393~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~43393~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~02/01/2013~ -~43393~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~43393~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~43393~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43393~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~43393~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43393~^~338~^236.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43393~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~43393~^~432~^30.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~43393~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43393~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43396~^~208~^67.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43396~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43396~^~268~^280.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~301~^56.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~304~^4.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~305~^128.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~306~^86.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~307~^403.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43396~^~319~^10.^0^^~4~^~BFFN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43396~^~321~^34.^0^^~4~^~BFFN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~322~^0.^0^^~4~^~BFZN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43396~^~334~^0.^0^^~4~^~BFZN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~337~^0.^0^^~4~^~BFZN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~338~^16.^0^^~4~^~BFZN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~417~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43396~^~432~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~43396~^~601~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43398~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~268~^1573.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43398~^~301~^616.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~304~^22.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~305~^745.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~306~^162.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~307~^7.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~318~^959.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43398~^~319~^247.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43398~^~320~^254.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43398~^~321~^81.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~324~^23.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~417~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43398~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43398~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43398~^~601~^94.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43401~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43401~^~262~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~268~^2132.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43401~^~301~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~304~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~305~^135.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~306~^909.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~307~^0.^0^^~4~^~O~^^^^^^^^^^~09/01/2012~ -~43401~^~318~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~321~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43401~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43401~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43404~^~208~^19.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~301~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~304~^3.^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~305~^1.^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~306~^45.^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~307~^5.^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43404~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43404~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43404~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~338~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43404~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43405~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~301~^961.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~304~^36.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~305~^605.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~306~^111.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~307~^14.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~318~^818.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~319~^211.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43405~^~320~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~321~^69.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43405~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43405~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~417~^6.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43405~^~432~^6.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~601~^92.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43406~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43406~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~268~^775.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43406~^~301~^67.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~304~^180.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43406~^~305~^104.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43406~^~306~^2100.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~307~^3380.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~43406~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~43406~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43406~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~43406~^~417~^3786.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~431~^2993.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~432~^793.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~435~^5881.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43406~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~43408~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43408~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2005~ -~43408~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43408~^~301~^12.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~304~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~305~^12.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~306~^130.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~307~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~43408~^~318~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43408~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~43408~^~321~^0.^0^^~7~^~Z~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~322~^0.^0^^~7~^~Z~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43408~^~334~^0.^0^^~7~^~Z~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~338~^0.^0^^~7~^~Z~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~417~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43408~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43408~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43410~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43410~^~301~^42.^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~304~^12.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~305~^245.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~306~^300.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43410~^~307~^400.^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43410~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43410~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43410~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~417~^56.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43410~^~432~^56.^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43410~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43417~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43417~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43417~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43417~^~301~^11.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~304~^11.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~305~^37.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~306~^168.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~307~^26.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43417~^~318~^1140.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43417~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43417~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43417~^~321~^569.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~322~^231.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43417~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~337~^1706.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~338~^171.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43417~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43417~^~601~^12.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43432~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43432~^~301~^12.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~304~^15.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~305~^49.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~306~^148.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~307~^35.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43432~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43432~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43432~^~321~^36.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43432~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~337~^333.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43432~^~431~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43432~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43432~^~601~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43441~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~43441~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~268~^1154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~43441~^~301~^67.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~304~^54.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~305~^171.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~306~^208.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~307~^492.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~43441~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~43441~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43441~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~43441~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~43441~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43441~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~43441~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~338~^106.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~43441~^~417~^86.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~43441~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43441~^~432~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~43441~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43441~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~636~^3.^0^^~4~^~RA~^^^^^^^^^^~05/01/2005~ -~43447~^~208~^557.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43447~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43447~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~268~^2329.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43447~^~301~^124.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~304~^70.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~305~^184.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~306~^185.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~307~^15.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43447~^~318~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43447~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43447~^~321~^42.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43447~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~338~^212.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~417~^7.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43447~^~432~^7.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43447~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43449~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43449~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43449~^~268~^438.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~301~^50.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~304~^32.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~305~^104.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~306~^296.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~307~^1.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43449~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~321~^64.^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~322~^0.^0^^~4~^~BFSN~^~16006~^^^^^^^^^~02/01/2003~ -~43449~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43449~^~334~^0.^0^^~4~^~BFSN~^~16006~^^^^^^^^^~02/01/2003~ -~43449~^~337~^500.^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~338~^16.^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~417~^24.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43449~^~432~^24.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43450~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43450~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43450~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~301~^141.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~305~^41.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~306~^120.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~307~^42.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~318~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~319~^14.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~321~^59.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~43450~^~324~^0.^0^^~4~^~NR~^~01211~^^^^^^^^^~03/01/2009~ -~43450~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~43450~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~338~^27.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43450~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~601~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43476~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43476~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43476~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~301~^118.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~304~^40.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~305~^38.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~306~^47.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~307~^35.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~319~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~321~^20.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~322~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43476~^~334~^0.^0^^~4~^~BNA~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43476~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43479~^~208~^134.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43479~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~43479~^~268~^561.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~301~^5.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~304~^6.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~305~^6.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~306~^25.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~307~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43479~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43479~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43483~^~208~^354.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~262~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~263~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~268~^1481.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~301~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~304~^106.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~305~^266.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~306~^40.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~43483~^~307~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~319~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2007~ -~43483~^~321~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~322~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43483~^~334~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~337~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~338~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~02/01/2003~ -~43483~^~417~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~431~^0.^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~432~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43483~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43495~^~208~^380.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~268~^1590.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~301~^80.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~304~^143.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~305~^343.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~306~^340.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~307~^380.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~08/01/2011~ -~43495~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43495~^~338~^203.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~417~^200.^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~431~^181.^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~43495~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~08/01/2011~ -~43495~^~435~^327.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~43495~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43497~^~208~^36.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~268~^151.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~301~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~304~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~305~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~306~^3.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~307~^9690.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43497~^~319~^2.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~43497~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43497~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43497~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~417~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43497~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43497~^~601~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43506~^~208~^323.^1^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43506~^~262~^3.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~263~^32.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~268~^1351.^1^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43506~^~301~^252.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~304~^29.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~305~^114.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~306~^238.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~307~^92.^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43506~^~319~^44.^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~43506~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43506~^~321~^44.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~322~^0.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~324~^7.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~334~^0.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~337~^0.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~338~^0.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~417~^11.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~431~^0.^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~432~^11.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43506~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43507~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43507~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43507~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43507~^~268~^1305.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43507~^~301~^20.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~304~^3.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~305~^87.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~306~^166.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~307~^311.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~318~^0.^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43507~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43507~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43507~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~324~^37.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~43507~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~417~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43507~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43507~^~601~^61.^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43514~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43514~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43514~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2005~ -~43514~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~306~^11.^3^2.^~1~^~A~^^^1^8.^17.^2^-1.^24.^~2, 3~^~04/01/2005~ -~43514~^~307~^10.^3^2.^~1~^~A~^^^1^7.^14.^2^0.^19.^~2, 3~^~04/01/2005~ -~43514~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~43514~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43514~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43514~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~43523~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43523~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43523~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~268~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43523~^~301~^28.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~304~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~305~^22.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~306~^62.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~307~^16.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43523~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43523~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43523~^~334~^14.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~417~^2.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43523~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43523~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43528~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43528~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43528~^~301~^79.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~304~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~305~^79.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~306~^175.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~307~^95.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~318~^497.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43528~^~319~^149.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43528~^~320~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43528~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~324~^40.^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43528~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~431~^40.^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~432~^0.^1^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~43528~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43528~^~601~^2.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43529~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43529~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43529~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~268~^1657.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43529~^~301~^850.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~304~^15.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~305~^423.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~306~^410.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~307~^16.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43529~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43529~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43529~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~417~^19.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43529~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43529~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43535~^~208~^47.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~43535~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~268~^197.^0^^~9~^^^^^^^^^^^~03/01/2005~ -~43535~^~301~^7.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~304~^3.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~305~^12.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~306~^110.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~307~^4.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~43535~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43535~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43535~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43535~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43535~^~417~^0.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43535~^~432~^0.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43535~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43536~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43536~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43536~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~268~^324.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43536~^~301~^27.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~304~^13.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~305~^27.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~306~^102.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~307~^14.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43536~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43536~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43536~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43536~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~417~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43536~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43536~^~601~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43537~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43537~^~301~^25.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~304~^13.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~305~^109.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~306~^62.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~307~^14.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43537~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43537~^~321~^23.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43537~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~338~^64.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~417~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43537~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43537~^~601~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43539~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~43539~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~43539~^~268~^328.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43539~^~301~^30.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~304~^10.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~305~^28.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~306~^100.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~307~^14.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43539~^~319~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43539~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43539~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43539~^~322~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43539~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43539~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43539~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~43539~^~338~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~43539~^~417~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43539~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43539~^~601~^1.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43541~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~43541~^~262~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~263~^120.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~268~^1049.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~43541~^~301~^142.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~304~^32.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~305~^115.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~306~^238.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~307~^57.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~318~^713.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43541~^~319~^198.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~320~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43541~^~321~^31.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~324~^12.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~43541~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~338~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43541~^~601~^60.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43543~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43543~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43543~^~301~^82.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43543~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~305~^100.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~306~^150.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~307~^55.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43543~^~318~^203.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43543~^~319~^61.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43543~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43543~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~324~^42.^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~43543~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43543~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43543~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43543~^~601~^0.^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43544~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~43544~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43544~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43544~^~268~^1627.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~43544~^~301~^38.^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~304~^37.^0^^~4~^^^^^^^^^^^~12/01/1989~ -~43544~^~305~^253.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~43544~^~306~^414.^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~307~^2.^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~43544~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~43544~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~43544~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/1989~ -~43546~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43546~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43546~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43546~^~268~^381.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43546~^~301~^4.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~304~^26.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~305~^20.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~306~^290.^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~307~^2.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~43546~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43546~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43546~^~321~^2.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2005~ -~43546~^~322~^2.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43546~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~338~^20.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~417~^17.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43546~^~432~^17.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43546~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43550~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43550~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43550~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43550~^~301~^3.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~304~^8.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~305~^9.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~307~^7.^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43550~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43550~^~321~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43550~^~322~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43550~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43550~^~334~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~43550~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~417~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43550~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43550~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43566~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43566~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~268~^1946.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43566~^~301~^159.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~304~^97.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~305~^318.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~306~^272.^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~307~^400.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43566~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43566~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43566~^~321~^37.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~322~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43566~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~338~^507.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~417~^16.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43566~^~432~^16.^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43566~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43570~^~208~^401.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~43570~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43570~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43570~^~268~^1677.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~43570~^~301~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~2, 3~^~05/01/2012~ -~43570~^~304~^50.^6^0.^~1~^~A~^^^1^49.^53.^5^48.^51.^~2, 3~^~06/01/2015~ -~43570~^~305~^156.^6^1.^~1~^~A~^^^1^150.^163.^5^151.^161.^~2, 3~^~06/01/2015~ -~43570~^~306~^209.^6^2.^~1~^~A~^^^1^203.^215.^5^203.^213.^~2, 3~^~05/01/2012~ -~43570~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43570~^~318~^2731.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~43570~^~319~^803.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~320~^806.^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~43570~^~321~^16.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~43570~^~322~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~43570~^~324~^183.^6^3.^~1~^~A~^^^1^170.^192.^5^174.^191.^~2, 3~^~05/01/2012~ -~43570~^~334~^28.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~43570~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~43570~^~338~^445.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~43570~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~43570~^~431~^648.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~43570~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~ -~43570~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~43570~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~43572~^~208~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43572~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~268~^1797.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43572~^~301~^11.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~304~^151.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~305~^264.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~306~^241.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~307~^490.^0^^~9~^^^^^^^^^^^~04/01/2007~ -~43572~^~318~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43572~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43572~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43572~^~321~^66.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~322~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43572~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~338~^1087.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~417~^17.^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43572~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43585~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43585~^~262~^0.^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~263~^0.^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43585~^~301~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~304~^7.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~305~^9.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~306~^129.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~307~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~43585~^~319~^0.^0^^~4~^~BNA~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43585~^~321~^25.^0^^~4~^~BNA~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~322~^0.^0^^~4~^~BNA~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43585~^~334~^10.^0^^~4~^~BNA~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~337~^0.^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~338~^149.^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43585~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43585~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43589~^~208~^179.^0^^~4~^^^^^^^^^^^~06/01/2013~ -~43589~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~268~^749.^0^^~4~^^^^^^^^^^^~06/01/2013~ -~43589~^~301~^961.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~304~^36.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~305~^605.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~306~^111.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~307~^199.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~43589~^~318~^152.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43589~^~319~^39.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43589~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43589~^~321~^13.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43589~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43589~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43589~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43589~^~601~^35.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43595~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43595~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~268~^1574.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43595~^~301~^41.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43595~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~305~^103.^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~306~^197.^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~307~^337.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43595~^~318~^2027.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43595~^~319~^608.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43595~^~320~^608.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43595~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43595~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~338~^40.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~417~^108.^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~43595~^~431~^95.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43595~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43595~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2005~ -~43597~^~208~^280.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~268~^1172.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~301~^731.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~304~^26.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~305~^524.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~306~^95.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~307~^16.^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~318~^517.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43597~^~319~^133.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~43597~^~320~^137.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43597~^~321~^44.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~43597~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~324~^13.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~43597~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43597~^~417~^9.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43597~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43597~^~432~^9.^0^^~4~^~BFNN~^~01026~^^^^^^^^^~01/01/2003~ -~43597~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43597~^~601~^54.^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43598~^~208~^688.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~268~^2879.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~301~^7.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~304~^1.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~305~^25.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~306~^14.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~307~^486.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43598~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~43598~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43598~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~417~^0.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43598~^~432~^0.^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43598~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~ -~44005~^~208~^884.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~301~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~304~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~305~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~306~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~307~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44005~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~44005~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44018~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~44018~^~262~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~263~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~268~^1165.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~44018~^~301~^1.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~304~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~305~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~306~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~307~^2.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~319~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~09/01/2004~ -~44018~^~320~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~09/01/2004~ -~44018~^~321~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~322~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44018~^~334~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~337~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~338~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~417~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~431~^0.^0^^~4~^~BFSN~^~19351~^^^^^^^^^~09/01/2004~ -~44018~^~432~^0.^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~435~^0.^0^^~4~^~NC~^~19351~^^^^^^^^^~12/01/2006~ -~44018~^~601~^0.^0^^~7~^^^^^^^^^^^~09/01/2004~ -~44061~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44061~^~262~^14.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~263~^473.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~268~^1488.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44061~^~301~^126.^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~44061~^~304~^89.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~305~^1660.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~306~^1279.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~307~^2838.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44061~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44061~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44061~^~338~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44061~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~44061~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44074~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44074~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~268~^257.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44074~^~301~^12.^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~304~^10.^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~305~^11.^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~306~^90.^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~307~^10.^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~44074~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~44074~^~321~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~338~^83.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~44074~^~601~^0.^0^^~7~^^^^^^^^^^^~01/01/1986~ -~44110~^~208~^179.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~262~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~06/01/2005~ -~44110~^~263~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~268~^749.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~301~^5.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~304~^6.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~305~^6.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~306~^71.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~307~^2.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~44110~^~319~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~320~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~321~^2.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~322~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44110~^~334~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~337~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~338~^14.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~417~^1.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~431~^0.^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~432~^1.^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~44110~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/2005~ -~44158~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44158~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~268~^757.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44158~^~301~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~305~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~306~^115.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~307~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~318~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~321~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44158~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~338~^33.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~44158~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~44203~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44203~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~268~^1200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44203~^~301~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~305~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~306~^23.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~307~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~02/01/2003~ -~44203~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44203~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44203~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44203~^~334~^9.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~44203~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~02/01/2003~ -~44258~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44258~^~262~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~263~^596.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~268~^1527.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44258~^~301~^50.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~44258~^~304~^110.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~305~^174.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~306~^570.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~307~^3326.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~44258~^~318~^0.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~44258~^~319~^0.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~320~^0.^0^^~4~^~NC~^~44061~^^^^^^^^^~04/01/2005~ -~44258~^~321~^0.^0^^~4~^~NR~^~44061~^^^^^^^^^~04/01/2005~ -~44258~^~322~^0.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44258~^~334~^0.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~337~^0.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~338~^9.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44258~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~432~^0.^0^^~4~^~BFSN~^~44061~^^^^^^^^^~03/01/2003~ -~44258~^~435~^0.^0^^~4~^~NC~^~44061~^^^^^^^^^~12/01/2006~ -~44258~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44259~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~44259~^~262~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~263~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~268~^1470.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~44259~^~301~^49.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~304~^17.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~305~^12.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~306~^18.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~307~^1765.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~319~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~320~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~321~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~322~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44259~^~334~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~337~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~338~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~431~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~432~^0.^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~435~^0.^0^^~4~^~NC~^~44260~^^^^^^^^^~12/01/2006~ -~44259~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44260~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44260~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~268~^1464.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44260~^~301~^143.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~304~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~305~^2368.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~306~^30.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~307~^3750.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~44260~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44260~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44260~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44260~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~44260~^~432~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~44260~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~48052~^~208~^370.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~48052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~268~^1548.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~48052~^~301~^142.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~304~^25.^0^^~4~^~BFZN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~305~^260.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~306~^100.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~48052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~48052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~48052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~80200~^~208~^73.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~268~^305.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~301~^18.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~304~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~305~^147.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~306~^285.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~307~^58.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~80200~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~80200~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~80200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~80200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~417~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~80200~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~80200~^~601~^50.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~208~^305.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~268~^1276.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~301~^66.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~304~^60.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~305~^254.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~306~^520.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~307~^4450.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~318~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~83110~^~319~^47.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~83110~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~83110~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~324~^1006.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~83110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~417~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~83110~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~83110~^~601~^95.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90240~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~90240~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~268~^466.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~90240~^~301~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~304~^37.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~305~^426.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~306~^314.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~307~^667.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~324~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~417~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~432~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~90240~^~601~^41.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90480~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~90480~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~268~^1126.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~90480~^~301~^13.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~304~^10.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~305~^8.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~306~^63.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~307~^58.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~318~^0.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~90480~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~90480~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~417~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90480~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~432~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90480~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~90480~^~601~^0.^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90560~^~208~^90.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~268~^377.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~301~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~304~^250.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~305~^272.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~306~^382.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~307~^70.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~90560~^~319~^30.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~90560~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~90560~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~90560~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~90560~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~90560~^~601~^50.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~208~^89.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~268~^372.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~301~^118.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~304~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~305~^180.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~306~^230.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~307~^68.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~93600~^~319~^30.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~93600~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~93600~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~93600~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~417~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~93600~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~93600~^~601~^50.^0^^~1~^^^^^^^^^^^~03/01/2009~ -~01001~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01001~^~291~^0.0^0^^~4~^^^^^^^^^^^ -~01001~^~313~^2.8^19^0.6^~1~^~A~^^^3^1.5^3.8^2^-0.1^5.6^~4~^~03/01/2006~ -~01001~^~317~^1.0^37^0.8^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01001~^~325~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~01001~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~01001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~01001~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~421~^18.8^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01001~^~430~^7.0^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01002~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01002~^~313~^2.8^19^0.6^~1~^~A~^^^3^1.5^3.8^2^-0.1^5.6^~4~^~03/01/2006~ -~01002~^~317~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01002~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01002~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01002~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01002~^~421~^18.8^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01002~^~428~^20.9^4^0.4^~1~^~A~^^^1^19.3^22.0^1^17.2^24.5^~2, 3~^~02/01/2015~ -~01002~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~430~^4.6^4^2.4e-02^~1~^~A~^^^1^4.5^4.8^1^4.2^4.8^~2, 3~^~02/01/2015~ -~01002~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01003~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1995~ -~01003~^~291~^0.0^0^^~4~^^^^^^^^^^^ -~01003~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~01003~^~325~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01003~^~326~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01003~^~328~^0.0^0^^~1~^~AS~^~01002~^^^^^^^^^~09/01/2015~ -~01003~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~421~^22.3^0^^~4~^~BFSN~^~01001~^^^^^^^^^~12/01/2006~ -~01003~^~430~^8.6^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01004~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01004~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01004~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01004~^~326~^0.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01004~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01004~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01004~^~430~^2.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01005~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01005~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01005~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01005~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01005~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01005~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01005~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01006~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01006~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01006~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01006~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01006~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01006~^~430~^2.3^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01007~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01007~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01007~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01007~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01007~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01007~^~430~^2.0^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01008~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01008~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01009~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01009~^~317~^28.5^29^1.0^~1~^~A~^^^2^27.7^29.8^16^26.2^30.6^~2, 3~^~06/01/2015~ -~01009~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01009~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~01009~^~401~^0.0^0^^~1~^^^^^^^^^^^~01/01/2017~ -~01009~^~421~^16.5^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01009~^~428~^8.6^2^^~1~^~A~^^^^8.6^8.6^^^^^~05/01/2014~ -~01009~^~429~^0.0^2^^~1~^~A~^^^^0.0^0.0^^^^^~01/01/2009~ -~01009~^~430~^2.4^2^^~1~^~A~^^^^2.3^2.4^^^^^~06/01/2015~ -~01009~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01010~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01010~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01011~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01011~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01011~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01011~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01011~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01011~^~430~^2.7^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01012~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01012~^~313~^31.6^21^9.4^~1~^~A~^^^3^6.5^81.7^6^8.5^54.6^~4~^~03/01/2006~ -~01012~^~317~^9.7^3^1.4^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01012~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01012~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01012~^~421~^18.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01012~^~428~^0.9^3^0.2^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~430~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01013~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~291~^0.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~313~^31.6^21^9.4^~1~^~A~^^^3^6.5^81.7^6^8.5^54.6^~4~^~03/01/2006~ -~01013~^~317~^7.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01013~^~401~^1.4^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~421~^17.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~01013~^~430~^0.4^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01014~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01014~^~313~^31.6^21^9.4^~1~^~A~^^^3^6.5^81.7^6^8.5^54.6^~4~^~03/01/2006~ -~01014~^~317~^9.4^3^1.3^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01014~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01014~^~421~^17.9^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01014~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~430~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01015~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01015~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01015~^~317~^11.9^8^0.1^~1~^~A~^^^1^8.8^19.7^2^11.4^12.4^~2, 3~^~05/01/2014~ -~01015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01015~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01015~^~421~^16.3^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01015~^~428~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01015~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01015~^~430~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01015~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01016~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01016~^~313~^31.6^21^9.4^~1~^~A~^^^3^6.5^81.7^6^8.5^54.6^~4~^~03/01/2006~ -~01016~^~317~^9.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01016~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~421~^17.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~01016~^~430~^0.1^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01017~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01017~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01017~^~317~^8.6^6^0.4^~1~^~A~^^^1^7.3^10.1^2^6.6^10.5^~2, 3~^~02/01/2015~ -~01017~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01017~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01017~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01017~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01017~^~421~^26.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~01017~^~428~^8.7^2^^~1~^~A~^^^1^8.4^9.1^^^^^~02/01/2015~ -~01017~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2009~ -~01017~^~430~^2.1^2^^~1~^~A~^^^1^2.1^2.2^^^^^~02/01/2015~ -~01017~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~01018~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01018~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01018~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01018~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01018~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01018~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01018~^~430~^2.3^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01019~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01019~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~317~^15.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01019~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01019~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01019~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01019~^~430~^1.8^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01020~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01020~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01020~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01020~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01020~^~430~^2.6^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01021~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01021~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01022~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01022~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01022~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01022~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01022~^~430~^2.3^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01023~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01023~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01023~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01023~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01023~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01023~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01023~^~430~^2.7^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01024~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01024~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01024~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01024~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01024~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01024~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01024~^~430~^2.3^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01025~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01025~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01025~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01025~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01025~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01026~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01026~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01026~^~317~^17.0^3^0.5^~1~^~A~^^^1^16.3^18.0^2^14.7^19.2^~2, 3~^~03/01/2003~ -~01026~^~326~^0.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01026~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01026~^~401~^0.0^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01026~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2003~ -~01026~^~430~^2.3^2^^~1~^~A~^^^1^2.3^2.3^^^^^~01/01/2003~ -~01027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01027~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01027~^~317~^16.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01027~^~326~^0.5^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~01027~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01027~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~421~^15.0^0^^~4~^~BFNN~^~01026~^^^^^^^^^~02/01/2009~ -~01027~^~430~^2.5^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01028~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01028~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01028~^~317~^14.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01028~^~326~^0.3^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~01028~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01028~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01028~^~430~^1.6^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01029~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01029~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/2015~ -~01029~^~317~^27.6^16^0.5^~1~^~A~^^^2^27.4^28.0^8^26.2^28.9^~2, 3~^~06/01/2015~ -~01029~^~326~^0.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01029~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01029~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01029~^~421~^14.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01029~^~428~^4.1^2^^~1~^~A~^^^^4.1^4.2^^^^^~05/01/2014~ -~01029~^~429~^0.0^2^^~1~^~A~^^^^0.0^0.0^^^^^~01/01/2003~ -~01029~^~430~^1.3^2^^~1~^~A~^^^^1.3^1.3^^^^^~01/01/2003~ -~01029~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01030~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01030~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01030~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01030~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01030~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01030~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01030~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01031~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01031~^~317~^3.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01031~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~428~^9.3^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~430~^1.7^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01032~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01032~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01032~^~317~^34.4^5^3.9^~1~^~A~^^^1^19.2^41.3^2^17.9^50.8^~2, 3~^~05/01/2014~ -~01032~^~326~^0.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01032~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01032~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01032~^~421~^14.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01032~^~428~^7.1^2^^~1~^~A~^^^1^6.8^7.4^1^^^^~05/01/2014~ -~01032~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~01032~^~430~^1.7^2^^~1~^~A~^^^1^1.5^1.9^1^^^^~05/01/2014~ -~01032~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01033~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01033~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01033~^~317~^22.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01033~^~326~^0.5^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~ -~01033~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01033~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01033~^~430~^1.7^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2003~ -~01034~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01034~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01034~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01034~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01034~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01034~^~430~^2.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01035~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01035~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01035~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01035~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01035~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01035~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01035~^~430~^2.2^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01036~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01036~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01036~^~317~^5.9^7^1.2^~1~^~A~^^^1^2.2^7.9^3^1.8^9.8^~1, 2, 3~^~01/01/2017~ -~01036~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01036~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01036~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01036~^~421~^17.5^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01036~^~430~^1.1^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01037~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01037~^~317~^16.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01037~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01037~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01037~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~421~^16.3^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2009~ -~01037~^~430~^0.7^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01038~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01038~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01038~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01038~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01038~^~430~^2.2^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01039~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01039~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01040~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01040~^~317~^30.0^6^0.4^~1~^~A~^^^1^28.9^32.5^2^28.2^31.6^~2, 3~^~02/01/2015~ -~01040~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01040~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01040~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01040~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~421~^13.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~01040~^~428~^6.3^2^^~1~^~A~^^^1^5.7^7.0^^^^^~02/01/2015~ -~01040~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~01040~^~430~^1.4^2^^~1~^~A~^^^1^1.3^1.5^^^^^~02/01/2015~ -~01040~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~01041~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01041~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01041~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01041~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01042~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01042~^~313~^35.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01042~^~317~^20.2^3^^~1~^~A~^^^1^16.7^23.1^^^^~2, 3~^~05/01/2011~ -~01042~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~01042~^~326~^7.5^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~328~^7.5^2^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~01042~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~421~^19.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01042~^~428~^14.1^2^^~1~^~A~^^^1^5.4^15.2^^^^^~07/01/2012~ -~01042~^~430~^3.7^2^^~1~^~A~^^^1^2.5^3.9^^^^^~07/01/2012~ -~01042~^~454~^2.7^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~01043~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01043~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01043~^~317~^14.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01043~^~326~^0.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~328~^0.5^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~01043~^~401~^2.3^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01043~^~421~^34.7^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~430~^2.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01044~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01044~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01044~^~317~^15.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01044~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01044~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01044~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01044~^~430~^2.2^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~01045~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~317~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01045~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01046~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01046~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01046~^~313~^35.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01046~^~317~^19.6^2^^~1~^~A~^^^1^19.5^19.8^1^^^^~05/01/2011~ -~01046~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2011~ -~01046~^~326~^2.5^2^^~1~^~A~^^^1^0.0^5.1^1^^^~1~^~05/01/2011~ -~01046~^~328~^2.5^4^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~01046~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01046~^~421~^36.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01046~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~01046~^~430~^3.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~01046~^~454~^1.4^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01047~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~317~^16.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01047~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01048~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01048~^~313~^35.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01048~^~317~^11.3^9^1.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01048~^~326~^0.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~ -~01048~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01048~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01048~^~430~^1.8^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~01049~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01049~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01049~^~313~^3.0^9^^~1~^~A~^^^1^3.0^3.0^0^^^~4~^~03/01/2006~ -~01049~^~317~^3.2^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01049~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01049~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01049~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01049~^~421~^18.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01049~^~430~^1.3^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01049~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01050~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01050~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01050~^~317~^4.6^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~326~^1.1^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~328~^1.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~401~^0.8^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01050~^~421~^17.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~01050~^~430~^1.7^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01050~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~01052~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01052~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01052~^~313~^3.0^9^^~1~^~A~^^^1^3.0^3.0^0^^^~4~^~03/01/2006~ -~01052~^~317~^0.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01052~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01052~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01052~^~401~^0.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~421~^16.8^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01052~^~430~^2.7^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01053~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01053~^~313~^3.0^9^^~1~^~A~^^^1^3.0^3.0^0^^^~4~^~03/01/2006~ -~01053~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01053~^~326~^1.6^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~328~^1.6^1^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01053~^~401~^0.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01053~^~421~^16.8^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01053~^~430~^3.2^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~ -~01054~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01054~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01054~^~313~^3.0^9^^~1~^~A~^^^1^3.0^3.0^0^^^~4~^~03/01/2006~ -~01054~^~317~^1.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01054~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01054~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01054~^~401~^0.0^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~421~^16.8^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01054~^~430~^1.9^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01055~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01055~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~317~^2.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01055~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01055~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01055~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~421~^19.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01055~^~430~^0.6^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01056~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01056~^~291~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01056~^~317~^3.7^4^5.5e-02^~1~^~A~^^^1^3.5^4.1^2^3.4^3.9^~2, 3~^~02/01/2015~ -~01056~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01056~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01056~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~01056~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01056~^~421~^19.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01056~^~428~^6.0^2^^~1~^~A~^^^1^6.0^6.2^^^^^~02/01/2015~ -~01056~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2009~ -~01056~^~430~^1.5^2^^~1~^~A~^^^1^1.4^1.5^^^^^~02/01/2015~ -~01056~^~454~^0.6^2^^~1~^~A~^^^2^0.5^0.8^1^^^^~12/01/2006~ -~01057~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01057~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~313~^0.2^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~01057~^~317~^4.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01057~^~326~^1.2^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~328~^1.2^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~401~^1.5^3^0.2^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~421~^52.2^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~01057~^~429~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~430~^0.3^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~454~^0.6^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~01058~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01058~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~317~^2.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01058~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01058~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~421~^14.9^0^^~4~^~BFNN~^~01085~^^^^^^^^^~03/01/2007~ -~01058~^~430~^4.1^0^^~4~^~BFFN~^~04034~^^^^^^^^^~01/01/2003~ -~01059~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01059~^~317~^2.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01059~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01060~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01060~^~317~^2.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01060~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~421~^15.0^0^^~4~^~BFNN~^~01077~^^^^^^^^^~03/01/2007~ -~01060~^~430~^0.8^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01061~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01061~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~317~^14.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~328~^0.1^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~421~^38.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01064~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01065~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01067~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01067~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01067~^~317~^1.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01067~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~421~^0.0^0^^~4~^~BFFN~^~04034~^^^^^^^^^~03/01/2007~ -~01067~^~430~^2.5^0^^~4~^~BFFN~^~04034~^^^^^^^^^~12/01/2002~ -~01068~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~317~^1.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01068~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01069~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01069~^~313~^112.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01069~^~317~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01069~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~421~^2.3^3^0.2^~1~^~AS~^^^1^1.9^2.7^2^1.2^3.2^~2, 3~^~12/01/2006~ -~01069~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~01069~^~429~^68.2^2^^~1~^~A~^^^1^0.0^114.1^^^^~1~^~02/01/2015~ -~01069~^~430~^1.7^2^^~1~^~A~^^^1^0.0^2.9^^^^~1~^~02/01/2015~ -~01069~^~454~^0.1^3^1.2e-02^~1~^~A~^^^1^0.1^0.1^2^3.5e-02^0.1^~2, 3~^~12/01/2006~ -~01070~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~01070~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01070~^~317~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01070~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01070~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01070~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~421~^0.1^0^^~4~^~BFFN~^~04513~^^^^^^^^^~03/01/2007~ -~01070~^~430~^9.9^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01071~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~01071~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~317~^4.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01071~^~326~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~328~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~401~^0.7^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~421~^10.6^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~01071~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~430~^2.7^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~454~^0.5^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~01072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01072~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01072~^~317~^1.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01072~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01072~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~421~^0.0^0^^~4~^~BFFN~^~04513~^^^^^^^^^~03/01/2007~ -~01072~^~430~^5.5^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01073~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01073~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01073~^~317~^2.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01073~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01073~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~421~^0.0^0^^~4~^~BFFN~^~04513~^^^^^^^^^~03/01/2007~ -~01073~^~430~^6.3^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01074~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01074~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~317~^2.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01074~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~421~^0.0^0^^~4~^~BFFN~^~04513~^^^^^^^^^~03/01/2007~ -~01074~^~430~^4.8^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01076~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01076~^~317~^1.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01076~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01077~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01077~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/2002~ -~01077~^~317~^3.7^29^0.1^~1~^~A~^^^8^0.0^8.8^17^3.2^4.0^~2, 3~^~03/01/2003~ -~01077~^~326~^1.3^24^8.2e-02^~1~^~A~^^^4^0.2^2.0^13^1.0^1.4^~2, 3~^~01/01/2009~ -~01077~^~328~^1.3^24^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01077~^~401~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~421~^14.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01077~^~428~^1.0^4^5.0e-02^~1~^~A~^^^^^^^^^^~11/01/2008~ -~01077~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~430~^0.3^8^7.0e-03^~1~^~A~^^^2^0.2^0.3^3^0.2^0.2^~2, 3~^~11/01/2008~ -~01077~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01078~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~01078~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01078~^~317~^2.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01078~^~401~^1.5^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01079~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01079~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2009~ -~01079~^~313~^3.4^4^0.3^~1~^~A~^^^1^2.8^4.5^3^2.1^4.6^~2, 3~^~12/01/2008~ -~01079~^~317~^2.5^30^0.1^~1~^~A~^^^9^0.0^5.6^11^2.1^2.8^~2, 3~^~03/01/2003~ -~01079~^~326~^1.2^24^6.5e-02^~1~^~A~^^^4^0.0^1.6^10^1.0^1.3^~1, 2, 3~^~05/01/2009~ -~01079~^~328~^1.2^24^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01079~^~401~^0.2^5^0.0^~1~^~A~^^^2^0.0^0.9^^^^~1, 2, 3~^~03/01/2003~ -~01079~^~421~^16.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01079~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~430~^0.2^4^4.8e-02^~1~^~A~^^^1^0.1^0.3^3^2.3e-02^0.3^~2, 3~^~12/01/2002~ -~01079~^~454~^0.9^2^^~1~^~A~^^^2^^^^^^^~12/01/2008~ -~01080~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~01080~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01080~^~317~^2.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01080~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01080~^~401~^1.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~01081~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01081~^~317~^2.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01081~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01081~^~401~^1.1^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01082~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01082~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01082~^~313~^2.6^4^0.3^~1~^~A~^^^1^1.9^3.6^3^1.4^3.7^~2, 3~^~03/01/2006~ -~01082~^~317~^3.3^12^0.3^~1~^~A~^^^1^2.0^4.9^11^2.6^3.9^~2, 3~^~03/01/2003~ -~01082~^~326~^1.2^24^6.8e-02^~1~^~A~^^^4^0.3^1.7^17^1.0^1.3^~2, 3~^~05/01/2009~ -~01082~^~328~^1.2^24^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01082~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~01082~^~421~^17.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01082~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~430~^0.1^4^0.0^~1~^~A~^^^1^0.1^0.1^^^^~2, 3~^~12/01/2002~ -~01082~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01083~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~01083~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01083~^~317~^2.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01083~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01083~^~401~^1.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01084~^~317~^2.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01084~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01084~^~401~^1.2^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01085~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01085~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01085~^~313~^3.1^5^5.5e-02^~1~^~A~^^^1^3.0^3.4^3^2.9^3.2^~2, 3~^~03/01/2006~ -~01085~^~317~^3.1^11^0.2^~1~^~A~^^^1^2.1^4.3^10^2.5^3.6^~2, 3~^~03/01/2003~ -~01085~^~326~^1.2^24^6.1e-02^~1~^~A~^^^4^0.1^1.9^11^1.0^1.3^~2, 3~^~05/01/2009~ -~01085~^~328~^1.2^24^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01085~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~01085~^~421~^15.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01085~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01086~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01086~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01086~^~317~^2.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01086~^~326~^1.2^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~ -~01086~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01086~^~401~^1.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01086~^~430~^0.0^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~ -~01087~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01087~^~317~^2.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01087~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01087~^~401~^1.1^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01088~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01088~^~313~^4.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01088~^~317~^2.0^12^0.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01088~^~326~^0.0^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~ -~01088~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01088~^~401~^1.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~421~^17.7^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~ -~01088~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01089~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01089~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01089~^~317~^2.0^37^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01089~^~326~^1.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01089~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01089~^~401~^0.9^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01089~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01089~^~430~^0.3^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01090~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01090~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01090~^~317~^16.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01090~^~326~^10.5^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01090~^~328~^10.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01090~^~401~^8.6^11^0.4^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~421~^119.3^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01090~^~430~^2.2^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01091~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01091~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01091~^~317~^27.3^9^2.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01091~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01091~^~401~^6.8^14^0.7^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~421~^169.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~01091~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~ -~01092~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01092~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01092~^~317~^27.3^9^2.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01092~^~326~^11.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01092~^~328~^11.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01092~^~401~^5.6^28^0.4^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~421~^167.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~01092~^~430~^0.0^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01093~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~01093~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~317~^27.3^9^2.9^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01093~^~401~^6.7^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01094~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01094~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01094~^~317~^20.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01094~^~326~^0.5^0^^~4~^~BFSN~^~01211~^^^^^^^^^~02/01/2009~ -~01094~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01094~^~401~^5.7^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~421~^118.7^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01094~^~430~^0.4^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01095~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01095~^~317~^14.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01095~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01095~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01095~^~401~^2.6^10^0.5^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~421~^89.1^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01095~^~430~^0.6^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01096~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01096~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01096~^~313~^8.5^19^1.1^~1~^~A~^^^2^4.3^12.2^5^5.6^11.3^~4~^~03/01/2006~ -~01096~^~317~^2.3^13^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01096~^~326~^2.0^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~01096~^~328~^2.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01096~^~401~^1.9^32^0.2^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~421~^31.8^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01096~^~430~^0.5^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01097~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01097~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01097~^~313~^8.5^19^1.1^~1~^~A~^^^2^4.3^12.2^5^5.6^11.3^~4~^~03/01/2006~ -~01097~^~317~^2.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01097~^~326~^2.0^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~01097~^~328~^2.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01097~^~401~^1.2^9^0.1^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~421~^25.2^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01097~^~430~^0.0^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01102~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01102~^~291~^0.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~313~^5.2^11^0.7^~1~^~A~^^^2^4.5^6.0^1^-4.2^14.7^~4~^~03/01/2006~ -~01102~^~317~^1.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01102~^~326~^1.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01102~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01102~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~421~^17.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01102~^~430~^0.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01103~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~01103~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01103~^~313~^5.2^11^0.7^~1~^~A~^^^2^4.5^6.0^1^-4.2^14.7^~4~^~03/01/2006~ -~01103~^~317~^3.4^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~326~^1.2^0^^~4~^~BFZN~^~01079~^^^^^^^^^~02/01/2009~ -~01103~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01103~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~421~^17.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~01103~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~430~^0.2^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01104~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01104~^~291~^0.1^9^5.9e-02^~8~^^^^1^0.1^0.4^7^-4.0e-03^0.2^~2, 3~^~07/01/2015~ -~01104~^~317~^1.9^12^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01104~^~325~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~326~^1.1^4^1.0e-02^~1~^~A~^^^1^1.0^1.3^2^1.0^1.1^~2, 3~^~05/01/2009~ -~01104~^~328~^1.1^4^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01104~^~401~^0.4^10^0.1^~8~^^^^1^0.0^0.5^8^0.1^0.7^~2, 3~^~07/01/2015~ -~01104~^~421~^17.0^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~01104~^~428~^0.1^3^0.0^~1~^~A~^^^1^0.1^0.1^^^^~2, 3~^~07/01/2015~ -~01104~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~430~^0.1^3^0.0^~1~^~A~^^^1^0.1^0.1^^^^~2, 3~^~07/01/2015~ -~01105~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~291~^1.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~313~^3.1^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~317~^2.7^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~326~^1.1^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01105~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01105~^~401~^0.2^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~421~^15.6^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~430~^0.2^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~454~^0.9^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01106~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01106~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01106~^~317~^1.4^5^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01106~^~326~^1.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01106~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01106~^~401~^1.3^57^0.1^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01106~^~430~^0.3^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01107~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01107~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01107~^~317~^1.8^101^1.7e-02^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01107~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01107~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01107~^~401~^5.0^233^0.1^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01107~^~430~^0.3^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01108~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01108~^~401~^2.3^3^0.6^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~317~^1.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~01109~^~401~^4.2^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01110~^~291~^0.3^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01110~^~317~^1.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~01110~^~326~^1.0^0^^~4~^~BFFN~^~01102~^^^^^^^^^~07/01/2009~ -~01110~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~01110~^~401~^0.0^6^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~421~^17.0^0^^~4~^~T~^^^^^^^^^^~07/01/2009~ -~01110~^~430~^0.2^0^^~4~^~BFFN~^~01102~^^^^^^^^^~01/01/2003~ -~01111~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01111~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01111~^~317~^2.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~01111~^~326~^1.2^0^^~4~^~BFFN~^~01077~^^^^^^^^^~07/01/2009~ -~01111~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~01111~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~421~^14.3^0^^~4~^~T~^^^^^^^^^^~07/01/2009~ -~01111~^~430~^0.2^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~01112~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01112~^~317~^1.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01112~^~401~^0.1^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~01112~^~430~^0.0^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01113~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01113~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01113~^~317~^27.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01113~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01113~^~401~^0.9^13^0.3^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~421~^225.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~01113~^~430~^0.0^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~01114~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01114~^~317~^1.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01114~^~401~^0.1^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~01114~^~430~^0.0^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01115~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01115~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01115~^~317~^27.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01115~^~401~^1.5^41^0.3^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~421~^225.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~01115~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~ -~01116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01116~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01116~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01116~^~317~^2.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01116~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01116~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01116~^~401~^0.5^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01116~^~430~^0.2^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01117~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01117~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01117~^~317~^3.3^17^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~01117~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01117~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01117~^~401~^0.8^8^0.1^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~421~^15.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01117~^~430~^0.2^9^0.1^~1~^~A~^^^2^0.1^0.3^1^-1.3^1.7^~4~^~02/01/2009~ -~01117~^~454~^0.9^2^^~1~^~A~^^^1^0.8^0.9^1^^^^~12/01/2006~ -~01118~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01118~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01118~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01118~^~317~^3.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01118~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01118~^~430~^0.2^9^0.1^~1~^~A~^^^2^0.1^0.3^1^-1.3^1.7^~4~^~02/01/2009~ -~01119~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01119~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01119~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01119~^~317~^4.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01119~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01119~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01119~^~401~^0.8^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01119~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01120~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01120~^~313~^9.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01120~^~317~^2.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01120~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01120~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01120~^~401~^0.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01120~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01121~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01121~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01121~^~313~^9.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01121~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01121~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01121~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01121~^~401~^0.7^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~421~^14.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01121~^~430~^0.1^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01121~^~454~^0.8^2^^~1~^~A~^^^1^0.8^0.8^1^^^^~12/01/2006~ -~01122~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01122~^~313~^9.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01122~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01122~^~401~^0.7^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01123~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2010~ -~01123~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~01123~^~313~^1.1^2^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~01123~^~317~^30.7^6^2.1^~1~^~A~^^^1^23.3^37.4^5^25.2^36.1^~2, 3~^~08/01/2010~ -~01123~^~326~^2.0^10^0.8^~1~^~A~^^^1^1.0^9.2^9^0.2^3.8^~2, 3~^~09/01/2010~ -~01123~^~328~^2.0^10^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~01123~^~401~^0.0^2^^~1~^~A~^^^2^^^^^^^~11/01/2002~ -~01123~^~421~^293.8^6^4.6^~1~^~AS~^^^1^280.5^307.3^5^281.7^305.8^~2, 3~^~03/01/2011~ -~01123~^~429~^0.1^2^^~1~^~A~^^^2^^^^^^^~11/01/2002~ -~01123~^~430~^0.3^2^^~1~^~A~^^^2^^^^^^^~11/01/2002~ -~01123~^~454~^0.3^6^2.8e-02^~1~^~A~^^^1^0.2^0.3^5^0.2^0.3^~2, 3~^~03/01/2011~ -~01124~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01124~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~317~^20.0^4^5.3^~1~^~A~^^^1^8.4^31.4^3^2.9^37.0^~2, 3~^~03/01/2003~ -~01124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01124~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~421~^1.1^4^0.1^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~01124~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~454~^0.3^4^4.7e-02^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~01125~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01125~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01125~^~317~^56.0^4^8.0^~1~^~A~^^^1^41.6^72.4^3^30.4^81.5^~2, 3~^~03/01/2003~ -~01125~^~326~^5.4^0^^~4~^~O~^^^^^^^^^^~09/01/2010~ -~01125~^~328~^5.4^0^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~01125~^~401~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01125~^~421~^820.2^0^^~4~^~BFFN~^~01123~^^^^^^^^^~05/01/2011~ -~01125~^~429~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~430~^0.7^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~454~^0.9^4^0.1^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~01126~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2015~ -~01126~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1976~ -~01126~^~317~^56.4^3^^~1~^~A~^^^1^41.2^69.2^^^^~2~^~04/01/2012~ -~01126~^~325~^0.0^20^0.0^~1~^~A~^^^2^0.0^0.0^19^0.0^0.0^~1, 4~^~04/01/2015~ -~01126~^~326~^6.0^20^1.0^~1~^~A~^^^2^1.9^17.0^19^3.7^8.1^~4~^~06/01/2015~ -~01126~^~328~^6.0^20^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01126~^~401~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~04/01/2015~ -~01126~^~421~^639.3^3^^~1~^~A~^^^1^569.0^710.0^^^^~2~^~04/01/2012~ -~01126~^~430~^0.7^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~ -~01127~^~221~^0.0^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01127~^~317~^53.5^3^^~1~^~A~^^^1^38.4^64.2^^^^~2~^~04/01/2012~ -~01127~^~326~^3.1^3^^~1~^~A~^^^1^2.1^4.6^^^^~2~^~04/01/2012~ -~01127~^~328~^3.1^3^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01127~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1976~ -~01127~^~421~^669.3^3^^~1~^~A~^^^1^650.0^682.0^^^^~2~^~04/01/2012~ -~01127~^~430~^0.7^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01128~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01128~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~313~^1.2^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01128~^~317~^33.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~326~^2.2^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01128~^~328~^2.2^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01128~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~421~^317.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01128~^~429~^0.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~430~^5.6^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~454~^0.3^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01129~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01129~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01129~^~313~^4.8^66^0.5^~1~^~A~^^^4^2.0^11.6^21^3.6^6.0^~4~^~03/01/2006~ -~01129~^~317~^30.8^69^1.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01129~^~326~^2.2^0^^~4~^~O~^^^^^^^^^^~09/01/2010~ -~01129~^~328~^2.2^0^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~01129~^~401~^0.0^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~421~^293.8^0^^~4~^~BFZN~^~01123~^^^^^^^^^~05/01/2011~ -~01129~^~430~^0.3^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~454~^0.6^4^3.3e-02^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~01130~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~313~^21.2^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~317~^25.8^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~326~^1.7^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01130~^~328~^1.7^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01130~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01130~^~421~^247.6^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01130~^~429~^0.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~430~^4.5^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~454~^0.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01131~^~221~^0.0^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~291~^0.0^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~313~^1.1^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~317~^30.6^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~326~^2.0^0^^~4~^~RK~^^^^^^^^^^~09/01/2010~ -~01131~^~328~^2.0^0^^~4~^~RK~^^^^^^^^^^~05/01/2011~ -~01131~^~401~^0.0^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~421~^234.1^0^^~4~^~RK~^^^^^^^^^^~05/01/2011~ -~01131~^~429~^0.1^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~430~^0.3^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~454~^0.3^0^^~4~^~RK~^^^^^^^^^^~05/01/2011~ -~01132~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01132~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~313~^0.8^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~317~^23.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~326~^1.8^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01132~^~328~^1.8^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~ -~01132~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~421~^221.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01132~^~428~^0.2^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~429~^0.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~430~^4.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01132~^~454~^0.3^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01133~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01133~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01133~^~317~^164.7^3^^~1~^~A~^^^1^122.0^187.0^^^^~2~^~04/01/2012~ -~01133~^~325~^0.0^24^0.0^~1~^~A~^^^2^0.0^0.0^23^0.0^0.0^~1, 4~^~04/01/2015~ -~01133~^~326~^8.3^24^0.8^~1~^~A~^^^2^2.9^17.3^23^6.4^10.0^~4~^~06/01/2015~ -~01133~^~328~^8.3^24^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01133~^~401~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~06/01/2015~ -~01133~^~421~^1266.7^3^^~1~^~A~^^^1^1230.0^1320.0^^^^~2~^~04/01/2012~ -~01133~^~430~^1.2^0^^~4~^~BFSN~^~01123~^^^^^^^^^~03/01/2007~ -~01134~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~317~^121.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01134~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01135~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~317~^116.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01135~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~421~^8.4^0^^~4~^~BFZN~^~01136~^^^^^^^^^~08/01/2012~ -~01135~^~430~^0.0^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01136~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~01136~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01136~^~317~^125.1^0^^~4~^~BFAN~^^^^^^^^^^~12/01/1997~ -~01136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01136~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~421~^8.4^0^^~4~^~BFSN~^~01124~^^^^^^^^^~03/01/2007~ -~01136~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01137~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01137~^~317~^139.3^3^^~1~^~A~^^^1^125.0^158.0^^^^~2~^~04/01/2012~ -~01137~^~325~^0.0^22^0.0^~1~^~A~^^^2^0.0^0.0^21^0.0^0.0^~1, 4~^~04/01/2015~ -~01137~^~326~^10.4^22^1.3^~1~^~A~^^^2^3.5^33.1^21^7.5^13.2^~4~^~06/01/2015~ -~01137~^~328~^10.4^22^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01137~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01137~^~421~^2403.3^3^^~1~^~A~^^^1^1760.0^3610.0^^^^~2~^~04/01/2012~ -~01137~^~430~^1.5^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~ -~01138~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01138~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01138~^~317~^36.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01138~^~326~^1.7^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01138~^~328~^1.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01138~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~421~^263.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01138~^~430~^0.4^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01139~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~317~^36.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01139~^~326~^1.7^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01139~^~328~^1.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01139~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~421~^263.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01139~^~430~^0.4^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1988~ -~01140~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~317~^32.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01140~^~326~^1.4^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~ -~01140~^~328~^1.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01140~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~421~^263.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01140~^~430~^0.3^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01141~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~317~^34.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01141~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01144~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~317~^127.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01144~^~401~^0.8^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~421~^117.6^0^^~4~^~BFSN~^~01077~^^^^^^^^^~03/01/2007~ -~01144~^~430~^0.4^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01145~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01145~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01145~^~313~^2.8^19^0.6^~1~^~A~^^^3^1.5^3.8^2^-0.1^5.6^~4~^~03/01/2006~ -~01145~^~317~^1.0^37^0.8^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01145~^~325~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01145~^~326~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~01145~^~328~^0.0^0^^~1~^~AS~^~01002~^^^^^^^^^~09/01/2015~ -~01145~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~421~^18.8^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01145~^~430~^7.0^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01146~^~221~^0.0^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01146~^~317~^23.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01146~^~326~^0.5^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01146~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01146~^~430~^1.9^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01151~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01151~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01151~^~313~^3.1^5^5.5e-02^~1~^~A~^^^1^3.0^3.4^3^2.9^3.2^~2, 3~^~12/01/2008~ -~01151~^~317~^3.1^11^0.2^~1~^~A~^^^1^2.1^4.3^10^2.5^3.6^~2, 3~^~12/01/2008~ -~01151~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01151~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01151~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~421~^15.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01151~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2009~ -~01151~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01152~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01152~^~317~^2.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01152~^~401~^1.1^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01153~^~313~^8.5^19^1.1^~1~^~A~^^^2^4.3^12.2^5^5.6^11.3^~4~^~03/01/2006~ -~01153~^~317~^2.3^13^0.2^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01153~^~401~^1.9^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01154~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01154~^~317~^27.3^9^2.9^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01154~^~326~^11.0^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01154~^~328~^11.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01154~^~401~^6.8^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~421~^169.2^0^^~4~^~BFZN~^~01091~^^^^^^^^^~03/01/2007~ -~01154~^~430~^0.1^0^^~4~^~BFZN~^~01091~^^^^^^^^^~01/01/2003~ -~01155~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1993~ -~01155~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01155~^~317~^27.3^9^2.9^~1~^~A~^^^^^^^^^^~12/01/1997~ -~01155~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~01155~^~401~^5.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~421~^167.8^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01155~^~430~^0.0^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01156~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~01156~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01156~^~317~^5.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01156~^~326~^0.7^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01156~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01156~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01156~^~430~^3.0^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01157~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~01157~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01157~^~317~^3.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01157~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01157~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01157~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01157~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01158~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~401~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01159~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~01159~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01159~^~317~^2.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01159~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01159~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01159~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01159~^~430~^1.8^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01160~^~221~^0.0^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01160~^~317~^56.9^3^^~1~^~A~^^^1^43.2^69.3^^^^~2~^~04/01/2012~ -~01160~^~326~^3.1^3^^~1~^~A~^^^1^2.7^3.4^^^^~2~^~04/01/2012~ -~01160~^~328~^3.1^3^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01160~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01160~^~421~^705.0^3^^~1~^~A~^^^1^675.0^737.0^^^^~2~^~04/01/2012~ -~01160~^~430~^0.7^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01161~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~01161~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01161~^~317~^19.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01161~^~401~^0.1^4^3.9e-02^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~421~^13.7^0^^~4~^~BFSN~^~01009~^^^^^^^^^~03/01/2007~ -~01161~^~430~^1.0^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01162~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01164~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~291~^0.1^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01164~^~317~^6.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~01164~^~326~^1.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~01164~^~328~^1.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~401~^0.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~421~^5.1^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01164~^~430~^0.9^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01165~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01165~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01165~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01165~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01165~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01165~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01165~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01166~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01166~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01166~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01166~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01166~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01166~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01166~^~430~^2.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01167~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01167~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01167~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01167~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01167~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01167~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01167~^~430~^2.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01168~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01168~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01168~^~313~^34.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01168~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01168~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01168~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01168~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01168~^~430~^0.6^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01169~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~01169~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1976~ -~01169~^~313~^34.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01169~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~01169~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01169~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01169~^~401~^0.0^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01169~^~430~^2.7^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01171~^~221~^0.0^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~291~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~06/01/2015~ -~01171~^~317~^37.2^3^^~1~^~A~^^^1^24.3^45.0^^^^~2~^~04/01/2012~ -~01171~^~325~^0.0^27^0.0^~1~^~A~^^^2^0.0^0.0^26^0.0^0.0^~1, 4~^~04/01/2015~ -~01171~^~326~^2.6^27^0.3^~1~^~A~^^^2^0.8^7.2^26^1.8^3.3^~4~^~06/01/2015~ -~01171~^~328~^2.6^27^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01171~^~401~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~04/01/2015~ -~01171~^~421~^268.3^3^^~1~^~A~^^^1^203.0^308.0^^^^~2~^~04/01/2012~ -~01171~^~430~^0.3^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~01172~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01172~^~317~^9.2^3^^~1~^~A~^^^1^8.8^10.0^^^^~2~^~04/01/2012~ -~01172~^~325~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~04/01/2015~ -~01172~^~326~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~04/01/2012~ -~01172~^~328~^0.0^15^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~01172~^~401~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~04/01/2015~ -~01172~^~421~^2.5^3^^~1~^~A~^^^1^2.5^2.5^^^^~1, 2~^~04/01/2012~ -~01172~^~430~^0.0^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~ -~01173~^~221~^0.0^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~317~^125.1^0^^~4~^~BFAN~^^^^^^^^^^~12/01/1997~ -~01173~^~328~^0.0^0^^~4~^~BFZN~^~01136~^^^^^^^^^~08/01/2012~ -~01173~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~421~^8.4^0^^~4~^~BFZN~^~01136~^^^^^^^^^~08/01/2012~ -~01173~^~430~^0.0^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01174~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~313~^3.4^4^0.3^~1~^~A~^^^1^2.8^4.5^3^2.1^4.6^~2, 3~^~12/01/2008~ -~01174~^~317~^2.5^30^0.1^~1~^~A~^^^9^0.0^5.6^11^2.1^2.8^~2, 3~^~12/01/2008~ -~01174~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~ -~01174~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01174~^~401~^0.2^5^0.0^~1~^~A~^^^2^0.0^0.9^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~421~^16.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01174~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~430~^0.2^4^4.8e-02^~1~^~A~^^^1^0.1^0.3^3^2.3e-02^0.3^~2, 3~^~12/01/2008~ -~01174~^~454~^0.9^2^^~1~^~A~^^^2^^^^^^^~12/01/2008~ -~01175~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~313~^2.6^4^0.3^~1~^~A~^^^1^1.9^3.6^3^1.4^3.7^~2, 3~^~12/01/2008~ -~01175~^~317~^3.3^12^0.3^~1~^~A~^^^1^2.0^4.9^11^2.6^3.9^~2, 3~^~12/01/2008~ -~01175~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~ -~01175~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01175~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~421~^17.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01175~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~430~^0.1^4^0.0^~1~^~A~^^^1^0.1^0.1^^^^~2, 3~^~12/01/2008~ -~01175~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01178~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01178~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01178~^~317~^4.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01178~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01178~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01178~^~401~^0.9^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~421~^19.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01178~^~430~^0.7^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01179~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01179~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01179~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01179~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01179~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01179~^~401~^0.9^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~421~^19.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01179~^~430~^0.5^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01180~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~291~^0.0^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~317~^5.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01180~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01180~^~401~^0.0^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~421~^19.2^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01180~^~430~^0.0^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01184~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01184~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01184~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01184~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01184~^~401~^1.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01184~^~430~^0.0^0^^~4~^~BFFN~^~01119~^^^^^^^^^~01/01/2003~ -~01185~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~01185~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~317~^43.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01185~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~421~^15.4^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2007~ -~01185~^~430~^0.4^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01186~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~01186~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~01186~^~317~^4.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01186~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01186~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~421~^65.2^0^^~4~^~BFNN~^~01017~^^^^^^^^^~06/01/2008~ -~01186~^~428~^0.1^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~430~^0.2^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01187~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~01187~^~291~^1.2^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01187~^~317~^7.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01187~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01187~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01187~^~430~^0.0^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~ -~01188~^~291~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~401~^0.4^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~401~^0.4^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~291~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~401~^1.1^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~401~^1.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01199~^~221~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~313~^3.0^9^^~1~^~A~^^^1^3.0^3.0^0^^^~4~^~03/01/2006~ -~01199~^~317~^2.9^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01199~^~401~^0.7^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~421~^15.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01199~^~430~^0.2^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01200~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~01200~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~317~^3.0^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~01200~^~401~^0.0^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~01200~^~430~^0.3^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01202~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~01202~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~317~^3.4^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~430~^0.2^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01203~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01203~^~291~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~01203~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2005~ -~01203~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01203~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01203~^~401~^0.7^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01203~^~430~^1.2^0^^~4~^~BFNN~^~43261~^^^^^^^^^~03/01/2005~ -~01204~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~01204~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~01204~^~317~^17.7^3^3.5^~1~^~A~^^^1^11.0^23.0^2^2.4^32.8^~2, 3~^~05/01/2007~ -~01204~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01204~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01204~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2007~ -~01204~^~421~^20.7^0^^~4~^~BFSN~^~01208~^^^^^^^^^~05/01/2007~ -~01204~^~430~^1.7^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~ -~01205~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~291~^1.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~313~^35.9^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~317~^0.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01205~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01205~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~421~^0.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~430~^3.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~454~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~291~^1.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~313~^0.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~317~^1.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01206~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~421~^0.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~430~^9.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~454~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01208~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01208~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01208~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2007~ -~01208~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01208~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01208~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~421~^12.9^0^^~4~^~BFSN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~430~^1.5^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01209~^~291~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~04/01/2007~ -~01209~^~317~^15.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~01209~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01209~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01209~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01209~^~421~^13.5^0^^~4~^~BFSN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~430~^1.6^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01211~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01211~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2008~ -~01211~^~317~^3.7^29^0.1^~1~^~A~^^^8^0.0^8.8^17^3.2^4.0^~2, 3~^~12/01/2008~ -~01211~^~326~^0.1^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01211~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01211~^~401~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~421~^14.3^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~01211~^~428~^1.0^4^5.0e-02^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01211~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~430~^0.3^8^7.0e-03^~1~^~A~^^^2^0.2^0.3^3^0.2^0.2^~2, 3~^~12/01/2008~ -~01211~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01212~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01212~^~317~^16.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~01212~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~01212~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~01212~^~401~^8.6^11^0.4^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~421~^117.4^0^^~4~^~BFSN~^~01077~^^^^^^^^^~02/01/2009~ -~01212~^~430~^2.2^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01215~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~317~^12.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~01215~^~326~^5.3^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01215~^~328~^5.3^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01215~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~01215~^~430~^2.6^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~ -~01216~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01216~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01216~^~313~^9.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01216~^~317~^2.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01216~^~326~^1.3^45^1.6e-02^~1~^~A~^^^2^0.9^2.0^26^1.2^1.3^~2, 3~^~05/01/2009~ -~01216~^~328~^1.3^45^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01216~^~401~^0.6^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01216~^~430~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01217~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01217~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01217~^~313~^9.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~01217~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01217~^~326~^1.3^45^1.6e-02^~1~^~A~^^^2^0.9^2.0^26^1.2^1.3^~2, 3~^~05/01/2009~ -~01217~^~328~^1.3^45^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01217~^~401~^0.7^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~421~^14.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01217~^~430~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01217~^~454~^0.8^2^^~1~^~A~^^^1^0.8^0.8^1^^^^~12/01/2006~ -~01218~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~01218~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~01218~^~317~^6.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01218~^~326~^1.3^45^1.6e-02^~1~^~A~^^^2^0.9^2.0^26^1.2^1.3^~2, 3~^~05/01/2009~ -~01218~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01218~^~401~^0.7^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~421~^16.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~01218~^~430~^1.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~01219~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~01219~^~291~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~01219~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2005~ -~01219~^~326~^1.3^45^1.6e-02^~1~^~A~^^^2^0.9^2.0^26^1.2^1.3^~2, 3~^~05/01/2009~ -~01219~^~328~^1.3^45^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01219~^~401~^0.7^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01219~^~430~^1.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2005~ -~01220~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01220~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01220~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01220~^~317~^4.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01220~^~326~^1.2^0^^~4~^~S~^^^^^^^^^^~03/01/2009~ -~01220~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~01220~^~401~^0.8^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01220~^~430~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01221~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01221~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01221~^~317~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01221~^~326~^1.2^0^^~4~^~S~^^^^^^^^^^~03/01/2009~ -~01221~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~01221~^~401~^1.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01221~^~430~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01222~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~01222~^~291~^1.2^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~313~^12.0^9^^~1~^~A~^^^1^12.0^12.0^0^^^~4~^~03/01/2006~ -~01222~^~317~^7.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~01222~^~326~^1.2^0^^~4~^~S~^^^^^^^^^^~03/01/2009~ -~01222~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~01222~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~421~^15.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01222~^~430~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01223~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01223~^~291~^7.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~317~^33.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~01223~^~326~^5.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~328~^5.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~401~^30.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~421~^81.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~01223~^~430~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~01224~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~01224~^~291~^2.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~317~^33.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~01224~^~326~^7.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~328~^7.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~401~^42.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~421~^81.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~01224~^~430~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~01225~^~221~^0.0^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~291~^0.0^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~317~^2.7^4^0.5^~1~^~A~^^^1^2.2^4.3^3^1.0^4.3^~1, 2, 3~^~05/01/2009~ -~01225~^~326~^0.2^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~328~^0.2^0^^~1~^~AS~^~01095~^^^^^^^^^~02/01/2017~ -~01225~^~401~^2.6^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~421~^89.1^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~428~^4.2^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01225~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~430~^1.3^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01226~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~01226~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~317~^41.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~01226~^~326~^1.6^0^^~4~^~S~^^^^^^^^^^~05/01/2009~ -~01226~^~328~^1.6^0^^~4~^~S~^^^^^^^^^^~05/01/2009~ -~01226~^~401~^0.5^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~421~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~01226~^~430~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01227~^~317~^22.4^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~326~^1.8^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01227~^~328~^1.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01227~^~421~^18.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01227~^~428~^5.9^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~430~^1.5^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01228~^~221~^0.0^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~291~^0.0^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~317~^19.3^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~326~^2.7^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01228~^~328~^2.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01228~^~401~^0.0^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~421~^12.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01228~^~428~^3.6^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~430~^1.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~454~^3.3^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01229~^~317~^13.8^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~326~^0.7^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01229~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01229~^~421~^15.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~01229~^~428~^5.8^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~430~^1.6^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~01230~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~317~^3.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~326~^1.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01230~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~421~^14.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~313~^12.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~317~^4.9^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01231~^~401~^0.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~421~^15.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01235~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~291~^2.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~317~^2.8^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~401~^0.7^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~421~^3.1^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~291~^0.7^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~317~^3.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~326~^0.7^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01236~^~401~^0.8^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~421~^26.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~430~^0.9^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~291~^0.8^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~317~^2.4^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~326~^0.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01237~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~421~^29.7^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~430~^1.3^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~317~^3.1^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~421~^8.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~430~^1.3^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~221~^0.0^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~291~^1.2^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~317~^3.1^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~328~^0.0^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~421~^8.0^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~430~^1.3^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01240~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~291~^1.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~313~^4.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~317~^2.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~421~^23.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01241~^~221~^0.0^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~291~^0.0^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~317~^1.1^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~328~^0.0^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~401~^0.0^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~421~^2.8^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~430~^0.5^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01242~^~221~^0.0^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~291~^7.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~317~^1.1^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~328~^0.0^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~421~^2.8^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~430~^0.5^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01243~^~221~^0.0^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~291~^7.4^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~317~^1.9^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~328~^0.0^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~421~^23.0^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~430~^0.0^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01244~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~291~^6.6^2^^~8~^~LC~^^^1^5.9^7.4^1^^^^~04/01/2011~ -~01244~^~317~^2.2^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~328~^0.1^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~401~^0.9^2^^~8~^~LC~^^^1^0.0^1.8^1^^^^~04/01/2011~ -~01244~^~421~^19.6^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~430~^0.6^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01249~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01250~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~01250~^~291~^2.2^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~317~^7.7^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~326~^1.1^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~401~^26.4^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~421~^60.5^0^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~01250~^~430~^8.8^0^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~01251~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~313~^8.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~317~^15.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~326~^0.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01251~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~421~^15.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~430~^2.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~454~^0.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01252~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~317~^16.2^3^^~1~^~A~^^^1^15.3^18.8^^^^~2, 3~^~06/01/2015~ -~01252~^~325~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~326~^6.5^3^^~1~^~A~^^^1^5.6^7.0^^^^~2, 3~^~06/01/2015~ -~01252~^~328~^6.5^3^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01252~^~401~^0.0^0^^~4~^~BFZN~^~01215~^^^^^^^^^~05/01/2011~ -~01252~^~421~^35.8^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01252~^~428~^5.0^2^^~1~^~A~^^^1^4.1^5.2^^^^^~05/01/2015~ -~01252~^~430~^3.1^2^^~1~^~A~^^^1^2.6^3.2^^^^^~05/01/2015~ -~01252~^~454~^1.2^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~01253~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2011~ -~01253~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2011~ -~01253~^~313~^35.0^9^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~317~^20.2^3^^~1~^~A~^^^1^16.7^23.1^^^^~2, 3~^~05/01/2011~ -~01253~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~01253~^~326~^0.6^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~ -~01253~^~328~^0.6^1^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~01253~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2011~ -~01253~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~05/01/2011~ -~01253~^~430~^2.6^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~ -~01254~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2011~ -~01254~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2011~ -~01254~^~313~^35.0^9^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~317~^19.6^2^^~1~^~A~^^^1^19.5^19.8^1^^^^~05/01/2011~ -~01254~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2011~ -~01254~^~326~^2.5^2^^~1~^~A~^^^1^0.0^5.1^1^^^~1~^~07/01/2012~ -~01254~^~328~^2.5^4^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01254~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2011~ -~01254~^~421~^29.9^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01254~^~428~^8.9^2^^~1~^~A~^^^1^3.9^14.0^1^^^^~07/01/2012~ -~01254~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2011~ -~01254~^~430~^2.6^2^^~1~^~A~^^^1^2.3^3.0^1^^^^~07/01/2012~ -~01254~^~454~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~01255~^~221~^0.0^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~291~^0.0^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~317~^30.4^3^^~1~^~A~^^^1^20.8^39.4^^^^~2~^~06/01/2011~ -~01255~^~326~^1.5^3^^~1~^~A~^^^1^1.1^1.9^^^^~1, 2~^~06/01/2011~ -~01255~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~01255~^~401~^0.0^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~421~^297.0^3^^~1~^~A~^^^1^287.0^308.0^^^^~2~^~06/01/2011~ -~01255~^~430~^0.3^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01256~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2012~ -~01256~^~317~^9.7^9^0.1^~1~^~A~^^^1^9.3^10.2^2^9.2^10.2^~2, 3~^~08/01/2012~ -~01256~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~01256~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~01256~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~01256~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2012~ -~01256~^~421~^15.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~01256~^~428~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2013~ -~01256~^~429~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2013~ -~01256~^~430~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2013~ -~01256~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~01258~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2012~ -~01258~^~291~^0.0^0^^~4~^^^^^^^^^^^~07/01/2012~ -~01258~^~317~^192.0^3^^~1~^~A~^^^1^124.0^236.0^^^^~2~^~07/01/2012~ -~01258~^~326~^0.0^15^0.0^~1~^~A~^^^1^0.0^0.0^14^0.0^0.0^~1, 4~^~07/01/2012~ -~01258~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~01258~^~401~^0.0^0^^~1~^^^^^^^^^^^~07/01/2012~ -~01258~^~421~^10.7^3^^~1~^~A~^^^1^5.0^18.4^^^^~1, 2~^~07/01/2012~ -~01258~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01259~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~317~^15.5^6^1.3^~1~^~A~^^^1^12.2^19.6^5^12.0^18.9^~2, 3~^~05/01/2013~ -~01259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~421~^42.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~01259~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01260~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~317~^35.8^4^1.1^~1~^~A~^^^1^30.5^38.3^1^21.3^50.1^~2, 3~^~05/01/2013~ -~01260~^~328~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~421~^15.4^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~430~^1.5^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01263~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01263~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~317~^2.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~326~^0.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~328~^0.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~421~^10.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~430~^0.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~291~^1.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~317~^4.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~421~^45.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~430~^22.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01265~^~221~^0.0^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~291~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~317~^14.5^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~328~^0.1^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~401~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~421~^15.4^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~430~^0.6^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01266~^~221~^0.0^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~291~^0.0^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~317~^12.7^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~328~^0.1^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~401~^0.0^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~421~^15.4^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~430~^0.5^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01267~^~221~^0.0^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~291~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~317~^17.7^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~328~^0.5^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~401~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~421~^15.4^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~430~^1.9^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01270~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2014~ -~01270~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2014~ -~01270~^~317~^28.3^9^0.5^~1~^~A~^^^1^22.7^33.1^4^26.6^29.9^~2, 3~^~05/01/2014~ -~01270~^~326~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2014~ -~01270~^~421~^16.5^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01270~^~428~^8.6^2^^~1~^~A~^^^1^8.6^8.6^^^^^~05/01/2014~ -~01270~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2014~ -~01270~^~430~^2.4^2^^~1~^~A~^^^1^2.3^2.4^^^^^~05/01/2014~ -~01271~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~317~^26.8^9^1.0^~1~^~A~^^^1^24.7^33.4^2^22.3^31.3^~2, 3~^~05/01/2014~ -~01271~^~326~^0.4^0^^~4~^~BFFN~^~01028~^^^^^^^^^~05/01/2014~ -~01271~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01271~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~421~^14.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01271~^~428~^4.1^2^^~1~^~A~^^^1^4.1^4.2^^^^^~05/01/2014~ -~01271~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2014~ -~01271~^~430~^1.3^2^^~1~^~A~^^^1^1.3^1.3^^^^^~05/01/2014~ -~01271~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01275~^~291~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~317~^10.6^3^0.1^~1~^~A~^^^1^10.4^10.9^2^9.9^11.2^~2, 3~^~07/01/2014~ -~01276~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~317~^9.5^3^0.5^~1~^~A~^^^1^8.8^10.5^2^7.2^11.7^~2, 3~^~07/01/2014~ -~01276~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2014~ -~01276~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2014~ -~01276~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~317~^8.2^3^0.3^~1~^~A~^^^1^7.5^8.5^2^6.7^9.6^~2, 3~^~07/01/2014~ -~01278~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2014~ -~01278~^~326~^0.9^2^^~1~^~A~^^^1^0.9^0.9^1^^^^~07/01/2014~ -~01278~^~328~^0.9^2^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~317~^8.9^3^5.8e-02^~1~^~A~^^^1^8.8^9.0^2^8.6^9.1^~2, 3~^~07/01/2014~ -~01280~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~326~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~328~^1.0^1^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~401~^0.2^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01284~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01284~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01284~^~317~^9.6^5^0.3^~1~^~A~^^^1^8.8^10.5^2^7.9^11.2^~2, 3~^~05/01/2015~ -~01284~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~01284~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~01284~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~401~^0.7^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~421~^14.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~291~^0.6^2^^~1~^~A~^^^1^0.4^0.7^^^^^~05/01/2015~ -~01285~^~317~^9.4^10^8.5e-02^~1~^~A~^^^1^8.8^12.1^4^9.2^9.6^~2, 3~^~05/01/2015~ -~01285~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01285~^~326~^1.0^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01285~^~328~^1.0^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01285~^~401~^0.3^2^^~1~^~A~^^^1^0.2^0.3^^^^^~05/01/2015~ -~01285~^~421~^14.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01285~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~291~^0.5^3^^~1~^~A~^^^1^0.3^0.8^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~317~^9.7^8^0.1^~1~^~A~^^^1^7.5^10.9^4^9.2^10.0^~2, 3~^~05/01/2015~ -~01286~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~01286~^~326~^0.9^2^^~1~^~A~^^^1^0.9^0.9^1^^^^~05/01/2015~ -~01286~^~328~^0.9^2^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01286~^~401~^0.0^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01286~^~421~^15.2^0^^~4~^~BFZN~^~01119~^^^^^^^^^~05/01/2015~ -~01286~^~430~^0.1^0^^~4~^~BFZN~^~01119~^^^^^^^^^~05/01/2015~ -~01287~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~317~^12.4^3^0.2^~1~^~A~^^^1^12.0^12.8^2^11.3^13.3^~2, 3~^~05/01/2015~ -~01287~^~328~^0.0^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~01287~^~401~^0.8^8^0.1^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~421~^15.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~430~^0.2^9^0.1^~4~^^^^2^0.1^0.3^1^-1.3^1.7^~4~^~05/01/2015~ -~01289~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~317~^3.6^2^^~1~^~A~^^^1^3.4^3.8^1^^^^~07/01/2015~ -~01289~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~326~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~328~^1.0^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01289~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~421~^15.2^0^^~4~^~BFZN~^~01231~^^^^^^^^^~07/01/2015~ -~01289~^~430~^0.1^0^^~4~^~BFZN~^~01231~^^^^^^^^^~07/01/2015~ -~01290~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~317~^3.6^2^^~1~^~A~^^^1^3.5^3.7^1^^^^~07/01/2015~ -~01290~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01290~^~326~^1.1^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~328~^1.1^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~01290~^~401~^1.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01290~^~421~^15.2^0^^~4~^~BFZN~^~01203~^^^^^^^^^~07/01/2015~ -~01290~^~430~^1.2^0^^~4~^~BFZN~^~01203~^^^^^^^^^~07/01/2015~ -~01291~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2015~ -~01291~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~317~^2.3^13^0.2^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01291~^~328~^4.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01291~^~401~^16.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~421~^16.6^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~ -~01291~^~430~^0.2^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~ -~01292~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2015~ -~01292~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~317~^1.9^12^0.3^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01292~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01292~^~401~^1.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~421~^15.6^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~430~^0.2^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01293~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~317~^9.7^9^0.1^~1~^~A~^^^1^9.3^10.2^2^9.2^10.2^~2, 3~^~06/01/2015~ -~01293~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~01293~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~01293~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01293~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~421~^15.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01293~^~430~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2015~ -~01294~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~317~^9.6^5^0.3^~1~^~A~^^^1^8.8^10.5^2^7.9^11.2^~2, 3~^~06/01/2015~ -~01294~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~01294~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~01294~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~421~^14.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01294~^~430~^0.3^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01295~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2015~ -~01295~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~317~^4.9^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2015~ -~01295~^~328~^0.9^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01295~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~421~^15.6^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~430~^0.0^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01297~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~317~^9.7^8^0.1^~1~^~A~^^^1^7.5^10.9^4^9.2^10.0^~2, 3~^~06/01/2015~ -~01297~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~01297~^~326~^0.9^2^^~1~^~A~^^^1^0.9^0.9^1^^^^~06/01/2015~ -~01297~^~328~^0.9^2^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01297~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~421~^33.4^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~430~^0.2^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01298~^~221~^0.0^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~317~^1.3^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~328~^0.0^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~421~^16.0^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~430~^0.2^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01300~^~221~^0.0^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~291~^1.1^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~317~^3.1^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~328~^0.2^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~421~^38.0^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~430~^1.7^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01301~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~291~^1.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~317~^2.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~326~^0.1^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~401~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~421~^11.9^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~291~^0.0^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~313~^3.6^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~317~^1.8^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~326~^0.1^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~401~^13.8^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~421~^20.4^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01303~^~221~^0.0^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~291~^0.0^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~317~^3.2^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~328~^0.0^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~401~^0.0^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~421~^18.7^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~430~^0.6^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01304~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~401~^2.2^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01305~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01305~^~291~^0.0^1^^~8~^^^^^^^^^^^~07/01/2015~ -~01305~^~317~^1.9^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~ -~01305~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2015~ -~01305~^~326~^1.5^2^^~1~^~A~^^^1^1.1^1.9^1^^^^~07/01/2015~ -~01305~^~328~^1.5^2^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~01305~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2016~ -~01305~^~421~^15.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~01305~^~428~^0.2^2^^~1~^~A~^^^1^0.2^0.2^^^^^~07/01/2015~ -~01305~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2015~ -~01305~^~430~^0.1^2^^~1~^~A~^^^1^0.1^0.1^^^^^~07/01/2015~ -~01305~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~01306~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~291~^9.3^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~317~^3.9^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~326~^0.2^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~328~^0.2^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~401~^0.0^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~421~^14.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01307~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~291~^0.8^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~401~^10.7^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01314~^~291~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^~1~^~08/01/2016~ -~01314~^~401~^0.3^2^^~1~^~A~^^^1^0.0^0.6^1^^^~1~^~08/01/2016~ -~01316~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01319~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01319~^~291~^0.8^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01320~^~291~^0.5^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01321~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~317~^9.5^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~01322~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01323~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~02001~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02001~^~291~^21.6^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02001~^~317~^2.7^3^0.4^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02001~^~401~^39.2^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02002~^~291~^14.6^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~317~^5.0^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02002~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02002~^~401~^21.0^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02003~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02003~^~291~^37.7^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02003~^~401~^0.8^3^1.0e-02^~1~^~A~^^^2^0.7^0.8^1^0.6^0.8^~1, 2~^~06/01/2010~ -~02003~^~421~^54.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02003~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~430~^1714.5^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~454~^16.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02004~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~02004~^~291~^26.3^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02004~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1998~ -~02004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02004~^~401~^46.5^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02005~^~291~^38.0^2^^~1~^^^^^^^^^^^~02/01/2002~ -~02005~^~317~^12.1^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02005~^~401~^21.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~421~^24.7^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~02005~^~430~^0.0^0^^~4~^~BFZN~^~02033~^^^^^^^^^~02/01/2003~ -~02006~^~291~^28.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02006~^~401~^21.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02007~^~291~^11.8^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02007~^~317~^12.1^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02007~^~401~^17.1^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~421~^24.7^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~02007~^~430~^0.0^0^^~4~^~BFZN~^~02033~^^^^^^^^^~02/01/2003~ -~02008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02008~^~291~^11.3^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02008~^~317~^29.3^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02008~^~401~^50.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02009~^~291~^34.8^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~317~^20.4^2^^~1~^~A~^^^2^6.0^34.8^1^^^^~06/01/2010~ -~02009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02009~^~401~^0.7^3^7.0e-02^~1~^~A~^^^2^0.4^0.8^1^-0.2^1.5^~1, 2~^~06/01/2010~ -~02009~^~421~^66.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02009~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~430~^105.7^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~454~^2.7^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02010~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02010~^~291~^53.1^9^1.2^~1~^~A~^^^6^48.7^57.0^5^50.0^56.2^~2~^~02/01/2007~ -~02010~^~317~^3.1^2^^~1~^~A~^^^2^1.4^4.8^1^^^^~02/01/2007~ -~02010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02010~^~401~^3.8^3^2.9^~11~^~JO~^^^3^0.7^9.7^2^-8.8^16.4^~1, 4~^~05/01/2007~ -~02010~^~421~^11.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02010~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~430~^31.2^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02010~^~454~^3.9^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02011~^~291~^33.9^2^^~1~^~A~^^^2^33.5^34.2^1^^^^~04/01/2011~ -~02011~^~317~^7.2^2^^~1~^~A~^^^2^3.4^11.0^1^^^^~04/01/2011~ -~02011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02011~^~401~^0.2^3^0.1^~1~^~A~^^^2^0.0^0.8^1^-2.1^2.5^~1, 2~^~04/01/2011~ -~02011~^~421~^37.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02011~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~430~^141.8^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02011~^~454~^1.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02012~^~291~^10.4^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02012~^~317~^29.3^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02012~^~401~^566.7^5^209.7^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~421~^97.1^0^^~4~^~BFZN~^~02029~^^^^^^^^^~12/01/2006~ -~02012~^~430~^1359.5^0^^~4~^~BFZN~^~02029~^^^^^^^^^~02/01/2003~ -~02013~^~291~^41.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02013~^~317~^26.2^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02013~^~401~^21.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02014~^~291~^10.5^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02014~^~317~^5.2^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02014~^~401~^7.7^3^4.7^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~421~^24.7^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~02014~^~430~^5.4^0^^~4~^~BFZN~^~02024~^^^^^^^^^~02/01/2003~ -~02015~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~02015~^~291~^53.2^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~317~^40.3^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02015~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~421~^64.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02015~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~430~^99.8^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~454~^28.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02016~^~291~^21.1^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02016~^~317~^12.1^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02016~^~401~^21.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02017~^~291~^13.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02017~^~401~^50.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02018~^~291~^39.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02018~^~401~^21.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02019~^~291~^24.6^0^^~4~^^^^^^^^^^^~11/01/1994~ -~02019~^~317~^6.3^3^0.9^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02019~^~401~^3.0^10^0.3^~1~^^^^^^^^^^^~01/01/1977~ -~02020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02020~^~291~^9.0^3^1.0^~1~^~A~^^^2^6.8^10.3^1^-4.1^22.1^~2, 3~^~11/01/2008~ -~02020~^~317~^23.9^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02020~^~401~^1.2^2^^~11~^~JO~^^^2^0.7^1.6^1^^^~1~^~11/01/2008~ -~02020~^~421~^67.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02020~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~430~^0.4^2^^~1~^~A~^^^2^0.0^0.7^1^^^~1~^~11/01/2008~ -~02020~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02021~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02021~^~291~^14.1^3^0.9^~1~^~A~^^^3^12.5^15.8^2^9.9^18.2^~2~^~06/01/2010~ -~02021~^~317~^55.8^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02021~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~421~^41.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02021~^~429~^2.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~430~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~454~^3.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02022~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02022~^~291~^20.2^1^^~1~^^^^^^^^^^^~07/01/2002~ -~02022~^~317~^2.7^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~02022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02022~^~401~^21.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02023~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02023~^~291~^40.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~317~^4.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~02023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02023~^~401~^51.4^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~421~^43.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~02023~^~430~^621.7^0^^~4~^~BFZN~^~02027~^^^^^^^^^~02/01/2003~ -~02024~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02024~^~291~^12.2^4^5.4^~11~^~JO~^^^3^5.3^24.3^2^-11.3^35.8^~2~^~11/01/2008~ -~02024~^~317~^208.1^3^74.5^~1~^~A~^^^2^117.1^282.6^1^-739.0^1155.2^~2~^~11/01/2008~ -~02024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02024~^~401~^7.1^2^^~11~^~JO~^^^2^1.8^12.4^1^^^^~11/01/2008~ -~02024~^~421~^122.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02024~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~430~^5.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02024~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02025~^~291~^20.8^2^^~1~^^^^^^^^^^^~07/01/2002~ -~02025~^~317~^1.6^4^0.1^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02025~^~401~^3.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02025~^~421~^8.8^0^^~4~^~BFZN~^~02033~^^^^^^^^^~12/01/2006~ -~02025~^~430~^0.0^0^^~4~^~BFZN~^~02033~^^^^^^^^^~02/01/2003~ -~02026~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02026~^~291~^15.2^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~317~^14.3^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02026~^~401~^23.4^2^^~11~^~JO~^^^2^18.6^28.1^1^^^^~03/01/2009~ -~02026~^~421~^39.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02026~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~430~^4.1^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02027~^~291~^42.5^3^0.7^~1~^~A~^^^2^40.3^44.7^1^32.7^52.2^~2, 3~^~06/01/2009~ -~02027~^~317~^4.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02027~^~401~^2.3^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~421~^32.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02027~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02027~^~430~^621.7^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~454~^9.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02028~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02028~^~291~^34.9^3^3.2^~1~^~A~^^^2^28.8^38.5^1^-6.1^75.9^~2, 3~^~04/01/2010~ -~02028~^~317~^6.3^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02028~^~401~^0.9^2^^~1~^~A~^^^1^0.9^1.0^1^^^^~04/01/2010~ -~02028~^~421~^51.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02028~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02028~^~430~^80.3^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~454~^7.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02029~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02029~^~291~^26.7^4^1.8^~1~^~A~^^^3^23.9^30.4^2^18.7^34.6^~2~^~06/01/2009~ -~02029~^~317~^14.1^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02029~^~401~^125.0^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~421~^97.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02029~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~430~^1359.5^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02029~^~454~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02030~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02030~^~291~^25.3^6^1.6^~1~^~A~^^^3^20.2^33.7^2^18.0^32.4^~2~^~04/01/2010~ -~02030~^~313~^34.2^8^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02030~^~317~^4.9^3^0.1^~1~^~A~^^^2^1.1^8.4^1^3.3^6.3^~2~^~04/01/2010~ -~02030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02030~^~401~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~04/01/2010~ -~02030~^~421~^11.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~02030~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~02030~^~430~^163.7^2^^~1~^~A~^^^1^126.8^200.6^1^^^^~02/01/2003~ -~02030~^~454~^8.9^2^^~1~^~A~^^^1^4.2^13.6^1^^^^~04/01/2006~ -~02031~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02031~^~291~^27.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02031~^~317~^8.8^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02031~^~401~^76.4^40^11.4^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~421~^51.5^0^^~4~^~BFZN~^~02028~^^^^^^^^^~12/01/2006~ -~02031~^~430~^80.3^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~ -~02032~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02032~^~291~^26.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~02032~^~317~^3.1^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02032~^~401~^21.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02033~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~02033~^~291~^19.5^1^^~9~^~MC~^^^^^^^^^^~06/01/2008~ -~02033~^~317~^13.5^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02033~^~401~^1.0^2^^~11~^~JO~^^^2^0.7^1.3^1^^^~1~^~07/01/2008~ -~02033~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~02033~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02034~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02034~^~291~^11.3^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02034~^~317~^7.2^0^^~4~^~RF~^^^^^^^^^^~02/01/1998~ -~02034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02034~^~401~^12.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~421~^30.3^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~02034~^~430~^805.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~02035~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02035~^~291~^14.8^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02035~^~317~^9.3^0^^~4~^~RF~^^^^^^^^^^~02/01/1998~ -~02035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02035~^~401~^23.4^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~421~^20.8^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~02035~^~430~^28.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~02036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~291~^42.6^2^^~1~^^^^^^^^^^^~07/01/2002~ -~02036~^~317~^4.6^0^^~4~^~CAZN~^^^^^^^^^^~10/01/1998~ -~02036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02036~^~401~^61.2^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02037~^~291~^3.9^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02037~^~317~^5.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~02037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02037~^~401~^80.8^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02038~^~291~^40.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02038~^~317~^3.7^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02038~^~401~^32.4^2^^~1~^^^^^^^^^^^~03/01/2002~ -~02038~^~421~^43.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~02038~^~430~^1714.5^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02039~^~291~^45.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02039~^~317~^4.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/1998~ -~02039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02039~^~401~^50.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02041~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02041~^~291~^7.4^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02041~^~317~^4.4^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02041~^~401~^50.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02042~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~02042~^~291~^37.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02042~^~317~^4.6^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~02042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02042~^~401~^50.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02042~^~421~^43.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~02042~^~430~^1714.5^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02043~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02043~^~291~^22.7^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~317~^6.2^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02043~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~421~^49.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~02043~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~430~^13.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~454~^9.7^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~02044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~291~^1.6^3^0.1^~1~^~A~^^^2^1.4^2.0^1^-0.8^4.1^~2~^~12/01/2006~ -~02044~^~317~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02044~^~401~^18.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~421~^11.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~02044~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02044~^~430~^414.8^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02044~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02045~^~291~^2.1^0^^~4~^^^^^^^^^^^~11/01/1994~ -~02045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02045~^~401~^85.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02046~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02046~^~291~^4.0^8^0.5^~1~^~A~^^^2^2.6^6.6^3^2.2^5.7^~2, 3~^~04/01/2014~ -~02046~^~313~^1.5^2^^~1~^~A~^^^1^1.5^1.5^0^^^^~04/01/2006~ -~02046~^~317~^33.5^8^1.3^~1~^~A~^^^2^26.4^39.8^3^29.4^37.5^~2, 3~^~04/01/2014~ -~02046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02046~^~401~^0.3^5^0.0^~1~^~A~^^^2^0.0^0.7^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~421~^22.4^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~02046~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~429~^0.0^5^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~430~^1.4^5^1.8e-02^~1~^~A~^^^2^1.2^1.7^1^1.2^1.6^~2, 3~^~04/01/2014~ -~02046~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~02047~^~221~^0.0^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~313~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~02047~^~317~^0.1^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02047~^~401~^0.0^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02047~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02048~^~221~^0.0^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~291~^0.0^1^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~02048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02048~^~401~^0.0^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02048~^~430~^0.0^0^^~4~^~BFSN~^~02053~^^^^^^^^^~12/01/2002~ -~02049~^~291~^14.0^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02049~^~401~^160.1^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~221~^34.4^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~291~^0.0^0^^~7~^^^^^^^^^^^~01/01/1977~ -~02050~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~02050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02050~^~401~^0.0^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2002~ -~02051~^~221~^32.9^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~291~^0.0^0^^~7~^^^^^^^^^^^~01/01/1977~ -~02051~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02051~^~401~^0.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~02052~^~291~^0.0^0^^~7~^^^^^^^^^^^~01/01/1977~ -~02052~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~02052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02052~^~401~^0.0^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02052~^~430~^0.0^0^^~4~^~BFSN~^~02050~^^^^^^^^^~10/01/2002~ -~02053~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~02053~^~291~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~02053~^~317~^0.5^4^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02053~^~401~^0.0^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02053~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02054~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~02054~^~291~^3.2^4^0.3^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~02054~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02054~^~401~^4.3^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~421~^6.5^0^^~4~^~BFSN~^~02011~^^^^^^^^^~11/01/2006~ -~02054~^~430~^24.6^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~ -~02055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02055~^~291~^3.3^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02055~^~317~^2.8^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~02055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02055~^~401~^24.9^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~02055~^~421~^6.5^0^^~4~^~BFZN~^~11429~^^^^^^^^^~11/01/2006~ -~02055~^~430~^1.3^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~ -~02063~^~291~^14.1^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02063~^~401~^21.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~02064~^~291~^8.0^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02064~^~401~^31.8^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~291~^6.8^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02065~^~401~^13.3^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~291~^29.8^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~02066~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~02066~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02068~^~291~^0.0^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~ -~02068~^~401~^0.5^1^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~02069~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~ -~02074~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~291~^13.3^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~291~^10.8^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~401~^5.9^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~03000~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~291~^8.3^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~317~^14.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~401~^39.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~421~^22.5^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~430~^8.7^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~454~^6.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03001~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~317~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~401~^8.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03001~^~421~^9.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03002~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03002~^~317~^2.9^2^^~1~^~A~^^^1^2.2^3.5^1^^^~1~^~03/01/2007~ -~03002~^~328~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~03002~^~401~^2.1^24^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03002~^~421~^37.6^11^1.0^~1~^~AS~^^^^32.8^43.5^^^^^~07/01/2007~ -~03002~^~428~^1.0^2^^~1~^~A~^^^1^0.6^1.5^1^^^^~03/01/2007~ -~03002~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2007~ -~03002~^~430~^0.6^2^^~1~^~A~^^^1^0.0^1.1^1^^^~1~^~03/01/2007~ -~03002~^~454~^3.1^11^0.1^~1~^~A~^^^^2.5^3.8^^^^^~07/01/2007~ -~03003~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03003~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03003~^~313~^2.1^3^0.9^~1~^~A~^^^1^0.2^3.4^2^-2.0^6.2^~4~^~08/01/2004~ -~03003~^~317~^2.9^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~328~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~03003~^~401~^2.1^24^0.1^~1~^^^^^^^^^^^~03/01/2007~ -~03003~^~421~^37.6^11^1.0^~1~^~AS~^^^1^32.8^43.5^10^35.2^40.0^~2, 3~^~03/01/2007~ -~03003~^~428~^1.0^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~429~^0.0^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~430~^0.6^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~454~^3.1^11^0.1^~1~^~A~^^^1^2.5^3.8^10^2.8^3.4^~2, 3~^~03/01/2007~ -~03005~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03005~^~313~^1.3^2^^~1~^~A~^^^1^1.0^1.6^1^^^^~03/01/2007~ -~03005~^~317~^3.5^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~328~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~03005~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03005~^~421~^49.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03005~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~454~^6.9^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03007~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03007~^~317~^12.9^3^1.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03007~^~401~^1.8^10^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03008~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03008~^~317~^14.2^6^0.8^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03008~^~326~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03008~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03008~^~401~^2.1^20^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~421~^45.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03008~^~430~^0.0^0^^~4~^~BFSN~^~10011~^^^^^^^^^~02/01/2003~ -~03009~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~03009~^~291~^0.0^0^^~4~^^^^^^^^^^^~03/01/2007~ -~03009~^~313~^3.2^2^^~1~^~A~^^^1^1.1^5.4^1^^^^~03/01/2007~ -~03009~^~317~^15.0^4^1.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03009~^~326~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03009~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03009~^~401~^2.1^4^0.2^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~421~^45.2^0^^~4~^~T~^^^^^^^^^^~03/01/2007~ -~03009~^~430~^0.0^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03010~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2007~ -~03010~^~291~^0.0^0^^~4~^^^^^^^^^^^~07/01/2007~ -~03010~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03010~^~328~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03010~^~401~^1.2^23^0.1^~1~^^^^^^^^^^^~03/01/2007~ -~03010~^~421~^54.7^7^2.7^~1~^~AS~^^^^43.9^65.7^^^^^~07/01/2007~ -~03010~^~428~^5.3^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~454~^6.6^7^0.5^~1~^~A~^^^^4.7^8.6^^^^^~07/01/2007~ -~03011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03011~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03011~^~313~^9.8^2^^~1~^~A~^^^1^5.3^14.3^1^^^^~01/01/2007~ -~03011~^~317~^7.0^3^0.6^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03011~^~328~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03011~^~401~^1.7^21^0.4^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~421~^54.7^7^2.7^~1~^~AS~^^^1^43.9^65.7^6^47.9^61.5^~2, 3~^~01/01/2007~ -~03011~^~454~^6.6^7^0.5^~1~^~A~^^^1^4.7^8.6^6^5.2^8.0^~2, 3~^~01/01/2007~ -~03012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03012~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03012~^~317~^11.0^6^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03012~^~326~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03012~^~328~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03012~^~401~^1.7^27^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~421~^43.2^11^1.8^~1~^~AS~^^^1^28.7^49.1^10^39.0^47.4^~2, 3~^~02/01/2007~ -~03012~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~454~^11.6^11^0.4^~1~^~A~^^^1^8.3^12.9^10^10.6^12.5^~2, 3~^~02/01/2007~ -~03013~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03013~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03013~^~317~^10.3^6^0.8^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03013~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03013~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03013~^~401~^1.5^19^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~421~^43.2^11^1.8^~1~^~AS~^^^1^28.7^49.1^10^39.0^47.4^~2, 3~^~01/01/2007~ -~03013~^~430~^1.7^0^^~4~^~BFSN~^~05014~^^^^^^^^^~02/01/2003~ -~03013~^~454~^11.6^11^0.4^~1~^~A~^^^1^8.3^12.9^10^10.6^12.5^~2, 3~^~01/01/2007~ -~03014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03014~^~291~^0.2^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~317~^10.3^3^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03014~^~326~^0.1^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03014~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03014~^~401~^1.7^6^0.0^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~421~^43.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~03014~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03015~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03015~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03015~^~317~^12.0^3^2.4^~1~^~A~^^^1^9.3^16.8^2^1.5^22.3^~2, 3~^~03/01/2007~ -~03015~^~328~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~03015~^~401~^2.2^19^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~421~^39.8^3^1.9^~1~^~AS~^^^1^37.0^43.5^2^31.4^48.1^~2, 3~^~03/01/2007~ -~03015~^~428~^18.7^3^2.2^~1~^~A~^^^1^16.0^23.2^2^9.0^28.4^~2, 3~^~03/01/2007~ -~03015~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~454~^4.7^3^0.5^~1~^~A~^^^1^3.9^5.7^2^2.4^7.0^~2, 3~^~03/01/2007~ -~03016~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03016~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03016~^~313~^43.6^2^^~1~^~A~^^^1^21.3^65.8^1^^^^~01/01/2007~ -~03016~^~317~^12.0^3^2.4^~1~^~A~^^^1^9.3^16.8^2^1.5^22.3^~2, 3~^~03/01/2007~ -~03016~^~328~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~03016~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03016~^~421~^39.8^3^1.9^~1~^~AS~^^^1^37.0^43.5^2^31.4^48.1^~2, 3~^~03/01/2007~ -~03016~^~428~^18.7^3^2.2^~1~^~A~^^^1^16.0^23.2^2^9.0^28.4^~2, 3~^~03/01/2007~ -~03016~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~454~^4.7^3^0.5^~1~^~A~^^^1^3.9^5.7^2^2.4^7.0^~2, 3~^~03/01/2007~ -~03017~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03017~^~291~^0.2^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03017~^~317~^13.5^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~328~^0.4^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~03017~^~401~^1.5^4^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~421~^53.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~03017~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~454~^3.7^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03019~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~291~^2.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03019~^~317~^1.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~401~^179.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~421~^14.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~430~^2.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03021~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03021~^~291~^0.2^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~317~^13.3^3^0.5^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03021~^~326~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03021~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~03021~^~401~^2.4^12^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~421~^56.8^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03021~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03022~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~291~^1.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~401~^2732.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~421~^3.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~291~^3.8^3^0.3^~1~^~A~^^^1^3.2^4.4^2^2.2^5.2^~2, 3~^~02/01/2015~ -~03023~^~317~^6.2^3^0.2^~1~^~A~^^^1^5.8^6.7^2^5.0^7.3^~2, 3~^~02/01/2015~ -~03023~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~401~^1.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~421~^11.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~430~^1.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~454~^39.7^0^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~03024~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~313~^40.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~291~^2.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03025~^~313~^9.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~401~^23.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~421~^4.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~430~^5.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~454~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~291~^1.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~313~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~317~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~401~^15.9^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~421~^3.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~430~^0.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03041~^~317~^2.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03041~^~401~^0.8^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~317~^2.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03042~^~401~^0.8^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~317~^8.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03043~^~401~^1.9^3^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~03044~^~291~^1.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~317~^8.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03044~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03044~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03044~^~401~^0.3^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~421~^10.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03044~^~430~^29.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03045~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03045~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03045~^~317~^8.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03045~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03045~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03045~^~401~^1.5^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~421~^10.4^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~03045~^~430~^6.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03046~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~03046~^~291~^0.1^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~317~^13.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03046~^~328~^0.0^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~03046~^~401~^0.1^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~421~^8.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~03046~^~430~^9.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03047~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03047~^~291~^1.3^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~317~^3.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03047~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03047~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03047~^~401~^0.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~421~^8.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03047~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03048~^~221~^0.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~291~^0.5^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~313~^68.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~317~^6.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03048~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~03048~^~401~^0.0^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~421~^3.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03048~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~454~^18.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03049~^~317~^8.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03049~^~401~^3.9^9^0.5^~1~^^^^^^^^^^^~12/01/1978~ -~03050~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03050~^~291~^1.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~313~^2.0^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~03050~^~317~^8.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03050~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03050~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03050~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~421~^7.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03050~^~430~^0.8^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03051~^~317~^8.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03051~^~401~^4.1^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03053~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03053~^~291~^1.3^2^^~1~^~A~^^^1^1.2^1.4^1^^^^~04/01/2007~ -~03053~^~317~^2.2^2^^~1~^~A~^^^1^2.2^2.2^^^^~1~^~04/01/2007~ -~03053~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03053~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03053~^~421~^16.5^3^2.5^~1~^~AS~^^^1^11.8^20.5^2^5.5^27.4^~2, 3~^~04/01/2007~ -~03053~^~428~^0.4^2^^~1~^~A~^^^1^0.2^0.7^1^^^^~04/01/2007~ -~03053~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2007~ -~03053~^~430~^5.2^2^^~1~^~A~^^^1^5.0^5.4^1^^^^~04/01/2007~ -~03053~^~454~^1.1^3^0.2^~1~^~A~^^^1^0.7^1.5^2^-2.3e-02^2.1^~2, 3~^~04/01/2007~ -~03054~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~291~^1.3^2^^~1~^~A~^^^1^1.2^1.4^1^^^^~03/01/2007~ -~03054~^~313~^21.5^4^11.3^~1~^~A~^^^1^1.9^44.6^3^-14.6^57.5^~4~^~08/01/2004~ -~03054~^~317~^2.2^2^^~1~^~A~^^^1^2.2^2.2^^^^~1~^~03/01/2007~ -~03054~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03054~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03054~^~421~^16.5^3^2.5^~1~^~AS~^^^1^11.8^20.5^2^5.5^27.4^~2, 3~^~03/01/2007~ -~03054~^~428~^0.4^2^^~1~^~A~^^^1^0.2^0.7^1^^^^~03/01/2007~ -~03054~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03054~^~430~^5.2^2^^~1~^~A~^^^1^5.0^5.4^1^^^^~03/01/2007~ -~03054~^~454~^1.1^3^0.2^~1~^~A~^^^1^0.7^1.5^2^-2.3e-02^2.1^~2, 3~^~03/01/2007~ -~03055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~03055~^~291~^1.8^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~317~^2.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03055~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03055~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~421~^9.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03055~^~430~^11.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03067~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03067~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03067~^~317~^2.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03067~^~401~^1.7^22^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03068~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03068~^~291~^1.7^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~317~^3.0^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03068~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03068~^~401~^0.1^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~421~^10.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03068~^~430~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03069~^~291~^1.7^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~313~^29.0^5^9.8^~1~^~A~^^^1^10.8^42.4^3^-2.8^43.9^~4~^~06/01/2006~ -~03069~^~317~^3.0^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03069~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~03069~^~401~^0.1^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~421~^7.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03069~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03070~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03070~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~317~^1.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03070~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03070~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~03070~^~401~^1.0^3^0.0^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~421~^6.4^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03070~^~430~^6.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1986~ -~03072~^~291~^0.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03072~^~317~^5.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03072~^~326~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03072~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~03072~^~401~^1.9^6^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~421~^20.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03072~^~430~^3.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03073~^~291~^2.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~317~^2.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03073~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03073~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03073~^~401~^0.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~421~^9.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03073~^~430~^3.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03075~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03075~^~317~^3.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03075~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03076~^~317~^3.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03076~^~401~^0.8^3^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03077~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~291~^1.5^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~317~^6.4^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03077~^~401~^2.9^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~421~^6.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03077~^~430~^2.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03079~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03079~^~317~^2.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03079~^~401~^0.8^4^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03081~^~317~^2.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03081~^~401~^0.8^4^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03082~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03082~^~291~^0.9^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~317~^3.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03082~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03082~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03082~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~421~^6.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03082~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03083~^~291~^1.0^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~313~^20.0^4^8.7^~1~^~A~^^^1^8.9^12.9^2^6.0^16.0^~4~^~06/01/2006~ -~03083~^~317~^3.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03083~^~326~^0.0^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03083~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03083~^~401~^0.3^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~421~^7.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03083~^~430~^3.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03084~^~291~^1.5^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~317~^1.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03084~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03084~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03084~^~401~^0.7^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~421~^6.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03084~^~430~^3.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03085~^~291~^0.9^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~313~^8.0^3^2.6^~1~^~A~^^^1^4.7^12.9^2^-3.3^18.8^~4~^~06/01/2006~ -~03085~^~317~^1.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03085~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03085~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03085~^~401~^0.4^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~421~^9.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03085~^~430~^4.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03089~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03089~^~291~^0.7^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~313~^65.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~317~^3.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03089~^~328~^0.0^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~03089~^~401~^0.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~421~^10.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~454~^3.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03090~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03090~^~291~^0.3^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03090~^~313~^6.0^2^^~1~^~A~^^^1^5.4^7.1^1^^^^~06/01/2006~ -~03090~^~317~^3.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03090~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03090~^~401~^1.3^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~421~^3.2^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03090~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03091~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03091~^~291~^2.2^2^^~1~^~A~^^^1^1.8^2.5^1^^^^~04/01/2007~ -~03091~^~313~^16.0^2^^~1~^~A~^^^^14.9^16.3^^^^^~04/01/2007~ -~03091~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~04/01/2007~ -~03091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03091~^~401~^0.3^2^^~1~^~A~^^^1^0.3^0.3^^^^~1~^~04/01/2007~ -~03091~^~421~^22.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03091~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2007~ -~03091~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2007~ -~03091~^~430~^42.4^2^^~1~^~A~^^^1^39.2^45.5^1^^^^~04/01/2007~ -~03091~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~04/01/2007~ -~03092~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03092~^~291~^1.9^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03092~^~313~^12.0^5^3.1^~1~^~A~^^^1^3.8^11.5^2^-2.1^17.0^~4~^~06/01/2006~ -~03092~^~317~^0.3^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03092~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03092~^~401~^8.4^13^0.5^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~421~^22.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03092~^~430~^11.1^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03093~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~03093~^~291~^1.3^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03093~^~401~^1.7^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~421~^22.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03093~^~430~^11.0^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03096~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~291~^1.4^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~03096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03096~^~401~^1.1^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~421~^10.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~03096~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03098~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03098~^~291~^1.9^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03098~^~317~^0.1^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03098~^~401~^2.4^10^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~421~^4.8^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03098~^~430~^0.2^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03099~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03099~^~291~^1.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03099~^~313~^1.0^2^^~1~^~A~^^^1^0.7^0.9^1^^^^~06/01/2006~ -~03099~^~317~^0.2^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03099~^~401~^5.7^33^0.3^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~421~^6.9^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03099~^~430~^14.4^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03100~^~291~^1.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03100~^~313~^12.0^5^^~1~^~A~^^^1^0.8^35.0^4^-7.5^30.7^~4~^~06/01/2006~ -~03100~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03100~^~401~^5.5^24^0.3^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~421~^8.0^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03100~^~430~^12.5^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~ -~03104~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03104~^~291~^0.9^2^^~1~^~A~^^^1^0.7^1.0^1^^^~1~^~03/01/2007~ -~03104~^~313~^0.7^2^^~1~^~A~^^^1^0.5^0.9^1^^^^~03/01/2007~ -~03104~^~317~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~03/01/2007~ -~03104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03104~^~401~^0.3^2^^~1~^~A~^^^1^0.3^0.3^^^^~1~^~03/01/2007~ -~03104~^~421~^7.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03104~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03104~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03104~^~430~^4.7^2^^~1~^~A~^^^1^4.7^4.8^1^^^^~03/01/2007~ -~03104~^~454~^0.3^2^^~1~^~A~^^^1^0.2^0.5^1^^^^~03/01/2007~ -~03105~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03105~^~291~^0.9^2^^~1~^~A~^^^1^0.7^1.0^1^^^~1~^~03/01/2007~ -~03105~^~313~^1.0^2^^~1~^~A~^^^^0.5^0.9^^^^^~03/01/2007~ -~03105~^~317~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~03/01/2007~ -~03105~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03105~^~401~^0.3^2^^~1~^~A~^^^1^0.3^0.3^^^^~1~^~03/01/2007~ -~03105~^~421~^7.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03105~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03105~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03105~^~430~^4.7^2^^~1~^~A~^^^1^4.7^4.8^1^^^^~03/01/2007~ -~03105~^~454~^0.3^2^^~1~^~A~^^^1^0.2^0.5^1^^^^~03/01/2007~ -~03108~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03108~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03108~^~313~^1.0^2^^~1~^~A~^^^1^1.3^1.3^1^^^^~06/01/2006~ -~03108~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03108~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03108~^~401~^9.9^22^0.7^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~421~^13.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03108~^~430~^1.4^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03109~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03109~^~313~^10.0^5^4.0^~1~^~A~^^^1^1.0^22.0^2^-13.9^38.6^~4~^~06/01/2006~ -~03109~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03109~^~401~^9.6^14^0.8^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~421~^13.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03109~^~430~^1.5^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1995~ -~03112~^~291~^0.9^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03112~^~401~^10.5^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~421~^13.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03112~^~430~^0.2^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03113~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~291~^7.0^3^0.9^~1~^~A~^^^1^5.0^8.1^2^2.7^11.1^~2, 3~^~01/01/2016~ -~03113~^~317~^22.5^3^2.2^~1~^~A~^^^1^18.0^25.3^2^12.7^32.3^~2, 3~^~01/01/2016~ -~03113~^~328~^12.7^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~401~^0.0^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~421~^26.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~03113~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~430~^1.3^3^9.3e-02^~1~^~A~^^^1^1.1^1.5^2^0.8^1.6^~2, 3~^~01/01/2016~ -~03113~^~454~^22.0^1^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~03114~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~291~^2.0^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03114~^~401~^4.9^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~421~^12.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03114~^~430~^2.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03115~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03115~^~291~^1.9^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03115~^~401~^64.5^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~421~^3.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03115~^~430~^0.6^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03116~^~291~^1.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03116~^~313~^1.0^2^^~1~^~A~^^^1^0.6^0.8^1^^^^~06/01/2006~ -~03116~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03116~^~401~^38.3^36^1.3^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~421~^3.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03116~^~430~^0.5^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03117~^~291~^1.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03117~^~313~^2.4^3^1.4^~1~^~A~^^^1^1.0^5.1^2^-3.4^8.2^~4~^~06/01/2006~ -~03117~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03117~^~401~^37.8^35^1.3^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~421~^3.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03117~^~430~^0.3^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03118~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03118~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03118~^~317~^0.3^1^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~03118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03118~^~401~^21.6^11^1.8^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~421~^1.3^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03118~^~430~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03119~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03119~^~291~^2.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03119~^~317~^1.3^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03119~^~401~^2.1^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~421~^8.6^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03119~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03120~^~291~^2.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03120~^~313~^32.0^2^^~1~^~A~^^^1^31.8^31.9^1^^^^~06/01/2006~ -~03120~^~317~^1.3^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03120~^~401~^2.2^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~421~^8.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03120~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03121~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03121~^~291~^2.0^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~313~^22.8^6^2.4^~1~^~A~^^^2^18.0^25.5^2^12.3^33.2^~4~^~03/01/2007~ -~03121~^~317~^0.1^20^2.6e-02^~1~^~A~^^^2^0.1^0.2^2^7.0e-03^0.2^~4~^~03/01/2007~ -~03121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03121~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~421~^32.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03121~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~430~^15.5^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03122~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03122~^~291~^3.9^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~313~^18.0^2^^~1~^~A~^^^1^15.1^20.8^1^^^^~08/01/2004~ -~03122~^~317~^0.1^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03122~^~401~^6.0^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~421~^14.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03122~^~430~^18.0^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03127~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03127~^~291~^1.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03127~^~317~^2.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03127~^~401~^8.7^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~421~^16.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~03127~^~430~^196.7^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03128~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03128~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03128~^~313~^0.0^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~03128~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03128~^~401~^17.9^23^1.4^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~421~^1.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03128~^~430~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03129~^~291~^1.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03129~^~313~^36.2^2^^~1~^~A~^^^1^32.7^39.7^1^^^^~08/01/2004~ -~03129~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03129~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03129~^~401~^16.7^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03129~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03130~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03130~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.3^1^^^^~03/01/2007~ -~03130~^~313~^0.0^2^^~1~^~A~^^^^0.3^0.5^^^^^~03/01/2007~ -~03130~^~317~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^^~03/01/2007~ -~03130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03130~^~401~^46.1^2^^~1~^~A~^^^1^32.0^60.2^1^^^^~03/01/2007~ -~03130~^~421~^8.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~03130~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~03130~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~03130~^~430~^6.6^2^^~1~^~A~^^^1^5.1^8.1^1^^^^~03/01/2007~ -~03130~^~454~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~03/01/2007~ -~03131~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03131~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.3^1^^^^~04/01/2007~ -~03131~^~313~^0.0^2^^~1~^~A~^^^^0.3^0.5^^^^^~04/01/2007~ -~03131~^~317~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^^~04/01/2007~ -~03131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03131~^~401~^46.1^2^^~1~^~A~^^^1^32.0^60.2^1^^^^~04/01/2007~ -~03131~^~421~^8.5^1^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~03131~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2007~ -~03131~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2007~ -~03131~^~430~^6.6^2^^~1~^~A~^^^1^5.1^8.1^1^^^^~04/01/2007~ -~03131~^~454~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~04/01/2007~ -~03132~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03132~^~291~^2.8^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03132~^~313~^1.0^2^^~1~^~A~^^^1^1.0^1.4^1^^^^~06/01/2006~ -~03132~^~317~^0.4^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03132~^~401~^24.5^14^1.3^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~421~^3.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03132~^~430~^3.2^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03133~^~291~^2.8^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03133~^~313~^9.0^4^4.7^~1~^~A~^^^1^0.1^16.7^2^-17.2^29.1^~4~^~06/01/2006~ -~03133~^~317~^0.4^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03133~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03133~^~401~^22.0^23^1.4^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~421~^2.3^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03133~^~430~^3.4^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03134~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03134~^~291~^1.2^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03134~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03134~^~401~^1.1^6^0.6^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~421~^1.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03134~^~430~^3.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03135~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03135~^~291~^1.2^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03135~^~313~^34.4^2^^~1~^~A~^^^1^19.9^48.9^1^^^^~09/01/2004~ -~03135~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03135~^~401~^0.8^6^0.3^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~421~^1.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03135~^~430~^3.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03136~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03136~^~291~^2.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03136~^~317~^0.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03136~^~401~^0.8^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~421~^1.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03136~^~430~^15.6^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03137~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03137~^~291~^2.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03137~^~317~^0.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03137~^~401~^0.8^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~430~^15.8^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03139~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~03139~^~291~^2.7^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~313~^2.0^2^^~1~^~A~^^^1^1.8^2.3^1^^^^~09/01/2004~ -~03139~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03139~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03139~^~401~^1.3^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~421~^3.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03139~^~430~^22.1^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03140~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~291~^1.1^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~313~^12.0^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~03140~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03140~^~401~^15.8^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~421~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03140~^~430~^2.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03141~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~03141~^~291~^1.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03141~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03141~^~401~^31.3^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~421~^3.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03141~^~430~^4.0^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03142~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03142~^~291~^1.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03142~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03142~^~401~^18.9^11^1.9^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~421~^3.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03142~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03143~^~291~^1.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03143~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03143~^~401~^17.9^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~421~^3.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03143~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03144~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03144~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03144~^~401~^42.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~421~^4.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03144~^~430~^2.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03145~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03145~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03145~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03145~^~401~^42.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~421~^4.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03145~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~03147~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03147~^~291~^1.6^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03147~^~401~^17.3^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~421~^4.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03147~^~430~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03150~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03150~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03150~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03150~^~401~^28.1^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03151~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03151~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03151~^~401~^26.8^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03152~^~291~^2.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03152~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03152~^~401~^26.8^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03152~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03153~^~291~^2.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03153~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03153~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03153~^~401~^28.9^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03153~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03154~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~291~^1.4^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03154~^~401~^6.4^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~421~^4.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03154~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03156~^~291~^1.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03156~^~313~^16.0^2^^~1~^~A~^^^1^1.8^29.4^1^^^^~06/01/2006~ -~03156~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03156~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03156~^~401~^21.2^14^1.4^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~421~^6.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03156~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03157~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03157~^~291~^1.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03157~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03157~^~401~^19.2^30^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~421~^6.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03157~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03158~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03158~^~291~^2.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03158~^~313~^1.3^2^^~1~^~A~^^^1^1.0^1.5^1^^^^~09/01/2004~ -~03158~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03158~^~401~^27.5^12^1.7^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~421~^3.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03158~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03159~^~291~^2.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03159~^~313~^1.0^2^^~1~^~A~^^^1^1.0^1.5^1^^^^~06/01/2006~ -~03159~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03159~^~401~^16.8^12^1.6^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~421~^3.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03159~^~430~^3.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03160~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03160~^~401~^80.9^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03161~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03161~^~291~^0.8^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03161~^~401~^31.3^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03161~^~421~^8.5^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03161~^~430~^2.9^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03162~^~291~^1.4^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03162~^~401~^113.1^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03163~^~291~^1.4^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03163~^~401~^13.9^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~421~^7.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03163~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03163~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03164~^~291~^1.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03164~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03164~^~401~^27.8^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~421~^3.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03164~^~430~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03165~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03165~^~291~^1.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~313~^1.0^2^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~03165~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03165~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03165~^~401~^13.9^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~421~^3.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03165~^~430~^8.8^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03166~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03166~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03166~^~313~^12.0^6^2.9^~1~^~A~^^^1^3.8^68.6^5^-7.1^54.7^~4~^~06/01/2006~ -~03166~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03166~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03166~^~401~^57.9^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~421~^1.8^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~03166~^~430~^0.0^0^^~4~^~BFSN~^~09016~^^^^^^^^^~03/01/2003~ -~03167~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1994~ -~03167~^~291~^0.2^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03167~^~401~^27.9^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~421~^2.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03167~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03168~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03168~^~313~^19.0^8^9.4^~4~^~NR~^^^^^^^^^^~06/01/2006~ -~03168~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03168~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03168~^~401~^58.5^6^2.0^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~421~^2.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03168~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03171~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~313~^13.0^2^^~1~^~A~^^^1^12.0^14.0^1^^^^~09/01/2004~ -~03171~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03171~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03171~^~401~^67.5^3^3.9^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~421~^1.8^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03171~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03172~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03172~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03172~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03172~^~401~^62.5^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~421~^6.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03172~^~430~^0.1^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03173~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03173~^~401~^76.9^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03174~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03174~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03174~^~401~^32.1^6^8.3^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03174~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03175~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03175~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03175~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03175~^~401~^85.9^4^5.9^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03176~^~401~^34.0^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03177~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03177~^~401~^53.4^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03178~^~401~^63.8^5^5.6^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03179~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03179~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03179~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03179~^~401~^63.6^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03179~^~430~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03181~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03181~^~291~^6.6^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~317~^30.2^3^4.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03181~^~328~^7.1^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03181~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~421~^45.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03181~^~430~^2.3^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~ -~03184~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~03184~^~291~^6.7^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~317~^64.7^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03184~^~401~^58.3^0^^~5~^~ML~^^^^^^^^^^~01/01/1999~ -~03184~^~421~^42.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03184~^~430~^8.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03185~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03185~^~291~^6.7^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~317~^25.9^4^3.5^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03185~^~401~^58.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~421~^23.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03185~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03186~^~291~^7.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03186~^~317~^20.0^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03186~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03186~^~401~^3.6^5^0.5^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~421~^28.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03186~^~430~^3.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03187~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03187~^~291~^1.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~313~^1.1^3^0.1^~1~^~A~^^^1^1.0^1.3^2^0.6^1.5^~4~^~09/01/2004~ -~03187~^~317~^2.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03187~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03187~^~401~^15.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03187~^~430~^0.3^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03188~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03188~^~291~^1.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~313~^1.0^3^0.1^~1~^~A~^^^^^^^^^^~06/01/2006~ -~03188~^~317~^2.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03188~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03188~^~401~^15.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03188~^~430~^0.3^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03189~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03189~^~291~^7.3^5^0.7^~1~^~A~^^^1^5.0^8.7^2^3.8^10.6^~2, 3~^~04/01/2015~ -~03189~^~317~^23.4^8^2.0^~1~^~A~^^^1^18.0^46.2^3^16.5^30.2^~2, 3~^~04/01/2016~ -~03189~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~03189~^~326~^12.7^2^^~1~^~A~^^^1^12.7^12.8^1^^^^~04/01/2015~ -~03189~^~328~^12.7^2^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03189~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03189~^~421~^27.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~03189~^~428~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~429~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~430~^1.4^6^7.6e-02^~1~^~A~^^^1^1.1^2.3^2^1.0^1.7^~2, 3~^~04/01/2015~ -~03189~^~454~^21.4^2^^~1~^~A~^^^1^17.3^22.0^^^^^~04/01/2016~ -~03190~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03190~^~291~^5.2^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~317~^20.5^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03190~^~401~^58.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~421~^28.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03190~^~430~^3.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03191~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03191~^~291~^0.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03191~^~401~^13.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03191~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03192~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03192~^~291~^0.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~313~^8.1^2^^~1~^~A~^^^1^2.0^14.1^1^^^^~08/01/2004~ -~03192~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03192~^~401~^13.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03192~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03193~^~317~^36.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03193~^~401~^0.0^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03194~^~291~^1.3^6^8.4e-02^~1~^~A~^^^1^1.1^3.2^2^1.0^1.6^~2, 3~^~04/01/2015~ -~03194~^~317~^5.0^9^0.1^~1~^~A~^^^1^2.2^8.9^2^4.5^5.5^~1, 2, 3~^~04/01/2015~ -~03194~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~03194~^~326~^8.5^2^^~1~^~A~^^^1^8.5^8.6^1^^^^~04/01/2015~ -~03194~^~328~^8.5^2^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~401~^2.4^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~421~^18.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03194~^~428~^0.0^7^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~429~^0.0^7^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~430~^0.5^7^1.4e-02^~1~^~A~^^^1^0.1^1.0^2^0.4^0.5^~2, 3~^~04/01/2015~ -~03195~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03195~^~291~^1.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03195~^~313~^16.1^2^^~1~^~A~^^^1^1.7^30.5^1^^^^~09/01/2004~ -~03195~^~317~^2.1^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03195~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03195~^~401~^31.6^19^1.0^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~421~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03195~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03197~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03197~^~291~^0.9^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03197~^~401~^0.7^7^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03198~^~291~^0.9^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03198~^~401~^0.7^7^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~401~^0.8^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03201~^~291~^0.9^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~401~^0.9^15^0.0^~1~^^^^^^^^^^^~12/01/1978~ -~03205~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03205~^~291~^7.8^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~317~^20.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03205~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03205~^~401~^2.7^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~421~^31.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03205~^~430~^7.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~03206~^~291~^3.4^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~317~^20.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~03206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03206~^~401~^1.5^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~421~^12.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03206~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03209~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03209~^~291~^4.0^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~313~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~317~^13.7^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03209~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~401~^50.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03209~^~421~^10.4^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~430~^7.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03211~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03211~^~291~^7.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03211~^~317~^28.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03211~^~401~^3.1^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03212~^~291~^1.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03212~^~317~^11.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~03212~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03212~^~401~^2.0^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~421~^25.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03212~^~430~^3.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03213~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~03213~^~291~^0.2^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03213~^~317~^17.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03213~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03213~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03213~^~401~^7.0^4^0.0^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~421~^28.3^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~03213~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03214~^~291~^0.2^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03214~^~317~^17.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03214~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~401~^5.5^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03215~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03215~^~291~^2.3^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03215~^~317~^7.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03215~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03215~^~401~^3.8^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~421~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03215~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03216~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03216~^~291~^5.9^3^0.2^~1~^~A~^^^1^5.6^6.3^2^5.0^6.8^~2, 3~^~01/01/2017~ -~03216~^~313~^2.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03216~^~317~^5.3^3^0.3^~1~^~A~^^^1^4.6^5.9^2^3.6^7.0^~2, 3~^~01/01/2017~ -~03216~^~328~^0.5^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~03216~^~401~^9.1^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03216~^~421~^33.8^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03216~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~430~^14.2^3^0.5^~1~^~A~^^^1^13.5^15.3^2^11.8^16.5^~2, 3~^~01/01/2017~ -~03217~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03217~^~291~^2.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03217~^~313~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~317~^28.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03217~^~401~^5.3^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~421~^10.7^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03220~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03220~^~291~^1.4^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03220~^~317~^0.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03220~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03220~^~401~^21.4^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~421~^2.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03220~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03221~^~291~^1.4^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~313~^2.0^3^0.3^~1~^~A~^^^1^1.0^2.0^2^0.2^2.8^~4~^~06/01/2006~ -~03221~^~317~^0.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03221~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03221~^~401~^18.0^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~421~^2.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03221~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03222~^~291~^0.2^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~317~^0.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03222~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03222~^~401~^9.3^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~421~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03222~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03224~^~291~^0.3^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03224~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03224~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03224~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03224~^~401~^1.1^6^0.0^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~421~^4.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03224~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03225~^~291~^0.3^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03225~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03225~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03225~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03225~^~401~^1.1^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~421~^4.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03225~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03226~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03226~^~291~^0.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03226~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03226~^~401~^9.1^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03227~^~291~^0.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03227~^~317~^1.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03227~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03227~^~401~^20.5^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~421~^1.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03227~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03228~^~291~^0.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03228~^~313~^8.0^4^6.4^~1~^~A~^^^1^1.6^27.7^2^-26.7^47.5^~4~^~06/01/2006~ -~03228~^~317~^1.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03228~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03228~^~401~^20.5^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~421~^1.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03228~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03229~^~401~^31.4^13^1.6^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~401~^26.0^13^2.7^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03233~^~291~^0.7^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03233~^~317~^1.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03233~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03233~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03233~^~401~^27.2^16^0.9^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~421~^5.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03233~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03235~^~291~^0.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03235~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03235~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03235~^~401~^2.5^29^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~421~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03235~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03236~^~291~^0.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03236~^~313~^18.0^5^9.7^~1~^~A~^^^1^2.0^44.6^4^-9.1^44.7^~4~^~06/01/2006~ -~03236~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03236~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03236~^~401~^3.0^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~421~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03236~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03238~^~317~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03238~^~401~^18.8^13^2.9^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03245~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03245~^~317~^2.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03245~^~326~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03245~^~328~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03245~^~401~^0.8^33^0.0^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~421~^29.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03245~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03246~^~291~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~313~^4.0^2^^~1~^~A~^^^1^4.0^4.4^1^^^^~06/01/2006~ -~03246~^~317~^2.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03246~^~326~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03246~^~328~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03246~^~401~^0.4^0^^~4~^~FLM~^^^^^^^^^^~05/01/1997~ -~03246~^~421~^29.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03246~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03265~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03265~^~291~^0.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03265~^~313~^45.0^4^13.1^~1~^~A~^^^1^29.5^83.3^2^-19.9^121.8^~4~^~06/01/2006~ -~03265~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03265~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03265~^~401~^31.5^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03265~^~421~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03265~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03267~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~291~^0.4^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~317~^0.1^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03267~^~401~^21.2^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~421~^2.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03267~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~03269~^~291~^0.4^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~317~^0.1^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03269~^~401~^21.2^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~421~^1.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03269~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~03274~^~291~^1.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~317~^2.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03274~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03274~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03274~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~421~^9.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03274~^~430~^2.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03278~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03278~^~401~^2.8^13^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03279~^~291~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03279~^~313~^27.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~401~^3.3^13^0.6^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~421~^7.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~430~^5.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03280~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03280~^~291~^1.6^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03280~^~313~^36.0^2^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~03280~^~317~^0.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03280~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03280~^~401~^25.7^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~421~^3.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03280~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03282~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03282~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03282~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03282~^~401~^2.5^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~421~^9.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03282~^~430~^7.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03283~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03283~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~03283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03283~^~401~^5.7^18^0.2^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~421~^13.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03283~^~430~^24.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03286~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03286~^~291~^1.5^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03286~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~03286~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03286~^~401~^1.7^8^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~421~^9.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03286~^~430~^7.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03287~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03287~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03287~^~317~^5.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03287~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03287~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03287~^~401~^1.4^19^0.1^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~421~^12.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03287~^~430~^4.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03289~^~291~^1.8^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~317~^4.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03289~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03289~^~401~^0.1^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~421~^11.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03289~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1994~ -~03290~^~291~^2.6^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~317~^2.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03290~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03290~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03290~^~401~^0.8^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~421~^15.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03290~^~430~^7.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~03293~^~291~^1.3^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~317~^2.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03293~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03293~^~401~^12.3^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~421~^3.4^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03293~^~430~^5.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03296~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~03296~^~291~^0.8^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~313~^44.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~317~^3.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03296~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~401~^0.3^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03296~^~421~^13.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03297~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~03297~^~291~^1.8^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~317~^2.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~03297~^~326~^0.0^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03297~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~03297~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~421~^9.1^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~03297~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03298~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03298~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03298~^~401~^17.7^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03298~^~421~^31.1^14^1.1^~1~^~AS~^^^1^22.9^39.0^13^28.4^33.6^~2, 3~^~03/01/2007~ -~03298~^~428~^4.1^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~430~^73.5^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~454~^2.3^14^0.2^~1~^~A~^^^1^0.9^3.9^13^1.8^2.7^~2, 3~^~03/01/2007~ -~03301~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~313~^66.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~401~^35.3^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~421~^1.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~291~^2.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~313~^8.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~317~^11.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~03302~^~401~^57.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~421~^78.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~430~^12.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~454~^2.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03303~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03303~^~291~^1.3^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~317~^1.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03303~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03303~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~421~^11.8^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03303~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03376~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~317~^2.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~328~^1.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~401~^9.4^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~421~^18.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~430~^7.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~317~^14.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~401~^60.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~421~^120.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~317~^3.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~328~^5.8^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03382~^~401~^15.6^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~421~^18.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~430~^7.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~317~^4.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~328~^7.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~401~^19.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~421~^23.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~430~^8.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~317~^14.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~328~^9.5^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03385~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~421~^122.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~430~^46.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~317~^14.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~421~^122.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~430~^46.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~328~^1.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03388~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~328~^1.0^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03389~^~317~^12.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~328~^7.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~401~^91.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~421~^115.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~430~^62.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~328~^0.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~421~^15.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~430~^7.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~317~^2.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~328~^1.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~401~^9.4^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~421~^0.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~430~^9.4^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03392~^~317~^13.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~328~^6.2^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~401~^60.0^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~421~^119.0^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~328~^1.2^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03681~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~291~^0.6^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~317~^5.6^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~326~^1.2^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~328~^1.2^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~401~^0.2^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~421~^16.6^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~428~^0.9^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~430~^0.4^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~454~^0.6^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03685~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~291~^0.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~317~^6.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~326~^1.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~328~^1.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~401~^0.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~421~^15.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~428~^0.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~430~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~454~^0.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~291~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~317~^4.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~326~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~328~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~401~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~421~^15.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~428~^0.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~454~^0.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03689~^~291~^1.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~03689~^~401~^1.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~03690~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~291~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~317~^4.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~326~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~328~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~401~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~421~^15.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~428~^0.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~454~^0.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~317~^4.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~326~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~328~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~401~^0.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~421~^14.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~428~^0.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~430~^0.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~454~^0.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03696~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03712~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~317~^4.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~326~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~328~^1.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~401~^0.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~421~^15.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~428~^0.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~454~^0.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03801~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03801~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03801~^~317~^1.6^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~328~^1.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03801~^~401~^11.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~421~^15.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03801~^~430~^10.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03802~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03802~^~317~^10.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~328~^7.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03802~^~401~^46.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~421~^61.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03802~^~430~^41.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03805~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03805~^~317~^14.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~328~^7.8^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03805~^~401~^62.0^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~421~^124.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03805~^~430~^41.0^0^^~4~^~S~^^^^^^^^^^~02/01/2003~ -~03808~^~221~^0.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~291~^0.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~317~^14.5^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~328~^7.8^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~03808~^~401~^62.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~421~^62.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03808~^~430~^41.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03812~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03812~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~421~^15.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03815~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2005~ -~03815~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~328~^1.0^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03815~^~401~^7.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03815~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03818~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~317~^3.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~328~^2.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~03818~^~401~^15.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~421~^17.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03818~^~430~^10.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03821~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03821~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03821~^~317~^14.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~328~^6.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~401~^60.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~421~^120.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~430~^60.0^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03822~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03822~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03822~^~317~^1.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~328~^0.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~401~^8.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~421~^15.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~430~^8.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03823~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03823~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03823~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~421~^8.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03823~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~03825~^~401~^7.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~421~^8.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03825~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03832~^~401~^7.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03837~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03837~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03837~^~317~^9.8^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~328~^7.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03837~^~401~^46.2^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~421~^61.6^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~430~^41.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03838~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~317~^14.1^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~328~^6.3^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~03838~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~421~^121.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03841~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03841~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~ -~03841~^~317~^1.4^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03841~^~401~^5.9^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03841~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03841~^~430~^7.2^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03842~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03842~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03842~^~317~^2.7^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~328~^1.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03842~^~401~^11.5^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~421~^15.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03842~^~430~^14.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03843~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03843~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~ -~03843~^~317~^10.8^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~328~^7.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03843~^~401~^46.3^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~421~^60.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03843~^~430~^56.6^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03844~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~328~^0.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~421~^15.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03845~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~326~^0.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~03845~^~401~^7.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03846~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03846~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03846~^~317~^1.2^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~328~^0.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03846~^~401~^5.9^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03846~^~430~^9.8^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03849~^~221~^0.0^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~291~^0.0^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~317~^13.9^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~ -~03849~^~328~^9.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~401~^79.0^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~421~^119.0^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03849~^~430~^41.3^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~ -~03851~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03851~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03851~^~317~^2.8^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~328~^1.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03851~^~401~^11.5^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~421~^15.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03851~^~430~^10.2^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03852~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~317~^14.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~328~^7.8^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03852~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~421~^122.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~430~^46.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03853~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03853~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03853~^~317~^11.6^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~328~^7.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03853~^~401~^47.3^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~421~^64.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03853~^~430~^42.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03854~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03854~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~326~^1.0^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~03854~^~401~^7.8^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~421~^15.6^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03857~^~221~^0.0^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~291~^0.0^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~317~^1.8^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~326~^1.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03857~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~03857~^~401~^7.9^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03857~^~430~^5.9^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03859~^~221~^0.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~291~^0.0^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~317~^1.9^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~328~^1.0^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03859~^~401~^7.7^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~421~^7.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03859~^~430~^5.8^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03860~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03860~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03860~^~317~^2.2^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~328~^1.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03860~^~401~^9.5^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~421~^29.0^0^^~9~^~MC~^^^^^^^^^^~06/01/2007~ -~03860~^~430~^3.6^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03861~^~221~^0.0^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~291~^0.0^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~317~^13.3^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~328~^7.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03861~^~401~^57.0^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~421~^57.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03861~^~430~^38.0^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03864~^~221~^0.0^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~291~^0.0^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~317~^1.8^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~03864~^~401~^7.9^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~430~^5.2^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03867~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03867~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~317~^15.0^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~401~^60.1^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~421~^60.0^0^^~12~^~MA~^^^^^^^^^^~04/01/2009~ -~03867~^~430~^45.1^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03870~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03870~^~291~^0.5^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~317~^3.0^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~328~^1.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03870~^~401~^9.6^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~421~^28.4^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~430~^5.6^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03928~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03928~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03928~^~317~^10.0^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~328~^7.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03928~^~401~^60.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~421~^61.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03928~^~430~^40.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~291~^0.0^1^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03929~^~317~^13.3^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~326~^7.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03929~^~328~^7.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03929~^~401~^57.0^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~421~^62.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03929~^~430~^38.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03930~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03930~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03930~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03934~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~291~^1.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~313~^0.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~317~^1.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03934~^~401~^5.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~421~^10.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~03934~^~430~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03935~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03935~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03935~^~317~^1.2^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03935~^~328~^0.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03935~^~401~^5.9^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03935~^~430~^9.8^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03936~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03936~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03936~^~317~^1.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03936~^~328~^0.9^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03936~^~401~^5.6^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~421~^10.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03936~^~430~^5.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03937~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03937~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~317~^2.6^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03937~^~328~^1.9^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03937~^~401~^11.2^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~421~^20.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03937~^~430~^10.6^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03938~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03938~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03938~^~317~^11.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03938~^~328~^7.6^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~03938~^~401~^43.3^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~421~^81.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03938~^~430~^43.0^0^^~9~^~MC~^^^^^^^^^^~06/01/2004~ -~03939~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03939~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03939~^~317~^1.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03939~^~328~^0.9^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03939~^~401~^5.4^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~421~^9.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03939~^~430~^5.1^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03940~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03940~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~317~^3.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~03940~^~328~^2.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03940~^~401~^10.8^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~421~^18.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03940~^~430~^10.2^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03941~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03941~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~03941~^~317~^11.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03941~^~328~^7.6^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03941~^~401~^42.0^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~421~^73.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03941~^~430~^41.6^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03942~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~291~^0.4^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~328~^1.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~401~^7.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~03943~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03943~^~317~^13.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~401~^60.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~421~^119.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03944~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03944~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03944~^~317~^1.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~328~^1.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03944~^~401~^10.3^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~421~^11.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~430~^7.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03945~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03945~^~317~^11.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~328~^9.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03945~^~401~^77.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~421~^82.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~430~^56.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03946~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03946~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03946~^~317~^1.2^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03946~^~401~^6.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~421~^11.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~430~^5.5^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03947~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03947~^~317~^2.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~328~^1.9^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03947~^~401~^11.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~421~^20.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~430~^10.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03948~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03948~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03948~^~317~^9.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~328~^9.2^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03948~^~401~^45.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~421~^83.5^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~430~^41.4^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03949~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03949~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03949~^~317~^1.2^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03949~^~328~^1.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03949~^~401~^5.9^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03949~^~430~^5.3^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03950~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03950~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03950~^~317~^11.6^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~328~^7.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03950~^~401~^47.3^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~421~^64.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03950~^~430~^42.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03951~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03951~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03951~^~317~^2.8^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~328~^1.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03951~^~401~^11.5^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~421~^15.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03951~^~430~^10.2^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03952~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03952~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~03952~^~317~^2.7^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~328~^1.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03952~^~401~^11.5^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~421~^15.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03952~^~430~^14.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03953~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03953~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~ -~03953~^~317~^1.4^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~03953~^~401~^5.9^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03953~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03953~^~430~^7.2^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03954~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~03954~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~ -~03954~^~317~^10.8^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~328~^7.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~03954~^~401~^46.3^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~421~^60.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03954~^~430~^56.6^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03955~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~317~^2.0^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~328~^1.4^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~401~^11.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~421~^17.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~430~^6.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03956~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~313~^10.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~317~^2.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~03956~^~401~^1.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~421~^14.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~454~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~03957~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03957~^~317~^9.3^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~328~^5.7^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03957~^~401~^45.8^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~421~^40.7^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~430~^76.3^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03959~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~291~^1.2^1^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~313~^70.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~401~^1.5^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~03959~^~421~^5.8^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~430~^8.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~454~^0.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03960~^~221~^0.0^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03960~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/1991~ -~03960~^~317~^1.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03960~^~401~^5.9^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~421~^8.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03960~^~430~^5.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03961~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~03961~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~317~^1.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03961~^~401~^5.9^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~421~^8.0^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03961~^~430~^5.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03963~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03963~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03963~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~421~^15.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~430~^5.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03964~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~291~^1.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~313~^0.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~317~^14.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~03964~^~401~^2.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~421~^13.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~430~^4.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~454~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03965~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~291~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~313~^9.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~317~^2.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~03965~^~401~^3.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~421~^13.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~430~^0.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~454~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03966~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~317~^4.0^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~328~^2.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03966~^~401~^15.9^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~421~^31.8^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~430~^11.9^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03967~^~221~^0.0^0^^~4~^~BFSN~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~291~^0.0^1^^~12~^~MA~^^^^^^^^^^~05/01/2004~ -~03967~^~317~^13.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~401~^60.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~421~^119.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03968~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~317~^1.9^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~401~^8.2^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~421~^8.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~430~^5.5^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03980~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~03980~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03980~^~317~^14.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~328~^7.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~421~^122.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~430~^46.0^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03982~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~421~^15.8^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~430~^5.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~328~^0.8^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~401~^7.9^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~421~^15.8^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~430~^5.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~221~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~317~^3.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~328~^5.0^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~401~^13.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~430~^4.9^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03985~^~221~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~317~^3.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~328~^3.9^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~401~^15.6^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~421~^18.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~430~^7.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~221~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~317~^1.8^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~328~^1.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~421~^15.7^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~430~^5.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~221~^0.0^0^^~4~^~O~^^^^^^^^^^~02/01/2013~ -~03987~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~317~^2.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~421~^15.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~430~^5.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~317~^3.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~401~^10.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~421~^15.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~317~^2.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~421~^15.8^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~317~^3.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~401~^10.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~421~^15.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~317~^1.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~421~^10.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~291~^0.7^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~317~^1.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~401~^5.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~421~^7.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~430~^7.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03993~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~317~^1.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~401~^5.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~421~^10.6^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~291~^1.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~313~^2.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~317~^1.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~401~^12.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~421~^10.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~430~^0.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~454~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~291~^1.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~313~^1.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~401~^18.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~421~^8.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~430~^6.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~291~^6.7^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~317~^31.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~401~^58.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~421~^27.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~430~^7.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~317~^8.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~03997~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~421~^21.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~313~^4.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~317~^12.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~03998~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~421~^16.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~430~^9.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03999~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~317~^9.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~328~^7.7^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~401~^46.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~421~^82.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~430~^41.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~04001~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04001~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04001~^~326~^0.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04001~^~328~^0.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04001~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~421~^79.8^0^^~4~^~BFFN~^~13020~^^^^^^^^^~03/01/2007~ -~04001~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04002~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~317~^0.2^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~04002~^~326~^2.5^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2009~ -~04002~^~328~^2.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04002~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~421~^49.7^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2007~ -~04002~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04011~^~291~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~401~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~430~^155.1^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~04013~^~221~^0.0^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~291~^2.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~317~^2.6^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~421~^9.0^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~04014~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04015~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~291~^0.7^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04015~^~401~^6.0^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~421~^4.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~430~^53.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04016~^~221~^0.0^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~291~^1.0^0^^~4~^^^^^^^^^^^~11/01/1994~ -~04016~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04016~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~421~^4.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04016~^~430~^56.0^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04017~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04017~^~291~^0.8^2^^~1~^~A~^^^1^0.5^1.0^1^^^^~02/01/2003~ -~04017~^~317~^1.5^2^^~1~^~A~^^^1^0.0^3.0^1^^^~1~^~02/01/2003~ -~04017~^~328~^0.0^0^^~4~^~BFZN~^~04120~^^^^^^^^^~06/01/2013~ -~04017~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04017~^~421~^4.6^0^^~4~^~BFZN~^~04120~^^^^^^^^^~06/01/2013~ -~04017~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04017~^~430~^69.1^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04018~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04018~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~325~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~326~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~328~^0.0^3^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~04018~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04018~^~421~^14.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04018~^~430~^42.2^2^^~1~^~A~^^^2^41.0^43.3^1^^^^~03/01/2003~ -~04018~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04020~^~291~^1.5^3^^~6~^~JA~^^^2^1.1^1.8^^^^~2, 3~^~12/01/2007~ -~04020~^~313~^18.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04020~^~401~^4.8^2^^~12~^~MA~^^^^2.7^6.8^^^^^~12/01/2007~ -~04020~^~421~^4.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2007~ -~04020~^~430~^17.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04021~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04021~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04021~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2012~ -~04021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04021~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04021~^~421~^3.3^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~04021~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04021~^~430~^12.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04022~^~291~^0.3^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04022~^~401~^6.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~421~^4.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04022~^~430~^6.7^0^^~4~^~BFFN~^~04015~^^^^^^^^^~03/01/2003~ -~04023~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04023~^~291~^1.2^3^3.0e-03^~6~^~JA~^^^2^0.9^1.3^1^1.1^1.2^~2, 3~^~12/01/2007~ -~04023~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04023~^~401~^1.5^2^^~6~^~JA~^^^2^0.0^3.1^1^^^~1~^~12/01/2007~ -~04023~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2007~ -~04023~^~430~^27.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04025~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04025~^~317~^2.3^3^8.6e-02^~1~^~A~^^^1^2.2^2.9^1^1.2^3.3^~1, 2, 3~^~04/01/2012~ -~04025~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~04025~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2007~ -~04025~^~421~^34.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~04025~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2012~ -~04025~^~430~^163.0^4^13.4^~1~^~A~^^^1^144.7^183.7^1^49.2^276.8^~2, 3~^~04/01/2012~ -~04025~^~454~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2007~ -~04026~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04026~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04026~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04027~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04027~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~421~^14.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04027~^~430~^42.2^0^^~4~^~BFZN~^~04025~^^^^^^^^^~03/01/2003~ -~04027~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04028~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~04028~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04028~^~401~^0.3^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1986~ -~04029~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04029~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~421~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04029~^~430~^42.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~04030~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04030~^~291~^0.4^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04030~^~328~^0.1^0^^~4~^~BFFN~^~04018~^^^^^^^^^~03/01/2009~ -~04030~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~421~^14.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~04030~^~430~^24.7^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~ -~04031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04031~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2010~ -~04031~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04034~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04034~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04034~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04037~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04037~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04038~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04038~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~421~^20.0^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~04038~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04042~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04042~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~421~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04042~^~430~^0.7^1^^~1~^~A~^^^2^0.3^1.2^3^^^^~11/01/2002~ -~04042~^~454~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04044~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~421~^0.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04044~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~429~^0.0^4^3.0e-03^~1~^~A~^^^2^0.0^0.0^1^-2.9e-02^3.4e-02^~1, 2~^~03/01/2007~ -~04044~^~430~^183.9^35^20.5^~1~^~A~^^^4^108.1^290.0^3^118.4^249.4^~2~^~03/01/2007~ -~04044~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04047~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04047~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04047~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04047~^~401~^0.0^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~421~^0.3^0^^~4~^~T~^^^^^^^^^^~03/01/2015~ -~04047~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~04047~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~04047~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~04053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04053~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2002~ -~04053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04053~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~421~^0.3^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04053~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2002~ -~04053~^~430~^60.2^2^^~1~^~A~^^^1^50.1^70.3^1^^^^~10/01/2002~ -~04053~^~454~^0.1^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04055~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~421~^0.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04055~^~430~^8.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04058~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04058~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04058~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04058~^~430~^13.6^7^2.6^~1~^~A~^^^2^10.0^18.7^2^2.3^24.8^~4~^~11/01/2002~ -~04060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04060~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~430~^5.4^18^1.9^~1~^~A~^^^5^1.0^10.0^4^4.5e-02^10.8^~2~^~01/01/2003~ -~04073~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04073~^~401~^0.2^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04114~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~02/01/2003~ -~04114~^~317~^2.0^3^2.0^~1~^~A~^^^1^0.0^6.0^2^-6.6^10.6^~1, 2, 3~^~02/01/2003~ -~04114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04114~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~421~^2.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04114~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~430~^56.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04114~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04120~^~291~^2.4^3^1.1^~1~^~A~^^^1^1.0^4.7^2^-2.6^7.3^~2, 3~^~10/01/2016~ -~04120~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04120~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2016~ -~04120~^~421~^4.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04120~^~430~^121.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04120~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04128~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~04128~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~04128~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04128~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~04128~^~326~^17.5^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~04128~^~328~^17.5^1^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~04128~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~04128~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2007~ -~04128~^~430~^74.6^9^9.8^~1~^~A~^^^1^45.6^113.4^8^51.8^97.3^~2, 3~^~03/01/2007~ -~04133~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04133~^~401~^0.6^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04135~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04135~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~421~^0.1^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~04135~^~430~^98.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04141~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04141~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04141~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04141~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~430~^121.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04142~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04142~^~430~^4.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~02/01/2003~ -~04143~^~317~^2.0^3^2.0^~1~^~A~^^^1^0.0^6.0^2^-6.6^10.6^~1, 2, 3~^~02/01/2003~ -~04143~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04143~^~430~^56.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~317~^8.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04144~^~430~^12.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04145~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04145~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04145~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04146~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~04146~^~401~^0.0^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04367~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2003~ -~04367~^~291~^2.2^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04367~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~421~^4.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04367~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04501~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1979~ -~04501~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04501~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~421~^0.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04501~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04502~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04502~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04502~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04502~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04506~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04506~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04506~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04506~^~430~^5.4^18^1.9^~1~^~A~^^^5^1.0^10.0^4^4.5e-02^10.8^~2~^~01/01/2003~ -~04510~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04510~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~430~^7.1^8^1.8^~1~^~A~^^^3^3.0^11.8^3^1.3^12.8^~4~^~12/01/2002~ -~04511~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~04511~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04511~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04511~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~06/01/2010~ -~04511~^~430~^7.1^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04513~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04513~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04513~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04513~^~401~^0.0^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04513~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04514~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04514~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04515~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04516~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04517~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2004~ -~04518~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04518~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04518~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~421~^0.2^0^^~4~^~BFZN~^~42289~^^^^^^^^^~12/01/2006~ -~04518~^~430~^1.9^13^0.2^~1~^~A~^^^4^1.6^3.1^4^1.1^2.7^~4~^~04/01/2004~ -~04528~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04528~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04528~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~421~^0.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04528~^~430~^15.0^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~04528~^~454~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04529~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04529~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04529~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~421~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04529~^~430~^7.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~04530~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04530~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04531~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04531~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04531~^~401~^0.0^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~421~^350.0^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~04531~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04532~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04532~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04534~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04536~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04539~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~291~^0.4^2^^~9~^~MC~^^^1^0.4^0.4^1^^^^~12/01/2007~ -~04539~^~313~^27.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~317~^1.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~04539~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~04539~^~401~^0.7^2^^~9~^~MC~^^^1^0.7^0.8^1^^^^~12/01/2007~ -~04539~^~421~^17.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04539~^~428~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~429~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~430~^85.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~454~^2.5^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04541~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04541~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~04542~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04542~^~326~^4.8^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~04542~^~328~^4.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04542~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~421~^122.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~04542~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04543~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04543~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04543~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04543~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04544~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~04544~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04544~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04544~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~421~^25.0^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~04544~^~430~^21.5^0^^~4~^~RA~^~04615~^^^^^^^^^~03/01/2003~ -~04545~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~04545~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04545~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~430~^5.4^21^1.9^~1~^~A~^^^5^1.0^10.0^4^5.6e-02^10.7^~2~^~11/01/2002~ -~04546~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~04546~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04546~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04548~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04548~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04548~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04549~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04549~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04550~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04551~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04551~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~421~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04551~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04554~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04554~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04554~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04554~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04556~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04556~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04559~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04560~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04570~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04570~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04572~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04573~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~04575~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04575~^~326~^4.8^0^^~4~^~BFZN~^~04542~^^^^^^^^^~03/01/2009~ -~04575~^~328~^4.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04575~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~421~^122.4^0^^~4~^~BFFN~^~04542~^^^^^^^^^~03/01/2007~ -~04575~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04576~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04576~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04581~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04582~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04582~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~421~^0.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04582~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~430~^71.3^4^5.1^~1~^~A~^^^1^57.9^82.0^3^55.1^87.5^~2, 3~^~03/01/2007~ -~04582~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04583~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04583~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04584~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~04584~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~421~^0.2^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~430~^5.4^18^1.9^~1~^~A~^^^5^1.0^10.0^4^4.5e-02^10.8^~2~^~01/01/2003~ -~04585~^~221~^0.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04585~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~04585~^~317~^0.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~04585~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~04585~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~04585~^~421~^6.5^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04585~^~428~^1.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04585~^~429~^72.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04585~^~430~^86.5^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04585~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~04586~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04586~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04587~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04587~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~430~^43.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04588~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04588~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~430~^24.7^69^5.8^~11~^~JO~^^^8^0.3^165.0^1^-28.3^77.8^~2~^~11/01/2002~ -~04589~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04589~^~328~^250.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04589~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04590~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04591~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04592~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04593~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04594~^~328~^8.3^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04594~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04595~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04600~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~04600~^~328~^0.0^0^^~4~^~BFZN~^~04585~^^^^^^^^^~02/01/2009~ -~04600~^~401~^0.1^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~421~^6.5^0^^~4~^~BFZN~^~04585~^^^^^^^^^~03/01/2007~ -~04600~^~430~^46.1^0^^~4~^~BFFN~^~42307~^^^^^^^^^~03/01/2003~ -~04601~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~317~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04601~^~325~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04601~^~326~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04601~^~328~^0.0^0^^~1~^~AS~^~01002~^^^^^^^^^~09/01/2015~ -~04601~^~401~^0.0^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~421~^12.9^0^^~4~^~BFSN~^~01001~^^^^^^^^^~04/01/2007~ -~04601~^~430~^4.8^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~ -~04602~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~317~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~04602~^~325~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04602~^~326~^0.0^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~ -~04602~^~328~^0.0^0^^~1~^~AS~^~01002~^^^^^^^^^~09/01/2015~ -~04602~^~401~^0.0^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~421~^12.9^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~ -~04602~^~430~^4.8^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~ -~04609~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04609~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04609~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04609~^~326~^2.5^0^^~4~^~BFFN~^~04002~^^^^^^^^^~03/01/2009~ -~04609~^~328~^2.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04609~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~421~^42.2^0^^~4~^~BFSN~^~10007~^^^^^^^^^~03/01/2007~ -~04609~^~430~^0.0^0^^~4~^~BFFN~^~04002~^^^^^^^^^~01/01/2003~ -~04610~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04610~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04610~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04610~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04610~^~401~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~04610~^~430~^93.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04611~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04611~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04611~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04611~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04611~^~421~^12.4^3^^~1~^~AS~^^^1^10.2^13.8^^^^~2~^~03/01/2007~ -~04611~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~04611~^~429~^53.6^2^^~1~^~A~^^^1^48.5^58.7^1^^^^~03/01/2007~ -~04611~^~430~^91.7^2^^~1~^~A~^^^1^52.7^130.6^1^^^^~03/01/2007~ -~04612~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~04612~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~04612~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04612~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04612~^~401~^0.1^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~421~^12.4^3^^~1~^~AS~^^^1^10.2^13.8^^^^~2~^~03/01/2007~ -~04612~^~429~^26.7^6^0.4^~1~^~A~^^^1^25.4^28.2^5^25.6^27.8^~2, 3~^~03/01/2007~ -~04612~^~430~^101.3^6^2.6^~1~^~A~^^^1^93.0^106.8^5^94.4^108.1^~2, 3~^~04/01/2003~ -~04613~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~04613~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~04613~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04613~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04613~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~421~^10.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~04613~^~429~^26.7^6^0.4^~1~^~A~^^^1^25.4^28.2^5^25.6^27.8^~2, 3~^~03/01/2007~ -~04613~^~430~^101.3^6^2.6^~1~^~A~^^^1^93.0^106.8^5^94.4^108.1^~2, 3~^~04/01/2003~ -~04614~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~317~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04614~^~401~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04614~^~430~^101.3^6^2.6^~1~^~A~^^^1^93.0^106.8^5^94.4^108.1^~2, 3~^~04/01/2003~ -~04615~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~04615~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~04615~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04615~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04615~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04615~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2010~ -~04615~^~429~^164.9^3^5.4^~1~^~A~^^^1^156.2^175.0^2^141.4^188.4^~2, 3~^~04/01/2006~ -~04615~^~430~^53.2^3^13.4^~1~^~A~^^^1^33.3^78.8^2^-4.6^111.0^~2, 3~^~04/01/2006~ -~04617~^~221~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~291~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~317~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~328~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~401~^0.2^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~421~^12.4^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~430~^93.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04618~^~221~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~291~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~317~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~328~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~401~^0.1^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~421~^12.4^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~430~^91.7^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04620~^~221~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~291~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~317~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04620~^~401~^0.1^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~421~^10.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~04620~^~430~^101.3^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~454~^8.1^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04624~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~04624~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~04624~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~04624~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04624~^~401~^0.3^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04624~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~04626~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~04626~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04626~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04626~^~430~^93.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~04627~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~317~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04627~^~401~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04627~^~430~^93.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04628~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04628~^~429~^103.8^16^8.6^~1~^~A~^^^1^68.9^181.6^15^85.2^122.2^~2, 3~^~03/01/2002~ -~04628~^~430~^75.0^16^9.1^~1~^~A~^^^1^50.8^162.5^15^55.6^94.4^~2, 3~^~03/01/2002~ -~04630~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04630~^~317~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2002~ -~04630~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~04630~^~326~^11.8^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~04630~^~328~^11.8^1^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~04630~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~04631~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04631~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04631~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~04631~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04631~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04631~^~421~^8.3^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04631~^~429~^0.3^2^^~1~^~A~^^^1^0.1^0.4^1^^^^~04/01/2002~ -~04631~^~430~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^~1~^~04/01/2002~ -~04633~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~04633~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~04633~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04633~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04633~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04633~^~430~^70.9^8^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~04634~^~221~^0.0^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~291~^0.0^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~317~^0.0^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04634~^~401~^0.0^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04634~^~430~^93.0^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04635~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~04635~^~291~^3.3^2^^~1~^~A~^^^1^3.1^3.5^1^^^^~02/01/2003~ -~04635~^~317~^2.0^2^^~1~^~A~^^^1^2.0^2.0^^^^^~02/01/2003~ -~04635~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04635~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04635~^~421~^4.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~04635~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04635~^~430~^3.7^2^^~1~^~A~^^^1^3.1^4.3^1^^^^~02/01/2003~ -~04636~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~04636~^~291~^0.6^2^^~1~^~A~^^^1^0.6^0.6^1^^^^~02/01/2003~ -~04636~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04636~^~401~^0.4^1^^~1~^^^^^^^^^^^~07/01/2010~ -~04636~^~421~^4.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04636~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04636~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04638~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~317~^0.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~04638~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04638~^~430~^2.3^2^^~1~^~A~^^^1^2.2^2.4^1^^^^~02/01/2003~ -~04639~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04639~^~291~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~317~^3.5^3^^~1~^~A~^^^1^2.2^4.7^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2013~ -~04639~^~326~^0.1^2^^~1~^~A~^^^1^0.0^0.2^^^^~1~^~07/01/2013~ -~04639~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~04639~^~401~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~421~^32.8^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~04639~^~429~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~430~^134.3^3^^~1~^~A~^^^1^106.9^166.4^^^^~2, 3~^~07/01/2015~ -~04639~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~04640~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~291~^1.1^3^0.2^~6~^~JA~^^^2^0.9^1.4^1^-2.5^4.6^~4~^~12/01/2007~ -~04640~^~313~^29.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~317~^2.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04640~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04640~^~401~^0.6^4^0.2^~6~^~JA~^^^2^0.3^0.7^1^-2.5^3.7^~1, 4~^~12/01/2007~ -~04640~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~04640~^~430~^34.8^2^^~1~^~A~^^^1^20.4^49.2^1^^^^~02/01/2003~ -~04641~^~221~^0.0^0^^~4~^~BFZN~^~43329~^^^^^^^^^~04/01/2012~ -~04641~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04641~^~317~^2.6^2^^~1~^~A~^^^1^2.2^3.0^1^^^~1~^~03/01/2003~ -~04641~^~328~^0.0^0^^~4~^~BFZN~^~43329~^^^^^^^^^~02/01/2011~ -~04641~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2003~ -~04641~^~421~^9.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~04641~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04641~^~430~^53.7^4^1.2^~1~^~A~^^^1^45.0^76.3^2^46.0^61.3^~2, 3~^~04/01/2012~ -~04641~^~454~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2012~ -~04642~^~221~^0.0^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~291~^0.0^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~317~^0.0^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~401~^0.0^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04642~^~430~^5.4^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04643~^~221~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~291~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~317~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~401~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~421~^0.2^0^^~4~^~BFZN~^~04582~^^^^^^^^^~12/01/2006~ -~04643~^~430~^122.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~221~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~291~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~317~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~401~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~421~^0.2^0^^~4~^~BFZN~^~04582~^^^^^^^^^~12/01/2006~ -~04644~^~430~^71.3^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~221~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~291~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~317~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~401~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~421~^0.2^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~430~^71.3^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04646~^~221~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~291~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~317~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~401~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~421~^0.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04646~^~430~^0.5^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04648~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04648~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04649~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04649~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04650~^~221~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~291~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~317~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~401~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04650~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04650~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04651~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04651~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04651~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04652~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04652~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04652~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04653~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04653~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04654~^~221~^0.0^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~291~^0.0^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~317~^0.0^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04654~^~401~^0.0^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04654~^~430~^24.7^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04655~^~221~^0.0^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~291~^0.0^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~317~^0.0^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~401~^0.0^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~430~^43.0^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04656~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04656~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04657~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04658~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04659~^~221~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~291~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~317~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04659~^~401~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~421~^0.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04659~^~430~^0.5^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04660~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04660~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04661~^~221~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~291~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~317~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~401~^0.0^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~421~^0.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04661~^~430~^0.5^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04662~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~421~^24.0^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~04662~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~221~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~291~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~317~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~401~^0.0^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04663~^~430~^24.7^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04664~^~221~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~291~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~317~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~401~^0.0^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~04664~^~430~^24.7^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04665~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04665~^~401~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~430~^106.2^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04666~^~221~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~291~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~317~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04666~^~401~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~421~^0.2^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~430~^43.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~221~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~291~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~317~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~401~^0.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04667~^~430~^43.0^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04668~^~291~^0.0^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~430~^75.0^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04669~^~221~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~291~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~317~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~401~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04669~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04669~^~454~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~12/01/2006~ -~04673~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~430~^55.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04674~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~430~^46.8^3^0.8^~1~^~A~^^^1^45.6^48.3^2^43.2^50.2^~2, 3~^~03/01/2007~ -~04675~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~430~^12.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~430~^4.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~430~^52.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04678~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~04678~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04679~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04686~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~291~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~317~^6.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~04686~^~401~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~421~^4.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~430~^13.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04687~^~429~^12.3^2^^~1~^~A~^^^1^10.9^13.8^1^^^^~04/01/2007~ -~04687~^~430~^56.5^2^^~1~^~A~^^^1^54.5^58.5^1^^^^~04/01/2007~ -~04688~^~291~^0.3^9^1.4e-02^~9~^~MC~^^^1^0.2^0.4^8^0.2^0.3^~4~^~12/01/2007~ -~04688~^~401~^0.7^9^0.3^~9~^~MC~^^^1^0.1^3.4^8^-0.1^1.4^~4~^~12/01/2007~ -~04689~^~291~^0.2^2^^~1~^~A~^^^1^0.2^0.2^^^^^~01/01/2009~ -~04689~^~317~^4.4^2^^~1~^~A~^^^1^4.3^4.5^1^^^^~01/01/2009~ -~04689~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^~1~^~01/01/2009~ -~04689~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~04689~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~04689~^~430~^65.8^2^^~1~^~A~^^^1^59.1^72.5^1^^^^~01/01/2009~ -~04690~^~221~^0.0^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~291~^0.0^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04690~^~328~^10.7^0^^~4~^~O~^^^^^^^^^^~04/01/2009~ -~04690~^~401~^0.1^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~421~^12.4^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~428~^0.0^9^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~04690~^~429~^9.0^9^2.3^~1~^~A~^^^1^0.0^16.4^8^3.6^14.3^~1, 2, 3~^~03/01/2009~ -~04690~^~430~^74.6^9^9.8^~1~^~A~^^^1^45.6^113.4^8^51.8^97.3^~2, 3~^~03/01/2009~ -~04691~^~221~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~291~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~317~^0.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04691~^~401~^0.2^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~421~^12.4^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~430~^93.0^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04692~^~221~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~291~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~317~^0.0^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04692~^~401~^0.1^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~421~^12.4^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2009~ -~04692~^~429~^53.6^2^^~1~^~A~^^^1^48.5^58.7^1^^^^~03/01/2009~ -~04692~^~430~^91.7^2^^~1~^~A~^^^1^52.7^130.6^1^^^^~03/01/2009~ -~04693~^~221~^0.0^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~291~^0.0^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~317~^0.0^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04693~^~401~^0.1^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~421~^12.4^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~430~^101.3^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04694~^~221~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~291~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~317~^0.0^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04694~^~401~^0.1^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~421~^10.2^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~430~^101.3^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04695~^~221~^0.0^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~291~^0.0^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~317~^0.0^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04695~^~401~^0.1^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~421~^12.4^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~430~^101.3^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04696~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04696~^~401~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~421~^12.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~430~^93.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04697~^~221~^0.0^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~291~^0.0^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~317~^0.0^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~328~^10.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~04697~^~401~^0.1^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~421~^10.2^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~430~^101.3^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04698~^~221~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~291~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~317~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~328~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~401~^0.0^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~421~^0.2^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~430~^71.3^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04699~^~221~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~291~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~317~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~328~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~401~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04700~^~221~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~291~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~317~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~328~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~401~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~221~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~291~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~317~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~328~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~401~^0.0^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~421~^0.2^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~430~^183.9^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04702~^~221~^0.0^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~291~^0.0^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~317~^0.0^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~328~^0.0^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~401~^0.0^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~421~^0.2^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~430~^24.7^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04703~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~291~^0.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~317~^5.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~421~^20.7^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~430~^70.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~317~^1.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~421~^6.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~430~^50.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04705~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~291~^0.2^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~317~^2.2^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~421~^2.4^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~291~^1.2^2^^~8~^~LC~^^^1^0.0^2.4^1^^^^~12/01/2010~ -~04706~^~317~^6.2^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~401~^2.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~421~^5.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04707~^~428~^2.0^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~430~^3.3^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04708~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~291~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~317~^2.3^0^^~4~^~BFZN~^~04025~^^^^^^^^^~05/01/2013~ -~04708~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~401~^0.0^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~421~^9.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~04708~^~430~^53.7^4^1.2^~1~^~A~^^^1^45.0^76.3^2^46.0^61.3^~2, 3~^~05/01/2013~ -~04709~^~221~^0.0^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~291~^0.0^0^^~8~^^^^^^^^^^^~07/01/2015~ -~04709~^~317~^0.4^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~328~^0.0^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~401~^0.0^0^^~8~^^^^^^^^^^^~07/01/2015~ -~04709~^~421~^14.6^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~430~^19.5^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~05000~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~317~^23.1^4^3.2^~1~^~A~^^^1^17.1^30.3^3^12.6^33.5^~2, 3~^~05/01/2012~ -~05000~^~328~^0.0^0^^~4~^~BFFN~^~05073~^^^^^^^^^~05/01/2013~ -~05000~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~421~^59.8^4^1.7^~1~^~AS~^^^1^56.3^63.7^3^54.3^65.2^~2, 3~^~05/01/2012~ -~05000~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05000~^~454~^8.0^4^0.3^~1~^~A~^^^1^7.1^8.7^3^6.9^9.1^~2, 3~^~05/01/2012~ -~05001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05001~^~317~^11.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05001~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~317~^20.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05002~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~317~^16.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05003~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05004~^~317~^15.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05004~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05004~^~328~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05004~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~421~^73.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2007~ -~05004~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05004~^~454~^5.7^0^^~1~^~PAK~^^^^^^^^^^~01/01/2007~ -~05005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05005~^~317~^15.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05005~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05006~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05006~^~317~^14.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05006~^~328~^0.2^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05006~^~401~^1.6^0^^~1~^^^^^^^^^^^~10/01/2002~ -~05006~^~421~^59.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05006~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05006~^~430~^1.5^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2002~ -~05006~^~454~^7.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05007~^~291~^0.3^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05007~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05007~^~317~^25.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05007~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~05007~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~05007~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05007~^~421~^63.5^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~05007~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05007~^~454~^17.3^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~05008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05008~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05008~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05008~^~317~^21.7^30^1.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~05008~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~05008~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~05008~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05008~^~421~^79.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05008~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05008~^~454~^6.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05009~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05009~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05009~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05009~^~317~^23.9^30^1.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~05009~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05009~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05009~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05009~^~421~^65.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05009~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05009~^~430~^2.4^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05009~^~454~^5.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05010~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05010~^~317~^18.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05010~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05010~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05010~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05010~^~421~^57.4^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05010~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~430~^2.1^0^^~4~^~BFYN~^~05006~^^^^^^^^^~11/01/2002~ -~05010~^~454~^4.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05011~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05011~^~317~^15.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05011~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05011~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05011~^~401~^2.3^0^^~1~^^^^^^^^^^^~11/01/2002~ -~05011~^~421~^65.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05011~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05011~^~430~^1.8^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2002~ -~05011~^~454~^8.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05012~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05012~^~291~^0.1^0^^~4~^^^^^^^^^^^~09/01/2004~ -~05012~^~317~^24.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05012~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05012~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05012~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05012~^~421~^91.2^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05012~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05012~^~430~^2.8^0^^~4~^~BFSN~^~05013~^^^^^^^^^~03/01/2003~ -~05012~^~454~^6.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05013~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05013~^~317~^22.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05013~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05013~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05013~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05013~^~421~^78.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05013~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05013~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~08/01/2002~ -~05013~^~454~^5.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05014~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05014~^~317~^20.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05014~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05014~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05014~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05014~^~421~^72.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05014~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05014~^~430~^2.4^0^^~4~^~BFYN~^~05011~^^^^^^^^^~11/01/2002~ -~05014~^~454~^5.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05015~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1991~ -~05015~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05015~^~317~^12.3^3^2.4^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05015~^~328~^0.6^0^^~4~^~T~^^^^^^^^^^~08/01/2009~ -~05015~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05015~^~430~^2.9^0^^~4~^~BFYN~^^^^^^^^^^~03/01/2003~ -~05016~^~317~^53.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05016~^~326~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05016~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05016~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05017~^~317~^62.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05017~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05018~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05018~^~317~^20.0^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2013~ -~05018~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05018~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05018~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05018~^~421~^45.7^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05018~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~08/01/2002~ -~05018~^~454~^7.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05019~^~317~^14.4^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2013~ -~05019~^~326~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05019~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05019~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05020~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1989~ -~05020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05020~^~317~^55.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05020~^~401~^16.2^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05021~^~317~^104.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05021~^~401~^8.7^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~317~^59.6^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05022~^~401~^12.5^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~421~^178.1^0^^~1~^~PAK~^^^^^^^^^^~01/01/2007~ -~05022~^~429~^0.0^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~430~^0.0^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~454~^6.8^0^^~1~^~PAK~^^^^^^^^^^~01/01/2007~ -~05023~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05023~^~317~^25.5^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~401~^3.7^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05024~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05024~^~317~^41.1^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05024~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05024~^~421~^104.4^0^^~4~^~BFNN~^~05174~^^^^^^^^^~11/01/2006~ -~05024~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05024~^~454~^2.2^0^^~4~^~BFNN~^~05174~^^^^^^^^^~11/01/2006~ -~05025~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05025~^~317~^4.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05025~^~401~^3.2^5^8.4e-02^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05026~^~317~^8.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05026~^~401~^1.8^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05027~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05027~^~317~^54.6^4^8.2^~1~^~A~^^^1^35.8^76.0^3^28.3^80.8^~2, 3~^~02/01/2003~ -~05027~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05027~^~401~^17.9^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05027~^~421~^194.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05027~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~454~^16.9^4^2.9^~1~^~A~^^^1^10.8^24.8^3^7.6^26.1^~2, 3~^~03/01/2006~ -~05028~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05028~^~317~^82.4^4^10.4^~1~^~A~^^^1^54.3^104.0^3^49.0^115.7^~2, 3~^~02/01/2003~ -~05028~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05028~^~401~^27.9^0^^~4~^~BFYN~^~05027~^^^^^^^^^~02/01/2003~ -~05028~^~421~^290.0^4^2.2^~1~^~AS~^^^2^279.8^303.2^2^280.5^299.5^~2, 3~^~08/01/2007~ -~05028~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~430~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~454~^12.8^4^2.0^~1~^~A~^^^2^9.7^18.4^2^3.9^21.5^~2, 3~^~08/01/2007~ -~05029~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05029~^~317~^16.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05029~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05030~^~317~^27.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05030~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05031~^~291~^0.1^0^^~4~^^^^^^^^^^^~09/01/2004~ -~05031~^~317~^29.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05031~^~326~^0.1^0^^~4~^~BFFN~^~05008~^^^^^^^^^~03/01/2009~ -~05031~^~328~^0.1^0^^~4~^~BFFN~^~05008~^^^^^^^^^~03/01/2009~ -~05031~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05031~^~421~^81.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05031~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05031~^~454~^6.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05032~^~317~^24.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05032~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05033~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05033~^~317~^21.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05033~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05034~^~317~^12.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05034~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05035~^~317~^23.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05035~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~317~^20.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05036~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05036~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05037~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05037~^~317~^20.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05037~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05038~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05038~^~317~^18.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05038~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05039~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05039~^~317~^17.8^5^3.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05039~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05040~^~317~^26.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05040~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05041~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05041~^~317~^24.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05041~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05041~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05041~^~421~^84.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05041~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05041~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05041~^~454~^6.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05042~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05042~^~317~^22.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05042~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05042~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05042~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05042~^~421~^76.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05042~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05042~^~430~^0.2^0^^~4~^~BFSN~^~05041~^^^^^^^^^~11/01/2002~ -~05042~^~454~^5.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05043~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05043~^~317~^13.5^4^1.9^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05043~^~401~^3.1^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05043~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05044~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05044~^~317~^20.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05044~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05045~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05045~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05045~^~317~^18.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05045~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05045~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05045~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05045~^~421~^74.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05045~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05045~^~430~^3.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05045~^~454~^5.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05046~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~05046~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05046~^~317~^17.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05046~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05046~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05046~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05046~^~421~^68.9^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05046~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05046~^~430~^3.6^0^^~4~^~BFSN~^~05045~^^^^^^^^^~11/01/2002~ -~05046~^~454~^5.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05047~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05047~^~317~^9.7^2^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~05047~^~326~^3.3^0^^~4~^~BFFN~^~04542~^^^^^^^^^~04/01/2009~ -~05047~^~328~^3.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2009~ -~05047~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05047~^~421~^15.7^0^^~4~^~BFNN~^~10007~^^^^^^^^^~01/01/2007~ -~05047~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05047~^~454~^0.6^0^^~4~^~BFNN~^~10007~^^^^^^^^^~01/01/2007~ -~05048~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05048~^~317~^12.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05048~^~401~^1.6^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05048~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05049~^~317~^29.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05049~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05050~^~317~^23.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05050~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05051~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~05051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05051~^~317~^22.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05051~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05051~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05051~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05051~^~421~^62.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05051~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05051~^~430~^4.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05051~^~454~^5.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05052~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05052~^~317~^19.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05052~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05052~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05052~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05052~^~421~^51.1^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05052~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05052~^~430~^4.1^0^^~4~^~CASN~^~05051~^^^^^^^^^~11/01/2002~ -~05052~^~454~^4.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05053~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05053~^~317~^13.5^4^1.9^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05053~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05053~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05054~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05054~^~317~^19.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05054~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~05055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05055~^~317~^17.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05055~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05055~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05055~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05055~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05056~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05056~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05056~^~317~^16.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05056~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05056~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05056~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05056~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05057~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05057~^~317~^16.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05057~^~328~^0.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05057~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05057~^~421~^67.1^0^^~4~^~BFNN~^~05006~^^^^^^^^^~11/01/2006~ -~05057~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2009~ -~05057~^~430~^0.0^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2002~ -~05057~^~454~^8.8^0^^~4~^~BFNN~^~05006~^^^^^^^^^~11/01/2006~ -~05058~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05058~^~291~^0.3^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05058~^~317~^28.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05058~^~326~^0.1^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05058~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~ -~05058~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05058~^~421~^64.8^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~05058~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05058~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05058~^~454~^16.4^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~05059~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05059~^~317~^23.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05059~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05060~^~317~^24.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05060~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05060~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05060~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05060~^~421~^72.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05060~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05060~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05060~^~454~^6.2^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05061~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05061~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05061~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05061~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05061~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05061~^~421~^64.4^0^^~4~^~BFNN~^~05009~^^^^^^^^^~04/01/2007~ -~05061~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05061~^~430~^0.2^0^^~4~^~BFSN~^~05060~^^^^^^^^^~11/01/2002~ -~05061~^~454~^5.5^0^^~4~^~BFNN~^~05009~^^^^^^^^^~04/01/2007~ -~05062~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05062~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05062~^~317~^22.8^3^3.4^~1~^~A~^^^1^17.4^29.1^2^8.1^37.4^~2, 3~^~04/01/2013~ -~05062~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2013~ -~05062~^~328~^0.0^0^^~1~^~AS~^~05071~^^^^^^^^^~08/01/2015~ -~05062~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05062~^~421~^82.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~05062~^~428~^8.4^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~05062~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05062~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05062~^~454~^7.0^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05063~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05063~^~317~^26.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05063~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05063~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05063~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05063~^~421~^95.9^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05063~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~09/01/2002~ -~05063~^~454~^7.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05064~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05064~^~317~^27.6^20^2.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~05064~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05064~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05064~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05064~^~421~^85.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05064~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05064~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05064~^~454~^6.2^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05065~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~05065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05065~^~317~^22.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05065~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05065~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05065~^~421~^78.5^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05065~^~430~^0.2^0^^~4~^~CASN~^~05064~^^^^^^^^^~11/01/2002~ -~05065~^~454~^5.7^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05066~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~317~^20.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05066~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~421~^52.8^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05066~^~430~^2.5^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~454~^8.7^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05067~^~291~^0.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05067~^~317~^21.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05067~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05068~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05068~^~317~^18.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05068~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05069~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~317~^26.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05069~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~421~^67.8^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~430~^3.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~454~^11.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05070~^~317~^17.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05070~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05070~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05070~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05070~^~421~^59.2^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05070~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~430~^4.0^0^^~4~^~BFYN~^~05066~^^^^^^^^^~11/01/2002~ -~05070~^~454~^5.0^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05071~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05071~^~317~^21.8^5^2.1^~1~^~A~^^^2^15.7^27.3^3^15.0^28.5^~2, 3~^~02/01/2013~ -~05071~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05071~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05071~^~421~^56.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05071~^~430~^2.9^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2002~ -~05071~^~454~^8.7^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~05072~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05072~^~317~^19.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05072~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05073~^~317~^28.1^5^3.0^~1~^~A~^^^2^18.1^35.8^3^18.5^37.6^~2, 3~^~02/01/2013~ -~05073~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05073~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05073~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05073~^~421~^70.3^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2011~ -~05073~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~430~^3.5^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05073~^~454~^10.8^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2011~ -~05074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05074~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05074~^~317~^18.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05074~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05074~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05074~^~421~^73.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05074~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~430~^3.4^0^^~4~^~BFSN~^~05073~^^^^^^^^^~04/01/2005~ -~05074~^~454~^5.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05075~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~317~^18.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05075~^~401~^0.2^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~421~^41.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~430~^2.3^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~454~^8.1^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05076~^~291~^0.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05076~^~317~^26.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05076~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05077~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05077~^~317~^20.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05077~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05078~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~317~^25.7^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05078~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~421~^70.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~430~^3.9^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~454~^7.2^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05079~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05079~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05079~^~317~^18.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05079~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05079~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05079~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05079~^~421~^56.4^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05079~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~430~^3.5^0^^~4~^~BFSN~^~05078~^^^^^^^^^~11/01/2002~ -~05079~^~454~^4.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05080~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~317~^21.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05080~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~421~^48.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~430~^2.8^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~454~^8.7^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05081~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05081~^~317~^18.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05081~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05082~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~317~^25.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05082~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05082~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~421~^63.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05082~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~430~^3.6^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~454~^6.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05083~^~317~^26.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05083~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05083~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05083~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05083~^~421~^69.7^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05083~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~430~^3.6^0^^~4~^~BFSN~^~05082~^^^^^^^^^~11/01/2002~ -~05083~^~454~^5.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05084~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~05084~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05084~^~317~^12.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05084~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05085~^~317~^21.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05085~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05086~^~317~^18.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05086~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05087~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05087~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05087~^~317~^17.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05087~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05087~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05087~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05087~^~421~^49.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05087~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~430~^3.9^0^^~4~^~BFSN~^~05066~^^^^^^^^^~12/01/2002~ -~05087~^~454~^4.2^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05088~^~317~^13.5^4^1.9^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05088~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05089~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05089~^~317~^20.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05089~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05090~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05090~^~317~^20.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05090~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05090~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05090~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05091~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~317~^18.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05091~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~421~^45.7^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~430~^2.1^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~454~^9.8^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05092~^~291~^0.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05092~^~317~^23.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05092~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05093~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05093~^~317~^19.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05093~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05094~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~317~^25.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~421~^67.6^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~430~^3.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~454~^6.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~05095~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05095~^~317~^17.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05095~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05095~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05095~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05095~^~421~^54.1^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05095~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~430~^3.9^0^^~4~^~BFSN~^~05094~^^^^^^^^^~11/01/2002~ -~05095~^~454~^4.6^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05096~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05096~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05096~^~317~^22.9^5^1.9^~1~^~A~^^^2^15.8^27.2^3^16.7^29.0^~2, 3~^~02/01/2013~ -~05096~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05096~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05096~^~421~^53.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05096~^~430~^2.9^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2002~ -~05096~^~454~^10.5^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05097~^~317~^20.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05097~^~326~^0.2^2^^~1~^~A~^^^1^0.1^0.3^^^^^~04/01/2009~ -~05097~^~328~^0.2^2^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~05097~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05098~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05098~^~317~^27.1^5^2.1^~1~^~A~^^^2^21.3^33.0^3^20.1^33.9^~2, 3~^~02/01/2013~ -~05098~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05098~^~421~^71.8^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05098~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05098~^~430~^3.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05098~^~454~^5.2^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05099~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05099~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05099~^~317~^17.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05099~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05099~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05099~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05099~^~421~^67.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05099~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~430~^3.6^0^^~4~^~BFSN~^~05098~^^^^^^^^^~11/01/2002~ -~05099~^~454~^4.9^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05100~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05100~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05100~^~317~^17.6^3^1.1^~1~^~A~^^^1^15.7^19.7^2^12.6^22.6^~2, 3~^~04/01/2013~ -~05100~^~326~^0.1^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05100~^~328~^0.1^0^^~1~^~AS~^~05071~^^^^^^^^^~04/01/2016~ -~05100~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05100~^~421~^82.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~05100~^~428~^23.7^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~05100~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05100~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05100~^~454~^9.0^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05101~^~291~^0.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05101~^~317~^25.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05101~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05102~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~05102~^~317~^21.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05102~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05103~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05103~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05103~^~317~^25.5^3^2.4^~1~^~A~^^^1^20.7^28.2^2^15.1^35.9^~2, 3~^~04/01/2013~ -~05103~^~326~^0.2^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05103~^~328~^0.2^0^^~1~^~AS~^~05071~^^^^^^^^^~05/01/2013~ -~05103~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05103~^~421~^111.3^0^^~4~^~BFPN~^~05100~^^^^^^^^^~04/01/2013~ -~05103~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05103~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05103~^~454~^12.2^0^^~4~^~BFPN~^~05100~^^^^^^^^^~04/01/2013~ -~05104~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05104~^~317~^18.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05104~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05104~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~05104~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05104~^~421~^51.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05104~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~430~^0.2^0^^~4~^~BFSN~^~05103~^^^^^^^^^~11/01/2002~ -~05104~^~454~^4.3^0^^~4~^~BFNN~^~05009~^^^^^^^^^~11/01/2006~ -~05105~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~317~^17.8^5^3.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05105~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05105~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05105~^~401~^1.2^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05105~^~421~^65.8^0^^~4~^~BFNN~^~05011~^^^^^^^^^~11/01/2006~ -~05105~^~430~^0.0^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2002~ -~05105~^~454~^8.5^0^^~4~^~BFNN~^~05011~^^^^^^^^^~11/01/2006~ -~05106~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05106~^~317~^25.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05106~^~326~^0.1^2^^~1~^~A~^^^1^0.1^0.1^^^^^~04/01/2009~ -~05106~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~05106~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05107~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05107~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05107~^~317~^24.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05107~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05107~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05107~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05107~^~421~^79.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05107~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05107~^~454~^5.8^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05108~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05108~^~317~^21.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05108~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05108~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05108~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05108~^~421~^70.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05108~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~430~^0.2^0^^~4~^~BFSN~^~05107~^^^^^^^^^~11/01/2002~ -~05108~^~454~^5.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05109~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05109~^~317~^11.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05109~^~401~^2.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05110~^~317~^15.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05110~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05111~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05112~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05112~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05112~^~317~^23.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05112~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05113~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05113~^~317~^16.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05113~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05114~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05114~^~317~^24.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05114~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05115~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05115~^~317~^54.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05115~^~401~^13.1^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05116~^~317~^100.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05116~^~401~^6.5^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05117~^~317~^17.8^5^3.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05117~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05118~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05118~^~317~^25.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05118~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05118~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05118~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05118~^~421~^76.8^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05118~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~05118~^~454~^5.6^0^^~4~^~BFNN~^~05013~^^^^^^^^^~11/01/2006~ -~05119~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05119~^~317~^13.5^4^1.1^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05119~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05120~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05120~^~317~^19.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05120~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05121~^~317~^12.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05121~^~401~^3.1^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05122~^~221~^0.0^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~291~^0.0^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~317~^21.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~326~^0.0^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~328~^0.0^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~401~^1.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~421~^67.2^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~429~^0.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~430~^1.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~454~^5.0^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05123~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05123~^~317~^14.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05123~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05124~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05124~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05124~^~317~^19.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05124~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05125~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05125~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05125~^~317~^15.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05125~^~401~^3.3^0^^~1~^^^^^^^^^^^~12/01/2002~ -~05125~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05125~^~430~^2.0^0^^~4~^~BFSN~^~05011~^^^^^^^^^~12/01/2002~ -~05126~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05126~^~317~^25.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05126~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05126~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05126~^~430~^3.1^0^^~4~^~BFSN~^~05125~^^^^^^^^^~12/01/2002~ -~05127~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05127~^~317~^56.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05127~^~401~^11.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05128~^~317~^90.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05128~^~401~^5.5^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05129~^~317~^17.8^5^3.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05129~^~401~^1.8^20^4.2e-02^~1~^^^^^^^^^^^~04/01/2003~ -~05129~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05130~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05130~^~317~^28.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05130~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05131~^~317~^13.5^4^1.9^~1~^~A~^^^^^^^^^^~04/01/1998~ -~05131~^~401~^4.6^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05131~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05132~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05132~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05132~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05133~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05133~^~317~^12.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05133~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05134~^~317~^19.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05134~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05135~^~317~^14.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05135~^~401~^1.7^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05135~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05136~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05136~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05136~^~317~^21.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05136~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05137~^~317~^55.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05137~^~401~^18.4^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05138~^~317~^95.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05138~^~401~^9.0^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05139~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05139~^~317~^12.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05139~^~328~^0.7^0^^~4~^~BFFN~^~05006~^^^^^^^^^~08/01/2009~ -~05139~^~401~^2.8^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~421~^31.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05139~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~430~^5.5^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05139~^~454~^4.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05140~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05140~^~317~^20.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05140~^~326~^0.1^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05140~^~328~^0.1^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05140~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05140~^~421~^50.4^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05140~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~430~^5.1^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05140~^~454~^7.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05141~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05141~^~317~^13.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05141~^~326~^0.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~05141~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05141~^~401~^5.8^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~421~^53.6^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05141~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~430~^2.8^0^^~4~^~BFSN~^~05142~^^^^^^^^^~11/01/2002~ -~05141~^~454~^6.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05142~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05142~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05142~^~317~^22.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05142~^~326~^0.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~05142~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05142~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05142~^~421~^65.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05142~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~430~^3.8^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05142~^~454~^8.4^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05143~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05143~^~317~^67.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05143~^~401~^4.5^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05144~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05144~^~317~^12.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05144~^~401~^5.2^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05145~^~317~^13.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05145~^~401~^6.2^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05146~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05146~^~317~^14.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05146~^~401~^4.2^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05147~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05147~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05147~^~326~^0.1^0^^~4~^~BFFN~^~05140~^^^^^^^^^~03/01/2009~ -~05147~^~328~^0.1^0^^~4~^~BFFN~^~05140~^^^^^^^^^~03/01/2009~ -~05147~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05147~^~421~^66.5^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05147~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~430~^5.1^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~05147~^~454~^9.2^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05148~^~317~^16.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05148~^~401~^7.2^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05149~^~317~^25.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05149~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05150~^~317~^68.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05150~^~401~^4.5^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05151~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05151~^~317~^16.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05151~^~401~^1.3^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05152~^~317~^17.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05152~^~401~^1.7^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05153~^~317~^15.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05153~^~401~^5.3^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05154~^~317~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05154~^~401~^6.0^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05155~^~317~^16.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05155~^~401~^6.0^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05156~^~317~^15.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05156~^~401~^6.0^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~05157~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05157~^~317~^16.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05157~^~401~^6.1^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05158~^~317~^17.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05158~^~401~^7.2^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05159~^~317~^18.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05159~^~401~^5.1^3^1.0^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05160~^~317~^13.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05160~^~401~^5.2^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05161~^~317~^13.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05161~^~401~^7.2^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05162~^~317~^15.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05162~^~401~^5.1^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05165~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~317~^21.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05165~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~421~^58.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05165~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~317~^29.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~421~^87.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~454~^3.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~317~^22.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~421~^60.2^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05167~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~317~^30.7^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~421~^88.9^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~454~^3.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05169~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05169~^~317~^10.1^2^^~1~^~A~^^^^9.3^10.8^^^^^~08/01/2012~ -~05169~^~326~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05169~^~421~^36.7^0^^~4~^~BFPN~^~05698~^^^^^^^^^~08/01/2012~ -~05169~^~430~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05170~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05170~^~317~^21.1^2^^~1~^~A~^^^^18.4^23.8^^^^^~08/01/2012~ -~05170~^~326~^1.4^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~328~^1.4^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05170~^~421~^73.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05170~^~454~^3.8^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05171~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~317~^49.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~326~^0.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~421~^160.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05171~^~454~^2.7^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~317~^71.1^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05172~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~421~^155.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05172~^~454~^2.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05173~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05173~^~317~^28.8^2^^~1~^~A~^^^1^25.5^32.1^1^^^^~08/01/2012~ -~05173~^~326~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~328~^0.5^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~401~^6.2^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05173~^~421~^89.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05173~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05174~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05174~^~317~^44.1^2^^~1~^~A~^^^1^42.3^46.0^1^^^^~08/01/2012~ -~05174~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05174~^~401~^6.3^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05174~^~421~^82.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05174~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05174~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05175~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05175~^~317~^35.4^2^^~1~^~A~^^^1^29.2^41.5^1^^^^~08/01/2012~ -~05175~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~328~^0.4^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~401~^3.0^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05175~^~421~^126.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05175~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05175~^~454~^3.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05176~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05176~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05176~^~317~^56.8^2^^~1~^~A~^^^1^52.9^60.7^1^^^^~08/01/2012~ -~05176~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05176~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2013~ -~05176~^~421~^172.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05176~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05176~^~454~^3.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05177~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05177~^~317~^68.7^4^3.9^~1~^~A~^^^1^60.1^78.6^3^56.2^81.0^~2, 3~^~08/01/2012~ -~05177~^~326~^1.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05177~^~401~^24.5^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05177~^~421~^221.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05177~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05177~^~454~^3.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05178~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05178~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05178~^~317~^102.3^4^2.2^~1~^~A~^^^1^97.4^107.0^3^95.2^109.3^~2, 3~^~08/01/2012~ -~05178~^~401~^22.6^1^^~1~^~A~^^^^^^^^^^~09/01/2012~ -~05178~^~421~^220.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05178~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05178~^~454~^2.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~05179~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05179~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05179~^~326~^0.3^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05179~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05179~^~421~^54.0^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05180~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05180~^~317~^36.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05180~^~326~^0.3^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05180~^~421~^77.7^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05181~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~317~^20.7^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~421~^50.4^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~317~^29.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~421~^82.5^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2002~ -~05182~^~454~^5.9^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~317~^20.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~326~^0.5^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~421~^63.8^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~317~^30.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~421~^93.2^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2002~ -~05184~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~454~^0.5^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05185~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05185~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~08/01/2012~ -~05185~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05185~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05185~^~421~^53.0^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05185~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05185~^~454~^2.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05186~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05186~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05186~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~08/01/2012~ -~05186~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05186~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05186~^~421~^83.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05186~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~05186~^~454~^6.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05187~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05187~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05187~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~08/01/2012~ -~05187~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05187~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05187~^~421~^69.6^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~430~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2012~ -~05188~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05188~^~317~^31.4^6^1.7^~1~^~A~^^^^25.8^35.6^^^^^~08/01/2012~ -~05188~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05188~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05188~^~421~^95.8^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05188~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05190~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05190~^~317~^37.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05190~^~326~^0.0^0^^~4~^~BFFN~^~05051~^^^^^^^^^~03/01/2009~ -~05190~^~328~^0.0^0^^~4~^~BFFN~^~05051~^^^^^^^^^~03/01/2009~ -~05190~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05190~^~421~^67.6^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05190~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~430~^4.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~05190~^~454~^5.7^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05191~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05191~^~317~^22.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05191~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05192~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05192~^~317~^29.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05192~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05193~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05193~^~317~^26.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05193~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05194~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05194~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05194~^~317~^37.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05194~^~326~^0.1^0^^~4~^~BFFN~^~05078~^^^^^^^^^~03/01/2009~ -~05194~^~328~^0.1^0^^~4~^~BFFN~^~05078~^^^^^^^^^~03/01/2009~ -~05194~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05194~^~421~^70.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05194~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05194~^~454~^6.0^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05195~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05195~^~317~^22.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05195~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05196~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05196~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05196~^~317~^29.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05196~^~326~^0.1^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~05196~^~328~^0.1^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~05196~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05196~^~421~^68.6^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05196~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~05196~^~454~^5.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05200~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05200~^~313~^20.9^2^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~05200~^~317~^33.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05200~^~326~^0.0^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05200~^~328~^0.0^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05200~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05200~^~421~^69.7^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05200~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~430~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~05200~^~454~^5.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05215~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05215~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~01/01/2013~ -~05215~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05215~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05215~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05216~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05216~^~317~^31.4^6^1.7^~1~^~A~^^^^25.8^35.6^^^^^~01/01/2013~ -~05216~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05216~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05216~^~421~^95.8^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05216~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05216~^~454~^6.5^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05219~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~05219~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05219~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~01/01/2013~ -~05219~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05219~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05219~^~421~^61.3^0^^~4~^~BFPN~^~05697~^^^^^^^^^~01/01/2013~ -~05219~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05219~^~454~^2.5^0^^~4~^~BFPN~^~05697~^^^^^^^^^~01/01/2013~ -~05220~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05220~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05220~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05220~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05220~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05220~^~421~^84.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~01/01/2013~ -~05220~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~05220~^~454~^6.1^0^^~4~^~BFNN~^~05013~^^^^^^^^^~01/01/2013~ -~05227~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05227~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~01/01/2013~ -~05227~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05227~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05228~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05228~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05228~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05228~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05228~^~421~^84.7^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05228~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~05228~^~454~^6.2^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05236~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05236~^~317~^144.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05236~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05277~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05277~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05277~^~317~^15.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05277~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05277~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05277~^~401~^2.0^6^0.0^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~421~^64.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05277~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~430~^1.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~05277~^~454~^4.7^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05282~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05282~^~317~^44.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~05282~^~401~^2.0^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~05284~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05284~^~317~^25.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05284~^~326~^0.3^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~05284~^~328~^0.3^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~05284~^~401~^2.0^6^0.0^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~421~^74.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05284~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~430~^0.7^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~05284~^~454~^5.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05285~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05285~^~317~^26.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05285~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05286~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05286~^~317~^19.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~05286~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05293~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05293~^~317~^25.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05293~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05294~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05294~^~317~^27.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05294~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05295~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05295~^~317~^26.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05295~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05300~^~317~^20.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05300~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05301~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05301~^~317~^10.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05301~^~401~^1.5^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05302~^~317~^14.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~05302~^~401~^3.0^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05303~^~317~^15.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~05303~^~401~^2.0^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05304~^~317~^26.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~05304~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05305~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~05305~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05305~^~317~^21.9^12^0.9^~1~^~A~^^^1^18.1^26.9^11^19.7^24.0^~2, 3~^~04/01/2010~ -~05305~^~328~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2010~ -~05305~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05305~^~421~^50.8^3^1.5^~1~^~AS~^^^1^47.9^53.0^2^44.3^57.3^~2, 3~^~04/01/2010~ -~05305~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05305~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05305~^~454~^6.3^3^0.4^~1~^~A~^^^1^5.4^7.1^2^4.2^8.3^~2, 3~^~04/01/2010~ -~05306~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05306~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05306~^~317~^31.1^24^1.1^~1~^~A~^^^1^15.4^40.5^23^28.6^33.5^~2, 3~^~04/01/2010~ -~05306~^~326~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05306~^~328~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05306~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05306~^~421~^78.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05306~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05306~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05306~^~454~^10.4^2^^~1~^~A~^^^1^8.4^12.3^1^^^^~04/01/2010~ -~05307~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~05307~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05307~^~317~^11.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05307~^~401~^0.5^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05307~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05308~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05308~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05308~^~313~^14.7^37^2.0^~1~^~A~^^^3^3.7^25.0^11^10.1^19.3^~4~^~02/01/2006~ -~05308~^~317~^15.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05308~^~326~^0.1^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05308~^~328~^0.1^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~05308~^~401~^0.5^0^^~1~^^^^^^^^^^^~12/01/2002~ -~05308~^~421~^56.5^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05308~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05308~^~430~^2.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~05308~^~454~^4.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~05309~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~05309~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05309~^~317~^15.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05309~^~401~^0.6^0^^~1~^^^^^^^^^^^~04/01/2003~ -~05309~^~430~^2.4^0^^~4~^~CAZN~^^^^^^^^^^~10/01/2002~ -~05310~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05310~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05310~^~317~^20.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~05310~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05310~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05310~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/2002~ -~05310~^~421~^66.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05310~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05310~^~430~^2.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~05310~^~454~^4.8^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05311~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~05311~^~317~^18.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05311~^~326~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~05311~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05311~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~421~^73.8^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05311~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05311~^~430~^2.3^0^^~4~^~BFSN~^~05013~^^^^^^^^^~12/01/2002~ -~05311~^~454~^5.4^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~05312~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~291~^0.6^3^0.1^~1~^~A~^^^1^0.3^0.8^2^-6.2e-02^1.1^~1, 2, 3~^~04/01/2004~ -~05312~^~317~^33.2^3^2.7^~1~^~A~^^^1^27.7^36.4^2^21.3^44.9^~2, 3~^~04/01/2004~ -~05312~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~291~^0.9^3^0.2^~1~^~A~^^^1^0.6^1.5^2^-0.2^2.1^~2, 3~^~04/01/2004~ -~05313~^~317~^41.7^3^5.3^~1~^~A~^^^1^32.8^51.2^2^18.8^64.5^~2, 3~^~04/01/2004~ -~05313~^~401~^0.5^3^0.2^~1~^~A~^^^1^0.0^0.8^2^-0.5^1.4^~1, 2, 3~^~04/01/2004~ -~05314~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~317~^26.4^3^3.9^~1~^~A~^^^1^19.3^33.0^2^9.3^43.4^~2, 3~^~04/01/2013~ -~05314~^~326~^0.0^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2013~ -~05314~^~328~^0.0^0^^~1~^~AS~^~05071~^^^^^^^^^~04/01/2016~ -~05314~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~421~^74.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~05314~^~428~^10.5^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~05314~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05314~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05314~^~454~^2.5^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~05315~^~317~^26.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05315~^~401~^2.8^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05316~^~317~^29.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05316~^~401~^3.2^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~317~^21.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05317~^~401~^1.5^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~317~^21.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05318~^~401~^2.3^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05319~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~317~^27.4^4^2.6^~1~^~A~^^^1^21.1^32.1^3^18.9^35.9^~2, 3~^~05/01/2012~ -~05319~^~328~^0.0^0^^~4~^~BFFN~^~05073~^^^^^^^^^~05/01/2013~ -~05319~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~421~^80.1^4^3.0^~1~^~AS~^^^1^73.4^86.4^3^70.4^89.6^~2, 3~^~05/01/2012~ -~05319~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05319~^~454~^11.1^4^1.1^~1~^~A~^^^1^8.0^13.7^3^7.3^14.8^~2, 3~^~05/01/2012~ -~05320~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~291~^0.5^5^0.2^~1~^~A~^^^1^0.0^1.3^4^-0.1^1.1^~1, 4~^~04/01/2004~ -~05320~^~317~^34.2^6^3.2^~1~^~A~^^^1^21.9^43.3^5^25.8^42.6^~4~^~04/01/2004~ -~05320~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~04/01/2004~ -~05323~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~291~^1.2^3^0.6^~1~^~A~^^^1^0.3^2.4^2^-1.3^3.8^~2, 3~^~02/01/2007~ -~05323~^~317~^21.4^6^0.8^~1~^~A~^^^1^18.9^24.3^5^19.1^23.6^~2, 3~^~02/01/2007~ -~05323~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~05323~^~421~^44.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~430~^11.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~05323~^~454~^22.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05324~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~317~^23.3^2^^~1~^~A~^^^1^21.2^25.4^1^^^^~02/01/2007~ -~05324~^~328~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~05324~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~421~^33.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~430~^4.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2007~ -~05324~^~454~^25.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~317~^30.6^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~421~^40.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05326~^~430~^4.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~05326~^~454~^30.2^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05327~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~291~^1.1^2^^~1~^~A~^^^1^0.9^1.4^1^^^^~02/01/2007~ -~05327~^~317~^24.7^3^2.4^~1~^~A~^^^1^20.4^28.9^2^14.1^35.2^~2, 3~^~02/01/2007~ -~05327~^~328~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2012~ -~05327~^~401~^0.8^0^^~4~^~BFPN~^~05062~^^^^^^^^^~02/01/2007~ -~05327~^~421~^96.4^0^^~4~^~BFNN~^~05062~^^^^^^^^^~02/01/2007~ -~05327~^~429~^15.3^2^^~1~^~A~^^^1^0.0^30.5^1^^^^~02/01/2007~ -~05327~^~430~^14.7^2^^~1~^~A~^^^1^5.9^23.5^1^^^^~02/01/2007~ -~05327~^~454~^12.5^0^^~4~^~BFNN~^~05062~^^^^^^^^^~02/01/2007~ -~05332~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~317~^10.2^4^0.5^~1~^~A~^^^1^9.3^11.4^3^8.5^11.9^~4~^~04/01/2007~ -~05332~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~421~^58.8^0^^~4~^~BFNN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~430~^0.8^0^^~4~^~BFFN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~454~^7.7^0^^~4~^~BFNN~^~05006~^^^^^^^^^~05/01/2007~ -~05333~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~317~^14.3^4^0.2^~1~^~A~^^^1^13.5^14.8^3^13.4^15.1^~4~^~05/01/2007~ -~05333~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~421~^59.0^0^^~4~^~BFNN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~430~^2.1^0^^~4~^~BFSN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~454~^5.0^0^^~4~^~BFNN~^~05009~^^^^^^^^^~05/01/2007~ -~05334~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~317~^23.1^4^2.8^~1~^~A~^^^1^18.3^29.3^3^14.0^32.2^~2, 3~^~05/01/2012~ -~05334~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05334~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~421~^68.0^4^2.4^~1~^~AS~^^^1^61.0^72.3^3^60.0^75.9^~2, 3~^~05/01/2012~ -~05334~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05334~^~454~^10.7^4^1.6^~1~^~A~^^^1^8.1^15.3^3^5.2^16.0^~2, 3~^~05/01/2012~ -~05335~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05335~^~317~^3.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~05335~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05335~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05335~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05335~^~421~^13.3^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2007~ -~05335~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05335~^~430~^0.2^0^^~4~^~BFSN~^~05103~^^^^^^^^^~09/01/2004~ -~05339~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~317~^51.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05339~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~421~^69.5^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05341~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~317~^48.3^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~421~^63.9^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~05341~^~428~^25.6^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~454~^6.6^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05342~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~05342~^~317~^39.1^3^6.8^~1~^~A~^^^1^27.3^51.1^2^9.5^68.6^~2, 3~^~05/01/2014~ -~05342~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2015~ -~05342~^~328~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2015~ -~05342~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~421~^68.7^0^^~4~^~BFPN~^~05346~^^^^^^^^^~06/01/2014~ -~05342~^~430~^3.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2015~ -~05342~^~454~^5.8^0^^~4~^~BFPN~^~05346~^^^^^^^^^~06/01/2014~ -~05343~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~317~^38.2^5^5.0^~1~^~A~^^^1^21.1^48.6^4^24.0^52.2^~2, 3~^~03/01/2008~ -~05343~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~421~^86.1^4^6.6^~1~^~AS~^^^1^71.9^98.0^3^64.7^107.3^~2, 3~^~03/01/2008~ -~05343~^~428~^35.7^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~454~^12.8^4^1.9^~1~^~A~^^^1^7.4^16.0^3^6.6^18.9^~2, 3~^~03/01/2008~ -~05344~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~317~^18.5^5^1.1^~1~^~A~^^^1^15.8^22.5^4^15.2^21.6^~2, 3~^~03/01/2008~ -~05344~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~421~^45.7^4^2.3^~1~^~AS~^^^1^40.3^50.8^3^38.0^53.2^~2, 3~^~03/01/2008~ -~05344~^~428~^20.9^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05344~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~05344~^~454~^7.0^4^1.1^~1~^~A~^^^1^4.6^9.8^3^3.3^10.6^~2, 3~^~03/01/2008~ -~05345~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~317~^27.0^4^5.9^~1~^~A~^^^1^17.4^44.2^3^8.1^45.8^~2, 3~^~03/01/2008~ -~05345~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~421~^67.9^4^6.4^~1~^~AS~^^^1^59.3^86.9^3^47.2^88.4^~2, 3~^~03/01/2008~ -~05345~^~428~^24.0^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05345~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~454~^8.8^4^0.9^~1~^~A~^^^1^6.6^10.8^3^5.7^11.7^~2, 3~^~03/01/2008~ -~05346~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~317~^51.1^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~421~^67.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~05346~^~428~^27.5^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~454~^5.7^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05347~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~291~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~317~^40.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~421~^58.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~428~^24.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~454~^6.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~291~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~317~^30.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~421~^61.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~428~^15.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~454~^6.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~291~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~317~^34.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~421~^79.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~428~^33.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~454~^11.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~291~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~317~^25.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~421~^64.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~428~^23.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~454~^8.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~291~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~317~^40.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~421~^60.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~428~^25.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~454~^6.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05356~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~317~^16.6^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05356~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05356~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~421~^39.3^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05356~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05357~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~317~^35.4^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~328~^0.1^0^^~4~^~BFFN~^~05073~^^^^^^^^^~05/01/2013~ -~05357~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~421~^51.4^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~454~^4.3^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05358~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~317~^22.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05358~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~421~^57.1^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~454~^7.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~317~^25.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05359~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~421~^73.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~454~^9.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~317~^22.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05361~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~421~^62.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~454~^8.8^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~317~^38.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05362~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~421~^58.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05363~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05621~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~317~^30.5^2^^~1~^~A~^^^1^29.0^32.0^1^^^^~07/01/2001~ -~05621~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~317~^43.5^2^^~1~^~A~^^^1^42.0^45.0^1^^^^~07/01/2001~ -~05622~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~430~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2002~ -~05623~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~317~^32.5^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05624~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~317~^46.1^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05625~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~317~^31.5^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~317~^32.5^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~401~^0.0^14^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05627~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~317~^52.1^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~401~^0.0^5^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05628~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~317~^31.4^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~401~^0.0^14^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05629~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~317~^49.6^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~401~^0.0^5^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05630~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~317~^36.3^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~317~^29.8^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05632~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~317~^43.5^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05641~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~317~^33.0^2^^~1~^~A~^^^1^19.0^47.0^1^^^^~07/01/2001~ -~05641~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~317~^33.5^2^^~1~^~A~^^^1^33.0^34.0^1^^^^~07/01/2001~ -~05642~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~05642~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~05642~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~421~^65.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05642~^~430~^3.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2002~ -~05642~^~454~^9.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05643~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~317~^34.9^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~317~^36.4^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~317~^36.5^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~317~^37.5^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~317~^37.9^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~317~^36.6^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~317~^37.9^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~317~^38.0^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~317~^33.8^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~317~^46.5^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~317~^35.8^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~317~^36.4^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~317~^35.2^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~317~^37.5^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~317~^35.4^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~317~^36.6^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~430~^3.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2002~ -~05661~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~317~^88.2^4^11.4^~1~^~A~^^^1^56.9^112.0^3^51.7^124.6^~2, 3~^~02/01/2003~ -~05661~^~401~^2.7^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~421~^326.8^4^20.4^~1~^~AS~^^^1^301.1^387.6^3^261.6^392.0^~2, 3~^~08/01/2007~ -~05661~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~454~^21.0^4^3.4^~1~^~A~^^^1^14.1^30.5^3^10.1^31.9^~2, 3~^~08/01/2007~ -~05662~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~317~^22.1^4^1.8^~1~^~A~^^^1^18.2^26.5^3^16.2^27.9^~2, 3~^~04/01/2010~ -~05662~^~328~^0.4^40^^~13~^~AI~^^^1^0.3^0.4^^^^~2~^~04/01/2010~ -~05662~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~421~^47.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05662~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05662~^~454~^5.4^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~317~^31.4^4^2.9^~1~^~A~^^^1^26.7^39.4^3^21.8^40.8^~2, 3~^~04/01/2010~ -~05663~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05663~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05663~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~421~^64.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05663~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05663~^~454~^7.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05664~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~317~^28.0^4^4.3^~1~^~A~^^^1^15.4^34.8^3^14.3^41.7^~2, 3~^~04/01/2010~ -~05664~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05664~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05664~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~421~^58.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05664~^~430~^0.0^1^^~1~^^^^^^^^^^~1~^~07/01/2010~ -~05664~^~454~^6.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05665~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~317~^19.0^4^0.3^~1~^~A~^^^1^18.1^19.4^3^18.0^20.0^~2, 3~^~04/01/2010~ -~05665~^~328~^0.4^40^^~13~^~AI~^^^1^0.3^0.4^^^^~2~^~04/01/2010~ -~05665~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~421~^53.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05665~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05665~^~454~^7.1^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~317~^28.4^4^1.3^~1~^~A~^^^1^24.5^30.3^3^24.0^32.6^~2, 3~^~04/01/2010~ -~05666~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05666~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05666~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~421~^78.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05666~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05666~^~454~^12.3^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~317~^27.5^4^1.0^~1~^~A~^^^1^24.8^29.8^3^24.1^30.9^~2, 3~^~04/01/2010~ -~05667~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05667~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05667~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~421~^77.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05667~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05667~^~454~^8.4^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~317~^24.6^4^1.2^~1~^~A~^^^1^21.6^26.9^3^20.5^28.6^~2, 3~^~04/01/2010~ -~05668~^~328~^0.4^40^^~13~^~AI~^^^1^0.3^0.4^^^^~2~^~04/01/2010~ -~05668~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~421~^51.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~05668~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05668~^~454~^6.4^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~317~^36.1^4^2.3^~1~^~A~^^^1^29.8^40.5^3^28.5^43.5^~2, 3~^~04/01/2010~ -~05669~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05669~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05669~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~421~^76.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05669~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05669~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05670~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~317~^35.1^4^2.0^~1~^~A~^^^1^29.7^39.2^3^28.7^41.5^~2, 3~^~04/01/2010~ -~05670~^~326~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05670~^~328~^0.2^45^^~13~^~AI~^^^1^0.1^0.3^^^^~2~^~04/01/2010~ -~05670~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~421~^79.1^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05670~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~05670~^~454~^9.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~05671~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~317~^27.9^5^2.6^~1~^~A~^^^1^20.3^34.5^4^20.6^35.2^~2, 3~^~04/01/2011~ -~05671~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05671~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~421~^72.0^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2011~ -~05671~^~430~^0.2^0^^~4~^~BFSN~^~05062~^^^^^^^^^~04/01/2011~ -~05671~^~454~^11.1^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2011~ -~05672~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~317~^29.2^4^2.7^~1~^~A~^^^1^21.8^35.1^3^20.3^38.1^~2, 3~^~04/01/2011~ -~05672~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05672~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~421~^68.3^0^^~4~^~BFPN~^~05096~^^^^^^^^^~04/01/2011~ -~05672~^~430~^0.3^0^^~4~^~BFSN~^~05062~^^^^^^^^^~04/01/2011~ -~05672~^~454~^13.4^0^^~4~^~BFPN~^~05096~^^^^^^^^^~04/01/2011~ -~05673~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~317~^16.0^4^1.1^~1~^~A~^^^1^13.0^18.6^3^12.3^19.6^~2, 3~^~04/01/2011~ -~05673~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05673~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~421~^43.1^0^^~4~^~BFPN~^~05674~^^^^^^^^^~04/01/2011~ -~05673~^~430~^0.4^0^^~4~^~BFSN~^~05062~^^^^^^^^^~04/01/2011~ -~05673~^~454~^12.7^0^^~4~^~BFPN~^~05674~^^^^^^^^^~04/01/2011~ -~05674~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~317~^10.1^4^0.7^~1~^~A~^^^1^8.7^12.0^3^7.8^12.3^~2, 3~^~04/01/2011~ -~05674~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05674~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~421~^28.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05674~^~430~^0.4^0^^~4~^~BFSN~^~05062~^^^^^^^^^~04/01/2011~ -~05674~^~454~^8.3^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~317~^17.4^4^1.0^~1~^~A~^^^1^14.6^19.1^3^14.1^20.6^~2, 3~^~04/01/2011~ -~05675~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~05675~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~421~^48.9^0^^~4~^~BFPN~^~05674~^^^^^^^^^~04/01/2011~ -~05675~^~430~^0.5^0^^~4~^~BFSN~^~05062~^^^^^^^^^~04/01/2011~ -~05675~^~454~^14.4^0^^~4~^~BFPN~^~05674~^^^^^^^^^~04/01/2011~ -~05676~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~317~^26.4^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~421~^68.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~430~^0.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~454~^11.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~317~^26.6^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~05677~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~421~^63.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~430~^0.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~454~^13.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05678~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~317~^22.4^3^3.3^~1~^~A~^^^2^17.2^27.1^1^-19.4^64.3^~2, 3~^~02/01/2013~ -~05678~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05678~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~421~^75.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05678~^~428~^9.5^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~454~^11.8^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~317~^30.8^3^3.6^~1~^~A~^^^2^26.0^38.7^1^-15.7^77.3^~2, 3~^~02/01/2013~ -~05679~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05679~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~421~^115.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05679~^~428~^12.7^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~454~^15.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05680~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~317~^29.8^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~326~^0.1^0^^~4~^~BFFN~^~05671~^^^^^^^^^~06/01/2011~ -~05680~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~421~^69.2^0^^~4~^~BFPN~^~05071~^^^^^^^^^~06/01/2011~ -~05680~^~430~^3.7^0^^~4~^~BFSN~^~05071~^^^^^^^^^~06/01/2011~ -~05680~^~454~^10.7^0^^~4~^~BFPN~^~05071~^^^^^^^^^~06/01/2011~ -~05681~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~317~^27.2^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~326~^0.3^0^^~4~^~BFFN~^~05672~^^^^^^^^^~07/01/2011~ -~05681~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~421~^64.0^0^^~4~^~BFPN~^~05672~^^^^^^^^^~07/01/2011~ -~05681~^~430~^0.2^0^^~4~^~BFSN~^~05062~^^^^^^^^^~07/01/2011~ -~05681~^~454~^12.6^0^^~4~^~BFPN~^~05672~^^^^^^^^^~07/01/2011~ -~05682~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~317~^20.9^3^2.8^~1~^~A~^^^2^16.0^24.4^1^-14.6^56.4^~2, 3~^~02/01/2013~ -~05682~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05682~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~421~^75.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05682~^~428~^8.5^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~454~^12.0^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~317~^33.7^3^1.7^~1~^~A~^^^2^26.0^40.3^1^11.0^56.4^~2, 3~^~02/01/2013~ -~05683~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05683~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~421~^99.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05683~^~428~^11.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~454~^14.7^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05684~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~317~^15.6^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~326~^0.1^0^^~4~^~BFFN~^~05673~^^^^^^^^^~07/01/2011~ -~05684~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~421~^36.2^0^^~4~^~BFPN~^~05673~^^^^^^^^^~07/01/2011~ -~05684~^~430~^0.4^0^^~4~^~BFSN~^~05062~^^^^^^^^^~07/01/2011~ -~05684~^~454~^10.6^0^^~4~^~BFPN~^~05673~^^^^^^^^^~07/01/2011~ -~05685~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~317~^10.8^2^^~1~^~A~^^^2^9.5^12.1^^^^^~02/01/2013~ -~05685~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~328~^0.4^1^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~05685~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~421~^28.9^0^^~4~^~BFPN~^~05674~^^^^^^^^^~07/01/2011~ -~05685~^~428~^19.5^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~454~^8.5^0^^~4~^~BFPN~^~05674~^^^^^^^^^~07/01/2011~ -~05686~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~317~^20.0^2^^~1~^~A~^^^2^19.2^20.8^^^^^~02/01/2013~ -~05686~^~326~^0.1^0^^~4~^~BFFN~^~05675~^^^^^^^^^~06/01/2014~ -~05686~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~421~^49.6^0^^~4~^~BFPN~^~05675~^^^^^^^^^~06/01/2014~ -~05686~^~428~^19.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05686~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05686~^~430~^0.5^0^^~4~^~BFSN~^~05062~^^^^^^^^^~06/01/2014~ -~05686~^~454~^14.5^0^^~4~^~BFPN~^~05675~^^^^^^^^^~06/01/2014~ -~05687~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~317~^27.9^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~421~^64.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~430~^3.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~454~^10.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~317~^20.8^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~421~^68.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~428~^11.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~454~^11.3^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~317~^29.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~421~^109.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~428~^13.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~454~^15.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05690~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~317~^24.7^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~421~^58.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~430~^0.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~454~^12.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~317~^17.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~421~^60.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~428~^12.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~454~^10.9^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~317~^31.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~421~^93.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~428~^13.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~454~^15.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05693~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~317~^41.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~05693~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~421~^55.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05693~^~454~^5.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05694~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~317~^22.4^6^1.6^~1~^~A~^^^1^15.0^25.8^5^18.2^26.5^~2, 3~^~08/01/2012~ -~05694~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05694~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05694~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05694~^~454~^7.0^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~317~^31.4^6^1.7^~1~^~A~^^^1^25.8^35.6^5^26.9^35.9^~2, 3~^~08/01/2012~ -~05695~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05695~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~421~^90.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05695~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05695~^~454~^6.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~317~^22.7^6^1.9^~1~^~A~^^^1^14.0^27.4^5^17.6^27.6^~2, 3~^~08/01/2012~ -~05696~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05696~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~421~^48.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05696~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05696~^~454~^2.5^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~317~^30.2^6^2.0^~1~^~A~^^^1^22.8^35.8^5^24.8^35.5^~2, 3~^~08/01/2012~ -~05697~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05697~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~421~^69.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05697~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05697~^~454~^2.9^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~317~^10.1^2^^~1~^~A~^^^1^9.3^10.8^1^^^^~08/01/2012~ -~05698~^~326~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~421~^34.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~430~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05698~^~454~^2.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~317~^21.1^2^^~1~^~A~^^^1^18.4^23.8^1^^^^~08/01/2012~ -~05699~^~326~^1.4^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~328~^1.4^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~421~^73.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05699~^~454~^3.8^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05700~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~317~^19.9^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~326~^0.5^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~421~^57.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~454~^6.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~317~^30.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~421~^88.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~454~^5.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~317~^20.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~421~^46.1^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~454~^2.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~317~^29.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~421~^70.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~454~^3.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~317~^22.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~421~^52.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~454~^3.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~317~^30.7^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~421~^78.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~454~^4.3^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~317~^20.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~421~^50.8^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~454~^4.0^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~317~^29.6^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~421~^77.7^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~454~^4.2^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05708~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~317~^22.3^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05708~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05708~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~421~^64.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05708~^~430~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05708~^~454~^2.6^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~317~^28.9^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05709~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05709~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~421~^74.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05709~^~454~^2.8^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~317~^22.1^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05710~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~421~^52.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05710~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05710~^~454~^2.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05711~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~317~^30.7^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05711~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05711~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05711~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~421~^76.4^0^^~4~^~BFPN~^~05697~^^^^^^^^^~04/01/2013~ -~05711~^~430~^0.0^0^^~4~^~BFNN~^~05186~^^^^^^^^^~01/01/2013~ -~05711~^~454~^3.2^0^^~4~^~BFPN~^~05697~^^^^^^^^^~04/01/2013~ -~05712~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~317~^21.6^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05712~^~326~^0.2^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~328~^0.2^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~ -~05712~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~421~^50.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05712~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05713~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~317~^30.6^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05713~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05713~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~421~^78.1^0^^~4~^~BFPN~^~05697~^^^^^^^^^~01/01/2013~ -~05713~^~430~^0.0^0^^~4~^~BFNN~^~05186~^^^^^^^^^~01/01/2013~ -~05713~^~454~^3.3^0^^~4~^~BFPN~^~05697~^^^^^^^^^~01/01/2013~ -~05714~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~317~^11.2^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05714~^~326~^0.7^2^^~1~^~A~^^^1^0.7^0.8^1^^^^~01/01/2013~ -~05714~^~328~^0.7^2^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~421~^40.7^0^^~4~^~BFPN~^~05698~^^^^^^^^^~01/01/2013~ -~05714~^~430~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05714~^~454~^2.5^0^^~4~^~BFPN~^~05698~^^^^^^^^^~01/01/2013~ -~05715~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~317~^20.2^0^^~4~^~BFNN~^~05169~^^^^^^^^^~01/01/2013~ -~05715~^~326~^0.8^2^^~1~^~A~^^^1^0.7^0.9^1^^^^~01/01/2013~ -~05715~^~328~^0.8^2^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~421~^75.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05715~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05715~^~454~^3.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05716~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~317~^21.2^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05716~^~326~^0.4^2^^~1~^~A~^^^1^0.3^0.5^1^^^^~01/01/2013~ -~05716~^~328~^0.4^2^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05716~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~421~^75.6^0^^~4~^~BFPN~^~05717~^^^^^^^^^~01/01/2013~ -~05716~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05716~^~454~^5.9^0^^~4~^~BFPN~^~05717~^^^^^^^^^~01/01/2013~ -~05717~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~317~^21.5^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05717~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05717~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~421~^75.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05717~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05717~^~454~^5.9^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05718~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05718~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~421~^69.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05718~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05718~^~454~^2.9^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~01/01/2013~ -~05719~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05719~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05719~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05719~^~454~^7.0^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05720~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05720~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~421~^69.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05720~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05720~^~454~^2.9^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~01/01/2013~ -~05721~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05721~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~421~^48.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05721~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05721~^~454~^2.5^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~317~^29.3^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05722~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05722~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~421~^103.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05722~^~430~^0.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05722~^~454~^7.5^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~317~^31.0^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2013~ -~05723~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05723~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~421~^118.1^0^^~4~^~BFPN~^~05722~^^^^^^^^^~01/01/2013~ -~05723~^~430~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05724~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~01/01/2013~ -~05724~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05724~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05724~^~454~^7.0^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05725~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~317~^31.4^6^1.7^~1~^~A~^^^^25.8^35.6^^^^^~01/01/2013~ -~05725~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05725~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05725~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~421~^90.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05725~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~05725~^~454~^6.2^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~01/01/2013~ -~05726~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05726~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05726~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05726~^~454~^7.0^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05727~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~317~^20.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~421~^61.0^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~454~^2.6^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05728~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~317~^31.4^6^1.7^~1~^~A~^^^^25.8^35.6^^^^^~01/01/2013~ -~05728~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05728~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~421~^90.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05728~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05728~^~454~^6.2^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~01/01/2013~ -~05729~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05729~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~421~^48.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05729~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05729~^~454~^2.5^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05730~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05730~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~421~^69.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05730~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05730~^~454~^2.9^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05732~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~317~^20.4^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~421~^50.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~454~^2.3^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~317~^29.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05733~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~421~^6.6^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~454~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~317~^18.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~328~^0.5^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~421~^46.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~317~^28.4^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~421~^77.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~454~^3.4^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~317~^20.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~326~^0.5^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~421~^72.5^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~454~^5.6^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~317~^29.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~421~^113.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~454~^0.4^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05738~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~317~^22.7^6^1.9^~1~^~A~^^^^14.0^27.4^^^^^~01/01/2013~ -~05738~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05738~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~421~^65.5^0^^~4~^~BFPN~^~05186~^^^^^^^^^~01/01/2013~ -~05738~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05739~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~317~^30.2^6^2.0^~1~^~A~^^^^22.8^35.8^^^^^~01/01/2013~ -~05739~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05739~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~421~^104.2^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05739~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05739~^~454~^7.1^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05740~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~317~^22.4^6^1.6^~1~^~A~^^^^15.0^25.8^^^^^~01/01/2013~ -~05740~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05740~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~421~^69.6^0^^~4~^~BFPN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05740~^~454~^7.8^0^^~4~^~BFPN~^~05694~^^^^^^^^^~01/01/2013~ -~05741~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~317~^31.4^6^1.7^~1~^~A~^^^^25.8^35.6^^^^^~01/01/2013~ -~05741~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05741~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~421~^95.8^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05741~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~05741~^~454~^6.5^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05742~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~317~^19.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~421~^69.9^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~454~^5.3^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~317~^27.3^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~421~^96.8^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~454~^6.9^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~317~^18.1^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~326~^0.6^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~421~^53.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~454~^5.3^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~317~^28.0^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~326~^0.5^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~421~^70.8^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~454~^3.1^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05746~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~317~^31.9^3^4.1^~1~^~A~^^^1^24.1^38.3^2^13.9^49.7^~2, 3~^~04/01/2013~ -~05746~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05746~^~328~^0.0^0^^~1~^~AS~^~05071~^^^^^^^^^~04/01/2013~ -~05746~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~421~^117.0^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2013~ -~05746~^~430~^4.3^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~ -~05746~^~454~^10.0^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2013~ -~05747~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~317~^28.4^3^3.2^~1~^~A~^^^1^22.1^33.1^2^14.3^42.4^~2, 3~^~04/01/2013~ -~05747~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05747~^~328~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05747~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~421~^111.4^0^^~4~^~BFPN~^~05062~^^^^^^^^^~08/01/2015~ -~05747~^~428~^11.1^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~05747~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05747~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~05747~^~454~^9.5^0^^~4~^~BFPN~^~05062~^^^^^^^^^~08/01/2015~ -~05748~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~317~^40.2^3^7.5^~1~^~A~^^^1^26.0^51.9^2^7.5^72.8^~2, 3~^~04/01/2013~ -~05748~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05748~^~328~^0.0^0^^~1~^~AS~^~05071~^^^^^^^^^~04/01/2013~ -~05748~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~317~^42.4^3^9.8^~1~^~A~^^^1^28.3^61.5^2^-0.1^85.0^~2, 3~^~04/01/2013~ -~05749~^~326~^0.0^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~ -~05749~^~328~^0.0^0^^~1~^~AS~^~05071~^^^^^^^^^~04/01/2013~ -~05749~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~421~^107.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~05749~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~06001~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~06001~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06001~^~317~^1.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06001~^~401~^2.2^10^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~421~^13.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06001~^~430~^22.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06002~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~291~^6.8^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06002~^~401~^0.2^10^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~421~^15.5^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06002~^~430~^1.8^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06004~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~06004~^~291~^5.9^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~317~^6.4^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06004~^~401~^1.2^13^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~421~^26.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06004~^~430~^2.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06006~^~291~^4.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06006~^~317~^6.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06006~^~401~^0.7^9^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~291~^4.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~317~^6.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06007~^~401~^1.8^10^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06008~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~313~^29.0^9^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~06008~^~317~^0.7^12^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06008~^~401~^0.0^10^0.0^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~421~^2.9^0^^~4~^~BFSN~^~06013~^^^^^^^^^~11/01/2006~ -~06008~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06009~^~291~^0.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06009~^~317~^5.9^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06009~^~401~^0.3^28^9.9e-02^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~421~^14.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06009~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~06010~^~291~^0.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06010~^~317~^1.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06010~^~401~^0.2^13^1.8e-02^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~421~^9.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06010~^~430~^17.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~06011~^~291~^2.2^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~317~^3.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06011~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~421~^13.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06011~^~430~^4.7^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06013~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06013~^~317~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06013~^~401~^0.0^10^0.0^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~421~^9.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06013~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06015~^~291~^0.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06015~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06015~^~401~^0.5^10^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~421~^7.5^0^^~4~^~BFAN~^^^^^^^^^^~11/01/2006~ -~06015~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06016~^~291~^0.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~317~^1.9^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06016~^~401~^0.1^13^1.4e-02^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~421~^10.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06016~^~430~^4.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06017~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~06017~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~317~^6.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06017~^~401~^4.0^1^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~430~^5.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06018~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~291~^0.8^6^6.7e-02^~1~^~A~^^^1^0.6^1.0^5^0.6^1.0^~4~^~02/01/2011~ -~06018~^~313~^54.5^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~317~^4.9^6^0.3^~1~^~A~^^^1^3.9^6.4^5^3.9^5.9^~4~^~02/01/2011~ -~06018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06018~^~401~^0.4^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~421~^6.2^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~06018~^~430~^1.7^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~291~^0.9^13^8.2e-02^~8~^~LC~^^^1^0.8^1.6^12^0.7^1.1^~1, 4~^~03/01/2014~ -~06019~^~317~^6.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06019~^~401~^0.0^13^0.0^~8~^~LC~^^^1^0.0^0.0^12^0.0^0.0^~4~^~03/01/2014~ -~06019~^~421~^11.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~06019~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06022~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~317~^4.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06022~^~401~^1.6^10^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~421~^4.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06022~^~430~^7.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06023~^~291~^0.9^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06023~^~401~^0.0^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~421~^9.8^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06023~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06024~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~291~^0.9^6^0.1^~1~^~A~^^^1^0.6^1.2^5^0.6^1.1^~1, 2, 3~^~04/01/2013~ -~06024~^~317~^3.0^7^0.1^~1~^~A~^^^1^2.4^3.6^6^2.5^3.4^~1, 2, 3~^~04/01/2013~ -~06024~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~401~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~421~^7.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~430~^2.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06025~^~291~^0.7^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06025~^~317~^4.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06025~^~401~^0.8^13^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~421~^8.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06025~^~430~^3.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06026~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~291~^2.5^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~317~^5.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~401~^3.1^12^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~421~^21.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06026~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06027~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06027~^~317~^6.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06027~^~401~^5.1^10^0.4^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~421~^7.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06027~^~430~^3.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06028~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~06028~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06028~^~317~^7.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06028~^~401~^3.2^10^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~430~^5.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06030~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~291~^0.7^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~317~^6.3^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~06030~^~401~^4.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~421~^6.9^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~06030~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06032~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~09/01/2006~ -~06032~^~317~^1.4^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~401~^0.7^9^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06037~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06037~^~401~^1.7^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~06039~^~291~^2.4^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~317~^2.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06039~^~401~^2.0^11^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~421~^6.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06039~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~06040~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06040~^~317~^2.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06040~^~401~^0.9^10^0.2^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~421~^8.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06040~^~430~^7.8^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06042~^~401~^0.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06043~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~06043~^~291~^0.7^4^0.1^~1~^~A~^^^1^0.6^1.0^3^0.2^1.0^~1, 2, 3~^~07/01/2012~ -~06043~^~317~^2.9^2^^~1~^~A~^^^1^2.9^2.9^^^^~1~^~07/01/2012~ -~06043~^~325~^0.2^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06043~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06043~^~421~^9.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06043~^~430~^19.6^4^1.8^~1~^~A~^^^1^16.4^24.6^3^13.6^25.6^~2, 3~^~07/01/2012~ -~06044~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1986~ -~06044~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06044~^~317~^3.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06044~^~401~^0.8^10^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~421~^8.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06044~^~430~^2.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06045~^~291~^0.7^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06045~^~317~^3.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06045~^~401~^1.0^10^0.0^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~421~^4.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06045~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06046~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~317~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06046~^~401~^1.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~421~^11.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06046~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06048~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06048~^~317~^6.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06048~^~401~^2.6^9^0.5^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~06049~^~291~^3.9^0^^~4~^~O~^^^^^^^^^^~06/01/2005~ -~06049~^~317~^7.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06049~^~401~^1.3^13^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~421~^27.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06049~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06050~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06050~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06050~^~401~^2.9^10^0.3^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~421~^16.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06050~^~430~^7.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06051~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06051~^~317~^7.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06051~^~401~^1.1^15^2.3e-02^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~06053~^~291~^1.3^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~317~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06053~^~401~^0.2^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~421~^8.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06053~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~06056~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~317~^4.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06056~^~401~^0.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~421~^6.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06061~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~06061~^~291~^1.2^0^^~4~^^^^^^^^^^^ -~06061~^~317~^4.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06061~^~401~^0.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06063~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06063~^~317~^1.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06063~^~401~^11.5^13^0.6^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~421~^15.6^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06063~^~430~^3.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06064~^~401~^2.7^10^0.3^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~291~^1.1^4^1.7e-02^~1~^~A~^^^1^1.0^1.2^2^1.0^1.1^~2, 3~^~02/01/2013~ -~06067~^~317~^2.9^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~06067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06067~^~401~^0.7^5^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~421~^7.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06067~^~430~^8.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06067~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~06068~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06068~^~291~^0.5^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06068~^~317~^3.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06068~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06068~^~401~^1.2^23^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~421~^7.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06068~^~430~^4.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06070~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06070~^~291~^0.6^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06070~^~317~^2.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06070~^~401~^2.9^30^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~421~^10.2^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06070~^~430~^3.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06071~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1986~ -~06071~^~291~^1.6^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~317~^2.2^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06071~^~401~^1.9^27^6.3e-02^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~421~^10.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06071~^~430~^5.6^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06072~^~291~^1.3^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~317~^2.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06072~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06072~^~401~^1.9^23^0.1^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~421~^10.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06072~^~430~^2.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06075~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06075~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06075~^~317~^27.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06075~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~421~^113.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06075~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06076~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06076~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~317~^27.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06076~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~06076~^~401~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~421~^113.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06076~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~06080~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~317~^28.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06080~^~401~^1.1^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~421~^114.6^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06080~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~317~^27.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06081~^~401~^1.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06094~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~291~^6.6^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~317~^5.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06094~^~401~^3.4^2^^~8~^~LC~^^^1^0.0^13.5^1^^^^~10/01/2006~ -~06094~^~421~^28.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06094~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06101~^~291~^3.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~317~^20.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06101~^~401~^16.6^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~421~^58.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06101~^~430~^32.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~06112~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06112~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06112~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~421~^19.5^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06114~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06114~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06114~^~401~^1.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06115~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~06115~^~317~^6.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06115~^~401~^1.0^4^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06116~^~291~^0.4^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~313~^99.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~06116~^~317~^1.0^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06116~^~401~^0.0^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~421~^6.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06116~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~06118~^~291~^2.0^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~317~^6.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06118~^~401~^0.3^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06119~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~06119~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~06119~^~317~^0.4^6^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06119~^~401~^0.0^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06119~^~421~^3.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06119~^~428~^2.7^6^0.4^~1~^~A~^^^1^1.0^4.0^2^1.1^4.2^~2, 3~^~02/01/2015~ -~06119~^~429~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~430~^0.6^6^0.1^~1~^~A~^^^1^0.1^0.9^2^0.2^0.9^~2, 3~^~02/01/2015~ -~06120~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~06120~^~317~^5.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06120~^~401~^0.6^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06121~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06121~^~317~^1.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06121~^~401~^0.0^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~06122~^~291~^4.8^0^^~4~^^^^^^^^^^^~10/01/1995~ -~06122~^~317~^5.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06122~^~401~^7.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~421~^24.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06122~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06123~^~291~^6.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~317~^6.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06123~^~401~^7.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06124~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~06124~^~291~^2.4^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~06124~^~317~^6.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~06124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06124~^~401~^1.4^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~421~^24.1^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06124~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06125~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06125~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06125~^~401~^0.0^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~421~^2.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06125~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06126~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~06126~^~317~^5.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06126~^~401~^0.2^4^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06127~^~317~^6.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06127~^~401~^7.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06128~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~291~^3.2^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~317~^32.4^4^7.9^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06128~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~421~^61.7^0^^~4~^~BFAN~^^^^^^^^^^~11/01/2006~ -~06128~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06142~^~291~^1.7^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~401~^20.4^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06147~^~291~^0.2^0^^~4~^~BFSY~^^^^^^^^^^~02/01/1999~ -~06147~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06149~^~291~^3.2^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06149~^~317~^2.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06149~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~421~^11.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06149~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06150~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~291~^0.9^5^^~1~^~A~^^^1^0.4^1.4^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~317~^1.3^3^2.9e-02^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06150~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06150~^~401~^0.6^4^^~1~^~A~^^^1^0.2^1.4^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~421~^7.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06150~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06151~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06151~^~291~^0.7^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~317~^0.4^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06151~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06152~^~291~^2.0^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~401~^11.3^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06158~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06158~^~401~^4.6^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06159~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06159~^~291~^1.1^3^5.8e-02^~1~^~A~^^^1^1.0^1.2^2^0.8^1.3^~2, 3~^~02/01/2011~ -~06159~^~317~^3.0^3^0.0^~1~^~A~^^^1^3.0^3.0^^^^~2, 3~^~02/01/2011~ -~06159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06159~^~401~^12.9^8^4.7^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06159~^~421~^12.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~06159~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06164~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~291~^1.9^12^2.4e-02^~1~^~A~^^^1^1.7^2.0^7^1.8^1.9^~2, 3~^~04/01/2015~ -~06164~^~317~^0.9^3^0.1^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06164~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06164~^~401~^1.9^4^0.8^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06164~^~421~^12.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~06164~^~430~^4.3^6^0.1^~1~^~A~^^^1^3.8^4.6^3^3.8^4.6^~2, 3~^~04/01/2015~ -~06166~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06166~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06166~^~317~^4.1^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~ -~06166~^~328~^1.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~401~^0.8^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~421~^14.2^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~06166~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06167~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06167~^~317~^5.2^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~ -~06167~^~328~^1.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~401~^0.7^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~421~^14.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~430~^1.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06168~^~291~^0.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~06168~^~401~^74.8^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~430~^2.4^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06169~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~291~^0.6^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~317~^0.5^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06169~^~401~^4.5^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06170~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06170~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06170~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06170~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06170~^~401~^0.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~421~^4.8^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06170~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06172~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06172~^~317~^2.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06172~^~401~^0.2^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~421~^9.2^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06172~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06174~^~317~^1.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06174~^~401~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~421~^7.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06174~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06175~^~291~^2.8^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06175~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06175~^~401~^0.4^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~421~^8.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06175~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~06176~^~291~^0.3^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~317~^4.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06176~^~401~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~421~^3.5^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06176~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06177~^~291~^2.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~317~^2.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06177~^~401~^5.7^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~421~^6.6^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06177~^~430~^5.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06179~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06179~^~317~^9.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06179~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06179~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~421~^13.2^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06179~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06180~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06180~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~06180~^~401~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06182~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06182~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06182~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06182~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~421~^9.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06182~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06183~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06183~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06183~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~421~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06183~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06188~^~221~^0.0^0^^~4~^~BFZN~^~06008~^^^^^^^^^~05/01/1995~ -~06188~^~291~^0.0^0^^~4~^~BFZN~^~06008~^^^^^^^^^~05/01/1995~ -~06188~^~317~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~328~^0.0^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~401~^0.0^0^^~4~^~BFZN~^~06008~^^^^^^^^^~05/01/1995~ -~06188~^~421~^2.9^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~430~^0.0^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06189~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~06189~^~291~^0.1^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06189~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06189~^~401~^0.0^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~421~^19.5^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06190~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06190~^~291~^4.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~317~^4.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06190~^~401~^1.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~421~^18.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06190~^~430~^5.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06192~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~06192~^~291~^1.9^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~06192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06192~^~401~^0.0^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~421~^18.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~430~^36.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06192~^~454~^0.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~06193~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~06193~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06193~^~401~^1.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~421~^22.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~430~^2.6^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~454~^0.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06194~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~06194~^~291~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06194~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~421~^1.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06194~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06194~^~454~^1.2^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~06201~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06201~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06201~^~401~^1.6^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06208~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06208~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~317~^3.7^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06208~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06208~^~401~^4.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~421~^12.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06208~^~430~^2.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06210~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06210~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06210~^~317~^1.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06210~^~401~^0.6^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06211~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06211~^~317~^2.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06211~^~401~^0.5^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06216~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06216~^~401~^0.5^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06217~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06217~^~291~^2.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~317~^4.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2005~ -~06217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06217~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~421~^9.0^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06217~^~430~^4.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06230~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~317~^4.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~328~^0.6^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~401~^2.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~421~^11.8^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06230~^~430~^0.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~454~^0.5^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06243~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~317~^2.7^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~328~^0.7^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~401~^0.1^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~421~^13.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~430~^9.6^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06246~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~06246~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~401~^1.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06248~^~401~^1.8^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06249~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06249~^~401~^1.1^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06253~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06253~^~401~^0.5^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06256~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~317~^3.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~328~^0.6^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~401~^0.1^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~421~^11.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~430~^0.1^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06264~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~291~^0.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~317~^4.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~430~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~291~^0.4^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~317~^1.6^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~401~^5.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~430~^1.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06307~^~291~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~421~^7.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06314~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~401~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~401~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06338~^~291~^0.6^2^^~1~^~A~^^^1^0.6^0.6^^^^~1~^~07/01/2012~ -~06338~^~317~^2.9^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06338~^~325~^0.2^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06338~^~401~^0.5^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06338~^~421~^4.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06338~^~430~^22.5^2^^~1~^~A~^^^1^20.4^24.6^1^^^^~07/01/2012~ -~06338~^~454~^2.3^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06358~^~291~^0.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06358~^~401~^2.8^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06359~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~317~^2.7^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~328~^0.6^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06359~^~401~^6.3^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~421~^14.7^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~430~^1.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06377~^~291~^1.1^3^5.8e-02^~1~^~A~^^^1^1.0^1.2^2^0.8^1.3^~4~^~02/01/2011~ -~06377~^~317~^3.0^3^0.0^~1~^~A~^^^1^3.0^3.0^2^3.0^3.0^~4~^~02/01/2011~ -~06377~^~401~^4.8^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~06395~^~291~^1.0^3^3.3e-02^~1~^~A~^^^1^0.9^1.0^2^0.8^1.1^~4~^~02/01/2011~ -~06395~^~317~^5.7^3^0.3^~1~^~A~^^^1^5.4^6.4^2^4.2^7.1^~4~^~02/01/2011~ -~06395~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06401~^~221~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~06401~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06401~^~401~^1.1^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06402~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~291~^3.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~313~^35.6^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06402~^~401~^0.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~421~^7.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~430~^0.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~291~^2.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~317~^3.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06404~^~401~^0.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~421~^13.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~430~^1.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06406~^~317~^3.4^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06406~^~401~^0.4^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06409~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~317~^3.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06409~^~401~^0.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~421~^7.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~430~^0.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06410~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1985~ -~06410~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06410~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06410~^~401~^0.1^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~291~^0.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06411~^~317~^1.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06411~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06413~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06413~^~313~^61.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~06413~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~06413~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06413~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~421~^4.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06413~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06415~^~291~^1.0^3^0.1^~1~^~A~^^^1^0.7^1.2^2^0.2^1.6^~2, 3~^~05/01/2015~ -~06415~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~401~^0.8^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06416~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06416~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06416~^~401~^0.1^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06417~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~317~^3.3^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06417~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06417~^~401~^2.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~421~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06417~^~430~^2.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06419~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~317~^3.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~421~^5.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~317~^2.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06423~^~401~^0.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~421~^4.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~291~^1.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~313~^36.3^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~317~^2.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06426~^~401~^1.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~421~^10.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~430~^1.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~291~^0.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~317~^3.7^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06428~^~401~^1.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~421~^7.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06428~^~430~^2.7^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~313~^36.4^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06430~^~317~^3.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~06430~^~401~^2.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~421~^3.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~430~^0.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06431~^~291~^1.2^3^3.3e-02^~1~^~A~^^^1^1.1^1.2^2^1.0^1.3^~4~^~02/01/2011~ -~06431~^~317~^3.0^6^5.0e-02^~1~^~A~^^^1^3.0^3.3^5^2.9^3.1^~4~^~02/01/2011~ -~06431~^~401~^0.4^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06431~^~421~^6.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~06431~^~454~^38.2^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06432~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06432~^~401~^0.4^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06434~^~291~^1.3^3^3.3e-02^~1~^~A~^^^1^1.2^1.3^2^1.1^1.4^~4~^~02/01/2011~ -~06434~^~317~^3.0^3^3.3e-02^~1~^~A~^^^1^2.9^3.0^2^2.8^3.1^~1, 4~^~02/01/2011~ -~06434~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06434~^~421~^12.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~06434~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06440~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06440~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06440~^~401~^0.5^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06443~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~317~^1.4^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~328~^0.1^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~421~^4.7^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~430~^9.6^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06444~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06444~^~401~^0.4^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~291~^0.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06446~^~401~^0.5^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~401~^1.3^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06449~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~291~^1.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~317~^3.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06449~^~401~^0.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~421~^13.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~430~^0.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06451~^~291~^0.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06451~^~401~^0.6^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06453~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06453~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06456~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~317~^2.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06456~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~421~^3.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~291~^0.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~317~^2.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06461~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~421~^8.2^0^^~4~^~BFSN~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~291~^0.7^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~317~^0.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06463~^~401~^5.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~421~^7.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~430~^1.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06465~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06465~^~291~^0.3^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06465~^~317~^4.4^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06465~^~401~^0.1^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06466~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06466~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06468~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~317~^1.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06468~^~401~^0.6^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~421~^3.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~430~^2.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~291~^0.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~317~^1.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06471~^~401~^1.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~421~^5.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~430~^2.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~291~^0.7^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~317~^1.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06472~^~401~^1.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~421~^5.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~430~^1.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~317~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06475~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~421~^1.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~317~^0.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~06476~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~421~^1.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~313~^70.0^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~317~^0.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06480~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~421~^1.9^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06481~^~401~^0.0^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~06483~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~317~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06483~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06483~^~401~^0.2^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~421~^5.4^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06483~^~430~^5.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06494~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~291~^0.3^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~317~^0.2^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06494~^~401~^0.1^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~421~^1.2^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~430~^0.1^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06498~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~291~^0.4^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~317~^1.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06498~^~401~^2.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~421~^7.5^0^^~4~^~BFSN~^~06159~^^^^^^^^^~11/01/2006~ -~06498~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06528~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1998~ -~06528~^~291~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~317~^3.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06528~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06528~^~401~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~421~^4.9^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06528~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06547~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06547~^~401~^1.9^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06549~^~401~^0.0^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~291~^0.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~06558~^~401~^2.4^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06559~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~317~^1.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~401~^6.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~421~^6.3^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~430~^1.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06583~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06583~^~291~^2.9^12^0.2^~1~^~A~^^^1^2.1^5.0^3^2.2^3.5^~2, 3~^~04/01/2013~ -~06583~^~317~^23.1^12^1.5^~1~^~A~^^^1^11.1^30.5^3^17.8^28.3^~2, 3~^~04/01/2013~ -~06583~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06583~^~401~^0.3^4^^~1~^~A~^^^1^0.0^0.6^^^^~2, 3~^~04/01/2009~ -~06583~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~06583~^~430~^8.9^0^^~4~^~BFFN~^~06982~^^^^^^^^^~05/01/2013~ -~06583~^~454~^17.0^2^^~1~^~A~^^^1^16.1^19.2^^^^^~05/01/2013~ -~06584~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~ -~06584~^~291~^1.8^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~317~^1.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06584~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06584~^~401~^2.0^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~421~^18.4^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06584~^~430~^51.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06611~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~06615~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06618~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~317~^2.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06618~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~421~^15.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06619~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~291~^2.9^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~291~^2.7^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~291~^2.6^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~291~^3.1^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~291~^1.5^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06626~^~291~^1.8^2^^~1~^~A~^^^1^1.4^2.1^1^^^^~02/01/2015~ -~06626~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~06626~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~430~^151.1^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06627~^~291~^1.7^4^0.2^~1~^~A~^^^1^0.9^2.3^3^0.7^2.5^~1, 2, 3~^~02/01/2015~ -~06627~^~317~^5.5^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06627~^~401~^0.1^6^5.1e-02^~1~^~A~^^^1^0.0^0.3^5^-3.8e-02^0.2^~1, 2, 3~^~02/01/2015~ -~06627~^~421~^13.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~06627~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06627~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06627~^~430~^193.8^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06627~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~06628~^~291~^1.8^2^^~1~^~A~^^^1^1.4^2.1^1^^^^~02/01/2015~ -~06628~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~06628~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~430~^151.1^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~291~^2.1^2^^~1~^~A~^^^1^1.8^2.3^1^^^^~02/01/2015~ -~06629~^~317~^5.5^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~06629~^~421~^13.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~06629~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~430~^193.8^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~06630~^~291~^1.3^2^^~1~^~A~^^^1^0.9^1.7^1^^^~1~^~02/01/2015~ -~06630~^~401~^0.2^3^6.6e-02^~1~^~A~^^^1^0.1^0.3^2^-9.8e-02^0.4^~1, 2, 3~^~02/01/2015~ -~06631~^~291~^2.2^3^5.1e-02^~1~^~A~^^^1^2.1^2.3^2^1.9^2.4^~2, 3~^~02/01/2015~ -~06631~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06631~^~401~^26.9^7^11.0^~1~^~A~^^^1^0.0^59.2^6^-7.4e-02^53.8^~1, 2, 3~^~02/01/2015~ -~06631~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~06631~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~06631~^~430~^10.9^2^^~1~^~A~^^^1^7.2^14.6^1^^^^~02/01/2015~ -~06632~^~291~^2.1^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06632~^~401~^4.8^3^1.3^~1~^~A~^^^1^2.7^7.4^2^-1.2^10.8^~2, 3~^~02/01/2015~ -~06633~^~291~^2.2^2^^~1~^~A~^^^1^2.2^2.3^1^^^^~02/01/2015~ -~06633~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~401~^57.9^3^1.1^~1~^~A~^^^1^55.6^59.2^2^52.9^62.8^~2, 3~^~02/01/2015~ -~06633~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~430~^14.6^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06700~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06700~^~317~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~401~^0.4^2^^~1~^~A~^^^1^0.4^0.4^1^^^^~04/01/2015~ -~06700~^~421~^0.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06720~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06720~^~291~^1.0^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~401~^0.9^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06725~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~313~^132.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~06731~^~291~^4.6^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~313~^42.7^19^12.2^~1~^~A~^^^2^11.8^89.1^5^11.1^74.2^~4~^~03/01/2006~ -~06749~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~291~^1.2^6^0.2^~1~^~A~^^^1^0.9^1.3^1^-1.3^3.7^~4~^~02/01/2013~ -~06749~^~317~^3.0^12^1.1e-02^~1~^~A~^^^1^2.9^3.0^3^2.9^2.9^~1, 4~^~02/01/2011~ -~06749~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~401~^3.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~421~^11.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~06749~^~430~^6.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~454~^0.9^2^^~1~^~A~^^^1^0.7^1.4^1^^^^~02/01/2013~ -~06930~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~06930~^~291~^0.5^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~313~^29.0^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~06930~^~317~^3.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~06930~^~401~^0.4^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06931~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~291~^1.8^18^3.3e-02^~1~^~A~^^^1^1.6^2.0^8^1.6^1.8^~2, 3~^~01/01/2011~ -~06931~^~317~^1.4^6^0.1^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06931~^~401~^2.0^23^0.2^~8~^~LC~^^^1^0.0^4.8^22^1.4^2.5^~4~^~11/01/2006~ -~06931~^~421~^13.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~06931~^~430~^13.9^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06955~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06955~^~291~^0.4^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~317~^6.3^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06955~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06955~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~421~^8.5^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06955~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06956~^~221~^0.0^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~291~^1.2^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~317~^5.1^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06956~^~401~^12.9^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~421~^12.8^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~430~^3.2^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~06957~^~291~^3.2^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~317~^9.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06957~^~401~^1.9^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~421~^47.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06957~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~06958~^~291~^4.3^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~317~^18.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06958~^~401~^0.9^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~421~^47.8^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06958~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~06959~^~291~^3.8^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~317~^19.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06959~^~401~^0.9^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~421~^23.9^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06959~^~430~^2.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~06960~^~291~^2.0^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~317~^9.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~401~^0.0^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06961~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06961~^~291~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06961~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06961~^~401~^30.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~421~^6.1^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06961~^~430~^6.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06962~^~291~^1.9^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06962~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06962~^~401~^68.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~421~^4.8^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06962~^~430~^7.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~06963~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~06963~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06963~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~06963~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~421~^9.2^0^^~4~^~BFSN~^~06174~^^^^^^^^^~03/01/2009~ -~06963~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06964~^~221~^0.0^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~291~^0.6^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~317~^2.5^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06964~^~401~^6.3^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~421~^6.3^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~430~^1.5^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06965~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~291~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~317~^3.6^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06965~^~401~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~421~^13.2^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~430~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06966~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~291~^0.2^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~317~^4.8^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06966~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~421~^5.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~291~^1.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~317~^2.0^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06967~^~401~^0.4^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~421~^4.5^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~430~^2.1^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06968~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06968~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2005~ -~06968~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06968~^~401~^0.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~421~^5.8^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06968~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06969~^~291~^7.6^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~317~^12.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06969~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06969~^~401~^16.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~421~^56.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06969~^~430~^13.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06970~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06970~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06970~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2005~ -~06970~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06970~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~421~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2006~ -~06970~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06971~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06971~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~06971~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06971~^~401~^13.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~421~^2.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06971~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06972~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06972~^~291~^2.4^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06972~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06972~^~401~^16.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~421~^13.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06972~^~430~^5.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06974~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06974~^~291~^0.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~317~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~06974~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06974~^~401~^2.3^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~421~^4.3^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06974~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06976~^~221~^0.0^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~291~^1.8^18^3.3e-02^~1~^~A~^^^1^1.6^2.0^17^1.7^1.8^~4~^~05/01/2011~ -~06976~^~317~^1.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~06976~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06976~^~401~^2.0^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~421~^13.7^0^^~4~^~BFPN~^~06931~^^^^^^^^^~03/01/2007~ -~06976~^~430~^13.9^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06977~^~221~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~291~^0.3^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2005~ -~06977~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06977~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~421~^6.3^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06977~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06978~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~317~^2.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~06978~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06978~^~401~^3.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~421~^9.7^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06978~^~430~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06980~^~291~^0.6^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~317~^7.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~06980~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06980~^~401~^0.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~421~^18.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~06980~^~430~^102.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06981~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06981~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~317~^27.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~06981~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~06981~^~401~^1.1^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~421~^114.5^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06981~^~430~^66.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06982~^~291~^3.0^6^0.2^~1~^~A~^^^1^2.1^3.7^2^1.9^3.9^~2, 3~^~04/01/2013~ -~06982~^~317~^19.6^6^1.9^~1~^~A~^^^1^11.1^26.3^2^11.7^27.5^~2, 3~^~04/01/2013~ -~06982~^~401~^0.6^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06982~^~421~^5.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~06982~^~430~^9.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06982~^~454~^19.2^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~06983~^~291~^2.9^6^0.2^~1~^~A~^^^1^2.1^5.0^2^1.8^3.8^~2, 3~^~04/01/2013~ -~06983~^~317~^24.7^6^2.1^~1~^~A~^^^1^12.9^30.5^2^15.4^33.9^~2, 3~^~04/01/2013~ -~06983~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06983~^~421~^5.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~06983~^~454~^16.1^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~06985~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06999~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~428~^1.7^3^0.3^~1~^~A~^^^1^1.0^2.1^2^0.1^3.2^~2, 3~^~02/01/2015~ -~06999~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~430~^0.2^3^8.8e-02^~1~^~A~^^^1^0.1^0.4^2^-0.1^0.6^~2, 3~^~02/01/2015~ -~07001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07001~^~317~^21.3^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07001~^~328~^0.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07001~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07002~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~291~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07002~^~317~^17.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~328~^0.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07002~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~421~^67.1^0^^~4~^~BFNN~^~07069~^^^^^^^^^~04/01/2007~ -~07002~^~430~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07002~^~454~^3.1^0^^~4~^~BFNN~^~07069~^^^^^^^^^~04/01/2007~ -~07003~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07003~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07003~^~317~^20.9^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07003~^~328~^0.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07003~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07004~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07004~^~317~^14.1^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2002~ -~07004~^~328~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~07004~^~401~^0.0^0^^~7~^^^^^^^^^^^~07/01/2002~ -~07004~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2002~ -~07005~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~317~^15.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~07005~^~328~^1.3^0^^~4~^~BFFN~^~07074~^^^^^^^^^~03/01/2009~ -~07005~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~421~^72.8^0^^~4~^~BFNN~^~07074~^^^^^^^^^~04/01/2007~ -~07005~^~429~^0.0^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~ -~07005~^~430~^0.0^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~ -~07005~^~454~^2.2^0^^~4~^~BFNN~^~07074~^^^^^^^^^~04/01/2007~ -~07006~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~291~^1.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~313~^1.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~317~^11.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~07006~^~401~^3.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~421~^46.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~429~^0.0^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~430~^70.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~454~^6.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07007~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07007~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07007~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~01/01/2006~ -~07007~^~317~^11.6^6^3.6e-02^~1~^~A~^^^1^9.6^13.5^2^11.4^11.7^~2, 3~^~04/01/2012~ -~07007~^~328~^0.7^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~07007~^~401~^15.2^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~ -~07007~^~421~^29.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~07007~^~428~^6.3^4^0.2^~1~^~A~^^^1^5.7^7.1^1^3.6^8.9^~2, 3~^~04/01/2012~ -~07007~^~430~^2.4^4^8.0e-03^~1~^~A~^^^1^1.1^3.3^1^2.3^2.5^~2, 3~^~04/01/2012~ -~07007~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07008~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~07008~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~01/01/2006~ -~07008~^~317~^24.6^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~328~^0.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~07008~^~401~^0.8^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~421~^65.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07008~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2004~ -~07008~^~454~^5.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07010~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~07010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07010~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~02/01/2006~ -~07010~^~317~^12.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07010~^~328~^1.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07010~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07010~^~421~^54.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07010~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07010~^~454~^4.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07011~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07011~^~291~^0.5^3^^~1~^~A~^^^1^0.5^0.5^^^^~2~^~10/01/2002~ -~07011~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~02/01/2006~ -~07011~^~317~^15.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~326~^0.6^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~07011~^~328~^0.6^0^^~1~^~AS~^~05168~^^^^^^^^^~08/01/2011~ -~07011~^~401~^13.3^3^^~1~^~A~^^^1^13.3^13.3^^^^~2~^~10/01/2002~ -~07011~^~421~^54.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07011~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07011~^~454~^4.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07013~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07013~^~317~^39.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~328~^1.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07013~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07013~^~421~^94.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07013~^~454~^3.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07014~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2003~ -~07014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07014~^~317~^58.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~07014~^~328~^1.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07014~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2003~ -~07014~^~421~^255.9^0^^~4~^~BFNN~^~13326~^^^^^^^^^~01/01/2007~ -~07014~^~430~^1.6^0^^~4~^~CASN~^^^^^^^^^^~03/01/2003~ -~07014~^~454~^3.8^0^^~4~^~BFNN~^~13326~^^^^^^^^^~01/01/2007~ -~07015~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07015~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~317~^17.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~328~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~07015~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~430~^0.0^0^^~4~^~BFSN~^~07075~^^^^^^^^^~04/01/2003~ -~07016~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~313~^11.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~317~^15.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~328~^0.3^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~07016~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~421~^63.1^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~429~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2009~ -~07016~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07016~^~454~^6.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07018~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07018~^~291~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07018~^~317~^10.8^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2002~ -~07018~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07019~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~07019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07019~^~317~^18.6^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07019~^~328~^1.5^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07019~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07019~^~421~^96.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07019~^~430~^0.0^0^^~4~^~BFFN~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~454~^4.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07020~^~317~^17.2^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07020~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07021~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07021~^~291~^0.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~313~^4.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~317~^18.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~07021~^~401~^1.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~421~^65.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~430~^1.2^0^^~4~^~BFSN~^~07065~^^^^^^^^^~03/01/2003~ -~07021~^~454~^5.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07022~^~317~^10.3^18^0.1^~1~^~A~^^^1^8.6^15.0^12^9.9^10.5^~2, 3~^~05/01/2013~ -~07022~^~328~^0.9^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07022~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07022~^~421~^31.9^0^^~4~^~BFPN~^~07007~^^^^^^^^^~03/01/2016~ -~07022~^~430~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07024~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07024~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~07024~^~317~^23.0^3^1.0^~1~^~A~^^^1^21.0^24.5^2^18.5^27.4^~2, 3~^~03/01/2007~ -~07024~^~328~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07024~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07024~^~421~^50.5^5^1.1^~1~^~AS~^^^2^46.9^55.5^3^46.6^54.3^~2, 3~^~08/01/2007~ -~07024~^~428~^25.1^3^6.7^~1~^~A~^^^1^14.9^37.8^2^-3.8^54.0^~2, 3~^~03/01/2007~ -~07024~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~454~^5.8^5^0.2^~1~^~A~^^^2^4.5^8.5^3^5.0^6.5^~2, 3~^~08/01/2007~ -~07025~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07025~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07025~^~317~^15.1^3^3.4^~1~^~A~^^^1^8.2^19.6^2^4.3e-02^30.0^~2, 3~^~03/01/2007~ -~07025~^~328~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07025~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07025~^~421~^48.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07025~^~428~^31.2^3^5.2^~1~^~A~^^^1^25.6^41.7^2^8.5^53.8^~2, 3~^~03/01/2007~ -~07025~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~454~^4.7^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~07026~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07026~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07026~^~317~^18.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07026~^~326~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07026~^~328~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07026~^~401~^2.0^4^0.2^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~421~^64.4^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07026~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07026~^~454~^6.3^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07027~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07027~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07027~^~317~^17.4^6^1.2^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07027~^~326~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07027~^~328~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07027~^~401~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07027~^~421~^77.0^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07027~^~430~^0.0^0^^~4~^~BFSN~^~10152~^^^^^^^^^~03/01/2003~ -~07027~^~454~^7.6^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07028~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07028~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1983~ -~07028~^~317~^31.6^3^1.4^~1~^~A~^^^1^28.8^33.8^2^25.2^37.8^~2, 3~^~04/01/2013~ -~07028~^~328~^0.6^0^^~4~^~BFNN~^~10134~^^^^^^^^^~03/01/2016~ -~07028~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07028~^~421~^62.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07028~^~428~^4.4^3^0.6^~1~^~A~^^^1^3.5^5.6^2^1.7^7.0^~2, 3~^~05/01/2014~ -~07028~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2014~ -~07028~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2014~ -~07028~^~454~^2.8^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07029~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~07029~^~291~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~317~^20.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~326~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07029~^~328~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07029~^~401~^4.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~421~^81.9^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2007~ -~07029~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07029~^~454~^5.4^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2007~ -~07030~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07030~^~317~^20.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~07030~^~326~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07030~^~328~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07030~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07030~^~421~^69.4^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07030~^~430~^0.0^0^^~4~^~BFSN~^~10152~^^^^^^^^^~03/01/2003~ -~07030~^~454~^6.8^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07031~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07031~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07031~^~317~^17.8^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07031~^~326~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07031~^~328~^0.7^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~ -~07031~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07031~^~421~^69.0^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07031~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07031~^~454~^6.8^0^^~4~^~BFNN~^~10883~^^^^^^^^^~01/01/2007~ -~07032~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07032~^~313~^36.3^2^^~1~^~A~^^^1^34.3^38.2^1^^^^~02/01/2006~ -~07032~^~317~^34.6^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2004~ -~07032~^~328~^1.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07032~^~401~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07032~^~421~^66.3^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07032~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07032~^~454~^6.5^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07033~^~317~^33.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07033~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07034~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07034~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07034~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07034~^~326~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07034~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07034~^~401~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07034~^~421~^104.1^0^^~4~^~BFNN~^~05175~^^^^^^^^^~01/01/2007~ -~07034~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07034~^~454~^2.7^0^^~4~^~BFNN~^~05175~^^^^^^^^^~01/01/2007~ -~07036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07036~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07036~^~317~^11.3^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07036~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07038~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2002~ -~07038~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07038~^~317~^13.5^0^^~4~^~RF~^^^^^^^^^^~06/01/2002~ -~07038~^~328~^1.1^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07038~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~421~^55.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07038~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07038~^~454~^2.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07039~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~317~^15.7^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~328~^0.3^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~07039~^~401~^0.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~421~^62.7^0^^~4~^~BFNN~^~07007~^^^^^^^^^~01/01/2007~ -~07039~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07039~^~454~^6.8^0^^~4~^~BFNN~^~07007~^^^^^^^^^~01/01/2007~ -~07040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07040~^~317~^36.5^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07040~^~401~^3.0^7^1.2^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07041~^~317~^58.0^9^6.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~07041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07043~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07043~^~317~^14.7^9^0.6^~1~^~A~^^^1^11.8^18.9^4^13.0^16.3^~2, 3~^~04/01/2014~ -~07043~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2014~ -~07043~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~07043~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07043~^~421~^43.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~07043~^~430~^1.6^0^^~4~^~CASN~^^^^^^^^^^~04/01/2014~ -~07045~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~07045~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07045~^~317~^28.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~07045~^~326~^0.5^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07045~^~328~^0.5^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07045~^~401~^1.0^8^0.5^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~421~^61.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07045~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07045~^~454~^4.1^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07046~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~291~^0.5^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~317~^22.8^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~326~^0.1^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~328~^0.1^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~401~^5.7^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~421~^66.4^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~454~^4.8^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07050~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07050~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07050~^~317~^22.6^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07050~^~328~^1.0^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07050~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07050~^~421~^72.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07050~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07050~^~454~^3.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07051~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07051~^~317~^16.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07051~^~328~^1.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07051~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07051~^~421~^66.7^0^^~4~^~BFNN~^~07007~^^^^^^^^^~02/01/2007~ -~07051~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07051~^~454~^7.3^0^^~4~^~BFNN~^~07007~^^^^^^^^^~02/01/2007~ -~07052~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2008~ -~07052~^~291~^0.1^2^^~1~^~A~^^^1^0.0^0.3^1^^^^~07/01/2004~ -~07052~^~317~^16.1^0^^~4~^~RF~^^^^^^^^^^~01/01/2008~ -~07052~^~326~^0.2^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~07052~^~328~^0.2^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~07052~^~401~^8.1^2^^~1~^~A~^^^1^0.1^16.1^1^^^^~01/01/2008~ -~07052~^~421~^66.7^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2008~ -~07052~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2008~ -~07052~^~454~^5.9^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2008~ -~07053~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~07053~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07053~^~317~^46.1^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07053~^~401~^10.0^5^0.4^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~421~^228.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07053~^~430~^0.0^0^^~4~^~CASN~^^^^^^^^^^~03/01/2003~ -~07053~^~454~^14.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07054~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07054~^~317~^44.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07054~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07055~^~317~^41.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07055~^~401~^2.0^10^0.2^~1~^^^^^^^^^^^~09/01/1980~ -~07056~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~317~^11.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~328~^0.8^0^^~9~^^~07008~^^^^^^^^^~08/01/2012~ -~07056~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~421~^73.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07056~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2003~ -~07056~^~454~^6.5^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07057~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07057~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~07057~^~317~^29.0^2^^~1~^~A~^^^1^28.8^29.3^1^^^^~04/01/2015~ -~07057~^~328~^1.3^0^^~4~^~BFFN~^~07072~^^^^^^^^^~04/01/2015~ -~07057~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~07057~^~421~^51.2^0^^~4~^~BFPN~^~10066~^^^^^^^^^~04/01/2015~ -~07057~^~428~^41.7^3^9.5^~1~^~A~^^^1^28.3^60.2^2^0.5^82.7^~2, 3~^~03/01/2007~ -~07057~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07057~^~430~^5.8^3^1.4^~1~^~A~^^^1^3.0^7.9^2^-0.3^12.0^~2, 3~^~07/01/2015~ -~07057~^~454~^2.8^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~07058~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~291~^1.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~313~^21.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~317~^7.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~328~^0.8^0^^~4~^~NC~^~07010~^^^^^^^^^~08/01/2012~ -~07058~^~401~^7.8^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07058~^~421~^31.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~430~^5.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~454~^2.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07059~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07059~^~317~^17.7^5^2.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~07059~^~401~^1.0^6^0.0^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07060~^~317~^21.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07060~^~328~^0.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07060~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07061~^~317~^35.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07061~^~328~^1.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07061~^~401~^1.0^3^0.0^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07062~^~317~^35.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07062~^~328~^1.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07062~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07063~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07063~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07063~^~317~^17.8^6^1.1^~1~^~A~^^^1^12.5^23.2^1^10.3^25.1^~2, 3~^~04/01/2013~ -~07063~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~07063~^~326~^1.4^2^^~1~^~A~^^^1^1.2^1.8^^^^^~04/01/2013~ -~07063~^~328~^1.4^2^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07063~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07063~^~421~^52.5^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07063~^~428~^18.3^2^^~1~^~A~^^^1^12.8^22.3^^^^^~08/01/2015~ -~07063~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2015~ -~07063~^~430~^0.3^2^^~1~^~A~^^^1^0.3^0.3^^^^^~08/01/2015~ -~07063~^~454~^4.7^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07064~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07064~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07064~^~317~^20.7^6^0.8^~1~^~A~^^^1^15.3^23.0^2^16.3^24.9^~2, 3~^~04/01/2013~ -~07064~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~07064~^~326~^1.4^2^^~1~^~A~^^^1^1.4^1.6^^^^^~04/01/2013~ -~07064~^~328~^1.4^4^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07064~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07064~^~421~^62.3^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07064~^~430~^0.0^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07065~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07065~^~317~^14.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07065~^~328~^0.7^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07065~^~421~^58.8^0^^~4~^~BFNN~^~07064~^^^^^^^^^~12/01/2006~ -~07065~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07065~^~454~^3.1^0^^~4~^~BFNN~^~07064~^^^^^^^^^~12/01/2006~ -~07066~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~317~^20.8^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~326~^0.4^0^^~4~^~BFFN~^~05168~^^^^^^^^^~03/01/2009~ -~07066~^~328~^0.4^0^^~1~^~AS~^~05168~^^^^^^^^^~08/01/2012~ -~07066~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~421~^92.1^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~07066~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07066~^~454~^4.9^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~07067~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07067~^~317~^10.9^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07067~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07067~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07067~^~401~^1.0^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~421~^49.6^0^^~4~^~BFNN~^~05060~^^^^^^^^^~02/01/2007~ -~07067~^~430~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~07067~^~454~^4.2^0^^~4~^~BFNN~^~05060~^^^^^^^^^~02/01/2007~ -~07068~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07068~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07068~^~317~^14.6^33^0.5^~1~^~A~^^^^^^^^^^~09/01/2002~ -~07068~^~328~^1.2^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~07068~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~421~^57.5^0^^~4~^~BFNN~^~07069~^^^^^^^^^~04/01/2007~ -~07068~^~430~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07068~^~454~^2.6^0^^~4~^~BFNN~^~07069~^^^^^^^^^~04/01/2007~ -~07069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07069~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07069~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07069~^~317~^31.3^3^3.7^~1~^~A~^^^1^23.8^35.9^2^15.0^47.5^~2, 3~^~03/01/2007~ -~07069~^~328~^1.0^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~ -~07069~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07069~^~421~^93.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07069~^~428~^28.0^3^8.0^~1~^~A~^^^1^12.1^37.7^2^-6.4^62.3^~2, 3~^~03/01/2007~ -~07069~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~430~^3.2^3^1.8^~1~^~A~^^^1^0.0^6.4^2^-4.7^11.1^~1, 2, 3~^~03/01/2007~ -~07069~^~454~^4.3^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~07070~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~07070~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~07070~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07070~^~317~^26.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~328~^0.6^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~07070~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2004~ -~07070~^~421~^53.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~430~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07070~^~454~^3.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07071~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07071~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07071~^~317~^25.4^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07071~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07072~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07072~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07072~^~317~^33.6^6^0.9^~1~^~A~^^^1^28.6^36.8^3^30.6^36.5^~2, 3~^~05/01/2014~ -~07072~^~326~^0.9^3^^~1~^~A~^^^1^0.6^1.0^^^^~2, 3~^~05/01/2013~ -~07072~^~328~^0.9^0^^~1~^~AS~^~07002~^^^^^^^^^~05/01/2013~ -~07072~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07072~^~421~^72.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~07072~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~04/01/2012~ -~07072~^~454~^5.9^2^^~1~^~A~^^^1^5.4^6.5^1^^^^~05/01/2014~ -~07073~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~07073~^~291~^0.2^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~317~^9.7^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07073~^~328~^0.6^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07073~^~401~^0.0^5^0.2^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~421~^62.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07073~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~07073~^~454~^5.5^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07074~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~317~^18.3^3^1.1^~1~^~A~^^^1^16.0^20.0^2^13.1^23.3^~2, 3~^~03/01/2007~ -~07074~^~328~^1.1^0^^~4~^~BFFN~^~07013~^^^^^^^^^~02/01/2009~ -~07074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07074~^~421~^61.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~07074~^~428~^13.7^3^0.8^~1~^~A~^^^1^12.6^15.4^2^9.9^17.4^~2, 3~^~03/01/2007~ -~07074~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~07075~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07075~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~328~^1.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07075~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~07075~^~421~^50.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~07075~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~454~^2.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~07077~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07077~^~317~^13.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07077~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07078~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~07078~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07078~^~317~^20.3^0^^~4~^~RF~^^^^^^^^^^~05/01/2004~ -~07078~^~328~^1.1^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07078~^~401~^16.6^2^^~1~^~A~^^^2^15.3^17.9^^^^^~05/01/2004~ -~07078~^~421~^78.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07078~^~430~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07078~^~454~^3.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~07081~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07081~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07081~^~317~^13.0^3^5.5^~1~^~A~^^^1^6.0^24.0^2^-10.9^36.9^~2, 3~^~05/01/2013~ -~07081~^~328~^0.2^0^^~4~^~BFSN~^~05664~^^^^^^^^^~03/01/2016~ -~07081~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07081~^~421~^30.1^0^^~4~^~BFPN~^~05664~^^^^^^^^^~03/01/2016~ -~07081~^~430~^0.0^0^^~4~^~BFSN~^~05664~^^^^^^^^^~07/01/2011~ -~07083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07083~^~317~^16.9^0^^~4~^~RF~^^^^^^^^^^~05/01/2004~ -~07083~^~328~^0.6^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07083~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~421~^43.7^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07083~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~07083~^~454~^3.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07088~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~07088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07088~^~317~^15.6^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~07088~^~328~^1.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~07088~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07089~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~07089~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07089~^~317~^17.5^3^0.1^~1~^~A~^^^1^16.4^22.9^1^15.6^19.3^~2, 3~^~10/01/2016~ -~07089~^~328~^1.0^0^^~4~^~BFFN~^~07013~^^^^^^^^^~03/01/2009~ -~07089~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07089~^~421~^61.8^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07089~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2002~ -~07089~^~454~^5.9^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07090~^~317~^15.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07090~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07091~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~07091~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1980~ -~07091~^~317~^19.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07091~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~07201~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07201~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~07201~^~328~^0.8^6^4.1e-02^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~07201~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07207~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07207~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~07/01/1996~ -~07207~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~07207~^~401~^9.0^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07209~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07209~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/1996~ -~07209~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07212~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/1996~ -~07212~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07230~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07230~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/1997~ -~07230~^~328~^1.6^4^0.2^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~07230~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/1997~ -~07236~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07241~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~07241~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/1997~ -~07241~^~317~^11.5^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~07241~^~328~^0.6^7^6.6e-02^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~07241~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07254~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~07254~^~317~^15.8^9^0.1^~1~^~A~^^^1^15.0^22.3^4^15.2^16.3^~2, 3~^~07/01/2014~ -~07278~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07278~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07278~^~401~^0.0^6^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2~^~06/01/2002~ -~07900~^~221~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~291~^0.6^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~317~^24.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~07900~^~328~^0.1^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~ -~07900~^~401~^1.9^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~421~^59.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07900~^~430~^0.0^0^^~4~^~BFSN~^~07075~^^^^^^^^^~04/01/2003~ -~07900~^~454~^5.2^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~07905~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~317~^18.7^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07905~^~328~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~07905~^~401~^24.0^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~421~^74.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07905~^~430~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~07905~^~454~^6.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~07906~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07906~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07906~^~317~^25.0^0^^~4~^~RF~^^^^^^^^^^~05/01/2004~ -~07906~^~326~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07906~^~328~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07906~^~401~^43.0^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~421~^61.2^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07906~^~430~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~07906~^~454~^6.0^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07908~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~07908~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~07908~^~317~^22.9^0^^~4~^~RF~^^^^^^^^^^~05/01/2004~ -~07908~^~326~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07908~^~328~^0.6^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~ -~07908~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~07908~^~421~^68.5^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07908~^~430~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~07908~^~454~^6.7^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07909~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~07909~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~317~^27.0^0^^~4~^~RF~^^^^^^^^^^~05/01/2004~ -~07909~^~326~^0.6^0^^~4~^~BFNN~^~10134~^^^^^^^^^~04/01/2009~ -~07909~^~328~^0.6^0^^~4~^~BFNN~^~10134~^^^^^^^^^~04/01/2009~ -~07909~^~401~^38.5^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~421~^64.3^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07909~^~430~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~ -~07909~^~454~^6.3^0^^~4~^~BFNN~^~10883~^^^^^^^^^~02/01/2007~ -~07910~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07910~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~317~^19.2^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07911~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~317~^58.0^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~401~^3.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07912~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~317~^22.6^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07913~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07913~^~317~^14.6^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~328~^0.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~07913~^~401~^0.7^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07914~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~317~^10.8^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07915~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07915~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~317~^17.7^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07916~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~07916~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~317~^13.1^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~328~^1.1^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~07916~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07917~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~317~^7.5^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~328~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~07917~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07918~^~291~^0.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~317~^7.5^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~328~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~07918~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07919~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~317~^12.5^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07919~^~326~^0.4^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07919~^~328~^0.4^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07919~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~07919~^~421~^33.9^0^^~4~^~BFNN~^~07081~^^^^^^^^^~04/01/2007~ -~07919~^~428~^36.6^2^^~1~^~A~^^^1^32.8^40.4^1^^^^~10/01/2016~ -~07919~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2016~ -~07919~^~430~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~10/01/2016~ -~07919~^~454~^3.0^0^^~4~^~BFNN~^~07081~^^^^^^^^^~04/01/2007~ -~07920~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07920~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07920~^~317~^7.5^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07921~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07921~^~317~^26.1^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~07921~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2002~ -~07922~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07922~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07922~^~317~^14.1^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07923~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~401~^2.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07924~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~317~^20.2^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07925~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~317~^10.4^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~401~^34.6^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07926~^~313~^41.2^11^10.1^~1~^~A~^^^2^31.0^51.3^1^-87.8^170.1^~4~^~02/01/2006~ -~07926~^~317~^25.4^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07927~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~317~^22.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~401~^30.4^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07928~^~317~^20.2^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07929~^~291~^0.3^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~07929~^~317~^22.2^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~326~^0.2^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07929~^~328~^0.2^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07929~^~401~^30.4^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~421~^41.1^0^^~4~^~BFNN~^~07919~^^^^^^^^^~05/01/2007~ -~07929~^~430~^0.8^0^^~4~^~BFFN~^~07919~^^^^^^^^^~05/01/2007~ -~07929~^~454~^3.7^0^^~4~^~BFNN~^~07919~^^^^^^^^^~05/01/2007~ -~07930~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07930~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07930~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07931~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~291~^0.9^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~317~^17.4^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~430~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07932~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07932~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~317~^6.1^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2002~ -~07933~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07933~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~317~^7.6^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07934~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~401~^14.8^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07935~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~317~^11.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~430~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2002~ -~07936~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07936~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~317~^5.6^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07937~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07937~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~01/01/2006~ -~07937~^~317~^12.4^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~401~^11.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07938~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~317~^10.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~401~^0.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07939~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~317~^27.8^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~401~^2.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07940~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~07940~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~317~^23.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~401~^16.7^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07941~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~317~^26.1^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~430~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2002~ -~07942~^~317~^41.6^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~401~^2.0^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07943~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07943~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2002~ -~07944~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~317~^29.9^0^^~4~^~BFZN~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~401~^10.0^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07945~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07945~^~317~^10.8^12^0.3^~1~^~A~^^^1^9.0^13.1^11^10.0^11.4^~2, 3~^~04/01/2011~ -~07945~^~328~^1.0^0^^~4~^~BFFN~^~07022~^^^^^^^^^~09/01/2012~ -~07945~^~421~^50.8^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~430~^1.8^0^^~4~^~BFSN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~454~^5.5^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~ -~07949~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07949~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07949~^~317~^12.5^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07950~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07950~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07950~^~317~^12.5^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~07951~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~07951~^~291~^0.3^1^^~11~^~JO~^^^2^0.0^0.8^^^^^~03/01/2003~ -~07951~^~317~^17.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~07951~^~326~^0.3^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~07951~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~07951~^~401~^2.5^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07951~^~421~^72.4^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~07951~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~07951~^~454~^3.9^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~07952~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~02/01/2006~ -~07952~^~317~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~401~^19.7^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~421~^53.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~07952~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~454~^4.8^2^^~1~^~A~^^^1^4.5^5.2^1^^^^~03/01/2006~ -~07953~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07953~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07953~^~317~^22.5^6^1.6^~1~^~A~^^^1^15.7^26.4^1^10.4^34.5^~2, 3~^~05/01/2014~ -~07953~^~326~^1.0^0^^~4~^~BFFN~^~10975~^^^^^^^^^~04/01/2013~ -~07953~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07953~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~07953~^~421~^52.0^0^^~4~^~BFNN~^~07064~^^^^^^^^^~04/01/2013~ -~07953~^~428~^22.5^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~07953~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~07953~^~430~^2.9^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~07953~^~454~^2.8^0^^~4~^~BFNN~^~07064~^^^^^^^^^~04/01/2013~ -~07954~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07954~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07954~^~317~^11.6^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07954~^~328~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~07954~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~07954~^~421~^45.8^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~ -~07954~^~430~^2.8^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~07954~^~454~^7.4^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~ -~07955~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~401~^2.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07956~^~328~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~07956~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~421~^51.4^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~07956~^~430~^1.1^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~07956~^~454~^10.4^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~07957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~430~^5.7^2^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~07958~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~430~^1.5^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07959~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~02/01/2006~ -~07959~^~317~^0.0^3^1.0e-03^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~401~^15.8^3^0.3^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~421~^59.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~07959~^~430~^0.1^3^6.7e-02^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~454~^4.2^3^0.4^~1~^~A~^^^1^3.3^4.7^2^2.3^5.9^~2, 3~^~03/01/2006~ -~07960~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~313~^36.0^13^5.1^~1~^~A~^^^3^25.0^49.9^3^19.4^52.5^~4~^~01/01/2006~ -~07960~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~401~^13.2^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~430~^0.6^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07961~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~317~^13.2^6^0.1^~1~^~A~^^^1^11.8^32.9^2^12.6^13.6^~2, 3~^~05/01/2013~ -~07961~^~328~^0.1^0^^~4~^~BFFN~^~05064~^^^^^^^^^~05/01/2013~ -~07961~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~421~^44.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07961~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~07961~^~454~^13.5^2^^~1~^~A~^^^1^4.9^13.9^^^^^~05/01/2013~ -~07962~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~317~^12.4^9^0.3^~1~^~A~^^^1^11.0^16.9^4^11.4^13.3^~2, 3~^~03/01/2013~ -~07962~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2013~ -~07962~^~326~^0.7^2^^~1~^~A~^^^1^0.6^0.7^^^^^~03/01/2013~ -~07962~^~328~^0.7^2^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07962~^~401~^22.5^2^^~1~^~A~^^^1^19.9^30.5^^^^^~09/01/2015~ -~07962~^~421~^50.2^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~07962~^~428~^28.6^2^^~1~^~A~^^^1^25.0^31.8^^^^^~09/01/2015~ -~07962~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2015~ -~07962~^~430~^0.1^2^^~1~^~A~^^^1^0.0^0.3^^^^~1~^~09/01/2015~ -~07962~^~454~^3.9^2^^~1~^~A~^^^1^2.9^4.8^^^^^~09/01/2015~ -~07963~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~317~^13.3^9^0.2^~1~^~A~^^^1^12.0^18.3^3^12.3^14.1^~2, 3~^~03/01/2013~ -~07963~^~326~^0.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~07963~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07963~^~401~^19.4^2^^~1~^~A~^^^1^16.5^28.0^^^^^~05/01/2013~ -~07963~^~421~^54.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~07963~^~430~^1.7^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~ -~07963~^~454~^4.1^2^^~1~^~A~^^^1^2.8^5.2^^^^^~05/01/2013~ -~07964~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~317~^13.1^9^0.3^~1~^~A~^^^1^11.5^15.4^3^12.0^14.2^~2, 3~^~03/01/2013~ -~07964~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2013~ -~07964~^~326~^0.7^2^^~1~^~A~^^^1^0.6^0.7^^^^^~03/01/2013~ -~07964~^~328~^0.7^2^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~07964~^~401~^19.2^2^^~1~^~A~^^^1^16.6^26.7^^^^^~03/01/2013~ -~07964~^~421~^56.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07964~^~428~^35.6^2^^~1~^~A~^^^1^35.3^35.8^^^^^~08/01/2015~ -~07964~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2015~ -~07964~^~430~^0.2^2^^~1~^~A~^^^1^0.0^0.4^^^^~1~^~08/01/2015~ -~07964~^~454~^4.3^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07965~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~317~^22.7^3^1.0^~1~^~A~^^^1^20.7^23.9^2^18.3^27.1^~2, 3~^~04/01/2013~ -~07965~^~325~^0.0^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~326~^0.4^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07965~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~421~^57.3^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~430~^0.0^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07965~^~454~^5.1^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07966~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~317~^30.0^3^0.9^~1~^~A~^^^1^28.0^31.0^2^25.7^34.1^~2, 3~^~04/01/2013~ -~07966~^~325~^0.0^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~326~^1.4^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~ -~07966~^~328~^1.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07966~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~421~^70.3^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~430~^0.0^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07966~^~454~^6.7^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~317~^20.3^6^1.6^~1~^~A~^^^1^15.3^26.7^1^7.0^33.6^~2, 3~^~04/01/2013~ -~07967~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~07967~^~326~^1.2^2^^~1~^~A~^^^1^1.1^1.2^^^^^~04/01/2013~ -~07967~^~328~^1.2^2^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07967~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~421~^45.2^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07967~^~428~^18.7^2^^~1~^~A~^^^1^18.4^19.4^^^^^~08/01/2015~ -~07967~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2015~ -~07967~^~430~^3.7^2^^~1~^~A~^^^1^2.3^4.5^^^^^~08/01/2015~ -~07967~^~454~^4.3^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~317~^19.8^9^0.9^~1~^~A~^^^1^16.1^25.7^8^17.6^22.0^~2, 3~^~04/01/2013~ -~07968~^~326~^0.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~07968~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~07968~^~401~^14.7^5^2.3^~1~^~A~^^^1^6.5^20.3^4^8.0^21.3^~2, 3~^~04/01/2013~ -~07968~^~421~^41.8^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07968~^~428~^20.1^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~07968~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~07968~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~07968~^~454~^4.0^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~317~^18.7^9^0.9^~1~^~A~^^^1^13.8^23.6^8^16.4^20.9^~2, 3~^~04/01/2013~ -~07969~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~07969~^~326~^0.9^2^^~1~^~A~^^^1^0.8^1.0^1^^^^~04/01/2013~ -~07969~^~328~^0.2^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~401~^16.2^6^1.5^~1~^~A~^^^1^10.1^20.4^5^12.3^20.0^~2, 3~^~04/01/2013~ -~07969~^~421~^41.5^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~430~^0.0^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~454~^3.9^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07970~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~317~^17.6^9^0.5^~1~^~A~^^^1^12.2^24.1^2^15.4^19.7^~2, 3~^~05/01/2014~ -~07970~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~07970~^~326~^0.7^2^^~1~^~A~^^^1^0.7^0.9^^^^^~05/01/2014~ -~07970~^~328~^0.7^2^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~07970~^~401~^19.1^5^^~1~^~A~^^^1^5.4^21.2^^^^~2, 3~^~05/01/2014~ -~07970~^~421~^38.3^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07970~^~428~^15.7^2^^~1~^~A~^^^1^15.0^20.0^^^^^~08/01/2015~ -~07970~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2015~ -~07970~^~430~^0.3^2^^~1~^~A~^^^1^0.0^0.3^^^^~1~^~08/01/2015~ -~07970~^~454~^3.4^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~ -~07971~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~317~^14.4^9^0.1^~1~^~A~^^^1^12.9^16.5^2^13.8^15.0^~2, 3~^~04/01/2013~ -~07971~^~328~^0.8^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~ -~07971~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~421~^59.3^3^^~1~^~AS~^^^1^56.3^74.3^^^^~2, 3~^~05/01/2014~ -~07971~^~430~^1.7^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~ -~07971~^~454~^3.9^3^^~1~^~A~^^^1^3.7^4.5^^^^~2, 3~^~05/01/2014~ -~07972~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~291~^2.3^3^^~1~^~A~^^^1^2.0^3.0^^^^~2, 3~^~06/01/2014~ -~07972~^~317~^15.3^6^0.1^~1~^~A~^^^1^12.4^20.4^1^14.0^16.5^~2, 3~^~06/01/2014~ -~07972~^~326~^0.1^0^^~4~^~BFFN~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~328~^0.1^0^^~4~^~BFFN~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~421~^45.2^0^^~4~^~BFPN~^~23573~^^^^^^^^^~01/01/2015~ -~07972~^~428~^28.1^4^14.2^~1~^~A~^^^1^6.8^58.3^1^-152.5^208.7^~2, 3~^~06/01/2014~ -~07972~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~430~^8.2^4^0.1^~1~^~A~^^^1^2.0^11.4^1^6.5^9.9^~2, 3~^~06/01/2014~ -~07973~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~317~^28.5^9^1.7^~1~^~A~^^^1^19.9^39.0^3^22.2^34.7^~2, 3~^~07/01/2014~ -~07973~^~326~^1.2^0^^~4~^~BFFN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~328~^1.2^0^^~4~^~BFFN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~421~^87.9^0^^~4~^~BFPN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~430~^0.0^0^^~4~^~BFSN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~454~^4.8^0^^~4~^~BFPN~^~05707~^^^^^^^^^~07/01/2014~ -~07974~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~317~^19.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~326~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~07974~^~401~^24.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07974~^~421~^56.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~430~^10.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07976~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~313~^22.4^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~317~^31.3^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07976~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~421~^39.8^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~428~^4.6^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~430~^34.8^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~454~^5.9^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07977~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~317~^29.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~326~^0.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~328~^0.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~421~^71.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~428~^2.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~454~^7.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~317~^15.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~328~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~421~^39.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07979~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~313~^5.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~317~^18.4^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~07979~^~401~^0.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~421~^60.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~428~^0.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~430~^1.7^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~454~^7.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08002~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08002~^~291~^7.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~317~^20.9^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~326~^6.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~328~^6.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~421~^25.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~430~^1.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08010~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08010~^~317~^6.5^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~08010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08010~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08010~^~421~^8.6^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~430~^0.6^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08011~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08011~^~291~^2.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~317~^10.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08011~^~421~^8.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~430~^0.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08012~^~291~^2.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~317~^7.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~421~^14.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~08012~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~08013~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08013~^~291~^10.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~313~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~317~^24.9^3^0.1^~1~^~A~^^^1^24.6^25.1^2^24.2^25.5^~2, 3~^~04/01/2017~ -~08013~^~326~^3.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~328~^3.6^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2017~ -~08013~^~401~^21.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~421~^26.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2017~ -~08013~^~429~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08015~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~291~^1.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~317~^14.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08015~^~326~^6.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~328~^6.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08015~^~421~^3.8^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~430~^1.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08018~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~291~^15.3^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08018~^~317~^11.1^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08018~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08018~^~421~^9.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~430~^0.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~08025~^~291~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~317~^18.0^3^0.1^~1~^~A~^^^1^17.8^18.3^2^17.4^18.6^~2, 3~^~04/01/2005~ -~08025~^~326~^7.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~328~^7.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~401~^64.5^3^1.5^~1~^~A~^^^1^61.4^66.7^2^57.6^71.3^~2, 3~^~04/01/2005~ -~08025~^~421~^6.0^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~08025~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~429~^0.2^3^3.3e-02^~1~^~A~^^^1^0.1^0.2^2^2.3e-02^0.3^~2, 3~^~04/01/2005~ -~08025~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08029~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~08029~^~291~^18.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~317~^52.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08029~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08029~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~08029~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08029~^~421~^33.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08029~^~430~^1.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08034~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~291~^0.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08034~^~317~^10.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~326~^7.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~328~^7.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~401~^22.2^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08034~^~421~^3.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~430~^1.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08037~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~291~^8.9^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~317~^25.4^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~328~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~401~^1.2^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~421~^49.2^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~430~^5.3^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08038~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~291~^13.0^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~317~^9.1^12^0.6^~1~^~A~^^^1^6.3^12.9^11^7.7^10.4^~2, 3~^~04/01/2007~ -~08038~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08038~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2014~ -~08038~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~421~^31.9^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08039~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~291~^10.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~317~^47.8^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~326~^3.4^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2013~ -~08039~^~328~^3.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08039~^~421~^29.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08039~^~430~^2.6^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08046~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08046~^~291~^3.2^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~317~^10.4^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~326~^7.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08046~^~328~^7.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08046~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08046~^~421~^8.6^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~430~^0.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08047~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~291~^3.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~317~^6.5^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~08047~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~401~^40.0^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08047~^~421~^8.3^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08049~^~291~^6.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~317~^23.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~421~^24.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~430~^1.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08054~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08054~^~291~^10.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~317~^17.3^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2011~ -~08054~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08054~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08054~^~421~^35.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~430~^7.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08059~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~291~^2.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~317~^6.5^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08059~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~421~^5.8^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08061~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08061~^~291~^13.7^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~317~^5.9^32^0.2^~6~^~JA~^^^2^5.7^6.2^1^2.9^8.9^~4~^~01/01/2003~ -~08061~^~326~^1.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~328~^1.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~401~^0.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~421~^27.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08061~^~430~^1.9^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08066~^~221~^0.0^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~291~^1.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08066~^~317~^10.5^6^1.5^~1~^~A~^^^^^^^^^^~01/01/2011~ -~08066~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08066~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~421~^6.0^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~430~^0.1^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08073~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1985~ -~08073~^~291~^5.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~317~^48.6^5^0.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08073~^~326~^7.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~328~^7.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08073~^~421~^13.8^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~430~^0.9^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08074~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~08074~^~291~^10.7^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~317~^47.0^3^1.8^~1~^~A~^^^1^43.3^49.3^2^38.9^54.9^~2, 3~^~04/01/2005~ -~08074~^~326~^7.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~328~^7.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~401~^21.4^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~421~^14.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~08074~^~430~^1.3^3^0.1^~1~^~A~^^^1^1.1^1.5^2^0.8^1.8^~2, 3~^~04/01/2005~ -~08074~^~454~^20.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~08081~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~291~^10.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~317~^40.9^0^^~4~^~FLC~^^^^^^^^^^~07/01/1998~ -~08081~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~421~^20.0^0^^~4~^~BFPN~^~08147~^^^^^^^^^~01/01/2007~ -~08081~^~430~^1.5^0^^~4~^~BFZN~^~08148~^^^^^^^^^~02/01/2003~ -~08083~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~08083~^~317~^6.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~326~^3.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~328~^3.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~401~^48.4^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~421~^4.7^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~08084~^~291~^15.1^5^1.0^~1~^~A~^^^1^11.4^17.7^4^12.2^17.9^~4~^~10/01/2002~ -~08084~^~317~^65.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08084~^~401~^6.0^9^1.4^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~421~^178.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~08084~^~430~^4.0^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~08085~^~291~^10.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08085~^~317~^59.3^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08085~^~401~^5.5^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~421~^162.9^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08085~^~430~^3.6^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~ -~08090~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~08090~^~291~^4.6^6^0.6^~1~^~A~^^^1^1.8^6.6^5^3.0^6.2^~2, 3~^~11/01/2008~ -~08090~^~317~^17.0^2^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08090~^~401~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~421~^14.4^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08090~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~454~^1.1^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08091~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~291~^0.8^12^3.9e-02^~1~^~A~^^^1^0.7^1.1^5^0.7^0.9^~1, 2, 3~^~11/01/2008~ -~08091~^~317~^3.1^22^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08091~^~401~^0.0^12^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~421~^2.6^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08091~^~428~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~429~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~430~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08092~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~08092~^~291~^4.2^4^0.2^~1~^~A~^^^1^3.5^4.6^3^3.4^4.9^~2, 3~^~12/01/2008~ -~08092~^~317~^17.1^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~ -~08092~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08092~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~421~^14.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~08092~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2008~ -~08092~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2008~ -~08092~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2008~ -~08092~^~454~^1.1^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~08093~^~291~^1.1^8^8.1e-02^~1~^~A~^^^1^0.7^1.4^5^0.8^1.2^~1, 2, 3~^~12/01/2008~ -~08093~^~401~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~421~^2.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~08093~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08094~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~08094~^~291~^4.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08094~^~317~^16.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2009~ -~08094~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08094~^~421~^14.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~430~^0.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08096~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~08096~^~291~^5.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08100~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~08100~^~291~^0.7^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08100~^~317~^19.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~08100~^~328~^0.0^0^^~4~^~BFNN~^~20044~^^^^^^^^^~01/01/2011~ -~08100~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08100~^~421~^5.9^0^^~4~^~BFNN~^~20044~^^^^^^^^^~01/01/2011~ -~08100~^~430~^0.1^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08102~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~08102~^~291~^3.8^2^^~1~^^^^1^2.5^5.0^1^^^^~02/01/2003~ -~08102~^~317~^20.0^3^^~1~^^^^^^^^^^^~02/01/2003~ -~08102~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08102~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08102~^~421~^23.1^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~08102~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08103~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~291~^0.5^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~313~^93.4^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~317~^2.8^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~328~^0.0^0^^~4~^~RP~^^~N~^^^^^^^^~03/01/2009~ -~08103~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~430~^0.1^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08104~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~08104~^~291~^4.2^11^0.2^~1~^~A~^^^1^3.3^5.2^10^3.7^4.7^~2, 3~^~10/01/2008~ -~08104~^~317~^20.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08104~^~401~^0.0^11^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~421~^23.1^0^^~4~^~BFZN~^~08102~^^^^^^^^^~10/01/2008~ -~08104~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~429~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~430~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2008~ -~08105~^~291~^0.8^26^0.1^~1~^~A~^^^1^0.0^2.0^25^0.5^1.0^~1, 2, 3~^~11/01/2008~ -~08105~^~317~^12.8^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08105~^~401~^0.0^26^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~421~^3.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~08105~^~428~^0.0^16^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~429~^0.0^16^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~430~^0.0^16^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~454~^6.9^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~08106~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~08106~^~291~^3.3^2^^~1~^^^^1^2.5^4.0^1^^^^~02/01/2003~ -~08106~^~317~^20.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08106~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08106~^~421~^23.1^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~08106~^~430~^0.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08107~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~291~^0.6^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~317~^3.5^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08116~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~08116~^~291~^2.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~317~^24.9^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08116~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~421~^3.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~430~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~08120~^~291~^10.1^4^0.4^~1~^~A~^^^1^8.8^11.0^3^8.6^11.6^~2, 3~^~10/01/2006~ -~08120~^~317~^28.9^4^1.7^~1~^~A~^^^1^24.5^32.8^3^23.4^34.2^~2, 3~^~10/01/2006~ -~08120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08120~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~421~^40.4^0^^~4~^~BFSN~^~08121~^^^^^^^^^~11/01/2006~ -~08120~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~430~^2.0^4^0.1^~1~^~A~^^^1^1.7^2.5^3^1.4^2.5^~2, 3~^~10/01/2006~ -~08121~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08121~^~291~^1.7^7^8.2e-02^~1~^~A~^^^1^1.4^2.0^6^1.5^1.9^~2, 3~^~11/01/2006~ -~08121~^~313~^71.6^21^27.4^~1~^~A~^^^3^4.0^201.4^6^4.3^138.8^~4~^~11/01/2006~ -~08121~^~317~^5.4^8^0.2^~1~^~A~^^^1^4.0^6.6^7^4.8^6.0^~2, 3~^~11/01/2006~ -~08121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08121~^~401~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~421~^7.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~08121~^~429~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~430~^0.3^8^5.7e-02^~1~^~A~^^^1^0.2^0.6^7^0.2^0.4^~2, 3~^~11/01/2006~ -~08121~^~454~^3.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~08122~^~221~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~08122~^~291~^10.0^2^^~1~^~A~^^^1^9.4^10.5^1^^^^~12/01/2006~ -~08122~^~317~^23.2^2^^~1~^~A~^^^1^18.4^28.0^1^^^^~08/01/2012~ -~08122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08122~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2006~ -~08122~^~421~^27.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~430~^1.9^2^^~1~^~A~^^^1^1.9^2.0^1^^^^~12/01/2006~ -~08122~^~454~^25.4^2^^~1~^~A~^^^1^21.3^29.4^1^^^^~08/01/2012~ -~08123~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~291~^1.7^4^0.1^~1~^~A~^^^1^1.3^2.2^3^1.2^2.2^~2, 3~^~12/01/2006~ -~08123~^~317~^5.0^4^0.3^~1~^~A~^^^1^4.0^5.7^3^3.8^6.2^~2, 3~^~12/01/2006~ -~08123~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08123~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~421~^4.7^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~430~^0.4^4^6.2e-02^~1~^~A~^^^1^0.3^0.6^3^0.2^0.6^~2, 3~^~12/01/2006~ -~08124~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08124~^~291~^8.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~401~^1.2^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08128~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08128~^~291~^8.0^2^^~1~^~A~^^^1^7.5^8.2^^^^^~08/01/2012~ -~08128~^~317~^6.4^3^0.0^~1~^~A~^^^1^2.9^14.6^^^^~1, 2, 3~^~08/01/2012~ -~08128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08128~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~421~^29.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08128~^~430~^1.9^2^^~1~^~A~^^^1^1.7^2.2^1^^^^~08/01/2012~ -~08129~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~291~^2.0^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~317~^1.6^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~328~^0.0^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~421~^7.2^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~430~^0.5^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08130~^~291~^7.2^2^^~1~^~A~^^^1^7.0^7.4^1^^^^~04/01/2014~ -~08130~^~317~^15.8^3^2.4^~1~^~A~^^^1^11.0^18.5^2^5.4^26.1^~2, 3~^~04/01/2014~ -~08130~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08133~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~291~^1.3^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~317~^1.6^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~328~^0.0^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~401~^0.1^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~421~^6.0^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~430~^0.5^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08138~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~291~^4.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~317~^14.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~421~^19.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~430~^0.9^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08142~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~291~^12.8^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~317~^70.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08142~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08142~^~430~^2.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08143~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~08143~^~291~^2.7^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~08144~^~291~^9.5^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~317~^70.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08144~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~421~^23.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08144~^~430~^2.4^0^^~4~^~BFFN~^~20072~^^^^^^^^^~02/01/2003~ -~08145~^~221~^0.0^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~291~^1.6^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~317~^12.8^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~401~^0.0^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~421~^4.2^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~08145~^~430~^0.4^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08146~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~08146~^~291~^9.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08146~^~317~^123.1^14^5.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08146~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08146~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~ -~08146~^~421~^32.7^0^^~4~^~BFSY~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~430~^2.0^0^^~4~^~BFSN~^~20071~^^^^^^^^^~12/01/2002~ -~08147~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~291~^12.4^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~317~^2.8^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~08147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08147~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~421~^23.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~08147~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~454~^158.0^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~08148~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~291~^12.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~317~^5.9^17^0.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~08148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08148~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08148~^~421~^23.1^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~08148~^~430~^1.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08156~^~291~^1.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08156~^~313~^19.0^17^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~08156~^~317~^10.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08156~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08157~^~291~^4.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08157~^~313~^27.0^17^8.0^~1~^~A~^^^^^^^^^^~04/01/2006~ -~08157~^~317~^123.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08157~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08160~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~08160~^~291~^1.6^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08160~^~317~^17.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~08160~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~08160~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08161~^~221~^0.0^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~291~^0.8^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~313~^56.0^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08161~^~317~^3.1^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~328~^0.0^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08161~^~401~^0.0^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~421~^2.6^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~430~^0.0^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~454~^0.2^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08164~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~291~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~317~^2.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~08164~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~421~^2.4^0^^~4~^~BFSN~^~08091~^^^^^^^^^~12/01/2008~ -~08164~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~08165~^~221~^0.0^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~291~^0.7^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~317~^2.7^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~328~^0.0^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~ -~08165~^~401~^0.0^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~421~^2.4^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~430~^0.0^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08168~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08168~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08168~^~430~^0.0^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08169~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~291~^0.5^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~313~^94.6^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~317~^2.8^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~328~^0.0^0^^~4~^~RP~^^~N~^^^^^^^^~05/01/2009~ -~08169~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~430~^0.1^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~08172~^~291~^1.9^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08172~^~317~^23.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~08172~^~401~^0.0^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08173~^~221~^0.0^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~291~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~313~^50.7^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~401~^0.0^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~421~^3.5^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~430~^0.0^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08177~^~291~^2.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08177~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08180~^~221~^0.0^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~291~^1.7^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~313~^71.6^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~317~^5.4^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~401~^0.0^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~421~^7.4^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~430~^0.3^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~454~^3.1^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08182~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~291~^2.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~317~^11.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~401~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~430~^0.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~291~^1.6^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~317~^12.8^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~421~^4.2^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08183~^~430~^0.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08191~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08191~^~291~^9.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~317~^4.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~08191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08191~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~421~^20.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08191~^~430~^1.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~291~^4.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~317~^16.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~326~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~328~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~401~^0.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~421~^16.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~430~^12.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08200~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1995~ -~08200~^~291~^11.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~317~^31.3^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08200~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~06/01/1995~ -~08200~^~421~^29.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~430~^3.7^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08204~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~08204~^~291~^3.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~317~^6.5^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2005~ -~08204~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08204~^~401~^52.9^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~421~^4.5^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~08204~^~430~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~08206~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~291~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~317~^5.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08206~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08206~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~421~^2.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08210~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08210~^~291~^6.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08210~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08211~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08211~^~291~^2.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~317~^7.8^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08211~^~401~^36.4^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~421~^7.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~430~^0.7^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08214~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~291~^8.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~317~^6.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08214~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~401~^11.5^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08214~^~421~^31.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~430~^1.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08215~^~291~^8.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08215~^~317~^6.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08215~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~401~^12.0^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08215~^~421~^31.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~430~^1.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08216~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~291~^10.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~317~^7.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08216~^~401~^11.5^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~421~^24.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~430~^2.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08218~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08218~^~291~^9.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~317~^13.8^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08218~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~401~^0.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08218~^~421~^31.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~08218~^~430~^6.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~454~^135.2^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~08220~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08220~^~291~^9.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~317~^17.3^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2011~ -~08220~^~328~^0.0^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~ -~08220~^~401~^0.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~421~^31.3^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~430~^3.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~08221~^~291~^4.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08225~^~221~^0.0^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~291~^6.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~317~^16.0^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08225~^~328~^0.0^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08225~^~401~^0.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~430~^2.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~291~^6.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~317~^16.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~328~^0.0^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~401~^0.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08231~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~08231~^~291~^14.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~317~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08231~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08236~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~291~^1.7^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08240~^~291~^1.7^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08249~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~291~^2.2^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08252~^~291~^2.2^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08290~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~08290~^~291~^14.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~317~^19.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~08290~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08290~^~401~^4.2^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~421~^36.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08290~^~430~^2.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08305~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~08305~^~291~^4.4^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~317~^19.9^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~421~^15.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~430~^1.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08314~^~291~^4.8^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08314~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08316~^~291~^1.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08346~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~291~^1.7^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~317~^6.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~328~^3.3^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~421~^9.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08347~^~291~^1.8^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~317~^8.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08347~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08348~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1999~ -~08348~^~291~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2015~ -~08348~^~326~^3.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~328~^3.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~401~^18.2^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08349~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08349~^~291~^2.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~317~^9.9^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~326~^3.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~328~^3.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~401~^18.8^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~421~^5.8^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~430~^0.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08351~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08351~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~291~^8.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08352~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08353~^~291~^8.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08353~^~401~^0.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~291~^2.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~401~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~291~^2.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08355~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08363~^~291~^41.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08363~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~421~^81.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~08365~^~291~^11.8^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~328~^0.0^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2009~ -~08365~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~291~^11.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08366~^~401~^6.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08402~^~221~^0.0^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~291~^9.4^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~317~^28.9^0^^~4~^~BFZN~^~08120~^^^^^^^^^~02/01/2014~ -~08402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08402~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~430~^2.0^0^^~4~^~BFZN~^~08120~^^^^^^^^^~02/01/2014~ -~08409~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08409~^~291~^1.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~317~^5.5^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~326~^3.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~328~^3.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~401~^19.4^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~421~^5.4^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08409~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08410~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08410~^~291~^8.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~317~^2.9^2^^~1~^~A~^^^1^2.9^2.9^^^^~1~^~08/01/2012~ -~08410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08410~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08410~^~421~^29.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~08410~^~430~^1.9^2^^~1~^~A~^^^1^1.7^2.2^1^^^^~08/01/2012~ -~08411~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~08411~^~291~^6.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08411~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08417~^~291~^6.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~08417~^~401~^0.9^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08435~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~08435~^~291~^20.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~317~^88.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08435~^~401~^2.4^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08435~^~421~^49.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~08435~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~430~^1.8^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~454~^248.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~08436~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08436~^~291~^5.8^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~317~^2.9^2^^~1~^~A~^^^1^2.9^2.9^^^^~1~^~08/01/2012~ -~08436~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08436~^~401~^0.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~08436~^~421~^25.6^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~08436~^~430~^2.3^2^^~1~^~A~^^^1^2.2^2.5^1^^^^~08/01/2012~ -~08444~^~291~^4.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~291~^4.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~291~^4.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~291~^9.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08452~^~291~^9.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08452~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08476~^~291~^3.4^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~328~^3.4^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~08476~^~401~^20.7^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~291~^2.6^3^8.8e-02^~1~^~A~^^^1^2.5^2.8^2^2.2^3.0^~2, 3~^~04/01/2007~ -~08478~^~317~^27.2^3^2.2^~1~^~A~^^^1^23.8^31.5^2^17.4^36.9^~2, 3~^~04/01/2007~ -~08478~^~328~^3.8^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2015~ -~08478~^~401~^27.6^3^0.4^~1~^~A~^^^1^26.8^28.4^2^25.6^29.5^~2, 3~^~06/01/2007~ -~08478~^~421~^14.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08481~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~08481~^~291~^4.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~326~^3.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~328~^3.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~401~^29.9^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~430~^1.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08484~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08484~^~291~^10.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~317~^38.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~326~^2.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~328~^2.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~421~^24.1^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~430~^0.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08487~^~291~^4.7^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~326~^3.2^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~328~^3.2^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~401~^25.0^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~430~^1.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~291~^2.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~326~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~401~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~430~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08489~^~291~^1.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08489~^~401~^1.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08491~^~291~^6.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~328~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~291~^2.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~326~^3.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~328~^3.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~401~^18.2^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~430~^0.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08494~^~291~^5.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~317~^25.3^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~421~^16.1^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~430~^1.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08495~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08495~^~291~^1.1^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~317~^8.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~326~^3.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~328~^3.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08495~^~421~^3.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08500~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~291~^10.9^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~317~^52.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~421~^26.1^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~430~^1.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08501~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~291~^1.0^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~317~^9.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~328~^4.9^1^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~08501~^~401~^1.0^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~421~^3.4^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08504~^~291~^16.9^3^0.2^~1~^~A~^^^1^16.6^17.3^2^15.9^17.7^~2, 3~^~03/01/2005~ -~08504~^~317~^9.2^3^0.4^~1~^~A~^^^1^8.3^9.8^2^7.2^11.1^~2, 3~^~03/01/2005~ -~08504~^~326~^8.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08504~^~328~^8.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08504~^~401~^239.7^3^6.4^~1~^~A~^^~Y~^1^230.0^252.0^2^211.7^267.5^~2, 3~^~01/01/2007~ -~08504~^~421~^31.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~08504~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~430~^2.7^3^0.2^~1~^~A~^^^1^2.2^3.2^2^1.4^3.9^~2, 3~^~03/01/2005~ -~08504~^~454~^123.9^2^^~1~^~A~^^^1^109.7^138.1^1^^^^~05/01/2009~ -~08505~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.3^2.8^2^1.9^3.2^~2, 3~^~03/01/2005~ -~08505~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~03/01/2005~ -~08505~^~326~^8.3^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08505~^~328~^8.3^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08505~^~401~^18.5^3^1.5^~1~^~A~^^~Y~^1^15.4^20.5^2^11.7^25.2^~2, 3~^~05/01/2009~ -~08505~^~421~^11.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~08505~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~454~^7.1^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08506~^~291~^2.7^3^0.2^~1~^~A~^^^1^2.4^3.1^2^1.8^3.6^~2, 3~^~03/01/2005~ -~08506~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~326~^7.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08506~^~328~^7.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08506~^~401~^65.0^3^2.0^~1~^~A~^^~Y~^1^61.7^68.9^2^56.0^74.0^~2, 3~^~01/01/2007~ -~08506~^~421~^2.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~08506~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~454~^1.2^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~08507~^~291~^1.5^3^0.1^~1~^~A~^^^1^1.2^1.8^2^0.7^2.1^~2, 3~^~03/01/2005~ -~08507~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~03/01/2005~ -~08507~^~326~^8.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~328~^8.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~401~^20.7^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2005~ -~08510~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~291~^0.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~317~^7.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~328~^1.7^2^^~8~^~LC~^^^1^0.8^2.6^1^^^^~02/01/2009~ -~08510~^~401~^15.4^2^^~8~^~LC~^^^1^4.6^26.1^1^^^^~02/01/2009~ -~08510~^~421~^31.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~08510~^~430~^2.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08511~^~291~^0.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08511~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~291~^0.4^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08512~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08544~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~291~^11.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~317~^37.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~326~^2.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~328~^2.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~401~^25.0^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~421~^26.9^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~08546~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~291~^1.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~317~^24.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~08546~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~421~^22.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08549~^~291~^6.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08550~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~291~^2.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~317~^6.5^0^^~4~^~BFZN~^~08010~^^^^^^^^^~05/01/2011~ -~08550~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~421~^8.6^0^^~4~^~BFZN~^~08010~^^^^^^^^^~05/01/2011~ -~08550~^~430~^1.1^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08554~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~291~^7.4^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~317~^32.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~326~^1.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~328~^1.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~421~^25.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~430~^3.7^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08571~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~291~^8.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~313~^10.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~317~^1.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~328~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~401~^0.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~421~^3.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~430~^26.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08573~^~291~^4.4^4^0.4^~1~^~A~^^^1^3.3^5.2^3^2.8^5.8^~2, 3~^~11/01/2008~ -~08573~^~401~^0.0^4^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~428~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08573~^~429~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08573~^~430~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08574~^~291~^0.7^3^0.4^~1~^~A~^^^1^0.0^1.6^2^-1.3^2.7^~1, 2, 3~^~11/01/2008~ -~08574~^~401~^0.0^3^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~428~^0.0^1^^~1~^~A~^^~N~^^^^^^^~1~^~11/01/2008~ -~08574~^~429~^0.0^1^^~1~^~A~^^~N~^^^^^^^~1~^~11/01/2008~ -~08574~^~430~^0.0^1^^~1~^~A~^^~N~^^^^^^^~1~^~11/01/2008~ -~08575~^~291~^0.7^4^0.3^~1~^~A~^^^1^0.0^1.5^3^-0.4^1.7^~2, 3~^~11/01/2008~ -~08575~^~401~^0.0^4^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~428~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08575~^~429~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08575~^~430~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08576~^~291~^4.4^4^0.3^~1~^~A~^^^1^3.4^5.0^3^3.2^5.4^~2, 3~^~11/01/2008~ -~08576~^~401~^0.0^4^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~428~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08576~^~429~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08576~^~430~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08577~^~291~^0.4^4^0.3^~1~^~A~^^^1^0.0^1.5^3^-0.7^1.5^~1, 2, 3~^~11/01/2008~ -~08577~^~401~^0.0^4^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~428~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08577~^~429~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08577~^~430~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08578~^~291~^1.5^4^0.3^~1~^~A~^^^1^0.6^2.0^3^0.4^2.5^~2, 3~^~11/01/2008~ -~08578~^~401~^0.0^4^0.0^~1~^~A~^^~N~^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~428~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08578~^~429~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08578~^~430~^0.0^2^^~1~^~A~^^~N~^1^0.0^0.0^^^^~1~^~11/01/2008~ -~08580~^~291~^9.9^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~317~^14.5^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08625~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~291~^9.9^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~401~^3.1^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~291~^6.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~401~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08629~^~291~^2.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~401~^0.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08632~^~291~^8.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~401~^11.5^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08633~^~221~^0.0^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~ -~08633~^~291~^7.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~317~^7.3^0^^~4~^~BFZN~^~43570~^^^^^^^^^~07/01/2012~ -~08633~^~326~^2.7^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~328~^2.7^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~421~^22.9^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08633~^~430~^3.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08639~^~291~^8.8^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~401~^0.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~291~^9.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~401~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~ -~08641~^~291~^8.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08642~^~291~^9.7^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~401~^1.3^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08655~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~08655~^~291~^5.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~317~^17.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~326~^3.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~328~^3.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~421~^18.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~430~^1.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08656~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~291~^16.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~328~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~421~^5.7^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~430~^0.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08657~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~291~^18.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~317~^16.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~401~^55.6^0^^~8~^~LC~^^~Y~^^^^^^^^~04/01/2013~ -~08657~^~421~^14.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08662~^~291~^5.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~326~^3.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~328~^3.2^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~401~^15.6^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08665~^~291~^5.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~401~^0.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08672~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08672~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08672~^~401~^16.0^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~291~^10.3^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08673~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~291~^5.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~430~^0.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08675~^~291~^6.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~326~^3.6^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~328~^3.6^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~401~^29.6^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~291~^6.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~326~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~328~^3.3^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~401~^20.0^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08680~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~08680~^~291~^7.2^3^0.1^~1~^~A~^^^1^7.0^7.4^1^5.8^8.5^~2, 3~^~04/01/2014~ -~08680~^~317~^16.8^6^1.5^~1~^~A~^^^1^11.0^20.1^3^11.9^21.5^~2, 3~^~04/01/2014~ -~08680~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~08680~^~401~^0.0^0^^~4~^~BFZN~^~08130~^~N~^^^^^^^^~04/01/2014~ -~08680~^~421~^22.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~08680~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~08680~^~454~^11.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~08685~^~291~^9.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~401~^71.3^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~291~^13.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~291~^12.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~291~^22.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~291~^7.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~401~^2.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~291~^7.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~401~^0.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~291~^8.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~401~^9.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~291~^7.4^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~401~^16.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~291~^7.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~401~^0.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~291~^13.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08709~^~291~^10.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2015~ -~08709~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~430~^1.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~09001~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09001~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09001~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09001~^~401~^1677.6^80^44.7^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09002~^~291~^0.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09002~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09002~^~401~^1600.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~430~^1.4^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~ -~09003~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09003~^~291~^2.4^29^0.2^~1~^~A~^^^3^1.4^3.5^4^1.5^3.1^~2~^~06/01/2003~ -~09003~^~313~^3.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09003~^~317~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.1^1^2.0e-02^2.2e-02^~1, 2, 3~^~06/01/2003~ -~09003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09003~^~401~^4.6^3^0.4^~1~^~A~^^^1^4.0^5.5^2^2.5^6.5^~4~^~09/01/2002~ -~09003~^~421~^3.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09003~^~429~^0.0^20^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~09003~^~430~^2.2^20^7.9e-02^~1~^~A~^^^2^0.9^4.3^4^1.9^2.4^~2, 3~^~06/01/2003~ -~09003~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09004~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/2002~ -~09004~^~291~^1.3^4^9.0e-02^~1~^~A~^^^1^1.1^1.5^1^0.3^2.1^~2, 3~^~09/01/2002~ -~09004~^~317~^0.0^0^^~4~^~BFZN~^~09003~^^^^^^^^^~09/01/2002~ -~09004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09004~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~421~^3.4^0^^~4~^~BFZN~^~09003~^^^^^^^^^~12/01/2006~ -~09004~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~09004~^~430~^0.6^4^4.5e-02^~1~^~A~^^^1^0.4^0.7^1^1.3e-02^1.1^~2, 3~^~09/01/2002~ -~09005~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09005~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09005~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09005~^~401~^0.2^6^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~421~^3.4^0^^~4~^~BFZN~^~09003~^^^^^^^^^~12/01/2006~ -~09005~^~430~^0.6^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09006~^~291~^2.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09006~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09006~^~401~^0.3^6^4.1e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~421~^3.4^0^^~4~^~BFZN~^~09003~^^^^^^^^^~12/01/2006~ -~09006~^~430~^0.7^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09008~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~09008~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09008~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09008~^~401~^0.2^6^7.4e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~421~^3.2^0^^~4~^~BFZN~^~09020~^^^^^^^^^~01/01/2007~ -~09008~^~430~^0.6^0^^~4~^~BFZN~^~09020~^^^^^^^^^~01/01/2003~ -~09009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09009~^~291~^12.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09009~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09009~^~401~^2.2^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~421~^23.1^0^^~4~^~BFSN~^~09003~^^^^^^^^^~01/01/2007~ -~09009~^~430~^4.3^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~ -~09010~^~291~^2.6^0^^~4~^^^^^^^^^^^~11/01/1994~ -~09010~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09010~^~401~^0.6^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09011~^~291~^8.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09011~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09011~^~401~^3.9^11^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~421~^17.6^0^^~4~^~BFSN~^~09004~^^^^^^^^^~01/01/2007~ -~09011~^~430~^3.0^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09012~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09012~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09012~^~401~^1.0^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~421~^3.8^0^^~4~^~BFSN~^~09003~^^^^^^^^^~01/01/2007~ -~09012~^~430~^0.7^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09013~^~291~^1.9^0^^~4~^^^^^^^^^^^~11/01/1994~ -~09013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09013~^~401~^0.9^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~291~^1.3^0^^~4~^~BFZN~^~09004~^^^^^^^^^~07/01/2010~ -~09014~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09014~^~401~^0.1^6^3.0e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~291~^1.3^0^^~4~^~BFZN~^~09004~^^^^^^^^^~07/01/2010~ -~09015~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09015~^~401~^0.4^6^6.0e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09016~^~291~^0.2^3^0.1^~1~^~A~^^^2^0.0^0.3^2^-0.2^0.6^~4~^~05/01/2008~ -~09016~^~317~^0.1^4^4.5e-02^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09016~^~401~^0.9^8^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~421~^1.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~09016~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~05/01/2008~ -~09016~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09017~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09017~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09017~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09017~^~401~^2.1^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~421~^6.5^0^^~4~^~BFSN~^~09018~^^^^^^^^^~01/01/2007~ -~09017~^~430~^0.0^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09018~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/2002~ -~09018~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09018~^~317~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09018~^~401~^0.6^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~421~^1.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09018~^~430~^0.0^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~09019~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09019~^~291~^1.1^3^4.7e-02^~1~^~A~^^^1^1.1^1.2^2^0.9^1.3^~2, 3~^~06/01/2008~ -~09019~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09019~^~401~^1.0^2^^~1~^~A~^^^1^0.3^1.7^1^^^~1~^~06/01/2008~ -~09019~^~421~^2.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09019~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09019~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09019~^~430~^0.5^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09019~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09020~^~291~^1.2^4^6.5e-02^~1~^~A~^^^2^1.1^1.4^1^0.4^2.0^~2~^~06/01/2008~ -~09020~^~317~^0.3^2^^~1~^~A~^^^2^0.2^0.4^1^^^^~06/01/2008~ -~09020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09020~^~401~^1.7^30^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~421~^3.3^0^^~4~^~BFSN~^~09019~^^^^^^^^^~06/01/2008~ -~09020~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2008~ -~09020~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2008~ -~09020~^~430~^0.6^2^^~1~^~A~^^^2^0.5^0.6^1^^^^~12/01/2002~ -~09021~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09021~^~291~^2.0^5^0.4^~1~^~A~^^^2^1.5^2.5^1^-3.2^7.1^~2~^~01/01/2003~ -~09021~^~317~^0.1^21^8.9e-02^~1~^~A~^^^8^0.0^1.5^6^-9.8e-02^0.3^~1, 2, 3~^~01/01/2003~ -~09021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09021~^~401~^10.0^4^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~421~^2.8^0^^~4~^~BFSN~^~09032~^^^^^^^^^~12/01/2006~ -~09021~^~430~^3.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09022~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09022~^~317~^0.1^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09022~^~401~^3.4^19^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~421~^1.8^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2007~ -~09022~^~430~^2.2^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09023~^~291~^1.1^0^^~4~^^^^^^^^^^^~11/01/1994~ -~09023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09023~^~401~^1.8^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09024~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09024~^~317~^0.1^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09024~^~401~^4.9^8^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~421~^1.8^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2007~ -~09024~^~430~^2.2^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09025~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09025~^~401~^4.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09026~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09026~^~317~^0.1^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09026~^~401~^2.7^165^8.7e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~421~^1.8^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2007~ -~09026~^~430~^2.2^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09027~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09027~^~317~^0.1^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09027~^~401~^3.1^225^7.4e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~421~^1.8^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2007~ -~09027~^~430~^2.2^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09028~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09028~^~401~^2.8^173^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09029~^~401~^2.4^8^0.3^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09030~^~401~^9.5^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09031~^~401~^7.1^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09032~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09032~^~291~^7.3^5^9.2e-02^~1~^~A~^^^2^7.2^7.4^1^6.1^8.4^~4~^~05/01/2002~ -~09032~^~317~^2.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2002~ -~09032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09032~^~401~^1.0^3^0.2^~1~^~A~^^^1^0.7^1.4^2^-1.0e-03^1.9^~1, 2, 3~^~05/01/2002~ -~09032~^~421~^13.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09032~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2002~ -~09032~^~430~^3.1^3^0.2^~1~^~A~^^^2^2.8^3.3^1^-0.1^6.2^~4~^~05/01/2002~ -~09032~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09033~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~09033~^~291~^2.6^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~317~^0.8^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09033~^~401~^0.3^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~421~^4.9^0^^~4~^~BFSN~^~09032~^^^^^^^^^~12/01/2006~ -~09033~^~430~^1.1^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09034~^~291~^4.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09034~^~401~^1.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~09035~^~291~^2.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09035~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1999~ -~09035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09035~^~401~^9.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09036~^~221~^0.0^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~291~^0.1^1^^~1~^~A~^^^1^0.1^0.1^^^^~1~^~12/01/2016~ -~09036~^~317~^0.0^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09036~^~401~^29.7^4^1.4^~1~^~A~^^^1^21.2^32.9^2^23.5^35.8^~2, 3~^~12/01/2016~ -~09036~^~421~^1.0^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2007~ -~09036~^~430~^1.2^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~ -~09037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09037~^~291~^6.7^27^0.8^~1~^~A~^^^8^3.2^12.7^6^4.5^8.8^~2~^~03/01/2003~ -~09037~^~313~^7.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~09037~^~317~^0.4^5^6.8e-02^~1~^~A~^^^2^0.2^0.6^3^0.1^0.6^~2, 3~^~03/01/2003~ -~09037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09037~^~401~^10.0^20^0.5^~1~^~A~^^^3^6.3^24.1^1^3.5^16.4^~2~^~03/01/2003~ -~09037~^~421~^14.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~09037~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~430~^21.0^8^0.7^~1~^~A~^^^2^15.7^27.0^5^19.0^22.9^~2, 3~^~03/01/2003~ -~09037~^~454~^0.7^2^^~1~^~A~^^^2^0.6^0.7^^^^^~12/01/2006~ -~09038~^~291~^6.8^21^1.0^~1~^~A~^^^7^3.2^12.7^6^4.3^9.3^~2~^~03/01/2003~ -~09038~^~317~^0.4^5^6.8e-02^~1~^~A~^^^2^0.2^0.6^3^0.1^0.6^~2, 3~^~03/01/2003~ -~09038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09038~^~401~^8.8^16^0.5^~1~^~A~^^^2^6.3^13.9^1^1.3^16.2^~2~^~03/01/2003~ -~09038~^~421~^14.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09038~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~430~^21.0^8^0.7^~1~^~A~^^^2^15.7^27.0^5^19.0^22.9^~2, 3~^~03/01/2003~ -~09038~^~454~^0.7^2^^~1~^~A~^^^2^0.6^0.7^^^^^~05/01/2006~ -~09039~^~291~^5.6^6^0.8^~1~^~A~^^^3^4.0^7.6^2^2.0^9.2^~2~^~06/01/2003~ -~09039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09039~^~401~^17.4^4^3.6^~1~^~A~^^^1^7.7^24.1^3^5.8^28.9^~4~^~06/01/2003~ -~09040~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09040~^~291~^2.6^13^0.1^~1~^~A~^^^5^1.7^3.7^1^1.6^3.4^~2~^~12/01/2002~ -~09040~^~313~^2.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09040~^~317~^1.0^31^0.2^~1~^~A~^^^11^0.0^5.4^8^0.3^1.6^~1, 2~^~12/01/2002~ -~09040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09040~^~401~^8.7^8^0.4^~1~^~A~^^^2^8.0^9.5^2^6.8^10.6^~4~^~12/01/2002~ -~09040~^~421~^9.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09040~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09040~^~430~^0.5^6^7.5e-02^~1~^~A~^^^3^0.2^0.9^1^-0.4^1.4^~2~^~12/01/2002~ -~09040~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09041~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09041~^~291~^9.9^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~317~^3.9^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09041~^~401~^7.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~421~^19.6^0^^~4~^~BFSN~^~09032~^^^^^^^^^~03/01/2007~ -~09041~^~430~^2.0^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09042~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~09042~^~291~^5.3^4^1.1^~1~^~A~^^^2^2.3^6.7^1^-7.0^17.6^~2, 3~^~02/01/2003~ -~09042~^~317~^0.4^2^^~1~^~A~^^^1^0.1^0.7^1^^^^~02/01/2003~ -~09042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09042~^~401~^21.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09042~^~421~^8.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09042~^~429~^0.0^5^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~430~^19.8^5^2.0^~1~^~A~^^^2^14.7^25.1^3^12.8^26.7^~2, 3~^~02/01/2003~ -~09042~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09043~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~291~^0.1^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09043~^~317~^0.3^0^^~4~^~BFSN~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09043~^~401~^11.3^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~421~^6.6^0^^~4~^~BFSY~^~09042~^^^^^^^^^~03/01/2007~ -~09043~^~430~^15.2^0^^~4~^~BFSN~^~09042~^^^^^^^^^~02/01/2003~ -~09044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~291~^2.5^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~401~^19.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~421~^14.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~430~^5.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09046~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09046~^~291~^3.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09046~^~317~^0.3^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09046~^~401~^2.8^3^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~421~^5.7^0^^~4~^~BFYN~^~09042~^^^^^^^^^~12/01/2006~ -~09046~^~430~^13.3^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09048~^~291~^5.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09048~^~317~^0.4^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09048~^~401~^3.1^3^0.8^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~421~^8.5^0^^~4~^~BFZN~^~09042~^^^^^^^^^~12/01/2006~ -~09048~^~430~^19.8^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09050~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2010~ -~09050~^~291~^2.4^4^0.1^~1~^~A~^^^1^2.3^2.8^3^2.0^2.8^~2, 3~^~09/01/2002~ -~09050~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~09/01/2002~ -~09050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09050~^~401~^9.7^4^0.8^~1~^~A~^^^1^7.4^11.5^3^6.8^12.5^~2, 3~^~05/01/2003~ -~09050~^~421~^6.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09050~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~430~^19.3^8^1.5^~1~^~A~^^^2^15.5^29.1^4^14.9^23.7^~2, 3~^~09/01/2002~ -~09050~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09052~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09052~^~291~^1.6^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~317~^0.1^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09052~^~401~^1.1^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~421~^4.0^0^^~4~^~BFYN~^~09050~^^^^^^^^^~01/01/2007~ -~09052~^~430~^6.4^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09053~^~291~^4.4^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~09053~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09054~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09054~^~291~^2.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09054~^~317~^0.1^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09054~^~401~^2.5^3^2.3^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~421~^5.1^0^^~4~^~BFSN~^~09050~^^^^^^^^^~12/01/2006~ -~09054~^~430~^16.4^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09055~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09055~^~291~^2.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~317~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~09055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09055~^~401~^1.0^3^0.0^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~421~^5.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~430~^17.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09056~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09056~^~291~^2.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09056~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09056~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09056~^~401~^6.2^3^0.7^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09057~^~291~^5.3^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09057~^~317~^0.2^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09057~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09057~^~401~^3.1^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~421~^10.2^0^^~4~^~BFSN~^~09042~^^^^^^^^^~02/01/2007~ -~09057~^~430~^7.8^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09059~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09059~^~291~^4.9^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09059~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09059~^~401~^29.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~421~^9.8^0^^~4~^~BFZN~^~09040~^^^^^^^^^~01/01/2007~ -~09059~^~430~^0.5^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~ -~09060~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09060~^~291~^2.8^4^0.3^~1~^~A~^^^1^2.1^3.5^3^1.7^3.7^~4~^~09/01/2003~ -~09060~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~09060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09060~^~401~^34.4^4^6.1^~1~^~A~^^^1^24.3^52.0^3^14.9^53.8^~4~^~09/01/2003~ -~09060~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~09060~^~430~^0.0^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09061~^~401~^38.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09062~^~291~^3.0^5^0.6^~1~^~A~^^^2^2.3^3.9^1^-5.2^11.2^~2~^~06/01/2009~ -~09062~^~401~^12.6^5^1.1^~1~^~A~^^^2^9.8^16.2^1^-1.8^27.1^~2~^~06/01/2009~ -~09063~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09063~^~291~^1.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~317~^0.0^0^^~4~^~BFZN~^~09070~^^^^^^^^^~01/01/2003~ -~09063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09063~^~401~^10.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~421~^6.1^0^^~4~^~BFZN~^~09236~^^^^^^^^^~02/01/2007~ -~09063~^~430~^2.1^0^^~4~^~BFZN~^~09070~^^^^^^^^^~10/01/2002~ -~09064~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09064~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09064~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09064~^~401~^2.1^5^0.5^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~421~^4.1^0^^~4~^~BFYN~^~09063~^^^^^^^^^~02/01/2007~ -~09064~^~430~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09065~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09065~^~401~^2.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09066~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09066~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09066~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09066~^~401~^2.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~421~^4.1^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~09066~^~430~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09067~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09067~^~401~^1.9^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09068~^~291~^1.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09068~^~317~^0.0^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09068~^~401~^1.7^3^1.1^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~421~^5.6^0^^~4~^~BFSN~^~09063~^^^^^^^^^~02/01/2007~ -~09068~^~430~^1.5^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~ -~09070~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09070~^~291~^2.1^8^0.2^~1~^~A~^^^2^1.7^2.4^2^1.1^2.9^~4~^~10/01/2002~ -~09070~^~313~^2.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~09070~^~317~^0.0^4^1.8e-02^~1~^~A~^^^1^0.0^0.1^3^-1.8e-02^9.8e-02^~1, 2, 3~^~10/01/2002~ -~09070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09070~^~401~^7.0^8^1.5^~1~^~A~^^^2^4.9^10.1^2^0.1^13.8^~4~^~10/01/2002~ -~09070~^~421~^6.1^0^^~4~^~BFZN~^~09236~^^^^^^^^^~02/01/2007~ -~09070~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2002~ -~09070~^~430~^2.1^5^0.6^~1~^~A~^^^2^1.5^2.7^1^-5.5^9.7^~4~^~10/01/2002~ -~09071~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09071~^~291~^1.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09071~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09071~^~401~^2.2^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~421~^4.1^0^^~4~^~BFYN~^~09070~^^^^^^^^^~03/01/2007~ -~09071~^~430~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09072~^~291~^1.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09072~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09072~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09072~^~401~^2.5^6^0.3^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~421~^4.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~09072~^~430~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09073~^~291~^1.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09073~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09073~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09073~^~401~^3.7^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~421~^4.1^0^^~4~^~BFZN~^~09074~^^^^^^^^^~03/01/2007~ -~09073~^~430~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09074~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09074~^~291~^1.4^0^^~4~^~BFYN~^~09070~^^^^^^^^^~05/01/2008~ -~09074~^~317~^0.0^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~ -~09074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09074~^~401~^3.6^85^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~421~^4.1^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~09074~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09074~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09075~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09075~^~401~^3.6^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~401~^8.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09078~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09078~^~291~^3.6^5^1.0^~1~^~A~^^^2^2.6^4.8^1^-9.2^16.4^~2~^~05/01/2015~ -~09078~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~08/01/2002~ -~09078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09078~^~401~^14.0^5^0.6^~1~^~A~^^^2^11.8^17.0^1^5.6^22.2^~2~^~05/01/2015~ -~09078~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09078~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~430~^5.0^5^9.3e-02^~1~^~A~^^^2^4.3^6.4^1^3.8^6.2^~2~^~05/01/2015~ -~09078~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09079~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~09079~^~291~^5.3^7^0.4^~1~^~A~^^^2^4.1^5.7^1^0.1^10.3^~2~^~06/01/2015~ -~09079~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09079~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09079~^~401~^0.2^5^9.0e-03^~1~^~A~^^^2^0.2^0.3^1^9.3e-02^0.3^~1, 2~^~04/01/2003~ -~09079~^~421~^8.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09079~^~430~^7.6^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09081~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09081~^~291~^1.1^2^^~1~^~A~^^^1^1.0^1.2^1^^^^~06/01/2015~ -~09081~^~313~^1.9^2^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~09081~^~317~^0.4^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09081~^~401~^1.0^2^^~1~^~A~^^^1^1.0^1.0^1^^^~1~^~06/01/2015~ -~09081~^~421~^3.8^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~09081~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09082~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1994~ -~09082~^~401~^18.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~401~^181.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09084~^~291~^4.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09084~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09084~^~401~^41.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~09084~^~430~^11.0^3^0.0^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09085~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09085~^~291~^4.4^6^0.2^~1~^~A~^^^1^3.5^5.0^5^3.8^4.9^~2, 3~^~07/01/2017~ -~09085~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09085~^~326~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2017~ -~09085~^~401~^4.7^36^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~421~^10.6^0^^~4~^~BFSN~^~09298~^^^^^^^^^~01/01/2007~ -~09085~^~430~^3.3^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~ -~09086~^~291~^2.4^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~09086~^~401~^19.2^15^2.7^~1~^^^^^^^^^^^~08/01/1982~ -~09087~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2002~ -~09087~^~291~^8.0^13^0.2^~1~^~A~^^^3^7.0^8.8^2^6.8^9.1^~2~^~10/01/2002~ -~09087~^~317~^3.0^8^0.1^~1~^~A~^^^2^2.1^3.5^6^2.5^3.3^~2, 3~^~10/01/2002~ -~09087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09087~^~401~^0.4^8^0.1^~1~^~A~^^^2^0.0^1.4^3^-0.1^0.8^~1, 2, 3~^~10/01/2002~ -~09087~^~421~^6.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09087~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~430~^2.7^8^0.1^~1~^~A~^^^2^2.1^3.4^4^2.2^3.1^~2, 3~^~10/01/2002~ -~09087~^~454~^0.4^2^^~1~^~A~^^^2^0.3^0.5^^^^^~05/01/2006~ -~09088~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09088~^~291~^7.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09088~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09088~^~401~^36.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09089~^~291~^2.9^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~317~^0.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09089~^~401~^2.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~421~^4.7^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2006~ -~09089~^~430~^4.7^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09090~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09090~^~317~^0.1^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09090~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~421~^3.3^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2006~ -~09090~^~430~^3.3^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09091~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09091~^~317~^0.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09091~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~421~^4.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2006~ -~09091~^~430~^4.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09092~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09092~^~317~^0.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09092~^~401~^1.0^18^0.0^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~421~^5.3^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2006~ -~09092~^~430~^5.3^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09093~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09094~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09094~^~291~^9.8^8^0.2^~1~^~A~^^^2^7.8^10.8^3^8.9^10.5^~2, 3~^~12/01/2002~ -~09094~^~317~^0.6^4^0.1^~1~^~A~^^^1^0.4^0.9^3^0.2^0.9^~2, 3~^~12/01/2002~ -~09094~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09094~^~401~^1.2^8^0.4^~1~^~A~^^^2^0.2^3.0^3^-0.1^2.4^~1, 2, 3~^~12/01/2002~ -~09094~^~421~^15.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09094~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~430~^15.6^8^0.3^~1~^~A~^^^2^11.4^20.0^6^14.6^16.5^~2, 3~^~12/01/2002~ -~09094~^~454~^0.7^2^^~1~^~A~^^^2^0.7^0.8^^^^^~04/01/2006~ -~09095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09095~^~291~^4.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~317~^0.2^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09095~^~401~^4.4^3^0.8^~1~^^^^^^^^^^^~12/01/2002~ -~09095~^~421~^6.8^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2006~ -~09095~^~430~^6.7^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09096~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09096~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09096~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09096~^~401~^2.1^37^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~421~^3.7^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2007~ -~09096~^~430~^2.6^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09097~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09097~^~401~^2.7^7^9.6e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~421~^4.0^0^^~1~^~RKA~^^^^^^^^^^~01/01/2007~ -~09097~^~430~^2.6^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09098~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09098~^~401~^3.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09099~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09099~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09099~^~401~^1.9^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~421~^3.7^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2007~ -~09099~^~430~^2.6^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09100~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09100~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09100~^~313~^9.2^12^2.9^~1~^~A~^^^3^5.0^15.0^2^-3.6^22.0^~4~^~05/01/2006~ -~09100~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09100~^~401~^1.9^247^3.8e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~421~^3.7^0^^~6~^~RKI~^^^^^^^^^^~01/01/2007~ -~09100~^~430~^2.6^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09101~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09101~^~401~^1.9^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~291~^1.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09102~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09102~^~401~^1.9^17^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~291~^1.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09103~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09103~^~401~^3.3^7^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~291~^1.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09104~^~401~^2.5^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~291~^1.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09106~^~401~^2.1^10^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09107~^~291~^4.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09107~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09107~^~401~^27.7^11^1.3^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09109~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09109~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09109~^~401~^10.0^3^0.5^~1~^^^^^^^^^^^~08/01/1982~ -~09110~^~291~^13.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~401~^48.4^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09111~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09111~^~291~^1.1^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09111~^~317~^0.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09111~^~401~^34.4^49^0.7^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~421~^7.7^0^^~4~^~BFZN~^~09112~^^^^^^^^^~12/01/2006~ -~09111~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09112~^~291~^1.6^5^0.2^~1~^~A~^^^2^1.4^2.1^1^-1.4^4.7^~1, 2~^~01/01/2003~ -~09112~^~317~^0.1^4^1.5e-02^~1~^~A~^^^1^0.0^0.1^3^7.0e-03^0.1^~2, 3~^~01/01/2003~ -~09112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09112~^~401~^31.2^8^1.3^~1~^~A~^^^2^22.6^36.3^5^27.6^34.6^~2, 3~^~01/01/2003~ -~09112~^~421~^7.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09112~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~430~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09113~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09113~^~401~^38.1^22^1.0^~1~^^^^^^^^^^^~08/01/1982~ -~09114~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~09114~^~291~^1.1^0^^~4~^^^^^^^^^^^~01/01/2003~ -~09114~^~317~^1.4^5^0.3^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09114~^~401~^37.0^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09116~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09116~^~317~^1.4^5^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~09116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09116~^~401~^33.3^27^0.8^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~421~^7.7^0^^~4~^~BFZN~^~09112~^^^^^^^^^~12/01/2006~ -~09116~^~430~^0.0^0^^~4~^~BFZN~^~09112~^^^^^^^^^~01/01/2003~ -~09117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09117~^~401~^33.3^27^0.8^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09118~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09119~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09119~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~09119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09119~^~401~^21.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~421~^5.1^0^^~4~^~BFYN~^~09112~^^^^^^^^^~12/01/2006~ -~09119~^~430~^0.0^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09120~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09120~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~09120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09120~^~401~^33.9^5^1.7^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~421~^5.1^0^^~4~^~BFYN~^~09112~^^^^^^^^^~12/01/2006~ -~09120~^~430~^0.0^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09121~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09121~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09121~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~09121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09121~^~401~^21.3^14^0.5^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~421~^5.1^0^^~4~^~BFYN~^~09112~^^^^^^^^^~12/01/2006~ -~09121~^~430~^0.0^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09123~^~221~^0.0^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~291~^0.6^3^^~1~^~A~^^^2^0.3^0.8^^^^~1, 2, 3~^~10/01/2016~ -~09123~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09123~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09123~^~401~^33.7^7^1.7^~1~^~A~^^^2^28.3^62.1^4^28.6^38.7^~2, 3~^~10/01/2016~ -~09123~^~421~^7.7^0^^~4~^~BFZN~^~09116~^^^^^^^^^~12/01/2006~ -~09123~^~430~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09124~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09124~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09124~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09124~^~401~^26.9^16^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~430~^0.0^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09125~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09125~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09125~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09125~^~401~^119.8^3^0.7^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~421~^24.5^0^^~4~^~BFSN~^~09112~^^^^^^^^^~01/01/2007~ -~09125~^~430~^0.1^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~ -~09126~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09126~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09126~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09126~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09126~^~401~^33.7^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~421~^7.7^0^^~4~^~BFZN~^~09116~^^^^^^^^^~12/01/2006~ -~09126~^~430~^0.0^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09127~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~291~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~317~^0.0^0^^~4~^~BFSN~^~09112~^^^^^^^^^~03/01/2015~ -~09127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~401~^22.2^3^1.9^~1~^~A~^^^1^18.3^24.5^2^13.7^30.6^~2, 3~^~10/01/2016~ -~09127~^~421~^6.4^0^^~4~^~BFSN~^~09112~^^^^^^^^^~03/01/2015~ -~09127~^~430~^0.0^0^^~4~^~BFSN~^~09112~^^^^^^^^^~03/01/2015~ -~09128~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09128~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09128~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09128~^~401~^38.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~421~^7.7^0^^~4~^~BFZN~^~09112~^^^^^^^^^~01/01/2007~ -~09128~^~430~^0.0^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09129~^~291~^3.9^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~401~^6.5^2^^~13~^~AI~^^^1^6.0^7.0^1^^^^~06/01/2013~ -~09130~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~313~^138.0^32^65.9^~1~^~A~^^^1^72.0^204.0^^^^~2~^~06/01/2008~ -~09130~^~317~^0.0^4^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~06/01/2008~ -~09130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09130~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~ -~09130~^~421~^3.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09130~^~430~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2008~ -~09130~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09131~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09131~^~291~^0.9^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~317~^0.1^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09131~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~421~^5.6^0^^~4~^~BFZN~^~09132~^^^^^^^^^~12/01/2006~ -~09131~^~430~^14.6^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09132~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~09132~^~291~^0.9^8^0.1^~1~^~A~^^^1^0.6^1.7^7^0.6^1.1^~2, 3~^~01/01/2003~ -~09132~^~313~^7.8^13^4.8^~1~^~A~^^^2^1.3^27.0^4^-5.6^21.2^~4~^~03/01/2006~ -~09132~^~317~^0.1^4^1.0e-02^~1~^~A~^^^1^0.1^0.1^3^6.2e-02^0.1^~2, 3~^~01/01/2003~ -~09132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09132~^~401~^3.2^12^0.4^~1~^~A~^^^^^^^^^^~05/01/2011~ -~09132~^~421~^5.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09132~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~430~^14.6^5^0.7^~1~^~A~^^^2^8.3^18.1^3^12.1^17.0^~2, 3~^~01/01/2003~ -~09132~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~05/01/2006~ -~09133~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09133~^~291~^0.6^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~317~^0.1^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09133~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~421~^3.8^0^^~4~^~BFYN~^~09132~^^^^^^^^^~12/01/2006~ -~09133~^~430~^9.8^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09134~^~291~^0.6^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~317~^0.1^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09134~^~401~^1.0^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~421~^3.8^0^^~4~^~BFYN~^~09132~^^^^^^^^^~12/01/2006~ -~09134~^~430~^9.8^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09135~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09135~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09135~^~313~^138.0^32^65.9^~1~^~A~^^^1^72.0^204.0^^^^~2~^~06/01/2008~ -~09135~^~317~^0.0^4^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~06/01/2008~ -~09135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09135~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~421~^3.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09135~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09135~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09138~^~401~^11.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09139~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09139~^~291~^5.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09139~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09139~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09139~^~401~^228.3^2^^~1~^~A~^^^1^173.3^283.2^1^^^^~09/01/2003~ -~09139~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~09139~^~430~^2.6^0^^~4~^~BFZN~^~09236~^^^^^^^^^~04/01/2003~ -~09140~^~291~^5.4^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~09140~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09143~^~291~^3.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09143~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09143~^~401~^146.4^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~421~^4.1^0^^~4~^~BFSN~^~09139~^^^^^^^^^~03/01/2007~ -~09143~^~430~^1.9^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09144~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1988~ -~09144~^~291~^1.5^2^^~1~^~A~^^^1^0.9^2.0^1^^^^~01/01/2010~ -~09144~^~401~^13.7^2^^~1~^~A~^^^1^13.4^14.0^1^^^^~08/01/2010~ -~09145~^~401~^14.3^3^6.4^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~401~^69.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09147~^~291~^6.0^5^0.4^~1~^~A~^^^1^4.7^7.2^4^4.6^7.2^~2, 3~^~07/01/2015~ -~09147~^~317~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~09147~^~401~^217.6^5^25.6^~1~^~A~^^^1^151.7^290.8^4^146.3^288.7^~2, 3~^~07/01/2015~ -~09148~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09148~^~291~^3.0^8^0.2^~1~^~A~^^^2^2.3^3.8^6^2.5^3.5^~2, 3~^~01/01/2003~ -~09148~^~317~^0.2^5^4.0e-02^~1~^~A~^^^2^0.1^0.3^3^0.1^0.3^~2, 3~^~01/01/2003~ -~09148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09148~^~401~^92.7^16^3.3^~1~^~A~^^^2^77.4^118.0^1^49.9^135.4^~2~^~01/01/2003~ -~09148~^~421~^7.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09148~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~430~^40.3^8^1.7^~1~^~A~^^^2^33.9^50.3^4^35.0^45.4^~2, 3~^~01/01/2003~ -~09148~^~454~^0.5^2^^~1~^~A~^^^2^0.5^0.5^^^^^~04/01/2006~ -~09149~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09149~^~291~^6.5^2^^~1~^~A~^^^1^6.2^6.9^^^^^~02/01/2003~ -~09149~^~317~^0.0^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09149~^~401~^43.9^2^^~1~^~A~^^^1^43.8^44.0^^^^^~02/01/2003~ -~09149~^~421~^8.4^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2007~ -~09149~^~430~^0.0^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09150~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09150~^~291~^2.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09150~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09150~^~401~^53.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~421~^5.1^0^^~4~^~BFZN~^~09159~^^^^^^^^^~02/01/2007~ -~09150~^~430~^0.0^0^^~4~^~BFZN~^~09153~^^^^^^^^^~02/01/2003~ -~09152~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09152~^~291~^0.3^6^9.2e-02^~1~^~A~^^^2^0.1^0.5^1^-0.8^1.4^~1, 2~^~11/01/2009~ -~09152~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09152~^~401~^38.7^8^2.4^~1~^~A~^^^2^32.1^43.3^1^7.2^70.1^~2~^~11/01/2009~ -~09152~^~421~^5.1^0^^~4~^~BFZN~^~09160~^^^^^^^^^~02/01/2007~ -~09152~^~430~^0.0^0^^~4~^~BFZN~^~09153~^^^^^^^^^~02/01/2003~ -~09153~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09153~^~291~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09153~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09153~^~401~^14.3^9^0.8^~1~^~A~^^^1^0.0^19.5^3^11.5^17.0^~1, 2, 3~^~03/01/2015~ -~09153~^~421~^5.1^0^^~4~^~BFZN~^~09160~^^^^^^^^^~02/01/2007~ -~09153~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~430~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09156~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09156~^~291~^10.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09156~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09156~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09156~^~401~^129.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~421~^8.5^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2007~ -~09156~^~430~^0.0^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~ -~09159~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09159~^~291~^2.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2004~ -~09159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09159~^~401~^29.1^1^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~421~^5.1^0^^~4~^~BFZN~^~09160~^^^^^^^^^~12/01/2006~ -~09159~^~430~^0.6^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09160~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~09160~^~291~^0.4^0^^~4~^^^^^^^^^^^~04/01/2004~ -~09160~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~04/01/2004~ -~09160~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09160~^~401~^30.0^4^1.3^~1~^~A~^^^1^27.3^33.8^3^25.5^34.4^~2, 3~^~04/01/2004~ -~09160~^~421~^5.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09160~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2004~ -~09160~^~430~^0.6^2^^~1~^~A~^^^1^0.6^0.7^1^^^^~04/01/2004~ -~09160~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09161~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09161~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09161~^~317~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09161~^~401~^6.4^3^2.1^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~421~^5.1^0^^~4~^~BFZN~^~09160~^^^^^^^^^~12/01/2006~ -~09161~^~430~^0.5^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~ -~09163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~291~^7.5^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~317~^0.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~401~^23.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~421~^18.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~430~^59.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09164~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09164~^~291~^1.3^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09164~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09164~^~401~^71.5^14^10.2^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~421~^7.1^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2007~ -~09164~^~430~^0.4^0^^~4~^~BFSN~^~09040~^^^^^^^^^~02/01/2003~ -~09165~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09165~^~291~^4.6^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~317~^1.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09165~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09165~^~401~^183.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~421~^12.7^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~09165~^~430~^1.6^0^^~4~^~BFSN~^~09164~^^^^^^^^^~02/01/2003~ -~09167~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09167~^~291~^5.3^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09167~^~317~^0.2^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09167~^~401~^15.3^3^0.3^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~421~^8.5^0^^~4~^~BFZN~^~09042~^^^^^^^^^~01/01/2007~ -~09167~^~430~^7.8^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09172~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09172~^~401~^84.0^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~401~^28.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09174~^~291~^1.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09174~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09174~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09175~^~291~^3.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09175~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09175~^~401~^14.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09176~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09176~^~291~^1.6^9^0.1^~1~^~A~^^^4^1.2^2.3^3^1.1^2.0^~2~^~06/01/2010~ -~09176~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09176~^~401~^36.4^302^14.2^~1~^~A~^^^5^13.2^92.8^4^-3.1^75.9^~2~^~06/01/2010~ -~09176~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~09176~^~430~^4.2^0^^~4~^~BFSN~^~09236~^^^^^^^^^~02/01/2003~ -~09177~^~291~^1.8^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09177~^~401~^2.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09178~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~291~^2.4^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~317~^2.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~401~^42.3^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~421~^23.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~430~^13.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09181~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09181~^~291~^0.9^18^0.1^~1~^~A~^^^3^0.6^1.6^2^0.4^1.3^~2~^~12/01/2002~ -~09181~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09181~^~317~^0.4^4^5.5e-02^~1~^~A~^^^1^0.2^0.5^3^0.1^0.5^~2, 3~^~12/01/2002~ -~09181~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09181~^~401~^36.7^10^1.3^~1~^~A~^^^1^30.8^40.7^5^33.1^40.2^~4~^~12/01/2002~ -~09181~^~421~^7.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09181~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09181~^~430~^2.5^8^0.3^~1~^~A~^^^2^1.6^4.0^5^1.7^3.3^~2, 3~^~12/01/2002~ -~09181~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09183~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09183~^~291~^0.9^2^^~1~^~A~^^^1^0.9^0.9^^^^^~01/01/2003~ -~09183~^~317~^0.4^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~ -~09183~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09183~^~401~^21.8^2^^~1~^~A~^^^1^13.2^30.4^^^^^~01/01/2003~ -~09183~^~421~^7.6^0^^~4~^~BFZN~^~09181~^^^^^^^^^~12/01/2006~ -~09183~^~430~^2.5^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~ -~09184~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09184~^~291~^0.8^20^0.1^~1~^~A~^^^4^0.5^1.7^3^0.3^1.2^~1, 2~^~01/01/2003~ -~09184~^~317~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09184~^~401~^18.0^14^1.6^~1~^~A~^^^2^14.6^22.3^1^-2.7^38.8^~2~^~01/01/2003~ -~09184~^~421~^7.6^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2007~ -~09184~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~430~^2.9^8^0.1^~1~^~A~^^^2^2.1^3.3^5^2.5^3.2^~2, 3~^~01/01/2003~ -~09185~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09185~^~291~^0.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09185~^~401~^6.2^3^3.3^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09190~^~291~^1.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09190~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09190~^~401~^36.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~421~^12.3^0^^~4~^~BFZN~^~09302~^^^^^^^^^~03/01/2007~ -~09190~^~430~^7.8^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09191~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09191~^~291~^1.7^12^0.1^~1~^~A~^^^5^1.1^2.2^4^1.1^2.1^~2~^~12/01/2002~ -~09191~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.1^1^^^^~12/01/2002~ -~09191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09191~^~401~^5.4^6^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09191~^~421~^6.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09191~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09191~^~430~^2.2^8^0.1^~1~^~A~^^^2^1.3^2.8^5^1.8^2.6^~2, 3~^~12/01/2002~ -~09191~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09192~^~401~^6.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09193~^~291~^1.6^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~317~^0.9^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~09193~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09193~^~401~^0.9^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~421~^10.3^0^^~4~^~BFFN~^~09037~^^^^^^^^^~03/01/2007~ -~09193~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09194~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~09194~^~291~^2.5^0^^~1~^^^^^^^^^^^~11/01/1993~ -~09194~^~317~^0.9^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~09194~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09194~^~401~^1.5^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~421~^6.6^0^^~4~^~BFFN~^~09037~^^^^^^^^^~03/01/2007~ -~09194~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09195~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09195~^~291~^3.3^6^0.3^~6~^~JA~^^^2^2.5^4.4^5^2.4^4.1^~4~^~02/01/2003~ -~09195~^~317~^0.9^0^^~4~^~BFZN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09195~^~401~^0.0^6^0.0^~6~^~JA~^^^2^0.0^0.0^5^0.0^0.0^~1, 4~^~02/01/2003~ -~09195~^~421~^14.2^0^^~4~^~BFZN~^~09037~^^^^^^^^^~03/01/2007~ -~09195~^~430~^1.4^0^^~4~^~BFZN~^~09193~^^^^^^^^^~02/01/2003~ -~09200~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09200~^~291~^2.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~317~^0.5^5^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~09200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09200~^~401~^53.2^145^0.7^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~421~^8.4^0^^~4~^~BFZN~^~09202~^^^^^^^^^~12/01/2006~ -~09200~^~430~^0.0^10^2.9e-02^~1~^~A~^^^4^0.0^0.1^3^-4.2e-02^0.1^~1, 2~^~01/01/2003~ -~09201~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09201~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09201~^~401~^48.5^75^1.0^~1~^^^^^^^^^^^~08/01/1982~ -~09202~^~291~^2.2^5^0.1^~1~^~A~^^^2^1.9^2.4^1^-0.1^4.4^~2~^~01/01/2003~ -~09202~^~317~^0.0^4^8.0e-03^~1~^~A~^^^1^0.0^0.1^3^1.7e-02^6.7e-02^~1, 2, 3~^~01/01/2003~ -~09202~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09202~^~401~^59.1^8^2.0^~1~^~A~^^^2^51.8^65.6^5^53.8^64.4^~2, 3~^~01/01/2003~ -~09202~^~421~^8.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09202~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~01/01/2003~ -~09202~^~430~^0.0^8^7.0e-03^~1~^~A~^^^2^0.0^0.1^3^1.3e-02^6.1e-02^~1, 2, 3~^~01/01/2003~ -~09202~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^^^^^~05/01/2006~ -~09203~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09203~^~291~^2.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~317~^0.5^5^0.2^~1~^~A~^^^^^^^^^^~12/01/1997~ -~09203~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09203~^~401~^45.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~421~^8.4^0^^~4~^~BFZN~^~09202~^^^^^^^^^~12/01/2006~ -~09203~^~430~^0.0^0^^~4~^~BFZN~^~09200~^^^^^^^^^~01/01/2003~ -~09205~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09205~^~291~^4.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09205~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09205~^~401~^71.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09206~^~291~^0.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09206~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09206~^~401~^50.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~421~^6.2^0^^~4~^~BFZN~^~09209~^^^^^^^^^~12/01/2006~ -~09206~^~430~^0.1^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09207~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09207~^~313~^31.3^51^2.8^~1~^~A~^^^1^2.9^72.4^50^25.6^37.0^~1, 2, 3~^~03/01/2006~ -~09207~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2008~ -~09207~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09207~^~401~^30.1^3^4.3^~1~^~A~^^^1^25.3^38.9^2^11.2^49.0^~2, 3~^~05/01/2008~ -~09207~^~421~^6.2^0^^~4~^~BFZN~^~09209~^^^^^^^^^~12/01/2006~ -~09207~^~430~^0.1^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09209~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~09209~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~317~^0.1^12^9.0e-02^~1~^~A~^^^3^0.0^0.8^11^-6.5e-02^0.3^~1, 4~^~04/01/2009~ -~09209~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09209~^~401~^33.6^40^0.7^~1~^~A~^^^3^21.1^42.1^13^32.0^35.1^~2, 3~^~03/01/2009~ -~09209~^~421~^6.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09209~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2009~ -~09209~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~03/01/2009~ -~09209~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09210~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~09210~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~317~^0.1^12^9.0e-02^~1~^~A~^^^3^0.0^0.8^11^-6.5e-02^0.3^~1, 4~^~04/01/2009~ -~09210~^~326~^1.0^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~09210~^~328~^1.0^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~09210~^~401~^33.6^40^0.7^~1~^~A~^^^3^21.1^42.1^13^32.0^35.1^~2, 3~^~03/01/2009~ -~09210~^~421~^6.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~09210~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2009~ -~09210~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~03/01/2009~ -~09210~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~317~^0.1^12^9.0e-02^~1~^~A~^^^3^0.0^0.8^11^-6.5e-02^0.3^~1, 4~^~04/01/2009~ -~09211~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09211~^~401~^33.6^40^0.7^~1~^~A~^^^3^21.1^42.1^13^32.0^35.1^~2, 3~^~03/01/2009~ -~09211~^~421~^6.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~09211~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2009~ -~09211~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~03/01/2009~ -~09211~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09212~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~291~^0.2^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~313~^65.7^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~401~^36.2^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~421~^5.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09213~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~291~^1.0^4^4.9e-02^~1~^~A~^^^1^0.7^1.1^2^0.7^1.2^~2, 3~^~06/01/2014~ -~09213~^~313~^19.8^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~401~^144.8^8^3.9^~1~^~A~^^^1^126.5^155.6^3^132.9^156.7^~2, 3~^~06/01/2014~ -~09213~^~421~^20.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2014~ -~09213~^~430~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~06/01/2014~ -~09213~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09214~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1985~ -~09214~^~291~^1.0^4^4.9e-02^~1~^~A~^^^1^0.7^1.1^2^0.7^1.2^~2, 3~^~05/01/2014~ -~09214~^~313~^19.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09214~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09214~^~401~^144.8^8^3.9^~1~^~A~^^^1^126.5^155.6^3^132.9^156.7^~2, 3~^~05/01/2014~ -~09214~^~421~^20.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09214~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2003~ -~09214~^~430~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~01/01/2003~ -~09214~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09215~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09215~^~291~^0.2^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09215~^~401~^36.2^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~421~^5.0^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09216~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09216~^~291~^10.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09216~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09216~^~401~^136.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09217~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09217~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09217~^~401~^29.1^18^1.3^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~421~^6.2^0^^~4~^~BFZN~^~09209~^^^^^^^^^~02/01/2007~ -~09217~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09218~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~09218~^~291~^1.8^9^0.2^~1~^~A~^^^4^1.3^2.3^3^1.1^2.4^~2~^~12/01/2003~ -~09218~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~12/01/2003~ -~09218~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09218~^~401~^26.7^9^1.8^~1~^~A~^^^2^22.1^34.0^1^2.9^50.4^~2~^~12/01/2003~ -~09218~^~421~^10.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09218~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2003~ -~09218~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2003~ -~09218~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09219~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09219~^~291~^0.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09219~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09219~^~401~^34.2^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~421~^8.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09219~^~430~^0.0^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09220~^~291~^0.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09220~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09220~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09220~^~401~^19.8^33^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~421~^6.9^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2007~ -~09220~^~430~^0.0^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09221~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09221~^~291~^0.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09221~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09221~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09221~^~401~^31.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~421~^6.2^0^^~4~^~BFZN~^~09209~^^^^^^^^^~02/01/2007~ -~09221~^~430~^0.0^0^^~4~^~BFSN~^~09218~^^^^^^^^^~02/01/2003~ -~09226~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/2002~ -~09226~^~291~^1.7^9^0.1^~1~^~A~^^^4^1.2^2.3^3^1.1^2.2^~2~^~07/01/2010~ -~09226~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~09226~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09226~^~401~^60.9^73^3.8^~1~^~A~^^^4^24.6^93.1^3^48.6^73.0^~2~^~07/01/2010~ -~09226~^~421~^6.1^0^^~4~^~BFZN~^~09236~^^^^^^^^^~01/01/2007~ -~09226~^~430~^2.6^0^^~4~^~BFZN~^~09236~^^^^^^^^^~02/01/2003~ -~09228~^~291~^1.5^2^^~1~^~A~^^^1^1.3^1.7^1^^^^~04/01/2010~ -~09228~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~401~^3.5^2^^~1~^~A~^^^1^0.7^6.3^1^^^~1~^~04/01/2010~ -~09228~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09229~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09229~^~291~^0.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09229~^~317~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~09229~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09229~^~401~^3.0^3^1.3^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~421~^2.0^0^^~4~^~BFYN~^~09226~^^^^^^^^^~01/01/2007~ -~09229~^~430~^0.8^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09231~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09231~^~291~^10.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09231~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09231~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09231~^~401~^30.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~09231~^~430~^0.7^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~ -~09232~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09232~^~291~^0.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09232~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09232~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09232~^~401~^29.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~421~^4.0^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2007~ -~09232~^~430~^0.4^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~ -~09233~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09233~^~291~^0.2^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09233~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09233~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09233~^~401~^18.2^51^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~421~^4.0^0^^~4~^~BFZN~^~09232~^^^^^^^^^~05/01/2007~ -~09233~^~430~^0.4^0^^~4~^~BFZN~^~09232~^^^^^^^^^~05/01/2007~ -~09236~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~09236~^~291~^1.5^8^5.1e-02^~1~^~A~^^^2^1.1^1.8^1^0.8^2.1^~2~^~12/01/2002~ -~09236~^~313~^4.0^9^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09236~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^^^^^~12/01/2002~ -~09236~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09236~^~401~^6.6^5^1.1^~1~^^^^^^^^^^^~12/01/2002~ -~09236~^~421~^6.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09236~^~429~^0.0^4^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~12/01/2002~ -~09236~^~430~^2.6^5^0.4^~1~^~A~^^^2^2.1^3.6^1^-3.3^8.4^~2~^~12/01/2002~ -~09236~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09237~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09237~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09237~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09237~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09237~^~401~^2.9^59^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~421~^4.1^0^^~1~^~DA~^~09236~^^^^^^^^^~01/01/2007~ -~09237~^~430~^1.7^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09238~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09238~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09238~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09238~^~401~^3.6^17^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~421~^4.1^0^^~1~^~DA~^~09236~^^^^^^^^^~01/01/2007~ -~09238~^~430~^1.7^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09239~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09239~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09239~^~401~^3.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09240~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09240~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09240~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09240~^~401~^2.4^117^8.7e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~421~^4.1^0^^~1~^~DA~^~09236~^^^^^^^^^~01/01/2007~ -~09240~^~430~^1.7^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09241~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09241~^~313~^6.8^30^0.3^~1~^~A~^^^6^3.9^8.0^12^5.9^7.6^~4~^~05/01/2006~ -~09241~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09241~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09241~^~401~^2.8^609^5.0e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~421~^4.1^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~09241~^~430~^1.7^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09242~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09242~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09242~^~401~^1.2^134^6.3e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~09243~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09243~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09243~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09243~^~401~^5.3^19^2.2^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~421~^4.1^0^^~4~^~BFZN~^~09241~^^^^^^^^^~03/01/2007~ -~09243~^~430~^1.7^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~ -~09244~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09244~^~401~^10.6^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09245~^~401~^6.8^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09246~^~291~^8.2^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~317~^0.5^0^^~4~^~BFSN~^~09236~^^^^^^^^^~02/01/2003~ -~09246~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09246~^~401~^4.8^6^0.6^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~421~^12.7^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~09246~^~430~^15.7^0^^~4~^~BFSN~^~09236~^^^^^^^^^~12/01/2002~ -~09247~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09247~^~291~^2.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09247~^~317~^0.2^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~ -~09247~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09247~^~401~^3.7^3^1.2^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~421~^4.1^0^^~4~^~BFSN~^~09246~^^^^^^^^^~03/01/2007~ -~09247~^~430~^5.0^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~ -~09248~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09248~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09248~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09248~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09248~^~401~^3.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09250~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09250~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09250~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09250~^~401~^94.2^3^2.3^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~421~^5.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~09250~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~09251~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09251~^~291~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~317~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~09251~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09251~^~401~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2016~ -~09251~^~421~^2.4^0^^~1~^~DA~^~09236~^^^^^^^^^~03/01/2007~ -~09251~^~430~^1.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09252~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~09252~^~291~^3.1^24^7.4e-02^~1~^~A~^^^2^2.5^3.7^8^2.9^3.2^~2, 3~^~12/01/2002~ -~09252~^~313~^2.2^20^0.1^~1~^~A~^^^3^1.3^3.0^6^1.6^2.6^~4~^~05/01/2006~ -~09252~^~317~^0.1^8^7.0e-03^~1~^~A~^^^1^0.0^0.1^3^3.6e-02^8.4e-02^~4~^~12/01/2002~ -~09252~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09252~^~401~^4.3^16^0.2^~1~^~A~^^^2^1.5^5.7^2^3.3^5.2^~2, 3~^~08/01/2012~ -~09252~^~421~^5.1^3^0.1^~1~^~AS~^^^1^4.9^5.3^2^4.5^5.6^~2, 3~^~11/01/2006~ -~09252~^~429~^0.0^16^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~430~^4.4^16^0.1^~1~^~A~^^^2^2.2^7.8^2^3.7^5.1^~2, 3~^~08/01/2012~ -~09252~^~454~^0.2^3^1.5e-02^~1~^~A~^^^1^0.1^0.2^2^8.9e-02^0.2^~2, 3~^~11/01/2006~ -~09253~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09253~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09253~^~317~^0.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09253~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09253~^~401~^1.0^65^3.7e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~421~^3.4^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2007~ -~09253~^~430~^0.3^2^^~1~^~A~^^^2^0.2^0.5^1^^^^~01/01/2003~ -~09254~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1985~ -~09254~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09254~^~317~^0.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09254~^~401~^1.6^7^6.8e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~421~^3.4^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2007~ -~09254~^~430~^0.3^2^^~1~^~A~^^^2^0.2^0.5^1^^^^~01/01/2003~ -~09255~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09255~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09255~^~401~^2.0^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09256~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09256~^~317~^0.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09256~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09256~^~401~^0.7^47^3.2e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~421~^3.4^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2007~ -~09256~^~430~^0.3^2^^~1~^~A~^^^2^0.2^0.5^1^^^^~01/01/2003~ -~09257~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09257~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09257~^~313~^7.5^20^1.2^~1~^~A~^^^3^1.5^11.0^6^4.3^10.6^~4~^~05/01/2006~ -~09257~^~317~^0.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09257~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09257~^~401~^1.1^181^4.9e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~421~^1.9^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09257~^~430~^0.3^2^^~1~^~A~^^^2^0.2^0.5^1^^^^~01/01/2003~ -~09257~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09258~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09258~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09258~^~401~^1.1^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09259~^~291~^7.5^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09259~^~317~^0.2^0^^~4~^~BFSN~^~09252~^^^^^^^^^~01/01/2003~ -~09259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09259~^~401~^7.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~421~^23.0^0^^~4~^~BFSN~^~09252~^^^^^^^^^~01/01/2007~ -~09259~^~430~^20.4^0^^~4~^~BFSN~^~09252~^^^^^^^^^~01/01/2003~ -~09260~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09260~^~291~^6.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09260~^~317~^0.1^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~ -~09260~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09260~^~401~^4.0^3^0.6^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~421~^11.2^0^^~4~^~BFSN~^~09259~^^^^^^^^^~01/01/2007~ -~09260~^~430~^9.9^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~ -~09261~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09261~^~291~^5.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09261~^~317~^2.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09261~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09261~^~401~^3.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09262~^~291~^0.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09262~^~313~^11.9^11^2.2^~1~^~A~^^^1^4.8^25.7^10^6.8^16.8^~4~^~02/01/2006~ -~09262~^~317~^0.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09262~^~401~^1.1^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~421~^2.0^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2007~ -~09262~^~430~^1.8^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09263~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09263~^~291~^3.6^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09263~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09263~^~401~^7.5^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~09263~^~430~^2.6^0^^~4~^~BFZN~^~09236~^^^^^^^^^~02/01/2003~ -~09264~^~291~^14.5^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09264~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~401~^66.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09266~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09266~^~291~^1.4^6^5.7e-02^~1~^~A~^^^1^1.2^1.5^5^1.2^1.5^~2, 3~^~02/01/2007~ -~09266~^~317~^0.1^5^3.8e-02^~1~^~A~^^^2^0.0^0.1^1^-0.4^0.5^~1, 4~^~02/01/2007~ -~09266~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09266~^~401~^47.8^21^3.2^~1~^~A~^^^3^7.9^70.7^1^11.2^84.4^~2~^~01/01/2007~ -~09266~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~09266~^~429~^0.0^10^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~01/01/2003~ -~09266~^~430~^0.7^10^2.0e-02^~1~^~A~^^^2^0.2^1.2^1^0.4^0.9^~2~^~01/01/2007~ -~09266~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^^^^^~01/01/2007~ -~09267~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09267~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09267~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09267~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09267~^~401~^7.7^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~421~^3.8^0^^~4~^~BFYN~^~09429~^^^^^^^^^~03/01/2007~ -~09267~^~430~^0.3^0^^~4~^~BFZN~^~09268~^^^^^^^^^~01/01/2003~ -~09268~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09268~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09268~^~313~^4.2^11^1.1^~1~^~A~^^^2^2.0^5.4^2^-0.5^8.9^~4~^~02/01/2006~ -~09268~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2003~ -~09268~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09268~^~401~^9.5^659^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~421~^4.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09268~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09269~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09269~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09269~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09269~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09269~^~401~^7.5^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~421~^3.8^0^^~4~^~BFZN~^~09270~^^^^^^^^^~03/01/2007~ -~09269~^~430~^0.3^0^^~4~^~BFZN~^~09268~^^^^^^^^^~01/01/2003~ -~09270~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09270~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09270~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09270~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09270~^~401~^7.4^185^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~421~^3.8^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~09270~^~430~^0.3^0^^~4~^~BFZN~^~09268~^^^^^^^^^~01/01/2003~ -~09271~^~291~^0.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09271~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09271~^~401~^7.3^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09272~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09272~^~317~^0.1^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09272~^~401~^8.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~421~^4.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09272~^~430~^0.7^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09273~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09273~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09273~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09273~^~401~^10.0^2^^~1~^~A~^^^^9.0^11.0^^^^^~04/01/2005~ -~09273~^~421~^3.3^0^^~4~^~BFYN~^~09266~^^^^^^^^^~02/01/2007~ -~09273~^~430~^0.3^0^^~4~^~BFZN~^~09275~^^^^^^^^^~01/01/2003~ -~09274~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~09274~^~291~^0.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09274~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09274~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09274~^~401~^42.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~421~^11.6^0^^~4~^~BFSN~^~09275~^^^^^^^^^~02/01/2007~ -~09274~^~430~^1.0^0^^~4~^~BFSN~^~09275~^^^^^^^^^~01/01/2003~ -~09275~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09275~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09275~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09275~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09275~^~401~^12.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~421~^3.3^0^^~4~^~BFYN~^~09266~^^^^^^^^^~02/01/2007~ -~09275~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09276~^~401~^26.3^6^2.9^~1~^^^^^^^^^^^~08/01/1982~ -~09277~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09277~^~291~^1.7^0^^~4~^~BFNN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09277~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09277~^~401~^18.4^15^2.2^~1~^^^^^^^^^^^~08/01/1982~ -~09277~^~421~^13.5^0^^~4~^~BFSN~^~09040~^^^^^^^^^~01/01/2007~ -~09277~^~428~^0.0^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~429~^0.0^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~430~^28.8^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09278~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09278~^~291~^2.2^2^^~1~^~A~^^^1^2.1^2.3^1^^^^~11/01/2016~ -~09278~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09278~^~401~^16.4^2^^~1~^~A~^^^1^15.5^17.3^1^^^^~11/01/2016~ -~09278~^~421~^12.7^0^^~4~^~BFSN~^~09040~^^^^^^^^^~01/01/2007~ -~09278~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~430~^12.9^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09279~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2003~ -~09279~^~291~^1.4^7^7.5e-02^~1~^~A~^^^2^1.2^1.7^3^1.1^1.6^~2, 3~^~12/01/2002~ -~09279~^~313~^2.0^9^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09279~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^^~12/01/2002~ -~09279~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09279~^~401~^9.5^5^0.8^~1~^^^^^^^^^^^~08/01/1982~ -~09279~^~421~^1.9^0^^~4~^~BFSN~^~09291~^^^^^^^^^~01/01/2007~ -~09279~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09279~^~430~^6.4^8^0.9^~1~^~A~^^^3^4.4^8.2^2^2.3^10.3^~2~^~12/01/2002~ -~09281~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~09281~^~291~^0.9^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~317~^0.0^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09281~^~401~^2.7^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~421~^1.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~01/01/2007~ -~09281~^~430~^4.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09282~^~291~^0.9^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~317~^0.0^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09282~^~401~^2.8^6^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~421~^1.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~01/01/2007~ -~09282~^~430~^4.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09283~^~291~^0.9^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~317~^0.0^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09283~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~421~^1.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~01/01/2007~ -~09283~^~430~^4.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09284~^~291~^0.9^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~317~^0.0^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09284~^~401~^0.4^7^6.0e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~421~^1.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~01/01/2007~ -~09284~^~430~^4.3^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09285~^~291~^1.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09285~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09285~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09286~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09286~^~291~^4.0^3^0.9^~1~^~A~^^^1^2.7^5.8^2^-1.9e-02^7.9^~4~^~03/01/2008~ -~09286~^~317~^0.5^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~09286~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09286~^~401~^10.2^3^1.0^~1~^~A~^^^1^8.6^12.1^2^5.8^14.5^~4~^~03/01/2008~ -~09286~^~421~^7.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~09286~^~430~^16.4^3^6.0^~1~^~A~^^^1^5.0^25.7^2^-9.7^42.4^~4~^~03/01/2008~ -~09287~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09287~^~291~^3.6^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09287~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09287~^~401~^14.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~291~^3.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09288~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09288~^~401~^2.8^21^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09289~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09290~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09291~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09291~^~291~^7.1^10^0.3^~1~^~A~^^^3^6.2^8.0^2^5.7^8.3^~2~^~10/01/2002~ -~09291~^~313~^4.0^9^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09291~^~317~^0.3^8^6.2e-02^~1~^~A~^^^2^0.1^0.7^3^9.9e-02^0.4^~1, 2, 3~^~10/01/2002~ -~09291~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09291~^~401~^0.6^8^4.8e-02^~1~^~A~^^^2^0.3^0.7^3^0.4^0.7^~1, 2, 3~^~10/01/2002~ -~09291~^~421~^10.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09291~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~430~^59.5^8^1.7^~1~^~A~^^^2^51.1^68.1^6^55.2^63.7^~2, 3~^~10/01/2002~ -~09291~^~454~^0.4^2^^~1~^~A~^^^2^0.4^0.5^^^^^~05/01/2006~ -~09292~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09292~^~291~^3.1^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~317~^0.1^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09292~^~401~^2.9^3^4.3e-02^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~421~^4.4^0^^~4~^~BFSN~^~09291~^^^^^^^^^~01/01/2007~ -~09292~^~430~^26.1^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09293~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09293~^~291~^3.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09293~^~317~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09293~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09293~^~401~^2.7^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09294~^~291~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~313~^60.2^21^23.4^~1~^~A~^^^3^17.0^114.6^3^-14.4^134.8^~4~^~01/01/2006~ -~09294~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09294~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09294~^~401~^4.1^47^0.7^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~421~^2.7^0^^~4~^~BFSN~^~09291~^^^^^^^^^~01/01/2007~ -~09294~^~430~^3.4^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09295~^~291~^1.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~401~^61.0^13^3.3^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1988~ -~09296~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09296~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09296~^~401~^15.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~09297~^~291~^3.3^5^0.1^~1~^~A~^^^1^2.9^3.6^4^2.9^3.6^~2, 3~^~07/01/2017~ -~09297~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09297~^~326~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2017~ -~09297~^~401~^3.2^7^1.0^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~421~^11.1^0^^~4~^~BFZN~^~09298~^^^^^^^^^~02/01/2007~ -~09297~^~430~^3.5^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09298~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09298~^~291~^4.5^12^0.2^~1~^~A~^^^1^3.8^5.6^5^3.9^5.0^~2, 3~^~07/01/2017~ -~09298~^~313~^233.9^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09298~^~317~^0.6^8^5.6e-02^~1~^~A~^^^2^0.4^1.0^5^0.4^0.7^~2, 3~^~10/01/2002~ -~09298~^~326~^0.0^12^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2017~ -~09298~^~401~^2.3^6^1.1^~1~^~A~^^^3^0.7^4.6^2^-2.6^7.3^~1, 2~^~10/01/2002~ -~09298~^~421~^11.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09298~^~430~^3.5^9^1.0^~1~^~A~^^^3^1.7^7.3^2^-1.1^8.1^~2~^~10/01/2002~ -~09299~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09299~^~291~^6.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09299~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~09299~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09299~^~401~^5.4^18^0.3^~1~^^^^^^^^^^^~08/01/1982~ -~09301~^~291~^0.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~401~^4.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09302~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09302~^~291~^6.5^13^0.6^~1~^~A~^^^5^4.1^8.2^4^4.6^8.2^~2~^~12/01/2002~ -~09302~^~317~^0.2^2^^~1~^~A~^^^1^0.0^0.4^^^^^~12/01/2002~ -~09302~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09302~^~401~^26.2^10^5.5^~1~^~A~^^^4^11.2^37.0^3^8.4^43.9^~2~^~05/01/2003~ -~09302~^~421~^12.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09302~^~429~^0.0^6^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~430~^7.8^6^0.5^~1~^~A~^^^2^6.2^9.9^3^6.0^9.5^~2, 3~^~12/01/2002~ -~09302~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09304~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~09304~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09304~^~317~^0.1^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2007~ -~09304~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09304~^~401~^8.7^3^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~421~^8.2^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2007~ -~09304~^~430~^5.2^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~ -~09306~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09306~^~291~^4.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09306~^~317~^0.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09306~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09306~^~401~^16.5^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~421~^10.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09306~^~430~^6.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09307~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09307~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09307~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09307~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09307~^~401~^8.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~421~^6.1^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09307~^~430~^29.3^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09309~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09309~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09309~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09309~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09309~^~401~^4.8^3^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~421~^6.1^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09309~^~430~^29.3^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09310~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09310~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09310~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~09310~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09310~^~401~^3.3^3^0.2^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~421~^4.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09310~^~430~^21.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09311~^~401~^12.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~401~^22.3^4^3.1^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~09313~^~291~^5.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09313~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09313~^~401~^14.7^12^2.3^~1~^^^^^^^^^^^~08/01/1982~ -~09314~^~291~^5.4^6^0.4^~1~^~A~^^^3^3.8^6.2^2^3.5^7.3^~2~^~08/01/2010~ -~09314~^~401~^23.0^6^9.6^~1~^~A~^^^3^7.5^45.4^2^-18.6^64.6^~2~^~08/01/2010~ -~09315~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09315~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09315~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09315~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09315~^~401~^20.6^16^1.5^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~421~^7.6^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~09315~^~430~^0.4^0^^~4~^~BFSN~^~09040~^^^^^^^^^~02/01/2003~ -~09316~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~09316~^~291~^2.0^21^0.1^~1~^~A~^^^7^1.1^2.8^6^1.6^2.3^~2~^~04/01/2003~ -~09316~^~313~^4.4^10^0.4^~1~^~A~^^^2^4.0^4.8^1^-0.6^9.4^~4~^~05/01/2006~ -~09316~^~317~^0.4^2^^~1~^~A~^^^1^0.3^0.5^1^^^^~04/01/2003~ -~09316~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09316~^~401~^58.8^9^2.4^~1~^~A~^^^3^52.5^69.9^2^48.1^69.4^~2~^~04/01/2003~ -~09316~^~421~^5.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09316~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~09316~^~430~^2.2^9^0.2^~1~^~A~^^^3^1.5^4.2^4^1.3^2.9^~2, 3~^~02/01/2003~ -~09316~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09317~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09317~^~291~^1.7^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09317~^~317~^0.3^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09317~^~401~^31.7^3^0.8^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~421~^3.8^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2007~ -~09317~^~430~^1.5^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~ -~09318~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09318~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09318~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09318~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09318~^~401~^41.2^6^9.0^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~421~^5.7^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2007~ -~09318~^~430~^2.2^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2003~ -~09320~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09320~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09320~^~317~^0.7^2^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09320~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09320~^~401~^41.4^17^2.8^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~421~^4.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09320~^~430~^1.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09321~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09321~^~291~^4.4^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09321~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09321~^~401~^36.3^9^4.9^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09322~^~291~^5.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09322~^~317~^1.3^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~09322~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09322~^~401~^3.5^6^1.1^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~421~^8.6^0^^~4~^~BFSN~^~09421~^^^^^^^^^~02/01/2007~ -~09322~^~430~^2.8^0^^~4~^~BFSN~^~09298~^^^^^^^^^~02/01/2003~ -~09325~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09325~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09325~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09325~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09325~^~401~^17.5^26^0.4^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09326~^~291~^0.4^10^5.1e-02^~1~^~A~^^^4^0.4^0.7^3^0.2^0.5^~2~^~03/01/2003~ -~09326~^~313~^1.5^11^0.3^~1~^~A~^^^2^1.0^2.1^2^5.4e-02^2.8^~4~^~04/01/2006~ -~09326~^~317~^0.4^2^^~1~^~A~^^^1^0.0^0.7^1^^^~1~^~03/01/2003~ -~09326~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09326~^~401~^8.1^6^2.4^~1~^~A~^^^2^5.3^14.7^1^-22.7^38.9^~2~^~03/01/2003~ -~09326~^~421~^4.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09326~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~09326~^~430~^0.1^8^6.0e-02^~1~^~A~^^^3^0.0^0.3^2^-0.1^0.3^~1, 2~^~03/01/2003~ -~09326~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09328~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~291~^3.2^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09328~^~317~^0.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09328~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~421~^4.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~09328~^~430~^1.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09334~^~291~^6.4^3^0.3^~1~^~A~^^^1^5.8^6.8^2^5.0^7.7^~4~^~07/01/2010~ -~09334~^~401~^32.9^5^12.6^~1~^~A~^^^2^20.0^61.5^1^-127.3^193.0^~2~^~07/01/2010~ -~09334~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~430~^3.5^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09340~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~09340~^~291~^3.6^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~317~^0.1^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09340~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09340~^~401~^3.8^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~421~^5.1^0^^~4~^~BFZN~^~09252~^^^^^^^^^~01/01/2007~ -~09340~^~430~^4.5^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09351~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09351~^~291~^1.7^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~317~^0.5^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~09351~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09351~^~401~^1.9^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~421~^2.4^0^^~4~^~BFYN~^~09100~^^^^^^^^^~03/01/2007~ -~09351~^~430~^3.9^0^^~4~^~BFYN~^~09100~^^^^^^^^^~01/01/2003~ -~09352~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~291~^2.6^3^6.5e-02^~1~^~A~^^^1^2.5^2.8^2^2.3^2.9^~2, 3~^~04/01/2008~ -~09352~^~317~^0.1^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~401~^0.5^3^0.1^~1~^~A~^^^1^0.3^0.9^2^-0.3^1.3^~1, 2, 3~^~04/01/2008~ -~09352~^~421~^4.0^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~09352~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~09352~^~430~^19.9^2^^~1~^~A~^^^1^18.3^21.6^1^^^^~04/01/2008~ -~09353~^~291~^4.9^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09353~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09353~^~430~^14.8^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09354~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~09354~^~291~^1.3^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~317~^0.4^3^0.2^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09354~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09354~^~401~^9.4^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~421~^5.5^0^^~4~^~BFZN~^~09266~^^^^^^^^^~02/01/2007~ -~09354~^~430~^0.7^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09357~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~09357~^~291~^2.7^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~317~^0.1^0^^~4~^~BFZN~^~09021~^^^^^^^^^~01/01/2003~ -~09357~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09357~^~401~^3.1^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~421~^2.8^0^^~4~^~BFZN~^~09021~^^^^^^^^^~01/01/2007~ -~09357~^~430~^3.3^0^^~4~^~BFZN~^~09021~^^^^^^^^^~01/01/2003~ -~09362~^~291~^1.2^2^^~1~^~A~^^^1^1.2^1.3^1^^^^~04/01/2008~ -~09362~^~401~^0.3^2^^~1~^~A~^^^1^0.3^0.3^^^^~1~^~04/01/2008~ -~09362~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09362~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09362~^~430~^8.1^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09367~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2008~ -~09367~^~291~^2.3^0^^~4~^~BD~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~317~^0.0^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09367~^~401~^3.6^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~421~^2.7^0^^~4~^~BFYN~^~09074~^^^^^^^^^~03/01/2007~ -~09367~^~430~^0.9^0^^~4~^~BFZN~^~09074~^^^^^^^^^~06/01/2008~ -~09370~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2009~ -~09370~^~291~^1.2^3^0.4^~1~^~A~^^^1^0.3^1.9^2^-0.8^3.2^~2, 3~^~11/01/2009~ -~09370~^~313~^6.8^30^0.3^~1~^~A~^^^6^3.9^8.0^12^5.9^7.6^~4~^~05/01/2006~ -~09370~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~11/01/2009~ -~09370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09370~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~11/01/2009~ -~09370~^~421~^3.8^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09370~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2009~ -~09370~^~430~^2.4^3^0.1^~1~^~A~^^^1^2.3^2.7^2^1.8^3.0^~2, 3~^~11/01/2009~ -~09370~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09374~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09374~^~291~^2.7^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~313~^7.5^20^1.2^~1~^~A~^^^3^1.5^11.0^6^4.3^10.6^~4~^~05/01/2006~ -~09374~^~317~^0.1^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09374~^~401~^1.1^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~421~^1.3^0^^~4~^~BFYN~^~09257~^^^^^^^^^~03/01/2007~ -~09374~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2006~ -~09379~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09379~^~291~^1.5^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~317~^0.0^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09379~^~401~^0.4^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~421~^0.8^0^^~4~^~BFYN~^~09284~^^^^^^^^^~03/01/2007~ -~09379~^~430~^6.4^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~ -~09383~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09383~^~291~^1.2^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~ -~09383~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09383~^~401~^33.9^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~421~^6.0^0^^~4~^~BFYN~^~09219~^^^^^^^^^~03/01/2007~ -~09383~^~430~^0.0^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~ -~09400~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09400~^~291~^0.2^3^0.1^~1~^~A~^^^2^0.0^0.3^2^-0.2^0.6^~4~^~05/01/2008~ -~09400~^~313~^39.1^112^2.4^~1~^~A~^^^1^27.7^57.7^75^34.1^44.0^~2, 3~^~03/01/2006~ -~09400~^~317~^0.1^4^4.5e-02^~1~^~A~^^^^^^^^^^~12/01/1997~ -~09400~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09400~^~401~^38.5^3^4.9^~1~^~A~^^^1^28.9^45.1^2^17.3^59.6^~2, 3~^~06/01/2008~ -~09400~^~421~^1.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~09400~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~05/01/2008~ -~09400~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09401~^~291~^1.1^3^4.7e-02^~1~^~A~^^^1^1.1^1.2^2^0.9^1.3^~2, 3~^~06/01/2008~ -~09401~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~09401~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09401~^~401~^21.2^7^4.3^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~421~^2.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09401~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09401~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09401~^~430~^0.5^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09401~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09402~^~291~^1.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09402~^~317~^0.3^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~09402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09402~^~401~^1.7^30^0.1^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09404~^~401~^38.0^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09407~^~291~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09407~^~401~^30.2^3^0.5^~1~^~A~^^^1^29.2^31.0^2^27.9^32.4^~2, 3~^~12/01/2016~ -~09408~^~291~^0.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~09408~^~313~^11.9^11^2.2^~1~^~A~^^^1^4.8^25.7^10^6.8^16.8^~4~^~02/01/2006~ -~09408~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~09408~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09408~^~401~^27.0^20^1.1^~1~^^^^^^^^^^^~08/01/1982~ -~09409~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1995~ -~09409~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~313~^5.5^24^1.3^~1~^~A~^^^4^0.9^15.4^10^2.5^8.5^~4~^~01/01/2006~ -~09409~^~317~^0.1^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09409~^~401~^43.8^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~421~^3.3^0^^~4~^~BFYN~^~09266~^^^^^^^^^~02/01/2007~ -~09409~^~430~^0.3^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09410~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09410~^~401~^88.9^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~291~^0.1^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09411~^~317~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~09411~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09411~^~401~^25.0^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09412~^~291~^3.1^6^9.9e-02^~1~^~A~^^^2^2.5^3.7^4^2.8^3.3^~2, 3~^~08/01/2012~ -~09412~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~08/01/2012~ -~09412~^~401~^4.4^4^0.1^~1~^~A~^^^2^3.7^4.9^2^3.2^5.4^~2, 3~^~08/01/2012~ -~09412~^~421~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09412~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~430~^3.8^4^0.1^~1~^~A~^^^2^2.2^5.2^1^2.7^4.7^~2, 3~^~08/01/2012~ -~09413~^~291~^3.0^6^0.1^~1~^~A~^^^2^2.7^3.4^3^2.5^3.5^~2, 3~^~08/01/2012~ -~09413~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~08/01/2012~ -~09413~^~401~^5.2^4^0.2^~1~^~A~^^^2^4.2^5.7^1^2.4^7.9^~2, 3~^~08/01/2012~ -~09413~^~421~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09413~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09413~^~430~^4.9^4^0.2^~1~^~A~^^^2^3.7^5.7^1^1.7^8.1^~2, 3~^~08/01/2012~ -~09414~^~291~^3.1^6^0.1^~1~^~A~^^^2^2.6^3.5^3^2.6^3.4^~2, 3~^~08/01/2012~ -~09414~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.1^1^^^^~08/01/2012~ -~09414~^~401~^2.8^4^0.9^~1~^~A~^^^2^1.5^5.2^1^-6.5^12.1^~2, 3~^~08/01/2012~ -~09414~^~421~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09414~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09414~^~430~^5.2^4^0.7^~1~^~A~^^^2^3.6^7.8^1^-2.6^12.9^~2, 3~^~08/01/2012~ -~09415~^~291~^3.1^6^0.1^~1~^~A~^^^2^2.8^3.7^3^2.7^3.4^~2, 3~^~08/01/2012~ -~09415~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.1^1^^^^~08/01/2012~ -~09415~^~401~^4.4^4^0.5^~1~^~A~^^^2^3.5^5.5^1^-0.8^9.7^~2, 3~^~08/01/2012~ -~09415~^~421~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09415~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~430~^4.3^4^0.2^~1~^~A~^^^2^3.8^5.1^1^2.1^6.4^~2, 3~^~08/01/2012~ -~09416~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~291~^0.6^2^^~1~^~A~^^^2^0.5^0.8^^^^~1~^~10/01/2016~ -~09416~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09416~^~401~^31.1^4^1.2^~1~^~A~^^^2^28.3^34.5^2^25.9^36.3^~2, 3~^~10/01/2016~ -~09420~^~291~^0.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09421~^~291~^6.7^2^^~1~^~A~^^^2^5.9^7.4^^^^^~04/01/2003~ -~09421~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09421~^~401~^0.0^2^^~1~^~A~^^^2^0.0^0.0^^^^~1~^~04/01/2003~ -~09421~^~421~^9.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~09421~^~429~^0.0^2^^~1~^~A~^^^2^0.0^0.0^^^^~1~^~04/01/2003~ -~09421~^~430~^2.7^2^^~1~^~A~^^^2^2.7^2.8^^^^^~04/01/2003~ -~09421~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~09422~^~291~^3.8^2^^~1~^~A~^^^1^3.7^4.0^^^^^~08/01/2002~ -~09422~^~401~^19.7^2^^~1~^~A~^^^1^8.6^30.8^^^^^~08/01/2002~ -~09423~^~291~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~401~^4.3^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09426~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~291~^1.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09426~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~421~^2.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09427~^~291~^5.3^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~401~^54.1^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~291~^6.2^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~401~^25.8^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09429~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~06/01/2003~ -~09429~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09429~^~401~^16.9^11^2.4^~1~^~A~^^^2^7.9^39.9^1^-14.3^48.2^~2~^~06/01/2003~ -~09429~^~421~^5.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09429~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2003~ -~09429~^~430~^0.7^2^^~1~^~A~^^^1^0.7^0.8^1^^^^~06/01/2003~ -~09429~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09430~^~291~^1.4^6^5.7e-02^~1~^~A~^^^1^1.2^1.5^5^1.2^1.5^~2, 3~^~05/01/2003~ -~09430~^~317~^0.1^3^1.6e-02^~1~^~A~^^^1^0.1^0.1^2^3.2e-02^0.1^~2, 3~^~05/01/2003~ -~09430~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09430~^~401~^56.4^10^4.0^~1~^~A~^^^2^24.9^70.7^3^43.6^69.0^~2, 3~^~05/01/2003~ -~09430~^~421~^5.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09430~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~430~^0.7^8^0.1^~1~^~A~^^^2^0.2^1.2^3^0.3^1.0^~2, 3~^~05/01/2003~ -~09430~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09433~^~291~^1.7^5^3.8e-02^~1~^~A~^^^2^1.2^3.2^3^1.5^1.7^~2, 3~^~05/01/2005~ -~09433~^~317~^0.1^2^^~1~^~A~^^^1^0.0^0.2^1^^^^~03/01/2005~ -~09433~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~09433~^~401~^48.8^4^2.9^~1~^~A~^^^1^41.9^56.4^3^39.2^58.2^~2, 3~^~03/01/2005~ -~09433~^~421~^14.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09433~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2005~ -~09433~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2005~ -~09433~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~09434~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~291~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^~1~^~04/01/2006~ -~09434~^~317~^0.4^0^^~4~^~BFZN~^~09436~^^^^^^^^^~03/01/2007~ -~09434~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09434~^~401~^11.1^2^^~1~^~A~^^^1^8.5^13.6^1^^^^~11/01/2006~ -~09434~^~421~^2.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09434~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2006~ -~09434~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2006~ -~09434~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2006~ -~09434~^~454~^0.0^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09435~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~401~^21.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09435~^~421~^1.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09435~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~430~^1.0^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09436~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~291~^0.3^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~06/01/2006~ -~09436~^~317~^0.4^0^^~4~^~BFSN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09436~^~401~^15.2^3^4.6^~1~^~A~^^^1^6.0^20.3^2^-4.6^35.1^~2, 3~^~11/01/2006~ -~09436~^~421~^1.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09436~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2006~ -~09436~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2006~ -~09436~^~430~^0.8^2^^~1~^~A~^^^1^0.8^0.9^1^^^^~06/01/2006~ -~09436~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~09437~^~291~^0.5^2^^~1~^~A~^^^1^0.3^0.7^1^^^^~04/01/2006~ -~09437~^~401~^7.1^2^^~1~^~A~^^^1^3.8^10.4^1^^^^~11/01/2006~ -~09437~^~421~^1.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~09437~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2006~ -~09437~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2006~ -~09437~^~430~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^~1~^~04/01/2006~ -~09437~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~09442~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~291~^0.1^2^^~1~^~A~^^^1^0.1^0.1^^^^~1~^~06/01/2008~ -~09442~^~317~^0.3^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09442~^~401~^0.1^3^2.0e-02^~1~^~A~^^^1^0.1^0.2^2^4.9e-02^0.2^~1, 2, 3~^~06/01/2008~ -~09442~^~421~^4.8^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~430~^10.4^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09443~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~291~^0.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~313~^72.1^45^5.5^~1~^~A~^^^1^26.5^102.4^29^60.8^83.3^~2, 3~^~07/01/2008~ -~09443~^~317~^0.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~401~^28.2^2^^~1~^~A~^^^1^11.9^44.6^1^^^^~07/01/2008~ -~09443~^~421~^2.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~430~^0.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09444~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~291~^0.2^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~313~^43.5^25^4.3^~1~^~A~^^^^9.5^99.8^^^^^~07/01/2008~ -~09444~^~317~^0.1^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~401~^50.7^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~421~^1.8^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~430~^0.0^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09446~^~291~^3.5^3^7.7e-02^~1~^~A~^^^2^3.3^3.6^1^2.5^4.5^~2~^~07/01/2009~ -~09446~^~401~^3.4^2^^~1~^~A~^^^1^1.4^5.4^1^^^^~07/01/2009~ -~09447~^~291~^3.2^3^0.1^~1~^~A~^^^1^2.8^3.4^2^2.3^3.9^~2, 3~^~07/01/2009~ -~09447~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09447~^~428~^0.6^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~429~^0.8^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~430~^31.8^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09448~^~291~^7.0^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~401~^10.8^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09449~^~291~^7.5^5^0.1^~1~^~A~^^^1^7.1^7.8^4^7.1^7.8^~2, 3~^~07/01/2010~ -~09449~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~401~^92.5^5^13.1^~1~^~A~^^^1^49.0^127.7^4^56.0^128.9^~2, 3~^~07/01/2010~ -~09449~^~430~^11.9^3^1.1^~1~^~A~^^^1^10.3^14.1^2^6.8^16.8^~2, 3~^~07/01/2010~ -~09450~^~291~^1.1^3^0.1^~1~^~A~^^^1^0.9^1.2^2^0.6^1.5^~2, 3~^~04/01/2010~ -~09450~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~04/01/2010~ -~09450~^~401~^3.2^3^2.7^~1~^~A~^^^1^0.2^8.8^2^-8.7^15.2^~1, 2, 3~^~04/01/2010~ -~09450~^~430~^14.6^2^^~1~^~A~^^^1^11.5^17.6^1^^^^~04/01/2010~ -~09451~^~401~^5.3^2^^~1~^~A~^^^1^5.0^5.6^1^^^^~07/01/2009~ -~09452~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~09452~^~291~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~09452~^~401~^40.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~421~^3.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09500~^~291~^2.3^6^0.1^~1~^~A~^^^2^1.4^3.0^3^1.8^2.6^~2, 3~^~08/01/2012~ -~09500~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09500~^~421~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09500~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~430~^2.6^4^0.1^~1~^~A~^^^2^2.2^3.1^2^2.0^3.2^~2, 3~^~08/01/2012~ -~09501~^~291~^2.4^6^5.8e-02^~1~^~A~^^^2^1.4^3.0^3^2.2^2.6^~2, 3~^~08/01/2012~ -~09501~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09501~^~421~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09501~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~430~^1.8^4^5.0e-02^~1~^~A~^^^2^1.6^2.1^1^1.1^2.4^~2, 3~^~08/01/2012~ -~09502~^~291~^2.8^6^7.6e-02^~1~^~A~^^^2^1.8^3.5^3^2.5^3.0^~2, 3~^~08/01/2012~ -~09502~^~317~^0.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09502~^~421~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09502~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~430~^3.2^4^0.4^~1~^~A~^^^2^2.6^4.3^1^0.2^6.2^~2, 3~^~08/01/2012~ -~09503~^~291~^2.3^4^0.1^~1~^~A~^^^2^1.6^2.8^1^1.1^3.4^~2, 3~^~08/01/2012~ -~09503~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~09503~^~421~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09503~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09503~^~430~^1.3^4^9.0e-02^~1~^~A~^^^2^1.2^1.5^2^0.8^1.7^~2, 3~^~08/01/2012~ -~09504~^~291~^2.1^4^0.2^~1~^~A~^^^2^1.7^2.8^1^0.5^3.6^~2, 3~^~08/01/2012~ -~09504~^~317~^0.0^3^1.0e-03^~1~^~A~^^^2^0.0^0.0^1^1.0e-02^3.5e-02^~1, 2, 3~^~08/01/2012~ -~09504~^~421~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09504~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~08/01/2012~ -~09504~^~430~^1.0^4^7.1e-02^~1~^~A~^^^2^0.9^1.1^2^0.6^1.3^~2, 3~^~08/01/2012~ -~09506~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09506~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~317~^0.1^12^9.0e-02^~1~^~A~^^^3^0.0^0.8^11^-6.5e-02^0.3^~1, 4~^~03/01/2014~ -~09506~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2014~ -~09506~^~401~^33.6^40^0.7^~1~^~A~^^^3^21.1^42.1^13^32.0^35.1^~2, 3~^~03/01/2014~ -~09506~^~421~^6.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~09506~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~09506~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~03/01/2014~ -~09506~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09507~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~401~^2.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~291~^0.7^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~317~^0.4^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~401~^8.2^2^^~1~^~A~^^^1^7.6^8.8^1^^^^~06/01/2015~ -~09508~^~421~^4.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~430~^21.2^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09510~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2014~ -~09510~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~401~^31.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~291~^2.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2014~ -~09512~^~291~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~313~^138.0^32^65.9^~1~^~A~^^^1^72.0^204.0^^^^~2~^~04/01/2014~ -~09512~^~317~^0.0^4^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~04/01/2014~ -~09512~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~421~^3.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~09512~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09513~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~317~^0.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09513~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~401~^31.3^2^^~1~^~A~^^^1^26.9^35.6^1^^^^~06/01/2015~ -~09513~^~421~^5.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09513~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09513~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09513~^~430~^5.0^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09514~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~401~^108.6^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09515~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~317~^0.2^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09515~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~401~^6.2^3^0.7^~1~^~A~^^^1^4.8^7.2^2^3.1^9.2^~2, 3~^~06/01/2015~ -~09515~^~421~^4.5^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09515~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09515~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09515~^~430~^8.1^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09515~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~317~^0.4^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~401~^47.3^3^1.9^~1~^~A~^^^1^44.6^51.0^2^39.0^55.4^~2, 3~^~06/01/2015~ -~09516~^~421~^5.3^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09516~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09516~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09517~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~317~^0.1^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~401~^30.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09517~^~421~^1.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09517~^~430~^0.0^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09518~^~291~^4.3^9^0.4^~1~^~A~^^^1^2.0^5.7^7^3.2^5.3^~2, 3~^~12/01/2016~ -~09518~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~401~^17.6^4^1.9^~1~^~A~^^^1^13.4^21.4^2^8.8^26.4^~2, 3~^~12/01/2016~ -~09519~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~291~^1.2^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~401~^21.3^1^^~1~^~A~^^^^^^^^^^~12/01/2014~ -~09519~^~421~^1.1^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~430~^1.0^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09520~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~291~^1.4^10^3.0e-02^~1~^~A~^^^1^1.3^1.6^9^1.3^1.4^~4~^~03/01/2015~ -~09520~^~313~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09520~^~317~^0.4^10^0.1^~1~^~A~^^^1^0.0^1.1^9^7.8e-02^0.8^~1, 4~^~03/01/2015~ -~09520~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09520~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09520~^~401~^161.3^10^6.0^~1~^~A~^^^1^135.4^201.6^9^147.6^175.0^~4~^~03/01/2015~ -~09520~^~421~^1.9^5^0.4^~1~^~A~^^^1^1.1^3.4^4^0.7^3.0^~4~^~03/01/2015~ -~09520~^~430~^6.1^10^0.3^~1~^~A~^^^1^4.9^7.6^9^5.3^6.7^~4~^~03/01/2015~ -~09522~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~291~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~317~^0.1^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~401~^31.5^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~421~^1.8^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~430~^0.0^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09523~^~401~^0.0^3^1.8e-02^~1~^~A~^^^1^0.0^0.1^2^-6.0e-02^9.7e-02^~1, 2, 3~^~03/01/2015~ -~09524~^~291~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~401~^16.6^3^1.5^~1~^~A~^^^1^13.7^18.9^2^10.0^23.1^~2, 3~^~03/01/2015~ -~09524~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~430~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09525~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~401~^1.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~401~^1.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09528~^~291~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09528~^~401~^49.2^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09530~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~291~^0.6^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~317~^0.2^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09530~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~401~^38.4^2^^~1~^~A~^^^1^38.1^38.7^1^^^^~06/01/2015~ -~09530~^~421~^3.8^0^^~4~^~NR~^^^^^^^^^^~08/01/2016~ -~09530~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09530~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09530~^~430~^0.8^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~317~^0.4^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~401~^8.4^3^1.3^~1~^~A~^^^1^6.7^11.1^2^2.4^14.2^~2, 3~^~06/01/2015~ -~09531~^~421~^3.8^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~09531~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~430~^2.1^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09542~^~291~^2.2^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~401~^20.2^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09543~^~291~^2.6^3^0.5^~1~^~A~^^^1^1.9^3.7^2^0.1^5.0^~2, 3~^~11/01/2016~ -~09543~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~401~^9.1^2^^~1~^~A~^^^1^6.8^11.4^1^^^^~11/01/2016~ -~09543~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~430~^3.8^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09544~^~291~^44.5^12^^~12~^~MA~^^^1^39.8^57.4^^^^~2~^~11/01/2016~ -~09544~^~317~^0.0^4^^~12~^~MA~^^^1^0.0^0.0^^^^~2~^~11/01/2016~ -~09544~^~401~^173.2^12^^~12~^~MA~^^^1^83.3^304.7^^^^~2~^~11/01/2016~ -~09546~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09546~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2016~ -~09552~^~291~^0.9^2^^~1~^~A~^^^1^0.6^1.2^1^^^~1~^~12/01/2016~ -~09552~^~401~^6.4^4^2.2^~1~^~A~^^^1^1.2^11.7^3^-0.8^13.5^~1, 2, 3~^~12/01/2016~ -~09553~^~291~^4.3^2^^~1~^~A~^^^1^1.5^4.7^^^^^~12/01/2016~ -~09553~^~401~^14.6^8^0.8^~1~^~A~^^^1^10.3^32.2^6^12.5^16.5^~2, 3~^~12/01/2016~ -~09554~^~291~^1.1^3^0.2^~1~^~A~^^^1^0.8^1.5^1^-1.7^4.0^~2, 3~^~12/01/2016~ -~09554~^~401~^38.1^2^^~1~^~A~^^^1^36.7^39.4^1^^^^~12/01/2016~ -~10000~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~317~^15.1^4^0.8^~1~^~A~^^^1^12.8^16.3^3^12.4^17.7^~2, 3~^~05/01/2007~ -~10000~^~326~^1.5^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10000~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10000~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~421~^46.0^4^6.4^~1~^~AS~^^^1^34.5^64.4^3^25.5^66.4^~2, 3~^~05/01/2007~ -~10000~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~454~^2.0^4^0.2^~1~^~A~^^^1^1.4^2.8^3^1.1^2.9^~2, 3~^~05/01/2007~ -~10001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10001~^~317~^28.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10001~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10002~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~317~^33.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~401~^0.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~421~^49.9^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10002~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10002~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~317~^28.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~401~^0.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~421~^34.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~454~^1.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10004~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10004~^~317~^8.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10004~^~326~^3.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2009~ -~10004~^~328~^3.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10004~^~401~^0.1^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~421~^15.4^0^^~4~^~BFPN~^~10007~^^^^^^^^^~01/01/2007~ -~10004~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~430~^0.0^0^^~4~^~BFSN~^~10006~^^^^^^^^^~01/01/2003~ -~10004~^~454~^0.6^0^^~4~^~BFPN~^~10007~^^^^^^^^^~01/01/2007~ -~10005~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~10005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10005~^~317~^8.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10005~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10005~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10006~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10006~^~317~^9.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~326~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~10006~^~328~^1.7^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10006~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10006~^~421~^31.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10006~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10006~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10006~^~454~^1.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10007~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10007~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10007~^~317~^11.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~326~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~10007~^~328~^1.8^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10007~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10007~^~421~^32.9^4^1.8^~1~^~AS~^^^1^29.2^37.7^3^27.0^38.7^~2, 3~^~04/01/2010~ -~10007~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10007~^~430~^0.0^0^^~4~^~BFFN~^~10006~^^^^^^^^^~04/01/2010~ -~10007~^~454~^1.9^4^0.1^~1~^~A~^^^1^1.6^2.2^3^1.4^2.4^~2, 3~^~02/01/2007~ -~10008~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10008~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10008~^~317~^29.4^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10008~^~326~^0.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10008~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10008~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10009~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10009~^~317~^45.3^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10009~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10009~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10009~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~421~^92.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10009~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~430~^0.0^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10009~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10010~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10010~^~317~^35.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10010~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10010~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10010~^~401~^0.9^0^^~1~^^^^^^^^^^^~04/01/2005~ -~10010~^~421~^72.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10010~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10010~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10011~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10011~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10011~^~317~^49.9^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10011~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10011~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10011~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~421~^101.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10011~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~430~^0.0^0^^~4~^~BFYN~^~10010~^^^^^^^^^~01/01/2003~ -~10011~^~454~^3.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10012~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~317~^19.7^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~421~^69.6^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~454~^2.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10013~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~317~^25.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~326~^0.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~421~^92.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10013~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10014~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10014~^~317~^21.2^6^4.9^~1~^~A~^^^1^12.5^45.0^5^8.5^33.8^~2, 3~^~01/01/2011~ -~10014~^~326~^0.3^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10014~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10014~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10014~^~421~^75.0^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10014~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10014~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10014~^~454~^2.9^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10015~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10015~^~317~^26.6^6^6.1^~1~^~A~^^^1^15.5^55.9^5^10.8^42.3^~2, 3~^~01/01/2011~ -~10015~^~326~^0.3^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10015~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10015~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10015~^~421~^99.2^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10015~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10015~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10015~^~454~^3.8^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10016~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~317~^19.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~421~^68.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~317~^26.4^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~421~^90.3^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10018~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10018~^~317~^21.3^6^4.5^~1~^~A~^^^1^12.6^43.1^5^9.6^32.9^~2, 3~^~01/01/2011~ -~10018~^~326~^0.3^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10018~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10018~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10018~^~421~^74.4^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10018~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2011~ -~10018~^~454~^2.9^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10019~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10019~^~317~^28.6^6^5.2^~1~^~A~^^^1^19.1^54.1^5^15.1^42.0^~2, 3~^~01/01/2011~ -~10019~^~326~^0.4^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10019~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10019~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10019~^~421~^98.6^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10019~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10019~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10019~^~454~^3.8^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10020~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10020~^~317~^33.2^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10020~^~326~^0.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10020~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10020~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~421~^69.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10020~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10020~^~430~^0.0^0^^~4~^~BFSN~^~10062~^^^^^^^^^~01/01/2003~ -~10020~^~454~^3.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10021~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10021~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10021~^~317~^45.3^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10021~^~326~^1.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10021~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10021~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~421~^93.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10021~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~430~^0.0^0^^~4~^~BFSN~^~10063~^^^^^^^^^~01/01/2003~ -~10021~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10022~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10022~^~317~^45.3^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10022~^~326~^1.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10022~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10022~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~421~^93.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10022~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~430~^0.0^0^^~4~^~BFSN~^~10064~^^^^^^^^^~01/01/2003~ -~10022~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10023~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10023~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10023~^~317~^33.4^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10023~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10023~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10023~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~421~^93.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10023~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~430~^0.0^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10023~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10024~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10024~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10024~^~317~^36.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10024~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10024~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10024~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~421~^75.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10024~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10024~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10024~^~454~^3.5^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10025~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10025~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10025~^~317~^48.2^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10025~^~326~^0.8^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10025~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10025~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~421~^98.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10025~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~430~^0.0^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10025~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10026~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10026~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10026~^~317~^48.2^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10026~^~326~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10026~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10026~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~421~^98.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10026~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~430~^0.0^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10026~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10027~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10027~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10027~^~317~^35.1^28^3.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10027~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10027~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10027~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~421~^98.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10027~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10027~^~430~^0.0^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10027~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10028~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~10028~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~317~^29.4^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~326~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~421~^67.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~317~^41.8^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~326~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~421~^81.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~454~^3.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~317~^36.4^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~326~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~421~^67.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~317~^38.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~326~^0.9^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~421~^83.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~454~^3.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10032~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10032~^~317~^31.6^12^3.5^~1~^~A~^^^1^17.1^51.0^11^23.8^39.3^~2, 3~^~04/01/2010~ -~10032~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10032~^~328~^0.6^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10032~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~421~^72.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10032~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~454~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10033~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10033~^~317~^44.3^12^4.8^~1~^~A~^^^1^24.5^73.8^11^33.6^54.9^~2, 3~^~03/01/2010~ -~10033~^~326~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10033~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10033~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10033~^~421~^86.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10033~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~430~^0.0^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10033~^~454~^3.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10034~^~317~^38.5^12^3.8^~1~^~A~^^^1^21.3^56.8^11^30.0^46.8^~2, 3~^~03/01/2010~ -~10034~^~326~^0.9^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~328~^0.9^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10034~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~421~^71.0^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2010~ -~10034~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10034~^~454~^2.6^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2010~ -~10035~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10035~^~317~^41.2^12^4.1^~1~^~A~^^^1^19.4^58.5^11^32.1^50.2^~2, 3~^~04/01/2010~ -~10035~^~326~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~328~^0.8^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10035~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~421~^88.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10035~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10036~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~317~^33.8^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10036~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10036~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~421~^55.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10036~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~454~^3.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10037~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~317~^44.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~421~^95.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~454~^3.7^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10038~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~317~^43.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~421~^73.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~454~^2.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10039~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~317~^42.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~421~^92.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10040~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10040~^~317~^36.0^12^4.5^~1~^~A~^^^1^13.7^57.5^11^25.9^46.0^~2, 3~^~02/01/2007~ -~10040~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10040~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10040~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10040~^~421~^58.5^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10040~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10040~^~454~^3.1^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10041~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10041~^~317~^47.4^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10041~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10041~^~421~^102.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10041~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~430~^0.0^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10041~^~454~^4.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10042~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10042~^~317~^45.7^12^5.7^~1~^~A~^^^1^16.7^78.4^11^33.0^58.3^~2, 3~^~02/01/2007~ -~10042~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10042~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10042~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~421~^76.0^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2007~ -~10042~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~454~^2.8^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2007~ -~10043~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10043~^~317~^45.2^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~326~^0.5^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10043~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~421~^98.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10043~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~05/01/2010~ -~10043~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10044~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~317~^35.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10044~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~421~^54.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~454~^3.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10045~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~317~^41.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~421~^91.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10046~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~317~^42.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~421~^70.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10047~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~317~^40.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~421~^92.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10048~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10048~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10048~^~317~^38.3^12^5.4^~1~^~A~^^^1^12.3^65.8^11^26.2^50.2^~2, 3~^~03/01/2007~ -~10048~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10048~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~10048~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10048~^~421~^57.9^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10048~^~454~^3.0^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10049~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10049~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10049~^~317~^45.4^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~326~^0.8^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10049~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~10049~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10049~^~421~^99.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10049~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~430~^0.0^0^^~4~^~BFSN~^~10067~^^^^^^^^^~05/01/2010~ -~10049~^~454~^3.9^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10050~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10050~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10050~^~317~^45.4^12^5.7^~1~^~A~^^^1^15.8^76.9^11^32.6^58.1^~2, 3~^~03/01/2007~ -~10050~^~326~^0.8^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10050~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10050~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~421~^73.3^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10050~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~454~^2.7^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10051~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10051~^~317~^43.1^6^4.4^~1~^~A~^^^1^31.9^60.6^5^31.7^54.4^~2, 3~^~05/01/2010~ -~10051~^~326~^0.6^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10051~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10051~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~421~^99.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10051~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10052~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~317~^29.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10052~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~421~^79.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~454~^3.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10053~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~317~^44.1^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~421~^84.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~454~^3.3^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~317~^41.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~326~^1.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~421~^91.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10054~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10055~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~317~^44.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~421~^90.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~454~^4.4^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10056~^~317~^30.9^12^4.6^~1~^~A~^^^1^11.9^54.5^11^20.6^41.0^~2, 3~^~03/01/2007~ -~10056~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10056~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~10056~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10056~^~421~^83.5^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10056~^~454~^3.1^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10057~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10057~^~317~^47.4^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~326~^0.4^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~ -~10057~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10057~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~421~^89.9^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10057~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~454~^3.5^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10058~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10058~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10058~^~317~^45.3^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10058~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10058~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10058~^~421~^97.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10058~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10058~^~430~^0.0^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10058~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10059~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10059~^~317~^46.4^12^8.6^~1~^~A~^^^1^15.6^115.0^11^27.3^65.5^~2, 3~^~01/01/2007~ -~10059~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10059~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10059~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~421~^94.4^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10059~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10059~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10059~^~454~^4.6^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10060~^~317~^30.8^12^3.7^~1~^~A~^^^1^13.5^51.3^11^22.6^38.9^~2, 3~^~02/01/2007~ -~10060~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10060~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10060~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~421~^80.8^4^3.2^~1~^~AS~^^^1^73.9^87.8^3^70.5^91.0^~2, 3~^~02/01/2007~ -~10060~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~454~^3.0^4^0.3^~1~^~A~^^^1^2.5^3.9^3^2.0^3.9^~2, 3~^~02/01/2007~ -~10061~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10061~^~317~^38.2^12^4.8^~1~^~A~^^^1^15.8^62.1^11^27.4^48.8^~2, 3~^~02/01/2007~ -~10061~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10061~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10061~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~421~^88.9^4^7.1^~1~^~AS~^^^1^75.6^107.2^3^66.1^111.7^~2, 3~^~02/01/2007~ -~10061~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~454~^4.3^4^0.2^~1~^~A~^^^1^3.9^5.0^3^3.5^5.1^~2, 3~^~02/01/2007~ -~10062~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~317~^33.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~326~^0.4^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10062~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10062~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~421~^57.8^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~454~^3.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10063~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~317~^40.3^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~326~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~421~^100.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~454~^3.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10064~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~317~^43.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~421~^76.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~454~^2.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~317~^34.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~421~^75.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~454~^2.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10066~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10066~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10066~^~317~^34.5^12^7.1^~1~^~A~^^^1^13.5^80.9^11^18.6^50.3^~2, 3~^~02/01/2007~ -~10066~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10066~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10066~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10066~^~421~^59.6^4^4.9^~1~^~AS~^^^1^51.2^71.9^3^43.7^75.4^~2, 3~^~02/01/2007~ -~10066~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10066~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10066~^~454~^3.1^4^0.4^~1~^~A~^^^1^1.8^3.8^3^1.6^4.5^~2, 3~^~02/01/2007~ -~10067~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10067~^~317~^42.1^6^1.9^~1~^~A~^^^1^35.5^50.0^5^37.0^47.1^~2, 3~^~04/01/2010~ -~10067~^~326~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~328~^0.9^1^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10067~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10067~^~421~^104.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10067~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~03/01/2006~ -~10067~^~454~^4.1^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10068~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10068~^~317~^45.3^12^8.6^~1~^~A~^^^1^17.6^106.0^11^26.1^64.3^~2, 3~^~02/01/2007~ -~10068~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10068~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10068~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~421~^78.3^4^2.2^~1~^~AS~^^^1^72.3^83.0^3^71.1^85.5^~2, 3~^~02/01/2007~ -~10068~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10068~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~454~^2.8^4^0.4^~1~^~A~^^^1^2.0^4.0^3^1.5^4.1^~2, 3~^~02/01/2007~ -~10069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10069~^~317~^35.8^12^5.6^~1~^~A~^^^1^14.1^72.5^11^23.4^48.2^~2, 3~^~03/01/2007~ -~10069~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10069~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10069~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~421~^77.3^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~454~^2.8^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10070~^~317~^25.5^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10070~^~326~^1.7^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10070~^~328~^1.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10070~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~421~^60.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10070~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~430~^0.0^0^^~4~^~BFSN~^~10062~^^^^^^^^^~01/01/2003~ -~10070~^~454~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10071~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10071~^~317~^33.4^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10071~^~326~^1.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10071~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10071~^~401~^0.5^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~421~^80.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10071~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~430~^0.0^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10071~^~454~^3.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10072~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10072~^~317~^29.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10072~^~401~^0.8^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10073~^~317~^37.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10073~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10073~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10073~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~421~^87.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10073~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10073~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10074~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~317~^21.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~421~^64.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~317~^29.4^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~326~^1.1^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~328~^1.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~421~^103.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10075~^~454~^4.1^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10076~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10076~^~317~^33.6^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10076~^~401~^0.2^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10077~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10077~^~317~^24.0^6^5.0^~1~^~A~^^^1^13.1^40.0^5^11.0^36.9^~2, 3~^~01/01/2011~ -~10077~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10077~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10077~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10077~^~421~^69.6^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10077~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10077~^~454~^2.7^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~ -~10078~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~10078~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10078~^~317~^31.2^6^6.1^~1~^~A~^^^1^16.3^53.0^5^15.3^47.1^~2, 3~^~01/01/2011~ -~10078~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10078~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10078~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10078~^~421~^110.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10078~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10078~^~454~^4.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10079~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10079~^~317~^38.5^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10079~^~326~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10079~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10079~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10080~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~317~^26.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10080~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~421~^73.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~454~^3.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~317~^42.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~326~^1.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~328~^1.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2009~ -~10081~^~421~^102.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~454~^3.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10082~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~10082~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10082~^~317~^36.3^0^^~1~^~PAK~^^^^^^^^^^~12/01/1997~ -~10082~^~326~^1.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10082~^~328~^1.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10082~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~421~^87.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10082~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~430~^0.0^0^^~4~^~BFSN~^~10064~^^^^^^^^^~01/01/2003~ -~10082~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10083~^~317~^34.3^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10083~^~326~^1.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10083~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10083~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~421~^79.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10083~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~430~^0.0^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10083~^~454~^3.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10084~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10084~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10084~^~317~^28.2^12^3.9^~1~^~A~^^^1^11.6^46.0^11^19.4^37.0^~2, 3~^~02/01/2007~ -~10084~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10084~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10084~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~421~^78.8^4^2.1^~1~^~AS~^^^1^74.1^82.6^3^71.8^85.6^~2, 3~^~02/01/2007~ -~10084~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~454~^4.1^4^0.7^~1~^~A~^^^1^2.4^6.0^3^1.6^6.4^~2, 3~^~02/01/2007~ -~10085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10085~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10085~^~317~^45.0^12^6.5^~1~^~A~^^^1^18.8^86.5^11^30.5^59.5^~2, 3~^~02/01/2007~ -~10085~^~326~^1.1^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10085~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10085~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~421~^108.7^4^4.7^~1~^~AS~^^^1^97.4^120.4^3^93.7^123.7^~2, 3~^~02/01/2007~ -~10085~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~454~^3.5^4^0.2^~1~^~A~^^^1^3.2^4.1^3^2.8^4.1^~2, 3~^~02/01/2007~ -~10086~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10086~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10086~^~317~^39.3^5^5.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10086~^~326~^1.2^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10086~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10086~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~421~^91.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10086~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~430~^0.0^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10086~^~454~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10087~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10087~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10087~^~317~^36.1^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10087~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~10087~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10087~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~421~^83.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10087~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~430~^0.0^0^^~4~^~BFYN~^~10084~^^^^^^^^^~01/01/2003~ -~10087~^~454~^3.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10088~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10088~^~317~^22.0^12^2.9^~1~^~A~^^^1^10.1^37.3^11^15.5^28.4^~2, 3~^~03/01/2007~ -~10088~^~326~^2.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10088~^~328~^2.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10088~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~10088~^~421~^59.7^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10088~^~454~^2.2^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10089~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10089~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10089~^~317~^37.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10089~^~326~^2.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10089~^~328~^2.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10089~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~10089~^~421~^99.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10089~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~430~^0.0^0^^~4~^~BFSN~^~10063~^^^^^^^^^~01/01/2003~ -~10089~^~454~^3.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10093~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~317~^44.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~401~^0.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~421~^65.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10093~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10093~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10094~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~317~^46.9^3^8.4^~1~^~A~^^^1^30.0^55.5^2^10.5^83.1^~2, 3~^~05/01/2014~ -~10094~^~326~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~ -~10094~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~10094~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~421~^63.1^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~ -~10094~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~454~^3.3^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~ -~10096~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10096~^~317~^15.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10096~^~401~^13.5^5^0.8^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10097~^~317~^18.5^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10097~^~401~^14.0^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10098~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10098~^~317~^15.1^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10099~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10099~^~317~^27.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10099~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10099~^~421~^471.0^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~10099~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10100~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10100~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10100~^~317~^4.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10100~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10101~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10101~^~317~^4.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10101~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10102~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10102~^~317~^23.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10103~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10103~^~317~^10.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10103~^~401~^5.3^10^0.6^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10104~^~317~^18.3^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10104~^~401~^2.0^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10105~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10105~^~317~^1.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10105~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10106~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10106~^~317~^190.0^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10106~^~401~^13.3^9^1.7^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10107~^~317~^311.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10107~^~401~^10.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10109~^~317~^8.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10109~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10110~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~10110~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10110~^~317~^52.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10110~^~401~^25.3^14^1.7^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10111~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10111~^~317~^67.5^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10111~^~401~^23.6^6^2.9^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10112~^~317~^17.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10112~^~401~^12.3^6^0.9^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10113~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10113~^~317~^23.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10113~^~401~^7.9^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10114~^~317~^32.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10114~^~401~^0.7^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10115~^~317~^40.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10115~^~401~^15.3^5^0.6^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10116~^~317~^72.8^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10116~^~401~^5.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10117~^~317~^32.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10117~^~401~^28.5^8^1.7^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10118~^~317~^49.6^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10118~^~401~^11.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10119~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10119~^~317~^31.1^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10119~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10119~^~421~^194.8^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~10119~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10120~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10120~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10120~^~317~^38.7^12^4.1^~1~^~A~^^^1^22.0^65.2^11^29.5^47.9^~2, 3~^~04/01/2010~ -~10120~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10120~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10120~^~421~^85.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10120~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~430~^0.0^0^^~4~^~BFYN~^~10066~^^^^^^^^^~04/01/2010~ -~10120~^~454~^3.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~10121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10121~^~317~^10.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10121~^~401~^4.4^5^0.3^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10122~^~317~^15.5^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10122~^~401~^1.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10123~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10123~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10123~^~317~^20.1^9^2.4^~1~^~A~^^^1^9.3^30.9^5^13.7^26.4^~2, 3~^~05/01/2012~ -~10123~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10123~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~10123~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10123~^~421~^47.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~10123~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~05/01/2012~ -~10123~^~454~^3.7^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10128~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10128~^~317~^25.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10128~^~401~^27.2^5^3.3^~1~^^^^^^^^^^^~12/01/1992~ -~10130~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2004~ -~10130~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10130~^~317~^37.1^3^^~1~^~A~^^^1^28.9^43.5^^^^~2, 3~^~05/01/2015~ -~10130~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~10130~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10130~^~421~^76.1^0^^~4~^~BFPN~^~07028~^^^^^^^^^~04/01/2013~ -~10130~^~428~^3.5^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~10130~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~10130~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~10130~^~454~^3.4^0^^~4~^~BFPN~^~07028~^^^^^^^^^~04/01/2013~ -~10132~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~10132~^~317~^15.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~326~^0.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10132~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10132~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~421~^44.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10132~^~428~^10.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~454~^2.9^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10134~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10134~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10134~^~317~^19.5^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10134~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10134~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10134~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10134~^~421~^85.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10134~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10134~^~430~^0.0^0^^~4~^~BFSN~^~10153~^^^^^^^^^~01/01/2003~ -~10134~^~454~^5.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10136~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10136~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10136~^~317~^19.8^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10136~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10136~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10136~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10136~^~421~^88.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10136~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~10136~^~454~^5.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10137~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10137~^~317~^14.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10137~^~326~^2.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~10137~^~328~^2.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~10137~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10137~^~421~^70.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10137~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~430~^0.0^0^^~4~^~BFSN~^~10152~^^^^^^^^^~01/01/2003~ -~10137~^~454~^4.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10138~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10138~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10138~^~317~^17.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10138~^~401~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~10140~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10140~^~317~^35.9^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10140~^~401~^14.0^4^2.3^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2006~ -~10141~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10141~^~317~^25.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2006~ -~10141~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10141~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10141~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10141~^~421~^105.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10141~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~04/01/2007~ -~10141~^~454~^7.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10142~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10142~^~317~^22.6^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10142~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10146~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10146~^~317~^15.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10146~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10149~^~317~^15.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10149~^~401~^32.3^47^0.8^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10150~^~317~^15.3^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10150~^~401~^34.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/1999~ -~10150~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10150~^~430~^0.0^0^^~4~^~BFSN~^~10859~^^^^^^^^^~01/01/2003~ -~10152~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10152~^~317~^18.8^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10152~^~326~^0.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10152~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10152~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~10152~^~421~^84.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10152~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10152~^~454~^5.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10153~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10153~^~317~^25.4^28^1.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10153~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10153~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10153~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~10153~^~421~^101.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10153~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10153~^~430~^0.0^0^^~4~^~BFYN~^~10152~^^^^^^^^^~01/01/2003~ -~10153~^~454~^6.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~317~^54.0^3^8.9^~1~^~A~^^^1^36.9^67.0^2^15.5^92.4^~2, 3~^~05/01/2014~ -~10163~^~326~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~ -~10163~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~10163~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~421~^79.8^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~454~^4.2^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~ -~10164~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~317~^41.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~421~^58.4^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~454~^3.1^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10165~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10165~^~317~^5.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10165~^~326~^0.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10165~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10165~^~421~^19.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10165~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~430~^0.0^0^^~4~^~BFSN~^~10004~^^^^^^^^^~01/01/2003~ -~10165~^~454~^1.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10166~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10166~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10166~^~317~^4.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10166~^~326~^0.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10166~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10166~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10166~^~421~^23.2^0^^~4~^~BFPN~^~10895~^^^^^^^^^~01/01/2007~ -~10166~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~430~^0.0^0^^~4~^~BFSN~^~10006~^^^^^^^^^~01/01/2003~ -~10166~^~454~^1.5^0^^~4~^~BFPN~^~10895~^^^^^^^^^~01/01/2007~ -~10167~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10167~^~317~^11.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10167~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10168~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10168~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10168~^~317~^33.6^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10168~^~326~^0.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10168~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10168~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10168~^~421~^79.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10168~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~430~^0.0^0^^~4~^~BFSN~^~10062~^^^^^^^^^~01/01/2003~ -~10168~^~454~^5.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10169~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10169~^~317~^41.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10169~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10169~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10169~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10169~^~421~^101.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10169~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~430~^0.0^0^^~4~^~BFYN~^~10152~^^^^^^^^^~01/01/2003~ -~10169~^~454~^6.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10170~^~317~^22.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10170~^~401~^0.3^4^0.2^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~10171~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10171~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~10171~^~401~^3.2^6^0.8^~1~^^^^^^^^^^^~12/01/1992~ -~10173~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10173~^~317~^23.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10173~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10173~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~10173~^~421~^75.4^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10173~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10173~^~454~^2.9^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~ -~10174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10174~^~317~^2.7^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10174~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10175~^~317~^3.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10175~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10176~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10176~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10176~^~317~^43.7^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10176~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10176~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10176~^~421~^110.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10176~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~430~^0.0^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10176~^~454~^4.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10177~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10177~^~317~^38.7^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10177~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10177~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10177~^~421~^96.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10177~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10177~^~454~^3.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10178~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~317~^36.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~326~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~421~^80.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~454~^3.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~317~^40.8^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~421~^102.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~454~^4.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~317~^36.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~421~^89.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~454~^3.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10181~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10181~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10181~^~317~^42.0^6^1.7^~1~^~A~^^^1^37.9^48.8^5^37.5^46.4^~2, 3~^~04/01/2010~ -~10181~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10181~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~10181~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10181~^~421~^104.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10181~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10181~^~454~^4.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10182~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10182~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10182~^~317~^16.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10182~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10182~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10182~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10182~^~421~^69.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10182~^~430~^0.0^0^^~4~^~BFYN~^~10183~^^^^^^^^^~01/01/2003~ -~10182~^~454~^4.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10183~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10183~^~317~^19.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10183~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10183~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10183~^~401~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~10183~^~421~^85.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10183~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10183~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10183~^~454~^5.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10184~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10184~^~317~^22.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10184~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10184~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10184~^~401~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~10184~^~421~^68.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10184~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10184~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10184~^~454~^4.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10185~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~10185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10185~^~317~^26.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10185~^~326~^0.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10185~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10185~^~401~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~10185~^~421~^81.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10185~^~430~^0.0^0^^~4~^~BFYN~^~10184~^^^^^^^^^~01/01/2003~ -~10185~^~454~^5.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~10186~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~317~^40.5^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~421~^100.7^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~454~^3.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10187~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10187~^~317~^28.4^0^^~4~^~PAE~^^^^^^^^^^~12/01/1997~ -~10187~^~401~^0.5^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10188~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~317~^42.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~401~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~421~^80.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~454~^3.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10189~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~317~^47.8^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~421~^73.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~454~^3.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10192~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~317~^30.7^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~326~^1.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~10192~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~421~^65.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~317~^32.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~326~^1.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~328~^1.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~421~^78.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~454~^3.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10194~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~10194~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10194~^~317~^32.0^0^^~1~^~PAK~^^^^^^^^^^~12/01/1997~ -~10194~^~326~^1.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10194~^~328~^1.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10194~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10195~^~317~^33.4^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10195~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10196~^~317~^44.0^0^^~1~^~PAK~^^^^^^^^^^~12/01/1997~ -~10196~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10197~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10197~^~317~^41.9^0^^~4~^~PIE~^^^^^^^^^^~12/01/1997~ -~10197~^~326~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10197~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10197~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2003~ -~10197~^~421~^88.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10197~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~430~^0.0^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10197~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10198~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10198~^~317~^40.3^0^^~1~^~PAK~^^^^^^^^^^~12/01/1997~ -~10198~^~326~^1.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10198~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10198~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~10199~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10199~^~317~^35.4^5^3.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10199~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10199~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10199~^~401~^0.3^3^0.2^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10200~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10200~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10200~^~317~^45.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10200~^~326~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10200~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10200~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~421~^96.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10200~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~430~^0.0^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10200~^~454~^3.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10201~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10201~^~317~^47.3^5^4.7^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10201~^~401~^0.3^3^4.9e-02^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10202~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10202~^~317~^45.4^0^^~4~^~BFYN~^^^^^^^^^^~12/01/1997~ -~10202~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10202~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10202~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~421~^95.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10202~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~430~^0.0^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10202~^~454~^3.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10203~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10203~^~317~^43.2^5^5.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10203~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10203~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10203~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10204~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~317~^32.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10204~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~421~^81.4^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~454~^4.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~317~^46.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~326~^1.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~328~^1.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~421~^108.2^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10206~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~317~^34.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~326~^1.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10206~^~328~^1.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10206~^~401~^0.3^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~421~^3.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~454~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10207~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10207~^~317~^34.8^12^3.9^~1~^~A~^^^1^12.4^52.5^11^26.1^43.4^~2, 3~^~03/01/2007~ -~10207~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10207~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~10207~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10207~^~421~^87.3^0^^~4~^~BFPN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10207~^~454~^4.5^0^^~4~^~BFPN~^~10084~^^^^^^^^^~03/01/2007~ -~10208~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10208~^~317~^48.6^12^5.1^~1~^~A~^^^1^20.0^75.8^11^37.1^60.0^~2, 3~^~03/01/2007~ -~10208~^~326~^1.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10208~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10208~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~421~^113.5^0^^~4~^~BFPN~^~10085~^^^^^^^^^~03/01/2007~ -~10208~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~454~^3.7^0^^~4~^~BFPN~^~10085~^^^^^^^^^~03/01/2007~ -~10209~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10209~^~317~^47.6^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~326~^1.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10209~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10209~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~421~^100.3^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~454~^3.9^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10210~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~317~^36.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~326~^0.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~421~^77.3^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~454~^3.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~317~^45.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~326~^0.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~421~^87.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10211~^~454~^3.4^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~317~^45.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10212~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10212~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~421~^105.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10212~^~454~^4.1^0^^~4~^~PIK~^^^^^^^^^^~12/01/2006~ -~10213~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~317~^44.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~421~^96.9^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10213~^~454~^3.8^0^^~4~^~PIK~^^^^^^^^^^~12/01/2006~ -~10214~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10214~^~317~^37.4^12^3.1^~1~^~A~^^^1^19.9^51.7^11^30.4^44.2^~2, 3~^~02/01/2011~ -~10214~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10214~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10214~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10214~^~421~^78.4^0^^~4~^~BFPN~^~10032~^^^^^^^^^~02/01/2011~ -~10214~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10214~^~454~^3.0^0^^~4~^~BFPN~^~10032~^^^^^^^^^~02/01/2011~ -~10215~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10215~^~317~^46.1^12^4.0^~1~^~A~^^^1^25.2^64.3^11^37.2^54.8^~2, 3~^~01/01/2011~ -~10215~^~326~^0.4^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10215~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~421~^88.3^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~454~^3.4^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10216~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10216~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10216~^~317~^45.9^12^3.8^~1~^~A~^^^1^25.5^66.5^11^37.3^54.4^~2, 3~^~01/01/2011~ -~10216~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10216~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10216~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10216~^~421~^107.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10216~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10216~^~430~^0.0^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10216~^~454~^4.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10217~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10217~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10217~^~317~^45.9^12^4.7^~1~^~A~^^^1^20.3^70.3^11^35.4^56.2^~2, 3~^~01/01/2011~ -~10217~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10217~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10217~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10217~^~421~^99.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10217~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~430~^0.0^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10217~^~454~^3.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~10218~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~317~^30.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~421~^79.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~454~^3.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10219~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~10219~^~317~^24.6^5^4.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10219~^~401~^0.7^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10220~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10220~^~317~^35.4^5^5.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~10220~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10220~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10220~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~421~^88.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10220~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10220~^~430~^0.0^0^^~4~^~BFSN~^~10188~^^^^^^^^^~01/01/2003~ -~10220~^~454~^3.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~10221~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10221~^~317~^47.7^0^^~1~^~PAK~^^^^^^^^^^~12/01/1997~ -~10221~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10222~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~317~^38.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10222~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10222~^~421~^88.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~454~^4.3^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10223~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10223~^~317~^51.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~10223~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10224~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~317~^26.5^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10224~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~421~^57.3^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~454~^3.1^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10225~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10225~^~317~^27.7^12^4.6^~1~^~A~^^^1^12.8^57.8^11^17.4^38.0^~2, 3~^~03/01/2007~ -~10225~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10225~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~10225~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10225~^~421~^59.5^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~430~^0.0^0^^~4~^~BFSN~^~10066~^^^^^^^^^~07/01/2010~ -~10225~^~454~^3.1^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10226~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~317~^31.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~401~^0.1^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~421~^50.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10226~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10226~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~317~^41.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~401~^0.1^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~421~^63.4^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~454~^2.5^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10228~^~317~^32.4^0^^~4~^~PAE~^^^^^^^^^^~12/01/1997~ -~10228~^~401~^0.6^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~10229~^~317~^45.4^0^^~4~^~PAE~^^^^^^^^^^~12/01/1997~ -~10229~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10851~^~401~^1.6^10^0.4^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10852~^~401~^2.7^7^0.2^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10853~^~401~^1.4^9^0.5^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10854~^~401~^1.7^5^0.1^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10855~^~401~^1.7^5^1.6^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10856~^~401~^1.3^5^0.1^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~401~^1.4^6^0.1^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10858~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~317~^37.7^4^8.3^~1~^~A~^^^1^21.0^59.0^3^10.9^64.3^~2, 3~^~02/01/2003~ -~10858~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~421~^98.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10858~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~454~^2.4^4^0.2^~1~^~A~^^^1^1.8^3.0^3^1.5^3.1^~2, 3~^~03/01/2006~ -~10859~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~317~^35.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10860~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~317~^59.0^4^6.1^~1~^~A~^^^1^41.5^70.0^3^39.5^78.4^~2, 3~^~02/01/2003~ -~10860~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~421~^119.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10860~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~1, 4~^~02/01/2003~ -~10860~^~430~^0.1^4^4.8e-02^~1~^~A~^^^1^0.0^0.2^3^-7.7e-02^0.2^~1, 2, 3~^~02/01/2003~ -~10860~^~454~^3.4^4^0.2^~1~^~A~^^^1^2.9^3.9^3^2.7^4.1^~2, 3~^~03/01/2006~ -~10861~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~317~^65.1^9^3.8^~1~^~A~^^^1^46.4^93.1^4^54.1^76.0^~2, 3~^~05/01/2012~ -~10861~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~421~^107.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~10861~^~454~^8.4^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~317~^50.7^9^2.2^~1~^~A~^^^1^28.3^75.4^3^43.2^58.2^~2, 3~^~05/01/2013~ -~10862~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~328~^0.4^1^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~10862~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~421~^89.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~10862~^~430~^0.0^4^2.5e-02^~1~^~A~^^^1^0.0^0.1^3^-5.5e-02^0.1^~1, 2, 3~^~05/01/2013~ -~10862~^~454~^8.1^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10863~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~317~^40.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~317~^5.7^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~421~^6.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10864~^~430~^0.0^0^^~4~^~BFSN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~317~^27.5^2^^~1~^~A~^^^1^14.5^40.5^1^^^^~03/01/2006~ -~10865~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~421~^83.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10865~^~428~^2.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~454~^5.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~317~^28.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~421~^63.8^0^^~4~^~BFNN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~430~^0.0^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~454~^3.8^0^^~4~^~BFNN~^~10865~^^^^^^^^^~03/01/2006~ -~10867~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~317~^26.2^3^4.3^~1~^~A~^^^1^18.5^33.5^2^7.5^44.8^~2, 3~^~03/01/2006~ -~10867~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~421~^91.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10867~^~428~^5.6^2^^~1~^~A~^^^1^4.7^6.5^1^^^^~03/01/2006~ -~10867~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10867~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10867~^~454~^2.9^2^^~1~^~A~^^^1^2.2^3.5^1^^^^~03/01/2006~ -~10868~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~317~^30.0^5^8.7^~1~^~A~^^^1^15.8^59.5^4^5.6^54.3^~2, 3~^~03/01/2006~ -~10868~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~421~^90.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~428~^3.4^4^0.7^~1~^~A~^^^1^2.1^5.5^3^0.9^5.7^~2, 3~^~03/01/2006~ -~10868~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~454~^5.5^4^0.9^~1~^~A~^^^1^3.2^7.0^3^2.5^8.4^~2, 3~^~03/01/2006~ -~10869~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~317~^24.5^3^11.1^~1~^~A~^^^1^11.3^46.8^2^-23.6^72.7^~2, 3~^~03/01/2006~ -~10869~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~421~^92.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~428~^3.2^2^^~1~^~A~^^^1^1.7^4.7^1^^^^~03/01/2006~ -~10869~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10869~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10869~^~454~^3.9^2^^~1~^~A~^^^1^3.7^4.1^1^^^^~03/01/2006~ -~10870~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~317~^32.6^2^^~1~^~A~^^^1^31.0^34.3^1^^^^~03/01/2006~ -~10870~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10870~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10870~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~421~^64.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10870~^~428~^4.5^2^^~1~^~A~^^^1^4.0^4.9^1^^^^~03/01/2006~ -~10870~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10870~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10870~^~454~^4.5^2^^~1~^~A~^^^1^4.4^4.5^1^^^^~03/01/2006~ -~10871~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~317~^29.1^2^^~1~^~A~^^^1^25.2^33.0^1^^^^~03/01/2006~ -~10871~^~326~^0.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10871~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10871~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~421~^63.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10871~^~428~^4.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~429~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10871~^~454~^4.4^2^^~1~^~A~^^^1^3.2^5.6^1^^^^~03/01/2006~ -~10872~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~317~^29.4^2^^~1~^~A~^^^1^29.0^29.8^1^^^^~03/01/2006~ -~10872~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10872~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10872~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~421~^64.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10872~^~428~^4.3^2^^~1~^~A~^^^1^3.6^5.1^1^^^^~03/01/2006~ -~10872~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10872~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10872~^~454~^3.2^2^^~1~^~A~^^^1^2.9^3.6^1^^^^~03/01/2006~ -~10873~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~317~^49.9^3^3.2^~1~^~A~^^^1^45.0^56.0^2^36.0^63.8^~2, 3~^~03/01/2006~ -~10873~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~421~^110.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~428~^9.6^2^^~1~^~A~^^^1^6.8^12.4^1^^^^~03/01/2006~ -~10873~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10873~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10873~^~454~^3.0^2^^~1~^~A~^^^1^2.0^4.0^1^^^^~03/01/2006~ -~10874~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~317~^48.7^3^2.1^~1~^~A~^^^1^46.3^53.0^2^39.4^57.9^~2, 3~^~03/01/2006~ -~10874~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~421~^104.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10874~^~428~^7.1^2^^~1~^~A~^^^1^4.2^9.9^1^^^^~03/01/2006~ -~10874~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10874~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10874~^~454~^2.9^2^^~1~^~A~^^^1^1.7^4.1^1^^^^~03/01/2006~ -~10875~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~317~^51.0^2^^~1~^~A~^^^1^45.3^56.8^1^^^^~03/01/2006~ -~10875~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~421~^138.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~428~^5.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~317~^41.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10876~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10876~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~421~^86.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10876~^~428~^3.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~454~^3.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~317~^43.4^3^13.9^~1~^~A~^^^1^15.5^58.3^2^-16.6^103.3^~2, 3~^~03/01/2006~ -~10877~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~421~^94.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10877~^~428~^6.1^2^^~1~^~A~^^^1^1.9^10.2^1^^^^~03/01/2006~ -~10877~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10877~^~430~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^~1~^~03/01/2006~ -~10877~^~454~^3.6^2^^~1~^~A~^^^1^2.3^4.9^1^^^^~03/01/2006~ -~10878~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~317~^39.3^4^1.5^~1~^~A~^^^1^37.3^44.0^3^34.2^44.3^~2, 3~^~03/01/2006~ -~10878~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10878~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10878~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~421~^79.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10878~^~428~^4.0^4^0.7^~1~^~A~^^^1^2.5^6.0^3^1.7^6.3^~2, 3~^~03/01/2006~ -~10878~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~454~^4.8^4^0.8^~1~^~A~^^^1^3.7^7.2^3^2.1^7.4^~2, 3~^~03/01/2006~ -~10879~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~317~^34.2^4^1.0^~1~^~A~^^^1^31.3^36.3^3^30.7^37.6^~2, 3~^~03/01/2006~ -~10879~^~326~^0.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10879~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10879~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~421~^74.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10879~^~428~^4.1^4^0.6^~1~^~A~^^^1^2.3^5.7^3^1.8^6.2^~2, 3~^~03/01/2006~ -~10879~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~430~^0.0^4^2.5e-02^~1~^~A~^^^1^0.0^0.1^3^-5.5e-02^0.1^~1, 2, 3~^~03/01/2006~ -~10879~^~454~^4.3^4^1.0^~1~^~A~^^^1^2.4^7.2^3^0.9^7.5^~2, 3~^~03/01/2006~ -~10880~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~317~^35.1^4^1.5^~1~^~A~^^^1^32.0^39.2^3^30.1^40.1^~2, 3~^~03/01/2006~ -~10880~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10880~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10880~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~421~^71.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10880~^~428~^3.5^4^0.7^~1~^~A~^^^1^2.1^5.3^3^0.9^5.9^~2, 3~^~03/01/2006~ -~10880~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~454~^3.5^4^0.5^~1~^~A~^^^1^2.2^4.7^3^1.8^5.1^~2, 3~^~03/01/2006~ -~10881~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~317~^45.3^3^11.0^~1~^~A~^^^1^27.5^65.5^2^-2.1^92.7^~2, 3~^~03/01/2006~ -~10881~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~421~^103.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~428~^4.8^2^^~1~^~A~^^^1^3.6^6.0^1^^^^~03/01/2006~ -~10881~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10881~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~10881~^~454~^5.3^2^^~1~^~A~^^^1^2.0^8.6^1^^^^~03/01/2006~ -~10882~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~317~^37.0^4^7.8^~1~^~A~^^^1^19.5^57.3^3^11.9^62.0^~2, 3~^~03/01/2006~ -~10882~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10882~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10882~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~421~^82.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10882~^~428~^3.2^4^0.8^~1~^~A~^^^1^1.5^4.9^3^0.6^5.8^~2, 3~^~03/01/2006~ -~10882~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~454~^6.3^4^1.8^~1~^~A~^^^1^2.7^9.9^3^0.2^12.2^~2, 3~^~03/01/2006~ -~10883~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~317~^32.7^3^5.6^~1~^~A~^^^1^26.8^44.0^2^8.3^57.0^~2, 3~^~03/01/2006~ -~10883~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10883~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10883~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~421~^79.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10883~^~428~^2.4^3^0.7^~1~^~A~^^^1^0.9^3.4^2^-0.9^5.7^~2, 3~^~03/01/2006~ -~10883~^~429~^0.0^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~430~^0.0^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~454~^7.8^3^1.7^~1~^~A~^^^1^4.4^9.7^2^0.4^15.1^~2, 3~^~03/01/2006~ -~10884~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~317~^34.5^4^6.9^~1~^~A~^^^1^19.3^52.5^3^12.2^56.6^~2, 3~^~03/01/2006~ -~10884~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10884~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10884~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~421~^75.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10884~^~428~^3.3^4^0.6^~1~^~A~^^^1^1.9^4.8^3^1.1^5.3^~2, 3~^~03/01/2006~ -~10884~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~454~^5.5^4^1.6^~1~^~A~^^^1^2.5^9.7^3^0.3^10.7^~2, 3~^~03/01/2006~ -~10885~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~317~^40.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~421~^76.9^0^^~4~^~BFNN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~430~^0.0^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~454~^2.4^0^^~4~^~BFNN~^~10867~^^^^^^^^^~03/01/2006~ -~10886~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~317~^35.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~421~^69.7^0^^~4~^~BFNN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~430~^0.0^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~454~^4.2^0^^~4~^~BFNN~^~10868~^^^^^^^^^~03/01/2006~ -~10887~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~317~^40.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~421~^81.3^0^^~4~^~BFNN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~430~^0.0^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~454~^3.1^0^^~4~^~BFNN~^~10877~^^^^^^^^^~03/01/2006~ -~10888~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~317~^13.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~421~^72.8^0^^~4~^~BFNN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~430~^0.0^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~454~^3.1^0^^~4~^~BFNN~^~10869~^^^^^^^^^~03/01/2006~ -~10889~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~317~^28.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~421~^85.7^0^^~4~^~BFNN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~430~^0.0^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~454~^4.4^0^^~4~^~BFNN~^~10881~^^^^^^^^^~03/01/2006~ -~10890~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~317~^41.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~421~^102.2^0^^~4~^~BFNN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~430~^0.0^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~454~^2.8^0^^~4~^~BFNN~^~10873~^^^^^^^^^~03/01/2006~ -~10891~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~317~^52.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~421~^97.3^0^^~4~^~BFNN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~430~^0.0^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~454~^2.7^0^^~4~^~BFNN~^~10874~^^^^^^^^^~03/01/2006~ -~10892~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~317~^46.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~421~^125.3^0^^~4~^~BFNN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~430~^0.0^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~454~^1.7^0^^~4~^~BFNN~^~10875~^^^^^^^^^~03/01/2006~ -~10893~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~317~^37.9^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~326~^0.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10893~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10893~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~421~^78.2^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~430~^0.0^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~454~^3.4^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10894~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~317~^16.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~326~^1.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10894~^~328~^1.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10894~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~317~^15.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~326~^1.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10895~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10895~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~421~^30.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~317~^26.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~428~^6.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~317~^25.3^3^3.3^~1~^~A~^^^1^20.8^31.8^2^10.9^39.6^~2, 3~^~03/01/2006~ -~10899~^~326~^1.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10899~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10899~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~421~^112.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10899~^~428~^2.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~454~^7.3^3^2.3^~1~^~A~^^^1^2.9^10.8^2^-2.7^17.4^~2, 3~^~03/01/2006~ -~10900~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~317~^34.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10900~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10900~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~421~^75.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~428~^3.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~454~^5.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~317~^36.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10901~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~421~^75.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~454~^3.3^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~317~^43.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~421~^116.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~454~^1.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10903~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~317~^46.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~421~^86.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10903~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10903~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~317~^36.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~421~^88.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~317~^29.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~421~^64.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~428~^4.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~454~^3.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~317~^13.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~421~^68.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~454~^2.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~317~^24.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~421~^67.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~317~^36.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~421~^72.4^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10908~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10908~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~454~^2.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10909~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~317~^34.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~421~^70.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~428~^3.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~454~^3.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~317~^32.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~421~^63.2^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~454~^3.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~317~^35.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~421~^68.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10911~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10911~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~454~^2.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~317~^26.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~421~^57.8^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~428~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10912~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10912~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~454~^3.5^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10913~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~317~^26.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~421~^74.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~428~^2.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~454~^4.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~317~^24.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~421~^73.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~428~^4.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~454~^2.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~317~^28.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~421~^81.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~428~^3.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~454~^5.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~317~^38.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~421~^77.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~428~^4.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~454~^4.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~317~^33.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~421~^72.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~428~^4.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~454~^4.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~317~^39.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~421~^80.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~428~^5.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~454~^3.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~317~^37.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~421~^75.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~428~^3.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~454~^3.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~317~^23.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~421~^84.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~428~^2.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~454~^3.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~317~^32.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~421~^64.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~428~^4.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~454~^4.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~317~^29.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~421~^63.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~428~^4.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~429~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~454~^4.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~317~^46.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~421~^98.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~428~^8.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~454~^2.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~317~^44.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~421~^91.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~428~^6.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~454~^2.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~317~^48.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~421~^127.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~428~^5.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~454~^1.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~317~^36.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~421~^81.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~428~^3.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~454~^6.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~317~^41.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10927~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~421~^83.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~428~^3.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~454~^3.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10928~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~317~^32.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~328~^0.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~421~^79.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~428~^2.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~454~^7.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~317~^23.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10929~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10929~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~421~^92.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~428~^1.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~454~^6.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10931~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~317~^24.5^3^3.2^~1~^~A~^^^1^20.0^30.9^2^10.2^38.6^~2, 3~^~04/01/2006~ -~10931~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~421~^105.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~428~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~454~^7.3^3^1.4^~1~^~A~^^^1^4.5^9.5^2^0.9^13.5^~2, 3~^~04/01/2006~ -~10932~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~317~^21.4^3^3.1^~1~^~A~^^^1^16.8^27.5^2^7.6^35.0^~2, 3~^~04/01/2006~ -~10932~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~421~^91.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10932~^~428~^1.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~454~^6.3^3^1.5^~1~^~A~^^^1^3.3^8.3^2^-0.2^12.7^~2, 3~^~04/01/2006~ -~10933~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~317~^24.4^3^3.5^~1~^~A~^^^1^19.5^31.3^2^9.1^39.6^~2, 3~^~04/01/2006~ -~10933~^~326~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~10933~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10933~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~421~^106.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10933~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~454~^7.2^3^2.2^~1~^~A~^^^1^2.7^9.8^2^-2.5^16.9^~2, 3~^~04/01/2006~ -~10934~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~317~^21.2^3^2.8^~1~^~A~^^^1^17.3^26.8^2^8.8^33.5^~2, 3~^~04/01/2006~ -~10934~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~421~^90.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10934~^~428~^1.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10934~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~454~^6.0^3^1.7^~1~^~A~^^^1^2.5^8.1^2^-1.5^13.5^~2, 3~^~04/01/2006~ -~10935~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~317~^23.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~326~^1.0^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10935~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~421~^93.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~428~^1.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~454~^6.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~317~^20.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~421~^82.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~428~^1.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~454~^5.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~317~^24.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~326~^1.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~328~^1.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~421~^102.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~428~^1.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~430~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~454~^6.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10938~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~317~^22.3^3^3.3^~1~^~A~^^^1^17.0^28.5^2^7.8^36.7^~2, 3~^~04/01/2006~ -~10938~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~421~^93.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10938~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~454~^6.1^3^1.4^~1~^~A~^^^1^3.1^7.6^2^-0.3^12.5^~2, 3~^~04/01/2006~ -~10939~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~317~^21.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~421~^86.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~428~^1.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~430~^0.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~454~^5.6^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10940~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~317~^30.6^12^4.8^~1~^~A~^^^1^13.5^67.3^11^19.8^41.4^~2, 3~^~03/01/2007~ -~10940~^~326~^2.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~10940~^~328~^2.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10940~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~421~^71.0^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10940~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~454~^3.4^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10942~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~317~^11.1^4^1.3^~1~^~A~^^^1^8.5^14.5^3^6.8^15.4^~2, 3~^~05/01/2007~ -~10942~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~421~^34.3^4^1.8^~1~^~AS~^^^1^29.0^37.9^3^28.3^40.2^~2, 3~^~05/01/2007~ -~10942~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~454~^1.7^4^0.2^~1~^~A~^^^1^1.2^2.3^3^0.9^2.4^~2, 3~^~05/01/2007~ -~10943~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~317~^45.7^12^3.5^~1~^~A~^^^1^21.0^63.0^11^37.8^53.6^~2, 3~^~05/01/2007~ -~10943~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10943~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10943~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~421~^73.5^0^^~4~^~BFPN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~454~^3.6^0^^~4~^~BFPN~^~10061~^^^^^^^^^~05/01/2007~ -~10944~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~317~^35.2^12^3.3^~1~^~A~^^^1^14.4^50.7^11^27.7^42.7^~2, 3~^~05/01/2007~ -~10944~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10944~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10944~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~421~^78.7^0^^~4~^~BFPN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~454~^2.9^0^^~4~^~BFPN~^~10060~^^^^^^^^^~05/01/2007~ -~10945~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~317~^45.3^12^4.7^~1~^~A~^^^1^21.5^69.2^11^34.7^55.8^~2, 3~^~05/01/2007~ -~10945~^~326~^1.0^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~10945~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~10945~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~421~^112.8^0^^~4~^~BFPN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~454~^3.7^0^^~4~^~BFPN~^~10085~^^^^^^^^^~05/01/2007~ -~10946~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~317~^28.8^12^3.1^~1~^~A~^^^1^13.9^44.0^11^21.8^35.7^~2, 3~^~05/01/2007~ -~10946~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2011~ -~10946~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~10946~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~421~^76.9^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~454~^4.0^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10947~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~317~^55.6^3^6.9^~1~^~A~^^^1^43.6^67.5^2^25.9^85.3^~2, 3~^~06/01/2014~ -~10947~^~326~^0.6^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10947~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10947~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~421~^78.8^0^^~4~^~BFPN~^~10066~^^^^^^^^^~06/01/2014~ -~10947~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~454~^4.1^0^^~4~^~BFPN~^~10066~^^^^^^^^^~06/01/2014~ -~10948~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~317~^47.9^3^8.4^~1~^~A~^^^1^39.1^64.8^2^11.4^84.3^~2, 3~^~06/01/2014~ -~10948~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10948~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10948~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~421~^56.1^0^^~4~^~BFPN~^~10066~^^^^^^^^^~06/01/2014~ -~10948~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10949~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~317~^42.8^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~326~^0.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~421~^53.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~454~^0.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~317~^52.9^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~326~^0.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~328~^0.6^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~421~^76.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~454~^4.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10951~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~317~^34.7^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~326~^0.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10951~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10951~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~421~^77.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~454~^2.9^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~317~^45.4^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~326~^0.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10952~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~421~^73.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~317~^26.6^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10953~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10953~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~421~^71.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~454~^3.7^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~317~^42.3^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~326~^1.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~328~^1.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~10954~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10954~^~421~^106.2^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~454~^3.5^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10955~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~317~^20.6^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~421~^84.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~428~^1.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~454~^5.7^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10956~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~317~^32.1^6^6.2^~1~^~A~^^^1^19.0^51.7^5^16.1^48.0^~4~^~02/01/2008~ -~10956~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~421~^88.4^4^4.3^~1~^~AS~^^^1^80.4^98.1^3^74.5^102.3^~4~^~02/01/2008~ -~10956~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~454~^7.1^4^2.3^~1~^~A~^^^1^3.4^13.7^3^-0.3^14.6^~4~^~02/01/2008~ -~10957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~317~^25.2^6^5.1^~1~^~A~^^^1^14.1^40.2^5^12.0^38.4^~4~^~02/01/2008~ -~10957~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~421~^71.9^4^4.0^~1~^~AS~^^^1^63.7^79.7^3^58.9^84.7^~4~^~02/01/2008~ -~10957~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~454~^6.3^4^2.0^~1~^~A~^^^1^3.0^11.8^3^-0.1^12.6^~4~^~02/01/2008~ -~10958~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~317~^25.8^6^4.9^~1~^~A~^^^1^14.3^39.9^5^13.1^38.3^~4~^~02/01/2008~ -~10958~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~421~^88.9^4^9.5^~1~^~AS~^^^1^75.2^116.5^3^58.3^119.3^~4~^~02/01/2008~ -~10958~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~454~^4.8^4^1.9^~1~^~A~^^^1^2.1^10.3^3^-1.3^10.8^~4~^~02/01/2008~ -~10959~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~317~^33.7^6^6.6^~1~^~A~^^^1^19.0^53.7^5^16.5^50.7^~4~^~02/01/2008~ -~10959~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~421~^99.0^4^2.2^~1~^~AS~^^^1^92.4^102.8^3^91.7^106.2^~4~^~02/01/2008~ -~10959~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~454~^4.0^4^1.2^~1~^~A~^^^1^2.1^7.4^3^8.2e-02^7.9^~4~^~02/01/2008~ -~10960~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~317~^27.0^4^8.4^~1~^~A~^^^1^17.2^52.3^3^6.8e-02^53.8^~4~^~03/01/2008~ -~10960~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~421~^111.9^4^4.9^~1~^~AS~^^^1^100.3^122.8^3^96.1^127.5^~4~^~03/01/2008~ -~10960~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~454~^5.1^4^1.5^~1~^~A~^^^1^2.9^9.5^3^0.1^9.9^~4~^~03/01/2008~ -~10961~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~317~^21.5^4^6.5^~1~^~A~^^^1^14.5^41.2^3^0.6^42.4^~4~^~03/01/2008~ -~10961~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~421~^84.6^4^3.8^~1~^~AS~^^^1^75.0^92.7^3^72.3^96.7^~4~^~03/01/2008~ -~10961~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~454~^5.1^4^1.5^~1~^~A~^^^1^2.7^9.2^3^0.2^9.9^~4~^~03/01/2008~ -~10962~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~317~^37.7^6^7.0^~1~^~A~^^^1^20.7^58.9^5^19.5^55.9^~4~^~03/01/2008~ -~10962~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~421~^106.6^4^2.0^~1~^~AS~^^^1^104.1^112.7^3^100.1^113.0^~4~^~03/01/2008~ -~10962~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~454~^6.3^4^1.9^~1~^~A~^^^1^3.3^11.6^3^0.1^12.4^~4~^~03/01/2008~ -~10963~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~317~^26.4^6^5.1^~1~^~A~^^^1^15.4^44.3^5^13.3^39.5^~4~^~03/01/2008~ -~10963~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~421~^79.9^4^2.8^~1~^~AS~^^^1^73.7^85.4^3^70.9^88.9^~4~^~03/01/2008~ -~10963~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~454~^6.7^4^1.6^~1~^~A~^^^1^3.8^11.3^3^1.4^11.9^~4~^~03/01/2008~ -~10972~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~317~^30.2^8^5.4^~1~^~AR~^^^^15.3^42.5^^^^^~05/01/2009~ -~10972~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~10972~^~328~^0.4^2^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10972~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~421~^61.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~454~^5.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~317~^34.8^7^5.6^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10973~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10973~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~421~^71.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~454~^6.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~317~^38.0^8^6.2^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~326~^0.8^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10974~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~421~^79.9^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~454~^7.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~317~^42.4^8^6.3^~1~^~AR~^^^^24.1^56.7^^^^^~05/01/2009~ -~10975~^~326~^0.5^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~10975~^~328~^0.5^2^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~421~^89.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~454~^8.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~317~^46.7^7^6.6^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10976~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~421~^99.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~454~^9.8^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~317~^37.9^8^7.2^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~326~^0.8^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10977~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~421~^76.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~454~^5.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~317~^43.5^8^7.2^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10978~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~421~^85.6^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~454~^7.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~317~^49.1^7^7.5^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10979~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10979~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~421~^95.2^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~454~^9.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10980~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~317~^33.3^12^3.2^~1~^~A~^^^1^15.1^49.5^11^26.0^40.5^~2, 3~^~04/01/2010~ -~10980~^~326~^0.9^0^^~4~^~BFFN~^~10032~^^^^^^^^^~04/01/2010~ -~10980~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10980~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~421~^71.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10980~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~430~^0.0^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10980~^~454~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~ -~10981~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~317~^33.7^12^3.7^~1~^~A~^^^1^17.8^56.5^11^25.5^41.9^~2, 3~^~05/01/2010~ -~10981~^~326~^1.2^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~ -~10981~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~10981~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~421~^83.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10981~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~454~^3.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~ -~10982~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~317~^39.1^12^2.9^~1~^~A~^^^1^18.2^52.3^11^32.6^45.6^~2, 3~^~01/01/2011~ -~10982~^~326~^0.4^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~ -~10982~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10982~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~421~^73.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10982~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~454~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10983~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~317~^45.6^12^4.2^~1~^~A~^^^1^18.2^68.1^11^36.1^54.9^~2, 3~^~01/01/2011~ -~10983~^~326~^0.5^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10983~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~421~^94.8^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~454~^3.7^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10984~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~317~^47.2^12^3.3^~1~^~A~^^^1^20.0^62.6^11^39.8^54.6^~2, 3~^~01/01/2011~ -~10984~^~326~^0.6^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~ -~10984~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~421~^74.3^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~454~^2.7^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10985~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~317~^47.4^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~326~^1.1^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~ -~10985~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10985~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~421~^79.1^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~454~^2.9^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10986~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~317~^42.9^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~326~^1.1^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10986~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~421~^79.1^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~454~^2.9^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10987~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~317~^48.5^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~326~^0.7^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10987~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10987~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~421~^100.3^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~454~^3.9^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10988~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~317~^44.6^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~326~^0.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~328~^0.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~421~^71.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~454~^2.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~317~^37.1^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~421~^70.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~454~^2.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~317~^43.7^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~326~^0.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~328~^0.5^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~421~^91.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~317~^44.7^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~326~^1.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~328~^1.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~421~^75.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~454~^2.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~317~^39.5^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~326~^1.2^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~328~^1.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~421~^74.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~454~^2.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~317~^43.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~326~^0.9^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~328~^0.9^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~421~^91.8^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~430~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~454~^3.6^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10994~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10998~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~317~^50.4^3^3.2^~1~^~A~^^^1^37.9^55.1^1^9.2^91.5^~2, 3~^~08/01/2015~ -~10998~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~328~^0.2^1^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~10998~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~421~^104.8^0^^~4~^~BFPN~^~07028~^^^^^^^^^~04/01/2013~ -~10998~^~428~^4.9^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~10998~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~10998~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~10998~^~454~^4.7^0^^~4~^~BFPN~^~07028~^^^^^^^^^~04/01/2013~ -~11001~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~11001~^~291~^1.9^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11001~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11001~^~401~^8.2^10^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~421~^14.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11001~^~430~^30.5^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11001~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11003~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11003~^~401~^43.3^5^8.7^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~430~^1140.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~11004~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11004~^~401~^41.1^5^8.3^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11005~^~401~^1.1^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11006~^~401~^0.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11007~^~291~^5.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11007~^~401~^11.7^11^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~421~^34.4^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~430~^14.8^0^^~4~^~BFZN~^~11008~^^^^^^^^^~06/01/2005~ -~11007~^~454~^0.2^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11008~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~11008~^~291~^5.7^0^^~4~^~BFSN~^~11007~^^^^^^^^^~08/01/2015~ -~11008~^~317~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11008~^~401~^7.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~421~^34.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11008~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~430~^14.8^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11008~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11009~^~291~^3.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11009~^~401~^5.3^3^1.3^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11010~^~291~^4.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11010~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11010~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~421~^29.2^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~430~^12.6^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~454~^0.1^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11011~^~291~^2.1^4^^~1~^^^^^^^^^^^~12/01/2002~ -~11011~^~317~^2.3^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11011~^~401~^5.6^4^0.2^~1~^~A~^^^1^5.2^6.2^3^4.9^6.3^~2, 3~^~03/01/2006~ -~11011~^~421~^16.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11011~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11011~^~430~^41.6^4^2.7^~1~^~A~^^^1^34.3^47.0^3^33.0^50.2^~2, 3~^~12/01/2002~ -~11011~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11012~^~291~^2.0^4^8.5e-02^~1~^~A~^^^1^1.8^2.2^3^1.7^2.2^~2, 3~^~12/01/2002~ -~11012~^~313~^21.9^13^17.9^~1~^~A~^^^2^4.0^39.9^1^-206.1^250.0^~4~^~01/01/2006~ -~11012~^~317~^6.1^2^^~1~^~A~^^^1^1.7^10.5^1^^^^~12/01/2002~ -~11012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11012~^~401~^7.7^4^0.7^~1~^~A~^^^1^6.0^9.5^3^5.2^10.1^~2, 3~^~12/01/2002~ -~11012~^~421~^26.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11012~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11012~^~430~^50.6^4^4.3^~1~^~A~^^^1^42.8^62.7^3^36.7^64.4^~2, 3~^~12/01/2002~ -~11012~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11013~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11013~^~291~^1.0^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11013~^~401~^16.5^120^0.4^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11015~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11015~^~291~^1.6^0^^~4~^~BFSN~^~11012~^^^^^^^^^~04/01/2013~ -~11015~^~317~^1.7^15^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11015~^~401~^18.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~421~^21.4^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11015~^~430~^41.3^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~454~^0.7^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11018~^~291~^1.9^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11018~^~317~^1.7^15^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11018~^~401~^31.8^35^2.6^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11019~^~291~^1.6^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11019~^~317~^3.9^38^0.7^~6~^~JA~^^^7^0.0^22.0^37^2.3^5.4^~4~^~12/01/2002~ -~11019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11019~^~401~^24.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~421~^20.9^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11019~^~430~^80.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~454~^0.7^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11022~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11022~^~401~^88.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11023~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11023~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11023~^~401~^55.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11023~^~430~^163.1^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11024~^~291~^2.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11024~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11024~^~401~^84.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11025~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11025~^~401~^33.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~421~^10.8^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11025~^~430~^4.8^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11026~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11026~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11026~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~11026~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11027~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11027~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11027~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~11028~^~291~^1.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11028~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11028~^~401~^1.1^7^4.2e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~421~^0.0^0^^~4~^~BFSN~^~11026~^^^^^^^^^~03/01/2007~ -~11028~^~430~^0.0^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11029~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11029~^~401~^38.7^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11030~^~401~^35.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11031~^~291~^4.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11031~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11031~^~401~^23.4^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~421~^40.0^0^^~4~^~BFSN~^~11304~^^^^^^^^^~03/01/2007~ -~11031~^~430~^5.6^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11032~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11032~^~291~^5.4^0^^~4~^~BFSN~^~11031~^^^^^^^^^~08/01/2015~ -~11032~^~317~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11032~^~401~^10.1^12^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~421~^44.1^0^^~4~^~BFSY~^~11031~^^^^^^^^^~03/01/2007~ -~11032~^~430~^6.2^0^^~4~^~BFSN~^~11031~^^^^^^^^^~12/01/2002~ -~11033~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11033~^~291~^3.6^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11033~^~401~^7.3^117^0.4^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11037~^~291~^5.5^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~317~^1.7^3^0.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11037~^~401~^19.3^15^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~421~^37.6^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11037~^~430~^5.3^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11038~^~291~^5.3^0^^~4~^~BFSN~^~11037~^^^^^^^^^~08/01/2015~ -~11038~^~313~^7.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11038~^~317~^0.6^43^0.1^~1~^^^^5^0.0^6.0^28^0.2^0.9^~2, 3~^~12/01/2002~ -~11038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11038~^~401~^12.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~421~^36.3^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11038~^~430~^5.1^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11039~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11039~^~291~^6.0^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11039~^~317~^2.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11039~^~401~^8.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11040~^~291~^4.8^0^^~4~^~BFSN~^~11039~^^^^^^^^^~08/01/2015~ -~11040~^~317~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11040~^~401~^5.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~421~^37.2^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11040~^~430~^5.2^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11043~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11043~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11043~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11043~^~401~^13.2^8^1.8^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~421~^14.4^0^^~4~^~BFZN~^~11001~^^^^^^^^^~03/01/2007~ -~11043~^~430~^33.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11044~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~11044~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11044~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11044~^~401~^11.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~421~^9.9^0^^~4~^~BFSY~^~11043~^^^^^^^^^~03/01/2007~ -~11044~^~430~^22.7^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11045~^~291~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11045~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11045~^~401~^16.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11046~^~401~^18.8^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11047~^~401~^17.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~291~^5.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11048~^~401~^1.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~291~^5.4^0^^~4~^~BFSN~^~11048~^^^^^^^^^~08/01/2015~ -~11049~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11049~^~401~^0.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11050~^~291~^3.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~317~^2.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11050~^~401~^3.1^12^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~421~^13.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11050~^~430~^8.0^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11052~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11052~^~291~^2.7^4^5.0e-02^~6~^~JA~^^^2^2.6^3.4^3^2.4^2.8^~2, 3~^~04/01/2009~ -~11052~^~313~^19.0^36^6.6^~1~^~A~^^^4^3.8^62.2^9^4.0^33.9^~4~^~01/01/2006~ -~11052~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11052~^~401~^12.2^9^0.7^~6~^~JA~^^^2^5.9^16.3^5^10.2^14.1^~2, 3~^~04/01/2009~ -~11052~^~421~^15.3^0^^~4~^~BFSY~^~11061~^^^^^^^^^~02/01/2007~ -~11052~^~430~^43.0^0^^~4~^~BFSN~^~11060~^^^^^^^^^~08/01/2015~ -~11052~^~454~^0.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2007~ -~11053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11053~^~291~^3.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~317~^0.2^18^0.1^~1~^^^^3^0.0^3.0^17^-0.1^0.5^~4~^~08/01/2002~ -~11053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11053~^~401~^9.7^9^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~421~^16.9^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11053~^~430~^47.9^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11053~^~454~^0.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11054~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11054~^~291~^1.5^29^7.4e-02^~1~^^^^2^1.0^2.3^24^1.3^1.6^~2, 3~^~04/01/1996~ -~11054~^~317~^0.0^20^0.0^~1~^^^^1^0.0^0.0^^^^~2, 3~^~04/01/2011~ -~11054~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11054~^~401~^2.2^33^0.2^~6~^~JA~^^^3^1.0^5.5^28^1.7^2.6^~2, 3~^~04/01/2011~ -~11054~^~430~^29.0^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11056~^~291~^1.9^2^^~1~^~A~^^^1^1.6^2.2^1^^^^~08/01/2014~ -~11056~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11056~^~325~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11056~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11056~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11056~^~401~^2.8^6^0.4^~1~^~A~^^^2^0.7^4.8^1^-2.2^7.8^~1, 2, 3~^~07/01/2014~ -~11056~^~421~^14.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11056~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~11056~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~11056~^~430~^38.9^2^^~1~^~A~^^^1^36.7^41.0^1^^^^~03/01/2006~ -~11056~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11058~^~291~^1.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11058~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11058~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11058~^~401~^3.1^22^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11060~^~291~^2.6^3^0.1^~6~^~JA~^^^2^2.5^2.9^2^2.0^3.2^~2, 3~^~03/01/2008~ -~11060~^~317~^0.6^11^0.1^~1~^~A~^^^2^0.4^2.2^3^4.0e-03^1.1^~1, 2, 3~^~03/01/2008~ -~11060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11060~^~401~^12.9^80^1.4^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11060~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11060~^~430~^44.8^2^^~1~^~A~^^^1^41.0^48.6^1^^^^~03/01/2008~ -~11061~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11061~^~291~^3.0^8^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~317~^0.4^40^0.2^~1~^^^^1^0.0^4.0^20^-0.1^0.8^~4~^~03/01/2006~ -~11061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11061~^~401~^4.1^7^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~421~^13.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11061~^~430~^38.1^0^^~4~^~BFSN~^~11060~^^^^^^^^^~08/01/2015~ -~11061~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11062~^~291~^3.4^3^0.2^~1~^~A~^^^1^2.9^3.8^2^2.2^4.4^~2, 3~^~03/01/2008~ -~11062~^~317~^1.0^3^0.5^~1~^~A~^^^1^0.4^2.2^2^-1.4^3.5^~1, 2, 3~^~03/01/2008~ -~11062~^~401~^11.0^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11062~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11062~^~430~^57.7^2^^~1~^~A~^^^1^48.0^67.5^1^^^^~03/01/2008~ -~11063~^~291~^3.4^4^7.5e-02^~1~^~A~^^^1^3.2^3.5^3^3.1^3.6^~2, 3~^~04/01/2009~ -~11063~^~401~^7.3^4^0.7^~1~^~A~^^^1^6.0^9.2^3^5.0^9.5^~2, 3~^~04/01/2009~ -~11080~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11080~^~291~^2.8^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11080~^~401~^4.9^5^1.5^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~421~^6.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11080~^~430~^0.2^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~454~^128.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11081~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11081~^~291~^2.0^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~11081~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11081~^~401~^3.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~421~^6.3^0^^~4~^~BFSY~^~11080~^^^^^^^^^~02/01/2007~ -~11081~^~430~^0.2^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11082~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11082~^~291~^1.2^20^4.3e-02^~1~^^^^3^0.8^1.5^19^1.0^1.2^~4~^~09/01/2002~ -~11082~^~313~^26.3^11^0.3^~1~^~A~^^^2^26.0^26.6^1^22.4^30.1^~4~^~01/01/2006~ -~11082~^~317~^0.1^38^3.7e-02^~1~^^^^4^0.0^1.0^37^-2.2e-02^0.1^~4~^~09/01/2002~ -~11082~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11082~^~401~^2.8^168^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11082~^~421~^7.2^0^^~4~^~BFSN~^~11084~^^^^^^^^^~01/01/2007~ -~11082~^~430~^0.2^3^^~1~^^^^^^^^^^~1~^~01/01/2007~ -~11082~^~454~^228.1^0^^~4~^~BFSN~^~11084~^^^^^^^^^~01/01/2007~ -~11084~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11084~^~291~^1.8^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11084~^~313~^26.3^11^0.3^~1~^~A~^^^2^26.0^26.6^1^22.4^30.1^~4~^~01/01/2006~ -~11084~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11084~^~401~^4.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~421~^7.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11084~^~430~^0.2^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~454~^255.5^2^^~1~^~A~^^^1^177.1^334.0^1^^^^~07/01/2007~ -~11086~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11086~^~291~^3.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11086~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11086~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11086~^~401~^30.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~421~^0.4^0^^~4~^~BFSY~^~11087~^^^^^^^^^~02/01/2007~ -~11086~^~430~^400.0^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11087~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11087~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11087~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11087~^~401~^24.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~421~^0.5^0^^~4~^~BFSN~^~11790~^^^^^^^^^~02/01/2007~ -~11087~^~430~^484.0^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~454~^0.3^0^^~4~^~BFSN~^~11790~^^^^^^^^^~02/01/2007~ -~11088~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11088~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11088~^~401~^33.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~291~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11089~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11089~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11089~^~401~^19.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11090~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11090~^~291~^2.6^13^0.2^~6~^~JA~^^^5^2.2^3.2^3^1.7^3.4^~4~^~04/01/2003~ -~11090~^~317~^2.5^8^0.1^~6~^~JA~^^^2^1.4^3.9^4^2.2^2.8^~2, 3~^~04/01/2003~ -~11090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11090~^~401~^89.2^19^3.9^~11~^~JO~^^^2^85.2^93.2^1^38.6^139.7^~4~^~04/01/2003~ -~11090~^~421~^18.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11090~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~430~^101.6^8^3.8^~1~^~A~^^^2^76.6^136.4^4^91.1^112.0^~2, 3~^~04/01/2003~ -~11090~^~454~^0.1^2^^~1~^~A~^^^2^^^^^^^~03/01/2006~ -~11091~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11091~^~291~^3.3^4^0.5^~6~^~JA~^^^3^^^^^^^~10/01/2002~ -~11091~^~313~^4.0^9^^~1~^~A~^^^1^4.0^4.0^0^^^~4~^~01/01/2006~ -~11091~^~317~^1.6^4^0.1^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11091~^~401~^64.9^2^^~1~^~A~^^^1^^^^^^^~05/01/2003~ -~11091~^~421~^40.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11091~^~429~^0.0^4^0.0^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~430~^141.1^4^15.8^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11092~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11092~^~291~^3.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~317~^2.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11092~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11092~^~401~^56.4^32^2.8^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~421~^14.9^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11092~^~430~^81.1^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11093~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11093~^~291~^3.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11093~^~317~^0.7^20^0.2^~1~^^^^1^0.0^3.0^19^0.1^1.1^~4~^~10/01/2002~ -~11093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11093~^~401~^40.1^6^5.5^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~421~^16.2^0^^~4~^~BFSN~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~430~^88.1^0^^~4~^~BFSN~^~11092~^^^^^^^^^~02/01/2007~ -~11094~^~291~^3.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~317~^1.9^9^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11094~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11094~^~401~^68.3^39^2.8^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~430~^101.4^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11095~^~291~^3.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11095~^~317~^1.9^9^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11095~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11095~^~401~^40.1^6^5.5^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~421~^16.2^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~430~^88.1^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11096~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~291~^2.7^4^0.1^~1~^~A~^^^2^2.4^3.2^2^1.9^3.4^~2, 3~^~12/01/2002~ -~11096~^~317~^1.0^2^^~1~^~A~^^^1^0.8^1.2^1^^^^~12/01/2002~ -~11096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11096~^~401~^20.2^4^5.3^~1~^~A~^^^2^3.3^28.6^2^-2.6^43.0^~2, 3~^~12/01/2002~ -~11096~^~421~^18.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11096~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~11096~^~430~^224.0^4^23.5^~1~^~A~^^^2^165.0^267.4^2^122.6^325.3^~2, 3~^~12/01/2002~ -~11096~^~454~^0.3^2^^~1~^~A~^^^2^0.1^0.5^^^^^~03/01/2006~ -~11097~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~291~^2.8^2^^~1~^~A~^^^1^2.8^2.8^1^^^^~12/01/2002~ -~11097~^~317~^1.3^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11097~^~401~^37.0^2^^~1~^~A~^^^1^35.0^39.0^1^^^^~12/01/2002~ -~11097~^~421~^33.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11097~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~12/01/2002~ -~11097~^~430~^256.0^2^^~1~^~A~^^^1^218.2^293.8^1^^^^~12/01/2002~ -~11097~^~454~^0.2^5^3.1e-02^~1~^~A~^^^2^0.1^0.3^4^6.5e-02^0.2^~4~^~03/01/2006~ -~11098~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11098~^~291~^3.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11098~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11098~^~401~^85.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~421~^19.1^0^^~4~^~BFSN~^~11109~^^^^^^^^^~02/01/2007~ -~11098~^~430~^177.0^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11098~^~454~^0.8^0^^~4~^~BFSN~^~11109~^^^^^^^^^~02/01/2007~ -~11099~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11099~^~291~^2.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11099~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11099~^~401~^62.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~421~^40.6^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11099~^~430~^140.3^0^^~4~^~BFSN~^~11098~^^^^^^^^^~11/01/2002~ -~11099~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11100~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11100~^~291~^3.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11100~^~401~^74.1^28^3.6^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~421~^17.6^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11100~^~430~^188.7^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11101~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11101~^~291~^4.1^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11101~^~317~^0.6^18^0.2^~1~^~A~^^^7^0.0^4.0^17^1.7e-02^1.1^~4~^~11/01/2002~ -~11101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11101~^~401~^45.7^3^4.1^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~421~^18.1^0^^~4~^~BFSY~^~11098~^^^^^^^^^~02/01/2007~ -~11101~^~430~^193.5^2^^~1~^^^^1^98.0^289.0^1^^^^~02/01/2007~ -~11101~^~454~^0.7^0^^~4~^~BFSN~^~11098~^^^^^^^^^~02/01/2007~ -~11104~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11104~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11104~^~401~^3.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~421~^11.7^0^^~4~^~BFSN~^~11353~^^^^^^^^^~02/01/2007~ -~11104~^~430~^1.6^0^^~4~^~BFSN~^~11353~^^^^^^^^^~12/01/2002~ -~11104~^~454~^0.2^0^^~4~^~BFSN~^~11353~^^^^^^^^^~02/01/2007~ -~11105~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11105~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11105~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11105~^~401~^2.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~421~^14.3^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~ -~11105~^~430~^2.0^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11105~^~454~^0.2^0^^~4~^~BFSN~^~11104~^^^^^^^^^~02/01/2007~ -~11106~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11106~^~401~^31.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11107~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11107~^~401~^18.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11108~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11108~^~401~^11.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11109~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11109~^~291~^2.5^2^^~1~^^^^1^2.2^2.7^1^^^^~03/01/2006~ -~11109~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~317~^0.3^20^0.1^~1~^^^^4^0.0^3.0^14^-0.1^0.6^~2, 3~^~03/01/2006~ -~11109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11109~^~401~^36.6^4^3.3^~1~^~A~^^^1^29.2^45.1^3^25.8^47.3^~2, 3~^~03/01/2006~ -~11109~^~421~^10.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11109~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~03/01/2006~ -~11109~^~430~^76.0^11^6.0^~11~^~JO~^^^3^56.6^131.4^3^56.7^95.1^~2, 3~^~03/01/2006~ -~11109~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11110~^~291~^1.9^5^3.8e-02^~6~^~JA~^^^2^1.8^2.1^3^1.7^2.0^~2, 3~^~03/01/2006~ -~11110~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11110~^~317~^0.6^5^0.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11110~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11110~^~401~^37.5^4^1.4^~1~^~A~^^^1^34.2^40.5^3^32.9^41.9^~2, 3~^~03/01/2006~ -~11110~^~421~^20.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11110~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~03/01/2006~ -~11110~^~430~^108.7^4^18.0^~1~^~A~^^^1^57.5^136.4^3^51.2^166.2^~2, 3~^~03/01/2006~ -~11110~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11112~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11112~^~291~^2.1^4^4.8e-02^~1~^~A~^^^1^2.1^2.3^3^1.9^2.2^~2, 3~^~06/01/2006~ -~11112~^~317~^0.6^2^^~1~^~A~^^^1^0.5^0.7^1^^^^~12/01/2002~ -~11112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11112~^~401~^57.0^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11112~^~421~^17.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11112~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~11/01/2002~ -~11112~^~430~^38.2^4^3.2^~1~^~A~^^^1^32.1^45.0^3^28.0^48.4^~2, 3~^~11/01/2002~ -~11112~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11113~^~291~^2.6^4^0.1^~1~^~A~^^^1^2.3^3.0^3^2.1^3.0^~2, 3~^~12/01/2002~ -~11113~^~317~^2.3^2^^~1~^~A~^^^1^1.6^3.0^1^^^^~12/01/2002~ -~11113~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11113~^~401~^34.4^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11113~^~421~^21.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11113~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11113~^~430~^47.6^4^7.0^~1~^~A~^^^1^33.9^60.2^3^25.3^69.9^~2, 3~^~12/01/2002~ -~11113~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11114~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11114~^~291~^3.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~317~^0.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11114~^~401~^31.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~421~^12.3^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11114~^~430~^68.8^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~454~^0.5^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11115~^~291~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11115~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11115~^~401~^17.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11116~^~291~^1.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11116~^~401~^45.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~421~^6.4^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11116~^~430~^45.5^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11116~^~454~^0.3^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11117~^~291~^1.0^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11117~^~401~^26.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~421~^12.1^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~11117~^~430~^34.0^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~454~^0.2^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~11118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~291~^1.6^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~317~^0.5^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~401~^0.0^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~421~^15.5^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~430~^43.6^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11119~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11119~^~291~^1.2^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11119~^~401~^27.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~421~^7.6^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11119~^~430~^42.9^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~454~^0.3^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11120~^~291~^1.7^0^^~4~^~BFSN~^~11110~^^^^^^^^^~08/01/2001~ -~11120~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11120~^~401~^15.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~291~^1.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~317~^0.2^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11122~^~401~^2.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~291~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11123~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11123~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11123~^~401~^1.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11124~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~11124~^~291~^2.8^4^^~1~^~A~^^^1^2.7^3.0^^^^~2~^~11/01/2003~ -~11124~^~313~^3.2^21^0.4^~1~^~A~^^^3^2.0^5.6^6^2.1^4.3^~4~^~03/01/2006~ -~11124~^~317~^0.1^39^3.8e-02^~1~^^^^4^0.0^2.0^3^-5.8e-02^0.1^~2~^~03/01/2003~ -~11124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11124~^~401~^5.9^21^1.1^~6~^~JA~^^^2^0.9^9.2^1^-8.4^20.2^~2~^~03/01/2003~ -~11124~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11124~^~429~^0.0^4^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~03/01/2003~ -~11124~^~430~^13.2^4^^~1~^~A~^^^1^11.4^14.8^^^^~2~^~03/01/2003~ -~11124~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11125~^~291~^3.0^4^4.1e-02^~1~^~A~^^^1^2.9^3.1^3^2.8^3.1^~2, 3~^~04/01/2003~ -~11125~^~313~^47.5^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~317~^0.7^4^0.2^~1~^~A~^^^1^0.2^1.1^3^3.6e-02^1.3^~2, 3~^~04/01/2003~ -~11125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11125~^~401~^3.6^4^0.9^~1~^~A~^^^1^2.0^5.8^3^0.6^6.5^~2, 3~^~04/01/2003~ -~11125~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11125~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~430~^13.7^4^1.6^~1~^~A~^^^1^10.8^18.2^3^8.5^18.8^~2, 3~^~04/01/2003~ -~11125~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11126~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11126~^~291~^1.8^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11126~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11126~^~401~^2.0^122^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~421~^6.3^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~ -~11126~^~430~^9.8^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11128~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11128~^~291~^1.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11128~^~401~^2.7^6^6.2e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~421~^6.3^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11128~^~430~^9.8^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11128~^~454~^0.1^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11130~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1986~ -~11130~^~291~^3.3^5^7.7e-02^~1~^~A~^^^1^3.1^3.6^4^3.1^3.5^~2, 3~^~01/01/2003~ -~11130~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11130~^~401~^2.5^5^0.1^~1~^~A~^^^1^2.0^3.0^4^1.9^3.0^~2, 3~^~01/01/2003~ -~11130~^~421~^7.5^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11130~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~01/01/2003~ -~11130~^~430~^17.6^2^^~1~^~A~^^^1^16.9^18.4^1^^^^~01/01/2003~ -~11130~^~454~^0.3^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~ -~11131~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11131~^~291~^3.3^3^0.1^~1~^~A~^^^1^3.0^3.5^2^2.6^3.9^~2, 3~^~01/01/2003~ -~11131~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11131~^~401~^2.3^3^0.1^~1~^~A~^^^1^2.2^2.5^2^1.9^2.7^~2, 3~^~01/01/2003~ -~11131~^~421~^8.6^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11131~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11131~^~430~^13.6^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11131~^~454~^0.1^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11134~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11134~^~291~^1.8^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11134~^~401~^20.6^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~421~^23.7^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11134~^~430~^1.9^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11134~^~454~^0.4^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~11135~^~291~^2.0^4^0.1^~6~^~JA~^^^2^1.9^2.5^4^1.7^2.3^~4~^~11/01/2008~ -~11135~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11135~^~401~^48.2^28^3.7^~6~^~JA~^^^2^46.4^61.6^23^40.4^56.0^~2, 3~^~12/01/2008~ -~11135~^~421~^44.3^0^^~4~^~BFSN~^~11136~^^^^^^^^^~12/01/2008~ -~11135~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~1, 4~^~12/01/2008~ -~11135~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~1, 4~^~12/01/2008~ -~11135~^~430~^15.5^18^0.2^~11~^~JO~^^^5^12.0^23.0^3^14.6^16.3^~2, 3~^~11/01/2008~ -~11136~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11136~^~291~^2.3^6^^~1~^^^^1^2.0^2.5^^^^~2, 3~^~03/01/2006~ -~11136~^~317~^0.6^18^0.4^~1~^^^^3^0.0^7.0^4^-0.5^1.7^~2, 3~^~03/01/2006~ -~11136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11136~^~401~^44.3^8^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~421~^39.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11136~^~430~^13.8^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11137~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11137~^~291~^2.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~317~^0.8^4^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11137~^~401~^48.8^34^1.6^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~421~^41.9^0^^~4~^~BFSY~^~11762~^^^^^^^^^~02/01/2007~ -~11137~^~430~^14.8^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11138~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11138~^~291~^2.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11138~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11138~^~401~^31.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~421~^33.5^0^^~4~^~BFSN~^~11136~^^^^^^^^^~01/01/2007~ -~11138~^~430~^11.9^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~454~^0.1^0^^~4~^~BFSN~^~11136~^^^^^^^^^~01/01/2007~ -~11141~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11141~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11141~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11141~^~401~^8.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~421~^9.0^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11141~^~430~^41.0^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11142~^~291~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11142~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11142~^~401~^3.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11143~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11143~^~291~^1.6^8^0.1^~1~^~A~^^^2^1.2^2.6^3^1.1^2.0^~2, 3~^~09/01/2002~ -~11143~^~313~^4.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11143~^~317~^0.4^36^0.1^~6~^~JA~^^^3^0.0^5.0^35^-1.4e-02^0.7^~4~^~09/01/2002~ -~11143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11143~^~401~^3.1^8^1.1^~1~^~A~^^^2^0.2^7.4^6^0.1^5.9^~1, 2, 3~^~03/01/2006~ -~11143~^~421~^6.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11143~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~430~^29.3^9^3.2^~11~^~JO~^^^3^20.6^46.8^5^20.9^37.7^~2, 3~^~08/01/2002~ -~11143~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^1^^^^~03/01/2006~ -~11144~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11144~^~291~^1.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11144~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11144~^~401~^6.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~421~^7.9^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11144~^~430~^37.8^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11145~^~291~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11145~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11145~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11145~^~401~^19.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11147~^~291~^1.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11147~^~401~^30.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~421~^18.0^0^^~4~^~BFSN~^~11096~^^^^^^^^^~01/01/2007~ -~11147~^~430~^830.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~11147~^~454~^0.3^0^^~4~^~BFSN~^~11096~^^^^^^^^^~01/01/2007~ -~11148~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11148~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11148~^~401~^18.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~421~^28.7^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11148~^~430~^327.3^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~454~^0.1^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11149~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11149~^~291~^1.7^3^0.5^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11149~^~401~^7.7^3^1.3^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~421~^9.2^0^^~4~^~BFSN~^~11477~^^^^^^^^^~03/01/2007~ -~11149~^~430~^4.1^0^^~4~^~BFSN~^~11477~^^^^^^^^^~03/01/2007~ -~11150~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11150~^~291~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11150~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11150~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11150~^~401~^8.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~421~^10.5^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~430~^4.7^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11151~^~291~^3.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11151~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11151~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11151~^~401~^2.8^4^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11152~^~291~^4.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11152~^~401~^24.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11152~^~430~^297.6^0^^~4~^~BFSN~^~11213~^^^^^^^^^~12/01/2002~ -~11154~^~291~^1.5^0^^~4~^~BFSN~^~11226~^^^^^^^^^~04/01/2009~ -~11154~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11154~^~401~^5.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~11156~^~291~^2.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11156~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11156~^~401~^58.1^3^14.1^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~421~^5.2^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11156~^~430~^212.7^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11157~^~291~^3.0^4^^~6~^~JA~^^^1^3.0^3.0^^^^~2~^~07/01/2003~ -~11157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11157~^~401~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11157~^~430~^350.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~11158~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11158~^~291~^2.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11158~^~401~^23.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11158~^~430~^142.7^0^^~4~^~BFSN~^~11251~^^^^^^^^^~12/01/2002~ -~11161~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11161~^~291~^4.0^9^8.4e-02^~6~^~JA~^^^2^3.6^5.1^3^3.7^4.2^~2, 3~^~08/01/2012~ -~11161~^~317~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11161~^~401~^35.3^3^5.0^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~421~^23.2^0^^~4~^~BFSN~^~11096~^^^^^^^^^~01/01/2007~ -~11161~^~430~^437.1^2^^~1~^~A~^^^1^435.0^439.3^1^^^^~08/01/2012~ -~11161~^~454~^0.4^0^^~4~^~BFSN~^~11096~^^^^^^^^^~01/01/2007~ -~11162~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11162~^~291~^4.0^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11162~^~317~^0.5^19^0.1^~1~^^^^4^0.0^5.0^12^0.1^0.8^~2, 3~^~12/01/2002~ -~11162~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11162~^~401~^18.2^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~421~^38.4^0^^~4~^~BFSN~^~11097~^^^^^^^^^~08/01/2012~ -~11162~^~430~^406.6^2^^~11~^~JO~^^^2^373.1^440.0^1^^^^~08/01/2012~ -~11162~^~454~^0.2^0^^~4~^~BFSN~^~11097~^^^^^^^^^~08/01/2012~ -~11163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11163~^~291~^3.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11163~^~317~^1.4^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11163~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11163~^~401~^40.0^12^3.8^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11164~^~291~^2.8^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11164~^~317~^1.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11164~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11164~^~401~^26.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~421~^45.1^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11164~^~430~^623.2^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~454~^0.2^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11165~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2001~ -~11165~^~291~^2.8^2^^~1~^^^^1^2.8^2.8^^^^^~08/01/2002~ -~11165~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2001~ -~11165~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11165~^~401~^27.0^3^12.9^~1~^^^^1^10.5^52.5^2^-28.6^82.6^~2, 3~^~08/01/2002~ -~11165~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11165~^~430~^310.0^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~11167~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11167~^~291~^2.0^2^^~6~^~JA~^^^2^1.9^2.7^1^^^^~04/01/2009~ -~11167~^~317~^0.6^269^1.0e-03^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11167~^~401~^6.8^7^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11167~^~421~^23.0^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~430~^0.3^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11168~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2007~ -~11168~^~291~^2.4^3^5.8e-02^~6~^~JA~^^^2^2.3^2.8^2^2.1^2.6^~2, 3~^~04/01/2009~ -~11168~^~317~^0.2^23^0.1^~1~^^^^4^0.0^3.0^14^-0.1^0.5^~2, 3~^~04/01/2009~ -~11168~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11168~^~401~^5.5^9^0.3^~6~^~JA~^^^2^3.0^6.2^7^4.5^6.3^~2, 3~^~04/01/2009~ -~11168~^~421~^29.1^0^^~4~^~BFSN~^~11179~^^^^^^^^^~04/01/2009~ -~11168~^~430~^0.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11170~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11170~^~291~^1.7^23^8.6e-02^~1~^^^^4^1.0^2.5^18^1.4^1.8^~2, 3~^~04/01/1996~ -~11170~^~313~^18.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11170~^~317~^0.5^26^0.1^~1~^^^^4^0.0^2.0^20^0.2^0.8^~2, 3~^~03/01/2011~ -~11170~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11170~^~401~^2.6^27^0.1^~6~^~JA~^^^4^0.4^7.0^18^2.2^3.0^~2, 3~^~03/01/2011~ -~11170~^~421~^16.6^0^^~4~^~BFSN~^~11174~^^^^^^^^^~03/01/2011~ -~11170~^~430~^0.0^0^^~4~^~BFSN~^~11174~^^^^^^^^^~09/01/2002~ -~11172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11172~^~291~^2.0^10^0.1^~1~^~A~^^^1^1.5^2.4^5^1.6^2.2^~2, 3~^~04/01/2015~ -~11172~^~317~^0.6^0^^~4~^~BFSN~^~11170~^^^^^^^^^~08/01/2014~ -~11172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11172~^~401~^1.8^13^0.3^~1~^~A~^^^2^0.8^3.7^3^0.8^2.8^~2, 3~^~04/01/2015~ -~11172~^~421~^17.8^0^^~4~^~BFSN~^~11170~^^^^^^^^^~04/01/2015~ -~11172~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11172~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11172~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2016~ -~11174~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11174~^~291~^1.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~313~^28.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11174~^~317~^0.4^42^0.1^~1~^^^^5^0.0^5.0^41^0.1^0.6^~4~^~09/01/2002~ -~11174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11174~^~401~^4.6^324^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~421~^20.3^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11174~^~430~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11176~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11176~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11176~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11176~^~401~^8.1^56^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~421~^22.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11176~^~430~^0.0^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11177~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~291~^1.7^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11177~^~401~^1.7^4^0.2^~1~^~A~^^^1^1.3^2.2^3^1.0^2.4^~2, 3~^~04/01/2011~ -~11178~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11178~^~291~^2.1^5^6.3e-02^~6~^~JA~^^^2^2.0^2.4^1^1.5^2.6^~2, 3~^~03/01/2008~ -~11178~^~313~^14.6^6^12.2^~1~^~A~^^^1^0.9^39.0^2^-38.0^67.2^~4~^~03/01/2008~ -~11178~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11178~^~401~^6.4^68^1.5^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~421~^24.0^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~430~^0.3^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2008~ -~11179~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11179~^~291~^2.4^7^0.1^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~317~^0.7^20^0.2^~1~^^^^1^0.0^4.0^19^0.1^1.2^~2, 3~^~03/01/2006~ -~11179~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11179~^~401~^3.5^4^0.6^~1~^^^^1^2.2^5.2^3^1.3^5.5^~2, 3~^~03/01/2006~ -~11179~^~421~^22.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11179~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11180~^~291~^2.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11180~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11180~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11180~^~401~^7.2^53^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~430~^0.4^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11181~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11181~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11181~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11181~^~401~^4.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~430~^0.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11182~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~11182~^~291~^2.6^2^^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~421~^30.3^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~430~^0.4^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11184~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11184~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11184~^~401~^8.8^10^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11190~^~401~^38.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11191~^~291~^5.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11191~^~317~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11191~^~401~^2.5^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11192~^~291~^5.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11192~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11192~^~401~^2.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~421~^32.9^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11192~^~430~^26.6^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11195~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11195~^~291~^5.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11195~^~317~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11195~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11195~^~401~^4.0^21^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~11196~^~291~^6.4^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11196~^~317~^3.4^3^1.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11196~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11196~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~421~^45.6^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11196~^~430~^36.8^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11197~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11197~^~291~^3.3^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11197~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11197~^~401~^33.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~421~^22.0^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~430~^31.5^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11198~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11198~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11198~^~401~^17.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11199~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11199~^~401~^18.8^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11200~^~401~^16.2^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11201~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11201~^~401~^36.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11202~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11202~^~401~^18.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11203~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11203~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11203~^~401~^69.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~421~^19.5^0^^~4~^~BFSN~^~11251~^^^^^^^^^~02/01/2007~ -~11203~^~430~^541.9^0^^~4~^~BFSN~^~11591~^^^^^^^^^~01/01/2003~ -~11203~^~454~^0.2^0^^~4~^~BFSN~^~11251~^^^^^^^^^~02/01/2007~ -~11204~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11204~^~291~^0.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11204~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11204~^~401~^23.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~421~^13.8^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11204~^~430~^383.4^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11205~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11205~^~291~^0.5^1^^~1~^^^^1^0.5^0.5^0^^^^~11/01/2002~ -~11205~^~313~^1.3^11^0.6^~1~^~A~^^^2^0.7^2.0^1^-6.9^9.6^~4~^~01/01/2006~ -~11205~^~317~^0.3^2^^~1~^~A~^^^1^0.3^0.3^0^^^^~11/01/2002~ -~11205~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11205~^~401~^2.8^4^^~1~^~A~^^^1^2.8^2.8^0^^^~4~^~11/01/2002~ -~11205~^~421~^6.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11205~^~429~^0.0^4^^~1~^~A~^^^1^0.0^0.0^0^^^~1, 4~^~11/01/2002~ -~11205~^~430~^16.4^4^^~1~^~A~^^^1^16.4^16.4^0^^^~4~^~11/01/2002~ -~11205~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11206~^~291~^0.7^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11206~^~313~^1.3^11^0.6^~1~^~A~^^^2^0.7^2.0^1^-6.9^9.6^~4~^~03/01/2006~ -~11206~^~317~^0.1^41^6.8e-02^~6~^~JA~^^^6^0.0^0.3^1^-0.7^0.9^~2, 3~^~10/01/2002~ -~11206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11206~^~401~^3.2^4^0.7^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~421~^5.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11206~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~430~^7.2^6^0.4^~11~^~JO~^^^3^1.7^15.0^1^1.4^12.9^~2, 3~^~10/01/2002~ -~11206~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11207~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11207~^~291~^3.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11207~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11207~^~401~^35.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~421~^35.3^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~430~^778.4^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11208~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11208~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11208~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11208~^~401~^18.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~421~^25.0^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~430~^551.4^0^^~4~^~BFSN~^~11207~^^^^^^^^^~05/01/2007~ -~11209~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11209~^~291~^3.0^6^0.2^~6~^~JA~^^^3^2.2^3.8^5^2.3^3.7^~4~^~08/01/2012~ -~11209~^~317~^0.3^3^0.0^~1~^^^^1^0.3^0.3^2^0.2^0.2^~4~^~12/01/1992~ -~11209~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11209~^~401~^2.2^6^0.2^~1~^^^^2^1.4^3.2^5^1.5^2.9^~4~^~01/01/2003~ -~11209~^~421~^6.9^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11209~^~430~^3.5^0^^~4~^~BFPN~^~11210~^^^^^^^^^~01/01/2003~ -~11210~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11210~^~291~^2.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11210~^~317~^0.1^21^5.4e-02^~6~^~JA~^^^8^0.0^0.8^7^-7.4e-02^0.1^~2~^~01/01/2003~ -~11210~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11210~^~401~^1.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~421~^9.4^0^^~4~^~BFSN~^~11209~^^^^^^^^^~03/01/2007~ -~11210~^~430~^2.9^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11211~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11211~^~291~^4.8^2^^~1~^~A~^^^1^4.4^5.2^1^^^^~04/01/2006~ -~11211~^~401~^9.7^2^^~1~^~A~^^^1^7.8^11.5^1^^^^~04/01/2006~ -~11211~^~421~^56.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11211~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~11211~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~11211~^~430~^31.4^2^^~1~^~A~^^^1^29.1^33.7^1^^^^~04/01/2006~ -~11211~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11212~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11212~^~291~^5.2^2^^~1~^~A~^^^1^4.8^5.6^1^^^^~04/01/2006~ -~11212~^~317~^0.8^0^^~4~^~BFSN~^~11973~^^^^^^^^^~11/01/2014~ -~11212~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11212~^~401~^6.1^2^^~1~^~A~^^^1^5.6^6.6^1^^^^~04/01/2006~ -~11212~^~421~^56.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11212~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~11212~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~11212~^~430~^26.7^2^^~1~^~A~^^^1^24.6^28.7^1^^^^~04/01/2006~ -~11212~^~454~^4.5^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11213~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11213~^~291~^3.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11213~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11213~^~401~^6.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~421~^16.8^0^^~4~^~BFSN~^~11253~^^^^^^^^^~03/01/2007~ -~11213~^~430~^231.0^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11214~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~291~^2.8^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~313~^6.7^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~317~^0.2^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~401~^3.3^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~421~^15.4^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~430~^211.9^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11215~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11215~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~317~^14.2^5^3.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11215~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11215~^~401~^31.2^11^1.6^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~421~^23.2^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~430~^1.7^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11216~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11216~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11216~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11216~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11216~^~401~^5.0^1^^~1~^^^^^5.0^5.0^^^^^~01/01/2003~ -~11216~^~421~^28.8^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11216~^~430~^0.1^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11218~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11218~^~291~^0.5^0^^~4~^~BFSN~^~11482~^^^^^^^^^~08/01/2011~ -~11218~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11218~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11218~^~401~^10.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11219~^~291~^1.2^0^^~4~^~BFSN~^~11483~^^^^^^^^^~08/01/2011~ -~11219~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11219~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11219~^~401~^8.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11220~^~291~^1.1^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11220~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11220~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11220~^~401~^12.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~430~^0.7^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11221~^~291~^2.9^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11221~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11221~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11221~^~401~^5.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~430~^1.7^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11222~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11222~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11222~^~401~^51.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11223~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11223~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11223~^~401~^31.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11223~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11224~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11224~^~291~^3.3^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11224~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11224~^~401~^12.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~421~^19.1^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~430~^18.1^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11225~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11225~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11225~^~401~^5.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11226~^~291~^1.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11226~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11226~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~421~^30.0^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11226~^~430~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11228~^~317~^11.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11228~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11228~^~401~^0.6^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~317~^45.3^0^^~4~^~BFSN~^~11268~^^^^^^^^^~07/01/2006~ -~11230~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11230~^~401~^1.4^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11231~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11231~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11232~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11232~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11232~^~401~^33.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11232~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11233~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11233~^~291~^4.1^2^^~1~^~A~^^^1^4.0^4.2^1^^^^~10/01/2016~ -~11233~^~317~^0.9^0^^~4~^~T~^^^^^^^^^^~12/01/1997~ -~11233~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11233~^~401~^93.4^5^3.5^~1~^~A~^^^1^84.4^104.0^4^83.6^103.2^~2, 3~^~10/01/2016~ -~11233~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11233~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~430~^389.6^3^16.2^~1~^~A~^^^1^368.9^421.6^2^319.7^459.5^~2, 3~^~10/01/2016~ -~11233~^~454~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11234~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11234~^~291~^4.0^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~317~^0.9^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/1997~ -~11234~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11234~^~401~^17.8^3^4.1^~1~^~A~^^^1^10.1^24.4^2^-0.1^35.8^~2, 3~^~12/01/2016~ -~11234~^~421~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11234~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2016~ -~11234~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2016~ -~11234~^~430~^418.5^3^31.9^~1~^~A~^^^1^367.6^477.4^2^281.1^555.9^~2, 3~^~12/01/2016~ -~11234~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11235~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11235~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11235~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11235~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11235~^~401~^39.3^9^2.7^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~421~^0.4^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~430~^333.6^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11236~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~11236~^~291~^2.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11236~^~317~^1.0^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11236~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11236~^~401~^17.8^3^4.1^~1~^~A~^^^1^10.1^24.4^2^-0.1^35.8^~2, 3~^~10/01/2016~ -~11236~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~01/01/2007~ -~11236~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11236~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11236~^~430~^418.5^3^31.9^~1~^~A~^^^1^367.6^477.4^2^281.1^555.9^~2, 3~^~10/01/2016~ -~11236~^~454~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~01/01/2007~ -~11237~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11237~^~291~^9.8^0^^~4~^~BFSN~^~11482~^^^^^^^^^~10/01/2011~ -~11237~^~317~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11237~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11237~^~401~^0.2^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11238~^~291~^2.5^4^0.2^~1~^~A~^^^1^2.0^3.1^3^1.7^3.2^~2, 3~^~07/01/2009~ -~11238~^~317~^5.7^4^0.4^~1~^~A~^^^1^5.1^7.2^3^4.1^7.2^~2, 3~^~07/01/2009~ -~11238~^~325~^0.4^4^0.2^~1~^~A~^^^1^0.0^1.2^3^-0.3^1.2^~1, 2, 3~^~07/01/2009~ -~11238~^~326~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2010~ -~11238~^~328~^0.4^4^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11239~^~291~^3.8^2^^~1~^~A~^^^1^3.2^4.3^1^^^^~07/01/2009~ -~11239~^~317~^2.2^2^^~1~^~A~^^^1^2.2^2.2^^^^~1~^~07/01/2009~ -~11239~^~325~^5.3^2^^~1~^~A~^^^1^2.2^8.4^1^^^^~07/01/2009~ -~11239~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~08/01/2010~ -~11239~^~328~^5.3^2^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11240~^~291~^2.8^4^0.4^~1~^~A~^^^1^2.1^3.6^3^1.5^4.0^~2, 3~^~07/01/2009~ -~11240~^~317~^2.2^4^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~325~^5.1^4^0.4^~1~^~A~^^^1^4.4^6.3^3^3.7^6.5^~2, 3~^~07/01/2009~ -~11240~^~326~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2010~ -~11240~^~328~^5.1^4^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11241~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11241~^~291~^3.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11241~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11241~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11241~^~401~^62.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~421~^12.3^0^^~4~^~BFSN~^~11564~^^^^^^^^^~03/01/2007~ -~11241~^~430~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11242~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11242~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11242~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11242~^~401~^54.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~421~^13.2^0^^~4~^~BFSY~^~11241~^^^^^^^^^~03/01/2007~ -~11242~^~430~^0.1^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11243~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11243~^~291~^2.2^6^9.1e-02^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~317~^21.9^6^3.3^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~325~^0.3^0^^~4~^~BFSN~^~11265~^^^^^^^^^~08/01/2009~ -~11243~^~326~^0.0^0^^~4~^~BFSN~^~11265~^^^^^^^^^~08/01/2009~ -~11243~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11243~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11243~^~421~^32.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11243~^~428~^0.3^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11243~^~429~^7.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11243~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11243~^~454~^11.5^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11244~^~291~^4.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11244~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11244~^~401~^80.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11245~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11245~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11245~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11245~^~430~^494.2^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~454~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11246~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11246~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11246~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11246~^~401~^12.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~421~^9.5^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11246~^~430~^47.0^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11247~^~291~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11247~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11247~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11247~^~401~^4.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~430~^25.4^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11248~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11248~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11248~^~401~^16.5^9^1.7^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11249~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11249~^~401~^12.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11250~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~11250~^~291~^1.1^4^0.2^~1~^~A~^^^1^0.7^1.7^3^0.3^1.7^~2, 3~^~12/01/2002~ -~11250~^~317~^0.6^8^0.1^~1~^~A~^^^2^0.0^1.3^3^0.1^1.0^~2, 3~^~12/01/2002~ -~11250~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11250~^~401~^3.7^8^0.7^~1~^~A~^^^2^0.9^8.5^5^1.7^5.5^~2, 3~^~12/01/2002~ -~11250~^~421~^8.4^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~11250~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11250~^~430~^102.3^8^9.8^~1~^~A~^^^2^75.5^158.6^4^75.3^129.3^~2, 3~^~12/01/2002~ -~11250~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~07/01/2007~ -~11251~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11251~^~291~^2.1^11^0.1^~6~^~JA~^^^3^1.4^3.7^3^1.5^2.6^~2, 3~^~12/01/2002~ -~11251~^~317~^0.4^7^6.3e-02^~1~^~A~^^^2^0.2^0.7^4^0.2^0.5^~2, 3~^~12/01/2002~ -~11251~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11251~^~401~^4.0^12^0.4^~6~^~JA~^^^3^0.8^7.6^8^3.0^4.8^~2, 3~^~06/01/2010~ -~11251~^~421~^9.9^3^0.3^~1~^~AS~^^^2^9.2^10.3^1^5.0^14.7^~2, 3~^~02/01/2008~ -~11251~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11251~^~430~^102.5^8^7.2^~1~^~A~^^^2^69.7^129.0^3^80.7^124.2^~2, 3~^~12/01/2002~ -~11251~^~454~^0.1^3^0.0^~1~^~A~^^^2^0.1^0.1^1^8.3e-02^9.5e-02^~2, 3~^~03/01/2006~ -~11252~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11252~^~291~^1.2^14^5.2e-02^~6~^~JA~^^^7^0.7^1.6^4^1.0^1.2^~1, 2, 3~^~11/01/2003~ -~11252~^~317~^0.1^63^2.5e-02^~6~^~JA~^^^12^0.0^1.4^3^3.0e-02^0.1^~1, 2, 3~^~11/01/2003~ -~11252~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11252~^~401~^2.8^23^0.1^~6~^~JA~^^^3^0.7^4.5^16^2.4^3.1^~1, 2, 3~^~11/01/2003~ -~11252~^~421~^6.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11252~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~430~^24.1^8^2.3^~1~^~A~^^^2^15.6^36.2^5^18.2^29.9^~2, 3~^~08/01/2002~ -~11252~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~03/01/2006~ -~11253~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~11253~^~291~^1.3^4^1.9e-02^~1~^~A~^^^1^1.2^1.3^3^1.2^1.3^~2, 3~^~06/01/2010~ -~11253~^~317~^0.6^8^0.1^~1~^~A~^^^2^0.2^1.4^4^0.2^1.0^~1, 2, 3~^~12/01/2002~ -~11253~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11253~^~401~^9.2^8^0.5^~1~^~A~^^^2^7.0^12.9^5^7.8^10.4^~2, 3~^~06/01/2010~ -~11253~^~421~^13.6^0^^~4~^~BFSN~^~11257~^^^^^^^^^~06/01/2010~ -~11253~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~11253~^~430~^126.3^8^4.7^~1~^~A~^^^2^110.9^153.7^5^113.8^138.7^~2, 3~^~06/01/2010~ -~11253~^~454~^0.2^0^^~4~^~BFSN~^~11257~^^^^^^^^^~06/01/2010~ -~11254~^~291~^4.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11254~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11254~^~401~^44.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11255~^~291~^3.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11255~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11255~^~401~^27.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~421~^25.4^0^^~4~^~BFSY~^~11429~^^^^^^^^^~03/01/2007~ -~11255~^~430~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11257~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~291~^0.9^4^0.2^~1~^~A~^^^1^0.2^1.3^3^0.1^1.7^~2, 3~^~12/01/2002~ -~11257~^~317~^1.5^4^0.9^~1~^~A~^^^1^0.4^4.2^3^-1.4^4.3^~2, 3~^~12/01/2002~ -~11257~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11257~^~401~^3.7^8^0.6^~1~^~A~^^^2^1.5^7.0^4^1.8^5.5^~2, 3~^~12/01/2002~ -~11257~^~421~^11.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11257~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11257~^~430~^140.3^8^16.0^~1~^~A~^^^2^103.0^258.0^3^91.0^189.5^~2, 3~^~12/01/2002~ -~11257~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11258~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11258~^~291~^2.5^0^^~4~^~BFSN~^~11601~^^^^^^^^^~10/01/2011~ -~11258~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11258~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11258~^~401~^2.6^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~430~^1.4^0^^~4~^~BFSN~^~11601~^^^^^^^^^~10/01/2011~ -~11259~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11259~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11260~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2010~ -~11260~^~291~^1.0^3^0.4^~11~^~JO~^^^2^0.1^1.5^2^-0.9^2.9^~1, 4~^~03/01/2006~ -~11260~^~317~^9.3^23^1.2^~11~^~JO~^^^10^0.0^22.7^22^6.6^11.9^~4~^~05/01/2005~ -~11260~^~325~^0.2^5^7.4e-02^~11~^~JO~^^^2^0.1^0.5^4^-2.7e-02^0.3^~4~^~08/01/2009~ -~11260~^~326~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~1, 4~^~08/01/2009~ -~11260~^~328~^0.2^5^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11260~^~401~^2.1^24^0.6^~6~^~JA~^^^4^0.0^8.6^15^0.6^3.4^~1, 4~^~05/01/2005~ -~11260~^~421~^17.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11260~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2005~ -~11260~^~429~^1.0^2^^~1~^~A~^^^1^0.0^2.0^1^^^~1~^~05/01/2005~ -~11260~^~430~^0.0^3^2.0e-02^~1~^~A~^^^2^0.0^0.1^2^-6.6e-02^0.1^~1, 4~^~05/01/2005~ -~11260~^~454~^9.4^2^^~1~^~A~^^^2^8.1^10.7^1^^^^~08/01/2007~ -~11261~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2009~ -~11261~^~291~^2.2^0^^~1~^^^^^^^^^^^~04/01/2006~ -~11261~^~317~^11.9^5^0.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11261~^~325~^0.2^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~326~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11261~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~421~^20.4^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~430~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2006~ -~11263~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~291~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~317~^13.9^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~325~^0.2^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11263~^~326~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11263~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11263~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11263~^~421~^21.9^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11263~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11263~^~429~^0.7^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11263~^~454~^9.5^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11264~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11264~^~291~^2.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~317~^4.1^23^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11264~^~325~^0.2^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~326~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11264~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~421~^20.4^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~430~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2006~ -~11265~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11265~^~291~^1.3^5^9.8e-02^~1~^~A~^^^2^1.0^1.6^3^1.0^1.6^~2, 3~^~08/01/2009~ -~11265~^~317~^18.6^5^3.2^~1~^~A~^^^2^11.0^32.5^3^8.2^28.9^~2, 3~^~08/01/2009~ -~11265~^~325~^0.3^4^0.1^~1~^~A~^^^1^0.1^0.8^3^-0.3^0.8^~2, 3~^~08/01/2009~ -~11265~^~326~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2010~ -~11265~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11265~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11265~^~421~^21.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11265~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11265~^~429~^1.8^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11265~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11266~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~317~^26.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~325~^0.1^4^1.1e-02^~1~^~A~^^^1^^^^^^^~07/01/2009~ -~11266~^~326~^0.0^4^3.1e-02^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~11266~^~328~^0.1^4^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11266~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~ -~11266~^~421~^22.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11266~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11266~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~454~^11.1^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11267~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~291~^3.6^2^^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~317~^6.3^2^^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~325~^0.5^0^^~4~^~BFSN~^~11238~^^^^^^^^^~08/01/2009~ -~11267~^~326~^0.0^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11267~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11267~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11267~^~421~^59.4^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11267~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11267~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11267~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11267~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11268~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2006~ -~11268~^~291~^11.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~317~^46.1^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~325~^3.9^0^^~4~^~BFSN~^~11267~^^^^^^^^^~08/01/2009~ -~11268~^~326~^0.0^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11268~^~328~^3.9^0^^~1~^~AS~^~11267~^^^^^^^^^~02/01/2010~ -~11268~^~401~^3.5^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~421~^201.7^0^^~4~^~BFSN~^~11260~^^^^^^^^^~03/01/2007~ -~11268~^~430~^0.0^0^^~4~^~BFSN~^~11267~^^^^^^^^^~03/01/2007~ -~11269~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11269~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~317~^24.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11269~^~325~^0.7^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~326~^0.0^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11269~^~401~^0.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~421~^36.8^0^^~4~^~BFSN~^~11260~^^^^^^^^^~02/01/2010~ -~11269~^~430~^0.0^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11270~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~11270~^~291~^3.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11270~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11270~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11270~^~401~^70.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11270~^~430~^257.5^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~11271~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11271~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11271~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11271~^~401~^25.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~421~^0.4^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11271~^~430~^592.7^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11271~^~454~^0.2^0^^~4~^~BFSN~^~11234~^^^^^^^^^~01/01/2007~ -~11272~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11272~^~291~^3.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11272~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11272~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11272~^~401~^25.3^12^1.9^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11273~^~291~^2.8^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11273~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11273~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11273~^~401~^13.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~421~^0.3^0^^~4~^~BFSN~^~11271~^^^^^^^^^~02/01/2007~ -~11273~^~430~^335.1^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~454~^0.2^0^^~4~^~BFSN~^~11271~^^^^^^^^^~02/01/2007~ -~11274~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11274~^~291~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11274~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11274~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11274~^~401~^130.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~291~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11275~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11275~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11275~^~401~^65.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11276~^~291~^1.5^0^^~4~^~BFSN~^~11457~^^^^^^^^^~08/01/2011~ -~11276~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11276~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11276~^~401~^30.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~430~^337.0^0^^~4~^~BFSN~^~11457~^^^^^^^^^~08/01/2011~ -~11277~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11277~^~291~^1.4^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11277~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11277~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11277~^~401~^16.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~430~^292.0^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11278~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11278~^~291~^3.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11278~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11278~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11278~^~401~^23.0^12^2.1^~1~^^^^1^21.1^44.0^10^18.2^27.7^~2, 3~^~08/01/2012~ -~11278~^~421~^12.3^0^^~4~^~BFSN~^~11641~^^^^^^^^^~03/01/2007~ -~11278~^~430~^31.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11279~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2005~ -~11279~^~291~^2.5^1^^~1~^^^^^^^^^^^~01/01/2003~ -~11279~^~317~^0.4^18^0.2^~1~^~A~^^^7^0.0^2.1^6^-0.2^1.0^~2~^~01/01/2003~ -~11279~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11279~^~401~^16.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~421~^8.7^0^^~4~^~BFSY~^~11278~^^^^^^^^^~08/01/2012~ -~11279~^~430~^40.0^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11280~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11280~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11280~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11280~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11280~^~401~^12.4^39^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~421~^11.4^0^^~4~^~BFSN~^~11279~^^^^^^^^^~03/01/2007~ -~11280~^~430~^49.4^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11281~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~11281~^~291~^2.1^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~317~^0.6^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11281~^~401~^9.6^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~421~^11.1^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~430~^47.8^0^^~4~^~BFSN~^~11280~^^^^^^^^^~01/01/2003~ -~11282~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11282~^~291~^1.7^10^4.8e-02^~1~^^^^2^1.4^1.9^3^1.5^1.9^~2, 3~^~03/01/2006~ -~11282~^~313~^1.1^12^0.1^~1~^~A~^^^2^1.0^1.2^1^-0.1^2.3^~4~^~03/01/2006~ -~11282~^~317~^0.5^49^0.1^~6~^~JA~^^^8^0.0^4.2^15^0.1^0.7^~2, 3~^~03/01/2006~ -~11282~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11282~^~401~^7.4^17^5.3e-02^~1~^^^^1^7.3^8.2^1^6.6^8.0^~2, 3~^~03/01/2006~ -~11282~^~421~^6.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11282~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~430~^0.4^9^1.1e-02^~11~^~JO~^^^4^0.2^0.7^1^0.2^0.5^~2, 3~^~03/01/2006~ -~11282~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11283~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~11283~^~291~^1.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11283~^~401~^5.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~421~^6.8^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~430~^0.5^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11284~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11284~^~291~^9.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11284~^~317~^5.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11284~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11284~^~401~^75.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~421~^53.9^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~430~^3.8^0^^~4~^~BFSN~^~11283~^^^^^^^^^~03/01/2007~ -~11285~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11285~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11285~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11285~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11285~^~401~^4.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~430~^0.2^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11286~^~291~^1.7^4^5.8e-02^~1~^~A~^^^1^1.6^1.8^3^1.5^1.8^~2, 3~^~08/01/2004~ -~11286~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11286~^~401~^1.8^4^0.6^~1~^~A~^^^1^0.1^2.9^3^-0.3^3.8^~1, 2, 3~^~08/01/2004~ -~11286~^~421~^6.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11286~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2004~ -~11286~^~430~^21.6^2^^~1~^~A~^^^1^19.5^23.8^1^^^^~08/01/2004~ -~11286~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11287~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11287~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11287~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11287~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11287~^~401~^3.3^12^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11288~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11288~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11288~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11288~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~421~^4.4^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11288~^~430~^0.3^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11289~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~11289~^~291~^1.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~317~^0.4^5^0.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11289~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11289~^~401~^8.0^6^1.0^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~421~^5.5^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~430~^0.4^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11290~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11290~^~291~^1.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11290~^~317~^0.4^5^0.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11290~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11290~^~401~^5.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~421~^4.4^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11290~^~430~^0.3^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11291~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11291~^~291~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11291~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11291~^~401~^18.8^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~421~^5.7^0^^~4~^~BFSN~^~11246~^^^^^^^^^~03/01/2007~ -~11291~^~430~^207.0^0^^~4~^~T~^^^^^^^^^^~11/01/2003~ -~11292~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11292~^~291~^1.8^4^7.5e-02^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~317~^0.5^0^^~4~^~BFSN~^~11291~^^^^^^^^^~04/01/2009~ -~11292~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11292~^~401~^13.4^4^0.9^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~421~^4.3^0^^~4~^~BFSN~^~11291~^^^^^^^^^~04/01/2009~ -~11292~^~430~^156.3^0^^~4~^~BFSN~^~11291~^^^^^^^^^~04/01/2009~ -~11293~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11293~^~291~^2.4^0^^~4~^~BFSN~^~11291~^^^^^^^^^~08/01/2011~ -~11293~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11293~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11293~^~401~^27.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~421~^5.3^0^^~4~^~BFSN~^~11291~^^^^^^^^^~08/01/2011~ -~11293~^~430~^193.4^0^^~4~^~BFSN~^~11291~^^^^^^^^^~08/01/2011~ -~11294~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11294~^~291~^0.9^7^4.4e-02^~1~^~A~^^^2^0.8^1.1^5^0.8^1.0^~1, 2, 3~^~04/01/2003~ -~11294~^~317~^0.5^4^0.1^~1~^~A~^^^1^0.1^0.9^3^-6.8e-02^0.9^~2, 3~^~04/01/2003~ -~11294~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11294~^~401~^4.8^8^0.3^~1~^~A~^^^2^3.4^6.4^6^3.9^5.5^~2, 3~^~04/01/2003~ -~11294~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11294~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~430~^0.3^8^3.1e-02^~1~^~A~^^^2^0.2^0.5^6^0.2^0.4^~2, 3~^~04/01/2003~ -~11294~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^^^^^~03/01/2006~ -~11295~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11295~^~313~^55.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11295~^~317~^2.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11295~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11295~^~401~^4.6^10^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11296~^~291~^2.2^7^8.3e-02^~1~^~A~^^^1^1.8^2.8^2^1.9^2.5^~2, 3~^~04/01/2013~ -~11296~^~317~^5.6^7^5.1e-02^~1~^~A~^^^1^5.2^6.5^3^5.3^5.7^~2, 3~^~04/01/2013~ -~11296~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11296~^~401~^1.6^2^^~1~^~A~^^^1^1.6^1.7^^^^^~04/01/2013~ -~11296~^~421~^10.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11296~^~430~^34.1^0^^~4~^~BFSN~^~36036~^^^^^^^^^~04/01/2013~ -~11296~^~454~^36.4^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11297~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11297~^~291~^3.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~317~^0.1^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11297~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11297~^~401~^133.0^3^30.9^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11297~^~430~^1640.0^4^0.0^~1~^^^^2^360.0^5480.0^2^1640.0^1640.0^~2, 3~^~03/01/2007~ -~11298~^~291~^4.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11298~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~11298~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11298~^~401~^17.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~430~^22.5^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2003~ -~11299~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11299~^~291~^3.6^2^^~1~^^^^1^3.3^3.9^^^^^~01/01/2003~ -~11299~^~317~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11299~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11299~^~401~^13.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~421~^27.0^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11299~^~430~^1.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11300~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11300~^~291~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11300~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11300~^~401~^60.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~421~^17.4^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2007~ -~11300~^~430~^25.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11301~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11301~^~291~^2.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11301~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11301~^~401~^47.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~421~^17.4^0^^~4~^~BFSY~^~11300~^^^^^^^^^~03/01/2007~ -~11301~^~430~^25.0^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2004~ -~11302~^~291~^3.1^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11302~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11302~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11302~^~401~^22.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11303~^~291~^3.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11303~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11303~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11303~^~401~^22.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~421~^21.0^0^^~4~^~BFSN~^~11300~^^^^^^^^^~03/01/2007~ -~11303~^~430~^30.2^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11304~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11304~^~291~^5.7^0^^~4~^~BFSN~^~11313~^^^^^^^^^~08/01/2015~ -~11304~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11304~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11304~^~401~^40.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~421~^28.4^0^^~4~^~BFSN~^~11312~^^^^^^^^^~03/01/2007~ -~11304~^~430~^24.8^0^^~4~^~BFSN~^~11313~^^^^^^^^^~09/01/2002~ -~11304~^~454~^0.2^0^^~4~^~BFSN~^~11312~^^^^^^^^^~02/01/2007~ -~11305~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11305~^~291~^5.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~317~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11305~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11305~^~401~^14.2^12^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~421~^29.7^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11305~^~430~^25.9^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~454~^0.2^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11306~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11306~^~291~^3.3^37^0.1^~1~^^^^4^2.1^4.9^36^3.0^3.5^~4~^~09/01/2002~ -~11306~^~317~^1.3^38^0.3^~1~^^^^4^0.0^6.0^37^0.6^1.8^~4~^~09/01/2002~ -~11306~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11306~^~401~^7.8^41^0.7^~6~^~JA~^^^5^1.0^20.8^40^6.3^9.2^~4~^~04/01/2011~ -~11306~^~421~^20.0^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~ -~11306~^~430~^20.7^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~ -~11308~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2007~ -~11308~^~291~^4.9^7^0.1^~6~^~JA~^^^3^3.1^6.0^4^4.3^5.4^~2, 3~^~12/01/2007~ -~11308~^~317~^1.7^16^0.4^~1~^~A~^^^^^^^^^^~12/01/2007~ -~11308~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11308~^~401~^4.2^9^5.6e-02^~1~^~A~^^^2^0.0^9.8^3^4.0^4.4^~1, 2, 3~^~04/01/2011~ -~11308~^~421~^30.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11308~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2007~ -~11308~^~429~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2007~ -~11308~^~430~^36.8^5^1.8^~1~^~A~^^^1^31.6^42.8^4^31.6^41.8^~2, 3~^~12/01/2007~ -~11308~^~454~^0.2^2^^~1~^~A~^^^1^0.1^0.4^1^^^^~04/01/2011~ -~11310~^~291~^2.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11310~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11310~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11310~^~401~^11.5^36^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11311~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11311~^~401~^9.3^4^0.5^~1~^~A~^^^1^8.3^10.8^3^7.5^10.9^~2, 3~^~04/01/2011~ -~11312~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11312~^~291~^4.5^7^0.1^~6~^~JA~^^^2^3.7^5.3^5^4.2^4.8^~2, 3~^~03/01/2008~ -~11312~^~317~^1.9^19^0.4^~1~^~A~^^^2^1.7^5.3^17^1.0^2.8^~1, 2, 3~^~03/01/2008~ -~11312~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11312~^~401~^18.0^77^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~421~^27.0^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~ -~11312~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11312~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2008~ -~11312~^~430~^27.9^2^^~1~^~A~^^^1^26.1^29.7^1^^^^~03/01/2008~ -~11313~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11313~^~291~^4.5^0^^~4~^~BFSN~^~11306~^^^^^^^^^~08/01/2015~ -~11313~^~317~^1.0^40^0.2^~1~^^^^5^0.0^5.0^39^0.5^1.4^~4~^~09/01/2002~ -~11313~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11313~^~401~^9.9^9^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~421~^27.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11313~^~430~^24.0^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11313~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11316~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11316~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11316~^~401~^10.4^8^2.6^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11317~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11317~^~401~^6.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11318~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11318~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11318~^~401~^6.6^165^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11322~^~291~^3.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11322~^~317~^1.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11322~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11322~^~401~^11.2^28^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11323~^~291~^3.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11323~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11323~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11323~^~401~^8.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~421~^18.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~430~^18.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11324~^~291~^2.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11324~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11324~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11324~^~401~^3.0^4^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11326~^~291~^3.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11326~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11326~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11326~^~401~^14.0^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11327~^~291~^2.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11327~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11327~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11327~^~401~^6.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~421~^15.9^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11327~^~430~^12.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11329~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~11329~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11329~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11329~^~401~^68.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~421~^6.8^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11329~^~430~^8.7^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11333~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11333~^~291~^1.7^18^1.6e-02^~1~^^^^2^1.4^1.9^2^1.5^1.7^~2, 3~^~03/01/2003~ -~11333~^~313~^2.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11333~^~317~^0.0^34^3.0e-03^~6~^~JA~^^^3^0.0^0.2^1^-2.8e-02^4.3e-02^~2, 3~^~03/01/2003~ -~11333~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11333~^~401~^80.4^16^3.6^~6~^~JA~^^^2^64.8^134.0^3^68.9^91.9^~2, 3~^~03/01/2003~ -~11333~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11333~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~430~^7.4^8^0.1^~11~^~JO~^^^3^2.5^9.4^3^7.0^7.7^~2, 3~^~03/01/2003~ -~11333~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11334~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11334~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11334~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11334~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11334~^~401~^74.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~421~^7.4^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~430~^9.8^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11335~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11335~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11335~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11335~^~401~^46.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~291~^1.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11337~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11337~^~401~^58.7^7^11.9^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~291~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11338~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11338~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11338~^~401~^41.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11339~^~291~^1.8^4^4.8e-02^~1~^~A~^^^1^1.7^1.9^3^1.6^1.9^~2, 3~^~10/01/2002~ -~11339~^~317~^0.6^0^^~4~^~BFSN~^~11334~^^^^^^^^^~04/01/2003~ -~11339~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11339~^~401~^177.0^4^17.6^~1~^~A~^^^1^151.0^229.0^3^120.9^233.0^~2, 3~^~10/01/2002~ -~11339~^~421~^4.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11339~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~430~^21.3^4^4.0^~1~^~A~^^^1^13.8^32.9^3^8.4^34.2^~2, 3~^~10/01/2002~ -~11339~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11344~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11344~^~291~^5.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11344~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11344~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11344~^~401~^39.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~421~^45.8^0^^~4~^~BFSN~^~11304~^^^^^^^^^~03/01/2007~ -~11344~^~430~^24.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11345~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~11345~^~291~^4.2^0^^~4~^~BFSN~^~11344~^^^^^^^^^~08/01/2015~ -~11345~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11345~^~401~^28.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~421~^37.9^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11345~^~430~^19.8^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11349~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11349~^~291~^0.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11349~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11349~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~421~^16.7^0^^~4~^~BFSN~^~11519~^^^^^^^^^~03/01/2007~ -~11349~^~430~^1.0^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11350~^~291~^1.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11350~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11350~^~401~^136.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11351~^~291~^1.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11351~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11351~^~401~^82.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~421~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11351~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11351~^~454~^0.2^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11352~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11352~^~291~^2.1^5^^~1~^~A~^^^1^1.6^2.4^^^^~2~^~09/01/2015~ -~11352~^~317~^0.4^2^^~1~^~A~^^^1^0.2^0.5^^^^^~09/01/2015~ -~11352~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11352~^~401~^19.7^141^0.7^~1~^^^^^^^^^^^~08/01/2010~ -~11352~^~421~^12.1^0^^~4~^~BFSN~^~11353~^^^^^^^^^~02/01/2007~ -~11352~^~429~^0.0^11^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~05/01/2002~ -~11352~^~430~^2.0^11^0.6^~1~^~A~^^^2^0.8^3.6^1^-6.0^10.0^~2~^~09/01/2015~ -~11352~^~454~^0.2^0^^~4~^~BFSN~^~11353~^^^^^^^^^~02/01/2007~ -~11353~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~08/01/2002~ -~11353~^~317~^0.4^2^^~1~^~A~^^^1^0.2^0.5^1^^^^~04/01/2002~ -~11353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11353~^~401~^5.7^4^0.9^~1~^~A~^^^2^2.1^11.0^1^-5.4^16.8^~2, 3~^~03/01/2006~ -~11353~^~421~^12.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11353~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2002~ -~11353~^~430~^1.8^4^2.5e-02^~1~^~A~^^^2^0.8^2.7^1^1.4^2.0^~2, 3~^~04/01/2002~ -~11353~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11354~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11354~^~291~^2.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11354~^~317~^0.3^299^3.1e-02^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11354~^~401~^9.1^3^8.3e-02^~1~^~A~^^^2^7.6^11.7^1^8.0^10.1^~2, 3~^~02/01/2012~ -~11354~^~421~^11.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11354~^~429~^0.0^3^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~05/01/2002~ -~11354~^~430~^1.6^3^0.1^~1~^~A~^^^2^1.0^2.5^1^0.3^2.8^~2, 3~^~05/01/2002~ -~11354~^~454~^0.2^2^^~1~^~A~^^^2^0.1^0.2^^^^^~03/01/2006~ -~11355~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2010~ -~11355~^~291~^1.7^2^^~1~^~A~^^^1^1.6^1.9^1^^^^~05/01/2002~ -~11355~^~317~^0.5^0^^~4~^~BFSN~^~11674~^^^^^^^^^~08/01/2010~ -~11355~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11355~^~401~^8.6^4^0.5^~1~^~A~^^^2^6.6^9.9^1^3.8^13.3^~2, 3~^~03/01/2006~ -~11355~^~421~^16.4^3^0.9^~1~^~AS~^^^2^15.4^18.2^1^4.4^28.2^~2, 3~^~08/01/2010~ -~11355~^~429~^0.0^4^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~05/01/2002~ -~11355~^~430~^2.9^4^0.5^~1~^~A~^^^2^1.6^3.6^1^-1.0^6.8^~2, 3~^~05/01/2002~ -~11355~^~454~^0.2^3^9.0e-03^~1~^~A~^^^2^0.1^0.2^1^6.5e-02^0.2^~2, 3~^~03/01/2006~ -~11356~^~221~^0.0^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~291~^2.3^6^5.9e-02^~1~^~A~^^^2^2.1^2.6^4^2.1^2.4^~2, 3~^~04/01/2002~ -~11356~^~313~^45.2^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11356~^~317~^0.5^2^^~1~^~A~^^^1^0.3^0.7^1^^^^~04/01/2002~ -~11356~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11356~^~401~^8.3^8^0.3^~1~^~A~^^^2^4.8^11.4^4^7.3^9.2^~2, 3~^~08/01/2010~ -~11356~^~421~^15.0^3^1.0^~1~^~AS~^^^2^11.3^19.3^1^1.3^28.7^~2, 3~^~08/01/2010~ -~11356~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~430~^2.0^8^0.3^~1~^~A~^^^2^1.1^3.7^5^1.1^2.8^~2, 3~^~04/01/2002~ -~11356~^~454~^0.2^3^1.6e-02^~1~^~A~^^^2^0.2^0.3^1^2.5e-02^0.4^~2, 3~^~03/01/2006~ -~11357~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11357~^~291~^2.1^4^4.3e-02^~1~^~A~^^^2^1.9^2.4^2^1.8^2.2^~2, 3~^~05/01/2002~ -~11357~^~317~^0.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~03/01/2006~ -~11357~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11357~^~401~^12.6^5^0.5^~1~^~A~^^^2^10.4^16.3^1^8.9^16.3^~2, 3~^~05/01/2002~ -~11357~^~421~^14.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11357~^~429~^0.0^6^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~05/01/2002~ -~11357~^~430~^2.7^6^0.1^~1~^~A~^^^2^1.3^3.9^3^2.2^3.1^~2, 3~^~05/01/2002~ -~11357~^~454~^0.2^2^^~1~^~A~^^^2^0.2^0.2^^^^^~03/01/2006~ -~11358~^~291~^1.8^5^9.8e-02^~1~^~A~^^^2^1.6^2.0^3^1.5^2.1^~2, 3~^~04/01/2002~ -~11358~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11358~^~401~^12.6^8^0.9^~1~^~A~^^^2^9.2^19.7^3^9.6^15.4^~2, 3~^~04/01/2002~ -~11358~^~421~^18.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11358~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~430~^2.8^8^0.4^~1~^~A~^^^2^1.4^4.8^4^1.6^4.0^~2, 3~^~04/01/2002~ -~11358~^~454~^0.2^2^^~1~^~A~^^^2^0.2^0.2^^^^^~03/01/2006~ -~11359~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11359~^~291~^2.0^10^0.3^~1~^~A~^^^2^1.5^2.8^1^-2.2^6.2^~2~^~04/01/2013~ -~11359~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~11359~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11359~^~401~^7.7^10^0.9^~1~^~A~^^^2^1.3^19.1^5^5.2^10.1^~2, 3~^~07/01/2013~ -~11359~^~421~^19.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~ -~11359~^~429~^14.4^2^^~1~^~A~^^^1^9.1^19.8^1^^^^~03/01/2005~ -~11359~^~430~^2.1^2^^~1~^~A~^^^1^2.0^2.3^1^^^^~03/01/2005~ -~11360~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11360~^~291~^2.3^2^^~1~^~A~^^^1^2.1^2.4^^^^^~03/01/2005~ -~11360~^~317~^0.1^42^7.0e-02^~1~^^^^5^0.0^2.0^4^-8.0e-02^0.3^~2~^~03/01/2005~ -~11360~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11360~^~401~^11.8^2^^~1~^~A~^^^1^10.9^12.8^^^^^~03/01/2005~ -~11360~^~429~^15.5^2^^~1~^~A~^^^1^10.4^20.6^^^^^~03/01/2005~ -~11360~^~430~^2.3^2^^~1~^~A~^^^1^2.1^2.6^^^^^~03/01/2005~ -~11361~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.3^3.0^2^1.8^3.3^~2, 3~^~04/01/2013~ -~11361~^~401~^1.7^3^0.8^~1~^~A~^^^1^0.0^2.8^2^-1.9^5.3^~2, 3~^~04/01/2013~ -~11362~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11362~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11362~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11362~^~401~^11.4^3^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11363~^~291~^1.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11363~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11363~^~401~^12.8^3^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~421~^14.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11363~^~430~^0.3^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11363~^~454~^0.2^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11364~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11364~^~291~^7.9^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11364~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11364~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11364~^~401~^13.5^3^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~421~^31.0^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11364~^~430~^1.7^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11364~^~454~^0.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11365~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11365~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~313~^49.4^2^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11365~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11365~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11365~^~401~^13.0^3^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~421~^13.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11365~^~430~^2.2^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11365~^~454~^0.2^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11366~^~291~^3.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11366~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11366~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11366~^~401~^5.2^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11367~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11367~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11367~^~401~^7.4^3^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~421~^13.2^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~11367~^~430~^2.2^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~454~^0.2^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~11368~^~291~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11368~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11368~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11368~^~401~^15.1^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~291~^5.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11369~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11369~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11369~^~401~^15.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11370~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~291~^3.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~313~^0.0^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~317~^0.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11370~^~401~^13.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~421~^23.2^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~430~^3.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~454~^0.3^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11371~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~291~^1.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~313~^39.0^23^11.0^~1~^~A~^^^3^8.8^83.6^6^11.9^65.9^~4~^~08/01/2011~ -~11371~^~317~^0.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~326~^0.2^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11371~^~401~^10.5^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~421~^13.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~428~^0.1^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~430~^6.0^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~454~^0.2^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11372~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11372~^~313~^31.5^19^10.0^~1~^~A~^^^2^3.8^61.9^5^5.5^57.3^~4~^~02/01/2006~ -~11372~^~317~^1.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11372~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11372~^~401~^10.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11373~^~317~^2.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11373~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11373~^~401~^9.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11374~^~291~^1.4^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11374~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11374~^~401~^7.6^66^0.5^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11376~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11376~^~291~^2.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11376~^~317~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11376~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11376~^~401~^5.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11378~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11378~^~291~^6.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~317~^13.4^2^^~1~^~A~^^^2^0.4^26.3^^^^~1~^~03/01/2006~ -~11378~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11378~^~401~^81.0^29^15.2^~6~^~JA~^^^2^7.1^83.6^27^49.5^112.3^~2, 3~^~03/01/2006~ -~11378~^~421~^54.9^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11378~^~430~^8.7^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~ -~11379~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~291~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~313~^42.5^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~317~^2.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~326~^0.3^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~11379~^~401~^9.7^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~421~^10.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~428~^0.2^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~430~^1.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~454~^0.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11380~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11380~^~291~^7.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11380~^~317~^27.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11380~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11380~^~401~^37.0^13^12.2^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~421~^56.6^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~430~^9.0^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11381~^~291~^2.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11381~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11381~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11381~^~401~^6.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11382~^~291~^6.6^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~317~^26.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~11382~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11382~^~401~^16.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~421~^55.0^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~430~^8.7^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~ -~11383~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~291~^1.3^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~313~^39.6^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~317~^5.6^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~326~^0.3^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11383~^~401~^6.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~421~^13.7^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~428~^0.2^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~430~^6.3^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11384~^~291~^4.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11384~^~317~^10.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11384~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11384~^~401~^15.5^3^1.5^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~291~^0.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11385~^~317~^2.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11385~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11385~^~401~^3.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11386~^~291~^8.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11386~^~317~^7.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11386~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11386~^~401~^16.5^3^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11387~^~291~^1.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11387~^~317~^1.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11387~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11387~^~401~^3.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~291~^1.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11390~^~313~^43.7^2^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11390~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11390~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11390~^~401~^8.2^115^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11391~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11391~^~291~^3.2^6^0.3^~1~^~A~^^^1^2.7^3.3^1^-1.2^7.6^~4~^~02/01/2013~ -~11391~^~317~^0.5^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~ -~11391~^~325~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11391~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11391~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11391~^~401~^6.7^9^1.3^~1~^~A~^^^1^4.5^7.5^2^1.0^12.3^~1, 4~^~02/01/2013~ -~11391~^~421~^23.2^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~ -~11391~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~11391~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~11391~^~430~^18.1^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11392~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11392~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11392~^~401~^5.7^11^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~291~^3.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11393~^~317~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11393~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11393~^~401~^3.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11394~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11394~^~291~^2.3^3^3.1e-02^~1~^~A~^^^2^2.1^2.4^1^1.8^2.6^~2~^~05/01/2013~ -~11394~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11394~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11394~^~401~^12.3^3^5.2^~1~^~A~^^^2^7.0^24.5^1^-54.4^78.9^~2~^~05/01/2013~ -~11394~^~421~^20.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~11394~^~429~^15.9^2^^~1~^~A~^^^1^13.0^18.9^^^^^~03/01/2005~ -~11394~^~430~^2.6^2^^~1~^~A~^^^1^2.5^2.8^^^^^~03/01/2005~ -~11395~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11395~^~291~^2.8^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11395~^~401~^14.2^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~429~^19.6^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~430~^2.7^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11396~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~317~^1.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11396~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11396~^~401~^11.3^16^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~291~^1.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11397~^~317~^1.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11397~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11397~^~401~^10.4^9^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11398~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11398~^~291~^2.3^0^^~4~^^^^^^^^^^^~08/01/2014~ -~11398~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2014~ -~11398~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11398~^~401~^6.9^83^0.5^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~421~^24.9^0^^~4~^~BFSN~^~11402~^^^^^^^^^~08/01/2014~ -~11398~^~430~^2.5^0^^~4~^~BFSN~^~11402~^^^^^^^^^~08/01/2014~ -~11399~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~291~^2.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~313~^6.3^2^^~1~^~A~^^^1^6.2^6.3^1^^^^~02/01/2006~ -~11399~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~11399~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~401~^4.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~421~^25.4^0^^~4~^~BFSN~^~11403~^^^^^^^^^~02/01/2007~ -~11399~^~429~^29.1^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~430~^3.7^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~454~^0.8^0^^~4~^~BFSN~^~11403~^^^^^^^^^~02/01/2007~ -~11401~^~291~^1.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11401~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11401~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11401~^~401~^9.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11402~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11402~^~291~^1.9^6^0.1^~1~^~A~^^^1^1.5^2.4^5^1.6^2.2^~2, 3~^~03/01/2005~ -~11402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11402~^~401~^17.3^6^2.4^~1~^~A~^^^1^10.5^24.5^5^11.0^23.6^~2, 3~^~03/01/2005~ -~11402~^~421~^22.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11402~^~429~^12.8^6^2.2^~1~^~A~^^^1^6.0^19.8^5^6.9^18.6^~2, 3~^~03/01/2005~ -~11402~^~430~^2.2^6^0.1^~1~^~A~^^^1^1.6^2.8^5^1.7^2.6^~2, 3~^~03/01/2005~ -~11402~^~454~^0.7^2^^~1~^~A~^^^1^0.5^0.8^1^^^^~03/01/2006~ -~11403~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~11403~^~291~^2.0^6^0.1^~1~^~A~^^^1^1.4^2.5^4^1.5^2.3^~2, 3~^~08/01/2014~ -~11403~^~313~^25.6^21^4.1^~1~^~A~^^^3^6.0^41.4^7^15.8^35.2^~4~^~02/01/2006~ -~11403~^~317~^0.4^5^4.0e-02^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11403~^~401~^8.6^6^3.7^~1~^~A~^^^1^1.8^25.3^4^-1.8^19.1^~2, 3~^~08/01/2014~ -~11403~^~421~^23.7^3^0.1^~1~^~AS~^^^2^20.2^25.6^1^21.6^25.6^~2, 3~^~03/01/2006~ -~11403~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2014~ -~11403~^~430~^7.4^3^1.1^~1~^~A~^^^1^5.2^8.6^2^2.6^12.2^~2, 3~^~08/01/2014~ -~11403~^~454~^0.7^3^5.7e-02^~1~^~A~^^^2^0.3^1.0^1^9.0e-03^1.4^~2, 3~^~03/01/2006~ -~11406~^~291~^3.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11406~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11406~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11406~^~401~^8.4^13^1.4^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~291~^3.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11407~^~313~^25.6^21^4.1^~1~^~A~^^^3^6.0^41.4^7^15.8^35.2^~4~^~02/01/2006~ -~11407~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11407~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11407~^~401~^9.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~291~^2.9^0^^~4~^~BFSN~^~11842~^^^^^^^^^~08/01/2015~ -~11408~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11408~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11408~^~401~^6.3^17^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~291~^3.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11409~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11409~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11409~^~401~^6.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11410~^~291~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11410~^~401~^11.2^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11411~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11411~^~291~^1.9^2^^~1~^~A~^^^1^1.9^1.9^^^^^~03/01/2005~ -~11411~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11411~^~401~^18.4^2^^~1~^~A~^^^1^13.0^23.8^^^^^~03/01/2005~ -~11411~^~429~^8.0^2^^~1~^~A~^^^1^6.0^10.0^^^^^~03/01/2005~ -~11411~^~430~^1.8^2^^~1~^~A~^^^1^1.6^2.0^^^^^~03/01/2005~ -~11412~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11412~^~291~^2.6^2^^~1~^~A~^^^1^2.2^3.1^^^^^~03/01/2005~ -~11412~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11412~^~401~^14.0^2^^~1~^~A~^^^1^10.6^17.4^^^^^~03/01/2005~ -~11412~^~429~^10.1^2^^~1~^~A~^^^1^8.4^11.9^^^^^~03/01/2005~ -~11412~^~430~^2.3^2^^~1~^~A~^^^1^1.7^2.9^^^^^~03/01/2005~ -~11413~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1986~ -~11413~^~291~^5.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11413~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11413~^~401~^3.8^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~421~^39.5^0^^~4~^~BFFN~^~11356~^^^^^^^^^~02/01/2007~ -~11413~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11414~^~291~^1.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11414~^~317~^4.1^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11414~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11414~^~401~^10.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11416~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11416~^~401~^28.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11417~^~291~^0.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11417~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11417~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11417~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~421~^13.4^0^^~4~^~BFSN~^~11419~^^^^^^^^^~03/01/2007~ -~11417~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11418~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11418~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11418~^~401~^11.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11419~^~291~^2.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11419~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11419~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11419~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11422~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11422~^~291~^0.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11422~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11422~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11422~^~401~^9.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~421~^8.2^0^^~4~^~BFSN~^~11643~^^^^^^^^^~03/01/2007~ -~11422~^~430~^1.1^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11423~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11423~^~291~^1.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11423~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11423~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11423~^~401~^4.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~421~^6.2^0^^~4~^~BFSY~^~11422~^^^^^^^^^~03/01/2007~ -~11423~^~430~^0.8^0^^~4~^~BFSN~^~11422~^^^^^^^^^~01/01/2003~ -~11424~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11424~^~291~^2.9^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11424~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11424~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11424~^~401~^4.2^105^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~421~^9.8^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~ -~11424~^~430~^16.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~11426~^~291~^8.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11426~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11426~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11426~^~401~^3.5^15^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11427~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11427~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11427~^~401~^21.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11428~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11428~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11428~^~401~^10.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11429~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11429~^~291~^1.6^8^5.8e-02^~1~^~A~^^^2^0.7^2.7^4^1.4^1.7^~2, 3~^~12/01/2002~ -~11429~^~313~^6.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11429~^~317~^0.6^4^9.6e-02^~1~^~A~^^^1^0.3^0.8^3^0.2^0.8^~2, 3~^~12/01/2002~ -~11429~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11429~^~401~^14.8^16^1.9^~6~^~JA~^^^3^3.8^25.1^15^10.7^18.9^~4~^~12/01/2002~ -~11429~^~421~^6.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11429~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11429~^~430~^1.3^7^0.1^~1~^~A~^^^2^0.5^3.1^3^0.7^1.9^~2, 3~^~12/01/2002~ -~11429~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^^^^^~03/01/2006~ -~11430~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11430~^~291~^1.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11430~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11430~^~401~^22.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~421~^7.3^0^^~4~^~BFSN~^~11429~^^^^^^^^^~02/01/2007~ -~11430~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11430~^~454~^0.1^0^^~4~^~BFSN~^~11429~^^^^^^^^^~02/01/2007~ -~11431~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~11431~^~291~^1.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11431~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11431~^~401~^15.1^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~421~^6.8^0^^~4~^~BFSN~^~11430~^^^^^^^^^~02/01/2007~ -~11431~^~430~^0.3^0^^~4~^~BFSN~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~454~^0.1^0^^~4~^~BFSN~^~11430~^^^^^^^^^~02/01/2007~ -~11432~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11432~^~291~^23.9^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11432~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11432~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~421~^109.7^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~430~^4.5^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11435~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11435~^~291~^2.3^2^^~1~^^^^1^2.2^2.5^1^^^^~08/01/2012~ -~11435~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11435~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11435~^~401~^25.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~421~^14.1^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11435~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11436~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11436~^~291~^1.8^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/1984~ -~11436~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11436~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11436~^~401~^18.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~421~^15.2^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11436~^~430~^0.2^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/2012~ -~11437~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11437~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11437~^~401~^8.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11438~^~291~^3.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11438~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11438~^~401~^4.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~421~^25.9^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11438~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11439~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11439~^~291~^2.9^2^^~1~^^^^1^2.6^3.1^1^^^^~03/01/2006~ -~11439~^~313~^7.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11439~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11439~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11439~^~401~^14.7^184^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~421~^10.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11439~^~430~^13.0^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~454~^0.5^2^^~1~^~A~^^^1^0.3^0.7^1^^^^~03/01/2006~ -~11442~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11442~^~291~^0.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11442~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11442~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~421~^6.0^0^^~4~^~BFSN~^~11446~^^^^^^^^^~03/01/2007~ -~11442~^~430~^2.3^0^^~4~^~BFSN~^~11446~^^^^^^^^^~02/01/2003~ -~11444~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11444~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11444~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11444~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11444~^~401~^3.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11444~^~421~^12.9^0^^~4~^~BFSN~^~11446~^^^^^^^^^~03/01/2007~ -~11444~^~430~^5.0^0^^~4~^~BFSN~^~11446~^^^^^^^^^~03/01/2007~ -~11445~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11445~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11445~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11445~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11445~^~401~^3.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11445~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11445~^~430~^66.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11446~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11446~^~291~^0.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11446~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11446~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11446~^~401~^39.0^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~421~^10.4^0^^~4~^~BFSN~^~11445~^^^^^^^^^~03/01/2007~ -~11446~^~430~^4.0^0^^~4~^~T~^~11445~^^^^^^^^^~03/01/2007~ -~11447~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11447~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11447~^~401~^73.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11448~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11448~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11450~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11450~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11450~^~401~^29.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11451~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11451~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11451~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11451~^~401~^17.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~291~^1.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11452~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11452~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11452~^~401~^15.3^8^1.7^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11453~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11453~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11453~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11453~^~401~^8.3^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~421~^41.2^0^^~4~^~BFSN~^~11001~^^^^^^^^^~03/01/2007~ -~11453~^~430~^70.6^0^^~4~^~BFSN~^~11044~^^^^^^^^^~03/01/2007~ -~11454~^~291~^0.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11454~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11454~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11454~^~401~^12.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11457~^~291~^2.2^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11457~^~317~^1.0^5^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11457~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11457~^~401~^28.1^7^4.1^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~421~^19.3^0^^~4~^~BFSN~^~11463~^^^^^^^^^~10/01/2008~ -~11457~^~430~^482.9^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~454~^102.6^0^^~4~^~BFSN~^~11463~^^^^^^^^^~10/01/2008~ -~11458~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11458~^~291~^2.4^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~313~^37.8^20^16.2^~1~^~A~^^^2^20.0^70.3^2^-32.3^107.8^~4~^~02/01/2006~ -~11458~^~317~^1.5^5^0.3^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11458~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11458~^~401~^9.8^12^1.5^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~421~^19.7^0^^~4~^~BFSN~^~11464~^^^^^^^^^~12/01/2006~ -~11458~^~430~^493.6^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11458~^~454~^89.0^0^^~4~^~BFSN~^~11464~^^^^^^^^^~10/01/2008~ -~11459~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11459~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11459~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11459~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11459~^~401~^13.5^117^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~421~^15.2^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~430~^380.8^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11461~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11461~^~291~^2.4^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11461~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11461~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11461~^~401~^14.3^6^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~421~^18.4^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2006~ -~11461~^~430~^461.6^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~454~^83.2^0^^~4~^~BFSN~^~11854~^^^^^^^^^~10/01/2008~ -~11463~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2007~ -~11463~^~291~^2.9^11^0.1^~1~^~A~^^^1^2.2^3.2^8^2.5^3.2^~2, 3~^~07/01/2007~ -~11463~^~317~^6.0^4^2.5e-02^~1~^~A~^^^1^5.4^6.5^1^5.6^6.3^~2, 3~^~07/01/2007~ -~11463~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11463~^~401~^5.5^11^0.6^~1~^~A~^^^1^0.7^8.4^7^3.8^7.1^~1, 2, 3~^~07/01/2007~ -~11463~^~421~^22.1^3^1.2^~1~^~AS~^^^^19.7^23.9^^^^^~07/01/2007~ -~11463~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~430~^372.0^4^30.4^~1~^~A~^^^1^292.6^441.1^3^275.0^468.9^~2, 3~^~07/01/2007~ -~11463~^~454~^117.4^3^8.0^~1~^~A~^^^^103.4^131.3^^^^^~07/01/2007~ -~11464~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2007~ -~11464~^~291~^3.7^6^0.1^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~317~^5.5^4^6.5e-02^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11464~^~401~^2.2^6^0.5^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~421~^24.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11464~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~430~^540.7^3^4.2^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~454~^112.0^2^^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11467~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11467~^~291~^1.0^3^0.1^~1~^~A~^^^1^0.8^1.1^2^0.5^1.4^~2, 3~^~04/01/2009~ -~11467~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11467~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11467~^~401~^19.3^3^2.0^~1~^~A~^^^1^16.0^23.0^2^10.5^28.1^~2, 3~^~04/01/2009~ -~11467~^~421~^7.1^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11467~^~430~^3.2^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11468~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2009~ -~11468~^~291~^1.1^4^7.5e-02^~6~^~JA~^^^2^0.8^1.4^2^0.7^1.4^~2, 3~^~04/01/2009~ -~11468~^~317~^0.2^18^0.1^~6~^~JA~^^^3^0.0^3.0^12^-0.1^0.5^~2, 3~^~02/01/2003~ -~11468~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11468~^~401~^11.6^3^2.2^~1~^~A~^^^1^7.1^14.1^2^1.8^21.3^~2, 3~^~04/01/2009~ -~11468~^~421~^7.9^0^^~4~^~BFSY~^~11641~^^^^^^^^^~04/01/2009~ -~11468~^~430~^4.4^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11471~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11471~^~291~^1.4^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11471~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11471~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11471~^~401~^2.7^6^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~421~^4.9^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11471~^~430~^2.8^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11473~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11473~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11473~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11473~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11473~^~401~^6.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11474~^~291~^1.4^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11474~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11474~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11474~^~401~^6.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~421~^9.7^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11474~^~430~^5.4^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11475~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11475~^~291~^1.2^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11475~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11475~^~401~^18.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~421~^7.3^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~430~^3.3^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11476~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11476~^~291~^1.9^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11476~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11476~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11476~^~401~^10.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~421~^6.2^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11476~^~430~^3.5^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11477~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11477~^~291~^1.0^12^5.5e-02^~6~^~JA~^^^6^0.7^1.6^2^0.8^1.2^~2, 3~^~04/01/2009~ -~11477~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2009~ -~11477~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11477~^~401~^17.9^9^0.5^~6~^~JA~^^^3^12.8^21.0^6^16.4^19.2^~2, 3~^~04/01/2009~ -~11477~^~421~^9.5^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11477~^~430~^4.3^0^^~4~^~BFSN~^~11478~^^^^^^^^^~10/01/2002~ -~11478~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11478~^~291~^1.0^4^0.1^~1~^~A~^^^1^0.8^1.3^3^0.6^1.3^~2, 3~^~04/01/2009~ -~11478~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2009~ -~11478~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11478~^~401~^12.9^4^2.3^~1~^~A~^^^1^9.9^19.7^3^5.5^20.2^~2, 3~^~04/01/2009~ -~11478~^~421~^9.4^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11478~^~430~^4.2^2^^~1~^~A~^^^2^4.0^4.4^1^^^^~04/01/2009~ -~11478~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11479~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11479~^~291~^1.3^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11479~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11479~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11479~^~401~^5.3^7^1.3^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~430~^4.2^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11480~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11480~^~291~^1.3^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11480~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11480~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11480~^~401~^3.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~421~^9.4^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11480~^~430~^4.2^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11481~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11481~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11481~^~401~^2.3^18^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11482~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11482~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11482~^~401~^11.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~291~^4.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11483~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11483~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11483~^~401~^10.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~291~^2.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11484~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11484~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11484~^~401~^6.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11485~^~291~^2.0^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11485~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11485~^~401~^21.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~430~^1.1^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11486~^~291~^3.2^0^^~4~^~BFSN~^~11644~^^^^^^^^^~10/01/2009~ -~11486~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11486~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11486~^~401~^15.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~430~^1.0^0^^~4~^~BFSN~^~11485~^^^^^^^^^~04/01/2003~ -~11487~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11487~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11487~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11487~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11487~^~401~^6.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~430~^1.4^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11488~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11488~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11488~^~401~^3.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11489~^~291~^3.9^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11489~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11489~^~401~^11.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~421~^11.8^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~430~^1.3^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11490~^~291~^4.9^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11490~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11490~^~401~^9.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~421~^14.6^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~430~^1.6^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11491~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11491~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11491~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11491~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11491~^~401~^6.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~421~^8.7^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~ -~11491~^~430~^1.0^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11492~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11492~^~291~^1.5^0^^~4~^~BFSN~^~11870~^^^^^^^^^~02/01/2011~ -~11492~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11492~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11492~^~401~^2.1^3^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~421~^8.2^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~430~^0.9^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11493~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1988~ -~11493~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~11493~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11493~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11493~^~401~^3.5^3^2.5^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~421~^7.5^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~ -~11493~^~430~^0.8^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11495~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11495~^~291~^3.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11495~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11495~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11495~^~401~^15.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~291~^4.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11496~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11496~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11496~^~401~^8.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~291~^3.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11497~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11497~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11497~^~401~^6.4^29^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11499~^~291~^2.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11499~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11499~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11499~^~401~^4.6^24^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~291~^4.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11501~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11501~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11501~^~401~^8.5^23^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11502~^~291~^4.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11502~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11502~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11502~^~401~^5.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~421~^29.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~430~^2.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11503~^~291~^2.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11503~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11503~^~401~^55.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11504~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11504~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11504~^~401~^16.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11505~^~291~^5.3^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11505~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11505~^~401~^11.0^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~430~^302.2^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11506~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11506~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11506~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11506~^~401~^1.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11506~^~430~^108.6^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11507~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11507~^~291~^3.0^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11507~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~11507~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11507~^~401~^2.4^4^1.0^~1~^~A~^^^1^0.1^4.9^3^-0.9^5.7^~1, 2, 3~^~05/01/2004~ -~11507~^~421~^12.3^0^^~4~^~BFSN~^~11508~^^^^^^^^^~02/01/2007~ -~11507~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2002~ -~11507~^~430~^1.8^2^^~1~^~A~^^^1^1.5^2.0^1^^^^~10/01/2002~ -~11508~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11508~^~291~^3.3^4^0.1^~1~^~A~^^^1^3.0^3.6^3^2.8^3.8^~2, 3~^~12/01/2002~ -~11508~^~317~^0.2^58^0.1^~11~^~JO~^^^11^0.0^5.7^55^-4.3e-02^0.4^~1, 4~^~04/01/2003~ -~11508~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11508~^~401~^19.6^4^8.5^~1~^~A~^^^1^0.1^40.4^3^-7.5^46.7^~1, 2, 3~^~12/01/2002~ -~11508~^~421~^13.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11508~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2002~ -~11508~^~430~^2.3^3^0.4^~11~^~JO~^^^2^1.6^3.0^1^-3.5^8.2^~2, 3~^~04/01/2003~ -~11508~^~454~^34.6^2^^~1~^~A~^^^1^31.6^37.7^1^^^^~03/01/2006~ -~11510~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~11510~^~291~^2.5^4^0.1^~1~^~A~^^^1^2.4^2.8^3^2.1^2.8^~2, 3~^~10/01/2002~ -~11510~^~317~^0.2^2^^~1~^~A~^^^1^0.2^0.2^1^^^^~04/01/2003~ -~11510~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11510~^~401~^12.8^4^3.0^~1~^~A~^^^1^4.0^16.7^3^3.2^22.3^~2, 3~^~10/01/2002~ -~11510~^~421~^10.8^0^^~4~^~BFSN~^~11508~^^^^^^^^^~02/01/2007~ -~11510~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2002~ -~11510~^~430~^2.1^2^^~1~^~A~^^^1^1.7^2.5^1^^^^~10/01/2002~ -~11512~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11512~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11512~^~317~^0.7^4^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11512~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11512~^~401~^26.4^8^2.4^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~421~^13.0^0^^~4~^~BFSN~^~11508~^^^^^^^^^~02/01/2007~ -~11512~^~430~^2.2^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11514~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11514~^~291~^1.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11514~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11514~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11514~^~401~^5.2^4^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~430~^2.4^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11516~^~291~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11516~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11516~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11516~^~401~^13.3^6^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11517~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11517~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11517~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11517~^~401~^9.1^6^1.0^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~430~^2.5^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11518~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11518~^~291~^4.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11518~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11518~^~401~^4.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~421~^17.3^0^^~4~^~BFSN~^~11352~^^^^^^^^^~03/01/2007~ -~11518~^~430~^1.0^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~11519~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11519~^~291~^5.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11519~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11519~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~421~^21.3^0^^~4~^~BFSN~^~11365~^^^^^^^^^~03/01/2007~ -~11519~^~430~^1.2^0^^~4~^~BFSN~^~11518~^^^^^^^^^~12/01/2002~ -~11520~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11520~^~291~^3.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11520~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11520~^~401~^52.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11520~^~430~^108.6^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11521~^~291~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11521~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11521~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11521~^~401~^35.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11522~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11522~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11522~^~401~^21.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11523~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11523~^~401~^18.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11525~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11525~^~401~^96.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11526~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11526~^~401~^38.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11527~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11527~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11527~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11527~^~401~^23.4^8^7.6e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~421~^8.6^0^^~4~^~BFSN~^~11529~^^^^^^^^^~03/01/2007~ -~11527~^~430~^10.1^0^^~4~^~BFSN~^~11529~^^^^^^^^^~02/01/2003~ -~11529~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11529~^~291~^1.2^5^0.2^~6~^~JA~^^^2^0.7^2.0^3^0.4^1.9^~2, 3~^~09/01/2002~ -~11529~^~313~^2.3^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11529~^~317~^0.0^36^1.1e-02^~6~^~JA~^^^3^0.0^0.3^35^0.0^4.5e-02^~4~^~09/01/2002~ -~11529~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11529~^~401~^13.7^25^0.8^~6~^~JA~^^^4^7.8^19.8^18^11.8^15.4^~4~^~06/01/2010~ -~11529~^~421~^6.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11529~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~09/01/2002~ -~11529~^~430~^7.9^15^4.7^~11~^~JO~^^^6^2.2^60.0^11^-2.5^18.3^~4~^~09/01/2002~ -~11529~^~454~^0.1^2^^~1~^~A~^^^2^0.1^0.1^^^^^~03/01/2006~ -~11530~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2003~ -~11530~^~291~^0.7^4^4.8e-02^~1~^~A~^^^1^0.6^0.8^3^0.5^0.8^~4~^~10/01/2002~ -~11530~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2003~ -~11530~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11530~^~401~^22.8^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11530~^~421~^6.9^0^^~4~^~BFSY~^~11529~^^^^^^^^^~03/01/2007~ -~11530~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~4~^~10/01/2002~ -~11530~^~430~^2.8^4^0.2^~1~^~A~^^^1^2.6^3.5^3^2.1^3.5^~4~^~10/01/2002~ -~11531~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11531~^~291~^1.9^3^0.1^~1~^~A~^^^1^1.7^2.2^1^-0.3^4.1^~2, 3~^~08/01/2014~ -~11531~^~313~^5.1^12^1.3^~1~^~A~^^^2^3.3^9.2^3^0.7^9.4^~4~^~03/01/2006~ -~11531~^~317~^0.7^3^0.2^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11531~^~401~^12.6^4^2.6^~1~^~A~^^^1^9.3^20.8^2^1.2^23.8^~2, 3~^~08/01/2014~ -~11531~^~421~^6.4^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~ -~11531~^~430~^2.6^0^^~4~^~BFSN~^~11530~^^^^^^^^^~08/01/2014~ -~11533~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11533~^~291~^1.0^39^4.4e-02^~1~^^^^4^0.3^1.9^38^0.9^1.0^~4~^~11/01/2002~ -~11533~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11533~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11533~^~401~^7.9^40^0.5^~1~^^^^4^1.0^13.6^39^6.7^8.9^~4~^~11/01/2002~ -~11533~^~421~^10.4^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~430~^2.4^2^^~1~^^^^1^2.3^2.4^1^^^^~03/01/2007~ -~11537~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11537~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11537~^~401~^6.2^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11540~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11540~^~291~^0.4^2^^~1~^^^^1^0.4^0.4^^^^^~12/01/2002~ -~11540~^~313~^6.9^11^3.1^~1~^~A~^^^2^3.8^10.0^1^-32.4^46.2^~4~^~08/01/2014~ -~11540~^~317~^0.5^7^0.1^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11540~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11540~^~401~^70.1^3^3.0^~1~^~A~^^^1^66.2^76.1^2^57.0^83.1^~2, 3~^~04/01/2014~ -~11540~^~421~^6.8^0^^~4~^~BFSN~^~11549~^^^^^^^^^~03/01/2007~ -~11540~^~430~^2.3^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11546~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~11546~^~291~^4.1^31^8.3e-02^~6~^~JA~^^^6^2.5^5.8^19^3.9^4.2^~2, 3~^~12/01/2005~ -~11546~^~317~^5.3^3^0.8^~1~^~A~^^^1^4.0^7.0^2^1.5^9.1^~2, 3~^~09/01/2002~ -~11546~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11546~^~401~^21.9^41^1.5^~6~^~JA~^^^7^2.3^46.0^26^18.6^25.0^~2, 3~^~09/01/2002~ -~11546~^~421~^38.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11546~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~08/01/2010~ -~11546~^~430~^11.4^3^1.0^~1~^~A~^^^2^9.0^13.2^1^-1.6^24.5^~2, 3~^~08/01/2010~ -~11546~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11547~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11547~^~291~^1.9^33^6.0e-02^~6~^~JA~^^^4^0.9^2.8^26^1.8^2.0^~2, 3~^~09/01/2002~ -~11547~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2004~ -~11547~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11547~^~401~^10.6^48^0.7^~6~^~JA~^^^5^1.0^23.4^34^9.1^12.1^~2, 3~^~09/01/2002~ -~11547~^~421~^17.6^0^^~4~^~BFSN~^~11546~^^^^^^^^^~02/01/2007~ -~11547~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~02/01/2007~ -~11547~^~430~^3.4^3^0.2^~1~^~A~^^^1^3.2^3.8^2^2.5^4.2^~2, 3~^~02/01/2007~ -~11547~^~454~^0.2^0^^~4~^~BFSN~^~11546~^^^^^^^^^~02/01/2007~ -~11548~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11548~^~291~^16.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11548~^~317~^5.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11548~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11548~^~401~^116.7^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~430~^48.8^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~ -~11549~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~11549~^~291~^1.5^3^2.7e-02^~1~^~A~^^^1^1.4^1.6^1^1.1^1.8^~2, 3~^~12/01/2002~ -~11549~^~313~^34.9^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~11549~^~317~^0.6^6^0.1^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11549~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11549~^~401~^7.0^5^0.5^~1~^~A~^^^1^5.6^7.9^4^5.5^8.4^~2, 3~^~12/01/2002~ -~11549~^~421~^9.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11549~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~08/01/2010~ -~11549~^~430~^2.8^3^^~1~^~A~^^^2^2.5^3.1^^^^~2, 3~^~08/01/2010~ -~11549~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11551~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11551~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11551~^~317~^0.2^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~401~^12.4^73^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~430~^3.8^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11553~^~291~^1.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11553~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11553~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11553~^~401~^12.7^54^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~291~^2.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11555~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11555~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11555~^~401~^10.0^61^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11557~^~291~^1.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11557~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11557~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11557~^~401~^13.2^28^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~421~^13.0^0^^~4~^~BFSN~^~11549~^^^^^^^^^~02/01/2007~ -~11557~^~430~^3.7^0^^~4~^~BFSN~^~11549~^^^^^^^^^~02/01/2007~ -~11557~^~454~^1.1^0^^~4~^~BFSN~^~11549~^^^^^^^^^~02/01/2007~ -~11559~^~291~^1.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11559~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11559~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11559~^~401~^21.5^27^2.4^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11563~^~291~^3.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11563~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11563~^~401~^30.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11564~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11564~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11564~^~401~^21.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~421~^11.1^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11564~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~03/01/2007~ -~11565~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11565~^~291~^2.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~317~^0.2^18^0.1^~1~^~A~^^^7^0.0^1.6^17^-7.3e-02^0.3^~4~^~12/01/2002~ -~11565~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11565~^~401~^11.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~421~^8.7^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11565~^~430~^0.1^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11566~^~291~^1.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11566~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11566~^~401~^4.4^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11567~^~291~^2.0^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11567~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11567~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11567~^~401~^3.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~421~^8.7^0^^~4~^~BFSN~^~11565~^^^^^^^^^~03/01/2007~ -~11567~^~430~^0.1^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11568~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11568~^~291~^3.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11568~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11568~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11568~^~401~^60.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~430~^251.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~11569~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11569~^~291~^3.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11569~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11569~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11569~^~401~^27.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~421~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~03/01/2007~ -~11569~^~430~^367.6^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11570~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11570~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11570~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11570~^~401~^15.5^5^1.7^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11574~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11574~^~317~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11574~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11574~^~401~^26.8^12^2.4^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1993~ -~11575~^~291~^3.4^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11575~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11575~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11575~^~401~^21.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~03/01/2007~ -~11575~^~430~^518.9^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11576~^~291~^2.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11576~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11576~^~401~^25.8^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11577~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~291~^3.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~317~^1.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11577~^~401~^18.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~421~^2.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~430~^415.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11578~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2004~ -~11578~^~291~^0.5^6^0.1^~1~^~A~^^^1^0.3^0.8^2^0.1^0.9^~1, 2, 3~^~04/01/2013~ -~11578~^~317~^0.2^1^^~1~^^^^^^^^^^^~03/01/2015~ -~11578~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11578~^~401~^54.3^6^1.4^~1~^~A~^^^1^36.0^59.3^3^49.7^58.8^~2, 3~^~04/01/2013~ -~11578~^~421~^8.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11578~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~11578~^~430~^6.1^4^0.1^~11~^~JO~^^^2^5.3^6.9^2^5.3^6.9^~2, 3~^~07/01/2015~ -~11578~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11579~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11579~^~291~^3.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~313~^37.0^10^6.5^~1~^~A~^^^1^23.5^57.1^4^18.9^55.0^~4~^~01/01/2006~ -~11579~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11579~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11579~^~401~^3.8^56^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11581~^~291~^3.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11581~^~313~^37.0^10^6.5^~1~^~A~^^^1^23.5^57.1^4^18.9^55.0^~4~^~01/01/2006~ -~11581~^~317~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11581~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11581~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~421~^18.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~430~^18.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11583~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~11583~^~291~^4.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11583~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11583~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11583~^~401~^10.4^31^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11584~^~291~^4.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11584~^~317~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11584~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11584~^~401~^3.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~421~^24.1^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~ -~11584~^~430~^23.5^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~ -~11585~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~291~^0.5^12^7.2e-02^~1~^~A~^^^1^0.4^0.6^3^0.3^0.7^~1, 4~^~04/01/2013~ -~11585~^~317~^0.2^1^^~1~^^^^^^^^^^^~04/01/2013~ -~11585~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~401~^54.3^6^7.8^~1~^~A~^^^1^43.7^57.8^1^-45.8^154.4^~4~^~04/01/2013~ -~11585~^~421~^8.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2015~ -~11585~^~430~^6.1^4^0.1^~11~^~JO~^^^2^5.3^6.9^2^5.3^6.9^~2, 3~^~07/01/2015~ -~11585~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11587~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11587~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11587~^~401~^102.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11588~^~291~^3.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11588~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11588~^~401~^4.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~421~^36.2^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11588~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11590~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11590~^~291~^2.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11590~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11590~^~401~^1.3^6^6.5e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~421~^18.5^0^^~4~^~BFSN~^~11588~^^^^^^^^^~03/01/2007~ -~11590~^~430~^0.2^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11591~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11591~^~291~^0.5^0^^~4~^~BFSN~^~11203~^^^^^^^^^~08/01/2001~ -~11591~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11591~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11591~^~401~^43.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~421~^9.0^0^^~4~^~BFSN~^~11203~^^^^^^^^^~03/01/2007~ -~11591~^~430~^250.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11593~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11593~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11593~^~401~^13.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11594~^~291~^1.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11594~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11594~^~401~^10.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~421~^4.9^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11594~^~430~^2.8^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11595~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~ -~11595~^~317~^1.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11595~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11595~^~401~^18.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11596~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11596~^~401~^9.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11597~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11597~^~401~^45.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11599~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11599~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11601~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11601~^~291~^4.1^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11601~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11601~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11601~^~401~^17.1^6^5.2^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~421~^16.5^0^^~4~^~BFSN~^~11507~^^^^^^^^^~03/01/2007~ -~11601~^~430~^2.3^0^^~4~^~BFSN~^~11507~^^^^^^^^^~03/01/2007~ -~11602~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11602~^~291~^3.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11602~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11602~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11602~^~401~^12.1^12^3.0^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~421~^16.2^0^^~4~^~BFSY~^~11601~^^^^^^^^^~03/01/2007~ -~11602~^~430~^2.3^0^^~4~^~BFSN~^~11601~^^^^^^^^^~03/01/2007~ -~11603~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11603~^~291~^4.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11603~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11603~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11603~^~401~^20.2^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~421~^13.6^0^^~4~^~BFSN~^~11588~^^^^^^^^^~03/01/2007~ -~11603~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11604~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11604~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11604~^~401~^14.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~291~^2.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11605~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11605~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11605~^~401~^2.4^22^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11609~^~291~^0.8^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11609~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11609~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11609~^~401~^2.3^62^8.1e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~421~^15.0^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~430~^0.3^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11613~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11613~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11613~^~401~^35.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11614~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11614~^~401~^32.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1993~ -~11615~^~291~^26.2^0^^~4~^^^^^^^^^^^~05/01/1993~ -~11615~^~317~^9.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11615~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11615~^~401~^660.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11616~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11616~^~401~^48.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~291~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11617~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11617~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11617~^~401~^26.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11618~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11618~^~401~^13.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11620~^~291~^3.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11620~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11620~^~401~^141.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11621~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11621~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11621~^~401~^97.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~291~^10.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11624~^~317~^5.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11624~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11624~^~401~^118.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~291~^32.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11625~^~317~^32.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~11625~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11625~^~401~^149.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~11626~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11626~^~317~^0.6^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~11626~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11626~^~401~^0.3^5^8.0e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~421~^7.8^0^^~4~^~BFSN~^~11001~^^^^^^^^^~03/01/2007~ -~11626~^~430~^13.4^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11632~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1993~ -~11632~^~291~^2.6^3^0.4^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11632~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11632~^~401~^10.0^3^2.1^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~430~^12.9^0^^~4~^~BFSN~^~11979~^^^^^^^^^~02/01/2003~ -~11637~^~291~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11637~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11637~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11637~^~401~^29.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11640~^~291~^15.7^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~317~^5.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11640~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11640~^~401~^39.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~421~^55.0^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~430~^3.9^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11641~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11641~^~291~^1.1^8^7.8e-02^~1~^^^^5^0.9^1.6^2^0.7^1.4^~2, 3~^~01/01/2003~ -~11641~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11641~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11641~^~401~^17.0^5^0.7^~1~^^^^2^12.8^20.3^3^14.5^19.4^~2, 3~^~01/01/2003~ -~11641~^~421~^6.7^0^^~4~^~BFSN~^~11205~^^^^^^^^^~03/01/2007~ -~11641~^~430~^3.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11642~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11642~^~291~^1.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11642~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11642~^~401~^5.5^6^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~421~^7.9^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11642~^~430~^3.5^0^^~4~^~BFSN~^~11641~^^^^^^^^^~01/01/2003~ -~11643~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11643~^~291~^1.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11643~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11643~^~401~^12.3^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~421~^10.0^0^^~4~^~BFSY~^~11644~^^^^^^^^^~03/01/2007~ -~11643~^~430~^1.1^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11644~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11644~^~291~^2.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11644~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11644~^~401~^9.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~421~^10.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11644~^~430~^4.4^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11644~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11645~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11645~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11645~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11645~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11645~^~401~^10.5^25^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~421~^12.2^0^^~4~^~BFSN~^~11508~^^^^^^^^^~02/01/2007~ -~11645~^~430~^2.1^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11647~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11647~^~291~^3.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11647~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11647~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11647~^~401~^10.8^29^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~430~^2.6^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11649~^~291~^1.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11649~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11649~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11649~^~401~^8.6^5^1.4^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11653~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11653~^~401~^21.7^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11654~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11654~^~401~^6.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11655~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11655~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11655~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11655~^~401~^8.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~421~^9.9^0^^~4~^~BFSN~^~11128~^^^^^^^^^~02/01/2007~ -~11655~^~430~^15.5^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11656~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~291~^1.2^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~317~^6.1^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~326~^0.5^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~328~^0.5^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~401~^3.7^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~421~^55.5^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~430~^0.5^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11657~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~291~^1.5^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~313~^0.0^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~317~^0.8^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~326~^0.2^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~11657~^~401~^6.2^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~421~^13.3^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~428~^0.1^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~430~^1.8^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~454~^0.3^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11658~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~291~^0.7^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~313~^4.7^0^^~4~^~RA~^^^^^^^^^^~12/01/2010~ -~11658~^~317~^11.1^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~326~^0.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~11658~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11658~^~401~^7.3^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~421~^61.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~428~^0.3^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~430~^126.5^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~454~^29.9^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11659~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11659~^~291~^2.1^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~313~^8.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11659~^~317~^0.8^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~ -~11659~^~326~^0.1^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~11659~^~401~^9.0^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~421~^11.6^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~430~^2.1^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~454~^0.0^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11660~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11660~^~291~^1.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11660~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11660~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11660~^~401~^18.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11663~^~291~^7.7^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~317~^7.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11663~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11663~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~421~^63.3^0^^~4~^~BFSN~^~11442~^^^^^^^^^~03/01/2007~ -~11663~^~430~^24.4^0^^~4~^~BFSN~^~11442~^^^^^^^^^~02/01/2003~ -~11666~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~11666~^~291~^0.4^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11666~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11666~^~401~^0.9^4^1.0e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~421~^6.5^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~430~^2.5^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11667~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11667~^~291~^3.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~317~^7.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11667~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11667~^~401~^10.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~421~^66.0^0^^~4~^~BFSN~^~11442~^^^^^^^^^~03/01/2007~ -~11667~^~430~^25.5^0^^~4~^~BFSN~^~11442~^^^^^^^^^~02/01/2003~ -~11669~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11669~^~291~^0.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11669~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11669~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11669~^~401~^3.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~421~^13.9^0^^~4~^~BFSN~^~11446~^^^^^^^^^~03/01/2007~ -~11669~^~430~^5.3^0^^~4~^~BFSN~^~11446~^^^^^^^^^~03/01/2007~ -~11670~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11670~^~291~^1.5^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11670~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11670~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11670~^~401~^242.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~421~^11.1^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11670~^~430~^14.3^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11671~^~317~^1.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11671~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11671~^~401~^16.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11672~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~291~^3.3^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~313~^0.4^0^^~4~^~RA~^^^^^^^^^^~09/01/2015~ -~11672~^~317~^8.9^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~326~^0.3^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~11672~^~401~^27.6^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~421~^74.2^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~430~^2.7^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~454~^3.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11674~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11674~^~291~^2.2^15^^~1~^~A~^^^0^1.8^2.3^^^^~2~^~06/01/2002~ -~11674~^~317~^0.4^22^1.0e-02^~6~^~JA~^^^4^0.0^2.0^3^0.3^0.4^~2~^~06/01/2002~ -~11674~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11674~^~401~^9.6^21^^~1~^~A~^^^0^8.3^12.6^^^^~2~^~06/01/2002~ -~11674~^~421~^14.8^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11674~^~429~^0.0^22^^~1~^~A~^^^0^0.0^0.0^^^^~2~^~05/01/2002~ -~11674~^~430~^2.0^23^^~11~^~JO~^^^1^1.1^2.8^^^^~2~^~05/01/2002~ -~11674~^~454~^0.2^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11675~^~291~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11675~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11675~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11675~^~401~^15.1^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11676~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11676~^~401~^28.9^3^3.2^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11677~^~291~^3.2^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11677~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11677~^~401~^8.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~421~^11.3^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~430~^0.8^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11683~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~291~^23.6^0^^~4~^^^^^^^^^^^~08/01/2007~ -~11683~^~317~^8.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11683~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11683~^~401~^14.6^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~421~^72.1^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~430~^108.0^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11693~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~11693~^~291~^1.9^0^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11693~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11693~^~401~^9.2^33^0.9^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~421~^12.9^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~430~^5.3^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11695~^~291~^0.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11695~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11695~^~401~^16.0^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11696~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11696~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11696~^~401~^9.0^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~291~^1.3^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11697~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11697~^~401~^1.9^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~291~^3.0^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11698~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11698~^~401~^1.4^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11700~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11700~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11700~^~401~^41.1^5^8.3^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11701~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11701~^~401~^0.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11702~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~11702~^~291~^5.7^0^^~4~^~BFSN~^~11007~^^^^^^^^^~08/01/2015~ -~11702~^~317~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11702~^~401~^7.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~421~^34.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11702~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~430~^14.8^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11702~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11703~^~291~^4.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11703~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11703~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11703~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~421~^29.2^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~430~^12.6^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~454~^0.1^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11705~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11705~^~291~^2.0^4^8.5e-02^~1~^~A~^^^1^1.8^2.2^3^1.7^2.2^~2, 3~^~12/01/2002~ -~11705~^~313~^21.9^13^17.9^~1~^~A~^^^2^4.0^39.9^1^-206.1^250.0^~4~^~02/01/2006~ -~11705~^~317~^6.1^2^^~1~^~A~^^^1^1.7^10.5^1^^^^~12/01/2002~ -~11705~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11705~^~401~^7.7^4^0.7^~1~^~A~^^^1^6.0^9.5^3^5.2^10.1^~2, 3~^~12/01/2002~ -~11705~^~421~^26.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11705~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~12/01/2002~ -~11705~^~430~^50.6^4^4.3^~1~^~A~^^^1^42.8^62.7^3^36.7^64.4^~2, 3~^~12/01/2002~ -~11705~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11707~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11707~^~291~^1.0^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11707~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11707~^~401~^16.5^120^0.4^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~430~^39.0^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11709~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11709~^~317~^3.9^38^0.7^~6~^~JA~^^^7^0.0^22.0^37^2.3^5.4^~4~^~12/01/2002~ -~11709~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11709~^~401~^24.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~421~^20.9^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11709~^~430~^80.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~454~^0.7^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11710~^~291~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11710~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11710~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11710~^~401~^55.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11710~^~430~^163.1^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11711~^~291~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11711~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11711~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11711~^~401~^33.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~421~^10.8^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~ -~11711~^~430~^4.8^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11712~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11712~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11712~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11712~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11713~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11713~^~401~^35.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~291~^5.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11714~^~317~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11714~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11714~^~401~^10.1^12^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~421~^44.1^0^^~4~^~BFSY~^~11031~^^^^^^^^^~03/01/2007~ -~11714~^~430~^6.2^0^^~4~^~BFSN~^~11031~^^^^^^^^^~12/01/2002~ -~11715~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11715~^~291~^3.6^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11715~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11715~^~401~^8.7^145^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~421~^25.3^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11715~^~430~^3.6^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~291~^4.8^0^^~4~^~BFSN~^~11039~^^^^^^^^^~08/01/2015~ -~11716~^~317~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11716~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11716~^~401~^5.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~421~^37.2^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11716~^~430~^5.2^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11717~^~291~^5.3^0^^~4~^~BFSN~^~11037~^^^^^^^^^~08/01/2015~ -~11717~^~317~^0.6^43^0.1^~1~^^^^5^0.0^6.0^28^0.2^0.9^~2, 3~^~12/01/2002~ -~11717~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11717~^~401~^12.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~421~^36.3^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11718~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11718~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11718~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11718~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11718~^~401~^11.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~421~^9.9^0^^~4~^~BFSY~^~11043~^^^^^^^^^~03/01/2007~ -~11718~^~430~^22.7^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11719~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11719~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11719~^~401~^17.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~291~^5.4^0^^~4~^~BFSN~^~11048~^^^^^^^^^~08/01/2015~ -~11720~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11720~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11720~^~401~^0.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11721~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11721~^~401~^6.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11722~^~291~^3.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11722~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11722~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11722~^~401~^16.3^5^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~421~^15.3^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11722~^~430~^43.2^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11723~^~291~^3.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11723~^~317~^0.2^18^0.1^~1~^^^^3^0.0^3.0^17^-0.1^0.5^~4~^~06/01/2005~ -~11723~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11723~^~401~^9.7^9^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~421~^16.9^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11723~^~430~^47.9^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11723~^~454~^0.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11724~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11724~^~291~^3.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11724~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11724~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11724~^~401~^9.7^9^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~421~^16.9^0^^~4~^~BFSN~^~11053~^^^^^^^^^~01/01/2007~ -~11724~^~430~^47.9^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11724~^~454~^0.1^0^^~4~^~BFSN~^~11053~^^^^^^^^^~01/01/2007~ -~11725~^~291~^3.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11725~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11725~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11725~^~401~^9.7^9^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~421~^16.9^0^^~4~^~BFSN~^~11053~^^^^^^^^^~01/01/2007~ -~11725~^~430~^47.9^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11725~^~454~^0.1^0^^~4~^~BFSN~^~11053~^^^^^^^^^~01/01/2007~ -~11726~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11726~^~291~^1.5^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11726~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11726~^~401~^3.4^1073^6.5e-02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11727~^~291~^1.5^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11727~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11727~^~401~^3.4^1073^6.5e-02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~421~^11.8^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11727~^~430~^31.2^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11728~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~291~^1.5^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11728~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11728~^~401~^4.0^1526^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~421~^8.3^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~430~^31.2^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11729~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/1985~ -~11729~^~291~^1.9^2^^~1~^~A~^^^1^1.6^2.2^1^^^^~08/01/2014~ -~11729~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11729~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11729~^~401~^2.8^6^0.4^~1~^~A~^^^2^0.7^4.8^1^-2.2^7.8^~1, 2, 3~^~07/01/2014~ -~11729~^~421~^14.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~11729~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2011~ -~11729~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2011~ -~11729~^~430~^38.9^2^^~1~^~A~^^^1^36.7^41.0^1^^^^~04/01/2011~ -~11729~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11730~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1993~ -~11730~^~291~^2.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11730~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11730~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11730~^~401~^12.9^80^1.4^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~421~^15.9^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~430~^45.0^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11731~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~291~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1996~ -~11731~^~317~^0.4^40^0.2^~1~^^^^1^0.0^4.0^20^-0.1^0.8^~4~^~03/01/2006~ -~11731~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11731~^~401~^4.1^7^0.9^~1~^^^^^^^^^^^~02/01/1995~ -~11731~^~421~^13.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11731~^~430~^38.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11731~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11732~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~11732~^~291~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1996~ -~11732~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11732~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11732~^~401~^4.1^7^0.9^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~421~^13.5^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11732~^~430~^38.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11732~^~454~^0.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11733~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11733~^~291~^3.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11733~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11733~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11733~^~401~^4.1^7^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~421~^13.5^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11733~^~430~^38.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11733~^~454~^0.1^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11734~^~291~^2.0^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~11734~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11734~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11734~^~401~^3.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~421~^6.3^0^^~4~^~BFSY~^~11080~^^^^^^^^^~02/01/2007~ -~11734~^~430~^0.2^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11735~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~11735~^~291~^1.2^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11735~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11735~^~401~^2.8^168^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~421~^6.9^0^^~4~^~BFSN~^~11082~^^^^^^^^^~01/01/2007~ -~11735~^~430~^0.1^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~454~^219.7^0^^~4~^~BFSN~^~11082~^^^^^^^^^~01/01/2007~ -~11736~^~291~^2.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11736~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11736~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11736~^~401~^24.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~421~^42.5^0^^~4~^~BFSN~^~11097~^^^^^^^^^~02/01/2007~ -~11736~^~430~^484.0^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~454~^0.2^0^^~4~^~BFSN~^~11097~^^^^^^^^^~02/01/2007~ -~11737~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11737~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11737~^~401~^32.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11738~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11738~^~401~^19.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11739~^~291~^2.3^0^^~4~^~BFSN~^~11090~^^^^^^^^^~04/01/2015~ -~11739~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11739~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11739~^~401~^93.2^15^2.0^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11740~^~291~^2.3^0^^~4~^~BFSN~^~11090~^^^^^^^^^~04/01/2015~ -~11740~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11740~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11740~^~401~^93.2^15^2.0^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11741~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11741~^~401~^93.2^15^2.0^~1~^^^^^^^^^^^~08/01/1984~ -~11742~^~291~^3.3^4^0.5^~6~^~JA~^^^3^^^^^^^~11/01/2006~ -~11742~^~313~^4.0^9^^~1~^~A~^^^1^4.0^4.0^0^^^~4~^~11/01/2006~ -~11742~^~317~^1.6^4^0.1^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11742~^~401~^64.9^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~11742~^~421~^40.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11742~^~429~^0.0^4^0.0^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~430~^141.1^4^15.8^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11743~^~291~^3.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11743~^~317~^0.7^20^0.2^~1~^^^^1^0.0^3.0^19^0.1^1.1^~4~^~10/01/2002~ -~11743~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11743~^~401~^40.1^6^5.5^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~421~^16.2^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~ -~11743~^~430~^88.1^0^^~4~^~BFSN~^~11092~^^^^^^^^^~02/01/2007~ -~11744~^~291~^3.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11744~^~317~^1.9^9^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11744~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11744~^~401~^40.1^6^5.5^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~430~^99.5^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11745~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11745~^~291~^2.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11745~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11745~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11745~^~401~^62.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~421~^40.6^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11745~^~430~^140.3^0^^~4~^~BFZN~^~11099~^^^^^^^^^~06/01/2005~ -~11745~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11746~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11746~^~291~^4.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11746~^~317~^0.6^18^0.2^~1~^~A~^^^7^0.0^4.0^17^1.7e-02^1.1^~4~^~06/01/2005~ -~11746~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11746~^~401~^45.7^3^4.1^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~421~^18.1^0^^~4~^~BFSY~^~11098~^^^^^^^^^~02/01/2007~ -~11746~^~430~^193.5^2^^~1~^~A~^^^1^98.0^289.0^1^^^^~04/01/2009~ -~11746~^~454~^0.7^0^^~4~^~BFSN~^~11098~^^^^^^^^^~02/01/2007~ -~11747~^~291~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11747~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11747~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11747~^~401~^2.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~430~^2.0^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11747~^~454~^0.2^0^^~4~^~BFSN~^~11104~^^^^^^^^^~02/01/2007~ -~11748~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11748~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11748~^~401~^18.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11749~^~317~^0.9^6^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11749~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11749~^~401~^51.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11750~^~317~^0.9^6^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11750~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11750~^~401~^42.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11751~^~291~^1.9^5^3.8e-02^~6~^~JA~^^^2^1.8^2.1^3^1.7^2.0^~2, 3~^~03/01/2006~ -~11751~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~317~^0.6^5^0.1^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11751~^~401~^37.5^4^1.4^~1~^~A~^^^1^34.2^40.5^3^32.9^41.9^~2, 3~^~03/01/2006~ -~11751~^~421~^20.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11751~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~03/01/2006~ -~11751~^~430~^108.7^4^18.0^~1~^~A~^^^1^57.5^136.4^3^51.2^166.2^~2, 3~^~03/01/2006~ -~11751~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11752~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11752~^~291~^2.6^4^0.1^~1~^~A~^^^1^2.3^3.0^3^2.1^3.0^~2, 3~^~06/01/2005~ -~11752~^~317~^2.3^2^^~1~^~A~^^^1^1.6^3.0^1^^^^~06/01/2005~ -~11752~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11752~^~401~^10.8^4^2.7^~1~^~A~^^^1^4.3^17.8^3^1.9^19.7^~2, 3~^~06/01/2005~ -~11752~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~06/01/2005~ -~11752~^~430~^47.6^4^7.0^~1~^~A~^^^1^33.9^60.2^3^25.3^69.9^~2, 3~^~06/01/2005~ -~11753~^~291~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11753~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11753~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11753~^~401~^17.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~291~^1.0^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11754~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11754~^~401~^26.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~421~^12.1^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2007~ -~11754~^~430~^34.0^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~454~^0.2^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2007~ -~11755~^~291~^1.7^0^^~4~^~BFSN~^~11110~^^^^^^^^^~08/01/2001~ -~11755~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11755~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11755~^~401~^15.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~291~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11756~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11756~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11756~^~401~^1.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11757~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~11757~^~291~^3.0^4^4.1e-02^~1~^~A~^^^1^2.9^3.1^3^2.8^3.1^~2, 3~^~03/01/2006~ -~11757~^~313~^47.5^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~317~^0.7^4^0.2^~1~^~A~^^^1^0.2^1.1^3^3.6e-02^1.3^~2, 3~^~03/01/2006~ -~11757~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11757~^~401~^3.6^4^0.9^~1~^~A~^^^1^2.0^5.8^3^0.6^6.5^~2, 3~^~03/01/2006~ -~11757~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11757~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~430~^13.7^4^1.6^~1~^~A~^^^1^10.8^18.2^3^8.5^18.8^~2, 3~^~03/01/2006~ -~11757~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11758~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~11758~^~291~^1.8^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11758~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11758~^~401~^2.0^122^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~421~^6.3^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~430~^9.8^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~454~^0.1^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11759~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11759~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11759~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11759~^~401~^2.7^6^6.2e-02^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~430~^9.8^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11760~^~291~^3.3^3^0.1^~1~^~A~^^^1^3.0^3.5^2^2.6^3.9^~2, 3~^~01/01/2003~ -~11760~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11760~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11760~^~401~^2.3^3^0.1^~1~^~A~^^^1^2.2^2.5^2^1.9^2.7^~2, 3~^~01/01/2003~ -~11760~^~421~^8.6^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11760~^~430~^13.6^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11760~^~454~^0.1^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11761~^~291~^2.3^6^^~1~^^^^1^2.0^2.5^^^^~2, 3~^~02/01/2007~ -~11761~^~313~^1.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11761~^~317~^0.6^18^0.4^~1~^^^^3^0.0^7.0^4^-0.5^1.7^~2, 3~^~02/01/2007~ -~11761~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11761~^~401~^44.3^8^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~421~^39.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11761~^~430~^13.8^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11762~^~291~^2.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11762~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11762~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11762~^~401~^31.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~421~^33.5^0^^~4~^~BFSN~^~11136~^^^^^^^^^~01/01/2007~ -~11762~^~430~^11.9^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~454~^0.1^0^^~4~^~BFSN~^~11136~^^^^^^^^^~01/01/2007~ -~11763~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11763~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11763~^~401~^3.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11764~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11764~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11764~^~401~^6.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~421~^7.9^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~ -~11764~^~430~^37.8^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11765~^~291~^2.1^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11765~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11765~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11765~^~401~^18.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~421~^28.7^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11765~^~430~^327.3^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~454~^0.1^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11766~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11766~^~291~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1998~ -~11766~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11766~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11766~^~401~^8.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~421~^10.5^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~430~^4.7^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11767~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11767~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11767~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11767~^~401~^23.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~421~^12.8^0^^~4~^~BFZN~^~11158~^^^^^^^^^~03/01/2007~ -~11767~^~430~^142.7^0^^~4~^~BFSN~^~11251~^^^^^^^^^~12/01/2002~ -~11768~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11768~^~291~^4.0^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11768~^~317~^0.5^19^0.1^~1~^^^^4^0.0^5.0^12^0.1^0.8^~2, 3~^~12/01/2002~ -~11768~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11768~^~401~^18.2^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~421~^38.4^0^^~4~^~BFSN~^~11097~^^^^^^^^^~08/01/2012~ -~11768~^~430~^406.6^2^^~11~^~JO~^^^2^373.1^440.0^1^^^^~08/01/2012~ -~11768~^~454~^0.2^0^^~4~^~BFSN~^~11097~^^^^^^^^^~08/01/2012~ -~11769~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11769~^~317~^1.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11769~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11769~^~401~^26.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~421~^45.1^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11769~^~430~^623.2^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~454~^0.2^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11770~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2009~ -~11770~^~291~^2.4^3^5.8e-02^~6~^~JA~^^^2^2.3^2.8^2^2.1^2.6^~2, 3~^~04/01/2009~ -~11770~^~317~^0.2^23^0.1^~1~^^^^4^0.0^3.0^14^-0.1^0.5^~2, 3~^~04/01/2009~ -~11770~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11770~^~401~^5.5^9^0.3^~6~^~JA~^^^2^3.0^6.2^7^4.5^6.3^~2, 3~^~04/01/2009~ -~11770~^~421~^29.1^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11770~^~430~^0.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11771~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11771~^~291~^1.7^23^8.6e-02^~1~^^^^4^1.0^2.5^18^1.4^1.8^~2, 3~^~04/01/1996~ -~11771~^~313~^18.0^9^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11771~^~317~^0.5^26^0.1^~1~^^^^4^0.0^2.0^20^0.2^0.8^~2, 3~^~04/01/2011~ -~11771~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11771~^~401~^2.6^27^0.1^~6~^~JA~^^^4^0.4^7.0^18^2.2^3.0^~2, 3~^~04/01/2011~ -~11771~^~421~^16.6^0^^~4~^~BFSN~^~11174~^^^^^^^^^~04/01/2011~ -~11771~^~430~^0.0^0^^~4~^~BFSN~^~11174~^^^^^^^^^~09/01/2002~ -~11772~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11772~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11772~^~317~^0.4^42^0.1^~1~^^^^5^0.0^5.0^41^0.1^0.6^~4~^~09/01/2002~ -~11772~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11772~^~401~^4.6^324^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~421~^20.3^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11772~^~430~^0.0^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11773~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11773~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11773~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11773~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11773~^~401~^8.1^56^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~421~^22.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11773~^~430~^0.0^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11774~^~291~^2.4^7^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11774~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11774~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11774~^~401~^3.5^4^0.6^~1~^^^^1^2.2^5.2^3^1.3^5.5^~4~^~09/01/2002~ -~11774~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11775~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11775~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11775~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11775~^~401~^4.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~430~^0.4^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11777~^~291~^5.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11777~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11777~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11777~^~401~^2.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~421~^32.9^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11778~^~291~^6.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11778~^~317~^3.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11778~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11778~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~421~^45.6^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2007~ -~11778~^~430~^36.8^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11779~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11779~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11779~^~401~^17.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11780~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11780~^~401~^18.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~291~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11781~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11781~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11781~^~401~^23.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~421~^13.8^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~ -~11781~^~430~^383.4^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11782~^~291~^2.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11782~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11782~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11782~^~401~^18.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~421~^27.6^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~430~^358.9^0^^~4~^~BFSN~^~11207~^^^^^^^^^~03/01/2007~ -~11783~^~291~^2.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11783~^~317~^0.1^21^5.4e-02^~6~^~JA~^^^8^0.0^0.8^7^-7.4e-02^0.1^~2~^~01/01/2003~ -~11783~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11783~^~401~^1.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~421~^9.4^0^^~4~^~BFSN~^~11209~^^^^^^^^^~03/01/2007~ -~11783~^~430~^2.9^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11784~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11784~^~291~^1.2^0^^~4~^~BFSN~^~11483~^^^^^^^^^~08/01/2011~ -~11784~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11784~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11784~^~401~^8.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11785~^~291~^2.9^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11785~^~317~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11785~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11785~^~401~^5.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~430~^1.7^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11786~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11786~^~291~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11786~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11786~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11786~^~401~^31.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11786~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11787~^~291~^4.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11787~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11787~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11787~^~401~^97.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11788~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11788~^~401~^5.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~291~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11789~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11789~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11789~^~401~^33.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11789~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11790~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11790~^~291~^2.3^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~317~^1.0^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11790~^~401~^17.8^3^4.1^~1~^~A~^^^1^10.1^24.4^2^-0.1^35.8^~2, 3~^~10/01/2016~ -~11790~^~421~^0.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~11790~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11790~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11790~^~430~^418.5^3^31.9^~1~^~A~^^^1^367.6^477.4^2^281.1^555.9^~2, 3~^~10/01/2016~ -~11790~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11791~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11791~^~291~^2.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11791~^~317~^1.0^0^^~4~^~BFSN~^~11234~^^^^^^^^^~10/01/2016~ -~11791~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11791~^~401~^17.8^3^4.1^~1~^~A~^^^1^10.1^24.4^2^-0.1^35.8^~2, 3~^~10/01/2016~ -~11791~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~01/01/2007~ -~11791~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11791~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~11791~^~430~^418.5^3^31.9^~1~^~A~^^^1^367.6^477.4^2^281.1^555.9^~2, 3~^~10/01/2016~ -~11791~^~454~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~01/01/2007~ -~11793~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11793~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11793~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11793~^~401~^54.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~421~^13.2^0^^~4~^~BFSY~^~11241~^^^^^^^^^~03/01/2007~ -~11793~^~430~^0.1^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11794~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11794~^~291~^2.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11794~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11794~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11794~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11794~^~430~^494.2^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~454~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11795~^~291~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11795~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11795~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11795~^~401~^4.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~430~^25.4^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11796~^~291~^3.1^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11796~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11796~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11796~^~401~^27.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~421~^25.4^0^^~4~^~BFSY~^~11429~^^^^^^^^^~03/01/2007~ -~11797~^~291~^2.2^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11797~^~317~^13.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11797~^~325~^0.2^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~326~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11797~^~401~^4.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~421~^20.4^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~430~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2006~ -~11798~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2010~ -~11798~^~291~^2.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11798~^~317~^24.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2009~ -~11798~^~325~^0.7^0^^~4~^~BFSN~^~11238~^^^^^^^^^~08/01/2009~ -~11798~^~326~^0.0^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11798~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11798~^~401~^0.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~421~^80.0^0^^~4~^~BFSN~^~11267~^^^^^^^^^~08/01/2009~ -~11798~^~430~^0.0^0^^~4~^~BFSN~^~11267~^^^^^^^^^~05/01/2009~ -~11799~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2012~ -~11799~^~291~^2.0^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11799~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11799~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11799~^~401~^25.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~421~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11799~^~430~^592.7^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11799~^~454~^0.2^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11800~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11800~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11800~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11800~^~401~^13.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~421~^0.3^0^^~4~^~BFSN~^~11271~^^^^^^^^^~02/01/2007~ -~11800~^~430~^335.1^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~454~^0.2^0^^~4~^~BFSN~^~11271~^^^^^^^^^~02/01/2007~ -~11801~^~291~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11801~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11801~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11801~^~401~^65.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11802~^~291~^1.4^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11802~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11802~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11802~^~401~^16.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~430~^292.0^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11803~^~291~^2.5^1^^~1~^^^^^^^^^^^~01/01/2003~ -~11803~^~317~^0.4^18^0.2^~1~^~A~^^^7^0.0^2.1^6^-0.2^1.0^~2~^~01/01/2003~ -~11803~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11803~^~401~^16.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~421~^9.3^0^^~4~^~BFZN~^~11279~^^^^^^^^^~03/01/2007~ -~11803~^~430~^40.0^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11804~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~11804~^~291~^2.1^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~317~^0.6^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11804~^~401~^9.6^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~421~^11.1^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~430~^47.8^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11805~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11805~^~291~^1.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11805~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11805~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11805~^~401~^5.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~421~^6.8^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~430~^0.5^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11806~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11806~^~291~^1.7^0^^~4~^^^^^^^^^^^~11/01/1994~ -~11806~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11806~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11806~^~401~^2.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~421~^4.4^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11806~^~430~^0.3^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11807~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11807~^~291~^1.4^0^^~4~^^^^^^^^^^^~11/01/1994~ -~11807~^~317~^0.4^5^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11807~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11807~^~401~^5.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~421~^4.4^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~ -~11807~^~430~^0.3^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~ -~11808~^~291~^4.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11808~^~317~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11808~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11808~^~401~^13.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~421~^27.0^0^^~4~^~BFZN~^~11299~^^^^^^^^^~03/01/2007~ -~11808~^~430~^1.0^0^^~4~^~BFZN~^~11299~^^^^^^^^^~05/01/2005~ -~11809~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11809~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11809~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11809~^~401~^47.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~421~^17.4^0^^~4~^~BFSY~^~11300~^^^^^^^^^~03/01/2007~ -~11809~^~430~^25.0^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~291~^3.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11810~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11810~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11810~^~401~^22.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~421~^21.0^0^^~4~^~BFSN~^~11300~^^^^^^^^^~03/01/2007~ -~11810~^~430~^30.2^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11811~^~291~^5.5^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11811~^~317~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11811~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11811~^~401~^14.2^12^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~421~^29.7^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11811~^~430~^25.9^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~454~^0.2^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11812~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1985~ -~11812~^~291~^3.3^37^0.1^~1~^^^^4^2.1^4.9^36^3.0^3.5^~4~^~09/01/2002~ -~11812~^~317~^1.3^38^0.3^~1~^^^^4^0.0^6.0^37^0.6^1.8^~4~^~09/01/2002~ -~11812~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11812~^~401~^9.8^580^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~421~^18.9^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11812~^~430~^16.5^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~454~^0.1^0^^~4~^~BFSN~^~11313~^^^^^^^^^~02/01/2007~ -~11813~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11813~^~291~^4.1^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~11813~^~317~^1.7^16^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11813~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11813~^~401~^9.6^6^1.2^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~430~^21.4^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11814~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11814~^~291~^4.5^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~317~^1.0^40^0.2^~1~^^^^5^0.0^5.0^39^0.5^1.4^~4~^~11/01/2006~ -~11814~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11814~^~401~^9.9^9^0.9^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~421~^27.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11814~^~430~^24.0^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11815~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11815~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11815~^~401~^6.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11816~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11816~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11816~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11816~^~401~^6.6^165^0.8^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~421~^12.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~430~^13.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11817~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11817~^~291~^3.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11817~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11817~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11817~^~401~^8.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~421~^18.1^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~430~^18.8^0^^~4~^~BFZN~^~11323~^^^^^^^^^~05/01/2005~ -~11818~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~11818~^~291~^2.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11818~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11818~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11818~^~401~^6.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~421~^15.9^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~430~^12.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11819~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11819~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/2004~ -~11819~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2004~ -~11819~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11819~^~401~^143.7^4^57.0^~1~^^^^2^44.8^245.0^3^-37.9^325.2^~4~^~01/01/2004~ -~11819~^~421~^10.9^0^^~4~^~BFSN~^~11329~^^^^^^^^^~03/01/2007~ -~11819~^~430~^14.0^0^^~4~^~BFSN~^~11329~^^^^^^^^^~01/01/2003~ -~11820~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11820~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11820~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11820~^~401~^68.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~421~^6.8^0^^~4~^~BFSN~^~11819~^^^^^^^^^~03/01/2007~ -~11820~^~430~^8.7^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11821~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~11821~^~291~^2.1^0^^~4~^~BFSN~^~11333~^^^^^^^^^~01/01/2006~ -~11821~^~317~^0.1^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~11/01/2002~ -~11821~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11821~^~401~^127.7^4^47.1^~1~^~A~^^^1^1.0^210.0^3^-22.3^277.8^~2, 3~^~03/01/2006~ -~11821~^~421~^5.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11821~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2002~ -~11821~^~430~^4.9^4^0.6^~1~^~A~^^^1^3.3^6.0^3^2.9^6.8^~2, 3~^~10/01/2002~ -~11821~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11822~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11822~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11822~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11822~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11822~^~401~^74.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~421~^7.4^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~430~^9.8^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11823~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11823~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11823~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11823~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11823~^~401~^171.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~421~^5.8^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~ -~11823~^~430~^5.1^0^^~4~^~BFSN~^~11821~^^^^^^^^^~01/01/2003~ -~11824~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11824~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11824~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11824~^~401~^171.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~421~^5.8^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~430~^5.1^0^^~4~^~BFZN~^~11823~^^^^^^^^^~05/01/2005~ -~11825~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~11825~^~291~^0.9^0^^~4~^~BFSN~^~11338~^^^^^^^^^~08/01/2011~ -~11825~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11825~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11825~^~401~^41.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~291~^4.2^0^^~4~^~BFSN~^~11344~^^^^^^^^^~08/01/2015~ -~11826~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11826~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11826~^~401~^28.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~421~^37.9^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~ -~11826~^~430~^19.8^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11827~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11827~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11827~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11827~^~401~^82.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~421~^0.3^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11827~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11827~^~454~^0.2^0^^~4~^~BFSN~^~11234~^^^^^^^^^~02/01/2007~ -~11828~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11828~^~291~^2.2^15^^~1~^~A~^^^0^1.8^2.3^^^^~2~^~05/01/2002~ -~11828~^~317~^0.4^22^1.0e-02^~6~^~JA~^^^4^0.0^2.0^3^0.3^0.4^~2~^~05/01/2002~ -~11828~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11828~^~401~^9.6^21^^~1~^~A~^^^0^8.3^12.6^^^^~2~^~05/01/2002~ -~11828~^~429~^0.0^22^^~1~^~A~^^^0^0.0^0.0^^^^~2~^~05/01/2002~ -~11828~^~430~^2.0^23^^~11~^~JO~^^^1^1.1^2.8^^^^~2~^~05/01/2002~ -~11829~^~291~^1.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11829~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11829~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11829~^~401~^12.8^3^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~421~^14.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11829~^~430~^0.3^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11829~^~454~^0.2^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11830~^~291~^7.9^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11830~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11830~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11830~^~401~^13.5^3^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~421~^31.0^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11830~^~430~^1.7^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11830~^~454~^0.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11831~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11831~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11831~^~313~^49.4^2^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11831~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11831~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11831~^~401~^13.0^3^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~421~^13.5^0^^~4~^~BFSN~^~11356~^^^^^^^^^~02/01/2007~ -~11831~^~430~^2.2^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11832~^~291~^3.3^0^^~4~^^^^^^^^^^^~11/01/1994~ -~11832~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11832~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11832~^~401~^5.2^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11833~^~291~^2.0^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11833~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11833~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11833~^~401~^7.4^3^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~421~^13.2^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~11833~^~430~^2.2^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11833~^~454~^0.2^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~11834~^~291~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11834~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11834~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11834~^~401~^15.1^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~291~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11835~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11835~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11835~^~401~^15.1^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~291~^5.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11836~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11836~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11836~^~401~^15.3^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~291~^1.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11837~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11837~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11837~^~401~^9.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~291~^3.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11840~^~313~^25.6^21^4.1^~1~^~A~^^^3^6.0^41.4^7^15.8^35.2^~4~^~02/01/2006~ -~11840~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11840~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11840~^~401~^9.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11841~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11841~^~291~^2.6^6^0.1^~1~^~A~^^^1^2.1^3.1^5^2.1^3.0^~2, 3~^~03/01/2005~ -~11841~^~317~^0.2^42^0.1^~1~^^^^5^0.0^2.0^33^3.2e-02^0.4^~2, 3~^~03/01/2005~ -~11841~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11841~^~401~^13.3^6^1.6^~1~^~A~^^^1^9.2^19.2^5^9.1^17.5^~2, 3~^~03/01/2005~ -~11841~^~429~^15.1^6^2.5^~1~^~A~^^^1^8.4^24.6^5^8.4^21.7^~2, 3~^~03/01/2005~ -~11841~^~430~^2.5^6^0.2^~1~^~A~^^^1^1.7^3.6^5^1.7^3.2^~2, 3~^~03/01/2005~ -~11842~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11842~^~291~^1.9^6^0.1^~1~^~A~^^^1^1.5^2.4^5^1.6^2.2^~2, 3~^~03/01/2005~ -~11842~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11842~^~401~^17.3^6^2.4^~1~^~A~^^^1^10.5^24.5^5^11.0^23.6^~2, 3~^~03/01/2005~ -~11842~^~429~^12.8^6^2.2^~1~^~A~^^^1^6.0^19.8^5^6.9^18.6^~2, 3~^~03/01/2005~ -~11842~^~430~^2.2^6^0.1^~1~^~A~^^^1^1.6^2.8^5^1.7^2.6^~2, 3~^~03/01/2005~ -~11843~^~291~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11843~^~317~^2.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11843~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11843~^~401~^9.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~291~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11844~^~313~^31.5^19^10.0^~1~^~A~^^^2^3.8^61.9^5^5.5^57.3^~4~^~02/01/2006~ -~11844~^~317~^1.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11844~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11844~^~401~^10.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~291~^1.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11845~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11845~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11845~^~401~^4.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~421~^6.2^0^^~4~^~BFSY~^~11422~^^^^^^^^^~03/01/2007~ -~11845~^~430~^0.8^0^^~4~^~BFSN~^~11422~^^^^^^^^^~01/01/2003~ -~11846~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11846~^~291~^2.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11846~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11846~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11846~^~401~^4.2^105^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~421~^9.8^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~ -~11846~^~430~^16.0^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~ -~11847~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11847~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11847~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11847~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11847~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~421~^13.4^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11847~^~430~^0.0^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~ -~11848~^~291~^2.7^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11848~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11848~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11848~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~430~^108.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11849~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11849~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11849~^~401~^10.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11850~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11850~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11850~^~401~^15.1^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~421~^6.8^0^^~4~^~BFSN~^~11430~^^^^^^^^^~02/01/2007~ -~11850~^~430~^0.3^0^^~4~^~BFSN~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~454~^0.1^0^^~4~^~BFSN~^~11430~^^^^^^^^^~02/01/2007~ -~11851~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2012~ -~11851~^~291~^1.8^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/2012~ -~11851~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11851~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11851~^~401~^18.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~421~^15.2^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11851~^~430~^0.2^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/2012~ -~11852~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~11852~^~291~^3.1^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11852~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11852~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11852~^~401~^4.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~421~^25.9^0^^~4~^~BFSN~^~11429~^^^^^^^^^~03/01/2007~ -~11852~^~430~^0.3^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11853~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11853~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11853~^~401~^17.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~11854~^~291~^2.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11854~^~313~^37.8^20^16.2^~1~^~A~^^^2^20.0^70.3^2^-32.3^107.8^~4~^~02/01/2006~ -~11854~^~317~^1.5^5^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11854~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11854~^~401~^9.8^12^1.5^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~421~^19.7^0^^~4~^~BFSN~^~11464~^^^^^^^^^~12/01/2006~ -~11854~^~430~^493.6^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11854~^~454~^89.0^0^^~4~^~BFSN~^~11464~^^^^^^^^^~10/01/2008~ -~11855~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11855~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11855~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11855~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11855~^~401~^13.5^117^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~421~^15.2^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~430~^380.8^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11856~^~291~^3.7^6^0.1^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~317~^5.5^4^6.5e-02^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11856~^~401~^2.2^6^0.5^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~421~^24.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11856~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~430~^540.7^3^4.2^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~454~^112.0^2^^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11857~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11857~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11857~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11857~^~401~^5.5^6^0.7^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~421~^7.9^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~430~^3.5^0^^~4~^~BFSN~^~11641~^^^^^^^^^~03/01/2007~ -~11858~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~291~^1.1^4^7.5e-02^~6~^~JA~^^^2^0.8^1.4^2^0.7^1.4^~2, 3~^~04/01/2009~ -~11858~^~317~^0.2^18^0.1^~6~^~JA~^^^3^0.0^3.0^12^-0.1^0.5^~2, 3~^~02/01/2003~ -~11858~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11858~^~401~^11.6^3^2.2^~1~^~A~^^^1^7.1^14.1^2^1.8^21.3^~2, 3~^~04/01/2009~ -~11858~^~421~^7.9^0^^~4~^~BFZN~^~11468~^^^^^^^^^~03/01/2007~ -~11858~^~430~^4.4^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11859~^~291~^1.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11859~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11859~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11859~^~401~^6.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~421~^9.7^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11859~^~430~^5.4^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11860~^~291~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11860~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11860~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11860~^~401~^10.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~421~^6.2^0^^~4~^~BFZN~^~11476~^^^^^^^^^~03/01/2007~ -~11860~^~430~^3.5^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11861~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~291~^1.0^4^0.1^~1~^~A~^^^1^0.8^1.3^3^0.6^1.3^~2, 3~^~04/01/2009~ -~11861~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2009~ -~11861~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11861~^~401~^12.9^4^2.3^~1~^~A~^^^1^9.9^19.7^3^5.5^20.2^~2, 3~^~04/01/2009~ -~11861~^~421~^9.4^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~11861~^~430~^4.2^2^^~1~^~A~^^^2^4.0^4.4^1^^^^~04/01/2009~ -~11861~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11862~^~291~^1.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11862~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11862~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11862~^~401~^3.7^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~421~^9.4^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~ -~11862~^~430~^4.2^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11863~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11863~^~291~^2.8^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11863~^~317~^0.4^0^^~4~^~BFSN~^~11644~^^^^^^^^^~12/01/1997~ -~11863~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11863~^~401~^1.8^2^^~1~^^^^1^0.6^2.9^1^^^^~08/01/2011~ -~11863~^~421~^10.6^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~11863~^~430~^4.4^0^^~4~^~BFSN~^~11644~^^^^^^^^^~05/01/2005~ -~11863~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~11864~^~291~^4.4^0^^~4~^^^^^^^^^^^~04/01/1996~ -~11864~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11864~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11864~^~401~^10.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~291~^2.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11865~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11865~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11865~^~401~^6.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11866~^~291~^3.2^0^^~4~^~BFSN~^~11644~^^^^^^^^^~10/01/2009~ -~11866~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11866~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11866~^~401~^15.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~430~^1.0^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11867~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11867~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11867~^~401~^3.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11868~^~291~^4.9^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11868~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11868~^~401~^9.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~421~^14.6^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~430~^1.6^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11869~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11869~^~291~^2.9^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11869~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11869~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11869~^~401~^6.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~421~^8.7^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~ -~11869~^~430~^1.0^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~ -~11870~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11870~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11870~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11870~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11870~^~401~^3.5^3^2.5^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~421~^7.5^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~ -~11870~^~430~^0.8^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~ -~11871~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11871~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11871~^~401~^8.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~291~^4.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11872~^~317~^0.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11872~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11872~^~401~^5.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~421~^29.1^0^^~4~^~BFZN~^~11502~^^^^^^^^^~03/01/2007~ -~11872~^~430~^2.7^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11873~^~291~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11873~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11873~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11873~^~401~^16.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11874~^~291~^1.9^0^^~4~^^^^^^^^^^^~04/01/1996~ -~11874~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11874~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11874~^~401~^1.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~421~^21.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11874~^~430~^108.6^0^^~4~^~BFZN~^~11506~^^^^^^^^^~05/01/2005~ -~11875~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~11875~^~291~^3.3^4^0.1^~1~^~A~^^^1^3.0^3.6^3^2.8^3.8^~2, 3~^~04/01/2003~ -~11875~^~317~^0.2^58^0.1^~11~^~JO~^^^11^0.0^5.7^55^-4.3e-02^0.4^~1, 4~^~04/01/2003~ -~11875~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11875~^~401~^19.6^4^8.5^~1~^~A~^^^1^0.1^40.4^3^-7.5^46.7^~1, 2, 3~^~04/01/2003~ -~11875~^~421~^13.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~11875~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2003~ -~11875~^~430~^2.3^3^0.4^~11~^~JO~^^^2^1.6^3.0^1^-3.5^8.2^~2, 3~^~04/01/2003~ -~11875~^~454~^34.6^2^^~1~^~A~^^^1^31.6^37.7^1^^^^~06/01/2014~ -~11876~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~ -~11876~^~291~^2.5^4^0.1^~1~^~A~^^^1^2.4^2.8^3^2.1^2.8^~2, 3~^~04/01/2003~ -~11876~^~317~^0.2^2^^~1~^~A~^^^1^0.2^0.2^1^^^^~04/01/2003~ -~11876~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11876~^~401~^12.8^4^3.0^~1~^~A~^^^1^4.0^16.7^3^3.2^22.3^~2, 3~^~04/01/2003~ -~11876~^~421~^10.8^0^^~4~^~BFSN~^~11508~^^^^^^^^^~02/01/2007~ -~11876~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2003~ -~11876~^~430~^2.1^2^^~1~^~A~^^^1^1.7^2.5^1^^^^~04/01/2003~ -~11877~^~291~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11877~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11877~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11877~^~401~^9.1^6^1.0^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11878~^~291~^5.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11878~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11878~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11878~^~401~^5.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~421~^21.3^0^^~4~^~BFSN~^~11365~^^^^^^^^^~03/01/2007~ -~11878~^~430~^1.2^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~ -~11879~^~291~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~11879~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11879~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11879~^~401~^35.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11880~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11880~^~401~^18.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11881~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11881~^~401~^38.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~291~^0.7^4^4.8e-02^~1~^~A~^^^1^0.6^0.8^3^0.5^0.8^~4~^~05/01/2004~ -~11884~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11884~^~401~^22.8^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~4~^~05/01/2004~ -~11884~^~430~^2.8^4^0.2^~1~^~A~^^^1^2.6^3.5^3^2.1^3.5^~4~^~05/01/2004~ -~11885~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1986~ -~11885~^~291~^1.9^3^0.1^~1~^~A~^^^1^1.7^2.2^1^-0.3^4.1^~2, 3~^~08/01/2014~ -~11885~^~313~^5.1^12^1.3^~1~^~A~^^^2^3.3^9.2^3^0.7^9.4^~4~^~02/01/2006~ -~11885~^~317~^0.7^3^0.2^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11885~^~401~^12.6^4^2.6^~1~^~A~^^^1^9.3^20.8^2^1.2^23.8^~2, 3~^~08/01/2014~ -~11885~^~421~^7.0^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11885~^~430~^2.9^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11886~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1986~ -~11886~^~291~^0.4^2^^~1~^^^^1^0.4^0.4^^^^^~12/01/2002~ -~11886~^~313~^6.9^11^3.1^~1~^~A~^^^2^3.8^10.0^1^-32.4^46.2^~4~^~08/01/2014~ -~11886~^~317~^0.5^7^0.1^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11886~^~401~^70.1^3^3.0^~1~^~A~^^^1^66.2^76.1^2^57.0^83.1^~2, 3~^~08/01/2014~ -~11886~^~421~^6.8^0^^~4~^~BFSN~^~11549~^^^^^^^^^~03/01/2007~ -~11886~^~430~^2.3^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11888~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11888~^~291~^1.9^33^6.0e-02^~6~^~JA~^^^4^0.9^2.8^26^1.8^2.0^~2, 3~^~11/01/2002~ -~11888~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2004~ -~11888~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11888~^~401~^10.6^48^0.7^~6~^~JA~^^^5^1.0^23.4^34^9.1^12.1^~2, 3~^~11/01/2002~ -~11888~^~421~^17.6^0^^~4~^~BFSN~^~11546~^^^^^^^^^~02/01/2007~ -~11888~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~02/01/2007~ -~11888~^~430~^3.4^3^0.2^~1~^~A~^^^1^3.2^3.8^2^2.5^4.2^~2, 3~^~02/01/2007~ -~11888~^~454~^0.2^0^^~4~^~BFSN~^~11546~^^^^^^^^^~02/01/2007~ -~11889~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11889~^~291~^2.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11889~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11889~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11889~^~401~^11.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~421~^8.7^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~430~^0.1^0^^~4~^~BFZN~^~11565~^^^^^^^^^~05/01/2005~ -~11890~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11890~^~291~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11890~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11890~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11890~^~401~^3.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~421~^8.7^0^^~4~^~BFSN~^~11565~^^^^^^^^^~03/01/2007~ -~11890~^~430~^0.1^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11891~^~291~^3.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11891~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11891~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11891~^~401~^27.4^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~430~^367.6^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11892~^~291~^3.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11892~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11892~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11892~^~401~^21.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~421~^0.5^0^^~4~^~BFSN~^~11234~^^^^^^^^^~03/01/2007~ -~11892~^~430~^518.9^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11893~^~291~^3.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~317~^1.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11893~^~401~^18.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~421~^2.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~430~^415.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11894~^~291~^4.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11894~^~317~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11894~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11894~^~401~^3.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~421~^24.1^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~430~^23.5^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11895~^~291~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11895~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11895~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11895~^~401~^10.5^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~421~^4.9^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11895~^~430~^2.8^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11896~^~317~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11896~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11896~^~401~^9.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11897~^~291~^3.9^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11897~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11897~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11897~^~401~^12.1^12^3.0^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~421~^16.2^0^^~4~^~BFSY~^~11601~^^^^^^^^^~03/01/2007~ -~11897~^~430~^2.3^0^^~4~^~BFSN~^~11601~^^^^^^^^^~03/01/2007~ -~11898~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11898~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11898~^~401~^14.1^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~317~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11899~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11899~^~401~^16.2^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11900~^~291~^2.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11900~^~317~^0.6^269^1.0e-03^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11900~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11900~^~401~^6.8^7^0.5^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~430~^0.3^0^^~4~^~BFSN~^~11167~^^^^^^^^^~02/01/2003~ -~11901~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11901~^~291~^2.7^0^^~4~^^^^^^^^^^^~04/01/2009~ -~11901~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11901~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11901~^~401~^6.2^9^0.3^~6~^~JA~^^^2^5.6^6.8^6^5.3^7.0^~2, 3~^~04/01/2009~ -~11901~^~421~^29.1^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~ -~11901~^~430~^0.4^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11902~^~291~^2.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11902~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11902~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11902~^~401~^6.2^9^0.3^~6~^~JA~^^^2^5.6^6.8^6^5.3^7.0^~2, 3~^~04/01/2009~ -~11902~^~421~^29.1^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2007~ -~11902~^~430~^0.4^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11903~^~291~^1.7^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~313~^18.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11903~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11903~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11903~^~401~^5.5^354^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11904~^~291~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11904~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11904~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11904~^~401~^5.5^354^0.1^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11905~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~11905~^~291~^2.0^10^0.1^~1~^~A~^^^1^1.5^2.4^5^1.6^2.2^~2, 3~^~04/01/2016~ -~11905~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11905~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11905~^~401~^1.8^13^0.3^~1~^~A~^^^2^0.8^3.7^3^0.8^2.8^~2, 3~^~04/01/2016~ -~11905~^~421~^17.8^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2016~ -~11905~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2014~ -~11905~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2014~ -~11905~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2014~ -~11906~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2006~ -~11906~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11906~^~313~^28.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~11906~^~317~^0.4^42^0.1^~1~^^^^5^0.0^5.0^41^0.1^0.6^~4~^~05/01/2013~ -~11906~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11906~^~401~^4.6^324^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~421~^20.3^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2007~ -~11906~^~430~^0.0^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11907~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11907~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11907~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11907~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11907~^~401~^4.6^324^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~421~^20.3^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2007~ -~11907~^~430~^0.3^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11908~^~291~^2.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11908~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11908~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11908~^~401~^8.1^56^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11909~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11909~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11909~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11909~^~401~^8.1^56^0.2^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11910~^~291~^2.9^3^0.1^~12~^~MA~^^^1^2.5^3.2^2^2.0^3.6^~2, 3~^~02/01/2013~ -~11910~^~313~^14.6^6^12.2^~1~^~A~^^^1^0.9^39.0^2^-38.0^67.2^~4~^~01/01/2006~ -~11910~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11910~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11910~^~401~^6.3^71^1.4^~6~^~JA~^^^2^1.7^6.4^67^3.2^9.2^~2, 3~^~02/01/2013~ -~11910~^~430~^0.3^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~ -~11911~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11911~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11911~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11911~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11911~^~401~^3.1^7^0.4^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~421~^22.0^0^^~4~^~BFZN~^~11179~^^^^^^^^^~02/01/2007~ -~11911~^~430~^0.3^0^^~4~^~BFSN~^~11901~^^^^^^^^^~02/01/2003~ -~11911~^~454~^0.2^0^^~4~^~BFZN~^~11179~^^^^^^^^^~02/01/2007~ -~11912~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11912~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11912~^~317~^0.7^7^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11912~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11912~^~401~^3.1^7^0.4^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~421~^22.0^0^^~4~^~BFZN~^~11179~^^^^^^^^^~02/01/2007~ -~11912~^~430~^0.3^0^^~4~^~BFZN~^~11911~^^^^^^^^^~05/01/2005~ -~11912~^~454~^0.2^0^^~4~^~BFZN~^~11179~^^^^^^^^^~02/01/2007~ -~11913~^~291~^2.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11913~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11913~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11913~^~401~^7.2^53^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~291~^2.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11914~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11914~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11914~^~401~^4.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11915~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11915~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11915~^~401~^4.8^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~291~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11916~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11916~^~401~^46.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1986~ -~11917~^~291~^1.6^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11917~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11917~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11917~^~401~^58.7^7^11.9^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~421~^4.3^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~ -~11917~^~430~^3.8^0^^~4~^~BFSN~^~11821~^^^^^^^^^~11/01/2002~ -~11918~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11918~^~291~^0.8^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11918~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11918~^~401~^41.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~421~^3.8^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~430~^3.4^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11919~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~11919~^~291~^0.8^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11919~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11919~^~401~^41.2^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~421~^3.8^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~430~^3.4^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11921~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~291~^1.8^3^3.3e-02^~1~^~A~^^^1^1.7^1.8^2^1.6^1.9^~2, 3~^~03/01/2006~ -~11921~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11921~^~401~^162.8^4^20.2^~1~^~A~^^^1^122.0^200.0^3^98.3^227.1^~2, 3~^~04/01/2003~ -~11921~^~421~^6.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11921~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2003~ -~11921~^~430~^16.4^4^1.7^~1~^~A~^^^1^12.5^20.9^3^10.8^22.0^~2, 3~^~04/01/2003~ -~11921~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11922~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11922~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11922~^~401~^37.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11923~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11923~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11923~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11923~^~401~^8.3^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~430~^33.0^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11924~^~291~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11924~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11924~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11924~^~401~^12.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11925~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11925~^~401~^26.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~317~^0.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11926~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11926~^~401~^12.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11927~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11927~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~291~^3.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11928~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11928~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11928~^~401~^30.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~291~^2.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11929~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11929~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11929~^~401~^6.0^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~291~^2.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11930~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11930~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11930~^~401~^9.7^6^3.8^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~11931~^~291~^21.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11931~^~317~^3.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11931~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11931~^~401~^1900.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~430~^114.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11932~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~11932~^~291~^1.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11932~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11932~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11932~^~401~^4.8^12^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~421~^10.5^0^^~4~^~BFSN~^~11056~^^^^^^^^^~02/01/2007~ -~11932~^~430~^39.3^0^^~4~^~BFSN~^~11729~^^^^^^^^^~08/01/2015~ -~11932~^~454~^0.1^0^^~4~^~BFSN~^~11056~^^^^^^^^^~02/01/2007~ -~11933~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~11933~^~291~^1.3^0^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~11933~^~317~^0.4^8^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~11933~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11933~^~401~^4.8^12^0.3^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~430~^38.9^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11934~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~291~^1.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~317~^0.8^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~328~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~401~^6.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~421~^13.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~429~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~430~^2.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~454~^0.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11935~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2004~ -~11935~^~291~^0.3^6^2.0e-02^~1~^~A~^^^1^0.1^0.4^2^0.2^0.3^~2, 3~^~08/01/2014~ -~11935~^~313~^15.1^19^3.5^~1~^~A~^^^4^4.5^32.0^7^6.7^23.4^~4~^~02/01/2006~ -~11935~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11935~^~401~^4.1^6^1.3^~1~^~A~^^^1^0.1^8.0^3^0.1^7.9^~2, 3~^~08/01/2014~ -~11935~^~421~^12.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11935~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2006~ -~11935~^~430~^3.0^3^^~11~^~JO~^^^2^2.5^3.6^^^^~2, 3~^~08/01/2014~ -~11935~^~454~^0.2^2^^~1~^~A~^^^2^0.2^0.2^^^^^~03/01/2006~ -~11936~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~317~^26.0^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~325~^31.9^6^6.1^~1~^~A~^^^4^18.6^59.0^5^16.1^47.6^~4~^~04/01/2015~ -~11936~^~328~^31.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11936~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11936~^~421~^22.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11936~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~04/01/2015~ -~11936~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11936~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~04/01/2015~ -~11936~^~454~^11.1^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11937~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~11937~^~291~^1.0^9^3.8e-02^~1~^~A~^^^1^0.8^1.3^5^0.9^1.1^~1, 2, 3~^~08/01/2014~ -~11937~^~313~^30.1^18^5.9^~1~^~A~^^^3^3.5^48.6^7^15.9^44.2^~4~^~04/01/2014~ -~11937~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2014~ -~11937~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11937~^~401~^2.3^3^^~1~^~A~^^^1^1.0^3.5^^^^~2, 3~^~08/01/2014~ -~11937~^~421~^3.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~11937~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~11937~^~429~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~11937~^~430~^17.3^5^0.3^~1~^~A~^^^1^12.3^20.0^1^14.6^19.9^~2, 3~^~08/01/2014~ -~11937~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~11938~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~291~^1.0^3^0.4^~11~^~JO~^^^2^0.1^1.5^2^-0.9^2.9^~1, 4~^~04/01/2015~ -~11938~^~317~^9.3^23^1.2^~11~^~JO~^^^10^0.0^22.7^22^6.6^11.9^~4~^~04/01/2015~ -~11938~^~325~^26.2^8^7.1^~1~^~A~^^^3^15.2^75.2^7^9.2^43.0^~4~^~04/01/2015~ -~11938~^~326~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^3^0.0^0.0^~1, 4~^~04/01/2015~ -~11938~^~328~^26.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11938~^~401~^2.1^24^0.6^~6~^~JA~^^^4^0.0^8.6^15^0.6^3.4^~1, 4~^~04/01/2015~ -~11938~^~421~^17.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11938~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~11938~^~429~^1.0^2^^~1~^~A~^^^1^0.0^2.0^^^^~1~^~04/01/2015~ -~11938~^~430~^0.0^3^2.0e-02^~1~^~A~^^^2^0.0^0.1^2^-6.6e-02^0.1^~1, 4~^~04/01/2015~ -~11938~^~454~^9.4^2^^~1~^~A~^^^2^8.1^10.7^1^^^^~04/01/2015~ -~11939~^~291~^2.2^6^0.1^~1~^~A~^^^2^1.9^2.5^4^1.9^2.4^~2, 3~^~08/01/2009~ -~11939~^~317~^21.9^6^3.4^~1~^~A~^^^2^11.8^35.5^4^12.3^31.5^~2, 3~^~08/01/2009~ -~11939~^~325~^13.1^4^5.7^~1~^~A~^^^1^3.1^25.6^3^-5.2^31.4^~2, 3~^~08/01/2009~ -~11939~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2010~ -~11939~^~328~^13.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~ -~11939~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2010~ -~11939~^~421~^32.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11939~^~428~^0.3^2^^~1~^~A~^^^1^0.0^0.6^1^^^~1~^~08/01/2009~ -~11939~^~429~^7.0^2^^~1~^~A~^^^1^0.0^14.0^1^^^~1~^~08/01/2009~ -~11939~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2010~ -~11939~^~454~^11.5^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11940~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11940~^~291~^1.0^3^6.7e-02^~1~^~A~^^^1^0.9^1.1^2^0.7^1.3^~2, 3~^~04/01/2006~ -~11940~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~ -~11940~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11940~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~04/01/2006~ -~11940~^~421~^3.1^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~11940~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2006~ -~11940~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2006~ -~11940~^~430~^47.1^2^^~1~^~A~^^^1^41.7^52.6^1^^^^~12/01/2006~ -~11940~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11941~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11941~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11941~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11941~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11941~^~401~^1.0^6^0.0^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~421~^3.6^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~430~^47.0^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~454~^0.0^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11943~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11943~^~291~^1.9^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11943~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11943~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11943~^~401~^84.9^4^10.6^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~421~^6.3^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~ -~11943~^~430~^8.3^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~ -~11944~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11944~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11944~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11944~^~401~^1.0^6^0.0^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~11945~^~291~^1.1^0^^~4~^^^^^^^^^^^~12/01/1993~ -~11945~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11945~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11945~^~401~^1.0^6^0.0^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~421~^4.9^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~430~^83.8^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~454~^0.4^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11946~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~11946~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11946~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11946~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11946~^~401~^1.0^6^0.0^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~421~^3.6^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~430~^47.0^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~454~^0.0^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11947~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~291~^1.0^9^3.8e-02^~1~^~A~^^^1^0.8^1.3^5^0.9^1.1^~1, 2, 3~^~08/01/2014~ -~11947~^~313~^30.1^18^5.9^~1~^~A~^^^3^3.5^48.6^7^15.9^44.2^~4~^~04/01/2014~ -~11947~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2014~ -~11947~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11947~^~401~^2.3^3^^~1~^~A~^^^1^1.0^3.5^^^^~2, 3~^~08/01/2014~ -~11947~^~421~^3.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~11947~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~11947~^~429~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~11947~^~430~^17.3^5^0.3^~1~^~A~^^^1^12.3^20.0^1^14.6^19.9^~2, 3~^~08/01/2014~ -~11947~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~11948~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~11948~^~291~^1.1^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~11948~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11948~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11948~^~401~^1.2^44^0.1^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~421~^4.5^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~430~^76.7^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~454~^0.4^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11949~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2006~ -~11949~^~291~^0.3^6^2.0e-02^~1~^~A~^^^1^0.1^0.4^2^0.2^0.3^~2, 3~^~08/01/2014~ -~11949~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11949~^~401~^4.1^6^1.3^~1~^~A~^^^1^0.1^8.0^3^0.1^7.9^~2, 3~^~08/01/2014~ -~11949~^~421~^12.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~11949~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2007~ -~11949~^~430~^3.0^3^^~11~^~JO~^^^2^2.5^3.6^^^^~2, 3~^~08/01/2014~ -~11949~^~454~^0.2^2^^~1~^~A~^^^2^0.2^0.2^^^^^~07/01/2012~ -~11950~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11950~^~291~^2.7^5^0.1^~6~^~JA~^^^2^2.4^3.1^3^2.2^3.1^~2, 3~^~07/01/2009~ -~11950~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~04/01/2005~ -~11950~^~325~^0.1^4^8.8e-02^~1~^~A~^^^1^0.0^0.4^3^-0.1^0.4^~1, 2, 3~^~07/01/2009~ -~11950~^~326~^0.0^4^1.0e-02^~1~^~A~^^^1^0.0^0.0^3^-2.2e-02^4.3e-02^~1, 2, 3~^~05/01/2010~ -~11950~^~328~^0.1^4^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11950~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2006~ -~11950~^~421~^47.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11950~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2006~ -~11950~^~429~^0.5^3^0.4^~1~^~A~^^^1^0.0^1.4^2^-1.5^2.4^~1, 2, 3~^~04/01/2005~ -~11950~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2006~ -~11950~^~454~^1.4^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11951~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11951~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11951~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11951~^~401~^183.5^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11952~^~291~^0.9^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11952~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11952~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11952~^~401~^8.0^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~421~^10.9^0^^~4~^~BFSN~^~11152~^^^^^^^^^~03/01/2007~ -~11952~^~430~^255.2^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~ -~11953~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11953~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11953~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11953~^~401~^34.1^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11954~^~291~^1.9^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11954~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11954~^~401~^11.7^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~421~^7.6^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11954~^~430~^10.1^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11955~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~11955~^~291~^12.3^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~317~^5.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11955~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11955~^~401~^39.2^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~421~^104.6^0^^~4~^~BFSN~^~11530~^^^^^^^^^~03/01/2007~ -~11955~^~430~^43.0^0^^~4~^~BFSN~^~11530~^^^^^^^^^~02/01/2003~ -~11956~^~291~^5.8^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11956~^~317~^3.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11956~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11956~^~401~^101.8^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~291~^3.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11957~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11957~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11957~^~401~^12.0^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~421~^13.2^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~430~^62.8^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11958~^~291~^3.2^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11958~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11958~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11958~^~401~^2.3^6^0.6^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~11959~^~291~^1.6^0^^~1~^^^^^^^^^^^~04/01/1994~ -~11959~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11959~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11959~^~401~^15.0^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~421~^15.3^0^^~4~^~BFSN~^~11251~^^^^^^^^^~12/01/2006~ -~11959~^~430~^108.6^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11959~^~454~^0.1^0^^~4~^~BFSN~^~11251~^^^^^^^^^~12/01/2006~ -~11960~^~291~^2.9^8^0.1^~1~^~A~^^^2^2.4^3.9^4^2.3^3.4^~2, 3~^~03/01/2006~ -~11960~^~317~^0.9^8^0.1^~1~^~A~^^^2^0.7^1.6^3^0.5^1.2^~2, 3~^~10/01/2002~ -~11960~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11960~^~401~^2.6^8^0.1^~1~^~A~^^^2^1.4^3.3^5^2.1^3.0^~2, 3~^~03/01/2006~ -~11960~^~421~^7.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11960~^~429~^0.0^6^0.0^~1~^~A~^^^2^0.0^0.0^^^^~2, 3~^~10/01/2002~ -~11960~^~430~^9.4^6^1.1^~1~^~A~^^^2^4.3^14.4^4^6.0^12.8^~2, 3~^~10/01/2002~ -~11960~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11961~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11961~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11961~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11961~^~401~^7.9^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1989~ -~11962~^~291~^28.7^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~317~^3.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11962~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11962~^~401~^31.4^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~421~^84.3^0^^~4~^~BFSN~^~11819~^^^^^^^^^~03/01/2007~ -~11962~^~430~^108.2^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11963~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11963~^~291~^2.2^8^9.4e-02^~1~^^^^1^2.0^2.6^7^1.9^2.3^~4~^~01/01/2003~ -~11963~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11963~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11963~^~401~^9.3^4^2.9^~1~^^^^1^4.4^17.6^3^1.1e-02^18.6^~4~^~01/01/2003~ -~11963~^~421~^7.3^0^^~4~^~BFSN~^~11641~^^^^^^^^^~03/01/2007~ -~11963~^~430~^5.3^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11964~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11964~^~291~^2.0^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11964~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11964~^~401~^5.3^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~421~^7.1^0^^~4~^~BFSN~^~11963~^^^^^^^^^~03/01/2007~ -~11964~^~430~^5.1^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11965~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1992~ -~11965~^~291~^3.2^6^^~1~^^^^^2.5^3.5^^^^^~01/01/2003~ -~11965~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~11965~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11965~^~401~^88.1^6^9.3^~1~^^^^2^65.4^117.9^5^64.0^112.0^~4~^~01/01/2003~ -~11965~^~421~^57.1^0^^~4~^~BFSN~^~11135~^^^^^^^^^~02/01/2007~ -~11965~^~430~^20.2^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~ -~11967~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11967~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11967~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11967~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11967~^~401~^72.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~421~^58.8^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~430~^20.8^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11968~^~291~^3.3^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11968~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11968~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11968~^~401~^72.6^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11969~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11969~^~291~^2.5^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11969~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11969~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11969~^~401~^28.2^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~421~^25.3^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11969~^~430~^84.8^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~454~^0.1^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2007~ -~11970~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11970~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11970~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11970~^~401~^3.2^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11972~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11972~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11972~^~401~^2.6^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11973~^~291~^7.5^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11973~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11973~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11973~^~401~^3.7^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~430~^40.9^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11974~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11974~^~291~^11.0^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11974~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11974~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11974~^~401~^11.1^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~421~^12.8^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~11974~^~430~^108.6^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11975~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11975~^~291~^9.9^0^^~4~^~BFSN~^~11974~^^^^^^^^^~11/01/2011~ -~11975~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11975~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11975~^~401~^11.3^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~430~^97.3^0^^~4~^~BFSN~^~11974~^^^^^^^^^~11/01/2011~ -~11976~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11976~^~291~^3.4^0^^~1~^^^^^^^^^^^~01/01/1995~ -~11976~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11976~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11976~^~401~^82.7^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~421~^7.4^0^^~4~^~BFSN~^~11670~^^^^^^^^^~03/01/2007~ -~11976~^~430~^9.5^0^^~4~^~BFSN~^~11670~^^^^^^^^^~02/01/2003~ -~11977~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11977~^~291~^3.7^0^^~1~^^^^^^^^^^^~01/01/1995~ -~11977~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11977~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11977~^~401~^44.9^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~421~^8.9^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11977~^~430~^11.8^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11978~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1994~ -~11978~^~291~^21.6^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11978~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11978~^~401~^2.0^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11979~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11979~^~291~^2.8^3^0.1^~6~^~JA~^^^2^2.5^3.0^1^0.6^4.9^~2, 3~^~05/01/2010~ -~11979~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~05/01/2010~ -~11979~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11979~^~401~^118.6^2^^~1~^~A~^^^1^106.3^131.0^1^^^^~05/01/2010~ -~11979~^~421~^7.5^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11979~^~430~^18.5^2^^~1~^~A~^^^1^17.3^19.8^1^^^^~05/01/2010~ -~11980~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11980~^~291~^1.7^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11980~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11980~^~401~^34.2^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11981~^~291~^1.0^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~317~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11981~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11981~^~401~^92.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~421~^7.7^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~430~^9.9^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11982~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11982~^~291~^26.8^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11982~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11982~^~401~^6.4^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11983~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11983~^~291~^1.5^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~317~^2.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~11983~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11983~^~401~^6.0^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~421~^4.0^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~430~^61.6^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11984~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11984~^~291~^3.8^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11984~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11984~^~401~^3.6^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11985~^~291~^10.6^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11985~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11985~^~401~^2.2^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~291~^2.1^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~317~^0.9^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11986~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11986~^~401~^5.9^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11987~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11987~^~291~^2.3^6^0.3^~6~^~JA~^^^2^1.5^3.4^3^1.1^3.5^~2, 3~^~03/01/2006~ -~11987~^~317~^2.6^2^^~1~^~A~^^^1^2.2^3.0^1^^^~1~^~04/01/2005~ -~11987~^~325~^0.7^4^0.6^~1~^~A~^^^1^0.1^2.6^3^-1.2^2.7^~2, 3~^~07/01/2009~ -~11987~^~326~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2010~ -~11987~^~328~^0.7^4^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11987~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2005~ -~11987~^~421~^48.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11987~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2005~ -~11987~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2005~ -~11987~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2005~ -~11987~^~454~^12.1^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11988~^~291~^70.1^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~317~^43.4^0^^~4~^~BFSN~^~11268~^^^^^^^^^~07/01/2006~ -~11988~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11988~^~401~^0.0^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~291~^2.5^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~317~^15.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~11989~^~401~^0.0^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11990~^~291~^7.8^2^^~1~^~A~^^^1^7.2^8.3^^^^^~07/01/2003~ -~11990~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11990~^~401~^41.9^2^^~1~^~A~^^^1^31.0^52.7^^^^^~07/01/2003~ -~11991~^~291~^1.5^4^2.4e-02^~6~^~JA~^^^2^1.5^1.6^3^1.4^1.6^~4~^~07/01/2003~ -~11991~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~11991~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11991~^~401~^5.2^2^^~1~^~A~^^^2^4.8^5.5^1^^^^~07/01/2003~ -~11992~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~291~^2.5^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~317~^18.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~325~^0.3^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11992~^~326~^0.0^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11992~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11992~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~421~^30.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11992~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~430~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~454~^10.1^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11993~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~291~^2.7^2^^~1~^~A~^^^1^2.5^2.9^1^^^^~08/01/2009~ -~11993~^~317~^2.2^2^^~1~^~A~^^^1^2.2^2.2^^^^~1~^~08/01/2009~ -~11993~^~325~^28.1^4^16.4^~1~^~A~^^^1^0.1^63.2^3^-24.1^80.3^~2, 3~^~08/01/2009~ -~11993~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2010~ -~11993~^~328~^28.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11993~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2009~ -~11993~^~421~^51.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~11993~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2009~ -~11993~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2009~ -~11993~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~08/01/2009~ -~11994~^~221~^0.0^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~291~^2.6^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~317~^1.4^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~328~^0.0^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~401~^29.6^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~421~^26.5^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~430~^89.1^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11995~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11995~^~401~^26.6^5^2.4^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~11996~^~401~^17.8^5^0.8^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11998~^~291~^1.3^5^0.1^~1~^~A~^^^2^1.0^1.6^4^1.0^1.6^~4~^~08/01/2009~ -~11998~^~317~^18.6^5^3.6^~1~^~A~^^^2^11.0^32.5^4^8.4^28.8^~4~^~08/01/2009~ -~11998~^~325~^28.4^13^7.1^~1~^~A~^^^5^3.4^64.2^4^8.6^48.1^~2~^~04/01/2015~ -~11998~^~326~^0.0^8^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2~^~08/01/2010~ -~11998~^~328~^28.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~11998~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~11998~^~421~^21.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11998~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~01/01/2010~ -~11998~^~429~^1.8^2^^~1~^~A~^^^1^1.8^1.8^1^^^^~08/01/2009~ -~11998~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~01/01/2010~ -~11998~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~12001~^~291~^5.2^0^^~4~^~BFCN~^^^^^^^^^^~02/01/1999~ -~12001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12001~^~401~^6.6^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~291~^4.8^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1999~ -~12003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12003~^~401~^6.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12004~^~401~^27.4^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12005~^~291~^14.9^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~317~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12005~^~401~^46.6^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12006~^~291~^34.4^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~317~^55.2^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~401~^1.6^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12007~^~291~^3.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~317~^5.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~12007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12007~^~401~^2.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12008~^~401~^2.4^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12011~^~401~^2.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12012~^~291~^4.0^2^^~12~^~MA~^^^2^2.0^6.0^1^^^^~01/01/2015~ -~12012~^~401~^0.5^2^^~12~^~MA~^^^2^0.0^1.0^1^^^^~01/01/2015~ -~12013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12013~^~401~^0.0^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12014~^~291~^6.0^3^0.1^~1~^~A~^^^1^5.6^6.2^2^5.1^6.7^~2, 3~^~12/01/2008~ -~12014~^~317~^9.4^2^^~1~^~A~^^^1^7.9^10.9^1^^^^~12/01/2008~ -~12014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12014~^~401~^1.9^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12014~^~421~^63.0^0^^~4~^~BFZN~^~12516~^^^^^^^^^~12/01/2006~ -~12014~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~430~^7.3^3^0.7^~1~^~A~^^^1^6.3^8.9^2^3.8^10.6^~2, 3~^~12/01/2008~ -~12016~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12016~^~291~^6.5^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~317~^9.4^0^^~4~^~BFZN~^~12014~^^^^^^^^^~04/01/2009~ -~12016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12016~^~401~^1.8^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12016~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12016~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~430~^4.5^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~454~^1.5^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~12021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12021~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12022~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12023~^~291~^11.8^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~317~^34.4^16^6.1^~1~^~A~^^^5^15.6^97.5^2^11.6^57.1^~2, 3~^~03/01/2009~ -~12023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12023~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~421~^25.6^0^^~4~^~BFZN~^~12201~^^^^^^^^^~12/01/2006~ -~12023~^~430~^0.0^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12024~^~291~^14.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~317~^34.4^0^^~4~^~BFZN~^~12023~^^^^^^^^^~03/01/2009~ -~12024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12024~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12029~^~291~^16.9^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~317~^34.4^0^^~4~^~BFZN~^~12201~^^^^^^^^^~03/01/2009~ -~12029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12029~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~421~^25.6^0^^~4~^~BFZN~^~12201~^^^^^^^^^~12/01/2006~ -~12029~^~430~^0.0^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12032~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12033~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12034~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12036~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12036~^~291~^8.6^5^1.8^~1~^~A~^^^2^6.5^13.6^1^-15.3^32.5^~2~^~05/01/2007~ -~12036~^~317~^53.0^11^8.0^~1~^~A~^^^2^7.3^82.5^1^-49.3^155.2^~2~^~05/01/2007~ -~12036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12036~^~401~^1.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12036~^~421~^55.1^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12036~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~12036~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~12036~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~12036~^~454~^35.4^2^^~1~^~A~^^^1^28.7^42.1^1^^^^~12/01/2006~ -~12037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12037~^~291~^11.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12037~^~317~^79.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12037~^~401~^1.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12037~^~421~^55.1^0^^~4~^~BFZN~^~12036~^^^^^^^^^~12/01/2006~ -~12037~^~430~^2.7^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~ -~12038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12038~^~291~^10.6^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~317~^78.2^5^6.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~12038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12038~^~401~^1.1^2^^~1~^~A~^^^2^0.7^2.2^^^^~1~^~05/01/2004~ -~12038~^~421~^55.1^0^^~4~^~BFZN~^~12036~^^^^^^^^^~12/01/2006~ -~12038~^~430~^3.1^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12039~^~291~^11.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~12039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12039~^~401~^1.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12040~^~291~^5.7^3^0.1^~1~^~A~^^^1^5.5^6.1^2^4.9^6.4^~2, 3~^~08/01/2010~ -~12040~^~317~^104.4^3^6.5^~1~^~A~^^^1^91.3^112.0^2^76.0^132.7^~2, 3~^~08/01/2010~ -~12040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12040~^~401~^2.7^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1986~ -~12041~^~291~^5.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~317~^58.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12041~^~401~^1.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12061~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12061~^~291~^12.5^89^0.2^~1~^~A~^^^3^7.9^19.3^3^11.5^13.5^~2~^~04/01/2013~ -~12061~^~317~^4.1^26^2.4^~1~^~A~^^^4^0.0^15.0^2^-6.4^14.6^~1, 2~^~04/01/2013~ -~12061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12061~^~401~^0.0^49^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~05/01/2007~ -~12061~^~421~^52.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12061~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~12061~^~430~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~12061~^~454~^0.5^5^5.1e-02^~1~^~A~^^^2^0.4^0.7^3^0.3^0.6^~2, 3~^~03/01/2006~ -~12062~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~12062~^~291~^9.9^8^0.3^~1~^~A~^^^2^8.0^11.8^1^5.9^13.7^~2~^~03/01/2010~ -~12062~^~317~^3.2^5^2.4^~1~^~A~^^^2^0.7^8.0^1^-28.3^34.7^~1, 2~^~03/01/2010~ -~12062~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12062~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~01/01/2001~ -~12062~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2006~ -~12062~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12063~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~12063~^~291~^10.9^20^0.4^~1~^~A~^^^3^7.8^13.1^2^9.1^12.6^~2~^~03/01/2010~ -~12063~^~317~^2.0^5^0.8^~1~^~A~^^^3^0.0^3.7^2^-1.7^5.6^~1, 2~^~04/01/2013~ -~12063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12063~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~01/01/2001~ -~12063~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~02/01/2007~ -~12063~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12065~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12065~^~291~^10.5^3^0.6^~1~^~A~^^^1^10.3^11.7^2^7.8^13.1^~4~^~01/01/2001~ -~12065~^~317~^4.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2014~ -~12065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12065~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~01/01/2001~ -~12065~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2006~ -~12065~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~12071~^~291~^4.8^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~317~^4.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12071~^~401~^0.1^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~12071~^~421~^28.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~12071~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~12077~^~401~^15.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12078~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12078~^~291~^7.5^3^0.2^~1~^~A~^^^1^7.1^7.9^2^6.5^8.5^~2, 3~^~02/01/2003~ -~12078~^~317~^1917.0^15^231.7^~1~^~A~^^^2^136.0^2740.0^13^1414.5^2419.5^~2, 3~^~02/01/2003~ -~12078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12078~^~401~^0.7^3^0.0^~1~^~A~^^^2^0.7^0.7^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~421~^28.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12078~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~430~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~454~^0.4^2^^~1~^~A~^^^2^0.4^0.5^^^^^~04/01/2006~ -~12084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12084~^~291~^4.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~317~^17.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12084~^~401~^3.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12085~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12085~^~291~^3.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12085~^~317~^11.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12085~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12085~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~421~^61.0^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2006~ -~12085~^~430~^34.7^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12086~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12086~^~291~^3.3^2^^~1~^~A~^^^2^3.3^3.4^^^^^~04/01/2002~ -~12086~^~317~^20.3^7^6.2^~1~^~A~^^^4^2.7^35.0^3^0.2^40.3^~2~^~04/01/2002~ -~12086~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12086~^~401~^0.3^8^0.2^~1~^~A~^^^3^0.0^2.7^2^-0.9^1.5^~1, 2~^~04/01/2002~ -~12086~^~421~^61.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12086~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2002~ -~12086~^~430~^34.7^8^3.4^~1~^~A~^^^2^19.4^64.3^3^23.9^45.5^~2, 3~^~04/01/2002~ -~12086~^~454~^11.2^5^0.9^~1~^~A~^^^2^8.9^13.9^3^8.1^14.3^~2, 3~^~04/01/2006~ -~12087~^~291~^3.3^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~317~^19.9^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12087~^~401~^0.5^2^^~1~^~A~^^^1^0.5^0.5^1^^^~1~^~03/01/2002~ -~12087~^~430~^34.1^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12088~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12088~^~291~^2.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12088~^~317~^11.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12088~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12088~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12093~^~401~^36.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12094~^~401~^58.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12095~^~401~^24.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12096~^~401~^38.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12097~^~291~^8.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12097~^~401~^43.0^4^6.8^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12098~^~401~^40.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12099~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~12099~^~291~^11.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12099~^~317~^1.8^5^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~12099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12099~^~401~^15.0^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12100~^~401~^15.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12101~^~401~^26.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12104~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12104~^~291~^9.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~317~^10.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12104~^~401~^3.3^3^1.2^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~421~^12.1^0^^~4~^~BFSN~^~12109~^^^^^^^^^~11/01/2006~ -~12104~^~430~^0.2^0^^~4~^~BFFN~^~04047~^^^^^^^^^~11/01/2002~ -~12108~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12108~^~291~^16.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12108~^~317~^18.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12108~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12108~^~401~^1.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~421~^22.1^0^^~4~^~BFSN~^~12109~^^^^^^^^^~11/01/2006~ -~12108~^~430~^0.3^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12109~^~291~^9.9^3^0.8^~1~^~A~^^^1^9.0^11.6^2^6.2^13.4^~2, 3~^~04/01/2006~ -~12109~^~317~^16.1^3^1.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~12109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12109~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~421~^19.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~12109~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~454~^1.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12110~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12110~^~291~^4.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12110~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12110~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12114~^~401~^1.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12115~^~291~^2.2^0^^~4~^^^^^^^^^^^~04/01/1985~ -~12115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12115~^~401~^2.8^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12116~^~291~^0.2^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~317~^5.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12116~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~421~^6.6^0^^~4~^~BFSN~^~12104~^^^^^^^^^~02/01/2007~ -~12116~^~430~^0.1^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12117~^~291~^2.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12117~^~317~^6.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12117~^~401~^2.8^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~421~^8.5^0^^~4~^~BFZN~^~12118~^^^^^^^^^~02/01/2007~ -~12117~^~430~^0.1^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12118~^~401~^1.0^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~421~^8.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~12118~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~12119~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12119~^~291~^1.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12119~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12119~^~401~^2.4^4^0.8^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~421~^1.1^0^^~4~^~BFSN~^~12104~^^^^^^^^^~02/01/2007~ -~12119~^~430~^0.0^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12120~^~291~^9.7^4^0.3^~1~^~A~^^^1^9.0^10.7^3^8.4^10.8^~4~^~12/01/2000~ -~12120~^~317~^2.4^8^0.5^~1~^~A~^^^2^1.1^6.3^3^0.6^4.0^~2, 3~^~12/01/2002~ -~12120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12120~^~401~^6.3^4^0.4^~1~^~A~^^^1^5.0^7.0^3^4.7^7.7^~4~^~12/01/2000~ -~12120~^~421~^45.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12120~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~12120~^~430~^14.2^8^1.1^~1~^~A~^^^2^8.7^20.7^6^11.4^17.0^~2, 3~^~12/01/2002~ -~12120~^~454~^0.4^5^9.9e-02^~1~^~A~^^^2^0.2^0.7^3^7.8e-02^0.7^~2, 3~^~03/01/2006~ -~12121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12121~^~291~^11.0^2^^~1~^~A~^^^1^10.1^12.0^^^^^~06/01/2001~ -~12121~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12121~^~401~^2.0^2^^~1~^~A~^^^1^2.0^2.0^^^^^~06/01/2001~ -~12122~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12122~^~291~^9.4^4^0.6^~1~^~A~^^^1^7.7^10.5^3^7.4^11.3^~4~^~01/01/2001~ -~12122~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12122~^~401~^3.8^4^0.6^~1~^~A~^^^1^2.0^5.0^3^1.7^5.7^~4~^~12/01/2000~ -~12127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12127~^~401~^15.0^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12128~^~401~^29.3^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12129~^~291~^9.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~12129~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12129~^~401~^9.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12130~^~291~^6.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~317~^8.1^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~12130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12130~^~401~^2.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~12131~^~291~^8.6^3^0.9^~1~^~A~^^^1^7.6^10.2^2^4.6^12.4^~4~^~12/01/2000~ -~12131~^~317~^3.6^1^^~1~^~A~^^^^^^^^^^~07/01/1999~ -~12131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12131~^~401~^1.2^3^0.2^~1~^~A~^^^1^1.0^1.7^2^0.1^2.2^~4~^~12/01/2000~ -~12132~^~291~^8.0^4^0.7^~1~^~A~^^^1^6.1^9.2^3^5.7^10.2^~4~^~12/01/2000~ -~12132~^~317~^11.7^8^0.9^~1~^~A~^^^2^8.8^15.3^5^9.2^14.1^~2, 3~^~04/01/2006~ -~12132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12132~^~401~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^3^0.7^0.7^~4~^~12/01/2000~ -~12132~^~421~^44.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12132~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~12132~^~454~^0.3^5^1.5e-02^~1~^~A~^^^2^0.2^0.3^3^0.2^0.3^~2, 3~^~04/01/2006~ -~12135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12135~^~291~^6.4^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~317~^9.3^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12135~^~401~^0.8^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~421~^59.2^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~430~^12.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12136~^~291~^8.1^2^^~1~^~A~^^^1^7.2^9.1^1^^^^~06/01/2015~ -~12136~^~317~^11.0^2^^~1~^~A~^^^1^10.7^11.4^1^^^^~06/01/2015~ -~12136~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~ -~12136~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~ -~12136~^~430~^8.9^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12137~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12137~^~291~^7.0^10^0.1^~1~^~A~^^^1^6.0^7.6^9^6.6^7.2^~2, 3~^~05/01/2011~ -~12137~^~317~^33.9^10^5.3^~1~^~A~^^^1^14.3^69.8^9^21.6^46.0^~2, 3~^~05/01/2011~ -~12137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12137~^~401~^0.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12137~^~421~^52.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12137~^~430~^5.7^10^0.8^~1~^~A~^^^1^2.8^11.1^9^3.6^7.7^~2, 3~^~05/01/2011~ -~12138~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12138~^~291~^5.5^0^^~1~^^^^^^^^^^^~10/01/1995~ -~12138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12138~^~401~^0.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~291~^5.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12140~^~401~^0.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12141~^~291~^7.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~317~^3.7^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~ -~12141~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~ -~12141~^~430~^4.3^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12142~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12142~^~291~^9.6^3^0.4^~1~^~A~^^^1^8.8^10.0^2^7.8^11.3^~4~^~01/01/2001~ -~12142~^~313~^10.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~12142~^~317~^3.8^9^0.1^~1~^~A~^^^3^1.3^8.5^1^2.3^5.2^~2~^~09/01/2002~ -~12142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12142~^~401~^1.1^3^0.4^~1~^~A~^^^1^0.7^2.0^2^-0.7^2.9^~4~^~01/01/2001~ -~12142~^~421~^40.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12142~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~12142~^~430~^3.5^8^0.4^~1~^~A~^^^2^2.0^6.3^5^2.4^4.5^~2, 3~^~09/01/2002~ -~12142~^~454~^0.7^5^7.4e-02^~1~^~A~^^^2^0.5^0.9^3^0.4^0.9^~2, 3~^~03/01/2006~ -~12143~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1994~ -~12143~^~291~^9.4^3^0.6^~1~^~A~^^^1^8.0^10.2^2^6.4^12.4^~4~^~01/01/2001~ -~12143~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12143~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^2^0.7^0.7^~4~^~03/01/2001~ -~12144~^~291~^9.5^3^0.3^~1~^~A~^^^1^8.7^10.0^2^7.7^11.1^~4~^~01/01/2001~ -~12144~^~317~^6.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12144~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^2^0.7^0.7^~4~^~03/01/2001~ -~12145~^~401~^0.6^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12147~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12147~^~291~^3.7^5^5.2e-02^~1~^~A~^^^2^3.3^5.1^3^3.5^3.9^~2, 3~^~02/01/2003~ -~12147~^~317~^0.7^4^6.9e-02^~1~^~A~^^^1^0.6^0.9^3^0.4^0.9^~2, 3~^~02/01/2003~ -~12147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12147~^~401~^0.8^7^0.1^~1~^~A~^^^2^0.0^1.9^5^0.2^1.2^~1, 2, 3~^~02/01/2003~ -~12147~^~421~^55.8^5^1.0^~1~^~AS~^^^2^53.2^58.9^3^52.4^59.1^~2, 3~^~04/01/2006~ -~12147~^~429~^0.0^7^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~430~^53.9^7^1.7^~1~^~A~^^^2^33.4^73.7^4^49.0^58.7^~2, 3~^~02/01/2003~ -~12147~^~454~^0.4^5^1.5e-02^~1~^~A~^^^2^0.3^0.4^3^0.3^0.4^~2, 3~^~04/01/2006~ -~12149~^~291~^10.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12149~^~401~^2.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12151~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12151~^~291~^10.6^10^0.3^~1~^~A~^^^4^8.0^11.6^3^9.4^11.7^~2~^~04/01/2015~ -~12151~^~313~^3.4^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12151~^~317~^7.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12151~^~401~^5.6^2^^~1~^~A~^^^2^5.0^6.2^1^^^^~03/01/2009~ -~12152~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12152~^~291~^10.3^20^0.5^~1~^~A~^^^5^6.0^12.0^4^8.6^11.9^~2~^~04/01/2015~ -~12152~^~317~^10.0^10^0.8^~1~^~A~^^^4^8.0^12.0^3^7.3^12.6^~2~^~05/01/2010~ -~12152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12152~^~401~^3.0^6^0.7^~1~^~A~^^^2^2.0^4.6^1^-6.5^12.5^~2~^~05/01/2010~ -~12152~^~421~^71.4^8^0.9^~1~^~AS~^^^2^68.2^77.2^4^68.7^74.0^~2, 3~^~05/01/2010~ -~12152~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~12/01/2002~ -~12152~^~430~^13.2^8^0.2^~1~^~A~^^^2^10.1^15.1^1^9.5^16.8^~2~^~12/01/2002~ -~12152~^~454~^0.8^8^4.3e-02^~1~^~A~^^^2^0.7^1.0^4^0.6^0.9^~2, 3~^~04/01/2006~ -~12154~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~12154~^~291~^6.8^2^^~1~^~A~^^^2^5.0^8.6^1^^^^~06/01/2002~ -~12154~^~317~^17.0^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~12154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12154~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~421~^32.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12154~^~430~^2.7^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~ -~12154~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12155~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12155~^~291~^6.7^7^0.5^~1~^~A~^^^1^4.7^9.2^6^5.3^8.0^~4~^~12/01/2000~ -~12155~^~317~^4.9^6^0.4^~1~^~A~^^^2^3.8^6.3^5^3.8^5.9^~4~^~10/01/2002~ -~12155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12155~^~401~^1.3^7^0.1^~1~^~A~^^^1^1.0^2.0^6^0.8^1.7^~4~^~12/01/2000~ -~12155~^~421~^39.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12155~^~429~^0.0^8^5.0e-03^~1~^~A~^^^2^0.0^0.0^3^-1.0e-03^3.1e-02^~1, 2, 3~^~10/01/2002~ -~12155~^~430~^2.7^8^0.2^~1~^~A~^^^2^1.0^4.6^6^2.0^3.2^~2, 3~^~10/01/2002~ -~12155~^~454~^0.3^5^1.9e-02^~1~^~A~^^^2^0.2^0.3^3^0.2^0.3^~2, 3~^~03/01/2006~ -~12156~^~291~^3.6^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12157~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~291~^7.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~317~^5.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~401~^1.4^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~12157~^~421~^38.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~430~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12158~^~291~^6.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1999~ -~12158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12158~^~401~^7.6^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~12160~^~291~^5.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12160~^~401~^9.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~291~^18.4^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12163~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12163~^~401~^0.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12166~^~291~^9.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~317~^34.4^0^^~4~^~BFZN~^~12201~^^^^^^^^^~03/01/2009~ -~12166~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12166~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~421~^25.8^0^^~4~^~BFSN~^~12201~^^^^^^^^^~12/01/2006~ -~12166~^~430~^0.0^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12167~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12167~^~291~^5.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12167~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12167~^~401~^26.0^3^6.0^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~421~^1.5^0^^~4~^~BFFN~^~12109~^^^^^^^^^~12/01/2006~ -~12167~^~430~^7.8^0^^~4~^~BFSN~^~12635~^^^^^^^^^~02/01/2003~ -~12169~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12169~^~291~^5.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12169~^~317~^35.5^0^^~4~^~BFSN~^~12023~^^^^^^^^^~03/01/2009~ -~12169~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12169~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12170~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~291~^9.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12171~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12174~^~401~^0.0^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12175~^~401~^61.3^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12176~^~401~^1.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12177~^~401~^1.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12179~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12179~^~291~^4.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12179~^~317~^16.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12179~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12179~^~401~^0.7^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~421~^19.3^0^^~4~^~BFZN~^~12109~^^^^^^^^^~11/01/2006~ -~12179~^~430~^0.3^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12193~^~401~^30.7^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12195~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~12195~^~291~^10.3^8^0.4^~1~^~A~^^^1^9.2^12.9^7^9.3^11.2^~4~^~02/01/2010~ -~12195~^~317~^2.4^8^0.1^~1~^~A~^^^1^2.2^3.3^7^2.0^2.6^~1, 4~^~05/01/2010~ -~12195~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12195~^~401~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^7^0.0^0.0^~1, 4~^~02/01/2010~ -~12195~^~421~^52.1^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12195~^~430~^0.0^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~ -~12198~^~291~^9.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12198~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~291~^5.2^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12200~^~401~^0.1^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12201~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~12201~^~291~^11.6^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~317~^34.4^16^6.1^~1~^~A~^^^5^15.6^97.5^2^11.6^57.1^~2, 3~^~03/01/2009~ -~12201~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12201~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12201~^~421~^25.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12201~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~12201~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12202~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12202~^~401~^26.3^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12203~^~401~^9.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12204~^~401~^28.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12205~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~291~^13.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~12206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12206~^~401~^0.7^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12220~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~12220~^~291~^27.3^3^0.3^~1~^~A~^^^2^25.3^28.6^1^23.1^31.3^~2~^~03/01/2005~ -~12220~^~317~^25.4^2^^~1~^~A~^^^1^4.8^46.0^1^^^^~03/01/2005~ -~12220~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12220~^~401~^0.6^3^0.1^~1~^~A~^^^2^0.5^0.7^1^-0.7^2.0^~1, 2~^~03/01/2005~ -~12220~^~421~^78.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~12220~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2005~ -~12220~^~430~^4.3^2^^~1~^~A~^^^1^3.7^4.8^1^^^^~03/01/2005~ -~12220~^~454~^3.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12516~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12516~^~291~^6.5^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~317~^9.4^0^^~4~^~BFZN~^~12014~^^^^^^^^^~04/01/2009~ -~12516~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12516~^~401~^1.8^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12516~^~421~^63.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12516~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~430~^4.5^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~454~^1.5^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~12529~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12529~^~291~^16.9^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~317~^34.4^0^^~4~^~BFZN~^~12201~^^^^^^^^^~03/01/2009~ -~12529~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12529~^~401~^0.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~421~^25.6^0^^~4~^~BFZN~^~12201~^^^^^^^^^~12/01/2006~ -~12529~^~430~^0.0^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12536~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2014~ -~12536~^~291~^9.0^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~317~^79.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~12536~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~401~^1.4^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~421~^55.1^0^^~4~^~BFZN~^~12036~^^^^^^^^^~05/01/2014~ -~12536~^~430~^2.7^0^^~4~^~BFFN~^~04584~^^^^^^^^^~05/01/2014~ -~12537~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12537~^~291~^9.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12537~^~317~^79.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12537~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12537~^~401~^1.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12537~^~421~^55.1^0^^~4~^~BFZN~^~12036~^^^^^^^^^~12/01/2006~ -~12537~^~430~^2.7^0^^~4~^~BFFN~^~04584~^^^^^^^^^~02/01/2003~ -~12538~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2004~ -~12538~^~291~^10.6^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~317~^78.2^5^6.3^~1~^~A~^^^^^^^^^^~02/01/1998~ -~12538~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12538~^~401~^1.1^2^^~1~^~A~^^^2^0.7^2.2^^^^~1~^~03/01/2004~ -~12538~^~421~^55.1^0^^~4~^~BFZN~^~12036~^^^^^^^^^~12/01/2006~ -~12538~^~430~^3.1^0^^~4~^~BFFN~^~04584~^^^^^^^^^~02/01/2003~ -~12539~^~291~^11.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~12539~^~317~^62.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12539~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12539~^~401~^1.4^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12540~^~291~^5.7^3^0.1^~1~^~A~^^^1^5.5^6.1^2^4.9^6.4^~2, 3~^~02/01/2010~ -~12540~^~317~^104.4^3^6.5^~1~^~A~^^^1^91.3^112.0^2^76.0^132.7^~2, 3~^~02/01/2010~ -~12540~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12540~^~401~^2.7^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12563~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~ -~12563~^~291~^10.9^20^0.4^~1~^~A~^^^3^7.8^13.1^2^9.1^12.6^~2~^~05/01/2010~ -~12563~^~317~^2.0^5^0.8^~1~^~A~^^^3^0.0^3.7^2^-1.7^5.6^~1, 2~^~04/01/2013~ -~12563~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12563~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~01/01/2001~ -~12563~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~02/01/2007~ -~12563~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~ -~12565~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~12565~^~291~^10.5^3^0.6^~1~^~A~^^^1^10.3^11.7^2^7.8^13.1^~4~^~01/01/2001~ -~12565~^~317~^4.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2014~ -~12565~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12565~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~01/01/2001~ -~12565~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2006~ -~12565~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~ -~12567~^~291~^10.7^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12585~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12585~^~291~^3.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12585~^~317~^11.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~12585~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12585~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~421~^61.0^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2006~ -~12585~^~430~^34.7^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12586~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12586~^~291~^3.3^2^^~1~^~A~^^^2^3.3^3.4^1^^^^~04/01/2002~ -~12586~^~317~^20.3^7^6.2^~1~^~A~^^^4^2.7^35.0^3^0.2^40.3^~2~^~04/01/2002~ -~12586~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12586~^~401~^0.3^8^0.2^~1~^~A~^^^3^0.0^2.7^2^-0.9^1.5^~1, 2~^~04/01/2002~ -~12586~^~421~^61.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12586~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2002~ -~12586~^~430~^34.7^8^3.4^~1~^~A~^^^2^19.4^64.3^3^23.9^45.5^~2, 3~^~04/01/2002~ -~12586~^~454~^11.2^5^0.9^~1~^~A~^^^2^8.9^13.9^3^8.1^14.3^~2, 3~^~03/01/2006~ -~12588~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12588~^~291~^3.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~317~^9.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12588~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~421~^48.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~430~^30.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12632~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~12632~^~291~^8.0^4^0.7^~1~^~A~^^^1^6.1^9.2^3^5.7^10.2^~4~^~12/01/2000~ -~12632~^~317~^11.7^8^0.9^~1~^~A~^^^2^8.8^15.3^5^9.2^14.1^~2, 3~^~09/01/2002~ -~12632~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12632~^~401~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^3^0.7^0.7^~4~^~12/01/2000~ -~12632~^~421~^44.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~12632~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~12632~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2002~ -~12632~^~454~^0.3^5^1.5e-02^~1~^~A~^^^2^0.2^0.3^3^0.2^0.3^~2, 3~^~03/01/2006~ -~12635~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12635~^~291~^9.0^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12635~^~317~^7.5^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~12635~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12635~^~401~^0.4^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~421~^54.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~12635~^~430~^12.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12637~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~12637~^~291~^7.0^10^0.1^~1~^~A~^^^1^6.0^7.6^9^6.6^7.2^~2, 3~^~05/01/2011~ -~12637~^~317~^33.9^10^5.3^~1~^~A~^^^1^14.3^69.8^9^21.6^46.0^~2, 3~^~05/01/2011~ -~12637~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12637~^~401~^0.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12637~^~421~^52.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~12637~^~430~^5.7^10^0.8^~1~^~A~^^^1^2.8^11.1^9^3.6^7.7^~2, 3~^~05/01/2011~ -~12638~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12638~^~291~^5.5^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12638~^~317~^421.5^0^^~4~^~RF~^^^^^^^^^^~12/01/1997~ -~12638~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12638~^~401~^0.5^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~421~^51.2^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~12638~^~430~^17.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12643~^~291~^9.4^3^0.6^~1~^~A~^^^1^8.0^10.2^2^6.4^12.4^~4~^~01/01/2001~ -~12643~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12643~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12643~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^2^0.7^0.7^~4~^~03/01/2001~ -~12644~^~291~^9.5^3^0.3^~1~^~A~^^^1^8.7^10.0^2^7.7^11.1^~4~^~01/01/2001~ -~12644~^~317~^6.0^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12644~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12644~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^2^0.7^0.7^~4~^~03/01/2001~ -~12652~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12652~^~291~^10.3^20^0.5^~1~^~A~^^^5^6.0^12.0^4^8.6^11.9^~2~^~04/01/2015~ -~12652~^~317~^10.0^10^0.8^~1~^~A~^^^4^8.0^12.0^3^7.3^12.6^~2~^~05/01/2010~ -~12652~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12652~^~401~^3.0^6^0.7^~1~^~A~^^^2^2.0^4.6^1^-6.5^12.5^~2~^~05/01/2010~ -~12652~^~421~^71.4^8^0.8^~1~^~AS~^^^2^68.2^77.2^1^60.1^82.6^~2~^~05/01/2010~ -~12652~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2~^~12/01/2002~ -~12652~^~430~^13.2^8^0.2^~1~^~A~^^^2^10.1^15.1^1^9.5^16.8^~2~^~12/01/2002~ -~12652~^~454~^0.8^8^2.6e-02^~1~^~A~^^^2^0.7^1.0^1^0.4^1.1^~2~^~03/01/2006~ -~12663~^~291~^18.4^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~12663~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12663~^~401~^0.3^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~421~^39.1^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12663~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~12665~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~291~^10.5^3^0.6^~1~^~A~^^^1^10.3^11.7^2^7.8^13.1^~4~^~07/01/2012~ -~12665~^~317~^4.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2014~ -~12665~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~4~^~07/01/2012~ -~12665~^~421~^52.1^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12665~^~430~^0.0^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12665~^~454~^0.5^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~ -~12695~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~12695~^~291~^10.3^8^0.4^~1~^~A~^^^1^9.2^12.9^7^9.3^11.2^~4~^~05/01/2010~ -~12695~^~317~^2.4^8^0.1^~1~^~A~^^^1^2.2^3.3^7^2.0^2.6^~1, 4~^~05/01/2010~ -~12695~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12695~^~401~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^7^0.0^0.0^~1, 4~^~05/01/2010~ -~12695~^~421~^52.1^0^^~4~^~BFZN~^~12563~^^^^^^^^^~02/01/2007~ -~12695~^~430~^0.0^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~ -~12698~^~221~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~12698~^~291~^4.7^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~317~^34.4^0^^~4~^~BFZN~^~12201~^^^^^^^^^~03/01/2009~ -~12698~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12698~^~401~^4.2^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12737~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~291~^7.0^10^0.1^~1~^~A~^^^1^6.0^7.6^9^6.6^7.2^~2, 3~^~08/01/2012~ -~12737~^~317~^33.9^10^5.3^~1~^~A~^^^1^14.3^69.8^9^21.6^46.0^~2, 3~^~08/01/2012~ -~12737~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12737~^~421~^52.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~12737~^~430~^5.7^10^0.8^~1~^~A~^^^1^2.8^11.1^9^3.6^7.7^~2, 3~^~08/01/2012~ -~12738~^~221~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~291~^7.1^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~313~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~317~^139.1^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12738~^~401~^0.6^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13000~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~317~^21.1^11^5.2^~1~^~A~^^^1^8.8^56.1^10^9.3^32.9^~2, 3~^~06/01/2007~ -~13000~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~421~^65.1^11^2.1^~1~^~AS~^^^1^55.9^79.6^10^60.3^69.8^~2, 3~^~06/01/2007~ -~13000~^~430~^0.9^0^^~4~^~BFFN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~454~^7.6^11^0.4^~1~^~A~^^^1^4.9^10.0^10^6.5^8.5^~2, 3~^~06/01/2007~ -~13001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13001~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13001~^~317~^18.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~13001~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13002~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13002~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13002~^~317~^15.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~13002~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13019~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13019~^~317~^6.6^4^1.8^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13019~^~328~^0.3^1^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~13019~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13019~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~430~^3.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13020~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13020~^~317~^8.3^4^1.1^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13020~^~328~^0.4^1^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~13020~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13020~^~421~^56.1^0^^~4~^~BFPN~^~10007~^^^^^^^^^~01/01/2007~ -~13020~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13020~^~430~^3.1^0^^~4~^~CASN~^^^^^^^^^^~09/01/2002~ -~13020~^~454~^2.2^0^^~4~^~BFPN~^~10007~^^^^^^^^^~01/01/2007~ -~13023~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13023~^~317~^16.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13023~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13023~^~421~^86.5^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13023~^~430~^1.3^0^^~4~^~BFSN~^~23617~^^^^^^^^^~03/01/2007~ -~13047~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~317~^14.2^11^3.5^~1~^~A~^^^1^3.0^47.5^10^6.2^22.2^~1, 2, 3~^~06/01/2007~ -~13047~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~421~^67.4^12^1.4^~1~^~AS~^^^1^59.5^74.6^11^64.2^70.4^~2, 3~^~06/01/2007~ -~13047~^~430~^1.1^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~454~^8.0^12^0.4^~1~^~A~^^^1^4.6^10.3^11^6.9^9.0^~2, 3~^~06/01/2007~ -~13055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13055~^~317~^28.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13055~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13055~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~421~^110.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13055~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13055~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13065~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13065~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13065~^~317~^23.3^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13065~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13065~^~421~^88.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13065~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13065~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13066~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13066~^~317~^30.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13066~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13066~^~430~^2.5^0^^~4~^~BFFN~^~13067~^^^^^^^^^~05/01/2004~ -~13067~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13067~^~317~^28.9^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13067~^~421~^104.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13067~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2003~ -~13067~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13068~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13068~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13068~^~317~^25.4^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13068~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13068~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13068~^~421~^90.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13068~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13068~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13068~^~454~^13.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13069~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13069~^~317~^30.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13069~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13069~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13069~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13069~^~421~^106.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13069~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13069~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13069~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13070~^~317~^31.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13070~^~421~^106.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13070~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13070~^~454~^13.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13095~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13095~^~317~^16.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~13095~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13096~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13096~^~317~^28.9^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13096~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13097~^~317~^17.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13097~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13098~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13098~^~317~^33.6^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13098~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13147~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13147~^~317~^14.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~13147~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13148~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13148~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13148~^~317~^20.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13148~^~326~^0.7^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13148~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13148~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13148~^~421~^82.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13148~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~430~^2.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13148~^~454~^10.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13149~^~317~^14.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13149~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13150~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13150~^~317~^22.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13150~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13150~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13150~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13150~^~421~^117.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13150~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13150~^~430~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13150~^~454~^15.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13156~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13156~^~317~^27.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13156~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13156~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13156~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13156~^~421~^111.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13156~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13156~^~454~^14.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13158~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13158~^~317~^27.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13158~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13165~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~317~^29.3^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~421~^122.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13165~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13165~^~454~^16.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13227~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13227~^~317~^17.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13227~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13228~^~317~^30.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13228~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13231~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13231~^~317~^23.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~326~^0.1^0^^~4~^~BFFN~^~23151~^^^^^^^^^~06/01/2013~ -~13231~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13231~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~421~^54.4^0^^~4~^~BFPN~^~23385~^^^^^^^^^~07/01/2013~ -~13231~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13231~^~454~^9.6^0^^~4~^~BFPN~^~23385~^^^^^^^^^~07/01/2013~ -~13232~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13232~^~317~^29.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~326~^0.1^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~ -~13232~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~421~^62.6^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13232~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13232~^~454~^8.8^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13235~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13235~^~317~^22.5^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~326~^0.1^0^^~4~^~BFFN~^~23151~^^^^^^^^^~05/01/2013~ -~13235~^~328~^0.1^0^^~4~^~BFFN~^~23151~^^^^^^^^^~05/01/2013~ -~13235~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~421~^54.3^0^^~4~^~BFPN~^~23385~^^^^^^^^^~05/01/2013~ -~13235~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13235~^~454~^9.6^0^^~4~^~BFPN~^~23385~^^^^^^^^^~05/01/2013~ -~13236~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13236~^~317~^30.4^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~326~^0.1^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~ -~13236~^~328~^0.1^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~ -~13236~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~421~^66.1^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13236~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13236~^~454~^9.3^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13284~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~291~^0.0^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~317~^16.5^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~401~^0.0^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13285~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~317~^35.5^6^1.8^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~326~^0.1^6^2.6e-02^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~328~^0.1^6^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~421~^97.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13285~^~454~^11.4^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~317~^25.7^6^1.1^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~326~^0.1^6^5.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~328~^0.1^6^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13293~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~421~^71.5^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13293~^~454~^17.4^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~317~^24.4^4^1.4^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~326~^0.1^4^6.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13294~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~421~^72.6^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13294~^~454~^18.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13317~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13317~^~317~^21.5^0^^~4~^~BFYN~^^^^^^^^^^~02/01/2007~ -~13317~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~13317~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13317~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13317~^~421~^74.6^0^^~4~^~BFNN~^~23578~^^^^^^^^^~03/01/2007~ -~13317~^~430~^2.3^0^^~4~^~BFSN~^~23578~^^^^^^^^^~02/01/2007~ -~13318~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13318~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13318~^~317~^21.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~401~^10.7^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13319~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13319~^~317~^26.0^4^3.3^~1~^~A~^^^^^^^^^^~04/01/1998~ -~13319~^~401~^3.3^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13320~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13320~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13320~^~317~^21.8^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13320~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13320~^~401~^10.5^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~421~^490.9^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~13320~^~430~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~13321~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13321~^~317~^21.8^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~401~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13322~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13322~^~317~^38.9^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13322~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13322~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~421~^228.8^0^^~4~^~BFPN~^~05176~^^^^^^^^^~12/01/2006~ -~13322~^~430~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~13322~^~454~^4.1^0^^~4~^~BFPN~^~05176~^^^^^^^^^~12/01/2006~ -~13323~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~13323~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13323~^~317~^141.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~326~^1.1^46^^~1~^~A~^^^2^0.4^2.7^^^^~2, 3~^~02/01/2009~ -~13323~^~328~^1.1^82^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~13323~^~401~^9.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13324~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13324~^~317~^168.0^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~326~^1.1^46^^~1~^~A~^^^2^0.4^2.7^^^^~2, 3~^~02/01/2009~ -~13324~^~328~^1.1^82^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~13324~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~421~^513.2^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~13324~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13325~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13325~^~317~^39.7^4^4.5^~1~^~A~^^^1^29.2^51.3^3^25.2^54.0^~2, 3~^~02/01/2003~ -~13325~^~326~^1.2^46^^~1~^~A~^^^2^0.9^1.4^^^^~2, 3~^~02/01/2009~ -~13325~^~328~^1.2^82^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~13325~^~401~^1.3^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~421~^333.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~13325~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~430~^3.1^4^0.6^~1~^~A~^^^1^1.9^4.6^3^0.9^5.2^~2, 3~^~02/01/2003~ -~13325~^~454~^4.4^4^0.7^~1~^~A~^^^1^3.0^6.4^3^2.0^6.7^~2, 3~^~03/01/2006~ -~13326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13326~^~317~^36.1^4^1.5^~1~^~A~^^^1^33.0^39.3^3^31.0^41.1^~2, 3~^~02/01/2003~ -~13326~^~326~^1.2^46^^~1~^~A~^^^2^0.9^1.4^^^^~2, 3~^~02/01/2009~ -~13326~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~13326~^~401~^1.9^0^^~4~^~BFYN~^~13325~^^^^^^^^^~01/01/2003~ -~13326~^~421~^426.0^4^14.5^~1~^~AS~^^^1^383.7^447.6^3^379.6^472.3^~2, 3~^~08/01/2007~ -~13326~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~430~^3.3^4^0.9^~1~^~A~^^^1^1.7^5.8^3^0.4^6.2^~2, 3~^~02/01/2003~ -~13326~^~454~^5.6^4^1.0^~1~^~A~^^^1^3.1^8.0^3^2.3^8.9^~2, 3~^~08/01/2007~ -~13327~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13327~^~313~^5.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~13327~^~317~^32.8^4^1.5^~1~^~A~^^^1^30.1^36.0^3^27.7^37.8^~2, 3~^~02/01/2003~ -~13327~^~326~^1.2^46^^~1~^~A~^^^2^0.9^1.4^^^^~2, 3~^~02/01/2009~ -~13327~^~328~^1.2^82^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~13327~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~13327~^~421~^418.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~13327~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~430~^3.9^4^1.2^~1~^~A~^^^1^2.0^7.5^3^-5.3e-02^7.8^~2, 3~^~02/01/2003~ -~13327~^~454~^6.3^4^1.1^~1~^~A~^^^1^4.0^9.0^3^2.8^9.8^~2, 3~^~03/01/2006~ -~13328~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13328~^~317~^44.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13328~^~401~^38.5^5^0.8^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13329~^~317~^50.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13329~^~401~^32.7^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13330~^~317~^20.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13330~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13331~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13331~^~317~^24.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13331~^~401~^13.7^5^0.5^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13332~^~317~^48.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13332~^~401~^20.3^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13333~^~317~^62.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13333~^~401~^45.5^5^1.2^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13334~^~317~^91.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13334~^~401~^50.3^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1986~ -~13335~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13335~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13335~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13335~^~421~^5.6^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~13335~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~430~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13335~^~454~^0.3^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~13337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~13337~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13337~^~317~^18.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13337~^~401~^34.0^5^1.4^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13338~^~317~^21.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13338~^~401~^30.2^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~13339~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13339~^~317~^9.4^3^0.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~13339~^~401~^3.1^6^0.2^~1~^^^^^^^^^^^~05/01/1990~ -~13340~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13340~^~317~^13.2^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13340~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13340~^~401~^1.3^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~421~^155.0^0^^~4~^~BFPN~^~05176~^^^^^^^^^~12/01/2006~ -~13340~^~430~^1.2^2^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~13340~^~454~^2.8^0^^~4~^~BFPN~^~05176~^^^^^^^^^~12/01/2006~ -~13341~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13341~^~317~^12.5^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13341~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13341~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~421~^194.8^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~13341~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13342~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1998~ -~13342~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~13342~^~317~^13.0^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13342~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13342~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13342~^~421~^68.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13342~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~13342~^~454~^10.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13343~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~317~^32.3^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~421~^124.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13343~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13343~^~454~^16.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13344~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13344~^~317~^25.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13344~^~401~^24.0^22^1.0^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13345~^~317~^26.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13345~^~326~^0.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~13345~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13345~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~421~^119.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13345~^~430~^2.8^0^^~4~^~BFSN~^~13347~^^^^^^^^^~03/01/2003~ -~13345~^~454~^15.7^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13346~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13346~^~317~^19.0^3^6.0e-03^~1~^~A~^^^^^^^^^^~04/01/1998~ -~13346~^~401~^27.0^5^3.5^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13347~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13347~^~317~^32.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13347~^~326~^0.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~13347~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13347~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13347~^~421~^69.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13347~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13347~^~430~^1.5^0^^~4~^~CASN~^^^^^^^^^^~11/01/2002~ -~13347~^~454~^9.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/2006~ -~13348~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1986~ -~13348~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13348~^~317~^42.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/1997~ -~13348~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13348~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13348~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~13348~^~421~^89.2^0^^~4~^~BFNN~^~13347~^^^^^^^^^~02/01/2007~ -~13348~^~430~^1.6^0^^~4~^~CASN~^^^^^^^^^^~03/01/2003~ -~13348~^~454~^11.7^0^^~4~^~BFNN~^~13347~^^^^^^^^^~02/01/2007~ -~13349~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~317~^27.6^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~421~^70.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13349~^~454~^16.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13350~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~13350~^~313~^8.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~317~^32.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13350~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13350~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~421~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~454~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13351~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~317~^30.2^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13351~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13351~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~421~^91.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13351~^~454~^20.9^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~317~^32.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13352~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13352~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~421~^90.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13352~^~454~^21.6^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13353~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13353~^~317~^16.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~13353~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~13354~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~317~^28.0^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13354~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13354~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~421~^92.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13354~^~454~^20.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13355~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~313~^20.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~317~^17.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13355~^~328~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13355~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~421~^81.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~430~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2007~ -~13355~^~454~^10.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13356~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~317~^21.7^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13356~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13356~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~421~^71.8^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13356~^~454~^21.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13357~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13357~^~317~^14.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~13357~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~13358~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13358~^~317~^19.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~13358~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1996~ -~13359~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~317~^22.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13359~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13359~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~421~^70.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13359~^~454~^18.9^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13361~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~317~^29.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13361~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~421~^71.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~454~^9.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13362~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~317~^28.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13362~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~421~^82.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~454~^10.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~317~^28.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~328~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~421~^86.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~454~^10.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13364~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~317~^31.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13364~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~421~^86.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~11/01/2002~ -~13364~^~454~^12.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13365~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~317~^30.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13365~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~421~^84.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~454~^11.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~317~^33.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13366~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~421~^87.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~428~^0.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~454~^11.6^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13367~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13367~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13367~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13367~^~317~^23.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13367~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13367~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13367~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13367~^~421~^102.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13367~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13367~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13368~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13368~^~317~^24.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13368~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13368~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13368~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13368~^~421~^113.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13368~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~13368~^~454~^14.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13369~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13369~^~317~^30.9^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13369~^~421~^125.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13369~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13369~^~454~^16.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13370~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13370~^~317~^34.0^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13370~^~421~^126.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13370~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13370~^~454~^16.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13371~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13371~^~317~^21.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13371~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13371~^~421~^89.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13371~^~454~^11.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13372~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13372~^~317~^23.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13372~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13372~^~421~^106.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13372~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13373~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13373~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13373~^~317~^27.0^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13373~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13373~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13373~^~421~^110.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13373~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2003~ -~13373~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13375~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13375~^~317~^27.9^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13375~^~421~^111.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13375~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13375~^~454~^14.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13377~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13377~^~317~^33.0^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13377~^~421~^127.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13377~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13377~^~454~^16.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13378~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13378~^~317~^37.9^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13378~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13378~^~421~^127.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13378~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13378~^~454~^16.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13379~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13379~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13379~^~317~^25.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13379~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13379~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13379~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13379~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~430~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13380~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13380~^~317~^30.3^4^1.9^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~326~^0.2^4^2.6e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13380~^~421~^81.1^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13380~^~454~^11.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13381~^~317~^31.7^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13381~^~421~^85.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13381~^~454~^10.1^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13382~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13382~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13382~^~317~^26.7^7^2.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~13382~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13382~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13382~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13382~^~421~^118.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13382~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~13382~^~454~^15.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13383~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13383~^~317~^34.8^4^2.2^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~326~^0.1^4^3.2e-02^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~328~^0.1^4^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13383~^~421~^94.2^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13383~^~454~^12.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13384~^~317~^36.5^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13384~^~421~^99.8^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2010~ -~13384~^~454~^10.6^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13386~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13386~^~317~^21.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13386~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13387~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13387~^~317~^21.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13387~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13388~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13388~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13388~^~317~^22.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13388~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13388~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13388~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13388~^~421~^104.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13388~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~13388~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13389~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13389~^~317~^22.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13389~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13390~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13390~^~317~^22.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13390~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13391~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13391~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13391~^~317~^29.5^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13391~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13391~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13391~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13391~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13392~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13392~^~317~^21.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13392~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13393~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13393~^~317~^21.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13393~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13394~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13394~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13394~^~317~^34.3^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13394~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13394~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13394~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13395~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13395~^~317~^21.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13395~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13396~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13396~^~317~^21.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13396~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13398~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13398~^~317~^34.2^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13398~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13398~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13398~^~421~^127.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13398~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13398~^~454~^16.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13399~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13399~^~317~^28.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13399~^~421~^104.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13399~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13399~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13401~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13401~^~317~^34.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13401~^~421~^124.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13401~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13401~^~454~^16.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13402~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13402~^~317~^28.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13402~^~421~^101.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13402~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13402~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13404~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13404~^~317~^33.8^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13404~^~421~^131.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13404~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13404~^~454~^17.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13405~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13405~^~317~^28.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13405~^~421~^107.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13405~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13405~^~454~^14.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13407~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13407~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13407~^~317~^38.3^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13407~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13407~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13407~^~421~^129.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13407~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13407~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13407~^~454~^17.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13408~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13408~^~317~^31.5^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13408~^~421~^105.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13408~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13408~^~454~^13.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13410~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13410~^~317~^37.8^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13410~^~421~^126.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13410~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13410~^~454~^16.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13411~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13411~^~317~^30.9^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13411~^~421~^103.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13411~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13411~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13413~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13413~^~317~^43.3^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13413~^~421~^133.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13413~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13413~^~454~^17.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13414~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13414~^~317~^35.7^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13414~^~421~^107.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13414~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13414~^~454~^14.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13415~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13415~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13415~^~317~^28.4^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~326~^0.0^0^^~4~^~BFFN~^~23197~^^^^^^^^^~04/01/2013~ -~13415~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13415~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13415~^~421~^81.0^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13415~^~454~^13.9^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13416~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13416~^~317~^28.7^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~326~^0.0^0^^~4~^~BFFN~^~23195~^^^^^^^^^~04/01/2013~ -~13416~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13416~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13416~^~421~^81.6^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13416~^~454~^14.1^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13417~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13417~^~317~^27.9^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~326~^0.0^0^^~4~^~BFFN~^~23196~^^^^^^^^^~05/01/2013~ -~13417~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13417~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13417~^~421~^80.2^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13417~^~454~^13.5^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13418~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13418~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13418~^~317~^28.6^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~326~^0.0^0^^~4~^~BFFN~^~23100~^^^^^^^^^~05/01/2013~ -~13418~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13418~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13418~^~421~^81.3^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13418~^~454~^13.9^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13419~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13419~^~317~^28.8^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~326~^0.0^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13419~^~328~^0.0^0^^~4~^~BFYN~^~23361~^^^^^^^^^~06/01/2013~ -~13419~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13419~^~421~^81.2^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13419~^~454~^13.9^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13420~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13420~^~317~^28.1^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~326~^0.0^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13420~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13420~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13420~^~421~^80.5^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13420~^~454~^13.6^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13421~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13421~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13421~^~317~^27.4^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13421~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13421~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13421~^~421~^102.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13421~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13422~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13422~^~317~^28.3^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13422~^~421~^102.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13422~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13423~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13423~^~317~^26.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13423~^~421~^101.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13423~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13424~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13424~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13424~^~317~^31.1^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13424~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13424~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13424~^~421~^104.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13424~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13424~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13425~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13425~^~317~^31.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13425~^~421~^105.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13425~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13426~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13426~^~317~^34.4^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13426~^~421~^104.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13426~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13428~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13428~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13428~^~317~^32.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13428~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13428~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~13428~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13428~^~421~^135.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13428~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~13428~^~454~^17.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13430~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13430~^~317~^32.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13430~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13430~^~421~^135.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13430~^~454~^17.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13432~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13432~^~317~^32.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13432~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13432~^~421~^135.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13432~^~454~^17.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13436~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13436~^~317~^33.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13436~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13436~^~421~^137.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13436~^~454~^18.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13438~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13438~^~317~^33.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13438~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13438~^~421~^137.6^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2008~ -~13438~^~454~^18.1^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2008~ -~13439~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13439~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13439~^~317~^25.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~326~^0.1^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13439~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13439~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13439~^~421~^65.0^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~13439~^~454~^9.3^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13440~^~317~^25.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~326~^0.1^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13440~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13440~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13440~^~421~^106.5^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~13440~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~13440~^~454~^10.0^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13441~^~317~^25.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~326~^0.1^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13441~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13441~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13441~^~421~^70.2^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~13441~^~454~^9.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13442~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13442~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13442~^~317~^28.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~07/01/2009~ -~13442~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13442~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13442~^~421~^73.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13442~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13442~^~454~^12.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13443~^~317~^31.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~13443~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13443~^~421~^73.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~13443~^~454~^12.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13444~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13444~^~317~^25.9^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13444~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13444~^~421~^77.5^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13444~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13444~^~454~^12.5^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13445~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13445~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13445~^~317~^25.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~326~^0.1^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~13445~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13445~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13445~^~421~^67.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~13445~^~454~^9.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13446~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13446~^~317~^25.6^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~326~^0.1^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~13446~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13446~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13446~^~421~^68.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13446~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~13446~^~454~^10.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13447~^~317~^26.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~326~^0.1^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~13447~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13447~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13447~^~421~^66.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~13447~^~454~^9.1^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13448~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13448~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13448~^~317~^27.0^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~07/01/2009~ -~13448~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13448~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13448~^~421~^74.6^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13448~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13449~^~317~^26.3^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13449~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13449~^~421~^71.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13449~^~454~^12.6^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13450~^~317~^27.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13450~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13450~^~421~^77.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13450~^~454~^12.5^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13451~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13451~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13451~^~317~^31.9^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~ -~13451~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13451~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13451~^~421~^111.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13451~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13451~^~454~^14.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13452~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13452~^~317~^31.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13452~^~421~^110.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13452~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13452~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13453~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13453~^~317~^32.4^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13453~^~421~^112.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13453~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13453~^~454~^14.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13454~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13454~^~317~^35.8^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~ -~13454~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13454~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13454~^~421~^116.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13454~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13454~^~454~^15.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13455~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13455~^~317~^35.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13455~^~421~^115.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13455~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13455~^~454~^15.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13456~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13456~^~317~^38.9^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13456~^~421~^117.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13456~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13456~^~454~^15.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13459~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~317~^19.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~421~^91.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13460~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~317~^19.7^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~421~^89.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13463~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~317~^19.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~421~^93.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13464~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~317~^22.0^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~326~^0.1^0^^~4~^~BFFN~^~23150~^^^^^^^^^~06/01/2013~ -~13464~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13464~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~ -~13464~^~421~^56.4^0^^~4~^~BFPN~^~23386~^^^^^^^^^~07/01/2013~ -~13464~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13464~^~454~^9.6^0^^~4~^~BFPN~^~23386~^^^^^^^^^~07/01/2013~ -~13465~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~317~^28.2^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~326~^0.1^0^^~4~^~BFFN~^~23146~^^^^^^^^^~05/01/2013~ -~13465~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~421~^65.9^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13465~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13465~^~454~^9.0^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13466~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~317~^20.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~421~^99.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13467~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13467~^~317~^20.0^4^5.0^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13467~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13467~^~421~^97.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13468~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13468~^~317~^21.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~326~^0.0^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~ -~13468~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13469~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13469~^~317~^27.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~326~^0.1^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~ -~13469~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~421~^61.2^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13469~^~454~^8.0^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13470~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13470~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13470~^~317~^20.0^4^5.0^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13470~^~421~^102.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13473~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~317~^10.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~421~^92.1^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13474~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~317~^10.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~421~^91.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13477~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~317~^10.8^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~421~^92.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13478~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~317~^22.8^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~326~^0.1^0^^~4~^~BFFN~^~23150~^^^^^^^^^~05/01/2013~ -~13478~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~421~^56.1^0^^~4~^~BFPN~^~23386~^^^^^^^^^~05/01/2013~ -~13478~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13478~^~454~^9.6^0^^~4~^~BFPN~^~23386~^^^^^^^^^~05/01/2013~ -~13479~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~317~^29.3^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~326~^0.1^0^^~4~^~BFFN~^~23146~^^^^^^^^^~05/01/2013~ -~13479~^~328~^0.1^0^^~4~^~BFFN~^~23146~^^^^^^^^^~05/01/2013~ -~13479~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~421~^63.2^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13479~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13479~^~454~^8.6^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13481~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13481~^~317~^10.0^4^5.0^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~421~^99.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13482~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13482~^~317~^21.8^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~326~^0.0^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~ -~13482~^~328~^0.0^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~ -~13482~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~421~^58.9^0^^~4~^~BFPN~^~23384~^^^^^^^^^~05/01/2013~ -~13482~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13482~^~454~^9.5^0^^~4~^~BFPN~^~23384~^^^^^^^^^~05/01/2013~ -~13483~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13483~^~317~^28.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~326~^0.1^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~ -~13483~^~328~^0.1^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~ -~13483~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~421~^61.5^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13483~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13483~^~454~^8.0^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13484~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13484~^~317~^10.0^3^5.7^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13484~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~421~^99.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13485~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~317~^39.2^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13485~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~421~^129.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13485~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13485~^~454~^17.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13486~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~317~^24.2^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~421~^85.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13486~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13487~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~317~^24.2^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~421~^84.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13487~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13488~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~317~^24.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~421~^86.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13488~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13490~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~317~^37.3^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13491~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~317~^30.8^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~326~^0.0^0^^~4~^~BFFN~^~23100~^^^^^^^^^~05/01/2013~ -~13491~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13491~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~421~^90.1^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13491~^~454~^15.4^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13492~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~317~^30.4^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~326~^0.0^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~ -~13492~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13492~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~421~^90.8^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~430~^2.1^0^^~4~^~BFYN~^~23355~^^^^^^^^^~06/01/2013~ -~13492~^~454~^15.7^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13493~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~317~^31.5^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~326~^0.0^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~ -~13493~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13493~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~421~^89.0^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13493~^~454~^15.0^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13494~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~13494~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13494~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~421~^78.3^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~ -~13494~^~430~^3.0^0^^~4~^~BFSN~^~13497~^^^^^^^^^~05/01/2014~ -~13494~^~454~^10.1^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~ -~13495~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~317~^19.1^12^2.0^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~13495~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13495~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~421~^73.2^0^^~4~^~BFPN~^~13494~^^^^^^^^^~05/01/2014~ -~13495~^~430~^2.9^0^^~4~^~BFSN~^~13497~^^^^^^^^^~02/01/2006~ -~13495~^~454~^9.5^0^^~4~^~BFPN~^~13494~^^^^^^^^^~05/01/2014~ -~13496~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~317~^19.2^12^1.4^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~13496~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13496~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~421~^70.1^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~ -~13496~^~430~^2.8^0^^~4~^~BFSN~^~13497~^^^^^^^^^~02/01/2006~ -~13496~^~454~^9.1^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~ -~13497~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~13497~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13497~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~421~^77.8^12^3.7^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~430~^3.0^12^0.9^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~454~^10.1^12^1.0^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~317~^13.5^72^1.1^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~13498~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~13498~^~328~^0.1^16^1.0e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~421~^46.8^12^3.3^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~430~^2.9^12^0.3^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~454~^8.5^12^1.0^~1~^~AR~^^^^^^^^^^~07/01/2004~ -~13499~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~317~^21.5^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~ -~13499~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13499~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~421~^72.8^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2010~ -~13499~^~454~^23.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13500~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~317~^31.4^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13500~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13500~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~421~^105.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13500~^~454~^19.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~317~^31.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13501~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13501~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~421~^105.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13501~^~454~^20.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~317~^32.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13502~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13502~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~421~^105.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13502~^~454~^18.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~317~^22.9^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13519~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13519~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~421~^75.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13519~^~454~^18.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~317~^22.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13520~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13520~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~421~^71.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13520~^~454~^19.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~317~^23.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13523~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13523~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~421~^78.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13523~^~454~^16.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~317~^24.6^6^1.0^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13595~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13595~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~421~^63.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13595~^~454~^12.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~317~^22.9^4^1.2^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13596~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13596~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~421~^65.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13596~^~454~^13.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~317~^27.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13597~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13597~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~421~^62.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13597~^~454~^11.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13598~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~317~^30.7^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13598~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13598~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~421~^102.8^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13598~^~454~^19.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13647~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~317~^24.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~326~^0.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13647~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~421~^73.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13647~^~454~^14.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~317~^24.1^4^1.7^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~326~^0.0^4^1.5e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~328~^0.0^4^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13648~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~421~^69.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13648~^~454~^14.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13649~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~317~^24.1^6^2.3^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~326~^0.0^6^2.0e-02^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~328~^0.0^6^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13649~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~421~^77.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13649~^~454~^13.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13650~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~317~^30.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13650~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13650~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~421~^101.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13650~^~454~^20.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~317~^20.6^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13786~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13786~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~421~^63.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13786~^~454~^25.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~317~^20.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13788~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13788~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~421~^62.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13788~^~454~^26.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~317~^22.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13791~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13791~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~421~^64.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13791~^~454~^24.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13795~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~317~^23.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~421~^68.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~454~^11.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~07/01/2015~ -~13796~^~317~^28.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~326~^0.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~421~^83.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~454~^12.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13797~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~317~^22.8^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~421~^67.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~454~^11.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~317~^28.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~421~^81.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~430~^1.6^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~454~^12.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~317~^21.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~421~^68.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~454~^10.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~317~^26.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~421~^78.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~454~^11.6^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13803~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13803~^~317~^16.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13803~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13803~^~421~^76.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13803~^~454~^11.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13804~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13804~^~317~^22.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13804~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13804~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13804~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13804~^~421~^98.5^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13804~^~430~^1.9^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13805~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13805~^~317~^19.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13805~^~421~^74.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13805~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13805~^~454~^11.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13806~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13806~^~317~^27.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13806~^~421~^109.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13806~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13806~^~454~^14.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13807~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13807~^~317~^15.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13807~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13807~^~421~^73.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13807~^~454~^10.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13808~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13808~^~317~^21.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13808~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13808~^~421~^92.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13808~^~454~^12.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13809~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13809~^~317~^20.3^4^3.7^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13809~^~421~^80.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13809~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13809~^~454~^11.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13810~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13810~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13810~^~317~^28.3^4^4.2^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13810~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13810~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13810~^~421~^114.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13810~^~430~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13810~^~454~^15.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13811~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13811~^~317~^19.9^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13811~^~421~^79.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13811~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13811~^~454~^11.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13812~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13812~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13812~^~317~^27.8^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13812~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13812~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13812~^~421~^115.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13812~^~430~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13812~^~454~^15.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13813~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13813~^~317~^20.8^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13813~^~421~^80.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13813~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13813~^~454~^11.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13814~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13814~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13814~^~317~^28.8^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13814~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13814~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13814~^~421~^114.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13814~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13814~^~454~^15.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13815~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13815~^~317~^16.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13815~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13815~^~421~^71.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13815~^~454~^10.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13816~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13816~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13816~^~317~^24.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13816~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13816~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13816~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13816~^~421~^102.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13816~^~430~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2004~ -~13816~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13817~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13817~^~317~^16.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13817~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13817~^~421~^70.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13817~^~454~^10.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13818~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13818~^~317~^24.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13818~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13818~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13818~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13818~^~421~^100.4^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13818~^~430~^2.0^0^^~4~^~BFSN~^~13816~^^^^^^^^^~03/01/2007~ -~13819~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13819~^~317~^16.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13819~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13819~^~421~^72.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13819~^~454~^10.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13820~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13820~^~317~^24.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13820~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13820~^~421~^104.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13820~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13821~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~317~^27.3^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13821~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13821~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~421~^79.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13821~^~454~^27.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~317~^27.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13822~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13822~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~421~^87.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13822~^~454~^32.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~317~^28.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13823~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13823~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~421~^71.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13823~^~454~^23.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13824~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13824~^~317~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13824~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13824~^~421~^69.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13824~^~454~^10.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13825~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13825~^~317~^21.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13825~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13825~^~421~^85.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13825~^~454~^11.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13826~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13826~^~317~^22.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13826~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13826~^~421~^86.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13826~^~454~^11.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13827~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13827~^~317~^16.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13827~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13827~^~421~^68.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13827~^~454~^10.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13828~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13828~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13828~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13828~^~421~^84.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13828~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13829~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13829~^~317~^22.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13829~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13829~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13829~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13829~^~421~^86.1^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13829~^~430~^2.0^0^^~4~^~BFSN~^~13840~^^^^^^^^^~03/01/2007~ -~13830~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13830~^~317~^15.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13830~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13830~^~421~^70.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13830~^~454~^10.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13831~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13831~^~317~^21.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13831~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13831~^~421~^86.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13831~^~454~^11.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13832~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13832~^~317~^21.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13832~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13832~^~421~^88.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13832~^~454~^11.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13833~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13833~^~317~^20.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13833~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13833~^~421~^67.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13833~^~454~^9.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13834~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13834~^~317~^27.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13834~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13835~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13835~^~317~^28.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13835~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13838~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13838~^~317~^15.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13838~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13839~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13839~^~317~^21.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13839~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13840~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13840~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13840~^~317~^21.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13840~^~326~^0.5^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13840~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13840~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13840~^~421~^87.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13840~^~430~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2004~ -~13840~^~454~^11.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13841~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13841~^~317~^15.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13841~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13842~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13842~^~317~^21.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13842~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13843~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13843~^~317~^21.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13843~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13844~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13844~^~317~^15.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13844~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13845~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13845~^~317~^21.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13845~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13846~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13846~^~317~^21.7^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13846~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13847~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13847~^~317~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13847~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13848~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13848~^~317~^21.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13848~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13849~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13849~^~317~^22.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13849~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13850~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13850~^~317~^21.5^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13850~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13851~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13851~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13851~^~317~^28.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13851~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13851~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13851~^~421~^98.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13851~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13851~^~454~^12.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13852~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13852~^~317~^21.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13852~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13853~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13853~^~317~^20.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13853~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13854~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13854~^~317~^26.4^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13854~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13855~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13855~^~317~^21.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13855~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13856~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13856~^~317~^22.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13856~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13857~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13857~^~317~^29.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13857~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13858~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13858~^~317~^22.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13858~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13859~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13859~^~317~^16.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13859~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13860~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13860~^~317~^21.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13860~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13861~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13861~^~317~^22.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13861~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13862~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~317~^31.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13862~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13862~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~421~^103.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13862~^~454~^18.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~317~^22.6^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13863~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13863~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~421~^74.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13863~^~454~^17.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13864~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13864~^~317~^19.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13864~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13864~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13864~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13864~^~421~^85.9^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13864~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~13865~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13865~^~317~^27.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13865~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13865~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13865~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13865~^~421~^104.9^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13865~^~430~^1.6^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13866~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13866~^~317~^19.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13866~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13866~^~421~^85.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13866~^~454~^12.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13867~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13867~^~317~^27.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13867~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13867~^~421~^105.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13867~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13868~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13868~^~317~^24.8^4^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13868~^~421~^86.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13868~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13868~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13869~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13869~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13869~^~317~^33.5^4^5.4^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13869~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13869~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13869~^~421~^124.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13869~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13869~^~454~^16.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13870~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13870~^~317~^27.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13870~^~421~^100.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13870~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13870~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13871~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13871~^~317~^25.0^2^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13871~^~421~^86.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13871~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13871~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13872~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13872~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13872~^~317~^34.4^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13872~^~421~^125.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13872~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13872~^~454~^16.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13873~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13873~^~317~^27.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13873~^~421~^99.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13873~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13873~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13874~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13874~^~317~^24.7^2^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13874~^~421~^86.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13874~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13874~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13875~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13875~^~317~^32.6^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13875~^~421~^124.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13875~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13875~^~454~^16.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13876~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13876~^~317~^26.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13876~^~421~^102.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13876~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13876~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13877~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13877~^~317~^25.8^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13877~^~421~^89.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13877~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13877~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13878~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13878~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13878~^~317~^28.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13878~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13878~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13878~^~421~^107.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13878~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13878~^~454~^14.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13879~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13879~^~317~^26.1^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13879~^~421~^90.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13879~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13879~^~454~^13.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13880~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13880~^~317~^29.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13880~^~421~^108.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13880~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13880~^~454~^14.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13881~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13881~^~317~^25.6^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13881~^~421~^89.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13881~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13881~^~454~^13.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13882~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13882~^~317~^27.7^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13882~^~421~^107.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13882~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13882~^~454~^14.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13883~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13883~^~317~^19.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13883~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13883~^~421~^81.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13883~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13884~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13884~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13884~^~317~^26.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13884~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13884~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13884~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13884~^~421~^104.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13884~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2004~ -~13884~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13885~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13885~^~317~^19.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13885~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13885~^~421~^81.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13885~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13886~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13886~^~317~^26.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13886~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13886~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13886~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13886~^~421~^103.9^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13886~^~430~^1.5^0^^~4~^~BFSN~^~13884~^^^^^^^^^~03/01/2007~ -~13887~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13887~^~317~^19.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13887~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13887~^~421~^82.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13887~^~454~^12.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13888~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13888~^~317~^26.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13888~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13888~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13888~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13888~^~421~^105.2^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13888~^~430~^1.4^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13889~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~317~^22.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13889~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13889~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~421~^70.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13889~^~454~^19.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13890~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~317~^34.5^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13890~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13890~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~421~^129.2^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13890~^~430~^1.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~454~^17.0^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13891~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13891~^~317~^26.5^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13891~^~421~^92.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13891~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13891~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13892~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13892~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13892~^~317~^32.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13892~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13892~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13892~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13892~^~421~^130.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13892~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2004~ -~13892~^~454~^17.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13893~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13893~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13893~^~317~^31.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13893~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13893~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13893~^~421~^116.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13893~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13893~^~454~^15.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13894~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13894~^~317~^26.7^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13894~^~421~^91.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13894~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13894~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13895~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13895~^~317~^32.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13895~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13895~^~421~^129.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13895~^~454~^17.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13896~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13896~^~317~^32.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13896~^~421~^116.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13896~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13896~^~454~^15.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13897~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13897~^~317~^32.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13897~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13897~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13897~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13897~^~421~^125.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13897~^~430~^1.8^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13898~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13898~^~317~^26.3^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13898~^~421~^92.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13898~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13898~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13899~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13899~^~317~^32.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~13899~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13899~^~421~^131.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13899~^~454~^17.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13900~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13900~^~317~^31.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13900~^~421~^116.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13900~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13900~^~454~^15.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13901~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13901~^~317~^20.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13901~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13901~^~421~^92.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13901~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13902~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13902~^~317~^28.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13902~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13902~^~421~^119.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13902~^~454~^15.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13903~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~317~^23.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13903~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13903~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~421~^78.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13903~^~454~^16.1^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~317~^23.1^6^0.8^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13904~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13904~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~421~^59.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13904~^~454~^12.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13905~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13905~^~317~^20.7^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~326~^0.1^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~ -~13905~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13905~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13905~^~421~^51.4^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13905~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~03/01/2013~ -~13905~^~454~^9.0^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13906~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13906~^~317~^25.7^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~326~^0.1^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~ -~13906~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13906~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13906~^~421~^60.2^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13906~^~430~^1.9^0^^~4~^~BFSN~^~13911~^^^^^^^^^~03/01/2013~ -~13906~^~454~^8.8^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13907~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13907~^~317~^19.8^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~326~^0.1^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~ -~13907~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13907~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13907~^~421~^50.5^0^^~4~^~BFPN~^~13911~^^^^^^^^^~03/01/2013~ -~13907~^~430~^1.6^0^^~4~^~BFSN~^~13911~^^^^^^^^^~03/01/2013~ -~13907~^~454~^8.9^0^^~4~^~BFPN~^~13911~^^^^^^^^^~03/01/2013~ -~13908~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13908~^~317~^26.3^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~326~^0.1^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~ -~13908~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13908~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13908~^~421~^58.6^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13908~^~430~^1.6^0^^~4~^~BFSN~^~13912~^^^^^^^^^~03/01/2013~ -~13908~^~454~^8.6^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13909~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13909~^~317~^22.8^4^3.7^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13909~^~421~^86.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13909~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~13909~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13910~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13910~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13910~^~317~^28.5^4^5.0^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13910~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13910~^~421~^100.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13910~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~02/01/2013~ -~13910~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13911~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13911~^~317~^16.6^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13911~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13911~^~421~^86.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13911~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~13911~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13912~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13912~^~317~^28.1^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~328~^0.3^0^^~4~^~BFFN~^~13910~^^^^^^^^^~07/01/2015~ -~13912~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13912~^~421~^99.6^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13912~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13912~^~454~^13.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13913~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13913~^~317~^23.5^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13913~^~421~^86.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13913~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~13913~^~454~^12.6^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13914~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13914~^~317~^28.8^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13914~^~421~^101.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13914~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~02/01/2013~ -~13914~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13915~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13915~^~317~^17.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13915~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13915~^~421~^79.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13915~^~454~^11.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13916~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13916~^~317~^23.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13916~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13916~^~421~^98.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13916~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13917~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13917~^~317~^22.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13917~^~421~^81.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13917~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13917~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13918~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13918~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13918~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13918~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13918~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13918~^~421~^100.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13918~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13918~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13919~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13919~^~317~^22.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13919~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13919~^~421~^91.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13919~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13920~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13920~^~317~^21.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13920~^~421~^82.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13920~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13920~^~454~^12.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13921~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13921~^~317~^28.2^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13921~^~421~^100.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13921~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13921~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13922~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13922~^~317~^22.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13922~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13922~^~421~^91.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13922~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13923~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13923~^~317~^22.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13923~^~421~^80.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13923~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13923~^~454~^11.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13924~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13924~^~317~^28.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13924~^~421~^100.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13924~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13924~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13925~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13925~^~317~^22.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13925~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13925~^~421~^91.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13925~^~454~^12.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13926~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13926~^~317~^17.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~13926~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13926~^~421~^75.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13926~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13927~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13927~^~317~^24.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13927~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13927~^~421~^96.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13927~^~454~^12.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13928~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13928~^~317~^23.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13928~^~326~^0.4^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13928~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13928~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13928~^~421~^91.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13928~^~430~^2.0^0^^~4~^~BFSN~^~13918~^^^^^^^^^~03/01/2007~ -~13929~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13929~^~317~^22.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13929~^~421~^84.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13929~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13929~^~454~^12.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13930~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13930~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~13930~^~317~^29.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13930~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13930~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13930~^~421~^102.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13930~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13930~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~13931~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13931~^~317~^21.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13931~^~421~^83.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13931~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13931~^~454~^12.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13932~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13932~^~317~^29.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13932~^~421~^102.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13932~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13932~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13933~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13933~^~317~^29.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~13933~^~326~^0.3^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~13933~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~13933~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13933~^~421~^109.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13933~^~430~^1.9^0^^~4~^~BFSN~^~13930~^^^^^^^^^~03/01/2007~ -~13934~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13934~^~317~^24.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13934~^~421~^86.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13934~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13934~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13935~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13935~^~317~^29.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13935~^~421~^103.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13935~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13935~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13937~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13937~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13937~^~317~^30.0^4^0.0^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13937~^~326~^0.1^4^3.4e-02^~1~^~A~^^^1^0.1^0.2^3^3.8e-02^0.2^~2, 3~^~04/01/2009~ -~13937~^~328~^0.1^4^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13937~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13937~^~421~^98.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13940~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13940~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13940~^~317~^30.0^4^0.0^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13940~^~326~^0.1^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~04/01/2009~ -~13940~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13940~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13940~^~421~^107.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13943~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13943~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13943~^~317~^32.6^4^1.5^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13943~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~13943~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13943~^~421~^86.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13943~^~454~^14.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~13946~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13946~^~317~^31.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13946~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13946~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13946~^~421~^91.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~13946~^~454~^13.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13948~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~317~^29.4^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~421~^105.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13948~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13948~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13949~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~317~^29.8^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~421~^105.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13949~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13949~^~454~^13.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13950~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~317~^32.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~421~^127.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13950~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13950~^~454~^16.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13951~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~317~^30.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13952~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~317~^29.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13953~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~317~^28.0^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~421~^99.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13953~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13953~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13954~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~317~^23.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~421~^86.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13954~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13954~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13955~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~317~^27.3^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~421~^97.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13955~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13955~^~454~^12.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13956~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~317~^22.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~421~^86.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13956~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13956~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13957~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~317~^28.7^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~421~^100.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13957~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13957~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13958~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~317~^24.1^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~421~^86.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13958~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13958~^~454~^12.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13959~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~317~^30.7^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~326~^0.0^0^^~4~^~BFFN~^~23197~^^^^^^^^^~05/01/2013~ -~13959~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13959~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~421~^89.8^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13959~^~454~^15.4^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13961~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13961~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13961~^~317~^25.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2008~ -~13961~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13961~^~421~^98.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13963~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13963~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13963~^~317~^25.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2008~ -~13963~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13963~^~421~^99.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13965~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13965~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13965~^~317~^20.0^4^0.0^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13965~^~421~^99.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13967~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13967~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13967~^~317~^20.0^4^0.0^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13967~^~421~^99.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13968~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~317~^30.3^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~326~^0.0^0^^~4~^~BFFN~^~23195~^^^^^^^^^~05/01/2013~ -~13968~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13968~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~421~^90.5^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13968~^~454~^15.6^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13969~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~317~^31.4^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~326~^0.0^0^^~4~^~BFFN~^~23196~^^^^^^^^^~05/01/2013~ -~13969~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~13969~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~421~^88.7^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~ -~13969~^~454~^15.0^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13970~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~317~^23.9^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~421~^88.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13970~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13970~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13971~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~317~^24.5^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~421~^88.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13971~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13971~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13972~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~317~^22.5^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13972~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13972~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~421~^69.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13972~^~454~^27.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~317~^21.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13973~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13973~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~421~^68.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13973~^~454~^29.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~317~^24.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13974~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13974~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~421~^69.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~13974~^~454~^26.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13975~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~317~^21.6^4^1.0^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13975~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13975~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13975~^~454~^13.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13977~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13977~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13977~^~317~^19.9^0^^~4~^~BFNN~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13977~^~421~^101.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13979~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13979~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13979~^~317~^18.7^0^^~4~^~BFNN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13979~^~421~^92.1^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13980~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~317~^33.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13980~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13980~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~421~^95.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13980~^~454~^15.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~317~^36.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13981~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13981~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~421~^106.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13981~^~454~^15.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~317~^33.9^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~13982~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13982~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~421~^101.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~13982~^~454~^15.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13983~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~317~^25.4^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~13983~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13983~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~421~^58.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~13983~^~454~^10.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13985~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~13985~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13985~^~317~^30.9^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13985~^~421~^101.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13985~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~09/01/2003~ -~13985~^~454~^13.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~14003~^~221~^3.9^588^3.2e-02^~1~^~A~^^^1^2.0^11.6^587^3.8^3.9^~4~^~03/01/2005~ -~14003~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~313~^44.2^102^2.5^~1~^~A~^^^1^5.9^79.6^101^39.1^49.2^~2, 3~^~03/01/2005~ -~14003~^~317~^0.6^3^4.4e-02^~1~^~A~^^^1^0.5^0.6^2^0.3^0.7^~2, 3~^~04/01/2004~ -~14003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14003~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14003~^~421~^10.1^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14003~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14003~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14004~^~221~^3.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14005~^~221~^3.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14006~^~221~^3.1^167^2.7e-02^~1~^~A~^^^1^2.0^4.1^166^3.0^3.1^~4~^~04/01/2005~ -~14006~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~313~^45.3^142^2.2^~1~^~A~^^^1^6.9^91.8^141^40.8^49.8^~2, 3~^~03/01/2005~ -~14006~^~317~^0.4^4^8.7e-02^~1~^~A~^^^1^0.1^0.5^3^0.1^0.6^~2, 3~^~04/01/2004~ -~14006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14006~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14006~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14006~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14006~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14007~^~221~^3.3^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14009~^~221~^9.6^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14009~^~401~^1.3^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14010~^~221~^23.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~317~^0.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~401~^1.6^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~14013~^~221~^3.3^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14013~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14015~^~221~^9.0^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~291~^0.1^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14015~^~401~^1.5^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14016~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~291~^0.4^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14016~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~421~^1.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14017~^~221~^9.9^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~291~^0.3^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~317~^0.7^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~401~^4.9^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~430~^0.1^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14019~^~221~^9.4^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14019~^~401~^19.3^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14021~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~291~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~313~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14024~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14024~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14024~^~317~^0.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14024~^~401~^2.7^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14025~^~221~^14.6^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~401~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14026~^~221~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~291~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~328~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~401~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~421~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14027~^~221~^9.5^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~291~^0.1^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14027~^~401~^1.6^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14028~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~14028~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14028~^~317~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14028~^~401~^2.7^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~421~^0.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14028~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14029~^~221~^14.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~317~^0.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~401~^1.6^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14030~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~291~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~401~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14033~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14033~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~317~^24.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~401~^0.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~421~^81.6^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~430~^0.5^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14034~^~221~^29.8^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14034~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~14034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14034~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14034~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14034~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14035~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14035~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14035~^~317~^0.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14035~^~421~^113.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~430~^2.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14036~^~291~^0.2^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14036~^~317~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~326~^0.7^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14036~^~328~^0.7^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14036~^~401~^27.6^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~421~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~430~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14037~^~221~^33.4^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14037~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14037~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14037~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14038~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~421~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14041~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14041~^~291~^1.2^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~317~^6.7^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~326~^2.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~328~^2.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~401~^23.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~421~^21.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~430~^12.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14044~^~291~^0.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~317~^4.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~326~^1.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~14044~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~14044~^~401~^19.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~430~^6.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~291~^1.6^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~317~^5.7^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14045~^~401~^19.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~421~^14.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~430~^6.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14047~^~291~^18.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~317~^67.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~328~^9.6^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14047~^~401~^1.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~421~^3.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~430~^96.2^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14048~^~221~^0.0^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~291~^0.2^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~317~^0.1^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~328~^0.0^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~401~^24.0^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~421~^5.7^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~430~^0.1^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14050~^~221~^33.4^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14050~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14050~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14050~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14051~^~221~^33.4^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14051~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14051~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~221~^36.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14052~^~317~^0.0^18^0.0^~1~^~A~^^^^0.0^0.0^^^^^~11/01/2002~ -~14052~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14054~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~291~^0.4^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~313~^69.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~317~^0.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14054~^~401~^4.4^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~421~^2.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14055~^~221~^0.0^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~291~^18.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~317~^67.5^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~326~^9.6^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~328~^9.6^0^^~8~^~LC~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~401~^103.8^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~421~^3.4^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~430~^0.1^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~401~^42.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14056~^~430~^16.7^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14057~^~221~^15.3^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14057~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~14057~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14057~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14057~^~421~^5.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14057~^~430~^0.0^1^^~13~^~AI~^^^^^^^^^~1~^~11/01/2002~ -~14058~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14058~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~317~^40.7^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~328~^0.0^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~401~^34.9^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~421~^225.0^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~430~^46.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~317~^7.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14062~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~317~^7.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~328~^1.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14062~^~401~^12.7^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~421~^32.4^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~430~^8.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14063~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~291~^9.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~317~^21.8^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~401~^54.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~421~^266.9^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~221~^0.0^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~317~^0.0^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~401~^30.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~401~^30.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~291~^3.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~317~^26.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~421~^224.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14067~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14067~^~291~^6.7^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~317~^1.3^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~328~^0.0^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~421~^312.9^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~430~^0.0^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~291~^0.0^0^^~4~^~BFZN~^~14625~^^^^^^^^^~05/01/2014~ -~14079~^~317~^0.2^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~401~^0.0^0^^~4~^~BFZN~^~14625~^^^^^^^^^~05/01/2014~ -~14079~^~421~^0.3^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14080~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~325~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~326~^9.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~328~^9.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~401~^54.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14082~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14083~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14083~^~317~^2.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~326~^1.5^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~14083~^~401~^3.3^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14083~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14084~^~221~^10.4^2526^0.1^~1~^~A~^^^1^10.2^10.6^1^8.3^12.4^~4~^~03/01/2005~ -~14084~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2005~ -~14084~^~313~^153.3^31^48.6^~1~^~A~^^^1^104.6^202.0^1^-465.4^772.1^~4~^~03/01/2005~ -~14084~^~317~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~02/01/2005~ -~14084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14084~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2005~ -~14084~^~421~^5.0^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14084~^~430~^0.0^1^^~13~^~AI~^^^^^^^^^~1~^~11/01/2002~ -~14086~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~401~^24.5^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~401~^24.5^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~401~^24.4^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14090~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~401~^9.9^5^4.0^~1~^~A~^^^1^0.0^17.3^4^-1.3^21.0^~1, 2, 3~^~07/01/2014~ -~14090~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14091~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14091~^~291~^0.2^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~317~^0.1^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~325~^0.0^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~14091~^~326~^1.0^0^^~8~^~LC~^^^^^^^^^^~10/01/2016~ -~14091~^~328~^1.0^0^^~8~^~LC~^^^^^^^^^^~10/01/2016~ -~14091~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~421~^3.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~429~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~14091~^~454~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14092~^~221~^0.0^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~291~^0.4^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~317~^0.2^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~325~^1.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~328~^1.0^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~421~^0.0^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~430~^0.0^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14093~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~401~^10.2^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14095~^~221~^0.0^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~291~^0.0^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~317~^0.1^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14095~^~401~^3.1^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~421~^0.5^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~430~^0.0^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14096~^~221~^10.6^1300^2.0e-02^~1~^~A~^^^1^6.4^18.9^1299^10.5^10.5^~4~^~03/01/2005~ -~14096~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~313~^104.6^14^3.2^~1~^~A~^^^1^86.1^119.1^13^97.5^111.6^~2, 3~^~03/01/2005~ -~14096~^~317~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14096~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~421~^5.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14096~^~430~^0.4^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14097~^~221~^10.5^376^2.8e-02^~1~^~A~^^^1^8.8^12.0^375^10.4^10.5^~4~^~05/01/2005~ -~14098~^~221~^10.6^30^9.5e-02^~1~^~A~^^^1^9.3^11.9^29^10.4^10.8^~4~^~05/01/2005~ -~14099~^~221~^10.4^287^3.9e-02^~1~^~A~^^^1^8.5^12.3^286^10.3^10.5^~4~^~05/01/2005~ -~14100~^~221~^10.5^30^0.1^~1~^~A~^^^1^8.4^11.7^29^10.2^10.7^~4~^~05/01/2005~ -~14101~^~221~^10.6^8^0.1^~1~^~A~^^^1^9.9^11.4^7^10.1^11.0^~4~^~05/01/2005~ -~14102~^~221~^11.1^162^6.2e-02^~1~^~A~^^^1^8.8^13.6^161^10.9^11.2^~4~^~05/01/2005~ -~14103~^~221~^10.7^24^0.1^~1~^~A~^^^1^9.6^11.7^23^10.4^10.9^~4~^~05/01/2005~ -~14105~^~221~^10.2^11^0.2^~1~^~A~^^^1^9.0^12.0^10^9.7^10.7^~4~^~05/01/2005~ -~14106~^~221~^10.3^1200^2.8e-02^~1~^~A~^^^1^5.7^12.4^1199^10.2^10.3^~4~^~06/01/2005~ -~14106~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~313~^202.0^17^6.2^~1~^~A~^^^1^152.1^238.6^16^188.7^215.3^~2, 3~^~03/01/2005~ -~14106~^~317~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14106~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~421~^4.3^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14106~^~430~^0.4^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14107~^~221~^10.2^11^0.2^~1~^~A~^^^1^8.9^11.1^10^9.6^10.6^~4~^~05/01/2005~ -~14108~^~221~^10.9^14^0.1^~1~^~A~^^^1^10.0^11.4^13^10.6^11.1^~4~^~05/01/2005~ -~14109~^~221~^9.3^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~14113~^~221~^10.7^47^8.6e-02^~1~^~A~^^^1^9.1^11.5^46^10.5^10.9^~4~^~06/01/2005~ -~14116~^~221~^9.6^39^0.1^~1~^~A~^^^1^7.3^11.6^38^9.3^9.9^~4~^~05/01/2005~ -~14117~^~221~^10.5^32^0.1^~1~^~A~^^^1^8.8^11.7^31^10.2^10.7^~4~^~05/01/2005~ -~14119~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~313~^12.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14119~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14119~^~401~^32.5^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14119~^~421~^5.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14119~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14120~^~221~^9.0^13^0.3^~1~^~A~^^^1^7.4^12.3^12^8.2^9.8^~4~^~05/01/2005~ -~14121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14121~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~421~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14121~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14124~^~221~^10.1^66^0.1^~1~^~A~^^^1^8.2^11.8^65^9.9^10.3^~4~^~05/01/2005~ -~14125~^~221~^8.9^3^0.3^~1~^~A~^^^1^8.5^9.7^2^7.2^10.6^~4~^~05/01/2005~ -~14126~^~221~^10.1^31^0.1^~1~^~A~^^^1^8.4^11.2^30^9.7^10.3^~4~^~05/01/2005~ -~14130~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14130~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~313~^35.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14130~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14130~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14130~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14132~^~221~^9.5^146^8.1e-02^~1~^~A~^^^1^7.0^11.9^145^9.2^9.6^~4~^~05/01/2005~ -~14134~^~221~^10.5^146^6.2e-02^~1~^~A~^^^1^7.3^12.2^145^10.4^10.6^~4~^~05/01/2005~ -~14135~^~221~^8.5^26^0.2^~1~^~A~^^^1^6.3^11.2^25^8.0^8.9^~4~^~05/01/2005~ -~14136~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14136~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/1986~ -~14136~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14136~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14136~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14137~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~14137~^~313~^89.9^31^3.4^~1~^~A~^^^1^61.5^132.7^30^82.8^96.9^~2, 3~^~04/01/2005~ -~14138~^~221~^10.6^11^0.1^~1~^~A~^^^1^9.7^11.4^10^10.2^10.9^~4~^~06/01/2005~ -~14140~^~221~^8.8^37^0.2^~1~^~A~^^^1^6.1^11.9^36^8.2^9.3^~4~^~06/01/2005~ -~14142~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14142~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~313~^86.3^14^5.8^~1~^~A~^^^3^57.5^108.7^6^71.9^100.6^~4~^~03/01/2006~ -~14142~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14142~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14143~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~14143~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14143~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14143~^~430~^0.0^1^^~13~^~AI~^^^^^^^^^~1~^~11/01/2002~ -~14144~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14144~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~421~^0.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14144~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14145~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/1986~ -~14145~^~313~^55.9^38^2.0^~1~^~A~^^^3^47.6^69.2^35^51.7^59.9^~2, 3~^~04/01/2005~ -~14145~^~317~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2005~ -~14145~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14145~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~421~^0.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14145~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~313~^52.0^140^3.0^~1~^~A~^^^1^39.9^60.0^65^45.7^58.1^~2, 3~^~04/01/2005~ -~14146~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14146~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~421~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14146~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14147~^~221~^0.0^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~291~^0.0^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~317~^0.1^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14147~^~401~^0.0^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14147~^~430~^0.0^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14148~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~14148~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~14148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14148~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14148~^~430~^0.0^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14149~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~14149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~317~^0.1^20^4.8e-02^~11~^~JO~^^^1^0.0^0.1^1^-0.5^0.6^~4~^~04/01/2005~ -~14149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14149~^~401~^0.0^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14149~^~430~^0.0^2^^~6~^~JA~^^^^0.0^0.0^^^^^~04/01/2005~ -~14150~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14150~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~313~^80.6^31^3.5^~1~^~A~^^^4^56.6^100.7^14^73.0^88.1^~4~^~03/01/2006~ -~14150~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14150~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~421~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14150~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14151~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14151~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14151~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14152~^~221~^10.3^14^0.3^~1~^~A~^^^1^9.0^12.5^13^9.5^11.0^~4~^~06/01/2005~ -~14153~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14153~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14154~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~14154~^~317~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14154~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14154~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14154~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14155~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14155~^~291~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~11/01/2004~ -~14155~^~313~^82.5^2^^~1~^~A~^^^1^48.0^117.0^1^^^^~11/01/2004~ -~14155~^~317~^0.0^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2004~ -~14155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14155~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~421~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14155~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~14156~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14156~^~317~^0.2^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~14156~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14156~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14157~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14157~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~313~^71.0^13^11.4^~1~^~A~^^^4^6.0^122.0^^45.0^96.0^~4~^~04/01/2006~ -~14157~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14157~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14157~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14158~^~221~^9.8^15^0.2^~1~^~A~^^^1^8.7^11.1^14^9.3^10.3^~4~^~06/01/2005~ -~14159~^~221~^11.2^8^0.2^~1~^~A~^^^1^10.0^12.0^7^10.5^11.8^~4~^~06/01/2005~ -~14160~^~221~^10.7^504^2.4e-02^~1~^~A~^^^1^8.6^12.3^503^10.6^10.7^~4~^~06/01/2005~ -~14160~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~313~^202.0^17^6.2^~1~^~A~^^^1^152.1^238.6^16^188.7^215.3^~2, 3~^~06/01/2005~ -~14160~^~317~^0.1^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14161~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~401~^24.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~ -~14161~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14162~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14162~^~317~^0.1^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~401~^24.0^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~421~^1.8^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~430~^0.0^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14163~^~291~^1.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~317~^7.4^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~326~^2.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~328~^2.5^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14163~^~401~^25.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~421~^1.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~430~^16.9^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14164~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14164~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~14164~^~317~^3.4^2^^~1~^~A~^^^1^3.3^3.5^1^^^^~06/01/2015~ -~14164~^~328~^2.5^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14164~^~401~^3.0^3^0.2^~1~^~A~^^^1^2.8^3.5^2^1.9^4.0^~2, 3~^~06/01/2015~ -~14164~^~421~^17.6^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14164~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14164~^~430~^0.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14165~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14166~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~14166~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14166~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~14166~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~430~^0.0^3^1.0e-03^~6~^~JA~^^^^0.0^0.0^^^^^~12/01/2002~ -~14167~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14168~^~291~^8.0^0^^~4~^~RA~^^^^^^^^^^~04/01/1996~ -~14168~^~317~^1.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14168~^~401~^0.0^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14169~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~317~^3.6^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~401~^0.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14171~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~325~^1.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~328~^1.0^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14171~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14173~^~221~^0.0^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~317~^0.0^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~326~^0.0^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~328~^0.0^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~421~^0.0^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~430~^0.1^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14174~^~221~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~291~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~317~^0.1^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~328~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~401~^25.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~421~^0.5^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~430~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14177~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~317~^3.6^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~401~^0.1^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~430~^0.3^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14179~^~221~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~291~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~317~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~328~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~401~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~421~^0.0^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~430~^0.1^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14180~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14180~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14180~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14181~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14181~^~291~^2.6^4^0.4^~11~^~JO~^^^^1.6^3.8^^^^^~04/01/2002~ -~14181~^~317~^1.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14181~^~401~^0.2^11^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~421~^1.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14182~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14182~^~291~^0.3^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14182~^~317~^3.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~401~^0.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~430~^0.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14183~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~430~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14185~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14187~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~401~^5.0^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14188~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~401~^7.7^3^4.3^~1~^~A~^^^1^2.8^16.4^2^-10.8^26.3^~2, 3~^~02/01/2015~ -~14188~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14189~^~221~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~291~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~317~^0.1^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~328~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~401~^3.1^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~421~^0.5^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~430~^0.0^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14190~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~401~^9.5^3^5.1^~1~^~A~^^^1^3.9^19.9^2^-12.7^31.8^~2, 3~^~04/01/2015~ -~14190~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~401~^39.3^3^0.3^~1~^~A~^^^1^38.6^39.9^2^37.7^40.9^~2, 3~^~04/01/2015~ -~14191~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14192~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~291~^3.7^3^0.6^~8~^~LC~^^^1^2.6^5.0^2^0.8^6.6^~4~^~12/01/2006~ -~14192~^~317~^5.0^3^^~13~^~AI~^^^^^^^^^^~12/01/2002~ -~14192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14192~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~421~^33.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14192~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14194~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~313~^61.4^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~317~^0.7^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~421~^4.6^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14195~^~291~^3.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14196~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14196~^~291~^7.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~317~^16.9^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14196~^~401~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~12/01/2006~ -~14196~^~421~^115.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14197~^~291~^4.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14199~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14201~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~313~^52.4^5^28.1^~1~^~A~^^^1^0.0^134.0^4^0.0^130.6^~4~^~03/01/2006~ -~14201~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14201~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~421~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14201~^~430~^0.1^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~14202~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14202~^~401~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~421~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14202~^~430~^0.1^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14203~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14203~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~421~^101.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14203~^~430~^1.9^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14204~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~291~^4.8^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~317~^4.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14204~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~421~^16.8^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~430~^1.7^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14206~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14209~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14209~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~14209~^~313~^90.7^3^^~6~^~JA~^^^3^81.0^110.0^^^^~2, 3~^~03/01/2006~ -~14209~^~317~^0.0^9^3.0e-03^~1~^~A~^^^4^0.0^0.1^5^3.8e-02^5.1e-02^~2, 3~^~04/01/2004~ -~14209~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14209~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~14209~^~421~^2.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14209~^~430~^0.1^9^6.6e-02^~6~^~JA~^^^4^0.0^0.6^8^-7.5e-02^0.2^~1, 4~^~02/01/2003~ -~14210~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~14210~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~14210~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14210~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14210~^~401~^0.2^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~421~^2.6^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14210~^~430~^0.1^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14211~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14214~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~14214~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14214~^~317~^12.6^10^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~14214~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14214~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~421~^101.9^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14214~^~430~^1.9^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14215~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14216~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~401~^3.8^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~401~^28.1^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14218~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14218~^~317~^17.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14218~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~421~^101.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14218~^~430~^1.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14219~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~313~^70.5^0^^~1~^~RPA~^^^^^^^^^^~10/01/2006~ -~14219~^~317~^0.2^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14219~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14220~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~317~^0.1^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~328~^0.0^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~401~^29.6^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~421~^0.4^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~430~^1.1^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~401~^39.1^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14222~^~291~^0.5^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~317~^9.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14222~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14223~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14224~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~291~^1.9^2^^~8~^~LC~^^^1^0.0^3.7^1^^^^~01/01/2005~ -~14224~^~317~^6.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14224~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~421~^31.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14224~^~430~^1.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14226~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~291~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14226~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~401~^32.9^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~421~^0.4^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14226~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~401~^26.7^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14231~^~291~^1.4^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14233~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~317~^0.1^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~328~^0.0^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~401~^27.2^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~421~^0.4^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~430~^0.1^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~221~^0.0^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~317~^0.1^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~328~^0.0^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~401~^32.6^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~421~^0.4^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~430~^0.1^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14235~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~401~^32.8^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14236~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~291~^23.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~317~^64.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14236~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~421~^13.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~430~^1.6^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14237~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~317~^1.1^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14237~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~421~^0.2^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14238~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~313~^82.7^18^8.6^~1~^~A~^^^2^5.7^164.8^17^64.3^101.3^~4~^~03/01/2006~ -~14238~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14238~^~401~^39.5^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14238~^~421~^0.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14238~^~430~^0.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14239~^~221~^4.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14239~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14239~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~401~^2.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~421~^4.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14240~^~291~^0.1^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14240~^~401~^0.0^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~291~^0.1^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~313~^65.0^10^12.6^~1~^~A~^^^2^9.5^114.3^9^36.3^93.7^~4~^~03/01/2006~ -~14241~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14241~^~401~^32.0^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14242~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14242~^~313~^67.3^79^7.4^~1~^~A~^^^5^3.8^181.0^31^51.9^82.5^~4~^~03/01/2006~ -~14242~^~317~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14242~^~401~^42.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14242~^~421~^1.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14242~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14243~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~313~^70.1^11^10.1^~1~^~A~^^^1^13.3^102.4^10^47.6^92.6^~4~^~03/01/2006~ -~14243~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14243~^~401~^32.2^2^^~1~^^^^^^^^^^^~03/01/2003~ -~14243~^~421~^0.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14243~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14245~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~317~^3.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~401~^0.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~430~^0.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14246~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~317~^0.6^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~401~^1342.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~221~^6.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14248~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~317~^0.4^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~328~^0.0^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~401~^0.0^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~421~^8.8^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~430~^0.0^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14250~^~221~^4.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14250~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~313~^42.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~317~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~401~^2.3^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~421~^1.7^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14251~^~221~^7.7^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14251~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~317~^0.6^0^^~4~^~BFZN~^~14003~^^^^^^^^^~06/01/2015~ -~14251~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~401~^0.0^0^^~4~^~BFZN~^~14003~^^^^^^^^^~06/01/2015~ -~14251~^~421~^10.1^0^^~4~^~BFZN~^~14003~^^^^^^^^^~06/01/2015~ -~14251~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~221~^5.5^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14252~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~221~^9.6^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14253~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~401~^27.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14256~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~401~^24.4^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~291~^0.7^2^^~1~^~A~^^^1^0.7^0.7^^^^~1~^~06/01/2015~ -~14257~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~401~^0.8^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14257~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14258~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14258~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~401~^27.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~291~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14259~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~401~^34.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14262~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~291~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14262~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14262~^~401~^95.3^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~421~^1.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14262~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14263~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~313~^51.0^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~401~^27.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14264~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~291~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~02/01/2003~ -~14264~^~313~^53.6^30^5.4^~1~^~A~^^^1^10.5^107.6^29^42.5^64.6^~4~^~03/01/2006~ -~14264~^~317~^0.2^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14264~^~401~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14264~^~430~^0.0^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14267~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~291~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~317~^0.2^18^0.1^~1~^~A~^^^7^0.0^2.2^17^-9.7e-02^0.4^~4~^~02/01/2003~ -~14267~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14267~^~401~^29.6^11^^~1~^^^^^^^^^^^~02/01/2005~ -~14267~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14267~^~430~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~14268~^~291~^0.4^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14268~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~14268~^~401~^155.6^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14269~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~401~^43.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14270~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14276~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14277~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~317~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14277~^~401~^31.4^2^^~8~^~LC~^^^1^31.4^31.4^1^^^^~02/01/2005~ -~14277~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14277~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14278~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~401~^0.0^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~14278~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~401~^5.2^2^^~1~^~A~^^^1^3.9^6.5^1^^^^~06/01/2015~ -~14279~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14282~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~313~^32.1^3^21.1^~1~^~A~^^^1^8.6^74.3^2^0.0^123.0^~4~^~03/01/2006~ -~14282~^~317~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14282~^~401~^26.5^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14282~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14284~^~401~^33.5^9^4.3^~1~^~A~^^^1^22.6^89.0^2^15.0^51.9^~2, 3~^~06/01/2015~ -~14285~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~291~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~401~^27.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~430~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14286~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~401~^24.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14287~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14287~^~291~^0.4^0^^~4~^~O~^^^^^^^^^^~01/01/2009~ -~14287~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~14287~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~401~^39.9^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~421~^0.1^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14287~^~430~^0.0^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~14287~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14288~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~401~^1.5^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~421~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~454~^0.0^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14291~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14292~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~14292~^~291~^0.3^2^^~1~^~A~^^^1^0.0^0.6^1^^^~1~^~01/01/2009~ -~14292~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2009~ -~14292~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14292~^~401~^13.1^2^^~1~^~A~^^^1^13.0^13.1^1^^^^~01/01/2009~ -~14292~^~421~^2.0^2^^~1~^~A~^^^1^1.9^2.0^1^^^^~12/01/2006~ -~14292~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~14292~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~14292~^~430~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~01/01/2009~ -~14292~^~454~^0.2^2^^~1~^~A~^^^1^0.1^0.4^1^^^^~12/01/2006~ -~14293~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14293~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~401~^3.9^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~421~^0.4^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14294~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14296~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2009~ -~14296~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14296~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~401~^40.6^2^^~1~^~A~^^^1^40.0^41.2^1^^^^~01/01/2009~ -~14296~^~421~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14296~^~430~^1.9^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14297~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~313~^66.2^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~401~^2.9^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~421~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~454~^0.1^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14303~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~401~^3.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~421~^0.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14305~^~221~^0.3^3^4.8e-02^~11~^~JO~^^^1^0.3^0.4^2^0.1^0.5^~4~^~01/01/2003~ -~14305~^~291~^0.0^2^^~13~^~AI~^^^1^0.0^0.0^1^^^^~01/01/2003~ -~14305~^~317~^1.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14305~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14305~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14305~^~421~^10.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14305~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2003~ -~14309~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~ -~14309~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~326~^9.1^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~328~^9.1^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14309~^~401~^54.5^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14310~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14310~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14310~^~317~^4.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~401~^10.4^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~430~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14311~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~317~^16.4^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14311~^~401~^2.9^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~421~^58.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14311~^~430~^5.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14312~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~317~^5.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~401~^0.2^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~430~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14315~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~326~^9.1^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~328~^9.1^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~14315~^~401~^54.5^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14316~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14316~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~317~^3.6^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~328~^3.1^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~401~^12.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~421~^13.6^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~430~^0.3^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14317~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14317~^~291~^4.8^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14317~^~317~^6.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14317~^~401~^1.5^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~421~^27.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14317~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14318~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~317~^5.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~401~^0.1^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~430~^0.3^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14323~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~14323~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14323~^~401~^57.3^2^^~1~^~A~^^^1^54.6^60.0^1^^^^~02/01/2005~ -~14323~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14323~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14327~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~313~^49.2^8^7.4^~4~^~O~^^^^^^^^^^~03/01/2006~ -~14327~^~317~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14327~^~401~^20.0^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14327~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~313~^49.2^8^7.4^~1~^~A~^^^1^21.9^80.0^7^31.4^66.8^~4~^~03/01/2006~ -~14334~^~317~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14334~^~401~^46.0^17^^~1~^^^^^^^^^^^~03/01/2003~ -~14334~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14334~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~313~^49.2^8^7.4^~1~^~A~^^^1^21.9^80.0^7^31.4^66.8^~4~^~03/01/2006~ -~14341~^~317~^0.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14341~^~401~^22.5^27^0.4^~1~^^^^^^^^^^^~03/01/2003~ -~14341~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14341~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14347~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14347~^~291~^0.9^2^^~1~^~A~^^^2^0.0^1.9^^^^^~04/01/2005~ -~14347~^~313~^14.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14347~^~317~^3.2^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14347~^~401~^0.0^2^^~1~^~A~^^^2^0.0^0.1^^^^~1~^~04/01/2005~ -~14347~^~421~^27.3^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14347~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14347~^~454~^3.8^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14350~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14350~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14350~^~401~^0.3^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14350~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14351~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14351~^~317~^1.8^0^^~4~^~RP~^^^^^^^^^^~12/01/1997~ -~14351~^~401~^0.9^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14352~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14352~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~421~^0.4^0^^~4~^~BFZN~^~14355~^^^^^^^^^~10/01/2006~ -~14352~^~430~^0.0^0^^~4~^~BFZN~^~14355~^^^^^^^^^~06/01/2003~ -~14353~^~221~^0.0^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~291~^8.5^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~317~^5.3^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14353~^~401~^0.0^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~421~^118.3^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14353~^~430~^0.0^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14355~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14355~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~313~^372.9^63^6.2^~1~^~A~^^^1^257.0^533.0^62^360.4^385.3^~2, 3~^~03/01/2006~ -~14355~^~317~^0.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~14355~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14355~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~421~^0.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~14355~^~430~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~14356~^~221~^0.0^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~291~^0.0^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~317~^1.8^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14356~^~401~^0.0^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~421~^40.2^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14357~^~221~^0.0^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14357~^~317~^0.6^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~401~^0.0^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~430~^0.0^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14366~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14366~^~291~^8.5^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~317~^5.3^3^0.3^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14366~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14366~^~421~^118.3^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~14366~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14367~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~313~^335.4^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14367~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~421~^0.3^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14368~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14368~^~291~^5.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~317~^3.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14368~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14368~^~421~^66.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~313~^584.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14370~^~317~^0.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14370~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~14370~^~421~^1.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14370~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14371~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~313~^115.8^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14375~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14375~^~317~^1.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~421~^40.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14376~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14376~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~421~^0.2^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14381~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14381~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14381~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14381~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14381~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~421~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14381~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14384~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~313~^31.0^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14384~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14384~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~313~^10.0^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14385~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14385~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14390~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~291~^0.6^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~313~^65.7^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~317~^1.3^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14400~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~14400~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~14400~^~313~^57.0^144^0.9^~1~^~A~^^^3^31.9^89.0^140^55.0^58.9^~2, 3~^~04/01/2005~ -~14400~^~317~^0.1^20^4.8e-02^~11~^~JO~^^^1^0.0^0.1^1^-0.5^0.6^~4~^~12/01/2002~ -~14400~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14400~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~421~^0.3^4^0.2^~1~^~A~^^^2^0.0^0.6^1^-3.3^3.8^~1, 4~^~12/01/2006~ -~14400~^~430~^0.0^2^^~6~^~JA~^^^^0.0^0.0^^^^^~12/01/2002~ -~14400~^~454~^0.1^7^2.7e-02^~1~^~A~^^^2^0.0^0.1^2^-5.9e-02^0.1^~1, 4~^~12/01/2006~ -~14405~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14405~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14405~^~401~^19.7^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14406~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~401~^4.8^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14407~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~14407~^~291~^0.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~313~^19.0^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~14407~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14407~^~401~^230.8^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~14407~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14407~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14408~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~313~^64.5^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14408~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~401~^29.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14409~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~291~^3.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~317~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~401~^2400.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14411~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~291~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14411~^~313~^71.2^288^2.8^~1~^~A~^^^1^1.0^193.0^287^65.6^76.7^~1, 2, 3~^~04/01/2006~ -~14411~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14411~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~14411~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14412~^~291~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14412~^~313~^25.8^50^4.8^~1~^~A~^^^1^1.0^162.0^49^16.0^35.4^~1, 2, 3~^~04/01/2006~ -~14414~^~221~^21.7^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~14414~^~317~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14414~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~421~^0.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14415~^~221~^13.8^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14415~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~421~^8.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14415~^~430~^1.3^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14416~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2002~ -~14416~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14416~^~313~^59.8^142^9.6^~1~^~A~^^^1^39.9^78.0^3^29.2^90.4^~4~^~03/01/2006~ -~14416~^~317~^0.0^18^0.0^~1~^~A~^^^^0.0^0.0^^^^^~12/01/2002~ -~14416~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14416~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~421~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~14416~^~430~^0.0^3^1.0e-03^~6~^~JA~^^^^0.0^0.0^^^^^~12/01/2002~ -~14421~^~291~^0.1^0^^~4~^~RP~^^^^^^^^^^~04/01/1996~ -~14421~^~317~^5.5^0^^~4~^~RP~^^^^^^^^^^~12/01/1997~ -~14421~^~401~^0.9^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~291~^9.4^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~ -~14422~^~317~^21.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~328~^4.7^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14422~^~401~^5.6^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~ -~14422~^~421~^128.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~430~^0.8^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14423~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~291~^0.8^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~313~^65.0^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~317~^1.9^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~401~^0.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~430~^0.1^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14424~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~291~^0.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~317~^0.3^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14424~^~401~^243.1^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14424~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14425~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~313~^50.9^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~401~^69.2^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14426~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2003~ -~14426~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~317~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~14426~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14426~^~401~^189.7^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~421~^1.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14426~^~430~^0.1^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14427~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~313~^50.5^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~401~^55.1^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14428~^~291~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14428~^~317~^2.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14428~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14428~^~401~^0.8^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14429~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~313~^81.1^237^2.9^~1~^~A~^^^1^2.0^193.0^236^75.3^86.7^~1, 2, 3~^~04/01/2006~ -~14429~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14429~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14429~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~14429~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14430~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14430~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14430~^~401~^45.8^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14431~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~401~^10.5^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14432~^~313~^10.9^12^1.2^~1~^~A~^^^1^5.0^20.0^11^8.1^13.7^~2, 3~^~03/01/2005~ -~14433~^~313~^5.1^16^0.5^~1~^~A~^^^1^1.0^9.0^15^3.8^6.3^~2, 3~^~03/01/2005~ -~14434~^~313~^6.7^20^1.1^~1~^~A~^^^1^2.0^19.0^19^4.1^9.1^~2, 3~^~03/01/2005~ -~14436~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~14436~^~291~^0.1^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14436~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14436~^~401~^24.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~421~^0.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14436~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14437~^~313~^7.3^2^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14438~^~313~^24.0^4^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~313~^14.4^4^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14440~^~313~^78.0^1^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~14450~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14450~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14460~^~313~^34.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~14460~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~14460~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14460~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~421~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~291~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~03/01/2007~ -~14461~^~313~^62.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~14461~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2007~ -~14461~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14461~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~421~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14462~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~313~^2.0^2^^~6~^~JA~^^^1^0.1^4.0^1^^^^~04/01/2005~ -~14462~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14462~^~401~^8.8^2^^~1~^~A~^^^1^8.1^9.5^1^^^^~10/01/2008~ -~14462~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14462~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14475~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14475~^~313~^123.0^21^6.3^~1~^~A~^^^1^83.7^191.3^20^109.8^136.2^~2, 3~^~02/01/2005~ -~14475~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14476~^~291~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~04/01/2005~ -~14476~^~313~^72.2^63^4.7^~1~^~A~^^^1^37.9^206.8^62^62.6^81.6^~2, 3~^~02/01/2005~ -~14530~^~221~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14530~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14530~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14530~^~401~^2.7^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~221~^14.1^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~04/01/1996~ -~14531~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14531~^~401~^1.6^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~221~^39.7^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14532~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14532~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~221~^42.5^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14533~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14533~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~221~^26.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14534~^~317~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~14534~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~221~^15.3^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14536~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~14536~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14536~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~14537~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14537~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14537~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14538~^~291~^1.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~317~^24.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14538~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~421~^175.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~430~^4.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14541~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~313~^64.3^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~317~^0.1^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~401~^11.8^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14542~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~291~^0.3^2^^~1~^~A~^^^1^0.0^0.6^1^^^~1~^~01/01/2009~ -~14542~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14542~^~401~^14.1^2^^~1~^~A~^^^1^13.6^14.5^1^^^^~01/01/2009~ -~14542~^~421~^2.0^2^^~1~^~A~^^^1^1.9^2.0^1^^^^~12/01/2006~ -~14542~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~14542~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2009~ -~14542~^~430~^0.1^2^^~1~^~A~^^^1^0.0^0.1^1^^^~1~^~01/01/2009~ -~14542~^~454~^0.2^2^^~1~^~A~^^^1^0.1^0.4^1^^^^~12/01/2006~ -~14543~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~291~^0.1^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~313~^55.4^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~328~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14543~^~401~^3.1^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~421~^0.4^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~454~^0.0^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14544~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14544~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14544~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14545~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~14545~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14545~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14545~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14545~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~14545~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14548~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~14548~^~317~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14548~^~401~^100.0^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~221~^36.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/1986~ -~14550~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14550~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14550~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14550~^~430~^0.0^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~14551~^~221~^37.9^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/1986~ -~14551~^~317~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~14551~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14551~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14551~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14552~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2001~ -~14552~^~291~^0.0^0^^~4~^^^^^^^^^^^~04/01/2001~ -~14552~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14552~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14552~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~421~^0.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14552~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14553~^~221~^0.0^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~291~^0.0^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~14553~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14553~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~421~^5.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14553~^~430~^0.0^0^^~4~^~BFZN~^~14084~^^^^^^^^^~01/01/2003~ -~14555~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2005~ -~14555~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14555~^~401~^0.0^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14555~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14557~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~291~^4.5^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~317~^1.9^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~14557~^~401~^27.3^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~421~^3.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14557~^~430~^0.9^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14558~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~317~^3.5^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~328~^1.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~401~^2.3^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~421~^13.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~430~^0.3^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14559~^~313~^10.4^16^0.5^~1~^~A~^^^1^7.0^15.0^15^9.1^11.6^~2, 3~^~09/01/2004~ -~14599~^~221~^0.0^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~291~^0.0^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~317~^0.0^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~328~^0.0^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~401~^2.5^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~421~^0.0^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~430~^0.2^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14601~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14602~^~221~^10.6^142^3.8e-02^~1~^~A~^^^1^9.2^11.5^141^10.4^10.6^~4~^~06/01/2005~ -~14602~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14602~^~313~^104.6^14^3.2^~1~^~A~^^^1^86.1^119.1^13^97.5^111.6^~2, 3~^~06/01/2005~ -~14602~^~317~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14604~^~221~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~291~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~313~^104.5^8^4.4^~1~^~A~^^^1^88.6^121.0^7^93.9^115.1^~4~^~02/01/2007~ -~14604~^~317~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14604~^~401~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~421~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~430~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~221~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~291~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~317~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14605~^~401~^12.7^2^^~8~^~LC~^^^1^10.1^15.2^^^^^~02/01/2007~ -~14605~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~14605~^~430~^0.0^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14607~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~401~^25.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~401~^25.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~401~^25.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~401~^24.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~401~^24.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~401~^24.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~401~^24.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14623~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~401~^40.7^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14625~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~291~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~317~^0.2^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14625~^~401~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~421~^0.3^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14626~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~291~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~317~^0.2^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~401~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~421~^0.3^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14627~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14628~^~221~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~317~^0.2^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14628~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~421~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~430~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14629~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14629~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2011~ -~14629~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~421~^0.3^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14630~^~221~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~291~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~317~^0.2^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~328~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~401~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~421~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~430~^0.0^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14632~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14633~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~401~^25.1^4^0.1^~8~^~LC~^^^1^24.7^25.2^3^24.6^25.4^~4~^~03/01/2009~ -~14633~^~421~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14634~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^~1~^~04/01/2009~ -~14634~^~317~^2.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~328~^1.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~421~^15.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14635~^~221~^0.0^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~291~^0.0^4^0.0^~8~^~LC~^^^2^0.0^0.0^3^0.0^0.0^~4~^~05/01/2009~ -~14635~^~317~^0.0^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~328~^0.0^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~401~^28.5^4^4.0^~8~^~LC~^^^2^24.4^40.7^3^15.5^41.3^~4~^~05/01/2009~ -~14635~^~421~^0.2^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~430~^0.1^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14636~^~221~^0.0^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~291~^0.0^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~313~^70.7^256^1.7^~1~^~A~^^^1^12.4^110.3^254^67.2^74.2^~2, 3~^~04/01/2009~ -~14636~^~317~^0.2^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~328~^0.0^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~421~^0.5^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~430~^0.0^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14637~^~221~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~291~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~317~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~328~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~401~^12.7^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~421~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~430~^0.0^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14638~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~05/01/2009~ -~14638~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14638~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14638~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14639~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~317~^2.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~325~^1.0^3^0.0^~8~^~LC~^^^1^1.0^1.0^2^1.0^1.0^~4~^~06/01/2009~ -~14639~^~328~^1.0^3^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~14639~^~401~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~06/01/2009~ -~14639~^~421~^2.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14640~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~317~^0.2^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~401~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~421~^0.3^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~221~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~317~^0.2^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~328~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~421~^0.3^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~430~^0.0^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14644~^~221~^0.0^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~317~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~328~^0.0^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~421~^0.0^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~430~^0.2^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14645~^~221~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~291~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~317~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~328~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~401~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~421~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~430~^0.0^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14646~^~221~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~291~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~317~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~328~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~401~^25.0^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~ -~14646~^~421~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~430~^0.0^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14647~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~328~^0.3^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~14647~^~401~^25.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~421~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14648~^~221~^0.0^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~291~^0.1^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~317~^0.1^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~328~^0.0^0^^~4~^~BFZN~^~14651~^^^^^^^^^~04/01/2011~ -~14648~^~401~^25.4^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~14648~^~421~^1.8^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~430~^0.0^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14649~^~221~^0.0^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~328~^0.0^0^^~4~^~BFFN~^~11416~^^^^^^^^^~04/01/2011~ -~14649~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~421~^0.4^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~430~^0.0^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14651~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~317~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~401~^25.0^0^^~4~^~BFZN~^~14647~^^^^^^^^^~08/01/2011~ -~14651~^~421~^1.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~454~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14654~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~317~^87.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~326~^12.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~328~^12.5^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14654~^~401~^75.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~421~^179.7^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~430~^125.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~15001~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15001~^~291~^0.0^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15001~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15001~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15001~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15002~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15002~^~317~^68.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15002~^~326~^1.7^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15002~^~328~^1.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15002~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15002~^~421~^85.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15002~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~430~^12.1^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15003~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15003~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15003~^~401~^2.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15004~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15004~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15005~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15005~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15005~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15006~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15006~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15006~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15007~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15007~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15007~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15008~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15008~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15008~^~326~^24.7^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15008~^~328~^24.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15008~^~401~^1.6^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15008~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15009~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15009~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15009~^~401~^1.6^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15010~^~317~^12.6^5^0.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15010~^~328~^12.5^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15010~^~401~^0.7^4^0.2^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~291~^0.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~15011~^~317~^13.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15011~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15012~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15012~^~317~^65.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15012~^~326~^2.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15012~^~328~^2.9^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~15012~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15012~^~421~^490.9^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~ -~15012~^~430~^0.6^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~ -~15013~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15013~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15013~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15013~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15014~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~15014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15014~^~317~^18.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15014~^~326~^13.3^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15014~^~328~^13.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15014~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15014~^~421~^95.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15014~^~430~^0.1^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15015~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15015~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15015~^~317~^33.1^11^2.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15015~^~326~^0.9^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~15015~^~328~^0.9^1^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~15015~^~401~^1.0^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~421~^65.2^0^^~4~^~BFSN~^~15016~^^^^^^^^^~03/01/2007~ -~15015~^~430~^0.1^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15016~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15016~^~317~^37.6^29^1.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15016~^~326~^1.2^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15016~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15016~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~421~^83.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15016~^~430~^0.1^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15016~^~454~^9.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~15017~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15017~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15017~^~317~^38.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15017~^~326~^1.2^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15017~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15017~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~421~^85.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15017~^~430~^0.1^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15018~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15018~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15018~^~317~^147.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15018~^~326~^4.0^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15018~^~328~^4.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15018~^~401~^3.5^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~421~^291.3^0^^~4~^~BFSN~^~15016~^^^^^^^^^~03/01/2007~ -~15018~^~430~^0.4^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15019~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1994~ -~15019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15019~^~317~^22.9^11^1.1^~1~^~A~^^^1^19.6^34.0^10^20.2^25.4^~2, 3~^~07/01/2010~ -~15019~^~326~^0.5^4^0.1^~1~^~A~^^^1^0.2^0.7^3^9.2e-02^0.8^~2, 3~^~07/01/2010~ -~15019~^~328~^0.5^4^0.1^~1~^~AS~^^^1^0.2^0.7^3^9.2e-02^0.8^~2, 3~^~07/01/2010~ -~15019~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15019~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15020~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15020~^~326~^0.7^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15020~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15020~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15020~^~421~^67.0^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15020~^~430~^0.1^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15021~^~291~^0.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~15021~^~317~^38.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15021~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15022~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15022~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15022~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15023~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15023~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15023~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15023~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15024~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15024~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15024~^~401~^1.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15025~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15025~^~317~^6.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15025~^~326~^23.3^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15025~^~328~^23.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15025~^~401~^1.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15025~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15025~^~430~^0.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15026~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15026~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15026~^~317~^8.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15026~^~401~^1.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15027~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2013~ -~15027~^~291~^1.5^3^^~1~^~A~^^^1^1.4^1.6^^^^~2, 3~^~03/01/2013~ -~15027~^~317~^15.7^9^0.5^~1~^~A~^^^1^14.4^21.7^2^13.6^17.8^~2, 3~^~03/01/2013~ -~15027~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2013~ -~15027~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2013~ -~15027~^~328~^0.0^4^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~15027~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~15027~^~421~^42.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~15027~^~428~^0.0^9^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~429~^0.0^9^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~430~^4.7^9^0.9^~1~^~A~^^^1^2.1^18.2^2^0.5^8.8^~2, 3~^~03/01/2013~ -~15027~^~454~^18.5^2^^~1~^~A~^^^1^8.9^29.7^^^^^~03/01/2013~ -~15028~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15028~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15028~^~317~^26.6^4^4.2^~1~^~A~^^^1^20.5^38.5^3^13.0^40.0^~2, 3~^~07/01/2010~ -~15028~^~326~^2.8^11^0.5^~1~^~A~^^^1^0.4^6.6^10^1.7^3.9^~2, 3~^~07/01/2010~ -~15028~^~328~^2.8^11^0.5^~1~^~AS~^^^1^0.4^6.6^10^1.7^3.9^~2, 3~^~07/01/2010~ -~15028~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15028~^~428~^0.2^4^0.2^~1~^~A~^^^1^0.0^0.9^3^-0.4^0.8^~1, 2, 3~^~07/01/2010~ -~15028~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~430~^0.1^4^5.0e-02^~1~^~A~^^^1^0.0^0.2^3^-0.1^0.2^~1, 2, 3~^~07/01/2010~ -~15029~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~317~^32.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~326~^3.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~328~^3.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~421~^79.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~428~^0.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15030~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15030~^~317~^10.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15030~^~401~^0.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15031~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15031~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15031~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15032~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15032~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15033~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15033~^~317~^25.9^8^1.2^~1~^~A~^^^1^23.0^33.5^7^23.0^28.7^~2, 3~^~07/01/2010~ -~15033~^~326~^0.5^3^9.3e-02^~1~^~A~^^^1^0.3^0.6^2^5.9e-02^0.8^~2, 3~^~07/01/2010~ -~15033~^~328~^0.5^3^9.3e-02^~1~^~AS~^^^1^0.3^0.6^2^5.9e-02^0.8^~2, 3~^~07/01/2010~ -~15033~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15033~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15033~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15034~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~317~^31.7^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~326~^0.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~328~^0.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~421~^79.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15035~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15035~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15035~^~317~^42.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15035~^~326~^0.8^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~ -~15035~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15035~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15035~^~421~^92.3^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~ -~15035~^~430~^0.1^0^^~4~^~BFSN~^~15033~^^^^^^^^^~02/01/2003~ -~15036~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15036~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15036~^~317~^45.6^10^3.1^~1~^~A~^^^1^33.2^63.3^9^38.5^52.7^~2, 3~^~07/01/2010~ -~15036~^~326~^4.7^10^1.0^~1~^~A~^^^1^0.8^10.9^9^2.2^7.2^~2, 3~^~07/01/2010~ -~15036~^~328~^4.7^10^1.0^~1~^~AS~^^^1^0.8^10.9^9^2.2^7.2^~2, 3~^~07/01/2010~ -~15036~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~421~^61.8^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15036~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15037~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~317~^55.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~326~^5.8^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~328~^5.8^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~421~^75.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15038~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15038~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15038~^~326~^27.4^0^^~4~^~BFFN~^~15028~^^^^^^^^^~03/01/2009~ -~15038~^~328~^27.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15038~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15038~^~421~^61.8^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15038~^~430~^0.1^0^^~4~^~BFSN~^~15028~^^^^^^^^^~03/01/2009~ -~15039~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15039~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15039~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15039~^~326~^4.2^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15039~^~328~^4.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15039~^~401~^0.7^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15039~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15040~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1991~ -~15040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15040~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15040~^~326~^5.4^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15040~^~328~^5.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15040~^~401~^0.7^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~421~^83.3^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15040~^~430~^0.1^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15041~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15041~^~317~^58.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15041~^~326~^2.8^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15041~^~328~^2.8^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~15041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15041~^~421~^104.1^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15041~^~430~^0.2^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15042~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15042~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15042~^~317~^52.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15042~^~326~^2.2^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15042~^~328~^2.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15042~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~421~^95.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15042~^~430~^0.1^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15043~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15043~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15044~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15044~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15044~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15045~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15045~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15045~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15045~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15046~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15046~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15046~^~317~^44.1^11^2.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15046~^~326~^16.1^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15046~^~328~^16.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15046~^~401~^0.4^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15046~^~430~^5.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15047~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15047~^~317~^51.6^33^1.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15047~^~401~^0.4^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15048~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15048~^~317~^37.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15048~^~326~^7.3^0^^~4~^~BFFN~^~15050~^^^^^^^^^~03/01/2009~ -~15048~^~328~^7.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15048~^~401~^0.9^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~421~^85.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15048~^~430~^0.1^0^^~4~^~BFSN~^~15050~^^^^^^^^^~02/01/2003~ -~15049~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15049~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15049~^~401~^1.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15050~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15050~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15050~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15050~^~326~^9.1^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15050~^~328~^9.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15050~^~401~^2.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15050~^~421~^66.9^0^^~4~^~BFSN~^~15127~^^^^^^^^^~03/01/2009~ -~15050~^~430~^0.1^0^^~4~^~BFSN~^~15127~^^^^^^^^^~03/01/2009~ -~15051~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1995~ -~15051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15051~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15051~^~326~^7.3^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~ -~15051~^~328~^7.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15051~^~401~^1.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15051~^~421~^50.5^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15051~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15052~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15052~^~317~^40.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15052~^~401~^1.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15053~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15053~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15054~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15054~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15054~^~401~^1.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15055~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15055~^~326~^1.5^0^^~4~^~BFFN~^~15057~^^^^^^^^^~03/01/2009~ -~15055~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15055~^~401~^1.2^8^7.1e-02^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~421~^70.2^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15055~^~430~^0.1^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15056~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15056~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15056~^~401~^1.2^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15057~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15057~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15057~^~317~^28.6^11^2.9^~1~^~A~^^^1^7.8^39.4^10^22.1^35.0^~2, 3~^~07/01/2010~ -~15057~^~326~^1.2^4^0.8^~1~^~A~^^^1^0.2^3.6^3^-1.3^3.7^~2, 3~^~07/01/2010~ -~15057~^~328~^1.2^4^0.8^~1~^~AS~^^^1^0.2^3.6^3^-1.3^3.7^~2, 3~^~07/01/2010~ -~15057~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15057~^~428~^0.2^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~430~^0.1^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15058~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~317~^34.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~326~^1.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~328~^1.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~421~^78.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~428~^0.2^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15059~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15059~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15059~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15060~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15060~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15060~^~326~^3.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15060~^~328~^3.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15060~^~401~^1.7^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15060~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15061~^~317~^16.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15061~^~401~^1.7^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15062~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15062~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15062~^~326~^2.5^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15062~^~328~^2.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15062~^~401~^3.8^4^0.8^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15062~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15063~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15063~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15063~^~401~^3.8^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15064~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15064~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15064~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15065~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15065~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15065~^~326~^1.0^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15065~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15065~^~421~^75.8^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15065~^~430~^0.1^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15066~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15066~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15066~^~317~^15.9^8^2.2^~1~^~A~^^^1^10.8^30.4^7^10.6^21.1^~2, 3~^~07/01/2010~ -~15066~^~326~^0.2^3^0.1^~1~^~A~^^^1^0.1^0.4^2^-0.2^0.6^~2, 3~^~07/01/2010~ -~15066~^~328~^0.2^3^0.1^~1~^~AS~^^^1^0.1^0.4^2^-0.2^0.6^~2, 3~^~07/01/2010~ -~15066~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15066~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15067~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~317~^44.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~326~^1.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~328~^1.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~421~^91.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15068~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15068~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15068~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15068~^~326~^11.0^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~ -~15068~^~328~^11.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15068~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15068~^~421~^51.5^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15068~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15069~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15069~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15069~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15070~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1994~ -~15070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15070~^~317~^63.0^4^6.9^~1~^~A~^^^1^45.1^78.8^3^40.9^84.9^~2, 3~^~07/01/2010~ -~15070~^~325~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2015~ -~15070~^~326~^3.8^4^2.2^~1~^~A~^^^1^0.9^10.5^3^-3.4^10.9^~2, 3~^~07/01/2010~ -~15070~^~328~^3.8^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~15070~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15070~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15071~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~317~^76.2^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~326~^4.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~328~^4.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~421~^78.7^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15072~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15072~^~317~^40.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15072~^~326~^12.1^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15072~^~328~^12.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15072~^~401~^16.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~421~^335.4^0^^~4~^~BFSN~^~01123~^^^^^^^^^~03/01/2007~ -~15072~^~430~^0.2^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2003~ -~15073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15073~^~317~^66.7^3^2.5^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~15073~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~430~^0.7^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15074~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15074~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15074~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15075~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15075~^~317~^50.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15075~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15076~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15076~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15076~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15077~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15077~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15077~^~317~^32.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15077~^~326~^17.1^0^^~4~^~BFSN~^~15085~^^^^^^^^^~03/01/2009~ -~15077~^~328~^17.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15077~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15077~^~421~^89.0^0^^~4~^~BFSN~^~15085~^^^^^^^^^~03/01/2009~ -~15077~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15078~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15078~^~291~^0.0^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15078~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15078~^~401~^4.0^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15079~^~291~^0.0^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15079~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15079~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15080~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15080~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15080~^~317~^43.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15080~^~326~^9.6^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15080~^~328~^9.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15080~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15080~^~421~^85.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15080~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15081~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1995~ -~15081~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15081~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15081~^~326~^9.0^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15081~^~328~^9.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15081~^~401~^1.0^4^0.2^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~421~^109.4^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15081~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15082~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15082~^~317~^46.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15082~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15083~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15083~^~317~^31.4^3^2.7^~1~^~A~^^^1^26.3^35.6^2^19.6^43.0^~2, 3~^~07/01/2010~ -~15083~^~326~^10.9^3^1.8^~1~^~A~^^^1^7.1^13.1^2^2.7^19.0^~2, 3~^~07/01/2010~ -~15083~^~328~^10.9^3^1.8^~1~^~AS~^^^1^7.1^13.1^2^2.7^19.0^~2, 3~^~07/01/2010~ -~15083~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15083~^~421~^94.6^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15083~^~430~^0.4^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15084~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15084~^~317~^33.2^10^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15084~^~326~^13.7^0^^~4~^~BFFN~^~15083~^^^^^^^^^~03/01/2009~ -~15084~^~328~^13.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15084~^~401~^0.0^22^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15084~^~421~^87.8^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15084~^~430~^0.5^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15085~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15085~^~317~^29.8^19^^~1~^~A~^^^2^29.0^30.6^^^^~2~^~08/01/2015~ -~15085~^~326~^14.1^27^^~1~^~A~^^^2^11.0^17.1^^^^~2~^~08/01/2015~ -~15085~^~328~^14.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~421~^94.6^0^^~4~^~BFZN~^~15083~^^^^^^^^^~05/01/2007~ -~15085~^~428~^0.3^4^0.1^~1~^~A~^^^^0.0^0.6^^^^^~07/01/2010~ -~15085~^~429~^0.0^4^0.0^~1~^~A~^^^^0.0^0.0^^^^^~07/01/2010~ -~15085~^~430~^0.1^4^6.3e-02^~1~^~A~^^^^0.0^0.3^^^^^~07/01/2010~ -~15086~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~317~^35.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~326~^16.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~328~^16.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~421~^112.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~428~^0.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15087~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15087~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15087~^~317~^34.3^12^0.4^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~325~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2011~ -~15087~^~326~^21.0^3^1.7^~1~^~A~^^^1^17.6^23.7^2^13.3^28.6^~2, 3~^~05/01/2011~ -~15087~^~328~^21.0^6^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15087~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~15087~^~421~^82.6^3^3.3^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~15087~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~430~^0.1^2^^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~454~^3.7^3^0.7^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15088~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15088~^~317~^52.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15088~^~326~^4.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~328~^4.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15088~^~421~^75.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~430~^2.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15089~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~15089~^~317~^40.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15089~^~326~^4.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~328~^4.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~401~^1.0^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~421~^76.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~430~^0.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~454~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15090~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15090~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15090~^~326~^1.2^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15090~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15090~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15090~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15090~^~430~^0.1^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~ -~15091~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15091~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15091~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15091~^~326~^5.6^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15091~^~328~^5.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15091~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15091~^~421~^60.8^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15091~^~430~^0.1^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15092~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15092~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15092~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15093~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15093~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15093~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15093~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15094~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15094~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15094~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15094~^~326~^4.8^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15094~^~328~^4.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15094~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15094~^~421~^74.0^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15094~^~430~^0.1^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15095~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15095~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15095~^~326~^0.6^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15095~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15095~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15095~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15095~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15096~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15096~^~317~^34.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15096~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15097~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15097~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15098~^~317~^51.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15099~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15099~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15099~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15099~^~326~^0.8^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15099~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15099~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15099~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15099~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15100~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15100~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15100~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15101~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15101~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15101~^~317~^38.2^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15101~^~326~^10.2^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15101~^~328~^10.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15101~^~401~^1.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15101~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15101~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15102~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15102~^~317~^49.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15102~^~401~^1.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15103~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15103~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15103~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15104~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15104~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15104~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15104~^~326~^10.3^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15104~^~328~^10.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15104~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15104~^~421~^56.0^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15104~^~430~^0.1^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15105~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15105~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15105~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15105~^~326~^12.9^0^^~4~^~BFYN~^~15104~^^^^^^^^^~03/01/2009~ -~15105~^~328~^12.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15105~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15105~^~421~^70.0^0^^~4~^~BFYN~^~15104~^^^^^^^^^~03/01/2009~ -~15105~^~430~^0.1^0^^~4~^~BFYN~^~15104~^^^^^^^^^~03/01/2009~ -~15106~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~15106~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15106~^~317~^20.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15106~^~326~^16.1^0^^~4~^~BFSN~^~15105~^^^^^^^^^~03/01/2009~ -~15106~^~328~^16.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15106~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15106~^~421~^87.3^0^^~4~^~BFSN~^~15105~^^^^^^^^^~03/01/2009~ -~15106~^~430~^0.1^0^^~4~^~BFSN~^~15105~^^^^^^^^^~03/01/2009~ -~15107~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15107~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15107~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15108~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15108~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15108~^~401~^1.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~15109~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15109~^~317~^28.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15109~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15109~^~430~^0.1^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15110~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15110~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15110~^~317~^57.4^11^3.1^~1~^~A~^^^1^42.4^73.6^10^50.5^64.3^~2, 3~^~07/01/2010~ -~15110~^~326~^13.9^11^4.0^~1~^~A~^^^1^2.7^49.0^10^4.9^22.9^~2, 3~^~07/01/2010~ -~15110~^~328~^13.9^11^4.0^~1~^~AS~^^^1^2.7^49.0^10^4.9^22.9^~2, 3~^~07/01/2010~ -~15110~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15110~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15110~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15111~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~317~^68.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~326~^16.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~328~^16.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~421~^77.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15112~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15112~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15112~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15112~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15113~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15113~^~317~^51.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15113~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15114~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15114~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15114~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15114~^~326~^3.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15114~^~328~^3.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15114~^~401~^0.5^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15114~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15115~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15115~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15115~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15115~^~401~^2.4^6^0.5^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15116~^~317~^13.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15116~^~401~^2.0^4^0.2^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15117~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15117~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15117~^~326~^5.7^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~ -~15117~^~328~^5.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15117~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15117~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15117~^~430~^0.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15118~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15118~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15118~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15119~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15119~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15119~^~313~^31.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15119~^~317~^76.0^44^0.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15119~^~326~^6.7^0^^~4~^~BFNN~^~15117~^^^^^^^^^~03/01/2009~ -~15119~^~328~^6.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15119~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15119~^~421~^29.3^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15119~^~430~^44.0^2^^~1~^^^^2^24.0^64.0^^^^^~03/01/2009~ -~15121~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2012~ -~15121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15121~^~313~^18.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15121~^~317~^70.6^4^^~1~^~A~^^^1^55.4^81.4^^^^~2, 3~^~06/01/2012~ -~15121~^~326~^1.2^4^^~1~^~A~^^^1^0.7^1.4^^^^~2, 3~^~06/01/2012~ -~15121~^~328~^1.2^4^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~15121~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15121~^~421~^29.3^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15121~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2006~ -~15121~^~430~^0.2^2^^~1~^~A~^^^1^0.1^0.2^1^^^^~02/01/2003~ -~15121~^~454~^2.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~15123~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15123~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15123~^~401~^1.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15124~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15124~^~313~^31.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15124~^~317~^60.1^7^6.7^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15124~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15124~^~430~^6.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15126~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1994~ -~15126~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~15126~^~317~^65.7^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15126~^~326~^2.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15126~^~328~^2.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15126~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~15126~^~421~^29.3^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15126~^~430~^2.5^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15127~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15127~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15127~^~317~^90.6^11^13.4^~1~^~A~^^^1^61.9^221.0^10^60.5^120.6^~2, 3~^~07/01/2010~ -~15127~^~326~^1.7^4^0.1^~1~^~A~^^^1^1.5^2.0^3^1.3^2.0^~2, 3~^~07/01/2010~ -~15127~^~328~^1.7^4^0.1^~1~^~AS~^^^1^1.5^2.0^3^1.3^2.0^~2, 3~^~07/01/2010~ -~15127~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15127~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15127~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15128~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15128~^~317~^41.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15128~^~401~^2.2^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15129~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15129~^~401~^1.7^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15130~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15130~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15130~^~326~^12.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15130~^~328~^12.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15130~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15130~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15130~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15131~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15131~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15131~^~317~^13.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15131~^~326~^12.8^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15131~^~328~^12.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15131~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15131~^~421~^95.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15131~^~430~^0.1^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15132~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15132~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15132~^~317~^32.1^15^2.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15132~^~326~^1.4^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15132~^~328~^1.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15132~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15132~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15132~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15133~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1994~ -~15133~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15133~^~317~^41.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15133~^~326~^1.8^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15133~^~328~^1.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15133~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15133~^~421~^83.3^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15133~^~430~^0.1^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15134~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15134~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15134~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15135~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15135~^~317~^36.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15135~^~401~^2.8^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~15136~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15136~^~317~^36.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15136~^~401~^7.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15137~^~317~^40.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15137~^~401~^7.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~15138~^~291~^0.5^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~317~^22.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~15138~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15138~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~421~^13.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15138~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~430~^0.4^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~15139~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15139~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15139~^~317~^37.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15139~^~401~^3.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15140~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15140~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15140~^~317~^42.9^3^5.6^~1~^~A~^^^1^33.3^52.9^2^18.5^67.2^~2, 3~^~07/01/2010~ -~15140~^~326~^0.0^3^2.0e-03^~1~^~A~^^^1^0.0^0.0^2^-6.0e-03^9.0e-03^~1, 2, 3~^~07/01/2010~ -~15140~^~328~^0.0^3^2.0e-03^~1~^~AS~^^^1^0.0^0.0^2^-6.0e-03^9.0e-03^~1, 2, 3~^~07/01/2010~ -~15140~^~401~^3.3^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15140~^~421~^80.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15140~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15141~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~313~^209.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15141~^~317~^42.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~401~^3.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~421~^80.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~454~^12.6^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~15142~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15142~^~317~^40.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15142~^~401~^2.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15143~^~317~^37.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15143~^~401~^3.5^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15144~^~317~^34.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15144~^~401~^7.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15145~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15145~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15145~^~317~^31.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15145~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15145~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15145~^~401~^1.2^5^0.4^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~421~^80.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15145~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15146~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15146~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15146~^~317~^36.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15146~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15146~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15146~^~401~^0.9^4^0.2^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~421~^80.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15146~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15147~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~313~^10.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~317~^63.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~421~^70.3^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15148~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15148~^~317~^73.1^3^8.1^~1~^~A~^^^1^58.5^86.5^2^38.2^107.9^~2, 3~^~07/01/2010~ -~15148~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~07/01/2010~ -~15148~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15148~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15148~^~421~^80.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15148~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15149~^~317~^29.6^4^3.3^~1~^~A~^^^1^24.5^39.2^3^18.9^40.2^~2, 3~^~07/01/2010~ -~15149~^~326~^0.1^5^3.3e-02^~1~^~A~^^^1^0.0^0.1^4^-3.8e-02^0.1^~1, 2, 3~^~07/01/2010~ -~15149~^~328~^0.1^5^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~15149~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~421~^80.9^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15149~^~428~^0.3^4^0.2^~1~^~A~^^^1^0.0^1.0^3^-0.5^1.0^~1, 2, 3~^~07/01/2010~ -~15149~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~430~^0.3^4^0.1^~1~^~A~^^^1^0.0^0.8^3^-0.2^0.7^~1, 2, 3~^~07/01/2010~ -~15150~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~291~^0.4^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~15150~^~313~^166.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15150~^~317~^41.7^40^1.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~15150~^~326~^0.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~401~^1.5^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15150~^~421~^91.2^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~428~^0.3^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~429~^0.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~430~^1.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15151~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~317~^49.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~326~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~421~^135.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~428~^0.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~430~^0.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15152~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15152~^~313~^201.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15152~^~317~^47.5^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15152~^~401~^4.1^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~421~^80.9^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15152~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15153~^~317~^22.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~15153~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15154~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15154~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15154~^~317~^46.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15154~^~401~^2.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15155~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15155~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15155~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15155~^~401~^2.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15155~^~430~^23.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15156~^~317~^51.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15156~^~401~^1.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15157~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15157~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15157~^~317~^30.6^4^1.5^~1~^~A~^^^1^28.0^34.7^3^25.6^35.4^~2, 3~^~07/01/2010~ -~15157~^~326~^0.0^4^2.1e-02^~1~^~A~^^^1^0.0^0.1^3^-3.5e-02^0.1^~1, 2, 3~^~07/01/2010~ -~15157~^~328~^0.0^4^2.1e-02^~1~^~AS~^^^1^0.0^0.1^3^-3.5e-02^0.1^~1, 2, 3~^~07/01/2010~ -~15157~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15157~^~428~^0.0^4^3.8e-02^~1~^~A~^^^1^0.0^0.2^3^-8.2e-02^0.1^~1, 2, 3~^~07/01/2010~ -~15157~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~430~^0.2^4^0.1^~1~^~A~^^^1^0.0^0.7^3^-0.3^0.7^~1, 2, 3~^~07/01/2010~ -~15158~^~317~^28.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15158~^~401~^10.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15159~^~317~^64.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15159~^~401~^22.1^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15160~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~317~^50.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~326~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~421~^107.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~428~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15162~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15162~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15162~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15162~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15162~^~401~^1.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~421~^13.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15162~^~430~^0.2^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15163~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15163~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15163~^~401~^5.3^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15164~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15164~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15164~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15164~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15164~^~401~^8.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15164~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15165~^~317~^89.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15165~^~401~^13.6^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15166~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15166~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15166~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15166~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15166~^~401~^5.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15166~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15167~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15167~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~313~^40.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~317~^19.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~421~^65.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~428~^2.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~430~^1.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15168~^~317~^66.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15168~^~401~^3.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15169~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15169~^~317~^39.5^3^8.3^~1~^~A~^^^1^23.3^51.0^2^3.6^75.2^~2, 3~^~07/01/2010~ -~15169~^~326~^0.0^3^1.5e-02^~1~^~A~^^^1^0.0^0.1^2^-2.3e-02^0.1^~2, 3~^~07/01/2010~ -~15169~^~328~^0.0^3^1.5e-02^~1~^~AS~^^^1^0.0^0.1^2^-2.3e-02^0.1^~2, 3~^~07/01/2010~ -~15169~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~421~^130.0^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~15169~^~428~^5.0^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15169~^~430~^2.0^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15170~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15170~^~317~^35.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15170~^~326~^0.0^0^^~4~^~BFZN~^~15167~^^^^^^^^^~08/01/2010~ -~15170~^~328~^0.0^0^^~4~^~BFZN~^~15167~^^^^^^^^^~08/01/2010~ -~15170~^~401~^5.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15170~^~421~^81.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15170~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15171~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1996~ -~15171~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15171~^~317~^77.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15171~^~401~^8.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15172~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15172~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15172~^~317~^12.8^12^0.8^~1~^~A~^^^1^9.8^18.8^11^10.9^14.5^~2, 3~^~07/01/2010~ -~15172~^~326~^0.0^4^1.2e-02^~1~^~A~^^^1^0.0^0.1^3^-1.9e-02^5.9e-02^~1, 2, 3~^~07/01/2010~ -~15172~^~328~^0.0^4^1.2e-02^~1~^~AS~^^^1^0.0^0.1^3^-1.9e-02^5.9e-02^~1, 2, 3~^~07/01/2010~ -~15172~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15172~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15173~^~317~^26.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15173~^~401~^2.3^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15174~^~317~^23.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~15174~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15175~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15175~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15175~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15175~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15175~^~401~^4.7^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15175~^~430~^0.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15176~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15176~^~317~^51.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~15176~^~401~^4.2^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~15177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15177~^~317~^44.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~15177~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15177~^~401~^4.0^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15177~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15177~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15178~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15178~^~317~^89.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15178~^~401~^6.8^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15179~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15179~^~317~^38.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15179~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15180~^~317~^43.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15181~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15181~^~317~^33.2^10^0.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15181~^~401~^0.0^22^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15182~^~317~^35.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15182~^~401~^0.0^11^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15183~^~313~^31.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15183~^~317~^76.0^44^0.8^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15183~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15184~^~313~^18.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15184~^~317~^80.4^45^0.7^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15184~^~401~^0.0^0^^~1~^~A~^^^^^^^^^^~09/01/1987~ -~15185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15185~^~313~^31.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~15185~^~317~^60.1^7^6.7^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15185~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15186~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~15186~^~291~^0.0^0^^~7~^^^^^^^^^^^~08/01/1992~ -~15186~^~317~^65.7^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15186~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~15187~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15187~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15187~^~401~^2.1^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15188~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15188~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15189~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15189~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15189~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15190~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15190~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15191~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15191~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15191~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15192~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~317~^28.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~326~^0.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~15192~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~421~^79.7^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15193~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15193~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15193~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15194~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15194~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15194~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15195~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15195~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15195~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15196~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15196~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15197~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15197~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15197~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15198~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15198~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15198~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15199~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15199~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15199~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15200~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15200~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15200~^~401~^1.6^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~15201~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15201~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15201~^~326~^11.4^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~ -~15201~^~328~^11.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15201~^~401~^2.1^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~421~^83.6^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~ -~15201~^~430~^0.1^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~ -~15202~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15202~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15202~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15203~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15203~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15203~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15204~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15204~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15205~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15205~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15205~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15206~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15206~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15206~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15207~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15207~^~317~^51.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15207~^~401~^16.4^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15208~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15208~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15209~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15209~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15209~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15210~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15210~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15210~^~401~^4.1^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15211~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15211~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15212~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~317~^37.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~326~^13.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~328~^13.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~421~^113.4^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15213~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15213~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15213~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15214~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15214~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15214~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15215~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15215~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15216~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15216~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15216~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15217~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15217~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15217~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15218~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15218~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15218~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15219~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15219~^~401~^0.5^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15220~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15220~^~401~^1.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15221~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~317~^108.2^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~326~^2.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~328~^2.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~421~^77.6^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15222~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15222~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15222~^~401~^1.7^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15223~^~317~^16.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15223~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15224~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15224~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15224~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15225~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15225~^~317~^46.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15225~^~401~^2.9^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15226~^~317~^47.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15226~^~401~^3.6^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15227~^~317~^44.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15227~^~401~^7.2^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15228~^~317~^59.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15228~^~401~^2.1^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15229~^~317~^89.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15229~^~401~^8.5^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~15230~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15230~^~317~^89.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15230~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15230~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15230~^~401~^8.0^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~421~^81.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15230~^~430~^0.1^0^^~4~^~BFYN~^~15166~^^^^^^^^^~02/01/2003~ -~15231~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15231~^~317~^154.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15231~^~401~^12.8^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~430~^0.1^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15232~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15232~^~317~^88.3^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15232~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~430~^1.1^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15233~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15233~^~317~^14.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15233~^~401~^0.8^4^0.1^~1~^^^^^^^^^^^~09/01/1987~ -~15234~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15234~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15234~^~317~^8.2^12^0.7^~1~^~A~^^^1^4.2^13.0^11^6.5^9.7^~2, 3~^~07/01/2010~ -~15234~^~326~^0.2^4^8.0e-02^~1~^~A~^^^1^0.0^0.4^3^-4.5e-02^0.4^~2, 3~^~07/01/2010~ -~15234~^~328~^0.2^4^8.0e-02^~1~^~AS~^^^1^0.0^0.4^3^-4.5e-02^0.4^~2, 3~^~07/01/2010~ -~15234~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15234~^~428~^0.6^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~430~^2.1^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15235~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~317~^9.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~326~^0.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~328~^0.3^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~421~^78.7^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~428~^0.7^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~430~^2.5^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15236~^~221~^0.0^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15236~^~317~^24.0^4^1.2^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~328~^11.0^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~401~^3.9^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15236~^~421~^78.5^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~15236~^~428~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~430~^0.5^2^^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~454~^3.0^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~15237~^~221~^0.0^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15237~^~317~^41.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15237~^~328~^13.1^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~401~^3.7^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~421~^90.5^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15237~^~430~^0.1^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15238~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15238~^~317~^12.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~15238~^~401~^1.1^3^0.3^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15239~^~317~^14.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15239~^~401~^1.5^3^0.4^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~15240~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15240~^~317~^23.6^8^0.9^~1~^~A~^^^1^18.0^26.0^7^21.3^25.7^~2, 3~^~07/01/2010~ -~15240~^~326~^15.9^8^1.2^~1~^~A~^^^1^10.4^19.5^7^13.0^18.7^~2, 3~^~07/01/2010~ -~15240~^~328~^15.9^8^1.2^~1~^~AS~^^^1^10.4^19.5^7^13.0^18.7^~2, 3~^~07/01/2010~ -~15240~^~401~^2.9^3^0.2^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15240~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~15241~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~317~^28.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~326~^19.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~328~^19.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~401~^2.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~421~^77.6^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15242~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15242~^~317~^28.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15242~^~401~^0.5^4^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15243~^~317~^34.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15243~^~401~^0.5^4^0.0^~1~^^^^^^^^^^^~09/01/1987~ -~15244~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~313~^63.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~317~^30.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~421~^101.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~428~^3.9^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~430~^1.5^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15245~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15245~^~317~^63.7^6^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~15245~^~401~^4.7^4^0.5^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15246~^~317~^77.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15246~^~401~^6.0^4^0.9^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/1995~ -~15247~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15247~^~317~^38.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15247~^~326~^11.3^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~ -~15247~^~328~^11.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15247~^~401~^1.4^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~421~^72.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15247~^~430~^0.1^0^^~4~^~BFYN~^~15081~^^^^^^^^^~02/01/2003~ -~15250~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~317~^40.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15250~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15250~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15250~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15250~^~421~^81.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15250~^~430~^0.2^0^^~4~^~BFYN~^~15177~^^^^^^^^^~02/01/2003~ -~15251~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1995~ -~15251~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15252~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~15252~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15253~^~221~^0.0^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~15253~^~317~^30.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~15253~^~326~^19.0^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~328~^19.0^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~15253~^~421~^74.8^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~430~^0.1^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15260~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15260~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~15260~^~317~^39.5^15^8.2^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~325~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2011~ -~15260~^~326~^14.5^3^0.8^~1~^~A~^^^1^12.9^15.4^2^10.9^18.0^~2, 3~^~05/01/2011~ -~15260~^~328~^14.5^6^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15260~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~15260~^~421~^87.8^4^2.8^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~15260~^~428~^0.5^4^4.6e-02^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15260~^~429~^0.0^4^0.0^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~430~^0.1^4^4.0e-03^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~454~^9.0^4^1.8^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15261~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~317~^41.8^3^6.2^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~326~^3.1^0^^~4~^~BFSN~^~15060~^^^^^^^^^~03/01/2009~ -~15261~^~328~^3.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~15261~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~421~^42.5^3^12.3^~1~^~AS~^^^1^^^^^^^~03/01/2007~ -~15261~^~429~^0.0^3^0.0^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15261~^~430~^1.4^3^0.6^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~454~^21.7^3^5.7^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15262~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~317~^54.4^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~326~^3.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~15262~^~328~^3.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~15262~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~421~^51.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~15262~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~430~^0.9^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~454~^26.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~15264~^~221~^0.0^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~291~^0.0^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~317~^34.6^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~325~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2011~ -~15264~^~326~^21.5^3^2.5^~1~^~A~^^^1^18.4^26.5^2^10.5^32.4^~2, 3~^~05/01/2011~ -~15264~^~328~^21.5^6^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15264~^~401~^0.0^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~421~^83.3^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~430~^0.1^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15265~^~221~^0.0^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~291~^0.0^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~317~^39.6^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~325~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2011~ -~15265~^~326~^14.1^3^0.7^~1~^~A~^^^1^13.3^15.5^2^10.9^17.1^~2, 3~^~05/01/2011~ -~15265~^~328~^14.1^6^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~15265~^~401~^0.0^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~421~^88.0^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~430~^0.1^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~16001~^~291~^12.7^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~317~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16001~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~291~^7.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1998~ -~16002~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16002~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16002~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16003~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16004~^~317~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16004~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~291~^5.5^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16005~^~317~^5.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16005~^~401~^1.1^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16006~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~16006~^~291~^4.1^7^0.2^~6~^~JA~^^^2^3.2^5.6^2^3.2^4.9^~2, 3~^~05/01/2004~ -~16006~^~317~^5.0^29^0.1^~1~^~A~^^^2^4.7^7.8^11^4.7^5.2^~2, 3~^~05/01/2004~ -~16006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16006~^~401~^0.0^5^0.0^~11~^~JO~^^^2^0.0^3.1^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~421~^31.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16006~^~429~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~430~^0.8^5^7.2e-02^~1~^~A~^^^1^0.6^1.0^4^0.6^1.0^~2, 3~^~05/01/2004~ -~16006~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16007~^~317~^9.6^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~16007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16007~^~401~^1.8^10^0.2^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16008~^~291~^6.9^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16008~^~317~^6.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~16008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16008~^~401~^2.3^9^0.4^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~421~^34.9^0^^~4~^~RF~^^^^^^^^^^~04/01/2007~ -~16008~^~430~^1.0^0^^~4~^~RF~^^^^^^^^^^~04/01/2007~ -~16009~^~291~^5.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~313~^54.0^11^13.0^~1~^~A~^^^2^41.0^67.0^1^-111.1^219.1^~4~^~01/01/2006~ -~16009~^~317~^4.7^24^8.0e-02^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16009~^~401~^2.0^16^0.2^~1~^^^^^^^^^^^~12/01/1986~ -~16010~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1986~ -~16010~^~291~^4.4^9^9.3e-02^~1~^~A~^^^1^3.8^4.7^3^4.0^4.7^~2, 3~^~08/01/2014~ -~16010~^~317~^4.8^9^0.1^~1~^~A~^^^1^4.2^7.3^2^4.0^5.4^~2, 3~^~08/01/2014~ -~16010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16010~^~401~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~421~^22.3^3^^~1~^~AS~^^^2^21.8^24.5^^^^~2, 3~^~07/01/2014~ -~16010~^~430~^0.4^6^4.0e-02^~1~^~A~^^^1^0.3^0.8^1^0.1^0.7^~2, 3~^~08/01/2014~ -~16010~^~454~^0.2^3^^~1~^~A~^^^2^0.1^0.2^^^^~2, 3~^~07/01/2012~ -~16011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2004~ -~16011~^~291~^4.0^5^8.2e-02^~6~^~JA~^^^3^3.6^4.8^3^3.7^4.2^~2, 3~^~04/01/2004~ -~16011~^~317~^4.7^28^7.8e-02^~1~^~A~^^^2^4.7^5.8^23^4.5^4.9^~2, 3~^~04/01/2004~ -~16011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16011~^~401~^3.0^218^0.0^~6~^~JA~^^^2^0.0^3.1^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~421~^39.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16011~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~430~^0.5^4^0.1^~1~^~A~^^^1^0.2^0.9^3^4.2e-02^0.9^~2, 3~^~04/01/2004~ -~16011~^~454~^0.4^2^^~1~^~A~^^^1^0.2^0.7^1^^^^~11/01/2006~ -~16014~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16014~^~291~^15.5^0^^~4~^~BFSN~^~16042~^^^^^^^^^~01/01/2011~ -~16014~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16014~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~421~^66.4^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16014~^~430~^5.6^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16015~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~291~^8.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16015~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~421~^32.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~430~^3.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16016~^~221~^0.0^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~291~^15.5^0^^~4~^~BFSN~^~16042~^^^^^^^^^~01/01/2011~ -~16016~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16016~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~430~^5.6^0^^~4~^~BFSN~^~16042~^^^^^^^^^~01/01/2011~ -~16017~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^ -~16017~^~291~^8.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2011~ -~16017~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16017~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~421~^32.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16017~^~430~^3.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~291~^6.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16018~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16018~^~401~^2.7^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~421~^23.2^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~430~^2.3^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16019~^~291~^24.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16019~^~317~^12.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16019~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~291~^8.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~08/01/2015~ -~16020~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16020~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~291~^6.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16021~^~317~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16021~^~401~^0.8^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~291~^25.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16022~^~317~^12.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16022~^~401~^4.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~291~^9.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16023~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16023~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~221~^0.0^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~291~^20.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16024~^~317~^12.9^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16024~^~401~^5.3^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~430~^6.0^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16025~^~291~^7.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~317~^4.1^3^1.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16025~^~401~^1.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~291~^4.9^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16026~^~401~^1.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~421~^29.5^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~430~^3.0^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16027~^~221~^0.0^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~291~^24.9^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16027~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16027~^~401~^4.5^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~430~^19.0^0^^~4~^~T~^~16042~^^^^^^^^^~05/01/2003~ -~16028~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~16028~^~291~^6.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~317~^1.1^48^0.2^~6~^~JA~^^^10^0.0^6.0^47^0.6^1.5^~4~^~02/01/2003~ -~16028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16028~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~421~^30.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16028~^~430~^8.4^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~291~^4.3^0^^~4~^~BFSN~^~16028~^^^^^^^^^~06/01/2014~ -~16029~^~317~^0.9^10^0.3^~1~^~A~^^^2^0.5^1.2^1^-3.5^5.2^~1, 4~^~04/01/2004~ -~16029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16029~^~401~^1.2^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16029~^~421~^34.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16029~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~430~^4.1^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16030~^~291~^24.9^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16030~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16030~^~401~^4.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~291~^9.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16031~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16031~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16032~^~291~^15.2^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16032~^~313~^2.2^36^0.2^~1~^~A~^^^1^2.0^3.0^3^1.4^3.0^~4~^~01/01/2006~ -~16032~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16032~^~401~^4.5^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~421~^65.9^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16032~^~430~^5.6^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16033~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16033~^~291~^7.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16033~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~421~^30.5^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16033~^~430~^8.4^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1986~ -~16034~^~291~^4.3^0^^~4~^~BFSN~^~16028~^^^^^^^^^~06/01/2014~ -~16034~^~317~^1.1^10^0.2^~1~^~A~^^^2^0.5^1.2^8^0.5^1.6^~1, 2, 3~^~04/01/2011~ -~16034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16034~^~401~^0.8^9^6.0e-03^~6~^~JA~^^^2^0.2^1.2^3^0.7^0.7^~1, 2, 3~^~04/01/2011~ -~16034~^~421~^30.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16034~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~430~^4.1^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16035~^~291~^24.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16035~^~317~^3.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16035~^~401~^4.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~291~^9.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16036~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16036~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16037~^~221~^0.0^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16037~^~291~^15.3^0^^~4~^~BFSN~^~16042~^^^^^^^^^~06/01/2014~ -~16037~^~317~^11.0^3^1.7^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16037~^~421~^87.4^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16037~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~430~^2.5^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~16038~^~291~^10.5^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16038~^~313~^2.2^36^0.2^~1~^~A~^^^1^2.0^3.0^3^1.4^3.0^~4~^~01/01/2006~ -~16038~^~317~^2.9^29^0.6^~6~^~JA~^^^2^0.0^12.0^27^1.5^4.2^~2, 3~^~04/01/2004~ -~16038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16038~^~401~^0.9^0^^~1~^^^^^^^^^^^~11/01/2006~ -~16038~^~421~^44.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16038~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16038~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16039~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16039~^~291~^5.1^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~317~^5.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16039~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~421~^26.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16039~^~430~^2.9^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~03/01/2006~ -~16040~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16040~^~291~^12.7^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16040~^~317~^13.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16040~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~421~^67.2^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16040~^~430~^5.7^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16041~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~16041~^~291~^5.3^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16041~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16041~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~421~^36.9^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16041~^~430~^3.7^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16042~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16042~^~291~^15.5^4^0.1^~1~^~A~^^^1^15.0^15.8^3^14.9^16.0^~2, 3~^~01/01/2003~ -~16042~^~317~^27.9^2^^~1~^~A~^^^1^27.3^28.5^1^^^^~01/01/2003~ -~16042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16042~^~401~^6.3^2^^~1~^~A~^^^1^0.3^12.2^1^^^~1~^~01/01/2003~ -~16042~^~421~^66.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16042~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~01/01/2003~ -~16042~^~430~^5.6^4^0.2^~1~^~A~^^^1^5.2^6.4^3^4.6^6.5^~2, 3~^~01/01/2003~ -~16042~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16043~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~16043~^~291~^9.0^5^0.2^~6~^~JA~^^^2^7.7^12.1^3^8.3^9.6^~2, 3~^~04/01/2004~ -~16043~^~313~^2.2^36^0.2^~1~^~A~^^^1^2.0^3.0^3^1.4^3.0^~4~^~03/01/2006~ -~16043~^~317~^6.2^53^0.5^~6~^~JA~^^^11^0.0^13.0^19^4.9^7.4^~2, 3~^~04/01/2004~ -~16043~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16043~^~401~^0.8^2^^~1~^~A~^^^1^0.7^0.8^1^^^^~01/01/2003~ -~16043~^~421~^35.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16043~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~01/01/2003~ -~16043~^~430~^3.5^5^0.4^~11~^~JO~^^^2^2.8^5.0^3^2.2^4.8^~2, 3~^~04/01/2004~ -~16043~^~454~^0.1^4^6.0e-03^~1~^~A~^^^1^0.1^0.1^3^6.4e-02^0.1^~2, 3~^~03/01/2006~ -~16044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1986~ -~16044~^~291~^4.6^23^0.1^~1~^^^^3^3.2^5.8^16^4.2^4.8^~2, 3~^~05/01/1996~ -~16044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16044~^~401~^0.7^27^1.5e-02^~6~^~JA~^^^4^0.1^1.0^7^0.6^0.7^~1, 2, 3~^~04/01/2011~ -~16044~^~421~^20.8^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16044~^~430~^2.1^0^^~4~^~BFSN~^~16043~^^^^^^^^^~03/01/2007~ -~16045~^~291~^24.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16045~^~317~^12.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16045~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~291~^10.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16046~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16046~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~291~^25.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16047~^~317~^12.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16047~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~291~^10.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16048~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16048~^~401~^1.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~421~^35.2^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~430~^3.5^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16049~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16049~^~291~^15.2^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16049~^~317~^12.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16049~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~421~^66.2^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16049~^~430~^5.6^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16050~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16050~^~291~^6.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16050~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~421~^35.1^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16050~^~430~^3.5^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16051~^~291~^4.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~317~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16051~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16051~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~430~^2.9^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16052~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2005~ -~16052~^~291~^25.0^0^^~4~^^^^^^^^^^^~01/01/2005~ -~16052~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2005~ -~16052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16052~^~401~^1.4^1^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~421~^95.8^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16052~^~430~^9.0^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16053~^~291~^5.4^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16053~^~317~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16053~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~421~^30.6^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16053~^~430~^2.9^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16054~^~291~^3.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16054~^~317~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16054~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16054~^~401~^1.8^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~16055~^~291~^39.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~317~^5.3^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16055~^~401~^0.2^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~421~^11.9^0^^~4~^~BFSN~^~19165~^^^^^^^^^~12/01/2006~ -~16055~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16056~^~291~^12.2^0^^~4~^~T~^^^^^^^^^^~04/01/2014~ -~16056~^~317~^0.0^35^7.0e-03^~1~^~A~^^^2^0.0^0.2^27^3.4e-02^6.4e-02^~2, 3~^~04/01/2014~ -~16056~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16056~^~401~^4.0^3^1.0^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~421~^99.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~16056~^~430~^9.0^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16057~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~16057~^~291~^7.6^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~317~^3.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16057~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16057~^~401~^1.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~421~^42.8^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16057~^~430~^4.0^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16058~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16058~^~291~^4.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16058~^~317~^2.0^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16058~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16058~^~401~^0.1^4^7.6e-02^~1~^~A~^^^1^0.1^0.4^3^-0.1^0.3^~1, 2, 3~^~05/01/2011~ -~16058~^~421~^32.6^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16059~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1986~ -~16059~^~291~^3.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~317~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16059~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16059~^~401~^1.7^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~421~^20.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~430~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16060~^~291~^10.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16060~^~317~^9.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16060~^~401~^1.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~291~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16061~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16061~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16062~^~291~^10.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~317~^9.0^3^1.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16062~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16062~^~401~^1.5^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~421~^94.7^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16062~^~430~^5.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16063~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~16063~^~291~^6.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~317~^2.5^15^0.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16063~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~421~^32.2^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16063~^~430~^1.7^0^^~4~^~BFSN~^~16062~^^^^^^^^^~05/01/2003~ -~16064~^~291~^3.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~317~^2.3^3^1.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16064~^~401~^2.7^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~291~^3.3^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16065~^~317~^2.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16065~^~401~^0.2^30^6.0e-02^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16067~^~291~^25.6^0^^~4~^~BFSN~^~16027~^^^^^^^^^~11/01/2011~ -~16067~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16067~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16068~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16068~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16069~^~291~^10.7^0^^~4~^~BFSN~^~16144~^^^^^^^^^~04/01/2014~ -~16069~^~317~^0.1^38^6.0e-03^~1~^~A~^^^2^0.0^0.2^34^5.9e-02^8.4e-02^~2, 3~^~04/01/2014~ -~16069~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16069~^~401~^4.5^0^^~4~^~BFSN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~421~^96.4^0^^~4~^~CASN~^^^^^^^^^^~03/01/2010~ -~16069~^~430~^5.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16070~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~16070~^~291~^7.9^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16070~^~401~^1.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~421~^32.7^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16070~^~430~^1.7^0^^~4~^~BFSN~^~16069~^^^^^^^^^~05/01/2003~ -~16071~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16071~^~291~^19.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~317~^7.2^3^3.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16071~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~421~^96.7^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16071~^~430~^6.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16072~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~16072~^~291~^7.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~313~^2.2^36^0.2^~1~^~A~^^^1^2.0^3.0^3^1.4^3.0^~4~^~01/01/2006~ -~16072~^~317~^4.5^12^1.7^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16072~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16072~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~421~^32.5^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16072~^~430~^2.0^0^^~4~^~BFSN~^~16071~^^^^^^^^^~05/01/2003~ -~16073~^~291~^4.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~317~^4.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16073~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16073~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~221~^0.0^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~291~^20.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16074~^~317~^7.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16074~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~430~^5.9^0^^~4~^~BFSN~^~16071~^^^^^^^^^~05/01/2003~ -~16075~^~291~^7.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~317~^4.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16075~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16076~^~291~^18.9^0^^~4~^~BFSN~^~16071~^^^^^^^^^~11/01/2011~ -~16076~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16076~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16076~^~401~^4.8^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~291~^2.8^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~317~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16077~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16077~^~401~^1.1^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16078~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16078~^~401~^4.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16079~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16079~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16080~^~291~^16.3^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16080~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16080~^~401~^4.8^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~421~^97.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16080~^~430~^9.0^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16081~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~16081~^~291~^7.6^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16081~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16081~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~421~^29.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16081~^~430~^2.7^0^^~4~^~BFSN~^~16080~^^^^^^^^^~02/01/2003~ -~16082~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16082~^~291~^0.5^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~317~^7.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16082~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16082~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~421~^93.2^0^^~4~^~BFSN~^~16080~^^^^^^^^^~04/01/2007~ -~16082~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16083~^~291~^18.3^3^0.9^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16083~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16083~^~401~^0.0^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16084~^~291~^6.4^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16084~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16084~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~421~^29.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16084~^~430~^2.7^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~ -~16085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^ -~16085~^~291~^22.2^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~317~^10.7^74^3.1^~1~^~A~^^^3^0.0^176.0^7^3.1^18.2^~1, 2, 3~^~03/01/2016~ -~16085~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16085~^~401~^1.8^1^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16085~^~421~^156.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2016~ -~16085~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2016~ -~16085~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2016~ -~16085~^~430~^15.9^2^^~1~^~A~^^^1^14.1^17.6^1^^^^~03/01/2016~ -~16085~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16086~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16086~^~291~^8.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16086~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16086~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~421~^32.8^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16086~^~430~^5.0^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16087~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1986~ -~16087~^~291~^8.5^3^0.0^~1~^^^^1^8.5^8.5^^^^~2, 3~^~04/01/2014~ -~16087~^~317~^7.2^0^^~4~^~BFSN~^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16087~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~16087~^~421~^52.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16087~^~430~^0.0^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~ -~16087~^~454~^0.6^4^0.1^~1~^~A~^^^1^0.4^0.8^3^0.3^0.9^~2, 3~^~03/01/2006~ -~16088~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~16088~^~291~^8.8^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16088~^~317~^4.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16088~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16088~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~421~^32.7^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~ -~16088~^~430~^0.0^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16089~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~16089~^~291~^9.4^4^9.6e-02^~1~^~A~^^^1^9.2^9.6^3^9.0^9.6^~2, 3~^~02/01/2003~ -~16089~^~317~^3.3^4^0.1^~1~^~A~^^^1^3.1^3.5^3^2.9^3.6^~2, 3~^~02/01/2003~ -~16089~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16089~^~401~^0.8^3^0.0^~1~^~A~^^^1^0.8^0.8^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~421~^55.3^0^^~4~^~BFSN~^~16087~^^^^^^^^^~02/01/2007~ -~16089~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~16090~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~16090~^~291~^8.4^8^0.8^~1~^~A~^^^1^6.4^11.5^2^5.0^11.8^~2, 3~^~04/01/2014~ -~16090~^~313~^16.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~16090~^~317~^9.3^6^2.8^~1~^~A~^^^1^2.2^20.5^2^-2.5^21.1^~1, 2, 3~^~04/01/2014~ -~16090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16090~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~421~^64.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~16090~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16090~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16090~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16090~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16091~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~16091~^~291~^9.5^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~317~^7.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16091~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16091~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~430~^0.0^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16092~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16092~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16092~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16092~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~291~^8.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16093~^~317~^7.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16093~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16093~^~401~^0.0^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16094~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16094~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16094~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16095~^~291~^8.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~16095~^~317~^7.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16095~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16095~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~430~^0.0^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16096~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16096~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16096~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16097~^~291~^8.0^8^0.6^~6~^~JA~^^^2^4.9^13.3^3^5.9^9.9^~2, 3~^~03/01/2004~ -~16097~^~313~^3.1^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16097~^~317~^8.2^30^0.6^~1~^~A~^^^2^7.3^25.2^4^6.4^10.0^~2, 3~^~03/01/2006~ -~16097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16097~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~421~^61.3^3^2.1^~1~^~AS~^^^1^59.1^65.5^2^52.1^70.3^~2, 3~^~03/01/2006~ -~16097~^~429~^0.5^2^^~1~^~A~^^^1^0.4^0.5^1^^^^~03/01/2004~ -~16097~^~430~^0.5^2^^~1~^~A~^^^1^0.4^0.7^1^^^^~03/01/2004~ -~16097~^~454~^1.0^3^0.3^~1~^~A~^^^1^0.6^1.8^2^-0.5^2.6^~2, 3~^~03/01/2006~ -~16098~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~16098~^~291~^5.0^9^0.2^~1~^~A~^^^1^3.6^6.1^4^4.2^5.6^~2, 3~^~07/01/2014~ -~16098~^~317~^4.1^9^0.1^~1~^~A~^^^1^3.6^4.9^4^3.5^4.6^~2, 3~^~08/01/2014~ -~16098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16098~^~421~^63.0^5^1.5^~1~^~AS~^^^1^59.1^65.9^4^58.6^67.4^~2, 3~^~11/01/2006~ -~16098~^~430~^0.3^1^^~1~^^^^^^^^^^^~08/01/2014~ -~16098~^~454~^0.8^5^0.2^~1~^~A~^^^1^0.4^1.8^4^9.7e-02^1.4^~2, 3~^~08/01/2014~ -~16099~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1986~ -~16099~^~291~^15.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~317~^7.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~16099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16099~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~421~^108.7^0^^~4~^~BFNN~^~16087~^^^^^^^^^~04/01/2007~ -~16099~^~430~^0.0^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16100~^~291~^15.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16100~^~317~^7.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/1998~ -~16100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16100~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~291~^15.0^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16101~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16101~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~291~^6.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16102~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16102~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16102~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1986~ -~16103~^~291~^3.7^9^0.1^~1~^~A~^^^1^2.6^5.7^5^3.4^4.0^~2, 3~^~08/01/2014~ -~16103~^~317~^5.8^9^0.2^~1~^~A~^^^1^4.4^8.9^5^5.0^6.4^~2, 3~^~04/01/2014~ -~16103~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16103~^~401~^6.0^2^^~1~^^^^^^^^^^^~03/01/2008~ -~16103~^~421~^21.2^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16103~^~430~^2.1^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~ -~16104~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16104~^~291~^2.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16104~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~421~^45.0^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~16104~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16106~^~291~^17.5^0^^~4~^^^^^^^^^^^~12/01/1994~ -~16106~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16106~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16107~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16107~^~291~^2.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16107~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16107~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~421~^69.7^0^^~4~^~BFNN~^~16117~^^^^^^^^^~04/01/2007~ -~16107~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16108~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~16108~^~291~^9.3^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16108~^~317~^17.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16108~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16108~^~401~^6.0^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~421~^115.9^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16108~^~430~^47.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16108~^~454~^2.1^2^^~1~^~A~^^^1^2.1^2.1^1^^^^~11/01/2006~ -~16109~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1986~ -~16109~^~291~^6.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~317~^7.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16109~^~401~^1.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~421~^47.5^0^^~4~^~BFSN~^~16108~^^^^^^^^^~04/01/2007~ -~16109~^~430~^19.2^0^^~4~^~BFSN~^~16108~^^^^^^^^^~05/01/2003~ -~16110~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~16110~^~291~^17.7^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1995~ -~16110~^~317~^19.1^4^13.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16110~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16110~^~401~^2.2^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~421~^124.3^0^^~4~^~BFSN~^~16109~^^^^^^^^^~04/01/2007~ -~16110~^~430~^50.4^0^^~4~^~BFSN~^~16109~^^^^^^^^^~05/01/2003~ -~16111~^~291~^8.1^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16111~^~317~^19.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16111~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16111~^~401~^4.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~430~^37.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16112~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16112~^~291~^5.4^1^^~1~^^^^2^5.4^5.4^^^^^~12/01/2003~ -~16112~^~317~^7.0^2^^~11~^~JO~^^^2^1.6^9.0^1^^^^~12/01/2003~ -~16112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16112~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16112~^~421~^72.2^0^^~4~^~BFSN~^~16109~^^^^^^^^^~04/01/2007~ -~16112~^~430~^29.3^0^^~4~^~BFSN~^~16109~^^^^^^^^^~04/01/2007~ -~16113~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1986~ -~16113~^~291~^5.4^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16113~^~317~^8.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16113~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16113~^~401~^13.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~421~^57.0^0^^~4~^~BFSN~^~16112~^^^^^^^^^~04/01/2007~ -~16113~^~430~^23.1^0^^~4~^~BFSN~^~16112~^^^^^^^^^~05/01/2003~ -~16114~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16114~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/2000~ -~16115~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16115~^~291~^9.6^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16115~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16115~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~421~^190.6^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16115~^~430~^70.0^1^^~1~^~A~^~16117~^^^^^^^^^~04/01/2007~ -~16116~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~16116~^~291~^9.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16116~^~317~^7.5^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16116~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~430~^71.0^0^^~4~^~BFSN~^~16115~^^^^^^^^^~04/01/2003~ -~16117~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16117~^~291~^17.5^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~317~^1.7^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2008~ -~16117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16117~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/2006~ -~16117~^~421~^11.3^0^^~4~^~BFFN~^~16115~^^^^^^^^^~01/01/2008~ -~16117~^~430~^4.1^0^^~4~^~BFFN~^~16115~^^^^^^^^^~04/01/2003~ -~16118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16118~^~291~^16.0^2^^~1~^~A~^^^1^15.4^16.7^1^^^^~01/01/2008~ -~16118~^~317~^58.9^2^^~1~^~A~^^^1^50.3^67.5^1^^^^~01/01/2008~ -~16118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16118~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16118~^~421~^191.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2008~ -~16118~^~430~^3.9^0^^~4~^~BFNN~^~16117~^^^^^^^^^~01/01/2008~ -~16118~^~454~^2.8^2^^~1~^~A~^^^1^1.7^4.0^1^^^^~01/01/2008~ -~16119~^~317~^3.3^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~16119~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16119~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16120~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16120~^~291~^0.6^7^0.1^~12~^~MA~^^^1^0.4^0.8^2^-3.6e-02^1.1^~1, 4~^~08/01/2007~ -~16120~^~317~^4.8^4^^~1~^~A~^^^1^4.8^4.8^0^^^~4~^~08/01/2007~ -~16120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16120~^~401~^0.0^7^0.0^~12~^~MA~^^^1^0.0^0.0^2^0.0^0.0^~4~^~08/01/2007~ -~16120~^~421~^23.6^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~16120~^~430~^3.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16120~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~16121~^~291~^5.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~16121~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16121~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16122~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16122~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16122~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16122~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~421~^190.9^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16122~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~291~^0.8^2^^~1~^^^^2^0.8^0.8^^^^^~12/01/2003~ -~16123~^~317~^0.5^3^^~11~^~JO~^^^4^0.0^0.8^^^^~2, 3~^~12/01/2003~ -~16123~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16123~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16123~^~421~^18.3^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~16123~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~454~^29.8^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~16124~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~16124~^~291~^0.8^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16124~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16124~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~421~^38.4^0^^~4~^~BFSN~^~16123~^^^^^^^^^~04/01/2007~ -~16124~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16125~^~291~^0.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~317~^0.8^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16125~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~421~^27.5^0^^~4~^~BFSN~^~16123~^^^^^^^^^~04/01/2007~ -~16125~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16126~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16126~^~291~^0.9^5^2.0e-02^~6~^~JA~^^^3^0.4^2.3^1^0.6^1.1^~2, 3~^~05/01/2004~ -~16126~^~317~^9.9^6^2.0^~11~^~JO~^^^2^4.0^15.0^4^4.1^15.6^~2, 3~^~12/01/2003~ -~16126~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16126~^~401~^0.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16126~^~421~^28.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16126~^~430~^2.4^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2006~ -~16126~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16127~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2006~ -~16127~^~291~^0.2^5^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~317~^8.9^5^2.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~16127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16127~^~401~^0.2^2^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~421~^27.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16127~^~430~^2.0^0^^~4~^~T~^^^^^^^^^^~05/01/2003~ -~16127~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16128~^~291~^7.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16128~^~317~^54.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16128~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2003~ -~16129~^~291~^3.9^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16129~^~317~^28.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16129~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16129~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~421~^106.3^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~16129~^~430~^7.8^0^^~4~^~BFSN~^~16127~^^^^^^^^^~05/01/2003~ -~16130~^~317~^10.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16130~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~317~^17.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16132~^~401~^0.2^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16133~^~291~^11.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16133~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16133~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16133~^~401~^1.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~291~^3.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16134~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16134~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16135~^~291~^25.9^0^^~4~^~BFSN~^~16027~^^^^^^^^^~11/01/2011~ -~16135~^~317~^8.2^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16135~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16136~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16137~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~291~^4.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~317~^2.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16137~^~401~^7.9^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~421~^27.8^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~430~^3.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16138~^~317~^1.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~16138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16138~^~401~^1.6^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16139~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~16139~^~291~^0.2^13^0.3^~12~^~MA~^^^1^0.0^1.2^4^-0.8^1.3^~4~^~08/01/2007~ -~16139~^~317~^2.3^2^^~12~^~MA~^^^1^2.3^2.3^0^^^^~08/01/2007~ -~16139~^~325~^1.1^15^0.1^~12~^~MA~^^^1^0.8^1.4^5^0.6^1.5^~4~^~05/01/2009~ -~16139~^~328~^1.1^15^0.1^~12~^~MA~^^^1^0.8^1.4^5^0.6^1.5^~4~^~05/01/2009~ -~16139~^~401~^0.0^15^0.3^~12~^~MA~^^^1^0.0^0.9^5^-0.7^0.7^~4~^~08/01/2007~ -~16139~^~421~^23.6^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~16139~^~430~^3.0^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16144~^~291~^10.8^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~317~^0.0^12^6.0e-03^~1~^~A~^^^2^0.0^0.1^9^2.8e-02^5.7e-02^~2, 3~^~04/01/2014~ -~16144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16144~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16145~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~291~^5.5^3^0.5^~1~^^^^2^4.7^6.4^1^-1.6^12.7^~2, 3~^~04/01/2011~ -~16145~^~317~^1.6^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16145~^~401~^0.2^4^1.7e-02^~1~^~A~^^^1^0.2^0.3^3^0.1^0.2^~1, 2, 3~^~04/01/2011~ -~16146~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~291~^5.5^3^7.9e-02^~1~^^^^2^3.5^6.7^1^4.5^6.5^~2, 3~^~04/01/2011~ -~16146~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~401~^0.1^4^0.0^~1~^~A~^^^1^0.1^0.1^^^^~1, 2, 3~^~04/01/2011~ -~16147~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16147~^~291~^4.9^4^0.9^~1~^~A~^^^1^2.5^6.8^3^1.8^7.8^~2, 3~^~02/01/2005~ -~16147~^~317~^22.6^4^7.3^~1~^~A~^^^1^8.2^42.5^3^-0.8^46.0^~2, 3~^~02/01/2005~ -~16147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16147~^~401~^4.5^4^1.5^~1~^~A~^^^1^0.0^6.5^3^-0.3^9.3^~1, 2, 3~^~02/01/2005~ -~16147~^~421~^19.4^4^0.6^~1~^~AS~^^^1^18.3^20.4^3^17.4^21.3^~2, 3~^~11/01/2006~ -~16147~^~429~^0.9^4^0.8^~1~^~A~^^^1^0.0^3.4^3^-1.8^3.5^~1, 2, 3~^~02/01/2005~ -~16147~^~430~^4.2^4^1.3^~1~^~A~^^^1^1.7^7.8^3^4.8e-02^8.4^~2, 3~^~02/01/2005~ -~16147~^~454~^6.1^4^0.2^~1~^~A~^^^1^5.8^6.5^3^5.4^6.8^~2, 3~^~11/01/2006~ -~16149~^~221~^0.0^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~291~^7.8^2^^~9~^~MC~^^^1^7.8^7.8^1^^^^~05/01/2006~ -~16149~^~317~^9.1^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16149~^~401~^0.0^2^^~9~^~MC~^^^1^0.0^0.0^^^^^~05/01/2006~ -~16149~^~421~^67.4^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~ -~16149~^~430~^0.6^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16150~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16150~^~291~^5.2^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16150~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16150~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~421~^63.4^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16150~^~430~^0.6^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16155~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16155~^~291~^5.6^0^^~9~^~MC~^^^^^^^^^^~02/01/2004~ -~16155~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16155~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~421~^63.3^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2006~ -~16155~^~430~^0.6^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2006~ -~16155~^~454~^0.8^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2006~ -~16156~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16156~^~291~^5.7^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16156~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16156~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~421~^61.1^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~ -~16156~^~430~^0.5^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~ -~16156~^~454~^1.0^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~ -~16157~^~221~^0.0^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~291~^10.8^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~317~^8.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16157~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16157~^~430~^9.1^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16158~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16158~^~291~^5.5^6^9.6e-02^~1~^~A~^^^1^4.9^5.7^2^5.0^5.9^~2, 3~^~12/01/2016~ -~16158~^~317~^4.7^2^^~1~^~A~^^^1^2.2^32.3^^^^~1~^~12/01/2016~ -~16158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16158~^~401~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.1^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2016~ -~16158~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2016~ -~16158~^~430~^22.8^2^^~1~^~A~^^^1^11.2^23.3^^^^^~12/01/2016~ -~16159~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~291~^1.0^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16159~^~317~^13.0^2^^~1~^~A~^^^1^12.9^13.0^1^^^^~07/01/2015~ -~16159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16159~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~421~^33.0^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16159~^~430~^2.8^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16160~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~317~^16.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16160~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16160~^~401~^0.3^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16161~^~291~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~291~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~291~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16166~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~16166~^~291~^0.4^9^0.3^~12~^~MA~^^^1^0.0^1.2^5^-0.4^1.2^~1, 4~^~08/01/2007~ -~16166~^~317~^4.8^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16166~^~401~^1.7^9^0.7^~12~^~MA~^^^1^0.0^2.2^5^-0.1^3.5^~4~^~08/01/2007~ -~16166~^~421~^23.6^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~430~^3.0^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16167~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~16167~^~291~^5.7^5^0.1^~1~^~A~^^^1^5.3^6.1^4^5.2^6.1^~2, 3~^~02/01/2004~ -~16167~^~313~^3.1^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2006~ -~16167~^~317~^40.4^4^4.6^~1~^~A~^^^1^29.3^50.5^3^25.7^55.1^~2, 3~^~02/01/2004~ -~16167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16167~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~421~^65.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16167~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2004~ -~16167~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2004~ -~16167~^~454~^0.4^2^^~1~^~A~^^^1^0.4^0.5^1^^^^~11/01/2006~ -~16168~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~16168~^~291~^0.4^9^0.3^~12~^~MA~^^^1^0.0^1.2^5^-0.4^1.2^~1, 4~^~08/01/2007~ -~16168~^~317~^4.8^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~325~^1.0^9^0.2^~12~^~MA~^^^1^0.4^1.4^5^0.2^1.7^~4~^~05/01/2009~ -~16168~^~328~^1.0^9^0.2^~1~^~AS~^^^1^0.4^1.4^5^0.2^1.7^~4~^~06/01/2009~ -~16168~^~401~^1.7^9^0.7^~12~^~MA~^^^1^0.0^2.2^5^-0.1^3.5^~4~^~08/01/2007~ -~16168~^~421~^23.6^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~430~^3.0^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16171~^~291~^4.7^2^^~1~^~A~^^^1^4.6^4.8^1^^^^~03/01/2008~ -~16171~^~317~^5.6^2^^~1~^~A~^^^1^2.2^9.0^1^^^~1~^~03/01/2008~ -~16172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~291~^4.7^2^^~1~^~A~^^^1^4.6^4.9^1^^^^~03/01/2008~ -~16172~^~317~^5.7^2^^~1~^~A~^^^1^4.0^7.3^1^^^^~03/01/2008~ -~16172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~401~^0.9^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~421~^20.3^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16172~^~430~^2.0^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~ -~16173~^~291~^4.7^2^^~1~^~A~^^^1^4.4^4.9^1^^^^~06/01/2008~ -~16173~^~317~^3.5^2^^~1~^~A~^^^1^3.3^3.7^1^^^^~06/01/2008~ -~16174~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16210~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~328~^3.9^1^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~16211~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~291~^1.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~291~^0.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~291~^0.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~328~^0.9^1^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~16216~^~291~^0.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~291~^0.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~328~^0.8^1^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~16222~^~291~^0.5^5^0.4^~12~^~MA~^^^1^0.0^1.2^3^-1.0^2.0^~4~^~08/01/2007~ -~16222~^~325~^1.2^6^8.2e-02^~12~^~MA~^^^1^1.0^1.2^4^0.9^1.4^~4~^~05/01/2009~ -~16222~^~328~^1.2^6^8.2e-02^~12~^~MA~^^^1^1.0^1.2^4^0.9^1.4^~4~^~02/01/2009~ -~16222~^~401~^0.0^6^0.0^~12~^~MA~^^^1^0.0^0.0^4^0.0^0.0^~4~^~08/01/2007~ -~16223~^~291~^0.4^4^0.1^~12~^~MA~^^^1^0.4^0.8^3^-0.1^0.9^~1, 4~^~06/01/2007~ -~16223~^~317~^2.3^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16223~^~325~^1.2^4^0.3^~12~^~MA~^^^1^0.4^1.2^3^0.2^2.1^~4~^~05/01/2009~ -~16223~^~328~^1.2^4^0.3^~12~^~MA~^^^1^0.4^1.2^3^0.2^2.1^~4~^~02/01/2009~ -~16223~^~401~^7.2^4^3.6^~12~^~MA~^^^1^0.0^8.6^3^-4.3^18.7^~4~^~06/01/2007~ -~16225~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16225~^~291~^0.3^6^0.1^~12~^~MA~^^^1^0.0^0.4^3^-0.2^0.9^~1, 4~^~06/01/2007~ -~16225~^~317~^2.3^2^^~12~^~MA~^^^1^2.3^2.3^0^^^^~06/01/2007~ -~16225~^~325~^1.2^6^0.1^~12~^~MA~^^^1^0.8^1.2^3^0.7^1.5^~4~^~05/01/2009~ -~16225~^~328~^1.2^6^0.1^~12~^~MA~^^^1^0.8^1.2^3^0.7^1.5^~4~^~02/01/2009~ -~16225~^~401~^0.0^6^0.0^~12~^~MA~^^^1^0.0^0.0^3^0.0^0.0^~4~^~10/01/2008~ -~16225~^~421~^12.3^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~430~^1.6^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16227~^~291~^0.7^4^0.2^~12~^~MA~^^^1^0.0^0.8^3^-0.1^1.5^~1, 4~^~06/01/2007~ -~16227~^~317~^1.7^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16227~^~325~^1.2^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~16227~^~328~^1.2^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~16227~^~401~^0.0^4^0.0^~12~^~MA~^^^1^0.0^0.0^3^0.0^0.0^~4~^~10/01/2008~ -~16227~^~421~^28.4^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~430~^3.6^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16228~^~291~^0.6^2^^~12~^~MA~^^^1^0.0^1.6^1^^^^~06/01/2007~ -~16228~^~325~^1.0^2^^~12~^~MA~^^^1^1.0^1.0^1^^^^~05/01/2009~ -~16228~^~328~^1.0^2^^~12~^~MA~^^^1^1.0^1.0^1^^^^~02/01/2009~ -~16228~^~401~^0.0^2^^~12~^~MA~^^^1^0.0^0.0^1^^^^~06/01/2007~ -~16229~^~291~^0.8^2^^~12~^~MA~^^^1^0.8^0.8^^^^^~06/01/2007~ -~16229~^~325~^1.0^2^^~12~^~MA~^^^1^1.0^1.0^^^^^~05/01/2009~ -~16229~^~328~^1.0^2^^~1~^~AS~^^^1^1.0^1.0^^^^^~05/01/2009~ -~16229~^~401~^0.0^2^^~12~^~MA~^^^1^0.0^0.0^^^^^~05/01/2009~ -~16230~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16230~^~291~^0.2^4^0.0^~12~^~MA~^^^1^0.0^0.4^^^^~1, 2, 3~^~08/01/2007~ -~16230~^~317~^1.8^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~325~^1.0^4^0.0^~12~^~MA~^^^1^1.0^1.0^^^^~2, 3~^~05/01/2009~ -~16230~^~328~^1.0^4^0.0^~12~^~MA~^^^1^1.0^1.0^^^^~2, 3~^~02/01/2009~ -~16230~^~401~^0.0^4^0.0^~12~^~MA~^^^1^0.0^0.0^^^^~2, 3~^~08/01/2007~ -~16230~^~421~^17.9^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~430~^2.3^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16231~^~221~^0.0^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~291~^0.2^4^0.0^~12~^~MA~^^^1^0.0^0.4^^^^~1, 2, 3~^~04/01/2009~ -~16231~^~317~^1.7^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~325~^1.0^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~16231~^~328~^1.0^0^^~4~^~NR~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~401~^0.0^4^0.0^~12~^~MA~^^^1^0.0^0.0^^^^~2, 3~^~04/01/2009~ -~16231~^~421~^28.4^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~430~^3.6^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16235~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16235~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16236~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16237~^~291~^0.8^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~317~^1.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16237~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16238~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16238~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16239~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~291~^0.8^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~317~^1.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16240~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16241~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16242~^~291~^0.8^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16242~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16243~^~291~^2.1^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16243~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16244~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~317~^2.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~328~^1.2^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16245~^~401~^8.6^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~317~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~16246~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16247~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~317~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~328~^0.8^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16247~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~317~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~317~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16250~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~328~^1.3^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16250~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~291~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~328~^1.3^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~16252~^~401~^13.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~291~^0.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~401~^17.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~401~^200.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16271~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~328~^3.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~328~^2.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~328~^2.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~291~^1.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~328~^2.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~430~^14.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~291~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~291~^0.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16279~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~291~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~401~^1.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16302~^~291~^7.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1998~ -~16302~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16302~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16302~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~291~^8.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~16315~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16315~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16315~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~421~^32.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~430~^3.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16316~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~291~^6.9^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~16316~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~ -~16316~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~401~^2.7^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~421~^23.2^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~430~^2.3^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16317~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~16317~^~291~^8.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2011~ -~16317~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16317~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16317~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~421~^32.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16317~^~430~^3.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16320~^~291~^8.6^0^^~4~^~BFSN~^~16043~^^^^^^^^^~08/01/2015~ -~16320~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16320~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16320~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~291~^9.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16323~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16323~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16323~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~291~^7.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16325~^~317~^4.1^3^1.0^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16325~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16325~^~401~^1.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~291~^4.9^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~317~^4.1^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~16326~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~401~^1.3^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~421~^29.5^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~430~^3.0^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16328~^~221~^0.0^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~291~^6.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16328~^~317~^1.2^9^0.2^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16328~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16328~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~430~^3.3^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16331~^~291~^9.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16331~^~317~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16331~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16331~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~291~^7.4^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~16333~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16333~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16333~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~421~^30.5^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~430~^8.4^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16335~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~291~^6.0^0^^~4~^~BFSN~^~16034~^^^^^^^^^~06/01/2015~ -~16335~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16335~^~401~^0.2^4^1.6e-02^~1~^~A~^^^1^0.1^0.2^3^0.1^0.2^~1, 2, 3~^~04/01/2011~ -~16335~^~421~^43.1^0^^~4~^~BFSN~^~16034~^^^^^^^^^~06/01/2015~ -~16335~^~430~^5.7^0^^~4~^~BFSN~^~16034~^^^^^^^^^~06/01/2015~ -~16336~^~291~^9.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16336~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16336~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16336~^~401~^1.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~291~^5.3^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~317~^1.1^10^0.2^~1~^~A~^^^2^0.5^1.2^8^0.5^1.6^~1, 2, 3~^~01/01/2013~ -~16337~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~401~^0.8^9^6.0e-03^~6~^~JA~^^^2^0.2^1.2^3^0.7^0.7^~1, 2, 3~^~01/01/2013~ -~16337~^~421~^30.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~16337~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~430~^4.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16338~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16338~^~291~^10.5^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~16338~^~317~^2.9^29^0.6^~6~^~JA~^^^2^0.0^12.0^27^1.5^4.2^~2, 3~^~04/01/2004~ -~16338~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16338~^~401~^0.9^0^^~1~^^^^^^^^^^^~06/01/2014~ -~16338~^~421~^44.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16338~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16341~^~291~^5.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16341~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16341~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16341~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~421~^36.9^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~430~^3.7^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16343~^~291~^9.0^5^0.2^~6~^~JA~^^^2^7.7^12.1^3^8.3^9.6^~2, 3~^~04/01/2004~ -~16343~^~317~^6.2^53^0.5^~6~^~JA~^^^11^0.0^13.0^19^4.9^7.4^~2, 3~^~04/01/2004~ -~16343~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16343~^~401~^0.8^2^^~1~^~A~^^^1^0.7^0.8^1^^^^~04/01/2004~ -~16343~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~04/01/2004~ -~16343~^~430~^3.5^5^0.4^~11~^~JO~^^^2^2.8^5.0^3^2.2^4.8^~2, 3~^~04/01/2004~ -~16345~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16345~^~401~^0.1^4^0.0^~1~^~A~^^^1^0.1^0.1^^^^~1, 2, 3~^~04/01/2011~ -~16346~^~291~^10.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16346~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16346~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16346~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16347~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~291~^4.6^23^0.1^~1~^^^^3^3.2^5.8^16^4.2^4.8^~2, 3~^~01/01/2013~ -~16347~^~317~^3.7^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~401~^0.7^27^1.5e-02^~6~^~JA~^^^4^0.1^1.0^7^0.6^0.7^~1, 2, 3~^~01/01/2013~ -~16347~^~421~^20.8^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~430~^2.1^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16348~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~291~^10.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16348~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16348~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16348~^~401~^1.8^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~421~^35.2^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~430~^3.5^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16350~^~291~^6.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16350~^~317~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16350~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16350~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~421~^35.1^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~430~^3.5^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16353~^~291~^5.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16353~^~317~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16353~^~401~^0.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~421~^30.6^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16353~^~430~^2.9^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16357~^~291~^7.6^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~16357~^~317~^3.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16357~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16357~^~401~^1.3^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~421~^42.8^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16357~^~430~^4.0^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16358~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~291~^6.4^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16358~^~317~^3.1^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16358~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16358~^~401~^0.1^4^5.7e-02^~1~^~A~^^^1^0.1^0.3^3^-6.2e-02^0.3^~1, 2, 3~^~05/01/2011~ -~16358~^~430~^3.4^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~291~^6.3^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~317~^3.1^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~401~^0.1^4^5.4e-02^~1~^~A~^^^1^0.1^0.3^3^-5.4e-02^0.2^~1, 2, 3~^~05/01/2011~ -~16359~^~430~^3.4^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16360~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~291~^4.4^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~317~^2.0^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~401~^0.1^4^7.6e-02^~1~^~A~^^^1^0.1^0.4^3^-0.1^0.3^~1, 2, 3~^~01/01/2013~ -~16360~^~421~^23.1^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2013~ -~16360~^~430~^2.2^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16361~^~291~^3.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16361~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16361~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16361~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~291~^6.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16363~^~313~^3.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~16363~^~317~^2.5^15^0.6^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16363~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16363~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~421~^32.2^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16363~^~430~^1.7^0^^~4~^~BFZN~^~16063~^^^^^^^^^~05/01/2003~ -~16368~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16368~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16368~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~291~^7.9^0^^~4~^^^^^^^^^^^~02/01/1995~ -~16370~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16370~^~401~^1.5^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~421~^32.7^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16370~^~430~^1.7^0^^~4~^~BFZN~^~16070~^^^^^^^^^~05/01/2003~ -~16372~^~291~^7.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16372~^~317~^4.5^12^1.7^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16372~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16372~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~421~^32.5^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16372~^~430~^2.0^0^^~4~^~BFZN~^~16072~^^^^^^^^^~05/01/2003~ -~16375~^~291~^7.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16375~^~317~^4.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16375~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16375~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~291~^2.8^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16377~^~317~^2.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16377~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16377~^~401~^1.1^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16379~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16379~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16379~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~291~^7.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16381~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16381~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16381~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~421~^29.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16381~^~430~^2.7^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16384~^~291~^6.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16384~^~317~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16384~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16384~^~401~^1.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~421~^29.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16384~^~430~^2.7^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16386~^~291~^8.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16386~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16386~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16386~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~421~^32.8^0^^~4~^~CASN~^^^^^^^^^^~04/01/2007~ -~16386~^~430~^5.0^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16389~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1988~ -~16389~^~291~^9.4^4^9.6e-02^~1~^~A~^^^1^9.2^9.6^3^9.0^9.6^~2, 3~^~10/01/2011~ -~16389~^~317~^3.3^4^0.1^~1~^~A~^^^1^3.1^3.5^3^2.9^3.6^~2, 3~^~10/01/2011~ -~16389~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16389~^~401~^0.8^3^0.0^~1~^~A~^^^1^0.8^0.8^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~421~^55.0^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2007~ -~16389~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2011~ -~16390~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1986~ -~16390~^~291~^8.4^8^0.8^~1~^~A~^^^1^6.4^11.5^2^5.0^11.8^~2, 3~^~04/01/2014~ -~16390~^~317~^9.3^6^2.8^~1~^~A~^^^1^2.2^20.5^2^-2.5^21.1^~1, 2, 3~^~04/01/2014~ -~16390~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16390~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~421~^64.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~16390~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16390~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16390~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~16390~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16392~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16392~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16392~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16392~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16394~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16394~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16394~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~291~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16396~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~16396~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16396~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16397~^~291~^8.0^8^0.6^~6~^~JA~^^^2^4.9^13.3^3^5.9^9.9^~2, 3~^~03/01/2004~ -~16397~^~313~^3.1^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16397~^~317~^8.2^30^0.6^~1~^~A~^^^2^7.3^25.2^4^6.4^10.0^~2, 3~^~03/01/2006~ -~16397~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16397~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~421~^61.3^3^2.1^~1~^~AS~^^^1^59.1^65.5^2^52.1^70.3^~2, 3~^~03/01/2006~ -~16397~^~429~^0.5^2^^~1~^~A~^^^1^0.4^0.5^1^^^^~03/01/2004~ -~16397~^~430~^0.5^2^^~1~^~A~^^^1^0.4^0.7^1^^^^~03/01/2004~ -~16397~^~454~^1.0^3^0.3^~1~^~A~^^^1^0.6^1.8^2^-0.5^2.6^~2, 3~^~03/01/2006~ -~16398~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~16398~^~291~^5.0^9^0.2^~1~^~A~^^^1^3.6^6.1^4^4.2^5.6^~2, 3~^~08/01/2014~ -~16398~^~317~^4.1^9^0.1^~1~^~A~^^^1^3.6^4.9^4^3.5^4.6^~2, 3~^~08/01/2014~ -~16398~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16398~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16398~^~421~^63.0^5^1.5^~1~^~AS~^^^1^59.1^65.9^4^58.6^67.4^~2, 3~^~11/01/2006~ -~16398~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~454~^0.8^5^0.2^~1~^~A~^^^1^0.4^1.8^4^9.7e-02^1.4^~2, 3~^~08/01/2014~ -~16399~^~291~^6.1^4^9.5e-02^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~421~^94.5^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~16399~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~16402~^~291~^6.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16402~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16402~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16403~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~291~^3.7^9^0.1^~1~^~A~^^^1^2.6^5.7^5^3.4^4.0^~2, 3~^~08/01/2014~ -~16403~^~317~^5.8^9^0.2^~1~^~A~^^^1^4.4^8.9^5^5.0^6.4^~2, 3~^~08/01/2014~ -~16403~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~401~^0.8^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~421~^22.7^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16403~^~430~^2.3^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~ -~16409~^~291~^6.0^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~16409~^~317~^7.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16409~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16409~^~401~^1.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~430~^19.2^0^^~4~^~BFZN~^~16109~^^^^^^^^^~05/01/2003~ -~16410~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~16410~^~291~^17.7^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1995~ -~16410~^~317~^19.1^4^13.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~16410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16410~^~401~^2.2^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~291~^5.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16420~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16420~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16420~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16422~^~221~^0.0^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~291~^0.0^0^^~4~^~BFSN~^~16122~^^^^^^^^^~07/01/2015~ -~16422~^~317~^0.8^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~16422~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16422~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~421~^190.9^0^^~4~^~BFSN~^~16122~^^^^^^^^^~07/01/2015~ -~16422~^~430~^0.0^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16424~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16424~^~291~^0.7^3^3.5e-02^~1~^~A~^^^1^0.6^0.7^2^0.5^0.8^~2, 3~^~04/01/2013~ -~16424~^~317~^0.5^0^^~4~^~BFSN~^~16123~^^^^^^^^^~04/01/2013~ -~16424~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16424~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16424~^~421~^30.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~16424~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~16424~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~16424~^~454~^38.6^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16425~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~291~^0.3^3^^~1~^~A~^^^1^0.3^0.3^^^^~1, 2~^~04/01/2013~ -~16425~^~317~^0.9^0^^~4~^~BFSN~^~16125~^^^^^^^^^~07/01/2015~ -~16425~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~421~^31.6^0^^~4~^~BFSN~^~16125~^^^^^^^^^~07/01/2015~ -~16425~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~16425~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~16425~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16426~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16426~^~317~^17.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16426~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16426~^~401~^0.2^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~291~^0.3^0^^~1~^^^^^^^^^^^~11/01/1994~ -~16427~^~317~^8.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16427~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16427~^~401~^0.1^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~421~^28.8^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16427~^~430~^2.4^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16428~^~291~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16428~^~317~^54.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16428~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16428~^~401~^0.7^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~291~^3.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~16429~^~317~^28.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16429~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16429~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~317~^17.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16432~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16432~^~401~^0.2^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16434~^~291~^3.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~16434~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16434~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16434~^~401~^0.4^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~16436~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~16436~^~401~^0.0^0^^~1~^^^^^^^^^^^~12/01/1986~ -~17000~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~17001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17001~^~317~^19.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17001~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17002~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17002~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17002~^~317~^26.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17002~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17002~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17002~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17002~^~421~^93.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17002~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~430~^4.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~17002~^~454~^12.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17003~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17003~^~317~^23.4^15^2.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17003~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17004~^~317~^26.1^5^2.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17004~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17005~^~317~^8.8^12^1.1^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17005~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17006~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17006~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17006~^~317~^18.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17006~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17006~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17006~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17006~^~421~^54.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17006~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~430~^4.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~17006~^~454~^7.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17007~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17007~^~317~^19.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17007~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17008~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17008~^~317~^30.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17008~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17008~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17008~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17008~^~421~^110.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17008~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~430~^4.3^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17008~^~454~^14.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17009~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17009~^~317~^24.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17009~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17010~^~317~^35.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17010~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17011~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17011~^~317~^20.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~17011~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17012~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17012~^~317~^27.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17012~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17012~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17012~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17012~^~421~^96.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17012~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~430~^4.2^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17012~^~454~^12.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17013~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17013~^~317~^23.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17013~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17014~^~317~^30.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17014~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17014~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17014~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17014~^~421~^104.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17014~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~430~^3.6^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17014~^~454~^13.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17015~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17015~^~317~^21.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17015~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17016~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17016~^~317~^29.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17016~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17017~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17017~^~317~^23.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17017~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17018~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17018~^~317~^31.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17018~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17019~^~317~^19.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17019~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17020~^~317~^25.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17020~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17021~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17021~^~317~^23.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17021~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17022~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17022~^~317~^30.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17022~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17023~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17023~^~317~^18.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17023~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17024~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17024~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17024~^~317~^27.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17024~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17024~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17024~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17024~^~421~^93.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17024~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~430~^4.8^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17024~^~454~^12.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17025~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17025~^~317~^24.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17025~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17025~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17025~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17025~^~421~^88.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17025~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~430~^4.7^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17025~^~454~^11.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17026~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17026~^~317~^23.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17026~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17027~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17027~^~317~^32.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17027~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17027~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17027~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17027~^~421~^108.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17027~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~430~^3.9^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17027~^~454~^14.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17028~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17028~^~317~^30.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17028~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17029~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17029~^~317~^16.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17029~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17030~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17030~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17030~^~317~^23.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17030~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17030~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17030~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17030~^~421~^86.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17030~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~430~^5.3^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17030~^~454~^11.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17031~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17031~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17031~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17032~^~317~^22.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17032~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17033~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17033~^~317~^31.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17033~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17033~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17033~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17033~^~421~^104.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17033~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~430~^4.1^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17033~^~454~^13.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17034~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17034~^~317~^26.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17034~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17035~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17035~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17035~^~317~^19.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17035~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17035~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17035~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17035~^~421~^69.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17035~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~430~^3.4^0^^~4~^~BFYN~^~17002~^^^^^^^^^~12/01/2002~ -~17035~^~454~^10.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17036~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17036~^~317~^33.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17036~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17037~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17037~^~317~^27.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17037~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17038~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17038~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17038~^~317~^26.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17038~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17038~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17038~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17038~^~421~^87.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17038~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~430~^4.6^0^^~4~^~BFYN~^~17035~^^^^^^^^^~12/01/2002~ -~17038~^~454~^11.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17039~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17039~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17039~^~317~^22.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17039~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17039~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17039~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17039~^~421~^82.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17039~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~430~^3.4^0^^~4~^~BFYN~^~17002~^^^^^^^^^~12/01/2002~ -~17039~^~454~^12.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17040~^~317~^37.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17040~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17041~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17041~^~317~^31.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17041~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17041~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17041~^~421~^104.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17041~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~430~^5.7^0^^~4~^~BFYN~^~17039~^^^^^^^^^~12/01/2002~ -~17041~^~454~^13.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17042~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17042~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17042~^~317~^28.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17042~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17042~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17042~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17042~^~421~^95.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17042~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~430~^4.5^0^^~4~^~BFYN~^~17039~^^^^^^^^^~12/01/2002~ -~17042~^~454~^12.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17043~^~317~^19.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17043~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17044~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17044~^~317~^37.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17044~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17045~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17045~^~317~^27.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17045~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17046~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17046~^~317~^25.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17046~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17047~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17047~^~317~^22.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17047~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17048~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17048~^~317~^37.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17048~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17049~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17049~^~317~^31.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17049~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17050~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17050~^~317~^29.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17050~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17051~^~317~^19.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17051~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17052~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17052~^~317~^33.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17052~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17053~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17053~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17053~^~317~^27.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17053~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17053~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17053~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17053~^~421~^89.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17053~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~430~^4.4^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17053~^~454~^11.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17054~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17054~^~317~^25.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17054~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17055~^~317~^22.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17055~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17056~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17056~^~317~^36.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17056~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17057~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17057~^~317~^30.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17057~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17058~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17058~^~317~^28.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17058~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17059~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17059~^~317~^22.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17059~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17060~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17060~^~317~^38.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17060~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17060~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17060~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17060~^~421~^129.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17060~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~430~^4.4^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17060~^~454~^17.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17061~^~317~^31.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17061~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17062~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17062~^~317~^1.3^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17062~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17063~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17063~^~317~^2.0^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17063~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17064~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17064~^~317~^1.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17064~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17065~^~317~^2.0^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17066~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17066~^~317~^0.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17066~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17067~^~317~^1.8^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17067~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17068~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~317~^6.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~317~^9.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17070~^~317~^7.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17071~^~317~^9.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17072~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~317~^3.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17073~^~317~^4.0^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17073~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17074~^~317~^3.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17075~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17075~^~317~^4.2^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17075~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17076~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~317~^4.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17077~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17077~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17077~^~317~^2.0^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17077~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17077~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17077~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17077~^~421~^95.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17077~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~430~^4.9^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17077~^~454~^12.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17078~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17078~^~317~^5.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17079~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17079~^~317~^2.0^0^^~4~^~T~^^^^^^^^^^~04/01/1998~ -~17079~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17080~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~317~^3.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17081~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~317~^4.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~421~^81.7^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~430~^3.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~454~^10.7^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17082~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17082~^~317~^3.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~17083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17083~^~317~^4.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17083~^~421~^94.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17083~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~430~^3.5^0^^~4~^~BFSN~^~17002~^^^^^^^^^~12/01/2002~ -~17083~^~454~^12.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17084~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~317~^4.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17085~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17085~^~317~^4.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17085~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17086~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17086~^~317~^5.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17087~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17087~^~317~^5.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17087~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17088~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~17088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17088~^~317~^8.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17088~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17089~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17089~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17089~^~317~^12.3^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17089~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17089~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17089~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17089~^~421~^116.6^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17089~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~430~^6.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~17089~^~454~^15.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17090~^~317~^8.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17090~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17091~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/1994~ -~17091~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17091~^~317~^13.0^5^1.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17091~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17091~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17091~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17091~^~421~^123.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17091~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~430~^6.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~17091~^~454~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17092~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17092~^~317~^5.5^2^^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17092~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17093~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17093~^~317~^5.5^2^^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17093~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17094~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17094~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17094~^~317~^9.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17094~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17094~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17094~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17094~^~421~^89.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17094~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~430~^3.9^0^^~4~^~BFSN~^~17089~^^^^^^^^^~12/01/2002~ -~17094~^~454~^13.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17095~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17095~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17095~^~317~^15.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17095~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17095~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17095~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17095~^~421~^141.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17095~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~430~^7.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17095~^~454~^18.6^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17096~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17096~^~291~^0.3^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17096~^~313~^21.0^11^15.0^~1~^~A~^^^2^6.0^36.1^1^-170.1^212.2^~4~^~02/01/2006~ -~17096~^~317~^16.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17096~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17096~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~17096~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17096~^~421~^113.2^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~17096~^~429~^0.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~17096~^~430~^5.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~17097~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17097~^~317~^13.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17097~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17097~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17097~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17097~^~421~^123.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17097~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~430~^5.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17097~^~454~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17098~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17098~^~317~^11.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17098~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17098~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17098~^~421~^108.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17098~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~430~^5.5^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17098~^~454~^14.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17099~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17099~^~317~^9.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17099~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17100~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17100~^~317~^15.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17100~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17101~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1994~ -~17101~^~291~^0.2^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17101~^~317~^13.5^28^0.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17101~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17101~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~17101~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17101~^~421~^117.9^0^^~4~^~PIE~^^^^^^^^^^~02/01/2007~ -~17101~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17101~^~430~^5.1^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~17102~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17102~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17102~^~317~^10.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17102~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17102~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17102~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17102~^~421~^128.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17102~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~430~^5.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17102~^~454~^16.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17103~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17103~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/1989~ -~17103~^~317~^11.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17103~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17104~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~317~^16.2^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~326~^1.7^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~328~^1.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~17104~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~421~^98.9^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17104~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~454~^21.4^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17105~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17105~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17105~^~317~^13.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17105~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17105~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17105~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17105~^~421~^113.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17105~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~430~^7.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17105~^~454~^15.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17106~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17106~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17106~^~317~^11.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17106~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17106~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17106~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17106~^~421~^99.7^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17106~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~430~^5.5^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17106~^~454~^13.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17107~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17107~^~317~^18.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~326~^1.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17107~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17107~^~421~^110.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17107~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17107~^~454~^23.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17108~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17108~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17108~^~317~^14.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17108~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17108~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17108~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17108~^~421~^125.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17108~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~430~^7.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17108~^~454~^16.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17109~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17109~^~317~^11.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17109~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17109~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17109~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17109~^~421~^105.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17109~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~430~^5.5^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17109~^~454~^13.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17110~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17110~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17110~^~317~^8.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17110~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17111~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17111~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17111~^~317~^13.9^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17111~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17111~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17111~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17111~^~421~^126.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17111~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~430~^7.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17111~^~454~^16.6^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17112~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17112~^~317~^10.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17112~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17113~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17113~^~317~^8.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17113~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17114~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17114~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17114~^~317~^14.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17114~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17114~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17114~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17114~^~421~^133.6^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17114~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~430~^7.0^0^^~4~^~BFYN~^~17094~^^^^^^^^^~12/01/2002~ -~17114~^~454~^17.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17115~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17115~^~317~^11.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17115~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17116~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17116~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17116~^~317~^8.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17116~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17116~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17116~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17116~^~421~^80.7^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17116~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~430~^4.6^0^^~4~^~BFYN~^~17089~^^^^^^^^^~12/01/2002~ -~17116~^~454~^11.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17117~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17117~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17117~^~317~^14.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17117~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17117~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17117~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17117~^~421~^123.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17117~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~430~^5.9^0^^~4~^~BFYN~^~17116~^^^^^^^^^~12/01/2002~ -~17117~^~454~^16.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17118~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17118~^~317~^10.7^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17118~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17119~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17119~^~317~^8.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17119~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17120~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17120~^~317~^14.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17120~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17121~^~317~^10.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17121~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17122~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1995~ -~17122~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17122~^~317~^8.4^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17122~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17122~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17122~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17122~^~421~^83.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17122~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~430~^4.6^0^^~4~^~BFYN~^~17089~^^^^^^^^^~12/01/2002~ -~17122~^~454~^12.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17123~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17123~^~317~^14.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17123~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17124~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17124~^~317~^11.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17124~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17125~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17125~^~317~^8.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17125~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17126~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17126~^~317~^15.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17126~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17127~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17127~^~317~^11.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17127~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17128~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~317~^14.9^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~326~^1.5^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~328~^1.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~17128~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~421~^92.7^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~430~^1.2^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~454~^19.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17129~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17129~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17129~^~317~^14.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17129~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17129~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17129~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17129~^~421~^121.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17129~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~430~^6.6^0^^~4~^~BFSN~^~17089~^^^^^^^^^~12/01/2002~ -~17129~^~454~^16.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17130~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17130~^~317~^10.6^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17130~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17131~^~317~^15.8^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~326~^1.2^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17131~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17131~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17131~^~421~^99.1^0^^~4~^~BFPN~^~17107~^^^^^^^^^~04/01/2014~ -~17131~^~430~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17131~^~454~^21.0^0^^~4~^~BFPN~^~17107~^^^^^^^^^~04/01/2014~ -~17132~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~17132~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17132~^~317~^14.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17132~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17132~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17132~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17132~^~421~^126.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17132~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~430~^6.8^0^^~4~^~BFSN~^~17091~^^^^^^^^^~12/01/2002~ -~17132~^~454~^16.7^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17133~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17133~^~317~^10.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17133~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17134~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1995~ -~17134~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17134~^~317~^8.5^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17134~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17134~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17134~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17134~^~421~^82.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17134~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~430~^4.6^0^^~4~^~BFYN~^~17089~^^^^^^^^^~12/01/2002~ -~17134~^~454~^12.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17135~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17135~^~317~^14.0^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17135~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17136~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1995~ -~17136~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17136~^~317~^11.1^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17136~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17136~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17136~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17136~^~421~^99.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17136~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~430~^6.6^0^^~4~^~BFYN~^~17134~^^^^^^^^^~12/01/2002~ -~17136~^~454~^13.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17137~^~317~^8.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17137~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17138~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17138~^~317~^15.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17138~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17139~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17139~^~317~^11.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17139~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17140~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17140~^~317~^8.8^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17140~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17141~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17141~^~317~^15.2^0^^~4~^~PIE~^^^^^^^^^^~04/01/1998~ -~17141~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17142~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17142~^~317~^13.1^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~326~^1.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~328~^1.3^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17142~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~17142~^~421~^96.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17142~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17142~^~454~^25.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17143~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17143~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17143~^~317~^13.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17143~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17143~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17143~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^ -~17143~^~421~^95.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17143~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~430~^1.2^0^^~4~^~BFYN~^~23562~^^^^^^^^^~12/01/2002~ -~17143~^~454~^12.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17144~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17144~^~317~^9.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17144~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17145~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17145~^~317~^12.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17145~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17146~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17146~^~317~^8.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17146~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17147~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17147~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17147~^~317~^11.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17147~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17147~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17147~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17147~^~421~^122.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17147~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17147~^~454~^16.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17148~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~317~^31.1^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17148~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17148~^~401~^0.0^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~421~^97.2^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2008~ -~17148~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2008~ -~17148~^~454~^12.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2008~ -~17149~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~317~^20.0^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17149~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17149~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~421~^85.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2008~ -~17149~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2008~ -~17149~^~454~^12.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2008~ -~17150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17150~^~317~^26.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17150~^~401~^2.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17151~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17151~^~317~^43.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17151~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17151~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17151~^~401~^3.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~421~^129.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17151~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17151~^~454~^17.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17152~^~317~^9.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17152~^~401~^7.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17153~^~317~^13.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17153~^~401~^9.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17154~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17155~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~401~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17156~^~317~^27.0^0^^~4~^~BFNN~^^^^^^^^^^~03/01/1999~ -~17156~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17157~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1994~ -~17157~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17157~^~317~^35.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/1999~ -~17157~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17157~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17157~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17157~^~421~^114.8^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17157~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17157~^~454~^15.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17158~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17158~^~317~^9.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17158~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17159~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1994~ -~17159~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17159~^~317~^13.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17159~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17159~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17159~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17159~^~421~^117.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17159~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17159~^~454~^15.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17160~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17160~^~317~^9.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17160~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17161~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17161~^~317~^12.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17161~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17162~^~317~^10.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17162~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17163~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17163~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17163~^~317~^13.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17163~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17163~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17163~^~401~^3.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~421~^122.6^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17163~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17163~^~454~^16.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17164~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17164~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17164~^~317~^9.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17164~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17164~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17165~^~317~^12.9^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17166~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17166~^~317~^9.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17166~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17167~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17167~^~317~^13.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17167~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17168~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17168~^~317~^8.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17168~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17169~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17169~^~317~^11.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17169~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17169~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17169~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17169~^~421~^106.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17169~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17169~^~454~^14.0^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17170~^~317~^10.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17170~^~401~^1.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17171~^~317~^13.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17171~^~401~^2.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17172~^~317~^9.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17172~^~401~^4.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17173~^~317~^12.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17173~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17173~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17173~^~401~^5.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~421~^115.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17173~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17173~^~454~^15.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17174~^~317~^9.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17174~^~401~^5.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17175~^~317~^14.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17175~^~401~^7.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17176~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17176~^~317~^18.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17176~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17176~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17176~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17176~^~421~^116.5^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17176~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17176~^~454~^15.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17177~^~317~^23.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17177~^~401~^0.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17178~^~317~^38.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17178~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17179~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17179~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17179~^~317~^38.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17179~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17179~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17179~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17179~^~421~^121.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17179~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17179~^~454~^15.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17180~^~317~^9.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17181~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17181~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17181~^~317~^15.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17181~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17181~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17181~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17181~^~421~^129.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17181~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17181~^~454~^17.1^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17182~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~17182~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17182~^~317~^18.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17182~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17182~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17182~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17182~^~421~^115.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17182~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17182~^~454~^15.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17183~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17183~^~317~^9.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17183~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17184~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17184~^~317~^15.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17184~^~326~^0.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17184~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17184~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17184~^~421~^122.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17184~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17184~^~454~^16.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17185~^~317~^9.0^3^1.0^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17185~^~401~^16.0^7^2.7^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17186~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17186~^~317~^12.0^3^1.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17186~^~401~^12.0^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17187~^~317~^12.0^4^3.8^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17187~^~401~^23.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17188~^~317~^10.0^4^1.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17188~^~401~^14.0^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17189~^~317~^11.0^4^2.7^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17189~^~401~^13.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17190~^~317~^12.0^4^2.2^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17190~^~401~^15.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17191~^~317~^32.0^3^2.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17191~^~401~^5.0^13^0.6^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17192~^~317~^47.0^3^5.7^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17192~^~401~^7.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17193~^~317~^33.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17193~^~401~^8.0^5^0.3^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17194~^~317~^52.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17194~^~401~^10.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17195~^~317~^126.9^16^5.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17195~^~401~^11.0^14^0.9^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17196~^~317~^218.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17196~^~401~^12.0^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~17197~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17197~^~317~^80.0^3^3.0^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17197~^~401~^5.0^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17198~^~317~^100.0^4^10.2^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17198~^~401~^8.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17199~^~317~^82.4^13^7.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~17199~^~401~^4.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~17200~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17200~^~317~^111.4^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17200~^~401~^4.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~17201~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17201~^~317~^116.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17201~^~401~^13.0^3^5.4^~1~^^^^^^^^^^^~04/01/1989~ -~17202~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17202~^~317~^22.7^2^^~1~^~A~^^^1^12.0^33.4^1^^^^~02/01/2003~ -~17202~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~17202~^~421~^310.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17202~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~17202~^~430~^0.9^2^^~1~^~A~^^^1^0.7^1.1^1^^^^~02/01/2003~ -~17202~^~454~^7.6^2^^~1~^~A~^^^1^6.5^8.8^1^^^^~03/01/2006~ -~17203~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17203~^~317~^19.3^2^^~1~^~A~^^^1^13.4^25.2^1^^^^~02/01/2003~ -~17203~^~401~^1.1^0^^~4~^~BFYN~^~17202~^^^^^^^^^~01/01/2003~ -~17203~^~421~^398.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17203~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~17203~^~430~^1.4^2^^~1~^~A~^^^1^1.1^1.7^1^^^^~02/01/2003~ -~17203~^~454~^9.8^2^^~1~^~A~^^^1^4.6^15.0^1^^^^~03/01/2006~ -~17204~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17204~^~313~^5.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~17204~^~317~^24.9^2^^~1~^~A~^^^1^16.3^33.5^1^^^^~02/01/2003~ -~17204~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~17204~^~421~^411.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17204~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~17204~^~430~^1.6^2^^~1~^~A~^^^1^0.8^2.5^1^^^^~02/01/2003~ -~17204~^~454~^8.1^2^^~1~^~A~^^^1^6.2^10.1^1^^^^~03/01/2006~ -~17205~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17205~^~317~^17.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17205~^~401~^31.0^5^0.6^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17206~^~317~^21.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17206~^~401~^28.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17207~^~317~^17.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17207~^~401~^39.0^5^1.8^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17208~^~317~^19.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17208~^~401~^34.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17209~^~317~^20.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17210~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17210~^~317~^34.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17210~^~401~^18.0^5^0.6^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17211~^~317~^64.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17211~^~401~^20.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17212~^~317~^20.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17212~^~401~^16.0^5^0.3^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17213~^~317~^39.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17213~^~401~^6.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17214~^~317~^32.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17214~^~401~^23.0^12^0.6^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17215~^~317~^49.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17215~^~401~^26.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17216~^~317~^61.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17216~^~401~^41.0^5^0.5^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17217~^~317~^81.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17217~^~401~^40.0^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17218~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17218~^~317~^16.1^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~401~^49.2^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~17219~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17219~^~317~^21.5^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~326~^0.0^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17219~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~17219~^~401~^39.4^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~421~^209.3^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~17219~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~17220~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17220~^~317~^15.0^3^0.9^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17220~^~401~^6.0^6^0.9^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17221~^~317~^28.0^3^2.6^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17221~^~401~^7.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17222~^~317~^7.0^3^0.1^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17222~^~401~^5.0^6^0.4^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17223~^~317~^11.0^3^0.3^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17223~^~401~^6.0^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/2006~ -~17224~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17224~^~317~^18.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17224~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17224~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17224~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1990~ -~17224~^~421~^69.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17224~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~430~^3.6^0^^~4~^~BFSN~^~17035~^^^^^^^^^~01/01/2003~ -~17224~^~454~^10.2^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17225~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/2006~ -~17225~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17225~^~317~^27.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17225~^~326~^0.1^40^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17225~^~328~^0.1^80^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17225~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1992~ -~17225~^~421~^93.4^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17225~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~430~^5.3^0^^~4~^~BFYN~^~17224~^^^^^^^^^~01/01/2003~ -~17225~^~454~^12.3^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17226~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17226~^~317~^19.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17226~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17227~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17227~^~313~^32.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~17227~^~317~^27.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17227~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17228~^~317~^19.9^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~17228~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17229~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17229~^~317~^30.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~17229~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17230~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17230~^~317~^21.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17230~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17231~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17231~^~317~^27.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17231~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17232~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17232~^~317~^21.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17232~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17233~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17233~^~317~^29.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17233~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17234~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17234~^~317~^19.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17234~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17235~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17235~^~317~^25.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17235~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17236~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17236~^~317~^19.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17236~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17237~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17237~^~317~^28.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17237~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17238~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17238~^~317~^25.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17238~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17239~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17239~^~317~^17.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17239~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17240~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17240~^~317~^24.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17240~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17241~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17241~^~317~^22.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17241~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17242~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17242~^~317~^19.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17242~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17243~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17243~^~317~^33.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17243~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17244~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17244~^~317~^26.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17244~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17245~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17245~^~317~^26.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17245~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17246~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17246~^~317~^19.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17246~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17247~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17247~^~317~^37.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17247~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17248~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17248~^~317~^28.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17248~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17249~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17249~^~317~^25.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17249~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17250~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17250~^~317~^19.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17250~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17251~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17251~^~317~^33.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17251~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17252~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17252~^~317~^27.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17252~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17253~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17253~^~317~^25.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17253~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17254~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17254~^~317~^1.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17254~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17255~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17255~^~317~^2.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17255~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17256~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17256~^~317~^3.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~17256~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17257~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17257~^~317~^5.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~17257~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17258~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17258~^~317~^3.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17258~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17259~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17259~^~317~^4.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17259~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17260~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17260~^~317~^1.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17260~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17261~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17261~^~317~^2.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17261~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17262~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17262~^~317~^1.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17262~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17263~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17263~^~317~^1.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17263~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17264~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17264~^~317~^2.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17264~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17265~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17265~^~317~^4.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17265~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17267~^~317~^25.1^12^1.3^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17268~^~317~^23.3^12^2.0^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17269~^~317~^26.4^12^1.5^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17270~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17270~^~317~^5.5^2^^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17271~^~317~^6.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17272~^~317~^11.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/1998~ -~17273~^~317~^10.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17274~^~317~^11.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17275~^~317~^12.5^2^^~1~^~A~^^^^^^^^^^~04/01/1998~ -~17276~^~317~^7.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17277~^~317~^15.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17278~^~317~^8.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/1998~ -~17279~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17279~^~317~^13.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/1998~ -~17280~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1998~ -~17281~^~317~^10.1^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17282~^~317~^8.6^0^^~4~^~BFNN~^^^^^^^^^^~10/01/1998~ -~17283~^~317~^11.0^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17284~^~317~^4.0^3^0.4^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17285~^~317~^5.8^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17286~^~317~^7.2^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17287~^~317~^8.3^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17288~^~317~^8.0^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17289~^~317~^9.0^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17290~^~317~^4.2^0^^~4~^~PIE~^^^^^^^^^^~10/01/1998~ -~17291~^~317~^5.7^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17292~^~317~^4.6^0^^~4~^~BFNN~^^^^^^^^^^~10/01/1998~ -~17293~^~317~^5.9^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17294~^~317~^7.8^0^^~4~^~PIE~^^^^^^^^^^~10/01/1998~ -~17295~^~317~^10.6^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17296~^~317~^8.7^0^^~4~^~BFNN~^^^^^^^^^^~10/01/1998~ -~17297~^~317~^11.5^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17298~^~317~^8.0^0^^~4~^~PIE~^^^^^^^^^^~10/01/1998~ -~17299~^~317~^11.7^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17300~^~317~^9.8^0^^~4~^~BFNN~^^^^^^^^^^~10/01/1998~ -~17301~^~317~^13.0^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17302~^~317~^7.1^0^^~1~^~PAK~^^^^^^^^^^~01/01/1999~ -~17303~^~317~^10.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1998~ -~17304~^~317~^8.0^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17305~^~317~^10.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1998~ -~17306~^~317~^7.4^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17307~^~317~^13.5^0^^~4~^~BFYN~^^^^^^^^^^~01/01/1999~ -~17308~^~317~^8.0^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17309~^~317~^14.2^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17310~^~317~^8.2^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17311~^~317~^9.6^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17312~^~317~^9.0^3^0.5^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17313~^~317~^10.3^3^0.8^~1~^~A~^^^^^^^^^^~10/01/1998~ -~17314~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~317~^10.9^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17314~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~317~^12.9^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17315~^~325~^0.0^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17315~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17315~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17315~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17316~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~317~^13.1^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17316~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~317~^15.2^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17317~^~325~^0.0^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17317~^~326~^0.0^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17317~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~ -~17317~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17318~^~317~^3.3^0^^~4~^~PIE~^^^^^^^^^^~01/01/1999~ -~17319~^~317~^4.5^0^^~4~^~BFYN~^^^^^^^^^^~01/01/1999~ -~17320~^~317~^3.9^0^^~4~^~BFNN~^^^^^^^^^^~01/01/1999~ -~17321~^~317~^5.1^0^^~4~^~BFNN~^^^^^^^^^^~01/01/1999~ -~17322~^~317~^6.5^0^^~4~^~PIE~^^^^^^^^^^~10/01/1998~ -~17323~^~317~^9.2^0^^~4~^~BFNN~^^^^^^^^^^~01/01/1999~ -~17324~^~317~^7.7^0^^~4~^~BFNN~^^^^^^^^^^~01/01/1999~ -~17325~^~317~^10.6^0^^~4~^~BFNN~^^^^^^^^^^~01/01/1999~ -~17326~^~317~^6.9^0^^~4~^~PIE~^^^^^^^^^^~10/01/1998~ -~17327~^~317~^8.2^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17328~^~317~^8.1^0^^~4~^~BFNN~^^^^^^^^^^~10/01/1998~ -~17329~^~317~^9.0^0^^~4~^~BFYN~^^^^^^^^^^~11/01/1998~ -~17330~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~317~^18.7^3^0.3^~1~^~A~^^^1^18.0^19.0^2^17.2^20.1^~4~^~09/01/2001~ -~17330~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~317~^30.0^3^3.6^~1~^~A~^^^1^23.0^35.0^2^14.4^45.5^~4~^~09/01/2001~ -~17331~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17332~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~317~^41.2^0^^~4~^~BFNN~^~17336~^^^^^^^^^~02/01/2002~ -~17332~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~317~^41.7^3^0.6^~1~^~A~^^^1^41.0^43.0^2^38.7^44.5^~4~^~11/01/2001~ -~17333~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~317~^28.7^3^2.1^~1~^~A~^^^1^26.0^33.0^2^19.2^38.0^~4~^~11/01/2001~ -~17334~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~317~^42.1^0^^~4~^~BFNN~^~17336~^^^^^^^^^~02/01/2002~ -~17335~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~317~^41.0^3^3.4^~1~^~A~^^^1^37.0^46.0^2^25.9^56.0^~4~^~03/01/2003~ -~17336~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~317~^35.3^3^2.9^~1~^~A~^^^1^30.0^40.0^2^22.8^47.8^~4~^~11/01/2001~ -~17337~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17338~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~317~^8.0^2^^~1~^~A~^^^1^0.0^16.0^1^^^^~02/01/2002~ -~17338~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~317~^9.0^2^^~1~^~A~^^^1^0.0^18.0^1^^^^~02/01/2002~ -~17339~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17340~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~317~^10.5^0^^~4~^~BFNN~^~17339~^^^^^^^^^~02/01/2002~ -~17340~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~317~^10.6^0^^~4~^~BFNN~^~17339~^^^^^^^^^~02/01/2002~ -~17341~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~317~^10.5^0^^~4~^~BFNN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17343~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~317~^10.0^3^2.3^~1~^~A~^^^1^6.0^14.0^2^6.3e-02^19.9^~4~^~02/01/2002~ -~17343~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17343~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17343~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~421~^87.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17343~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~17343~^~454~^12.9^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2006~ -~17344~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~317~^10.3^3^3.3^~1~^~A~^^^1^6.0^17.0^2^-4.2^24.8^~4~^~02/01/2002~ -~17344~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17344~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17344~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~421~^101.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17344~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~17344~^~454~^13.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17345~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~317~^13.3^3^2.3^~1~^~A~^^^1^9.0^17.0^2^3.2^23.3^~4~^~02/01/2002~ -~17345~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17345~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17345~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~421~^113.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17345~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~17345~^~454~^14.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17346~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~317~^17.7^3^2.9^~1~^~A~^^^1^12.0^22.0^2^4.9^30.4^~4~^~03/01/2002~ -~17346~^~326~^0.0^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~ -~17346~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~17346~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~421~^134.1^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17346~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~17346~^~454~^17.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~17347~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~317~^11.0^3^0.5^~1~^~A~^^^1^10.0^12.0^2^8.5^13.4^~4~^~02/01/2002~ -~17347~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~317~^11.3^3^1.2^~1~^~A~^^^1^9.0^13.0^2^6.1^16.5^~4~^~02/01/2002~ -~17348~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17349~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17350~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~401~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17351~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17352~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~401~^0.0^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17354~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~317~^2.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~317~^2.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~317~^1.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~326~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~317~^16.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~317~^13.5^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~317~^6.4^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~317~^6.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~317~^2.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~326~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~317~^4.4^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17364~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~317~^105.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~317~^7.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~317~^3.7^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~317~^93.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~317~^19.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~317~^11.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~317~^6.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~317~^4.7^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~317~^20.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~317~^10.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~317~^14.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~317~^8.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~317~^53.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~317~^26.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~317~^9.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~317~^5.4^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~317~^4.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~317~^3.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~317~^11.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~317~^7.4^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~317~^6.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17385~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~317~^5.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17385~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17386~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~317~^4.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~317~^5.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~317~^2.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~317~^9.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~317~^4.7^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~317~^4.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~317~^7.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~317~^4.7^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~317~^3.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~317~^4.4^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~317~^2.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~317~^7.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~317~^6.8^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~317~^3.7^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17401~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~317~^5.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~317~^3.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~317~^8.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~317~^4.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~317~^3.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~317~^5.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~317~^3.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~317~^3.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~317~^5.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~317~^2.9^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~317~^7.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~317~^4.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~317~^4.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~317~^3.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~317~^10.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~317~^6.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~317~^5.7^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~317~^6.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~317~^4.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~317~^2.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~317~^4.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17422~^~317~^3.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17423~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~317~^5.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17424~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~317~^18.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~326~^1.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~328~^1.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17424~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~421~^119.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17424~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17424~^~454~^33.9^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~317~^21.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17425~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~421~^159.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17425~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17425~^~454~^29.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~317~^16.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17426~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~421~^120.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17426~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17426~^~454~^28.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~317~^26.1^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~326~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17427~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~421~^150.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17427~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17427~^~454~^27.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~317~^13.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~326~^0.7^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17428~^~328~^0.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17428~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~421~^99.9^0^^~4~^~BFPN~^~17107~^^^^^^^^^~04/01/2014~ -~17428~^~430~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17428~^~454~^21.1^0^^~4~^~BFPN~^~17107~^^^^^^^^^~04/01/2014~ -~17429~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~317~^20.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~326~^0.8^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17429~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17429~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~421~^146.8^0^^~4~^~BFPN~^~17427~^^^^^^^^^~04/01/2014~ -~17429~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17429~^~454~^26.9^0^^~4~^~BFPN~^~17427~^^^^^^^^^~04/01/2014~ -~17430~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~317~^18.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~326~^1.0^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17430~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17430~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~421~^137.8^0^^~4~^~BFPN~^~17427~^^^^^^^^^~04/01/2014~ -~17430~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17430~^~454~^25.2^0^^~4~^~BFPN~^~17427~^^^^^^^^^~04/01/2014~ -~17431~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~317~^5.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~326~^5.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~328~^5.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~421~^32.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~430~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17431~^~454~^10.9^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~317~^9.8^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~326~^3.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~328~^3.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~421~^41.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~430~^2.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17432~^~454~^15.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~317~^8.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~326~^3.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~328~^3.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~421~^44.9^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~430~^2.5^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17433~^~454~^11.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~317~^9.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~326~^4.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~328~^4.5^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~421~^53.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~430~^2.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~17434~^~454~^15.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17435~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~317~^12.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~326~^0.8^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17435~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~421~^96.7^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~430~^1.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~454~^20.5^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~317~^19.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~326~^1.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~328~^1.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~421~^140.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~454~^26.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~317~^24.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~326~^1.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~328~^1.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~421~^139.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~454~^26.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~317~^17.4^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~326~^1.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~328~^1.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~421~^128.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~454~^24.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17439~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~317~^6.4^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17439~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~17440~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~317~^15.6^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17440~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~317~^12.2^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17441~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~317~^9.8^0^^~4~^~BFYN~^^^^^^^^^^~12/01/2014~ -~17442~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~317~^8.1^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17443~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~317~^10.6^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17444~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~317~^8.8^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17445~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~317~^7.1^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17446~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~317~^12.4^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17447~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17448~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~317~^16.5^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17448~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~317~^5.0^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17449~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~317~^4.7^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17450~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~317~^6.2^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17451~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~317~^5.7^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~328~^0.0^1^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17452~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17453~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~317~^6.3^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17453~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~317~^9.8^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17454~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~317~^14.8^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17455~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~317~^10.7^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17456~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~317~^8.4^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17457~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~317~^6.9^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17458~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~317~^9.7^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17459~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17459~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~317~^8.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17460~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17461~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~317~^15.4^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17461~^~325~^0.0^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17461~^~326~^0.0^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~ -~17461~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~ -~17461~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17462~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~317~^12.1^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17462~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~317~^14.8^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~325~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17463~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~317~^14.1^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17464~^~325~^0.0^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17464~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17464~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17464~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~18001~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~291~^1.6^5^0.1^~1~^~A~^^^1^1.5^2.0^1^8.4e-02^3.2^~2, 3~^~03/01/2014~ -~18001~^~317~^21.5^6^2.8^~1~^~A~^^^1^10.9^28.3^2^9.9^33.0^~2, 3~^~03/01/2014~ -~18001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18001~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18001~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~07/01/2012~ -~18001~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~429~^0.2^3^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~03/01/2014~ -~18001~^~430~^0.2^3^3.1e-02^~1~^~A~^^^1^0.1^0.2^1^-0.2^0.5^~2, 3~^~03/01/2014~ -~18002~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~291~^1.8^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~317~^25.2^2^^~1~^~A~^^^1^24.0^26.3^1^^^^~03/01/2005~ -~18002~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18002~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18002~^~421~^15.8^0^^~4~^~BFNN~^~18001~^^^^^^^^^~06/01/2015~ -~18002~^~429~^0.2^2^^~1~^~A~^^^1^0.0^0.3^1^^^~1~^~03/01/2005~ -~18002~^~430~^1.0^2^^~1~^~A~^^^1^0.9^1.1^1^^^^~03/01/2005~ -~18003~^~291~^2.3^0^^~1~^^^^^^^^^^^~01/01/1994~ -~18003~^~317~^30.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18003~^~401~^0.6^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18005~^~291~^2.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18005~^~317~^31.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18005~^~401~^0.7^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~421~^14.6^0^^~4~^~BFZN~^~18001~^^^^^^^^^~07/01/2012~ -~18005~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18006~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18006~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18006~^~317~^33.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18006~^~401~^0.6^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~421~^16.4^0^^~4~^~BFZN~^~18002~^^^^^^^^^~01/01/2007~ -~18006~^~430~^0.8^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18007~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18007~^~291~^3.6^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18007~^~317~^34.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18007~^~401~^0.2^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~421~^15.3^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~18007~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18009~^~291~^1.3^0^^~4~^^^^^^^^^^^ -~18009~^~317~^18.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18009~^~401~^0.0^0^^~7~^^^^^^^^^^^~08/01/1992~ -~18009~^~421~^20.0^0^^~4~^~BFSN~^~18015~^^^^^^^^^~05/01/2013~ -~18009~^~430~^4.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18010~^~291~^2.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18010~^~317~^7.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18010~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~421~^11.0^0^^~4~^~BFSN~^~18009~^^^^^^^^^~01/01/2007~ -~18010~^~430~^6.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18011~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~317~^6.2^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18011~^~401~^0.4^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18012~^~291~^2.0^2^^~9~^~MC~^^^1^1.5^2.5^1^^^^~04/01/2012~ -~18012~^~317~^18.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18012~^~401~^0.1^2^^~9~^~MC~^^^1^0.0^0.1^1^^^^~04/01/2012~ -~18012~^~421~^3.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18012~^~430~^1.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18013~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18013~^~291~^2.3^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~ -~18013~^~313~^26.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~18013~^~317~^17.8^36^1.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18013~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~421~^4.1^0^^~4~^~BFSN~^~18012~^^^^^^^^^~05/01/2015~ -~18013~^~430~^2.2^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18014~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~291~^0.7^6^0.0^~1~^~A~^^^1^0.7^0.7^^^^~2, 3~^~11/01/2005~ -~18014~^~317~^8.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~401~^0.1^2^^~9~^~MC~^^^1^0.0^0.1^1^^^^~04/01/2012~ -~18014~^~430~^6.2^6^0.5^~1~^~A~^^^1^5.0^8.3^5^4.8^7.6^~2, 3~^~11/01/2005~ -~18015~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~291~^2.8^6^0.1^~1~^~A~^^^1^2.1^3.5^3^2.2^3.3^~2, 3~^~03/01/2014~ -~18015~^~317~^13.6^6^0.7^~1~^~A~^^^1^11.3^17.4^3^11.3^15.8^~2, 3~^~03/01/2014~ -~18015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18015~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~421~^19.8^0^^~4~^~BFZN~^~18013~^^^^^^^^^~01/01/2007~ -~18015~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~429~^3.8^3^3.2e-02^~1~^~A~^^^1^0.3^10.1^1^3.4^4.2^~2, 3~^~03/01/2014~ -~18015~^~430~^9.5^3^6.4e-02^~1~^~A~^^^1^4.2^12.5^1^8.6^10.2^~2, 3~^~03/01/2014~ -~18016~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18016~^~291~^1.5^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18016~^~317~^19.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18016~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18019~^~291~^1.1^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18019~^~317~^12.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18019~^~401~^1.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18021~^~291~^4.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~317~^21.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18021~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~421~^23.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~18021~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18022~^~291~^6.5^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18022~^~317~^5.6^3^1.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18022~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~421~^7.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~18022~^~430~^5.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18023~^~221~^0.0^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~291~^2.3^6^0.2^~1~^~A~^^^1^1.5^2.8^2^1.2^3.3^~2, 3~^~08/01/2012~ -~18023~^~317~^8.7^6^0.1^~1~^~A~^^^1^6.7^9.5^2^8.1^9.2^~2, 3~^~08/01/2012~ -~18023~^~328~^0.0^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~401~^0.1^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~421~^58.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18023~^~430~^3.7^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~18023~^~454~^12.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18024~^~317~^10.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18024~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18025~^~291~^5.5^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18025~^~317~^25.3^3^0.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18025~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18027~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18027~^~291~^2.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18027~^~317~^30.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18027~^~328~^0.4^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18027~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~421~^84.3^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18027~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18028~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18028~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18028~^~317~^32.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18028~^~328~^0.5^0^^~4~^~RK~^^^^^^^^^^~03/01/2009~ -~18028~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~421~^91.9^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18028~^~430~^1.0^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18029~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~291~^2.2^3^4.2e-02^~1~^~A~^^^1^2.1^2.3^2^2.0^2.3^~2, 3~^~05/01/2014~ -~18029~^~317~^28.6^3^4.0^~1~^~A~^^^1^20.6^33.6^2^11.2^45.9^~2, 3~^~05/01/2014~ -~18029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18029~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~421~^8.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18030~^~221~^0.0^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~291~^3.1^2^^~1~^~A~^^^1^3.1^3.2^1^^^^~11/01/2005~ -~18030~^~317~^29.7^2^^~1~^~A~^^^1^29.3^30.0^1^^^^~11/01/2005~ -~18030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18030~^~401~^0.2^2^^~1~^~A~^^^1^0.2^0.2^^^^~1~^~11/01/2005~ -~18030~^~421~^17.5^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18030~^~430~^0.5^2^^~1~^~A~^^^1^0.0^1.0^1^^^~1~^~11/01/2005~ -~18030~^~454~^58.6^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18032~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18032~^~291~^2.6^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18032~^~317~^16.0^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~ -~18032~^~401~^0.8^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18033~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2017~ -~18033~^~291~^2.1^3^1.8e-02^~1~^~A~^^^1^2.1^2.3^1^1.8^2.3^~2, 3~^~01/01/2017~ -~18033~^~317~^17.2^3^0.3^~1~^~A~^^^1^12.4^19.3^1^13.0^21.2^~2, 3~^~01/01/2017~ -~18033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18033~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2017~ -~18033~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~07/01/2012~ -~18033~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2017~ -~18033~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2017~ -~18033~^~430~^3.0^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~18036~^~221~^0.0^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~291~^8.1^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~317~^35.8^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18036~^~401~^0.1^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~421~^28.8^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~430~^1.5^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18037~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18037~^~291~^4.5^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~317~^30.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18037~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~421~^18.7^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2012~ -~18037~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18038~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18038~^~291~^4.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18038~^~317~^33.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18038~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~421~^16.1^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~18038~^~430~^1.3^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18039~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18039~^~291~^4.0^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18039~^~317~^24.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18039~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18039~^~421~^18.7^0^^~4~^~BFZN~^~18037~^^^^^^^^^~07/01/2012~ -~18039~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18040~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18040~^~291~^4.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18040~^~317~^26.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18040~^~401~^0.3^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18040~^~421~^15.9^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18040~^~430~^1.7^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18041~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18041~^~291~^2.2^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18041~^~317~^27.1^6^8.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18041~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~18041~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18042~^~291~^6.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18042~^~317~^44.0^5^3.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18042~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18042~^~421~^26.5^0^^~4~^~BFZN~^~18075~^^^^^^^^^~02/01/2007~ -~18042~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18043~^~291~^3.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18043~^~317~^32.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18043~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~421~^18.7^0^^~4~^~BFZN~^~18064~^^^^^^^^^~02/01/2007~ -~18043~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18044~^~291~^6.5^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18044~^~317~^24.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18044~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~02/01/2007~ -~18044~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18047~^~291~^4.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~317~^20.0^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18047~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18047~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~02/01/2007~ -~18047~^~430~^1.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18048~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18048~^~291~^4.7^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18048~^~317~^21.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18048~^~401~^0.4^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18048~^~421~^15.9^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18048~^~430~^1.9^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18049~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18049~^~291~^12.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18049~^~317~^20.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18049~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~02/01/2007~ -~18049~^~430~^1.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18050~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18050~^~291~^14.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18050~^~317~^24.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18050~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~421~^16.1^0^^~4~^~BFZN~^~18038~^^^^^^^^^~02/01/2007~ -~18050~^~430~^2.0^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18051~^~317~^23.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18051~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18053~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1986~ -~18053~^~291~^12.0^0^^~4~^^^^^^^^^^^~06/01/1986~ -~18053~^~317~^27.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18053~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~18053~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1985~ -~18055~^~291~^11.1^2^^~1~^~A~^^^1^10.6^11.5^1^^^^~03/01/2011~ -~18055~^~317~^30.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18055~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18055~^~421~^18.7^0^^~4~^~BFZN~^~18064~^^^^^^^^^~01/01/2007~ -~18055~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~18057~^~291~^9.7^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18057~^~317~^21.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18057~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~01/01/2007~ -~18057~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18059~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18059~^~291~^4.9^0^^~1~^^^^^^^^^^^~02/01/1994~ -~18059~^~317~^28.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18059~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~421~^18.7^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~18059~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18060~^~291~^5.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18060~^~313~^51.0^9^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~18060~^~317~^30.9^44^0.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18060~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18060~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~02/01/2007~ -~18060~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18061~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18061~^~291~^6.4^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18061~^~317~^34.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18061~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~421~^16.1^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~ -~18061~^~430~^1.3^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18064~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~291~^4.0^10^0.4^~1~^~A~^^^1^3.1^5.5^3^2.5^5.5^~2, 3~^~07/01/2014~ -~18064~^~317~^28.8^3^1.3^~1~^~A~^^^1^27.3^31.5^2^22.8^34.6^~2, 3~^~11/01/2005~ -~18064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18064~^~401~^0.2^3^0.0^~1~^~A~^^^1^0.2^0.2^^^^~1, 2, 3~^~11/01/2005~ -~18064~^~421~^18.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18064~^~430~^4.9^3^0.2^~1~^~A~^^^1^4.5^5.4^2^3.7^6.0^~2, 3~^~11/01/2005~ -~18064~^~454~^85.2^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18065~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~291~^4.7^3^0.3^~1~^~A~^^^1^3.9^5.1^2^3.0^6.3^~2, 3~^~11/01/2005~ -~18065~^~317~^33.4^3^0.8^~1~^~A~^^^1^32.3^35.0^2^29.9^36.9^~2, 3~^~11/01/2005~ -~18065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18065~^~401~^0.2^3^0.0^~1~^~A~^^^1^0.2^0.2^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~421~^22.1^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18065~^~430~^5.7^3^0.5^~1~^~A~^^^1^4.7^6.6^2^3.3^8.0^~2, 3~^~11/01/2005~ -~18069~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18069~^~291~^2.7^14^7.6e-02^~1~^~A~^^^1^1.7^9.3^5^2.4^2.8^~2, 3~^~03/01/2011~ -~18069~^~313~^48.9^44^2.2^~1~^~A~^^^5^28.5^67.2^20^44.2^53.6^~4~^~05/01/2014~ -~18069~^~317~^22.0^14^1.9^~1~^~A~^^^1^14.0^33.8^5^17.1^26.9^~2, 3~^~03/01/2011~ -~18069~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18069~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2002~ -~18069~^~421~^14.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~18069~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18069~^~454~^101.9^2^^~1~^~A~^^^2^99.0^104.9^^^^^~03/01/2011~ -~18070~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2000~ -~18070~^~291~^2.9^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~ -~18070~^~317~^31.0^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18070~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~421~^16.0^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~ -~18070~^~430~^3.4^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~18071~^~291~^2.0^0^^~4~^~RC~^^^^^^^^^^~10/01/1995~ -~18071~^~317~^23.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18071~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18073~^~291~^2.0^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18073~^~317~^21.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18073~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18075~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2013~ -~18075~^~291~^6.0^7^0.3^~1~^~A~^^^1^5.2^8.3^3^4.7^7.2^~2, 3~^~04/01/2013~ -~18075~^~317~^25.7^7^3.5^~1~^~A~^^^1^13.8^41.1^5^16.5^34.8^~2, 3~^~04/01/2013~ -~18075~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~18075~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18075~^~421~^27.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18075~^~429~^0.6^2^^~1~^~A~^^^1^0.0^1.1^1^^^~1~^~05/01/2013~ -~18075~^~430~^7.8^2^^~1~^~A~^^^1^4.5^11.0^1^^^^~10/01/2005~ -~18075~^~454~^126.5^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~18076~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~291~^7.5^0^^~4~^~BFSN~^~18075~^^^^^^^^^~09/01/2015~ -~18076~^~317~^52.6^2^^~1~^~A~^^^1^50.5^54.6^1^^^^~11/01/2005~ -~18076~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18076~^~401~^0.0^0^^~4~^~BFSN~^~18075~^^^^^^^^^~09/01/2015~ -~18076~^~421~^33.8^0^^~4~^~BFSN~^~18075~^^^^^^^^^~07/01/2015~ -~18076~^~430~^9.0^1^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~18077~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18077~^~291~^6.0^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18077~^~317~^38.6^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18077~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18077~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~421~^26.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~18077~^~430~^9.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18078~^~291~^6.7^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18078~^~317~^42.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18078~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~421~^29.2^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18078~^~430~^10.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18079~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~291~^4.5^6^8.6e-02^~1~^~A~^^^1^4.3^4.8^5^4.2^4.6^~2, 3~^~01/01/2003~ -~18079~^~317~^25.2^3^0.3^~1~^~A~^^^1^24.8^25.8^2^23.8^26.5^~2, 3~^~01/01/2003~ -~18079~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18079~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18079~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~11/01/2006~ -~18079~^~429~^1.1^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~18079~^~430~^6.6^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~18080~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18080~^~291~^3.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18080~^~317~^37.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18080~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~01/01/2007~ -~18080~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18081~^~291~^3.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18081~^~317~^48.0^5^4.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18081~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18081~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~18081~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18082~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~291~^0.8^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~313~^49.9^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~317~^11.8^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18082~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1992~ -~18082~^~421~^5.3^0^^~4~^~RA~^^^^^^^^^^~01/01/2007~ -~18082~^~430~^13.2^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18084~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~10/01/1995~ -~18084~^~291~^14.3^0^^~4~^^^^^^^^^^^~11/01/1994~ -~18084~^~317~^29.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18084~^~401~^3.5^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18085~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18085~^~291~^2.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18085~^~317~^30.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18085~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18085~^~401~^0.8^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~421~^24.4^0^^~4~^~BFNN~^~18023~^^^^^^^^^~07/01/2015~ -~18085~^~430~^8.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18086~^~291~^1.5^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~317~^7.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18086~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18088~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18088~^~291~^0.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18088~^~317~^15.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18088~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18088~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~421~^1.3^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18088~^~430~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18090~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/1986~ -~18090~^~291~^1.4^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18090~^~317~^4.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18090~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~421~^17.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18090~^~430~^3.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18092~^~317~^14.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~401~^1.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1991~ -~18095~^~291~^0.5^0^^~4~^~FLC~^^^^^^^^^^~09/01/2015~ -~18095~^~317~^3.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~328~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18095~^~401~^13.6^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~421~^28.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~430~^2.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18096~^~221~^0.0^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~291~^2.2^3^8.8e-02^~1~^~A~^^^1^2.0^2.3^2^1.7^2.5^~2, 3~^~08/01/2012~ -~18096~^~317~^7.8^3^2.5^~1~^~A~^^^1^4.9^13.0^2^-3.3^18.9^~2, 3~^~07/01/2011~ -~18096~^~328~^0.0^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18096~^~421~^22.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18096~^~429~^8.7^2^^~1~^~A~^^^1^1.9^15.6^1^^^^~08/01/2012~ -~18096~^~430~^28.9^3^1.8^~1~^~A~^^^1^25.3^31.6^2^20.7^37.0^~2, 3~^~08/01/2012~ -~18096~^~454~^6.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18097~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1987~ -~18097~^~291~^2.3^0^^~4~^~T~^^^^^^^^^^~05/01/2013~ -~18097~^~317~^3.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18097~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18097~^~421~^3.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~18097~^~430~^2.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18101~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18101~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18101~^~317~^11.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18101~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~421~^128.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~18101~^~454~^47.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~18102~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18102~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18102~^~317~^10.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18102~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~ -~18102~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~421~^6.0^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18102~^~430~^4.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18103~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18103~^~291~^1.0^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18103~^~317~^13.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18104~^~291~^2.0^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18104~^~317~^17.2^33^0.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18104~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~291~^2.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~317~^14.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18106~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18106~^~291~^2.5^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~317~^16.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18106~^~401~^0.8^9^3.3e-02^~1~^^^^^^^^^^^~08/01/1992~ -~18108~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1989~ -~18108~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18108~^~313~^1.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~317~^16.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18108~^~328~^0.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~421~^28.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~430~^3.6^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18110~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18110~^~291~^3.7^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18110~^~317~^2.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18110~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~421~^8.9^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18110~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18114~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18114~^~291~^1.7^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18114~^~317~^2.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18114~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~421~^10.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18114~^~430~^6.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18116~^~317~^16.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18116~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18119~^~291~^0.8^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18119~^~317~^9.4^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18119~^~401~^1.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18120~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~291~^0.6^6^0.1^~1~^~A~^^^1^0.3^2.6^3^0.1^1.1^~1, 2, 3~^~04/01/2013~ -~18120~^~317~^5.0^6^0.3^~1~^~A~^^^1^4.0^8.8^3^3.9^6.0^~2, 3~^~04/01/2013~ -~18120~^~328~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/1997~ -~18120~^~421~^65.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18120~^~430~^1.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~454~^10.1^2^^~1~^~A~^^^1^10.0^10.1^^^^^~05/01/2013~ -~18121~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18121~^~291~^1.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~317~^6.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18121~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18126~^~317~^17.0^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~ -~18126~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18127~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~291~^3.2^2^^~1~^~A~^^^1^2.4^3.9^1^^^^~10/01/2005~ -~18127~^~317~^3.4^2^^~1~^~A~^^^1^2.2^4.5^1^^^~1~^~10/01/2005~ -~18127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18127~^~401~^1.9^2^^~1~^~A~^^^1^1.8^2.1^1^^^^~10/01/2005~ -~18127~^~421~^20.6^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18127~^~430~^10.6^2^^~1~^~A~^^^1^4.1^17.1^1^^^^~10/01/2005~ -~18127~^~454~^36.4^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18128~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~291~^1.0^2^^~1~^~A~^^^1^1.0^1.0^^^^^~10/01/2007~ -~18128~^~317~^3.5^2^^~1~^~A~^^^1^2.2^4.8^1^^^~1~^~10/01/2007~ -~18128~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18128~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~421~^37.8^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~428~^0.6^2^^~1~^~A~^^^1^0.5^0.8^1^^^^~07/01/2012~ -~18128~^~430~^9.7^2^^~1~^~A~^^^1^5.5^13.9^1^^^^~10/01/2007~ -~18128~^~454~^12.4^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18131~^~317~^2.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18131~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18133~^~291~^0.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18133~^~317~^9.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18133~^~328~^0.2^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~18133~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~421~^37.1^0^^~4~^~BFNN~^~18128~^^^^^^^^^~07/01/2013~ -~18133~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18134~^~317~^18.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18134~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~291~^0.7^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~317~^2.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18135~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18135~^~421~^3.9^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2013~ -~18135~^~430~^4.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18139~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18139~^~291~^0.8^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18139~^~317~^13.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18139~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~421~^5.7^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18139~^~430~^5.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18140~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2013~ -~18140~^~291~^1.5^3^0.2^~1~^~A~^^^1^1.0^1.8^2^0.4^2.5^~2, 3~^~08/01/2012~ -~18140~^~317~^5.9^3^1.4^~1~^~A~^^^1^3.4^8.5^2^-0.4^12.2^~2, 3~^~07/01/2011~ -~18140~^~328~^0.2^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~18140~^~421~^17.4^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18140~^~429~^12.8^2^^~1~^~A~^^^1^9.4^16.2^1^^^^~08/01/2012~ -~18140~^~430~^25.1^3^2.1^~1~^~A~^^^1^21.1^28.3^2^16.0^34.1^~2, 3~^~08/01/2012~ -~18140~^~454~^6.7^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18141~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~291~^0.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18141~^~317~^5.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18141~^~328~^0.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18141~^~421~^61.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18142~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1991~ -~18142~^~291~^0.7^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18142~^~317~^2.4^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18142~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~421~^4.8^0^^~4~^~BFCN~^~18144~^^^^^^^^^~04/01/2013~ -~18142~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18144~^~291~^1.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~317~^3.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18144~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~421~^4.9^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~430~^2.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18146~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18146~^~291~^0.7^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18146~^~317~^13.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18146~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18147~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18147~^~317~^5.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18147~^~328~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~421~^45.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~430~^4.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18148~^~291~^1.9^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~317~^4.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18148~^~401~^0.5^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18151~^~291~^2.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~317~^6.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18151~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18151~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~421~^10.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18151~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18151~^~430~^6.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18152~^~317~^2.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18154~^~317~^11.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18154~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18155~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18155~^~317~^8.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18155~^~328~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18155~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~421~^6.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18155~^~430~^1.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18156~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18156~^~317~^3.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18156~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18157~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18157~^~291~^3.4^0^^~4~^^^^^^^^^^^ -~18157~^~317~^5.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18157~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~421~^14.3^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~430~^2.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18158~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~291~^3.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~317~^6.0^27^0.6^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18158~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18158~^~421~^4.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~430~^4.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18159~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18159~^~291~^2.0^6^0.1^~1~^~A~^^^1^1.7^2.5^2^1.3^2.6^~2, 3~^~02/01/2013~ -~18159~^~317~^3.9^6^0.2^~1~^~A~^^^1^3.3^4.7^2^2.7^5.0^~2, 3~^~02/01/2013~ -~18159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18159~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~07/01/2014~ -~18159~^~421~^10.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18159~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~18159~^~429~^1.0^5^9.4e-02^~1~^~A~^^^1^0.0^1.5^1^-0.1^2.1^~1, 2, 3~^~07/01/2014~ -~18159~^~430~^33.7^5^1.0^~1~^~A~^^^1^28.3^41.3^2^29.9^37.4^~2, 3~^~07/01/2014~ -~18159~^~454~^16.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~18160~^~291~^1.8^3^0.1^~1~^~A~^^^1^1.6^2.1^2^1.0^2.4^~2, 3~^~02/01/2013~ -~18160~^~317~^3.1^3^0.4^~1~^~A~^^^1^2.2^3.7^2^1.1^4.9^~1, 2, 3~^~02/01/2013~ -~18160~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~430~^2.4^3^0.3^~1~^~A~^^^1^1.8^2.8^2^0.9^3.7^~2, 3~^~02/01/2013~ -~18161~^~317~^2.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18161~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18163~^~291~^1.5^2^^~9~^~MC~^^^1^1.4^1.7^1^^^^~04/01/2012~ -~18163~^~317~^5.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~401~^0.0^2^^~9~^~MC~^^^1^0.0^0.0^1^^^^~04/01/2012~ -~18164~^~291~^1.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18164~^~317~^5.6^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18164~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18165~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18165~^~291~^2.8^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18165~^~317~^11.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18165~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18166~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18166~^~291~^2.9^9^0.1^~1~^~A~^^^1^2.1^4.8^2^2.4^3.3^~2, 3~^~04/01/2013~ -~18166~^~317~^5.2^6^0.3^~1~^~A~^^^1^2.2^5.9^2^3.9^6.3^~1, 2, 3~^~07/01/2014~ -~18166~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18166~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~18166~^~421~^19.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18166~^~429~^0.0^6^1.3e-02^~1~^~A~^^^1^0.0^0.5^2^-4.4e-02^7.1e-02^~1, 2, 3~^~04/01/2008~ -~18166~^~430~^27.4^6^0.8^~1~^~A~^^^1^5.6^40.9^3^24.2^30.5^~2, 3~^~04/01/2013~ -~18166~^~454~^15.7^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~18167~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18167~^~291~^5.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18167~^~317~^3.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18167~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~421~^3.4^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~430~^11.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18168~^~291~^2.7^2^^~1~^~A~^^^1^2.0^3.4^1^^^^~03/01/2004~ -~18168~^~317~^8.1^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18168~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~421~^3.3^0^^~4~^~BFZN~^~18166~^^^^^^^^^~05/01/2011~ -~18168~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18170~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18170~^~291~^4.6^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~317~^3.3^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18170~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18170~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~421~^14.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18170~^~430~^5.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/1987~ -~18171~^~291~^1.6^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~317~^2.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18171~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18171~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~421~^6.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18171~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18172~^~291~^2.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~317~^5.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18172~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~421~^8.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18172~^~430~^2.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18173~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~291~^3.4^9^8.8e-02^~1~^~A~^^^1^2.5^3.8^2^3.0^3.7^~2, 3~^~06/01/2014~ -~18173~^~317~^6.3^9^0.2^~1~^~A~^^^1^3.9^10.0^3^5.6^6.8^~2, 3~^~06/01/2014~ -~18173~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18173~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~421~^5.9^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~430~^14.3^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18174~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~291~^2.2^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~317~^11.1^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~328~^0.0^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~401~^0.1^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~421~^22.3^0^^~4~^~BFZN~^~18173~^^^^^^^^^~02/01/2007~ -~18174~^~430~^6.4^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18175~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18175~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18175~^~317~^21.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18175~^~328~^0.6^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18175~^~401~^3.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~421~^92.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2007~ -~18175~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18176~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18176~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18176~^~317~^4.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18176~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~421~^13.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18176~^~430~^7.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18177~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18177~^~317~^5.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18177~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~421~^8.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18177~^~430~^5.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18178~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18178~^~291~^2.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18178~^~317~^9.8^7^0.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18178~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18178~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~421~^12.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18178~^~430~^8.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18179~^~291~^2.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~317~^10.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18180~^~317~^10.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18180~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18182~^~291~^2.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18182~^~317~^9.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18182~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18183~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18183~^~317~^10.1^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~ -~18183~^~401~^0.1^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18184~^~291~^3.3^9^0.1^~1~^~A~^^^1^2.9^3.8^8^3.0^3.5^~2, 3~^~01/01/2017~ -~18184~^~317~^5.9^8^0.2^~1~^~A~^^^1^4.5^6.9^7^5.2^6.5^~2, 3~^~01/01/2017~ -~18185~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18185~^~291~^2.1^3^2.4e-02^~1~^~A~^^^1^1.4^2.1^1^1.7^2.3^~2, 3~^~05/01/2014~ -~18185~^~317~^6.3^3^0.2^~1~^~A~^^^1^4.6^6.7^1^2.6^9.9^~2, 3~^~05/01/2014~ -~18185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18185~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~421~^10.0^0^^~4~^~BFNN~^~18159~^^^^^^^^^~05/01/2014~ -~18185~^~430~^4.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18186~^~291~^1.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~317~^4.4^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18186~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18187~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18187~^~317~^5.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18187~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18188~^~291~^1.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18188~^~317~^5.1^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18188~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18189~^~317~^14.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18189~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1994~ -~18190~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1994~ -~18190~^~317~^7.7^3^1.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18190~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18190~^~401~^0.1^3^3.3e-02^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~421~^18.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18190~^~430~^3.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~18191~^~291~^1.2^0^^~4~^^^^^^^^^^^~09/01/1994~ -~18191~^~317~^2.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18191~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~421~^14.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18191~^~430~^3.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18192~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~291~^1.3^6^5.3e-02^~1~^~A~^^^1^1.0^1.5^3^1.0^1.4^~2, 3~^~05/01/2014~ -~18192~^~317~^6.2^6^0.5^~1~^~A~^^^1^4.6^9.1^2^3.7^8.6^~2, 3~^~05/01/2014~ -~18192~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/1997~ -~18192~^~421~^0.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~430~^11.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18193~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~317~^3.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18193~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~18196~^~291~^4.2^0^^~4~^^^^^^^^^^^~12/01/1995~ -~18196~^~317~^2.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18196~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~421~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18198~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18198~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18198~^~317~^2.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18198~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18198~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~421~^6.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18198~^~430~^4.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18199~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18199~^~291~^4.1^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18199~^~317~^3.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18199~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18199~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~421~^9.8^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~430~^5.4^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18200~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18200~^~291~^2.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18200~^~317~^4.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18200~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~421~^12.0^0^^~4~^~BFZN~^~18178~^^^^^^^^^~02/01/2007~ -~18200~^~430~^7.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18201~^~317~^3.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18201~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~221~^0.0^0^^~4~^~BFNN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~291~^14.3^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~317~^6.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18202~^~328~^0.0^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~421~^1.2^0^^~4~^~BFNN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~430~^2.6^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18204~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1994~ -~18204~^~291~^1.3^6^9.7e-02^~1~^~A~^^^1^0.9^1.4^2^0.8^1.6^~2, 3~^~05/01/2014~ -~18204~^~317~^8.2^6^3.7^~1~^~A~^^^1^3.6^18.9^2^-7.8^24.2^~2, 3~^~05/01/2014~ -~18204~^~328~^0.0^0^^~4~^~BFNN~^~18159~^^^^^^^^^~05/01/2014~ -~18204~^~401~^0.1^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18204~^~421~^10.8^0^^~4~^~BFNN~^~18159~^^^^^^^^^~05/01/2014~ -~18204~^~430~^8.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18205~^~291~^0.9^2^^~9~^~MC~^^^1^0.8^0.9^1^^^^~04/01/2012~ -~18205~^~317~^3.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18205~^~401~^0.0^2^^~9~^~MC~^^^1^0.0^0.0^1^^^^~04/01/2012~ -~18205~^~430~^8.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18206~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1994~ -~18206~^~291~^0.9^0^^~4~^~BFSN~^~18205~^^^^^^^^^~07/01/2015~ -~18206~^~317~^3.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18206~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~421~^10.5^0^^~4~^~BFNN~^~18159~^^^^^^^^^~07/01/2015~ -~18206~^~430~^9.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18209~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~291~^1.6^6^0.1^~1~^~A~^^^1^1.3^2.2^5^1.1^2.0^~2, 3~^~06/01/2010~ -~18209~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~317~^3.7^4^0.3^~1~^~A~^^^1^3.0^4.7^3^2.4^4.9^~2, 3~^~06/01/2010~ -~18209~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~421~^1.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~429~^0.5^2^^~1~^~A~^^^1^0.3^0.8^1^^^^~06/01/2010~ -~18209~^~430~^2.1^4^4.3e-02^~1~^~A~^^^1^2.0^2.2^3^1.9^2.2^~2, 3~^~06/01/2010~ -~18209~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18210~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18210~^~291~^1.5^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~317~^3.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18210~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18210~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~421~^4.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18210~^~430~^5.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18211~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18211~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18211~^~317~^24.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18211~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18211~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~421~^6.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~18211~^~430~^16.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18212~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18212~^~291~^1.9^0^^~1~^^^^^^^^^^^~02/01/1994~ -~18212~^~317~^11.3^3^1.2^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18212~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18212~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~421~^27.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18212~^~430~^6.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18213~^~221~^0.0^0^^~4~^~BFNN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~291~^1.6^6^0.1^~1~^~A~^^^1^1.3^2.1^3^1.2^1.9^~2, 3~^~06/01/2015~ -~18213~^~317~^5.6^9^0.1^~1~^~A~^^^1^2.2^7.1^5^5.2^5.9^~1, 2, 3~^~06/01/2015~ -~18213~^~328~^0.0^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18213~^~421~^11.5^0^^~4~^~BFNN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~429~^3.4^3^0.1^~1~^~A~^^^1^0.0^4.1^1^0.8^5.9^~1, 2, 3~^~06/01/2015~ -~18213~^~430~^29.0^3^2.4^~1~^~A~^^^1^16.9^33.5^1^-1.9^59.9^~2, 3~^~06/01/2015~ -~18214~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18214~^~291~^2.3^12^8.9e-02^~1~^~A~^^^1^2.0^3.1^7^2.0^2.5^~2, 3~^~03/01/2011~ -~18214~^~317~^13.5^6^0.2^~1~^~A~^^^1^10.7^16.7^4^12.7^14.2^~2, 3~^~03/01/2011~ -~18214~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18214~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~421~^8.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18214~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2011~ -~18214~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2011~ -~18214~^~430~^9.4^2^^~1~^~A~^^^1^8.1^10.6^^^^^~03/01/2011~ -~18214~^~454~^39.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18215~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~291~^3.4^3^0.1^~1~^~A~^^^1^3.0^3.7^2^2.5^4.1^~2, 3~^~12/01/2002~ -~18215~^~317~^8.2^2^^~1~^~A~^^^1^8.2^8.3^1^^^^~12/01/2002~ -~18215~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18215~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~421~^24.7^3^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18215~^~429~^33.0^2^^~1~^~A~^^^1^31.0^34.9^1^^^^~07/01/2012~ -~18215~^~430~^12.0^2^^~1~^~A~^^^1^11.6^12.3^1^^^^~12/01/2002~ -~18216~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1988~ -~18216~^~291~^16.5^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18216~^~317~^36.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18216~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18216~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~421~^20.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18216~^~430~^6.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18217~^~291~^3.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~317~^36.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18217~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~421~^10.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18217~^~430~^0.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18218~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18218~^~317~^27.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18218~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18219~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18219~^~291~^11.8^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18219~^~317~^75.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18219~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18220~^~291~^6.3^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18220~^~317~^34.8^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18220~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18220~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~421~^19.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18220~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18221~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~291~^8.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1992~ -~18221~^~317~^38.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18221~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18222~^~291~^7.4^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~317~^55.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18222~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18223~^~291~^3.4^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~18223~^~317~^15.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18223~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18223~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~421~^10.8^0^^~4~^~BFNN~^~18229~^^^^^^^^^~06/01/2015~ -~18223~^~430~^3.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18224~^~317~^20.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18224~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18225~^~291~^3.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18225~^~317~^20.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18226~^~291~^22.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18226~^~317~^23.8^3^21.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18226~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18226~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~421~^20.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18226~^~430~^5.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18227~^~291~^20.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18227~^~317~^32.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18228~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18228~^~291~^2.8^6^8.7e-02^~1~^~A~^^^1^2.5^3.0^2^2.4^3.1^~2, 3~^~02/01/2013~ -~18228~^~317~^10.3^6^0.8^~1~^~A~^^^1^4.7^12.1^2^6.6^13.8^~2, 3~^~07/01/2014~ -~18228~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18228~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2014~ -~18228~^~421~^16.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18228~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~430~^25.4^4^0.3^~1~^~A~^^^1^20.3^26.0^1^22.6^28.1^~2, 3~^~07/01/2014~ -~18228~^~454~^62.7^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~18229~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18229~^~291~^2.3^6^9.0e-02^~1~^~A~^^^1^1.9^2.5^2^1.8^2.6^~2, 3~^~02/01/2013~ -~18229~^~317~^6.7^6^0.1^~1~^~A~^^^1^3.2^7.7^2^6.1^7.2^~2, 3~^~07/01/2014~ -~18229~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18229~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~421~^9.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~18229~^~428~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~429~^4.5^5^0.5^~1~^~A~^^^1^0.0^6.3^1^-2.9^11.9^~1, 2, 3~^~07/01/2014~ -~18229~^~430~^69.3^5^1.8^~1~^~A~^^^1^64.9^79.0^1^46.5^91.9^~2, 3~^~07/01/2014~ -~18229~^~454~^48.0^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~18230~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18230~^~291~^1.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18230~^~317~^21.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18230~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18230~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~421~^27.5^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18230~^~430~^8.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18231~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18231~^~291~^2.3^3^0.1^~1~^~A~^^^1^2.1^2.7^2^1.5^3.0^~2, 3~^~12/01/2002~ -~18231~^~317~^10.8^3^1.5^~1~^~A~^^^1^9.1^13.8^2^4.2^17.3^~2, 3~^~12/01/2002~ -~18231~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18231~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~421~^24.7^0^^~4~^~BFZN~^~18215~^^^^^^^^^~03/01/2007~ -~18231~^~429~^42.8^2^^~1~^~A~^^^1^38.3^47.3^1^^^^~12/01/2002~ -~18231~^~430~^9.5^2^^~1~^~A~^^^1^8.7^10.4^1^^^^~12/01/2002~ -~18232~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18232~^~291~^6.9^6^7.1e-02^~1~^~A~^^^1^4.8^7.4^3^6.6^7.0^~2, 3~^~05/01/2014~ -~18232~^~317~^9.9^6^0.7^~1~^~A~^^^1^5.0^17.8^3^7.3^12.4^~2, 3~^~05/01/2014~ -~18232~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18232~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18232~^~421~^27.2^6^2.6^~1~^~AS~^^^2^20.0^39.8^2^14.3^40.1^~2, 3~^~05/01/2014~ -~18232~^~430~^14.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18233~^~291~^3.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18233~^~317~^24.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18233~^~401~^1.5^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~291~^4.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18234~^~317~^21.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18234~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18235~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~18235~^~291~^10.3^4^0.1^~1~^~A~^^^1^9.9^10.6^3^9.7^10.8^~2, 3~^~10/01/2008~ -~18235~^~317~^10.1^4^0.7^~1~^~A~^^^1^8.8^12.0^3^7.8^12.3^~2, 3~^~10/01/2008~ -~18235~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18235~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~421~^27.2^6^2.6^~1~^~AS~^^^2^20.0^39.8^2^14.3^40.1^~2, 3~^~10/01/2008~ -~18235~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2008~ -~18235~^~429~^0.5^2^^~1~^~A~^^^1^0.0^1.0^1^^^~1~^~10/01/2008~ -~18235~^~430~^27.2^2^^~1~^~A~^^^1^26.2^28.1^1^^^^~10/01/2008~ -~18236~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~18236~^~291~^2.6^0^^~4~^^^^^^^^^^^~04/01/1994~ -~18236~^~317~^42.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18236~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18236~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~421~^19.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~18236~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18237~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18237~^~291~^0.8^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18237~^~317~^24.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18237~^~328~^1.4^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~421~^114.4^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~430~^24.5^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18239~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18239~^~291~^2.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18239~^~317~^22.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18239~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18239~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18239~^~421~^38.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18239~^~430~^1.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18240~^~291~^2.5^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~317~^19.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18240~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18241~^~291~^2.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18241~^~317~^26.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18241~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18241~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~421~^38.8^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18241~^~430~^10.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18242~^~291~^5.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~317~^37.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18242~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1989~ -~18243~^~291~^5.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~317~^28.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18243~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18243~^~430~^7.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18244~^~291~^1.3^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18244~^~317~^17.0^33^0.7^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18244~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18244~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~421~^21.8^0^^~4~^~BFZN~^~18246~^^^^^^^^^~03/01/2007~ -~18244~^~430~^9.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18245~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18245~^~317~^18.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18245~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~18245~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~421~^20.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~430~^6.9^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18246~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18246~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~317~^14.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18246~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18246~^~401~^3.9^15^1.8^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~421~^21.8^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18246~^~430~^5.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18248~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~291~^1.7^4^0.1^~1~^~A~^^^1^1.3^1.9^1^-0.1^3.4^~2, 3~^~04/01/2014~ -~18248~^~317~^10.1^4^0.6^~1~^~A~^^^1^8.2^14.5^1^4.0^16.1^~2, 3~^~04/01/2014~ -~18248~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18248~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~421~^37.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18248~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~18248~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~18248~^~430~^9.8^2^^~1~^~A~^^^1^9.0^10.6^1^^^^~04/01/2014~ -~18248~^~454~^63.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~18249~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~291~^1.9^2^^~1~^~A~^^^1^1.8^2.1^1^^^^~10/01/2005~ -~18249~^~317~^6.8^2^^~1~^~A~^^^1^5.8^7.8^1^^^^~10/01/2005~ -~18249~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18249~^~401~^1.3^2^^~1~^~A~^^^1^1.2^1.4^1^^^^~10/01/2005~ -~18249~^~421~^29.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18249~^~430~^7.9^2^^~1~^~A~^^^1^6.9^8.8^1^^^^~10/01/2005~ -~18250~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18250~^~317~^9.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18250~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18251~^~291~^2.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~317~^4.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18251~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18251~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~421~^29.1^0^^~4~^~BFZN~^~18249~^^^^^^^^^~03/01/2007~ -~18251~^~430~^9.8^2^^~4~^~FLA~^^^2^9.8^9.8^1^^^^~07/01/2012~ -~18253~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18253~^~291~^1.2^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18253~^~317~^2.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18253~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~421~^29.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18253~^~430~^8.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18254~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18254~^~317~^10.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18254~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18254~^~421~^29.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18254~^~430~^8.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18255~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~291~^2.1^2^^~1~^~A~^^^1^2.1^2.2^1^^^^~11/01/2005~ -~18255~^~317~^15.7^2^^~1~^~A~^^^1^14.8^16.5^1^^^^~11/01/2005~ -~18255~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~18255~^~401~^1.2^2^^~1~^~A~^^^1^1.1^1.2^1^^^^~11/01/2005~ -~18255~^~421~^29.1^0^^~4~^~BFZN~^~18249~^^^^^^^^^~03/01/2007~ -~18255~^~429~^34.4^2^^~1~^~A~^^^1^24.5^44.2^1^^^^~08/01/2012~ -~18255~^~430~^11.5^2^^~1~^~A~^^^1^9.4^13.6^1^^^^~11/01/2005~ -~18256~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18256~^~291~^0.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18256~^~317~^12.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18256~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~421~^29.1^0^^~4~^~BFZN~^~18249~^^^^^^^^^~03/01/2007~ -~18256~^~430~^7.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~291~^3.5^2^^~1~^~A~^^^1^3.1^3.9^1^^^^~03/01/2005~ -~18258~^~317~^22.4^2^^~1~^~A~^^^1^18.5^26.3^1^^^^~03/01/2005~ -~18258~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18258~^~401~^1.8^2^^~1~^~A~^^^1^1.8^1.9^1^^^^~03/01/2005~ -~18258~^~421~^16.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18258~^~429~^0.2^2^^~1~^~A~^^^1^0.0^0.3^1^^^~1~^~11/01/2006~ -~18258~^~430~^1.2^2^^~1~^~A~^^^1^0.9^1.5^1^^^^~03/01/2005~ -~18258~^~454~^96.7^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~18259~^~221~^0.0^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~291~^2.8^2^^~1~^~A~^^^1^2.3^3.2^1^^^^~03/01/2005~ -~18259~^~317~^26.3^2^^~1~^~A~^^^1^22.0^30.5^1^^^^~03/01/2005~ -~18259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18259~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~18259~^~421~^15.7^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18259~^~430~^1.4^2^^~1~^~A~^^^1^1.0^1.7^1^^^^~03/01/2005~ -~18260~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18260~^~291~^2.8^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18260~^~317~^25.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18260~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~421~^13.7^0^^~4~^~BFZN~^~18258~^^^^^^^^^~05/01/2007~ -~18260~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18262~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18262~^~291~^2.6^2^^~1~^~A~^^^1^2.2^3.0^1^^^^~03/01/2005~ -~18262~^~317~^21.6^2^^~1~^~A~^^^1^17.8^25.3^1^^^^~03/01/2005~ -~18262~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18262~^~401~^1.3^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~03/01/2005~ -~18262~^~421~^16.0^0^^~4~^~BFZN~^~18258~^^^^^^^^^~06/01/2014~ -~18262~^~429~^0.5^2^^~1~^~A~^^^1^0.0^1.0^1^^^~1~^~07/01/2012~ -~18262~^~430~^2.5^2^^~1~^~A~^^^1^2.0^3.0^1^^^^~03/01/2005~ -~18263~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~291~^3.0^2^^~1~^~A~^^^1^2.7^3.3^1^^^^~03/01/2005~ -~18263~^~317~^24.3^2^^~1~^~A~^^^1^20.5^28.0^1^^^^~03/01/2005~ -~18263~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18263~^~401~^1.4^2^^~1~^~A~^^^1^1.0^1.7^1^^^^~03/01/2005~ -~18263~^~421~^14.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18263~^~429~^0.7^2^^~1~^~A~^^^1^0.2^1.1^1^^^^~08/01/2012~ -~18263~^~430~^2.5^2^^~1~^~A~^^^1^2.0^3.0^1^^^^~03/01/2005~ -~18264~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18264~^~291~^4.6^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18264~^~317~^29.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18264~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~421~^13.7^0^^~4~^~BFZN~^~18258~^^^^^^^^^~07/01/2007~ -~18264~^~430~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18266~^~291~^6.7^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18266~^~317~^40.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18266~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~421~^13.7^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2007~ -~18266~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18268~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18268~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18268~^~317~^16.7^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18268~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18269~^~317~^20.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18269~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18270~^~291~^2.8^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~317~^15.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18270~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18270~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~421~^32.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18270~^~430~^23.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18271~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18271~^~291~^3.0^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18271~^~317~^4.8^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18271~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18271~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~421~^9.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18271~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18272~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18272~^~317~^4.8^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18272~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18272~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18272~^~430~^1.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18273~^~291~^2.7^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18273~^~317~^18.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18273~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~421~^43.4^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18274~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~291~^1.1^9^0.1^~1~^~A~^^^1^0.7^2.0^2^0.4^1.8^~2, 3~^~07/01/2014~ -~18274~^~317~^8.2^9^0.1^~1~^~A~^^^1^6.7^13.2^6^7.8^8.6^~2, 3~^~07/01/2014~ -~18274~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~18274~^~401~^0.9^2^^~1~^~A~^^^1^0.7^1.0^1^^^~1~^~11/01/2005~ -~18274~^~421~^92.5^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18274~^~429~^0.9^2^^~1~^~A~^^^1^0.0^1.9^1^^^~1~^~08/01/2012~ -~18274~^~430~^39.2^2^^~1~^~A~^^^1^32.6^45.9^1^^^^~11/01/2005~ -~18274~^~454~^6.8^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18275~^~291~^1.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~317~^3.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18275~^~401~^2.3^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18277~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18277~^~291~^1.8^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18277~^~317~^17.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18277~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~421~^51.7^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18277~^~430~^19.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18278~^~317~^17.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18278~^~401~^1.5^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18279~^~291~^3.4^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18279~^~317~^15.2^3^3.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18279~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18279~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~421~^51.7^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18279~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18280~^~291~^2.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18280~^~317~^15.2^3^3.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18280~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~291~^1.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18281~^~317~^15.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18281~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~317~^13.4^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18282~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18283~^~291~^4.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18283~^~317~^11.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18283~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~421~^6.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18283~^~430~^13.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18284~^~317~^18.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18284~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18288~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18288~^~291~^1.0^3^0.1^~1~^~A~^^^1^0.6^1.3^2^0.2^1.7^~2, 3~^~08/01/2012~ -~18288~^~317~^10.8^3^0.8^~1~^~A~^^^1^9.4^12.3^2^7.2^14.3^~2, 3~^~08/01/2012~ -~18288~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18288~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~421~^14.6^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18288~^~429~^3.5^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~18288~^~430~^6.5^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~18288~^~454~^36.3^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18289~^~291~^2.9^8^0.2^~1~^~A~^^^1^2.0^3.5^2^2.1^3.7^~2, 3~^~08/01/2012~ -~18289~^~317~^21.6^8^0.3^~1~^~A~^^^1^10.5^26.3^3^20.2^22.9^~2, 3~^~04/01/2011~ -~18289~^~421~^18.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~18289~^~454~^45.6^2^^~1~^~A~^^^1^27.3^50.8^^^^^~08/01/2012~ -~18290~^~291~^1.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~317~^13.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/1992~ -~18290~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18290~^~421~^19.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18291~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18291~^~291~^5.4^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18291~^~317~^12.9^8^0.8^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18291~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18291~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18291~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18292~^~291~^1.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18292~^~317~^9.8^28^0.5^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18292~^~401~^0.6^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~317~^14.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18293~^~401~^0.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~317~^14.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18294~^~401~^2.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18295~^~291~^8.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18295~^~317~^13.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18295~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18295~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~421~^27.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18295~^~430~^3.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18297~^~317~^25.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18297~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~317~^38.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18300~^~317~^19.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~ -~18300~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18301~^~291~^1.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18301~^~317~^1.0^13^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18301~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18301~^~401~^3.2^15^0.6^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~421~^7.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18301~^~430~^3.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~454~^16.4^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~18302~^~317~^7.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18302~^~401~^1.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~291~^0.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18303~^~317~^4.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~401~^0.5^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18304~^~291~^0.7^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18304~^~317~^9.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18304~^~328~^0.8^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~18304~^~401~^1.6^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~421~^28.7^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18304~^~430~^6.3^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18305~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18305~^~291~^1.0^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18305~^~317~^1.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18305~^~401~^2.7^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18305~^~421~^7.2^0^^~4~^~BFZN~^~18301~^^^^^^^^^~03/01/2007~ -~18305~^~430~^10.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18306~^~317~^7.4^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18306~^~401~^0.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18308~^~291~^0.8^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~317~^1.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18308~^~401~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~421~^7.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18308~^~430~^7.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18309~^~317~^7.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18309~^~401~^1.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18310~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18310~^~291~^0.8^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~317~^6.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18310~^~421~^17.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~430~^9.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18312~^~317~^6.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~401~^0.5^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18313~^~291~^1.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18313~^~317~^5.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~328~^0.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18313~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~421~^22.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18313~^~430~^5.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18314~^~291~^0.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18314~^~317~^5.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~401~^0.6^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~291~^1.8^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~317~^6.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18317~^~291~^1.6^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18317~^~317~^7.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~328~^0.8^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~18317~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~421~^38.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18317~^~430~^3.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18319~^~291~^2.6^0^^~1~^~A~^^^^^^^^^^~08/01/1992~ -~18319~^~317~^2.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18319~^~401~^1.3^6^0.1^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~421~^7.2^0^^~4~^~BFZN~^~18301~^^^^^^^^^~03/01/2007~ -~18319~^~430~^4.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18320~^~291~^1.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~317~^3.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18320~^~401~^3.2^9^0.2^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~421~^6.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18320~^~430~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18321~^~317~^11.6^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18321~^~401~^3.3^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18322~^~291~^2.6^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18322~^~317~^6.6^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18322~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18322~^~401~^5.9^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~421~^7.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18322~^~430~^5.4^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18323~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18323~^~291~^0.8^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18323~^~317~^1.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18323~^~401~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~421~^7.2^0^^~4~^~BFZN~^~18301~^^^^^^^^^~03/01/2007~ -~18323~^~430~^3.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18324~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~291~^2.1^2^^~1~^~A~^^^1^1.7^2.6^1^^^^~10/01/2007~ -~18324~^~317~^7.0^2^^~1~^~A~^^^1^6.7^7.4^1^^^^~10/01/2007~ -~18324~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~18324~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2007~ -~18324~^~421~^49.5^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18324~^~428~^0.2^2^^~1~^~A~^^^1^0.0^0.5^1^^^~1~^~10/01/2007~ -~18324~^~430~^15.5^2^^~1~^~A~^^^1^15.2^15.8^1^^^^~10/01/2007~ -~18324~^~454~^5.2^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18325~^~317~^12.0^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18325~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18326~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~291~^1.8^3^0.1^~1~^~A~^^^1^1.5^2.0^2^1.1^2.3^~2, 3~^~11/01/2007~ -~18326~^~317~^5.4^3^0.7^~1~^~A~^^^1^4.5^7.0^2^2.0^8.8^~2, 3~^~11/01/2007~ -~18326~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~18326~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~421~^37.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2007~ -~18326~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2007~ -~18326~^~430~^13.2^2^^~1~^~A~^^^1^12.8^13.7^1^^^^~11/01/2007~ -~18326~^~454~^7.3^1^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18327~^~317~^7.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18327~^~401~^1.7^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18328~^~291~^0.6^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18328~^~317~^9.5^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18328~^~328~^1.2^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~18328~^~401~^0.5^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~421~^32.8^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18328~^~430~^6.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18332~^~317~^22.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~291~^1.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18333~^~317~^22.1^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~ -~18333~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18334~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2008~ -~18334~^~291~^2.5^2^^~1~^~A~^^^1^2.0^3.0^1^^^^~04/01/2008~ -~18334~^~317~^5.7^2^^~1~^~A~^^^1^4.0^7.3^1^^^^~04/01/2008~ -~18334~^~328~^0.0^0^^~4~^~BFYN~^~18335~^^^^^^^^^~05/01/2014~ -~18334~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18334~^~421~^11.8^0^^~4~^~BFYN~^~18335~^^^^^^^^^~06/01/2015~ -~18334~^~428~^1.8^2^^~1~^~A~^^^1^0.0^3.6^1^^^~1~^~04/01/2008~ -~18334~^~429~^30.9^2^^~1~^~A~^^^1^0.0^61.8^1^^^~1~^~04/01/2008~ -~18334~^~430~^5.4^2^^~1~^~A~^^^1^0.0^10.8^1^^^~1~^~05/01/2014~ -~18335~^~221~^0.0^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~291~^3.3^2^^~1~^~A~^^^1^2.1^4.6^1^^^^~04/01/2008~ -~18335~^~317~^6.8^2^^~1~^~A~^^^1^4.8^8.8^1^^^^~04/01/2008~ -~18335~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18335~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~18335~^~421~^13.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18335~^~428~^2.0^2^^~1~^~A~^^^1^0.9^3.0^1^^^^~04/01/2008~ -~18335~^~429~^34.1^2^^~1~^~A~^^^1^0.0^68.2^1^^^~1~^~04/01/2008~ -~18335~^~430~^7.8^2^^~1~^~A~^^^1^0.5^15.1^1^^^^~04/01/2008~ -~18335~^~454~^42.0^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18336~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18336~^~317~^21.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18336~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~421~^6.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~18336~^~430~^14.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~18337~^~291~^1.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18337~^~317~^24.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~421~^6.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18337~^~430~^16.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18338~^~291~^1.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18338~^~317~^23.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18338~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18338~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~421~^6.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18338~^~430~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18339~^~317~^37.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18342~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~291~^2.0^3^6.4e-02^~1~^~A~^^^1^1.8^2.1^2^1.6^2.2^~2, 3~^~10/01/2005~ -~18342~^~317~^26.8^3^3.5^~1~^~A~^^^1^20.3^32.3^2^11.7^41.8^~2, 3~^~10/01/2005~ -~18342~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18342~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~03/01/2007~ -~18342~^~430~^10.6^3^0.6^~1~^~A~^^^1^9.5^11.8^2^7.6^13.4^~2, 3~^~10/01/2005~ -~18344~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18344~^~291~^3.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18344~^~317~^29.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18344~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~421~^31.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18344~^~430~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18345~^~291~^4.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~317~^29.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18345~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18345~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18346~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18346~^~291~^4.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18346~^~317~^27.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18346~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~03/01/2007~ -~18346~^~430~^3.1^5^0.6^~4~^~T~^^^2^2.1^4.3^2^0.3^5.8^~4~^~07/01/2012~ -~18347~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18347~^~291~^3.8^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18347~^~317~^33.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18347~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~421~^18.7^0^^~4~^~BFZN~^~18064~^^^^^^^^^~03/01/2007~ -~18347~^~430~^2.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18348~^~291~^7.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18348~^~317~^49.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18348~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18348~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~421~^26.5^0^^~4~^~BFZN~^~18075~^^^^^^^^^~03/01/2007~ -~18348~^~430~^2.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18349~^~291~^3.2^0^^~1~^^^^^^^^^^^~02/01/1994~ -~18349~^~317~^27.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18349~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~421~^14.8^0^^~4~^~BFZN~^~18029~^^^^^^^^^~03/01/2007~ -~18349~^~430~^1.8^3^0.0^~4~^~T~^^^^^^^^^^~07/01/2012~ -~18350~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~18350~^~291~^1.8^3^0.1^~1~^~A~^^^1^1.7^2.1^2^1.2^2.3^~2, 3~^~02/01/2015~ -~18350~^~317~^27.2^3^7.0^~1~^~A~^^^1^18.5^41.2^2^-3.2^57.6^~2, 3~^~02/01/2015~ -~18350~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18350~^~401~^1.3^2^^~1~^~A~^^^1^1.2^1.5^1^^^^~03/01/2011~ -~18350~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~03/01/2007~ -~18350~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~18350~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~18350~^~430~^4.8^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18351~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18351~^~291~^3.8^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18351~^~317~^31.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18351~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18351~^~421~^26.5^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18351~^~430~^3.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~18353~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18353~^~291~^2.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18353~^~317~^39.1^5^3.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18353~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~421~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18353~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18354~^~291~^2.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~317~^6.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18354~^~401~^1.7^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~421~^17.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18354~^~430~^2.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18355~^~291~^1.2^0^^~1~^^^^^^^^^^^~01/01/1994~ -~18355~^~317~^11.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18356~^~291~^2.4^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18356~^~317~^17.0^33^0.7^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18356~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18356~^~401~^2.0^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~421~^41.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18356~^~430~^4.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18357~^~317~^16.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18358~^~317~^17.7^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~ -~18358~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18360~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18360~^~291~^6.7^6^0.2^~1~^~A~^^^1^5.8^8.9^3^6.0^7.3^~2, 3~^~07/01/2014~ -~18360~^~317~^4.8^3^1.1^~1~^~A~^^^1^3.0^7.0^2^-0.3^9.8^~2, 3~^~02/01/2006~ -~18360~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18360~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~421~^29.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18360~^~430~^8.6^3^2.7^~1~^~A~^^^1^3.3^12.4^2^-3.0^20.2^~2, 3~^~02/01/2006~ -~18360~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18361~^~291~^2.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~317~^3.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18362~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~18362~^~291~^1.0^5^4.7e-02^~1~^~A~^^^1^0.8^1.4^3^0.8^1.1^~2, 3~^~04/01/2014~ -~18362~^~317~^3.1^5^0.3^~1~^~A~^^^1^2.2^4.2^3^2.0^4.1^~1, 2, 3~^~04/01/2014~ -~18362~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18362~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~18362~^~421~^6.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~18362~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~18362~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~18362~^~430~^15.4^2^^~1~^~A~^^^1^14.4^16.4^1^^^^~04/01/2014~ -~18363~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/1992~ -~18363~^~291~^6.3^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~317~^6.1^6^0.4^~1~^~A~^^^1^4.7^7.7^5^5.0^7.2^~1, 2, 3~^~02/01/2004~ -~18363~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18363~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~421~^13.3^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18363~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2004~ -~18363~^~454~^0.4^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18364~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~291~^3.5^6^0.2^~1~^~A~^^^1^2.5^4.8^2^2.2^4.7^~2, 3~^~02/01/2015~ -~18364~^~317~^22.3^9^1.5^~1~^~A~^^^1^15.0^29.7^4^17.6^26.8^~2, 3~^~02/01/2015~ -~18364~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18364~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~421~^7.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~18364~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2015~ -~18364~^~429~^0.1^2^^~1~^~A~^^^1^0.1^0.2^^^^^~02/01/2015~ -~18364~^~430~^7.2^2^^~1~^~A~^^^1^6.9^8.4^^^^^~02/01/2015~ -~18364~^~454~^5.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18365~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~291~^2.2^2^^~1~^~A~^^^1^1.8^2.6^1^^^^~10/01/2004~ -~18365~^~317~^12.2^2^^~1~^~A~^^^1^8.3^16.0^1^^^^~10/01/2004~ -~18365~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18365~^~429~^19.6^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18365~^~430~^7.8^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18367~^~317~^46.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18367~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18368~^~291~^1.8^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18368~^~317~^28.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18368~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18369~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/1994~ -~18369~^~317~^0.2^0^^~4~^~T~^^^^^^^^^^~12/01/1997~ -~18369~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18369~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18369~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18370~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1987~ -~18370~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/1994~ -~18370~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18370~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18370~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18371~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18371~^~291~^2.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18371~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18371~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18371~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18371~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18372~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18372~^~291~^0.0^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18372~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18372~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18372~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18372~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18373~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18373~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/1994~ -~18373~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18373~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18373~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18373~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~454~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~18374~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~18374~^~291~^8.1^0^^~1~^^^^^^^^^^^~02/01/1995~ -~18374~^~317~^8.1^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~18374~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18374~^~401~^0.1^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18374~^~421~^32.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18374~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18375~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2009~ -~18375~^~291~^26.9^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~317~^7.9^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18375~^~401~^0.3^1^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~421~^32.0^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~18375~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18375~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18375~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~454~^3.4^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~18376~^~221~^0.0^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~291~^4.9^3^3.9e-02^~1~^~A~^^^1^4.9^5.0^2^4.7^5.0^~2, 3~^~04/01/2004~ -~18376~^~317~^24.7^3^1.3^~1~^~A~^^^1^22.6^27.2^2^18.9^30.4^~2, 3~^~04/01/2004~ -~18376~^~328~^0.0^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~401~^2.7^3^0.2^~1~^~A~^^^1^2.2^3.1^2^1.4^3.8^~2, 3~^~04/01/2004~ -~18376~^~421~^14.6^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~18376~^~430~^46.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~18377~^~317~^17.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18377~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~317~^11.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18378~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18383~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18383~^~291~^3.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18383~^~317~^36.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18383~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18383~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~421~^20.3^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18383~^~430~^1.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18384~^~291~^5.3^0^^~4~^^^^^^^^^^^~02/01/1994~ -~18384~^~317~^31.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18384~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18384~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~421~^15.9^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18384~^~430~^1.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18386~^~291~^1.9^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18386~^~317~^18.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18386~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18386~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~421~^55.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~18386~^~430~^20.8^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18388~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18388~^~291~^8.2^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18388~^~317~^20.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18388~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~430~^17.4^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18390~^~317~^15.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18390~^~401~^0.4^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18396~^~291~^1.9^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18396~^~317~^22.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18396~^~401~^0.2^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~18399~^~291~^1.5^0^^~4~^^^^^^^^^^^~11/01/1994~ -~18399~^~317~^5.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18399~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~421~^15.4^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18399~^~430~^24.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18400~^~291~^5.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~317~^36.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18400~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18401~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1994~ -~18401~^~291~^0.1^0^^~4~^^^^^^^^^^^~06/01/1994~ -~18401~^~317~^7.7^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18401~^~328~^0.5^0^^~4~^~RP~^^^^^^^^^^~04/01/2009~ -~18401~^~401~^0.1^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~421~^22.7^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18401~^~430~^34.0^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1987~ -~18402~^~291~^3.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18402~^~317~^18.8^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~18402~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18402~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~421~^5.8^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18402~^~430~^13.2^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18403~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~291~^2.4^3^0.1^~1~^~A~^^^1^2.0^2.7^2^1.5^3.2^~2, 3~^~10/01/2004~ -~18403~^~317~^12.6^3^2.5^~1~^~A~^^^1^9.9^17.7^2^1.5^23.6^~2, 3~^~10/01/2004~ -~18403~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18403~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~421~^28.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18403~^~429~^35.5^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18403~^~430~^6.8^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18406~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18406~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18407~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18408~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~291~^6.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~291~^2.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~291~^4.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18416~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/1987~ -~18416~^~291~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18416~^~317~^22.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18416~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18416~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~01/01/2007~ -~18416~^~430~^3.1^2^^~4~^~T~^^^2^1.9^4.2^^^^^~07/01/2012~ -~18417~^~291~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~401~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~291~^1.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~401~^0.1^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~291~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~291~^1.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~291~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~291~^2.5^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~291~^1.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18423~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18424~^~291~^6.3^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18424~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18425~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~291~^2.9^8^6.5e-02^~1~^~A~^^^1^2.6^3.1^7^2.7^3.0^~2, 3~^~04/01/2008~ -~18425~^~317~^6.4^8^0.5^~1~^~A~^^^1^3.3^8.5^7^5.0^7.6^~2, 3~^~04/01/2008~ -~18425~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18425~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~18425~^~421~^19.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18425~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~18425~^~429~^14.6^4^8.6^~1~^~A~^^^1^0.0^36.0^3^-13.0^42.2^~1, 2, 3~^~04/01/2008~ -~18425~^~430~^15.4^2^^~1~^~A~^^^1^14.6^16.2^1^^^^~04/01/2008~ -~18425~^~454~^55.3^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18426~^~291~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1988~ -~18427~^~291~^1.6^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18427~^~317~^6.6^6^0.6^~1~^~A~^^^^^^^^^^~12/01/1997~ -~18427~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18427~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~421~^13.8^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18427~^~430~^6.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~18428~^~291~^4.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18428~^~317~^33.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18428~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~421~^27.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18428~^~430~^9.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/1985~ -~18429~^~291~^10.5^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18429~^~317~^14.7^5^7.6^~1~^~A~^^^^^^^^^^~12/01/1997~ -~18429~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18429~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~421~^27.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18429~^~430~^8.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18430~^~291~^1.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~401~^0.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~401~^3.9^15^1.8^~1~^^^^^^^^^^^~08/01/1992~ -~18432~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~401~^3.9^15^1.8^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~18434~^~291~^2.4^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18434~^~317~^8.6^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~18434~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18434~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~421~^8.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18434~^~430~^11.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18435~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~401~^3.9^15^1.8^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~291~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18437~^~291~^2.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18437~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18438~^~291~^2.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18438~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18439~^~291~^2.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18439~^~401~^0.1^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~291~^1.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~401~^3.2^15^0.6^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~291~^2.6^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~317~^2.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~401~^1.3^6^0.1^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~291~^2.6^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~317~^2.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~291~^0.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18446~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~401~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~291~^7.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~18448~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~291~^5.2^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~18450~^~291~^3.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~317~^23.4^34^2.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~18450~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~18451~^~291~^1.1^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~317~^5.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18451~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18451~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~421~^6.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18451~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18453~^~291~^1.3^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~317~^3.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/1995~ -~18457~^~291~^2.7^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~317~^21.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18457~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18457~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~421~^19.6^0^^~4~^~BFZN~^~18228~^^^^^^^^^~03/01/2007~ -~18457~^~430~^4.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18459~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~18459~^~291~^1.5^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~317~^12.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18459~^~401~^3.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~421~^8.4^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2012~ -~18459~^~430~^0.4^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18513~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18522~^~291~^2.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18524~^~291~^5.1^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18527~^~291~^2.1^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~291~^2.6^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18529~^~291~^0.7^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18532~^~291~^1.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~291~^2.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~291~^1.2^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~291~^2.9^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~291~^2.7^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~291~^1.1^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~291~^1.8^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~401~^0.0^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18541~^~291~^2.8^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18544~^~291~^2.2^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~291~^2.2^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18562~^~291~^1.1^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18567~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~401~^3.3^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18603~^~291~^5.4^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18610~^~291~^1.7^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18612~^~401~^2.0^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18614~^~291~^2.9^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~291~^1.5^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~401~^0.2^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18617~^~291~^3.4^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~291~^3.2^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18621~^~291~^2.3^4^7.5e-02^~1~^~A~^^^1^2.1^2.4^3^2.0^2.5^~2, 3~^~06/01/2008~ -~18621~^~317~^4.6^4^0.3^~1~^~A~^^^1^4.0^5.8^3^3.3^5.9^~2, 3~^~06/01/2008~ -~18621~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2008~ -~18621~^~429~^1.5^2^^~1~^~A~^^^1^1.4^1.5^1^^^^~06/01/2008~ -~18621~^~430~^50.0^2^^~1~^~A~^^^1^48.0^52.0^1^^^^~06/01/2008~ -~18629~^~291~^1.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~291~^1.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~291~^2.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~291~^1.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18634~^~291~^1.2^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18635~^~291~^1.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~401~^0.1^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18640~^~291~^2.1^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~401~^0.0^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18641~^~291~^2.6^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18651~^~291~^1.6^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18651~^~317~^1.7^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18927~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~291~^1.9^3^0.1^~1~^~A~^^^1^1.6^2.0^2^1.3^2.3^~2, 3~^~12/01/2002~ -~18927~^~317~^10.0^3^1.9^~1~^~A~^^^1^6.0^12.1^2^1.4^18.5^~2, 3~^~12/01/2002~ -~18927~^~401~^2.6^3^0.9^~1~^~A~^^^1^0.7^3.8^2^-1.4^6.5^~1, 2, 3~^~12/01/2002~ -~18927~^~421~^27.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18927~^~429~^64.3^2^^~1~^~A~^^^1^57.6^71.1^1^^^^~11/01/2006~ -~18927~^~430~^20.5^2^^~1~^~A~^^^1^18.7^22.2^1^^^^~12/01/2002~ -~18932~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~291~^2.2^2^^~1~^~A~^^^1^1.9^2.4^1^^^^~10/01/2004~ -~18932~^~317~^9.5^2^^~1~^~A~^^^1^9.0^10.1^1^^^^~10/01/2004~ -~18932~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2004~ -~18932~^~429~^17.9^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18932~^~430~^10.5^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~18933~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.4^2.9^2^1.8^3.2^~2, 3~^~11/01/2004~ -~18933~^~317~^10.3^3^0.3^~1~^~A~^^^1^9.6^10.8^2^8.7^11.8^~2, 3~^~11/01/2004~ -~18933~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~18933~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~421~^28.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~18933~^~429~^16.9^1^^~1~^~A~^^^^^^^^^^~07/01/2017~ -~18933~^~430~^12.5^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18934~^~291~^2.4^2^^~1~^~A~^^^1^2.0^2.9^1^^^^~11/01/2004~ -~18934~^~317~^10.1^2^^~1~^~A~^^^1^9.6^10.5^1^^^^~11/01/2004~ -~18934~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2004~ -~18934~^~429~^20.8^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18934~^~430~^10.8^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~291~^2.4^2^^~1~^~A~^^^1^2.1^2.7^1^^^^~11/01/2004~ -~18935~^~317~^12.8^2^^~1~^~A~^^^1^8.7^16.9^1^^^^~11/01/2004~ -~18935~^~429~^23.0^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~430~^8.1^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18936~^~291~^2.5^3^0.1^~1~^~A~^^^1^2.3^2.7^2^2.0^2.9^~2, 3~^~12/01/2004~ -~18936~^~317~^7.4^3^1.1^~1~^~A~^^^1^5.1^8.8^2^2.3^12.4^~2, 3~^~12/01/2004~ -~18936~^~421~^28.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~18936~^~429~^4.8^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~18936~^~430~^7.4^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~18938~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18938~^~291~^1.8^11^0.2^~1~^~A~^^^1^1.2^2.5^3^1.1^2.5^~2, 3~^~04/01/2013~ -~18938~^~317~^3.4^11^0.1^~1~^~A~^^^1^2.2^4.3^3^2.8^3.8^~1, 2, 3~^~04/01/2013~ -~18938~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~18938~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~11/01/2005~ -~18938~^~421~^8.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~18938~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2015~ -~18938~^~430~^19.4^2^^~1~^~A~^^^1^19.0^20.5^^^^^~07/01/2015~ -~18938~^~454~^21.0^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18939~^~291~^1.0^2^^~1~^~A~^^^1^0.8^1.3^1^^^^~01/01/2006~ -~18939~^~317~^5.1^2^^~1~^~A~^^^1^5.0^5.3^1^^^^~01/01/2006~ -~18939~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~01/01/2006~ -~18939~^~421~^9.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~18939~^~430~^6.6^2^^~1~^~A~^^^1^4.9^8.3^1^^^^~01/01/2006~ -~18940~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~291~^4.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~18940~^~317~^9.8^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~18940~^~401~^0.9^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~421~^51.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~18940~^~430~^5.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18942~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~291~^1.9^3^0.3^~1~^~A~^^^1^1.2^2.3^2^0.3^3.4^~2, 3~^~08/01/2007~ -~18942~^~317~^2.6^3^0.3^~1~^~A~^^^1^2.2^3.3^2^1.0^4.1^~1, 2, 3~^~08/01/2007~ -~18942~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~421~^17.7^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~18942~^~430~^21.8^3^3.4^~1~^~A~^^^1^14.9^25.5^2^6.8^36.7^~2, 3~^~08/01/2007~ -~18942~^~454~^38.8^1^^~1~^~A~^^^^^^^^^^~09/01/2007~ -~18943~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~291~^2.7^3^0.2^~1~^~A~^^^1^2.3^3.2^2^1.6^3.8^~2, 3~^~09/01/2007~ -~18943~^~317~^2.5^3^0.2^~1~^~A~^^^1^2.2^3.0^2^1.3^3.6^~1, 2, 3~^~09/01/2007~ -~18943~^~328~^0.0^0^^~4~^~BFFN~^~18942~^^^^^^^^^~05/01/2014~ -~18943~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~421~^16.4^0^^~1~^~AS~^^^^^^^^^^~09/01/2007~ -~18943~^~428~^0.6^3^0.3^~1~^~A~^^^1^0.0^1.0^2^-0.7^1.9^~1, 2, 3~^~09/01/2007~ -~18943~^~429~^64.1^3^8.8^~1~^~A~^^^1^47.4^77.6^2^25.8^102.3^~2, 3~^~05/01/2014~ -~18943~^~430~^18.2^3^2.2^~1~^~A~^^^1^15.0^22.5^2^8.5^27.8^~2, 3~^~09/01/2007~ -~18943~^~454~^21.3^1^^~1~^~A~^^^^^^^^^^~09/01/2007~ -~18944~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~291~^1.6^3^5.8e-02^~1~^~A~^^^1^1.5^1.7^2^1.3^1.8^~2, 3~^~11/01/2007~ -~18944~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~401~^5.7^3^5.5^~1~^~A~^^^1^0.0^16.8^2^-18.1^29.5^~1, 2, 3~^~11/01/2007~ -~18944~^~421~^17.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2007~ -~18944~^~428~^0.9^3^0.1^~1~^~A~^^^1^0.6^1.1^2^0.3^1.4^~2, 3~^~11/01/2007~ -~18944~^~430~^16.4^3^1.3^~1~^~A~^^^1^13.8^17.9^2^10.7^22.0^~2, 3~^~11/01/2007~ -~18944~^~454~^8.4^1^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18945~^~291~^1.4^2^^~1~^~A~^^^1^1.1^1.6^1^^^^~04/01/2008~ -~18945~^~317~^4.5^3^1.6^~1~^~A~^^^1^2.2^7.8^2^-2.7^11.7^~1, 2, 3~^~04/01/2008~ -~18945~^~428~^1.2^3^0.7^~1~^~A~^^^1^0.0^2.5^2^-1.9^4.3^~1, 2, 3~^~04/01/2008~ -~18945~^~429~^51.7^3^30.2^~1~^~A~^^^1^0.0^104.8^2^-78.4^181.8^~1, 2, 3~^~04/01/2008~ -~18945~^~430~^15.0^3^12.5^~1~^~A~^^^1^0.0^39.8^2^-38.9^68.8^~1, 2, 3~^~04/01/2008~ -~18946~^~291~^1.4^2^^~1~^~A~^^^1^1.1^1.7^1^^^^~04/01/2008~ -~18946~^~317~^4.5^2^^~1~^~A~^^^1^2.2^6.8^1^^^~1~^~04/01/2008~ -~18946~^~428~^4.5^2^^~1~^~A~^^^1^3.9^5.1^1^^^^~04/01/2008~ -~18946~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~18946~^~430~^0.4^2^^~1~^~A~^^^1^0.0^0.8^1^^^~1~^~04/01/2008~ -~18947~^~291~^2.3^2^^~1~^~A~^^^1^1.7^2.8^1^^^^~04/01/2008~ -~18947~^~317~^5.0^3^1.8^~1~^~A~^^^1^2.2^8.5^2^-2.9^12.9^~1, 2, 3~^~04/01/2008~ -~18947~^~428~^1.0^3^0.7^~1~^~A~^^^1^0.0^2.4^2^-2.0^4.0^~1, 2, 3~^~04/01/2008~ -~18947~^~429~^61.4^3^38.3^~1~^~A~^^^1^0.0^131.9^2^-103.5^226.4^~1, 2, 3~^~04/01/2008~ -~18947~^~430~^16.7^3^13.5^~1~^~A~^^^1^0.0^43.4^2^-41.4^74.8^~1, 2, 3~^~04/01/2008~ -~18948~^~291~^1.8^2^^~1~^~A~^^^1^1.8^1.9^1^^^^~04/01/2008~ -~18948~^~317~^4.0^2^^~1~^~A~^^^1^2.2^5.8^1^^^~1~^~04/01/2008~ -~18948~^~428~^4.0^2^^~1~^~A~^^^1^3.6^4.5^1^^^^~04/01/2008~ -~18948~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~18948~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2008~ -~18949~^~221~^0.0^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~291~^10.9^4^8.5e-02^~1~^~A~^^^1^10.7^11.1^3^10.6^11.1^~2, 3~^~10/01/2008~ -~18949~^~317~^14.1^4^0.6^~1~^~A~^^^1^12.5^15.8^3^11.9^16.3^~2, 3~^~10/01/2008~ -~18949~^~328~^0.0^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~401~^0.0^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~421~^29.5^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~18949~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~18949~^~430~^12.5^2^^~1~^~A~^^^1^12.1^12.9^1^^^^~10/01/2008~ -~18950~^~221~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~291~^3.4^4^0.1^~1~^~A~^^^1^3.2^3.7^3^3.0^3.7^~2, 3~^~10/01/2008~ -~18950~^~317~^10.4^4^0.8^~1~^~A~^^^1^8.8^12.8^3^7.5^13.2^~2, 3~^~10/01/2008~ -~18950~^~328~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~401~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~421~^29.5^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~18950~^~429~^0.5^2^^~1~^~A~^^^1^0.0^0.9^1^^^~1~^~10/01/2008~ -~18950~^~430~^24.7^2^^~1~^~A~^^^1^21.2^28.2^1^^^^~10/01/2008~ -~18951~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~291~^1.5^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~317~^13.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~18951~^~421~^15.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~430~^9.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18952~^~291~^5.8^3^0.2^~1~^~A~^^^1^5.5^6.2^2^4.8^6.7^~2, 3~^~01/01/2009~ -~18952~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~01/01/2009~ -~18953~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~317~^13.3^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~328~^0.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~421~^36.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~430~^11.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18954~^~291~^1.7^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~317~^13.5^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18955~^~221~^0.0^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~291~^2.3^3^8.8e-02^~1~^~A~^^^1^2.2^2.5^2^1.9^2.7^~2, 3~^~05/01/2009~ -~18955~^~317~^26.2^3^3.1^~1~^~A~^^^1^21.4^32.1^2^12.6^39.6^~2, 3~^~05/01/2009~ -~18955~^~328~^0.0^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~401~^1.2^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~421~^29.1^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~18955~^~429~^10.4^2^^~1~^~A~^^^1^3.1^17.8^1^^^^~05/01/2009~ -~18955~^~430~^1.6^2^^~1~^~A~^^^1^1.5^1.8^1^^^^~05/01/2009~ -~18956~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~317~^15.3^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~317~^17.0^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~317~^22.0^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~291~^2.2^3^0.1^~1~^~A~^^^1^2.1^2.5^2^1.6^2.8^~2, 3~^~05/01/2009~ -~18959~^~317~^17.5^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~18959~^~429~^29.1^2^^~1~^~A~^^^1^11.8^46.5^1^^^^~05/01/2009~ -~18959~^~430~^12.5^2^^~1~^~A~^^^1^11.3^13.6^1^^^^~05/01/2009~ -~18960~^~291~^3.8^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18961~^~291~^2.4^6^^~1~^~A~^^^1^2.2^2.6^^^^~2~^~06/01/2010~ -~18961~^~317~^9.5^4^^~1~^~A~^^^1^8.3^11.5^^^^~2~^~06/01/2010~ -~18961~^~429~^21.0^4^^~1~^~A~^^^1^19.0^24.7^^^^~2~^~06/01/2010~ -~18961~^~430~^17.9^4^^~1~^~A~^^^1^16.3^21.4^^^^~2~^~06/01/2010~ -~18962~^~291~^2.4^2^^~1~^~A~^^^1^2.4^2.4^^^^^~06/01/2010~ -~18963~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~291~^2.5^4^4.8e-02^~1~^~A~^^^1^2.4^2.6^3^2.3^2.6^~2, 3~^~08/01/2012~ -~18963~^~317~^16.6^6^2.9^~1~^~A~^^^1^9.3^27.6^5^9.0^24.1^~2, 3~^~04/01/2011~ -~18963~^~328~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~430~^29.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18964~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~291~^1.2^4^0.0^~1~^~A~^^^1^1.2^1.5^^^^~2, 3~^~07/01/2014~ -~18964~^~317~^13.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~421~^10.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~429~^4.1^3^0.4^~1~^~A~^^^1^3.5^4.9^2^2.2^5.9^~2, 3~^~04/01/2011~ -~18964~^~430~^15.2^5^1.5^~1~^~A~^^^1^1.6^20.4^2^8.3^22.0^~2, 3~^~07/01/2014~ -~18964~^~454~^24.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18965~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~291~^3.3^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~317~^26.2^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~18965~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~421~^2.5^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~430~^3.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18966~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~291~^6.7^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~18966~^~317~^25.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~421~^8.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~430~^18.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~454~^12.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18967~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~291~^9.2^2^^~1~^~A~^^^1^9.2^9.3^1^^^^~03/01/2011~ -~18967~^~317~^16.1^2^^~1~^~A~^^^1^15.0^17.1^1^^^^~03/01/2011~ -~18967~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~421~^8.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~430~^7.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18968~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~291~^4.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~313~^24.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~317~^28.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~421~^9.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~430~^1.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~454~^21.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18969~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~291~^0.9^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~317~^15.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~328~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~421~^44.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~430~^6.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~454~^11.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~291~^2.4^12^0.1^~1~^~A~^^^1^1.9^3.3^11^2.2^2.6^~2, 3~^~03/01/2011~ -~18970~^~313~^20.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~317~^21.9^12^3.0^~1~^~A~^^^1^6.5^46.8^11^15.2^28.5^~2, 3~^~03/01/2011~ -~18970~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~421~^6.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~430~^4.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~454~^45.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18971~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~291~^6.3^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~317~^9.5^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~421~^18.4^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~430~^6.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18972~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~291~^2.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~317~^19.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~430~^32.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~454~^35.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~291~^1.8^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~317~^15.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~421~^2.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~430~^5.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~19000~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~291~^2.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~313~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~317~^5.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~19000~^~401~^16.8^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~421~^42.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~430~^4.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~454~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~291~^2.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~313~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~317~^3.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~421~^60.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~430~^19.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~454~^1.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19002~^~221~^0.0^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~19002~^~291~^1.8^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~317~^10.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19002~^~326~^0.3^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~19002~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~19002~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19002~^~421~^109.1^0^^~4~^~O~^^^^^^^^^^~06/01/2010~ -~19002~^~430~^2.3^0^^~4~^~BFFN~^~23567~^^^^^^^^^~03/01/2003~ -~19003~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19003~^~291~^4.0^6^0.1^~1~^~A~^^^1^3.7^4.6^5^3.6^4.3^~2, 3~^~05/01/2014~ -~19003~^~313~^51.9^18^3.3^~1~^~A~^^^3^43.0^71.4^7^43.9^59.7^~4~^~03/01/2006~ -~19003~^~317~^7.6^6^0.8^~1~^~A~^^^1^5.8^11.6^5^5.3^9.8^~2, 3~^~05/01/2014~ -~19003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19003~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19003~^~421~^12.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19003~^~429~^16.8^2^^~1~^~A~^^^1^0.0^33.6^1^^^~1~^~02/01/2005~ -~19003~^~430~^6.3^2^^~1~^~A~^^^1^1.4^11.1^1^^^^~05/01/2005~ -~19003~^~454~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19004~^~291~^5.2^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19004~^~317~^4.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19004~^~401~^1.7^6^0.8^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~291~^1.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19005~^~317~^3.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19005~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19007~^~291~^3.9^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~317~^10.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19007~^~401~^1.8^4^1.7^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~421~^21.3^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~19007~^~430~^5.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19008~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19008~^~291~^0.8^6^3.7e-02^~1~^~A~^^^1^0.6^0.9^5^0.7^0.8^~1, 2, 3~^~02/01/2016~ -~19008~^~313~^6.6^0^^~4~^~FLA~^^^^^^^^^^~08/01/2014~ -~19008~^~317~^8.1^2^^~1~^~A~^^^1^6.5^9.7^1^^^^~07/01/2008~ -~19008~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~19008~^~401~^0.1^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~19008~^~421~^11.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~19008~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2008~ -~19008~^~429~^5.3^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~19008~^~430~^1.3^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19008~^~454~^0.5^2^^~1~^~A~^^^1^0.4^0.7^1^^^^~02/01/2007~ -~19009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19009~^~291~^6.9^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~317~^14.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19009~^~401~^0.0^1^^~4~^^^^^^^^^^^~05/01/2003~ -~19009~^~421~^20.6^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~19009~^~430~^9.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19010~^~291~^2.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~317~^9.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19010~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19013~^~291~^0.0^4^0.0^~8~^~LC~^^^1^0.0^0.0^3^0.0^0.0^~4~^~06/01/2002~ -~19013~^~317~^2.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19013~^~401~^56.0^7^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~421~^12.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19013~^~430~^18.2^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19014~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~19014~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~19014~^~317~^0.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19014~^~401~^120.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~421~^13.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19014~^~430~^18.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19015~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~291~^5.3^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19015~^~317~^16.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19015~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~401~^0.9^3^1.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~421~^22.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19015~^~430~^14.6^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~454~^6.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19016~^~291~^4.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19016~^~317~^15.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19016~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~291~^4.4^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~317~^12.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19017~^~401~^0.1^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19018~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~401~^1.6^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~421~^0.2^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19020~^~291~^4.6^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~317~^16.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19020~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~291~^4.3^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~317~^18.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19021~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~291~^4.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~317~^15.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19022~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~291~^3.4^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19025~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~291~^1.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~317~^2.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~421~^24.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~454~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19026~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19026~^~317~^13.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19026~^~401~^0.6^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~421~^24.7^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~430~^13.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19027~^~291~^4.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19029~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~291~^2.9^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~317~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19029~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19029~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~421~^9.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~454~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19030~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/1996~ -~19031~^~291~^13.2^1^^~1~^~A~^^^^^^^^^^~08/01/1991~ -~19031~^~317~^8.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19031~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~421~^18.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19031~^~430~^2.4^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19034~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19034~^~291~^14.5^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~317~^0.0^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19034~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~421~^21.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19034~^~430~^1.2^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19034~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19035~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2006~ -~19035~^~291~^8.1^3^0.3^~1~^~A~^^^1^7.7^8.9^2^6.5^9.7^~2, 3~^~05/01/2006~ -~19035~^~313~^6.3^11^2.2^~1~^~A~^^^2^4.0^8.5^1^-22.3^34.8^~4~^~03/01/2006~ -~19035~^~317~^2.2^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~19035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19035~^~401~^0.3^5^0.1^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~421~^12.6^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~19035~^~430~^4.1^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~19035~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~19036~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19036~^~291~^2.9^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~317~^9.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19036~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~421~^22.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19036~^~430~^1.1^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~ -~19038~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19038~^~291~^3.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~317~^3.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19038~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~421~^17.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19038~^~430~^3.9^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19039~^~291~^5.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~317~^3.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19039~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19039~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~421~^23.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19039~^~430~^12.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19040~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19040~^~291~^9.9^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~317~^12.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19040~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19040~^~401~^0.5^3^0.4^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~421~^15.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~430~^8.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19041~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/1996~ -~19041~^~291~^0.0^0^^~7~^^^^^^^^^^^~06/01/1996~ -~19041~^~317~^41.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19041~^~401~^0.5^13^0.1^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~421~^164.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19041~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19042~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19042~^~291~^3.8^7^0.7^~1~^~A~^^^1^1.9^6.0^3^1.5^6.0^~2, 3~^~05/01/2013~ -~19042~^~317~^0.4^7^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~05/01/2013~ -~19042~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~401~^62.4^7^4.4^~1~^~A~^^^1^40.4^82.0^3^48.9^75.8^~2, 3~^~04/01/2015~ -~19042~^~421~^11.5^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~429~^0.0^7^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2015~ -~19042~^~430~^16.1^7^6.0^~1~^~A~^^^1^4.6^36.3^3^-3.0^35.3^~2, 3~^~04/01/2015~ -~19043~^~291~^5.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19043~^~401~^37.3^12^4.8^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~291~^3.2^4^0.1^~1~^~A~^^^1^3.0^3.5^3^2.8^3.5^~2, 3~^~03/01/2008~ -~19045~^~317~^2.9^4^0.2^~1~^~A~^^^1^2.2^3.3^3^2.1^3.6^~1, 2, 3~^~03/01/2008~ -~19045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19045~^~401~^12.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~19045~^~430~^7.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19046~^~291~^1.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19046~^~401~^9.5^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19047~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19047~^~291~^3.4^18^4.4e-02^~1~^~A~^^^2^2.5^4.6^5^3.3^3.5^~2, 3~^~07/01/2014~ -~19047~^~317~^4.4^13^0.1^~1~^~A~^^^2^2.2^9.4^4^3.8^4.9^~1, 2, 3~^~07/01/2014~ -~19047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19047~^~401~^2.1^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~19047~^~421~^29.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~19047~^~429~^5.2^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~19047~^~430~^2.8^5^4.0e-03^~1~^~A~^^^2^0.3^4.2^1^2.7^2.8^~2, 3~^~07/01/2014~ -~19047~^~454~^50.0^2^^~1~^~A~^^^1^48.4^51.5^1^^^^~07/01/2007~ -~19048~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~291~^2.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~317~^14.5^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~401~^0.5^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~421~^39.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~430~^11.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~291~^3.6^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19049~^~317~^5.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~401~^0.0^3^0.0^~1~^^^^^^^^^^^~05/01/2013~ -~19049~^~421~^21.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~430~^3.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19050~^~291~^7.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19050~^~401~^1.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19051~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~291~^4.2^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~313~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~317~^24.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19051~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~421~^32.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19051~^~430~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19051~^~454~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19052~^~291~^3.8^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19052~^~317~^16.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19052~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~291~^5.4^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~317~^24.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19053~^~401~^3.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19056~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~291~^5.4^7^0.2^~1~^~A~^^^1^4.8^8.7^4^4.6^6.2^~2, 3~^~07/01/2014~ -~19056~^~313~^51.9^18^3.3^~1~^~A~^^^3^43.0^71.4^7^43.9^59.7^~4~^~05/01/2006~ -~19056~^~317~^4.4^3^9.4e-02^~1~^~A~^^^1^4.3^4.6^2^3.9^4.8^~2, 3~^~04/01/2015~ -~19056~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19056~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2006~ -~19056~^~421~^19.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~19056~^~429~^43.7^2^^~1~^~A~^^^1^42.0^45.4^1^^^^~05/01/2006~ -~19056~^~430~^20.9^2^^~1~^~A~^^^1^20.2^21.6^1^^^^~01/01/2006~ -~19056~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~19057~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~291~^5.1^6^4.8e-02^~1~^~A~^^^1^4.6^6.4^3^4.9^5.2^~2, 3~^~08/01/2014~ -~19057~^~317~^7.4^6^0.5^~1~^~A~^^^1^6.5^10.4^2^5.2^9.5^~2, 3~^~07/01/2014~ -~19057~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~19057~^~421~^22.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~19057~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~19057~^~429~^0.5^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19057~^~430~^1.3^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19057~^~454~^1.2^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~19058~^~291~^4.0^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~317~^7.3^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~421~^18.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~19058~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~429~^2.1^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~454~^3.0^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~19059~^~401~^1.4^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~401~^7.6^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~291~^5.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~317~^15.4^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~401~^1.3^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~421~^30.7^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~430~^6.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~454~^8.6^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19063~^~291~^5.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19063~^~317~^6.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19063~^~401~^0.9^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19064~^~291~^0.1^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~429~^18.7^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~430~^9.6^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19065~^~291~^5.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~291~^0.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19068~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~291~^0.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~317~^1.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19068~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~421~^2.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19068~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19069~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19069~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~317~^2.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19069~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~421~^15.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19069~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19070~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~317~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19070~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~421~^0.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19070~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19071~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19071~^~291~^3.8^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~317~^5.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19071~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~421~^19.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~430~^7.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19074~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19074~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19074~^~313~^27.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19074~^~317~^1.8^12^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19074~^~401~^0.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~421~^8.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19074~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19075~^~291~^1.2^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~401~^1.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19076~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2011~ -~19076~^~291~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19076~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~421~^18.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19076~^~430~^9.6^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19077~^~291~^18.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~317~^7.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19078~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19078~^~291~^16.6^3^0.2^~1~^~A~^^^1^16.1^16.8^2^15.5^17.6^~2, 3~^~12/01/2006~ -~19078~^~317~^8.1^2^^~1~^~A~^^^1^6.4^9.8^1^^^^~02/01/2003~ -~19078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19078~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~19078~^~421~^45.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19078~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~19078~^~430~^9.7^2^^~1~^~A~^^^1^8.4^11.1^1^^^^~02/01/2003~ -~19078~^~454~^2.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19079~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~317~^4.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19079~^~401~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~19079~^~421~^24.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19079~^~430~^9.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~291~^5.9^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~317~^4.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19080~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~421~^22.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19080~^~430~^5.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19081~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19081~^~291~^5.5^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~317~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19081~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~421~^29.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19081~^~430~^6.3^0^^~4~^~BFFN~^~19080~^^^^^^^^^~02/01/2003~ -~19083~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~291~^2.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~317~^1.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19083~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19083~^~421~^2.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~430~^2.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19084~^~291~^4.4^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19085~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~317~^1.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19085~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~421~^10.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19085~^~430~^6.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19086~^~291~^5.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~317~^3.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19086~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~421~^30.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19086~^~430~^7.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19087~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~19087~^~291~^0.2^2^^~13~^~AI~^^^1^0.2^0.2^1^^^^~12/01/2006~ -~19087~^~317~^4.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19087~^~401~^0.5^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~421~^29.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19087~^~430~^9.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19088~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~19088~^~291~^0.3^3^9.2e-02^~9~^~MC~^^^1^0.2^0.4^2^-0.1^0.6^~4~^~05/01/2004~ -~19088~^~313~^5.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~317~^2.0^16^0.7^~1~^~A~^^^7^0.0^3.8^6^0.2^3.7^~4~^~03/01/2003~ -~19088~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19088~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19088~^~401~^1.2^3^0.2^~9~^~MC~^^^1^0.9^1.7^2^0.1^2.2^~4~^~05/01/2004~ -~19088~^~421~^26.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~19088~^~430~^0.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19089~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19089~^~317~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19089~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19089~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19089~^~421~^26.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~19089~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~19090~^~291~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~317~^3.0^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19090~^~326~^0.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19090~^~328~^0.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19090~^~401~^0.8^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~421~^26.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~19090~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19091~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19092~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19093~^~291~^1.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~401~^2.2^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19094~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~19094~^~317~^8.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~430~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19095~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~19095~^~291~^0.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19095~^~313~^15.4^4^1.0^~1~^~A~^^^1^14.0^18.5^3^12.0^18.7^~2, 3~^~03/01/2006~ -~19095~^~317~^1.8^1^^~1~^~A~^^^^0.0^4.3^^^^^~03/01/2002~ -~19095~^~326~^0.2^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19095~^~328~^0.2^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19095~^~401~^0.6^21^6.7e-02^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~421~^26.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19095~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~19096~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19096~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~317~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19096~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19096~^~401~^0.9^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~421~^20.3^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~19096~^~430~^0.4^0^^~4~^~BFZN~^~19088~^^^^^^^^^~05/01/2004~ -~19097~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~291~^1.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~317~^1.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19097~^~401~^2.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~421~^7.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19097~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19098~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~291~^3.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~317~^0.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19098~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~421~^14.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19098~^~430~^2.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19099~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~291~^0.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~317~^0.6^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19099~^~401~^0.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~421~^0.0^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~430~^0.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~454~^0.0^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19100~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~19100~^~291~^1.7^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~317~^2.5^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19100~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~421~^10.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19100~^~430~^1.4^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~19101~^~291~^2.5^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~317~^2.9^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19101~^~401~^0.2^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~421~^14.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19101~^~430~^1.6^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19102~^~291~^0.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~317~^2.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~430~^0.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19103~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~19103~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~317~^1.7^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19103~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~421~^5.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19103~^~430~^0.5^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~19104~^~291~^0.9^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~317~^2.2^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19104~^~401~^0.1^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~421~^10.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19104~^~430~^0.8^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19105~^~291~^9.7^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~401~^0.3^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19106~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19106~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19106~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19107~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19107~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19107~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19107~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19107~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19108~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~291~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~317~^1.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19108~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19108~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19109~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~19109~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~317~^5.0^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19109~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~421~^31.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19109~^~429~^0.4^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~430~^5.2^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19110~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~291~^2.2^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~317~^3.5^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19111~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~317~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19111~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~421~^34.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19111~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19112~^~291~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~03/01/2002~ -~19112~^~401~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~03/01/2002~ -~19113~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/1994~ -~19113~^~317~^0.7^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~19113~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19114~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19114~^~291~^0.8^2^^~9~^~MC~^^^1^0.6^1.0^1^^^^~05/01/2004~ -~19114~^~317~^2.2^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19114~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19114~^~401~^1.2^2^^~9~^~MC~^^^1^1.0^1.4^1^^^^~05/01/2004~ -~19114~^~421~^19.6^0^^~4~^~BFSN~^~19270~^^^^^^^^^~04/01/2007~ -~19114~^~430~^0.6^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19115~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19115~^~291~^2.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~317~^1.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19115~^~401~^0.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~421~^37.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19115~^~430~^10.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19116~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~291~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~317~^1.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19116~^~401~^0.0^5^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19116~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19117~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~19117~^~291~^4.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~317~^11.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19117~^~401~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19118~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19118~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~317~^3.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19118~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~421~^37.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19118~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19119~^~291~^2.5^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19120~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~291~^3.4^9^0.1^~1~^~A~^^^^2.7^3.8^^^^^~02/01/2003~ -~19120~^~313~^5.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19120~^~317~^4.5^22^0.1^~1~^~A~^^^1^4.3^4.6^1^2.2^6.6^~4~^~02/01/2003~ -~19120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19120~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~19120~^~421~^46.1^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19120~^~429~^0.0^4^0.0^~1~^~A~^^^^0.0^0.0^^^^^~02/01/2003~ -~19120~^~430~^5.7^4^0.5^~1~^~A~^^^^4.1^6.7^^^^^~02/01/2003~ -~19120~^~454~^2.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19121~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~317~^2.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~328~^0.8^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19121~^~401~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19122~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~317~^2.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19122~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19123~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~291~^0.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~317~^2.3^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~328~^0.8^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19123~^~401~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19124~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~19124~^~291~^4.0^4^0.1^~13~^~AI~^^^1^3.7^4.3^3^3.4^4.4^~4~^~02/01/2003~ -~19124~^~317~^1.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19124~^~401~^0.1^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~421~^45.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19124~^~430~^2.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19125~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/1997~ -~19125~^~291~^5.4^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~317~^3.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19125~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~421~^17.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~430~^1.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19126~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~291~^4.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~317~^5.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19126~^~401~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~421~^47.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19126~^~430~^4.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19127~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~291~^3.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~317~^2.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19127~^~401~^0.2^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~421~^26.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~430~^3.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19128~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~291~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~12/01/2006~ -~19128~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19128~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~421~^0.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19129~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~317~^0.0^20^3.7e-02^~6~^~JA~^^^8^0.0^0.7^18^-4.1e-02^0.1^~4~^~02/01/2003~ -~19129~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19129~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~421~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~19130~^~291~^3.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19132~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19132~^~291~^6.2^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~317~^4.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19132~^~401~^0.2^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~421~^46.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~430~^5.1^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19134~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~291~^3.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~313~^5.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~317~^4.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19134~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~421~^45.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19134~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~430~^5.7^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19135~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~317~^2.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~328~^0.4^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19135~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~421~^16.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19135~^~430~^3.6^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19136~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~291~^1.3^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~19136~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~421~^3.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~430~^8.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19137~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19137~^~291~^0.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19137~^~401~^13.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~421~^9.8^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2006~ -~19137~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19138~^~291~^2.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~317~^3.4^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~401~^0.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~430~^6.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19139~^~291~^6.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19140~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19140~^~291~^3.7^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~317~^4.1^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19140~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~421~^37.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19140~^~430~^3.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~291~^2.8^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~313~^17.5^2^^~1~^~A~^^^1^14.7^20.2^1^^^^~02/01/2006~ -~19141~^~317~^3.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19141~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~421~^21.7^2^^~1~^~A~^^^1^19.8^23.6^1^^^^~12/01/2006~ -~19141~^~430~^4.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~454~^0.8^2^^~1~^~A~^^^1^0.6^1.1^1^^^^~12/01/2006~ -~19142~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~291~^3.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~317~^6.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19142~^~401~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~421~^11.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~430~^1.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19143~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~291~^3.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19143~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~421~^47.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19143~^~430~^3.6^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19144~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19144~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~317~^2.5^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19144~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~421~^24.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19144~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19145~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19146~^~291~^2.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19147~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~291~^4.1^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~317~^4.7^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19147~^~401~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~421~^29.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19147~^~430~^0.0^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19148~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~291~^2.5^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~317~^2.6^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19148~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~421~^13.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19148~^~430~^0.4^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19149~^~291~^2.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19149~^~401~^1.6^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19150~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~291~^3.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~317~^1.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~19150~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19150~^~401~^0.3^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~421~^35.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~291~^3.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~317~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19151~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~421~^28.7^0^^~4~^~BFFN~^~19150~^^^^^^^^^~12/01/2006~ -~19151~^~430~^5.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19152~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~291~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19152~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~421~^20.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19152~^~430~^3.2^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19153~^~291~^2.4^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19154~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~291~^7.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~317~^4.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19154~^~401~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~421~^16.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~430~^0.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19155~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~291~^2.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~313~^36.4^2^^~1~^~A~^^^1^26.6^46.2^1^^^^~02/01/2006~ -~19155~^~317~^7.8^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19155~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~421~^38.5^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19155~^~430~^1.9^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~454~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19156~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19156~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~317~^0.8^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19156~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19156~^~401~^58.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19156~^~430~^2.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19157~^~291~^2.7^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19159~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~291~^1.5^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~317~^1.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19159~^~401~^0.2^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~421~^12.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19159~^~430~^2.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19160~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~291~^1.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~317~^4.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19160~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~421~^20.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19160~^~430~^5.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19161~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~291~^3.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~317~^12.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19161~^~401~^0.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~421~^29.4^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~430~^6.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19162~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~317~^0.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19162~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~421~^25.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19162~^~430~^4.3^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19163~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~291~^2.4^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~313~^5.0^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~19163~^~317~^0.6^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19163~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~19163~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19164~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~291~^6.5^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~317~^0.3^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19165~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19165~^~291~^37.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~19165~^~317~^14.3^3^3.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19165~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19165~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19165~^~421~^12.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19165~^~430~^2.5^0^^~4~^~BFFN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19166~^~291~^29.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~317~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19166~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19166~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~421~^11.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19166~^~430~^2.4^0^^~4~^~BFFN~^~19078~^^^^^^^^^~02/01/2003~ -~19168~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~19168~^~317~^8.8^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~430~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19169~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~317~^16.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~401~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19170~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~317~^6.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~326~^1.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~19170~^~401~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~421~^11.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~428~^0.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~429~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~430~^0.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~454~^0.6^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19171~^~291~^20.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19172~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~291~^0.0^2^^~8~^~LC~^^^1^0.0^0.0^1^^^^~02/01/2003~ -~19172~^~317~^6.7^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19172~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19172~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~421~^3.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19172~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19173~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~313~^69.1^24^14.3^~1~^~A~^^^4^17.9^137.0^8^36.0^102.1^~4~^~03/01/2006~ -~19173~^~317~^1.1^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19173~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~421~^0.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19173~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~454~^0.5^2^^~1~^~A~^^^1^0.1^0.8^1^^^^~03/01/2006~ -~19175~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19175~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19175~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19176~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~317~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19176~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19176~^~430~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19177~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19177~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~317~^39.5^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19177~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19177~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~421~^38.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19177~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19181~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19182~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~291~^0.6^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~317~^7.4^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~401~^0.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~430~^1.6^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19183~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19183~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~317~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19183~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19183~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~421~^9.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19183~^~430~^0.6^4^0.1^~1~^~A~^^^1^0.4^0.9^3^0.3^0.9^~2, 3~^~10/01/2006~ -~19183~^~454~^0.9^2^^~1~^~A~^^^1^0.7^1.2^1^^^^~10/01/2006~ -~19184~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~291~^3.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19184~^~317~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19184~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~421~^3.4^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~430~^1.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19185~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19185~^~291~^1.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19185~^~313~^22.0^23^7.7^~1~^~A~^^^3^4.0^65.0^^4.0^40.0^^~03/01/2006~ -~19185~^~317~^1.7^12^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19185~^~401~^0.9^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19186~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~291~^1.4^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~317~^3.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~401~^2.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~430~^4.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19187~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/1996~ -~19187~^~317~^21.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19187~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19188~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~291~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~317~^3.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19188~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~421~^1.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19189~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~291~^0.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~317~^3.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~326~^1.1^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~328~^1.1^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~421~^11.3^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~428~^0.8^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~430~^0.3^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19190~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~291~^0.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~313~^2.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~317~^2.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~326~^1.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~19190~^~401~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~421~^12.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~429~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~430~^0.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~454~^0.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19191~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19191~^~317~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19191~^~401~^0.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19193~^~221~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19193~^~291~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19193~^~317~^3.2^2^^~1~^~A~^^^1^3.1^3.4^1^^^^~05/01/2013~ -~19193~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19193~^~401~^1.3^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~19193~^~421~^7.8^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~19193~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19194~^~291~^0.7^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19194~^~317~^0.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19194~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19195~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~291~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~317~^1.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~328~^0.8^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19195~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19198~^~291~^0.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19198~^~317~^0.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19198~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19198~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19199~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~317~^1.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19199~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19201~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19201~^~291~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~317~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~19201~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~19201~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~421~^6.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~430~^0.6^4^2.5e-02^~1~^~A~^^^1^0.5^0.8^1^0.3^0.9^~2, 3~^~10/01/2006~ -~19202~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~317~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19202~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~421~^1.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19202~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19203~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19203~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19203~^~313~^22.0^23^7.7^~1~^~A~^^^3^4.0^65.0^^4.0^40.0^^~03/01/2006~ -~19203~^~317~^1.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19203~^~401~^0.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19204~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~317~^2.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~328~^0.8^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19204~^~401~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19205~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~313~^3.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~317~^4.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~326~^1.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~19205~^~401~^0.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~421~^13.5^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~429~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~430~^0.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~454~^0.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19206~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~291~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~317~^0.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19206~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19206~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19207~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~291~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~317~^3.3^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~326~^1.1^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~19207~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~421~^11.2^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~428~^0.8^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~430~^0.2^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19208~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~291~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~317~^1.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~328~^0.8^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19208~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~317~^2.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19209~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~317~^2.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19212~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19213~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~317~^2.3^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~328~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19213~^~401~^0.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~317~^2.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~328~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19214~^~401~^0.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19216~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~291~^3.5^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~317~^1.8^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~401~^0.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~430~^1.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19217~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19217~^~317~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19217~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19218~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2006~ -~19218~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2006~ -~19218~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19218~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19218~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~421~^6.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19218~^~430~^0.4^2^^~1~^~A~^^^1^0.0^0.8^1^^^~1~^~10/01/2006~ -~19219~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19219~^~291~^0.2^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19219~^~317~^2.3^0^^~4~^~RP~^^^^^^^^^^~12/01/1997~ -~19219~^~401~^0.7^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~291~^5.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19220~^~317~^2.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19220~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19221~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~291~^0.5^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~317~^2.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~328~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19221~^~401~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19222~^~291~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19222~^~317~^0.7^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19222~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19223~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~317~^1.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~328~^0.9^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~19223~^~401~^0.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19225~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19225~^~291~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19225~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~19225~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19226~^~291~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19226~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~421~^6.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19226~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19227~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~291~^2.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~317~^2.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19227~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19227~^~401~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~421~^7.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~430~^3.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19228~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~317~^0.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19230~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~317~^0.1^3^2.9e-02^~1~^~A~^^^1^0.1^0.2^2^-1.8e-02^0.2^~2, 3~^~03/01/2003~ -~19230~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19230~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19230~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~421~^2.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19230~^~430~^13.0^3^0.6^~1~^~A~^^^1^12.0^14.1^2^10.3^15.6^~2, 3~^~03/01/2003~ -~19231~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~317~^5.3^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19231~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~317~^5.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~328~^0.9^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19232~^~401~^0.7^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19233~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19233~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~317~^1.7^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19233~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19233~^~401~^1.2^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~421~^4.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19233~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19234~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19234~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19234~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~421~^6.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19234~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19235~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~291~^0.3^3^0.2^~8~^~LC~^^^1^0.0^0.9^2^-0.9^1.5^~4~^~11/01/2006~ -~19235~^~317~^1.6^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19235~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19235~^~401~^0.0^3^0.0^~8~^~LC~^^^1^0.0^0.0^2^0.0^0.0^~4~^~11/01/2006~ -~19235~^~421~^7.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19236~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~291~^3.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~317~^3.4^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~401~^1.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~291~^3.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~317~^1.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~291~^3.9^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~317~^0.2^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19240~^~291~^2.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19240~^~317~^1.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19240~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19241~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19241~^~291~^1.9^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~313~^8.9^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~317~^1.4^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~326~^0.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19241~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19241~^~421~^2.1^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~430~^0.8^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~454~^0.0^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19243~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19244~^~291~^0.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19244~^~317~^0.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19244~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~291~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19246~^~317~^4.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19246~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19247~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19247~^~317~^2.6^0^^~4~^~RP~^^^^^^^^^^~12/01/1997~ -~19247~^~401~^0.0^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19248~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~291~^4.3^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~401~^1.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19249~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~291~^3.3^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~317~^0.7^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19249~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~421~^28.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19249~^~430~^5.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19250~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~401~^1.3^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~291~^2.9^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~317~^0.0^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19254~^~291~^2.4^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~291~^7.6^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19256~^~291~^0.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~291~^2.8^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19260~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~19260~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19260~^~317~^1.9^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19260~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19260~^~401~^0.9^4^2.8e-02^~9~^~MC~^^^1^0.8^0.9^3^0.7^0.9^~4~^~05/01/2004~ -~19260~^~421~^23.0^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~19260~^~430~^2.8^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19263~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~291~^1.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19263~^~317~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19263~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19263~^~401~^9.5^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~421~^4.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19263~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19265~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~291~^0.9^2^^~9~^~MC~^^^1^0.8^1.0^1^^^^~05/01/2004~ -~19265~^~317~^2.9^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19265~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19265~^~401~^0.7^2^^~9~^~MC~^^^1^0.7^0.7^1^^^^~05/01/2004~ -~19265~^~421~^11.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~19265~^~430~^3.6^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19268~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~291~^7.5^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~317~^2.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~430~^5.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19269~^~317~^3.2^12^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19269~^~401~^120.0^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19270~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1995~ -~19270~^~291~^1.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19270~^~313~^22.8^3^2.5^~1~^~A~^^^1^19.0^27.7^2^11.7^33.7^~2, 3~^~03/01/2006~ -~19270~^~317~^2.5^17^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19270~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19270~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19270~^~401~^0.7^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19270~^~421~^22.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19270~^~430~^0.3^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19271~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~291~^0.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~317~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~401~^7.7^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19272~^~401~^90.3^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~291~^7.7^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~401~^81.6^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19274~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~291~^3.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~317~^3.2^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~401~^120.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19279~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~291~^5.7^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~317~^4.3^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19279~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19279~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~421~^40.5^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~430~^5.4^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19280~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19280~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~317~^0.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19280~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19280~^~401~^1.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~421~^4.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19280~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19281~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~19281~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19281~^~401~^0.5^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19283~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~19283~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~04/01/2005~ -~19283~^~313~^73.9^3^11.0^~1~^~A~^^^1^56.5^94.5^2^26.2^121.6^~2, 3~^~04/01/2005~ -~19283~^~317~^0.2^18^0.1^~1~^~A~^^^7^0.0^3.0^17^-0.1^0.5^~4~^~04/01/2005~ -~19283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19283~^~401~^0.7^3^0.2^~1~^~A~^^^1^0.2^1.0^2^-0.4^1.9^~1, 2, 3~^~04/01/2005~ -~19283~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19283~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19292~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19293~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~291~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~317~^3.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19293~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19293~^~401~^0.8^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~421~^20.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19293~^~430~^0.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19294~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~291~^1.5^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~317~^0.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19294~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~421~^2.1^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19295~^~291~^4.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19296~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19296~^~291~^0.2^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19296~^~313~^7.0^9^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19296~^~317~^0.8^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19296~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19296~^~401~^0.5^4^0.1^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~421~^2.2^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19296~^~430~^0.0^2^^~6~^~JA~^^^2^0.0^0.0^1^^^~1~^~11/01/2002~ -~19296~^~454~^1.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19297~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19297~^~291~^1.1^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~313~^19.0^2^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19297~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19297~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19297~^~401~^8.8^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~421~^10.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19297~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19300~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~291~^1.0^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~313~^73.0^13^8.7^~1~^~A~^^^2^64.0^90.0^^35.0^110.0^^~03/01/2006~ -~19300~^~317~^0.4^21^0.1^~6~^~JA~^^^^0.0^2.5^^^^^~11/01/2002~ -~19300~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19300~^~401~^0.9^3^0.1^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~421~^10.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19300~^~430~^0.3^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19301~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~19301~^~291~^2.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~317~^2.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~401~^0.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~430~^2.4^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19302~^~291~^2.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19303~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~291~^0.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~317~^0.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19303~^~401~^4.8^3^2.2^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~421~^3.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19303~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19304~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19304~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19304~^~317~^17.8^5^4.9^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19304~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19304~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19304~^~421~^13.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19304~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19306~^~291~^2.3^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~291~^1.3^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19309~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~401~^58.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19310~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19310~^~291~^8.6^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19310~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~19310~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19312~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~291~^1.0^1^^~13~^~AI~^^^^^^^^^^~02/01/2003~ -~19312~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19312~^~401~^1.7^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~421~^2.8^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19313~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~401~^59.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19314~^~291~^0.6^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~317~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19314~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19314~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19314~^~401~^3.6^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19315~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~401~^56.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19318~^~291~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19318~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19318~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19319~^~221~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~291~^0.0^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19319~^~317~^3.2^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~326~^1.1^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~19319~^~401~^0.0^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~19319~^~421~^11.9^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~428~^0.8^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~429~^0.0^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~430~^0.2^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~454~^0.5^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19320~^~291~^0.3^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19320~^~317~^0.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19320~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19321~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~317~^3.3^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~326~^1.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19321~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~421~^11.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~428~^0.8^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~429~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~430~^0.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~454~^0.5^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19322~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~291~^4.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19322~^~317~^4.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19322~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~421~^3.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19323~^~291~^0.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19323~^~317~^2.0^0^^~4~^~RP~^^^^^^^^^^~12/01/1997~ -~19323~^~401~^0.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~291~^1.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~317~^3.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19324~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~421~^3.7^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19325~^~291~^0.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19325~^~317~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19325~^~401~^0.7^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19326~^~291~^8.7^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~401~^42.6^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~291~^9.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~401~^34.2^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~291~^7.8^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~401~^37.9^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19330~^~291~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19330~^~317~^0.8^0^^~1~^^^^^^^^^^^~12/01/1997~ -~19330~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19331~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19331~^~313~^22.0^23^7.7^~1~^~A~^^^3^4.0^65.0^^4.0^40.0^^~03/01/2006~ -~19331~^~317~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19331~^~401~^0.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~291~^0.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~19332~^~317~^1.1^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~19332~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19333~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~291~^0.0^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~317~^2.4^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~430~^0.0^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19334~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19334~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~317~^1.2^4^0.4^~13~^~AI~^^^1^0.4^2.5^3^-0.1^2.6^~4~^~12/01/2006~ -~19334~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19334~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~421~^2.3^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~19334~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19334~^~454~^0.1^2^^~1~^~A~^^^1^0.0^0.6^^^^~1~^~12/01/2006~ -~19335~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19335~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19335~^~313~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19335~^~317~^0.6^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~19335~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19335~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19335~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~19335~^~430~^0.0^2^^~6~^~JA~^^^2^0.0^0.0^1^^^~1~^~11/01/2002~ -~19336~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2004~ -~19336~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19336~^~317~^0.6^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19336~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~19336~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19337~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19337~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19337~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19340~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2003~ -~19340~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~19340~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19340~^~401~^0.0^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~421~^2.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19340~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19345~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19345~^~317~^1.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19345~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19345~^~421~^0.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19348~^~291~^2.8^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~317~^2.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19348~^~401~^0.2^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~421~^5.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19348~^~430~^2.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19349~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19349~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~317~^2.9^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~19349~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19349~^~401~^0.0^1^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~421~^13.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19349~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19350~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19350~^~291~^0.0^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19350~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2004~ -~19350~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19350~^~401~^0.0^1^^~4~^^^^^^^^^^^~12/01/2004~ -~19350~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~19350~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19351~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19351~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19351~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19351~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~19351~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~19352~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~19352~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~19352~^~317~^12.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19352~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19353~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19353~^~291~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~ -~19353~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19353~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19353~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~ -~19353~^~421~^1.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19353~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19355~^~291~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~317~^1.7^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~19355~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19355~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~421~^13.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19355~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19359~^~291~^1.9^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19360~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19360~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19360~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19362~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19362~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19362~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19363~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~401~^67.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19364~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~291~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~313~^22.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~317~^1.3^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~19364~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~401~^0.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~421~^6.6^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~430~^0.0^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19365~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^ -~19365~^~291~^0.1^0^^~4~^~BFSN~^^^^^^^^^^ -~19365~^~317~^1.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19365~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19365~^~401~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19365~^~430~^0.0^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~ -~19366~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~291~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~317~^0.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19366~^~401~^3.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~421~^1.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19366~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19367~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~291~^2.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~317~^2.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19367~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~421~^11.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19367~^~430~^0.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19368~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~401~^67.1^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19369~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~401~^61.1^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~317~^1.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19370~^~401~^66.8^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19370~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19371~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~291~^0.1^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~317~^0.6^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~221~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~291~^1.9^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~317~^1.2^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~401~^0.0^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19375~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~07/01/2006~ -~19375~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~317~^1.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~430~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~291~^1.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~317~^2.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~401~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~430~^2.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~19382~^~317~^0.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~430~^0.3^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~317~^0.8^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~401~^0.2^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~430~^2.8^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~291~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~19384~^~317~^3.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~430~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19387~^~291~^0.7^0^^~4~^~RC~^^^^^^^^^^~04/01/1996~ -~19387~^~317~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19387~^~401~^13.2^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~291~^2.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19393~^~317~^2.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19393~^~401~^0.3^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19400~^~291~^7.7^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~317~^1.5^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19400~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19400~^~401~^6.3^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~421~^21.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19400~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19401~^~291~^8.4^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~401~^0.4^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19403~^~291~^3.6^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~401~^11.5^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19404~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19404~^~291~^3.8^3^0.3^~1~^~A~^^^1^3.1^4.3^2^2.2^5.4^~2, 3~^~03/01/2006~ -~19404~^~317~^11.1^3^0.8^~1~^~A~^^^1^10.3^12.8^2^7.5^14.7^~2, 3~^~03/01/2006~ -~19404~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19404~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19404~^~421~^16.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19404~^~429~^14.5^3^2.5^~1~^~A~^^^1^10.3^19.1^2^3.4^25.4^~2, 3~^~03/01/2006~ -~19404~^~430~^16.4^3^2.5^~1~^~A~^^^1^11.6^20.1^2^5.5^27.2^~2, 3~^~03/01/2006~ -~19404~^~454~^21.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19405~^~291~^4.0^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~317~^15.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19405~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~291~^5.6^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~317~^15.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19406~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~401~^6.8^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~401~^1.5^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19409~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~291~^1.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~317~^1.6^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~401~^0.1^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~430~^0.7^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19410~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19410~^~291~^2.9^3^0.1^~1~^~A~^^^1^2.6^3.0^2^2.3^3.3^~2, 3~^~05/01/2014~ -~19410~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19410~^~401~^1.2^3^0.2^~1~^~A~^^^1^0.8^1.6^2^7.0e-02^2.2^~2, 3~^~05/01/2014~ -~19410~^~421~^32.8^0^^~4~^~NR~^^^^^^^^^^~03/01/2008~ -~19410~^~430~^7.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~19411~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19411~^~291~^3.1^9^7.4e-02^~1~^~A~^^^1^2.2^3.5^5^2.9^3.3^~2, 3~^~05/01/2014~ -~19411~^~313~^61.3^16^7.0^~1~^~A~^^^2^30.1^85.5^7^44.7^77.9^~4~^~03/01/2006~ -~19411~^~317~^2.5^9^0.7^~1~^~A~^^^1^0.4^5.3^2^-0.7^5.7^~1, 2, 3~^~05/01/2014~ -~19411~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~19411~^~401~^21.6^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~19411~^~421~^12.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19411~^~430~^22.1^2^^~1~^~A~^^^1^19.8^24.3^1^^^^~09/01/2004~ -~19411~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19412~^~291~^3.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19412~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19412~^~401~^8.5^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~291~^2.9^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19414~^~291~^3.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19414~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19415~^~291~^3.4^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19415~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19415~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19415~^~401~^47.3^3^0.4^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~421~^34.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19415~^~430~^22.1^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~19416~^~291~^4.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19418~^~291~^2.8^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~317~^17.1^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19418~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19418~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~421~^17.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~19418~^~430~^8.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19419~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19419~^~291~^1.9^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19419~^~317~^9.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19419~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19419~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19420~^~291~^2.9^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19420~^~317~^15.0^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19420~^~401~^0.2^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19421~^~291~^5.2^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19421~^~401~^54.1^4^13.1^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~19422~^~291~^5.9^0^^~4~^^^^^^^^^^^~02/01/1994~ -~19422~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19422~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19422~^~401~^25.7^3^2.7^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~421~^45.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19422~^~430~^13.3^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19423~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/1998~ -~19423~^~291~^6.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~317~^0.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19423~^~401~^28.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~421~^38.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19423~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~430~^0.0^0^^~4~^~S~^^^^^^^^^^~03/01/2006~ -~19423~^~454~^1.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19424~^~291~^4.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19424~^~401~^0.2^12^5.8e-02^~1~^^^^^^^^^^^~08/01/1991~ -~19433~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19433~^~291~^5.3^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~317~^15.7^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~19433~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19433~^~401~^0.2^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~421~^21.9^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~19433~^~430~^0.2^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~ -~19434~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~19434~^~291~^3.6^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19434~^~317~^9.6^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19434~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19434~^~401~^21.4^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~421~^13.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19434~^~430~^1.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19435~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19435~^~291~^7.4^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19435~^~313~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~317~^8.3^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19435~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19435~^~401~^1.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~421~^22.6^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~430~^1.3^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~454~^0.0^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19436~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~19436~^~291~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~317~^3.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19436~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19436~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2005~ -~19436~^~421~^12.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19436~^~430~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19437~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19437~^~291~^7.5^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19437~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19437~^~401~^9.3^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~421~^54.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19437~^~430~^9.1^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19438~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1995~ -~19438~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19438~^~317~^11.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19438~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19439~^~291~^6.2^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19440~^~291~^2.6^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~401~^0.1^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19441~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19441~^~291~^3.0^3^0.3^~1~^~A~^^^1^2.6^3.6^2^1.4^4.4^~2, 3~^~04/01/2015~ -~19441~^~317~^5.6^3^0.2^~1~^~A~^^^1^5.2^5.9^2^4.7^6.4^~2, 3~^~04/01/2015~ -~19441~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19441~^~401~^7.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~421~^11.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~19441~^~430~^15.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~454~^15.8^1^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~19444~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/1998~ -~19444~^~291~^6.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~317~^9.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19444~^~401~^5.5^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~421~^20.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19444~^~430~^191.9^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19445~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~19445~^~291~^7.3^4^0.8^~1~^~A~^^^1^5.6^8.8^3^4.6^10.0^~2, 3~^~07/01/2008~ -~19445~^~313~^105.5^0^^~4~^~T~^^^^^^^^^^~04/01/2007~ -~19445~^~317~^2.9^4^0.3^~1~^~A~^^^1^2.2^3.5^3^1.6^4.0^~1, 2, 3~^~07/01/2008~ -~19445~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19445~^~401~^108.8^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19445~^~421~^38.8^0^^~4~^~O~^^^^^^^^^^~08/01/2008~ -~19445~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~430~^328.6^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19524~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19524~^~291~^7.2^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~317~^1.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19524~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19524~^~401~^5.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~421~^44.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19524~^~430~^18.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19701~^~291~^5.9^2^^~1~^^^^^^^^^^^~08/01/1993~ -~19701~^~317~^3.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19701~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19702~^~317~^3.6^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19702~^~401~^62.8^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19703~^~317~^25.5^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19703~^~401~^490.0^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19704~^~317~^25.5^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19704~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~19705~^~317~^0.8^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~19705~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~291~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~19706~^~317~^0.9^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~19706~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~291~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~19708~^~317~^0.7^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~19708~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~291~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~19709~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19709~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~291~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~19710~^~317~^0.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19710~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19719~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~291~^0.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~317~^2.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~19719~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19719~^~401~^8.8^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~421~^0.4^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19720~^~291~^0.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19720~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~19720~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19800~^~317~^9.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19800~^~401~^0.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19802~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19802~^~291~^2.2^6^0.3^~1~^~A~^^^^1.3^3.8^^^^^~05/01/2005~ -~19802~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2015~ -~19802~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19802~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~19802~^~429~^5.3^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19802~^~430~^36.1^2^^~1~^~A~^^^^31.5^40.6^^^^^~05/01/2005~ -~19804~^~317~^6.7^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~401~^1.7^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19806~^~291~^15.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19806~^~317~^9.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19806~^~401~^0.0^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~291~^10.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19807~^~317~^7.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19807~^~401~^0.3^5^0.1^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~291~^4.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19809~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19809~^~401~^31.1^93^1.4^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~291~^4.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19810~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19810~^~401~^31.1^93^1.4^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19811~^~291~^4.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19811~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19811~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19811~^~401~^31.1^93^1.4^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~421~^37.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19811~^~430~^22.1^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19812~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19812~^~317~^5.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19812~^~401~^0.0^8^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~291~^2.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19813~^~317~^5.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19813~^~401~^0.0^8^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19814~^~291~^2.8^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19814~^~317~^5.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19814~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19814~^~401~^0.0^8^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~421~^23.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19814~^~430~^0.9^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19816~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~19816~^~291~^4.2^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19816~^~317~^24.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19816~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19816~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~421~^31.6^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19816~^~430~^1.9^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19817~^~317~^16.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19817~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~317~^20.0^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~19818~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~317~^24.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19819~^~401~^3.0^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~317~^17.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19820~^~401~^0.0^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~401~^1.4^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~401~^1.3^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19823~^~221~^0.0^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~291~^6.1^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~317~^8.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19823~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19823~^~401~^25.7^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~421~^53.0^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~19823~^~430~^13.3^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19833~^~291~^5.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19833~^~317~^15.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~19833~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19833~^~401~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~421~^23.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19833~^~430~^20.9^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19856~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~313~^76.6^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~401~^1.2^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19857~^~291~^5.3^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~317~^13.0^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~401~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19858~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~291~^2.5^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19858~^~317~^1.7^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19858~^~401~^0.0^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~421~^26.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19858~^~430~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~19860~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19860~^~291~^33.9^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~317~^12.3^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~19860~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19860~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~421~^11.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19860~^~430~^4.4^0^^~4~^~BFFN~^~19166~^^^^^^^^^~03/01/2003~ -~19866~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~291~^2.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~317~^1.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19866~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~421~^5.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19866~^~430~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19867~^~221~^0.0^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~291~^1.0^4^0.4^~1~^^^^^0.1^2.0^^^^^~10/01/2002~ -~19867~^~317~^2.9^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19867~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~421~^23.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19867~^~430~^0.0^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19868~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~291~^0.0^0^^~4~^~BFZN~^~43158~^^^^^^^^^~04/01/2005~ -~19868~^~317~^0.0^0^^~4~^~BFZN~^~43158~^^^^^^^^^~03/01/2003~ -~19868~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19868~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19868~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19871~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~19871~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~317~^1.7^0^^~4~^~BFNN~^~42131~^^^^^^^^^~07/01/2015~ -~19871~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19871~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~19871~^~421~^11.7^0^^~4~^~BFZN~^~19265~^^^^^^^^^~03/01/2007~ -~19871~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19873~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~04/01/2005~ -~19873~^~313~^88.9^3^1.6^~1~^~A~^^^1^85.6^90.6^2^81.7^96.1^~2, 3~^~04/01/2005~ -~19873~^~401~^10.4^3^0.3^~1~^~A~^^^1^9.7^10.9^2^8.8^11.8^~2, 3~^~04/01/2005~ -~19874~^~291~^6.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~291~^0.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~401~^1.1^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~291~^0.2^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~291~^5.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~291~^0.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~401~^1.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~291~^0.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~401~^1.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~291~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~291~^0.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~401~^0.9^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~291~^0.5^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~291~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~291~^0.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~401~^0.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~291~^4.3^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~291~^4.3^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~291~^3.9^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19890~^~401~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~291~^3.6^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19891~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~291~^7.5^1^^~9~^~MC~^^^^^^^^^^~09/01/2015~ -~19892~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~401~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~291~^5.8^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~291~^1.0^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~401~^0.7^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19896~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~291~^3.6^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~317~^3.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~19896~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~421~^20.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19896~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19897~^~291~^10.4^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~401~^27.3^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19898~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~19898~^~291~^4.8^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19898~^~317~^2.6^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~19898~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19898~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19898~^~401~^0.6^21^6.7e-02^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~421~^26.0^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~430~^0.3^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19899~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19899~^~291~^4.8^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19899~^~317~^2.5^17^0.3^~1~^~A~^^^^^^^^^^~05/01/2007~ -~19899~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~19899~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~19899~^~401~^0.7^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19899~^~421~^22.5^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19899~^~430~^0.3^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19902~^~291~^7.0^5^7.9e-02^~1~^~A~^^^1^6.4^7.7^1^6.3^7.6^~2, 3~^~08/01/2008~ -~19902~^~317~^3.0^3^^~1~^~A~^^^1^2.2^4.2^^^^~1, 2, 3~^~08/01/2008~ -~19902~^~428~^0.1^3^^~1~^~A~^^^1^0.0^0.3^^^^~1, 2, 3~^~08/01/2008~ -~19902~^~429~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~430~^8.1^3^^~1~^~A~^^^1^7.4^8.4^^^^~2, 3~^~08/01/2008~ -~19903~^~291~^8.0^6^8.2e-02^~1~^~A~^^^1^6.9^9.1^3^7.7^8.2^~2, 3~^~08/01/2008~ -~19903~^~317~^8.4^3^^~1~^~A~^^^1^5.4^11.4^^^^~2, 3~^~08/01/2008~ -~19903~^~428~^0.0^3^^~1~^~A~^^^1^0.0^0.2^^^^~1, 2, 3~^~08/01/2008~ -~19903~^~429~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~430~^7.2^3^^~1~^~A~^^^1^6.4^8.1^^^^~2, 3~^~08/01/2008~ -~19904~^~291~^10.9^2^^~1~^~A~^^^1^9.8^12.5^^^^^~08/01/2008~ -~19904~^~317~^6.8^2^^~1~^~A~^^^1^6.1^7.3^^^^^~08/01/2008~ -~19904~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2009~ -~19904~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2009~ -~19904~^~430~^7.3^2^^~1~^~A~^^^1^7.2^7.5^^^^^~08/01/2008~ -~19905~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~291~^7.2^13^7.1e-02^~1~^~A~^^^1^6.4^12.5^1^6.6^7.8^~2, 3~^~08/01/2008~ -~19905~^~317~^3.5^8^^~1~^~A~^^^1^2.2^11.4^^^^~1, 2, 3~^~08/01/2008~ -~19905~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~421~^27.6^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~19905~^~428~^0.1^8^^~1~^~A~^^^1^0.0^0.3^^^^~1, 2, 3~^~08/01/2008~ -~19905~^~429~^0.0^8^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~430~^8.0^8^^~1~^~A~^^^1^6.4^8.4^^^^~2, 3~^~08/01/2008~ -~19909~^~291~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19910~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~291~^3.3^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~317~^0.7^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19910~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~421~^28.2^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~19910~^~430~^5.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19911~^~291~^0.0^0^^~4~^~T~^^^^^^^^^^~07/01/2011~ -~19911~^~401~^0.0^0^^~4~^~T~^^^^^^^^^^~07/01/2011~ -~19912~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19912~^~291~^0.2^3^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~05/01/2011~ -~19912~^~317~^1.7^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~328~^0.0^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~401~^17.0^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~421~^13.3^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~430~^22.5^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19913~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~291~^1.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~317~^11.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~19913~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~421~^13.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~430~^3.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19914~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19914~^~313~^4.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~317~^3.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~421~^36.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~430~^5.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19916~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~291~^2.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19916~^~313~^63.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~317~^2.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~421~^1.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~430~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~291~^2.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19917~^~313~^2.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~317~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19917~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19917~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19917~^~421~^29.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~429~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~430~^4.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19918~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~317~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~401~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~421~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~430~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19919~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~313~^0.5^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~317~^1.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~401~^136.4^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~421~^0.3^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19920~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~291~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~313~^1.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~401~^18.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~421~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~291~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~317~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~421~^4.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~430~^1.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~291~^6.4^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~317~^8.6^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~401~^2.7^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~421~^10.0^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~454~^0.7^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19923~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~291~^3.8^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~317~^5.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~19923~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~421~^35.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~454~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19924~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~313~^25.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~317~^1.5^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~421~^0.9^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~20001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~20001~^~291~^6.7^5^8.0e-03^~1~^~A~^^^2^6.3^7.4^1^6.6^6.8^~2~^~05/01/2008~ -~20001~^~317~^18.7^3^13.9^~1~^~A~^^^1^2.2^46.5^2^-41.3^78.8^~1, 4~^~05/01/2008~ -~20001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20001~^~401~^4.2^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~421~^69.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20001~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~20001~^~454~^67.6^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20002~^~291~^2.1^3^^~1~^~A~^^^1^1.9^2.4^^^^~2~^~04/01/2007~ -~20002~^~317~^5.5^3^^~1~^~A~^^^1^2.2^12.1^^^^~1, 2~^~04/01/2007~ -~20003~^~291~^3.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20003~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20004~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~291~^17.3^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~317~^37.7^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20004~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20004~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20004~^~430~^2.2^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20005~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20005~^~291~^15.6^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~317~^37.7^6^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20005~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20005~^~421~^37.8^0^^~4~^~BFZN~^~20130~^^^^^^^^^~03/01/2007~ -~20005~^~430~^2.2^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20006~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20006~^~291~^3.8^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~317~^8.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20006~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20006~^~421~^13.4^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2007~ -~20006~^~430~^0.8^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~ -~20008~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20008~^~291~^10.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20008~^~317~^8.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20008~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20008~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20009~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1994~ -~20009~^~291~^10.3^0^^~4~^^^^^^^^^^^~04/01/1994~ -~20009~^~317~^8.4^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20009~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20009~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20009~^~421~^54.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20009~^~454~^2.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20010~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/1994~ -~20010~^~291~^2.7^0^^~4~^^^^^^^^^^^~04/01/1994~ -~20010~^~317~^2.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20010~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20010~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20010~^~421~^20.1^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~20010~^~430~^1.9^0^^~4~^~BFSN~^~20011~^^^^^^^^^~03/01/2003~ -~20010~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~20011~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20011~^~291~^10.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~317~^5.7^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20011~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20011~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20011~^~421~^54.2^0^^~4~^~BFZN~^~20009~^^^^^^^^^~12/01/2006~ -~20011~^~430~^7.0^0^^~4~^~T~^~20080~^^^^^^^^^~12/01/2006~ -~20012~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20012~^~291~^12.5^0^^~4~^~O~^^^^^^^^^^~04/01/2014~ -~20012~^~317~^2.3^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20012~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20012~^~421~^28.1^0^^~4~^~BFSN~^~20013~^^^^^^^^^~03/01/2007~ -~20012~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20013~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20013~^~291~^4.5^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20013~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20013~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20013~^~421~^6.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~20013~^~430~^0.5^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~454~^83.4^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20014~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20014~^~291~^7.3^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~317~^15.5^5^3.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20014~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20014~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~430~^0.3^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20015~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20015~^~291~^79.0^3^4.4^~1~^~A~^^^3^71.2^86.7^2^59.7^98.2^~2~^~05/01/2004~ -~20015~^~317~^16.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20015~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20015~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20015~^~421~^18.1^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20015~^~430~^0.3^0^^~4~^~BFZN~^~20022~^^^^^^^^^~11/01/2002~ -~20015~^~454~^4.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20016~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20016~^~291~^7.3^0^^~4~^~BFZN~^~20020~^^^^^^^^^~05/01/2006~ -~20016~^~317~^15.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20016~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20016~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20016~^~421~^21.6^0^^~4~^~BFZN~^~20020~^^^^^^^^^~01/01/2007~ -~20016~^~430~^0.3^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20017~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20017~^~291~^6.4^5^0.9^~1~^~A~^^^2^5.0^8.2^1^-5.7^18.4^~2~^~12/01/2009~ -~20017~^~317~^10.5^0^^~4~^~BFZN~^~20022~^^^^^^^^^~07/01/2014~ -~20017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20017~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20017~^~421~^8.6^0^^~4~^~BFZN~^~20022~^^^^^^^^^~03/01/2010~ -~20017~^~430~^0.0^0^^~4~^~BFZN~^~20022~^^^^^^^^^~03/01/2010~ -~20018~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20018~^~291~^1.9^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~317~^8.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20018~^~401~^0.0^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~430~^0.3^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20019~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2010~ -~20019~^~291~^6.4^5^0.9^~1~^~A~^^^2^5.0^8.2^1^-5.7^18.4^~2~^~12/01/2009~ -~20019~^~317~^10.5^0^^~4~^~BFZN~^~20022~^^^^^^^^^~07/01/2014~ -~20019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~401~^0.0^0^^~4~^^^^^^^^^^^~01/01/2010~ -~20019~^~421~^8.6^0^^~4~^~BFZN~^~20022~^^^^^^^^^~01/01/2010~ -~20019~^~430~^0.0^0^^~4~^~BFZN~^~20022~^^^^^^^^^~01/01/2010~ -~20020~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20020~^~291~^7.3^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~317~^15.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20020~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20020~^~421~^21.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~20020~^~430~^0.3^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~454~^11.6^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20022~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20022~^~291~^3.9^8^0.2^~1~^~A~^^^3^1.8^4.4^2^2.7^4.9^~2~^~12/01/2009~ -~20022~^~317~^10.5^7^1.4^~1~^~A~^^^2^2.2^13.8^4^6.5^14.5^~1, 2, 3~^~12/01/2009~ -~20022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20022~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2009~ -~20022~^~421~^8.6^3^1.8^~1~^~AS~^^^2^4.3^11.7^1^-15.2^32.5^~2, 3~^~12/01/2009~ -~20022~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~20022~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2006~ -~20022~^~454~^1.0^3^0.5^~1~^~A~^^^2^0.4^2.0^1^-5.9^7.8^~2, 3~^~12/01/2009~ -~20023~^~291~^6.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20023~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20024~^~291~^6.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20024~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20025~^~291~^7.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20025~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20027~^~291~^0.9^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~317~^2.8^8^0.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20027~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20027~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~421~^0.4^0^^~4~^~BFPN~^~20022~^^^^^^^^^~02/01/2007~ -~20027~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20028~^~291~^5.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20028~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20029~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20029~^~291~^1.4^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20029~^~317~^27.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20029~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~20029~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20029~^~421~^3.3^0^^~4~^~BFSN~^~20081~^^^^^^^^^~03/01/2007~ -~20029~^~430~^0.1^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20030~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20030~^~291~^2.5^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~317~^3.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20030~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20030~^~401~^0.3^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20030~^~421~^3.1^0^^~4~^~BFSN~^~08091~^^^^^^^^^~03/01/2007~ -~20030~^~430~^0.2^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20031~^~291~^8.5^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~317~^2.7^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20031~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20031~^~430~^0.9^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~20032~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20032~^~291~^1.3^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20032~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20032~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~421~^11.2^0^^~4~^~CASN~^^^^^^^^^^~03/01/2007~ -~20032~^~430~^0.3^0^^~4~^~BFSN~^~20031~^^^^^^^^^~02/01/2003~ -~20033~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20033~^~291~^15.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~317~^45.2^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20033~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20033~^~421~^32.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20033~^~430~^3.2^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~454~^19.6^2^^~1~^~A~^^^1^18.0^21.2^^^^^~12/01/2006~ -~20034~^~291~^2.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20034~^~317~^7.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20034~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20035~^~291~^7.0^3^0.5^~1~^~A~^^^1^6.1^8.0^2^4.6^9.3^~2, 3~^~04/01/2007~ -~20035~^~317~^8.5^3^3.2^~1~^~A~^^^1^2.2^13.0^2^-5.4^22.4^~1, 2, 3~^~04/01/2007~ -~20035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20035~^~421~^70.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20035~^~428~^1.1^3^1.0^~1~^~A~^^^1^0.0^3.3^2^-3.6^5.8^~1, 2, 3~^~04/01/2007~ -~20035~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~454~^630.4^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20036~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20036~^~291~^3.6^3^0.1^~1~^~A~^^^1^2.9^3.9^1^1.5^5.6^~2, 3~^~04/01/2015~ -~20036~^~317~^17.1^3^8.4e-02^~1~^~A~^^^1^14.7^29.0^1^16.0^18.1^~2, 3~^~04/01/2015~ -~20036~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20036~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20036~^~421~^21.5^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20036~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~20036~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~20036~^~430~^0.6^2^^~1~^~A~^^^1^0.6^0.9^^^^^~04/01/2015~ -~20037~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20037~^~291~^1.6^3^5.0e-02^~1~^~A~^^^1^1.3^1.7^1^0.9^2.2^~2, 3~^~04/01/2015~ -~20037~^~317~^5.8^3^0.1^~1~^~A~^^^1^4.9^9.6^1^4.1^7.3^~2, 3~^~04/01/2015~ -~20037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20037~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20037~^~421~^9.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20037~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~20037~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2015~ -~20037~^~430~^0.2^2^^~1~^~A~^^^1^0.2^0.3^^^^^~04/01/2015~ -~20037~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~20038~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20038~^~291~^10.6^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20038~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20038~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20040~^~291~^3.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20040~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20041~^~291~^1.8^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20041~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20041~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20042~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~291~^3.5^3^0.1^~1~^~A~^^^1^3.3^3.8^2^2.9^4.1^~2, 3~^~03/01/2015~ -~20042~^~317~^25.2^3^4.9^~1~^~A~^^^1^19.1^35.0^2^3.8^46.5^~2, 3~^~03/01/2015~ -~20042~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20042~^~421~^9.1^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20042~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2015~ -~20042~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2015~ -~20042~^~430~^0.9^2^^~1~^~A~^^^1^0.9^1.0^1^^^^~03/01/2015~ -~20044~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20044~^~291~^1.3^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~317~^15.1^7^5.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20044~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20044~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20044~^~421~^5.8^0^^~4~^~BFSN~^~20045~^^^^^^^^^~12/01/2006~ -~20044~^~430~^0.1^0^^~4~^~BFSN~^~20045~^^^^^^^^^~09/01/2002~ -~20045~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20045~^~291~^0.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~313~^41.1^21^12.7^~1~^~A~^^^3^3.0^78.9^6^9.8^72.4^~4~^~03/01/2006~ -~20045~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20045~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20045~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20045~^~421~^2.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20045~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.1^1^^^~1~^~09/01/2002~ -~20045~^~454~^0.3^2^^~1~^~A~^^^1^0.2^0.5^1^^^^~03/01/2006~ -~20046~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~20046~^~291~^1.8^3^0.7^~1~^~A~^^^3^0.9^3.2^2^-1.2^4.8^~2~^~12/01/2009~ -~20046~^~317~^19.9^2^^~1~^~A~^^^2^16.0^23.9^^^^^~12/01/2009~ -~20046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20046~^~401~^0.0^1^^~4~^^^^^^^^^^^~03/01/2005~ -~20046~^~421~^6.0^0^^~4~^~BFSN~^~20045~^^^^^^^^^~12/01/2006~ -~20046~^~430~^0.1^0^^~4~^~BFZN~^~20044~^^^^^^^^^~07/01/2010~ -~20047~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20047~^~291~^0.9^3^0.5^~1~^~A~^^^2^0.4^1.5^1^-5.8^7.6^~2~^~02/01/2005~ -~20047~^~317~^9.3^11^1.0^~1~^~A~^^^2^3.7^12.4^1^-3.8^22.4^~1, 2~^~02/01/2005~ -~20047~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20047~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20047~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~12/01/2006~ -~20047~^~430~^0.0^0^^~4~^~BFSN~^~20046~^^^^^^^^^~02/01/2005~ -~20048~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20048~^~291~^1.9^3^0.6^~1~^~A~^^^2^1.2^2.6^1^-6.2^10.1^~2~^~02/01/2005~ -~20048~^~317~^37.2^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20048~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20048~^~421~^6.1^0^^~4~^~BFSN~^~20045~^^^^^^^^^~03/01/2007~ -~20048~^~430~^0.1^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20049~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20049~^~291~^0.6^5^0.1^~1~^~A~^^^2^0.4^0.9^1^-1.7^3.0^~2~^~02/01/2005~ -~20049~^~317~^4.8^7^0.5^~1~^~A~^^^1^2.8^7.3^6^3.4^6.1^~4~^~02/01/2005~ -~20049~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20049~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20049~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~03/01/2007~ -~20049~^~430~^0.0^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2005~ -~20050~^~291~^1.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~317~^15.1^7^5.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20050~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20050~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20051~^~291~^0.3^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20051~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20051~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~291~^2.8^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~317~^15.1^7^5.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20052~^~401~^0.0^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20053~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20053~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20053~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~291~^2.8^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~317~^15.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~20054~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20054~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20055~^~291~^1.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~317~^5.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20055~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~12/01/2006~ -~20055~^~430~^0.0^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20058~^~291~^0.9^4^7.5e-02^~1~^~A~^^^1^0.7^1.0^3^0.6^1.1^~4~^~05/01/2008~ -~20060~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20060~^~291~^21.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~317~^15.6^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20060~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20060~^~421~^32.2^0^^~4~^~BFSN~^~20037~^^^^^^^^^~03/01/2007~ -~20060~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~11/01/2002~ -~20061~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20061~^~291~^2.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~317~^15.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20061~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20061~^~421~^5.8^0^^~4~^~BFSN~^~20045~^^^^^^^^^~02/01/2007~ -~20061~^~430~^0.0^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20062~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20062~^~291~^15.1^10^0.2^~1~^~A~^^^1^13.8^16.3^9^14.4^15.6^~4~^~06/01/2009~ -~20062~^~317~^13.9^10^2.5^~1~^~A~^^^1^0.1^25.8^9^8.0^19.6^~1, 4~^~06/01/2009~ -~20062~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20062~^~401~^0.0^10^0.0^~1~^~A~^^^1^0.0^0.0^9^0.0^0.0^~1, 4~^~06/01/2009~ -~20062~^~421~^30.4^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~20062~^~430~^5.9^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20062~^~454~^146.1^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20063~^~291~^23.8^13^1.1^~1~^~A~^^^2^22.5^28.1^1^8.5^39.0^~2~^~06/01/2009~ -~20063~^~317~^18.0^12^2.3^~1~^~A~^^^1^4.7^34.8^11^12.9^23.1^~4~^~06/01/2009~ -~20063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20063~^~401~^0.0^12^0.0^~1~^~A~^^^1^0.0^0.0^11^0.0^0.0^~1, 4~^~06/01/2009~ -~20063~^~421~^30.4^0^^~4~^~BFZN~^~20062~^^^^^^^^^~06/01/2009~ -~20063~^~430~^5.9^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20064~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20064~^~291~^11.8^12^1.0^~1~^~A~^^^2^10.7^14.2^1^-2.1^25.7^~2~^~06/01/2009~ -~20064~^~317~^14.4^11^3.2^~1~^~A~^^^1^1.1^42.0^10^7.0^21.6^~4~^~06/01/2009~ -~20064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20064~^~401~^0.0^11^0.0^~1~^~A~^^^1^0.0^0.0^10^0.0^0.0^~1, 4~^~06/01/2009~ -~20064~^~421~^20.6^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~20064~^~430~^5.9^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20065~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20065~^~291~^8.0^12^0.2^~1~^~A~^^^1^7.1^9.4^11^7.5^8.4^~4~^~06/01/2009~ -~20065~^~317~^17.6^12^2.0^~1~^~A~^^^1^6.6^25.9^11^13.1^22.0^~4~^~06/01/2009~ -~20065~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20065~^~401~^0.0^12^0.0^~1~^~A~^^^1^0.0^0.0^11^0.0^0.0^~1, 4~^~06/01/2009~ -~20065~^~421~^10.8^0^^~4~^~O~^^^^^^^^^^~06/01/2009~ -~20065~^~430~^5.9^0^^~4~^~BFZN~^~20063~^^^^^^^^^~09/01/2002~ -~20066~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~20066~^~291~^3.9^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~317~^89.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1999~ -~20066~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20066~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20067~^~291~^6.7^6^0.4^~1~^~A~^^^2^6.0^8.6^1^1.6^11.7^~2~^~04/01/2014~ -~20067~^~317~^12.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2012~ -~20067~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20067~^~401~^0.0^5^0.0^~1~^~A~^^^1^0.0^0.0^4^0.0^0.0^~1, 4~^~04/01/2014~ -~20068~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20068~^~291~^0.9^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~317~^0.8^5^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20068~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20068~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20068~^~421~^1.2^0^^~4~^~BFPN~^~11354~^^^^^^^^^~02/01/2007~ -~20068~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20069~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20069~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20070~^~291~^14.6^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20070~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20071~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20071~^~291~^12.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20071~^~317~^70.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~20071~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20071~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20071~^~421~^31.2^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2007~ -~20071~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20072~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20072~^~291~^12.2^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20072~^~317~^70.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~20072~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~20072~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20072~^~421~^31.2^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2007~ -~20072~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20073~^~291~^12.5^0^^~4~^~BFCN~^^^^^^^^^^~10/01/1995~ -~20073~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20073~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~291~^12.2^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20074~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20074~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20074~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20075~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20075~^~291~^12.7^0^^~4~^~BFCN~^^^^^^^^^^~10/01/1995~ -~20075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20075~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20075~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20076~^~317~^89.4^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20076~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20076~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20077~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20077~^~291~^42.8^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~317~^77.6^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20077~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20077~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20077~^~421~^74.4^0^^~4~^~BFZN~^~08363~^^^^^^^^^~03/01/2007~ -~20077~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20078~^~291~^13.2^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~317~^79.2^1^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20078~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20078~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20080~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20080~^~291~^10.7^7^0.2^~1~^~A~^^^2^10.0^12.0^5^10.0^11.4^~2, 3~^~01/01/2010~ -~20080~^~317~^61.8^6^10.5^~1~^~A~^^^4^18.3^87.0^3^28.1^95.5^~2~^~01/01/2010~ -~20080~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20080~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20080~^~421~^31.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20080~^~430~^1.9^2^^~1~^~A~^^^2^1.1^2.6^1^^^^~01/01/2010~ -~20080~^~454~^72.8^2^^~1~^~A~^^^1^63.6^81.9^1^^^^~01/01/2010~ -~20081~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20081~^~291~^2.7^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~317~^33.9^46^3.1^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20081~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20081~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20081~^~421~^10.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20081~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20081~^~454~^70.3^2^^~1~^~A~^^^2^54.1^86.4^^^^^~08/01/2007~ -~20082~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20082~^~291~^2.7^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20082~^~317~^34.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20082~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20082~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20082~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20082~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20083~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20083~^~291~^2.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~317~^39.7^15^4.3^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20083~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20083~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20083~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20083~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20084~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20084~^~291~^1.7^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~317~^4.9^6^0.4^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20084~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20084~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20084~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20084~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20086~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20086~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~421~^11.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~20086~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~20087~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20087~^~291~^1.1^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20087~^~317~^42.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20087~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20087~^~401~^2.6^8^0.4^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20088~^~291~^6.2^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~317~^2.8^2^^~1~^~A~^^^^^^^^^^~12/01/1992~ -~20088~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20088~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20088~^~421~^35.0^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~20088~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/1994~ -~20089~^~291~^1.8^4^0.1^~1~^~A~^^^2^1.7^2.0^1^0.5^3.0^~2~^~03/01/2003~ -~20089~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20089~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20089~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20089~^~421~^10.2^0^^~4~^~CASN~^^^^^^^^^^~03/01/2007~ -~20089~^~430~^0.5^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20090~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20090~^~291~^4.6^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20090~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20091~^~291~^11.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~317~^7.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20091~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20092~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20092~^~291~^4.8^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20092~^~317~^2.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20092~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20094~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20096~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20105~^~291~^4.3^0^^~1~^^^^^^^^^^^~10/01/1995~ -~20105~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20105~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20106~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20106~^~291~^4.3^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20106~^~317~^19.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20106~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20106~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20106~^~421~^5.0^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~20106~^~430~^0.3^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~20109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20109~^~291~^3.3^3^0.3^~1~^~A~^^^1^2.9^3.9^2^1.9^4.5^~2, 3~^~11/01/2004~ -~20109~^~317~^78.8^3^3.8^~1~^~A~^^^1^71.3^83.8^2^62.3^95.2^~2, 3~^~11/01/2004~ -~20109~^~328~^0.3^0^^~6~^~RKI~^^^^^^^^^^~02/01/2009~ -~20109~^~401~^0.0^0^^~4~^^^^^^^^^^^~11/01/2004~ -~20109~^~421~^78.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~20109~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~430~^0.5^3^3.3e-02^~1~^~A~^^^1^0.4^0.5^2^0.3^0.6^~2, 3~^~11/01/2004~ -~20109~^~454~^131.7^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~20110~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20110~^~291~^1.2^6^0.1^~1~^~A~^^^4^0.9^1.7^3^0.7^1.7^~2~^~11/01/2004~ -~20110~^~313~^6.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~20110~^~317~^23.9^41^1.6^~1~^~A~^^^13^5.6^43.8^12^20.3^27.3^~2~^~11/01/2004~ -~20110~^~328~^0.1^0^^~4~^~BFSN~^~20109~^^^^^^^^^~02/01/2009~ -~20110~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20110~^~421~^25.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~20110~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~430~^0.0^4^4.5e-02^~1~^~A~^^^2^0.0^0.1^1^-0.5^0.6^~1, 2~^~11/01/2004~ -~20110~^~454~^19.2^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~20111~^~291~^6.8^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20112~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20112~^~291~^2.3^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20112~^~317~^21.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20112~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~20112~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~421~^25.7^0^^~4~^~BFZN~^~20110~^^^^^^^^^~03/01/2007~ -~20112~^~430~^101.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~20113~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~291~^6.7^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~317~^28.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~421~^9.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~430~^5.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20114~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20115~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20115~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20116~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1994~ -~20116~^~291~^4.3^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~317~^8.3^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20116~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20117~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~291~^1.9^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~313~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~317~^32.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~421~^8.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~430~^6.3^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20120~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20120~^~291~^3.2^6^6.6e-02^~1~^~A~^^^3^3.0^3.4^2^2.9^3.4^~2~^~10/01/2004~ -~20120~^~313~^18.0^6^6.0^~1~^~A~^^^1^6.0^25.0^2^-7.9^43.9^~4~^~05/01/2006~ -~20120~^~317~^63.2^26^2.6^~1~^~A~^^^3^50.2^77.5^2^51.8^74.6^~2~^~10/01/2004~ -~20120~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20120~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20120~^~421~^15.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20120~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2004~ -~20120~^~430~^0.1^3^7.5e-02^~1~^~A~^^^2^0.0^0.2^1^-0.8^1.0^~1, 2~^~10/01/2004~ -~20120~^~454~^142.4^2^^~1~^~A~^^^2^130.4^154.3^^^^^~08/01/2007~ -~20121~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20121~^~291~^1.8^18^0.1^~1~^~A~^^^6^1.3^2.3^5^1.5^2.0^~2~^~10/01/2004~ -~20121~^~313~^7.0^9^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~20121~^~317~^26.4^50^1.4^~1~^~A~^^^14^3.4^51.5^13^23.2^29.5^~2~^~10/01/2004~ -~20121~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20121~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20121~^~421~^6.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20121~^~429~^0.5^3^0.0^~1~^~A~^^^2^0.0^1.4^^^^~1, 2, 3~^~10/01/2004~ -~20121~^~430~^0.0^4^1.7e-02^~1~^~A~^^^3^0.0^0.1^2^-5.5e-02^8.8e-02^~1, 2~^~10/01/2004~ -~20121~^~454~^68.0^2^^~1~^~A~^^^2^34.9^101.1^^^^^~03/01/2006~ -~20124~^~291~^9.2^6^0.4^~1~^~A~^^^1^7.8^10.0^3^7.6^10.6^~2, 3~^~06/01/2015~ -~20124~^~317~^77.6^6^11.7^~1~^~A~^^^1^42.9^100.0^2^20.2^134.9^~2, 3~^~06/01/2015~ -~20124~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20124~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~20124~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~20124~^~430~^1.4^2^^~1~^~A~^^^1^0.9^1.8^^^^^~06/01/2015~ -~20125~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20125~^~291~^3.9^6^8.5e-02^~1~^~A~^^^1^3.5^4.2^3^3.6^4.2^~2, 3~^~05/01/2015~ -~20125~^~317~^36.3^6^2.9^~1~^~A~^^^1^17.2^45.4^3^26.9^45.6^~2, 3~^~05/01/2015~ -~20125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20125~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20125~^~421~^6.5^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20125~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~20125~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2015~ -~20125~^~430~^0.6^2^^~1~^~A~^^^1^0.2^0.9^^^^^~05/01/2015~ -~20126~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20126~^~291~^10.6^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~317~^63.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20126~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20126~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20126~^~421~^17.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~430~^151.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20127~^~317~^22.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20127~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20127~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20129~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~20129~^~291~^2.4^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~317~^39.7^15^4.3^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20129~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20129~^~401~^0.0^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20129~^~421~^10.4^0^^~4~^~BFZN~^~20083~^^^^^^^^^~12/01/2006~ -~20129~^~430~^0.3^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20130~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~291~^10.1^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~317~^37.7^0^^~4~^~BFZN~^~20005~^^^^^^^^^~09/01/2002~ -~20130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20130~^~401~^0.0^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~421~^37.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~20130~^~430~^2.2^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20130~^~454~^65.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~20131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20131~^~291~^7.1^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~317~^37.7^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20131~^~401~^0.6^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~430~^2.2^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20132~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~291~^6.5^2^^~1~^~A~^^^1^5.5^7.5^1^^^^~09/01/2002~ -~20132~^~317~^34.0^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20132~^~401~^0.0^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~421~^29.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20132~^~430~^3.2^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~454~^30.7^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20133~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20133~^~291~^1.6^3^0.4^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~317~^15.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20133~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20133~^~401~^0.0^3^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~421~^5.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20133~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20134~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~317~^4.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20134~^~401~^0.0^3^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~421~^1.6^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~20135~^~291~^10.1^4^0.3^~1~^~A~^^^1^9.0^12.1^2^8.5^11.7^~2, 3~^~06/01/2015~ -~20135~^~317~^69.4^3^1.6^~1~^~A~^^^1^67.2^72.6^2^62.2^76.4^~2, 3~^~06/01/2015~ -~20135~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20135~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20135~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20136~^~291~^4.6^4^9.6e-02^~1~^~A~^^^1^4.4^5.1^2^4.2^5.0^~2, 3~^~06/01/2015~ -~20136~^~317~^34.2^3^4.8^~1~^~A~^^^1^28.8^43.8^2^13.4^54.9^~2, 3~^~06/01/2015~ -~20137~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~291~^2.8^3^0.3^~1~^~A~^^^1^2.3^3.5^2^1.1^4.3^~2, 3~^~03/01/2007~ -~20137~^~317~^2.8^3^0.5^~1~^~A~^^^1^2.2^3.9^2^0.3^5.1^~1, 2, 3~^~03/01/2007~ -~20137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20137~^~421~^23.0^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~430~^0.0^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20138~^~291~^11.1^4^2.0^~1~^~A~^^^2^8.5^14.0^1^-14.9^37.0^~2~^~06/01/2013~ -~20138~^~317~^81.5^4^17.0^~1~^~A~^^^2^22.8^120.0^1^-135.1^298.0^~2~^~06/01/2013~ -~20138~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2013~ -~20138~^~421~^25.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20138~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~20138~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~20138~^~430~^1.8^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20138~^~454~^113.0^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20139~^~291~^4.3^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~317~^31.9^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20140~^~291~^10.7^3^0.8^~1~^~A~^^^1^9.1^11.8^2^7.1^14.1^~4~^~04/01/2007~ -~20140~^~317~^11.7^3^4.7^~1~^~A~^^^1^2.2^17.0^2^-8.7^32.1^~1, 4~^~04/01/2007~ -~20140~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~20140~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~20140~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~20140~^~430~^3.6^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~20141~^~291~^3.9^3^0.1^~1~^~A~^^^1^3.6^4.2^2^3.1^4.6^~4~^~04/01/2007~ -~20141~^~317~^4.0^3^0.9^~1~^~A~^^^1^2.2^5.3^2^2.8e-02^7.9^~1, 4~^~04/01/2007~ -~20141~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20142~^~291~^8.0^3^0.2^~1~^~A~^^^1^7.7^8.4^2^7.1^8.9^~2, 3~^~04/01/2007~ -~20142~^~317~^4.4^3^1.1^~1~^~A~^^^1^2.2^5.9^2^-0.4^9.1^~1, 2, 3~^~04/01/2007~ -~20142~^~421~^13.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20142~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~20142~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~20142~^~430~^1.9^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20142~^~454~^2.3^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20143~^~291~^2.8^3^6.7e-02^~1~^~A~^^^1^2.7^2.9^2^2.4^3.0^~4~^~01/01/2010~ -~20310~^~291~^1.2^6^0.1^~1~^~A~^^^4^0.9^1.7^3^0.7^1.7^~2~^~11/01/2004~ -~20310~^~317~^23.9^41^1.6^~1~^~A~^^^13^5.6^43.8^12^20.3^27.3^~2~^~11/01/2004~ -~20310~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20310~^~421~^25.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20310~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~430~^0.0^4^4.5e-02^~1~^~A~^^^2^0.0^0.1^1^-0.5^0.6^~1, 2~^~11/01/2004~ -~20310~^~454~^19.2^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20314~^~317~^15.5^5^3.0^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20314~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20314~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20315~^~291~^8.4^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~20316~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20316~^~291~^7.3^0^^~4~^~BFZN~^~20020~^^^^^^^^^~05/01/2006~ -~20316~^~317~^15.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20316~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20316~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20316~^~421~^21.6^0^^~4~^~BFZN~^~20320~^^^^^^^^^~12/01/2006~ -~20316~^~430~^0.3^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20317~^~291~^6.4^5^0.9^~1~^~A~^^^2^5.0^8.2^1^-5.7^18.4^~2~^~12/01/2009~ -~20317~^~317~^10.5^0^^~4~^~BFZN~^~20022~^^^^^^^^^~07/01/2014~ -~20317~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20317~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20320~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20320~^~291~^7.3^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20320~^~317~^15.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20320~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20320~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20320~^~421~^21.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20320~^~430~^0.3^0^^~4~^~BFZN~^~20020~^^^^^^^^^~03/01/2003~ -~20320~^~454~^11.6^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20321~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20321~^~291~^1.8^18^0.1^~1~^~A~^^^6^1.3^2.3^5^1.5^2.0^~2~^~10/01/2004~ -~20321~^~317~^26.4^50^1.4^~1~^~A~^^^14^3.4^51.5^13^23.2^29.5^~2~^~10/01/2004~ -~20321~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20321~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20321~^~429~^0.5^3^0.0^~1~^~A~^^^2^0.0^1.4^^^^~1, 2, 3~^~10/01/2004~ -~20321~^~430~^0.0^4^1.7e-02^~1~^~A~^^^3^0.0^0.1^2^-5.5e-02^8.8e-02^~1, 2~^~10/01/2004~ -~20322~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20322~^~291~^3.9^8^0.2^~1~^~A~^^^3^1.8^4.4^2^2.7^4.9^~2~^~12/01/2009~ -~20322~^~317~^10.5^7^1.4^~1~^~A~^^^2^2.2^13.8^4^6.5^14.5^~1, 2, 3~^~12/01/2009~ -~20322~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20322~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20322~^~421~^8.6^3^1.8^~1~^~AS~^^^2^4.3^11.7^1^-15.2^32.5^~2, 3~^~12/01/2009~ -~20322~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20322~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20322~^~454~^1.0^3^0.5^~1~^~A~^^^2^0.4^2.0^1^-5.9^7.8^~2, 3~^~12/01/2009~ -~20323~^~291~^6.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20323~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20323~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20324~^~291~^6.3^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20324~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20324~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20325~^~291~^7.1^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20325~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20325~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20330~^~291~^2.5^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20330~^~317~^3.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20330~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20330~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20345~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20345~^~291~^0.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20345~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20345~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~12/01/2006~ -~20345~^~430~^0.0^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20381~^~291~^2.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20381~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20381~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20409~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20409~^~291~^3.3^3^0.3^~1~^~A~^^^1^2.9^3.9^2^1.9^4.5^~2, 3~^~11/01/2004~ -~20409~^~317~^78.8^3^3.8^~1~^~A~^^^1^71.3^83.8^2^62.3^95.2^~2, 3~^~11/01/2004~ -~20409~^~328~^0.3^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~20409~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20409~^~421~^78.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20409~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~430~^0.5^3^3.3e-02^~1~^~A~^^^1^0.4^0.5^2^0.3^0.6^~2, 3~^~11/01/2004~ -~20409~^~454~^131.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20410~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20410~^~291~^1.2^6^0.1^~1~^~A~^^^4^0.9^1.7^3^0.7^1.7^~2~^~11/01/2004~ -~20410~^~317~^23.9^41^1.6^~1~^~A~^^^13^5.6^43.8^12^20.3^27.3^~2~^~11/01/2004~ -~20410~^~328~^0.1^0^^~4~^~BFSN~^~20109~^^^^^^^^^~03/01/2009~ -~20410~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20410~^~421~^25.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20410~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~430~^0.0^4^4.5e-02^~1~^~A~^^^2^0.0^0.1^1^-0.5^0.6^~1, 2~^~11/01/2004~ -~20410~^~454~^19.2^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20420~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20420~^~291~^3.2^6^6.6e-02^~1~^~A~^^^3^3.0^3.4^2^2.9^3.4^~2~^~03/01/2005~ -~20420~^~317~^63.2^26^2.6^~1~^~A~^^^3^50.2^77.5^2^51.8^74.6^~2~^~03/01/2005~ -~20420~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20420~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20420~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20420~^~430~^0.1^3^7.5e-02^~1~^~A~^^^2^0.0^0.2^1^-0.8^1.0^~1, 2~^~03/01/2005~ -~20421~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1995~ -~20421~^~291~^1.8^18^0.1^~1~^~A~^^^6^1.3^2.3^5^1.5^2.0^~2~^~03/01/2005~ -~20421~^~317~^26.4^50^1.4^~1~^~A~^^^14^3.4^51.5^13^23.2^29.5^~2~^~03/01/2005~ -~20421~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20421~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20421~^~421~^6.4^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~20421~^~429~^0.5^3^0.0^~1~^~A~^^^2^0.0^1.4^^^^~1, 2, 3~^~03/01/2005~ -~20421~^~430~^0.0^4^1.7e-02^~1~^~A~^^^3^0.0^0.1^2^-5.5e-02^8.8e-02^~1, 2~^~03/01/2005~ -~20421~^~454~^68.0^2^^~1~^~A~^^^2^34.9^101.1^^^^^~09/01/2015~ -~20422~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~20422~^~291~^3.9^8^0.2^~1~^~A~^^^3^1.8^4.4^2^2.7^4.9^~2~^~12/01/2009~ -~20422~^~317~^10.5^7^1.4^~1~^~A~^^^2^2.2^13.8^4^6.5^14.5^~1, 2, 3~^~12/01/2009~ -~20422~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20422~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2009~ -~20422~^~421~^8.6^3^1.8^~1~^~AS~^^^2^4.3^11.7^1^-15.2^32.5^~2, 3~^~12/01/2009~ -~20422~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20422~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20422~^~454~^1.0^3^0.5^~1~^~A~^^^2^0.4^2.0^1^-5.9^7.8^~2, 3~^~12/01/2009~ -~20444~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20444~^~291~^1.3^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20444~^~317~^15.1^7^5.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20444~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20444~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20444~^~421~^5.8^0^^~4~^~BFZN~^~20044~^^^^^^^^^~12/01/2006~ -~20444~^~430~^0.1^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20445~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20445~^~291~^0.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20445~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20445~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20445~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~12/01/2006~ -~20445~^~430~^0.0^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20446~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20446~^~291~^1.8^3^0.7^~1~^~A~^^^3^0.9^3.2^2^-1.2^4.8^~2~^~01/01/2010~ -~20446~^~317~^19.9^2^^~1~^~A~^^^2^16.0^23.9^^^^^~01/01/2010~ -~20446~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20446~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20446~^~430~^0.1^0^^~4~^~BFZN~^~20046~^^^^^^^^^~03/01/2005~ -~20447~^~291~^0.9^3^0.5^~1~^~A~^^^2^0.4^1.5^1^-5.8^7.6^~2~^~03/01/2005~ -~20447~^~317~^9.3^11^1.0^~1~^~A~^^^2^3.7^12.4^1^-3.8^22.4^~1, 2~^~03/01/2005~ -~20447~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20447~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20447~^~430~^0.0^0^^~4~^~BFZN~^~20047~^^^^^^^^^~03/01/2005~ -~20450~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20450~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20451~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20451~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20452~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20453~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20453~^~401~^0.0^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~20466~^~291~^3.9^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20466~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20481~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20481~^~291~^2.7^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20481~^~317~^33.9^46^3.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20481~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20481~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20481~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20481~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20510~^~291~^1.2^6^0.1^~1~^~A~^^^4^0.9^1.7^3^0.7^1.7^~2~^~11/01/2004~ -~20510~^~317~^23.9^41^1.6^~1~^~A~^^^13^5.6^43.8^12^20.3^27.3^~2~^~11/01/2004~ -~20510~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20510~^~421~^25.7^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20510~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~430~^0.0^4^4.5e-02^~1~^~A~^^^2^0.0^0.1^1^-0.5^0.6^~1, 2~^~11/01/2004~ -~20510~^~454~^19.2^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~20521~^~291~^1.8^18^0.1^~1~^~A~^^^6^1.3^2.3^5^1.5^2.0^~2~^~03/01/2005~ -~20521~^~317~^26.4^50^1.4^~1~^~A~^^^14^3.4^51.5^13^23.2^29.5^~2~^~03/01/2005~ -~20521~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20521~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20521~^~429~^0.5^3^0.0^~1~^~A~^^^2^0.0^1.4^^^^~1, 2, 3~^~03/01/2005~ -~20521~^~430~^0.0^4^1.7e-02^~1~^~A~^^^3^0.0^0.1^2^-5.5e-02^8.8e-02^~1, 2~^~03/01/2005~ -~20522~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~20522~^~291~^3.9^8^0.2^~1~^~A~^^^3^1.8^4.4^2^2.7^4.9^~2~^~12/01/2009~ -~20522~^~317~^10.5^7^1.4^~1~^~A~^^^2^2.2^13.8^4^6.5^14.5^~1, 2, 3~^~12/01/2009~ -~20522~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20522~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20522~^~421~^8.6^3^1.8^~1~^~AS~^^^2^4.3^11.7^1^-15.2^32.5^~2, 3~^~12/01/2009~ -~20522~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20522~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2006~ -~20522~^~454~^1.0^3^0.5^~1~^~A~^^^2^0.4^2.0^1^-5.9^7.8^~2, 3~^~12/01/2009~ -~20523~^~291~^2.0^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20523~^~317~^25.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~20523~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20523~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20545~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~20545~^~291~^0.4^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~317~^7.5^47^0.4^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20545~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20545~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20545~^~421~^2.1^0^^~4~^~BFZN~^~20045~^^^^^^^^^~12/01/2006~ -~20545~^~430~^0.0^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20581~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20581~^~291~^2.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20581~^~317~^33.9^46^3.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~20581~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20581~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20581~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20622~^~291~^2.4^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20622~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20622~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20623~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~317~^11.4^6^2.3^~1~^~A~^^^1^2.2^19.8^5^5.3^17.4^~1, 2, 3~^~08/01/2004~ -~20623~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20623~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~20623~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~03/01/2007~ -~20623~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20624~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20624~^~317~^11.4^6^2.3^~1~^~A~^^^1^2.2^19.8^5^5.3^17.4^~1, 2, 3~^~08/01/2004~ -~20624~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20624~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~20624~^~421~^10.4^0^^~4~^~BFZN~^~20481~^^^^^^^^^~12/01/2010~ -~20624~^~430~^0.3^0^^~4~^~BFZN~^~20481~^^^^^^^^^~08/01/2004~ -~20628~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20628~^~317~^14.6^6^1.5^~1~^~A~^^^1^9.9^21.4^5^10.5^18.5^~2, 3~^~09/01/2004~ -~20628~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20628~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20628~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20628~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20629~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20629~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20629~^~317~^14.6^6^1.5^~1~^~A~^^^1^9.9^21.4^5^10.5^18.5^~2, 3~^~09/01/2004~ -~20629~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20629~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20629~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2010~ -~20629~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20630~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20630~^~317~^14.6^6^1.5^~1~^~A~^^^1^9.9^21.4^5^10.5^18.5^~2, 3~^~10/01/2004~ -~20630~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20630~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~20630~^~421~^10.4^0^^~4~^~BFZN~^~20629~^^^^^^^^^~12/01/2010~ -~20630~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20634~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20634~^~317~^27.5^6^3.0^~1~^~A~^^^1^17.2^39.0^5^19.7^35.2^~2, 3~^~09/01/2004~ -~20634~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20634~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20634~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2006~ -~20634~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20635~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20635~^~317~^27.5^6^3.0^~1~^~A~^^^1^17.2^39.0^5^19.7^35.2^~2, 3~^~09/01/2004~ -~20635~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20635~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20635~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2010~ -~20635~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20636~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20636~^~317~^27.5^6^3.0^~1~^~A~^^^1^17.2^39.0^5^19.7^35.2^~2, 3~^~10/01/2004~ -~20636~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20636~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~20636~^~421~^10.4^0^^~4~^~BFZN~^~20635~^^^^^^^^^~12/01/2010~ -~20636~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2004~ -~20640~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20640~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20640~^~317~^26.2^6^5.4^~1~^~A~^^^1^2.2^42.8^5^12.1^40.2^~1, 2, 3~^~09/01/2004~ -~20640~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20640~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20640~^~421~^10.4^0^^~4~^~BFZN~^~20641~^^^^^^^^^~12/01/2010~ -~20640~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20641~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20641~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20641~^~317~^26.2^6^5.4^~1~^~A~^^^1^2.2^42.8^5^12.1^40.2^~1, 2, 3~^~09/01/2004~ -~20641~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20641~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20641~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2010~ -~20641~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20645~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20645~^~317~^28.1^8^6.5^~1~^~A~^^^1^2.2^57.7^7^12.4^43.6^~1, 2, 3~^~09/01/2004~ -~20645~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20645~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20645~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2010~ -~20645~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20646~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20646~^~291~^2.4^8^0.1^~1~^~A~^^^1^2.1^3.3^7^2.0^2.7^~2, 3~^~07/01/2007~ -~20646~^~317~^28.1^8^6.5^~1~^~A~^^^1^2.2^57.7^7^12.4^43.6^~1, 2, 3~^~09/01/2004~ -~20646~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~20646~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~20646~^~421~^10.4^0^^~4~^~BFZN~^~20081~^^^^^^^^^~12/01/2010~ -~20646~^~430~^0.3^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2004~ -~20647~^~291~^3.5^6^0.8^~1~^~A~^^^2^2.6^4.6^1^-7.1^14.1^~2~^~06/01/2010~ -~20647~^~317~^32.7^7^0.5^~1~^~A~^^^2^21.4^44.9^1^25.4^39.8^~2~^~06/01/2010~ -~20647~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~428~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~20647~^~430~^0.8^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20648~^~291~^6.6^9^0.8^~1~^~A~^^^3^4.4^8.2^2^3.1^10.0^~2~^~06/01/2010~ -~20648~^~317~^12.2^7^1.6^~1~^~A~^^^2^9.3^15.6^1^-8.8^33.2^~2~^~06/01/2010~ -~20648~^~401~^0.8^6^0.7^~1~^~A~^^^2^0.0^2.4^1^-8.9^10.4^~1, 2~^~04/01/2014~ -~20648~^~428~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20648~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~20648~^~430~^6.4^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20649~^~291~^13.1^24^0.1^~1~^~A~^^^1^11.6^14.6^23^12.7^13.3^~4~^~07/01/2011~ -~20649~^~317~^12.7^11^5.1^~1~^~A~^^^1^3.0^62.8^10^1.1^24.2^~4~^~07/01/2011~ -~20649~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~20649~^~401~^0.0^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~421~^31.2^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~430~^1.9^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20650~^~291~^1.9^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20651~^~291~^1.7^3^0.2^~1~^~A~^^^1^1.2^1.9^2^0.6^2.6^~2, 3~^~03/01/2015~ -~20651~^~317~^9.4^3^2.0^~1~^~A~^^^1^6.9^13.5^2^0.5^18.2^~2, 3~^~03/01/2015~ -~20651~^~421~^4.4^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20651~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2015~ -~20651~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2015~ -~20651~^~430~^0.4^2^^~1~^~A~^^^1^0.3^0.4^1^^^^~03/01/2015~ -~20652~^~291~^4.5^3^0.3^~1~^~A~^^^1^3.9^5.2^2^2.9^6.0^~2, 3~^~06/01/2015~ -~20652~^~317~^30.7^2^^~1~^~A~^^^1^30.4^31.0^1^^^^~06/01/2015~ -~20652~^~421~^13.0^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20652~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~291~^11.3^3^0.5^~1~^~A~^^^1^10.3^12.0^2^9.0^13.5^~2, 3~^~06/01/2015~ -~20653~^~317~^76.8^2^^~1~^~A~^^^1^73.4^80.2^1^^^^~06/01/2015~ -~20653~^~421~^17.9^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20653~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20653~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20653~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~291~^1.7^6^0.1^~1~^~A~^^^1^1.3^2.0^5^1.3^1.9^~2, 3~^~06/01/2015~ -~20654~^~317~^11.1^2^^~1~^~A~^^^1^9.9^12.2^1^^^^~06/01/2015~ -~20654~^~328~^0.0^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20654~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~421~^2.7^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20654~^~430~^0.3^0^^~4~^~BFSN~^~20037~^^^^^^^^^~06/01/2015~ -~20655~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~291~^3.3^3^0.2^~1~^~A~^^^1^2.8^3.8^2^2.0^4.5^~2, 3~^~06/01/2015~ -~20655~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20655~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~421~^5.8^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20655~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20656~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~291~^1.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~291~^1.4^3^0.1^~1~^~A~^^^1^1.0^1.6^1^-0.5^3.3^~2, 3~^~06/01/2015~ -~20657~^~317~^2.2^2^^~1~^~A~^^^1^2.2^2.2^^^^~1~^~06/01/2015~ -~20657~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20657~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~421~^1.7^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20657~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21003~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~21003~^~291~^0.5^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~317~^20.6^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21003~^~328~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~401~^1.8^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~421~^98.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21003~^~430~^4.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/1994~ -~21004~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~317~^19.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21004~^~328~^0.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~401~^0.0^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~421~^97.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21004~^~430~^3.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/2006~ -~21005~^~291~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~09/01/2006~ -~21005~^~317~^22.6^4^2.7^~1~^~A~^^^1^16.0^29.5^3^13.6^31.4^~2, 3~^~09/01/2006~ -~21005~^~328~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21005~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~421~^97.9^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21005~^~429~^17.8^4^1.9^~1~^~A~^^^1^12.4^21.0^3^11.5^24.0^~2, 3~^~09/01/2006~ -~21005~^~430~^4.4^4^0.8^~1~^~A~^^^1^1.9^5.8^3^1.6^7.2^~2, 3~^~09/01/2006~ -~21005~^~454~^7.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21007~^~221~^0.0^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~291~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~09/01/2006~ -~21007~^~317~^23.3^4^2.4^~1~^~A~^^^1^17.3^28.8^3^15.6^30.9^~2, 3~^~09/01/2006~ -~21007~^~328~^0.5^0^^~4~^~BFFN~^~21003~^^^^^^^^^~03/01/2009~ -~21007~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~421~^126.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21007~^~429~^21.7^4^1.7^~1~^~A~^^^1^19.0^26.6^3^16.0^27.2^~2, 3~^~09/01/2006~ -~21007~^~430~^4.2^4^0.8^~1~^~A~^^^1^1.8^5.9^3^1.4^6.8^~2, 3~^~09/01/2006~ -~21007~^~454~^11.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21008~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/1994~ -~21008~^~291~^0.7^0^^~4~^^^^^^^^^^^~01/01/1994~ -~21008~^~317~^17.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21008~^~328~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21008~^~401~^0.1^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~421~^40.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~430~^5.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21009~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~21009~^~291~^0.4^4^0.2^~1~^~A~^^^1^0.2^1.0^3^-0.3^1.0^~2, 3~^~09/01/2006~ -~21009~^~317~^15.0^4^2.2^~1~^~A~^^^1^8.8^18.5^3^7.9^22.0^~2, 3~^~09/01/2006~ -~21009~^~328~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~421~^26.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21009~^~429~^28.9^4^3.1^~1~^~A~^^^1^20.4^35.0^3^18.7^39.1^~2, 3~^~09/01/2006~ -~21009~^~430~^5.5^4^0.7^~1~^~A~^^^1^3.2^6.8^3^2.9^8.0^~2, 3~^~09/01/2006~ -~21009~^~454~^9.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21010~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~291~^1.4^3^5.6e-02^~1~^~A~^^^1^1.3^1.5^2^1.1^1.6^~2, 3~^~05/01/2015~ -~21010~^~317~^10.1^2^^~1~^~A~^^^1^9.9^10.3^1^^^^~05/01/2015~ -~21010~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~401~^0.7^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21010~^~421~^22.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~428~^2.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21010~^~430~^6.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21012~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~291~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~317~^26.6^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~328~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~421~^126.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~430~^2.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~291~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~317~^17.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21013~^~328~^0.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~421~^104.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~430~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21014~^~221~^0.0^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~291~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~317~^24.8^3^1.3^~1~^~A~^^^1^22.3^26.7^2^19.1^30.4^~2, 3~^~04/01/2013~ -~21014~^~328~^0.7^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~401~^0.1^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21014~^~421~^84.0^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21014~^~430~^1.8^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21018~^~221~^0.0^0^^~7~^^^^^^^^^^^ -~21018~^~291~^0.0^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21018~^~317~^22.5^33^1.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~21018~^~328~^1.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~401~^3.3^3^2.7^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~421~^180.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~430~^9.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~21020~^~291~^0.5^3^0.3^~1~^~A~^^^1^0.2^1.2^2^-1.0^2.0^~2, 3~^~09/01/2006~ -~21020~^~317~^25.3^4^1.4^~1~^~A~^^^1^22.8^28.8^3^20.6^29.8^~2, 3~^~09/01/2006~ -~21020~^~328~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~421~^29.8^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21020~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~430~^2.2^4^0.1^~1~^~A~^^^1^1.9^2.7^3^1.5^2.7^~2, 3~^~09/01/2006~ -~21020~^~454~^19.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21021~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~291~^0.4^4^0.2^~1~^~A~^^^1^0.2^1.0^3^-0.3^1.0^~2, 3~^~09/01/2006~ -~21021~^~317~^30.3^4^2.6^~1~^~A~^^^1^23.8^35.0^3^22.0^38.6^~2, 3~^~09/01/2006~ -~21021~^~328~^0.6^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~401~^1.1^4^0.3^~1~^~A~^^^1^0.3^1.7^3^6.0e-02^2.1^~1, 2, 3~^~09/01/2006~ -~21021~^~421~^93.3^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~430~^0.8^4^0.2^~1~^~A~^^^1^0.0^1.4^3^-0.1^1.6^~1, 2, 3~^~09/01/2006~ -~21022~^~221~^0.0^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~291~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~09/01/2006~ -~21022~^~317~^29.2^4^2.5^~1~^~A~^^^1^22.5^33.8^3^21.1^37.2^~2, 3~^~09/01/2006~ -~21022~^~328~^0.6^0^^~4~^~BFFN~^~21007~^^^^^^^^^~03/01/2009~ -~21022~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~421~^103.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21022~^~429~^0.2^4^9.4e-02^~1~^~A~^^^1^0.0^0.3^3^-0.1^0.4^~1, 2, 3~^~09/01/2006~ -~21022~^~430~^1.5^4^9.2e-02^~1~^~A~^^^1^1.3^1.7^3^1.1^1.7^~2, 3~^~09/01/2006~ -~21022~^~454~^10.0^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21024~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~291~^1.4^4^0.1^~1~^~A~^^^1^1.1^1.5^3^1.0^1.6^~2, 3~^~03/01/2007~ -~21024~^~317~^12.2^4^0.7^~1~^~A~^^^1^11.0^14.3^3^9.8^14.4^~2, 3~^~03/01/2007~ -~21024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21024~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~421~^13.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~21024~^~429~^27.7^4^1.8^~1~^~A~^^^1^23.2^32.3^3^21.8^33.6^~2, 3~^~03/01/2007~ -~21024~^~430~^14.5^4^0.3^~1~^~A~^^^1^13.7^15.3^3^13.4^15.6^~2, 3~^~03/01/2007~ -~21024~^~454~^20.0^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~21026~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21026~^~291~^2.7^9^0.1^~1~^~A~^^^1^1.3^3.4^4^2.2^3.1^~2, 3~^~02/01/2006~ -~21026~^~317~^0.4^3^^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21026~^~401~^5.4^9^1.4^~1~^~A~^^^1^2.8^9.3^2^-0.4^11.3^~2, 3~^~05/01/2014~ -~21026~^~421~^17.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21026~^~430~^9.9^4^1.6^~1~^~A~^^^^7.4^14.6^^^^^~02/01/2006~ -~21028~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~291~^0.1^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~317~^3.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~401~^0.9^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~421~^19.6^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~430~^0.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21032~^~291~^0.0^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21032~^~317~^3.2^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21032~^~401~^2.2^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~291~^0.0^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21033~^~317~^3.3^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21033~^~401~^1.5^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~291~^0.0^0^^~4~^^^^^^^^^^^~09/01/1988~ -~21034~^~317~^2.9^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21034~^~401~^1.3^3^0.2^~1~^^^^^^^^^^^~09/01/1988~ -~21059~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~291~^0.7^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~317~^9.7^0^^~4~^~BFZN~^~36016~^^^^^^^^^~03/01/2011~ -~21059~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/1988~ -~21059~^~421~^50.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~430~^4.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21060~^~317~^10.1^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~ -~21060~^~401~^0.9^7^0.3^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~421~^26.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21060~^~454~^15.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21061~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~291~^4.2^3^3.3e-02^~1~^~A~^^^1^4.2^4.3^2^4.0^4.3^~2, 3~^~03/01/2011~ -~21061~^~317~^11.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21061~^~421~^18.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21063~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~291~^3.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~317~^12.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~401~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~421~^31.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~429~^1.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~430~^2.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21064~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~291~^3.7^3^0.2^~1~^~A~^^^1^3.3^4.0^2^2.8^4.6^~2, 3~^~04/01/2013~ -~21064~^~317~^10.7^3^1.4^~1~^~A~^^^1^7.9^12.6^2^4.5^16.7^~2, 3~^~04/01/2013~ -~21064~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~401~^1.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~421~^27.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21064~^~430~^6.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~291~^3.2^2^^~1~^~A~^^^1^2.7^3.7^1^^^^~04/01/2013~ -~21078~^~317~^8.6^3^0.6^~1~^~A~^^^1^7.4^9.6^2^5.8^11.4^~2, 3~^~04/01/2013~ -~21078~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~401~^1.1^8^0.3^~1~^^^^^^^^^^^~09/01/1988~ -~21078~^~421~^26.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21078~^~430~^19.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21080~^~221~^0.0^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~291~^3.7^2^^~1~^~A~^^^1^3.3^4.0^1^^^^~04/01/2013~ -~21080~^~317~^8.1^3^0.6^~1~^~A~^^^1^7.4^9.3^2^5.4^10.7^~2, 3~^~04/01/2013~ -~21080~^~328~^0.1^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~21080~^~421~^28.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21080~^~430~^5.4^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21082~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~291~^3.9^3^0.2^~1~^~A~^^^1^3.5^4.3^2^2.9^4.8^~2, 3~^~03/01/2011~ -~21082~^~317~^9.2^4^0.4^~1~^~A~^^^1^8.1^10.4^3^7.6^10.8^~2, 3~^~03/01/2011~ -~21082~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21082~^~421~^32.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21082~^~429~^6.6^4^1.3^~1~^~A~^^^1^4.1^9.9^3^2.2^11.0^~2, 3~^~03/01/2011~ -~21082~^~430~^15.3^4^2.0^~1~^~A~^^^1^9.8^19.6^3^8.8^21.8^~2, 3~^~03/01/2011~ -~21082~^~454~^3.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21089~^~221~^0.0^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~291~^2.0^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~317~^19.6^3^0.5^~1~^~A~^^^1^18.9^20.7^2^17.2^21.9^~2, 3~^~04/01/2013~ -~21089~^~328~^0.1^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2006~ -~21089~^~421~^28.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21089~^~430~^4.2^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21090~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~291~^1.9^3^^~1~^~A~^^^3^1.4^2.8^^^^~2, 3~^~11/01/2005~ -~21090~^~317~^22.7^3^^~1~^~A~^^^3^21.8^24.4^^^^~2, 3~^~11/01/2005~ -~21090~^~328~^0.1^0^^~4~^~BFFN~^~21398~^^^^^^^^^~03/01/2009~ -~21090~^~401~^0.4^3^^~1~^~A~^^^3^0.2^0.6^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~421~^33.4^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21090~^~429~^0.2^3^^~1~^~A~^^^3^0.0^0.7^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~430~^5.5^3^^~1~^~A~^^^3^4.2^6.5^^^^~2, 3~^~11/01/2005~ -~21091~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~317~^21.9^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~421~^37.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~430~^4.2^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21094~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~291~^1.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2006~ -~21094~^~317~^17.9^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~328~^0.2^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~401~^2.9^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~421~^43.7^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~430~^4.7^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21096~^~221~^0.0^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~291~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~317~^19.6^3^1.8^~1~^~A~^^^1^15.9^21.7^2^11.6^27.5^~2, 3~^~04/01/2013~ -~21096~^~328~^0.1^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2006~ -~21096~^~421~^31.3^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~430~^4.6^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21102~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~291~^1.4^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~06/01/2015~ -~21102~^~317~^19.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~401~^0.8^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~421~^35.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21102~^~430~^8.5^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~454~^22.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21105~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~291~^1.0^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~317~^18.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21105~^~401~^1.8^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~421~^28.9^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~21105~^~430~^13.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21106~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~291~^0.8^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~317~^48.4^0^^~4~^~RK~^^^^^^^^^^~04/01/2013~ -~21106~^~328~^0.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~401~^1.5^6^0.4^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~421~^32.6^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~21106~^~430~^7.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~454~^98.2^2^^~1~^~A~^^^2^91.0^105.4^^^^^~04/01/2013~ -~21107~^~221~^0.0^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~291~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~317~^20.3^3^0.7^~1~^~A~^^^1^19.5^21.8^2^17.0^23.5^~2, 3~^~04/01/2013~ -~21107~^~328~^0.1^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2006~ -~21107~^~421~^34.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21107~^~430~^4.9^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21108~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~291~^1.8^12^0.1^~1~^~A~^^^3^1.6^2.0^4^1.4^2.0^~2, 3~^~01/01/2006~ -~21108~^~317~^24.7^12^1.6^~1~^~A~^^^3^23.1^26.2^6^20.6^28.8^~2, 3~^~01/01/2006~ -~21108~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~401~^0.3^12^3.8e-02^~1~^~A~^^^3^0.2^0.5^3^0.2^0.4^~2, 3~^~01/01/2006~ -~21108~^~421~^29.8^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~21108~^~429~^0.2^12^0.1^~1~^~A~^^^3^0.0^0.4^4^-0.1^0.5^~2, 3~^~01/01/2006~ -~21108~^~430~^4.9^12^0.4^~1~^~A~^^^3^4.5^5.5^4^3.6^6.1^~2, 3~^~01/01/2006~ -~21121~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~06/01/2015~ -~21121~^~317~^18.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21121~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~421~^40.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21121~^~430~^2.8^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~454~^21.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21124~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.4^2^0.7^1.6^~2, 3~^~04/01/2013~ -~21124~^~317~^19.9^3^1.4^~1~^~A~^^^1^17.0^21.9^2^13.5^26.2^~2, 3~^~04/01/2013~ -~21124~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~401~^7.5^3^0.3^~1~^~A~^^^1^6.8^8.1^2^5.8^9.0^~2, 3~^~04/01/2013~ -~21124~^~421~^29.1^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~430~^4.5^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~291~^0.7^3^0.1^~1~^~A~^^^1^0.6^1.1^2^-3.7e-02^1.5^~1, 2, 3~^~04/01/2013~ -~21125~^~317~^17.0^3^1.5^~1~^~A~^^^1^13.9^19.2^2^10.2^23.7^~2, 3~^~04/01/2013~ -~21125~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~421~^26.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~430~^4.5^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~291~^0.7^3^9.0e-02^~1~^~A~^^^1^0.6^0.9^2^0.3^1.1^~1, 2, 3~^~04/01/2013~ -~21126~^~317~^39.2^3^4.3^~1~^~A~^^^1^34.0^47.9^2^20.3^58.0^~2, 3~^~04/01/2013~ -~21126~^~328~^0.5^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~421~^18.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~430~^22.4^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21127~^~291~^1.9^8^0.1^~1~^~A~^^^2^1.7^2.0^1^0.2^3.4^~2~^~05/01/2009~ -~21127~^~401~^14.6^8^2.5e-02^~1~^~A~^^^2^14.6^14.7^1^14.3^14.9^~2~^~05/01/2009~ -~21127~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~21127~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~21127~^~430~^70.9^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~21129~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~291~^2.9^3^0.2^~1~^~A~^^^1^2.3^3.2^2^1.6^4.0^~4~^~03/01/2011~ -~21129~^~317~^26.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~09/01/1988~ -~21129~^~421~^11.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~430~^3.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21130~^~221~^0.0^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~291~^2.7^3^0.1^~1~^~A~^^^1^2.4^2.9^2^1.9^3.4^~2, 3~^~08/01/2012~ -~21130~^~317~^5.7^3^0.2^~1~^~A~^^^1^5.2^6.2^2^4.4^6.9^~2, 3~^~08/01/2012~ -~21130~^~328~^0.0^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~401~^1.4^3^0.3^~1~^~A~^^^1^0.7^2.1^2^-0.3^3.0^~1, 2, 3~^~08/01/2012~ -~21130~^~421~^8.4^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21130~^~430~^55.8^0^^~4~^~BFFN~^~36036~^^^^^^^^^~04/01/2013~ -~21130~^~454~^16.6^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21138~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21138~^~291~^3.8^9^0.1^~1~^~A~^^^1^2.8^4.3^2^3.3^4.1^~2, 3~^~08/01/2012~ -~21138~^~317~^0.9^10^0.1^~1~^~A~^^^3^0.4^1.2^6^0.6^1.1^~2, 3~^~02/01/2005~ -~21138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21138~^~401~^4.7^9^0.6^~1~^~A~^^^1^1.3^6.8^2^1.9^7.4^~2, 3~^~08/01/2012~ -~21138~^~421~^36.8^3^^~1~^~AS~^^^1^28.9^39.8^^^^~2, 3~^~08/01/2012~ -~21138~^~429~^42.8^12^2.5^~1~^~A~^^^3^21.5^58.4^6^36.7^48.8^~2, 3~^~02/01/2005~ -~21138~^~430~^11.2^12^0.6^~1~^~A~^^^3^6.4^16.0^6^9.6^12.7^~2, 3~^~02/01/2005~ -~21138~^~454~^0.4^3^^~1~^~A~^^^1^0.4^0.5^^^^~2, 3~^~08/01/2012~ -~21139~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~291~^1.3^3^5.8e-02^~1~^~A~^^^1^1.2^1.4^2^1.0^1.5^~2, 3~^~03/01/2011~ -~21139~^~317~^0.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~21139~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~421~^13.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~430~^5.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21141~^~291~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~317~^3.2^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21142~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~291~^2.5^6^0.1^~1~^~A~^^^1^1.5^4.0^2^1.7^3.3^~2, 3~^~04/01/2014~ -~21142~^~317~^12.1^6^1.2^~1~^~A~^^^1^3.9^16.9^2^6.9^17.2^~2, 3~^~04/01/2014~ -~21142~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~21142~^~421~^0.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~430~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21143~^~291~^0.9^2^^~1~^~A~^^^1^0.6^1.3^1^^^~1~^~05/01/2014~ -~21143~^~317~^20.6^3^0.4^~1~^~A~^^^1^19.8^21.3^2^18.7^22.4^~2, 3~^~05/01/2014~ -~21143~^~401~^1.0^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21144~^~291~^3.2^3^0.1^~1~^~A~^^^1^2.9^3.4^2^2.4^3.8^~2, 3~^~05/01/2014~ -~21144~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21144~^~401~^6.2^3^0.8^~1~^~A~^^^1^4.9^7.8^2^2.4^9.8^~2, 3~^~05/01/2014~ -~21145~^~291~^2.7^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~401~^0.4^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~291~^4.1^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~401~^0.2^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~291~^3.8^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~291~^4.1^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~291~^2.0^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21150~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.5^2^0.5^1.9^~2, 3~^~04/01/2015~ -~21150~^~317~^15.4^3^0.8^~1~^~A~^^^1^13.8^16.9^2^11.5^19.2^~2, 3~^~04/01/2015~ -~21150~^~401~^1.1^3^0.1^~1~^~A~^^^1^0.7^1.4^2^0.2^1.8^~2, 3~^~04/01/2015~ -~21151~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.5^2^0.5^1.9^~2, 3~^~05/01/2015~ -~21151~^~317~^15.4^3^0.8^~1~^~A~^^^1^13.8^16.9^2^11.5^19.2^~2, 3~^~05/01/2015~ -~21151~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~401~^1.1^3^0.1^~1~^~A~^^^1^0.7^1.4^2^0.2^1.8^~2, 3~^~05/01/2015~ -~21151~^~421~^22.9^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~430~^4.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21152~^~291~^1.4^3^6.4e-02^~1~^~A~^^^1^1.3^1.5^2^1.1^1.7^~2, 3~^~04/01/2015~ -~21152~^~317~^16.8^3^0.3^~1~^~A~^^^1^16.2^17.5^2^15.2^18.4^~2, 3~^~04/01/2015~ -~21152~^~401~^0.8^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.2^1.3^~2, 3~^~04/01/2015~ -~21153~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~291~^1.4^3^6.4e-02^~1~^~A~^^^1^1.3^1.5^2^1.1^1.7^~2, 3~^~05/01/2015~ -~21153~^~317~^16.8^3^0.3^~1~^~A~^^^1^16.2^17.5^2^15.2^18.4^~2, 3~^~05/01/2015~ -~21153~^~328~^0.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~401~^0.8^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.2^1.3^~2, 3~^~05/01/2015~ -~21153~^~421~^29.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~430~^4.7^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~291~^1.2^3^9.0e-02^~1~^~A~^^^1^1.0^1.3^2^0.8^1.5^~2, 3~^~05/01/2015~ -~21154~^~317~^16.8^3^0.5^~1~^~A~^^^1^16.1^17.8^2^14.5^19.0^~2, 3~^~05/01/2015~ -~21154~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~401~^1.2^3^0.3^~1~^~A~^^^1^0.6^1.7^2^-0.1^2.5^~2, 3~^~05/01/2015~ -~21154~^~421~^23.1^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~430~^4.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~291~^1.3^3^7.3e-02^~1~^~A~^^^1^1.2^1.4^2^1.0^1.6^~2, 3~^~05/01/2015~ -~21155~^~317~^17.0^3^0.4^~1~^~A~^^^1^16.2^17.8^2^14.9^18.9^~2, 3~^~05/01/2015~ -~21155~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~401~^1.2^3^0.1^~1~^~A~^^^1^1.0^1.4^2^0.7^1.7^~2, 3~^~05/01/2015~ -~21155~^~421~^28.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~430~^4.7^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~291~^1.3^3^5.8e-02^~1~^~A~^^^1^1.2^1.4^2^1.0^1.5^~2, 3~^~05/01/2015~ -~21156~^~317~^17.3^3^1.1^~1~^~A~^^^1^16.0^19.5^2^12.4^22.0^~2, 3~^~05/01/2015~ -~21156~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~401~^0.9^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.3^1.5^~2, 3~^~05/01/2015~ -~21156~^~421~^33.2^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~430~^4.7^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21157~^~291~^2.1^3^6.6e-02^~1~^~A~^^^1^2.0^2.2^2^1.8^2.3^~2, 3~^~04/01/2015~ -~21157~^~317~^13.8^3^0.5^~1~^~A~^^^1^12.9^14.9^2^11.3^16.3^~2, 3~^~04/01/2015~ -~21157~^~401~^0.4^3^0.1^~1~^~A~^^^1^0.2^0.8^2^-0.3^1.2^~1, 2, 3~^~04/01/2015~ -~21158~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~291~^2.1^3^6.6e-02^~1~^~A~^^^1^2.0^2.2^2^1.8^2.3^~2, 3~^~05/01/2015~ -~21158~^~317~^13.8^3^0.5^~1~^~A~^^^1^12.9^14.9^2^11.3^16.3^~2, 3~^~05/01/2015~ -~21158~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~401~^0.4^3^0.1^~1~^~A~^^^1^0.2^0.8^2^-0.3^1.2^~1, 2, 3~^~05/01/2015~ -~21158~^~421~^32.9^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~430~^6.6^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21159~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.5^2^0.7^1.7^~2, 3~^~04/01/2015~ -~21159~^~317~^17.5^3^0.5^~1~^~A~^^^1^16.5^18.5^2^15.0^19.9^~2, 3~^~04/01/2015~ -~21159~^~401~^0.6^3^2.4e-02^~1~^~A~^^^1^0.6^0.7^2^0.5^0.7^~2, 3~^~04/01/2015~ -~21160~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21160~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.5^2^0.7^1.7^~2, 3~^~05/01/2015~ -~21160~^~317~^17.5^3^0.5^~1~^~A~^^^1^16.5^18.5^2^15.0^19.9^~2, 3~^~05/01/2015~ -~21160~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~21160~^~401~^0.6^3^2.4e-02^~1~^~A~^^^1^0.6^0.7^2^0.5^0.7^~2, 3~^~05/01/2015~ -~21160~^~421~^29.9^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~21160~^~430~^4.8^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~21161~^~291~^1.6^3^0.1^~1~^~A~^^^1^1.4^1.9^2^0.9^2.2^~2, 3~^~04/01/2015~ -~21161~^~317~^23.2^3^2.2^~1~^~A~^^^1^19.8^27.5^2^13.5^32.9^~2, 3~^~04/01/2015~ -~21161~^~401~^1.3^2^^~1~^~A~^^^1^1.1^1.4^1^^^^~04/01/2015~ -~21162~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~291~^1.6^3^0.1^~1~^~A~^^^1^1.4^1.9^2^0.9^2.2^~2, 3~^~05/01/2015~ -~21162~^~317~^23.2^3^2.2^~1~^~A~^^^1^19.8^27.5^2^13.5^32.9^~2, 3~^~05/01/2015~ -~21162~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~401~^1.3^2^^~1~^~A~^^^1^1.1^1.4^1^^^^~05/01/2015~ -~21162~^~421~^16.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~430~^6.4^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21202~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~313~^28.0^9^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~21202~^~317~^24.8^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21202~^~421~^33.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21202~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~21202~^~430~^5.0^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~454~^21.8^3^^~1~^~A~^^^3^12.7^35.2^^^^~2, 3~^~03/01/2006~ -~21207~^~291~^1.3^3^7.3e-02^~1~^~A~^^^1^1.2^1.4^2^1.0^1.6^~2, 3~^~04/01/2015~ -~21207~^~317~^17.0^3^0.4^~1~^~A~^^^1^16.2^17.8^2^14.9^18.9^~2, 3~^~04/01/2015~ -~21207~^~401~^1.2^3^0.1^~1~^~A~^^^1^1.0^1.4^2^0.7^1.7^~2, 3~^~04/01/2015~ -~21209~^~291~^1.3^3^5.8e-02^~1~^~A~^^^1^1.2^1.4^2^1.0^1.5^~2, 3~^~04/01/2015~ -~21209~^~317~^17.3^3^1.1^~1~^~A~^^^1^16.0^19.5^2^12.4^22.0^~2, 3~^~04/01/2015~ -~21209~^~401~^0.9^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.3^1.5^~2, 3~^~04/01/2015~ -~21210~^~291~^0.7^3^0.1^~1~^~A~^^^1^0.6^1.1^2^-3.7e-02^1.5^~1, 2, 3~^~05/01/2013~ -~21210~^~317~^17.0^3^1.5^~1~^~A~^^^1^13.9^19.2^2^10.2^23.7^~2, 3~^~05/01/2013~ -~21210~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~421~^34.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21210~^~454~^19.7^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21211~^~291~^1.2^3^9.0e-02^~1~^~A~^^^1^1.0^1.3^2^0.8^1.5^~2, 3~^~04/01/2015~ -~21211~^~317~^16.8^3^0.5^~1~^~A~^^^1^16.1^17.8^2^14.5^19.0^~2, 3~^~04/01/2015~ -~21211~^~401~^1.2^3^0.3^~1~^~A~^^^1^0.6^1.7^2^-0.1^2.5^~2, 3~^~04/01/2015~ -~21213~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.1^1.4^2^0.7^1.6^~2, 3~^~05/01/2013~ -~21213~^~317~^19.9^3^1.4^~1~^~A~^^^1^17.0^21.9^2^13.5^26.2^~2, 3~^~05/01/2013~ -~21213~^~401~^7.5^3^0.3^~1~^~A~^^^1^6.8^8.1^2^5.8^9.0^~2, 3~^~05/01/2013~ -~21213~^~421~^32.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21213~^~454~^17.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21214~^~291~^0.7^3^9.0e-02^~1~^~A~^^^1^0.6^0.9^2^0.3^1.1^~1, 2, 3~^~05/01/2013~ -~21214~^~317~^39.2^3^4.3^~1~^~A~^^^1^34.0^47.9^2^20.3^58.0^~2, 3~^~05/01/2013~ -~21214~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~421~^30.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21214~^~454~^16.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21224~^~221~^0.0^0^^~4~^~BFCN~^~21299~^^^^^^^^^~07/01/2008~ -~21224~^~291~^2.2^3^8.0e-02^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~313~^31.3^11^8.0^~1~^~A~^^^2^20.0^47.0^2^-3.4^66.1^~4~^~02/01/2006~ -~21224~^~317~^21.5^4^4.4^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21224~^~401~^1.2^3^0.1^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~421~^14.3^0^^~4~^~BFPN~^~21299~^^^^^^^^^~03/01/2007~ -~21224~^~430~^6.6^0^^~4~^~BFCN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~221~^0.0^0^^~4~^~BFCN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~291~^2.5^4^0.1^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~317~^34.8^4^5.2^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21225~^~401~^1.9^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~421~^17.1^0^^~4~^~BFPN~^~21300~^^^^^^^^^~03/01/2007~ -~21225~^~430~^7.5^0^^~4~^~BFCN~^~21299~^^^^^^^^^~05/01/2005~ -~21226~^~221~^0.0^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~291~^2.2^5^0.1^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~317~^9.0^3^1.4^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~328~^0.0^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~401~^3.4^5^0.2^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~421~^24.5^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21226~^~430~^8.2^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~454~^25.2^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21227~^~221~^0.0^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~291~^2.3^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~317~^11.6^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21227~^~328~^0.0^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~401~^4.2^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~421~^24.3^0^^~4~^~BFSN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~430~^6.7^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21228~^~291~^1.3^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~317~^26.2^4^4.1^~1~^~A~^^^1^^^^^^^~07/01/2012~ -~21228~^~401~^0.6^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21229~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~21229~^~291~^0.9^4^2.6e-02^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~317~^17.2^4^1.6^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~21229~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~21229~^~401~^0.6^4^4.8e-02^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~421~^40.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21229~^~429~^10.5^4^2.9^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~430~^7.0^4^2.7^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~454~^15.6^5^0.8^~1~^~A~^^^2^10.2^24.5^3^12.9^18.2^~2, 3~^~03/01/2006~ -~21230~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21230~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~317~^19.3^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~328~^0.2^0^^~4~^~BFFN~^~21490~^^^^^^^^^~05/01/2013~ -~21230~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2006~ -~21230~^~421~^31.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21230~^~430~^4.6^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21232~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~317~^25.5^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~430~^4.9^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21233~^~291~^1.1^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~401~^0.6^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21234~^~291~^1.6^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~401~^0.9^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21235~^~291~^1.4^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~401~^0.8^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~291~^1.6^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~401~^0.4^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21238~^~291~^3.9^3^0.1^~1~^~A~^^^1^3.7^4.3^2^3.2^4.6^~2, 3~^~08/01/2012~ -~21238~^~317~^0.4^2^^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~401~^5.6^3^1.0^~1~^~A~^^^1^3.6^6.8^2^1.2^9.9^~2, 3~^~08/01/2012~ -~21238~^~421~^39.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21238~^~429~^48.6^4^6.0^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~430~^16.0^4^0.5^~1~^~A~^^^1^^^^^^^~08/01/2012~ -~21238~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21239~^~291~^1.3^3^0.0^~1~^~A~^^^1^1.3^1.3^^^^~2, 3~^~08/01/2004~ -~21239~^~317~^18.2^4^1.3^~1~^~A~^^^1^16.3^22.3^3^13.7^22.6^~2, 3~^~08/01/2004~ -~21239~^~401~^0.5^4^0.1^~1~^~A~^^^1^0.3^1.0^3^2.7e-02^1.0^~1, 2, 3~^~08/01/2004~ -~21239~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~430~^9.0^4^0.4^~1~^~A~^^^1^8.2^10.1^3^7.7^10.3^~2, 3~^~08/01/2004~ -~21240~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~317~^19.1^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~401~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~430~^9.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~291~^1.7^4^2.9e-02^~1~^~A~^^^1^1.7^1.8^3^1.6^1.8^~2, 3~^~08/01/2004~ -~21241~^~317~^23.1^4^1.9^~1~^~A~^^^1^19.1^28.3^3^16.8^29.3^~2, 3~^~08/01/2004~ -~21241~^~401~^0.5^4^0.1^~1~^~A~^^^1^0.3^0.8^3^0.1^0.8^~1, 2, 3~^~08/01/2004~ -~21241~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~430~^4.5^4^0.2^~1~^~A~^^^1^4.0^5.1^3^3.7^5.2^~2, 3~^~08/01/2004~ -~21242~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~317~^21.9^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~401~^0.6^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~430~^4.2^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~317~^19.9^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~401~^0.7^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~430~^6.9^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~291~^1.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~317~^24.4^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~429~^4.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~430~^10.7^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~317~^31.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~429~^0.8^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~430~^8.9^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21246~^~317~^25.0^4^0.9^~1~^~A~^^^1^22.5^27.3^3^21.8^28.1^~2, 3~^~08/01/2004~ -~21246~^~401~^1.3^4^0.4^~1~^~A~^^^1^0.5^2.6^3^-0.2^2.7^~2, 3~^~08/01/2004~ -~21246~^~429~^17.1^4^2.5^~1~^~A~^^^1^10.9^23.4^3^9.0^25.2^~2, 3~^~08/01/2004~ -~21246~^~430~^8.0^4^1.1^~1~^~A~^^^1^4.9^10.5^3^4.2^11.8^~2, 3~^~08/01/2004~ -~21247~^~291~^4.0^3^0.1^~1~^~A~^^^1^3.7^4.3^2^3.1^4.7^~2, 3~^~08/01/2012~ -~21247~^~317~^0.8^4^0.1^~1~^~A~^^^1^0.3^1.2^3^0.1^1.4^~2, 3~^~08/01/2004~ -~21247~^~401~^3.8^3^0.4^~1~^~A~^^^1^3.1^4.5^2^2.0^5.5^~2, 3~^~08/01/2012~ -~21247~^~421~^33.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21247~^~429~^21.5^4^2.9^~1~^~A~^^^1^14.5^27.5^3^12.1^30.7^~2, 3~^~08/01/2004~ -~21247~^~430~^6.4^4^0.9^~1~^~A~^^^1^5.3^9.2^3^3.4^9.3^~2, 3~^~08/01/2004~ -~21247~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21248~^~291~^3.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~317~^3.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21248~^~421~^27.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~21248~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21248~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~454~^1.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21249~^~291~^2.9^3^5.4e-02^~1~^~A~^^^1^2.8^3.0^2^2.6^3.0^~2, 3~^~07/01/2004~ -~21249~^~401~^2.2^3^0.4^~1~^~A~^^^1^1.3^2.7^2^0.2^4.0^~2, 3~^~08/01/2012~ -~21249~^~421~^28.9^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21249~^~429~^58.4^4^3.3^~1~^~A~^^^1^48.7^64.0^3^47.7^69.0^~2, 3~^~07/01/2004~ -~21249~^~430~^11.1^4^1.5^~1~^~A~^^^1^8.0^15.3^3^6.1^16.0^~2, 3~^~07/01/2004~ -~21249~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21250~^~291~^1.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~21250~^~317~^24.9^4^2.2^~1~^~A~^^^1^18.7^28.5^3^17.8^32.0^~2, 3~^~07/01/2004~ -~21250~^~401~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~1, 2, 3~^~07/01/2004~ -~21250~^~430~^5.5^4^0.4^~1~^~A~^^^1^4.2^6.3^3^4.0^6.9^~2, 3~^~07/01/2004~ -~21251~^~291~^1.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~21251~^~317~^24.4^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~429~^0.7^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~430~^5.7^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~291~^1.8^4^0.2^~1~^~A~^^^1^1.2^2.3^3^1.0^2.6^~2, 3~^~07/01/2004~ -~21252~^~317~^18.2^4^1.4^~1~^~A~^^^1^14.2^21.3^3^13.5^22.9^~2, 3~^~07/01/2004~ -~21252~^~401~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~429~^0.4^4^^~1~^~A~^^^1^0.0^1.0^3^-0.4^1.1^~1, 2, 3~^~10/01/2004~ -~21252~^~430~^19.5^4^1.4^~1~^~A~^^^1^15.9^22.8^3^15.0^24.0^~2, 3~^~07/01/2004~ -~21253~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~317~^18.4^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~430~^19.1^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~317~^20.1^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~430~^14.1^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~317~^17.0^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~429~^0.3^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~430~^11.5^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21256~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.3^1^^^^~05/01/2014~ -~21256~^~317~^16.1^3^0.5^~1~^~A~^^^1^15.1^16.8^2^13.8^18.2^~2, 3~^~05/01/2014~ -~21256~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~429~^32.5^4^1.1^~1~^~A~^^^1^29.6^35.3^3^28.7^36.3^~2, 3~^~07/01/2004~ -~21256~^~430~^6.3^4^0.3^~1~^~A~^^^1^5.7^7.2^3^5.2^7.3^~2, 3~^~07/01/2004~ -~21258~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~317~^24.3^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21258~^~429~^9.1^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~430~^22.5^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21259~^~291~^2.4^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~317~^23.4^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~21259~^~429~^7.7^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~430~^23.7^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21260~^~291~^3.9^3^0.2^~1~^~A~^^^1^3.5^4.3^2^2.9^4.8^~4~^~02/01/2011~ -~21260~^~317~^9.2^4^0.4^~1~^~A~^^^1^8.1^10.4^3^7.6^10.8^~2, 3~^~10/01/2004~ -~21260~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21260~^~429~^6.6^4^1.3^~1~^~A~^^^1^4.1^9.9^3^2.2^11.0^~2, 3~^~10/01/2004~ -~21260~^~430~^15.3^4^2.0^~1~^~A~^^^1^9.8^19.6^3^8.8^21.8^~2, 3~^~10/01/2004~ -~21261~^~291~^2.9^3^3.3e-02^~1~^~A~^^^1^2.8^2.9^2^2.7^3.0^~4~^~03/01/2011~ -~21261~^~317~^11.0^4^0.6^~1~^~A~^^^1^9.2^12.3^3^8.8^13.2^~2, 3~^~10/01/2004~ -~21261~^~401~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21261~^~429~^4.8^4^0.5^~1~^~A~^^^1^3.5^5.8^3^2.9^6.6^~2, 3~^~10/01/2004~ -~21261~^~430~^11.2^4^1.1^~1~^~A~^^^1^9.3^14.5^3^7.4^14.9^~2, 3~^~10/01/2004~ -~21262~^~291~^1.2^3^6.7e-02^~1~^~A~^^^1^1.1^1.3^2^0.8^1.4^~4~^~03/01/2011~ -~21262~^~317~^12.7^4^1.3^~1~^~A~^^^1^9.5^15.2^3^8.5^16.9^~2, 3~^~10/01/2004~ -~21262~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21262~^~429~^4.4^4^0.3^~1~^~A~^^^1^3.8^5.2^3^3.4^5.4^~2, 3~^~10/01/2004~ -~21262~^~430~^8.7^4^0.8^~1~^~A~^^^1^7.7^11.1^3^6.1^11.3^~2, 3~^~10/01/2004~ -~21263~^~291~^1.6^4^0.5^~1~^~A~^^^1^0.9^3.2^3^-0.1^3.3^~2, 3~^~10/01/2004~ -~21263~^~317~^13.1^4^0.1^~1~^~A~^^^1^12.6^13.3^3^12.5^13.6^~2, 3~^~10/01/2004~ -~21263~^~429~^4.2^4^0.4^~1~^~A~^^^1^3.5^5.3^3^2.8^5.6^~2, 3~^~10/01/2004~ -~21263~^~430~^20.8^4^0.6^~1~^~A~^^^1^19.0^22.4^3^18.5^23.0^~2, 3~^~10/01/2004~ -~21264~^~291~^4.2^3^3.3e-02^~1~^~A~^^^1^4.2^4.3^2^4.0^4.3^~4~^~03/01/2011~ -~21264~^~317~^10.4^4^0.6^~1~^~A~^^^1^8.8^11.8^3^8.3^12.4^~2, 3~^~10/01/2004~ -~21264~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21264~^~429~^5.1^4^0.7^~1~^~A~^^^1^3.7^6.4^3^2.7^7.3^~2, 3~^~10/01/2004~ -~21264~^~430~^4.2^4^0.4^~1~^~A~^^^1^3.0^5.1^3^2.7^5.6^~2, 3~^~10/01/2004~ -~21265~^~291~^3.7^3^0.2^~1~^~A~^^^1^3.3^4.0^2^2.8^4.6^~2, 3~^~05/01/2013~ -~21265~^~317~^10.7^3^1.4^~1~^~A~^^^1^7.9^12.6^2^4.5^16.7^~2, 3~^~05/01/2013~ -~21265~^~429~^4.0^4^0.8^~1~^~A~^^^1^2.6^6.3^3^1.2^6.6^~2, 3~^~10/01/2004~ -~21265~^~430~^5.4^4^0.2^~1~^~A~^^^1^4.7^6.0^3^4.5^6.2^~2, 3~^~10/01/2004~ -~21266~^~291~^2.4^4^8.5e-02^~1~^~A~^^^1^2.2^2.6^3^2.1^2.6^~2, 3~^~10/01/2004~ -~21266~^~317~^9.6^4^0.5^~1~^~A~^^^1^8.3^10.8^3^7.7^11.4^~2, 3~^~10/01/2004~ -~21266~^~429~^3.8^4^0.4^~1~^~A~^^^1^2.5^4.7^3^2.2^5.4^~2, 3~^~10/01/2004~ -~21266~^~430~^5.3^4^0.2^~1~^~A~^^^1^4.8^5.8^3^4.4^6.1^~2, 3~^~10/01/2004~ -~21267~^~291~^2.4^4^4.8e-02^~1~^~A~^^^1^2.3^2.5^3^2.2^2.5^~2, 3~^~10/01/2004~ -~21267~^~317~^10.1^4^0.4^~1~^~A~^^^1^9.0^11.0^3^8.7^11.4^~2, 3~^~10/01/2004~ -~21267~^~429~^4.4^4^0.8^~1~^~A~^^^1^2.7^6.8^3^1.5^7.1^~2, 3~^~10/01/2004~ -~21267~^~430~^6.0^4^0.6^~1~^~A~^^^1^4.8^7.8^3^3.9^8.1^~2, 3~^~10/01/2004~ -~21268~^~291~^3.2^2^^~1~^~A~^^^1^2.7^3.7^1^^^^~05/01/2013~ -~21268~^~317~^8.6^3^0.6^~1~^~A~^^^1^7.4^9.6^2^5.8^11.4^~2, 3~^~05/01/2013~ -~21268~^~429~^56.4^4^5.6^~1~^~A~^^^1^41.9^69.1^3^38.2^74.4^~2, 3~^~10/01/2004~ -~21268~^~430~^7.5^4^1.1^~1~^~A~^^^1^5.0^9.9^3^3.7^11.3^~2, 3~^~10/01/2004~ -~21269~^~291~^3.7^2^^~1~^~A~^^^1^3.3^4.0^1^^^^~05/01/2013~ -~21269~^~317~^8.1^3^0.6^~1~^~A~^^^1^7.4^9.3^2^5.4^10.7^~2, 3~^~05/01/2013~ -~21269~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2013~ -~21269~^~429~^21.1^4^2.0^~1~^~A~^^^1^18.0^27.1^3^14.5^27.6^~2, 3~^~10/01/2004~ -~21269~^~430~^6.4^4^0.3^~1~^~A~^^^1^5.7^7.2^3^5.3^7.4^~2, 3~^~10/01/2004~ -~21270~^~291~^3.0^4^0.1^~1~^~A~^^^1^2.8^3.3^3^2.6^3.3^~2, 3~^~10/01/2004~ -~21270~^~317~^7.2^4^0.7^~1~^~A~^^^1^5.5^9.3^3^4.7^9.7^~2, 3~^~10/01/2004~ -~21270~^~429~^10.0^4^1.3^~1~^~A~^^^1^6.3^12.9^3^5.5^14.4^~2, 3~^~10/01/2004~ -~21270~^~430~^10.7^4^1.3^~1~^~A~^^^1^7.7^14.3^3^6.4^15.0^~2, 3~^~10/01/2004~ -~21271~^~291~^1.8^4^0.1^~1~^~A~^^^1^1.5^2.3^3^1.2^2.3^~2, 3~^~01/01/2005~ -~21271~^~317~^20.5^4^2.5^~1~^~A~^^^1^15.8^27.3^3^12.3^28.5^~2, 3~^~01/01/2005~ -~21271~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~429~^0.1^4^5.0e-02^~1~^~A~^^^1^0.0^0.2^3^-0.1^0.2^~1, 2, 3~^~01/01/2005~ -~21271~^~430~^10.1^4^1.4^~1~^~A~^^^1^7.8^14.1^3^5.5^14.6^~2, 3~^~01/01/2005~ -~21272~^~291~^1.7^4^0.1^~1~^~A~^^^1^1.5^2.2^3^1.1^2.2^~2, 3~^~01/01/2005~ -~21272~^~317~^19.4^4^2.1^~1~^~A~^^^1^13.3^22.5^3^12.7^26.0^~2, 3~^~01/01/2005~ -~21272~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~430~^15.5^4^2.2^~1~^~A~^^^1^12.2^21.9^3^8.4^22.6^~2, 3~^~01/01/2005~ -~21273~^~291~^1.6^4^6.4e-02^~1~^~A~^^^1^1.5^1.7^3^1.3^1.7^~2, 3~^~01/01/2005~ -~21273~^~317~^23.1^4^1.7^~1~^~A~^^^1^19.5^26.8^3^17.6^28.4^~2, 3~^~01/01/2005~ -~21273~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~430~^8.3^4^0.4^~1~^~A~^^^1^6.9^9.2^3^6.7^9.8^~2, 3~^~01/01/2005~ -~21274~^~291~^1.7^4^0.1^~1~^~A~^^^1^1.5^2.1^3^1.2^2.2^~2, 3~^~01/01/2005~ -~21274~^~317~^21.3^4^1.4^~1~^~A~^^^1^19.0^25.3^3^16.7^25.8^~2, 3~^~01/01/2005~ -~21274~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~430~^8.5^4^0.4^~1~^~A~^^^1^7.5^9.3^3^7.0^9.8^~2, 3~^~01/01/2005~ -~21275~^~291~^1.8^4^0.1^~1~^~A~^^^1^1.5^2.2^3^1.3^2.2^~2, 3~^~01/01/2005~ -~21275~^~317~^20.6^4^1.6^~1~^~A~^^^1^17.0^25.0^3^15.3^25.9^~2, 3~^~01/01/2005~ -~21275~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~430~^19.3^4^0.9^~1~^~A~^^^1^17.2^21.2^3^16.4^22.2^~2, 3~^~01/01/2005~ -~21276~^~291~^2.0^4^3.1e-02^~1~^~A~^^^1^2.0^2.1^3^1.9^2.1^~2, 3~^~01/01/2005~ -~21276~^~317~^19.5^4^1.6^~1~^~A~^^^1^15.8^23.8^3^14.1^24.9^~2, 3~^~01/01/2005~ -~21276~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~430~^7.3^4^0.4^~1~^~A~^^^1^6.7^8.6^3^5.9^8.7^~2, 3~^~01/01/2005~ -~21277~^~291~^2.2^3^6.7e-02^~1~^~A~^^^1^2.1^2.3^2^1.8^2.4^~4~^~02/01/2011~ -~21277~^~317~^23.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21277~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21277~^~401~^0.9^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21277~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~21277~^~430~^5.4^4^0.2^~1~^~A~^^^1^4.7^5.9^3^4.6^6.2^~2, 3~^~01/01/2005~ -~21278~^~291~^2.4^3^0.1^~1~^~A~^^^1^2.2^2.6^2^1.9^2.9^~4~^~02/01/2011~ -~21278~^~317~^20.3^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21278~^~429~^4.1^4^0.2^~1~^~A~^^^1^3.6^4.7^3^3.3^4.8^~2, 3~^~01/01/2005~ -~21278~^~430~^6.1^4^0.3^~1~^~A~^^^1^5.1^6.9^3^4.8^7.2^~2, 3~^~01/01/2005~ -~21279~^~291~^2.5^3^8.8e-02^~1~^~A~^^^1^2.4^2.7^2^2.1^2.9^~4~^~02/01/2011~ -~21279~^~317~^19.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~21279~^~430~^15.8^4^1.0^~1~^~A~^^^1^13.1^18.0^3^12.4^19.0^~2, 3~^~01/01/2005~ -~21280~^~291~^2.1^3^0.1^~1~^~A~^^^1^1.9^2.4^2^1.5^2.7^~4~^~02/01/2011~ -~21280~^~317~^28.3^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21280~^~401~^0.8^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21280~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~21280~^~430~^5.2^4^0.1^~1~^~A~^^^1^4.9^5.4^3^4.8^5.5^~2, 3~^~01/01/2005~ -~21281~^~291~^2.4^3^0.1^~1~^~A~^^^1^2.2^2.6^2^1.9^2.9^~4~^~02/01/2011~ -~21281~^~317~^24.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21281~^~429~^3.2^4^0.3^~1~^~A~^^^1^2.3^4.1^3^1.9^4.4^~2, 3~^~01/01/2005~ -~21281~^~430~^5.9^4^0.2^~1~^~A~^^^1^5.1^6.2^3^5.0^6.8^~2, 3~^~01/01/2005~ -~21282~^~291~^2.0^4^0.1^~1~^~A~^^^1^1.7^2.3^3^1.5^2.5^~2, 3~^~01/01/2005~ -~21282~^~317~^24.0^4^3.1^~1~^~A~^^^1^18.3^32.5^3^13.9^34.0^~2, 3~^~01/01/2005~ -~21282~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~430~^5.2^4^0.3^~1~^~A~^^^1^4.6^6.1^3^4.2^6.2^~2, 3~^~01/01/2005~ -~21283~^~291~^1.9^9^0.1^~1~^~A~^^^1^1.6^2.9^8^1.5^2.2^~2, 3~^~01/01/2005~ -~21283~^~317~^27.6^4^1.4^~1~^~A~^^^1^25.5^31.5^3^23.0^32.0^~2, 3~^~01/01/2005~ -~21283~^~328~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~21283~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~430~^7.5^4^0.3^~1~^~A~^^^1^6.7^8.3^3^6.3^8.7^~2, 3~^~01/01/2005~ -~21284~^~291~^1.2^9^0.1^~1~^~A~^^^1^0.8^1.7^8^1.0^1.4^~2, 3~^~01/01/2005~ -~21284~^~317~^29.3^4^0.9^~1~^~A~^^^1^27.0^31.3^3^26.3^32.3^~2, 3~^~01/01/2005~ -~21284~^~328~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~21284~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~430~^6.1^4^0.4^~1~^~A~^^^1^5.1^6.9^3^4.6^7.5^~2, 3~^~01/01/2005~ -~21285~^~291~^2.5^4^0.1^~1~^~A~^^^1^2.3^2.8^3^2.0^2.8^~2, 3~^~01/01/2005~ -~21285~^~317~^26.8^4^0.8^~1~^~A~^^^1^25.3^28.5^3^24.2^29.3^~2, 3~^~01/01/2005~ -~21285~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~430~^5.6^4^0.2^~1~^~A~^^^1^5.0^6.1^3^4.8^6.3^~2, 3~^~01/01/2005~ -~21286~^~291~^2.3^4^0.3^~1~^~A~^^^1^1.5^3.0^3^1.2^3.3^~2, 3~^~01/01/2005~ -~21286~^~317~^29.0^4^0.5^~1~^~A~^^^1^27.8^30.5^3^27.2^30.7^~2, 3~^~01/01/2005~ -~21286~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~429~^11.4^4^0.6^~1~^~A~^^^1^10.1^13.2^3^9.3^13.5^~2, 3~^~01/01/2005~ -~21286~^~430~^5.6^4^0.2^~1~^~A~^^^1^5.2^6.5^3^4.7^6.5^~2, 3~^~01/01/2005~ -~21287~^~291~^1.7^8^7.7e-02^~1~^~A~^^^1^1.3^1.9^7^1.5^1.9^~2, 3~^~02/01/2005~ -~21287~^~317~^31.4^3^1.4^~1~^~A~^^^1^28.5^33.3^2^25.0^37.6^~2, 3~^~02/01/2005~ -~21287~^~328~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~21287~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~430~^5.9^3^0.1^~1~^~A~^^^1^5.7^6.2^2^5.2^6.5^~2, 3~^~02/01/2005~ -~21288~^~291~^1.7^8^0.1^~1~^~A~^^^1^1.2^2.7^7^1.2^2.1^~2, 3~^~02/01/2005~ -~21288~^~317~^32.0^3^1.8^~1~^~A~^^^1^28.3^34.5^2^23.8^40.2^~2, 3~^~02/01/2005~ -~21288~^~328~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2009~ -~21288~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~430~^5.9^3^0.5^~1~^~A~^^^1^4.9^6.5^2^3.7^8.0^~2, 3~^~02/01/2005~ -~21289~^~291~^2.1^3^0.1^~1~^~A~^^^1^1.7^2.3^2^1.3^2.8^~2, 3~^~02/01/2005~ -~21289~^~317~^27.1^3^0.8^~1~^~A~^^^1^25.5^28.3^2^23.5^30.6^~2, 3~^~02/01/2005~ -~21289~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~430~^5.7^3^0.3^~1~^~A~^^^1^5.0^6.3^2^4.0^7.3^~2, 3~^~02/01/2005~ -~21290~^~291~^1.3^3^9.5e-02^~1~^~A~^^^1^1.1^1.4^2^0.9^1.7^~2, 3~^~02/01/2005~ -~21290~^~317~^30.0^3^0.6^~1~^~A~^^^1^28.8^30.8^2^27.3^32.5^~2, 3~^~02/01/2005~ -~21290~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~430~^6.8^3^0.8^~1~^~A~^^^1^5.0^7.8^2^2.9^10.5^~2, 3~^~02/01/2005~ -~21291~^~291~^1.5^3^6.5e-02^~1~^~A~^^^1^1.4^1.6^2^1.1^1.7^~2, 3~^~02/01/2005~ -~21291~^~317~^30.9^3^1.0^~1~^~A~^^^1^29.0^32.8^2^26.1^35.5^~2, 3~^~02/01/2005~ -~21291~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~430~^7.1^3^0.8^~1~^~A~^^^1^5.6^8.5^2^3.4^10.7^~2, 3~^~02/01/2005~ -~21292~^~291~^1.6^2^^~1~^~A~^^^1^1.3^1.9^1^^^^~02/01/2005~ -~21292~^~317~^28.1^2^^~1~^~A~^^^1^25.3^31.0^1^^^^~02/01/2005~ -~21292~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2005~ -~21292~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2005~ -~21292~^~430~^9.6^2^^~1~^~A~^^^1^8.5^10.6^1^^^^~02/01/2005~ -~21293~^~291~^2.4^3^0.1^~1~^~A~^^^1^2.3^2.7^2^1.8^3.0^~4~^~02/01/2011~ -~21293~^~317~^16.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21293~^~401~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~428~^1.3^4^0.1^~1~^~A~^^^1^1.1^1.6^3^0.9^1.6^~2, 3~^~02/01/2005~ -~21293~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21293~^~430~^7.7^4^0.4^~1~^~A~^^^1^6.9^9.0^3^6.2^9.2^~2, 3~^~02/01/2005~ -~21294~^~291~^2.1^3^0.1^~1~^~A~^^^1^1.8^2.4^2^1.3^2.8^~4~^~02/01/2011~ -~21294~^~317~^16.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21294~^~401~^1.9^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~428~^1.1^4^0.2^~1~^~A~^^^1^0.7^1.8^3^0.4^1.8^~2, 3~^~02/01/2005~ -~21294~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21294~^~430~^17.0^4^2.7^~1~^~A~^^^1^11.1^24.2^3^8.4^25.6^~2, 3~^~02/01/2005~ -~21295~^~291~^2.4^3^0.2^~1~^~A~^^^1^2.0^2.7^2^1.4^3.3^~4~^~02/01/2011~ -~21295~^~317~^20.3^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~401~^4.2^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~428~^2.8^4^0.1^~1~^~A~^^^1^2.2^3.0^3^2.1^3.3^~2, 3~^~02/01/2005~ -~21295~^~429~^0.7^4^0.1^~1~^~A~^^^1^0.4^0.9^3^0.3^1.0^~2, 3~^~02/01/2005~ -~21295~^~430~^7.7^4^0.2^~1~^~A~^^^1^7.0^8.1^3^6.8^8.4^~2, 3~^~02/01/2005~ -~21296~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.3^2.8^2^1.9^3.1^~4~^~02/01/2005~ -~21296~^~317~^19.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21296~^~401~^1.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~428~^2.5^4^6.5e-02^~1~^~A~^^^1^2.4^2.7^3^2.3^2.7^~2, 3~^~02/01/2005~ -~21296~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21296~^~430~^8.5^4^0.7^~1~^~A~^^^1^7.2^10.0^3^6.2^10.7^~2, 3~^~02/01/2005~ -~21297~^~291~^2.0^3^8.8e-02^~1~^~A~^^^1^1.8^2.1^2^1.5^2.3^~4~^~02/01/2011~ -~21297~^~317~^15.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~21297~^~401~^1.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~428~^2.1^4^0.3^~1~^~A~^^^1^1.6^3.1^3^1.0^3.1^~2, 3~^~02/01/2005~ -~21297~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21297~^~430~^21.5^4^3.4^~1~^~A~^^^1^15.8^31.4^3^10.6^32.3^~2, 3~^~02/01/2005~ -~21298~^~291~^2.3^4^0.5^~1~^~A~^^^1^1.6^4.0^3^0.5^4.1^~2, 3~^~02/01/2005~ -~21298~^~317~^14.5^4^0.7^~1~^~A~^^^1^13.0^16.0^3^12.1^16.7^~2, 3~^~02/01/2005~ -~21298~^~401~^0.6^4^8.8e-02^~1~^~A~^^^1^0.3^0.7^3^0.2^0.8^~1, 2, 3~^~02/01/2005~ -~21298~^~428~^2.0^4^9.6e-02^~1~^~A~^^^1^1.9^2.3^3^1.7^2.3^~2, 3~^~02/01/2005~ -~21298~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~430~^8.1^4^0.2^~1~^~A~^^^1^7.8^8.9^3^7.3^8.9^~2, 3~^~02/01/2005~ -~21299~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~21299~^~291~^2.3^6^8.9e-02^~1~^~A~^^^1^2.1^2.7^5^2.0^2.5^~4~^~02/01/2011~ -~21299~^~317~^19.9^2^^~1~^~A~^^^1^16.8^23.0^1^^^^~02/01/2011~ -~21299~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~21299~^~401~^1.4^2^^~1~^~A~^^^1^0.9^2.0^1^^^~1~^~02/01/2011~ -~21299~^~421~^16.4^8^0.2^~1~^~AS~^^^5^14.8^18.2^3^15.6^17.1^~2, 3~^~11/01/2006~ -~21299~^~429~^0.0^15^0.0^~1~^~A~^^^4^0.0^0.0^3^0.0^0.0^~4~^~06/01/2005~ -~21299~^~430~^6.7^15^0.5^~1~^~A~^^^4^5.4^7.7^3^4.8^8.4^~4~^~06/01/2005~ -~21299~^~454~^27.8^8^0.5^~1~^~A~^^^5^18.3^37.9^3^25.9^29.6^~2, 3~^~11/01/2006~ -~21300~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21300~^~291~^2.2^6^0.1^~1~^~A~^^^1^1.8^2.6^5^1.9^2.5^~2, 3~^~02/01/2011~ -~21300~^~317~^18.1^2^^~1~^~A~^^^1^16.0^20.3^1^^^^~02/01/2011~ -~21300~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~21300~^~401~^1.2^2^^~1~^~A~^^^1^0.4^1.9^1^^^~1~^~02/01/2011~ -~21300~^~421~^16.6^7^0.3^~1~^~AS~^^^4^14.2^19.2^3^15.3^17.7^~2, 3~^~11/01/2006~ -~21300~^~430~^10.0^11^3.5^~1~^~A~^^^3^6.1^17.0^2^-5.2^25.1^~4~^~06/01/2005~ -~21301~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21301~^~291~^2.5^6^0.1^~1~^~A~^^^1^2.0^2.7^5^2.2^2.7^~2, 3~^~02/01/2011~ -~21301~^~317~^20.0^2^^~1~^~A~^^^1^19.8^20.3^1^^^^~02/01/2011~ -~21301~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~21301~^~401~^3.0^2^^~1~^~A~^^^1^1.7^4.2^1^^^^~02/01/2011~ -~21301~^~421~^18.9^3^^~1~^~AS~^^^3^17.0^20.4^^^^~2, 3~^~11/01/2006~ -~21301~^~430~^9.7^14^2.1^~1~^~A~^^^4^5.6^15.8^3^2.7^16.6^~4~^~06/01/2005~ -~21302~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21302~^~291~^2.3^6^0.1^~1~^~A~^^^1^1.9^2.8^5^2.0^2.6^~2, 3~^~02/01/2011~ -~21302~^~317~^23.6^2^^~1~^~A~^^^1^19.0^28.3^1^^^^~02/01/2011~ -~21302~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~21302~^~401~^0.9^2^^~1~^~A~^^^1^0.8^1.0^1^^^~1~^~02/01/2011~ -~21302~^~421~^25.4^7^0.5^~1~^~AS~^^^4^20.3^28.9^3^23.6^27.1^~2, 3~^~11/01/2006~ -~21302~^~430~^6.4^15^0.7^~1~^~A~^^^4^5.2^8.5^3^4.1^8.7^~4~^~06/01/2005~ -~21303~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21303~^~291~^2.2^6^0.1^~1~^~A~^^^1^1.8^2.6^5^1.8^2.5^~2, 3~^~02/01/2011~ -~21303~^~317~^20.0^2^^~1~^~A~^^^1^15.5^24.5^1^^^^~02/01/2011~ -~21303~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~ -~21303~^~401~^0.7^2^^~1~^~A~^^^1^0.4^1.0^1^^^~1~^~02/01/2011~ -~21303~^~421~^24.8^7^0.2^~1~^~AS~^^^4^18.7^28.9^3^24.0^25.4^~2, 3~^~11/01/2006~ -~21303~^~430~^11.5^11^5.0^~1~^~A~^^^3^5.9^21.5^2^-10.0^33.0^~4~^~06/01/2005~ -~21304~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21304~^~291~^2.2^15^0.1^~1~^~A~^^^4^2.0^2.5^3^1.9^2.5^~4~^~06/01/2005~ -~21304~^~317~^23.1^15^2.9^~1~^~A~^^^4^14.5^27.1^3^13.6^32.5^~4~^~06/01/2005~ -~21304~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21304~^~401~^0.1^15^0.1^~1~^~A~^^^4^0.0^0.6^3^-0.3^0.5^~4~^~06/01/2005~ -~21304~^~421~^21.7^4^^~1~^~AS~^^^4^17.6^26.9^^^^~2, 3~^~11/01/2006~ -~21304~^~428~^2.0^4^9.6e-02^~1~^~A~^^^^1.9^2.3^^^^^~02/01/2005~ -~21304~^~429~^0.0^15^0.0^~1~^~A~^^^4^0.0^0.0^3^0.0^0.0^~4~^~06/01/2005~ -~21304~^~430~^6.2^15^0.6^~1~^~A~^^^4^5.2^8.1^3^4.0^8.2^~4~^~06/01/2005~ -~21304~^~454~^23.7^4^^~1~^~A~^^^4^14.2^34.0^^^^~2, 3~^~11/01/2006~ -~21305~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~291~^0.6^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~317~^17.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~328~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21305~^~421~^70.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~430~^1.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~291~^1.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~317~^15.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~421~^30.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~291~^0.8^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~317~^24.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~328~^0.3^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~21307~^~401~^1.8^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~421~^76.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~430~^2.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21309~^~401~^1.2^12^8.3e-02^~1~^~A~^^^1^0.7^1.5^11^0.9^1.3^~1, 4~^~06/01/2008~ -~21319~^~291~^2.8^3^0.1^~1~^~A~^^^1^2.4^2.9^2^2.0^3.4^~2, 3~^~07/01/2008~ -~21319~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21319~^~401~^5.6^3^1.9^~1~^~A~^^^1^2.8^9.3^2^-2.6^13.8^~2, 3~^~05/01/2014~ -~21321~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21327~^~291~^0.8^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~401~^1.8^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21328~^~291~^1.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~291~^0.6^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~291~^0.1^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~291~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~401~^1.5^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~291~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~291~^0.4^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~291~^0.2^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~291~^0.1^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21340~^~291~^1.2^3^3.5e-02^~1~^~A~^^^1^1.1^1.3^2^1.0^1.3^~2, 3~^~06/01/2015~ -~21340~^~317~^26.4^2^^~1~^~A~^^^1^23.3^29.6^1^^^^~06/01/2015~ -~21340~^~421~^131.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21340~^~454~^11.4^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21341~^~291~^1.1^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~401~^0.4^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21344~^~291~^0.8^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21344~^~401~^0.4^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21345~^~291~^1.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~401~^0.6^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~291~^1.7^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~401~^0.4^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21355~^~291~^1.3^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~291~^1.4^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~401~^0.9^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21357~^~291~^1.1^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~401~^1.2^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~291~^1.4^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~291~^0.9^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21360~^~291~^0.9^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~401~^2.1^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21361~^~291~^1.2^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~291~^0.8^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21363~^~291~^1.0^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~401~^0.2^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21364~^~291~^1.6^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~291~^0.9^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~401~^0.0^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21376~^~291~^1.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~401~^10.2^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~291~^1.0^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~401~^9.7^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21378~^~291~^1.5^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~401~^13.5^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~291~^1.6^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~401~^15.7^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~291~^1.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~401~^13.9^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~291~^0.9^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~401~^14.5^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21382~^~291~^1.0^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~401~^0.1^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21383~^~291~^1.8^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~317~^24.8^3^1.3^~1~^~A~^^^1^22.3^26.7^2^19.1^30.4^~2, 3~^~05/01/2013~ -~21383~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2005~ -~21383~^~429~^8.8^4^0.3^~1~^~A~^^^1^7.8^9.4^3^7.7^9.9^~2, 3~^~11/01/2005~ -~21383~^~430~^9.5^4^0.3^~1~^~A~^^^1^8.9^10.4^3^8.4^10.6^~2, 3~^~11/01/2005~ -~21384~^~291~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~317~^20.9^4^1.9^~1~^~A~^^^1^16.0^25.3^3^14.7^27.0^~2, 3~^~11/01/2005~ -~21384~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~429~^11.6^4^0.2^~1~^~A~^^^1^10.8^12.2^3^10.6^12.5^~2, 3~^~11/01/2005~ -~21384~^~430~^6.5^4^0.3^~1~^~A~^^^1^5.8^7.4^3^5.4^7.5^~2, 3~^~11/01/2005~ -~21385~^~291~^0.7^4^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~317~^22.2^4^0.7^~1~^~A~^^^1^20.5^23.8^3^19.9^24.4^~2, 3~^~11/01/2005~ -~21385~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~429~^8.0^4^0.4^~1~^~A~^^^1^7.4^9.2^3^6.6^9.3^~2, 3~^~11/01/2005~ -~21385~^~430~^9.5^4^0.1^~1~^~A~^^^1^9.2^9.7^3^9.1^9.8^~2, 3~^~11/01/2005~ -~21386~^~291~^1.4^4^0.1^~1~^~A~^^^1^1.1^1.5^3^1.0^1.6^~2, 3~^~11/01/2005~ -~21386~^~317~^12.2^4^0.7^~1~^~A~^^^1^11.0^14.3^3^9.8^14.4^~2, 3~^~11/01/2005~ -~21386~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~429~^27.7^4^1.8^~1~^~A~^^^1^23.2^32.3^3^21.8^33.6^~2, 3~^~11/01/2005~ -~21386~^~430~^14.5^4^0.3^~1~^~A~^^^1^13.7^15.3^3^13.4^15.6^~2, 3~^~11/01/2005~ -~21387~^~291~^2.3^3^0.5^~1~^~A~^^^1^1.3^3.1^2^2.0e-03^4.5^~2, 3~^~05/01/2014~ -~21387~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2005~ -~21387~^~401~^4.3^3^0.7^~1~^~A~^^^1^2.9^5.6^2^0.8^7.6^~2, 3~^~05/01/2014~ -~21388~^~291~^2.2^4^0.1^~1~^~A~^^^1^1.9^2.5^3^1.7^2.6^~2, 3~^~11/01/2005~ -~21388~^~317~^11.7^4^0.1^~1~^~A~^^^1^11.3^12.0^3^11.2^12.2^~2, 3~^~11/01/2005~ -~21388~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~421~^27.3^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21388~^~429~^22.8^4^1.1^~1~^~A~^^^1^19.4^24.5^3^18.9^26.5^~2, 3~^~11/01/2005~ -~21388~^~430~^13.9^4^0.4^~1~^~A~^^^1^12.8^14.9^3^12.4^15.3^~2, 3~^~11/01/2005~ -~21388~^~454~^12.3^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~21389~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~317~^20.1^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~421~^42.3^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~430~^14.1^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~291~^1.5^7^0.1^~11~^~JO~^^^0^1.3^1.8^2^0.7^2.2^~4~^~02/01/2006~ -~21390~^~317~^18.2^8^1.3e-02^~1~^~A~^^^0^18.2^18.2^1^18.0^18.3^~4~^~02/01/2006~ -~21390~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~401~^0.9^8^0.5^~6~^~JA~^^^0^0.2^1.9^2^-1.3^3.1^~4~^~02/01/2006~ -~21390~^~421~^32.9^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~429~^0.2^8^0.1^~1~^~A~^^^0^0.0^0.4^1^-2.0^2.3^~4~^~02/01/2006~ -~21390~^~430~^14.3^8^5.2^~1~^~A~^^^0^9.0^19.5^1^-52.5^81.1^~4~^~02/01/2006~ -~21393~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~317~^25.3^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~430~^23.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21395~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~291~^0.9^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~317~^17.9^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~328~^0.2^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~401~^2.9^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~421~^43.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~430~^4.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21396~^~291~^1.0^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~401~^0.6^0^^~1~^~RKA~^^^^^^^^^^~02/01/2006~ -~21397~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21397~^~291~^1.1^3^1.5e-02^~1~^~A~^^^1^1.1^1.1^2^1.0^1.1^~2, 3~^~08/01/2012~ -~21397~^~317~^16.5^3^1.3^~1~^~A~^^^1^14.8^19.2^2^10.5^22.3^~2, 3~^~08/01/2012~ -~21397~^~328~^0.1^0^^~4~^~BFFN~^~21390~^^^^^^^^^~03/01/2009~ -~21397~^~401~^1.1^3^0.1^~1~^~A~^^^1^0.7^1.4^2^0.2^1.9^~1, 2, 3~^~08/01/2012~ -~21397~^~421~^36.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21397~^~429~^0.0^2^^~1~^~A~^^^0^0.0^0.0^^^^^~02/01/2007~ -~21397~^~430~^14.2^2^^~1~^~A~^^^0^9.3^19.1^1^^^^~02/01/2006~ -~21397~^~454~^17.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21398~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~291~^1.2^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~317~^24.7^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~328~^0.1^0^^~4~^~BFFN~^~21397~^^^^^^^^^~03/01/2009~ -~21398~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~421~^37.7^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~430~^4.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21399~^~291~^1.3^2^^~1~^~A~^^^2^1.1^1.6^^^^^~02/01/2006~ -~21399~^~317~^18.4^2^^~1~^~A~^^^2^17.0^19.9^^^^^~02/01/2006~ -~21399~^~328~^0.1^0^^~4~^~BFFN~^~21389~^^^^^^^^^~03/01/2009~ -~21399~^~401~^0.5^2^^~1~^~A~^^^2^0.2^0.7^^^^~1~^~02/01/2006~ -~21399~^~421~^46.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~21399~^~429~^0.2^2^^~1~^~A~^^^2^0.0^0.3^^^^~1~^~02/01/2006~ -~21399~^~430~^9.2^2^^~1~^~A~^^^2^6.9^11.5^^^^^~02/01/2006~ -~21400~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~317~^25.9^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21400~^~421~^31.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21400~^~430~^16.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21401~^~221~^0.0^0^^~4~^~BFPN~^~21229~^^^^^^^^^~03/01/2009~ -~21401~^~291~^1.2^4^0.1^~1~^~A~^^^1^0.6^1.3^1^-0.2^2.6^~1, 2, 3~^~05/01/2014~ -~21401~^~317~^17.5^6^0.3^~1~^~A~^^^1^15.1^21.3^3^16.2^18.7^~2, 3~^~05/01/2014~ -~21401~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2014~ -~21401~^~328~^0.2^0^^~1~^~AS~^~21229~^^^^^^^^^~05/01/2014~ -~21401~^~401~^1.1^2^^~1~^~A~^^^1^1.0^1.1^^^^^~05/01/2014~ -~21401~^~421~^43.7^3^1.3^~1~^~AS~^^^1^41.2^45.3^2^38.1^49.3^~2, 3~^~11/01/2006~ -~21401~^~430~^8.0^0^^~4~^~BFPN~^~21229~^^^^^^^^^~08/01/2012~ -~21410~^~221~^0.0^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~291~^0.2^3^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~09/01/2005~ -~21410~^~317~^23.8^3^1.6^~1~^~A~^^^1^21.8^27.0^2^16.7^30.7^~2, 3~^~09/01/2005~ -~21410~^~328~^0.4^0^^~4~^~BFFN~^~21005~^^^^^^^^^~03/01/2009~ -~21410~^~401~^0.5^3^2.1e-02^~1~^~A~^^^1^0.5^0.6^2^0.4^0.6^~2, 3~^~09/01/2005~ -~21410~^~421~^83.8^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21410~^~429~^0.3^3^0.1^~1~^~A~^^^1^0.0^0.5^2^-0.3^0.9^~1, 2, 3~^~09/01/2005~ -~21410~^~430~^2.8^3^0.3^~1~^~A~^^^1^2.0^3.3^2^1.1^4.4^~2, 3~^~09/01/2005~ -~21410~^~454~^8.7^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~21411~^~221~^0.0^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21411~^~291~^0.2^4^0.0^~1~^~A~^^^1^0.2^0.2^^^^~2, 3~^~09/01/2005~ -~21411~^~317~^25.1^4^0.8^~1~^~A~^^^1^23.3^27.3^3^22.4^27.8^~2, 3~^~09/01/2005~ -~21411~^~328~^0.4^0^^~4~^~BFFN~^~21410~^^^^^^^^^~03/01/2009~ -~21411~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~421~^82.2^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~21411~^~429~^0.6^4^0.3^~1~^~A~^^^1^0.0^1.6^3^-0.6^1.8^~1, 2, 3~^~09/01/2005~ -~21411~^~430~^3.4^4^0.4^~1~^~A~^^^1^2.2^4.3^3^1.8^5.0^~2, 3~^~09/01/2005~ -~21411~^~454~^10.4^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21412~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~291~^0.2^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~317~^3.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21412~^~401~^0.9^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~421~^20.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~454~^0.1^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~291~^0.1^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~317~^4.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~21413~^~401~^0.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~421~^18.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~430~^3.3^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21415~^~291~^3.8^3^9.2e-02^~1~^~A~^^^1^3.7^4.0^2^3.4^4.2^~2, 3~^~04/01/2014~ -~21415~^~317~^4.1^3^0.1^~1~^~A~^^^1^3.9^4.3^2^3.6^4.6^~2, 3~^~04/01/2014~ -~21416~^~291~^1.7^4^0.2^~1~^~A~^^^1^1.4^2.4^3^1.0^2.4^~2, 3~^~01/01/2007~ -~21416~^~401~^14.7^4^0.7^~1~^~A~^^^1^13.4^16.9^3^12.2^17.1^~2, 3~^~01/01/2007~ -~21417~^~291~^0.8^2^^~1~^~A~^^^1^0.8^0.9^1^^^^~01/01/2007~ -~21417~^~317~^19.7^4^0.4^~1~^~A~^^^1^18.8^20.8^3^18.4^21.0^~2, 3~^~01/01/2007~ -~21417~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21418~^~291~^1.2^2^^~1~^~A~^^^1^1.2^1.2^^^^^~01/01/2007~ -~21418~^~317~^18.9^4^1.1^~1~^~A~^^^1^16.5^21.5^3^15.3^22.4^~2, 3~^~01/01/2007~ -~21418~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21419~^~291~^2.0^3^0.2^~1~^~A~^^^1^1.5^2.4^2^0.8^3.1^~2, 3~^~04/01/2014~ -~21419~^~317~^15.2^3^1.6^~1~^~A~^^^1^11.9^16.9^2^8.0^22.4^~2, 3~^~04/01/2014~ -~21420~^~291~^2.0^4^0.1^~1~^~A~^^^1^1.7^2.2^3^1.6^2.3^~2, 3~^~11/01/2006~ -~21420~^~401~^14.6^4^0.9^~1~^~A~^^^1^13.1^17.5^3^11.5^17.7^~2, 3~^~11/01/2006~ -~21420~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~21420~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~21420~^~430~^70.9^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21421~^~291~^1.4^2^^~1~^~A~^^^1^1.4^1.5^1^^^^~11/01/2006~ -~21421~^~317~^18.1^4^1.6^~1~^~A~^^^1^15.3^21.0^3^12.9^23.2^~2, 3~^~11/01/2006~ -~21421~^~428~^10.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21421~^~429~^28.5^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21421~^~430~^9.4^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21422~^~291~^1.0^2^^~1~^~A~^^^1^0.9^1.2^1^^^^~11/01/2006~ -~21422~^~317~^26.1^4^1.5^~1~^~A~^^^1^22.3^30.0^3^21.0^31.1^~2, 3~^~11/01/2006~ -~21422~^~428~^7.1^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21422~^~429~^62.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21422~^~430~^17.4^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21424~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~21424~^~317~^17.2^3^1.2^~1~^~A~^^^1^15.8^19.8^2^11.6^22.7^~2, 3~^~04/01/2014~ -~21425~^~317~^33.1^3^5.4^~1~^~A~^^^1^26.4^43.9^2^9.5^56.5^~2, 3~^~04/01/2014~ -~21425~^~421~^93.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~454~^10.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21426~^~317~^30.9^6^4.2^~1~^~A~^^^1^19.1^48.3^5^19.9^41.7^~2, 3~^~04/01/2007~ -~21427~^~317~^28.7^3^4.0^~1~^~A~^^^1^22.9^36.6^2^11.0^46.3^~2, 3~^~04/01/2014~ -~21427~^~421~^117.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~454~^12.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~317~^36.0^3^4.3^~1~^~A~^^^1^27.7^42.2^2^17.4^54.6^~2, 3~^~04/01/2014~ -~21428~^~421~^120.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~454~^12.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21429~^~291~^1.5^4^8.3e-02^~1~^~A~^^^1^1.3^1.7^3^1.2^1.7^~2, 3~^~04/01/2007~ -~21429~^~317~^11.9^12^0.5^~1~^~A~^^^1^8.8^14.8^11^10.5^13.1^~2, 3~^~04/01/2007~ -~21430~^~317~^27.8^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21431~^~317~^30.9^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21432~^~317~^27.8^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21433~^~317~^31.9^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21434~^~317~^22.4^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21435~^~317~^25.5^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21436~^~291~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~317~^23.5^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~421~^64.5^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~454~^7.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~291~^0.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~317~^27.0^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~421~^62.7^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~454~^6.4^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21438~^~317~^21.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~317~^24.2^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~317~^20.5^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~317~^23.0^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21442~^~317~^35.2^3^5.3^~1~^~A~^^^1^26.1^44.7^2^12.1^58.3^~2, 3~^~04/01/2014~ -~21442~^~421~^99.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~454~^8.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21443~^~317~^34.6^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21444~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~317~^22.6^3^0.6^~1~^~A~^^^1^21.4^23.7^2^19.7^25.4^~2, 3~^~04/01/2014~ -~21445~^~317~^34.2^3^3.4^~1~^~A~^^^1^28.1^39.9^2^19.5^48.8^~2, 3~^~06/01/2014~ -~21446~^~317~^42.7^3^4.1^~1~^~A~^^^1^37.2^50.7^2^25.0^60.3^~2, 3~^~04/01/2014~ -~21446~^~421~^141.2^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~454~^18.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21456~^~291~^0.4^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~317~^29.4^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21457~^~317~^27.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21458~^~291~^0.5^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~317~^28.4^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21459~^~291~^0.6^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~317~^31.2^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~421~^60.7^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~454~^7.8^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21461~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~291~^1.2^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~317~^24.8^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~21461~^~401~^4.4^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~421~^47.8^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~430~^8.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~291~^1.2^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~317~^14.6^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~328~^0.2^0^^~4~^~NR~^~21461~^^^^^^^^^~03/01/2009~ -~21462~^~401~^3.8^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~421~^16.6^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~430~^8.4^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21463~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~291~^1.1^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~317~^3.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~328~^0.1^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~401~^14.3^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~421~^11.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~430~^1.7^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21464~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21464~^~291~^0.0^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~317~^34.1^6^3.4^~1~^~A~^^^1^26.1^44.7^5^25.2^43.0^~2, 3~^~04/01/2014~ -~21464~^~328~^0.1^0^^~4~^~BFZN~^~05063~^^^^^^^^^~05/01/2009~ -~21464~^~401~^0.0^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~421~^96.6^2^^~1~^~A~^^^1^93.4^99.7^1^^^^~04/01/2014~ -~21464~^~430~^0.0^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~454~^9.3^2^^~1~^~A~^^^1^8.0^10.7^1^^^^~04/01/2014~ -~21465~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21465~^~291~^0.0^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~317~^32.1^12^1.2^~1~^~A~^^^2^30.9^33.3^1^16.3^47.8^~2~^~05/01/2009~ -~21465~^~328~^0.1^0^^~4~^~BFZN~^~05012~^^^^^^^^^~05/01/2009~ -~21465~^~401~^0.0^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~421~^81.0^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~430~^0.0^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21466~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21466~^~291~^0.0^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~317~^30.2^6^3.0^~1~^~A~^^^1^22.9^39.9^2^18.8^41.5^~2, 3~^~07/01/2014~ -~21466~^~328~^0.2^0^^~4~^~BFZN~^~05097~^^^^^^^^^~05/01/2009~ -~21466~^~401~^0.0^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~421~^117.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21466~^~430~^0.0^0^^~4~^~BFFN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~454~^12.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21467~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21467~^~291~^0.0^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~317~^38.9^6^2.6^~1~^~A~^^^1^27.7^50.7^4^31.4^46.3^~2, 3~^~07/01/2014~ -~21467~^~328~^0.1^0^^~4~^~BFZN~^~05106~^^^^^^^^^~05/01/2009~ -~21467~^~401~^0.0^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~421~^126.4^2^^~1~^~A~^^^1^120.6^141.2^^^^^~07/01/2014~ -~21467~^~430~^0.0^0^^~4~^~BFFN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~454~^13.9^2^^~1~^~A~^^^1^12.3^18.3^^^^^~07/01/2014~ -~21468~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21468~^~291~^0.3^2^^~1~^~A~^^^1^0.0^1.0^^^^~1~^~04/01/2014~ -~21468~^~317~^18.7^6^0.9^~1~^~A~^^^1^15.8^23.7^2^14.9^22.5^~2, 3~^~04/01/2014~ -~21468~^~328~^0.2^0^^~4~^~BFZN~^~05016~^^^^^^^^^~05/01/2009~ -~21468~^~401~^0.0^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~421~^41.5^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21468~^~430~^0.0^0^^~4~^~BFFN~^~05344~^^^^^^^^^~05/01/2009~ -~21469~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~291~^0.1^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~317~^29.2^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~328~^0.1^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~401~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~421~^78.9^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~430~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~454~^6.3^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21470~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~291~^0.5^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~317~^26.2^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~328~^0.1^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~401~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~421~^66.7^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~430~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~291~^0.1^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21471~^~317~^25.2^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~328~^0.2^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~401~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~421~^84.2^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21471~^~430~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~454~^7.2^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~291~^0.1^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21472~^~317~^28.4^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~328~^0.1^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~401~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~421~^82.2^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~430~^0.0^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~454~^6.7^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21473~^~291~^1.9^2^^~1~^~A~^^^1^1.9^1.9^1^^^^~03/01/2010~ -~21473~^~317~^33.3^3^3.2^~1~^~A~^^^1^27.0^37.3^2^19.5^47.1^~4~^~03/01/2010~ -~21473~^~401~^0.5^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21473~^~428~^3.2^3^0.1^~1~^~A~^^^1^2.9^3.5^2^2.4^3.8^~4~^~03/01/2010~ -~21473~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~03/01/2010~ -~21473~^~430~^8.4^3^0.7^~1~^~A~^^^1^7.0^9.7^2^5.0^11.7^~4~^~03/01/2010~ -~21474~^~291~^2.4^2^^~1~^~A~^^^1^2.3^2.4^1^^^^~03/01/2010~ -~21474~^~317~^26.6^5^0.7^~1~^~A~^^^1^24.8^28.8^4^24.4^28.6^~4~^~03/01/2010~ -~21474~^~401~^1.5^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21474~^~428~^1.4^3^0.1^~1~^~A~^^^1^1.2^1.6^2^0.9^1.8^~4~^~03/01/2010~ -~21474~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~03/01/2010~ -~21474~^~430~^6.9^3^3.3e-02^~1~^~A~^^^1^6.8^6.9^2^6.7^7.0^~4~^~03/01/2010~ -~21475~^~291~^3.0^2^^~1~^~A~^^^1^2.9^3.1^1^^^^~03/01/2010~ -~21475~^~317~^21.4^3^0.5^~1~^~A~^^^1^20.5^22.3^2^19.1^23.6^~4~^~03/01/2010~ -~21475~^~401~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21475~^~428~^1.9^3^6.0e-02^~1~^~A~^^^1^1.9^2.1^2^1.6^2.1^~4~^~03/01/2010~ -~21475~^~429~^2.8^3^0.1^~1~^~A~^^^1^2.5^3.0^2^2.1^3.4^~4~^~03/01/2010~ -~21475~^~430~^4.2^3^0.2^~1~^~A~^^^1^3.9^4.7^2^3.0^5.2^~4~^~03/01/2010~ -~21476~^~291~^2.1^2^^~1~^~A~^^^1^2.0^2.1^1^^^^~03/01/2010~ -~21476~^~317~^32.4^3^3.7^~1~^~A~^^^1^28.6^40.0^2^16.1^48.7^~4~^~03/01/2010~ -~21476~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21476~^~428~^2.8^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21476~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2010~ -~21476~^~430~^7.8^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21477~^~291~^2.3^2^^~1~^~A~^^^1^2.1^2.4^1^^^^~03/01/2010~ -~21477~^~317~^26.8^5^0.9^~1~^~A~^^^1^24.8^30.2^4^24.2^29.3^~4~^~03/01/2010~ -~21477~^~401~^1.3^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21477~^~428~^2.7^3^0.1^~1~^~A~^^^1^2.4^3.0^2^2.0^3.4^~4~^~03/01/2010~ -~21477~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~03/01/2010~ -~21477~^~430~^7.6^3^0.1^~1~^~A~^^^1^7.3^7.9^2^6.8^8.3^~4~^~03/01/2010~ -~21478~^~291~^2.8^3^3.3e-02^~1~^~A~^^^1^2.8^2.9^2^2.6^2.9^~4~^~03/01/2010~ -~21478~^~317~^24.1^4^0.8^~1~^~A~^^^1^22.1^26.2^3^21.2^26.9^~4~^~03/01/2010~ -~21478~^~401~^0.9^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21478~^~428~^4.0^3^0.3^~1~^~A~^^^1^3.4^4.6^2^2.4^5.4^~4~^~03/01/2010~ -~21478~^~429~^3.9^3^0.2^~1~^~A~^^^1^3.3^4.2^2^2.6^5.0^~4~^~03/01/2010~ -~21478~^~430~^5.0^3^0.1^~1~^~A~^^^1^4.8^5.4^2^4.2^5.8^~4~^~03/01/2010~ -~21479~^~291~^2.3^3^0.1^~1~^~A~^^^1^2.0^2.5^2^1.6^2.8^~4~^~03/01/2010~ -~21479~^~317~^25.0^6^0.6^~1~^~A~^^^1^23.3^27.8^5^23.3^26.6^~4~^~03/01/2010~ -~21479~^~428~^3.0^3^7.6e-02^~1~^~A~^^^1^2.8^3.1^2^2.6^3.2^~4~^~03/01/2010~ -~21479~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~03/01/2010~ -~21479~^~430~^7.6^3^0.4^~1~^~A~^^^1^7.0^8.6^2^5.4^9.7^~4~^~03/01/2010~ -~21480~^~291~^2.8^3^5.8e-02^~1~^~A~^^^1^2.7^2.9^2^2.5^3.0^~4~^~03/01/2010~ -~21480~^~317~^20.9^4^0.5^~1~^~A~^^^1^20.0^22.5^3^18.9^22.7^~4~^~03/01/2010~ -~21480~^~401~^0.8^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21480~^~428~^3.4^3^0.4^~1~^~A~^^^1^2.5^4.1^2^1.2^5.4^~4~^~03/01/2010~ -~21480~^~429~^3.5^3^3.3e-02^~1~^~A~^^^1^3.4^3.5^2^3.3^3.6^~4~^~03/01/2010~ -~21480~^~430~^5.7^3^0.3^~1~^~A~^^^1^5.2^6.2^2^4.3^6.9^~4~^~03/01/2010~ -~21482~^~221~^0.0^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~291~^2.3^6^0.1^~1~^~A~^^^1^1.9^2.8^5^1.8^2.6^~4~^~02/01/2011~ -~21482~^~317~^17.7^2^^~1~^~A~^^^1^15.8^19.5^1^^^^~02/01/2011~ -~21482~^~328~^0.0^0^^~4~^~BFFN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~401~^1.0^2^^~1~^~A~^^^1^0.4^1.6^1^^^~1~^~02/01/2011~ -~21482~^~421~^25.5^0^^~4~^~BFFN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~430~^11.8^0^^~4~^~BFFN~^~21303~^^^^^^^^^~02/01/2011~ -~21483~^~221~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~291~^2.5^6^8.8e-02^~1~^~A~^^^1^2.2^2.8^5^2.2^2.6^~4~^~02/01/2011~ -~21483~^~317~^18.6^2^^~1~^~A~^^^1^17.5^19.8^1^^^^~02/01/2011~ -~21483~^~328~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~401~^2.1^2^^~1~^~A~^^^1^1.1^3.0^1^^^^~02/01/2011~ -~21483~^~421~^37.7^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~430~^9.6^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~221~^0.0^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~291~^2.3^6^8.9e-02^~1~^~A~^^^1^2.1^2.7^5^2.1^2.5^~4~^~02/01/2011~ -~21484~^~317~^20.3^2^^~1~^~A~^^^1^18.5^22.0^1^^^^~02/01/2011~ -~21484~^~328~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~401~^1.7^2^^~1~^~A~^^^1^0.6^2.8^1^^^~1~^~02/01/2011~ -~21484~^~421~^26.3^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~430~^6.7^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~221~^0.0^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~291~^2.3^6^0.1^~1~^~A~^^^1^2.0^2.9^5^1.9^2.7^~4~^~02/01/2011~ -~21485~^~317~^24.5^2^^~1~^~A~^^^1^23.0^26.0^1^^^^~02/01/2011~ -~21485~^~328~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~401~^2.0^2^^~1~^~A~^^^1^1.2^2.8^1^^^^~02/01/2011~ -~21485~^~421~^37.5^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~430~^9.5^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21486~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~291~^2.9^3^3.3e-02^~1~^~A~^^^1^2.8^2.9^2^2.7^3.0^~2, 3~^~03/01/2011~ -~21486~^~317~^16.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~401~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21486~^~421~^25.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~430~^7.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~291~^1.2^3^6.7e-02^~1~^~A~^^^1^1.1^1.3^2^0.8^1.4^~2, 3~^~03/01/2011~ -~21487~^~317~^17.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21487~^~421~^28.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~430~^7.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21488~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~291~^1.7^3^6.7e-02^~1~^~A~^^^1^1.6^1.8^2^1.3^1.9^~4~^~03/01/2011~ -~21488~^~317~^20.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~401~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21488~^~421~^29.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~430~^2.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21490~^~221~^0.0^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~291~^0.9^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~317~^19.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~328~^0.1^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~401~^2.4^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~421~^45.6^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~430~^6.7^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21491~^~291~^2.1^3^6.7e-02^~1~^~A~^^^1^2.0^2.2^2^1.7^2.3^~4~^~02/01/2011~ -~21491~^~317~^23.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21491~^~401~^2.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.4^2.9^2^2.0^3.2^~4~^~02/01/2011~ -~21492~^~317~^26.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~401~^1.2^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.3^2.8^2^1.9^3.1^~4~^~02/01/2011~ -~21493~^~317~^19.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~401~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~291~^2.4^3^6.7e-02^~1~^~A~^^^1^2.3^2.5^2^2.0^2.6^~4~^~02/01/2011~ -~21494~^~317~^22.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~401~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21495~^~291~^2.6^3^0.1^~1~^~A~^^^1^2.4^2.8^2^2.0^3.0^~4~^~02/01/2011~ -~21495~^~317~^19.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~401~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21496~^~291~^2.4^3^8.8e-02^~1~^~A~^^^1^2.2^2.5^2^1.9^2.7^~4~^~02/01/2011~ -~21496~^~317~^17.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~401~^3.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~291~^2.3^3^0.1^~1~^~A~^^^1^2.1^2.7^2^1.5^3.1^~4~^~02/01/2011~ -~21497~^~317~^18.5^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~401~^2.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~291~^2.0^3^3.3e-02^~1~^~A~^^^1^1.9^2.0^2^1.8^2.1^~4~^~02/01/2011~ -~21498~^~317~^15.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~401~^1.6^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21505~^~221~^0.0^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~291~^3.0^2^^~1~^~A~^^^1^2.9^3.1^1^^^^~01/01/2013~ -~21505~^~317~^21.4^3^0.5^~1~^~A~^^^1^20.5^22.3^2^19.1^23.6^~4~^~01/01/2013~ -~21505~^~328~^0.0^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~401~^0.1^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~21505~^~421~^18.9^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~429~^2.8^3^0.1^~1~^~A~^^^1^2.5^3.0^2^2.1^3.4^~4~^~06/01/2014~ -~21505~^~430~^4.2^3^0.2^~1~^~A~^^^1^3.9^4.7^2^3.0^5.2^~4~^~01/01/2013~ -~21509~^~291~^2.7^3^0.1^~1~^~A~^^^1^2.4^2.9^2^1.9^3.4^~2, 3~^~08/01/2012~ -~21509~^~317~^5.7^3^0.2^~1~^~A~^^^1^5.2^6.2^2^4.4^6.9^~2, 3~^~08/01/2012~ -~21509~^~401~^1.4^3^0.3^~1~^~A~^^^1^0.7^2.1^2^-0.3^3.0^~1, 2, 3~^~08/01/2012~ -~21509~^~421~^8.4^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21509~^~454~^16.6^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~291~^1.1^3^1.5e-02^~1~^~A~^^^1^1.1^1.1^2^1.0^1.1^~2, 3~^~08/01/2012~ -~21510~^~317~^16.5^3^1.3^~1~^~A~^^^1^14.8^19.2^2^10.5^22.3^~2, 3~^~08/01/2012~ -~21510~^~401~^1.1^3^0.1^~1~^~A~^^^1^0.7^1.4^2^0.2^1.9^~1, 2, 3~^~08/01/2012~ -~21510~^~421~^36.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~21510~^~454~^17.2^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21511~^~221~^0.0^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~291~^1.7^3^0.2^~1~^~A~^^^1^1.4^2.1^2^0.7^2.5^~2, 3~^~04/01/2013~ -~21511~^~317~^16.0^3^0.5^~1~^~A~^^^1^15.2^17.1^2^13.6^18.4^~2, 3~^~04/01/2013~ -~21511~^~328~^0.0^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~401~^3.1^2^^~1~^~A~^^^1^3.1^3.2^1^^^^~04/01/2013~ -~21511~^~421~^17.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21511~^~430~^8.3^0^^~4~^~BFFN~^~21473~^^^^^^^^^~04/01/2013~ -~21511~^~454~^26.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21512~^~291~^1.7^3^0.2^~1~^~A~^^^1^1.4^2.1^2^0.7^2.5^~2, 3~^~05/01/2013~ -~21512~^~317~^16.0^3^0.5^~1~^~A~^^^1^15.2^17.1^2^13.6^18.4^~2, 3~^~05/01/2013~ -~21512~^~401~^3.1^2^^~1~^~A~^^^1^3.1^3.2^1^^^^~05/01/2013~ -~21512~^~421~^17.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21512~^~454~^26.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~291~^1.3^3^8.0e-02^~1~^~A~^^^1^1.2^1.5^2^0.9^1.6^~2, 3~^~05/01/2015~ -~21517~^~317~^19.2^2^^~1~^~A~^^^1^17.2^21.2^1^^^^~05/01/2015~ -~21517~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~401~^0.3^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21517~^~421~^28.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21517~^~430~^23.6^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~454~^14.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21518~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~291~^0.9^3^0.1^~1~^~A~^^^1^0.6^1.2^2^0.1^1.5^~2, 3~^~05/01/2015~ -~21518~^~317~^23.0^2^^~1~^~A~^^^1^21.7^24.4^1^^^^~05/01/2015~ -~21518~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21518~^~421~^34.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21518~^~430~^17.7^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~454~^12.8^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~291~^1.2^3^3.5e-02^~1~^~A~^^^1^1.1^1.3^2^1.0^1.3^~2, 3~^~05/01/2015~ -~21519~^~317~^26.4^2^^~1~^~A~^^^1^23.3^29.6^1^^^^~05/01/2015~ -~21519~^~328~^0.8^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~421~^131.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21519~^~430~^4.4^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~454~^11.4^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21520~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~291~^2.4^2^^~1~^~A~^^^1^2.2^2.7^1^^^^~06/01/2015~ -~21520~^~317~^22.0^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21520~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~421~^7.5^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~428~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21520~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21520~^~430~^21.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21521~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~291~^0.9^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~317~^0.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~401~^5.2^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~421~^4.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21522~^~291~^1.4^3^5.6e-02^~1~^~A~^^^1^1.3^1.5^2^1.1^1.6^~2, 3~^~05/01/2015~ -~21522~^~317~^10.1^2^^~1~^~A~^^^1^9.9^10.3^1^^^^~05/01/2015~ -~21522~^~401~^0.7^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21522~^~428~^2.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21522~^~430~^6.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~291~^1.3^3^8.0e-02^~1~^~A~^^^1^1.2^1.5^2^0.9^1.6^~2, 3~^~05/01/2015~ -~21523~^~317~^19.2^2^^~1~^~A~^^^1^17.2^21.2^1^^^^~05/01/2015~ -~21523~^~401~^0.3^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21523~^~421~^28.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21523~^~454~^14.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21524~^~291~^0.9^3^0.1^~1~^~A~^^^1^0.6^1.2^2^0.1^1.5^~2, 3~^~05/01/2015~ -~21524~^~317~^23.0^2^^~1~^~A~^^^1^21.7^24.4^1^^^^~05/01/2015~ -~21524~^~401~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21524~^~421~^34.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21524~^~454~^12.8^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21525~^~291~^2.4^2^^~1~^~A~^^^1^2.2^2.7^1^^^^~06/01/2015~ -~21525~^~317~^22.0^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21525~^~428~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21525~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21525~^~430~^21.1^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21526~^~291~^1.4^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~06/01/2015~ -~21526~^~317~^19.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~421~^35.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21526~^~454~^22.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21527~^~291~^1.3^2^^~1~^~A~^^^1^1.3^1.4^1^^^^~06/01/2015~ -~21527~^~317~^18.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21527~^~421~^40.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~21527~^~454~^21.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21600~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~291~^4.0^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~317~^22.7^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~328~^0.0^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~401~^0.0^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~421~^19.0^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~430~^4.2^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21601~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~291~^2.9^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~317~^29.9^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~328~^0.0^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~401~^0.4^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~421~^17.9^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~430~^5.8^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2015~ -~21602~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~291~^4.3^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~317~^23.4^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~328~^0.0^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~401~^0.0^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~421~^37.7^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21602~^~430~^5.2^0^^~4~^~BFNN~^~21478~^^^^^^^^^~05/01/2015~ -~21603~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~291~^4.3^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~317~^22.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~328~^0.0^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~401~^0.2^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~421~^23.2^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~430~^10.8^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21604~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~291~^3.9^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2015~ -~21604~^~317~^22.5^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~328~^0.0^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~401~^0.6^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~421~^38.0^0^^~4~^~BFNN~^~21485~^^^^^^^^^~05/01/2015~ -~21604~^~430~^5.3^0^^~4~^~BFNN~^~21478~^^^^^^^^^~05/01/2015~ -~21605~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~291~^4.0^0^^~4~^~BFPN~^~21146~^^^^^^^^^~05/01/2015~ -~21605~^~317~^25.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~328~^0.0^0^^~4~^~BFNN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~401~^0.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~421~^29.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~430~^3.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~454~^1.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~291~^2.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~317~^24.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~328~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~401~^0.7^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~421~^35.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~430~^4.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~221~^0.0^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~291~^2.2^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~317~^17.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~328~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~401~^0.6^0^^~4~^~BFZN~^~21229~^^^^^^^^^~08/01/2015~ -~21611~^~421~^44.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~430~^10.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~22247~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~291~^0.5^2^^~1~^~A~^^^1^0.4^0.7^1^^^^~06/01/2004~ -~22247~^~317~^9.5^2^^~1~^~A~^^^1^8.0^11.0^1^^^^~06/01/2004~ -~22247~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22247~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22247~^~421~^5.4^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~22247~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~454~^43.2^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22401~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~22401~^~291~^1.8^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~317~^11.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~22401~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22401~^~401~^5.4^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~421~^12.2^0^^~4~^~BFSN~^~22912~^^^^^^^^^~01/01/2007~ -~22401~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22402~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~291~^1.4^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~317~^12.2^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~401~^3.9^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~421~^17.8^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~430~^2.6^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22522~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~291~^1.6^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~317~^8.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2007~ -~22522~^~328~^0.4^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~22522~^~401~^3.8^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~421~^12.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2009~ -~22522~^~430~^1.6^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22528~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22529~^~291~^0.8^3^0.1^~1~^~A~^^^1^0.6^1.0^2^0.3^1.2^~2, 3~^~12/01/2007~ -~22529~^~317~^5.3^3^0.1^~1~^~A~^^^1^4.9^5.5^2^4.4^6.0^~2, 3~^~12/01/2007~ -~22529~^~401~^0.3^3^0.0^~1~^~A~^^^1^0.3^0.3^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~421~^19.6^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~22529~^~428~^2.2^3^0.1^~1~^~A~^^^1^2.0^2.4^2^1.6^2.7^~2, 3~^~12/01/2007~ -~22529~^~429~^3.3^3^3.3^~1~^~A~^^^1^0.0^9.9^2^-10.9^17.5^~1, 2, 3~^~12/01/2007~ -~22529~^~430~^2.7^3^1.6^~1~^~A~^^^1^1.1^5.9^2^-4.2^9.5^~2, 3~^~12/01/2007~ -~22529~^~454~^14.1^2^^~1~^~A~^^^1^11.5^16.7^1^^^^~12/01/2007~ -~22535~^~221~^0.0^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~317~^11.6^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~328~^0.2^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~401~^4.9^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~421~^29.1^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~430~^0.8^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22537~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~291~^1.5^4^2.5e-02^~1~^~A~^^^1^1.4^1.5^3^1.3^1.5^~2, 3~^~06/01/2009~ -~22537~^~317~^11.6^4^0.8^~1~^~A~^^^1^9.8^13.6^3^8.9^14.1^~2, 3~^~06/01/2009~ -~22537~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~421~^29.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~430~^0.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22899~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~291~^1.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~317~^3.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22899~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~421~^9.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22900~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~291~^1.5^9^4.0e-02^~1~^~A~^^^1^1.3^2.0^4^1.3^1.5^~2, 3~^~07/01/2014~ -~22900~^~317~^9.6^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2011~ -~22900~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~401~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~421~^12.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~428~^0.2^3^2.5e-02^~1~^~A~^^^1^0.2^0.9^1^-8.2e-02^0.5^~2, 3~^~07/01/2014~ -~22900~^~430~^0.8^3^0.1^~1~^~A~^^^1^0.6^0.9^1^-1.0^2.6^~2, 3~^~04/01/2011~ -~22901~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~291~^1.9^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~317~^23.9^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~22901~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22901~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~421~^5.4^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~22901~^~430~^1.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22902~^~221~^0.0^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~291~^2.3^8^8.0e-03^~1~^~A~^^^2^2.3^2.3^1^2.1^2.3^~4~^~04/01/2004~ -~22902~^~317~^22.2^7^4.5^~1~^~A~^^^2^17.7^26.8^1^-36.1^80.6^~4~^~06/01/2015~ -~22902~^~328~^0.0^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~401~^1.1^3^0.1^~1~^~A~^^^2^1.0^1.3^1^-0.5^2.8^~4~^~06/01/2015~ -~22902~^~421~^26.3^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~430~^7.6^3^0.1^~1~^~A~^^^^7.3^7.9^^^^^~06/01/2015~ -~22903~^~221~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~291~^2.0^4^1.1e-02^~1~^~A~^^^1^1.9^2.1^1^1.8^2.1^~2, 3~^~06/01/2015~ -~22903~^~317~^20.1^2^^~1~^~A~^^^1^19.1^21.0^1^^^^~06/01/2015~ -~22903~^~328~^0.0^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~401~^1.9^9^0.2^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~22903~^~421~^23.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~22903~^~430~^7.1^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~454~^14.2^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22904~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~22904~^~291~^3.3^3^5.8e-02^~1~^~A~^^^1^3.2^3.4^2^3.0^3.5^~2, 3~^~04/01/2011~ -~22904~^~317~^3.6^6^0.2^~1~^~A~^^^1^2.9^4.5^5^2.8^4.2^~1, 2, 3~^~04/01/2011~ -~22904~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~401~^0.2^6^1.6e-02^~1~^~A~^^^1^0.2^0.2^5^0.1^0.2^~1, 2, 3~^~04/01/2011~ -~22904~^~421~^22.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22904~^~430~^4.6^6^0.3^~1~^~A~^^^1^3.9^5.8^5^3.7^5.3^~2, 3~^~04/01/2011~ -~22905~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~22905~^~291~^0.9^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~313~^56.5^10^3.7^~1~^~A~^^^^46.8^68.0^^^^^~11/01/2008~ -~22905~^~317~^4.7^3^2.6^~1~^~A~^^^2^2.0^10.0^1^-29.1^38.6^~1, 2, 3~^~11/01/2008~ -~22905~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22905~^~401~^0.7^2^^~1~^~A~^^^2^0.0^1.4^^^^~1~^~11/01/2008~ -~22905~^~421~^15.6^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~22905~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~ -~22905~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~22906~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22906~^~291~^1.1^4^6.6e-02^~1~^~A~^^^1^0.9^1.2^1^0.2^1.9^~2, 3~^~07/01/2014~ -~22906~^~317~^5.4^6^0.1^~1~^~A~^^^1^4.6^5.7^2^4.9^5.8^~2, 3~^~06/01/2012~ -~22906~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22906~^~401~^1.0^6^0.0^~1~^~A~^^^1^1.0^1.0^^^^~2, 3~^~06/01/2012~ -~22906~^~421~^12.4^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~22906~^~428~^9.9^2^^~1~^~A~^^^1^6.1^12.1^^^^^~07/01/2014~ -~22906~^~429~^5.1^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22906~^~430~^10.7^2^^~1~^~A~^^^1^1.5^26.5^^^^^~07/01/2014~ -~22906~^~454~^12.7^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22908~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~291~^1.1^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~317~^7.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22908~^~401~^0.9^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~421~^15.6^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~22908~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22910~^~221~^0.0^0^^~4~^~BFYY~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~291~^1.7^2^^~1~^~A~^^^1^1.6^1.8^1^^^^~05/01/2013~ -~22910~^~317~^26.2^2^^~1~^~A~^^^1^23.5^28.8^1^^^^~05/01/2013~ -~22910~^~328~^0.0^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~401~^17.1^2^^~1~^~A~^^^1^2.0^32.1^1^^^^~05/01/2013~ -~22910~^~421~^10.3^0^^~4~^~BFYY~^~32019~^^^^^^^^^~05/01/2013~ -~22910~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~22910~^~430~^9.1^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~22911~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~291~^0.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~317~^6.5^6^1.2^~1~^~A~^^^1^3.0^12.0^5^3.2^9.7^~2, 3~^~02/01/2004~ -~22911~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~401~^1.8^2^^~1~^~A~^^^1^1.0^2.5^1^^^^~02/01/2004~ -~22911~^~421~^42.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~430~^2.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22912~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~291~^2.7^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~317~^9.0^9^0.2^~1~^~A~^^^1^7.1^11.7^2^7.9^10.0^~2, 3~^~07/01/2014~ -~22912~^~328~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~401~^1.9^9^0.1^~1~^~A~^^^1^1.0^5.1^2^1.1^2.5^~2, 3~^~07/01/2014~ -~22912~^~421~^10.5^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~22912~^~428~^0.9^2^^~1~^~A~^^^1^0.9^1.1^^^^^~07/01/2014~ -~22912~^~429~^0.8^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22912~^~430~^1.8^3^^~1~^~A~^^^1^1.5^2.3^^^^~2, 3~^~07/01/2014~ -~22912~^~454~^6.3^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22914~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22914~^~291~^0.9^5^2.4e-02^~1~^~A~^^^1^0.8^0.9^4^0.7^0.9^~2, 3~^~04/01/2011~ -~22914~^~317~^8.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22914~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22914~^~401~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22914~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22914~^~430~^1.2^2^^~1~^~A~^^^1^1.1^1.4^1^^^^~04/01/2011~ -~22914~^~454~^17.5^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22915~^~291~^1.3^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~317~^13.0^2^^~1~^~A~^^^1^11.0^15.0^1^^^^~03/01/2004~ -~22915~^~401~^17.9^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22916~^~221~^0.0^0^^~4~^~BFYY~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~291~^1.4^4^4.5e-02^~1~^~A~^^^1^1.3^1.8^2^1.1^1.6^~2, 3~^~06/01/2012~ -~22916~^~317~^14.8^6^1.5^~1~^~A~^^^1^11.1^17.1^2^8.5^21.0^~2, 3~^~07/01/2014~ -~22916~^~328~^0.0^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~401~^4.1^6^0.2^~1~^~A~^^^1^0.7^5.5^2^2.8^5.3^~1, 2, 3~^~07/01/2014~ -~22916~^~421~^15.3^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22916~^~428~^1.2^6^0.1^~1~^~A~^^^1^0.8^1.8^2^0.6^1.8^~2, 3~^~07/01/2014~ -~22916~^~429~^0.4^3^0.0^~1~^~A~^^^1^0.3^0.4^^^^~2, 3~^~06/01/2012~ -~22916~^~430~^5.9^6^0.1^~1~^~A~^^^1^5.3^8.4^2^5.5^6.3^~2, 3~^~07/01/2014~ -~22916~^~454~^5.6^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22917~^~291~^4.2^2^^~1~^~A~^^^1^3.8^4.6^1^^^^~01/01/2007~ -~22917~^~317~^10.7^2^^~1~^~A~^^^1^10.7^10.8^1^^^^~01/01/2007~ -~22917~^~401~^0.8^1^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~22917~^~421~^22.5^0^^~4~^~BFSN~^~22928~^^^^^^^^^~01/01/2007~ -~22917~^~429~^1.9^2^^~1~^~A~^^^1^1.9^2.0^1^^^^~06/01/2009~ -~22917~^~430~^6.8^2^^~1~^~A~^^^1^6.8^6.8^^^^^~04/01/2004~ -~22918~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~22918~^~291~^3.4^5^0.1^~1~^~A~^^^1^2.6^4.1^2^2.9^3.8^~2, 3~^~03/01/2011~ -~22918~^~317~^12.7^9^0.6^~1~^~A~^^^1^8.5^15.0^5^10.9^14.5^~2, 3~^~03/01/2011~ -~22918~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22918~^~401~^0.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22918~^~421~^22.3^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2007~ -~22918~^~430~^7.6^5^0.2^~1~^~A~^^^1^6.9^8.4^4^6.8^8.4^~2, 3~^~04/01/2011~ -~22919~^~291~^0.4^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~317~^11.5^2^^~1~^~A~^^^1^10.0^13.0^1^^^^~06/01/2004~ -~22919~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22928~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22928~^~291~^6.9^4^0.6^~1~^~A~^^^1^5.1^8.0^3^4.8^8.9^~2, 3~^~01/01/2007~ -~22928~^~317~^13.6^3^0.2^~1~^~A~^^^1^13.2^14.1^2^12.4^14.7^~2, 3~^~01/01/2007~ -~22928~^~401~^1.0^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~421~^28.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~ -~22928~^~429~^2.4^2^^~1~^~A~^^^1^2.0^2.8^1^^^^~06/01/2009~ -~22928~^~430~^7.5^2^^~1~^~A~^^^1^7.5^7.6^1^^^^~01/01/2007~ -~22928~^~454~^34.0^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~22953~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22953~^~317~^22.8^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~401~^29.3^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~421~^40.4^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~430~^22.6^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~291~^2.4^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~317~^17.3^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~401~^11.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~421~^31.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~430~^23.8^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22955~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~291~^2.4^3^^~1~^~A~^^^1^2.1^2.8^^^^~2, 3~^~04/01/2014~ -~22955~^~317~^11.1^3^^~1~^~A~^^^1^7.5^13.5^^^^~2, 3~^~04/01/2014~ -~22955~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~22955~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~22955~^~401~^6.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~22955~^~421~^14.7^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~22955~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~22955~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~22955~^~430~^39.4^2^^~1~^~A~^^^1^32.0^42.9^^^^^~04/01/2014~ -~22955~^~454~^20.1^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22956~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~291~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2007~ -~22956~^~317~^14.1^2^^~1~^~A~^^^1^13.4^14.9^1^^^^~06/01/2007~ -~22956~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~22956~^~401~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2007~ -~22956~^~421~^12.3^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2007~ -~22956~^~430~^17.8^0^^~4~^~FLA~^^^^^^^^^^~08/01/2007~ -~22957~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~22957~^~291~^1.3^2^^~11~^~JO~^^^1^1.0^1.5^1^^^^~10/01/2007~ -~22957~^~317~^7.9^4^1.0^~1~^~A~^^^1^6.2^10.9^3^4.6^11.2^~2, 3~^~10/01/2007~ -~22957~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~401~^0.8^2^^~1~^~A~^^^1^0.6^1.0^1^^^^~10/01/2007~ -~22957~^~421~^17.1^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~22957~^~430~^11.5^3^2.8^~1~^~A~^^^1^5.8^14.5^2^-0.7^23.6^~2, 3~^~10/01/2007~ -~22957~^~454~^6.4^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~22958~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~291~^0.7^3^0.1^~1~^~A~^^^1^0.5^0.9^2^0.2^1.2^~2, 3~^~12/01/2007~ -~22958~^~317~^7.1^3^0.8^~1~^~A~^^^1^6.2^8.9^2^3.3^10.9^~2, 3~^~12/01/2007~ -~22958~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~22958~^~401~^3.0^3^1.8^~1~^~A~^^^1^0.3^6.5^2^-5.0^10.9^~1, 2, 3~^~12/01/2007~ -~22958~^~421~^13.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~22958~^~428~^2.1^2^^~1~^~A~^^^1^1.4^2.9^1^^^^~12/01/2007~ -~22958~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~12/01/2007~ -~22958~^~430~^3.8^2^^~1~^~A~^^^1^3.0^4.6^1^^^^~12/01/2007~ -~22958~^~454~^1.8^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22959~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~291~^3.2^2^^~1~^~A~^^^1^3.2^3.3^1^^^^~12/01/2008~ -~22959~^~317~^47.5^2^^~1~^~A~^^^1^45.0^50.0^1^^^^~12/01/2008~ -~22959~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~401~^0.7^2^^~1~^~A~^^^1^0.7^0.7^^^^~1~^~12/01/2008~ -~22959~^~421~^36.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22959~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~454~^121.1^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22960~^~291~^1.2^6^3.3e-02^~1~^~A~^^^1^1.1^1.3^3^1.1^1.3^~2, 3~^~08/01/2012~ -~22960~^~317~^12.5^6^0.4^~1~^~A~^^^1^9.7^16.0^3^11.1^13.7^~2, 3~^~08/01/2012~ -~22960~^~421~^26.9^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~22960~^~429~^5.9^2^^~1~^~A~^^^1^5.8^5.9^1^^^^~12/01/2008~ -~22960~^~430~^6.4^2^^~1~^~A~^^^1^5.4^7.3^1^^^^~12/01/2008~ -~22960~^~454~^15.3^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22961~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22961~^~291~^2.2^5^7.3e-02^~1~^~A~^^^1^2.0^2.3^4^1.9^2.3^~2, 3~^~06/01/2009~ -~22961~^~317~^10.0^5^0.2^~1~^~A~^^^1^9.6^10.8^4^9.4^10.6^~2, 3~^~06/01/2009~ -~22961~^~326~^0.2^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~421~^36.1^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22961~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22961~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~22961~^~430~^10.8^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22961~^~454~^23.4^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22962~^~221~^0.0^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~291~^1.7^4^4.8e-02^~1~^~A~^^^1^1.6^1.8^3^1.5^1.8^~2, 3~^~06/01/2009~ -~22962~^~317~^11.8^4^0.2^~1~^~A~^^^1^11.0^12.0^3^10.9^12.5^~2, 3~^~06/01/2009~ -~22962~^~328~^0.2^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~401~^0.1^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~421~^29.1^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~429~^2.2^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~430~^1.7^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~291~^2.0^5^8.6e-02^~1~^~A~^^^1^1.8^2.3^4^1.7^2.2^~2, 3~^~06/01/2009~ -~22963~^~317~^10.1^5^0.3^~1~^~A~^^^1^9.4^11.5^4^9.0^11.1^~2, 3~^~06/01/2009~ -~22963~^~428~^1.1^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~429~^1.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~430~^3.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22969~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~291~^2.9^5^0.1^~1~^~A~^^^1^2.5^3.5^3^2.4^3.2^~2, 3~^~03/01/2011~ -~22969~^~317~^4.0^9^0.1^~1~^~A~^^^1^3.0^5.1^7^3.6^4.3^~2, 3~^~03/01/2011~ -~22969~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~401~^0.8^9^7.0e-02^~1~^~A~^^^1^0.7^1.3^3^0.5^1.0^~1, 2, 3~^~03/01/2011~ -~22969~^~421~^29.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~430~^3.9^9^0.1^~1~^~A~^^^1^2.3^5.5^7^3.4^4.3^~2, 3~^~04/01/2011~ -~22970~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~291~^1.1^7^4.4e-02^~1~^~A~^^^1^0.9^1.2^2^0.9^1.2^~2, 3~^~03/01/2011~ -~22970~^~317~^18.5^14^0.6^~1~^~A~^^^1^14.5^28.4^5^16.9^20.1^~2, 3~^~03/01/2011~ -~22970~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22970~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~421~^8.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22970~^~430~^5.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~291~^1.3^6^7.2e-02^~1~^~A~^^^1^1.2^1.6^5^1.1^1.5^~2, 3~^~03/01/2011~ -~22971~^~317~^2.4^6^0.1^~1~^~A~^^^1^2.2^3.4^5^1.8^2.9^~1, 2, 3~^~03/01/2011~ -~22971~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~401~^0.8^6^0.2^~1~^~A~^^^1^0.3^1.8^5^0.3^1.3^~1, 2, 3~^~03/01/2011~ -~22971~^~421~^18.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~430~^14.3^6^1.1^~1~^~A~^^^1^12.4^19.5^5^11.4^17.1^~2, 3~^~04/01/2011~ -~22972~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~291~^1.2^5^8.2e-02^~1~^~A~^^^1^1.1^1.4^1^0.6^1.7^~2, 3~^~03/01/2011~ -~22972~^~317~^27.6^11^0.8^~1~^~A~^^^1^24.0^32.4^9^25.7^29.4^~2, 3~^~03/01/2011~ -~22972~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~401~^0.2^11^1.6e-02^~1~^~A~^^^1^0.2^0.3^5^0.1^0.2^~1, 2, 3~^~03/01/2011~ -~22972~^~421~^44.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~428~^1.5^9^0.1^~1~^~A~^^^1^0.9^2.0^8^1.1^1.7^~2, 3~^~04/01/2011~ -~22972~^~430~^1.4^9^0.1^~1~^~A~^^^1^0.9^2.0^8^1.0^1.7^~2, 3~^~04/01/2011~ -~22973~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~291~^1.0^6^3.0e-03^~1~^~A~^^^1^0.9^1.0^3^0.9^1.0^~2, 3~^~04/01/2011~ -~22973~^~317~^27.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~328~^0.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~401~^0.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~421~^26.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22973~^~428~^11.1^4^6.8^~1~^~A~^^^1^1.4^19.5^1^-73.4^95.6^~2, 3~^~07/01/2014~ -~22973~^~429~^1.2^3^6.0e-02^~1~^~A~^^^1^0.5^1.5^1^0.4^1.9^~2, 3~^~07/01/2014~ -~22973~^~430~^5.8^4^4.0^~1~^~A~^^^1^1.5^11.0^1^-46.2^57.7^~2, 3~^~07/01/2014~ -~22974~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2012~ -~22974~^~291~^1.6^9^8.7e-02^~1~^~A~^^^1^0.9^2.7^4^1.3^1.8^~1, 2, 3~^~04/01/2016~ -~22974~^~317~^17.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22974~^~328~^0.3^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2011~ -~22974~^~401~^0.4^2^^~1~^~A~^^^1^0.1^0.6^^^^~1~^~04/01/2016~ -~22974~^~421~^45.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22974~^~430~^10.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~221~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~22975~^~291~^0.7^4^6.5e-02^~1~^~A~^^^1^0.6^0.9^3^0.5^0.9^~2, 3~^~08/01/2010~ -~22975~^~317~^17.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~401~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~421~^45.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~430~^10.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22976~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~291~^1.4^6^5.4e-02^~1~^~A~^^^1^1.3^1.6^5^1.2^1.5^~2, 3~^~04/01/2011~ -~22976~^~317~^12.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~401~^2.8^9^0.4^~1~^~A~^^^1^1.2^4.9^8^1.7^3.8^~2, 3~^~04/01/2011~ -~22976~^~421~^19.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22976~^~428~^0.3^2^^~1~^~A~^^^1^0.3^0.3^1^^^^~04/01/2011~ -~22976~^~430~^16.1^4^6.9^~1~^~A~^^^1^4.1^29.3^3^-5.9^38.0^~2, 3~^~04/01/2011~ -~22977~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~291~^1.7^4^0.1^~1~^~A~^^^1^1.3^2.1^1^0.3^2.9^~2, 3~^~06/01/2012~ -~22977~^~317~^15.9^6^0.7^~1~^~A~^^^1^14.1^17.8^3^13.3^18.4^~2, 3~^~06/01/2012~ -~22977~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~401~^2.5^6^7.9e-02^~1~^~A~^^^1^0.3^3.9^3^2.2^2.7^~1, 2, 3~^~06/01/2012~ -~22977~^~421~^23.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22977~^~428~^1.4^6^8.7e-02^~1~^~A~^^^1^0.9^1.9^2^1.0^1.7^~2, 3~^~06/01/2012~ -~22977~^~429~^0.4^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22977~^~430~^7.0^6^0.3^~1~^~A~^^^1^5.3^10.8^3^5.8^8.0^~2, 3~^~06/01/2012~ -~22977~^~454~^6.0^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22978~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~291~^1.7^7^0.1^~1~^~A~^^^1^1.1^2.8^1^0.1^3.2^~2, 3~^~07/01/2014~ -~22978~^~317~^19.3^7^0.5^~1~^~A~^^^1^11.0^23.2^1^15.0^23.5^~2, 3~^~07/01/2014~ -~22978~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~401~^0.5^5^0.1^~1~^~A~^^^1^0.0^1.2^1^-1.4^2.3^~1, 2, 3~^~07/01/2014~ -~22978~^~421~^46.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22978~^~428~^6.6^7^5.2e-02^~1~^~A~^^^1^4.2^8.1^2^6.4^6.8^~2, 3~^~07/01/2014~ -~22978~^~429~^3.8^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~430~^17.7^7^1.8^~1~^~A~^^^1^1.8^35.0^1^-6.3^41.8^~2, 3~^~07/01/2014~ -~22978~^~454~^7.1^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~291~^1.2^3^0.2^~1~^~A~^^^1^0.7^1.6^2^0.1^2.3^~1, 2, 3~^~08/01/2012~ -~22998~^~317~^32.9^3^1.9^~1~^~A~^^^1^29.4^36.0^2^24.6^41.1^~2, 3~^~08/01/2012~ -~22998~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~421~^9.4^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22999~^~291~^0.7^3^2.9e-02^~1~^~A~^^^1^0.7^0.8^2^0.5^0.8^~2, 3~^~08/01/2012~ -~22999~^~317~^9.5^3^0.6^~1~^~A~^^^1^8.3^10.5^2^6.7^12.3^~2, 3~^~08/01/2012~ -~22999~^~421~^3.8^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22999~^~454~^7.9^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~23000~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~317~^23.8^6^1.3^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~326~^0.0^6^1.2e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23000~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~421~^72.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23000~^~454~^14.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23001~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23001~^~317~^19.7^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~326~^0.1^0^^~4~^~BFFN~^~23192~^^^^^^^^^~06/01/2013~ -~23001~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23001~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23001~^~421~^53.0^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23001~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~03/01/2013~ -~23001~^~454~^9.0^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23002~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23002~^~317~^25.1^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~326~^0.1^0^^~4~^~BFFN~^~23188~^^^^^^^^^~06/01/2013~ -~23002~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23002~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23002~^~421~^89.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23002~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23002~^~454~^11.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23003~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23003~^~317~^19.2^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~326~^0.1^0^^~4~^~BFFN~^~23194~^^^^^^^^^~06/01/2013~ -~23003~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23003~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23003~^~421~^55.4^0^^~4~^~BFPN~^~13913~^^^^^^^^^~03/01/2013~ -~23003~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~03/01/2013~ -~23003~^~454~^8.9^0^^~4~^~BFPN~^~13913~^^^^^^^^^~03/01/2013~ -~23004~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23004~^~317~^24.9^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~326~^0.1^0^^~4~^~BFFN~^~23187~^^^^^^^^^~06/01/2013~ -~23004~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23004~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23004~^~421~^59.5^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23004~^~430~^1.6^0^^~4~^~BFSN~^~13914~^^^^^^^^^~03/01/2013~ -~23004~^~454~^8.2^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23005~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23005~^~317~^20.0^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~326~^0.1^0^^~4~^~BFFN~^~23192~^^^^^^^^^~06/01/2013~ -~23005~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23005~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23005~^~421~^52.0^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23005~^~430~^1.6^0^^~4~^~BFSN~^~13909~^^^^^^^^^~03/01/2013~ -~23005~^~454~^8.8^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23006~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23006~^~317~^25.4^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~326~^0.1^0^^~4~^~BFFN~^~23188~^^^^^^^^^~06/01/2013~ -~23006~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23006~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23006~^~421~^58.0^0^^~4~^~BFPN~^~13910~^^^^^^^^^~03/01/2013~ -~23006~^~454~^8.3^0^^~4~^~BFPN~^~13910~^^^^^^^^^~03/01/2013~ -~23007~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23007~^~317~^19.2^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~326~^0.1^0^^~4~^~BFFN~^~23194~^^^^^^^^^~06/01/2013~ -~23007~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23007~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23007~^~421~^83.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23007~^~430~^1.3^0^^~4~^~BFSN~^~13914~^^^^^^^^^~03/01/2013~ -~23008~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23008~^~317~^24.9^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~326~^0.1^0^^~4~^~BFFN~^~23187~^^^^^^^^^~06/01/2013~ -~23008~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23008~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23008~^~421~^57.1^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23008~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23008~^~454~^7.8^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23030~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~317~^31.4^2^^~1~^~A~^^^1^26.0^36.8^^^^^~01/01/2005~ -~23030~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~421~^86.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23030~^~428~^1.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23030~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~454~^11.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~317~^42.8^2^^~1~^~A~^^^1^36.3^49.3^^^^^~01/01/2005~ -~23031~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~421~^103.4^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23031~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~454~^17.1^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~317~^31.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~421~^91.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~428~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23032~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~454~^8.1^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~317~^40.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~421~^101.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~428~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23033~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~454~^6.9^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~317~^30.8^2^^~1~^~A~^^^1^28.3^33.3^^^^^~01/01/2005~ -~23034~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~421~^75.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23034~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23034~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23034~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23034~^~454~^12.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~317~^38.9^2^^~1~^~A~^^^1^36.3^41.5^^^^^~01/01/2005~ -~23035~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~421~^102.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23035~^~428~^1.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~454~^13.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~317~^31.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~421~^85.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23036~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~454~^12.1^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~317~^29.7^2^^~1~^~A~^^^1^25.8^33.5^^^^^~01/01/2005~ -~23037~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~421~^85.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~454~^15.1^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~317~^40.1^2^^~1~^~A~^^^1^37.3^42.8^^^^^~01/01/2005~ -~23038~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~421~^94.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23038~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~454~^15.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~317~^32.0^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~421~^86.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23039~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23039~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23039~^~454~^11.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~317~^44.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~421~^104.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~428~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23040~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~430~^0.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23040~^~454~^13.0^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~317~^28.9^2^^~1~^~A~^^^1^26.5^31.3^^^^^~01/01/2005~ -~23041~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~421~^83.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23041~^~428~^3.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23041~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~454~^14.7^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~317~^37.0^2^^~1~^~A~^^^1^34.8^39.3^^^^^~01/01/2005~ -~23042~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~421~^101.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23042~^~428~^3.1^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23042~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~454~^16.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~317~^31.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~421~^102.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23043~^~428~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23043~^~430~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~454~^12.4^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~317~^39.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~421~^112.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23044~^~428~^3.1^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23044~^~430~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~454~^12.4^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~317~^30.6^2^^~1~^~A~^^^1^25.5^35.8^^^^^~01/01/2005~ -~23045~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~421~^81.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23045~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~454~^16.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~317~^39.8^2^^~1~^~A~^^^1^31.5^48.0^^^^^~01/01/2005~ -~23046~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~421~^103.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~23046~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~454~^16.4^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~23047~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~317~^28.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~421~^85.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23047~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~454~^13.0^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~317~^37.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~421~^104.7^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~23048~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~454~^13.3^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~23049~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~317~^33.3^2^^~1~^~A~^^^1^32.0^34.5^^^^^~01/01/2005~ -~23049~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~421~^83.5^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23049~^~428~^1.7^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~454~^14.7^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~317~^44.8^2^^~1~^~A~^^^1^40.5^49.0^^^^^~01/01/2005~ -~23050~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~421~^94.2^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23050~^~428~^1.9^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~454~^11.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~317~^30.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~421~^91.3^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~428~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23051~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~454~^10.6^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~317~^41.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~421~^91.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23052~^~428~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23052~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~454~^11.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~317~^33.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~428~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23053~^~429~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23053~^~430~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23054~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~317~^38.7^3^^~1~^~A~^^^1^36.3^41.5^^^^~2~^~01/01/2005~ -~23054~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~421~^107.9^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23054~^~428~^1.3^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~454~^13.5^2^^~1~^~A~^^^1^13.1^13.8^^^^^~01/01/2005~ -~23055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~317~^31.4^3^^~1~^~A~^^^1^26.0^36.8^^^^~2~^~01/01/2005~ -~23055~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~421~^88.8^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23055~^~428~^1.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23055~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~454~^9.8^2^^~1~^~A~^^^1^8.1^11.6^^^^^~01/01/2005~ -~23056~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~317~^42.1^3^^~1~^~A~^^^1^36.3^49.3^^^^~2~^~01/01/2005~ -~23056~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~421~^102.6^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23056~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~454~^12.0^2^^~1~^~A~^^^1^6.9^17.1^^^^^~01/01/2005~ -~23057~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~317~^30.4^3^^~1~^~A~^^^1^25.8^33.5^^^^~2~^~01/01/2005~ -~23057~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~421~^86.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23057~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~454~^13.4^2^^~1~^~A~^^^1^11.8^15.1^^^^^~01/01/2005~ -~23058~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~317~^41.5^3^^~1~^~A~^^^1^37.3^44.3^^^^~2~^~02/01/2005~ -~23058~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~421~^99.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~454~^14.2^2^^~1~^~A~^^^1^13.0^15.5^^^^^~02/01/2005~ -~23059~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~317~^29.8^3^^~1~^~A~^^^1^26.5^31.5^^^^~2~^~02/01/2005~ -~23059~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~421~^92.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~428~^3.2^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~454~^13.5^2^^~1~^~A~^^^1^12.4^14.7^^^^^~02/01/2005~ -~23060~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~317~^37.8^3^^~1~^~A~^^^1^34.8^39.3^^^^~2~^~04/01/2005~ -~23060~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~421~^106.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~23060~^~428~^3.1^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23060~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23060~^~454~^14.5^2^^~1~^~A~^^^1^12.4^16.6^^^^^~04/01/2005~ -~23061~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~317~^30.0^3^^~1~^~A~^^^1^25.5^35.8^^^^~2~^~02/01/2005~ -~23061~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~421~^83.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~454~^14.8^2^^~1~^~A~^^^1^13.0^16.6^^^^^~02/01/2005~ -~23062~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~317~^39.0^3^^~1~^~A~^^^1^31.5^48.0^^^^~2~^~02/01/2005~ -~23062~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~421~^104.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~23062~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~454~^14.9^2^^~1~^~A~^^^1^13.3^16.4^^^^^~02/01/2005~ -~23063~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~317~^32.3^3^^~1~^~A~^^^1^30.3^34.5^^^^~2~^~02/01/2005~ -~23063~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~421~^87.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~428~^1.7^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~454~^12.7^2^^~1~^~A~^^^1^10.6^14.7^^^^^~02/01/2005~ -~23064~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~317~^43.6^3^^~1~^~A~^^^1^40.5^49.0^^^^~2~^~02/01/2005~ -~23064~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~421~^92.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~428~^1.9^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~454~^11.5^2^^~1~^~A~^^^1^11.2^11.8^^^^^~02/01/2005~ -~23065~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~317~^38.3^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~421~^112.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~428~^1.3^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2005~ -~23065~^~429~^0.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2005~ -~23065~^~430~^0.2^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2005~ -~23065~^~454~^13.1^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23066~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~317~^22.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23066~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23066~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~421~^74.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23066~^~454~^23.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~317~^21.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23067~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23067~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~421~^71.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23067~^~454~^22.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~317~^21.5^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23068~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23068~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~421~^72.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23068~^~454~^22.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~317~^36.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23069~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23069~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~421~^104.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23069~^~454~^19.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~317~^34.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23070~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23070~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~421~^101.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23070~^~454~^18.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~317~^35.1^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23071~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23071~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~421~^103.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23071~^~454~^18.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~317~^21.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23072~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23072~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~421~^75.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23072~^~454~^33.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~317~^20.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23073~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23073~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~421~^72.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23073~^~454~^26.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~317~^21.3^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23074~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23074~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~421~^74.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23074~^~454~^30.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~317~^30.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23075~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23075~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~421~^86.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23075~^~454~^27.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~317~^32.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23076~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23076~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~421~^94.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23076~^~454~^24.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~317~^31.0^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23077~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23077~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~421~^90.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23077~^~454~^26.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~317~^22.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23078~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23078~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~421~^70.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23078~^~454~^26.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~317~^22.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23079~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23079~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~421~^76.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23079~^~454~^16.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~317~^22.8^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23080~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23080~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~421~^73.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23080~^~454~^21.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~317~^38.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~328~^0.1^2^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23081~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~421~^100.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23081~^~454~^11.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~317~^37.3^4^3.8^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~326~^0.1^4^4.9e-02^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~328~^0.1^4^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23082~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~421~^101.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23082~^~454~^10.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~317~^38.1^6^2.3^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~326~^0.1^6^2.9e-02^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~328~^0.1^6^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23083~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~421~^101.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23083~^~454~^10.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~317~^38.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23084~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23084~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~421~^127.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23084~^~454~^19.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~317~^40.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23085~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23085~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~421~^119.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23085~^~454~^16.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~317~^38.8^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23086~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23086~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~421~^123.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23086~^~454~^17.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~317~^24.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23087~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23087~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~421~^75.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23087~^~454~^24.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~317~^25.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23088~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23088~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~421~^81.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23088~^~454~^21.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~317~^24.3^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23089~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23089~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~421~^78.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23089~^~454~^22.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~317~^34.6^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23090~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23090~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~421~^102.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23090~^~454~^14.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~317~^32.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23091~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23091~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~421~^102.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23091~^~454~^13.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~317~^35.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23092~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23092~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~421~^102.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23092~^~454~^15.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~317~^24.2^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23093~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23093~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~421~^71.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23093~^~454~^18.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~317~^26.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23094~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23094~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~421~^74.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23094~^~454~^12.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~317~^23.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23095~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23095~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~421~^69.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2010~ -~23095~^~454~^24.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~317~^35.3^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23096~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23096~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~421~^95.6^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23096~^~454~^12.4^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~317~^36.1^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23097~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23097~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~421~^104.1^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23097~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~317~^35.7^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23098~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23098~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~421~^99.5^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2010~ -~23098~^~454~^11.7^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23099~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~317~^30.8^6^1.5^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~326~^0.1^6^2.1e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~421~^83.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23099~^~454~^10.7^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23100~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~317~^35.6^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~421~^57.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23100~^~454~^13.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~317~^28.5^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~421~^55.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23101~^~454~^16.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23102~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~317~^22.9^6^0.9^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~326~^0.1^6^4.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~421~^63.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23102~^~454~^16.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~317~^21.7^4^1.1^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~326~^0.1^4^6.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~421~^64.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23103~^~454~^17.1^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~317~^24.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~421~^63.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23104~^~454~^15.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~317~^29.9^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23105~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23105~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~421~^90.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23105~^~454~^20.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~317~^31.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23106~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23106~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~421~^89.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23106~^~454~^21.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~317~^27.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23107~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23107~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~421~^90.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23107~^~454~^19.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~317~^21.2^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23108~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23108~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~421~^69.8^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23108~^~454~^20.8^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~317~^21.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23109~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23109~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~421~^69.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23109~^~454~^18.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~317~^20.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23110~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23110~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~421~^70.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23110~^~454~^23.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~317~^23.8^4^1.6^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~326~^0.0^4^1.5e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23111~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~421~^68.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23111~^~454~^14.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~317~^23.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~326~^0.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23112~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~421~^76.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23112~^~454~^13.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~317~^25.2^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23113~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23113~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~421~^72.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23113~^~454~^25.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~317~^25.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23114~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23114~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~421~^80.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23114~^~454~^29.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~317~^26.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23115~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23115~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~421~^65.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23115~^~454~^20.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~317~^32.2^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23116~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23116~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~421~^88.0^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23116~^~454~^11.4^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~317~^31.9^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23117~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23117~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~421~^84.8^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23117~^~454~^11.9^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~317~^32.7^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23118~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23118~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~421~^91.7^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23118~^~454~^10.8^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23119~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~317~^37.5^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23119~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23119~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~421~^119.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23119~^~454~^17.4^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~317~^37.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23120~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23120~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~421~^122.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23120~^~454~^18.5^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~317~^39.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23121~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23121~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~421~^115.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23121~^~454~^16.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~317~^24.1^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23122~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23122~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~421~^77.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23122~^~454~^22.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~317~^24.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23123~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23123~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~421~^75.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23123~^~454~^23.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~317~^24.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23124~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23124~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~421~^80.1^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23124~^~454~^21.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~317~^29.7^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23125~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23125~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~421~^87.4^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23125~^~454~^13.8^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~317~^29.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23126~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23126~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~421~^81.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23126~^~454~^13.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~317~^31.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23127~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23127~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~421~^93.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23127~^~454~^13.9^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~317~^18.7^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23128~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23128~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~421~^62.8^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23128~^~454~^20.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~317~^19.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23129~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23129~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~421~^64.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23129~^~454~^20.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~317~^18.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23130~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23130~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2010~ -~23130~^~454~^19.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~317~^37.5^6^2.3^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~326~^0.1^6^2.9e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23131~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~421~^99.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23131~^~454~^10.7^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~317~^38.1^4^2.9^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~326~^0.1^4^3.6e-02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23132~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~421~^99.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23132~^~454~^11.0^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~317~^36.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~326~^0.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23133~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~421~^99.7^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23133~^~454~^10.4^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23134~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~317~^30.7^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23134~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23134~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~421~^88.8^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23134~^~454~^16.7^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~317~^31.7^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23135~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23135~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~421~^88.9^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23135~^~454~^17.1^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~317~^30.3^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23136~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23136~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~421~^88.7^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23136~^~454~^16.3^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~317~^19.1^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23137~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23137~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~421~^65.6^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23137~^~454~^26.7^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~317~^19.6^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23138~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23138~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~421~^66.5^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23138~^~454~^29.3^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~317~^18.6^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23139~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23139~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~421~^64.7^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23139~^~454~^24.0^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~317~^27.5^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23140~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23140~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~421~^79.0^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23140~^~454~^22.9^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~317~^26.8^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23141~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23141~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~421~^75.8^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23141~^~454~^24.0^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~317~^29.1^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23142~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23142~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~421~^82.1^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2010~ -~23142~^~454~^21.8^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~317~^19.8^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23143~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23143~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~421~^63.3^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23143~^~454~^19.0^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~317~^19.9^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23144~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23144~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23144~^~454~^23.2^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~317~^19.7^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2010~ -~23145~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23145~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~421~^65.3^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2010~ -~23145~^~454~^14.8^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23146~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~317~^27.7^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~421~^55.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23146~^~454~^16.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~317~^26.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~421~^55.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23147~^~454~^16.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~317~^33.0^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~421~^57.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23148~^~454~^13.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~317~^39.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~421~^56.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23149~^~454~^13.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~317~^21.1^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~421~^50.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23150~^~454~^15.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~317~^21.5^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~421~^51.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23151~^~454~^16.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~317~^20.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~421~^49.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23152~^~454~^15.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~317~^27.3^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~421~^48.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23153~^~454~^13.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~317~^27.5^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~421~^47.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23154~^~454~^14.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~317~^27.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~326~^0.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~328~^0.1^1^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~421~^49.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23155~^~454~^13.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~317~^28.2^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~326~^0.1^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2011~ -~23156~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~421~^57.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23156~^~454~^15.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~317~^28.3^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~326~^0.1^0^^~4~^~BFFN~^~23101~^^^^^^^^^~06/01/2011~ -~23157~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~421~^57.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23157~^~454~^14.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~317~^28.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~326~^0.1^0^^~4~^~BFFN~^~23147~^^^^^^^^^~06/01/2011~ -~23158~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~421~^56.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23158~^~454~^15.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~317~^35.5^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2011~ -~23159~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~421~^55.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23159~^~454~^13.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~317~^34.8^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23160~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~421~^56.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23160~^~454~^14.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~317~^36.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2011~ -~23161~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~421~^55.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23161~^~454~^12.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~317~^34.0^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2011~ -~23162~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~421~^61.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23162~^~454~^13.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~317~^23.0^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2011~ -~23163~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~421~^46.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23163~^~454~^12.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~317~^33.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23164~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~421~^61.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23164~^~454~^13.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~317~^24.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2011~ -~23165~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~421~^47.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23165~^~454~^13.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~317~^35.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2011~ -~23166~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23166~^~454~^12.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~317~^22.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~06/01/2011~ -~23167~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~421~^44.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23167~^~454~^12.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~317~^35.7^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~326~^0.2^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2012~ -~23168~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23168~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~421~^78.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23168~^~454~^15.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~317~^23.7^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~326~^0.2^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2012~ -~23169~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23169~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~421~^58.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23169~^~454~^13.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~317~^36.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~326~^0.2^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2012~ -~23170~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23170~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~421~^79.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23170~^~454~^15.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~317~^23.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~326~^0.2^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2012~ -~23171~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23171~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~421~^58.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23171~^~454~^15.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~317~^36.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~326~^0.2^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2012~ -~23172~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23172~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~421~^77.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23172~^~454~^14.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~317~^24.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~326~^0.2^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2012~ -~23173~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23173~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~421~^59.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23173~^~454~^12.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~317~^35.6^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2011~ -~23174~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~421~^57.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23174~^~454~^13.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~317~^27.3^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2011~ -~23175~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~421~^48.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23175~^~454~^13.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~317~^33.0^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2011~ -~23176~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~421~^57.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23176~^~454~^13.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~317~^27.5^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2011~ -~23177~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~421~^47.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23177~^~454~^14.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~317~^39.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2011~ -~23178~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~421~^56.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23178~^~454~^13.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~317~^27.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~326~^0.1^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2011~ -~23179~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~421~^49.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23179~^~454~^13.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~326~^0.2^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2012~ -~23180~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23181~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~317~^19.8^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~317~^28.7^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~326~^0.2^0^^~4~^~BFFN~^~23101~^^^^^^^^^~06/01/2012~ -~23182~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23182~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23183~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~317~^20.2^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~326~^0.2^0^^~4~^~BFFN~^~23151~^^^^^^^^^~06/01/2012~ -~23183~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23183~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23184~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~317~^28.5^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~326~^0.1^0^^~4~^~BFFN~^~23147~^^^^^^^^^~06/01/2011~ -~23184~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23184~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23185~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~317~^19.2^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~326~^0.1^0^^~4~^~BFFN~^~23152~^^^^^^^^^~06/01/2011~ -~23185~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23186~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~317~^23.7^4^1.2^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23186~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~421~^48.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23186~^~454~^12.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~317~^23.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23187~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~421~^47.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23187~^~454~^13.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~317~^23.5^6^0.9^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23188~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~421~^48.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23188~^~454~^13.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~317~^24.6^4^0.9^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23189~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~421~^48.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23189~^~454~^14.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~317~^22.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~421~^48.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23190~^~454~^14.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~317~^23.9^6^0.7^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23191~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~421~^48.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23191~^~454~^14.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~317~^18.3^6^0.6^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23192~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~421~^43.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23192~^~454~^13.5^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~317~^18.6^4^0.8^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23193~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~421~^44.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23193~^~454~^13.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~317~^17.7^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23194~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~421~^42.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23194~^~454~^13.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~317~^27.4^4^3.2^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23195~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~421~^48.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23195~^~454~^12.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~317~^33.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23196~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~421~^48.8^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23196~^~454~^11.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~317~^29.7^6^2.6^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23197~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~421~^48.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23197~^~454~^11.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~317~^30.1^6^1.8^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23198~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~421~^48.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23198~^~454~^11.8^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~317~^29.5^4^2.2^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23199~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~421~^49.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23199~^~454~^12.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~317~^31.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23200~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~421~^48.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23200~^~454~^11.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~317~^23.3^6^2.0^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23201~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~421~^42.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23201~^~454~^12.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~317~^23.3^4^2.6^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23202~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~421~^41.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23202~^~454~^12.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~317~^23.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23213~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~421~^43.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23213~^~454~^12.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~317~^33.3^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23214~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~421~^60.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23214~^~454~^13.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~317~^32.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~421~^60.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23215~^~454~^13.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~317~^34.3^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23216~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~421~^60.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23216~^~454~^12.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~317~^22.2^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23217~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~421~^44.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23217~^~454~^12.4^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~317~^23.1^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23218~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~421~^45.7^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23218~^~454~^13.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~317~^21.4^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23219~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~421~^43.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23219~^~454~^11.9^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23220~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~313~^22.3^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~317~^20.5^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~326~^0.2^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~328~^0.2^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~421~^81.0^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~429~^0.0^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~430~^1.7^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~454~^8.0^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23221~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~317~^34.8^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23221~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~421~^77.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23221~^~454~^14.9^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~317~^35.2^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23222~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~421~^78.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23222~^~454~^15.2^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~317~^35.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23223~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~421~^76.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23223~^~454~^14.5^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~317~^22.6^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23224~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~421~^56.0^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23224~^~454~^13.3^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~317~^22.6^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2011~ -~23225~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~421~^55.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23225~^~454~^14.6^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~317~^23.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23226~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~421~^57.0^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23226~^~454~^12.1^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~317~^31.8^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23227~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23227~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23228~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~317~^29.2^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23228~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23229~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~317~^35.8^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23229~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23230~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~317~^24.2^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23230~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23231~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~317~^24.0^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23231~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23232~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~317~^24.4^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23232~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23233~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~317~^24.6^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23233~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23234~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~317~^24.3^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23234~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23235~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~317~^25.1^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23235~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2011~ -~23236~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~317~^17.1^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23236~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23237~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~317~^17.3^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23238~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~317~^16.7^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2012~ -~23238~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~23238~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2011~ -~23239~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~317~^35.0^4^1.0^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23239~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23239~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23240~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~317~^28.4^4^0.8^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~326~^0.1^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23240~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23240~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23241~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~317~^35.3^6^1.3^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23241~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23241~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23242~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~317~^34.8^4^1.6^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23242~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23242~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23243~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~317~^36.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23243~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23243~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23244~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~317~^27.9^6^1.0^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~326~^0.1^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23244~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23244~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23245~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~317~^27.4^4^1.2^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~326~^0.1^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23245~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23245~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23246~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~317~^28.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23246~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23246~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23247~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~317~^33.9^6^0.4^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23247~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23247~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23248~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~317~^34.3^4^0.5^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23248~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23248~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23249~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~317~^33.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23249~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23249~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23250~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~317~^34.2^6^2.0^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23250~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23250~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23251~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~317~^34.6^4^2.5^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23251~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23251~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23252~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~317~^33.7^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23252~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23252~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23253~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~317~^25.5^6^1.8^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~326~^0.1^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23253~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23253~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23254~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~317~^26.7^4^2.2^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~326~^0.1^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23254~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23254~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23255~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~317~^23.6^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23255~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23255~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23256~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~317~^33.2^6^0.7^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23256~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23256~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23257~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~317~^34.5^4^0.9^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23257~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23257~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23258~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~317~^31.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23258~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23258~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23259~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~317~^34.8^6^0.8^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23259~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23259~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23260~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~317~^34.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23260~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23260~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23261~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~317~^26.3^6^0.7^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~326~^0.1^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23261~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23261~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23262~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~317~^23.0^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23262~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23262~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23263~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~317~^23.9^4^0.9^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~326~^0.1^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23263~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23263~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23264~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~317~^24.1^4^1.2^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~326~^0.1^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23264~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23264~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23265~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~317~^23.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23265~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23265~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23266~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~317~^32.0^4^0.3^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23266~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23266~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23267~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~317~^32.0^4^0.4^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23267~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23267~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23268~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~317~^32.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23268~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23268~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23269~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~317~^25.4^4^1.7^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~326~^0.1^0^^~4~^~BFSN~^~23153~^^^^^^^^^~07/01/2011~ -~23269~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23269~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23270~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~317~^25.5^4^2.1^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~326~^0.1^0^^~4~^~BFSN~^~23154~^^^^^^^^^~07/01/2011~ -~23270~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23270~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23271~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~317~^25.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~326~^0.1^0^^~4~^~BFSN~^~23155~^^^^^^^^^~07/01/2011~ -~23271~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23271~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2011~ -~23272~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~317~^34.5^4^0.7^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23272~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23272~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23273~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~317~^33.3^4^0.9^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23273~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23273~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23274~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~317~^36.2^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23274~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23274~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23275~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~317~^35.6^6^0.5^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~326~^0.1^0^^~4~^~BFSN~^~23100~^^^^^^^^^~07/01/2011~ -~23275~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23275~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23276~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~317~^33.6^4^0.7^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~326~^0.1^0^^~4~^~BFSN~^~23148~^^^^^^^^^~07/01/2011~ -~23276~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23276~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23277~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~317~^38.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~326~^0.1^0^^~4~^~BFSN~^~23149~^^^^^^^^^~07/01/2011~ -~23277~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23277~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2011~ -~23278~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~317~^35.6^6^1.2^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23278~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23278~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23279~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~317~^35.0^4^1.5^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23279~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23279~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23280~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~317~^36.5^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23280~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23280~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23281~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~317~^28.1^6^0.9^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23281~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23281~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23282~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~317~^27.7^4^1.1^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23282~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23282~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23283~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~317~^28.7^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23283~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23283~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23284~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~317~^33.9^6^0.4^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23284~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23284~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23285~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~317~^34.3^4^0.5^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23285~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23285~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23286~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~317~^33.4^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2001~ -~23286~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~10/01/2001~ -~23286~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23287~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~317~^34.3^6^1.9^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23287~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23287~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23288~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~317~^34.6^4^2.3^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~326~^0.2^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23288~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23288~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23289~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~317~^33.8^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23289~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23289~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~08/01/2011~ -~23290~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~317~^25.3^6^1.6^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23290~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23290~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23291~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~317~^26.4^4^2.0^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23291~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23291~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23292~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~317~^23.7^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2011~ -~23292~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23292~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~08/01/2011~ -~23293~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23296~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23302~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23303~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23304~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23306~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23315~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23324~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~317~^22.1^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~326~^0.0^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23324~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23324~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~421~^64.6^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23324~^~454~^11.1^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~317~^21.8^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~326~^0.0^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23325~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~421~^65.1^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23325~^~454~^11.2^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~317~^22.6^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~326~^0.0^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23326~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~421~^63.9^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23326~^~454~^10.8^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~317~^22.1^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~326~^0.0^0^^~4~^~BFFN~^~23201~^^^^^^^^^~02/01/2013~ -~23327~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~421~^64.5^0^^~4~^~BFPN~^~23324~^^^^^^^^^~02/01/2013~ -~23327~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23327~^~454~^11.0^0^^~4~^~BFPN~^~23324~^^^^^^^^^~02/01/2013~ -~23328~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~317~^21.8^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~326~^0.0^0^^~4~^~BFFN~^~23202~^^^^^^^^^~02/01/2013~ -~23328~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~421~^65.0^0^^~4~^~BFPN~^~23325~^^^^^^^^^~02/01/2013~ -~23328~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23328~^~454~^11.2^0^^~4~^~BFPN~^~23325~^^^^^^^^^~02/01/2013~ -~23329~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~317~^22.6^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~326~^0.0^0^^~4~^~BFFN~^~23213~^^^^^^^^^~02/01/2013~ -~23329~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~421~^63.8^0^^~4~^~BFPN~^~23326~^^^^^^^^^~02/01/2013~ -~23329~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23329~^~454~^10.7^0^^~4~^~BFPN~^~23326~^^^^^^^^^~02/01/2013~ -~23330~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~317~^22.4^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~326~^0.0^0^^~4~^~BFFN~^~23201~^^^^^^^^^~02/01/2013~ -~23330~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~421~^64.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23330~^~454~^10.9^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23331~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~317~^22.7^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~326~^0.0^0^^~4~^~BFFN~^~23202~^^^^^^^^^~02/01/2013~ -~23331~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~421~^64.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23331~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23331~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23332~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~317~^22.1^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~326~^0.0^0^^~4~^~BFFN~^~23213~^^^^^^^^^~02/01/2013~ -~23332~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~421~^63.3^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23332~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23332~^~454~^10.7^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~317~^22.4^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~326~^0.0^0^^~4~^~BFFN~^~23201~^^^^^^^^^~02/01/2013~ -~23333~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~421~^64.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23333~^~454~^10.9^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23334~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~317~^22.6^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~326~^0.0^0^^~4~^~BFFN~^~23202~^^^^^^^^^~02/01/2013~ -~23334~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~421~^64.4^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23334~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23334~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23335~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~317~^22.1^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~326~^0.0^0^^~4~^~BFFN~^~23213~^^^^^^^^^~02/01/2013~ -~23335~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~421~^63.4^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23335~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23335~^~454~^10.7^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23336~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~317~^20.1^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~326~^0.1^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23336~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23336~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~421~^56.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23336~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~317~^19.2^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~326~^0.1^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23337~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23337~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~421~^54.2^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23337~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23337~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23338~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~317~^21.2^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~326~^0.1^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23338~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23338~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~421~^58.6^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23338~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23338~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~317~^20.8^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~326~^0.1^0^^~4~^~BFFN~^~23201~^^^^^^^^^~05/01/2013~ -~23339~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23339~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~421~^58.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23339~^~454~^9.8^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23340~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~317~^20.2^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~326~^0.1^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23340~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23340~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~421~^56.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23340~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23340~^~454~^9.8^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23341~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~317~^21.4^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~326~^0.1^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23341~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23341~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~421~^61.0^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23341~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23341~^~454~^9.9^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~317~^20.2^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~326~^0.1^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23342~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23342~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~421~^56.1^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23342~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23343~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~317~^19.3^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~326~^0.1^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23343~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23343~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~421~^54.4^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23343~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23343~^~454~^9.6^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23344~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~317~^21.3^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~326~^0.0^0^^~4~^~BFFN~^~23213~^^^^^^^^^~02/01/2013~ -~23344~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~421~^58.7^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23344~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~02/01/2013~ -~23344~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23345~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~317~^24.9^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~326~^0.1^0^^~4~^~BFFN~^~23197~^^^^^^^^^~05/01/2013~ -~23345~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23345~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~421~^64.4^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23345~^~454~^9.2^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23346~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~317~^24.6^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~326~^0.1^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23346~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23346~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~421~^66.0^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23346~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23346~^~454~^9.7^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23347~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~317~^25.2^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~326~^0.1^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~23347~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23347~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~421~^62.1^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23347~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23347~^~454~^8.5^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~317~^27.2^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~326~^0.0^0^^~4~^~BFFN~^~23197~^^^^^^^^^~03/01/2013~ -~23348~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23348~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~421~^79.7^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~430~^1.9^0^^~4~^~BFYN~^~23327~^^^^^^^^^~06/01/2013~ -~23348~^~454~^13.6^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23349~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~317~^26.9^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~326~^0.0^0^^~4~^~BFFN~^~23195~^^^^^^^^^~03/01/2013~ -~23349~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23349~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~421~^80.3^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23349~^~454~^13.9^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23350~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~317~^27.8^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~326~^0.0^0^^~4~^~BFFN~^~23196~^^^^^^^^^~03/01/2013~ -~23350~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23350~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~421~^78.7^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~430~^1.9^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~454~^13.3^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23351~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~317~^29.1^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~326~^0.0^0^^~4~^~BFFN~^~23197~^^^^^^^^^~03/01/2013~ -~23351~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23351~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~421~^83.1^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~05/01/2013~ -~23351~^~454~^14.2^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23352~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~317~^29.4^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~326~^0.0^0^^~4~^~BFFN~^~23195~^^^^^^^^^~03/01/2013~ -~23352~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23352~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~421~^83.7^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~03/01/2013~ -~23352~^~454~^14.4^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23353~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~317~^28.7^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~326~^0.0^0^^~4~^~BFFN~^~23196~^^^^^^^^^~04/01/2013~ -~23353~^~328~^0.0^0^^~4~^~BFYN~^~23335~^^^^^^^^^~06/01/2013~ -~23353~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~421~^82.3^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23353~^~454~^13.9^0^^~4~^~BFYN~^~23335~^^^^^^^^^~06/01/2013~ -~23354~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~317~^22.2^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~326~^0.0^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23354~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~421~^64.8^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23354~^~454~^11.1^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~317~^21.9^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~326~^0.0^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23355~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~421~^65.4^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23355~^~454~^11.3^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~317~^22.7^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~326~^0.0^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23356~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~421~^64.1^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23356~^~454~^10.8^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~317~^22.2^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~326~^0.0^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23357~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~421~^64.8^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23357~^~454~^11.1^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~317~^21.9^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~326~^0.0^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23358~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~421~^65.4^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23358~^~454~^11.3^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~317~^22.7^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~326~^0.0^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23359~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~421~^64.1^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23359~^~454~^10.8^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~317~^22.6^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~326~^0.0^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23360~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~421~^64.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23360~^~454~^11.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23361~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~317~^22.8^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~326~^0.0^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23361~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~421~^64.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23361~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23361~^~454~^11.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23362~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~317~^22.2^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~326~^0.0^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23362~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~421~^63.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23362~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23362~^~454~^10.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~317~^22.6^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~326~^0.0^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23363~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~421~^64.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23363~^~454~^11.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23364~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~317~^22.8^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~326~^0.0^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23364~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~421~^64.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23364~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23364~^~454~^11.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23365~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~317~^22.2^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~326~^0.0^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23365~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~421~^63.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23365~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23365~^~454~^10.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~317~^20.4^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23366~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~421~^55.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23366~^~454~^9.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23367~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~317~^19.5^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23367~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~421~^55.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23367~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23367~^~454~^9.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23368~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~317~^21.5^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~326~^0.1^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23368~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~421~^58.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23368~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23368~^~454~^9.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23369~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~317~^21.5^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23369~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~421~^58.3^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23369~^~454~^9.9^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~317~^21.0^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23370~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~421~^56.3^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23370~^~454~^10.0^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~317~^22.0^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~326~^0.1^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23371~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23371~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23371~^~454~^9.9^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~317~^20.4^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~04/01/2013~ -~23372~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~421~^55.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23372~^~454~^9.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23373~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~317~^19.5^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~04/01/2013~ -~23373~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~421~^53.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23373~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23373~^~454~^9.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23374~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~317~^21.5^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~326~^0.1^0^^~4~^~BFFN~^~23155~^^^^^^^^^~04/01/2013~ -~23374~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~421~^58.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23374~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23374~^~454~^9.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23375~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~317~^25.1^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~04/01/2013~ -~23375~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~421~^72.0^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23375~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23375~^~454~^12.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23376~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~317~^24.8^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23376~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~421~^69.5^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23376~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23376~^~454~^12.3^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23377~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~317~^25.4^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~04/01/2013~ -~23377~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~421~^75.6^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23377~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23377~^~454~^12.2^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23378~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~317~^27.4^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~326~^0.0^0^^~4~^~BFFN~^~23100~^^^^^^^^^~04/01/2013~ -~23378~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23378~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~421~^80.1^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~430~^1.9^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~454~^13.7^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23379~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~317~^27.0^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~326~^0.0^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23379~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23379~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~421~^80.7^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~430~^1.9^0^^~4~^~BFYN~^~23358~^^^^^^^^^~06/01/2013~ -~23379~^~454~^13.9^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23380~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~317~^28.0^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~326~^0.0^0^^~4~^~BFFN~^~23149~^^^^^^^^^~04/01/2013~ -~23380~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23380~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~421~^79.1^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~430~^1.9^0^^~4~^~BFYN~^~23359~^^^^^^^^^~06/01/2013~ -~23380~^~454~^13.3^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23381~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~317~^29.3^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~326~^0.0^0^^~4~^~BFFN~^~23100~^^^^^^^^^~04/01/2013~ -~23381~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23381~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~421~^83.4^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~04/01/2013~ -~23381~^~454~^14.3^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23382~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~317~^29.6^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~326~^0.0^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~ -~23382~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23382~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~421~^84.0^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23382~^~454~^14.5^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23383~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~317~^28.8^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~326~^0.0^0^^~4~^~BFFN~^~23149~^^^^^^^^^~04/01/2013~ -~23383~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23383~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~421~^82.6^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~04/01/2013~ -~23383~^~454~^13.9^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23384~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~317~^22.0^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~326~^0.1^0^^~4~^~BFFN~^~23155~^^^^^^^^^~06/01/2013~ -~23384~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23384~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~421~^61.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2013~ -~23384~^~454~^9.9^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~317~^21.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~326~^0.1^0^^~4~^~BFFN~^~23154~^^^^^^^^^~06/01/2013~ -~23385~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23385~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~421~^56.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~07/01/2013~ -~23385~^~454~^10.0^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~317~^21.5^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~326~^0.1^0^^~4~^~BFFN~^~23153~^^^^^^^^^~06/01/2013~ -~23386~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23386~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~421~^58.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2013~ -~23386~^~454~^9.9^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~317~^20.0^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~326~^0.1^0^^~4~^~BFFN~^~23213~^^^^^^^^^~06/01/2013~ -~23387~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23387~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~421~^57.6^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~05/01/2013~ -~23387~^~454~^9.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~317~^19.5^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~326~^0.1^0^^~4~^~BFFN~^~23201~^^^^^^^^^~06/01/2013~ -~23388~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23388~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~421~^55.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2013~ -~23388~^~454~^9.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~317~^24.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~326~^0.1^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~ -~23389~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23389~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~421~^62.2^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2013~ -~23389~^~454~^9.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~317~^25.9^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~326~^0.1^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~ -~23390~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23390~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~421~^61.1^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~454~^8.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~317~^24.8^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~326~^0.1^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~ -~23391~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23391~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~421~^61.8^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2013~ -~23391~^~454~^8.8^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~317~^26.9^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~326~^0.1^0^^~4~^~BFFN~^~23148~^^^^^^^^^~06/01/2013~ -~23392~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23392~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~421~^68.9^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2013~ -~23392~^~454~^9.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~317~^28.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~326~^0.1^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~ -~23393~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23393~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~421~^66.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2013~ -~23393~^~454~^8.7^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~317~^27.7^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~326~^0.1^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~ -~23394~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23394~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~421~^68.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~06/01/2013~ -~23394~^~454~^9.3^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~317~^19.0^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~326~^0.1^0^^~4~^~BFFN~^~23202~^^^^^^^^^~06/01/2013~ -~23395~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~23395~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~421~^53.3^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~430~^1.5^12^^~1~^~A~^^^1^0.5^3.1^^^^~2~^~06/01/2013~ -~23395~^~454~^9.4^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23397~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~317~^1.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~317~^3.6^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~317~^2.6^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~317~^5.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~317~^2.7^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~317~^1.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~317~^2.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~317~^6.6^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~317~^4.7^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~317~^1.8^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~317~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~317~^5.5^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~317~^3.5^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~317~^1.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~317~^17.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~317~^9.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~317~^1.4^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~326~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~317~^2.9^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~317~^105.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~326~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~317~^1.8^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~317~^103.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~317~^16.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~317~^16.5^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~326~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~317~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~317~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~317~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~317~^3.5^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~317~^2.9^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~317~^1.9^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~317~^4.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~317~^2.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~317~^1.8^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~317~^11.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~317~^9.0^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~326~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~317~^5.7^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23440~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~317~^2.0^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23441~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~317~^4.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~317~^3.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~317~^2.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~317~^4.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~326~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~317~^3.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~326~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23445~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23446~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~317~^2.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~317~^1.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~317~^3.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~317~^2.5^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~317~^5.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~317~^2.6^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~317~^2.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~317~^1.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~317~^6.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~326~^0.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~328~^0.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~317~^4.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~317~^1.8^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~317~^1.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~317~^5.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~317~^3.4^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~317~^2.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~317~^1.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~317~^2.1^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23463~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~317~^2.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~326~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23464~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~317~^2.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~317~^1.9^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23466~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~317~^1.5^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~326~^0.1^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23467~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~317~^1.5^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~317~^3.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~326~^0.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~328~^0.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~317~^2.8^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~317~^5.7^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~328~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~317~^4.3^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23472~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~317~^17.1^72^0.9^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23472~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23472~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~421~^69.0^12^2.8^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~430~^0.5^12^0.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~454~^7.8^12^0.7^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23473~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23473~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~421~^84.8^12^2.5^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~430~^1.2^12^0.6^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~454~^7.6^12^0.7^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~317~^20.9^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23474~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23474~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~421~^82.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23474~^~430~^1.1^0^^~4~^~BFSN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~454~^7.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23475~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~317~^22.0^12^1.5^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23475~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~421~^87.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23475~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~23475~^~454~^7.9^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23476~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23476~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23476~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~421~^93.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23476~^~430~^1.3^0^^~4~^~BFSN~^~23473~^^^^^^^^^~06/01/2014~ -~23476~^~454~^8.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23477~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~317~^17.7^72^1.0^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23477~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23477~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~421~^72.8^12^3.1^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~430~^0.1^12^0.3^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~454~^7.7^12^0.9^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23478~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23478~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~421~^86.0^12^3.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~430~^1.4^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~454~^7.2^12^0.9^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~317~^21.2^12^1.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23479~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23479~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~421~^84.9^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23479~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~23479~^~454~^7.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23480~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~317~^22.5^12^1.9^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23480~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23480~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~421~^90.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23480~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~23480~^~454~^7.5^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23481~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23481~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23481~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~421~^96.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23481~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2014~ -~23481~^~454~^8.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23482~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~317~^22.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~421~^59.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~428~^0.2^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~429~^0.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~454~^10.5^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~317~^26.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~328~^0.0^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~421~^74.7^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~454~^13.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~317~^33.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~328~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~421~^89.2^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~430~^1.6^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~454~^13.4^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~317~^23.9^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~421~^60.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~454~^11.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~317~^26.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~328~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~421~^74.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~454~^11.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~317~^33.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~328~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~421~^89.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~430~^1.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~454~^13.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~313~^0.3^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~317~^23.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~421~^62.8^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~428~^0.3^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~454~^12.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~317~^23.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~421~^61.5^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~428~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~454~^12.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~317~^25.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~421~^65.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~428~^0.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~454~^10.7^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~317~^24.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~328~^0.1^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~421~^63.6^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~428~^0.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~429~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~430~^1.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~454~^10.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~317~^33.6^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~326~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~328~^0.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~421~^85.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~430~^1.3^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~454~^10.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~317~^28.1^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~326~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~328~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~421~^71.9^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~430~^1.2^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~454~^12.4^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23509~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~317~^25.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~421~^98.6^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23511~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~317~^20.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~421~^99.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23513~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~317~^30.0^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23514~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~317~^30.0^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~421~^102.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23515~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~317~^30.0^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23516~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23516~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23516~^~317~^32.0^6^1.2^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23516~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23516~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23516~^~421~^88.7^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23516~^~454~^14.3^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23517~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~317~^30.0^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23519~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~317~^25.2^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~317~^25.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~421~^99.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23523~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~317~^19.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~421~^98.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23525~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~317~^19.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~421~^97.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23528~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~317~^28.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~326~^0.2^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~23528~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~421~^93.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23531~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~317~^29.4^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~326~^0.1^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~23531~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~421~^104.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23533~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~317~^32.2^4^1.4^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23533~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23533~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~421~^84.8^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23533~^~454~^14.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~317~^30.9^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23536~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23536~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~421~^90.2^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23536~^~454~^13.6^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23540~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~317~^19.8^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~421~^99.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23541~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~317~^18.6^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~421~^89.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23545~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~317~^10.3^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~421~^114.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23545~^~454~^15.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23547~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~317~^25.2^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~421~^98.5^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23549~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~317~^19.9^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~421~^98.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23552~^~221~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~291~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~317~^29.1^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~401~^0.0^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~421~^97.9^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23554~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~317~^31.7^6^1.1^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~326~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23554~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23554~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~421~^87.5^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~430~^1.6^12^^~1~^~A~^^^1^0.5^3.7^^^^~2~^~07/01/2010~ -~23554~^~454~^14.1^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23557~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~317~^17.4^72^1.0^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23557~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23557~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~421~^70.9^12^2.9^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23557~^~430~^0.3^12^0.2^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~454~^7.8^12^0.8^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23558~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23558~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~421~^85.4^12^3.0^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~430~^1.3^12^0.9^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23558~^~454~^7.4^12^0.8^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~317~^21.1^12^1.3^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23559~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23559~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~421~^83.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23559~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23559~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~23559~^~454~^7.3^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23560~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23560~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23560~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~421~^94.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23560~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23560~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~23560~^~454~^8.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23561~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~317~^22.3^12^1.7^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23561~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23561~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~421~^88.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23561~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23561~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~23561~^~454~^7.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23562~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~317~^16.6^72^0.9^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23562~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23562~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~421~^66.1^12^2.6^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~430~^0.8^12^0.2^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~454~^7.9^12^0.5^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23563~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23563~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~421~^83.9^12^1.9^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~430~^1.1^12^0.3^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23563~^~454~^7.9^12^0.5^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~317~^20.7^12^1.0^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23564~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23564~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~421~^81.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23564~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23564~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~23564~^~454~^7.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23565~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23565~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23565~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~421~^91.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23565~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23565~^~430~^1.2^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2005~ -~23565~^~454~^8.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23566~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23566~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23566~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~421~^85.5^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23566~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23566~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~23566~^~454~^8.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23567~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~23567~^~317~^15.8^72^0.8^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23567~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23567~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~421~^61.2^12^2.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~429~^0.0^12^^~1~^~AR~^^^^^^^^^~1~^~03/01/2002~ -~23567~^~430~^1.3^12^0.1^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~454~^8.1^12^0.3^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~23568~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23568~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23568~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~421~^82.4^12^1.3^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~429~^0.0^12^^~1~^~AR~^^^^^^^^^~1~^~03/01/2002~ -~23568~^~430~^1.2^12^0.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~454~^8.5^12^0.3^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~23569~^~317~^20.3^12^0.9^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23569~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23569~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~421~^81.1^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23569~^~430~^1.5^0^^~4~^~BFSN~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~454~^7.2^0^^~4~^~BFNN~^~23568~^^^^^^^^^~06/01/2002~ -~23570~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~23570~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23570~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23570~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~421~^91.4^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23570~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23570~^~430~^1.7^0^^~4~^~BFSN~^~23568~^^^^^^^^^~05/01/2014~ -~23570~^~454~^12.0^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23571~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~313~^22.4^57^5.2^~1~^~A~^^^4^3.8^71.9^12^11.0^33.7^~4~^~02/01/2006~ -~23571~^~317~^21.0^12^1.0^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23571~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23571~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~421~^85.5^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23571~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23571~^~430~^1.6^0^^~4~^~BFSN~^~23568~^^^^^^^^^~05/01/2014~ -~23571~^~454~^11.3^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23572~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~317~^15.0^72^0.8^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23572~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~421~^56.4^12^2.5^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~430~^1.8^12^0.1^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~454~^8.2^12^0.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23573~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23573~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~421~^80.8^12^1.7^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~430~^1.6^12^0.4^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23573~^~454~^9.0^12^0.4^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~317~^19.9^12^1.0^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23574~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23574~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~421~^75.5^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23574~^~430~^1.5^0^^~4~^~BFSN~^~23573~^^^^^^^^^~04/01/2005~ -~23574~^~454~^8.4^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23575~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23575~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~421~^84.8^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23575~^~430~^1.6^0^^~4~^~BFSN~^~23573~^^^^^^^^^~04/01/2005~ -~23575~^~454~^9.5^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23576~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~317~^20.3^12^1.1^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23576~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23576~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~421~^80.9^0^^~4~^~BFNN~^~23573~^^^^^^^^^~07/01/2014~ -~23576~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23576~^~430~^1.5^0^^~4~^~BFSN~^~23573~^^^^^^^^^~04/01/2005~ -~23576~^~454~^8.0^0^^~4~^~BFNN~^~23573~^^^^^^^^^~07/01/2014~ -~23577~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~317~^14.3^72^0.9^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23577~^~328~^0.1^16^1.2e-02^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23577~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~421~^51.6^12^2.8^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~430~^2.4^12^0.2^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~454~^8.4^12^0.7^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~317~^21.5^72^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23578~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23578~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~421~^79.3^12^2.6^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~430~^2.2^12^0.4^~1~^~AR~^^^^^^^^^^~02/01/2006~ -~23578~^~454~^9.5^12^0.7^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~317~^19.6^12^1.2^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23579~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23579~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~421~^72.8^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23579~^~430~^2.0^0^^~4~^~BFSN~^~23578~^^^^^^^^^~04/01/2005~ -~23579~^~454~^8.8^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23580~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~317~^21.6^12^1.2^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23580~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23580~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~421~^81.5^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23580~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23580~^~430~^2.2^0^^~4~^~BFSN~^~23578~^^^^^^^^^~04/01/2005~ -~23580~^~454~^9.8^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23581~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~317~^19.7^12^1.5^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23581~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23581~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~421~^76.2^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23581~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~23581~^~430~^2.1^0^^~4~^~BFSN~^~23578~^^^^^^^^^~04/01/2005~ -~23582~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~317~^30.4^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~421~^94.1^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23582~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23583~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~317~^30.5^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~421~^92.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23583~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23583~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23584~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~317~^30.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23584~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23584~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~421~^93.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23584~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23584~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23585~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~317~^31.2^3^5.6^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~421~^96.4^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23585~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23585~^~454~^14.2^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23586~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~317~^38.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23587~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~317~^36.6^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~421~^110.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23587~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23587~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23588~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~317~^36.6^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23588~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23588~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~421~^111.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23588~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23588~^~454~^14.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23589~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~317~^36.7^3^5.4^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~421~^112.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23589~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23589~^~454~^14.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23590~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~317~^35.6^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23590~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23590~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~421~^108.3^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23590~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23591~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~317~^36.7^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~421~^112.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23591~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23591~^~454~^14.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23592~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~317~^40.4^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~421~^120.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23592~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23592~^~454~^15.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23593~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~317~^43.3^3^9.5^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~421~^131.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23593~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23593~^~454~^17.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23594~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~317~^28.2^5^4.7^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~421~^92.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23594~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23594~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23595~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~317~^34.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~421~^126.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23595~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23595~^~454~^16.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23596~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~317~^25.1^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~421~^90.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23596~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23596~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23597~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~317~^28.8^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~421~^94.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23597~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23597~^~454~^13.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23598~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~317~^33.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23598~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23598~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~421~^113.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23598~^~430~^1.9^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23598~^~454~^14.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23599~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~317~^26.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~421~^93.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23599~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23599~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23600~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~317~^33.7^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23600~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23600~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~421~^110.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23600~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23600~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23601~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~317~^26.9^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~421~^92.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23601~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23601~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23602~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~317~^35.4^5^4.5^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23602~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23602~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~421~^132.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23602~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23602~^~454~^17.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23603~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~317~^25.2^5^3.7^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~421~^92.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23603~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23603~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23604~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~317~^31.7^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~421~^106.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23604~^~430~^2.0^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23604~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23605~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~317~^38.8^5^5.6^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23605~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23605~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~421~^130.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23605~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23605~^~454~^17.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23606~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~317~^33.9^5^4.8^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23606~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23606~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~421~^111.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23606~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23606~^~454~^14.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23607~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~317~^27.5^5^3.6^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~421~^95.8^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23607~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23607~^~454~^14.1^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23608~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~317~^36.4^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23608~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23608~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~421~^121.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23608~^~430~^17.5^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23608~^~454~^15.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23609~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~317~^29.2^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~421~^95.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23609~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23609~^~454~^14.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23610~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~317~^34.3^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23610~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23610~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~421~^112.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23610~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23610~^~454~^14.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23611~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~317~^27.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23611~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23611~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~421~^92.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23611~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23611~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23612~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~317~^24.5^3^5.3^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23612~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23612~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~421~^91.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23612~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23612~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23613~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~317~^24.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~421~^90.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23613~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23613~^~454~^13.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23614~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~317~^34.7^3^5.9^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23614~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23614~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~421~^132.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23614~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23614~^~454~^17.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23615~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~317~^32.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~421~^126.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23615~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23615~^~454~^16.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23616~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23616~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23616~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~421~^95.6^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23616~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23617~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~317~^28.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23617~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23617~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~421~^94.8^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23617~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23618~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~317~^27.7^3^6.8^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~421~^92.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23618~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23618~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23619~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~317~^31.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~421~^104.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23619~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23619~^~454~^13.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23620~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~317~^33.7^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~421~^113.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23620~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23620~^~454~^14.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23621~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~317~^36.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~421~^122.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23621~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23621~^~454~^16.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23622~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~317~^38.8^3^7.7^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23622~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23622~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~421~^130.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23622~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23622~^~454~^17.1^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23623~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~317~^25.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23624~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~317~^25.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~421~^92.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23624~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23624~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23625~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~317~^25.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23625~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23625~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~421~^91.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23625~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23625~^~454~^13.5^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23626~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~317~^32.5^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23626~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23626~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~421~^107.8^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23626~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23626~^~454~^14.2^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23627~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~317~^26.0^3^5.0^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~421~^95.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23627~^~430~^1.6^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23627~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23628~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~317~^33.0^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~421~^110.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23628~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23628~^~454~^14.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23629~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~317~^34.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23629~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23629~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~421~^112.4^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23629~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23629~^~454~^14.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23630~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~317~^33.4^3^7.7^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~421~^111.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23630~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23630~^~454~^14.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23631~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~317~^27.6^3^5.1^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23631~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23631~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~421~^93.0^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~23631~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23631~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~23632~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~317~^27.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~421~^89.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23632~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23632~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23633~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~317~^39.4^3^7.2^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23633~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23633~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~421~^131.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23633~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23633~^~454~^17.3^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23634~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~317~^38.3^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~421~^126.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23634~^~430~^1.5^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23634~^~454~^16.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23635~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~317~^31.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~421~^93.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23635~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23635~^~454~^13.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23636~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~317~^31.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~421~^96.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23636~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23636~^~454~^14.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23637~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~317~^30.8^3^6.3^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~421~^92.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23637~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23637~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23638~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~317~^34.4^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~23638~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23638~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~421~^112.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23638~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23638~^~454~^14.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23640~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~317~^11.8^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~430~^0.0^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23646~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~317~^25.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~421~^88.8^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23646~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23646~^~454~^13.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23647~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~317~^29.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~421~^100.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23647~^~430~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23647~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23648~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~317~^24.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~421~^88.4^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23648~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23648~^~454~^13.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23649~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~317~^34.1^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~421~^103.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23649~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23649~^~454~^13.6^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23650~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~317~^29.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~421~^89.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23650~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23650~^~454~^13.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23651~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~317~^26.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~421~^88.0^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23651~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23652~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~317~^25.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~421~^86.7^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23652~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23653~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~317~^28.8^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~421~^89.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23653~^~430~^1.1^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23654~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~317~^31.9^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~421~^106.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23654~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23654~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23655~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~317~^34.7^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~421~^106.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23655~^~430~^1.3^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23655~^~454~^14.0^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23656~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~317~^26.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~421~^90.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23656~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23656~^~454~^13.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23657~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~317~^29.5^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~421~^89.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23657~^~430~^1.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23657~^~454~^13.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23658~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~317~^19.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~421~^75.7^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23658~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23658~^~454~^11.1^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23659~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~317~^19.4^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~421~^74.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23659~^~430~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23659~^~454~^10.9^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23660~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~317~^26.2^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~421~^109.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23660~^~430~^1.8^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23660~^~454~^14.3^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~25000~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2008~ -~25000~^~291~^13.6^4^0.8^~1~^~A~^^^^11.0^14.8^^^^^~03/01/2008~ -~25000~^~317~^6.9^8^2.2^~1~^~A~^^^1^6.3^7.6^5^1.1^12.7^~2, 3~^~03/01/2008~ -~25000~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25000~^~401~^0.0^4^0.0^~1~^~A~^^^^0.0^0.0^^^^^~03/01/2008~ -~25000~^~421~^13.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~25000~^~429~^8.5^4^3.3^~1~^~A~^^^^3.7^18.1^^^^^~03/01/2008~ -~25000~^~430~^1.1^4^0.6^~1~^~A~^^^^0.0^2.9^^^^^~03/01/2008~ -~25000~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25001~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~25001~^~291~^14.2^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~317~^8.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2006~ -~25001~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25001~^~401~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~25001~^~421~^16.5^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~430~^1.5^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25003~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~291~^3.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~317~^1.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~ -~25003~^~401~^260.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25003~^~421~^7.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~430~^2.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25004~^~291~^2.5^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~401~^144.4^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~291~^2.8^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~401~^144.3^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~291~^10.5^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~401~^176.2^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~25007~^~291~^2.6^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~401~^0.3^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~291~^11.0^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~328~^4.5^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25008~^~401~^176.4^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~291~^2.4^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~401~^0.2^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~291~^5.2^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~401~^42.5^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25012~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~291~^8.8^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~317~^2.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25012~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~421~^36.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~25012~^~430~^24.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25013~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~291~^8.8^0^^~4~^~T~^^^^^^^^^^~08/01/2011~ -~25013~^~317~^12.2^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~25013~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25013~^~421~^14.8^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25013~^~428~^0.0^4^0.0^~1~^~A~^^^1^^0.0^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~429~^0.1^4^2.5e-02^~1~^~A~^^^1^^0.1^3^-5.0e-03^0.1^~1, 2, 3~^~04/01/2006~ -~25013~^~430~^2.4^4^0.1^~1~^~A~^^^1^2.1^2.7^3^1.9^2.9^~2, 3~^~04/01/2006~ -~25013~^~454~^39.1^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~25014~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~291~^10.0^12^0.4^~1~^~A~^^^1^8.2^12.8^11^9.0^10.9^~2, 3~^~07/01/2013~ -~25014~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25014~^~317~^4.1^5^0.8^~1~^~A~^^^1^2.2^6.1^4^1.8^6.4^~1, 2, 3~^~07/01/2013~ -~25014~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25014~^~421~^13.9^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25014~^~429~^70.0^3^5.7^~1~^~A~^^^1^60.2^80.1^2^45.2^94.8^~2, 3~^~07/01/2013~ -~25014~^~430~^3.5^3^1.1^~1~^~A~^^^1^1.3^4.8^2^-1.3^8.4^~2, 3~^~07/01/2013~ -~25014~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~25015~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~291~^12.5^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~313~^4.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~317~^3.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~328~^3.8^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25015~^~401~^75.0^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~421~^1.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~430~^10.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25016~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~291~^6.7^4^2.3^~12~^~MA~^^^0^2.5^11.0^3^-0.7^14.1^~2, 3~^~05/01/2006~ -~25016~^~313~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~317~^4.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~328~^4.5^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25016~^~401~^489.9^4^334.9^~12~^~MA~^^^0^144.3^1494.6^3^-576.1^1556.0^~2, 3~^~05/01/2006~ -~25016~^~421~^18.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~25016~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~430~^1.8^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25017~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~25017~^~291~^5.7^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~317~^7.8^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25017~^~401~^92.3^0^^~8~^^^^^^^^^^^~05/01/2007~ -~25017~^~421~^18.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25017~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~430~^1.1^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~454~^4.3^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~25018~^~291~^4.6^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~401~^42.4^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25020~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25020~^~291~^5.1^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~317~^46.7^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~328~^5.4^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~25020~^~401~^96.6^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~421~^40.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~430~^129.3^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~454~^2.2^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25021~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~291~^4.3^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25021~^~313~^1.7^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25021~^~317~^62.5^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~328~^3.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25021~^~401~^68.0^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~421~^41.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25021~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~430~^40.8^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~454~^1.7^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25022~^~291~^7.8^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~401~^0.9^1^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~25023~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25023~^~291~^8.1^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~401~^0.9^1^^~4~^~NR~^^^^^^^^^~1~^~01/01/2007~ -~25024~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~25024~^~291~^1.7^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~317~^17.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~25024~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25024~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~25024~^~421~^17.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~25024~^~430~^2.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25025~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~291~^3.5^2^^~4~^~FLC~^^^1^0.0^7.0^^^^^~07/01/2007~ -~25025~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~317~^12.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~25025~^~401~^0.0^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~421~^110.9^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~430~^11.9^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25026~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~291~^10.0^8^7.4e-02^~1~^~A~^^^1^9.2^10.6^5^9.8^10.2^~2, 3~^~07/01/2014~ -~25026~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~25026~^~317~^5.9^5^0.4^~1~^~A~^^^1^3.2^11.8^2^4.1^7.7^~2, 3~^~07/01/2014~ -~25026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~25026~^~401~^0.0^4^0.0^~1~^~A~^^^^0.0^0.0^^^^^~03/01/2008~ -~25026~^~421~^15.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~430~^4.3^4^5.5e-02^~1~^~A~^^^1^2.9^5.2^1^3.6^5.0^~2, 3~^~07/01/2014~ -~25027~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~291~^3.5^4^0.1^~1~^~A~^^^1^3.3^4.0^3^3.0^4.0^~2, 3~^~05/01/2009~ -~25027~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~05/01/2009~ -~25027~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~401~^32.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25027~^~421~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~25027~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2009~ -~25027~^~430~^28.6^2^^~1~^~A~^^^1^23.9^33.3^1^^^^~05/01/2009~ -~25028~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~291~^4.7^13^0.1^~1~^~A~^^^2^3.9^5.6^8^4.3^4.9^~2, 3~^~07/01/2008~ -~25028~^~313~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~317~^8.4^7^0.9^~1~^~A~^^^1^4.5^12.0^6^5.9^10.8^~2, 3~^~07/01/2008~ -~25028~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~421~^19.1^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~454~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25030~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~291~^10.9^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25030~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~317~^3.2^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~25030~^~401~^12.1^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25030~^~421~^27.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~430~^44.5^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25031~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~291~^2.0^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~317~^3.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~401~^120.0^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~421~^73.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~430~^1.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~291~^7.7^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~313~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~317~^11.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~326~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~25032~^~401~^0.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~421~^48.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~430~^3.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~291~^11.4^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~313~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~317~^9.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~421~^46.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~430~^2.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~291~^5.9^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~313~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~317~^6.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~25034~^~401~^19.3^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~421~^43.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~430~^1.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25035~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~291~^3.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~317~^5.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~421~^15.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~291~^5.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~313~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~317~^20.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~25036~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~421~^31.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~430~^9.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25037~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~291~^3.8^6^0.1^~1~^~A~^^^1^3.6^4.3^5^3.5^4.0^~2, 3~^~04/01/2009~ -~25037~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~317~^33.1^3^0.3^~1~^~A~^^^1^32.5^33.8^2^31.4^34.7^~2, 3~^~04/01/2009~ -~25037~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~25037~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~421~^9.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~454~^60.9^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25038~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~291~^4.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~313~^2.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~317~^6.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~421~^27.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~430~^1.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~291~^4.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~313~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~317~^16.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~401~^0.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~421~^47.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25040~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~291~^4.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~317~^1.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~401~^4.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~421~^31.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~430~^17.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~454~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25041~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~291~^10.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~317~^18.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~421~^25.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~430~^9.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25043~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~291~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~317~^6.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~25043~^~401~^180.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~25043~^~421~^57.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~430~^13.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25045~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~291~^22.5^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25045~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~317~^8.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~401~^1.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~421~^12.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~430~^2.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~454~^3.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25046~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~291~^4.1^6^0.1^~1~^~A~^^^1^3.7^4.7^5^3.7^4.4^~2, 3~^~04/01/2009~ -~25046~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~317~^36.2^3^2.2^~1~^~A~^^^1^33.5^40.6^2^26.6^45.7^~2, 3~^~04/01/2009~ -~25046~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~421~^17.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~430~^5.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~454~^53.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~291~^7.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~313~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~317~^11.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~328~^0.8^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25048~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~421~^24.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25050~^~291~^3.7^4^0.3^~1~^~A~^^^1^3.1^4.7^3^2.5^4.8^~2, 3~^~05/01/2009~ -~25050~^~317~^4.9^2^^~1~^~A~^^^1^2.2^7.5^1^^^~1~^~05/01/2009~ -~25050~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25050~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25050~^~430~^5.3^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25051~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~291~^7.4^2^^~8~^~LC~^^^1^7.4^7.4^^^^^~04/01/2011~ -~25051~^~317~^20.6^2^^~8~^~LC~^^^1^20.6^20.6^^^^^~04/01/2011~ -~25051~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~401~^88.2^2^^~8~^~LC~^^^1^88.2^88.2^^^^^~04/01/2011~ -~25051~^~421~^46.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~430~^36.8^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25052~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~291~^4.2^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~317~^10.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~401~^0.5^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~421~^24.4^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~430~^2.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25053~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~291~^2.9^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~317~^10.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~25053~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~421~^49.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~430~^11.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~454~^2.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~291~^4.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~317~^12.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~25054~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~421~^19.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~291~^3.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~313~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~317~^10.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~401~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~421~^28.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~430~^7.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~454~^1.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~291~^3.2^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~313~^0.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~317~^14.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~25056~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~421~^20.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~430~^2.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~454~^8.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25059~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2013~ -~25059~^~291~^4.2^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~317~^24.6^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~25059~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~401~^0.0^4^0.0^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~421~^24.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~430~^6.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~291~^3.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~313~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~317~^14.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~421~^39.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~430~^11.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~291~^7.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~313~^11.5^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~317~^19.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~325~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~25062~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~421~^39.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~430~^1.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~454~^0.2^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25063~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~291~^2.7^6^7.5e-02^~1~^~A~^^^1^2.5^3.0^5^2.5^2.8^~2, 3~^~04/01/2013~ -~25063~^~317~^8.4^6^0.2^~1~^~A~^^^1^7.2^8.9^5^7.7^9.1^~2, 3~^~04/01/2013~ -~25063~^~328~^0.0^0^^~4~^~BFNN~^~19410~^^^^^^^^^~05/01/2013~ -~25063~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~25063~^~421~^32.9^0^^~4~^~BFSN~^~19410~^^^^^^^^^~05/01/2013~ -~25063~^~430~^7.3^0^^~4~^~BFSN~^~19410~^^^^^^^^^~05/01/2013~ -~25064~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2013~ -~25064~^~291~^4.2^3^0.1^~11~^~JO~^^^2^3.9^4.4^2^3.4^4.8^~2, 3~^~05/01/2013~ -~25064~^~313~^61.3^16^7.0^~1~^~A~^^^^30.1^85.5^^^^^~05/01/2013~ -~25064~^~317~^7.8^36^0.7^~1~^~A~^^^2^2.2^8.1^34^6.2^9.4^~1, 2, 3~^~05/01/2013~ -~25064~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~401~^27.3^8^1.4^~1~^~A~^^^2^18.6^45.9^3^22.5^32.0^~2, 3~^~05/01/2013~ -~25064~^~421~^12.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~25064~^~430~^22.1^2^^~1~^~A~^^^^19.8^24.3^^^^^~05/01/2013~ -~25064~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~25065~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~291~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~317~^2.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~421~^2.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~291~^3.8^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~317~^7.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~421~^57.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~430~^50.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~291~^7.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~317~^9.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~325~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~326~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~25067~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~25067~^~401~^27.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~421~^108.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~430~^350.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~454~^1.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~291~^3.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~313~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~317~^23.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~326~^1.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~328~^1.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~25068~^~401~^11.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~421~^91.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~430~^1.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~454~^0.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25070~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~291~^5.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~313~^8.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~317~^33.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~326~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~25070~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25070~^~421~^17.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~428~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~430~^12.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~454~^38.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25071~^~313~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~317~^25.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~421~^33.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~430~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~27000~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~291~^0.4^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~317~^0.4^4^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~03/01/2008~ -~27000~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~401~^6.5^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~421~^33.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~430~^1.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27001~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~291~^0.5^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~317~^0.4^4^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~328~^0.1^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~401~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~421~^39.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~27001~^~428~^3.4^4^1.1^~1~^~A~^^^1^0.0^5.3^3^-0.3^7.2^~1, 2, 3~^~03/01/2008~ -~27001~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~430~^1.1^4^0.1^~1~^~A~^^^1^0.8^1.4^3^0.6^1.5^~2, 3~^~03/01/2008~ -~27001~^~454~^1.0^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~291~^0.2^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~317~^1.1^4^0.6^~1~^~A~^^^1^0.0^2.2^3^-0.9^3.1^~1, 2, 3~^~03/01/2008~ -~27002~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~401~^0.7^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~421~^19.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2009~ -~27002~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2009~ -~27002~^~430~^0.9^2^^~1~^~A~^^^1^0.3^1.5^1^^^^~03/01/2008~ -~27035~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~291~^2.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~317~^30.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~401~^1.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~421~^13.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~430~^0.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27042~^~291~^1.0^6^7.7e-02^~1~^~A~^^^1^0.8^1.2^5^0.8^1.1^~4~^~02/01/2011~ -~27042~^~317~^3.0^12^2.7e-02^~1~^~A~^^^1^2.9^3.3^11^2.9^3.0^~1, 4~^~02/01/2011~ -~27042~^~421~^6.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~27042~^~454~^34.9^2^^~1~^~A~^^^1^31.5^38.2^1^^^^~02/01/2011~ -~27043~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~291~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~27043~^~317~^4.3^4^0.4^~1~^~A~^^^1^3.5^5.5^3^2.8^5.6^~4~^~04/01/2011~ -~27043~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~401~^3.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~421~^6.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~27043~^~430~^8.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27044~^~221~^0.0^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~291~^0.8^6^4.2e-02^~1~^~A~^^^1^0.6^0.9^5^0.6^0.8^~4~^~02/01/2011~ -~27044~^~317~^4.5^6^0.2^~1~^~A~^^^1^3.7^5.2^5^3.9^5.1^~4~^~02/01/2011~ -~27044~^~328~^0.0^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~401~^0.4^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~421~^5.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~27044~^~430~^2.3^2^^~1~^~A~^^^1^1.4^3.2^1^^^^~01/01/2013~ -~27045~^~291~^0.8^4^2.9e-02^~1~^~A~^^^1^0.8^0.9^3^0.7^0.9^~4~^~02/01/2011~ -~27045~^~317~^3.0^4^0.0^~1~^~A~^^^1^3.0^3.0^3^3.0^3.0^~4~^~02/01/2011~ -~27046~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~291~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~317~^1.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~401~^0.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~421~^1.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~291~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~401~^12.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~421~^7.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~430~^13.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~291~^1.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~401~^6.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~421~^11.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~430~^2.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~291~^0.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~317~^0.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~401~^2.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~421~^8.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~430~^50.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~401~^8.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~421~^2.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~430~^0.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~291~^1.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~317~^2.2^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~401~^11.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~421~^11.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~430~^4.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~291~^0.7^6^8.4e-02^~1~^~A~^^^1^0.6^1.0^5^0.4^0.8^~1, 2, 3~^~07/01/2012~ -~27052~^~317~^3.2^8^0.5^~1~^~A~^^^1^2.2^6.8^7^1.9^4.4^~1, 2, 3~^~07/01/2012~ -~27052~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~27052~^~401~^0.4^3^0.2^~1~^~A~^^^1^0.0^0.8^2^-0.5^1.4^~1, 2, 3~^~07/01/2012~ -~27052~^~421~^7.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~428~^0.2^4^3.5e-02^~1~^~A~^^^1^0.2^0.3^3^0.1^0.3^~2, 3~^~07/01/2012~ -~27052~^~430~^17.6^8^7.0^~1~^~A~^^^1^1.5^53.5^7^0.9^34.3^~2, 3~^~07/01/2012~ -~27052~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27054~^~291~^0.6^2^^~1~^~A~^^^1^0.6^0.6^^^^~1~^~07/01/2012~ -~27054~^~317~^3.0^3^0.1^~1~^~A~^^^1^2.8^3.2^2^2.4^3.4^~1, 2, 3~^~07/01/2012~ -~27054~^~401~^0.6^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27054~^~428~^0.3^3^4.4e-02^~1~^~A~^^^1^0.2^0.3^2^7.7e-02^0.4^~2, 3~^~07/01/2012~ -~27054~^~430~^1.5^3^1.7e-02^~1~^~A~^^^1^1.5^1.5^2^1.3^1.5^~2, 3~^~07/01/2012~ -~27055~^~291~^1.3^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~401~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27057~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27057~^~401~^0.2^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27058~^~291~^0.5^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27059~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~291~^1.8^2^^~1~^~A~^^^1^1.7^1.8^1^^^^~04/01/2013~ -~27059~^~317~^3.4^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~27059~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~421~^28.9^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~27059~^~430~^1.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~454~^7.4^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~27060~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~291~^1.1^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~317~^0.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~421~^10.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~430~^6.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27061~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~428~^3.1^3^0.5^~1~^~A~^^^1^2.0^4.0^2^0.7^5.5^~2, 3~^~02/01/2015~ -~27061~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~430~^0.8^3^0.1^~1~^~A~^^^1^0.5^0.9^2^0.1^1.3^~2, 3~^~02/01/2015~ -~27062~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~291~^0.9^6^9.0e-02^~1~^~A~^^^1^0.7^1.2^5^0.6^1.1^~2, 3~^~04/01/2015~ -~27062~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~401~^0.5^2^^~1~^~A~^^^1^0.3^0.8^1^^^~1~^~04/01/2015~ -~27062~^~421~^9.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~291~^0.5^3^4.2e-02^~1~^~A~^^^1^0.0^0.6^1^-5.5e-02^1.0^~1, 2, 3~^~04/01/2015~ -~27063~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~04/01/2015~ -~27063~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~401~^0.3^6^5.3e-02^~1~^~A~^^^1^0.0^0.4^2^4.4e-02^0.4^~1, 2, 3~^~04/01/2015~ -~27063~^~421~^0.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~430~^2.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27064~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~291~^6.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~421~^2.3^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~430~^3.5^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27065~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~291~^4.9^2^^~1~^~A~^^^1^4.8^5.0^1^^^^~06/01/2015~ -~27065~^~317~^7.7^2^^~1~^~A~^^^1^7.5^8.0^1^^^^~06/01/2015~ -~27065~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~421~^16.3^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~430~^1.7^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~291~^1.0^2^^~1~^~A~^^^1^1.0^1.0^1^^^^~06/01/2015~ -~27066~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~401~^0.2^2^^~1~^~A~^^^1^0.0^0.5^1^^^~1~^~06/01/2015~ -~27066~^~421~^38.4^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~430~^91.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27068~^~291~^4.9^2^^~1~^~A~^^^1^4.8^5.0^1^^^^~06/01/2015~ -~27068~^~317~^7.7^2^^~1~^~A~^^^1^7.5^8.0^1^^^^~06/01/2015~ -~27068~^~421~^42.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~27068~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27068~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27068~^~430~^1.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27068~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~28285~^~221~^0.0^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~291~^9.7^3^^~1~^~A~^^^1^6.3^15.2^^^^~2, 3~^~04/01/2013~ -~28285~^~317~^26.6^2^^~1~^~A~^^^1^8.4^44.8^^^^^~04/01/2013~ -~28285~^~328~^0.0^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~401~^0.0^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~421~^7.8^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~430~^3.3^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~221~^0.0^0^^~4~^~BFNN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~291~^9.6^2^^~1~^~A~^^^1^5.2^14.1^^^^^~04/01/2013~ -~28286~^~317~^7.1^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~328~^0.0^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~401~^0.0^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~421~^6.3^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~430~^3.4^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28287~^~221~^0.0^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~291~^4.8^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~317~^11.4^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~328~^0.0^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~401~^0.0^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~421~^10.1^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~430~^3.3^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28288~^~221~^0.0^0^^~4~^~BFNN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~291~^2.2^2^^~1~^~A~^^^1^1.7^2.6^^^^^~04/01/2013~ -~28288~^~317~^38.8^2^^~1~^~A~^^^1^32.0^45.6^^^^^~04/01/2013~ -~28288~^~328~^0.0^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~401~^0.2^0^^~4~^~BFPN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~421~^14.3^0^^~4~^~BFPN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~430~^10.9^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28289~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~291~^4.4^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~317~^9.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~401~^0.2^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~421~^11.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~430~^5.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~291~^3.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~317~^7.3^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~421~^17.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~430~^4.7^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~291~^0.9^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~317~^11.3^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~421~^3.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~430~^6.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~291~^3.5^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~317~^26.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~421~^10.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~430~^36.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28293~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~317~^9.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~28293~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~421~^6.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~430~^6.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~291~^2.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~317~^11.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~421~^7.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~291~^9.8^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~317~^37.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~421~^20.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~430~^4.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~291~^14.9^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~317~^20.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~328~^0.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~421~^68.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~430~^7.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~291~^14.9^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~317~^22.1^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~328~^0.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~421~^85.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~430~^6.3^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28298~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~291~^11.1^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~317~^12.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~421~^13.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~430~^8.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~291~^2.9^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~317~^13.2^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~421~^22.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~430~^16.0^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28300~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~291~^2.6^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~317~^6.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~421~^8.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~430~^5.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~291~^3.4^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~317~^16.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~421~^38.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~430~^34.8^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~291~^5.7^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~317~^33.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~421~^12.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~430~^2.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~291~^6.4^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~317~^40.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~421~^14.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~430~^3.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~291~^4.3^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~317~^30.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~421~^14.7^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~430~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28305~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~28305~^~291~^1.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~317~^22.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~421~^13.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~430~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28306~^~291~^4.9^2^^~1~^~A~^^^1^3.7^6.1^^^^^~04/01/2013~ -~28306~^~317~^53.7^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~291~^2.2^2^^~1~^~A~^^^1^2.1^2.3^^^^^~04/01/2013~ -~28307~^~317~^27.9^2^^~1~^~A~^^^1^25.9^29.9^^^^^~04/01/2013~ -~28308~^~221~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~291~^4.9^3^0.2^~1~^~A~^^^1^4.7^5.4^2^3.8^6.0^~2, 3~^~05/01/2014~ -~28308~^~317~^8.7^3^0.4^~1~^~A~^^^1^7.9^9.6^2^6.5^10.8^~2, 3~^~05/01/2014~ -~28308~^~328~^0.0^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~401~^0.0^0^^~4~^~BFPN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~421~^27.2^0^^~4~^~BFPN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~430~^14.2^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28309~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~291~^5.1^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~317~^6.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~401~^0.0^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~421~^9.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28310~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~291~^1.3^6^5.3e-02^~1~^~A~^^^1^1.0^1.5^3^1.0^1.4^~2, 3~^~06/01/2015~ -~28310~^~317~^6.2^6^0.5^~1~^~A~^^^1^4.6^9.1^2^3.7^8.6^~2, 3~^~06/01/2015~ -~28310~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~421~^1.5^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~430~^3.5^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~291~^3.4^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~317~^5.4^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~421~^16.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28312~^~221~^0.0^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~291~^4.2^7^0.2^~1~^~A~^^^1^3.2^5.4^5^3.4^5.0^~2, 3~^~06/01/2015~ -~28312~^~317~^26.7^8^1.5^~1~^~A~^^^1^17.7^31.4^5^22.6^30.7^~2, 3~^~06/01/2015~ -~28312~^~328~^0.0^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~401~^1.3^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~421~^14.5^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28312~^~429~^0.1^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28312~^~430~^6.8^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~221~^0.0^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~291~^6.1^9^6.8e-02^~1~^~A~^^^1^5.5^7.3^7^5.9^6.3^~2, 3~^~06/01/2015~ -~28313~^~317~^32.9^6^1.5^~1~^~A~^^^1^29.1^38.2^5^28.9^36.8^~2, 3~^~06/01/2015~ -~28313~^~328~^0.0^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~401~^1.3^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~421~^14.1^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28313~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28313~^~430~^4.5^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28314~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~291~^2.8^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~317~^19.5^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~421~^13.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~430~^3.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28315~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~291~^3.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~317~^12.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~421~^2.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~430~^9.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~291~^5.3^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~317~^30.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~421~^14.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28317~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~291~^5.7^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~317~^32.6^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~421~^16.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~430~^1.2^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28318~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~291~^4.2^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~317~^31.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~421~^10.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~430~^0.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~291~^4.7^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~317~^26.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~421~^9.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~291~^3.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~317~^17.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~421~^6.5^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28321~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~291~^2.3^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~317~^14.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~421~^12.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~430~^5.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~291~^6.2^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~317~^26.9^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~421~^16.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~430~^0.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28324~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~291~^7.9^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~317~^19.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~421~^18.8^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~291~^9.7^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~317~^46.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~421~^23.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~430~^27.6^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~291~^9.4^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~317~^18.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~401~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~421~^29.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~430~^4.5^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~291~^7.1^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~317~^31.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~421~^9.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~317~^11.8^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~421~^11.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~430~^4.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~291~^1.6^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~317~^9.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~421~^13.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~430~^4.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~317~^4.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~328~^0.9^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~28330~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~421~^8.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~430~^6.9^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28331~^~291~^3.1^5^7.9e-02^~1~^~A~^^^1^2.0^3.5^2^2.7^3.4^~2, 3~^~06/01/2015~ -~28331~^~317~^4.0^3^8.8e-02^~1~^~A~^^^1^3.9^4.2^2^3.6^4.4^~2, 3~^~06/01/2015~ -~28331~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28331~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28331~^~430~^27.7^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28332~^~221~^0.0^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~291~^2.5^2^^~1~^~A~^^^1^1.8^3.1^1^^^^~06/01/2015~ -~28332~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28332~^~328~^0.0^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~401~^0.0^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~421~^19.6^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~430~^25.6^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28333~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~28334~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~28335~^~291~^0.5^2^^~1~^~A~^^^1^0.0^1.0^1^^^~1~^~06/01/2015~ -~28336~^~291~^3.5^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28337~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~291~^4.3^3^0.8^~1~^~A~^^^1^2.5^5.4^2^0.4^8.1^~2, 3~^~06/01/2015~ -~28337~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~06/01/2015~ -~28337~^~328~^0.0^0^^~4~^~BFFN~^~18069~^^^^^^^^^~06/01/2015~ -~28337~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28337~^~421~^12.6^0^^~4~^~BFNN~^~18069~^^^^^^^^^~06/01/2015~ -~28337~^~430~^0.3^0^^~4~^~BFFN~^~18069~^^^^^^^^^~06/01/2015~ -~28338~^~291~^5.5^3^0.2^~1~^~A~^^^1^5.2^5.9^2^4.4^6.4^~2, 3~^~06/01/2015~ -~28338~^~317~^11.0^2^^~1~^~A~^^^1^10.7^11.3^1^^^^~06/01/2015~ -~28339~^~291~^4.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~291~^3.6^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~221~^0.0^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~291~^5.1^2^^~1~^~A~^^^1^4.8^5.4^1^^^^~06/01/2015~ -~28341~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28341~^~328~^0.0^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~401~^0.0^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~421~^13.4^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~430~^0.1^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28342~^~291~^2.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~317~^9.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~291~^11.2^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~317~^25.0^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~291~^3.0^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~221~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~291~^10.2^2^^~1~^~A~^^^1^7.5^16.2^^^^^~06/01/2015~ -~28345~^~317~^17.4^2^^~1~^~A~^^^1^16.3^19.7^^^^^~06/01/2015~ -~28345~^~328~^0.0^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~401~^0.0^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~421~^27.1^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~430~^13.7^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28346~^~221~^0.0^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28346~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~28346~^~401~^0.0^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~421~^15.5^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28346~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2016~ -~28346~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2016~ -~28346~^~430~^11.1^2^^~1~^~A~^^^1^7.3^14.8^1^^^^~02/01/2016~ -~28347~^~221~^0.0^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~317~^0.4^0^^~4~^~BFNN~^~28346~^^^^^^^^^~06/01/2015~ -~28347~^~328~^0.0^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~401~^0.3^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~421~^14.7^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~430~^4.3^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28348~^~221~^0.0^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~291~^3.1^3^0.2^~1~^~A~^^^1^2.6^3.4^2^1.9^4.1^~2, 3~^~06/01/2015~ -~28348~^~317~^8.5^3^0.7^~1~^~A~^^^1^7.2^10.0^2^5.0^11.9^~2, 3~^~06/01/2015~ -~28348~^~328~^0.0^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~401~^0.2^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~421~^14.6^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~428~^2.2^2^^~1~^~A~^^^1^2.0^2.3^1^^^^~06/01/2015~ -~28348~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2015~ -~28348~^~430~^0.6^2^^~1~^~A~^^^1^0.5^0.6^1^^^^~06/01/2015~ -~28349~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~291~^16.1^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~317~^24.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~421~^13.1^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~430~^11.3^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~291~^5.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~317~^14.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~421~^4.4^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~430~^1.7^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~291~^3.5^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~317~^23.9^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~421~^27.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~430~^3.8^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~291~^2.1^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~317~^17.6^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~421~^1.2^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~430~^2.6^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28354~^~291~^2.9^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~317~^9.2^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~291~^7.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~317~^16.3^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28356~^~291~^2.5^2^^~1~^~A~^^^1^1.8^3.1^1^^^^~07/01/2015~ -~28356~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~291~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2015~ -~28358~^~317~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~07/01/2015~ -~28359~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~291~^16.2^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~317~^19.7^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28363~^~291~^2.4^3^0.2^~1~^~A~^^^1^2.0^2.7^2^1.5^3.3^~2, 3~^~07/01/2015~ -~28363~^~317~^4.0^3^8.8e-02^~1~^~A~^^^1^3.9^4.2^2^3.6^4.4^~2, 3~^~07/01/2015~ -~28363~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28363~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28363~^~430~^27.7^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~291~^3.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28365~^~291~^3.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~291~^3.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28368~^~291~^5.1^2^^~1~^~A~^^^1^4.8^5.4^1^^^^~07/01/2015~ -~28368~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28369~^~291~^5.1^2^^~1~^~A~^^^1^4.9^5.4^1^^^^~07/01/2015~ -~28369~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~07/01/2015~ -~28370~^~291~^3.6^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~291~^5.5^3^0.2^~1~^~A~^^^1^5.2^5.9^2^4.4^6.4^~2, 3~^~07/01/2015~ -~28371~^~317~^11.0^2^^~1~^~A~^^^1^10.7^11.3^1^^^^~07/01/2015~ -~28372~^~291~^4.9^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~291~^11.2^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~317~^25.0^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28375~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28375~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~28375~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~28375~^~430~^7.3^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~28397~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~291~^7.4^4^0.7^~1~^~A~^^^1^5.8^9.4^3^5.0^9.7^~2, 3~^~03/01/2007~ -~28397~^~317~^32.9^4^3.7^~1~^~A~^^^1^22.8^41.0^3^20.9^44.8^~2, 3~^~03/01/2007~ -~28397~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~28397~^~401~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~421~^22.0^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~28397~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28399~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~28399~^~291~^1.1^0^^~4~^^^^^^^^^^^~02/01/1994~ -~28399~^~317~^7.0^4^2.0^~1~^~A~^^^^^^^^^^~12/01/1992~ -~28399~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~28399~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~421~^12.0^0^^~4~^~BFNN~^~18159~^^^^^^^^^~06/01/2014~ -~28399~^~430~^5.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~31019~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31019~^~291~^36.7^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~328~^3.1^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~401~^29.0^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~31020~^~291~^4.5^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~328~^0.4^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~401~^3.5^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31021~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~291~^1.8^3^3.8e-02^~1~^~A~^^^1^1.7^1.8^2^1.5^1.9^~4~^~02/01/2013~ -~31021~^~317~^2.9^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~31021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~401~^4.9^3^0.4^~1~^~A~^^^1^4.1^5.6^2^3.0^6.8^~4~^~02/01/2013~ -~31021~^~421~^14.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31021~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~31021~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~31021~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~31021~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~31022~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~291~^3.6^3^0.1^~1~^~A~^^^1^3.5^3.8^2^3.0^4.1^~4~^~02/01/2013~ -~31022~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~401~^2.7^3^0.4^~1~^~A~^^^1^1.9^3.3^2^0.9^4.5^~1, 4~^~02/01/2013~ -~31022~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~31022~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~31022~^~430~^19.6^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~31023~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~291~^5.7^4^0.2^~1~^~A~^^^1^5.0^6.4^2^4.6^6.7^~2, 3~^~06/01/2015~ -~31023~^~317~^0.4^2^^~1~^~A~^^^1^0.4^0.4^^^^~1~^~06/01/2015~ -~31023~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~401~^7.5^4^0.7^~1~^~A~^^^1^4.6^9.1^2^4.4^10.5^~2, 3~^~06/01/2015~ -~31023~^~421~^26.0^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2015~ -~31023~^~430~^4.6^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2015~ -~31024~^~291~^3.4^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~401~^4.2^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~291~^1.9^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~401~^2.2^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31026~^~291~^2.6^3^0.2^~1~^~A~^^^1^2.2^2.9^2^1.7^3.5^~2, 3~^~04/01/2013~ -~31026~^~401~^6.0^3^4.3^~1~^~A~^^^1^0.0^14.4^2^-12.5^24.5^~2, 3~^~04/01/2013~ -~31027~^~291~^2.2^3^1.9e-02^~1~^~A~^^^1^2.2^2.3^2^2.1^2.3^~2, 3~^~04/01/2013~ -~31027~^~401~^10.9^3^0.9^~1~^~A~^^^1^9.0^12.0^2^6.8^14.9^~2, 3~^~04/01/2013~ -~31028~^~291~^2.0^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~401~^7.8^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31029~^~291~^2.4^3^9.0e-03^~1~^~A~^^^1^2.4^2.4^2^2.3^2.4^~2, 3~^~04/01/2013~ -~31029~^~401~^5.1^3^1.2^~1~^~A~^^^1^2.9^7.2^2^-0.2^10.4^~2, 3~^~04/01/2013~ -~31030~^~291~^2.4^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~401~^6.9^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~291~^2.3^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~401~^5.7^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31033~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~291~^2.6^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~421~^10.5^0^^~4~^~BFSN~^~11429~^^^^^^^^^~06/01/2015~ -~31033~^~430~^2.2^0^^~4~^~BFSN~^~11429~^^^^^^^^^~06/01/2015~ -~31034~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~291~^2.6^3^7.8e-02^~1~^~A~^^^1^2.6^2.8^2^2.3^2.9^~2, 3~^~06/01/2015~ -~31034~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~401~^12.3^2^^~1~^~A~^^^1^9.8^14.9^1^^^^~06/01/2015~ -~31034~^~421~^8.9^0^^~4~^~BFSY~^~11979~^^^^^^^^^~06/01/2015~ -~31034~^~430~^21.9^0^^~4~^~BFSN~^~11979~^^^^^^^^^~07/01/2015~ -~31035~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~291~^1.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31035~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31035~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~401~^10.1^3^1.5^~1~^~A~^^^1^7.1^12.0^2^3.6^16.6^~2, 3~^~06/01/2015~ -~31035~^~421~^5.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31035~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31035~^~430~^105.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31036~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31036~^~291~^1.9^5^5.0e-02^~1~^~A~^^^1^1.8^2.0^2^1.6^2.2^~2, 3~^~06/01/2015~ -~31036~^~317~^26.9^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31036~^~326~^0.1^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~31036~^~401~^0.1^2^^~1~^~A~^^^1^0.1^0.1^^^^~1~^~06/01/2015~ -~31036~^~421~^15.7^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~31036~^~428~^0.5^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~430~^2.4^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~01/01/2016~ -~32000~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~291~^1.6^3^0.3^~1~^~A~^^^1^1.0^2.2^2^0.2^3.0^~2, 3~^~08/01/2012~ -~32000~^~317~^26.4^3^0.6^~1~^~A~^^^1^25.4^27.5^2^23.7^29.0^~2, 3~^~08/01/2012~ -~32000~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~401~^1.9^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~421~^6.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~430~^2.4^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32001~^~291~^0.6^3^4.4e-02^~1~^~A~^^^1^0.5^0.6^2^0.3^0.7^~2, 3~^~08/01/2012~ -~32001~^~317~^7.5^3^0.6^~1~^~A~^^^1^6.9^8.7^2^4.9^10.0^~2, 3~^~08/01/2012~ -~32002~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~291~^1.2^3^0.3^~1~^~A~^^^1^0.6^1.5^2^-0.1^2.5^~2, 3~^~08/01/2012~ -~32002~^~317~^32.4^3^0.7^~1~^~A~^^^1^31.6^33.8^2^29.2^35.4^~2, 3~^~08/01/2012~ -~32002~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~401~^4.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~421~^17.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~430~^0.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32003~^~291~^0.6^3^7.6e-02^~1~^~A~^^^1^0.5^0.7^2^0.2^0.9^~2, 3~^~08/01/2012~ -~32003~^~317~^10.3^3^0.5^~1~^~A~^^^1^9.3^11.0^2^8.0^12.4^~2, 3~^~08/01/2012~ -~32004~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~291~^1.8^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~317~^37.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~401~^0.6^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~421~^24.7^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~430~^5.8^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32005~^~291~^1.2^12^4.0e-02^~1~^~A~^^^1^1.0^1.4^10^1.0^1.2^~2, 3~^~08/01/2012~ -~32006~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~291~^2.9^6^0.1^~1~^~A~^^^1^1.8^3.7^4^2.5^3.2^~2, 3~^~04/01/2013~ -~32006~^~317~^16.7^6^0.9^~1~^~A~^^^1^14.2^18.9^4^13.9^19.4^~2, 3~^~04/01/2013~ -~32006~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~32006~^~421~^15.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~430~^16.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~291~^2.8^6^7.6e-02^~1~^~A~^^^1^1.7^3.9^2^2.5^3.1^~2, 3~^~04/01/2013~ -~32007~^~317~^15.4^6^0.3^~1~^~A~^^^1^13.8^16.1^2^14.2^16.5^~2, 3~^~04/01/2013~ -~32007~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~32007~^~421~^18.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~428~^1.4^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32007~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32007~^~430~^22.0^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32008~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~291~^2.7^2^^~1~^~A~^^^1^2.4^2.9^1^^^^~04/01/2013~ -~32008~^~317~^37.8^3^3.4^~1~^~A~^^^1^33.8^44.6^2^23.0^52.5^~2, 3~^~04/01/2013~ -~32008~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~401~^2.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~421~^8.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~291~^2.0^2^^~1~^~A~^^^1^1.6^2.5^1^^^^~04/01/2013~ -~32009~^~317~^43.2^3^1.9^~1~^~A~^^^1^39.8^46.6^2^34.7^51.6^~2, 3~^~04/01/2013~ -~32009~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~401~^2.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~421~^5.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~32009~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~454~^8.6^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~32010~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~291~^2.8^3^0.2^~1~^~A~^^^1^2.5^3.4^2^1.6^3.9^~2, 3~^~04/01/2013~ -~32010~^~317~^24.9^3^2.5^~1~^~A~^^^1^20.9^29.6^2^13.9^35.8^~2, 3~^~04/01/2013~ -~32010~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~401~^0.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~421~^9.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~430~^12.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32011~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~291~^1.8^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~317~^10.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~430~^0.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32012~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~291~^1.2^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~317~^12.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~421~^13.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~430~^4.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~291~^1.4^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~317~^17.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~328~^0.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~401~^8.3^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~421~^52.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~430~^55.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32014~^~221~^0.0^0^^~4~^~BFZN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~291~^2.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~317~^38.1^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~328~^0.0^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~421~^25.4^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~430~^2.2^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32015~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~291~^1.6^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~317~^14.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~421~^14.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~430~^15.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32016~^~221~^0.0^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~291~^1.6^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~317~^47.5^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~328~^0.0^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~421~^36.0^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~430~^0.2^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32017~^~291~^2.6^2^^~1~^~A~^^^1^2.5^2.6^1^^^^~04/01/2013~ -~32017~^~317~^36.9^3^0.9^~1~^~A~^^^1^35.2^38.3^2^33.0^40.8^~2, 3~^~04/01/2013~ -~32018~^~291~^3.1^6^0.2^~1~^~A~^^^1^2.4^4.0^3^2.0^4.0^~2, 3~^~04/01/2014~ -~32018~^~317~^33.1^6^0.9^~1~^~A~^^^1^29.9^35.1^4^30.4^35.6^~2, 3~^~04/01/2014~ -~32018~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~32018~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~32018~^~430~^2.7^2^^~1~^~A~^^^1^2.3^3.0^^^^^~04/01/2014~ -~32019~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~291~^1.7^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~317~^16.8^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~401~^1.5^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~421~^10.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~430~^3.1^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32020~^~291~^0.1^0^^~4~^~BFZN~^~21471~^^^^^^^^^~05/01/2015~ -~32020~^~317~^25.7^3^0.6^~1~^~A~^^^1^24.5^26.4^2^23.1^28.2^~2, 3~^~04/01/2014~ -~32021~^~291~^1.5^6^0.1^~1~^~A~^^^1^1.2^1.8^3^1.1^1.9^~2, 3~^~04/01/2014~ -~32021~^~317~^9.6^6^0.3^~1~^~A~^^^1^6.4^11.5^4^8.4^10.6^~2, 3~^~04/01/2014~ -~32021~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~32021~^~429~^0.7^2^^~1~^~A~^^^1^0.0^1.6^^^^~1~^~04/01/2014~ -~32021~^~430~^2.9^2^^~1~^~A~^^^1^2.5^3.7^^^^^~04/01/2014~ -~32024~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~291~^1.8^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~317~^24.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~401~^2.1^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~421~^67.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~430~^20.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~291~^0.9^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~317~^13.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~401~^5.3^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~421~^9.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~430~^7.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~291~^3.1^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~317~^18.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~421~^8.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~430~^13.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32027~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~291~^0.8^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~317~^20.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~328~^0.1^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~421~^20.7^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~430~^1.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~291~^0.8^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~317~^14.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~328~^0.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~421~^28.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~430~^3.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~291~^0.8^9^0.1^~1~^~A~^^^1^0.8^1.0^4^0.5^1.1^~2, 3~^~01/01/2017~ -~32029~^~317~^4.0^3^^~1~^~A~^^^1^3.5^4.9^^^^~2, 3~^~02/01/2017~ -~32029~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2017~ -~32029~^~421~^39.9^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~428~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2017~ -~32029~^~429~^0.0^3^^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~01/01/2017~ -~32029~^~430~^0.5^0^^~4~^~BFNN~^~32002~^^^^^^^^^~02/01/2017~ -~32031~^~221~^0.0^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~291~^1.0^3^^~1~^~A~^^^1^0.9^1.3^^^^~2, 3~^~06/01/2015~ -~32031~^~317~^7.5^3^^~1~^~A~^^^1^5.8^8.1^^^^~2, 3~^~06/01/2015~ -~32031~^~328~^0.0^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~401~^0.0^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~421~^15.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~32031~^~430~^1.7^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~454~^1.9^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~32032~^~221~^0.0^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~291~^2.0^3^2.4e-02^~1~^~A~^^^1^1.9^2.0^1^1.6^2.2^~2, 3~^~06/01/2015~ -~32032~^~317~^17.7^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~32032~^~328~^0.7^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~401~^0.1^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~421~^73.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~32032~^~430~^1.8^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~454~^12.4^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~32034~^~291~^1.3^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~317~^8.1^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~291~^1.0^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~317~^7.7^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32036~^~291~^2.0^2^^~1~^~A~^^^1^2.0^2.0^1^^^^~07/01/2015~ -~32036~^~317~^17.7^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32036~^~421~^73.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~32036~^~454~^12.4^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~33862~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~317~^14.3^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~328~^9.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~401~^61.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~421~^122.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~430~^46.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33863~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~317~^14.4^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~328~^7.5^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~401~^62.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~421~^121.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~430~^46.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33864~^~221~^0.0^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~291~^0.0^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~317~^3.6^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~328~^1.0^0^^~4~^~NR~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~401~^15.7^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~421~^31.1^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~430~^11.6^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33865~^~221~^0.0^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~291~^0.0^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~317~^3.6^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~328~^1.0^0^^~4~^~NR~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~401~^15.6^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~421~^31.0^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~430~^11.6^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33866~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~317~^13.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~328~^7.5^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~401~^60.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~421~^119.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~430~^45.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~317~^15.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~328~^7.7^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~401~^51.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~421~^123.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~430~^41.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~317~^15.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~328~^7.4^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~401~^59.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~421~^118.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~430~^39.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33869~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~317~^15.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~328~^7.7^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~401~^61.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~421~^123.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~430~^41.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33870~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~317~^13.3^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~328~^7.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~401~^57.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~421~^114.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~430~^38.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~317~^9.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~328~^7.7^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~401~^61.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~421~^82.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~430~^41.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33872~^~221~^0.0^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~291~^0.0^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~317~^15.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~328~^7.5^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~401~^60.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~421~^120.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~430~^45.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33873~^~221~^0.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~291~^0.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~317~^13.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~328~^6.2^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~401~^60.0^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~421~^119.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~430~^45.0^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33874~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~328~^3.9^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~401~^13.1^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~421~^13.2^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~328~^3.9^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~401~^13.1^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~421~^13.2^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~430~^5.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33876~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~317~^1.8^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~328~^1.2^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~401~^7.9^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~421~^15.8^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~430~^5.9^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~291~^0.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~317~^14.4^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~328~^7.5^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~401~^62.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~421~^121.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~430~^46.0^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33878~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~291~^2.1^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~313~^23.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~317~^0.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~401~^24.5^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~421~^8.8^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~430~^2.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~454~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33881~^~221~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~291~^0.5^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~317~^11.6^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~401~^2.4^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~421~^18.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~430~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~35001~^~291~^0.5^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~401~^2.9^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~401~^2.2^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~401~^0.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~401~^2.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35009~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~317~^103.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~421~^131.7^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35009~^~429~^1.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~454~^23.8^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35010~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~317~^36.5^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~401~^0.0^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~421~^35.1^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~430~^0.0^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~454~^13.8^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35012~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35014~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~317~^3.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~328~^5.7^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35014~^~428~^2.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35015~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35015~^~291~^3.2^2^^~1~^~A~^^^1^1.6^4.8^1^^^^~04/01/2006~ -~35015~^~401~^4.7^2^^~1~^~A~^^^1^3.6^5.8^1^^^^~04/01/2006~ -~35015~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~04/01/2006~ -~35015~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~04/01/2006~ -~35015~^~430~^5.9^2^^~1~^~A~^^^1^5.8^6.1^1^^^^~04/01/2006~ -~35017~^~401~^2.2^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~291~^0.1^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~401~^1.5^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~401~^0.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~401~^158.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~291~^6.7^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~401~^15.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~401~^21.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~401~^3.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~291~^6.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~401~^99.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~401~^0.6^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~401~^2.8^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~401~^0.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~291~^0.5^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~401~^1.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~401~^4.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~401~^11.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~401~^22.6^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~401~^16.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~401~^8.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~401~^0.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35055~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35057~^~317~^3.3^2^^~1~^~A~^^^2^0.0^6.5^1^^^~1~^~05/01/2007~ -~35057~^~328~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~35057~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35057~^~421~^0.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35057~^~428~^1.4^2^^~1~^~A~^^^2^1.0^1.8^1^^^^~05/01/2007~ -~35057~^~429~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~05/01/2007~ -~35057~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~05/01/2007~ -~35057~^~454~^0.0^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35063~^~401~^33.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35073~^~401~^0.3^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~401~^68.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~401~^0.3^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~401~^0.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~401~^190.0^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35130~^~291~^1.1^2^^~1~^~A~^^^1^0.7^1.4^1^^^^~04/01/2004~ -~35130~^~317~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35131~^~291~^8.7^2^^~1~^~A~^^^1^8.7^8.7^1^^^^~04/01/2004~ -~35131~^~317~^11.8^2^^~1~^~A~^^^1^10.4^13.3^1^^^^~04/01/2004~ -~35131~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2004~ -~35131~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35131~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~291~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~317~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~401~^8.1^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~430~^4.9^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~430~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~291~^16.6^3^0.9^~1~^~A~^^^1^15.1^18.3^2^12.4^20.6^~2, 3~^~04/01/2004~ -~35135~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~429~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~430~^0.8^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~291~^10.4^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~429~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~430~^0.4^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~291~^9.4^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~317~^6.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~401~^4.5^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~317~^11.9^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~429~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~317~^38.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~421~^100.6^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~35141~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~454~^33.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35142~^~317~^18.6^3^6.6^~1~^~A~^^^1^11.9^31.8^2^-9.7^46.9^~2, 3~^~04/01/2004~ -~35142~^~429~^0.8^2^^~1~^~A~^^^1^0.0^1.5^1^^^~1~^~04/01/2004~ -~35142~^~430~^0.8^2^^~1~^~A~^^^1^0.0^1.6^1^^^~1~^~04/01/2004~ -~35143~^~291~^2.4^2^^~1~^~A~^^^1^2.0^2.8^1^^^^~04/01/2004~ -~35143~^~317~^16.6^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35143~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~04/01/2004~ -~35143~^~430~^0.4^2^^~1~^~A~^^^1^0.0^0.9^1^^^~1~^~04/01/2004~ -~35144~^~317~^10.2^2^^~1~^~A~^^^1^5.7^14.6^1^^^^~04/01/2004~ -~35144~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2004~ -~35144~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35144~^~430~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~291~^2.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~317~^4.1^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~430~^0.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~291~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~317~^8.4^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~430~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~291~^3.1^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~317~^6.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~401~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~291~^2.3^2^^~1~^~A~^^^1^2.1^2.4^1^^^^~04/01/2004~ -~35148~^~317~^5.0^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~430~^0.7^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35149~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~317~^51.1^4^2.8^~1~^~A~^^^1^45.8^60.1^2^38.8^63.3^~2, 3~^~04/01/2006~ -~35149~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~428~^0.1^3^3.3e-02^~1~^~A~^^^1^0.0^0.1^2^-7.7e-02^0.2^~1, 2, 3~^~04/01/2006~ -~35149~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~430~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2006~ -~35150~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~317~^27.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~317~^29.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~317~^39.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~317~^31.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~430~^0.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~291~^1.9^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~401~^9.2^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~430~^14.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35155~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35155~^~291~^2.6^2^^~1~^~A~^^^2^1.9^3.4^^^^^~04/01/2006~ -~35155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35155~^~401~^18.3^2^^~1~^~A~^^^2^5.9^30.7^^^^^~04/01/2006~ -~35155~^~428~^0.0^2^^~1~^~A~^^^2^0.0^0.0^^^^~1~^~04/01/2006~ -~35155~^~429~^0.0^2^^~1~^~A~^^^2^0.0^0.0^^^^~1~^~04/01/2006~ -~35155~^~430~^17.2^2^^~1~^~A~^^^2^16.7^17.8^^^^^~04/01/2006~ -~35156~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~328~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~35156~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~428~^2.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35157~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~317~^40.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~421~^82.0^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35157~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~454~^3.3^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~317~^92.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~401~^12.0^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35158~^~421~^247.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35158~^~428~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~430~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~454~^8.2^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35160~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~317~^30.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~421~^202.7^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~35160~^~428~^0.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~430~^1.1^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~454~^29.3^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~35161~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~317~^36.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35161~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~421~^257.7^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35161~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~454~^42.8^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35162~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~317~^12.5^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~430~^1.4^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~317~^90.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~421~^68.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35164~^~428~^0.8^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~429~^4.0^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~454~^60.9^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35165~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~317~^113.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~421~^205.6^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35165~^~428~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~430~^1.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~454~^88.3^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35166~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~317~^44.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~421~^106.9^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35166~^~428~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~454~^5.0^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35167~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~317~^33.5^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~328~^2.0^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35167~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~421~^88.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35167~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35167~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~454~^4.2^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35168~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~317~^30.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~328~^1.2^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35168~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~421~^98.9^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35168~^~428~^1.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~454~^3.6^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35169~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~317~^42.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~421~^108.9^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~ -~35169~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~454~^123.7^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~35170~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~421~^63.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35170~^~428~^0.6^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~454~^16.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35171~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~317~^103.8^2^^~1~^~A~^^^2^97.5^110.0^1^^^^~07/01/2007~ -~35171~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~421~^231.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35171~^~428~^1.0^2^^~1~^~A~^^^2^0.8^1.1^1^^^^~07/01/2007~ -~35171~^~429~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~07/01/2007~ -~35171~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~07/01/2007~ -~35171~^~454~^10.6^2^^~1~^~A~^^^2^4.0^17.1^1^^^^~07/01/2007~ -~35172~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~317~^23.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~317~^14.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~317~^7.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~421~^103.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~35175~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~429~^1.6^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~454~^26.3^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35176~^~317~^10.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~317~^15.8^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~317~^20.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~291~^17.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~317~^1.7^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35179~^~401~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~430~^29.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~317~^105.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~328~^15.7^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35180~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~428~^1.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~317~^26.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~328~^15.1^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35181~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~428~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~291~^0.7^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~317~^8.3^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~428~^0.9^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35183~^~291~^20.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~317~^56.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35183~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~317~^194.0^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~428~^1.6^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35185~^~291~^1.7^2^^~1~^~A~^^^1^1.3^2.2^1^^^^~04/01/2006~ -~35185~^~317~^6.5^2^^~1~^~A~^^^1^4.5^8.5^1^^^^~04/01/2006~ -~35185~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35185~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35185~^~430~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35186~^~291~^1.5^2^^~1~^~A~^^^1^1.4^1.7^1^^^^~04/01/2006~ -~35186~^~317~^11.3^2^^~1~^~A~^^^1^10.5^12.0^1^^^^~04/01/2006~ -~35186~^~428~^1.8^2^^~1~^~A~^^^1^1.1^2.5^1^^^^~04/01/2006~ -~35186~^~429~^1.8^2^^~1~^~A~^^^1^0.0^3.6^1^^^~1~^~04/01/2006~ -~35186~^~430~^3.1^2^^~1~^~A~^^^1^1.6^4.7^1^^^^~04/01/2006~ -~35187~^~291~^2.6^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~317~^15.5^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~317~^60.6^3^6.6^~1~^~A~^^^1^50.7^73.3^2^31.8^89.3^~4~^~04/01/2006~ -~35188~^~428~^0.0^3^3.3e-02^~1~^~A~^^^1^0.0^0.1^2^-0.1^0.1^~1, 4~^~04/01/2006~ -~35188~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~04/01/2006~ -~35188~^~430~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~04/01/2006~ -~35190~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~317~^76.0^2^^~1~^~A~^^^2^72.0^80.0^1^^^^~07/01/2007~ -~35190~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~421~^223.8^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~35190~^~428~^0.9^2^^~1~^~A~^^^2^0.8^1.1^1^^^^~07/01/2007~ -~35190~^~429~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~07/01/2007~ -~35190~^~430~^0.0^2^^~1~^~A~^^^2^0.0^0.0^1^^^~1~^~07/01/2007~ -~35190~^~454~^6.8^2^^~1~^~A~^^^2^6.5^7.1^1^^^^~07/01/2007~ -~35192~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~291~^6.6^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~317~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35192~^~401~^4.0^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~430~^5.3^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~291~^10.6^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~317~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35193~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~421~^8.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~35193~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~430~^4.9^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~291~^15.6^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~317~^0.6^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~35194~^~401~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~430~^0.5^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35195~^~291~^4.5^2^^~1~^~A~^^^1^4.4^4.6^1^^^^~05/01/2007~ -~35195~^~317~^0.6^2^^~1~^~A~^^^1^0.3^0.8^1^^^~1~^~05/01/2007~ -~35195~^~401~^0.7^2^^~1~^~A~^^^1^0.7^0.7^1^^^~1~^~05/01/2007~ -~35195~^~421~^23.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35195~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2007~ -~35195~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2007~ -~35195~^~430~^22.8^2^^~1~^~A~^^^1^21.6^24.0^1^^^^~05/01/2007~ -~35195~^~454~^1.1^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~291~^6.3^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~317~^1.1^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~421~^20.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35196~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35196~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35196~^~430~^346.6^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~454~^331.7^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~291~^5.2^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~401~^4.9^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~291~^5.3^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~317~^0.1^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~401~^11.0^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~421~^4.3^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35198~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~430~^2.9^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~454~^0.3^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~401~^6.2^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~291~^8.0^2^^~1~^~A~^^^1^7.2^8.8^1^^^^~05/01/2007~ -~35200~^~317~^14.7^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~401~^5.5^2^^~1~^~A~^^^1^4.2^6.9^1^^^^~05/01/2007~ -~35200~^~421~^4.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35200~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2007~ -~35200~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~05/01/2007~ -~35200~^~430~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2007~ -~35200~^~454~^0.1^2^^~1~^~A~^^^1^0.1^0.1^1^^^^~05/01/2007~ -~35201~^~291~^7.2^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35201~^~401~^2.0^2^^~1~^~A~^^^1^0.7^3.2^1^^^~1~^~05/01/2007~ -~35202~^~291~^7.5^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~401~^26.4^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~421~^9.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35202~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~430~^6.6^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~291~^24.1^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~401~^426.0^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~421~^12.0^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35203~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~430~^25.9^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~454~^2.9^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35204~^~291~^20.0^3^0.7^~1~^~A~^^^1^19.0^21.4^2^16.8^23.1^~4~^~05/01/2007~ -~35204~^~401~^5.5^2^^~1~^~A~^^^1^1.6^9.4^1^^^^~05/01/2007~ -~35204~^~421~^10.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35204~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~05/01/2007~ -~35204~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^2^0.0^0.0^~1, 4~^~05/01/2007~ -~35204~^~430~^21.1^3^3.1^~1~^~A~^^^1^17.7^27.3^2^7.7^34.5^~4~^~05/01/2007~ -~35204~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35205~^~291~^6.9^2^^~1~^~A~^^^1^4.8^9.0^1^^^^~05/01/2007~ -~35205~^~317~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35205~^~421~^17.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35205~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35205~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35205~^~430~^498.6^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35205~^~454~^21.4^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~291~^6.0^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~401~^10.3^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~421~^5.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35206~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~430~^11.2^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~291~^43.4^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35211~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~317~^16.5^2^^~1~^~A~^^^1^12.5^20.5^1^^^^~05/01/2007~ -~35211~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~421~^120.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35211~^~428~^1.2^2^^~1~^~A~^^^1^0.0^2.5^1^^^^~05/01/2007~ -~35211~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^1^^^~1~^~05/01/2007~ -~35211~^~430~^1.8^2^^~1~^~A~^^^1^1.4^2.1^1^^^^~05/01/2007~ -~35226~^~317~^693.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~317~^274.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35228~^~317~^122.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35229~^~317~^111.8^4^21.6^~1~^~A~^^^1^74.0^174.0^3^42.9^180.5^~2, 3~^~07/01/2008~ -~35229~^~328~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35229~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~317~^119.0^2^^~1~^~A~^^^1^81.0^157.0^1^^^^~07/01/2008~ -~35230~^~328~^0.0^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~35230~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~35231~^~328~^0.0^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~35231~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35232~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35232~^~291~^19.2^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~317~^0.7^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35233~^~291~^9.8^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35234~^~291~^9.2^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~317~^14.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~430~^0.2^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35235~^~291~^2.3^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~317~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35236~^~291~^1.5^3^0.1^~1~^~A~^^^1^1.2^1.8^2^0.7^2.2^~2, 3~^~04/01/2010~ -~35236~^~317~^2.2^3^0.0^~1~^~A~^^^1^2.2^2.2^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~430~^0.2^3^1.7e-02^~1~^~A~^^^1^0.2^0.3^2^0.1^0.2^~2, 3~^~04/01/2010~ -~35237~^~291~^3.3^3^5.8e-02^~1~^~A~^^^1^3.2^3.4^2^3.0^3.5^~2, 3~^~04/01/2010~ -~35237~^~317~^32.6^3^1.6^~1~^~A~^^^1^30.5^35.9^2^25.4^39.7^~2, 3~^~04/01/2010~ -~35237~^~428~^2.7^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~430~^3.2^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~291~^3.4^3^0.2^~1~^~A~^^^1^3.1^4.0^2^2.2^4.6^~2, 3~^~04/01/2010~ -~35239~^~317~^8.8^3^0.4^~1~^~A~^^^1^8.1^9.6^2^6.9^10.6^~2, 3~^~04/01/2010~ -~35240~^~291~^3.6^3^0.1^~1~^~A~^^^1^3.3^3.8^2^2.9^4.2^~2, 3~^~04/01/2010~ -~35240~^~317~^3.0^3^0.7^~1~^~A~^^^1^2.2^4.5^2^-0.3^6.2^~1, 2, 3~^~04/01/2010~ -~36000~^~317~^24.7^3^1.1^~1~^~A~^^^1^22.3^25.9^2^19.5^29.7^~2, 3~^~03/01/2013~ -~36001~^~291~^2.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~317~^26.6^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~421~^50.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~430~^29.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36002~^~291~^3.9^3^0.3^~1~^~A~^^^1^3.4^4.6^2^2.4^5.3^~2, 3~^~03/01/2013~ -~36002~^~317~^0.4^6^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~401~^0.7^3^0.0^~1~^~A~^^^1^0.7^0.7^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~429~^0.1^3^6.7e-02^~1~^~A~^^^1^0.0^0.2^2^-0.2^0.3^~1, 2, 3~^~03/01/2013~ -~36002~^~430~^33.4^3^1.8^~1~^~A~^^^1^30.3^36.8^2^25.3^41.5^~2, 3~^~03/01/2013~ -~36003~^~291~^1.3^3^6.4e-02^~1~^~A~^^^1^1.2^1.5^2^1.0^1.6^~2, 3~^~03/01/2013~ -~36003~^~317~^23.1^3^0.3^~1~^~A~^^^1^22.4^23.6^2^21.5^24.6^~2, 3~^~03/01/2013~ -~36004~^~291~^2.1^3^5.3e-02^~1~^~A~^^^1^2.0^2.2^2^1.8^2.3^~2, 3~^~03/01/2013~ -~36004~^~317~^17.6^3^0.2^~1~^~A~^^^1^17.2^18.1^2^16.4^18.7^~2, 3~^~03/01/2013~ -~36004~^~428~^2.3^3^0.1^~1~^~A~^^^1^2.1^2.5^2^1.8^2.8^~2, 3~^~04/01/2009~ -~36004~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2009~ -~36004~^~430~^22.2^3^6.0^~1~^~A~^^^1^15.9^34.3^2^-3.9^48.2^~2, 3~^~04/01/2009~ -~36005~^~291~^1.2^3^6.0e-02^~1~^~A~^^^1^1.1^1.3^2^0.9^1.4^~2, 3~^~03/01/2013~ -~36005~^~317~^16.9^3^1.3^~1~^~A~^^^1^14.8^19.3^2^11.2^22.5^~2, 3~^~03/01/2013~ -~36005~^~428~^8.2^3^1.6^~1~^~A~^^^1^5.3^11.1^2^0.9^15.4^~2, 3~^~04/01/2009~ -~36005~^~429~^0.2^3^0.1^~1~^~A~^^^1^0.0^0.5^2^-0.5^0.8^~1, 2, 3~^~04/01/2009~ -~36005~^~430~^25.1^3^2.9^~1~^~A~^^^1^19.3^28.4^2^12.5^37.7^~2, 3~^~04/01/2009~ -~36007~^~291~^4.1^3^0.1^~1~^~A~^^^1^3.9^4.3^2^3.5^4.7^~2, 3~^~03/01/2013~ -~36007~^~317~^0.4^6^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~401~^1.1^3^0.3^~1~^~A~^^^1^0.7^1.7^2^-0.3^2.4^~1, 2, 3~^~03/01/2013~ -~36007~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~430~^43.1^3^3.5^~1~^~A~^^^1^36.2^48.1^2^27.7^58.4^~2, 3~^~03/01/2013~ -~36008~^~291~^2.2^3^0.6^~1~^~A~^^^1^1.1^3.2^2^-0.5^4.8^~2, 3~^~03/01/2013~ -~36008~^~317~^22.8^3^1.5^~1~^~A~^^^1^20.7^25.9^2^15.9^29.6^~2, 3~^~03/01/2013~ -~36009~^~291~^1.0^3^7.6e-02^~1~^~A~^^^1^0.9^1.1^2^0.6^1.3^~2, 3~^~05/01/2009~ -~36009~^~317~^17.3^3^0.7^~1~^~A~^^^1^15.9^18.3^2^14.1^20.4^~2, 3~^~03/01/2013~ -~36010~^~291~^0.9^3^8.7e-02^~1~^~A~^^^1^0.8^1.0^2^0.5^1.3^~2, 3~^~05/01/2009~ -~36010~^~317~^28.0^3^2.4^~1~^~A~^^^1^23.5^32.0^2^17.4^38.6^~2, 3~^~03/01/2013~ -~36010~^~428~^6.4^3^0.5^~1~^~A~^^^1^5.5^7.3^2^4.1^8.6^~2, 3~^~05/01/2009~ -~36010~^~429~^0.3^3^0.3^~1~^~A~^^^1^0.0^0.9^2^-0.9^1.5^~1, 2, 3~^~05/01/2009~ -~36010~^~430~^25.4^3^3.1^~1~^~A~^^^1^21.3^31.5^2^12.0^38.7^~2, 3~^~05/01/2009~ -~36011~^~317~^30.6^3^1.5^~1~^~A~^^^1^28.4^33.6^2^23.9^37.2^~2, 3~^~03/01/2013~ -~36012~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~291~^2.0^9^0.1^~1~^~A~^^^2^1.1^3.2^6^1.4^2.4^~2, 3~^~04/01/2013~ -~36012~^~317~^18.9^9^1.0^~1~^~A~^^^2^13.1^25.9^7^16.3^21.3^~2, 3~^~04/01/2013~ -~36012~^~328~^0.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~421~^9.9^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~428~^2.3^7^^~1~^~A~^^^0^2.1^2.6^^^^~2~^~06/01/2009~ -~36012~^~429~^0.0^7^^~1~^~A~^^^0^0.0^0.0^^^^~2~^~06/01/2009~ -~36012~^~430~^22.9^7^^~1~^~A~^^^0^21.3^25.4^^^^~2~^~06/01/2009~ -~36013~^~317~^29.0^9^1.1^~1~^~A~^^^2^22.3^34.6^7^26.2^31.8^~2, 3~^~04/01/2013~ -~36014~^~291~^3.9^9^0.1^~1~^~A~^^^2^3.1^4.6^7^3.5^4.2^~2, 3~^~04/01/2013~ -~36014~^~317~^0.4^18^^~1~^~A~^^^0^0.4^0.4^^^^~2~^~06/01/2009~ -~36014~^~401~^1.1^9^0.2^~1~^~A~^^^2^0.7^2.8^3^0.4^1.8^~1, 2, 3~^~04/01/2013~ -~36014~^~428~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~429~^0.0^8^2.5e-02^~1~^~A~^^^2^0.0^0.2^5^-3.9e-02^8.9e-02^~1, 2, 3~^~06/01/2009~ -~36014~^~430~^35.9^8^2.1^~1~^~A~^^^2^27.5^48.1^5^30.5^41.3^~2, 3~^~04/01/2013~ -~36015~^~291~^1.1^9^6.4e-02^~1~^~A~^^^2^0.8^1.3^7^0.9^1.2^~2, 3~^~04/01/2013~ -~36015~^~317~^20.0^9^1.9^~1~^~A~^^^2^11.5^32.0^6^15.2^24.8^~2, 3~^~04/01/2013~ -~36015~^~428~^6.9^7^^~1~^~A~^^^0^5.9^8.2^^^^~2~^~06/01/2009~ -~36015~^~429~^0.2^7^^~1~^~A~^^^0^0.0^0.3^^^^~2~^~06/01/2009~ -~36015~^~430~^28.0^7^^~1~^~A~^^^0^25.1^33.3^^^^~2~^~06/01/2009~ -~36016~^~221~^0.0^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~291~^1.5^3^0.6^~1~^~A~^^^1^0.3^2.6^2^-1.3^4.3^~1, 2, 3~^~03/01/2014~ -~36016~^~317~^22.6^2^^~1~^~A~^^^1^18.5^26.6^1^^^^~03/01/2014~ -~36016~^~328~^0.0^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~401~^0.0^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~421~^50.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36016~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~36016~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~36016~^~430~^32.2^2^^~1~^~A~^^^1^29.1^35.3^1^^^^~03/01/2014~ -~36017~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~291~^1.1^12^7.7e-02^~1~^~A~^^^2^0.6^1.5^9^0.9^1.2^~1, 2, 3~^~04/01/2013~ -~36017~^~317~^19.4^12^0.9^~1~^~A~^^^2^14.6^23.6^10^17.3^21.3^~2, 3~^~04/01/2013~ -~36017~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~421~^3.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36018~^~291~^0.9^3^0.2^~1~^~A~^^^1^0.6^1.3^2^3.9e-02^1.7^~1, 2, 3~^~03/01/2013~ -~36018~^~317~^17.8^3^0.5^~1~^~A~^^^1^17.2^18.8^2^15.6^19.9^~2, 3~^~03/01/2013~ -~36019~^~291~^1.4^3^0.1^~1~^~A~^^^1^1.2^1.6^2^0.9^1.8^~2, 3~^~03/01/2013~ -~36019~^~317~^13.1^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~401~^1.1^3^0.2^~1~^~A~^^^1^0.7^1.6^2^7.1e-02^2.2^~1, 2, 3~^~03/01/2013~ -~36020~^~291~^0.8^3^0.1^~1~^~A~^^^1^0.6^1.1^2^0.1^1.4^~1, 2, 3~^~03/01/2013~ -~36020~^~317~^28.8^3^0.8^~1~^~A~^^^1^27.2^29.9^2^25.2^32.3^~2, 3~^~03/01/2013~ -~36021~^~291~^2.8^3^0.2^~1~^~A~^^^1^2.2^3.3^2^1.5^4.0^~2, 3~^~03/01/2013~ -~36021~^~317~^0.4^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36021~^~401~^13.7^3^1.3^~1~^~A~^^^1^11.1^15.2^2^8.0^19.3^~2, 3~^~03/01/2013~ -~36021~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~430~^65.1^3^3.0^~1~^~A~^^^1^61.3^71.1^2^51.9^78.1^~2, 3~^~03/01/2013~ -~36022~^~291~^3.1^3^0.3^~1~^~A~^^^1^2.4^3.6^2^1.5^4.5^~2, 3~^~03/01/2013~ -~36022~^~317~^6.0^3^0.1^~1~^~A~^^^1^5.8^6.3^2^5.3^6.6^~2, 3~^~03/01/2013~ -~36022~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~430~^41.1^3^3.5^~1~^~A~^^^1^37.5^48.2^2^26.0^56.2^~2, 3~^~03/01/2013~ -~36023~^~291~^1.0^3^9.2e-02^~1~^~A~^^^1^0.9^1.2^2^0.6^1.3^~2, 3~^~03/01/2013~ -~36023~^~317~^16.8^3^0.4^~1~^~A~^^^1^16.3^17.7^2^14.9^18.7^~2, 3~^~03/01/2013~ -~36024~^~291~^0.7^3^0.2^~1~^~A~^^^1^0.3^1.1^2^-0.3^1.6^~1, 2, 3~^~04/01/2013~ -~36024~^~317~^16.3^3^2.7^~1~^~A~^^^1^11.1^20.3^2^4.5^27.9^~2, 3~^~04/01/2013~ -~36025~^~291~^1.6^3^0.2^~1~^~A~^^^1^1.3^2.0^2^0.7^2.5^~2, 3~^~04/01/2013~ -~36025~^~317~^2.2^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36025~^~401~^14.2^3^3.5^~1~^~A~^^^1^7.4^19.6^2^-1.2^29.7^~2, 3~^~04/01/2013~ -~36025~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~430~^88.1^3^4.5^~1~^~A~^^^1^81.0^96.6^2^68.5^107.6^~2, 3~^~04/01/2013~ -~36026~^~291~^2.2^3^0.4^~1~^~A~^^^1^1.5^3.2^2^0.1^4.3^~2, 3~^~04/01/2013~ -~36026~^~317~^3.6^3^0.2^~1~^~A~^^^1^3.2^4.0^2^2.6^4.6^~2, 3~^~04/01/2013~ -~36026~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~430~^36.1^3^6.5^~1~^~A~^^^1^26.1^48.5^2^7.9^64.3^~2, 3~^~04/01/2013~ -~36027~^~291~^1.1^3^6.7e-02^~1~^~A~^^^1^1.0^1.3^2^0.8^1.4^~2, 3~^~04/01/2013~ -~36027~^~317~^17.0^3^2.2^~1~^~A~^^^1^12.6^20.1^2^7.2^26.8^~2, 3~^~04/01/2013~ -~36028~^~291~^1.3^3^0.2^~1~^~A~^^^1^1.0^1.9^2^8.0e-02^2.6^~2, 3~^~04/01/2013~ -~36028~^~317~^2.9^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36028~^~401~^13.2^3^1.4^~1~^~A~^^^1^10.3^14.7^2^6.9^19.3^~2, 3~^~04/01/2013~ -~36028~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~36028~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~36028~^~430~^86.1^2^^~1~^~A~^^^1^81.1^91.1^1^^^^~04/01/2013~ -~36029~^~291~^1.0^3^0.2^~1~^~A~^^^1^0.6^1.4^2^-0.1^2.0^~1, 2, 3~^~04/01/2013~ -~36029~^~317~^17.2^3^0.1^~1~^~A~^^^1^16.9^17.5^2^16.4^17.9^~2, 3~^~04/01/2013~ -~36030~^~291~^2.7^3^0.3^~1~^~A~^^^1^2.3^3.4^2^1.0^4.2^~2, 3~^~04/01/2013~ -~36030~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~430~^32.6^3^4.7^~1~^~A~^^^1^26.1^41.8^2^12.2^52.8^~2, 3~^~04/01/2013~ -~36031~^~291~^2.4^3^7.2e-02^~1~^~A~^^^1^2.3^2.5^2^2.0^2.7^~2, 3~^~04/01/2013~ -~36031~^~317~^5.2^3^0.5^~1~^~A~^^^1^4.2^6.0^2^2.9^7.5^~2, 3~^~04/01/2013~ -~36031~^~429~^0.1^3^0.1^~1~^~A~^^^1^0.0^0.4^2^-0.4^0.7^~1, 2, 3~^~04/01/2013~ -~36031~^~430~^50.6^3^1.7^~1~^~A~^^^1^47.7^53.8^2^42.9^58.2^~2, 3~^~04/01/2013~ -~36032~^~291~^1.5^3^9.6e-02^~1~^~A~^^^1^1.3^1.6^2^1.0^1.8^~2, 3~^~04/01/2013~ -~36032~^~317~^18.4^3^0.7^~1~^~A~^^^1^17.5^19.8^2^15.3^21.4^~2, 3~^~04/01/2013~ -~36032~^~401~^0.9^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.3^1.3^~1, 2, 3~^~04/01/2013~ -~36033~^~221~^0.0^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~291~^0.9^6^0.1^~1~^~A~^^^2^0.6^1.4^4^0.4^1.3^~1, 2, 3~^~04/01/2013~ -~36033~^~317~^17.5^6^0.2^~1~^~A~^^^2^16.9^18.8^3^16.5^18.4^~2, 3~^~04/01/2013~ -~36033~^~328~^0.4^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~401~^0.0^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~421~^53.7^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~430~^0.1^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36034~^~291~^0.9^12^8.8e-02^~1~^~A~^^^2^0.3^1.3^8^0.7^1.1^~1, 2, 3~^~04/01/2013~ -~36034~^~317~^19.7^12^1.5^~1~^~A~^^^2^11.1^29.9^8^16.1^23.3^~2, 3~^~04/01/2013~ -~36035~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~291~^1.9^9^0.1^~1~^~A~^^^2^1.0^3.3^7^1.5^2.2^~2, 3~^~04/01/2013~ -~36035~^~317~^1.9^3^0.2^~1~^~A~^^^2^0.4^2.9^1^-1.0^4.7^~1, 2, 3~^~04/01/2013~ -~36035~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~401~^13.7^9^1.2^~1~^~A~^^^2^7.4^19.6^6^10.6^16.7^~2, 3~^~04/01/2013~ -~36035~^~421~^8.2^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~428~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~429~^0.0^8^0.0^~1~^~A~^^^2^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~430~^79.0^8^2.1^~1~^~A~^^^2^61.3^96.6^6^73.5^84.3^~2, 3~^~04/01/2013~ -~36035~^~454~^0.3^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36036~^~291~^2.6^9^0.1^~1~^~A~^^^2^1.5^3.6^7^2.1^3.0^~2, 3~^~04/01/2013~ -~36036~^~317~^5.0^9^0.3^~1~^~A~^^^2^3.2^6.3^5^4.1^5.7^~2, 3~^~04/01/2013~ -~36036~^~428~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~429~^0.0^9^4.4e-02^~1~^~A~^^^2^0.0^0.4^5^-7.0e-02^0.1^~1, 2, 3~^~04/01/2013~ -~36036~^~430~^42.6^9^3.1^~1~^~A~^^^2^26.1^53.8^6^34.9^50.3^~2, 3~^~04/01/2013~ -~36037~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~291~^1.4^3^0.1^~1~^~A~^^^1^1.2^1.6^2^0.9^1.8^~2, 3~^~04/01/2013~ -~36037~^~317~^13.1^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~401~^1.1^3^0.2^~1~^~A~^^^1^0.7^1.6^2^7.1e-02^2.2^~1, 2, 3~^~04/01/2013~ -~36037~^~421~^32.3^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~430~^3.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36038~^~291~^1.5^3^9.6e-02^~1~^~A~^^^1^1.3^1.6^2^1.0^1.8^~2, 3~^~04/01/2013~ -~36038~^~317~^18.4^3^0.7^~1~^~A~^^^1^17.5^19.8^2^15.3^21.4^~2, 3~^~04/01/2013~ -~36038~^~401~^0.9^3^0.1^~1~^~A~^^^1^0.7^1.1^2^0.3^1.3^~1, 2, 3~^~04/01/2013~ -~36039~^~291~^2.7^3^0.3^~1~^~A~^^^1^2.3^3.4^2^1.0^4.2^~2, 3~^~04/01/2013~ -~36039~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~430~^32.6^3^4.7^~1~^~A~^^^1^26.1^41.8^2^12.2^52.8^~2, 3~^~04/01/2013~ -~36040~^~291~^1.1^3^0.1^~1~^~A~^^^1^0.9^1.3^2^0.4^1.6^~2, 3~^~04/01/2013~ -~36040~^~317~^16.9^3^0.4^~1~^~A~^^^1^16.4^17.7^2^15.1^18.6^~2, 3~^~04/01/2013~ -~36041~^~221~^0.0^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~291~^1.5^6^0.1^~1~^~A~^^^1^1.3^1.8^5^1.2^1.7^~2, 3~^~03/01/2014~ -~36041~^~317~^18.0^6^1.7^~1~^~A~^^^1^14.4^26.0^5^13.5^22.4^~2, 3~^~03/01/2014~ -~36041~^~328~^0.0^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~401~^0.7^6^0.1^~1~^~A~^^^1^0.4^1.2^5^0.4^1.0^~1, 2, 3~^~03/01/2014~ -~36041~^~421~^33.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36041~^~428~^3.2^2^^~1~^~A~^^^1^3.1^3.3^1^^^^~03/01/2014~ -~36041~^~429~^0.3^2^^~1~^~A~^^^1^0.0^0.5^1^^^~1~^~03/01/2014~ -~36041~^~430~^6.8^2^^~1~^~A~^^^1^5.4^8.2^1^^^^~03/01/2014~ -~36041~^~454~^594.4^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~291~^1.6^3^0.1^~1~^~A~^^^1^1.4^1.8^2^1.0^2.2^~2, 3~^~03/01/2014~ -~36042~^~317~^15.2^3^0.4^~1~^~A~^^^1^14.4^15.9^2^13.3^17.0^~2, 3~^~03/01/2014~ -~36042~^~401~^0.7^3^0.2^~1~^~A~^^^1^0.4^1.2^2^-0.3^1.7^~1, 2, 3~^~03/01/2014~ -~36042~^~421~^33.5^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36042~^~428~^3.2^2^^~1~^~A~^^^1^3.1^3.3^1^^^^~03/01/2014~ -~36042~^~429~^0.3^2^^~1~^~A~^^^1^0.0^0.5^1^^^~1~^~03/01/2014~ -~36042~^~430~^6.8^2^^~1~^~A~^^^1^5.4^8.2^1^^^^~03/01/2014~ -~36042~^~454~^594.4^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~291~^1.3^3^2.5e-02^~1~^~A~^^^1^1.3^1.3^2^1.1^1.3^~2, 3~^~03/01/2014~ -~36043~^~317~^20.9^3^2.5^~1~^~A~^^^1^17.7^26.0^2^9.7^32.0^~2, 3~^~03/01/2014~ -~36043~^~401~^0.8^3^9.0e-02^~1~^~A~^^^1^0.6^0.9^2^0.3^1.1^~2, 3~^~03/01/2014~ -~36044~^~291~^1.1^2^^~1~^~A~^^^1^0.9^1.3^1^^^^~03/01/2014~ -~36044~^~317~^7.3^2^^~1~^~A~^^^1^7.2^7.5^1^^^^~03/01/2014~ -~36044~^~401~^0.3^2^^~1~^~A~^^^1^0.1^0.4^1^^^~1~^~03/01/2014~ -~36044~^~421~^9.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36044~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36044~^~429~^0.2^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36044~^~430~^12.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36044~^~454~^19.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36045~^~291~^8.2^2^^~1~^~A~^^^1^7.3^9.0^1^^^^~03/01/2014~ -~36045~^~317~^8.8^2^^~1~^~A~^^^1^8.3^9.3^1^^^^~03/01/2014~ -~36045~^~401~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~36045~^~421~^55.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36045~^~428~^1.0^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36045~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36045~^~430~^2.1^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36045~^~454~^13.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36046~^~291~^1.7^6^4.5e-02^~1~^~A~^^^1^1.6^1.9^5^1.5^1.8^~2, 3~^~04/01/2014~ -~36046~^~317~^10.1^6^1.6^~1~^~A~^^^1^5.2^15.1^5^5.8^14.2^~2, 3~^~04/01/2014~ -~36046~^~401~^1.1^6^0.1^~1~^~A~^^^1^0.9^1.6^5^0.8^1.4^~2, 3~^~04/01/2014~ -~36046~^~421~^8.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36046~^~428~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~430~^4.0^4^0.5^~1~^~A~^^^1^3.0^5.3^3^2.2^5.7^~2, 3~^~04/01/2014~ -~36046~^~454~^472.0^2^^~1~^~A~^^^1^469.4^474.7^1^^^^~04/01/2014~ -~36047~^~291~^1.7^3^7.8e-02^~1~^~A~^^^1^1.6^1.9^2^1.3^2.0^~2, 3~^~04/01/2014~ -~36047~^~317~^13.3^3^0.9^~1~^~A~^^^1^11.8^15.1^2^9.0^17.4^~2, 3~^~04/01/2014~ -~36047~^~401~^1.2^3^0.2^~1~^~A~^^^1^0.9^1.6^2^0.2^2.1^~2, 3~^~04/01/2014~ -~36047~^~421~^7.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36047~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~36047~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~36047~^~430~^4.2^2^^~1~^~A~^^^1^3.0^5.3^1^^^^~04/01/2014~ -~36047~^~454~^469.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~291~^1.7^3^6.2e-02^~1~^~A~^^^1^1.6^1.8^2^1.4^1.9^~2, 3~^~04/01/2014~ -~36048~^~317~^6.9^3^1.4^~1~^~A~^^^1^5.2^9.7^2^0.7^12.9^~2, 3~^~04/01/2014~ -~36048~^~401~^1.0^3^7.3e-02^~1~^~A~^^^1^0.9^1.1^2^0.7^1.3^~2, 3~^~04/01/2014~ -~36048~^~421~^8.1^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36048~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36048~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36048~^~430~^4.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~454~^474.7^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36049~^~291~^1.8^2^^~1~^~A~^^^1^1.6^2.1^1^^^^~05/01/2014~ -~36049~^~317~^16.0^2^^~1~^~A~^^^1^14.8^17.2^1^^^^~05/01/2014~ -~36050~^~291~^1.9^6^0.1^~1~^~A~^^^1^1.6^2.3^5^1.5^2.2^~2, 3~^~05/01/2014~ -~36050~^~317~^15.8^6^0.6^~1~^~A~^^^1^13.1^17.2^5^14.1^17.5^~2, 3~^~05/01/2014~ -~36051~^~291~^2.2^2^^~1~^~A~^^^1^2.2^2.3^1^^^^~05/01/2014~ -~36051~^~317~^23.6^2^^~1~^~A~^^^1^22.5^24.7^1^^^^~05/01/2014~ -~36052~^~291~^1.7^6^0.2^~1~^~A~^^^1^1.2^2.3^5^1.1^2.2^~2, 3~^~05/01/2014~ -~36052~^~317~^23.3^6^0.6^~1~^~A~^^^1^21.6^25.5^5^21.6^24.8^~2, 3~^~05/01/2014~ -~36053~^~291~^1.4^3^0.2^~1~^~A~^^^1^1.0^1.8^2^0.2^2.4^~2, 3~^~05/01/2014~ -~36053~^~317~^22.0^3^0.2^~1~^~A~^^^1^21.6^22.5^2^20.8^23.1^~2, 3~^~05/01/2014~ -~36054~^~291~^1.1^3^3.9e-02^~1~^~A~^^^1^1.1^1.2^2^0.9^1.2^~2, 3~^~05/01/2014~ -~36054~^~317~^18.8^3^0.5^~1~^~A~^^^1^17.9^19.9^2^16.2^21.3^~2, 3~^~05/01/2014~ -~36055~^~291~^1.2^6^0.1^~1~^~A~^^^1^1.0^1.8^5^0.9^1.5^~2, 3~^~05/01/2014~ -~36055~^~317~^20.4^6^0.7^~1~^~A~^^^1^17.9^22.5^5^18.4^22.3^~2, 3~^~05/01/2014~ -~36056~^~291~^2.2^5^0.1^~1~^~A~^^^1^1.6^2.6^4^1.6^2.7^~2, 3~^~05/01/2014~ -~36056~^~317~^12.1^5^1.7^~1~^~A~^^^1^7.9^15.7^4^7.2^16.8^~2, 3~^~05/01/2014~ -~36057~^~291~^0.9^3^3.3e-02^~1~^~A~^^^1^0.9^1.0^2^0.7^1.0^~2, 3~^~05/01/2014~ -~36057~^~317~^25.3^3^2.3^~1~^~A~^^^1^20.7^27.8^2^15.3^35.3^~2, 3~^~05/01/2014~ -~36058~^~291~^0.9^3^0.1^~1~^~A~^^^1^0.8^1.1^2^0.4^1.3^~2, 3~^~05/01/2014~ -~36058~^~317~^24.0^3^2.7^~1~^~A~^^^1^20.8^29.4^2^12.3^35.6^~2, 3~^~05/01/2014~ -~36059~^~291~^0.9^6^4.8e-02^~1~^~A~^^^1^0.8^1.1^5^0.7^1.0^~2, 3~^~05/01/2014~ -~36059~^~317~^24.7^6^1.6^~1~^~A~^^^1^20.7^29.4^5^20.4^28.8^~2, 3~^~05/01/2014~ -~36060~^~291~^1.8^2^^~1~^~A~^^^1^1.8^1.8^1^^^^~05/01/2014~ -~36060~^~317~^23.0^2^^~1~^~A~^^^1^18.9^27.1^1^^^^~05/01/2014~ -~36061~^~291~^1.5^5^0.2^~1~^~A~^^^1^0.8^1.9^4^0.8^2.0^~2, 3~^~05/01/2014~ -~36061~^~317~^19.3^5^2.1^~1~^~A~^^^1^14.9^27.1^4^13.3^25.1^~2, 3~^~05/01/2014~ -~36401~^~291~^1.2^5^9.3e-02^~1~^~A~^^^1^1.0^1.5^4^0.9^1.4^~2, 3~^~05/01/2009~ -~36401~^~317~^14.5^5^3.5^~1~^~A~^^^1^8.4^27.5^4^4.7^24.3^~2, 3~^~05/01/2009~ -~36401~^~428~^4.8^5^0.9^~1~^~A~^^^1^3.5^8.4^4^2.1^7.3^~2, 3~^~05/01/2009~ -~36401~^~429~^0.4^5^0.2^~1~^~A~^^^1^0.0^1.4^4^-0.3^1.1^~1, 2, 3~^~05/01/2009~ -~36401~^~430~^4.0^5^0.7^~1~^~A~^^^1^1.5^5.9^4^1.8^6.1^~2, 3~^~05/01/2009~ -~36403~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36403~^~291~^2.0^3^0.1^~1~^~A~^^^1^1.8^2.2^2^1.4^2.4^~2, 3~^~05/01/2009~ -~36403~^~317~^24.8^3^5.2^~1~^~A~^^^1^15.8^33.9^2^2.3^47.3^~2, 3~^~05/01/2009~ -~36403~^~328~^0.2^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~401~^0.7^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~421~^30.3^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~428~^2.6^3^0.1^~1~^~A~^^^1^2.4^2.8^2^1.9^3.1^~2, 3~^~05/01/2009~ -~36403~^~429~^5.7^3^2.9^~1~^~A~^^^1^0.0^10.0^2^-7.0^18.4^~1, 2, 3~^~05/01/2009~ -~36403~^~430~^6.1^3^3.5^~1~^~A~^^^1^2.0^13.1^2^-8.9^21.2^~2, 3~^~05/01/2009~ -~36404~^~291~^0.5^4^6.3e-02^~1~^~A~^^^1^0.3^0.6^3^0.2^0.6^~2, 3~^~06/01/2009~ -~36404~^~317~^3.7^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~291~^3.4^4^0.3^~1~^~A~^^^1^2.5^4.4^3^2.1^4.6^~2, 3~^~06/01/2009~ -~36405~^~317~^4.8^2^^~1~^~A~^^^1^4.5^5.0^1^^^^~06/01/2009~ -~36405~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36405~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36405~^~430~^10.3^2^^~1~^~A~^^^1^5.0^15.7^1^^^^~06/01/2009~ -~36406~^~291~^2.6^3^0.2^~1~^~A~^^^1^2.2^2.9^2^1.6^3.5^~2, 3~^~06/01/2009~ -~36406~^~317~^5.6^3^1.0^~1~^~A~^^^1^3.9^7.4^2^1.2^9.9^~2, 3~^~06/01/2009~ -~36406~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36406~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36406~^~430~^7.8^2^^~1~^~A~^^^1^4.1^11.5^1^^^^~06/01/2009~ -~36407~^~291~^1.4^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~430~^12.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36408~^~291~^5.8^6^9.5e-02^~1~^~A~^^^1^5.4^6.1^5^5.5^6.0^~2, 3~^~05/01/2010~ -~36408~^~317~^7.0^3^0.7^~1~^~A~^^^1^5.7^8.4^2^3.5^10.3^~2, 3~^~05/01/2010~ -~36408~^~421~^39.6^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36408~^~428~^0.8^3^0.3^~1~^~A~^^^1^0.2^1.5^2^-0.8^2.5^~2, 3~^~05/01/2010~ -~36408~^~430~^7.4^3^1.7^~1~^~A~^^^1^4.3^10.1^2^3.7e-02^14.8^~2, 3~^~05/01/2010~ -~36408~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~291~^2.9^6^0.2^~1~^~A~^^^1^2.5^3.7^5^2.3^3.4^~2, 3~^~05/01/2010~ -~36409~^~317~^15.0^3^0.6^~1~^~A~^^^1^13.8^16.2^2^12.0^17.9^~2, 3~^~05/01/2010~ -~36409~^~328~^1.2^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36409~^~421~^16.9^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36409~^~428~^2.9^3^0.4^~1~^~A~^^^1^2.0^3.5^2^0.8^5.0^~2, 3~^~05/01/2010~ -~36409~^~430~^1.7^3^0.5^~1~^~A~^^^1^0.8^2.6^2^-0.5^3.9^~2, 3~^~05/01/2010~ -~36409~^~454~^0.6^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36410~^~291~^2.6^6^7.2e-02^~1~^~A~^^^1^2.3^2.8^5^2.4^2.8^~2, 3~^~05/01/2010~ -~36410~^~317~^17.8^3^3.4^~1~^~A~^^^1^12.6^24.3^2^3.0^32.5^~2, 3~^~05/01/2010~ -~36410~^~328~^0.7^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~401~^0.1^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36410~^~421~^38.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36410~^~428~^2.9^3^1.4^~1~^~A~^^^1^1.3^5.8^2^-3.3^9.2^~2, 3~^~05/01/2010~ -~36410~^~430~^1.1^3^0.5^~1~^~A~^^^1^0.4^2.2^2^-1.3^3.5^~2, 3~^~05/01/2010~ -~36410~^~454~^6.1^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36411~^~291~^3.2^6^0.2^~1~^~A~^^^1^2.4^3.8^5^2.5^3.8^~2, 3~^~05/01/2010~ -~36411~^~317~^2.5^3^0.3^~1~^~A~^^^1^2.2^3.2^2^1.1^3.9^~1, 2, 3~^~05/01/2010~ -~36411~^~328~^0.4^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~401~^0.2^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~421~^24.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36411~^~428~^0.9^2^^~1~^~A~^^^1^0.1^1.8^1^^^^~05/01/2010~ -~36411~^~429~^2.8^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~430~^5.4^3^3.3^~1~^~A~^^^1^1.1^11.9^2^-8.9^19.7^~2, 3~^~05/01/2010~ -~36411~^~454~^1.7^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36412~^~291~^2.4^6^0.2^~1~^~A~^^^1^1.5^3.1^5^1.8^3.0^~2, 3~^~05/01/2010~ -~36412~^~317~^9.8^2^^~1~^~A~^^^1^6.1^13.6^1^^^^~05/01/2010~ -~36412~^~328~^0.3^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~401~^16.4^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~421~^8.8^0^^~4~^~RC~^^^^^^^^^^~12/01/2012~ -~36412~^~428~^2.9^2^^~1~^~A~^^^1^2.7^3.0^1^^^^~05/01/2010~ -~36412~^~430~^5.1^2^^~1~^~A~^^^1^2.6^7.6^1^^^^~05/01/2010~ -~36413~^~291~^4.9^5^0.2^~1~^~A~^^^1^4.3^5.6^4^4.2^5.5^~2, 3~^~05/01/2010~ -~36413~^~317~^9.1^2^^~1~^~A~^^^1^8.9^9.3^1^^^^~05/01/2010~ -~36413~^~421~^35.2^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36413~^~428~^0.4^2^^~1~^~A~^^^1^0.2^0.6^1^^^^~05/01/2010~ -~36413~^~430~^6.0^2^^~1~^~A~^^^1^5.1^6.9^1^^^^~05/01/2010~ -~36413~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~317~^5.6^3^1.3^~1~^~A~^^^1^4.2^8.3^2^-0.1^11.3^~2, 3~^~05/01/2010~ -~36414~^~421~^12.7^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36414~^~428~^2.4^3^1.4^~1~^~A~^^^1^0.9^5.3^2^-3.6^8.5^~2, 3~^~05/01/2010~ -~36414~^~430~^2.3^3^0.7^~1~^~A~^^^1^0.8^3.4^2^-1.0^5.7^~2, 3~^~05/01/2010~ -~36414~^~454~^0.4^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~291~^2.6^4^0.5^~1~^~A~^^^1^1.7^4.1^3^0.9^4.4^~2, 3~^~05/01/2010~ -~36415~^~317~^6.1^4^1.8^~1~^~A~^^^1^2.2^10.0^3^0.1^12.0^~1, 2, 3~^~05/01/2010~ -~36415~^~421~^4.4^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36415~^~428~^1.0^2^^~1~^~A~^^^1^0.3^1.7^1^^^^~05/01/2010~ -~36415~^~430~^3.5^4^2.0^~1~^~A~^^^1^0.0^9.2^3^-2.8^9.8^~1, 2, 3~^~05/01/2010~ -~36415~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~291~^1.5^3^0.2^~1~^~A~^^^1^1.2^2.0^2^0.4^2.5^~2, 3~^~05/01/2010~ -~36416~^~317~^10.7^3^2.8^~1~^~A~^^^1^5.2^14.3^2^-1.3^22.8^~2, 3~^~05/01/2010~ -~36416~^~421~^43.8^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~36416~^~428~^2.1^3^0.6^~1~^~A~^^^1^1.3^3.3^2^-0.5^4.7^~2, 3~^~05/01/2010~ -~36416~^~429~^11.1^2^^~1~^~A~^^^1^5.8^16.5^1^^^^~05/01/2010~ -~36416~^~430~^25.8^3^11.9^~1~^~A~^^^1^11.9^49.7^2^-25.7^77.3^~2, 3~^~05/01/2010~ -~36416~^~454~^15.9^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36417~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~291~^1.2^6^0.1^~1~^~A~^^^1^0.9^1.7^5^0.9^1.5^~2, 3~^~03/01/2014~ -~36417~^~317~^7.4^6^0.6^~1~^~A~^^^1^4.7^9.3^5^5.8^8.9^~2, 3~^~03/01/2014~ -~36417~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~401~^0.1^6^5.9e-02^~1~^~A~^^^1^0.0^0.4^5^-5.5e-02^0.2^~1, 2, 3~^~03/01/2014~ -~36417~^~421~^9.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36417~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~36417~^~429~^0.8^2^^~1~^~A~^^^1^0.2^1.4^1^^^^~03/01/2014~ -~36417~^~430~^13.0^2^^~1~^~A~^^^1^12.3^13.8^1^^^^~03/01/2014~ -~36417~^~454~^19.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~291~^8.0^6^0.2^~1~^~A~^^^1^7.3^9.0^5^7.3^8.6^~2, 3~^~03/01/2014~ -~36418~^~317~^8.4^6^0.8^~1~^~A~^^^1^5.4^12.0^5^6.1^10.6^~2, 3~^~03/01/2014~ -~36418~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~401~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~421~^55.7^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36418~^~428~^0.5^2^^~1~^~A~^^^1^0.0^1.0^1^^^~1~^~03/01/2014~ -~36418~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2014~ -~36418~^~430~^13.3^2^^~1~^~A~^^^1^2.1^24.5^1^^^^~03/01/2014~ -~36418~^~454~^13.9^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36601~^~291~^2.6^4^0.2^~1~^~A~^^^1^2.0^3.2^3^1.6^3.4^~2, 3~^~10/01/2008~ -~36601~^~317~^0.0^4^2.0e-03^~1~^~A~^^^1^0.0^0.0^3^9.0e-03^1.9e-02^~2, 3~^~10/01/2008~ -~36601~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2008~ -~36601~^~421~^17.9^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~ -~36601~^~428~^3.3^4^1.3^~1~^~A~^^^1^0.7^6.0^3^-0.9^7.4^~2, 3~^~10/01/2008~ -~36601~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~430~^58.9^4^11.8^~1~^~A~^^^1^36.0^90.2^3^21.2^96.5^~2, 3~^~10/01/2008~ -~36601~^~454~^21.9^1^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~36602~^~291~^1.1^4^0.1^~1~^~A~^^^1^0.7^1.4^3^0.6^1.5^~2, 3~^~10/01/2008~ -~36602~^~317~^8.3^12^0.7^~1~^~A~^^^3^4.5^12.8^5^6.4^10.1^~2, 3~^~04/01/2009~ -~36602~^~325~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36602~^~326~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36602~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36602~^~401~^3.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36602~^~421~^5.5^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~36602~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2008~ -~36602~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~10/01/2008~ -~36602~^~430~^2.8^2^^~1~^~A~^^^1^2.4^3.2^1^^^^~10/01/2008~ -~36602~^~454~^0.2^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36603~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36603~^~291~^1.5^6^9.9e-02^~1~^~A~^^^1^1.3^2.0^5^1.2^1.8^~2, 3~^~07/01/2010~ -~36603~^~317~^6.7^15^0.6^~1~^~A~^^^4^3.6^12.0^3^4.8^8.6^~1, 2, 3~^~07/01/2010~ -~36603~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~11/01/2012~ -~36603~^~401~^11.6^6^2.0^~1~^~A~^^^1^7.2^19.6^5^6.4^16.7^~2, 3~^~07/01/2010~ -~36603~^~421~^34.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36603~^~428~^2.0^2^^~1~^~A~^^^1^1.1^2.8^1^^^^~07/01/2010~ -~36603~^~430~^51.3^3^3.5^~1~^~A~^^^1^46.1^58.2^2^35.7^66.7^~2, 3~^~07/01/2010~ -~36603~^~454~^3.1^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36604~^~291~^1.0^3^0.1^~1~^~A~^^^1^0.9^1.3^2^0.5^1.5^~2, 3~^~04/01/2013~ -~36604~^~317~^15.2^3^2.1^~1~^~A~^^^1^11.5^18.8^2^6.1^24.2^~2, 3~^~04/01/2013~ -~36604~^~428~^5.9^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36604~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36604~^~430~^33.3^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36605~^~291~^0.3^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36606~^~291~^1.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~317~^0.0^5^1.0e-03^~1~^~A~^^^1^0.0^0.0^4^1.1e-02^1.7e-02^~4~^~06/01/2009~ -~36606~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36606~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36606~^~430~^24.7^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~291~^3.5^3^0.1^~1~^~A~^^^1^3.3^3.8^2^2.8^4.2^~2, 3~^~04/01/2013~ -~36607~^~401~^0.9^3^0.1^~1~^~A~^^^1^0.7^1.2^2^0.2^1.5^~1, 2, 3~^~04/01/2013~ -~36607~^~429~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~430~^32.1^3^1.0^~1~^~A~^^^1^31.0^34.3^2^27.4^36.7^~2, 3~^~04/01/2013~ -~36608~^~317~^31.8^3^1.4^~1~^~A~^^^1^29.6^34.6^2^25.4^38.1^~2, 3~^~04/01/2013~ -~36608~^~428~^3.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36608~^~429~^0.9^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36608~^~430~^1.0^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36609~^~291~^0.7^3^9.7e-02^~1~^~A~^^^1^0.6^0.9^2^0.3^1.1^~1, 2, 3~^~04/01/2013~ -~36609~^~317~^16.2^3^1.0^~1~^~A~^^^1^14.6^18.2^2^11.6^20.7^~2, 3~^~04/01/2013~ -~36609~^~428~^1.1^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36609~^~429~^6.4^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36609~^~430~^9.9^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~291~^3.5^3^0.2^~1~^~A~^^^1^3.1^4.1^2^2.2^4.8^~2, 3~^~06/01/2009~ -~36610~^~317~^0.4^6^0.0^~1~^~A~^^^1^0.4^0.4^5^0.4^0.4^~1, 4~^~06/01/2009~ -~36610~^~401~^1.6^3^0.6^~1~^~A~^^^1^0.7^2.8^2^-1.0^4.2^~1, 2, 3~^~04/01/2013~ -~36610~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36610~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~06/01/2009~ -~36610~^~430~^28.8^2^^~1~^~A~^^^1^27.5^30.1^1^^^^~04/01/2013~ -~36611~^~291~^1.6^3^0.1^~1~^~A~^^^1^1.4^2.0^2^0.8^2.4^~2, 3~^~04/01/2013~ -~36611~^~317~^16.2^3^1.5^~1~^~A~^^^1^13.1^18.2^2^9.4^22.9^~2, 3~^~04/01/2013~ -~36611~^~428~^2.1^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36611~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36611~^~430~^25.4^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36612~^~291~^1.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~317~^18.5^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36612~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36612~^~430~^35.3^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36613~^~291~^1.2^3^0.1^~1~^~A~^^^1^1.0^1.4^2^0.8^1.6^~2, 3~^~04/01/2013~ -~36613~^~317~^20.8^3^0.9^~1~^~A~^^^1^19.0^22.4^2^16.5^25.0^~2, 3~^~04/01/2013~ -~36613~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36613~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36613~^~430~^3.0^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36614~^~291~^0.8^3^0.1^~1~^~A~^^^1^0.6^1.1^2^0.1^1.5^~1, 2, 3~^~04/01/2013~ -~36614~^~317~^17.3^3^1.2^~1~^~A~^^^1^15.9^19.9^2^11.7^22.8^~2, 3~^~04/01/2013~ -~36614~^~428~^12.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36614~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36614~^~430~^36.6^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~317~^0.0^6^1.0e-03^~1~^~A~^^^1^0.0^0.0^5^2.4e-02^3.2e-02^~4~^~06/01/2009~ -~36615~^~428~^3.5^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36615~^~430~^1.0^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36617~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36617~^~291~^1.0^7^0.1^~1~^~A~^^^2^0.5^1.5^5^0.7^1.3^~1, 2, 3~^~05/01/2013~ -~36617~^~317~^13.0^4^2.3^~1~^~A~^^^2^8.3^19.0^2^2.7^23.3^~2, 3~^~05/01/2013~ -~36617~^~326~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~36617~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36617~^~401~^2.3^7^0.4^~1~^~A~^^^2^0.7^4.4^5^1.1^3.5^~1, 2, 3~^~05/01/2013~ -~36617~^~421~^28.6^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36617~^~428~^2.6^3^0.5^~1~^~A~^^^1^1.9^3.7^2^0.3^4.8^~2, 3~^~07/01/2010~ -~36617~^~430~^24.4^3^5.0^~1~^~A~^^^1^16.8^33.8^2^2.8^45.9^~2, 3~^~07/01/2010~ -~36617~^~454~^7.5^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36618~^~291~^0.9^6^4.9e-02^~1~^~A~^^^1^0.7^1.0^5^0.7^0.9^~2, 3~^~07/01/2010~ -~36618~^~317~^14.4^3^1.7^~1~^~A~^^^1^11.0^16.8^2^6.8^21.8^~2, 3~^~07/01/2010~ -~36618~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~36618~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36618~^~401~^1.6^6^0.2^~1~^~A~^^^1^0.7^2.6^5^0.9^2.3^~1, 2, 3~^~07/01/2010~ -~36618~^~421~^41.5^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36618~^~428~^7.2^3^1.4^~1~^~A~^^^1^5.6^10.2^2^0.7^13.6^~2, 3~^~07/01/2010~ -~36618~^~430~^38.2^3^7.8^~1~^~A~^^^1^22.6^48.1^2^4.2^72.0^~2, 3~^~07/01/2010~ -~36618~^~454~^5.5^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~291~^1.5^6^8.5e-02^~1~^~A~^^^1^1.3^1.9^5^1.3^1.7^~2, 3~^~07/01/2010~ -~36619~^~317~^8.1^3^0.3^~1~^~A~^^^1^7.5^8.8^2^6.4^9.7^~2, 3~^~07/01/2010~ -~36619~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~401~^7.1^6^1.9^~1~^~A~^^^1^0.7^14.0^5^2.1^12.1^~1, 2, 3~^~07/01/2010~ -~36619~^~421~^37.4^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~36619~^~428~^2.2^3^0.3^~1~^~A~^^^1^1.6^2.7^2^0.8^3.5^~2, 3~^~07/01/2010~ -~36619~^~430~^13.6^3^1.6^~1~^~A~^^^1^11.4^17.0^2^6.3^20.8^~2, 3~^~07/01/2010~ -~36619~^~454~^3.7^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36620~^~291~^1.4^6^3.1e-02^~1~^~A~^^^1^1.3^1.5^5^1.3^1.4^~2, 3~^~02/01/2011~ -~36620~^~317~^5.6^3^0.8^~1~^~A~^^^1^4.7^7.3^2^1.8^9.2^~2, 3~^~02/01/2011~ -~36620~^~401~^11.3^6^1.6^~1~^~A~^^^1^5.2^16.9^5^6.9^15.6^~2, 3~^~02/01/2011~ -~36620~^~421~^42.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36620~^~428~^2.3^3^0.7^~1~^~A~^^^1^1.4^3.8^2^-0.9^5.6^~2, 3~^~02/01/2011~ -~36620~^~430~^52.0^3^6.0^~1~^~A~^^^1^39.8^58.2^2^25.8^78.1^~2, 3~^~02/01/2011~ -~36620~^~454~^28.0^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36621~^~291~^1.0^3^3.3e-02^~1~^~A~^^^1^0.9^1.0^2^0.8^1.1^~2, 3~^~02/01/2011~ -~36621~^~317~^11.5^2^^~1~^~A~^^^1^10.3^12.7^1^^^^~02/01/2011~ -~36621~^~328~^0.2^0^^~4~^~BFZN~^~21229~^^^^^^^^^~11/01/2012~ -~36621~^~401~^2.4^3^0.6^~1~^~A~^^^1^1.1^3.1^2^-0.3^5.1^~2, 3~^~02/01/2011~ -~36621~^~421~^24.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36621~^~428~^2.4^2^^~1~^~A~^^^1^1.5^3.3^1^^^^~02/01/2011~ -~36621~^~430~^22.5^2^^~1~^~A~^^^1^20.6^24.5^1^^^^~02/01/2011~ -~36621~^~454~^8.3^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~291~^1.0^6^0.1^~1~^~A~^^^1^0.5^1.3^5^0.7^1.2^~2, 3~^~02/01/2011~ -~36622~^~317~^9.7^3^2.8^~1~^~A~^^^1^4.7^14.5^2^-2.4^21.9^~2, 3~^~02/01/2011~ -~36622~^~401~^2.3^6^0.6^~1~^~A~^^^1^0.7^4.1^5^0.6^3.9^~1, 2, 3~^~02/01/2011~ -~36622~^~421~^32.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36622~^~428~^2.0^3^0.4^~1~^~A~^^^1^1.3^2.8^2^0.1^3.9^~2, 3~^~02/01/2011~ -~36622~^~430~^27.9^3^3.1^~1~^~A~^^^1^23.5^34.0^2^14.3^41.3^~2, 3~^~02/01/2011~ -~36622~^~454~^7.4^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~291~^1.0^6^7.5e-02^~1~^~A~^^^1^0.8^1.2^5^0.8^1.2^~2, 3~^~02/01/2011~ -~36623~^~317~^6.1^3^1.5^~1~^~A~^^^1^3.5^8.8^2^-0.5^12.6^~2, 3~^~02/01/2011~ -~36623~^~401~^2.0^6^0.5^~1~^~A~^^^1^0.7^4.0^5^0.7^3.2^~1, 2, 3~^~02/01/2011~ -~36623~^~421~^24.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~36623~^~428~^1.2^3^8.8e-02^~1~^~A~^^^1^1.0^1.4^2^0.8^1.5^~2, 3~^~02/01/2011~ -~36623~^~430~^22.0^3^9.3^~1~^~A~^^^1^12.4^40.7^2^-18.0^62.0^~2, 3~^~02/01/2011~ -~36623~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36624~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~291~^1.2^3^0.1^~1~^~A~^^^1^0.9^1.6^2^0.4^1.9^~2, 3~^~04/01/2013~ -~36624~^~317~^0.4^3^0.0^~1~^~A~^^^1^0.4^0.4^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36624~^~401~^7.2^3^1.9^~1~^~A~^^^1^4.2^10.8^2^-1.0^15.4^~2, 3~^~04/01/2013~ -~36624~^~421~^15.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36624~^~430~^18.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36624~^~454~^1.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36625~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~291~^1.3^3^3.8e-02^~1~^~A~^^^1^1.2^1.4^2^1.1^1.4^~2, 3~^~04/01/2013~ -~36625~^~317~^11.7^3^2.5^~1~^~A~^^^1^9.1^16.8^2^0.7^22.6^~2, 3~^~04/01/2013~ -~36625~^~328~^0.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36625~^~401~^1.7^3^0.6^~1~^~A~^^^1^1.0^3.0^2^-1.0^4.4^~2, 3~^~04/01/2013~ -~36625~^~421~^8.9^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~36625~^~430~^12.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36625~^~454~^9.4^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36626~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~291~^0.9^3^0.1^~1~^~A~^^^1^0.5^1.1^2^0.1^1.5^~2, 3~^~04/01/2013~ -~36626~^~317~^8.1^3^0.8^~1~^~A~^^^1^6.8^9.8^2^4.2^11.9^~2, 3~^~04/01/2013~ -~36626~^~325~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~36626~^~326~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2013~ -~36626~^~328~^0.0^2^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~36626~^~401~^8.1^3^1.4^~1~^~A~^^^1^6.4^11.1^2^1.7^14.5^~2, 3~^~04/01/2013~ -~36626~^~421~^41.8^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36626~^~430~^54.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~36626~^~454~^2.6^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36629~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~291~^0.8^3^0.1^~1~^~A~^^^1^0.6^1.1^2^0.1^1.4^~1, 2, 3~^~04/01/2013~ -~36629~^~317~^17.1^3^1.2^~1~^~A~^^^1^14.6^18.8^2^11.6^22.5^~2, 3~^~04/01/2013~ -~36629~^~328~^0.1^0^^~4~^~BFZN~^~36617~^^^^^^^^^~04/01/2013~ -~36629~^~401~^0.9^2^^~1~^~A~^^^1^0.7^1.1^1^^^~1~^~04/01/2013~ -~36629~^~421~^66.1^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~36629~^~430~^24.4^0^^~4~^~BFZN~^~36617~^^^^^^^^^~04/01/2013~ -~36629~^~454~^7.9^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36630~^~291~^1.6^6^6.7e-02^~1~^~A~^^^1^1.4^1.8^5^1.3^1.7^~2, 3~^~04/01/2014~ -~36630~^~317~^13.1^6^1.9^~1~^~A~^^^1^7.9^20.8^5^8.1^18.1^~2, 3~^~04/01/2014~ -~36630~^~401~^0.7^6^0.1^~1~^~A~^^^1^0.3^1.0^5^0.4^1.0^~1, 2, 3~^~04/01/2014~ -~36630~^~421~^15.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36630~^~428~^0.5^4^0.2^~1~^~A~^^^1^0.0^0.9^3^-0.1^1.1^~1, 2, 3~^~04/01/2014~ -~36630~^~429~^0.0^4^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~430~^4.2^4^0.3^~1~^~A~^^^1^3.3^5.0^3^3.0^5.4^~2, 3~^~04/01/2014~ -~36630~^~454~^546.1^2^^~1~^~A~^^^1^500.9^591.4^1^^^^~04/01/2014~ -~36631~^~291~^1.7^3^0.1^~1~^~A~^^^1^1.5^1.8^2^1.2^2.1^~2, 3~^~04/01/2014~ -~36631~^~317~^16.8^3^2.0^~1~^~A~^^^1^14.1^20.8^2^7.9^25.5^~2, 3~^~04/01/2014~ -~36631~^~401~^0.6^3^0.2^~1~^~A~^^^1^0.3^1.0^2^-0.2^1.5^~1, 2, 3~^~04/01/2014~ -~36631~^~421~^15.0^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36631~^~428~^0.8^2^^~1~^~A~^^^1^0.6^0.9^1^^^^~04/01/2014~ -~36631~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~04/01/2014~ -~36631~^~430~^4.3^2^^~1~^~A~^^^1^3.9^4.8^1^^^^~04/01/2014~ -~36631~^~454~^500.9^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~291~^1.5^3^6.1e-02^~1~^~A~^^^1^1.4^1.6^2^1.2^1.7^~2, 3~^~04/01/2014~ -~36632~^~317~^9.5^3^1.2^~1~^~A~^^^1^7.9^12.0^2^4.0^14.9^~2, 3~^~04/01/2014~ -~36632~^~401~^0.8^3^0.1^~1~^~A~^^^1^0.6^1.0^2^0.3^1.3^~2, 3~^~04/01/2014~ -~36632~^~421~^16.2^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~36632~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36632~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36632~^~430~^3.3^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~454~^591.4^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36633~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~36633~^~291~^0.7^2^^~1~^~A~^^^1^0.7^0.8^1^^^^~06/01/2015~ -~36633~^~317~^16.7^2^^~1~^~A~^^^1^13.8^19.5^1^^^^~06/01/2015~ -~36633~^~328~^0.1^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~401~^1.0^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~421~^61.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~36633~^~430~^27.1^0^^~4~^~BFSN~^~36629~^^^^^^^^^~06/01/2015~ -~36633~^~454~^4.6^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~42040~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~42040~^~291~^0.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~42040~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42040~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~42040~^~430~^0.0^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42055~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~291~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42055~^~401~^560.0^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~42055~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42055~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42063~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~291~^2.1^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~42063~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~42063~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42063~^~401~^0.0^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~42063~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42074~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42074~^~291~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~317~^2.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~326~^0.2^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42074~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42074~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~421~^29.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42074~^~430~^1.3^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42116~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42116~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42116~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42116~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42116~^~401~^0.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~421~^16.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~42116~^~430~^3.5^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~42117~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2007~ -~42117~^~291~^0.0^0^^~7~^^^^^^^^^^^~08/01/2007~ -~42117~^~317~^14.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42117~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42117~^~401~^0.0^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~421~^0.1^0^^~4~^~BFFN~^~04651~^^^^^^^^^~08/01/2007~ -~42117~^~430~^2.7^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~42119~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42119~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~317~^1.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~42119~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~42119~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~42119~^~401~^33.9^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~421~^11.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42119~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42120~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42120~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~317~^1.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~42120~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~ -~42120~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~42120~^~401~^33.9^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~421~^8.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42120~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42128~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42128~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42128~^~317~^37.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42128~^~326~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~42128~^~328~^0.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~42128~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42128~^~421~^59.1^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~42128~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42128~^~454~^5.0^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~42129~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42129~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42129~^~317~^11.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42129~^~328~^0.5^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~42129~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42129~^~421~^48.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~42129~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42129~^~454~^4.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~42131~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42131~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42131~^~317~^2.6^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2005~ -~42131~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42131~^~401~^0.7^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~421~^0.9^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~42131~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42135~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42135~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42135~^~317~^2.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42135~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42135~^~421~^0.0^0^^~4~^~BFSN~^~01073~^^^^^^^^^~03/01/2007~ -~42135~^~430~^3.2^0^^~4~^~BFFN~^~01073~^^^^^^^^^~01/01/2003~ -~42136~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42136~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42136~^~317~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42136~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42136~^~401~^0.0^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~421~^2.3^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~42136~^~430~^3.9^0^^~4~^~BFFN~^~01069~^^^^^^^^^~01/01/2003~ -~42137~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42137~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42137~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42137~^~328~^0.1^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~401~^0.6^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~421~^20.6^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~430~^125.2^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2003~ -~42138~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42138~^~291~^0.0^1^^~7~^^^^^^^^^^^~03/01/2005~ -~42138~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~42138~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42138~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~421~^7.0^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~42138~^~430~^24.7^0^^~4~^~BFZN~^~43598~^^^^^^^^^~03/01/2005~ -~42139~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~291~^3.8^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~317~^15.7^0^^~4~^~RA~^^^^^^^^^^~04/01/1998~ -~42139~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42139~^~401~^0.6^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~421~^24.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42139~^~430~^5.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42140~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42140~^~291~^0.2^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42140~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42140~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42140~^~401~^0.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~421~^3.3^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~42140~^~430~^12.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42141~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42141~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42141~^~317~^0.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42141~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42141~^~401~^0.0^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~421~^0.0^0^^~4~^~BFSN~^~01067~^^^^^^^^^~03/01/2007~ -~42141~^~430~^0.9^0^^~4~^~BFFN~^~01067~^^^^^^^^^~01/01/2003~ -~42148~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~291~^4.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~317~^2.8^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42148~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~421~^37.5^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42148~^~430~^5.9^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42150~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42150~^~291~^0.5^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~317~^0.7^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~42150~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~42150~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42150~^~401~^35.1^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~421~^5.4^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~42150~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42151~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42151~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42151~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~42151~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42151~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42151~^~421~^6.5^0^^~4~^~BFZN~^~04585~^^^^^^^^^~03/01/2007~ -~42151~^~430~^61.1^0^^~4~^~BFFN~^~42307~^^^^^^^^^~03/01/2003~ -~42153~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~291~^0.0^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42153~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42153~^~401~^0.0^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~421~^17.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~42153~^~430~^91.0^0^^~4~^~BFZN~^~04539~^^^^^^^^^~02/01/2003~ -~42155~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42155~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42155~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42155~^~326~^0.4^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42155~^~328~^0.4^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42155~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42155~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~42155~^~430~^1.8^0^^~4~^~BFFN~^~01025~^^^^^^^^^~01/01/2003~ -~42157~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42157~^~291~^0.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42157~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42157~^~401~^0.0^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~42157~^~430~^2.3^0^^~4~^~BFZN~^~04638~^^^^^^^^^~02/01/2003~ -~42158~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42158~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2005~ -~42158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42158~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~42158~^~430~^34.8^0^^~4~^~BFZN~^~04640~^^^^^^^^^~05/01/2005~ -~42161~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42161~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42161~^~317~^12.4^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2004~ -~42161~^~328~^0.4^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~42161~^~401~^1.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~421~^53.3^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~42161~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42161~^~454~^5.8^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~42171~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42171~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2005~ -~42171~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42171~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~421~^4.6^0^^~4~^~BFZN~^~04120~^^^^^^^^^~07/01/2015~ -~42171~^~430~^4.8^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42173~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42173~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42173~^~317~^21.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42173~^~326~^2.0^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~42173~^~328~^2.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42173~^~401~^1.1^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~421~^79.9^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~42173~^~430~^5.7^0^^~4~^~BFSN~^~07957~^^^^^^^^^~04/01/2003~ -~42173~^~454~^4.3^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~42178~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42178~^~291~^1.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~313~^0.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2005~ -~42178~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42178~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~421~^26.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~430~^53.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42179~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42179~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42179~^~317~^13.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42179~^~328~^0.6^0^^~4~^~BFFN~^~07022~^^^^^^^^^~02/01/2009~ -~42179~^~401~^1.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~421~^44.0^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~42179~^~430~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42179~^~454~^4.8^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~42183~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~42183~^~291~^3.0^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~317~^7.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1998~ -~42183~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42183~^~401~^1.0^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~421~^20.9^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~42183~^~430~^18.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42185~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42185~^~291~^2.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~317~^2.8^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2005~ -~42185~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42185~^~401~^0.7^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~421~^3.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42185~^~430~^0.3^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42186~^~221~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~291~^2.3^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~313~^40.0^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~42186~^~317~^1.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~42186~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42186~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~42186~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42186~^~421~^14.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42186~^~430~^0.3^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42187~^~221~^0.0^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42187~^~313~^25.7^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~42187~^~317~^1.9^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~42187~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~42187~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42187~^~401~^0.7^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~421~^23.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42187~^~430~^0.3^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42189~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42189~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42189~^~317~^2.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42189~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42189~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42189~^~401~^1.5^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~42189~^~430~^0.1^0^^~4~^~BFFN~^~01088~^^^^^^^^^~01/01/2003~ -~42190~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~42190~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~42190~^~317~^16.6^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2004~ -~42190~^~326~^0.9^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~ -~42190~^~328~^0.9^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~42190~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~42190~^~421~^55.9^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~42190~^~430~^3.4^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42190~^~454~^3.0^0^^~4~^~BFNN~^~07064~^^^^^^^^^~02/01/2007~ -~42192~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~291~^1.8^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42192~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42192~^~401~^0.5^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~421~^16.4^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~430~^0.1^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~454~^0.0^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42193~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~291~^1.9^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~317~^0.3^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42193~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~421~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~42193~^~430~^24.7^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2003~ -~42196~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~291~^2.9^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~317~^2.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42196~^~401~^0.2^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~421~^16.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42196~^~430~^3.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42200~^~221~^0.0^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~291~^18.6^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~313~^11.9^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~317~^8.3^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42200~^~401~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~421~^0.4^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~429~^0.0^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~430~^0.4^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~454~^0.0^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42204~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~291~^4.2^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~317~^24.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~42204~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42204~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~421~^18.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42204~^~430~^1.9^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42227~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~291~^5.6^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~317~^2.7^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42227~^~401~^0.6^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~421~^37.7^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~42227~^~430~^2.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42230~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42230~^~291~^0.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2005~ -~42230~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42230~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~421~^15.3^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~42230~^~430~^39.5^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42231~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~42231~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42231~^~401~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~421~^0.2^0^^~4~^~CAZN~^^^^^^^^^^~05/01/2011~ -~42231~^~428~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~429~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~430~^9.3^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42235~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~42235~^~291~^0.6^0^^~4~^^^^^^^^^^^~01/01/2007~ -~42235~^~317~^9.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42235~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42235~^~401~^0.0^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~421~^17.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~42235~^~430~^0.1^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~42236~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~42236~^~291~^4.3^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~317~^14.6^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~328~^3.6^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~42236~^~401~^20.0^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~42236~^~421~^16.1^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~430~^1.4^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42237~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~42237~^~291~^11.4^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~42237~^~317~^5.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42237~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42237~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~421~^31.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42240~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~42240~^~291~^5.5^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~317~^12.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42240~^~326~^3.1^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~328~^3.1^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~ -~42240~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~421~^21.4^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~430~^3.1^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42256~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~291~^0.0^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~42256~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42256~^~401~^0.0^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~421~^12.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~42256~^~430~^93.0^1^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42259~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42259~^~291~^10.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~317~^7.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42259~^~401~^0.3^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~421~^16.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~42259~^~430~^4.3^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~42261~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~291~^9.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~317~^41.8^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~326~^1.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~328~^1.9^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~401~^0.2^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2003~ -~42261~^~421~^28.8^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~430~^2.2^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~291~^9.3^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~317~^30.4^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~326~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~328~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~401~^0.5^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42265~^~421~^24.1^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~430~^2.6^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42266~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42266~^~291~^0.5^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~42266~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42266~^~401~^34.1^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~421~^4.9^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42266~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42267~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42267~^~401~^34.1^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~421~^6.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~42267~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42270~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~42270~^~291~^0.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~42270~^~313~^54.8^2^^~1~^~A~^^^2^19.0^90.5^^^^^~03/01/2006~ -~42270~^~317~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42270~^~401~^15.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~430~^0.0^0^^~4~^~BFSN~^~14263~^^^^^^^^^~02/01/2003~ -~42272~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42272~^~291~^6.2^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~317~^16.4^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~42272~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42272~^~401~^0.5^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~421~^12.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42272~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~430~^1.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42278~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42278~^~291~^1.1^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~317~^1.2^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~42278~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42278~^~401~^0.3^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~421~^15.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42278~^~430~^13.4^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42279~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42279~^~291~^2.5^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~313~^39.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~317~^1.2^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~42279~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~401~^3.0^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~421~^14.7^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~42279~^~430~^12.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42280~^~221~^0.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~317~^22.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42280~^~328~^0.1^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~42280~^~401~^0.4^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~421~^76.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~42280~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~42280~^~454~^6.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~42281~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~291~^77.3^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~42281~^~401~^0.0^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~42281~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42283~^~221~^0.0^1^^~7~^^^^^^^^^^^~02/01/2006~ -~42283~^~291~^4.8^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~313~^105.5^0^^~4~^~T~^^^^^^^^^^~02/01/2006~ -~42283~^~317~^8.1^1^^~4~^~BFZN~^^^^^^^^^^~02/01/2006~ -~42283~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42283~^~401~^0.0^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~421~^31.6^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~42283~^~430~^7.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42284~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42284~^~291~^2.3^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~317~^37.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~42284~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42284~^~401~^10.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~421~^22.9^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~42284~^~430~^15.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42285~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42285~^~291~^6.5^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~317~^23.4^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~42285~^~328~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~401~^0.0^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~421~^33.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~428~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~429~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42286~^~221~^0.0^0^^~7~^^^^^^^^^^^~11/01/1993~ -~42286~^~291~^1.4^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~317~^3.2^1^^~1~^^^^^^^^^^^~12/01/1997~ -~42286~^~401~^2.2^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~430~^14.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42289~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42289~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42289~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~42289~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42289~^~401~^0.0^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~421~^0.2^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~42289~^~428~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~42289~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~42289~^~430~^42.2^2^^~1~^~A~^^^1^39.7^44.8^1^^^^~03/01/2007~ -~42289~^~454~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~03/01/2007~ -~42290~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42290~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42290~^~317~^2.1^25^0.1^~1~^~A~^^^^^^^^^^~12/01/1997~ -~42290~^~326~^1.2^0^^~4~^~BFZN~^~01085~^^^^^^^^^~02/01/2009~ -~42290~^~328~^1.2^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42290~^~401~^1.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~421~^16.0^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~42290~^~430~^0.0^0^^~4~^~BFFN~^~01085~^^^^^^^^^~01/01/2003~ -~42291~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42291~^~291~^6.6^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~317~^7.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42291~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42291~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~421~^63.5^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~42291~^~430~^0.6^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~42297~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~291~^11.2^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~317~^32.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~326~^1.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42297~^~328~^1.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42297~^~401~^0.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42297~^~421~^20.3^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~430~^3.6^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42303~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~317~^14.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~42303~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42303~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42303~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~42303~^~430~^1.5^0^^~4~^~BFFN~^~01030~^^^^^^^^^~01/01/2003~ -~42304~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42304~^~291~^1.8^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42304~^~317~^18.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~42304~^~326~^0.0^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~42304~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~42304~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42304~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~42304~^~430~^1.6^0^^~4~^~BFZN~^~01028~^^^^^^^^^~01/01/2003~ -~42307~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~291~^0.0^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~42307~^~328~^0.3^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~42307~^~401~^0.1^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~421~^15.0^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~42307~^~430~^70.9^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2003~ -~42309~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~317~^0.5^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~42309~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~42309~^~401~^0.1^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~421~^6.5^0^^~4~^~BFZN~^~04585~^^^^^^^^^~03/01/2007~ -~42309~^~430~^57.6^0^^~4~^~BFFN~^~42307~^^^^^^^^^~03/01/2003~ -~42316~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42316~^~291~^2.3^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~42316~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~42316~^~401~^0.7^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~421~^5.0^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~42316~^~430~^7.9^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~43004~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43004~^~291~^0.8^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~317~^1.1^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~43004~^~326~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43004~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~43004~^~401~^12.0^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~421~^10.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43004~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43006~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43006~^~291~^0.6^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~43006~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43006~^~401~^12.4^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~421~^3.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43006~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43007~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43007~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43007~^~401~^7.2^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~421~^3.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43007~^~430~^0.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43008~^~291~^1.1^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~317~^3.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43008~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43008~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~43008~^~401~^1.0^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~421~^6.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43008~^~430~^1.8^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43015~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43015~^~291~^0.5^2^^~9~^~MC~^^^1^0.5^0.5^1^^^^~12/01/2007~ -~43015~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43015~^~328~^0.1^0^^~4~^~FLM~^^^^^^^^^^~05/01/2009~ -~43015~^~401~^0.3^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~43015~^~421~^15.6^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43015~^~430~^104.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~454~^0.5^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~43016~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~10/01/2016~ -~43016~^~291~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~43016~^~317~^4.8^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~43016~^~328~^0.0^0^^~4~^~BFSN~^~42230~^^^^^^^^^~10/01/2016~ -~43016~^~401~^0.6^0^^~4~^~FLA~^^^^^^^^^^~10/01/2016~ -~43016~^~421~^14.6^0^^~4~^~BFSN~^~42230~^^^^^^^^^~10/01/2016~ -~43016~^~428~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~429~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~430~^66.1^6^0.4^~1~^~A~^^^1^26.0^98.6^3^64.5^67.6^~2, 3~^~10/01/2016~ -~43017~^~221~^0.0^0^^~7~^^^^^^^^^^^~07/01/2005~ -~43017~^~291~^0.1^0^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~06/01/2005~ -~43017~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43017~^~401~^0.2^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~421~^3.6^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~43017~^~430~^96.7^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43019~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~43019~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43019~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43019~^~401~^8.1^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~421~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~43019~^~430~^39.6^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43020~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~43020~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43020~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43020~^~401~^0.3^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~421~^17.0^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~43020~^~430~^5.4^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43021~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43021~^~291~^0.1^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43021~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43021~^~401~^0.0^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~421~^17.4^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~43021~^~430~^1.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~454~^0.5^2^^~1~^~A~^^^1^0.4^0.5^^^^^~04/01/2007~ -~43026~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43026~^~291~^0.7^0^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~43026~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43026~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43026~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43026~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43027~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~291~^2.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~317~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/1985~ -~43027~^~421~^1.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~430~^1.2^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43028~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43028~^~291~^2.5^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~317~^1.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43028~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43028~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~421~^8.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43028~^~430~^0.0^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43031~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43031~^~291~^4.3^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~317~^2.8^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~43031~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43031~^~401~^1.4^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~421~^33.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43031~^~430~^3.2^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43046~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~291~^3.3^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43046~^~317~^2.6^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43046~^~401~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~421~^5.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43046~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43057~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43057~^~291~^0.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~43057~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43057~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43057~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43057~^~430~^0.0^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43058~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43058~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43058~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43058~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43058~^~430~^0.0^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43059~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~291~^3.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~313~^12.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~317~^4.9^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2015~ -~43059~^~326~^0.1^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~43059~^~328~^0.1^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~43059~^~401~^1.4^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~421~^50.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~430~^7.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43060~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2006~ -~43060~^~291~^2.4^0^^~4~^~BFZN~^~19163~^^^^^^^^^~05/01/2003~ -~43060~^~317~^0.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43060~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43060~^~401~^0.0^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~43060~^~430~^0.0^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43075~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2006~ -~43075~^~291~^0.0^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~43075~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43075~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~43075~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43098~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~291~^1.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43098~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43098~^~401~^2.8^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43098~^~421~^4.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43098~^~430~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43100~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43100~^~291~^3.1^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~317~^16.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1998~ -~43100~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43100~^~401~^1.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~421~^27.6^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43100~^~430~^15.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43109~^~291~^1.7^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~317~^17.2^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~43109~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43109~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43109~^~421~^17.7^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43109~^~430~^2.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43112~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43112~^~291~^4.2^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~317~^1.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43112~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43112~^~401~^1.7^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~421~^36.3^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43112~^~430~^0.4^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43114~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43114~^~291~^3.9^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~317~^27.0^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~43114~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43114~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~421~^177.0^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~430~^3.8^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43125~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43125~^~291~^0.1^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43125~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43125~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~421~^13.5^0^^~4~^~BFSN~^~16029~^^^^^^^^^~04/01/2007~ -~43125~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43128~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43128~^~291~^3.6^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~43128~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43128~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43128~^~421~^71.6^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43130~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~43130~^~291~^3.9^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43130~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43130~^~401~^0.0^0^^~7~^^^^^^^^^^^~01/01/2005~ -~43130~^~421~^84.2^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~43130~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43131~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43131~^~291~^1.1^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~43131~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43131~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43131~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43131~^~421~^105.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~43131~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43132~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43132~^~291~^4.6^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43132~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43132~^~401~^0.0^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~421~^88.4^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~43132~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43134~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43134~^~291~^6.1^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43134~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43134~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43134~^~421~^82.0^0^^~4~^~BFNN~^~16117~^^^^^^^^^~04/01/2007~ -~43134~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43135~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43135~^~291~^3.3^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43135~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43135~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43135~^~421~^2.6^0^^~4~^~BFNN~^~16117~^^^^^^^^^~08/01/2015~ -~43135~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43137~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43137~^~291~^4.6^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~317~^0.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43137~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43137~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43137~^~421~^73.1^0^^~4~^~BFNN~^~16117~^^^^^^^^^~04/01/2007~ -~43137~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43142~^~291~^2.2^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43142~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43142~^~401~^0.0^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~421~^11.6^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2007~ -~43142~^~430~^0.5^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2003~ -~43143~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43143~^~291~^3.1^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~317~^1.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43143~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43143~^~401~^0.7^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~421~^23.5^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~430~^125.9^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~454~^0.3^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43144~^~291~^3.1^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~317~^0.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43144~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43144~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~421~^21.5^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~430~^115.6^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~454~^0.3^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43146~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43146~^~291~^2.5^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43146~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43146~^~401~^0.0^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~421~^11.9^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~ -~43146~^~430~^3.7^0^^~4~^~BFSN~^~11210~^^^^^^^^^~02/01/2003~ -~43154~^~221~^3.3^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~291~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43154~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43154~^~401~^0.0^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~421~^5.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43154~^~430~^0.0^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43155~^~221~^6.4^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~291~^0.0^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~317~^0.2^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2004~ -~43155~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43155~^~401~^0.0^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~421~^5.0^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~43155~^~430~^0.0^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43158~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~43158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43158~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43158~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43205~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43205~^~291~^0.4^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~317~^12.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~43205~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43205~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43205~^~401~^76.9^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~421~^148.4^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~43205~^~430~^90.0^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~43212~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43212~^~291~^10.2^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~317~^7.4^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~43212~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43212~^~401~^1.9^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~421~^134.8^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43212~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43214~^~221~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~291~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~43214~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43214~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~421~^0.4^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~43214~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43215~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~291~^1.1^3^0.2^~6~^~JA~^^^2^0.9^1.4^1^-2.5^4.6^~4~^~12/01/2007~ -~43215~^~317~^2.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43215~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43215~^~401~^0.6^4^0.2^~6~^~JA~^^^2^0.3^0.7^1^-2.5^3.7^~1, 4~^~12/01/2007~ -~43215~^~421~^16.0^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2007~ -~43215~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^~1~^~02/01/2003~ -~43215~^~430~^34.8^2^^~1~^~A~^^^1^20.4^49.2^1^^^^~02/01/2003~ -~43216~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43216~^~291~^0.0^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~317~^0.6^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43216~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43216~^~401~^0.0^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~43216~^~430~^0.0^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43217~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~43217~^~291~^1.5^3^2.7e-02^~1~^~A~^^^1^1.4^1.6^1^1.1^1.8^~2, 3~^~06/01/2008~ -~43217~^~313~^34.9^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43217~^~317~^0.6^6^0.1^~1~^~A~^^^^^^^^^^~08/01/2014~ -~43217~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43217~^~401~^7.0^5^0.5^~1~^~A~^^^1^5.6^7.9^4^5.5^8.4^~2, 3~^~05/01/2011~ -~43217~^~421~^9.9^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~43217~^~429~^0.0^2^^~1~^~A~^^^1^0.0^0.0^^^^^~05/01/2011~ -~43217~^~430~^2.8^3^^~1~^~A~^^^2^2.5^3.1^^^^~2, 3~^~05/01/2011~ -~43217~^~454~^0.8^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43218~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43218~^~291~^9.1^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~317~^17.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43218~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43218~^~401~^8.7^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~421~^30.7^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~43218~^~430~^2.5^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43241~^~291~^8.5^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~317~^17.3^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43241~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43241~^~401~^0.6^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~421~^23.9^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~43241~^~430~^3.8^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43245~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43245~^~291~^9.7^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~317~^17.3^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2003~ -~43245~^~328~^1.8^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~ -~43245~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~421~^28.5^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~43245~^~430~^1.7^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43260~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43260~^~291~^2.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~317~^21.8^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~43260~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43260~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43260~^~401~^138.0^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~421~^266.9^0^^~4~^~BFPN~^~43205~^^^^^^^^^~03/01/2007~ -~43260~^~430~^120.0^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~43261~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43261~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43261~^~317~^6.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43261~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43261~^~401~^0.7^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~421~^16.4^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~43261~^~430~^1.1^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~454~^0.7^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~43268~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~317~^0.5^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~43268~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43268~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~421~^0.0^0^^~4~^~BFNN~^~01070~^^^^^^^^^~03/01/2007~ -~43268~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43269~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~291~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~317~^2.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~43269~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43269~^~401~^1.8^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~421~^12.3^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~43269~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43273~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43273~^~291~^0.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~43273~^~317~^4.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43273~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43273~^~401~^4.0^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~421~^17.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~43273~^~430~^11.0^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43274~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43274~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43274~^~317~^4.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43274~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43274~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43274~^~401~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~421~^12.1^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~ -~43274~^~428~^5.4^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~429~^0.0^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~430~^1.1^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43275~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43275~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43275~^~317~^16.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43275~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43275~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43275~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43275~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43275~^~430~^2.7^0^^~4~^~BFZN~^~01042~^^^^^^^^^~02/01/2003~ -~43276~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43276~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43276~^~317~^2.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43276~^~326~^0.5^0^^~4~^~BFFN~^~01017~^^^^^^^^^~02/01/2009~ -~43276~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43276~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43276~^~421~^27.2^0^^~4~^~BFZN~^~01017~^^^^^^^^^~02/01/2009~ -~43276~^~430~^2.4^0^^~4~^~BFFN~^~01017~^^^^^^^^^~02/01/2009~ -~43278~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43278~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43278~^~317~^15.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43278~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43278~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43278~^~421~^0.0^0^^~4~^~BFFN~^~04651~^^^^^^^^^~03/01/2007~ -~43278~^~430~^2.7^0^^~4~^~BFZN~^~01042~^^^^^^^^^~02/01/2003~ -~43282~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~317~^21.8^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2005~ -~43282~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43282~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43282~^~401~^2.3^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~421~^65.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43282~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~430~^4.2^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~43282~^~454~^9.1^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43283~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43283~^~317~^20.7^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2005~ -~43283~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43283~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43283~^~401~^2.3^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~421~^85.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43283~^~429~^0.0^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43283~^~430~^4.9^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~43283~^~454~^11.9^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43285~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43285~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43285~^~317~^22.9^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43285~^~326~^1.8^0^^~4~^~BFZN~^~01132~^^^^^^^^^~09/01/2010~ -~43285~^~328~^1.8^0^^~1~^~AS~^^^^^^^^^^~09/01/2010~ -~43285~^~401~^0.0^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~421~^255.7^0^^~4~^~BFSN~^~01132~^^^^^^^^^~05/01/2011~ -~43285~^~430~^1.8^0^^~4~^~BFFN~^~01132~^^^^^^^^^~01/01/2003~ -~43287~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~317~^20.1^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2005~ -~43287~^~326~^0.2^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~ -~43287~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43287~^~401~^2.9^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~421~^63.6^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43287~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~430~^4.0^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2005~ -~43287~^~454~^8.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~43297~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~43297~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/1985~ -~43297~^~317~^36.3^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43297~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~43297~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~430~^0.0^0^^~4~^~BFSN~^~10123~^^^^^^^^^~01/01/2003~ -~43299~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43299~^~291~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43299~^~317~^16.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43299~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43299~^~401~^0.0^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~421~^62.5^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~43299~^~430~^4.6^0^^~4~^~BFSN~^~16127~^^^^^^^^^~05/01/2003~ -~43311~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43311~^~291~^2.4^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~317~^0.9^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~43311~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43311~^~401~^5.1^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~421~^9.2^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~43311~^~430~^1.5^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~454~^0.1^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~43312~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43312~^~291~^3.1^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~313~^37.0^10^6.5^~1~^~A~^^^1^23.5^57.1^4^18.9^55.0^~4~^~02/01/2006~ -~43312~^~317~^0.3^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~43312~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43312~^~401~^3.8^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~421~^18.6^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43312~^~430~^18.2^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43325~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~317~^19.5^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43325~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43325~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43325~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43325~^~421~^86.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43325~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43325~^~430~^0.0^0^^~4~^~BFSN~^~10183~^^^^^^^^^~01/01/2003~ -~43325~^~454~^5.8^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43326~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43326~^~317~^19.5^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~43326~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43326~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43326~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~421~^87.2^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43326~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~430~^0.0^0^^~4~^~BFSN~^~10183~^^^^^^^^^~11/01/2006~ -~43326~^~454~^5.9^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43327~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43327~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43327~^~317~^19.5^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~43327~^~326~^0.8^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43327~^~328~^0.8^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43327~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43327~^~421~^85.0^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43327~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43327~^~430~^0.0^0^^~4~^~BFSN~^~10134~^^^^^^^^^~11/01/2006~ -~43327~^~454~^5.7^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~43329~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43329~^~291~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43329~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43329~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43329~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~421~^8.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~43329~^~430~^24.7^0^^~4~^~BFZN~^~04018~^^^^^^^^^~02/01/2003~ -~43331~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43331~^~291~^0.2^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43331~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43331~^~401~^8.8^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~421~^16.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~43331~^~430~^69.1^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43340~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43340~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43340~^~317~^23.9^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43340~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43340~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43340~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43340~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43340~^~430~^2.0^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2003~ -~43344~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/1985~ -~43344~^~291~^1.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~313~^3.3^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~401~^15.0^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~421~^4.2^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~429~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~430~^1.6^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43345~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43345~^~291~^2.2^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~317~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43345~^~401~^2400.0^1^^~8~^^^^^^^^^^^~12/01/2006~ -~43345~^~421~^0.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43345~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43346~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~291~^0.1^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43346~^~313~^77.0^1^^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~43346~^~317~^0.1^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~43346~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43346~^~401~^25.7^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~421~^2.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43346~^~430~^0.1^0^^~4~^~BFSN~^~42270~^^^^^^^^^~02/01/2003~ -~43352~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43352~^~291~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43352~^~317~^8.4^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43352~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43352~^~401~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43352~^~421~^17.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~43352~^~430~^0.1^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~43355~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43355~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43355~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~421~^8.5^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~ -~43355~^~430~^24.7^0^^~4~^~BFZN~^~42138~^^^^^^^^^~03/01/2005~ -~43364~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43364~^~291~^5.3^5^0.5^~1~^~A~^^^1^4.1^6.7^4^3.8^6.6^~2, 3~^~05/01/2005~ -~43364~^~317~^6.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43364~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43364~^~401~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~05/01/2005~ -~43364~^~421~^18.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43364~^~429~^43.7^2^^~1~^~A~^^^1^42.0^45.4^1^^^^~05/01/2005~ -~43364~^~430~^0.7^0^^~4~^~NR~^^^^^^^^^^~07/01/2005~ -~43365~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43365~^~291~^0.8^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43365~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43365~^~401~^27.7^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~421~^7.2^0^^~4~^~BFZN~^~11578~^^^^^^^^^~03/01/2007~ -~43365~^~430~^5.3^0^^~4~^~BFZN~^~11578~^^^^^^^^^~01/01/2004~ -~43366~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43366~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43366~^~317~^26.0^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2005~ -~43366~^~326~^0.1^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~43366~^~328~^0.1^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~ -~43366~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~421~^68.7^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43366~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~43366~^~454~^5.8^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43367~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43367~^~317~^38.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2005~ -~43367~^~326~^0.1^0^^~4~^~BFFN~^~05069~^^^^^^^^^~03/01/2009~ -~43367~^~328~^0.1^0^^~4~^~BFFN~^~05069~^^^^^^^^^~03/01/2009~ -~43367~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~421~^70.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43367~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~43367~^~454~^6.0^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43369~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~291~^0.6^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~317~^0.7^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~328~^1.3^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~43369~^~401~^2.0^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~421~^3.3^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~430~^0.1^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43378~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~317~^62.0^8^3.9^~1~^~A~^^^1^41.5^76.0^7^52.7^71.2^~2, 3~^~02/01/2003~ -~43378~^~326~^1.0^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~43378~^~328~^1.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43378~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~421~^123.2^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2007~ -~43378~^~429~^0.0^8^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~430~^0.1^8^2.7e-02^~1~^~A~^^^1^0.0^0.2^7^-1.3e-02^0.1^~1, 2, 3~^~02/01/2003~ -~43378~^~454~^3.5^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2007~ -~43382~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43382~^~291~^0.1^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~317~^0.1^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43382~^~401~^9.3^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~421~^3.3^0^^~4~^~BFYN~^~09078~^^^^^^^^^~02/01/2007~ -~43382~^~430~^5.1^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43384~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43384~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43384~^~317~^11.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43384~^~328~^0.7^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~ -~43384~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43384~^~421~^44.3^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~43384~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~43384~^~454~^4.8^0^^~4~^~BFNN~^~07007~^^^^^^^^^~12/01/2006~ -~43387~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~43387~^~291~^1.3^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43387~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43387~^~401~^15.5^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~421~^0.3^0^^~4~^~BFSN~^~11569~^^^^^^^^^~03/01/2007~ -~43387~^~430~^287.0^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43390~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~317~^30.3^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2005~ -~43390~^~326~^0.0^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~43390~^~328~^0.0^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~ -~43390~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~421~^69.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43390~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~430~^0.0^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~ -~43390~^~454~^5.9^0^^~4~^~BFNN~^~05009~^^^^^^^^^~12/01/2006~ -~43391~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~317~^43.0^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2004~ -~43391~^~326~^0.1^0^^~4~^~BFFN~^~05013~^^^^^^^^^~03/01/2009~ -~43391~^~328~^0.1^0^^~4~^~BFFN~^~05013~^^^^^^^^^~03/01/2009~ -~43391~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~421~^82.3^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~43391~^~429~^0.0^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~ -~43391~^~430~^0.0^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~ -~43391~^~454~^6.0^0^^~4~^~BFNN~^~05013~^^^^^^^^^~12/01/2006~ -~43392~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43392~^~291~^1.5^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~317~^0.7^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43392~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43392~^~401~^8.0^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~421~^0.0^0^^~4~^~BFSN~^~11026~^^^^^^^^^~03/01/2007~ -~43392~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43393~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43393~^~291~^14.7^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~317~^8.2^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~ -~43393~^~326~^0.0^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~43393~^~328~^0.0^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2013~ -~43393~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43393~^~421~^23.1^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~43393~^~430~^2.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43396~^~221~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43396~^~291~^0.0^0^^~7~^^^^^^^^^^^~01/01/2007~ -~43396~^~317~^4.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43396~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43396~^~401~^4.0^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~421~^17.5^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~43396~^~430~^2.6^0^^~4~^~BFFN~^~43273~^^^^^^^^^~01/01/2003~ -~43398~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43398~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43398~^~317~^12.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43398~^~326~^0.6^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43398~^~328~^0.6^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43398~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43398~^~421~^36.2^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43398~^~430~^2.6^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43401~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~291~^0.5^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~317~^0.9^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43401~^~401~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~421~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43401~^~430~^3.8^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43404~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~291~^0.1^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~313~^70.1^11^10.1^~1~^~A~^^^1^13.3^102.4^10^47.6^92.6^~4~^~03/01/2006~ -~43404~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43404~^~401~^32.0^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~421~^0.4^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43404~^~430~^1.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43405~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43405~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43405~^~317~^12.5^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43405~^~326~^0.5^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43405~^~328~^0.5^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43405~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43405~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43405~^~430~^2.4^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43406~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43406~^~291~^6.5^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~317~^27.6^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43406~^~401~^0.0^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~421~^65.1^0^^~4~^~BFSN~^~18374~^^^^^^^^^~03/01/2007~ -~43406~^~430~^0.0^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~43408~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43408~^~291~^0.1^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~317~^0.4^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43408~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43408~^~401~^33.8^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~421~^2.6^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43408~^~430~^3.4^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43410~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43410~^~291~^4.3^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~317~^7.4^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1998~ -~43410~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43410~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43410~^~421~^46.3^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~43410~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43417~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43417~^~291~^1.8^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~43417~^~317~^2.2^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43417~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43417~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~43417~^~401~^2.5^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~421~^15.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43417~^~430~^3.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43432~^~291~^1.1^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~317~^1.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43432~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43432~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~43432~^~401~^1.9^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~421~^14.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43432~^~430~^0.4^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43441~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43441~^~291~^5.4^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~317~^27.8^0^^~4~^~RK~^^^^^^^^^^~05/01/2005~ -~43441~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43441~^~401~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43441~^~421~^14.6^0^^~4~^~BFZN~^~18069~^^^^^^^^^~03/01/2007~ -~43441~^~430~^1.5^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43447~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43447~^~291~^4.4^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43447~^~317~^6.7^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43447~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43447~^~401~^2.0^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~421~^18.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43447~^~430~^33.6^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43449~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43449~^~291~^5.5^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~317~^4.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43449~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43449~^~401~^3.1^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~421~^30.8^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~430~^0.8^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43450~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~291~^0.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~317~^0.8^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43450~^~401~^21.2^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~421~^15.6^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~43450~^~430~^0.2^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43476~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43476~^~291~^0.2^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~317~^13.0^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43476~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43476~^~401~^2.5^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~421~^48.4^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~43476~^~430~^3.5^0^^~4~^~BFSN~^~16127~^^^^^^^^^~05/01/2003~ -~43479~^~221~^16.1^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43479~^~317~^1.4^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~43479~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43479~^~401~^0.0^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43479~^~430~^0.0^0^^~4~^~T~^^^^^^^^^^~06/01/2003~ -~43483~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43483~^~291~^2.7^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~317~^2.9^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~43483~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43483~^~401~^0.0^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~421~^23.1^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~430~^1.4^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43495~^~221~^0.0^0^^~7~^^^^^^^^^^^~08/01/2011~ -~43495~^~291~^8.0^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~317~^26.5^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~43495~^~401~^120.0^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~421~^22.9^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~430~^1.8^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43497~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~43497~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~43497~^~317~^42.2^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~43497~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43497~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43497~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~43497~^~421~^95.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~43497~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~43506~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~43506~^~291~^0.6^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~317~^2.4^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~326~^0.2^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~328~^0.2^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~401~^0.7^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~421~^29.7^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~430~^1.3^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43507~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43507~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43507~^~317~^12.0^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43507~^~328~^0.9^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~ -~43507~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43507~^~421~^41.2^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~43507~^~430~^0.3^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2002~ -~43507~^~454~^3.6^0^^~4~^~BFNN~^^^^^^^^^^~12/01/2006~ -~43514~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~291~^0.0^3^0.0^~1~^~A~^^^1^0.0^0.0^^^^~2, 3~^~04/01/2005~ -~43514~^~313~^88.9^3^1.6^~1~^~A~^^^1^85.6^90.6^2^81.7^96.1^~2, 3~^~04/01/2005~ -~43514~^~317~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43514~^~401~^10.4^3^0.3^~1~^~A~^^^1^9.7^10.9^2^8.8^11.8^~2, 3~^~12/01/2006~ -~43514~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43514~^~430~^0.0^0^^~4~^~BFSN~^~14429~^^^^^^^^^~02/01/2003~ -~43523~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43523~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~317~^0.8^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~43523~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43523~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~43523~^~401~^11.7^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~421~^4.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43523~^~430~^0.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43528~^~221~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~291~^0.0^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~317~^7.1^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~328~^1.0^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~43528~^~401~^11.9^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~421~^32.4^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~43528~^~430~^7.9^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43529~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43529~^~291~^3.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~317~^11.6^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43529~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43529~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43529~^~401~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43529~^~421~^10.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43529~^~430~^1.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43535~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43535~^~291~^0.3^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~313~^61.6^3^25.1^~1~^~A~^^^1^14.3^100.0^2^-46.5^169.7^~4~^~08/01/2004~ -~43535~^~317~^0.1^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~43535~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43535~^~401~^32.1^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~421~^1.9^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43535~^~430~^0.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43536~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~43536~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43536~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43536~^~401~^11.7^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~421~^3.9^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~43536~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43537~^~291~^0.4^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~43537~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43537~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~43537~^~401~^12.4^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~421~^5.5^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43537~^~430~^13.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43539~^~221~^0.0^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~291~^0.5^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~317~^0.9^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~43539~^~326~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43539~^~328~^0.0^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43539~^~401~^13.9^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~421~^4.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43539~^~430~^0.1^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~43541~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~291~^0.9^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~317~^2.1^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~326~^0.3^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~ -~43541~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43541~^~401~^0.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~421~^34.7^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~43541~^~430~^1.5^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43543~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43543~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43543~^~317~^1.8^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43543~^~325~^1.1^0^^~4~^~S~^^^^^^^^^^~02/01/2009~ -~43543~^~328~^1.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43543~^~401~^0.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~43543~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43544~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/1989~ -~43544~^~291~^2.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~317~^16.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~328~^0.0^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~401~^250.0^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~43544~^~421~^6.6^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~430~^0.3^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43546~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43546~^~291~^1.6^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~317~^1.1^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~43546~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43546~^~401~^21.9^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~421~^4.1^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43546~^~430~^0.5^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~43550~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43550~^~291~^1.0^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~317~^0.6^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2005~ -~43550~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43550~^~401~^12.3^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~421~^2.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43550~^~430~^0.1^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2007~ -~43566~^~291~^5.7^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~317~^15.7^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~43566~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43566~^~401~^0.2^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~421~^23.4^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~43566~^~430~^0.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43570~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~43570~^~291~^4.2^3^3.3e-02^~1~^~A~^^^1^4.2^4.3^2^4.0^4.3^~2, 3~^~05/01/2012~ -~43570~^~317~^7.3^3^0.4^~1~^~A~^^^1^6.8^8.2^2^5.3^9.2^~2, 3~^~05/01/2012~ -~43570~^~325~^0.0^6^0.0^~1~^~A~^^^1^0.0^0.0^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~326~^4.6^6^8.2e-02^~1~^~A~^^^1^4.3^4.8^5^4.3^4.7^~2, 3~^~05/01/2012~ -~43570~^~328~^4.6^6^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~43570~^~401~^0.0^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~43570~^~421~^13.4^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~43570~^~430~^3.0^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~43572~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~291~^14.2^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~317~^8.6^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43572~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43572~^~401~^0.0^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43572~^~421~^20.2^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43572~^~430~^15.7^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43585~^~221~^0.0^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43585~^~291~^2.0^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~317~^0.4^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~ -~43585~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43585~^~401~^12.7^0^^~1~^^^^^^^^^^^~05/01/2005~ -~43585~^~421~^1.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43585~^~430~^5.1^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43589~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43589~^~291~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43589~^~317~^12.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43589~^~326~^0.1^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~ -~43589~^~328~^0.1^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43589~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43589~^~421~^15.4^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43589~^~430~^0.5^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43595~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~09/01/1990~ -~43595~^~291~^2.1^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43595~^~317~^15.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/1998~ -~43595~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43595~^~401~^0.0^0^^~9~^~MC~^^^^^^^^^^~09/01/1990~ -~43595~^~421~^34.3^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43595~^~430~^13.8^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43597~^~221~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43597~^~291~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43597~^~317~^15.7^0^^~4~^~BFNN~^^^^^^^^^^~12/01/1997~ -~43597~^~326~^0.3^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~ -~43597~^~328~^0.3^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~43597~^~401~^0.0^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43597~^~421~^18.4^0^^~4~^~BFNN~^~01026~^^^^^^^^^~02/01/2009~ -~43597~^~430~^1.8^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~43598~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~291~^0.0^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~317~^1.6^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~ -~43598~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~43598~^~401~^0.0^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~421~^0.7^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~43598~^~430~^24.7^0^^~4~^~BFZN~^~04026~^^^^^^^^^~03/01/2003~ -~44005~^~221~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~291~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~317~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~ -~44005~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~44005~^~401~^0.0^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~421~^0.2^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44005~^~430~^21.0^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44018~^~221~^0.0^0^^~7~^^^^^^^^^^^~09/01/2004~ -~44018~^~291~^0.1^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~317~^0.5^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~44018~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44018~^~401~^0.0^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~421~^0.0^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~44018~^~430~^0.0^0^^~4~^~BFSN~^~19351~^^^^^^^^^~09/01/2004~ -~44061~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~291~^6.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~317~^3.9^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1997~ -~44061~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44061~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~421~^3.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44061~^~430~^0.4^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44074~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~291~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44074~^~313~^40.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~317~^0.1^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44074~^~401~^33.8^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~421~^6.5^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~430~^16.9^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44110~^~221~^0.0^0^^~7~^^^^^^^^^^^~06/01/2005~ -~44110~^~291~^0.8^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~317~^1.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~44110~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~44110~^~401~^0.0^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~421~^6.9^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44110~^~430~^0.2^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44158~^~221~^0.0^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~291~^2.6^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~44158~^~313~^4.4^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~44158~^~317~^0.4^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~44158~^~401~^0.7^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~421~^3.8^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44158~^~430~^3.9^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44203~^~221~^0.0^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~291~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~313~^16.9^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~317~^0.5^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~44203~^~401~^4.2^2^^~8~^~LC~^^^1^0.0^8.5^1^^^^~02/01/2003~ -~44203~^~421~^3.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44203~^~430~^0.0^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44258~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~291~^10.1^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~44258~^~317~^5.1^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44258~^~401~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~421~^3.3^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44258~^~430~^0.5^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44259~^~221~^0.0^0^^~7~^^^^^^^^^^^~04/01/2005~ -~44259~^~291~^0.9^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~44259~^~317~^0.9^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~44259~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44259~^~401~^0.0^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~421~^0.0^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44259~^~430~^1.1^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44260~^~221~^0.0^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~291~^0.8^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~317~^0.8^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~44260~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~44260~^~401~^0.0^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~44260~^~421~^1.1^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~44260~^~430~^1.7^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~48052~^~221~^0.0^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~48052~^~291~^0.6^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~317~^39.7^0^^~4~^~BFZN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~48052~^~401~^0.0^0^^~4~^~BFZN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~430~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~80200~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~80200~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~80200~^~317~^14.1^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~80200~^~326~^0.2^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~80200~^~328~^0.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~80200~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~80200~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~80200~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~83110~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~83110~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~83110~^~317~^73.4^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~83110~^~326~^25.2^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~83110~^~328~^25.2^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~83110~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~83110~^~421~^101.6^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~83110~^~430~^7.8^0^^~4~^~BFSN~^~15046~^^^^^^^^^~02/01/2003~ -~90240~^~221~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~291~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~317~^21.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~326~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~328~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~401~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~421~^110.7^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~428~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~429~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~430~^0.0^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90480~^~221~^0.0^0^^~7~^^^^^^^^^^^~10/01/2006~ -~90480~^~291~^0.0^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90480~^~317~^0.7^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~90480~^~328~^0.0^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~90480~^~401~^0.0^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~430~^0.0^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90560~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~90560~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~90560~^~317~^27.4^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~90560~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~90560~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~90560~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~90560~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~90560~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~93600~^~221~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~93600~^~291~^0.0^0^^~7~^^^^^^^^^^^~03/01/2009~ -~93600~^~317~^16.8^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~ -~93600~^~326~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~93600~^~328~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~93600~^~401~^0.0^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~93600~^~421~^65.0^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~93600~^~430~^0.1^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~01001~^~203~^0.85^16^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~204~^81.11^580^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01001~^~207~^2.11^35^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~255~^16.17^7^0.07^~1~^~A~^^^2^15.80^16.61^2^15.84^16.49^~2 3~^~11/01/2002~ -~01001~^~269~^0.06^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~01001~^~303~^0.02^18^0.01^~1~^~A~^^^7^0.00^0.15^7^-8.0e-03^0.04^~2, 3~^~03/01/2003~ -~01001~^~309~^0.09^18^0.01^~1~^~A~^^^7^0.05^0.26^5^0.05^0.11^~2, 3~^~03/01/2003~ -~01001~^~323~^2.32^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~341~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~342~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~343~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~344~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~345~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~346~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~347~^0.00^1^^~1~^^^^^^^^^^^~08/01/2010~ -~01001~^~418~^0.17^4^^~1~^^^^1^0.13^0.22^^^^~2, 3~^~03/01/2003~ -~01001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~01002~^~203~^0.49^9^8.0e-03^~1~^~A~^^^1^0.45^0.57^2^0.45^0.52^~2, 3~^~02/01/2015~ -~01002~^~204~^78.30^9^0.22^~1~^~A~^^^1^76.85^80.41^5^77.70^78.88^~2, 3~^~02/01/2015~ -~01002~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01002~^~207~^1.62^9^0.02^~1~^~A~^^^1^1.47^1.75^6^1.55^1.68^~2, 3~^~02/01/2015~ -~01002~^~255~^16.72^9^0.05^~1~^~A~^^^1^16.36^17.06^2^16.46^16.97^~2, 3~^~02/01/2015~ -~01002~^~269~^0.06^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01002~^~303~^0.05^8^3.0e-03^~1~^~A~^^^1^0.04^0.06^5^0.03^0.05^~1, 2, 3~^~02/01/2015~ -~01002~^~309~^0.05^9^2.0e-03^~1~^~A~^^^1^0.04^0.06^6^0.04^0.05^~2, 3~^~11/01/1976~ -~01002~^~323~^1.37^6^0.10^~1~^~A~^^^1^1.03^1.73^2^0.96^1.77^~2, 3~^~02/01/2015~ -~01002~^~341~^0.07^6^8.0e-03^~1~^~A~^^^1^0.04^0.13^2^0.04^0.10^~2, 3~^~02/01/2015~ -~01002~^~342~^0.08^6^0.02^~1~^~A~^^^1^0.00^0.18^3^-0.01^0.16^~1, 2, 3~^~02/01/2015~ -~01002~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~344~^0.12^6^0.01^~1~^~A~^^^1^0.07^0.16^3^0.07^0.16^~2, 3~^~02/01/2015~ -~01002~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~418~^0.07^6^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~01003~^~203~^0.28^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~204~^99.48^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~205~^0.00^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~207~^0.00^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~255~^0.24^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01003~^~303~^0.00^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~309~^0.01^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~323~^2.80^0^^~4~^^^^^^^^^^^ -~01003~^~418~^0.01^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~01004~^~203~^21.40^19^0.33^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~204~^28.74^20^0.39^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~205~^2.34^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01004~^~207~^5.11^15^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~255~^42.41^29^0.64^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~269~^0.50^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01004~^~303~^0.31^4^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~309~^2.66^4^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~323~^0.25^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01004~^~418~^1.22^22^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01005~^~203~^23.24^14^0.60^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~204~^29.68^16^0.31^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~205~^2.79^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01005~^~207~^3.18^14^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~255~^41.11^26^0.25^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~269~^0.51^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01005~^~303~^0.43^3^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~309~^2.60^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01005~^~418~^1.26^7^0.14^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01006~^~203~^20.75^7^0.21^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~204~^27.68^4^1.84^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~205~^0.45^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01006~^~207~^2.70^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~255~^48.42^9^1.29^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~269~^0.45^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01006~^~303~^0.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~309~^2.38^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~323~^0.24^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01006~^~418~^1.65^12^0.15^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01007~^~203~^19.80^12^0.36^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~204~^24.26^13^0.60^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~205~^0.46^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01007~^~207~^3.68^8^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~255~^51.80^14^0.49^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~269~^0.46^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01007~^~303~^0.33^5^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~309~^2.38^4^0.29^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~323~^0.21^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01007~^~418~^1.30^17^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01008~^~203~^25.18^4^0.18^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~204~^29.20^4^1.38^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~205~^3.06^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01008~^~207~^3.28^4^0.15^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~255~^39.28^4^0.55^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~303~^0.64^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~309~^2.94^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~418~^0.27^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01009~^~203~^22.87^39^0.13^~1~^~A~^^^2^22.54^24.25^21^22.59^23.14^~2, 3~^~01/01/2017~ -~01009~^~204~^33.31^39^0.15^~1~^~A~^^^2^32.95^33.82^17^32.97^33.63^~2, 3~^~06/01/2015~ -~01009~^~205~^3.37^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01009~^~207~^3.71^39^0.02^~1~^~A~^^^2^3.66^3.73^18^3.64^3.76^~2, 3~^~01/01/2017~ -~01009~^~210~^0.00^4^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2014~ -~01009~^~211~^0.26^5^^~1~^~A~^^^2^0.00^0.30^^^^~2, 3~^~06/01/2015~ -~01009~^~212~^0.00^4^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2014~ -~01009~^~213~^0.12^5^^~1~^~A~^^^2^0.10^0.18^^^^~2, 3~^~06/01/2015~ -~01009~^~214~^0.00^4^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2014~ -~01009~^~255~^36.75^108^0.17^~1~^^^^^^^^^^^~01/01/2017~ -~01009~^~269~^0.48^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01009~^~287~^0.10^4^^~1~^~A~^^^^0.07^0.11^^^^^~06/01/2015~ -~01009~^~303~^0.14^39^6.0e-03^~1~^~A~^^^2^0.13^0.16^19^0.12^0.15^~2, 3~^~06/01/2015~ -~01009~^~309~^3.64^39^0.04^~1~^~A~^^^2^3.61^3.74^18^3.55^3.71^~2, 3~^~01/01/2017~ -~01009~^~323~^0.71^13^1.0e-03^~1~^~A~^^^2^0.65^0.78^8^0.70^0.70^~2, 3~^~06/01/2015~ -~01009~^~341~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2014~ -~01009~^~342~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.06^8^4.0e-03^6.0e-03^~2, 3~^~06/01/2015~ -~01009~^~343~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2009~ -~01009~^~344~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2014~ -~01009~^~345~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2014~ -~01009~^~346~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2014~ -~01009~^~347~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2014~ -~01009~^~418~^1.10^28^0.05^~1~^~A~^^^2^0.88^1.37^16^0.99^1.21^~2, 3~^~06/01/2015~ -~01009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01010~^~203~^23.37^12^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~204~^30.60^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~205~^4.78^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01010~^~207~^3.60^3^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~255~^37.65^20^0.75^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~303~^0.21^4^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~309~^2.79^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~418~^0.83^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01011~^~203~^23.76^20^0.43^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~204~^32.11^32^0.35^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~205~^2.57^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01011~^~207~^3.36^16^0.16^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~255~^38.20^28^0.32^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~269~^0.52^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01011~^~303~^0.76^4^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~309~^3.07^4^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~323~^0.28^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01011~^~418~^0.83^7^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01012~^~203~^11.12^3^0.40^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~204~^4.30^3^0.02^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~205~^3.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~207~^1.41^3^0.03^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~210~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~211~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~212~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~213~^2.67^3^0.52^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~214~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~255~^79.79^3^0.24^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~269~^2.67^3^0.52^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~287~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~303~^0.07^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~309~^0.40^3^0.01^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~323~^0.08^3^3.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~341~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~342~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~344~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01012~^~418~^0.43^3^0.04^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01013~^~203~^10.69^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~204~^3.85^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~205~^4.61^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~207~^1.20^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~255~^79.64^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~269~^2.38^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~01013~^~303~^0.16^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~309~^0.33^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~323~^0.04^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~418~^0.53^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01014~^~203~^10.34^3^0.60^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~204~^0.29^3^0.06^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~205~^6.66^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~207~^1.71^3^0.12^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~210~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~211~^0.29^3^0.03^~1~^~A~^^^1^^^^^^^~06/01/2013~ -~01014~^~212~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~213~^1.56^3^0.42^~1~^~A~^^^1^^^^^^^~06/01/2013~ -~01014~^~214~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~255~^81.01^3^0.59^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~269~^1.85^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01014~^~303~^0.15^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~309~^0.47^3^0.03^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~323~^0.01^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~341~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~342~^0.01^3^7.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~344~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~418~^0.46^3^0.07^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01015~^~203~^10.45^15^0.29^~1~^~A~^^^1^8.55^13.27^5^9.71^11.18^~2, 3~^~05/01/2014~ -~01015~^~204~^2.27^15^0.05^~1~^~A~^^^1^1.87^2.72^8^2.14^2.39^~2, 3~^~05/01/2014~ -~01015~^~205~^4.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~207~^1.27^15^0.02^~1~^~A~^^^1^1.06^1.57^6^1.20^1.33^~2, 3~^~05/01/2014~ -~01015~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~01015~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~213~^3.87^2^^~1~^~A~^^^1^3.23^4.74^^^^^~05/01/2014~ -~01015~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~255~^81.24^15^0.12^~1~^~A~^^^1^80.24^81.91^6^80.92^81.56^~2, 3~^~05/01/2014~ -~01015~^~269~^4.00^2^^~1~^~A~^^^1^3.39^4.81^^^^^~05/01/2014~ -~01015~^~287~^0.12^2^^~1~^~A~^^^1^0.07^0.16^^^^~1~^~05/01/2014~ -~01015~^~303~^0.13^15^8.0e-03^~1~^~A~^^^1^0.10^0.21^6^0.11^0.15^~2, 3~^~05/01/2014~ -~01015~^~309~^0.51^15^0.02^~1~^~A~^^^1^0.36^1.19^6^0.45^0.56^~2, 3~^~05/01/2014~ -~01015~^~323~^0.08^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~05/01/2014~ -~01015~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~01015~^~418~^0.47^8^0.02^~1~^~A~^^^1^0.30^0.59^1^0.15^0.79^~2, 3~^~05/01/2014~ -~01015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01016~^~203~^12.39^8^0.45^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~204~^1.02^5^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~205~^2.72^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01016~^~207~^1.39^7^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~255~^82.48^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~269~^2.72^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01016~^~303~^0.14^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~309~^0.38^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~323~^0.01^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01016~^~418~^0.63^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01017~^~203~^6.15^11^0.08^~1~^~A~^^^1^5.04^7.15^9^5.97^6.33^~2, 3~^~02/01/2015~ -~01017~^~204~^34.44^11^0.26^~1~^~A~^^^1^33.05^36.49^5^33.77^35.11^~2, 3~^~02/01/2015~ -~01017~^~205~^5.52^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~207~^1.27^11^0.03^~1~^~A~^^^1^1.02^1.52^9^1.18^1.34^~2, 3~^~02/01/2015~ -~01017~^~209~^0.35^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01017~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~213~^3.76^4^0.10^~1~^~A~^^^1^3.20^4.20^1^2.65^4.85^~2, 3~^~02/01/2015~ -~01017~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~255~^52.62^11^0.42^~1~^~A~^^^1^49.67^54.61^5^51.52^53.72^~2, 3~^~02/01/2015~ -~01017~^~269~^3.76^4^0.10^~1~^~A~^^^1^3.20^4.20^1^2.65^4.85^~2, 3~^~02/01/2015~ -~01017~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~303~^0.11^11^7.0e-03^~1~^~A~^^^1^0.10^0.17^4^0.08^0.12^~1, 2, 3~^~02/01/2015~ -~01017~^~309~^0.50^12^0.01^~1~^~A~^^^1^0.36^0.66^10^0.46^0.53^~2, 3~^~02/01/2015~ -~01017~^~323~^0.86^6^0.07^~1~^~A~^^^1^0.66^1.16^3^0.61^1.09^~2, 3~^~02/01/2015~ -~01017~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~342~^0.41^6^0.04^~1~^~A~^^^1^0.34^0.54^4^0.28^0.53^~2, 3~^~02/01/2015~ -~01017~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~344~^0.04^6^8.0e-03^~1~^~A~^^^1^0.00^0.07^2^0.01^0.06^~1, 2, 3~^~02/01/2015~ -~01017~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~418~^0.22^6^0.02^~1~^~A~^^^1^0.10^0.34^4^0.14^0.29^~1, 2, 3~^~02/01/2015~ -~01017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01018~^~203~^24.99^15^0.33^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~204~^28.57^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01018~^~205~^1.43^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01018~^~207~^4.22^12^0.19^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~255~^41.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01018~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01018~^~303~^0.44^4^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~309~^3.75^4^0.54^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~323~^0.24^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01018~^~418~^1.54^15^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01019~^~203~^14.21^9^0.51^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~204~^21.49^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01019~^~205~^3.88^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01019~^~207~^5.20^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~255~^55.22^23^1.12^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01019~^~303~^0.65^4^0.14^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~309~^2.88^4^0.20^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~323~^0.18^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01019~^~418~^1.69^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01020~^~203~^25.60^16^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~204~^31.14^17^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~205~^1.55^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01020~^~207~^3.79^17^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~255~^37.92^17^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~269~^1.55^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01020~^~303~^0.23^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~309~^3.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~323~^0.27^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01020~^~418~^1.68^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01021~^~203~^9.65^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~204~^29.51^3^0.26^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~205~^42.65^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01021~^~207~^4.75^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~255~^13.44^8^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~303~^0.52^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~309~^1.14^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~418~^2.42^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~203~^24.94^6^0.19^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~204~^27.44^13^0.56^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~205~^2.22^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01022~^~207~^3.94^7^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~255~^41.46^20^0.37^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~269~^2.22^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01022~^~303~^0.24^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~309~^3.90^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~323~^0.24^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01022~^~418~^1.54^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01023~^~203~^29.81^7^0.29^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~204~^32.34^5^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~205~^0.36^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01023~^~207~^4.30^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~255~^33.19^12^0.59^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~269~^0.36^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01023~^~303~^0.17^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01023~^~309~^3.90^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01023~^~323~^0.28^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01023~^~418~^1.60^12^0.55^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01024~^~203~^20.05^4^0.48^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~204~^27.25^6^0.31^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~205~^0.49^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01024~^~207~^3.79^4^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~255~^48.42^26^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~269~^0.49^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01024~^~303~^0.13^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~309~^2.10^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~323~^0.23^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01024~^~418~^1.04^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01025~^~203~^24.48^4^0.55^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~204~^30.28^10^0.36^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~205~^0.68^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01025~^~207~^3.55^4^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~255~^41.01^10^0.76^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~269~^0.50^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01025~^~303~^0.72^4^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~309~^3.00^4^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01025~^~418~^0.83^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01026~^~203~^22.17^6^0.18^~1~^~A~^^^1^21.41^22.66^5^21.70^22.63^~2, 3~^~03/01/2003~ -~01026~^~204~^22.14^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01026~^~205~^2.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01026~^~207~^3.28^6^0.03^~1~^~A~^^^1^3.18^3.36^5^3.20^3.35^~2, 3~^~03/01/2003~ -~01026~^~210~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~211~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~212~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~213~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~214~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~255~^50.01^6^0.11^~1~^~A~^^^1^49.75^50.52^5^49.70^50.31^~2, 3~^~03/01/2003~ -~01026~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01026~^~287~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01026~^~303~^0.44^6^0.08^~1~^~A~^^^1^0.22^0.77^5^0.22^0.65^~2, 3~^~03/01/2003~ -~01026~^~309~^2.92^6^0.07^~1~^~A~^^^1^2.59^3.11^5^2.73^3.11^~2, 3~^~03/01/2003~ -~01026~^~323~^0.19^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01026~^~418~^2.28^6^0.06^~1~^~A~^^^1^2.01^2.47^5^2.11^2.44^~2, 3~^~03/01/2003~ -~01026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01027~^~203~^21.60^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~204~^24.64^4^1.38^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~205~^2.47^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01027~^~207~^2.91^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~255~^48.38^18^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~269~^1.01^0^^~4~^~BFNN~^~01026~^^^^^^^^^~01/01/2003~ -~01027~^~303~^0.20^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~309~^2.46^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~323~^0.21^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01027~^~418~^0.73^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01028~^~203~^24.26^0^^~1~^^^^^^^^^^^~07/01/2017~ -~01028~^~204~^15.92^10^0.66^~1~^^^^^^^^^^^~07/01/2017~ -~01028~^~205~^2.77^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01028~^~207~^3.27^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~255~^53.78^10^0.87^~1~^^^^^^^^^^^~07/01/2017~ -~01028~^~269~^1.13^0^^~4~^~BFNN~^~01026~^^^^^^^^^~07/01/2017~ -~01028~^~303~^0.22^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~309~^2.76^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~323~^0.14^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~01028~^~418~^0.82^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01029~^~203~^23.75^35^0.18^~1~^~A~^^^2^23.64^23.82^17^23.36^24.13^~2, 3~^~06/01/2015~ -~01029~^~204~^19.78^35^0.16^~1~^~A~^^^2^19.42^20.02^17^19.43^20.13^~2, 3~^~06/01/2015~ -~01029~^~205~^5.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01029~^~207~^3.83^35^0.04^~1~^~A~^^^2^3.77^3.90^18^3.73^3.92^~2, 3~^~06/01/2015~ -~01029~^~210~^0.00^3^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2014~ -~01029~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~06/01/2015~ -~01029~^~212~^0.00^3^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2014~ -~01029~^~213~^1.12^3^^~1~^~A~^^^^0.18^1.60^^^^^~06/01/2015~ -~01029~^~214~^0.00^3^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2014~ -~01029~^~255~^47.07^35^0.20^~1~^~A~^^^2^44.92^50.31^17^46.64^47.48^~2, 3~^~06/01/2015~ -~01029~^~269~^1.90^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01029~^~287~^0.78^3^^~1~^~A~^^^^0.73^1.03^^^^^~06/01/2015~ -~01029~^~303~^0.22^35^0.01^~1~^~A~^^^2^0.20^0.23^17^0.18^0.24^~2, 3~^~06/01/2015~ -~01029~^~309~^3.62^35^0.03^~1~^~A~^^^2^3.62^3.63^17^3.54^3.70^~2, 3~^~06/01/2015~ -~01029~^~323~^0.50^9^0.01^~1~^~A~^^^^0.44^0.59^^^^^~06/01/2015~ -~01029~^~341~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~342~^0.03^9^0.01^~1~^~A~^^^^0.00^0.25^^^^^~06/01/2015~ -~01029~^~343~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~344~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~345~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~346~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~347~^0.00^9^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2003~ -~01029~^~418~^1.68^19^0.12^~1~^~A~^^^2^1.35^2.19^8^1.40^1.96^~2, 3~^~06/01/2015~ -~01029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01030~^~203~^23.41^14^0.32^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~204~^30.04^17^0.49^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~205~^1.12^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01030~^~207~^3.66^10^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~255~^41.77^14^0.50^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~269~^1.12^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01030~^~303~^0.41^5^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~309~^2.81^4^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01030~^~418~^1.47^19^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01031~^~203~^9.15^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~204~^22.78^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~205~^3.59^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~207~^1.37^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~209~^0.50^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~210~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~211~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~212~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~213~^3.19^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~255~^63.11^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~269~^3.19^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~303~^0.13^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~309~^0.82^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~323~^0.40^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~342~^0.03^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~344~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~418~^0.30^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01032~^~203~^28.42^11^1.94^~1~^~A~^^^1^11.04^35.41^5^23.43^33.40^~2, 3~^~05/01/2014~ -~01032~^~204~^27.84^11^1.13^~1~^~A~^^^1^22.30^35.19^5^24.97^30.71^~2, 3~^~05/01/2014~ -~01032~^~205~^13.91^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~207~^7.18^11^0.21^~1~^~A~^^^1^6.63^8.91^5^6.62^7.73^~2, 3~^~05/01/2014~ -~01032~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~255~^22.65^11^0.45^~1~^~A~^^^1^20.24^25.07^5^21.48^23.80^~2, 3~^~05/01/2014~ -~01032~^~269~^0.07^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~01032~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~01032~^~303~^0.49^11^0.07^~1~^~A~^^^1^0.22^1.10^5^0.30^0.68^~2, 3~^~05/01/2014~ -~01032~^~309~^4.20^11^0.30^~1~^~A~^^^1^1.62^5.39^5^3.41^4.98^~2, 3~^~05/01/2014~ -~01032~^~323~^0.53^5^0.03^~1~^~A~^^^1^0.35^0.68^2^0.41^0.64^~2, 3~^~05/01/2014~ -~01032~^~341~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^2^-1.0e-03^1.0e-03^~1, 2, 3~^~05/01/2014~ -~01032~^~342~^0.01^5^0.01^~1~^~A~^^^1^0.00^0.05^1^-0.11^0.13^~1, 2, 3~^~05/01/2014~ -~01032~^~343~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~344~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~346~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~418~^1.40^5^0.16^~1~^~A~^^^1^1.10^1.80^3^0.87^1.92^~2, 3~^~05/01/2014~ -~01032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01033~^~203~^35.75^13^0.79^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~204~^25.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01033~^~205~^3.22^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01033~^~207~^6.04^8^0.31^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~255~^30.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01033~^~269~^0.11^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01033~^~303~^0.82^4^0.19^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~309~^2.75^4^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~323~^0.22^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~ -~01033~^~418~^1.20^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01034~^~203~^23.78^9^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~204~^28.20^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~205~^0.57^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01034~^~207~^2.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~255~^45.45^13^0.35^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~269~^0.57^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01034~^~303~^0.43^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~309~^2.60^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~323~^0.24^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01034~^~418~^1.50^11^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01035~^~203~^25.58^16^0.34^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~204~^26.62^24^0.34^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~205~^2.14^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01035~^~207~^4.71^14^0.15^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~255~^40.95^21^0.66^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~269~^0.56^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01035~^~303~^0.52^5^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~309~^3.23^5^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~323~^0.23^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01035~^~418~^1.46^8^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01036~^~203~^7.54^11^0.37^~1~^~A~^^^1^5.23^10.85^5^6.58^8.49^~2, 3~^~01/01/2017~ -~01036~^~204~^10.18^11^0.20^~1~^~A~^^^1^8.20^12.62^5^9.65^10.70^~2, 3~^~01/01/2017~ -~01036~^~205~^7.27^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~207~^1.32^11^0.05^~1~^~A~^^^1^1.16^1.77^5^1.16^1.46^~2, 3~^~01/01/2017~ -~01036~^~255~^73.69^11^0.18^~1~^~A~^^^1^72.09^75.06^5^73.21^74.16^~2, 3~^~01/01/2017~ -~01036~^~269~^0.27^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01036~^~303~^0.13^11^5.0e-03^~1~^~A~^^^1^0.10^0.15^5^0.12^0.14^~1, 2, 3~^~01/01/2017~ -~01036~^~309~^0.53^11^0.12^~1~^~A~^^^1^0.13^1.44^5^0.19^0.86^~2, 3~^~01/01/2017~ -~01036~^~323~^0.11^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01036~^~418~^0.85^7^0.06^~1~^~A~^^^1^0.65^0.97^3^0.63^1.06^~2, 3~^~01/01/2017~ -~01036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01037~^~203~^11.39^9^0.76^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~204~^7.91^12^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~205~^5.14^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01037~^~207~^1.15^7^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~255~^74.41^12^0.89^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~269~^0.31^0^^~4~^~BFNN~^~01009~^^^^^^^^^~01/01/2003~ -~01037~^~303~^0.44^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~309~^1.34^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~323~^0.07^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01037~^~418~^0.29^5^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01038~^~203~^31.80^11^1.40^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~204~^26.94^7^0.96^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~205~^3.63^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01038~^~207~^6.72^8^0.67^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~255~^30.91^47^0.41^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~269~^0.73^0^^~4~^~BFNN~^~01009~^^^^^^^^^~12/01/2002~ -~01038~^~303~^0.77^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~309~^2.58^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~323~^0.23^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~ -~01038~^~418~^1.12^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01039~^~203~^21.54^3^0.28^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~204~^30.64^8^0.92^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01039~^~207~^6.44^4^0.19^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~255~^39.38^15^0.70^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~303~^0.56^4^0.19^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~309~^2.08^4^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~418~^0.64^9^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~203~^26.96^12^0.23^~1~^~A~^^^1^25.70^28.30^6^26.37^27.54^~2, 3~^~02/01/2015~ -~01040~^~204~^30.99^12^0.23^~1~^~A~^^^1^29.65^32.10^6^30.39^31.58^~2, 3~^~02/01/2015~ -~01040~^~205~^1.44^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~207~^2.97^12^0.04^~1~^~A~^^^1^2.81^3.18^6^2.87^3.07^~2, 3~^~02/01/2015~ -~01040~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~255~^37.63^12^0.13^~1~^~A~^^^1^36.80^38.20^7^37.31^37.95^~2, 3~^~02/01/2015~ -~01040~^~269~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~02/01/2015~ -~01040~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~303~^0.13^12^4.0e-03^~1~^~A~^^^1^0.10^0.19^8^0.12^0.14^~2, 3~^~02/01/2015~ -~01040~^~309~^4.37^12^0.03^~1~^~A~^^^1^4.17^4.58^8^4.28^4.45^~2, 3~^~02/01/2015~ -~01040~^~323~^0.60^6^0.06^~1~^~A~^^^1^0.35^0.75^2^0.31^0.87^~2, 3~^~02/01/2015~ -~01040~^~341~^0.02^6^0.02^~1~^~A~^^^1^0.00^0.12^2^-0.07^0.12^~1, 2, 3~^~02/01/2015~ -~01040~^~342~^0.07^6^0.02^~1~^~A~^^^1^0.00^0.11^2^-5.0e-03^0.15^~1, 2, 3~^~02/01/2015~ -~01040~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~344~^0.13^6^0.01^~1~^~A~^^^1^0.10^0.18^3^0.09^0.15^~2, 3~^~02/01/2015~ -~01040~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~01040~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~01040~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~01040~^~418~^3.06^6^0.25^~1~^~A~^^^1^2.30^3.90^4^2.33^3.78^~2, 3~^~02/01/2015~ -~01040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01041~^~203~^24.41^4^0.82^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~204~^25.98^15^1.01^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~205~^1.88^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01041~^~207~^4.87^10^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~255~^42.86^18^1.00^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~303~^0.23^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~309~^3.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~418~^2.10^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~203~^18.13^13^0.12^~1~^~A~^^^1^16.30^21.50^9^17.84^18.42^~2, 3~^~05/01/2011~ -~01042~^~204~^30.71^13^0.05^~1~^~A~^^^1^29.80^31.20^9^30.58^30.83^~2, 3~^~07/01/2012~ -~01042~^~205~^4.78^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~01042~^~207~^6.78^13^0.12^~1~^~A~^^^1^4.59^7.46^8^6.49^7.06^~2, 3~^~05/01/2011~ -~01042~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~211~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~213~^2.15^5^0.09^~1~^~A~^^^1^1.15^4.67^2^1.71^2.59^~2, 3~^~05/01/2011~ -~01042~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~255~^39.61^13^0.10^~1~^~A~^^^1^38.40^40.80^9^39.36^39.84^~2, 3~^~05/01/2011~ -~01042~^~269~^2.26^5^0.09^~1~^~A~^^^1^1.22^4.83^2^1.82^2.70^~2, 3~^~05/01/2011~ -~01042~^~287~^0.11^5^0.00^~1~^~A~^^^1^0.07^0.20^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~303~^0.63^19^0.02^~1~^~A~^^^1^0.13^1.03^15^0.57^0.68^~2, 3~^~05/01/2011~ -~01042~^~309~^2.49^19^0.02^~1~^~A~^^^1^2.10^3.14^10^2.42^2.55^~2, 3~^~05/01/2011~ -~01042~^~323~^0.80^2^^~1~^~A~^^^1^0.78^0.80^^^^^~05/01/2011~ -~01042~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01042~^~342~^0.13^2^^~1~^~A~^^^1^0.13^0.14^^^^^~05/01/2011~ -~01042~^~343~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~05/01/2011~ -~01042~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~05/01/2011~ -~01042~^~345~^0.02^2^^~1~^~A~^^^1^0.01^0.02^^^^^~05/01/2011~ -~01042~^~346~^0.03^2^^~1~^~A~^^^1^0.02^0.11^^^^^~05/01/2011~ -~01042~^~347~^0.08^2^^~1~^~A~^^^1^0.00^0.09^^^^~1~^~05/01/2011~ -~01042~^~418~^1.50^4^0.03^~1~^~A~^^^1^1.20^1.60^2^1.36^1.62^~2, 3~^~05/01/2011~ -~01042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01043~^~203~^22.13^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~204~^31.20^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~205~^1.73^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01043~^~207~^5.84^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~255~^39.08^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~269~^0.62^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~303~^0.42^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~309~^2.98^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~323~^0.29^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~418~^0.70^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01043~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01044~^~203~^24.73^9^0.21^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~204~^25.01^10^0.29^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~205~^2.10^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01044~^~207~^5.85^8^0.16^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~255~^42.31^10^0.35^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~269~^1.23^0^^~4~^~BFNN~^~01040~^^^^^^^^^~02/01/2003~ -~01044~^~303~^0.61^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~309~^3.61^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~323~^0.34^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~01044~^~418~^1.23^7^0.23^~1~^^^^^^^^^^^~03/01/2003~ -~01044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01045~^~203~^19.66^5^1.24^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~204~^24.46^5^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~205~^8.32^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01045~^~207~^4.44^5^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~255~^43.12^5^0.16^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~303~^0.84^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~309~^3.01^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~418~^1.28^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01046~^~203~^16.86^7^0.32^~1~^~A~^^^1^15.70^18.10^6^16.05^17.65^~2, 3~^~05/01/2011~ -~01046~^~204~^25.63^7^0.49^~1~^~A~^^^1^23.20^27.00^6^24.42^26.83^~2, 3~^~05/01/2011~ -~01046~^~205~^8.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~207~^4.96^7^0.33^~1~^~A~^^^1^4.18^6.82^6^4.14^5.77^~2, 3~^~05/01/2011~ -~01046~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~213~^5.41^3^0.18^~1~^~A~^^^1^5.04^5.65^2^4.60^6.20^~2, 3~^~05/01/2011~ -~01046~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~255~^44.00^7^0.29^~1~^~A~^^^1^42.80^45.00^6^43.27^44.72^~2, 3~^~05/01/2011~ -~01046~^~269~^5.59^3^0.20^~1~^~A~^^^1^5.19^5.86^2^4.71^6.46^~2, 3~^~05/01/2011~ -~01046~^~287~^0.18^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.10^0.25^~2, 3~^~05/01/2011~ -~01046~^~303~^0.26^10^0.07^~1~^~A~^^^1^0.11^0.76^9^0.08^0.43^~2, 3~^~05/01/2011~ -~01046~^~309~^2.31^10^0.02^~1~^~A~^^^1^2.17^2.46^9^2.24^2.37^~2, 3~^~05/01/2011~ -~01046~^~323~^0.63^2^^~1~^~A~^^^1^0.62^0.63^1^^^^~05/01/2011~ -~01046~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01046~^~342~^0.06^2^^~1~^~A~^^^1^0.06^0.06^1^^^^~05/01/2011~ -~01046~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~05/01/2011~ -~01046~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~05/01/2011~ -~01046~^~345~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~05/01/2011~ -~01046~^~346~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~05/01/2011~ -~01046~^~347~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~05/01/2011~ -~01046~^~418~^1.33^3^0.12^~1~^~A~^^^1^1.10^1.50^2^0.81^1.85^~2, 3~^~05/01/2011~ -~01046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01047~^~203~^21.92^10^0.69^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~204~^24.14^10^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~205~^4.50^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01047~^~207~^5.77^10^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~255~^43.67^10^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~303~^0.60^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~309~^3.55^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~418~^2.30^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~203~^16.41^23^0.44^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~204~^21.23^28^0.38^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~205~^8.73^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01048~^~207~^5.98^19^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~255~^47.65^31^0.51^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~269~^7.32^0^^~4~^~BFNN~^~01046~^^^^^^^^^~02/01/2003~ -~01048~^~303~^0.33^4^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~309~^2.59^5^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~323~^0.19^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~01048~^~418~^0.40^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01049~^~203~^3.13^10^0.04^~1~^~A~^^^1^2.87^3.25^5^3.00^3.24^~2, 3~^~01/01/2015~ -~01049~^~204~^11.50^76^0.03^~1~^^^^^^^^^^^~11/01/2016~ -~01049~^~205~^4.30^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01049~^~207~^0.51^10^0.05^~1~^~A~^^^1^0.31^0.73^5^0.37^0.64^~2, 3~^~01/01/2015~ -~01049~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~213~^4.13^6^0.04^~1~^~A~^^^1^3.99^4.29^2^3.94^4.31^~2, 3~^~01/01/2015~ -~01049~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~255~^80.57^7^0.23^~1~^^^^^^^^^^^~11/01/2016~ -~01049~^~269~^4.13^6^0.04^~1~^~A~^^^1^3.99^4.29^2^3.94^4.31^~2, 3~^~01/01/2015~ -~01049~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~303~^0.05^10^5.0e-03^~1~^~A~^^^1^0.04^0.07^5^0.03^0.06^~1, 2, 3~^~01/01/2015~ -~01049~^~309~^0.39^10^8.0e-03^~1~^~A~^^^1^0.35^0.43^5^0.37^0.41^~2, 3~^~01/01/2015~ -~01049~^~323~^0.25^4^1.0e-03^~1~^~A~^^^1^0.24^0.32^1^0.23^0.25^~2, 3~^~01/01/2015~ -~01049~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~418~^0.19^6^0.04^~1~^~A~^^^1^0.10^0.27^2^-0.01^0.38^~2, 3~^~01/01/2015~ -~01049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01050~^~203~^2.96^3^0.12^~1~^~A~^^^1^2.74^3.19^2^2.39^3.51^~2, 3~^~01/01/2015~ -~01050~^~204~^19.10^2^^~1~^~A~^^^1^18.82^19.39^1^^^^~01/01/2015~ -~01050~^~205~^3.66^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01050~^~207~^0.61^3^0.01^~1~^~A~^^^1^0.59^0.63^2^0.56^0.66^~2, 3~^~01/01/2015~ -~01050~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~213~^3.67^3^0.02^~1~^~A~^^^1^3.64^3.71^2^3.57^3.76^~2, 3~^~01/01/2015~ -~01050~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~255~^73.75^10^^~1~^^^^^^^^^^^~02/01/2016~ -~01050~^~269~^3.67^3^0.02^~1~^~A~^^^1^3.64^3.71^2^3.57^3.76^~2, 3~^~01/01/2015~ -~01050~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~303~^0.05^3^0.01^~1~^~A~^^^1^0.04^0.07^2^1.0e-03^0.09^~1, 2, 3~^~01/01/2015~ -~01050~^~309~^0.32^3^0.01^~1~^~A~^^^1^0.31^0.34^2^0.26^0.36^~2, 3~^~01/01/2015~ -~01050~^~323~^0.12^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~01050~^~418~^0.14^3^0.01^~1~^~A~^^^1^0.11^0.17^2^0.06^0.21^~2, 3~^~01/01/2015~ -~01050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01052~^~203~^2.17^9^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~204~^30.91^8^0.49^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~205~^2.96^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01052~^~207~^0.46^5^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~255~^63.50^9^0.87^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~269~^2.96^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~01052~^~303~^0.03^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~309~^0.25^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~323~^0.88^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01052~^~418~^0.20^6^9.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01053~^~203~^2.84^7^0.23^~1~^~A~^^^1^1.72^3.25^4^2.20^3.48^~2, 3~^~01/01/2015~ -~01053~^~204~^36.08^6^0.52^~1~^~A~^^^1^34.71^37.44^3^34.42^37.72^~2, 3~^~01/01/2015~ -~01053~^~205~^2.84^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01053~^~207~^0.53^7^0.03^~1~^~A~^^^1^0.38^0.62^4^0.42^0.63^~2, 3~^~01/01/2015~ -~01053~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~213~^2.92^6^0.05^~1~^~A~^^^1^2.78^3.24^4^2.77^3.07^~2, 3~^~01/01/2015~ -~01053~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~255~^57.71^7^0.69^~1~^^^^^^^^^^^~11/01/2016~ -~01053~^~269~^2.92^6^0.05^~1~^~A~^^^1^2.78^3.24^4^2.77^3.07^~2, 3~^~01/01/2015~ -~01053~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~303~^0.10^9^0.02^~1~^~A~^^^1^0.04^0.27^6^0.03^0.17^~1, 2, 3~^~01/01/2015~ -~01053~^~309~^0.24^9^5.0e-03^~1~^~A~^^^1^0.22^0.27^6^0.22^0.25^~2, 3~^~01/01/2015~ -~01053~^~323~^0.92^4^0.08^~1~^~A~^^^1^0.74^1.01^2^0.57^1.26^~2, 3~^~01/01/2015~ -~01053~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~342~^0.24^4^4.0e-03^~1~^~A~^^^1^0.23^0.27^2^0.22^0.25^~2, 3~^~01/01/2015~ -~01053~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~344~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.11^2^0.04^0.13^~2, 3~^~01/01/2015~ -~01053~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~418~^0.16^6^0.01^~1~^~A~^^^1^0.13^0.18^3^0.12^0.18^~2, 3~^~01/01/2015~ -~01053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01054~^~203~^3.20^3^0.45^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~204~^22.22^3^1.93^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~205~^12.49^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01054~^~207~^0.76^3^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~255~^61.33^3^1.67^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~269~^8.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01054~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~309~^0.37^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~323~^0.64^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01054~^~418~^0.29^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01055~^~203~^2.94^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~204~^12.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~205~^4.26^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01055~^~207~^0.66^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~255~^80.14^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~269~^0.16^0^^~4~^~BFNN~^~01001~^^^^^^^^^~01/01/2003~ -~01055~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~309~^0.50^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~323~^0.34^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~ -~01055~^~418~^0.30^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01056~^~203~^2.44^10^0.20^~1~^~A~^^^1^1.53^3.13^7^1.95^2.93^~2, 3~^~02/01/2015~ -~01056~^~204~^19.35^6^0.15^~1~^~A~^^^1^17.65^20.26^3^18.81^19.88^~2, 3~^~02/01/2015~ -~01056~^~205~^4.63^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~207~^0.51^10^0.03^~1~^~A~^^^1^0.36^0.68^5^0.41^0.59^~2, 3~^~02/01/2015~ -~01056~^~209~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01056~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~213~^3.41^4^0.18^~1~^~A~^^^1^3.10^3.70^1^1.72^5.08^~2, 3~^~02/01/2015~ -~01056~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~255~^73.07^6^0.45^~1~^~A~^^^1^71.32^74.89^2^71.18^74.95^~2, 3~^~02/01/2015~ -~01056~^~269~^3.41^4^0.18^~1~^~A~^^^1^3.10^3.70^1^1.72^5.08^~2, 3~^~02/01/2015~ -~01056~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~303~^0.07^10^0.00^~1~^~A~^^^1^0.07^0.07^8^0.07^0.07^~1, 2, 3~^~02/01/2015~ -~01056~^~309~^0.33^10^6.0e-03^~1~^~A~^^^1^0.30^0.35^8^0.31^0.33^~2, 3~^~02/01/2015~ -~01056~^~323~^0.38^4^0.02^~1~^~A~^^^1^0.33^0.44^2^0.27^0.48^~2, 3~^~02/01/2015~ -~01056~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~342~^0.30^4^0.04^~1~^~A~^^^1^0.22^0.52^1^-0.20^0.80^~2, 3~^~02/01/2015~ -~01056~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~344~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.04^1^-0.18^0.21^~1, 2, 3~^~02/01/2015~ -~01056~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~01056~^~418~^0.21^4^0.03^~1~^~A~^^^1^0.15^0.27^1^-0.19^0.60^~2, 3~^~02/01/2015~ -~01056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01057~^~203~^4.55^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~204~^4.19^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~205~^8.05^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~207~^0.67^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~210~^0.04^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~211~^0.07^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~212~^0.04^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~213~^7.84^0^^~4~^~RC~^^^^^^^^^^~08/01/2011~ -~01057~^~214~^0.04^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~255~^82.54^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~269~^8.05^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~01057~^~287~^0.04^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~ -~01057~^~303~^0.20^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~309~^0.46^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~323~^0.21^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~342~^0.08^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~344~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~345~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~346~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~347~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~418~^0.45^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~01058~^~203~^3.25^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~204~^16.57^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~205~^4.68^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01058~^~207~^0.71^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~255~^74.79^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~269~^4.68^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01058~^~303~^0.03^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~309~^0.37^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~323~^1.34^0^^~4~^~BFFN~^~04034~^^^^^^^^^~01/01/2003~ -~01058~^~418~^0.33^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01059~^~203~^3.33^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~204~^3.46^9^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~205~^4.74^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01059~^~207~^0.80^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~255~^87.67^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~309~^0.36^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~418~^0.34^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~203~^3.33^18^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~204~^3.40^56^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~205~^4.74^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01060~^~207~^0.80^4^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~255~^87.73^60^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~269~^4.74^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01060~^~303~^0.05^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~309~^0.36^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~323~^0.13^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01060~^~418~^0.34^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01061~^~203~^21.05^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~205~^10.53^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~207~^2.95^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~01061~^~255~^65.47^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01061~^~269~^5.26^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~309~^4.11^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~323~^0.27^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~418~^1.85^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~573~^0.00^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~ -~01061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~ -~01064~^~203~^7.22^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~204~^1.71^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~205~^12.15^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~ -~01064~^~207~^0.61^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~210~^6.77^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~211~^0.68^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~212~^0.64^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~213~^2.07^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01064~^~255~^78.40^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01065~^~203~^8.11^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~204~^1.71^0^^~4~^~BFZN~^~01307~^^^^^^^^^~10/01/2016~ -~01065~^~205~^11.04^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01065~^~207~^0.65^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~210~^5.94^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~211~^0.18^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01065~^~213~^2.08^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01065~^~255~^78.50^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~ -~01067~^~203~^1.00^14^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~204~^9.97^42^0.27^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~205~^11.38^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01067~^~207~^0.38^6^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~255~^77.27^11^1.10^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~269~^11.38^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~01067~^~303~^0.03^5^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~309~^0.02^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~323~^0.81^0^^~4~^~BFFN~^~04034~^^^^^^^^^~12/01/2002~ -~01067~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01068~^~203~^1.00^14^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~204~^9.97^42^0.27^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~205~^11.38^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01068~^~207~^0.38^6^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~255~^77.27^11^1.10^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~303~^0.03^5^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~309~^0.02^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~203~^2.48^11^0.02^~1~^~A~^^^1^2.33^2.64^5^2.40^2.55^~2, 3~^~02/01/2015~ -~01069~^~204~^32.92^11^0.28^~1~^~A~^^^1^31.20^34.40^5^32.19^33.64^~2, 3~^~02/01/2015~ -~01069~^~205~^59.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~207~^2.34^11^0.08^~1~^~A~^^^1^1.82^2.85^5^2.10^2.57^~2, 3~^~02/01/2015~ -~01069~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~211~^3.52^6^0.08^~1~^~A~^^^1^3.22^3.85^3^3.26^3.78^~2, 3~^~02/01/2015~ -~01069~^~212~^0.57^6^0.01^~1~^~A~^^^1^0.52^0.62^4^0.54^0.60^~2, 3~^~02/01/2015~ -~01069~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~214~^3.67^6^0.12^~1~^~A~^^^1^3.13^3.95^2^3.15^4.18^~2, 3~^~02/01/2015~ -~01069~^~255~^2.98^11^0.07^~1~^~A~^^^1^2.44^3.49^4^2.78^3.17^~2, 3~^~02/01/2015~ -~01069~^~269~^7.77^6^0.21^~1~^~A~^^^1^6.92^8.32^2^6.94^8.58^~2, 3~^~02/01/2015~ -~01069~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~303~^0.26^11^0.02^~1~^~A~^^^1^0.07^0.41^6^0.19^0.32^~1, 2, 3~^~02/01/2015~ -~01069~^~309~^0.07^12^6.0e-03^~1~^~A~^^^1^0.04^0.12^5^0.05^0.08^~2, 3~^~02/01/2015~ -~01069~^~323~^1.26^4^0.12^~1~^~A~^^^1^0.26^2.11^1^-0.23^2.75^~2, 3~^~02/01/2015~ -~01069~^~341~^0.16^4^0.05^~1~^~A~^^^1^0.00^0.35^1^-0.48^0.80^~1, 2, 3~^~02/01/2015~ -~01069~^~342~^10.29^4^1.30^~1~^~A~^^^1^0.82^18.84^1^-6.31^26.88^~2, 3~^~02/01/2015~ -~01069~^~343~^3.55^4^0.68^~1~^~A~^^^1^0.14^6.96^1^-5.12^12.22^~2, 3~^~02/01/2015~ -~01069~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~01069~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~01069~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~01069~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~01069~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01070~^~203~^4.90^3^0.31^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~204~^39.92^9^1.07^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~205~^52.54^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01070~^~207~^1.17^3^0.38^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~255~^1.47^3^0.91^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~269~^52.54^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01070~^~303~^0.03^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01070~^~309~^0.08^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01070~^~323~^1.52^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01070~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~01070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~01071~^~203~^3.61^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~204~^12.72^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~205~^17.13^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~207~^0.80^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~210~^13.38^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~01071~^~211~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~212~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~213~^3.75^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~255~^65.74^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~269~^17.13^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~01071~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~303~^0.04^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~309~^0.27^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~323~^0.45^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01071~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~418~^0.26^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~01071~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01072~^~203~^0.98^4^0.66^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~204~^22.30^13^0.99^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~205~^16.07^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01072~^~207~^0.28^3^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~255~^60.37^3^0.43^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~269~^16.07^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~01072~^~303~^0.02^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~309~^0.01^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~323~^0.85^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01072~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01073~^~203~^1.25^17^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~204~^25.31^19^0.28^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~205~^23.05^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01073~^~207~^0.18^13^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~255~^50.21^17^1.04^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~269~^23.05^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~01073~^~303~^0.12^7^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~309~^0.03^11^2.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~323~^0.96^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01073~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01074~^~203~^2.40^3^0.72^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~204~^19.52^9^0.41^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~205~^6.63^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01074~^~207~^0.30^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~255~^71.15^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~269~^6.63^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01074~^~303~^0.39^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~309~^1.18^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~323~^0.74^0^^~4~^~BFFN~^~04513~^^^^^^^^^~01/01/2003~ -~01074~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01076~^~203~^1.75^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~204~^3.41^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~205~^6.16^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01076~^~207~^0.50^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~255~^88.18^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~303~^0.39^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~309~^1.18^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01077~^~203~^3.15^27^0.02^~1~^~A~^^^2^3.07^3.31^13^3.09^3.21^~2, 3~^~11/01/2008~ -~01077~^~204~^3.25^0^^~4~^~S~^^^^^^^^^^~03/01/2003~ -~01077~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~207~^0.67^24^4.0e-03^~1~^~A~^^^2^0.66^0.70^15^0.66^0.68^~2, 3~^~11/01/2008~ -~01077~^~210~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~211~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~212~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~213~^5.05^24^0.05^~1~^~A~^^^2^4.85^5.57^17^4.94^5.16^~2, 3~^~11/01/2008~ -~01077~^~214~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~255~^88.13^28^0.05^~1~^~A~^^^2^87.69^89.20^20^88.02^88.23^~2, 3~^~11/01/2008~ -~01077~^~269~^5.05^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01077~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~303~^0.03^46^2.0e-03^~1~^~A~^^^9^0.00^0.07^3^0.02^0.03^~1, 2, 3~^~11/01/2008~ -~01077~^~309~^0.37^42^7.0e-03^~1~^~A~^^^9^0.25^0.47^16^0.35^0.38^~2, 3~^~11/01/2008~ -~01077~^~323~^0.07^24^3.0e-03^~1~^~A~^^^2^0.03^0.08^20^0.06^0.07^~2, 3~^~11/01/2008~ -~01077~^~341~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~342~^0.00^24^1.0e-03^~1~^~A~^^^2^0.00^0.01^22^2.0e-03^6.0e-03^~1, 2, 3~^~11/01/2008~ -~01077~^~343~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~344~^0.00^24^1.0e-03^~1~^~A~^^^2^0.00^0.00^11^-1.0e-03^3.0e-03^~1, 2, 3~^~11/01/2008~ -~01077~^~345~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~346~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~347~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~418~^0.45^14^0.02^~1~^~A~^^^1^0.27^0.53^10^0.40^0.49^~2, 3~^~11/01/2008~ -~01077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01078~^~203~^3.28^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~204~^3.66^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~205~^4.65^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01078~^~207~^0.72^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~255~^87.69^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~309~^0.38^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~418~^0.36^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01079~^~203~^3.30^13^0.03^~1~^~A~^^^2^3.18^3.61^11^3.23^3.37^~2, 3~^~03/01/2003~ -~01079~^~204~^1.98^14^8.0e-03^~11~^~JO~^^^6^1.90^2.06^8^1.95^1.99^~2, 3~^~12/01/2008~ -~01079~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~207~^0.71^13^0.03^~1~^~A~^^^2^0.31^0.85^11^0.63^0.78^~2, 3~^~03/01/2003~ -~01079~^~210~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~211~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~212~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~213~^5.01^13^0.06^~1~^~A~^^^2^4.11^5.69^11^4.87^5.15^~2, 3~^~12/01/2002~ -~01079~^~214~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~255~^89.21^17^0.19^~1~^~A~^^^6^87.90^92.08^11^88.78^89.63^~2, 3~^~12/01/2008~ -~01079~^~269~^5.06^13^0.06^~1~^~A~^^^2^4.61^5.69^11^4.92^5.19^~2, 3~^~12/01/2002~ -~01079~^~287~^0.02^13^8.0e-03^~1~^~A~^^^2^0.00^0.11^11^-2.0e-03^0.03^~1, 2, 3~^~12/01/2002~ -~01079~^~303~^0.02^4^2.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01079~^~309~^0.48^29^0.01^~1~^~A~^^^9^0.30^0.84^12^0.45^0.51^~2, 3~^~12/01/2008~ -~01079~^~323~^0.03^12^3.0e-03^~1~^~A~^^^1^0.02^0.05^11^0.02^0.03^~2, 3~^~12/01/2002~ -~01079~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~344~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~418~^0.53^4^0.03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01080~^~203~^3.48^59^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~204~^1.92^559^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~205~^4.97^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01080~^~207~^0.77^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~255~^88.86^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~309~^0.40^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~418~^0.38^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~203~^3.95^104^9.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~204~^1.98^114^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~205~^5.49^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01081~^~207~^0.87^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~255~^87.71^119^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~269~^5.26^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2003~ -~01081~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~309~^0.45^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~323~^0.04^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~418~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01082~^~203~^3.37^12^0.06^~1~^~A~^^^1^3.26^4.03^11^3.23^3.50^~2, 3~^~03/01/2003~ -~01082~^~204~^0.97^6^0.02^~11~^~JO~^^^1^0.84^1.00^5^0.90^1.03^~2, 3~^~03/01/2003~ -~01082~^~205~^4.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~207~^0.75^12^0.01^~1~^~A~^^^1^0.70^0.89^11^0.71^0.78^~2, 3~^~03/01/2003~ -~01082~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~213~^5.20^12^0.10^~1~^~A~^^^1^4.84^6.08^11^4.96^5.42^~2, 3~^~12/01/2002~ -~01082~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~255~^89.92^12^0.17^~1~^~A~^^^1^88.04^90.29^11^89.53^90.30^~2, 3~^~03/01/2003~ -~01082~^~269~^5.20^12^0.10^~1~^~A~^^^1^4.84^6.08^11^4.96^5.42^~2, 3~^~12/01/2002~ -~01082~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~303~^0.03^4^4.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01082~^~309~^0.42^11^3.0e-03^~1~^~A~^^^1^^^^^^^~01/01/2004~ -~01082~^~323~^0.01^12^2.0e-03^~1~^~A~^^^1^0.01^0.02^11^8.0e-03^0.01^~1, 2, 3~^~12/01/2002~ -~01082~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~344~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~418~^0.47^4^0.01^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01083~^~203~^3.48^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~204~^0.97^391^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~205~^4.97^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01083~^~207~^0.77^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~255~^89.81^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~309~^0.40^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~418~^0.38^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~203~^3.93^25^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~204~^1.17^30^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~205~^5.52^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01084~^~207~^0.86^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~255~^88.74^28^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~309~^0.45^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~418~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01085~^~203~^3.37^12^0.03^~1~^~A~^^^1^3.27^3.67^11^3.29^3.44^~2, 3~^~03/01/2003~ -~01085~^~204~^0.08^12^9.0e-03^~1~^~A~^^^1^0.05^0.14^11^0.06^0.09^~2, 3~^~03/01/2003~ -~01085~^~205~^4.96^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01085~^~207~^0.75^12^6.0e-03^~1~^~A~^^^1^0.71^0.78^11^0.74^0.76^~2, 3~^~03/01/2003~ -~01085~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~213~^5.09^12^0.04^~1~^~A~^^^1^4.67^5.27^11^4.99^5.19^~2, 3~^~12/01/2002~ -~01085~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~255~^90.84^12^0.03^~1~^~A~^^^1^90.58^91.00^11^90.76^90.91^~2, 3~^~03/01/2003~ -~01085~^~269~^5.09^12^0.04^~1~^~A~^^^1^4.67^5.27^11^4.99^5.19^~2, 3~^~12/01/2002~ -~01085~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~303~^0.03^4^3.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01085~^~309~^0.42^27^3.0e-03^~1~^~A~^^^8^0.28^0.45^14^0.41^0.42^~2, 3~^~01/01/2004~ -~01085~^~323~^0.01^12^2.0e-03^~1~^~A~^^^1^0.00^0.02^11^2.0e-03^9.0e-03^~1, 2, 3~^~12/01/2002~ -~01085~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~344~^0.00^12^2.0e-03^~1~^~A~^^^1^0.00^0.02^11^-2.0e-03^5.0e-03^~1, 2, 3~^~12/01/2002~ -~01085~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~418~^0.50^4^0.06^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01086~^~203~^3.57^56^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~204~^0.25^296^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~205~^5.02^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01086~^~207~^0.78^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~255~^90.38^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~269~^5.02^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01086~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~309~^0.41^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~323~^0.01^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~ -~01086~^~418~^0.39^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01087~^~203~^3.96^5^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~204~^0.25^296^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~205~^5.56^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01087~^~207~^0.87^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~255~^89.36^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~309~^0.45^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~418~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~203~^3.31^65^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~204~^1.07^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01088~^~205~^4.79^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01088~^~207~^0.89^8^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~255~^90.13^62^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~269~^5.36^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01088~^~303~^0.05^6^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~309~^0.42^5^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~323~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01088~^~418~^0.22^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01089~^~203~^3.10^8^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~204~^3.46^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~205~^4.46^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01089~^~207~^0.78^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~255~^88.20^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~269~^4.46^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01089~^~303~^0.05^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01089~^~309~^0.38^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01089~^~323~^0.08^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01089~^~418~^0.36^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01090~^~203~^26.32^22^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~204~^26.71^30^0.25^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~205~^38.42^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01090~^~207~^6.08^20^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~255~^2.47^25^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~269~^38.42^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01090~^~303~^0.47^12^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~309~^3.34^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~323~^0.58^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01090~^~418~^3.25^31^0.28^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01091~^~203~^36.16^183^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~204~^0.77^351^9.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~205~^51.98^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01091~^~207~^7.93^104^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~255~^3.16^382^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~269~^51.98^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~01091~^~303~^0.32^6^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~309~^4.08^7^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01091~^~418~^4.03^15^0.34^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01092~^~203~^35.10^89^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~204~^0.72^164^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~205~^52.19^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01092~^~207~^8.03^14^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~255~^3.96^216^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~269~^52.19^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01092~^~303~^0.31^13^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~309~^4.41^10^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~323~^0.01^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01092~^~418~^3.99^17^0.32^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01092~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01093~^~203~^35.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~204~^0.20^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~205~^51.80^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~207~^7.60^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~255~^4.90^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~303~^0.32^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~309~^4.03^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~418~^3.98^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~203~^34.30^3^0.33^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~204~^5.78^163^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~205~^49.00^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01094~^~207~^7.95^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~255~^2.97^170^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~269~^49.00^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01094~^~303~^0.30^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~309~^4.02^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~323~^0.10^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01094~^~418~^3.82^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01095~^~203~^7.91^5^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~204~^8.70^23^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~205~^54.40^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01095~^~207~^1.83^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~255~^27.16^21^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~269~^54.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01095~^~303~^0.19^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~309~^0.94^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~323~^0.16^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01095~^~418~^0.44^4^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01096~^~203~^6.81^55^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~204~^7.56^15^5.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~205~^10.04^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01096~^~207~^1.55^5^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~255~^74.04^15^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~269~^10.04^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01096~^~303~^0.19^59^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~309~^0.77^26^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~323~^0.14^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01096~^~418~^0.16^9^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01097~^~203~^7.55^10^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~204~^0.20^10^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~205~^11.35^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01097~^~207~^1.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~255~^79.40^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~269~^11.35^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~01097~^~303~^0.29^9^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~309~^0.90^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~323~^0.00^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01097~^~418~^0.24^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01102~^~203~^3.17^11^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~204~^3.39^10^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~205~^10.34^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01102~^~207~^0.80^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~255~^82.30^8^0.23^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~269~^9.54^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01102~^~303~^0.24^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~309~^0.41^5^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~323~^0.07^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~ -~01102~^~418~^0.33^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01102~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01103~^~203~^2.99^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~204~^1.90^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~205~^12.13^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~01103~^~207~^0.81^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~209~^1.60^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01103~^~210~^4.79^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~211~^0.53^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~212~^0.41^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~213~^3.83^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~255~^82.17^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~269~^9.55^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01103~^~303~^0.24^0^^~1~^^^^^^^^^^^~07/01/2006~ -~01103~^~309~^0.39^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~323~^0.04^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~342~^0.02^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~344~^0.03^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~418~^0.33^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01103~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01104~^~203~^3.46^21^0.08^~11~^~JO~^^^1^3.23^3.49^17^3.28^3.62^~2, 3~^~07/01/2015~ -~01104~^~204~^1.11^4^0.01^~1~^~A~^^^4^^^^^^^~11/01/2016~ -~01104~^~205~^10.15^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01104~^~207~^0.78^13^0.02^~1~^~A~^^^1^0.75^0.79^11^0.72^0.84^~2, 3~^~07/01/2015~ -~01104~^~255~^84.50^0^^~1~^^^^^^^^^^^~11/01/2016~ -~01104~^~269~^9.94^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01104~^~303~^0.23^13^0.01^~1~^~A~^^^1^0.17^0.42^11^0.18^0.26^~2, 3~^~07/01/2015~ -~01104~^~309~^0.43^13^7.0e-03^~1~^~A~^^^1^0.42^0.43^9^0.41^0.44^~2, 3~^~07/01/2015~ -~01104~^~323~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~341~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~342~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~343~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~346~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~418~^0.23^8^0.04^~1~^~A~^^^1^0.16^0.26^5^0.10^0.36^~2, 3~^~07/01/2015~ -~01104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01105~^~203~^3.52^0^^~1~^~RPA~^^^^^^^^^^~08/01/2010~ -~01105~^~204~^2.34^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~205~^10.74^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~207~^0.65^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~210~^5.00^0^^~1~^~RPA~^^^^^^^^^^~08/01/2010~ -~01105~^~211~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~212~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~213~^4.63^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~214~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~255~^82.45^0^^~1~^~RPA~^^^^^^^^^^~08/01/2010~ -~01105~^~269~^9.66^0^^~1~^~RPA~^^^^^^^^^^~08/01/2010~ -~01105~^~287~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~303~^0.42^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~309~^0.63^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~323~^0.03^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~418~^0.49^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01105~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~01106~^~203~^3.56^132^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~204~^4.14^269^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~205~^4.45^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01106~^~207~^0.82^229^2.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~255~^87.03^196^0.14^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~269~^4.45^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~01106~^~303~^0.05^23^4.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~309~^0.30^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~323~^0.07^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01106~^~418~^0.07^45^5.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01107~^~203~^1.03^591^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~204~^4.38^415^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~205~^6.89^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01107~^~207~^0.20^396^1.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~255~^87.50^616^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~269~^6.89^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01107~^~303~^0.03^277^2.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~309~^0.17^281^6.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~323~^0.08^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01107~^~418~^0.05^32^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01108~^~203~^3.75^96^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~204~^6.89^113^0.13^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~205~^5.18^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01108~^~207~^0.79^97^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~255~^83.39^8^0.54^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~303~^0.12^10^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~309~^0.22^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~418~^0.36^4^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~203~^5.98^112^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~204~^7.00^104^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~205~^5.36^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01109~^~207~^0.96^74^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~255~^80.70^31^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~303~^0.10^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~309~^0.54^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~418~^0.71^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~203~^3.05^7^0.26^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~204~^2.70^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01110~^~207~^0.90^7^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~255~^72.20^7^0.95^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~269~^20.85^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01110~^~303~^0.31^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~309~^0.48^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~323~^0.05^0^^~4~^~BFFN~^~01102~^^^^^^^^^~01/01/2003~ -~01110~^~418~^0.32^7^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01111~^~203~^3.86^10^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~204~^3.03^10^0.14^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~205~^17.75^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01111~^~207~^0.91^10^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~255~^74.45^10^0.83^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~269~^17.75^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01111~^~303~^0.10^10^6.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~309~^0.39^10^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~323~^0.05^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01111~^~418~^0.52^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01111~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01112~^~203~^0.76^21^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~204~^0.09^6^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~205~^5.12^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01112~^~207~^0.61^9^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~255~^93.42^10^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~269~^5.12^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01112~^~303~^0.08^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~309~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~323~^0.00^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~418~^0.18^14^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~203~^11.73^57^0.18^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~204~^0.54^49^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~205~^73.45^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01113~^~207~^10.77^48^0.22^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~255~^3.51^52^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~269~^73.45^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01113~^~303~^1.24^19^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~309~^6.31^19^0.54^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~323~^0.00^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01113~^~418~^2.50^10^0.17^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01113~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01114~^~203~^0.85^16^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~204~^0.36^31^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~205~^5.14^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01114~^~207~^0.53^7^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~255~^93.12^32^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~269~^5.14^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01114~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~309~^0.13^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~323~^0.00^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~418~^0.28^17^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01115~^~203~^12.93^165^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~204~^1.07^148^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~205~^74.46^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01115~^~207~^8.35^147^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~255~^3.19^151^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~269~^74.46^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~01115~^~303~^0.88^41^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~309~^1.97^43^0.15^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~323~^0.02^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~ -~01115~^~418~^2.37^48^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01115~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01116~^~203~^3.47^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~204~^3.25^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~205~^4.66^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01116~^~207~^0.72^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~255~^87.90^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~269~^4.66^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01116~^~303~^0.05^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~309~^0.59^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~323~^0.06^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01116~^~418~^0.37^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01117~^~203~^5.25^30^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~204~^1.55^38^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~205~^7.04^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01117~^~207~^1.09^16^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~255~^85.07^28^0.30^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~269~^7.04^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01117~^~303~^0.08^4^8.0e-03^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~309~^0.89^12^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~323~^0.03^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01117~^~418~^0.56^8^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01118~^~203~^5.73^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~204~^0.18^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~205~^7.68^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01118~^~207~^1.18^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~255~^85.23^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~269~^7.68^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01118~^~303~^0.09^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~309~^0.97^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~323~^0.00^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01118~^~418~^0.61^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01119~^~203~^4.93^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~204~^1.25^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~205~^13.80^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01119~^~207~^1.02^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~255~^79.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~269~^13.80^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01119~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~309~^0.83^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~323~^0.02^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01119~^~418~^0.53^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01120~^~203~^3.98^19^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~204~^1.15^17^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~205~^18.64^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01120~^~207~^0.93^9^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~255~^75.30^17^0.59^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~269~^18.64^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01120~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~309~^0.67^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~323~^0.02^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01120~^~418~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01121~^~203~^4.37^26^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~204~^1.08^26^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~205~^19.05^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01121~^~207~^1.02^12^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~255~^74.48^26^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~269~^19.05^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01121~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~309~^0.74^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~323~^0.02^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~ -~01121~^~418~^0.47^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01122~^~203~^4.86^20^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~204~^1.41^17^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~205~^18.60^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01122~^~207~^1.03^12^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~255~^74.10^20^0.51^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~309~^0.82^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~418~^0.52^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01123~^~203~^12.56^12^0.10^~1~^~A~^^^1^11.81^13.06^11^12.33^12.78^~2, 3~^~08/01/2010~ -~01123~^~204~^9.51^12^0.11^~1~^~A~^^^1^8.78^10.30^11^9.25^9.75^~2, 3~^~08/01/2010~ -~01123~^~205~^0.72^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01123~^~207~^1.06^12^0.03^~1~^~A~^^^1^0.92^1.33^11^0.99^1.13^~2, 3~^~08/01/2010~ -~01123~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~211~^0.37^6^8.0e-03^~1~^~A~^^^1^0.34^0.40^5^0.35^0.39^~2, 3~^~08/01/2010~ -~01123~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~255~^76.15^12^0.12^~1~^~A~^^^1^75.43^76.94^11^75.88^76.42^~2, 3~^~08/01/2010~ -~01123~^~269~^0.37^6^8.0e-03^~1~^~A~^^^1^0.34^0.40^5^0.35^0.39^~2, 3~^~08/01/2010~ -~01123~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~303~^1.75^6^0.04^~1~^~A~^^^1^1.63^1.93^5^1.63^1.86^~2, 3~^~08/01/2010~ -~01123~^~309~^1.29^6^0.01^~1~^~A~^^^1^1.24^1.34^5^1.24^1.33^~2, 3~^~08/01/2010~ -~01123~^~323~^1.05^6^0.11^~1~^~A~^^^1^0.77^1.47^5^0.75^1.34^~2, 3~^~08/01/2010~ -~01123~^~341~^0.01^6^3.0e-03^~1~^~A~^^^1^0.01^0.03^5^7.0e-03^0.02^~2, 3~^~08/01/2010~ -~01123~^~342~^0.50^6^0.04^~1~^~A~^^^1^0.32^0.64^5^0.39^0.60^~2, 3~^~08/01/2010~ -~01123~^~343~^0.06^6^0.03^~1~^~A~^^^1^0.02^0.21^5^-0.02^0.13^~2, 3~^~08/01/2010~ -~01123~^~344~^0.06^6^4.0e-03^~1~^~A~^^^1^0.04^0.07^5^0.04^0.06^~2, 3~^~08/01/2010~ -~01123~^~345~^0.00^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^5^1.0e-03^7.0e-03^~1, 2, 3~^~08/01/2010~ -~01123~^~346~^0.01^6^3.0e-03^~1~^~A~^^^1^0.01^0.02^5^3.0e-03^0.01^~2, 3~^~08/01/2010~ -~01123~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~418~^0.89^6^0.09^~1~^~A~^^^1^0.65^1.20^5^0.65^1.12^~2, 3~^~08/01/2010~ -~01123~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01123~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01124~^~203~^10.90^12^0.13^~1~^~A~^^^1^10.21^11.76^11^10.59^11.20^~2, 3~^~03/01/2003~ -~01124~^~204~^0.17^12^0.01^~1~^~A~^^^1^0.07^0.29^11^0.12^0.20^~1, 2, 3~^~03/01/2003~ -~01124~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01124~^~207~^0.63^12^0.02^~1~^~A~^^^1^0.41^0.79^11^0.57^0.69^~2, 3~^~03/01/2003~ -~01124~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~211~^0.34^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~213~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~214~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~255~^87.57^12^0.12^~1~^~A~^^^1^86.80^88.13^11^87.29^87.83^~2, 3~^~03/01/2003~ -~01124~^~269~^0.71^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01124~^~303~^0.08^12^4.0e-03^~1~^~A~^^^1^0.07^0.13^11^0.06^0.08^~1, 2, 3~^~03/01/2003~ -~01124~^~309~^0.03^12^4.0e-03^~1~^~A~^^^1^0.01^0.07^11^0.02^0.03^~1, 2, 3~^~03/01/2003~ -~01124~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01124~^~418~^0.09^4^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~03/01/2003~ -~01124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01125~^~203~^15.86^12^0.08^~1~^~A~^^^1^15.46^16.38^11^15.66^16.04^~2, 3~^~03/01/2003~ -~01125~^~204~^26.54^12^0.24^~1~^~A~^^^1^25.41^28.61^11^26.01^27.07^~2, 3~^~03/01/2003~ -~01125~^~205~^3.59^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~207~^1.71^12^0.02^~1~^~A~^^^1^1.60^1.88^11^1.64^1.76^~2, 3~^~03/01/2003~ -~01125~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01125~^~211~^0.18^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01125~^~213~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01125~^~214~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01125~^~255~^52.31^12^0.20^~1~^~A~^^^1^51.14^53.51^11^51.85^52.75^~2, 3~^~03/01/2003~ -~01125~^~269~^0.56^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~01125~^~303~^2.73^12^0.14^~1~^~A~^^^1^1.68^3.47^11^2.41^3.04^~2, 3~^~03/01/2003~ -~01125~^~309~^2.30^12^0.08^~1~^~A~^^^1^1.84^2.71^11^2.11^2.48^~2, 3~^~03/01/2003~ -~01125~^~323~^2.58^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~341~^0.05^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~342~^1.33^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~343~^0.06^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~344~^0.03^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~345~^0.00^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~346~^0.00^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~347~^0.00^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01125~^~418~^1.95^12^0.31^~1~^~A~^^^1^1.02^4.50^11^1.25^2.64^~2, 3~^~03/01/2003~ -~01125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01126~^~203~^15.53^15^0.09^~1~^~A~^^^1^14.90^16.40^14^15.33^15.73^~4~^~04/01/2015~ -~01126~^~204~^25.60^15^0.17^~1~^~DA~^^^1^24.19^26.62^14^25.23^25.96^~4~^~04/01/2015~ -~01126~^~205~^0.81^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~207~^1.62^15^0.05^~1~^~A~^^^1^1.43^2.33^14^1.49^1.73^~4~^~04/01/2015~ -~01126~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01126~^~211~^0.16^15^0.01^~1~^~A~^^^1^0.07^0.20^14^0.13^0.19^~1, 4~^~04/01/2015~ -~01126~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01126~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01126~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01126~^~255~^56.44^15^0.06^~1~^~A~^^^1^56.10^57.00^14^56.29^56.58^~4~^~04/01/2015~ -~01126~^~269~^0.16^15^0.01^~1~^~A~^^^1^0.07^0.20^14^0.13^0.19^~4~^~04/01/2015~ -~01126~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01126~^~303~^4.55^15^0.06^~1~^~A~^^^1^4.16^4.91^14^4.41^4.69^~4~^~04/01/2015~ -~01126~^~309~^3.17^3^^~1~^~A~^^^1^2.99^3.32^^^^~2~^~04/01/2012~ -~01126~^~323~^2.24^3^^~1~^~A~^^^1^1.54^3.38^^^^~2~^~04/01/2012~ -~01126~^~418~^1.90^15^0.25^~1~^~A~^^^1^0.60^4.09^14^1.34^2.46^~4~^~04/01/2015~ -~01126~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01126~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01127~^~203~^13.87^3^^~1~^~A~^^^1^13.50^14.10^^^^~2~^~04/01/2012~ -~01127~^~204~^22.82^3^^~1~^~A~^^^1^22.31^23.30^^^^~2~^~04/01/2012~ -~01127~^~205~^10.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~207~^1.13^3^^~1~^~A~^^^1^1.10^1.20^^^^~2~^~04/01/2012~ -~01127~^~210~^10.10^3^^~1~^~A~^^^1^9.80^10.50^^^^~2~^~04/01/2012~ -~01127~^~211~^0.10^3^^~1~^~A~^^^1^0.00^0.30^^^^~1, 2~^~04/01/2012~ -~01127~^~212~^0.10^3^^~1~^~A~^^^1^0.10^0.10^^^^~2~^~04/01/2012~ -~01127~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01127~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01127~^~255~^51.23^3^^~1~^~A~^^^1^51.00^51.60^^^^~2~^~04/01/2012~ -~01127~^~269~^10.30^3^^~1~^~A~^^^1^9.90^10.60^^^^~2~^~04/01/2012~ -~01127~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01127~^~303~^3.70^3^^~1~^~A~^^^1^3.67^3.74^^^^~2~^~04/01/2012~ -~01127~^~309~^3.06^3^^~1~^~A~^^^1^3.03^3.09^^^^~2~^~04/01/2012~ -~01127~^~323~^2.25^3^^~1~^~A~^^^1^1.92^2.81^^^^~2~^~04/01/2012~ -~01127~^~418~^1.64^3^^~1~^~A~^^^1^1.10^2.63^^^^~2~^~04/01/2012~ -~01127~^~573~^0.00^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~578~^0.00^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01128~^~203~^13.61^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~204~^14.84^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~205~^0.83^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~207~^1.26^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~211~^0.40^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~255~^69.47^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~269~^0.40^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~303~^1.89^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~309~^1.39^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~323~^1.31^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~342~^0.54^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~343~^0.06^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~344~^0.06^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~346~^0.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~418~^0.97^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01128~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01129~^~203~^12.58^14^0.18^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~204~^10.61^7^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~205~^1.12^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01129~^~207~^1.08^14^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~255~^74.62^14^0.14^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~269~^1.12^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01129~^~303~^1.19^14^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~309~^1.05^14^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~323~^1.03^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01129~^~418~^1.11^14^0.06^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01130~^~203~^10.57^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~204~^11.66^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~205~^0.64^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~207~^1.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~211~^0.31^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~255~^76.13^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~269~^0.31^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~303~^1.48^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~309~^1.09^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~323~^1.29^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~341~^0.03^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~342~^2.41^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~343~^0.74^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~344~^0.05^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~346~^0.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~418~^0.76^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01130~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01131~^~203~^12.51^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~204~^9.47^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~205~^0.71^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~207~^1.46^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~210~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~211~^0.37^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~212~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~213~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~214~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~255~^75.85^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~269~^0.37^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~287~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~303~^1.75^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~309~^1.29^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~323~^1.04^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~341~^0.01^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~342~^0.50^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~343~^0.06^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~344~^0.06^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~345~^0.00^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~346~^0.01^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~347~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~418~^0.71^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01132~^~203~^9.99^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~204~^10.98^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~205~^1.61^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~207~^1.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~211~^0.28^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~213~^1.11^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~255~^76.40^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~269~^1.39^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01132~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~303~^1.31^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~309~^1.04^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~323~^1.15^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~341~^0.03^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~342~^2.12^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~343~^0.65^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~344~^0.04^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~346~^0.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01132~^~418~^0.76^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01132~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01133~^~203~^48.05^15^0.44^~1~^~A~^^^1^44.70^50.40^14^47.11^48.99^~4~^~04/01/2015~ -~01133~^~204~^43.90^15^0.53^~1~^~DA~^^^1^41.09^47.78^14^42.75^45.05^~4~^~04/01/2015~ -~01133~^~205~^1.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~207~^4.13^15^0.20^~1~^~A~^^^1^3.46^6.21^14^3.70^4.56^~4~^~04/01/2015~ -~01133~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01133~^~211~^0.56^15^0.03^~1~^~A~^^^1^0.30^0.80^14^0.48^0.63^~4~^~04/01/2015~ -~01133~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01133~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01133~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01133~^~255~^2.78^15^0.27^~1~^~A~^^^1^1.39^4.90^14^2.18^3.37^~4~^~04/01/2015~ -~01133~^~269~^0.56^15^0.03^~1~^~A~^^^1^0.30^0.80^14^0.48^0.63^~4~^~04/01/2015~ -~01133~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01133~^~303~^7.20^15^0.14^~1~^~A~^^^1^6.24^8.02^14^6.88^7.51^~4~^~04/01/2015~ -~01133~^~309~^3.15^3^^~1~^~A~^^^1^2.63^3.50^^^^~2~^~04/01/2012~ -~01133~^~323~^3.88^0^^~4~^~BFSN~^~01123~^^^^^^^^^~06/01/2015~ -~01133~^~418~^2.96^15^0.29^~1~^~A~^^^1^1.38^4.86^14^2.33^3.58^~4~^~04/01/2015~ -~01133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01134~^~203~^48.17^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~204~^43.95^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~205~^2.38^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01134~^~207~^3.63^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~255~^1.87^14^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~303~^8.28^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~309~^5.71^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~418~^10.51^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~203~^76.92^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~204~^0.04^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~205~^4.17^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01135~^~207~^4.25^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~255~^14.62^5^0.54^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01135~^~303~^0.23^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~309~^0.15^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~323~^0.00^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01135~^~418~^0.49^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01136~^~203~^82.40^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~204~^0.04^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~205~^4.47^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01136~^~207~^4.55^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~255~^8.54^5^0.53^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01136~^~303~^0.24^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~309~^0.16^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01136~^~418~^0.53^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01137~^~203~^33.63^15^0.38^~1~^~A~^^^1^30.20^35.40^14^32.79^34.46^~4~^~04/01/2015~ -~01137~^~204~^59.13^15^0.47^~1~^~DA~^^^1^56.65^61.39^14^58.11^60.14^~4~^~04/01/2015~ -~01137~^~205~^0.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~207~^3.51^15^0.06^~1~^~A~^^^1^3.14^4.18^14^3.37^3.64^~4~^~04/01/2015~ -~01137~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01137~^~211~^0.23^15^0.01^~1~^~A~^^^1^0.07^0.30^14^0.19^0.26^~1, 4~^~04/01/2015~ -~01137~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01137~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01137~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01137~^~255~^3.08^15^0.26^~1~^~A~^^^1^1.47^4.38^14^2.51^3.64^~4~^~04/01/2015~ -~01137~^~269~^0.23^15^0.01^~1~^~A~^^^1^0.07^0.30^14^0.19^0.26^~4~^~04/01/2015~ -~01137~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01137~^~303~^9.56^15^0.13^~1~^~A~^^^1^8.65^10.20^14^9.26^9.85^~4~^~04/01/2015~ -~01137~^~309~^7.73^3^^~1~^~A~^^^1^7.30^7.95^^^^~2~^~04/01/2012~ -~01137~^~323~^4.81^3^^~1~^~A~^^^1^3.59^6.85^^^^~2~^~04/01/2012~ -~01137~^~418~^5.11^15^0.29^~1~^~A~^^^1^3.64^7.31^14^4.46^5.74^~4~^~04/01/2015~ -~01137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01137~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01138~^~203~^12.81^13^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~204~^13.77^18^0.21^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~205~^1.45^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01138~^~207~^1.14^17^0.07^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~255~^70.83^13^0.46^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~269~^0.93^0^^~4~^~BFSN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~303~^3.85^7^0.47^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~309~^1.41^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~323~^1.34^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01138~^~418~^5.40^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01138~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01139~^~203~^13.87^3^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~204~^13.27^3^0.63^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~205~^1.35^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01139~^~207~^1.08^3^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~255~^70.43^3^0.49^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~269~^0.94^0^^~4~^~BFSN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~303~^3.64^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~309~^1.33^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~323~^1.29^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01139~^~418~^5.10^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01140~^~203~^13.05^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~204~^11.09^6^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~205~^0.41^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01140~^~207~^1.10^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~255~^74.35^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~269~^0.40^0^^~4~^~BFCN~^~01123~^^^^^^^^^~02/01/2009~ -~01140~^~303~^3.65^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~309~^1.47^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~323~^1.08^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01140~^~418~^1.58^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01141~^~203~^13.68^5^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~204~^11.88^5^0.18^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~205~^1.15^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01141~^~207~^0.79^4^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~255~^72.50^5^0.37^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~303~^4.10^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~309~^1.58^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~418~^1.69^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~203~^55.50^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~204~^13.00^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~205~^21.80^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~207~^5.84^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~255~^3.86^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~269~^21.80^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01144~^~303~^3.16^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~309~^1.82^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~323~^1.26^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~ -~01144~^~418~^3.52^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01145~^~203~^0.85^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~204~^81.11^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01145~^~207~^0.09^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01145~^~255~^16.17^7^0.07^~1~^~A~^^^2^15.80^16.61^2^15.84^16.49^~2 3~^~11/01/2002~ -~01145~^~269~^0.06^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01145~^~303~^0.02^18^0.01^~1~^~A~^^^7^0.00^0.15^7^-8.0e-03^0.04^~2, 3~^~03/01/2003~ -~01145~^~309~^0.09^18^0.01^~1~^~A~^^^7^0.05^0.26^5^0.05^0.11^~2, 3~^~03/01/2003~ -~01145~^~323~^2.32^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~341~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~342~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~343~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~344~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~345~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~346~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~347~^0.00^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01145~^~418~^0.17^4^^~1~^^^^1^0.13^0.22^^^^~2, 3~^~03/01/2003~ -~01145~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01145~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01146~^~203~^37.86^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~204~^27.34^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~205~^3.41^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01146~^~207~^6.39^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~255~^25.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~269~^0.90^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~303~^0.87^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~309~^3.19^4^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~323~^0.25^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~418~^1.40^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01146~^~573~^0.00^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~578~^0.00^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01151~^~203~^3.37^12^0.03^~1~^~A~^^^1^3.27^3.67^11^3.29^3.44^~2, 3~^~12/01/2008~ -~01151~^~204~^0.18^0^^~1~^^^^^^^^^^^~04/01/2017~ -~01151~^~205~^4.86^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~01151~^~207~^0.75^12^6.0e-03^~1~^~A~^^^1^0.71^0.78^11^0.74^0.76^~2, 3~^~12/01/2008~ -~01151~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~213~^5.09^12^0.04^~1~^~A~^^^1^4.67^5.27^11^4.99^5.19^~2, 3~^~12/01/2008~ -~01151~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~255~^90.84^12^0.03^~1~^~A~^^^1^90.58^91.00^11^90.76^90.91^~2, 3~^~12/01/2008~ -~01151~^~269~^5.09^12^0.04^~1~^~A~^^^1^4.67^5.27^11^4.99^5.19^~2, 3~^~12/01/2008~ -~01151~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~303~^0.03^4^3.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01151~^~309~^0.42^27^3.0e-03^~1~^~A~^^^8^0.28^0.45^14^0.41^0.42^~2, 3~^~12/01/2008~ -~01151~^~323~^0.01^12^2.0e-03^~1~^~A~^^^1^0.00^0.02^11^2.0e-03^9.0e-03^~1, 2, 3~^~12/01/2008~ -~01151~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~344~^0.00^12^2.0e-03^~1~^~A~^^^1^0.00^0.02^11^-2.0e-03^5.0e-03^~1, 2, 3~^~12/01/2008~ -~01151~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~418~^0.50^4^0.06^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01152~^~203~^3.95^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~204~^1.98^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~205~^5.49^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01152~^~207~^0.87^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~255~^87.71^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~309~^0.41^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~418~^0.39^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~203~^6.81^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~204~^7.56^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~205~^10.04^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01153~^~207~^1.55^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~255~^74.04^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~303~^0.19^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~309~^0.77^26^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~418~^0.16^9^0.01^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~203~^36.16^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~204~^0.77^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~205~^51.98^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01154~^~207~^7.93^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~255~^3.16^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~269~^51.98^0^^~4~^~BFZN~^~01091~^^^^^^^^^~01/01/2003~ -~01154~^~303~^0.32^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~309~^4.08^7^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~01154~^~418~^4.03^15^0.34^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01154~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01155~^~203~^35.10^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~204~^0.72^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~205~^52.19^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01155~^~207~^8.03^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~255~^3.96^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~269~^52.19^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01155~^~303~^0.31^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~309~^4.41^10^0.12^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~323~^0.01^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~ -~01155~^~418~^3.99^17^0.32^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01156~^~203~^30.52^7^0.77^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~204~^35.59^7^1.00^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~205~^2.17^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01156~^~207~^3.72^6^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~255~^29.01^7^1.21^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~269~^2.17^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01156~^~303~^1.88^6^0.70^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~309~^1.59^4^0.56^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~323~^0.31^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01156~^~418~^0.12^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01157~^~203~^21.58^26^0.92^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~204~^29.84^464^0.41^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01157~^~207~^2.94^11^0.15^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~255~^45.52^464^0.43^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~269~^0.12^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~01157~^~303~^1.62^6^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~309~^0.66^21^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01157~^~418~^0.22^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01158~^~203~^7.75^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~204~^1.47^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~205~^11.91^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01158~^~207~^0.64^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~210~^6.72^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~211~^0.52^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~212~^0.68^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~213~^2.14^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01158~^~255~^78.30^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01159~^~203~^18.52^69^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~204~^21.08^83^0.52^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01159~^~207~^1.58^65^0.09^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~255~^60.75^83^0.73^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01159~^~303~^1.90^65^0.24^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~309~^0.92^69^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~323~^0.18^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01159~^~418~^0.19^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01160~^~203~^14.07^3^^~1~^~A~^^^1^14.00^14.10^^^^~2~^~04/01/2012~ -~01160~^~204~^22.93^3^^~1~^~A~^^^1^22.42^23.19^^^^~2~^~04/01/2012~ -~01160~^~205~^1.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~207~^10.37^3^^~1~^~A~^^^1^10.20^10.70^^^^~2~^~04/01/2012~ -~01160~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01160~^~211~^0.07^3^^~1~^~A~^^^1^0.00^0.10^^^^~1, 2~^~04/01/2012~ -~01160~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01160~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01160~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01160~^~255~^50.87^3^^~1~^~A~^^^1^49.80^51.60^^^^~2~^~04/01/2012~ -~01160~^~269~^0.07^3^^~1~^~A~^^^1^0.00^0.10^^^^~2~^~04/01/2012~ -~01160~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01160~^~303~^3.40^3^^~1~^~A~^^^1^3.05^3.63^^^^~2~^~04/01/2012~ -~01160~^~309~^2.87^3^^~1~^~A~^^^1^2.59^3.07^^^^~2~^~04/01/2012~ -~01160~^~323~^2.28^3^^~1~^~A~^^^1^1.54^3.23^^^^~2~^~04/01/2012~ -~01160~^~418~^1.61^3^^~1~^~A~^^^1^1.45^1.72^^^^~2~^~04/01/2012~ -~01160~^~573~^0.00^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~578~^0.00^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01161~^~203~^11.47^4^0.58^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~204~^12.22^4^0.42^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~205~^23.67^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01161~^~207~^5.27^4^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~255~^47.36^4^0.71^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~269~^23.67^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01161~^~303~^0.40^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~309~^1.92^4^0.93^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~323~^0.11^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01161~^~418~^0.81^4^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01162~^~203~^7.64^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~204~^1.69^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~205~^11.84^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01162~^~207~^0.61^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~210~^6.55^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~211~^0.80^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~212~^0.89^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~213~^2.00^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01162~^~255~^78.30^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01164~^~203~^10.33^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~204~^14.92^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~205~^5.48^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01164~^~207~^2.41^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~210~^0.08^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~213~^0.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~214~^0.05^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01164~^~255~^66.86^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~269~^0.19^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~01164~^~303~^0.35^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~309~^1.26^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~323~^0.09^0^^~4~^~T~^^^^^^^^^^~08/01/2010~ -~01164~^~418~^0.35^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~01165~^~203~^21.44^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~204~^29.98^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~205~^4.63^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01165~^~207~^5.89^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~255~^38.06^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~269~^4.63^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01165~^~303~^0.47^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~309~^2.94^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01165~^~418~^1.38^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01166~^~203~^22.60^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~204~^25.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01166~^~205~^4.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01166~^~207~^4.11^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~255~^44.16^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01166~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01166~^~303~^0.51^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~309~^3.02^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~323~^0.24^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01166~^~418~^1.00^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01167~^~203~^21.56^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~204~^29.68^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~205~^5.56^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01167~^~207~^4.06^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~255~^39.13^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~269~^5.56^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01167~^~303~^0.47^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~309~^3.50^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~323~^0.26^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01167~^~418~^1.03^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01168~^~203~^24.35^62^0.25^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~204~^7.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~205~^1.91^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01168~^~207~^3.64^95^0.11^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~255~^63.10^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~269~^0.52^0^^~4~^~BFNN~^~01009~^^^^^^^^^~01/01/2003~ -~01168~^~303~^0.42^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~309~^1.82^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~323~^0.06^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01168~^~418~^0.49^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01169~^~203~^24.35^62^0.25^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~204~^32.62^138^0.20^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~205~^1.91^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01169~^~207~^2.13^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01169~^~255~^38.98^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01169~^~269~^0.49^0^^~4~^~BFNN~^~01009~^^^^^^^^^~01/01/2003~ -~01169~^~303~^0.72^14^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~309~^3.09^15^0.10^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~323~^0.28^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01169~^~418~^0.83^28^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01171~^~203~^12.33^15^0.06^~1~^~A~^^^1^11.90^12.70^14^12.19^12.47^~4~^~04/01/2015~ -~01171~^~204~^9.95^15^0.15^~1~^~DA~^^^1^8.75^10.84^14^9.60^10.28^~4~^~04/01/2015~ -~01171~^~205~^1.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~207~^0.91^15^0.03^~1~^~A~^^^1^0.71^1.21^14^0.83^0.98^~4~^~04/01/2015~ -~01171~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01171~^~211~^0.25^15^0.01^~1~^~A~^^^1^0.07^0.30^14^0.21^0.29^~1, 4~^~04/01/2015~ -~01171~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01171~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01171~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01171~^~255~^75.81^15^0.08^~1~^~A~^^^1^75.00^76.30^14^75.62^75.99^~4~^~04/01/2015~ -~01171~^~269~^0.25^15^0.01^~1~^~A~^^^1^0.07^0.30^14^0.21^0.29^~4~^~04/01/2015~ -~01171~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01171~^~303~^1.74^15^0.02^~1~^~A~^^^1^1.52^1.96^14^1.67^1.80^~4~^~04/01/2015~ -~01171~^~309~^1.32^3^^~1~^~A~^^^1^1.20^1.51^^^^~2~^~04/01/2012~ -~01171~^~323~^0.72^3^^~1~^~A~^^^1^0.66^0.80^^^^~2~^~04/01/2012~ -~01171~^~418~^1.00^15^0.08^~1~^~A~^^^1^0.42^1.52^14^0.81^1.17^~4~^~04/01/2015~ -~01171~^~573~^0.00^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01171~^~578~^0.00^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~ -~01172~^~203~^10.20^15^0.11^~1~^~A~^^^1^9.42^10.90^14^9.95^10.44^~4~^~04/01/2015~ -~01172~^~204~^0.00^15^0.00^~1~^~DA~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01172~^~205~^1.04^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~207~^0.60^15^0.03^~1~^~A~^^^1^0.14^0.75^14^0.52^0.67^~4~^~04/01/2015~ -~01172~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01172~^~211~^0.25^15^0.01^~1~^~A~^^^1^0.20^0.30^14^0.22^0.28^~4~^~04/01/2015~ -~01172~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01172~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01172~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01172~^~255~^88.17^15^0.07^~1~^~A~^^^1^87.70^88.70^14^88.01^88.32^~4~^~04/01/2015~ -~01172~^~269~^0.25^15^0.01^~1~^~A~^^^1^0.20^0.30^14^0.22^0.28^~4~^~04/01/2015~ -~01172~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2012~ -~01172~^~303~^0.04^15^0.00^~1~^~A~^^^1^0.04^0.04^14^0.03^0.03^~1, 4~^~04/01/2015~ -~01172~^~309~^0.07^3^^~1~^~A~^^^1^0.03^0.09^^^^~2~^~04/01/2012~ -~01172~^~323~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2012~ -~01172~^~418~^0.03^15^9.0e-03^~1~^~A~^^^1^0.02^0.16^14^7.0e-03^0.04^~1, 4~^~04/01/2015~ -~01172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~01172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~01173~^~203~^81.10^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~205~^7.80^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~ -~01173~^~207~^5.30^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~255~^5.80^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~269~^5.40^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01173~^~303~^0.15^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~309~^0.10^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~323~^0.00^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~ -~01173~^~418~^0.18^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01174~^~203~^3.30^13^0.03^~1~^~A~^^^2^3.18^3.61^11^3.23^3.37^~2, 3~^~12/01/2008~ -~01174~^~204~^1.98^14^8.0e-03^~11~^~JO~^^^6^1.90^2.06^8^1.95^1.99^~2, 3~^~12/01/2008~ -~01174~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~207~^0.71^13^0.03^~1~^~A~^^^2^0.31^0.85^11^0.63^0.78^~2, 3~^~12/01/2008~ -~01174~^~210~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~211~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~212~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~213~^5.01^13^0.06^~1~^~A~^^^2^4.11^5.69^11^4.87^5.15^~2, 3~^~12/01/2008~ -~01174~^~214~^0.01^13^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~255~^89.21^17^0.19^~1~^~A~^^^6^87.90^92.08^11^88.78^89.63^~2, 3~^~12/01/2008~ -~01174~^~269~^5.06^13^0.06^~1~^~A~^^^2^4.61^5.69^11^4.92^5.19^~2, 3~^~12/01/2008~ -~01174~^~287~^0.02^13^8.0e-03^~1~^~A~^^^2^0.00^0.11^11^-2.0e-03^0.03^~1, 2, 3~^~12/01/2008~ -~01174~^~303~^0.02^4^2.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01174~^~309~^0.48^29^0.01^~1~^~A~^^^9^0.30^0.84^12^0.45^0.51^~2, 3~^~12/01/2008~ -~01174~^~323~^0.03^12^3.0e-03^~1~^~A~^^^1^0.02^0.05^11^0.02^0.03^~2, 3~^~12/01/2008~ -~01174~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~344~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~418~^0.53^4^0.03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~203~^3.37^12^0.06^~1~^~A~^^^1^3.26^4.03^11^3.23^3.50^~2, 3~^~12/01/2008~ -~01175~^~204~^0.97^6^0.02^~11~^~JO~^^^1^0.84^1.00^5^0.90^1.03^~2, 3~^~12/01/2008~ -~01175~^~205~^4.99^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~207~^0.75^12^0.01^~1~^~A~^^^1^0.70^0.89^11^0.71^0.78^~2, 3~^~12/01/2008~ -~01175~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~213~^5.20^12^0.10^~1~^~A~^^^1^4.84^6.08^11^4.96^5.42^~2, 3~^~12/01/2008~ -~01175~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~255~^89.92^12^0.17^~1~^~A~^^^1^88.04^90.29^11^89.53^90.30^~2, 3~^~12/01/2008~ -~01175~^~269~^5.20^12^0.10^~1~^~A~^^^1^4.84^6.08^11^4.96^5.42^~2, 3~^~12/01/2008~ -~01175~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~303~^0.03^4^4.0e-03^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01175~^~309~^0.42^11^3.0e-03^~1~^~A~^^^1^^^^^^^~12/01/2008~ -~01175~^~323~^0.01^12^2.0e-03^~1~^~A~^^^1^0.01^0.02^11^8.0e-03^0.01^~1, 2, 3~^~12/01/2008~ -~01175~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~342~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~344~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~418~^0.47^4^0.01^~1~^~A~^^^4^^^^^^^~12/01/2008~ -~01175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01178~^~203~^7.00^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~204~^14.10^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~205~^7.00^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~207~^0.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~255~^71.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~269~^0.30^0^^~4~^~BFNN~^~01056~^^^^^^^^^~01/01/2003~ -~01178~^~303~^0.06^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~309~^0.27^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~323~^0.40^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01178~^~418~^0.30^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01179~^~203~^3.50^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~204~^10.60^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~205~^7.10^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~207~^0.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~255~^78.10^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~269~^0.22^0^^~4~^~BFNN~^~01056~^^^^^^^^^~01/01/2003~ -~01179~^~303~^0.07^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~309~^0.50^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~323~^0.30^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01179~^~418~^0.42^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01180~^~203~^3.10^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~204~^0.00^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~205~^15.60^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~207~^0.70^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~255~^80.60^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~269~^0.39^0^^~4~^~BFNN~^~01056~^^^^^^^^^~01/01/2003~ -~01180~^~303~^0.00^0^^~8~^^^^^^^^^^^~01/01/2007~ -~01180~^~309~^0.50^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~323~^0.00^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~ -~01180~^~418~^0.30^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01180~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01184~^~203~^3.86^0^^~8~^~LC~^^^^^^^^^^~01/01/1996~ -~01184~^~204~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1996~ -~01184~^~205~^7.50^0^^~8~^~LC~^^^^^^^^^^~01/01/1996~ -~01184~^~207~^1.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1996~ -~01184~^~255~^87.43^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01184~^~269~^7.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01184~^~303~^0.12^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01184~^~309~^0.67^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~323~^0.00^0^^~4~^~BFFN~^~01119~^^^^^^^^^~01/01/2003~ -~01184~^~418~^0.43^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01185~^~203~^40.00^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~204~^5.00^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~205~^40.00^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~207~^6.40^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~255~^8.60^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01185~^~269~^1.50^0^^~4~^~BFNN~^~01009~^^^^^^^^^~01/01/2003~ -~01185~^~303~^5.00^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~ -~01185~^~309~^3.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~323~^0.04^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~01185~^~418~^1.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01186~^~203~^15.69^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~204~^1.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~205~^7.66^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~207~^3.77^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~209~^1.05^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~210~^0.64^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~211~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~212~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~213~^4.84^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~255~^71.87^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~269~^5.48^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~303~^0.19^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~309~^1.50^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~323~^0.02^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~342~^0.01^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~344~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~418~^0.95^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01186~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01187~^~203~^3.53^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~204~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~205~^23.53^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~207~^1.37^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~255~^71.57^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~01187~^~269~^14.97^0^^~4~^~BFNN~^~01118~^^^^^^^^^~02/01/2009~ -~01187~^~303~^0.42^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~309~^1.13^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~323~^0.00^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~ -~01187~^~418~^0.50^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01187~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01188~^~203~^12.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~204~^21.00^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01188~^~205~^9.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~207~^5.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~255~^51.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~269~^6.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~303~^0.19^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~309~^1.64^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~203~^16.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~204~^9.50^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01189~^~205~^16.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~207~^6.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~255~^51.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~269~^8.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~303~^0.16^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~309~^2.36^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~203~^22.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~204~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01190~^~205~^11.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~207~^6.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~255~^58.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~269~^6.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~303~^0.05^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~309~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~203~^16.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~204~^22.00^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01191~^~205~^9.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~207~^6.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~255~^45.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~269~^8.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~303~^0.18^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~309~^1.84^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~203~^19.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~204~^10.60^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01192~^~205~^11.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~207~^6.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~255~^51.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~269~^8.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~303~^0.14^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~309~^2.49^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~203~^4.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~204~^12.00^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01193~^~205~^6.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~207~^0.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~255~^76.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~269~^6.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~303~^0.06^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~203~^4.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~204~^1.30^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~01194~^~205~^15.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~207~^1.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~255~^77.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~269~^7.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~303~^0.05^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01199~^~203~^2.60^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~204~^1.40^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~205~^9.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~207~^1.00^1^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~01199~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~01199~^~255~^86.00^1^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~01199~^~269~^5.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~01199~^~309~^0.81^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~323~^0.04^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~418~^0.52^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01199~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01200~^~203~^3.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~204~^5.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~205~^25.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~01200~^~207~^0.56^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~01200~^~255~^66.44^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~01200~^~269~^16.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~01200~^~303~^0.03^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~309~^0.31^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~323~^0.09^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~418~^1.48^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01202~^~203~^2.99^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~204~^1.90^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~205~^12.13^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~207~^0.81^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~209~^1.60^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~210~^4.79^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~211~^0.53^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~212~^0.41^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~213~^3.83^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~255~^82.17^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~269~^9.55^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~01202~^~303~^0.24^0^^~4~^~O~^^^^^^^^^^~06/01/2005~ -~01202~^~309~^0.39^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~323~^0.04^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~342~^0.02^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~344~^0.03^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~418~^0.33^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~01202~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~01203~^~203~^4.86^20^0.05^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~204~^1.41^17^0.10^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~205~^18.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01203~^~207~^1.03^12^0.03^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~255~^74.10^20^0.51^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~269~^2.90^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~01203~^~303~^0.07^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~309~^0.82^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~323~^0.06^0^^~4~^~BFNN~^~43261~^^^^^^^^^~03/01/2005~ -~01203~^~418~^0.52^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~573~^0.00^0^^~4~^~BFNN~^~43261~^^^^^^^^^~02/01/2009~ -~01203~^~578~^0.00^0^^~4~^~BFNN~^~43261~^^^^^^^^^~02/01/2009~ -~01204~^~203~^20.00^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~01204~^~204~^20.00^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~01204~^~205~^1.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01204~^~207~^8.03^6^0.38^~1~^~A~^^^1^7.29^9.26^5^7.02^9.02^~2, 3~^~05/01/2007~ -~01204~^~255~^50.60^0^^~4~^~BFZN~^~01208~^^^^^^^^^~05/01/2007~ -~01204~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~01204~^~303~^0.90^6^0.10^~1~^~A~^^^1^0.57^1.30^5^0.63^1.16^~2, 3~^~05/01/2007~ -~01204~^~309~^3.87^6^0.83^~1~^~A~^^^1^1.24^5.43^5^1.73^6.01^~2, 3~^~05/01/2007~ -~01204~^~323~^0.17^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~ -~01204~^~418~^2.26^3^0.23^~1~^~A~^^^1^1.78^2.52^2^1.23^3.27^~2, 3~^~05/01/2007~ -~01204~^~573~^0.00^0^^~4~^~BFZN~^~01208~^^^^^^^^^~02/01/2009~ -~01204~^~578~^0.00^0^^~4~^~BFZN~^~01208~^^^^^^^^^~02/01/2009~ -~01205~^~203~^0.69^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~204~^13.50^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~205~^35.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~207~^0.55^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~255~^50.06^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~269~^33.04^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~303~^0.59^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~309~^0.25^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~323~^1.58^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~203~^0.68^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~204~^21.47^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~205~^75.42^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~207~^0.79^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~255~^1.52^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~269~^58.01^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~303~^0.63^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~309~^0.23^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~323~^0.41^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01208~^~203~^24.70^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01208~^~204~^17.60^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01208~^~205~^3.50^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01208~^~207~^3.60^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~255~^50.60^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~269~^0.55^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~303~^0.52^5^0.06^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~309~^3.23^5^0.17^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~323~^0.15^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~418~^1.46^8^0.13^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~573~^0.00^0^^~4~^~BFZN~^~01009~^^^^^^^^^~04/01/2007~ -~01208~^~578~^0.00^0^^~4~^~BFZN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~203~^24.69^2^^~8~^~LC~^^^1^24.69^24.69^1^^^^~04/01/2007~ -~01209~^~204~^19.40^2^^~8~^~LC~^^^1^17.64^21.16^1^^^^~04/01/2007~ -~01209~^~205~^3.41^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01209~^~207~^4.30^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~255~^48.20^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~269~^0.56^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~303~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~309~^4.30^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~323~^0.17^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~418~^1.66^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~573~^0.00^0^^~4~^~BFZN~^~01009~^^^^^^^^^~04/01/2007~ -~01209~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~01211~^~203~^3.15^27^0.02^~1~^~A~^^^2^3.07^3.31^13^3.09^3.21^~2, 3~^~12/01/2008~ -~01211~^~204~^3.27^27^0.02^~1~^~A~^^^2^3.07^3.36^21^3.22^3.32^~2, 3~^~12/01/2008~ -~01211~^~205~^4.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01211~^~207~^0.67^24^4.0e-03^~1~^~A~^^^2^0.66^0.70^15^0.66^0.68^~2, 3~^~12/01/2008~ -~01211~^~210~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~211~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~212~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~213~^5.05^24^0.05^~1~^~A~^^^2^4.85^5.57^17^4.94^5.16^~2, 3~^~12/01/2008~ -~01211~^~214~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~255~^88.13^28^0.05^~1~^~A~^^^2^87.69^89.20^20^88.02^88.23^~2, 3~^~12/01/2008~ -~01211~^~269~^5.05^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01211~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~303~^0.03^46^2.0e-03^~1~^~A~^^^9^0.00^0.07^3^0.02^0.03^~1, 2, 3~^~12/01/2008~ -~01211~^~309~^0.37^42^7.0e-03^~1~^~A~^^^9^0.25^0.47^16^0.35^0.38^~2, 3~^~12/01/2008~ -~01211~^~323~^0.07^24^3.0e-03^~1~^~A~^^^2^0.03^0.08^20^0.06^0.07^~2, 3~^~12/01/2008~ -~01211~^~341~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~342~^0.00^24^1.0e-03^~1~^~A~^^^2^0.00^0.01^22^2.0e-03^6.0e-03^~1, 2, 3~^~12/01/2008~ -~01211~^~343~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~344~^0.00^24^1.0e-03^~1~^~A~^^^2^0.00^0.00^11^-1.0e-03^3.0e-03^~1, 2, 3~^~12/01/2008~ -~01211~^~345~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~346~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~347~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~418~^0.45^14^0.02^~1~^~A~^^^1^0.27^0.53^10^0.40^0.49^~2, 3~^~12/01/2008~ -~01211~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01211~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~01212~^~203~^26.32^22^0.17^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~204~^26.71^30^0.25^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~205~^38.42^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01212~^~207~^6.08^20^0.09^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~255~^2.47^25^0.13^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~269~^38.42^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01212~^~303~^0.47^12^0.06^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~309~^3.34^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~323~^0.58^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~ -~01212~^~418~^3.25^31^0.28^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01212~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~01215~^~203~^17.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~204~^14.10^0^^~4~^^^^^^^^^^^~07/01/2017~ -~01215~^~205~^10.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~207~^5.90^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~01215~^~255~^51.80^0^^~4~^^^^^^^^^^^~07/01/2017~ -~01215~^~269~^8.02^0^^~4~^~BFNN~^~01046~^^^^^^^^^~07/01/2017~ -~01215~^~303~^0.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~309~^2.36^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~323~^0.27^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~ -~01215~^~418~^1.11^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~01216~^~203~^3.98^19^0.03^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~204~^1.15^17^0.08^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~205~^18.64^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01216~^~207~^0.93^9^0.04^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~255~^75.30^17^0.59^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~269~^18.64^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01216~^~303~^0.06^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~309~^0.67^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~323~^0.02^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01216~^~418~^0.43^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01217~^~203~^4.37^26^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~204~^1.08^26^0.05^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~205~^19.05^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~ -~01217~^~207~^1.02^12^0.02^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~255~^74.48^26^0.61^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~269~^19.05^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01217~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~309~^0.74^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~323~^0.02^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01217~^~418~^0.47^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01218~^~203~^4.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~204~^0.20^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~205~^19.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01218~^~255~^75.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~269~^19.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01218~^~303~^0.07^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~309~^0.74^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~323~^0.06^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~418~^0.47^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01218~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01219~^~203~^4.86^20^0.05^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~204~^1.41^17^0.10^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~205~^18.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01219~^~207~^1.03^12^0.03^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~255~^74.10^20^0.51^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~269~^2.90^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~01219~^~303~^0.07^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~309~^0.82^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~323~^0.06^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2005~ -~01219~^~418~^0.52^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~573~^0.00^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~01219~^~578~^0.00^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~ -~01220~^~203~^4.93^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~204~^1.25^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~205~^13.80^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01220~^~207~^1.02^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~255~^79.00^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~269~^13.80^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~01220~^~303~^0.07^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~309~^0.83^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~323~^0.02^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01220~^~418~^0.53^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01221~^~203~^3.86^0^^~8~^~LC~^^^^^^^^^^~01/01/1996~ -~01221~^~204~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1996~ -~01221~^~205~^7.50^0^^~8~^~LC~^^^^^^^^^^~01/01/1996~ -~01221~^~207~^1.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1996~ -~01221~^~255~^87.43^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01221~^~269~^7.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~01221~^~303~^0.12^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01221~^~309~^0.67^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~323~^0.00^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01221~^~418~^0.43^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01221~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01222~^~203~^3.53^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~204~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~205~^23.53^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~207~^1.37^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~255~^71.57^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~01222~^~269~^14.97^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~ -~01222~^~303~^0.42^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~309~^1.13^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~323~^0.00^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01222~^~418~^0.50^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01222~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01223~^~203~^45.71^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~204~^17.14^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~205~^18.50^0^^~8~^^^^^^^^^^^~04/01/2009~ -~01223~^~207~^3.65^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01223~^~255~^15.00^0^^~8~^^^^^^^^^^^~04/01/2009~ -~01223~^~269~^5.71^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~303~^8.57^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~309~^7.14^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~323~^7.07^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~418~^3.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~573~^7.07^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01223~^~578~^3.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~203~^50.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~204~^12.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~205~^22.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~207~^4.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~255~^12.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~269~^4.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~303~^12.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~309~^10.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~323~^9.45^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~418~^4.20^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~573~^9.45^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01224~^~578~^4.20^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~01225~^~203~^6.84^4^0.37^~1~^~A~^^^1^6.12^7.91^3^5.63^8.04^~2, 3~^~05/01/2009~ -~01225~^~204~^7.35^4^0.27^~1~^~A~^^^1^6.73^7.98^3^6.46^8.23^~2, 3~^~05/01/2009~ -~01225~^~205~^55.35^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~207~^1.74^4^0.12^~1~^~A~^^^1^1.56^2.12^3^1.34^2.14^~2, 3~^~05/01/2009~ -~01225~^~210~^41.77^4^0.47^~1~^~A~^^^1^40.87^42.89^3^40.27^43.27^~2, 3~^~05/01/2009~ -~01225~^~211~^1.70^4^0.30^~1~^~A~^^^1^1.13^2.31^3^0.73^2.66^~2, 3~^~05/01/2009~ -~01225~^~212~^0.32^4^0.03^~1~^~A~^^^1^0.24^0.42^3^0.20^0.44^~2, 3~^~05/01/2009~ -~01225~^~213~^4.92^4^0.82^~1~^~A~^^^1^3.41^6.89^3^2.27^7.55^~2, 3~^~05/01/2009~ -~01225~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~255~^28.71^4^1.06^~1~^~A~^^^1^25.55^30.25^3^25.30^32.10^~2, 3~^~05/01/2009~ -~01225~^~269~^49.74^4^0.36^~1~^~A~^^^1^49.00^50.50^3^48.59^50.88^~2, 3~^~05/01/2009~ -~01225~^~287~^1.03^4^0.15^~1~^~A~^^^1^0.73^1.31^3^0.53^1.52^~2, 3~^~05/01/2009~ -~01225~^~303~^0.17^4^0.01^~1~^~A~^^^1^0.14^0.21^3^0.12^0.22^~2, 3~^~05/01/2009~ -~01225~^~309~^0.79^4^0.03^~1~^~A~^^^1^0.73^0.89^3^0.67^0.90^~2, 3~^~05/01/2009~ -~01225~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01225~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~01225~^~418~^0.31^4^0.05^~1~^~A~^^^1^0.18^0.43^3^0.13^0.48^~2, 3~^~05/01/2009~ -~01225~^~573~^0.00^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01225~^~578~^0.00^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~ -~01226~^~203~^10.00^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~01226~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~01226~^~205~^2.00^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~01226~^~207~^1.30^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~255~^87.00^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~01226~^~269~^2.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~01226~^~303~^1.98^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~309~^0.98^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~323~^1.59^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~ -~01226~^~418~^0.34^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01227~^~203~^24.51^6^1.11^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~204~^24.35^6^0.42^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~205~^2.04^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~207~^6.93^6^0.13^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~210~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~211~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~212~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~213~^0.25^6^0.25^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~214~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~255~^42.17^6^1.05^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~269~^0.55^6^0.19^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~287~^0.30^6^0.08^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~303~^0.18^6^9.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~309~^3.28^6^0.16^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~323~^0.49^6^0.02^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~341~^0.00^6^2.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~342~^0.04^6^2.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~343~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~344~^0.06^6^0.04^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~345~^0.01^6^7.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~346~^0.10^6^0.08^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~347~^0.03^6^0.02^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~418~^1.70^6^0.11^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~203~^18.09^6^0.21^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~204~^23.82^6^0.97^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~205~^2.98^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~207~^3.68^6^0.17^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~210~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~211~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~212~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~213~^2.32^6^0.06^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~214~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~255~^51.42^6^0.89^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~269~^2.32^6^0.06^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~287~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~303~^0.20^6^0.01^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~309~^2.58^6^0.08^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~323~^0.37^6^0.03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~341~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~342~^0.04^6^1.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~343~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~344~^0.03^6^0.01^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~345~^0.00^6^1.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~346~^0.04^6^0.02^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~347~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~418~^1.68^6^0.07^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~573~^0.00^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01228~^~578~^0.00^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~ -~01229~^~203~^20.38^6^0.67^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~204~^24.31^6^1.74^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~205~^2.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~207~^4.07^6^0.23^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~210~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~211~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~212~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~213~^1.60^6^0.54^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~214~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~255~^48.70^6^1.76^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~269~^1.76^6^0.45^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~287~^0.16^6^0.10^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~303~^0.18^6^0.01^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~309~^3.06^6^0.16^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~323~^0.47^6^0.02^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~341~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~342~^0.04^6^3.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~343~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~344~^0.01^6^1.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~345~^0.00^6^1.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~346~^0.01^6^1.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~347~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~418~^1.75^6^0.14^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01230~^~203~^3.21^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~204~^3.31^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~205~^4.88^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~207~^0.68^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~255~^87.91^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~269~^4.88^0^^~4~^~NR~^^^^^^^^^^~06/01/2011~ -~01230~^~303~^0.03^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~309~^0.38^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~323~^0.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~418~^0.46^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~203~^4.93^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~204~^1.25^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~205~^13.80^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~207~^1.02^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~255~^79.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~269~^5.43^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~01231~^~303~^0.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~309~^0.83^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~323~^0.02^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~418~^0.53^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01235~^~203~^4.40^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~204~^0.80^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~205~^19.70^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~207~^1.60^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~255~^73.50^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~269~^12.61^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~303~^0.04^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~309~^0.49^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~323~^0.08^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~418~^0.49^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~203~^4.10^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~204~^13.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~205~^22.20^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~207~^0.90^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~255~^59.80^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~269~^21.16^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~303~^0.21^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~309~^0.52^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~323~^0.61^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~418~^0.50^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~203~^4.10^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~204~^24.10^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~205~^24.50^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~207~^1.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~255~^46.30^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~269~^18.30^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~303~^0.29^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~309~^0.82^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~323~^0.42^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~418~^0.49^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~203~^4.29^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~204~^8.57^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~205~^37.14^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~207~^1.10^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~255~^48.90^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01238~^~269~^18.57^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~303~^0.26^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01238~^~309~^0.60^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~323~^0.40^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~418~^0.05^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~203~^3.70^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~204~^7.40^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~205~^39.60^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~207~^0.55^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~255~^48.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01239~^~269~^21.30^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~303~^1.10^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01239~^~309~^0.32^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~323~^0.40^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~418~^0.01^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~573~^0.00^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~578~^0.00^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01240~^~203~^5.21^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~204~^21.88^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~205~^34.38^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~207~^1.11^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~255~^37.43^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01240~^~269~^25.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~309~^0.86^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~323~^0.18^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~418~^0.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01241~^~203~^4.29^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~204~^3.04^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~205~^39.64^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01241~^~207~^0.39^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~255~^52.63^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01241~^~269~^17.86^1^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~01241~^~303~^0.09^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~309~^0.21^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~323~^0.14^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~418~^0.02^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~573~^0.00^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~578~^0.00^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01242~^~203~^5.71^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~204~^2.86^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~205~^42.86^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~207~^0.39^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~255~^48.13^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01242~^~269~^6.58^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01242~^~309~^0.21^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~323~^0.14^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~418~^0.02^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~573~^0.00^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~578~^0.00^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01243~^~203~^4.41^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~205~^28.86^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01243~^~207~^1.20^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~255~^65.52^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~269~^8.82^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~309~^0.31^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~323~^0.00^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~418~^0.52^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~573~^0.00^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~578~^0.00^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01244~^~203~^4.41^2^^~8~^~LC~^^^1^4.41^4.41^1^^^^~04/01/2011~ -~01244~^~204~^1.47^2^^~8~^~LC~^^^1^1.47^1.47^1^^^^~04/01/2011~ -~01244~^~205~^32.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~01244~^~207~^0.69^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~255~^61.43^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~269~^22.06^2^^~8~^~LC~^^^1^22.06^22.06^1^^^^~04/01/2011~ -~01244~^~303~^0.53^2^^~8~^~LC~^^^1^0.00^1.06^1^^^^~04/01/2011~ -~01244~^~309~^0.43^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~323~^0.20^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~418~^0.14^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~573~^0.00^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~578~^0.00^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01249~^~203~^8.26^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~204~^1.83^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~205~^10.94^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01249~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~210~^4.81^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~211~^1.24^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~212~^1.09^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~213~^2.46^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01249~^~255~^78.40^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01250~^~203~^4.40^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~204~^3.08^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~205~^11.88^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~207~^0.90^0^^~4~^~BFZN~^~01110~^^^^^^^^^~04/01/2011~ -~01250~^~255~^79.74^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~269~^2.64^0^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~01250~^~303~^1.98^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~309~^1.65^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~323~^1.46^0^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~01250~^~418~^0.66^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~573~^1.46^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01250~^~578~^0.66^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~01251~^~203~^23.54^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~204~^32.14^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01251~^~205~^0.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01251~^~207~^3.72^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~255~^40.48^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~01251~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01251~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~303~^0.59^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~309~^3.01^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~323~^0.25^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~418~^1.23^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01252~^~203~^16.09^16^0.17^~1~^~A~^^^1^12.63^18.12^8^15.67^16.49^~2, 3~^~02/01/2016~ -~01252~^~204~^23.06^16^0.26^~1~^~A~^^^1^21.51^26.58^7^22.44^23.68^~2, 3~^~02/01/2016~ -~01252~^~205~^8.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~207~^6.94^16^0.17^~1~^~A~^^^1^5.79^9.62^6^6.50^7.36^~2, 3~^~02/01/2016~ -~01252~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~211~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~212~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~213~^6.10^9^0.08^~1~^~A~^^^1^4.44^7.08^2^5.77^6.41^~2, 3~^~02/01/2016~ -~01252~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~255~^45.07^16^0.14^~1~^~A~^^^1^44.24^46.41^10^44.74^45.38^~2, 3~^~02/01/2016~ -~01252~^~269~^6.24^9^0.09^~1~^~A~^^^1^4.57^7.18^2^5.88^6.58^~2, 3~^~02/01/2016~ -~01252~^~287~^0.14^9^0.01^~1~^~A~^^^1^0.10^0.21^4^0.11^0.17^~2, 3~^~05/01/2015~ -~01252~^~303~^0.95^16^0.08^~1~^~A~^^^1^0.22^1.91^8^0.75^1.14^~2, 3~^~02/01/2016~ -~01252~^~309~^2.21^16^0.02^~1~^~A~^^^1^1.91^2.37^7^2.14^2.28^~2, 3~^~02/01/2016~ -~01252~^~323~^0.84^2^^~1~^~A~^^^1^0.65^1.80^^^^^~06/01/2015~ -~01252~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01252~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~05/01/2011~ -~01252~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01252~^~344~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^^~05/01/2011~ -~01252~^~345~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^^~05/01/2011~ -~01252~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01252~^~347~^0.02^2^^~1~^~A~^^^1^0.00^0.02^^^^~1~^~05/01/2015~ -~01252~^~418~^1.52^3^0.04^~1~^~A~^^^1^1.40^1.60^1^0.99^2.05^~2, 3~^~06/01/2015~ -~01252~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01252~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~203~^18.13^13^0.12^~1~^~A~^^^1^16.30^21.50^9^17.84^18.42^~2, 3~^~05/01/2011~ -~01253~^~204~^31.79^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~207~^6.78^13^0.12^~1~^~A~^^^1^4.59^7.46^8^6.49^7.06^~2, 3~^~05/01/2011~ -~01253~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~211~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~213~^2.15^5^0.09^~1~^~A~^^^1^1.15^4.67^2^1.71^2.59^~2, 3~^~05/01/2011~ -~01253~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~255~^39.61^13^0.10^~1~^~A~^^^1^38.40^40.80^9^39.36^39.84^~2, 3~^~05/01/2011~ -~01253~^~269~^2.26^5^0.09^~1~^~A~^^^1^1.22^4.83^2^1.82^2.70^~2, 3~^~05/01/2011~ -~01253~^~287~^0.11^5^0.00^~1~^~A~^^^1^0.07^0.20^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~303~^0.63^19^0.02^~1~^~A~^^^1^0.13^1.03^15^0.57^0.68^~2, 3~^~05/01/2011~ -~01253~^~309~^2.49^19^0.02^~1~^~A~^^^1^2.10^3.14^10^2.42^2.55^~2, 3~^~05/01/2011~ -~01253~^~323~^0.80^2^^~1~^~A~^^^1^0.78^0.80^^^^^~05/01/2011~ -~01253~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01253~^~342~^0.13^2^^~1~^~A~^^^1^0.13^0.14^^^^^~05/01/2011~ -~01253~^~343~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~05/01/2011~ -~01253~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~05/01/2011~ -~01253~^~345~^0.02^2^^~1~^~A~^^^1^0.01^0.02^^^^^~05/01/2011~ -~01253~^~346~^0.03^2^^~1~^~A~^^^1^0.02^0.11^^^^^~05/01/2011~ -~01253~^~347~^0.08^2^^~1~^~A~^^^1^0.00^0.09^^^^~1~^~05/01/2011~ -~01253~^~418~^1.50^4^0.03^~1~^~A~^^^1^1.20^1.60^2^1.36^1.62^~2, 3~^~05/01/2011~ -~01253~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01254~^~203~^16.86^7^0.32^~1~^~A~^^^1^15.70^18.10^6^16.05^17.65^~2, 3~^~05/01/2011~ -~01254~^~204~^25.63^7^0.49^~1~^~A~^^^1^23.20^27.00^6^24.42^26.83^~2, 3~^~05/01/2011~ -~01254~^~205~^8.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~207~^4.96^7^0.33^~1~^~A~^^^1^4.18^6.82^6^4.14^5.77^~2, 3~^~05/01/2011~ -~01254~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~213~^5.41^3^0.18^~1~^~A~^^^1^5.04^5.65^2^4.60^6.20^~2, 3~^~05/01/2011~ -~01254~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~255~^44.00^7^0.29^~1~^~A~^^^1^42.80^45.00^6^43.27^44.72^~2, 3~^~05/01/2011~ -~01254~^~269~^5.59^3^0.20^~1~^~A~^^^1^5.19^5.86^2^4.71^6.46^~2, 3~^~05/01/2011~ -~01254~^~287~^0.18^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.10^0.25^~2, 3~^~05/01/2011~ -~01254~^~303~^0.26^10^0.07^~1~^~A~^^^1^0.11^0.76^9^0.08^0.43^~2, 3~^~05/01/2011~ -~01254~^~309~^2.31^10^0.02^~1~^~A~^^^1^2.17^2.46^9^2.24^2.37^~2, 3~^~05/01/2011~ -~01254~^~323~^0.63^2^^~1~^~A~^^^1^0.62^0.63^1^^^^~05/01/2011~ -~01254~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2011~ -~01254~^~342~^0.06^2^^~1~^~A~^^^1^0.06^0.06^1^^^^~05/01/2011~ -~01254~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~05/01/2011~ -~01254~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~05/01/2011~ -~01254~^~345~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~05/01/2011~ -~01254~^~346~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~05/01/2011~ -~01254~^~347~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~05/01/2011~ -~01254~^~418~^1.33^3^0.12^~1~^~A~^^^1^1.10^1.50^2^0.81^1.85^~2, 3~^~05/01/2011~ -~01254~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01254~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~01255~^~203~^10.97^3^^~1~^~A~^^^1^10.80^11.10^^^^~2~^~06/01/2011~ -~01255~^~204~^10.07^3^^~1~^~A~^^^1^9.67^10.87^^^^~2~^~06/01/2011~ -~01255~^~205~^0.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~207~^10.30^3^^~1~^~A~^^^1^10.00^10.70^^^^~2~^~06/01/2011~ -~01255~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2011~ -~01255~^~211~^0.07^3^^~1~^~A~^^^1^0.00^0.20^^^^~1, 2~^~06/01/2011~ -~01255~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2011~ -~01255~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2011~ -~01255~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2011~ -~01255~^~255~^67.83^3^^~1~^~A~^^^1^67.60^68.00^^^^~2~^~06/01/2011~ -~01255~^~269~^0.07^3^^~1~^~A~^^^1^0.00^0.20^^^^~2~^~06/01/2011~ -~01255~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2011~ -~01255~^~303~^1.71^3^^~1~^~A~^^^1^1.60^1.86^^^^~2~^~06/01/2011~ -~01255~^~309~^1.30^3^^~1~^~A~^^^1^1.29^1.31^^^^~2~^~06/01/2011~ -~01255~^~323~^0.80^3^^~1~^~A~^^^1^0.70^0.95^^^^~2~^~06/01/2011~ -~01255~^~418~^1.21^3^^~1~^~A~^^^1^0.82^1.77^^^^~2~^~06/01/2011~ -~01255~^~573~^0.00^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~578~^0.00^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01256~^~203~^10.19^16^0.17^~1~^~A~^^^1^8.87^11.74^5^9.74^10.64^~2, 3~^~08/01/2012~ -~01256~^~204~^0.39^18^0.03^~1~^~A~^^^1^0.23^0.61^7^0.31^0.46^~2, 3~^~08/01/2012~ -~01256~^~205~^3.60^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~207~^0.72^18^0.01^~1~^~A~^^^1^0.64^0.78^10^0.69^0.74^~2, 3~^~08/01/2012~ -~01256~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~211~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~213~^2.54^3^^~1~^~A~^^^1^2.50^2.60^^^^~2, 3~^~08/01/2012~ -~01256~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~255~^85.10^18^0.05^~1~^~A~^^^1^84.32^85.66^9^84.96^85.23^~2, 3~^~08/01/2012~ -~01256~^~269~^3.24^3^^~1~^~A~^^^1^3.20^3.30^^^^~2, 3~^~08/01/2012~ -~01256~^~287~^0.70^3^^~1~^~A~^^^1^0.70^0.70^^^^~2, 3~^~08/01/2012~ -~01256~^~303~^0.07^18^3.0e-03^~1~^~A~^^^1^0.04^0.11^14^0.06^0.07^~1, 2, 3~^~08/01/2012~ -~01256~^~309~^0.52^18^4.0e-03^~1~^~A~^^^1^0.49^0.60^7^0.50^0.52^~2, 3~^~08/01/2012~ -~01256~^~323~^0.01^9^0.00^~1~^~A~^^^1^0.01^0.01^6^0.01^0.01^~2, 3~^~08/01/2012~ -~01256~^~341~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~342~^0.00^9^1.0e-03^~1~^~A~^^^1^0.00^0.00^2^-3.0e-03^4.0e-03^~1, 2, 3~^~08/01/2012~ -~01256~^~343~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^2^-1.0e-03^2.0e-03^~1, 2, 3~^~08/01/2012~ -~01256~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^2^-1.0e-03^2.0e-03^~1, 2, 3~^~08/01/2012~ -~01256~^~418~^0.75^9^9.0e-03^~1~^~A~^^^1^0.36^0.97^5^0.72^0.77^~2, 3~^~08/01/2012~ -~01256~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~01258~^~203~^84.08^15^0.38^~1~^~A~^^^1^82.00^87.10^14^83.26^84.89^~4~^~04/01/2015~ -~01258~^~204~^0.32^15^0.05^~1~^~DA~^^^1^0.09^0.57^14^0.21^0.43^~1, 4~^~04/01/2015~ -~01258~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~207~^5.61^15^0.06^~1~^~A~^^^1^5.25^6.07^14^5.46^5.74^~4~^~04/01/2015~ -~01258~^~210~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01258~^~211~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~08/01/2012~ -~01258~^~212~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01258~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01258~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01258~^~255~^5.48^15^0.35^~1~^~A~^^^1^3.08^7.28^14^4.73^6.23^~4~^~04/01/2015~ -~01258~^~269~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~4~^~08/01/2012~ -~01258~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^14^0.00^0.00^~1, 4~^~04/01/2015~ -~01258~^~303~^0.18^15^0.00^~1~^~A~^^^1^0.18^0.18^14^0.18^0.18^~1, 4~^~04/01/2015~ -~01258~^~309~^0.13^3^^~1~^~A~^^^1^0.09^0.19^^^^~2~^~07/01/2012~ -~01258~^~323~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~07/01/2012~ -~01258~^~418~^0.20^15^0.04^~1~^~A~^^^1^0.09^0.81^14^0.10^0.30^~1, 4~^~04/01/2015~ -~01258~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01258~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~01259~^~203~^13.41^10^1.17^~1~^~A~^^^1^10.10^17.80^9^10.75^16.06^~2, 3~^~05/01/2013~ -~01259~^~204~^8.88^10^0.22^~1~^~A~^^^1^8.10^9.70^9^8.38^9.37^~2, 3~^~05/01/2013~ -~01259~^~205~^10.71^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~207~^5.18^10^0.43^~1~^~A~^^^1^3.96^6.83^9^4.19^6.16^~2, 3~^~05/01/2013~ -~01259~^~255~^61.82^10^2.81^~1~^~A~^^^1^51.40^69.10^9^55.46^68.18^~2, 3~^~05/01/2013~ -~01259~^~269~^7.06^4^0.39^~1~^~A~^^^1^5.86^7.52^3^5.78^8.32^~2, 3~^~05/01/2013~ -~01259~^~303~^0.36^10^0.06^~1~^~A~^^^1^0.11^0.61^9^0.21^0.49^~2, 3~^~05/01/2013~ -~01259~^~309~^1.81^10^0.07^~1~^~A~^^^1^1.56^2.11^9^1.64^1.97^~2, 3~^~05/01/2013~ -~01259~^~323~^0.46^6^0.10^~1~^~A~^^^1^0.22^0.72^5^0.19^0.73^~2, 3~^~05/01/2013~ -~01259~^~418~^1.17^6^0.28^~1~^~A~^^^1^0.51^2.10^5^0.43^1.91^~2, 3~^~05/01/2013~ -~01259~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01260~^~203~^27.35^5^0.16^~1~^~A~^^^1^26.00^27.90^2^26.63^28.06^~2, 3~^~05/01/2013~ -~01260~^~204~^20.41^5^0.20^~1~^~A~^^^1^19.00^20.70^2^19.51^21.30^~2, 3~^~05/01/2013~ -~01260~^~205~^2.67^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~01260~^~207~^3.89^5^0.05^~1~^~A~^^^1^3.74^4.16^2^3.66^4.11^~2, 3~^~05/01/2013~ -~01260~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~213~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~255~^44.29^5^0.19^~1~^~A~^^^1^43.70^45.50^2^43.45^45.12^~2, 3~^~05/01/2013~ -~01260~^~269~^0.26^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~01260~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~01260~^~303~^0.12^5^0.01^~1~^~A~^^^1^0.07^0.17^2^0.06^0.16^~1, 2, 3~^~05/01/2013~ -~01260~^~309~^4.44^5^0.09^~1~^~A~^^^1^3.90^4.65^2^4.04^4.83^~2, 3~^~05/01/2013~ -~01260~^~323~^0.48^4^0.03^~1~^~A~^^^1^0.42^0.62^1^0.10^0.86^~2, 3~^~05/01/2013~ -~01260~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~342~^0.08^4^1.0e-03^~1~^~A~^^^1^0.04^0.09^1^0.06^0.09^~2, 3~^~05/01/2013~ -~01260~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.06^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~418~^1.41^4^0.00^~1~^~A~^^^1^1.20^1.80^^^^~2, 3~^~05/01/2013~ -~01260~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01260~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~01263~^~203~^3.36^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~204~^3.69^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~205~^23.15^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~207~^0.88^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~255~^68.92^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01263~^~269~^19.46^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~303~^0.60^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~309~^0.67^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~323~^0.08^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~418~^0.26^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~203~^2.11^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~204~^25.26^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~205~^37.12^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~207~^0.41^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~255~^35.48^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~269~^21.05^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~309~^0.32^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~323~^2.25^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~418~^0.09^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01265~^~203~^32.14^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~204~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~205~^7.14^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~207~^3.64^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~255~^57.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01265~^~269~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~303~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~309~^1.82^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~323~^0.06^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~418~^0.49^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~573~^0.00^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~578~^0.00^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01266~^~203~^28.40^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01266~^~205~^3.40^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~207~^4.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01266~^~255~^63.60^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01266~^~269~^1.33^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~303~^0.17^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~309~^3.90^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~323~^0.07^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~418~^1.68^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~573~^0.00^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~578~^0.00^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01267~^~203~^20.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~204~^30.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~205~^3.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01267~^~207~^8.03^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~255~^38.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~01267~^~269~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~303~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~309~^3.87^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~323~^0.25^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~418~^2.26^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~573~^0.00^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~578~^0.00^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01270~^~203~^24.25^18^0.38^~1~^~A~^^^1^21.95^25.58^3^23.04^25.45^~2, 3~^~05/01/2014~ -~01270~^~204~^33.82^18^0.10^~1~^~A~^^^1^32.81^37.59^11^33.59^34.04^~2, 3~^~05/01/2014~ -~01270~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~207~^3.66^18^0.05^~1~^~A~^^^1^3.42^3.84^3^3.50^3.81^~2, 3~^~05/01/2014~ -~01270~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~211~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~213~^0.18^3^^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~255~^36.15^18^0.50^~1~^~A~^^^1^32.75^38.19^3^34.59^37.70^~2, 3~^~05/01/2014~ -~01270~^~269~^0.27^3^^~1~^~A~^^^1^0.26^0.29^^^^~2, 3~^~05/01/2014~ -~01270~^~287~^0.08^3^^~1~^~A~^^^1^0.07^0.11^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~303~^0.16^18^8.0e-03^~1~^~A~^^^1^0.11^0.28^7^0.14^0.17^~2, 3~^~05/01/2014~ -~01270~^~309~^3.74^18^0.02^~1~^~A~^^^1^3.29^3.93^4^3.66^3.81^~2, 3~^~05/01/2014~ -~01270~^~323~^0.78^9^0.01^~1~^~A~^^^1^0.70^0.94^4^0.74^0.81^~2, 3~^~05/01/2014~ -~01270~^~341~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~342~^0.06^9^5.0e-03^~1~^~A~^^^1^0.00^0.08^4^0.04^0.07^~1, 2, 3~^~05/01/2014~ -~01270~^~343~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~418~^0.88^9^0.03^~1~^~A~^^^1^0.78^1.20^2^0.71^1.05^~2, 3~^~05/01/2014~ -~01270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~203~^23.63^18^0.40^~1~^~A~^^^1^21.56^24.95^6^22.63^24.63^~2, 3~^~05/01/2014~ -~01271~^~204~^19.72^18^0.36^~1~^~A~^^^1^17.78^21.58^6^18.83^20.61^~2, 3~^~05/01/2014~ -~01271~^~205~^8.06^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~207~^3.78^18^0.09^~1~^~A~^^^1^3.00^4.15^6^3.55^4.00^~2, 3~^~05/01/2014~ -~01271~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~01271~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~213~^1.45^3^^~1~^~A~^^^1^0.18^1.60^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~255~^44.81^18^0.34^~1~^~A~^^^1^42.14^47.54^7^43.99^45.62^~2, 3~^~05/01/2014~ -~01271~^~269~^2.24^2^^~1~^~A~^^^1^0.99^2.33^^^^^~05/01/2014~ -~01271~^~287~^0.75^3^^~1~^~A~^^^1^0.73^1.03^^^^~2, 3~^~05/01/2014~ -~01271~^~303~^0.23^18^0.03^~1~^~A~^^^1^0.16^0.43^6^0.15^0.30^~2, 3~^~05/01/2014~ -~01271~^~309~^3.61^18^0.08^~1~^~A~^^^1^3.19^3.94^6^3.41^3.81^~2, 3~^~05/01/2014~ -~01271~^~323~^0.49^9^0.02^~1~^~A~^^^1^0.44^0.59^2^0.39^0.58^~2, 3~^~05/01/2014~ -~01271~^~341~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~342~^0.02^9^0.01^~1~^~A~^^^1^0.00^0.25^2^-0.04^0.08^~1, 2, 3~^~05/01/2014~ -~01271~^~343~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~418~^1.33^9^0.27^~1~^~A~^^^1^0.75^1.80^2^0.15^2.50^~2, 3~^~05/01/2014~ -~01271~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01271~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~01275~^~203~^9.07^6^0.10^~1~^~A~^^^1^8.76^9.46^5^8.81^9.32^~2, 3~^~07/01/2014~ -~01275~^~204~^0.22^6^0.03^~1~^~A~^^^1^0.10^0.30^5^0.13^0.29^~2, 3~^~07/01/2014~ -~01275~^~205~^8.09^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~207~^0.59^6^0.01^~1~^~A~^^^1^0.53^0.62^5^0.55^0.62^~2, 3~^~07/01/2014~ -~01275~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~210~^3.44^3^0.25^~1~^~A~^^^1^3.12^3.94^2^2.34^4.53^~2, 3~^~07/01/2014~ -~01275~^~211~^0.30^3^0.11^~1~^~A~^^^1^0.18^0.53^2^-0.19^0.79^~1, 2, 3~^~07/01/2014~ -~01275~^~212~^0.47^3^0.05^~1~^~A~^^^1^0.38^0.58^2^0.21^0.72^~2, 3~^~07/01/2014~ -~01275~^~213~^2.72^3^0.02^~1~^~A~^^^1^2.68^2.77^2^2.61^2.83^~2, 3~^~07/01/2014~ -~01275~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~01275~^~255~^82.03^6^0.26^~1~^~A~^^^1^81.30^82.90^5^81.36^82.70^~2, 3~^~07/01/2014~ -~01275~^~269~^7.61^3^0.39^~1~^~A~^^^1^7.19^8.40^2^5.89^9.31^~2, 3~^~07/01/2014~ -~01275~^~287~^0.68^3^0.02^~1~^~A~^^^1^0.63^0.70^2^0.57^0.77^~2, 3~^~07/01/2014~ -~01275~^~303~^0.05^6^4.0e-03^~1~^~A~^^^1^0.04^0.06^5^0.03^0.05^~1, 2, 3~^~07/01/2014~ -~01275~^~309~^0.49^6^8.0e-03^~1~^~A~^^^1^0.46^0.51^5^0.46^0.50^~2, 3~^~07/01/2014~ -~01275~^~418~^0.70^2^^~1~^~A~^^^1^0.69^0.71^1^^^^~07/01/2014~ -~01276~^~203~^8.25^6^0.07^~1~^~A~^^^1^8.09^8.54^5^8.06^8.44^~2, 3~^~07/01/2014~ -~01276~^~204~^2.92^6^0.07^~1~^~A~^^^1^2.60^3.10^5^2.73^3.09^~2, 3~^~07/01/2014~ -~01276~^~205~^11.67^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~207~^0.56^6^0.01^~1~^~A~^^^1^0.49^0.61^5^0.51^0.61^~2, 3~^~07/01/2014~ -~01276~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~210~^3.71^3^0.10^~1~^~A~^^^1^3.58^3.92^2^3.25^4.16^~2, 3~^~07/01/2014~ -~01276~^~211~^0.30^3^0.06^~1~^~A~^^^1^0.18^0.39^2^0.03^0.56^~1, 2, 3~^~07/01/2014~ -~01276~^~212~^4.12^3^0.04^~1~^~A~^^^1^4.08^4.20^2^3.94^4.29^~2, 3~^~07/01/2014~ -~01276~^~213~^2.33^3^0.04^~1~^~A~^^^1^2.25^2.38^2^2.15^2.50^~2, 3~^~07/01/2014~ -~01276~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~01276~^~255~^76.60^6^0.05^~1~^~A~^^^1^76.40^76.80^5^76.45^76.74^~2, 3~^~07/01/2014~ -~01276~^~269~^11.00^3^0.11^~1~^~A~^^^1^10.84^11.23^2^10.48^11.51^~2, 3~^~07/01/2014~ -~01276~^~287~^0.54^3^6.0e-03^~1~^~A~^^^1^0.53^0.55^2^0.51^0.56^~2, 3~^~07/01/2014~ -~01276~^~303~^0.07^6^3.0e-03^~1~^~A~^^^1^0.06^0.08^5^0.05^0.07^~2, 3~^~07/01/2014~ -~01276~^~309~^0.39^6^9.0e-03^~1~^~A~^^^1^0.35^0.41^5^0.36^0.41^~2, 3~^~07/01/2014~ -~01276~^~418~^0.56^2^^~1~^~A~^^^1^0.49^0.64^1^^^^~07/01/2014~ -~01278~^~203~^8.12^6^0.03^~1~^~A~^^^1^8.05^8.28^5^8.02^8.21^~2, 3~^~07/01/2014~ -~01278~^~204~^0.14^6^0.02^~1~^~A~^^^1^0.07^0.20^5^0.07^0.21^~1, 2, 3~^~07/01/2014~ -~01278~^~205~^12.72^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~207~^0.52^6^0.01^~1~^~A~^^^1^0.44^0.56^5^0.47^0.56^~2, 3~^~07/01/2014~ -~01278~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~210~^3.78^3^0.13^~1~^~A~^^^1^3.63^4.06^2^3.18^4.38^~2, 3~^~07/01/2014~ -~01278~^~211~^0.27^3^0.08^~1~^~A~^^^1^0.18^0.44^2^-0.09^0.63^~1, 2, 3~^~07/01/2014~ -~01278~^~212~^4.34^3^0.11^~1~^~A~^^^1^4.11^4.49^2^3.83^4.84^~2, 3~^~07/01/2014~ -~01278~^~213~^2.47^3^0.08^~1~^~A~^^^1^2.31^2.56^2^2.12^2.82^~2, 3~^~07/01/2014~ -~01278~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~01278~^~255~^78.50^6^0.15^~1~^~A~^^^1^78.10^79.10^5^78.09^78.90^~2, 3~^~07/01/2014~ -~01278~^~269~^11.40^3^0.14^~1~^~A~^^^1^11.20^11.68^2^10.78^12.01^~2, 3~^~07/01/2014~ -~01278~^~287~^0.54^3^0.01^~1~^~A~^^^1^0.51^0.56^2^0.47^0.59^~2, 3~^~07/01/2014~ -~01278~^~303~^0.04^6^2.0e-03^~1~^~A~^^^1^0.04^0.05^5^0.03^0.04^~1, 2, 3~^~07/01/2014~ -~01278~^~309~^0.40^6^9.0e-03^~1~^~A~^^^1^0.37^0.43^5^0.37^0.42^~2, 3~^~07/01/2014~ -~01278~^~418~^0.66^2^^~1~^~A~^^^1^0.58^0.74^1^^^^~07/01/2014~ -~01280~^~203~^8.03^6^0.06^~1~^~A~^^^1^7.88^8.27^5^7.86^8.20^~2, 3~^~07/01/2014~ -~01280~^~204~^0.22^6^0.01^~1~^~A~^^^1^0.20^0.30^5^0.17^0.26^~2, 3~^~07/01/2014~ -~01280~^~205~^12.53^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~207~^0.59^6^0.01^~1~^~A~^^^1^0.55^0.63^5^0.55^0.62^~2, 3~^~07/01/2014~ -~01280~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~210~^3.96^3^0.07^~1~^~A~^^^1^3.86^4.10^2^3.64^4.27^~2, 3~^~07/01/2014~ -~01280~^~211~^0.25^3^0.06^~1~^~A~^^^1^0.18^0.37^2^-0.02^0.51^~1, 2, 3~^~07/01/2014~ -~01280~^~212~^4.44^3^0.03^~1~^~A~^^^1^4.40^4.51^2^4.27^4.59^~2, 3~^~07/01/2014~ -~01280~^~213~^2.42^3^0.02^~1~^~A~^^^1^2.38^2.45^2^2.32^2.51^~2, 3~^~07/01/2014~ -~01280~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~01280~^~255~^78.63^6^0.06^~1~^~A~^^^1^78.50^78.80^5^78.47^78.79^~2, 3~^~07/01/2014~ -~01280~^~269~^11.63^3^0.09^~1~^~A~^^^1^11.43^11.74^2^11.21^12.04^~2, 3~^~07/01/2014~ -~01280~^~287~^0.56^3^7.0e-03^~1~^~A~^^^1^0.55^0.57^2^0.53^0.59^~2, 3~^~07/01/2014~ -~01280~^~303~^0.06^6^4.0e-03^~1~^~A~^^^1^0.05^0.08^5^0.05^0.07^~2, 3~^~07/01/2014~ -~01280~^~309~^0.45^6^8.0e-03^~1~^~A~^^^1^0.43^0.47^5^0.42^0.46^~2, 3~^~07/01/2014~ -~01280~^~418~^0.59^2^^~1~^~A~^^^1^0.57^0.62^1^^^^~07/01/2014~ -~01284~^~203~^8.17^9^0.05^~1~^~A~^^^1^7.83^8.54^6^8.03^8.31^~2, 3~^~05/01/2015~ -~01284~^~204~^2.57^9^0.05^~1~^~A~^^^1^1.50^3.10^5^2.43^2.70^~2, 3~^~05/01/2015~ -~01284~^~205~^12.29^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01284~^~207~^0.56^9^0.02^~1~^~A~^^^1^0.43^0.63^6^0.50^0.61^~2, 3~^~05/01/2015~ -~01284~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~01284~^~210~^4.43^6^0.08^~1~^~A~^^^1^3.58^6.59^2^4.09^4.75^~2, 3~^~05/01/2015~ -~01284~^~211~^0.54^6^0.04^~1~^~A~^^^1^0.18^1.29^2^0.35^0.71^~1, 2, 3~^~05/01/2015~ -~01284~^~212~^3.36^6^0.03^~1~^~A~^^^1^1.12^4.20^2^3.24^3.48^~2, 3~^~05/01/2015~ -~01284~^~213~^2.37^6^0.03^~1~^~A~^^^1^2.25^2.67^4^2.26^2.48^~2, 3~^~05/01/2015~ -~01284~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01284~^~255~^76.41^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01284~^~269~^11.23^6^0.09^~1~^~A~^^^1^10.84^12.10^3^10.89^11.56^~2, 3~^~05/01/2015~ -~01284~^~287~^0.53^6^5.0e-03^~1~^~A~^^^1^0.47^0.55^3^0.51^0.54^~2, 3~^~05/01/2015~ -~01284~^~303~^0.07^9^2.0e-03^~1~^~A~^^^1^0.06^0.08^6^0.06^0.07^~2, 3~^~05/01/2015~ -~01284~^~309~^0.41^9^7.0e-03^~1~^~A~^^^1^0.35^0.50^6^0.39^0.43^~2, 3~^~05/01/2015~ -~01284~^~323~^0.02^0^^~4~^~T~^^^^^^^^^^~05/01/2015~ -~01284~^~418~^0.50^4^0.05^~1~^~A~^^^1^0.28^0.64^1^-0.17^1.16^~2, 3~^~05/01/2015~ -~01284~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~203~^8.05^16^0.05^~1~^~A~^^^1^7.66^8.36^8^7.91^8.18^~2, 3~^~05/01/2015~ -~01285~^~204~^0.15^16^0.01^~1~^~A~^^^1^0.07^0.30^8^0.12^0.18^~1, 2, 3~^~05/01/2015~ -~01285~^~205~^12.07^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~207~^0.59^16^0.01^~1~^~A~^^^1^0.53^0.71^6^0.55^0.63^~2, 3~^~05/01/2015~ -~01285~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~01285~^~210~^5.41^10^0.09^~1~^~A~^^^1^3.86^6.86^5^5.15^5.67^~2, 3~^~05/01/2015~ -~01285~^~211~^0.65^10^0.05^~1~^~A~^^^1^0.18^2.13^7^0.52^0.76^~1, 2, 3~^~05/01/2015~ -~01285~^~212~^2.19^10^0.02^~1~^~A~^^^1^0.73^4.51^5^2.11^2.26^~2, 3~^~05/01/2015~ -~01285~^~213~^2.47^10^0.02^~1~^~A~^^^1^2.30^2.59^3^2.38^2.55^~2, 3~^~05/01/2015~ -~01285~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~255~^79.13^16^0.20^~1~^~A~^^^1^77.70^80.10^6^78.64^79.62^~2, 3~^~05/01/2015~ -~01285~^~269~^11.27^10^0.11^~1~^~A~^^^1^10.45^11.94^3^10.87^11.66^~2, 3~^~05/01/2015~ -~01285~^~287~^0.55^10^8.0e-03^~1~^~A~^^^1^0.39^0.58^4^0.52^0.57^~2, 3~^~05/01/2015~ -~01285~^~303~^0.09^16^0.01^~1~^~A~^^^1^0.05^0.18^6^0.06^0.11^~2, 3~^~05/01/2015~ -~01285~^~309~^0.45^16^4.0e-03^~1~^~A~^^^1^0.43^0.52^10^0.44^0.45^~2, 3~^~05/01/2015~ -~01285~^~323~^0.02^0^^~4~^~T~^^^^^^^^^^~05/01/2015~ -~01285~^~418~^0.49^7^0.04^~1~^~A~^^^1^0.25^0.62^1^0.12^0.86^~2, 3~^~05/01/2015~ -~01285~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01285~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~203~^8.64^15^0.05^~1~^~A~^^^1^8.05^9.46^6^8.51^8.76^~2, 3~^~05/01/2015~ -~01286~^~204~^0.18^15^0.01^~1~^~A~^^^1^0.07^0.30^10^0.13^0.21^~1, 2, 3~^~05/01/2015~ -~01286~^~205~^10.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~207~^0.55^15^0.01^~1~^~A~^^^1^0.44^0.62^12^0.53^0.57^~2, 3~^~05/01/2015~ -~01286~^~209~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~210~^4.07^8^0.13^~1~^~A~^^^1^3.12^7.44^3^3.59^4.53^~2, 3~^~05/01/2015~ -~01286~^~211~^0.32^8^0.06^~1~^~A~^^^1^0.18^0.58^3^0.11^0.52^~1, 2, 3~^~05/01/2015~ -~01286~^~212~^1.92^8^0.05^~1~^~A~^^^1^0.38^4.49^4^1.76^2.07^~2, 3~^~05/01/2015~ -~01286~^~213~^2.63^8^0.03^~1~^~A~^^^1^2.31^2.79^3^2.52^2.73^~2, 3~^~05/01/2015~ -~01286~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~255~^80.26^15^0.14^~1~^~A~^^^1^78.10^82.90^8^79.92^80.60^~2, 3~^~05/01/2015~ -~01286~^~269~^9.54^8^0.20^~1~^~A~^^^1^7.19^11.74^2^8.75^10.32^~2, 3~^~05/01/2015~ -~01286~^~287~^0.60^8^0.01^~1~^~A~^^^1^0.48^0.70^3^0.55^0.64^~2, 3~^~05/01/2015~ -~01286~^~303~^0.04^15^2.0e-03^~1~^~A~^^^1^0.04^0.06^7^0.03^0.04^~1, 2, 3~^~05/01/2015~ -~01286~^~309~^0.46^15^6.0e-03^~1~^~A~^^^1^0.37^0.54^11^0.44^0.47^~2, 3~^~05/01/2015~ -~01286~^~323~^0.02^0^^~4~^~BFZN~^~01119~^^^^^^^^^~05/01/2015~ -~01286~^~418~^0.64^5^0.03^~1~^~A~^^^1^0.33^0.74^1^0.29^0.97^~2, 3~^~05/01/2015~ -~01286~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01286~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~203~^9.95^5^0.17^~1~^~A~^^^1^9.54^10.40^4^9.46^10.44^~2, 3~^~05/01/2015~ -~01287~^~204~^1.92^5^0.03^~1~^~A~^^^1^1.80^2.00^4^1.81^2.02^~2, 3~^~05/01/2015~ -~01287~^~205~^3.94^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~207~^0.63^5^0.02^~1~^~A~^^^1^0.55^0.69^4^0.56^0.69^~2, 3~^~05/01/2015~ -~01287~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01287~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01287~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01287~^~213~^2.92^3^0.06^~1~^~A~^^^1^2.80^3.01^2^2.65^3.18^~2, 3~^~05/01/2015~ -~01287~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~01287~^~255~^83.56^5^0.06^~1~^~A~^^^1^83.40^83.80^4^83.37^83.74^~2, 3~^~05/01/2015~ -~01287~^~269~^3.56^3^0.06^~1~^~A~^^^1^3.44^3.64^2^3.29^3.81^~2, 3~^~05/01/2015~ -~01287~^~287~^0.64^3^3.0e-03^~1~^~A~^^^1^0.63^0.64^2^0.62^0.65^~2, 3~^~05/01/2015~ -~01287~^~303~^0.04^5^7.0e-03^~1~^~A~^^^1^0.04^0.07^4^0.02^0.06^~1, 2, 3~^~05/01/2015~ -~01287~^~309~^0.60^5^5.0e-03^~1~^~A~^^^1^0.58^0.61^4^0.58^0.61^~2, 3~^~05/01/2015~ -~01287~^~323~^0.04^0^^~4~^~T~^^^^^^^^^^~05/01/2015~ -~01287~^~418~^0.52^2^^~1~^~A~^^^1^0.49^0.55^1^^^^~05/01/2015~ -~01287~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01287~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~01289~^~203~^3.79^4^0.06^~1~^~A~^^^1^3.66^3.92^3^3.59^3.98^~2, 3~^~07/01/2015~ -~01289~^~204~^1.02^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01289~^~205~^4.77^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01289~^~207~^0.72^4^0.02^~1~^~A~^^^1^0.68^0.77^3^0.65^0.78^~2, 3~^~07/01/2015~ -~01289~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~213~^3.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~01289~^~255~^89.70^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01289~^~269~^4.61^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~287~^0.91^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01289~^~303~^0.04^4^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~309~^0.46^4^2.0e-03^~1~^~A~^^^1^0.46^0.47^3^0.45^0.46^~2, 3~^~07/01/2015~ -~01289~^~323~^0.02^0^^~4~^~BFZN~^~01231~^^^^^^^^^~07/01/2015~ -~01289~^~418~^0.29^2^^~1~^~A~^^^1^0.27^0.31^1^^^^~07/01/2015~ -~01289~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01289~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~203~^3.39^4^0.02^~1~^~A~^^^1^3.35^3.46^3^3.31^3.47^~2, 3~^~07/01/2015~ -~01290~^~204~^0.90^4^0.10^~1~^~A~^^^1^0.60^1.02^3^0.58^1.22^~2, 3~^~07/01/2015~ -~01290~^~205~^10.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~207~^0.68^4^0.01^~1~^~A~^^^1^0.66^0.72^3^0.63^0.72^~2, 3~^~07/01/2015~ -~01290~^~210~^5.34^2^^~1~^~A~^^^1^5.22^5.47^1^^^^~07/01/2015~ -~01290~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~01290~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~01290~^~213~^3.23^2^^~1~^~A~^^^1^3.21^3.25^1^^^^~07/01/2015~ -~01290~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~01290~^~255~^84.82^4^0.13^~1~^~A~^^^1^84.50^85.10^3^84.38^85.26^~2, 3~^~07/01/2015~ -~01290~^~269~^9.21^2^^~1~^~A~^^^1^9.05^9.37^1^^^^~07/01/2015~ -~01290~^~287~^0.63^2^^~1~^~A~^^^1^0.58^0.69^1^^^^~07/01/2015~ -~01290~^~303~^0.04^4^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~309~^0.44^4^2.0e-03^~1~^~A~^^^1^0.44^0.44^3^0.43^0.44^~2, 3~^~07/01/2015~ -~01290~^~323~^0.06^0^^~4~^~BFZN~^~01203~^^^^^^^^^~07/01/2015~ -~01290~^~418~^0.31^2^^~1~^~A~^^^1^0.31^0.32^1^^^^~07/01/2015~ -~01290~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01290~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01291~^~203~^6.67^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~204~^2.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~205~^15.74^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01291~^~207~^1.55^5^0.02^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~255~^74.04^15^0.08^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~269~^6.67^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~303~^0.19^59^0.01^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~309~^0.77^26^0.02^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~323~^0.18^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01291~^~418~^0.16^9^0.01^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01292~^~203~^3.39^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~01292~^~205~^13.46^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01292~^~207~^0.81^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~255~^82.34^4^0.43^~1~^~A~^^^4^^^^^^^~06/01/2015~ -~01292~^~269~^8.39^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01292~^~303~^0.27^4^0.01^~1~^~A~^^^4^^^^^^^~06/01/2015~ -~01292~^~309~^0.41^5^0.02^~1~^^^^^^^^^^^~06/01/2015~ -~01292~^~323~^0.04^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~418~^0.32^4^0.01^~1~^~A~^^^4^^^^^^^~06/01/2015~ -~01292~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01292~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~203~^9.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~204~^5.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~205~^3.98^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~207~^0.72^18^0.01^~1~^~A~^^^1^0.64^0.78^10^0.69^0.74^~2, 3~^~06/01/2015~ -~01293~^~255~^81.30^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~01293~^~269~^4.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~303~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~309~^0.52^18^4.0e-03^~1~^~A~^^^1^0.49^0.60^7^0.50^0.52^~2, 3~^~06/01/2015~ -~01293~^~323~^0.01^9^0.00^~1~^~A~^^^1^0.01^0.01^6^0.01^0.01^~2, 3~^~06/01/2015~ -~01293~^~418~^0.75^9^9.0e-03^~1~^~A~^^^1^0.36^0.97^5^0.72^0.77^~2, 3~^~06/01/2015~ -~01293~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01293~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~203~^7.33^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~204~^3.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~205~^12.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~207~^0.56^9^0.02^~1~^~A~^^^1^0.43^0.63^6^0.50^0.61^~2, 3~^~06/01/2015~ -~01294~^~255~^76.81^9^0.04^~1~^~A~^^^1^76.40^77.50^5^76.70^76.92^~2, 3~^~06/01/2015~ -~01294~^~269~^12.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~303~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~309~^0.41^9^7.0e-03^~1~^~A~^^^1^0.35^0.50^6^0.39^0.43^~2, 3~^~06/01/2015~ -~01294~^~323~^0.07^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01294~^~418~^0.50^4^0.05^~1~^~A~^^^1^0.28^0.64^1^-0.17^1.16^~2, 3~^~06/01/2015~ -~01294~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01294~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01295~^~203~^2.94^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~204~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~205~^17.04^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~207~^1.02^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~255~^79.00^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~269~^5.88^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~303~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~309~^0.83^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~323~^0.01^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~ -~01295~^~418~^0.53^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01295~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~203~^8.64^15^0.05^~1~^~A~^^^1^8.05^9.46^6^8.51^8.76^~2, 3~^~08/01/2015~ -~01297~^~204~^2.50^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~205~^9.54^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~207~^0.55^15^0.01^~1~^~A~^^^1^0.44^0.62^12^0.53^0.57^~2, 3~^~06/01/2015~ -~01297~^~210~^4.07^8^0.13^~1~^~A~^^^1^3.12^7.44^3^3.59^4.53^~2, 3~^~08/01/2015~ -~01297~^~211~^0.32^8^0.06^~1~^~A~^^^1^0.18^0.58^3^0.11^0.52^~1, 2, 3~^~08/01/2015~ -~01297~^~212~^1.92^8^0.05^~1~^~A~^^^1^0.38^4.49^4^1.76^2.07^~2, 3~^~08/01/2015~ -~01297~^~213~^2.63^8^0.03^~1~^~A~^^^1^2.31^2.79^3^2.52^2.73^~2, 3~^~08/01/2015~ -~01297~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~255~^78.76^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~01297~^~269~^9.54^8^0.20^~1~^~A~^^^1^7.19^11.74^2^8.75^10.32^~2, 3~^~08/01/2015~ -~01297~^~287~^0.60^8^0.01^~1~^~A~^^^1^0.48^0.70^3^0.55^0.64^~2, 3~^~08/01/2015~ -~01297~^~303~^0.04^15^2.0e-03^~1~^~A~^^^1^0.04^0.06^7^0.03^0.04^~1, 2, 3~^~06/01/2015~ -~01297~^~309~^0.46^15^6.0e-03^~1~^~A~^^^1^0.37^0.54^11^0.44^0.47^~2, 3~^~06/01/2015~ -~01297~^~323~^0.02^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~418~^0.64^5^0.03^~1~^~A~^^^1^0.33^0.74^1^0.29^0.97^~2, 3~^~06/01/2015~ -~01297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~01298~^~203~^8.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~204~^2.50^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~205~^21.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~01298~^~207~^0.42^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~255~^68.08^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~01298~^~269~^21.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~303~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~309~^0.19^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~323~^0.06^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~418~^0.05^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~573~^0.00^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~578~^0.00^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01300~^~203~^5.62^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~204~^25.84^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~205~^11.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~207~^1.52^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~255~^55.14^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~269~^10.80^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~01300~^~303~^1.21^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~309~^0.81^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~323~^0.54^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~418~^0.49^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~573~^0.00^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~578~^0.00^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01301~^~203~^3.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~204~^14.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~205~^28.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~207~^0.80^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~255~^53.31^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~269~^21.26^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~303~^0.36^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~309~^0.56^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~323~^0.11^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~418~^0.35^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~203~^1.54^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~204~^3.08^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~205~^32.75^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~207~^0.87^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~255~^61.77^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~269~^18.46^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~303~^0.00^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01302~^~309~^0.66^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~323~^0.09^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~418~^0.36^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01303~^~203~^3.33^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~204~^5.00^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~205~^3.33^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~207~^0.51^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~255~^87.83^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~01303~^~269~^3.33^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~303~^0.00^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~309~^0.39^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~323~^0.12^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~418~^0.19^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01303~^~578~^0.00^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01304~^~203~^7.05^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~204~^1.82^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~205~^12.27^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01304~^~207~^0.65^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~210~^5.95^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~211~^1.26^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~212~^1.40^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~213~^2.00^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01304~^~255~^78.30^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01305~^~203~^3.43^9^0.06^~1~^~A~^^^1^3.27^3.78^8^3.28^3.57^~2, 3~^~07/01/2015~ -~01305~^~204~^1.04^9^0.02^~1~^~A~^^^1^0.93^1.20^8^0.98^1.10^~2, 3~^~07/01/2015~ -~01305~^~205~^7.68^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~207~^0.76^9^0.04^~1~^~A~^^^1^0.53^0.99^8^0.65^0.86^~2, 3~^~07/01/2015~ -~01305~^~255~^87.09^9^0.05^~1~^~A~^^^1^86.80^87.30^8^86.95^87.22^~2, 3~^~07/01/2015~ -~01305~^~269~^7.29^1^^~8~^^^^^^^^^^^~07/01/2015~ -~01305~^~303~^0.16^9^9.0e-03^~1~^~A~^^^1^0.12^0.20^8^0.14^0.18^~2, 3~^~07/01/2015~ -~01305~^~309~^0.46^9^5.0e-03^~1~^~A~^^^1^0.43^0.47^8^0.44^0.46^~2, 3~^~07/01/2015~ -~01305~^~323~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~418~^0.20^6^0.05^~1~^~A~^^^1^0.10^0.37^5^0.06^0.33^~2, 3~^~07/01/2015~ -~01305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01305~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~01306~^~203~^5.33^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~204~^9.33^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~205~^40.01^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~207~^1.48^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~209~^0.58^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~255~^43.85^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~269~^10.67^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~303~^0.48^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~309~^1.06^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~323~^0.70^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~418~^0.07^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01307~^~203~^8.00^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~204~^1.71^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~205~^10.24^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01307~^~207~^0.64^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~210~^5.30^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~211~^0.72^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~212~^0.77^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~213~^2.32^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01307~^~255~^79.50^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~303~^0.20^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~203~^8.24^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~204~^4.01^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~205~^3.24^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~01308~^~207~^0.74^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01308~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01308~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01308~^~213~^2.44^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01308~^~255~^83.77^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~01308~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~203~^8.62^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~204~^0.15^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~205~^10.66^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01312~^~207~^0.68^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~210~^5.47^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~211~^0.71^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~212~^0.71^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~213~^2.26^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~255~^79.90^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~203~^7.76^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~204~^0.11^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~205~^11.90^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01313~^~207~^0.64^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~210~^5.10^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~211~^0.57^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~212~^1.54^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~213~^2.08^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~255~^79.60^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01314~^~203~^9.53^2^^~1~^~A~^^^1^9.21^9.86^1^^^^~08/01/2016~ -~01314~^~204~^0.24^2^^~1~^~A~^^^1^0.20^0.28^1^^^^~08/01/2016~ -~01314~^~205~^3.43^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01314~^~207~^0.71^2^^~1~^~A~^^^1^0.66^0.75^1^^^^~08/01/2016~ -~01314~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2016~ -~01314~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2016~ -~01314~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2016~ -~01314~^~213~^2.37^2^^~1~^~A~^^^1^2.10^2.64^1^^^^~08/01/2016~ -~01314~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2016~ -~01314~^~255~^86.10^2^^~1~^~A~^^^1^85.90^86.30^1^^^^~08/01/2016~ -~01314~^~303~^0.03^2^^~1~^~A~^^^1^0.03^0.03^^^^~1~^~08/01/2016~ -~01316~^~203~^7.65^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~204~^0.22^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~205~^11.98^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~01316~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~210~^4.89^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~211~^1.35^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~212~^1.09^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~213~^1.97^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01316~^~255~^79.50^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~303~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01319~^~203~^7.45^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~204~^0.18^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~205~^12.13^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~207~^0.64^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~255~^79.60^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~203~^7.23^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~204~^0.24^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~205~^12.78^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~207~^0.55^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~210~^5.05^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~211~^1.49^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~212~^1.75^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~213~^2.01^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~214~^0.11^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~255~^79.20^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~269~^10.30^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~203~^7.28^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~204~^0.23^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~205~^11.86^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~207~^0.63^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~210~^7.07^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~211~^0.68^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~212~^0.73^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~213~^1.93^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~214~^0.11^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~255~^80.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~269~^10.41^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~309~^0.44^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~418~^0.45^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01322~^~203~^7.54^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~204~^0.37^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01322~^~205~^15.43^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~01322~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~210~^7.06^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~211~^2.63^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~212~^2.84^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~213~^2.40^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~214~^0.11^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01322~^~255~^76.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01322~^~269~^14.93^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~303~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01323~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~204~^100.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~207~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~01323~^~255~^0.50^0^^~4~^~T~^^^^^^^^^^~12/01/2016~ -~01323~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~02001~^~203~^6.09^35^0.33^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~204~^8.69^214^0.12^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~205~^72.12^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02001~^~207~^4.65^259^0.04^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~255~^8.46^40^0.27^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~303~^7.06^7^0.47^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~309~^1.01^7^0.16^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02002~^~203~^17.60^7^0.60^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~204~^15.90^10^2.31^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~205~^50.02^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02002~^~207~^6.95^13^0.55^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~255~^9.54^11^0.87^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~303~^36.96^5^10.18^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~309~^5.30^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02003~^~203~^22.98^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~204~^4.07^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~205~^47.75^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~207~^14.85^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~210~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~211~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~212~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~255~^10.35^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~269~^1.71^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~287~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02003~^~303~^89.80^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~309~^7.10^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~323~^10.70^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~342~^0.77^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02003~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02004~^~203~^7.61^6^0.42^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~204~^8.36^6^0.26^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~205~^74.97^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02004~^~207~^3.62^24^0.08^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~255~^5.44^23^0.25^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~303~^43.00^4^17.35^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~309~^3.70^3^0.62^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02005~^~203~^19.77^10^0.71^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~204~^14.59^18^1.34^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~205~^49.90^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02005~^~207~^5.87^23^0.22^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~255~^9.87^21^0.68^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~269~^0.64^0^^~4~^~BFZN~^~02030~^^^^^^^^^~02/01/2003~ -~02005~^~303~^16.23^3^3.96^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~309~^5.50^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~323~^2.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~02005~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02006~^~203~^10.76^28^0.36^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~204~^6.70^40^0.42^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~205~^68.47^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02006~^~207~^5.78^99^0.21^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~255~^8.28^96^0.18^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~303~^13.97^7^3.10^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~309~^7.47^3^0.86^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02007~^~203~^18.07^6^1.04^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~204~^25.27^9^0.99^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~205~^41.35^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02007~^~207~^9.27^12^0.72^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~255~^6.04^12^0.73^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~269~^0.67^0^^~4~^~BFSN~^~02030~^^^^^^^^^~02/01/2003~ -~02007~^~303~^44.90^3^8.76^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~309~^6.93^3^1.48^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~323~^1.07^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02007~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02007~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02007~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02007~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02008~^~203~^23.20^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~204~^3.90^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~205~^49.10^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02008~^~207~^16.60^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~255~^7.20^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~303~^31.95^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~309~^8.80^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~02009~^~203~^13.46^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~204~^14.28^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~205~^49.70^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~207~^11.81^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~210~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~211~^2.14^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~212~^4.29^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~255~^10.75^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~269~^7.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02009~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~303~^17.30^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~309~^4.30^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~323~^38.14^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~341~^0.24^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~342~^3.41^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~344~^3.10^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~346~^2.85^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02009~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02010~^~203~^3.99^5^0.07^~1~^~A~^^^3^3.21^4.50^2^3.67^4.30^~2~^~05/01/2007~ -~02010~^~204~^1.24^6^0.37^~11~^~JO~^^^4^0.33^1.92^3^0.05^2.43^~2~^~05/01/2007~ -~02010~^~205~^80.59^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~207~^3.60^5^0.18^~1~^~A~^^^3^3.25^4.03^2^2.79^4.40^~2~^~02/01/2007~ -~02010~^~210~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~211~^1.04^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02010~^~212~^1.11^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02010~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~255~^10.58^9^0.86^~1~^~A~^^^6^6.53^13.48^5^8.36^12.79^~2~^~02/01/2007~ -~02010~^~269~^2.17^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02010~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~303~^8.32^5^0.78^~1~^~A~^^^3^1.15^18.34^2^4.93^11.71^~2~^~02/01/2007~ -~02010~^~309~^1.83^6^0.22^~11~^~JO~^^^4^1.34^2.76^3^1.10^2.55^~2~^~05/01/2007~ -~02010~^~323~^2.32^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~342~^10.44^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~343~^0.26^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02010~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02011~^~203~^5.97^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~204~^13.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~205~^65.53^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~207~^5.63^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~210~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~211~^1.14^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02011~^~212~^1.07^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02011~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02011~^~255~^9.87^3^2.96^~1~^~A~^^^2^6.90^13.96^1^-27.83^47.57^~2~^~04/01/2011~ -~02011~^~269~^2.38^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02011~^~287~^0.15^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02011~^~303~^11.83^3^7.85^~1~^~A~^^^3^1.71^27.30^2^-21.97^45.63^~2~^~04/01/2011~ -~02011~^~309~^2.32^3^0.47^~1~^~A~^^^3^1.42^3.03^2^0.27^4.35^~2~^~04/01/2011~ -~02011~^~323~^8.82^2^^~1~^~A~^^^2^8.52^9.12^1^^^^~04/01/2011~ -~02011~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02012~^~203~^21.93^8^2.98^~1~^^^^^^^^^^^~01/01/1977~ -~02012~^~204~^4.78^9^0.70^~1~^^^^^^^^^^^~01/01/1977~ -~02012~^~205~^52.10^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~02012~^~207~^14.08^11^1.10^~1~^^^^^^^^^^^~01/01/1977~ -~02012~^~255~^7.30^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02012~^~269~^7.27^0^^~4~^~BFZN~^~02029~^^^^^^^^^~02/01/2003~ -~02012~^~303~^42.46^10^6.49^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~309~^4.72^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02012~^~323~^1.03^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~02012~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02013~^~203~^12.37^11^0.31^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~204~^17.77^12^2.01^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~205~^54.99^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02013~^~207~^6.02^43^0.10^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~255~^8.86^38^0.26^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~303~^16.32^7^4.36^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~309~^4.70^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02014~^~203~^17.81^12^0.26^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~204~^22.27^13^2.60^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~205~^44.24^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02014~^~207~^7.62^48^0.20^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~255~^8.06^47^0.23^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~269~^2.25^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02014~^~303~^66.36^35^2.50^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~309~^4.80^3^0.56^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~323~^3.33^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02014~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02015~^~203~^14.29^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~204~^14.01^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~205~^55.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~207~^7.07^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~210~^0.62^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~211~^1.14^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~212~^0.79^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~255~^8.80^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~269~^2.76^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~287~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02015~^~303~^19.10^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~309~^4.70^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~323~^25.24^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02015~^~342~^1.15^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02016~^~203~^15.98^8^1.21^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~204~^14.54^8^2.10^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~205~^55.17^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02016~^~207~^6.62^14^0.18^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~255~^7.70^7^0.66^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~303~^16.33^4^4.90^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~309~^5.20^3^0.85^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02017~^~203~^19.96^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~204~^4.36^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~205~^55.82^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02017~^~207~^12.56^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~255~^7.30^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~303~^48.78^4^21.17^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~309~^3.30^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02018~^~203~^15.80^12^0.92^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~204~^14.87^20^1.04^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~205~^52.29^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02018~^~207~^8.22^42^0.26^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~255~^8.81^18^0.74^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~303~^18.54^36^0.79^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~309~^3.70^3^0.79^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02019~^~203~^23.00^81^0.31^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~204~^6.41^82^0.16^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~205~^58.35^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02019~^~207~^3.40^80^0.07^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~255~^8.84^57^0.23^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~303~^33.53^25^5.43^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~309~^2.50^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02020~^~203~^16.55^3^1.29^~1~^~A~^^^2^14.69^18.58^1^0.08^33.01^~2, 3~^~11/01/2008~ -~02020~^~204~^0.73^3^0.03^~1~^~A~^^^2^0.22^1.66^1^0.33^1.12^~2, 3~^~11/01/2008~ -~02020~^~205~^72.73^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~207~^3.54^3^0.27^~1~^~A~^^^2^3.10^3.92^1^0.05^7.02^~2, 3~^~11/01/2008~ -~02020~^~210~^2.05^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~212~^0.31^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~255~^6.45^3^0.42^~1~^~A~^^^2^5.97^7.26^1^1.02^11.88^~2, 3~^~11/01/2008~ -~02020~^~269~^2.43^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~303~^5.65^3^0.01^~1~^~A~^^^2^5.45^6.00^1^5.47^5.81^~2, 3~^~11/01/2008~ -~02020~^~309~^2.99^3^0.36^~1~^~A~^^^2^1.79^4.30^1^-1.58^7.56^~2, 3~^~11/01/2008~ -~02020~^~323~^0.67^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02020~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02021~^~203~^8.98^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~204~^4.24^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~205~^71.62^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~207~^5.22^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~210~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~211~^1.22^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~212~^1.78^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~255~^9.94^2^^~1~^~A~^^^2^9.30^10.58^1^^^^~06/01/2010~ -~02021~^~269~^3.39^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~287~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02021~^~303~^19.80^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~309~^3.64^2^^~1~^~A~^^^2^2.30^4.98^1^^^^~06/01/2010~ -~02021~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~342~^3.01^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02021~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02022~^~203~^6.71^22^0.23^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~204~^32.38^131^0.41^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~205~^50.50^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02022~^~207~^2.23^179^0.04^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~255~^8.17^107^0.22^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~303~^13.90^5^2.71^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~309~^2.30^4^0.46^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02023~^~203~^12.66^5^0.51^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~204~^7.04^5^0.17^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~205~^60.56^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02023~^~207~^12.10^203^0.22^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~255~^7.64^28^0.14^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~269~^4.09^0^^~4~^~BFZN~^~02027~^^^^^^^^^~02/01/2003~ -~02023~^~303~^82.71^8^7.63^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~309~^3.60^5^0.37^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~323~^1.69^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~02023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02024~^~203~^26.08^4^0.32^~11~^~JO~^^^3^25.42^26.61^2^24.68^27.46^~2~^~11/01/2008~ -~02024~^~204~^36.24^4^1.35^~11~^~JO~^^^3^30.11^38.50^2^30.40^42.07^~2~^~11/01/2008~ -~02024~^~205~^28.09^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~207~^4.33^4^0.25^~11~^~JO~^^^3^3.76^4.80^2^3.24^5.41^~2~^~11/01/2008~ -~02024~^~210~^3.69^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02024~^~211~^2.88^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02024~^~212~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~255~^5.27^3^0.23^~1~^~A~^^^2^4.99^5.69^1^2.26^8.26^~2, 3~^~11/01/2008~ -~02024~^~269~^6.79^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02024~^~287~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02024~^~303~^9.21^4^0.69^~11~^~JO~^^^3^8.08^10.50^2^6.23^12.18^~2~^~11/01/2008~ -~02024~^~309~^6.08^4^1.11^~11~^~JO~^^^3^4.73^8.30^2^1.28^10.87^~2~^~11/01/2008~ -~02024~^~323~^5.07^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~342~^19.82^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~343~^0.81^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~346~^0.07^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02024~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02025~^~203~^5.84^20^0.11^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~204~^36.31^76^0.47^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~205~^49.29^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02025~^~207~^2.34^119^0.06^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~255~^6.23^78^0.36^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~269~^2.99^0^^~4~^~BFZN~^~02033~^^^^^^^^^~06/01/2014~ -~02025~^~303~^3.04^5^0.53^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~309~^2.15^4^0.35^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02025~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02025~^~342~^0.53^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02025~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02025~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02026~^~203~^10.41^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~204~^1.04^2^^~11~^~JO~^^^2^0.43^1.66^1^^^^~03/01/2009~ -~02026~^~205~^79.12^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~207~^4.04^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~210~^3.87^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~211~^0.73^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~212~^1.67^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~255~^5.39^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~269~^6.63^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~287~^0.36^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~303~^3.90^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~309~^4.05^2^^~11~^~JO~^^^2^3.00^5.10^1^^^^~03/01/2009~ -~02026~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~342~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02026~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02026~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02027~^~203~^9.00^3^0.02^~1~^~A~^^^2^8.15^10.62^1^8.63^9.37^~2, 3~^~06/01/2009~ -~02027~^~204~^4.28^3^0.06^~1~^~A~^^^2^2.51^7.62^1^3.49^5.05^~2, 3~^~06/01/2009~ -~02027~^~205~^68.92^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~207~^7.87^3^0.02^~1~^~A~^^^2^7.70^8.13^1^7.49^8.24^~2, 3~^~06/01/2009~ -~02027~^~210~^0.91^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~211~^1.90^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~212~^1.13^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02027~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02027~^~255~^9.93^3^0.34^~1~^~A~^^^2^9.10^10.86^1^5.49^14.36^~2, 3~^~06/01/2009~ -~02027~^~269~^4.09^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~287~^0.15^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02027~^~303~^36.80^3^5.46^~1~^~A~^^^2^28.10^44.50^1^-32.66^106.26^~2, 3~^~06/01/2009~ -~02027~^~309~^2.69^3^0.12^~1~^~A~^^^2^1.70^4.30^1^1.12^4.25^~2, 3~^~06/01/2009~ -~02027~^~323~^18.26^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~342~^24.42^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~343~^0.92^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02028~^~203~^14.14^3^0.15^~1~^~A~^^^2^13.96^14.47^1^12.13^16.15^~2, 3~^~04/01/2010~ -~02028~^~204~^12.89^3^0.30^~1~^~A~^^^2^11.48^14.80^1^9.02^16.75^~2, 3~^~04/01/2010~ -~02028~^~205~^53.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~207~^7.74^3^0.17^~1~^~A~^^^2^7.53^8.06^1^5.51^9.96^~2, 3~^~04/01/2010~ -~02028~^~210~^0.81^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~211~^2.63^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~212~^6.71^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02028~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02028~^~255~^11.24^3^0.47^~1~^~A~^^^2^10.62^12.03^1^5.25^17.23^~2, 3~^~04/01/2010~ -~02028~^~269~^10.34^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~287~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~303~^21.14^4^1.15^~1~^~A~^^^3^15.40^24.00^2^16.18^26.08^~2~^~04/01/2010~ -~02028~^~309~^4.33^4^1.94^~1~^~A~^^^3^0.78^7.50^2^-4.05^12.71^~2~^~04/01/2010~ -~02028~^~323~^29.10^1^^~1~^~A~^^^^^^^^^^~01/01/2012~ -~02028~^~341~^0.35^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02028~^~342~^3.54^1^^~1~^~A~^^^^^^^^^^~01/01/2012~ -~02028~^~343~^0.25^1^^~1~^~A~^^^^^^^^^^~01/01/2012~ -~02028~^~344~^3.95^1^^~1~^~A~^^^^^^^^^^~01/01/2012~ -~02028~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02028~^~346~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2012~ -~02028~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02028~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02029~^~203~^26.63^3^0.03^~1~^~A~^^^2^24.12^27.94^1^26.18^27.08^~2, 3~^~06/01/2009~ -~02029~^~204~^5.48^3^0.04^~1~^~A~^^^2^4.79^6.71^1^4.85^6.10^~2, 3~^~06/01/2009~ -~02029~^~205~^50.64^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~207~^11.36^3^0.32^~1~^~A~^^^2^10.31^12.49^1^7.22^15.49^~2, 3~^~06/01/2009~ -~02029~^~210~^4.09^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02029~^~211~^2.76^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02029~^~212~^0.42^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02029~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~255~^5.89^3^0.06^~1~^~A~^^^2^5.69^6.09^1^5.01^6.75^~2, 3~^~06/01/2009~ -~02029~^~269~^7.27^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02029~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~303~^22.04^3^8.25^~1~^~A~^^^2^7.83^32.60^1^-82.86^126.95^~2, 3~^~06/01/2009~ -~02029~^~309~^5.44^3^0.24^~1~^~A~^^^2^2.99^9.60^1^2.34^8.52^~2, 3~^~06/01/2009~ -~02029~^~323~^8.96^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~342~^1.53^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02029~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02030~^~203~^10.39^4^0.35^~1~^~A~^^^2^9.78^11.71^1^5.91^14.87^~2, 3~^~04/01/2010~ -~02030~^~204~^3.26^198^0.16^~1~^^^^^^^^^^^~01/01/1977~ -~02030~^~205~^63.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~207~^4.49^6^0.58^~1~^~A~^^^3^3.40^6.90^2^1.96^7.00^~2~^~04/01/2010~ -~02030~^~210~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^~1~^~04/01/2010~ -~02030~^~211~^0.24^2^^~1~^~A~^^^1^0.21^0.27^1^^^^~04/01/2010~ -~02030~^~212~^0.23^2^^~1~^~A~^^^1^0.21^0.25^1^^^^~04/01/2010~ -~02030~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~02030~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~02030~^~255~^12.46^6^0.48^~1~^~A~^^^3^11.40^13.82^2^10.37^14.54^~2~^~04/01/2010~ -~02030~^~269~^0.64^2^^~1~^~A~^^^1^0.62^0.66^1^^^^~02/01/2003~ -~02030~^~287~^0.15^2^^~1~^~A~^^^1^0.12^0.18^1^^^^~04/01/2010~ -~02030~^~303~^9.71^4^4.73^~1~^~A~^^^2^4.05^22.90^1^-48.18^67.60^~2, 3~^~04/01/2010~ -~02030~^~309~^1.19^6^0.20^~1~^~A~^^^3^0.82^1.80^2^0.29^2.08^~2~^~04/01/2010~ -~02030~^~323~^1.04^2^^~1~^~A~^^^1^0.81^1.27^1^^^^~04/01/2010~ -~02030~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~02030~^~342~^6.56^2^^~1~^~A~^^^1^6.43^6.70^1^^^^~04/01/2010~ -~02030~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~02030~^~344~^0.85^2^^~1~^~A~^^^1^0.00^1.69^1^^^~1~^~04/01/2010~ -~02030~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~02030~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~02030~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~02030~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02031~^~203~^12.01^77^0.32^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~204~^17.27^171^0.50^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~205~^56.63^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02031~^~207~^6.04^385^0.10^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~255~^8.05^121^0.29^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~269~^10.34^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~303~^7.80^31^0.62^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~309~^2.48^4^0.61^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~323~^29.83^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~ -~02031~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02032~^~203~^10.40^78^0.12^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~204~^2.12^75^0.15^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~205~^68.61^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02032~^~207~^1.59^1023^0.02^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~255~^11.42^132^0.17^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~303~^14.31^8^2.92^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~309~^1.13^6^0.27^~1~^^^^^^^^^^^~02/01/1995~ -~02032~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02033~^~203~^17.99^2^^~11~^~JO~^^^2^17.57^18.40^1^^^^~06/01/2008~ -~02033~^~204~^41.56^8^1.56^~11~^~JO~^^^3^36.58^45.52^2^34.85^48.27^~2~^~06/01/2008~ -~02033~^~205~^28.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~207~^6.37^8^0.68^~1~^~A~^^^2^4.92^7.06^1^-2.35^15.09^~2~^~06/01/2008~ -~02033~^~210~^2.33^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~211~^0.37^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~212~^0.29^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~255~^5.95^9^1.05^~1~^~A~^^^3^3.39^7.20^2^1.40^10.49^~2~^~06/01/2008~ -~02033~^~269~^2.99^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~303~^9.76^11^0.91^~11~^~JO~^^^5^6.41^12.50^4^7.21^12.30^~2~^~06/01/2008~ -~02033~^~309~^7.90^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~323~^1.77^8^0.47^~1~^~A~^^^2^0.98^2.24^1^-4.24^7.77^~2~^~06/01/2008~ -~02033~^~341~^8.30^8^8.30^~1~^~A~^^^2^0.00^23.16^1^-97.20^113.81^~1, 2~^~06/01/2008~ -~02033~^~342~^8.82^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~343~^0.23^8^0.17^~1~^~A~^^^2^0.05^0.63^1^-2.02^2.47^~2~^~06/01/2008~ -~02033~^~344~^0.15^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~346~^0.13^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~02033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02034~^~203~^9.59^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~204~^7.53^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~205~^65.59^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02034~^~207~^5.92^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~255~^9.31^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~269~^1.80^0^^~4~^~RA~^^^^^^^^^^~07/01/2014~ -~02034~^~303~^35.30^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~309~^3.14^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~323~^1.32^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~02034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02035~^~203~^5.76^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~204~^12.60^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~205~^69.28^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02035~^~207~^3.90^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~255~^8.46^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~269~^7.76^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~02035~^~303~^19.71^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~309~^2.37^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~323~^1.93^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~02035~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02036~^~203~^4.88^3^0.80^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~204~^15.22^4^1.81^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~205~^64.06^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02036~^~207~^6.53^6^0.34^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~255~^9.31^7^1.52^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~303~^29.25^4^7.15^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~309~^3.23^3^0.23^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02037~^~203~^11.43^12^0.68^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~204~^5.85^17^0.73^~1~^^^^^^^^^^^~02/01/1995~ -~02037~^~205~^65.37^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02037~^~207~^5.45^103^0.08^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~255~^11.90^111^0.24^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~303~^11.10^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~309~^1.09^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02038~^~203~^10.63^4^0.30^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~204~^12.75^24^0.29^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~205~^60.73^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02038~^~207~^7.95^45^0.28^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~255~^7.96^14^0.36^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~269~^1.71^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02038~^~303~^28.12^6^3.96^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~309~^4.70^5^0.62^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~323~^7.48^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02039~^~203~^6.73^3^0.41^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~204~^5.91^3^0.93^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~205~^68.73^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02039~^~207~^9.63^5^0.61^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~255~^9.00^3^0.12^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~303~^37.88^4^6.48^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~309~^4.30^3^1.45^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02041~^~203~^22.77^4^1.47^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~204~^7.24^4^0.41^~1~^^^^^^^^^^^~02/01/1995~ -~02041~^~205~^50.22^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02041~^~207~^12.03^5^0.83^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~255~^7.74^7^1.18^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~303~^32.30^4^5.95^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~309~^3.90^3^1.56^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02042~^~203~^9.11^6^1.85^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~204~^7.43^22^0.48^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~205~^63.94^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02042~^~207~^11.74^46^0.37^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~255~^7.79^8^0.37^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~269~^1.71^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02042~^~303~^123.60^5^16.05^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~309~^6.18^4^0.68^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~323~^7.48^0^^~4~^~BFZN~^~02003~^^^^^^^^^~02/01/2003~ -~02042~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02043~^~203~^9.68^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~204~^3.25^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~205~^67.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~207~^7.08^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~210~^2.38^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~211~^0.38^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~212~^0.45^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~255~^12.85^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~269~^3.21^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02043~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~303~^55.00^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~309~^4.50^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~323~^4.43^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2013~ -~02043~^~342~^0.72^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~344~^0.12^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~02043~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2013~ -~02043~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02044~^~203~^3.15^3^0.60^~1~^~A~^^^2^2.30^3.76^1^-4.56^10.87^~2~^~12/01/2006~ -~02044~^~204~^0.64^3^0.03^~1~^~A~^^^2^0.57^0.67^1^0.25^1.02^~2~^~12/01/2006~ -~02044~^~205~^2.65^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~02044~^~207~^1.49^3^0.06^~1~^~A~^^^2^1.40^1.70^1^0.72^2.25^~2~^~12/01/2006~ -~02044~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~211~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~212~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~255~^92.06^3^1.10^~1~^~A~^^^2^90.45^93.17^1^78.02^106.10^~2~^~12/01/2006~ -~02044~^~269~^0.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~02044~^~287~^0.27^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~303~^3.17^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~309~^0.81^3^0.03^~1~^~A~^^^2^0.53^1.17^1^0.31^1.29^~2~^~12/01/2006~ -~02044~^~323~^0.80^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~02044~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~02044~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~02044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~02045~^~203~^3.46^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~204~^1.12^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~205~^7.02^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02045~^~207~^2.45^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~255~^85.95^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~303~^6.59^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~309~^0.91^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02046~^~203~^3.74^14^0.02^~1~^~A~^^^2^3.40^4.87^10^3.67^3.80^~2, 3~^~04/01/2014~ -~02046~^~204~^3.34^14^0.07^~1~^~A~^^^2^2.67^4.11^7^3.16^3.52^~2, 3~^~04/01/2014~ -~02046~^~205~^5.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~207~^3.37^14^0.10^~1~^~A~^^^2^2.09^3.94^6^3.11^3.62^~2, 3~^~04/01/2014~ -~02046~^~209~^0.64^5^0.03^~1~^~A~^^^2^0.60^0.80^1^0.17^1.09^~2, 3~^~04/01/2014~ -~02046~^~210~^0.21^5^0.00^~1~^~A~^^^2^0.07^0.48^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~211~^0.47^5^4.0e-03^~1~^~A~^^^2^0.37^0.58^1^0.42^0.51^~2, 3~^~04/01/2014~ -~02046~^~212~^0.23^5^0.00^~1~^~A~^^^2^0.18^0.34^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~255~^83.72^15^0.09^~1~^~A~^^^3^82.40^84.38^8^83.49^83.94^~2, 3~^~04/01/2014~ -~02046~^~269~^0.92^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~02046~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~303~^1.61^18^0.03^~1~^~A~^^^3^1.31^1.80^8^1.54^1.68^~2, 3~^~04/01/2014~ -~02046~^~309~^0.64^18^7.0e-03^~1~^~A~^^^3^0.58^0.79^10^0.62^0.65^~2, 3~^~04/01/2006~ -~02046~^~323~^0.36^5^1.0e-03^~1~^~A~^^^2^0.31^0.43^1^0.34^0.37^~2, 3~^~04/01/2006~ -~02046~^~341~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~342~^2.15^5^0.01^~1~^~A~^^^2^2.01^2.23^1^1.91^2.38^~2, 3~^~04/01/2014~ -~02046~^~343~^0.08^5^1.0e-03^~1~^~A~^^^2^0.05^0.11^1^0.06^0.09^~2, 3~^~04/01/2006~ -~02046~^~344~^0.02^5^0.00^~1~^~A~^^^2^0.00^0.05^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02047~^~203~^0.00^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~204~^0.00^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~205~^0.00^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~207~^99.80^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~255~^0.20^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~303~^0.33^3^0.18^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~309~^0.10^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02047~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02048~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~02/01/2005~ -~02048~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~02048~^~205~^0.93^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02048~^~207~^0.17^3^3.0e-03^~1~^~A~^^^1^0.17^0.18^2^0.16^0.18^~2, 3~^~02/01/2005~ -~02048~^~210~^0.00^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2005~ -~02048~^~211~^0.10^1^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~02048~^~212~^0.30^1^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~02048~^~213~^0.00^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2005~ -~02048~^~214~^0.00^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2005~ -~02048~^~255~^93.81^3^0.09^~1~^~A~^^^1^93.65^93.97^2^93.41^94.20^~2, 3~^~02/01/2005~ -~02048~^~269~^0.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~02048~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~02048~^~303~^0.20^4^3.0e-03^~6~^~JA~^^^2^0.11^0.28^1^0.15^0.24^~2~^~03/01/2005~ -~02048~^~309~^0.04^3^5.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~2, 3~^~02/01/2005~ -~02048~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02048~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02049~^~203~^5.56^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~204~^1.68^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~205~^24.45^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02049~^~207~^3.20^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~255~^65.11^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~303~^17.45^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~309~^1.81^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02050~^~203~^0.06^4^0.02^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~204~^0.06^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~205~^12.65^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02050~^~207~^0.26^4^0.04^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~255~^52.58^4^3.82^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~269~^12.65^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~02050~^~303~^0.12^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~309~^0.11^4^0.01^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~02050~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02051~^~203~^0.05^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~204~^0.00^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~205~^2.41^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02051~^~207~^0.22^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~255~^64.46^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~303~^0.13^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~309~^0.06^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02052~^~203~^0.03^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~204~^0.00^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~205~^14.40^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~ -~02052~^~207~^0.01^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~02052~^~255~^85.58^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~269~^14.40^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~02052~^~303~^0.05^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~309~^0.01^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~02052~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~ -~02052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~02052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~02053~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2005~ -~02053~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~02053~^~205~^0.04^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~02053~^~207~^0.02^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~02053~^~255~^94.78^3^0.07^~1~^~A~^^^1^94.63^94.87^2^94.44^95.11^~2, 3~^~01/01/2005~ -~02053~^~269~^0.04^0^^~4~^~NR~^^^^^^^^^^~01/01/2005~ -~02053~^~303~^0.03^3^1.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.02^0.02^~2, 3~^~01/01/2005~ -~02053~^~309~^0.01^3^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-4.0e-03^0.01^~2, 3~^~01/01/2005~ -~02053~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~02053~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~02053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02054~^~203~^2.36^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~204~^0.86^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~205~^4.89^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~02054~^~207~^8.04^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~255~^83.85^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~269~^0.41^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~ -~02054~^~303~^1.67^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~309~^0.32^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~323~^0.88^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~02054~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~02054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02055~^~203~^1.18^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~204~^0.69^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~205~^11.29^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~02055~^~207~^1.76^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~209~^0.00^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~ -~02055~^~255~^85.08^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~269~^7.99^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~02055~^~303~^0.42^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~309~^0.83^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~323~^0.01^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~02055~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~02055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~02063~^~203~^3.31^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~204~^5.86^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~205~^20.70^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02063~^~207~^2.35^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~255~^67.77^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~303~^6.65^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~309~^0.93^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02064~^~203~^3.75^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~204~^0.94^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~205~^14.89^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02064~^~207~^1.76^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~255~^78.65^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~303~^5.08^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~309~^1.11^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02065~^~203~^3.29^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~204~^0.73^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~205~^8.41^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02065~^~207~^2.03^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~255~^85.55^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~303~^11.87^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~309~^1.09^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02066~^~203~^19.93^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~204~^6.03^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~205~^52.04^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~02066~^~207~^10.70^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~255~^11.30^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~303~^87.47^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~309~^2.41^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~02068~^~203~^0.04^5^0.00^~6~^~JA~^^^3^0.00^0.11^^^^~2, 3~^~03/01/2006~ -~02068~^~204~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2006~ -~02068~^~205~^0.27^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~02068~^~207~^0.17^6^0.06^~6~^~JA~^^^3^0.07^0.40^2^-0.09^0.44^~1, 2~^~03/01/2006~ -~02068~^~255~^94.47^3^0.08^~1~^~A~^^^1^94.36^94.64^2^94.10^94.83^~2, 3~^~03/01/2006~ -~02068~^~269~^0.00^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~ -~02068~^~303~^0.45^6^0.06^~6~^~JA~^^^3^0.17^0.68^2^0.15^0.74^~2~^~03/01/2006~ -~02068~^~309~^0.03^3^2.0e-03^~1~^~A~^^^1^0.03^0.03^2^0.02^0.03^~2, 3~^~03/01/2006~ -~02069~^~203~^0.49^4^0.10^~6~^~JA~^^^2^0.36^0.78^1^-0.78^1.77^~2~^~02/01/2006~ -~02069~^~204~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~02069~^~205~^17.03^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~02069~^~207~^0.37^4^0.06^~6~^~JA~^^^2^0.31^0.54^1^-0.39^1.13^~2~^~02/01/2006~ -~02069~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~02069~^~211~^7.57^3^0.77^~1~^~A~^^^1^6.14^8.53^2^4.34^11.04^~2, 3~^~05/01/2006~ -~02069~^~212~^7.38^3^0.85^~1~^~A~^^^1^5.79^8.45^2^3.81^11.19^~2, 3~^~05/01/2006~ -~02069~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~02069~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~02069~^~255~^76.45^4^0.58^~6~^~JA~^^^2^73.17^80.49^1^69.01^83.89^~2~^~03/01/2006~ -~02069~^~269~^14.95^4^0.24^~6~^~JA~^^^2^11.93^16.86^1^11.78^18.11^~2~^~02/01/2006~ -~02069~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~02069~^~303~^0.72^4^0.06^~6~^~JA~^^^2^0.51^0.86^1^-0.14^1.59^~2~^~02/01/2006~ -~02069~^~309~^0.08^3^0.01^~1~^~A~^^^1^0.05^0.10^2^0.02^0.13^~2, 3~^~02/01/2006~ -~02074~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~207~^99.80^0^^~4~^~BFZN~^~02047~^^^^^^^^^~03/01/2013~ -~02074~^~255~^0.20^0^^~4~^~BFZN~^~02047~^^^^^^^^^~03/01/2013~ -~02074~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~203~^4.50^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~205~^58.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~207~^31.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~02075~^~255~^5.70^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2013~ -~02075~^~269~^10.83^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~303~^7.20^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~203~^10.82^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~204~^7.30^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~205~^56.56^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~207~^14.56^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~02076~^~255~^10.75^0^^~4~^~BFZN~^~02009~^^^^^^^^^~03/01/2013~ -~02076~^~269~^8.67^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~303~^3.90^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~03000~^~203~^5.55^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~204~^9.72^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~205~^74.72^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~03000~^~207~^2.26^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~255~^7.74^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~269~^30.56^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~303~^2.70^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03000~^~309~^1.15^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~323~^0.98^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~03000~^~341~^0.04^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~342~^0.75^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~343~^0.22^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~344~^0.65^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~345~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~573~^0.53^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03000~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03001~^~203~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03001~^~204~^0.02^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03001~^~205~^86.68^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~207~^0.29^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~255~^12.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~269~^57.40^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~303~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~309~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03002~^~203~^12.03^2^^~1~^~A~^^^1^11.31^12.75^1^^^^~03/01/2007~ -~03002~^~204~^2.52^2^^~1~^~A~^^^1^2.18^2.87^1^^^^~03/01/2007~ -~03002~^~205~^2.43^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03002~^~207~^0.57^2^^~1~^~A~^^^1^0.52^0.63^1^^^^~03/01/2007~ -~03002~^~255~^82.44^55^1.25^~6~^~JA~^^^2^80.60^84.84^2^77.04^87.84^~4~^~03/01/2007~ -~03002~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03002~^~303~^0.98^2^^~1~^~A~^^^1^0.75^1.20^1^^^^~03/01/2007~ -~03002~^~309~^2.22^23^0.16^~6~^~JA~^^^2^1.90^2.46^2^1.50^2.93^~4~^~03/01/2007~ -~03002~^~323~^0.37^2^^~1~^~A~^^^1^0.23^0.51^1^^^^~03/01/2007~ -~03002~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~03/01/2007~ -~03002~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2007~ -~03002~^~418~^1.26^3^0.16^~6~^~JA~^^^2^1.10^1.42^1^-0.77^3.29^~4~^~03/01/2007~ -~03002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03003~^~203~^12.03^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~204~^2.52^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~205~^2.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~207~^0.57^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~255~^82.44^55^1.25^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03003~^~303~^0.98^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~309~^2.22^23^0.16^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~323~^0.37^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~342~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~344~^0.04^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~418~^1.26^3^0.16^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03005~^~203~^13.12^2^^~1~^~A~^^^1^13.06^13.19^1^^^^~03/01/2007~ -~03005~^~204~^2.45^2^^~1~^~A~^^^1^1.70^3.19^1^^^^~03/01/2007~ -~03005~^~205~^1.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03005~^~207~^0.54^2^^~1~^~A~^^^1^0.52^0.57^1^^^^~03/01/2007~ -~03005~^~255~^82.37^2^^~1~^~A~^^^1^79.71^85.04^1^^^^~03/01/2007~ -~03005~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03005~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~309~^2.50^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~323~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~418~^1.65^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03007~^~203~^14.00^12^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~204~^7.10^12^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03007~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03007~^~255~^78.40^18^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03007~^~303~^1.00^17^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~309~^2.27^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~323~^0.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03007~^~418~^0.99^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03008~^~203~^11.30^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03008~^~204~^3.80^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~03008~^~205~^3.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~03008~^~207~^0.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~03008~^~255~^80.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~03008~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03008~^~303~^1.03^19^0.08^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~309~^2.25^5^0.18^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~323~^0.13^0^^~4~^~BFSN~^~10011~^^^^^^^^^~02/01/2003~ -~03008~^~418~^0.10^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03009~^~203~^11.30^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03009~^~204~^3.80^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03009~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03009~^~207~^0.70^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~255~^80.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03009~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03009~^~303~^1.01^4^0.06^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~309~^1.70^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~323~^0.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03009~^~418~^0.10^0^^~4~^^^^^^^^^^^~03/01/2007~ -~03009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03010~^~203~^14.07^2^^~6~^~JA~^^^2^13.63^14.50^2^^^^~03/01/2007~ -~03010~^~204~^3.41^2^^~1~^~A~^^^1^3.01^3.82^1^^^^~03/01/2007~ -~03010~^~205~^0.85^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03010~^~207~^0.60^2^^~1~^~A~^^^1^0.58^0.63^1^^^^~03/01/2007~ -~03010~^~255~^81.06^3^1.24^~6~^~JA~^^^2^79.39^83.48^2^75.72^86.39^~4~^~03/01/2007~ -~03010~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03010~^~303~^1.19^2^^~6~^~JA~^^^2^0.89^1.49^1^^^^~03/01/2007~ -~03010~^~309~^2.43^6^0.32^~6~^~JA~^^^2^2.10^2.76^1^-1.74^6.59^~4~^~03/01/2007~ -~03010~^~323~^0.19^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03010~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~418~^1.90^3^0.29^~6~^~JA~^^^2^1.60^2.19^1^-1.85^5.64^~4~^~03/01/2007~ -~03010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03011~^~203~^15.20^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~204~^5.20^19^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03011~^~207~^0.37^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03011~^~255~^79.60^21^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03011~^~303~^1.66^21^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~309~^2.60^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~323~^0.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03011~^~418~^2.27^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03012~^~203~^13.70^29^0.10^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~204~^7.90^30^0.20^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~03012~^~207~^0.49^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~03012~^~255~^77.50^53^0.20^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~303~^1.40^29^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~309~^1.21^27^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~323~^0.25^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03012~^~418~^0.40^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03013~^~203~^14.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03013~^~204~^9.60^19^0.40^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~205~^0.00^0^^~1~^^^^^^^^^^^~01/01/2007~ -~03013~^~207~^0.49^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03013~^~255~^76.00^22^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03013~^~303~^0.99^20^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~309~^1.01^4^0.08^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~323~^0.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03013~^~418~^0.40^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03014~^~203~^14.60^7^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~204~^14.40^8^0.40^~1~^^^^^^^^^^^~02/01/1995~ -~03014~^~205~^1.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03014~^~207~^1.20^6^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~255~^68.30^6^0.90^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~269~^1.40^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03014~^~303~^1.56^8^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~309~^1.01^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~323~^0.37^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03014~^~418~^0.40^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03015~^~203~^11.50^3^0.64^~1~^~A~^^^1^10.25^12.38^2^8.73^14.26^~2, 3~^~03/01/2007~ -~03015~^~204~^6.20^3^0.65^~1~^~A~^^^1^5.38^7.50^2^3.37^9.02^~2, 3~^~03/01/2007~ -~03015~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03015~^~207~^0.58^3^0.02^~1~^~A~^^^1^0.55^0.62^2^0.49^0.67^~2, 3~^~03/01/2007~ -~03015~^~255~^80.32^3^1.44^~1~^~A~^^^1^78.04^82.99^2^74.11^86.52^~2, 3~^~03/01/2007~ -~03015~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03015~^~303~^0.70^3^0.06^~1~^~A~^^^1^0.57^0.77^2^0.42^0.98^~2, 3~^~03/01/2007~ -~03015~^~309~^1.77^3^0.18^~1~^~A~^^^1^1.40^2.00^2^0.96^2.56^~2, 3~^~03/01/2007~ -~03015~^~323~^0.08^3^0.01^~1~^~A~^^^1^0.06^0.11^2^0.02^0.14^~2, 3~^~03/01/2007~ -~03015~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~342~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.07^0.13^~1, 2, 3~^~03/01/2007~ -~03015~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~344~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^^^^~2, 3~^~03/01/2007~ -~03015~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~418~^1.11^2^^~1~^~A~^^^1^1.02^1.20^1^^^^~03/01/2007~ -~03015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03016~^~203~^11.50^3^0.64^~1~^~A~^^^1^10.25^12.38^2^8.73^14.26^~2, 3~^~03/01/2007~ -~03016~^~204~^6.20^3^0.65^~1~^~A~^^^1^5.38^7.50^2^3.37^9.02^~2, 3~^~03/01/2007~ -~03016~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03016~^~207~^0.58^3^0.02^~1~^~A~^^^1^0.55^0.62^2^0.49^0.67^~2, 3~^~03/01/2007~ -~03016~^~255~^80.32^3^1.44^~1~^~A~^^^1^78.04^82.99^2^74.11^86.52^~2, 3~^~03/01/2007~ -~03016~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~03016~^~303~^0.70^3^0.06^~1~^~A~^^^1^0.57^0.77^2^0.42^0.98^~2, 3~^~03/01/2007~ -~03016~^~309~^1.77^3^0.18^~1~^~A~^^^1^1.40^2.00^2^0.96^2.56^~2, 3~^~03/01/2007~ -~03016~^~323~^0.08^3^0.01^~1~^~A~^^^1^0.06^0.11^2^0.02^0.14^~2, 3~^~03/01/2007~ -~03016~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~342~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.07^0.13^~1, 2, 3~^~03/01/2007~ -~03016~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~344~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^^^^~2, 3~^~03/01/2007~ -~03016~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~418~^1.11^2^^~1~^~A~^^^1^1.02^1.20^1^^^^~03/01/2007~ -~03016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03017~^~203~^13.70^5^0.30^~1~^^^^^^^^^^^~05/01/2010~ -~03017~^~204~^14.20^5^0.50^~1~^^^^^^^^^^^~05/01/2010~ -~03017~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03017~^~207~^0.90^4^0.30^~1~^^^^^^^^^^^~05/01/2010~ -~03017~^~255~^69.80^4^0.80^~1~^^^^^^^^^^^~05/01/2010~ -~03017~^~269~^1.40^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~03017~^~303~^0.92^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~309~^2.40^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~323~^0.12^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03019~^~203~^0.82^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~204~^2.24^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~205~^76.61^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~03019~^~207~^1.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~255~^19.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~269~^68.65^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~303~^1.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~309~^0.14^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~323~^0.96^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03021~^~203~^13.40^7^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~204~^14.60^6^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~205~^1.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03021~^~207~^1.40^5^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~255~^69.50^6^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~269~^0.80^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~303~^1.38^13^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~309~^1.90^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03021~^~418~^0.29^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03022~^~203~^1.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03022~^~205~^14.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03022~^~207~^0.26^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~210~^0.72^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~211~^2.87^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~212~^5.33^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~255~^83.83^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~269~^9.09^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~303~^0.15^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~309~^0.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03022~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~203~^6.19^5^0.06^~1~^~A~^^^1^6.00^6.37^4^6.01^6.36^~2, 3~^~02/01/2015~ -~03023~^~204~^2.30^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03023~^~205~^85.79^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~03023~^~207~^2.11^5^0.02^~1~^~A~^^^1^2.01^2.15^4^2.03^2.17^~2, 3~^~02/01/2015~ -~03023~^~209~^59.17^3^0.24^~1~^~A~^^^1^58.70^59.50^2^58.13^60.20^~2, 3~^~02/01/2015~ -~03023~^~210~^14.90^3^0.39^~1~^~A~^^^1^14.45^15.69^2^13.19^16.60^~2, 3~^~02/01/2015~ -~03023~^~211~^1.13^3^0.01^~1~^~A~^^^1^1.10^1.15^2^1.06^1.18^~2, 3~^~02/01/2015~ -~03023~^~212~^1.81^3^0.01^~1~^~A~^^^1^1.79^1.84^2^1.74^1.87^~2, 3~^~02/01/2015~ -~03023~^~213~^0.00^3^0.00^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~214~^0.00^3^0.00^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~255~^3.62^5^0.14^~1~^~A~^^^1^3.23^3.99^4^3.22^4.01^~2, 3~^~02/01/2015~ -~03023~^~269~^17.84^3^0.39^~1~^~A~^^^1^17.39^18.62^2^16.14^19.52^~2, 3~^~02/01/2015~ -~03023~^~287~^0.00^3^0.00^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~303~^24.74^5^0.67^~1~^~A~^^^1^22.80^27.00^4^22.86^26.61^~2, 3~^~02/01/2015~ -~03023~^~309~^17.46^5^0.25^~1~^~A~^^^1^16.80^18.30^4^16.75^18.16^~2, 3~^~02/01/2015~ -~03023~^~323~^10.33^3^0.87^~1~^~A~^^^1^9.01^11.98^2^6.56^14.08^~2, 3~^~02/01/2015~ -~03023~^~341~^0.41^3^0.04^~1~^~A~^^^1^0.34^0.49^2^0.22^0.60^~2, 3~^~02/01/2015~ -~03023~^~342~^10.73^3^1.97^~1~^~A~^^^1^8.22^14.62^2^2.23^19.22^~2, 3~^~02/01/2015~ -~03023~^~343~^5.93^3^0.96^~1~^~A~^^^1^4.72^7.83^2^1.79^10.06^~2, 3~^~02/01/2015~ -~03023~^~344~^0.17^3^0.01^~1~^~A~^^^1^0.16^0.19^2^0.13^0.21^~2, 3~^~02/01/2015~ -~03023~^~345~^0.20^3^0.03^~1~^~A~^^^1^0.14^0.24^2^0.07^0.32^~2, 3~^~02/01/2015~ -~03023~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~573~^10.07^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03023~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~203~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~204~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~205~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~207~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~255~^99.90^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~303~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~309~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~203~^0.47^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03025~^~205~^12.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03025~^~207~^0.32^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~255~^86.34^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~269~^10.18^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~303~^0.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~309~^0.06^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~323~^0.41^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~346~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~203~^0.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~204~^0.14^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~205~^12.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~207~^0.19^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~209~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~210~^1.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~211~^3.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~212~^5.57^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~255~^87.14^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~269~^9.78^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~03026~^~309~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~323~^0.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03041~^~203~^2.00^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~204~^0.90^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~205~^7.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03041~^~207~^0.50^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~255~^88.90^5^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03041~^~303~^0.39^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~309~^0.40^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~323~^0.24^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03041~^~418~^0.09^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03042~^~203~^2.10^3^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~204~^0.80^3^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~205~^8.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03042~^~207~^0.60^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~255~^88.60^3^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03042~^~303~^0.47^3^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~309~^0.33^3^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~418~^0.09^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03043~^~203~^4.20^3^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~204~^2.10^3^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~205~^10.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03043~^~207~^1.40^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~255~^82.30^3^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03043~^~303~^0.87^3^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~309~^0.70^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~418~^0.51^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03044~^~203~^2.36^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~204~^1.47^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~205~^9.45^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~03044~^~207~^0.37^0^^~12~^~MA~^^^^^^^^^^~01/01/2003~ -~03044~^~209~^0.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~210~^0.47^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03044~^~211~^0.52^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03044~^~212~^0.57^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03044~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03044~^~214~^0.52^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03044~^~255~^86.34^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~269~^2.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03044~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~303~^0.46^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~309~^0.54^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~323~^2.62^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03044~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~342~^0.08^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03044~^~418~^0.15^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03045~^~203~^2.50^28^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~204~^1.10^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~205~^9.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03045~^~207~^0.30^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~255~^86.70^20^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~269~^2.43^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03045~^~303~^0.36^19^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~309~^0.36^7^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~323~^0.81^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03045~^~418~^0.24^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03046~^~203~^3.60^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~204~^2.20^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~205~^16.30^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~207~^1.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03046~^~255~^76.50^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~269~^0.59^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03046~^~303~^0.80^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~309~^0.35^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03046~^~418~^0.05^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03047~^~203~^2.44^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~204~^2.26^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~205~^8.18^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03047~^~207~^0.28^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~210~^0.50^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~211~^0.23^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~212~^0.18^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~214~^0.51^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~255~^86.84^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~269~^1.42^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~303~^0.41^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~309~^0.60^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03047~^~418~^0.19^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03048~^~203~^3.50^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~204~^2.60^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~205~^11.20^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03048~^~209~^8.10^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~211~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~212~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~213~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~214~^0.27^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~255~^81.70^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~269~^0.79^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03048~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~303~^0.60^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~309~^0.43^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~418~^0.06^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03049~^~203~^5.00^3^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~204~^2.90^4^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~205~^8.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03049~^~207~^1.40^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~255~^81.90^7^1.00^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03049~^~303~^0.69^3^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~309~^0.92^3^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~418~^0.51^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03050~^~203~^2.57^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~204~^1.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~205~^11.42^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03050~^~207~^0.47^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~210~^1.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~211~^0.50^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~212~^0.54^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~214~^0.31^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~255~^84.17^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~269~^2.72^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~303~^0.53^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~309~^0.53^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~323~^0.07^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03050~^~418~^0.03^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03051~^~203~^5.30^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~204~^1.00^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~205~^10.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03051~^~207~^1.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~255~^81.60^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~303~^0.90^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~309~^0.48^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~418~^0.23^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03053~^~203~^2.21^3^0.33^~1~^~A~^^^1^1.81^2.88^2^0.76^3.65^~2, 3~^~04/01/2007~ -~03053~^~204~^3.60^3^1.38^~1~^~A~^^^1^2.20^6.37^2^-2.34^9.55^~2, 3~^~04/01/2007~ -~03053~^~205~^8.84^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~207~^0.41^3^0.03^~1~^~A~^^^1^0.37^0.49^2^0.24^0.57^~2, 3~^~04/01/2007~ -~03053~^~209~^0.03^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~210~^1.01^2^^~1~^~A~^^^1^1.00^1.02^1^^^^~04/01/2007~ -~03053~^~211~^0.63^2^^~1~^~A~^^^1^0.53^0.72^1^^^^~04/01/2007~ -~03053~^~212~^0.58^2^^~1~^~A~^^^1^0.54^0.63^1^^^^~04/01/2007~ -~03053~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03053~^~214~^0.12^2^^~1~^~A~^^^1^0.07^0.16^1^^^~1~^~04/01/2007~ -~03053~^~255~^84.94^3^0.53^~1~^~A~^^^1^83.86^85.53^2^82.61^87.25^~2, 3~^~04/01/2007~ -~03053~^~269~^2.34^2^^~1~^~A~^^^1^2.17^2.51^1^^^^~04/01/2007~ -~03053~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03053~^~303~^0.35^2^^~1~^~A~^^^1^0.30^0.41^1^^^^~04/01/2007~ -~03053~^~309~^0.38^2^^~1~^~A~^^^1^0.33^0.44^1^^^^~04/01/2007~ -~03053~^~323~^0.49^2^^~1~^~A~^^^1^0.49^0.49^^^^^~04/01/2007~ -~03053~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03053~^~342~^0.17^2^^~1~^~A~^^^1^0.11^0.23^1^^^^~04/01/2007~ -~03053~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03053~^~344~^0.03^2^^~1~^~A~^^^1^0.02^0.04^1^^^^~04/01/2007~ -~03053~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03053~^~346~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2007~ -~03053~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~418~^0.18^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03054~^~203~^2.21^3^0.33^~1~^~A~^^^1^1.81^2.88^2^0.76^3.65^~2, 3~^~03/01/2007~ -~03054~^~204~^3.60^3^1.38^~1~^~A~^^^1^2.20^6.37^2^-2.34^9.55^~2, 3~^~03/01/2007~ -~03054~^~205~^8.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03054~^~207~^0.41^3^0.03^~1~^~A~^^^1^0.37^0.49^2^0.24^0.57^~2, 3~^~03/01/2007~ -~03054~^~210~^1.01^2^^~1~^~A~^^^1^1.00^1.02^1^^^^~03/01/2007~ -~03054~^~211~^0.63^2^^~1~^~A~^^^1^0.53^0.72^1^^^^~03/01/2007~ -~03054~^~212~^0.58^2^^~1~^~A~^^^1^0.54^0.63^1^^^^~03/01/2007~ -~03054~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~214~^0.12^2^^~1~^~A~^^^1^0.07^0.16^1^^^~1~^~03/01/2007~ -~03054~^~255~^84.94^3^0.53^~1~^~A~^^^1^83.86^85.53^2^82.61^87.25^~2, 3~^~03/01/2007~ -~03054~^~269~^2.34^2^^~1~^~A~^^^1^2.17^2.51^1^^^^~03/01/2007~ -~03054~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~303~^0.35^2^^~1~^~A~^^^1^0.30^0.41^1^^^^~03/01/2007~ -~03054~^~309~^0.38^2^^~1~^~A~^^^1^0.33^0.44^1^^^^~03/01/2007~ -~03054~^~323~^0.49^2^^~1~^~A~^^^1^0.49^0.49^^^^^~03/01/2007~ -~03054~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~342~^0.17^2^^~1~^~A~^^^1^0.11^0.23^1^^^^~03/01/2007~ -~03054~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~344~^0.03^2^^~1~^~A~^^^1^0.02^0.04^1^^^^~03/01/2007~ -~03054~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~346~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~03/01/2007~ -~03054~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03054~^~418~^0.33^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03055~^~203~^2.03^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~204~^6.93^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~205~^6.36^1^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~03055~^~207~^0.38^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~210~^1.35^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~211~^0.32^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~212~^0.49^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~255~^84.30^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~269~^2.16^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~303~^0.33^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~309~^0.35^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~323~^0.57^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03055~^~418~^0.09^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03067~^~203~^2.10^23^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~204~^1.70^23^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03067~^~207~^0.50^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~255~^88.60^25^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~269~^0.94^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03067~^~303~^0.34^21^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~309~^0.22^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~323~^0.24^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03067~^~418~^0.16^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03068~^~203~^3.53^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~204~^3.22^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~ -~03068~^~205~^7.81^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03068~^~207~^0.39^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~210~^1.62^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~211~^0.56^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~212~^0.43^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~214~^0.08^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~255~^85.05^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~269~^2.69^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~303~^0.49^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~309~^0.41^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~323~^0.21^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03068~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03069~^~203~^3.53^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~204~^3.23^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~ -~03069~^~205~^7.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~03069~^~207~^0.39^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~210~^1.62^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~211~^0.56^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~212~^0.43^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~214~^0.00^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~255~^85.05^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~269~^2.67^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~303~^0.49^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~309~^0.41^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03069~^~418~^0.01^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03070~^~203~^1.60^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~204~^1.70^3^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~205~^7.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03070~^~207~^0.40^3^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~255~^89.10^6^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~269~^1.72^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03070~^~303~^0.27^3^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~309~^0.22^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~323~^0.51^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03070~^~418~^0.12^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03072~^~203~^5.20^3^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~204~^3.70^17^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~205~^6.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03072~^~207~^1.40^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~255~^83.30^14^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~269~^1.68^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03072~^~303~^0.66^3^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~309~^0.41^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03072~^~418~^0.14^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03073~^~203~^2.47^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~204~^1.73^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~205~^8.42^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03073~^~207~^0.49^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~210~^0.99^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~211~^0.32^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~212~^0.27^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~255~^86.90^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~269~^1.58^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~303~^0.53^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~309~^0.48^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~323~^0.32^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03073~^~418~^0.01^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03075~^~203~^2.00^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~204~^2.50^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~205~^7.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03075~^~207~^0.40^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~255~^87.20^8^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~303~^0.35^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~309~^0.25^9^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~418~^0.08^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03076~^~203~^1.70^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~204~^2.20^4^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~205~^9.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03076~^~207~^0.70^4^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~255~^86.20^4^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~303~^0.49^4^0.06^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~309~^0.32^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~418~^0.09^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03077~^~203~^1.70^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~204~^2.10^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~205~^8.40^1^^~9~^~MC~^^^^^^^^^^~07/01/1998~ -~03077~^~207~^0.41^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~255~^87.30^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~269~^1.20^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~303~^0.50^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~309~^0.40^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03077~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03079~^~203~^1.20^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~204~^1.20^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~205~^6.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03079~^~207~^0.40^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~255~^90.30^7^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~303~^0.19^4^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~309~^0.27^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~418~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03081~^~203~^1.80^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~204~^1.50^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~205~^7.60^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03081~^~207~^0.40^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~255~^88.70^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~303~^0.26^4^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~309~^0.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~418~^0.12^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03082~^~203~^2.27^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~204~^1.24^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~205~^7.94^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03082~^~207~^0.33^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~210~^0.67^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~211~^0.33^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~212~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~214~^0.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~255~^88.22^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~269~^1.66^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~303~^0.29^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~309~^0.40^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~323~^0.14^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03082~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03083~^~203~^2.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~204~^0.92^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~205~^9.57^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03083~^~207~^0.50^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~210~^0.68^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~211~^0.24^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~212~^0.23^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~214~^0.11^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~255~^86.64^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~269~^1.25^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~303~^0.41^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~309~^0.47^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03083~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03084~^~203~^2.32^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~204~^0.90^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~205~^7.62^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03084~^~207~^0.35^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~210~^1.08^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~211~^0.24^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~212~^0.22^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~255~^88.82^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~269~^1.54^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~303~^0.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~309~^0.70^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03084~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03085~^~203~^1.72^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~204~^1.74^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~205~^7.55^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03085~^~207~^0.49^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~210~^0.81^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~211~^0.23^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~212~^0.23^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~214~^0.09^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~255~^88.50^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~269~^1.36^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~303~^0.36^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~309~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03085~^~418~^0.01^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03089~^~203~^3.14^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~204~^2.11^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~205~^8.95^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03089~^~207~^0.55^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~209~^1.42^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~210~^0.07^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~211~^0.10^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~212~^0.00^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~213~^0.50^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~214~^0.60^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~255~^85.25^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~269~^1.27^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~303~^0.21^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~309~^0.40^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~418~^0.27^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~03089~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03090~^~203~^2.60^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~204~^2.00^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~205~^8.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03090~^~207~^0.70^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~255~^86.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~269~^1.32^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~303~^0.30^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~309~^0.32^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03090~^~418~^0.03^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03091~^~203~^1.20^27^0.10^~6~^~JA~^^^2^1.00^1.31^2^0.76^1.64^~4~^~04/01/2007~ -~03091~^~204~^0.17^27^0.03^~6~^~JA~^^^2^0.10^0.21^2^0.02^0.31^~4~^~04/01/2007~ -~03091~^~205~^6.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~207~^0.49^27^0.05^~6~^~JA~^^^2^0.40^0.60^2^0.23^0.74^~4~^~04/01/2007~ -~03091~^~209~^1.31^2^^~1~^~A~^^^1^1.26^1.37^1^^^^~04/01/2007~ -~03091~^~210~^0.28^2^^~1~^~A~^^^1^0.27^0.28^1^^^^~04/01/2007~ -~03091~^~211~^0.71^2^^~1~^~A~^^^1^0.52^0.91^1^^^^~04/01/2007~ -~03091~^~212~^0.89^2^^~1~^~A~^^^1^0.89^0.89^1^^^^~04/01/2007~ -~03091~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~255~^91.85^36^0.34^~6~^~JA~^^^2^91.20^92.35^2^90.38^93.31^~4~^~04/01/2007~ -~03091~^~269~^1.88^2^^~1~^~A~^^^1^1.68^2.07^1^^^^~04/01/2007~ -~03091~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~303~^0.67^32^0.06^~6~^~JA~^^^2^0.55^0.75^2^0.40^0.92^~4~^~04/01/2007~ -~03091~^~309~^0.22^4^0.01^~6~^~JA~^^^2^0.21^0.25^2^0.16^0.28^~4~^~04/01/2007~ -~03091~^~323~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~04/01/2007~ -~03091~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~342~^0.09^2^^~1~^~A~^^^1^0.07^0.10^1^^^^~04/01/2007~ -~03091~^~343~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2007~ -~03091~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03091~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~03091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~03092~^~203~^1.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~204~^0.10^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~205~^5.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03092~^~207~^0.40^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~255~^92.50^13^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~269~^1.08^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~303~^1.08^13^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~309~^0.19^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~323~^0.32^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~ -~03092~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03092~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03092~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03093~^~203~^1.20^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~204~^0.20^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~205~^5.70^0^^~9~^~MC~^^^^^^^^^^~04/01/1995~ -~03093~^~207~^0.40^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~255~^92.60^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~269~^1.06^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~303~^0.40^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~309~^0.10^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~323~^0.31^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~ -~03093~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~03093~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03093~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03096~^~203~^2.20^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~204~^1.90^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~205~^9.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~03096~^~207~^0.70^1^^~4~^~BFCN~^^^^^^^^^^~06/01/1998~ -~03096~^~210~^0.21^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~211~^0.33^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~212~^0.37^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~213~^1.34^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~214~^0.10^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~255~^86.20^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~269~^2.35^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03096~^~303~^0.50^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~309~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03096~^~418~^0.15^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03098~^~203~^1.30^10^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~204~^0.10^10^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~205~^7.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03098~^~207~^0.90^15^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~255~^90.10^16^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~269~^6.09^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~303~^0.32^17^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~309~^0.12^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~323~^0.03^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~ -~03098~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03099~^~203~^0.80^28^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~204~^0.10^28^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~205~^6.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03099~^~207~^0.80^26^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~255~^92.30^52^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~269~^3.64^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~ -~03099~^~303~^0.37^34^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~309~^0.15^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~323~^0.52^0^^~4~^~NR~^~11125~^^^^^^^^^~03/01/2005~ -~03099~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03099~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03100~^~203~^0.80^29^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~204~^0.20^28^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~205~^7.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03100~^~207~^0.70^28^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~255~^91.00^28^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~269~^3.16^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~ -~03100~^~303~^0.39^24^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~309~^0.18^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~323~^0.52^0^^~4~^~NR~^~11125~^^^^^^^^^~03/01/2005~ -~03100~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03104~^~203~^0.81^30^0.02^~6~^~JA~^^^2^0.56^1.25^1^0.51^1.09^~2, 3~^~03/01/2007~ -~03104~^~204~^0.20^26^3.0e-03^~6~^~JA~^^^2^0.18^0.27^1^0.15^0.24^~2, 3~^~03/01/2007~ -~03104~^~205~^5.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~207~^0.60^24^0.01^~6~^~JA~^^^2^0.52^0.80^1^0.45^0.75^~2, 3~^~03/01/2007~ -~03104~^~209~^1.24^2^^~1~^~A~^^^1^0.73^1.75^1^^^^~03/01/2007~ -~03104~^~210~^1.25^5^0.48^~6~^~JA~^^^2^0.23^2.60^4^-0.08^2.58^~4~^~03/01/2007~ -~03104~^~211~^1.12^5^0.17^~6~^~JA~^^^2^0.60^1.47^4^0.64^1.59^~4~^~03/01/2007~ -~03104~^~212~^1.00^5^0.14^~6~^~JA~^^^2^0.60^1.26^4^0.60^1.40^~4~^~03/01/2007~ -~03104~^~213~^0.00^4^0.00^~6~^~JA~^^^2^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2007~ -~03104~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2007~ -~03104~^~255~^92.66^47^0.10^~6~^~JA~^^^2^90.93^92.70^36^92.45^92.86^~2, 3~^~03/01/2007~ -~03104~^~269~^3.37^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03104~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~03/01/2007~ -~03104~^~303~^0.32^2^^~6~^~JA~^^^2^0.15^0.50^2^^^~1~^~03/01/2007~ -~03104~^~309~^0.19^1^^~6~^~JA~^^^2^0.12^0.32^2^^^^~03/01/2007~ -~03104~^~323~^0.55^2^^~1~^~A~^^^1^0.47^0.64^1^^^^~03/01/2007~ -~03104~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~342~^0.11^2^^~1~^~A~^^^1^0.11^0.12^1^^^^~03/01/2007~ -~03104~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03104~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03105~^~203~^0.81^30^0.02^~6~^~JA~^^^2^0.56^1.25^1^0.51^1.09^~2, 3~^~03/01/2007~ -~03105~^~204~^0.20^26^3.0e-03^~6~^~JA~^^^2^0.18^0.27^1^0.15^0.24^~2, 3~^~03/01/2007~ -~03105~^~205~^5.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~207~^0.60^24^0.01^~6~^~JA~^^^2^0.52^0.80^1^0.45^0.75^~2, 3~^~03/01/2007~ -~03105~^~209~^1.24^2^^~1~^~A~^^^1^0.73^1.75^1^^^^~03/01/2007~ -~03105~^~210~^1.20^5^0.48^~6~^~JA~^^^2^0.23^2.60^4^-0.08^2.58^~4~^~03/01/2007~ -~03105~^~211~^1.08^5^0.17^~6~^~JA~^^^2^0.60^1.47^4^0.64^1.59^~4~^~03/01/2007~ -~03105~^~212~^0.96^5^0.14^~6~^~JA~^^^2^0.60^1.26^4^0.60^1.40^~4~^~03/01/2007~ -~03105~^~213~^0.00^4^0.00^~6~^~JA~^^^2^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2007~ -~03105~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2007~ -~03105~^~255~^92.66^47^0.10^~6~^~JA~^^^2^90.93^92.70^36^92.45^92.86^~2, 3~^~03/01/2007~ -~03105~^~269~^3.24^5^0.29^~6~^~JA~^^^2^2.18^3.80^4^2.43^4.04^~4~^~03/01/2007~ -~03105~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~03/01/2007~ -~03105~^~303~^0.32^2^^~6~^~JA~^^^2^0.15^0.50^2^^^~1~^~03/01/2007~ -~03105~^~309~^0.19^1^^~6~^~JA~^^^2^0.12^0.32^2^^^^~03/01/2007~ -~03105~^~323~^0.55^2^^~1~^~A~^^^1^0.47^0.64^1^^^^~03/01/2007~ -~03105~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~342~^0.11^2^^~1~^~A~^^^1^0.11^0.12^1^^^^~03/01/2007~ -~03105~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03105~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03108~^~203~^1.10^31^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~204~^0.10^26^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~205~^13.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03108~^~207~^0.80^24^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~255~^84.80^50^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~269~^4.05^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03108~^~303~^0.37^26^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~309~^0.21^17^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~323~^0.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03108~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03109~^~203~^1.10^24^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~204~^0.10^23^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~205~^14.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03109~^~207~^0.70^23^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~255~^84.10^23^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~269~^4.24^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~ -~03109~^~303~^0.39^14^0.06^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~309~^0.11^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~323~^0.52^0^^~4~^~NR~^~11508~^^^^^^^^^~03/01/2005~ -~03109~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03112~^~203~^1.00^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~204~^0.10^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~205~^11.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03112~^~207~^0.37^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~255~^86.80^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~269~^0.91^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~303~^0.20^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~309~^0.17^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~323~^0.02^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~ -~03112~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1995~ -~03112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03113~^~203~^10.94^6^0.06^~1~^~A~^^^1^10.67^11.13^5^10.77^11.10^~2, 3~^~01/01/2016~ -~03113~^~204~^6.42^6^0.28^~1~^~A~^^^1^5.53^7.14^5^5.68^7.16^~2, 3~^~01/01/2016~ -~03113~^~205~^73.57^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~207~^4.86^6^5.0e-03^~1~^~A~^^^1^4.85^4.88^5^4.84^4.87^~2, 3~^~01/01/2016~ -~03113~^~209~^44.67^3^1.32^~1~^~A~^^^1^42.10^46.50^2^38.97^50.35^~2, 3~^~01/01/2016~ -~03113~^~210~^1.03^3^0.03^~1~^~A~^^^1^1.00^1.10^2^0.89^1.17^~2, 3~^~01/01/2016~ -~03113~^~211~^7.97^3^0.17^~1~^~A~^^^1^7.70^8.30^2^7.20^8.72^~2, 3~^~01/01/2016~ -~03113~^~212~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~01/01/2016~ -~03113~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~214~^3.10^3^0.00^~1~^~A~^^^1^3.10^3.10^^^^~2, 3~^~01/01/2016~ -~03113~^~255~^4.21^6^0.03^~1~^~A~^^^1^4.07^4.28^5^4.13^4.29^~2, 3~^~01/01/2016~ -~03113~^~269~^12.27^3^0.16^~1~^~A~^^^1^12.10^12.60^2^11.54^12.98^~2, 3~^~01/01/2016~ -~03113~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~303~^64.03^6^1.36^~1~^~A~^^^1^60.50^68.80^5^60.51^67.55^~2, 3~^~01/01/2016~ -~03113~^~309~^12.33^6^0.22^~1~^~A~^^^1^11.70^13.30^5^11.76^12.89^~2, 3~^~01/01/2016~ -~03113~^~323~^4.95^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~418~^4.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03113~^~573~^4.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03113~^~578~^4.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~ -~03114~^~203~^2.00^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~204~^0.60^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~205~^9.26^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03114~^~207~^0.84^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~210~^2.25^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03114~^~211~^0.23^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03114~^~212~^0.30^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03114~^~214~^0.14^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03114~^~255~^87.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~269~^2.93^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03114~^~303~^0.40^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~309~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03114~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03115~^~203~^0.19^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~204~^0.36^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~205~^11.56^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03115~^~207~^0.21^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~255~^87.68^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~269~^10.48^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~303~^0.08^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~309~^0.02^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~323~^0.22^0^^~4~^~NR~^~09019~^^^^^^^^^~01/01/2017~ -~03115~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~ -~03115~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03115~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03116~^~203~^0.20^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~204~^0.20^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~205~^10.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03116~^~207~^0.20^42^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~255~^88.60^14^^~1~^^^^^^^^^^^~08/01/2004~ -~03116~^~269~^9.87^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~ -~03116~^~303~^0.22^41^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~309~^0.02^19^3.0e-03^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~323~^0.60^0^^~4~^~NR~^~09019~^^^^^^^^^~03/01/2005~ -~03116~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03117~^~203~^0.00^43^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~204~^0.00^43^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~205~^10.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03117~^~207~^0.20^42^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~255~^89.50^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~269~^8.48^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~ -~03117~^~303~^0.22^40^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~309~^0.04^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~323~^0.60^0^^~4~^~NR~^~09020~^^^^^^^^^~03/01/2005~ -~03117~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03117~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03118~^~203~^0.30^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~204~^0.00^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03118~^~207~^0.30^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~255~^83.10^17^0.40^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~269~^1.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03118~^~303~^0.30^17^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~309~^0.05^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~323~^0.10^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03118~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03119~^~203~^1.40^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~204~^0.40^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~205~^14.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03119~^~207~^0.50^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~210~^1.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~211~^0.09^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~212~^0.09^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~214~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~255~^83.60^26^0.80^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~269~^1.23^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~303~^0.28^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~309~^0.19^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03119~^~418~^0.02^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03120~^~203~^1.40^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~204~^0.40^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~205~^16.25^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03120~^~207~^0.55^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03120~^~210~^1.19^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~211~^0.10^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~212~^0.10^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~214~^0.05^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~255~^81.40^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~269~^1.48^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~303~^0.27^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~309~^0.23^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03120~^~418~^0.02^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03121~^~203~^3.27^48^0.22^~6~^~JA~^^^2^3.04^3.50^1^0.35^6.18^~4~^~03/01/2007~ -~03121~^~204~^0.43^44^0.13^~6~^~JA~^^^2^0.30^0.57^1^-1.28^2.15^~4~^~03/01/2007~ -~03121~^~205~^8.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~207~^0.42^44^0.07^~6~^~JA~^^^2^0.34^0.50^1^-0.57^1.41^~4~^~03/01/2007~ -~03121~^~209~^2.34^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~210~^2.01^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~255~^87.52^59^0.01^~6~^~JA~^^^2^87.50^87.53^1^87.30^87.72^~4~^~03/01/2007~ -~03121~^~269~^2.01^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~303~^0.95^64^0.05^~6~^~JA~^^^2^0.85^1.03^2^0.71^1.17^~4~^~03/01/2007~ -~03121~^~309~^0.47^27^0.06^~6~^~JA~^^^2^0.35^0.54^2^0.20^0.72^~4~^~03/01/2007~ -~03121~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~342~^0.67^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03122~^~203~^3.90^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~204~^0.80^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~205~^10.30^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03122~^~207~^0.35^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~255~^84.60^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~269~^4.13^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~ -~03122~^~303~^1.00^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~309~^0.50^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~323~^0.45^0^^~4~^~NR~^~11305~^^^^^^^^^~03/01/2005~ -~03122~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03122~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03127~^~203~^2.50^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~204~^1.30^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~205~^5.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03127~^~207~^1.00^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~255~^89.60^4^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~269~^2.33^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03127~^~303~^0.62^17^0.06^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~309~^0.31^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~323~^0.83^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03127~^~418~^0.06^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03127~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03127~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03128~^~203~^0.30^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~204~^0.00^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~205~^17.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03128~^~207~^0.40^24^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~255~^82.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~269~^1.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03128~^~303~^0.27^22^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~309~^0.04^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03128~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03129~^~203~^0.40^15^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~204~^0.10^15^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~205~^15.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03129~^~207~^0.30^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~255~^84.00^17^0.50^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~269~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03129~^~303~^0.20^24^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~309~^0.06^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03129~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03130~^~203~^0.94^3^0.09^~1~^~A~^^^1^0.81^1.13^2^0.52^1.34^~2, 3~^~03/01/2007~ -~03130~^~204~^0.33^3^7.0e-03^~1~^~A~^^^1^0.32^0.34^2^0.30^0.36^~2, 3~^~03/01/2007~ -~03130~^~205~^14.48^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03130~^~207~^0.59^3^0.04^~1~^~A~^^^1^0.51^0.65^2^0.41^0.77^~2, 3~^~03/01/2007~ -~03130~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~210~^3.38^2^^~1~^~A~^^^1^2.95^3.81^1^^^^~03/01/2007~ -~03130~^~211~^4.11^2^^~1~^~A~^^^1^3.86^4.35^1^^^^~03/01/2007~ -~03130~^~212~^4.01^2^^~1~^~A~^^^1^3.73^4.30^1^^^^~03/01/2007~ -~03130~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~255~^83.65^3^1.32^~1~^~A~^^^1^82.15^86.29^2^77.96^89.34^~2, 3~^~03/01/2007~ -~03130~^~269~^11.50^2^^~1~^~A~^^^1^11.40^11.60^1^^^^~03/01/2007~ -~03130~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~303~^0.23^24^0.01^~6~^~JA~^^^2^0.15^0.24^22^0.19^0.27^~1, 2, 3~^~03/01/2007~ -~03130~^~309~^0.11^2^^~1~^~A~^^^1^0.10^0.13^1^^^^~03/01/2007~ -~03130~^~323~^1.99^2^^~1~^~A~^^^1^1.66^2.32^1^^^^~03/01/2007~ -~03130~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~342~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~03/01/2007~ -~03130~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03130~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~03130~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03130~^~573~^1.39^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03131~^~203~^0.94^3^0.09^~1~^~A~^^^1^0.81^1.13^2^0.52^1.34^~2, 3~^~04/01/2007~ -~03131~^~204~^0.33^3^7.0e-03^~1~^~A~^^^1^0.32^0.34^2^0.30^0.36^~2, 3~^~04/01/2007~ -~03131~^~205~^14.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~207~^0.59^3^0.04^~1~^~A~^^^1^0.51^0.65^2^0.41^0.77^~2, 3~^~04/01/2007~ -~03131~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~210~^3.38^2^^~1~^~A~^^^1^2.95^3.81^1^^^^~04/01/2007~ -~03131~^~211~^4.11^2^^~1~^~A~^^^1^3.86^4.35^1^^^^~04/01/2007~ -~03131~^~212~^4.01^2^^~1~^~A~^^^1^3.73^4.30^1^^^^~04/01/2007~ -~03131~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~255~^83.65^3^1.32^~1~^~A~^^^1^82.15^86.29^2^77.96^89.34^~2, 3~^~04/01/2007~ -~03131~^~269~^11.50^2^^~1~^~A~^^^1^11.40^11.60^1^^^^~04/01/2007~ -~03131~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~303~^0.23^24^0.01^~6~^~JA~^^^2^0.15^0.24^22^0.19^0.27^~1, 2, 3~^~04/01/2007~ -~03131~^~309~^0.11^2^^~1~^~A~^^^1^0.10^0.13^1^^^^~04/01/2007~ -~03131~^~323~^1.99^2^^~1~^~A~^^^1^1.66^2.32^1^^^^~04/01/2007~ -~03131~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~342~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~04/01/2007~ -~03131~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~03131~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~04/01/2007~ -~03131~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03131~^~573~^1.39^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~03132~^~203~^0.30^23^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~204~^0.20^23^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~205~^10.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03132~^~207~^0.30^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~255~^88.40^17^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~269~^6.98^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~303~^0.24^29^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~309~^0.08^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~323~^0.09^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03132~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03133~^~203~^0.30^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~204~^0.10^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~205~^11.60^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03133~^~207~^0.20^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~255~^87.80^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~269~^7.34^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03133~^~303~^0.25^16^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~309~^0.08^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~323~^0.60^0^^~4~^~NR~^~09252~^^^^^^^^^~03/01/2005~ -~03133~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03134~^~203~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~204~^0.00^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~205~^19.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03134~^~207~^0.24^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~210~^2.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~211~^6.81^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~212~^4.12^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~214~^0.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~255~^80.00^17^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~269~^13.34^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~287~^0.19^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03134~^~303~^0.20^17^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~309~^0.08^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~323~^0.14^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03134~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03135~^~203~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~204~^0.00^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~205~^20.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03135~^~207~^0.20^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~255~^79.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~269~^13.64^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~03135~^~303~^0.22^16^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~309~^0.08^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03135~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03136~^~203~^0.60^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~204~^0.10^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~205~^18.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03136~^~207~^0.50^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~210~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~211~^6.79^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~212~^3.32^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~214~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~255~^80.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~269~^10.97^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~03136~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03136~^~303~^0.35^12^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~309~^0.09^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~323~^0.60^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~03136~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03136~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03136~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03137~^~203~^0.60^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~204~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~205~^18.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03137~^~207~^0.78^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~03137~^~210~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~211~^6.79^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~212~^3.32^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~214~^0.02^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~255~^80.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~269~^10.97^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03137~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~303~^0.33^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~309~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03137~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03139~^~203~^1.00^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~204~^0.20^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~205~^23.52^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03139~^~207~^0.98^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~ -~03139~^~255~^74.30^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~269~^14.28^0^^~8~^~LC~^~09292~^^^^^^^^^~06/01/2014~ -~03139~^~303~^0.40^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~309~^0.20^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~323~^0.55^0^^~4~^~NR~^~09292~^^^^^^^^^~04/01/2005~ -~03139~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03140~^~203~^0.30^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~204~^0.20^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~205~^19.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~03140~^~207~^0.33^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~255~^80.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~03140~^~269~^13.00^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~03140~^~303~^0.20^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~309~^0.03^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~323~^0.66^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~03140~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03141~^~203~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~204~^0.10^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~205~^13.60^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03141~^~207~^0.20^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~255~^85.60^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~269~^8.66^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~303~^0.20^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~309~^0.09^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~323~^0.11^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~03141~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1995~ -~03141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03142~^~203~^0.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~204~^0.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~205~^11.64^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~03142~^~207~^0.26^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03142~^~210~^1.57^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~211~^2.88^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~212~^4.79^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~214~^0.01^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~255~^87.70^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~269~^9.25^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~303~^0.25^16^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~309~^0.04^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~323~^0.18^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03142~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03143~^~203~^0.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~204~^0.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~205~^12.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03143~^~207~^0.24^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03143~^~210~^0.70^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~211~^2.81^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~212~^5.21^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~214~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~255~^86.90^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~269~^8.72^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~303~^0.26^19^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~309~^0.03^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03143~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03144~^~203~^0.00^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~204~^0.00^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03144~^~205~^14.10^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~03144~^~207~^0.25^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~255~^85.63^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~269~^10.81^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~303~^0.30^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~309~^0.03^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03144~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03145~^~203~^0.00^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~204~^0.00^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03145~^~205~^14.10^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03145~^~207~^0.30^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03145~^~255~^85.60^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~269~^10.61^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~03145~^~303~^0.30^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~309~^0.03^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03145~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03145~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03147~^~203~^0.37^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~204~^0.10^0^^~4~^~PAE~^^^^^^^^^^~04/01/1994~ -~03147~^~205~^16.16^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~207~^0.26^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~255~^83.14^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~269~^4.35^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03147~^~303~^0.24^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~309~^0.05^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03147~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03150~^~203~^0.10^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~204~^0.10^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03150~^~207~^0.20^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~255~^89.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~303~^0.10^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~309~^0.02^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~07/01/2006~ -~03150~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03151~^~203~^0.10^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~204~^0.10^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~205~^10.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03151~^~207~^0.20^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~255~^89.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~303~^0.10^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~07/01/2006~ -~03151~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03152~^~203~^0.20^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~204~^0.20^20^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~205~^15.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~03152~^~207~^0.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~210~^0.73^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03152~^~255~^83.80^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~269~^12.96^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03152~^~303~^0.22^14^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~309~^0.03^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03152~^~323~^0.21^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~03152~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03153~^~203~^0.20^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~204~^0.20^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~205~^15.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03153~^~207~^0.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~255~^84.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~269~^12.96^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~303~^0.22^12^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~309~^0.03^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03153~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03153~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03154~^~203~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~204~^0.22^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~205~^15.30^1^^~9~^~MC~^^^^^^^^^^~06/01/1998~ -~03154~^~207~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~210~^0.65^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03154~^~211~^3.12^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03154~^~212~^7.06^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03154~^~214~^0.78^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03154~^~255~^84.00^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~269~^11.60^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~303~^0.20^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~309~^0.10^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03154~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03154~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03156~^~203~^0.20^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~204~^0.10^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~205~^18.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03156~^~207~^0.20^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~255~^81.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~269~^8.41^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~303~^0.13^12^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03156~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03157~^~203~^0.20^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~204~^0.00^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~205~^17.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03157~^~207~^0.53^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03157~^~210~^3.92^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~211~^3.35^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~212~^3.44^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~214~^0.01^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~255~^81.70^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~269~^10.73^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~303~^0.23^28^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~309~^0.04^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03157~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03158~^~203~^0.30^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~204~^0.10^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~205~^10.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03158~^~207~^0.30^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~255~^88.50^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~269~^7.79^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~303~^0.25^17^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~309~^0.07^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03158~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03159~^~203~^0.30^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~204~^0.20^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~205~^11.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03159~^~207~^0.30^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~210~^1.10^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~211~^1.98^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~212~^4.27^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~213~^0.01^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~214~^0.01^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~255~^87.80^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~269~^7.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~287~^0.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03159~^~303~^0.21^13^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~309~^0.13^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03159~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03160~^~203~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~205~^17.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03160~^~207~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~255~^82.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~303~^0.20^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~309~^0.06^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03160~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03161~^~203~^0.50^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~204~^0.20^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~205~^11.80^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03161~^~207~^0.20^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~255~^87.40^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~269~^9.49^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~303~^0.20^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~309~^0.12^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03161~^~323~^0.83^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~ -~03161~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03162~^~203~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~205~^18.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03162~^~207~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~255~^80.60^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~303~^0.44^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03163~^~203~^0.90^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~204~^0.22^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~205~^19.31^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03163~^~207~^0.57^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~255~^79.00^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~269~^12.76^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03163~^~303~^0.30^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~309~^0.10^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03163~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~ -~03163~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03164~^~203~^0.20^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~204~^0.20^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03164~^~207~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~255~^83.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~269~^13.93^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~303~^0.20^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~309~^0.03^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03164~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03165~^~203~^0.20^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~204~^0.20^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~205~^16.60^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03165~^~207~^0.19^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03165~^~210~^0.41^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~211~^3.58^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~212~^4.84^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~214~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~255~^82.80^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~269~^8.83^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~303~^0.40^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~309~^0.04^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~323~^0.27^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03165~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03166~^~203~^0.00^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~204~^0.10^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~205~^11.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03166~^~207~^0.20^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~03166~^~255~^88.00^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~269~^10.70^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03166~^~303~^0.57^23^0.06^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03166~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~03166~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~03167~^~203~^0.20^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~204~^0.10^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~205~^12.30^0^^~9~^~MC~^^^^^^^^^^~05/01/1994~ -~03167~^~207~^0.26^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~255~^87.10^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~269~^11.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~303~^0.20^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~309~^0.04^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03167~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1994~ -~03167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03168~^~203~^0.20^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~204~^0.10^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~205~^10.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03168~^~207~^0.30^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~255~^89.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~269~^9.59^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~303~^0.56^10^0.14^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03168~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03171~^~203~^0.20^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~204~^0.10^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~205~^18.10^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03171~^~207~^0.30^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~255~^81.30^4^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~269~^10.58^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~303~^0.95^4^0.14^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~309~^0.05^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~323~^0.05^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03171~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03171~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03172~^~203~^0.60^21^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~204~^0.30^21^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~205~^10.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03172~^~207~^0.40^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~255~^88.50^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~269~^8.26^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~303~^0.17^24^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~309~^0.06^5^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~323~^0.04^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~ -~03172~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03173~^~203~^0.40^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~204~^0.20^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03173~^~207~^0.40^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~255~^88.90^3^0.80^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~303~^0.20^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03174~^~203~^0.40^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~205~^11.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03174~^~207~^0.40^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~255~^87.60^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~269~^10.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~303~^0.35^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03174~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03175~^~203~^0.80^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~205~^10.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03175~^~207~^0.40^4^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~255~^87.80^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~303~^0.38^6^0.18^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~309~^0.04^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~323~^0.60^0^^~4~^~O~^^^^^^^^^^~07/01/2006~ -~03175~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03176~^~203~^0.70^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~204~^0.10^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~205~^11.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03176~^~207~^0.40^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~255~^86.90^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~303~^0.11^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~309~^0.09^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03176~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~203~^0.50^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~204~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~205~^11.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03177~^~207~^0.40^16^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~255~^87.30^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~303~^0.42^21^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~309~^0.04^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~07/01/2006~ -~03177~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03178~^~203~^0.60^19^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~204~^0.30^18^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~205~^16.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03178~^~207~^0.40^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~255~^81.90^18^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~303~^0.87^20^0.33^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~309~^0.04^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03179~^~203~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~204~^0.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~205~^11.70^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03179~^~207~^0.20^18^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~255~^87.90^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~269~^8.46^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~303~^0.34^24^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~309~^0.03^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~323~^0.04^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~03179~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03181~^~203~^13.20^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~03181~^~204~^6.60^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~03181~^~205~^69.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~03181~^~207~^4.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~03181~^~255~^6.80^22^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03181~^~269~^13.20^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~303~^48.21^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~309~^3.13^3^0.18^~1~^^^^^^^^^^^~12/01/1978~ -~03181~^~323~^5.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~418~^3.57^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~573~^4.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03181~^~578~^3.57^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03184~^~203~^6.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~204~^4.80^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~205~^83.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03184~^~207~^3.70^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~255~^1.70^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~269~^26.66^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~303~^45.00^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~309~^2.60^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~323~^50.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~418~^3.33^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~573~^50.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~578~^3.33^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~203~^6.66^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~204~^6.66^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~205~^78.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03185~^~207~^1.77^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~255~^6.70^22^0.20^~1~^^^^^^^^^^^~03/01/2003~ -~03185~^~269~^26.66^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~303~^30.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~309~^10.66^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03185~^~323~^4.21^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~341~^0.21^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03185~^~342~^0.00^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03185~^~343~^0.26^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03185~^~344~^5.70^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03185~^~345~^0.21^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03185~^~418~^5.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~573~^4.21^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~578~^5.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03186~^~203~^10.70^7^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~204~^4.60^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~205~^77.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03186~^~207~^3.10^6^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~210~^1.82^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~211~^2.44^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~212~^2.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~214~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~255~^4.50^6^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~269~^6.68^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03186~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~303~^47.50^0^^~5~^^^^^^^^^^^~02/01/1995~ -~03186~^~309~^1.40^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~323~^0.51^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~344~^0.03^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03186~^~418~^0.24^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03186~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03187~^~203~^0.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~204~^0.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~205~^18.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03187~^~207~^0.40^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~255~^80.00^27^0.10^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~269~^11.10^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~303~^6.81^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~309~^1.01^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~323~^0.03^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03187~^~418~^0.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~573~^0.03^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03187~^~578~^0.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~203~^0.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~204~^0.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~205~^18.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03188~^~207~^0.40^5^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~255~^79.60^5^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~269~^11.10^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~303~^6.81^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~309~^1.01^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~323~^0.68^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~418~^0.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~573~^0.68^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03188~^~578~^0.51^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03189~^~203~^10.99^15^0.05^~1~^~A~^^^1^10.55^11.60^6^10.85^11.12^~2, 3~^~04/01/2015~ -~03189~^~204~^6.36^15^0.24^~1~^~A~^^^1^5.16^7.30^6^5.76^6.96^~2, 3~^~04/01/2016~ -~03189~^~205~^73.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03189~^~207~^4.60^15^6.0e-03^~1~^~A~^^^1^3.36^4.88^10^4.58^4.61^~2, 3~^~04/01/2015~ -~03189~^~209~^42.69^8^1.12^~1~^~A~^^^1^30.30^46.50^2^38.56^46.81^~2, 3~^~04/01/2016~ -~03189~^~210~^0.99^8^0.02^~1~^~A~^^^1^0.70^1.10^2^0.89^1.09^~2, 3~^~04/01/2015~ -~03189~^~211~^6.53^8^0.14^~1~^~A~^^^1^0.20^8.30^2^5.91^7.14^~2, 3~^~04/01/2015~ -~03189~^~212~^0.15^8^0.02^~1~^~A~^^^1^0.07^0.20^2^0.03^0.26^~1, 2, 3~^~04/01/2015~ -~03189~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~214~^3.99^8^0.11^~1~^~A~^^^1^3.10^12.00^3^3.61^4.37^~2, 3~^~04/01/2016~ -~03189~^~255~^4.56^15^0.02^~1~^~A~^^^1^4.07^6.49^8^4.49^4.62^~2, 3~^~04/01/2015~ -~03189~^~269~^11.67^8^0.18^~1~^~A~^^^1^6.37^13.57^5^11.18^12.14^~2, 3~^~04/01/2016~ -~03189~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~303~^64.10^15^1.11^~1~^~A~^^^1^54.80^68.90^5^61.25^66.94^~2, 3~^~04/01/2016~ -~03189~^~309~^12.68^15^0.18^~1~^~A~^^^1^11.70^14.60^5^12.21^13.13^~2, 3~^~04/01/2016~ -~03189~^~323~^12.23^9^0.99^~1~^~A~^^^1^5.53^20.93^2^7.96^16.49^~2, 3~^~04/01/2016~ -~03189~^~341~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~03189~^~342~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~03189~^~343~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~03189~^~344~^1.43^9^0.02^~1~^~A~^^^1^0.16^1.71^2^1.34^1.51^~2, 3~^~04/01/2016~ -~03189~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~418~^4.60^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~03189~^~573~^11.78^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03189~^~578~^4.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03190~^~203~^6.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~204~^6.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~205~^78.07^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03190~^~207~^3.90^1^^~1~^^^^^^^^^^^~03/01/2003~ -~03190~^~255~^4.70^1^^~1~^^^^^^^^^^^~03/01/2003~ -~03190~^~269~^26.66^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~303~^45.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~309~^1.90^2^^~1~^^^^^^^^^^^~03/01/2003~ -~03190~^~323~^5.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03190~^~418~^3.33^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~573~^4.55^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03190~^~578~^3.11^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~203~^0.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~204~^0.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~205~^15.62^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03191~^~207~^0.40^25^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~255~^82.20^37^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~269~^8.85^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~303~^7.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~309~^7.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~323~^0.59^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~418~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03191~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03192~^~203~^0.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~204~^0.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~205~^16.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~207~^0.40^6^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03192~^~255~^81.80^6^0.40^~1~^^^^^^^^^^^~12/01/1978~ -~03192~^~269~^8.85^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~303~^7.50^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~03192~^~309~^7.50^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~03192~^~323~^0.59^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~418~^0.44^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03192~^~578~^0.44^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03193~^~203~^13.50^13^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~204~^7.00^13^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~205~^69.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03193~^~207~^4.40^13^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~255~^5.80^13^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~303~^67.23^13^1.13^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~309~^3.70^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03194~^~203~^6.65^14^0.05^~1~^~A~^^^1^5.83^7.62^4^6.52^6.79^~2, 3~^~04/01/2015~ -~03194~^~204~^2.19^14^0.15^~1~^~A~^^^1^0.84^3.18^4^1.76^2.61^~2, 3~^~04/01/2015~ -~03194~^~205~^83.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~207~^2.89^14^0.02^~1~^~A~^^^1^0.93^3.07^7^2.83^2.94^~2, 3~^~04/01/2015~ -~03194~^~209~^55.67^9^0.51^~1~^~A~^^^1^42.80^58.50^4^54.22^57.11^~2, 3~^~04/01/2015~ -~03194~^~210~^0.21^9^6.0e-03^~1~^~A~^^^1^0.20^0.50^3^0.19^0.22^~2, 3~^~04/01/2015~ -~03194~^~211~^2.38^9^0.07^~1~^~A~^^^1^0.40^2.80^2^2.08^2.68^~2, 3~^~04/01/2015~ -~03194~^~212~^0.10^9^7.0e-03^~1~^~A~^^^1^0.07^0.20^2^0.07^0.13^~1, 2, 3~^~04/01/2015~ -~03194~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~214~^2.16^9^0.08^~1~^~A~^^^1^1.60^3.70^2^1.81^2.49^~2, 3~^~04/01/2015~ -~03194~^~255~^5.13^14^0.04^~1~^~A~^^^1^4.81^8.61^5^5.01^5.24^~2, 3~^~04/01/2015~ -~03194~^~269~^4.85^9^0.15^~1~^~A~^^^1^2.47^5.50^2^4.22^5.47^~2, 3~^~04/01/2015~ -~03194~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~303~^53.01^14^0.83^~1~^~A~^^^1^47.53^68.50^5^50.84^55.17^~2, 3~^~04/01/2015~ -~03194~^~309~^10.92^14^0.47^~1~^~A~^^^1^1.84^13.70^4^9.64^12.19^~2, 3~^~04/01/2015~ -~03194~^~323~^5.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03194~^~418~^4.60^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~03194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03194~^~578~^4.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~03195~^~203~^1.20^23^0.00^~1~^^^^^^^^^^^~03/01/2003~ -~03195~^~204~^0.40^23^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~205~^17.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03195~^~207~^0.30^23^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~255~^81.00^24^0.80^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~269~^2.24^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~303~^6.73^19^0.62^~1~^^^^^^^^^^^~09/01/2004~ -~03195~^~309~^0.08^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03195~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03195~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03195~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03197~^~203~^1.90^11^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~204~^1.80^9^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~205~^7.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03197~^~207~^0.50^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~255~^88.80^14^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~303~^0.47^12^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~309~^0.29^4^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~418~^0.07^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~203~^1.90^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~204~^1.80^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03198~^~207~^0.40^7^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~255~^88.70^7^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~303~^0.51^7^0.07^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~309~^0.29^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~418~^0.06^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~203~^2.20^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~204~^1.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~205~^8.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~207~^0.60^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~255~^87.20^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~303~^0.54^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~309~^0.33^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~418~^0.08^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~203~^2.50^16^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~204~^5.00^16^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~205~^6.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03201~^~207~^0.40^16^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~255~^85.90^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~303~^0.47^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~309~^0.27^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~418~^0.09^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03205~^~203~^10.50^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~204~^7.05^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~205~^74.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~03205~^~207~^2.95^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03205~^~255~^5.40^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~269~^11.09^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03205~^~303~^14.30^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~309~^5.70^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~323~^2.48^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~ -~03205~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~ -~03205~^~573~^2.03^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03205~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03206~^~203~^6.80^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~204~^12.60^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~205~^73.70^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~03206~^~207~^1.20^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~03206~^~255~^5.70^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~269~^24.20^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03206~^~303~^2.90^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~309~^0.80^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~323~^1.48^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03206~^~418~^0.22^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~573~^0.46^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03209~^~203~^8.40^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~204~^19.60^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~205~^66.85^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03209~^~207~^3.15^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~255~^2.00^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~269~^13.00^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03209~^~303~^4.20^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~309~^0.90^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~323~^8.05^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~341~^0.04^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~342~^0.25^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~343~^0.01^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~344~^0.01^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~345~^0.06^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~573~^7.55^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03209~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03211~^~203~^25.40^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~204~^6.50^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~205~^57.60^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03211~^~207~^5.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~255~^5.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~303~^47.50^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03211~^~309~^2.70^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~418~^0.30^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~203~^8.70^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~204~^4.20^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~205~^79.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03212~^~207~^2.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~255~^4.70^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~269~^16.70^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03212~^~303~^47.50^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03212~^~309~^1.50^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~323~^0.37^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03212~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~03212~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03212~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03213~^~203~^11.80^11^0.20^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~204~^13.20^8^0.30^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~205~^67.10^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~03213~^~207~^2.00^7^0.20^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~255~^5.90^7^0.70^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~269~^24.20^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~303~^4.18^5^0.60^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~309~^1.10^2^^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~323~^0.46^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03213~^~418~^0.46^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03213~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03214~^~203~^7.60^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~204~^10.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~03214~^~205~^75.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03214~^~207~^1.40^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~255~^5.60^4^0.90^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~303~^3.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~309~^0.53^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~323~^3.86^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~418~^0.07^1^^~1~^^^^^^^^^^^~07/01/2009~ -~03214~^~573~^3.30^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03215~^~203~^10.80^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~204~^2.00^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~205~^82.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03215~^~207~^1.00^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~255~^4.00^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~269~^3.08^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03215~^~303~^3.77^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~309~^0.78^3^0.05^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~323~^0.28^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03215~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03216~^~203~^7.97^4^0.04^~1~^~A~^^^1^7.92^8.09^3^7.83^8.10^~2, 3~^~01/01/2017~ -~03216~^~204~^9.27^4^0.18^~1~^~A~^^^1^8.80^9.60^3^8.70^9.84^~2, 3~^~01/01/2017~ -~03216~^~205~^72.48^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~207~^4.44^4^0.10^~1~^~A~^^^1^4.14^4.61^3^4.11^4.77^~2, 3~^~01/01/2017~ -~03216~^~209~^43.47^3^0.17^~1~^~A~^^^1^43.20^43.80^2^42.70^44.22^~2, 3~^~01/01/2017~ -~03216~^~255~^5.83^4^0.14^~1~^~A~^^^1^5.53^6.17^3^5.36^6.29^~2, 3~^~01/01/2017~ -~03216~^~269~^24.90^3^0.06^~1~^~A~^^^1^24.77^24.98^2^24.62^25.18^~2, 3~^~01/01/2017~ -~03216~^~303~^18.87^4^0.20^~1~^~A~^^^1^18.40^19.30^3^18.23^19.51^~2, 3~^~01/01/2017~ -~03216~^~309~^14.15^4^0.05^~1~^~A~^^^1^14.10^14.30^3^13.99^14.30^~2, 3~^~01/01/2017~ -~03216~^~323~^24.66^3^0.12^~1~^~A~^^^1^24.41^24.80^2^24.12^25.20^~2, 3~^~01/01/2017~ -~03216~^~341~^0.40^3^0.05^~1~^~A~^^^1^0.31^0.49^2^0.18^0.62^~2, 3~^~01/01/2017~ -~03216~^~342~^8.27^3^0.02^~1~^~A~^^^1^8.21^8.31^2^8.14^8.38^~2, 3~^~01/01/2017~ -~03216~^~343~^2.74^3^0.05^~1~^~A~^^^1^2.66^2.85^2^2.50^2.97^~2, 3~^~01/01/2017~ -~03216~^~344~^0.23^3^0.03^~1~^~A~^^^1^0.17^0.26^2^0.09^0.35^~2, 3~^~01/01/2017~ -~03216~^~345~^1.22^3^0.06^~1~^~A~^^^1^1.11^1.31^2^0.95^1.48^~2, 3~^~01/01/2017~ -~03216~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~418~^0.07^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03216~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03217~^~203~^10.10^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~204~^9.70^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~205~^74.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03217~^~207~^1.50^3^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~255~^4.50^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~269~^12.50^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~303~^0.60^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~309~^0.54^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~323~^2.44^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~341~^0.05^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~342~^0.31^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~343~^0.01^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~344~^0.02^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~345~^0.07^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~347~^0.01^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03217~^~573~^2.32^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03220~^~203~^0.20^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03220~^~204~^0.40^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03220~^~205~^19.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~207~^0.16^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03220~^~255~^79.50^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03220~^~269~^17.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03220~^~303~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~309~^0.01^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03220~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03221~^~203~^0.20^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~204~^0.16^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~205~^19.18^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~03221~^~207~^0.14^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~210~^8.80^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~211~^2.10^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~212~^5.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~255~^80.32^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~269~^17.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03221~^~303~^0.11^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~309~^0.03^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03221~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03221~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03222~^~203~^0.30^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~204~^0.10^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~205~^19.20^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03222~^~207~^0.19^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~255~^79.80^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~269~^10.39^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~03222~^~303~^0.10^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~309~^0.05^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03222~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~03222~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03222~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03224~^~203~^0.20^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~204~^0.30^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~205~^17.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03224~^~207~^0.20^5^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~255~^81.50^4^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~269~^9.15^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03224~^~303~^0.19^6^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~309~^0.04^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03224~^~418~^0.01^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03224~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03224~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03225~^~203~^0.20^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~204~^0.20^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~205~^18.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03225~^~207~^0.20^5^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~255~^81.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~269~^16.98^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03225~^~303~^0.17^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~309~^0.03^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03225~^~418~^0.01^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03225~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03225~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03226~^~203~^1.10^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~204~^0.90^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~205~^17.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03226~^~207~^0.60^5^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~255~^79.80^4^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~303~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~309~^0.17^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~418~^0.01^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03227~^~203~^0.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~204~^0.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~205~^17.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03227~^~207~^0.24^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03227~^~210~^2.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~211~^0.83^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~212~^0.65^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~214~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~255~^81.80^4^0.40^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~269~^10.62^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03227~^~287~^0.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03227~^~303~^0.10^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03227~^~309~^0.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03227~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03227~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03227~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03228~^~203~^0.30^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~204~^0.00^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~205~^18.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03228~^~207~^0.24^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03228~^~255~^81.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~269~^11.89^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~03228~^~303~^0.10^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~309~^0.03^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03228~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03228~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03228~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03229~^~203~^0.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~204~^0.00^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~205~^16.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03229~^~207~^0.30^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~255~^82.90^13^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~303~^0.33^13^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~309~^0.28^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03229~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~203~^0.30^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~204~^0.00^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~205~^16.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03230~^~207~^0.40^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~255~^83.00^13^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~303~^0.30^13^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~309~^0.28^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03233~^~203~^1.30^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~204~^0.30^17^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~205~^20.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03233~^~207~^0.50^16^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~255~^77.60^17^1.30^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~269~^10.28^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03233~^~303~^0.18^16^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~309~^0.20^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03233~^~418~^0.06^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03233~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03235~^~203~^0.30^15^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~204~^0.00^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~205~^16.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03235~^~207~^0.30^42^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~255~^83.40^17^0.40^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~269~^12.60^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03235~^~303~^0.22^35^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~309~^0.04^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~344~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03235~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03235~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03236~^~203~^0.30^15^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~204~^0.00^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~205~^17.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03236~^~207~^0.30^42^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~255~^82.20^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~269~^12.00^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03236~^~303~^0.21^7^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~309~^0.05^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03236~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03236~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03238~^~203~^0.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~204~^0.00^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~205~^16.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03238~^~207~^0.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~255~^83.20^13^0.30^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~303~^0.26^13^0.04^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~309~^0.05^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03245~^~203~^1.60^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~204~^2.00^16^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~205~^16.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03245~^~207~^0.50^37^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~255~^79.90^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~269~^11.50^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03245~^~303~^0.24^36^0.01^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~309~^0.28^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~323~^0.23^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03245~^~418~^0.01^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03245~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03245~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03246~^~203~^1.76^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~204~^0.98^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~205~^17.58^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~03246~^~207~^0.37^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~210~^9.34^0^^~12~^~MA~^^^^^^^^^^~08/01/2004~ -~03246~^~211~^0.26^0^^~12~^~MA~^^^^^^^^^^~08/01/2004~ -~03246~^~212~^0.26^0^^~12~^~MA~^^^^^^^^^^~08/01/2004~ -~03246~^~213~^1.70^0^^~12~^~MA~^^^^^^^^^^~08/01/2004~ -~03246~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03246~^~255~^79.31^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~269~^12.20^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~03246~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03246~^~303~^0.22^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~309~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03246~^~418~^0.23^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03265~^~203~^0.10^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~204~^0.20^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~205~^11.34^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~03265~^~207~^0.26^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03265~^~255~^88.10^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~269~^10.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03265~^~303~^0.39^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~309~^0.04^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03265~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03265~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03265~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~03267~^~203~^0.20^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~03267~^~204~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~03267~^~205~^12.70^1^^~9~^~MC~^^^^^^^^^^~06/01/1998~ -~03267~^~207~^0.52^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~255~^86.50^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~269~^10.60^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~303~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~309~^0.04^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03267~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03267~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03269~^~203~^0.06^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~204~^0.10^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~205~^11.10^1^^~9~^~MC~^^^^^^^^^^~06/01/1998~ -~03269~^~207~^0.48^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~255~^88.30^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~269~^9.00^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~303~^0.20^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~309~^0.03^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03269~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03269~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03274~^~203~^2.04^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~204~^1.12^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~205~^8.66^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~ -~03274~^~207~^0.42^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~210~^0.84^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~211~^0.23^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~212~^0.24^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~214~^0.15^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~255~^87.76^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~269~^1.46^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~303~^0.33^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~309~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03274~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03274~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03278~^~203~^1.20^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~204~^0.10^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~205~^9.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03278~^~207~^0.50^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~255~^88.70^16^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~303~^0.33^13^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~309~^0.16^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03278~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03279~^~203~^1.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~204~^0.11^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~205~^7.88^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03279~^~207~^0.40^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~255~^90.60^13^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~269~^3.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~303~^0.31^13^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~309~^0.24^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03279~^~323~^0.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~342~^0.04^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03279~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03279~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03280~^~203~^0.40^27^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~204~^0.20^27^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~205~^17.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03280~^~207~^0.20^26^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~255~^81.50^26^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~269~^7.10^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03280~^~303~^0.30^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~309~^0.07^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~323~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03280~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03280~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03282~^~203~^1.40^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~204~^0.40^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~205~^8.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03282~^~207~^0.60^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~255~^89.40^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~269~^1.78^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03282~^~303~^0.41^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~309~^0.27^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~323~^0.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03282~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03282~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03282~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03283~^~203~^2.30^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~204~^0.20^17^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~205~^6.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03283~^~207~^0.70^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~255~^90.00^19^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~269~^2.57^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03283~^~303~^0.83^18^0.03^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~309~^0.26^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~323~^0.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03283~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03286~^~203~^1.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~03286~^~204~^0.50^13^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~205~^8.25^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~03286~^~207~^0.45^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~03286~^~255~^89.80^9^0.60^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~269~^1.57^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~303~^0.32^9^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~309~^0.15^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~03286~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03286~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03286~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03287~^~203~^2.50^22^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~204~^1.90^23^0.10^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~205~^7.30^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03287~^~207~^0.50^21^0.00^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~255~^87.80^21^0.20^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~269~^1.45^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~303~^0.43^23^0.02^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~309~^0.40^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~323~^0.47^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03287~^~418~^0.10^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03287~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03289~^~203~^2.60^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~204~^0.90^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~205~^10.90^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~03289~^~207~^0.30^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~255~^85.30^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~269~^7.98^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~303~^0.30^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~309~^0.40^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03289~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1994~ -~03289~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03289~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03290~^~203~^3.40^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~204~^2.50^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~205~^5.70^0^^~9~^~MC~^^^^^^^^^^~05/01/1994~ -~03290~^~207~^0.70^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~255~^87.30^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~269~^2.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03290~^~303~^0.50^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~309~^0.80^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~323~^0.65^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03290~^~418~^0.30^0^^~4~^~FLM~^^^^^^^^^^~05/01/1994~ -~03290~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03290~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03293~^~203~^1.10^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~204~^0.30^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~205~^12.70^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~207~^0.43^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~03293~^~210~^1.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~211~^4.67^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~212~^2.90^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~214~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~255~^85.60^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~269~^9.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~287~^0.12^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~303~^0.00^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~309~^0.13^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~342~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~344~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~345~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~346~^0.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03293~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~03293~^~418~^0.00^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03293~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03296~^~203~^3.80^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~204~^1.60^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~205~^7.50^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~03296~^~207~^0.80^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~255~^86.30^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~269~^1.12^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~03296~^~303~^0.40^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~309~^0.61^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03296~^~418~^0.10^0^^~4~^^^^^^^^^^^~04/01/1995~ -~03296~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03296~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03297~^~203~^2.16^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~204~^1.38^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~205~^10.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~03297~^~207~^0.18^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~210~^0.71^0^^~12~^~MA~^^^^^^^^^^~06/01/2014~ -~03297~^~211~^1.43^0^^~12~^~MA~^^^^^^^^^^~06/01/2014~ -~03297~^~212~^3.91^0^^~12~^~MA~^^^^^^^^^^~06/01/2014~ -~03297~^~213~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~214~^0.00^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~255~^85.40^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~269~^6.06^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~03297~^~303~^0.38^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~309~^0.36^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03297~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03298~^~203~^3.59^4^0.44^~1~^~A~^^^1^3.13^4.94^3^2.16^5.02^~2, 3~^~03/01/2007~ -~03298~^~204~^2.48^4^0.62^~1~^~A~^^^1^1.06^4.09^3^0.49^4.46^~2, 3~^~03/01/2007~ -~03298~^~205~^6.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~207~^0.67^4^0.19^~1~^~A~^^^1^0.44^1.26^3^0.04^1.29^~2, 3~^~03/01/2007~ -~03298~^~210~^0.07^2^^~1~^~A~^^^1^0.00^0.13^1^^^~1~^~03/01/2007~ -~03298~^~211~^0.68^2^^~1~^~A~^^^1^0.66^0.70^1^^^^~03/01/2007~ -~03298~^~212~^0.61^2^^~1~^~A~^^^1^0.58^0.63^1^^^^~03/01/2007~ -~03298~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~214~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~03/01/2007~ -~03298~^~255~^86.92^4^2.05^~1~^~A~^^^1^82.57^92.06^3^80.39^93.44^~2, 3~^~03/01/2007~ -~03298~^~269~^1.43^2^^~1~^~A~^^^1^1.32^1.54^1^^^^~03/01/2007~ -~03298~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~303~^0.52^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~309~^0.39^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~323~^0.60^2^^~1~^~A~^^^1^0.58^0.62^1^^^^~03/01/2007~ -~03298~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~03/01/2007~ -~03298~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~344~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~03/01/2007~ -~03298~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~03298~^~418~^0.33^2^^~1~^~A~^^^1^0.33^0.33^^^^~1~^~03/01/2007~ -~03298~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~03298~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~03301~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~205~^7.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03301~^~207~^0.15^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~255~^92.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03301~^~269~^6.12^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03301~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~309~^0.71^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~203~^14.29^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~204~^4.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~205~^71.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~03302~^~207~^3.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~255~^6.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03302~^~269~^57.14^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~309~^1.77^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~323~^6.43^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03302~^~418~^1.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~573~^6.18^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03302~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03303~^~203~^2.51^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~204~^2.17^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~205~^11.04^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~03303~^~207~^0.58^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~255~^83.70^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~269~^2.65^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~03303~^~303~^0.45^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~309~^0.37^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~323~^0.58^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~03303~^~418~^0.05^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03303~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~03376~^~203~^1.64^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~204~^4.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~205~^6.93^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03376~^~207~^0.33^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~269~^8.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~303~^1.41^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~309~^0.78^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~323~^0.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~418~^0.23^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~573~^0.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~578~^0.23^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~203~^10.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~204~^27.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~205~^57.20^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03381~^~207~^2.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~255~^2.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~269~^53.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~303~^9.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~309~^5.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~323~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~418~^1.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~578~^1.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~203~^2.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~204~^3.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~205~^8.66^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03382~^~207~^0.64^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~255~^84.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~269~^4.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~303~^1.41^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~309~^1.17^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~323~^2.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~573~^2.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~203~^3.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~204~^4.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~205~^11.13^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03384~^~207~^0.87^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~255~^80.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~269~^2.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~303~^1.74^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~309~^1.45^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~323~^2.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~418~^0.24^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~573~^2.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~578~^0.24^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~203~^11.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~204~^27.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~205~^55.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~207~^3.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~255~^2.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~269~^11.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~303~^9.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~309~^5.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~323~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~418~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~573~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~578~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~203~^11.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~204~^27.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~205~^55.90^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03386~^~207~^3.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~255~^2.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~269~^30.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~303~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~309~^5.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~323~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~418~^1.52^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~573~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~578~^1.52^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~203~^1.51^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~205~^7.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03387~^~207~^0.39^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~269~^3.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~303~^0.98^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~323~^0.59^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03387~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03388~^~203~^1.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~205~^7.61^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03388~^~207~^0.39^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~269~^1.93^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~573~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03389~^~203~^12.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~204~^21.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~205~^61.97^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03389~^~207~^3.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~255~^1.63^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~269~^25.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~303~^7.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~309~^5.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~323~^3.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~418~^1.44^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~573~^3.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~578~^1.44^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~203~^1.84^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~204~^3.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~205~^7.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03390~^~207~^0.46^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~269~^0.02^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~323~^1.18^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~573~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~203~^2.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~204~^4.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~205~^5.95^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03391~^~207~^0.45^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~269~^0.02^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~303~^1.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~309~^0.78^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~323~^1.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~418~^0.23^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~573~^1.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~578~^0.23^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03392~^~203~^13.90^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~204~^26.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~205~^55.68^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~03392~^~207~^2.60^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~255~^1.82^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~269~^7.60^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~303~^9.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~309~^5.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~323~^4.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~418~^1.49^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~578~^1.49^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~203~^1.51^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~205~^7.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03393~^~207~^0.39^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~269~^1.93^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03681~^~203~^3.73^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~204~^3.26^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~205~^9.94^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~207~^0.87^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~210~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~211~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~212~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~213~^4.68^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~255~^82.19^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~269~^5.10^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~303~^3.49^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~309~^0.57^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~323~^0.43^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~418~^0.42^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03682~^~203~^8.70^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~204~^3.80^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~205~^11.60^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03682~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~255~^74.50^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~303~^12.14^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~309~^1.04^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~418~^0.30^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03685~^~203~^4.14^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~204~^3.38^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~205~^12.30^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~207~^0.96^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~213~^4.50^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~255~^79.21^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~269~^4.78^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~303~^10.43^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~03685~^~309~^0.59^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~323~^0.47^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~343~^0.03^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~344~^0.62^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~345~^0.02^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~418~^0.40^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~203~^3.82^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~204~^3.46^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~205~^10.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~207~^0.92^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~255~^81.81^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~269~^5.90^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~303~^3.63^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~309~^0.49^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~323~^0.44^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~418~^0.43^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03689~^~203~^5.00^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~204~^4.10^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~205~^15.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03689~^~207~^1.10^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~255~^74.50^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~303~^12.14^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~309~^0.92^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~418~^0.30^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03690~^~203~^3.82^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~204~^3.46^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~205~^10.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~207~^0.92^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~213~^4.67^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~255~^81.81^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~269~^5.90^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~303~^3.63^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~309~^0.49^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~323~^0.44^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~418~^0.43^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03693~^~203~^5.00^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~204~^3.90^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~205~^15.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03693~^~207~^1.30^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~255~^74.50^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~303~^11.09^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~309~^0.93^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~418~^0.30^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03694~^~203~^3.45^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~204~^3.38^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~205~^10.31^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~207~^0.89^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~213~^4.67^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~255~^81.96^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~269~^4.87^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~303~^3.63^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~309~^0.49^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~323~^0.44^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~418~^0.41^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03696~^~203~^3.90^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~204~^3.30^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~205~^17.10^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03696~^~207~^1.30^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~255~^74.40^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~303~^10.81^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~309~^0.65^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03696~^~418~^0.30^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~203~^5.00^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~204~^3.60^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~205~^15.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03704~^~207~^1.20^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~255~^74.20^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~303~^11.27^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~309~^0.72^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~418~^0.30^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03711~^~203~^6.90^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~204~^3.90^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~205~^13.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~ -~03711~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~255~^74.40^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~303~^14.42^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~309~^0.76^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~418~^0.35^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03712~^~203~^3.57^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~204~^3.32^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~205~^10.49^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~207~^0.81^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~213~^4.67^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~255~^81.81^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~269~^6.13^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~303~^3.63^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~309~^0.46^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~323~^0.09^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~418~^0.43^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03801~^~203~^2.79^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~204~^6.50^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03801~^~205~^14.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~207~^0.71^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03801~^~255~^75.80^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03801~^~269~^9.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03801~^~303~^1.90^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03801~^~309~^1.02^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~323~^1.91^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03801~^~418~^0.42^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03801~^~573~^1.91^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03801~^~578~^0.42^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03802~^~203~^11.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~204~^26.10^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03802~^~205~^57.32^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03802~^~207~^2.78^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~03802~^~255~^2.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03802~^~269~^39.30^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03802~^~303~^7.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~309~^4.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~323~^7.70^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~03802~^~418~^1.10^0^^~12~^^^^^^^^^^^~12/01/2007~ -~03802~^~573~^7.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03802~^~578~^1.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03805~^~203~^10.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~204~^27.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~205~^56.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03805~^~207~^2.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~213~^56.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03805~^~255~^3.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~269~^56.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03805~^~303~^9.30^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~309~^5.20^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~323~^6.90^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03805~^~418~^1.55^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03805~^~573~^6.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03805~^~578~^1.55^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03808~^~203~^10.80^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~204~^27.00^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~205~^56.20^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~207~^2.70^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~213~^56.00^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~255~^3.30^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~ -~03808~^~269~^56.00^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~303~^9.30^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~309~^5.20^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~323~^6.90^0^^~4~^~NR~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~418~^1.55^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~573~^6.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03808~^~578~^1.55^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~203~^1.31^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~205~^7.86^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03812~^~207~^0.33^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~269~^7.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03812~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03815~^~203~^1.38^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03815~^~204~^3.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~205~^7.10^0^^~9~^~MC~^^^^^^^^^^~08/01/2010~ -~03815~^~207~^0.32^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~255~^88.35^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~269~^7.10^0^^~9~^~MC~^^^^^^^^^^~08/01/2010~ -~03815~^~303~^1.18^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~309~^0.66^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~323~^0.87^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03815~^~418~^0.19^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03815~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03815~^~578~^0.19^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03818~^~203~^2.76^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~204~^7.16^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~205~^14.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03818~^~207~^0.72^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~255~^75.32^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~269~^14.24^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03818~^~303~^0.92^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~309~^1.31^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~323~^1.22^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03818~^~418~^0.39^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~03818~^~573~^1.22^0^^~9~^~MC~^^^^^^^^^^~05/01/2006~ -~03818~^~578~^0.39^0^^~9~^~MC~^^^^^^^^^^~05/01/2006~ -~03821~^~203~^14.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~204~^28.00^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03821~^~205~^52.20^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03821~^~207~^3.20^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03821~^~255~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~269~^4.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~303~^9.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~309~^5.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~323~^13.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~418~^1.50^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~ -~03821~^~573~^13.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~578~^1.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~203~^1.86^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~204~^3.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~205~^6.54^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03822~^~207~^0.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~255~^87.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~269~^0.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~303~^1.19^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~323~^1.19^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~573~^1.19^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03823~^~203~^1.64^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~204~^3.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~205~^6.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03823~^~207~^0.40^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03823~^~255~^88.35^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~269~^6.11^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03823~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~309~^0.79^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~323~^0.87^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03823~^~418~^0.19^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03823~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03823~^~578~^0.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03825~^~203~^1.38^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~204~^3.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~205~^7.18^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03825~^~207~^0.32^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~213~^7.18^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~255~^88.35^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~269~^7.18^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~303~^0.46^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~309~^0.66^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~323~^0.87^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03825~^~418~^0.19^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03825~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03825~^~578~^0.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03832~^~203~^1.31^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~205~^7.86^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03832~^~207~^0.33^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~269~^7.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~303~^1.18^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~309~^0.66^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~418~^0.19^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03832~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03837~^~203~^11.40^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~204~^28.71^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03837~^~205~^54.94^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03837~^~207~^2.70^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~03837~^~213~^52.38^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03837~^~255~^2.25^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~269~^52.38^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03837~^~303~^1.13^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~03837~^~309~^3.85^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~323~^8.61^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~03837~^~418~^1.28^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03837~^~573~^8.61^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03837~^~578~^1.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03838~^~203~^14.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~204~^27.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~205~^53.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03838~^~207~^3.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~255~^2.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~269~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~303~^9.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~309~^5.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~323~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~418~^1.52^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~578~^1.52^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03841~^~203~^1.61^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~204~^3.59^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03841~^~205~^6.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03841~^~207~^0.66^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03841~^~255~^87.54^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03841~^~269~^6.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03841~^~303~^1.18^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~309~^0.49^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~323~^1.32^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03841~^~418~^0.30^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03841~^~573~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03841~^~578~^0.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03842~^~203~^3.13^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03842~^~204~^6.98^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03842~^~205~^13.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03842~^~207~^0.88^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~255~^75.81^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~269~^13.10^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03842~^~303~^2.30^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~309~^0.96^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~323~^1.20^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03842~^~418~^0.58^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03842~^~573~^1.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03842~^~578~^0.58^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03843~^~203~^12.60^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~204~^28.09^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~205~^53.57^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03843~^~207~^3.24^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~255~^2.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03843~^~269~^52.97^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03843~^~303~^9.26^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~309~^3.86^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~323~^5.10^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~03843~^~418~^2.31^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~03843~^~573~^5.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03843~^~578~^2.31^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03844~^~203~^1.84^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~204~^3.50^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~205~^7.20^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03844~^~207~^0.46^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~269~^7.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~418~^0.37^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03844~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~578~^0.37^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03845~^~203~^1.83^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~204~^3.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~205~^7.21^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03845~^~207~^0.46^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~269~^0.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~303~^1.18^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~309~^0.66^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03846~^~203~^1.80^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~204~^3.63^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~205~^6.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03846~^~207~^0.48^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~03846~^~209~^2.20^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~210~^4.40^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03846~^~255~^87.32^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~269~^4.40^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03846~^~303~^1.18^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~309~^0.49^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~323~^1.32^0^^~4~^~T~^^^^^^^^^^~02/01/2007~ -~03846~^~418~^0.30^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03846~^~573~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03846~^~578~^0.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03849~^~203~^13.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~204~^26.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~205~^53.80^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03849~^~207~^3.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~255~^2.50^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~269~^34.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~303~^8.90^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~309~^6.20^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~323~^8.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~418~^1.49^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03849~^~573~^8.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~578~^1.49^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03851~^~203~^2.64^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03851~^~204~^6.89^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03851~^~205~^13.76^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03851~^~207~^0.79^0^^~9~^~MC~^^^^^^^^^^~07/01/2004~ -~03851~^~213~^13.76^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03851~^~255~^76.16^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03851~^~269~^13.76^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03851~^~303~^2.30^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03851~^~309~^0.96^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~323~^1.28^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03851~^~418~^0.32^0^^~5~^~ML~^^^^^^^^^^~05/01/2007~ -~03851~^~573~^1.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03851~^~578~^0.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03852~^~203~^12.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~204~^27.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03852~^~205~^54.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03852~^~207~^3.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~209~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~255~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~269~^0.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~303~^9.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03852~^~309~^6.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~323~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~418~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~573~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~578~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03853~^~203~^10.89^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03853~^~204~^28.87^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03853~^~205~^54.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03853~^~207~^3.26^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03853~^~213~^55.53^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03853~^~255~^2.25^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03853~^~269~^54.73^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~03853~^~303~^9.47^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~309~^3.94^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~323~^5.29^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~ -~03853~^~418~^1.32^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03853~^~573~^5.29^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03853~^~578~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03854~^~203~^1.63^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~204~^3.40^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~205~^7.58^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03854~^~207~^0.39^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~269~^0.97^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~303~^1.17^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~309~^6.10^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03857~^~203~^1.64^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~204~^3.50^0^^~9~^~MC~^~03823~^^^^^^^^^~04/01/2005~ -~03857~^~205~^6.47^0^^~4~^~NC~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~207~^0.39^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~255~^88.00^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~269~^0.97^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~303~^1.18^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~309~^0.79^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~323~^0.59^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~418~^0.20^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03857~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03859~^~203~^1.60^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~204~^3.28^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~205~^7.13^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~207~^0.49^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~255~^87.50^0^^~4~^~NR~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~269~^5.68^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~303~^1.15^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~309~^0.58^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~323~^0.94^0^^~12~^~MA~^~03805~^^^^^^^^^~05/01/2009~ -~03859~^~418~^0.19^0^^~12~^~MA~^~03805~^^^^^^^^^~05/01/2009~ -~03859~^~573~^0.94^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03859~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03860~^~203~^2.86^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~204~^4.77^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~205~^11.15^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~03860~^~207~^0.75^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~03860~^~213~^10.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~255~^80.47^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03860~^~269~^10.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03860~^~303~^1.34^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~309~^1.15^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~323~^1.46^0^^~4~^~T~^^^^^^^^^^~04/01/2009~ -~03860~^~418~^0.57^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03860~^~573~^1.46^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03860~^~578~^0.57^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03861~^~203~^15.60^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~204~^21.00^0^^~4~^~NR~^~03929~^^^^^^^^^~03/01/2006~ -~03861~^~205~^57.10^0^^~4~^~NC~^~03929~^^^^^^^^^~04/01/2006~ -~03861~^~207~^3.30^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~255~^3.00^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~269~^56.00^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~303~^9.50^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~309~^5.70^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~323~^6.40^0^^~4~^~NR~^~03929~^^^^^^^^^~01/01/2009~ -~03861~^~418~^1.42^0^^~4~^~BFZN~^~03929~^^^^^^^^^~01/01/2009~ -~03861~^~573~^6.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03861~^~578~^1.42^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03864~^~203~^2.14^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~204~^2.91^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~205~^8.09^0^^~4~^~NC~^~03930~^^^^^^^^^~04/01/2006~ -~03864~^~207~^0.46^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~255~^86.40^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~269~^7.77^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~303~^1.31^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~309~^0.79^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~323~^0.60^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2009~ -~03864~^~418~^0.19^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2009~ -~03864~^~573~^0.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2006~ -~03864~^~578~^0.19^0^^~9~^~MC~^^^^^^^^^^~05/01/2006~ -~03867~^~203~^12.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~204~^25.60^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~205~^55.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03867~^~207~^3.80^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~255~^2.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~269~^44.38^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~303~^9.00^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~309~^4.51^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~323~^7.34^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~03867~^~418~^1.50^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~03867~^~573~^7.34^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03867~^~578~^1.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03870~^~203~^2.80^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~204~^4.70^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~205~^11.28^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~207~^0.75^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~03870~^~255~^80.47^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~269~^7.60^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~303~^1.32^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~309~^0.56^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~323~^1.46^0^^~4~^~T~^^^^^^^^^^~04/01/2009~ -~03870~^~418~^0.56^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~573~^1.46^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03870~^~578~^0.56^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03928~^~203~^12.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~204~^25.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~205~^55.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03928~^~207~^3.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~255~^2.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~269~^44.38^0^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~03928~^~303~^9.00^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~ -~03928~^~309~^4.51^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~323~^7.34^0^^~9~^~MC~^^^^^^^^^^~06/01/2009~ -~03928~^~418~^1.50^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~03928~^~573~^7.34^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03928~^~578~^1.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03929~^~203~^15.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~204~^21.00^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~205~^57.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03929~^~207~^3.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~255~^3.00^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~269~^56.00^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~303~^9.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~309~^5.70^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~323~^4.28^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03929~^~418~^1.42^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03929~^~573~^4.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03929~^~578~^1.42^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03930~^~203~^2.14^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~204~^2.91^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~205~^8.08^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03930~^~207~^0.46^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~255~^86.41^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~269~^7.77^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~303~^1.31^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~309~^0.79^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~323~^0.87^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03930~^~418~^0.19^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03930~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03930~^~578~^0.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03934~^~203~^1.26^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~204~^0.28^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~205~^15.23^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~207~^0.61^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~210~^0.60^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~211~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~212~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~214~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~255~^82.62^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~269~^4.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2008~ -~03934~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~303~^0.31^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~309~^0.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~323~^0.51^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~03934~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03935~^~203~^1.80^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~204~^3.63^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~205~^6.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03935~^~207~^0.48^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~03935~^~209~^2.20^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~210~^4.40^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~03935~^~255~^87.32^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03935~^~269~^4.40^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03935~^~303~^1.18^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~309~^0.49^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~323~^1.32^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~03935~^~418~^0.30^1^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~03935~^~573~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03935~^~578~^0.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03936~^~203~^1.40^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~204~^3.50^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~205~^6.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03936~^~207~^0.61^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03936~^~255~^88.10^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~269~^6.40^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~03936~^~303~^1.18^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~309~^0.53^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~323~^0.41^0^^~9~^~MC~^^^^^^^^^^~07/01/2009~ -~03936~^~418~^0.13^0^^~12~^^^^^^^^^^^~07/01/2009~ -~03936~^~573~^0.41^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03936~^~578~^0.13^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03937~^~203~^2.90^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~204~^7.00^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~205~^13.90^0^^~9~^~MC~^^^^^^^^^^~06/01/2006~ -~03937~^~207~^0.61^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03937~^~255~^76.00^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~269~^13.90^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03937~^~303~^2.36^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~309~^1.06^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~323~^0.83^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03937~^~418~^0.26^0^^~4~^^^^^^^^^^^~01/01/2009~ -~03937~^~573~^0.83^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03937~^~578~^0.26^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03938~^~203~^12.00^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~204~^28.00^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~205~^56.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03938~^~207~^2.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2004~ -~03938~^~255~^2.00^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~269~^56.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03938~^~303~^9.50^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~309~^3.90^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~323~^3.38^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03938~^~418~^1.02^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~03938~^~573~^3.38^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03938~^~578~^1.02^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03939~^~203~^1.80^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~204~^3.50^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~205~^6.09^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03939~^~207~^0.61^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03939~^~255~^88.00^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~269~^6.10^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~03939~^~303~^1.18^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~309~^0.53^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~323~^0.42^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03939~^~418~^0.20^0^^~12~^^^^^^^^^^^~05/01/2009~ -~03939~^~573~^0.42^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03939~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03940~^~203~^3.60^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~204~^7.00^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~205~^12.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03940~^~207~^1.22^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03940~^~255~^76.00^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~269~^12.18^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~03940~^~303~^2.36^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~309~^1.06^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~323~^0.83^0^^~9~^~MC~^^^^^^^^^^~07/01/2009~ -~03940~^~418~^0.40^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03940~^~573~^0.83^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03940~^~578~^0.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03941~^~203~^13.60^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03941~^~204~^27.20^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03941~^~205~^52.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03941~^~207~^5.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~03941~^~255~^2.00^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~269~^52.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~03941~^~303~^9.10^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~309~^3.80^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~323~^3.24^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03941~^~418~^1.50^0^^~12~^^^^^^^^^^^~05/01/2009~ -~03941~^~573~^3.24^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03941~^~578~^1.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03942~^~203~^1.64^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~204~^3.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~205~^8.73^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03942~^~207~^0.33^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03942~^~255~^86.00^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03942~^~269~^6.44^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~303~^1.18^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~309~^0.66^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~323~^0.62^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~418~^0.21^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03942~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~578~^0.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03943~^~203~^12.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~204~^25.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~205~^57.40^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03943~^~207~^3.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~255~^2.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~269~^56.03^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~303~^9.16^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~309~^5.09^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~323~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~418~^1.53^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03943~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~578~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03944~^~203~^1.92^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~204~^3.77^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~205~^6.94^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03944~^~207~^0.38^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~213~^6.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~255~^87.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~269~^6.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~303~^1.23^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~309~^0.82^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~323~^1.11^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03944~^~418~^0.27^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~03944~^~573~^1.11^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03944~^~578~^0.27^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~203~^14.42^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~204~^28.33^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~205~^51.75^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03945~^~207~^3.26^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~03945~^~213~^52.02^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~255~^2.25^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~269~^52.02^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~303~^9.26^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~309~^6.18^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~323~^8.34^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03945~^~418~^2.06^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~03945~^~573~^8.34^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~578~^2.06^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~203~^1.48^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~204~^3.74^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~205~^7.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03946~^~207~^0.75^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~03946~^~255~^87.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~269~^7.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~303~^1.24^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~309~^0.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~323~^0.93^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03946~^~418~^0.17^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03946~^~573~^0.93^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~578~^0.17^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~203~^2.73^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~204~^6.95^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~205~^13.64^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~03947~^~207~^0.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~255~^75.88^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~269~^13.78^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~303~^2.32^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~309~^0.97^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~323~^0.84^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03947~^~418~^0.32^0^^~9~^~MC~^^^^^^^^^^~08/01/2009~ -~03947~^~573~^0.84^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03947~^~578~^0.32^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03948~^~203~^11.13^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~204~^28.14^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~205~^55.67^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03948~^~207~^3.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~255~^2.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~269~^55.67^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~303~^9.33^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~309~^3.91^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~323~^7.07^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03948~^~418~^1.28^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~03948~^~573~^7.07^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~578~^1.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03949~^~203~^1.36^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03949~^~204~^3.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03949~^~205~^6.77^0^^~4~^~NC~^^^^^^^^^^ -~03949~^~207~^0.38^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~255~^87.79^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03949~^~269~^6.77^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03949~^~303~^1.18^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~309~^0.49^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~323~^1.32^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~03949~^~418~^0.16^1^^~12~^~MA~^^^^^^^^^^~06/01/2008~ -~03949~^~573~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03949~^~578~^0.16^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03950~^~203~^10.89^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03950~^~204~^28.87^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03950~^~205~^54.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03950~^~207~^3.26^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03950~^~213~^55.53^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03950~^~255~^2.25^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03950~^~269~^54.73^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~03950~^~303~^9.47^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~309~^3.94^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~323~^5.29^0^^~9~^~MC~^^^^^^^^^^~06/01/2008~ -~03950~^~418~^1.32^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~03950~^~573~^5.29^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03950~^~578~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03951~^~203~^2.64^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~03951~^~204~^6.89^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03951~^~205~^13.52^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~03951~^~207~^0.79^0^^~9~^~MC~^^^^^^^^^^~07/01/2004~ -~03951~^~213~^13.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03951~^~255~^76.16^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03951~^~269~^13.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03951~^~303~^2.30^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03951~^~309~^0.96^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~323~^1.28^0^^~4~^~NR~^^^^^^^^^^~06/01/2008~ -~03951~^~418~^0.32^0^^~5~^~ML~^^^^^^^^^^~06/01/2008~ -~03951~^~573~^1.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03951~^~578~^0.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03952~^~203~^3.13^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03952~^~204~^6.98^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03952~^~205~^13.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~03952~^~207~^0.88^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~255~^75.81^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~269~^13.10^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03952~^~303~^2.30^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~309~^0.96^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~323~^1.20^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03952~^~418~^0.58^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03952~^~573~^1.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03952~^~578~^0.58^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03953~^~203~^1.61^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~204~^3.59^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03953~^~205~^6.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03953~^~207~^0.66^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03953~^~255~^87.54^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03953~^~269~^6.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03953~^~303~^1.18^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~309~^0.49^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~323~^1.32^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~03953~^~418~^0.30^1^^~12~^~MA~^^^^^^^^^^~06/01/2009~ -~03953~^~573~^1.32^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03953~^~578~^0.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03954~^~203~^12.60^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~204~^28.09^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~205~^53.57^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~03954~^~207~^3.24^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~255~^2.50^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03954~^~269~^52.97^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03954~^~303~^9.26^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~309~^3.86^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~323~^5.10^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03954~^~418~^2.31^0^^~4~^~T~^^^^^^^^^^~07/01/2008~ -~03954~^~573~^5.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03954~^~578~^2.31^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03955~^~203~^2.00^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~204~^3.80^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~205~^7.73^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03955~^~207~^0.47^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03955~^~255~^86.00^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~269~^3.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~303~^1.28^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~309~^0.72^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~323~^1.32^0^^~4~^~BFFN~^~03849~^^^^^^^^^~07/01/2008~ -~03955~^~418~^0.22^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~573~^1.32^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~578~^0.22^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03956~^~203~^3.40^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~204~^3.53^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~205~^13.22^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~207~^0.69^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~255~^79.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~269~^11.46^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~303~^0.15^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~309~^0.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~342~^0.07^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~418~^0.32^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03957~^~203~^13.99^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~204~^28.19^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~205~^51.91^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~207~^4.41^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~255~^1.50^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~269~^34.18^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~303~^9.16^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~309~^3.82^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~323~^10.24^0^^~4~^~BFFN~^~03935~^^^^^^^^^~02/01/2009~ -~03957~^~418~^2.29^1^^~4~^~BFSN~^^^^^^^^^^~02/01/2009~ -~03957~^~573~^10.24^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~578~^2.29^0^^~4~^~NR~^~03935~^^^^^^^^^~05/01/2011~ -~03959~^~203~^1.11^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~204~^1.47^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~03959~^~205~^7.47^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~03959~^~207~^0.98^0^^~4~^~NR~^^^^^^^^^^~12/01/2008~ -~03959~^~209~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~210~^0.07^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~211~^0.14^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~212~^0.13^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~213~^0.02^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~214~^0.02^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~255~^88.97^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~269~^1.17^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~03959~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~303~^0.16^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~309~^0.16^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03960~^~203~^1.45^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~204~^3.37^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~205~^7.39^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~207~^0.29^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03960~^~255~^87.50^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03960~^~269~^5.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~03960~^~303~^0.99^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03960~^~309~^0.53^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~323~^0.99^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03960~^~418~^0.22^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03960~^~573~^0.99^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03960~^~578~^0.22^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~03961~^~203~^1.45^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~204~^3.37^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~205~^7.39^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~207~^0.29^0^^~4~^~T~^^^^^^^^^^~01/01/2009~ -~03961~^~255~^87.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03961~^~269~^5.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~303~^0.99^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~309~^0.53^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~323~^0.99^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03961~^~418~^0.22^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~03961~^~573~^0.99^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03961~^~578~^0.22^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~03963~^~203~^1.51^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~204~^3.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~205~^7.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03963~^~207~^0.39^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~269~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~309~^0.66^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~418~^0.21^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03963~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~578~^0.21^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03964~^~203~^5.43^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~204~^5.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~205~^68.63^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~207~^6.64^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~255~^14.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~269~^42.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~303~^13.16^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~309~^0.59^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~323~^0.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~342~^1.40^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~343~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~418~^0.19^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~573~^0.02^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03964~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03965~^~203~^3.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~204~^3.08^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~205~^13.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~207~^0.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~255~^80.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~269~^11.46^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~303~^4.18^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~309~^0.54^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~323~^0.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~342~^0.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~418~^0.29^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03966~^~203~^3.31^1^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~204~^6.67^1^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~205~^14.71^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03966~^~207~^1.01^1^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~255~^74.20^0^^~4~^~T~^^^^^^^^^^~07/01/2009~ -~03966~^~269~^11.74^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~303~^2.38^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~309~^1.19^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~323~^1.94^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~418~^0.40^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~573~^1.94^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~578~^0.40^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~03967~^~203~^12.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~204~^26.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~205~^52.80^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03967~^~207~^5.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~255~^2.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~269~^33.00^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~ -~03967~^~303~^7.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~309~^5.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~323~^4.50^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03967~^~418~^1.49^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~578~^1.49^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03968~^~203~^1.78^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~204~^3.63^0^^~4~^~O~^^^^^^^^^^~06/01/2011~ -~03968~^~205~^7.18^0^^~4~^~NR~^^^^^^^^^^~06/01/2011~ -~03968~^~207~^0.50^0^^~4~^~O~^^^^^^^^^^~06/01/2011~ -~03968~^~255~^87.50^0^^~4~^~O~^^^^^^^^^^~06/01/2011~ -~03968~^~269~^7.18^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~303~^1.37^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~309~^0.68^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~323~^0.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~418~^0.21^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~573~^0.87^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~578~^0.21^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03980~^~203~^11.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~204~^27.00^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~205~^56.50^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03980~^~207~^3.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~255~^1.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~269~^11.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~303~^9.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~309~^5.10^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~323~^4.64^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~418~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~573~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~578~^1.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03982~^~203~^2.17^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~204~^2.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~205~^7.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03982~^~207~^0.63^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~255~^86.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~269~^7.64^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~03982~^~303~^1.31^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~309~^0.79^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~323~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~203~^1.84^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~204~^3.48^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~205~^6.76^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~207~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~255~^87.78^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~269~^6.76^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~309~^0.66^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~323~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~03983~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03984~^~203~^2.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~204~^3.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~205~^6.20^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03984~^~207~^0.52^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~255~^87.78^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~269~^3.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~309~^0.98^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~323~^1.83^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~418~^0.16^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~573~^1.83^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~578~^0.16^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~203~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~204~^3.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~205~^8.88^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03985~^~207~^0.62^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~255~^84.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~269~^4.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~303~^1.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~309~^1.17^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~323~^1.86^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03985~^~418~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~573~^1.86^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~03985~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~203~^1.38^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~204~^3.48^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~205~^7.81^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~03986~^~207~^0.33^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~255~^87.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~269~^6.80^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~309~^0.66^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~323~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~573~^0.59^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~578~^0.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03987~^~203~^1.84^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~204~^3.28^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~205~^7.15^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~207~^0.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~255~^87.68^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~269~^7.14^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~303~^1.31^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~309~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~323~^0.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~573~^0.89^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~203~^1.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~204~^3.36^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~205~^7.17^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~207~^0.16^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~255~^87.86^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~269~^7.17^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~303~^0.98^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~309~^0.52^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~323~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03988~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~203~^1.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~204~^3.34^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~205~^7.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~207~^0.27^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~255~^87.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03989~^~269~^7.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~303~^1.31^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~309~^0.52^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~323~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~418~^0.22^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03989~^~578~^0.22^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~203~^1.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~204~^3.37^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~205~^7.39^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~207~^0.16^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~255~^87.86^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~269~^7.34^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~303~^0.98^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~309~^0.52^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~323~^0.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~573~^0.59^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03990~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~203~^1.97^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~204~^3.54^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~205~^6.69^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~207~^0.34^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~255~^87.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~269~^6.69^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~303~^1.31^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~309~^0.49^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~323~^0.89^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~03991~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~573~^0.89^0^^~4~^~NR~^^^^^^^^^^~08/01/2013~ -~03991~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~203~^1.76^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~204~^3.60^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~205~^6.67^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~207~^0.22^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~255~^87.78^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~269~^6.66^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~309~^0.49^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~323~^0.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~418~^0.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~573~^0.44^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03992~^~578~^0.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03993~^~203~^1.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~204~^3.54^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~205~^7.19^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~207~^0.18^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~255~^87.87^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~269~^7.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~309~^0.49^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~323~^0.89^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~418~^0.16^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~573~^0.89^0^^~4~^~NR~^^^^^^^^^^~08/01/2013~ -~03993~^~578~^0.16^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03994~^~203~^0.71^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~204~^0.37^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~205~^25.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03994~^~207~^0.91^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~255~^72.23^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~269~^19.29^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~303~^0.14^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03994~^~309~^0.23^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03994~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~342~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~343~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~344~^0.07^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~203~^1.01^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~204~^0.36^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~205~^21.31^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03995~^~207~^0.65^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~255~^76.68^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~269~^15.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03995~^~303~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~309~^0.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~323~^0.37^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~342~^0.34^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~343~^0.21^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~344~^0.04^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~346~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~203~^6.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~204~^6.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~205~^80.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03996~^~207~^2.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~255~^4.58^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~269~^26.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~303~^30.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~309~^10.67^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~323~^4.22^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03996~^~418~^4.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03996~^~573~^3.58^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~578~^4.69^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03997~^~203~^12.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~204~^0.87^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~205~^83.21^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03997~^~207~^0.99^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03997~^~255~^2.42^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~269~^12.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~303~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03997~^~309~^0.65^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~323~^0.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~203~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~204~^28.57^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~205~^61.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03998~^~207~^7.24^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~255~^2.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~303~^6.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~03998~^~309~^3.57^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~03998~^~323~^8.57^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03998~^~418~^0.10^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~573~^8.32^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03998~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03999~^~203~^11.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~204~^27.75^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~205~^55.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~207~^2.90^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~255~^3.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~269~^55.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~303~^9.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~309~^3.83^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~323~^6.93^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~418~^1.28^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~573~^6.93^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03999~^~578~^1.28^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~04001~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04001~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~323~^2.70^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04002~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04002~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~309~^0.11^1^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~323~^0.60^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~342~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~343~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~04002~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04011~^~203~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~204~^32.90^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~04011~^~205~^8.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~207~^2.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~255~^55.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~269~^4.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04011~^~303~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~203~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~205~^15.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04013~^~207~^2.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~255~^81.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~269~^6.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~303~^0.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~309~^0.07^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~323~^2.19^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~418~^0.00^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~573~^0.00^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~578~^0.00^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04014~^~203~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~204~^2.70^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~04014~^~205~^15.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~207~^1.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~255~^78.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~269~^10.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04014~^~303~^0.12^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04015~^~203~^0.69^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~204~^26.18^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~205~^31.90^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04015~^~207~^2.70^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~255~^38.53^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~269~^17.68^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~303~^0.60^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~309~^0.22^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~323~^3.32^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04016~^~203~^3.10^6^1.28^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~204~^45.20^6^4.89^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~205~^8.60^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04016~^~207~^3.90^6^0.22^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~255~^39.20^6^3.74^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~269~^8.32^0^^~4~^~BFZN~^~04114~^^^^^^^^^~04/01/2007~ -~04016~^~303~^0.60^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~309~^0.10^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~323~^5.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04017~^~203~^1.09^6^0.02^~1~^~A~^^^1^1.02^1.16^5^1.03^1.15^~2, 3~^~02/01/2003~ -~04017~^~204~^35.06^6^0.79^~1~^~A~^^^1^33.01^37.61^5^33.02^37.09^~2, 3~^~02/01/2003~ -~04017~^~205~^14.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04017~^~207~^2.69^6^0.04^~1~^~A~^^^1^2.60^2.90^5^2.57^2.80^~2, 3~^~02/01/2003~ -~04017~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04017~^~210~^6.40^2^^~1~^~A~^^^1^6.14^6.66^1^^^^~02/01/2003~ -~04017~^~211~^4.78^2^^~1~^~A~^^^1^4.67^4.90^1^^^^~02/01/2003~ -~04017~^~212~^4.00^2^^~1~^~A~^^^1^3.90^4.09^1^^^^~02/01/2003~ -~04017~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04017~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04017~^~255~^46.51^6^1.36^~1~^~A~^^^1^40.96^49.56^5^42.99^50.03^~2, 3~^~02/01/2003~ -~04017~^~269~^15.18^2^^~1~^~A~^^^1^15.12^15.23^1^^^^~03/01/2009~ -~04017~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04017~^~303~^1.18^6^0.08^~1~^~A~^^^1^0.96^1.51^5^0.95^1.41^~2, 3~^~02/01/2003~ -~04017~^~309~^0.26^6^0.01^~1~^~A~^^^1^0.23^0.32^5^0.21^0.30^~2, 3~^~02/01/2003~ -~04017~^~323~^4.00^0^^~4~^^^^^^^^^^^~08/01/2003~ -~04017~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04018~^~203~^0.65^6^0.06^~1~^~A~^^^1^0.55^0.95^5^0.48^0.80^~2, 3~^~05/01/2014~ -~04018~^~204~^21.60^6^0.16^~1~^~A~^^^1^21.00^22.10^5^21.17^22.02^~2, 3~^~05/01/2014~ -~04018~^~205~^14.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~207~^1.76^6^0.01^~1~^~A~^^^1^1.67^1.79^5^1.71^1.80^~2, 3~^~05/01/2014~ -~04018~^~209~^4.40^2^^~1~^~A~^^^1^3.80^5.00^1^^^^~05/01/2014~ -~04018~^~210~^0.69^3^0.38^~1~^~A~^^^1^0.07^1.40^2^-0.96^2.35^~1, 2, 3~^~05/01/2014~ -~04018~^~211~^4.60^3^0.23^~1~^~A~^^^1^4.20^5.00^2^3.60^5.59^~2, 3~^~05/01/2014~ -~04018~^~212~^4.50^3^0.23^~1~^~A~^^^1^4.10^4.90^2^3.50^5.49^~2, 3~^~05/01/2014~ -~04018~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~214~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~2, 3~^~05/01/2014~ -~04018~^~255~^61.22^6^0.18^~1~^~A~^^^1^60.70^61.90^5^60.73^61.70^~2, 3~^~05/01/2014~ -~04018~^~269~^10.02^3^0.08^~1~^~A~^^^1^9.90^10.17^2^9.68^10.36^~2, 3~^~05/01/2014~ -~04018~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~303~^0.12^6^3.0e-03^~1~^~A~^^^1^0.11^0.13^5^0.11^0.12^~2, 3~^~05/01/2014~ -~04018~^~309~^0.07^6^3.0e-03^~1~^~A~^^^1^0.06^0.08^5^0.06^0.07^~2, 3~^~05/01/2014~ -~04018~^~323~^1.55^3^0.04^~1~^~A~^^^1^1.46^1.62^2^1.34^1.74^~2, 3~^~05/01/2014~ -~04018~^~341~^0.72^3^0.03^~1~^~A~^^^1^0.68^0.78^2^0.58^0.84^~2, 3~^~05/01/2014~ -~04018~^~342~^11.12^3^0.27^~1~^~A~^^^1^10.58^11.51^2^9.91^12.31^~2, 3~^~05/01/2014~ -~04018~^~343~^4.74^3^0.36^~1~^~A~^^^1^4.05^5.27^2^3.18^6.29^~2, 3~^~05/01/2014~ -~04018~^~344~^0.09^3^0.03^~1~^~A~^^^1^0.04^0.16^2^-0.05^0.23^~2, 3~^~05/01/2014~ -~04018~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04018~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04018~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04018~^~418~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04020~^~203~^0.58^5^0.03^~6~^~JA~^^^2^0.49^0.63^3^0.48^0.68^~4~^~12/01/2007~ -~04020~^~204~^11.52^5^2.15^~6~^~JA~^^^2^5.69^15.36^3^4.66^18.36^~4~^~12/01/2007~ -~04020~^~205~^31.22^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~207~^2.40^3^0.02^~1~^~A~^^^1^2.36^2.43^2^2.31^2.49^~2, 3~^~02/01/2003~ -~04020~^~255~^54.28^3^0.08^~1~^~A~^^^1^54.17^54.44^2^53.92^54.62^~2, 3~^~02/01/2003~ -~04020~^~269~^16.86^2^^~12~^~MA~^^^^16.56^17.16^^^^^~12/01/2007~ -~04020~^~303~^0.73^5^0.14^~6~^~JA~^^^2^0.33^0.93^3^0.27^1.18^~4~^~12/01/2007~ -~04020~^~309~^0.20^3^0.03^~1~^~A~^^^1^0.14^0.25^2^0.05^0.34^~2, 3~^~02/01/2003~ -~04020~^~323~^1.00^0^^~4~^^^^^^^^^^^~12/01/2007~ -~04020~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04020~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04021~^~203~^0.39^10^0.01^~1~^~A~^^^1^0.31^0.44^6^0.34^0.42^~2, 3~^~05/01/2012~ -~04021~^~204~^6.68^10^0.07^~1~^~A~^^^1^3.92^9.02^8^6.50^6.85^~2, 3~^~05/01/2012~ -~04021~^~205~^9.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~207~^2.83^10^0.04^~1~^~A~^^^1^2.38^3.10^4^2.71^2.94^~2, 3~^~05/01/2012~ -~04021~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04021~^~210~^0.57^6^0.07^~1~^~A~^^^1^0.10^1.20^2^0.27^0.86^~2, 3~^~05/01/2012~ -~04021~^~211~^3.54^6^0.04^~1~^~A~^^^1^3.20^3.80^3^3.38^3.69^~2, 3~^~05/01/2012~ -~04021~^~212~^5.05^6^0.07^~1~^~A~^^^1^4.80^5.30^2^4.77^5.33^~2, 3~^~05/01/2012~ -~04021~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~255~^80.11^10^0.07^~1~^~A~^^^1^78.37^81.96^7^79.92^80.29^~2, 3~^~05/01/2012~ -~04021~^~269~^9.16^6^0.04^~1~^~A~^^^1^8.90^9.50^3^9.00^9.31^~2, 3~^~05/01/2012~ -~04021~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~303~^0.25^10^5.0e-03^~1~^~A~^^^1^0.20^0.31^8^0.23^0.25^~2, 3~^~05/01/2012~ -~04021~^~309~^0.06^10^1.0e-03^~1~^~A~^^^1^0.05^0.06^5^0.05^0.06^~2, 3~^~05/01/2012~ -~04021~^~323~^4.28^6^0.04^~1~^~A~^^^1^0.84^7.52^2^4.08^4.48^~2, 3~^~05/01/2012~ -~04021~^~341~^0.07^6^3.0e-03^~1~^~A~^^^1^0.04^0.10^3^0.05^0.07^~2, 3~^~05/01/2012~ -~04021~^~342~^4.61^6^0.04^~1~^~A~^^^1^2.18^6.84^4^4.47^4.74^~2, 3~^~05/01/2012~ -~04021~^~343~^1.18^6^0.01^~1~^~A~^^^1^0.40^1.92^3^1.13^1.23^~2, 3~^~05/01/2012~ -~04021~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04022~^~203~^0.50^3^0.06^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~204~^4.00^3^0.26^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~205~^27.60^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04022~^~207~^2.90^3^0.09^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~255~^65.00^3^0.14^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~269~^21.87^0^^~4~^~BFZN~^~04015~^^^^^^^^^~04/01/2007~ -~04022~^~303~^0.60^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~309~^0.10^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~323~^0.40^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~418~^0.12^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04023~^~203~^0.83^4^0.19^~6~^~JA~^^^2^0.50^1.38^3^0.22^1.43^~4~^~12/01/2007~ -~04023~^~204~^11.32^4^1.82^~6~^~JA~^^^2^5.85^13.50^3^5.50^17.14^~4~^~12/01/2007~ -~04023~^~205~^24.06^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~207~^3.07^3^4.0e-03^~1~^~A~^^^1^3.06^3.07^2^3.04^3.08^~2, 3~^~02/01/2003~ -~04023~^~209~^4.92^2^^~1~^~A~^^^1^4.79^5.05^1^^^^~02/01/2003~ -~04023~^~210~^0.80^2^^~1~^~A~^^^1^0.73^0.87^1^^^^~02/01/2003~ -~04023~^~211~^9.11^2^^~1~^~A~^^^1^9.02^9.20^1^^^^~02/01/2003~ -~04023~^~212~^6.90^2^^~1~^~A~^^^1^6.12^7.68^1^^^^~02/01/2003~ -~04023~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04023~^~214~^0.50^2^^~1~^~A~^^^1^0.49^0.51^1^^^^~02/01/2003~ -~04023~^~255~^60.73^3^0.13^~1~^~A~^^^1^60.45^60.88^2^60.12^61.32^~2, 3~^~02/01/2003~ -~04023~^~269~^17.31^2^^~1~^~A~^^^1^16.53^18.10^1^^^^~12/01/2007~ -~04023~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04023~^~303~^0.90^4^0.11^~6~^~JA~^^^2^0.74^1.24^2^0.40^1.39^~2, 3~^~12/01/2007~ -~04023~^~309~^0.19^3^0.03^~1~^~A~^^^1^0.15^0.25^2^0.05^0.32^~2, 3~^~02/01/2003~ -~04023~^~323~^1.00^0^^~4~^^^^^^^^^^^~12/01/2007~ -~04023~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04023~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04023~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04025~^~203~^0.96^12^0.06^~1~^~A~^^^1^0.45^1.25^8^0.80^1.10^~2, 3~^~04/01/2012~ -~04025~^~204~^74.85^12^0.13^~1~^~A~^^^1^74.20^76.30^10^74.55^75.14^~2, 3~^~04/01/2012~ -~04025~^~205~^0.57^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~207~^1.98^12^0.04^~1~^~A~^^^1^1.44^2.33^5^1.86^2.08^~2, 3~^~04/01/2012~ -~04025~^~210~^0.48^6^0.16^~1~^~A~^^^1^1.20^1.90^2^0.85^2.24^~2, 3~^~10/01/2013~ -~04025~^~211~^0.04^6^0.03^~1~^~A~^^^1^0.07^0.20^2^8.0e-03^0.27^~1, 2, 3~^~10/01/2013~ -~04025~^~212~^0.05^6^0.02^~1~^~A~^^^1^0.10^0.20^2^0.04^0.25^~2, 3~^~10/01/2013~ -~04025~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~255~^21.65^12^0.30^~1~^~A~^^^1^19.30^23.60^7^20.93^22.35^~2, 3~^~04/01/2012~ -~04025~^~269~^0.57^0^^~4~^~NR~^^^^^^^^^^~10/01/2013~ -~04025~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~303~^0.21^12^5.0e-03^~1~^~A~^^^1^0.18^0.31^10^0.19^0.22^~2, 3~^~04/01/2012~ -~04025~^~309~^0.15^12^7.0e-03^~1~^~A~^^^1^0.13^0.19^6^0.13^0.16^~2, 3~^~04/01/2012~ -~04025~^~323~^3.28^6^0.17^~1~^~A~^^^1^2.60^5.14^4^2.77^3.77^~2, 3~^~04/01/2012~ -~04025~^~341~^0.74^6^0.06^~1~^~A~^^^1^0.55^0.86^2^0.49^0.98^~2, 3~^~04/01/2012~ -~04025~^~342~^35.54^6^1.26^~1~^~A~^^^1^29.67^39.31^3^31.29^39.77^~2, 3~^~04/01/2012~ -~04025~^~343~^10.16^6^0.44^~1~^~A~^^^1^6.43^12.17^2^8.44^11.87^~2, 3~^~04/01/2012~ -~04025~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~418~^0.12^2^^~1~^~A~^^^1^0.12^0.12^^^^^~04/01/2012~ -~04025~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04025~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04026~^~203~^1.10^25^0.00^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~204~^79.40^678^0.00^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~205~^2.70^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04026~^~207~^1.50^25^0.10^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~255~^15.30^25^0.40^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~269~^0.48^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~04026~^~303~^0.50^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~309~^0.12^1^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~323~^22.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~418~^0.26^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~203~^0.30^3^0.25^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~204~^19.20^3^4.90^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~205~^16.00^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04027~^~207~^1.80^3^0.36^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~255~^62.70^3^0.61^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~269~^6.00^0^^~4~^~BFZN~^~04029~^^^^^^^^^~12/01/2006~ -~04027~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~309~^0.11^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~323~^2.00^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04027~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04028~^~203~^2.10^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~204~^5.10^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~205~^11.10^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04028~^~207~^2.10^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~255~^79.60^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~303~^0.50^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~309~^0.25^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~323~^0.40^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~418~^0.23^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~203~^0.10^3^0.10^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~204~^47.70^3^2.69^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~205~^15.80^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04029~^~207~^1.80^3^0.38^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~255~^34.60^3^3.85^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~269~^6.00^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~04029~^~303~^0.01^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~309~^0.11^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~323~^5.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04030~^~203~^0.90^7^0.10^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~204~^34.00^7^1.57^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~205~^22.40^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04030~^~207~^2.00^7^0.14^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~255~^40.80^6^1.14^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~269~^15.18^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2009~ -~04030~^~303~^0.20^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~309~^0.81^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~323~^4.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~418~^0.21^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04031~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04031~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04031~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04031~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~323~^6.13^2^^~1~^~A~^^^2^5.63^7.13^1^^^^~02/01/2010~ -~04031~^~341~^0.44^1^^~1~^~A~^^^1^0.44^0.44^0^^^^~02/01/2010~ -~04031~^~342~^32.30^1^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~04031~^~343~^15.36^1^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~04031~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04034~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04034~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~323~^8.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04037~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04037~^~303~^0.07^3^0.01^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~323~^32.30^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04038~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~309~^0.00^1^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~323~^149.40^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04042~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04042~^~303~^0.03^9^4.0e-03^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~309~^0.01^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~323~^15.69^6^0.39^~1~^~A~^^^1^14.59^17.10^5^14.67^16.70^~4~^~11/01/2002~ -~04042~^~341~^0.46^6^0.03^~1~^~A~^^^1^0.34^0.59^5^0.36^0.55^~4~^~11/01/2002~ -~04042~^~342~^15.91^6^0.74^~1~^~A~^^^1^13.15^18.54^5^13.98^17.82^~4~^~11/01/2002~ -~04042~^~343~^1.37^6^0.16^~1~^~A~^^^1^0.90^1.84^5^0.94^1.79^~4~^~11/01/2002~ -~04042~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04044~^~203~^0.00^3^0.00^~1~^^^^1^0.00^0.00^^^^~2, 3~^~04/01/2007~ -~04044~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~207~^0.00^3^0.00^~11~^~JO~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~255~^0.00^4^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04044~^~303~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04044~^~309~^0.01^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04044~^~323~^8.18^10^0.81^~1~^~A~^^^3^5.03^14.42^4^5.87^10.47^~2, 3~^~03/01/2007~ -~04044~^~341~^0.90^10^0.02^~1~^~A~^^^3^0.41^1.45^7^0.85^0.95^~2, 3~^~03/01/2007~ -~04044~^~342~^64.26^10^2.14^~1~^~A~^^^3^50.35^79.67^6^59.04^69.47^~2, 3~^~03/01/2007~ -~04044~^~343~^21.30^10^1.12^~1~^~A~^^^3^13.88^26.63^6^18.51^24.09^~2, 3~^~03/01/2007~ -~04044~^~344~^0.04^4^0.00^~1~^~A~^^^2^0.00^0.15^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~345~^0.03^4^0.00^~1~^~A~^^^2^0.00^0.13^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~346~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~347~^0.01^4^0.00^~1~^~A~^^^2^0.00^0.03^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04047~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2015~ -~04047~^~204~^99.06^6^0.11^~1~^~A~^^^1^98.61^99.39^5^98.77^99.35^~2, 3~^~03/01/2015~ -~04047~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~207~^0.03^6^4.0e-03^~1~^~A~^^^1^0.03^0.05^5^0.02^0.04^~1, 2, 3~^~03/01/2015~ -~04047~^~255~^0.03^6^0.01^~1~^~A~^^^1^0.01^0.09^5^-7.0e-03^0.06^~1, 2, 3~^~03/01/2015~ -~04047~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04047~^~303~^0.05^4^0.01^~1~^~A~^^^1^0.04^0.09^3^0.01^0.08^~1, 2, 3~^~03/01/2015~ -~04047~^~309~^0.02^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~2, 3~^~03/01/2015~ -~04047~^~323~^0.11^3^0.06^~1~^~A~^^^1^0.00^0.21^2^-0.14^0.37^~1, 2, 3~^~03/01/2015~ -~04047~^~341~^0.60^3^0.05^~1~^~A~^^^1^0.54^0.70^2^0.37^0.82^~2, 3~^~03/01/2015~ -~04047~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~343~^0.18^3^0.05^~1~^~A~^^^1^0.10^0.28^2^-0.06^0.41^~2, 3~^~03/01/2015~ -~04047~^~344~^2.17^3^0.22^~1~^~A~^^^1^1.75^2.51^2^1.20^3.13^~2, 3~^~03/01/2015~ -~04047~^~345~^0.13^3^0.02^~1~^~A~^^^1^0.07^0.17^2^9.0e-03^0.24^~2, 3~^~03/01/2015~ -~04047~^~346~^0.36^3^0.09^~1~^~A~^^^1^0.19^0.50^2^-0.03^0.75^~2, 3~^~03/01/2015~ -~04047~^~347~^0.25^3^0.07^~1~^~A~^^^1^0.10^0.34^2^-0.07^0.58^~2, 3~^~03/01/2015~ -~04047~^~418~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04047~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~04053~^~203~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2005~ -~04053~^~204~^100.00^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~04053~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~207~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~255~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~04053~^~303~^0.56^4^0.08^~1~^~A~^^^1^0.44^0.79^3^0.30^0.81^~2, 3~^~03/01/2005~ -~04053~^~309~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~323~^14.35^6^1.53^~1~^~A~^^^1^10.01^19.19^5^10.40^18.29^~2, 3~^~03/01/2005~ -~04053~^~341~^0.11^6^0.05^~1~^~A~^^^1^0.00^0.26^5^-0.02^0.24^~2, 3~^~03/01/2005~ -~04053~^~342~^0.83^6^0.18^~1~^~A~^^^1^0.35^1.44^5^0.35^1.30^~2, 3~^~03/01/2005~ -~04053~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2005~ -~04053~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04055~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~204~^100.00^0^^~1~^^^^^^^^^^^~01/01/2003~ -~04055~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04055~^~303~^0.01^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~309~^0.00^0^^~7~^^^^^^^^^^^~04/01/1986~ -~04055~^~323~^15.94^6^3.16^~6~^~JA~^^^2^12.78^19.10^1^-24.21^56.09^~4~^~01/01/2003~ -~04055~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~04055~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~04055~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~04055~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04058~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04058~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~323~^1.40^5^0.09^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04060~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04060~^~303~^0.03^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~323~^41.08^8^^~6~^~JA~^^^2^33.24^44.90^^^^~2~^~11/01/2002~ -~04060~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04073~^~203~^0.90^34^0.07^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~204~^80.50^572^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~205~^0.90^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04073~^~207~^2.00^61^0.03^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~255~^15.70^93^0.19^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04073~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~323~^3.10^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~418~^0.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04114~^~203~^0.41^12^0.01^~1~^~A~^^^1^0.37^0.44^10^0.38^0.43^~2, 3~^~05/01/2012~ -~04114~^~204~^21.12^12^0.14^~1~^~A~^^^1^18.23^24.12^8^20.78^21.46^~2, 3~^~05/01/2012~ -~04114~^~205~^12.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~207~^2.95^12^0.03^~1~^~A~^^^1^2.75^3.31^5^2.86^3.03^~2, 3~^~05/01/2012~ -~04114~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04114~^~210~^0.53^6^0.16^~1~^~A~^^^1^0.10^1.30^3^0.01^1.03^~2, 3~^~05/01/2012~ -~04114~^~211~^4.43^6^0.09^~1~^~A~^^^1^2.60^5.90^3^4.11^4.73^~2, 3~^~05/01/2012~ -~04114~^~212~^5.82^6^0.15^~1~^~A~^^^1^3.40^7.70^3^5.32^6.32^~2, 3~^~05/01/2012~ -~04114~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~255~^63.40^12^0.12^~1~^~A~^^^1^57.64^69.77^10^63.12^63.68^~2, 3~^~05/01/2012~ -~04114~^~269~^10.77^6^0.09^~1~^~A~^^^1^7.30^13.90^3^10.47^11.07^~2, 3~^~05/01/2012~ -~04114~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~303~^0.26^12^0.01^~1~^~A~^^^1^0.20^0.34^7^0.22^0.28^~2, 3~^~05/01/2012~ -~04114~^~309~^0.07^12^3.0e-03^~1~^~A~^^^1^0.05^0.09^7^0.06^0.08^~2, 3~^~05/01/2012~ -~04114~^~323~^2.19^6^0.07^~1~^~A~^^^1^1.85^2.85^2^1.87^2.49^~2, 3~^~05/01/2012~ -~04114~^~341~^0.20^6^0.01^~1~^~A~^^^1^0.14^0.25^3^0.16^0.23^~2, 3~^~05/01/2012~ -~04114~^~342~^14.11^6^0.24^~1~^~A~^^^1^10.92^16.73^2^13.22^14.99^~2, 3~^~05/01/2012~ -~04114~^~343~^3.92^6^0.03^~1~^~A~^^^1^2.36^5.32^4^3.83^4.00^~2, 3~^~05/01/2012~ -~04114~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04120~^~203~^0.87^17^0.13^~1~^~A~^^^1^0.37^1.69^16^0.59^1.15^~2, 3~^~10/01/2016~ -~04120~^~204~^39.07^17^0.67^~1~^~A~^^^1^35.56^42.73^16^37.63^40.50^~2, 3~^~10/01/2016~ -~04120~^~205~^18.79^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~207~^1.92^17^0.10^~1~^~A~^^^1^1.30^2.53^16^1.69^2.14^~2, 3~^~10/01/2016~ -~04120~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04120~^~210~^4.00^9^1.54^~1~^~A~^^^1^0.00^9.89^8^0.44^7.55^~1, 2, 3~^~10/01/2016~ -~04120~^~211~^6.56^9^1.14^~1~^~A~^^^1^2.00^9.62^8^3.91^9.20^~2, 3~^~10/01/2016~ -~04120~^~212~^6.15^9^1.00^~1~^~A~^^^1^2.05^8.84^8^3.82^8.47^~2, 3~^~10/01/2016~ -~04120~^~213~^0.73^9^0.36^~1~^~A~^^^1^0.00^2.25^8^-0.11^1.56^~1, 2, 3~^~10/01/2016~ -~04120~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~255~^39.34^17^1.53^~1~^~A~^^^1^24.86^46.76^16^36.09^42.59^~2, 3~^~10/01/2016~ -~04120~^~269~^17.43^9^0.91^~1~^~A~^^^1^13.94^20.57^8^15.33^19.53^~2, 3~^~10/01/2016~ -~04120~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~303~^0.32^17^0.04^~1~^~A~^^^1^0.17^0.78^16^0.23^0.41^~2, 3~^~10/01/2016~ -~04120~^~309~^0.12^17^0.01^~1~^~A~^^^1^0.07^0.21^16^0.09^0.14^~2, 3~^~10/01/2016~ -~04120~^~323~^5.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04120~^~418~^0.14^0^^~4~^^^^^^^^^^^~02/01/2003~ -~04120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04128~^~203~^0.23^5^0.00^~1~^~A~^^^1^0.23^0.23^^^^~2, 3~^~12/01/2016~ -~04128~^~204~^37.98^13^0.49^~6~^~JA~^^^2^35.58^40.80^11^36.88^39.07^~2, 3~^~12/01/2016~ -~04128~^~205~^1.52^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~207~^1.60^5^0.01^~1~^~A~^^^1^1.58^1.63^4^1.56^1.62^~2, 3~^~12/01/2016~ -~04128~^~209~^1.97^3^0.08^~1~^~A~^^^1^1.80^2.10^2^1.58^2.34^~2, 3~^~12/01/2016~ -~04128~^~255~^58.67^5^0.65^~1~^~A~^^^1^56.10^59.62^4^56.85^60.49^~2, 3~^~12/01/2016~ -~04128~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04128~^~303~^0.04^5^0.00^~1~^~A~^^^1^0.04^0.04^4^0.03^0.03^~1, 2, 3~^~12/01/2016~ -~04128~^~309~^0.02^5^8.0e-03^~1~^~A~^^^1^0.01^0.05^4^-6.0e-03^0.03^~1, 2, 3~^~03/01/2007~ -~04128~^~323~^13.45^13^3.37^~1~^~A~^^^2^1.88^41.92^8^5.72^21.17^~2, 3~^~03/01/2007~ -~04128~^~418~^0.06^1^^~1~^~A~^^^^^^^^^^~06/01/1979~ -~04128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04133~^~203~^0.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~204~^70.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04133~^~207~^1.80^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~255~^24.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~303~^0.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~323~^8.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~204~^50.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~205~^2.50^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04135~^~207~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~255~^47.40^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~269~^2.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04135~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~323~^4.61^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~04135~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04141~^~203~^0.77^5^0.13^~1~^~A~^^^1^0.40^0.99^4^0.39^1.13^~2, 3~^~02/01/2003~ -~04141~^~204~^44.81^5^2.44^~1~^~A~^^^1^38.70^49.66^4^38.00^51.60^~2, 3~^~02/01/2003~ -~04141~^~205~^15.58^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~207~^2.29^5^0.11^~1~^~A~^^^1^1.82^2.46^4^1.96^2.62^~2, 3~^~02/01/2003~ -~04141~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~210~^3.89^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~211~^6.71^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~212~^5.36^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~255~^36.56^5^2.49^~1~^~A~^^^1^32.18^44.97^4^29.64^43.47^~2, 3~^~02/01/2003~ -~04141~^~269~^15.95^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04141~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~303~^0.80^5^0.08^~1~^~A~^^^1^0.57^1.02^4^0.56^1.02^~2, 3~^~02/01/2003~ -~04141~^~309~^0.29^5^0.09^~1~^~A~^^^1^0.15^0.68^4^0.02^0.56^~2, 3~^~02/01/2003~ -~04141~^~323~^4.12^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04141~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~203~^0.58^3^0.04^~1~^~A~^^^1^0.49^0.63^2^0.39^0.77^~2, 3~^~02/01/2003~ -~04142~^~204~^13.46^3^1.31^~1~^~A~^^^1^10.94^15.36^2^7.81^19.10^~2, 3~^~02/01/2003~ -~04142~^~205~^29.28^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~207~^2.40^3^0.02^~1~^~A~^^^1^2.36^2.43^2^2.31^2.49^~2, 3~^~02/01/2003~ -~04142~^~209~^0.86^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~211~^15.66^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~212~^12.49^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~214~^0.29^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~255~^54.28^3^0.08^~1~^~A~^^^1^54.17^54.44^2^53.92^54.62^~2, 3~^~02/01/2003~ -~04142~^~269~^28.45^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~ -~04142~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~303~^0.87^3^0.06^~1~^~A~^^^1^0.74^0.93^2^0.59^1.14^~2, 3~^~02/01/2003~ -~04142~^~309~^0.20^3^0.03^~1~^~A~^^^1^0.14^0.25^2^0.05^0.34^~2, 3~^~02/01/2003~ -~04142~^~323~^2.86^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~203~^0.38^6^0.03^~1~^~A~^^^1^0.30^0.52^5^0.29^0.47^~2, 3~^~02/01/2003~ -~04143~^~204~^28.37^6^0.73^~1~^~A~^^^1^26.24^30.38^5^26.48^30.24^~2, 3~^~02/01/2003~ -~04143~^~205~^10.43^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~207~^4.42^6^0.13^~1~^~A~^^^1^4.10^4.90^5^4.06^4.77^~2, 3~^~02/01/2003~ -~04143~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04143~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04143~^~211~^4.68^2^^~1~^~A~^^^1^4.52^4.85^1^^^^~02/01/2003~ -~04143~^~212~^3.64^2^^~1~^~A~^^^1^3.57^3.70^1^^^^~02/01/2003~ -~04143~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04143~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04143~^~255~^56.40^6^2.84^~1~^~A~^^^1^42.53^60.14^5^49.09^63.70^~2, 3~^~02/01/2003~ -~04143~^~269~^8.32^2^^~1~^~A~^^^1^8.09^8.55^1^^^^~02/01/2003~ -~04143~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04143~^~303~^0.63^6^0.08^~1~^~A~^^^1^0.39^0.90^5^0.41^0.83^~2, 3~^~02/01/2003~ -~04143~^~309~^0.13^6^0.02^~1~^~A~^^^1^0.07^0.23^5^0.06^0.19^~2, 3~^~02/01/2003~ -~04143~^~323~^2.61^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04143~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04144~^~203~^0.47^3^0.04^~1~^~A~^^^1^0.38^0.53^2^0.26^0.66^~2, 3~^~02/01/2003~ -~04144~^~204~^6.38^3^1.37^~1~^~A~^^^1^4.99^9.13^2^0.46^12.30^~2, 3~^~02/01/2003~ -~04144~^~205~^4.57^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~207~^3.90^3^0.08^~1~^~A~^^^1^3.75^4.05^2^3.52^4.27^~2, 3~^~02/01/2003~ -~04144~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~211~^2.31^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~212~^2.24^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~255~^84.68^3^0.15^~1~^~A~^^^1^84.37^84.91^2^83.99^85.35^~2, 3~^~02/01/2003~ -~04144~^~269~^4.55^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~303~^0.65^3^0.06^~1~^~A~^^^1^0.52^0.75^2^0.35^0.93^~2, 3~^~02/01/2003~ -~04144~^~309~^0.19^3^7.0e-03^~1~^~A~^^^1^0.18^0.20^2^0.15^0.22^~2, 3~^~02/01/2003~ -~04144~^~323~^0.59^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04144~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04145~^~203~^1.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~204~^79.40^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~205~^2.70^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04145~^~207~^0.10^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04145~^~255~^16.70^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04145~^~303~^0.50^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~203~^0.10^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~204~^70.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~ -~04146~^~207~^1.80^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~255~^24.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~303~^0.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04367~^~203~^0.20^3^7.0e-03^~1~^~A~^^^1^0.18^0.21^2^0.16^0.22^~2, 3~^~03/01/2003~ -~04367~^~204~^0.27^3^0.06^~1~^~A~^^^1^0.14^0.33^2^-0.01^0.54^~2, 3~^~03/01/2003~ -~04367~^~205~^32.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~207~^2.35^3^0.04^~1~^~A~^^^1^2.28^2.43^2^2.17^2.52^~2, 3~^~03/01/2003~ -~04367~^~209~^14.48^2^^~1~^~A~^^^1^12.89^16.08^1^^^^~03/01/2003~ -~04367~^~210~^5.50^2^^~1~^~A~^^^1^5.31^5.69^1^^^^~03/01/2003~ -~04367~^~211~^4.68^2^^~1~^~A~^^^1^4.53^4.84^1^^^^~03/01/2003~ -~04367~^~212~^5.05^2^^~1~^~A~^^^1^4.82^5.28^1^^^^~03/01/2003~ -~04367~^~214~^1.21^2^^~1~^~A~^^^1^1.15^1.27^1^^^^~03/01/2003~ -~04367~^~255~^65.04^3^0.40^~1~^~A~^^^1^64.48^65.82^2^63.31^66.77^~2, 3~^~03/01/2003~ -~04367~^~269~^16.45^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~04367~^~303~^0.58^3^0.10^~1~^~A~^^^1^0.39^0.74^2^0.14^1.01^~2, 3~^~03/01/2003~ -~04367~^~309~^0.10^3^6.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.07^0.12^~2, 3~^~03/01/2003~ -~04367~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04501~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~205~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04501~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~323~^1.80^6^0.31^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04501~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04502~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04502~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~323~^35.30^25^3.37^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04502~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04506~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04506~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~323~^41.08^8^^~6~^~JA~^^^2^33.24^44.90^^^^~2~^~11/01/2002~ -~04506~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04506~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04510~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~269~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~ -~04510~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~323~^34.10^3^6.30^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04510~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04511~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04511~^~269~^0.00^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~ -~04511~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~323~^34.10^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04511~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04513~^~203~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04513~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04513~^~303~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~309~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~323~^3.81^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~04513~^~418~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04513~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04514~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04514~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~323~^11.40^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04515~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~323~^3.80^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04516~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~323~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04517~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~323~^28.80^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~204~^100.00^0^^~1~^^^^^^^^^^^~04/01/2004~ -~04518~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04518~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~323~^14.30^46^1.04^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04518~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04528~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04528~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~323~^0.40^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04528~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~04528~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~04529~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04529~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~323~^39.20^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04529~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04530~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04530~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~323~^4.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~203~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~207~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~ -~04531~^~303~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~309~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04531~^~418~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04531~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04532~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04532~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~323~^47.20^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04534~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~323~^19.10^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04536~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~323~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04539~^~203~^1.37^2^^~9~^~MC~^^^1^1.08^1.65^1^^^^~12/01/2007~ -~04539~^~204~^51.10^2^^~9~^~MC~^^^1^50.98^51.22^1^^^^~12/01/2007~ -~04539~^~205~^4.77^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~ -~04539~^~207~^3.20^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~255~^39.71^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~269~^3.48^2^^~9~^~MC~^^^1^3.20^3.76^1^^^^~12/01/2007~ -~04539~^~303~^0.09^2^^~9~^~MC~^^^1^0.05^0.13^1^^^^~12/01/2007~ -~04539~^~309~^0.21^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~323~^4.28^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~418~^0.27^0^^~4~^^^^^^^^^^^~06/01/2013~ -~04539~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04541~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04541~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~323~^0.60^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~204~^99.80^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~255~^0.20^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04542~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~323~^2.70^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04542~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04543~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04543~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~323~^12.10^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04543~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04544~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~269~^0.00^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~ -~04544~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~323~^1.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04544~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04545~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04545~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~323~^41.08^8^^~6~^~JA~^^^2^33.24^44.90^^^^~2~^~05/01/2006~ -~04545~^~341~^1.69^2^^~1~^~A~^^^1^1.53^1.85^^^^^~11/01/2002~ -~04545~^~342~^9.09^2^^~1~^~A~^^^1^8.83^9.35^^^^^~11/01/2002~ -~04545~^~343~^2.04^2^^~1~^~A~^^^1^1.80^2.27^^^^^~11/01/2002~ -~04545~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~11/01/2002~ -~04545~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~11/01/2002~ -~04545~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~11/01/2002~ -~04545~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~11/01/2002~ -~04545~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04545~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04546~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~04546~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~323~^6.13^0^^~4~^~O~^^^^^^^^^^~05/01/2010~ -~04546~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04546~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04548~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04548~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04548~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04548~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~323~^6.13^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04548~^~341~^0.44^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04548~^~342~^32.30^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04548~^~343~^15.36^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04548~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04548~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04549~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~323~^1.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~323~^4.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04551~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04551~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04551~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~323~^1.95^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04551~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04551~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04554~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04554~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04554~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04554~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~323~^6.13^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~04554~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~4~^~11/01/2002~ -~04554~^~342~^32.30^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04554~^~343~^15.36^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~ -~04554~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04554~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04556~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~323~^19.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04560~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04560~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04560~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04560~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04560~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04560~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04560~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~573~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04560~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04570~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~323~^19.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04572~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~323~^0.20^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~204~^100.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~255~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04573~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~323~^0.60^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~204~^99.80^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~255~^0.20^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04575~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~323~^2.90^0^^~4~^^^^^^^^^^^~08/01/2003~ -~04575~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04575~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04576~^~203~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~204~^99.80^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~207~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~255~^0.20^3^0.02^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~323~^2.70^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~203~^0.00^4^0.00^~1~^^^^1^0.00^0.00^^^^~2, 3~^~04/01/2007~ -~04582~^~204~^100.00^8^0.00^~11~^~JO~^^^3^100.00^100.00^^^^~2, 3~^~03/01/2007~ -~04582~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04582~^~207~^0.00^4^0.00^~1~^^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~04582~^~255~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04582~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~323~^17.46^10^0.42^~1~^~A~^^^3^13.66^20.99^6^16.43^18.48^~2, 3~^~03/01/2007~ -~04582~^~341~^0.01^11^0.00^~1~^~A~^^^3^0.00^0.11^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~342~^27.34^11^2.72^~1~^~A~^^^3^10.39^42.16^6^20.59^34.08^~2, 3~^~03/01/2007~ -~04582~^~343~^0.99^11^0.07^~1~^~A~^^^3^0.49^1.27^8^0.81^1.16^~2, 3~^~03/01/2007~ -~04582~^~344~^0.03^5^0.00^~1~^~A~^^^2^0.00^0.15^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~347~^0.01^5^0.00^~1~^~A~^^^2^0.00^0.03^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~418~^0.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~04582~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04582~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04583~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04584~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~323~^41.08^8^^~6~^~JA~^^^2^33.24^44.90^^^^~2~^~11/01/2002~ -~04584~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04584~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04585~^~203~^0.31^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~204~^80.32^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~205~^0.77^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~04585~^~207~^1.53^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~255~^17.07^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~04585~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~323~^3.88^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~341~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~342~^36.88^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~343~^14.45^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04585~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04586~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04586~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04586~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04586~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04586~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04586~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04586~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04586~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~573~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04586~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04587~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~204~^100.00^6^0.00^~1~^~A~^^^1^100.00^100.00^5^100.00^100.00^~4~^~11/01/2002~ -~04587~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~255~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~04587~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04587~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04587~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04587~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04587~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04587~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~573~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04588~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~04588~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~323~^14.40^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~04588~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04588~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04589~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~203~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~204~^100.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~205~^0.00^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~207~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~255~^0.00^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~309~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~418~^0.00^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04600~^~203~^1.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~204~^40.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~205~^1.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~207~^2.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~04600~^~255~^56.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~269~^0.00^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~04600~^~303~^0.04^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~309~^0.01^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~323~^4.47^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~04600~^~418~^0.09^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04600~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04601~^~203~^3.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~204~^55.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~205~^0.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04601~^~255~^42.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04601~^~303~^1.09^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~309~^0.26^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~323~^1.58^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~ -~04601~^~418~^0.13^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04601~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04602~^~203~^3.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~204~^55.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~205~^0.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~207~^0.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04602~^~255~^43.20^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04602~^~303~^1.09^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~309~^0.26^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~323~^1.58^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~ -~04602~^~418~^0.13^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04602~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04609~^~203~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~204~^99.50^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~207~^0.50^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~255~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~04609~^~303~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~309~^0.11^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~323~^0.60^0^^~4~^~BFFN~^~04002~^^^^^^^^^~01/01/2003~ -~04609~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04609~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04610~^~203~^0.16^10^0.01^~1~^~A~^^^1^0.09^0.25^9^0.12^0.19^~2, 3~^~03/01/2007~ -~04610~^~204~^80.71^10^0.22^~1~^~A~^^^1^79.96^82.26^9^80.20^81.21^~2, 3~^~03/01/2007~ -~04610~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04610~^~207~^1.92^10^0.08^~1~^~A~^^^1^1.27^2.22^9^1.72^2.10^~2, 3~^~03/01/2007~ -~04610~^~255~^16.52^10^0.26^~1~^~A~^^^1^14.77^17.26^9^15.91^17.11^~2, 3~^~03/01/2007~ -~04610~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2009~ -~04610~^~303~^0.06^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~323~^9.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04610~^~418~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04610~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~04611~^~203~^0.22^10^0.03^~1~^~A~^^^1^0.09^0.56^3^0.11^0.32^~2, 3~^~03/01/2007~ -~04611~^~204~^80.17^10^0.25^~1~^~A~^^^1^79.37^81.27^2^79.24^81.10^~2, 3~^~03/01/2007~ -~04611~^~205~^0.75^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04611~^~207~^1.78^10^0.08^~1~^~A~^^^1^1.31^2.32^2^1.46^2.10^~2, 3~^~03/01/2007~ -~04611~^~255~^17.07^10^0.28^~1~^~A~^^^1^15.16^18.09^3^16.09^18.04^~2, 3~^~03/01/2007~ -~04611~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04611~^~303~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~04611~^~309~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~04611~^~323~^15.43^3^0.41^~1~^~A~^^^1^3.41^26.63^1^10.16^20.70^~2, 3~^~03/01/2007~ -~04611~^~341~^0.16^3^0.01^~1~^~A~^^^1^0.02^0.33^1^-0.03^0.35^~2, 3~^~03/01/2007~ -~04611~^~342~^26.98^3^2.39^~1~^~A~^^^1^19.57^39.19^1^-3.48^57.44^~2, 3~^~03/01/2007~ -~04611~^~343~^6.65^3^0.51^~1~^~A~^^^1^0.68^13.66^1^0.11^13.19^~2, 3~^~03/01/2007~ -~04611~^~344~^0.04^3^0.00^~1~^~A~^^^1^0.00^0.08^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~346~^0.05^3^0.00^~1~^~A~^^^1^0.00^0.09^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~418~^0.08^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04611~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04611~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04612~^~203~^0.12^4^8.0e-03^~1~^~A~^^^1^0.09^0.12^3^0.09^0.14^~2, 3~^~03/01/2007~ -~04612~^~204~^60.39^4^0.54^~1~^~A~^^^1^59.15^61.78^3^58.67^62.11^~2, 3~^~03/01/2007~ -~04612~^~205~^0.69^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~207~^1.84^4^0.02^~1~^~A~^^^1^1.78^1.88^3^1.77^1.91^~2, 3~^~03/01/2007~ -~04612~^~255~^36.95^4^0.46^~1~^~A~^^^1^35.76^38.01^3^35.47^38.43^~2, 3~^~03/01/2007~ -~04612~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04612~^~303~^0.00^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04612~^~309~^0.00^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04612~^~323~^5.00^0^^~4~^^^^^^^^^^^~03/01/2003~ -~04612~^~418~^0.07^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04612~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04613~^~203~^0.17^16^0.03^~1~^~A~^^^1^0.00^0.44^15^0.10^0.23^~2, 3~^~03/01/2007~ -~04613~^~204~^59.81^16^0.13^~1~^~A~^^^1^58.72^60.76^15^59.53^60.08^~2, 3~^~03/01/2007~ -~04613~^~205~^0.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~207~^1.59^16^0.04^~1~^~A~^^^1^1.33^1.96^15^1.49^1.68^~2, 3~^~03/01/2007~ -~04613~^~255~^37.58^16^0.17^~1~^~A~^^^1^36.44^39.23^15^37.20^37.95^~2, 3~^~03/01/2007~ -~04613~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~ -~04613~^~303~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~323~^21.12^6^5.26^~1~^~A~^^^1^3.94^30.72^5^7.58^34.65^~2, 3~^~03/01/2007~ -~04613~^~341~^0.23^6^8.0e-03^~1~^~A~^^^1^0.21^0.26^5^0.21^0.25^~2, 3~^~03/01/2007~ -~04613~^~342~^21.98^6^3.38^~1~^~A~^^^1^15.45^33.25^5^13.27^30.68^~2, 3~^~03/01/2007~ -~04613~^~343~^6.92^6^1.21^~1~^~A~^^^1^4.56^11.22^5^3.80^10.04^~2, 3~^~03/01/2007~ -~04613~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~418~^10.80^4^1.85^~1~^~A~^^^1^7.50^16.10^3^4.88^16.71^~2, 3~^~03/01/2007~ -~04613~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04613~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04614~^~203~^0.60^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~204~^59.17^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~04614~^~207~^1.70^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~255~^38.68^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~303~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~309~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~323~^5.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~418~^0.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04614~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04615~^~203~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~04/01/2006~ -~04615~^~204~^99.97^0^^~4~^~O~^^^^^^^^^^~05/01/2010~ -~04615~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~04615~^~207~^0.03^7^0.02^~1~^~A~^^^2^0.00^0.17^5^-0.02^0.08^~1, 2, 3~^~04/01/2006~ -~04615~^~255~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~269~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~303~^0.07^6^0.01^~1~^~A~^^^1^0.02^0.13^5^0.02^0.10^~2, 3~^~04/01/2006~ -~04615~^~309~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2006~ -~04615~^~573~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04615~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04617~^~203~^0.16^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~204~^80.71^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~205~^0.70^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~207~^1.92^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~255~^16.52^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~269~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~303~^0.06^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~309~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~323~^9.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~418~^0.10^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~573~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~578~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04618~^~203~^0.22^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~204~^80.17^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~205~^0.75^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~207~^1.78^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~255~^17.07^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~269~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~303~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~309~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~323~^15.43^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~418~^0.08^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~573~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~578~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04620~^~203~^0.17^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~204~^59.81^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~205~^0.86^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~207~^1.59^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~255~^37.58^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~269~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~303~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~309~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~323~^21.12^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~418~^10.80^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~573~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~578~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04624~^~203~^1.50^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~204~^3.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~205~^2.50^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~04624~^~207~^2.00^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~04624~^~255~^91.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04624~^~303~^0.03^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~309~^0.14^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~323~^5.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~04624~^~418~^0.11^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04624~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04626~^~203~^0.30^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~204~^70.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~205~^0.50^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~207~^2.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~255~^28.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04626~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04626~^~303~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~309~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~323~^5.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~04626~^~418~^0.06^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04626~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04627~^~203~^2.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~204~^35.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~04627~^~207~^2.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~255~^59.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~ -~04627~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04627~^~303~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~309~^0.24^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~323~^5.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~04627~^~418~^0.15^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04627~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04628~^~203~^0.16^10^0.01^~1~^~A~^^^1^0.09^0.25^9^0.12^0.19^~2, 3~^~03/01/2007~ -~04628~^~204~^80.71^10^0.22^~1~^~A~^^^1^79.96^82.26^9^80.20^81.21^~2, 3~^~03/01/2007~ -~04628~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~207~^1.92^10^0.08^~1~^~A~^^^1^1.27^2.22^9^1.72^2.10^~2, 3~^~03/01/2007~ -~04628~^~255~^16.52^10^0.26^~1~^~A~^^^1^14.77^17.26^9^15.91^17.11^~2, 3~^~03/01/2007~ -~04628~^~303~^0.12^8^0.01^~1~^~A~^^^1^0.06^0.20^7^0.08^0.15^~2, 3~^~02/01/2001~ -~04628~^~309~^0.11^8^0.02^~1~^~A~^^^1^0.05^0.22^7^0.05^0.15^~2, 3~^~02/01/2001~ -~04628~^~323~^5.23^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~341~^0.36^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~342~^43.79^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~343~^15.28^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04628~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04628~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04628~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04628~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04629~^~203~^0.26^14^0.04^~1~^~A~^^^1^0.12^0.56^13^0.16^0.35^~2, 3~^~03/01/2007~ -~04629~^~204~^70.22^14^0.31^~1~^~A~^^^1^68.70^72.64^13^69.54^70.89^~2, 3~^~03/01/2007~ -~04629~^~205~^1.53^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~207~^1.76^14^0.06^~1~^~A~^^^1^1.30^2.03^13^1.63^1.88^~2, 3~^~03/01/2007~ -~04629~^~255~^26.23^14^0.49^~1~^~A~^^^1^21.39^28.10^13^25.15^27.30^~2, 3~^~03/01/2007~ -~04629~^~303~^0.12^10^4.0e-03^~1~^~A~^^^1^0.11^0.12^1^0.06^0.17^~4~^~02/01/2001~ -~04629~^~309~^0.06^10^0.01^~1~^~A~^^^1^0.04^0.08^1^-0.17^0.30^~4~^~02/01/2001~ -~04629~^~323~^5.59^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04629~^~341~^0.32^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04629~^~342~^34.97^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04629~^~343~^10.92^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04629~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04629~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04629~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04629~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04630~^~203~^0.27^18^0.03^~1~^~A~^^^1^0.23^0.94^17^0.18^0.35^~2, 3~^~11/01/2016~ -~04630~^~204~^44.46^22^0.59^~6~^~JA~^^^2^38.72^48.70^20^43.20^45.70^~2, 3~^~11/01/2016~ -~04630~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~207~^1.82^18^0.06^~1~^~A~^^^1^1.35^2.28^17^1.67^1.96^~2, 3~^~11/01/2016~ -~04630~^~255~^54.38^18^0.69^~1~^~A~^^^1^51.08^58.66^17^52.90^55.84^~2, 3~^~11/01/2016~ -~04630~^~303~^0.06^18^0.01^~1~^~A~^^^1^0.04^0.26^17^0.02^0.08^~1, 2, 3~^~11/01/2016~ -~04630~^~309~^0.02^18^3.0e-03^~1~^~A~^^^1^0.01^0.05^17^0.01^0.02^~1, 2, 3~^~11/01/2016~ -~04630~^~323~^3.94^6^0.04^~1~^~A~^^^1^3.79^4.11^5^3.81^4.05^~2, 3~^~03/01/2002~ -~04631~^~203~^0.10^2^^~1~^~A~^^^1^0.00^0.20^1^^^~1~^~04/01/2002~ -~04631~^~204~^3.04^2^^~1~^~A~^^^1^3.01^3.07^1^^^^~04/01/2002~ -~04631~^~205~^4.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~207~^1.83^2^^~1~^~A~^^^1^1.83^1.84^1^^^^~04/01/2002~ -~04631~^~255~^90.69^2^^~1~^~A~^^^1^90.65^90.73^1^^^^~04/01/2002~ -~04631~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~04631~^~303~^0.08^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~04/01/2002~ -~04631~^~309~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^^~04/01/2002~ -~04631~^~323~^0.52^2^^~1~^~A~^^^1^0.50^0.54^1^^^^~04/01/2002~ -~04631~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~04631~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04631~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04633~^~203~^0.00^0^^~8~^^^^^^^^^^^~12/01/2006~ -~04633~^~204~^19.50^0^^~1~^^^^^^^^^^^~12/01/2006~ -~04633~^~205~^0.40^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~04633~^~207~^1.30^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~04633~^~255~^78.80^0^^~1~^^^^^^^^^^^~12/01/2006~ -~04633~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~04633~^~303~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~309~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~323~^4.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~04633~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04633~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04634~^~203~^0.00^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~204~^19.50^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~205~^0.40^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~207~^1.30^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~255~^78.80^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~269~^0.00^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~303~^0.00^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~309~^0.00^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~323~^4.50^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~418~^0.00^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04634~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04635~^~203~^0.55^3^0.07^~1~^~A~^^^1^0.46^0.70^2^0.22^0.87^~2, 3~^~02/01/2003~ -~04635~^~204~^1.45^3^0.04^~1~^~A~^^^1^1.35^1.50^2^1.23^1.66^~2, 3~^~02/01/2003~ -~04635~^~205~^29.27^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~207~^2.59^3^0.02^~1~^~A~^^^1^2.56^2.65^2^2.46^2.71^~2, 3~^~02/01/2003~ -~04635~^~209~^11.75^2^^~1~^~A~^^^1^11.01^12.48^1^^^^~02/01/2003~ -~04635~^~210~^2.72^2^^~1~^~A~^^^1^2.56^2.88^1^^^^~02/01/2003~ -~04635~^~211~^6.42^2^^~1~^~A~^^^1^6.27^6.57^1^^^^~02/01/2003~ -~04635~^~212~^6.58^2^^~1~^~A~^^^1^6.51^6.65^1^^^^~02/01/2003~ -~04635~^~213~^0.15^2^^~1~^~A~^^^1^0.00^0.30^1^^^~1~^~02/01/2003~ -~04635~^~214~^0.96^2^^~1~^~A~^^^1^0.96^0.96^1^^^^~02/01/2003~ -~04635~^~255~^66.14^3^0.07^~1~^~A~^^^1^66.01^66.27^2^65.82^66.46^~2, 3~^~02/01/2003~ -~04635~^~269~^16.83^2^^~1~^~A~^^^1^16.30^17.35^1^^^^~04/01/2007~ -~04635~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04635~^~303~^0.28^3^0.02^~1~^~A~^^^1^0.26^0.33^2^0.19^0.37^~2, 3~^~02/01/2003~ -~04635~^~309~^0.09^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.02^0.15^~2, 3~^~02/01/2003~ -~04635~^~323~^0.75^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04635~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04635~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04635~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04636~^~203~^0.97^3^0.17^~1~^~A~^^^1^0.61^1.19^2^0.19^1.73^~2, 3~^~02/01/2003~ -~04636~^~204~^0.87^3^0.05^~1~^~A~^^^1^0.78^0.95^2^0.64^1.08^~2, 3~^~02/01/2003~ -~04636~^~205~^8.75^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~207~^3.47^3^0.08^~1~^~A~^^^1^3.31^3.62^2^3.08^3.85^~2, 3~^~02/01/2003~ -~04636~^~210~^0.29^2^^~1~^~A~^^^1^0.28^0.29^1^^^^~02/01/2003~ -~04636~^~211~^2.82^2^^~1~^~A~^^^1^2.49^3.14^1^^^^~02/01/2003~ -~04636~^~212~^5.59^2^^~1~^~A~^^^1^5.14^6.05^1^^^^~02/01/2003~ -~04636~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04636~^~214~^0.15^2^^~1~^~A~^^^1^0.00^0.30^1^^^~1~^~02/01/2003~ -~04636~^~255~^85.95^3^0.92^~1~^~A~^^^1^84.37^87.57^2^81.96^89.92^~2, 3~^~02/01/2003~ -~04636~^~269~^8.85^2^^~1~^~A~^^^1^7.91^9.78^1^^^^~04/01/2007~ -~04636~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~04636~^~303~^0.40^3^0.07^~1~^~A~^^^1^0.33^0.54^2^0.09^0.69^~2, 3~^~02/01/2003~ -~04636~^~309~^0.36^3^0.10^~1~^~A~^^^1^0.16^0.53^2^-0.10^0.81^~2, 3~^~02/01/2003~ -~04636~^~323~^0.76^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~04636~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04636~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04638~^~203~^0.25^3^0.05^~1~^~A~^^^1^0.15^0.33^2^0.02^0.47^~2, 3~^~02/01/2003~ -~04638~^~204~^1.92^3^0.32^~1~^~A~^^^1^1.39^2.52^2^0.50^3.33^~2, 3~^~02/01/2003~ -~04638~^~205~^26.51^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04638~^~207~^3.00^3^0.17^~1~^~A~^^^1^2.68^3.29^2^2.23^3.75^~2, 3~^~02/01/2003~ -~04638~^~209~^4.99^3^0.48^~1~^~A~^^^1^4.41^5.95^2^2.92^7.06^~2, 3~^~02/01/2003~ -~04638~^~210~^1.57^3^0.74^~1~^~A~^^^1^0.07^2.41^2^-1.65^4.78^~1, 2, 3~^~02/01/2003~ -~04638~^~211~^1.91^3^0.47^~1~^~A~^^^1^1.12^2.77^2^-0.14^3.96^~2, 3~^~02/01/2003~ -~04638~^~212~^0.42^3^0.18^~1~^~A~^^^1^0.07^0.71^2^-0.38^1.22^~1, 2, 3~^~02/01/2003~ -~04638~^~213~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2003~ -~04638~^~214~^1.38^3^0.67^~1~^~A~^^^1^0.07^2.31^2^-1.50^4.25^~1, 2, 3~^~02/01/2003~ -~04638~^~255~^68.33^3^3.89^~1~^~A~^^^1^63.23^75.99^2^51.55^85.10^~2, 3~^~02/01/2003~ -~04638~^~269~^5.35^3^0.91^~1~^~A~^^^1^4.16^7.15^2^1.40^9.29^~2, 3~^~02/01/2003~ -~04638~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04638~^~303~^1.05^3^0.18^~1~^~A~^^^1^0.70^1.32^2^0.26^1.83^~2, 3~^~02/01/2003~ -~04638~^~309~^0.40^2^^~1~^~A~^^^1^0.38^0.41^1^^^^~02/01/2003~ -~04638~^~323~^0.18^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04638~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~203~^1.32^18^0.07^~1~^~A~^^^1^0.57^1.79^5^1.13^1.50^~2, 3~^~07/01/2013~ -~04639~^~204~^44.54^18^0.30^~1~^~A~^^^1^38.60^48.30^6^43.80^45.27^~2, 3~^~09/01/2015~ -~04639~^~205~^5.90^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~04639~^~207~^2.55^18^0.02^~1~^~A~^^^1^2.24^2.81^9^2.49^2.60^~2, 3~^~07/01/2015~ -~04639~^~209~^0.57^6^0.09^~1~^~A~^^^1^0.30^1.10^1^-0.57^1.70^~2, 3~^~07/01/2015~ -~04639~^~210~^1.86^6^0.30^~1~^~A~^^^1^0.27^2.88^1^-1.05^4.76^~2, 3~^~07/01/2015~ -~04639~^~211~^0.78^6^0.21^~1~^~A~^^^1^0.43^1.82^1^-1.73^3.29^~2, 3~^~07/01/2015~ -~04639~^~212~^0.68^6^0.20^~1~^~A~^^^1^0.35^1.66^1^-1.75^3.12^~2, 3~^~07/01/2015~ -~04639~^~213~^1.35^6^0.05^~1~^~A~^^^1^1.00^1.96^1^0.74^1.95^~2, 3~^~07/01/2015~ -~04639~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~255~^45.68^18^0.12^~1~^~A~^^^1^43.60^50.80^6^45.38^45.98^~2, 3~^~07/01/2015~ -~04639~^~269~^4.69^6^0.06^~1~^~A~^^^1^4.25^5.62^2^4.37^5.01^~2, 3~^~09/01/2015~ -~04639~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~303~^0.30^18^0.01^~1~^~A~^^^1^0.15^0.51^10^0.26^0.33^~2, 3~^~07/01/2013~ -~04639~^~309~^0.17^18^7.0e-03^~1~^~A~^^^1^0.10^0.26^6^0.15^0.18^~1, 2, 3~^~07/01/2013~ -~04639~^~323~^2.22^9^0.07^~1~^~A~^^^1^1.85^2.73^5^2.01^2.42^~2, 3~^~07/01/2013~ -~04639~^~341~^0.37^9^0.02^~1~^~A~^^^1^0.30^0.59^2^0.26^0.48^~2, 3~^~07/01/2013~ -~04639~^~342~^30.31^9^1.39^~1~^~A~^^^1^20.43^36.73^5^26.68^33.93^~2, 3~^~07/01/2015~ -~04639~^~343~^8.80^9^0.73^~1~^~A~^^^1^4.64^12.38^3^6.47^11.12^~2, 3~^~07/01/2015~ -~04639~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~418~^0.17^9^0.01^~1~^~A~^^^1^0.10^0.21^3^0.14^0.20^~2, 3~^~07/01/2015~ -~04639~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~04639~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~ -~04640~^~203~^1.25^4^0.40^~6~^~JA~^^^2^0.73^1.47^1^-3.84^6.33^~4~^~12/01/2007~ -~04640~^~204~^12.42^4^0.06^~6~^~JA~^^^2^5.75^15.25^2^12.09^12.73^~2, 3~^~12/01/2007~ -~04640~^~205~^21.33^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~207~^2.96^2^^~1~^~A~^^^1^2.85^3.08^1^^^^~12/01/2007~ -~04640~^~209~^6.15^2^^~1~^~A~^^^1^6.15^6.15^1^^^^~12/01/2007~ -~04640~^~210~^0.89^2^^~1~^~A~^^^1^0.07^1.70^1^^^~1~^~12/01/2007~ -~04640~^~211~^0.66^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04640~^~212~^0.61^2^^~1~^~A~^^^1^0.60^0.62^1^^^^~12/01/2007~ -~04640~^~213~^1.04^2^^~1~^~A~^^^1^0.68^1.40^1^^^^~12/01/2007~ -~04640~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2007~ -~04640~^~255~^62.04^2^^~1~^~A~^^^1^62.04^62.04^0^^^^~12/01/2007~ -~04640~^~269~^3.77^4^1.05^~6~^~JA~^^^2^3.19^5.15^1^-9.63^17.17^~4~^~12/01/2007~ -~04640~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2007~ -~04640~^~303~^0.69^4^0.36^~6~^~JA~^^^2^0.22^0.90^1^-3.99^5.38^~4~^~12/01/2007~ -~04640~^~309~^0.62^3^0.04^~1~^~A~^^^1^0.55^0.69^2^0.44^0.79^~2, 3~^~02/01/2003~ -~04640~^~323~^1.60^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~04640~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04640~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04641~^~203~^0.37^12^0.01^~1~^~A~^^^1^0.23^0.60^7^0.32^0.41^~2, 3~^~04/01/2012~ -~04641~^~204~^22.22^12^0.30^~1~^~A~^^^1^19.90^27.10^5^21.44^22.99^~2, 3~^~04/01/2012~ -~04641~^~205~^9.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~207~^2.05^12^0.03^~1~^~A~^^^1^1.64^2.30^6^1.97^2.13^~2, 3~^~04/01/2012~ -~04641~^~209~^3.16^4^0.01^~1~^~A~^^^1^3.00^3.20^1^2.99^3.32^~2, 3~^~04/01/2012~ -~04641~^~210~^1.28^6^0.34^~1~^~A~^^^1^0.40^2.00^2^-0.19^2.75^~2, 3~^~04/01/2012~ -~04641~^~211~^1.07^6^0.17^~1~^~A~^^^1^0.70^1.50^2^0.33^1.80^~2, 3~^~04/01/2012~ -~04641~^~212~^1.22^6^0.19^~1~^~A~^^^1^0.80^1.70^2^0.38^2.05^~2, 3~^~04/01/2012~ -~04641~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~255~^66.13^12^0.26^~1~^~A~^^^1^60.30^68.80^6^65.48^66.78^~2, 3~^~04/01/2012~ -~04641~^~269~^3.56^5^0.04^~1~^~A~^^^1^3.40^3.70^2^3.39^3.72^~2, 3~^~04/01/2012~ -~04641~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~303~^0.14^12^3.0e-03^~1~^~A~^^^1^0.13^0.17^6^0.13^0.15^~2, 3~^~04/01/2012~ -~04641~^~309~^0.07^12^3.0e-03^~1~^~A~^^^1^0.04^0.12^6^0.06^0.07^~2, 3~^~04/01/2012~ -~04641~^~323~^2.19^6^0.11^~1~^~A~^^^1^1.80^2.53^3^1.84^2.53^~2, 3~^~04/01/2012~ -~04641~^~341~^0.27^6^0.02^~1~^~A~^^^1^0.22^0.53^2^0.17^0.35^~2, 3~^~04/01/2012~ -~04641~^~342~^19.47^6^0.60^~1~^~A~^^^1^14.48^20.86^4^17.78^21.14^~2, 3~^~04/01/2012~ -~04641~^~343~^4.84^6^0.16^~1~^~A~^^^1^2.89^5.45^4^4.38^5.30^~2, 3~^~04/01/2012~ -~04641~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2003~ -~04641~^~573~^0.00^0^^~4~^~BFZN~^~43329~^^^^^^^^^~04/01/2012~ -~04641~^~578~^0.00^0^^~4~^~BFZN~^~43329~^^^^^^^^^~02/01/2011~ -~04642~^~203~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04642~^~205~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~207~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~255~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~269~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~303~^0.03^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~309~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~323~^41.08^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~418~^0.00^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04642~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04643~^~203~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04643~^~205~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~207~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~255~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~269~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~303~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~309~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~323~^17.10^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~341~^0.02^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~342~^30.35^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~343~^0.97^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~418~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04643~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04644~^~203~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04644~^~205~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04644~^~207~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~255~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~269~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~303~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~309~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~323~^17.46^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04644~^~418~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04644~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04645~^~203~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04645~^~205~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~207~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~255~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~269~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~303~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~309~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~323~^17.46^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~418~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04645~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04646~^~203~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04646~^~205~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~207~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~255~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~269~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~303~^0.04^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~309~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~323~^0.09^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~341~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~342~^0.20^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~343~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~418~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04646~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04648~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04648~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04648~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04649~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04649~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04649~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04650~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2004~ -~04650~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04650~^~205~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~207~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~255~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~303~^0.02^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~309~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04650~^~418~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04650~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04651~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04651~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04651~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04652~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04652~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04652~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04653~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04653~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04653~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04654~^~203~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04654~^~205~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~207~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~255~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~269~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~303~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~309~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~323~^12.10^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~418~^0.00^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04654~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04655~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04655~^~204~^71.00^1^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~04655~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~ -~04655~^~207~^1.00^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~04655~^~255~^28.00^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~04655~^~269~^0.00^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~303~^0.00^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~309~^0.00^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04655~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04655~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04655~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04655~^~418~^0.00^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~573~^0.00^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04655~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04656~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04656~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~255~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~303~^0.29^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04656~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04657~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04657~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~255~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~309~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04657~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04658~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04658~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~255~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04658~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04659~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04659~^~205~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~255~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~269~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~323~^0.09^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~341~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~342~^0.20^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~343~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~418~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04659~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04660~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04660~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~255~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04660~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04661~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~204~^99.50^1^^~1~^^^^^^^^^^^~03/01/2004~ -~04661~^~205~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~255~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~269~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~323~^0.09^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~341~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~342~^0.20^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~343~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~418~^0.00^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04661~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04662~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~204~^99.50^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~255~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04662~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04663~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04663~^~205~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~207~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~255~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~269~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~303~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~323~^3.81^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~418~^0.00^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04663~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04664~^~203~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~03/01/2004~ -~04664~^~205~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~207~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~255~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~269~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~303~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~309~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~323~^8.10^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~418~^0.00^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04664~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04665~^~203~^1.90^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~204~^80.20^1^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~04665~^~205~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~207~^2.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~255~^15.80^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~269~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~303~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~323~^4.60^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~418~^0.21^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04665~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04666~^~203~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~204~^100.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~205~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~207~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~255~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~269~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~303~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~309~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~323~^6.13^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~341~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~342~^32.30^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~343~^15.36^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~418~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04666~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04667~^~203~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~204~^100.00^1^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~04667~^~205~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~207~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~255~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~269~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~303~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~309~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~323~^6.13^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04667~^~341~^0.44^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04667~^~342~^32.30^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04667~^~343~^15.36^0^^~4~^~BFZN~^~04031~^^^^^^^^^~05/01/2010~ -~04667~^~418~^0.00^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04667~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04668~^~203~^0.18^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~204~^80.00^1^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~04668~^~205~^0.71^0^^~4~^~NC~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~207~^1.94^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~255~^17.17^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~04668~^~303~^0.12^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~309~^0.11^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~323~^6.23^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~418~^0.21^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2005~ -~04668~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04668~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~04669~^~203~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~204~^100.00^3^0.00^~1~^~PAK~^^^1^100.00^100.00^2^100.00^100.00^~4~^~04/01/2004~ -~04669~^~205~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~207~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~255~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~303~^0.02^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~309~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2007~ -~04669~^~418~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04673~^~203~^0.14^2^^~1~^~A~^^^1^0.09^0.19^1^^^^~01/01/2009~ -~04673~^~204~^64.63^2^^~1~^~A~^^^1^64.54^64.72^1^^^^~01/01/2009~ -~04673~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~207~^1.14^2^^~1~^~A~^^^1^1.10^1.18^1^^^^~01/01/2009~ -~04673~^~255~^33.95^2^^~1~^~A~^^^1^33.78^34.13^1^^^^~01/01/2009~ -~04673~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04673~^~323~^19.34^2^^~1~^~A~^^^1^15.66^23.03^1^^^^~01/01/2009~ -~04673~^~341~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~01/01/2009~ -~04673~^~342~^11.93^2^^~1~^~A~^^^1^11.66^12.20^1^^^^~01/01/2009~ -~04673~^~343~^1.91^2^^~1~^~A~^^^1^1.77^2.06^1^^^^~01/01/2009~ -~04673~^~344~^1.46^2^^~1~^~A~^^^1^1.25^1.67^1^^^^~01/01/2009~ -~04673~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04673~^~346~^2.81^2^^~1~^~A~^^^1^2.62^3.00^1^^^^~01/01/2009~ -~04673~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04674~^~203~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.11^~2, 3~^~03/01/2007~ -~04674~^~204~^36.41^3^0.25^~1~^~A~^^^1^35.89^36.68^2^35.29^37.52^~2, 3~^~03/01/2007~ -~04674~^~205~^1.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~207~^1.70^3^0.33^~1~^~A~^^^1^1.29^2.35^2^0.27^3.11^~2, 3~^~03/01/2007~ -~04674~^~255~^59.89^3^0.95^~1~^~A~^^^1^58.00^61.02^2^55.79^63.98^~2, 3~^~03/01/2007~ -~04674~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~323~^15.75^3^0.75^~1~^~A~^^^1^14.70^17.21^2^12.50^18.99^~2, 3~^~03/01/2007~ -~04674~^~341~^0.06^3^0.01^~1~^~A~^^^1^0.05^0.08^2^0.01^0.10^~2, 3~^~03/01/2007~ -~04674~^~342~^7.76^3^0.47^~1~^~A~^^^1^6.83^8.38^2^5.72^9.80^~2, 3~^~03/01/2007~ -~04674~^~343~^1.12^3^0.13^~1~^~A~^^^1^0.87^1.35^2^0.52^1.71^~2, 3~^~03/01/2007~ -~04674~^~344~^1.57^3^0.05^~1~^~A~^^^1^1.48^1.68^2^1.31^1.82^~2, 3~^~03/01/2007~ -~04674~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~346~^1.08^3^0.24^~1~^~A~^^^1^0.78^1.56^2^0.02^2.12^~2, 3~^~03/01/2007~ -~04674~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~04675~^~203~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~204~^17.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~207~^1.91^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~255~^80.83^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~323~^1.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~203~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~204~^2.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~205~^7.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~207~^2.45^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~255~^87.91^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~269~^1.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~323~^0.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~203~^0.13^3^0.02^~1~^~A~^^^1^0.09^0.19^2^0.01^0.25^~2, 3~^~01/01/2009~ -~04677~^~204~^70.95^3^0.10^~1~^~A~^^^1^70.82^71.16^2^70.48^71.40^~2, 3~^~01/01/2009~ -~04677~^~205~^0.16^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~207~^0.91^3^0.02^~1~^~A~^^^1^0.87^0.95^2^0.80^1.00^~2, 3~^~01/01/2009~ -~04677~^~255~^27.86^3^0.05^~1~^~A~^^^1^27.77^27.96^2^27.61^28.09^~2, 3~^~01/01/2009~ -~04677~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~323~^11.78^3^0.39^~1~^~A~^^^1^11.34^12.56^2^10.10^13.46^~2, 3~^~01/01/2009~ -~04677~^~341~^0.14^3^6.0e-03^~1~^~A~^^^1^0.13^0.15^2^0.11^0.16^~2, 3~^~01/01/2009~ -~04677~^~342~^15.90^3^0.44^~1~^~A~^^^1^15.01^16.46^2^13.96^17.82^~2, 3~^~01/01/2009~ -~04677~^~343~^3.88^3^0.10^~1~^~A~^^^1^3.66^4.00^2^3.40^4.34^~2, 3~^~01/01/2009~ -~04677~^~344~^2.66^3^0.12^~1~^~A~^^^1^2.53^2.91^2^2.12^3.19^~2, 3~^~01/01/2009~ -~04677~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~346~^4.29^3^0.17^~1~^~A~^^^1^3.96^4.56^2^3.53^5.04^~2, 3~^~01/01/2009~ -~04677~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2009~ -~04678~^~203~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~204~^100.00^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~207~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~255~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~323~^21.80^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~342~^21.80^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04679~^~203~^0.26^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~204~^78.69^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~04679~^~205~^20.69^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~207~^0.25^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~255~^0.11^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~269~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~303~^0.00^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04683~^~203~^0.07^7^0.03^~1~^~A~^^^1^0.00^0.25^6^-0.02^0.16^~2, 3~^~03/01/2007~ -~04683~^~204~^68.29^7^0.75^~1~^~A~^^^1^65.74^70.66^6^66.44^70.13^~2, 3~^~03/01/2007~ -~04683~^~205~^0.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~207~^1.53^7^0.10^~1~^~A~^^^1^1.07^1.79^6^1.28^1.78^~2, 3~^~03/01/2007~ -~04683~^~255~^29.52^7^0.63^~1~^~A~^^^1^27.42^31.56^6^27.95^31.07^~2, 3~^~03/01/2007~ -~04683~^~323~^13.00^2^^~1~^~A~^^^1^6.27^19.73^1^^^^~03/01/2007~ -~04683~^~341~^0.26^2^^~1~^~A~^^^1^0.16^0.36^1^^^^~03/01/2007~ -~04683~^~342~^29.25^2^^~1~^~A~^^^1^14.64^43.86^1^^^^~03/01/2007~ -~04683~^~343~^9.33^2^^~1~^~A~^^^1^3.19^15.48^1^^^^~03/01/2007~ -~04683~^~344~^1.42^2^^~1~^~A~^^^1^0.00^2.84^1^^^~1~^~03/01/2007~ -~04683~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~04683~^~346~^2.04^2^^~1~^~A~^^^1^0.00^4.07^1^^^~1~^~03/01/2007~ -~04683~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~04684~^~203~^0.41^4^0.08^~1~^~A~^^^1^0.19^0.56^3^0.14^0.66^~2, 3~^~03/01/2007~ -~04684~^~204~^80.32^4^0.33^~1~^~A~^^^1^79.70^81.27^3^79.24^81.39^~2, 3~^~03/01/2007~ -~04684~^~205~^1.39^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~207~^1.82^4^0.04^~1~^~A~^^^1^1.72^1.94^3^1.67^1.97^~2, 3~^~03/01/2007~ -~04684~^~255~^16.06^4^0.42^~1~^~A~^^^1^15.16^17.03^3^14.70^17.42^~2, 3~^~03/01/2007~ -~04684~^~323~^26.63^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~342~^19.57^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~343~^0.68^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~344~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04684~^~346~^0.09^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04684~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04685~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~04685~^~204~^100.00^3^^~4~^~CAZN~^^^1^100.00^100.00^^^^~2~^~03/01/2007~ -~04685~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~04685~^~207~^0.00^3^^~7~^~Z~^^^1^0.00^0.00^^^^~2~^~03/01/2007~ -~04685~^~255~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~04685~^~323~^21.64^3^^~1~^~A~^^^1^17.17^23.99^^^^~2~^~03/01/2007~ -~04685~^~341~^1.17^3^^~1~^~A~^^^1^1.12^1.25^^^^~2~^~03/01/2007~ -~04685~^~342~^100.88^3^^~1~^~A~^^^1^95.60^111.09^^^^~2~^~03/01/2007~ -~04685~^~343~^30.88^3^^~1~^~A~^^^1^28.12^36.40^^^^~2~^~03/01/2007~ -~04685~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~04685~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~04685~^~346~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~04685~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~04686~^~203~^0.98^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~204~^10.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~205~^28.26^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~04686~^~207~^2.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~255~^57.19^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~269~^18.33^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~04686~^~303~^0.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~309~^0.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~323~^1.46^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04687~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2007~ -~04687~^~204~^38.71^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~205~^5.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~207~^1.86^2^^~1~^~A~^^^1^1.77^1.95^1^^^^~04/01/2007~ -~04687~^~255~^53.73^2^^~1~^~A~^^^1^53.33^54.12^1^^^^~04/01/2007~ -~04687~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~323~^37.22^2^^~1~^~A~^^^1^32.53^41.92^1^^^^~04/01/2007~ -~04687~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~04/01/2007~ -~04687~^~342~^13.80^2^^~1~^~A~^^^1^13.53^14.07^1^^^^~04/01/2007~ -~04687~^~343~^2.58^2^^~1~^~A~^^^1^2.41^2.75^1^^^^~04/01/2007~ -~04687~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~04687~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~04687~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~04687~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2007~ -~04688~^~203~^0.16^9^0.07^~9~^~MC~^^^1^0.04^0.76^8^-0.01^0.33^~4~^~12/01/2007~ -~04688~^~204~^10.75^9^0.70^~9~^~MC~^^^1^7.37^13.47^8^9.12^12.37^~4~^~12/01/2007~ -~04688~^~205~^16.60^9^1.24^~9~^~MC~^^^1^9.31^20.43^8^13.72^19.48^~4~^~12/01/2007~ -~04688~^~207~^1.50^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2007~ -~04688~^~255~^71.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04688~^~269~^14.29^9^1.46^~9~^~MC~^^^1^6.05^18.74^8^10.92^17.65^~4~^~12/01/2007~ -~04688~^~303~^0.18^9^0.02^~9~^~MC~^^^1^0.11^0.34^8^0.12^0.23^~4~^~12/01/2007~ -~04689~^~203~^1.53^2^^~1~^~A~^^^1^1.50^1.56^1^^^^~01/01/2009~ -~04689~^~204~^34.18^2^^~1~^~A~^^^1^34.16^34.20^1^^^^~01/01/2009~ -~04689~^~205~^9.39^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~207~^2.46^2^^~1~^~A~^^^1^2.43^2.49^1^^^^~01/01/2009~ -~04689~^~209~^4.70^2^^~1~^~A~^^^1^4.60^4.80^1^^^^~01/01/2009~ -~04689~^~210~^4.12^2^^~1~^~A~^^^1^3.86^4.38^1^^^^~01/01/2009~ -~04689~^~211~^0.54^2^^~1~^~A~^^^1^0.41^0.68^1^^^^~01/01/2009~ -~04689~^~212~^0.42^2^^~1~^~A~^^^1^0.33^0.51^1^^^^~01/01/2009~ -~04689~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~255~^52.44^2^^~1~^~A~^^^1^52.15^52.72^1^^^^~01/01/2009~ -~04689~^~269~^5.38^2^^~1~^~A~^^^1^5.35^5.41^1^^^^~01/01/2009~ -~04689~^~287~^0.29^2^^~1~^~A~^^^1^0.29^0.30^1^^^^~01/01/2009~ -~04689~^~303~^0.31^2^^~1~^~A~^^^1^0.30^0.31^1^^^^~01/01/2009~ -~04689~^~309~^0.20^2^^~1~^~A~^^^1^0.19^0.21^1^^^^~01/01/2009~ -~04689~^~323~^10.41^2^^~1~^~A~^^^1^5.82^15.00^1^^^^~01/01/2009~ -~04689~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~01/01/2009~ -~04689~^~342~^11.14^2^^~1~^~A~^^^1^10.96^11.32^1^^^^~01/01/2009~ -~04689~^~343~^2.11^2^^~1~^~A~^^^1^1.68^2.54^1^^^^~01/01/2009~ -~04689~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~04689~^~418~^0.17^2^^~1~^~A~^^^1^0.15^0.18^1^^^^~01/01/2009~ -~04690~^~203~^0.51^13^0.18^~1~^~A~^^^2^0.00^1.56^8^0.08^0.92^~2, 3~^~03/01/2009~ -~04690~^~204~^37.77^13^0.67^~1~^~A~^^^2^35.76^45.19^8^36.21^39.33^~2, 3~^~03/01/2009~ -~04690~^~205~^0.66^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~207~^1.52^13^0.08^~1~^~A~^^^2^1.18^2.35^8^1.33^1.71^~2, 3~^~03/01/2009~ -~04690~^~255~^59.55^13^0.70^~1~^~A~^^^2^53.33^61.84^8^57.93^61.15^~2, 3~^~03/01/2009~ -~04690~^~269~^0.00^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~303~^0.02^4^0.00^~1~^~A~^^^2^0.00^0.09^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~309~^0.02^4^0.00^~1~^~A~^^^2^0.00^0.07^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~323~^13.45^13^3.37^~1~^~A~^^^2^1.88^41.92^8^5.72^21.17^~2, 3~^~03/01/2009~ -~04690~^~341~^0.09^13^0.01^~1~^~A~^^^2^0.05^0.17^8^0.06^0.11^~2, 3~^~03/01/2009~ -~04690~^~342~^12.38^13^1.44^~1~^~A~^^^2^6.50^23.17^8^9.04^15.72^~2, 3~^~03/01/2009~ -~04690~^~343~^3.15^13^0.65^~1~^~A~^^^2^0.87^7.63^8^1.64^4.64^~2, 3~^~03/01/2009~ -~04690~^~344~^0.83^13^0.18^~1~^~A~^^^2^0.00^1.68^8^0.40^1.24^~1, 2, 3~^~03/01/2009~ -~04690~^~345~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~346~^0.90^13^0.14^~1~^~A~^^^2^0.00^2.32^10^0.58^1.21^~1, 2, 3~^~03/01/2009~ -~04690~^~347~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~418~^0.06^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~ -~04690~^~573~^0.00^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04690~^~578~^0.00^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~ -~04691~^~203~^0.16^10^0.01^~1~^~A~^^^1^0.09^0.25^9^0.12^0.19^~2, 3~^~03/01/2009~ -~04691~^~204~^80.71^10^0.22^~1~^~A~^^^1^79.96^82.26^9^80.20^81.21^~2, 3~^~03/01/2009~ -~04691~^~205~^0.70^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~207~^1.92^10^0.08^~1~^~A~^^^1^1.27^2.22^9^1.72^2.10^~2, 3~^~03/01/2009~ -~04691~^~255~^16.52^10^0.26^~1~^~A~^^^1^14.77^17.26^9^15.91^17.11^~2, 3~^~03/01/2009~ -~04691~^~269~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~303~^0.06^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~309~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~323~^9.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~341~^0.36^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04691~^~342~^43.79^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04691~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04691~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04691~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04691~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04691~^~418~^0.10^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~573~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~578~^0.00^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04692~^~203~^0.22^10^0.03^~1~^~A~^^^1^0.09^0.56^3^0.11^0.32^~2, 3~^~03/01/2009~ -~04692~^~204~^80.17^10^0.25^~1~^~A~^^^1^79.37^81.27^2^79.24^81.10^~2, 3~^~03/01/2009~ -~04692~^~205~^0.75^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~207~^1.78^10^0.08^~1~^~A~^^^1^1.31^2.32^2^1.46^2.10^~2, 3~^~03/01/2009~ -~04692~^~255~^17.07^10^0.28^~1~^~A~^^^1^15.16^18.09^3^16.09^18.04^~2, 3~^~03/01/2009~ -~04692~^~269~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~303~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2009~ -~04692~^~309~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2009~ -~04692~^~323~^15.43^3^0.41^~1~^~A~^^^1^3.41^26.63^1^10.16^20.70^~2, 3~^~03/01/2009~ -~04692~^~341~^0.16^3^0.01^~1~^~A~^^^1^0.02^0.33^1^-0.03^0.35^~2, 3~^~03/01/2009~ -~04692~^~342~^26.98^3^2.39^~1~^~A~^^^1^19.57^39.19^1^-3.48^57.44^~2, 3~^~03/01/2009~ -~04692~^~343~^6.65^3^0.51^~1~^~A~^^^1^0.68^13.66^1^0.11^13.19^~2, 3~^~03/01/2009~ -~04692~^~344~^0.04^3^0.00^~1~^~A~^^^1^0.00^0.08^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~346~^0.05^3^0.00^~1~^~A~^^^1^0.00^0.09^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~418~^0.08^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~573~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04692~^~578~^0.00^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04693~^~203~^0.12^4^8.0e-03^~1~^~A~^^^1^0.09^0.12^3^0.09^0.14^~2, 3~^~03/01/2009~ -~04693~^~204~^60.39^4^0.54^~1~^~A~^^^1^59.15^61.78^3^58.67^62.11^~2, 3~^~03/01/2009~ -~04693~^~205~^0.69^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~207~^1.84^4^0.02^~1~^~A~^^^1^1.78^1.88^3^1.77^1.91^~2, 3~^~03/01/2009~ -~04693~^~255~^36.95^4^0.46^~1~^~A~^^^1^35.76^38.01^3^35.47^38.43^~2, 3~^~03/01/2009~ -~04693~^~269~^0.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~303~^0.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~309~^0.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~323~^5.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~418~^0.07^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~573~^0.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~578~^0.00^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04694~^~203~^0.17^16^0.03^~1~^~A~^^^1^0.00^0.44^15^0.10^0.23^~2, 3~^~03/01/2009~ -~04694~^~204~^59.81^16^0.13^~1~^~A~^^^1^58.72^60.76^15^59.53^60.08^~2, 3~^~03/01/2009~ -~04694~^~205~^0.86^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~207~^1.59^16^0.04^~1~^~A~^^^1^1.33^1.96^15^1.49^1.68^~2, 3~^~03/01/2009~ -~04694~^~255~^37.58^16^0.17^~1~^~A~^^^1^36.44^39.23^15^37.20^37.95^~2, 3~^~03/01/2009~ -~04694~^~269~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~303~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~309~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~323~^21.12^6^5.26^~1~^~A~^^^1^3.94^30.72^5^7.58^34.65^~2, 3~^~03/01/2009~ -~04694~^~341~^0.23^6^8.0e-03^~1~^~A~^^^1^0.21^0.26^5^0.21^0.25^~2, 3~^~03/01/2009~ -~04694~^~342~^21.98^6^3.38^~1~^~A~^^^1^15.45^33.25^5^13.27^30.68^~2, 3~^~03/01/2009~ -~04694~^~343~^6.92^6^1.21^~1~^~A~^^^1^4.56^11.22^5^3.80^10.04^~2, 3~^~03/01/2009~ -~04694~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~418~^10.80^4^1.85^~1~^~A~^^^1^7.50^16.10^3^4.88^16.71^~2, 3~^~03/01/2009~ -~04694~^~573~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~578~^0.00^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04695~^~203~^0.60^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~204~^59.17^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~205~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~207~^1.70^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~255~^38.68^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~269~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~303~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~309~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~323~^5.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~418~^0.07^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~573~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~578~^0.00^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04696~^~203~^0.16^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~204~^80.71^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~205~^0.70^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~207~^1.92^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~255~^16.52^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~269~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~303~^0.06^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~323~^9.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~418~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04697~^~203~^0.17^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~204~^59.81^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~205~^0.86^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~207~^1.59^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~255~^37.58^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~269~^0.00^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~303~^0.00^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~309~^0.00^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~323~^21.12^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~418~^10.80^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~573~^0.00^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~578~^0.00^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04698~^~203~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~204~^100.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2010~ -~04698~^~205~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~207~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~255~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~269~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~303~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~309~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~323~^17.46^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~418~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~573~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~578~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04699~^~203~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~204~^100.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2010~ -~04699~^~205~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~207~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~255~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~303~^0.05^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~309~^0.01^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~418~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~573~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~578~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04700~^~203~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~204~^100.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~04700~^~205~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~207~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~255~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~303~^0.05^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~309~^0.01^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~418~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~573~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~578~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~203~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~204~^100.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~04701~^~205~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~207~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~255~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~269~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~303~^0.05^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~309~^0.01^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~323~^8.18^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~418~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~573~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~578~^0.00^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04702~^~203~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~204~^100.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~04702~^~205~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~207~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~255~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~269~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~303~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~309~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~323~^35.30^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~418~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~573~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~578~^0.00^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04703~^~203~^0.87^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~204~^40.83^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~205~^23.33^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~207~^2.32^0^^~4~^~O~^^^^^^^^^^~01/01/2011~ -~04703~^~255~^32.64^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~269~^15.84^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~303~^0.29^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~309~^0.14^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~323~^3.53^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~341~^0.34^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~342~^24.06^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~343~^7.90^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~344~^0.02^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~345~^0.01^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~418~^0.05^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~203~^0.92^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~204~^33.33^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~205~^23.73^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~04704~^~207~^2.36^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~255~^38.85^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~269~^23.39^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~303~^0.25^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~309~^0.25^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~323~^2.36^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~418~^0.09^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04705~^~203~^1.47^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~204~^0.23^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~205~^30.73^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04705~^~207~^3.48^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~255~^64.10^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~269~^8.82^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~303~^0.29^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~309~^0.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~323~^0.02^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~418~^0.04^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~203~^1.07^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~204~^1.47^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~205~^38.43^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~04706~^~207~^2.86^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~255~^56.17^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~269~^17.75^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~303~^0.36^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~309~^0.29^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~323~^0.80^0^^~4~^~O~^^^^^^^^^^~12/01/2010~ -~04706~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~573~^0.65^0^^~4~^~O~^^^^^^^^^^~12/01/2010~ -~04706~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~12/01/2010~ -~04707~^~203~^0.37^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~204~^99.01^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~205~^0.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~207~^0.07^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~255~^0.16^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~303~^0.34^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~309~^0.31^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~323~^0.71^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~341~^0.57^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~342~^33.38^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~343~^0.81^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~344~^0.68^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~346~^0.71^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04708~^~203~^0.37^12^0.01^~1~^~A~^^^1^0.23^0.60^7^0.32^0.41^~2, 3~^~05/01/2013~ -~04708~^~204~^40.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~207~^2.05^12^0.03^~1~^~A~^^^1^1.64^2.30^6^1.97^2.13^~2, 3~^~05/01/2013~ -~04708~^~255~^57.58^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~04708~^~269~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~303~^0.00^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~309~^0.07^12^3.0e-03^~1~^~A~^^^1^0.04^0.12^6^0.06^0.07^~2, 3~^~05/01/2013~ -~04708~^~323~^2.19^6^0.11^~1~^~A~^^^1^1.80^2.53^3^1.84^2.53^~2, 3~^~05/01/2013~ -~04708~^~418~^0.12^0^^~4~^~BFZN~^~04025~^^^^^^^^^~05/01/2013~ -~04708~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04708~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04709~^~203~^0.65^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~204~^10.00^0^^~8~^^^^^^^^^^^~07/01/2015~ -~04709~^~205~^16.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~207~^1.76^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~255~^71.20^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~04709~^~269~^6.67^0^^~8~^^^^^^^^^^^~07/01/2015~ -~04709~^~303~^0.12^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~309~^0.07^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~323~^0.72^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~418~^0.04^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~573~^0.00^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~578~^0.00^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~05000~^~203~^28.04^4^0.65^~1~^~A~^^^1^26.10^28.91^3^25.96^30.10^~2, 3~^~05/01/2012~ -~05000~^~204~^3.57^4^0.37^~1~^~A~^^^1^2.98^4.53^3^2.39^4.74^~2, 3~^~05/01/2012~ -~05000~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05000~^~207~^1.40^4^0.09^~1~^~A~^^^1^1.20^1.60^3^1.10^1.69^~2, 3~^~05/01/2012~ -~05000~^~255~^67.78^4^0.66^~1~^~A~^^^1^66.38^69.56^3^65.68^69.87^~2, 3~^~05/01/2012~ -~05000~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~303~^0.46^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~309~^0.87^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~323~^0.32^4^0.07^~1~^~A~^^^1^0.19^0.52^3^0.10^0.54^~2, 3~^~05/01/2012~ -~05000~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05000~^~342~^0.07^4^0.01^~1~^~A~^^^1^0.03^0.11^3^0.01^0.13^~2, 3~^~05/01/2012~ -~05000~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05000~^~344~^0.02^4^3.0e-03^~1~^~A~^^^1^0.01^0.03^3^0.01^0.03^~1, 2, 3~^~05/01/2012~ -~05000~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05000~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05000~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05000~^~418~^0.27^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05001~^~203~^18.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~204~^14.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~205~^0.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05001~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~255~^66.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~303~^1.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~309~^1.48^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~418~^1.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~203~^22.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~204~^17.53^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~205~^9.03^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05002~^~207~^1.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~255~^49.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~303~^1.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~309~^1.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~418~^0.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~203~^28.57^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~204~^15.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~205~^3.27^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05003~^~207~^1.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~255~^51.88^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~303~^1.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~309~^2.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~418~^1.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~203~^26.78^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~204~^13.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05004~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~255~^60.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05004~^~303~^1.66^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~309~^2.16^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~323~^0.33^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~05004~^~418~^0.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05005~^~203~^24.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~204~^12.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05005~^~207~^0.76^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~255~^64.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~303~^1.53^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~309~^1.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~418~^0.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~203~^18.60^82^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~204~^15.06^82^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05006~^~207~^0.79^25^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~255~^65.99^82^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05006~^~303~^0.90^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~309~^1.31^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~323~^0.30^0^^~4~^~CASN~^^^^^^^^^^~11/01/2002~ -~05006~^~418~^0.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05007~^~203~^22.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~204~^17.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~205~^9.42^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05007~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~255~^49.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05007~^~303~^1.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~309~^1.67^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~323~^1.24^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05007~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05008~^~203~^28.56^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~204~^14.92^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~205~^3.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05008~^~207~^0.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~255~^52.41^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05008~^~303~^1.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~309~^2.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~323~^0.63^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05008~^~418~^0.31^0^^~1~^^^^^^^^^^^~11/01/2002~ -~05008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05009~^~203~^27.30^16^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~204~^13.60^16^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05009~^~207~^0.92^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~255~^59.45^16^0.43^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05009~^~303~^1.26^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~309~^1.94^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05009~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~05009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~203~^24.68^16^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~204~^12.56^16^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05010~^~207~^0.76^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~255~^63.93^16^0.54^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05010~^~303~^1.16^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~309~^1.76^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05010~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~203~^21.39^24^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~204~^3.08^25^0.14^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05011~^~207~^0.96^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~255~^75.46^24^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05011~^~303~^0.89^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~309~^1.54^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~323~^0.21^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05011~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05012~^~203~^30.57^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~204~^9.12^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~205~^1.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05012~^~207~^1.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~255~^57.53^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05012~^~303~^1.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~309~^2.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~323~^0.46^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05012~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~203~^28.93^16^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~204~^7.41^16^0.16^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05013~^~207~^1.02^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~255~^63.79^16^0.38^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05013~^~303~^1.21^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~309~^2.10^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05013~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05014~^~203~^27.29^16^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~204~^6.71^16^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05014~^~207~^0.85^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~255~^66.81^16^0.32^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05014~^~303~^1.17^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~309~^1.99^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05014~^~418~^0.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05015~^~203~^13.33^31^0.31^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~204~^32.35^35^0.69^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05015~^~207~^0.41^25^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~255~^54.22^30^0.84^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~05015~^~303~^1.08^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~309~^0.93^24^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~ -~05015~^~418~^0.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~203~^10.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~204~^28.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~205~^23.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05016~^~207~^1.59^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~255~^36.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~303~^1.43^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~309~^0.72^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~418~^0.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~203~^19.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~204~^42.58^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~205~^9.34^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05017~^~207~^0.45^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~255~^28.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~303~^1.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~309~^1.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~418~^0.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~203~^20.36^16^0.68^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~204~^40.68^16^1.35^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05018~^~207~^0.50^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~255~^40.29^16^1.70^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05018~^~303~^1.51^16^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~309~^1.23^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~323~^0.40^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05018~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05019~^~203~^15.22^18^0.41^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~204~^33.04^17^0.93^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05019~^~207~^0.43^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~255~^53.27^18^1.48^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~303~^1.13^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~309~^0.96^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~418~^0.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~203~^17.88^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~204~^4.47^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~205~^1.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05020~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~255~^74.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~303~^5.86^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~309~^3.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~418~^11.41^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~203~^32.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~204~^13.46^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~205~^4.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05021~^~207~^1.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~255~^47.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~303~^10.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~309~^6.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~418~^13.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05022~^~203~^27.15^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~204~^4.50^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05022~^~207~^1.12^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~255~^67.72^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~303~^7.04^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~309~^4.23^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~323~^0.46^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~341~^0.00^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~342~^0.22^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~343~^0.00^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~344~^0.01^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~345~^0.00^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~346~^0.00^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~347~^0.00^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~418~^9.44^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~05022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05023~^~203~^17.66^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~204~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~207~^0.95^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~255~^79.33^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~303~^2.49^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~309~^2.72^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~323~^0.33^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~342~^0.15^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~344~^0.00^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05023~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05023~^~418~^1.21^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~203~^30.39^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~204~^2.68^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~207~^0.89^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~255~^67.93^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05024~^~303~^3.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~309~^4.42^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~323~^0.20^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~342~^0.12^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~344~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05024~^~418~^1.04^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05025~^~203~^15.55^15^0.43^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~204~^9.33^14^0.96^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~205~^0.71^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05025~^~207~^0.85^10^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~255~^73.56^13^0.91^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~303~^5.96^11^0.52^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~309~^6.59^8^0.34^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~418~^7.29^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~203~^26.41^4^0.95^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~204~^7.92^8^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05026~^~207~^0.72^6^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~255~^64.85^8^0.54^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~303~^9.03^8^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~309~^7.30^8^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~418~^7.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05027~^~203~^16.92^4^0.27^~1~^~A~^^^1^16.20^17.37^3^16.04^17.79^~2, 3~^~02/01/2003~ -~05027~^~204~^4.83^4^0.77^~1~^~A~^^^1^3.80^7.08^3^2.36^7.29^~2, 3~^~02/01/2003~ -~05027~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05027~^~207~^1.06^4^0.03^~1~^~A~^^^1^0.97^1.12^3^0.96^1.16^~2, 3~^~02/01/2003~ -~05027~^~255~^76.46^4^0.56^~1~^~A~^^^1^75.22^77.93^3^74.66^78.25^~2, 3~^~02/01/2003~ -~05027~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05027~^~303~^8.99^4^0.40^~1~^~A~^^^1^7.96^9.86^3^7.70^10.27^~2, 3~^~02/01/2003~ -~05027~^~309~^2.67^4^0.04^~1~^~A~^^^1^2.56^2.78^3^2.52^2.80^~2, 3~^~02/01/2003~ -~05027~^~323~^0.70^8^^~1~^~A~^^^1^0.41^1.06^^^^~2, 3~^~02/01/2003~ -~05027~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~05027~^~342~^0.31^6^^~1~^~A~^^^1^0.24^0.36^^^^~2, 3~^~02/01/2003~ -~05027~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05027~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05027~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05027~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05027~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05027~^~418~^16.58^4^1.65^~1~^~A~^^^1^13.60^20.80^3^11.30^21.84^~2, 3~^~02/01/2003~ -~05027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~05027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05028~^~203~^24.46^4^0.29^~1~^~A~^^^1^23.77^25.17^3^23.53^25.38^~2, 3~^~02/01/2003~ -~05028~^~204~^6.51^4^0.63^~1~^~A~^^^1^5.13^8.17^3^4.49^8.52^~2, 3~^~02/01/2003~ -~05028~^~205~^0.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~207~^1.36^4^0.01^~1~^~A~^^^1^1.34^1.40^3^1.31^1.40^~2, 3~^~02/01/2003~ -~05028~^~255~^66.81^4^0.42^~1~^~A~^^^1^65.58^67.41^3^65.46^68.15^~2, 3~^~02/01/2003~ -~05028~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05028~^~303~^11.63^4^0.34^~1~^~A~^^^1^10.70^12.20^3^10.52^12.72^~2, 3~^~02/01/2003~ -~05028~^~309~^3.98^4^0.10^~1~^~A~^^^1^3.67^4.12^3^3.64^4.30^~2, 3~^~02/01/2003~ -~05028~^~323~^0.82^8^^~1~^~A~^^^1^0.58^1.19^^^^~2, 3~^~02/01/2003~ -~05028~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~05028~^~342~^0.35^8^^~1~^~A~^^^1^0.30^0.38^^^^~2, 3~^~02/01/2003~ -~05028~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05028~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05028~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05028~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05028~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05028~^~418~^16.85^4^1.12^~1~^~A~^^^1^14.90^19.00^3^13.25^20.44^~2, 3~^~02/01/2003~ -~05028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05029~^~203~^20.27^25^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~204~^11.07^25^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05029~^~207~^0.86^25^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~255~^68.60^25^0.34^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05029~^~303~^0.79^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~309~^0.93^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~323~^0.27^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05029~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~203~^23.55^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~204~^15.44^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~205~^9.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05030~^~207~^1.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~255~^50.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~303~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~309~^1.06^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~203~^30.45^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~204~^12.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~205~^1.82^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05031~^~207~^0.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~255~^54.66^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05031~^~303~^1.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~309~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~323~^0.57^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05031~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05032~^~203~^29.02^16^0.31^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~204~^10.85^16^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05032~^~207~^0.93^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~255~^60.51^16^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~303~^1.14^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~309~^1.23^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~203~^26.14^16^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~204~^9.97^16^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05033~^~207~^0.78^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~255~^65.13^16^0.46^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~303~^0.98^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~309~^1.14^16^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~203~^16.69^25^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~204~^18.34^25^0.35^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05034~^~207~^0.76^25^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~255~^65.42^25^0.45^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05034~^~303~^0.98^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~309~^1.58^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~323~^0.30^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05034~^~418~^0.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~203~^21.85^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~204~^18.64^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~205~^9.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05035~^~207~^1.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~255~^48.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~303~^1.44^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~309~^2.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~418~^0.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~203~^27.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~204~^16.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~205~^4.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05036~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~255~^50.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~303~^1.50^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~309~^2.60^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~203~^25.97^16^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~204~^15.78^16^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05037~^~207~^0.92^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~255~^58.63^16^0.49^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~303~^1.36^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~309~^2.49^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~418~^0.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~203~^23.50^16^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~204~^14.66^16^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05038~^~207~^0.74^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~255~^62.99^16^0.62^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~303~^1.31^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~309~^2.26^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~203~^23.20^26^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~204~^1.65^26^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05039~^~207~^0.98^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~255~^74.86^26^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~303~^0.73^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~309~^0.97^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~323~^0.22^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05039~^~418~^0.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~203~^32.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~204~^5.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~205~^0.42^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05040~^~207~^1.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~255~^60.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~303~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~309~^1.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~203~^30.91^16^0.34^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~204~^4.51^16^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05041~^~207~^1.02^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~255~^64.76^16^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05041~^~303~^1.06^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~309~^1.23^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05041~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~203~^28.88^16^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~204~^3.99^16^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05042~^~207~^0.87^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~255~^68.02^16^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05042~^~303~^0.93^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~309~^1.19^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05042~^~418~^0.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05043~^~203~^20.08^25^0.13^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~204~^4.31^25^0.16^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05043~^~207~^0.94^25^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~255~^75.99^25^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~303~^1.03^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~309~^2.00^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~323~^0.21^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05043~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~203~^28.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~204~^11.62^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~205~^2.59^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05044~^~207~^1.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~255~^55.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~309~^2.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~203~^27.37^16^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~204~^9.73^16^0.18^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05045~^~207~^1.02^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~255~^63.06^16^0.39^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05045~^~303~^1.33^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~309~^2.80^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05045~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05046~^~203~^25.97^16^0.22^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~204~^8.98^16^0.13^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05046~^~207~^0.84^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~255~^65.83^16^0.38^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05046~^~303~^1.36^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~309~^2.66^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05046~^~418~^0.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~203~^3.73^40^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~204~^67.95^40^1.24^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05047~^~207~^0.28^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~255~^28.91^34^1.15^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05047~^~303~^0.70^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~309~^0.45^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~323~^2.73^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05047~^~418~^0.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05048~^~203~^14.05^24^0.18^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~204~^28.74^24^0.74^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05048~^~207~^0.64^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~255~^58.10^24^0.82^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~303~^0.94^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~309~^1.26^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~323~^0.37^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05048~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05049~^~203~^21.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~204~^21.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~205~^10.25^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05049~^~207~^1.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~255~^44.51^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~309~^1.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~418~^0.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~203~^27.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~204~^20.74^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~205~^6.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05050~^~207~^1.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~255~^43.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~303~^1.62^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~309~^2.47^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~203~^25.95^16^0.41^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~204~^20.97^16^0.85^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05051~^~207~^0.92^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~255~^53.52^16^0.82^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05051~^~303~^1.42^16^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~309~^2.25^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05051~^~418~^0.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~203~^22.18^16^0.41^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~204~^18.14^16^0.62^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05052~^~207~^0.64^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~255~^60.93^16^0.88^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05052~^~303~^1.22^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~309~^1.93^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05052~^~418~^0.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05053~^~203~^19.56^24^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~204~^5.92^24^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05053~^~207~^0.92^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~255~^75.31^24^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05053~^~303~^1.04^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~309~^1.85^24^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~323~^0.22^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05053~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~203~^29.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~204~^15.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~205~^5.68^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05054~^~207~^1.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~255~^47.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~303~^1.65^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~309~^2.80^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~418~^0.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~203~^28.19^16^0.38^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~204~^13.16^16^0.48^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05055~^~207~^1.08^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~255~^58.75^16^0.56^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05055~^~303~^1.39^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~309~^2.65^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~203~^25.31^16^0.44^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~204~^11.19^16^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05056~^~207~^0.73^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~255~^64.33^16^0.59^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05056~^~303~^1.27^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~309~^2.38^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05056~^~418~^0.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~203~^20.85^29^0.14^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~204~^9.25^29^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05057~^~207~^1.01^29^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~255~^69.46^29^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05057~^~303~^0.74^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~309~^0.80^24^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~323~^0.27^0^^~4~^~CASN~^^^^^^^^^^~03/01/2009~ -~05057~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2009~ -~05057~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05058~^~203~^24.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~204~^13.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~205~^8.99^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05058~^~207~^1.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~255~^51.64^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05058~^~303~^1.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~309~^0.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~323~^1.06^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05058~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05059~^~203~^31.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~204~^8.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~205~^1.64^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05059~^~207~^1.06^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~255~^56.59^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~303~^1.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~309~^1.10^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~203~^29.80^16^0.35^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~204~^7.78^16^0.30^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05060~^~207~^0.99^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~255~^62.44^16^0.30^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05060~^~303~^1.07^17^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~309~^1.02^17^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05060~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~05060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~203~^27.39^16^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~204~^7.42^16^0.22^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05061~^~207~^0.84^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~255~^66.21^16^0.40^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05061~^~303~^0.92^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~309~^0.97^16^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05061~^~418~^0.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~05061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05062~^~203~^22.50^6^0.23^~1~^~A~^^^1^21.88^23.44^5^21.88^23.11^~2, 3~^~04/01/2013~ -~05062~^~204~^2.62^6^0.22^~1~^~A~^^^1^1.86^3.45^5^2.06^3.19^~2, 3~^~04/01/2013~ -~05062~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05062~^~207~^1.13^6^0.01^~1~^~A~^^^1^1.10^1.17^5^1.10^1.15^~2, 3~^~04/01/2013~ -~05062~^~255~^73.90^6^0.26^~1~^~A~^^^1^72.94^74.69^5^73.23^74.56^~2, 3~^~04/01/2013~ -~05062~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05062~^~303~^0.37^6^0.01^~1~^~A~^^^1^0.33^0.42^5^0.34^0.40^~2, 3~^~04/01/2009~ -~05062~^~309~^0.68^6^0.03^~1~^~A~^^^1^0.59^0.78^5^0.60^0.75^~2, 3~^~04/01/2013~ -~05062~^~323~^0.56^2^^~1~^~A~^^^1^0.28^0.83^1^^^^~04/01/2013~ -~05062~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05062~^~342~^0.09^2^^~1~^~A~^^^1^0.08^0.10^1^^^^~04/01/2013~ -~05062~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05062~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05062~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05062~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05062~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05062~^~418~^0.21^3^7.0e-03^~1~^~A~^^^1^0.20^0.22^2^0.17^0.23^~2, 3~^~04/01/2013~ -~05062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~203~^33.44^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~204~^4.71^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~205~^0.51^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05063~^~207~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~255~^60.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05063~^~303~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~309~^1.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~323~^0.42^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05063~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~203~^31.02^16^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~204~^3.57^16^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05064~^~207~^1.06^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~255~^65.26^16^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05064~^~303~^1.04^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~309~^1.00^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05064~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05065~^~203~^28.98^18^0.39^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~204~^3.03^18^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05065~^~207~^0.91^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~255~^68.27^18^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05065~^~303~^0.88^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~309~^0.97^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~05065~^~418~^0.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05066~^~203~^18.08^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~204~^9.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~205~^0.11^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05066~^~207~^0.86^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~255~^72.46^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~303~^0.71^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~309~^1.86^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~323~^0.19^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~342~^0.08^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~345~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~418~^0.53^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05067~^~203~^21.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~204~^15.75^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~205~^8.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05067~^~207~^1.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~255~^52.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~303~^1.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~309~^2.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~203~^26.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~204~^13.72^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~205~^1.63^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05068~^~207~^0.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~255~^56.73^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~303~^1.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~309~^2.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05069~^~203~^23.35^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~204~^10.15^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~255~^66.39^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~309~^2.36^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~323~^0.19^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~342~^0.09^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~345~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~418~^0.39^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05069~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05070~^~203~^25.32^16^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~204~^10.64^16^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05070~^~207~^0.82^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~255~^65.12^16^0.53^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05070~^~303~^1.33^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~309~^2.65^16^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05070~^~418~^0.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05071~^~203~^19.41^7^0.07^~1~^~A~^^^2^18.69^21.06^2^18.96^19.84^~2, 3~^~02/01/2013~ -~05071~^~204~^3.71^7^0.11^~1~^~A~^^^2^3.32^4.36^5^3.42^4.00^~2, 3~^~02/01/2013~ -~05071~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05071~^~207~^0.92^7^0.01^~1~^~A~^^^2^0.83^0.96^1^0.79^1.05^~2, 3~^~02/01/2013~ -~05071~^~255~^76.78^7^0.07^~1~^~A~^^^2^76.51^76.97^5^76.59^76.95^~2, 3~^~02/01/2013~ -~05071~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05071~^~303~^0.76^6^0.03^~1~^~A~^^^2^0.61^1.05^1^0.53^0.99^~2, 3~^~02/01/2013~ -~05071~^~309~^2.05^6^0.08^~1~^~A~^^^2^1.67^2.23^1^1.36^2.73^~2, 3~^~02/01/2013~ -~05071~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~345~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05071~^~418~^0.51^5^0.04^~1~^~A~^^^2^0.39^0.70^3^0.37^0.64^~2, 3~^~02/01/2013~ -~05071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05072~^~203~^28.62^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~204~^8.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05072~^~207~^1.06^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~255~^62.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~303~^1.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~309~^3.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~418~^0.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05073~^~203~^24.24^7^0.26^~1~^~A~^^^2^22.23^26.64^4^23.51^24.95^~2, 3~^~02/01/2013~ -~05073~^~204~^5.70^7^0.33^~1~^~A~^^^2^5.10^7.39^1^2.35^9.05^~2, 3~^~02/01/2013~ -~05073~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05073~^~207~^1.06^7^9.0e-03^~1~^~A~^^^2^1.04^1.12^2^1.00^1.11^~2, 3~^~02/01/2013~ -~05073~^~255~^69.93^7^0.38^~1~^~A~^^^2^66.65^72.19^3^68.76^71.08^~2, 3~^~02/01/2013~ -~05073~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05073~^~303~^1.14^6^0.05^~1~^~A~^^^2^0.83^1.59^4^0.97^1.31^~2, 3~^~02/01/2013~ -~05073~^~309~^2.56^6^0.08^~1~^~A~^^^2^2.21^3.02^3^2.28^2.83^~2, 3~^~02/01/2013~ -~05073~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~342~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05073~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~345~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~418~^0.38^5^0.04^~1~^~A~^^^2^0.28^0.53^3^0.24^0.51^~2, 3~^~02/01/2013~ -~05073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05074~^~203~^27.50^16^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~204~^5.71^16^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05074~^~207~^0.91^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~255~^67.58^16^0.40^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05074~^~303~^1.37^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~309~^3.02^16^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05074~^~418~^0.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05075~^~203~^16.37^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~204~^15.95^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~205~^0.17^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~207~^0.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~255~^67.30^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~303~^0.69^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~309~^1.47^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~342~^0.08^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~345~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~418~^0.56^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05075~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05076~^~203~^21.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~204~^16.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~205~^8.72^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05076~^~207~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~255~^52.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~303~^1.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~309~^2.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~203~^26.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~204~^14.43^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~205~^2.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05077~^~207~^0.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~255~^55.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~303~^1.43^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~309~^2.68^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~418~^0.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05078~^~203~^24.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~204~^8.99^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~255~^66.74^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~303~^1.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~309~^2.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05078~^~342~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05078~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~345~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05078~^~418~^0.38^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05078~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05079~^~203~^24.17^16^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~204~^12.92^16^0.19^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05079~^~207~^0.79^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~255~^64.01^16^0.52^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05079~^~303~^1.35^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~309~^2.43^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05079~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05080~^~203~^19.16^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~204~^4.22^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~255~^76.41^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~303~^0.78^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~309~^1.76^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~345~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~418~^0.57^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05081~^~203~^28.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~204~^9.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~205~^0.65^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05081~^~207~^1.05^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~255~^60.61^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~303~^1.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~309~^2.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05082~^~203~^24.22^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~204~^7.80^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~255~^67.69^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~303~^1.08^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~309~^2.11^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~323~^0.16^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~342~^0.07^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~345~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~418~^0.39^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05083~^~203~^26.26^16^0.22^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~204~^8.06^16^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05083~^~207~^0.88^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~255~^66.44^16^0.34^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05083~^~303~^1.40^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~309~^2.78^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05083~^~418~^0.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05084~^~203~^14.07^8^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~204~^26.24^8^1.19^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05084~^~207~^0.55^8^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~255~^59.99^8^0.89^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~303~^1.90^8^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~309~^1.86^8^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~323~^0.30^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~05084~^~418~^0.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~203~^19.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~204~^23.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~205~^8.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05085~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~255~^46.92^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~303~^2.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~309~^2.50^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~418~^0.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~203~^24.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~204~^23.61^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~205~^4.24^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05086~^~207~^0.65^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~255~^47.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~303~^2.42^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~309~^3.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~418~^0.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~203~^19.61^8^0.18^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~204~^18.10^8^0.77^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05087~^~207~^0.61^8^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~255~^61.73^8^1.05^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05087~^~303~^2.30^8^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~309~^2.72^8^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05087~^~418~^0.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05088~^~203~^17.55^9^0.39^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~204~^8.78^8^0.54^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05088~^~207~^0.69^8^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~255~^71.17^8^1.06^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~303~^2.06^8^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~309~^2.68^8^0.17^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~203~^26.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~204~^11.88^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~205~^1.77^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05089~^~207~^0.78^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~255~^58.71^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~303~^2.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~309~^4.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~203~^24.56^8^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~204~^8.18^8^0.28^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05090~^~207~^0.77^8^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~255~^67.05^8^0.58^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~303~^2.63^8^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~309~^3.77^8^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~418~^0.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05091~^~203~^16.52^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~204~^16.61^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~205~^0.25^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~207~^0.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05091~^~255~^66.47^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~303~^0.68^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~309~^1.29^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~323~^0.21^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~342~^0.09^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~345~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~418~^0.62^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~05091~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05092~^~203~^21.61^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~204~^16.53^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~205~^9.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05092~^~207~^1.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~255~^51.50^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~303~^1.45^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~309~^2.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~203~^26.75^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~204~^14.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~205~^3.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05093~^~207~^0.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~255~^54.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~309~^2.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05094~^~203~^23.26^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~204~^14.71^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~255~^61.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~303~^1.08^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~309~^1.73^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~323~^0.19^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~342~^0.09^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~418~^0.44^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05095~^~203~^23.26^16^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~204~^14.74^16^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05095~^~207~^0.78^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~255~^63.11^16^0.54^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05095~^~303~^1.37^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~309~^2.25^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05095~^~418~^0.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05096~^~203~^19.66^7^0.11^~1~^~A~^^^2^18.79^20.68^4^19.35^19.96^~2, 3~^~02/01/2013~ -~05096~^~204~^4.12^7^0.09^~1~^~A~^^^2^3.83^4.41^5^3.88^4.35^~2, 3~^~02/01/2013~ -~05096~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05096~^~207~^0.95^7^5.0e-03^~1~^~A~^^^2^0.93^0.97^5^0.93^0.96^~2, 3~^~02/01/2013~ -~05096~^~255~^76.22^7^0.08^~1~^~A~^^^2^75.42^76.54^1^75.63^76.80^~2, 3~^~02/01/2013~ -~05096~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05096~^~303~^0.81^6^0.04^~1~^~A~^^^2^0.72^0.92^3^0.69^0.93^~2, 3~^~02/01/2013~ -~05096~^~309~^1.58^6^0.03^~1~^~A~^^^2^1.45^1.79^2^1.42^1.73^~2, 3~^~02/01/2013~ -~05096~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~345~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05096~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05096~^~418~^0.61^5^0.09^~1~^~A~^^^2^0.45^0.95^3^0.31^0.89^~2, 3~^~02/01/2013~ -~05096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05097~^~203~^28.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~204~^10.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~205~^1.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05097~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~255~^59.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~303~^1.46^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~309~^2.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05098~^~203~^24.76^7^0.21^~1~^~A~^^^2^23.37^26.93^5^24.18^25.33^~2, 3~^~02/01/2013~ -~05098~^~204~^8.15^7^0.30^~1~^~A~^^^2^6.97^8.93^2^6.85^9.43^~2, 3~^~02/01/2013~ -~05098~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05098~^~207~^1.04^7^0.01^~1~^~A~^^^2^1.00^1.08^4^1.00^1.06^~2, 3~^~02/01/2013~ -~05098~^~255~^67.00^7^0.24^~1~^~A~^^^2^65.63^68.00^5^66.35^67.64^~2, 3~^~02/01/2013~ -~05098~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05098~^~303~^1.13^6^0.02^~1~^~A~^^^2^1.04^1.24^4^1.06^1.18^~2, 3~^~02/01/2013~ -~05098~^~309~^1.92^6^0.04^~1~^~A~^^^2^1.72^2.31^1^1.54^2.29^~2, 3~^~02/01/2013~ -~05098~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05098~^~342~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05098~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05098~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~418~^0.42^5^0.02^~1~^~A~^^^2^0.34^0.51^3^0.33^0.50^~2, 3~^~02/01/2013~ -~05098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05099~^~203~^25.00^18^0.28^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~204~^9.79^18^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05099~^~207~^0.86^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~255~^65.59^18^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05099~^~303~^1.42^16^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~309~^2.58^16^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05099~^~418~^0.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05100~^~203~^17.52^6^0.33^~1~^~A~^^^1^16.00^18.19^5^16.66^18.37^~2, 3~^~04/01/2013~ -~05100~^~204~^12.85^6^0.34^~1~^~A~^^^1^11.36^13.88^5^11.96^13.74^~2, 3~^~08/01/2015~ -~05100~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05100~^~207~^0.74^6^0.01^~1~^~A~^^^1^0.70^0.82^5^0.69^0.78^~2, 3~^~04/01/2013~ -~05100~^~255~^69.19^6^0.47^~1~^~A~^^^1^67.65^70.95^5^67.96^70.40^~2, 3~^~04/01/2013~ -~05100~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05100~^~303~^0.46^6^0.01^~1~^~A~^^^1^0.41^0.49^5^0.42^0.49^~2, 3~^~04/01/2013~ -~05100~^~309~^1.21^6^0.01^~1~^~A~^^^1^1.14^1.25^5^1.16^1.25^~2, 3~^~04/01/2013~ -~05100~^~323~^0.64^2^^~1~^~A~^^^1^0.48^0.80^1^^^^~04/01/2013~ -~05100~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05100~^~342~^0.15^2^^~1~^~A~^^^1^0.12^0.18^1^^^^~04/01/2013~ -~05100~^~343~^0.06^2^^~1~^~A~^^^1^0.05^0.07^1^^^^~04/01/2013~ -~05100~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~04/01/2013~ -~05100~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05100~^~346~^0.07^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~04/01/2013~ -~05100~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05100~^~418~^0.25^3^0.04^~1~^~A~^^^1^0.21^0.33^2^0.07^0.42^~2, 3~^~04/01/2013~ -~05100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~05100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05101~^~203~^19.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~204~^21.81^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~205~^10.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05101~^~207~^1.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~255~^46.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~303~^1.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~309~^1.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~203~^26.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~204~^22.16^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~205~^2.39^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05102~^~207~^0.72^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~255~^48.62^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~303~^1.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~309~^1.76^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05103~^~203~^23.79^6^0.38^~1~^~A~^^^1^23.25^25.69^5^22.80^24.77^~2, 3~^~04/01/2013~ -~05103~^~204~^16.87^6^0.56^~1~^~A~^^^1^14.75^18.16^5^15.42^18.32^~2, 3~^~04/01/2013~ -~05103~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05103~^~207~^0.88^6^0.02^~1~^~A~^^^1^0.82^1.00^5^0.80^0.95^~2, 3~^~04/01/2013~ -~05103~^~255~^59.40^6^0.49^~1~^~A~^^^1^57.88^60.77^5^58.14^60.65^~2, 3~^~04/01/2013~ -~05103~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05103~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.71^0.96^5^0.73^0.94^~2, 3~^~04/01/2013~ -~05103~^~309~^1.64^6^0.03^~1~^~A~^^^1^1.58^1.82^5^1.54^1.73^~2, 3~^~04/01/2013~ -~05103~^~323~^0.69^2^^~1~^~A~^^^1^0.49^0.88^1^^^^~04/01/2013~ -~05103~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05103~^~342~^0.20^2^^~1~^~A~^^^1^0.18^0.23^1^^^^~04/01/2013~ -~05103~^~343~^0.04^2^^~1~^~A~^^^1^0.02^0.05^1^^^^~04/01/2013~ -~05103~^~344~^0.05^2^^~1~^~A~^^^1^0.03^0.07^1^^^^~04/01/2013~ -~05103~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05103~^~346~^0.14^2^^~1~^~A~^^^1^0.13^0.15^1^^^^~04/01/2013~ -~05103~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05103~^~418~^0.35^3^0.03^~1~^~A~^^^1^0.31^0.41^2^0.21^0.48^~2, 3~^~04/01/2013~ -~05103~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05103~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~203~^22.78^16^0.35^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~204~^16.82^16^0.30^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05104~^~207~^0.62^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~255~^62.18^16^0.76^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05104~^~303~^1.13^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~309~^1.63^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05104~^~418~^0.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05105~^~203~^21.97^24^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~204~^3.54^24^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05105~^~207~^0.83^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~255~^74.95^24^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~05105~^~303~^0.88^24^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~309~^1.63^24^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~ -~05105~^~418~^0.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05106~^~203~^30.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~204~^9.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05106~^~207~^0.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~255~^59.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~303~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~309~^2.12^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~203~^30.46^16^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~204~^8.13^16^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05107~^~207~^0.89^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~255~^62.78^16^0.61^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05107~^~303~^1.16^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~309~^2.14^16^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05107~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~203~^27.18^16^0.40^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~204~^7.18^16^0.19^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05108~^~207~^0.73^16^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~255~^67.01^16^0.48^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05108~^~303~^1.12^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~309~^2.02^16^0.04^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05108~^~418~^0.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05109~^~203~^17.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~204~^15.46^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~205~^0.09^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05109~^~207~^0.86^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~255~^65.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~303~^1.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~309~^1.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~418~^0.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~203~^23.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~204~^13.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~205~^0.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05110~^~207~^0.85^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~255~^62.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~303~^1.61^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~309~^1.71^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~418~^0.78^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05111~^~203~^24.31^3^0.16^~1~^~A~^^^1^24.06^24.63^2^23.60^25.02^~4~^~04/01/2014~ -~05111~^~204~^4.02^3^0.50^~1~^~A~^^^1^3.08^4.81^2^1.84^6.19^~4~^~04/01/2014~ -~05111~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~207~^1.41^3^0.05^~1~^~A~^^^1^1.35^1.52^2^1.18^1.64^~4~^~04/01/2014~ -~05111~^~255~^70.78^3^0.69^~1~^~A~^^^1^69.87^72.14^2^67.79^73.76^~4~^~04/01/2014~ -~05111~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~303~^5.91^3^0.35^~1~^~A~^^^1^5.19^6.31^2^4.36^7.45^~4~^~04/01/2014~ -~05111~^~309~^1.68^3^0.06^~1~^~A~^^^1^1.56^1.76^2^1.41^1.94^~4~^~04/01/2014~ -~05111~^~323~^0.57^2^^~1~^~A~^^^1^0.53^0.61^1^^^^~04/01/2014~ -~05111~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~342~^0.06^2^^~1~^~A~^^^1^0.06^0.06^1^^^^~04/01/2014~ -~05111~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05111~^~418~^4.10^3^0.32^~1~^~A~^^^1^3.50^4.60^2^2.71^5.48^~4~^~04/01/2014~ -~05111~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05111~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05112~^~203~^23.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~204~^13.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05112~^~207~^0.86^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~255~^62.10^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~303~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~309~^1.45^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~418~^0.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~203~^20.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~204~^2.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05113~^~207~^1.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~255~^74.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~303~^1.03^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~309~^1.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~323~^0.22^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05113~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~203~^25.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~204~^6.63^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05114~^~207~^0.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~255~^67.41^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~303~^1.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~309~^1.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~418~^0.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~203~^18.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~204~^5.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~205~^1.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05115~^~207~^0.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~255~^74.73^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~303~^5.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~309~^3.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~418~^9.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~203~^26.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~204~^5.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~205~^0.86^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05116~^~207~^0.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~255~^66.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~303~^6.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~309~^4.63^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~418~^8.45^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~203~^22.20^14^0.56^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~204~^1.63^11^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05117~^~207~^1.10^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~255~^74.30^13^0.29^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~303~^0.89^3^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~309~^0.66^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~323~^0.22^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05117~^~418~^0.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~203~^27.13^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~204~^4.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05118~^~207~^0.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~255~^67.85^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05118~^~303~^1.08^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~309~^0.78^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05118~^~418~^0.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~05118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05119~^~203~^18.74^8^0.40^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~204~^3.61^10^0.48^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05119~^~207~^1.04^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~255~^75.48^7^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~303~^1.15^3^0.13^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~309~^1.65^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~323~^0.21^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05119~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~203~^23.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~204~^8.75^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05120~^~207~^0.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~255~^67.05^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~303~^1.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~309~^2.13^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~418~^0.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~203~^17.48^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~204~^19.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~205~^0.19^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05121~^~207~^1.02^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~255~^62.50^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~303~^1.51^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~309~^1.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~418~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05122~^~203~^24.88^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~204~^11.91^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~205~^0.00^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~207~^0.79^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~255~^64.24^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~269~^0.00^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~303~^1.64^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~309~^1.96^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~323~^0.28^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~341~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~342~^0.02^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~343~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~344~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~345~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~346~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~347~^0.00^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~418~^0.95^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~573~^0.00^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~578~^0.00^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05123~^~203~^17.55^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~204~^20.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05123~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~255~^61.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~303~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~309~^1.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~323~^0.33^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05123~^~418~^0.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~203~^26.88^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~204~^18.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05124~^~207~^1.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~255~^53.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~303~^1.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~309~^1.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~418~^0.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~203~^21.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~204~^6.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05125~^~207~^1.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~255~^72.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05125~^~303~^1.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~309~^1.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~323~^0.24^0^^~4~^~CASN~^^^^^^^^^^~08/01/2002~ -~05125~^~418~^0.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05126~^~203~^30.42^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~204~^11.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05126~^~207~^1.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~255~^56.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~05126~^~303~^1.43^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~309~^2.06^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~323~^0.30^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~05126~^~418~^0.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~203~^17.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~204~^9.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05127~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~255~^69.80^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~303~^5.93^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~309~^3.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~418~^10.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~203~^25.73^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~204~^9.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~205~^0.11^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05128~^~207~^0.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~255~^64.00^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~303~^6.44^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~309~^4.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~418~^9.48^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~203~^23.10^89^0.14^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~204~^4.21^48^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05129~^~207~^1.10^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~255~^73.24^93^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~303~^0.92^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~309~^0.60^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~323~^0.23^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05129~^~418~^0.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~203~^33.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~204~^7.98^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05130~^~207~^1.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~255~^57.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~303~^1.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~309~^0.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~418~^0.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~203~^19.70^87^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~204~^8.12^55^0.43^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05131~^~207~^1.41^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~255~^71.94^75^0.31^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~303~^1.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~309~^2.08^5^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~323~^0.24^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05131~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~203~^28.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~204~^15.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05132~^~207~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~255~^55.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~303~^1.64^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~309~^3.12^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~203~^18.51^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~204~^16.90^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~205~^0.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05133~^~207~^0.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~255~^63.66^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~303~^1.41^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~309~^1.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~418~^1.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~203~^28.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~204~^11.67^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05134~^~207~^1.01^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~255~^59.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~303~^1.79^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~309~^1.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~203~^18.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~204~^17.07^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05135~^~207~^0.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~255~^63.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~303~^1.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~309~^1.17^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~323~^0.32^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05135~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~203~^28.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~204~^11.65^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05136~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~255~^58.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~309~^1.74^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~203~^18.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~204~^5.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~205~^1.42^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05137~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~255~^74.12^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~303~^6.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~309~^3.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~418~^12.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~203~^26.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~204~^5.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~205~^0.76^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05138~^~207~^0.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~255~^66.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~303~^6.80^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~309~^4.67^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~418~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~203~^11.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~204~^39.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05139~^~207~^0.68^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~255~^48.50^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05139~^~303~^2.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~309~^1.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~323~^0.70^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05139~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~203~^18.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~204~^28.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05140~^~207~^0.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~255~^51.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05140~^~303~^2.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~309~^1.86^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~323~^0.70^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05140~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~203~^18.28^13^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~204~^5.95^13^0.50^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~205~^0.94^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05141~^~207~^1.06^13^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~255~^73.77^13^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05141~^~303~^2.40^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~309~^1.90^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~323~^0.70^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05141~^~418~^0.40^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05142~^~203~^23.48^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~204~^11.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05142~^~207~^1.11^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~255~^64.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05142~^~303~^2.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~309~^2.60^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~323~^0.70^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05142~^~418~^0.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05143~^~203~^18.74^29^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~204~^4.64^47^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~205~^3.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05143~^~207~^1.32^28^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~255~^71.78^37^0.46^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~303~^30.53^20^0.66^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~309~^3.07^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~418~^54.00^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~203~^17.42^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~204~^15.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05144~^~207~^1.16^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~255~^66.52^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~303~^4.16^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~309~^0.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~418~^0.65^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~203~^19.85^17^0.35^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~204~^4.25^17^0.27^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05145~^~207~^1.33^17^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~255~^75.51^17^0.35^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~303~^4.51^16^0.31^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~309~^0.74^16^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~418~^0.76^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~203~^15.86^5^0.79^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~204~^33.62^5^2.56^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05146~^~207~^0.87^5^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~255~^49.66^5^1.70^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~303~^2.50^3^0.60^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~309~^1.72^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~418~^0.34^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~203~^25.16^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~204~^21.92^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05147~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~255~^51.95^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05147~^~303~^2.83^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~309~^2.62^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~323~^1.74^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05147~^~418~^0.41^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05148~^~203~^22.75^4^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~204~^7.13^4^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05148~^~207~^1.10^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~255~^68.30^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~303~^2.57^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~309~^2.34^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~418~^0.49^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~203~^28.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~204~^12.67^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05149~^~207~^1.14^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~255~^57.23^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~303~^2.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~309~^3.17^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~418~^0.49^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~203~^16.37^10^0.94^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~204~^4.28^40^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~205~^6.32^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05150~^~207~^1.25^4^0.10^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~255~^71.78^17^0.52^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~303~^30.53^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~309~^3.07^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~418~^54.00^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~203~^23.40^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05151~^~204~^6.45^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05151~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05151~^~207~^1.25^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05151~^~255~^68.90^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05151~^~303~^0.84^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~309~^1.13^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~418~^0.34^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~203~^20.64^10^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05152~^~204~^2.47^10^0.44^~1~^^^^^^^^^^^~08/01/1979~ -~05152~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05152~^~207~^1.25^9^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05152~^~255~^74.44^10^0.44^~1~^^^^^^^^^^^~08/01/1979~ -~05152~^~303~^0.77^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~309~^1.20^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~418~^0.37^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~203~^22.70^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~204~^9.29^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05153~^~207~^1.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~255~^67.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~303~^1.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~309~^0.96^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~418~^0.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~203~^23.57^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~204~^3.64^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05154~^~207~^1.35^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~255~^72.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~303~^1.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~309~^0.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~418~^0.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~203~^24.37^9^0.34^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~204~^3.25^9^0.59^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05155~^~207~^1.30^25^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~255~^72.40^9^0.36^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~303~^0.79^14^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~309~^0.63^14^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~418~^0.84^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~203~^22.20^6^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~204~^4.30^6^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05156~^~207~^1.44^14^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~255~^73.40^6^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~303~^1.78^14^0.22^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~309~^1.53^14^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~418~^0.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~203~^19.63^12^0.32^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~204~^12.05^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05157~^~207~^0.90^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~255~^69.65^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~303~^3.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~309~^2.42^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~418~^0.43^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~203~^21.76^18^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~204~^4.53^18^0.47^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05158~^~207~^1.32^18^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~255~^70.03^18^0.38^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~303~^4.51^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~309~^2.70^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~418~^0.47^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~203~^22.59^37^0.13^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~204~^2.99^52^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05159~^~207~^1.27^37^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~255~^71.67^49^0.41^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~303~^2.31^3^0.15^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~309~^2.70^3^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~418~^0.47^3^0.02^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~203~^18.47^3^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~204~^23.80^3^1.10^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05160~^~207~^1.40^3^0.10^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~255~^56.60^3^1.05^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~303~^3.54^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~309~^2.20^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~418~^0.40^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~203~^17.50^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~204~^7.50^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05161~^~207~^1.17^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~255~^72.80^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~303~^4.51^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~309~^2.70^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~418~^0.47^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~203~^21.76^13^0.40^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~204~^4.52^15^0.23^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05162~^~207~^1.28^13^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~255~^72.82^13^0.41^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~303~^2.31^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~309~^2.70^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~418~^0.47^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05165~^~203~^21.64^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~204~^5.64^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~03/01/2017~ -~05165~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~209~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~210~^0.07^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05165~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~255~^72.69^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~269~^0.07^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05165~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~303~^0.86^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~309~^1.78^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~323~^0.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~418~^1.22^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~203~^28.55^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~204~^7.39^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~205~^0.06^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~207~^1.18^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~255~^63.52^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~303~^1.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~309~^2.48^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~346~^0.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~418~^1.02^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~203~^22.64^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~204~^1.93^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05167~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~209~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~210~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~255~^75.37^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~269~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~303~^0.86^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~309~^1.84^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~323~^0.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~418~^1.24^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~203~^29.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~204~^3.84^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~255~^66.70^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~303~^1.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~309~^2.51^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~323~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~418~^0.94^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05169~^~203~^12.96^2^^~1~^~A~^^^1^12.47^13.46^1^^^^~08/01/2012~ -~05169~^~204~^38.93^2^^~1~^~A~^^^1^38.35^39.52^1^^^^~08/01/2012~ -~05169~^~205~^0.16^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~05169~^~207~^0.52^2^^~1~^~A~^^^1^0.51^0.52^1^^^^~08/01/2012~ -~05169~^~209~^0.06^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05169~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05169~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05169~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05169~^~255~^48.38^2^^~1~^~A~^^^1^47.53^49.22^1^^^^~08/01/2012~ -~05169~^~269~^0.10^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~05169~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05169~^~303~^0.85^2^^~1~^~A~^^^1^0.78^0.92^1^^^^~08/01/2012~ -~05169~^~309~^1.10^2^^~1~^~A~^^^1^1.00^1.19^1^^^^~08/01/2012~ -~05169~^~323~^0.09^2^^~1~^~A~^^^^0.09^0.09^^^^^~08/01/2012~ -~05169~^~341~^0.01^2^^~1~^~A~^^^^0.00^0.02^^^^^~08/01/2012~ -~05169~^~342~^0.01^2^^~1~^~A~^^^^0.00^0.03^^^^^~08/01/2012~ -~05169~^~343~^0.01^2^^~1~^~A~^^^^0.00^0.02^^^^^~08/01/2012~ -~05169~^~344~^0.01^2^^~1~^~A~^^^^0.00^0.02^^^^^~08/01/2012~ -~05169~^~345~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05169~^~346~^0.04^2^^~1~^~A~^^^^0.04^0.04^^^^^~08/01/2012~ -~05169~^~347~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05169~^~418~^0.88^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~203~^23.94^2^^~1~^~A~^^^1^20.65^27.23^1^^^^~08/01/2012~ -~05170~^~204~^39.31^2^^~1~^~A~^^^1^38.56^40.06^1^^^^~08/01/2012~ -~05170~^~205~^0.57^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~207~^1.27^2^^~1~^~A~^^^1^1.27^1.27^1^^^^~08/01/2012~ -~05170~^~255~^34.91^2^^~1~^~A~^^^1^32.64^37.19^1^^^^~08/01/2012~ -~05170~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~303~^1.63^2^^~1~^~A~^^^1^1.48^1.77^1^^^^~08/01/2012~ -~05170~^~309~^2.14^2^^~1~^~A~^^^1^1.97^2.31^1^^^^~08/01/2012~ -~05170~^~323~^0.15^2^^~1~^~A~^^^^0.10^0.20^^^^^~08/01/2012~ -~05170~^~341~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05170~^~342~^0.07^2^^~1~^~A~^^^^0.06^0.08^^^^^~08/01/2012~ -~05170~^~343~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05170~^~344~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05170~^~345~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05170~^~346~^0.08^2^^~1~^~A~^^^^0.07^0.10^^^^^~08/01/2012~ -~05170~^~347~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05170~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~05170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05171~^~203~^18.18^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~204~^5.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~205~^0.07^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~207~^1.13^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~255~^76.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~303~^5.92^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~309~^3.23^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~323~^0.25^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~342~^0.15^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~347~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~418~^13.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~203~^26.44^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~204~^6.61^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~207~^1.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~255~^66.65^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~303~^3.39^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~309~^4.29^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~323~^0.13^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~342~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~418~^15.89^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05172~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~ -~05173~^~203~^18.80^5^0.18^~1~^~A~^^^1^18.47^19.40^4^18.29^19.31^~2, 3~^~08/01/2012~ -~05173~^~204~^3.37^4^0.45^~1~^~A~^^^1^2.26^4.40^3^1.92^4.81^~2, 3~^~08/01/2012~ -~05173~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2004~ -~05173~^~207~^0.93^4^0.03^~1~^~A~^^^1^0.87^1.02^3^0.82^1.03^~2, 3~^~08/01/2012~ -~05173~^~255~^77.47^4^0.29^~1~^~A~^^^1^76.89^78.15^3^76.53^78.41^~2, 3~^~08/01/2012~ -~05173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05173~^~303~^2.78^4^0.23^~1~^~A~^^^1^2.34^3.36^3^2.04^3.51^~2, 3~^~08/01/2012~ -~05173~^~309~^3.03^4^0.09^~1~^~A~^^^1^2.88^3.30^3^2.72^3.32^~2, 3~^~08/01/2012~ -~05173~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~342~^0.15^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~344~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05173~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05173~^~418~^3.61^2^^~1~^~A~^^^1^3.35^3.87^1^^^^~08/01/2012~ -~05173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05174~^~203~^26.45^4^0.30^~1~^~A~^^^1^25.69^26.96^3^25.48^27.41^~2, 3~^~08/01/2012~ -~05174~^~204~^4.64^4^0.55^~1~^~A~^^^1^3.97^6.29^3^2.87^6.40^~2, 3~^~08/01/2012~ -~05174~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~207~^0.86^4^0.02^~1~^~A~^^^1^0.81^0.90^3^0.79^0.93^~2, 3~^~08/01/2012~ -~05174~^~255~^69.22^4^0.87^~1~^~A~^^^1^66.94^70.66^3^66.42^72.01^~2, 3~^~08/01/2012~ -~05174~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05174~^~303~^3.68^4^0.09^~1~^~A~^^^1^3.41^3.86^3^3.36^3.98^~2, 3~^~08/01/2012~ -~05174~^~309~^3.92^4^0.01^~1~^~A~^^^1^3.89^3.94^3^3.88^3.95^~2, 3~^~08/01/2012~ -~05174~^~323~^0.11^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05174~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~05174~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05174~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05174~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05174~^~346~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05174~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05174~^~418~^3.91^2^^~1~^~A~^^^1^3.66^4.15^1^^^^~08/01/2012~ -~05174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05175~^~203~^16.70^5^0.32^~1~^~A~^^^1^16.01^17.75^4^15.80^17.60^~2, 3~^~08/01/2012~ -~05175~^~204~^7.44^4^1.39^~1~^~A~^^^1^3.92^9.77^3^2.99^11.89^~2, 3~^~08/01/2012~ -~05175~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~207~^0.99^4^0.03^~1~^~A~^^^1^0.94^1.09^3^0.88^1.09^~2, 3~^~08/01/2012~ -~05175~^~255~^74.47^4^1.32^~1~^~A~^^^1^71.54^77.54^3^70.25^78.67^~2, 3~^~08/01/2012~ -~05175~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05175~^~303~^3.70^4^0.63^~1~^~A~^^^1^2.35^5.24^3^1.67^5.71^~2, 3~^~08/01/2012~ -~05175~^~309~^3.21^4^0.24^~1~^~A~^^^1^2.75^3.88^3^2.44^3.97^~2, 3~^~08/01/2012~ -~05175~^~323~^0.31^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~341~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05175~^~342~^0.27^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05175~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05175~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05175~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05175~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05175~^~418~^13.30^2^^~1~^~A~^^^1^12.90^13.70^1^^^^~08/01/2012~ -~05176~^~203~^24.88^4^0.11^~1~^~A~^^^1^24.63^25.08^3^24.52^25.23^~2, 3~^~08/01/2012~ -~05176~^~204~^7.52^4^0.61^~1~^~A~^^^1^6.12^8.57^3^5.55^9.49^~2, 3~^~08/01/2012~ -~05176~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05176~^~207~^1.21^4^0.05^~1~^~A~^^^1^1.10^1.34^3^1.02^1.39^~2, 3~^~08/01/2012~ -~05176~^~255~^67.15^4^0.54^~1~^~A~^^^1^66.09^68.56^3^65.41^68.87^~2, 3~^~08/01/2012~ -~05176~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05176~^~303~^6.96^4^0.35^~1~^~A~^^^1^6.33^7.95^3^5.84^8.07^~2, 3~^~08/01/2012~ -~05176~^~309~^4.60^4^0.01^~1~^~A~^^^1^4.56^4.63^3^4.55^4.65^~2, 3~^~08/01/2012~ -~05176~^~323~^0.13^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05176~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05176~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05176~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05176~^~346~^0.08^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05176~^~418~^13.90^2^^~1~^~A~^^^1^13.20^14.60^1^^^^~08/01/2012~ -~05176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05177~^~203~^18.26^5^0.41^~1~^~A~^^^1^16.69^19.12^4^17.11^19.40^~2, 3~^~08/01/2012~ -~05177~^~204~^5.50^4^0.44^~1~^~A~^^^1^4.78^6.75^3^4.10^6.90^~2, 3~^~08/01/2012~ -~05177~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~207~^1.32^4^0.05^~1~^~A~^^^1^1.22^1.47^3^1.14^1.49^~2, 3~^~08/01/2012~ -~05177~^~255~^75.54^4^0.54^~1~^~A~^^^1^74.65^77.12^3^73.79^77.27^~2, 3~^~08/01/2012~ -~05177~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05177~^~303~^8.94^4^1.10^~1~^~A~^^^1^5.84^11.03^3^5.41^12.46^~2, 3~^~08/01/2012~ -~05177~^~309~^3.37^4^0.14^~1~^~A~^^^1^2.96^3.58^3^2.92^3.81^~2, 3~^~08/01/2012~ -~05177~^~323~^0.24^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05177~^~342~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05177~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05177~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05177~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~347~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05177~^~418~^19.73^3^2.72^~1~^~A~^^^1^16.20^25.10^2^7.99^31.47^~2, 3~^~08/01/2012~ -~05177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05178~^~203~^27.00^4^0.27^~1~^~A~^^^1^26.50^27.76^3^26.13^27.86^~2, 3~^~08/01/2012~ -~05178~^~204~^8.18^4^0.46^~1~^~A~^^^1^7.36^9.40^3^6.70^9.65^~2, 3~^~08/01/2012~ -~05178~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~207~^1.47^4^0.03^~1~^~A~^^^1^1.37^1.54^3^1.34^1.58^~2, 3~^~08/01/2012~ -~05178~^~255~^63.99^4^0.36^~1~^~A~^^^1^63.06^64.75^3^62.84^65.14^~2, 3~^~08/01/2012~ -~05178~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05178~^~303~^1.79^4^0.38^~1~^~A~^^^1^1.20^2.91^3^0.56^3.01^~2, 3~^~08/01/2012~ -~05178~^~309~^4.53^4^0.24^~1~^~A~^^^1^4.08^5.14^3^3.74^5.30^~2, 3~^~08/01/2012~ -~05178~^~323~^0.15^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05178~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05178~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05178~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~05178~^~418~^28.17^3^0.34^~1~^~A~^^^1^27.60^28.80^2^26.66^29.66^~2, 3~^~08/01/2012~ -~05178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05179~^~203~^16.51^3^0.13^~1~^~A~^^^1^16.32^16.78^2^15.92^17.10^~4~^~08/01/2012~ -~05179~^~204~^6.04^3^0.45^~1~^~A~^^^1^5.31^6.87^2^4.09^7.98^~4~^~08/01/2012~ -~05179~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05179~^~207~^1.12^3^0.05^~1~^~A~^^^1^1.03^1.23^2^0.87^1.36^~4~^~08/01/2012~ -~05179~^~255~^75.92^3^0.73^~1~^~A~^^^1^74.56^77.08^2^72.76^79.08^~4~^~08/01/2012~ -~05179~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~303~^1.01^3^0.06^~1~^~A~^^^1^0.87^1.10^2^0.70^1.30^~4~^~08/01/2012~ -~05179~^~309~^3.39^3^0.06^~1~^~A~^^^1^3.26^3.47^2^3.10^3.67^~4~^~08/01/2012~ -~05179~^~323~^0.12^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~418~^1.76^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05180~^~203~^22.48^3^0.25^~1~^~A~^^^1^22.06^22.93^2^21.39^23.56^~4~^~08/01/2012~ -~05180~^~204~^7.36^3^0.59^~1~^~A~^^^1^6.29^8.36^2^4.78^9.93^~4~^~08/01/2012~ -~05180~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05180~^~207~^1.12^3^0.16^~1~^~A~^^^1^0.81^1.36^2^0.41^1.81^~4~^~08/01/2012~ -~05180~^~255~^69.47^3^0.63^~1~^~A~^^^1^68.47^70.65^2^66.74^72.20^~4~^~08/01/2012~ -~05180~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~05180~^~303~^1.18^3^0.12^~1~^~A~^^^1^1.03^1.41^2^0.66^1.69^~4~^~08/01/2012~ -~05180~^~309~^4.03^3^0.16^~1~^~A~^^^1^3.85^4.35^2^3.34^4.71^~4~^~08/01/2012~ -~05180~^~323~^0.64^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~05180~^~418~^1.42^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05180~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05181~^~203~^21.96^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~204~^7.43^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~05181~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~209~^0.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~210~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~255~^70.68^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~269~^0.06^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05181~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~303~^0.75^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~309~^1.25^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~418~^0.67^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~203~^29.55^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~204~^5.57^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~207~^1.22^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~255~^64.79^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~303~^0.80^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~309~^1.76^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~418~^0.50^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~203~^19.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~204~^8.97^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~05183~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~209~^0.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~210~^0.10^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~255~^71.10^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~269~^0.10^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05183~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~303~^1.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~309~^2.32^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~323~^0.11^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~418~^1.84^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~203~^27.27^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~204~^9.95^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~205~^0.07^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~207~^1.14^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~255~^61.66^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~303~^1.45^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~309~^3.35^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~323~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~343~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~418~^1.66^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05185~^~203~^23.66^4^0.34^~1~^~A~^^^1^22.95^24.38^3^22.55^24.77^~2, 3~^~08/01/2012~ -~05185~^~204~^1.48^4^0.06^~1~^~A~^^^1^1.37^1.61^3^1.28^1.68^~2, 3~^~08/01/2012~ -~05185~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05185~^~207~^1.04^4^0.01^~1~^~A~^^^1^1.01^1.08^3^0.98^1.08^~2, 3~^~08/01/2012~ -~05185~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~08/01/2012~ -~05185~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~255~^74.89^4^0.34^~1~^~A~^^^1^73.97^75.41^3^73.80^75.97^~2, 3~^~08/01/2012~ -~05185~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~08/01/2012~ -~05185~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~303~^0.73^4^0.05^~1~^~A~^^^1^0.61^0.87^3^0.54^0.90^~2, 3~^~08/01/2012~ -~05185~^~309~^1.28^4^0.10^~1~^~A~^^^1^1.03^1.47^3^0.93^1.62^~2, 3~^~08/01/2012~ -~05185~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~08/01/2012~ -~05185~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~08/01/2012~ -~05185~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05185~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~08/01/2012~ -~05185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05186~^~203~^30.13^4^0.95^~1~^~A~^^^1^27.97^32.31^3^27.09^33.17^~2, 3~^~08/01/2012~ -~05186~^~204~^2.08^4^0.06^~1~^~A~^^^1^1.97^2.23^3^1.87^2.27^~2, 3~^~08/01/2012~ -~05186~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05186~^~207~^1.22^4^0.06^~1~^~A~^^^1^1.08^1.35^3^1.01^1.41^~2, 3~^~08/01/2012~ -~05186~^~255~^67.88^4^0.94^~1~^~A~^^^1^65.97^70.39^3^64.86^70.90^~2, 3~^~08/01/2012~ -~05186~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05186~^~303~^0.71^4^5.0e-03^~1~^~A~^^^1^0.70^0.72^3^0.69^0.72^~2, 3~^~08/01/2012~ -~05186~^~309~^1.72^4^0.03^~1~^~A~^^^1^1.64^1.77^3^1.62^1.81^~2, 3~^~08/01/2012~ -~05186~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~08/01/2012~ -~05186~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05186~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~08/01/2012~ -~05186~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~08/01/2012~ -~05186~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05186~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05186~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~08/01/2012~ -~05186~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05186~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05186~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05186~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05187~^~203~^21.28^4^1.04^~1~^~A~^^^1^19.87^24.35^3^17.96^24.60^~4~^~08/01/2012~ -~05187~^~204~^2.50^4^0.16^~1~^~A~^^^1^2.10^2.91^3^1.97^3.03^~4~^~08/01/2012~ -~05187~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~05187~^~207~^1.03^4^0.03^~1~^~A~^^^1^0.97^1.12^3^0.91^1.15^~4~^~08/01/2012~ -~05187~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~08/01/2012~ -~05187~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~255~^76.01^4^0.77^~1~^~A~^^^1^73.79^77.43^3^73.53^78.48^~4~^~08/01/2012~ -~05187~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~08/01/2012~ -~05187~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~303~^1.04^4^0.12^~1~^~A~^^^1^0.69^1.28^3^0.64^1.43^~4~^~08/01/2012~ -~05187~^~309~^2.59^4^0.07^~1~^~A~^^^1^2.39^2.72^3^2.35^2.82^~4~^~08/01/2012~ -~05187~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~08/01/2012~ -~05187~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~08/01/2012~ -~05187~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~08/01/2012~ -~05187~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~346~^0.01^3^0.01^~1~^~A~^^^^0.00^0.04^^^^^~08/01/2012~ -~05187~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05187~^~418~^2.05^2^^~1~^~A~^^^^2.00^2.10^^^^^~08/01/2012~ -~05187~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05188~^~203~^27.71^4^1.57^~1~^~A~^^^1^24.44^31.77^3^22.69^32.73^~2, 3~^~08/01/2012~ -~05188~^~204~^6.04^4^0.37^~1~^~A~^^^1^5.10^6.88^3^4.86^7.21^~2, 3~^~08/01/2012~ -~05188~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~207~^1.12^4^0.04^~1~^~A~^^^1^1.06^1.25^3^0.98^1.25^~2, 3~^~08/01/2012~ -~05188~^~255~^65.23^4^1.64^~1~^~A~^^^1^60.76^68.41^3^59.98^70.46^~2, 3~^~08/01/2012~ -~05188~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05188~^~303~^1.43^4^0.12^~1~^~A~^^^1^1.23^1.79^3^1.02^1.83^~2, 3~^~08/01/2012~ -~05188~^~309~^3.51^4^0.08^~1~^~A~^^^1^3.31^3.71^3^3.24^3.78^~2, 3~^~08/01/2012~ -~05188~^~323~^0.07^3^2.0e-03^~1~^~A~^^^^0.06^0.07^^^^^~08/01/2012~ -~05188~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05188~^~342~^0.04^3^4.0e-03^~1~^~A~^^^^0.03^0.05^^^^^~08/01/2012~ -~05188~^~343~^0.03^3^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~08/01/2012~ -~05188~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05188~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05188~^~346~^0.05^3^3.0e-03^~1~^~A~^^^^0.05^0.06^^^^^~08/01/2012~ -~05188~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~08/01/2012~ -~05188~^~418~^1.65^2^^~1~^~A~^^^^1.60^1.70^^^^^~08/01/2012~ -~05188~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05188~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~203~^26.59^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~204~^14.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~205~^0.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05190~^~207~^0.93^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~255~^57.94^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05190~^~303~^2.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~309~^3.92^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~323~^0.59^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05190~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05191~^~203~^21.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~204~^7.02^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05191~^~207~^0.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~255~^70.05^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~309~^1.57^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~418~^0.42^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~203~^28.71^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~204~^7.41^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05192~^~207~^1.03^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~255~^63.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~303~^1.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~309~^2.03^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~203~^19.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~204~^6.72^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05193~^~207~^0.89^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~255~^72.69^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~303~^1.72^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~309~^3.09^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~418~^0.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~203~^27.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~204~^9.82^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~ -~05194~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~255~^61.19^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05194~^~303~^2.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~309~^4.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~323~^0.62^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05194~^~418~^0.36^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05194~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05195~^~203~^20.22^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~204~^12.32^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05195~^~207~^0.81^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~255~^66.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~303~^1.26^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~309~^1.54^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~418~^0.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~203~^27.38^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~204~^12.43^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05196~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~255~^59.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05196~^~303~^1.46^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~309~^2.10^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~323~^0.17^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05196~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05196~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~203~^28.26^6^0.32^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~204~^5.72^6^0.30^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05200~^~207~^0.99^6^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~255~^65.76^6^0.26^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05200~^~303~^1.95^6^0.17^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~309~^2.89^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~323~^0.35^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05200~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05215~^~203~^21.28^4^1.04^~1~^~A~^^^^19.87^24.35^^^^^~01/01/2013~ -~05215~^~204~^2.50^4^0.16^~1~^~A~^^^^2.10^2.91^^^^^~01/01/2013~ -~05215~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05215~^~207~^1.03^4^0.03^~1~^~A~^^^^0.97^1.12^^^^^~01/01/2013~ -~05215~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05215~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~255~^76.01^4^0.77^~1~^~A~^^^^73.79^77.43^^^^^~01/01/2013~ -~05215~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05215~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~303~^1.04^4^0.12^~1~^~A~^^^^0.69^1.28^^^^^~01/01/2013~ -~05215~^~309~^2.59^4^0.07^~1~^~A~^^^^2.39^2.72^^^^^~01/01/2013~ -~05215~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~01/01/2013~ -~05215~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~01/01/2013~ -~05215~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05215~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~346~^0.01^3^0.01^~1~^~A~^^^^0.00^0.04^^^^^~01/01/2013~ -~05215~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05215~^~418~^2.05^2^^~1~^~A~^^^^2.00^2.10^^^^^~01/01/2013~ -~05215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~203~^27.71^4^1.57^~1~^~A~^^^^24.44^31.77^^^^^~01/01/2013~ -~05216~^~204~^6.04^4^0.37^~1~^~A~^^^^5.10^6.88^^^^^~01/01/2013~ -~05216~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05216~^~207~^1.12^4^0.04^~1~^~A~^^^^1.06^1.25^^^^^~01/01/2013~ -~05216~^~255~^65.23^4^1.64^~1~^~A~^^^^60.76^68.41^^^^^~01/01/2013~ -~05216~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~303~^1.43^4^0.12^~1~^~A~^^^^1.23^1.79^^^^^~01/01/2013~ -~05216~^~309~^3.51^4^0.08^~1~^~A~^^^^3.31^3.71^^^^^~01/01/2013~ -~05216~^~323~^0.07^3^2.0e-03^~1~^~A~^^^^0.06^0.07^^^^^~01/01/2013~ -~05216~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05216~^~342~^0.04^3^4.0e-03^~1~^~A~^^^^0.03^0.05^^^^^~01/01/2013~ -~05216~^~343~^0.03^3^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05216~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05216~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05216~^~346~^0.05^3^3.0e-03^~1~^~A~^^^^0.05^0.06^^^^^~01/01/2013~ -~05216~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05216~^~418~^1.65^2^^~1~^~A~^^^^1.60^1.70^^^^^~01/01/2013~ -~05216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~203~^23.66^4^0.34^~1~^~A~^^^^22.95^24.38^^^^^~01/01/2013~ -~05219~^~204~^1.48^4^0.06^~1~^~A~^^^^1.37^1.61^^^^^~01/01/2013~ -~05219~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05219~^~207~^1.04^4^0.01^~1~^~A~^^^^1.01^1.08^^^^^~01/01/2013~ -~05219~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05219~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~255~^74.89^4^0.34^~1~^~A~^^^^73.97^75.41^^^^^~01/01/2013~ -~05219~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05219~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~303~^0.73^4^0.05^~1~^~A~^^^^0.61^0.87^^^^^~01/01/2013~ -~05219~^~309~^1.28^4^0.10^~1~^~A~^^^^1.03^1.47^^^^^~01/01/2013~ -~05219~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~01/01/2013~ -~05219~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~01/01/2013~ -~05219~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05219~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~01/01/2013~ -~05219~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05219~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05220~^~203~^30.13^4^0.95^~1~^~A~^^^^27.97^32.31^^^^^~01/01/2013~ -~05220~^~204~^2.08^4^0.06^~1~^~A~^^^^1.97^2.23^^^^^~01/01/2013~ -~05220~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05220~^~207~^1.22^4^0.06^~1~^~A~^^^^1.08^1.35^^^^^~01/01/2013~ -~05220~^~255~^67.88^4^0.94^~1~^~A~^^^^65.97^70.39^^^^^~01/01/2013~ -~05220~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05220~^~303~^0.71^4^5.0e-03^~1~^~A~^^^^0.70^0.72^^^^^~01/01/2013~ -~05220~^~309~^1.72^4^0.03^~1~^~A~^^^^1.64^1.77^^^^^~01/01/2013~ -~05220~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05220~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05220~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05220~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05220~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05220~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05220~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05220~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05220~^~418~^0.39^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05227~^~203~^23.66^4^0.34^~1~^~A~^^^^22.95^24.38^^^^^~01/01/2013~ -~05227~^~204~^1.48^4^0.06^~1~^~A~^^^^1.37^1.61^^^^^~01/01/2013~ -~05227~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05227~^~207~^1.04^4^0.01^~1~^~A~^^^^1.01^1.08^^^^^~01/01/2013~ -~05227~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05227~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~255~^74.89^4^0.34^~1~^~A~^^^^73.97^75.41^^^^^~01/01/2013~ -~05227~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05227~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~303~^0.73^4^0.05^~1~^~A~^^^^0.61^0.87^^^^^~01/01/2013~ -~05227~^~309~^1.28^4^0.10^~1~^~A~^^^^1.03^1.47^^^^^~01/01/2013~ -~05227~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~01/01/2013~ -~05227~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~01/01/2013~ -~05227~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05227~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~01/01/2013~ -~05227~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05228~^~203~^30.13^4^0.95^~1~^~A~^^^^27.97^32.31^^^^^~01/01/2013~ -~05228~^~204~^2.08^4^0.06^~1~^~A~^^^^1.97^2.23^^^^^~01/01/2013~ -~05228~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05228~^~207~^1.22^4^0.06^~1~^~A~^^^^1.08^1.35^^^^^~01/01/2013~ -~05228~^~255~^67.88^4^0.94^~1~^~A~^^^^65.97^70.39^^^^^~01/01/2013~ -~05228~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~05228~^~303~^0.71^4^5.0e-03^~1~^~A~^^^^0.70^0.72^^^^^~01/01/2013~ -~05228~^~309~^1.72^4^0.03^~1~^~A~^^^^1.64^1.77^^^^^~01/01/2013~ -~05228~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05228~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05228~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05228~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05228~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05228~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05228~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05228~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05228~^~418~^0.81^0^^~4~^~BFPN~^~05185~^^^^^^^^^~01/01/2013~ -~05228~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05228~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05236~^~203~^19.03^15^0.68^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~204~^44.45^15^1.08^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05236~^~207~^0.63^15^0.01^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~255~^35.53^15^0.69^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~303~^1.82^15^0.07^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~309~^2.06^3^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~418~^0.24^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~203~^21.77^13^0.51^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~204~^7.95^13^0.32^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05277~^~207~^1.81^13^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~255~^68.65^13^0.57^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05277~^~303~^1.58^11^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~309~^1.41^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05277~^~323~^0.26^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~05277~^~418~^0.29^7^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05277~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05282~^~203~^11.40^15^0.77^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~204~^43.84^14^2.66^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~205~^4.67^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05282~^~207~^3.05^15^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~255~^37.04^15^2.59^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~303~^5.50^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~309~^0.92^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~418~^9.40^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~203~^23.68^9^0.57^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~204~^6.86^9^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~205~^1.47^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05284~^~207~^1.92^9^0.03^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~255~^66.07^9^0.91^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05284~^~303~^1.86^9^0.24^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~309~^2.37^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~323~^0.27^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~05284~^~418~^0.28^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05285~^~203~^18.70^6^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~204~^6.00^6^0.19^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~205~^1.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05285~^~207~^2.60^6^0.20^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~255~^71.70^6^0.08^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~303~^1.80^6^0.17^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~309~^2.02^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~418~^0.24^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~203~^5.88^4^0.18^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~204~^2.63^4^0.68^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~205~^4.61^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05286~^~207~^1.81^4^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~255~^85.07^4^0.21^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~303~^0.93^4^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~309~^0.70^4^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~418~^0.24^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~203~^22.16^18^0.67^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~204~^3.46^18^0.37^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05293~^~207~^2.06^5^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~255~^70.91^7^0.77^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~303~^0.66^19^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~309~^1.53^5^0.11^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~418~^0.32^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~203~^18.80^7^1.08^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~204~^8.54^7^0.99^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05294~^~207~^2.06^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~255~^70.60^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~303~^1.51^7^0.06^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~309~^4.12^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~418~^0.24^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~203~^17.60^6^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~204~^2.20^6^0.25^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~205~^6.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05295~^~207~^3.40^6^0.12^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~255~^70.40^6^0.43^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~303~^2.10^6^0.09^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~309~^1.91^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~418~^0.35^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~203~^14.20^11^0.17^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~204~^16.90^11^0.30^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~205~^17.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~ -~05300~^~207~^2.50^11^0.05^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~255~^49.40^11^0.33^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~303~^2.20^11^0.18^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~309~^1.46^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~418~^0.23^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~203~^11.39^33^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~204~^24.73^39^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05301~^~207~^0.96^23^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~255~^62.66^35^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~303~^1.57^9^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~309~^1.29^9^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~418~^0.25^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~203~^13.79^24^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~204~^15.48^22^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05302~^~207~^1.00^17^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~255~^69.29^22^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~303~^1.73^15^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~309~^1.82^15^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~418~^0.35^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~203~^14.72^18^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~204~^19.98^25^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05303~^~207~^1.15^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~255~^62.95^18^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~303~^1.22^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~309~^1.90^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~418~^0.27^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~203~^13.29^21^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~204~^15.96^21^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05304~^~207~^1.10^10^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~255~^69.09^21^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~303~^1.61^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~309~^2.90^6^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~418~^0.26^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05305~^~203~^19.66^29^0.53^~1~^~A~^^^1^15.61^24.90^28^18.56^20.76^~2, 3~^~04/01/2010~ -~05305~^~204~^7.66^29^0.84^~1~^~A~^^^1^1.54^16.05^28^5.94^9.38^~2, 3~^~04/01/2010~ -~05305~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05305~^~207~^1.00^29^0.02^~1~^~A~^^^1^0.87^1.17^28^0.96^1.04^~2, 3~^~04/01/2010~ -~05305~^~255~^72.36^29^0.42^~1~^~A~^^^1^67.23^75.97^28^71.49^73.22^~2, 3~^~04/01/2010~ -~05305~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05305~^~303~^1.09^12^0.08^~1~^~A~^^^1^0.60^1.49^11^0.90^1.26^~2, 3~^~04/01/2010~ -~05305~^~309~^2.35^12^0.14^~1~^~A~^^^1^1.37^2.91^11^2.03^2.66^~2, 3~^~04/01/2010~ -~05305~^~323~^0.09^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.03^0.14^~2, 3~^~04/01/2010~ -~05305~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.01^2^4.0e-03^5.0e-03^~2, 3~^~04/01/2010~ -~05305~^~342~^0.10^3^0.01^~1~^~A~^^^1^0.08^0.13^2^0.03^0.16^~2, 3~^~04/01/2010~ -~05305~^~343~^0.02^3^5.0e-03^~1~^~A~^^^1^0.01^0.02^2^-7.0e-03^0.03^~2, 3~^~04/01/2010~ -~05305~^~344~^0.02^3^5.0e-03^~1~^~A~^^^1^0.01^0.03^2^0.00^0.03^~2, 3~^~04/01/2010~ -~05305~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~346~^0.02^3^9.0e-03^~1~^~A~^^^1^0.01^0.04^2^-0.01^0.06^~2, 3~^~04/01/2010~ -~05305~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~418~^1.00^3^0.24^~1~^~A~^^^1^0.51^1.30^2^-0.06^2.07^~2, 3~^~04/01/2010~ -~05305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05305~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05306~^~203~^27.37^58^0.33^~1~^~A~^^^1^21.69^32.83^57^26.71^28.03^~2, 3~^~04/01/2010~ -~05306~^~204~^10.40^58^0.79^~1~^~A~^^^1^2.08^21.55^57^8.81^11.98^~2, 3~^~04/01/2010~ -~05306~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05306~^~207~^1.26^58^0.01^~1~^~A~^^^1^0.96^1.52^57^1.22^1.29^~2, 3~^~04/01/2010~ -~05306~^~255~^62.07^58^0.58^~1~^~A~^^^1^52.36^70.09^57^60.88^63.24^~2, 3~^~04/01/2010~ -~05306~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05306~^~303~^1.52^24^0.11^~1~^~A~^^^1^0.11^2.36^23^1.28^1.74^~2, 3~^~04/01/2010~ -~05306~^~309~^3.11^24^0.15^~1~^~A~^^^1^1.70^3.98^23^2.80^3.42^~2, 3~^~04/01/2010~ -~05306~^~323~^0.11^6^0.01^~1~^~A~^^^1^0.07^0.18^5^0.06^0.15^~2, 3~^~04/01/2010~ -~05306~^~341~^0.01^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^5^4.0e-03^8.0e-03^~2, 3~^~04/01/2010~ -~05306~^~342~^0.12^6^0.01^~1~^~A~^^^1^0.07^0.19^5^0.07^0.17^~2, 3~^~04/01/2010~ -~05306~^~343~^0.02^6^4.0e-03^~1~^~A~^^^1^0.01^0.03^5^9.0e-03^0.03^~2, 3~^~04/01/2010~ -~05306~^~344~^0.03^6^6.0e-03^~1~^~A~^^^1^0.01^0.04^5^0.01^0.04^~2, 3~^~04/01/2010~ -~05306~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~05306~^~346~^0.06^6^0.01^~1~^~A~^^^1^0.01^0.11^5^0.01^0.10^~2, 3~^~04/01/2010~ -~05306~^~347~^0.00^6^1.0e-03^~1~^~A~^^^1^0.00^0.00^5^-1.0e-03^3.0e-03^~1, 2, 3~^~04/01/2010~ -~05306~^~418~^1.34^6^0.22^~1~^~A~^^^1^0.67^1.90^5^0.77^1.91^~2, 3~^~04/01/2010~ -~05306~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05306~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05307~^~203~^17.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~204~^14.02^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05307~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~255~^68.18^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05307~^~303~^0.78^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~309~^1.15^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~323~^0.28^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05307~^~418~^0.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~203~^22.27^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~204~^18.21^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05308~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~255~^58.68^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05308~^~303~^0.91^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~309~^1.49^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~323~^0.36^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05308~^~418~^0.28^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~05308~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05309~^~203~^20.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~204~^3.33^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05309~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~255~^75.84^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05309~^~303~^0.74^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~309~^1.31^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~323~^0.21^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05309~^~418~^0.40^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~203~^23.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~204~^3.87^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1979~ -~05310~^~207~^1.04^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~255~^71.90^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05310~^~303~^0.77^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~309~^1.53^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~323~^0.24^0^^~4~^~CASN~^^^^^^^^^^~10/01/2002~ -~05310~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~05310~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~203~^25.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~204~^8.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~205~^0.90^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05311~^~207~^0.80^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~255~^64.90^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05311~^~303~^1.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~309~^2.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~323~^0.32^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~05311~^~418~^1.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~05311~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05312~^~203~^19.67^3^0.88^~1~^~A~^^^1^18.03^21.08^2^15.85^23.49^~2, 3~^~04/01/2004~ -~05312~^~204~^12.67^3^0.60^~1~^~A~^^^1^11.60^13.70^2^10.05^15.27^~2, 3~^~04/01/2004~ -~05312~^~205~^3.34^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05312~^~207~^2.53^3^0.57^~1~^~A~^^^1^1.91^3.68^2^0.04^5.01^~2, 3~^~04/01/2004~ -~05312~^~209~^0.73^3^0.73^~1~^~A~^^^1^0.00^2.20^2^-2.42^3.88^~1, 2, 3~^~04/01/2004~ -~05312~^~210~^0.34^3^0.57^~1~^~A~^^^1^0.00^1.85^2^-1.74^3.18^~1, 2, 3~^~07/01/2004~ -~05312~^~211~^1.16^3^0.67^~1~^~A~^^^1^1.11^3.15^2^-0.43^5.33^~2, 3~^~07/01/2004~ -~05312~^~212~^0.51^3^1.08^~1~^~A~^^^1^0.00^3.24^2^-3.56^5.72^~1, 2, 3~^~07/01/2004~ -~05312~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~05312~^~214~^0.04^3^0.08^~1~^~A~^^^1^0.00^0.25^2^-0.27^0.44^~1, 2, 3~^~07/01/2004~ -~05312~^~255~^61.79^3^0.59^~1~^~A~^^^1^60.62^62.50^2^59.25^64.33^~2, 3~^~04/01/2004~ -~05312~^~269~^2.04^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~05312~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~05312~^~303~^2.41^3^0.14^~1~^~A~^^^1^2.13^2.64^2^1.76^3.05^~2, 3~^~04/01/2004~ -~05312~^~309~^1.14^3^0.09^~1~^~A~^^^1^1.00^1.31^2^0.75^1.53^~2, 3~^~04/01/2004~ -~05312~^~323~^0.36^3^0.11^~1~^~A~^^^1^0.15^0.54^2^-0.13^0.84^~2, 3~^~05/01/2004~ -~05312~^~341~^0.00^3^1.0e-03^~1~^~A~^^^1^0.00^0.00^2^-2.0e-03^7.0e-03^~1, 2, 3~^~05/01/2004~ -~05312~^~342~^0.40^3^0.11^~1~^~A~^^^1^0.18^0.56^2^-0.08^0.88^~2, 3~^~05/01/2004~ -~05312~^~343~^0.09^3^0.02^~1~^~A~^^^1^0.06^0.13^2^0.00^0.17^~2, 3~^~05/01/2004~ -~05312~^~344~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.10^0.20^~1, 2, 3~^~05/01/2004~ -~05312~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~05312~^~346~^0.07^3^0.06^~1~^~A~^^^1^0.00^0.20^2^-0.22^0.35^~1, 2, 3~^~05/01/2004~ -~05312~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~05312~^~418~^0.40^3^0.07^~1~^~A~^^^1^0.33^0.55^2^0.08^0.72^~1, 2, 3~^~04/01/2004~ -~05313~^~203~^25.34^3^2.79^~1~^~A~^^^1^21.26^30.68^2^13.32^37.35^~2, 3~^~04/01/2004~ -~05313~^~204~^13.90^3^0.41^~1~^~A~^^^1^13.10^14.50^2^12.10^15.69^~2, 3~^~04/01/2004~ -~05313~^~205~^3.84^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05313~^~207~^3.04^3^0.58^~1~^~A~^^^1^2.15^4.14^2^0.52^5.55^~2, 3~^~04/01/2004~ -~05313~^~209~^0.80^3^0.80^~1~^~A~^^^1^0.00^2.40^2^-2.64^4.24^~1, 2, 3~^~04/01/2004~ -~05313~^~210~^0.35^3^0.41^~1~^~A~^^^1^0.00^1.36^2^-1.25^2.33^~1, 2, 3~^~07/01/2004~ -~05313~^~211~^1.21^3^0.54^~1~^~A~^^^1^0.85^2.73^2^-0.50^4.19^~2, 3~^~07/01/2004~ -~05313~^~212~^0.54^3^0.83^~1~^~A~^^^1^0.00^2.50^2^-2.75^4.41^~1, 2, 3~^~07/01/2004~ -~05313~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~05313~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~05313~^~255~^53.89^3^2.85^~1~^~A~^^^1^48.34^57.83^2^41.60^66.16^~2, 3~^~04/01/2004~ -~05313~^~269~^2.10^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~05313~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~ -~05313~^~303~^2.74^3^0.49^~1~^~A~^^^1^1.75^3.26^2^0.61^4.86^~2, 3~^~04/01/2004~ -~05313~^~309~^1.55^3^0.14^~1~^~A~^^^1^1.31^1.81^2^0.92^2.17^~2, 3~^~04/01/2004~ -~05313~^~323~^0.38^3^^~1~^~A~^^^1^0.13^0.52^2^-0.16^0.92^~2, 3~^~05/01/2004~ -~05313~^~341~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~05/01/2004~ -~05313~^~342~^0.39^3^0.12^~1~^~A~^^^1^0.15^0.53^2^-0.12^0.90^~2, 3~^~05/01/2004~ -~05313~^~343~^0.09^3^0.02^~1~^~A~^^^1^0.06^0.14^2^-0.01^0.19^~2, 3~^~05/01/2004~ -~05313~^~344~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.13^2^-0.14^0.23^~1, 2, 3~^~05/01/2004~ -~05313~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~05313~^~346~^0.06^3^0.06^~1~^~A~^^^1^0.00^0.19^2^-0.20^0.33^~1, 2, 3~^~05/01/2004~ -~05313~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~05313~^~418~^0.48^3^0.01^~1~^~A~^^^1^0.45^0.49^2^0.42^0.53^~2, 3~^~04/01/2004~ -~05314~^~203~^20.32^6^0.37^~1~^~A~^^^1^19.06^21.56^5^19.34^21.29^~2, 3~^~04/01/2013~ -~05314~^~204~^3.00^6^0.24^~1~^~A~^^^1^2.01^3.75^5^2.36^3.63^~2, 3~^~04/01/2013~ -~05314~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~05314~^~207~^1.36^6^0.04^~1~^~A~^^^1^1.21^1.50^5^1.25^1.46^~2, 3~^~04/01/2013~ -~05314~^~255~^75.59^6^0.57^~1~^~A~^^^1^73.52^76.74^5^74.12^77.06^~2, 3~^~04/01/2013~ -~05314~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~303~^0.34^6^0.01^~1~^~A~^^^1^0.29^0.39^5^0.30^0.37^~2, 3~^~04/01/2013~ -~05314~^~309~^0.63^6^0.03^~1~^~A~^^^1^0.56^0.76^5^0.54^0.70^~2, 3~^~04/01/2013~ -~05314~^~323~^0.19^2^^~1~^~A~^^^1^0.19^0.20^1^^^^~04/01/2013~ -~05314~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~342~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2013~ -~05314~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~05314~^~418~^0.19^3^0.01^~1~^~A~^^^1^0.17^0.20^2^0.14^0.23^~2, 3~^~04/01/2013~ -~05314~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05314~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~05315~^~203~^24.50^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~204~^10.85^8^0.74^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~05315~^~207~^1.15^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~255~^63.25^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~303~^3.26^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05316~^~203~^27.60^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~204~^2.50^8^0.10^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/1997~ -~05316~^~207~^1.40^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~255~^68.25^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~303~^4.49^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~203~^26.75^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~204~^11.40^8^0.71^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/1997~ -~05317~^~207~^1.00^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~255~^60.90^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~303~^2.08^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~203~^29.10^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~204~^5.96^8^0.41^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/1997~ -~05318~^~207~^1.10^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~255~^64.60^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~303~^2.33^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05319~^~203~^27.71^4^0.23^~1~^~A~^^^1^27.10^28.16^3^26.95^28.47^~2, 3~^~05/01/2012~ -~05319~^~204~^6.76^4^0.14^~1~^~A~^^^1^6.45^7.11^3^6.31^7.21^~2, 3~^~05/01/2012~ -~05319~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05319~^~207~^1.80^4^0.14^~1~^~A~^^^1^1.50^2.20^3^1.33^2.26^~2, 3~^~05/01/2012~ -~05319~^~255~^64.11^4^0.51^~1~^~A~^^^1^62.88^65.41^3^62.46^65.75^~2, 3~^~05/01/2012~ -~05319~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~303~^1.05^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~309~^2.86^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~323~^0.54^4^0.13^~1~^~A~^^^1^0.31^0.93^3^0.11^0.97^~2, 3~^~05/01/2012~ -~05319~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05319~^~342~^0.15^4^0.01^~1~^~A~^^^1^0.10^0.18^3^0.09^0.20^~2, 3~^~05/01/2012~ -~05319~^~343~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~05/01/2012~ -~05319~^~344~^0.04^4^6.0e-03^~1~^~A~^^^1^0.03^0.06^3^0.02^0.06^~2, 3~^~05/01/2012~ -~05319~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05319~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~05/01/2012~ -~05319~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05319~^~418~^0.47^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05319~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05320~^~203~^22.24^10^0.68^~1~^~A~^^^1^19.13^26.69^9^20.67^23.79^~4~^~04/01/2004~ -~05320~^~204~^14.87^10^0.49^~1~^~A~^^^1^11.50^17.40^9^13.74^15.99^~4~^~04/01/2004~ -~05320~^~205~^3.36^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~05320~^~207~^2.28^10^0.24^~1~^~A~^^^1^1.71^4.35^9^1.74^2.82^~4~^~04/01/2004~ -~05320~^~209~^0.76^5^0.46^~1~^~A~^^^1^0.00^2.00^4^-0.53^2.05^~1, 4~^~04/01/2004~ -~05320~^~210~^0.60^5^0.44^~1~^~A~^^^1^0.00^2.28^4^-0.62^1.83^~1, 4~^~04/01/2004~ -~05320~^~211~^0.92^5^0.37^~1~^~A~^^^1^0.00^1.59^4^-0.12^1.96^~1, 4~^~04/01/2004~ -~05320~^~212~^0.34^5^0.29^~1~^~A~^^^1^0.00^1.49^4^-0.46^1.14^~1, 4~^~04/01/2004~ -~05320~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~04/01/2004~ -~05320~^~214~^0.07^5^0.07^~1~^~A~^^^1^0.00^0.35^4^-0.12^0.26^~1, 4~^~04/01/2004~ -~05320~^~255~^57.25^10^0.47^~1~^~A~^^^1^54.86^60.06^9^56.17^58.31^~4~^~04/01/2004~ -~05320~^~269~^1.94^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~05320~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~303~^1.97^10^0.19^~1~^~A~^^^1^1.13^3.09^9^1.53^2.40^~4~^~04/01/2004~ -~05320~^~309~^1.30^10^0.04^~1~^~A~^^^1^1.10^1.54^9^1.20^1.40^~4~^~04/01/2004~ -~05320~^~323~^0.44^5^0.09^~1~^~A~^^^1^0.11^0.63^4^0.17^0.70^~4~^~04/01/2004~ -~05320~^~341~^0.01^5^4.0e-03^~1~^~A~^^^1^0.00^0.02^4^0.00^0.02^~1, 4~^~04/01/2004~ -~05320~^~342~^0.40^5^0.09^~1~^~A~^^^1^0.08^0.57^4^0.14^0.64^~4~^~04/01/2004~ -~05320~^~343~^0.09^5^0.02^~1~^~A~^^^1^0.04^0.14^4^0.03^0.14^~4~^~04/01/2004~ -~05320~^~344~^0.08^5^0.03^~1~^~A~^^^1^0.00^0.18^4^-0.02^0.18^~1, 4~^~04/01/2004~ -~05320~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~04/01/2004~ -~05320~^~346~^0.09^5^0.05^~1~^~A~^^^1^0.00^0.23^4^-0.06^0.23^~1, 4~^~04/01/2004~ -~05320~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~04/01/2004~ -~05320~^~418~^0.55^10^0.02^~1~^~A~^^^1^0.44^0.67^9^0.50^0.60^~4~^~04/01/2004~ -~05323~^~203~^14.33^3^0.13^~1~^~A~^^^1^14.08^14.55^2^13.74^14.91^~2, 3~^~02/01/2007~ -~05323~^~204~^20.04^3^1.10^~1~^~A~^^^1^18.10^21.92^2^15.30^24.78^~2, 3~^~02/01/2007~ -~05323~^~205~^13.61^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~207~^1.98^3^0.14^~1~^~A~^^^1^1.77^2.25^2^1.36^2.59^~2, 3~^~02/01/2007~ -~05323~^~209~^6.47^2^^~1~^~A~^^^1^4.88^8.05^1^^^^~02/01/2007~ -~05323~^~255~^50.04^3^2.20^~1~^~A~^^^1^46.04^53.66^2^40.53^59.53^~2, 3~^~02/01/2007~ -~05323~^~269~^0.00^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~303~^0.93^6^0.05^~1~^~A~^^^1^0.78^1.11^5^0.78^1.08^~2, 3~^~02/01/2007~ -~05323~^~309~^0.94^6^0.07^~1~^~A~^^^1^0.71^1.21^5^0.74^1.13^~2, 3~^~02/01/2007~ -~05323~^~323~^1.18^3^0.08^~1~^~A~^^^1^1.09^1.36^2^0.80^1.56^~2, 3~^~02/01/2007~ -~05323~^~341~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.06^~2, 3~^~02/01/2007~ -~05323~^~342~^2.86^3^0.59^~1~^~A~^^^1^1.80^3.84^2^0.32^5.40^~2, 3~^~02/01/2007~ -~05323~^~343~^0.99^3^0.21^~1~^~A~^^^1^0.62^1.35^2^0.08^1.89^~2, 3~^~02/01/2007~ -~05323~^~344~^0.44^3^0.10^~1~^~A~^^^1^0.27^0.62^2^5.0e-03^0.87^~2, 3~^~02/01/2007~ -~05323~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~346~^0.55^3^0.14^~1~^~A~^^^1^0.32^0.82^2^-0.08^1.17^~2, 3~^~02/01/2007~ -~05323~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~418~^0.23^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05323~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05324~^~203~^14.85^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~204~^19.58^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~205~^12.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~207~^1.92^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~209~^10.35^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~255~^50.82^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~303~^0.95^2^^~1~^~A~^^^1^0.85^1.05^1^^^^~02/01/2007~ -~05324~^~309~^1.05^2^^~1~^~A~^^^1^0.90^1.19^1^^^^~02/01/2007~ -~05324~^~323~^1.28^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~341~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~342~^2.21^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~343~^0.66^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~344~^0.68^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~346~^0.89^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~418~^0.29^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05324~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05326~^~203~^16.35^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~204~^12.89^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~205~^17.56^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~207~^1.87^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~255~^51.34^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~309~^0.77^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2007~ -~05326~^~418~^0.44^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~05327~^~203~^14.73^3^0.50^~1~^~A~^^^1^13.75^15.42^2^12.57^16.89^~2, 3~^~02/01/2007~ -~05327~^~204~^15.75^3^2.01^~1~^~A~^^^1^11.87^18.61^2^7.09^24.41^~2, 3~^~02/01/2007~ -~05327~^~205~^15.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05327~^~207~^1.77^3^0.15^~1~^~A~^^^1^1.61^2.07^2^1.11^2.41^~2, 3~^~02/01/2007~ -~05327~^~209~^13.32^2^^~1~^~A~^^^1^13.15^13.50^1^^^^~02/01/2007~ -~05327~^~210~^0.07^2^^~1~^~A~^^^1^0.00^0.15^1^^^^~02/01/2007~ -~05327~^~211~^0.15^2^^~1~^~A~^^^1^0.15^0.15^^^^^~02/01/2007~ -~05327~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~05327~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~05327~^~214~^0.15^2^^~1~^~A~^^^1^0.15^0.15^^^^^~02/01/2007~ -~05327~^~255~^52.74^3^1.13^~1~^~A~^^^1^51.32^54.98^2^47.86^57.61^~2, 3~^~02/01/2007~ -~05327~^~269~^0.37^2^^~1~^~A~^^^1^0.30^0.45^1^^^^~02/01/2007~ -~05327~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~05327~^~303~^1.11^3^0.09^~1~^~A~^^^1^0.98^1.29^2^0.70^1.51^~2, 3~^~02/01/2007~ -~05327~^~309~^0.78^3^0.09^~1~^~A~^^^1^0.67^0.96^2^0.38^1.17^~2, 3~^~02/01/2007~ -~05327~^~323~^0.08^0^^~4~^~BFPN~^~05062~^^^^^^^^^~02/01/2007~ -~05327~^~418~^0.27^3^0.01^~1~^~A~^^^1^0.25^0.30^2^0.21^0.33^~2, 3~^~02/01/2007~ -~05327~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05332~^~203~^17.44^4^0.18^~1~^~A~^^^1^17.04^17.93^3^16.84^18.04^~4~^~04/01/2007~ -~05332~^~204~^8.10^4^0.24^~1~^~A~^^^1^7.67^8.57^3^7.33^8.87^~4~^~04/01/2007~ -~05332~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05332~^~207~^1.17^4^0.17^~1~^~A~^^^1^0.85^1.48^3^0.61^1.71^~4~^~04/01/2007~ -~05332~^~255~^73.24^4^0.10^~1~^~A~^^^1^72.99^73.48^3^72.90^73.58^~4~^~04/01/2007~ -~05332~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~303~^0.82^4^0.05^~1~^~A~^^^1^0.71^0.93^3^0.65^0.98^~4~^~04/01/2007~ -~05332~^~309~^1.47^4^0.05^~1~^~A~^^^1^1.30^1.56^3^1.28^1.66^~4~^~04/01/2007~ -~05332~^~323~^0.27^4^0.08^~1~^~A~^^^1^0.08^0.42^3^4.0e-03^0.53^~4~^~04/01/2007~ -~05332~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~04/01/2007~ -~05332~^~342~^0.17^4^0.03^~1~^~A~^^^1^0.07^0.23^3^0.05^0.28^~4~^~04/01/2007~ -~05332~^~343~^0.03^4^9.0e-03^~1~^~A~^^^1^0.01^0.05^3^1.0e-03^0.05^~1, 4~^~04/01/2007~ -~05332~^~344~^0.05^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~4~^~04/01/2007~ -~05332~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~04/01/2007~ -~05332~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 4~^~04/01/2007~ -~05332~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~04/01/2007~ -~05332~^~418~^0.56^4^0.06^~1~^~A~^^^1^0.43^0.72^3^0.35^0.76^~4~^~04/01/2007~ -~05332~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05332~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~05333~^~203~^23.28^4^0.53^~1~^~A~^^^1^22.27^24.76^3^21.59^24.96^~4~^~05/01/2007~ -~05333~^~204~^10.92^4^0.17^~1~^~A~^^^1^10.55^11.26^3^10.35^11.48^~4~^~05/01/2007~ -~05333~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~207~^1.57^4^0.18^~1~^~A~^^^1^1.22^1.90^3^0.96^2.16^~4~^~05/01/2007~ -~05333~^~255~^64.92^4^0.27^~1~^~A~^^^1^64.22^65.52^3^64.05^65.78^~4~^~05/01/2007~ -~05333~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~303~^0.93^4^0.01^~1~^~A~^^^1^0.91^0.96^3^0.88^0.96^~4~^~05/01/2007~ -~05333~^~309~^1.92^4^0.06^~1~^~A~^^^1^1.76^2.02^3^1.73^2.11^~4~^~05/01/2007~ -~05333~^~323~^0.39^4^0.09^~1~^~A~^^^1^0.23^0.57^3^0.09^0.69^~4~^~05/01/2007~ -~05333~^~341~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 4~^~05/01/2007~ -~05333~^~342~^0.24^4^0.02^~1~^~A~^^^1^0.20^0.28^3^0.17^0.30^~4~^~05/01/2007~ -~05333~^~343~^0.03^4^0.01^~1~^~A~^^^1^0.01^0.06^3^-3.0e-03^0.07^~1, 4~^~05/01/2007~ -~05333~^~344~^0.06^4^7.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.03^0.08^~4~^~05/01/2007~ -~05333~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~05/01/2007~ -~05333~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.02^~1, 4~^~05/01/2007~ -~05333~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~05/01/2007~ -~05333~^~418~^0.51^4^0.02^~1~^~A~^^^1^0.47^0.58^3^0.43^0.59^~4~^~05/01/2007~ -~05333~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05334~^~203~^24.09^4^1.11^~1~^~A~^^^1^22.42^27.35^3^20.54^27.63^~2, 3~^~05/01/2012~ -~05334~^~204~^10.74^4^0.55^~1~^~A~^^^1^9.12^11.50^3^8.97^12.51^~2, 3~^~05/01/2012~ -~05334~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05334~^~207~^1.40^4^0.10^~1~^~A~^^^1^1.10^1.60^3^1.05^1.74^~2, 3~^~05/01/2012~ -~05334~^~255~^64.35^4^0.37^~1~^~A~^^^1^63.27^64.96^3^63.16^65.53^~2, 3~^~05/01/2012~ -~05334~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~303~^0.97^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~309~^2.00^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~323~^0.48^4^0.11^~1~^~A~^^^1^0.31^0.81^3^0.12^0.84^~2, 3~^~05/01/2012~ -~05334~^~341~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.02^~1, 2, 3~^~05/01/2012~ -~05334~^~342~^0.14^4^0.02^~1~^~A~^^^1^0.10^0.20^3^0.07^0.20^~2, 3~^~05/01/2012~ -~05334~^~343~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~05/01/2012~ -~05334~^~344~^0.04^4^5.0e-03^~1~^~A~^^^1^0.03^0.05^3^0.02^0.05^~2, 3~^~05/01/2012~ -~05334~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05334~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~05/01/2012~ -~05334~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05334~^~418~^0.45^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05335~^~203~^19.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~204~^14.60^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05335~^~207~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~05335~^~255~^65.80^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~303~^0.91^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~309~^0.69^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~05335~^~418~^0.47^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05335~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05339~^~203~^28.34^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~204~^7.79^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~205~^0.54^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05339~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~210~^0.22^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~211~^0.19^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~212~^0.13^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~255~^62.87^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~269~^0.53^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~05339~^~303~^0.97^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~309~^2.05^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~05339~^~418~^0.39^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05341~^~203~^25.34^4^2.93^~1~^~A~^^^1^18.87^32.06^3^16.01^34.66^~2, 3~^~06/01/2007~ -~05341~^~204~^11.54^4^1.10^~1~^~A~^^^1^9.62^14.59^3^8.03^15.05^~2, 3~^~06/01/2007~ -~05341~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05341~^~207~^2.61^4^0.09^~1~^~A~^^^1^2.44^2.85^3^2.31^2.91^~2, 3~^~06/01/2007~ -~05341~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~255~^61.24^4^3.19^~1~^~A~^^^1^55.20^68.79^3^51.08^71.39^~2, 3~^~06/01/2007~ -~05341~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~ -~05341~^~303~^0.97^4^0.07^~1~^~A~^^^1^0.78^1.11^3^0.74^1.18^~2, 3~^~06/01/2007~ -~05341~^~309~^2.04^4^0.11^~1~^~A~^^^1^1.77^2.32^3^1.68^2.40^~2, 3~^~06/01/2007~ -~05341~^~323~^0.25^0^^~4~^~BFSN~^~05055~^^^^^^^^^~04/01/2008~ -~05341~^~418~^0.71^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05342~^~203~^28.00^6^0.62^~1~^~A~^^^1^26.19^30.44^5^26.38^29.61^~2, 3~^~05/01/2014~ -~05342~^~204~^2.79^6^0.11^~1~^~A~^^^1^2.47^3.14^5^2.49^3.08^~2, 3~^~05/01/2014~ -~05342~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05342~^~207~^1.67^6^0.17^~1~^~A~^^^1^1.29^2.34^5^1.22^2.11^~2, 3~^~05/01/2014~ -~05342~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~255~^68.23^6^0.48^~1~^~A~^^^1^66.72^69.56^5^66.99^69.47^~2, 3~^~05/01/2014~ -~05342~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~05342~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~303~^0.45^6^0.01^~1~^~A~^^^1^0.40^0.51^5^0.40^0.49^~2, 3~^~05/01/2014~ -~05342~^~309~^0.86^6^0.02^~1~^~A~^^^1^0.77^0.92^5^0.78^0.93^~2, 3~^~05/01/2014~ -~05342~^~323~^0.33^2^^~1~^~A~^^^1^0.27^0.39^1^^^^~05/01/2014~ -~05342~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~05342~^~342~^0.09^2^^~1~^~A~^^^1^0.08^0.11^1^^^^~05/01/2014~ -~05342~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2007~ -~05342~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~05342~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~05342~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~05342~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~05342~^~418~^0.27^2^^~1~^~A~^^^1^0.25^0.29^1^^^^~05/01/2014~ -~05342~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05342~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05343~^~203~^28.74^12^1.17^~1~^~A~^^^1^23.45^37.49^11^26.16^31.32^~2, 3~^~03/01/2008~ -~05343~^~204~^6.81^12^0.37^~1~^~A~^^^1^5.00^9.53^11^5.99^7.63^~2, 3~^~03/01/2008~ -~05343~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05343~^~207~^1.91^12^0.18^~1~^~A~^^^1^0.91^3.29^11^1.50^2.31^~2, 3~^~03/01/2008~ -~05343~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~255~^63.05^12^1.37^~1~^~A~^^^1^53.24^67.92^11^60.02^66.07^~2, 3~^~03/01/2008~ -~05343~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05343~^~303~^1.09^12^0.04^~1~^~A~^^^1^0.91^1.42^11^0.98^1.18^~2, 3~^~03/01/2008~ -~05343~^~309~^2.96^12^0.11^~1~^~A~^^^1^2.55^3.71^11^2.71^3.21^~2, 3~^~03/01/2008~ -~05343~^~323~^0.30^4^0.06^~1~^~A~^^^1^0.15^0.48^3^0.08^0.52^~2, 3~^~03/01/2008~ -~05343~^~341~^0.00^4^2.0e-03^~1~^~A~^^^1^0.00^0.01^3^-4.0e-03^8.0e-03^~1, 2, 3~^~03/01/2008~ -~05343~^~342~^0.14^4^0.02^~1~^~A~^^^1^0.09^0.18^3^0.07^0.20^~2, 3~^~03/01/2008~ -~05343~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~344~^0.05^4^0.01^~1~^~A~^^^1^0.01^0.06^3^0.01^0.08^~1, 2, 3~^~03/01/2008~ -~05343~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~346~^0.04^4^8.0e-03^~1~^~A~^^^1^0.03^0.06^3^0.01^0.06^~2, 3~^~03/01/2008~ -~05343~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~418~^0.49^12^0.02^~1~^~A~^^^1^0.35^0.66^11^0.42^0.55^~2, 3~^~03/01/2008~ -~05343~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05344~^~203~^17.66^12^1.05^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~204~^37.24^12^0.96^~1~^~A~^^^1^32.29^43.50^11^35.12^39.35^~2, 3~^~03/01/2008~ -~05344~^~205~^0.11^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05344~^~207~^1.70^12^0.19^~1~^~A~^^^1^0.80^2.62^11^1.26^2.13^~2, 3~^~03/01/2008~ -~05344~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~210~^0.11^13^0.05^~1~^~A~^^^1^0.00^0.63^12^-3.0e-03^0.22^~1, 2, 3~^~05/01/2009~ -~05344~^~211~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~05344~^~212~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~05344~^~213~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~05344~^~214~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~05344~^~255~^43.76^12^0.97^~1~^~A~^^^1^37.75^48.36^11^41.62^45.90^~2, 3~^~03/01/2008~ -~05344~^~269~^0.11^13^0.05^~1~^~A~^^^1^0.00^0.63^12^-3.0e-03^0.22^~2, 3~^~03/01/2008~ -~05344~^~287~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~05344~^~303~^0.98^12^0.05^~1~^~A~^^^1^0.73^1.30^11^0.86^1.09^~2, 3~^~03/01/2008~ -~05344~^~309~^1.03^12^0.07^~1~^~A~^^^1^0.65^1.53^11^0.85^1.19^~2, 3~^~03/01/2008~ -~05344~^~323~^0.36^4^0.02^~1~^~A~^^^1^0.30^0.39^3^0.29^0.42^~2, 3~^~03/01/2008~ -~05344~^~341~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2008~ -~05344~^~342~^0.20^4^0.01^~1~^~A~^^^1^0.17^0.24^3^0.15^0.24^~2, 3~^~03/01/2008~ -~05344~^~343~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~03/01/2008~ -~05344~^~344~^0.07^4^0.01^~1~^~A~^^^1^0.05^0.09^3^0.03^0.09^~2, 3~^~03/01/2008~ -~05344~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~346~^0.12^4^0.01^~1~^~A~^^^1^0.09^0.14^3^0.08^0.15^~2, 3~^~03/01/2008~ -~05344~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~418~^0.59^12^0.04^~1~^~A~^^^1^0.35^0.79^11^0.49^0.67^~2, 3~^~03/01/2008~ -~05344~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05345~^~203~^24.06^12^0.77^~1~^~A~^^^1^19.46^28.75^11^22.36^25.75^~2, 3~^~03/01/2008~ -~05345~^~204~^11.09^12^0.37^~1~^~A~^^^1^8.28^13.20^11^10.27^11.90^~2, 3~^~03/01/2008~ -~05345~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05345~^~207~^1.56^12^0.17^~1~^~A~^^^1^0.81^2.78^11^1.16^1.94^~2, 3~^~03/01/2008~ -~05345~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~255~^63.89^12^0.92^~1~^~A~^^^1^58.13^70.05^11^61.85^65.92^~2, 3~^~03/01/2008~ -~05345~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05345~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05345~^~303~^0.97^12^0.05^~1~^~A~^^^1^0.69^1.39^11^0.85^1.09^~2, 3~^~03/01/2008~ -~05345~^~309~^2.01^12^0.06^~1~^~A~^^^1^1.51^2.35^11^1.86^2.16^~2, 3~^~03/01/2008~ -~05345~^~323~^0.25^4^0.04^~1~^~A~^^^1^0.18^0.35^3^0.12^0.37^~2, 3~^~03/01/2008~ -~05345~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~342~^0.13^4^0.01^~1~^~A~^^^1^0.10^0.15^3^0.09^0.16^~2, 3~^~03/01/2008~ -~05345~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~344~^0.03^4^7.0e-03^~1~^~A~^^^1^0.02^0.05^3^7.0e-03^0.05^~2, 3~^~03/01/2008~ -~05345~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~346~^0.04^4^6.0e-03^~1~^~A~^^^1^0.03^0.05^3^0.02^0.05^~2, 3~^~03/01/2008~ -~05345~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~418~^0.45^12^0.03^~1~^~A~^^^1^0.30^0.74^11^0.37^0.52^~2, 3~^~03/01/2008~ -~05345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~203~^27.69^4^2.62^~1~^~A~^^^1^23.50^35.00^3^19.32^36.05^~2, 3~^~03/01/2008~ -~05346~^~204~^9.53^4^1.87^~1~^~A~^^^1^5.95^14.20^3^3.56^15.49^~2, 3~^~03/01/2008~ -~05346~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~05346~^~207~^2.65^4^0.27^~1~^~A~^^^1^1.93^3.08^3^1.77^3.51^~2, 3~^~03/01/2008~ -~05346~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~255~^61.13^4^3.44^~1~^~A~^^^1^52.26^68.85^3^50.15^72.11^~2, 3~^~03/01/2008~ -~05346~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~05346~^~303~^0.97^4^0.12^~1~^~A~^^^1^0.74^1.20^3^0.56^1.36^~2, 3~^~03/01/2008~ -~05346~^~309~^2.05^4^0.22^~1~^~A~^^^1^1.61^2.68^3^1.32^2.77^~2, 3~^~03/01/2008~ -~05346~^~323~^0.28^0^^~4~^~BFSN~^~05107~^^^^^^^^^~03/01/2008~ -~05346~^~418~^0.38^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05347~^~203~^23.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~204~^18.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~205~^0.03^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05347~^~207~^2.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~210~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~255~^56.44^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~269~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~309~^1.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~418~^0.68^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~203~^27.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~204~^8.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~205~^0.02^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05348~^~207~^1.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~210~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~255~^63.49^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~269~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~303~^0.55^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~309~^0.92^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~323~^0.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~342~^0.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~418~^0.32^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~203~^26.86^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~204~^11.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~205~^0.02^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05349~^~207~^1.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~210~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~255~^59.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~269~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~303~^1.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~309~^2.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~323~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~342~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~344~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~418~^0.51^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~203~^22.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~204~^15.70^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~205~^0.02^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05351~^~207~^1.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~210~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~255~^60.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~269~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~309~^1.84^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~323~^0.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~342~^0.14^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~346~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~418~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~203~^24.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~204~^18.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~205~^0.04^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05352~^~207~^2.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~210~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~255~^55.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~269~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~309~^1.71^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~323~^0.30^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~342~^0.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~418~^0.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05356~^~203~^15.19^12^0.53^~1~^~A~^^^1^13.18^18.18^11^14.01^16.37^~2, 3~^~05/01/2012~ -~05356~^~204~^35.15^12^1.11^~1~^~A~^^^1^28.22^42.06^11^32.70^37.60^~2, 3~^~05/01/2012~ -~05356~^~205~^0.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05356~^~207~^1.52^12^0.06^~1~^~A~^^^1^1.15^1.90^11^1.36^1.66^~2, 3~^~05/01/2012~ -~05356~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~210~^0.22^12^0.09^~1~^~A~^^^1^0.00^0.79^11^0.02^0.41^~1, 2, 3~^~05/01/2012~ -~05356~^~211~^0.25^12^0.17^~1~^~A~^^^1^0.00^1.77^11^-0.12^0.63^~1, 2, 3~^~05/01/2012~ -~05356~^~212~^0.23^12^0.15^~1~^~A~^^^1^0.00^1.59^11^-0.11^0.57^~1, 2, 3~^~05/01/2012~ -~05356~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~255~^47.81^12^0.96^~1~^~A~^^^1^42.23^53.07^11^45.68^49.93^~2, 3~^~05/01/2012~ -~05356~^~269~^0.70^12^0.35^~1~^~A~^^^1^0.00^3.37^11^-0.08^1.48^~2, 3~^~05/01/2012~ -~05356~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~303~^0.86^12^0.05^~1~^~A~^^^1^0.64^1.20^11^0.74^0.98^~2, 3~^~05/01/2012~ -~05356~^~309~^0.76^12^0.04^~1~^~A~^^^1^0.57^1.03^11^0.66^0.86^~2, 3~^~05/01/2012~ -~05356~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~ -~05356~^~418~^0.55^12^0.03^~1~^~A~^^^1^0.40^0.81^11^0.46^0.63^~2, 3~^~05/01/2012~ -~05356~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05357~^~203~^20.29^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~204~^18.86^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~205~^0.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05357~^~207~^1.43^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~210~^0.18^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~211~^0.17^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~212~^0.05^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~255~^59.41^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~269~^0.40^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~303~^0.83^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~309~^1.51^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~323~^0.26^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~418~^0.60^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~203~^26.37^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~204~^7.67^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~205~^0.09^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05358~^~207~^1.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~210~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~211~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~212~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~255~^65.19^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~269~^0.09^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~303~^0.51^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~309~^0.86^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~323~^0.33^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~418~^0.30^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~203~^25.65^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~204~^11.46^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~205~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05359~^~207~^1.75^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~210~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~211~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~212~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~255~^61.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~269~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~303~^1.02^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~309~^2.52^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~323~^0.51^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~342~^0.12^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~418~^0.49^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~203~^22.51^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~204~^15.08^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~205~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05361~^~207~^1.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~210~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~211~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~212~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~255~^61.41^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~269~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~303~^0.95^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~309~^1.78^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~323~^0.46^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~342~^0.12^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~418~^0.47^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~203~^23.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~204~^18.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~205~^0.60^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05362~^~207~^1.18^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~209~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~210~^0.22^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~211~^0.21^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~212~^0.16^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~255~^57.23^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~269~^0.60^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~303~^0.93^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~309~^1.57^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~418~^0.45^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05363~^~203~^25.94^2^^~1~^~A~^^^1^25.56^26.31^1^^^^~04/01/2014~ -~05363~^~204~^0.88^2^^~1~^~A~^^^1^0.71^1.05^1^^^^~04/01/2014~ -~05363~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~207~^1.07^2^^~1~^~A~^^^1^1.05^1.09^1^^^^~04/01/2014~ -~05363~^~255~^72.93^2^^~1~^~A~^^^1^72.54^73.32^1^^^^~04/01/2014~ -~05363~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~303~^0.58^2^^~1~^~A~^^^1^0.56^0.61^1^^^^~04/01/2014~ -~05363~^~309~^0.51^2^^~1~^~A~^^^1^0.49^0.53^1^^^^~04/01/2014~ -~05363~^~323~^0.73^2^^~1~^~A~^^^1^0.71^0.76^1^^^^~04/01/2014~ -~05363~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2014~ -~05363~^~418~^2.90^2^^~1~^~A~^^^1^2.60^3.20^1^^^^~04/01/2014~ -~05363~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05363~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~05621~^~203~^22.77^6^0.39^~1~^~A~^^^1^21.90^24.40^5^21.74^23.78^~4~^~07/01/2001~ -~05621~^~204~^4.03^6^0.94^~1~^~A~^^^1^1.20^7.50^5^1.60^6.45^~4~^~07/01/2001~ -~05621~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~207~^1.00^6^0.03^~1~^~A~^^^1^0.90^1.10^5^0.90^1.09^~4~^~07/01/2001~ -~05621~^~255~^72.87^6^1.14^~1~^~A~^^^1^70.00^76.70^5^69.93^75.79^~4~^~07/01/2001~ -~05621~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05621~^~303~^4.02^6^0.14^~1~^~A~^^^1^3.42^4.42^5^3.65^4.38^~4~^~07/01/2001~ -~05621~^~309~^3.48^6^0.21^~1~^~A~^^^1^2.67^4.26^5^2.94^4.02^~4~^~07/01/2001~ -~05621~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05621~^~418~^6.75^6^0.29^~1~^~A~^^^1^5.83^7.61^5^5.98^7.51^~4~^~07/01/2001~ -~05622~^~203~^28.43^6^0.59^~1~^~A~^^^1^26.30^30.60^5^26.91^29.95^~4~^~07/01/2001~ -~05622~^~204~^4.65^6^0.88^~1~^~A~^^^1^2.00^7.40^5^2.37^6.92^~4~^~07/01/2001~ -~05622~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~207~^1.17^6^0.03^~1~^~A~^^^1^1.10^1.30^5^1.08^1.25^~4~^~07/01/2001~ -~05622~^~255~^65.83^6^0.52^~1~^~A~^^^1^63.90^67.20^5^64.48^67.18^~4~^~07/01/2001~ -~05622~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05622~^~303~^5.01^6^0.15^~1~^~A~^^^1^4.53^5.48^5^4.62^5.40^~4~^~07/01/2001~ -~05622~^~309~^4.56^6^0.23^~1~^~A~^^^1^3.86^5.28^5^3.96^5.15^~4~^~07/01/2001~ -~05622~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05622~^~418~^8.52^6^0.35^~1~^~A~^^^1^7.61^9.61^5^7.60^9.44^~4~^~07/01/2001~ -~05623~^~203~^22.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~204~^0.80^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~207~^1.10^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~255~^74.62^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05623~^~303~^4.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~309~^3.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05623~^~323~^0.22^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05623~^~418~^6.67^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05624~^~203~^31.27^3^0.33^~1~^~A~^^^1^30.60^31.60^2^29.83^32.70^~4~^~11/01/2001~ -~05624~^~204~^2.30^3^0.17^~1~^~A~^^^1^2.00^2.60^2^1.55^3.04^~4~^~11/01/2001~ -~05624~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~207~^1.30^3^0.00^~1~^~A~^^^1^1.30^1.30^2^1.30^1.30^~4~^~11/01/2001~ -~05624~^~255~^66.43^3^0.62^~1~^~A~^^^1^65.20^67.20^2^63.75^69.11^~4~^~11/01/2001~ -~05624~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05624~^~303~^4.56^3^0.26^~1~^~A~^^^1^4.05^4.95^2^3.41^5.70^~4~^~11/01/2001~ -~05624~^~309~^3.19^3^0.27^~1~^~A~^^^1^2.87^3.74^2^1.99^4.38^~4~^~11/01/2001~ -~05624~^~323~^0.23^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05624~^~418~^9.37^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05625~^~203~^22.25^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~204~^0.74^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~207~^0.93^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~255~^75.40^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05625~^~303~^5.00^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~309~^3.00^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05625~^~323~^0.22^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05625~^~418~^6.12^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05626~^~203~^22.83^26^0.52^~1~^~A~^^^2^22.30^23.35^1^16.15^29.49^~2~^~07/01/2001~ -~05626~^~204~^1.64^26^0.39^~1~^~A~^^^2^1.24^2.03^1^-3.38^6.65^~2~^~07/01/2001~ -~05626~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~207~^1.14^26^0.01^~1~^~A~^^^2^1.12^1.15^1^0.94^1.32^~2~^~07/01/2001~ -~05626~^~255~^73.79^26^0.28^~1~^~A~^^^2^73.50^74.07^1^70.16^77.40^~2~^~07/01/2001~ -~05626~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05626~^~303~^4.96^26^0.45^~1~^~A~^^^2^4.50^5.41^1^-0.82^10.73^~2~^~07/01/2001~ -~05626~^~309~^3.59^26^0.41^~1~^~A~^^^2^3.17^4.00^1^-1.68^8.85^~2~^~07/01/2001~ -~05626~^~323~^0.23^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05626~^~418~^2.24^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~203~^33.67^20^0.34^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~204~^2.68^20^0.16^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~207~^1.35^20^0.06^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~255~^61.97^20^0.80^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05627~^~303~^6.89^20^0.23^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~309~^4.32^20^0.16^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~323~^0.26^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05627~^~418~^2.20^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~203~^22.22^25^0.04^~1~^~A~^^^2^22.17^22.26^1^21.64^22.78^~2~^~07/01/2001~ -~05628~^~204~^1.49^25^0.34^~1~^~A~^^^2^1.14^1.83^1^-2.89^5.86^~2~^~07/01/2001~ -~05628~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~207~^1.15^25^0.09^~1~^~A~^^^2^1.05^1.24^1^-0.06^2.35^~2~^~07/01/2001~ -~05628~^~255~^74.73^25^0.04^~1~^~A~^^^2^74.68^74.77^1^74.15^75.29^~2~^~07/01/2001~ -~05628~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05628~^~303~^5.23^25^0.22^~1~^~A~^^^2^5.00^5.45^1^2.36^8.08^~2~^~07/01/2001~ -~05628~^~309~^4.33^25^0.67^~1~^~A~^^^2^3.65^5.00^1^-4.25^12.90^~2~^~07/01/2001~ -~05628~^~323~^0.22^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05628~^~418~^2.26^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~203~^32.38^19^0.38^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~204~^2.01^19^0.45^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~207~^1.30^19^0.04^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~255~^64.31^19^0.94^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05629~^~303~^7.27^19^0.28^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~309~^5.09^19^0.21^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~323~^0.25^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05629~^~418~^2.40^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~203~^23.08^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~204~^0.48^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~207~^1.00^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~255~^74.87^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05630~^~303~^4.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~309~^4.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~323~^0.17^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05630~^~418~^6.92^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05631~^~203~^22.81^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~204~^4.86^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~207~^0.95^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~255~^72.57^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05631~^~303~^5.50^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~309~^6.00^6^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05631~^~323~^0.24^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~ -~05631~^~418~^6.76^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05632~^~203~^29.07^3^2.04^~1~^~A~^^^1^25.00^31.50^2^20.26^37.87^~4~^~11/01/2001~ -~05632~^~204~^3.13^3^0.24^~1~^~A~^^^1^2.80^3.60^2^2.09^4.16^~4~^~11/01/2001~ -~05632~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~207~^1.27^3^0.03^~1~^~A~^^^1^1.20^1.30^2^1.12^1.41^~4~^~11/01/2001~ -~05632~^~255~^67.37^3^2.43^~1~^~A~^^^1^64.00^72.10^2^56.88^77.84^~4~^~11/01/2001~ -~05632~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~05632~^~303~^5.07^3^0.66^~1~^~A~^^^1^4.32^6.39^2^2.22^7.91^~4~^~11/01/2001~ -~05632~^~309~^3.42^3^0.29^~1~^~A~^^^1^2.86^3.86^2^2.15^4.68^~4~^~11/01/2001~ -~05632~^~323~^0.23^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~ -~05632~^~418~^8.71^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05641~^~203~^20.22^6^0.41^~1~^~A~^^^1^19.40^21.90^5^19.15^21.27^~4~^~07/01/2001~ -~05641~^~204~^8.70^6^2.27^~1~^~A~^^^1^3.20^16.90^5^2.84^14.55^~4~^~07/01/2001~ -~05641~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~207~^0.73^6^0.02^~1~^~A~^^^1^0.70^0.80^5^0.67^0.78^~4~^~07/01/2001~ -~05641~^~255~^71.07^6^1.75^~1~^~A~^^^1^64.50^74.40^5^66.56^75.56^~4~^~07/01/2001~ -~05641~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05641~^~303~^2.91^6^0.04^~1~^~A~^^^1^2.81^3.07^5^2.80^3.01^~4~^~07/01/2001~ -~05641~^~309~^3.51^6^0.26^~1~^~A~^^^1^2.44^4.15^5^2.82^4.19^~4~^~07/01/2001~ -~05641~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05641~^~418~^4.61^6^0.50^~1~^~A~^^^1^3.25^6.20^5^3.31^5.90^~4~^~07/01/2001~ -~05642~^~203~^26.15^6^0.38^~1~^~A~^^^1^25.00^27.50^5^25.17^27.12^~4~^~07/01/2001~ -~05642~^~204~^7.07^6^1.05^~1~^~A~^^^1^4.00^10.50^5^4.36^9.76^~4~^~07/01/2001~ -~05642~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~207~^0.83^6^0.03^~1~^~A~^^^1^0.70^0.90^5^0.74^0.91^~4~^~07/01/2001~ -~05642~^~255~^67.12^6^1.02^~1~^~A~^^^1^63.10^70.00^5^64.47^69.75^~4~^~07/01/2001~ -~05642~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05642~^~303~^3.43^6^0.12^~1~^~A~^^^1^3.07^3.95^5^3.10^3.75^~4~^~07/01/2001~ -~05642~^~309~^4.33^6^0.23^~1~^~A~^^^1^3.57^5.03^5^3.72^4.92^~4~^~07/01/2001~ -~05642~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~ -~05642~^~418~^5.74^6^0.61^~1~^~A~^^^1^4.26^7.71^5^4.15^7.31^~4~^~07/01/2001~ -~05642~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05642~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~05643~^~203~^21.81^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~204~^2.65^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~207~^0.61^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05643~^~255~^75.93^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05643~^~303~^4.38^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~309~^3.71^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05643~^~418~^4.97^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~203~^22.39^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~204~^1.72^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~207~^0.61^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05644~^~255~^75.97^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05644~^~303~^2.30^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~309~^3.87^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05644~^~418~^5.10^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05645~^~203~^29.01^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~204~^1.94^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~207~^0.76^0^^~4~^~BFSN~^~05642~^^^^^^^^^~08/01/2001~ -~05645~^~255~^69.95^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05645~^~303~^3.12^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~309~^4.71^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~323~^0.22^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~418~^6.36^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05646~^~203~^23.69^9^0.88^~1~^~A~^^^1^21.99^24.97^2^19.88^27.50^~4~^~07/01/2001~ -~05646~^~204~^2.87^9^0.10^~1~^~A~^^^1^2.71^3.07^2^2.41^3.32^~4~^~07/01/2001~ -~05646~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~207~^1.22^6^0.05^~1~^~A~^^^1^1.16^1.27^1^0.51^1.91^~4~^~07/01/2001~ -~05646~^~255~^74.16^9^0.33^~1~^~A~^^^1^73.81^74.82^2^72.73^75.58^~4~^~07/01/2001~ -~05646~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05646~^~303~^4.20^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~309~^3.98^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~323~^0.21^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05646~^~418~^5.40^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05647~^~203~^29.37^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~204~^4.26^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05647~^~207~^0.85^0^^~4~^~BFSN~^~05642~^^^^^^^^^~08/01/2001~ -~05647~^~255~^66.53^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~ -~05647~^~303~^4.80^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~309~^4.90^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~323~^0.24^0^^~4~^~BFSN~^~05642~^^^^^^^^^~03/01/2002~ -~05647~^~418~^6.44^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05648~^~203~^22.86^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~204~^1.96^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~207~^0.62^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05648~^~255~^75.59^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05648~^~303~^2.65^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~309~^3.89^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05648~^~418~^5.21^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~203~^23.36^9^0.55^~1~^~A~^^^1^22.38^24.30^2^20.97^25.75^~4~^~07/01/2001~ -~05649~^~204~^2.21^9^0.59^~1~^~A~^^^1^1.53^3.39^2^-0.34^4.76^~4~^~07/01/2001~ -~05649~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~207~^1.13^6^0.03^~1~^~A~^^^1^1.10^1.16^1^0.74^1.51^~4~^~07/01/2001~ -~05649~^~255~^74.58^9^0.21^~1~^~A~^^^1^74.17^74.92^2^73.63^75.52^~4~^~07/01/2001~ -~05649~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05649~^~303~^3.69^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~309~^4.02^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~323~^0.21^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05649~^~418~^5.33^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05650~^~203~^28.55^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~204~^3.83^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~207~^0.83^0^^~4~^~BFZN~^~05642~^^^^^^^^^~03/01/2002~ -~05650~^~255~^66.88^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05650~^~303~^4.30^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~309~^4.91^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~323~^0.24^0^^~4~^~BFSN~^~05642~^^^^^^^^^~03/01/2002~ -~05650~^~418~^6.26^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05651~^~203~^21.55^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~204~^3.67^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~207~^0.62^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05651~^~255~^75.62^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05651~^~303~^3.86^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~309~^3.59^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05651~^~418~^4.91^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~203~^28.81^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~204~^3.97^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~207~^0.82^0^^~4~^~BFSN~^~05642~^^^^^^^^^~08/01/2001~ -~05652~^~255~^67.55^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05652~^~303~^4.90^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~309~^4.94^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~323~^0.23^0^^~4~^~BFSN~^~05642~^^^^^^^^^~03/01/2002~ -~05652~^~418~^6.32^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05653~^~203~^21.99^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~204~^2.40^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~207~^0.62^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05653~^~255~^75.68^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05653~^~303~^3.54^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~309~^3.80^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05653~^~418~^5.01^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~203~^22.07^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~204~^3.19^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~207~^0.73^0^^~4~^~BFZN~^~05641~^^^^^^^^^~03/01/2002~ -~05654~^~255~^74.50^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05654~^~303~^4.88^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~309~^3.87^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~323~^0.21^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05654~^~418~^5.03^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~203~^21.85^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~204~^2.30^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~207~^0.61^0^^~4~^~BFSN~^~05641~^^^^^^^^^~08/01/2001~ -~05655~^~255~^76.12^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05655~^~303~^2.86^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~309~^3.74^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05655~^~418~^4.98^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05656~^~203~^28.49^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~204~^2.57^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~207~^0.83^0^^~4~^~BFZN~^~05642~^^^^^^^^^~03/01/2002~ -~05656~^~255~^68.51^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05656~^~303~^2.79^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~309~^4.85^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~323~^0.23^0^^~4~^~BFSN~^~05642~^^^^^^^^^~03/01/2002~ -~05656~^~418~^6.25^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05657~^~203~^21.67^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~204~^2.95^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05657~^~207~^0.73^0^^~4~^~BFZN~^~05641~^^^^^^^^^~03/01/2002~ -~05657~^~255~^75.35^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05657~^~303~^3.13^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~309~^3.76^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~323~^0.20^0^^~4~^~BFSN~^~05641~^^^^^^^^^~03/01/2002~ -~05657~^~418~^4.94^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05658~^~203~^28.12^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~204~^3.87^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~207~^0.83^0^^~4~^~BFZN~^~05642~^^^^^^^^^~03/01/2002~ -~05658~^~255~^67.95^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~05658~^~303~^3.31^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~309~^4.72^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~323~^0.23^0^^~4~^~BFSN~^~05642~^^^^^^^^^~03/01/2002~ -~05658~^~418~^6.17^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05661~^~203~^25.78^4^0.42^~1~^~A~^^^1^25.02^26.82^3^24.42^27.13^~2, 3~^~02/01/2003~ -~05661~^~204~^6.43^4^0.35^~1~^~A~^^^1^5.45^7.01^3^5.29^7.55^~2, 3~^~02/01/2003~ -~05661~^~205~^1.11^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~207~^1.47^4^0.03^~1~^~A~^^^1^1.40^1.56^3^1.35^1.58^~2, 3~^~02/01/2003~ -~05661~^~255~^65.22^4^0.34^~1~^~A~^^^1^64.23^65.67^3^64.13^66.30^~2, 3~^~02/01/2003~ -~05661~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~303~^12.88^4^0.88^~1~^~A~^^^1^10.40^14.50^3^10.07^15.67^~2, 3~^~02/01/2003~ -~05661~^~309~^4.01^4^0.06^~1~^~A~^^^1^3.85^4.12^3^3.80^4.20^~2, 3~^~02/01/2003~ -~05661~^~323~^0.77^8^^~1~^~A~^^^1^0.62^1.06^^^^~2, 3~^~02/01/2003~ -~05661~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~05661~^~342~^0.33^6^^~1~^~A~^^^1^0.27^0.42^^^^~2, 3~^~02/01/2003~ -~05661~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05661~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05661~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05661~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05661~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~05661~^~418~^21.13^4^2.63^~1~^~A~^^^1^16.60^26.90^3^12.73^29.51^~2, 3~^~02/01/2003~ -~05661~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05661~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05662~^~203~^23.57^9^0.23^~1~^~A~^^^1^22.56^24.90^8^23.02^24.11^~2, 3~^~04/01/2010~ -~05662~^~204~^1.95^9^0.10^~1~^~A~^^^1^1.54^2.40^8^1.71^2.18^~2, 3~^~04/01/2010~ -~05662~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05662~^~207~^1.15^9^6.0e-03^~1~^~A~^^^1^1.13^1.17^8^1.13^1.15^~2, 3~^~04/01/2010~ -~05662~^~255~^74.66^9^0.27^~1~^~A~^^^1^73.34^75.97^8^74.01^75.30^~2, 3~^~04/01/2010~ -~05662~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~303~^0.77^4^0.11^~1~^~A~^^^1^0.60^1.12^3^0.39^1.14^~2, 3~^~04/01/2010~ -~05662~^~309~^1.76^4^0.17^~1~^~A~^^^1^1.37^2.13^3^1.20^2.30^~2, 3~^~04/01/2010~ -~05662~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~342~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05662~^~346~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05662~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05662~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~203~^31.69^9^0.21^~1~^~A~^^^1^30.82^32.83^8^31.20^32.18^~2, 3~^~04/01/2010~ -~05663~^~204~^2.71^9^0.11^~1~^~A~^^^1^2.30^3.37^8^2.44^2.97^~2, 3~^~04/01/2010~ -~05663~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05663~^~207~^1.42^9^0.03^~1~^~A~^^^1^1.18^1.52^8^1.34^1.50^~2, 3~^~04/01/2010~ -~05663~^~255~^65.76^9^0.32^~1~^~A~^^^1^64.06^67.48^8^65.02^66.50^~2, 3~^~04/01/2010~ -~05663~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~303~^1.02^4^0.06^~1~^~A~^^^1^0.91^1.20^3^0.82^1.21^~2, 3~^~04/01/2010~ -~05663~^~309~^2.20^4^0.28^~1~^~A~^^^1^1.70^3.01^3^1.29^3.10^~2, 3~^~04/01/2010~ -~05663~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~342~^0.12^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~343~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05663~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05663~^~418~^0.70^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05663~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~203~^28.99^9^0.22^~1~^~A~^^^1^27.79^29.94^8^28.47^29.50^~2, 3~^~04/01/2010~ -~05664~^~204~^2.48^9^0.10^~1~^~A~^^^1^2.08^2.85^8^2.23^2.71^~2, 3~^~04/01/2010~ -~05664~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05664~^~207~^1.29^9^0.02^~1~^~A~^^^1^1.17^1.40^8^1.23^1.35^~2, 3~^~04/01/2010~ -~05664~^~255~^68.40^9^0.38^~1~^~A~^^^1^67.15^70.09^8^67.50^69.29^~2, 3~^~04/01/2010~ -~05664~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~303~^0.78^4^0.24^~1~^~A~^^^1^0.11^1.26^3^0.01^1.55^~2, 3~^~04/01/2010~ -~05664~^~309~^2.19^4^0.15^~1~^~A~^^^1^1.96^2.65^3^1.68^2.69^~2, 3~^~04/01/2010~ -~05664~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~342~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05664~^~346~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05664~^~418~^0.67^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05664~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~203~^18.73^11^0.29^~1~^~A~^^^1^17.40^20.43^10^18.07^19.38^~2, 3~^~04/01/2010~ -~05665~^~204~^8.34^11^0.27^~1~^~A~^^^1^6.93^10.08^10^7.74^8.94^~2, 3~^~04/01/2010~ -~05665~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05665~^~207~^0.92^11^0.01^~1~^~A~^^^1^0.87^0.98^10^0.89^0.95^~2, 3~^~04/01/2010~ -~05665~^~255~^72.63^11^0.26^~1~^~A~^^^1^70.84^74.21^10^72.03^73.22^~2, 3~^~04/01/2010~ -~05665~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~303~^1.17^4^0.03^~1~^~A~^^^1^1.10^1.26^3^1.06^1.27^~2, 3~^~04/01/2010~ -~05665~^~309~^2.53^4^0.02^~1~^~A~^^^1^2.48^2.61^3^2.43^2.62^~2, 3~^~04/01/2010~ -~05665~^~323~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~342~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05665~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05665~^~418~^1.20^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05665~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~203~^27.10^11^0.31^~1~^~A~^^^1^25.62^29.02^10^26.38^27.80^~2, 3~^~04/01/2010~ -~05666~^~204~^11.60^11^0.37^~1~^~A~^^^1^9.49^13.12^10^10.75^12.44^~2, 3~^~04/01/2010~ -~05666~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05666~^~207~^1.27^11^0.01^~1~^~A~^^^1^1.19^1.37^10^1.22^1.30^~2, 3~^~04/01/2010~ -~05666~^~255~^61.05^11^0.29^~1~^~A~^^^1^59.32^63.02^10^60.39^61.71^~2, 3~^~04/01/2010~ -~05666~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~303~^1.56^4^0.08^~1~^~A~^^^1^1.35^1.76^3^1.28^1.82^~2, 3~^~04/01/2010~ -~05666~^~309~^3.77^4^0.10^~1~^~A~^^^1^3.56^3.98^3^3.44^4.10^~2, 3~^~04/01/2010~ -~05666~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~342~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~343~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05666~^~346~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~418~^1.90^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05666~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~203~^25.86^11^0.48^~1~^~A~^^^1^23.62^28.46^10^24.78^26.93^~2, 3~^~04/01/2010~ -~05667~^~204~^11.45^11^0.45^~1~^~A~^^^1^8.94^13.75^10^10.43^12.47^~2, 3~^~04/01/2010~ -~05667~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05667~^~207~^1.07^11^0.02^~1~^~A~^^^1^0.96^1.20^10^1.02^1.12^~2, 3~^~04/01/2010~ -~05667~^~255~^62.42^11^0.80^~1~^~A~^^^1^57.83^65.53^10^60.62^64.21^~2, 3~^~04/01/2010~ -~05667~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~303~^1.73^4^0.22^~1~^~A~^^^1^1.36^2.36^3^1.02^2.43^~2, 3~^~04/01/2010~ -~05667~^~309~^3.71^4^0.10^~1~^~A~^^^1^3.42^3.89^3^3.36^4.04^~2, 3~^~04/01/2010~ -~05667~^~323~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~343~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05667~^~346~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~418~^1.80^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05667~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~203~^16.90^9^0.25^~1~^~A~^^^1^15.61^18.03^8^16.30^17.48^~2, 3~^~04/01/2010~ -~05668~^~204~^12.54^9^0.84^~1~^~A~^^^1^7.92^16.05^8^10.58^14.49^~2, 3~^~04/01/2010~ -~05668~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05668~^~207~^0.96^9^0.02^~1~^~A~^^^1^0.88^1.07^8^0.90^1.01^~2, 3~^~04/01/2010~ -~05668~^~255~^69.74^9^0.55^~1~^~A~^^^1^67.23^72.62^8^68.45^71.01^~2, 3~^~04/01/2010~ -~05668~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~303~^1.32^4^0.06^~1~^~A~^^^1^1.20^1.49^3^1.10^1.52^~2, 3~^~04/01/2010~ -~05668~^~309~^2.75^4^0.09^~1~^~A~^^^1^2.52^2.91^3^2.45^3.05^~2, 3~^~04/01/2010~ -~05668~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~342~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~343~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05668~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05668~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05668~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~203~^25.11^9^0.55^~1~^~A~^^^1^21.69^27.86^8^23.83^26.38^~2, 3~^~04/01/2010~ -~05669~^~204~^17.45^9^1.10^~1~^~A~^^^1^10.86^21.55^8^14.89^20.00^~2, 3~^~04/01/2010~ -~05669~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05669~^~207~^1.32^9^0.04^~1~^~A~^^^1^1.01^1.48^8^1.21^1.42^~2, 3~^~04/01/2010~ -~05669~^~255~^56.66^9^0.98^~1~^~A~^^^1^52.36^60.93^8^54.38^58.94^~2, 3~^~04/01/2010~ -~05669~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~303~^1.98^4^0.13^~1~^~A~^^^1^1.70^2.24^3^1.55^2.40^~2, 3~^~04/01/2010~ -~05669~^~309~^3.56^4^0.12^~1~^~A~^^^1^3.22^3.76^3^3.17^3.94^~2, 3~^~04/01/2010~ -~05669~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~342~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~343~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05669~^~346~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05669~^~418~^1.60^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05669~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~203~^25.88^9^0.41^~1~^~A~^^^1^24.17^27.98^8^24.92^26.83^~2, 3~^~04/01/2010~ -~05670~^~204~^16.20^9^0.99^~1~^~A~^^^1^9.74^19.27^8^13.91^18.49^~2, 3~^~04/01/2010~ -~05670~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~05670~^~207~^1.20^9^0.02^~1~^~A~^^^1^1.11^1.28^8^1.15^1.24^~2, 3~^~04/01/2010~ -~05670~^~255~^58.25^9^1.08^~1~^~A~^^^1^55.03^64.73^8^55.75^60.74^~2, 3~^~04/01/2010~ -~05670~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~303~^2.04^4^0.06^~1~^~A~^^^1^1.89^2.16^3^1.83^2.23^~2, 3~^~04/01/2010~ -~05670~^~309~^3.25^4^0.01^~1~^~A~^^^1^3.23^3.28^3^3.21^3.28^~2, 3~^~04/01/2010~ -~05670~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~343~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05670~^~346~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~05670~^~418~^1.40^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05670~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~05671~^~203~^23.93^6^0.22^~1~^~A~^^^1^22.99^24.57^5^23.35^24.51^~2, 3~^~04/01/2011~ -~05671~^~204~^5.95^6^0.14^~1~^~A~^^^1^5.54^6.33^5^5.57^6.32^~2, 3~^~04/01/2011~ -~05671~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~207~^0.98^6^0.03^~1~^~A~^^^1^0.92^1.13^5^0.89^1.05^~2, 3~^~04/01/2011~ -~05671~^~255~^69.94^6^0.09^~1~^~A~^^^1^69.70^70.25^5^69.70^70.18^~2, 3~^~04/01/2011~ -~05671~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~303~^0.94^5^0.05^~1~^~A~^^^1^0.78^1.05^4^0.78^1.08^~2, 3~^~04/01/2011~ -~05671~^~309~^2.54^5^0.10^~1~^~A~^^^1^2.22^2.78^4^2.23^2.83^~2, 3~^~04/01/2011~ -~05671~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~342~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05671~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05671~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~418~^0.41^5^0.03^~1~^~A~^^^1^0.31^0.52^4^0.31^0.50^~2, 3~^~04/01/2011~ -~05671~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05671~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~203~^24.55^5^0.15^~1~^~A~^^^1^24.10^25.05^4^24.11^24.98^~2, 3~^~04/01/2011~ -~05672~^~204~^8.63^5^0.14^~1~^~A~^^^1^8.15^9.01^4^8.24^9.01^~2, 3~^~04/01/2011~ -~05672~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~207~^0.99^5^5.0e-03^~1~^~A~^^^1^0.97^1.00^4^0.97^0.99^~2, 3~^~04/01/2011~ -~05672~^~255~^66.87^5^0.16^~1~^~A~^^^1^66.32^67.37^4^66.40^67.33^~2, 3~^~04/01/2011~ -~05672~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~303~^1.27^4^0.11^~1~^~A~^^^1^0.94^1.45^3^0.91^1.61^~2, 3~^~04/01/2011~ -~05672~^~309~^1.87^4^0.02^~1~^~A~^^^1^1.80^1.91^3^1.78^1.95^~2, 3~^~04/01/2011~ -~05672~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~342~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05672~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05672~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05672~^~418~^0.42^4^0.02^~1~^~A~^^^1^0.37^0.46^3^0.35^0.48^~2, 3~^~04/01/2011~ -~05672~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05672~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~203~^14.61^5^0.38^~1~^~A~^^^1^13.77^15.86^4^13.55^15.66^~2, 3~^~04/01/2011~ -~05673~^~204~^42.76^5^1.76^~1~^~A~^^^1^36.12^46.07^4^37.85^47.66^~2, 3~^~04/01/2011~ -~05673~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~207~^0.63^5^8.0e-03^~1~^~A~^^^1^0.61^0.65^4^0.60^0.65^~2, 3~^~04/01/2011~ -~05673~^~255~^42.09^5^1.20^~1~^~A~^^^1^40.05^46.77^4^38.75^45.42^~2, 3~^~04/01/2011~ -~05673~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~303~^1.00^4^0.02^~1~^~A~^^^1^0.92^1.03^3^0.91^1.08^~2, 3~^~04/01/2011~ -~05673~^~309~^0.74^4^0.03^~1~^~A~^^^1^0.64^0.78^3^0.63^0.84^~2, 3~^~04/01/2011~ -~05673~^~323~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~342~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05673~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05673~^~346~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~347~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~418~^0.45^4^0.04^~1~^~A~^^^1^0.34^0.58^3^0.29^0.61^~2, 3~^~04/01/2011~ -~05673~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05673~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~203~^9.58^5^0.06^~1~^~A~^^^1^9.40^9.81^4^9.39^9.76^~2, 3~^~04/01/2011~ -~05674~^~204~^44.23^5^1.06^~1~^~A~^^^1^41.40^47.94^4^41.28^47.18^~2, 3~^~04/01/2011~ -~05674~^~205~^0.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~207~^0.49^5^0.01^~1~^~A~^^^1^0.44^0.55^4^0.44^0.54^~2, 3~^~04/01/2011~ -~05674~^~255~^44.91^5^1.33^~1~^~A~^^^1^40.44^47.62^4^41.20^48.60^~2, 3~^~04/01/2011~ -~05674~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~303~^0.37^4^0.03^~1~^~A~^^^1^0.29^0.47^3^0.24^0.49^~2, 3~^~04/01/2011~ -~05674~^~309~^0.65^4^0.01^~1~^~A~^^^1^0.61^0.70^3^0.59^0.70^~2, 3~^~04/01/2011~ -~05674~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~342~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05674~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~418~^0.65^4^0.15^~1~^~A~^^^1^0.39^1.10^3^0.15^1.15^~2, 3~^~04/01/2011~ -~05674~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05674~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~203~^16.57^5^0.44^~1~^~A~^^^1^15.72^18.18^4^15.34^17.79^~2, 3~^~04/01/2011~ -~05675~^~204~^43.99^5^1.27^~1~^~A~^^^1^41.09^47.59^4^40.45^47.52^~2, 3~^~04/01/2011~ -~05675~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~207~^0.72^5^9.0e-03^~1~^~A~^^^1^0.69^0.74^4^0.69^0.74^~2, 3~^~04/01/2011~ -~05675~^~255~^39.45^5^0.94^~1~^~A~^^^1^37.11^42.45^4^36.83^42.06^~2, 3~^~04/01/2011~ -~05675~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~303~^0.90^4^0.04^~1~^~A~^^^1^0.78^1.02^3^0.74^1.05^~2, 3~^~04/01/2011~ -~05675~^~309~^0.86^4^0.04^~1~^~A~^^^1^0.76^0.97^3^0.71^1.01^~2, 3~^~04/01/2011~ -~05675~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05675~^~342~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~05675~^~346~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~347~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~418~^0.50^4^0.02^~1~^~A~^^^1^0.43^0.53^3^0.42^0.58^~2, 3~^~04/01/2011~ -~05675~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05675~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~05676~^~203~^22.72^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~204~^10.73^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~255~^66.33^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~303~^0.94^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~309~^2.30^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~323~^0.17^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~342~^0.09^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~418~^0.41^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~203~^22.57^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~204~^15.43^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~207~^0.91^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~255~^61.93^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~303~^1.21^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~309~^1.64^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~323~^0.17^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~342~^0.09^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~418~^0.43^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05678~^~203~^19.19^4^0.12^~1~^~A~^^^2^17.51^19.94^2^18.65^19.71^~2, 3~^~02/01/2013~ -~05678~^~204~^3.26^4^0.17^~1~^~A~^^^2^2.61^3.88^2^2.52^3.99^~2, 3~^~02/01/2013~ -~05678~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05678~^~207~^0.99^4^0.02^~1~^~A~^^^2^0.89^1.10^2^0.87^1.11^~2, 3~^~02/01/2013~ -~05678~^~255~^77.71^4^0.17^~1~^~A~^^^2^77.22^77.98^2^76.95^78.46^~2, 3~^~02/01/2013~ -~05678~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~303~^0.72^4^0.02^~1~^~A~^^^2^0.59^0.83^2^0.59^0.84^~2, 3~^~02/01/2013~ -~05678~^~309~^2.00^4^0.03^~1~^~A~^^^2^1.94^2.10^2^1.84^2.14^~2, 3~^~02/01/2013~ -~05678~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~342~^0.11^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05678~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05678~^~418~^0.42^3^0.01^~1~^~A~^^^2^0.33^0.54^1^0.20^0.62^~2, 3~^~02/01/2013~ -~05678~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05678~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~203~^25.34^4^0.22^~1~^~A~^^^2^20.81^27.30^2^24.39^26.28^~2, 3~^~02/01/2013~ -~05679~^~204~^5.00^4^0.31^~1~^~A~^^^2^4.10^5.42^2^3.65^6.36^~2, 3~^~02/01/2013~ -~05679~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05679~^~207~^1.19^4^0.04^~1~^~A~^^^2^1.11^1.30^2^0.99^1.39^~2, 3~^~02/01/2013~ -~05679~^~255~^69.50^4^0.53^~1~^~A~^^^2^66.77^73.41^2^67.19^71.79^~2, 3~^~02/01/2013~ -~05679~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~303~^1.10^4^0.04^~1~^~A~^^^2^0.66^1.30^2^0.92^1.27^~2, 3~^~02/01/2013~ -~05679~^~309~^2.64^4^0.02^~1~^~A~^^^2^2.21^2.83^2^2.55^2.73^~2, 3~^~02/01/2013~ -~05679~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~342~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05679~^~418~^0.41^3^0.01^~1~^~A~^^^2^0.35^0.50^1^0.24^0.58^~2, 3~^~02/01/2013~ -~05679~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05679~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~203~^22.99^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~204~^6.33^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~207~^1.13^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~255~^70.18^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~303~^0.78^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~309~^2.34^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~323~^0.17^0^^~4~^~BFSN~^~05671~^^^^^^^^^~06/01/2011~ -~05680~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05680~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~05681~^~203~^23.00^2^^~1~^~A~^^^1^22.16^23.85^1^^^^~07/01/2011~ -~05681~^~204~^7.96^2^^~1~^~A~^^^1^6.91^9.02^1^^^^~07/01/2011~ -~05681~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~207~^1.19^2^^~1~^~A~^^^1^1.12^1.26^1^^^^~07/01/2011~ -~05681~^~255~^68.62^2^^~1~^~A~^^^1^67.14^70.10^1^^^^~07/01/2011~ -~05681~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~303~^1.07^2^^~1~^~A~^^^1^0.97^1.18^1^^^^~07/01/2011~ -~05681~^~309~^1.86^2^^~1~^~A~^^^1^1.79^1.93^1^^^^~07/01/2011~ -~05681~^~323~^0.24^0^^~4~^~BFSN~^~05062~^^^^^^^^^~07/01/2011~ -~05681~^~418~^0.34^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05681~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~203~^19.11^5^0.29^~1~^~A~^^^2^17.81^19.98^2^17.92^20.29^~2, 3~^~02/01/2013~ -~05682~^~204~^3.69^5^0.33^~1~^~A~^^^2^2.43^4.73^3^2.61^4.76^~2, 3~^~02/01/2013~ -~05682~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05682~^~207~^1.04^5^0.03^~1~^~A~^^^2^0.93^1.13^2^0.88^1.20^~2, 3~^~02/01/2013~ -~05682~^~255~^77.16^5^0.34^~1~^~A~^^^2^76.22^77.93^1^73.50^80.80^~2, 3~^~02/01/2013~ -~05682~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~303~^0.60^5^0.01^~1~^~A~^^^2^0.53^0.67^3^0.53^0.66^~2, 3~^~02/01/2013~ -~05682~^~309~^1.53^4^0.03^~1~^~A~^^^2^1.38^1.68^2^1.40^1.65^~2, 3~^~02/01/2013~ -~05682~^~323~^0.26^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~342~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05682~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05682~^~418~^0.56^3^0.01^~1~^~A~^^^2^0.27^1.10^1^0.39^0.72^~2, 3~^~02/01/2013~ -~05682~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05682~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~203~^24.23^5^0.51^~1~^~A~^^^2^22.69^25.35^2^21.66^26.79^~2, 3~^~02/01/2013~ -~05683~^~204~^7.73^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05683~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05683~^~207~^1.19^5^0.05^~1~^~A~^^^2^0.99^1.32^2^0.95^1.42^~2, 3~^~02/01/2013~ -~05683~^~255~^67.86^5^0.63^~1~^~A~^^^2^66.37^69.00^2^65.00^70.72^~2, 3~^~02/01/2013~ -~05683~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~303~^0.98^5^0.04^~1~^~A~^^^2^0.86^1.06^2^0.72^1.23^~2, 3~^~02/01/2013~ -~05683~^~309~^1.90^5^0.06^~1~^~A~^^^2^1.64^2.15^3^1.67^2.12^~2, 3~^~02/01/2013~ -~05683~^~323~^0.36^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05683~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05683~^~418~^0.37^3^3.0e-03^~1~^~A~^^^2^0.28^0.54^1^0.32^0.41^~2, 3~^~02/01/2013~ -~05683~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05683~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~203~^12.26^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~204~^38.94^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~205~^1.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~207~^0.84^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~255~^46.96^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~303~^0.65^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~309~^0.63^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~323~^0.18^0^^~4~^~BFSN~^~05673~^^^^^^^^^~07/01/2011~ -~05684~^~418~^0.27^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05684~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~203~^11.11^4^0.64^~1~^~A~^^^2^9.77^13.18^2^8.31^13.90^~2, 3~^~02/01/2013~ -~05685~^~204~^37.90^4^0.81^~1~^~A~^^^2^34.22^42.73^2^34.40^41.40^~2, 3~^~02/01/2013~ -~05685~^~205~^0.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05685~^~207~^0.60^4^0.01^~1~^~A~^^^2^0.56^0.63^2^0.53^0.65^~2, 3~^~02/01/2013~ -~05685~^~255~^50.37^4^0.31^~1~^~A~^^^2^47.57^52.15^2^49.01^51.73^~2, 3~^~02/01/2013~ -~05685~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~303~^0.51^4^0.04^~1~^~A~^^^2^0.19^0.72^2^0.33^0.69^~1, 2, 3~^~02/01/2013~ -~05685~^~309~^0.62^4^0.03^~1~^~A~^^^2^0.51^0.75^2^0.48^0.76^~2, 3~^~02/01/2013~ -~05685~^~323~^0.44^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~342~^0.17^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~346~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05685~^~418~^0.68^2^^~1~^~A~^^^2^0.56^0.80^^^^^~02/01/2013~ -~05685~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05685~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~203~^20.31^4^1.13^~1~^~A~^^^2^16.78^23.85^2^15.41^25.20^~2, 3~^~02/01/2013~ -~05686~^~204~^37.60^4^0.53^~1~^~A~^^^2^35.45^41.82^2^35.30^39.90^~2, 3~^~06/01/2014~ -~05686~^~205~^0.44^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05686~^~207~^0.91^4^0.06^~1~^~A~^^^2^0.75^1.04^2^0.63^1.18^~2, 3~^~02/01/2013~ -~05686~^~255~^40.73^4^1.18^~1~^~A~^^^2^39.08^43.92^2^35.61^45.84^~2, 3~^~02/01/2013~ -~05686~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~303~^1.17^4^0.12^~1~^~A~^^^2^0.91^1.39^2^0.65^1.69^~2, 3~^~02/01/2013~ -~05686~^~309~^1.51^4^0.02^~1~^~A~^^^2^1.05^2.71^2^1.39^1.61^~2, 3~^~02/01/2013~ -~05686~^~323~^0.45^0^^~4~^~BFSN~^~05062~^^^^^^^^^~06/01/2014~ -~05686~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05686~^~342~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05686~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05686~^~344~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05686~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05686~^~346~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05686~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~05686~^~418~^0.56^2^^~1~^~A~^^^2^0.51^0.61^^^^^~02/01/2013~ -~05686~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05686~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~05687~^~203~^21.55^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~204~^10.71^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~205~^0.13^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~255~^67.06^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~303~^0.76^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~309~^2.11^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~418~^0.30^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~203~^18.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~204~^8.24^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~255~^73.79^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~303~^0.69^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~309~^1.80^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~323~^0.40^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~342~^0.12^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~418~^0.45^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05689~^~203~^24.72^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~204~^9.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~207~^1.16^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~255~^65.97^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~309~^2.50^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~323~^0.26^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~342~^0.12^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~346~^0.07^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~418~^0.43^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05690~^~203~^20.70^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~204~^14.62^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~205~^0.21^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~207~^1.12^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~255~^63.97^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~303~^0.98^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~309~^1.60^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~418~^0.32^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~203~^16.56^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~204~^14.58^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~207~^0.90^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~255~^68.63^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~303~^0.57^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~309~^1.24^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~323~^0.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~342~^0.12^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~418~^0.60^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05691~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~203~^23.47^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~204~^13.81^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05692~^~205~^0.09^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~207~^1.14^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~255~^62.60^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~303~^1.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~309~^1.82^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~323~^0.38^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~342~^0.17^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~346~^0.08^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~418~^0.41^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05692~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05693~^~203~^21.85^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~204~^13.87^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~205~^0.31^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05693~^~207~^1.40^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~210~^0.16^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~211~^0.15^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~255~^62.96^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~269~^0.31^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~05693~^~303~^0.82^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~309~^1.74^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~323~^0.24^0^^~4~^~BFSN~^~05341~^^^^^^^^^~05/01/2012~ -~05693~^~418~^0.61^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05694~^~203~^19.27^6^0.39^~1~^~A~^^^1^17.45^20.23^5^18.25^20.27^~2, 3~^~08/01/2012~ -~05694~^~204~^4.12^6^0.38^~1~^~A~^^^1^3.11^5.29^5^3.13^5.10^~2, 3~^~08/01/2012~ -~05694~^~205~^0.10^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~05694~^~207~^1.19^6^0.08^~1~^~A~^^^1^1.00^1.56^5^0.97^1.39^~2, 3~^~08/01/2012~ -~05694~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~210~^0.10^2^^~1~^~A~^^^1^0.00^0.20^1^^^~1~^~08/01/2012~ -~05694~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05694~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05694~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05694~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05694~^~255~^75.86^6^0.59^~1~^~A~^^^1^73.89^78.21^5^74.32^77.38^~2, 3~^~08/01/2012~ -~05694~^~269~^0.10^2^^~1~^~A~^^^1^0.00^0.20^1^^^^~08/01/2012~ -~05694~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05694~^~303~^0.90^6^0.02^~1~^~A~^^^1^0.78^0.95^5^0.82^0.97^~2, 3~^~08/01/2012~ -~05694~^~309~^2.68^10^0.07^~1~^~A~^^^^2.38^3.10^^^^^~08/01/2012~ -~05694~^~323~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.18^2^-0.01^0.25^~2, 3~^~08/01/2012~ -~05694~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~342~^0.03^3^0.01^~1~^~A~^^^1^0.02^0.05^2^-7.0e-03^0.07^~2, 3~^~08/01/2012~ -~05694~^~343~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~08/01/2012~ -~05694~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~346~^0.01^6^8.0e-03^~1~^~A~^^^1^0.00^0.04^4^-0.01^0.03^~1, 2, 3~^~08/01/2012~ -~05694~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~418~^2.05^4^0.02^~1~^~A~^^^1^2.00^2.10^1^1.73^2.36^~2, 3~^~08/01/2012~ -~05694~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05694~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~203~^26.10^6^0.32^~1~^~A~^^^1^24.96^27.02^5^25.26^26.94^~2, 3~^~08/01/2012~ -~05695~^~204~^6.00^6^0.26^~1~^~A~^^^1^5.02^6.88^5^5.31^6.68^~2, 3~^~08/01/2012~ -~05695~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~207~^1.24^6^0.06^~1~^~A~^^^1^1.15^1.55^5^1.07^1.40^~2, 3~^~08/01/2012~ -~05695~^~255~^66.85^6^0.28^~1~^~A~^^^1^65.85^67.57^5^66.11^67.58^~2, 3~^~08/01/2012~ -~05695~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~303~^1.07^6^0.02^~1~^~A~^^^1^1.03^1.15^5^1.02^1.12^~2, 3~^~08/01/2012~ -~05695~^~309~^3.40^6^0.05^~1~^~A~^^^1^3.21^3.54^5^3.25^3.54^~2, 3~^~08/01/2012~ -~05695~^~323~^0.07^3^2.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.05^0.07^~2, 3~^~08/01/2012~ -~05695~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~342~^0.04^3^4.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.02^0.05^~2, 3~^~08/01/2012~ -~05695~^~343~^0.03^3^3.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.01^0.04^~2, 3~^~08/01/2012~ -~05695~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~346~^0.05^3^3.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.04^0.06^~2, 3~^~08/01/2012~ -~05695~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~418~^1.65^2^^~1~^~A~^^^1^1.60^1.70^1^^^^~08/01/2012~ -~05695~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05695~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~203~^21.54^6^0.60^~1~^~A~^^^1^20.16^23.37^5^19.99^23.08^~2, 3~^~08/01/2012~ -~05696~^~204~^1.66^6^0.14^~1~^~A~^^^1^1.30^2.25^5^1.28^2.04^~2, 3~^~08/01/2012~ -~05696~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05696~^~207~^1.42^6^0.11^~1~^~A~^^^1^1.09^1.73^5^1.13^1.71^~2, 3~^~08/01/2012~ -~05696~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~210~^0.05^2^^~1~^~A~^^^1^0.00^0.10^1^^^~1~^~08/01/2012~ -~05696~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05696~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05696~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05696~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05696~^~255~^76.42^6^0.49^~1~^~A~^^^1^74.97^77.89^5^75.14^77.69^~2, 3~^~08/01/2012~ -~05696~^~269~^0.05^2^^~1~^~A~^^^1^0.00^0.10^1^^^^~08/01/2012~ -~05696~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05696~^~303~^0.54^6^0.03^~1~^~A~^^^1^0.46^0.69^5^0.44^0.62^~2, 3~^~08/01/2012~ -~05696~^~309~^1.30^10^0.04^~1~^~A~^^^^1.03^1.47^^^^^~08/01/2012~ -~05696~^~323~^0.06^3^0.01^~1~^~A~^^^1^0.05^0.09^2^0.01^0.11^~2, 3~^~08/01/2012~ -~05696~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~342~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.06^~1, 2, 3~^~08/01/2012~ -~05696~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~418~^0.63^3^0.14^~1~^~A~^^^1^0.41^0.91^2^2.0e-03^1.26^~2, 3~^~08/01/2012~ -~05696~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05696~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~203~^26.97^6^0.58^~1~^~A~^^^1^25.06^29.28^5^25.46^28.47^~2, 3~^~08/01/2012~ -~05697~^~204~^2.08^6^0.20^~1~^~A~^^^1^1.58^2.72^5^1.55^2.61^~2, 3~^~08/01/2012~ -~05697~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~207~^1.44^6^0.08^~1~^~A~^^^1^1.08^1.72^5^1.21^1.66^~2, 3~^~08/01/2012~ -~05697~^~255~^70.18^6^0.52^~1~^~A~^^^1^68.37^71.79^5^68.82^71.53^~2, 3~^~08/01/2012~ -~05697~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~303~^0.55^6^0.02^~1~^~A~^^^1^0.51^0.67^5^0.48^0.62^~2, 3~^~08/01/2012~ -~05697~^~309~^1.49^6^0.06^~1~^~A~^^^1^1.33^1.74^5^1.33^1.65^~2, 3~^~08/01/2012~ -~05697~^~323~^0.06^3^6.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.04^0.08^~2, 3~^~08/01/2012~ -~05697~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~342~^0.03^3^3.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.03^~2, 3~^~08/01/2012~ -~05697~^~343~^0.01^3^8.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.04^~1, 2, 3~^~08/01/2012~ -~05697~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~346~^0.03^3^4.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.01^0.05^~2, 3~^~08/01/2012~ -~05697~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~418~^1.70^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05697~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05697~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~203~^12.29^2^^~1~^~A~^^^1^11.94^12.64^1^^^^~08/01/2012~ -~05698~^~204~^36.80^2^^~1~^~A~^^^1^33.64^39.97^1^^^^~08/01/2012~ -~05698~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~207~^0.69^2^^~1~^~A~^^^1^0.63^0.75^1^^^^~08/01/2012~ -~05698~^~209~^0.06^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05698~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05698~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05698~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05698~^~255~^50.00^2^^~1~^~A~^^^1^46.15^53.85^1^^^^~08/01/2012~ -~05698~^~269~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~05698~^~303~^0.57^2^^~1~^~A~^^^1^0.53^0.60^1^^^^~08/01/2012~ -~05698~^~309~^0.82^2^^~1~^~A~^^^1^0.73^0.91^1^^^^~08/01/2012~ -~05698~^~323~^0.09^2^^~1~^~A~^^^1^0.09^0.09^1^^^^~08/01/2012~ -~05698~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~08/01/2012~ -~05698~^~342~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~08/01/2012~ -~05698~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~08/01/2012~ -~05698~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~08/01/2012~ -~05698~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05698~^~346~^0.04^2^^~1~^~A~^^^1^0.04^0.04^1^^^^~08/01/2012~ -~05698~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05698~^~418~^0.88^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05698~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~203~^22.15^2^^~1~^~A~^^^1^20.22^24.09^1^^^^~08/01/2012~ -~05699~^~204~^40.31^2^^~1~^~A~^^^1^38.43^42.19^1^^^^~08/01/2012~ -~05699~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~207~^1.37^2^^~1~^~A~^^^1^1.21^1.53^1^^^^~08/01/2012~ -~05699~^~255~^36.92^2^^~1~^~A~^^^1^33.37^40.46^1^^^^~08/01/2012~ -~05699~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~303~^1.08^2^^~1~^~A~^^^1^1.04^1.13^1^^^^~08/01/2012~ -~05699~^~309~^1.61^2^^~1~^~A~^^^1^1.52^1.70^1^^^^~08/01/2012~ -~05699~^~323~^0.15^2^^~1~^~A~^^^1^0.10^0.20^1^^^^~08/01/2012~ -~05699~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05699~^~342~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~08/01/2012~ -~05699~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05699~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05699~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05699~^~346~^0.08^2^^~1~^~A~^^^1^0.07^0.10^1^^^^~08/01/2012~ -~05699~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~05699~^~418~^1.59^0^^~4~^~BFPN~^~05698~^^^^^^^^^~08/01/2012~ -~05699~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05699~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05700~^~203~^17.84^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~204~^10.83^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05700~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~209~^0.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~210~^0.10^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~255~^70.55^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~269~^0.10^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~303~^0.83^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~309~^2.30^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~323~^0.11^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~418~^1.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05700~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~203~^25.55^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~204~^10.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~207~^1.26^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~255~^62.66^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~303~^1.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~309~^3.15^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~323~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~343~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~418~^1.64^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~203~^20.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~204~^7.42^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05702~^~207~^1.31^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~209~^0.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~210~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~255~^72.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~269~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~303~^0.54^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~309~^1.22^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~418~^0.67^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05702~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~203~^26.52^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~204~^5.64^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~207~^1.43^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~255~^67.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~303~^0.60^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~309~^1.50^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~418~^1.69^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~203~^20.87^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~204~^2.39^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05704~^~207~^1.35^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~209~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~210~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~255~^76.25^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~269~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~303~^0.64^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~309~^1.70^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~323~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~418~^1.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~203~^26.61^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~204~^3.70^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~207~^1.36^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~255~^68.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~303~^0.77^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~309~^2.28^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~323~^0.06^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~418~^1.68^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~203~^19.03^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~204~^9.10^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05706~^~207~^1.21^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~209~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~210~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~255~^71.26^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~269~^0.08^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~303~^0.67^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~309~^1.68^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~323~^0.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~418~^1.16^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05706~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~203~^26.09^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~204~^8.01^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~207~^1.36^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~255~^65.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~303~^0.81^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~309~^2.20^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~323~^0.07^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~346~^0.05^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~418~^1.67^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05708~^~203~^21.99^3^0.29^~1~^~A~^^^1^21.39^22.33^2^20.69^23.27^~2, 3~^~01/01/2013~ -~05708~^~204~^2.53^3^0.14^~1~^~A~^^^1^2.24^2.71^2^1.89^3.16^~2, 3~^~01/01/2013~ -~05708~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05708~^~207~^1.19^3^0.08^~1~^~A~^^^1^1.02^1.32^2^0.80^1.57^~2, 3~^~01/01/2013~ -~05708~^~255~^75.95^3^0.25^~1~^~A~^^^1^75.53^76.40^2^74.85^77.03^~2, 3~^~01/01/2013~ -~05708~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~303~^0.41^3^0.03^~1~^~A~^^^1^0.36^0.48^2^0.26^0.55^~2, 3~^~01/01/2013~ -~05708~^~309~^1.10^3^0.12^~1~^~A~^^^1^0.86^1.23^2^0.57^1.63^~2, 3~^~01/01/2013~ -~05708~^~323~^0.10^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05708~^~418~^0.33^2^^~1~^~A~^^^1^0.24^0.42^1^^^^~01/01/2013~ -~05708~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05708~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~203~^27.94^3^0.49^~1~^~A~^^^1^27.33^28.93^2^25.80^30.08^~2, 3~^~01/01/2013~ -~05709~^~204~^2.08^3^0.50^~1~^~A~^^^1^1.12^2.84^2^-0.09^4.25^~2, 3~^~01/01/2013~ -~05709~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~207~^1.40^3^0.19^~1~^~A~^^^1^1.02^1.69^2^0.55^2.24^~2, 3~^~01/01/2013~ -~05709~^~255~^69.99^3^0.56^~1~^~A~^^^1^68.87^70.57^2^67.58^72.40^~2, 3~^~01/01/2013~ -~05709~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~303~^0.59^3^0.06^~1~^~A~^^^1^0.51^0.72^2^0.32^0.86^~2, 3~^~01/01/2013~ -~05709~^~309~^1.33^3^0.05^~1~^~A~^^^1^1.28^1.43^2^1.11^1.54^~2, 3~^~01/01/2013~ -~05709~^~323~^0.08^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05709~^~418~^0.30^2^^~1~^~A~^^^1^0.29^0.31^1^^^^~01/01/2013~ -~05709~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05709~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~203~^23.34^3^0.23^~1~^~A~^^^1^22.99^23.79^2^22.31^24.35^~2, 3~^~01/01/2013~ -~05710~^~204~^2.33^3^0.10^~1~^~A~^^^1^2.11^2.46^2^1.85^2.79^~2, 3~^~01/01/2013~ -~05710~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~207~^1.06^3^0.01^~1~^~A~^^^1^1.03^1.09^2^0.98^1.13^~2, 3~^~01/01/2013~ -~05710~^~255~^74.66^3^0.24^~1~^~A~^^^1^74.37^75.14^2^73.61^75.69^~2, 3~^~01/01/2013~ -~05710~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~303~^0.76^3^0.07^~1~^~A~^^^1^0.67^0.91^2^0.42^1.09^~2, 3~^~01/01/2013~ -~05710~^~309~^1.16^3^0.04^~1~^~A~^^^1^1.07^1.24^2^0.95^1.37^~2, 3~^~01/01/2013~ -~05710~^~323~^0.09^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05710~^~418~^1.35^2^^~1~^~A~^^^1^1.16^1.54^1^^^^~01/01/2013~ -~05710~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05710~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~203~^29.51^3^0.64^~1~^~A~^^^1^28.74^30.78^2^26.74^32.26^~2, 3~^~01/01/2013~ -~05711~^~204~^1.97^3^0.36^~1~^~A~^^^1^1.57^2.69^2^0.40^3.52^~2, 3~^~01/01/2013~ -~05711~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05711~^~207~^1.25^3^0.05^~1~^~A~^^^1^1.13^1.32^2^0.99^1.49^~2, 3~^~01/01/2013~ -~05711~^~255~^67.53^3^1.05^~1~^~A~^^^1^65.46^68.90^2^62.99^72.05^~2, 3~^~01/01/2013~ -~05711~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~303~^0.97^3^0.06^~1~^~A~^^^1^0.86^1.09^2^0.66^1.26^~2, 3~^~01/01/2013~ -~05711~^~309~^1.52^3^0.08^~1~^~A~^^^1^1.36^1.63^2^1.17^1.86^~2, 3~^~01/01/2013~ -~05711~^~323~^0.06^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05711~^~418~^1.76^2^^~1~^~A~^^^1^1.67^1.84^1^^^^~01/01/2013~ -~05711~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05711~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~203~^22.48^4^0.21^~1~^~A~^^^1^21.89^22.92^3^21.79^23.16^~2, 3~^~01/01/2013~ -~05712~^~204~^2.49^4^0.14^~1~^~A~^^^1^2.22^2.80^3^2.02^2.96^~2, 3~^~01/01/2013~ -~05712~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~207~^0.94^4^0.04^~1~^~A~^^^1^0.85^1.07^3^0.78^1.08^~2, 3~^~01/01/2013~ -~05712~^~255~^75.05^4^0.42^~1~^~A~^^^1^73.89^75.89^3^73.68^76.41^~2, 3~^~01/01/2013~ -~05712~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~303~^0.60^4^0.03^~1~^~A~^^^1^0.52^0.66^3^0.50^0.69^~2, 3~^~01/01/2013~ -~05712~^~309~^2.61^4^0.10^~1~^~A~^^^1^2.33^2.85^3^2.26^2.95^~2, 3~^~01/01/2013~ -~05712~^~323~^0.11^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05712~^~418~^0.92^3^0.22^~1~^~A~^^^1^0.51^1.30^2^-0.06^1.89^~2, 3~^~01/01/2013~ -~05712~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05712~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~203~^30.17^4^0.50^~1~^~A~^^^1^29.08^31.27^3^28.56^31.76^~2, 3~^~01/01/2013~ -~05713~^~204~^5.51^4^0.66^~1~^~A~^^^1^3.83^6.84^3^3.38^7.64^~2, 3~^~01/01/2013~ -~05713~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~207~^1.05^4^0.03^~1~^~A~^^^1^0.98^1.13^3^0.95^1.15^~2, 3~^~01/01/2013~ -~05713~^~255~^64.04^4^0.36^~1~^~A~^^^1^63.26^64.98^3^62.87^65.20^~2, 3~^~01/01/2013~ -~05713~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~303~^0.82^4^0.03^~1~^~A~^^^1^0.73^0.90^3^0.70^0.92^~2, 3~^~01/01/2013~ -~05713~^~309~^3.24^4^0.07^~1~^~A~^^^1^3.09^3.40^3^3.00^3.47^~2, 3~^~01/01/2013~ -~05713~^~323~^0.17^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05713~^~418~^1.25^3^0.25^~1~^~A~^^^1^0.75^1.50^2^0.17^2.32^~2, 3~^~01/01/2013~ -~05713~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05713~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~203~^14.35^2^^~1~^~A~^^^1^13.97^14.73^1^^^^~01/01/2013~ -~05714~^~204~^35.83^2^^~1~^~A~^^^1^33.99^37.67^1^^^^~01/01/2013~ -~05714~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~207~^0.49^2^^~1~^~A~^^^1^0.48^0.51^1^^^^~01/01/2013~ -~05714~^~255~^50.08^2^^~1~^~A~^^^1^48.56^51.60^1^^^^~01/01/2013~ -~05714~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~303~^0.76^2^^~1~^~A~^^^1^0.75^0.77^1^^^^~01/01/2013~ -~05714~^~309~^0.88^2^^~1~^~A~^^^1^0.81^0.95^1^^^^~01/01/2013~ -~05714~^~323~^0.08^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05714~^~418~^1.95^2^^~1~^~A~^^^1^1.40^2.50^1^^^^~01/01/2013~ -~05714~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05714~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~203~^24.58^2^^~1~^~A~^^^1^22.86^26.29^1^^^^~01/01/2013~ -~05715~^~204~^35.03^2^^~1~^~A~^^^1^32.91^37.15^1^^^^~01/01/2013~ -~05715~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~207~^1.15^2^^~1~^~A~^^^1^1.03^1.26^1^^^^~01/01/2013~ -~05715~^~255~^39.42^2^^~1~^~A~^^^1^38.05^40.80^1^^^^~01/01/2013~ -~05715~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~303~^1.65^2^^~1~^~A~^^^1^1.65^1.65^^^^^~01/01/2013~ -~05715~^~309~^1.65^2^^~1~^~A~^^^1^1.65^1.66^1^^^^~01/01/2013~ -~05715~^~323~^0.13^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05715~^~418~^1.85^2^^~1~^~A~^^^1^1.80^1.90^1^^^^~01/01/2013~ -~05715~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05715~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~203~^20.52^6^0.17^~1~^~A~^^^1^19.96^21.07^5^20.05^20.97^~2, 3~^~01/01/2013~ -~05716~^~204~^3.97^6^0.30^~1~^~A~^^^1^3.11^4.90^5^3.18^4.75^~2, 3~^~01/01/2013~ -~05716~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~207~^0.91^6^9.0e-03^~1~^~A~^^^1^0.88^0.95^5^0.88^0.93^~2, 3~^~01/01/2013~ -~05716~^~255~^75.67^6^0.11^~1~^~A~^^^1^75.30^75.88^5^75.38^75.96^~2, 3~^~01/01/2013~ -~05716~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~303~^1.18^6^0.02^~1~^~A~^^^1^1.10^1.23^5^1.12^1.23^~2, 3~^~01/01/2013~ -~05716~^~309~^3.12^6^0.03^~1~^~A~^^^1^3.00^3.23^5^3.03^3.21^~2, 3~^~01/01/2013~ -~05716~^~323~^0.19^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05716~^~418~^1.90^3^0.35^~1~^~A~^^^1^1.50^2.60^2^0.38^3.41^~2, 3~^~01/01/2013~ -~05716~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05716~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~203~^20.60^5^0.23^~1~^~A~^^^1^20.12^21.36^4^19.94^21.25^~2, 3~^~01/01/2013~ -~05717~^~204~^3.69^5^0.53^~1~^~A~^^^1^2.19^4.92^4^2.20^5.18^~2, 3~^~01/01/2013~ -~05717~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~207~^1.03^5^0.01^~1~^~A~^^^1^0.98^1.06^4^0.98^1.06^~2, 3~^~01/01/2013~ -~05717~^~255~^75.62^5^0.16^~1~^~A~^^^1^75.10^76.08^4^75.17^76.06^~2, 3~^~01/01/2013~ -~05717~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~303~^1.42^5^0.07^~1~^~A~^^^1^1.22^1.67^4^1.21^1.62^~2, 3~^~01/01/2013~ -~05717~^~309~^2.95^4^0.03^~1~^~A~^^^1^2.89^3.06^3^2.83^3.06^~2, 3~^~01/01/2013~ -~05717~^~323~^0.18^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05717~^~418~^2.17^3^0.77^~1~^~A~^^^1^1.20^3.70^2^-1.16^5.50^~2, 3~^~01/01/2013~ -~05717~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05717~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~203~^26.97^6^0.58^~1~^~A~^^^^25.06^29.28^^^^^~01/01/2013~ -~05718~^~204~^2.08^6^0.20^~1~^~A~^^^^1.58^2.72^^^^^~01/01/2013~ -~05718~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~207~^1.44^6^0.08^~1~^~A~^^^^1.08^1.72^^^^^~01/01/2013~ -~05718~^~255~^70.18^6^0.52^~1~^~A~^^^^68.37^71.79^^^^^~01/01/2013~ -~05718~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~303~^0.55^6^0.02^~1~^~A~^^^^0.51^0.67^^^^^~01/01/2013~ -~05718~^~309~^1.49^6^0.06^~1~^~A~^^^^1.33^1.74^^^^^~01/01/2013~ -~05718~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05718~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05718~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05718~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05718~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05718~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05718~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05718~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05718~^~418~^0.79^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~ -~05718~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05718~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~203~^19.27^6^0.39^~1~^~A~^^^^17.45^20.23^^^^^~01/01/2013~ -~05719~^~204~^4.12^6^0.38^~1~^~A~^^^^3.11^5.29^^^^^~01/01/2013~ -~05719~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05719~^~207~^1.19^6^0.08^~1~^~A~^^^^1.00^1.56^^^^^~01/01/2013~ -~05719~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05719~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~255~^75.86^6^0.59^~1~^~A~^^^^73.89^78.21^^^^^~01/01/2013~ -~05719~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05719~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~303~^0.90^6^0.02^~1~^~A~^^^^0.78^0.95^^^^^~01/01/2013~ -~05719~^~309~^2.68^10^0.07^~1~^~A~^^^^2.38^3.10^^^^^~01/01/2013~ -~05719~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~01/01/2013~ -~05719~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~01/01/2013~ -~05719~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05719~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~346~^0.01^6^8.0e-03^~1~^~A~^^^^0.00^0.04^^^^^~01/01/2013~ -~05719~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05719~^~418~^2.05^4^0.02^~1~^~A~^^^^2.00^2.10^^^^^~01/01/2013~ -~05719~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05719~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~203~^26.97^6^0.58^~1~^~A~^^^^25.06^29.28^^^^^~01/01/2013~ -~05720~^~204~^2.08^6^0.20^~1~^~A~^^^^1.58^2.72^^^^^~01/01/2013~ -~05720~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~207~^1.44^6^0.08^~1~^~A~^^^^1.08^1.72^^^^^~01/01/2013~ -~05720~^~255~^70.18^6^0.52^~1~^~A~^^^^68.37^71.79^^^^^~01/01/2013~ -~05720~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~303~^0.55^6^0.02^~1~^~A~^^^^0.51^0.67^^^^^~01/01/2013~ -~05720~^~309~^1.49^6^0.06^~1~^~A~^^^^1.33^1.74^^^^^~01/01/2013~ -~05720~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05720~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05720~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05720~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05720~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05720~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05720~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05720~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05720~^~418~^1.70^0^^~4~^~BFPN~^~05695~^^^^^^^^^~01/01/2013~ -~05720~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05720~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~203~^21.54^6^0.60^~1~^~A~^^^^20.16^23.37^^^^^~01/01/2013~ -~05721~^~204~^1.66^6^0.14^~1~^~A~^^^^1.30^2.25^^^^^~01/01/2013~ -~05721~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05721~^~207~^1.42^6^0.11^~1~^~A~^^^^1.09^1.73^^^^^~01/01/2013~ -~05721~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05721~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~255~^76.42^6^0.49^~1~^~A~^^^^74.97^77.89^^^^^~01/01/2013~ -~05721~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05721~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~303~^0.54^6^0.03^~1~^~A~^^^^0.46^0.69^^^^^~01/01/2013~ -~05721~^~309~^1.30^10^0.04^~1~^~A~^^^^1.03^1.47^^^^^~01/01/2013~ -~05721~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~01/01/2013~ -~05721~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~01/01/2013~ -~05721~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05721~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~01/01/2013~ -~05721~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05721~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~203~^25.14^5^0.93^~1~^~A~^^^1^22.77^27.71^4^22.53^27.74^~2, 3~^~01/01/2013~ -~05722~^~204~^6.25^5^0.57^~1~^~A~^^^1^4.62^8.02^4^4.65^7.84^~2, 3~^~01/01/2013~ -~05722~^~205~^0.46^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05722~^~207~^1.18^5^0.06^~1~^~A~^^^1^1.08^1.44^4^0.99^1.36^~2, 3~^~01/01/2013~ -~05722~^~255~^66.98^5^1.51^~1~^~A~^^^1^63.24^70.86^4^62.77^71.18^~2, 3~^~01/01/2013~ -~05722~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~303~^1.59^5^0.06^~1~^~A~^^^1^1.37^1.75^4^1.41^1.75^~2, 3~^~01/01/2013~ -~05722~^~309~^3.26^5^0.21^~1~^~A~^^^1^2.80^3.85^4^2.65^3.86^~2, 3~^~01/01/2013~ -~05722~^~323~^0.07^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05722~^~418~^1.63^3^0.53^~1~^~A~^^^1^1.00^2.70^2^-0.67^3.94^~2, 3~^~01/01/2013~ -~05722~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05722~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~203~^28.61^6^0.62^~1~^~A~^^^1^26.04^30.24^5^27.00^30.21^~2, 3~^~01/01/2013~ -~05723~^~204~^6.52^6^0.17^~1~^~A~^^^1^6.02^7.19^5^6.06^6.98^~2, 3~^~01/01/2013~ -~05723~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05723~^~207~^1.06^6^6.0e-03^~1~^~A~^^^1^1.04^1.08^5^1.04^1.07^~2, 3~^~01/01/2013~ -~05723~^~255~^65.14^6^0.52^~1~^~A~^^^1^63.53^67.09^5^63.78^66.49^~2, 3~^~01/01/2013~ -~05723~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~303~^1.57^6^0.02^~1~^~A~^^^1^1.48^1.63^5^1.52^1.62^~2, 3~^~01/01/2013~ -~05723~^~309~^4.50^6^0.02^~1~^~A~^^^1^4.42^4.57^5^4.43^4.57^~2, 3~^~01/01/2013~ -~05723~^~323~^0.07^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~05723~^~418~^2.53^3^0.53^~1~^~A~^^^1^1.50^3.30^2^0.22^4.84^~2, 3~^~01/01/2013~ -~05723~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05723~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~203~^19.27^6^0.39^~1~^~A~^^^^17.45^20.23^^^^^~01/01/2013~ -~05724~^~204~^4.12^6^0.38^~1~^~A~^^^^3.11^5.29^^^^^~01/01/2013~ -~05724~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05724~^~207~^1.19^6^0.08^~1~^~A~^^^^1.00^1.56^^^^^~01/01/2013~ -~05724~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05724~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~255~^75.86^6^0.59^~1~^~A~^^^^73.89^78.21^^^^^~01/01/2013~ -~05724~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05724~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~303~^0.90^6^0.02^~1~^~A~^^^^0.78^0.95^^^^^~01/01/2013~ -~05724~^~309~^2.68^10^0.07^~1~^~A~^^^^2.38^3.10^^^^^~01/01/2013~ -~05724~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~01/01/2013~ -~05724~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~01/01/2013~ -~05724~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05724~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~346~^0.01^6^8.0e-03^~1~^~A~^^^^0.00^0.04^^^^^~01/01/2013~ -~05724~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05724~^~418~^2.05^4^0.02^~1~^~A~^^^^2.00^2.10^^^^^~01/01/2013~ -~05724~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05724~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05725~^~203~^26.10^6^0.32^~1~^~A~^^^^24.96^27.02^^^^^~01/01/2013~ -~05725~^~204~^6.00^6^0.26^~1~^~A~^^^^5.02^6.88^^^^^~01/01/2013~ -~05725~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~207~^1.24^6^0.06^~1~^~A~^^^^1.15^1.55^^^^^~01/01/2013~ -~05725~^~255~^66.85^6^0.28^~1~^~A~^^^^65.85^67.57^^^^^~01/01/2013~ -~05725~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~303~^1.07^6^0.02^~1~^~A~^^^^1.03^1.15^^^^^~01/01/2013~ -~05725~^~309~^3.40^6^0.05^~1~^~A~^^^^3.21^3.54^^^^^~01/01/2013~ -~05725~^~323~^0.07^3^2.0e-03^~1~^~A~^^^^0.06^0.07^^^^^~01/01/2013~ -~05725~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05725~^~342~^0.04^3^4.0e-03^~1~^~A~^^^^0.03^0.05^^^^^~01/01/2013~ -~05725~^~343~^0.03^3^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05725~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05725~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05725~^~346~^0.05^3^3.0e-03^~1~^~A~^^^^0.05^0.06^^^^^~01/01/2013~ -~05725~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05725~^~418~^1.65^2^^~1~^~A~^^^^1.60^1.70^^^^^~01/01/2013~ -~05725~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05725~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05726~^~203~^19.27^6^0.39^~1~^~A~^^^^17.45^20.23^^^^^~01/01/2013~ -~05726~^~204~^4.12^6^0.38^~1~^~A~^^^^3.11^5.29^^^^^~01/01/2013~ -~05726~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05726~^~207~^1.19^6^0.08^~1~^~A~^^^^1.00^1.56^^^^^~01/01/2013~ -~05726~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05726~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~255~^75.86^6^0.59^~1~^~A~^^^^73.89^78.21^^^^^~01/01/2013~ -~05726~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05726~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~303~^0.90^6^0.02^~1~^~A~^^^^0.78^0.95^^^^^~01/01/2013~ -~05726~^~309~^2.68^10^0.07^~1~^~A~^^^^2.38^3.10^^^^^~01/01/2013~ -~05726~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~01/01/2013~ -~05726~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~01/01/2013~ -~05726~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05726~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~346~^0.01^6^8.0e-03^~1~^~A~^^^^0.00^0.04^^^^^~01/01/2013~ -~05726~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05726~^~418~^2.05^4^0.02^~1~^~A~^^^^2.00^2.10^^^^^~01/01/2013~ -~05726~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05726~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05727~^~203~^20.79^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~204~^6.75^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~207~^1.13^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~209~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~210~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~255~^72.76^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~269~^0.01^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~303~^0.43^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~309~^1.07^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~323~^0.10^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~418~^0.40^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05727~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05728~^~203~^26.10^6^0.32^~1~^~A~^^^^24.96^27.02^^^^^~01/01/2013~ -~05728~^~204~^6.00^6^0.26^~1~^~A~^^^^5.02^6.88^^^^^~01/01/2013~ -~05728~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~207~^1.24^6^0.06^~1~^~A~^^^^1.15^1.55^^^^^~01/01/2013~ -~05728~^~255~^66.85^6^0.28^~1~^~A~^^^^65.85^67.57^^^^^~01/01/2013~ -~05728~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~303~^1.07^6^0.02^~1~^~A~^^^^1.03^1.15^^^^^~01/01/2013~ -~05728~^~309~^3.40^6^0.05^~1~^~A~^^^^3.21^3.54^^^^^~01/01/2013~ -~05728~^~323~^0.07^3^2.0e-03^~1~^~A~^^^^0.06^0.07^^^^^~01/01/2013~ -~05728~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05728~^~342~^0.04^3^4.0e-03^~1~^~A~^^^^0.03^0.05^^^^^~01/01/2013~ -~05728~^~343~^0.03^3^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05728~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05728~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05728~^~346~^0.05^3^3.0e-03^~1~^~A~^^^^0.05^0.06^^^^^~01/01/2013~ -~05728~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05728~^~418~^1.65^2^^~1~^~A~^^^^1.60^1.70^^^^^~01/01/2013~ -~05728~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05728~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~203~^21.54^6^0.60^~1~^~A~^^^^20.16^23.37^^^^^~01/01/2013~ -~05729~^~204~^1.66^6^0.14^~1~^~A~^^^^1.30^2.25^^^^^~01/01/2013~ -~05729~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05729~^~207~^1.42^6^0.11^~1~^~A~^^^^1.09^1.73^^^^^~01/01/2013~ -~05729~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05729~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~255~^76.42^6^0.49^~1~^~A~^^^^74.97^77.89^^^^^~01/01/2013~ -~05729~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05729~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~303~^0.54^6^0.03^~1~^~A~^^^^0.46^0.69^^^^^~01/01/2013~ -~05729~^~309~^1.30^10^0.04^~1~^~A~^^^^1.03^1.47^^^^^~01/01/2013~ -~05729~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~01/01/2013~ -~05729~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~01/01/2013~ -~05729~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05729~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~01/01/2013~ -~05729~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05729~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~203~^26.97^6^0.58^~1~^~A~^^^^25.06^29.28^^^^^~01/01/2013~ -~05730~^~204~^2.08^6^0.20^~1~^~A~^^^^1.58^2.72^^^^^~01/01/2013~ -~05730~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~207~^1.44^6^0.08^~1~^~A~^^^^1.08^1.72^^^^^~01/01/2013~ -~05730~^~255~^70.18^6^0.52^~1~^~A~^^^^68.37^71.79^^^^^~01/01/2013~ -~05730~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~303~^0.55^6^0.02^~1~^~A~^^^^0.51^0.67^^^^^~01/01/2013~ -~05730~^~309~^1.49^6^0.06^~1~^~A~^^^^1.33^1.74^^^^^~01/01/2013~ -~05730~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05730~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05730~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05730~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05730~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05730~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05730~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05730~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05730~^~418~^1.70^0^^~4~^~BFPN~^~05697~^^^^^^^^^~04/01/2013~ -~05730~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05730~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05732~^~203~^21.88^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~204~^7.45^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~209~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~210~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~255~^70.98^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~303~^0.77^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~309~^1.15^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~323~^0.09^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~418~^1.28^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~203~^29.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~204~^5.33^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~207~^1.25^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~255~^64.59^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~303~^1.03^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~309~^1.57^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~323~^0.07^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~418~^1.75^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~203~^19.53^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~204~^13.79^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~205~^0.05^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05734~^~207~^0.81^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~209~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~210~^0.03^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~255~^66.78^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~269~^0.03^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05734~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~303~^0.68^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~309~^2.14^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~323~^0.10^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~418~^0.91^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~203~^28.74^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~204~^13.29^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~205~^0.13^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~255~^57.34^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~303~^1.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~309~^2.99^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~418~^1.36^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~203~^19.96^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~204~^6.84^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~255~^73.37^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~303~^1.14^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~309~^2.92^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~418~^1.90^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05736~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~203~^28.21^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~204~^9.37^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~255~^62.57^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~303~^1.58^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~309~^4.22^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~323~^0.08^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05737~^~418~^2.46^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05737~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05738~^~203~^23.66^4^0.34^~1~^~A~^^^^22.95^24.38^^^^^~01/01/2013~ -~05738~^~204~^1.48^4^0.06^~1~^~A~^^^^1.37^1.61^^^^^~01/01/2013~ -~05738~^~205~^0.14^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05738~^~207~^1.04^4^0.01^~1~^~A~^^^^1.01^1.08^^^^^~01/01/2013~ -~05738~^~209~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~210~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05738~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~255~^74.89^4^0.34^~1~^~A~^^^^73.97^75.41^^^^^~01/01/2013~ -~05738~^~269~^0.05^2^^~1~^~A~^^^^0.00^0.10^^^^^~01/01/2013~ -~05738~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~303~^0.73^4^0.05^~1~^~A~^^^^0.61^0.87^^^^^~01/01/2013~ -~05738~^~309~^1.28^4^0.10^~1~^~A~^^^^1.03^1.47^^^^^~01/01/2013~ -~05738~^~323~^0.06^3^0.01^~1~^~A~^^^^0.05^0.09^^^^^~01/01/2013~ -~05738~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~342~^0.01^3^0.01^~1~^~A~^^^^0.00^0.03^^^^^~01/01/2013~ -~05738~^~343~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~346~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05738~^~418~^0.63^3^0.14^~1~^~A~^^^^0.41^0.91^^^^^~01/01/2013~ -~05738~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05738~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~203~^30.13^4^0.95^~1~^~A~^^^^27.97^32.31^^^^^~01/01/2013~ -~05739~^~204~^2.08^4^0.06^~1~^~A~^^^^1.97^2.23^^^^^~01/01/2013~ -~05739~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~207~^1.22^4^0.06^~1~^~A~^^^^1.08^1.35^^^^^~01/01/2013~ -~05739~^~255~^67.88^4^0.94^~1~^~A~^^^^65.97^70.39^^^^^~01/01/2013~ -~05739~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~303~^0.71^4^5.0e-03^~1~^~A~^^^^0.70^0.72^^^^^~01/01/2013~ -~05739~^~309~^1.72^4^0.03^~1~^~A~^^^^1.64^1.77^^^^^~01/01/2013~ -~05739~^~323~^0.06^3^6.0e-03^~1~^~A~^^^^0.05^0.07^^^^^~01/01/2013~ -~05739~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05739~^~342~^0.03^3^3.0e-03^~1~^~A~^^^^0.02^0.03^^^^^~01/01/2013~ -~05739~^~343~^0.01^3^8.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05739~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05739~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05739~^~346~^0.03^3^4.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05739~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05739~^~418~^1.90^0^^~4~^~BFPN~^~05695~^^^^^^^^^~04/01/2013~ -~05739~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05739~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~203~^21.28^4^1.04^~1~^~A~^^^^19.87^24.35^^^^^~01/01/2013~ -~05740~^~204~^2.50^4^0.16^~1~^~A~^^^^2.10^2.91^^^^^~01/01/2013~ -~05740~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05740~^~207~^1.03^4^0.03^~1~^~A~^^^^0.97^1.12^^^^^~01/01/2013~ -~05740~^~209~^0.05^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~210~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05740~^~211~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~212~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~213~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~214~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~255~^76.01^4^0.77^~1~^~A~^^^^73.79^77.43^^^^^~01/01/2013~ -~05740~^~269~^0.10^2^^~1~^~A~^^^^0.00^0.20^^^^^~01/01/2013~ -~05740~^~287~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~303~^1.04^4^0.12^~1~^~A~^^^^0.69^1.28^^^^^~01/01/2013~ -~05740~^~309~^2.59^4^0.07^~1~^~A~^^^^2.39^2.72^^^^^~01/01/2013~ -~05740~^~323~^0.12^3^0.03^~1~^~A~^^^^0.07^0.18^^^^^~01/01/2013~ -~05740~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~342~^0.03^3^0.01^~1~^~A~^^^^0.02^0.05^^^^^~01/01/2013~ -~05740~^~343~^0.01^3^7.0e-03^~1~^~A~^^^^0.00^0.02^^^^^~01/01/2013~ -~05740~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~346~^0.01^3^0.01^~1~^~A~^^^^0.00^0.04^^^^^~01/01/2013~ -~05740~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05740~^~418~^2.05^2^^~1~^~A~^^^^2.00^2.10^^^^^~01/01/2013~ -~05740~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~203~^27.71^4^1.57^~1~^~A~^^^^24.44^31.77^^^^^~01/01/2013~ -~05741~^~204~^6.04^4^0.37^~1~^~A~^^^^5.10^6.88^^^^^~01/01/2013~ -~05741~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~207~^1.12^4^0.04^~1~^~A~^^^^1.06^1.25^^^^^~01/01/2013~ -~05741~^~255~^65.23^4^1.64^~1~^~A~^^^^60.76^68.41^^^^^~01/01/2013~ -~05741~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~303~^1.43^4^0.12^~1~^~A~^^^^1.23^1.79^^^^^~01/01/2013~ -~05741~^~309~^3.51^4^0.08^~1~^~A~^^^^3.31^3.71^^^^^~01/01/2013~ -~05741~^~323~^0.07^3^2.0e-03^~1~^~A~^^^^0.06^0.07^^^^^~01/01/2013~ -~05741~^~341~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05741~^~342~^0.04^3^4.0e-03^~1~^~A~^^^^0.03^0.05^^^^^~01/01/2013~ -~05741~^~343~^0.03^3^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~01/01/2013~ -~05741~^~344~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05741~^~345~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05741~^~346~^0.05^3^3.0e-03^~1~^~A~^^^^0.05^0.06^^^^^~01/01/2013~ -~05741~^~347~^0.00^3^0.00^~1~^~A~^^^^0.00^0.00^^^^^~01/01/2013~ -~05741~^~418~^1.65^2^^~1~^~A~^^^^1.60^1.70^^^^^~01/01/2013~ -~05741~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05741~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05742~^~203~^19.54^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~204~^9.16^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~255~^71.28^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~303~^1.31^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~309~^2.60^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~418~^2.13^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~203~^23.95^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~204~^9.50^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~205~^0.41^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~255~^65.12^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~303~^1.50^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~309~^3.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~323~^0.07^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~418~^1.67^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~203~^16.86^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~204~^15.41^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~205~^0.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05744~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~209~^0.05^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~210~^0.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~255~^66.93^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~269~^0.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~303~^0.78^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~309~^2.04^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~323~^0.11^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~418~^1.65^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05744~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~203~^25.80^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~204~^11.36^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~207~^1.42^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~255~^62.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~303~^0.68^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~309~^1.52^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~323~^0.09^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~346~^0.05^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~418~^1.68^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05746~^~203~^32.06^6^0.24^~1~^~A~^^^1^31.31^32.94^5^31.42^32.70^~2, 3~^~04/01/2013~ -~05746~^~204~^3.24^6^0.27^~1~^~A~^^^1^2.17^3.99^5^2.53^3.95^~2, 3~^~04/01/2013~ -~05746~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~207~^1.19^6^0.02^~1~^~A~^^^1^1.12^1.27^5^1.12^1.25^~2, 3~^~04/01/2013~ -~05746~^~255~^65.32^6^0.30^~1~^~A~^^^1^64.41^66.48^5^64.52^66.11^~2, 3~^~04/01/2013~ -~05746~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~303~^0.49^6^0.01^~1~^~A~^^^1^0.45^0.54^5^0.45^0.52^~2, 3~^~04/01/2013~ -~05746~^~309~^0.96^6^0.01^~1~^~A~^^^1^0.89^1.02^5^0.91^1.00^~2, 3~^~04/01/2013~ -~05746~^~323~^0.33^2^^~1~^~A~^^^1^0.21^0.46^1^^^^~04/01/2013~ -~05746~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05746~^~342~^0.07^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~04/01/2013~ -~05746~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~04/01/2013~ -~05746~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05746~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05746~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05746~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05746~^~418~^0.20^3^0.01^~1~^~A~^^^1^0.17^0.22^2^0.13^0.25^~2, 3~^~04/01/2013~ -~05746~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05746~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~203~^30.54^6^0.80^~1~^~A~^^^1^27.31^32.75^5^28.46^32.61^~2, 3~^~04/01/2013~ -~05747~^~204~^3.17^6^0.31^~1~^~A~^^^1^2.14^4.12^5^2.34^3.99^~2, 3~^~04/01/2013~ -~05747~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~207~^1.33^6^0.04^~1~^~A~^^^1^1.17^1.42^5^1.22^1.44^~2, 3~^~04/01/2013~ -~05747~^~255~^66.14^6^0.60^~1~^~A~^^^1^63.55^67.90^5^64.57^67.70^~2, 3~^~04/01/2013~ -~05747~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05747~^~303~^0.45^6^0.01^~1~^~A~^^^1^0.37^0.50^5^0.40^0.49^~2, 3~^~04/01/2013~ -~05747~^~309~^0.90^6^0.02^~1~^~A~^^^1^0.81^0.95^5^0.83^0.95^~2, 3~^~04/01/2013~ -~05747~^~323~^0.54^2^^~1~^~A~^^^1^0.33^0.75^1^^^^~04/01/2013~ -~05747~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~342~^0.09^2^^~1~^~A~^^^1^0.08^0.10^1^^^^~04/01/2013~ -~05747~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05747~^~418~^0.21^3^0.01^~1~^~A~^^^1^0.18^0.23^2^0.14^0.27^~2, 3~^~04/01/2013~ -~05747~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05747~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~05748~^~203~^28.24^6^0.80^~1~^~A~^^^1^25.44^31.37^5^26.17^30.30^~2, 3~^~04/01/2013~ -~05748~^~204~^3.61^6^0.21^~1~^~A~^^^1^3.03^4.35^5^3.07^4.15^~2, 3~^~04/01/2013~ -~05748~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~207~^1.32^6^0.03^~1~^~A~^^^1^1.27^1.49^5^1.23^1.41^~2, 3~^~04/01/2013~ -~05748~^~255~^68.05^6^0.88^~1~^~A~^^^1^64.73^70.47^5^65.77^70.32^~2, 3~^~04/01/2013~ -~05748~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~303~^0.43^6^0.01^~1~^~A~^^^1^0.37^0.47^5^0.38^0.47^~2, 3~^~04/01/2013~ -~05748~^~309~^0.80^6^0.01^~1~^~A~^^^1^0.77^0.85^5^0.77^0.83^~2, 3~^~04/01/2013~ -~05748~^~323~^0.42^2^^~1~^~A~^^^1^0.21^0.62^1^^^^~04/01/2013~ -~05748~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05748~^~342~^0.05^2^^~1~^~A~^^^1^0.04^0.07^1^^^^~04/01/2013~ -~05748~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05748~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~04/01/2013~ -~05748~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05748~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05748~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05748~^~418~^0.17^3^0.01^~1~^~A~^^^1^0.14^0.18^2^0.10^0.22^~2, 3~^~04/01/2013~ -~05748~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05748~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~203~^29.50^6^0.71^~1~^~A~^^^1^28.25^32.88^5^27.67^31.32^~2, 3~^~04/01/2013~ -~05749~^~204~^3.39^6^0.25^~1~^~A~^^^1^2.36^4.16^5^2.74^4.03^~2, 3~^~04/01/2013~ -~05749~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05749~^~207~^1.68^6^0.07^~1~^~A~^^^1^1.48^1.98^5^1.48^1.86^~2, 3~^~04/01/2013~ -~05749~^~255~^66.54^6^0.75^~1~^~A~^^^1^62.99^67.92^5^64.59^68.48^~2, 3~^~04/01/2013~ -~05749~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~303~^0.43^6^0.02^~1~^~A~^^^1^0.39^0.52^5^0.37^0.48^~2, 3~^~04/01/2013~ -~05749~^~309~^0.82^6^0.02^~1~^~A~^^^1^0.75^0.87^5^0.76^0.87^~2, 3~^~04/01/2013~ -~05749~^~323~^0.33^2^^~1~^~A~^^^1^0.31^0.35^1^^^^~04/01/2013~ -~05749~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~342~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~04/01/2013~ -~05749~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~05749~^~418~^0.20^3^0.03^~1~^~A~^^^1^0.16^0.27^2^0.05^0.34^~2, 3~^~04/01/2013~ -~05749~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~05749~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~06001~^~203~^1.82^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~204~^3.26^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~205~^8.52^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06001~^~207~^2.35^10^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~255~^84.05^10^0.16^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~269~^0.72^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06001~^~303~^0.64^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~309~^0.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~323~^0.49^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06001~^~418~^0.04^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06002~^~203~^4.83^10^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~204~^1.32^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~205~^15.42^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06002~^~207~^3.10^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~255~^75.33^10^0.48^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~269~^2.49^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~303~^1.50^10^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~309~^1.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06004~^~203~^5.88^13^0.10^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~204~^4.42^13^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~205~^16.97^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06004~^~207~^2.57^13^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~255~^70.17^16^0.44^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~269~^3.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06004~^~303~^1.53^13^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~309~^0.77^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~323~^0.87^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06004~^~418~^0.03^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06006~^~203~^7.60^10^0.13^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~204~^5.31^10^0.19^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~205~^16.75^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06006~^~207~^2.64^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~255~^67.70^10^0.51^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~303~^1.78^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~309~^0.90^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~418~^0.06^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~203~^5.19^10^0.11^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~204~^3.50^10^0.07^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~205~^11.16^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06007~^~207~^1.52^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~255~^78.63^10^0.20^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~303~^1.33^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~309~^0.44^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~418~^0.03^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~203~^1.14^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~204~^0.22^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06008~^~207~^1.05^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~255~^97.55^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~303~^0.17^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~309~^0.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06008~^~418~^0.07^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06009~^~203~^3.85^28^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~204~^2.46^28^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~205~^7.16^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06009~^~207~^2.12^28^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~255~^84.42^31^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~269~^2.06^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06009~^~303~^0.88^28^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~309~^1.23^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~323~^1.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06009~^~418~^0.16^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06010~^~203~^1.32^14^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~204~^4.46^14^0.18^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~205~^7.03^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06010~^~207~^2.23^14^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~255~^84.96^17^0.29^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~269~^1.35^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~303~^0.50^11^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~309~^0.12^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~323~^1.39^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06010~^~418~^0.04^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06011~^~203~^0.80^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~204~^3.92^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~205~^11.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~207~^2.29^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~255~^81.69^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~269~^3.73^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~303~^0.15^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~309~^0.15^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06011~^~323~^0.56^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06011~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06013~^~203~^4.42^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~204~^1.04^10^0.17^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~205~^0.75^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06013~^~207~^1.83^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~255~^91.96^10^0.29^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~269~^0.35^0^^~4~^~O~^^^^^^^^^^~06/01/2008~ -~06013~^~303~^0.41^10^0.07^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~309~^0.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06013~^~418~^0.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06015~^~203~^5.06^10^0.10^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~204~^2.64^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~205~^6.88^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06015~^~207~^1.31^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~255~^84.12^13^0.24^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~269~^0.87^0^^~4~^~FLA~^^^^^^^^^^~03/01/2008~ -~06015~^~303~^0.69^10^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~309~^0.40^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~323~^0.13^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06015~^~418~^0.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06016~^~203~^2.38^6^0.02^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~204~^5.77^6^0.39^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~205~^7.16^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~06016~^~207~^1.95^6^0.02^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~255~^82.75^6^0.28^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~269~^0.54^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06016~^~303~^1.06^6^0.16^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~309~^0.29^6^0.03^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~323~^0.54^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06016~^~418~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06017~^~203~^2.10^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~204~^1.14^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~205~^6.67^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06017~^~207~^2.07^10^0.07^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~255~^88.02^10^0.26^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~269~^1.93^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~303~^0.71^10^0.10^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~309~^0.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06017~^~418~^0.02^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06018~^~203~^3.09^10^0.16^~1~^~A~^^^1^2.25^3.88^9^2.70^3.46^~4~^~02/01/2011~ -~06018~^~204~^1.16^10^0.06^~1~^~A~^^^1^0.83^1.44^9^1.01^1.31^~4~^~02/01/2011~ -~06018~^~205~^4.46^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06018~^~207~^1.40^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06018~^~209~^3.52^6^0.25^~1~^~A~^^^1^2.50^4.20^5^2.85^4.17^~4~^~02/01/2011~ -~06018~^~210~^0.38^6^0.01^~1~^~A~^^^1^0.32^0.42^5^0.33^0.42^~4~^~02/01/2011~ -~06018~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06018~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06018~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06018~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06018~^~255~^89.88^10^0.48^~1~^~A~^^^1^87.84^92.30^9^88.78^90.99^~4~^~02/01/2011~ -~06018~^~269~^0.38^6^0.01^~1~^~A~^^^1^0.32^0.42^5^0.33^0.42^~4~^~02/01/2011~ -~06018~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06018~^~303~^0.35^10^0.02^~1~^~A~^^^1^0.25^0.51^9^0.29^0.40^~4~^~02/01/2011~ -~06018~^~309~^0.17^10^5.0e-03^~1~^~A~^^^1^0.14^0.19^9^0.15^0.17^~4~^~02/01/2011~ -~06018~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~342~^0.03^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~203~^2.37^12^0.14^~1~^~A~^^^1^1.69^3.13^5^1.99^2.74^~2, 3~^~03/01/2014~ -~06019~^~204~^1.55^12^0.06^~1~^~A~^^^1^1.27^2.03^5^1.38^1.72^~2, 3~^~03/01/2014~ -~06019~^~205~^6.07^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~207~^1.81^12^0.10^~1~^~A~^^^1^1.23^2.05^5^1.54^2.07^~2, 3~^~03/01/2014~ -~06019~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~255~^88.20^12^0.15^~1~^~A~^^^1^86.07^88.87^5^87.80^88.59^~2, 3~^~03/01/2014~ -~06019~^~269~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2014~ -~06019~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~303~^0.67^12^0.03^~1~^~A~^^^1^0.37^0.85^6^0.58^0.75^~2, 3~^~03/01/2014~ -~06019~^~309~^0.28^12^0.01^~1~^~A~^^^1^0.20^0.32^5^0.24^0.30^~2, 3~^~03/01/2014~ -~06019~^~323~^0.05^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~418~^0.12^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06019~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06022~^~203~^5.11^10^0.11^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~204~^1.33^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~205~^5.41^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06022~^~207~^1.37^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~255~^86.78^13^0.22^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~269~^0.60^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06022~^~303~^0.78^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~309~^0.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06022~^~418~^0.13^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06023~^~203~^1.84^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~204~^1.56^13^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~205~^11.57^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~207~^1.88^13^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~255~^83.15^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~269~^0.23^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~303~^0.25^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~309~^0.18^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06023~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06023~^~418~^0.13^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06024~^~203~^1.97^10^0.06^~1~^~A~^^^1^1.69^2.25^9^1.82^2.12^~2, 3~^~04/01/2013~ -~06024~^~204~^0.73^10^0.04^~1~^~A~^^^1^0.48^0.93^9^0.62^0.84^~2, 3~^~04/01/2013~ -~06024~^~205~^4.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~207~^0.93^10^0.02^~1~^~A~^^^1^0.81^1.04^9^0.87^0.98^~2, 3~^~04/01/2013~ -~06024~^~209~^2.70^7^0.27^~1~^~A~^^^1^1.90^3.60^6^2.02^3.37^~2, 3~^~04/01/2013~ -~06024~^~210~^0.59^7^0.09^~1~^~A~^^^1^0.30^1.00^6^0.36^0.80^~2, 3~^~04/01/2013~ -~06024~^~211~^0.15^7^0.02^~1~^~A~^^^1^0.07^0.20^6^0.09^0.20^~1, 2, 3~^~04/01/2013~ -~06024~^~212~^0.27^7^0.04^~1~^~A~^^^1^0.10^0.40^6^0.15^0.38^~2, 3~^~04/01/2013~ -~06024~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~255~^91.68^10^0.39^~1~^~A~^^^1^90.20^93.34^9^90.79^92.57^~2, 3~^~04/01/2013~ -~06024~^~269~^1.01^7^0.11^~1~^~A~^^^1^0.50^1.30^6^0.73^1.28^~2, 3~^~04/01/2013~ -~06024~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~303~^0.25^10^9.0e-03^~1~^~A~^^^1^0.19^0.28^9^0.23^0.27^~2, 3~^~04/01/2013~ -~06024~^~309~^0.22^10^0.02^~1~^~A~^^^1^0.14^0.31^9^0.17^0.26^~2, 3~^~04/01/2013~ -~06024~^~323~^0.24^4^0.01^~1~^~A~^^^1^0.22^0.28^3^0.19^0.28^~2, 3~^~04/01/2013~ -~06024~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~342~^0.07^4^6.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.04^0.08^~2, 3~^~04/01/2013~ -~06024~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~345~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.04^3^-0.01^0.04^~1, 2, 3~^~04/01/2013~ -~06024~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~418~^0.11^7^0.02^~1~^~A~^^^1^0.06^0.21^6^0.05^0.15^~1, 2, 3~^~04/01/2013~ -~06024~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06024~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06025~^~203~^2.94^14^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~204~^2.32^14^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~205~^7.01^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06025~^~207~^2.22^14^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~255~^85.52^14^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~269~^1.26^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06025~^~303~^0.71^14^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~309~^0.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~323~^0.25^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06025~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06026~^~203~^5.09^14^0.07^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~204~^2.53^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~205~^18.86^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~207~^2.69^14^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~255~^70.86^14^0.44^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~269~^5.09^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~303~^1.62^14^0.10^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~309~^1.56^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~323~^1.08^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~341~^0.01^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~418~^0.30^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06027~^~203~^3.02^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~204~^1.41^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~205~^7.84^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06027~^~207~^1.69^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~255~^86.04^13^0.30^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~269~^1.67^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06027~^~303~^1.10^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~309~^0.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~323~^0.67^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06027~^~418~^3.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06028~^~203~^1.74^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~204~^1.76^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~205~^9.74^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06028~^~207~^2.46^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~255~^84.30^13^0.27^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~269~^2.70^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~303~^1.30^10^0.13^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~309~^0.74^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~323~^1.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06028~^~418~^3.23^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06030~^~203~^3.17^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~204~^2.06^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~205~^10.32^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~207~^2.96^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06030~^~255~^81.49^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~269~^0.38^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~303~^2.48^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~309~^0.37^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~418~^9.47^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06032~^~203~^2.52^1^^~8~^~LC~^^^^^^^^^^~09/01/2006~ -~06032~^~204~^0.00^10^0.00^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~205~^0.32^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06032~^~207~^2.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~06032~^~255~^94.76^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~09/01/2006~ -~06032~^~303~^0.43^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~309~^0.01^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~418~^0.14^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06037~^~203~^3.74^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~204~^1.12^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~205~^8.16^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06037~^~207~^1.24^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~255~^85.75^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~303~^1.07^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~309~^0.30^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06037~^~418~^0.12^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~203~^2.13^11^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~204~^1.17^11^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~205~^8.64^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06039~^~207~^1.35^11^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~255~^86.72^11^0.30^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~269~^2.17^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06039~^~303~^0.74^11^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~309~^0.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~323~^0.67^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06039~^~418~^0.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06040~^~203~^3.48^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~204~^2.05^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~205~^9.17^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06040~^~207~^2.35^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~255~^82.95^13^0.54^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~269~^1.50^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~303~^0.75^10^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~309~^0.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~323~^0.46^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06040~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06042~^~203~^1.50^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~204~^1.80^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~205~^9.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~207~^2.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~255~^84.90^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~303~^0.40^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~309~^0.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06043~^~203~^1.35^12^0.06^~1~^~A~^^^1^1.13^1.84^11^1.21^1.49^~2, 3~^~07/01/2012~ -~06043~^~204~^5.30^12^0.21^~1~^~A~^^^1^4.30^6.42^11^4.83^5.76^~2, 3~^~07/01/2012~ -~06043~^~205~^6.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~207~^1.85^12^0.03^~1~^~A~^^^1^1.61^2.07^11^1.76^1.93^~2, 3~^~07/01/2012~ -~06043~^~209~^4.62^6^0.05^~1~^~A~^^^1^4.40^4.70^5^4.47^4.75^~2, 3~^~07/01/2012~ -~06043~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~06043~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~06043~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~06043~^~213~^0.40^6^0.02^~1~^~A~^^^1^0.30^0.50^5^0.33^0.46^~2, 3~^~07/01/2012~ -~06043~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~06043~^~255~^84.70^12^0.24^~1~^~A~^^^1^82.67^85.90^11^84.15^85.24^~2, 3~^~07/01/2012~ -~06043~^~269~^0.40^6^0.02^~1~^~A~^^^1^0.30^0.50^5^0.33^0.46^~2, 3~^~07/01/2012~ -~06043~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~06043~^~303~^0.18^12^0.01^~1~^~A~^^^1^0.12^0.26^11^0.15^0.20^~2, 3~^~07/01/2012~ -~06043~^~309~^0.11^12^4.0e-03^~1~^~A~^^^1^0.09^0.13^11^0.10^0.12^~2, 3~^~07/01/2012~ -~06043~^~323~^0.50^6^0.04^~1~^~A~^^^1^0.39^0.69^5^0.37^0.62^~2, 3~^~07/01/2012~ -~06043~^~341~^0.09^6^0.01^~1~^~A~^^^1^0.05^0.13^5^0.06^0.11^~2, 3~^~07/01/2012~ -~06043~^~342~^4.38^6^0.25^~1~^~A~^^^1^3.68^5.41^5^3.72^5.04^~2, 3~^~07/01/2012~ -~06043~^~343~^1.19^6^0.08^~1~^~A~^^^1^1.00^1.61^5^0.96^1.41^~2, 3~^~07/01/2012~ -~06043~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~346~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.06^5^-0.01^0.05^~1, 2, 3~^~07/01/2012~ -~06043~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~418~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06044~^~203~^2.51^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~204~^3.21^10^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~205~^7.41^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06044~^~207~^2.27^10^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~255~^84.60^13^0.17^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~269~^2.28^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06044~^~303~^0.67^10^0.11^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~309~^1.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~323~^0.89^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06044~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06045~^~203~^3.06^10^0.10^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~204~^1.42^10^0.19^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~205~^6.68^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06045~^~207~^2.49^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~255~^86.35^13^0.24^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~269~^2.72^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06045~^~303~^0.55^10^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~309~^0.50^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06045~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06046~^~203~^2.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~204~^4.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~205~^10.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~207~^2.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~255~^81.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~269~^3.64^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~303~^0.50^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~309~^0.12^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~323~^0.43^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06046~^~418~^0.04^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06048~^~203~^1.72^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~204~^3.13^10^0.23^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~205~^3.32^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06048~^~207~^1.95^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~255~^89.88^10^0.22^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~303~^0.80^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~309~^8.40^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~418~^1.79^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~203~^6.54^14^0.18^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~204~^2.23^14^0.29^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~205~^20.18^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06049~^~207~^2.51^14^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~255~^68.54^17^0.48^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~269~^6.52^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06049~^~303~^1.48^14^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~309~^1.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~323~^0.18^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06049~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06050~^~203~^4.62^10^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~204~^1.66^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~205~^11.17^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06050~^~207~^1.60^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~255~^80.95^13^0.15^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~269~^1.91^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06050~^~303~^0.89^10^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~309~^1.30^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~323~^0.20^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06050~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06051~^~203~^7.68^16^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~204~^3.28^16^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~205~^20.81^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06051~^~207~^2.57^16^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~255~^65.67^19^0.42^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~303~^1.70^16^0.15^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~309~^0.99^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~418~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06053~^~203~^1.51^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~204~^1.88^10^0.13^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~205~^12.79^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~207~^1.82^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~255~^82.00^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~269~^1.44^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~303~^0.34^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~309~^0.15^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~ -~06053~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06053~^~418~^0.04^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06056~^~203~^2.22^10^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~204~^4.14^10^0.44^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~205~^6.53^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06056~^~207~^2.26^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~255~^84.85^10^0.39^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~303~^0.42^10^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~309~^0.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~418~^0.47^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06061~^~203~^3.55^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~204~^3.42^10^0.15^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~205~^16.87^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06061~^~207~^2.08^10^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~255~^74.08^10^0.37^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~303~^0.89^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~309~^0.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~323~^0.62^0^^~4~^^^^^^^^^^^ -~06061~^~418~^0.15^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06062~^~203~^2.37^6^0.16^~1~^~A~^^^1^2.00^3.13^5^1.95^2.80^~2, 3~^~03/01/2014~ -~06062~^~204~^1.53^6^0.07^~1~^~A~^^^1^1.37^1.84^5^1.33^1.72^~2, 3~^~03/01/2014~ -~06062~^~205~^5.97^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~207~^1.80^6^0.11^~1~^~A~^^^1^1.23^1.94^5^1.50^2.10^~2, 3~^~03/01/2014~ -~06062~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~255~^88.32^6^0.17^~1~^~A~^^^1^87.91^88.87^5^87.88^88.76^~2, 3~^~03/01/2014~ -~06062~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2014~ -~06062~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~303~^0.69^6^0.03^~1~^~A~^^^1^0.58^0.80^5^0.59^0.78^~2, 3~^~03/01/2014~ -~06062~^~309~^0.28^6^0.01^~1~^~A~^^^1^0.24^0.32^5^0.24^0.31^~2, 3~^~03/01/2014~ -~06063~^~203~^1.64^14^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~204~^2.12^14^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~205~^17.08^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06063~^~207~^2.03^14^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~255~^77.13^14^0.09^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~269~^5.90^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06063~^~303~^0.62^14^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~309~^0.40^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~323~^1.73^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06063~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06064~^~203~^4.33^10^0.07^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~204~^1.87^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~205~^5.96^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06064~^~207~^1.47^10^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~255~^86.37^13^0.19^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~303~^0.81^10^0.11^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~309~^0.90^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~418~^0.90^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~203~^1.14^14^0.05^~1~^~A~^^^1^0.56^1.37^3^0.96^1.31^~2, 3~^~02/01/2013~ -~06067~^~204~^0.36^14^0.03^~1~^~A~^^^1^0.20^0.73^3^0.24^0.46^~2, 3~^~02/01/2013~ -~06067~^~205~^7.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06067~^~207~^1.07^14^0.01^~1~^~A~^^^1^0.93^1.33^6^1.04^1.09^~2, 3~^~02/01/2013~ -~06067~^~209~^5.45^2^^~1~^~A~^^^1^4.00^7.30^^^^^~02/01/2013~ -~06067~^~210~^0.50^3^0.00^~1~^~A~^^^1^0.40^0.62^^^^~2, 3~^~02/01/2013~ -~06067~^~211~^0.60^3^4.0e-03^~1~^~A~^^^1^0.55^0.64^1^0.54^0.66^~2, 3~^~02/01/2013~ -~06067~^~212~^0.46^3^0.01^~1~^~A~^^^1^0.35^0.52^1^0.31^0.59^~2, 3~^~02/01/2013~ -~06067~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~255~^89.53^14^0.28^~1~^~A~^^^1^85.62^92.02^5^88.81^90.25^~2, 3~^~02/01/2013~ -~06067~^~269~^1.56^3^0.01^~1~^~A~^^^1^1.52^1.59^1^1.36^1.75^~2, 3~^~02/01/2013~ -~06067~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~303~^0.51^14^0.01^~1~^~A~^^^1^0.38^1.02^6^0.47^0.54^~2, 3~^~02/01/2013~ -~06067~^~309~^0.23^14^5.0e-03^~1~^~A~^^^1^0.14^0.35^6^0.21^0.24^~2, 3~^~02/01/2013~ -~06067~^~323~^0.17^6^0.01^~1~^~A~^^^1^0.13^0.24^3^0.12^0.22^~2, 3~^~02/01/2013~ -~06067~^~341~^0.02^6^8.0e-03^~1~^~A~^^^1^0.00^0.04^4^-6.0e-03^0.03^~1, 2, 3~^~02/01/2013~ -~06067~^~342~^0.09^6^5.0e-03^~1~^~A~^^^1^0.08^0.11^3^0.07^0.10^~2, 3~^~02/01/2013~ -~06067~^~343~^0.00^6^2.0e-03^~1~^~A~^^^1^0.00^0.01^3^-2.0e-03^9.0e-03^~1, 2, 3~^~02/01/2013~ -~06067~^~344~^0.02^6^5.0e-03^~1~^~A~^^^1^0.01^0.04^4^9.0e-03^0.03^~1, 2, 3~^~02/01/2013~ -~06067~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~346~^0.03^6^9.0e-03^~1~^~A~^^^1^0.00^0.07^3^1.0e-03^0.06^~1, 2, 3~^~02/01/2013~ -~06067~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~06067~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06068~^~203~^1.72^24^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~204~^1.58^24^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~205~^9.78^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06068~^~207~^2.02^24^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~255~^84.91^27^0.43^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~269~^3.13^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06068~^~303~^0.88^24^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~309~^0.38^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~323~^1.17^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06068~^~418~^0.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06070~^~203~^3.97^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06070~^~204~^1.11^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06070~^~205~^10.08^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06070~^~207~^1.49^20^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~255~^83.34^20^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~269~^0.67^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06070~^~303~^0.97^30^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~309~^1.10^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06070~^~418~^0.26^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06071~^~203~^4.45^28^0.13^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~204~^1.51^28^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~205~^8.11^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06071~^~207~^2.25^27^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~255~^83.69^31^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~269~^0.89^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06071~^~303~^0.89^28^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~309~^1.23^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~323~^0.48^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06071~^~418~^0.25^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06072~^~203~^2.42^23^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~204~^1.56^23^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~205~^10.70^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06072~^~207~^2.06^23^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~255~^83.27^23^0.13^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~269~^1.64^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06072~^~303~^0.79^23^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~309~^0.65^6^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06072~^~418~^0.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06075~^~203~^15.97^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~204~^8.89^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~205~^17.40^0^^~4~^~NR~^^^^^^^^^^~09/01/2011~ -~06075~^~207~^54.50^0^^~4~^~NR~^^^^^^^^^^~09/01/2011~ -~06075~^~255~^3.27^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~269~^16.71^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06075~^~303~^1.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~309~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~323~^2.17^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06075~^~418~^1.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06076~^~203~^17.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~204~^4.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~205~^16.10^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06076~^~207~^59.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~255~^3.30^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~269~^14.51^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~06076~^~303~^2.23^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~309~^0.21^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06076~^~418~^1.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06076~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06080~^~203~^16.66^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~204~^13.88^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~205~^18.01^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06080~^~207~^49.18^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~255~^2.27^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~269~^17.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2008~ -~06080~^~303~^1.03^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~309~^0.09^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~323~^0.46^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06080~^~418~^0.30^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06081~^~203~^14.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~204~^4.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~205~^23.50^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06081~^~207~^54.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~255~^2.50^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~303~^1.87^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~309~^0.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06081~^~418~^0.30^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06094~^~203~^7.48^4^0.81^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~204~^0.34^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~205~^65.07^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~06094~^~207~^23.31^4^0.76^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~255~^3.79^4^0.20^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~269~^4.65^2^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~06094~^~303~^1.25^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~309~^1.12^4^0.08^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~323~^0.13^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06094~^~342~^0.66^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06094~^~343~^0.28^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06094~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06094~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06094~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~06101~^~203~^8.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~204~^24.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~205~^52.10^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06101~^~207~^12.90^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~255~^2.90^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~269~^17.51^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06101~^~303~^2.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~309~^1.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~323~^2.41^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06101~^~418~^0.50^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06101~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06112~^~203~^5.93^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~204~^0.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~205~^15.56^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06112~^~207~^10.43^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~255~^67.69^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~269~^14.10^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~06112~^~303~^1.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~309~^0.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06112~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06114~^~203~^1.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~204~^0.20^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~205~^2.50^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06114~^~207~^1.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~255~^94.50^0^^~4~^^^^^^^^^^^~07/01/1995~ -~06114~^~303~^0.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~309~^1.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06115~^~203~^9.20^8^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~204~^9.63^8^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06115~^~205~^47.49^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06115~^~207~^30.94^8^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~255~^2.74^10^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06115~^~303~^9.30^4^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~309~^0.70^3^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~418~^0.32^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06116~^~203~^3.75^5^0.19^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~204~^2.36^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~205~^4.81^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06116~^~207~^1.60^5^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~255~^87.48^5^0.30^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~269~^0.21^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06116~^~303~^0.70^5^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~309~^1.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06116~^~418~^0.10^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06118~^~203~^10.74^29^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~204~^9.61^27^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06118~^~205~^59.38^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06118~^~207~^15.27^23^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~255~^5.00^31^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06118~^~303~^1.72^8^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~309~^1.11^4^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~418~^0.70^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06119~^~203~^0.71^12^0.01^~1~^~A~^^^1^0.63^0.85^9^0.68^0.73^~2, 3~^~02/01/2015~ -~06119~^~204~^2.62^12^0.08^~1~^~A~^^^1^1.90^3.14^10^2.43^2.80^~2, 3~^~02/01/2015~ -~06119~^~205~^5.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~207~^1.08^12^0.01^~1~^~A~^^^1^0.99^1.29^10^1.05^1.11^~2, 3~^~02/01/2015~ -~06119~^~209~^4.89^2^^~1~^~A~^^^1^3.80^5.40^^^^^~02/01/2015~ -~06119~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~213~^0.30^2^^~1~^~A~^^^1^0.00^0.94^^^^~1~^~02/01/2015~ -~06119~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~255~^90.30^12^0.10^~1~^~A~^^^1^88.62^91.00^8^90.06^90.53^~2, 3~^~02/01/2015~ -~06119~^~269~^0.30^2^^~1~^~A~^^^1^0.00^0.94^^^^^~02/01/2015~ -~06119~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~303~^0.09^12^7.0e-03^~1~^~A~^^^1^0.07^0.22^5^0.07^0.10^~1, 2, 3~^~02/01/2015~ -~06119~^~309~^0.08^12^4.0e-03^~1~^~A~^^^1^0.06^0.13^9^0.07^0.08^~2, 3~^~02/01/2015~ -~06119~^~323~^0.10^2^^~1~^~A~^^^1^0.08^0.11^^^^^~02/01/2015~ -~06119~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~342~^0.06^2^^~1~^~A~^^^1^0.00^0.09^^^^~1~^~02/01/2015~ -~06119~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06120~^~203~^11.27^27^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~204~^9.73^19^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06120~^~205~^62.09^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06120~^~207~^13.06^19^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~255~^3.85^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06120~^~303~^1.33^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~309~^1.39^3^0.00^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~418~^0.48^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06121~^~203~^1.26^11^0.01^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~204~^2.71^11^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~205~^5.47^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06121~^~207~^1.56^10^0.02^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~255~^89.00^10^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~303~^0.66^7^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~309~^0.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~203~^10.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~204~^4.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~205~^64.66^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06122~^~207~^18.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~255~^3.34^4^0.38^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~269~^3.26^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06122~^~303~^1.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~309~^1.54^3^0.08^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~418~^0.70^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06123~^~203~^9.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~204~^3.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~205~^67.64^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06123~^~207~^16.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~255~^4.36^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~303~^1.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~309~^0.88^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~418~^0.70^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06124~^~203~^8.78^3^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~204~^8.63^3^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~06124~^~205~^63.57^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~06124~^~207~^14.59^3^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~255~^4.43^3^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~06124~^~269~^24.73^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06124~^~303~^3.94^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~309~^1.06^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06124~^~418~^0.51^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06125~^~203~^2.60^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~204~^2.10^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06125~^~207~^1.60^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~255~^88.60^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~269~^0.21^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06125~^~303~^0.70^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~309~^0.80^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~323~^0.05^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06125~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06126~^~203~^10.42^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~204~^7.19^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06126~^~205~^65.12^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06126~^~207~^12.61^7^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~255~^4.67^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06126~^~303~^3.29^4^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~309~^1.26^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~418~^0.58^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06127~^~203~^13.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~204~^8.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~205~^58.00^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06127~^~207~^17.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~255~^4.00^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~303~^1.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~309~^1.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~418~^0.70^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06128~^~203~^15.42^4^1.08^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~204~^6.51^4^0.56^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~205~^62.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06128~^~207~^10.80^4^0.88^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~209~^50.83^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~210~^1.11^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~211~^0.00^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~212~^0.00^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~213~^0.00^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~214~^0.78^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~255~^4.94^4^0.84^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~269~^1.90^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~303~^2.44^4^0.51^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~309~^1.65^4^0.28^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~342~^0.66^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06128~^~418~^0.75^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06142~^~203~^12.80^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~204~^18.20^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~205~^5.46^0^^~4~^~NC~^^^^^^^^^^~02/01/1998~ -~06142~^~207~^3.88^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~255~^59.66^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~303~^0.94^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~309~^1.41^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06147~^~203~^4.60^5^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~204~^2.40^5^0.11^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~205~^5.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~207~^2.30^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~255~^85.50^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~303~^0.70^5^0.06^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~309~^1.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~418~^0.16^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~203~^1.61^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06149~^~204~^4.84^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~06149~^~205~^11.95^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~06149~^~207~^1.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~255~^80.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~269~^0.79^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06149~^~303~^0.70^5^0.12^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~309~^0.80^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~323~^0.64^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06149~^~418~^0.05^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06150~^~203~^0.82^27^6.0e-03^~1~^~A~^^^1^0.44^1.06^12^0.80^0.83^~2, 3~^~07/01/2012~ -~06150~^~204~^0.63^27^0.04^~1~^~A~^^^1^0.34^1.54^7^0.53^0.72^~2, 3~^~07/01/2012~ -~06150~^~205~^40.77^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~207~^3.07^27^0.02^~1~^~A~^^^1^2.14^4.06^3^2.96^3.16^~2, 3~^~07/01/2012~ -~06150~^~209~^0.35^4^^~1~^~A~^^^1^0.07^0.60^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~210~^2.68^15^0.09^~1~^~A~^^^1^0.00^26.32^2^2.34^3.02^~1, 2, 3~^~07/01/2012~ -~06150~^~211~^16.39^15^0.10^~1~^~A~^^^1^4.30^21.15^7^16.12^16.64^~2, 3~^~07/01/2012~ -~06150~^~212~^14.17^15^0.07^~1~^~A~^^^1^4.41^17.58^6^14.00^14.34^~2, 3~^~07/01/2012~ -~06150~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~255~^54.71^27^0.05^~1~^~A~^^^1^49.89^65.09^14^54.58^54.83^~2, 3~^~07/01/2012~ -~06150~^~269~^33.24^15^0.14^~1~^~A~^^^1^22.83^38.68^4^32.83^33.64^~2, 3~^~07/01/2012~ -~06150~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~303~^0.64^27^0.01^~1~^~A~^^^1^0.14^1.24^10^0.61^0.66^~2, 3~^~07/01/2012~ -~06150~^~309~^0.17^27^9.0e-03^~1~^~A~^^^1^0.08^0.35^16^0.15^0.18^~1, 2, 3~^~07/01/2012~ -~06150~^~323~^0.80^15^0.01^~1~^~A~^^^1^0.20^1.11^4^0.76^0.83^~2, 3~^~07/01/2012~ -~06150~^~341~^0.03^15^3.0e-03^~1~^~A~^^^1^0.00^0.08^3^0.02^0.04^~1, 2, 3~^~07/01/2012~ -~06150~^~342~^0.19^15^0.01^~1~^~A~^^^1^0.07^0.86^3^0.14^0.22^~2, 3~^~07/01/2012~ -~06150~^~343~^0.02^15^3.0e-03^~1~^~A~^^^1^0.00^0.22^2^8.0e-03^0.03^~1, 2, 3~^~07/01/2012~ -~06150~^~344~^0.13^15^0.11^~1~^~A~^^^1^0.00^3.77^2^-0.36^0.61^~1, 2, 3~^~04/01/2015~ -~06150~^~345~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~346~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~347~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06150~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~06151~^~203~^0.89^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~204~^1.04^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~205~^42.81^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06151~^~207~^1.56^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~255~^53.71^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~303~^1.43^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~309~^0.19^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06152~^~203~^2.18^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~204~^1.15^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~205~^8.66^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06152~^~207~^1.30^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~255~^86.71^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~269~^3.78^1^^~8~^~LC~^^^1^3.17^4.84^^^^^~05/01/2014~ -~06152~^~303~^0.90^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06152~^~309~^0.25^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06158~^~203~^1.76^13^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~204~^1.95^13^0.05^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~205~^18.47^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06158~^~207~^2.49^13^0.03^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~255~^75.32^13^0.27^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~303~^0.64^13^0.04^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~309~^0.46^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~418~^0.00^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06159~^~203~^1.46^6^0.02^~1~^~A~^^^1^1.37^1.50^5^1.39^1.52^~2, 3~^~02/01/2011~ -~06159~^~204~^0.44^6^0.01^~1~^~A~^^^1^0.38^0.50^5^0.39^0.48^~2, 3~^~02/01/2011~ -~06159~^~205~^15.22^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06159~^~207~^2.09^6^0.02^~1~^~A~^^^1^2.00^2.16^5^2.03^2.15^~2, 3~^~02/01/2011~ -~06159~^~255~^80.79^6^0.10^~1~^~A~^^^1^80.41^81.13^5^80.51^81.06^~2, 3~^~02/01/2011~ -~06159~^~269~^8.23^6^0.08^~1~^~A~^^^1^8.04^8.56^5^8.02^8.43^~2, 3~^~02/01/2011~ -~06159~^~303~^0.59^6^0.03^~1~^~A~^^^1^0.47^0.67^5^0.50^0.68^~2, 3~^~02/01/2011~ -~06159~^~309~^0.18^6^5.0e-03^~1~^~A~^^^1^0.16^0.20^5^0.17^0.19^~2, 3~^~02/01/2011~ -~06159~^~323~^0.34^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06159~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06164~^~203~^1.52^12^0.04^~1~^~A~^^^1^1.31^1.86^7^1.41^1.62^~2, 3~^~04/01/2015~ -~06164~^~204~^0.17^12^0.01^~1~^~A~^^^1^0.10^0.20^7^0.12^0.20^~2, 3~^~05/01/2012~ -~06164~^~205~^6.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~207~^2.39^12^0.03^~1~^~A~^^^1^2.22^2.55^6^2.30^2.48^~2, 3~^~05/01/2012~ -~06164~^~209~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~210~^0.25^12^0.01^~1~^~A~^^^1^0.20^0.30^5^0.20^0.28^~2, 3~^~04/01/2015~ -~06164~^~211~^1.65^12^0.01^~1~^~A~^^^1^1.40^1.80^7^1.61^1.67^~2, 3~^~04/01/2015~ -~06164~^~212~^2.12^12^0.01^~1~^~A~^^^1^2.00^2.20^9^2.08^2.15^~2, 3~^~05/01/2012~ -~06164~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~255~^89.28^12^0.08^~1~^~A~^^^1^88.80^89.70^5^89.07^89.48^~2, 3~^~04/01/2015~ -~06164~^~269~^4.01^12^0.03^~1~^~A~^^^1^3.60^4.30^7^3.92^4.09^~2, 3~^~04/01/2015~ -~06164~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~303~^0.42^12^0.02^~1~^~A~^^^1^0.31^0.63^5^0.35^0.49^~2, 3~^~04/01/2015~ -~06164~^~309~^0.18^12^2.0e-03^~1~^~A~^^^1^0.17^0.21^9^0.17^0.18^~2, 3~^~04/01/2015~ -~06164~^~323~^1.28^4^0.02^~1~^~A~^^^1^1.07^1.38^1^1.06^1.49^~2, 3~^~04/01/2015~ -~06164~^~341~^0.03^4^2.0e-03^~1~^~A~^^^1^0.02^0.04^2^0.01^0.03^~2, 3~^~05/01/2012~ -~06164~^~342~^0.14^4^0.02^~1~^~A~^^^1^0.09^0.19^2^-0.01^0.29^~2, 3~^~05/01/2012~ -~06164~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^6.0e-03^~1, 2, 3~^~05/01/2012~ -~06164~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~345~^0.44^4^9.0e-03^~1~^~A~^^^1^0.40^0.47^1^0.32^0.55^~2, 3~^~04/01/2015~ -~06164~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~06164~^~347~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.04^1^-0.10^0.14^~1, 2, 3~^~04/01/2015~ -~06164~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/1980~ -~06164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06164~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06166~^~203~^3.84^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~204~^10.63^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~205~^9.17^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06166~^~207~^1.47^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~255~^74.89^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~269~^4.38^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~303~^0.33^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~309~^0.41^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~418~^0.28^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06166~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~203~^3.99^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~204~^13.83^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~205~^11.61^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06167~^~207~^1.47^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~255~^69.10^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~269~^3.98^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~303~^0.50^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~309~^0.40^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~323~^0.38^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~418~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06167~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~06168~^~203~^0.51^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~204~^0.37^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~205~^1.75^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06168~^~207~^7.39^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~255~^89.98^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~269~^1.26^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~303~^0.48^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~309~^0.11^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06168~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~203~^1.29^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~204~^0.76^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~205~^0.80^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06169~^~207~^1.98^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~255~^95.17^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~269~^0.13^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~303~^1.16^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~309~^0.16^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06170~^~203~^1.97^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~204~^0.09^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~205~^1.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06170~^~207~^0.70^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~255~^95.89^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~269~^0.54^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~303~^0.27^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~309~^0.17^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06170~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06172~^~203~^2.52^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~204~^1.20^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~205~^3.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06172~^~207~^0.63^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~255~^92.15^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~269~^1.58^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~303~^0.21^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~309~^0.14^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06172~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06174~^~203~^2.26^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~204~^0.81^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06174~^~207~^0.74^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~255~^96.60^2^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~06174~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~303~^0.01^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~309~^0.06^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~323~^0.17^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06174~^~418~^0.69^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06175~^~203~^3.31^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~204~^3.39^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~205~^44.08^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06175~^~207~^4.98^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~255~^44.23^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~269~^27.26^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06175~^~303~^1.01^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~309~^0.32^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06175~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~06175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06176~^~203~^1.35^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~204~^0.25^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~205~^10.92^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06176~^~207~^7.49^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~255~^80.00^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06176~^~303~^0.18^2^^~1~^~A~^^^^^^^^^^~04/01/1995~ -~06176~^~309~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06176~^~418~^0.41^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06177~^~203~^2.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~204~^0.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~205~^9.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~207~^1.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06177~^~255~^87.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~269~^2.13^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~303~^0.72^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~309~^0.32^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~323~^0.70^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06177~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06179~^~203~^5.06^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~204~^0.01^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~205~^3.64^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06179~^~207~^20.22^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06179~^~255~^71.07^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~269~^3.64^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~06179~^~303~^0.78^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~309~^0.20^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06179~^~418~^0.48^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06180~^~203~^3.20^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~204~^2.00^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~205~^3.80^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~06180~^~207~^0.87^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~255~^90.13^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~303~^0.94^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~309~^0.82^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~418~^0.19^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06182~^~203~^1.21^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~204~^1.69^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~205~^8.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06182~^~207~^1.69^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~255~^87.26^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~269~^2.13^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06182~^~303~^0.48^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06182~^~309~^0.36^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06182~^~418~^0.02^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06182~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06183~^~203~^1.36^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~205~^0.38^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06183~^~207~^0.89^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~255~^97.32^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~269~^0.22^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06183~^~303~^0.26^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~309~^0.08^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06183~^~418~^0.06^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06188~^~203~^1.14^9^0.05^~1~^~A~^^^1^0.80^1.32^8^1.00^1.27^~2, 3~^~04/01/2015~ -~06188~^~204~^0.07^9^4.0e-03^~1~^~A~^^^1^0.05^0.10^8^0.06^0.08^~1, 2, 3~^~04/01/2015~ -~06188~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~207~^0.58^9^0.07^~1~^~A~^^^1^0.31^0.89^8^0.40^0.74^~2, 3~^~04/01/2015~ -~06188~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06188~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~06188~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06188~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06188~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06188~^~255~^98.01^9^0.09^~1~^~A~^^^1^97.50^98.40^8^97.78^98.23^~2, 3~^~04/01/2015~ -~06188~^~269~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~06188~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~06188~^~303~^0.04^9^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~309~^0.24^9^0.04^~1~^~A~^^^1^0.02^0.40^8^0.13^0.34^~2, 3~^~04/01/2015~ -~06188~^~323~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~573~^0.00^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06188~^~578~^0.00^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~ -~06189~^~203~^5.93^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~204~^0.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~205~^15.58^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06189~^~207~^8.40^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~255~^69.70^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~269~^14.10^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~303~^1.70^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~309~^0.10^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06189~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~418~^0.00^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06190~^~203~^4.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~204~^1.03^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~205~^13.66^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~207~^1.21^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~255~^79.91^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06190~^~269~^3.17^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06190~^~303~^1.02^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06190~^~309~^0.53^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~323~^0.39^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06190~^~418~^0.03^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06192~^~203~^3.85^0^^~9~^~MC~^^^^^^^^^^~12/01/1995~ -~06192~^~204~^0.92^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~205~^11.83^0^^~9~^~MC~^^^^^^^^^^~12/01/1995~ -~06192~^~207~^1.00^0^^~4~^^^^^^^^^^^~12/01/1995~ -~06192~^~255~^82.40^0^^~4~^^^^^^^^^^^~12/01/1995~ -~06192~^~269~^5.06^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~303~^0.77^0^^~12~^~MA~^^^^^^^^^^~03/01/1996~ -~06192~^~309~^0.40^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~323~^0.20^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~418~^0.01^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06192~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~203~^4.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~204~^0.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~205~^11.40^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~207~^1.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~255~^82.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~269~^1.57^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~303~^0.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~309~^0.49^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~418~^0.03^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06193~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~06194~^~203~^0.64^15^0.06^~1~^~A~^^^1^0.25^1.13^11^0.50^0.77^~2, 3~^~04/01/2013~ -~06194~^~204~^0.21^15^0.01^~1~^~A~^^^1^0.07^0.36^6^0.16^0.26^~1, 2, 3~^~04/01/2013~ -~06194~^~205~^0.44^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06194~^~207~^0.90^15^0.02^~1~^~A~^^^1^0.77^1.04^11^0.84^0.94^~2, 3~^~04/01/2013~ -~06194~^~255~^97.81^15^0.15^~1~^~A~^^^1^96.98^98.48^10^97.45^98.16^~2, 3~^~04/01/2013~ -~06194~^~269~^0.43^1^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~303~^0.07^15^7.0e-03^~1~^~A~^^^1^0.05^0.14^8^0.05^0.09^~1, 2, 3~^~04/01/2013~ -~06194~^~309~^0.07^15^0.01^~1~^~A~^^^1^0.01^0.16^10^0.04^0.09^~2, 3~^~04/01/2013~ -~06194~^~323~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06194~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06194~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06194~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06201~^~203~^2.55^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~204~^3.30^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~205~^6.61^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06201~^~207~^1.55^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~255~^86.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~303~^0.35^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~309~^0.37^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~418~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06208~^~203~^1.16^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~204~^4.46^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~205~^5.20^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~207~^1.31^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~255~^87.90^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~269~^0.64^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06208~^~303~^0.16^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~309~^0.16^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06208~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06208~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06210~^~203~^2.29^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~204~^3.91^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~205~^5.86^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06210~^~207~^1.49^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~255~^86.46^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~303~^0.28^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~309~^0.08^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~418~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06211~^~203~^3.77^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~204~^5.80^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~205~^6.47^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06211~^~207~^1.52^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~255~^82.44^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~303~^0.32^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~309~^0.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~418~^0.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~203~^3.01^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~204~^4.62^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~205~^6.04^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06216~^~207~^1.51^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~255~^84.83^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~303~^0.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~309~^0.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~418~^0.22^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06217~^~203~^2.20^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~204~^0.90^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~205~^12.11^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~207~^2.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~255~^82.79^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~269~^4.31^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06217~^~303~^0.66^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06217~^~309~^0.40^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~323~^1.43^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06217~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06230~^~203~^3.24^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~204~^2.02^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~205~^7.46^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~207~^1.79^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~255~^85.49^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~269~^2.81^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~303~^1.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~309~^0.43^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~323~^0.22^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~418~^4.84^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06243~^~203~^2.36^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~204~^3.58^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~205~^5.76^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~207~^1.26^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~210~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~211~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~212~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~213~^2.79^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~255~^87.04^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~269~^2.82^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~287~^0.01^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~303~^0.10^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~309~^0.31^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~323~^0.26^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~341~^0.04^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~342~^2.11^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~343~^0.57^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~346~^0.01^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~418~^0.28^0^^~1~^~RPA~^^^^^^^^^^~07/01/2010~ -~06243~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06243~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06246~^~203~^2.74^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~204~^3.78^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~205~^7.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~207~^1.50^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~255~^84.50^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~303~^0.28^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~309~^0.25^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~418~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06248~^~203~^2.51^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~204~^3.24^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~205~^3.99^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06248~^~207~^1.34^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~255~^88.94^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~303~^0.43^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~309~^4.22^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~418~^1.07^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~203~^4.97^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~204~^2.77^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~205~^12.69^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06249~^~207~^1.65^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~255~^77.93^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~303~^0.79^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~309~^0.69^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~418~^0.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~203~^2.33^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~204~^2.60^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~205~^6.92^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06253~^~207~^1.47^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~255~^86.67^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~303~^0.22^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~309~^0.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~418~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06256~^~203~^2.78^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~204~^3.23^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~205~^5.64^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~207~^1.46^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~255~^87.11^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~269~^2.62^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~303~^0.22^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~309~^0.54^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~323~^0.02^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~418~^0.50^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06264~^~203~^3.95^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~204~^2.56^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~205~^8.29^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~207~^1.18^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~255~^84.02^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~269~^5.29^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~303~^0.22^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~309~^0.47^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~323~^0.08^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~418~^0.55^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~06264~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~203~^1.84^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~204~^0.58^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~205~^16.72^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~207~^1.90^0^^~4~^~RC~^^^^^^^^^^~05/01/2007~ -~06285~^~255~^78.56^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~269~^10.81^0^^~4~^~RC~^^^^^^^^^^~05/01/2007~ -~06285~^~303~^0.67^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~309~^0.18^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~323~^0.32^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06307~^~203~^0.74^6^0.01^~1~^~A~^^^1^0.69^0.75^5^0.71^0.76^~4~^~07/01/2012~ -~06307~^~204~^0.62^6^0.09^~1~^~A~^^^1^0.38^1.00^5^0.38^0.85^~4~^~07/01/2012~ -~06307~^~205~^40.77^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~207~^3.65^6^0.01^~1~^~A~^^^1^3.62^3.68^5^3.62^3.67^~4~^~07/01/2012~ -~06307~^~209~^0.60^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~210~^1.03^3^0.02^~1~^~A~^^^1^0.99^1.07^2^0.93^1.13^~4~^~07/01/2012~ -~06307~^~211~^16.65^3^0.17^~1~^~A~^^^1^16.36^16.97^2^15.88^17.40^~4~^~07/01/2012~ -~06307~^~212~^14.58^3^0.10^~1~^~A~^^^1^14.42^14.78^2^14.12^15.03^~4~^~07/01/2012~ -~06307~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~255~^54.22^6^0.07^~1~^~A~^^^1^54.05^54.51^5^54.02^54.42^~4~^~07/01/2012~ -~06307~^~269~^32.26^3^0.29^~1~^~A~^^^1^31.77^32.79^2^30.99^33.52^~4~^~07/01/2012~ -~06307~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~303~^0.79^6^0.02^~1~^~A~^^^1^0.75^0.89^5^0.73^0.84^~4~^~07/01/2012~ -~06307~^~309~^0.16^6^0.01^~1~^~A~^^^1^0.13^0.21^5^0.12^0.18^~4~^~07/01/2012~ -~06307~^~323~^0.66^3^0.02^~1~^~A~^^^1^0.62^0.71^2^0.53^0.78^~4~^~07/01/2012~ -~06307~^~341~^0.02^3^8.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.04^~1, 4~^~07/01/2012~ -~06307~^~342~^0.12^3^9.0e-03^~1~^~A~^^^1^0.10^0.14^2^0.08^0.16^~4~^~07/01/2012~ -~06307~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~344~^0.03^3^3.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.03^~4~^~07/01/2012~ -~06307~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06307~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~06314~^~203~^3.69^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~204~^0.63^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~06314~^~205~^5.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~207~^0.75^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~255~^89.73^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~269~^0.57^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~203~^2.53^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~204~^0.55^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~06315~^~205~^5.71^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~207~^0.90^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~255~^90.31^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~269~^0.37^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~303~^0.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~203~^2.13^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~204~^0.21^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~06316~^~205~^10.04^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~207~^0.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~255~^86.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~269~^2.13^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06338~^~203~^1.29^6^0.04^~1~^~A~^^^1^1.19^1.42^5^1.18^1.39^~2, 3~^~07/01/2012~ -~06338~^~204~^5.50^6^0.33^~1~^~A~^^^1^4.30^6.42^5^4.63^6.36^~2, 3~^~07/01/2012~ -~06338~^~205~^6.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~207~^1.87^6^0.03^~1~^~A~^^^1^1.72^1.96^5^1.77^1.96^~2, 3~^~07/01/2012~ -~06338~^~209~^4.53^3^0.08^~1~^~A~^^^1^4.40^4.70^2^4.15^4.91^~2, 3~^~07/01/2012~ -~06338~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~213~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~2, 3~^~07/01/2012~ -~06338~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~255~^84.76^6^0.17^~1~^~A~^^^1^84.25^85.40^5^84.31^85.19^~2, 3~^~07/01/2012~ -~06338~^~269~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~2, 3~^~07/01/2012~ -~06338~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~303~^0.16^6^0.01^~1~^~A~^^^1^0.12^0.22^5^0.11^0.19^~2, 3~^~07/01/2012~ -~06338~^~309~^0.11^6^7.0e-03^~1~^~A~^^^1^0.09^0.13^5^0.09^0.13^~2, 3~^~07/01/2012~ -~06338~^~323~^0.58^3^0.07^~1~^~A~^^^1^0.44^0.69^2^0.26^0.89^~2, 3~^~07/01/2012~ -~06338~^~341~^0.11^3^0.01^~1~^~A~^^^1^0.09^0.13^2^0.05^0.15^~2, 3~^~07/01/2012~ -~06338~^~342~^4.82^3^0.35^~1~^~A~^^^1^4.18^5.41^2^3.28^6.35^~2, 3~^~07/01/2012~ -~06338~^~343~^1.29^3^0.16^~1~^~A~^^^1^1.09^1.61^2^0.59^1.98^~2, 3~^~07/01/2012~ -~06338~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~346~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.10^~1, 2, 3~^~07/01/2012~ -~06338~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~06358~^~203~^2.51^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~204~^2.63^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~205~^11.73^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06358~^~207~^1.63^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~255~^81.51^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~303~^0.35^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~309~^0.25^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~418~^0.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06359~^~203~^2.42^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~204~^1.24^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~205~^9.82^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~207~^1.38^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~210~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~211~^1.72^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~212~^2.26^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~213~^2.60^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~255~^85.15^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~269~^6.59^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~287~^0.01^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~303~^0.30^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~309~^0.34^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~323~^0.18^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~418~^0.28^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06359~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06377~^~203~^1.46^6^0.02^~1~^~A~^^^1^1.37^1.50^5^1.39^1.52^~4~^~02/01/2011~ -~06377~^~204~^0.44^6^0.01^~1~^~A~^^^1^0.38^0.50^5^0.39^0.48^~4~^~02/01/2011~ -~06377~^~205~^15.22^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06377~^~207~^2.09^6^0.02^~1~^~A~^^^1^2.00^2.16^5^2.03^2.15^~4~^~02/01/2011~ -~06377~^~209~^4.00^3^0.05^~1~^~A~^^^1^3.90^4.10^2^3.75^4.24^~4~^~02/01/2011~ -~06377~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06377~^~211~^3.55^6^0.03^~1~^~A~^^^1^3.43^3.70^5^3.45^3.65^~4~^~02/01/2011~ -~06377~^~212~^4.67^6^0.04^~1~^~A~^^^1^4.52^4.86^5^4.54^4.80^~4~^~02/01/2011~ -~06377~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06377~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06377~^~255~^80.79^6^0.10^~1~^~A~^^^1^80.41^81.13^5^80.51^81.06^~4~^~02/01/2011~ -~06377~^~269~^8.23^6^0.08^~1~^~A~^^^1^8.04^8.56^5^8.02^8.43^~4~^~02/01/2011~ -~06377~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~06377~^~303~^0.59^6^0.03^~1~^~A~^^^1^0.47^0.67^5^0.50^0.68^~4~^~02/01/2011~ -~06377~^~309~^0.18^6^5.0e-03^~1~^~A~^^^1^0.16^0.20^5^0.17^0.19^~4~^~02/01/2011~ -~06395~^~203~^3.41^6^0.16^~1~^~A~^^^1^2.69^3.88^5^2.99^3.82^~4~^~02/01/2011~ -~06395~^~204~^1.30^6^0.05^~1~^~A~^^^1^1.09^1.44^5^1.15^1.43^~4~^~02/01/2011~ -~06395~^~205~^5.41^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06395~^~207~^0.98^6^0.01^~1~^~A~^^^1^0.95^1.01^5^0.95^1.00^~4~^~02/01/2011~ -~06395~^~209~^4.00^3^0.15^~1~^~A~^^^1^3.70^4.20^2^3.34^4.65^~4~^~02/01/2011~ -~06395~^~210~^0.41^3^7.0e-03^~1~^~A~^^^1^0.40^0.42^2^0.37^0.43^~4~^~02/01/2011~ -~06395~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06395~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06395~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06395~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06395~^~255~^88.90^6^0.43^~1~^~A~^^^1^87.84^90.68^5^87.79^90.01^~4~^~02/01/2011~ -~06395~^~269~^0.41^3^7.0e-03^~1~^~A~^^^1^0.40^0.42^2^0.37^0.43^~4~^~02/01/2011~ -~06395~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06395~^~303~^0.34^6^0.01^~1~^~A~^^^1^0.29^0.42^5^0.29^0.39^~4~^~02/01/2011~ -~06395~^~309~^0.18^6^5.0e-03^~1~^~A~^^^1^0.16^0.19^5^0.16^0.18^~4~^~02/01/2011~ -~06401~^~203~^0.94^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~204~^1.68^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~205~^4.38^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06401~^~207~^1.21^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~255~^91.80^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~303~^0.33^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~309~^0.36^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~418~^0.02^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06402~^~203~^2.42^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~204~^0.66^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~205~^7.71^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~207~^1.60^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~255~^87.62^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~269~^1.24^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~303~^0.75^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~309~^0.55^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~323~^0.18^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~341~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~203~^2.88^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~204~^2.16^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~205~^8.31^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~207~^1.31^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~255~^85.35^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~269~^1.47^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~303~^0.75^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~309~^0.38^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~323~^0.43^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~418~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06406~^~203~^3.99^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~204~^2.79^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~205~^8.80^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06406~^~207~^1.39^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~255~^83.03^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~303~^0.94^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~309~^0.47^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~418~^0.03^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06409~^~203~^1.93^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~204~^1.23^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~205~^3.58^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~207~^1.10^0^^~4~^~NR~^^^^^^^^^^~06/01/2012~ -~06409~^~255~^92.16^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~269~^1.03^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~303~^0.44^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~309~^0.62^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~323~^0.50^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~418~^0.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06410~^~203~^0.68^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~204~^2.29^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~205~^3.62^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06410~^~207~^1.15^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~255~^92.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~303~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~309~^0.06^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06411~^~203~^2.19^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~204~^4.24^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~205~^4.26^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06411~^~207~^1.19^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~255~^88.12^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~303~^0.30^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~309~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~203~^2.02^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~204~^0.57^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~205~^0.38^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06413~^~207~^1.02^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~255~^95.95^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~269~^0.29^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06413~^~303~^0.21^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~309~^0.10^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06413~^~418~^0.10^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06413~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06415~^~203~^2.89^6^0.14^~1~^~A~^^^1^2.51^3.51^5^2.51^3.25^~2, 3~^~05/01/2015~ -~06415~^~204~^0.92^6^0.05^~1~^~A~^^^1^0.70^1.04^5^0.79^1.05^~2, 3~^~05/01/2015~ -~06415~^~205~^8.98^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~207~^0.98^6^0.03^~1~^~A~^^^1^0.87^1.11^5^0.89^1.05^~2, 3~^~05/01/2015~ -~06415~^~209~^4.80^2^^~1~^~A~^^^1^4.10^5.50^1^^^^~05/01/2015~ -~06415~^~210~^0.67^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.52^0.81^~2, 3~^~05/01/2015~ -~06415~^~211~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~05/01/2015~ -~06415~^~212~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~05/01/2015~ -~06415~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~255~^86.23^6^0.39^~1~^~A~^^^1^84.70^87.50^5^85.22^87.23^~2, 3~^~05/01/2015~ -~06415~^~269~^1.17^3^0.03^~1~^~A~^^^1^1.10^1.20^2^1.02^1.31^~2, 3~^~05/01/2015~ -~06415~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~303~^0.49^6^0.02^~1~^~A~^^^1^0.40^0.61^5^0.42^0.56^~2, 3~^~05/01/2015~ -~06415~^~309~^0.54^6^0.02^~1~^~A~^^^1^0.46^0.63^5^0.47^0.59^~2, 3~^~05/01/2015~ -~06415~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06415~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06415~^~418~^0.17^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06416~^~203~^1.41^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~204~^3.02^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~205~^3.80^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06416~^~207~^1.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~255~^90.62^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~303~^0.25^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~309~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~418~^0.04^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~203~^1.08^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~204~^0.59^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~205~^3.43^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06417~^~207~^1.06^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~255~^93.84^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~269~^1.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06417~^~303~^0.37^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~309~^0.15^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06417~^~418~^0.01^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06417~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06419~^~203~^1.16^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~204~^0.76^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~205~^2.97^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~207~^0.94^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~255~^94.17^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~303~^0.33^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~309~^0.14^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~323~^0.03^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~418~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~203~^1.45^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~204~^0.78^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~205~^2.92^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~207~^0.99^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~255~^93.87^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~269~^0.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~303~^0.31^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~309~^0.11^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~323~^0.03^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~418~^0.07^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~203~^2.49^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~204~^1.24^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~205~^9.23^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~207~^1.37^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~255~^85.68^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~269~^2.49^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~303~^0.79^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~309~^0.77^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~323~^0.53^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~341~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~418~^0.15^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~203~^0.85^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~204~^0.86^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~205~^4.77^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~207~^1.26^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~255~^92.26^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~269~^1.32^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~303~^0.64^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~309~^0.36^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~323~^0.50^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~418~^1.58^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~203~^1.55^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~204~^1.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~205~^5.05^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~207~^1.50^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~255~^90.89^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~269~^0.19^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~303~^1.22^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~309~^0.18^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~323~^0.20^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~341~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~342~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~343~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~418~^4.63^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06431~^~203~^2.46^6^0.02^~1~^~A~^^^1^2.37^2.56^5^2.39^2.52^~4~^~02/01/2011~ -~06431~^~204~^3.85^6^0.36^~1~^~A~^^^1^2.82^5.02^5^2.92^4.77^~4~^~02/01/2011~ -~06431~^~205~^9.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06431~^~207~^1.16^6^0.01^~1~^~A~^^^1^1.12^1.20^5^1.12^1.19^~4~^~02/01/2011~ -~06431~^~209~^7.87^4^0.08^~1~^~A~^^^1^7.70^8.10^3^7.60^8.14^~4~^~02/01/2011~ -~06431~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~255~^83.52^6^0.24^~1~^~A~^^^1^82.81^84.43^5^82.88^84.15^~4~^~02/01/2011~ -~06431~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~02/01/2011~ -~06431~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06431~^~303~^0.55^6^0.03^~1~^~A~^^^1^0.45^0.67^5^0.46^0.63^~4~^~02/01/2011~ -~06431~^~309~^0.27^6^6.0e-03^~1~^~A~^^^1^0.25^0.29^5^0.25^0.28^~4~^~02/01/2011~ -~06432~^~203~^2.22^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~204~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06432~^~207~^0.81^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~255~^96.24^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~303~^0.22^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~309~^0.15^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06434~^~203~^3.16^5^0.10^~1~^~A~^^^1^2.94^3.50^4^2.86^3.45^~4~^~02/01/2011~ -~06434~^~204~^1.23^5^0.05^~1~^~A~^^^1^1.09^1.41^4^1.06^1.39^~4~^~02/01/2011~ -~06434~^~205~^6.24^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06434~^~207~^1.31^5^0.02^~1~^~A~^^^1^1.25^1.40^4^1.23^1.38^~4~^~02/01/2011~ -~06434~^~209~^3.00^2^^~1~^~A~^^^1^3.00^3.00^1^^^^~02/01/2011~ -~06434~^~210~^0.51^3^0.06^~1~^~A~^^^1^0.44^0.63^2^0.25^0.76^~4~^~02/01/2011~ -~06434~^~211~^0.31^3^0.02^~1~^~A~^^^1^0.27^0.34^2^0.22^0.40^~4~^~02/01/2011~ -~06434~^~212~^0.33^3^9.0e-03^~1~^~A~^^^1^0.31^0.34^2^0.28^0.36^~4~^~02/01/2011~ -~06434~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06434~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06434~^~255~^88.06^5^0.29^~1~^~A~^^^1^87.12^88.66^4^87.22^88.88^~4~^~02/01/2011~ -~06434~^~269~^1.15^3^0.04^~1~^~A~^^^1^1.09^1.23^2^0.96^1.33^~4~^~02/01/2011~ -~06434~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~06434~^~303~^0.54^5^0.02^~1~^~A~^^^1^0.48^0.63^4^0.47^0.61^~4~^~02/01/2011~ -~06434~^~309~^0.59^5^0.01^~1~^~A~^^^1^0.54^0.65^4^0.53^0.63^~4~^~02/01/2011~ -~06440~^~203~^1.77^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~204~^1.04^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~205~^4.66^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06440~^~207~^1.19^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~255~^91.33^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~303~^0.38^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~309~^0.31^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~203~^0.77^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~204~^0.93^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~205~^4.80^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~207~^1.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~255~^92.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~303~^0.21^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~309~^0.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~418~^0.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06443~^~203~^0.66^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~204~^2.59^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~205~^3.33^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~207~^0.96^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~255~^92.46^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~269~^0.20^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~303~^0.09^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~309~^0.06^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~323~^0.24^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06444~^~203~^1.29^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~204~^1.65^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~205~^3.81^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06444~^~207~^1.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~255~^92.08^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~303~^0.34^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~309~^0.57^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~203~^1.13^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~204~^2.16^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~205~^5.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~207~^1.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~255~^90.50^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~303~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~309~^0.06^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~418~^0.02^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06448~^~203~^0.87^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~204~^1.59^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~205~^1.69^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06448~^~207~^0.99^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~255~^94.86^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~303~^0.41^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~309~^4.27^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~418~^0.91^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06449~^~203~^3.20^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~204~^1.09^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~205~^9.88^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~207~^1.28^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~255~^84.55^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~269~^3.19^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~303~^0.73^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~309~^0.64^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~323~^0.09^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06451~^~203~^4.08^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~204~^1.74^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06451~^~207~^1.36^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~255~^81.77^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~303~^0.90^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~309~^0.52^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06453~^~203~^0.72^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~204~^0.97^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~205~^4.70^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06453~^~207~^1.14^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~255~^92.49^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~303~^0.20^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~309~^0.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~418~^0.02^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06456~^~203~^1.11^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~204~^2.07^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~205~^3.27^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~207~^1.18^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~255~^92.38^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~269~^0.24^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06456~^~303~^0.21^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06456~^~309~^0.30^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06456~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~418~^0.24^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~203~^1.78^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~204~^1.71^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~205~^8.44^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~207~^1.09^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~255~^86.99^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~269~^0.73^0^^~4~^~BFSN~^~06071~^^^^^^^^^~11/01/2006~ -~06461~^~303~^0.45^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~309~^0.30^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~323~^0.31^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~418~^0.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~203~^0.82^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~204~^1.06^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~205~^8.54^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~207~^1.07^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~255~^88.52^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~269~^2.95^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~303~^0.31^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~309~^0.20^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~323~^0.86^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06465~^~203~^1.60^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~204~^0.82^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~205~^3.54^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06465~^~207~^1.06^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~255~^92.99^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~303~^0.39^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~309~^0.24^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~418~^0.06^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06466~^~203~^1.28^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~204~^1.26^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~205~^3.58^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06466~^~207~^0.99^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~255~^92.89^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~303~^0.32^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~309~^0.25^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~418~^0.07^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06468~^~203~^0.86^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~204~^0.79^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~205~^4.89^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~207~^1.06^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~255~^92.41^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~269~^1.57^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~303~^0.44^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~309~^0.19^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~323~^0.58^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~203~^2.23^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~204~^0.76^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~205~^4.06^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~207~^1.18^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~255~^91.80^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~269~^0.45^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~303~^0.45^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~309~^0.62^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~323~^0.24^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~418~^0.13^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~203~^1.21^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~204~^0.78^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~205~^5.35^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~207~^1.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~255~^91.59^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~269~^0.82^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~303~^0.40^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~309~^0.33^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~323~^0.06^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~203~^0.21^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~204~^0.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~205~^0.25^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~207~^0.77^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~255~^98.69^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~269~^0.20^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~303~^0.02^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~323~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~418~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~203~^0.21^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~204~^0.08^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~205~^0.25^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~207~^0.77^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~255~^98.69^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~269~^0.20^0^^~6~^~RPI~^^^^^^^^^^~07/01/2009~ -~06476~^~303~^0.02^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~323~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~418~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~203~^0.28^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~204~^0.23^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~205~^0.30^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~207~^0.92^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~255~^98.28^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~269~^0.29^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~303~^0.02^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06480~^~323~^0.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06481~^~203~^0.39^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~204~^0.12^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~205~^0.62^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06481~^~207~^1.44^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~255~^97.43^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~303~^0.05^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~309~^0.01^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~418~^0.01^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~203~^0.68^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~204~^2.04^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~205~^5.11^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06483~^~207~^1.22^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~255~^90.94^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~269~^1.59^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06483~^~303~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~309~^0.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06483~^~418~^0.10^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06483~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06494~^~203~^0.32^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~204~^0.01^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~205~^2.77^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~207~^1.10^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~255~^95.80^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~269~^0.20^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~303~^0.05^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~309~^0.05^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~323~^0.01^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~341~^0.00^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06498~^~203~^0.93^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~204~^0.61^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~205~^7.17^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~207~^1.41^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~255~^89.88^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~269~^3.90^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~303~^0.18^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~309~^0.13^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~418~^0.06^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06528~^~203~^0.84^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~204~^0.55^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~205~^3.67^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~207~^0.78^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~255~^94.16^0^^~1~^^^^^^^^^^^~03/01/1998~ -~06528~^~269~^0.31^0^^~4~^~FLA~^^^^^^^^^^~03/01/2008~ -~06528~^~303~^0.20^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~309~^0.08^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~323~^0.05^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06528~^~418~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06528~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06547~^~203~^2.37^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~204~^1.23^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~205~^2.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~207~^1.20^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~255~^92.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~303~^0.36^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~309~^0.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~418~^0.08^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~203~^1.80^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~204~^3.75^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~205~^3.80^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~207~^0.60^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~255~^90.00^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~303~^0.36^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~309~^0.40^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~418~^0.02^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06558~^~203~^0.92^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~204~^1.02^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~205~^9.60^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~ -~06558~^~207~^1.29^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~255~^87.17^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~303~^0.33^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~309~^0.24^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~418~^0.00^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06559~^~203~^0.71^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~204~^0.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~205~^7.45^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~207~^1.08^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~255~^90.55^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~269~^4.03^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~303~^0.29^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~309~^0.09^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~323~^0.17^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06583~^~203~^10.17^24^0.11^~1~^~A~^^^1^9.69^11.12^5^9.88^10.45^~2, 3~^~04/01/2013~ -~06583~^~204~^17.59^24^0.22^~1~^~A~^^^1^15.45^19.28^6^17.04^18.14^~2, 3~^~04/01/2013~ -~06583~^~205~^60.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~207~^5.45^24^0.12^~1~^~A~^^^1^4.66^6.66^9^5.17^5.73^~2, 3~^~04/01/2013~ -~06583~^~209~^55.97^12^0.33^~1~^~A~^^^1^54.70^58.20^2^54.64^57.28^~2, 3~^~04/01/2013~ -~06583~^~210~^1.43^12^0.02^~1~^~A~^^^1^0.30^1.80^3^1.35^1.49^~2, 3~^~04/01/2013~ -~06583~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~06583~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~06583~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~214~^0.56^12^0.04^~1~^~A~^^^1^0.30^0.80^3^0.41^0.69^~2, 3~^~04/01/2013~ -~06583~^~255~^6.52^24^0.13^~1~^~A~^^^1^5.04^7.60^6^6.20^6.84^~2, 3~^~04/01/2013~ -~06583~^~269~^1.98^12^0.05^~1~^~A~^^^1^0.60^2.50^3^1.79^2.17^~2, 3~^~04/01/2013~ -~06583~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~06583~^~303~^4.11^24^0.09^~1~^~A~^^^1^3.27^5.17^8^3.88^4.33^~2, 3~^~04/01/2013~ -~06583~^~309~^0.60^24^0.02^~1~^~A~^^^1^0.48^0.81^5^0.53^0.65^~2, 3~^~04/01/2013~ -~06583~^~323~^2.44^12^0.14^~1~^~A~^^^1^1.93^2.82^2^1.89^2.98^~2, 3~^~04/01/2013~ -~06583~^~341~^0.21^12^0.01^~1~^~A~^^^1^0.16^0.26^2^0.17^0.25^~1, 2, 3~^~04/01/2013~ -~06583~^~342~^0.10^12^5.0e-03^~1~^~A~^^^1^0.09^0.14^3^0.08^0.12^~1, 2, 3~^~04/01/2013~ -~06583~^~343~^0.00^12^2.0e-03^~1~^~A~^^^1^0.00^0.05^4^-3.0e-03^7.0e-03^~1, 2, 3~^~04/01/2013~ -~06583~^~344~^1.93^12^0.08^~1~^~A~^^^1^1.60^2.18^2^1.60^2.26^~2, 3~^~04/01/2013~ -~06583~^~345~^1.46^12^0.10^~1~^~A~^^^1^0.87^1.90^2^1.06^1.85^~2, 3~^~04/01/2013~ -~06583~^~346~^3.29^12^0.10^~1~^~A~^^^1^2.88^3.57^3^2.95^3.63^~2, 3~^~04/01/2013~ -~06583~^~347~^0.95^12^0.01^~1~^~A~^^^1^0.87^1.14^5^0.91^0.99^~2, 3~^~04/01/2013~ -~06583~^~418~^0.25^2^^~1~^~A~^^^1^0.18^0.31^1^^^^~04/01/2009~ -~06583~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06583~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~06584~^~203~^2.10^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~204~^5.30^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~205~^7.70^0^^~9~^~MC~^^^^^^^^^^~09/01/1997~ -~06584~^~207~^2.30^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~255~^82.70^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~269~^2.12^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06584~^~303~^0.30^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~ -~06584~^~309~^0.26^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~ -~06584~^~323~^0.72^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06584~^~418~^0.02^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06584~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06611~^~203~^1.20^6^0.04^~1~^~A~^^^1^1.06^1.32^5^1.09^1.31^~2, 3~^~05/01/2015~ -~06611~^~204~^0.08^6^4.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.06^0.08^~1, 2, 3~^~05/01/2015~ -~06611~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~207~^0.50^6^0.08^~1~^~A~^^^1^0.31^0.87^5^0.28^0.72^~2, 3~^~05/01/2015~ -~06611~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06611~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~255~^98.00^6^0.10^~1~^~A~^^^1^97.50^98.20^5^97.72^98.27^~2, 3~^~05/01/2015~ -~06611~^~269~^0.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06611~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06611~^~303~^0.04^6^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~05/01/2015~ -~06611~^~309~^0.32^6^0.03^~1~^~A~^^^1^0.20^0.40^5^0.23^0.40^~2, 3~^~05/01/2015~ -~06611~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06611~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~06615~^~203~^0.23^6^0.01^~1~^~A~^^^1^0.17^0.31^5^0.18^0.28^~2, 3~^~05/01/2015~ -~06615~^~204~^0.07^6^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~205~^1.02^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~207~^0.75^6^0.03^~1~^~A~^^^1^0.66^0.92^5^0.66^0.84^~2, 3~^~05/01/2015~ -~06615~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~210~^0.33^3^0.12^~1~^~A~^^^1^0.10^0.50^2^-0.18^0.85^~2, 3~^~05/01/2015~ -~06615~^~211~^0.23^3^0.06^~1~^~A~^^^1^0.10^0.30^2^-0.05^0.52^~2, 3~^~05/01/2015~ -~06615~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~255~^97.92^6^0.17^~1~^~A~^^^1^97.10^98.30^5^97.47^98.35^~2, 3~^~05/01/2015~ -~06615~^~269~^0.57^3^0.18^~1~^~A~^^^1^0.20^0.80^2^-0.23^1.36^~2, 3~^~05/01/2015~ -~06615~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~303~^0.08^6^0.02^~1~^~A~^^^1^0.04^0.16^5^0.01^0.13^~1, 2, 3~^~05/01/2015~ -~06615~^~309~^0.03^6^1.0e-03^~1~^~A~^^^1^0.03^0.03^5^0.02^0.03^~2, 3~^~05/01/2015~ -~06615~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06618~^~203~^2.02^3^0.04^~1~^~A~^^^1^1.94^2.06^2^1.84^2.20^~2, 3~^~04/01/2013~ -~06618~^~204~^6.34^3^0.29^~1~^~A~^^^1^5.83^6.85^2^5.07^7.60^~2, 3~^~04/01/2013~ -~06618~^~205~^28.46^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~207~^1.11^3^0.03^~1~^~A~^^^1^1.07^1.18^2^0.95^1.26^~2, 3~^~04/01/2013~ -~06618~^~209~^2.10^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~210~^6.90^2^^~1~^~A~^^^1^6.60^7.20^1^^^^~04/01/2013~ -~06618~^~211~^4.75^2^^~1~^~A~^^^1^4.60^4.90^1^^^^~04/01/2013~ -~06618~^~212~^4.95^2^^~1~^~A~^^^1^4.80^5.10^1^^^^~04/01/2013~ -~06618~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~06618~^~214~^2.20^2^^~1~^~A~^^^1^2.10^2.30^1^^^^~04/01/2013~ -~06618~^~255~^62.08^3^0.17^~1~^~A~^^^1^61.76^62.37^2^61.31^62.83^~2, 3~^~04/01/2013~ -~06618~^~269~^18.80^2^^~1~^~A~^^^1^18.70^18.90^1^^^^~04/01/2013~ -~06618~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~06618~^~303~^0.38^2^^~1~^~A~^^^1^0.37^0.39^1^^^^~04/01/2013~ -~06618~^~309~^0.30^2^^~1~^~A~^^^1^0.30^0.30^1^^^^~04/01/2013~ -~06618~^~323~^0.94^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~341~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~342~^0.48^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06618~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06618~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06618~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06618~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~06618~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06618~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~06619~^~203~^2.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~204~^0.71^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~205~^11.20^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~207~^0.80^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~255~^85.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~269~^3.60^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~303~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~203~^2.90^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~204~^1.06^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~205~^9.50^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~207~^1.10^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~255~^85.50^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~269~^2.60^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~303~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~203~^1.70^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~204~^0.53^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~205~^8.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~207~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~255~^88.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~269~^2.70^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~303~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~203~^3.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~204~^0.88^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~205~^10.50^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~207~^1.10^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~255~^84.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~269~^2.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~303~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~203~^2.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~204~^1.06^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~205~^9.70^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~207~^0.80^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~255~^86.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~269~^4.20^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~303~^1.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~203~^0.80^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~204~^1.06^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~205~^6.50^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~207~^0.70^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~255~^91.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~269~^3.70^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~203~^1.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~204~^1.06^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~205~^8.20^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~207~^0.90^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~255~^88.60^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~269~^4.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06626~^~203~^9.83^3^0.05^~1~^~A~^^^1^9.75^9.94^2^9.59^10.07^~2, 3~^~02/01/2015~ -~06626~^~204~^37.60^3^0.52^~1~^~A~^^^1^36.56^38.22^2^35.34^39.85^~2, 3~^~02/01/2015~ -~06626~^~205~^10.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~207~^3.50^3^0.03^~1~^~A~^^^1^3.45^3.56^2^3.35^3.63^~2, 3~^~02/01/2015~ -~06626~^~209~^2.20^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06626~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06626~^~211~^0.23^3^0.04^~1~^~A~^^^1^0.18^0.32^2^0.03^0.42^~1, 2, 3~^~02/01/2015~ -~06626~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06626~^~213~^5.94^3^0.02^~1~^~A~^^^1^5.90^5.98^2^5.83^6.05^~2, 3~^~02/01/2015~ -~06626~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06626~^~255~^38.98^3^0.31^~1~^~A~^^^1^38.63^39.61^2^37.63^40.33^~2, 3~^~02/01/2015~ -~06626~^~269~^6.33^3^0.06^~1~^~A~^^^1^6.23^6.46^2^6.03^6.62^~2, 3~^~02/01/2015~ -~06626~^~287~^0.15^3^3.0e-03^~1~^~A~^^^1^0.15^0.16^2^0.14^0.16^~2, 3~^~02/01/2015~ -~06626~^~303~^0.57^3^0.04^~1~^~A~^^^1^0.50^0.65^2^0.38^0.76^~2, 3~^~02/01/2015~ -~06626~^~309~^1.33^3^0.01^~1~^~A~^^^1^1.31^1.35^2^1.28^1.38^~2, 3~^~02/01/2015~ -~06626~^~323~^7.27^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06626~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~342~^6.99^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06626~^~343~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06626~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06626~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06627~^~203~^5.00^12^0.32^~1~^~A~^^^1^3.75^6.75^11^4.28^5.71^~2, 3~^~02/01/2015~ -~06627~^~204~^42.42^12^1.96^~1~^~A~^^^1^35.51^52.87^11^38.11^46.74^~2, 3~^~02/01/2015~ -~06627~^~205~^6.14^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~207~^3.35^12^0.05^~1~^~A~^^^1^3.17^3.80^11^3.22^3.48^~2, 3~^~02/01/2015~ -~06627~^~209~^0.24^2^^~1~^~A~^^^1^0.07^0.40^1^^^~1~^~02/01/2015~ -~06627~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~211~^0.47^6^0.04^~1~^~A~^^^1^0.35^0.65^5^0.35^0.58^~2, 3~^~02/01/2015~ -~06627~^~212~^1.45^6^0.34^~1~^~A~^^^1^0.67^2.34^5^0.57^2.33^~2, 3~^~02/01/2015~ -~06627~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~255~^43.08^12^1.92^~1~^~A~^^^1^34.35^49.89^11^38.83^47.32^~2, 3~^~02/01/2015~ -~06627~^~269~^1.92^6^0.30^~1~^~A~^^^1^1.17^2.78^5^1.13^2.71^~2, 3~^~02/01/2015~ -~06627~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~303~^0.88^12^0.06^~1~^~A~^^^1^0.58^1.33^11^0.73^1.03^~2, 3~^~02/01/2015~ -~06627~^~309~^0.88^12^0.06^~1~^~A~^^^1^0.61^1.30^11^0.73^1.01^~2, 3~^~02/01/2015~ -~06627~^~323~^8.86^2^^~1~^~A~^^^1^4.61^13.12^1^^^^~02/01/2015~ -~06627~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06627~^~342~^15.77^2^^~1~^~A~^^^1^5.30^26.24^1^^^^~02/01/2015~ -~06627~^~343~^5.19^2^^~1~^~A~^^^1^0.14^10.23^1^^^^~02/01/2015~ -~06627~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06627~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06627~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06627~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06628~^~203~^9.83^3^0.05^~1~^~A~^^^1^9.75^9.94^2^9.59^10.07^~2, 3~^~02/01/2015~ -~06628~^~204~^37.60^3^0.52^~1~^~A~^^^1^36.56^38.22^2^35.34^39.85^~2, 3~^~02/01/2015~ -~06628~^~205~^10.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~207~^3.50^3^0.03^~1~^~A~^^^1^3.45^3.56^2^3.35^3.63^~2, 3~^~02/01/2015~ -~06628~^~209~^2.20^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06628~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06628~^~211~^0.23^3^0.04^~1~^~A~^^^1^0.18^0.32^2^0.03^0.42^~1, 2, 3~^~02/01/2015~ -~06628~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06628~^~213~^5.94^3^0.02^~1~^~A~^^^1^5.90^5.98^2^5.83^6.05^~2, 3~^~02/01/2015~ -~06628~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06628~^~255~^38.98^3^0.31^~1~^~A~^^^1^38.63^39.61^2^37.63^40.33^~2, 3~^~02/01/2015~ -~06628~^~269~^6.33^3^0.06^~1~^~A~^^^1^6.23^6.46^2^6.03^6.62^~2, 3~^~02/01/2015~ -~06628~^~287~^0.15^3^3.0e-03^~1~^~A~^^^1^0.15^0.16^2^0.14^0.16^~2, 3~^~02/01/2015~ -~06628~^~303~^0.57^3^0.04^~1~^~A~^^^1^0.50^0.65^2^0.38^0.76^~2, 3~^~02/01/2015~ -~06628~^~309~^1.33^3^0.01^~1~^~A~^^^1^1.31^1.35^2^1.28^1.38^~2, 3~^~02/01/2015~ -~06628~^~323~^7.27^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06628~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~342~^6.99^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06628~^~343~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06628~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06628~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~203~^4.16^6^0.09^~1~^~A~^^^1^3.75^4.37^5^3.91^4.39^~2, 3~^~02/01/2015~ -~06629~^~204~^36.38^6^0.37^~1~^~A~^^^1^35.51^37.92^5^35.41^37.35^~2, 3~^~02/01/2015~ -~06629~^~205~^6.93^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~207~^3.36^6^0.08^~1~^~A~^^^1^3.17^3.72^5^3.15^3.57^~2, 3~^~02/01/2015~ -~06629~^~209~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06629~^~211~^0.39^3^0.02^~1~^~A~^^^1^0.35^0.44^2^0.26^0.51^~2, 3~^~02/01/2015~ -~06629~^~212~^2.21^3^0.10^~1~^~A~^^^1^2.01^2.34^2^1.77^2.64^~2, 3~^~02/01/2015~ -~06629~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06629~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06629~^~255~^49.16^6^0.28^~1~^~A~^^^1^48.26^49.89^5^48.42^49.89^~2, 3~^~02/01/2015~ -~06629~^~269~^2.60^3^0.12^~1~^~A~^^^1^2.36^2.78^2^2.05^3.13^~2, 3~^~02/01/2015~ -~06629~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06629~^~303~^0.71^6^0.05^~1~^~A~^^^1^0.58^0.92^5^0.56^0.85^~2, 3~^~02/01/2015~ -~06629~^~309~^0.68^6^0.01^~1~^~A~^^^1^0.61^0.71^5^0.63^0.71^~2, 3~^~02/01/2015~ -~06629~^~323~^4.61^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~342~^26.24^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~343~^10.23^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06629~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06629~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06630~^~203~^6.69^3^0.03^~1~^~A~^^^1^6.62^6.75^2^6.53^6.84^~2, 3~^~02/01/2015~ -~06630~^~204~^49.88^3^0.64^~1~^~A~^^^1^48.74^50.98^2^47.09^52.66^~2, 3~^~02/01/2015~ -~06630~^~205~^5.12^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~207~^3.25^3^0.02^~1~^~A~^^^1^3.22^3.29^2^3.15^3.34^~2, 3~^~02/01/2015~ -~06630~^~209~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06630~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06630~^~211~^0.55^3^0.04^~1~^~A~^^^1^0.50^0.65^2^0.34^0.75^~2, 3~^~02/01/2015~ -~06630~^~212~^0.70^3^0.01^~1~^~A~^^^1^0.67^0.72^2^0.63^0.76^~2, 3~^~02/01/2015~ -~06630~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06630~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06630~^~255~^35.07^3^0.50^~1~^~A~^^^1^34.35^36.04^2^32.90^37.23^~2, 3~^~02/01/2015~ -~06630~^~269~^1.25^3^0.05^~1~^~A~^^^1^1.17^1.36^2^0.99^1.50^~2, 3~^~02/01/2015~ -~06630~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06630~^~303~^0.99^3^0.01^~1~^~A~^^^1^0.97^1.02^2^0.92^1.05^~2, 3~^~02/01/2015~ -~06630~^~309~^1.00^3^0.02^~1~^~A~^^^1^0.96^1.03^2^0.91^1.08^~2, 3~^~02/01/2015~ -~06630~^~323~^13.12^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06630~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06630~^~342~^5.30^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06630~^~343~^0.14^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06630~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06630~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06630~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06630~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06631~^~203~^1.93^9^0.04^~1~^~A~^^^1^1.69^2.13^8^1.83^2.02^~2, 3~^~02/01/2015~ -~06631~^~204~^0.93^9^0.02^~1~^~A~^^^1^0.82^1.08^8^0.87^0.98^~2, 3~^~02/01/2015~ -~06631~^~205~^19.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06631~^~207~^6.14^9^0.58^~1~^~A~^^^1^4.61^8.22^8^4.78^7.49^~2, 3~^~02/01/2015~ -~06631~^~210~^0.27^4^0.27^~1~^~A~^^^1^0.00^1.08^3^-0.58^1.12^~1, 2, 3~^~02/01/2015~ -~06631~^~211~^6.67^4^0.64^~1~^~A~^^^1^4.73^7.38^3^4.60^8.74^~2, 3~^~02/01/2015~ -~06631~^~212~^8.16^4^0.94^~1~^~A~^^^1^5.75^10.34^3^5.17^11.15^~2, 3~^~02/01/2015~ -~06631~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06631~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06631~^~255~^71.84^9^1.94^~1~^~A~^^^1^64.22^77.35^8^67.34^76.32^~2, 3~^~02/01/2015~ -~06631~^~269~^15.11^4^1.69^~1~^~A~^^^1^10.48^18.66^3^9.70^20.51^~2, 3~^~02/01/2015~ -~06631~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~06631~^~303~^1.64^9^0.14^~1~^~A~^^^1^0.84^2.13^8^1.31^1.97^~2, 3~^~02/01/2015~ -~06631~^~309~^0.24^9^8.0e-03^~1~^~A~^^^1^0.20^0.26^8^0.22^0.25^~2, 3~^~02/01/2015~ -~06631~^~323~^4.80^2^^~1~^~A~^^^1^4.34^5.25^1^^^^~02/01/2015~ -~06631~^~341~^0.12^2^^~1~^~A~^^^1^0.09^0.16^1^^^^~02/01/2015~ -~06631~^~342~^0.27^2^^~1~^~A~^^^1^0.22^0.33^1^^^^~02/01/2015~ -~06631~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06631~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06631~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06631~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06631~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06632~^~203~^2.02^3^0.05^~1~^~A~^^^1^1.94^2.13^2^1.78^2.25^~2, 3~^~02/01/2015~ -~06632~^~204~^0.98^3^0.05^~1~^~A~^^^1^0.92^1.08^2^0.76^1.19^~2, 3~^~02/01/2015~ -~06632~^~205~^22.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06632~^~207~^8.02^3^0.12^~1~^~A~^^^1^7.79^8.22^2^7.48^8.56^~2, 3~^~02/01/2015~ -~06632~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06632~^~211~^7.36^2^^~1~^~A~^^^1^7.35^7.38^1^^^^~02/01/2015~ -~06632~^~212~^8.28^2^^~1~^~A~^^^1^8.23^8.34^1^^^^~02/01/2015~ -~06632~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06632~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06632~^~255~^66.25^3^0.52^~1~^~A~^^^1^65.50^67.25^2^64.01^68.48^~2, 3~^~02/01/2015~ -~06632~^~269~^15.65^2^^~1~^~A~^^^1^15.61^15.69^1^^^^~02/01/2015~ -~06632~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~06632~^~303~^1.46^3^0.15^~1~^~A~^^^1^1.15^1.68^2^0.77^2.14^~2, 3~^~02/01/2015~ -~06632~^~309~^0.23^3^0.01^~1~^~A~^^^1^0.20^0.25^2^0.17^0.29^~2, 3~^~02/01/2015~ -~06632~^~323~^4.34^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06632~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06632~^~342~^0.33^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06632~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06632~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06632~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06632~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06632~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~203~^1.86^5^0.04^~1~^~A~^^^1^1.69^1.94^4^1.73^1.99^~2, 3~^~02/01/2015~ -~06633~^~204~^0.90^5^0.02^~1~^~A~^^^1^0.82^0.98^4^0.82^0.96^~2, 3~^~02/01/2015~ -~06633~^~205~^15.87^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06633~^~207~^4.66^5^0.02^~1~^~A~^^^1^4.61^4.73^4^4.60^4.71^~2, 3~^~02/01/2015~ -~06633~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~211~^4.73^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~212~^5.75^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~255~^76.71^5^0.21^~1~^~A~^^^1^76.12^77.35^4^76.10^77.32^~2, 3~^~02/01/2015~ -~06633~^~269~^10.48^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~303~^1.92^5^0.09^~1~^~A~^^^1^1.59^2.13^4^1.66^2.17^~2, 3~^~02/01/2015~ -~06633~^~309~^0.25^5^6.0e-03^~1~^~A~^^^1^0.24^0.26^4^0.23^0.26^~2, 3~^~02/01/2015~ -~06633~^~323~^5.25^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~341~^0.16^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~342~^0.22^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06633~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06700~^~203~^0.24^10^0.01^~1~^~A~^^^1^0.13^0.31^9^0.19^0.27^~2, 3~^~04/01/2015~ -~06700~^~204~^0.07^10^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~205~^0.93^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~207~^0.71^10^0.04^~1~^~A~^^^1^0.41^0.92^9^0.61^0.80^~2, 3~^~04/01/2015~ -~06700~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~210~^0.38^6^0.13^~1~^~A~^^^1^0.00^0.90^5^0.04^0.71^~1, 2, 3~^~04/01/2015~ -~06700~^~211~^0.13^6^0.05^~1~^~A~^^^1^0.00^0.30^5^-0.01^0.27^~1, 2, 3~^~04/01/2015~ -~06700~^~212~^0.03^6^0.02^~1~^~A~^^^1^0.00^0.10^5^-0.02^0.08^~1, 2, 3~^~04/01/2015~ -~06700~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~255~^98.05^10^0.12^~1~^~A~^^^1^97.10^98.50^9^97.77^98.32^~2, 3~^~04/01/2015~ -~06700~^~269~^0.55^6^0.13^~1~^~A~^^^1^0.10^0.90^5^0.20^0.89^~2, 3~^~04/01/2015~ -~06700~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~303~^0.06^10^0.01^~1~^~A~^^^1^0.00^0.16^9^0.02^0.09^~1, 2, 3~^~04/01/2015~ -~06700~^~309~^0.03^10^3.0e-03^~1~^~A~^^^1^0.01^0.04^9^0.02^0.03^~1, 2, 3~^~04/01/2015~ -~06700~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~06700~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06700~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06720~^~203~^7.68^8^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~204~^18.33^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06720~^~205~^60.52^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~06720~^~207~^9.67^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~255~^3.78^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06720~^~269~^10.26^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06720~^~303~^0.50^11^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06720~^~309~^1.11^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~418~^0.46^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06725~^~203~^3.10^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~204~^6.30^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~205~^7.50^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06725~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~255~^82.10^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~203~^6.50^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~204~^2.10^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~205~^18.00^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06731~^~207~^2.50^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~255~^70.90^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~303~^1.37^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~203~^6.20^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~204~^0.70^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~205~^3.30^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~06742~^~207~^1.20^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~255~^88.60^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06749~^~203~^3.18^10^0.04^~1~^~A~^^^1^3.16^3.24^1^2.63^3.72^~4~^~02/01/2013~ -~06749~^~204~^1.16^10^0.17^~1~^~A~^^^1^0.92^1.23^1^-1.05^3.37^~4~^~02/01/2013~ -~06749~^~205~^6.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~207~^1.28^10^0.08^~1~^~A~^^^1^1.17^1.31^1^0.24^2.31^~4~^~02/01/2013~ -~06749~^~209~^3.14^4^0.37^~1~^~A~^^^1^3.00^3.65^1^-1.59^7.87^~4~^~02/01/2013~ -~06749~^~210~^0.62^6^0.27^~1~^~A~^^^1^0.51^0.99^1^-2.87^4.11^~4~^~02/01/2013~ -~06749~^~211~^0.29^9^0.02^~1~^~A~^^^1^0.25^0.31^2^0.19^0.38^~1, 4~^~02/01/2013~ -~06749~^~212~^0.33^6^0.01^~1~^~A~^^^1^0.33^0.35^1^0.16^0.50^~4~^~02/01/2013~ -~06749~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2011~ -~06749~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2011~ -~06749~^~255~^88.22^10^0.43^~1~^~A~^^^1^88.06^88.81^1^82.73^93.71^~4~^~02/01/2013~ -~06749~^~269~^1.25^6^0.25^~1~^~A~^^^1^1.15^1.59^1^-2.01^4.50^~4~^~02/01/2013~ -~06749~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2011~ -~06749~^~303~^0.51^10^0.08^~1~^~A~^^^1^0.41^0.54^1^-0.49^1.52^~4~^~02/01/2013~ -~06749~^~309~^0.56^10^0.08^~1~^~A~^^^1^0.44^0.59^1^-0.48^1.59^~4~^~02/01/2013~ -~06749~^~323~^0.45^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~418~^0.17^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06930~^~203~^6.71^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~204~^13.29^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06930~^~205~^6.83^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~ -~06930~^~207~^2.67^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~255~^70.50^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06930~^~269~^0.42^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06930~^~303~^0.21^21^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06930~^~309~^0.98^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~418~^0.14^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06931~^~203~^1.39^36^0.02^~1~^~A~^^^1^0.88^1.75^21^1.33^1.44^~2, 3~^~04/01/2015~ -~06931~^~204~^1.61^36^0.04^~1~^~A~^^^1^0.63^2.82^13^1.50^1.70^~2, 3~^~04/01/2015~ -~06931~^~205~^7.43^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~207~^1.70^36^0.01^~1~^~A~^^^1^1.42^2.00^21^1.67^1.73^~2, 3~^~04/01/2015~ -~06931~^~209~^0.00^18^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~210~^0.41^18^0.01^~1~^~A~^^^1^0.19^2.21^9^0.38^0.44^~1, 2, 3~^~04/01/2015~ -~06931~^~211~^2.23^18^0.02^~1~^~A~^^^1^2.09^2.62^9^2.17^2.28^~2, 3~^~04/01/2015~ -~06931~^~212~^2.26^18^0.03^~1~^~A~^^^1^2.07^2.93^6^2.19^2.33^~2, 3~^~04/01/2015~ -~06931~^~213~^0.00^18^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~214~^0.00^18^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~255~^87.87^36^0.12^~1~^~A~^^^1^84.89^89.79^21^87.62^88.12^~2, 3~^~04/01/2015~ -~06931~^~269~^4.91^18^0.05^~1~^~A~^^^1^4.48^7.12^7^4.78^5.03^~2, 3~^~04/01/2015~ -~06931~^~287~^0.00^18^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~303~^0.73^36^0.05^~1~^~A~^^^1^0.55^2.12^13^0.62^0.84^~2, 3~^~04/01/2015~ -~06931~^~309~^0.20^36^4.0e-03^~1~^~A~^^^1^0.15^0.25^20^0.19^0.20^~2, 3~^~01/01/2011~ -~06931~^~323~^2.40^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06931~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~06931~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06955~^~203~^1.80^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06955~^~204~^1.30^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~205~^9.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06955~^~207~^1.50^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~255~^85.80^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~269~^0.39^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06955~^~303~^0.20^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~309~^0.13^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06955~^~418~^0.05^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06955~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06956~^~203~^1.61^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~204~^0.56^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~205~^13.41^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~207~^1.91^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~255~^82.50^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~269~^8.11^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~303~^1.11^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~309~^0.25^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~323~^0.34^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~418~^0.00^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~573~^0.00^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~578~^0.00^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06957~^~203~^8.53^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~204~^11.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~205~^59.78^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06957~^~207~^14.34^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~255~^5.51^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~269~^9.23^1^^~12~^~MA~^^^^^^^^^^~11/01/2006~ -~06957~^~303~^7.40^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~309~^0.96^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~323~^0.38^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06957~^~418~^0.33^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06957~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06958~^~203~^9.80^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~204~^9.48^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~205~^61.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06958~^~207~^14.97^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~255~^4.65^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~269~^23.90^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06958~^~303~^6.27^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~309~^0.76^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06958~^~418~^0.62^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06958~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06959~^~203~^11.72^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~204~^14.66^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~205~^57.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06959~^~207~^10.82^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~255~^5.24^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~269~^7.60^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06959~^~303~^9.57^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~309~^1.13^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~323~^0.74^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06959~^~418~^0.37^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06959~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06960~^~203~^15.32^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~204~^36.35^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~06960~^~205~^36.52^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~06960~^~207~^9.76^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~255~^2.05^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~06960~^~269~^5.40^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~06960~^~303~^0.94^3^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~309~^1.49^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~323~^1.84^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~06960~^~418~^0.38^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06960~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06961~^~203~^0.90^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~204~^0.60^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~205~^3.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06961~^~207~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~255~^94.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~269~^2.55^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~303~^0.50^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~309~^0.15^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06961~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06961~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06961~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06962~^~203~^0.70^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~204~^0.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~205~^5.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06962~^~207~^0.67^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~255~^93.90^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~269~^2.55^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06962~^~303~^0.40^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~309~^0.15^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~323~^0.34^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06962~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06962~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06962~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06963~^~203~^2.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~204~^0.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~205~^0.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~207~^0.97^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~255~^96.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~269~^0.09^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~303~^0.21^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~309~^0.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06963~^~418~^0.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06963~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06964~^~203~^0.79^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~204~^0.28^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~205~^6.57^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~207~^0.99^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~255~^91.38^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~269~^3.97^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~303~^0.54^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~309~^0.12^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~323~^0.17^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~418~^0.00^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~573~^0.00^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~578~^0.00^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06965~^~203~^3.20^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~204~^1.09^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~205~^9.88^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~207~^1.28^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~255~^84.55^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~269~^3.19^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~303~^0.73^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~309~^0.64^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~323~^0.09^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06966~^~203~^1.27^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~204~^0.95^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~205~^2.95^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~207~^1.01^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~255~^93.82^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~269~^0.27^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~303~^0.66^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~309~^0.16^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~323~^0.03^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~418~^0.02^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~203~^1.10^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~204~^0.45^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~205~^6.06^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~207~^1.05^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~255~^91.35^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~269~^2.15^0^^~6~^~RPI~^^^^^^^^^^~05/01/2007~ -~06967~^~303~^0.33^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~309~^0.20^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~323~^0.72^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06968~^~203~^1.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~204~^3.70^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~205~^4.53^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~06968~^~207~^0.47^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~255~^90.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~269~^1.72^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~06968~^~303~^0.21^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~309~^0.24^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~323~^0.37^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06968~^~418~^0.02^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06968~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06969~^~203~^9.20^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~204~^3.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~205~^76.14^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~06969~^~207~^5.76^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~255~^5.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~269~^10.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06969~^~303~^2.38^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~309~^0.91^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~323~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06969~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06969~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06969~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~06970~^~203~^2.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~204~^0.60^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~205~^1.20^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06970~^~207~^0.20^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06970~^~255~^96.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~269~^0.13^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06970~^~303~^0.21^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~309~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06970~^~418~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06970~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06971~^~203~^0.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~205~^19.17^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~06971~^~207~^2.29^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~06971~^~255~^78.54^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06971~^~269~^10.03^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06971~^~303~^5.30^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~309~^0.19^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~06971~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06971~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06971~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06972~^~203~^2.50^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~204~^0.30^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~205~^19.79^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~207~^9.47^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~255~^68.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~269~^13.33^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~303~^0.80^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~309~^0.16^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~323~^1.92^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~06972~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~06972~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06972~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06974~^~203~^5.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~204~^2.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~205~^8.76^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~06974~^~207~^0.74^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~255~^83.40^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~269~^1.42^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06974~^~303~^0.61^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06974~^~309~^0.90^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06974~^~418~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06974~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06976~^~203~^1.41^36^0.03^~1~^~A~^^^1^0.88^1.75^35^1.33^1.48^~4~^~05/01/2011~ -~06976~^~204~^1.48^36^0.10^~1~^~A~^^^1^0.63^2.82^35^1.27^1.68^~4~^~05/01/2011~ -~06976~^~205~^8.06^0^^~4~^~NR~^~06931~^^^^^^^^^~05/01/2011~ -~06976~^~207~^1.66^36^0.02^~1~^~A~^^^1^1.42^2.00^35^1.61^1.70^~4~^~05/01/2011~ -~06976~^~255~^87.39^36^0.20^~1~^~A~^^^1^84.89^89.79^35^86.97^87.80^~4~^~05/01/2011~ -~06976~^~269~^5.50^18^0.23^~1~^~A~^^^1^4.48^7.12^17^5.01^5.99^~4~^~05/01/2011~ -~06976~^~303~^0.78^36^0.04^~1~^~A~^^^1^0.55^2.12^35^0.68^0.87^~4~^~05/01/2011~ -~06976~^~309~^0.20^36^4.0e-03^~1~^~A~^^^1^0.15^0.25^35^0.19^0.21^~4~^~05/01/2011~ -~06976~^~323~^2.40^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~418~^0.00^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~573~^0.00^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~578~^0.00^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06977~^~203~^3.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~204~^2.40^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~205~^6.16^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06977~^~207~^0.14^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06977~^~255~^87.50^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~269~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~303~^0.70^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~309~^1.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06977~^~418~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06977~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06978~^~203~^4.30^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~204~^2.30^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~205~^9.58^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06978~^~207~^0.52^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~06978~^~255~^83.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~269~^0.84^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06978~^~303~^0.97^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~309~^1.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06978~^~418~^0.26^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06978~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06980~^~203~^5.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~204~^4.60^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~205~^9.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~06980~^~207~^1.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~06980~^~255~^79.90^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~269~^1.68^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06980~^~303~^0.88^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~309~^1.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~323~^0.41^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06980~^~418~^0.26^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06980~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06981~^~203~^16.70^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~204~^13.89^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~205~^64.88^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~207~^2.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~255~^2.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~269~^14.47^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06981~^~303~^1.03^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~309~^0.09^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~323~^0.72^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~06981~^~418~^0.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06981~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~06982~^~203~^10.06^12^0.04^~1~^~A~^^^1^9.69^10.56^10^9.96^10.15^~2, 3~^~04/01/2013~ -~06982~^~204~^17.73^12^0.17^~1~^~A~^^^1^16.49^19.28^8^17.33^18.11^~2, 3~^~04/01/2013~ -~06982~^~205~^60.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~207~^5.31^12^0.20^~1~^~A~^^^1^4.66^6.57^5^4.80^5.82^~2, 3~^~04/01/2013~ -~06982~^~209~^56.06^6^0.19^~1~^~A~^^^1^55.00^58.00^2^55.22^56.89^~2, 3~^~04/01/2013~ -~06982~^~210~^1.40^6^0.02^~1~^~A~^^^1^0.30^1.80^2^1.29^1.51^~2, 3~^~04/01/2013~ -~06982~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06982~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06982~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~214~^0.59^6^0.06^~1~^~A~^^^1^0.30^0.80^2^0.30^0.87^~2, 3~^~04/01/2013~ -~06982~^~255~^6.56^12^0.12^~1~^~A~^^^1^5.28^7.16^6^6.26^6.84^~2, 3~^~04/01/2013~ -~06982~^~269~^1.99^6^0.07^~1~^~A~^^^1^0.60^2.50^2^1.66^2.32^~2, 3~^~04/01/2013~ -~06982~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06982~^~303~^3.93^12^0.13^~1~^~A~^^^1^3.27^5.17^7^3.59^4.25^~2, 3~^~04/01/2013~ -~06982~^~309~^0.61^12^6.0e-03^~1~^~A~^^^1^0.55^0.81^10^0.59^0.62^~2, 3~^~04/01/2013~ -~06982~^~323~^2.49^6^0.11^~1~^~A~^^^1^1.93^2.77^2^2.03^2.94^~2, 3~^~04/01/2013~ -~06982~^~341~^0.21^6^7.0e-03^~1~^~A~^^^1^0.18^0.22^3^0.18^0.22^~1, 2, 3~^~04/01/2013~ -~06982~^~342~^0.11^6^6.0e-03^~1~^~A~^^^1^0.09^0.14^2^0.09^0.13^~1, 2, 3~^~04/01/2013~ -~06982~^~343~^0.00^6^4.0e-03^~1~^~A~^^^1^0.00^0.05^2^-0.01^0.02^~1, 2, 3~^~04/01/2013~ -~06982~^~344~^1.98^6^0.07^~1~^~A~^^^1^1.60^2.16^3^1.73^2.23^~2, 3~^~04/01/2013~ -~06982~^~345~^1.31^6^0.08^~1~^~A~^^^1^0.87^1.59^2^0.97^1.65^~2, 3~^~04/01/2013~ -~06982~^~346~^3.28^6^0.11^~1~^~A~^^^1^2.88^3.57^3^2.85^3.70^~2, 3~^~04/01/2013~ -~06982~^~347~^1.02^6^0.03^~1~^~A~^^^1^0.94^1.14^3^0.90^1.12^~2, 3~^~04/01/2013~ -~06983~^~203~^10.22^12^0.16^~1~^~A~^^^1^9.75^11.12^5^9.79^10.65^~2, 3~^~04/01/2013~ -~06983~^~204~^17.52^12^0.32^~1~^~A~^^^1^15.45^18.76^5^16.69^18.34^~2, 3~^~04/01/2013~ -~06983~^~205~^60.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~207~^5.53^12^0.15^~1~^~A~^^^1^5.13^6.66^5^5.13^5.92^~2, 3~^~04/01/2013~ -~06983~^~209~^55.94^6^0.48^~1~^~A~^^^1^54.70^58.20^2^53.86^58.01^~2, 3~^~04/01/2013~ -~06983~^~210~^1.43^6^0.02^~1~^~A~^^^1^0.40^1.60^2^1.30^1.55^~2, 3~^~04/01/2013~ -~06983~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06983~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06983~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~214~^0.53^6^0.05^~1~^~A~^^^1^0.30^0.70^2^0.28^0.78^~2, 3~^~04/01/2013~ -~06983~^~255~^6.50^12^0.18^~1~^~A~^^^1^5.04^7.60^5^6.01^6.97^~2, 3~^~04/01/2013~ -~06983~^~269~^1.96^6^0.07^~1~^~A~^^^1^0.70^2.30^2^1.62^2.29^~2, 3~^~04/01/2013~ -~06983~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~06983~^~303~^4.21^12^0.12^~1~^~A~^^^1^3.59^4.87^5^3.88^4.52^~2, 3~^~04/01/2013~ -~06983~^~309~^0.59^12^0.03^~1~^~A~^^^1^0.48^0.79^5^0.50^0.67^~2, 3~^~04/01/2013~ -~06983~^~323~^2.41^6^0.20^~1~^~A~^^^1^2.01^2.82^2^1.52^3.30^~2, 3~^~04/01/2013~ -~06983~^~341~^0.22^6^0.01^~1~^~A~^^^1^0.16^0.26^2^0.15^0.28^~1, 2, 3~^~04/01/2013~ -~06983~^~342~^0.10^6^6.0e-03^~1~^~A~^^^1^0.09^0.14^2^0.07^0.12^~1, 2, 3~^~04/01/2013~ -~06983~^~343~^0.00^6^2.0e-03^~1~^~A~^^^1^0.00^0.04^2^-5.0e-03^9.0e-03^~1, 2, 3~^~04/01/2013~ -~06983~^~344~^1.91^6^0.12^~1~^~A~^^^1^1.68^2.18^2^1.36^2.45^~2, 3~^~04/01/2013~ -~06983~^~345~^1.53^6^0.15^~1~^~A~^^^1^0.95^1.90^2^0.88^2.17^~2, 3~^~04/01/2013~ -~06983~^~346~^3.30^6^0.13^~1~^~A~^^^1^2.99^3.56^2^2.70^3.88^~2, 3~^~04/01/2013~ -~06983~^~347~^0.92^6^0.01^~1~^~A~^^^1^0.87^1.13^2^0.86^0.98^~2, 3~^~04/01/2013~ -~06985~^~203~^1.09^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~204~^1.13^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~205~^6.24^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~06985~^~207~^1.59^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~255~^89.97^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~269~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~303~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~309~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~418~^0.09^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06999~^~203~^0.79^6^0.01^~1~^~A~^^^1^0.73^0.85^5^0.74^0.84^~2, 3~^~02/01/2015~ -~06999~^~204~^2.73^6^0.19^~1~^~A~^^^1^1.90^3.14^5^2.23^3.23^~2, 3~^~02/01/2015~ -~06999~^~205~^5.87^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~207~^1.21^6^0.02^~1~^~A~^^^1^1.12^1.29^5^1.13^1.27^~2, 3~^~02/01/2015~ -~06999~^~209~^3.80^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06999~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~213~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06999~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~255~^89.39^6^0.27^~1~^~A~^^^1^88.62^90.30^5^88.68^90.10^~2, 3~^~02/01/2015~ -~06999~^~269~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06999~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~303~^0.12^6^0.02^~1~^~A~^^^1^0.07^0.22^5^0.06^0.17^~1, 2, 3~^~02/01/2015~ -~06999~^~309~^0.09^6^0.01^~1~^~A~^^^1^0.06^0.13^5^0.05^0.11^~2, 3~^~02/01/2015~ -~06999~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06999~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~06999~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~07001~^~203~^15.84^5^0.43^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~204~^8.90^5^1.04^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~205~^6.40^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07001~^~207~^4.04^5^0.13^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~255~^64.82^5^0.83^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~303~^1.16^5^0.26^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~309~^2.46^5^0.18^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~418~^1.68^5^0.11^~1~^^^^^^^^^^^~09/01/1980~ -~07002~^~203~^14.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~204~^22.53^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~205~^3.76^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~207~^2.50^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~255~^56.71^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~303~^1.73^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~309~^2.21^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07002~^~418~^1.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07003~^~203~^14.24^5^0.30^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~204~^18.80^5^0.69^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~205~^2.06^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07003~^~207~^3.44^5^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~255~^61.46^5^0.70^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~303~^0.76^5^0.18^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~309~^1.72^5^0.12^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~418~^0.87^5^0.01^~1~^^^^^^^^^^^~09/01/1980~ -~07004~^~203~^15.27^3^0.12^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~204~^17.20^3^0.45^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~205~^2.59^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~207~^3.97^3^0.03^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~255~^60.97^3^0.26^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~269~^2.35^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07004~^~303~^1.15^3^0.07^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~309~^2.47^3^0.23^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~418~^2.67^3^0.35^~1~^^^^^^^^^^^~07/01/2002~ -~07005~^~203~^14.60^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~204~^34.50^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~205~^1.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07005~^~207~^2.31^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~210~^1.30^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~ -~07005~^~255~^47.30^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~269~^1.29^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~07005~^~303~^6.40^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~309~^1.30^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~323~^0.13^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~ -~07005~^~418~^1.00^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07006~^~203~^14.03^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~204~^25.87^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~205~^2.95^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~207~^2.26^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~209~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~210~^0.00^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~07006~^~211~^0.01^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~07006~^~212~^0.01^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~07006~^~213~^0.00^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~214~^0.00^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~255~^54.47^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~07006~^~269~^1.33^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~287~^0.01^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~07006~^~303~^1.15^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07006~^~309~^2.07^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~323~^0.38^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~341~^0.00^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~342~^0.01^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~343~^0.00^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~344~^0.00^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~345~^0.00^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~346~^0.00^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~347~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~418~^0.86^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07007~^~203~^10.91^11^0.01^~1~^~A~^^^1^10.31^12.13^5^10.87^10.94^~2, 3~^~04/01/2012~ -~07007~^~204~^26.13^11^0.02^~1~^~A~^^^1^22.71^29.56^5^26.06^26.19^~2, 3~^~04/01/2012~ -~07007~^~205~^4.29^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07007~^~207~^3.37^11^3.0e-03^~1~^~A~^^^1^2.82^3.91^5^3.36^3.37^~2, 3~^~04/01/2012~ -~07007~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2012~ -~07007~^~211~^1.65^2^^~1~^~A~^^^1^1.20^2.10^^^^^~04/01/2012~ -~07007~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2012~ -~07007~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2012~ -~07007~^~214~^0.40^2^^~1~^~A~^^^1^0.30^0.50^^^^^~04/01/2012~ -~07007~^~255~^55.31^11^0.03^~1~^~A~^^^1^52.76^57.70^5^55.21^55.39^~2, 3~^~04/01/2012~ -~07007~^~269~^2.05^2^^~1~^~A~^^^1^1.70^2.40^^^^^~05/01/2012~ -~07007~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2012~ -~07007~^~303~^1.29^11^3.0e-03^~1~^~A~^^^1^0.72^1.76^5^1.27^1.29^~2, 3~^~04/01/2012~ -~07007~^~309~^1.93^11^8.0e-03^~1~^~A~^^^1^1.21^2.36^5^1.91^1.95^~2, 3~^~04/01/2012~ -~07007~^~323~^0.56^6^4.0e-03^~1~^~A~^^^1^0.35^0.69^2^0.54^0.57^~2, 3~^~04/01/2012~ -~07007~^~341~^0.11^6^1.0e-03^~1~^~A~^^^1^0.00^0.31^2^0.10^0.11^~2, 3~^~04/01/2012~ -~07007~^~342~^0.31^6^2.0e-03^~1~^~A~^^^1^0.06^0.47^2^0.29^0.31^~2, 3~^~04/01/2012~ -~07007~^~343~^0.01^6^0.00^~1~^~A~^^^1^0.00^0.01^2^7.0e-03^9.0e-03^~1, 2, 3~^~04/01/2012~ -~07007~^~344~^0.03^6^1.0e-03^~1~^~A~^^^1^0.02^0.04^2^0.02^0.03^~2, 3~^~04/01/2012~ -~07007~^~345~^0.03^6^0.00^~1~^~A~^^^1^0.00^0.06^^^^~1, 2, 3~^~04/01/2012~ -~07007~^~346~^0.01^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^2^0.00^0.01^~1, 2, 3~^~04/01/2012~ -~07007~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07007~^~418~^1.19^6^8.0e-03^~1~^~A~^^^1^0.80^1.30^2^1.15^1.22^~2, 3~^~04/01/2012~ -~07007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07008~^~203~^15.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07008~^~204~^24.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07008~^~205~^5.49^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~207~^2.85^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~07008~^~255~^51.87^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~269~^4.42^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~07008~^~303~^1.21^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~309~^2.30^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~323~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~341~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07008~^~342~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07008~^~343~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07008~^~418~^1.82^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07010~^~203~^15.30^3^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~204~^19.87^3^1.26^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07010~^~207~^3.50^3^0.05^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~255~^60.60^3^0.83^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07010~^~303~^0.77^3^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~309~^2.03^4^0.11^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~323~^0.26^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07010~^~418~^0.93^3^0.04^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07011~^~203~^11.42^4^^~1~^~A~^^^2^11.20^11.70^^^^~2~^~10/01/2002~ -~07011~^~204~^16.05^4^^~1~^~A~^^^2^13.20^19.60^^^^~2~^~10/01/2002~ -~07011~^~205~^4.68^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~207~^3.30^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~07011~^~255~^64.55^4^^~1~^~A~^^^2^61.00^67.40^^^^~2~^~10/01/2002~ -~07011~^~269~^2.90^3^^~1~^~A~^^^1^2.90^2.90^^^^~2~^~09/01/2002~ -~07011~^~303~^3.00^3^^~1~^~A~^^^1^3.00^3.00^^^^~2~^~10/01/2002~ -~07011~^~309~^1.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~323~^0.45^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~418~^0.23^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07013~^~203~^13.72^23^^~11~^~JO~^^^2^12.12^16.60^^^^~2~^~01/01/2003~ -~07013~^~204~^29.18^23^^~11~^~JO~^^^2^29.10^29.31^^^^~2~^~01/01/2003~ -~07013~^~205~^2.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07013~^~207~^2.80^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~07013~^~255~^51.45^23^^~11~^~JO~^^^2^48.10^52.74^^^^~2~^~01/01/2003~ -~07013~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07013~^~303~^0.53^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07013~^~309~^3.25^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~418~^0.73^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07014~^~203~^14.50^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~204~^28.50^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~205~^3.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~ -~07014~^~207~^3.30^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~255~^50.60^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07014~^~303~^11.20^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07014~^~309~^2.81^25^0.06^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~323~^0.35^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07014~^~418~^20.09^20^0.75^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07015~^~203~^14.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~204~^27.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~205~^2.98^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~07015~^~207~^3.67^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~255~^51.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~269~^2.98^0^^~9~^~MC~^^^^^^^^^^~06/01/2008~ -~07015~^~303~^1.03^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~309~^2.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~07015~^~418~^2.05^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07016~^~203~^14.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~204~^29.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~205~^1.51^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~07016~^~207~^3.03^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~255~^52.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~269~^1.51^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~07016~^~303~^1.08^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~309~^2.25^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~323~^0.24^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~418~^1.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07016~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07018~^~203~^18.01^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~204~^17.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07018~^~205~^4.05^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~207~^2.97^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07018~^~255~^57.41^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07018~^~269~^0.47^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07018~^~303~^0.87^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07018~^~309~^1.15^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~418~^0.13^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07019~^~203~^13.63^3^0.10^~1~^~A~^^^1^13.48^13.88^1^12.35^14.89^~2, 3~^~10/01/2016~ -~07019~^~204~^25.10^3^1.97^~1~^~A~^^^1^20.88^28.79^1^-7.0e-03^50.21^~2, 3~^~10/01/2016~ -~07019~^~205~^3.78^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~207~^2.72^3^0.09^~1~^~A~^^^1^2.62^3.01^1^1.47^3.95^~2, 3~^~10/01/2016~ -~07019~^~255~^54.77^3^1.42^~1~^~A~^^^1^51.90^57.60^1^36.66^72.88^~2, 3~^~10/01/2016~ -~07019~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07019~^~303~^1.41^3^0.15^~1~^~A~^^^1^1.16^1.97^1^-0.59^3.40^~2, 3~^~10/01/2016~ -~07019~^~309~^1.68^3^0.05^~1~^~A~^^^1^1.53^1.73^1^1.04^2.31^~2, 3~^~10/01/2016~ -~07019~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07019~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07020~^~203~^22.90^15^0.31^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~204~^6.10^15^0.57^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07020~^~207~^3.00^14^0.10^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~255~^69.10^14^0.40^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~303~^2.04^14^0.16^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~309~^4.09^14^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~418~^1.27^14^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07021~^~203~^12.00^21^0.16^~1~^~A~^^^1^11.84^12.16^1^9.96^14.03^~4~^~06/01/2002~ -~07021~^~204~^22.91^21^1.25^~1~^~A~^^^1^21.66^24.16^1^7.02^38.79^~4~^~06/01/2002~ -~07021~^~205~^3.93^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07021~^~207~^3.07^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07021~^~210~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~211~^0.48^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~212~^0.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~214~^0.31^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~255~^58.10^21^0.87^~1~^~A~^^^1^57.22^58.97^1^46.97^69.21^~4~^~06/01/2002~ -~07021~^~269~^0.90^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~07021~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~303~^0.16^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07021~^~309~^2.53^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~418~^0.90^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07022~^~203~^11.69^17^0.09^~1~^~A~^^^1^10.70^12.40^10^11.48^11.90^~2, 3~^~03/01/2016~ -~07022~^~204~^28.10^17^0.26^~1~^~A~^^^1^25.80^31.30^10^27.51^28.68^~2, 3~^~03/01/2016~ -~07022~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~207~^2.76^17^0.06^~1~^~A~^^^1^1.52^3.34^9^2.61^2.90^~2, 3~^~03/01/2016~ -~07022~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07022~^~211~^1.07^6^0.02^~1~^~A~^^^1^0.62^1.73^4^1.01^1.12^~2, 3~^~03/01/2016~ -~07022~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07022~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07022~^~214~^0.10^6^0.01^~1~^~A~^^^1^0.00^0.28^2^0.04^0.15^~1, 2, 3~^~03/01/2016~ -~07022~^~255~^54.47^17^0.12^~1~^~A~^^^1^52.20^57.40^8^54.19^54.74^~2, 3~^~03/01/2016~ -~07022~^~269~^1.17^6^0.03^~1~^~A~^^^1^0.62^2.01^3^1.07^1.27^~2, 3~^~03/01/2016~ -~07022~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07022~^~303~^1.12^17^0.03^~1~^~A~^^^1^0.90^1.46^12^1.04^1.19^~2, 3~^~03/01/2016~ -~07022~^~309~^2.01^17^0.05^~1~^~A~^^^1^1.59^2.55^11^1.89^2.12^~2, 3~^~03/01/2016~ -~07022~^~323~^0.50^9^0.02^~1~^~A~^^^1^0.26^0.77^5^0.43^0.57^~2, 3~^~03/01/2016~ -~07022~^~341~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~342~^0.17^9^6.0e-03^~1~^~A~^^^1^0.00^0.37^4^0.15^0.18^~1, 2, 3~^~03/01/2016~ -~07022~^~343~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~418~^0.96^9^0.03^~1~^~A~^^^1^0.84^1.10^4^0.87^1.04^~2, 3~^~03/01/2016~ -~07022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07024~^~203~^15.51^3^1.26^~1~^~A~^^^1^13.09^17.39^2^10.05^20.96^~2, 3~^~03/01/2007~ -~07024~^~204~^16.19^3^1.24^~1~^~A~^^^1^14.84^18.68^2^10.83^21.55^~2, 3~^~03/01/2007~ -~07024~^~205~^2.74^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07024~^~207~^3.06^3^0.21^~1~^~A~^^^1^2.83^3.50^2^2.11^4.00^~2, 3~^~03/01/2007~ -~07024~^~255~^62.50^3^0.89^~1~^~A~^^^1^61.36^64.27^2^58.64^66.35^~2, 3~^~03/01/2007~ -~07024~^~269~^2.98^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~07024~^~303~^1.17^3^0.27^~1~^~A~^^^1^0.88^1.71^2^-5.0e-03^2.33^~2, 3~^~03/01/2007~ -~07024~^~309~^1.11^3^0.07^~1~^~A~^^^1^0.96^1.19^2^0.78^1.44^~2, 3~^~03/01/2007~ -~07024~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07024~^~418~^0.54^3^0.10^~1~^~A~^^^1^0.42^0.75^2^0.07^0.99^~2, 3~^~03/01/2007~ -~07024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07025~^~203~^12.23^3^0.17^~1~^~A~^^^1^11.96^12.56^2^11.48^12.97^~2, 3~^~03/01/2007~ -~07025~^~204~^17.29^3^0.96^~1~^~A~^^^1^15.69^19.01^2^13.14^21.42^~2, 3~^~03/01/2007~ -~07025~^~205~^3.81^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07025~^~207~^3.68^3^0.07^~1~^~A~^^^1^3.55^3.81^2^3.35^4.00^~2, 3~^~03/01/2007~ -~07025~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~211~^1.03^3^0.39^~1~^~A~^^^1^0.28^1.62^2^-0.67^2.74^~2, 3~^~03/01/2007~ -~07025~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~214~^0.17^3^0.08^~1~^~A~^^^1^0.00^0.28^2^-0.20^0.55^~1, 2, 3~^~03/01/2007~ -~07025~^~255~^62.99^3^0.43^~1~^~A~^^^1^62.34^63.81^2^61.13^64.84^~2, 3~^~03/01/2007~ -~07025~^~269~^1.21^3^0.47^~1~^~A~^^^1^0.28^1.85^2^-0.84^3.25^~2, 3~^~03/01/2007~ -~07025~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~303~^1.47^3^0.12^~1~^~A~^^^1^1.26^1.70^2^0.92^2.01^~2, 3~^~03/01/2007~ -~07025~^~309~^1.84^3^0.11^~1~^~A~^^^1^1.70^2.06^2^1.35^2.32^~2, 3~^~03/01/2007~ -~07025~^~323~^0.62^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07025~^~418~^0.82^3^0.02^~1~^~A~^^^1^0.78^0.86^2^0.72^0.91^~2, 3~^~03/01/2007~ -~07025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07026~^~203~^16.06^6^0.59^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~204~^18.83^4^1.01^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~205~^0.26^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07026~^~207~^4.08^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~255~^60.77^6^1.96^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07026~^~303~^0.95^4^0.13^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~309~^1.83^4^0.12^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07026~^~418~^0.70^10^0.07^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07027~^~203~^16.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07027~^~204~^16.70^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07027~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07027~^~207~^3.70^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07027~^~255~^65.30^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07027~^~269~^5.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07027~^~303~^0.83^5^0.15^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~309~^1.94^5^0.15^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~323~^0.23^0^^~4~^~BFSN~^~10152~^^^^^^^^^~03/01/2003~ -~07027~^~418~^0.92^5^0.08^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07028~^~203~^16.85^18^0.17^~1~^~A~^^^1^15.06^18.06^8^16.43^17.25^~2, 3~^~03/01/2016~ -~07028~^~204~^4.04^18^0.15^~1~^~A~^^^1^3.02^5.86^9^3.68^4.39^~2, 3~^~03/01/2016~ -~07028~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~207~^3.57^18^0.08^~1~^~A~^^^1^2.38^4.05^8^3.38^3.74^~2, 3~^~03/01/2016~ -~07028~^~255~^74.84^18^0.29^~1~^~A~^^^1^71.76^78.01^11^74.20^75.48^~2, 3~^~03/01/2016~ -~07028~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07028~^~303~^0.59^18^0.01^~1~^~A~^^^1^0.51^0.75^7^0.55^0.63^~2, 3~^~03/01/2016~ -~07028~^~309~^1.51^18^0.03^~1~^~A~^^^1^1.32^1.74^11^1.43^1.58^~2, 3~^~03/01/2016~ -~07028~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07028~^~418~^0.36^3^0.02^~1~^~A~^^^1^0.32^0.40^2^0.26^0.46^~2, 3~^~04/01/2013~ -~07028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07029~^~203~^16.60^2^^~1~^~A~^^^1^16.50^17.00^^^^^~09/01/2002~ -~07029~^~204~^8.80^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07029~^~205~^3.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07029~^~207~^3.70^2^^~1~^~A~^^^1^3.70^3.70^^^^^~09/01/2002~ -~07029~^~255~^67.27^2^^~1~^~A~^^^1^65.30^75.00^^^^^~09/01/2002~ -~07029~^~269~^1.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07029~^~303~^1.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~309~^1.35^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~341~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07029~^~342~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07029~^~343~^0.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07029~^~418~^0.42^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07030~^~203~^16.28^4^0.50^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~204~^20.68^4^1.66^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~205~^1.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07030~^~207~^3.85^4^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~255~^57.35^4^1.00^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07030~^~303~^0.79^4^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~309~^1.90^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~323~^0.27^0^^~4~^~BFSN~^~10152~^^^^^^^^^~03/01/2003~ -~07030~^~418~^0.95^4^0.14^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07031~^~203~^8.68^4^0.20^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~204~^15.53^4^0.62^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~205~^10.64^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07031~^~207~^2.55^4^0.19^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~255~^62.60^4^0.38^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07031~^~303~^0.59^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~309~^1.10^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~323~^1.74^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07031~^~418~^0.76^4^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07032~^~203~^13.60^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~204~^18.70^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~205~^4.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07032~^~207~^3.40^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~255~^60.30^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07032~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07032~^~303~^0.91^8^0.10^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~309~^2.00^8^0.10^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07032~^~418~^0.81^8^0.02^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07033~^~203~^16.18^4^0.16^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~204~^18.53^4^0.38^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~205~^2.28^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07033~^~207~^3.90^4^0.04^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~255~^59.13^4^0.37^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~303~^0.76^4^0.20^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~309~^2.25^4^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~418~^0.73^4^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07034~^~203~^13.83^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~204~^10.90^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~07034~^~207~^2.08^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~255~^73.84^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07034~^~303~^1.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~309~^0.97^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07034~^~418~^1.05^4^0.09^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07036~^~203~^13.90^5^0.32^~1~^~A~^^^1^13.18^14.58^2^12.51^15.29^~2, 3~^~11/01/2016~ -~07036~^~204~^24.26^5^1.37^~1~^~A~^^^1^21.10^27.00^2^18.55^29.96^~2, 3~^~11/01/2016~ -~07036~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~207~^2.42^5^0.11^~1~^~A~^^^1^2.18^2.70^2^1.92^2.92^~2, 3~^~11/01/2016~ -~07036~^~211~^1.19^0^^~4~^~BFNN~^~07089~^^^^^^^^^~12/01/2016~ -~07036~^~255~^56.44^5^0.72^~1~^~A~^^^1^54.90^58.00^2^53.37^59.51^~2, 3~^~11/01/2016~ -~07036~^~269~^1.19^0^^~4~^~BFNN~^~07089~^^^^^^^^^~12/01/2016~ -~07036~^~303~^1.77^5^0.50^~1~^~A~^^^1^0.99^5.04^2^-0.30^3.85^~2, 3~^~11/01/2016~ -~07036~^~309~^1.91^5^0.02^~1~^~A~^^^1^1.86^1.97^2^1.80^2.01^~2, 3~^~11/01/2016~ -~07036~^~418~^1.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07038~^~203~^11.10^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~204~^27.70^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~205~^3.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~207~^2.70^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~255~^55.30^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07038~^~303~^0.66^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07038~^~309~^1.66^5^0.10^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~323~^0.57^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07038~^~418~^1.18^5^0.12^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07039~^~203~^19.03^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~204~^10.44^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~205~^0.44^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~207~^4.32^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~255~^65.77^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~07039~^~303~^2.15^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~309~^3.84^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~323~^0.57^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07039~^~418~^2.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07040~^~203~^15.20^7^0.11^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~204~^25.60^7^0.64^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~205~^2.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07040~^~207~^3.50^7^0.02^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~255~^53.60^7^0.26^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~303~^10.83^6^0.68^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~309~^3.70^6^0.23^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~418~^24.55^6^1.11^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~203~^14.10^8^0.27^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~204~^28.50^7^0.44^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~205~^2.20^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07041~^~207~^3.10^5^0.38^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~255~^52.10^7^0.64^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~303~^6.40^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~309~^2.30^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~418~^13.46^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07043~^~203~^18.62^15^0.14^~1~^~A~^^^1^17.56^20.87^11^18.29^18.94^~2, 3~^~04/01/2014~ -~07043~^~204~^3.69^15^0.12^~1~^~A~^^^1^1.92^4.63^9^3.40^3.96^~2, 3~^~04/01/2014~ -~07043~^~205~^0.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~207~^3.33^15^0.05^~1~^~A~^^^1^2.53^3.96^8^3.20^3.45^~2, 3~^~04/01/2014~ -~07043~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~07043~^~211~^0.29^2^^~1~^~A~^^^1^0.00^0.60^^^^~1~^~04/01/2014~ -~07043~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~07043~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~07043~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~07043~^~255~^73.72^15^0.15^~1~^~A~^^^1^71.54^75.05^9^73.36^74.08^~2, 3~^~04/01/2014~ -~07043~^~269~^0.29^2^^~1~^~A~^^^1^0.00^0.60^^^^^~04/01/2014~ -~07043~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~07043~^~303~^2.05^15^0.03^~1~^~A~^^^1^1.49^2.72^12^1.97^2.12^~2, 3~^~04/01/2014~ -~07043~^~309~^3.20^15^0.04^~1~^~A~^^^1^2.86^3.73^9^3.09^3.31^~2, 3~^~04/01/2014~ -~07043~^~323~^0.49^3^^~1~^~A~^^^1^0.44^0.56^^^^~2, 3~^~04/01/2014~ -~07043~^~341~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~342~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~343~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~346~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~418~^2.04^9^0.12^~1~^~A~^^^1^1.60^2.50^5^1.73^2.35^~2, 3~^~04/01/2014~ -~07043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07045~^~203~^12.50^8^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~204~^30.30^8^0.45^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~205~^2.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07045~^~207~^3.60^8^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~255~^51.50^8^0.44^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07045~^~303~^0.72^8^0.07^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~309~^1.48^8^0.05^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~323~^0.26^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07045~^~418~^0.90^8^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07046~^~203~^21.81^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07046~^~204~^0.83^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07046~^~205~^3.51^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07046~^~207~^2.87^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07046~^~255~^71.10^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07046~^~269~^3.51^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~303~^0.63^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07046~^~309~^1.33^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~323~^0.09^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~341~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~342~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~343~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~418~^0.09^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07050~^~203~^16.37^14^0.93^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~204~^25.39^14^1.13^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~205~^3.05^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07050~^~207~^2.89^12^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~255~^52.30^14^0.71^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07050~^~303~^1.40^5^0.07^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~309~^2.10^4^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07050~^~418~^1.48^4^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07051~^~203~^11.80^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~204~^16.50^4^0.50^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~01/01/2004~ -~07051~^~207~^4.30^4^0.07^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~255~^58.20^4^0.69^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07051~^~303~^0.54^4^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~309~^1.38^4^0.02^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07051~^~418~^1.26^4^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07052~^~203~^16.30^2^^~1~^~A~^^^1^15.40^17.20^1^^^^~07/01/2004~ -~07052~^~204~^6.21^6^0.60^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~205~^3.34^0^^~4~^~NR~^^^^^^^^^^~08/01/2013~ -~07052~^~207~^3.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07052~^~255~^71.73^2^^~1~^~A~^^^1^70.10^73.35^1^^^^~07/01/2004~ -~07052~^~269~^3.34^2^^~1~^~A~^^^1^2.10^4.58^1^^^^~08/01/2013~ -~07052~^~303~^4.20^2^^~1~^~A~^^^1^3.40^5.00^1^^^^~07/01/2004~ -~07052~^~309~^2.16^1^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07052~^~418~^0.24^0^^~4~^^^^^^^^^^^~01/01/2008~ -~07052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07053~^~203~^13.45^5^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~204~^13.10^5^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~205~^6.55^5^^~9~^^^^^^^^^^^~09/01/1980~ -~07053~^~207~^1.26^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~255~^65.64^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07053~^~303~^9.19^5^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~309~^2.14^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~323~^0.98^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07053~^~418~^8.07^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07054~^~203~^11.40^15^0.77^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~204~^43.84^14^2.66^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~205~^4.67^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07054~^~207~^3.05^15^0.25^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~255~^37.04^15^2.59^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~303~^5.50^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~309~^0.92^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~418~^9.40^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~203~^14.20^10^0.34^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~204~^28.00^10^1.20^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~205~^1.50^10^^~9~^^^^^^^^^^^~09/01/1980~ -~07055~^~207~^2.20^10^0.12^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~255~^53.90^10^0.88^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~303~^5.50^10^0.44^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~309~^2.85^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~418~^3.20^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07056~^~203~^17.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~204~^6.37^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~205~^4.53^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07056~^~207~^4.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~255~^67.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~269~^4.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~07056~^~303~^1.07^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~309~^3.23^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07056~^~418~^1.96^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07057~^~203~^19.25^6^0.14^~1~^~A~^^^1^18.70^19.70^5^18.87^19.62^~2, 3~^~04/01/2015~ -~07057~^~204~^46.28^6^0.58^~1~^~A~^^^1^44.77^48.30^5^44.76^47.78^~2, 3~^~04/01/2015~ -~07057~^~205~^1.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~207~^4.74^6^0.10^~1~^~A~^^^1^4.57^5.23^5^4.47^5.00^~2, 3~^~04/01/2015~ -~07057~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~255~^28.55^6^0.73^~1~^~A~^^^1^25.40^30.40^5^26.66^30.43^~2, 3~^~04/01/2015~ -~07057~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~07057~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~07057~^~303~^1.33^6^0.03^~1~^~A~^^^1^1.22^1.44^5^1.23^1.41^~2, 3~^~04/01/2015~ -~07057~^~309~^2.44^6^0.04^~1~^~A~^^^1^2.27^2.60^5^2.32^2.56^~2, 3~^~04/01/2015~ -~07057~^~323~^1.03^2^^~1~^~A~^^^1^0.82^1.24^1^^^^~04/01/2015~ -~07057~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~342~^0.11^2^^~1~^~A~^^^1^0.11^0.11^1^^^^~04/01/2015~ -~07057~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~07057~^~418~^1.30^3^0.11^~1~^~A~^^^1^1.10^1.50^2^0.80^1.79^~2, 3~^~04/01/2015~ -~07057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07058~^~203~^11.23^219^0.35^~1~^~A~^^^1^10.04^12.08^5^10.30^12.14^~4~^~07/01/2004~ -~07058~^~204~^15.95^219^1.91^~1~^~A~^^^1^10.13^21.48^5^11.02^20.87^~4~^~07/01/2004~ -~07058~^~205~^8.46^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07058~^~207~^4.07^10^0.21^~1~^~A~^^^1^3.70^4.67^4^3.48^4.66^~4~^~06/01/2004~ -~07058~^~210~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~211~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~212~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~214~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~255~^60.29^219^2.22^~1~^~A~^^^1^53.54^65.71^5^54.57^66.01^~4~^~07/01/2004~ -~07058~^~269~^8.46^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~303~^1.33^3^0.17^~1~^~A~^^^1^1.15^1.50^1^-0.89^3.54^~4~^~06/01/2004~ -~07058~^~309~^1.68^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~323~^0.40^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~344~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~07058~^~418~^0.54^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07059~^~203~^14.10^6^0.25^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~204~^28.72^6^0.36^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~205~^1.63^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07059~^~207~^2.40^6^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~255~^53.15^6^0.24^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~303~^1.44^6^0.05^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~309~^1.93^6^0.02^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~418~^0.98^6^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~203~^18.40^4^0.23^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~204~^4.80^4^0.30^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~205~^4.90^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07060~^~207~^3.60^4^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~255~^68.20^4^0.22^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~303~^1.05^4^0.19^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~309~^3.05^4^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~418~^1.37^4^0.24^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~203~^12.07^3^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~204~^22.30^3^0.49^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~205~^7.53^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07061~^~207~^3.20^3^0.00^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~255~^54.90^3^0.26^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~303~^1.32^3^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~309~^1.43^3^0.14^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~418~^1.05^3^0.14^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~203~^14.92^5^0.32^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~204~^16.64^5^0.38^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~205~^4.76^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07062~^~207~^3.48^5^0.05^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~255~^60.20^5^0.25^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~303~^1.02^5^0.18^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~309~^2.18^5^0.11^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~418~^1.50^5^0.05^~1~^^^^^^^^^^^~09/01/1980~ -~07063~^~203~^15.39^14^0.19^~1~^~A~^^^1^14.31^16.63^9^14.95^15.82^~2, 3~^~08/01/2015~ -~07063~^~204~^24.80^14^0.85^~1~^~A~^^^1^20.89^31.36^7^22.79^26.80^~2, 3~^~08/01/2015~ -~07063~^~205~^0.93^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07063~^~207~^2.54^14^0.04^~1~^~A~^^^1^2.12^2.91^9^2.43^2.64^~2, 3~^~04/01/2013~ -~07063~^~210~^0.10^3^^~1~^~A~^^^1^0.00^0.40^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~211~^0.56^3^^~1~^~A~^^^1^0.50^0.60^^^^~2, 3~^~04/01/2013~ -~07063~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~214~^0.27^3^^~1~^~A~^^^1^0.00^0.40^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~255~^56.59^14^0.60^~1~^~A~^^^1^51.98^59.85^7^55.14^58.03^~2, 3~^~08/01/2015~ -~07063~^~269~^0.93^3^^~1~^~A~^^^1^0.50^1.10^^^^~2, 3~^~04/01/2013~ -~07063~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~303~^1.02^14^0.04^~1~^~A~^^^1^0.72^1.16^6^0.92^1.12^~2, 3~^~04/01/2013~ -~07063~^~309~^2.01^14^0.05^~1~^~A~^^^1^1.64^2.29^6^1.87^2.13^~2, 3~^~08/01/2015~ -~07063~^~323~^0.99^5^0.13^~1~^~A~^^^1^0.60^1.38^1^-0.43^2.40^~2, 3~^~08/01/2015~ -~07063~^~341~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07063~^~342~^0.09^5^8.0e-03^~1~^~A~^^^1^0.04^0.21^1^0.00^0.17^~2, 3~^~08/01/2015~ -~07063~^~343~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07063~^~344~^0.05^5^4.0e-03^~1~^~A~^^^1^0.00^0.09^2^0.02^0.06^~1, 2, 3~^~03/01/2003~ -~07063~^~345~^0.01^5^6.0e-03^~1~^~A~^^^1^0.00^0.05^1^-0.06^0.08^~1, 2, 3~^~04/01/2013~ -~07063~^~346~^0.08^5^9.0e-03^~1~^~A~^^^1^0.05^0.10^1^-0.01^0.17^~2, 3~^~04/01/2013~ -~07063~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07063~^~418~^0.92^8^0.06^~1~^~A~^^^1^0.65^1.00^2^0.66^1.18^~2, 3~^~04/01/2013~ -~07063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07064~^~203~^18.53^15^0.36^~1~^~A~^^^1^16.81^23.44^9^17.72^19.34^~2, 3~^~04/01/2013~ -~07064~^~204~^27.25^15^0.66^~1~^~A~^^^1^23.41^34.48^7^25.66^28.84^~2, 3~^~04/01/2013~ -~07064~^~205~^1.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07064~^~207~^2.90^15^0.06^~1~^~A~^^^1^2.49^3.52^9^2.74^3.04^~2, 3~^~04/01/2013~ -~07064~^~210~^0.13^3^^~1~^~A~^^^1^0.00^0.50^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~211~^0.64^3^^~1~^~A~^^^1^0.50^0.70^^^^~2, 3~^~04/01/2013~ -~07064~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~214~^0.33^3^^~1~^~A~^^^1^0.00^0.50^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~255~^49.89^15^0.74^~1~^~A~^^^1^39.24^54.90^11^48.23^51.54^~2, 3~^~04/01/2013~ -~07064~^~269~^1.09^3^^~1~^~A~^^^1^0.50^1.30^^^^~2, 3~^~04/01/2013~ -~07064~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~303~^1.20^15^0.04^~1~^~A~^^^1^0.91^1.55^8^1.09^1.31^~2, 3~^~04/01/2013~ -~07064~^~309~^2.45^15^0.07^~1~^~A~^^^1^2.03^2.84^10^2.28^2.60^~2, 3~^~04/01/2013~ -~07064~^~323~^0.90^6^0.15^~1~^~A~^^^1^0.40^1.47^2^0.32^1.47^~2, 3~^~04/01/2013~ -~07064~^~341~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.06^1^-0.19^0.23^~1, 2, 3~^~04/01/2013~ -~07064~^~342~^0.05^6^0.02^~1~^~A~^^^1^0.00^0.12^1^-0.10^0.20^~1, 2, 3~^~03/01/2003~ -~07064~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07064~^~344~^0.03^6^6.0e-03^~1~^~A~^^^1^0.00^0.05^1^-0.01^0.08^~1, 2, 3~^~04/01/2013~ -~07064~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07064~^~346~^0.06^6^4.0e-03^~1~^~A~^^^1^0.05^0.08^2^0.04^0.08^~2, 3~^~04/01/2013~ -~07064~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07064~^~418~^0.98^9^0.04^~1~^~A~^^^1^0.78^1.20^4^0.84^1.12^~2, 3~^~04/01/2013~ -~07064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07065~^~203~^13.80^6^0.75^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~204~^36.25^6^1.77^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~205~^2.70^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07065~^~207~^2.70^6^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~255~^44.55^6^1.16^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07065~^~303~^1.13^6^0.07^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~309~^1.87^6^0.10^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07065~^~418~^0.43^6^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07066~^~203~^17.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~204~^10.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~205~^10.92^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07066~^~207~^2.19^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~210~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~211~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~212~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~255~^59.59^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~303~^1.80^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~309~^2.31^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~418~^0.28^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07067~^~203~^11.64^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~204~^13.52^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~205~^7.41^2^^~9~^^^^^^^^^^^~09/01/1980~ -~07067~^~207~^1.26^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~255~^66.17^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07067~^~303~^0.61^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~309~^1.04^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~323~^2.20^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07067~^~418~^0.38^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07068~^~203~^12.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~204~^22.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~205~^1.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~207~^3.30^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~255~^60.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~269~^1.50^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~303~^2.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~309~^1.77^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07068~^~418~^3.06^30^0.29^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07069~^~203~^21.85^3^2.16^~1~^~A~^^^1^17.91^25.37^2^12.53^31.17^~2, 3~^~03/01/2007~ -~07069~^~204~^25.90^3^2.96^~1~^~A~^^^1^19.99^29.33^2^13.13^38.66^~2, 3~^~03/01/2007~ -~07069~^~205~^2.40^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07069~^~207~^4.66^3^0.83^~1~^~A~^^^1^3.01^5.74^2^1.04^8.26^~2, 3~^~03/01/2007~ -~07069~^~210~^0.44^3^0.25^~1~^~A~^^^1^0.00^0.89^2^-0.66^1.53^~1, 2, 3~^~03/01/2007~ -~07069~^~211~^0.52^3^0.52^~1~^~A~^^^1^0.00^1.57^2^-1.72^2.77^~1, 2, 3~^~03/01/2007~ -~07069~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~255~^45.19^3^6.76^~1~^~A~^^^1^38.37^58.71^2^16.10^74.28^~2, 3~^~03/01/2007~ -~07069~^~269~^0.96^3^0.75^~1~^~A~^^^1^0.00^2.46^2^-2.29^4.22^~2, 3~^~03/01/2007~ -~07069~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~303~^1.56^3^0.09^~1~^~A~^^^1^1.39^1.71^2^1.15^1.95^~2, 3~^~03/01/2007~ -~07069~^~309~^2.93^3^0.36^~1~^~A~^^^1^2.23^3.45^2^1.36^4.48^~2, 3~^~03/01/2007~ -~07069~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07069~^~418~^1.52^3^0.05^~1~^~A~^^^1^1.43^1.60^2^1.30^1.73^~2, 3~^~03/01/2007~ -~07069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07070~^~203~^19.20^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07070~^~204~^9.21^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~07070~^~205~^1.55^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~07070~^~207~^1.68^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07070~^~255~^68.80^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07070~^~269~^1.12^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~07070~^~303~^1.25^4^0.21^~1~^~A~^^^^^^^^^^~01/01/2004~ -~07070~^~309~^2.32^4^0.12^~12~^~MA~^^^^^^^^^^~01/01/2004~ -~07070~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~418~^0.99^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07071~^~203~^22.58^9^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~204~^33.72^9^0.55^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~205~^1.60^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07071~^~207~^5.92^9^0.21^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~255~^36.18^9^0.80^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~303~^1.30^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~309~^4.20^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~418~^2.80^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07072~^~203~^21.07^12^0.61^~1~^~A~^^^1^13.75^23.94^2^18.82^23.31^~2, 3~^~05/01/2014~ -~07072~^~204~^31.65^12^1.54^~1~^~A~^^^1^18.43^38.93^2^25.65^37.65^~2, 3~^~05/01/2014~ -~07072~^~205~^0.72^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~207~^5.37^12^0.12^~1~^~A~^^^1^3.64^5.98^2^4.91^5.82^~2, 3~^~05/01/2014~ -~07072~^~210~^0.25^3^0.16^~1~^~A~^^^1^0.00^0.50^1^-1.84^2.33^~1, 2, 3~^~05/01/2014~ -~07072~^~211~^0.02^3^0.00^~1~^~A~^^^1^0.00^0.10^^^^~1, 2, 3~^~05/01/2014~ -~07072~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~255~^41.19^12^1.52^~1~^~A~^^^1^35.55^58.30^2^35.12^47.26^~2, 3~^~05/01/2014~ -~07072~^~269~^0.26^3^0.16^~1~^~A~^^^1^0.10^0.50^1^-1.82^2.35^~2, 3~^~05/01/2014~ -~07072~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~303~^1.36^12^0.02^~1~^~A~^^^1^1.16^1.87^3^1.28^1.43^~2, 3~^~05/01/2014~ -~07072~^~309~^2.67^12^0.08^~1~^~A~^^^1^1.74^3.18^2^2.34^2.98^~2, 3~^~05/01/2014~ -~07072~^~323~^0.64^6^6.0e-03^~1~^~A~^^^1^0.58^0.71^3^0.61^0.65^~2, 3~^~05/01/2014~ -~07072~^~341~^2.01^6^0.24^~1~^~A~^^^1^0.00^4.72^3^1.22^2.79^~2, 3~^~05/01/2014~ -~07072~^~342~^0.19^6^7.0e-03^~1~^~A~^^^1^0.12^0.30^3^0.17^0.21^~2, 3~^~04/01/2012~ -~07072~^~343~^0.01^6^4.0e-03^~1~^~A~^^^1^0.00^0.03^3^-1.0e-03^0.02^~1, 2, 3~^~04/01/2012~ -~07072~^~344~^0.08^6^7.0e-03^~1~^~A~^^^1^0.04^0.14^3^0.06^0.10^~2, 3~^~05/01/2013~ -~07072~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~346~^3.04^6^0.00^~1~^~A~^^^1^0.00^7.13^^^^~1, 2, 3~^~05/01/2014~ -~07072~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~418~^1.15^6^0.01^~1~^~A~^^^1^0.90^1.60^3^1.10^1.19^~2, 3~^~05/01/2014~ -~07072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07073~^~203~^7.66^5^0.25^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~204~^17.34^5^0.20^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~205~^11.94^0^^~4~^~NC~^^^^^^^^^^~01/01/2004~ -~07073~^~207~^2.78^5^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~255~^60.28^5^0.36^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07073~^~303~^0.79^5^0.11^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~309~^1.02^5^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~323~^1.74^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07073~^~418~^1.12^5^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07074~^~203~^11.98^3^0.21^~1~^~A~^^^1^11.54^12.22^2^11.03^12.92^~2, 3~^~03/01/2007~ -~07074~^~204~^28.23^3^1.19^~1~^~A~^^^1^26.74^30.58^2^23.11^33.35^~2, 3~^~03/01/2007~ -~07074~^~205~^0.94^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~07074~^~207~^3.11^3^0.12^~1~^~A~^^^1^2.87^3.27^2^2.58^3.63^~2, 3~^~03/01/2007~ -~07074~^~210~^0.24^3^0.05^~1~^~A~^^^1^0.14^0.34^2^-4.0e-03^0.49^~2, 3~^~03/01/2007~ -~07074~^~211~^0.70^3^0.11^~1~^~A~^^^1^0.48^0.89^2^0.18^1.21^~2, 3~^~03/01/2007~ -~07074~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~255~^56.49^3^0.26^~1~^~A~^^^1^56.19^57.03^2^55.33^57.64^~2, 3~^~03/01/2007~ -~07074~^~269~^0.94^3^0.17^~1~^~A~^^^1^0.62^1.23^2^0.18^1.70^~2, 3~^~03/01/2007~ -~07074~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~303~^0.59^3^0.02^~1~^~A~^^^1^0.55^0.62^2^0.49^0.67^~2, 3~^~03/01/2007~ -~07074~^~309~^1.31^3^0.04^~1~^~A~^^^1^1.23^1.39^2^1.11^1.51^~2, 3~^~03/01/2007~ -~07074~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07074~^~418~^0.66^3^8.0e-03^~1~^~A~^^^1^0.65^0.68^2^0.63^0.69^~2, 3~^~03/01/2007~ -~07074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07075~^~203~^12.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~204~^28.73^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~205~^2.42^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07075~^~207~^2.89^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~255~^53.97^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07075~^~303~^0.75^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~309~^1.26^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~323~^0.13^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~342~^0.08^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~418~^0.58^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07077~^~203~^13.28^52^0.09^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~204~^27.61^52^0.16^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~205~^1.92^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07077~^~207~^3.29^7^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~255~^53.91^52^0.19^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~303~^1.47^52^0.03^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~309~^1.96^7^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~418~^1.57^52^0.04^~1~^^^^^^^^^^^~09/01/1980~ -~07078~^~203~^17.45^4^^~1~^~A~^^^2^16.60^18.50^^^^~2~^~05/01/2004~ -~07078~^~204~^30.43^4^^~1~^~A~^^^2^25.60^33.80^^^^~2~^~05/01/2004~ -~07078~^~205~^3.33^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07078~^~207~^3.63^4^^~1~^~A~^^^2^2.70^4.00^^^^~2~^~05/01/2004~ -~07078~^~255~^45.18^4^^~1~^~A~^^^2^40.00^47.80^^^^~2~^~05/01/2004~ -~07078~^~269~^0.85^2^^~1~^~A~^^^1^0.40^1.30^^^^^~04/01/2007~ -~07078~^~303~^2.04^4^^~1~^~A~^^^2^1.82^2.46^^^^~2~^~05/01/2004~ -~07078~^~309~^2.56^14^0.13^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07078~^~418~^5.50^7^0.25^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07081~^~203~^14.81^18^0.54^~1~^~A~^^^1^11.50^16.88^6^13.47^16.14^~2, 3~^~03/01/2016~ -~07081~^~204~^3.77^18^0.49^~1~^~A~^^^1^1.39^6.81^6^2.58^4.96^~2, 3~^~03/01/2016~ -~07081~^~205~^2.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~207~^3.24^18^0.07^~1~^~A~^^^1^2.49^4.26^8^3.08^3.40^~2, 3~^~03/01/2016~ -~07081~^~210~^0.33^6^0.08^~1~^~A~^^^1^0.00^0.67^2^-0.03^0.70^~1, 2, 3~^~03/01/2016~ -~07081~^~211~^0.41^6^0.12^~1~^~A~^^^1^0.18^1.65^2^-0.07^0.88^~1, 2, 3~^~03/01/2016~ -~07081~^~212~^0.17^6^0.16^~1~^~A~^^^1^0.00^1.84^2^-0.55^0.89^~1, 2, 3~^~03/01/2016~ -~07081~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~255~^75.98^18^0.30^~1~^~A~^^^1^72.37^77.94^9^75.28^76.66^~2, 3~^~03/01/2016~ -~07081~^~269~^0.91^6^0.30^~1~^~A~^^^1^0.27^3.49^2^-0.23^2.04^~2, 3~^~03/01/2016~ -~07081~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~303~^0.42^18^0.02^~1~^~A~^^^1^0.32^0.58^10^0.37^0.46^~2, 3~^~03/01/2016~ -~07081~^~309~^0.94^18^0.06^~1~^~A~^^^1^0.67^1.44^7^0.79^1.07^~2, 3~^~03/01/2016~ -~07081~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07081~^~418~^0.37^3^0.02^~1~^~A~^^^1^0.33^0.40^2^0.28^0.45^~2, 3~^~05/01/2013~ -~07081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07083~^~203~^10.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~204~^19.40^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~205~^2.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07083~^~207~^2.60^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~255~^64.90^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07083~^~303~^0.88^3^0.07^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~309~^1.60^3^0.05^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07083~^~418~^1.02^3^0.02^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07088~^~203~^18.58^4^0.17^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~204~^10.50^4^0.37^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~205~^2.18^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07088~^~207~^3.98^4^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~255~^64.78^4^0.22^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~303~^2.20^4^0.22^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~309~^3.25^4^0.08^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~418~^2.35^4^0.18^~1~^^^^^^^^^^^~09/01/1980~ -~07089~^~203~^18.40^11^0.77^~1~^~A~^^^1^14.98^22.06^5^16.42^20.36^~2, 3~^~10/01/2016~ -~07089~^~204~^26.40^11^1.34^~1~^~A~^^^1^19.10^30.37^5^22.97^29.82^~2, 3~^~10/01/2016~ -~07089~^~205~^1.86^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~207~^2.76^11^0.09^~1~^~A~^^^1^2.26^3.26^5^2.51^3.00^~2, 3~^~10/01/2016~ -~07089~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~07089~^~211~^1.42^2^^~1~^~A~^^^1^1.39^1.53^^^^^~10/01/2016~ -~07089~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~07089~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~07089~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~07089~^~255~^50.58^11^1.55^~1~^~A~^^^1^45.60^57.10^5^46.61^54.55^~2, 3~^~10/01/2016~ -~07089~^~269~^1.42^2^^~1~^~A~^^^1^1.39^1.53^^^^^~10/01/2016~ -~07089~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~07089~^~303~^1.25^11^0.03^~1~^~A~^^^1^1.08^1.80^8^1.16^1.34^~2, 3~^~10/01/2016~ -~07089~^~309~^2.40^11^0.07^~1~^~A~^^^1^1.98^2.62^5^2.20^2.59^~2, 3~^~10/01/2016~ -~07089~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07089~^~418~^0.90^4^0.01^~1~^~A~^^^1^0.85^1.30^2^0.83^0.97^~2, 3~^~10/01/2016~ -~07089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07090~^~203~^15.38^6^0.49^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~204~^20.90^6^0.62^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~205~^1.58^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07090~^~207~^3.52^6^0.10^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~255~^58.62^6^0.87^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~303~^1.43^6^0.04^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~309~^2.45^6^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~418~^1.96^6^0.15^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~203~^17.27^38^0.28^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~204~^7.58^6^0.12^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~205~^4.83^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~ -~07091~^~207~^3.55^6^0.12^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~255~^66.77^38^0.56^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~303~^0.94^6^0.06^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~309~^2.70^6^0.19^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~418~^1.34^6^0.10^~1~^^^^^^^^^^^~09/01/1980~ -~07201~^~203~^11.05^124^0.05^~1~^~A~^^^2^11.00^11.10^1^10.41^11.68^~2~^~05/01/2002~ -~07201~^~204~^29.10^124^0.10^~1~^~A~^^^2^29.00^29.20^1^27.82^30.37^~2~^~05/01/2002~ -~07201~^~205~^2.45^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07201~^~207~^3.25^31^0.05^~1~^~A~^^^2^3.20^3.30^1^2.61^3.88^~2~^~05/01/2002~ -~07201~^~255~^54.15^124^0.05^~1~^~A~^^^2^54.10^54.20^1^53.51^54.78^~2~^~05/01/2002~ -~07201~^~269~^1.40^8^0.14^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07201~^~303~^1.36^30^0.07^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~309~^2.03^30^0.06^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~418~^1.43^11^0.07^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~203~^14.25^31^0.25^~1~^~A~^^^2^14.00^14.50^1^11.07^17.42^~2~^~05/01/2002~ -~07207~^~204~^29.35^31^0.85^~1~^~A~^^^2^28.50^30.20^1^18.55^40.15^~2~^~05/01/2002~ -~07207~^~205~^2.60^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07207~^~207~^3.35^21^0.05^~1~^~A~^^^2^3.30^3.40^1^2.71^3.98^~2~^~05/01/2002~ -~07207~^~255~^50.50^31^0.10^~1~^~A~^^^2^50.40^50.60^1^49.22^51.77^~2~^~05/01/2002~ -~07207~^~269~^1.20^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~303~^10.51^17^0.69^~1~^~A~^^^2^9.81^11.20^1^1.67^19.33^~2~^~05/01/2002~ -~07207~^~309~^3.40^16^0.13^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~418~^18.78^9^1.02^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07209~^~203~^19.85^32^0.05^~1~^~A~^^^2^19.80^19.90^1^19.21^20.48^~2~^~06/01/2002~ -~07209~^~204~^1.50^32^0.10^~1~^~A~^^^2^1.40^1.60^1^0.22^2.77^~2~^~06/01/2002~ -~07209~^~205~^4.30^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07209~^~207~^4.30^5^0.10^~1~^~A~^^^2^4.20^4.40^1^3.02^5.57^~2~^~06/01/2002~ -~07209~^~255~^70.40^32^0.20^~1~^~A~^^^2^70.20^70.60^1^67.85^72.94^~2~^~06/01/2002~ -~07209~^~269~^4.30^4^0.60^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07209~^~303~^1.13^4^0.17^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07209~^~309~^0.70^4^0.10^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07212~^~203~^16.30^121^0.20^~1~^~A~^^^2^16.10^16.50^1^13.75^18.84^~2~^~05/01/2002~ -~07212~^~204~^11.15^121^0.85^~1~^~A~^^^2^10.30^12.00^1^0.35^21.95^~2~^~05/01/2002~ -~07212~^~205~^3.65^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07212~^~207~^3.65^8^0.05^~1~^~A~^^^2^3.60^3.70^1^3.01^4.28^~2~^~05/01/2002~ -~07212~^~255~^65.25^121^0.05^~1~^~A~^^^2^65.20^65.30^1^64.61^65.88^~2~^~05/01/2002~ -~07212~^~269~^2.20^3^0.40^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07212~^~303~^1.30^6^0.17^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07212~^~309~^2.25^6^0.06^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~203~^25.90^47^1.50^~1~^~A~^^^2^24.40^27.40^1^6.84^44.95^~2~^~06/01/2002~ -~07230~^~204~^28.70^47^2.10^~1~^~A~^^^2^26.60^30.80^1^2.01^55.38^~2~^~06/01/2002~ -~07230~^~205~^1.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07230~^~207~^5.55^15^0.15^~1~^~A~^^^2^5.40^5.70^1^3.64^7.45^~2~^~06/01/2002~ -~07230~^~255~^38.25^47^4.65^~1~^~A~^^^2^33.60^42.90^1^-20.83^97.33^~2~^~06/01/2002~ -~07230~^~269~^0.20^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~303~^1.83^14^0.13^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07230~^~309~^3.16^14^0.22^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~418~^1.88^6^0.13^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07236~^~203~^13.50^2^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~204~^28.20^2^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~205~^1.70^0^^~9~^~MC~^^^^^^^^^^~07/01/1996~ -~07236~^~207~^3.40^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~255~^53.20^2^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~269~^0.30^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~303~^1.24^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~309~^2.04^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07241~^~203~^11.35^121^0.15^~1~^~A~^^^2^11.20^11.50^1^9.44^13.25^~2~^~06/01/2002~ -~07241~^~204~^30.26^121^1.06^~1~^~A~^^^2^29.20^31.32^1^16.78^43.73^~2~^~06/01/2002~ -~07241~^~205~^2.78^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07241~^~207~^2.82^31^0.08^~1~^~A~^^^2^2.74^2.90^1^1.81^3.83^~2~^~06/01/2002~ -~07241~^~209~^1.18^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07241~^~255~^53.22^121^0.98^~1~^~A~^^^2^52.23^54.20^1^40.70^65.72^~2~^~06/01/2002~ -~07241~^~269~^1.60^2^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07241~^~303~^1.34^31^0.14^~1~^~A~^^^2^1.20^1.49^1^-0.48^3.17^~2~^~05/01/2002~ -~07241~^~309~^2.19^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~418~^1.63^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07254~^~203~^15.94^18^0.14^~1~^~A~^^^1^14.37^17.25^6^15.57^16.30^~2, 3~^~07/01/2014~ -~07254~^~204~^16.93^18^0.20^~1~^~A~^^^1^12.42^18.00^4^16.36^17.49^~2, 3~^~07/01/2014~ -~07254~^~205~^1.89^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~07254~^~207~^3.41^18^0.13^~1~^~A~^^^1^2.42^3.95^5^3.06^3.74^~2, 3~^~07/01/2014~ -~07254~^~210~^2.35^3^^~1~^~A~^^^1^2.30^2.70^^^^~2, 3~^~07/01/2014~ -~07254~^~255~^61.83^18^0.16^~1~^~A~^^^1^60.01^66.00^8^61.45^62.20^~2, 3~^~07/01/2014~ -~07254~^~303~^1.40^18^0.01^~1~^~A~^^^1^1.24^1.87^9^1.36^1.43^~2, 3~^~07/01/2014~ -~07254~^~309~^2.54^18^0.02^~1~^~A~^^^1^2.27^2.68^6^2.47^2.59^~2, 3~^~07/01/2014~ -~07254~^~323~^0.11^6^0.01^~1~^~A~^^^1^0.04^0.22^1^0.01^0.20^~2, 3~^~07/01/2014~ -~07254~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~342~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~418~^1.19^9^0.06^~1~^~A~^^^1^0.84^1.90^2^0.92^1.45^~2, 3~^~07/01/2014~ -~07278~^~203~^30.99^219^0.00^~1~^~A~^^^2^30.99^30.99^^^^~2~^~06/01/2002~ -~07278~^~204~^11.52^181^0.00^~1~^~A~^^^2^11.52^11.52^^^^~2~^~06/01/2002~ -~07278~^~205~^3.78^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07278~^~207~^5.87^7^0.00^~1~^~A~^^^2^5.87^5.87^^^^~2~^~06/01/2002~ -~07278~^~255~^47.84^182^0.00^~1~^~A~^^^2^47.84^47.84^^^^~2~^~06/01/2002~ -~07278~^~269~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~08/01/2002~ -~07278~^~303~^2.70^7^0.00^~1~^~A~^^^2^2.70^2.70^^^^~2~^~06/01/2002~ -~07278~^~309~^4.30^7^0.00^~1~^~A~^^^2^4.30^4.30^^^^~2~^~06/01/2002~ -~07900~^~203~^8.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~204~^2.50^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07900~^~207~^1.66^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~255~^76.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07900~^~303~^2.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~309~^1.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~323~^0.09^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07900~^~418~^0.28^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07900~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07905~^~203~^12.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~204~^1.59^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~205~^11.21^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07905~^~207~^3.20^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~255~^71.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~ -~07905~^~303~^1.78^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~309~^2.92^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~07905~^~418~^1.06^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07905~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07906~^~203~^12.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~204~^25.10^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~207~^3.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~255~^55.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07906~^~303~^0.64^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~07906~^~309~^2.12^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~07906~^~323~^0.24^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07906~^~418~^0.61^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07906~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07906~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07908~^~203~^13.40^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~204~^26.60^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~205~^4.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~207~^3.70^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~255~^51.70^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07908~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07908~^~303~^0.64^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~309~^1.59^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~323~^0.42^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07908~^~418~^0.45^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07908~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07908~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07909~^~203~^15.23^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~204~^13.90^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~205~^1.35^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~207~^3.80^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~255~^65.72^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~269~^1.26^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~309~^2.20^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~323~^0.24^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07909~^~418~^0.61^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07909~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07909~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07910~^~203~^13.99^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~204~^31.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~207~^0.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~255~^53.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~303~^0.74^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~309~^2.05^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~418~^0.98^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~203~^12.38^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~204~^25.45^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~205~^5.89^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07911~^~207~^2.75^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~255~^53.53^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~269~^1.65^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~303~^8.85^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~309~^2.30^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~418~^13.46^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07912~^~203~^15.27^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~204~^16.28^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~205~^3.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~207~^3.02^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~255~^61.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~269~^0.71^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~303~^2.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~309~^6.08^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~418~^2.38^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07913~^~203~^15.01^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~ -~07913~^~204~^30.50^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07913~^~205~^15.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~07913~^~207~^5.37^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~ -~07913~^~255~^33.74^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07913~^~269~^6.21^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07913~^~303~^1.55^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~309~^3.08^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~418~^1.76^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07914~^~203~^16.13^8^0.19^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~204~^8.42^10^0.34^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~205~^2.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07914~^~207~^1.75^8^0.04^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~255~^71.60^10^0.26^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07914~^~303~^1.19^8^0.07^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07914~^~309~^1.52^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~418~^1.04^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07915~^~203~^17.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~204~^19.40^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~205~^3.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07915~^~207~^4.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~255~^55.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07915~^~303~^0.88^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~309~^1.93^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~418~^0.98^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07916~^~203~^12.07^13^0.08^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07916~^~204~^26.56^13^0.25^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07916~^~205~^1.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07916~^~207~^2.81^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07916~^~255~^56.58^13^0.23^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07916~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~303~^1.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07916~^~309~^2.11^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~418~^1.51^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07917~^~203~^12.89^13^0.07^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07917~^~204~^25.84^13^0.20^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07917~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07917~^~207~^3.03^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07917~^~255~^56.11^13^0.21^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07917~^~269~^0.11^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07917~^~303~^0.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07917~^~309~^2.25^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~418~^1.73^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~203~^19.43^13^0.12^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07918~^~204~^37.91^13^0.35^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07918~^~205~^1.82^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~207~^4.83^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07918~^~255~^36.20^13^0.38^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07918~^~269~^0.12^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07918~^~303~^2.26^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07918~^~309~^2.25^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~418~^1.73^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07919~^~203~^15.91^8^0.02^~1~^~A~^^^1^15.56^19.69^1^15.63^16.18^~2, 3~^~10/01/2016~ -~07919~^~204~^10.39^8^9.0e-03^~1~^~A~^^^1^9.37^11.88^3^10.36^10.42^~2, 3~^~10/01/2016~ -~07919~^~205~^3.18^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~207~^2.65^8^6.0e-03^~1~^~A~^^^1^2.02^3.17^1^2.57^2.73^~2, 3~^~10/01/2016~ -~07919~^~255~^67.86^8^0.02^~1~^~A~^^^1^64.69^72.06^1^67.61^68.11^~2, 3~^~10/01/2016~ -~07919~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07919~^~303~^1.34^8^2.0e-03^~1~^~A~^^^1^0.85^1.43^3^1.33^1.34^~2, 3~^~10/01/2016~ -~07919~^~309~^2.51^8^3.0e-03^~1~^~A~^^^1^1.94^3.04^2^2.49^2.52^~2, 3~^~10/01/2016~ -~07919~^~323~^0.19^0^^~4~^~BFSN~^~07958~^^^^^^^^^~04/01/2007~ -~07919~^~418~^1.28^5^0.00^~1~^~A~^^^1^0.81^1.30^^^^~2, 3~^~10/01/2016~ -~07919~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07919~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~07920~^~203~^12.69^16^0.08^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07920~^~204~^27.37^16^0.24^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07920~^~205~^1.60^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07920~^~207~^3.03^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07920~^~255~^55.31^16^0.22^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07920~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07920~^~303~^0.72^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07920~^~309~^2.25^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~418~^1.73^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07921~^~203~^29.10^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~204~^44.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~205~^0.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07921~^~207~^4.30^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~255~^21.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~269~^0.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~303~^1.86^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~309~^3.23^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~418~^1.90^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07922~^~203~^12.20^13^0.06^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07922~^~204~^26.34^13^0.29^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07922~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07922~^~207~^2.81^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07922~^~255~^56.65^13^0.27^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07922~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07922~^~303~^1.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07922~^~309~^2.47^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~418~^2.67^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07923~^~203~^19.44^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~204~^10.35^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~207~^0.88^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~255~^70.28^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~303~^0.87^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~309~^1.43^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~418~^0.34^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~203~^14.45^9^0.09^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07924~^~204~^13.53^9^0.21^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07924~^~205~^1.62^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07924~^~207~^4.51^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07924~^~255~^65.89^9^0.03^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07924~^~269~^1.57^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~ -~07924~^~303~^0.94^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~309~^2.68^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~418~^1.60^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07925~^~203~^19.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~204~^1.16^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~205~^1.54^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07925~^~207~^3.40^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~255~^74.30^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07925~^~303~^2.78^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~309~^4.26^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~418~^1.76^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07926~^~203~^21.70^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~204~^37.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~205~^1.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07926~^~207~^5.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~255~^34.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~269~^1.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~303~^1.52^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~309~^4.20^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~418~^2.80^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07927~^~203~^15.05^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~204~^8.75^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~205~^4.65^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07927~^~207~^3.05^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07927~^~255~^68.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~269~^3.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~303~^9.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~309~^2.13^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~418~^0.43^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07928~^~203~^13.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~204~^14.30^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~205~^8.10^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07928~^~207~^3.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~255~^60.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~269~^1.90^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~303~^4.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~309~^2.68^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~418~^1.60^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07929~^~203~^15.05^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~204~^8.75^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~205~^4.65^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07929~^~207~^3.05^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07929~^~255~^68.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~269~^3.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~303~^9.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07929~^~309~^2.13^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~323~^0.09^0^^~4~^~BFFN~^~07919~^^^^^^^^^~05/01/2007~ -~07929~^~418~^0.43^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~07929~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~07930~^~203~^14.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~204~^22.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~205~^1.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07930~^~207~^3.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~255~^58.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07930~^~303~^1.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07931~^~203~^14.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~204~^22.53^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~205~^4.27^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07931~^~207~^2.50^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~255~^56.71^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~303~^1.73^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~309~^2.21^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~418~^1.16^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07932~^~203~^16.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~204~^0.39^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~205~^2.25^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07932~^~207~^3.83^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~255~^76.73^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~269~^0.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~303~^0.30^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~309~^0.60^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~418~^0.07^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~203~^16.79^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~204~^0.39^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~205~^2.17^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07933~^~207~^3.94^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~255~^76.71^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~269~^0.10^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~303~^0.32^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~309~^0.30^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07934~^~203~^13.10^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~204~^17.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~205~^3.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07934~^~207~^3.40^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~255~^62.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07934~^~303~^1.24^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~203~^14.59^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~204~^7.65^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~205~^1.79^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07935~^~207~^2.99^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~255~^72.98^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~269~^0.43^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~303~^0.32^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~309~^0.65^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~342~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~418~^0.24^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07936~^~203~^13.06^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~204~^16.06^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~205~^3.45^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~207~^2.56^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~255~^64.87^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~303~^1.15^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07936~^~309~^0.73^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~418~^0.29^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07937~^~203~^11.56^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~204~^29.25^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~205~^6.66^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07937~^~207~^7.15^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~255~^45.37^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~269~^1.35^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~303~^1.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~309~^2.22^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~418~^1.08^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07938~^~203~^17.93^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07938~^~204~^2.37^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07938~^~205~^7.27^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07938~^~207~^2.49^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07938~^~255~^69.94^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07938~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07938~^~303~^0.39^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~309~^0.91^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~418~^0.38^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07939~^~203~^12.81^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~204~^23.68^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~205~^0.28^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~207~^3.35^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~255~^59.85^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2002~ -~07939~^~303~^3.70^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~309~^2.09^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~418~^0.49^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07940~^~203~^11.76^79^^~1~^~A~^^^1^11.63^11.88^^^^~2~^~06/01/2002~ -~07940~^~204~^14.96^79^^~1~^~A~^^^1^14.93^14.99^^^^~2~^~06/01/2002~ -~07940~^~205~^11.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07940~^~207~^4.03^3^0.56^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~255~^57.63^79^^~1~^~A~^^^1^57.22^58.03^^^^~2~^~06/01/2002~ -~07940~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07940~^~303~^1.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~309~^1.51^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~418~^0.68^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07941~^~203~^21.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~204~^26.40^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~205~^6.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07941~^~207~^4.90^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~255~^40.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07941~^~303~^1.51^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~309~^3.23^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~418~^1.90^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07942~^~203~^11.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~204~^28.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~205~^6.30^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07942~^~207~^2.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~255~^51.80^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~303~^3.94^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~309~^2.85^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~418~^3.20^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07943~^~203~^20.90^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~204~^0.69^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~205~^1.31^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07943~^~207~^3.60^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~255~^73.50^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07943~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~07944~^~203~^13.50^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~204~^3.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~205~^7.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07944~^~207~^3.80^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~ -~07944~^~255~^72.00^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~269~^4.00^1^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07944~^~303~^2.20^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~309~^2.10^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~418~^0.22^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07945~^~203~^11.69^12^0.14^~1~^~A~^^^1^10.81^12.38^11^11.37^11.99^~2, 3~^~04/01/2011~ -~07945~^~204~^29.36^12^0.51^~1~^~A~^^^1^25.77^32.29^11^28.23^30.47^~2, 3~^~04/01/2011~ -~07945~^~205~^2.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~07945~^~207~^2.79^12^0.02^~1~^~A~^^^1^2.63^2.88^11^2.73^2.83^~2, 3~^~04/01/2011~ -~07945~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07945~^~211~^1.05^6^0.05^~1~^~A~^^^1^0.93^1.21^5^0.91^1.18^~2, 3~^~04/01/2011~ -~07945~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07945~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07945~^~214~^0.21^6^0.01^~1~^~A~^^^1^0.18^0.28^5^0.16^0.26^~1, 2, 3~^~04/01/2011~ -~07945~^~255~^53.50^12^0.54^~1~^~A~^^^1^50.68^55.99^11^52.31^54.69^~2, 3~^~04/01/2011~ -~07945~^~269~^1.27^6^0.04^~1~^~A~^^^1^1.11^1.39^5^1.15^1.37^~2, 3~^~04/01/2011~ -~07945~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~07945~^~303~^1.22^12^0.03^~1~^~A~^^^1^1.05^1.42^11^1.13^1.30^~2, 3~^~04/01/2011~ -~07945~^~309~^2.17^12^0.07^~1~^~A~^^^1^1.88^2.50^11^2.01^2.33^~2, 3~^~04/01/2011~ -~07945~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07945~^~418~^1.44^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~07945~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~07949~^~203~^9.77^2^^~1~^~A~^^^1^9.41^10.14^1^^^^~07/01/2002~ -~07949~^~204~^24.31^2^^~1~^~A~^^^1^22.62^26.01^1^^^^~07/01/2002~ -~07949~^~205~^4.90^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07949~^~207~^3.19^2^^~1~^~A~^^^1^3.13^3.24^1^^^^~07/01/2002~ -~07949~^~255~^57.82^2^^~1~^~A~^^^1^56.36^59.28^1^^^^~07/01/2002~ -~07949~^~303~^1.22^3^0.08^~1~^~A~^^^1^1.12^1.40^2^0.84^1.60^~2, 3~^~07/01/2002~ -~07949~^~309~^1.08^3^0.01^~1~^~A~^^^1^1.05^1.10^2^1.01^1.15^~2, 3~^~07/01/2002~ -~07949~^~323~^0.18^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07949~^~418~^1.57^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~203~^10.26^2^^~1~^~A~^^^1^10.21^10.32^1^^^^~07/01/2002~ -~07950~^~204~^25.76^2^^~1~^~A~^^^1^25.60^25.92^1^^^^~07/01/2002~ -~07950~^~205~^4.17^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~07950~^~207~^3.50^2^^~1~^~A~^^^1^3.45^3.56^1^^^^~07/01/2002~ -~07950~^~255~^56.31^2^^~1~^~A~^^^1^56.05^56.56^1^^^^~07/01/2002~ -~07950~^~303~^1.09^2^^~1~^~A~^^^1^1.05^1.12^1^^^^~07/01/2002~ -~07950~^~309~^1.20^2^^~1~^~A~^^^1^1.15^1.25^1^^^^~07/01/2002~ -~07950~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~07950~^~418~^1.57^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07951~^~203~^8.06^4^^~6~^~JA~^^^2^7.20^8.80^^^^~2~^~03/01/2003~ -~07951~^~204~^13.87^4^^~6~^~JA~^^^2^13.10^14.80^^^^~2~^~03/01/2003~ -~07951~^~205~^14.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~207~^1.53^3^^~1~^~A~^^^1^1.50^1.60^^^^~2~^~10/01/2002~ -~07951~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07951~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07951~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07951~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07951~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~07951~^~255~^62.47^3^^~6~^~JA~^^^2^61.30^63.40^^^^~2~^~03/01/2003~ -~07951~^~269~^0.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07951~^~303~^1.89^4^^~6~^~JA~^^^2^1.20^3.21^^^^~2~^~03/01/2003~ -~07951~^~309~^1.06^3^^~1~^~A~^^^1^0.79^1.44^^^^~2~^~10/01/2002~ -~07951~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~07951~^~418~^0.31^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07951~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~07952~^~203~^9.88^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~204~^26.18^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~205~^5.65^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07952~^~207~^3.03^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~255~^55.25^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~303~^1.16^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~309~^1.28^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~323~^0.41^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~342~^0.31^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~344~^0.06^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~418~^0.79^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07952~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07953~^~203~^15.12^14^0.17^~1~^~A~^^^1^13.88^17.94^7^14.71^15.52^~2, 3~^~05/01/2014~ -~07953~^~204~^41.66^14^0.45^~1~^~A~^^^1^30.89^44.63^9^40.62^42.70^~2, 3~^~05/01/2014~ -~07953~^~205~^0.62^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07953~^~207~^3.09^14^0.03^~1~^~A~^^^1^2.38^3.38^6^3.01^3.16^~2, 3~^~05/01/2014~ -~07953~^~210~^0.36^3^^~1~^~A~^^^1^0.00^0.50^^^^~1, 2, 3~^~05/01/2014~ -~07953~^~211~^0.26^3^^~1~^~A~^^^1^0.20^0.50^^^^~2, 3~^~05/01/2014~ -~07953~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~255~^39.64^14^0.34^~1~^~A~^^^1^37.36^47.25^9^38.85^40.42^~2, 3~^~05/01/2014~ -~07953~^~269~^0.62^3^^~1~^~A~^^^1^0.20^1.00^^^^~2, 3~^~05/01/2014~ -~07953~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~303~^0.95^14^0.03^~1~^~A~^^^1^0.75^1.46^10^0.87^1.03^~2, 3~^~05/01/2014~ -~07953~^~309~^1.59^14^0.04^~1~^~A~^^^1^1.24^2.56^8^1.48^1.69^~2, 3~^~05/01/2014~ -~07953~^~323~^0.88^6^0.16^~1~^~A~^^^1^0.63^1.35^1^-1.08^2.85^~2, 3~^~04/01/2013~ -~07953~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07953~^~342~^0.17^6^0.01^~1~^~A~^^^1^0.08^0.23^2^0.11^0.22^~2, 3~^~05/01/2014~ -~07953~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07953~^~344~^0.04^6^0.01^~1~^~A~^^^1^0.00^0.09^1^-0.13^0.21^~1, 2, 3~^~05/01/2014~ -~07953~^~345~^0.02^6^0.02^~1~^~A~^^^1^0.00^0.07^1^-0.25^0.30^~1, 2, 3~^~05/01/2014~ -~07953~^~346~^0.31^6^0.28^~1~^~A~^^^1^0.00^2.88^1^-3.28^3.90^~1, 2, 3~^~05/01/2014~ -~07953~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~07953~^~418~^0.76^9^0.01^~1~^~A~^^^1^0.65^1.20^6^0.71^0.80^~2, 3~^~05/01/2014~ -~07953~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07953~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07954~^~203~^12.90^6^0.50^~1~^~A~^^^1^10.88^15.19^2^10.85^14.94^~2, 3~^~11/01/2016~ -~07954~^~204~^28.22^6^0.91^~1~^~A~^^^1^25.36^32.51^2^24.40^32.02^~2, 3~^~11/01/2016~ -~07954~^~205~^4.61^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~207~^3.07^6^0.03^~1~^~A~^^^1^2.64^3.36^3^2.95^3.17^~2, 3~^~11/01/2016~ -~07954~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07954~^~211~^1.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07954~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07954~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07954~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07954~^~255~^51.21^6^1.41^~1~^~A~^^^1^49.79^52.63^1^33.18^69.23^~4~^~11/01/2016~ -~07954~^~269~^1.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07954~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07954~^~303~^1.45^6^0.08^~1~^~A~^^^1^1.03^2.07^4^1.20^1.69^~2, 3~^~11/01/2016~ -~07954~^~309~^2.15^6^0.14^~1~^~A~^^^1^1.52^2.37^3^1.71^2.58^~2, 3~^~11/01/2016~ -~07954~^~323~^0.49^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07954~^~418~^1.14^5^0.06^~1~^~A~^^^1^0.83^1.20^2^0.87^1.40^~2, 3~^~11/01/2016~ -~07954~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07954~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07955~^~203~^18.79^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~204~^8.08^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~205~^0.47^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07955~^~207~^2.24^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~255~^70.42^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~303~^1.17^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~309~^3.06^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~323~^0.13^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~342~^0.13^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~344~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~203~^18.21^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~204~^27.98^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~205~^0.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07956~^~207~^2.34^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~255~^51.12^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~303~^1.57^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~309~^4.38^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~323~^0.24^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~342~^0.08^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~344~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~418~^2.01^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07956~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~07957~^~203~^12.05^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~204~^30.64^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~205~^3.63^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~07957~^~207~^3.01^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~255~^50.68^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~303~^1.30^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~309~^1.34^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~323~^0.52^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~342~^0.10^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~418~^0.58^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~203~^23.89^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~204~^10.44^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~207~^2.00^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07958~^~255~^65.06^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~303~^1.49^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~309~^3.88^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~323~^0.18^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~342~^0.16^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~344~^0.12^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~418~^1.23^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07959~^~203~^11.33^3^0.55^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~204~^22.73^3^1.31^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~205~^5.61^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~07959~^~207~^3.93^3^0.16^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~255~^56.42^3^2.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~303~^1.25^3^0.06^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~309~^1.22^3^0.08^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~323~^0.25^3^0.09^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~341~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~342~^0.21^3^0.09^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~344~^0.07^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~418~^0.59^3^0.05^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07959~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~07960~^~203~^10.31^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~204~^30.61^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~205~^4.19^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~07960~^~207~^4.04^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~255~^50.85^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~303~^1.12^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~309~^1.04^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~323~^0.64^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~342~^0.29^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~344~^0.10^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~418~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07961~^~203~^17.40^11^0.13^~1~^~A~^^^1^17.00^18.30^7^17.08^17.71^~2, 3~^~05/01/2013~ -~07961~^~204~^1.86^11^0.05^~1~^~A~^^^1^0.70^3.90^5^1.72^2.00^~2, 3~^~05/01/2013~ -~07961~^~205~^2.92^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~207~^3.34^11^0.03^~1~^~A~^^^1^2.90^3.79^5^3.26^3.42^~2, 3~^~05/01/2013~ -~07961~^~210~^0.44^11^0.06^~1~^~A~^^^1^0.00^1.30^4^0.26^0.60^~1, 2, 3~^~05/01/2013~ -~07961~^~211~^0.31^11^9.0e-03^~1~^~A~^^^1^0.00^0.70^3^0.28^0.33^~1, 2, 3~^~05/01/2013~ -~07961~^~212~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~255~^74.47^11^0.10^~1~^~A~^^^1^73.60^75.20^4^74.17^74.76^~2, 3~^~05/01/2013~ -~07961~^~269~^0.75^11^0.06^~1~^~A~^^^1^0.30^1.30^4^0.57^0.91^~2, 3~^~05/01/2013~ -~07961~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~303~^0.39^11^0.01^~1~^~A~^^^1^0.31^0.49^7^0.35^0.41^~2, 3~^~05/01/2013~ -~07961~^~309~^0.51^11^4.0e-03^~1~^~A~^^^1^0.48^0.54^7^0.50^0.51^~2, 3~^~05/01/2013~ -~07961~^~323~^0.32^6^0.01^~1~^~A~^^^1^0.20^0.42^2^0.28^0.36^~2, 3~^~05/01/2012~ -~07961~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.01^2^3.0e-03^5.0e-03^~1, 2, 3~^~05/01/2012~ -~07961~^~342~^0.08^6^1.0e-03^~1~^~A~^^^1^0.05^0.10^2^0.07^0.08^~2, 3~^~05/01/2012~ -~07961~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~344~^0.01^6^1.0e-03^~1~^~A~^^^1^0.01^0.01^2^7.0e-03^0.01^~2, 3~^~05/01/2012~ -~07961~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~346~^0.02^6^0.00^~1~^~A~^^^1^0.00^0.06^^^^~1, 2, 3~^~05/01/2013~ -~07961~^~347~^0.00^6^3.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.01^~1, 2, 3~^~05/01/2012~ -~07961~^~418~^0.14^6^0.01^~1~^~A~^^^1^0.05^0.24^2^0.09^0.18^~2, 3~^~05/01/2013~ -~07961~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07961~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~07962~^~203~^9.72^18^0.16^~1~^~A~^^^1^8.22^11.74^5^9.29^10.14^~2, 3~^~09/01/2015~ -~07962~^~204~^24.18^18^0.33^~1~^~A~^^^1^21.14^29.74^6^23.35^25.00^~2, 3~^~09/01/2015~ -~07962~^~205~^5.02^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~207~^3.50^18^0.05^~1~^~A~^^^1^2.78^3.92^8^3.37^3.62^~2, 3~^~09/01/2015~ -~07962~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~211~^2.45^3^^~1~^~A~^^^1^1.00^3.20^^^^~2, 3~^~09/01/2015~ -~07962~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~214~^0.30^3^^~1~^~A~^^^1^0.00^1.00^^^^~1, 2, 3~^~05/01/2013~ -~07962~^~255~^57.58^18^0.37^~1~^~A~^^^1^50.57^61.18^5^56.64^58.51^~2, 3~^~09/01/2015~ -~07962~^~269~^2.75^3^^~1~^~A~^^^1^1.60^3.20^^^^~2, 3~^~09/01/2015~ -~07962~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~303~^1.04^18^0.02^~1~^~A~^^^1^0.92^1.33^8^0.99^1.09^~2, 3~^~09/01/2015~ -~07962~^~309~^1.14^18^0.03^~1~^~A~^^^1^0.87^1.47^6^1.05^1.23^~2, 3~^~09/01/2015~ -~07962~^~323~^0.44^6^0.04^~1~^~A~^^^1^0.25^0.72^2^0.20^0.68^~2, 3~^~09/01/2015~ -~07962~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~342~^0.21^6^0.01^~1~^~A~^^^1^0.12^0.47^1^0.12^0.29^~2, 3~^~03/01/2013~ -~07962~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~344~^0.02^6^0.00^~1~^~A~^^^1^0.00^0.10^1^0.01^0.02^~1, 2, 3~^~03/01/2013~ -~07962~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~346~^0.03^6^2.0e-03^~1~^~A~^^^1^0.00^0.10^2^0.02^0.04^~1, 2, 3~^~03/01/2013~ -~07962~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~418~^0.71^9^0.02^~1~^~A~^^^1^0.57^1.00^3^0.61^0.79^~2, 3~^~03/01/2013~ -~07962~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07962~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~203~^10.31^18^0.17^~1~^~A~^^^1^8.91^12.44^5^9.87^10.74^~2, 3~^~04/01/2013~ -~07963~^~204~^26.28^18^0.40^~1~^~A~^^^1^23.20^31.43^6^25.28^27.27^~2, 3~^~04/01/2013~ -~07963~^~205~^4.96^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~207~^3.29^18^0.06^~1~^~A~^^^1^2.47^3.68^8^3.15^3.43^~2, 3~^~03/01/2013~ -~07963~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~211~^2.41^3^^~1~^~A~^^^1^0.90^3.20^^^^~2, 3~^~03/01/2013~ -~07963~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~214~^0.29^3^^~1~^~A~^^^1^0.00^1.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~255~^55.16^18^0.44^~1~^~A~^^^1^49.24^58.86^6^54.05^56.27^~2, 3~^~04/01/2013~ -~07963~^~269~^2.70^3^^~1~^~A~^^^1^1.40^3.20^^^^~2, 3~^~04/01/2013~ -~07963~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~303~^1.12^18^0.02^~1~^~A~^^^1^0.99^1.38^6^1.06^1.17^~2, 3~^~03/01/2013~ -~07963~^~309~^1.25^18^0.04^~1~^~A~^^^1^0.95^1.94^7^1.14^1.35^~2, 3~^~03/01/2013~ -~07963~^~323~^0.45^6^0.04^~1~^~A~^^^1^0.19^0.77^2^0.26^0.63^~2, 3~^~03/01/2013~ -~07963~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~342~^0.18^6^0.01^~1~^~A~^^^1^0.12^0.34^2^0.10^0.26^~2, 3~^~03/01/2013~ -~07963~^~343~^0.01^6^7.0e-03^~1~^~A~^^^1^0.00^0.06^1^-0.07^0.09^~1, 2, 3~^~03/01/2013~ -~07963~^~344~^0.02^6^0.00^~1~^~A~^^^1^0.00^0.09^1^0.01^0.02^~1, 2, 3~^~03/01/2013~ -~07963~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~346~^0.02^6^9.0e-03^~1~^~A~^^^1^0.00^0.10^1^-0.09^0.13^~1, 2, 3~^~03/01/2013~ -~07963~^~347~^0.01^6^0.01^~1~^~A~^^^1^0.00^0.10^1^-0.12^0.15^~1, 2, 3~^~03/01/2013~ -~07963~^~418~^0.69^9^0.04^~1~^~A~^^^1^0.52^1.00^2^0.53^0.84^~2, 3~^~03/01/2013~ -~07963~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07963~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~203~^10.67^18^0.16^~1~^~A~^^^1^9.29^12.57^5^10.25^11.07^~2, 3~^~03/01/2013~ -~07964~^~204~^26.43^18^0.34^~1~^~A~^^^1^22.65^33.53^6^25.60^27.26^~2, 3~^~03/01/2013~ -~07964~^~205~^5.24^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~207~^3.75^18^0.07^~1~^~A~^^^1^1.45^4.24^11^3.57^3.92^~2, 3~^~03/01/2013~ -~07964~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~211~^2.55^3^^~1~^~A~^^^1^0.90^3.40^^^^~2, 3~^~03/01/2013~ -~07964~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~214~^0.30^3^^~1~^~A~^^^1^0.00^1.10^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~255~^53.90^18^0.54^~1~^~A~^^^1^47.21^58.44^5^52.50^55.30^~2, 3~^~03/01/2013~ -~07964~^~269~^2.85^3^^~1~^~A~^^^1^1.40^3.40^^^^~2, 3~^~03/01/2013~ -~07964~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~303~^1.15^18^0.01^~1~^~A~^^^1^1.02^1.47^8^1.11^1.18^~2, 3~^~03/01/2013~ -~07964~^~309~^1.27^18^0.04^~1~^~A~^^^1^0.94^1.60^5^1.16^1.37^~2, 3~^~03/01/2013~ -~07964~^~323~^0.45^6^0.11^~1~^~A~^^^1^0.21^0.69^1^-0.66^1.56^~2, 3~^~03/01/2013~ -~07964~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~342~^0.21^6^0.02^~1~^~A~^^^1^0.14^0.39^2^0.04^0.37^~2, 3~^~03/01/2013~ -~07964~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~344~^0.05^6^6.0e-03^~1~^~A~^^^1^0.00^0.13^2^0.02^0.08^~1, 2, 3~^~03/01/2013~ -~07964~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~346~^0.07^6^3.0e-03^~1~^~A~^^^1^0.06^0.09^1^0.03^0.10^~2, 3~^~03/01/2013~ -~07964~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~418~^0.67^9^0.03^~1~^~A~^^^1^0.53^1.00^3^0.57^0.77^~2, 3~^~03/01/2013~ -~07964~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07964~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~07965~^~203~^16.75^4^0.16^~1~^~A~^^^1^16.44^17.13^3^16.21^17.28^~2, 3~^~04/01/2013~ -~07965~^~204~^16.55^4^0.49^~1~^~A~^^^1^15.85^18.02^3^14.97^18.13^~2, 3~^~04/01/2013~ -~07965~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~207~^2.28^4^0.04^~1~^~A~^^^1^2.15^2.36^3^2.13^2.42^~2, 3~^~04/01/2013~ -~07965~^~255~^64.21^4^0.58^~1~^~A~^^^1^62.71^65.43^3^62.36^66.06^~2, 3~^~04/01/2013~ -~07965~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~303~^1.46^4^0.03^~1~^~A~^^^1^1.40^1.55^3^1.35^1.56^~2, 3~^~04/01/2013~ -~07965~^~309~^2.42^4^0.03^~1~^~A~^^^1^2.34^2.50^3^2.30^2.54^~2, 3~^~04/01/2013~ -~07965~^~323~^0.99^3^0.03^~1~^~A~^^^1^0.95^1.07^2^0.83^1.15^~2, 3~^~04/01/2013~ -~07965~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~342~^0.08^3^6.0e-03^~1~^~A~^^^1^0.07^0.09^2^0.05^0.10^~2, 3~^~04/01/2013~ -~07965~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~04/01/2013~ -~07965~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~346~^0.06^3^1.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.05^0.06^~2, 3~^~04/01/2013~ -~07965~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~418~^1.05^4^0.06^~1~^~A~^^^1^0.90^1.20^3^0.84^1.25^~2, 3~^~04/01/2013~ -~07965~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07965~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~203~^20.94^4^0.29^~1~^~A~^^^1^20.44^21.75^3^19.99^21.88^~2, 3~^~04/01/2013~ -~07966~^~204~^20.32^4^0.85^~1~^~A~^^^1^18.82^22.49^3^17.59^23.03^~2, 3~^~04/01/2013~ -~07966~^~205~^0.15^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~207~^2.72^4^0.03^~1~^~A~^^^1^2.64^2.79^3^2.62^2.81^~2, 3~^~04/01/2013~ -~07966~^~255~^55.88^4^1.02^~1~^~A~^^^1^53.53^58.07^3^52.60^59.15^~2, 3~^~04/01/2013~ -~07966~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~303~^1.91^4^0.09^~1~^~A~^^^1^1.72^2.14^3^1.62^2.19^~2, 3~^~04/01/2013~ -~07966~^~309~^3.14^4^0.05^~1~^~A~^^^1^3.02^3.27^3^2.96^3.32^~2, 3~^~04/01/2013~ -~07966~^~323~^1.22^3^0.02^~1~^~A~^^^1^1.18^1.26^2^1.12^1.32^~2, 3~^~04/01/2013~ -~07966~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~342~^0.10^3^0.01^~1~^~A~^^^1^0.08^0.13^2^0.04^0.15^~2, 3~^~04/01/2013~ -~07966~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.06^2^-0.04^0.10^~1, 2, 3~^~04/01/2013~ -~07966~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~346~^0.10^3^6.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.07^0.12^~2, 3~^~04/01/2013~ -~07966~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~418~^1.16^4^0.09^~1~^~A~^^^1^0.94^1.40^3^0.85^1.46^~2, 3~^~04/01/2013~ -~07966~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07966~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~203~^13.46^14^0.21^~1~^~A~^^^1^11.81^15.38^5^12.91^14.02^~2, 3~^~04/01/2013~ -~07967~^~204~^37.25^14^0.70^~1~^~A~^^^1^29.28^40.87^4^35.36^39.14^~2, 3~^~04/01/2013~ -~07967~^~205~^0.69^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~207~^2.63^14^0.05^~1~^~A~^^^1^2.15^3.03^5^2.48^2.77^~2, 3~^~04/01/2013~ -~07967~^~210~^0.27^3^^~1~^~A~^^^1^0.00^0.40^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~211~^0.26^3^^~1~^~A~^^^1^0.20^0.30^^^^~2, 3~^~04/01/2013~ -~07967~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~255~^45.96^14^0.43^~1~^~A~^^^1^43.56^51.21^5^44.81^47.10^~2, 3~^~04/01/2013~ -~07967~^~269~^0.53^3^^~1~^~A~^^^1^0.30^0.70^^^^~2, 3~^~04/01/2013~ -~07967~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~303~^0.92^14^0.04^~1~^~A~^^^1^0.70^1.18^8^0.82^1.01^~2, 3~^~04/01/2013~ -~07967~^~309~^1.45^14^0.04^~1~^~A~^^^1^1.10^2.15^6^1.33^1.55^~2, 3~^~04/01/2013~ -~07967~^~323~^0.68^6^0.03^~1~^~A~^^^1^0.46^0.88^2^0.55^0.81^~2, 3~^~04/01/2013~ -~07967~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~342~^0.16^6^9.0e-03^~1~^~A~^^^1^0.13^0.19^2^0.12^0.20^~2, 3~^~04/01/2013~ -~07967~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~344~^0.02^6^3.0e-03^~1~^~A~^^^1^0.00^0.06^1^-0.01^0.05^~1, 2, 3~^~04/01/2013~ -~07967~^~345~^0.02^6^5.0e-03^~1~^~A~^^^1^0.00^0.05^1^-0.02^0.07^~1, 2, 3~^~04/01/2013~ -~07967~^~346~^0.93^6^9.0e-03^~1~^~A~^^^1^0.00^2.50^1^0.81^1.03^~1, 2, 3~^~04/01/2013~ -~07967~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~418~^0.76^9^0.02^~1~^~A~^^^1^0.64^0.91^5^0.70^0.81^~2, 3~^~04/01/2013~ -~07967~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07967~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~203~^12.45^15^0.26^~1~^~A~^^^1^11.23^14.77^14^11.88^13.02^~2, 3~^~04/01/2013~ -~07968~^~204~^29.68^15^1.03^~1~^~A~^^^1^24.27^35.12^14^27.46^31.89^~2, 3~^~04/01/2013~ -~07968~^~205~^5.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~207~^3.46^15^0.11^~1~^~A~^^^1^2.97^4.13^14^3.21^3.69^~2, 3~^~04/01/2013~ -~07968~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~211~^1.72^6^0.18^~1~^~A~^^^1^1.30^2.40^5^1.25^2.18^~2, 3~^~04/01/2013~ -~07968~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~214~^0.67^6^0.22^~1~^~A~^^^1^0.07^1.40^5^0.08^1.26^~1, 2, 3~^~04/01/2013~ -~07968~^~255~^49.38^15^0.63^~1~^~A~^^^1^46.12^54.89^14^48.01^50.75^~2, 3~^~04/01/2013~ -~07968~^~269~^2.39^6^0.39^~1~^~A~^^^1^1.37^3.60^5^1.38^3.40^~2, 3~^~04/01/2013~ -~07968~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~303~^0.99^15^0.05^~1~^~A~^^^1^0.72^1.55^14^0.87^1.11^~2, 3~^~04/01/2013~ -~07968~^~309~^1.53^15^0.05^~1~^~A~^^^1^1.26^1.90^14^1.41^1.64^~2, 3~^~04/01/2013~ -~07968~^~323~^0.38^7^0.02^~1~^~A~^^^1^0.29^0.46^6^0.31^0.45^~2, 3~^~04/01/2013~ -~07968~^~341~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~342~^0.33^7^0.04^~1~^~A~^^^1^0.16^0.49^6^0.22^0.44^~2, 3~^~04/01/2013~ -~07968~^~343~^0.01^7^7.0e-03^~1~^~A~^^^1^0.00^0.05^6^-0.01^0.02^~1, 2, 3~^~04/01/2013~ -~07968~^~344~^0.04^7^7.0e-03^~1~^~A~^^^1^0.00^0.06^6^0.02^0.05^~1, 2, 3~^~04/01/2013~ -~07968~^~345~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~346~^0.04^7^0.01^~1~^~A~^^^1^0.00^0.11^6^-1.0e-03^0.07^~1, 2, 3~^~04/01/2013~ -~07968~^~347~^0.01^7^0.01^~1~^~A~^^^1^0.00^0.07^6^-0.01^0.03^~1, 2, 3~^~04/01/2013~ -~07968~^~418~^0.72^9^0.02^~1~^~A~^^^1^0.54^0.81^8^0.65^0.78^~2, 3~^~04/01/2013~ -~07968~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07968~^~578~^0.00^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~203~^12.36^15^0.23^~1~^~A~^^^1^11.26^14.19^14^11.85^12.86^~2, 3~^~04/01/2013~ -~07969~^~204~^29.43^15^0.97^~1~^~A~^^^1^23.83^34.86^14^27.34^31.51^~2, 3~^~04/01/2013~ -~07969~^~205~^4.78^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~207~^3.45^15^0.11^~1~^~A~^^^1^2.94^4.15^14^3.21^3.69^~2, 3~^~04/01/2013~ -~07969~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~211~^1.78^6^0.18^~1~^~A~^^^1^1.30^2.60^5^1.31^2.25^~2, 3~^~04/01/2013~ -~07969~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~214~^0.60^6^0.11^~1~^~A~^^^1^0.07^0.80^5^0.29^0.89^~1, 2, 3~^~04/01/2013~ -~07969~^~255~^49.98^15^0.55^~1~^~A~^^^1^46.73^55.72^14^48.78^51.17^~2, 3~^~04/01/2013~ -~07969~^~269~^2.38^6^0.24^~1~^~A~^^^1^1.57^3.40^5^1.74^3.01^~2, 3~^~04/01/2013~ -~07969~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~303~^0.93^15^0.05^~1~^~A~^^^1^0.67^1.27^14^0.82^1.03^~2, 3~^~04/01/2013~ -~07969~^~309~^1.55^15^0.05^~1~^~A~^^^1^1.25^1.91^14^1.42^1.66^~2, 3~^~04/01/2013~ -~07969~^~323~^0.39^7^0.01^~1~^~A~^^^1^0.34^0.47^6^0.34^0.43^~2, 3~^~04/01/2013~ -~07969~^~341~^0.06^7^0.05^~1~^~A~^^^1^0.00^0.39^6^-0.08^0.19^~1, 2, 3~^~04/01/2013~ -~07969~^~342~^0.24^7^0.06^~1~^~A~^^^1^0.00^0.42^6^0.08^0.38^~1, 2, 3~^~04/01/2013~ -~07969~^~343~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~344~^0.01^7^9.0e-03^~1~^~A~^^^1^0.00^0.06^6^-9.0e-03^0.03^~1, 2, 3~^~04/01/2013~ -~07969~^~345~^0.01^7^0.01^~1~^~A~^^^1^0.00^0.06^6^-9.0e-03^0.03^~1, 2, 3~^~04/01/2013~ -~07969~^~346~^0.02^7^0.01^~1~^~A~^^^1^0.00^0.08^6^-0.01^0.05^~1, 2, 3~^~04/01/2013~ -~07969~^~347~^0.01^7^0.01^~1~^~A~^^^1^0.00^0.10^6^-0.02^0.05^~1, 2, 3~^~04/01/2013~ -~07969~^~418~^0.72^9^0.02^~1~^~A~^^^1^0.55^0.81^8^0.65^0.78^~2, 3~^~04/01/2013~ -~07969~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07969~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~203~^10.84^15^0.06^~1~^~A~^^^1^10.01^13.24^8^10.67^10.99^~2, 3~^~05/01/2014~ -~07970~^~204~^29.63^15^0.32^~1~^~A~^^^1^21.44^32.52^8^28.88^30.37^~2, 3~^~05/01/2014~ -~07970~^~205~^3.72^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~207~^3.00^15^0.02^~1~^~A~^^^1^2.76^4.18^7^2.93^3.06^~2, 3~^~05/01/2014~ -~07970~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~211~^1.60^6^2.0e-03^~1~^~A~^^^1^1.30^2.20^1^1.57^1.62^~2, 3~^~05/01/2014~ -~07970~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~214~^0.45^6^0.00^~1~^~A~^^^1^0.07^1.20^1^0.44^0.44^~1, 2, 3~^~05/01/2014~ -~07970~^~255~^52.82^15^0.27^~1~^~A~^^^1^50.56^57.85^8^52.18^53.46^~2, 3~^~05/01/2014~ -~07970~^~269~^2.05^6^2.0e-03^~1~^~A~^^^1^1.37^3.40^1^2.01^2.07^~2, 3~^~04/01/2013~ -~07970~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~303~^0.75^15^0.01^~1~^~A~^^^1^0.65^1.29^7^0.71^0.79^~2, 3~^~05/01/2014~ -~07970~^~309~^1.29^15^0.02^~1~^~A~^^^1^1.07^1.73^8^1.23^1.34^~2, 3~^~05/01/2014~ -~07970~^~323~^0.42^7^0.04^~1~^~A~^^^1^0.29^0.50^1^-0.14^0.98^~2, 3~^~05/01/2014~ -~07970~^~341~^0.04^7^0.00^~1~^~A~^^^1^0.00^0.32^^^^~1, 2, 3~^~05/01/2014~ -~07970~^~342~^0.37^7^0.01^~1~^~A~^^^1^0.00^0.59^1^0.20^0.52^~1, 2, 3~^~05/01/2014~ -~07970~^~343~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~344~^0.01^7^0.00^~1~^~A~^^^1^0.00^0.05^^^^~1, 2, 3~^~05/01/2014~ -~07970~^~345~^0.05^7^4.0e-03^~1~^~A~^^^1^0.00^0.08^1^0.00^0.10^~1, 2, 3~^~05/01/2014~ -~07970~^~346~^0.01^7^0.00^~1~^~A~^^^1^0.00^0.08^^^^~1, 2, 3~^~05/01/2014~ -~07970~^~347~^0.13^7^1.0e-03^~1~^~A~^^^1^0.00^1.14^1^0.11^0.14^~1, 2, 3~^~05/01/2014~ -~07970~^~418~^0.68^9^0.01^~1~^~A~^^^1^0.62^0.81^2^0.63^0.72^~2, 3~^~05/01/2014~ -~07970~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07970~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~203~^10.34^18^0.07^~1~^~A~^^^1^9.45^12.90^4^10.13^10.54^~2, 3~^~05/01/2014~ -~07971~^~204~^23.77^18^0.13^~1~^~A~^^^1^20.00^27.80^9^23.46^24.07^~2, 3~^~05/01/2014~ -~07971~^~205~^6.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~207~^3.65^18^0.11^~1~^~A~^^^1^2.94^4.23^1^2.34^4.96^~2, 3~^~05/01/2014~ -~07971~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~211~^1.20^3^^~1~^~A~^^^1^0.80^1.60^^^^~2, 3~^~05/01/2014~ -~07971~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~214~^0.77^3^^~1~^~A~^^^1^0.60^0.90^^^^~2, 3~^~05/01/2014~ -~07971~^~255~^55.93^18^0.19^~1~^~A~^^^1^54.20^59.40^2^55.21^56.63^~2, 3~^~05/01/2014~ -~07971~^~269~^1.97^3^^~1~^~A~^^^1^1.40^2.40^^^^~2, 3~^~05/01/2014~ -~07971~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~303~^1.24^18^0.07^~1~^~A~^^^1^1.03^2.20^1^0.70^1.76^~2, 3~^~05/01/2014~ -~07971~^~309~^1.06^18^0.02^~1~^~A~^^^1^0.89^1.28^1^0.80^1.32^~2, 3~^~05/01/2014~ -~07971~^~323~^0.59^6^0.02^~1~^~A~^^^1^0.43^0.82^2^0.43^0.74^~2, 3~^~05/01/2014~ -~07971~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~342~^0.31^6^6.0e-03^~1~^~A~^^^1^0.12^0.47^1^0.25^0.36^~2, 3~^~05/01/2014~ -~07971~^~343~^0.00^6^3.0e-03^~1~^~A~^^^1^0.00^0.02^1^-0.03^0.03^~1, 2, 3~^~04/01/2013~ -~07971~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~418~^0.47^9^5.0e-03^~1~^~A~^^^1^0.38^0.98^3^0.45^0.48^~2, 3~^~05/01/2014~ -~07971~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07971~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~07972~^~203~^14.40^15^0.14^~1~^~A~^^^1^13.38^17.13^8^14.05^14.73^~2, 3~^~06/01/2014~ -~07972~^~204~^22.21^15^0.51^~1~^~A~^^^1^15.05^28.60^6^20.96^23.45^~2, 3~^~06/01/2014~ -~07972~^~205~^8.06^0^^~4~^~NR~^^^^^^^^^^~01/01/2015~ -~07972~^~207~^2.64^15^0.04^~1~^~A~^^^1^1.88^3.04^7^2.54^2.73^~2, 3~^~06/01/2014~ -~07972~^~209~^2.25^3^^~1~^~A~^^^1^2.10^3.10^^^^~2, 3~^~06/01/2014~ -~07972~^~210~^0.48^3^^~1~^~A~^^^1^0.20^0.90^^^^~2, 3~^~06/01/2014~ -~07972~^~211~^1.61^3^^~1~^~A~^^^1^0.20^2.41^^^^~2, 3~^~06/01/2014~ -~07972~^~212~^0.21^3^^~1~^~A~^^^1^0.10^0.27^^^^~2, 3~^~06/01/2014~ -~07972~^~213~^0.87^3^^~1~^~A~^^^1^0.10^1.31^^^^~2, 3~^~06/01/2014~ -~07972~^~214~^0.27^3^^~1~^~A~^^^1^0.20^0.31^^^^~2, 3~^~06/01/2014~ -~07972~^~255~^53.67^15^0.49^~1~^~A~^^^1^48.32^61.06^6^52.46^54.88^~2, 3~^~06/01/2014~ -~07972~^~269~^3.47^3^^~1~^~A~^^^1^1.10^4.55^^^^~2, 3~^~06/01/2014~ -~07972~^~287~^0.04^3^^~1~^~A~^^^1^0.00^0.10^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~303~^1.77^15^0.04^~1~^~A~^^^1^1.14^2.24^7^1.65^1.87^~2, 3~^~06/01/2014~ -~07972~^~309~^1.66^15^0.03^~1~^~A~^^^1^1.18^3.88^3^1.54^1.78^~2, 3~^~06/01/2014~ -~07972~^~323~^0.42^6^0.03^~1~^~A~^^^1^0.26^0.63^2^0.20^0.62^~2, 3~^~06/01/2014~ -~07972~^~341~^0.15^6^0.01^~1~^~A~^^^1^0.00^0.24^2^0.10^0.20^~1, 2, 3~^~06/01/2014~ -~07972~^~342~^0.25^6^0.01^~1~^~A~^^^1^0.00^0.37^2^0.17^0.33^~1, 2, 3~^~06/01/2014~ -~07972~^~343~^0.04^6^4.0e-03^~1~^~A~^^^1^0.00^0.08^1^-0.01^0.08^~1, 2, 3~^~06/01/2014~ -~07972~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~418~^1.00^6^0.11^~1~^~A~^^^1^0.81^1.40^1^-0.42^2.43^~2, 3~^~06/01/2014~ -~07972~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07972~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~07973~^~203~^29.50^18^0.49^~1~^~A~^^^1^25.19^32.62^10^28.39^30.60^~2, 3~^~07/01/2014~ -~07973~^~204~^25.87^18^0.44^~1~^~A~^^^1^19.90^30.68^10^24.87^26.87^~2, 3~^~07/01/2014~ -~07973~^~205~^4.24^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~07973~^~207~^6.80^18^0.16^~1~^~A~^^^1^4.49^7.87^10^6.41^7.17^~2, 3~^~07/01/2014~ -~07973~^~210~^3.93^3^^~1~^~A~^^^1^2.80^4.40^^^^~2, 3~^~07/01/2014~ -~07973~^~211~^0.10^3^^~1~^~A~^^^1^0.10^0.20^^^^~2, 3~^~07/01/2014~ -~07973~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~07973~^~255~^34.46^18^1.08^~1~^~A~^^^1^28.81^43.01^11^32.05^36.85^~2, 3~^~07/01/2014~ -~07973~^~269~^4.24^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~07973~^~303~^2.63^18^0.06^~1~^~A~^^^1^1.96^3.28^6^2.47^2.77^~2, 3~^~07/01/2014~ -~07973~^~309~^4.71^18^0.07^~1~^~A~^^^1^3.73^5.18^9^4.53^4.88^~2, 3~^~07/01/2014~ -~07973~^~323~^0.14^0^^~4~^~BFSN~^~05707~^^^^^^^^^~07/01/2014~ -~07973~^~418~^1.88^9^0.25^~1~^~A~^^^1^0.97^2.70^3^1.07^2.68^~2, 3~^~07/01/2014~ -~07973~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07973~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~07974~^~203~^13.33^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07974~^~204~^20.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07974~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~207~^2.93^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~255~^58.93^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~303~^0.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~309~^1.61^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~323~^2.70^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~418~^0.66^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07976~^~203~^21.43^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~204~^4.46^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~205~^14.25^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07976~^~207~^3.85^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~210~^0.81^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~211~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~212~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~255~^56.01^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~269~^0.81^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~07976~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~303~^1.29^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~309~^2.41^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~323~^1.35^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~342~^0.06^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~346~^0.02^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07977~^~203~^18.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~204~^2.71^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~205~^10.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~207~^3.48^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~209~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~210~^0.33^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~211~^0.40^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~212~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~255~^64.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~269~^10.68^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~303~^0.76^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~309~^1.78^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~323~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~342~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~344~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~418~^0.37^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~203~^9.41^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~204~^22.35^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~205~^8.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~207~^1.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~255~^58.87^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~303~^0.85^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~309~^1.31^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~418~^0.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07979~^~203~^10.71^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~07979~^~204~^26.79^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~07979~^~205~^0.11^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~07979~^~207~^2.47^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~209~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~210~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~211~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~212~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~214~^0.02^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~255~^60.08^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~269~^0.02^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07979~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~303~^1.60^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~309~^3.95^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~323~^0.22^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~342~^0.01^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~346~^0.01^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~418~^1.67^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~573~^0.12^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~578~^0.02^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08002~^~203~^10.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~204~^4.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~205~^80.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~207~^3.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08002~^~255~^1.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08002~^~269~^21.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~309~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~323~^0.31^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08010~^~203~^4.39^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~204~^5.12^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~205~^85.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~207~^2.48^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08010~^~269~^44.32^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~303~^19.42^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~309~^16.16^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~323~^0.62^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08010~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08010~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08011~^~203~^4.45^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~204~^4.83^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~205~^85.93^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~207~^2.28^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08011~^~269~^44.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~303~^19.80^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~309~^15.56^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~323~^0.63^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08011~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08011~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~08011~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~203~^7.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~204~^9.23^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~205~^78.65^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08012~^~207~^2.52^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~269~^33.36^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08012~^~303~^18.36^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08012~^~309~^15.29^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08012~^~323~^0.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08012~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08013~^~203~^12.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~204~^6.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~205~^73.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2017~ -~08013~^~207~^2.81^6^0.02^~1~^~A~^^^1^2.76^2.95^5^2.74^2.88^~2, 3~^~06/01/2012~ -~08013~^~255~^3.76^4^0.10^~1~^~A~^^^1^3.55^3.96^3^3.43^4.09^~2, 3~^~01/01/2017~ -~08013~^~269~^4.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~303~^28.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~309~^13.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~323~^0.41^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~418~^6.77^1^^~1~^~A~^^~Y~^^^^^^^^~06/01/2012~ -~08013~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08013~^~578~^6.77^0^^~4~^~NR~^^~Y~^^^^^^^^~06/01/2012~ -~08015~^~203~^4.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~204~^4.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~205~^85.70^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~207~^2.90^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~08015~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08015~^~269~^35.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~303~^6.20^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~309~^5.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~323~^0.13^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~418~^5.20^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08015~^~578~^5.20^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08018~^~203~^6.37^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~204~^4.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~205~^83.68^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~207~^3.39^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~269~^20.66^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~303~^30.98^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08018~^~309~^15.30^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08018~^~323~^0.67^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08018~^~573~^0.00^0^^~4~^~NR~^^~N~^^^^^^^^~01/01/2011~ -~08018~^~578~^0.00^0^^~4~^~NR~^^~N~^^^^^^^^~03/01/2007~ -~08025~^~203~^6.69^3^0.03^~1~^~A~^^^1^6.62^6.75^2^6.53^6.84^~2, 3~^~04/01/2005~ -~08025~^~204~^1.26^3^0.01^~1~^~A~^^^1^1.23^1.28^2^1.19^1.31^~2, 3~^~04/01/2005~ -~08025~^~205~^86.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08025~^~207~^2.22^3^0.01^~1~^~A~^^^1^2.20^2.24^2^2.17^2.27^~2, 3~^~04/01/2005~ -~08025~^~210~^10.30^3^0.04^~1~^~A~^^^1^6.43^6.59^2^6.31^6.69^~2, 3~^~02/01/2014~ -~08025~^~211~^0.66^3^4.0e-03^~1~^~A~^^^1^0.41^0.43^2^0.40^0.43^~2, 3~^~02/01/2014~ -~08025~^~212~^0.61^3^3.0e-03^~1~^~A~^^^1^0.38^0.39^2^0.37^0.39^~2, 3~^~02/01/2014~ -~08025~^~213~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~214~^0.54^3^8.0e-03^~1~^~A~^^^1^0.33^0.35^2^0.31^0.37^~2, 3~^~02/01/2014~ -~08025~^~255~^3.62^3^0.08^~1~^~A~^^^1^3.45^3.71^2^3.25^3.98^~2, 3~^~04/01/2005~ -~08025~^~269~^12.12^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~287~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~303~^32.73^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~08025~^~309~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~2, 3~^~04/01/2005~ -~08025~^~323~^0.06^3^3.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.04^0.07^~2, 3~^~04/01/2005~ -~08025~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~342~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~04/01/2005~ -~08025~^~343~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~04/01/2005~ -~08025~^~344~^0.06^3^0.00^~1~^~A~^^^1^0.06^0.06^^^^~2, 3~^~04/01/2005~ -~08025~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~346~^0.14^3^9.0e-03^~1~^~A~^^^1^0.13^0.16^2^0.10^0.18^~2, 3~^~04/01/2005~ -~08025~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~418~^5.45^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2009~ -~08025~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08025~^~578~^5.45^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2005~ -~08029~^~203~^9.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~204~^2.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~205~^80.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~207~^4.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08029~^~255~^3.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08029~^~269~^18.60^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08029~^~303~^28.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08029~^~309~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08029~^~323~^0.77^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08029~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2007~ -~08029~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08029~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~08034~^~203~^4.62^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~204~^4.02^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~205~^86.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~207~^2.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~08034~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08034~^~269~^34.28^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~303~^6.67^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~309~^5.56^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~323~^0.13^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~418~^5.56^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~578~^5.56^0^^~4~^~NR~^^~Y~^^^^^^^^~06/01/2015~ -~08037~^~203~^13.67^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~204~^24.31^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~205~^53.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~08037~^~207~^2.31^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~255~^5.84^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~269~^19.80^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~303~^3.95^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~309~^4.17^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~323~^11.10^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08038~^~203~^11.22^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~204~^1.81^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~205~^80.49^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08038~^~207~^2.98^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~08038~^~255~^3.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08038~^~269~^8.86^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~303~^28.00^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08038~^~309~^2.07^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08038~^~323~^0.62^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08038~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08038~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08039~^~203~^9.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~204~^3.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~205~^82.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~207~^1.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~08039~^~255~^3.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~269~^15.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~303~^27.90^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~309~^7.80^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~323~^0.81^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~418~^5.20^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08039~^~578~^5.20^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2013~ -~08046~^~203~^6.01^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~204~^2.93^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~205~^86.63^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~207~^2.93^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~08046~^~255~^1.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08046~^~269~^31.51^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~303~^8.44^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~309~^4.69^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~323~^0.17^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08046~^~418~^4.69^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~578~^4.70^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08047~^~203~^6.41^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~204~^3.44^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~205~^83.85^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~207~^2.95^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~255~^3.35^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~269~^20.27^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~303~^29.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08047~^~309~^12.71^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08047~^~323~^4.55^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08047~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08047~^~573~^4.38^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~08049~^~203~^9.98^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~204~^4.43^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~205~^77.74^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~207~^3.56^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~255~^4.30^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~269~^19.43^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~303~^29.33^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08049~^~309~^13.78^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~323~^0.61^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08054~^~203~^10.55^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~204~^11.62^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~205~^73.65^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~207~^1.98^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~255~^2.19^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~269~^20.34^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~303~^2.81^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~309~^2.95^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08054~^~323~^1.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~418~^0.17^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08054~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08059~^~203~^4.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~204~^6.08^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~205~^85.03^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~207~^2.39^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~269~^43.36^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2009~ -~08059~^~303~^18.35^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08059~^~309~^15.29^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08059~^~323~^0.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08059~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08061~^~203~^7.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~204~^1.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~205~^78.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~207~^3.20^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~255~^8.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~269~^32.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~303~^18.30^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~08061~^~309~^3.80^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~323~^0.54^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08061~^~418~^2.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08061~^~578~^2.50^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08066~^~203~^7.01^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~204~^0.90^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08066~^~205~^87.78^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~207~^0.41^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~255~^3.91^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08066~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~08066~^~303~^2.86^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2002~ -~08066~^~309~^1.10^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08066~^~323~^0.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~ -~08066~^~573~^0.00^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08073~^~203~^5.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~204~^1.70^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~205~^90.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~207~^0.80^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~08073~^~255~^1.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08073~^~269~^53.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~303~^6.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08073~^~309~^5.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~323~^0.33^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~418~^5.60^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08073~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08073~^~578~^5.60^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08074~^~203~^10.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~204~^5.36^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~205~^75.96^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~08074~^~207~^4.29^3^0.03^~1~^~A~^^^1^4.23^4.35^2^4.14^4.44^~2, 3~^~04/01/2005~ -~08074~^~255~^3.68^3^0.12^~1~^~A~^^^1^3.47^3.90^2^3.14^4.21^~2, 3~^~04/01/2005~ -~08074~^~269~^3.57^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~303~^32.14^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~309~^13.39^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~323~^0.43^3^7.0e-03^~1~^~A~^^^1^0.42^0.44^2^0.40^0.46^~2, 3~^~04/01/2005~ -~08074~^~418~^5.36^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~578~^5.36^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08081~^~203~^8.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~204~^2.90^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~205~^83.60^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~207~^2.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~08081~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~269~^20.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~303~^28.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~309~^2.50^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~323~^1.20^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~418~^2.50^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08081~^~578~^2.50^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08083~^~203~^3.32^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~204~^0.35^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08083~^~205~^90.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~207~^3.24^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~08083~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~269~^46.88^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~303~^5.80^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~309~^4.84^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~323~^0.07^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~418~^4.84^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~578~^4.84^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2015~ -~08084~^~203~^29.10^14^0.51^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~204~^10.70^13^0.32^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~205~^49.60^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08084~^~207~^5.00^7^0.09^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~210~^7.80^3^0.25^~1~^~A~^^^1^7.50^8.30^2^6.71^8.88^~4~^~10/01/2002~ -~08084~^~255~^5.60^14^0.25^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~269~^7.80^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~08084~^~303~^9.09^12^0.43^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~309~^16.67^9^0.91^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~323~^15.99^0^^~4~^~BFFN~^~04038~^^^^^^^^^~10/01/2002~ -~08084~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08084~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08084~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08085~^~203~^26.55^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~204~^7.78^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~205~^58.11^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~207~^4.14^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~255~^3.40^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~269~^21.43^1^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~08085~^~303~^8.05^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~309~^13.88^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~323~^19.29^1^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~08085~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~573~^4.69^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~08085~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08090~^~203~^7.65^6^0.18^~1~^~A~^^^1^6.88^8.06^5^7.16^8.12^~2, 3~^~11/01/2008~ -~08090~^~204~^1.75^6^0.16^~1~^~A~^^^1^1.01^2.16^5^1.33^2.15^~2, 3~^~11/01/2008~ -~08090~^~205~^79.09^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08090~^~207~^0.60^6^0.03^~1~^~A~^^^1^0.43^0.68^5^0.50^0.68^~2, 3~^~11/01/2008~ -~08090~^~209~^68.23^6^0.87^~1~^~A~^^^1^66.30^72.10^5^65.98^70.48^~2, 3~^~11/01/2008~ -~08090~^~210~^0.57^6^0.07^~1~^~A~^^^1^0.20^0.69^5^0.37^0.76^~2, 3~^~11/01/2008~ -~08090~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~255~^10.92^6^0.12^~1~^~A~^^^1^10.47^11.30^5^10.58^11.24^~2, 3~^~11/01/2008~ -~08090~^~269~^0.57^6^0.07^~1~^~A~^^^1^0.20^0.69^5^0.37^0.76^~2, 3~^~11/01/2008~ -~08090~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~303~^3.05^6^0.14^~1~^~A~^^^1^2.70^3.50^5^2.68^3.41^~2, 3~^~05/01/2009~ -~08090~^~309~^0.72^6^0.04^~1~^~A~^^^1^0.48^0.79^5^0.59^0.85^~2, 3~^~11/01/2008~ -~08090~^~323~^0.21^6^0.03^~1~^~A~^^^1^0.06^0.27^5^0.12^0.28^~2, 3~^~11/01/2008~ -~08090~^~341~^0.01^6^3.0e-03^~1~^~A~^^^1^0.00^0.01^5^2.0e-03^0.01^~1, 2, 3~^~11/01/2008~ -~08090~^~342~^0.70^6^0.10^~1~^~A~^^^1^0.21^0.89^5^0.43^0.96^~2, 3~^~11/01/2008~ -~08090~^~343~^0.04^6^3.0e-03^~1~^~A~^^^1^0.02^0.04^5^0.02^0.04^~2, 3~^~11/01/2008~ -~08090~^~344~^0.35^6^0.03^~1~^~A~^^^1^0.23^0.47^5^0.26^0.44^~2, 3~^~11/01/2008~ -~08090~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~346~^0.97^6^0.07^~1~^~A~^^^1^0.76^1.17^5^0.78^1.16^~2, 3~^~11/01/2008~ -~08090~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~08090~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08090~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08091~^~203~^1.71^12^0.05^~1~^~A~^^^1^1.44^2.13^7^1.57^1.84^~2, 3~^~11/01/2008~ -~08091~^~204~^0.46^12^0.04^~1~^~A~^^^1^0.21^0.66^9^0.37^0.55^~2, 3~^~11/01/2008~ -~08091~^~205~^14.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08091~^~207~^0.15^12^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~209~^14.34^12^0.36^~1~^~A~^^^1^12.40^16.03^10^13.52^15.16^~2, 3~^~11/01/2008~ -~08091~^~210~^0.12^12^0.01^~1~^~A~^^^1^0.07^0.16^7^0.09^0.14^~1, 2, 3~^~11/01/2008~ -~08091~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~255~^82.93^12^0.47^~1~^~A~^^^1^78.57^85.21^6^81.75^84.10^~2, 3~^~11/01/2008~ -~08091~^~269~^0.12^12^0.01^~1~^~A~^^^1^0.07^0.16^7^0.09^0.14^~2, 3~^~11/01/2008~ -~08091~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~303~^0.57^12^0.04^~1~^~A~^^^1^0.26^0.79^10^0.47^0.66^~2, 3~^~05/01/2009~ -~08091~^~309~^0.18^12^0.01^~1~^~A~^^^1^0.06^0.28^8^0.14^0.21^~2, 3~^~11/01/2008~ -~08091~^~323~^0.03^12^2.0e-03^~1~^~A~^^^1^0.01^0.03^8^0.02^0.03^~1, 2, 3~^~11/01/2008~ -~08091~^~341~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~342~^0.10^12^0.01^~1~^~A~^^^1^0.03^0.15^9^0.07^0.12^~2, 3~^~11/01/2008~ -~08091~^~343~^0.00^12^2.0e-03^~1~^~A~^^^1^0.00^0.01^10^-1.0e-03^8.0e-03^~1, 2, 3~^~11/01/2008~ -~08091~^~344~^0.04^12^3.0e-03^~1~^~A~^^^1^0.03^0.06^9^0.03^0.05^~2, 3~^~11/01/2008~ -~08091~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~346~^0.15^12^7.0e-03^~1~^~A~^^^1^0.11^0.21^7^0.13^0.16^~2, 3~^~11/01/2008~ -~08091~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~418~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~11/01/2008~ -~08091~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08091~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08092~^~203~^7.31^4^0.24^~1~^~A~^^^1^6.81^8.00^3^6.52^8.10^~2, 3~^~12/01/2008~ -~08092~^~204~^2.14^4^0.07^~1~^~A~^^^1^1.96^2.31^3^1.89^2.38^~2, 3~^~12/01/2008~ -~08092~^~205~^78.42^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~207~^4.55^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~209~^67.10^4^0.57^~1~^~A~^^^1^65.90^68.50^3^65.28^68.91^~2, 3~^~12/01/2008~ -~08092~^~210~^1.51^4^0.08^~1~^~A~^^^1^1.35^1.66^3^1.23^1.77^~2, 3~^~12/01/2008~ -~08092~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~255~^7.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~269~^1.51^4^0.08^~1~^~A~^^^1^1.35^1.66^3^1.23^1.77^~2, 3~^~12/01/2008~ -~08092~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~303~^38.75^4^2.49^~1~^~A~^^^1^32.00^44.00^3^30.80^46.69^~2, 3~^~12/01/2008~ -~08092~^~309~^0.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~323~^0.05^4^8.0e-03^~1~^~A~^^^1^0.03^0.06^3^0.02^0.07^~2, 3~^~12/01/2008~ -~08092~^~341~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~12/01/2008~ -~08092~^~342~^0.24^4^5.0e-03^~1~^~A~^^^1^0.24^0.26^3^0.22^0.26^~2, 3~^~12/01/2008~ -~08092~^~343~^0.02^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~12/01/2008~ -~08092~^~344~^0.12^4^9.0e-03^~1~^~A~^^^1^0.10^0.14^3^0.09^0.14^~2, 3~^~12/01/2008~ -~08092~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~346~^0.47^4^2.0e-03^~1~^~A~^^^1^0.46^0.47^3^0.46^0.47^~2, 3~^~12/01/2008~ -~08092~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~418~^0.00^0^^~4~^~BFSN~^~08090~^~N~^^^^^^^^~12/01/2008~ -~08092~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08092~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08093~^~203~^1.58^8^0.05^~1~^~A~^^^1^1.31^1.81^4^1.41^1.73^~2, 3~^~12/01/2008~ -~08093~^~204~^0.49^8^0.01^~1~^~A~^^^1^0.35^0.59^5^0.44^0.52^~2, 3~^~12/01/2008~ -~08093~^~205~^15.95^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08093~^~207~^0.76^8^0.03^~1~^~A~^^^1^0.57^0.93^4^0.67^0.84^~2, 3~^~12/01/2008~ -~08093~^~209~^15.39^8^0.41^~1~^~A~^^^1^12.84^17.27^6^14.35^16.42^~2, 3~^~12/01/2008~ -~08093~^~210~^0.10^7^9.0e-03^~1~^~A~^^^1^0.07^0.14^5^0.07^0.12^~1, 2, 3~^~12/01/2008~ -~08093~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~255~^81.22^8^0.34^~1~^~A~^^^1^78.91^85.00^3^80.15^82.28^~2, 3~^~12/01/2008~ -~08093~^~269~^0.10^7^9.0e-03^~1~^~A~^^^1^0.07^0.14^5^0.07^0.12^~2, 3~^~12/01/2008~ -~08093~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~303~^6.71^8^0.13^~1~^~A~^^~N~^1^5.40^8.10^5^6.36^7.05^~2, 3~^~05/01/2009~ -~08093~^~309~^0.09^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~323~^0.01^8^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~341~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~342~^0.05^8^1.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.04^0.05^~2, 3~^~12/01/2008~ -~08093~^~343~^0.01^8^2.0e-03^~1~^~A~^^^1^0.00^0.01^3^0.00^0.01^~1, 2, 3~^~12/01/2008~ -~08093~^~344~^0.02^8^1.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.02^0.02^~2, 3~^~12/01/2008~ -~08093~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~346~^0.11^8^2.0e-03^~1~^~A~^^^1^0.09^0.13^5^0.10^0.12^~2, 3~^~12/01/2008~ -~08093~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08094~^~203~^8.98^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~204~^5.46^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~205~^72.96^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~207~^5.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~255~^6.71^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~269~^2.76^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~303~^30.38^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~309~^0.42^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~323~^0.11^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~418~^0.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08094~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08096~^~203~^9.93^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~204~^1.73^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~205~^75.39^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~207~^5.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~255~^7.37^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~269~^0.38^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~303~^30.38^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~309~^0.55^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~323~^0.11^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08100~^~203~^6.30^3^0.49^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~204~^0.50^2^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~205~^82.40^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08100~^~207~^0.40^3^0.13^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~255~^10.50^3^1.39^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~269~^0.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~303~^28.44^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~309~^1.12^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~323~^0.11^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~ -~08100~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~08100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~08102~^~203~^10.50^23^0.07^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~204~^1.50^22^0.06^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~205~^76.50^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08102~^~207~^0.60^23^0.01^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~210~^0.20^1^^~1~^^^^^^^^^^^~02/01/2003~ -~08102~^~255~^10.90^23^0.18^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~269~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~08102~^~303~^28.60^0^^~5~^^^^^^^^^^^~10/01/2008~ -~08102~^~309~^0.88^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~323~^0.11^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~08102~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08102~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08102~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08103~^~203~^1.44^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~204~^0.21^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~205~^10.52^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~207~^0.21^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~255~^87.61^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~269~^0.03^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~303~^3.74^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~309~^0.13^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~323~^0.02^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~573~^0.00^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08103~^~578~^0.00^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08104~^~203~^11.60^11^0.13^~1~^~A~^^^1^10.32^11.91^10^11.29^11.89^~2, 3~^~10/01/2008~ -~08104~^~204~^1.41^11^0.06^~1~^~A~^^^1^0.96^1.61^10^1.26^1.55^~2, 3~^~10/01/2008~ -~08104~^~205~^73.19^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~207~^2.72^11^0.27^~1~^~A~^^^1^1.41^4.17^10^2.11^3.33^~2, 3~^~10/01/2008~ -~08104~^~209~^67.32^11^0.30^~1~^~A~^^^1^66.10^69.20^10^66.63^68.00^~2, 3~^~10/01/2008~ -~08104~^~210~^0.42^11^0.01^~1~^~A~^^^1^0.37^0.58^10^0.37^0.45^~2, 3~^~10/01/2008~ -~08104~^~211~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~212~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~214~^0.14^11^0.03^~1~^~A~^^^1^0.07^0.39^10^0.06^0.21^~1, 2, 3~^~10/01/2008~ -~08104~^~255~^11.08^11^0.22^~1~^~A~^^^1^9.53^11.73^10^10.58^11.57^~2, 3~^~10/01/2008~ -~08104~^~269~^0.56^11^0.04^~1~^~A~^^^1^0.44^0.83^10^0.46^0.65^~2, 3~^~10/01/2008~ -~08104~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~303~^33.39^11^2.17^~1~^~A~^^^1^21.10^50.10^10^28.55^38.22^~2, 3~^~10/01/2008~ -~08104~^~309~^1.32^11^0.02^~1~^~A~^^^1^1.14^1.45^10^1.26^1.37^~2, 3~^~10/01/2008~ -~08104~^~323~^0.33^11^0.01^~1~^~A~^^^1^0.29^0.39^10^0.30^0.35^~2, 3~^~10/01/2008~ -~08104~^~341~^0.10^11^2.0e-03^~1~^~A~^^^1^0.09^0.12^10^0.09^0.11^~2, 3~^~10/01/2008~ -~08104~^~342~^1.06^11^0.02^~1~^~A~^^^1^0.96^1.20^10^1.01^1.10^~2, 3~^~10/01/2008~ -~08104~^~343~^0.00^11^2.0e-03^~1~^~A~^^^1^0.00^0.01^10^-1.0e-03^7.0e-03^~1, 2, 3~^~10/01/2008~ -~08104~^~344~^0.10^11^6.0e-03^~1~^~A~^^^1^0.08^0.14^10^0.08^0.11^~2, 3~^~10/01/2008~ -~08104~^~345~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~346~^0.01^11^2.0e-03^~1~^~A~^^^1^0.00^0.01^10^0.00^0.01^~1, 2, 3~^~10/01/2008~ -~08104~^~347~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~ -~08104~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08104~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08105~^~203~^1.82^26^0.04^~1~^~A~^^^1^1.25^2.34^25^1.71^1.91^~2, 3~^~11/01/2008~ -~08105~^~204~^0.34^26^0.02^~1~^~A~^^^1^0.06^0.52^25^0.28^0.39^~1, 2, 3~^~11/01/2008~ -~08105~^~205~^10.92^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~207~^0.38^26^0.02^~1~^~A~^^^1^0.21^0.63^25^0.33^0.42^~2, 3~^~11/01/2008~ -~08105~^~209~^10.60^25^0.58^~1~^~A~^^^1^4.60^13.60^24^9.40^11.80^~2, 3~^~11/01/2008~ -~08105~^~210~^0.07^20^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~211~^0.00^20^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~212~^0.00^20^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~213~^0.00^20^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~214~^0.69^20^0.26^~1~^~A~^^^1^0.00^3.15^19^0.13^1.24^~1, 2, 3~^~11/01/2008~ -~08105~^~255~^86.55^26^0.27^~1~^~A~^^^1^84.35^90.12^25^85.97^87.12^~2, 3~^~11/01/2008~ -~08105~^~269~^0.76^20^0.26^~1~^~A~^^^1^0.07^3.22^19^0.20^1.31^~2, 3~^~11/01/2008~ -~08105~^~287~^0.00^20^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~303~^5.33^26^0.21^~1~^~A~^^^1^3.56^7.45^25^4.89^5.77^~2, 3~^~11/01/2008~ -~08105~^~309~^0.23^26^9.0e-03^~1~^~A~^^^1^0.15^0.33^25^0.21^0.24^~2, 3~^~11/01/2008~ -~08105~^~323~^0.04^26^3.0e-03^~1~^~A~^^^1^0.01^0.08^25^0.03^0.04^~1, 2, 3~^~11/01/2008~ -~08105~^~341~^0.02^26^1.0e-03^~1~^~A~^^^1^0.00^0.02^25^0.01^0.01^~1, 2, 3~^~11/01/2008~ -~08105~^~342~^0.16^26^4.0e-03^~1~^~A~^^^1^0.12^0.20^25^0.14^0.16^~2, 3~^~11/01/2008~ -~08105~^~343~^0.00^26^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~344~^0.02^26^1.0e-03^~1~^~A~^^^1^0.00^0.02^25^0.01^0.01^~1, 2, 3~^~11/01/2008~ -~08105~^~345~^0.00^26^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~346~^0.00^26^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~347~^0.00^26^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08106~^~203~^10.60^23^0.08^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~204~^1.40^23^0.07^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~205~^75.50^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08106~^~207~^2.10^23^0.03^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~210~^0.40^1^^~1~^^^^^^^^^^^~02/01/2003~ -~08106~^~255~^10.40^23^0.16^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~269~^0.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~08106~^~303~^28.60^0^^~5~^^^^^^^^^^^~04/01/2003~ -~08106~^~309~^0.98^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~323~^0.11^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~08106~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08106~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08106~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08107~^~203~^1.84^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~204~^0.24^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~205~^13.08^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~207~^0.45^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~210~^0.07^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~255~^84.40^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~269~^0.07^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~303~^4.96^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~309~^0.17^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08116~^~203~^11.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~204~^0.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~205~^77.25^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~207~^0.60^10^0.03^~1~^~A~^^^^^^^^^^~03/01/2015~ -~08116~^~255~^10.35^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~303~^30.86^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~309~^0.57^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~323~^0.11^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08116~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~08116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~08120~^~203~^13.15^4^0.05^~1~^~A~^^^1^13.00^13.24^3^12.98^13.32^~2, 3~^~11/01/2006~ -~08120~^~204~^6.52^4^0.18^~1~^~A~^^^1^6.20^6.92^3^5.94^7.10^~2, 3~^~10/01/2006~ -~08120~^~205~^67.70^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08120~^~207~^1.77^4^0.01^~1~^~A~^^^1^1.74^1.81^3^1.71^1.83^~2, 3~^~10/01/2006~ -~08120~^~209~^57.92^4^0.18^~1~^~A~^^^1^57.50^58.40^3^57.32^58.52^~2, 3~^~10/01/2006~ -~08120~^~210~^0.99^4^0.02^~1~^~A~^^^1^0.93^1.02^3^0.92^1.06^~2, 3~^~10/01/2006~ -~08120~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~255~^10.84^4^0.30^~1~^~A~^^^1^10.49^11.75^3^9.88^11.80^~2, 3~^~10/01/2006~ -~08120~^~269~^0.99^4^0.02^~1~^~A~^^^1^0.93^1.02^3^0.92^1.06^~2, 3~^~10/01/2006~ -~08120~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~303~^4.25^4^0.06^~1~^~A~^^^1^4.10^4.40^3^4.04^4.45^~2, 3~^~10/01/2006~ -~08120~^~309~^3.64^4^0.09^~1~^~A~^^^1^3.50^3.90^3^3.34^3.94^~2, 3~^~10/01/2006~ -~08120~^~323~^0.42^4^0.03^~1~^~A~^^^1^0.31^0.47^3^0.30^0.53^~2, 3~^~10/01/2006~ -~08120~^~341~^0.03^4^4.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~10/01/2006~ -~08120~^~342~^0.12^4^4.0e-03^~1~^~A~^^^1^0.11^0.13^3^0.10^0.13^~2, 3~^~10/01/2006~ -~08120~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~08120~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2004~ -~08120~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08120~^~578~^0.00^0^^~7~^~Z~^^~Y~^^^^^^^^~12/01/2004~ -~08121~^~203~^2.54^8^0.08^~1~^~A~^^^1^2.29^2.98^7^2.34^2.73^~2, 3~^~11/01/2006~ -~08121~^~204~^1.52^8^0.04^~1~^~A~^^^1^1.28^1.65^7^1.42^1.61^~2, 3~^~11/01/2006~ -~08121~^~205~^12.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~08121~^~207~^0.34^8^0.01^~1~^~A~^^^1^0.29^0.40^7^0.30^0.37^~2, 3~^~11/01/2006~ -~08121~^~209~^11.60^8^0.28^~1~^~A~^^^1^10.70^12.90^7^10.93^12.26^~2, 3~^~11/01/2006~ -~08121~^~210~^0.25^8^9.0e-03^~1~^~A~^^^1^0.21^0.28^7^0.23^0.27^~2, 3~^~11/01/2006~ -~08121~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~255~^83.61^8^0.39^~1~^~A~^^^1^81.37^85.09^7^82.68^84.53^~2, 3~^~11/01/2006~ -~08121~^~269~^0.27^8^0.02^~1~^~A~^^^1^0.21^0.43^7^0.21^0.33^~2, 3~^~11/01/2006~ -~08121~^~287~^0.02^8^0.02^~1~^~A~^^^1^0.00^0.18^7^-0.03^0.07^~1, 2, 3~^~11/01/2006~ -~08121~^~303~^0.90^8^0.06^~1~^~A~^^^1^0.65^1.17^7^0.74^1.06^~2, 3~^~11/01/2006~ -~08121~^~309~^1.00^8^0.10^~1~^~A~^^^1^0.66^1.60^7^0.74^1.25^~2, 3~^~11/01/2006~ -~08121~^~323~^0.08^8^5.0e-03^~1~^~A~^^^1^0.06^0.10^7^0.07^0.09^~2, 3~^~11/01/2006~ -~08121~^~341~^0.01^8^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~342~^0.03^8^2.0e-03^~1~^~A~^^^1^0.02^0.03^7^0.02^0.03^~2, 3~^~11/01/2006~ -~08121~^~343~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~344~^0.21^8^0.01^~1~^~A~^^^1^0.15^0.27^7^0.18^0.24^~2, 3~^~11/01/2006~ -~08121~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~08121~^~418~^0.00^0^^~4~^^^^^^^^^^^~11/01/2006~ -~08121~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08121~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08122~^~203~^11.92^4^0.16^~1~^~A~^^^1^11.54^12.36^3^11.38^12.45^~2, 3~^~08/01/2012~ -~08122~^~204~^6.90^4^0.04^~1~^~A~^^^1^6.80^7.00^3^6.77^7.03^~2, 3~^~08/01/2012~ -~08122~^~205~^69.52^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~207~^2.75^4^0.04^~1~^~A~^^^1^2.69^2.88^3^2.60^2.89^~2, 3~^~08/01/2012~ -~08122~^~209~^56.65^2^^~1~^~A~^^^1^56.50^56.80^1^^^^~12/01/2006~ -~08122~^~210~^1.00^2^^~1~^~A~^^^1^1.00^1.00^^^^^~08/01/2012~ -~08122~^~211~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08122~^~212~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08122~^~213~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08122~^~214~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08122~^~255~^8.92^4^0.03^~1~^~A~^^^1^8.84^9.01^3^8.80^9.02^~2, 3~^~08/01/2012~ -~08122~^~269~^1.50^2^^~1~^~A~^^^1^1.50^1.50^^^^^~08/01/2012~ -~08122~^~287~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08122~^~303~^24.72^4^0.74^~1~^~A~^^~Y~^1^23.20^26.39^3^22.36^27.07^~2, 3~^~08/01/2012~ -~08122~^~309~^2.51^4^0.06^~1~^~A~^^^1^2.35^2.63^3^2.29^2.71^~2, 3~^~08/01/2012~ -~08122~^~323~^0.51^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~341~^0.20^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~342~^0.00^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~343~^0.00^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~344~^1.03^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~345~^0.15^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~08122~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~08122~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~08122~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~08123~^~203~^2.37^4^0.12^~1~^~A~^^^1^2.15^2.68^3^1.99^2.75^~2, 3~^~12/01/2006~ -~08123~^~204~^1.36^4^0.06^~1~^~A~^^^1^1.22^1.47^3^1.15^1.56^~2, 3~^~12/01/2006~ -~08123~^~205~^11.67^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08123~^~207~^0.56^4^0.04^~1~^~A~^^^1^0.46^0.64^3^0.43^0.69^~2, 3~^~12/01/2006~ -~08123~^~209~^10.37^4^0.38^~1~^~A~^^^1^9.60^11.30^3^9.14^11.60^~2, 3~^~12/01/2006~ -~08123~^~210~^0.29^4^0.02^~1~^~A~^^^1^0.24^0.35^3^0.22^0.36^~2, 3~^~12/01/2006~ -~08123~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~255~^84.03^4^1.07^~1~^~A~^^^1^82.02^86.31^3^80.60^87.46^~2, 3~^~12/01/2006~ -~08123~^~269~^0.46^4^0.06^~1~^~A~^^^1^0.35^0.64^3^0.25^0.66^~2, 3~^~12/01/2006~ -~08123~^~287~^0.16^4^0.05^~1~^~A~^^^1^0.07^0.29^3^-7.0e-03^0.33^~1, 2, 3~^~12/01/2006~ -~08123~^~303~^5.96^4^0.16^~1~^~A~^^^1^5.69^6.40^3^5.42^6.49^~2, 3~^~12/01/2006~ -~08123~^~309~^0.62^4^0.08^~1~^~A~^^^1^0.39^0.82^3^0.34^0.90^~2, 3~^~12/01/2006~ -~08123~^~323~^0.07^4^4.0e-03^~1~^~A~^^^1^0.06^0.08^3^0.05^0.08^~2, 3~^~12/01/2006~ -~08123~^~341~^0.01^4^3.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.01^~1, 2, 3~^~12/01/2006~ -~08123~^~342~^0.03^4^8.0e-03^~1~^~A~^^^1^0.02^0.05^3^8.0e-03^0.05^~2, 3~^~12/01/2006~ -~08123~^~343~^0.01^4^6.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~12/01/2006~ -~08123~^~344~^0.18^4^9.0e-03^~1~^~A~^^^1^0.16^0.20^3^0.15^0.21^~2, 3~^~12/01/2006~ -~08123~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~08123~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08124~^~203~^8.62^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~204~^4.61^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~205~^76.74^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~207~^3.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~255~^6.62^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~269~^28.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~303~^8.78^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~309~^1.97^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~323~^0.42^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08128~^~203~^9.53^6^0.14^~1~^~A~^^^1^7.44^10.75^3^9.08^9.97^~2, 3~^~08/01/2012~ -~08128~^~204~^4.84^6^0.07^~1~^~A~^^^1^4.19^5.40^3^4.60^5.07^~2, 3~^~08/01/2012~ -~08128~^~205~^76.08^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~207~^2.63^6^0.05^~1~^~A~^^^1^2.50^2.78^4^2.47^2.77^~2, 3~^~08/01/2012~ -~08128~^~209~^42.32^4^0.16^~1~^~A~^^^1^35.44^45.70^2^41.61^43.02^~2, 3~^~08/01/2012~ -~08128~^~210~^24.50^3^0.00^~1~^~A~^^^1^20.39^34.09^^^^~2, 3~^~08/01/2012~ -~08128~^~211~^0.30^3^0.03^~1~^~A~^^^1^0.20^0.40^1^-0.15^0.74^~2, 3~^~08/01/2012~ -~08128~^~212~^0.23^3^0.00^~1~^~A~^^^1^0.20^0.30^^^^~2, 3~^~08/01/2012~ -~08128~^~213~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~08/01/2012~ -~08128~^~214~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~08/01/2012~ -~08128~^~255~^6.92^6^0.05^~1~^~A~^^^1^5.76^7.53^3^6.76^7.06^~2, 3~^~08/01/2012~ -~08128~^~269~^25.33^3^0.03^~1~^~A~^^~Y~^1^21.09^35.09^1^24.88^25.77^~2, 3~^~08/01/2012~ -~08128~^~287~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~08/01/2012~ -~08128~^~303~^8.46^6^0.18^~1~^~A~^^~Y~^1^7.65^9.10^4^7.95^8.96^~2, 3~^~08/01/2012~ -~08128~^~309~^2.29^6^0.04^~1~^~A~^^^1^1.54^2.71^3^2.14^2.43^~2, 3~^~08/01/2012~ -~08128~^~323~^0.50^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08128~^~341~^0.18^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08128~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08128~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08128~^~344~^0.85^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08128~^~345~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08128~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08128~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08128~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08128~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08128~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08129~^~203~^2.37^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~204~^1.21^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~205~^18.95^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~207~^0.73^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~255~^76.74^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~269~^6.31^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~303~^2.11^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~309~^0.57^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~323~^0.12^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08130~^~203~^9.20^6^0.08^~1~^~A~^^^1^8.83^9.37^5^8.97^9.43^~2, 3~^~04/01/2014~ -~08130~^~204~^4.63^6^0.05^~1~^~A~^^^1^4.50^4.90^5^4.49^4.77^~2, 3~^~04/01/2014~ -~08130~^~205~^76.91^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~207~^2.97^6^0.04^~1~^~A~^^^1^2.82^3.08^5^2.85^3.08^~2, 3~^~04/01/2014~ -~08130~^~209~^38.25^2^^~1~^~A~^^^1^37.50^39.00^1^^^^~04/01/2014~ -~08130~^~210~^29.29^3^0.29^~1~^~A~^^^1^28.71^29.65^2^28.03^30.54^~2, 3~^~04/01/2014~ -~08130~^~211~^0.51^3^0.01^~1~^~A~^^^1^0.48^0.53^2^0.44^0.56^~2, 3~^~04/01/2014~ -~08130~^~212~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~214~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~255~^6.28^6^0.13^~1~^~A~^^^1^5.91^6.75^5^5.94^6.62^~2, 3~^~04/01/2014~ -~08130~^~269~^30.02^3^0.30^~1~^~A~^^^1^29.41^30.40^2^28.70^31.33^~2, 3~^~04/01/2014~ -~08130~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~303~^8.22^6^0.23^~1~^~A~^^^1^7.39^9.12^5^7.61^8.82^~2, 3~^~04/01/2014~ -~08130~^~309~^1.70^6^0.04^~1~^~A~^^^1^1.60^1.93^5^1.57^1.82^~2, 3~^~04/01/2014~ -~08130~^~323~^0.44^2^^~1~^~A~^^^1^0.44^0.44^^^^^~04/01/2014~ -~08130~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~08130~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~08130~^~343~^0.70^2^^~1~^~A~^^^1^0.69^0.70^1^^^^~04/01/2014~ -~08130~^~344~^1.31^2^^~1~^~A~^^^1^1.18^1.44^1^^^^~04/01/2014~ -~08130~^~345~^0.88^2^^~1~^~A~^^^1^0.85^0.92^1^^^^~04/01/2014~ -~08130~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~08130~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~08130~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~08133~^~203~^1.98^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~204~^0.95^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~205~^17.91^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~207~^0.72^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~255~^78.44^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~269~^8.71^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~303~^2.21^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~309~^0.42^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~323~^0.09^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08138~^~203~^6.94^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~204~^3.53^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~205~^82.77^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~207~^4.57^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08138~^~255~^2.19^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08138~^~269~^40.91^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~323~^0.20^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~08138~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~ -~08142~^~203~^13.10^7^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~204~^2.90^7^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~205~^75.60^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08142~^~207~^1.90^9^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~255~^6.50^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~269~^1.60^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~303~^3.57^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~309~^4.41^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~323~^3.44^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08142~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08143~^~203~^2.00^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~204~^0.50^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~205~^11.80^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08143~^~207~^0.30^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~255~^85.40^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~303~^0.56^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~309~^0.69^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~203~^11.20^18^0.42^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~204~^2.00^16^0.06^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~205~^75.20^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08144~^~207~^1.60^16^0.04^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~255~^9.90^18^0.26^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~269~^0.42^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~303~^3.39^17^0.10^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~309~^2.66^27^0.06^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~323~^1.31^0^^~4~^~BFFN~^~20072~^^^^^^^^^~02/01/2003~ -~08144~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08144~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08145~^~203~^2.00^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~204~^0.40^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~205~^13.70^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~207~^0.30^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~255~^83.60^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~269~^0.08^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~303~^0.62^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~309~^0.48^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~323~^0.24^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~418~^0.00^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~573~^0.00^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~578~^0.00^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08146~^~203~^16.26^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08146~^~204~^2.15^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08146~^~205~^76.39^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08146~^~207~^1.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~255~^3.69^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08146~^~269~^1.37^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~303~^4.41^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08146~^~309~^3.07^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08146~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~08146~^~418~^0.42^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08146~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08147~^~203~^11.37^6^7.0e-03^~6~^~JA~^^^2^11.37^11.38^1^11.27^11.46^~4~^~04/01/2004~ -~08147~^~204~^2.01^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~205~^78.96^5^^~12~^~MA~^^^1^78.96^78.96^0^^^~4~^~06/01/2015~ -~08147~^~207~^1.56^6^0.00^~6~^~JA~^^^2^1.56^1.56^1^1.55^1.56^~4~^~04/01/2004~ -~08147~^~209~^65.10^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~210~^0.55^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08147~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08147~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08147~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08147~^~255~^6.10^6^0.00^~6~^~JA~^^^2^6.10^6.10^1^6.09^6.10^~4~^~04/01/2004~ -~08147~^~269~^0.94^5^^~12~^~MA~^^^1^0.94^0.94^0^^^~4~^~04/01/2004~ -~08147~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08147~^~303~^2.63^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~309~^2.89^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~323~^0.00^5^^~12~^~MA~^^^1^0.00^0.00^0^^^~1, 4~^~04/01/2004~ -~08147~^~418~^0.00^6^0.00^~6~^~JA~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2004~ -~08147~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08147~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08148~^~203~^11.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~204~^2.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~205~^81.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~207~^1.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~08148~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~269~^0.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08148~^~303~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~309~^3.05^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~323~^0.65^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08148~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08148~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08156~^~203~^6.30^32^0.06^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~204~^0.50^32^0.03^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~205~^89.80^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08156~^~207~^0.40^32^0.01^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~255~^3.00^32^0.13^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~303~^31.70^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08156~^~309~^1.03^10^0.02^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08157~^~203~^14.70^38^0.14^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~204~^1.20^37^0.04^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~205~^79.60^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08157~^~207~^1.50^28^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~255~^3.00^28^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~303~^31.70^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08157~^~309~^2.36^10^0.03^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08160~^~203~^8.80^156^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~204~^1.20^156^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~205~^79.60^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08160~^~207~^0.40^156^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~255~^10.00^157^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~269~^0.64^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~303~^1.00^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~309~^0.41^4^0.01^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08161~^~203~^1.71^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~204~^0.46^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~205~^14.76^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~207~^0.15^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~209~^14.34^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~255~^82.93^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~269~^0.12^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~303~^0.57^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~309~^0.18^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~323~^0.03^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~341~^0.00^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~342~^0.10^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~343~^0.00^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~418~^0.00^0^^~4~^~BFZN~^~08091~^~N~^^^^^^^^~12/01/2008~ -~08161~^~573~^0.00^0^^~4~^~BFZN~^~08091~^~N~^^^^^^^^~12/01/2008~ -~08161~^~578~^0.00^0^^~4~^~BFZN~^~08091~^~N~^^^^^^^^~12/01/2008~ -~08164~^~203~^1.23^4^0.10^~1~^~A~^^^1^1.00^1.44^2^0.78^1.68^~2, 3~^~12/01/2008~ -~08164~^~204~^0.39^4^0.03^~1~^~A~^^^1^0.25^0.47^1^-0.01^0.79^~2, 3~^~12/01/2008~ -~08164~^~205~^13.86^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~207~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~210~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.11^2^0.03^0.14^~1, 2, 3~^~12/01/2008~ -~08164~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~255~^84.36^4^0.53^~1~^~A~^^^1^83.32^85.24^2^81.95^86.77^~2, 3~^~12/01/2008~ -~08164~^~269~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.11^2^0.03^0.14^~2, 3~^~12/01/2008~ -~08164~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~303~^0.57^4^0.05^~1~^~A~^^^1^0.45^0.72^2^0.32^0.82^~2, 3~^~12/01/2008~ -~08164~^~309~^0.14^4^0.02^~1~^~A~^^^1^0.09^0.19^2^8.0e-03^0.26^~2, 3~^~12/01/2008~ -~08164~^~323~^0.02^4^5.0e-03^~1~^~A~^^^1^0.01^0.03^2^-1.0e-03^0.04^~1, 2, 3~^~12/01/2008~ -~08164~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~342~^0.06^4^0.02^~1~^~A~^^^1^0.03^0.11^2^-0.05^0.18^~2, 3~^~12/01/2008~ -~08164~^~343~^0.01^4^0.00^~1~^~A~^^^1^0.00^0.01^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~344~^0.03^4^4.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.05^~2, 3~^~12/01/2008~ -~08164~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~346~^0.08^4^5.0e-03^~1~^~A~^^^1^0.07^0.09^1^0.01^0.14^~2, 3~^~12/01/2008~ -~08164~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~573~^0.00^0^^~4~^~BFSN~^~08091~^~N~^^^^^^^^~12/01/2008~ -~08164~^~578~^0.00^0^^~4~^~BFSN~^~08091~^~N~^^^^^^^^~12/01/2008~ -~08165~^~203~^1.23^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~204~^0.39^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~205~^13.86^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~207~^0.15^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~255~^84.36^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~269~^0.09^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~303~^0.57^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~309~^0.14^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~323~^0.02^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~418~^0.00^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~573~^0.00^0^^~4~^~BFZN~^~08164~^~N~^^^^^^^^~12/01/2008~ -~08165~^~578~^0.00^0^^~4~^~BFZN~^~08164~^~N~^^^^^^^^~12/01/2008~ -~08168~^~203~^0.90^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~204~^0.10^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~205~^11.50^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08168~^~207~^0.30^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08168~^~255~^87.50^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~269~^0.04^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~303~^3.96^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~309~^0.16^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~323~^0.02^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~ -~08168~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08169~^~203~^1.46^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~204~^0.21^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~205~^10.66^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~207~^0.53^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~255~^87.14^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~269~^0.03^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~303~^3.99^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~309~^0.13^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~323~^0.02^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~418~^0.00^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~573~^0.00^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08169~^~578~^0.00^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~ -~08172~^~203~^10.60^122^0.07^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~204~^0.50^61^0.01^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~205~^78.00^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~ -~08172~^~207~^0.40^114^0.03^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~255~^10.50^107^0.16^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~303~^1.50^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~309~^0.53^22^0.01^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~323~^0.11^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08173~^~203~^1.82^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~204~^0.34^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~205~^10.92^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~207~^0.38^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~210~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~211~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~212~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~213~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~214~^0.69^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~255~^86.55^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~269~^0.76^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~287~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~303~^5.33^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~309~^0.23^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~323~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~341~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~342~^0.16^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~343~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~418~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~573~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~578~^0.00^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08177~^~203~^10.60^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~204~^0.82^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~205~^79.55^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~207~^2.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08177~^~255~^6.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~269~^16.63^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~303~^42.88^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~309~^0.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~323~^2.07^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08180~^~203~^2.54^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~204~^1.52^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~205~^12.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~207~^0.34^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~210~^0.25^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~211~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~212~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~213~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~214~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~255~^83.61^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~269~^0.27^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~287~^0.02^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~303~^0.90^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~309~^1.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~323~^0.08^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~341~^0.01^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~342~^0.03^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~343~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~418~^0.00^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~573~^0.00^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~578~^0.00^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08182~^~203~^2.03^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~204~^0.45^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~205~^11.74^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~207~^0.38^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~255~^85.40^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~269~^0.25^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~303~^0.56^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~309~^0.69^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~323~^0.53^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~203~^2.00^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~204~^0.40^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~205~^13.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08183~^~207~^0.30^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~255~^83.60^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~269~^0.08^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~303~^0.62^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~309~^0.48^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~323~^0.24^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~418~^0.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~573~^0.00^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08183~^~578~^0.00^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08191~^~203~^7.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~204~^1.90^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~08191~^~205~^83.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~207~^0.80^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~08191~^~255~^6.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~269~^22.30^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2009~ -~08191~^~303~^3.46^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~309~^2.88^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~323~^0.32^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~418~^2.88^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2009~ -~08191~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08191~^~578~^2.88^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2006~ -~08192~^~203~^6.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~204~^5.30^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08192~^~205~^81.60^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08192~^~207~^1.81^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~255~^4.70^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~269~^29.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~303~^3.30^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~ -~08192~^~309~^1.60^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~323~^1.56^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~418~^2.70^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08192~^~578~^2.70^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08200~^~203~^12.64^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~204~^2.73^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~205~^72.62^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~207~^1.67^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~255~^10.35^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~269~^2.46^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~303~^2.88^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~309~^3.21^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~323~^0.66^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~06/01/1995~ -~08200~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08200~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08204~^~203~^3.34^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~204~^3.50^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~205~^87.20^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~207~^2.25^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~255~^3.42^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~269~^43.70^0^^~8~^~LC~^^~Y~^^^^^^^^~07/01/2012~ -~08204~^~303~^15.87^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08204~^~309~^0.56^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~323~^0.11^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~08204~^~418~^5.29^0^^~5~^~ML~^^~Y~^^^^^^^^~07/01/2008~ -~08204~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08204~^~578~^5.29^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~08206~^~203~^3.41^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~204~^4.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~205~^86.75^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~207~^2.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08206~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~269~^48.11^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08206~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~323~^0.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08206~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08210~^~203~^9.14^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~204~^4.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~205~^79.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~207~^3.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~255~^4.30^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08210~^~269~^25.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~303~^23.22^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~309~^13.78^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08210~^~323~^0.55^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08210~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~08211~^~203~^3.92^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~204~^7.63^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~205~^83.65^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~207~^2.05^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08211~^~269~^43.23^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~ -~08211~^~303~^19.52^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~309~^5.99^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~323~^5.39^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08211~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08214~^~203~^11.38^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~204~^4.83^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~205~^77.77^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~207~^3.27^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~08214~^~269~^16.69^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~303~^29.30^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08214~^~309~^7.18^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~323~^4.86^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~08214~^~573~^4.28^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~203~^11.23^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~204~^4.88^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~205~^78.09^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~207~^3.05^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08215~^~269~^16.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~303~^29.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~309~^7.14^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~323~^3.24^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08215~^~573~^2.66^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~06/01/2007~ -~08216~^~203~^12.38^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~204~^5.11^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~205~^74.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~207~^3.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~255~^4.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~08216~^~269~^16.34^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2009~ -~08216~^~303~^29.90^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~309~^7.72^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~323~^3.11^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08216~^~573~^2.47^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~08216~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08218~^~203~^9.66^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~204~^10.38^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~205~^74.67^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~207~^1.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~255~^3.39^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~269~^24.63^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~303~^2.69^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~309~^2.64^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~323~^1.15^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~418~^0.15^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08218~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08220~^~203~^8.42^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~204~^5.52^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~205~^80.57^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~207~^2.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~255~^3.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~269~^25.65^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~303~^2.58^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~309~^1.59^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~323~^1.07^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~418~^0.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~ -~08220~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08221~^~203~^8.12^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~204~^5.64^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~205~^74.83^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~207~^4.81^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~255~^6.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~269~^0.88^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~309~^0.66^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~323~^0.19^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08225~^~203~^8.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~204~^6.37^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~205~^75.42^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~207~^3.36^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~255~^6.56^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~269~^31.27^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~303~^11.30^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~309~^1.85^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~323~^0.46^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~418~^0.03^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~203~^8.82^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~204~^6.98^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~205~^72.41^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~207~^3.43^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~255~^8.35^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~269~^30.85^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~303~^10.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~309~^1.94^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~08228~^~323~^0.55^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~203~^17.03^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~08231~^~204~^7.97^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~205~^62.94^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~08231~^~207~^3.14^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~255~^8.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~269~^1.43^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08231~^~303~^8.07^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~309~^4.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08236~^~203~^2.03^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08236~^~204~^0.95^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~205~^7.49^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08236~^~207~^0.46^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~255~^89.07^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~303~^0.97^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~309~^0.53^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08240~^~203~^2.03^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08240~^~204~^0.95^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~205~^7.49^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08240~^~207~^0.57^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~255~^88.98^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~303~^0.97^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~309~^0.53^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08249~^~203~^2.08^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~204~^0.47^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~205~^13.49^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~207~^0.37^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~255~^83.58^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~303~^0.56^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~309~^0.61^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08252~^~203~^2.07^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~204~^0.47^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~205~^13.47^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~207~^0.54^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~255~^83.44^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~303~^0.56^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~309~^0.61^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08290~^~203~^14.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~204~^1.41^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~205~^78.15^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~08290~^~207~^3.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~255~^3.00^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2005~ -~08290~^~269~^20.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~08290~^~303~^2.54^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~309~^2.89^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~323~^0.99^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~418~^2.12^0^^~8~^~LC~^^~Y~^^^^^^^^~07/01/2008~ -~08290~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08290~^~578~^2.12^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~08305~^~203~^6.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~204~^5.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~205~^83.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~207~^2.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08305~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08305~^~269~^34.70^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~303~^9.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~309~^7.50^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~323~^0.40^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~08305~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08314~^~203~^8.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~204~^1.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~205~^79.60^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~207~^0.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~255~^10.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~269~^0.30^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~303~^4.42^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08314~^~309~^0.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~323~^0.12^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08316~^~203~^8.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~204~^1.60^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~205~^79.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~207~^0.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~255~^10.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~269~^0.64^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~303~^4.42^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08316~^~309~^0.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~323~^0.12^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~ -~08346~^~203~^3.64^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~204~^5.28^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~205~^81.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~207~^6.99^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~08346~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~269~^42.50^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~12/01/2014~ -~08347~^~203~^4.19^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~204~^4.17^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~205~^86.55^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~207~^2.59^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08347~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~269~^41.66^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08347~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~323~^0.50^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08347~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08348~^~203~^6.07^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~204~^1.12^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~205~^86.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~ -~08348~^~207~^2.80^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08348~^~255~^3.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~269~^7.82^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~303~^27.27^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~309~^11.35^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08348~^~418~^4.55^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08349~^~203~^4.69^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~204~^3.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~205~^85.94^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~207~^3.67^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08349~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~269~^45.31^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~303~^28.12^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~309~^11.72^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~323~^0.01^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08349~^~418~^4.69^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~578~^4.69^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2015~ -~08351~^~203~^7.62^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~204~^7.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~205~^79.68^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~207~^2.87^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08351~^~269~^29.29^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~303~^1.97^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~309~^1.42^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08351~^~323~^3.71^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~203~^11.45^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~204~^5.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~205~^75.41^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~207~^4.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~255~^4.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~269~^15.57^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~303~^4.07^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~309~^2.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~323~^4.49^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08353~^~203~^10.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~204~^4.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~205~^79.79^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~207~^2.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~269~^25.37^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~303~^3.24^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~309~^2.63^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~323~^4.53^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~203~^4.55^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~204~^1.45^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~205~^88.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~207~^2.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~269~^44.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~303~^1.87^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~309~^1.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~323~^2.51^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08354~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~203~^4.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~204~^1.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~205~^89.91^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~207~^1.77^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~269~^43.12^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~303~^2.06^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~309~^1.11^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~323~^2.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~203~^17.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~204~^5.16^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~205~^59.51^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~207~^6.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~255~^11.72^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~303~^13.88^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~309~^11.23^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~418~^0.23^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08365~^~203~^11.24^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~204~^2.01^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~205~^81.01^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~207~^1.54^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~255~^4.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~269~^0.81^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~303~^3.33^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~309~^2.54^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~323~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08365~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~203~^31.43^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~204~^9.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~205~^49.38^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~207~^4.82^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~255~^4.78^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~269~^7.14^0^^~8~^~LC~^^^^^^^^^^~08/01/2014~ -~08366~^~303~^8.34^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~309~^16.01^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~323~^19.29^0^^~8~^~LC~^^^^^^^^^^~08/01/2014~ -~08366~^~418~^0.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08402~^~203~^13.70^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~204~^6.87^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~205~^68.18^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~207~^1.87^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~255~^9.37^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~269~^1.42^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~303~^4.64^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~309~^3.20^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~323~^0.42^0^^~4~^~BFZN~^~08120~^^^^^^^^^~02/01/2014~ -~08402~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08409~^~203~^4.25^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~204~^0.87^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~205~^90.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~207~^1.68^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08409~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~269~^39.27^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08409~^~303~^11.60^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~309~^0.24^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~323~^0.09^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~418~^4.84^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08409~^~578~^4.84^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2014~ -~08410~^~203~^10.39^4^0.20^~1~^~A~^^^1^9.81^10.75^3^9.74^11.03^~2, 3~^~08/01/2012~ -~08410~^~204~^5.10^4^0.10^~1~^~A~^^^1^4.90^5.40^3^4.75^5.44^~2, 3~^~08/01/2012~ -~08410~^~205~^74.52^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~207~^2.63^4^0.06^~1~^~A~^^^1^2.50^2.78^3^2.40^2.84^~2, 3~^~08/01/2012~ -~08410~^~209~^45.27^3^0.23^~1~^~A~^^^1^44.90^45.70^2^44.26^46.27^~2, 3~^~08/01/2012~ -~08410~^~210~^20.39^2^^~1~^~A~^^^1^20.39^20.39^^^^^~08/01/2012~ -~08410~^~211~^0.25^2^^~1~^~A~^^^1^0.20^0.30^1^^^^~08/01/2012~ -~08410~^~212~^0.20^2^^~1~^~A~^^^1^0.20^0.20^^^^^~08/01/2012~ -~08410~^~213~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08410~^~214~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08410~^~255~^7.37^4^0.05^~1~^~A~^^^1^7.30^7.53^3^7.19^7.54^~2, 3~^~08/01/2012~ -~08410~^~269~^21.14^2^^~1~^~A~^^^1^21.09^21.19^1^^^^~08/01/2012~ -~08410~^~287~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08410~^~303~^8.31^4^0.22^~1~^~A~^^~Y~^1^7.65^8.67^3^7.59^9.03^~2, 3~^~08/01/2012~ -~08410~^~309~^2.60^4^0.06^~1~^~A~^^^1^2.41^2.71^3^2.39^2.80^~2, 3~^~08/01/2012~ -~08410~^~323~^0.50^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~341~^0.18^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~344~^0.85^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~345~^0.10^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08411~^~203~^8.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~204~^7.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~205~^73.68^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~207~^3.18^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~255~^6.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~269~^28.91^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~303~^7.91^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~309~^2.01^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~323~^0.43^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08417~^~203~^8.97^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~204~^4.85^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~205~^75.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~207~^3.72^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~255~^6.77^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~269~^29.45^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~303~^10.07^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~309~^2.07^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~323~^0.44^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~ -~08435~^~203~^15.98^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~204~^11.60^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~205~^65.78^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~08435~^~207~^2.21^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~210~^0.94^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~211~^0.41^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~212~^0.21^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08435~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08435~^~255~^4.43^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~269~^1.56^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~ -~08435~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~08435~^~303~^4.03^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~309~^3.87^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~323~^0.90^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~08435~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~08435~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08435~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~08436~^~203~^9.11^4^0.14^~1~^~A~^^^1^8.88^9.44^3^8.66^9.55^~2, 3~^~08/01/2012~ -~08436~^~204~^4.00^4^0.12^~1~^~A~^^^1^3.70^4.30^3^3.58^4.40^~2, 3~^~08/01/2012~ -~08436~^~205~^75.68^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~207~^2.76^4^0.02^~1~^~A~^^^1^2.69^2.82^3^2.67^2.84^~2, 3~^~08/01/2012~ -~08436~^~209~^31.78^2^^~1~^~A~^^^1^31.55^32.00^1^^^^~08/01/2012~ -~08436~^~210~^20.05^2^^~1~^~A~^^^1^19.60^20.50^1^^^^~08/01/2012~ -~08436~^~211~^7.60^2^^~1~^~A~^^^1^7.19^8.00^1^^^^~08/01/2012~ -~08436~^~212~^7.70^2^^~1~^~A~^^^1^7.40^8.00^1^^^^~08/01/2012~ -~08436~^~213~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08436~^~214~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08436~^~255~^8.45^4^0.08^~1~^~A~^^^1^8.31^8.69^3^8.18^8.71^~2, 3~^~08/01/2012~ -~08436~^~269~^35.65^2^^~1~^~A~^^^1^35.39^35.90^1^^^^~08/01/2012~ -~08436~^~287~^0.10^2^^~1~^~A~^^^1^0.10^0.10^^^^^~08/01/2012~ -~08436~^~303~^9.10^4^0.26^~1~^~A~^^~Y~^1^8.56^9.57^3^8.26^9.93^~2, 3~^~08/01/2012~ -~08436~^~309~^1.98^4^0.03^~1~^~A~^^^1^1.89^2.04^3^1.87^2.07^~2, 3~^~08/01/2012~ -~08436~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~341~^0.26^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~344~^0.57^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~345~^0.07^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~08444~^~203~^9.83^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~204~^1.58^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~205~^75.86^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~207~^5.67^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~255~^7.06^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~269~^0.71^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~303~^42.03^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~309~^0.48^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08444~^~323~^0.11^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~203~^8.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~204~^4.67^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~205~^74.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~207~^5.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~255~^6.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~269~^2.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~303~^30.38^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08449~^~309~^0.42^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~323~^0.11^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~418~^0.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08450~^~203~^10.73^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~204~^4.68^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~205~^71.08^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~207~^6.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~255~^6.82^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~269~^2.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~303~^38.20^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~309~^0.58^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~323~^0.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~418~^0.42^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~203~^13.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~204~^6.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~205~^68.18^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~207~^1.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~255~^9.38^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08451~^~269~^1.42^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08451~^~303~^49.45^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2003~ -~08451~^~309~^3.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~323~^0.66^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08451~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08452~^~203~^11.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~204~^2.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~205~^74.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~207~^1.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~255~^9.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~269~^2.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~303~^3.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~309~^4.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~323~^0.94^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08476~^~203~^3.45^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~204~^1.72^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~205~^89.66^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~207~^3.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~08476~^~255~^1.88^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08476~^~269~^37.93^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~303~^31.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~309~^12.93^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~418~^5.17^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~203~^5.77^3^0.22^~1~^~A~^^^1^5.44^6.19^2^4.82^6.71^~2, 3~^~04/01/2007~ -~08478~^~204~^0.89^3^0.20^~1~^~A~^^^1^0.63^1.29^2^0.01^1.76^~2, 3~^~04/01/2007~ -~08478~^~205~^89.72^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~207~^0.86^3^0.03^~1~^~A~^^^1^0.79^0.92^2^0.69^1.02^~2, 3~^~04/01/2007~ -~08478~^~209~^21.37^3^0.24^~1~^~A~^^^1^20.90^21.70^2^20.33^22.40^~2, 3~^~04/01/2007~ -~08478~^~210~^35.45^3^1.13^~1~^~A~^^^1^33.90^37.66^2^30.56^40.33^~2, 3~^~04/01/2007~ -~08478~^~211~^8.25^3^0.58^~1~^~A~^^^1^7.51^9.40^2^5.75^10.75^~2, 3~^~04/01/2007~ -~08478~^~212~^3.13^3^0.64^~1~^~A~^^^1^2.42^4.42^2^0.35^5.91^~2, 3~^~04/01/2007~ -~08478~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~08478~^~214~^4.51^3^0.30^~1~^~A~^^^1^3.90^4.87^2^3.19^5.82^~2, 3~^~04/01/2007~ -~08478~^~255~^2.76^3^0.17^~1~^~A~^^^1^2.50^3.08^2^2.02^3.49^~2, 3~^~04/01/2007~ -~08478~^~269~^51.34^3^1.74^~1~^~A~^^^1^47.86^53.35^2^43.82^58.84^~2, 3~^~04/01/2007~ -~08478~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~08478~^~303~^7.92^3^0.11^~1~^~A~^^^1^7.68^8.06^2^7.40^8.43^~2, 3~^~06/01/2007~ -~08478~^~309~^7.30^3^0.12^~1~^~A~^^^1^7.10^7.53^2^6.76^7.84^~2, 3~^~06/01/2007~ -~08478~^~323~^0.43^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~418~^6.67^3^0.08^~1~^~A~^^~Y~^1^6.50^6.80^2^6.28^7.04^~2, 3~^~05/01/2009~ -~08478~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~08478~^~578~^6.67^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2007~ -~08481~^~203~^4.46^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~204~^9.97^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~205~^74.68^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~207~^7.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08481~^~255~^3.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~269~^32.70^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08481~^~303~^33.81^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~309~^13.94^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~323~^0.31^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~418~^5.76^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08484~^~203~^7.63^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~204~^1.87^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~205~^80.37^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~207~^2.63^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~08484~^~255~^7.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~269~^33.04^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~303~^15.25^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~309~^6.36^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~323~^0.18^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08484~^~418~^2.53^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~08484~^~578~^2.53^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2015~ -~08487~^~203~^4.90^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~204~^11.48^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~205~^79.91^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~207~^2.61^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08487~^~255~^1.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~269~^35.36^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~303~^34.29^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~309~^14.68^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~323~^0.97^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08487~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~ -~08488~^~203~^10.48^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~204~^0.49^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~205~^77.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~207~^1.40^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08488~^~255~^9.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~269~^0.70^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08488~^~303~^40.93^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08488~^~309~^0.51^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~323~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08488~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~ -~08489~^~203~^8.82^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~204~^0.47^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~205~^80.52^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~207~^4.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08489~^~255~^5.90^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~269~^28.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~303~^31.29^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~309~^0.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~323~^0.03^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08491~^~203~^8.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~204~^4.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~205~^79.84^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~207~^4.10^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08491~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~269~^30.17^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~303~^3.02^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~309~^0.01^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~418~^0.02^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~203~^4.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~204~^2.71^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~205~^87.30^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~207~^2.98^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08493~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~269~^44.61^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~303~^27.27^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~309~^11.21^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~323~^0.03^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~418~^4.55^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~ -~08494~^~203~^3.32^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~204~^12.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~205~^78.33^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~207~^3.29^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08494~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~269~^32.86^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~323~^0.43^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08494~^~578~^5.00^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2015~ -~08495~^~203~^4.15^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~204~^3.43^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~205~^87.93^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~207~^1.49^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08495~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~269~^43.15^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~303~^6.21^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~309~^5.96^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~323~^0.06^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~418~^5.17^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~08495~^~578~^5.17^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~ -~08500~^~203~^9.09^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~204~^1.94^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~205~^81.81^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~207~^1.66^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08500~^~255~^5.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~269~^20.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~303~^29.45^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~309~^6.82^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~323~^0.86^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~418~^2.73^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~08500~^~578~^2.73^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2015~ -~08501~^~203~^3.90^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~204~^3.15^0^^~4~^~NR~^^^^^^^^^^~01/01/2005~ -~08501~^~205~^90.10^1^^~9~^~MC~^^^^^^^^^^~10/01/2008~ -~08501~^~207~^1.70^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~255~^1.20^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~269~^42.60^1^^~12~^~MA~^^~Y~^^^^^^^^~05/01/2009~ -~08501~^~303~^7.62^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~309~^5.99^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~323~^1.27^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~418~^6.90^1^^~12~^~MA~^^~Y~^^^^^^^^~05/01/2009~ -~08501~^~573~^0.00^0^^~4~^~FLA~^^~N~^^^^^^^^~10/01/2008~ -~08501~^~578~^6.90^0^^~4~^~NR~^^~Y~^^^^^^^^~10/01/2008~ -~08504~^~203~^10.21^3^0.02^~1~^~A~^^^1^10.19^10.25^2^10.11^10.29^~2, 3~^~03/01/2005~ -~08504~^~204~^3.36^3^0.20^~1~^~A~^^^1^2.96^3.60^2^2.49^4.23^~2, 3~^~03/01/2005~ -~08504~^~205~^79.77^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08504~^~207~^4.13^3^0.02^~1~^~A~^^^1^4.08^4.17^2^4.01^4.24^~2, 3~^~03/01/2005~ -~08504~^~210~^12.51^3^0.17^~1~^~A~^^^1^12.28^12.84^2^11.77^13.24^~2, 3~^~03/01/2005~ -~08504~^~211~^2.02^3^0.03^~1~^~A~^^^1^1.96^2.06^2^1.88^2.15^~2, 3~^~03/01/2005~ -~08504~^~212~^2.27^3^0.02^~1~^~A~^^^1^2.24^2.32^2^2.16^2.37^~2, 3~^~03/01/2005~ -~08504~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~214~^0.37^3^0.02^~1~^~A~^^^1^0.34^0.42^2^0.26^0.48^~2, 3~^~03/01/2005~ -~08504~^~255~^2.53^3^0.11^~1~^~A~^^^1^2.31^2.70^2^2.03^3.02^~2, 3~^~03/01/2005~ -~08504~^~269~^17.17^3^0.11^~1~^~A~^^^1^17.00^17.38^2^16.69^17.65^~2, 3~^~03/01/2005~ -~08504~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~303~^67.67^3^6.38^~1~^~A~^^~Y~^1^56.00^78.00^2^40.19^95.14^~2, 3~^~01/01/2007~ -~08504~^~309~^64.33^3^1.20^~1~^~A~^^~Y~^1^62.00^66.00^2^59.16^69.50^~2, 3~^~01/01/2007~ -~08504~^~323~^80.46^3^1.46^~1~^~A~^^~Y~^1^78.54^83.34^2^74.15^86.76^~2, 3~^~01/01/2007~ -~08504~^~341~^0.16^3^3.0e-03^~1~^~A~^^^1^0.16^0.17^2^0.14^0.17^~2, 3~^~03/01/2005~ -~08504~^~342~^2.43^3^0.03^~1~^~A~^^^1^2.38^2.50^2^2.28^2.58^~2, 3~^~03/01/2005~ -~08504~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~418~^20.69^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08505~^~203~^5.83^3^0.04^~1~^~A~^^^1^5.75^5.87^2^5.65^6.01^~2, 3~^~03/01/2005~ -~08505~^~204~^1.05^3^3.0e-03^~1~^~A~^^^1^1.05^1.06^2^1.03^1.06^~2, 3~^~03/01/2005~ -~08505~^~205~^85.79^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08505~^~207~^3.74^3^0.01^~1~^~A~^^^1^3.71^3.76^2^3.67^3.79^~2, 3~^~03/01/2005~ -~08505~^~210~^9.51^3^0.07^~1~^~A~^^^1^9.42^9.66^2^9.17^9.84^~2, 3~^~03/01/2005~ -~08505~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~255~^3.59^3^0.05^~1~^~A~^^^1^3.48^3.67^2^3.34^3.82^~2, 3~^~03/01/2005~ -~08505~^~269~^9.51^3^0.07^~1~^~A~^^^1^9.42^9.66^2^9.17^9.84^~2, 3~^~03/01/2005~ -~08505~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~303~^38.37^3^0.68^~1~^~A~^^~Y~^1^37.00^39.10^2^35.42^41.30^~2, 3~^~03/01/2005~ -~08505~^~309~^17.13^3^0.27^~1~^~A~^^~Y~^1^16.60^17.50^2^15.95^18.30^~2, 3~^~05/01/2009~ -~08505~^~323~^0.10^3^0.03^~1~^~A~^^^1^0.06^0.18^2^-0.06^0.26^~2, 3~^~03/01/2005~ -~08505~^~341~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~03/01/2005~ -~08505~^~342~^0.09^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.04^0.14^~2, 3~^~03/01/2005~ -~08505~^~343~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.03^~1, 2, 3~^~03/01/2005~ -~08505~^~344~^0.24^3^0.01^~1~^~A~^^^1^0.22^0.26^2^0.19^0.29^~2, 3~^~03/01/2005~ -~08505~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~346~^0.31^3^9.0e-03^~1~^~A~^^^1^0.29^0.32^2^0.26^0.34^~2, 3~^~03/01/2005~ -~08505~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~418~^5.00^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08506~^~203~^5.90^3^0.02^~1~^~A~^^^1^5.87^5.94^2^5.80^5.98^~2, 3~^~03/01/2005~ -~08506~^~204~^0.91^3^0.02^~1~^~A~^^^1^0.89^0.95^2^0.82^0.99^~2, 3~^~03/01/2005~ -~08506~^~205~^88.01^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~08506~^~207~^1.88^3^0.00^~1~^~A~^^^1^1.88^1.88^^^^~2, 3~^~03/01/2005~ -~08506~^~209~^60.42^3^7.66^~1~^~A~^^^1^47.99^74.40^2^27.44^93.39^~2, 3~^~03/01/2005~ -~08506~^~210~^4.61^3^0.06^~1~^~A~^^^1^4.51^4.72^2^4.34^4.88^~2, 3~^~03/01/2005~ -~08506~^~211~^1.48^3^7.0e-03^~1~^~A~^^^1^1.47^1.49^2^1.45^1.50^~2, 3~^~03/01/2005~ -~08506~^~212~^1.34^3^0.01^~1~^~A~^^^1^1.31^1.37^2^1.25^1.42^~2, 3~^~03/01/2005~ -~08506~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~214~^0.40^3^0.02^~1~^~A~^^^1^0.36^0.44^2^0.30^0.50^~2, 3~^~03/01/2005~ -~08506~^~255~^3.31^3^0.14^~1~^~A~^^^1^3.03^3.52^2^2.68^3.93^~2, 3~^~03/01/2005~ -~08506~^~269~^7.84^3^0.06^~1~^~A~^^^1^7.72^7.96^2^7.54^8.13^~2, 3~^~03/01/2005~ -~08506~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~303~^19.40^3^0.36^~1~^~A~^^~Y~^1^18.70^19.90^2^17.84^20.95^~2, 3~^~01/01/2007~ -~08506~^~309~^0.20^3^0.02^~1~^~A~^^^1^0.15^0.25^2^0.07^0.32^~2, 3~^~01/01/2007~ -~08506~^~323~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~03/01/2005~ -~08506~^~341~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~342~^0.06^3^3.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.04^0.07^~2, 3~^~03/01/2005~ -~08506~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~344~^0.19^3^0.00^~1~^~A~^^^1^0.19^0.19^^^^~2, 3~^~03/01/2005~ -~08506~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~346~^0.26^3^3.0e-03^~1~^~A~^^^1^0.25^0.26^2^0.24^0.27^~2, 3~^~03/01/2005~ -~08506~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~418~^5.36^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~203~^5.94^3^0.13^~1~^~A~^^^1^5.75^6.19^2^5.37^6.49^~2, 3~^~03/01/2005~ -~08507~^~204~^0.95^3^0.15^~1~^~A~^^^1^0.65^1.11^2^0.30^1.59^~2, 3~^~03/01/2005~ -~08507~^~205~^86.78^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08507~^~207~^2.26^3^3.0e-03^~1~^~A~^^^1^2.26^2.27^2^2.24^2.27^~2, 3~^~03/01/2005~ -~08507~^~210~^13.74^3^0.06^~1~^~A~^^^1^9.41^9.60^2^9.27^9.79^~2, 3~^~02/01/2014~ -~08507~^~211~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~212~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.11^0.17^~1, 2, 3~^~02/01/2014~ -~08507~^~213~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~214~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~255~^4.07^3^0.22^~1~^~A~^^^1^3.66^4.43^2^3.10^5.03^~2, 3~^~03/01/2005~ -~08507~^~269~^13.79^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08507~^~287~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~303~^27.93^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~309~^7.43^3^0.12^~1~^~A~^^~Y~^1^7.18^7.57^2^6.89^7.96^~2, 3~^~04/01/2005~ -~08507~^~323~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.06^~2, 3~^~03/01/2005~ -~08507~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~342~^0.06^3^6.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.03^0.08^~2, 3~^~03/01/2005~ -~08507~^~343~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~03/01/2005~ -~08507~^~344~^0.12^3^6.0e-03^~1~^~A~^^^1^0.11^0.13^2^0.09^0.14^~2, 3~^~03/01/2005~ -~08507~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~346~^0.21^3^0.01^~1~^~A~^^^1^0.18^0.23^2^0.14^0.26^~2, 3~^~03/01/2005~ -~08507~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~418~^7.24^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08510~^~203~^6.47^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~204~^10.98^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~205~^72.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~207~^1.76^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~255~^8.69^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~269~^45.97^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~08510~^~303~^5.99^2^^~8~^~LC~^^^1^4.15^7.83^1^^^^~08/01/2015~ -~08510~^~309~^0.84^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~323~^0.42^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~418~^2.00^2^^~8~^~LC~^^^1^1.38^2.61^1^^^^~02/01/2009~ -~08510~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~578~^1.51^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~08511~^~203~^1.67^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~204~^0.09^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~205~^10.09^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~207~^0.26^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~08511~^~255~^88.29^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~269~^0.13^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~08511~^~303~^5.19^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~309~^0.07^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~323~^0.01^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08511~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~203~^1.37^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~204~^0.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~205~^9.22^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~08512~^~207~^0.26^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~08512~^~255~^89.15^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~269~^2.17^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~303~^5.59^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~309~^0.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~323~^0.27^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08544~^~203~^8.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~204~^5.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~205~^76.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~207~^2.40^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~08544~^~255~^6.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~269~^25.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~303~^3.80^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~309~^3.10^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~323~^5.63^0^^~8~^~LC~^^~Y~^^^^^^^^~07/01/2013~ -~08544~^~418~^3.10^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~573~^2.95^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2013~ -~08544~^~578~^3.10^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08546~^~203~^9.09^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~204~^9.09^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~205~^72.73^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~207~^1.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~255~^7.50^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~08546~^~269~^31.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~303~^2.56^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~08546~^~309~^1.78^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~323~^2.94^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~08546~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~08546~^~573~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~08546~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~08549~^~203~^9.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~204~^4.14^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~205~^78.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~207~^3.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~255~^4.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~269~^23.12^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~303~^29.73^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~309~^13.82^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~323~^0.57^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08550~^~203~^4.44^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~204~^4.83^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~205~^85.92^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~207~^2.31^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~269~^44.31^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~303~^19.78^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~309~^16.36^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~323~^0.42^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2011~ -~08550~^~578~^0.00^0^^~4~^~NR~^^~N~^^^^^^^^~05/01/2011~ -~08554~^~203~^8.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~204~^8.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~205~^77.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~207~^2.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08554~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~269~^22.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~303~^3.50^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~309~^2.90^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~323~^0.99^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~418~^2.90^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~578~^2.90^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~ -~08571~^~203~^11.23^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~204~^18.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~205~^66.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~207~^1.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08571~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~269~^18.17^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~303~^4.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~309~^0.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~323~^0.89^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08573~^~203~^11.61^4^0.08^~1~^~A~^^^1^11.51^11.86^3^11.35^11.87^~2, 3~^~11/01/2008~ -~08573~^~204~^1.41^4^0.12^~1~^~A~^^^1^1.04^1.60^3^1.00^1.81^~2, 3~^~11/01/2008~ -~08573~^~205~^71.79^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~207~^3.62^4^0.18^~1~^~A~^^^1^3.41^4.17^3^3.04^4.20^~2, 3~^~11/01/2008~ -~08573~^~210~^0.39^4^0.01^~1~^~A~^^^1^0.37^0.42^3^0.35^0.43^~2, 3~^~11/01/2008~ -~08573~^~211~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~212~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~213~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~214~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~255~^11.56^4^0.09^~1~^~A~^^^1^11.35^11.73^3^11.25^11.86^~2, 3~^~11/01/2008~ -~08573~^~269~^0.47^4^0.01^~1~^~A~^^^1^0.44^0.49^3^0.42^0.51^~2, 3~^~11/01/2008~ -~08573~^~287~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~303~^32.02^4^2.26^~1~^~A~^^^1^27.00^37.90^3^24.82^39.22^~2, 3~^~11/01/2008~ -~08573~^~309~^1.35^4^0.03^~1~^~A~^^^1^1.30^1.45^3^1.24^1.46^~2, 3~^~11/01/2008~ -~08573~^~323~^0.37^4^0.01^~1~^~A~^^^1^0.35^0.39^3^0.33^0.40^~2, 3~^~11/01/2008~ -~08573~^~341~^0.11^4^4.0e-03^~1~^~A~^^^1^0.10^0.12^3^0.09^0.12^~2, 3~^~11/01/2008~ -~08573~^~342~^1.06^4^0.02^~1~^~A~^^^1^1.00^1.10^3^0.99^1.14^~2, 3~^~11/01/2008~ -~08573~^~343~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~344~^0.10^4^2.0e-03^~1~^~A~^^^1^0.10^0.11^3^0.09^0.11^~2, 3~^~11/01/2008~ -~08573~^~345~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~11/01/2008~ -~08573~^~347~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~203~^1.44^3^0.10^~1~^~A~^^^1^1.25^1.60^2^1.01^1.87^~2, 3~^~11/01/2008~ -~08574~^~204~^0.20^3^0.07^~1~^~A~^^^1^0.10^0.34^2^-0.10^0.51^~2, 3~^~11/01/2008~ -~08574~^~205~^11.74^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~207~^0.42^3^0.01^~1~^~A~^^^1^0.39^0.45^2^0.34^0.49^~2, 3~^~11/01/2008~ -~08574~^~210~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~211~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~212~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~213~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~214~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~255~^86.20^3^0.84^~1~^~A~^^^1^84.83^87.74^2^82.56^89.83^~2, 3~^~11/01/2008~ -~08574~^~269~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~2, 3~^~11/01/2008~ -~08574~^~287~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~303~^4.09^3^0.20^~1~^~A~^^^1^3.69^4.37^2^3.20^4.97^~2, 3~^~11/01/2008~ -~08574~^~309~^0.22^3^0.01^~1~^~A~^^^1^0.19^0.24^2^0.16^0.27^~2, 3~^~11/01/2008~ -~08574~^~323~^0.04^3^7.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.07^~2, 3~^~11/01/2008~ -~08574~^~341~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^9.0e-03^0.02^~1, 2, 3~^~11/01/2008~ -~08574~^~342~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.17^2^0.10^0.20^~2, 3~^~11/01/2008~ -~08574~^~343~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~344~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^0.01^0.02^~1, 2, 3~^~11/01/2008~ -~08574~^~345~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~346~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~347~^0.00^3^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~203~^1.88^4^0.02^~1~^~A~^^^1^1.82^1.94^3^1.80^1.95^~2, 3~^~11/01/2008~ -~08575~^~204~^0.37^4^0.03^~1~^~A~^^^1^0.29^0.46^3^0.25^0.49^~2, 3~^~11/01/2008~ -~08575~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~207~^0.54^4^0.01^~1~^~A~^^^1^0.50^0.58^3^0.49^0.59^~2, 3~^~11/01/2008~ -~08575~^~210~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~211~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~212~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~213~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~214~^0.27^4^0.10^~1~^~A~^^^1^0.10^0.58^3^-0.07^0.61^~2, 3~^~11/01/2008~ -~08575~^~255~^87.11^4^1.01^~1~^~A~^^^1^85.00^89.79^3^83.89^90.32^~2, 3~^~11/01/2008~ -~08575~^~269~^0.34^4^0.10^~1~^~A~^^^1^0.18^0.66^3^0.00^0.68^~2, 3~^~11/01/2008~ -~08575~^~287~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~303~^4.98^4^0.13^~1~^~A~^^^1^4.70^5.36^3^4.54^5.41^~2, 3~^~11/01/2008~ -~08575~^~309~^0.26^4^0.02^~1~^~A~^^^1^0.22^0.33^3^0.18^0.33^~2, 3~^~11/01/2008~ -~08575~^~323~^0.06^4^7.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.03^0.08^~2, 3~^~11/01/2008~ -~08575~^~341~^0.02^4^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~11/01/2008~ -~08575~^~342~^0.16^4^5.0e-03^~1~^~A~^^^1^0.16^0.18^3^0.14^0.18^~2, 3~^~11/01/2008~ -~08575~^~343~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~344~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.03^~1, 2, 3~^~11/01/2008~ -~08575~^~345~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~346~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~347~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~203~^11.77^4^0.05^~1~^~A~^^^1^11.68^11.91^3^11.59^11.94^~2, 3~^~11/01/2008~ -~08576~^~204~^1.47^4^0.06^~1~^~A~^^^1^1.31^1.61^3^1.27^1.67^~2, 3~^~11/01/2008~ -~08576~^~205~^72.63^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~207~^2.72^4^0.13^~1~^~A~^^^1^2.47^3.00^3^2.30^3.13^~2, 3~^~11/01/2008~ -~08576~^~210~^0.41^4^0.01^~1~^~A~^^^1^0.38^0.45^3^0.36^0.45^~2, 3~^~11/01/2008~ -~08576~^~211~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~212~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~213~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~214~^0.10^4^0.02^~1~^~A~^^^1^0.07^0.16^3^0.02^0.16^~1, 2, 3~^~11/01/2008~ -~08576~^~255~^11.41^4^0.06^~1~^~A~^^^1^11.26^11.58^3^11.18^11.62^~2, 3~^~11/01/2008~ -~08576~^~269~^0.51^4^0.03^~1~^~A~^^^1^0.46^0.61^3^0.39^0.61^~2, 3~^~11/01/2008~ -~08576~^~287~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~303~^29.75^4^3.04^~1~^~A~^^^1^21.10^34.90^3^20.05^39.44^~2, 3~^~11/01/2008~ -~08576~^~309~^1.35^4^0.02^~1~^~A~^^^1^1.28^1.41^3^1.26^1.44^~2, 3~^~11/01/2008~ -~08576~^~323~^0.31^4^0.00^~1~^~A~^^^1^0.31^0.31^^^^~2, 3~^~11/01/2008~ -~08576~^~341~^0.10^4^2.0e-03^~1~^~A~^^^1^0.10^0.11^3^0.09^0.11^~2, 3~^~11/01/2008~ -~08576~^~342~^1.00^4^0.01^~1~^~A~^^^1^0.96^1.04^3^0.94^1.05^~2, 3~^~11/01/2008~ -~08576~^~343~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~344~^0.08^4^3.0e-03^~1~^~A~^^^1^0.08^0.09^3^0.07^0.09^~2, 3~^~11/01/2008~ -~08576~^~345~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~346~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~347~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~203~^1.65^4^0.06^~1~^~A~^^^1^1.48^1.77^3^1.45^1.84^~2, 3~^~11/01/2008~ -~08577~^~204~^0.42^4^0.04^~1~^~A~^^^1^0.32^0.52^3^0.29^0.55^~2, 3~^~11/01/2008~ -~08577~^~205~^11.16^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~207~^0.37^4^0.02^~1~^~A~^^^1^0.32^0.42^3^0.29^0.43^~2, 3~^~11/01/2008~ -~08577~^~209~^12.92^4^0.57^~1~^~A~^^^1^11.20^13.60^3^11.09^14.76^~2, 3~^~11/01/2008~ -~08577~^~210~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~11/01/2008~ -~08577~^~211~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08577~^~212~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08577~^~213~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08577~^~214~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08577~^~255~^86.40^4^0.12^~1~^~A~^^^1^86.12^86.73^3^85.99^86.81^~2, 3~^~11/01/2008~ -~08577~^~269~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~11/01/2008~ -~08577~^~287~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08577~^~303~^4.70^4^0.49^~1~^~A~^^^1^3.56^5.92^3^3.13^6.27^~2, 3~^~11/01/2008~ -~08577~^~309~^0.26^4^0.02^~1~^~A~^^^1^0.22^0.32^3^0.19^0.33^~2, 3~^~11/01/2008~ -~08577~^~323~^0.03^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~11/01/2008~ -~08577~^~341~^0.02^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~11/01/2008~ -~08577~^~342~^0.14^4^8.0e-03^~1~^~A~^^^1^0.13^0.16^3^0.11^0.16^~2, 3~^~11/01/2008~ -~08577~^~343~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~344~^0.01^4^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~345~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~346~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~347~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~203~^1.95^4^0.02^~1~^~A~^^^1^1.88^1.99^3^1.86^2.03^~2, 3~^~11/01/2008~ -~08578~^~204~^0.37^4^0.01^~1~^~A~^^^1^0.33^0.40^3^0.32^0.42^~2, 3~^~11/01/2008~ -~08578~^~205~^10.67^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~207~^0.49^4^0.04^~1~^~A~^^^1^0.42^0.63^3^0.33^0.64^~2, 3~^~11/01/2008~ -~08578~^~209~^5.17^3^0.31^~1~^~A~^^^1^4.60^5.70^2^3.79^6.53^~2, 3~^~11/01/2008~ -~08578~^~210~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~11/01/2008~ -~08578~^~211~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08578~^~212~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08578~^~213~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08578~^~214~^2.91^2^^~1~^~A~^^^1^2.88^2.94^1^^^^~11/01/2008~ -~08578~^~255~^86.51^4^0.44^~1~^~A~^^^1^85.80^87.79^3^85.09^87.92^~2, 3~^~11/01/2008~ -~08578~^~269~^2.98^2^^~1~^~A~^^^1^2.95^3.01^1^^^^~11/01/2008~ -~08578~^~287~^0.00^2^^~1~^~A~^^~N~^1^0.00^0.00^^^^~1~^~11/01/2008~ -~08578~^~303~^4.88^4^0.40^~1~^~A~^^^1^3.73^5.59^3^3.60^6.16^~2, 3~^~11/01/2008~ -~08578~^~309~^0.25^4^0.01^~1~^~A~^^^1^0.23^0.28^3^0.21^0.29^~2, 3~^~11/01/2008~ -~08578~^~323~^0.04^4^4.0e-03^~1~^~A~^^^1^0.03^0.05^3^0.02^0.05^~2, 3~^~11/01/2008~ -~08578~^~341~^0.02^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~11/01/2008~ -~08578~^~342~^0.15^4^4.0e-03^~1~^~A~^^^1^0.14^0.16^3^0.13^0.16^~2, 3~^~11/01/2008~ -~08578~^~343~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~344~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.02^~1, 2, 3~^~11/01/2008~ -~08578~^~345~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~346~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~347~^0.00^4^0.00^~1~^~A~^^~N~^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2008~ -~08580~^~203~^21.75^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~204~^5.58^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~205~^60.53^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~08580~^~207~^4.67^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~209~^44.80^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~255~^7.47^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~303~^22.00^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~309~^23.00^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~323~^0.36^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~341~^0.07^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~342~^1.59^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~343~^0.27^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~344~^0.25^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~08580~^~346~^0.52^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~08580~^~418~^1.50^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08625~^~203~^4.41^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~204~^5.66^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~205~^85.14^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~207~^2.27^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08625~^~255~^2.48^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~269~^43.82^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~303~^19.60^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~309~^15.42^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~323~^0.42^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~203~^9.21^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~204~^11.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~205~^74.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~207~^1.79^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~255~^3.21^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~269~^27.43^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~303~^2.47^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~309~^2.44^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~323~^1.63^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~418~^0.14^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08628~^~203~^9.17^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~204~^4.06^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~205~^78.86^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~207~^3.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~255~^4.30^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~269~^24.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~303~^28.69^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~309~^13.47^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~323~^0.56^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08629~^~203~^4.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~204~^3.99^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~205~^87.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~207~^1.81^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~269~^44.18^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~303~^21.57^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~309~^17.98^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~323~^0.63^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08632~^~203~^11.30^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~204~^4.83^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~205~^78.04^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~207~^3.08^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~269~^16.82^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08632~^~303~^29.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~309~^7.18^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08633~^~203~^7.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~204~^5.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~205~^81.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~207~^2.10^0^^~4~^~BFZN~^~43570~^^^^^^^^^~02/01/2013~ -~08633~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~269~^20.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08633~^~303~^28.90^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~309~^6.70^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08633~^~323~^0.94^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08633~^~418~^2.70^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2011~ -~08633~^~578~^2.70^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08639~^~203~^11.26^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~204~^6.11^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~205~^69.45^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~207~^4.73^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~255~^8.45^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~269~^11.91^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08639~^~303~^12.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~309~^2.62^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~323~^0.56^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~203~^16.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~204~^6.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~205~^67.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~207~^1.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~255~^8.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~269~^1.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~303~^4.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~309~^3.07^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~323~^0.47^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~ -~08641~^~203~^10.16^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~204~^7.46^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~205~^71.57^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~207~^3.42^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~255~^7.39^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~269~^17.66^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~303~^12.13^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~309~^2.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~323~^0.64^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~418~^0.03^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08642~^~203~^10.29^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~204~^5.64^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~205~^72.17^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~207~^3.95^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~255~^7.94^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~269~^17.78^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~303~^12.77^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~309~^2.39^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~323~^0.49^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08655~^~203~^7.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~204~^5.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~205~^82.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~207~^2.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08655~^~255~^2.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~269~^21.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~303~^15.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~309~^1.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~323~^0.50^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~418~^5.20^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~08655~^~578~^5.20^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~08656~^~203~^11.91^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~204~^5.46^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~205~^75.27^0^^~4~^~O~^^^^^^^^^^~01/01/2013~ -~08656~^~207~^3.52^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~255~^3.40^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~08656~^~269~^12.25^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~303~^5.89^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~309~^0.31^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~323~^1.27^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2014~ -~08656~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~573~^1.27^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2014~ -~08656~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~08657~^~203~^7.41^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~204~^3.70^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~205~^84.00^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~08657~^~207~^1.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~08657~^~255~^3.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~269~^18.52^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~303~^1.33^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~309~^1.28^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~323~^0.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08657~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~08662~^~203~^6.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~204~^4.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~205~^83.30^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~207~^2.20^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~08662~^~255~^2.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~269~^24.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~303~^26.10^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~309~^1.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~418~^4.80^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08665~^~203~^7.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~204~^5.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~205~^82.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~207~^2.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08665~^~255~^2.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~269~^20.40^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08665~^~303~^28.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08665~^~309~^1.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08672~^~203~^3.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~204~^3.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~205~^88.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~207~^2.65^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~08672~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~269~^55.45^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08672~^~303~^24.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~309~^10.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08672~^~418~^4.00^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~203~^8.81^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~204~^1.92^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~205~^79.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~207~^5.47^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08673~^~255~^4.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~269~^18.44^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~303~^29.45^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~309~^6.81^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~323~^0.67^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~ -~08673~^~418~^3.05^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08674~^~203~^6.78^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~204~^4.17^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~205~^84.94^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~207~^1.11^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08674~^~255~^3.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~269~^21.62^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~303~^27.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~323~^0.20^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2015~ -~08674~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08675~^~203~^7.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~204~^4.88^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~205~^77.26^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~207~^6.96^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~08675~^~255~^3.10^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~269~^20.26^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~303~^41.38^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~309~^17.87^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~323~^1.37^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~418~^7.55^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08676~^~203~^8.59^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~204~^4.51^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~205~^79.62^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~207~^4.78^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08676~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~269~^29.97^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08676~^~303~^30.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~309~^12.50^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~418~^5.00^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08680~^~203~^9.25^12^0.11^~1~^~A~^^^1^8.55^9.93^7^8.99^9.51^~2, 3~^~04/01/2014~ -~08680~^~204~^4.73^12^0.05^~1~^~A~^^^1^4.50^5.20^9^4.61^4.84^~2, 3~^~04/01/2014~ -~08680~^~205~^76.67^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~207~^2.94^12^0.04^~1~^~A~^^^1^2.55^3.08^9^2.85^3.03^~2, 3~^~04/01/2014~ -~08680~^~209~^38.33^5^0.61^~1~^~A~^^^1^36.60^40.10^3^36.28^40.37^~2, 3~^~04/01/2014~ -~08680~^~210~^29.67^6^0.63^~1~^~A~^^^1^27.98^32.76^2^27.23^32.11^~2, 3~^~04/01/2014~ -~08680~^~211~^0.39^6^0.01^~1~^~A~^^^1^0.18^0.53^4^0.34^0.42^~1, 2, 3~^~04/01/2014~ -~08680~^~212~^0.18^6^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~214~^0.04^6^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~255~^6.40^12^0.10^~1~^~A~^^^1^5.85^6.91^10^6.16^6.63^~2, 3~^~04/01/2014~ -~08680~^~269~^30.28^6^0.62^~1~^~A~^^^1^28.46^33.17^2^27.90^32.66^~2, 3~^~04/01/2014~ -~08680~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~303~^10.36^12^0.73^~1~^~A~^^^1^7.39^20.90^5^8.50^12.21^~2, 3~^~04/01/2014~ -~08680~^~309~^1.72^12^0.03^~1~^~A~^^^1^1.52^1.93^10^1.64^1.80^~2, 3~^~04/01/2014~ -~08680~^~323~^0.51^4^0.02^~1~^~A~^^^1^0.44^0.64^1^0.26^0.76^~2, 3~^~04/01/2014~ -~08680~^~341~^0.02^4^0.02^~1~^~A~^^^1^0.00^0.10^1^-0.27^0.31^~1, 2, 3~^~04/01/2014~ -~08680~^~342~^0.27^4^0.11^~1~^~A~^^^1^0.00^0.86^1^-1.13^1.66^~1, 2, 3~^~04/01/2014~ -~08680~^~343~^0.73^4^0.07^~1~^~A~^^^1^0.59^0.95^1^-0.26^1.72^~2, 3~^~04/01/2014~ -~08680~^~344~^1.30^4^0.07^~1~^~A~^^^1^1.18^1.44^1^0.43^2.16^~2, 3~^~04/01/2014~ -~08680~^~345~^0.84^4^0.03^~1~^~A~^^^1^0.72^0.92^2^0.65^1.03^~2, 3~^~04/01/2014~ -~08680~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~418~^0.00^0^^~4~^~BFZN~^~08130~^~N~^^^^^^^^~04/01/2014~ -~08680~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~08680~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~08685~^~203~^7.63^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~204~^5.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~205~^80.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~207~^3.92^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~255~^2.75^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~269~^21.53^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~303~^32.11^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~309~^11.89^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~323~^5.58^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~418~^4.75^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~203~^16.37^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~204~^6.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~205~^64.25^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~207~^4.17^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~255~^9.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~269~^1.25^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~303~^10.13^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~309~^2.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~323~^0.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08687~^~203~^16.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~204~^6.16^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~205~^64.42^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~207~^3.88^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~255~^9.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~269~^1.29^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~303~^8.78^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~309~^2.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~323~^0.55^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08688~^~203~^8.79^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~204~^4.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~205~^75.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~207~^3.22^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~255~^7.52^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~269~^14.70^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~303~^9.41^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~309~^2.04^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~323~^0.43^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08689~^~203~^9.81^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~204~^9.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~205~^69.47^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~207~^3.46^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~255~^7.47^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~269~^18.71^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~303~^3.08^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~309~^2.15^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~323~^0.45^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08690~^~203~^8.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~204~^10.36^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~205~^70.53^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~207~^3.13^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~255~^7.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~269~^29.36^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~303~^2.77^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~309~^1.83^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~323~^0.36^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08691~^~203~^11.31^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~204~^4.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~205~^72.58^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~207~^4.14^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~255~^7.57^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~269~^20.43^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~303~^3.13^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~309~^2.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~323~^0.47^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~203~^10.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~204~^9.84^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~205~^68.61^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~207~^3.35^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~255~^8.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~269~^24.85^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~303~^2.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~309~^2.18^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~323~^2.46^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08693~^~203~^12.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~204~^11.02^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~205~^66.73^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~207~^3.65^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~255~^6.59^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~269~^26.34^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~303~^2.99^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~309~^2.14^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~323~^0.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~418~^0.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~203~^16.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~204~^6.28^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~205~^64.21^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~207~^3.93^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~255~^9.09^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~269~^1.27^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~303~^8.84^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~309~^2.65^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~323~^0.56^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~418~^0.00^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08709~^~203~^8.18^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~204~^1.83^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~205~^80.91^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~207~^3.08^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~08709~^~255~^6.00^0^^~4~^~O~^^^^^^^^^^~01/01/2015~ -~08709~^~269~^20.29^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~303~^3.26^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~309~^2.77^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~323~^0.81^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2015~ -~08709~^~418~^0.21^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~09001~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~205~^7.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09001~^~207~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~255~^91.41^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09001~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09002~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09002~^~207~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~255~^94.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~269~^4.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09002~^~303~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09002~^~323~^0.18^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~ -~09002~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09003~^~203~^0.26^29^0.01^~1~^~A~^^^3^0.17^0.57^3^0.20^0.32^~2~^~06/01/2003~ -~09003~^~204~^0.17^35^0.01^~1~^~A~^^^4^0.05^0.31^3^0.13^0.21^~1, 2~^~06/01/2003~ -~09003~^~205~^13.81^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09003~^~207~^0.19^29^0.01^~1~^~A~^^^3^0.07^0.48^4^0.13^0.24^~1, 2~^~06/01/2003~ -~09003~^~209~^0.05^10^0.00^~1~^~A~^^^1^0.05^0.05^^^^~1, 2, 3~^~09/01/2002~ -~09003~^~210~^2.07^25^0.04^~1~^~A~^^^2^0.78^3.53^5^1.94^2.19^~2, 3~^~06/01/2003~ -~09003~^~211~^2.43^25^0.03^~1~^~A~^^^2^1.45^3.66^4^2.33^2.51^~2, 3~^~06/01/2003~ -~09003~^~212~^5.90^25^0.05^~1~^~A~^^^2^4.63^6.63^4^5.72^6.06^~2, 3~^~06/01/2003~ -~09003~^~213~^0.00^25^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09003~^~214~^0.00^25^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09003~^~255~^85.56^38^0.24^~1~^~A~^^^4^82.39^87.52^3^84.77^86.34^~2~^~06/01/2003~ -~09003~^~269~^10.39^25^0.11^~1~^~A~^^^2^8.77^12.01^5^10.09^10.68^~2, 3~^~06/01/2003~ -~09003~^~287~^0.00^25^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09003~^~303~^0.12^16^9.0e-03^~1~^~A~^^^3^0.09^0.18^2^0.07^0.17^~2~^~06/01/2003~ -~09003~^~309~^0.04^26^4.0e-03^~1~^~A~^^^4^0.01^0.08^7^0.02^0.04^~1, 2~^~06/01/2003~ -~09003~^~323~^0.18^10^^~1~^~A~^^^2^0.08^0.38^^^^~2~^~06/01/2003~ -~09003~^~341~^0.00^10^^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2003~ -~09003~^~342~^0.00^10^^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2003~ -~09003~^~343~^0.00^10^^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2003~ -~09003~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09004~^~203~^0.27^4^0.05^~1~^~A~^^^1^0.22^0.37^1^-0.37^0.92^~2, 3~^~09/01/2002~ -~09004~^~204~^0.13^5^0.02^~1~^~A~^^^2^0.07^0.22^1^-0.03^0.29^~1, 2, 3~^~09/01/2002~ -~09004~^~205~^12.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~207~^0.17^4^0.02^~1~^~A~^^^1^0.13^0.21^1^-0.15^0.49^~2, 3~^~09/01/2002~ -~09004~^~210~^0.82^4^0.10^~1~^~A~^^^1^0.58^1.11^1^-0.21^1.84^~2, 3~^~09/01/2002~ -~09004~^~211~^3.25^4^0.54^~1~^~A~^^^1^2.22^4.45^1^-3.66^10.16^~2, 3~^~09/01/2002~ -~09004~^~212~^6.03^4^0.40^~1~^~A~^^^1^5.41^6.57^1^1.14^10.92^~2, 3~^~09/01/2002~ -~09004~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09004~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09004~^~255~^86.67^6^0.11^~1~^~A~^^^2^85.37^88.06^1^85.27^88.07^~2~^~09/01/2002~ -~09004~^~269~^10.10^4^1.05^~1~^~A~^^^1^8.88^11.90^1^-3.15^23.34^~2, 3~^~09/01/2002~ -~09004~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~09004~^~303~^0.07^163^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~309~^0.05^4^9.0e-03^~1~^~A~^^^1^0.04^0.09^1^-4.0e-03^0.10^~1, 2, 3~^~09/01/2002~ -~09004~^~323~^0.05^2^^~1~^~A~^^^1^0.00^0.09^1^^^^~09/01/2002~ -~09004~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^^~09/01/2002~ -~09004~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~09/01/2002~ -~09004~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~09004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09005~^~203~^0.26^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~204~^0.36^6^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~205~^13.64^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09005~^~207~^0.28^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~255~^85.47^6^0.31^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~269~^11.01^0^^~4~^~BFSN~^~09004~^^^^^^^^^~09/01/2002~ -~09005~^~303~^0.19^6^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~309~^0.04^6^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~323~^0.05^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09005~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09006~^~203~^0.28^6^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~204~^0.42^6^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~205~^14.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09006~^~207~^0.26^6^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~255~^84.63^6^0.11^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~269~^11.61^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~09006~^~303~^0.17^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~309~^0.04^6^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~323~^0.05^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~ -~09006~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09008~^~203~^0.18^6^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~204~^0.43^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~205~^16.84^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09008~^~207~^0.27^6^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~255~^82.28^6^0.69^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~269~^14.84^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09008~^~303~^0.24^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~309~^0.05^6^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~323~^0.21^0^^~4~^~BFZN~^~09020~^^^^^^^^^~01/01/2003~ -~09008~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09009~^~203~^1.32^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~204~^0.58^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~205~^93.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09009~^~207~^1.57^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~255~^3.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~269~^81.13^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09009~^~303~^2.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~309~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~323~^0.75^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~ -~09009~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09010~^~203~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~204~^0.12^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~205~^19.91^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09010~^~207~^0.33^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~255~^79.36^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~303~^0.43^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~309~^0.06^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09011~^~203~^0.93^38^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~204~^0.32^8^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~205~^65.89^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09011~^~207~^1.10^38^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~255~^31.76^22^0.90^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~269~^57.19^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~09011~^~303~^1.40^37^0.09^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~309~^0.20^21^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~323~^0.53^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09011~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09012~^~203~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~205~^15.32^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09012~^~207~^0.26^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~255~^84.13^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~269~^13.32^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~09012~^~303~^0.33^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~323~^0.12^0^^~4~^~BFSN~^~09011~^^^^^^^^^~11/01/2002~ -~09012~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09013~^~203~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~205~^20.73^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09013~^~207~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~255~^78.76^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~303~^0.31^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~309~^0.04^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09014~^~203~^0.28^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~204~^0.32^6^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~205~^12.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09014~^~207~^0.24^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~255~^86.85^6^0.15^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~269~^10.10^0^^~4~^~BFZN~^~09004~^^^^^^^^^~07/01/2014~ -~09014~^~303~^0.18^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~309~^0.05^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09015~^~203~^0.29^6^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~204~^0.33^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~205~^12.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09015~^~207~^0.23^6^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~255~^87.16^6^0.15^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~303~^0.19^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~309~^0.05^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09016~^~203~^0.10^3^8.0e-03^~1~^~A~^^^1^0.09^0.12^2^0.06^0.13^~2, 3~^~05/01/2008~ -~09016~^~204~^0.13^4^0.01^~1~^~A~^^^1^0.11^0.17^3^0.09^0.17^~2, 3~^~05/01/2008~ -~09016~^~205~^11.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09016~^~207~^0.23^4^0.02^~1~^~A~^^^1^0.20^0.31^3^0.14^0.31^~2, 3~^~05/01/2008~ -~09016~^~210~^1.26^4^0.02^~1~^~A~^^^1^1.20^1.31^3^1.18^1.33^~2, 3~^~05/01/2008~ -~09016~^~211~^2.63^4^0.03^~1~^~A~^^^1^2.57^2.72^3^2.51^2.74^~2, 3~^~05/01/2008~ -~09016~^~212~^5.73^4^0.08^~1~^~A~^^^1^5.51^5.93^3^5.45^6.01^~2, 3~^~05/01/2008~ -~09016~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09016~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09016~^~255~^88.24^45^0.09^~1~^~A~^^^3^87.92^88.60^6^88.01^88.46^~4~^~05/01/2008~ -~09016~^~269~^9.62^4^0.12^~1~^~A~^^^1^9.35^9.86^3^9.21^10.03^~2, 3~^~05/01/2008~ -~09016~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09016~^~303~^0.12^56^6.0e-03^~1~^~A~^^^17^0.00^0.26^18^0.10^0.12^~1, 2, 3~^~05/01/2008~ -~09016~^~309~^0.02^59^2.0e-03^~1~^~A~^^^17^0.00^0.09^16^0.01^0.02^~1, 2, 3~^~05/01/2008~ -~09016~^~323~^0.01^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09017~^~203~^0.51^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~204~^0.37^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~205~^41.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09017~^~207~^1.12^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~255~^57.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~269~^38.83^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09017~^~303~^0.91^4^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~309~^0.13^4^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~323~^0.04^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~ -~09017~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09018~^~203~^0.14^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~204~^0.10^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09018~^~207~^0.32^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~255~^87.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~269~^10.93^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~303~^0.26^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~309~^0.04^4^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~323~^0.01^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~ -~09018~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09019~^~203~^0.17^3^0.02^~1~^~A~^^^1^0.12^0.19^2^0.07^0.25^~2, 3~^~06/01/2008~ -~09019~^~204~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.04^0.16^~1, 2, 3~^~06/01/2008~ -~09019~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09019~^~207~^0.24^3^0.05^~1~^~A~^^^1^0.16^0.34^2^0.01^0.46^~2, 3~^~06/01/2008~ -~09019~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09019~^~210~^1.13^3^0.26^~1~^~A~^^^1^0.79^1.66^2^-0.01^2.28^~2, 3~^~06/01/2008~ -~09019~^~211~^2.30^3^0.15^~1~^~A~^^^1^2.06^2.59^2^1.63^2.96^~2, 3~^~06/01/2008~ -~09019~^~212~^5.88^3^0.45^~1~^~A~^^^1^5.40^6.78^2^3.92^7.83^~2, 3~^~06/01/2008~ -~09019~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~214~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~06/01/2008~ -~09019~^~255~^88.22^3^0.92^~1~^~A~^^^1^86.38^89.24^2^84.25^92.19^~2, 3~^~06/01/2008~ -~09019~^~269~^9.39^3^0.86^~1~^~A~^^^1^8.33^11.11^2^5.65^13.12^~2, 3~^~06/01/2008~ -~09019~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~303~^0.23^10^0.02^~1~^~A~^^^4^0.06^0.36^3^0.14^0.32^~1, 2~^~06/01/2008~ -~09019~^~309~^0.03^11^0.01^~1~^~A~^^^4^0.00^0.12^3^-0.01^0.07^~1, 2~^~06/01/2008~ -~09019~^~323~^0.16^3^0.02^~1~^~A~^^^1^0.11^0.21^2^0.03^0.28^~2, 3~^~06/01/2008~ -~09019~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~344~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~06/01/2008~ -~09019~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09019~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09020~^~203~^0.16^8^0.03^~1~^~A~^^^2^0.12^0.22^1^-0.31^0.64^~2~^~06/01/2008~ -~09020~^~204~^0.17^9^0.11^~1~^~A~^^^3^0.01^0.47^2^-0.34^0.67^~1, 2~^~06/01/2008~ -~09020~^~205~^17.49^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09020~^~207~^0.21^8^9.0e-03^~1~^~A~^^^2^0.19^0.24^1^0.09^0.32^~2~^~06/01/2008~ -~09020~^~210~^1.00^2^^~1~^~A~^^^1^0.79^1.22^1^^^^~06/01/2008~ -~09020~^~211~^5.50^2^^~1~^~A~^^^1^5.07^5.94^1^^^^~06/01/2008~ -~09020~^~212~^7.27^2^^~1~^~A~^^^1^7.09^7.46^1^^^^~06/01/2008~ -~09020~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2008~ -~09020~^~214~^0.89^2^^~1~^~A~^^^1^0.86^0.92^1^^^^~06/01/2008~ -~09020~^~255~^81.98^47^1.05^~1~^~A~^^^3^79.13^84.00^2^77.45^86.50^~2~^~06/01/2008~ -~09020~^~269~^14.67^2^^~1~^~A~^^^1^14.29^15.05^1^^^^~08/01/2008~ -~09020~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2008~ -~09020~^~303~^0.12^55^0.02^~1~^~A~^^^16^0.05^0.91^15^0.06^0.18^~1, 2~^~06/01/2008~ -~09020~^~309~^0.03^30^4.0e-03^~1~^~A~^^^15^0.01^0.09^14^0.02^0.04^~1, 2~^~06/01/2008~ -~09020~^~323~^0.18^3^0.03^~1~^~A~^^^2^0.13^0.21^1^-0.23^0.59^~2~^~06/01/2008~ -~09020~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09020~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09020~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09020~^~344~^0.01^3^0.01^~1~^~A~^^^2^0.00^0.02^1^-0.11^0.13^~2~^~06/01/2008~ -~09020~^~345~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09020~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~06/01/2008~ -~09020~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09020~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09021~^~203~^1.40^22^0.33^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~204~^0.39^5^0.17^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~205~^11.12^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09021~^~207~^0.75^32^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~210~^5.87^7^0.65^~1~^~A~^^^3^4.40^7.30^2^3.03^8.71^~2~^~01/01/2003~ -~09021~^~211~^2.37^7^0.55^~1~^~A~^^^3^1.10^3.60^2^-0.01^4.74^~2~^~01/01/2003~ -~09021~^~212~^0.94^7^0.27^~1~^~A~^^^3^0.30^1.63^2^-0.23^2.10^~2~^~01/01/2003~ -~09021~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09021~^~214~^0.06^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09021~^~255~^86.35^26^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~269~^9.24^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~09021~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09021~^~303~^0.39^21^0.01^~1~^~A~^^^8^0.16^0.62^7^0.34^0.42^~1, 2, 3~^~01/01/2003~ -~09021~^~309~^0.20^21^0.01^~1~^~A~^^^8^0.13^0.32^8^0.17^0.22^~2, 3~^~01/01/2003~ -~09021~^~323~^0.89^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~09021~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09022~^~203~^0.71^10^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~204~^0.16^8^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~205~^6.39^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09022~^~207~^0.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~255~^92.36^42^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~269~^4.79^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09022~^~303~^0.32^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~323~^0.60^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09023~^~203~^0.69^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~204~^0.03^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~205~^5.48^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09023~^~207~^0.38^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~255~^93.43^5^0.29^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~303~^0.54^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09024~^~203~^0.63^8^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~204~^0.04^7^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~205~^12.34^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09024~^~207~^0.37^7^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~255~^86.62^7^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~269~^10.74^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09024~^~303~^0.30^8^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~309~^0.11^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~323~^0.60^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09024~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09025~^~203~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~205~^12.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09025~^~207~^0.50^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~255~^86.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~309~^0.08^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09026~^~203~^0.53^56^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~204~^0.05^10^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~205~^16.49^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09026~^~207~^0.37^25^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~255~^82.56^104^0.13^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~269~^14.89^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09026~^~303~^0.39^37^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~323~^0.60^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09026~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09027~^~203~^0.53^162^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~204~^0.08^105^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~205~^21.47^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09027~^~207~^0.37^130^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~255~^77.56^217^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~269~^19.87^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09027~^~303~^0.30^156^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~309~^0.11^58^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~323~^0.60^0^^~4~^~BFYN~^~09021~^^^^^^^^^~01/01/2003~ -~09027~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09028~^~203~^0.51^58^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~204~^0.09^42^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~205~^21.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09028~^~207~^0.29^58^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~255~^77.66^115^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~303~^0.43^66^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~309~^0.10^32^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09029~^~203~^0.55^4^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~204~^0.04^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~205~^24.85^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09029~^~207~^0.23^4^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~255~^74.33^8^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~303~^0.62^4^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09030~^~203~^4.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~204~^0.62^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~205~^82.89^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09030~^~207~^4.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~255~^7.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~303~^6.31^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~309~^1.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09031~^~203~^1.93^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~204~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~205~^32.62^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09031~^~207~^1.61^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~255~^63.60^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~303~^2.48^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~309~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09032~^~203~^3.39^3^0.11^~1~^~A~^^^1^3.20^3.59^2^2.90^3.87^~2, 3~^~05/01/2002~ -~09032~^~204~^0.51^3^0.04^~1~^~A~^^^1^0.46^0.60^2^0.31^0.70^~2, 3~^~05/01/2002~ -~09032~^~205~^62.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~207~^2.57^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~209~^0.35^3^0.22^~1~^~A~^^^1^0.07^0.80^2^-0.62^1.32^~1, 2, 3~^~05/01/2002~ -~09032~^~210~^7.89^3^0.38^~1~^~A~^^^1^7.14^8.41^2^6.22^9.54^~2, 3~^~05/01/2002~ -~09032~^~211~^33.08^3^1.86^~1~^~A~^^^1^29.78^36.24^2^25.04^41.11^~2, 3~^~05/01/2002~ -~09032~^~212~^12.47^3^0.21^~1~^~A~^^^1^12.20^12.90^2^11.54^13.39^~2, 3~^~05/01/2002~ -~09032~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~255~^30.89^4^0.29^~1~^~A~^^^2^30.60^31.19^1^27.17^34.61^~4~^~05/01/2002~ -~09032~^~269~^53.44^3^2.30^~1~^~A~^^^1^49.11^56.97^2^43.53^63.34^~2, 3~^~05/01/2002~ -~09032~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~303~^2.66^3^0.62^~1~^~A~^^^1^2.01^3.91^2^-0.02^5.34^~2, 3~^~05/01/2002~ -~09032~^~309~^0.39^3^0.04^~1~^~A~^^^1^0.31^0.47^2^0.19^0.58^~2, 3~^~05/01/2002~ -~09032~^~323~^4.33^3^0.08^~1~^~A~^^^1^4.23^4.51^2^3.95^4.71^~2, 3~^~05/01/2002~ -~09032~^~341~^0.05^3^0.00^~1~^~A~^^^1^0.05^0.05^^^^~2, 3~^~05/01/2002~ -~09032~^~342~^0.08^3^7.0e-03^~1~^~A~^^^1^0.07^0.09^2^0.04^0.10^~2, 3~^~05/01/2002~ -~09032~^~343~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2002~ -~09032~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2002~ -~09032~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2002~ -~09032~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2002~ -~09032~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09033~^~203~^1.20^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~204~^0.18^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~205~^22.15^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09033~^~207~^0.91^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~255~^75.56^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09033~^~269~^19.57^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09033~^~303~^0.94^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~309~^0.14^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~323~^1.53^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09034~^~203~^1.17^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~205~^29.26^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09034~^~207~^0.98^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~255~^68.45^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~303~^1.52^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09035~^~203~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~205~^25.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09035~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~255~^73.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~303~^0.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09036~^~203~^0.17^4^0.03^~1~^~A~^^^1^0.12^0.25^2^3.0e-03^0.33^~2, 3~^~12/01/2016~ -~09036~^~204~^0.45^4^0.13^~1~^~A~^^^1^0.23^0.71^2^-0.10^1.01^~2, 3~^~12/01/2016~ -~09036~^~205~^13.63^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09036~^~207~^0.12^4^0.01^~1~^~A~^^^1^0.09^0.16^2^0.04^0.20^~2, 3~^~12/01/2016~ -~09036~^~210~^4.11^3^1.41^~1~^~A~^^^1^1.43^6.22^2^-1.96^10.18^~2, 3~^~12/01/2016~ -~09036~^~211~^4.19^3^0.60^~1~^~A~^^^1^3.22^5.31^2^1.56^6.80^~2, 3~^~12/01/2016~ -~09036~^~212~^4.49^3^0.64^~1~^~A~^^^1^3.43^5.67^2^1.70^7.28^~2, 3~^~12/01/2016~ -~09036~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09036~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09036~^~255~^85.63^4^0.13^~1~^~A~^^^1^84.35^85.93^2^85.06^86.19^~2, 3~^~12/01/2016~ -~09036~^~269~^12.79^3^0.20^~1~^~A~^^^1^12.41^13.09^2^11.92^13.65^~2, 3~^~12/01/2016~ -~09036~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09036~^~303~^0.10^4^0.00^~1~^~A~^^^1^0.07^0.55^2^0.10^0.10^~1, 2, 3~^~12/01/2016~ -~09036~^~309~^0.03^4^1.0e-03^~1~^~A~^^^1^0.02^0.04^2^0.02^0.03^~2, 3~^~12/01/2016~ -~09036~^~323~^0.41^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09036~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09036~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09037~^~203~^2.00^34^0.13^~1~^~A~^^^5^1.53^3.00^3^1.56^2.42^~2~^~03/01/2003~ -~09037~^~204~^14.66^35^0.54^~1~^~A~^^^6^8.40^23.20^4^13.15^16.16^~2~^~03/01/2003~ -~09037~^~205~^8.53^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~207~^1.58^34^0.11^~1~^~A~^^^5^0.82^2.80^3^1.20^1.95^~2~^~03/01/2003~ -~09037~^~209~^0.11^4^0.00^~1~^~A~^^^2^0.05^0.17^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~210~^0.06^10^0.03^~1~^~A~^^^3^0.00^0.15^2^-0.09^0.22^~1, 2~^~08/01/2010~ -~09037~^~211~^0.37^10^0.03^~1~^~A~^^^3^0.06^2.17^2^0.26^0.52^~1, 2~^~08/01/2010~ -~09037~^~212~^0.12^10^0.01^~1~^~A~^^^3^0.07^0.25^2^0.06^0.20^~1, 2~^~08/01/2010~ -~09037~^~213~^0.00^10^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~07/01/2008~ -~09037~^~214~^0.00^10^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~07/01/2008~ -~09037~^~255~^73.23^40^1.89^~1~^~A~^^^8^64.40^83.80^6^68.65^77.80^~2~^~03/01/2003~ -~09037~^~269~^0.66^12^0.01^~1~^~A~^^^4^0.00^2.42^2^0.58^0.73^~2, 3~^~03/01/2003~ -~09037~^~287~^0.10^8^0.01^~1~^~A~^^^2^0.00^0.30^3^0.06^0.15^~2, 3~^~08/01/2010~ -~09037~^~303~^0.55^29^0.10^~1~^~A~^^^6^0.14^1.06^3^0.21^0.88^~2~^~03/01/2003~ -~09037~^~309~^0.64^17^0.02^~1~^~A~^^^5^0.35^0.83^2^0.51^0.76^~2~^~03/01/2003~ -~09037~^~323~^2.07^23^0.21^~1~^~A~^^^5^0.66^3.28^4^1.47^2.66^~2~^~03/01/2003~ -~09037~^~341~^0.05^10^9.0e-03^~1~^~A~^^^3^0.02^0.08^2^7.0e-03^0.08^~2~^~03/01/2003~ -~09037~^~342~^0.33^19^0.11^~1~^~A~^^^4^0.09^0.75^3^-0.03^0.69^~2~^~03/01/2003~ -~09037~^~343~^0.02^10^4.0e-03^~1~^~A~^^^3^0.00^0.03^2^0.00^0.03^~1, 2~^~03/01/2003~ -~09037~^~344~^0.01^8^0.01^~1~^~A~^^^3^0.00^0.04^2^-0.03^0.06^~2~^~03/01/2003~ -~09037~^~345~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09037~^~346~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09037~^~347~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09037~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09038~^~203~^1.96^30^0.15^~1~^~A~^^^4^1.53^3.00^3^1.45^2.46^~2~^~03/01/2003~ -~09038~^~204~^15.41^31^0.63^~1~^~A~^^^5^8.40^23.20^4^13.66^17.16^~2~^~03/01/2003~ -~09038~^~205~^8.64^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~207~^1.66^30^0.13^~1~^~A~^^^4^1.00^2.80^3^1.22^2.10^~2~^~03/01/2003~ -~09038~^~209~^0.11^4^0.00^~1~^~A~^^^2^0.05^0.17^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~210~^0.06^9^0.04^~1~^~A~^^^3^0.00^0.15^2^-0.10^0.26^~1, 2~^~08/01/2010~ -~09038~^~211~^0.08^9^0.03^~1~^~A~^^^3^0.06^0.24^2^-0.04^0.25^~1, 2~^~08/01/2010~ -~09038~^~212~^0.08^9^0.01^~1~^~A~^^^3^0.07^0.15^2^0.03^0.19^~1, 2~^~08/01/2010~ -~09038~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~07/01/2008~ -~09038~^~214~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~07/01/2008~ -~09038~^~255~^72.33^33^2.17^~1~^~A~^^^7^64.40^83.70^6^67.01^77.63^~2~^~03/01/2003~ -~09038~^~269~^0.30^11^0.09^~1~^~A~^^^4^0.00^0.55^3^-0.01^0.61^~2~^~03/01/2003~ -~09038~^~287~^0.08^8^0.01^~1~^~A~^^^2^0.00^0.30^3^0.06^0.15^~2, 3~^~08/01/2010~ -~09038~^~303~^0.61^24^0.12^~1~^~A~^^^4^0.29^1.06^3^0.22^0.99^~2~^~03/01/2003~ -~09038~^~309~^0.68^12^0.03^~1~^~A~^^^3^0.49^0.83^2^0.53^0.82^~2~^~03/01/2003~ -~09038~^~323~^1.97^22^0.24^~1~^~A~^^^5^0.66^3.28^4^1.28^2.66^~2~^~03/01/2003~ -~09038~^~341~^0.04^9^0.01^~1~^~A~^^^3^0.02^0.06^2^-5.0e-03^0.08^~2~^~03/01/2003~ -~09038~^~342~^0.32^18^0.13^~1~^~A~^^^4^0.09^0.75^3^-0.10^0.74^~2~^~03/01/2003~ -~09038~^~343~^0.02^9^5.0e-03^~1~^~A~^^^3^0.01^0.03^2^0.00^0.04^~1, 2~^~03/01/2003~ -~09038~^~344~^0.01^7^0.01^~1~^~A~^^^3^0.00^0.04^2^-0.04^0.07^~2~^~03/01/2003~ -~09038~^~345~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09038~^~346~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09038~^~347~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~03/01/2003~ -~09038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09039~^~203~^2.23^4^0.17^~1~^~A~^^^1^1.79^2.51^3^1.69^2.77^~4~^~06/01/2003~ -~09039~^~204~^10.06^4^0.90^~1~^~A~^^^1^8.64^12.43^3^7.17^12.93^~4~^~06/01/2003~ -~09039~^~205~^7.82^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~207~^1.08^4^0.14^~1~^~A~^^^1^0.82^1.44^3^0.63^1.52^~4~^~06/01/2003~ -~09039~^~210~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~211~^2.17^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~212~^0.25^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~255~^78.81^7^2.47^~1~^~A~^^^4^72.00^83.80^3^70.93^86.68^~2~^~06/01/2003~ -~09039~^~269~^2.42^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~303~^0.17^5^0.02^~1~^~A~^^^2^0.14^0.22^1^-0.12^0.45^~2~^~06/01/2003~ -~09039~^~309~^0.40^5^2.0e-03^~1~^~A~^^^2^0.35^0.47^1^0.37^0.42^~2~^~06/01/2003~ -~09039~^~323~^2.66^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~341~^0.08^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~342~^0.39^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~09039~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09040~^~203~^1.09^12^0.02^~1~^~A~^^^3^0.75^1.31^1^0.81^1.37^~2~^~12/01/2002~ -~09040~^~204~^0.33^19^0.06^~1~^~A~^^^5^0.07^0.70^1^-0.47^1.12^~1, 2~^~12/01/2002~ -~09040~^~205~^22.84^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~207~^0.82^12^0.03^~1~^~A~^^^3^0.43^1.00^1^0.44^1.19^~2~^~12/01/2002~ -~09040~^~209~^5.38^8^0.56^~1~^~A~^^^2^3.00^9.39^5^3.89^6.87^~2, 3~^~12/01/2002~ -~09040~^~210~^2.39^8^0.54^~1~^~A~^^^2^0.45^4.12^6^1.05^3.72^~2, 3~^~12/01/2002~ -~09040~^~211~^4.98^8^0.80^~1~^~A~^^^2^1.79^8.13^4^2.69^7.26^~2, 3~^~12/01/2002~ -~09040~^~212~^4.85^8^0.65^~1~^~A~^^^2^2.34^7.52^4^3.04^6.64^~2, 3~^~12/01/2002~ -~09040~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09040~^~214~^0.01^8^0.01^~1~^~A~^^^2^0.00^0.11^3^-0.03^0.05^~1, 2, 3~^~12/01/2002~ -~09040~^~255~^74.91^20^0.28^~1~^~A~^^^6^71.30^78.20^2^73.80^76.02^~2~^~12/01/2002~ -~09040~^~269~^12.23^8^1.03^~1~^~A~^^^2^7.51^16.21^3^9.10^15.36^~2, 3~^~12/01/2002~ -~09040~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09040~^~303~^0.26^42^1.0e-03^~1~^~A~^^^13^0.19^0.41^10^0.25^0.25^~2~^~12/01/2002~ -~09040~^~309~^0.15^45^1.0e-03^~1~^~A~^^^14^0.11^0.24^10^0.14^0.15^~2~^~12/01/2002~ -~09040~^~323~^0.10^15^0.05^~1~^~A~^^^4^0.03^0.37^1^-0.54^0.74^~2~^~12/01/2002~ -~09040~^~341~^0.00^15^0.00^~1~^~A~^^^4^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09040~^~342~^0.02^15^0.01^~1~^~A~^^^4^0.00^0.07^1^-0.17^0.21^~1, 2~^~12/01/2002~ -~09040~^~343~^0.01^15^0.01^~1~^~A~^^^4^0.00^0.04^1^-0.11^0.13^~1, 2~^~12/01/2002~ -~09040~^~344~^0.06^9^4.0e-03^~1~^~A~^^^3^0.00^0.09^1^6.0e-03^0.11^~2~^~12/01/2002~ -~09040~^~345~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09040~^~346~^0.00^9^1.0e-03^~1~^~A~^^^3^0.00^0.02^1^-0.01^0.01^~1, 2~^~12/01/2002~ -~09040~^~347~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09040~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09041~^~203~^3.89^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~204~^1.81^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~205~^88.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09041~^~207~^3.02^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~255~^3.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~269~^47.30^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~303~^1.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~309~^0.61^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~323~^0.39^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~ -~09041~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09042~^~203~^1.39^5^0.05^~1~^~A~^^^2^1.18^1.64^2^1.13^1.64^~2, 3~^~02/01/2003~ -~09042~^~204~^0.49^5^0.04^~1~^~A~^^^2^0.37^0.63^3^0.34^0.62^~2, 3~^~02/01/2003~ -~09042~^~205~^9.61^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~207~^0.37^5^0.02^~1~^~A~^^^2^0.29^0.43^2^0.27^0.45^~2, 3~^~02/01/2003~ -~09042~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~09042~^~210~^0.07^4^0.00^~1~^~A~^^^2^0.00^0.14^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~211~^2.31^4^0.29^~1~^~A~^^^2^1.53^3.02^2^1.00^3.61^~2, 3~^~02/01/2003~ -~09042~^~212~^2.40^4^0.36^~1~^~A~^^^2^1.51^3.05^2^0.44^4.35^~2, 3~^~02/01/2003~ -~09042~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~214~^0.07^4^0.00^~1~^~A~^^^2^0.00^0.14^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~255~^88.15^5^0.77^~1~^~A~^^^2^85.50^91.90^3^85.33^90.95^~2, 3~^~02/01/2003~ -~09042~^~269~^4.88^4^0.68^~1~^~A~^^^2^3.04^6.35^2^1.50^8.25^~2, 3~^~02/01/2003~ -~09042~^~287~^0.03^4^0.02^~1~^~A~^^^2^0.00^0.11^1^-0.32^0.37^~1, 2, 3~^~02/01/2003~ -~09042~^~303~^0.62^5^0.08^~1~^~A~^^^2^0.33^0.78^2^0.33^0.92^~2, 3~^~02/01/2003~ -~09042~^~309~^0.53^3^0.03^~1~^~A~^^^2^0.42^0.64^1^0.07^0.98^~2, 3~^~02/01/2003~ -~09042~^~323~^1.17^5^0.05^~1~^~A~^^^2^0.56^1.83^2^0.94^1.39^~2, 3~^~02/01/2003~ -~09042~^~341~^0.04^5^4.0e-03^~1~^~A~^^^2^0.02^0.04^2^0.01^0.05^~2, 3~^~02/01/2003~ -~09042~^~342~^1.34^5^0.10^~1~^~A~^^^2^1.03^1.58^2^0.94^1.72^~2, 3~^~02/01/2003~ -~09042~^~343~^0.90^5^0.10^~1~^~A~^^^2^0.46^1.05^2^0.43^1.36^~2, 3~^~02/01/2003~ -~09042~^~344~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09043~^~203~^0.30^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~204~^0.60^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~205~^7.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09043~^~207~^0.40^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~255~^90.90^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09043~^~269~^7.70^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09043~^~303~^0.48^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~309~^0.41^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~323~^0.90^0^^~4~^~BFSN~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09044~^~203~^1.25^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~204~^0.73^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~205~^80.45^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09044~^~207~^0.97^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~255~^16.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~269~^67.15^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~303~^0.68^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~309~^0.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~323~^0.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09044~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09046~^~203~^1.31^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~204~^0.14^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~205~^23.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09046~^~207~^0.39^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~255~^75.06^3^0.43^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~269~^19.70^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~09046~^~303~^0.65^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~309~^0.18^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~323~^0.78^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~ -~09046~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09048~^~203~^1.18^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~204~^0.43^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~205~^15.67^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09048~^~207~^0.51^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~255~^82.21^3^0.46^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~269~^10.67^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09048~^~303~^0.80^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~309~^0.25^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~323~^1.17^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~ -~09048~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09050~^~203~^0.74^12^0.01^~1~^~A~^^^3^0.60^0.97^1^0.50^0.97^~2~^~09/01/2002~ -~09050~^~204~^0.33^12^0.01^~1~^~A~^^^3^0.20^0.50^1^0.10^0.56^~2~^~09/01/2002~ -~09050~^~205~^14.49^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~09050~^~207~^0.24^12^5.0e-03^~1~^~A~^^^3^0.19^0.30^1^0.17^0.30^~2~^~09/01/2002~ -~09050~^~209~^0.03^4^0.02^~1~^~A~^^^1^0.00^0.11^3^-0.06^0.11^~1, 2, 3~^~09/01/2002~ -~09050~^~210~^0.11^8^0.00^~1~^~A~^^^2^0.07^0.14^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~211~^4.88^8^0.27^~1~^~A~^^^2^3.74^6.00^4^4.14^5.62^~2, 3~^~09/01/2002~ -~09050~^~212~^4.97^8^0.27^~1~^~A~^^^2^3.86^6.26^4^4.21^5.71^~2, 3~^~09/01/2002~ -~09050~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~255~^84.21^12^0.67^~1~^~A~^^^3^80.70^86.76^1^75.66^92.74^~2~^~09/01/2002~ -~09050~^~269~^9.96^8^0.55^~1~^~A~^^^2^7.67^12.33^4^8.46^11.44^~2, 3~^~09/01/2002~ -~09050~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~303~^0.28^12^0.01^~1~^~A~^^^3^0.11^0.41^1^0.13^0.41^~2~^~09/01/2002~ -~09050~^~309~^0.16^12^0.01^~1~^~A~^^^3^0.10^0.28^1^-0.05^0.37^~2~^~09/01/2002~ -~09050~^~323~^0.57^4^0.09^~1~^~A~^^^1^0.40^0.81^3^0.25^0.87^~2, 3~^~09/01/2002~ -~09050~^~341~^0.01^4^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~09/01/2002~ -~09050~^~342~^0.36^4^0.04^~1~^~A~^^^1^0.26^0.46^3^0.20^0.51^~2, 3~^~09/01/2002~ -~09050~^~343~^0.03^4^9.0e-03^~1~^~A~^^^1^0.01^0.05^3^2.0e-03^0.05^~1, 2, 3~^~09/01/2002~ -~09050~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~09050~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~09050~^~346~^0.07^4^6.0e-03^~1~^~A~^^^1^0.06^0.09^3^0.05^0.09^~2, 3~^~09/01/2002~ -~09050~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~09050~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09052~^~203~^0.65^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~204~^0.33^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~205~^22.06^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09052~^~207~^0.17^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~255~^76.78^3^0.57^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~269~^20.46^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09052~^~303~^0.33^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~309~^0.07^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~323~^0.38^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~ -~09052~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09053~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~204~^0.16^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~205~^13.85^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09053~^~207~^0.19^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09053~^~211~^3.33^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~212~^3.71^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09053~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09053~^~255~^85.80^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~303~^0.58^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~309~^0.67^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~323~^0.26^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~09054~^~203~^0.42^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~204~^0.64^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~205~^12.17^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09054~^~207~^0.18^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~255~^86.59^3^0.57^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~269~^8.45^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~303~^0.18^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~309~^0.07^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~323~^0.48^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~ -~09054~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09055~^~203~^0.40^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~204~^0.13^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~205~^21.95^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09055~^~207~^0.12^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~255~^77.40^3^0.32^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~269~^19.72^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09055~^~303~^0.39^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~309~^0.06^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~323~^0.52^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~09055~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09056~^~203~^0.99^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~204~^0.12^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~205~^22.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09056~^~207~^0.32^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~255~^76.26^3^1.68^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~303~^0.43^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~309~^0.19^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09057~^~203~^1.10^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~204~^0.26^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~205~^12.19^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09057~^~207~^0.54^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~255~^85.90^3^0.27^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~269~^6.89^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09057~^~303~^0.85^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~309~^0.22^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~323~^0.87^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09057~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09059~^~203~^1.07^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~205~^27.12^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09059~^~207~^0.93^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~255~^70.65^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~269~^11.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~09059~^~303~^0.54^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~309~^0.12^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~323~^0.10^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~ -~09059~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09059~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09059~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09060~^~203~^1.04^4^0.12^~1~^~A~^^^1^0.69^1.23^3^0.64^1.42^~4~^~09/01/2003~ -~09060~^~204~^0.33^4^0.13^~1~^~A~^^^1^0.14^0.71^3^-0.09^0.75^~4~^~09/01/2003~ -~09060~^~205~^6.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~207~^0.52^4^0.06^~1~^~A~^^^1^0.39^0.69^3^0.32^0.72^~4~^~09/01/2003~ -~09060~^~255~^91.38^4^0.68^~1~^~A~^^^1^89.90^93.20^3^89.20^93.54^~4~^~09/01/2003~ -~09060~^~269~^3.98^0^^~4~^~O~^^^^^^^^^^~09/01/2003~ -~09060~^~303~^0.08^4^0.01^~1~^~A~^^^2^0.04^0.10^3^0.03^0.11^~4~^~09/01/2003~ -~09060~^~309~^0.12^5^0.06^~1~^~A~^^^2^0.00^0.36^4^-0.06^0.30^~4~^~09/01/2003~ -~09060~^~323~^0.15^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09060~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09061~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~204~^1.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~205~^13.63^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09061~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~255~^84.17^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~303~^1.31^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09062~^~203~^1.57^6^0.08^~1~^~A~^^^3^1.31^2.01^2^1.19^1.94^~2~^~06/01/2009~ -~09062~^~204~^0.68^6^0.06^~1~^~A~^^^3^0.53^0.82^2^0.41^0.94^~2~^~06/01/2009~ -~09062~^~205~^17.71^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~207~^0.65^6^0.01^~1~^~A~^^^3^0.49^0.81^2^0.57^0.73^~2~^~06/01/2009~ -~09062~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~09062~^~210~^0.66^4^0.61^~1~^~A~^^^2^0.07^1.30^1^-7.10^8.47^~1, 2~^~08/01/2009~ -~09062~^~211~^5.93^3^0.19^~1~^~A~^^^1^5.88^6.56^2^5.37^7.06^~2, 3~^~08/01/2009~ -~09062~^~212~^6.28^3^0.34^~1~^~A~^^^1^5.97^7.17^2^5.08^8.06^~2, 3~^~08/01/2009~ -~09062~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2009~ -~09062~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2009~ -~09062~^~255~^79.39^6^0.64^~1~^~A~^^^3^78.03^81.10^2^76.63^82.15^~2~^~06/01/2009~ -~09062~^~269~^12.87^3^0.54^~1~^~A~^^^1^11.92^13.80^2^10.53^15.20^~2, 3~^~06/01/2009~ -~09062~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2009~ -~09062~^~303~^0.27^6^0.05^~1~^~A~^^^3^0.15^0.62^2^0.01^0.52^~2~^~06/01/2009~ -~09062~^~309~^0.16^6^0.02^~1~^~A~^^^3^0.12^0.27^2^0.06^0.26^~2~^~06/01/2009~ -~09062~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~345~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~347~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09063~^~203~^1.00^347^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~205~^12.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09063~^~207~^0.40^348^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~210~^0.80^2^^~1~^^^^1^0.58^1.02^^^^^~10/01/2002~ -~09063~^~211~^4.18^5^0.12^~1~^^^^2^2.88^5.17^1^2.62^5.73^~2~^~10/01/2002~ -~09063~^~212~^3.51^5^0.22^~1~^^^^2^2.63^3.74^1^0.60^6.41^~2~^~10/01/2002~ -~09063~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09063~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09063~^~255~^86.13^348^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~269~^8.49^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09063~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09063~^~303~^0.32^347^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~309~^0.10^330^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~323~^0.07^0^^~4~^~BFZN~^~09070~^^^^^^^^^~01/01/2003~ -~09063~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09064~^~203~^0.77^5^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~204~^0.10^5^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~205~^8.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09064~^~207~^0.26^5^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~210~^1.00^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~09064~^~211~^3.90^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~09064~^~212~^2.70^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~09064~^~255~^89.93^5^0.34^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~269~^7.60^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~09064~^~303~^1.37^6^0.28^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~323~^0.23^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09064~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09065~^~203~^0.74^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~205~^19.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09065~^~207~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~255~^79.62^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~303~^1.32^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09066~^~203~^0.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~205~^23.27^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09066~^~207~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~255~^75.66^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~269~^22.17^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09066~^~303~^1.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~309~^0.06^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~323~^0.23^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09066~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09067~^~203~^0.71^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~205~^29.23^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09067~^~207~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~255~^69.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~303~^1.26^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~309~^0.06^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09068~^~203~^0.92^3^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~204~^0.44^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~205~^11.02^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09068~^~207~^0.42^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~255~^87.20^3^0.25^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~269~^9.02^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09068~^~303~^0.53^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~309~^0.10^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~323~^0.05^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~ -~09068~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09070~^~203~^1.06^8^0.07^~1~^~A~^^^2^0.94^1.20^2^0.74^1.38^~4~^~10/01/2002~ -~09070~^~204~^0.20^8^0.01^~1~^~A~^^^2^0.05^0.50^1^0.03^0.35^~1, 2, 3~^~10/01/2002~ -~09070~^~205~^16.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~207~^0.48^8^0.06^~1~^~A~^^^2^0.35^0.55^2^0.20^0.75^~4~^~10/01/2002~ -~09070~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~09070~^~210~^0.15^10^0.08^~1~^~A~^^^4^0.00^0.64^2^-0.20^0.49^~1, 2~^~10/01/2002~ -~09070~^~211~^6.59^13^0.61^~1~^~A~^^^4^4.77^16.14^2^3.94^9.23^~2~^~10/01/2002~ -~09070~^~212~^5.37^13^0.44^~1~^~A~^^^4^3.20^10.22^2^3.47^7.26^~2~^~10/01/2002~ -~09070~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09070~^~214~^0.12^5^0.12^~1~^~A~^^^2^0.00^0.24^1^-1.40^1.64^~1, 4~^~10/01/2002~ -~09070~^~255~^82.25^12^0.54^~1~^~A~^^^4^77.90^86.50^1^75.31^89.18^~2~^~10/01/2002~ -~09070~^~269~^12.82^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~09070~^~287~^0.59^4^0.30^~1~^~A~^^^1^0.07^1.29^3^-0.38^1.57^~1, 2, 3~^~10/01/2002~ -~09070~^~303~^0.36^65^5.0e-03^~1~^~A~^^^20^0.03^0.92^16^0.35^0.36^~1, 2~^~10/01/2002~ -~09070~^~309~^0.07^65^2.0e-03^~1~^~A~^^^20^0.00^0.67^16^0.06^0.07^~1, 2~^~10/01/2002~ -~09070~^~323~^0.07^5^0.01^~1~^~A~^^^2^0.06^0.08^1^-0.05^0.19^~4~^~10/01/2002~ -~09070~^~341~^0.01^5^0.01^~1~^~A~^^^2^0.00^0.02^1^-0.11^0.13^~1, 4~^~10/01/2002~ -~09070~^~342~^0.04^5^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.41^0.48^~1, 4~^~10/01/2002~ -~09070~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~10/01/2002~ -~09070~^~344~^0.03^9^0.02^~1~^~A~^^^2^0.00^0.07^2^-0.06^0.12^~1, 4~^~10/01/2002~ -~09070~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~10/01/2002~ -~09070~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~10/01/2002~ -~09070~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~10/01/2002~ -~09070~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09071~^~203~^0.77^19^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~204~^0.13^19^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~205~^11.76^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09071~^~207~^0.29^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~255~^87.05^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~269~^10.26^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~09071~^~303~^0.36^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~309~^0.08^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~323~^0.23^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09071~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09072~^~203~^0.91^6^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~204~^0.02^6^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~205~^13.81^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09072~^~207~^0.31^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~255~^84.95^6^0.15^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~269~^12.31^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09072~^~303~^0.58^6^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~309~^0.10^6^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~323~^0.23^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09072~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09073~^~203~^0.61^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~205~^17.29^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09073~^~207~^0.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~255~^81.56^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~269~^15.79^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09073~^~303~^0.36^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~323~^0.23^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~ -~09073~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09074~^~203~^0.60^82^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~204~^0.15^82^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~205~^21.27^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09074~^~207~^0.38^82^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~210~^2.20^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09074~^~211~^7.93^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09074~^~212~^5.19^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09074~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09074~^~214~^0.87^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09074~^~255~^77.61^82^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~269~^16.18^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09074~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09074~^~303~^0.35^82^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~309~^0.10^81^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~323~^0.17^2^^~1~^~A~^^^2^0.12^0.23^1^^^^~04/01/2008~ -~09074~^~341~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~342~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~343~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~344~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2008~ -~09074~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09075~^~203~^0.59^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~205~^26.23^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09075~^~207~^0.37^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~255~^72.66^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~303~^0.35^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09077~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~205~^19.95^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09077~^~207~^0.42^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~255~^78.94^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~303~^0.36^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09078~^~203~^0.46^5^0.06^~1~^~A~^^^2^0.16^0.56^1^-0.41^1.33^~2~^~05/01/2015~ -~09078~^~204~^0.13^4^0.03^~1~^~A~^^^1^0.07^0.20^3^0.02^0.22^~1, 2, 3~^~08/01/2002~ -~09078~^~205~^11.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09078~^~207~^0.12^5^0.02^~1~^~A~^^^2^0.07^0.21^1^-0.17^0.41^~1, 2~^~05/01/2015~ -~09078~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~210~^0.16^5^0.03^~1~^~A~^^^2^0.07^0.20^1^-0.31^0.63^~1, 2~^~05/01/2015~ -~09078~^~211~^3.44^5^0.16^~1~^~A~^^^2^2.89^3.78^1^1.41^5.47^~2~^~05/01/2015~ -~09078~^~212~^0.67^5^0.03^~1~^~A~^^^2^0.51^0.80^1^0.22^1.10^~2~^~05/01/2015~ -~09078~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~08/01/2002~ -~09078~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~08/01/2002~ -~09078~^~255~^87.32^5^0.18^~1~^~A~^^^2^86.62^87.90^1^84.99^89.63^~2~^~05/01/2015~ -~09078~^~269~^4.27^5^0.23^~1~^~A~^^^2^3.55^4.75^1^1.32^7.21^~2~^~05/01/2015~ -~09078~^~287~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~08/01/2002~ -~09078~^~303~^0.23^5^0.01^~1~^~A~^^^2^0.19^0.39^1^0.05^0.41^~2~^~05/01/2015~ -~09078~^~309~^0.09^5^0.01^~1~^~A~^^^2^0.08^0.12^1^-0.03^0.21^~2~^~05/01/2015~ -~09078~^~323~^1.32^5^0.12^~1~^~A~^^^2^0.88^1.45^1^-0.20^2.84^~2~^~05/01/2015~ -~09078~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~342~^0.04^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~08/01/2002~ -~09078~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~346~^0.29^4^0.04^~1~^~A~^^^1^0.22^0.41^3^0.15^0.42^~2, 3~^~08/01/2002~ -~09078~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2002~ -~09078~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09079~^~203~^0.17^7^0.09^~1~^~A~^^^2^0.07^0.40^1^-1.05^1.39^~1, 2~^~06/01/2015~ -~09079~^~204~^1.09^2^^~1~^~A~^^^2^0.81^1.37^1^^^^~06/01/2015~ -~09079~^~205~^82.80^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09079~^~207~^0.15^7^0.04^~1~^~A~^^^2^0.10^0.20^1^-0.46^0.76^~1, 2~^~06/01/2015~ -~09079~^~210~^15.83^6^1.24^~1~^~A~^^^1^12.70^20.90^5^12.63^19.02^~4~^~06/01/2015~ -~09079~^~211~^29.69^6^0.66^~1~^~A~^^^1^27.50^32.10^5^27.97^31.39^~4~^~06/01/2015~ -~09079~^~212~^26.96^6^0.96^~1~^~A~^^^1^23.80^30.70^5^24.48^29.43^~4~^~06/01/2015~ -~09079~^~213~^0.08^6^0.08^~1~^~A~^^^1^0.00^0.50^5^-0.13^0.29^~1, 4~^~06/01/2015~ -~09079~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~06/01/2015~ -~09079~^~255~^15.79^7^0.21^~1~^~A~^^^2^13.70^18.30^1^13.08^18.48^~2~^~06/01/2015~ -~09079~^~269~^72.56^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09079~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~06/01/2015~ -~09079~^~303~^0.39^7^0.14^~1~^~A~^^^2^0.16^0.53^1^-1.40^2.18^~2~^~06/01/2015~ -~09079~^~309~^0.10^4^8.0e-03^~1~^~A~^^^2^0.07^0.14^1^5.0e-03^0.20^~2~^~06/01/2015~ -~09079~^~323~^2.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~342~^0.17^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~418~^0.00^0^^~7~^^^^^^^^^^^~01/01/2007~ -~09079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09081~^~203~^0.90^2^^~1~^~A~^^^1^0.75^1.05^1^^^^~06/01/2015~ -~09081~^~204~^0.15^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09081~^~205~^40.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09081~^~207~^0.10^2^^~1~^~A~^^^1^0.10^0.10^1^^^~1~^~08/01/1982~ -~09081~^~210~^0.10^2^^~1~^~A~^^^1^0.10^0.10^1^^^~1~^~06/01/2015~ -~09081~^~211~^17.45^2^^~1~^~A~^^^1^17.10^17.80^1^^^^~06/01/2015~ -~09081~^~212~^9.75^2^^~1~^~A~^^^1^9.70^9.80^1^^^^~06/01/2015~ -~09081~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~06/01/2015~ -~09081~^~214~^4.45^2^^~1~^~A~^^^1^4.40^4.50^1^^^^~06/01/2015~ -~09081~^~255~^58.45^2^^~1~^~A~^^^1^58.20^58.70^1^^^^~06/01/2015~ -~09081~^~269~^31.75^2^^~1~^~A~^^^1^31.30^32.20^1^^^^~06/01/2015~ -~09081~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~06/01/2015~ -~09081~^~303~^0.41^2^^~1~^~A~^^^1^0.20^0.62^1^^^^~06/01/2015~ -~09081~^~309~^0.03^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~06/01/2015~ -~09081~^~323~^0.93^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09082~^~203~^0.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~205~^46.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09082~^~207~^0.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~255~^53.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~303~^0.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09083~^~203~^1.40^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~204~^0.41^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~205~^15.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09083~^~207~^0.86^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~255~^81.96^4^0.43^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~303~^1.54^4^0.41^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~309~^0.27^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~323~^1.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09084~^~203~^1.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~205~^13.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09084~^~207~^0.66^5^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~210~^0.61^3^0.29^~1~^~A~^^^1^0.14^1.16^2^-0.66^1.89^~4~^~02/01/2003~ -~09084~^~211~^3.22^3^0.20^~1~^~A~^^^1^2.92^3.60^2^2.35^4.08^~4~^~02/01/2003~ -~09084~^~212~^3.53^3^0.23^~1~^~A~^^^1^3.18^3.98^2^2.52^4.54^~4~^~02/01/2003~ -~09084~^~255~^83.95^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~269~^7.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09084~^~303~^1.00^5^0.09^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~309~^0.23^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~323~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09085~^~203~^3.43^6^0.08^~1~^~A~^^^1^3.12^3.69^5^3.20^3.64^~2, 3~^~07/01/2017~ -~09085~^~204~^0.22^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09085~^~205~^76.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~207~^1.77^6^0.05^~1~^~A~^^^1^1.56^1.89^5^1.63^1.90^~2, 3~^~07/01/2017~ -~09085~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~211~^29.78^6^0.42^~1~^~A~^^^1^28.70^31.70^5^28.68^30.88^~2, 3~^~07/01/2017~ -~09085~^~212~^32.50^6^0.42^~1~^~A~^^^1^31.70^34.50^5^31.41^33.58^~2, 3~^~07/01/2017~ -~09085~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~255~^17.60^6^0.54^~1~^~A~^^^1^15.69^19.39^5^16.20^19.00^~2, 3~^~07/01/2017~ -~09085~^~269~^62.28^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09085~^~303~^1.88^6^0.07^~1~^~A~^^^1^1.70^2.10^5^1.70^2.06^~2, 3~^~07/01/2017~ -~09085~^~309~^0.37^6^4.0e-03^~1~^~A~^^^1^0.35^0.37^5^0.35^0.37^~1, 2, 3~^~07/01/2017~ -~09085~^~323~^0.11^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~ -~09085~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09086~^~203~^1.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~205~^25.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09086~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~255~^71.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~303~^0.71^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09087~^~203~^2.45^13^0.10^~1~^~A~^^^3^2.10^2.82^2^2.01^2.88^~2~^~10/01/2002~ -~09087~^~204~^0.39^13^0.18^~1~^~A~^^^3^0.13^0.91^2^-0.39^1.17^~2~^~10/01/2002~ -~09087~^~205~^75.03^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~207~^1.60^13^0.07^~1~^~A~^^^3^1.30^1.75^2^1.29^1.90^~2~^~10/01/2002~ -~09087~^~210~^23.84^7^2.22^~1~^~A~^^^2^17.12^37.42^3^17.01^30.67^~2, 3~^~10/01/2002~ -~09087~^~211~^19.87^8^0.69^~1~^~A~^^^2^14.99^23.19^6^18.16^21.57^~2, 3~^~10/01/2002~ -~09087~^~212~^19.56^8^0.72^~1~^~A~^^^2^15.50^22.58^6^17.78^21.33^~2, 3~^~10/01/2002~ -~09087~^~213~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~214~^0.12^8^0.02^~1~^~A~^^^2^0.00^0.33^3^0.04^0.18^~1, 2, 3~^~10/01/2002~ -~09087~^~255~^20.53^13^0.75^~1~^~A~^^^3^17.93^21.80^2^17.26^23.79^~2~^~10/01/2002~ -~09087~^~269~^63.35^7^0.85^~1~^~A~^^^2^61.51^68.03^2^59.86^66.83^~2, 3~^~10/01/2002~ -~09087~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~303~^1.02^13^0.02^~1~^~A~^^^3^0.88^1.30^2^0.93^1.11^~2~^~10/01/2002~ -~09087~^~309~^0.29^11^0.03^~1~^~A~^^^3^0.21^0.40^2^0.14^0.43^~2~^~10/01/2002~ -~09087~^~323~^0.05^4^0.01^~1~^~A~^^^1^0.02^0.09^3^9.0e-03^0.10^~2, 3~^~10/01/2002~ -~09087~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~342~^0.05^4^0.01^~1~^~A~^^^1^0.02^0.08^3^0.01^0.09^~2, 3~^~10/01/2002~ -~09087~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~344~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.02^~1, 2, 3~^~10/01/2002~ -~09087~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09087~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09088~^~203~^0.66^12^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~205~^18.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09088~^~207~^0.64^12^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~255~^79.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~303~^1.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~309~^0.11^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09088~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09089~^~203~^0.75^16^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~205~^19.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09089~^~207~^0.66^16^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~255~^79.11^16^0.33^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~269~^16.26^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09089~^~303~^0.37^16^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~323~^0.11^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09089~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09090~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~205~^13.99^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09090~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~255~^85.21^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~269~^11.79^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09090~^~303~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~323~^0.08^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09090~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09091~^~203~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~205~^17.95^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09091~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~255~^81.26^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~269~^16.15^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~09091~^~303~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~323~^0.10^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09091~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09092~^~203~^0.38^18^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~204~^0.10^18^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~205~^22.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09092~^~207~^0.29^18^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~255~^76.33^18^0.14^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~269~^20.70^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~09092~^~303~^0.28^18^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~309~^0.11^18^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~323~^0.12^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09092~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09092~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09092~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09093~^~203~^0.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~205~^27.86^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09093~^~207~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~255~^71.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~303~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09094~^~203~^3.30^8^0.10^~1~^~A~^^^2^2.42^4.22^5^3.04^3.55^~2, 3~^~12/01/2002~ -~09094~^~204~^0.93^8^0.02^~1~^~A~^^^2^0.59^1.30^5^0.85^1.00^~2, 3~^~12/01/2002~ -~09094~^~205~^63.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09094~^~207~^1.86^8^0.02^~1~^~A~^^^2^1.60^2.07^4^1.78^1.92^~2, 3~^~12/01/2002~ -~09094~^~209~^5.07^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~210~^0.07^8^0.00^~1~^~A~^^^2^0.07^0.07^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~211~^24.79^8^0.31^~1~^~A~^^^2^23.71^25.92^6^24.01^25.55^~2, 3~^~12/01/2002~ -~09094~^~212~^22.93^8^0.21^~1~^~A~^^^2^22.06^23.60^5^22.39^23.47^~2, 3~^~12/01/2002~ -~09094~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~255~^30.05^8^0.42^~1~^~A~^^^2^28.16^32.18^6^29.00^31.08^~2, 3~^~12/01/2002~ -~09094~^~269~^47.92^8^0.37^~1~^~A~^^^2^46.12^49.29^5^46.92^48.92^~2, 3~^~12/01/2002~ -~09094~^~287~^0.13^8^0.05^~1~^~A~^^^2^0.00^0.57^3^-0.05^0.30^~1, 2, 3~^~12/01/2002~ -~09094~^~303~^2.03^8^0.12^~1~^~A~^^^2^1.70^2.78^4^1.67^2.38^~2, 3~^~12/01/2002~ -~09094~^~309~^0.55^8^0.04^~1~^~A~^^^2^0.44^0.80^3^0.43^0.67^~2, 3~^~12/01/2002~ -~09094~^~323~^0.35^4^0.04^~1~^~A~^^^1^0.27^0.46^3^0.22^0.48^~2, 3~^~12/01/2002~ -~09094~^~341~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.02^~1, 2, 3~^~12/01/2002~ -~09094~^~342~^0.37^4^0.11^~1~^~A~^^^1^0.16^0.64^3^-8.0e-03^0.74^~2, 3~^~12/01/2002~ -~09094~^~343~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~12/01/2002~ -~09094~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.02^0.07^~1, 2, 3~^~12/01/2002~ -~09094~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09094~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09095~^~203~^1.42^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~204~^0.40^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~205~^27.57^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09095~^~207~^0.80^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~255~^69.80^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~269~^23.35^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09095~^~303~^0.88^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~309~^0.24^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~323~^0.15^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09096~^~203~^0.42^12^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~204~^0.05^9^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~205~^8.51^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09096~^~207~^0.26^13^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~255~^90.76^37^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~269~^7.51^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09096~^~303~^0.25^13^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~323~^0.40^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09096~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09097~^~203~^0.46^7^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~204~^0.01^6^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~205~^11.86^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09097~^~207~^0.23^6^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~255~^87.44^6^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~269~^10.86^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09097~^~303~^0.21^7^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~309~^0.09^6^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~323~^0.40^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~ -~09097~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09098~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~205~^11.63^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09098~^~207~^0.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~255~^87.70^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~309~^0.08^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09099~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~205~^14.93^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09099~^~207~^0.23^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~255~^84.37^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~269~^13.93^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09099~^~303~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~323~^0.50^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09099~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09100~^~203~^0.39^129^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~204~^0.07^91^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~205~^18.91^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09100~^~207~^0.23^134^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~255~^80.40^204^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~269~^17.91^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09100~^~303~^0.29^160^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~309~^0.08^47^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09100~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09101~^~203~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~205~^22.89^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09101~^~207~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~255~^76.43^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~303~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~309~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09102~^~203~^0.35^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~205~^7.87^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09102~^~207~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~255~^91.50^16^0.29^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~309~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09103~^~203~^0.51^7^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~204~^0.03^7^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~205~^13.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09103~^~207~^0.26^7^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~255~^86.15^7^0.18^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~303~^0.25^7^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~309~^0.14^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09104~^~203~^0.34^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~205~^15.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09104~^~207~^0.21^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~255~^84.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~303~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09106~^~203~^0.33^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~204~^0.06^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~205~^22.77^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09106~^~207~^0.21^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~255~^76.64^10^0.38^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~303~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09107~^~203~^0.88^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~204~^0.58^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~205~^10.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09107~^~207~^0.49^5^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~255~^87.87^15^0.37^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~303~^0.31^5^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~309~^0.12^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~323~^0.37^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09109~^~203~^0.65^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~204~^0.20^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~205~^18.75^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09109~^~207~^0.29^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~255~^80.10^3^0.51^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~303~^0.33^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~309~^0.11^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09110~^~203~^14.26^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~204~^0.39^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~205~^77.06^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~207~^0.78^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~09110~^~255~^7.50^0^^~4~^~BFZN~^~09030~^^^^^^^^^~12/01/2014~ -~09110~^~269~^45.61^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~303~^6.80^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09111~^~203~^0.63^51^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~205~^8.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09111~^~207~^0.31^49^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~255~^90.89^56^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~269~^6.98^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09111~^~303~^0.09^35^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~309~^0.07^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~323~^0.13^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09111~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09111~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09111~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09112~^~203~^0.77^8^0.03^~1~^~A~^^^2^0.70^0.95^5^0.68^0.85^~2, 3~^~01/01/2003~ -~09112~^~204~^0.14^8^0.03^~1~^~A~^^^2^0.07^0.36^3^0.04^0.24^~1, 2, 3~^~01/01/2003~ -~09112~^~205~^10.66^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09112~^~207~^0.36^8^8.0e-03^~1~^~A~^^^2^0.28^0.45^6^0.33^0.37^~2, 3~^~01/01/2003~ -~09112~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~210~^3.51^8^0.17^~1~^~A~^^^2^2.29^4.35^6^3.07^3.95^~2, 3~^~01/01/2003~ -~09112~^~211~^1.61^8^0.15^~1~^~A~^^^2^0.96^2.11^4^1.14^2.07^~2, 3~^~01/01/2003~ -~09112~^~212~^1.77^8^0.08^~1~^~A~^^^2^1.27^2.17^6^1.57^1.96^~2, 3~^~01/01/2003~ -~09112~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~255~^88.06^9^0.76^~1~^~A~^^^3^86.90^90.67^2^84.78^91.33^~2~^~01/01/2003~ -~09112~^~269~^6.89^8^0.36^~1~^~A~^^^2^4.91^7.80^4^5.87^7.90^~2, 3~^~01/01/2003~ -~09112~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~303~^0.08^5^0.01^~1~^~A~^^^2^0.06^0.11^1^-0.13^0.29^~2~^~01/01/2003~ -~09112~^~309~^0.07^9^0.01^~1~^~A~^^^3^0.05^0.10^2^0.01^0.12^~2~^~01/01/2003~ -~09112~^~323~^0.13^8^0.01^~1~^~A~^^^2^0.10^0.23^3^0.08^0.18^~2, 3~^~01/01/2003~ -~09112~^~341~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~342~^0.00^8^2.0e-03^~1~^~A~^^^2^0.00^0.01^3^-4.0e-03^8.0e-03^~1, 2, 3~^~01/01/2003~ -~09112~^~343~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~344~^0.02^3^0.00^~1~^~A~^^^2^0.01^0.03^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~345~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~346~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09112~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09113~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~205~^9.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09113~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~255~^89.31^6^0.33^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~303~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09114~^~203~^0.55^16^0.01^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~204~^0.10^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~205~^7.50^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~09114~^~207~^0.29^16^5.0e-03^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~255~^91.56^16^0.05^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~303~^0.12^3^9.0e-03^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~309~^0.07^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09116~^~203~^0.69^35^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~205~^8.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09116~^~207~^0.33^33^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~255~^90.48^34^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~269~^7.31^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09116~^~303~^0.06^32^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~309~^0.07^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~323~^0.13^0^^~4~^~BFZN~^~09112~^^^^^^^^^~01/01/2003~ -~09116~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09117~^~203~^0.88^19^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~205~^9.09^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09117~^~207~^0.35^17^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~255~^89.58^18^0.26^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~303~^0.08^16^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~309~^0.07^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09118~^~203~^0.63^16^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~205~^8.19^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09118~^~207~^0.32^16^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~255~^90.76^16^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~303~^0.05^16^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09119~^~203~^0.58^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~205~^9.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09119~^~207~^0.32^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~255~^89.85^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~269~^8.75^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09119~^~303~^0.41^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~323~^0.09^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09119~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09120~^~203~^0.70^13^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~204~^0.09^14^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~205~^9.21^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09120~^~207~^0.34^5^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~255~^89.67^5^0.30^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~269~^8.80^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09120~^~303~^0.21^5^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~309~^0.08^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~323~^0.09^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09120~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09121~^~203~^0.56^14^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~204~^0.10^14^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~205~^15.44^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09121~^~207~^0.31^14^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~255~^83.59^14^0.21^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~269~^15.04^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~09121~^~303~^0.40^14^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~309~^0.08^14^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~323~^0.09^0^^~4~^~BFYN~^~09112~^^^^^^^^^~01/01/2003~ -~09121~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09123~^~203~^0.55^11^0.02^~1~^~A~^^^2^0.44^0.63^4^0.48^0.60^~2, 3~^~10/01/2016~ -~09123~^~204~^0.66^10^0.04^~1~^~A~^^^1^0.43^0.87^5^0.53^0.78^~2, 3~^~10/01/2016~ -~09123~^~205~^7.54^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09123~^~207~^0.29^11^0.01^~1~^~A~^^^2^0.11^0.35^8^0.26^0.31^~2, 3~^~10/01/2016~ -~09123~^~210~^1.29^7^0.16^~1~^~A~^^^2^0.69^1.70^2^0.56^2.00^~2, 3~^~10/01/2016~ -~09123~^~211~^3.10^7^0.10^~1~^~A~^^^2^2.60^3.52^2^2.67^3.51^~2, 3~^~10/01/2016~ -~09123~^~212~^3.24^7^0.11^~1~^~A~^^^2^2.90^3.66^2^2.76^3.71^~2, 3~^~10/01/2016~ -~09123~^~213~^0.02^7^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09123~^~214~^0.02^7^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09123~^~255~^90.97^11^0.02^~1~^~A~^^^2^90.68^91.20^4^90.88^91.04^~2, 3~^~10/01/2016~ -~09123~^~269~^7.69^7^0.32^~1~^~A~^^^2^7.23^8.79^2^6.31^9.06^~2, 3~^~10/01/2016~ -~09123~^~287~^0.02^7^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09123~^~303~^0.08^11^2.0e-03^~1~^~A~^^^2^0.06^0.11^8^0.07^0.08^~2, 3~^~10/01/2016~ -~09123~^~309~^0.05^11^1.0e-03^~1~^~A~^^^2^0.04^0.08^7^0.04^0.04^~2, 3~^~10/01/2016~ -~09123~^~323~^0.21^2^^~1~^~A~^^^1^0.21^0.23^^^^^~10/01/2016~ -~09123~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~09123~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09123~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09123~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09124~^~203~^0.58^16^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~204~^0.09^16^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~205~^11.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09124~^~207~^0.82^16^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~255~^87.38^16^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~269~^11.03^0^^~4~^~O~^^^^^^^^^^~01/01/2005~ -~09124~^~303~^0.36^16^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~309~^0.06^16^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~323~^0.04^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09124~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09125~^~203~^1.97^3^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~204~^0.48^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~205~^34.56^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09125~^~207~^0.99^3^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~255~^62.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~269~^34.16^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09125~^~303~^0.49^3^0.21^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~309~^0.18^3^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~323~^0.14^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~ -~09125~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09126~^~203~^0.55^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~204~^0.13^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~205~^9.73^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09126~^~207~^0.28^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~255~^89.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~269~^9.63^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09126~^~303~^0.14^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~309~^0.05^3^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~323~^0.04^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~ -~09126~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09126~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09126~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09127~^~203~^0.51^6^0.02^~1~^~A~^^^1^0.44^0.56^5^0.44^0.57^~2, 3~^~10/01/2016~ -~09127~^~204~^0.68^6^0.05^~1~^~A~^^^1^0.49^0.83^5^0.54^0.82^~2, 3~^~10/01/2016~ -~09127~^~205~^7.74^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09127~^~207~^0.29^6^0.01^~1~^~A~^^^1^0.26^0.34^5^0.26^0.32^~2, 3~^~10/01/2016~ -~09127~^~210~^2.54^3^0.12^~1~^~A~^^^1^2.41^2.79^2^2.01^3.07^~2, 3~^~10/01/2016~ -~09127~^~211~^2.67^3^0.15^~1~^~A~^^^1^2.48^2.97^2^2.01^3.32^~2, 3~^~10/01/2016~ -~09127~^~212~^2.75^3^0.15^~1~^~A~^^^1^2.59^3.05^2^2.10^3.39^~2, 3~^~10/01/2016~ -~09127~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~09127~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~09127~^~255~^90.77^6^0.24^~1~^~A~^^^1^90.40^92.00^5^90.13^91.40^~2, 3~^~10/01/2016~ -~09127~^~269~^7.96^3^0.42^~1~^~A~^^^1^7.48^8.81^2^6.13^9.79^~2, 3~^~10/01/2016~ -~09127~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~09127~^~303~^0.06^6^3.0e-03^~1~^~A~^^^1^0.05^0.07^5^0.05^0.06^~2, 3~^~10/01/2016~ -~09127~^~309~^0.04^6^2.0e-03^~1~^~A~^^^1^0.03^0.05^5^0.03^0.04^~2, 3~^~10/01/2016~ -~09127~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09127~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09127~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09128~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09128~^~207~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~255~^90.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~269~^9.10^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09128~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09128~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09129~^~203~^0.81^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~204~^0.47^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~205~^13.93^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09129~^~207~^0.50^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~210~^0.57^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~211~^3.67^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~212~^3.92^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~09129~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~09129~^~255~^84.29^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~303~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~309~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09130~^~203~^0.37^5^0.01^~1~^~A~^^^2^0.36^0.42^1^0.22^0.52^~2~^~06/01/2008~ -~09130~^~204~^0.13^7^0.07^~1~^~A~^^^3^0.00^0.34^2^-0.20^0.46^~2~^~06/01/2008~ -~09130~^~205~^14.77^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~207~^0.22^4^0.05^~1~^~A~^^^2^0.11^0.28^1^-0.51^0.95^~2~^~06/01/2008~ -~09130~^~210~^0.04^5^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~06/01/2008~ -~09130~^~211~^6.81^5^0.02^~1~^~A~^^^2^6.72^6.87^1^6.47^7.13^~2~^~06/01/2008~ -~09130~^~212~^7.36^5^0.06^~1~^~A~^^^2^7.20^7.69^1^6.56^8.15^~2~^~06/01/2008~ -~09130~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09130~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09130~^~255~^84.51^5^0.88^~1~^~A~^^^2^83.62^85.78^1^73.23^95.79^~2~^~06/01/2008~ -~09130~^~269~^14.20^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09130~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09130~^~303~^0.25^13^0.07^~1~^~A~^^^5^0.09^1.00^4^0.05^0.44^~2~^~06/01/2008~ -~09130~^~309~^0.07^10^9.0e-03^~1~^~A~^^^4^0.05^0.13^3^0.04^0.10^~2~^~06/01/2008~ -~09130~^~323~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~06/01/2008~ -~09130~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~06/01/2008~ -~09130~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~06/01/2008~ -~09130~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~06/01/2008~ -~09130~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09131~^~203~^0.63^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~204~^0.35^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~205~^17.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09131~^~207~^0.57^4^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~255~^81.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~269~^16.25^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09131~^~303~^0.29^4^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~309~^0.04^4^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~323~^0.19^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~ -~09131~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09132~^~203~^0.72^8^0.03^~1~^~A~^^^1^0.55^0.86^7^0.64^0.79^~2, 3~^~01/01/2003~ -~09132~^~204~^0.16^8^0.03^~1~^~A~^^^1^0.07^0.31^7^0.09^0.23^~1, 2, 3~^~01/01/2003~ -~09132~^~205~^18.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~207~^0.48^8^0.03^~1~^~A~^^^1^0.33^0.69^7^0.39^0.57^~2, 3~^~01/01/2003~ -~09132~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~210~^0.15^8^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~211~^7.20^8^0.09^~1~^~A~^^^1^6.87^7.62^7^6.97^7.42^~2, 3~^~01/01/2003~ -~09132~^~212~^8.13^8^0.21^~1~^~A~^^^1^7.51^9.16^7^7.61^8.64^~2, 3~^~01/01/2003~ -~09132~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09132~^~255~^80.54^8^0.41^~1~^~A~^^^1^78.47^82.22^7^79.57^81.51^~2, 3~^~01/01/2003~ -~09132~^~269~^15.48^8^0.27^~1~^~A~^^^1^14.63^16.73^7^14.82^16.13^~2, 3~^~01/01/2003~ -~09132~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09132~^~303~^0.36^36^0.04^~1~^~A~^^^11^0.14^1.13^10^0.24^0.46^~1, 2~^~01/01/2003~ -~09132~^~309~^0.07^36^0.01^~1~^~A~^^^11^0.03^0.21^10^0.04^0.08^~1, 2~^~05/01/2003~ -~09132~^~323~^0.19^5^0.01^~1~^~A~^^^2^0.11^0.28^1^0.01^0.36^~2~^~01/01/2003~ -~09132~^~341~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~342~^0.07^5^5.0e-03^~1~^~A~^^^2^0.00^0.10^1^0.01^0.13^~1, 2~^~01/01/2003~ -~09132~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~344~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09132~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09133~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~205~^10.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09133~^~207~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~255~^88.84^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~269~^9.70^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09133~^~303~^0.98^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~323~^0.13^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09133~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09134~^~203~^0.48^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~205~^19.65^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09134~^~207~^0.24^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~255~^79.53^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~269~^19.05^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~09134~^~303~^0.94^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~309~^0.05^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~323~^0.13^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~ -~09134~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09135~^~203~^0.37^5^0.01^~1~^~A~^^^2^0.36^0.42^1^0.22^0.52^~2~^~06/01/2008~ -~09135~^~204~^0.13^7^0.07^~1~^~A~^^^3^0.00^0.34^2^-0.20^0.46^~2~^~06/01/2008~ -~09135~^~205~^14.77^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09135~^~207~^0.22^4^0.05^~1~^~A~^^^2^0.11^0.28^1^-0.51^0.95^~2~^~06/01/2008~ -~09135~^~210~^0.04^5^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~06/01/2008~ -~09135~^~211~^6.81^5^0.02^~1~^~A~^^^2^6.72^6.87^1^6.47^7.13^~2~^~06/01/2008~ -~09135~^~212~^7.36^5^0.06^~1~^~A~^^^2^7.20^7.69^1^6.56^8.15^~2~^~06/01/2008~ -~09135~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09135~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2008~ -~09135~^~255~^84.51^5^0.88^~1~^~A~^^^2^83.62^85.78^1^73.23^95.79^~2~^~06/01/2008~ -~09135~^~269~^14.20^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~09135~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09135~^~303~^0.25^13^0.07^~1~^~A~^^^5^0.09^1.00^4^0.05^0.44^~2~^~06/01/2008~ -~09135~^~309~^0.07^10^9.0e-03^~1~^~A~^^^4^0.05^0.13^3^0.04^0.10^~2~^~06/01/2008~ -~09135~^~323~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~11/01/2002~ -~09135~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~11/01/2002~ -~09135~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~11/01/2002~ -~09135~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~11/01/2002~ -~09135~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09135~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09135~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~09135~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09138~^~203~^1.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~205~^11.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09138~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~255~^85.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~303~^1.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09139~^~203~^2.55^2^^~1~^~A~^^^1^2.11^2.99^1^^^^~09/01/2003~ -~09139~^~204~^0.95^2^^~1~^~A~^^^1^0.77^1.13^1^^^^~09/01/2003~ -~09139~^~205~^14.32^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~207~^1.39^2^^~1~^~A~^^^1^1.34^1.43^1^^^^~09/01/2003~ -~09139~^~255~^80.80^2^^~1~^~A~^^^1^80.50^81.10^1^^^^~09/01/2003~ -~09139~^~269~^8.92^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~09139~^~303~^0.26^2^^~1~^~A~^^^1^0.20^0.32^1^^^^~09/01/2003~ -~09139~^~309~^0.23^2^^~1~^~A~^^^1^0.18^0.27^1^^^^~09/01/2003~ -~09139~^~323~^0.73^0^^~4~^~BFZN~^~09236~^^^^^^^^^~04/01/2003~ -~09139~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09140~^~203~^0.58^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~205~^17.36^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09140~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~255~^80.66^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~303~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09143~^~203~^0.32^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~204~^0.14^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~205~^9.48^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09143~^~207~^0.50^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~255~^89.56^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~269~^5.88^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~09143~^~303~^0.18^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~323~^0.55^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~ -~09143~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09144~^~203~^1.72^2^^~1~^~A~^^^1^1.00^2.44^1^^^^~01/01/2010~ -~09144~^~204~^0.64^2^^~1~^~A~^^^1^0.50^0.77^1^^^^~01/01/2010~ -~09144~^~205~^23.25^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~207~^0.94^2^^~1~^~A~^^^1^0.80^1.08^1^^^^~01/01/2010~ -~09144~^~209~^1.47^2^^~1~^~A~^^^1^0.74^2.20^1^^^~1~^~01/01/2010~ -~09144~^~210~^0.42^2^^~1~^~A~^^^1^0.07^0.76^1^^^~1~^~01/01/2010~ -~09144~^~211~^9.48^2^^~1~^~A~^^^1^8.35^10.60^1^^^^~01/01/2010~ -~09144~^~212~^9.19^2^^~1~^~A~^^^1^8.19^10.18^1^^^^~01/01/2010~ -~09144~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2010~ -~09144~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2010~ -~09144~^~255~^73.46^2^^~1~^~A~^^^1^70.02^76.90^1^^^^~08/01/2010~ -~09144~^~269~^19.08^2^^~1~^~A~^^^1^16.61^21.54^1^^^^~01/01/2010~ -~09144~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2010~ -~09144~^~303~^0.23^2^^~1~^~A~^^^1^0.15^0.31^1^^^^~01/01/2010~ -~09144~^~309~^0.13^2^^~1~^~A~^^^1^0.09^0.17^1^^^^~01/01/2010~ -~09144~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~341~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09144~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09144~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09144~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09144~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09144~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09145~^~203~^0.72^6^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~204~^0.23^5^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~205~^15.56^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09145~^~207~^0.36^5^0.09^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~255~^83.13^8^0.87^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~303~^0.19^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09146~^~203~^1.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~205~^20.23^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09146~^~207~^0.51^6^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~255~^77.86^11^2.10^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~303~^0.48^3^0.16^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~309~^0.05^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09147~^~203~^4.72^5^0.30^~1~^~A~^^^1^3.92^5.42^4^3.87^5.56^~2, 3~^~07/01/2015~ -~09147~^~204~^0.50^5^0.09^~1~^~A~^^^1^0.30^0.81^4^0.24^0.75^~2, 3~^~07/01/2015~ -~09147~^~205~^72.52^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~09147~^~207~^2.08^5^0.09^~1~^~A~^^^1^1.83^2.38^4^1.81^2.33^~2, 3~^~07/01/2015~ -~09147~^~210~^8.63^5^2.29^~1~^~A~^^^1^0.17^13.73^4^2.25^15.01^~2, 3~^~07/01/2015~ -~09147~^~211~^18.28^5^1.18^~1~^~A~^^^1^15.47^21.07^4^15.00^21.55^~2, 3~^~07/01/2015~ -~09147~^~212~^20.62^5^3.81^~1~^~A~^^^1^14.70^35.44^4^10.03^31.20^~2, 3~^~07/01/2015~ -~09147~^~255~^20.19^5^0.90^~1~^~A~^^^1^17.38^22.52^4^17.69^22.69^~2, 3~^~07/01/2015~ -~09147~^~303~^5.09^5^0.41^~1~^~A~^^^1^3.79^6.23^4^3.95^6.23^~2, 3~^~07/01/2015~ -~09147~^~309~^0.39^5^0.04^~1~^~A~^^^1^0.27^0.50^4^0.27^0.49^~2, 3~^~07/01/2015~ -~09147~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09148~^~203~^1.14^20^0.11^~1~^~A~^^^3^0.80^1.60^2^0.64^1.64^~2~^~01/01/2003~ -~09148~^~204~^0.52^20^0.12^~1~^~A~^^^3^0.11^1.09^2^-1.0e-03^1.03^~2~^~01/01/2003~ -~09148~^~205~^14.66^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~207~^0.61^20^0.04^~1~^~A~^^^3^0.40^0.72^2^0.41^0.80^~2~^~01/01/2003~ -~09148~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~210~^0.15^8^0.02^~1~^~A~^^^2^0.07^0.33^3^0.08^0.21^~1, 2, 3~^~01/01/2003~ -~09148~^~211~^4.11^8^0.05^~1~^~A~^^^2^3.80^4.55^3^3.94^4.27^~2, 3~^~01/01/2003~ -~09148~^~212~^4.35^8^0.08^~1~^~A~^^^2^4.04^4.80^4^4.11^4.58^~2, 3~^~01/01/2003~ -~09148~^~213~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~214~^0.19^8^0.01^~1~^~A~^^^2^0.15^0.30^3^0.14^0.24^~2, 3~^~01/01/2003~ -~09148~^~255~^83.07^20^0.98^~1~^~A~^^^3^80.00^85.11^2^78.81^87.32^~2~^~01/01/2003~ -~09148~^~269~^8.99^8^0.16^~1~^~A~^^^2^8.37^9.52^6^8.58^9.39^~2, 3~^~01/01/2003~ -~09148~^~287~^0.17^8^0.08^~1~^~A~^^^2^0.00^0.82^3^-0.10^0.45^~1, 2, 3~^~01/01/2003~ -~09148~^~303~^0.31^21^0.06^~1~^~A~^^^4^0.17^0.70^3^0.11^0.51^~2~^~01/01/2003~ -~09148~^~309~^0.14^21^0.01^~1~^~A~^^^4^0.09^0.20^3^0.10^0.17^~2~^~01/01/2003~ -~09148~^~323~^1.46^16^0.04^~1~^~A~^^^2^1.28^1.82^15^1.36^1.55^~4~^~01/01/2003~ -~09148~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~342~^0.03^4^5.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~01/01/2003~ -~09148~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~346~^0.10^4^0.01^~1~^~A~^^^1^0.07^0.14^3^0.05^0.15^~2, 3~^~01/01/2003~ -~09148~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09148~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09149~^~203~^1.88^2^^~1~^~A~^^^1^1.68^2.07^^^^^~02/01/2003~ -~09149~^~204~^0.86^2^^~1~^~A~^^^1^0.84^0.87^^^^^~02/01/2003~ -~09149~^~205~^15.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09149~^~207~^0.52^2^^~1~^~A~^^^1^0.49^0.55^^^^^~02/01/2003~ -~09149~^~255~^80.85^2^^~1~^~A~^^^1^77.40^84.30^^^^^~02/01/2003~ -~09149~^~269~^9.36^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09149~^~303~^0.86^2^^~1~^~A~^^^1^0.73^0.98^^^^^~02/01/2003~ -~09149~^~309~^0.17^2^^~1~^~A~^^^1^0.10^0.24^^^^^~02/01/2003~ -~09149~^~323~^0.15^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09149~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09150~^~203~^1.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~205~^9.32^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09150~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~255~^88.98^5^0.82^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~269~^2.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09150~^~303~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~309~^0.06^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~323~^0.15^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09150~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09152~^~203~^0.35^6^3.0e-03^~1~^~A~^^^2^0.30^0.40^1^0.30^0.38^~2~^~11/01/2009~ -~09152~^~204~^0.24^6^0.16^~1~^~A~^^^2^0.05^0.48^1^-1.84^2.31^~1, 2~^~11/01/2009~ -~09152~^~205~^6.90^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~207~^0.21^6^0.04^~1~^~A~^^^2^0.15^0.30^1^-0.33^0.74^~2~^~11/01/2009~ -~09152~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~210~^0.43^4^0.12^~1~^~A~^^^1^0.07^0.60^3^0.04^0.81^~1, 2, 3~^~11/01/2009~ -~09152~^~211~^0.99^4^0.01^~1~^~A~^^^1^0.96^1.02^3^0.94^1.03^~2, 3~^~11/01/2009~ -~09152~^~212~^1.10^4^0.03^~1~^~A~^^^1^1.02^1.17^3^0.99^1.19^~2, 3~^~11/01/2009~ -~09152~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2009~ -~09152~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2009~ -~09152~^~255~^92.31^6^0.25^~1~^~A~^^^2^92.00^92.87^1^89.02^95.59^~2~^~11/01/2009~ -~09152~^~269~^2.52^4^0.10^~1~^~A~^^^1^2.21^2.70^3^2.18^2.85^~2, 3~^~11/01/2009~ -~09152~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2009~ -~09152~^~303~^0.08^4^5.0e-03^~1~^~A~^^^1^0.07^0.09^3^0.06^0.09^~2, 3~^~11/01/2009~ -~09152~^~309~^0.05^6^0.02^~1~^~A~^^^2^0.02^0.08^1^-0.22^0.31^~2~^~11/01/2009~ -~09152~^~323~^0.15^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~ -~09152~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09153~^~203~^0.45^18^0.01^~1~^~A~^^^1^0.31^0.55^12^0.40^0.48^~2, 3~^~03/01/2015~ -~09153~^~204~^0.07^18^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~205~^5.62^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~207~^0.22^18^0.02^~1~^~A~^^^1^0.07^0.36^8^0.16^0.27^~1, 2, 3~^~03/01/2015~ -~09153~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~211~^0.84^6^0.02^~1~^~A~^^^1^0.65^0.90^1^0.68^0.98^~2, 3~^~03/01/2015~ -~09153~^~212~^0.70^6^0.01^~1~^~A~^^^1^0.62^0.73^2^0.62^0.77^~2, 3~^~03/01/2015~ -~09153~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~255~^93.64^18^0.07^~1~^~A~^^^1^93.20^94.20^10^93.46^93.81^~2, 3~^~03/01/2015~ -~09153~^~269~^1.53^6^0.03^~1~^~A~^^^1^1.27^1.63^2^1.37^1.68^~2, 3~^~03/01/2015~ -~09153~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~303~^0.06^18^4.0e-03^~1~^~A~^^^1^0.04^0.09^13^0.05^0.06^~1, 2, 3~^~03/01/2015~ -~09153~^~309~^0.19^18^0.03^~1~^~A~^^^1^0.03^0.51^8^0.09^0.27^~2, 3~^~03/01/2015~ -~09153~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09156~^~203~^1.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~205~^16.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09156~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~255~^81.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~269~^4.17^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~309~^0.25^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09156~^~323~^0.25^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~ -~09156~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09159~^~203~^0.70^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~204~^0.20^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~205~^10.54^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~09159~^~207~^0.30^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~255~^88.26^5^0.87^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~269~^1.69^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~303~^0.60^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~309~^0.11^1^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~323~^0.22^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~ -~09159~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09160~^~203~^0.42^4^0.02^~1~^~A~^^^1^0.37^0.47^3^0.35^0.48^~2, 3~^~04/01/2004~ -~09160~^~204~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~205~^8.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~207~^0.31^4^0.02^~1~^~A~^^^1^0.25^0.37^3^0.22^0.39^~2, 3~^~04/01/2004~ -~09160~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~09160~^~210~^0.48^4^0.05^~1~^~A~^^^1^0.33^0.61^3^0.29^0.66^~2, 3~^~04/01/2004~ -~09160~^~211~^0.60^4^0.04^~1~^~A~^^^1^0.48^0.67^3^0.46^0.72^~2, 3~^~04/01/2004~ -~09160~^~212~^0.61^4^0.04^~1~^~A~^^^1^0.51^0.73^3^0.46^0.75^~2, 3~^~04/01/2004~ -~09160~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~255~^90.79^4^0.12^~1~^~A~^^^1^90.57^91.07^3^90.38^91.18^~2, 3~^~04/01/2004~ -~09160~^~269~^1.69^4^0.12^~1~^~A~^^^1^1.32^1.86^3^1.29^2.08^~2, 3~^~04/01/2004~ -~09160~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~303~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.13^3^0.04^0.13^~2, 3~^~04/01/2004~ -~09160~^~309~^0.08^4^4.0e-03^~1~^~A~^^^1^0.07^0.09^3^0.07^0.09^~2, 3~^~04/01/2004~ -~09160~^~323~^0.22^2^^~1~^~A~^^^1^0.21^0.22^1^^^^~04/01/2004~ -~09160~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~344~^0.05^2^^~1~^~A~^^^1^0.02^0.07^1^^^^~04/01/2004~ -~09160~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~09160~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09160~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09160~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09161~^~203~^0.25^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~204~^0.23^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~205~^6.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09161~^~207~^0.31^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~255~^92.52^3^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~269~^1.37^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~303~^0.23^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~309~^0.06^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~323~^0.12^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~ -~09161~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09163~^~203~^2.50^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~204~^2.50^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~205~^80.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~207~^0.73^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~255~^14.80^0^^~4~^~O~^^^^^^^^^^~08/01/2012~ -~09163~^~269~^67.50^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~303~^0.90^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~309~^0.49^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~323~^2.35^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09163~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~09164~^~203~^0.83^7^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~204~^0.44^7^0.13^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~205~^16.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09164~^~207~^0.44^6^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~255~^81.76^9^1.01^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~269~^15.23^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09164~^~303~^0.31^5^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~309~^0.07^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~323~^0.07^0^^~4~^~BFSN~^~09040~^^^^^^^^^~02/01/2003~ -~09164~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09165~^~203~^3.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~204~^1.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~205~^70.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09165~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~255~^22.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~269~^66.10^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09165~^~303~^1.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~309~^0.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~323~^0.31^0^^~4~^~BFSN~^~09164~^^^^^^^^^~02/01/2003~ -~09165~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09167~^~203~^1.52^3^0.15^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~204~^0.31^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~205~^13.02^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09167~^~207~^0.54^3^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~255~^84.61^3^0.38^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~269~^7.70^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09167~^~303~^0.64^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~309~^0.34^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~323~^0.87^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09167~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09172~^~203~^1.31^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~205~^15.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09172~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~255~^82.75^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~303~^0.13^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~309~^0.05^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09173~^~203~^4.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~205~^74.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09173~^~207~^3.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~255~^17.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~303~^5.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~309~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09174~^~203~^0.43^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~205~^12.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09174~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~255~^86.73^13^1.19^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~303~^0.28^3^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~309~^0.05^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09175~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~205~^12.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09175~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~255~^86.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09176~^~203~^0.82^7^0.15^~1~^~A~^^^2^0.44^1.14^1^-1.12^2.76^~2~^~06/01/2010~ -~09176~^~204~^0.38^7^0.05^~1~^~A~^^^2^0.21^0.50^1^-0.27^1.03^~2~^~06/01/2010~ -~09176~^~205~^14.98^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09176~^~207~^0.36^7^0.03^~1~^~A~^^^2^0.25^0.42^1^-0.02^0.74^~2~^~06/01/2010~ -~09176~^~210~^6.97^4^1.29^~1~^~A~^^^2^0.07^9.37^1^-9.53^23.48^~1, 2~^~06/01/2010~ -~09176~^~211~^2.01^4^1.35^~1~^~A~^^^2^0.66^5.97^1^-15.18^19.20^~2~^~06/01/2010~ -~09176~^~212~^4.68^4^0.87^~1~^~A~^^^2^3.80^7.99^1^-6.44^15.79^~2~^~06/01/2010~ -~09176~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~09176~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~09176~^~255~^83.46^299^0.47^~1~^~A~^^^5^80.84^88.10^4^82.13^84.78^~2~^~08/01/2010~ -~09176~^~269~^13.66^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09176~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~09176~^~303~^0.16^8^0.04^~1~^~A~^^^3^0.09^0.41^2^-0.04^0.35^~2~^~06/01/2010~ -~09176~^~309~^0.09^8^0.01^~1~^~A~^^^3^0.06^0.15^2^0.01^0.17^~2~^~06/01/2010~ -~09176~^~323~^0.90^3^0.11^~1~^~A~^^^2^0.79^1.02^1^-0.53^2.34^~2~^~06/01/2010~ -~09176~^~341~^0.01^3^5.0e-03^~1~^~A~^^^2^0.01^0.02^1^-0.04^0.07^~1, 2~^~06/01/2010~ -~09176~^~342~^0.01^3^6.0e-03^~1~^~A~^^^2^0.00^0.01^1^-0.07^0.08^~1, 2~^~06/01/2010~ -~09176~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~09176~^~344~^0.03^3^0.01^~1~^~A~^^^2^0.01^0.04^1^-0.16^0.21^~2~^~06/01/2010~ -~09176~^~345~^0.01^3^0.01^~1~^~A~^^^2^0.00^0.02^1^-0.11^0.13^~1, 2~^~06/01/2010~ -~09176~^~346~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~09176~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~09176~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09177~^~203~^0.41^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~204~^0.58^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~205~^17.91^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09177~^~207~^0.16^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~255~^80.94^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~303~^0.30^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~309~^0.21^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09178~^~203~^2.45^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~204~^1.18^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~205~^78.58^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~207~^1.19^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~09178~^~255~^16.60^0^^~4~^~BFZN~^~09044~^^^^^^^^^~02/01/2015~ -~09178~^~269~^66.27^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~303~^0.23^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~309~^0.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~323~^4.02^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09181~^~203~^0.84^17^0.03^~1~^~A~^^^3^0.60^1.00^2^0.70^0.96^~2~^~12/01/2002~ -~09181~^~204~^0.19^21^0.03^~1~^~A~^^^5^0.08^0.32^4^0.09^0.29^~2~^~12/01/2002~ -~09181~^~205~^8.16^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~207~^0.65^17^0.03^~1~^~A~^^^3^0.45^0.90^2^0.48^0.82^~2~^~12/01/2002~ -~09181~^~209~^0.03^4^0.02^~1~^~A~^^^1^0.00^0.10^3^-0.05^0.10^~1, 2, 3~^~12/01/2002~ -~09181~^~210~^4.35^14^0.66^~1~^~A~^^^4^1.57^8.08^3^2.23^6.47^~2~^~12/01/2002~ -~09181~^~211~^1.54^14^0.32^~1~^~A~^^^4^0.55^2.89^3^0.51^2.56^~2~^~12/01/2002~ -~09181~^~212~^1.87^14^0.30^~1~^~A~^^^4^0.91^3.00^3^0.90^2.84^~2~^~12/01/2002~ -~09181~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09181~^~214~^0.04^11^0.02^~1~^~A~^^^3^0.00^0.20^2^-0.04^0.12^~1, 2~^~12/01/2002~ -~09181~^~255~^90.15^30^0.31^~1~^~A~^^^7^88.11^92.86^6^89.39^90.91^~2~^~12/01/2002~ -~09181~^~269~^7.86^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09181~^~287~^0.06^8^4.0e-03^~1~^~A~^^^2^0.00^0.13^3^0.04^0.06^~1, 2, 3~^~12/01/2002~ -~09181~^~303~^0.21^54^0.02^~1~^~A~^^^15^0.07^0.64^14^0.16^0.25^~1, 2~^~12/01/2002~ -~09181~^~309~^0.18^53^0.01^~1~^~A~^^^15^0.07^0.37^14^0.13^0.21^~2~^~12/01/2002~ -~09181~^~323~^0.05^11^7.0e-03^~1~^~A~^^^3^0.02^0.11^2^0.02^0.08^~2~^~12/01/2002~ -~09181~^~341~^0.00^11^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~342~^0.11^11^0.01^~1~^~A~^^^3^0.06^0.13^2^0.05^0.16^~2~^~12/01/2002~ -~09181~^~343~^0.00^11^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~344~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09181~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09181~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09181~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09183~^~203~^1.11^2^^~1~^~A~^^^1^0.99^1.24^^^^^~01/01/2003~ -~09183~^~204~^0.10^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09183~^~205~^6.58^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~09183~^~207~^0.36^2^^~1~^~A~^^^1^0.36^0.36^^^^^~01/01/2003~ -~09183~^~255~^91.85^2^^~1~^~A~^^^1^91.40^92.30^^^^^~01/01/2003~ -~09183~^~269~^5.69^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09183~^~303~^0.34^2^^~1~^~A~^^^1^0.28^0.39^^^^^~01/01/2003~ -~09183~^~309~^0.07^2^^~1~^~A~^^^1^0.05^0.08^^^^^~01/01/2003~ -~09183~^~323~^0.05^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~ -~09183~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09184~^~203~^0.54^18^0.05^~1~^~A~^^^3^0.31^0.80^2^0.30^0.77^~2~^~01/01/2003~ -~09184~^~204~^0.14^8^0.03^~1~^~A~^^^2^0.07^0.27^1^-0.32^0.61^~1, 2~^~01/01/2003~ -~09184~^~205~^9.09^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~207~^0.41^17^0.02^~1~^~A~^^^3^0.30^0.60^2^0.31^0.49^~2~^~01/01/2003~ -~09184~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~210~^2.48^8^0.57^~1~^~A~^^^2^0.07^4.13^5^0.98^3.97^~1, 2, 3~^~01/01/2003~ -~09184~^~211~^2.68^8^0.25^~1~^~A~^^^2^1.36^4.64^3^1.90^3.45^~2, 3~^~01/01/2003~ -~09184~^~212~^2.96^8^0.15^~1~^~A~^^^2^1.76^4.73^3^2.48^3.44^~2, 3~^~01/01/2003~ -~09184~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~255~^89.82^20^0.47^~1~^~A~^^^4^88.30^92.17^3^88.29^91.33^~2~^~01/01/2003~ -~09184~^~269~^8.12^8^0.92^~1~^~A~^^^2^5.55^13.12^4^5.38^10.86^~2, 3~^~01/01/2003~ -~09184~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09184~^~303~^0.17^19^8.0e-03^~1~^~A~^^^4^0.13^0.21^3^0.14^0.19^~2~^~01/01/2003~ -~09184~^~309~^0.09^19^8.0e-03^~1~^~A~^^^4^0.07^0.12^3^0.06^0.11^~2~^~01/01/2003~ -~09184~^~323~^0.02^3^6.0e-03^~1~^~A~^^^1^0.01^0.03^2^-5.0e-03^0.04^~2, 3~^~01/01/2003~ -~09184~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~342~^0.03^3^3.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.04^~2, 3~^~01/01/2003~ -~09184~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09184~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09184~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09185~^~203~^0.84^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~204~^0.25^3^0.09^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~205~^7.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09185~^~207~^0.71^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~255~^90.26^3^0.16^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~303~^0.29^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~309~^0.17^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09190~^~203~^1.44^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~204~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~205~^9.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09190~^~207~^0.69^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~255~^87.68^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~269~^8.10^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09190~^~303~^1.85^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~309~^0.12^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09190~^~323~^0.87^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~ -~09190~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09191~^~203~^1.06^8^0.06^~1~^~A~^^^2^0.82^1.26^4^0.90^1.22^~2, 3~^~12/01/2002~ -~09191~^~204~^0.32^8^0.03^~1~^~A~^^^3^0.13^0.70^2^0.18^0.46^~2, 3~^~12/01/2002~ -~09191~^~205~^10.55^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~207~^0.48^8^0.02^~1~^~A~^^^2^0.35^0.61^6^0.43^0.53^~2, 3~^~12/01/2002~ -~09191~^~209~^0.07^4^0.04^~1~^~A~^^^1^0.00^0.15^3^-0.06^0.20^~1, 2, 3~^~12/01/2002~ -~09191~^~210~^4.87^12^0.10^~1~^~A~^^^3^3.60^6.70^2^4.43^5.30^~2~^~12/01/2002~ -~09191~^~211~^1.57^12^0.10^~1~^~A~^^^3^1.00^2.17^2^1.10^2.03^~2~^~12/01/2002~ -~09191~^~212~^1.37^12^0.05^~1~^~A~^^^3^1.10^1.60^2^1.11^1.62^~2~^~12/01/2002~ -~09191~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09191~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09191~^~255~^87.59^17^0.65^~1~^~A~^^^7^84.90^89.70^6^85.99^89.17^~2~^~12/01/2002~ -~09191~^~269~^7.89^8^0.19^~1~^~A~^^^2^7.29^8.80^6^7.39^8.37^~2, 3~^~12/01/2002~ -~09191~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09191~^~303~^0.28^8^0.03^~1~^~A~^^^3^0.13^0.45^2^0.13^0.43^~2~^~12/01/2002~ -~09191~^~309~^0.17^8^0.03^~1~^~A~^^^3^0.12^0.31^2^0.02^0.32^~2~^~12/01/2002~ -~09191~^~323~^0.77^5^0.25^~1~^~A~^^^2^0.43^1.02^1^-2.44^3.97^~2~^~12/01/2002~ -~09191~^~341~^0.01^5^7.0e-03^~1~^~A~^^^2^0.00^0.01^1^-0.08^0.10^~1, 2~^~12/01/2002~ -~09191~^~342~^0.01^5^0.01^~1~^~A~^^^2^0.00^0.04^1^-0.14^0.17^~2~^~12/01/2002~ -~09191~^~343~^0.01^5^9.0e-03^~1~^~A~^^^2^0.00^0.03^1^-0.10^0.12^~1, 2~^~12/01/2002~ -~09191~^~344~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09191~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09191~^~346~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09191~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09191~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09191~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09191~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09192~^~203~^0.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~205~^6.84^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09192~^~207~^0.26^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~255~^92.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~303~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09193~^~203~^0.84^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~204~^10.90^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~205~^6.04^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~207~^2.23^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~255~^79.99^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09193~^~303~^6.28^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~309~^0.22^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~323~^1.65^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09193~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09193~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09193~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09194~^~203~^0.97^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~204~^6.87^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~205~^5.61^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09194~^~207~^2.22^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~255~^84.34^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09194~^~303~^3.32^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~323~^1.65^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09194~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09194~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09195~^~203~^1.03^6^0.31^~6~^~JA~^^^2^0.40^2.43^5^0.21^1.83^~4~^~02/01/2003~ -~09195~^~204~^15.32^7^1.39^~6~^~JA~^^^3^9.54^20.72^6^11.90^18.72^~4~^~02/01/2003~ -~09195~^~205~^3.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~207~^4.53^2^^~1~^~A~^^^1^3.81^5.26^1^^^^~02/01/2003~ -~09195~^~255~^75.28^7^1.07^~6~^~JA~^^^3^71.89^80.56^6^72.64^77.92^~4~^~02/01/2003~ -~09195~^~269~^0.54^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09195~^~303~^0.49^6^0.03^~6~^~JA~^^^2^0.35^0.57^5^0.40^0.57^~4~^~02/01/2003~ -~09195~^~309~^0.04^2^^~1~^~A~^^^1^0.04^0.04^1^^^~1~^~02/01/2003~ -~09195~^~323~^3.81^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~09195~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09195~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09195~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09200~^~203~^0.94^69^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~204~^0.12^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~205~^11.75^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09200~^~207~^0.44^70^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~255~^86.75^88^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~269~^9.35^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09200~^~303~^0.10^64^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~309~^0.07^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~323~^0.18^4^0.03^~1~^~A~^^^3^0.14^0.25^2^0.04^0.32^~2~^~01/01/2003~ -~09200~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09201~^~203~^1.04^16^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~205~^11.89^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09201~^~207~^0.42^17^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~255~^86.34^17^0.18^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~303~^0.09^16^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~309~^0.06^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09202~^~203~^0.91^8^0.03^~1~^~A~^^^2^0.67^1.07^5^0.82^0.99^~2, 3~^~01/01/2003~ -~09202~^~204~^0.15^8^0.03^~1~^~A~^^^2^0.05^0.31^4^0.06^0.23^~1, 2, 3~^~01/01/2003~ -~09202~^~205~^12.54^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~207~^0.43^8^0.02^~1~^~A~^^^2^0.37^0.53^5^0.37^0.48^~2, 3~^~01/01/2003~ -~09202~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~ -~09202~^~210~^4.28^9^0.30^~1~^~A~^^^3^3.28^5.22^2^2.96^5.60^~2~^~01/01/2003~ -~09202~^~211~^1.97^9^0.10^~1~^~A~^^^3^1.01^2.56^2^1.53^2.40^~2~^~01/01/2003~ -~09202~^~212~^2.25^9^0.10^~1~^~A~^^^3^1.86^2.70^2^1.78^2.71^~2~^~01/01/2003~ -~09202~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09202~^~214~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09202~^~255~^85.97^10^0.84^~1~^~A~^^^3^84.58^87.93^2^82.32^89.62^~2~^~01/01/2003~ -~09202~^~269~^8.50^9^0.38^~1~^~A~^^^3^6.15^10.05^2^6.83^10.17^~2~^~01/01/2003~ -~09202~^~287~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~09202~^~303~^0.13^4^0.01^~1~^~A~^^^1^0.11^0.16^3^0.09^0.17^~2, 3~^~01/01/2003~ -~09202~^~309~^0.08^7^4.0e-03^~1~^~A~^^^2^0.06^0.09^5^0.06^0.08^~2, 3~^~01/01/2003~ -~09202~^~323~^0.15^3^7.0e-03^~1~^~A~^^^2^0.14^0.16^1^0.06^0.23^~2, 3~^~01/01/2003~ -~09202~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~344~^0.01^3^0.00^~1~^~A~^^^2^0.01^0.01^^^^~1, 2, 3~^~01/01/2003~ -~09202~^~345~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~346~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~09202~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09203~^~203~^0.70^35^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~204~^0.21^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09203~^~207~^0.41^35^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~255~^87.14^35^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~269~^9.14^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09203~^~303~^0.09^32^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~309~^0.08^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~323~^0.18^0^^~4~^~BFZN~^~09200~^^^^^^^^^~01/01/2003~ -~09203~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09203~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09203~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09205~^~203~^1.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~205~^15.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09205~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~255~^82.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~309~^0.11^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09205~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09206~^~203~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~205~^10.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09206~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~255~^88.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~269~^8.40^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09206~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~323~^0.04^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09206~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09206~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09207~^~203~^0.68^3^0.01^~1~^~A~^^^1^0.67^0.71^2^0.63^0.73^~2, 3~^~05/01/2008~ -~09207~^~204~^0.15^3^7.0e-03^~1~^~A~^^^1^0.14^0.17^2^0.12^0.18^~2, 3~^~05/01/2008~ -~09207~^~205~^11.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09207~^~207~^0.43^3^0.07^~1~^~A~^^^1^0.31^0.57^2^0.12^0.74^~2, 3~^~05/01/2008~ -~09207~^~210~^4.06^3^0.10^~1~^~A~^^^1^3.85^4.22^2^3.59^4.53^~2, 3~^~05/01/2008~ -~09207~^~211~^2.27^3^0.08^~1~^~A~^^^1^2.09^2.37^2^1.88^2.65^~2, 3~^~05/01/2008~ -~09207~^~212~^2.43^3^0.16^~1~^~A~^^^1^2.17^2.74^2^1.71^3.14^~2, 3~^~05/01/2008~ -~09207~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09207~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09207~^~255~^87.72^3^0.07^~1~^~A~^^^1^87.58^87.81^2^87.41^88.02^~2, 3~^~05/01/2008~ -~09207~^~269~^8.76^3^0.14^~1~^~A~^^^1^8.48^8.96^2^8.14^9.37^~2, 3~^~05/01/2008~ -~09207~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09207~^~303~^0.10^3^0.01^~1~^~A~^^^1^0.08^0.13^2^0.03^0.16^~2, 3~^~05/01/2008~ -~09207~^~309~^0.04^3^1.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.05^~2, 3~^~05/01/2008~ -~09207~^~323~^0.20^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~ -~09207~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09207~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09207~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09209~^~203~^0.68^20^0.03^~1~^~A~^^^3^0.15^0.94^6^0.58^0.76^~2, 3~^~03/01/2009~ -~09209~^~204~^0.12^17^0.01^~1~^~A~^^^3^0.07^0.25^5^0.09^0.15^~2, 3~^~03/01/2009~ -~09209~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~207~^0.43^6^0.03^~1~^~A~^^^1^0.30^0.50^5^0.35^0.50^~2, 3~^~03/01/2009~ -~09209~^~210~^4.01^21^0.47^~1~^~A~^^^4^0.07^5.07^3^2.49^5.52^~1, 2~^~03/01/2009~ -~09209~^~211~^2.08^21^0.11^~1~^~A~^^^4^1.51^3.71^3^1.71^2.43^~2~^~03/01/2009~ -~09209~^~212~^2.23^21^0.12^~1~^~A~^^^4^1.71^3.99^3^1.84^2.60^~2~^~03/01/2009~ -~09209~^~213~^0.00^20^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~09209~^~214~^0.00^15^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~09209~^~255~^87.22^24^1.18^~1~^~A~^^^5^82.90^90.64^4^83.92^90.52^~2~^~03/01/2009~ -~09209~^~269~^8.31^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~09209~^~287~^0.00^14^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~09209~^~303~^0.13^32^0.02^~1~^~A~^^^6^0.07^0.30^5^0.07^0.18^~1, 2~^~03/01/2009~ -~09209~^~309~^0.07^32^0.01^~1~^~A~^^^6^0.02^0.52^5^0.02^0.11^~1, 2~^~03/01/2009~ -~09209~^~323~^0.20^0^^~4~^~BFZN~^~09215~^^^^^^^^^~03/01/2009~ -~09209~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09209~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09209~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09210~^~203~^0.68^20^0.03^~1~^~A~^^^3^0.15^0.94^6^0.58^0.76^~2, 3~^~03/01/2009~ -~09210~^~204~^0.12^17^0.01^~1~^~A~^^^3^0.07^0.25^5^0.09^0.15^~2, 3~^~03/01/2009~ -~09210~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~207~^0.71^14^0.01^~1~^~A~^^^2^0.62^0.77^12^0.68^0.72^~2, 3~^~03/01/2009~ -~09210~^~210~^4.01^21^0.47^~1~^~A~^^^4^0.07^5.07^3^2.49^5.52^~1, 2~^~03/01/2009~ -~09210~^~211~^2.08^21^0.11^~1~^~A~^^^4^1.51^3.71^3^1.71^2.43^~2~^~03/01/2009~ -~09210~^~212~^2.23^21^0.12^~1~^~A~^^^4^1.71^3.99^3^1.84^2.60^~2~^~03/01/2009~ -~09210~^~213~^0.00^20^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~09210~^~214~^0.00^15^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2009~ -~09210~^~255~^87.22^24^1.18^~1~^~A~^^^5^82.90^90.64^4^83.92^90.52^~2~^~03/01/2009~ -~09210~^~269~^8.31^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~09210~^~287~^0.00^14^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~09210~^~303~^0.13^32^0.02^~1~^~A~^^^6^0.07^0.30^5^0.07^0.18^~1, 2~^~03/01/2009~ -~09210~^~309~^0.07^32^0.01^~1~^~A~^^^6^0.02^0.52^5^0.02^0.11^~1, 2~^~03/01/2009~ -~09210~^~323~^0.20^0^^~4~^~BFZN~^~09215~^^^^^^^^^~03/01/2009~ -~09210~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~09210~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09210~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~203~^0.68^20^0.03^~1~^~A~^^^3^0.15^0.94^6^0.58^0.76^~2, 3~^~03/01/2009~ -~09211~^~204~^0.12^17^0.01^~1~^~A~^^^3^0.07^0.25^5^0.09^0.15^~2, 3~^~03/01/2009~ -~09211~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~207~^0.71^14^0.01^~1~^~A~^^^2^0.62^0.77^12^0.68^0.72^~2, 3~^~03/01/2009~ -~09211~^~210~^4.01^21^0.47^~1~^~A~^^^4^0.07^5.07^3^2.49^5.52^~1, 2~^~03/01/2009~ -~09211~^~211~^2.08^21^0.11^~1~^~A~^^^4^1.51^3.71^3^1.71^2.43^~2~^~03/01/2009~ -~09211~^~212~^2.23^21^0.12^~1~^~A~^^^4^1.71^3.99^3^1.84^2.60^~2~^~03/01/2009~ -~09211~^~213~^0.00^20^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~214~^0.00^15^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~255~^87.22^24^1.18^~1~^~A~^^^5^82.90^90.64^4^83.92^90.52^~2~^~03/01/2009~ -~09211~^~269~^8.31^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~09211~^~287~^0.00^14^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~09211~^~303~^0.13^32^0.02^~1~^~A~^^^6^0.07^0.30^5^0.07^0.18^~1, 2~^~03/01/2009~ -~09211~^~309~^0.07^32^0.01^~1~^~A~^^^6^0.02^0.52^5^0.02^0.11^~1, 2~^~03/01/2009~ -~09211~^~323~^0.20^0^^~4~^~BFZN~^~09215~^^^^^^^^^~03/01/2009~ -~09211~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09211~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09211~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~09212~^~203~^0.60^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~204~^0.06^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~205~^8.47^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~207~^0.81^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~209~^0.00^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~255~^90.07^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~269~^7.42^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~309~^0.04^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~323~^0.15^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09213~^~203~^2.40^14^0.03^~1~^~A~^^^1^2.06^2.68^7^2.30^2.48^~2, 3~^~06/01/2014~ -~09213~^~204~^0.25^14^0.01^~1~^~A~^^^1^0.20^0.30^6^0.21^0.28^~2, 3~^~06/01/2014~ -~09213~^~205~^33.86^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~207~^2.92^2^^~1~^~A~^^^1^2.85^3.09^^^^^~06/01/2014~ -~09213~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~210~^15.55^6^0.33^~1~^~A~^^^1^14.47^16.06^2^14.11^16.97^~2, 3~^~06/01/2014~ -~09213~^~211~^6.58^6^0.19^~1~^~A~^^^1^6.30^7.25^2^5.76^7.39^~2, 3~^~06/01/2014~ -~09213~^~212~^7.55^6^0.21^~1~^~A~^^^1^7.28^8.28^2^6.64^8.45^~2, 3~^~06/01/2014~ -~09213~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~09213~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~09213~^~255~^60.57^14^0.23^~1~^~A~^^^1^58.90^61.60^8^60.02^61.11^~2, 3~^~06/01/2014~ -~09213~^~269~^29.68^6^0.09^~1~^~A~^^^1^29.25^30.00^2^29.33^30.01^~2, 3~^~06/01/2014~ -~09213~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~09213~^~303~^0.33^14^0.03^~1~^~A~^^^1^0.24^0.83^12^0.26^0.40^~2, 3~^~06/01/2014~ -~09213~^~309~^0.16^14^0.01^~1~^~A~^^^1^0.13^0.22^8^0.13^0.18^~2, 3~^~06/01/2014~ -~09213~^~323~^0.60^2^^~1~^~A~^^^1^0.58^0.64^^^^^~06/01/2014~ -~09213~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2014~ -~09213~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~09213~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09213~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09214~^~203~^2.40^14^0.03^~1~^~A~^^^1^2.06^2.68^7^2.30^2.48^~2, 3~^~05/01/2014~ -~09214~^~204~^0.25^14^0.01^~1~^~A~^^^1^0.20^0.30^6^0.21^0.28^~2, 3~^~05/01/2014~ -~09214~^~205~^35.19^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~207~^1.60^12^0.03^~1~^~A~^^^1^1.38^1.86^8^1.52^1.67^~2, 3~^~05/01/2014~ -~09214~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~210~^15.55^6^0.33^~1~^~A~^^^1^14.47^16.06^2^14.11^16.97^~2, 3~^~05/01/2014~ -~09214~^~211~^6.58^6^0.19^~1~^~A~^^^1^6.30^7.25^2^5.76^7.39^~2, 3~^~05/01/2014~ -~09214~^~212~^7.55^6^0.21^~1~^~A~^^^1^7.28^8.28^2^6.64^8.45^~2, 3~^~05/01/2014~ -~09214~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09214~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09214~^~255~^60.57^14^0.23^~1~^~A~^^^1^58.90^61.60^8^60.02^61.11^~2, 3~^~05/01/2014~ -~09214~^~269~^29.68^6^0.09^~1~^~A~^^^1^29.25^30.00^2^29.33^30.01^~2, 3~^~05/01/2014~ -~09214~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09214~^~303~^0.33^14^0.03^~1~^~A~^^^1^0.24^0.83^12^0.26^0.40^~2, 3~^~05/01/2014~ -~09214~^~309~^0.16^14^0.01^~1~^~A~^^^1^0.13^0.22^8^0.13^0.18^~2, 3~^~05/01/2014~ -~09214~^~323~^0.60^2^^~1~^~A~^^^1^0.58^0.64^^^^^~05/01/2014~ -~09214~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~09214~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09214~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09215~^~203~^0.60^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~204~^0.06^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~205~^8.80^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09215~^~207~^0.47^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~255~^90.07^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~269~^7.42^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~309~^0.04^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~323~^0.15^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09216~^~203~^1.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~205~^25.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09216~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~255~^72.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~309~^0.25^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09216~^~323~^0.25^0^^~4~^~BFZN~^~09156~^^^^^^^^^~05/01/2005~ -~09216~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09217~^~203~^0.60^14^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~204~^0.10^14^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~205~^10.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09217~^~207~^0.39^14^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~255~^88.64^14^0.37^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~269~^10.18^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09217~^~303~^0.46^14^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~309~^0.07^14^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~323~^0.14^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09217~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09218~^~203~^0.81^9^0.01^~1~^~A~^^^2^0.50^1.00^1^0.66^0.96^~2~^~12/01/2003~ -~09218~^~204~^0.31^7^0.04^~1~^~A~^^^2^0.17^0.42^1^-0.20^0.82^~2~^~04/01/2004~ -~09218~^~205~^13.34^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09218~^~207~^0.38^9^0.02^~1~^~A~^^^2^0.30^0.47^1^0.05^0.70^~2~^~12/01/2003~ -~09218~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~09218~^~210~^6.05^8^0.66^~1~^~A~^^^2^4.25^8.64^1^-2.38^14.48^~2~^~12/01/2003~ -~09218~^~211~^2.13^8^0.08^~1~^~A~^^^2^1.81^3.00^1^1.05^3.21^~2~^~12/01/2003~ -~09218~^~212~^2.40^8^0.23^~1~^~A~^^^2^1.91^3.53^1^-0.56^5.36^~2~^~12/01/2003~ -~09218~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~255~^85.17^15^0.76^~1~^~A~^^^5^80.68^88.60^4^83.05^87.28^~2~^~12/01/2003~ -~09218~^~269~^10.58^8^0.98^~1~^~A~^^^2^8.87^15.16^1^-1.87^23.04^~2~^~12/01/2003~ -~09218~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~303~^0.15^9^0.01^~1~^~A~^^^2^0.13^0.23^1^4.0e-03^0.29^~2~^~12/01/2003~ -~09218~^~309~^0.07^9^1.0e-03^~1~^~A~^^^2^0.06^0.08^1^0.05^0.09^~2~^~12/01/2003~ -~09218~^~323~^0.20^3^0.08^~1~^~A~^^^1^0.12^0.37^2^-0.15^0.56^~2, 3~^~12/01/2003~ -~09218~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~344~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.09^0.18^~1, 2, 3~^~12/01/2003~ -~09218~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2003~ -~09218~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09218~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09218~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09219~^~203~^0.62^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~204~^0.03^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~205~^9.57^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09219~^~207~^0.28^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~255~^89.51^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~269~^8.87^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09219~^~303~^0.27^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~309~^0.51^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~323~^0.10^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09219~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09219~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09219~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09220~^~203~^0.45^33^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~204~^0.10^33^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~205~^16.19^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09220~^~207~^0.19^33^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~255~^83.06^33^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~269~^15.49^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~09220~^~303~^0.37^32^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~309~^0.24^33^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~323~^0.10^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~ -~09220~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09221~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09221~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~255~^88.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~269~^9.90^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09221~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~309~^0.03^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~323~^0.13^0^^~4~^~BFSN~^~09218~^^^^^^^^^~02/01/2003~ -~09221~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09221~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09221~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09226~^~203~^0.47^9^0.09^~1~^~A~^^^2^0.25^0.75^1^-0.72^1.66^~2~^~07/01/2010~ -~09226~^~204~^0.26^9^0.14^~1~^~A~^^^2^0.00^0.60^1^-1.58^2.10^~2~^~07/01/2010~ -~09226~^~205~^10.82^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09226~^~207~^0.39^9^0.08^~1~^~A~^^^2^0.23^0.51^1^-0.71^1.48^~2~^~07/01/2010~ -~09226~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09226~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09226~^~211~^4.09^3^0.68^~1~^~A~^^^1^2.83^5.18^2^1.14^7.03^~4~^~07/01/2010~ -~09226~^~212~^3.73^3^0.72^~1~^~A~^^^1^2.36^4.81^2^0.62^6.83^~4~^~07/01/2010~ -~09226~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09226~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09226~^~255~^88.06^72^1.09^~1~^~A~^^^6^84.90^93.34^5^85.24^90.87^~2~^~07/01/2010~ -~09226~^~269~^7.82^3^1.40^~1~^~A~^^^1^5.19^9.99^2^1.77^13.86^~4~^~07/01/2010~ -~09226~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09226~^~303~^0.25^70^0.06^~1~^~A~^^^4^0.14^0.66^3^0.05^0.45^~2~^~07/01/2010~ -~09226~^~309~^0.08^70^8.0e-03^~1~^~A~^^^4^0.05^0.11^3^0.05^0.10^~2~^~07/01/2010~ -~09226~^~323~^0.30^5^0.09^~1~^~A~^^^2^0.11^0.68^1^-0.93^1.52^~2~^~07/01/2010~ -~09226~^~341~^0.02^5^0.01^~1~^~A~^^^2^0.01^0.06^1^-0.14^0.19^~1, 2~^~07/01/2010~ -~09226~^~342~^0.09^5^9.0e-03^~1~^~A~^^^2^0.02^0.14^1^-0.02^0.20^~2~^~07/01/2010~ -~09226~^~343~^0.01^5^0.01^~1~^~A~^^^2^0.00^0.04^1^-0.14^0.17^~1, 2~^~07/01/2010~ -~09226~^~344~^0.00^5^3.0e-03^~1~^~A~^^^2^0.00^0.01^1^-0.02^0.03^~1, 2~^~07/01/2010~ -~09226~^~345~^0.07^5^0.06^~1~^~A~^^^2^0.00^0.23^1^-0.76^0.89^~1, 2~^~07/01/2010~ -~09226~^~346~^0.01^5^5.0e-03^~1~^~A~^^^2^0.00^0.02^1^-0.05^0.06^~1, 2~^~07/01/2010~ -~09226~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^1^-3.0e-03^3.0e-03^~1, 2~^~07/01/2010~ -~09226~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09228~^~203~^0.14^2^^~1~^~A~^^^1^0.09^0.19^1^^^^~04/01/2010~ -~09228~^~204~^0.55^2^^~1~^~A~^^^1^0.51^0.59^1^^^^~04/01/2010~ -~09228~^~205~^55.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~207~^0.15^2^^~1~^~A~^^^1^0.11^0.19^1^^^^~04/01/2010~ -~09228~^~210~^38.37^2^^~1~^~A~^^^1^28.29^48.45^1^^^^~04/01/2010~ -~09228~^~211~^7.04^2^^~1~^~A~^^^1^1.17^12.92^1^^^^~04/01/2010~ -~09228~^~212~^6.78^2^^~1~^~A~^^^1^1.01^12.56^1^^^^~04/01/2010~ -~09228~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09228~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09228~^~255~^43.33^2^^~1~^~A~^^^1^41.39^45.28^1^^^^~04/01/2010~ -~09228~^~269~^52.20^2^^~1~^~A~^^^1^50.63^53.77^1^^^^~04/01/2010~ -~09228~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09228~^~303~^0.29^2^^~1~^~A~^^^1^0.21^0.37^1^^^^~04/01/2010~ -~09228~^~309~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~04/01/2010~ -~09229~^~203~^0.17^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~204~^0.15^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~205~^14.51^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09229~^~207~^0.15^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~255~^85.02^3^1.69^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~269~^13.91^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09229~^~303~^0.34^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~309~^0.15^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~323~^0.24^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~ -~09229~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09229~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09229~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09231~^~203~^2.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~205~^23.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09231~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~255~^72.93^4^1.35^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~269~^11.20^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~09231~^~303~^1.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09231~^~323~^0.02^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~ -~09231~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09231~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09231~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09232~^~203~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~204~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~205~^13.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09232~^~207~^0.34^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~255~^85.62^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~269~^13.40^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~09232~^~303~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~309~^0.05^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09232~^~323~^0.01^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~ -~09232~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09232~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09232~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09233~^~203~^0.67^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~205~^14.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09233~^~207~^0.49^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~255~^84.21^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~269~^14.25^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~09233~^~303~^0.36^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~309~^0.06^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09233~^~323~^0.01^0^^~4~^~BFZN~^~09232~^^^^^^^^^~05/01/2007~ -~09233~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09233~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09233~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~09236~^~203~^0.91^8^0.01^~1~^~A~^^^2^0.82^0.98^1^0.77^1.05^~2~^~12/01/2002~ -~09236~^~204~^0.25^9^0.05^~1~^~A~^^^3^0.07^0.51^2^0.02^0.47^~1, 2~^~12/01/2002~ -~09236~^~205~^9.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~207~^0.43^8^0.01^~1~^~A~^^^2^0.35^0.49^1^0.26^0.59^~2~^~12/01/2002~ -~09236~^~209~^0.00^4^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09236~^~210~^4.76^8^0.09^~1~^~A~^^^2^3.66^5.97^1^3.57^5.93^~2~^~12/01/2002~ -~09236~^~211~^1.95^8^0.20^~1~^~A~^^^2^1.25^2.87^1^-0.69^4.59^~2~^~12/01/2002~ -~09236~^~212~^1.53^8^0.05^~1~^~A~^^^2^1.20^2.17^1^0.87^2.19^~2~^~12/01/2002~ -~09236~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09236~^~214~^0.08^8^0.05^~1~^~A~^^^2^0.00^0.14^1^-0.66^0.82^~1, 2~^~12/01/2002~ -~09236~^~255~^88.87^9^0.59^~1~^~A~^^^3^86.99^90.00^2^86.33^91.40^~2~^~12/01/2002~ -~09236~^~269~^8.39^8^0.35^~1~^~A~^^^2^6.48^9.55^1^3.92^12.84^~2~^~12/01/2002~ -~09236~^~287~^0.06^8^0.06^~1~^~A~^^^2^0.00^0.17^1^-0.70^0.83^~1, 2~^~12/01/2002~ -~09236~^~303~^0.25^31^0.01^~1~^~A~^^^12^0.18^0.49^11^0.20^0.28^~2~^~12/01/2002~ -~09236~^~309~^0.17^32^0.02^~1~^~A~^^^12^0.07^0.52^11^0.10^0.22^~2~^~12/01/2002~ -~09236~^~323~^0.73^5^0.08^~1~^~A~^^^2^0.32^1.01^1^-0.36^1.83^~2~^~12/01/2002~ -~09236~^~341~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09236~^~342~^0.02^5^0.01^~1~^~A~^^^2^0.00^0.06^1^-0.21^0.25^~2~^~12/01/2002~ -~09236~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09236~^~344~^0.03^5^0.03^~1~^~A~^^^2^0.00^0.06^1^-0.35^0.41^~2~^~12/01/2002~ -~09236~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09236~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~12/01/2002~ -~09236~^~347~^0.00^4^^~1~^~A~^^^1^0.00^0.00^^^^~2~^~12/01/2002~ -~09236~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~09236~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09237~^~203~^0.44^16^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~204~^0.06^12^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~205~^6.11^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09237~^~207~^0.27^16^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~255~^93.13^60^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~269~^4.81^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09237~^~303~^0.32^16^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~323~^0.49^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09237~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09237~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09237~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09238~^~203~^0.63^25^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~204~^0.03^24^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~205~^11.57^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09238~^~207~^0.27^18^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~255~^87.49^18^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~269~^10.27^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09238~^~303~^0.27^17^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~309~^0.11^14^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~323~^0.49^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09238~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09238~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09238~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09239~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~205~^11.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09239~^~207~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~255~^88.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~309~^0.09^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09240~^~203~^0.45^19^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~204~^0.03^4^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~205~^14.55^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09240~^~207~^0.25^19^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~255~^84.72^71^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~269~^13.25^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09240~^~303~^0.36^19^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~323~^0.49^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09240~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09240~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09240~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09241~^~203~^0.45^310^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~204~^0.10^251^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~205~^19.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09241~^~207~^0.24^335^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~255~^79.28^529^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~269~^18.64^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09241~^~303~^0.27^316^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~309~^0.09^178^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~323~^0.49^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09241~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09241~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09241~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09242~^~203~^0.47^18^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~204~^0.03^4^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~205~^26.06^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09242~^~207~^0.25^14^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~255~^73.19^100^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~303~^0.29^14^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09243~^~203~^0.41^19^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~204~^0.10^19^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~205~^20.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09243~^~207~^0.21^19^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~255~^79.20^19^0.32^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~269~^18.78^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09243~^~303~^0.28^19^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~309~^0.08^19^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~323~^0.49^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~ -~09243~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09243~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09243~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09244~^~203~^4.89^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~204~^1.03^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~205~^83.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09244~^~207~^3.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~255~^7.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~303~^5.51^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~309~^0.78^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09245~^~203~^2.01^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~204~^0.42^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~205~^34.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09245~^~207~^1.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~255~^62.04^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~303~^2.26^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~309~^0.32^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09246~^~203~^3.61^25^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~204~^0.76^24^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~205~^61.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09246~^~207~^2.50^25^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~210~^15.42^4^2.22^~1~^^^^2^7.96^25.18^1^-12.78^43.62^~2~^~12/01/2002~ -~09246~^~211~^12.83^4^2.96^~1~^^^^2^7.81^15.80^1^-24.86^50.52^~2~^~12/01/2002~ -~09246~^~212~^13.49^4^2.11^~1~^^^^2^8.62^15.60^1^-13.36^40.33^~2~^~12/01/2002~ -~09246~^~255~^31.80^29^0.51^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~269~^41.74^4^2.86^~1~^^^^2^33.62^44.60^1^5.40^78.08^~2~^~12/01/2002~ -~09246~^~303~^4.06^24^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~309~^0.57^24^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~323~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09246~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09246~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09247~^~203~^1.16^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~205~^19.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09247~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~255~^78.10^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~269~^16.99^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09247~^~303~^1.31^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~323~^0.06^0^^~4~^~BFSN~^~09246~^^^^^^^^^~04/01/2003~ -~09247~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09247~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09247~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09248~^~203~^1.06^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~205~^26.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09248~^~207~^0.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~255~^71.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09250~^~203~^0.63^3^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~204~^0.13^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~205~^23.98^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09250~^~207~^0.53^3^0.28^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~255~^74.73^3^0.26^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~269~^22.18^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09250~^~303~^0.37^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~309~^0.05^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~323~^0.62^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~09250~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09250~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09250~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09251~^~203~^0.10^5^6.0e-03^~1~^~A~^^^1^0.09^0.12^4^0.08^0.11^~2, 3~^~12/01/2016~ -~09251~^~204~^0.57^5^0.12^~1~^~A~^^^1^0.27^0.90^4^0.22^0.91^~2, 3~^~12/01/2016~ -~09251~^~205~^11.61^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~207~^0.07^5^0.01^~1~^~A~^^^1^0.04^0.11^4^0.03^0.11^~1, 2, 3~^~12/01/2016~ -~09251~^~209~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~210~^1.50^3^0.06^~1~^~A~^^^1^1.37^1.60^2^1.20^1.80^~2, 3~^~12/01/2016~ -~09251~^~211~^5.46^3^0.05^~1~^~A~^^^1^5.38^5.56^2^5.22^5.68^~2, 3~^~12/01/2016~ -~09251~^~212~^5.12^3^0.05^~1~^~A~^^^1^5.04^5.23^2^4.88^5.36^~2, 3~^~12/01/2016~ -~09251~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09251~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09251~^~255~^87.65^5^0.05^~1~^~A~^^^1^87.45^87.75^4^87.48^87.80^~2, 3~^~12/01/2016~ -~09251~^~269~^12.08^3^0.04^~1~^~A~^^^1^12.01^12.16^2^11.89^12.27^~2, 3~^~12/01/2016~ -~09251~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09251~^~303~^0.07^5^0.00^~1~^~A~^^^1^0.07^0.07^4^0.07^0.07^~1, 2, 3~^~12/01/2016~ -~09251~^~309~^0.01^5^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~12/01/2016~ -~09251~^~323~^0.29^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~ -~09251~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09251~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09251~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~ -~09252~^~203~^0.36^29^0.01^~1~^~A~^^^2^0.22^0.59^7^0.32^0.39^~2, 3~^~08/01/2012~ -~09252~^~204~^0.14^24^0.01^~1~^~A~^^^2^0.01^0.30^7^0.09^0.18^~1, 2, 3~^~08/01/2012~ -~09252~^~205~^15.23^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09252~^~207~^0.32^24^0.01^~1~^~A~^^^2^0.10^0.60^5^0.26^0.36^~2, 3~^~08/01/2012~ -~09252~^~210~^0.71^24^0.09^~1~^~A~^^^2^0.12^3.68^7^0.49^0.92^~1, 2, 3~^~08/01/2012~ -~09252~^~211~^2.60^24^0.15^~1~^~A~^^^2^1.58^4.92^3^2.11^3.08^~2, 3~^~08/01/2012~ -~09252~^~212~^6.42^24^0.06^~1~^~A~^^^2^5.13^7.13^9^6.28^6.55^~2, 3~^~08/01/2012~ -~09252~^~213~^0.00^23^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09252~^~214~^0.00^23^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09252~^~255~^83.96^32^0.11^~1~^~A~^^^2^81.63^85.08^3^83.62^84.28^~2, 3~^~08/01/2012~ -~09252~^~269~^9.75^24^0.20^~1~^~A~^^^2^8.47^11.79^5^9.23^10.26^~2, 3~^~08/01/2012~ -~09252~^~287~^0.00^24^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~303~^0.18^55^0.02^~1~^~A~^^^14^0.11^0.43^2^0.06^0.29^~1, 4~^~08/01/2012~ -~09252~^~309~^0.10^51^4.0e-03^~1~^~A~^^^14^0.07^0.15^3^0.08^0.11^~4~^~05/01/2003~ -~09252~^~323~^0.12^4^3.0e-03^~1~^~A~^^^1^0.12^0.13^3^0.11^0.13^~2, 3~^~12/01/2002~ -~09252~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~342~^0.03^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~12/01/2002~ -~09252~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~344~^0.02^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-3.0e-03^0.04^~1, 2, 3~^~12/01/2002~ -~09252~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09252~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09252~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09252~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09253~^~203~^0.19^12^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~204~^0.03^12^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~205~^7.81^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09253~^~207~^0.16^12^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~210~^0.30^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09253~^~211~^1.90^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09253~^~212~^3.90^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09253~^~214~^0.00^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09253~^~255~^91.81^69^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~269~^6.10^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09253~^~303~^0.21^12^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~323~^0.08^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09253~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09253~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09254~^~203~^0.34^15^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~204~^0.07^14^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~205~^12.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09254~^~207~^0.19^6^1.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~210~^0.60^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09254~^~211~^3.30^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09254~^~212~^5.80^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09254~^~214~^0.00^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09254~^~255~^86.47^6^0.13^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~269~^9.70^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09254~^~303~^0.29^7^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~309~^0.09^6^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~323~^0.08^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09254~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09254~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09254~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09255~^~203~^0.30^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~205~^12.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09255~^~207~^0.10^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~255~^87.30^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~303~^0.20^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~309~^0.07^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09256~^~203~^0.19^18^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~204~^0.03^8^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~205~^15.17^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09256~^~207~^0.14^18^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~210~^1.10^1^^~1~^^^^^^^^^^^~04/01/2003~ -~09256~^~211~^4.80^1^^~1~^^^^^^^^^^^~04/01/2003~ -~09256~^~212~^5.10^1^^~1~^^^^^^^^^^^~04/01/2003~ -~09256~^~214~^1.10^1^^~1~^^^^^^^^^^^~04/01/2003~ -~09256~^~255~^84.46^26^0.13^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~269~^12.10^1^^~1~^^^^^^^^^^^~01/01/2007~ -~09256~^~303~^0.28^20^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~309~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~323~^0.08^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09256~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09256~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09257~^~203~^0.20^143^2.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~204~^0.13^90^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~205~^19.17^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09257~^~207~^0.15^102^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~210~^1.40^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09257~^~211~^6.10^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09257~^~212~^5.90^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09257~^~214~^1.90^1^^~1~^^^^^^^^^^^~01/01/2003~ -~09257~^~255~^80.35^207^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~269~^15.20^1^^~1~^^^^^^^^^^^~11/01/2006~ -~09257~^~303~^0.22^105^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~309~^0.08^56^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~323~^0.08^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09257~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09257~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09257~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09258~^~203~^0.19^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~205~^25.25^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09258~^~207~^0.15^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~255~^74.28^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~303~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~309~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09259~^~203~^1.87^19^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~204~^0.63^19^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~205~^69.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09259~^~207~^1.11^19^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~255~^26.69^21^0.36^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~269~^62.20^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09259~^~303~^2.10^19^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~309~^0.39^19^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~323~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~343~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09259~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09259~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09260~^~203~^0.91^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~204~^0.31^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~205~^33.81^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09260~^~207~^0.54^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~255~^64.44^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~269~^27.41^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09260~^~303~^1.02^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~309~^0.19^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~323~^0.03^0^^~4~^~BFSN~^~09259~^^^^^^^^^~04/01/2003~ -~09260~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09261~^~203~^0.86^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~204~^0.29^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~205~^37.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09261~^~207~^0.51^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~255~^61.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~303~^0.97^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09262~^~203~^0.11^22^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~204~^0.01^22^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~205~^15.76^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09262~^~207~^0.10^22^1.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~255~^84.01^22^0.17^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~269~^15.16^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~09262~^~303~^0.26^8^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~309~^0.07^21^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~323~^0.05^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~ -~09262~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09262~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09262~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09263~^~203~^0.58^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~204~^0.19^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~205~^18.59^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09263~^~207~^0.33^3^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~210~^1.54^3^0.10^~1~^~A~^^^1^1.36^1.71^2^1.10^1.97^~4~^~02/01/2003~ -~09263~^~211~^5.44^3^0.27^~1~^~A~^^^1^5.14^5.99^2^4.25^6.62^~4~^~02/01/2003~ -~09263~^~212~^5.56^3^0.04^~1~^~A~^^^1^5.48^5.62^2^5.38^5.73^~4~^~02/01/2003~ -~09263~^~255~^80.32^5^0.38^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~269~^12.53^3^0.32^~1~^~A~^^^1^12.07^13.15^2^11.15^13.91^~4~^~02/01/2003~ -~09263~^~303~^0.15^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~309~^0.11^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~323~^0.73^0^^~4~^~BFZN~^~09236~^^^^^^^^^~02/01/2003~ -~09263~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09263~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09263~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09264~^~203~^1.38^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~204~^0.59^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~205~^73.43^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09264~^~207~^1.59^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~255~^23.01^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~303~^0.74^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~309~^0.42^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09265~^~203~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~205~^33.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09265~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~255~^64.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~303~^2.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09266~^~203~^0.54^21^0.03^~1~^~A~^^^3^0.30^0.74^1^0.18^0.90^~2~^~01/01/2007~ -~09266~^~204~^0.12^21^0.01^~1~^~A~^^^3^0.05^0.20^1^-0.02^0.25^~1, 2~^~01/01/2007~ -~09266~^~205~^13.12^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~207~^0.22^21^0.03^~1~^~A~^^^3^0.05^0.37^1^-0.05^0.49^~1, 2~^~01/01/2007~ -~09266~^~209~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2007~ -~09266~^~210~^5.99^13^0.50^~1~^~A~^^^2^2.59^7.53^1^-0.47^12.46^~2~^~01/01/2007~ -~09266~^~211~^1.73^13^0.08^~1~^~A~^^^2^1.31^2.82^1^0.59^2.86^~2~^~01/01/2007~ -~09266~^~212~^2.12^13^0.06^~1~^~A~^^^2^1.30^3.17^1^1.35^2.88^~2~^~01/01/2007~ -~09266~^~213~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~214~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~255~^86.00^21^0.50^~1~^~A~^^^3^82.50^91.57^1^80.97^91.02^~2~^~01/01/2007~ -~09266~^~269~^9.85^13^0.36^~1~^~A~^^^2^6.90^11.45^1^5.27^14.42^~2~^~01/01/2007~ -~09266~^~287~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~303~^0.29^22^0.09^~1~^~A~^^^4^0.13^0.54^1^-0.75^1.33^~1, 2~^~01/01/2007~ -~09266~^~309~^0.12^19^5.0e-03^~1~^~A~^^^4^0.04^0.15^1^0.07^0.15^~1, 2~^~01/01/2007~ -~09266~^~323~^0.02^7^2.0e-03^~1~^~A~^^^2^0.02^0.03^1^0.00^0.04^~2~^~01/01/2003~ -~09266~^~341~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~342~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~343~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~344~^0.02^7^0.01^~1~^~A~^^^2^0.00^0.04^1^-0.13^0.16^~2~^~01/01/2003~ -~09266~^~345~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~346~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~347~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2003~ -~09266~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09266~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09266~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09267~^~203~^0.43^8^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~204~^0.09^8^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~205~^8.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09267~^~207~^0.35^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~255~^90.82^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~269~^7.50^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09267~^~303~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~323~^0.01^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09267~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09267~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09267~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09268~^~203~^0.42^679^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~204~^0.08^447^1.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~205~^15.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09268~^~207~^0.30^86^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~210~^0.25^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09268~^~211~^7.70^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09268~^~212~^6.50^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09268~^~255~^83.51^86^0.12^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~269~^14.45^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09268~^~303~^0.28^676^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~309~^0.10^84^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~323~^0.01^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09268~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09268~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09268~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09269~^~203~^0.36^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~204~^0.12^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~205~^13.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09269~^~207~^0.35^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~255~^85.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~269~^12.65^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09269~^~303~^0.39^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~323~^0.01^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09269~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09269~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09269~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09270~^~203~^0.35^186^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~204~^0.11^186^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~205~^20.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09270~^~207~^0.34^110^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~210~^2.20^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09270~^~211~^7.50^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09270~^~212~^7.20^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09270~^~255~^78.99^110^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~269~^16.90^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09270~^~303~^0.38^185^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~309~^0.12^110^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~323~^0.01^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~ -~09270~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09271~^~203~^0.34^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~205~^21.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09271~^~207~^0.34^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~255~^77.71^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09272~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~205~^22.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09272~^~207~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~255~^77.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~269~^21.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09272~^~303~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~323~^0.02^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09272~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09272~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09272~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09273~^~203~^0.36^79^0.03^~1~^~A~^^^3^0.23^0.41^2^0.22^0.49^~2~^~04/01/2005~ -~09273~^~204~^0.12^58^0.02^~1~^~A~^^^3^0.00^0.19^2^-5.0e-03^0.24^~2~^~04/01/2005~ -~09273~^~205~^12.87^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09273~^~207~^0.28^20^0.02^~1~^~A~^^^2^0.26^0.30^1^0.03^0.52^~2~^~04/01/2005~ -~09273~^~210~^1.53^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~211~^4.65^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~212~^3.81^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~09273~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~09273~^~255~^86.37^20^0.69^~1~^~A~^^^2^85.38^87.06^1^77.59^95.15^~2~^~04/01/2005~ -~09273~^~269~^9.98^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~09273~^~303~^0.31^77^0.05^~1~^~A~^^^3^0.17^0.57^2^0.08^0.53^~2~^~04/01/2005~ -~09273~^~309~^0.11^20^1.0e-03^~1~^~A~^^^2^0.09^0.13^1^0.10^0.11^~2~^~04/01/2005~ -~09273~^~323~^0.02^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~09273~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09273~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09273~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09274~^~203~^1.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~205~^44.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09274~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~255~^53.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~269~^43.60^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09274~^~303~^0.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~309~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~323~^0.03^0^^~4~^~BFSN~^~09275~^^^^^^^^^~01/01/2003~ -~09274~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09274~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09274~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09275~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~204~^0.03^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~205~^12.67^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~09275~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~255~^86.60^47^0.11^~1~^~A~^^^^^^^^^^~12/01/2009~ -~09275~^~269~^12.47^0^^~4~^~O~^^^^^^^^^^~12/01/2009~ -~09275~^~303~^0.16^51^7.0e-03^~1~^~A~^^^15^0.11^0.35^14^0.14^0.17^~1, 2~^~12/01/2009~ -~09275~^~309~^0.08^51^3.0e-03^~1~^~A~^^^15^0.05^0.11^14^0.07^0.08^~1, 2~^~12/01/2009~ -~09275~^~323~^0.01^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~09275~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09275~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09275~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09276~^~203~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~205~^7.49^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09276~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~255~^90.81^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09277~^~203~^1.30^16^0.12^~6~^~JA~^^^2^1.30^1.38^14^1.02^1.58^~2, 3~^~11/01/2016~ -~09277~^~204~^0.35^16^0.06^~6~^~JA~^^^2^0.10^0.37^14^0.20^0.50^~2, 3~^~11/01/2016~ -~09277~^~205~^31.89^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~207~^1.15^16^0.15^~6~^~JA~^^^2^0.88^1.17^14^0.82^1.47^~2, 3~^~11/01/2016~ -~09277~^~209~^12.00^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~210~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~211~^8.69^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~212~^8.64^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~255~^65.20^20^1.01^~6~^~JA~^^^2^63.60^65.28^18^63.07^67.31^~2, 3~^~11/01/2016~ -~09277~^~269~^17.51^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~303~^0.55^4^3.0e-03^~6~^~JA~^^^2^0.38^0.60^2^0.53^0.55^~2, 3~^~11/01/2016~ -~09277~^~309~^0.19^4^0.01^~6~^~JA~^^^2^0.14^0.32^2^0.13^0.24^~2, 3~^~11/01/2016~ -~09277~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~09277~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09277~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09277~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09278~^~203~^1.52^3^0.08^~1~^~A~^^^1^1.42^1.70^2^1.14^1.90^~2, 3~^~11/01/2016~ -~09278~^~204~^0.16^3^0.04^~1~^~A~^^^1^0.07^0.20^2^-0.02^0.33^~1, 2, 3~^~11/01/2016~ -~09278~^~205~^41.37^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~207~^1.09^3^0.05^~1~^~A~^^^1^1.03^1.19^2^0.86^1.30^~2, 3~^~11/01/2016~ -~09278~^~209~^17.93^3^3.25^~1~^~A~^^^1^13.30^24.20^2^3.94^31.92^~2, 3~^~11/01/2016~ -~09278~^~210~^13.72^3^0.39^~1~^~A~^^^1^13.08^14.45^2^12.00^15.43^~2, 3~^~11/01/2016~ -~09278~^~211~^3.79^3^0.28^~1~^~A~^^^1^3.44^4.36^2^2.55^5.02^~2, 3~^~11/01/2016~ -~09278~^~212~^3.82^3^0.28^~1~^~A~^^^1^3.53^4.39^2^2.60^5.04^~2, 3~^~11/01/2016~ -~09278~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09278~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09278~^~255~^55.87^3^3.24^~1~^~A~^^^1^49.40^59.60^2^41.89^69.83^~2, 3~^~11/01/2016~ -~09278~^~269~^21.33^3^0.94^~1~^~A~^^^1^20.18^23.20^2^17.28^25.38^~2, 3~^~11/01/2016~ -~09278~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09278~^~303~^0.28^3^0.03^~1~^~A~^^^1^0.21^0.33^2^0.12^0.42^~2, 3~^~11/01/2016~ -~09278~^~309~^0.21^3^0.04^~1~^~A~^^^1^0.16^0.31^2^6.0e-03^0.41^~2, 3~^~11/01/2016~ -~09278~^~323~^0.00^0^^~4~^~BFFN~^~09277~^^^^^^^^^~11/01/2016~ -~09278~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09278~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09279~^~203~^0.70^9^0.03^~1~^~A~^^^2^0.57^0.89^6^0.61^0.79^~2, 3~^~12/01/2002~ -~09279~^~204~^0.28^10^0.04^~1~^~A~^^^3^0.01^0.51^5^0.16^0.39^~1, 2, 3~^~12/01/2002~ -~09279~^~205~^11.42^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~207~^0.37^9^8.0e-03^~1~^~A~^^^2^0.31^0.44^6^0.34^0.38^~2, 3~^~12/01/2002~ -~09279~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09279~^~210~^1.57^8^0.26^~1~^~A~^^^2^0.28^2.53^5^0.91^2.22^~2, 3~^~12/01/2002~ -~09279~^~211~^5.07^8^0.26^~1~^~A~^^^2^4.05^6.23^5^4.35^5.77^~2, 3~^~12/01/2002~ -~09279~^~212~^3.07^8^0.12^~1~^~A~^^^2^2.35^3.88^5^2.75^3.38^~2, 3~^~12/01/2002~ -~09279~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09279~^~214~^0.08^8^0.02^~1~^~A~^^^2^0.00^0.26^3^0.01^0.14^~1, 2, 3~^~12/01/2002~ -~09279~^~255~^87.23^10^0.32^~1~^~A~^^^3^85.50^89.46^4^86.30^88.15^~2, 3~^~12/01/2002~ -~09279~^~269~^9.92^8^0.37^~1~^~A~^^^2^8.60^11.59^4^8.91^10.92^~2, 3~^~12/01/2002~ -~09279~^~287~^0.14^8^0.14^~1~^~A~^^^2^0.00^1.12^3^-0.30^0.58^~1, 2, 3~^~12/01/2002~ -~09279~^~303~^0.17^44^0.02^~1~^~A~^^^13^0.07^0.59^12^0.11^0.22^~1, 2~^~12/01/2002~ -~09279~^~309~^0.10^44^0.01^~1~^~A~^^^13^0.04^0.30^12^0.07^0.13^~1, 2~^~12/01/2002~ -~09279~^~323~^0.26^5^0.06^~1~^~A~^^^2^0.20^0.46^1^-0.54^1.07^~2~^~12/01/2002~ -~09279~^~341~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09279~^~342~^0.08^5^0.07^~1~^~A~^^^2^0.00^0.16^1^-0.88^1.05^~1, 2~^~12/01/2002~ -~09279~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09279~^~344~^0.04^3^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.41^0.48^~1, 2~^~12/01/2002~ -~09279~^~345~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~12/01/2002~ -~09279~^~346~^0.01^3^7.0e-03^~1~^~A~^^^2^0.00^0.01^1^-0.08^0.10^~1, 2~^~12/01/2002~ -~09279~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2003~ -~09279~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09279~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09279~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09281~^~203~^0.39^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~204~^0.01^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~205~^11.03^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09281~^~207~^0.23^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~255~^88.35^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~269~^10.10^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09281~^~303~^0.16^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~309~^0.08^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~323~^0.18^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09281~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09281~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09281~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09282~^~203~^0.51^6^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~204~^0.02^6^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~205~^15.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09282~^~207~^0.30^6^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~255~^84.02^6^0.32^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~269~^14.22^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~09282~^~303~^0.34^6^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~309~^0.11^6^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~323~^0.18^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09282~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09282~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09282~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09283~^~203~^0.37^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~205~^16.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09283~^~207~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~255~^83.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~269~^15.35^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09283~^~303~^0.86^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~309~^0.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~323~^0.18^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09283~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09284~^~203~^0.36^8^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~204~^0.10^8^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~205~^23.24^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09284~^~207~^0.24^8^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~255~^76.06^8^0.22^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~269~^22.31^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09284~^~303~^0.84^8^0.17^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~323~^0.18^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~ -~09284~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09284~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09285~^~203~^0.36^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~205~^26.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09285~^~207~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~255~^73.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~303~^0.82^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09286~^~203~^1.67^3^0.26^~1~^~A~^^^1^1.20^2.10^2^0.54^2.78^~4~^~03/01/2008~ -~09286~^~204~^1.17^3^0.40^~1~^~A~^^^1^0.50^1.90^2^-0.57^2.91^~4~^~03/01/2008~ -~09286~^~205~^18.70^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09286~^~207~^0.53^3^0.06^~1~^~A~^^^1^0.40^0.60^2^0.24^0.82^~4~^~03/01/2008~ -~09286~^~255~^77.93^3^0.03^~1~^~A~^^^1^77.90^78.00^2^77.79^78.07^~4~^~03/01/2008~ -~09286~^~269~^13.67^3^0.32^~1~^~A~^^^1^13.20^14.30^2^12.25^15.07^~4~^~03/01/2008~ -~09286~^~303~^0.30^3^0.03^~1~^~A~^^^1^0.24^0.35^2^0.16^0.43^~4~^~03/01/2008~ -~09286~^~309~^0.35^3^0.03^~1~^~A~^^^1^0.30^0.41^2^0.20^0.48^~4~^~03/01/2008~ -~09286~^~323~^0.60^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~ -~09286~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09286~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09286~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09287~^~203~^0.73^3^0.10^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~204~^0.51^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~205~^9.57^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09287~^~207~^1.64^3^0.58^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~255~^87.55^4^2.79^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~309~^0.12^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09287~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09288~^~203~^0.87^20^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~204~^0.20^20^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~205~^27.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09288~^~207~^0.46^20^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~255~^70.67^20^0.25^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~303~^0.41^20^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~309~^0.19^20^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09289~^~203~^3.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~204~^0.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~205~^89.07^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09289~^~207~^2.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~255~^4.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~303~^3.52^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~309~^0.75^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09290~^~203~^1.23^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~204~^0.24^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~205~^29.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09290~^~207~^0.83^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~255~^67.99^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~303~^1.17^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~309~^0.25^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09291~^~203~^2.18^8^0.03^~1~^~A~^^^2^1.92^2.39^6^2.10^2.26^~2, 3~^~10/01/2002~ -~09291~^~204~^0.38^9^0.11^~1~^~A~^^^3^0.19^0.60^2^-0.11^0.86^~2~^~10/01/2002~ -~09291~^~205~^63.88^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~207~^2.64^8^0.38^~1~^~A~^^^2^1.50^3.81^6^1.71^3.57^~2, 3~^~10/01/2002~ -~09291~^~209~^5.11^2^^~1~^~A~^^^2^1.70^8.53^^^^^~10/01/2002~ -~09291~^~210~^0.15^12^0.04^~1~^~A~^^^5^0.00^0.32^4^0.03^0.27^~1, 2~^~08/01/2010~ -~09291~^~211~^25.46^15^2.99^~1~^~A~^^^6^15.38^45.40^5^17.84^33.24^~2~^~08/01/2010~ -~09291~^~212~^12.45^15^1.40^~1~^~A~^^^6^5.93^17.60^5^8.88^16.09^~2~^~08/01/2010~ -~09291~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~09291~^~214~^0.06^9^0.06^~1~^~A~^^^3^0.00^0.34^2^-0.20^0.32^~1, 2~^~08/01/2010~ -~09291~^~255~^30.92^14^2.26^~1~^~A~^^^6^18.78^37.50^5^25.09^36.74^~2~^~10/01/2002~ -~09291~^~269~^38.13^10^6.33^~1~^~A~^^^4^23.39^63.00^3^17.95^58.29^~2~^~10/01/2002~ -~09291~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2006~ -~09291~^~303~^0.93^42^0.05^~1~^~A~^^^13^0.67^1.56^12^0.81^1.04^~2~^~10/01/2002~ -~09291~^~309~^0.44^42^0.01^~1~^~A~^^^13^0.17^0.69^12^0.40^0.46^~2~^~10/01/2002~ -~09291~^~323~^0.43^5^0.10^~1~^~A~^^^2^0.15^0.54^1^-0.95^1.81^~2~^~10/01/2002~ -~09291~^~341~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~10/01/2002~ -~09291~^~342~^0.02^5^0.02^~1~^~A~^^^2^0.00^0.11^1^-0.26^0.30^~2~^~10/01/2002~ -~09291~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~10/01/2002~ -~09291~^~344~^0.01^5^0.01^~1~^~A~^^^2^0.00^0.02^1^-0.11^0.13^~1, 2~^~10/01/2002~ -~09291~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~10/01/2002~ -~09291~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~10/01/2002~ -~09291~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09291~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09292~^~203~^0.96^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~204~^0.16^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~205~^28.08^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09292~^~207~^1.16^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~255~^69.73^3^1.03^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~269~^24.98^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09292~^~303~^0.41^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~309~^0.19^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~323~^0.19^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09292~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09292~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09293~^~203~^1.09^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~205~^32.88^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09293~^~207~^0.73^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~255~^65.08^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~303~^1.04^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~309~^0.22^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09294~^~203~^0.61^31^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~204~^0.03^25^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~205~^17.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09294~^~207~^0.68^30^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~255~^81.24^30^0.11^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~269~^16.45^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~09294~^~303~^1.18^30^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~309~^0.21^17^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~323~^0.12^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09294~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09294~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09294~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09295~^~203~^0.76^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~204~^0.04^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~205~^9.62^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09295~^~207~^0.48^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~255~^89.10^3^0.76^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~303~^0.11^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~309~^0.08^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09296~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~205~^15.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09296~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~255~^83.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~309~^0.04^0^^~4~^^^^^^^^^^^~11/01/1988~ -~09296~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09297~^~203~^3.28^6^0.07^~1~^~A~^^^1^3.00^3.44^5^3.10^3.46^~2, 3~^~07/01/2017~ -~09297~^~204~^0.20^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09297~^~205~^80.02^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~207~^1.61^6^0.04^~1~^~A~^^^1^1.47^1.75^5^1.47^1.73^~2, 3~^~07/01/2017~ -~09297~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~211~^30.98^6^0.25^~1~^~A~^^^1^30.00^31.80^5^30.32^31.64^~2, 3~^~07/01/2017~ -~09297~^~212~^34.72^6^0.43^~1~^~A~^^^1^33.10^36.10^5^33.58^35.84^~2, 3~^~07/01/2017~ -~09297~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~255~^14.90^6^0.69^~1~^~A~^^^1^13.13^16.89^5^13.09^16.69^~2, 3~^~07/01/2017~ -~09297~^~269~^65.70^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09297~^~303~^0.98^6^0.03^~1~^~A~^^^1^0.82^1.10^5^0.88^1.07^~2, 3~^~07/01/2017~ -~09297~^~309~^0.37^6^0.01^~1~^~A~^^^1^0.33^0.44^5^0.32^0.41^~1, 2, 3~^~07/01/2017~ -~09297~^~323~^0.12^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~ -~09297~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09298~^~203~^3.30^12^0.05^~1~^~A~^^^1^3.06^3.69^6^3.15^3.44^~2, 3~^~07/01/2017~ -~09298~^~204~^0.25^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09298~^~205~^79.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~207~^1.68^12^0.02^~1~^~A~^^^1^1.50^1.81^6^1.61^1.74^~2, 3~^~07/01/2017~ -~09298~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~211~^30.51^12^0.16^~1~^~A~^^^1^29.50^31.80^6^30.12^30.90^~2, 3~^~07/01/2017~ -~09298~^~212~^34.67^12^0.22^~1~^~A~^^^1^33.70^35.70^6^34.11^35.22^~2, 3~^~07/01/2017~ -~09298~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~255~^15.46^12^0.14^~1~^~A~^^^1^14.68^17.92^9^15.12^15.79^~2, 3~^~07/01/2017~ -~09298~^~269~^65.18^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~09298~^~303~^1.79^12^0.11^~1~^~A~^^^1^1.10^2.50^5^1.48^2.08^~2, 3~^~07/01/2017~ -~09298~^~309~^0.36^12^4.0e-03^~1~^~A~^^^1^0.34^0.37^6^0.34^0.36^~1, 2, 3~^~07/01/2017~ -~09298~^~323~^0.12^5^0.02^~1~^~A~^^^2^0.05^0.18^4^0.04^0.19^~4~^~10/01/2002~ -~09298~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09298~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09298~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09299~^~203~^2.52^35^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~204~^0.54^18^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~205~^78.47^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09299~^~207~^1.89^35^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~255~^16.57^35^0.20^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~303~^2.59^34^0.28^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~309~^0.18^18^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09301~^~203~^0.65^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~204~^0.21^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~205~^20.87^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09301~^~207~^0.23^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~255~^78.04^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~303~^0.35^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~309~^0.08^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09302~^~203~^1.20^12^0.09^~1~^~A~^^^4^0.92^1.50^3^0.88^1.50^~2~^~12/01/2002~ -~09302~^~204~^0.65^11^0.26^~1~^~A~^^^4^0.07^1.68^3^-0.18^1.49^~1, 2~^~12/01/2002~ -~09302~^~205~^11.94^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~207~^0.46^12^0.06^~1~^~A~^^^4^0.32^0.79^3^0.26^0.64^~2~^~12/01/2002~ -~09302~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~210~^0.20^5^0.00^~1~^~A~^^^2^0.14^0.45^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~211~^1.86^5^0.06^~1~^~A~^^^2^1.57^2.32^3^1.64^2.07^~2, 3~^~12/01/2002~ -~09302~^~212~^2.35^5^0.08^~1~^~A~^^^2^1.89^3.09^3^2.08^2.61^~2, 3~^~12/01/2002~ -~09302~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~255~^85.75^14^0.99^~1~^~A~^^^5^81.79^88.47^4^83.00^88.50^~2~^~12/01/2002~ -~09302~^~269~^4.42^5^0.14^~1~^~A~^^^2^3.60^5.86^3^3.95^4.88^~2, 3~^~12/01/2002~ -~09302~^~287~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~09302~^~303~^0.69^12^0.04^~1~^~A~^^^4^0.46^1.08^3^0.54^0.83^~2~^~12/01/2002~ -~09302~^~309~^0.42^12^0.06^~1~^~A~^^^4^0.25^0.79^3^0.19^0.63^~2~^~12/01/2002~ -~09302~^~323~^0.87^6^0.07^~1~^~A~^^^2^0.48^1.02^3^0.64^1.10^~2, 3~^~12/01/2002~ -~09302~^~341~^0.06^6^0.01^~1~^~A~^^^2^0.01^0.08^3^0.03^0.09^~1, 2, 3~^~12/01/2002~ -~09302~^~342~^1.42^6^0.14^~1~^~A~^^^2^0.77^1.70^3^0.97^1.86^~2, 3~^~12/01/2002~ -~09302~^~343~^1.04^6^0.15^~1~^~A~^^^2^0.44^1.46^3^0.55^1.53^~2, 3~^~12/01/2002~ -~09302~^~344~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~09302~^~345~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~09302~^~346~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~09302~^~347~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~09302~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09302~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09302~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09304~^~203~^0.83^3^0.09^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~204~^0.12^3^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~205~^23.36^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09304~^~207~^0.36^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~255~^75.33^3^0.25^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~269~^20.06^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~09304~^~303~^0.42^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~309~^0.16^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~323~^0.59^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~ -~09304~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09304~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09304~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09306~^~203~^0.70^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~204~^0.16^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~205~^26.16^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09306~^~207~^0.24^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~255~^72.75^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~269~^21.76^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~09306~^~303~^0.65^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~309~^0.18^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~323~^0.72^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09306~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09306~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09306~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09307~^~203~^0.90^34^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~205~^4.54^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09307~^~207~^0.76^33^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~255~^93.61^38^0.27^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~269~^1.10^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~09307~^~303~^0.22^33^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~323~^0.27^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09307~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09307~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09307~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09309~^~203~^0.55^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~204~^0.11^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09309~^~207~^0.72^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~255~^93.51^3^0.33^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~269~^1.10^0^^~4~^~BFZN~^~09307~^^^^^^^^^~02/01/2003~ -~09309~^~303~^0.29^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~309~^0.10^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~323~^0.27^0^^~4~^~BFZN~^~11143~^^^^^^^^^~02/01/2007~ -~09309~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09309~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09309~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09310~^~203~^0.39^3^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~204~^0.05^3^9.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~205~^31.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09310~^~207~^0.56^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~255~^67.79^3^1.20^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~269~^28.70^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09310~^~303~^0.21^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~309~^0.08^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~323~^0.19^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09310~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09310~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09310~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09311~^~203~^0.96^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~204~^0.64^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~205~^11.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09311~^~207~^0.51^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~255~^86.58^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~303~^1.48^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09312~^~203~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~205~^5.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09312~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~255~^93.00^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~303~^0.07^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~309~^0.06^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09313~^~203~^0.44^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~204~^1.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~205~^19.96^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09313~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~255~^78.00^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~309~^0.10^0^^~4~^^^^^^^^^^^~09/01/1986~ -~09313~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09314~^~203~^1.45^19^0.27^~1~^~A~^^^3^0.75^2.03^2^0.28^2.61^~2~^~08/01/2010~ -~09314~^~204~^0.46^5^0.15^~1~^~A~^^^2^0.29^0.70^1^-1.44^2.36^~2~^~08/01/2010~ -~09314~^~205~^32.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~207~^1.12^5^0.06^~1~^~A~^^^2^0.88^1.20^1^0.26^1.97^~2~^~08/01/2010~ -~09314~^~209~^6.33^3^0.66^~1~^~A~^^^1^5.10^7.40^2^3.45^9.21^~4~^~08/01/2010~ -~09314~^~210~^4.09^3^2.02^~1~^~A~^^^1^0.07^6.60^2^-4.64^12.82^~1, 4~^~08/01/2010~ -~09314~^~211~^8.01^3^0.82^~1~^~A~^^^1^6.88^9.61^2^4.47^11.54^~4~^~08/01/2010~ -~09314~^~212~^7.66^3^0.80^~1~^~A~^^^1^6.55^9.22^2^4.20^11.11^~4~^~08/01/2010~ -~09314~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2010~ -~09314~^~214~^0.38^3^0.30^~1~^~A~^^^1^0.07^0.98^2^-0.92^1.67^~1, 4~^~08/01/2010~ -~09314~^~255~^64.87^6^0.37^~1~^~A~^^^3^63.20^66.69^2^63.27^66.47^~2~^~08/01/2010~ -~09314~^~269~^20.14^3^0.70^~1~^~A~^^^1^18.98^21.42^2^17.08^23.18^~4~^~08/01/2010~ -~09314~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2010~ -~09314~^~303~^0.78^19^0.48^~1~^~A~^^^3^0.15^2.99^2^-1.29^2.86^~2~^~08/01/2010~ -~09314~^~309~^0.19^19^0.01^~1~^~A~^^^3^0.14^0.29^2^0.11^0.27^~2~^~08/01/2010~ -~09314~^~323~^2.11^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~344~^0.36^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09315~^~203~^1.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~205~^16.84^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09315~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~255~^81.16^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~269~^13.54^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09315~^~303~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09315~^~323~^0.08^0^^~4~^~BFSN~^~09040~^^^^^^^^^~02/01/2003~ -~09315~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09315~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09315~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09316~^~203~^0.67^19^0.02^~1~^~A~^^^5^0.51^0.89^4^0.59^0.74^~2~^~04/01/2003~ -~09316~^~204~^0.30^15^0.04^~1~^~A~^^^5^0.13^0.50^4^0.17^0.43^~2~^~04/01/2003~ -~09316~^~205~^7.68^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~207~^0.40^19^0.02^~1~^~A~^^^5^0.25^0.49^4^0.33^0.45^~2~^~04/01/2003~ -~09316~^~209~^0.04^8^0.02^~1~^~A~^^^2^0.00^0.24^3^-0.04^0.13^~1, 2, 3~^~02/01/2003~ -~09316~^~210~^0.47^15^0.32^~1~^~A~^^^4^0.00^1.60^3^-0.57^1.51^~1, 2~^~05/01/2006~ -~09316~^~211~^1.99^16^0.19^~1~^~A~^^^5^1.20^2.95^4^1.44^2.52^~2~^~05/01/2006~ -~09316~^~212~^2.44^16^0.19^~1~^~A~^^^5^1.24^3.28^4^1.88^2.98^~2~^~05/01/2006~ -~09316~^~213~^0.00^12^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~09316~^~214~^0.00^12^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~09316~^~255~^90.95^23^0.21^~1~^~A~^^^7^88.10^92.60^6^90.43^91.47^~2~^~04/01/2003~ -~09316~^~269~^4.89^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~09316~^~287~^0.00^10^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~09316~^~303~^0.41^77^0.02^~1~^~A~^^^22^0.11^0.80^21^0.35^0.46^~2~^~05/01/2006~ -~09316~^~309~^0.14^74^0.01^~1~^~A~^^^21^0.06^0.59^20^0.10^0.16^~2~^~04/01/2003~ -~09316~^~323~^0.29^8^0.02^~1~^~A~^^^2^0.19^0.44^5^0.22^0.34^~2, 3~^~03/01/2003~ -~09316~^~341~^0.01^8^2.0e-03^~1~^~A~^^^2^0.00^0.01^3^3.0e-03^0.01^~1, 2, 3~^~02/01/2003~ -~09316~^~342~^0.08^8^0.01^~1~^~A~^^^2^0.05^0.15^4^0.04^0.10^~2, 3~^~02/01/2003~ -~09316~^~343~^0.01^8^5.0e-03^~1~^~A~^^^2^0.00^0.04^4^0.00^0.02^~1, 2, 3~^~02/01/2003~ -~09316~^~344~^0.01^8^0.00^~1~^~A~^^^2^0.00^0.02^^^^~2, 3~^~02/01/2003~ -~09316~^~345~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~09316~^~346~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~09316~^~347~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~09316~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09316~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09316~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09317~^~203~^0.56^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~204~^0.26^3^0.07^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~205~^23.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09317~^~207~^0.30^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~255~^75.35^3^0.99^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~269~^21.83^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~09317~^~303~^0.49^3^0.06^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~309~^0.09^3^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~323~^0.19^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~ -~09317~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09317~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09317~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09318~^~203~^0.43^12^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~204~^0.11^6^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~205~^9.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09318~^~207~^0.37^10^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~210~^0.37^3^^~1~^~A~^^^1^0.00^0.70^^^^~2~^~02/01/2003~ -~09318~^~211~^2.02^6^0.14^~1~^~A~^^^2^1.31^2.41^1^0.17^3.86^~2~^~02/01/2003~ -~09318~^~212~^2.17^6^0.33^~1~^~A~^^^2^1.16^2.70^1^-2.06^6.40^~2~^~02/01/2003~ -~09318~^~255~^89.97^4^0.30^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~269~^4.56^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09318~^~303~^0.75^6^0.28^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~323~^0.29^0^^~4~^~BFZN~^~09316~^^^^^^^^^~08/01/2003~ -~09318~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09318~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09318~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09320~^~203~^0.53^18^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~204~^0.13^18^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~205~^25.92^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09320~^~207~^0.24^15^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~255~^73.18^16^1.34^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~269~^24.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~09320~^~303~^0.59^18^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~309~^0.06^10^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~09320~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09320~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09320~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09321~^~203~^2.06^9^0.25^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~204~^0.29^8^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~205~^23.64^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09321~^~207~^0.78^9^0.08^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~255~^73.23^12^1.07^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~303~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09321~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09322~^~203~^2.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~205~^62.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09322~^~207~^2.70^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~255~^31.40^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~269~^38.80^1^^~13~^~AI~^^^^^^^^^^~06/01/2014~ -~09322~^~303~^2.80^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09322~^~323~^0.10^0^^~4~^~BFSN~^~09298~^^^^^^^^^~02/01/2003~ -~09322~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09322~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09322~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09325~^~203~^0.41^26^5.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~204~^0.10^26^0.00^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~205~^22.36^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09325~^~207~^0.35^26^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~255~^76.78^26^0.32^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~303~^0.52^25^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~309~^0.11^26^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09326~^~203~^0.61^11^0.04^~1~^~A~^^^3^0.40^0.84^2^0.43^0.78^~2~^~03/01/2003~ -~09326~^~204~^0.15^10^0.03^~1~^~A~^^^3^0.05^0.27^2^-0.01^0.30^~2~^~04/01/2003~ -~09326~^~205~^7.55^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~207~^0.25^11^0.03^~1~^~A~^^^3^0.10^0.37^2^0.08^0.41^~2~^~03/01/2003~ -~09326~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~09326~^~210~^1.21^6^0.85^~1~^~A~^^^3^0.11^2.87^2^-2.53^4.85^~1, 2~^~04/01/2006~ -~09326~^~211~^1.58^8^0.43^~1~^~A~^^^3^0.67^2.13^2^-0.34^3.38^~2~^~04/01/2006~ -~09326~^~212~^3.36^8^0.32^~1~^~A~^^^3^2.72^4.00^2^1.85^4.62^~2~^~04/01/2006~ -~09326~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~04/01/2006~ -~09326~^~214~^0.06^8^0.04^~1~^~A~^^^3^0.00^0.14^2^-0.12^0.24^~1, 2~^~04/01/2006~ -~09326~^~255~^91.45^14^0.31^~1~^~A~^^^6^90.10^92.42^5^90.63^92.26^~2~^~03/01/2003~ -~09326~^~269~^6.20^6^0.14^~1~^~A~^^^3^5.74^6.59^2^5.58^6.82^~2~^~03/01/2003~ -~09326~^~287~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~09326~^~303~^0.24^45^0.01^~1~^~A~^^^14^0.08^0.55^13^0.20^0.26^~1, 2~^~03/01/2003~ -~09326~^~309~^0.10^45^0.02^~1~^~A~^^^14^0.04^0.63^13^0.05^0.15^~1, 2~^~03/01/2003~ -~09326~^~323~^0.05^8^0.01^~1~^~A~^^^3^0.02^0.07^2^-5.0e-03^0.10^~2~^~03/01/2003~ -~09326~^~341~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~09326~^~342~^0.00^8^3.0e-03^~1~^~A~^^^3^0.00^0.02^2^-0.01^0.01^~1, 2~^~03/01/2003~ -~09326~^~343~^0.00^8^5.0e-03^~1~^~A~^^^3^0.00^0.04^2^-0.01^0.02^~1, 2~^~03/01/2003~ -~09326~^~344~^0.01^8^8.0e-03^~1~^~A~^^^3^0.00^0.03^2^-0.02^0.04^~2~^~03/01/2003~ -~09326~^~345~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~09326~^~346~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~09326~^~347~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~09326~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09328~^~203~^0.22^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~09328~^~204~^0.21^1^^~1~^~A~^^^^0.21^0.21^^^^^~03/01/2003~ -~09328~^~205~^41.97^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09328~^~207~^0.34^1^^~1~^~A~^^^^0.34^0.34^^^^^~03/01/2003~ -~09328~^~255~^57.27^1^^~1~^~A~^^^^57.27^57.27^^^^^~03/01/2003~ -~09328~^~269~^38.77^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09328~^~303~^0.43^1^^~1~^~A~^^^^0.43^0.43^^^^^~03/01/2003~ -~09328~^~309~^0.26^1^^~1~^~A~^^^^0.26^0.26^^^^^~03/01/2003~ -~09328~^~323~^0.05^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~09328~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09328~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09334~^~203~^0.71^3^^~1~^~A~^^^1^0.69^0.75^^^^~2~^~06/01/2014~ -~09334~^~204~^0.42^3^^~1~^~A~^^^1^0.37^0.47^^^^~2~^~06/01/2014~ -~09334~^~205~^15.21^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~207~^0.38^3^^~1~^~A~^^^1^0.34^0.41^^^^~2~^~06/01/2014~ -~09334~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~210~^2.93^3^0.27^~1~^~A~^^^1^2.61^3.48^2^1.74^4.11^~4~^~07/01/2010~ -~09334~^~211~^2.32^3^0.07^~1~^~A~^^^1^2.24^2.47^2^1.98^2.64^~4~^~07/01/2010~ -~09334~^~212~^2.95^3^0.09^~1~^~A~^^^1^2.81^3.14^2^2.53^3.37^~4~^~07/01/2010~ -~09334~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09334~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09334~^~255~^83.28^3^^~1~^~A~^^^1^82.75^83.71^^^^~2~^~06/01/2014~ -~09334~^~269~^8.20^3^0.25^~1~^~A~^^^1^7.75^8.63^2^7.10^9.29^~4~^~07/01/2010~ -~09334~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2010~ -~09334~^~303~^0.14^5^0.05^~1~^~A~^^^2^0.06^0.24^1^-0.57^0.85^~2~^~07/01/2010~ -~09334~^~309~^0.06^5^0.01^~1~^~A~^^^2^0.00^0.09^1^-0.14^0.26^~2~^~07/01/2010~ -~09334~^~323~^0.16^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~346~^0.01^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09334~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09340~^~203~^0.50^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~205~^10.65^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09340~^~207~^0.37^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~255~^88.25^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~269~^7.05^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09340~^~303~^0.00^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~309~^0.02^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~323~^0.12^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09340~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09340~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09340~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09351~^~203~^0.47^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~204~^0.10^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~205~^18.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~207~^0.24^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~255~^80.40^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~269~^17.14^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09351~^~303~^0.29^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~309~^0.08^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~323~^0.60^0^^~4~^~BFYN~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09352~^~203~^1.04^3^0.02^~1~^~A~^^^1^1.00^1.06^2^0.95^1.13^~2, 3~^~04/01/2008~ -~09352~^~204~^0.40^3^0.02^~1~^~A~^^^1^0.36^0.42^2^0.31^0.48^~2, 3~^~04/01/2008~ -~09352~^~205~^22.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~207~^0.18^3^0.01^~1~^~A~^^^1^0.16^0.20^2^0.13^0.23^~2, 3~^~04/01/2008~ -~09352~^~210~^0.41^3^0.19^~1~^~A~^^^1^0.14^0.80^2^-0.45^1.26^~2, 3~^~04/01/2008~ -~09352~^~211~^8.62^3^0.24^~1~^~A~^^^1^8.23^9.08^2^7.55^9.68^~2, 3~^~04/01/2008~ -~09352~^~212~^8.43^3^0.16^~1~^~A~^^^1^8.20^8.75^2^7.71^9.13^~2, 3~^~04/01/2008~ -~09352~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~09352~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~09352~^~255~^75.72^3^1.41^~1~^~A~^^^1^72.91^77.37^2^69.64^81.78^~2, 3~^~04/01/2008~ -~09352~^~269~^17.45^3^0.33^~1~^~A~^^^1^17.01^18.12^2^16.00^18.90^~2, 3~^~04/01/2008~ -~09352~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~09352~^~303~^0.43^3^0.05^~1~^~A~^^^1^0.33^0.50^2^0.20^0.65^~2, 3~^~04/01/2008~ -~09352~^~309~^0.09^3^9.0e-03^~1~^~A~^^^1^0.08^0.11^2^0.05^0.13^~2, 3~^~04/01/2008~ -~09352~^~323~^1.38^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09352~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09352~^~342~^0.46^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09352~^~343~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09352~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09352~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09352~^~346~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09352~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09352~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09353~^~203~^0.56^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~204~^0.34^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~205~^28.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~09353~^~207~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~210~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~211~^10.13^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~212~^9.02^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09353~^~214~^0.12^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~255~^70.63^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~269~^19.28^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~09353~^~303~^2.20^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~309~^0.12^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09354~^~203~^0.51^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~204~^0.11^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~205~^15.56^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09354~^~207~^0.31^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~255~^83.51^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~269~^14.26^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~09354~^~303~^0.28^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~309~^0.10^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~323~^0.02^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~ -~09354~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2007~ -~09354~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09354~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09357~^~203~^0.64^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~204~^0.11^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~205~^21.31^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09357~^~207~^0.38^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~255~^77.56^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~269~^18.65^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~09357~^~303~^0.30^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~309~^0.11^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~323~^0.89^0^^~4~^~BFZN~^~09021~^^^^^^^^^~01/01/2003~ -~09357~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~09357~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09357~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09362~^~203~^0.69^2^^~1~^~A~^^^1^0.63^0.75^1^^^^~04/01/2008~ -~09362~^~204~^0.21^2^^~1~^~A~^^^1^0.18^0.23^1^^^^~04/01/2008~ -~09362~^~205~^10.45^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09362~^~207~^0.34^2^^~1~^~A~^^^1^0.26^0.43^1^^^^~04/01/2008~ -~09362~^~210~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~09362~^~211~^4.19^2^^~1~^~A~^^^1^4.10^4.27^1^^^^~04/01/2008~ -~09362~^~212~^2.79^2^^~1~^~A~^^^1^2.68^2.90^1^^^^~04/01/2008~ -~09362~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~09362~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~09362~^~255~^88.31^2^^~1~^~A~^^^1^87.92^88.70^1^^^^~04/01/2008~ -~09362~^~269~^6.99^2^^~1~^~A~^^^1^6.80^7.19^1^^^^~04/01/2008~ -~09362~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2008~ -~09362~^~303~^0.64^2^^~1~^~A~^^^1^0.28^1.00^1^^^^~04/01/2008~ -~09362~^~309~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~04/01/2008~ -~09362~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2008~ -~09367~^~203~^0.73^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~204~^0.21^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~205~^21.07^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09367~^~207~^0.39^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~255~^77.61^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~269~^16.18^0^^~4~^~BFZN~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~303~^0.35^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~309~^0.10^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~323~^0.17^0^^~4~^~BFZN~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~418~^0.00^0^^~7~^^^^^^^^^^^~06/01/2008~ -~09367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09370~^~203~^0.52^3^0.01^~1~^~A~^^^1^0.49^0.54^2^0.45^0.58^~2, 3~^~11/01/2009~ -~09370~^~204~^0.18^3^0.10^~1~^~A~^^^1^0.05^0.38^2^-0.25^0.61^~2, 3~^~11/01/2009~ -~09370~^~205~^18.43^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09370~^~207~^0.26^3^0.01^~1~^~A~^^^1^0.23^0.28^2^0.19^0.32^~2, 3~^~11/01/2009~ -~09370~^~210~^3.95^5^0.66^~1~^~A~^^^2^2.56^4.75^1^-4.48^12.39^~2~^~11/01/2009~ -~09370~^~211~^5.82^5^0.42^~1~^~A~^^^2^5.20^6.46^1^0.36^11.26^~2~^~11/01/2009~ -~09370~^~212~^3.45^5^0.05^~1~^~A~^^^2^3.37^3.60^1^2.76^4.13^~2~^~11/01/2009~ -~09370~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2009~ -~09370~^~214~^1.44^5^0.10^~1~^~A~^^^2^1.21^1.58^1^0.11^2.77^~2~^~11/01/2009~ -~09370~^~255~^80.62^5^0.11^~1~^~A~^^^2^80.30^80.92^1^79.15^82.07^~2~^~11/01/2009~ -~09370~^~269~^14.66^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~09370~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2009~ -~09370~^~303~^0.27^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~309~^0.09^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~323~^1.19^2^^~1~^~A~^^^1^1.04^1.34^1^^^^~11/01/2009~ -~09370~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~11/01/2009~ -~09370~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2009~ -~09370~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2009~ -~09370~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09370~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09374~^~203~^0.24^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~204~^0.18^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~205~^19.08^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09374~^~207~^0.15^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~255~^80.35^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~269~^16.42^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09374~^~303~^0.22^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~309~^0.08^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~323~^0.12^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~ -~09374~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09374~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09374~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09379~^~203~^0.44^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~204~^0.14^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~205~^23.12^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09379~^~207~^0.25^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~255~^76.06^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~269~^21.58^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~09379~^~303~^0.84^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~309~^0.07^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~323~^0.26^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~ -~09379~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09379~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09379~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09383~^~203~^0.75^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~204~^0.04^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~205~^9.41^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09383~^~207~^0.29^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~255~^89.51^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~269~^8.25^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~09383~^~303~^0.27^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~309~^0.53^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~323~^0.15^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~ -~09383~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~09383~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09383~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09400~^~203~^0.10^3^8.0e-03^~1~^~A~^^^1^0.09^0.12^2^0.06^0.13^~2, 3~^~05/01/2008~ -~09400~^~204~^0.13^4^0.01^~1~^~A~^^^1^0.11^0.17^3^0.09^0.17^~2, 3~^~05/01/2008~ -~09400~^~205~^11.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~09400~^~207~^0.23^4^0.02^~1~^~A~^^^1^0.20^0.31^3^0.14^0.31^~2, 3~^~05/01/2008~ -~09400~^~210~^1.26^4^0.02^~1~^~A~^^^1^1.20^1.31^3^1.18^1.33^~2, 3~^~05/01/2008~ -~09400~^~211~^2.63^4^0.03^~1~^~A~^^^1^2.57^2.72^3^2.51^2.74^~2, 3~^~05/01/2008~ -~09400~^~212~^5.73^4^0.08^~1~^~A~^^^1^5.51^5.93^3^5.45^6.01^~2, 3~^~05/01/2008~ -~09400~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09400~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09400~^~255~^88.24^45^0.09^~1~^~A~^^^3^87.92^88.60^6^88.01^88.46^~4~^~05/01/2008~ -~09400~^~269~^9.62^4^0.12^~1~^~A~^^^1^9.35^9.86^3^9.21^10.03^~2, 3~^~05/01/2008~ -~09400~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~09400~^~303~^0.12^56^6.0e-03^~1~^~A~^^^17^0.00^0.26^18^0.10^0.12^~1, 2, 3~^~05/01/2008~ -~09400~^~309~^0.02^59^2.0e-03^~1~^~A~^^^17^0.00^0.09^16^0.01^0.02^~1, 2, 3~^~05/01/2008~ -~09400~^~323~^0.01^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09400~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09400~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09400~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~09401~^~203~^0.17^3^0.02^~1~^~A~^^^1^0.12^0.19^2^0.07^0.25^~2, 3~^~06/01/2008~ -~09401~^~204~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.04^0.16^~1, 2, 3~^~06/01/2008~ -~09401~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~09401~^~207~^0.24^3^0.05^~1~^~A~^^^1^0.16^0.34^2^0.01^0.46^~2, 3~^~06/01/2008~ -~09401~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09401~^~210~^1.13^3^0.26^~1~^~A~^^^1^0.79^1.66^2^-0.01^2.28^~2, 3~^~06/01/2008~ -~09401~^~211~^2.30^3^0.15^~1~^~A~^^^1^2.06^2.59^2^1.63^2.96^~2, 3~^~06/01/2008~ -~09401~^~212~^5.88^3^0.45^~1~^~A~^^^1^5.40^6.78^2^3.92^7.83^~2, 3~^~06/01/2008~ -~09401~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~214~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~06/01/2008~ -~09401~^~255~^88.22^3^0.92^~1~^~A~^^^1^86.38^89.24^2^84.25^92.19^~2, 3~^~06/01/2008~ -~09401~^~269~^9.39^3^0.86^~1~^~A~^^^1^8.33^11.11^2^5.65^13.12^~2, 3~^~06/01/2008~ -~09401~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~303~^0.23^10^0.02^~1~^~A~^^^4^0.06^0.36^3^0.14^0.32^~1, 2~^~06/01/2008~ -~09401~^~309~^0.03^11^0.01^~1~^~A~^^^4^0.00^0.12^3^-0.01^0.07^~1, 2~^~06/01/2008~ -~09401~^~323~^0.16^3^0.02^~1~^~A~^^^1^0.11^0.21^2^0.03^0.28^~2, 3~^~06/01/2008~ -~09401~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~344~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~06/01/2008~ -~09401~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~09401~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09402~^~203~^0.18^38^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~204~^0.18^39^0.04^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~205~^19.91^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09402~^~207~^0.14^39^8.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~255~^79.58^39^0.34^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~303~^0.35^43^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~309~^0.04^31^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09404~^~203~^0.50^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09404~^~207~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~255~^90.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09407~^~203~^0.21^3^0.02^~1~^~A~^^^1^0.19^0.25^2^0.11^0.29^~2, 3~^~12/01/2016~ -~09407~^~204~^0.51^3^0.08^~1~^~A~^^^1^0.42^0.68^2^0.14^0.87^~2, 3~^~12/01/2016~ -~09407~^~205~^11.93^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~207~^0.08^3^0.02^~1~^~A~^^^1^0.04^0.10^2^-0.01^0.17^~1, 2, 3~^~12/01/2016~ -~09407~^~210~^0.55^3^0.13^~1~^~A~^^^1^0.32^0.79^2^-0.03^1.13^~2, 3~^~12/01/2016~ -~09407~^~211~^5.23^3^0.12^~1~^~A~^^^1^5.06^5.48^2^4.67^5.78^~2, 3~^~12/01/2016~ -~09407~^~212~^5.38^3^0.24^~1~^~A~^^^1^4.90^5.62^2^4.34^6.41^~2, 3~^~12/01/2016~ -~09407~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09407~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09407~^~255~^87.28^3^0.15^~1~^~A~^^^1^87.09^87.58^2^86.61^87.93^~2, 3~^~12/01/2016~ -~09407~^~269~^11.16^3^0.09^~1~^~A~^^^1^11.00^11.31^2^10.77^11.54^~2, 3~^~12/01/2016~ -~09407~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09407~^~303~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^2^0.07^0.07^~1, 2, 3~^~12/01/2016~ -~09407~^~309~^0.02^3^1.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.03^~2, 3~^~12/01/2016~ -~09407~^~323~^0.61^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09408~^~203~^0.11^22^4.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~204~^0.01^22^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~205~^15.76^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09408~^~207~^0.10^22^1.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~255~^84.01^22^0.17^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~269~^15.16^0^^~4~^~BFZN~^~09262~^^^^^^^^^~03/01/2014~ -~09408~^~303~^0.26^8^0.03^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~309~^0.07^21^3.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09409~^~203~^0.36^79^0.03^~1~^~A~^^^3^0.23^0.41^2^0.22^0.49^~2~^~04/01/2005~ -~09409~^~204~^0.12^58^0.02^~1~^~A~^^^3^0.00^0.19^2^-5.0e-03^0.24^~2~^~04/01/2005~ -~09409~^~205~^12.87^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09409~^~207~^0.28^20^0.02^~1~^~A~^^^2^0.26^0.30^1^0.03^0.52^~2~^~04/01/2005~ -~09409~^~210~^1.53^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~211~^4.65^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~212~^3.81^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2006~ -~09409~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2006~ -~09409~^~255~^86.37^20^0.69^~1~^~A~^^^2^85.38^87.06^1^77.59^95.15^~2~^~04/01/2005~ -~09409~^~269~^9.98^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2006~ -~09409~^~303~^0.31^77^0.05^~1~^~A~^^^3^0.17^0.57^2^0.08^0.53^~2~^~04/01/2005~ -~09409~^~309~^0.11^20^1.0e-03^~1~^~A~^^^2^0.09^0.13^1^0.10^0.11^~2~^~04/01/2005~ -~09409~^~323~^0.02^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~ -~09409~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09409~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09409~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09410~^~203~^0.51^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~204~^0.37^3^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~205~^41.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09410~^~207~^1.12^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~255~^57.00^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~269~^38.83^0^^~4~^~BFZN~^~09017~^^^^^^^^^~06/01/2005~ -~09410~^~303~^0.91^4^0.19^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~309~^0.13^4^0.02^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09411~^~203~^0.14^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~204~^0.10^3^7.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~ -~09411~^~207~^0.32^4^0.01^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~255~^87.90^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~303~^0.26^4^0.05^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~309~^0.04^4^6.0e-03^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~ -~09412~^~203~^0.39^8^0.02^~1~^~A~^^^2^0.22^0.55^6^0.33^0.45^~2, 3~^~08/01/2012~ -~09412~^~204~^0.16^6^0.03^~1~^~A~^^^2^0.07^0.30^3^0.06^0.26^~1, 2, 3~^~08/01/2012~ -~09412~^~205~^15.01^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09412~^~207~^0.30^6^0.01^~1~^~A~^^^2^0.25^0.40^3^0.25^0.36^~2, 3~^~08/01/2012~ -~09412~^~210~^0.43^6^0.14^~1~^~A~^^^2^0.15^1.10^3^-0.03^0.89^~1, 2, 3~^~08/01/2012~ -~09412~^~211~^2.50^6^0.25^~1~^~A~^^^2^1.58^4.58^1^0.50^4.49^~2, 3~^~08/01/2012~ -~09412~^~212~^6.76^6^0.07^~1~^~A~^^^2^6.17^7.13^4^6.54^6.97^~2, 3~^~08/01/2012~ -~09412~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~255~^84.14^8^0.19^~1~^~A~^^^2^83.63^85.08^1^82.74^85.52^~2, 3~^~08/01/2012~ -~09412~^~269~^9.69^6^0.26^~1~^~A~^^^2^8.65^10.90^3^8.79^10.58^~2, 3~^~08/01/2012~ -~09412~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09412~^~303~^0.19^4^0.02^~1~^~A~^^^2^0.11^0.28^2^0.09^0.29^~2, 3~^~08/01/2012~ -~09412~^~309~^0.08^4^6.0e-03^~1~^~A~^^^2^0.07^0.10^2^0.04^0.11^~2, 3~^~08/01/2012~ -~09412~^~323~^0.12^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09413~^~203~^0.33^8^0.02^~1~^~A~^^^2^0.22^0.39^2^0.22^0.44^~2, 3~^~08/01/2012~ -~09413~^~204~^0.14^6^0.03^~1~^~A~^^^2^0.07^0.30^3^0.03^0.25^~1, 2, 3~^~08/01/2012~ -~09413~^~205~^14.94^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09413~^~207~^0.35^6^0.04^~1~^~A~^^^2^0.25^0.49^2^0.14^0.54^~2, 3~^~08/01/2012~ -~09413~^~210~^0.26^6^0.05^~1~^~A~^^^2^0.14^0.49^3^0.08^0.42^~1, 2, 3~^~08/01/2012~ -~09413~^~211~^2.74^6^0.26^~1~^~A~^^^2^1.79^4.92^1^0.38^5.09^~2, 3~^~08/01/2012~ -~09413~^~212~^6.48^6^0.09^~1~^~A~^^^2^5.94^6.86^4^6.22^6.73^~2, 3~^~08/01/2012~ -~09413~^~255~^84.24^8^0.12^~1~^~A~^^^2^83.13^84.68^1^83.39^85.08^~2, 3~^~08/01/2012~ -~09413~^~269~^9.54^6^0.38^~1~^~A~^^^2^8.47^11.68^1^6.48^12.59^~2, 3~^~08/01/2012~ -~09413~^~303~^0.19^3^4.0e-03^~1~^~A~^^^2^0.13^0.29^1^0.13^0.23^~2, 3~^~08/01/2012~ -~09413~^~309~^0.13^4^4.0e-03^~1~^~A~^^^2^0.11^0.16^2^0.11^0.15^~2, 3~^~08/01/2012~ -~09413~^~323~^0.12^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09414~^~203~^0.36^8^0.02^~1~^~A~^^^2^0.22^0.41^1^0.15^0.56^~2, 3~^~08/01/2012~ -~09414~^~204~^0.09^6^0.02^~1~^~A~^^^2^0.01^0.20^4^0.02^0.15^~1, 2, 3~^~08/01/2012~ -~09414~^~205~^16.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09414~^~207~^0.28^6^0.04^~1~^~A~^^^2^0.10^0.40^4^0.14^0.40^~2, 3~^~08/01/2012~ -~09414~^~210~^2.11^6^0.29^~1~^~A~^^^2^1.22^3.68^3^1.22^2.99^~2, 3~^~08/01/2012~ -~09414~^~211~^2.48^6^0.32^~1~^~A~^^^2^1.94^4.33^1^-1.29^6.26^~2, 3~^~08/01/2012~ -~09414~^~212~^5.64^6^0.19^~1~^~A~^^^2^5.13^6.24^3^4.97^6.30^~2, 3~^~08/01/2012~ -~09414~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09414~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09414~^~255~^83.18^8^0.28^~1~^~A~^^^2^81.63^83.96^5^82.45^83.89^~2, 3~^~08/01/2012~ -~09414~^~269~^10.23^6^0.54^~1~^~A~^^^2^9.18^11.79^3^8.48^11.98^~2, 3~^~08/01/2012~ -~09414~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09414~^~303~^0.15^3^2.0e-03^~1~^~A~^^^2^0.13^0.17^1^0.12^0.17^~2, 3~^~08/01/2012~ -~09414~^~309~^0.13^4^0.01^~1~^~A~^^^2^0.12^0.16^1^-0.01^0.26^~2, 3~^~08/01/2012~ -~09414~^~323~^0.12^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09415~^~203~^0.44^8^0.02^~1~^~A~^^^2^0.33^0.59^5^0.38^0.49^~2, 3~^~08/01/2012~ -~09415~^~204~^0.10^6^0.02^~1~^~A~^^^2^0.02^0.20^4^0.04^0.15^~1, 2, 3~^~08/01/2012~ -~09415~^~205~^15.79^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09415~^~207~^0.37^6^0.05^~1~^~A~^^^2^0.24^0.60^3^0.21^0.52^~2, 3~^~08/01/2012~ -~09415~^~210~^0.33^6^0.11^~1~^~A~^^^2^0.12^0.81^3^-0.01^0.68^~1, 2, 3~^~08/01/2012~ -~09415~^~211~^3.33^6^0.34^~1~^~A~^^^2^2.66^4.92^1^0.60^6.04^~2, 3~^~08/01/2012~ -~09415~^~212~^6.06^6^0.14^~1~^~A~^^^2^5.71^6.44^2^5.53^6.59^~2, 3~^~08/01/2012~ -~09415~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~255~^83.31^8^0.14^~1~^~A~^^^2^82.69^84.30^6^82.94^83.66^~2, 3~^~08/01/2012~ -~09415~^~269~^9.73^6^0.44^~1~^~A~^^^2^8.83^11.49^1^4.65^14.79^~2, 3~^~08/01/2012~ -~09415~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09415~^~303~^0.24^4^0.03^~1~^~A~^^^2^0.15^0.33^2^0.10^0.37^~2, 3~^~08/01/2012~ -~09415~^~309~^0.10^4^8.0e-03^~1~^~A~^^^2^0.08^0.12^1^0.04^0.16^~2, 3~^~08/01/2012~ -~09415~^~323~^0.12^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09416~^~203~^0.54^6^0.02^~1~^~A~^^^2^0.44^0.63^4^0.47^0.61^~2, 3~^~10/01/2016~ -~09416~^~204~^0.64^5^0.05^~1~^~A~^^^1^0.43^0.73^4^0.49^0.79^~2, 3~^~10/01/2016~ -~09416~^~205~^7.51^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09416~^~207~^0.29^6^0.01^~1~^~A~^^^2^0.19^0.35^4^0.26^0.31^~2, 3~^~10/01/2016~ -~09416~^~210~^1.31^4^0.20^~1~^~A~^^^2^0.69^1.70^2^0.44^2.17^~2, 3~^~10/01/2016~ -~09416~^~211~^3.07^4^0.12^~1~^~A~^^^2^2.60^3.52^2^2.55^3.59^~2, 3~^~10/01/2016~ -~09416~^~212~^3.23^4^0.13^~1~^~A~^^^2^2.90^3.66^2^2.64^3.81^~2, 3~^~10/01/2016~ -~09416~^~213~^0.03^4^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09416~^~214~^0.03^4^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09416~^~255~^91.00^6^0.03^~1~^~A~^^^2^90.85^91.20^4^90.91^91.09^~2, 3~^~10/01/2016~ -~09416~^~269~^7.69^4^0.39^~1~^~A~^^^2^7.23^8.79^2^6.00^9.36^~2, 3~^~10/01/2016~ -~09416~^~287~^0.03^4^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~10/01/2016~ -~09416~^~303~^0.08^6^2.0e-03^~1~^~A~^^^2^0.07^0.11^4^0.07^0.08^~2, 3~^~10/01/2016~ -~09416~^~309~^0.05^6^1.0e-03^~1~^~A~^^^2^0.04^0.08^4^0.04^0.05^~2, 3~^~10/01/2016~ -~09416~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09416~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09416~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09420~^~203~^0.36^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~204~^0.14^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~205~^23.94^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~09420~^~207~^0.28^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~255~^75.28^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~303~^0.29^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~309~^0.11^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09421~^~203~^1.81^2^^~1~^~A~^^^2^1.67^1.96^^^^^~04/01/2003~ -~09421~^~204~^0.15^2^^~1~^~A~^^^2^0.10^0.21^^^^~1~^~04/01/2003~ -~09421~^~205~^74.97^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09421~^~207~^1.74^2^^~1~^~A~^^^2^1.69^1.79^^^^^~04/01/2003~ -~09421~^~210~^0.53^2^^~1~^~A~^^^2^0.48^0.58^^^^^~04/01/2003~ -~09421~^~211~^33.68^2^^~1~^~A~^^^2^32.83^34.53^^^^^~04/01/2003~ -~09421~^~212~^31.95^2^^~1~^~A~^^^2^31.53^32.37^^^^^~04/01/2003~ -~09421~^~213~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2003~ -~09421~^~214~^0.30^2^^~1~^~A~^^^2^0.27^0.34^^^^^~04/01/2003~ -~09421~^~255~^21.32^2^^~1~^~A~^^^2^19.53^23.11^^^^^~04/01/2003~ -~09421~^~269~^66.47^2^^~1~^~A~^^^2^65.21^67.72^^^^^~04/01/2003~ -~09421~^~287~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2003~ -~09421~^~303~^0.90^2^^~1~^~A~^^^2^0.79^1.01^^^^^~04/01/2003~ -~09421~^~309~^0.44^2^^~1~^~A~^^^2^0.43^0.45^^^^^~04/01/2003~ -~09422~^~203~^1.47^2^^~1~^~A~^^^1^1.04^1.90^^^^^~08/01/2002~ -~09422~^~204~^5.33^2^^~1~^~A~^^^1^5.02^5.65^^^^^~08/01/2002~ -~09422~^~205~^27.09^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~09422~^~207~^1.12^2^^~1~^~A~^^^1^1.11^1.13^^^^^~08/01/2002~ -~09422~^~255~^64.99^2^^~1~^~A~^^^1^62.06^67.91^^^^^~08/01/2002~ -~09422~^~303~^0.43^2^^~1~^~A~^^^1^0.41^0.46^^^^^~08/01/2002~ -~09422~^~309~^0.28^2^^~1~^~A~^^^1^0.17^0.38^^^^^~08/01/2002~ -~09422~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~09423~^~203~^2.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~204~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~205~^65.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~207~^2.60^0^^~4~^~NC~^^^^^^^^^^~02/01/1997~ -~09423~^~211~^22.27^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~212~^13.87^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~255~^30.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~269~^39.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~303~^2.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09426~^~203~^0.34^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~204~^0.07^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~205~^82.74^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09426~^~207~^0.14^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~255~^16.70^0^^~4~^~T~^^^^^^^^^^~06/01/2005~ -~09426~^~269~^80.68^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~303~^0.17^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~309~^0.05^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~323~^0.04^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09426~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~09427~^~203~^1.50^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~204~^0.10^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~205~^17.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~09427~^~207~^0.90^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~210~^0.05^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2000~ -~09427~^~211~^4.50^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~212~^3.80^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2000~ -~09427~^~214~^0.20^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~255~^79.90^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~269~^8.55^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~09427~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2000~ -~09427~^~303~^1.61^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~309~^0.31^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~203~^2.30^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~204~^2.00^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~205~^23.90^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~09428~^~207~^0.40^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~210~^12.50^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~211~^1.10^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~212~^0.50^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2000~ -~09428~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2000~ -~09428~^~255~^71.40^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~269~^14.10^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~09428~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2000~ -~09428~^~303~^2.20^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~309~^0.43^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09429~^~203~^0.55^11^0.04^~1~^~A~^^^2^0.30^0.74^1^-0.02^1.11^~2~^~06/01/2003~ -~09429~^~204~^0.13^11^0.03^~1~^~A~^^^2^0.05^0.20^1^-0.29^0.54^~1, 2~^~06/01/2003~ -~09429~^~205~^11.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09429~^~207~^0.27^11^0.04^~1~^~A~^^^2^0.05^0.37^1^-0.35^0.89^~1, 2~^~06/01/2003~ -~09429~^~210~^4.59^3^0.72^~1~^~A~^^^1^3.51^5.98^2^1.45^7.73^~2, 3~^~06/01/2003~ -~09429~^~211~^1.76^3^0.22^~1~^~A~^^^1^1.31^2.03^2^0.78^2.73^~2, 3~^~06/01/2003~ -~09429~^~212~^1.94^3^0.32^~1~^~A~^^^1^1.30^2.37^2^0.53^3.33^~2, 3~^~06/01/2003~ -~09429~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2003~ -~09429~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2003~ -~09429~^~255~^87.24^11^2.46^~1~^~A~^^^2^82.50^91.57^1^55.97^118.50^~2~^~06/01/2003~ -~09429~^~269~^8.29^3^0.93^~1~^~A~^^^1^6.90^10.06^2^4.28^12.29^~2, 3~^~06/01/2003~ -~09429~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2003~ -~09429~^~303~^0.25^12^0.06^~1~^~A~^^^3^0.13^0.37^2^-0.02^0.52^~1, 2~^~06/01/2003~ -~09429~^~309~^0.08^11^8.0e-03^~1~^~A~^^^3^0.04^0.12^2^0.04^0.11^~1, 2~^~06/01/2003~ -~09430~^~203~^0.53^10^0.03^~1~^~A~^^^2^0.34^0.65^8^0.45^0.60^~2, 3~^~05/01/2003~ -~09430~^~204~^0.11^10^0.01^~1~^~A~^^^2^0.07^0.20^5^0.06^0.15^~1, 2, 3~^~05/01/2003~ -~09430~^~205~^13.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09430~^~207~^0.20^10^0.01^~1~^~A~^^^2^0.07^0.27^6^0.16^0.24^~1, 2, 3~^~05/01/2003~ -~09430~^~209~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~210~^6.47^10^0.53^~1~^~A~^^^2^2.59^7.53^6^5.13^7.80^~2, 3~^~05/01/2003~ -~09430~^~211~^1.70^10^0.14^~1~^~A~^^^2^1.35^2.82^4^1.29^2.10^~2, 3~^~05/01/2003~ -~09430~^~212~^2.15^10^0.13^~1~^~A~^^^2^1.73^3.17^4^1.77^2.53^~2, 3~^~05/01/2003~ -~09430~^~213~^0.00^10^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~214~^0.00^10^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~255~^85.66^10^0.39^~1~^~A~^^^2^84.55^87.87^8^84.75^86.56^~2, 3~^~05/01/2003~ -~09430~^~269~^10.32^10^0.39^~1~^~A~^^^2^8.19^11.45^8^9.42^11.22^~2, 3~^~05/01/2003~ -~09430~^~287~^0.00^10^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~303~^0.28^10^0.01^~1~^~A~^^^2^0.15^0.54^4^0.23^0.33^~1, 2, 3~^~05/01/2003~ -~09430~^~309~^0.12^8^8.0e-03^~1~^~A~^^^2^0.08^0.15^5^0.10^0.14^~2, 3~^~05/01/2003~ -~09430~^~323~^0.02^7^1.0e-03^~1~^~A~^^^2^0.02^0.03^2^0.01^0.02^~2, 3~^~05/01/2003~ -~09430~^~341~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~342~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~343~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~344~^0.02^7^4.0e-03^~1~^~A~^^^2^0.00^0.04^4^0.01^0.03^~2, 3~^~05/01/2003~ -~09430~^~345~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~346~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09430~^~347~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~09433~^~203~^0.85^5^0.01^~1~^~A~^^^2^0.81^0.91^3^0.79^0.90^~2, 3~^~05/01/2005~ -~09433~^~204~^0.15^5^0.02^~1~^~A~^^^2^0.07^0.32^3^0.06^0.23^~1, 2, 3~^~05/01/2005~ -~09433~^~205~^12.02^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09433~^~207~^0.40^5^3.0e-03^~1~^~A~^^^2^0.38^0.47^3^0.39^0.41^~2, 3~^~05/01/2005~ -~09433~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2005~ -~09433~^~210~^5.96^4^0.64^~1~^~A~^^^1^4.80^7.44^3^3.91^7.99^~2, 3~^~03/01/2005~ -~09433~^~211~^1.59^4^0.08^~1~^~A~^^^1^1.38^1.76^3^1.32^1.84^~2, 3~^~03/01/2005~ -~09433~^~212~^1.64^4^0.04^~1~^~A~^^^1^1.53^1.74^3^1.50^1.77^~2, 3~^~03/01/2005~ -~09433~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~255~^86.58^5^0.70^~1~^~A~^^^2^84.02^88.01^3^84.33^88.81^~2, 3~^~05/01/2005~ -~09433~^~269~^9.18^4^0.72^~1~^~A~^^^1^7.88^10.93^3^6.88^11.47^~2, 3~^~03/01/2005~ -~09433~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~303~^0.14^5^3.0e-03^~1~^~A~^^^2^0.10^0.24^3^0.13^0.15^~2, 3~^~05/01/2005~ -~09433~^~309~^0.06^5^2.0e-03^~1~^~A~^^^2^0.04^0.08^3^0.05^0.06^~2, 3~^~05/01/2005~ -~09433~^~323~^0.20^3^0.03^~1~^~A~^^^1^0.15^0.26^2^0.05^0.33^~2, 3~^~03/01/2005~ -~09433~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09433~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2005~ -~09434~^~203~^0.11^2^^~1~^~A~^^^1^0.09^0.12^1^^^^~04/01/2006~ -~09434~^~204~^0.17^2^^~1~^~A~^^^1^0.06^0.28^1^^^~1~^~04/01/2006~ -~09434~^~205~^14.93^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09434~^~207~^0.08^2^^~1~^~A~^^^1^0.05^0.10^1^^^^~04/01/2006~ -~09434~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~211~^6.37^2^^~1~^~A~^^^1^5.75^6.98^1^^^^~04/01/2006~ -~09434~^~212~^5.94^2^^~1~^~A~^^^1^5.93^5.96^1^^^^~04/01/2006~ -~09434~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~214~^0.76^2^^~1~^~A~^^^1^0.30^1.22^1^^^^~04/01/2006~ -~09434~^~255~^84.72^2^^~1~^~A~^^^1^83.93^85.50^1^^^^~04/01/2006~ -~09434~^~269~^13.07^2^^~1~^~A~^^^1^12.90^13.24^1^^^^~04/01/2006~ -~09434~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~303~^0.36^2^^~1~^~A~^^^1^0.19^0.53^1^^^^~04/01/2006~ -~09434~^~309~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~04/01/2006~ -~09434~^~323~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2006~ -~09434~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2006~ -~09434~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~09434~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09434~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09435~^~203~^0.09^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~204~^0.06^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~205~^16.25^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09435~^~207~^0.09^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09435~^~211~^5.65^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~212~^5.76^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~214~^1.47^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~255~^83.51^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~269~^12.95^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~303~^0.38^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09435~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~323~^0.05^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09436~^~203~^0.11^2^^~1~^~A~^^^1^0.09^0.12^1^^^^~06/01/2006~ -~09436~^~204~^0.06^2^^~1~^~A~^^^1^0.06^0.06^^^^~1~^~06/01/2006~ -~09436~^~205~^13.12^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09436~^~207~^0.08^2^^~1~^~A~^^^1^0.06^0.10^1^^^^~06/01/2006~ -~09436~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~210~^1.02^2^^~1~^~A~^^^1^0.26^1.78^1^^^^~06/01/2006~ -~09436~^~211~^5.31^2^^~1~^~A~^^^1^5.21^5.41^1^^^^~06/01/2006~ -~09436~^~212~^5.56^2^^~1~^~A~^^^1^5.07^6.05^1^^^^~06/01/2006~ -~09436~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~214~^0.56^2^^~1~^~A~^^^1^0.00^1.12^1^^^~1~^~06/01/2006~ -~09436~^~255~^86.63^2^^~1~^~A~^^^1^86.39^86.87^1^^^^~06/01/2006~ -~09436~^~269~^12.45^2^^~1~^~A~^^^1^12.06^12.84^1^^^^~06/01/2006~ -~09436~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~303~^0.36^2^^~1~^~A~^^^1^0.36^0.36^1^^^^~06/01/2006~ -~09436~^~309~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~06/01/2006~ -~09436~^~323~^0.21^2^^~1~^~A~^^^1^0.21^0.21^^^^^~06/01/2006~ -~09436~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~342~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~06/01/2006~ -~09436~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~06/01/2006~ -~09436~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09436~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09436~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~09437~^~203~^0.09^2^^~1~^~A~^^^1^0.09^0.09^^^^^~04/01/2006~ -~09437~^~204~^0.12^2^^~1~^~A~^^^1^0.06^0.18^1^^^~1~^~04/01/2006~ -~09437~^~205~^14.73^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~09437~^~207~^0.09^2^^~1~^~A~^^^1^0.08^0.11^1^^^^~04/01/2006~ -~09437~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~210~^0.13^2^^~1~^~A~^^^1^0.07^0.19^1^^^~1~^~04/01/2006~ -~09437~^~211~^5.92^2^^~1~^~A~^^^1^5.56^6.29^1^^^^~04/01/2006~ -~09437~^~212~^6.07^2^^~1~^~A~^^^1^5.66^6.49^1^^^^~04/01/2006~ -~09437~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~214~^0.57^2^^~1~^~A~^^^1^0.00^1.14^1^^^~1~^~04/01/2006~ -~09437~^~255~^84.97^2^^~1~^~A~^^^1^84.25^85.68^1^^^^~04/01/2006~ -~09437~^~269~^12.70^2^^~1~^~A~^^^1^12.43^12.97^1^^^^~04/01/2006~ -~09437~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~303~^0.75^2^^~1~^~A~^^^1^0.46^1.03^1^^^^~04/01/2006~ -~09437~^~309~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2006~ -~09437~^~323~^0.12^2^^~1~^~A~^^^1^0.07^0.17^1^^^^~04/01/2006~ -~09437~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~342~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~04/01/2006~ -~09437~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~04/01/2006~ -~09437~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~09437~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09442~^~203~^0.15^3^0.02^~1~^~A~^^^1^0.12^0.19^2^0.05^0.23^~2, 3~^~06/01/2008~ -~09442~^~204~^0.29^3^9.0e-03^~1~^~A~^^^1^0.28^0.31^2^0.25^0.33^~2, 3~^~06/01/2008~ -~09442~^~205~^13.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09442~^~207~^0.49^3^7.0e-03^~1~^~A~^^^1^0.48^0.50^2^0.45^0.51^~2, 3~^~06/01/2008~ -~09442~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~211~^6.28^3^0.09^~1~^~A~^^^1^6.11^6.44^2^5.87^6.69^~2, 3~^~06/01/2008~ -~09442~^~212~^6.37^3^0.03^~1~^~A~^^^1^6.33^6.45^2^6.20^6.53^~2, 3~^~06/01/2008~ -~09442~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~255~^85.95^3^0.07^~1~^~A~^^^1^85.81^86.05^2^85.64^86.25^~2, 3~^~06/01/2008~ -~09442~^~269~^12.65^3^0.06^~1~^~A~^^^1^12.56^12.78^2^12.37^12.93^~2, 3~^~06/01/2008~ -~09442~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~303~^0.10^3^0.02^~1~^~A~^^^1^0.07^0.14^2^8.0e-03^0.19^~2, 3~^~06/01/2008~ -~09442~^~309~^0.09^3^5.0e-03^~1~^~A~^^^1^0.08^0.10^2^0.06^0.11^~2, 3~^~06/01/2008~ -~09442~^~323~^0.38^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09442~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~09443~^~203~^0.16^2^^~1~^~A~^^^1^0.15^0.16^1^^^^~06/01/2008~ -~09443~^~204~^0.12^2^^~1~^~A~^^^1^0.11^0.12^1^^^^~06/01/2008~ -~09443~^~205~^12.46^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~09443~^~207~^0.22^2^^~1~^~A~^^^1^0.21^0.22^1^^^^~06/01/2008~ -~09443~^~210~^0.74^2^^~1~^~A~^^^1^0.65^0.83^1^^^^~06/01/2008~ -~09443~^~211~^3.72^2^^~1~^~A~^^^1^3.52^3.92^1^^^^~06/01/2008~ -~09443~^~212~^6.46^2^^~1~^~A~^^^1^6.40^6.51^1^^^^~06/01/2008~ -~09443~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2008~ -~09443~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2008~ -~09443~^~255~^87.05^2^^~1~^~A~^^^1^87.01^87.10^1^^^^~06/01/2008~ -~09443~^~269~^10.92^2^^~1~^~A~^^^1^10.87^10.97^1^^^^~06/01/2008~ -~09443~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2008~ -~09443~^~303~^0.11^2^^~1~^~A~^^^1^0.10^0.12^1^^^^~06/01/2008~ -~09443~^~309~^0.05^2^^~1~^~A~^^^1^0.05^0.05^1^^^^~06/01/2008~ -~09443~^~323~^0.01^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~09443~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09444~^~203~^0.17^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~204~^0.12^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~205~^12.96^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~207~^0.31^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~210~^0.55^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~211~^3.50^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~212~^5.89^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09444~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09444~^~255~^86.44^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~269~^9.95^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~09444~^~303~^0.14^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~309~^0.06^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~323~^0.01^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~09446~^~203~^1.50^3^0.24^~1~^~A~^^^2^1.26^1.75^1^-1.61^4.62^~2~^~07/01/2009~ -~09446~^~204~^11.81^3^0.11^~1~^~A~^^^2^11.54^12.31^1^10.40^13.21^~2~^~07/01/2009~ -~09446~^~205~^49.17^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~207~^1.44^3^0.09^~1~^~A~^^^2^1.35^1.66^1^0.27^2.61^~2~^~07/01/2009~ -~09446~^~209~^40.70^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~210~^2.36^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~211~^0.61^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~212~^0.66^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~255~^36.08^3^2.35^~1~^~A~^^^2^33.72^39.08^1^6.10^66.04^~2~^~07/01/2009~ -~09446~^~269~^3.63^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~303~^0.67^2^^~1~^~A~^^^2^0.47^0.86^1^^^^~07/01/2009~ -~09446~^~309~^0.23^3^8.0e-03^~1~^~A~^^^2^0.23^0.26^1^0.12^0.34^~2~^~07/01/2009~ -~09447~^~203~^1.42^3^0.19^~1~^~A~^^^1^1.19^1.81^2^0.56^2.27^~2, 3~^~07/01/2009~ -~09447~^~204~^7.51^3^1.67^~1~^~A~^^^1^5.20^10.76^2^0.31^14.70^~2, 3~^~07/01/2009~ -~09447~^~205~^40.77^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~207~^1.26^3^0.08^~1~^~A~^^^1^1.13^1.40^2^0.92^1.60^~2, 3~^~07/01/2009~ -~09447~^~209~^13.27^3^2.51^~1~^~A~^^^1^8.40^16.80^2^2.44^24.08^~2, 3~^~07/01/2009~ -~09447~^~210~^11.93^3^3.95^~1~^~A~^^^1^5.19^18.89^2^-5.09^28.95^~2, 3~^~07/01/2009~ -~09447~^~211~^4.97^3^1.06^~1~^~A~^^^1^3.45^7.03^2^0.37^9.56^~2, 3~^~07/01/2009~ -~09447~^~212~^4.86^3^1.16^~1~^~A~^^^1^3.02^7.03^2^-0.17^9.89^~2, 3~^~07/01/2009~ -~09447~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~255~^49.04^3^4.02^~1~^~A~^^^1^41.26^54.74^2^31.71^66.37^~2, 3~^~07/01/2009~ -~09447~^~269~^21.76^3^5.71^~1~^~A~^^^1^14.15^32.95^2^-2.82^46.34^~2, 3~^~07/01/2009~ -~09447~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~303~^0.62^3^0.23^~1~^~A~^^^1^0.37^1.08^2^-0.38^1.62^~2, 3~^~07/01/2009~ -~09447~^~309~^0.24^3^0.03^~1~^~A~^^^1^0.19^0.30^2^0.09^0.38^~2, 3~^~07/01/2009~ -~09447~^~323~^1.10^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~342~^1.06^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~343~^0.53^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~344~^0.11^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09447~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09448~^~203~^0.56^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~204~^1.28^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~205~^22.79^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09448~^~207~^0.52^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~211~^7.41^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~212~^8.18^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~255~^74.85^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~269~^15.66^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~303~^0.37^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~309~^0.06^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09449~^~203~^0.66^5^0.02^~1~^~A~^^^1^0.63^0.75^4^0.59^0.73^~2, 3~^~07/01/2010~ -~09449~^~204~^1.16^5^0.07^~1~^~A~^^^1^0.93^1.36^4^0.95^1.37^~2, 3~^~07/01/2010~ -~09449~^~205~^16.97^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09449~^~207~^0.57^5^0.04^~1~^~A~^^^1^0.41^0.66^4^0.44^0.69^~2, 3~^~07/01/2010~ -~09449~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~211~^3.58^5^0.17^~1~^~A~^^^1^3.19^4.09^4^3.09^4.06^~2, 3~^~07/01/2010~ -~09449~^~212~^4.73^5^0.25^~1~^~A~^^^1^4.11^5.50^4^4.02^5.42^~2, 3~^~07/01/2010~ -~09449~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~255~^80.64^5^0.45^~1~^~A~^^^1^79.00^81.66^4^79.36^81.91^~2, 3~^~07/01/2010~ -~09449~^~269~^8.31^5^0.41^~1~^~A~^^^1^7.30^9.40^4^7.15^9.46^~2, 3~^~07/01/2010~ -~09449~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~303~^0.38^5^0.03^~1~^~A~^^^1^0.32^0.51^4^0.28^0.47^~2, 3~^~07/01/2010~ -~09449~^~309~^0.09^5^7.0e-03^~1~^~A~^^^1^0.07^0.11^4^0.07^0.11^~2, 3~^~07/01/2010~ -~09449~^~323~^1.25^3^0.12^~1~^~A~^^^1^0.99^1.39^2^0.69^1.80^~2, 3~^~07/01/2010~ -~09449~^~341~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.05^~2, 3~^~07/01/2010~ -~09449~^~342~^1.88^3^0.15^~1~^~A~^^^1^1.58^2.09^2^1.21^2.53^~2, 3~^~07/01/2010~ -~09449~^~343~^0.29^3^0.01^~1~^~A~^^^1^0.27^0.32^2^0.23^0.35^~2, 3~^~07/01/2010~ -~09449~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.02^0.05^2^-0.01^0.07^~2, 3~^~07/01/2010~ -~09449~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~346~^0.05^3^0.01^~1~^~A~^^^1^0.04^0.07^2^8.0e-03^0.09^~2, 3~^~07/01/2010~ -~09449~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~09450~^~203~^0.44^3^0.07^~1~^~A~^^^1^0.31^0.56^2^0.12^0.74^~2, 3~^~04/01/2010~ -~09450~^~204~^0.22^3^0.01^~1~^~A~^^^1^0.21^0.24^2^0.17^0.26^~2, 3~^~04/01/2010~ -~09450~^~205~^5.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09450~^~207~^0.39^3^0.03^~1~^~A~^^^1^0.35^0.45^2^0.25^0.52^~2, 3~^~04/01/2010~ -~09450~^~210~^1.72^3^0.91^~1~^~A~^^^1^0.70^3.54^2^-2.21^5.64^~2, 3~^~04/01/2010~ -~09450~^~211~^0.99^3^0.19^~1~^~A~^^^1^0.71^1.35^2^0.17^1.80^~2, 3~^~04/01/2010~ -~09450~^~212~^1.04^3^0.27^~1~^~A~^^^1^0.71^1.58^2^-0.13^2.21^~2, 3~^~04/01/2010~ -~09450~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~09450~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~09450~^~255~^93.05^3^0.41^~1~^~A~^^^1^92.23^93.48^2^91.28^94.82^~2, 3~^~04/01/2010~ -~09450~^~269~^3.74^3^0.67^~1~^~A~^^^1^2.64^4.96^2^0.85^6.63^~2, 3~^~04/01/2010~ -~09450~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~09450~^~303~^0.35^3^0.10^~1~^~A~^^^1^0.15^0.47^2^-0.09^0.78^~2, 3~^~04/01/2010~ -~09450~^~309~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.03^0.15^~2, 3~^~04/01/2010~ -~09450~^~323~^0.75^2^^~1~^~A~^^^1^0.53^0.97^1^^^^~04/01/2010~ -~09450~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09450~^~342~^0.20^2^^~1~^~A~^^^1^0.09^0.31^1^^^^~04/01/2010~ -~09450~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09450~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2010~ -~09450~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09450~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2010~ -~09450~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~09451~^~203~^1.78^2^^~1~^~A~^^^1^1.36^2.19^1^^^^~07/01/2009~ -~09451~^~204~^1.26^2^^~1~^~A~^^^1^1.17^1.36^1^^^^~07/01/2009~ -~09451~^~205~^7.56^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09451~^~207~^0.44^2^^~1~^~A~^^^1^0.43^0.45^1^^^^~07/01/2009~ -~09451~^~255~^88.97^2^^~1~^~A~^^^1^87.88^90.05^1^^^^~07/01/2009~ -~09451~^~303~^1.13^2^^~1~^~A~^^^1^1.01^1.25^1^^^^~07/01/2009~ -~09451~^~309~^0.48^2^^~1~^~A~^^^1^0.45^0.50^1^^^^~07/01/2009~ -~09452~^~203~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~204~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~205~^12.20^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~207~^0.35^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~255~^87.24^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~269~^10.57^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~09452~^~303~^0.18^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~309~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09500~^~203~^0.27^6^0.01^~1~^~A~^^^2^0.22^0.32^1^0.14^0.39^~2, 3~^~08/01/2012~ -~09500~^~204~^0.20^12^0.01^~1~^~A~^^^3^0.12^0.25^4^0.17^0.22^~2, 3~^~08/01/2012~ -~09500~^~205~^14.06^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09500~^~207~^0.14^6^0.02^~1~^~A~^^^2^0.07^0.19^3^0.06^0.21^~1, 2, 3~^~08/01/2012~ -~09500~^~209~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^~1~^~08/01/2012~ -~09500~^~210~^1.86^6^0.09^~1~^~A~^^^2^0.80^2.62^3^1.57^2.15^~2, 3~^~08/01/2012~ -~09500~^~211~^2.71^6^0.05^~1~^~A~^^^2^2.45^3.18^2^2.45^2.95^~2, 3~^~08/01/2012~ -~09500~^~212~^5.90^6^0.11^~1~^~A~^^^2^5.55^6.16^3^5.48^6.32^~2, 3~^~08/01/2012~ -~09500~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~255~^85.33^13^0.34^~1~^~A~^^^3^82.39^86.91^7^84.51^86.15^~2, 3~^~08/01/2012~ -~09500~^~269~^10.48^6^0.23^~1~^~A~^^^2^9.25^11.30^4^9.81^11.13^~2, 3~^~08/01/2012~ -~09500~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09500~^~303~^0.11^3^2.0e-03^~1~^~A~^^^2^0.09^0.12^1^0.08^0.13^~2, 3~^~08/01/2012~ -~09500~^~309~^0.04^5^6.0e-03^~1~^~A~^^^3^0.02^0.07^1^-9.0e-03^0.08^~1, 2, 3~^~08/01/2012~ -~09500~^~323~^0.24^6^0.05^~1~^~A~^^^1^0.08^0.38^5^0.10^0.38^~2, 3~^~08/01/2012~ -~09500~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~08/01/2012~ -~09500~^~342~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~08/01/2012~ -~09500~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~08/01/2012~ -~09501~^~203~^0.28^6^0.04^~1~^~A~^^^2^0.17^0.44^3^0.14^0.41^~2, 3~^~08/01/2012~ -~09501~^~204~^0.15^6^0.01^~1~^~A~^^^2^0.07^0.23^4^0.10^0.20^~1, 2, 3~^~08/01/2012~ -~09501~^~205~^13.60^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09501~^~207~^0.16^6^0.03^~1~^~A~^^^2^0.07^0.28^3^0.06^0.25^~1, 2, 3~^~08/01/2012~ -~09501~^~209~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^~1~^~08/01/2012~ -~09501~^~210~^2.07^6^0.10^~1~^~A~^^^2^0.78^2.95^3^1.76^2.37^~2, 3~^~08/01/2012~ -~09501~^~211~^1.87^6^0.05^~1~^~A~^^^2^1.62^2.38^1^1.42^2.30^~2, 3~^~08/01/2012~ -~09501~^~212~^6.10^6^0.08^~1~^~A~^^^2^5.61^6.63^3^5.83^6.37^~2, 3~^~08/01/2012~ -~09501~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~255~^85.81^7^0.18^~1~^~A~^^^2^84.77^87.52^4^85.27^86.33^~2, 3~^~08/01/2012~ -~09501~^~269~^10.04^6^0.14^~1~^~A~^^^2^8.77^11.26^3^9.60^10.48^~2, 3~^~08/01/2012~ -~09501~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09501~^~303~^0.13^3^4.0e-03^~1~^~A~^^^2^0.10^0.18^1^0.08^0.18^~2, 3~^~08/01/2012~ -~09501~^~309~^0.04^5^8.0e-03^~1~^~A~^^^3^0.01^0.07^1^-0.04^0.12^~2, 3~^~08/01/2012~ -~09501~^~323~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09502~^~203~^0.44^8^0.02^~1~^~A~^^^2^0.32^0.57^6^0.38^0.49^~2, 3~^~08/01/2012~ -~09502~^~204~^0.19^6^0.02^~1~^~A~^^^2^0.13^0.31^1^-0.02^0.41^~2, 3~^~08/01/2012~ -~09502~^~205~^13.61^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09502~^~207~^0.29^6^0.03^~1~^~A~^^^2^0.17^0.48^3^0.19^0.39^~2, 3~^~08/01/2012~ -~09502~^~209~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^~1~^~08/01/2012~ -~09502~^~210~^1.93^6^0.11^~1~^~A~^^^2^1.21^2.68^3^1.58^2.28^~2, 3~^~08/01/2012~ -~09502~^~211~^2.66^6^0.05^~1~^~A~^^^2^2.47^2.86^4^2.49^2.82^~2, 3~^~08/01/2012~ -~09502~^~212~^5.00^6^0.11^~1~^~A~^^^2^4.63^5.40^3^4.62^5.37^~2, 3~^~08/01/2012~ -~09502~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~214~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~255~^85.46^7^0.21^~1~^~A~^^^2^84.25^86.83^5^84.90^86.02^~2, 3~^~08/01/2012~ -~09502~^~269~^9.59^6^0.17^~1~^~A~^^^2^8.79^10.57^3^9.06^10.12^~2, 3~^~08/01/2012~ -~09502~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09502~^~303~^0.15^3^3.0e-03^~1~^~A~^^^2^0.14^0.17^1^0.12^0.18^~2, 3~^~08/01/2012~ -~09502~^~309~^0.04^5^1.0e-03^~1~^~A~^^^3^0.03^0.04^1^0.02^0.05^~1, 2, 3~^~08/01/2012~ -~09502~^~323~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09503~^~203~^0.25^4^0.02^~1~^~A~^^^2^0.22^0.32^1^-0.07^0.56^~2, 3~^~08/01/2012~ -~09503~^~204~^0.12^4^0.02^~1~^~A~^^^2^0.07^0.17^2^-0.01^0.24^~1, 2, 3~^~08/01/2012~ -~09503~^~205~^13.68^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09503~^~207~^0.20^4^3.0e-03^~1~^~A~^^^2^0.16^0.23^2^0.18^0.21^~2, 3~^~08/01/2012~ -~09503~^~209~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^~1~^~08/01/2012~ -~09503~^~210~^2.78^4^0.04^~1~^~A~^^^2^2.10^3.53^1^2.27^3.28^~2, 3~^~08/01/2012~ -~09503~^~211~^1.66^4^0.02^~1~^~A~^^^2^1.45^1.86^2^1.54^1.76^~2, 3~^~08/01/2012~ -~09503~^~212~^5.93^4^0.07^~1~^~A~^^^2^5.39^6.37^1^5.24^6.62^~2, 3~^~08/01/2012~ -~09503~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09503~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09503~^~255~^85.76^4^0.05^~1~^~A~^^^2^85.06^86.36^1^85.10^86.41^~2, 3~^~08/01/2012~ -~09503~^~269~^10.37^4^0.05^~1~^~A~^^^2^9.39^11.26^1^9.75^10.97^~2, 3~^~08/01/2012~ -~09503~^~287~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09503~^~303~^0.12^2^^~1~^~A~^^^1^0.12^0.12^1^^^^~08/01/2012~ -~09503~^~309~^0.05^4^0.01^~1~^~A~^^^2^0.04^0.08^1^-0.03^0.13^~2, 3~^~08/01/2012~ -~09503~^~323~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09504~^~203~^0.20^4^8.0e-03^~1~^~A~^^^2^0.17^0.22^1^0.10^0.30^~2, 3~^~08/01/2012~ -~09504~^~204~^0.18^4^0.04^~1~^~A~^^^2^0.07^0.27^1^-0.42^0.79^~1, 2, 3~^~08/01/2012~ -~09504~^~205~^15.22^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~09504~^~207~^0.24^4^0.05^~1~^~A~^^^2^0.15^0.34^1^-0.09^0.56^~2, 3~^~08/01/2012~ -~09504~^~209~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^~1~^~08/01/2012~ -~09504~^~210~^2.21^3^0.02^~1~^~A~^^^2^1.35^2.67^1^1.94^2.47^~2, 3~^~08/01/2012~ -~09504~^~211~^3.00^3^0.08^~1~^~A~^^^2^2.55^3.66^1^1.95^4.04^~2, 3~^~08/01/2012~ -~09504~^~212~^6.47^3^0.06^~1~^~A~^^^2^6.37^6.55^1^5.70^7.23^~2, 3~^~08/01/2012~ -~09504~^~213~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09504~^~214~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09504~^~255~^84.16^4^0.47^~1~^~A~^^^2^83.55^85.66^1^78.24^90.07^~2, 3~^~08/01/2012~ -~09504~^~269~^11.68^3^0.16^~1~^~A~^^^2^11.50^12.01^1^9.60^13.75^~2, 3~^~08/01/2012~ -~09504~^~287~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~09504~^~303~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~08/01/2012~ -~09504~^~309~^0.04^4^0.01^~1~^~A~^^^2^0.03^0.08^1^-0.10^0.18^~2, 3~^~08/01/2012~ -~09504~^~323~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~ -~09506~^~203~^0.68^20^0.03^~1~^~A~^^^3^0.15^0.94^6^0.58^0.76^~2, 3~^~03/01/2014~ -~09506~^~204~^0.12^17^0.01^~1~^~A~^^^3^0.07^0.25^5^0.09^0.15^~2, 3~^~03/01/2014~ -~09506~^~205~^11.54^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~207~^0.43^6^0.03^~1~^~A~^^^1^0.30^0.50^5^0.35^0.50^~2, 3~^~03/01/2014~ -~09506~^~210~^4.01^21^0.47^~1~^~A~^^^4^0.07^5.07^3^2.49^5.52^~1, 2~^~03/01/2014~ -~09506~^~211~^2.08^21^0.11^~1~^~A~^^^4^1.51^3.71^3^1.71^2.43^~2~^~03/01/2014~ -~09506~^~212~^2.23^21^0.12^~1~^~A~^^^4^1.71^3.99^3^1.84^2.60^~2~^~03/01/2014~ -~09506~^~213~^0.00^20^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~214~^0.00^15^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~255~^87.22^24^1.18^~1~^~A~^^^5^82.90^90.64^4^83.92^90.52^~2~^~03/01/2014~ -~09506~^~269~^8.31^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~09506~^~287~^0.00^14^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~09506~^~303~^0.13^32^0.02^~1~^~A~^^^6^0.07^0.30^5^0.07^0.18^~1, 2~^~03/01/2014~ -~09506~^~309~^0.07^32^0.01^~1~^~A~^^^6^0.02^0.52^5^0.02^0.11^~1, 2~^~03/01/2014~ -~09506~^~323~^1.13^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~ -~09506~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09506~^~573~^1.13^0^^~4~^~NR~^^^^^^^^^^~03/01/2014~ -~09506~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~09507~^~203~^0.42^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~205~^15.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~207~^1.12^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09507~^~255~^83.46^0^^~4~^~BFZN~^~09176~^^^^^^^^^~04/01/2014~ -~09507~^~269~^12.50^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~303~^0.15^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~203~^0.60^2^^~1~^~A~^^^1^0.59^0.62^1^^^^~06/01/2015~ -~09508~^~204~^0.26^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~205~^12.53^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~207~^0.36^2^^~1~^~A~^^^1^0.35^0.37^1^^^^~06/01/2015~ -~09508~^~210~^2.85^2^^~1~^~A~^^^1^2.60^3.10^1^^^^~06/01/2015~ -~09508~^~211~^2.75^2^^~1~^~A~^^^1^2.60^2.90^1^^^^~06/01/2015~ -~09508~^~212~^5.55^2^^~1~^~A~^^^1^5.50^5.60^1^^^^~06/01/2015~ -~09508~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09508~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09508~^~255~^86.25^2^^~1~^~A~^^^1^86.20^86.30^1^^^^~06/01/2015~ -~09508~^~269~^11.15^2^^~1~^~A~^^^1^11.10^11.20^1^^^^~06/01/2015~ -~09508~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09508~^~303~^0.42^2^^~1~^~A~^^^1^0.40^0.44^1^^^^~06/01/2015~ -~09508~^~309~^0.06^2^^~1~^~A~^^^1^0.06^0.06^1^^^^~06/01/2015~ -~09508~^~323~^0.30^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~418~^0.63^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09508~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09510~^~203~^0.36^58^0.05^~1~^~A~^^^2^0.23^0.41^1^-0.30^1.02^~2~^~04/01/2014~ -~09510~^~204~^0.14^38^0.03^~1~^~A~^^^2^0.02^0.19^1^-0.34^0.61^~2~^~04/01/2014~ -~09510~^~205~^12.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09510~^~207~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~210~^1.53^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~211~^4.65^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~212~^3.81^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09510~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09510~^~255~^87.06^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~269~^9.98^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09510~^~303~^0.26^58^0.02^~1~^~A~^^^2^0.17^0.57^1^3.0e-03^0.51^~2~^~04/01/2014~ -~09510~^~309~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~323~^0.63^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09510~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09510~^~573~^0.61^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~09510~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09511~^~203~^0.42^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~205~^16.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~207~^1.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09511~^~255~^81.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~09511~^~269~^12.08^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~303~^0.15^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~323~^5.63^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~203~^0.37^5^0.01^~1~^~A~^^^2^0.36^0.42^1^0.22^0.52^~2~^~04/01/2014~ -~09512~^~204~^0.13^7^0.07^~1~^~A~^^^3^0.00^0.34^2^-0.20^0.46^~2~^~04/01/2014~ -~09512~^~205~^14.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09512~^~207~^0.22^4^0.05^~1~^~A~^^^2^0.11^0.28^1^-0.51^0.95^~2~^~04/01/2014~ -~09512~^~210~^0.04^5^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~04/01/2014~ -~09512~^~211~^6.81^5^0.02^~1~^~A~^^^2^6.72^6.87^1^6.47^7.13^~2~^~04/01/2014~ -~09512~^~212~^7.36^5^0.06^~1~^~A~^^^2^7.20^7.69^1^6.56^8.15^~2~^~04/01/2014~ -~09512~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~04/01/2014~ -~09512~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~04/01/2014~ -~09512~^~255~^84.51^5^0.88^~1~^~A~^^^2^83.62^85.78^1^73.23^95.79^~2~^~04/01/2014~ -~09512~^~269~^14.20^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~09512~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09512~^~303~^0.25^13^0.07^~1~^~A~^^^5^0.09^1.00^4^0.05^0.44^~2~^~04/01/2014~ -~09512~^~309~^0.07^10^9.0e-03^~1~^~A~^^^4^0.05^0.13^3^0.04^0.10^~2~^~04/01/2014~ -~09512~^~323~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2014~ -~09512~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2014~ -~09512~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2014~ -~09512~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2014~ -~09512~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~09512~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09512~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~09513~^~203~^0.63^2^^~1~^~A~^^^1^0.63^0.63^^^^^~06/01/2015~ -~09513~^~204~^0.36^2^^~1~^~A~^^^1^0.35^0.38^1^^^^~06/01/2015~ -~09513~^~205~^11.51^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~207~^0.28^2^^~1~^~A~^^^1^0.27^0.29^1^^^^~06/01/2015~ -~09513~^~210~^3.61^2^^~1~^~A~^^^1^3.61^3.62^1^^^^~06/01/2015~ -~09513~^~211~^2.25^2^^~1~^~A~^^^1^2.25^2.26^1^^^^~06/01/2015~ -~09513~^~212~^4.29^2^^~1~^~A~^^^1^4.28^4.30^1^^^^~06/01/2015~ -~09513~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09513~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09513~^~255~^87.22^2^^~1~^~A~^^^1^87.14^87.30^1^^^^~06/01/2015~ -~09513~^~269~^10.16^2^^~1~^~A~^^^1^10.15^10.17^1^^^^~06/01/2015~ -~09513~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09513~^~303~^0.39^2^^~1~^~A~^^^1^0.38^0.41^1^^^^~06/01/2015~ -~09513~^~309~^0.06^2^^~1~^~A~^^^1^0.06^0.06^1^^^^~06/01/2015~ -~09513~^~323~^0.42^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09513~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09513~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09514~^~203~^0.63^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~204~^0.02^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~205~^10.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~207~^0.45^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~09514~^~255~^88.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~09514~^~269~^9.30^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~303~^0.21^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~323~^5.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~418~^0.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09515~^~203~^0.63^3^0.00^~1~^~A~^^^1^0.63^0.63^^^^~2, 3~^~06/01/2015~ -~09515~^~204~^0.33^3^0.03^~1~^~A~^^^1^0.26^0.37^2^0.17^0.48^~2, 3~^~06/01/2015~ -~09515~^~205~^13.04^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~207~^0.39^3^0.03^~1~^~A~^^^1^0.33^0.42^2^0.26^0.51^~2, 3~^~06/01/2015~ -~09515~^~210~^4.06^2^^~1~^~A~^^^1^4.03^4.10^1^^^^~06/01/2015~ -~09515~^~211~^3.18^2^^~1~^~A~^^^1^3.12^3.24^1^^^^~06/01/2015~ -~09515~^~212~^4.22^2^^~1~^~A~^^^1^4.22^4.22^^^^^~06/01/2015~ -~09515~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09515~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09515~^~255~^85.61^3^0.04^~1~^~A~^^^1^85.53^85.69^2^85.41^85.81^~2, 3~^~06/01/2015~ -~09515~^~269~^11.46^2^^~1~^~A~^^^1^11.44^11.49^1^^^^~06/01/2015~ -~09515~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09515~^~303~^0.34^3^6.0e-03^~1~^~A~^^^1^0.33^0.35^2^0.31^0.36^~2, 3~^~06/01/2015~ -~09515~^~309~^0.08^3^0.00^~1~^~A~^^^1^0.08^0.08^2^0.08^0.08^~2, 3~^~06/01/2015~ -~09515~^~323~^0.18^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09515~^~418~^0.55^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09515~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~203~^0.44^4^0.00^~1~^~A~^^^1^0.44^0.44^^^^~2, 3~^~06/01/2015~ -~09516~^~204~^0.30^4^0.02^~1~^~A~^^^1^0.27^0.36^3^0.23^0.36^~2, 3~^~06/01/2015~ -~09516~^~205~^12.37^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09516~^~207~^0.29^4^0.01^~1~^~A~^^^1^0.24^0.32^3^0.23^0.35^~2, 3~^~06/01/2015~ -~09516~^~210~^2.44^2^^~1~^~A~^^^1^2.23^2.65^1^^^^~06/01/2015~ -~09516~^~211~^3.32^2^^~1~^~A~^^^1^3.17^3.46^1^^^^~06/01/2015~ -~09516~^~212~^4.58^2^^~1~^~A~^^^1^4.45^4.71^1^^^^~06/01/2015~ -~09516~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09516~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09516~^~255~^86.60^4^0.07^~1~^~A~^^^1^86.49^86.80^3^86.37^86.83^~2, 3~^~06/01/2015~ -~09516~^~269~^10.33^2^^~1~^~A~^^^1^10.27^10.40^1^^^^~06/01/2015~ -~09516~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09516~^~303~^0.32^3^0.02^~1~^~A~^^^1^0.30^0.36^2^0.23^0.40^~2, 3~^~06/01/2015~ -~09516~^~309~^0.07^3^1.0e-03^~1~^~A~^^^1^0.07^0.07^2^0.06^0.07^~2, 3~^~06/01/2015~ -~09516~^~323~^0.16^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09516~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09516~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09517~^~203~^0.12^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~204~^0.17^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~205~^11.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09517~^~207~^0.31^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~210~^1.20^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~211~^2.57^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~212~^5.70^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~255~^87.92^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~269~^9.47^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~303~^0.13^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~309~^0.04^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~323~^0.01^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09518~^~203~^1.15^11^0.06^~1~^~A~^^^1^0.69^1.56^7^0.98^1.30^~2, 3~^~12/01/2016~ -~09518~^~204~^0.81^11^0.03^~1~^~A~^^^1^0.61^1.09^9^0.74^0.88^~2, 3~^~12/01/2016~ -~09518~^~205~^12.55^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~207~^0.48^11^0.02^~1~^~A~^^^1^0.40^0.61^7^0.42^0.52^~2, 3~^~12/01/2016~ -~09518~^~209~^0.19^3^0.10^~1~^~A~^^^1^0.06^0.60^1^-1.11^1.48^~2, 3~^~12/01/2016~ -~09518~^~210~^0.44^11^0.07^~1~^~A~^^^1^0.18^0.83^5^0.23^0.63^~1, 2, 3~^~12/01/2016~ -~09518~^~211~^2.87^11^0.21^~1~^~A~^^^1^2.20^3.70^4^2.26^3.47^~2, 3~^~12/01/2016~ -~09518~^~212~^3.24^11^0.23^~1~^~A~^^^1^2.42^4.06^4^2.54^3.93^~2, 3~^~12/01/2016~ -~09518~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~255~^85.01^11^0.79^~1~^~A~^^^1^82.05^89.55^7^83.11^86.91^~2, 3~^~12/01/2016~ -~09518~^~269~^6.54^11^0.41^~1~^~A~^^^1^4.90^8.03^5^5.44^7.63^~2, 3~^~12/01/2016~ -~09518~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~303~^0.76^11^0.19^~1~^~A~^^^1^0.28^2.08^2^-0.03^1.55^~2, 3~^~12/01/2016~ -~09518~^~309~^0.31^11^0.05^~1~^~A~^^^1^0.18^0.66^2^0.08^0.52^~2, 3~^~12/01/2016~ -~09518~^~323~^0.75^3^0.05^~1~^~A~^^^1^0.32^1.60^1^0.09^1.41^~2, 3~^~12/01/2016~ -~09518~^~341~^0.26^3^0.05^~1~^~A~^^^1^0.00^0.83^1^-0.45^0.97^~1, 2, 3~^~12/01/2016~ -~09518~^~342~^1.11^3^0.02^~1~^~A~^^^1^0.66^1.36^1^0.80^1.42^~2, 3~^~12/01/2016~ -~09518~^~343~^0.37^3^0.07^~1~^~A~^^^1^0.28^0.66^1^-0.54^1.28^~2, 3~^~12/01/2016~ -~09518~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09518~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~09519~^~203~^0.30^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~204~^0.07^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~205~^13.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~207~^0.09^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~09519~^~255~^86.23^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~269~^10.15^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~303~^0.54^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~309~^0.02^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~323~^0.06^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09520~^~203~^1.02^10^0.08^~1~^~A~^^^1^0.55^1.59^9^0.83^1.20^~4~^~03/01/2015~ -~09520~^~204~^0.28^5^0.02^~1~^~A~^^^1^0.20^0.30^4^0.22^0.33^~4~^~03/01/2015~ -~09520~^~205~^15.79^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~207~^0.47^10^0.02^~1~^~A~^^^1^0.40^0.60^9^0.41^0.52^~4~^~03/01/2015~ -~09520~^~209~^0.12^10^0.01^~1~^~A~^^^1^0.10^0.20^9^0.09^0.15^~4~^~03/01/2015~ -~09520~^~210~^1.22^10^0.08^~1~^~A~^^^1^0.90^1.70^9^1.02^1.41^~4~^~03/01/2015~ -~09520~^~211~^5.28^10^0.14^~1~^~A~^^^1^4.60^5.90^9^4.95^5.61^~4~^~03/01/2015~ -~09520~^~212~^5.80^10^0.17^~1~^~A~^^^1^5.00^6.60^9^5.39^6.20^~4~^~03/01/2015~ -~09520~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^9^0.00^0.00^~1, 4~^~03/01/2015~ -~09520~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^9^0.00^0.00^~1, 4~^~03/01/2015~ -~09520~^~255~^82.44^10^0.40^~1~^~A~^^^1^80.70^84.20^9^81.51^83.36^~4~^~03/01/2015~ -~09520~^~269~^12.30^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09520~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09520~^~303~^0.21^10^0.01^~1~^~A~^^^1^0.15^0.28^9^0.17^0.24^~4~^~03/01/2015~ -~09520~^~309~^0.08^10^4.0e-03^~1~^~A~^^^1^0.06^0.09^9^0.06^0.08^~4~^~03/01/2015~ -~09520~^~323~^1.40^10^0.04^~1~^~A~^^^1^1.12^1.55^9^1.29^1.50^~4~^~03/01/2015~ -~09520~^~341~^0.04^10^4.0e-03^~1~^~A~^^^1^0.03^0.06^9^0.03^0.05^~4~^~03/01/2015~ -~09520~^~342~^0.07^10^0.01^~1~^~A~^^^1^0.01^0.11^9^0.04^0.09^~4~^~03/01/2015~ -~09520~^~343~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^9^0.00^0.00^~1, 4~^~03/01/2015~ -~09520~^~418~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~203~^0.27^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~204~^0.12^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~205~^10.91^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09522~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~211~^4.00^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~212~^5.70^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~255~^88.60^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~269~^9.80^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~303~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~309~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~323~^0.01^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09522~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09523~^~203~^0.40^5^0.02^~1~^~A~^^^1^0.35^0.45^4^0.34^0.45^~2, 3~^~03/01/2015~ -~09523~^~204~^0.07^5^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~03/01/2015~ -~09523~^~205~^5.37^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09523~^~207~^0.19^5^0.04^~1~^~A~^^^1^0.07^0.27^4^0.08^0.30^~1, 2, 3~^~03/01/2015~ -~09523~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09523~^~211~^0.76^2^^~1~^~A~^^^1^0.65^0.87^1^^^^~03/01/2015~ -~09523~^~212~^0.66^2^^~1~^~A~^^^1^0.62^0.71^1^^^^~03/01/2015~ -~09523~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09523~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09523~^~255~^93.96^5^0.06^~1~^~A~^^^1^93.80^94.10^4^93.79^94.12^~2, 3~^~03/01/2015~ -~09523~^~269~^1.42^2^^~1~^~A~^^^1^1.27^1.58^1^^^^~03/01/2015~ -~09523~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09523~^~303~^0.06^5^6.0e-03^~1~^~A~^^^1^0.04^0.07^4^0.04^0.07^~1, 2, 3~^~03/01/2015~ -~09523~^~309~^0.09^5^0.05^~1~^~A~^^^1^0.03^0.30^4^-0.04^0.23^~2, 3~^~03/01/2015~ -~09524~^~203~^0.47^6^0.02^~1~^~A~^^^1^0.35^0.51^5^0.40^0.53^~2, 3~^~03/01/2015~ -~09524~^~204~^0.07^6^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~03/01/2015~ -~09524~^~205~^5.66^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~207~^0.23^6^0.04^~1~^~A~^^^1^0.07^0.36^5^0.12^0.34^~1, 2, 3~^~03/01/2015~ -~09524~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09524~^~211~^0.88^2^^~1~^~A~^^^1^0.87^0.90^1^^^^~03/01/2015~ -~09524~^~212~^0.71^2^^~1~^~A~^^^1^0.68^0.73^1^^^^~03/01/2015~ -~09524~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09524~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09524~^~255~^93.57^6^0.13^~1~^~A~^^^1^93.20^94.10^5^93.23^93.90^~2, 3~^~03/01/2015~ -~09524~^~269~^1.59^2^^~1~^~A~^^^1^1.55^1.63^1^^^^~03/01/2015~ -~09524~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~09524~^~303~^0.06^6^5.0e-03^~1~^~A~^^^1^0.04^0.08^5^0.04^0.07^~1, 2, 3~^~03/01/2015~ -~09524~^~309~^0.23^6^0.07^~1~^~A~^^^1^0.04^0.51^5^0.05^0.41^~2, 3~^~03/01/2015~ -~09524~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09525~^~203~^0.75^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~204~^0.05^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~09525~^~205~^40.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09525~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~210~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~211~^17.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~212~^9.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~214~^4.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~255~^58.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~269~^31.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~303~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~203~^1.05^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~204~^0.04^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~09526~^~205~^40.61^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09526~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~210~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~211~^17.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~212~^9.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~214~^4.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~255~^58.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~269~^32.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~303~^0.62^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09528~^~203~^0.50^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~204~^0.10^0^^~4~^~BFZN~^~09404~^^^^^^^^^~05/01/2015~ -~09528~^~205~^10.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09528~^~207~^0.27^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~210~^1.80^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~211~^3.80^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~212~^4.70^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09528~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09528~^~255~^88.60^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~269~^10.30^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09528~^~303~^0.14^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09530~^~203~^0.50^2^^~1~^~A~^^^1^0.50^0.50^^^^^~06/01/2015~ -~09530~^~204~^0.32^2^^~1~^~A~^^^1^0.29^0.36^1^^^^~06/01/2015~ -~09530~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~207~^0.39^2^^~1~^~A~^^^1^0.38^0.40^1^^^^~06/01/2015~ -~09530~^~210~^3.48^2^^~1~^~A~^^^1^3.45^3.52^1^^^^~06/01/2015~ -~09530~^~211~^2.57^2^^~1~^~A~^^^1^2.57^2.58^1^^^^~06/01/2015~ -~09530~^~212~^3.84^2^^~1~^~A~^^^1^3.82^3.87^1^^^^~06/01/2015~ -~09530~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09530~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09530~^~255~^87.74^2^^~1~^~A~^^^1^87.68^87.80^1^^^^~06/01/2015~ -~09530~^~269~^9.90^2^^~1~^~A~^^^1^9.85^9.96^1^^^^~06/01/2015~ -~09530~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09530~^~303~^0.20^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~309~^0.08^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~323~^8.93^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~09530~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09530~^~573~^8.80^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~09530~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~203~^0.48^3^0.02^~1~^~A~^^^1^0.44^0.50^2^0.39^0.56^~2, 3~^~06/01/2015~ -~09531~^~204~^0.27^3^0.01^~1~^~A~^^^1^0.24^0.29^2^0.20^0.32^~2, 3~^~06/01/2015~ -~09531~^~205~^11.66^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~207~^0.31^3^0.02^~1~^~A~^^^1^0.27^0.33^2^0.22^0.39^~2, 3~^~06/01/2015~ -~09531~^~210~^2.83^2^^~1~^~A~^^^1^2.68^2.98^1^^^^~06/01/2015~ -~09531~^~211~^2.80^2^^~1~^~A~^^^1^2.60^3.00^1^^^^~06/01/2015~ -~09531~^~212~^4.42^2^^~1~^~A~^^^1^4.27^4.57^1^^^^~06/01/2015~ -~09531~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09531~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09531~^~255~^87.28^3^0.03^~1~^~A~^^^1^87.23^87.35^2^87.12^87.43^~2, 3~^~06/01/2015~ -~09531~^~269~^10.05^2^^~1~^~A~^^^1^9.85^10.25^1^^^^~06/01/2015~ -~09531~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~09531~^~303~^0.20^3^8.0e-03^~1~^~A~^^^1^0.18^0.21^2^0.16^0.23^~2, 3~^~06/01/2015~ -~09531~^~309~^0.08^3^1.0e-03^~1~^~A~^^^1^0.08^0.08^2^0.07^0.08^~2, 3~^~06/01/2015~ -~09531~^~323~^0.13^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09531~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09531~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09542~^~203~^1.25^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~204~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~205~^36.66^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~207~^0.92^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~209~^32.00^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~210~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~211~^1.09^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~212~^1.02^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~255~^61.10^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~269~^2.29^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~303~^0.75^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~309~^0.18^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09543~^~203~^1.09^3^0.03^~1~^~A~^^^1^1.03^1.15^2^0.94^1.24^~2, 3~^~11/01/2016~ -~09543~^~204~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 2, 3~^~11/01/2016~ -~09543~^~205~^29.15^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~207~^0.60^3^0.02^~1~^~A~^^^1^0.55^0.65^2^0.47^0.72^~2, 3~^~11/01/2016~ -~09543~^~209~^24.47^3^1.17^~1~^~A~^^^1^22.20^26.10^2^19.43^29.49^~2, 3~^~11/01/2016~ -~09543~^~210~^1.52^3^0.70^~1~^~A~^^^1^0.58^2.90^2^-1.51^4.55^~2, 3~^~11/01/2016~ -~09543~^~211~^0.38^3^0.12^~1~^~A~^^^1^0.18^0.61^2^-0.15^0.91^~1, 2, 3~^~11/01/2016~ -~09543~^~212~^0.35^3^0.12^~1~^~A~^^^1^0.18^0.59^2^-0.17^0.87^~1, 2, 3~^~11/01/2016~ -~09543~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09543~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09543~^~255~^69.08^3^0.41^~1~^~A~^^^1^68.25^69.50^2^67.29^70.87^~2, 3~^~11/01/2016~ -~09543~^~269~^2.25^3^0.94^~1~^~A~^^^1^0.95^4.10^2^-1.83^6.33^~2, 3~^~11/01/2016~ -~09543~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2016~ -~09543~^~303~^0.30^2^^~1~^~A~^^^1^0.25^0.35^1^^^^~11/01/2016~ -~09543~^~309~^0.14^3^6.0e-03^~1~^~A~^^^1^0.13^0.14^2^0.11^0.16^~2, 3~^~11/01/2016~ -~09544~^~203~^3.69^9^^~12~^~MA~^^^1^2.90^4.70^^^^~2~^~11/01/2016~ -~09544~^~204~^0.47^12^^~12~^~MA~^^^1^0.21^1.22^^^^~2~^~11/01/2016~ -~09544~^~205~^79.65^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09544~^~207~^5.28^10^^~12~^~MA~^^^1^4.54^5.80^^^^~2~^~11/01/2016~ -~09544~^~210~^9.22^12^^~12~^~MA~^^^1^4.80^13.19^^^^~2~^~11/01/2016~ -~09544~^~211~^4.66^12^^~12~^~MA~^^^1^2.50^7.00^^^^~2~^~11/01/2016~ -~09544~^~212~^4.28^12^^~12~^~MA~^^^1^1.90^7.20^^^^~2~^~11/01/2016~ -~09544~^~213~^0.00^6^^~12~^~MA~^^^1^0.00^0.00^^^^~2~^~11/01/2016~ -~09544~^~214~^0.00^6^^~12~^~MA~^^^1^0.00^0.00^^^^~2~^~11/01/2016~ -~09544~^~255~^10.92^12^^~12~^~MA~^^^1^5.10^13.60^^^^~2~^~11/01/2016~ -~09544~^~303~^8.42^10^^~12~^~MA~^^^1^3.78^13.90^^^^~2~^~11/01/2016~ -~09544~^~309~^0.92^4^^~12~^~MA~^^^1^0.59^1.28^^^^~2~^~11/01/2016~ -~09546~^~203~^0.31^2^^~1~^~A~^^^1^0.19^0.44^1^^^^~12/01/2016~ -~09546~^~204~^0.54^2^^~1~^~A~^^^1^0.43^0.65^1^^^^~12/01/2016~ -~09546~^~205~^13.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09546~^~207~^0.28^2^^~1~^~A~^^^1^0.27^0.28^1^^^^~12/01/2016~ -~09546~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09546~^~211~^7.26^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09546~^~212~^4.95^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09546~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09546~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09546~^~255~^85.18^2^^~1~^~A~^^^1^83.80^86.55^1^^^^~12/01/2016~ -~09546~^~269~^12.21^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09546~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09546~^~303~^0.42^2^^~1~^~A~^^^1^0.39^0.45^1^^^^~12/01/2016~ -~09546~^~309~^0.03^2^^~1~^~A~^^^1^0.03^0.04^1^^^^~12/01/2016~ -~09546~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~09552~^~203~^1.02^4^0.14^~1~^~A~^^^1^0.81^1.44^3^0.54^1.48^~2, 3~^~12/01/2016~ -~09552~^~204~^0.87^4^0.06^~1~^~A~^^^1^0.74^1.04^3^0.67^1.07^~2, 3~^~12/01/2016~ -~09552~^~205~^7.99^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~207~^0.42^4^0.04^~1~^~A~^^^1^0.34^0.52^3^0.28^0.55^~2, 3~^~12/01/2016~ -~09552~^~209~^0.20^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~210~^0.18^4^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~12/01/2016~ -~09552~^~211~^2.81^4^0.47^~1~^~A~^^^1^1.46^3.72^3^1.28^4.33^~2, 3~^~12/01/2016~ -~09552~^~212~^3.05^4^0.51^~1~^~A~^^^1^1.58^3.97^3^1.41^4.67^~2, 3~^~12/01/2016~ -~09552~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09552~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09552~^~255~^89.70^4^0.64^~1~^~A~^^^1^88.22^90.80^3^87.66^91.74^~2, 3~^~12/01/2016~ -~09552~^~269~^6.04^4^0.99^~1~^~A~^^^1^3.22^7.87^3^2.88^9.19^~2, 3~^~12/01/2016~ -~09552~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09552~^~303~^1.08^4^0.24^~1~^~A~^^^1^0.65^1.61^3^0.31^1.84^~2, 3~^~12/01/2016~ -~09552~^~309~^0.18^4^0.01^~1~^~A~^^^1^0.14^0.21^3^0.13^0.23^~2, 3~^~12/01/2016~ -~09552~^~323~^1.54^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~341~^0.80^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~342~^0.37^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~343~^1.07^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~203~^1.10^8^0.03^~1~^~A~^^^1^0.81^1.25^4^0.99^1.20^~2, 3~^~12/01/2016~ -~09553~^~204~^0.97^8^0.04^~1~^~A~^^^1^0.81^1.09^4^0.83^1.09^~2, 3~^~12/01/2016~ -~09553~^~205~^11.51^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~207~^0.54^8^0.02^~1~^~A~^^^1^0.42^0.61^4^0.46^0.60^~2, 3~^~12/01/2016~ -~09553~^~209~^0.07^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~210~^0.21^8^0.02^~1~^~A~^^^1^0.18^0.80^2^0.10^0.31^~1, 2, 3~^~12/01/2016~ -~09553~^~211~^3.05^8^0.09^~1~^~A~^^^1^1.59^3.42^4^2.78^3.31^~2, 3~^~12/01/2016~ -~09553~^~212~^3.30^8^0.12^~1~^~A~^^^1^1.87^3.69^4^2.97^3.63^~2, 3~^~12/01/2016~ -~09553~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09553~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09553~^~255~^85.88^8^1.20^~1~^~A~^^^1^82.77^91.10^4^82.56^89.20^~2, 3~^~12/01/2016~ -~09553~^~269~^6.56^8^0.21^~1~^~A~^^^1^3.91^7.29^4^5.96^7.15^~2, 3~^~12/01/2016~ -~09553~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09553~^~303~^0.69^8^0.09^~1~^~A~^^^1^0.40^1.08^4^0.43^0.93^~2, 3~^~12/01/2016~ -~09553~^~309~^0.31^8^0.01^~1~^~A~^^^1^0.17^0.37^4^0.26^0.36^~2, 3~^~12/01/2016~ -~09553~^~323~^0.77^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~341~^0.18^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~342~^0.47^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~343~^0.86^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~203~^3.04^4^0.10^~1~^~A~^^^1^2.81^4.37^2^2.51^3.57^~2, 3~^~12/01/2016~ -~09554~^~204~^1.34^4^0.34^~1~^~A~^^^1^0.77^3.61^2^-0.32^2.99^~2, 3~^~12/01/2016~ -~09554~^~205~^53.19^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~207~^1.29^3^0.03^~1~^~A~^^^1^1.19^1.35^1^0.81^1.76^~2, 3~^~12/01/2016~ -~09554~^~209~^0.32^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~210~^1.03^4^0.37^~1~^~A~^^^1^0.18^7.36^1^-3.72^5.78^~1, 2, 3~^~12/01/2016~ -~09554~^~211~^17.10^4^1.58^~1~^~A~^^^1^13.32^19.53^1^-1.65^35.84^~2, 3~^~12/01/2016~ -~09554~^~212~^20.09^4^0.83^~1~^~A~^^^1^16.15^21.69^1^11.05^29.11^~2, 3~^~12/01/2016~ -~09554~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09554~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09554~^~255~^41.15^4^0.51^~1~^~A~^^^1^40.37^41.94^1^34.61^47.68^~2, 3~^~12/01/2016~ -~09554~^~269~^38.21^4^2.38^~1~^~A~^^^1^35.65^41.40^1^7.90^68.51^~2, 3~^~12/01/2016~ -~09554~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~09554~^~303~^1.16^4^0.25^~1~^~A~^^^1^0.84^1.46^1^-1.83^4.15^~2, 3~^~12/01/2016~ -~09554~^~309~^1.29^4^0.03^~1~^~A~^^^1^1.23^1.44^2^1.10^1.46^~2, 3~^~12/01/2016~ -~09554~^~323~^0.06^2^^~1~^~A~^^^1^0.06^0.06^^^^^~12/01/2016~ -~09554~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~09554~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~10000~^~203~^10.06^4^0.37^~1~^~A~^^^1^9.26^10.84^3^8.87^11.24^~2, 3~^~05/01/2007~ -~10000~^~204~^60.42^4^0.98^~1~^~A~^^^1^58.47^62.33^3^57.27^63.55^~2, 3~^~05/01/2007~ -~10000~^~205~^0.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10000~^~207~^0.93^4^0.09^~1~^~A~^^^1^0.66^1.08^3^0.63^1.21^~2, 3~^~05/01/2007~ -~10000~^~255~^28.28^4^1.22^~1~^~A~^^^1^25.13^31.08^3^24.40^32.16^~2, 3~^~05/01/2007~ -~10000~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~303~^0.82^4^0.10^~1~^~A~^^^1^0.67^1.12^3^0.49^1.14^~2, 3~^~05/01/2007~ -~10000~^~309~^1.13^4^0.03^~1~^~A~^^^1^1.04^1.20^3^1.01^1.24^~2, 3~^~05/01/2007~ -~10000~^~323~^0.24^0^^~4~^~BFSN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~418~^1.40^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10000~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10001~^~203~^13.91^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~204~^35.07^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10001~^~207~^0.72^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~255~^49.83^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~303~^0.69^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~309~^1.59^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~10/01/2005~ -~10001~^~418~^0.61^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10002~^~203~^21.20^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~204~^4.86^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~255~^73.17^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~309~^2.21^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10002~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10002~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10002~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10002~^~418~^0.64^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~203~^18.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~204~^14.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~255~^65.99^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~303~^0.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~309~^2.27^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~418~^0.67^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10004~^~203~^2.92^98^0.08^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~204~^88.69^96^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10004~^~207~^0.70^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~255~^7.69^210^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10004~^~303~^0.18^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~309~^0.37^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~323~^0.00^0^^~4~^~BFSN~^~10006~^^^^^^^^^~01/01/2003~ -~10004~^~418~^0.18^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10005~^~203~^9.34^33^0.16^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~204~^53.01^33^0.68^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10005~^~207~^0.49^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~255~^36.74^33^0.54^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10005~^~303~^0.52^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~309~^1.02^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~342~^0.08^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~344~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~10/01/2002~ -~10005~^~418~^0.84^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10006~^~203~^9.25^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~204~^65.70^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10006~^~207~^0.51^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~255~^24.76^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~303~^0.26^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~309~^0.60^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~323~^0.42^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10006~^~418~^0.67^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10007~^~203~^7.06^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~204~^66.10^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10007~^~207~^0.42^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~255~^26.26^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10007~^~303~^0.46^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~309~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~323~^0.00^0^^~4~^~BFFN~^~10006~^^^^^^^^^~04/01/2010~ -~10007~^~418~^0.54^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10008~^~203~^17.43^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~204~^18.87^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10008~^~207~^0.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~255~^62.47^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~303~^0.85^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~309~^1.93^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~418~^0.63^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~203~^26.83^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~204~^17.61^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10009~^~207~^1.06^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~255~^55.04^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10009~^~303~^1.01^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~309~^2.96^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~323~^0.22^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10009~^~418~^0.68^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10010~^~203~^20.48^53^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~204~^5.41^51^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10010~^~207~^1.05^37^9.0e-03^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~255~^72.90^51^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10010~^~303~^1.01^167^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~309~^2.27^27^0.10^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~323~^0.17^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10010~^~418~^0.71^11^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~10010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10011~^~203~^29.41^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~204~^9.44^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10011~^~207~^1.11^11^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~255~^60.66^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10011~^~303~^1.12^12^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~309~^3.26^12^0.14^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~323~^0.26^0^^~4~^~BFYN~^~10010~^^^^^^^^^~01/01/2003~ -~10011~^~418~^0.72^12^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10012~^~203~^20.27^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~204~^10.63^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~207~^1.05^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~255~^68.64^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~303~^0.62^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~309~^1.70^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~418~^0.40^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10013~^~203~^27.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~204~^10.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~255~^61.92^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~303~^0.90^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~309~^2.31^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~323~^0.27^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~418~^0.67^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10014~^~203~^21.81^6^0.22^~1~^~A~^^^1^21.13^22.44^5^21.22^22.39^~2, 3~^~01/01/2011~ -~10014~^~204~^2.93^6^0.27^~1~^~A~^^^1^2.00^3.70^5^2.23^3.63^~2, 3~^~01/01/2011~ -~10014~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10014~^~207~^1.12^6^0.01^~1~^~A~^^^1^1.09^1.15^5^1.09^1.15^~2, 3~^~01/01/2011~ -~10014~^~255~^74.78^6^0.32^~1~^~A~^^^1^73.77^75.69^5^73.93^75.62^~2, 3~^~01/01/2011~ -~10014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~303~^0.67^6^0.03^~1~^~A~^^^1^0.53^0.78^5^0.57^0.77^~2, 3~^~01/01/2011~ -~10014~^~309~^1.85^6^0.13^~1~^~A~^^^1^1.34^2.25^5^1.49^2.20^~2, 3~^~01/01/2011~ -~10014~^~323~^0.16^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~ -~10014~^~418~^0.36^6^0.02^~1~^~A~^^^1^0.28^0.42^5^0.30^0.41^~2, 3~^~01/01/2011~ -~10014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~203~^28.86^6^0.68^~1~^~A~^^^1^26.31^31.56^5^27.10^30.62^~2, 3~^~01/01/2011~ -~10015~^~204~^4.62^6^0.52^~1~^~A~^^^1^3.10^6.60^5^3.26^5.97^~2, 3~^~01/01/2011~ -~10015~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10015~^~207~^1.24^6^0.03^~1~^~A~^^^1^1.12^1.38^5^1.14^1.34^~2, 3~^~01/01/2011~ -~10015~^~255~^65.75^6^0.78^~1~^~A~^^^1^63.91^69.48^5^63.73^67.76^~2, 3~^~01/01/2011~ -~10015~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10015~^~303~^0.97^6^0.04^~1~^~A~^^^1^0.86^1.16^5^0.85^1.08^~2, 3~^~01/01/2011~ -~10015~^~309~^2.48^6^0.10^~1~^~A~^^^1^2.10^2.72^5^2.22^2.74^~2, 3~^~01/01/2011~ -~10015~^~323~^0.26^0^^~4~^~BFSN~^~10019~^^^^^^^^^~05/01/2006~ -~10015~^~418~^0.67^6^0.07^~1~^~A~^^^1^0.43^0.98^5^0.46^0.86^~2, 3~^~01/01/2011~ -~10015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10016~^~203~^19.87^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~204~^11.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~255~^67.69^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~303~^0.69^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~309~^2.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~323~^0.31^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~418~^0.54^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~203~^25.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~204~^13.42^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~255~^60.37^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~303~^0.87^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~309~^2.42^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~418~^0.50^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10018~^~203~^21.66^6^0.15^~1~^~A~^^^1^21.19^22.31^5^21.24^22.06^~2, 3~^~01/01/2011~ -~10018~^~204~^2.95^6^0.12^~1~^~A~^^^1^2.60^3.50^5^2.62^3.28^~2, 3~^~01/01/2011~ -~10018~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10018~^~207~^1.11^6^0.01^~1~^~A~^^^1^1.07^1.17^5^1.07^1.15^~2, 3~^~01/01/2011~ -~10018~^~255~^74.88^6^0.18^~1~^~A~^^^1^74.28^75.44^5^74.40^75.36^~2, 3~^~01/01/2011~ -~10018~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~303~^0.77^6^0.04^~1~^~A~^^^1^0.59^0.88^5^0.65^0.87^~2, 3~^~01/01/2011~ -~10018~^~309~^2.25^6^0.08^~1~^~A~^^^1^2.06^2.65^5^2.03^2.47^~2, 3~^~01/01/2011~ -~10018~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~10018~^~418~^0.51^6^0.05^~1~^~A~^^^1^0.37^0.73^5^0.38^0.64^~2, 3~^~01/01/2011~ -~10018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10019~^~203~^28.69^6^0.83^~1~^~A~^^^1^25.75^31.06^5^26.54^30.83^~2, 3~^~01/01/2011~ -~10019~^~204~^5.83^6^0.43^~1~^~A~^^^1^4.80^7.30^5^4.70^6.95^~2, 3~^~01/01/2011~ -~10019~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10019~^~207~^1.20^6^0.02^~1~^~A~^^^1^1.09^1.26^5^1.13^1.26^~2, 3~^~01/01/2011~ -~10019~^~255~^65.28^6^0.77^~1~^~A~^^^1^62.27^67.99^5^63.27^67.28^~2, 3~^~01/01/2011~ -~10019~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10019~^~303~^0.92^6^0.05^~1~^~A~^^^1^0.68^1.06^5^0.77^1.07^~2, 3~^~01/01/2011~ -~10019~^~309~^2.67^6^0.08^~1~^~A~^^^1^2.41^3.01^5^2.43^2.89^~2, 3~^~01/01/2011~ -~10019~^~323~^0.26^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~10019~^~418~^0.50^6^0.03^~1~^~A~^^^1^0.35^0.59^5^0.41^0.58^~2, 3~^~01/01/2011~ -~10019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10020~^~203~^19.74^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~204~^12.58^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10020~^~207~^0.96^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~255~^66.92^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10020~^~303~^0.79^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~309~^1.74^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~323~^0.21^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~342~^0.04^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10020~^~418~^0.53^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10021~^~203~^27.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~204~^13.62^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10021~^~207~^1.35^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~255~^58.27^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10021~^~303~^1.07^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~309~^2.38^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~323~^0.24^0^^~4~^~BFSN~^~10063~^^^^^^^^^~01/01/2003~ -~10021~^~418~^0.54^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10022~^~203~^27.32^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~204~^13.92^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10022~^~207~^1.35^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~255~^57.87^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10022~^~303~^0.87^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~309~^2.39^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~323~^0.29^0^^~4~^~BFSN~^~10064~^^^^^^^^^~01/01/2003~ -~10022~^~418~^0.70^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10023~^~203~^27.09^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~204~^14.65^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10023~^~207~^1.21^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~255~^57.51^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10023~^~303~^0.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~309~^2.32^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~323~^0.19^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10023~^~418~^0.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10024~^~203~^21.43^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~204~^5.66^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10024~^~207~^1.05^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~255~^72.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~10024~^~303~^0.84^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~309~^1.84^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~323~^0.18^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10024~^~418~^0.63^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10025~^~203~^28.57^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~204~^9.12^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10025~^~207~^1.40^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~255~^61.40^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10025~^~303~^1.13^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~309~^2.48^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~323~^0.21^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10025~^~418~^0.55^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10026~^~203~^28.57^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~204~^9.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10026~^~207~^1.40^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~255~^60.72^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10026~^~303~^0.91^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~309~^2.48^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~323~^0.27^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10026~^~418~^0.72^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10027~^~203~^28.62^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~204~^9.63^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10027~^~207~^1.25^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~255~^61.02^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10027~^~303~^1.09^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~309~^2.53^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~323~^0.20^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10027~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~342~^0.05^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~344~^0.03^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~346~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2002~ -~10027~^~418~^0.73^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10028~^~203~^19.56^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~204~^12.27^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~255~^67.64^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~303~^0.66^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~309~^2.56^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~418~^0.55^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~203~^26.54^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~204~^15.71^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~207~^1.13^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~255~^57.32^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~303~^0.81^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~309~^3.11^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~418~^0.62^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~203~^23.72^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~204~^14.35^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~207~^1.16^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~255~^61.45^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~303~^0.87^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~309~^3.15^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~418~^0.66^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~203~^24.29^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~204~^16.71^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~255~^58.74^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~303~^0.81^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~309~^3.21^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~418~^0.79^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10032~^~203~^21.22^12^0.24^~1~^~A~^^^1^20.07^23.14^11^20.66^21.76^~2, 3~^~04/01/2010~ -~10032~^~204~^5.84^12^0.44^~1~^~A~^^^1^2.14^8.24^11^4.85^6.82^~2, 3~^~04/01/2010~ -~10032~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10032~^~207~^1.07^12^0.01^~1~^~A~^^^1^0.96^1.17^11^1.03^1.10^~2, 3~^~04/01/2010~ -~10032~^~255~^72.84^12^0.29^~1~^~A~^^^1^71.11^74.42^11^72.19^73.49^~2, 3~^~04/01/2010~ -~10032~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~303~^0.71^12^0.05^~1~^~A~^^^1^0.47^1.01^11^0.59^0.83^~2, 3~^~04/01/2010~ -~10032~^~309~^2.74^12^0.12^~1~^~A~^^^1^2.06^3.50^11^2.47^3.00^~2, 3~^~04/01/2010~ -~10032~^~323~^0.18^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10032~^~418~^0.53^6^0.04^~1~^~A~^^^1^0.42^0.69^5^0.42^0.63^~2, 3~^~04/01/2010~ -~10032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10033~^~203~^28.02^12^0.43^~1~^~A~^^^1^25.32^29.84^11^27.06^28.97^~2, 3~^~03/01/2010~ -~10033~^~204~^11.29^12^0.77^~1~^~A~^^^1^5.08^14.63^11^9.57^13.00^~2, 3~^~03/01/2010~ -~10033~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10033~^~207~^1.18^12^0.05^~1~^~A~^^^1^1.01^1.63^11^1.06^1.28^~2, 3~^~03/01/2010~ -~10033~^~255~^60.32^12^0.69^~1~^~A~^^^1^56.33^64.55^11^58.78^61.84^~2, 3~^~03/01/2010~ -~10033~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10033~^~303~^0.85^12^0.03^~1~^~A~^^^1^0.56^1.01^11^0.76^0.92^~2, 3~^~03/01/2010~ -~10033~^~309~^3.28^12^0.17^~1~^~A~^^^1^2.30^4.34^11^2.89^3.67^~2, 3~^~03/01/2010~ -~10033~^~323~^0.21^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10033~^~418~^0.61^6^0.06^~1~^~A~^^^1^0.45^0.83^5^0.45^0.76^~2, 3~^~03/01/2010~ -~10033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10034~^~203~^24.99^12^0.41^~1~^~A~^^^1^22.72^27.73^11^24.07^25.90^~2, 3~^~03/01/2010~ -~10034~^~204~^9.56^12^0.58^~1~^~A~^^^1^4.63^11.55^11^8.27^10.83^~2, 3~^~03/01/2010~ -~10034~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10034~^~207~^1.21^12^0.02^~1~^~A~^^^1^1.13^1.48^11^1.14^1.26^~2, 3~^~03/01/2010~ -~10034~^~255~^65.03^12^0.43^~1~^~A~^^^1^63.51^67.38^11^64.07^65.98^~2, 3~^~03/01/2010~ -~10034~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~303~^0.91^12^0.07^~1~^~A~^^^1^0.38^1.25^11^0.74^1.07^~2, 3~^~03/01/2010~ -~10034~^~309~^3.34^12^0.12^~1~^~A~^^^1^2.65^4.11^11^3.05^3.62^~2, 3~^~03/01/2010~ -~10034~^~323~^0.23^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10034~^~418~^0.66^6^0.06^~1~^~A~^^^1^0.45^0.91^5^0.48^0.82^~2, 3~^~03/01/2010~ -~10034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~203~^25.70^12^0.37^~1~^~A~^^^1^23.62^27.34^11^24.87^26.52^~2, 3~^~04/01/2010~ -~10035~^~204~^11.89^12^0.78^~1~^~A~^^^1^7.38^15.46^11^10.15^13.62^~2, 3~^~04/01/2010~ -~10035~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10035~^~207~^1.14^12^0.01^~1~^~A~^^^1^1.08^1.28^11^1.11^1.18^~2, 3~^~04/01/2010~ -~10035~^~255~^62.24^12^0.86^~1~^~A~^^^1^57.19^66.19^11^60.34^64.13^~2, 3~^~04/01/2010~ -~10035~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~303~^0.85^12^0.03^~1~^~A~^^^1^0.62^1.01^11^0.78^0.92^~2, 3~^~04/01/2010~ -~10035~^~309~^3.41^12^0.12^~1~^~A~^^^1^2.32^3.87^11^3.14^3.67^~2, 3~^~04/01/2010~ -~10035~^~323~^0.24^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10035~^~418~^0.80^6^0.04^~1~^~A~^^^1^0.61^0.91^5^0.67^0.91^~2, 3~^~04/01/2010~ -~10035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10036~^~203~^20.71^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~204~^9.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~255~^69.70^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~303~^0.63^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~309~^1.77^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~418~^0.53^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10037~^~203~^28.21^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~204~^13.51^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~207~^1.22^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~255~^58.04^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~303~^0.86^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~309~^3.28^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~418~^0.66^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10038~^~203~^25.61^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~204~^11.06^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~207~^1.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~255~^62.27^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~303~^0.79^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~309~^2.14^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~418~^0.59^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10039~^~203~^27.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~204~^12.80^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~207~^1.14^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~255~^60.26^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~303~^0.89^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~309~^3.53^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~418~^0.87^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10040~^~203~^21.99^12^0.59^~1~^~A~^^^1^18.35^24.29^11^20.68^23.29^~2, 3~^~02/01/2007~ -~10040~^~204~^3.71^12^0.25^~1~^~A~^^^1^2.29^4.82^11^3.15^4.26^~2, 3~^~02/01/2007~ -~10040~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10040~^~207~^1.01^12^0.04^~1~^~A~^^^1^0.80^1.21^11^0.92^1.10^~2, 3~^~02/01/2007~ -~10040~^~255~^73.62^12^0.44^~1~^~A~^^^1^71.21^76.41^11^72.63^74.60^~2, 3~^~02/01/2007~ -~10040~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10040~^~303~^0.65^12^0.01^~1~^~A~^^^1^0.54^0.72^11^0.61^0.68^~2, 3~^~02/01/2007~ -~10040~^~309~^1.86^12^0.04^~1~^~A~^^^1^1.72^2.28^11^1.76^1.95^~2, 3~^~02/01/2007~ -~10040~^~323~^0.13^0^^~4~^~BFSN~^~10066~^^^^^^^^^~02/01/2007~ -~10040~^~418~^0.50^0^^~4~^~BFPN~^~10066~^^^^^^^^^~02/01/2007~ -~10040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10041~^~203~^30.20^6^0.56^~1~^~A~^^^1^28.96^32.37^5^28.74^31.65^~2, 3~^~05/01/2010~ -~10041~^~204~^7.86^6^0.54^~1~^~A~^^^1^6.20^10.24^5^6.46^9.25^~2, 3~^~05/01/2010~ -~10041~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10041~^~207~^1.28^6^0.15^~1~^~A~^^^1^1.05^2.07^5^0.87^1.69^~2, 3~^~05/01/2010~ -~10041~^~255~^61.79^6^0.57^~1~^~A~^^^1^59.45^63.55^5^60.31^63.27^~2, 3~^~05/01/2010~ -~10041~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10041~^~303~^0.91^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~309~^3.51^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~323~^0.21^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10041~^~418~^0.66^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10042~^~203~^26.76^12^0.63^~1~^~A~^^^1^23.46^30.01^11^25.36^28.14^~2, 3~^~02/01/2007~ -~10042~^~204~^7.29^12^0.65^~1~^~A~^^^1^4.12^11.53^11^5.85^8.72^~2, 3~^~02/01/2007~ -~10042~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10042~^~207~^1.05^12^0.01^~1~^~A~^^^1^1.00^1.13^11^1.02^1.08^~2, 3~^~02/01/2007~ -~10042~^~255~^65.01^12^0.45^~1~^~A~^^^1^62.34^67.08^11^64.00^66.02^~2, 3~^~02/01/2007~ -~10042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~303~^0.80^12^0.02^~1~^~A~^^^1^0.64^1.04^11^0.73^0.86^~2, 3~^~02/01/2007~ -~10042~^~309~^2.22^12^0.03^~1~^~A~^^^1^2.02^2.36^11^2.13^2.30^~2, 3~^~02/01/2007~ -~10042~^~323~^0.10^0^^~4~^~BFSN~^~10068~^^^^^^^^^~02/01/2007~ -~10042~^~418~^0.54^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2007~ -~10042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10043~^~203~^28.58^6^0.70^~1~^~A~^^^1^26.99^31.14^5^26.76^30.40^~2, 3~^~05/01/2010~ -~10043~^~204~^7.95^6^0.46^~1~^~A~^^^1^6.43^9.47^5^6.75^9.13^~2, 3~^~05/01/2010~ -~10043~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10043~^~207~^1.19^6^0.03^~1~^~A~^^^1^1.08^1.31^5^1.10^1.26^~2, 3~^~05/01/2010~ -~10043~^~255~^63.65^6^0.50^~1~^~A~^^^1^61.76^64.91^5^62.36^64.93^~2, 3~^~05/01/2010~ -~10043~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~303~^0.93^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~309~^3.74^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~323~^0.24^0^^~4~^~BFSN~^~10858~^^^^^^^^^~05/01/2010~ -~10043~^~418~^0.88^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10044~^~203~^20.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~204~^11.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~255~^67.83^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~303~^0.59^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~309~^1.85^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10044~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10044~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10044~^~418~^0.54^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10045~^~203~^26.66^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~204~^16.28^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~255~^56.85^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~303~^0.81^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~309~^3.10^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~418~^0.64^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10046~^~203~^24.42^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~204~^13.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~255~^61.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~303~^0.68^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~309~^2.15^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~418~^0.58^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10047~^~203~^26.99^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~204~^14.68^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~255~^57.76^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~303~^0.96^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~309~^2.91^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~418~^0.87^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10048~^~203~^21.79^12^0.47^~1~^~A~^^^1^18.94^23.97^11^20.73^22.84^~2, 3~^~03/01/2007~ -~10048~^~204~^4.80^12^0.37^~1~^~A~^^^1^2.40^7.34^11^3.96^5.62^~2, 3~^~03/01/2007~ -~10048~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10048~^~207~^1.01^12^0.04^~1~^~A~^^^1^0.76^1.26^11^0.91^1.10^~2, 3~^~03/01/2007~ -~10048~^~255~^72.40^12^0.30^~1~^~A~^^^1^70.70^73.91^11^71.73^73.05^~2, 3~^~03/01/2007~ -~10048~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10048~^~303~^0.61^12^0.02^~1~^~A~^^^1^0.55^0.75^11^0.56^0.65^~2, 3~^~03/01/2007~ -~10048~^~309~^1.97^12^0.06^~1~^~A~^^^1^1.74^2.40^11^1.83^2.10^~2, 3~^~03/01/2007~ -~10048~^~323~^0.13^0^^~4~^~BFSN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~418~^0.50^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10049~^~203~^29.03^6^0.36^~1~^~A~^^^1^28.51^30.82^5^28.10^29.96^~2, 3~^~05/01/2010~ -~10049~^~204~^9.32^6^0.69^~1~^~A~^^^1^7.48^12.18^5^7.52^11.12^~2, 3~^~05/01/2010~ -~10049~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10049~^~207~^1.13^6^0.04^~1~^~A~^^^1^1.05^1.37^5^1.00^1.25^~2, 3~^~05/01/2010~ -~10049~^~255~^61.56^6^0.71^~1~^~A~^^^1^59.37^63.28^5^59.73^63.39^~2, 3~^~05/01/2010~ -~10049~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10049~^~303~^0.87^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~309~^3.37^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~323~^0.22^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10049~^~418~^0.63^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10050~^~203~^25.79^12^0.83^~1~^~A~^^^1^20.65^29.64^11^23.95^27.62^~2, 3~^~03/01/2007~ -~10050~^~204~^8.36^12^0.67^~1~^~A~^^^1^4.31^10.56^11^6.86^9.85^~2, 3~^~03/01/2007~ -~10050~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10050~^~207~^1.02^12^0.01^~1~^~A~^^^1^0.95^1.08^11^0.99^1.04^~2, 3~^~03/01/2007~ -~10050~^~255~^65.14^12^0.44^~1~^~A~^^^1^61.53^67.26^11^64.17^66.11^~2, 3~^~03/01/2007~ -~10050~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10050~^~303~^0.68^12^0.01^~1~^~A~^^^1^0.53^0.78^11^0.64^0.72^~2, 3~^~03/01/2007~ -~10050~^~309~^2.25^12^0.07^~1~^~A~^^^1^1.75^2.63^11^2.09^2.41^~2, 3~^~03/01/2007~ -~10050~^~323~^0.10^0^^~4~^~BFSN~^~10068~^^^^^^^^^~03/01/2007~ -~10050~^~418~^0.52^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10051~^~203~^28.82^6^0.66^~1~^~A~^^^1^27.33^31.93^5^27.12^30.52^~2, 3~^~05/01/2010~ -~10051~^~204~^9.21^6^0.57^~1~^~A~^^^1^6.81^10.97^5^7.72^10.69^~2, 3~^~05/01/2010~ -~10051~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10051~^~207~^1.14^6^0.01^~1~^~A~^^^1^1.09^1.20^5^1.10^1.18^~2, 3~^~05/01/2010~ -~10051~^~255~^61.44^6^0.90^~1~^~A~^^^1^57.85^63.55^5^59.11^63.76^~2, 3~^~05/01/2010~ -~10051~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~303~^1.02^6^0.04^~1~^~A~^^^1^0.84^1.14^5^0.90^1.13^~2, 3~^~05/01/2010~ -~10051~^~309~^3.09^6^0.16^~1~^~A~^^^1^2.64^3.77^5^2.65^3.52^~2, 3~^~05/01/2010~ -~10051~^~323~^0.23^0^^~4~^~BFPN~^~10858~^^^^^^^^^~05/01/2010~ -~10051~^~418~^0.89^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10052~^~203~^20.48^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~204~^8.96^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~255~^70.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~309~^1.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10052~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10052~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10052~^~418~^0.56^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10053~^~203~^28.81^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~204~^12.31^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~207~^1.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~255~^58.88^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~303~^0.71^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~309~^1.97^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~418~^0.63^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~203~^26.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~204~^11.82^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~207~^1.21^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~255~^60.58^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~303~^1.01^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~309~^3.60^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~418~^0.75^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10055~^~203~^26.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~204~^12.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~255~^59.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~303~^0.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~309~^2.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~418~^0.64^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10056~^~203~^21.65^12^0.46^~1~^~A~^^^1^17.97^23.93^11^20.62^22.67^~2, 3~^~03/01/2007~ -~10056~^~204~^4.02^12^0.35^~1~^~A~^^^1^2.78^5.96^11^3.24^4.79^~2, 3~^~03/01/2007~ -~10056~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10056~^~207~^1.00^12^0.03^~1~^~A~^^^1^0.82^1.16^11^0.93^1.06^~2, 3~^~03/01/2007~ -~10056~^~255~^73.98^12^0.35^~1~^~A~^^^1^72.53^76.88^11^73.19^74.76^~2, 3~^~03/01/2007~ -~10056~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10056~^~303~^0.85^12^0.04^~1~^~A~^^^1^0.62^1.09^11^0.76^0.94^~2, 3~^~03/01/2007~ -~10056~^~309~^2.05^12^0.09^~1~^~A~^^^1^1.53^2.78^11^1.83^2.26^~2, 3~^~03/01/2007~ -~10056~^~323~^0.24^0^^~4~^~BFSN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~418~^0.53^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10057~^~203~^31.00^6^0.46^~1~^~A~^^^1^29.44^32.63^5^29.81^32.18^~2, 3~^~01/01/2011~ -~10057~^~204~^6.90^6^0.48^~1~^~A~^^^1^5.10^8.30^5^5.64^8.15^~2, 3~^~01/01/2011~ -~10057~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10057~^~207~^1.28^6^0.04^~1~^~A~^^^1^1.16^1.48^5^1.16^1.39^~2, 3~^~01/01/2011~ -~10057~^~255~^62.16^6^0.39^~1~^~A~^^^1^61.11^63.94^5^61.14^63.17^~2, 3~^~01/01/2011~ -~10057~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~303~^0.73^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~309~^2.09^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~323~^0.25^0^^~4~^~BFSN~^~10858~^^^^^^^^^~01/01/2011~ -~10057~^~418~^0.64^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10058~^~203~^29.29^6^0.48^~1~^~A~^^^1^28.06^31.38^5^28.03^30.54^~2, 3~^~01/01/2011~ -~10058~^~204~^5.45^6^0.21^~1~^~A~^^^1^4.70^6.10^5^4.90^5.99^~2, 3~^~01/01/2011~ -~10058~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10058~^~207~^1.31^6^0.01^~1~^~A~^^^1^1.28^1.39^5^1.26^1.35^~2, 3~^~01/01/2011~ -~10058~^~255~^64.61^6^0.56^~1~^~A~^^^1^62.54^66.17^5^63.16^66.05^~2, 3~^~01/01/2011~ -~10058~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10058~^~303~^1.07^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~309~^3.94^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~323~^0.27^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10058~^~418~^0.77^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10059~^~203~^27.78^12^0.55^~1~^~A~^^^1^23.59^30.72^11^26.55^29.00^~2, 3~^~01/01/2007~ -~10059~^~204~^9.44^12^0.68^~1~^~A~^^^1^3.78^13.31^11^7.92^10.94^~2, 3~^~01/01/2007~ -~10059~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10059~^~207~^1.12^12^0.03^~1~^~A~^^^1^0.94^1.30^11^1.04^1.19^~2, 3~^~01/01/2007~ -~10059~^~255~^61.74^12^0.89^~1~^~A~^^^1^58.44^69.35^11^59.77^63.70^~2, 3~^~01/01/2007~ -~10059~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~303~^0.96^12^0.03^~1~^~A~^^^1^0.77^1.16^11^0.89^1.02^~2, 3~^~01/01/2007~ -~10059~^~309~^2.62^12^0.11^~1~^~A~^^^1^2.00^3.31^11^2.37^2.86^~2, 3~^~01/01/2007~ -~10059~^~323~^0.10^0^^~4~^~BFSN~^~10061~^^^^^^^^^~03/01/2007~ -~10059~^~418~^0.61^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10059~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10060~^~203~^20.95^12^0.55^~1~^~A~^^^1^15.58^22.97^11^19.72^22.16^~2, 3~^~02/01/2007~ -~10060~^~204~^2.17^12^0.13^~1~^~A~^^^1^1.38^3.21^11^1.87^2.46^~2, 3~^~02/01/2007~ -~10060~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10060~^~207~^1.03^12^0.03^~1~^~A~^^^1^0.81^1.17^11^0.95^1.09^~2, 3~^~02/01/2007~ -~10060~^~255~^76.00^12^0.35^~1~^~A~^^^1^74.67^79.27^11^75.21^76.79^~2, 3~^~02/01/2007~ -~10060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10060~^~303~^0.98^12^0.03^~1~^~A~^^^1^0.80^1.21^11^0.91^1.05^~2, 3~^~02/01/2007~ -~10060~^~309~^1.89^12^0.08^~1~^~A~^^^1^1.28^2.30^11^1.70^2.06^~2, 3~^~02/01/2007~ -~10060~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10060~^~418~^0.51^4^0.05^~1~^~A~^^^1^0.36^0.59^3^0.34^0.67^~2, 3~^~02/01/2007~ -~10060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10061~^~203~^26.17^12^0.59^~1~^~A~^^^1^22.31^29.16^11^24.86^27.46^~2, 3~^~02/01/2007~ -~10061~^~204~^3.51^12^0.25^~1~^~A~^^^1^2.28^5.42^11^2.93^4.07^~2, 3~^~02/01/2007~ -~10061~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10061~^~207~^1.21^12^0.02^~1~^~A~^^^1^1.00^1.34^11^1.15^1.26^~2, 3~^~02/01/2007~ -~10061~^~255~^69.45^12^0.50^~1~^~A~^^^1^66.27^72.55^11^68.33^70.56^~2, 3~^~02/01/2007~ -~10061~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10061~^~303~^1.15^12^0.02^~1~^~A~^^^1^1.02^1.27^11^1.10^1.20^~2, 3~^~02/01/2007~ -~10061~^~309~^2.42^12^0.06^~1~^~A~^^^1^2.01^2.66^11^2.28^2.55^~2, 3~^~02/01/2007~ -~10061~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10061~^~418~^0.57^4^0.07^~1~^~A~^^^1^0.45^0.79^3^0.33^0.80^~2, 3~^~02/01/2007~ -~10061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10062~^~203~^21.55^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~204~^6.94^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~255~^70.38^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~303~^0.50^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~309~^1.55^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~323~^0.13^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~418~^0.53^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10063~^~203~^29.20^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~204~^8.31^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~207~^1.31^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~255~^62.44^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~303~^0.88^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~309~^2.29^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~418~^0.67^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10064~^~203~^26.62^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~204~^9.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~255~^62.92^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~303~^0.63^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~309~^2.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~323~^0.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~418~^0.59^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10065~^~203~^26.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~204~^8.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~255~^63.76^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~303~^0.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~309~^2.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~418~^0.58^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10066~^~203~^22.41^12^0.35^~1~^~A~^^^1^20.33^23.99^11^21.62^23.20^~2, 3~^~02/01/2007~ -~10066~^~204~^3.42^12^0.60^~1~^~A~^^^1^1.36^9.50^11^2.08^4.75^~2, 3~^~02/01/2007~ -~10066~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10066~^~207~^1.01^12^0.02^~1~^~A~^^^1^0.87^1.16^11^0.95^1.06^~2, 3~^~02/01/2007~ -~10066~^~255~^72.93^12^0.53^~1~^~A~^^^1^68.29^75.04^11^71.76^74.09^~2, 3~^~02/01/2007~ -~10066~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~303~^0.51^12^0.01^~1~^~A~^^^1^0.39^0.62^11^0.46^0.54^~2, 3~^~02/01/2007~ -~10066~^~309~^1.59^12^0.03^~1~^~A~^^^1^1.43^1.77^11^1.52^1.66^~2, 3~^~02/01/2007~ -~10066~^~323~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10066~^~418~^0.51^4^0.01^~1~^~A~^^^1^0.48^0.56^3^0.45^0.56^~2, 3~^~02/01/2007~ -~10066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10067~^~203~^30.54^6^0.15^~1~^~A~^^^1^30.19^31.11^5^30.15^30.92^~2, 3~^~04/01/2010~ -~10067~^~204~^4.34^6^0.12^~1~^~A~^^^1^3.94^4.60^5^4.03^4.65^~2, 3~^~04/01/2010~ -~10067~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10067~^~207~^1.36^6^0.10^~1~^~A~^^^1^1.06^1.79^5^1.08^1.62^~2, 3~^~04/01/2010~ -~10067~^~255~^65.14^6^0.36^~1~^~A~^^^1^63.95^66.53^5^64.21^66.07^~2, 3~^~04/01/2010~ -~10067~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10067~^~303~^0.91^6^0.01^~1~^~A~^^^1^0.84^0.96^5^0.86^0.95^~2, 3~^~04/01/2010~ -~10067~^~309~^2.37^6^0.06^~1~^~A~^^^1^2.21^2.61^5^2.20^2.52^~2, 3~^~04/01/2010~ -~10067~^~323~^0.25^0^^~4~^~BFSN~^~10858~^^^^^^^^^~03/01/2006~ -~10067~^~418~^0.66^0^^~4~^~BFPN~^~10033~^^^^^^^^^~04/01/2010~ -~10067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10068~^~203~^27.58^12^0.59^~1~^~A~^^^1^23.48^30.30^11^26.27^28.88^~2, 3~^~02/01/2007~ -~10068~^~204~^6.08^12^0.65^~1~^~A~^^^1^3.56^10.32^11^4.64^7.51^~2, 3~^~02/01/2007~ -~10068~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10068~^~207~^1.03^12^0.02^~1~^~A~^^^1^0.87^1.16^11^0.97^1.08^~2, 3~^~02/01/2007~ -~10068~^~255~^65.11^12^0.76^~1~^~A~^^^1^58.52^68.14^11^63.42^66.80^~2, 3~^~02/01/2007~ -~10068~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10068~^~303~^0.63^12^0.02^~1~^~A~^^^1^0.50^0.84^11^0.57^0.68^~2, 3~^~02/01/2007~ -~10068~^~309~^2.15^12^0.08^~1~^~A~^^^1^1.70^2.69^11^1.96^2.32^~2, 3~^~02/01/2007~ -~10068~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~10068~^~418~^0.56^4^0.02^~1~^~A~^^^1^0.52^0.60^3^0.48^0.62^~2, 3~^~02/01/2007~ -~10068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10069~^~203~^27.23^12^0.76^~1~^~A~^^^1^21.58^31.41^11^25.54^28.91^~2, 3~^~03/01/2007~ -~10069~^~204~^6.28^12^0.73^~1~^~A~^^^1^3.54^10.73^11^4.65^7.89^~2, 3~^~03/01/2007~ -~10069~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10069~^~207~^1.01^12^0.04^~1~^~A~^^^1^0.88^1.49^11^0.90^1.11^~2, 3~^~03/01/2007~ -~10069~^~255~^65.60^12^0.65^~1~^~A~^^^1^62.37^69.44^11^64.16^67.03^~2, 3~^~03/01/2007~ -~10069~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~303~^0.64^12^0.04^~1~^~A~^^^1^0.49^0.96^11^0.55^0.73^~2, 3~^~03/01/2007~ -~10069~^~309~^2.16^12^0.12^~1~^~A~^^^1^1.66^3.28^11^1.88^2.43^~2, 3~^~03/01/2007~ -~10069~^~323~^0.10^0^^~4~^~BFSN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~418~^0.55^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10070~^~203~^17.18^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~204~^17.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10070~^~207~^0.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~255~^64.02^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10070~^~303~^1.05^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~309~^2.70^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~323~^0.19^0^^~4~^~BFSN~^~10062~^^^^^^^^^~01/01/2003~ -~10070~^~418~^0.74^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10071~^~203~^23.28^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~204~^21.39^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10071~^~207~^1.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~255~^54.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10071~^~303~^1.32^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~309~^3.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~323~^0.19^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10071~^~418~^0.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10072~^~203~^19.55^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~204~^7.14^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10072~^~207~^1.02^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~255~^72.63^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~303~^1.22^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~309~^3.14^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~418~^0.84^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~203~^25.33^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~204~^13.54^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10073~^~207~^1.18^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~255~^60.64^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10073~^~303~^1.50^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~309~^4.16^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~323~^0.25^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10073~^~418~^0.86^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10074~^~203~^18.71^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~204~^12.51^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~255~^68.34^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~303~^0.57^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~309~^2.15^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~418~^0.57^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~203~^24.88^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~204~^14.33^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~255~^60.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~303~^0.92^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~309~^3.10^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~323~^0.26^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~418~^0.74^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10076~^~203~^23.47^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~204~^24.01^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10076~^~207~^0.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~255~^52.04^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~303~^1.18^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~309~^3.45^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~418~^0.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10077~^~203~^20.26^6^0.17^~1~^~A~^^^1^19.63^20.88^5^19.80^20.72^~2, 3~^~01/01/2011~ -~10077~^~204~^3.77^6^0.23^~1~^~A~^^^1^2.70^4.30^5^3.16^4.36^~2, 3~^~01/01/2011~ -~10077~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10077~^~207~^1.05^6^0.01^~1~^~A~^^^1^1.01^1.13^5^1.00^1.09^~2, 3~^~01/01/2011~ -~10077~^~255~^75.51^6^0.21^~1~^~A~^^^1^75.08^76.35^5^74.96^76.04^~2, 3~^~01/01/2011~ -~10077~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~303~^0.62^6^0.02^~1~^~A~^^^1^0.55^0.69^5^0.56^0.67^~2, 3~^~01/01/2011~ -~10077~^~309~^2.41^6^0.23^~1~^~A~^^^1^1.65^3.10^5^1.80^3.01^~2, 3~^~01/01/2011~ -~10077~^~323~^0.17^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10077~^~418~^0.55^6^0.07^~1~^~A~^^^1^0.36^0.78^5^0.37^0.73^~2, 3~^~01/01/2011~ -~10077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10078~^~203~^26.76^6^0.37^~1~^~A~^^^1^25.88^28.44^5^25.79^27.72^~2, 3~^~01/01/2011~ -~10078~^~204~^8.87^6^1.02^~1~^~A~^^^1^5.90^12.50^5^6.22^11.50^~2, 3~^~01/01/2011~ -~10078~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10078~^~207~^1.15^6^0.02^~1~^~A~^^^1^1.08^1.22^5^1.09^1.20^~2, 3~^~01/01/2011~ -~10078~^~255~^63.59^6^0.96^~1~^~A~^^^1^59.91^66.94^5^61.10^66.08^~2, 3~^~01/01/2011~ -~10078~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10078~^~303~^0.97^6^0.01^~1~^~A~^^^1^0.88^1.00^5^0.91^1.01^~2, 3~^~01/01/2011~ -~10078~^~309~^3.35^6^0.29^~1~^~A~^^^1^2.64^4.31^5^2.59^4.10^~2, 3~^~01/01/2011~ -~10078~^~323~^0.29^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10078~^~418~^0.76^6^0.05^~1~^~A~^^^1^0.55^0.94^5^0.60^0.90^~2, 3~^~01/01/2011~ -~10078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10079~^~203~^26.68^12^0.67^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~204~^12.62^12^0.85^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10079~^~207~^1.06^12^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~255~^60.27^12^0.87^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~303~^1.42^12^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~309~^4.07^12^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~418~^0.78^12^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10080~^~203~^17.42^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~204~^12.36^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~207~^0.83^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~255~^69.18^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~303~^1.12^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~309~^3.09^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10080~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10080~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10080~^~418~^0.91^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~203~^25.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~204~^17.69^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~207~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~255~^54.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~303~^1.75^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~309~^4.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~418~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10082~^~203~^25.58^13^0.31^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~204~^16.61^13^0.74^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10082~^~207~^1.08^13^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~255~^57.25^13^0.87^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10082~^~303~^1.40^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~309~^4.51^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~323~^0.29^0^^~4~^~BFSN~^~10064~^^^^^^^^^~01/01/2003~ -~10082~^~418~^1.06^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10083~^~203~^23.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~204~^18.86^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10083~^~207~^1.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~255~^57.47^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10083~^~303~^1.45^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~309~^3.96^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~323~^0.19^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10083~^~418~^0.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10084~^~203~^18.73^12^0.39^~1~^~A~^^^1^16.39^20.77^11^17.85^19.60^~2, 3~^~02/01/2007~ -~10084~^~204~^5.71^12^0.30^~1~^~A~^^^1^4.23^7.09^11^5.03^6.39^~2, 3~^~02/01/2007~ -~10084~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10084~^~207~^0.88^12^0.03^~1~^~A~^^^1^0.64^1.05^11^0.80^0.95^~2, 3~^~02/01/2007~ -~10084~^~255~^74.31^12^0.30^~1~^~A~^^^1^72.52^75.90^11^73.63^74.98^~2, 3~^~02/01/2007~ -~10084~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10084~^~303~^1.20^12^0.02^~1~^~A~^^^1^1.09^1.31^11^1.15^1.24^~2, 3~^~02/01/2007~ -~10084~^~309~^3.36^12^0.07^~1~^~A~^^^1^2.96^3.67^11^3.20^3.52^~2, 3~^~02/01/2007~ -~10084~^~323~^0.24^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2009~ -~10084~^~418~^0.91^4^0.04^~1~^~A~^^^1^0.77^0.98^3^0.75^1.06^~2, 3~^~02/01/2007~ -~10084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10085~^~203~^26.57^12^1.19^~1~^~A~^^^1^21.07^32.87^11^23.95^29.19^~2, 3~^~02/01/2007~ -~10085~^~204~^13.20^12^1.07^~1~^~A~^^^1^8.56^19.52^11^10.83^15.56^~2, 3~^~02/01/2007~ -~10085~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10085~^~207~^0.85^12^0.03^~1~^~A~^^^1^0.62^1.02^11^0.78^0.92^~2, 3~^~02/01/2007~ -~10085~^~255~^58.00^12^0.64^~1~^~A~^^^1^54.17^61.03^11^56.58^59.41^~2, 3~^~02/01/2007~ -~10085~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10085~^~303~^1.85^12^0.03^~1~^~A~^^^1^1.68^2.03^11^1.76^1.93^~2, 3~^~02/01/2007~ -~10085~^~309~^5.20^12^0.16^~1~^~A~^^^1^4.34^6.27^11^4.84^5.56^~2, 3~^~02/01/2007~ -~10085~^~323~^0.11^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2007~ -~10085~^~418~^0.90^4^0.09^~1~^~A~^^^1^0.73^1.07^3^0.59^1.21^~2, 3~^~02/01/2007~ -~10085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10086~^~203~^26.74^13^0.32^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~204~^12.54^13^0.69^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10086~^~207~^1.10^13^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~255~^60.07^13^0.91^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10086~^~303~^1.56^5^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~309~^5.02^5^0.37^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~323~^0.27^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10086~^~418~^1.13^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10087~^~203~^24.21^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~204~^14.30^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10087~^~207~^1.27^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~255~^60.94^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10087~^~303~^1.56^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~309~^4.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~323~^0.24^0^^~4~^~BFYN~^~10084~^^^^^^^^^~01/01/2003~ -~10087~^~418~^1.16^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10088~^~203~^15.47^12^0.57^~1~^~A~^^^1^11.29^18.32^11^14.21^16.73^~2, 3~^~03/01/2007~ -~10088~^~204~^23.40^12^1.67^~1~^~A~^^^1^15.35^32.90^11^19.70^27.08^~2, 3~^~03/01/2007~ -~10088~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10088~^~207~^0.67^12^0.04^~1~^~A~^^^1^0.38^0.84^11^0.57^0.76^~2, 3~^~03/01/2007~ -~10088~^~255~^59.75^12^1.41^~1~^~A~^^^1^51.96^66.08^11^56.64^62.84^~2, 3~^~03/01/2007~ -~10088~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10088~^~303~^0.91^12^0.03^~1~^~A~^^^1^0.78^1.09^11^0.84^0.98^~2, 3~^~03/01/2007~ -~10088~^~309~^2.50^12^0.09^~1~^~A~^^^1^2.05^3.11^11^2.29^2.70^~2, 3~^~03/01/2007~ -~10088~^~323~^0.37^0^^~4~^~BFSN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~418~^0.38^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10089~^~203~^29.06^6^1.92^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~204~^30.30^6^3.18^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10089~^~207~^1.12^6^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~255~^40.42^6^1.36^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10089~^~303~^1.85^5^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~309~^4.60^6^0.22^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~323~^0.34^0^^~4~^~BFSN~^~10063~^^^^^^^^^~01/01/2003~ -~10089~^~418~^1.08^6^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10093~^~203~^27.51^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~204~^9.21^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~207~^1.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~255~^62.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~303~^1.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~309~^2.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10093~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10093~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10093~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10093~^~418~^0.68^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10094~^~203~^23.75^6^0.14^~1~^~A~^^^1^23.31^24.06^5^23.38^24.11^~2, 3~^~05/01/2014~ -~10094~^~204~^3.09^6^0.28^~1~^~A~^^^1^2.42^4.19^5^2.35^3.81^~2, 3~^~05/01/2014~ -~10094~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~207~^1.14^6^0.06^~1~^~A~^^^1^0.95^1.37^5^0.98^1.31^~2, 3~^~05/01/2014~ -~10094~^~255~^72.38^6^0.20^~1~^~A~^^^1^71.78^73.11^5^71.85^72.90^~2, 3~^~05/01/2014~ -~10094~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~303~^0.48^6^0.04^~1~^~A~^^^1^0.43^0.70^5^0.37^0.59^~2, 3~^~05/01/2014~ -~10094~^~309~^1.42^6^0.04^~1~^~A~^^^1^1.24^1.50^5^1.30^1.52^~2, 3~^~05/01/2014~ -~10094~^~323~^0.18^3^0.02^~1~^~A~^^^1^0.15^0.23^2^0.08^0.28^~2, 3~^~05/01/2014~ -~10094~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~418~^0.41^3^0.03^~1~^~A~^^^1^0.36^0.48^2^0.24^0.56^~2, 3~^~05/01/2014~ -~10094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10096~^~203~^10.28^13^5.0e-03^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~204~^9.21^8^0.20^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10096~^~207~^1.13^5^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~255~^78.36^9^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~303~^1.60^5^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~309~^1.27^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~418~^2.19^3^0.40^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~203~^12.14^4^0.10^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~204~^9.51^4^0.82^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10097~^~207~^1.40^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~255~^75.88^4^0.44^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~303~^1.82^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~309~^1.48^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~418~^1.42^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10098~^~203~^7.64^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~204~^16.61^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~255~^76.11^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~303~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~309~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~323~^0.18^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~344~^0.04^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10098~^~418~^0.82^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~203~^12.49^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~204~^20.32^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10099~^~207~^0.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~255~^67.87^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~303~^1.47^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~309~^1.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~323~^0.23^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~342~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~344~^0.04^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10099~^~418~^0.42^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~10099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10100~^~203~^22.45^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~204~^15.10^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10100~^~207~^0.60^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~255~^61.25^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~303~^2.40^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~309~^0.19^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~418~^0.07^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~203~^15.95^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~204~^10.80^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10101~^~207~^0.40^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~255~^72.65^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~303~^1.50^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~309~^0.20^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~418~^0.04^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10102~^~203~^23.16^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~204~^12.59^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10102~^~207~^0.68^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~255~^64.99^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~303~^0.58^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~309~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~323~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~342~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10102~^~418~^0.52^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10102~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10103~^~203~^17.27^23^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~204~^4.36^35^0.25^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~205~^1.33^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10103~^~207~^0.84^7^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~255~^76.21^30^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~303~^4.68^10^0.34^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~309~^2.80^10^0.25^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~323~^0.63^0^^~4~^~NR~^^^^^^^^^^~10/01/2005~ -~10103~^~418~^3.79^3^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10103~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10104~^~203~^23.60^3^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~204~^5.05^8^0.20^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10104~^~207~^1.00^3^0.00^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~255~^68.08^8^0.69^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~303~^5.83^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~309~^3.09^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~418~^3.79^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~203~^6.38^8^0.47^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~204~^69.61^8^1.95^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10105~^~207~^0.32^8^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~255~^22.19^8^1.00^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~303~^0.42^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~309~^0.84^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~10/01/2005~ -~10105~^~418~^0.82^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10106~^~203~^16.46^9^0.37^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~204~^3.25^10^0.29^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10106~^~207~^1.17^10^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~255~^80.06^87^0.18^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~303~^4.89^83^0.18^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~309~^2.75^52^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~418~^8.49^3^1.85^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~203~^25.40^3^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~204~^4.70^3^0.28^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10107~^~207~^1.30^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~255~^68.70^3^0.23^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~303~^5.29^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~309~^4.15^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~418~^7.79^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~203~^1.76^24^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~204~^94.16^24^0.29^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10109~^~207~^0.10^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~255~^4.09^24^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~303~^0.09^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~309~^0.18^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~418~^0.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~203~^21.39^8^0.30^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~204~^3.65^30^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~205~^2.47^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10110~^~207~^1.44^6^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~255~^71.06^42^0.45^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~303~^23.30^30^1.55^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~309~^5.76^22^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~418~^26.00^5^2.88^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~203~^26.02^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~204~^4.40^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~205~^3.76^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10111~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~255~^64.32^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~303~^17.92^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~309~^6.72^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~418~^18.67^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~203~^14.08^5^0.62^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~204~^2.72^6^0.35^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10112~^~207~^0.80^3^0.00^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~255~^79.52^19^0.60^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~303~^18.90^3^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~309~^2.03^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~418~^2.75^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~203~^16.60^3^0.57^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~204~^3.10^3^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10113~^~207~^0.90^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~255~^80.00^3^0.63^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~303~^16.41^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~309~^2.45^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~418~^2.03^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~203~^15.03^9^0.28^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~204~^26.54^16^0.63^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10114~^~207~^1.56^9^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~255~^56.87^9^0.94^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~303~^4.25^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~309~^2.44^7^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~418~^0.58^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~203~^18.56^5^1.00^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~204~^13.24^5^1.00^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10115~^~207~^1.12^3^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~255~^67.18^5^0.83^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~303~^2.13^4^0.38^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~309~^2.62^26^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~418~^16.40^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~203~^28.50^3^0.69^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~204~^10.80^3^0.63^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10116~^~207~^1.20^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~255~^60.30^3^1.21^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~303~^2.69^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~309~^4.29^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~418~^17.07^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~203~^17.86^15^0.16^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~204~^2.59^14^0.16^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10117~^~207~^1.53^13^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~255~^78.43^16^0.18^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~303~^22.32^17^1.91^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~309~^2.54^8^0.08^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~418~^3.26^3^1.15^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~203~^28.20^3^0.98^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~204~^3.20^3^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10118~^~207~^1.70^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~255~^66.70^3^0.98^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~303~^22.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~309~^3.54^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~418~^2.76^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10119~^~203~^16.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~204~^10.14^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10119~^~207~^0.63^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~255~^73.50^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~303~^1.01^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~309~^1.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~323~^0.04^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~342~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~344~^0.00^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10119~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10119~^~418~^0.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~10119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10120~^~203~^26.38^12^0.45^~1~^~A~^^^1^24.15^29.65^11^25.37^27.38^~2, 3~^~04/01/2010~ -~10120~^~204~^12.14^12^0.48^~1~^~A~^^^1^9.92^15.64^11^11.07^13.20^~2, 3~^~04/01/2010~ -~10120~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10120~^~207~^1.28^12^0.02^~1~^~A~^^^1^1.18^1.47^11^1.22^1.33^~2, 3~^~04/01/2010~ -~10120~^~255~^61.13^12^0.46^~1~^~A~^^^1^58.41^63.30^11^60.10^62.16^~2, 3~^~04/01/2010~ -~10120~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10120~^~303~^0.88^12^0.05^~1~^~A~^^^1^0.64^1.12^11^0.75^0.99^~2, 3~^~04/01/2010~ -~10120~^~309~^3.03^12^0.16^~1~^~A~^^^1^2.29^4.23^11^2.67^3.39^~2, 3~^~04/01/2010~ -~10120~^~323~^0.22^0^^~4~^~BFYN~^~10066~^^^^^^^^^~04/01/2010~ -~10120~^~418~^0.72^6^0.06^~1~^~A~^^^1^0.53^0.93^5^0.56^0.87^~2, 3~^~04/01/2010~ -~10120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10121~^~203~^16.30^3^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~204~^17.20^3^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10121~^~207~^0.90^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~255~^65.90^3^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~303~^3.35^4^0.56^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~309~^3.01^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~10/01/2005~ -~10121~^~418~^2.84^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10122~^~203~^24.10^3^0.28^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~204~^18.60^3^1.27^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10122~^~207~^0.80^3^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~255~^56.90^3^1.03^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~303~^4.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~309~^4.53^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~418~^2.39^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10123~^~203~^13.66^17^0.48^~1~^~A~^^^1^9.31^16.31^9^12.55^14.76^~2, 3~^~03/01/2016~ -~10123~^~204~^37.13^17^1.73^~1~^~A~^^^1^26.93^49.67^9^33.22^41.03^~2, 3~^~03/01/2016~ -~10123~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~207~^2.59^17^0.05^~1~^~A~^^^1^2.13^3.18^11^2.46^2.71^~2, 3~^~03/01/2016~ -~10123~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2016~ -~10123~^~211~^0.35^2^^~1~^~A~^^^1^0.18^0.44^^^^~1~^~03/01/2016~ -~10123~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2012~ -~10123~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2012~ -~10123~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2012~ -~10123~^~255~^46.74^17^1.27^~1~^~A~^^^1^37.79^55.01^10^43.88^49.60^~2, 3~^~03/01/2016~ -~10123~^~269~^0.35^2^^~1~^~A~^^^1^0.18^0.44^^^^^~11/01/2016~ -~10123~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2012~ -~10123~^~303~^0.38^18^0.01^~1~^~A~^^^1^0.25^0.55^11^0.35^0.41^~2, 3~^~03/01/2016~ -~10123~^~309~^1.14^18^0.05^~1~^~A~^^^1^0.64^1.47^9^1.00^1.27^~2, 3~^~03/01/2016~ -~10123~^~323~^0.43^3^^~1~^~A~^^^1^0.27^0.63^^^^~2, 3~^~05/01/2012~ -~10123~^~341~^1.01^3^^~1~^~A~^^^1^0.00^1.56^^^^~1, 2, 3~^~05/01/2012~ -~10123~^~342~^0.65^3^^~1~^~A~^^^1^0.05^1.13^^^^~2, 3~^~05/01/2012~ -~10123~^~343~^0.01^3^^~1~^~A~^^^1^0.00^0.04^^^^~1, 2, 3~^~05/01/2012~ -~10123~^~344~^0.03^3^^~1~^~A~^^^1^0.00^0.05^^^^~1, 2, 3~^~02/01/2003~ -~10123~^~345~^0.02^3^^~1~^~A~^^^1^0.01^0.03^^^^~1, 2, 3~^~05/01/2012~ -~10123~^~346~^0.05^3^^~1~^~A~^^^1^0.03^0.09^^^^~2, 3~^~05/01/2012~ -~10123~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~10123~^~418~^0.50^9^0.02^~1~^~A~^^^1^0.34^0.83^3^0.42^0.58^~2, 3~^~05/01/2012~ -~10123~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10123~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10128~^~203~^11.74^38^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~204~^37.16^40^0.62^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10128~^~207~^3.00^6^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~255~^47.41^38^0.42^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~303~^0.94^6^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~309~^1.66^6^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~418~^0.99^6^0.01^~1~^^^^^^^^^^^~12/01/1992~ -~10130~^~203~^20.31^5^0.63^~1~^~A~^^^1^16.19^22.75^1^13.71^26.90^~2, 3~^~05/01/2015~ -~10130~^~204~^2.62^5^0.32^~1~^~A~^^^1^1.56^5.20^1^-1.21^6.46^~2, 3~^~05/01/2015~ -~10130~^~205~^1.34^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10130~^~207~^3.38^5^0.08^~1~^~A~^^^1^2.98^3.67^1^2.32^4.43^~2, 3~^~05/01/2015~ -~10130~^~210~^0.70^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~255~^72.34^5^0.32^~1~^~A~^^^1^71.02^73.95^1^68.78^75.89^~2, 3~^~05/01/2015~ -~10130~^~269~^0.90^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10130~^~303~^0.44^5^5.0e-03^~1~^~A~^^^1^0.37^0.60^1^0.38^0.50^~2, 3~^~05/01/2015~ -~10130~^~309~^1.23^5^0.02^~1~^~A~^^^1^1.07^1.46^1^0.99^1.46^~2, 3~^~05/01/2015~ -~10130~^~323~^0.22^2^^~1~^~A~^^^1^0.17^0.29^^^^^~05/01/2015~ -~10130~^~341~^0.06^2^^~1~^~A~^^^1^0.00^0.10^^^^~1~^~05/01/2015~ -~10130~^~342~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^^~04/01/2013~ -~10130~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10130~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10130~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10130~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10130~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10130~^~418~^0.37^3^^~1~^~A~^^^1^0.31^0.51^^^^~2, 3~^~05/01/2015~ -~10130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10132~^~203~^11.63^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~204~^10.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~205~^0.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10132~^~207~^3.35^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~255~^75.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~303~^0.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~309~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~418~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10134~^~203~^20.93^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~204~^5.53^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~205~^1.50^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10134~^~207~^4.37^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~255~^67.67^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10134~^~303~^1.48^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~309~^2.88^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~323~^0.25^0^^~4~^~BFSN~^~10153~^^^^^^^^^~01/01/2003~ -~10134~^~418~^0.65^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10136~^~203~^22.62^5^0.66^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~204~^9.02^5^0.61^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10136~^~207~^3.96^5^0.23^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~255~^64.54^5^0.58^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10136~^~303~^1.34^5^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~309~^2.47^5^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~10136~^~418~^0.70^9^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10137~^~203~^18.49^130^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~204~^4.56^22^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10137~^~207~^3.63^22^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~255~^73.52^130^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10137~^~303~^0.94^21^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~309~^1.93^21^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~323~^0.17^0^^~4~^~BFSN~^~10152~^^^^^^^^^~01/01/2003~ -~10137~^~418~^0.82^21^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10138~^~203~^21.16^4^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~204~^4.88^4^0.47^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~205~^0.52^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10138~^~207~^4.00^4^0.12^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~255~^69.45^4^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~303~^0.92^4^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~309~^2.23^4^0.14^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~418~^0.71^4^0.01^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~203~^20.53^4^0.50^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~204~^15.20^4^2.59^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~205~^0.42^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10140~^~207~^2.93^4^0.12^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~255~^60.93^4^2.09^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~303~^1.37^4^0.13^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~309~^2.50^4^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~418~^1.06^4^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~203~^27.80^6^1.02^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~204~^8.32^6^0.69^~1~^^^^^^^^^^^~03/01/2006~ -~10141~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10141~^~207~^7.65^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~255~^55.93^10^0.36^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10141~^~303~^1.11^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~309~^2.81^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~323~^0.28^0^^~4~^~BFSN~^~10066~^^^^^^^^^~04/01/2006~ -~10141~^~418~^0.88^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10142~^~203~^20.17^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~204~^12.90^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~205~^0.05^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10142~^~207~^3.42^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~255~^63.46^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~303~^0.75^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~309~^1.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~418~^0.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~203~^12.78^5^0.54^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~204~^28.19^5^3.26^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~205~^1.69^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10146~^~207~^2.93^5^0.14^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~255~^54.40^5^2.94^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~303~^1.05^4^0.23^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~309~^1.57^3^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~418~^1.08^3^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~203~^19.56^53^0.08^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~204~^4.25^53^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10149~^~207~^3.95^53^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~255~^72.24^53^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~303~^1.00^46^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~309~^2.02^46^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~418~^0.79^46^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~203~^18.49^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~204~^18.52^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10150~^~207~^3.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~255~^59.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10150~^~303~^0.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~309~^1.76^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~323~^0.27^0^^~4~^~BFSN~^~10859~^^^^^^^^^~01/01/2003~ -~10150~^~341~^0.00^0^^~4~^~BFSN~^~10859~^^^^^^^^^~10/01/2002~ -~10150~^~342~^0.05^0^^~4~^~BFSN~^~10859~^^^^^^^^^~01/01/2003~ -~10150~^~343~^0.00^0^^~4~^~BFSN~^~10859~^^^^^^^^^~10/01/2002~ -~10150~^~344~^0.03^0^^~4~^~BFSN~^~10859~^^^^^^^^^~01/01/2003~ -~10150~^~345~^0.00^0^^~4~^~BFSN~^~10859~^^^^^^^^^~10/01/2002~ -~10150~^~346~^0.03^0^^~4~^~BFSN~^~10859~^^^^^^^^^~01/01/2003~ -~10150~^~347~^0.00^0^^~4~^~BFSN~^~10859~^^^^^^^^^~10/01/2002~ -~10150~^~418~^0.74^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10152~^~203~^22.32^24^0.30^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~204~^5.71^24^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~205~^0.05^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10152~^~207~^3.66^24^0.14^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~255~^68.26^24^0.27^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10152~^~303~^0.81^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~309~^2.04^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~323~^0.20^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10152~^~418~^0.87^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10153~^~203~^25.05^29^0.25^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~204~^5.50^25^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10153~^~207~^3.74^12^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~255~^65.78^45^0.29^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10153~^~303~^0.94^21^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~309~^2.57^21^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~323~^0.26^0^^~4~^~BFYN~^~10152~^^^^^^^^^~01/01/2003~ -~10153~^~418~^0.70^5^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10163~^~203~^30.02^6^0.47^~1~^~A~^^^1^27.81^31.00^5^28.81^31.23^~2, 3~^~05/01/2014~ -~10163~^~204~^4.65^6^0.32^~1~^~A~^^^1^3.78^5.83^5^3.80^5.48^~2, 3~^~05/01/2014~ -~10163~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~207~^1.10^6^0.03^~1~^~A~^^^1^1.01^1.21^5^1.01^1.18^~2, 3~^~05/01/2014~ -~10163~^~255~^65.07^6^0.46^~1~^~A~^^^1^64.03^67.26^5^63.86^66.26^~2, 3~^~05/01/2014~ -~10163~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~303~^0.64^6^0.02^~1~^~A~^^^1^0.55^0.74^5^0.57^0.71^~2, 3~^~05/01/2014~ -~10163~^~309~^1.75^6^0.04^~1~^~A~^^^1^1.67^1.98^5^1.62^1.87^~2, 3~^~05/01/2014~ -~10163~^~323~^0.20^3^0.02^~1~^~A~^^^1^0.17^0.25^2^0.08^0.31^~2, 3~^~05/01/2014~ -~10163~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~418~^0.63^3^0.04^~1~^~A~^^^1^0.55^0.70^2^0.44^0.81^~2, 3~^~05/01/2014~ -~10163~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~10164~^~203~^21.14^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~204~^12.96^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~255~^65.15^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~303~^0.48^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~309~^1.31^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~418~^0.43^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10165~^~203~^5.05^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~204~^80.50^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10165~^~207~^3.65^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~255~^11.00^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10165~^~303~^0.44^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~309~^0.90^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~323~^0.00^0^^~4~^~BFSN~^~10004~^^^^^^^^^~01/01/2003~ -~10165~^~418~^0.29^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10166~^~203~^5.68^106^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~204~^61.41^97^0.67^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~205~^0.09^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10166~^~207~^1.77^96^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~255~^31.06^96^0.59^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10166~^~303~^0.39^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~309~^0.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~323~^0.00^0^^~4~^~BFSN~^~10006~^^^^^^^^^~01/01/2003~ -~10166~^~418~^0.33^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10167~^~203~^7.64^63^0.16^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~204~^61.86^63^0.90^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10167~^~207~^1.68^48^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~255~^28.89^63^0.79^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~303~^0.61^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~309~^1.31^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~418~^0.42^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~203~^20.43^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~204~^21.35^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10168~^~207~^3.51^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~255~^54.73^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10168~^~303~^0.95^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~309~^2.51^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~323~^0.24^0^^~4~^~BFSN~^~10062~^^^^^^^^^~01/01/2003~ -~10168~^~418~^0.93^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10169~^~203~^24.94^9^0.35^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~204~^7.04^9^0.29^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10169~^~207~^4.16^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~255~^63.86^9^0.64^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10169~^~303~^1.08^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~309~^2.94^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~323~^0.26^0^^~4~^~BFYN~^~10152~^^^^^^^^^~01/01/2003~ -~10169~^~418~^1.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10170~^~203~^16.47^26^0.48^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~204~^21.98^6^1.61^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10170~^~207~^3.85^6^0.41^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~255~^59.13^26^0.83^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~303~^0.82^4^0.10^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~309~^2.35^4^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~418~^1.30^4^0.18^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~203~^17.28^4^0.43^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~204~^23.48^4^1.22^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~205~^0.37^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10171~^~207~^2.70^4^0.14^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~255~^56.18^4^1.02^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~303~^0.89^4^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~309~^2.45^4^0.11^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~418~^1.05^4^0.18^~1~^^^^^^^^^^^~12/01/1992~ -~10173~^~203~^21.94^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~204~^16.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10173~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~255~^62.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~303~^0.98^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~309~^1.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~323~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~342~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~346~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10173~^~418~^0.41^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10174~^~203~^17.75^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~204~^33.50^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10174~^~207~^0.50^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~255~^46.05^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~303~^0.99^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~309~^2.31^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~418~^0.88^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~203~^17.00^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~204~^35.80^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10175~^~207~^0.40^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~255~^46.70^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~303~^0.79^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~309~^1.64^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~418~^0.55^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10176~^~203~^29.56^6^0.47^~1~^~A~^^^1^28.19^30.99^5^28.33^30.77^~2, 3~^~05/01/2010~ -~10176~^~204~^7.66^6^0.33^~1~^~A~^^^1^6.08^8.33^5^6.80^8.51^~2, 3~^~05/01/2010~ -~10176~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10176~^~207~^1.33^6^0.02^~1~^~A~^^^1^1.25^1.39^5^1.28^1.38^~2, 3~^~05/01/2010~ -~10176~^~255~^62.17^6^0.33^~1~^~A~^^^1^61.01^63.55^5^61.31^63.03^~2, 3~^~05/01/2010~ -~10176~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10176~^~303~^0.99^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~309~^3.42^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~323~^0.22^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10176~^~418~^0.80^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10177~^~203~^28.84^6^0.22^~1~^~A~^^^1^28.19^29.49^5^28.26^29.41^~2, 3~^~05/01/2010~ -~10177~^~204~^9.73^6^0.82^~1~^~A~^^^1^8.44^13.81^5^7.59^11.86^~2, 3~^~05/01/2010~ -~10177~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10177~^~207~^1.29^6^0.01^~1~^~A~^^^1^1.24^1.36^5^1.24^1.33^~2, 3~^~05/01/2010~ -~10177~^~255~^61.14^6^0.79^~1~^~A~^^^1^57.70^62.95^5^59.09^63.18^~2, 3~^~05/01/2010~ -~10177~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10177~^~303~^0.88^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~309~^3.03^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~323~^0.26^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10177~^~418~^0.79^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10178~^~203~^25.02^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~204~^16.56^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~207~^1.23^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~255~^58.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~303~^0.84^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~309~^2.88^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~418~^0.72^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~203~^27.63^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~204~^13.32^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~207~^1.26^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~255~^58.39^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~303~^0.93^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~309~^3.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~418~^0.79^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~203~^26.81^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~204~^15.71^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~207~^1.22^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~255~^57.11^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~303~^0.83^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~309~^2.83^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~418~^0.78^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10181~^~203~^30.46^6^0.31^~1~^~A~^^^1^29.17^31.17^5^29.65^31.26^~2, 3~^~04/01/2010~ -~10181~^~204~^4.62^6^0.34^~1~^~A~^^^1^3.29^5.56^5^3.73^5.50^~2, 3~^~04/01/2010~ -~10181~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10181~^~207~^1.29^6^0.02^~1~^~A~^^^1^1.23^1.39^5^1.23^1.34^~2, 3~^~04/01/2010~ -~10181~^~255~^64.81^6^0.56^~1~^~A~^^^1^63.65^67.47^5^63.36^66.26^~2, 3~^~04/01/2010~ -~10181~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10181~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.68^1.00^5^0.73^0.95^~2, 3~^~04/01/2010~ -~10181~^~309~^2.32^6^0.08^~1~^~A~^^^1^2.14^2.71^5^2.09^2.53^~2, 3~^~04/01/2010~ -~10181~^~323~^0.23^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10181~^~418~^0.83^0^^~4~^~BFPN~^~10120~^^^^^^^^^~04/01/2010~ -~10181~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10181~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10182~^~203~^18.26^147^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~204~^8.39^42^0.33^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~205~^2.28^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10182~^~207~^4.15^30^0.10^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~255~^66.92^147^0.29^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10182~^~303~^0.90^28^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~309~^2.05^27^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~323~^0.22^0^^~4~^~BFYN~^~10183~^^^^^^^^^~01/01/2003~ -~10182~^~418~^0.80^26^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10182~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10183~^~203~^21.97^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~204~^7.66^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~205~^0.50^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~10183~^~207~^4.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~255~^65.75^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10183~^~303~^1.40^7^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~309~^2.63^7^0.28^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10183~^~418~^0.68^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10184~^~203~^17.97^156^0.08^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~204~^7.46^34^0.31^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10184~^~207~^3.57^30^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~255~^71.12^153^0.20^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10184~^~303~^0.90^32^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~309~^1.84^32^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10184~^~418~^0.80^32^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10185~^~203~^20.94^8^0.21^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~204~^8.43^8^0.94^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~205~^0.49^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~ -~10185~^~207~^3.63^8^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~255~^66.52^8^0.78^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10185~^~303~^1.07^8^0.09^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~309~^2.32^8^0.10^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~323~^0.25^0^^~4~^~BFYN~^~10184~^^^^^^^^^~01/01/2003~ -~10185~^~418~^0.83^8^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10186~^~203~^29.36^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~204~^7.86^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~207~^1.26^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~255~^62.62^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~309~^2.26^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~418~^0.82^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10187~^~203~^18.95^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~204~^14.95^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10187~^~207~^0.94^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~255~^65.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~303~^0.86^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~309~^2.01^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~418~^0.66^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10188~^~203~^26.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~204~^13.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~255~^58.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~309~^3.06^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~323~^0.13^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~418~^0.70^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10189~^~203~^26.68^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~204~^13.60^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~255~^59.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~303~^0.62^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~309~^1.60^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~418~^0.61^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10192~^~203~^19.07^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~204~^16.33^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~255~^63.47^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~303~^0.76^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~309~^2.54^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~418~^0.56^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~203~^23.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~204~^21.51^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~255~^54.82^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~303~^0.92^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~309~^3.07^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~418~^0.74^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10194~^~203~^19.90^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~204~^14.01^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10194~^~207~^0.89^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~255~^66.15^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~303~^0.71^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~309~^1.57^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~10/01/2005~ -~10194~^~418~^0.50^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10194~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10195~^~203~^26.29^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~204~^15.79^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10195~^~207~^1.20^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~255~^58.15^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~303~^0.92^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~309~^2.07^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~418~^0.44^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~203~^27.63^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~204~^15.76^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10196~^~207~^1.12^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~255~^53.37^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~303~^0.77^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~309~^2.26^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~418~^0.67^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~203~^25.82^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~204~^18.05^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10197~^~207~^1.18^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~255~^56.34^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10197~^~303~^0.73^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~309~^2.04^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~323~^0.20^0^^~4~^~BFYN~^~10062~^^^^^^^^^~01/01/2003~ -~10197~^~418~^0.59^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10197~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10198~^~203~^26.99^15^0.39^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~204~^15.15^15^0.88^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10198~^~207~^1.11^15^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~255~^57.33^15^0.86^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~303~^0.93^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~309~^2.64^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~418~^0.56^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~203~^21.80^53^0.33^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~204~^6.48^15^0.33^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10199~^~207~^0.98^49^0.01^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~255~^71.98^15^0.19^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~303~^0.77^60^0.01^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~309~^1.69^48^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~323~^0.18^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10199~^~418~^0.53^11^0.04^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10199~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10200~^~203~^27.95^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~204~^10.14^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10200~^~207~^1.26^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~255~^62.25^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10200~^~303~^0.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~309~^2.16^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~323~^0.21^0^^~4~^~BFSN~^~10067~^^^^^^^^^~01/01/2003~ -~10200~^~418~^0.44^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10201~^~203~^29.46^15^0.26^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~204~^10.05^15^0.45^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10201~^~207~^1.16^15^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~255~^56.95^15^3.54^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~303~^0.82^17^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~309~^2.38^17^0.07^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~418~^0.70^12^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~203~^27.68^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~204~^11.80^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10202~^~207~^1.24^0^^~1~^^^^^^^^^^^~10/01/2004~ -~10202~^~255~^60.86^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10202~^~303~^0.78^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~309~^2.14^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~323~^0.22^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10202~^~418~^0.61^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~10202~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10203~^~203~^28.81^15^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~204~^10.13^15^0.46^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10203~^~207~^1.14^15^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~255~^60.61^15^0.72^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~303~^1.00^5^0.05^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~309~^2.83^5^0.17^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~418~^0.55^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10204~^~203~^19.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~204~^11.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~255~^68.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~303~^0.85^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~309~^2.78^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~418~^1.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~203~^26.49^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~204~^17.71^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~255~^53.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~303~^1.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~309~^4.23^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~418~^0.96^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10206~^~203~^21.75^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~204~^29.46^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~207~^0.99^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~255~^48.38^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~303~^1.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~309~^2.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~323~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~418~^0.76^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10207~^~203~^20.76^12^0.35^~1~^~A~^^^1^18.59^22.91^11^19.98^21.52^~2, 3~^~03/01/2007~ -~10207~^~204~^5.64^12^0.68^~1~^~A~^^^1^3.40^11.03^11^4.13^7.15^~2, 3~^~03/01/2007~ -~10207~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10207~^~207~^1.01^12^0.03^~1~^~A~^^^1^0.79^1.24^11^0.93^1.09^~2, 3~^~03/01/2007~ -~10207~^~255~^72.84^12^0.63^~1~^~A~^^^1^67.75^75.64^11^71.44^74.23^~2, 3~^~03/01/2007~ -~10207~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10207~^~303~^0.90^12^0.04^~1~^~A~^^^1^0.62^1.09^11^0.79^1.00^~2, 3~^~03/01/2007~ -~10207~^~309~^3.00^12^0.18^~1~^~A~^^^1^1.82^4.19^11^2.58^3.40^~2, 3~^~03/01/2007~ -~10207~^~323~^0.25^0^^~4~^~BFSN~^~10060~^^^^^^^^^~03/01/2007~ -~10207~^~418~^1.01^0^^~4~^~BFPN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10207~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10208~^~203~^27.74^12^1.00^~1~^~A~^^^1^22.27^33.83^11^25.53^29.94^~2, 3~^~03/01/2007~ -~10208~^~204~^14.26^12^1.41^~1~^~A~^^^1^8.74^23.86^11^11.15^17.36^~2, 3~^~03/01/2007~ -~10208~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10208~^~207~^0.92^12^0.02^~1~^~A~^^^1^0.79^1.07^11^0.86^0.97^~2, 3~^~03/01/2007~ -~10208~^~255~^56.16^12^1.18^~1~^~A~^^^1^50.31^63.69^11^53.54^58.77^~2, 3~^~03/01/2007~ -~10208~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~303~^1.39^12^0.05^~1~^~A~^^^1^1.00^1.69^11^1.27^1.50^~2, 3~^~03/01/2007~ -~10208~^~309~^4.46^12^0.20^~1~^~A~^^^1^3.08^5.47^11^4.00^4.91^~2, 3~^~03/01/2007~ -~10208~^~323~^0.11^0^^~4~^~BFSN~^~10061~^^^^^^^^^~03/01/2007~ -~10208~^~418~^0.94^0^^~4~^~BFPN~^~10085~^^^^^^^^^~03/01/2007~ -~10208~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10209~^~203~^29.20^6^0.64^~1~^~A~^^^1^27.69^31.75^5^27.54^30.85^~2, 3~^~02/01/2011~ -~10209~^~204~^11.38^6^0.83^~1~^~A~^^^1^8.00^13.30^5^9.23^13.53^~2, 3~^~02/01/2011~ -~10209~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10209~^~207~^1.26^6^0.03^~1~^~A~^^^1^1.16^1.34^5^1.18^1.34^~2, 3~^~02/01/2011~ -~10209~^~255~^58.72^6^0.34^~1~^~A~^^^1^58.06^59.91^5^57.82^59.60^~2, 3~^~02/01/2011~ -~10209~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~303~^0.98^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~309~^3.94^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~323~^0.27^0^^~4~^~BFSN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~418~^0.90^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10210~^~203~^22.49^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~204~^4.05^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~207~^1.28^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~255~^73.16^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~303~^0.55^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~309~^1.70^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~418~^0.49^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~203~^28.41^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~204~^5.47^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~207~^1.41^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~255~^65.78^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~303~^0.71^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~309~^2.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~418~^0.62^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~203~^28.19^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~204~^5.53^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~207~^1.37^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~255~^65.98^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~303~^0.87^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~309~^2.15^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~323~^0.26^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~418~^0.75^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~203~^29.62^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~204~^7.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~207~^1.42^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~255~^62.82^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~303~^0.66^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~309~^2.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~418~^0.93^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10214~^~203~^22.81^12^0.24^~1~^~A~^^^1^20.25^23.63^11^22.26^23.34^~2, 3~^~02/01/2011~ -~10214~^~204~^2.59^18^0.17^~1~^~A~^^^1^1.70^4.70^17^2.21^2.96^~2, 3~^~02/01/2011~ -~10214~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10214~^~207~^1.30^12^0.09^~1~^~A~^^^1^1.12^1.99^11^1.09^1.49^~2, 3~^~02/01/2011~ -~10214~^~255~^74.30^12^0.29^~1~^~A~^^^1^72.15^76.20^11^73.66^74.94^~2, 3~^~02/01/2011~ -~10214~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~303~^0.56^12^0.02^~1~^~A~^^^1^0.38^0.65^11^0.51^0.60^~2, 3~^~02/01/2011~ -~10214~^~309~^1.72^12^0.03^~1~^~A~^^^1^1.58^1.90^11^1.65^1.79^~2, 3~^~02/01/2011~ -~10214~^~323~^0.17^0^^~4~^~BFSN~^~10066~^^^^^^^^^~01/01/2003~ -~10214~^~418~^0.49^4^0.03^~1~^~A~^^^1^0.45^0.58^3^0.39^0.58^~2, 3~^~02/01/2011~ -~10214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10214~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10215~^~203~^28.75^12^0.26^~1~^~A~^^^1^27.00^30.38^11^28.17^29.32^~2, 3~^~01/01/2011~ -~10215~^~204~^4.50^12^0.37^~1~^~A~^^^1^3.10^7.50^11^3.67^5.32^~2, 3~^~01/01/2011~ -~10215~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10215~^~207~^1.43^12^0.05^~1~^~A~^^^1^1.13^1.81^11^1.30^1.55^~2, 3~^~01/01/2011~ -~10215~^~255~^66.41^12^0.54^~1~^~A~^^^1^61.83^69.23^11^65.21^67.61^~2, 3~^~01/01/2011~ -~10215~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~303~^0.71^12^0.02^~1~^~A~^^^1^0.52^0.82^11^0.64^0.76^~2, 3~^~01/01/2011~ -~10215~^~309~^2.04^12^0.05^~1~^~A~^^^1^1.73^2.22^11^1.92^2.15^~2, 3~^~01/01/2011~ -~10215~^~323~^0.18^0^^~4~^~BFSN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~418~^0.63^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10216~^~203~^28.60^12^0.46^~1~^~A~^^^1^24.69^31.38^11^27.56^29.63^~2, 3~^~01/01/2011~ -~10216~^~204~^4.36^18^0.35^~1~^~A~^^^1^2.70^7.80^17^3.60^5.11^~2, 3~^~01/01/2011~ -~10216~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10216~^~207~^1.38^12^0.06^~1~^~A~^^^1^1.23^2.10^11^1.23^1.53^~2, 3~^~01/01/2011~ -~10216~^~255~^66.75^12^0.67^~1~^~A~^^^1^61.90^71.17^11^65.27^68.22^~2, 3~^~01/01/2011~ -~10216~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10216~^~303~^0.88^12^0.04^~1~^~A~^^^1^0.56^1.17^11^0.77^0.97^~2, 3~^~01/01/2011~ -~10216~^~309~^2.18^12^0.04^~1~^~A~^^^1^1.92^2.43^11^2.07^2.28^~2, 3~^~01/01/2011~ -~10216~^~323~^0.26^0^^~4~^~BFSN~^~10068~^^^^^^^^^~01/01/2003~ -~10216~^~418~^0.75^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10217~^~203~^30.39^12^0.48^~1~^~A~^^^1^27.63^32.88^11^29.32^31.45^~2, 3~^~01/01/2011~ -~10217~^~204~^5.31^18^0.28^~1~^~A~^^^1^3.50^8.30^17^4.71^5.89^~2, 3~^~01/01/2011~ -~10217~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10217~^~207~^1.45^12^0.04^~1~^~A~^^^1^1.27^1.72^11^1.36^1.54^~2, 3~^~01/01/2011~ -~10217~^~255~^64.07^12^0.39^~1~^~A~^^^1^62.19^66.55^11^63.21^64.92^~2, 3~^~01/01/2011~ -~10217~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10217~^~303~^0.66^12^0.06^~1~^~A~^^^1^0.06^0.86^11^0.52^0.80^~2, 3~^~01/01/2011~ -~10217~^~309~^2.25^12^0.09^~1~^~A~^^^1^1.65^2.77^11^2.04^2.44^~2, 3~^~01/01/2011~ -~10217~^~323~^0.20^0^^~4~^~BFYN~^~10066~^^^^^^^^^~01/01/2003~ -~10217~^~418~^0.94^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10218~^~203~^20.65^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~204~^3.53^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~207~^1.01^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~255~^74.97^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~309~^1.87^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~323~^0.22^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~418~^0.52^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10219~^~203~^16.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~204~^21.19^12^1.54^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10219~^~207~^0.87^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~255~^61.06^12^1.17^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~303~^0.88^5^0.02^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~309~^2.20^5^0.06^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~418~^0.70^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~203~^25.69^13^0.48^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~204~^20.77^13^0.97^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10220~^~207~^1.29^13^0.15^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~255~^52.75^13^0.67^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~10220~^~303~^1.29^5^0.03^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~309~^3.21^5^0.20^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~323~^0.21^0^^~4~^~BFSN~^~10188~^^^^^^^^^~01/01/2003~ -~10220~^~418~^0.54^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~10221~^~203~^29.86^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~204~^8.11^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10221~^~207~^2.49^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~255~^61.09^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~303~^1.39^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~309~^2.89^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~418~^0.98^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10222~^~203~^26.04^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~204~^3.96^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~207~^1.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~255~^69.11^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~303~^1.15^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~309~^2.41^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~323~^0.08^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~418~^0.57^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10223~^~203~^30.42^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~204~^6.33^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10223~^~207~^2.55^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~255~^62.30^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~303~^1.43^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~309~^2.95^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~418~^1.00^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10224~^~203~^21.34^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~204~^8.33^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~255~^70.14^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~303~^0.53^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~309~^1.73^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10224~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10224~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10224~^~418~^0.54^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10225~^~203~^22.39^12^0.40^~1~^~A~^^^1^18.55^23.91^11^21.51^23.27^~2, 3~^~03/01/2007~ -~10225~^~204~^4.06^12^0.37^~1~^~A~^^^1^2.48^6.25^11^3.24^4.88^~2, 3~^~03/01/2007~ -~10225~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10225~^~207~^1.01^12^0.02^~1~^~A~^^^1^0.84^1.11^11^0.95^1.06^~2, 3~^~03/01/2007~ -~10225~^~255~^73.28^12^0.60^~1~^~A~^^^1^69.75^76.42^11^71.95^74.60^~2, 3~^~03/01/2007~ -~10225~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10225~^~303~^0.54^12^0.04^~1~^~A~^^^1^0.37^0.84^11^0.44^0.63^~2, 3~^~03/01/2007~ -~10225~^~309~^1.80^12^0.14^~1~^~A~^^^1^1.33^2.89^11^1.48^2.11^~2, 3~^~03/01/2007~ -~10225~^~323~^0.13^0^^~4~^~BFSN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~418~^0.51^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10225~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10226~^~203~^20.08^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~204~^10.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~255~^69.13^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~303~^0.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~309~^2.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10226~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10226~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10226~^~418~^0.64^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~203~^26.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~204~^13.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~255~^59.43^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~303~^0.93^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~309~^2.56^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~418~^0.68^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10228~^~203~^21.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~204~^5.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10228~^~207~^1.05^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~255~^72.23^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~303~^0.88^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~309~^1.99^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~418~^0.66^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~203~^29.47^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~204~^9.44^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1992~ -~10229~^~207~^1.19^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~255~^60.30^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~303~^1.07^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~309~^2.87^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~418~^0.75^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10851~^~203~^18.43^326^0.61^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~204~^3.59^375^0.89^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10851~^~207~^3.52^48^0.14^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~255~^74.25^85^0.84^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~10851~^~303~^0.80^9^0.06^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~309~^2.00^10^0.11^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~203~^18.20^14^0.71^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~204~^3.07^16^0.35^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~205~^4.63^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10852~^~207~^2.20^8^0.31^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~255~^71.90^15^0.41^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~269~^3.33^5^0.49^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~303~^1.00^8^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~309~^1.50^8^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~203~^17.21^18^0.54^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~204~^3.80^18^0.61^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~205~^1.82^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10853~^~207~^2.73^9^0.13^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~255~^74.44^18^0.37^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~269~^0.14^5^0.03^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~303~^1.10^9^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~309~^1.40^9^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~203~^17.83^19^0.94^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~204~^4.16^55^0.76^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~205~^1.79^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10854~^~207~^2.69^14^0.26^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~255~^73.53^17^1.11^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~269~^0.22^5^0.15^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~303~^0.60^5^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~309~^1.30^5^0.20^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~203~^18.74^16^0.55^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~204~^9.62^20^2.30^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~205~^0.84^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10855~^~207~^1.63^12^0.11^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~255~^69.17^17^1.71^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~269~^0.28^5^0.20^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~303~^0.60^5^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~309~^1.50^5^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~203~^19.02^25^1.01^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~204~^7.18^26^1.47^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~205~^0.76^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10856~^~207~^1.69^12^0.08^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~255~^71.35^26^1.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~269~^0.08^5^0.06^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~303~^0.60^5^0.10^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~309~^1.60^5^0.40^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10857~^~203~^16.88^727^0.46^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~204~^4.94^802^0.68^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~205~^1.87^0^^~4~^~NC~^^^^^^^^^^~05/01/1999~ -~10857~^~207~^3.36^187^0.14^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~255~^72.95^139^0.73^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~269~^1.43^7^0.05^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~303~^0.90^6^0.10^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~309~^1.80^6^0.10^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10858~^~203~^28.95^4^0.81^~1~^~A~^^^1^26.97^30.89^3^26.34^31.55^~2, 3~^~02/01/2003~ -~10858~^~204~^5.00^12^0.21^~1~^~A~^^^2^4.10^6.80^3^4.33^5.67^~2, 3~^~02/01/2003~ -~10858~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~207~^1.68^4^0.12^~1~^~A~^^^1^1.43^2.03^3^1.28^2.08^~2, 3~^~02/01/2003~ -~10858~^~255~^64.49^12^0.25^~1~^~A~^^^2^63.26^66.48^3^63.69^65.29^~2, 3~^~02/01/2003~ -~10858~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10858~^~303~^0.63^4^7.0e-03^~1~^~A~^^^1^0.61^0.64^3^0.60^0.64^~2, 3~^~02/01/2003~ -~10858~^~309~^2.02^4^0.06^~1~^~A~^^^1^1.85^2.14^3^1.82^2.21^~2, 3~^~02/01/2003~ -~10858~^~323~^0.23^8^^~1~^~A~^^^1^0.20^0.27^^^^~2, 3~^~02/01/2003~ -~10858~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10858~^~342~^0.05^8^^~1~^~A~^^^1^0.03^0.06^^^^~2, 3~^~02/01/2003~ -~10858~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10858~^~344~^0.02^6^^~1~^~A~^^^1^0.00^0.04^^^^~2, 3~^~02/01/2003~ -~10858~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10858~^~346~^0.02^6^^~1~^~A~^^^1^0.00^0.03^^^^~2, 3~^~02/01/2003~ -~10858~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10858~^~418~^0.52^4^0.03^~1~^~A~^^^1^0.42^0.60^3^0.39^0.63^~2, 3~^~02/01/2003~ -~10858~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10858~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10859~^~203~^28.35^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~204~^7.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~10859~^~207~^1.67^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~255~^62.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~303~^0.63^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~309~^1.98^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~323~^0.24^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~418~^0.55^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10860~^~203~^35.73^4^1.59^~1~^~A~^^^1^32.44^39.41^3^30.65^40.81^~2, 3~^~02/01/2003~ -~10860~^~204~^43.27^4^1.27^~1~^~A~^^^1^40.71^46.78^3^39.20^47.32^~2, 3~^~02/01/2003~ -~10860~^~205~^1.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~207~^7.12^4^0.22^~1~^~A~^^^1^6.67^7.72^3^6.41^7.83^~2, 3~^~02/01/2003~ -~10860~^~255~^12.52^4^0.69^~1~^~A~^^^1^11.18^14.47^3^10.30^14.73^~2, 3~^~02/01/2003~ -~10860~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~303~^1.49^4^0.15^~1~^~A~^^^1^1.20^1.92^3^0.98^1.99^~2, 3~^~02/01/2003~ -~10860~^~309~^3.36^4^0.10^~1~^~A~^^^1^3.04^3.48^3^3.02^3.70^~2, 3~^~02/01/2003~ -~10860~^~323~^0.32^8^^~1~^~A~^^^1^0.27^0.34^^^^~2, 3~^~02/01/2003~ -~10860~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10860~^~342~^0.07^4^^~1~^~A~^^^1^0.06^0.07^^^^~2, 3~^~02/01/2003~ -~10860~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~10860~^~344~^0.03^4^^~1~^~A~^^^1^0.00^0.06^^^^~2, 3~^~02/01/2003~ -~10860~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10860~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~10860~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~02/01/2003~ -~10860~^~418~^1.16^4^0.04^~1~^~A~^^^1^1.07^1.29^3^1.01^1.30^~2, 3~^~02/01/2003~ -~10860~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10860~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10861~^~203~^39.01^18^0.50^~1~^~A~^^^1^35.50^43.70^11^37.90^40.11^~2, 3~^~05/01/2012~ -~10861~^~204~^34.12^18^0.61^~1~^~A~^^^1^28.90^40.30^10^32.75^35.49^~2, 3~^~05/01/2012~ -~10861~^~205~^0.48^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~207~^6.01^18^0.08^~1~^~A~^^^1^5.31^6.76^14^5.83^6.19^~2, 3~^~05/01/2012~ -~10861~^~255~^20.38^18^0.56^~1~^~A~^^^1^16.40^26.90^12^19.15^21.60^~2, 3~^~05/01/2012~ -~10861~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10861~^~303~^1.14^18^0.02^~1~^~A~^^^1^0.92^1.33^15^1.08^1.20^~2, 3~^~05/01/2012~ -~10861~^~309~^3.51^18^0.09^~1~^~A~^^^1^2.74^4.24^13^3.30^3.71^~2, 3~^~05/01/2012~ -~10861~^~323~^0.48^3^^~1~^~A~^^^1^0.29^0.73^^^^~2, 3~^~05/01/2012~ -~10861~^~341~^0.68^3^^~1~^~A~^^^1^0.00^1.05^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~342~^0.22^3^^~1~^~A~^^^1^0.05^0.46^^^^~2, 3~^~05/01/2012~ -~10861~^~343~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~10861~^~344~^0.03^3^^~1~^~A~^^^1^0.00^0.06^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~345~^0.01^3^^~1~^~A~^^^1^0.01^0.02^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~346~^0.04^3^^~1~^~A~^^^1^0.02^0.06^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~10861~^~418~^1.00^9^0.03^~1~^~A~^^^1^0.78^1.20^4^0.92^1.08^~2, 3~^~05/01/2012~ -~10861~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10861~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10862~^~203~^33.92^18^0.54^~1~^~A~^^^1^28.80^37.70^10^32.70^35.14^~2, 3~^~05/01/2013~ -~10862~^~204~^35.09^18^0.98^~1~^~A~^^^1^29.40^40.00^8^32.82^37.35^~2, 3~^~05/01/2013~ -~10862~^~205~^1.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~207~^5.64^18^0.11^~1~^~A~^^^1^4.66^6.46^7^5.36^5.91^~2, 3~^~05/01/2013~ -~10862~^~255~^23.65^18^0.95^~1~^~A~^^^1^17.70^31.20^6^21.28^26.01^~2, 3~^~05/01/2013~ -~10862~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10862~^~303~^0.95^18^0.01^~1~^~A~^^^1^0.84^1.09^6^0.90^0.99^~2, 3~^~05/01/2013~ -~10862~^~309~^3.06^18^0.05^~1~^~A~^^^1^2.53^3.47^10^2.93^3.17^~2, 3~^~05/01/2013~ -~10862~^~323~^0.42^3^^~1~^~A~^^^1^0.34^0.50^^^^~2, 3~^~05/01/2013~ -~10862~^~341~^1.17^3^^~1~^~A~^^^1^0.00^1.38^^^^~1, 2, 3~^~05/01/2013~ -~10862~^~342~^0.52^3^^~1~^~A~^^^1^0.07^0.73^^^^~2, 3~^~05/01/2013~ -~10862~^~343~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~344~^0.05^3^^~1~^~A~^^^1^0.00^0.09^^^^~1, 2, 3~^~05/01/2013~ -~10862~^~345~^0.01^3^^~1~^~A~^^^1^0.00^0.02^^^^~1, 2, 3~^~05/01/2012~ -~10862~^~346~^0.05^3^^~1~^~A~^^^1^0.04^0.07^^^^~2, 3~^~05/01/2012~ -~10862~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~418~^1.09^9^0.16^~1~^~A~^^^1^0.59^2.10^4^0.64^1.54^~2, 3~^~05/01/2013~ -~10862~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10862~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10863~^~203~^21.40^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~204~^7.26^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~205~^0.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~10863~^~207~^0.52^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~255~^70.72^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~303~^1.23^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~309~^2.92^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~323~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~344~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10863~^~418~^0.48^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10864~^~203~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~204~^99.50^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~10864~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~10864~^~207~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~255~^0.25^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~303~^0.13^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~309~^0.06^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~323~^0.00^0^^~4~^~BFNN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~418~^0.09^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10864~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~203~^21.41^5^1.10^~1~^~A~^^^1^19.22^24.70^4^18.35^24.46^~2, 3~^~03/01/2006~ -~10865~^~204~^3.56^5^0.36^~1~^~A~^^^1^2.37^4.45^4^2.55^4.57^~2, 3~^~03/01/2006~ -~10865~^~205~^0.87^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10865~^~207~^3.23^5^0.16^~1~^~A~^^^1^2.86^3.62^4^2.78^3.68^~2, 3~^~03/01/2006~ -~10865~^~210~^0.75^4^0.44^~1~^~A~^^^1^0.00^1.73^3^-0.66^2.16^~1, 2, 3~^~03/01/2006~ -~10865~^~211~^0.04^4^0.04^~1~^~A~^^^1^0.00^0.17^3^-0.09^0.17^~1, 2, 3~^~03/01/2006~ -~10865~^~212~^0.05^4^0.04^~1~^~A~^^^1^0.00^0.20^3^-0.10^0.20^~1, 2, 3~^~03/01/2006~ -~10865~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~214~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~255~^70.92^5^1.33^~1~^~A~^^^1^67.13^75.42^4^67.22^74.61^~2, 3~^~03/01/2006~ -~10865~^~269~^0.84^4^0.39^~1~^~A~^^^1^0.00^1.73^3^-0.42^2.11^~2, 3~^~03/01/2006~ -~10865~^~287~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~303~^0.71^2^^~1~^~A~^^^1^0.70^0.72^1^^^^~03/01/2006~ -~10865~^~309~^1.81^2^^~1~^~A~^^^1^1.73^1.89^1^^^^~03/01/2006~ -~10865~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~342~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~346~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10865~^~418~^0.36^2^^~1~^~A~^^^1^0.29^0.43^1^^^^~03/01/2006~ -~10865~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10865~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~203~^15.43^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~204~^3.48^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~205~^0.67^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10866~^~207~^3.49^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~210~^0.59^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~211~^0.03^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~212~^0.04^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~213~^0.00^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~214~^0.00^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~255~^77.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~269~^0.67^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~287~^0.00^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~303~^1.13^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~309~^1.37^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~323~^0.16^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~341~^0.00^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~342~^0.04^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~343~^0.00^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~ -~10866~^~418~^0.54^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10866~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~203~^20.92^6^1.06^~1~^~A~^^^1^17.42^25.38^5^18.17^23.67^~2, 3~^~03/01/2006~ -~10867~^~204~^4.43^6^0.61^~1~^~A~^^^1^2.15^6.65^5^2.85^5.99^~2, 3~^~03/01/2006~ -~10867~^~205~^1.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10867~^~207~^3.48^6^0.19^~1~^~A~^^^1^2.77^3.87^5^2.99^3.96^~2, 3~^~03/01/2006~ -~10867~^~210~^0.70^5^0.40^~1~^~A~^^^1^0.00^1.72^4^-0.41^1.82^~1, 2, 3~^~03/01/2006~ -~10867~^~211~^0.15^5^0.14^~1~^~A~^^^1^0.00^0.73^4^-0.26^0.55^~1, 2, 3~^~03/01/2006~ -~10867~^~212~^0.06^5^0.06^~1~^~A~^^^1^0.00^0.32^4^-0.11^0.23^~1, 2, 3~^~03/01/2006~ -~10867~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10867~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10867~^~255~^69.97^6^1.28^~1~^~A~^^^1^65.37^75.25^5^66.65^73.28^~2, 3~^~03/01/2006~ -~10867~^~269~^0.91^5^0.33^~1~^~A~^^^1^0.00^1.72^4^-0.02^1.84^~2, 3~^~03/01/2006~ -~10867~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10867~^~303~^1.56^3^0.42^~1~^~A~^^^1^1.06^2.40^2^-0.24^3.37^~2, 3~^~03/01/2006~ -~10867~^~309~^3.09^3^0.56^~1~^~A~^^^1^2.00^3.92^2^0.64^5.53^~2, 3~^~03/01/2006~ -~10867~^~323~^0.28^2^^~1~^~A~^^^1^0.21^0.35^1^^^^~03/01/2006~ -~10867~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2006~ -~10867~^~342~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~03/01/2006~ -~10867~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~03/01/2006~ -~10867~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~03/01/2006~ -~10867~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10867~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~03/01/2006~ -~10867~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10867~^~418~^0.60^3^0.13^~1~^~A~^^^1^0.38^0.84^2^0.03^1.17^~2, 3~^~03/01/2006~ -~10867~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10867~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~203~^22.04^8^0.58^~1~^~A~^^^1^19.35^23.90^7^20.65^23.42^~2, 3~^~03/01/2006~ -~10868~^~204~^4.30^8^0.41^~1~^~A~^^^1^2.98^6.19^7^3.31^5.28^~2, 3~^~03/01/2006~ -~10868~^~205~^1.48^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10868~^~207~^4.06^8^0.15^~1~^~A~^^^1^3.63^4.93^7^3.70^4.41^~2, 3~^~03/01/2006~ -~10868~^~210~^0.32^7^0.21^~1~^~A~^^^1^0.00^1.37^6^-0.20^0.84^~1, 2, 3~^~03/01/2006~ -~10868~^~211~^1.10^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10868~^~212~^0.06^7^0.05^~1~^~A~^^^1^0.00^0.41^6^-0.08^0.20^~1, 2, 3~^~03/01/2006~ -~10868~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~255~^68.58^8^0.89^~1~^~A~^^^1^66.28^72.87^7^66.46^70.68^~2, 3~^~03/01/2006~ -~10868~^~269~^1.48^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10868~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~303~^1.12^5^0.09^~1~^~A~^^^1^0.94^1.49^4^0.85^1.39^~2, 3~^~03/01/2006~ -~10868~^~309~^2.29^5^0.04^~1~^~A~^^^1^2.20^2.45^4^2.16^2.42^~2, 3~^~03/01/2006~ -~10868~^~323~^0.26^4^0.02^~1~^~A~^^^1^0.21^0.33^3^0.17^0.34^~2, 3~^~03/01/2006~ -~10868~^~341~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10868~^~342~^0.05^4^6.0e-03^~1~^~A~^^^1^0.04^0.07^3^0.03^0.07^~2, 3~^~03/01/2006~ -~10868~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.01^0.08^~1, 2, 3~^~03/01/2006~ -~10868~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~418~^0.58^5^0.02^~1~^~A~^^^1^0.52^0.67^4^0.51^0.65^~2, 3~^~03/01/2006~ -~10868~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~203~^20.90^5^0.54^~1~^~A~^^^1^19.84^22.96^4^19.38^22.41^~2, 3~^~03/01/2006~ -~10869~^~204~^3.63^5^0.24^~1~^~A~^^^1^3.05^4.35^4^2.96^4.29^~2, 3~^~03/01/2006~ -~10869~^~205~^1.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~207~^3.90^5^0.31^~1~^~A~^^^1^3.09^4.83^4^3.02^4.78^~2, 3~^~03/01/2006~ -~10869~^~210~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~211~^1.10^4^0.64^~1~^~A~^^^1^0.00^2.42^3^-0.94^3.14^~1, 2, 3~^~03/01/2006~ -~10869~^~212~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~214~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~255~^70.21^5^0.56^~1~^~A~^^^1^68.65^71.34^4^68.64^71.78^~2, 3~^~03/01/2006~ -~10869~^~269~^1.10^4^0.64^~1~^~A~^^^1^0.00^2.42^3^-0.94^3.14^~2, 3~^~03/01/2006~ -~10869~^~287~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~303~^0.93^3^0.04^~1~^~A~^^^1^0.83^0.98^2^0.72^1.13^~2, 3~^~03/01/2006~ -~10869~^~309~^2.25^3^0.03^~1~^~A~^^^1^2.20^2.32^2^2.10^2.40^~2, 3~^~03/01/2006~ -~10869~^~323~^0.13^2^^~1~^~A~^^^1^0.10^0.16^1^^^^~03/01/2006~ -~10869~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~03/01/2006~ -~10869~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~03/01/2006~ -~10869~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10869~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2006~ -~10869~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10869~^~346~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~03/01/2006~ -~10869~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10869~^~418~^0.46^3^0.03^~1~^~A~^^^1^0.39^0.50^2^0.31^0.60^~2, 3~^~03/01/2006~ -~10869~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~203~^15.09^4^0.08^~1~^~A~^^^1^14.97^15.33^3^14.83^15.35^~2, 3~^~03/01/2006~ -~10870~^~204~^5.06^4^1.34^~1~^~A~^^^1^2.35^8.00^3^0.76^9.34^~2, 3~^~03/01/2006~ -~10870~^~205~^4.69^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10870~^~207~^4.27^4^0.06^~1~^~A~^^^1^4.09^4.37^3^4.06^4.46^~2, 3~^~03/01/2006~ -~10870~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10870~^~211~^4.04^4^0.65^~1~^~A~^^^1^3.01^5.76^3^1.97^6.10^~2, 3~^~03/01/2006~ -~10870~^~212~^0.48^4^0.48^~1~^~A~^^^1^0.00^1.92^3^-1.04^2.01^~1, 2, 3~^~03/01/2006~ -~10870~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10870~^~214~^0.17^4^0.10^~1~^~A~^^^1^0.00^0.35^3^-0.14^0.49^~1, 2, 3~^~03/01/2006~ -~10870~^~255~^71.20^4^1.33^~1~^~A~^^^1^67.76^73.39^3^66.93^75.46^~2, 3~^~03/01/2006~ -~10870~^~269~^4.69^4^0.76^~1~^~A~^^^1^3.35^6.26^3^2.25^7.13^~2, 3~^~03/01/2006~ -~10870~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10870~^~303~^0.74^2^^~1~^~A~^^^1^0.72^0.77^1^^^^~03/01/2006~ -~10870~^~309~^1.64^2^^~1~^~A~^^^1^1.45^1.82^1^^^^~03/01/2006~ -~10870~^~323~^0.12^2^^~1~^~A~^^^1^0.12^0.13^1^^^^~03/01/2006~ -~10870~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10870~^~342~^0.03^2^^~1~^~A~^^^1^0.03^0.04^1^^^^~03/01/2006~ -~10870~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10870~^~344~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~03/01/2006~ -~10870~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10870~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10870~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10870~^~418~^0.44^2^^~1~^~A~^^^1^0.41^0.47^1^^^^~03/01/2006~ -~10870~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~203~^13.88^4^0.36^~1~^~A~^^^1^13.18^14.73^3^12.71^15.05^~2, 3~^~03/01/2006~ -~10871~^~204~^5.46^4^1.40^~1~^~A~^^^1^2.88^8.38^3^0.99^9.92^~2, 3~^~03/01/2006~ -~10871~^~205~^4.61^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10871~^~207~^4.05^4^0.07^~1~^~A~^^^1^3.88^4.22^3^3.82^4.27^~2, 3~^~03/01/2006~ -~10871~^~210~^0.04^4^0.03^~1~^~A~^^^1^0.00^0.16^3^-0.08^0.16^~1, 2, 3~^~03/01/2006~ -~10871~^~211~^3.95^4^0.67^~1~^~A~^^^1^2.77^5.82^3^1.79^6.10^~2, 3~^~03/01/2006~ -~10871~^~212~^0.47^4^0.47^~1~^~A~^^^1^0.00^1.89^3^-1.03^1.97^~1, 2, 3~^~03/01/2006~ -~10871~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10871~^~214~^0.15^4^0.08^~1~^~A~^^^1^0.00^0.31^3^-0.12^0.41^~1, 2, 3~^~03/01/2006~ -~10871~^~255~^72.11^4^0.90^~1~^~A~^^^1^70.46^73.93^3^69.23^74.98^~2, 3~^~03/01/2006~ -~10871~^~269~^4.61^4^0.78^~1~^~A~^^^1^3.08^6.08^3^2.12^7.09^~2, 3~^~03/01/2006~ -~10871~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10871~^~303~^0.74^2^^~1~^~A~^^^1^0.74^0.75^1^^^^~03/01/2006~ -~10871~^~309~^1.64^2^^~1~^~A~^^^1^1.40^1.89^1^^^^~03/01/2006~ -~10871~^~323~^0.22^2^^~1~^~A~^^^1^0.22^0.23^1^^^^~03/01/2006~ -~10871~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2006~ -~10871~^~342~^0.04^2^^~1~^~A~^^^1^0.03^0.05^1^^^^~03/01/2006~ -~10871~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10871~^~344~^0.04^2^^~1~^~A~^^^1^0.03^0.05^1^^^^~03/01/2006~ -~10871~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10871~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~03/01/2006~ -~10871~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10871~^~418~^0.37^2^^~1~^~A~^^^1^0.36^0.39^1^^^^~03/01/2006~ -~10871~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~203~^14.07^4^0.22^~1~^~A~^^^1^13.44^14.52^3^13.34^14.79^~2, 3~^~03/01/2006~ -~10872~^~204~^4.86^4^1.35^~1~^~A~^^^1^2.15^7.82^3^0.54^9.18^~2, 3~^~03/01/2006~ -~10872~^~205~^4.22^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10872~^~207~^4.01^4^0.05^~1~^~A~^^^1^3.85^4.09^3^3.83^4.18^~2, 3~^~03/01/2006~ -~10872~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10872~^~211~^3.66^4^0.65^~1~^~A~^^^1^2.58^5.48^3^1.56^5.75^~2, 3~^~03/01/2006~ -~10872~^~212~^0.41^4^0.41^~1~^~A~^^^1^0.00^1.66^3^-0.90^1.73^~1, 2, 3~^~03/01/2006~ -~10872~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10872~^~214~^0.14^4^0.08^~1~^~A~^^^1^0.00^0.29^3^-0.12^0.40^~1, 2, 3~^~03/01/2006~ -~10872~^~255~^73.05^4^1.11^~1~^~A~^^^1^70.55^75.21^3^69.50^76.60^~2, 3~^~03/01/2006~ -~10872~^~269~^4.22^4^0.71^~1~^~A~^^^1^2.88^5.48^3^1.94^6.49^~2, 3~^~03/01/2006~ -~10872~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10872~^~303~^0.78^2^^~1~^~A~^^^1^0.75^0.81^1^^^^~03/01/2006~ -~10872~^~309~^1.60^2^^~1~^~A~^^^1^1.50^1.69^1^^^^~03/01/2006~ -~10872~^~323~^0.14^2^^~1~^~A~^^^1^0.11^0.18^1^^^^~03/01/2006~ -~10872~^~341~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~03/01/2006~ -~10872~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~03/01/2006~ -~10872~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10872~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~03/01/2006~ -~10872~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10872~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10872~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10872~^~418~^0.34^2^^~1~^~A~^^^1^0.29^0.40^1^^^^~03/01/2006~ -~10872~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~203~^24.14^8^0.74^~1~^~A~^^^1^22.21^27.46^7^22.38^25.89^~2, 3~^~03/01/2006~ -~10873~^~204~^4.25^8^0.29^~1~^~A~^^^1^3.02^5.80^7^3.55^4.94^~2, 3~^~03/01/2006~ -~10873~^~205~^0.48^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10873~^~207~^3.29^8^0.15^~1~^~A~^^^1^2.64^3.94^7^2.91^3.66^~2, 3~^~03/01/2006~ -~10873~^~210~^0.07^7^0.04^~1~^~A~^^^1^0.00^0.27^6^-0.04^0.17^~1, 2, 3~^~03/01/2006~ -~10873~^~211~^0.24^7^0.13^~1~^~A~^^^1^0.00^0.84^6^-0.09^0.57^~1, 2, 3~^~03/01/2006~ -~10873~^~212~^0.17^7^0.14^~1~^~A~^^^1^0.00^1.02^6^-0.18^0.52^~1, 2, 3~^~03/01/2006~ -~10873~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10873~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10873~^~255~^67.90^8^0.60^~1~^~A~^^^1^65.25^70.17^7^66.48^69.31^~2, 3~^~03/01/2006~ -~10873~^~269~^0.48^7^0.26^~1~^~A~^^^1^0.00^1.88^6^-0.16^1.11^~2, 3~^~03/01/2006~ -~10873~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10873~^~303~^1.04^3^0.11^~1~^~A~^^^1^0.89^1.27^2^0.54^1.54^~2, 3~^~03/01/2006~ -~10873~^~309~^2.50^3^0.29^~1~^~A~^^^1^2.12^3.08^2^1.22^3.76^~2, 3~^~03/01/2006~ -~10873~^~323~^0.27^2^^~1~^~A~^^^1^0.25^0.28^1^^^^~03/01/2006~ -~10873~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10873~^~342~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~03/01/2006~ -~10873~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10873~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10873~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10873~^~346~^0.04^2^^~1~^~A~^^^1^0.03^0.05^1^^^^~03/01/2006~ -~10873~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10873~^~418~^0.61^3^0.04^~1~^~A~^^^1^0.53^0.67^2^0.43^0.79^~2, 3~^~03/01/2006~ -~10873~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~203~^24.95^7^0.71^~1~^~A~^^^1^22.61^28.06^6^23.19^26.70^~2, 3~^~03/01/2006~ -~10874~^~204~^4.97^7^0.44^~1~^~A~^^^1^3.97^7.42^6^3.89^6.04^~2, 3~^~03/01/2006~ -~10874~^~205~^0.34^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10874~^~207~^3.09^7^0.20^~1~^~A~^^^1^2.36^3.77^6^2.59^3.59^~2, 3~^~03/01/2006~ -~10874~^~210~^0.05^6^0.03^~1~^~A~^^^1^0.00^0.21^5^-0.03^0.14^~1, 2, 3~^~03/01/2006~ -~10874~^~211~^0.13^6^0.08^~1~^~A~^^^1^0.00^0.52^5^-0.09^0.35^~1, 2, 3~^~03/01/2006~ -~10874~^~212~^0.16^6^0.15^~1~^~A~^^^1^0.00^0.95^5^-0.25^0.56^~1, 2, 3~^~03/01/2006~ -~10874~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10874~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10874~^~255~^66.98^7^0.58^~1~^~A~^^^1^65.18^68.90^6^65.53^68.41^~2, 3~^~03/01/2006~ -~10874~^~269~^0.34^6^0.25^~1~^~A~^^^1^0.00^1.58^5^-0.31^0.98^~2, 3~^~03/01/2006~ -~10874~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10874~^~303~^1.20^3^0.08^~1~^~A~^^^1^1.09^1.37^2^0.82^1.57^~2, 3~^~03/01/2006~ -~10874~^~309~^3.06^3^0.16^~1~^~A~^^^1^2.74^3.31^2^2.33^3.79^~2, 3~^~03/01/2006~ -~10874~^~323~^0.29^2^^~1~^~A~^^^1^0.28^0.30^1^^^^~03/01/2006~ -~10874~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10874~^~342~^0.04^2^^~1~^~A~^^^1^0.03^0.05^1^^^^~03/01/2006~ -~10874~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10874~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~03/01/2006~ -~10874~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10874~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2006~ -~10874~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10874~^~418~^0.69^3^0.13^~1~^~A~^^^1^0.54^0.95^2^0.12^1.25^~2, 3~^~03/01/2006~ -~10874~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10874~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~203~^27.75^2^^~1~^~A~^^^1^27.29^28.21^1^^^^~03/01/2006~ -~10875~^~204~^4.38^2^^~1~^~A~^^^1^3.53^5.22^1^^^^~03/01/2006~ -~10875~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~207~^2.85^2^^~1~^~A~^^^1^2.66^3.05^1^^^^~03/01/2006~ -~10875~^~210~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~211~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~212~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~214~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~255~^65.87^2^^~1~^~A~^^^1^65.07^66.67^1^^^^~03/01/2006~ -~10875~^~269~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~287~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~303~^1.20^2^^~1~^~A~^^^1^1.13^1.28^1^^^^~03/01/2006~ -~10875~^~309~^3.03^2^^~1~^~A~^^^1^2.72^3.34^1^^^^~03/01/2006~ -~10875~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~418~^0.60^2^^~1~^~A~^^^1^0.51^0.70^1^^^^~03/01/2006~ -~10875~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~203~^22.56^3^1.57^~1~^~A~^^^1^20.05^25.46^2^15.79^29.32^~2, 3~^~03/01/2006~ -~10876~^~204~^3.78^3^1.04^~1~^~A~^^^1^1.70^4.83^2^-0.69^8.26^~2, 3~^~03/01/2006~ -~10876~^~205~^1.08^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10876~^~207~^3.77^3^0.42^~1~^~A~^^^1^3.28^4.62^2^1.94^5.59^~2, 3~^~03/01/2006~ -~10876~^~210~^0.49^3^0.24^~1~^~A~^^^1^0.00^0.75^2^-0.56^1.54^~1, 2, 3~^~03/01/2006~ -~10876~^~211~^0.59^3^0.23^~1~^~A~^^^1^0.30^1.05^2^-0.41^1.58^~2, 3~^~03/01/2006~ -~10876~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10876~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10876~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10876~^~255~^69.47^3^1.47^~1~^~A~^^^1^66.94^72.06^2^63.11^75.82^~2, 3~^~03/01/2006~ -~10876~^~269~^1.08^3^0.04^~1~^~A~^^^1^1.02^1.17^2^0.88^1.27^~2, 3~^~03/01/2006~ -~10876~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10876~^~303~^0.84^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~309~^1.82^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~323~^0.19^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10876~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~203~^21.28^5^0.65^~1~^~A~^^^1^19.16^22.71^4^19.45^23.09^~2, 3~^~03/01/2006~ -~10877~^~204~^4.70^5^1.17^~1~^~A~^^^1^2.51^8.97^4^1.44^7.95^~2, 3~^~03/01/2006~ -~10877~^~205~^1.15^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10877~^~207~^3.49^5^0.23^~1~^~A~^^^1^2.70^4.20^4^2.82^4.15^~2, 3~^~03/01/2006~ -~10877~^~210~^0.32^4^0.15^~1~^~A~^^^1^0.00^0.69^3^-0.16^0.79^~1, 2, 3~^~03/01/2006~ -~10877~^~211~^0.63^4^0.52^~1~^~A~^^^1^0.00^2.20^3^-1.04^2.30^~1, 2, 3~^~03/01/2006~ -~10877~^~212~^0.21^4^0.08^~1~^~A~^^^1^0.00^0.41^3^-0.05^0.47^~1, 2, 3~^~03/01/2006~ -~10877~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10877~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10877~^~255~^69.53^5^1.46^~1~^~A~^^^1^64.20^72.21^4^65.48^73.58^~2, 3~^~03/01/2006~ -~10877~^~269~^1.15^4^0.35^~1~^~A~^^^1^0.57^2.20^3^7.0e-03^2.29^~2, 3~^~03/01/2006~ -~10877~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10877~^~303~^0.87^3^0.08^~1~^~A~^^^1^0.71^1.02^2^0.48^1.25^~2, 3~^~03/01/2006~ -~10877~^~309~^2.08^3^0.05^~1~^~A~^^^1^1.98^2.14^2^1.86^2.30^~2, 3~^~03/01/2006~ -~10877~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~342~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10877~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10877~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10877~^~418~^0.49^3^0.02^~1~^~A~^^^1^0.44^0.54^2^0.36^0.61^~2, 3~^~03/01/2006~ -~10877~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10877~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~203~^18.82^12^0.23^~1~^~A~^^^1^17.84^20.23^11^18.31^19.32^~2, 3~^~03/01/2006~ -~10878~^~204~^4.09^12^0.41^~1~^~A~^^^1^2.24^6.61^11^3.17^5.00^~2, 3~^~03/01/2006~ -~10878~^~205~^1.75^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10878~^~207~^3.79^12^0.12^~1~^~A~^^^1^2.90^4.21^11^3.52^4.05^~2, 3~^~03/01/2006~ -~10878~^~210~^0.13^12^0.11^~1~^~A~^^^1^0.00^1.39^11^-0.12^0.38^~1, 2, 3~^~03/01/2006~ -~10878~^~211~^1.56^12^0.26^~1~^~A~^^^1^0.00^3.24^11^0.96^2.14^~1, 2, 3~^~03/01/2006~ -~10878~^~212~^0.06^12^0.05^~1~^~A~^^^1^0.00^0.63^11^-0.05^0.18^~1, 2, 3~^~03/01/2006~ -~10878~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~255~^72.06^12^0.54^~1~^~A~^^^1^69.06^74.88^11^70.86^73.25^~2, 3~^~03/01/2006~ -~10878~^~269~^1.75^12^0.23^~1~^~A~^^^1^0.72^3.24^11^1.21^2.27^~2, 3~^~03/01/2006~ -~10878~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~303~^0.86^4^0.05^~1~^~A~^^^1^0.76^1.00^3^0.70^1.01^~2, 3~^~03/01/2006~ -~10878~^~309~^1.94^4^0.11^~1~^~A~^^^1^1.74^2.26^3^1.58^2.30^~2, 3~^~03/01/2006~ -~10878~^~323~^0.24^4^0.02^~1~^~A~^^^1^0.18^0.28^3^0.17^0.30^~2, 3~^~03/01/2006~ -~10878~^~341~^0.01^4^6.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~10878~^~342~^0.04^4^5.0e-03^~1~^~A~^^^1^0.03^0.05^3^0.02^0.05^~2, 3~^~03/01/2006~ -~10878~^~343~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10878~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.06^3^-0.01^0.08^~1, 2, 3~^~03/01/2006~ -~10878~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~03/01/2006~ -~10878~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~418~^0.47^4^0.01^~1~^~A~^^^1^0.45^0.52^3^0.41^0.52^~2, 3~^~03/01/2006~ -~10878~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~203~^17.99^12^0.41^~1~^~A~^^^1^15.64^21.32^11^17.08^18.88^~2, 3~^~03/01/2006~ -~10879~^~204~^4.39^12^0.35^~1~^~A~^^^1^2.14^6.14^11^3.60^5.17^~2, 3~^~03/01/2006~ -~10879~^~205~^1.57^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10879~^~207~^3.66^12^0.08^~1~^~A~^^^1^3.18^4.16^11^3.48^3.84^~2, 3~^~03/01/2006~ -~10879~^~210~^0.13^12^0.12^~1~^~A~^^^1^0.00^1.46^11^-0.13^0.39^~1, 2, 3~^~03/01/2006~ -~10879~^~211~^1.38^12^0.22^~1~^~A~^^^1^0.00^2.59^11^0.89^1.87^~1, 2, 3~^~03/01/2006~ -~10879~^~212~^0.06^12^0.05^~1~^~A~^^^1^0.00^0.70^11^-0.07^0.18^~1, 2, 3~^~03/01/2006~ -~10879~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~255~^72.58^12^0.55^~1~^~A~^^^1^68.68^75.40^11^71.36^73.79^~2, 3~^~03/01/2006~ -~10879~^~269~^1.57^12^0.20^~1~^~A~^^^1^0.56^2.66^11^1.11^2.02^~2, 3~^~03/01/2006~ -~10879~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~303~^0.82^4^0.07^~1~^~A~^^^1^0.66^1.00^3^0.59^1.05^~2, 3~^~03/01/2006~ -~10879~^~309~^1.82^4^0.09^~1~^~A~^^^1^1.63^2.09^3^1.51^2.12^~2, 3~^~03/01/2006~ -~10879~^~323~^0.20^4^0.01^~1~^~A~^^^1^0.17^0.24^3^0.15^0.25^~2, 3~^~03/01/2006~ -~10879~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~10879~^~342~^0.03^4^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~03/01/2006~ -~10879~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~344~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.03^~1, 2, 3~^~03/01/2006~ -~10879~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~03/01/2006~ -~10879~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~418~^0.40^4^0.01^~1~^~A~^^^1^0.37^0.43^3^0.36^0.43^~2, 3~^~03/01/2006~ -~10879~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~203~^17.34^12^0.19^~1~^~A~^^^1^15.89^18.32^11^16.92^17.75^~2, 3~^~03/01/2006~ -~10880~^~204~^3.97^12^0.31^~1~^~A~^^^1^2.59^5.73^11^3.27^4.65^~2, 3~^~03/01/2006~ -~10880~^~205~^1.45^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10880~^~207~^3.56^12^0.10^~1~^~A~^^^1^2.77^4.05^11^3.32^3.80^~2, 3~^~03/01/2006~ -~10880~^~210~^0.09^12^0.09^~1~^~A~^^^1^0.00^1.11^11^-0.11^0.29^~1, 2, 3~^~03/01/2006~ -~10880~^~211~^1.31^12^0.23^~1~^~A~^^^1^0.00^2.86^11^0.78^1.83^~1, 2, 3~^~03/01/2006~ -~10880~^~212~^0.05^12^0.04^~1~^~A~^^^1^0.00^0.48^11^-0.03^0.13^~1, 2, 3~^~03/01/2006~ -~10880~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~255~^73.95^12^0.40^~1~^~A~^^^1^71.70^76.05^11^73.05^74.84^~2, 3~^~03/01/2006~ -~10880~^~269~^1.45^12^0.21^~1~^~A~^^^1^0.58^2.86^11^0.97^1.92^~2, 3~^~03/01/2006~ -~10880~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~303~^0.86^4^0.09^~1~^~A~^^^1^0.69^1.13^3^0.56^1.16^~2, 3~^~03/01/2006~ -~10880~^~309~^1.79^4^0.07^~1~^~A~^^^1^1.62^1.98^3^1.53^2.03^~2, 3~^~03/01/2006~ -~10880~^~323~^0.21^4^0.03^~1~^~A~^^^1^0.15^0.29^3^0.10^0.31^~2, 3~^~03/01/2006~ -~10880~^~341~^0.01^4^6.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~10880~^~342~^0.03^4^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~03/01/2006~ -~10880~^~343~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~10880~^~344~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.01^0.06^~1, 2, 3~^~03/01/2006~ -~10880~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~418~^0.47^4^0.02^~1~^~A~^^^1^0.39^0.52^3^0.38^0.55^~2, 3~^~03/01/2006~ -~10880~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~203~^21.69^6^0.67^~1~^~A~^^^1^19.49^23.58^5^19.95^23.41^~2, 3~^~03/01/2006~ -~10881~^~204~^4.45^6^0.16^~1~^~A~^^^1^3.93^5.03^5^4.03^4.86^~2, 3~^~03/01/2006~ -~10881~^~205~^1.26^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10881~^~207~^3.44^6^0.22^~1~^~A~^^^1^2.83^4.39^5^2.85^4.02^~2, 3~^~03/01/2006~ -~10881~^~210~^0.65^5^0.32^~1~^~A~^^^1^0.00^1.85^4^-0.24^1.54^~1, 2, 3~^~03/01/2006~ -~10881~^~211~^0.48^5^0.34^~1~^~A~^^^1^0.00^1.84^4^-0.48^1.44^~1, 2, 3~^~03/01/2006~ -~10881~^~212~^0.13^5^0.05^~1~^~A~^^^1^0.00^0.30^4^-0.03^0.29^~1, 2, 3~^~03/01/2006~ -~10881~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10881~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10881~^~255~^69.23^6^0.45^~1~^~A~^^^1^68.25^70.82^5^68.06^70.39^~2, 3~^~03/01/2006~ -~10881~^~269~^1.26^5^0.27^~1~^~A~^^^1^0.37^1.85^4^0.49^2.02^~2, 3~^~03/01/2006~ -~10881~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10881~^~303~^1.17^3^0.12^~1~^~A~^^^1^0.92^1.33^2^0.62^1.72^~2, 3~^~03/01/2006~ -~10881~^~309~^2.82^3^0.26^~1~^~A~^^^1^2.44^3.33^2^1.68^3.96^~2, 3~^~03/01/2006~ -~10881~^~323~^0.29^2^^~1~^~A~^^^1^0.27^0.31^1^^^^~03/01/2006~ -~10881~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10881~^~342~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~03/01/2006~ -~10881~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10881~^~344~^0.04^2^^~1~^~A~^^^1^0.00^0.07^1^^^~1~^~03/01/2006~ -~10881~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10881~^~346~^0.05^2^^~1~^~A~^^^1^0.04^0.07^1^^^^~03/01/2006~ -~10881~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~10881~^~418~^0.46^3^0.05^~1~^~A~^^^1^0.35^0.53^2^0.22^0.70^~2, 3~^~03/01/2006~ -~10881~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~203~^20.95^11^0.45^~1~^~A~^^^1^19.11^24.70^10^19.93^21.95^~2, 3~^~03/01/2006~ -~10882~^~204~^3.16^11^0.21^~1~^~A~^^^1^2.43^4.56^10^2.68^3.62^~2, 3~^~03/01/2006~ -~10882~^~205~^1.05^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10882~^~207~^3.81^11^0.09^~1~^~A~^^^1^3.26^4.35^10^3.59^4.02^~2, 3~^~03/01/2006~ -~10882~^~210~^0.32^11^0.13^~1~^~A~^^^1^0.00^1.12^10^0.01^0.61^~1, 2, 3~^~03/01/2006~ -~10882~^~211~^0.72^11^0.21^~1~^~A~^^^1^0.00^2.50^10^0.24^1.20^~1, 2, 3~^~03/01/2006~ -~10882~^~212~^0.01^11^0.01^~1~^~A~^^^1^0.00^0.11^10^-0.01^0.03^~1, 2, 3~^~03/01/2006~ -~10882~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~255~^71.10^11^0.43^~1~^~A~^^^1^68.88^72.76^10^70.14^72.06^~2, 3~^~03/01/2006~ -~10882~^~269~^1.05^11^0.18^~1~^~A~^^^1^0.00^2.50^10^0.62^1.46^~2, 3~^~03/01/2006~ -~10882~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~303~^0.94^4^0.08^~1~^~A~^^^1^0.78^1.15^3^0.67^1.19^~2, 3~^~03/01/2006~ -~10882~^~309~^2.14^4^0.06^~1~^~A~^^^1^1.95^2.23^3^1.92^2.34^~2, 3~^~03/01/2006~ -~10882~^~323~^0.22^3^0.01^~1~^~A~^^^1^0.20^0.24^2^0.16^0.26^~2, 3~^~03/01/2006~ -~10882~^~341~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10882~^~342~^0.03^4^4.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~03/01/2006~ -~10882~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~344~^0.01^4^9.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.04^~1, 2, 3~^~03/01/2006~ -~10882~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~418~^0.42^4^0.03^~1~^~A~^^^1^0.37^0.52^3^0.32^0.52^~2, 3~^~03/01/2006~ -~10882~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~203~^20.57^9^0.62^~1~^~A~^^^1^17.52^24.34^8^19.13^22.01^~2, 3~^~03/01/2006~ -~10883~^~204~^3.01^9^0.22^~1~^~A~^^^1^2.04^4.01^8^2.50^3.51^~2, 3~^~03/01/2006~ -~10883~^~205~^0.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~207~^3.87^9^0.23^~1~^~A~^^^1^3.26^5.57^8^3.33^4.39^~2, 3~^~03/01/2006~ -~10883~^~210~^0.37^9^0.14^~1~^~A~^^^1^0.00^1.22^8^0.03^0.70^~1, 2, 3~^~03/01/2006~ -~10883~^~211~^0.44^9^0.12^~1~^~A~^^^1^0.00^0.96^8^0.15^0.73^~1, 2, 3~^~03/01/2006~ -~10883~^~212~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~213~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~214~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~255~^71.71^9^0.61^~1~^~A~^^^1^69.30^74.68^8^70.30^73.12^~2, 3~^~03/01/2006~ -~10883~^~269~^0.81^9^0.11^~1~^~A~^^^1^0.23^1.32^8^0.54^1.08^~2, 3~^~03/01/2006~ -~10883~^~287~^0.00^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~303~^0.85^3^0.05^~1~^~A~^^^1^0.77^0.96^2^0.59^1.09^~2, 3~^~03/01/2006~ -~10883~^~309~^1.98^3^0.13^~1~^~A~^^^1^1.79^2.25^2^1.38^2.57^~2, 3~^~03/01/2006~ -~10883~^~323~^0.27^3^0.01^~1~^~A~^^^1^0.23^0.29^2^0.18^0.34^~2, 3~^~03/01/2006~ -~10883~^~341~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~03/01/2006~ -~10883~^~342~^0.03^3^7.0e-03^~1~^~A~^^^1^0.02^0.04^2^-2.0e-03^0.05^~2, 3~^~03/01/2006~ -~10883~^~343~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10883~^~344~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.05^0.12^~1, 2, 3~^~03/01/2006~ -~10883~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~346~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~418~^0.42^3^0.05^~1~^~A~^^^1^0.31^0.48^2^0.18^0.64^~2, 3~^~03/01/2006~ -~10883~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~203~^19.44^11^0.36^~1~^~A~^^^1^17.63^21.85^10^18.62^20.24^~2, 3~^~03/01/2006~ -~10884~^~204~^3.21^11^0.27^~1~^~A~^^^1^1.86^4.64^10^2.60^3.81^~2, 3~^~03/01/2006~ -~10884~^~205~^1.03^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10884~^~207~^3.56^11^0.08^~1~^~A~^^^1^3.01^3.92^10^3.37^3.74^~2, 3~^~03/01/2006~ -~10884~^~210~^0.28^11^0.12^~1~^~A~^^^1^0.00^1.04^10^0.01^0.55^~1, 2, 3~^~03/01/2006~ -~10884~^~211~^0.74^11^0.25^~1~^~A~^^^1^0.00^2.99^10^0.17^1.30^~1, 2, 3~^~03/01/2006~ -~10884~^~212~^0.01^11^0.01^~1~^~A~^^^1^0.00^0.11^10^-0.01^0.03^~1, 2, 3~^~03/01/2006~ -~10884~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~255~^72.85^11^0.48^~1~^~A~^^^1^70.42^75.39^10^71.76^73.92^~2, 3~^~03/01/2006~ -~10884~^~269~^1.03^11^0.22^~1~^~A~^^^1^0.00^2.99^10^0.51^1.53^~2, 3~^~03/01/2006~ -~10884~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~303~^0.87^4^0.03^~1~^~A~^^^1^0.82^0.98^3^0.74^0.99^~2, 3~^~03/01/2006~ -~10884~^~309~^1.98^4^0.01^~1~^~A~^^^1^1.94^2.01^3^1.93^2.02^~2, 3~^~03/01/2006~ -~10884~^~323~^0.26^4^0.02^~1~^~A~^^^1^0.18^0.31^3^0.17^0.35^~2, 3~^~03/01/2006~ -~10884~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~10884~^~342~^0.03^4^7.0e-03^~1~^~A~^^^1^0.02^0.05^3^7.0e-03^0.05^~2, 3~^~03/01/2006~ -~10884~^~343~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10884~^~344~^0.04^4^0.01^~1~^~A~^^^1^0.02^0.07^3^5.0e-03^0.07^~2, 3~^~03/01/2006~ -~10884~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~346~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~03/01/2006~ -~10884~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~418~^0.41^4^0.01^~1~^~A~^^^1^0.38^0.43^3^0.37^0.44^~2, 3~^~03/01/2006~ -~10884~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~203~^18.65^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~204~^1.87^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~205~^0.71^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10885~^~207~^3.09^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~210~^0.55^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~211~^0.11^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~212~^0.05^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~213~^0.00^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~214~^0.00^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~255~^76.53^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~269~^0.71^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~287~^0.00^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~309~^1.99^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~323~^0.22^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~341~^0.01^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~342~^0.06^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~343~^0.01^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~ -~10885~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10885~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~203~^17.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~204~^2.29^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~205~^1.23^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10886~^~207~^3.26^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~210~^0.24^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~211~^0.95^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~212~^0.04^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~213~^0.00^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~214~^0.00^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~255~^76.75^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~269~^1.23^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~287~^0.00^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~303~^1.08^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~309~^1.86^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~323~^0.19^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~341~^0.00^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~342~^0.04^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~343~^0.00^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~418~^0.39^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~203~^17.93^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~204~^3.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~205~^1.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10887~^~207~^3.14^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~210~^0.27^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~211~^0.53^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~212~^0.18^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~213~^0.00^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~214~^0.00^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~255~^74.32^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~269~^0.97^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~287~^0.00^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~303~^0.67^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~309~^1.65^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~323~^0.18^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~341~^0.02^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~342~^0.04^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~343~^0.01^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~ -~10887~^~418~^0.58^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10887~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~203~^14.47^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~204~^3.78^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~205~^2.82^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10888~^~207~^3.39^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~210~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~211~^0.91^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~212~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~213~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~214~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~255~^75.54^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~269~^0.91^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~287~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~303~^1.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~309~^1.66^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~323~^0.11^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~341~^0.01^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~342~^0.03^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~343~^0.00^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~418~^0.48^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~203~^17.53^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~204~^4.18^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~205~^1.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10889~^~207~^3.11^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~210~^0.55^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~211~^0.40^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~212~^0.11^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~213~^0.00^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~214~^0.00^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~255~^73.97^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~269~^1.06^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~287~^0.00^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~303~^0.97^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~309~^2.19^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~323~^0.25^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~341~^0.00^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~342~^0.06^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~343~^0.00^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~418~^0.55^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~203~^22.71^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~204~^3.47^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~205~^0.43^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10890~^~207~^2.96^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~210~^0.06^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~211~^0.22^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~212~^0.16^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~213~^0.00^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~214~^0.00^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~255~^70.80^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~269~^0.43^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~287~^0.00^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~303~^1.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~309~^2.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~323~^0.24^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~341~^0.00^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~342~^0.04^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~343~^0.00^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~203~^25.11^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~204~^3.33^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~205~^0.30^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10891~^~207~^2.63^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~210~^0.05^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~211~^0.11^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~212~^0.14^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~213~^0.00^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~214~^0.00^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~255~^70.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~269~^0.30^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~287~^0.00^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~303~^1.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~309~^2.79^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~323~^0.26^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~341~^0.00^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~342~^0.04^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~343~^0.00^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~418~^0.37^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~203~^24.34^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~204~^2.87^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10892~^~207~^2.80^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~210~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~211~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~212~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~213~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~214~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~255~^70.29^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~269~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~287~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~303~^1.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~309~^2.30^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~323~^0.20^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~341~^0.01^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~342~^0.03^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~343~^0.00^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~418~^0.60^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~203~^19.25^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~204~^3.26^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~205~^1.22^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10893~^~207~^4.39^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~210~^0.78^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~211~^0.44^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10893~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10893~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10893~^~255~^72.46^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~269~^1.22^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10893~^~303~^0.76^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~309~^1.65^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~323~^0.17^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~341~^0.00^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~342~^0.03^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~343~^0.00^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~418~^0.44^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~203~^8.77^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~204~^51.57^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10894~^~207~^2.19^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~211~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~255~^35.47^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~269~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~303~^0.53^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~309~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~323~^0.35^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~342~^0.12^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~346~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~203~^7.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~204~^53.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~205~^1.87^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10895~^~207~^1.98^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~211~^0.44^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~255~^35.65^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~269~^0.44^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~303~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~309~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~323~^0.76^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~342~^0.18^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~344~^0.18^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~346~^0.11^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~203~^19.11^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~204~^10.54^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~207~^2.76^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~255~^68.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~303~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~309~^2.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~203~^27.18^3^0.49^~1~^~A~^^^1^26.31^28.03^2^25.05^29.30^~2, 3~^~03/01/2006~ -~10899~^~204~^4.09^3^0.25^~1~^~A~^^^1^3.60^4.43^2^3.00^5.16^~2, 3~^~03/01/2006~ -~10899~^~205~^0.74^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10899~^~207~^3.17^3^0.07^~1~^~A~^^^1^3.02^3.29^2^2.82^3.51^~2, 3~^~03/01/2006~ -~10899~^~210~^0.63^3^0.04^~1~^~A~^^^1^0.58^0.72^2^0.42^0.82^~2, 3~^~03/01/2006~ -~10899~^~211~^0.11^3^5.0e-03^~1~^~A~^^^1^0.10^0.12^2^0.09^0.13^~2, 3~^~03/01/2006~ -~10899~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~255~^65.33^3^0.39^~1~^~A~^^^1^64.62^65.99^2^63.62^67.03^~2, 3~^~03/01/2006~ -~10899~^~269~^0.74^3^0.04^~1~^~A~^^^1^0.69^0.82^2^0.56^0.91^~2, 3~^~03/01/2006~ -~10899~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~303~^1.42^3^0.08^~1~^~A~^^^1^1.27^1.55^2^1.07^1.77^~2, 3~^~03/01/2006~ -~10899~^~309~^3.04^3^0.07^~1~^~A~^^^1^2.89^3.15^2^2.70^3.38^~2, 3~^~03/01/2006~ -~10899~^~323~^0.30^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10899~^~418~^0.66^3^0.08^~1~^~A~^^^1^0.55^0.82^2^0.31^1.01^~2, 3~^~03/01/2006~ -~10899~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10900~^~203~^19.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~204~^3.43^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~205~^1.02^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10900~^~207~^3.56^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~210~^0.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~211~^0.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~212~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~255~^72.68^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~269~^1.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~303~^0.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~309~^1.97^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~323~^0.26^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~418~^0.41^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~203~^18.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~204~^5.75^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~205~^1.18^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10901~^~207~^4.27^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~210~^0.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~211~^0.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~255~^70.62^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~269~^1.18^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~303~^0.75^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~309~^1.63^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~342~^0.03^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~418~^0.43^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~203~^22.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~204~^7.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~205~^0.17^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~207~^2.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~210~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~211~^0.04^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~212~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~255~^67.16^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~269~^0.04^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10902~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~303~^1.05^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~309~^2.20^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~341~^0.01^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~342~^0.04^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~418~^0.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10903~^~203~^22.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~204~^11.11^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~205~^0.32^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10903~^~207~^2.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~210~^0.04^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~211~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~212~^0.12^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~255~^65.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~269~^0.32^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~303~^1.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~309~^2.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~323~^0.34^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~342~^0.06^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10903~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10903~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10903~^~418~^0.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10904~^~203~^19.70^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~204~^13.26^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~205~^0.43^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10904~^~207~^2.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~210~^0.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~211~^0.26^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~212~^0.12^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~255~^63.86^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~269~^0.43^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~303~^0.94^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~309~^2.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~323~^0.34^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~342~^0.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~418~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~203~^14.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~204~^4.99^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~205~^4.21^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10905~^~207~^4.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~211~^3.65^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~212~^0.41^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~214~^0.14^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~255~^72.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~269~^4.21^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~303~^0.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~309~^1.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~323~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~341~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~418~^0.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10906~^~203~^13.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~204~^9.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~205~^2.72^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~207~^3.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~210~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~211~^0.85^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~212~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~255~^71.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~269~^0.85^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10906~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~303~^1.39^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~309~^1.60^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~341~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~342~^0.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~418~^0.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~203~^14.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~204~^20.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~205~^1.42^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~207~^2.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~210~^0.37^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~211~^0.41^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~212~^0.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~255~^61.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~269~^0.86^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10907~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~309~^1.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~323~^0.41^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~342~^0.10^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~344~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~418~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~203~^16.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~204~^12.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~205~^1.35^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~207~^2.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~210~^0.22^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~211~^0.51^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~212~^0.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~255~^67.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~269~^0.88^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~303~^0.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~309~^1.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~341~^0.02^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~342~^0.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~343~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10908~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10908~^~418~^0.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10909~^~203~^17.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~204~^5.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~205~^1.42^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10909~^~207~^3.52^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~210~^0.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~211~^1.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~212~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~255~^72.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~269~^1.42^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~303~^0.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~309~^1.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~323~^0.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~418~^0.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10910~^~203~^15.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~204~^10.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~205~^1.10^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10910~^~207~^3.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~210~^0.20^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~211~^0.87^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~212~^0.04^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~255~^69.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~269~^1.10^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10910~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~303~^0.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~309~^1.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~323~^0.29^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~341~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~342~^0.06^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~418~^0.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~203~^16.65^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~204~^11.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~205~^0.66^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10911~^~207~^2.89^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~210~^0.45^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~211~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~212~^0.04^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~255~^69.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~269~^0.66^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~303~^0.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~309~^1.84^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~323~^0.32^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~341~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~342~^0.08^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10911~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10911~^~418~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~203~^13.99^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~204~^12.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~205~^0.80^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~207~^3.22^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~210~^0.48^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~211~^0.11^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~212~^0.03^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~255~^69.49^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~269~^0.62^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~303~^1.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~309~^1.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~323~^0.27^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~342~^0.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10912~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10912~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10912~^~418~^0.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~203~^20.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~204~^8.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~205~^0.99^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10913~^~207~^3.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~210~^0.67^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~211~^0.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~212~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~255~^67.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~269~^0.78^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~303~^0.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~309~^1.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~323~^0.22^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~418~^0.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~203~^18.62^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~204~^13.37^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~205~^1.35^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10914~^~207~^3.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~210~^0.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~211~^0.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~212~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~255~^63.43^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~269~^0.79^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~303~^1.37^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~309~^2.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~323~^0.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~342~^0.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~418~^0.55^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10915~^~203~^20.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~204~^8.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~205~^1.54^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10915~^~207~^3.89^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~210~^0.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~211~^1.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~212~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~255~^65.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~269~^1.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10915~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~303~^1.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~309~^2.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~323~^0.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~418~^0.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~203~^18.62^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~204~^5.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~205~^1.72^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10916~^~207~^3.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~210~^0.12^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~211~^1.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~212~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~255~^71.32^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~269~^1.72^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~303~^0.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~309~^1.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~323~^0.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~418~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~203~^17.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~204~^5.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~205~^1.54^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10917~^~207~^3.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~210~^0.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~211~^1.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~212~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~255~^71.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~269~^1.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~309~^1.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~323~^0.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~418~^0.40^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10918~^~203~^19.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~204~^11.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~205~^1.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10918~^~207~^3.30^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~210~^0.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~211~^0.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~212~^0.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~255~^64.60^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~269~^1.03^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~309~^1.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~323~^0.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~341~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~342~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~418~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10919~^~203~^18.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~204~^17.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~205~^1.42^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~207~^3.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~210~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~211~^0.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~212~^0.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~255~^60.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~269~^0.99^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10919~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~303~^1.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~309~^2.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~323~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~342~^0.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~343~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~346~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~418~^0.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~203~^19.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~204~^7.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~205~^1.41^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~207~^3.75^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~211~^1.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~255~^67.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~269~^1.03^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10920~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~303~^0.90^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~309~^2.16^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~323~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~418~^0.44^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10921~^~203~^15.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~204~^5.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~205~^4.69^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10921~^~207~^4.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~211~^4.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~212~^0.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~214~^0.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~255~^71.14^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~269~^4.69^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~303~^0.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~309~^1.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~323~^0.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~418~^0.44^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~203~^13.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~204~^5.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~205~^4.61^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10922~^~207~^4.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~210~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~211~^3.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~212~^0.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~214~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~255~^72.11^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~269~^4.61^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~303~^0.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~309~^1.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~323~^0.22^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~344~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~346~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~418~^0.37^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10923~^~203~^22.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~204~^9.39^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~205~^0.60^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~207~^3.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~210~^0.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~211~^0.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~212~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~255~^64.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~269~^0.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10923~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~303~^0.99^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~309~^2.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~323~^0.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~346~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~418~^0.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10924~^~203~^22.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~204~^10.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~205~^0.33^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10924~^~207~^2.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~210~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~211~^0.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~212~^0.14^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~255~^62.94^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~269~^0.33^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~309~^2.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~323~^0.30^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~418~^0.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10925~^~203~^26.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~204~^8.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~205~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~207~^2.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~211~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~255~^63.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~269~^0.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10925~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~303~^1.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~309~^2.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~323~^0.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~344~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~418~^0.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10926~^~203~^20.89^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~204~^3.40^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~205~^1.04^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10926~^~207~^3.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~210~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~211~^0.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~212~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~255~^70.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~269~^1.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~303~^0.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~309~^2.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~323~^0.22^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~418~^0.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~203~^22.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~204~^5.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~205~^1.06^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~10927~^~207~^3.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~210~^0.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~211~^0.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~255~^68.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~269~^1.06^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~303~^0.83^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~309~^1.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~323~^0.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~418~^0.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10928~^~203~^20.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~204~^3.13^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~205~^0.84^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~207~^3.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~210~^0.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~211~^0.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~255~^71.62^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~269~^0.81^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~303~^0.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~309~^1.98^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~323~^0.27^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~341~^0.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~342~^0.03^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~344~^0.03^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~418~^0.42^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10929~^~203~^23.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~204~^8.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~205~^0.64^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10929~^~207~^2.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~210~^0.54^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~211~^0.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~255~^63.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~269~^0.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~303~^1.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~309~^2.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~323~^0.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~418~^0.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10931~^~203~^26.02^3^0.61^~1~^~A~^^^1^24.79^26.77^2^23.36^28.66^~2, 3~^~04/01/2006~ -~10931~^~204~^3.07^3^0.47^~1~^~A~^^^1^2.40^3.97^2^1.03^5.09^~2, 3~^~04/01/2006~ -~10931~^~205~^0.68^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10931~^~207~^3.09^3^0.08^~1~^~A~^^^1^2.92^3.22^2^2.71^3.46^~2, 3~^~04/01/2006~ -~10931~^~210~^0.61^3^0.07^~1~^~A~^^^1^0.49^0.75^2^0.29^0.93^~2, 3~^~04/01/2006~ -~10931~^~211~^0.07^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.08^0.22^~1, 2, 3~^~04/01/2006~ -~10931~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~255~^67.68^3^0.69^~1~^~A~^^^1^66.45^68.83^2^64.71^70.64^~2, 3~^~04/01/2006~ -~10931~^~269~^0.68^3^0.04^~1~^~A~^^^1^0.60^0.75^2^0.49^0.87^~2, 3~^~03/01/2007~ -~10931~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~303~^1.59^3^0.23^~1~^~A~^^^1^1.31^2.06^2^0.56^2.61^~2, 3~^~04/01/2006~ -~10931~^~309~^3.16^3^0.39^~1~^~A~^^^1^2.47^3.82^2^1.47^4.83^~2, 3~^~04/01/2006~ -~10931~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10931~^~418~^0.65^3^0.13^~1~^~A~^^^1^0.50^0.91^2^0.07^1.21^~2, 3~^~04/01/2006~ -~10931~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~203~^24.46^3^0.81^~1~^~A~^^^1^23.17^25.96^2^20.95^27.95^~2, 3~^~04/01/2006~ -~10932~^~204~^2.92^3^0.29^~1~^~A~^^^1^2.46^3.48^2^1.64^4.20^~2, 3~^~04/01/2006~ -~10932~^~205~^0.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10932~^~207~^2.74^3^0.12^~1~^~A~^^^1^2.51^2.90^2^2.22^3.26^~2, 3~^~04/01/2006~ -~10932~^~210~^0.00^0^^~7~^~Z~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~211~^0.00^0^^~7~^~Z~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~212~^0.00^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~213~^0.00^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~214~^0.00^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~255~^69.56^3^0.12^~1~^~A~^^^1^69.39^69.79^2^69.02^70.08^~2, 3~^~04/01/2006~ -~10932~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~287~^0.00^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~303~^1.08^3^0.05^~1~^~A~^^^1^1.00^1.18^2^0.85^1.30^~2, 3~^~04/01/2006~ -~10932~^~309~^2.61^3^0.28^~1~^~A~^^^1^2.24^3.17^2^1.39^3.83^~2, 3~^~04/01/2006~ -~10932~^~323~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10932~^~418~^0.56^3^0.12^~1~^~A~^^^1^0.39^0.81^2^0.01^1.10^~2, 3~^~04/01/2006~ -~10932~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~203~^26.49^3^0.18^~1~^~A~^^^1^26.12^26.74^2^25.67^27.30^~2, 3~^~04/01/2006~ -~10933~^~204~^3.68^3^0.62^~1~^~A~^^^1^2.53^4.70^2^0.97^6.39^~2, 3~^~04/01/2006~ -~10933~^~205~^0.68^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10933~^~207~^2.88^3^0.08^~1~^~A~^^^1^2.73^3.02^2^2.52^3.23^~2, 3~^~04/01/2006~ -~10933~^~210~^0.61^3^0.08^~1~^~A~^^^1^0.52^0.77^2^0.26^0.95^~2, 3~^~04/01/2006~ -~10933~^~211~^0.08^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.08^0.24^~1, 2, 3~^~04/01/2006~ -~10933~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~255~^67.46^3^0.40^~1~^~A~^^^1^66.79^68.17^2^65.72^69.18^~2, 3~^~04/01/2006~ -~10933~^~269~^0.68^3^0.10^~1~^~A~^^^1^0.54^0.89^2^0.22^1.14^~2, 3~^~03/01/2009~ -~10933~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~303~^1.54^3^0.33^~1~^~A~^^^1^1.07^2.19^2^0.08^2.98^~2, 3~^~04/01/2006~ -~10933~^~309~^2.78^3^0.01^~1~^~A~^^^1^2.76^2.81^2^2.71^2.84^~2, 3~^~04/01/2006~ -~10933~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10933~^~418~^0.61^3^0.14^~1~^~A~^^^1^0.38^0.88^2^-0.01^1.23^~2, 3~^~04/01/2006~ -~10933~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10934~^~203~^23.79^3^0.49^~1~^~A~^^^1^22.81^24.39^2^21.65^25.92^~2, 3~^~04/01/2006~ -~10934~^~204~^3.19^3^0.70^~1~^~A~^^^1^2.01^4.44^2^0.16^6.20^~2, 3~^~04/01/2006~ -~10934~^~205~^0.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10934~^~207~^3.05^3^0.13^~1~^~A~^^^1^2.81^3.29^2^2.45^3.64^~2, 3~^~04/01/2006~ -~10934~^~210~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10934~^~211~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~10934~^~212~^0.00^0^^~4~^~BFSN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~213~^0.00^0^^~4~^~BFSN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~214~^0.00^0^^~4~^~BFSN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~255~^69.79^3^0.29^~1~^~A~^^^1^69.40^70.37^2^68.53^71.05^~2, 3~^~04/01/2006~ -~10934~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~287~^0.00^0^^~4~^~BFSN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~303~^0.99^3^0.03^~1~^~A~^^^1^0.92^1.02^2^0.84^1.12^~2, 3~^~04/01/2006~ -~10934~^~309~^2.34^3^0.09^~1~^~A~^^^1^2.15^2.43^2^1.93^2.73^~2, 3~^~04/01/2006~ -~10934~^~323~^0.24^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10934~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10934~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~346~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10934~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10934~^~418~^0.58^3^0.05^~1~^~A~^^^1^0.52^0.69^2^0.33^0.82^~2, 3~^~04/01/2006~ -~10934~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10935~^~203~^24.39^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~204~^9.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~205~^0.64^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10935~^~207~^2.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~210~^0.54^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~211~^0.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~255~^63.67^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~269~^0.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~303~^1.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~309~^2.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~323~^0.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~344~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~418~^0.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10936~^~203~^21.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~204~^9.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~205~^0.41^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~207~^2.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~210~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~211~^0.06^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~212~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~255~^65.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~269~^0.06^0^^~4~^~PIK~^^^^^^^^^^~08/01/2006~ -~10936~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~303~^0.92^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~309~^2.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~323~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~418~^0.54^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10937~^~203~^25.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~204~^8.48^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~205~^0.70^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10937~^~207~^3.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~210~^0.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~211~^0.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~255~^62.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~269~^0.70^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~303~^1.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~309~^2.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~323~^0.30^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~342~^0.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~346~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~418~^0.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10938~^~203~^24.36^3^0.38^~1~^~A~^^^1^23.59^24.86^2^22.68^26.03^~2, 3~^~04/01/2006~ -~10938~^~204~^3.59^3^0.47^~1~^~A~^^^1^2.64^4.11^2^1.55^5.62^~2, 3~^~04/01/2006~ -~10938~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10938~^~207~^2.79^3^0.05^~1~^~A~^^^1^2.68^2.88^2^2.53^3.04^~2, 3~^~04/01/2006~ -~10938~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~212~^0.00^0^^~4~^~BFSN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~213~^0.00^0^^~4~^~BFSN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~214~^0.00^0^^~4~^~BFSN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~255~^69.97^3^0.53^~1~^~A~^^^1^68.91^70.54^2^67.68^72.25^~2, 3~^~04/01/2006~ -~10938~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~287~^0.00^0^^~4~^~BFSN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~303~^1.23^3^0.02^~1~^~A~^^^1^1.21^1.27^2^1.14^1.31^~2, 3~^~04/01/2006~ -~10938~^~309~^2.43^3^0.08^~1~^~A~^^^1^2.34^2.61^2^2.05^2.81^~2, 3~^~04/01/2006~ -~10938~^~323~^0.29^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10938~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~10938~^~418~^0.60^3^0.12^~1~^~A~^^^1^0.42^0.85^2^0.05^1.15^~2, 3~^~04/01/2006~ -~10938~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10939~^~203~^22.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~204~^9.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~205~^0.21^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~207~^2.70^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~210~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~211~^0.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~212~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~213~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~214~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~255~^66.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~269~^0.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~287~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~303~^1.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~309~^2.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~323~^0.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~344~^0.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~346~^0.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~418~^0.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10940~^~203~^20.89^12^1.60^~1~^~A~^^^1^11.84^30.21^11^17.35^24.42^~2, 3~^~03/01/2007~ -~10940~^~204~^30.86^12^1.97^~1~^~A~^^^1^19.64^43.11^11^26.50^35.21^~2, 3~^~03/01/2007~ -~10940~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10940~^~207~^0.82^12^0.04^~1~^~A~^^^1^0.53^1.10^11^0.70^0.92^~2, 3~^~03/01/2007~ -~10940~^~255~^48.11^12^1.21^~1~^~A~^^^1^41.81^54.55^11^45.42^50.79^~2, 3~^~03/01/2007~ -~10940~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~303~^1.43^12^0.06^~1~^~A~^^^1^1.09^1.77^11^1.29^1.56^~2, 3~^~03/01/2007~ -~10940~^~309~^3.26^12^0.13^~1~^~A~^^^1^2.39^4.15^11^2.97^3.54^~2, 3~^~03/01/2007~ -~10940~^~323~^0.14^0^^~4~^~BFSN~^~10061~^^^^^^^^^~03/01/2007~ -~10940~^~418~^0.45^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10940~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10942~^~203~^9.27^4^1.16^~1~^~A~^^^1^7.23^12.54^3^5.54^12.98^~2, 3~^~05/01/2007~ -~10942~^~204~^52.33^4^3.23^~1~^~A~^^^1^43.92^57.97^3^42.05^62.60^~2, 3~^~05/01/2007~ -~10942~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10942~^~207~^0.72^4^0.09^~1~^~A~^^^1^0.54^0.98^3^0.42^1.01^~2, 3~^~05/01/2007~ -~10942~^~255~^38.32^4^2.38^~1~^~A~^^^1^33.42^44.48^3^30.72^45.91^~2, 3~^~05/01/2007~ -~10942~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~303~^0.47^4^0.02^~1~^~A~^^^1^0.43^0.53^3^0.39^0.54^~2, 3~^~05/01/2007~ -~10942~^~309~^0.90^4^0.04^~1~^~A~^^^1^0.84^1.04^3^0.75^1.05^~2, 3~^~05/01/2007~ -~10942~^~323~^0.04^0^^~4~^~BFSN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~418~^1.47^0^^~4~^~BFPN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10942~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10943~^~203~^21.61^12^0.53^~1~^~A~^^^1^18.63^24.43^11^20.44^22.77^~2, 3~^~05/01/2007~ -~10943~^~204~^3.15^12^0.26^~1~^~A~^^^1^2.14^5.28^11^2.58^3.72^~2, 3~^~05/01/2007~ -~10943~^~205~^0.31^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10943~^~207~^1.86^12^0.20^~1~^~A~^^^1^0.93^3.57^11^1.40^2.31^~2, 3~^~05/01/2007~ -~10943~^~255~^73.07^12^0.59^~1~^~A~^^^1^69.51^77.27^11^71.76^74.37^~2, 3~^~05/01/2007~ -~10943~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~303~^0.98^12^0.04^~1~^~A~^^^1^0.77^1.27^11^0.87^1.07^~2, 3~^~05/01/2007~ -~10943~^~309~^2.00^12^0.07^~1~^~A~^^^1^1.53^2.49^11^1.82^2.17^~2, 3~^~05/01/2007~ -~10943~^~323~^0.07^0^^~4~^~BFSN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~418~^0.47^0^^~4~^~BFPN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10943~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~203~^20.39^12^0.64^~1~^~A~^^^1^18.13^24.29^11^18.97^21.80^~2, 3~^~05/01/2007~ -~10944~^~204~^2.09^12^0.17^~1~^~A~^^^1^1.56^3.32^11^1.70^2.47^~2, 3~^~05/01/2007~ -~10944~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10944~^~207~^1.56^12^0.13^~1~^~A~^^^1^0.71^2.34^11^1.26^1.85^~2, 3~^~05/01/2007~ -~10944~^~255~^76.91^12^0.49^~1~^~A~^^^1^74.24^79.57^11^75.83^77.99^~2, 3~^~05/01/2007~ -~10944~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~303~^0.92^12^0.04^~1~^~A~^^^1^0.74^1.18^11^0.83^1.01^~2, 3~^~05/01/2007~ -~10944~^~309~^1.73^12^0.07^~1~^~A~^^^1^1.40^2.36^11^1.57^1.89^~2, 3~^~05/01/2007~ -~10944~^~323~^0.21^0^^~4~^~BFSN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~418~^0.50^0^^~4~^~BFPN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10944~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~203~^27.58^12^0.99^~1~^~A~^^^1^21.89^32.41^11^25.40^29.76^~2, 3~^~05/01/2007~ -~10945~^~204~^12.14^12^0.87^~1~^~A~^^^1^9.27^17.58^11^10.21^14.06^~2, 3~^~05/01/2007~ -~10945~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10945~^~207~^1.21^12^0.10^~1~^~A~^^^1^0.85^1.87^11^0.97^1.45^~2, 3~^~05/01/2007~ -~10945~^~255~^59.20^12^0.60^~1~^~A~^^^1^55.25^62.54^11^57.86^60.53^~2, 3~^~05/01/2007~ -~10945~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~303~^1.82^12^0.07^~1~^~A~^^^1^1.46^2.25^11^1.65^1.97^~2, 3~^~05/01/2007~ -~10945~^~309~^4.85^12^0.19^~1~^~A~^^^1^3.59^5.73^11^4.41^5.29^~2, 3~^~05/01/2007~ -~10945~^~323~^0.11^0^^~4~^~BFSN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~418~^0.94^0^^~4~^~BFPN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10945~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10946~^~203~^18.29^12^0.34^~1~^~A~^^^1^16.21^20.52^11^17.54^19.04^~2, 3~^~05/01/2007~ -~10946~^~204~^5.36^12^0.29^~1~^~A~^^^1^3.38^7.17^11^4.70^6.00^~2, 3~^~05/01/2007~ -~10946~^~205~^0.18^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~10946~^~207~^1.32^12^0.12^~1~^~A~^^^1^0.89^2.20^11^1.05^1.59^~2, 3~^~05/01/2007~ -~10946~^~255~^74.85^12^0.52^~1~^~A~^^^1^72.39^78.45^11^73.68^76.00^~2, 3~^~05/01/2007~ -~10946~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~303~^1.04^12^0.02^~1~^~A~^^^1^0.90^1.19^11^0.98^1.09^~2, 3~^~05/01/2007~ -~10946~^~309~^3.10^12^0.08^~1~^~A~^^^1^2.70^3.61^11^2.92^3.28^~2, 3~^~05/01/2007~ -~10946~^~323~^0.23^0^^~4~^~BFSN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~418~^0.89^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10946~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10947~^~203~^29.65^5^0.49^~1~^~A~^^^1^28.50^31.44^4^28.28^31.01^~2, 3~^~06/01/2014~ -~10947~^~204~^5.73^5^0.91^~1~^~A~^^^1^3.58^8.89^4^3.19^8.26^~2, 3~^~06/01/2014~ -~10947~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~10947~^~207~^2.09^5^0.11^~1~^~A~^^^1^1.83^2.46^4^1.76^2.40^~2, 3~^~06/01/2014~ -~10947~^~255~^63.06^5^1.27^~1~^~A~^^^1^59.56^65.78^4^59.51^66.60^~2, 3~^~06/01/2014~ -~10947~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~303~^0.56^5^0.03^~1~^~A~^^^1^0.44^0.62^4^0.46^0.64^~2, 3~^~06/01/2014~ -~10947~^~309~^1.74^5^0.11^~1~^~A~^^^1^1.33^2.04^4^1.41^2.06^~2, 3~^~06/01/2014~ -~10947~^~323~^0.43^3^0.22^~1~^~A~^^^1^0.19^0.88^2^-0.52^1.38^~2, 3~^~06/01/2014~ -~10947~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~418~^0.68^3^0.13^~1~^~A~^^^1^0.53^0.95^2^0.08^1.26^~2, 3~^~06/01/2014~ -~10947~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10947~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~10948~^~203~^21.09^5^0.40^~1~^~A~^^^1^19.69^21.94^4^19.97^22.19^~2, 3~^~06/01/2014~ -~10948~^~204~^3.48^5^0.53^~1~^~A~^^^1^1.80^4.71^4^1.98^4.97^~2, 3~^~06/01/2014~ -~10948~^~205~^0.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~207~^1.68^5^0.08^~1~^~A~^^^1^1.50^1.93^4^1.45^1.91^~2, 3~^~06/01/2014~ -~10948~^~255~^73.53^5^0.51^~1~^~A~^^^1^71.50^74.39^4^72.09^74.96^~2, 3~^~06/01/2014~ -~10948~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~303~^0.41^5^0.01^~1~^~A~^^^1^0.37^0.45^4^0.37^0.44^~2, 3~^~06/01/2014~ -~10948~^~309~^1.28^5^0.05^~1~^~A~^^^1^1.11^1.40^4^1.12^1.42^~2, 3~^~06/01/2014~ -~10948~^~323~^0.23^3^4.0e-03^~1~^~A~^^^1^0.22^0.23^2^0.21^0.24^~2, 3~^~06/01/2014~ -~10948~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~418~^0.41^3^0.02^~1~^~A~^^^1^0.36^0.44^2^0.30^0.51^~2, 3~^~06/01/2014~ -~10948~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10948~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~10949~^~203~^19.45^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~204~^10.26^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10949~^~207~^1.55^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~255~^68.65^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~303~^0.42^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~309~^1.22^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~418~^0.56^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10950~^~203~^28.33^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~204~^9.42^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~205~^0.02^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~207~^2.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~255~^60.71^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~303~^0.57^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~309~^1.70^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~323~^0.42^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~418~^0.73^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10951~^~203~^20.16^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~204~^3.14^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~207~^1.54^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~255~^76.10^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~303~^0.91^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~309~^1.72^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~418~^0.52^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~203~^21.50^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~204~^3.70^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~205~^0.31^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~207~^1.85^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~255~^72.64^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~309~^1.99^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~323~^0.07^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~418~^0.48^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10953~^~203~^17.19^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~204~^11.12^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~205~^0.16^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~207~^1.25^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~255~^70.36^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~303~^0.97^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~309~^2.83^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~418~^0.96^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~203~^25.84^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~204~^16.94^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~207~^1.19^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~255~^56.13^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~303~^1.72^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~309~^4.48^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~323~^0.12^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~418~^0.98^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10955~^~203~^22.27^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~204~^9.38^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~205~^0.52^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~207~^2.65^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~211~^0.06^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~255~^65.19^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~269~^0.06^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~303~^1.01^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~309~^2.42^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~323~^0.32^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~342~^0.05^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~344~^0.02^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~346~^0.03^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~418~^0.53^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10956~^~203~^27.57^12^0.41^~1~^~A~^^^1^24.72^29.59^11^26.65^28.49^~4~^~02/01/2008~ -~10956~^~204~^4.41^12^0.56^~1~^~A~^^^1^2.48^7.51^11^3.18^5.64^~4~^~02/01/2008~ -~10956~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10956~^~207~^1.07^12^0.01^~1~^~A~^^^1^0.94^1.15^11^1.03^1.10^~4~^~02/01/2008~ -~10956~^~255~^68.72^12^0.51^~1~^~A~^^^1^66.13^71.74^11^67.58^69.84^~4~^~02/01/2008~ -~10956~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~303~^0.97^6^0.01^~1~^~A~^^^1^0.89^1.01^5^0.91^1.01^~4~^~02/01/2008~ -~10956~^~309~^4.11^6^0.12^~1~^~A~^^^1^3.63^4.43^5^3.78^4.43^~4~^~02/01/2008~ -~10956~^~323~^0.10^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2008~ -~10956~^~418~^0.69^4^0.12^~1~^~A~^^^1^0.36^0.91^3^0.31^1.07^~4~^~02/01/2008~ -~10956~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10957~^~203~^21.64^12^0.23^~1~^~A~^^^1^19.81^22.71^11^21.11^22.15^~4~^~02/01/2008~ -~10957~^~204~^3.39^12^0.38^~1~^~A~^^^1^1.77^5.95^11^2.53^4.24^~4~^~02/01/2008~ -~10957~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10957~^~207~^1.02^12^0.01^~1~^~A~^^^1^0.89^1.09^11^0.98^1.05^~4~^~02/01/2008~ -~10957~^~255~^75.18^12^0.28^~1~^~A~^^^1^73.93^77.07^11^74.56^75.79^~4~^~02/01/2008~ -~10957~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~303~^0.84^6^0.02^~1~^~A~^^^1^0.78^0.95^5^0.77^0.90^~4~^~02/01/2008~ -~10957~^~309~^3.18^6^0.07^~1~^~A~^^^1^2.86^3.41^5^2.98^3.38^~4~^~02/01/2008~ -~10957~^~323~^0.08^0^^~4~^~BFYN~^~10068~^^^^^^^^^~03/01/2008~ -~10957~^~418~^0.64^4^0.09^~1~^~A~^^^1^0.39^0.79^3^0.35^0.93^~4~^~02/01/2008~ -~10957~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10958~^~203~^22.54^12^0.34^~1~^~A~^^^1^20.50^24.20^11^21.78^23.30^~4~^~02/01/2008~ -~10958~^~204~^3.40^12^0.35^~1~^~A~^^^1^2.03^6.01^11^2.62^4.18^~4~^~02/01/2008~ -~10958~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10958~^~207~^1.07^12^0.02^~1~^~A~^^^1^0.98^1.20^11^1.02^1.11^~4~^~02/01/2008~ -~10958~^~255~^74.37^12^0.25^~1~^~A~^^^1^72.97^76.02^11^73.81^74.91^~4~^~02/01/2008~ -~10958~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~303~^0.89^6^0.07^~1~^~A~^^^1^0.72^1.21^5^0.69^1.08^~4~^~02/01/2008~ -~10958~^~309~^1.95^6^0.11^~1~^~A~^^^1^1.52^2.24^5^1.65^2.24^~4~^~02/01/2008~ -~10958~^~323~^0.08^0^^~4~^~BFYN~^~10068~^^^^^^^^^~04/01/2008~ -~10958~^~418~^0.87^4^0.25^~1~^~A~^^^1^0.32^1.39^3^0.05^1.68^~4~^~02/01/2008~ -~10958~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~203~^28.47^12^0.31^~1~^~A~^^^1^27.00^29.94^11^27.76^29.16^~4~^~02/01/2008~ -~10959~^~204~^4.49^12^0.57^~1~^~A~^^^1^2.13^8.00^11^3.21^5.75^~4~^~02/01/2008~ -~10959~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10959~^~207~^1.13^12^0.01^~1~^~A~^^^1^1.07^1.20^11^1.10^1.15^~4~^~02/01/2008~ -~10959~^~255~^67.26^12^0.62^~1~^~A~^^^1^62.81^70.45^11^65.88^68.62^~4~^~02/01/2008~ -~10959~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~303~^0.92^6^0.03^~1~^~A~^^^1^0.78^1.01^5^0.82^1.00^~4~^~02/01/2008~ -~10959~^~309~^2.43^6^0.09^~1~^~A~^^^1^2.12^2.70^5^2.18^2.67^~4~^~02/01/2008~ -~10959~^~323~^0.10^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2008~ -~10959~^~418~^0.61^4^0.07^~1~^~A~^^^1^0.40^0.73^3^0.37^0.84^~4~^~02/01/2008~ -~10959~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10960~^~203~^27.47^12^0.29^~1~^~A~^^^1^25.74^28.83^11^26.83^28.11^~4~^~03/01/2008~ -~10960~^~204~^4.23^12^0.49^~1~^~A~^^^1^2.60^8.30^11^3.13^5.31^~4~^~03/01/2008~ -~10960~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10960~^~207~^1.21^12^0.02^~1~^~A~^^^1^1.11^1.36^11^1.15^1.25^~4~^~03/01/2008~ -~10960~^~255~^68.70^12^0.38^~1~^~A~^^^1^66.29^71.14^11^67.85^69.53^~4~^~03/01/2008~ -~10960~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~303~^1.25^4^0.04^~1~^~A~^^^1^1.14^1.37^3^1.09^1.39^~4~^~03/01/2008~ -~10960~^~309~^2.74^4^0.25^~1~^~A~^^^1^2.29^3.45^3^1.92^3.56^~4~^~03/01/2008~ -~10960~^~323~^0.10^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2008~ -~10960~^~418~^0.76^4^0.10^~1~^~A~^^^1^0.46^0.93^3^0.43^1.08^~4~^~03/01/2008~ -~10960~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~203~^21.65^12^0.22^~1~^~A~^^^1^20.29^22.99^11^21.15^22.15^~4~^~03/01/2008~ -~10961~^~204~^3.91^12^0.42^~1~^~A~^^^1^2.18^6.70^11^2.99^4.83^~4~^~03/01/2008~ -~10961~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10961~^~207~^1.08^12^0.02^~1~^~A~^^^1^0.98^1.23^11^1.03^1.12^~4~^~03/01/2008~ -~10961~^~255~^74.57^12^0.31^~1~^~A~^^^1^72.58^76.60^11^73.87^75.27^~4~^~03/01/2008~ -~10961~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~303~^1.07^4^0.02^~1~^~A~^^^1^1.03^1.14^3^0.99^1.15^~4~^~03/01/2008~ -~10961~^~309~^2.16^4^0.16^~1~^~A~^^^1^1.86^2.62^3^1.63^2.68^~4~^~03/01/2008~ -~10961~^~323~^0.08^0^^~4~^~BFYN~^~10068~^^^^^^^^^~04/01/2008~ -~10961~^~418~^0.59^4^0.08^~1~^~A~^^^1^0.36^0.74^3^0.33^0.85^~4~^~03/01/2008~ -~10961~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10962~^~203~^31.11^12^0.33^~1~^~A~^^^1^29.40^32.99^11^30.38^31.83^~4~^~03/01/2008~ -~10962~^~204~^2.56^12^0.16^~1~^~A~^^^1^1.64^3.49^11^2.19^2.92^~4~^~03/01/2008~ -~10962~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10962~^~207~^1.14^12^0.02^~1~^~A~^^^1^1.01^1.34^11^1.07^1.20^~4~^~03/01/2008~ -~10962~^~255~^66.99^12^0.34^~1~^~A~^^^1^65.09^69.04^11^66.22^67.76^~4~^~03/01/2008~ -~10962~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~303~^1.06^6^0.04^~1~^~A~^^^1^0.97^1.22^5^0.94^1.17^~4~^~03/01/2008~ -~10962~^~309~^2.86^6^0.10^~1~^~A~^^^1^2.51^3.22^5^2.58^3.12^~4~^~03/01/2008~ -~10962~^~323~^0.11^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2008~ -~10962~^~418~^0.58^4^0.12^~1~^~A~^^^1^0.26^0.84^3^0.19^0.96^~4~^~03/01/2008~ -~10962~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~203~^22.88^12^0.21^~1~^~A~^^^1^22.04^24.65^11^22.42^23.34^~4~^~03/01/2008~ -~10963~^~204~^1.71^12^0.15^~1~^~A~^^^1^1.14^2.71^11^1.36^2.06^~4~^~03/01/2008~ -~10963~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10963~^~207~^1.11^12^0.01^~1~^~A~^^^1^1.03^1.20^11^1.07^1.15^~4~^~03/01/2008~ -~10963~^~255~^75.88^12^0.28^~1~^~A~^^^1^73.47^77.37^11^75.24^76.51^~4~^~03/01/2008~ -~10963~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~303~^0.80^6^0.09^~1~^~A~^^^1^0.60^1.23^5^0.55^1.05^~4~^~03/01/2008~ -~10963~^~309~^2.05^6^0.13^~1~^~A~^^^1^1.67^2.65^5^1.68^2.40^~4~^~03/01/2008~ -~10963~^~323~^0.08^0^^~4~^~BFYN~^~10068~^^^^^^^^^~04/01/2008~ -~10963~^~418~^0.53^4^0.11^~1~^~A~^^^1^0.25^0.75^3^0.16^0.89^~4~^~03/01/2008~ -~10963~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10972~^~203~^17.99^16^0.15^~1~^~AR~^^^^15.07^20.59^^^^^~05/01/2009~ -~10972~^~204~^16.00^16^^~1~^~AR~^^^^10.08^27.35^^^^^~05/01/2009~ -~10972~^~205~^0.44^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10972~^~207~^0.91^16^6.0e-03^~1~^~AR~^^^^0.82^1.19^^^^^~05/01/2009~ -~10972~^~255~^64.67^16^0.26^~1~^~AR~^^^^55.50^68.93^^^^^~05/01/2009~ -~10972~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~303~^0.88^8^0.04^~1~^~AR~^^^^0.78^1.14^^^^^~05/01/2009~ -~10972~^~309~^1.91^8^0.14^~1~^~AR~^^^^1.40^2.44^^^^^~05/01/2009~ -~10972~^~323~^0.45^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~342~^0.05^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~418~^0.73^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~203~^21.10^14^0.23^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~204~^4.00^14^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10973~^~207~^1.07^14^6.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~255~^73.62^14^0.29^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~303~^0.86^7^0.05^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~309~^1.93^7^0.16^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~323~^0.29^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~418~^0.64^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~203~^22.83^16^1.51^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~204~^32.93^16^4.10^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~205~^1.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10974~^~207~^1.18^16^0.08^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~255~^41.67^16^2.57^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~303~^1.15^8^0.07^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~309~^2.58^8^0.14^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~323~^0.35^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~341~^0.01^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~418~^1.17^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~203~^26.69^16^1.51^~1~^~AR~^^^^19.81^31.21^^^^^~05/01/2009~ -~10975~^~204~^20.04^16^2.20^~1~^~AR~^^^^14.06^31.86^^^^^~05/01/2009~ -~10975~^~205~^0.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10975~^~207~^1.34^16^0.08^~1~^~AR~^^^^0.95^1.54^^^^^~05/01/2009~ -~10975~^~255~^51.35^16^2.48^~1~^~AR~^^^^41.09^58.96^^^^^~05/01/2009~ -~10975~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~303~^1.10^8^0.03^~1~^~AR~^^^^0.95^1.49^^^^^~05/01/2009~ -~10975~^~309~^2.57^8^0.11^~1~^~AR~^^^^1.91^3.03^^^^^~05/01/2009~ -~10975~^~323~^0.31^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~418~^1.02^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~203~^30.55^14^1.51^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~204~^7.15^14^1.30^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10976~^~207~^1.49^14^0.08^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~255~^61.03^14^2.55^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~303~^1.05^7^0.02^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~309~^2.56^7^0.14^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~323~^0.26^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~418~^0.86^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~203~^22.59^16^0.46^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~204~^31.42^16^1.30^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~205~^1.08^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10977~^~207~^1.05^16^0.02^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~255~^43.85^16^0.99^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~303~^1.21^8^0.06^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~309~^2.48^8^0.22^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~323~^0.47^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~418~^1.11^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~203~^27.14^16^0.44^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~204~^21.39^16^1.20^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10978~^~207~^1.26^16^0.01^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~255~^51.97^16^0.91^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~303~^1.16^8^0.06^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~309~^2.54^8^0.20^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~323~^0.44^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~342~^0.04^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~418~^0.97^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~203~^31.69^14^0.52^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~204~^6.20^14^1.30^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~205~^0.57^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10979~^~207~^1.47^14^0.02^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~255~^60.08^14^1.02^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~303~^1.11^7^0.06^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~309~^2.59^7^0.22^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~323~^0.40^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~341~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~342~^0.03^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~343~^0.00^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~418~^0.83^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10980~^~203~^20.85^12^0.11^~1~^~A~^^^1^20.24^21.46^11^20.60^21.09^~2, 3~^~04/01/2010~ -~10980~^~204~^9.84^12^0.28^~1~^~A~^^^1^8.45^11.75^11^9.21^10.46^~2, 3~^~04/01/2010~ -~10980~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10980~^~207~^1.10^12^0.04^~1~^~A~^^^1^1.02^1.56^11^1.00^1.19^~2, 3~^~04/01/2010~ -~10980~^~255~^68.57^12^0.18^~1~^~A~^^^1^67.51^69.86^11^68.16^68.97^~2, 3~^~04/01/2010~ -~10980~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~303~^0.84^12^0.03^~1~^~A~^^^1^0.67^1.03^11^0.76^0.91^~2, 3~^~04/01/2010~ -~10980~^~309~^2.73^12^0.05^~1~^~A~^^^1^2.51^3.08^11^2.62^2.84^~2, 3~^~04/01/2010~ -~10980~^~323~^0.20^0^^~4~^~BFSN~^~10858~^^^^^^^^^~04/01/2010~ -~10980~^~418~^0.54^4^0.03^~1~^~A~^^^1^0.46^0.62^3^0.41^0.65^~2, 3~^~04/01/2010~ -~10980~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10981~^~203~^24.15^12^0.28^~1~^~A~^^^1^22.86^26.14^11^23.51^24.77^~2, 3~^~05/01/2010~ -~10981~^~204~^17.65^12^0.67^~1~^~A~^^^1^14.79^23.03^11^16.15^19.13^~2, 3~^~05/01/2010~ -~10981~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~207~^1.08^12^0.01^~1~^~A~^^^1^1.00^1.18^11^1.04^1.11^~2, 3~^~05/01/2010~ -~10981~^~255~^57.58^12^0.72^~1~^~A~^^^1^52.32^60.82^11^55.97^59.18^~2, 3~^~05/01/2010~ -~10981~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~303~^0.96^12^0.02^~1~^~A~^^^1^0.81^1.09^11^0.90^1.01^~2, 3~^~05/01/2010~ -~10981~^~309~^3.24^12^0.10^~1~^~A~^^^1^2.65^3.84^11^3.01^3.47^~2, 3~^~05/01/2010~ -~10981~^~323~^0.27^0^^~4~^~BFSN~^~10858~^^^^^^^^^~05/01/2010~ -~10981~^~418~^0.75^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10981~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10982~^~203~^21.35^12^0.16^~1~^~A~^^^1^20.25^22.19^11^20.98^21.72^~2, 3~^~01/01/2011~ -~10982~^~204~^3.78^18^0.18^~1~^~A~^^^1^2.40^5.50^17^3.40^4.16^~2, 3~^~01/01/2011~ -~10982~^~205~^0.82^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~207~^1.11^12^9.0e-03^~1~^~A~^^^1^1.04^1.14^11^1.09^1.13^~2, 3~^~01/01/2011~ -~10982~^~255~^72.94^12^0.19^~1~^~A~^^^1^71.95^73.93^11^72.50^73.36^~2, 3~^~01/01/2011~ -~10982~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~303~^0.77^12^0.01^~1~^~A~^^^1^0.63^0.87^11^0.73^0.81^~2, 3~^~01/01/2011~ -~10982~^~309~^1.82^12^0.07^~1~^~A~^^^1^1.46^2.33^11^1.66^1.98^~2, 3~^~01/01/2011~ -~10982~^~323~^0.18^0^^~4~^~BFSN~^~10858~^^^^^^^^^~01/01/2011~ -~10982~^~418~^0.49^4^0.02^~1~^~A~^^^1^0.42^0.54^3^0.40^0.57^~2, 3~^~01/01/2011~ -~10982~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~203~^27.58^12^0.45^~1~^~A~^^^1^25.44^30.06^11^26.58^28.57^~2, 3~^~01/01/2011~ -~10983~^~204~^7.14^18^0.48^~1~^~A~^^^1^3.80^10.90^17^6.11^8.17^~2, 3~^~01/01/2011~ -~10983~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~207~^1.24^12^0.01^~1~^~A~^^^1^1.16^1.36^11^1.20^1.28^~2, 3~^~01/01/2011~ -~10983~^~255~^64.76^12^0.64^~1~^~A~^^^1^60.17^68.01^11^63.33^66.19^~2, 3~^~01/01/2011~ -~10983~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~303~^0.92^12^0.03^~1~^~A~^^^1^0.70^1.15^11^0.84^0.99^~2, 3~^~01/01/2011~ -~10983~^~309~^2.50^12^0.11^~1~^~A~^^^1^1.87^3.37^11^2.25^2.74^~2, 3~^~01/01/2011~ -~10983~^~323~^0.23^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~418~^0.85^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~203~^26.14^12^0.37^~1~^~A~^^^1^23.19^28.25^11^25.30^26.97^~2, 3~^~01/01/2011~ -~10984~^~204~^6.74^12^0.46^~1~^~A~^^^1^4.20^9.10^11^5.72^7.76^~2, 3~^~01/01/2011~ -~10984~^~205~^0.89^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10984~^~207~^1.22^12^0.01^~1~^~A~^^^1^1.07^1.29^11^1.18^1.26^~2, 3~^~01/01/2011~ -~10984~^~255~^65.00^12^0.45^~1~^~A~^^^1^62.06^67.84^11^64.00^65.99^~2, 3~^~01/01/2011~ -~10984~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~303~^0.92^12^0.03^~1~^~A~^^^1^0.71^1.06^11^0.85^0.99^~2, 3~^~01/01/2011~ -~10984~^~309~^2.45^12^0.06^~1~^~A~^^^1^2.12^2.86^11^2.30^2.59^~2, 3~^~01/01/2011~ -~10984~^~323~^0.23^0^^~4~^~BFSN~^~10858~^^^^^^^^^~01/01/2011~ -~10984~^~418~^0.69^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10985~^~203~^27.83^6^0.85^~1~^~A~^^^1^25.25^31.38^5^25.62^30.03^~2, 3~^~02/01/2011~ -~10985~^~204~^11.65^6^1.00^~1~^~A~^^^1^9.00^14.60^5^9.05^14.24^~2, 3~^~02/01/2011~ -~10985~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10985~^~207~^1.10^6^0.06^~1~^~A~^^^1^0.92^1.38^5^0.93^1.26^~2, 3~^~02/01/2011~ -~10985~^~255~^59.98^6^0.57^~1~^~A~^^^1^57.75^61.55^5^58.51^61.44^~2, 3~^~02/01/2011~ -~10985~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~303~^0.92^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~309~^2.46^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~323~^0.26^0^^~4~^~BFSN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~418~^0.73^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~203~^27.83^6^0.85^~1~^~A~^^^1^25.25^31.38^5^25.62^30.03^~2, 3~^~02/01/2011~ -~10986~^~204~^11.65^6^1.00^~1~^~A~^^^1^9.00^14.60^5^9.05^14.24^~2, 3~^~02/01/2011~ -~10986~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10986~^~207~^1.10^6^0.06^~1~^~A~^^^1^0.92^1.38^5^0.93^1.26^~2, 3~^~02/01/2011~ -~10986~^~255~^59.98^6^0.57^~1~^~A~^^^1^57.75^61.55^5^58.51^61.44^~2, 3~^~02/01/2011~ -~10986~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~303~^1.02^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~309~^3.73^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~323~^0.26^0^^~4~^~BFSN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~418~^0.73^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~203~^29.20^6^0.64^~1~^~A~^^^1^27.69^31.75^5^27.54^30.85^~2, 3~^~02/01/2011~ -~10987~^~204~^11.38^6^0.83^~1~^~A~^^^1^8.00^13.30^5^9.23^13.53^~2, 3~^~02/01/2011~ -~10987~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10987~^~207~^1.26^6^0.03^~1~^~A~^^^1^1.16^1.34^5^1.18^1.34^~2, 3~^~02/01/2011~ -~10987~^~255~^58.72^6^0.34^~1~^~A~^^^1^58.06^59.91^5^57.82^59.60^~2, 3~^~02/01/2011~ -~10987~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~303~^0.98^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~309~^2.66^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~323~^0.27^0^^~4~^~BFSN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~418~^0.90^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10988~^~203~^24.73^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~204~^11.13^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~205~^0.83^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~207~^1.16^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~255~^62.14^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~303~^0.89^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~309~^2.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~323~^0.21^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~418~^0.68^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~203~^20.54^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~204~^7.94^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~205~^0.76^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~255~^69.70^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~303~^0.74^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~309~^1.74^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~418~^0.49^4^0.02^~1~^~A~^^^1^0.42^0.54^3^0.40^0.57^~2, 3~^~02/01/2011~ -~10989~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~203~^26.48^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~204~^10.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~207~^1.20^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~255~^62.69^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~303~^0.89^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~309~^2.41^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~418~^0.84^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~203~^26.28^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~204~^15.73^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~207~^1.05^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~255~^57.45^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~303~^0.89^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~309~^2.33^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~418~^0.72^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~203~^25.58^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~204~^17.56^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~255~^56.32^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~303~^0.96^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~309~^3.41^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~418~^0.71^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~203~^26.40^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~204~^18.31^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~207~^1.16^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~255~^54.61^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~303~^0.91^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~309~^2.42^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~418~^0.86^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10994~^~203~^12.53^6^0.50^~1~^~A~^^^1^11.25^14.44^5^11.24^13.81^~2, 3~^~04/01/2012~ -~10994~^~204~^39.27^6^1.91^~1~^~A~^^^1^34.01^44.10^5^34.34^44.18^~2, 3~^~04/01/2012~ -~10994~^~205~^0.83^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10994~^~207~^2.40^6^0.07^~1~^~A~^^^1^2.12^2.65^5^2.21^2.59^~2, 3~^~04/01/2012~ -~10994~^~210~^0.83^3^0.08^~1~^~A~^^^1^0.70^1.00^2^0.45^1.21^~2, 3~^~04/01/2012~ -~10994~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~255~^45.01^6^1.51^~1~^~A~^^^1^41.46^49.70^5^41.11^48.90^~2, 3~^~04/01/2012~ -~10994~^~269~^0.83^3^0.08^~1~^~A~^^^1^0.70^1.00^2^0.45^1.21^~2, 3~^~04/01/2012~ -~10994~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~303~^0.42^6^0.03^~1~^~A~^^^1^0.34^0.54^5^0.34^0.50^~2, 3~^~04/01/2012~ -~10994~^~309~^1.19^6^0.08^~1~^~A~^^^1^0.96^1.48^5^0.98^1.39^~2, 3~^~04/01/2012~ -~10994~^~323~^0.43^0^^~4~^~BFSN~^~10123~^^^^^^^^^~08/01/2012~ -~10994~^~418~^0.50^0^^~4~^~BFPN~^~10123~^^^^^^^^^~08/01/2012~ -~10994~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10998~^~203~^28.31^5^0.43^~1~^~A~^^^1^26.06^30.50^2^25.77^30.85^~2, 3~^~08/01/2015~ -~10998~^~204~^2.78^5^0.27^~1~^~A~^^^1^2.00^4.00^3^1.90^3.66^~2, 3~^~08/01/2015~ -~10998~^~205~^1.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10998~^~207~^4.60^5^0.05^~1~^~A~^^^1^4.31^4.71^2^4.36^4.83^~2, 3~^~08/01/2015~ -~10998~^~210~^0.90^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~211~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~255~^62.50^5^0.36^~1~^~A~^^^1^61.25^63.98^2^60.41^64.59^~2, 3~^~08/01/2015~ -~10998~^~269~^1.20^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~10998~^~303~^0.56^5^0.04^~1~^~A~^^^1^0.47^0.76^2^0.38^0.74^~2, 3~^~08/01/2015~ -~10998~^~309~^1.73^5^0.05^~1~^~A~^^^1^1.54^1.91^2^1.50^1.95^~2, 3~^~08/01/2015~ -~10998~^~323~^0.41^2^^~1~^~A~^^^1^0.27^0.55^1^^^^~08/01/2015~ -~10998~^~341~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~04/01/2013~ -~10998~^~342~^0.21^2^^~1~^~A~^^^1^0.00^0.41^1^^^~1~^~08/01/2015~ -~10998~^~343~^0.07^2^^~1~^~A~^^^1^0.00^0.14^1^^^~1~^~08/01/2015~ -~10998~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10998~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10998~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10998~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~10998~^~418~^0.43^3^0.06^~1~^~A~^^^1^0.34^0.61^1^-0.36^1.22^~2, 3~^~08/01/2015~ -~10998~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~10998~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11001~^~203~^3.99^10^0.56^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~204~^0.69^10^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~205~^2.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11001~^~207~^0.40^10^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~210~^0.00^3^^~1~^^^^^^^^^^^~12/01/2002~ -~11001~^~211~^0.08^5^0.03^~1~^^^^2^0.00^0.20^4^-0.02^0.19^~4~^~12/01/2002~ -~11001~^~212~^0.12^6^0.05^~1~^^^^2^0.00^0.40^5^-0.03^0.26^~4~^~12/01/2002~ -~11001~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11001~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11001~^~255~^92.82^6^0.29^~1~^^^^2^91.58^93.56^5^92.05^93.58^~4~^~03/01/2006~ -~11001~^~269~^0.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~11001~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11001~^~303~^0.96^10^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~309~^0.92^10^0.27^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~323~^0.02^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11001~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11003~^~203~^2.46^6^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~204~^0.33^6^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~205~^4.02^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11003~^~207~^1.50^6^0.32^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~255~^91.69^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~303~^2.32^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~309~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11004~^~203~^2.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~204~^0.18^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11004~^~207~^2.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~255~^91.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~303~^2.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~309~^0.88^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11005~^~203~^5.33^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~204~^0.29^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~205~^20.23^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11005~^~207~^1.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~255~^72.48^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~303~^2.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11006~^~203~^4.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~205~^16.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11006~^~207~^2.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~255~^77.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~303~^1.21^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11007~^~203~^3.27^11^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~204~^0.15^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~205~^10.51^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11007~^~207~^1.13^6^0.07^~1~^^^^^^^^^^^~05/01/2003~ -~11007~^~255~^84.94^15^0.54^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~269~^0.99^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~ -~11007~^~303~^1.28^11^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~309~^0.49^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~323~^0.19^0^^~4~^~BFZN~^~11008~^^^^^^^^^~06/01/2005~ -~11007~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11008~^~203~^2.89^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~204~^0.34^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~205~^11.95^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11008~^~207~^0.74^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~210~^0.73^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~211~^0.24^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~212~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~255~^84.08^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~269~^0.99^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11008~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11008~^~303~^0.61^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~309~^0.40^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11008~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11009~^~203~^2.63^4^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~204~^0.43^4^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~205~^7.75^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11009~^~207~^0.60^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~255~^88.59^7^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~303~^0.50^4^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~309~^0.32^3^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11010~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~205~^9.18^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11010~^~207~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~255~^86.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~269~^0.84^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~303~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~309~^0.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~323~^0.16^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11010~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11011~^~203~^2.20^4^0.02^~1~^~A~^^^1^2.14^2.25^3^2.12^2.27^~2, 3~^~03/01/2006~ -~11011~^~204~^0.12^6^0.01^~11~^~JO~^^^2^0.00^0.22^3^0.07^0.16^~2, 3~^~12/01/2002~ -~11011~^~205~^3.88^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11011~^~207~^0.58^4^9.0e-03^~1~^~A~^^^1^0.56^0.60^3^0.55^0.61^~2, 3~^~12/01/2002~ -~11011~^~210~^0.23^5^0.19^~6~^~JA~^^^2^0.03^1.00^4^-0.31^0.76^~1, 4~^~12/01/2002~ -~11011~^~211~^0.65^6^0.10^~6~^~JA~^^^3^0.32^1.02^5^0.38^0.92^~4~^~12/01/2002~ -~11011~^~212~^1.00^6^0.10^~6~^~JA~^^^3^0.68^1.40^5^0.74^1.26^~4~^~12/01/2002~ -~11011~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11011~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11011~^~255~^93.22^1^^~11~^~JO~^^^4^92.62^93.70^7^^^^~12/01/2002~ -~11011~^~269~^1.88^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11011~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11011~^~303~^2.14^4^1.35^~1~^~A~^^^1^0.74^6.20^3^-2.16^6.44^~2, 3~^~12/01/2002~ -~11011~^~309~^0.54^4^0.02^~1~^~A~^^^1^0.49^0.60^3^0.47^0.61^~2, 3~^~12/01/2002~ -~11011~^~323~^1.13^2^^~1~^^^^1^0.98^1.27^1^^^^~03/01/2006~ -~11011~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2006~ -~11011~^~342~^0.09^2^^~1~^^^^1^0.07^0.11^1^^^^~03/01/2006~ -~11011~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2006~ -~11011~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11012~^~203~^2.40^4^0.12^~1~^~A~^^^1^2.23^2.77^3^2.00^2.79^~2, 3~^~12/01/2002~ -~11012~^~204~^0.22^4^0.03^~1~^~A~^^^1^0.16^0.31^3^0.11^0.32^~2, 3~^~12/01/2002~ -~11012~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~207~^0.63^4^0.02^~1~^~A~^^^1^0.60^0.69^3^0.57^0.69^~2, 3~^~12/01/2002~ -~11012~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2002~ -~11012~^~210~^0.08^4^0.05^~1~^~A~^^^1^0.03^0.24^3^-0.07^0.24^~1, 2, 3~^~12/01/2002~ -~11012~^~211~^0.42^4^0.06^~1~^~A~^^^1^0.24^0.53^3^0.21^0.63^~2, 3~^~12/01/2002~ -~11012~^~212~^0.79^4^0.08^~1~^~A~^^^1^0.56^0.95^3^0.51^1.07^~2, 3~^~12/01/2002~ -~11012~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11012~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11012~^~255~^92.63^4^0.14^~1~^~A~^^^1^92.29^92.93^3^92.18^93.08^~2, 3~^~12/01/2002~ -~11012~^~269~^1.30^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11012~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11012~^~303~^0.91^4^0.11^~1~^~A~^^^1^0.58^1.08^3^0.54^1.26^~2, 3~^~12/01/2002~ -~11012~^~309~^0.60^4^0.03^~1~^~A~^^^1^0.51^0.66^3^0.49^0.70^~2, 3~^~12/01/2002~ -~11012~^~323~^1.50^0^^~4~^~BFSN~^~11019~^^^^^^^^^~03/01/2006~ -~11012~^~341~^0.02^0^^~4~^~BFSN~^~11019~^^^^^^^^^~03/01/2006~ -~11012~^~342~^0.21^0^^~4~^~BFSN~^~11019~^^^^^^^^^~03/01/2006~ -~11012~^~343~^0.00^0^^~4~^~BFSN~^~11019~^^^^^^^^^~03/01/2006~ -~11012~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11013~^~203~^1.80^158^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~204~^0.18^142^6.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~205~^2.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11013~^~207~^1.22^146^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~255~^94.32^186^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~303~^0.60^195^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11013~^~309~^0.47^78^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~323~^1.16^0^^~4~^~BFSN~^~11019~^^^^^^^^^~05/01/2013~ -~11013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11015~^~203~^2.14^4^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~204~^0.65^4^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~205~^2.46^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11015~^~207~^0.77^4^0.27^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~255~^93.98^4^0.65^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~269~^1.06^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~ -~11015~^~303~^1.83^4^0.78^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~309~^0.40^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~323~^1.22^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2006~ -~11015~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11018~^~203~^3.23^43^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~204~^0.23^43^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~205~^4.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11018~^~207~^0.62^43^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~255~^91.82^46^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~303~^0.73^43^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~309~^0.59^10^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11019~^~203~^2.95^4^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~204~^0.42^4^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~205~^1.92^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~207~^0.61^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~255~^94.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~269~^0.32^0^^~4~^~O~^~11012~^^^^^^^^^~12/01/2006~ -~11019~^~303~^0.56^38^0.03^~6~^~JA~^^^7^0.32^1.40^37^0.49^0.62^~4~^~12/01/2002~ -~11019~^~309~^0.41^38^0.01^~6~^~JA~^^^7^0.17^0.71^37^0.37^0.44^~4~^~12/01/2002~ -~11019~^~323~^1.20^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~341~^0.02^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~342~^0.17^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~343~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~344~^0.02^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~345~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~346~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~347~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11022~^~203~^5.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~204~^0.69^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~205~^3.29^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11022~^~207~^1.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~255~^89.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~303~^2.04^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11023~^~203~^3.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~205~^6.68^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11023~^~207~^0.83^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11023~^~255~^88.69^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~269~^1.04^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~303~^1.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11023~^~323~^1.45^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11024~^~203~^1.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~204~^0.17^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11024~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~255~^94.03^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~303~^0.43^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~309~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11025~^~203~^0.84^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~204~^0.18^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~205~^4.32^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11025~^~207~^0.71^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~255~^93.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~269~^1.95^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11025~^~303~^0.38^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~309~^0.77^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~323~^0.14^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11025~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11026~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~205~^5.20^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11026~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~255~^91.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~269~^3.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11026~^~303~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~309~^1.10^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~323~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11026~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11027~^~203~^1.53^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~205~^1.92^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11027~^~207~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~255~^95.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~303~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~309~^0.47^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11028~^~203~^1.72^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~204~^0.40^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~205~^3.22^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11028~^~207~^0.34^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~255~^94.32^9^5.16^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~269~^1.89^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~303~^0.32^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~309~^0.65^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~323~^0.63^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~ -~11028~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11029~^~203~^4.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~204~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~205~^4.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11029~^~207~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~255~^90.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~303~^0.81^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~309~^0.40^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11030~^~203~^4.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~204~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~205~^4.72^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11030~^~207~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~255~^89.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~303~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~309~^0.44^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11031~^~203~^6.84^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~204~^0.86^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~205~^20.17^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11031~^~207~^1.89^8^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~255~^70.24^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~269~^1.48^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11031~^~303~^3.14^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~309~^0.78^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~323~^0.32^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~ -~11031~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11032~^~203~^6.81^12^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~204~^0.32^12^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~205~^23.64^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11032~^~207~^2.06^12^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~255~^67.17^12^0.94^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~269~^1.63^0^^~4~^~BFSN~^~11031~^^^^^^^^^~12/01/2002~ -~11032~^~303~^2.45^12^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~309~^0.79^12^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~323~^0.14^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11032~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11033~^~203~^4.07^109^0.06^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~204~^0.29^107^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~205~^13.33^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11033~^~207~^1.14^108^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~255~^81.17^106^0.24^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~303~^1.61^115^0.06^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11033~^~309~^0.64^44^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11037~^~203~^6.40^22^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~204~^0.35^22^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~205~^19.83^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11037~^~207~^1.37^22^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~255~^72.05^22^0.39^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~269~^1.39^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11037~^~303~^1.51^22^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~309~^0.49^7^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~323~^0.72^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11037~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11038~^~203~^6.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~204~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~205~^19.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~210~^1.13^2^^~1~^^^^2^0.56^1.70^1^^^^~12/01/2002~ -~11038~^~211~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11038~^~212~^0.21^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11038~^~213~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11038~^~214~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11038~^~255~^72.98^2^^~1~^^^^2^72.00^73.95^1^^^^~12/01/2002~ -~11038~^~269~^1.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11038~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11038~^~303~^1.82^48^0.04^~1~^^^^5^1.19^2.46^37^1.72^1.92^~2, 3~^~12/01/2002~ -~11038~^~309~^0.74^48^0.02^~1~^^^^5^0.44^1.70^23^0.69^0.79^~2, 3~^~12/01/2002~ -~11038~^~323~^0.29^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11039~^~203~^7.59^67^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~204~^0.44^66^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~205~^25.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11039~^~207~^1.37^64^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~255~^65.46^71^0.45^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~303~^2.21^66^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~309~^0.63^19^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11040~^~203~^6.65^6^0.46^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~204~^0.30^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~205~^19.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11040~^~207~^1.25^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~255~^72.35^6^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~269~^1.37^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11040~^~303~^1.96^6^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~309~^0.55^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~323~^0.64^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11040~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11043~^~203~^3.04^8^0.46^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~204~^0.18^8^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~205~^5.94^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11043~^~207~^0.44^8^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~255~^90.40^8^1.58^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~269~^4.13^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11043~^~303~^0.91^8^0.35^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~309~^0.41^8^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~323~^0.10^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11043~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11044~^~203~^2.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~205~^4.19^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11044~^~207~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~255~^93.39^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~269~^2.84^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~303~^0.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~309~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~323~^0.07^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11044~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11045~^~203~^4.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~204~^0.21^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~205~^10.59^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11045~^~207~^0.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~255~^84.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~303~^1.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~309~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11046~^~203~^6.15^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~204~^0.70^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~205~^13.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11046~^~207~^0.95^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~255~^79.15^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~303~^1.93^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~309~^0.89^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11047~^~203~^7.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~204~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~205~^15.01^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11047~^~207~^1.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~255~^76.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~303~^2.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~309~^0.97^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11048~^~203~^9.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~204~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~205~^32.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11048~^~207~^1.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~255~^55.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~303~^3.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~309~^0.77^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11049~^~203~^9.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~204~^0.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~205~^30.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11049~^~207~^1.33^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~255~^58.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~303~^2.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~309~^0.69^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11050~^~203~^1.76^12^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~204~^0.19^11^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~205~^6.19^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11050~^~207~^1.17^12^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~255~^90.69^12^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~269~^0.63^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11050~^~303~^0.99^12^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~323~^0.03^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11050~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11052~^~203~^1.83^104^0.04^~6~^~JA~^^^2^1.82^2.25^99^1.73^1.92^~2, 3~^~04/01/2009~ -~11052~^~204~^0.22^14^0.03^~6~^~JA~^^^2^0.12^0.61^10^0.15^0.28^~2, 3~^~04/01/2009~ -~11052~^~205~^6.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11052~^~207~^0.66^144^0.01^~6~^~JA~^^^2^0.59^0.70^139^0.62^0.69^~2, 3~^~04/01/2009~ -~11052~^~209~^0.88^4^0.14^~1~^~A~^^^1^0.74^1.30^3^0.43^1.32^~1, 2, 3~^~04/01/2009~ -~11052~^~210~^0.36^4^0.16^~1~^~A~^^^1^0.07^0.66^3^-0.16^0.89^~1, 2, 3~^~04/01/2009~ -~11052~^~211~^1.51^4^0.11^~1~^~A~^^^1^1.30^1.75^3^1.15^1.86^~2, 3~^~04/01/2009~ -~11052~^~212~^1.39^4^0.20^~1~^~A~^^^1^0.79^1.72^3^0.73^2.04^~2, 3~^~04/01/2009~ -~11052~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~11052~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~11052~^~255~^90.32^165^0.27^~6~^~JA~^^^2^90.27^93.13^161^89.77^90.85^~2, 3~^~04/01/2009~ -~11052~^~269~^3.26^4^0.23^~1~^~A~^^^1^2.61^3.66^3^2.50^4.00^~2, 3~^~04/01/2009~ -~11052~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~11052~^~303~^1.03^155^0.07^~6~^~JA~^^^2^0.61^1.04^150^0.88^1.18^~2, 3~^~04/01/2009~ -~11052~^~309~^0.24^152^0.02^~6~^~JA~^^^2^0.24^0.35^147^0.20^0.28^~2, 3~^~04/01/2009~ -~11052~^~323~^0.41^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~ -~11052~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~11053~^~203~^1.89^5^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~204~^0.28^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~205~^7.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11053~^~207~^0.73^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~255~^89.22^6^1.14^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~269~^3.63^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11053~^~303~^0.65^28^0.02^~1~^^^^4^0.43^1.11^27^0.59^0.70^~4~^~08/01/2002~ -~11053~^~309~^0.25^28^0.01^~1~^^^^4^0.13^0.38^27^0.22^0.26^~4~^~08/01/2002~ -~11053~^~323~^0.46^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11053~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11054~^~203~^0.72^33^0.03^~11~^~JO~^^^3^0.18^1.48^27^0.65^0.79^~2, 3~^~04/01/2011~ -~11054~^~204~^0.17^33^0.01^~6~^~JA~^^^3^0.03^0.50^25^0.14^0.19^~2, 3~^~04/01/2011~ -~11054~^~205~^3.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11054~^~207~^0.77^33^0.06^~6~^~JA~^^^3^0.09^1.47^30^0.63^0.91^~2, 3~^~04/01/2011~ -~11054~^~255~^95.06^33^0.16^~6~^~JA~^^^3^92.98^96.97^24^94.72^95.39^~2, 3~^~04/01/2011~ -~11054~^~269~^1.25^28^0.09^~1~^^^^2^0.50^2.26^25^1.05^1.43^~2, 3~^~04/01/2011~ -~11054~^~303~^1.02^53^0.08^~6~^~JA~^^^4^0.38^3.66^18^0.83^1.20^~2, 3~^~04/01/2011~ -~11054~^~309~^0.36^24^0.09^~6~^~JA~^^^2^0.13^2.51^19^0.16^0.55^~2, 3~^~04/01/2011~ -~11054~^~323~^0.02^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11054~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11056~^~203~^1.05^16^0.02^~1~^~A~^^^2^0.81^1.37^9^0.99^1.10^~2, 3~^~03/01/2016~ -~11056~^~204~^0.41^16^0.01^~1~^~A~^^^2^0.30^0.60^2^0.35^0.46^~2, 3~^~03/01/2016~ -~11056~^~205~^4.19^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~207~^0.83^16^0.06^~1~^~A~^^^2^0.23^1.05^1^0.26^1.39^~2, 3~^~03/01/2016~ -~11056~^~209~^1.00^2^^~1~^~A~^^^1^0.60^1.40^1^^^^~03/01/2006~ -~11056~^~210~^0.18^6^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~03/01/2016~ -~11056~^~211~^0.63^6^0.03^~1~^~A~^^^1^0.50^0.72^2^0.48^0.77^~2, 3~^~03/01/2016~ -~11056~^~212~^0.62^6^0.03^~1~^~A~^^^1^0.48^0.72^2^0.46^0.78^~2, 3~^~03/01/2016~ -~11056~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11056~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11056~^~255~^93.52^16^0.07^~1~^~A~^^^2^92.29^94.21^8^93.34^93.69^~2, 3~^~03/01/2016~ -~11056~^~269~^1.44^6^0.07^~1~^~A~^^^1^1.16^1.61^2^1.13^1.74^~2, 3~^~03/01/2016~ -~11056~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11056~^~303~^0.89^16^0.13^~1~^~A~^^^2^0.35^2.02^3^0.47^1.31^~2, 3~^~03/01/2016~ -~11056~^~309~^0.19^16^7.0e-03^~1~^~A~^^^2^0.14^0.27^10^0.17^0.20^~2, 3~^~03/01/2016~ -~11056~^~323~^0.03^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2007~ -~11056~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11058~^~203~^0.83^22^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~204~^0.20^22^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~205~^3.49^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11058~^~207~^1.18^22^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~255~^94.30^22^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~303~^0.47^22^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~309~^0.14^22^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11060~^~203~^1.79^102^0.08^~6~^~JA~^^^2^1.06^1.80^99^1.62^1.95^~2, 3~^~03/01/2008~ -~11060~^~204~^0.21^100^0.05^~6~^~JA~^^^2^0.20^0.44^96^0.10^0.32^~2, 3~^~03/01/2008~ -~11060~^~205~^7.54^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11060~^~207~^0.53^95^0.02^~6~^~JA~^^^2^0.53^0.59^91^0.48^0.58^~2, 3~^~03/01/2008~ -~11060~^~209~^1.53^3^0.23^~1~^~A~^^^1^1.30^2.00^2^0.52^2.53^~2, 3~^~03/01/2008~ -~11060~^~210~^0.25^3^0.01^~1~^~A~^^^1^0.23^0.26^2^0.20^0.29^~2, 3~^~03/01/2008~ -~11060~^~211~^0.92^3^0.09^~1~^~A~^^^1^0.74^1.06^2^0.51^1.33^~2, 3~^~03/01/2008~ -~11060~^~212~^1.04^3^0.07^~1~^~A~^^^1^0.89^1.14^2^0.71^1.36^~2, 3~^~03/01/2008~ -~11060~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11060~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11060~^~255~^89.93^98^0.24^~6~^~JA~^^^2^89.88^91.92^94^89.43^90.41^~2, 3~^~03/01/2008~ -~11060~^~269~^2.21^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~11060~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~11060~^~303~^0.85^101^0.04^~6~^~JA~^^^2^0.62^0.86^97^0.77^0.93^~2, 3~^~03/01/2008~ -~11060~^~309~^0.26^23^0.02^~6~^~JA~^^^2^0.24^0.26^19^0.21^0.30^~2, 3~^~03/01/2008~ -~11060~^~323~^0.42^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~ -~11060~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11061~^~203~^1.49^10^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~204~^0.17^10^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~205~^6.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11061~^~207~^0.47^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~255~^91.42^10^0.44^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~269~^1.88^0^^~4~^~BFSN~^~11060~^^^^^^^^^~08/01/2015~ -~11061~^~303~^0.66^40^0.03^~1~^^^^1^0.37^0.91^20^0.58^0.72^~4~^~03/01/2006~ -~11061~^~309~^0.24^40^0.01^~1~^^^^1^0.13^0.36^20^0.21^0.27^~4~^~03/01/2006~ -~11061~^~323~^0.04^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~342~^0.08^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~343~^0.01^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11062~^~203~^1.98^3^0.20^~1~^~A~^^^1^1.56^2.19^2^1.08^2.87^~2, 3~^~03/01/2008~ -~11062~^~204~^0.41^3^0.03^~1~^~A~^^^1^0.37^0.49^2^0.24^0.57^~2, 3~^~03/01/2008~ -~11062~^~205~^6.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11062~^~207~^0.70^3^0.05^~1~^~A~^^^1^0.59^0.77^2^0.46^0.93^~2, 3~^~03/01/2008~ -~11062~^~209~^2.13^3^0.28^~1~^~A~^^^1^1.80^2.70^2^0.90^3.35^~2, 3~^~03/01/2008~ -~11062~^~210~^0.41^3^0.06^~1~^~A~^^^1^0.34^0.54^2^0.12^0.69^~2, 3~^~03/01/2008~ -~11062~^~211~^0.83^3^0.03^~1~^~A~^^^1^0.79^0.89^2^0.70^0.96^~2, 3~^~03/01/2008~ -~11062~^~212~^1.36^3^0.06^~1~^~A~^^^1^1.29^1.48^2^1.09^1.62^~2, 3~^~03/01/2008~ -~11062~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11062~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11062~^~255~^89.93^3^0.81^~1~^~A~^^^1^88.66^91.46^2^86.41^93.45^~2, 3~^~03/01/2008~ -~11062~^~269~^2.60^3^0.08^~1~^~A~^^^1^2.45^2.73^2^2.24^2.94^~2, 3~^~03/01/2008~ -~11062~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11062~^~303~^0.80^3^0.03^~1~^~A~^^^1^0.74^0.86^2^0.64^0.95^~2, 3~^~03/01/2008~ -~11062~^~309~^0.31^3^0.01^~1~^~A~^^^1^0.28^0.33^2^0.24^0.36^~2, 3~^~03/01/2008~ -~11062~^~323~^0.42^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11063~^~203~^2.31^4^0.09^~1~^~A~^^^1^2.13^2.56^3^2.02^2.60^~2, 3~^~04/01/2009~ -~11063~^~204~^0.50^4^0.02^~1~^~A~^^^1^0.47^0.56^3^0.43^0.57^~2, 3~^~04/01/2009~ -~11063~^~205~^6.41^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11063~^~207~^0.74^4^0.06^~1~^~A~^^^1^0.56^0.83^3^0.53^0.93^~2, 3~^~04/01/2009~ -~11063~^~209~^0.88^4^0.14^~1~^~A~^^^1^0.74^1.30^3^0.43^1.32^~1, 2, 3~^~04/01/2009~ -~11063~^~210~^0.33^4^0.25^~1~^~A~^^^1^0.07^1.09^3^-0.48^1.13^~1, 2, 3~^~04/01/2009~ -~11063~^~211~^1.44^4^0.08^~1~^~A~^^^1^1.18^1.54^3^1.16^1.70^~2, 3~^~04/01/2009~ -~11063~^~212~^1.45^4^0.12^~1~^~A~^^^1^1.10^1.67^3^1.06^1.84^~2, 3~^~04/01/2009~ -~11063~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11063~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11063~^~255~^90.04^4^0.42^~1~^~A~^^^1^88.79^90.74^3^88.67^91.40^~2, 3~^~04/01/2009~ -~11063~^~269~^3.22^4^0.23^~1~^~A~^^^1^2.71^3.82^3^2.48^3.94^~2, 3~^~04/01/2009~ -~11063~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11063~^~303~^0.83^4^0.03^~1~^~A~^^^1^0.78^0.92^3^0.73^0.93^~2, 3~^~04/01/2009~ -~11063~^~309~^0.38^4^0.01^~1~^~A~^^^1^0.34^0.42^3^0.32^0.43^~2, 3~^~04/01/2009~ -~11080~^~203~^1.61^9^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~204~^0.17^9^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~205~^9.56^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~207~^1.08^8^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~255~^87.58^21^0.72^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~269~^6.76^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~11080~^~303~^0.80^8^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~309~^0.35^14^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~323~^0.04^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11080~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11081~^~203~^1.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~205~^9.96^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11081~^~207~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~255~^87.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~269~^7.96^0^^~4~^~O~^^^^^^^^^^~09/01/2002~ -~11081~^~303~^0.79^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~309~^0.35^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~323~^0.04^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11081~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11082~^~203~^0.73^20^0.03^~1~^^^^3^0.53^1.04^19^0.66^0.79^~4~^~01/01/2007~ -~11082~^~204~^0.09^20^0.01^~1~^^^^3^0.05^0.25^19^0.06^0.10^~4~^~09/01/2002~ -~11082~^~205~^7.14^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~207~^0.74^20^0.05^~1~^^^^3^0.41^1.12^19^0.63^0.84^~4~^~09/01/2002~ -~11082~^~210~^5.25^6^0.23^~1~^^^^2^4.63^6.06^5^4.63^5.85^~4~^~09/01/2002~ -~11082~^~211~^0.28^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11082~^~212~^0.20^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11082~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11082~^~255~^91.30^25^0.21^~1~^^^^4^89.20^93.72^24^90.85^91.74^~4~^~09/01/2002~ -~11082~^~269~^6.53^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11082~^~287~^0.80^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11082~^~303~^0.73^68^0.04^~1~^^^^8^0.33^1.93^67^0.65^0.81^~4~^~09/01/2002~ -~11082~^~309~^0.34^48^0.01^~1~^^^^5^0.12^0.55^47^0.31^0.37^~4~^~09/01/2002~ -~11082~^~323~^0.03^0^^~4~^~T~^^^^^^^^^^~09/01/2002~ -~11082~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11084~^~203~^0.91^5^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~204~^0.14^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~205~^7.21^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~207~^0.78^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~255~^90.96^5^0.73^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~269~^5.51^0^^~4~^~O~^~11082~^^^^^^^^^~07/01/2007~ -~11084~^~303~^1.82^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~309~^0.21^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~323~^0.03^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11084~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11086~^~203~^2.20^2^^~1~^^^^1^1.82^2.57^1^^^^~02/01/2007~ -~11086~^~204~^0.13^2^^~1~^^^^1^0.06^0.20^1^^^^~12/01/2002~ -~11086~^~205~^4.33^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~207~^2.33^2^^~1~^^^^1^2.01^2.64^1^^^^~12/01/2002~ -~11086~^~255~^91.02^7^0.84^~1~^^^^1^89.13^92.65^3^88.34^93.69^~4~^~12/01/2002~ -~11086~^~269~^0.50^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11086~^~303~^2.57^2^^~1~^^^^1^0.71^4.43^1^^^^~12/01/2002~ -~11086~^~309~^0.38^1^^~1~^^^^^0.38^0.38^^^^^~11/01/2002~ -~11086~^~323~^1.50^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11086~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11087~^~203~^2.57^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~205~^5.46^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~207~^2.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~255~^89.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~269~^0.60^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~303~^1.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~309~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~323~^1.81^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~ -~11087~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11088~^~203~^5.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~204~^0.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~205~^11.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11088~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~255~^81.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~303~^1.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~309~^0.58^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11089~^~203~^4.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11089~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~255~^83.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~303~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~309~^0.47^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11090~^~203~^2.82^23^0.43^~11~^~JO~^^^3^1.99^3.15^1^-2.73^8.37^~4~^~04/01/2003~ -~11090~^~204~^0.37^29^4.0e-03^~11~^~JO~^^^5^0.33^0.41^3^0.35^0.38^~4~^~04/01/2003~ -~11090~^~205~^6.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11090~^~207~^0.87^23^0.03^~6~^~JA~^^^3^0.80^0.91^1^0.44^1.29^~4~^~04/01/2003~ -~11090~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11090~^~210~^0.10^16^0.05^~6~^~JA~^^^6^0.00^0.45^3^-0.05^0.25^~1, 4~^~04/01/2003~ -~11090~^~211~^0.49^18^0.07^~6~^~JA~^^^6^0.00^0.64^3^0.26^0.71^~4~^~04/01/2003~ -~11090~^~212~^0.68^17^0.05^~6~^~JA~^^^6^0.28^0.82^3^0.49^0.86^~4~^~04/01/2003~ -~11090~^~213~^0.21^9^0.00^~6~^~JA~^^^3^0.00^0.42^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~214~^0.21^9^0.00^~6~^~JA~^^^3^0.00^0.42^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~255~^89.30^49^1.03^~11~^~JO~^^^10^73.73^91.80^7^86.86^91.73^~4~^~04/01/2003~ -~11090~^~269~^1.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11090~^~287~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.01^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~303~^0.73^33^0.09^~6~^~JA~^^^3^0.56^0.82^1^-0.48^1.93^~4~^~04/01/2003~ -~11090~^~309~^0.41^33^0.01^~6~^~JA~^^^3^0.39^0.43^1^0.26^0.55^~4~^~04/01/2003~ -~11090~^~323~^0.78^12^0.09^~11~^~JO~^^^4^0.13^1.59^1^-0.34^1.89^~4~^~04/01/2003~ -~11090~^~341~^0.01^12^5.0e-03^~11~^~JO~^^^4^0.00^0.02^1^-0.05^0.06^~1, 4~^~04/01/2003~ -~11090~^~342~^0.17^12^0.04^~11~^~JO~^^^4^0.03^0.39^1^-0.35^0.69^~4~^~04/01/2003~ -~11090~^~343~^0.00^12^0.00^~11~^~JO~^^^4^0.00^0.00^^^^~1, 4~^~04/01/2003~ -~11090~^~344~^0.04^7^1.0e-03^~11~^~JO~^^^3^0.00^0.07^1^0.02^0.05^~1, 2, 3~^~04/01/2003~ -~11090~^~345~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~346~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~347~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11090~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11091~^~203~^2.38^4^0.41^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~204~^0.41^4^0.03^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~205~^7.18^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~207~^0.77^4^0.03^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~11091~^~210~^0.08^5^0.05^~6~^~JA~^^^3^0.00^0.30^4^-0.07^0.24^~1, 4~^~10/01/2002~ -~11091~^~211~^0.49^5^0.13^~6~^~JA~^^^3^0.15^0.83^4^0.11^0.87^~4~^~10/01/2002~ -~11091~^~212~^0.74^5^0.04^~6~^~JA~^^^3^0.63^0.89^4^0.61^0.87^~4~^~10/01/2002~ -~11091~^~213~^0.00^5^0.00^~6~^~JA~^^^3^0.00^0.00^4^0.00^0.00^~1, 4~^~10/01/2002~ -~11091~^~214~^0.00^5^0.00^~6~^~JA~^^^3^0.00^0.00^4^0.00^0.00^~1, 4~^~10/01/2002~ -~11091~^~255~^89.25^7^0.80^~6~^~JA~^^^4^87.03^91.80^6^87.28^91.21^~4~^~10/01/2002~ -~11091~^~269~^1.39^3^0.27^~6~^~JA~^^^2^1.03^1.92^2^0.23^2.55^~4~^~10/01/2002~ -~11091~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11091~^~303~^0.67^4^0.03^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~309~^0.45^4^0.02^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~323~^1.45^3^0.10^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~341~^0.01^3^5.0e-03^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~342~^0.25^3^0.02^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~343~^0.00^3^0.00^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~11091~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~11091~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~11091~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~ -~11091~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11092~^~203~^2.81^49^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~204~^0.29^49^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~205~^4.78^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11092~^~207~^0.66^48^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~211~^0.75^4^0.08^~1~^^^^1^0.50^0.90^3^0.47^1.02^~4~^~10/01/2002~ -~11092~^~212~^0.83^4^0.07^~1~^^^^1^0.60^0.90^3^0.58^1.06^~4~^~10/01/2002~ -~11092~^~255~^91.46^48^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~269~^1.35^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~ -~11092~^~303~^0.81^48^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~309~^0.48^15^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~323~^1.22^4^0.06^~1~^^^^1^1.08^1.33^3^1.01^1.42^~4~^~01/01/2007~ -~11092~^~341~^0.00^4^0.00^~1~^^^^1^0.00^0.00^3^0.00^0.00^~4~^~01/01/2007~ -~11092~^~342~^0.27^4^0.08^~1~^^^^1^0.10^0.50^3^-7.0e-03^0.53^~4~^~01/01/2007~ -~11092~^~343~^0.00^4^0.00^~1~^^^^1^0.00^0.00^3^0.00^0.00^~4~^~01/01/2007~ -~11092~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11092~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11092~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11093~^~203~^3.10^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~204~^0.12^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11093~^~207~^0.71^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~255~^90.72^9^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~269~^1.47^0^^~4~^~BFSN~^~11092~^^^^^^^^^~02/01/2007~ -~11093~^~303~^0.61^20^0.04^~1~^^^^1^0.40^1.04^19^0.53^0.69^~4~^~10/01/2002~ -~11093~^~309~^0.28^20^0.01^~1~^^^^1^0.17^0.47^19^0.25^0.31^~4~^~10/01/2002~ -~11093~^~323~^1.32^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11093~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11093~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11093~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11094~^~203~^3.06^49^0.24^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~204~^0.34^49^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11094~^~207~^0.70^47^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~255~^90.55^53^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~269~^1.47^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~303~^0.72^47^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~309~^0.34^15^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~323~^1.35^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11094~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11095~^~203~^3.10^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~204~^0.11^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~205~^5.36^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11095~^~207~^0.71^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~255~^90.72^9^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~269~^1.47^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~ -~11095~^~303~^0.61^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~309~^0.30^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~323~^1.32^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11095~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11096~^~203~^3.17^4^0.32^~1~^~A~^^^2^2.10^4.51^2^1.77^4.57^~2, 3~^~12/01/2002~ -~11096~^~204~^0.49^4^0.04^~1~^~A~^^^2^0.33^0.59^2^0.28^0.70^~2, 3~^~12/01/2002~ -~11096~^~205~^2.85^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11096~^~207~^0.93^4^0.12^~1~^~A~^^^2^0.69^1.19^2^0.40^1.46^~2, 3~^~12/01/2002~ -~11096~^~210~^0.11^4^0.03^~1~^~A~^^^2^0.00^0.15^2^-0.04^0.26^~1, 2, 3~^~12/01/2002~ -~11096~^~211~^0.10^4^0.06^~1~^~A~^^^2^0.00^0.25^2^-0.16^0.36^~1, 2, 3~^~12/01/2002~ -~11096~^~212~^0.17^4^0.06^~1~^~A~^^^2^0.00^0.25^2^-0.08^0.43^~2, 3~^~12/01/2002~ -~11096~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11096~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11096~^~255~^92.55^4^0.67^~1~^~A~^^^2^91.13^94.07^2^89.65^95.44^~2, 3~^~12/01/2002~ -~11096~^~269~^0.38^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11096~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11096~^~303~^2.14^4^0.36^~1~^~A~^^^2^1.60^3.20^2^0.58^3.69^~2, 3~^~12/01/2002~ -~11096~^~309~^0.77^4^0.21^~1~^~A~^^^2^0.46^1.40^2^-0.14^1.67^~2, 3~^~12/01/2002~ -~11096~^~323~^1.62^4^0.51^~1~^~A~^^^2^0.41^2.64^2^-0.59^3.84^~2, 3~^~12/01/2002~ -~11096~^~341~^0.01^4^0.00^~1~^~A~^^^2^0.01^0.01^^^^~1, 2, 3~^~12/01/2002~ -~11096~^~342~^0.16^4^0.03^~1~^~A~^^^2^0.09^0.24^2^0.02^0.30^~2, 3~^~12/01/2002~ -~11096~^~343~^0.00^4^4.0e-03^~1~^~A~^^^2^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~12/01/2002~ -~11096~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11096~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11096~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11096~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11096~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~203~^3.83^2^^~1~^~A~^^^1^3.41^4.25^1^^^^~12/01/2002~ -~11097~^~204~^0.52^2^^~1~^~A~^^^1^0.42^0.63^1^^^^~12/01/2002~ -~11097~^~205~^3.12^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11097~^~207~^1.11^2^^~1~^~A~^^^1^1.09^1.13^1^^^^~12/01/2002~ -~11097~^~210~^0.15^2^^~1~^~A~^^^1^0.15^0.15^1^^^~1~^~12/01/2002~ -~11097~^~211~^0.23^2^^~1~^~A~^^^1^0.15^0.31^1^^^~1~^~12/01/2002~ -~11097~^~212~^0.24^2^^~1~^~A~^^^1^0.21^0.28^1^^^^~12/01/2002~ -~11097~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~12/01/2002~ -~11097~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~12/01/2002~ -~11097~^~255~^91.41^2^^~1~^~A~^^^1^91.20^91.63^1^^^^~12/01/2002~ -~11097~^~269~^0.62^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11097~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2003~ -~11097~^~303~^1.27^2^^~1~^~A~^^^1^1.21^1.32^1^^^^~12/01/2002~ -~11097~^~309~^0.54^2^^~1~^~A~^^^1^0.52^0.56^1^^^^~12/01/2002~ -~11097~^~323~^2.53^2^^~1~^~A~^^^1^1.88^3.18^1^^^^~12/01/2002~ -~11097~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^1^^^~1~^~12/01/2002~ -~11097~^~342~^0.32^2^^~1~^~A~^^^1^0.27^0.36^1^^^^~12/01/2002~ -~11097~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~12/01/2002~ -~11097~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11098~^~203~^3.38^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~205~^8.95^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11098~^~207~^1.37^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~210~^0.46^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11098~^~211~^0.81^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11098~^~212~^0.93^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11098~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11098~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11098~^~255~^86.00^8^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~269~^2.20^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11098~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11098~^~303~^1.40^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~309~^0.42^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~323~^0.88^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~11098~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11099~^~203~^2.55^5^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~204~^0.50^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~207~^0.95^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~255~^88.90^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~269~^1.74^0^^~4~^~BFSN~^~11098~^^^^^^^^^~11/01/2002~ -~11099~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~309~^0.33^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~323~^0.43^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~341~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~342~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~343~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~344~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~345~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~346~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~347~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11100~^~203~^3.78^37^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~204~^0.41^36^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~205~^7.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11100~^~207~^0.88^35^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~255~^87.07^41^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~269~^2.03^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11100~^~303~^0.93^35^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~309~^0.31^13^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~323~^0.50^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~ -~11100~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11101~^~203~^3.64^7^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~204~^0.39^7^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~205~^8.32^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11101~^~207~^0.91^7^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~255~^86.74^10^0.41^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~269~^2.08^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~303~^0.48^18^0.01^~1~^~A~^^^7^0.33^0.66^17^0.44^0.52^~4~^~11/01/2002~ -~11101~^~309~^0.24^18^0.01^~1~^~A~^^^7^0.17^0.37^17^0.21^0.26^~4~^~11/01/2002~ -~11101~^~323~^0.51^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~ -~11101~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11101~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11101~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11104~^~203~^1.53^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~204~^0.15^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~205~^17.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11104~^~207~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~255~^80.09^3^6.02^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~269~^2.90^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11104~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~323~^0.38^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11104~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11105~^~203~^2.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~204~^0.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11105~^~207~^0.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~255~^75.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~269~^3.55^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11105~^~303~^0.77^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~323~^0.46^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11105~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11106~^~203~^0.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~204~^0.04^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~205~^3.61^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11106~^~207~^1.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~255~^94.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~303~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~309~^0.16^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11107~^~203~^0.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~204~^0.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~205~^2.16^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11107~^~207~^0.88^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~255~^96.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~303~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~309~^0.09^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11108~^~203~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~205~^0.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11108~^~207~^1.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~255~^97.92^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~303~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~309~^0.06^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11109~^~203~^1.28^4^0.09^~1~^~A~^^^1^1.10^1.46^3^0.97^1.59^~2, 3~^~03/01/2006~ -~11109~^~204~^0.10^13^0.01^~11~^~JO~^^^4^0.00^0.30^8^0.06^0.13^~1, 2, 3~^~03/01/2006~ -~11109~^~205~^5.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~207~^0.64^4^0.03^~1~^~A~^^^1^0.60^0.76^3^0.51^0.76^~2, 3~^~03/01/2006~ -~11109~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~210~^0.08^11^5.0e-03^~6~^~JA~^^^4^0.00^0.26^2^0.05^0.09^~1, 2, 3~^~03/01/2006~ -~11109~^~211~^1.67^11^0.04^~6~^~JA~^^^4^1.30^2.35^3^1.53^1.80^~2, 3~^~03/01/2006~ -~11109~^~212~^1.45^11^0.02^~6~^~JA~^^^4^0.96^2.17^4^1.36^1.52^~2, 3~^~03/01/2006~ -~11109~^~213~^0.00^6^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11109~^~214~^0.01^9^9.0e-03^~6~^~JA~^^^3^0.00^0.08^2^-0.02^0.04^~1, 2, 3~^~03/01/2006~ -~11109~^~255~^92.18^20^0.12^~11~^~JO~^^^7^90.84^94.18^9^91.88^92.47^~2, 3~^~03/01/2006~ -~11109~^~269~^3.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11109~^~303~^0.47^31^0.03^~6~^~JA~^^^5^0.21^1.46^4^0.37^0.56^~2, 3~^~03/01/2006~ -~11109~^~309~^0.18^31^9.0e-03^~6~^~JA~^^^5^0.09^0.41^6^0.15^0.20^~2, 3~^~03/01/2006~ -~11109~^~323~^0.15^9^0.01^~1~^~A~^^^3^0.09^0.27^5^0.10^0.19^~2, 3~^~03/01/2006~ -~11109~^~341~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11109~^~342~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11109~^~343~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11109~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11110~^~203~^1.27^4^0.06^~1~^~A~^^^1^1.16^1.44^3^1.05^1.49^~2, 3~^~03/01/2006~ -~11110~^~204~^0.06^4^0.02^~1~^~A~^^^1^0.02^0.11^3^-0.02^0.14^~1, 2, 3~^~03/01/2006~ -~11110~^~205~^5.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~207~^0.59^4^0.02^~1~^~A~^^^1^0.56^0.65^3^0.52^0.65^~2, 3~^~03/01/2006~ -~11110~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~211~^1.62^4^0.08^~1~^~A~^^^1^1.46^1.84^3^1.35^1.89^~2, 3~^~03/01/2006~ -~11110~^~212~^1.16^4^0.04^~1~^~A~^^^1^1.07^1.25^3^1.03^1.29^~2, 3~^~03/01/2006~ -~11110~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~255~^92.57^6^0.48^~6~^~JA~^^^2^91.40^94.30^1^86.76^98.38^~2, 3~^~03/01/2006~ -~11110~^~269~^2.79^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~287~^0.00^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11110~^~303~^0.17^29^0.01^~1~^^^^^^^^^^^~03/01/2006~ -~11110~^~309~^0.20^4^0.02^~1~^~A~^^^1^0.14^0.26^3^0.11^0.28^~2, 3~^~03/01/2006~ -~11110~^~323~^0.14^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11110~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11112~^~203~^1.43^4^0.09^~1~^~A~^^^1^1.29^1.70^3^1.14^1.72^~2, 3~^~12/01/2002~ -~11112~^~204~^0.16^4^0.06^~1~^~A~^^^1^0.02^0.32^3^-0.04^0.37^~1, 2, 3~^~12/01/2002~ -~11112~^~205~^7.37^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~207~^0.64^4^0.01^~1~^~A~^^^1^0.63^0.67^3^0.61^0.67^~2, 3~^~12/01/2002~ -~11112~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2002~ -~11112~^~210~^0.60^5^0.08^~6~^~JA~^^^2^0.32^0.82^3^0.33^0.86^~2, 3~^~03/01/2006~ -~11112~^~211~^1.74^5^0.08^~6~^~JA~^^^2^1.26^2.49^3^1.46^2.02^~2, 3~^~03/01/2006~ -~11112~^~212~^1.48^5^0.06^~6~^~JA~^^^2^1.12^2.29^3^1.27^1.69^~2, 3~^~03/01/2006~ -~11112~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2002~ -~11112~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2002~ -~11112~^~255~^90.39^5^0.32^~6~^~JA~^^^2^87.80^91.91^3^89.35^91.42^~2, 3~^~12/01/2002~ -~11112~^~269~^3.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11112~^~303~^0.80^4^0.26^~1~^~A~^^^1^0.47^1.60^3^-0.06^1.65^~2, 3~^~12/01/2002~ -~11112~^~309~^0.22^4^0.01^~1~^~A~^^^1^0.18^0.26^3^0.16^0.27^~2, 3~^~12/01/2002~ -~11112~^~323~^0.11^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11112~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11113~^~203~^1.51^3^0.09^~1~^~A~^^^1^1.32^1.62^2^1.10^1.92^~2, 3~^~12/01/2002~ -~11113~^~204~^0.09^4^0.04^~1~^~A~^^^1^0.02^0.16^3^-0.04^0.22^~1, 2, 3~^~12/01/2002~ -~11113~^~205~^6.94^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11113~^~207~^0.62^3^0.03^~1~^~A~^^^1^0.59^0.68^2^0.49^0.74^~2, 3~^~12/01/2002~ -~11113~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2002~ -~11113~^~210~^0.71^4^0.07^~1~^~A~^^^1^0.56^0.85^3^0.46^0.95^~2, 3~^~12/01/2002~ -~11113~^~211~^1.42^4^0.03^~1~^~A~^^^1^1.35^1.48^3^1.32^1.51^~2, 3~^~12/01/2002~ -~11113~^~212~^1.20^4^0.06^~1~^~A~^^^1^1.09^1.35^3^1.00^1.39^~2, 3~^~12/01/2002~ -~11113~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11113~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11113~^~255~^90.84^4^0.22^~1~^~A~^^^1^90.58^91.50^3^90.14^91.54^~2, 3~^~12/01/2002~ -~11113~^~269~^3.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11113~^~287~^0.00^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11113~^~303~^0.66^3^0.09^~1~^~A~^^^1^0.55^0.84^2^0.26^1.05^~2, 3~^~12/01/2002~ -~11113~^~309~^0.25^3^0.03^~1~^~A~^^^1^0.21^0.31^2^0.11^0.38^~2, 3~^~12/01/2002~ -~11113~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11113~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11113~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11113~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11114~^~203~^2.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~205~^6.10^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11114~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~255~^91.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~269~^2.27^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~323~^0.17^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11114~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11115~^~203~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~205~^5.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11115~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~255~^92.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11115~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11116~^~203~^1.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~205~^2.18^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~255~^95.32^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~269~^1.18^0^^~4~^~O~^~11109~^^^^^^^^^~12/01/2006~ -~11116~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~309~^0.19^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~323~^0.09^0^^~4~^~BFSN~^~11109~^^^^^^^^^~12/01/2006~ -~11116~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11117~^~203~^1.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~204~^0.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~205~^1.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11117~^~207~^0.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~255~^95.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~269~^0.83^0^^~4~^~O~^~11116~^^^^^^^^^~02/01/2007~ -~11117~^~303~^1.04^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~323~^0.09^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11117~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11118~^~203~^1.10^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~204~^0.50^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~205~^2.40^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~207~^1.70^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~255~^94.30^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~269~^1.06^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~303~^2.50^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~309~^0.22^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~323~^0.11^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~418~^0.00^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11119~^~203~^1.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~205~^3.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11119~^~207~^0.98^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~255~^94.39^20^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~269~^1.41^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11119~^~303~^0.31^3^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~309~^0.23^12^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11119~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11120~^~203~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~205~^2.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11120~^~207~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~255~^95.24^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11120~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11122~^~203~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~205~^4.07^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11122~^~207~^1.13^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~255~^94.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11122~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11123~^~203~^0.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~205~^5.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11123~^~207~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~255~^93.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~303~^0.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~309~^0.18^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11123~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11124~^~203~^0.93^19^8.0e-03^~11~^~JO~^^^2^0.68^1.19^1^0.82^1.02^~2~^~03/01/2003~ -~11124~^~204~^0.24^26^0.01^~11~^~JO~^^^4^0.10^0.40^3^0.18^0.29^~2~^~03/01/2003~ -~11124~^~205~^9.58^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~207~^0.97^19^0.01^~6~^~JA~^^^2^0.74^1.50^1^0.79^1.14^~2~^~03/01/2003~ -~11124~^~209~^1.43^2^^~1~^~A~^^^1^0.17^2.70^^^^~1~^~03/01/2003~ -~11124~^~210~^3.59^11^0.28^~6~^~JA~^^^4^2.70^4.19^3^2.70^4.48^~2~^~03/01/2003~ -~11124~^~211~^0.59^11^0.14^~6~^~JA~^^^4^0.28^1.20^3^0.14^1.04^~2~^~03/01/2003~ -~11124~^~212~^0.55^11^0.09^~6~^~JA~^^^4^0.34^1.00^3^0.24^0.86^~2~^~03/01/2003~ -~11124~^~213~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~255~^88.29^33^0.42^~11~^~JO~^^^7^85.70^91.23^6^87.23^89.33^~2~^~03/01/2003~ -~11124~^~269~^4.74^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11124~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11124~^~303~^0.30^75^0.01^~6~^~JA~^^^7^0.12^1.15^6^0.26^0.33^~2~^~03/01/2003~ -~11124~^~309~^0.24^76^0.01^~6~^~JA~^^^7^0.14^0.37^6^0.21^0.26^~2~^~03/01/2003~ -~11124~^~323~^0.66^11^0.26^~11~^~JO~^^^3^0.25^1.46^2^-0.49^1.82^~2~^~03/01/2003~ -~11124~^~341~^0.01^11^5.0e-03^~11~^~JO~^^^3^0.00^0.02^2^-0.01^0.03^~1, 2~^~03/01/2003~ -~11124~^~342~^0.00^11^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~343~^0.00^11^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~344~^0.01^5^0.01^~11~^~JO~^^^2^0.00^0.06^1^-0.17^0.20^~1, 2~^~03/01/2003~ -~11124~^~345~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~346~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~347~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2003~ -~11124~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11125~^~203~^0.76^4^0.04^~1~^~A~^^^1^0.62^0.83^3^0.60^0.91^~2, 3~^~04/01/2003~ -~11125~^~204~^0.18^4^0.07^~1~^~A~^^^1^0.02^0.34^3^-0.05^0.40^~1, 2, 3~^~04/01/2003~ -~11125~^~205~^8.22^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~207~^0.67^4^0.04^~1~^~A~^^^1^0.58^0.78^3^0.54^0.80^~2, 3~^~04/01/2003~ -~11125~^~209~^0.17^2^^~1~^~A~^^^1^0.17^0.17^^^^~1~^~04/01/2003~ -~11125~^~210~^2.70^4^0.17^~1~^~A~^^^1^2.47^3.23^3^2.12^3.26^~2, 3~^~04/01/2003~ -~11125~^~211~^0.40^4^0.05^~1~^~A~^^^1^0.27^0.55^3^0.20^0.58^~2, 3~^~04/01/2003~ -~11125~^~212~^0.36^4^0.05^~1~^~A~^^^1^0.24^0.49^3^0.19^0.52^~2, 3~^~04/01/2003~ -~11125~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~255~^90.17^4^0.19^~1~^~A~^^^1^89.59^90.43^3^89.54^90.78^~2, 3~^~04/01/2003~ -~11125~^~269~^3.45^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11125~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11125~^~303~^0.34^4^0.03^~1~^~A~^^^1^0.25^0.41^3^0.22^0.45^~2, 3~^~04/01/2003~ -~11125~^~309~^0.20^4^8.0e-03^~1~^~A~^^^1^0.19^0.23^3^0.17^0.23^~2, 3~^~04/01/2003~ -~11125~^~323~^1.03^4^0.08^~1~^~A~^^^1^0.79^1.19^3^0.75^1.29^~2, 3~^~04/01/2003~ -~11125~^~341~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~04/01/2003~ -~11125~^~342~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~04/01/2003~ -~11125~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~344~^0.05^4^0.03^~1~^~A~^^^1^0.00^0.12^3^-0.04^0.15^~1, 2, 3~^~04/01/2003~ -~11125~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11126~^~203~^0.58^155^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~204~^0.14^152^7.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~205~^5.37^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11126~^~207~^0.92^124^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~255~^92.99^133^0.71^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~269~^2.46^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11126~^~303~^0.52^147^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11126~^~309~^0.29^73^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~323~^0.73^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11126~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11128~^~203~^0.64^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~204~^0.19^11^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11128~^~207~^0.68^11^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~255~^92.95^11^0.29^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~269~^2.48^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11128~^~303~^0.64^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~309~^0.26^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~323~^0.74^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11128~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11130~^~203~^0.78^5^0.11^~1~^~A~^^^1^0.56^1.14^4^0.45^1.10^~2, 3~^~01/01/2003~ -~11130~^~204~^0.46^5^0.07^~1~^~A~^^^1^0.25^0.63^4^0.24^0.66^~2, 3~^~01/01/2003~ -~11130~^~205~^7.90^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~207~^0.83^5^0.08^~1~^~A~^^^1^0.68^1.15^4^0.58^1.07^~2, 3~^~01/01/2003~ -~11130~^~209~^0.26^5^0.01^~1~^~A~^^^1^0.20^0.31^4^0.21^0.30^~2, 3~^~01/01/2003~ -~11130~^~210~^4.05^5^0.12^~1~^~A~^^^1^3.56^4.25^4^3.69^4.40^~2, 3~^~01/01/2003~ -~11130~^~211~^0.40^5^0.02^~1~^~A~^^^1^0.35^0.48^4^0.33^0.47^~2, 3~^~01/01/2003~ -~11130~^~212~^0.31^5^0.01^~1~^~A~^^^1^0.26^0.37^4^0.26^0.36^~2, 3~^~01/01/2003~ -~11130~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11130~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11130~^~255~^90.04^5^0.26^~1~^~A~^^^1^89.00^90.45^4^89.29^90.77^~2, 3~^~01/01/2003~ -~11130~^~269~^4.76^5^0.10^~1~^~A~^^^1^4.37^5.01^4^4.46^5.06^~2, 3~^~08/01/2007~ -~11130~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11130~^~303~^0.44^5^0.02^~1~^~A~^^^1^0.41^0.53^4^0.37^0.51^~2, 3~^~01/01/2003~ -~11130~^~309~^0.33^5^0.01^~1~^~A~^^^1^0.29^0.36^4^0.30^0.36^~2, 3~^~01/01/2003~ -~11130~^~323~^0.57^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~ -~11130~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11131~^~203~^0.58^3^0.01^~1~^~A~^^^1^0.55^0.60^2^0.52^0.63^~2, 3~^~01/01/2003~ -~11131~^~204~^0.68^3^0.01^~1~^~A~^^^1^0.67^0.71^2^0.62^0.73^~2, 3~^~01/01/2003~ -~11131~^~205~^7.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~207~^0.69^3^0.03^~1~^~A~^^^1^0.65^0.75^2^0.54^0.82^~2, 3~^~01/01/2003~ -~11131~^~209~^0.31^3^0.01^~1~^~A~^^^1^0.29^0.34^2^0.24^0.37^~2, 3~^~01/01/2003~ -~11131~^~210~^3.44^3^0.04^~1~^~A~^^^1^3.37^3.53^2^3.24^3.64^~2, 3~^~01/01/2003~ -~11131~^~211~^0.36^3^0.03^~1~^~A~^^^1^0.30^0.43^2^0.18^0.52^~2, 3~^~01/01/2003~ -~11131~^~212~^0.28^3^0.02^~1~^~A~^^^1^0.24^0.30^2^0.19^0.36^~2, 3~^~01/01/2003~ -~11131~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11131~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11131~^~255~^90.32^3^0.21^~1~^~A~^^^1^89.91^90.63^2^89.40^91.24^~2, 3~^~01/01/2003~ -~11131~^~269~^4.08^3^0.09^~1~^~A~^^^1^3.98^4.26^2^3.69^4.46^~2, 3~^~01/01/2003~ -~11131~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11131~^~303~^0.53^3^0.06^~1~^~A~^^^1^0.39^0.62^2^0.23^0.82^~2, 3~^~01/01/2003~ -~11131~^~309~^0.35^3^9.0e-03^~1~^~A~^^^1^0.34^0.37^2^0.31^0.39^~2, 3~^~01/01/2003~ -~11131~^~323~^1.01^0^^~4~^~BFSN~^~11125~^^^^^^^^^~01/01/2003~ -~11131~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11134~^~203~^1.36^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~204~^0.28^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~205~^38.06^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11134~^~207~^0.62^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~255~^59.68^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~269~^1.70^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11134~^~303~^0.27^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~309~^0.34^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11134~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11135~^~203~^1.92^4^0.03^~1~^~A~^^^1^1.81^2.00^3^1.79^2.04^~4~^~11/01/2008~ -~11135~^~204~^0.28^21^0.02^~11~^~JO~^^^3^0.10^0.65^17^0.23^0.31^~2, 3~^~12/01/2008~ -~11135~^~205~^4.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11135~^~207~^0.76^19^0.05^~6~^~JA~^^^2^0.71^1.66^4^0.61^0.90^~2, 3~^~12/01/2008~ -~11135~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~12/01/2008~ -~11135~^~211~^0.94^4^0.05^~1~^~A~^^^1^0.80^1.03^3^0.78^1.10^~4~^~11/01/2008~ -~11135~^~212~^0.97^4^0.04^~1~^~A~^^^1^0.84^1.03^3^0.82^1.11^~4~^~11/01/2008~ -~11135~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~12/01/2008~ -~11135~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~12/01/2008~ -~11135~^~255~^92.07^36^0.24^~11~^~JO~^^^3^91.70^93.82^30^91.57^92.56^~2, 3~^~12/01/2008~ -~11135~^~269~^1.91^4^0.09^~1~^~A~^^^1^1.64^2.06^3^1.61^2.21^~4~^~11/01/2008~ -~11135~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~12/01/2008~ -~11135~^~303~^0.42^23^0.02^~6~^~JA~^^^2^0.28^0.44^19^0.37^0.47^~2, 3~^~12/01/2008~ -~11135~^~309~^0.27^19^9.0e-03^~6~^~JA~^^^2^0.21^0.28^17^0.25^0.29^~2, 3~^~12/01/2008~ -~11135~^~323~^0.08^0^^~4~^~BFSN~^~11136~^^^^^^^^^~12/01/2008~ -~11135~^~341~^0.00^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11135~^~342~^0.20^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11135~^~343~^0.00^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11135~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11136~^~203~^1.84^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~204~^0.45^4^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11136~^~207~^0.60^4^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~255~^93.00^7^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~269~^2.08^0^^~4~^~BFSN~^~11135~^^^^^^^^^~03/01/2006~ -~11136~^~303~^0.32^28^0.01^~1~^^^^4^0.18^0.46^23^0.28^0.34^~2, 3~^~03/01/2006~ -~11136~^~309~^0.17^28^6.0e-03^~1~^^^^4^0.11^0.23^19^0.15^0.18^~2, 3~^~03/01/2006~ -~11136~^~323~^0.07^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11136~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11137~^~203~^2.01^40^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~204~^0.27^40^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~205~^4.68^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11137~^~207~^0.53^38^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~255~^92.51^38^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~269~^2.22^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~303~^0.54^40^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~309~^0.17^7^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~323~^0.07^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11137~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11138~^~203~^1.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~205~^3.75^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~207~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~255~^94.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~269~^1.05^0^^~4~^~O~^~11137~^^^^^^^^^~01/01/2007~ -~11138~^~303~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~323~^0.06^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11138~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11138~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11141~^~203~^1.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~204~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11141~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~255~^88.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~269~^1.60^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11141~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~323~^0.36^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~11141~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11142~^~203~^0.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~204~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~205~^5.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11142~^~207~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~255~^92.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~303~^0.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11142~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11143~^~203~^0.69^8^0.04^~1~^~A~^^^2^0.39^0.94^6^0.57^0.80^~2, 3~^~09/01/2002~ -~11143~^~204~^0.17^15^0.04^~11~^~JO~^^^4^0.02^0.55^14^0.07^0.25^~1, 4~^~05/01/2003~ -~11143~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11143~^~207~^0.75^8^0.03^~1~^~A~^^^2^0.57^0.91^6^0.67^0.82^~2, 3~^~09/01/2002~ -~11143~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2003~ -~11143~^~210~^0.08^15^0.04^~6~^~JA~^^^5^0.00^0.49^14^0.01^0.20^~1, 4~^~06/01/2014~ -~11143~^~211~^0.40^15^0.08^~6~^~JA~^^^5^0.20^1.29^14^0.36^0.74^~4~^~06/01/2014~ -~11143~^~212~^0.37^15^0.03^~6~^~JA~^^^5^0.30^0.74^14^0.44^0.57^~4~^~06/01/2014~ -~11143~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~255~^95.43^18^0.12^~11~^~JO~^^^5^94.42^96.47^17^95.17^95.69^~4~^~09/01/2002~ -~11143~^~269~^1.34^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~11143~^~287~^0.48^4^0.07^~1~^~A~^^^1^0.54^0.87^3^0.43^0.89^~2, 3~^~06/01/2014~ -~11143~^~303~^0.20^56^0.01^~6~^~JA~^^^7^0.00^0.48^55^0.16^0.22^~4~^~09/01/2002~ -~11143~^~309~^0.13^55^0.01^~6~^~JA~^^^7^0.05^0.72^54^0.10^0.15^~4~^~08/01/2002~ -~11143~^~323~^0.27^13^0.07^~11~^~JO~^^^4^0.03^0.79^12^0.11^0.42^~4~^~08/01/2002~ -~11143~^~341~^0.00^13^0.00^~11~^~JO~^^^4^0.00^0.00^12^0.00^0.00^~1, 4~^~05/01/2003~ -~11143~^~342~^0.00^13^0.00^~11~^~JO~^^^4^0.00^0.00^12^0.00^0.00^~1, 4~^~05/01/2003~ -~11143~^~343~^0.00^13^0.00^~11~^~JO~^^^4^0.00^0.00^12^0.00^0.00^~1, 4~^~05/01/2003~ -~11143~^~344~^0.01^7^3.0e-03^~11~^~JO~^^^3^0.00^0.02^3^3.0e-03^0.02^~1, 2, 3~^~05/01/2003~ -~11143~^~345~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~346~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~347~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~05/01/2003~ -~11143~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11144~^~203~^0.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~204~^0.16^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~205~^4.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~210~^0.14^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~211~^0.71^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~212~^0.66^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~213~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~214~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~255~^94.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~269~^2.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11144~^~287~^0.85^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~303~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~309~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~323~^0.35^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~341~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~342~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~343~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11144~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11145~^~203~^0.85^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~205~^3.65^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11145~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~255~^94.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~303~^0.55^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11147~^~203~^1.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~205~^3.74^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~11147~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~255~^92.66^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~269~^1.10^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11147~^~303~^1.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~309~^0.36^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11147~^~323~^1.89^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11147~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11148~^~203~^1.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~205~^4.13^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11148~^~207~^1.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~255~^92.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~269~^1.10^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~303~^2.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~323~^1.89^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11148~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11149~^~203~^0.82^3^0.12^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~204~^0.13^3^0.06^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11149~^~207~^0.30^3^0.04^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~255~^94.24^3^0.53^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11149~^~269~^1.66^0^^~4~^~BFSN~^~11477~^^^^^^^^^~03/01/2007~ -~11149~^~303~^0.34^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~309~^0.74^3^0.43^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11149~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11150~^~203~^0.62^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~204~^0.48^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~205~^5.09^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11150~^~207~^0.38^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~255~^93.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~269~^1.89^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~303~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11150~^~323~^0.14^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11151~^~203~^0.90^4^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~205~^4.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11151~^~207~^0.47^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~255~^94.52^4^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~303~^0.24^4^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~309~^0.16^4^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11152~^~203~^1.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~204~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~205~^4.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11152~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~255~^92.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~269~^0.70^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11152~^~303~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~309~^0.42^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~323~^2.26^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11152~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11154~^~203~^1.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~205~^17.51^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11154~^~207~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~255~^80.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~269~^8.73^0^^~4~^~BFSN~^~11226~^^^^^^^^^~04/01/2009~ -~11154~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11156~^~203~^3.27^3^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~204~^0.73^3^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~205~^4.35^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11156~^~207~^1.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~255~^90.65^3^1.04^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~269~^1.85^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11156~^~303~^1.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~309~^0.56^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~323~^0.21^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11156~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11157~^~203~^3.36^2^^~1~^~A~^^^1^2.92^3.79^^^^^~07/01/2003~ -~11157~^~204~^0.56^2^^~1~^~A~^^^1^0.48^0.64^^^^^~07/01/2003~ -~11157~^~205~^3.02^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11157~^~207~^1.67^2^^~1~^~A~^^^1^1.65^1.68^^^^^~07/01/2003~ -~11157~^~255~^91.40^4^^~6~^~JA~^^^1^91.00^91.80^^^^~2~^~07/01/2003~ -~11157~^~303~^2.29^2^^~1~^~A~^^^1^1.58^3.01^^^^^~07/01/2003~ -~11157~^~309~^0.71^2^^~1~^~A~^^^1^0.55^0.88^^^^^~07/01/2003~ -~11157~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11158~^~203~^1.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~204~^0.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11158~^~207~^1.47^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~255~^92.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~269~^2.01^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11158~^~303~^3.74^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~323~^2.50^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11158~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11161~^~203~^3.02^7^0.25^~1~^~A~^^^2^2.45^4.49^5^2.36^3.68^~2, 3~^~08/01/2012~ -~11161~^~204~^0.61^7^0.06^~1~^~A~^^^2^0.42^0.87^3^0.42^0.80^~2, 3~^~08/01/2012~ -~11161~^~205~^5.42^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11161~^~207~^1.32^7^0.08^~1~^~A~^^^2^0.89^1.82^4^1.09^1.55^~2, 3~^~08/01/2012~ -~11161~^~255~^89.62^14^0.83^~6~^~JA~^^^2^84.42^91.10^11^87.77^91.46^~2, 3~^~08/01/2012~ -~11161~^~269~^0.46^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11161~^~303~^0.47^14^0.06^~6~^~JA~^^^2^0.19^1.68^3^0.27^0.66^~2, 3~^~08/01/2012~ -~11161~^~309~^0.21^15^0.06^~6~^~JA~^^^2^0.13^0.53^11^0.07^0.34^~2, 3~^~08/01/2012~ -~11161~^~323~^2.26^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11161~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11162~^~203~^2.71^4^0.20^~1~^~A~^^^1^2.34^3.30^3^2.05^3.36^~4~^~08/01/2012~ -~11162~^~204~^0.72^4^0.03^~1~^~A~^^^1^0.66^0.78^3^0.62^0.81^~4~^~08/01/2012~ -~11162~^~205~^5.65^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11162~^~207~^0.73^4^0.04^~1~^~A~^^^1^0.65^0.84^3^0.58^0.88^~4~^~08/01/2012~ -~11162~^~255~^90.18^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11162~^~269~^0.40^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11162~^~303~^1.13^30^0.06^~6~^~JA~^^^5^0.61^2.24^20^1.00^1.26^~2, 3~^~08/01/2012~ -~11162~^~309~^0.23^30^0.01^~6~^~JA~^^^5^0.12^0.38^21^0.20^0.26^~2, 3~^~08/01/2012~ -~11162~^~323~^0.88^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11162~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11162~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11162~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11163~^~203~^2.69^13^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~204~^0.37^13^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11163~^~207~^0.95^13^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~255~^89.53^16^0.99^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~303~^1.07^13^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~309~^0.26^3^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11164~^~203~^2.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~204~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11164~^~207~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~255~^88.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~269~^0.57^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~309~^0.27^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~323~^1.25^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11164~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11165~^~203~^2.13^3^0.22^~1~^^^^1^1.69^2.36^2^1.17^3.09^~2, 3~^~03/01/2007~ -~11165~^~204~^0.52^3^0.04^~1~^^^^1^0.43^0.59^2^0.31^0.71^~2, 3~^~08/01/2002~ -~11165~^~205~^3.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11165~^~207~^1.47^3^0.18^~1~^^^^1^1.10^1.66^2^0.67^2.27^~2, 3~^~08/01/2002~ -~11165~^~255~^92.21^7^0.27^~1~^^^^1^91.70^93.69^6^91.55^92.87^~2, 3~^~08/01/2002~ -~11165~^~269~^0.87^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~11165~^~303~^1.77^3^0.64^~1~^^^^1^0.58^2.78^2^-0.98^4.52^~2, 3~^~08/01/2002~ -~11165~^~309~^0.50^2^^~1~^^^^1^0.49^0.51^1^^^^~03/01/2007~ -~11165~^~323~^2.50^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~11165~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11167~^~203~^3.27^8^0.18^~6~^~JA~^^^2^3.13^3.75^6^2.82^3.72^~2, 3~^~04/01/2009~ -~11167~^~204~^1.35^8^0.11^~6~^~JA~^^^2^1.18^2.13^5^1.05^1.65^~2, 3~^~04/01/2009~ -~11167~^~205~^18.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~207~^0.62^47^0.04^~6~^~JA~^^^2^0.53^0.69^45^0.53^0.70^~2, 3~^~04/01/2009~ -~11167~^~209~^5.70^2^^~1~^~A~^^^1^4.60^6.80^1^^^^~04/01/2009~ -~11167~^~210~^0.89^2^^~1~^~A~^^^1^0.07^1.70^1^^^~1~^~04/01/2009~ -~11167~^~211~^3.43^2^^~1~^~A~^^^1^2.08^4.78^1^^^^~04/01/2009~ -~11167~^~212~^1.94^2^^~1~^~A~^^^1^1.50^2.38^1^^^^~04/01/2009~ -~11167~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~11167~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~11167~^~255~^76.05^103^0.86^~6~^~JA~^^^2^75.96^81.44^100^74.33^77.76^~2, 3~^~04/01/2009~ -~11167~^~269~^6.26^2^^~1~^~A~^^^1^6.16^6.35^1^^^^~04/01/2009~ -~11167~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~11167~^~303~^0.52^93^0.02^~6~^~JA~^^^2^0.45^0.52^90^0.47^0.56^~2, 3~^~04/01/2009~ -~11167~^~309~^0.46^58^0.04^~6~^~JA~^^^2^0.45^0.76^55^0.37^0.53^~2, 3~^~04/01/2009~ -~11167~^~323~^0.07^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~341~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~342~^0.15^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~343~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~ -~11167~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11168~^~203~^3.41^10^0.11^~6~^~JA~^^^2^3.31^3.88^8^3.13^3.68^~2, 3~^~04/01/2009~ -~11168~^~204~^1.50^10^0.08^~6~^~JA~^^^2^1.28^2.04^6^1.28^1.70^~2, 3~^~04/01/2009~ -~11168~^~205~^20.98^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~207~^0.71^10^0.01^~6~^~JA~^^^2^0.66^0.72^7^0.67^0.73^~2, 3~^~04/01/2009~ -~11168~^~209~^7.17^3^0.43^~1~^~A~^^^1^6.40^7.90^2^5.30^9.03^~2, 3~^~04/01/2009~ -~11168~^~210~^2.74^6^0.73^~6~^~JA~^^^2^0.84^5.22^2^-0.29^5.78^~2, 3~^~04/01/2009~ -~11168~^~211~^0.84^6^0.12^~6~^~JA~^^^2^0.60^1.49^2^0.34^1.34^~2, 3~^~04/01/2009~ -~11168~^~212~^0.79^6^0.20^~6~^~JA~^^^2^0.40^1.95^2^-0.07^1.64^~2, 3~^~04/01/2009~ -~11168~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11168~^~214~^0.17^6^0.03^~6~^~JA~^^^2^0.00^0.40^2^0.02^0.31^~1, 2, 3~^~04/01/2009~ -~11168~^~255~^73.41^13^0.67^~6~^~JA~^^^3^69.57^79.57^6^71.76^75.04^~2, 3~^~04/01/2009~ -~11168~^~269~^4.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11168~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11168~^~303~^0.45^31^0.01^~6~^~JA~^^^5^0.29^0.62^22^0.41^0.47^~2, 3~^~04/01/2009~ -~11168~^~309~^0.62^31^0.02^~6~^~JA~^^^5^0.28^1.00^20^0.56^0.68^~2, 3~^~04/01/2009~ -~11168~^~323~^0.09^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~341~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~342~^0.19^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~343~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~ -~11168~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11170~^~203~^1.95^354^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11170~^~204~^0.77^28^0.05^~11~^~JO~^^^5^0.37^1.30^21^0.66^0.87^~2, 3~^~03/01/2011~ -~11170~^~205~^13.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~11170~^~207~^0.80^27^0.03^~6~^~JA~^^^4^0.40^1.07^18^0.72^0.87^~2, 3~^~03/01/2011~ -~11170~^~210~^3.65^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~211~^0.26^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~212~^0.17^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~213~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~214~^0.07^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~255~^82.61^32^0.38^~11~^~JO~^^^7^72.80^88.07^17^81.79^83.43^~2, 3~^~03/01/2011~ -~11170~^~269~^4.15^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~287~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11170~^~303~^0.36^61^0.01^~6~^~JA~^^^10^0.16^0.80^38^0.32^0.38^~2, 3~^~03/01/2011~ -~11170~^~309~^0.39^39^0.01^~6~^~JA~^^^7^0.21^0.62^28^0.36^0.41^~2, 3~^~03/01/2011~ -~11170~^~323~^0.03^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~341~^0.00^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~342~^0.00^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~343~^0.00^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~344~^0.12^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~345~^0.00^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~346~^1.30^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~347~^0.00^1^^~1~^^^^^^^^^^^~01/01/2006~ -~11170~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~11170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~11172~^~203~^2.29^22^0.04^~1~^~A~^^^2^1.95^2.54^3^2.15^2.41^~2, 3~^~04/01/2015~ -~11172~^~204~^1.22^22^0.06^~1~^~A~^^^2^0.70^1.67^7^1.05^1.37^~2, 3~^~04/01/2015~ -~11172~^~205~^14.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~207~^0.75^22^0.05^~1~^~A~^^^2^0.38^1.00^4^0.58^0.90^~2, 3~^~04/01/2015~ -~11172~^~209~^8.06^10^1.39^~1~^~A~^^^1^3.80^13.40^3^3.67^12.44^~2, 3~^~04/01/2015~ -~11172~^~210~^3.90^10^0.31^~1~^~A~^^^1^2.70^4.90^3^2.91^4.88^~2, 3~^~04/01/2015~ -~11172~^~211~^0.28^10^0.01^~1~^~A~^^^1^0.20^0.30^4^0.23^0.32^~2, 3~^~04/01/2015~ -~11172~^~212~^0.18^10^0.01^~1~^~A~^^^1^0.10^0.20^3^0.13^0.23^~2, 3~^~04/01/2015~ -~11172~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11172~^~214~^0.08^10^6.0e-03^~1~^~A~^^^1^0.07^0.20^2^0.05^0.10^~1, 2, 3~^~04/01/2015~ -~11172~^~255~^81.41^22^0.85^~1~^~A~^^^2^76.90^84.80^3^78.86^83.94^~2, 3~^~04/01/2015~ -~11172~^~269~^4.44^10^0.33^~1~^~A~^^^1^3.27^5.47^3^3.40^5.47^~2, 3~^~04/01/2015~ -~11172~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~303~^0.27^22^0.01^~1~^~A~^^^2^0.18^0.34^6^0.24^0.30^~2, 3~^~04/01/2015~ -~11172~^~309~^0.32^22^0.01^~1~^~A~^^^2^0.23^0.39^2^0.24^0.40^~2, 3~^~04/01/2015~ -~11172~^~323~^0.09^2^^~1~^~A~^^^1^0.06^0.10^^^^^~04/01/2015~ -~11172~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~11172~^~342~^0.31^2^^~1~^~A~^^^1^0.23^0.34^^^^^~04/01/2015~ -~11172~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~11172~^~344~^0.26^2^^~1~^~A~^^^1^0.25^0.26^^^^^~04/01/2015~ -~11172~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~11172~^~346~^0.90^2^^~1~^~A~^^^1^0.87^1.01^^^^^~04/01/2015~ -~11172~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2006~ -~11172~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11174~^~203~^1.74^305^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~204~^0.42^281^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~205~^18.13^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11174~^~207~^0.98^291^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~210~^2.66^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~211~^0.23^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~212~^0.23^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~213~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~214~^0.11^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~255~^78.73^267^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~269~^3.23^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11174~^~287~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11174~^~303~^0.38^286^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~309~^0.53^80^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~342~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~346~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11174~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11176~^~203~^2.41^71^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~204~^0.50^71^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~205~^19.44^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11176~^~207~^1.07^71^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~210~^4.91^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11176~^~211~^0.35^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11176~^~212~^0.23^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11176~^~213~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11176~^~214~^0.10^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11176~^~255~^76.58^71^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~269~^5.59^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11176~^~287~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11176~^~303~^0.42^69^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~309~^0.46^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~323~^0.04^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~341~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~342~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~343~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11176~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11177~^~203~^2.18^4^0.10^~1~^~A~^^^1^1.88^2.36^3^1.84^2.52^~2, 3~^~04/01/2011~ -~11177~^~204~^1.43^4^0.18^~1~^~A~^^^1^1.02^1.90^3^0.84^2.02^~2, 3~^~04/01/2011~ -~11177~^~205~^13.02^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11177~^~207~^0.57^4^0.12^~1~^~A~^^^1^0.19^0.69^3^0.16^0.96^~2, 3~^~04/01/2011~ -~11177~^~210~^3.61^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~211~^0.26^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~212~^0.17^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~213~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~214~^0.07^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~255~^82.80^4^1.47^~1~^~A~^^^1^78.79^85.90^3^78.10^87.49^~2, 3~^~04/01/2011~ -~11177~^~269~^4.11^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~287~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11177~^~303~^0.22^4^0.02^~1~^~A~^^^1^0.19^0.29^3^0.14^0.29^~2, 3~^~04/01/2011~ -~11177~^~309~^0.28^4^0.01^~1~^~A~^^^1^0.24^0.31^3^0.23^0.33^~2, 3~^~04/01/2011~ -~11177~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11178~^~203~^3.02^81^0.03^~6~^~JA~^^^2^2.62^3.19^79^2.95^3.08^~2, 3~^~03/01/2008~ -~11178~^~204~^0.78^81^0.07^~6~^~JA~^^^2^0.77^1.11^77^0.62^0.93^~2, 3~^~03/01/2008~ -~11178~^~205~^20.71^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~207~^0.48^72^0.01^~6~^~JA~^^^2^0.48^0.60^68^0.45^0.51^~2, 3~^~03/01/2008~ -~11178~^~209~^15.10^3^0.56^~1~^~A~^^^1^14.00^15.90^2^12.65^17.54^~2, 3~^~03/01/2008~ -~11178~^~210~^1.65^7^0.10^~6~^~JA~^^^3^1.20^2.43^2^1.22^2.07^~2, 3~^~03/01/2008~ -~11178~^~211~^0.38^7^0.03^~6~^~JA~^^^3^0.23^0.60^4^0.29^0.47^~2, 3~^~03/01/2008~ -~11178~^~212~^0.30^7^0.02^~6~^~JA~^^^3^0.19^0.40^4^0.23^0.36^~2, 3~^~03/01/2008~ -~11178~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11178~^~214~^0.17^6^0.01^~6~^~JA~^^^2^0.00^0.40^2^0.09^0.23^~1, 2, 3~^~03/01/2008~ -~11178~^~255~^75.00^82^0.82^~6~^~JA~^^^4^72.76^79.46^73^73.36^76.64^~2, 3~^~03/01/2008~ -~11178~^~269~^2.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11178~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~11178~^~303~^0.42^80^0.03^~6~^~JA~^^^2^0.31^0.42^76^0.34^0.49^~2, 3~^~03/01/2008~ -~11178~^~309~^0.38^20^0.02^~6~^~JA~^^^2^0.37^0.51^17^0.33^0.42^~2, 3~^~03/01/2008~ -~11178~^~323~^0.08^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~341~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~342~^0.15^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~343~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~03/01/2008~ -~11178~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11179~^~203~^2.55^4^0.10^~1~^~A~^^^1^2.29^2.81^3^2.21^2.89^~2, 3~^~03/01/2006~ -~11179~^~204~^0.67^5^0.04^~11~^~JO~^^^2^0.58^0.81^3^0.53^0.80^~2, 3~^~03/01/2006~ -~11179~^~205~^19.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~207~^0.44^4^0.01^~1~^^^^1^0.41^0.48^3^0.39^0.49^~2, 3~^~03/01/2006~ -~11179~^~210~^1.96^14^0.26^~1~^^^^3^0.73^3.66^2^0.99^2.93^~2, 3~^~03/01/2006~ -~11179~^~211~^0.48^14^0.07^~1~^^^^3^0.20^1.39^3^0.24^0.71^~2, 3~^~03/01/2006~ -~11179~^~212~^0.46^14^0.02^~1~^^^^3^0.20^1.56^10^0.39^0.51^~2, 3~^~03/01/2006~ -~11179~^~213~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2006~ -~11179~^~214~^0.17^11^0.04^~1~^^^^3^0.00^0.40^7^0.07^0.27^~2, 3~^~03/01/2006~ -~11179~^~255~^77.03^19^0.43^~11~^~JO~^^^5^73.50^80.27^8^76.02^78.03^~2, 3~^~03/01/2006~ -~11179~^~269~^3.07^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11179~^~303~^0.47^24^0.02^~1~^^^^2^0.31^0.80^20^0.42^0.51^~2, 3~^~03/01/2006~ -~11179~^~309~^0.63^24^0.02^~1~^^^^2^0.36^1.00^20^0.57^0.68^~2, 3~^~03/01/2006~ -~11179~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~342~^0.14^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~344~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~346~^0.66^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11179~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11180~^~203~^3.28^58^0.04^~1~^^^^^^^^^^^~03/01/2010~ -~11180~^~204~^0.78^58^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~205~^23.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11180~^~207~^0.65^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~210~^2.41^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~211~^0.59^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~212~^0.56^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~213~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~214~^0.21^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~255~^71.79^58^0.27^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~269~^3.78^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~11180~^~287~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~303~^0.68^58^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~309~^0.70^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~323~^0.09^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~341~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~342~^0.17^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~343~^0.00^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~ -~11180~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11181~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~204~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~205~^22.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11181~^~207~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~210~^2.29^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~211~^0.56^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~212~^0.53^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~213~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~214~^0.20^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~255~^73.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~269~^3.59^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~11181~^~287~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~303~^0.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~323~^0.08^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~341~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~342~^0.16^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~343~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11181~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11182~^~203~^3.62^3^0.16^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~204~^1.42^3^0.11^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~205~^25.87^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11182~^~207~^0.69^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~209~^18.20^3^0.56^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~210~^2.67^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~211~^0.43^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~212~^0.26^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~213~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~214~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~255~^68.40^3^1.19^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~269~^3.36^3^0.02^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~287~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~303~^0.39^3^0.01^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~309~^0.53^3^0.04^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~323~^0.10^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~11184~^~203~^2.33^11^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~204~^0.55^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~205~^18.17^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11184~^~207~^1.45^10^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~255~^77.50^10^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~303~^0.79^9^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~309~^0.37^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11190~^~203~^2.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~205~^3.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11190~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~255~^92.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~303~^2.18^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~309~^0.59^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11191~^~203~^2.95^2^^~1~^^^^^^^^^^^~04/01/2007~ -~11191~^~204~^0.35^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~205~^18.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11191~^~207~^0.67^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~11191~^~255~^77.20^10^2.53^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~269~^3.00^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11191~^~303~^1.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~309~^1.01^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11192~^~203~^3.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~204~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~205~^20.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11192~^~207~^0.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~255~^75.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~269~^3.23^0^^~4~^~BFSN~^~11191~^^^^^^^^^~12/01/2002~ -~11192~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~309~^1.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~323~^0.22^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11192~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11192~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11192~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11195~^~203~^8.98^22^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~204~^0.70^22^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~205~^25.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11195~^~207~^1.05^22^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~255~^64.15^25^0.61^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~303~^2.35^22^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~309~^1.58^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11196~^~203~^8.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~204~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~205~^23.76^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11196~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~255~^66.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~269~^4.46^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~303~^2.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~309~^1.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~323~^0.30^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11196~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11196~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11196~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11197~^~203~^3.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~205~^9.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11197~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~255~^86.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~269~^5.04^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~303~^1.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~309~^0.34^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~323~^0.49^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11198~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~205~^7.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11198~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~255~^89.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~309~^0.24^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11199~^~203~^2.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~204~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~205~^8.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11199~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~255~^87.85^3^0.60^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~303~^0.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~309~^0.37^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11200~^~203~^2.53^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~205~^9.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11200~^~207~^0.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~255~^87.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~303~^0.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~309~^0.36^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11201~^~203~^4.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~205~^4.82^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11201~^~207~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~255~^89.78^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~303~^1.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~309~^0.29^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11202~^~203~^4.67^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11202~^~207~^1.13^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~255~^91.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~303~^1.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~309~^0.24^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11203~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~205~^5.50^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11203~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~255~^89.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~269~^4.40^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11203~^~303~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~323~^0.70^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11203~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11203~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11203~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11204~^~203~^1.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~205~^3.80^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11204~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~255~^92.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~269~^3.11^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11204~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~309~^0.15^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~323~^0.50^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11204~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11204~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11204~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11205~^~203~^0.65^4^^~1~^~A~^^^1^0.65^0.65^0^^^~4~^~11/01/2002~ -~11205~^~204~^0.11^9^4.0e-03^~11~^~JO~^^^2^0.10^0.11^2^0.09^0.12^~1, 4~^~11/01/2002~ -~11205~^~205~^3.63^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~207~^0.38^4^^~1~^~A~^^^1^0.38^0.38^0^^^~4~^~11/01/2002~ -~11205~^~209~^0.83^4^0.00^~1~^~A~^^^1^0.83^0.83^1^0.83^0.83^~1, 4~^~11/01/2002~ -~11205~^~210~^0.03^4^^~1~^~A~^^^1^0.03^0.03^0^^^~1, 4~^~11/01/2002~ -~11205~^~211~^0.76^7^0.04^~6~^~JA~^^^2^0.71^0.80^1^0.21^1.29^~4~^~11/01/2002~ -~11205~^~212~^0.87^7^0.09^~6~^~JA~^^^2^0.77^0.97^1^-0.36^2.10^~4~^~11/01/2002~ -~11205~^~213~^0.00^4^^~1~^~A~^^^1^0.00^0.00^0^^^~1, 4~^~11/01/2002~ -~11205~^~214~^0.01^7^0.01^~6~^~JA~^^^2^0.00^0.02^1^-0.13^0.16^~1, 4~^~11/01/2002~ -~11205~^~255~^95.23^2^^~11~^~JO~^^^4^90.12^96.41^2^^^^~11/01/2002~ -~11205~^~269~^1.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11205~^~303~^0.28^4^^~1~^~A~^^^1^0.28^0.28^0^^^~4~^~11/01/2002~ -~11205~^~309~^0.20^4^^~1~^~A~^^^1^0.20^0.20^0^^^~4~^~11/01/2002~ -~11205~^~323~^0.03^5^1.0e-03^~11~^~JO~^^^2^0.03^0.03^2^0.02^0.03^~1, 4~^~11/01/2002~ -~11205~^~341~^0.01^3^5.0e-03^~11~^~JO~^^^2^0.00^0.01^1^-0.05^0.06^~1, 4~^~11/01/2002~ -~11205~^~342~^0.03^3^5.0e-03^~11~^~JO~^^^2^0.03^0.04^1^-0.02^0.09^~4~^~11/01/2002~ -~11205~^~343~^0.00^3^4.0e-03^~11~^~JO~^^^2^0.00^0.01^1^-0.04^0.05^~1, 4~^~11/01/2002~ -~11205~^~344~^0.04^5^0.02^~11~^~JO~^^^2^0.02^0.08^2^-0.05^0.12^~1, 4~^~11/01/2002~ -~11205~^~345~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~11/01/2002~ -~11205~^~346~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~11/01/2002~ -~11205~^~347~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^1^0.00^0.00^~1, 4~^~11/01/2002~ -~11205~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11205~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11205~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11206~^~203~^0.59^4^0.07^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~204~^0.16^11^0.02^~11~^~JO~^^^3^0.10^0.19^1^-0.20^0.52^~1, 4~^~10/01/2002~ -~11206~^~205~^2.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11206~^~207~^0.36^4^9.0e-03^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~209~^0.08^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~210~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~211~^0.63^4^0.08^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~212~^0.75^4^0.06^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~213~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~214~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~255~^96.73^7^0.28^~11~^~JO~^^^3^96.10^97.16^1^93.10^100.36^~4~^~10/01/2002~ -~11206~^~269~^1.38^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11206~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11206~^~303~^0.22^52^8.0e-03^~6~^~JA~^^^6^0.02^0.30^5^0.20^0.24^~2, 3~^~10/01/2002~ -~11206~^~309~^0.17^52^0.01^~6~^~JA~^^^6^0.09^0.26^3^0.12^0.20^~2, 3~^~10/01/2002~ -~11206~^~323~^0.03^5^8.0e-03^~11~^~JO~^^^3^0.01^0.09^1^-0.07^0.14^~1, 2, 3~^~10/01/2002~ -~11206~^~341~^0.00^5^0.00^~11~^~JO~^^^3^0.00^0.01^^^^~1, 2, 3~^~10/01/2002~ -~11206~^~342~^0.02^5^4.0e-03^~11~^~JO~^^^3^0.00^0.04^1^-0.03^0.06^~1, 2, 3~^~10/01/2002~ -~11206~^~343~^0.00^5^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11206~^~344~^0.04^3^0.02^~11~^~JO~^^^2^^^^^^^~10/01/2002~ -~11206~^~345~^0.00^3^0.00^~11~^~JO~^^^2^^^^^^^~10/01/2002~ -~11206~^~346~^0.00^3^0.00^~11~^~JO~^^^2^^^^^^^~10/01/2002~ -~11206~^~347~^0.00^3^0.00^~11~^~JO~^^^2^^^^^^^~10/01/2002~ -~11206~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11206~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11207~^~203~^2.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11207~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~255~^85.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~269~^0.71^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~303~^3.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~309~^0.41^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~323~^3.44^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~ -~11207~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11207~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11207~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11208~^~203~^2.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~205~^6.40^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11208~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~255~^89.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~269~^0.50^0^^~4~^~BFSN~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~303~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~323~^2.44^0^^~4~^~BFSN~^~11207~^^^^^^^^^~05/01/2007~ -~11208~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11208~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11208~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11209~^~203~^0.98^7^0.03^~11~^~JO~^^^3^0.82^1.10^6^0.89^1.07^~4~^~08/01/2012~ -~11209~^~204~^0.18^6^0.03^~6~^~JA~^^^3^0.10^0.30^5^0.07^0.27^~4~^~08/01/2012~ -~11209~^~205~^5.88^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11209~^~207~^0.66^7^0.11^~6~^~JA~^^^3^0.45^1.10^6^0.38^0.93^~4~^~08/01/2012~ -~11209~^~210~^0.26^3^0.09^~1~^^^^2^0.08^0.42^2^-0.16^0.68^~4~^~08/01/2012~ -~11209~^~211~^1.58^3^0.10^~1~^^^^2^1.36^1.71^2^1.10^2.04^~4~^~08/01/2012~ -~11209~^~212~^1.54^3^0.09^~1~^^^^2^1.36^1.70^2^1.11^1.96^~4~^~08/01/2012~ -~11209~^~255~^92.30^1^^~6~^~JA~^^^4^90.80^93.50^14^^^^~08/01/2012~ -~11209~^~269~^3.53^1^^~1~^^^^^^^^^^^~08/01/2012~ -~11209~^~303~^0.23^7^0.01^~6~^~JA~^^^3^0.17^0.27^6^0.20^0.26^~4~^~08/01/2012~ -~11209~^~309~^0.16^1^^~6~^~JA~^^^3^0.11^0.23^9^^^^~08/01/2012~ -~11209~^~323~^0.30^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11209~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11209~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11209~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11210~^~203~^0.83^3^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~205~^8.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11210~^~207~^0.54^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~255~^89.67^6^^~1~^^^^1^88.40^91.10^^^^~2~^~01/01/2003~ -~11210~^~269~^3.20^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11210~^~303~^0.25^18^0.01^~1~^~A~^^^7^0.17^0.36^6^0.21^0.29^~2~^~01/01/2003~ -~11210~^~309~^0.12^21^0.01^~6~^~JA~^^^8^0.06^0.27^7^0.07^0.15^~2~^~01/01/2003~ -~11210~^~323~^0.41^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11210~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11210~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11210~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11211~^~203~^11.22^2^^~1~^~A~^^^1^11.12^11.31^1^^^^~07/01/2015~ -~11211~^~204~^4.73^2^^~1~^~A~^^^1^4.40^5.05^1^^^^~04/01/2006~ -~11211~^~205~^7.61^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11211~^~207~^1.27^2^^~1~^~A~^^^1^1.11^1.43^1^^^^~04/01/2006~ -~11211~^~209~^0.33^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~11211~^~210~^1.13^2^^~1~^~A~^^^1^0.76^1.50^1^^^^~04/01/2006~ -~11211~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~212~^0.21^2^^~1~^~A~^^^1^0.07^0.35^1^^^~1~^~04/01/2006~ -~11211~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~214~^1.14^2^^~1~^~A~^^^1^0.88^1.40^1^^^^~11/01/2006~ -~11211~^~255~^75.17^2^^~1~^~A~^^^1^74.33^76.02^1^^^^~04/01/2006~ -~11211~^~269~^2.48^2^^~1~^~A~^^^1^1.71^3.25^1^^^^~11/01/2006~ -~11211~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~303~^2.11^2^^~1~^~A~^^^1^2.06^2.16^1^^^^~05/01/2006~ -~11211~^~309~^1.32^2^^~1~^~A~^^^1^1.29^1.34^1^^^^~05/01/2006~ -~11211~^~323~^0.72^2^^~1~^~A~^^^1^0.69^0.75^1^^^^~04/01/2006~ -~11211~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.06^^^^^~04/01/2006~ -~11211~^~342~^5.55^2^^~1~^~A~^^^1^5.10^6.01^1^^^^~04/01/2006~ -~11211~^~343~^3.04^2^^~1~^~A~^^^1^2.83^3.25^1^^^^~04/01/2006~ -~11211~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11211~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~203~^11.91^2^^~1~^~A~^^^1^11.12^12.69^1^^^^~07/01/2015~ -~11212~^~204~^5.20^2^^~1~^~A~^^^1^5.06^5.34^1^^^^~04/01/2006~ -~11212~^~205~^8.91^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11212~^~207~^1.21^2^^~1~^~A~^^^1^0.93^1.49^1^^^^~04/01/2006~ -~11212~^~209~^1.51^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~11212~^~210~^1.12^2^^~1~^~A~^^^1^0.57^1.67^1^^^^~04/01/2006~ -~11212~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~212~^0.12^2^^~1~^~A~^^^1^0.07^0.16^1^^^~1~^~04/01/2006~ -~11212~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~214~^0.95^2^^~1~^~A~^^^1^0.56^1.33^1^^^^~05/01/2006~ -~11212~^~255~^72.77^2^^~1~^~A~^^^1^70.64^74.91^1^^^^~04/01/2006~ -~11212~^~269~^2.18^2^^~1~^~A~^^^1^1.20^3.16^1^^^^~11/01/2006~ -~11212~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~303~^2.27^2^^~1~^~A~^^^1^1.98^2.56^1^^^^~05/01/2006~ -~11212~^~309~^1.37^2^^~1~^~A~^^^1^1.23^1.50^1^^^^~05/01/2006~ -~11212~^~323~^0.68^2^^~1~^~A~^^^1^0.64^0.72^1^^^^~04/01/2006~ -~11212~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2006~ -~11212~^~342~^5.88^2^^~1~^~A~^^^1^5.74^6.03^1^^^^~04/01/2006~ -~11212~^~343~^3.57^2^^~1~^~A~^^^1^3.28^3.87^1^^^^~04/01/2006~ -~11212~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~04/01/2006~ -~11212~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~11212~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11212~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11212~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11213~^~203~^1.25^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~204~^0.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~205~^3.35^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11213~^~207~^1.41^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~255~^93.79^24^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~269~^0.25^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11213~^~303~^0.83^4^0.23^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~309~^0.79^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~323~^0.44^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11213~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11213~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11213~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11214~^~203~^1.15^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~204~^0.18^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~205~^3.07^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~207~^1.30^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~255~^94.29^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~269~^0.23^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~303~^0.72^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~309~^0.69^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~323~^0.40^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11215~^~203~^6.36^8^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~204~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~205~^33.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11215~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~255~^58.58^8^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~269~^1.00^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~11215~^~303~^1.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~309~^1.16^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~323~^0.08^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11215~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11216~^~203~^1.82^5^^~1~^^^^1^1.50^2.23^^^^~2~^~03/01/2007~ -~11216~^~204~^0.75^3^^~1~^^^^1^0.73^0.76^^^^~2~^~01/01/2003~ -~11216~^~205~^17.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11216~^~207~^0.77^2^^~1~^^^^1^0.77^0.77^^^^^~01/01/2003~ -~11216~^~255~^78.89^5^^~1~^^^^1^70.45^84.56^^^^~2~^~01/01/2003~ -~11216~^~269~^1.70^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11216~^~303~^0.60^3^^~1~^^^^1^0.50^0.69^^^^~2~^~01/01/2003~ -~11216~^~309~^0.34^1^^~1~^^^^^0.34^0.34^^^^^~01/01/2003~ -~11216~^~323~^0.26^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11216~^~418~^0.00^1^^~1~^^^^^0.00^0.00^^^^^~01/01/2003~ -~11216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11218~^~203~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~204~^0.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11218~^~207~^0.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~255~^95.54^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~303~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~309~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11219~^~203~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~204~^0.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~205~^3.69^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11219~^~207~^0.37^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~255~^95.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~303~^0.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~309~^0.70^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11220~^~203~^1.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~205~^4.35^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11220~^~207~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~255~^93.85^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~269~^2.02^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11220~^~303~^0.36^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~309~^0.07^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~323~^0.10^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11220~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11221~^~203~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~204~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~205~^14.34^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11221~^~207~^0.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~255~^84.29^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~269~^5.17^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11221~^~303~^0.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~323~^0.24^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11221~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11222~^~203~^9.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~204~^1.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~205~^8.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11222~^~207~^2.26^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~255~^78.66^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~303~^4.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~309~^0.60^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11223~^~203~^5.27^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~204~^0.93^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~205~^11.15^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11223~^~207~^1.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~255~^81.65^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~269~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11223~^~303~^2.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~309~^0.49^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~323~^0.10^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11223~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11223~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11223~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11224~^~203~^2.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~205~^9.19^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11224~^~207~^0.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~255~^87.87^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~269~^4.08^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~303~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~309~^0.37^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~323~^0.51^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11225~^~203~^2.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~204~^0.27^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11225~^~207~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~255~^86.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~303~^0.76^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11226~^~203~^2.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~204~^0.01^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~205~^17.44^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~207~^2.54^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~255~^78.01^3^0.64^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~269~^9.60^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11226~^~303~^3.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~309~^0.12^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11226~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11228~^~203~^0.48^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~204~^0.04^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~205~^6.75^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11228~^~207~^0.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~255~^92.59^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~303~^0.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~309~^0.66^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11230~^~203~^4.82^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~204~^0.44^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~205~^81.03^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11230~^~207~^2.57^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~255~^11.14^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~303~^6.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~309~^7.52^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11231~^~203~^4.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~205~^5.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11231~^~207~^1.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~255~^87.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~303~^4.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~309~^0.79^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11231~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11232~^~203~^3.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~205~^7.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11232~^~207~^1.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~255~^87.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~269~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11232~^~303~^3.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~309~^0.79^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~323~^0.70^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11232~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11232~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11232~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11233~^~203~^2.92^5^0.29^~1~^~A~^^^1^2.25^3.81^4^2.11^3.73^~2, 3~^~10/01/2016~ -~11233~^~204~^1.49^5^0.02^~1~^~A~^^^1^1.43^1.56^4^1.42^1.55^~2, 3~^~10/01/2016~ -~11233~^~205~^4.42^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~207~^1.54^5^0.08^~1~^~A~^^^1^1.26^1.75^4^1.31^1.77^~2, 3~^~10/01/2016~ -~11233~^~210~^0.18^2^^~1~^~A~^^^1^0.18^0.18^^^^~1~^~10/01/2016~ -~11233~^~211~^0.40^2^^~1~^~A~^^^1^0.32^0.48^1^^^^~10/01/2016~ -~11233~^~212~^0.41^2^^~1~^~A~^^^1^0.31^0.50^1^^^^~10/01/2016~ -~11233~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11233~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11233~^~255~^89.63^5^0.24^~1~^~A~^^^1^88.81^90.23^4^88.93^90.31^~2, 3~^~10/01/2016~ -~11233~^~269~^0.99^2^^~1~^~A~^^^1^0.81^1.16^1^^^^~10/01/2016~ -~11233~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11233~^~303~^1.60^5^0.51^~1~^~A~^^^1^0.77^3.61^4^0.17^3.01^~2, 3~^~10/01/2016~ -~11233~^~309~^0.39^5^0.06^~1~^~A~^^^1^0.20^0.57^4^0.21^0.55^~2, 3~^~10/01/2016~ -~11233~^~323~^0.66^3^0.08^~1~^~A~^^^1^0.50^0.75^2^0.31^1.01^~2, 3~^~10/01/2016~ -~11233~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~342~^0.14^3^0.03^~1~^~A~^^^1^0.09^0.20^2^6.0e-03^0.28^~2, 3~^~10/01/2016~ -~11233~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~11233~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11233~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11233~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11234~^~203~^2.94^6^0.18^~1~^~A~^^^1^2.19^3.38^5^2.46^3.40^~2, 3~^~12/01/2016~ -~11234~^~204~^1.21^6^0.06^~1~^~A~^^^1^0.91^1.34^5^1.04^1.37^~2, 3~^~12/01/2016~ -~11234~^~205~^5.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~207~^0.73^6^0.06^~1~^~A~^^^1^0.49^0.96^5^0.56^0.90^~2, 3~^~12/01/2016~ -~11234~^~210~^0.25^2^^~1~^~A~^^^1^0.18^0.31^1^^^~1~^~12/01/2016~ -~11234~^~211~^0.54^2^^~1~^~A~^^^1^0.49^0.59^1^^^^~12/01/2016~ -~11234~^~212~^0.42^2^^~1~^~A~^^^1^0.36^0.48^1^^^^~12/01/2016~ -~11234~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~255~^89.82^6^0.36^~1~^~A~^^^1^88.55^91.28^5^88.87^90.76^~2, 3~^~12/01/2016~ -~11234~^~269~^1.21^2^^~1~^~A~^^^1^1.03^1.38^1^^^^~12/01/2016~ -~11234~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.67^0.96^5^0.72^0.96^~2, 3~^~12/01/2016~ -~11234~^~309~^0.27^6^0.03^~1~^~A~^^^1^0.15^0.40^5^0.18^0.36^~2, 3~^~12/01/2016~ -~11234~^~323~^1.61^2^^~1~^~A~^^^1^1.38^1.84^1^^^^~12/01/2016~ -~11234~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~342~^0.12^2^^~1~^~A~^^^1^0.08^0.16^1^^^^~12/01/2016~ -~11234~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~11234~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11234~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11234~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11235~^~203~^2.66^10^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~204~^0.46^8^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~205~^4.88^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11235~^~207~^0.88^10^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~255~^91.12^10^0.36^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~269~^0.85^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~303~^0.93^10^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~309~^0.18^3^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~323~^0.57^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11235~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11236~^~203~^2.94^6^0.18^~1~^~A~^^^1^2.19^3.38^5^2.46^3.40^~2, 3~^~10/01/2016~ -~11236~^~204~^1.21^6^0.06^~1~^~A~^^^1^0.91^1.34^5^1.04^1.37^~2, 3~^~10/01/2016~ -~11236~^~205~^5.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~207~^0.73^6^0.06^~1~^~A~^^^1^0.49^0.96^5^0.56^0.90^~2, 3~^~10/01/2016~ -~11236~^~210~^0.25^2^^~1~^~A~^^^1^0.18^0.31^1^^^~1~^~10/01/2016~ -~11236~^~211~^0.54^2^^~1~^~A~^^^1^0.49^0.59^1^^^^~10/01/2016~ -~11236~^~212~^0.42^2^^~1~^~A~^^^1^0.36^0.48^1^^^^~10/01/2016~ -~11236~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~255~^89.82^6^0.36^~1~^~A~^^^1^88.55^91.28^5^88.87^90.76^~2, 3~^~10/01/2016~ -~11236~^~269~^1.21^2^^~1~^~A~^^^1^1.03^1.38^1^^^^~10/01/2016~ -~11236~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.67^0.96^5^0.72^0.96^~2, 3~^~10/01/2016~ -~11236~^~309~^0.27^6^0.03^~1~^~A~^^^1^0.15^0.40^5^0.18^0.36^~2, 3~^~10/01/2016~ -~11236~^~323~^1.61^2^^~1~^~A~^^^1^1.38^1.84^1^^^^~10/01/2016~ -~11236~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~342~^0.12^2^^~1~^~A~^^^1^0.08^0.16^1^^^^~10/01/2016~ -~11236~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11236~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11236~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11237~^~203~^8.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~204~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~205~^65.03^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~11237~^~207~^5.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~255~^19.97^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~303~^5.12^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~309~^5.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11238~^~203~^2.24^4^0.27^~1~^~A~^^^1^1.75^3.02^3^1.37^3.11^~2, 3~^~07/01/2009~ -~11238~^~204~^0.49^4^0.05^~1~^~A~^^^1^0.40^0.64^3^0.33^0.65^~2, 3~^~07/01/2009~ -~11238~^~205~^6.79^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11238~^~207~^0.73^4^0.08^~1~^~A~^^^1^0.60^0.98^3^0.46^1.00^~2, 3~^~07/01/2009~ -~11238~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~211~^2.38^4^0.24^~1~^~A~^^^1^1.91^3.08^3^1.59^3.17^~2, 3~^~02/01/2010~ -~11238~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~255~^89.74^4^0.98^~1~^~A~^^^1^86.90^91.41^3^86.60^92.86^~2, 3~^~07/01/2009~ -~11238~^~269~^2.38^4^0.24^~1~^~A~^^^1^1.91^3.08^3^1.59^3.17^~2, 3~^~02/01/2010~ -~11238~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~11238~^~303~^0.41^4^0.10^~1~^~A~^^^1^0.28^0.71^3^0.08^0.73^~2, 3~^~07/01/2009~ -~11238~^~309~^1.03^4^0.17^~1~^~A~^^^1^0.74^1.54^3^0.47^1.59^~2, 3~^~07/01/2009~ -~11239~^~203~^1.49^2^^~1~^~A~^^^1^1.40^1.58^1^^^^~07/01/2009~ -~11239~^~204~^0.53^2^^~1~^~A~^^^1^0.51^0.56^1^^^^~07/01/2009~ -~11239~^~205~^6.86^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11239~^~207~^1.26^2^^~1~^~A~^^^1^1.14^1.39^1^^^^~07/01/2009~ -~11239~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2010~ -~11239~^~211~^1.16^2^^~1~^~A~^^^1^0.85^1.47^1^^^^~02/01/2010~ -~11239~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2010~ -~11239~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2010~ -~11239~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2010~ -~11239~^~255~^89.85^2^^~1~^~A~^^^1^88.61^91.09^1^^^^~07/01/2009~ -~11239~^~269~^1.16^2^^~1~^~A~^^^1^0.85^1.47^1^^^^~02/01/2010~ -~11239~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2010~ -~11239~^~303~^3.47^2^^~1~^~A~^^^1^2.82^4.12^1^^^^~07/01/2009~ -~11239~^~309~^0.71^2^^~1~^~A~^^^1^0.67^0.74^1^^^^~07/01/2009~ -~11240~^~203~^3.12^4^0.07^~1~^~A~^^^1^2.89^3.24^3^2.87^3.37^~2, 3~^~07/01/2009~ -~11240~^~204~^0.57^4^0.03^~1~^~A~^^^1^0.48^0.66^3^0.45^0.69^~2, 3~^~07/01/2009~ -~11240~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~207~^1.58^4^0.25^~1~^~A~^^^1^1.14^2.12^3^0.79^2.37^~2, 3~^~07/01/2009~ -~11240~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~211~^0.60^4^0.22^~1~^~A~^^^1^0.00^0.99^3^-0.11^1.31^~1, 2, 3~^~02/01/2010~ -~11240~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~255~^89.61^4^0.26^~1~^~A~^^^1^89.18^90.38^3^88.77^90.45^~2, 3~^~07/01/2009~ -~11240~^~269~^0.60^4^0.22^~1~^~A~^^^1^0.00^0.99^3^-0.11^1.31^~2, 3~^~02/01/2010~ -~11240~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~11240~^~303~^12.18^4^4.31^~1~^~A~^^^1^3.27^20.68^3^-1.54^25.90^~2, 3~^~07/01/2009~ -~11240~^~309~^2.03^4^0.25^~1~^~A~^^^1^1.49^2.53^3^1.21^2.85^~2, 3~^~07/01/2009~ -~11241~^~203~^1.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~205~^6.20^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11241~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~255~^91.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~269~^2.60^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11241~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~309~^0.03^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11241~^~323~^0.48^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11241~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11241~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11241~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11242~^~203~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~205~^6.69^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11242~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~255~^90.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~269~^2.80^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~303~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~323~^0.52^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11242~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11242~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11242~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11243~^~203~^3.28^8^0.38^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~204~^0.58^8^0.14^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~205~^4.44^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~207~^1.05^8^0.05^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~209~^0.43^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11243~^~210~^0.00^5^0.00^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~211~^2.26^5^0.56^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~212~^0.00^5^0.00^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~213~^0.00^5^0.00^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~214~^0.00^5^0.00^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~255~^90.66^8^0.75^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~269~^2.26^5^0.56^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~287~^0.00^5^0.00^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~303~^0.40^7^0.10^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~309~^0.65^7^0.03^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11243~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11243~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11244~^~203~^4.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~204~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~205~^7.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11244~^~207~^3.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~255~^84.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~309~^0.44^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11245~^~203~^3.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~205~^5.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11245~^~207~^2.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~255~^88.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~269~^0.62^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~323~^1.85^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~ -~11245~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11245~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11245~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11246~^~203~^1.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~204~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~205~^14.15^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11246~^~207~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~255~^83.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~269~^3.90^0^^~4~^~T~^^^^^^^^^^~12/01/2002~ -~11246~^~303~^2.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~309~^0.12^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~323~^0.92^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11246~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11246~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11247~^~203~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~205~^7.62^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11247~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~255~^90.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~269~^2.11^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~303~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~309~^0.06^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11247~^~323~^0.50^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11247~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11248~^~203~^8.96^9^0.60^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~204~^0.55^9^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~205~^22.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11248~^~207~^1.00^9^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~255~^67.34^9^2.38^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~303~^3.21^9^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~309~^1.51^9^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11249~^~203~^8.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~204~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~205~^21.25^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11249~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~255~^68.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~303~^3.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~309~^1.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11250~^~203~^1.35^8^0.09^~1~^~A~^^^2^1.00^1.81^4^1.08^1.60^~2, 3~^~12/01/2002~ -~11250~^~204~^0.22^8^0.03^~1~^~A~^^^2^0.12^0.42^4^0.11^0.32^~2, 3~^~12/01/2002~ -~11250~^~205~^2.23^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11250~^~207~^0.57^8^0.03^~1~^~A~^^^2^0.44^0.71^5^0.47^0.66^~2, 3~^~12/01/2002~ -~11250~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~211~^0.43^4^0.09^~1~^~A~^^^1^0.16^0.53^3^0.14^0.71^~2, 3~^~12/01/2002~ -~11250~^~212~^0.51^4^0.08^~1~^~A~^^^1^0.25^0.63^3^0.23^0.78^~2, 3~^~12/01/2002~ -~11250~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~255~^95.63^8^0.30^~1~^~A~^^^2^94.13^97.01^6^94.87^96.37^~2, 3~^~12/01/2002~ -~11250~^~269~^0.94^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~11250~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~303~^1.24^8^0.25^~1~^~A~^^^2^0.43^2.17^6^0.60^1.87^~2, 3~^~12/01/2002~ -~11250~^~309~^0.20^8^0.01^~1~^~A~^^^2^0.15^0.25^4^0.16^0.23^~2, 3~^~12/01/2002~ -~11250~^~323~^0.18^4^0.05^~1~^~A~^^^1^0.04^0.27^3^0.02^0.34^~2, 3~^~12/01/2002~ -~11250~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~342~^0.27^4^0.02^~1~^~A~^^^1^0.20^0.32^3^0.19^0.35^~2, 3~^~12/01/2002~ -~11250~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~344~^0.02^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-3.0e-03^0.04^~2, 3~^~12/01/2002~ -~11250~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11250~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11250~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11250~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11251~^~203~^1.23^12^0.04^~11~^~JO~^^^3^1.00^1.47^9^1.13^1.32^~2, 3~^~12/01/2002~ -~11251~^~204~^0.30^10^0.01^~6~^~JA~^^^3^0.16^0.50^5^0.25^0.34^~2, 3~^~12/01/2002~ -~11251~^~205~^3.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~207~^0.58^12^0.01^~6~^~JA~^^^3^0.46^0.70^8^0.54^0.61^~2, 3~^~12/01/2002~ -~11251~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~211~^0.39^4^0.08^~1~^~A~^^^1^0.14^0.52^3^0.12^0.65^~2, 3~^~12/01/2002~ -~11251~^~212~^0.80^4^0.05^~1~^~A~^^^1^0.68^0.95^3^0.61^0.98^~2, 3~^~12/01/2002~ -~11251~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~255~^94.61^12^0.09^~6~^~JA~^^^3^94.00^95.50^6^94.37^94.83^~2, 3~^~12/01/2002~ -~11251~^~269~^1.19^4^0.13^~1~^~A~^^^1^0.82^1.48^3^0.75^1.62^~2, 3~^~12/01/2002~ -~11251~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~303~^0.97^11^0.07^~6~^~JA~^^^3^0.64^1.54^5^0.76^1.16^~2, 3~^~12/01/2002~ -~11251~^~309~^0.23^11^0.01^~6~^~JA~^^^3^0.16^0.33^3^0.19^0.27^~2, 3~^~12/01/2002~ -~11251~^~323~^0.13^5^0.02^~1~^~A~^^^2^0.04^0.24^3^0.04^0.22^~2, 3~^~12/01/2002~ -~11251~^~341~^0.00^5^3.0e-03^~1~^~A~^^^2^0.00^0.01^3^-7.0e-03^0.01^~2, 3~^~12/01/2002~ -~11251~^~342~^0.36^5^0.05^~1~^~A~^^^2^0.17^0.60^3^0.20^0.52^~2, 3~^~12/01/2002~ -~11251~^~343~^0.01^5^0.00^~1~^~A~^^^2^0.00^0.01^^^^~2, 3~^~12/01/2002~ -~11251~^~344~^0.04^5^0.01^~1~^~A~^^^2^0.01^0.06^3^3.0e-03^0.06^~2, 3~^~12/01/2002~ -~11251~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11251~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11251~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11251~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11252~^~203~^0.90^23^0.03^~11~^~JO~^^^3^0.63^1.48^4^0.80^0.99^~2, 3~^~11/01/2003~ -~11252~^~204~^0.14^30^0.01^~11~^~JO~^^^5^0.02^0.30^18^0.11^0.16^~1, 2, 3~^~11/01/2003~ -~11252~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~207~^0.36^23^0.01^~6~^~JA~^^^3^0.20^0.50^18^0.31^0.39^~2, 3~^~11/01/2003~ -~11252~^~210~^0.05^8^0.01^~6~^~JA~^^^3^0.00^0.20^2^-1.0e-03^0.10^~1, 2, 3~^~11/01/2003~ -~11252~^~211~^0.91^8^0.06^~6~^~JA~^^^3^0.67^1.20^3^0.69^1.12^~2, 3~^~11/01/2003~ -~11252~^~212~^1.00^8^0.06^~6~^~JA~^^^3^0.78^1.40^3^0.80^1.20^~2, 3~^~11/01/2003~ -~11252~^~213~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.02^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~255~^95.64^44^0.11^~11~^~JO~^^^12^94.00^97.70^20^95.40^95.86^~2, 3~^~11/01/2003~ -~11252~^~269~^1.97^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~303~^0.41^97^0.04^~6~^~JA~^^^14^0.11^4.71^4^0.28^0.52^~2, 3~^~11/01/2003~ -~11252~^~309~^0.15^93^4.0e-03^~6~^~JA~^^^14^0.01^0.26^53^0.13^0.15^~2, 3~^~11/01/2003~ -~11252~^~323~^0.18^13^0.01^~11~^~JO~^^^4^0.03^0.37^6^0.14^0.22^~2, 3~^~11/01/2003~ -~11252~^~341~^0.00^13^0.00^~11~^~JO~^^^4^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~342~^0.09^13^0.01^~11~^~JO~^^^4^0.02^0.27^6^0.05^0.12^~2, 3~^~11/01/2003~ -~11252~^~343~^0.00^13^2.0e-03^~11~^~JO~^^^4^0.00^0.02^1^-0.01^0.02^~1, 2, 3~^~11/01/2003~ -~11252~^~344~^0.01^7^0.00^~11~^~JO~^^^3^0.00^0.03^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~345~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~346~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~347~^0.00^7^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~1, 2, 3~^~11/01/2003~ -~11252~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11252~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11252~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11253~^~203~^1.36^8^0.05^~1~^~A~^^^2^1.11^1.64^5^1.21^1.51^~2, 3~^~12/01/2002~ -~11253~^~204~^0.15^8^0.01^~1~^~A~^^^2^0.10^0.20^5^0.11^0.19^~2, 3~^~12/01/2002~ -~11253~^~205~^2.87^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11253~^~207~^0.62^8^0.04^~1~^~A~^^^2^0.47^0.80^5^0.51^0.73^~2, 3~^~12/01/2002~ -~11253~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~211~^0.36^4^0.02^~1~^~A~^^^1^0.32^0.43^3^0.27^0.43^~2, 3~^~06/01/2010~ -~11253~^~212~^0.43^4^0.02^~1~^~A~^^^1^0.34^0.46^3^0.33^0.51^~2, 3~^~06/01/2010~ -~11253~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~255~^94.98^14^0.14^~1~^~A~^^^3^94.28^95.97^8^94.66^95.30^~2, 3~^~06/01/2010~ -~11253~^~269~^0.78^4^0.04^~1~^~A~^^^1^0.69^0.88^3^0.65^0.91^~2, 3~^~06/01/2010~ -~11253~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~303~^0.86^8^0.11^~1~^~A~^^^2^0.31^1.89^4^0.52^1.19^~2, 3~^~12/01/2002~ -~11253~^~309~^0.18^8^0.01^~1~^~A~^^^2^0.12^0.23^6^0.15^0.21^~2, 3~^~12/01/2002~ -~11253~^~323~^0.22^8^0.01^~1~^~A~^^^2^0.09^0.33^6^0.17^0.26^~2, 3~^~06/01/2010~ -~11253~^~341~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.01^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~342~^0.41^8^0.02^~1~^~A~^^^2^0.33^0.57^5^0.34^0.48^~2, 3~^~06/01/2010~ -~11253~^~343~^0.02^8^3.0e-03^~1~^~A~^^^2^0.00^0.03^4^0.01^0.02^~2, 3~^~06/01/2010~ -~11253~^~344~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~345~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~346~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~347~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~11253~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11253~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11254~^~203~^2.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~205~^17.23^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11254~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~255~^79.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~303~^1.16^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~309~^0.39^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11255~^~203~^1.58^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~204~^0.07^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~205~^16.02^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11255~^~207~^0.91^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~255~^81.42^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~269~^0.50^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11255~^~303~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~323~^0.01^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11255~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11255~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11255~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11257~^~203~^1.33^8^0.02^~1~^~A~^^^2^1.18^1.48^6^1.27^1.39^~2, 3~^~12/01/2002~ -~11257~^~204~^0.22^8^0.03^~1~^~A~^^^2^0.12^0.40^3^0.11^0.31^~2, 3~^~12/01/2002~ -~11257~^~205~^2.26^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11257~^~207~^0.55^8^0.02^~1~^~A~^^^2^0.40^0.68^5^0.48^0.61^~2, 3~^~12/01/2002~ -~11257~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~211~^0.20^4^0.02^~1~^~A~^^^1^0.15^0.26^3^0.12^0.28^~2, 3~^~12/01/2002~ -~11257~^~212~^0.28^4^0.02^~1~^~A~^^^1^0.23^0.35^3^0.18^0.37^~2, 3~^~12/01/2002~ -~11257~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~255~^95.64^8^0.17^~1~^~A~^^^2^94.88^96.47^6^95.22^96.05^~2, 3~^~12/01/2002~ -~11257~^~269~^0.48^4^0.05^~1~^~A~^^^1^0.38^0.59^3^0.31^0.65^~2, 3~^~12/01/2002~ -~11257~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~303~^1.20^8^0.30^~1~^~A~^^^2^0.41^3.40^3^0.28^2.11^~2, 3~^~12/01/2002~ -~11257~^~309~^0.20^8^0.02^~1~^~A~^^^2^0.10^0.26^5^0.14^0.25^~2, 3~^~12/01/2002~ -~11257~^~323~^0.15^4^0.05^~1~^~A~^^^1^0.07^0.31^3^-0.02^0.32^~2, 3~^~12/01/2002~ -~11257~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~342~^0.24^4^0.05^~1~^~A~^^^1^0.16^0.39^3^0.07^0.40^~2, 3~^~12/01/2002~ -~11257~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~344~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~2, 3~^~12/01/2002~ -~11257~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11257~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11257~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~11258~^~203~^1.34^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~11258~^~207~^0.82^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~255~^81.44^4^1.74^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~269~^0.31^0^^~4~^~BFSN~^~11601~^^^^^^^^^~10/01/2011~ -~11258~^~303~^0.44^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~323~^0.21^0^^~4~^~BFSN~^~11601~^^^^^^^^^~10/01/2011~ -~11258~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11259~^~203~^1.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~205~^20.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11259~^~207~^1.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~255~^77.14^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~303~^0.43^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~309~^0.32^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11260~^~203~^3.09^33^0.10^~11~^~JO~^^^5^2.25^4.03^19^2.87^3.31^~4~^~05/01/2005~ -~11260~^~204~^0.34^33^0.03^~11~^~JO~^^^6^0.10^0.58^19^0.27^0.41^~4~^~05/01/2005~ -~11260~^~205~^3.26^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11260~^~207~^0.85^29^0.02^~11~^~JO~^^^5^0.60^1.04^15^0.78^0.91^~4~^~05/01/2005~ -~11260~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11260~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11260~^~211~^1.48^8^0.42^~11~^~JO~^^^4^0.00^3.58^7^0.46^2.49^~1, 4~^~05/01/2005~ -~11260~^~212~^0.17^8^0.13^~11~^~JO~^^^4^0.00^1.10^7^-0.14^0.49^~4~^~05/01/2005~ -~11260~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11260~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11260~^~255~^92.45^56^0.23^~11~^~JO~^^^9^88.20^95.20^34^91.96^92.93^~4~^~08/01/2009~ -~11260~^~269~^1.98^5^0.54^~11~^~JO~^^^3^0.17^3.58^4^0.46^3.49^~4~^~02/01/2009~ -~11260~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11260~^~303~^0.50^58^0.10^~6~^~JA~^^^11^0.00^3.05^36^0.28^0.71^~1, 4~^~05/01/2005~ -~11260~^~309~^0.52^62^0.04^~11~^~JO~^^^12^0.26^1.57^40^0.44^0.60^~4~^~05/01/2005~ -~11260~^~323~^0.01^2^^~11~^~JO~^^^2^0.01^0.01^1^^^~1~^~05/01/2005~ -~11260~^~341~^0.01^2^^~11~^~JO~^^^2^0.00^0.01^1^^^~1~^~05/01/2005~ -~11260~^~342~^0.01^2^^~11~^~JO~^^^2^0.00^0.02^1^^^~1~^~05/01/2005~ -~11260~^~343~^0.01^2^^~11~^~JO~^^^2^0.00^0.02^1^^^~1~^~05/01/2005~ -~11260~^~344~^0.05^2^^~11~^~JO~^^^2^0.03^0.07^1^^^^~05/01/2005~ -~11260~^~345~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~05/01/2005~ -~11260~^~346~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~05/01/2005~ -~11260~^~347~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~05/01/2005~ -~11260~^~418~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11261~^~203~^2.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~204~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~205~^5.29^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11261~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~255~^91.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~269~^2.34^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~303~^1.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~309~^0.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~323~^0.01^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11261~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11261~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11261~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11263~^~203~^3.58^4^0.26^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~204~^0.33^4^0.02^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~205~^4.04^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11263~^~207~^0.94^4^0.02^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~255~^91.10^4^0.76^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~11263~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~303~^0.25^3^6.0e-03^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~309~^0.57^3^0.01^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11264~^~203~^1.87^5^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~204~^0.29^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~205~^5.09^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11264~^~207~^1.67^5^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~255~^91.08^8^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~269~^2.34^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~303~^0.79^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~309~^0.72^6^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~323~^0.01^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11264~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11264~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11264~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11265~^~203~^2.11^5^0.10^~1~^~A~^^^2^1.71^2.50^3^1.76^2.45^~2, 3~^~08/01/2009~ -~11265~^~204~^0.35^5^0.03^~1~^~A~^^^2^0.20^0.49^3^0.24^0.44^~2, 3~^~08/01/2009~ -~11265~^~205~^3.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11265~^~207~^0.85^5^0.03^~1~^~A~^^^2^0.69^1.03^3^0.74^0.95^~2, 3~^~08/01/2009~ -~11265~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11265~^~211~^2.01^4^0.08^~1~^~A~^^^1^1.79^2.16^3^1.74^2.27^~2, 3~^~08/01/2009~ -~11265~^~212~^0.49^4^0.03^~1~^~A~^^^1^0.42^0.58^3^0.36^0.60^~2, 3~^~08/01/2009~ -~11265~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11265~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11265~^~255~^92.82^9^0.56^~1~^~A~^^^2^90.96^95.12^7^91.49^94.14^~2, 3~^~08/01/2009~ -~11265~^~269~^2.50^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11265~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11265~^~303~^0.31^5^0.02^~1~^~A~^^^2^0.19^0.60^3^0.24^0.36^~2, 3~^~08/01/2009~ -~11265~^~309~^0.53^5^0.04^~1~^~A~^^^2^0.40^0.68^3^0.37^0.68^~2, 3~^~08/01/2009~ -~11265~^~323~^0.02^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11265~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~342~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~344~^0.02^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11265~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~01/01/2010~ -~11265~^~418~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11265~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~11265~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~11266~^~203~^2.50^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~204~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~205~^4.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11266~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~255~^92.12^5^0.30^~1~^~A~^^^2^^^^^^^~07/01/2009~ -~11266~^~269~^1.72^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~303~^0.40^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~309~^1.10^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~323~^0.01^2^^~1~^~A~^^^1^^^^^^^~02/01/2006~ -~11266~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~342~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~344~^0.01^2^^~1~^~A~^^^1^^^^^^^~02/01/2006~ -~11266~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~08/01/2007~ -~11266~^~418~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11267~^~203~^3.45^4^0.21^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~204~^0.35^4^0.05^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~205~^7.68^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11267~^~207~^0.78^4^0.03^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~211~^0.30^1^^~1~^~A~^^^^^^^^^^~07/01/2005~ -~11267~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~255~^87.74^4^0.94^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~269~^0.30^1^^~1~^~A~^^^^^^^^^^~07/01/2005~ -~11267~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~303~^0.53^3^0.06^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~309~^0.96^3^0.13^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11268~^~203~^9.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~204~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~205~^75.37^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~11268~^~207~^4.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~255~^9.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~269~^2.21^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~ -~11268~^~303~^1.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~309~^7.66^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~323~^0.00^0^^~4~^~BFSN~^~11267~^^^^^^^^^~03/01/2007~ -~11268~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11268~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11268~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11269~^~203~^1.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~204~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~205~^14.39^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11269~^~207~^0.35^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~255~^83.48^2^^~1~^^^^^^^^^^^~03/01/2009~ -~11269~^~269~^3.84^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11269~^~303~^0.44^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~309~^1.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~323~^0.00^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~ -~11269~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11269~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11269~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11270~^~203~^2.86^4^0.17^~6~^~JA~^^^2^2.50^3.31^2^2.10^3.61^~2, 3~^~08/01/2012~ -~11270~^~204~^0.42^4^0.02^~6~^~JA~^^^2^0.20^0.54^2^0.29^0.53^~2, 3~^~08/01/2012~ -~11270~^~205~^4.67^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11270~^~207~^1.36^3^0.07^~6~^~JA~^^^2^1.25^1.51^2^1.02^1.69^~2, 3~^~08/01/2012~ -~11270~^~255~^90.70^10^0.90^~6~^~JA~^^^2^89.76^90.80^8^88.61^92.77^~2, 3~^~08/01/2012~ -~11270~^~269~^1.32^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11270~^~303~^1.64^5^0.28^~6~^~JA~^^^2^1.03^2.65^2^0.41^2.86^~2, 3~^~08/01/2012~ -~11270~^~309~^0.25^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11270~^~323~^2.01^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11270~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11271~^~203~^2.56^2^^~6~^~JA~^^^2^2.26^2.85^1^^^^~08/01/2012~ -~11271~^~204~^0.47^2^^~6~^~JA~^^^2^0.24^0.70^1^^^^~08/01/2012~ -~11271~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11271~^~207~^0.69^2^^~6~^~JA~^^^2^0.44^0.94^1^^^^~08/01/2012~ -~11271~^~255~^91.78^2^^~6~^~JA~^^^2^89.01^94.46^2^^^^~08/01/2012~ -~11271~^~269~^1.41^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11271~^~303~^0.87^2^^~6~^~JA~^^^2^0.70^1.03^1^^^^~08/01/2012~ -~11271~^~309~^0.22^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11271~^~323~^1.78^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11271~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11271~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11271~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11272~^~203~^2.49^12^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~204~^0.27^12^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~205~^3.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11272~^~207~^0.63^12^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~255~^93.21^12^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~303~^1.29^12^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~309~^0.23^3^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11273~^~203~^2.27^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~205~^3.11^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11273~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~255~^93.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~269~^0.32^0^^~4~^~O~^~11270~^^^^^^^^^~02/01/2007~ -~11273~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~323~^1.35^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11273~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11273~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11273~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11274~^~203~^2.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~205~^3.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11274~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~255~^92.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~303~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11275~^~203~^1.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11275~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~255~^94.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11275~^~309~^0.11^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11276~^~203~^1.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~205~^2.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11276~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~255~^94.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~269~^0.29^0^^~4~^~BFSN~^~11457~^^^^^^^^^~08/01/2011~ -~11276~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11276~^~323~^1.42^0^^~4~^~BFSN~^~11457~^^^^^^^^^~08/01/2011~ -~11276~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11277~^~203~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11277~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~255~^94.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~269~^0.25^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11277~^~303~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11277~^~323~^1.23^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11277~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11278~^~203~^1.93^4^0.03^~11~^~JO~^^^2^1.83^2.00^2^1.78^2.06^~2, 3~^~08/01/2012~ -~11278~^~204~^0.19^5^0.01^~11~^~JO~^^^3^0.10^0.38^2^0.13^0.25^~2, 3~^~08/01/2012~ -~11278~^~205~^7.45^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11278~^~207~^0.86^2^^~6~^~JA~^^^2^0.70^0.88^^^^^~08/01/2012~ -~11278~^~209~^0.34^1^^~1~^^^^^0.34^0.34^^^^^~01/01/2003~ -~11278~^~210~^0.60^2^^~6~^~JA~^^^2^0.40^0.80^^^^^~08/01/2012~ -~11278~^~211~^0.32^4^0.04^~6~^~JA~^^^2^0.03^0.88^2^0.11^0.52^~2, 3~^~08/01/2012~ -~11278~^~212~^0.57^2^^~6~^~JA~^^^2^0.21^0.92^^^^^~08/01/2012~ -~11278~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11278~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11278~^~255~^89.58^19^0.22^~11~^~JO~^^^3^87.15^93.13^7^89.05^90.10^~2, 3~^~08/01/2012~ -~11278~^~269~^1.48^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11278~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11278~^~303~^0.62^4^0.08^~6~^~JA~^^^2^0.44^0.80^2^0.24^0.99^~2, 3~^~08/01/2012~ -~11278~^~309~^0.58^1^^~6~^~JA~^^^2^0.58^0.60^^^^^~08/01/2012~ -~11278~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11278~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11278~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11279~^~203~^1.87^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~204~^0.21^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11279~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11279~^~207~^0.84^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~255~^92.57^5^0.55^~11~^~JO~^^^2^90.83^93.20^1^85.49^99.64^~2~^~01/01/2003~ -~11279~^~269~^2.40^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11279~^~303~^0.28^18^0.01^~1~^~A~^^^7^0.12^0.40^6^0.24^0.30^~2~^~01/01/2003~ -~11279~^~309~^0.43^18^0.02^~1~^~A~^^^7^0.22^0.65^6^0.37^0.48^~2~^~01/01/2003~ -~11279~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~342~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11279~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11279~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11279~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11280~^~203~^1.69^41^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~204~^0.25^40^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~205~^6.63^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11280~^~207~^0.61^41^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~255~^90.82^44^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~269~^2.97^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~303~^0.57^41^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~309~^0.53^10^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~323~^0.33^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~ -~11280~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11280~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11281~^~203~^1.63^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~204~^0.24^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~205~^6.41^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11281~^~207~^0.59^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~255~^91.12^0^^~4~^~T~^^^^^^^^^^~05/01/2010~ -~11281~^~269~^2.87^0^^~4~^~BFSN~^~11280~^^^^^^^^^~01/01/2003~ -~11281~^~303~^0.52^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~309~^0.49^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~323~^0.32^0^^~4~^~BFSN~^~11280~^^^^^^^^^~01/01/2003~ -~11281~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11281~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11281~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11282~^~203~^1.10^25^0.03^~11~^~JO~^^^2^0.79^1.19^21^1.02^1.17^~2, 3~^~03/01/2006~ -~11282~^~204~^0.10^22^5.0e-03^~11~^~JO~^^^3^0.02^0.12^3^0.08^0.11^~1, 2, 3~^~03/01/2006~ -~11282~^~205~^9.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~207~^0.35^24^3.0e-03^~6~^~JA~^^^2^0.20^0.43^6^0.34^0.35^~2, 3~^~03/01/2006~ -~11282~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~210~^0.99^16^0.05^~6~^~JA~^^^5^0.54^2.04^2^0.78^1.18^~2, 3~^~03/01/2006~ -~11282~^~211~^1.97^16^0.05^~6~^~JA~^^^5^0.99^2.34^3^1.78^2.14^~2, 3~^~03/01/2006~ -~11282~^~212~^1.29^16^0.05^~6~^~JA~^^^5^0.70^1.85^8^1.17^1.40^~2, 3~^~03/01/2006~ -~11282~^~213~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~255~^89.11^34^0.24^~11~^~JO~^^^6^85.57^93.20^3^88.31^89.90^~2, 3~^~03/01/2006~ -~11282~^~269~^4.24^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11282~^~303~^0.21^90^8.0e-03^~6~^~JA~^^^13^0.00^0.55^21^0.19^0.22^~2, 3~^~03/01/2006~ -~11282~^~309~^0.17^90^4.0e-03^~6~^~JA~^^^13^0.07^0.28^45^0.15^0.17^~2, 3~^~03/01/2006~ -~11282~^~323~^0.02^5^0.00^~11~^~JO~^^^2^0.01^0.04^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~341~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~342~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~343~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~344~^0.04^5^2.0e-03^~11~^~JO~^^^2^0.01^0.12^1^0.01^0.06^~2, 3~^~03/01/2006~ -~11282~^~345~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~346~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~347~^0.00^5^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11282~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11282~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11283~^~203~^1.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~204~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~205~^10.15^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11283~^~207~^0.44^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~210~^1.10^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~211~^2.19^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~212~^1.44^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~213~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~214~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~10/01/2002~ -~11283~^~255~^87.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~269~^4.73^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~287~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~303~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~309~^0.21^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~323~^0.02^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~341~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~342~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11283~^~343~^0.00^0^^~4~^~BFSN~^~11282~^^^^^^^^^~10/01/2002~ -~11283~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11284~^~203~^8.95^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~204~^0.46^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~205~^83.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11284~^~207~^3.38^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~255~^3.93^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~269~^37.41^0^^~4~^~BFSN~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~303~^1.55^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~309~^1.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~323~^0.18^0^^~4~^~BFSN~^~11283~^^^^^^^^^~03/01/2007~ -~11284~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11284~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11285~^~203~^0.85^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~204~^0.09^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~205~^4.02^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11285~^~207~^0.94^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~255~^94.10^5^0.47^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~269~^2.20^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~ -~11285~^~303~^0.13^16^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~309~^0.29^20^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~323~^0.07^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11285~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11286~^~203~^0.95^4^0.09^~1~^~A~^^^1^0.77^1.18^3^0.66^1.23^~2, 3~^~08/01/2004~ -~11286~^~204~^10.80^4^0.73^~1~^~A~^^^1^9.50^12.90^3^8.45^13.14^~2, 3~^~08/01/2004~ -~11286~^~205~^7.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11286~^~207~^0.38^4^0.03^~1~^~A~^^^1^0.34^0.47^3^0.28^0.47^~2, 3~^~08/01/2004~ -~11286~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~210~^0.81^4^0.21^~1~^~A~^^^1^0.47^1.41^3^0.13^1.49^~2, 3~^~08/01/2004~ -~11286~^~211~^2.10^4^0.03^~1~^~A~^^^1^2.04^2.17^3^2.00^2.19^~2, 3~^~08/01/2004~ -~11286~^~212~^1.48^4^0.13^~1~^~A~^^^1^1.23^1.79^3^1.05^1.92^~2, 3~^~08/01/2004~ -~11286~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~255~^80.01^4^1.12^~1~^~A~^^^1^77.43^82.28^3^76.43^83.58^~2, 3~^~08/01/2004~ -~11286~^~303~^0.27^4^0.02^~1~^~A~^^^1^0.20^0.30^3^0.19^0.34^~2, 3~^~08/01/2004~ -~11286~^~309~^0.21^4^0.01^~1~^~A~^^^1^0.19^0.25^3^0.17^0.25^~2, 3~^~08/01/2004~ -~11286~^~323~^0.68^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~11286~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~11286~^~342~^5.64^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~11286~^~343~^1.57^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~11286~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~11286~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~11286~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~11286~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~11287~^~203~^0.79^18^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~204~^0.10^17^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~205~^6.82^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11287~^~207~^0.30^18^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~255~^91.99^18^0.24^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~303~^0.33^18^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~309~^0.07^4^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11288~^~203~^0.77^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~205~^6.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11288~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~255~^92.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~269~^2.90^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~323~^0.01^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11288~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11288~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11288~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11289~^~203~^0.89^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~204~^0.06^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~205~^8.45^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11289~^~207~^0.38^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~255~^90.22^6^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~269~^3.81^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~303~^0.46^6^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~309~^0.12^3^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~323~^0.02^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11289~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11289~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11289~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11290~^~203~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~204~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11290~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~255~^92.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~269~^2.90^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~303~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~323~^0.01^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~ -~11290~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11290~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11290~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11291~^~203~^1.83^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~204~^0.19^3^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~205~^7.34^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~11291~^~207~^0.81^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~255~^89.83^21^0.87^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~269~^2.33^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~303~^1.48^4^0.87^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~309~^0.39^4^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~323~^0.55^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~ -~11291~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~ -~11291~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11292~^~203~^0.97^4^0.03^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~204~^0.47^4^0.05^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~205~^5.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~207~^0.51^4^0.05^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~210~^0.16^4^0.12^~1~^~A~^^^1^^^^^^^~06/01/2014~ -~11292~^~211~^1.64^4^0.11^~1~^~A~^^^1^^^^^^^~06/01/2014~ -~11292~^~212~^2.12^4^0.24^~1~^~A~^^^1^^^^^^^~06/01/2014~ -~11292~^~213~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~214~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~255~^92.32^4^0.37^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~269~^3.91^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~11292~^~287~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~303~^0.51^4^0.02^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~309~^0.20^4^0.01^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~323~^0.21^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11292~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11292~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11292~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11293~^~203~^1.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~205~^6.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11293~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~255~^90.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~269~^2.18^0^^~4~^~BFSN~^~11291~^^^^^^^^^~08/01/2011~ -~11293~^~303~^1.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~309~^0.52^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~323~^0.51^0^^~4~^~BFSN~^~11291~^^^^^^^^^~08/01/2011~ -~11293~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11294~^~203~^0.80^7^0.02^~1~^~A~^^^2^0.71^0.86^3^0.72^0.86^~2, 3~^~04/01/2003~ -~11294~^~204~^0.08^8^8.0e-03^~1~^~A~^^^2^0.07^0.14^3^0.05^0.10^~1, 2, 3~^~04/01/2003~ -~11294~^~205~^7.55^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11294~^~207~^0.34^7^0.05^~1~^~A~^^^2^0.12^0.58^2^0.09^0.57^~2, 3~^~04/01/2003~ -~11294~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11294~^~210~^0.72^8^0.04^~1~^~A~^^^2^0.59^0.89^6^0.61^0.82^~2, 3~^~04/01/2003~ -~11294~^~211~^2.26^7^0.08^~1~^~A~^^^2^1.92^2.60^5^2.03^2.48^~2, 3~^~04/01/2003~ -~11294~^~212~^2.02^8^0.04^~1~^~A~^^^2^1.72^2.35^5^1.90^2.13^~2, 3~^~04/01/2003~ -~11294~^~213~^0.02^8^0.01^~1~^~A~^^^2^0.00^0.15^3^-0.04^0.07^~1, 2, 3~^~04/01/2003~ -~11294~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11294~^~255~^91.24^8^0.16^~1~^~A~^^^2^90.31^92.20^6^90.83^91.63^~2, 3~^~04/01/2003~ -~11294~^~269~^5.02^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11294~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11294~^~303~^0.26^7^0.01^~1~^~A~^^^2^0.12^0.37^3^0.22^0.29^~2, 3~^~04/01/2003~ -~11294~^~309~^0.13^8^0.01^~1~^~A~^^^2^0.08^0.20^4^0.09^0.17^~2, 3~^~04/01/2003~ -~11294~^~323~^0.02^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^9.0e-03^0.02^~1, 2, 3~^~10/01/2003~ -~11294~^~341~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~10/01/2003~ -~11294~^~342~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~10/01/2003~ -~11294~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11294~^~344~^0.01^4^9.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.04^~1, 2, 3~^~10/01/2003~ -~11294~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11294~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11294~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2003~ -~11295~^~203~^3.15^13^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~204~^14.10^13^0.46^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~205~^30.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11295~^~207~^1.00^13^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~255~^51.22^13^0.37^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~303~^0.93^12^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~309~^0.36^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11296~^~203~^4.14^11^0.26^~1~^~A~^^^1^3.19^5.69^1^0.86^7.40^~2, 3~^~04/01/2013~ -~11296~^~204~^14.30^11^0.50^~1~^~A~^^^1^12.58^15.80^1^8.76^19.84^~2, 3~^~04/01/2013~ -~11296~^~205~^33.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~207~^1.40^11^0.05^~1~^~A~^^^1^1.15^1.89^2^1.04^1.76^~2, 3~^~04/01/2013~ -~11296~^~209~^25.58^7^0.75^~1~^~A~^^^1^21.40^30.90^2^22.49^28.67^~2, 3~^~04/01/2013~ -~11296~^~210~^1.76^7^0.13^~1~^~A~^^^1^0.30^2.40^2^1.21^2.31^~2, 3~^~04/01/2013~ -~11296~^~211~^1.31^7^0.04^~1~^~A~^^^1^1.00^1.60^2^1.11^1.51^~2, 3~^~04/01/2013~ -~11296~^~212~^1.26^7^0.02^~1~^~A~^^^1^1.10^1.40^2^1.18^1.34^~2, 3~^~04/01/2013~ -~11296~^~213~^0.11^7^0.00^~1~^~A~^^^1^0.00^0.20^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~214~^0.66^7^5.0e-03^~1~^~A~^^^1^0.60^0.80^2^0.63^0.67^~2, 3~^~04/01/2013~ -~11296~^~255~^46.37^11^0.75^~1~^~A~^^^1^37.53^50.51^1^40.11^52.62^~2, 3~^~04/01/2013~ -~11296~^~269~^5.10^7^0.19^~1~^~A~^^^1^3.30^5.90^2^4.25^5.95^~2, 3~^~04/01/2013~ -~11296~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~303~^1.25^11^0.09^~1~^~A~^^^1^0.79^1.53^1^0.12^2.37^~2, 3~^~04/01/2013~ -~11296~^~309~^0.42^11^0.01^~1~^~A~^^^1^0.30^1.02^1^0.24^0.59^~2, 3~^~08/01/1984~ -~11296~^~323~^0.46^7^0.01^~1~^~A~^^^1^0.37^0.73^2^0.42^0.50^~2, 3~^~04/01/2013~ -~11296~^~341~^0.41^7^0.31^~1~^~A~^^^1^0.07^6.31^2^-0.96^1.78^~2, 3~^~04/01/2013~ -~11296~^~342~^2.33^7^0.39^~1~^~A~^^^1^0.00^7.93^2^0.66^3.99^~1, 2, 3~^~04/01/2013~ -~11296~^~343~^1.44^7^0.03^~1~^~A~^^^1^1.05^2.99^3^1.33^1.54^~2, 3~^~04/01/2013~ -~11296~^~344~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~345~^0.15^7^0.01^~1~^~A~^^^1^0.09^0.32^3^0.10^0.18^~2, 3~^~04/01/2013~ -~11296~^~346~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~347~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11296~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11296~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11297~^~203~^2.97^3^0.42^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~204~^0.79^3^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~205~^6.33^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11297~^~207~^2.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~255~^87.71^11^0.66^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~269~^0.85^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11297~^~303~^6.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~309~^1.07^3^0.39^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~323~^0.75^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~342~^0.53^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~343~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11297~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11298~^~203~^1.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~204~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~205~^17.99^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11298~^~207~^0.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~255~^79.53^6^1.54^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~269~^4.80^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11298~^~303~^0.59^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~309~^0.59^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~323~^1.49^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2003~ -~11298~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11299~^~203~^1.32^5^0.07^~1~^^^^^^^^^^^~03/01/2007~ -~11299~^~204~^0.30^5^^~1~^^^^^0.24^0.36^^^^^~01/01/2003~ -~11299~^~205~^17.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11299~^~207~^1.13^5^^~1~^^^^^0.91^1.29^^^^^~01/01/2003~ -~11299~^~255~^80.24^7^^~1~^^^^1^77.72^81.50^^^^~2~^~01/01/2003~ -~11299~^~269~^4.80^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11299~^~303~^0.58^5^^~1~^^^^^0.32^0.89^^^^^~01/01/2003~ -~11299~^~309~^0.26^5^^~1~^^^^^0.18^0.37^^^^^~01/01/2003~ -~11299~^~323~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11299~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11299~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11299~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11300~^~203~^2.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~205~^7.55^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11300~^~207~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~255~^88.89^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~269~^4.00^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11300~^~303~^2.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11300~^~323~^0.39^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11300~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11300~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11300~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11301~^~203~^3.27^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~205~^7.05^0^^~4~^~NC~^^^^^^^^^^~01/01/2004~ -~11301~^~207~^0.54^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~255~^88.91^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~269~^3.99^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~303~^1.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~309~^0.37^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~323~^0.39^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2004~ -~11301~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11301~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11301~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11302~^~203~^2.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~204~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~205~^7.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11302~^~207~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~255~^89.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~303~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~309~^0.41^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11303~^~203~^3.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~204~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~205~^9.02^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11303~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~255~^86.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~269~^4.82^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~303~^2.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~309~^0.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~323~^0.47^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11303~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11303~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11303~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11304~^~203~^5.42^7^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~204~^0.40^7^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~205~^14.45^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11304~^~207~^0.87^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~210~^4.99^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~211~^0.12^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~212~^0.39^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~213~^0.00^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~214~^0.17^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~255~^78.86^10^0.50^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~269~^5.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11304~^~287~^0.00^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~303~^1.47^8^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~309~^1.24^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~323~^0.13^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~341~^0.00^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~342~^0.95^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~343~^0.02^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~ -~11304~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11304~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11304~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11305~^~203~^5.36^14^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~204~^0.22^14^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~205~^15.63^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~207~^0.92^14^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~210~^5.22^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~211~^0.13^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~212~^0.41^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~213~^0.00^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~214~^0.18^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~255~^77.87^14^1.00^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~269~^5.93^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11305~^~287~^0.00^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~303~^1.54^14^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~309~^1.19^14^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~323~^0.14^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~341~^0.00^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~342~^0.99^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~343~^0.02^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~ -~11305~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11305~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11306~^~203~^3.01^40^0.07^~11~^~JO~^^^5^2.15^3.94^39^2.86^3.15^~4~^~04/01/2011~ -~11306~^~204~^0.48^42^0.02^~11~^~JO~^^^6^0.11^0.89^41^0.42^0.53^~4~^~04/01/2011~ -~11306~^~205~^10.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11306~^~207~^0.77^41^0.05^~6~^~JA~^^^5^0.24^1.31^40^0.66^0.87^~4~^~04/01/2011~ -~11306~^~210~^2.95^11^0.20^~1~^^^^2^2.12^4.52^10^2.49^3.40^~4~^~09/01/2002~ -~11306~^~211~^0.08^9^0.03^~1~^^^^2^0.00^0.27^7^-5.0e-03^0.17^~4~^~09/01/2002~ -~11306~^~212~^0.10^9^0.03^~1~^^^^2^0.00^0.27^7^9.0e-03^0.18^~4~^~09/01/2002~ -~11306~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11306~^~214~^0.07^11^0.03^~1~^^^^2^0.00^0.26^8^-3.0e-03^0.14^~4~^~09/01/2002~ -~11306~^~255~^85.13^53^0.98^~11~^~JO~^^^8^37.30^91.39^52^83.14^87.11^~4~^~04/01/2011~ -~11306~^~269~^3.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11306~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11306~^~303~^1.29^87^0.04^~6~^~JA~^^^10^0.30^2.80^86^1.19^1.37^~4~^~04/01/2011~ -~11306~^~309~^0.72^50^0.02^~6~^~JA~^^^6^0.44^1.07^49^0.67^0.75^~4~^~04/01/2011~ -~11306~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~342~^1.70^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~343~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11306~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11306~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11306~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11308~^~203~^4.47^9^0.11^~1~^~A~^^^2^3.81^5.00^5^4.15^4.78^~2, 3~^~12/01/2007~ -~11308~^~204~^0.80^9^0.02^~1~^~A~^^^2^0.59^1.12^4^0.73^0.85^~2, 3~^~04/01/2011~ -~11308~^~205~^11.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11308~^~207~^1.09^9^0.06^~1~^~A~^^^2^0.70^1.37^3^0.88^1.28^~2, 3~^~04/01/2011~ -~11308~^~209~^4.04^5^0.63^~1~^~A~^^^1^2.60^6.40^4^2.27^5.80^~2, 3~^~12/01/2007~ -~11308~^~210~^2.60^11^0.37^~6~^~JA~^^^3^0.07^3.74^4^1.58^3.61^~1, 2, 3~^~12/01/2007~ -~11308~^~211~^0.17^11^0.09^~6~^~JA~^^^3^0.00^1.05^4^-0.07^0.41^~1, 2, 3~^~12/01/2007~ -~11308~^~212~^0.05^11^0.01^~6~^~JA~^^^3^0.00^0.27^1^-0.06^0.15^~1, 2, 3~^~12/01/2007~ -~11308~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~11308~^~214~^0.04^12^0.01^~6~^~JA~^^^3^0.00^0.26^2^-0.03^0.10^~1, 2, 3~^~12/01/2007~ -~11308~^~255~^82.29^16^0.43^~6~^~JA~^^^4^79.32^85.01^9^81.30^83.26^~2, 3~^~04/01/2011~ -~11308~^~269~^2.99^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~11308~^~287~^0.14^5^7.0e-03^~1~^~A~^^^1^0.12^0.15^4^0.11^0.15^~2, 3~^~12/01/2007~ -~11308~^~303~^1.18^9^0.06^~1~^~A~^^^2^0.92^1.50^6^1.02^1.33^~2, 3~^~04/01/2011~ -~11308~^~309~^0.66^9^0.03^~1~^~A~^^^2^0.55^0.90^4^0.56^0.75^~2, 3~^~04/01/2011~ -~11308~^~323~^0.38^0^^~4~^~NR~^^^^^^^^^^~12/01/2007~ -~11308~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11308~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11308~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11310~^~203~^3.09^36^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~204~^0.27^36^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~205~^9.25^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11310~^~207~^0.88^36^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~255~^86.51^36^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~303~^1.20^36^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~309~^0.65^36^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11311~^~203~^4.33^4^0.12^~1~^~A~^^^1^4.00^4.56^3^3.94^4.71^~2, 3~^~04/01/2011~ -~11311~^~204~^0.95^4^0.04^~1~^~A~^^^1^0.86^1.04^3^0.81^1.08^~2, 3~^~04/01/2011~ -~11311~^~205~^11.82^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11311~^~207~^1.01^4^0.09^~1~^~A~^^^1^0.83^1.26^3^0.72^1.30^~2, 3~^~04/01/2011~ -~11311~^~255~^81.89^4^0.90^~1~^~A~^^^1^79.37^83.51^3^78.99^84.77^~2, 3~^~04/01/2011~ -~11311~^~303~^1.09^4^0.05^~1~^~A~^^^1^0.97^1.24^3^0.91^1.26^~2, 3~^~04/01/2011~ -~11311~^~309~^0.68^4^0.06^~1~^~A~^^^1^0.59^0.89^3^0.46^0.90^~2, 3~^~04/01/2011~ -~11311~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~11312~^~203~^5.22^95^0.05^~6~^~JA~^^^2^5.21^5.81^92^5.10^5.33^~2, 3~^~03/01/2008~ -~11312~^~204~^0.40^101^0.02^~11~^~JO~^^^3^0.37^1.15^94^0.34^0.44^~2, 3~^~03/01/2008~ -~11312~^~205~^13.62^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~207~^0.78^86^0.07^~6~^~JA~^^^2^0.61^0.81^82^0.63^0.91^~2, 3~^~03/01/2008~ -~11312~^~209~^4.17^3^0.20^~1~^~A~^^^1^3.80^4.50^2^3.29^5.03^~2, 3~^~03/01/2008~ -~11312~^~210~^4.60^9^0.19^~6~^~JA~^^^4^4.00^6.06^2^3.88^5.31^~2, 3~^~03/01/2008~ -~11312~^~211~^0.08^6^0.03^~6~^~JA~^^^3^0.00^0.26^1^-0.37^0.52^~1, 2, 3~^~03/01/2008~ -~11312~^~212~^0.25^6^0.21^~6~^~JA~^^^3^0.00^1.30^1^-2.42^2.91^~1, 2, 3~^~03/01/2008~ -~11312~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~11312~^~214~^0.08^6^0.01^~6~^~JA~^^^2^0.00^0.21^2^0.01^0.14^~1, 2, 3~^~03/01/2008~ -~11312~^~255~^79.98^105^0.24^~11~^~JO~^^^5^77.88^83.77^95^79.50^80.45^~2, 3~^~03/01/2008~ -~11312~^~269~^5.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~11312~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~11312~^~303~^1.53^95^0.03^~6~^~JA~^^^2^1.42^1.70^92^1.46^1.59^~2, 3~^~03/01/2008~ -~11312~^~309~^0.82^33^0.01^~6~^~JA~^^^2^0.81^0.92^30^0.78^0.85^~2, 3~^~03/01/2008~ -~11312~^~323~^0.02^6^3.0e-03^~1~^~A~^^^1^0.01^0.03^5^0.01^0.03^~2, 3~^~03/01/2008~ -~11312~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~11312~^~342~^0.75^6^0.05^~1~^~A~^^^1^0.62^0.98^5^0.61^0.88^~2, 3~^~03/01/2008~ -~11312~^~343~^0.01^6^2.0e-03^~1~^~A~^^^1^0.01^0.02^5^8.0e-03^0.01^~2, 3~^~03/01/2008~ -~11312~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11312~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11312~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11313~^~203~^5.15^11^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~204~^0.27^11^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~205~^14.26^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11313~^~207~^0.80^11^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~210~^4.06^0^^~4~^~BFSN~^~11306~^^^^^^^^^~08/01/2015~ -~11313~^~211~^0.11^0^^~4~^~BFSN~^~11306~^^^^^^^^^~08/01/2015~ -~11313~^~212~^0.13^0^^~4~^~BFSN~^~11306~^^^^^^^^^~08/01/2015~ -~11313~^~213~^0.00^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~214~^0.10^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~255~^79.52^11^0.68^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~269~^4.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11313~^~287~^0.00^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~303~^1.52^48^0.04^~1~^^^^5^0.96^2.35^47^1.42^1.60^~4~^~09/01/2002~ -~11313~^~309~^0.67^48^0.02^~1~^^^^5^0.37^1.04^47^0.62^0.72^~4~^~09/01/2002~ -~11313~^~323~^0.03^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~341~^0.00^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~342~^2.34^0^^~4~^~BFSN~^~11306~^^^^^^^^^~08/01/2015~ -~11313~^~343~^0.04^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11313~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11313~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11313~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11316~^~203~^8.80^4^0.34^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~204~^0.68^4^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~205~^27.11^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11316~^~207~^1.14^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~255~^62.27^4^2.01^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~303~^2.26^4^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~309~^1.05^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11317~^~203~^7.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~204~^0.51^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~205~^17.08^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11317~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~255~^74.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~303~^1.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~309~^0.78^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11318~^~203~^2.17^155^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~204~^0.27^155^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~205~^8.48^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11318~^~207~^0.93^165^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~255~^88.15^155^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~303~^0.75^165^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~309~^0.58^28^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11322~^~203~^3.40^34^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~204~^0.47^34^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~205~^11.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11322~^~207~^0.62^27^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~255~^84.36^29^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~303~^1.09^34^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~309~^0.52^8^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11323~^~203~^3.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~204~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~205~^10.12^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11323~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~255~^85.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~269~^4.36^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~303~^0.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~309~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~323~^0.52^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11323~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11324~^~203~^3.28^4^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~204~^0.38^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~205~^8.57^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11324~^~207~^1.37^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~255~^86.40^4^0.34^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~303~^0.87^4^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~309~^0.58^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11326~^~203~^3.98^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~204~^0.32^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~205~^13.51^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11326~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~255~^81.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~303~^1.54^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~309~^0.48^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11327~^~203~^2.54^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~205~^8.63^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11327~^~207~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~255~^88.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~269~^3.77^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~303~^0.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~309~^0.29^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~323~^0.02^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11327~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11327~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11329~^~203~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~205~^5.10^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11329~^~207~^1.40^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11329~^~255~^92.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~269~^3.12^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11329~^~303~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~11329~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11329~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11329~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11333~^~203~^0.86^16^0.02^~11~^~JO~^^^2^0.68^0.92^9^0.81^0.91^~2, 3~^~03/01/2003~ -~11333~^~204~^0.17^17^4.0e-03^~11~^~JO~^^^3^0.13^0.28^3^0.16^0.18^~2, 3~^~03/01/2003~ -~11333~^~205~^4.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~207~^0.43^4^0.02^~1~^~A~^^^1^0.37^0.49^3^0.34^0.50^~2, 3~^~03/01/2003~ -~11333~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2003~ -~11333~^~210~^0.11^8^0.03^~6~^~JA~^^^3^0.00^0.40^2^-0.03^0.25^~1, 2, 3~^~03/01/2003~ -~11333~^~211~^1.16^9^0.05^~6~^~JA~^^^4^0.71^1.50^2^0.97^1.35^~2, 3~^~03/01/2003~ -~11333~^~212~^1.12^9^0.01^~6~^~JA~^^^4^1.04^1.30^5^1.08^1.16^~2, 3~^~03/01/2003~ -~11333~^~213~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~214~^0.00^5^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~255~^93.89^25^0.18^~6~^~JA~^^^6^89.90^94.90^3^93.35^94.43^~2, 3~^~03/01/2003~ -~11333~^~269~^2.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11333~^~303~^0.34^65^0.01^~6~^~JA~^^^7^0.15^0.59^35^0.32^0.36^~2, 3~^~03/01/2003~ -~11333~^~309~^0.13^65^5.0e-03^~6~^~JA~^^^7^0.05^0.28^41^0.12^0.14^~2, 3~^~03/01/2003~ -~11333~^~323~^0.37^3^0.01^~11~^~JO~^^^2^0.26^0.57^1^0.24^0.50^~2, 3~^~03/01/2003~ -~11333~^~341~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~342~^0.00^3^5.0e-03^~11~^~JO~^^^2^0.00^0.01^1^-0.05^0.06^~1, 2, 3~^~03/01/2003~ -~11333~^~343~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~344~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~345~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~346~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~347~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~03/01/2003~ -~11333~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11333~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11333~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11334~^~203~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~ -~11334~^~207~^0.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~210~^0.15^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~211~^1.55^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~212~^1.50^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~213~^0.00^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~214~^0.00^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~255~^91.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~269~^3.19^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~287~^0.00^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~303~^0.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~323~^0.50^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~341~^0.00^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~342~^0.01^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11334~^~343~^0.00^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~ -~11334~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11334~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11335~^~203~^0.80^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~205~^3.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11335~^~207~^3.75^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~255~^91.25^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~303~^0.80^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~309~^0.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11337~^~203~^1.08^7^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~204~^0.21^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~205~^4.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11337~^~207~^0.30^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~255~^93.96^7^0.38^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~303~^0.62^7^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~309~^0.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11338~^~203~^0.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~205~^3.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11338~^~207~^0.27^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~255~^94.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~303~^0.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11339~^~203~^0.78^4^0.03^~1~^~A~^^^1^0.69^0.86^3^0.67^0.89^~2, 3~^~10/01/2002~ -~11339~^~204~^11.85^4^0.42^~1~^~A~^^^1^11.30^13.10^3^10.49^13.21^~2, 3~^~10/01/2002~ -~11339~^~205~^4.22^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11339~^~207~^0.50^4^0.05^~1~^~A~^^^1^0.37^0.62^3^0.33^0.66^~2, 3~^~10/01/2002~ -~11339~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11339~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~211~^1.09^4^0.05^~1~^~A~^^^1^0.97^1.21^3^0.91^1.26^~2, 3~^~10/01/2002~ -~11339~^~212~^1.08^4^0.04^~1~^~A~^^^1^0.99^1.18^3^0.93^1.22^~2, 3~^~10/01/2002~ -~11339~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~255~^82.65^4^0.60^~1~^~A~^^^1^81.35^84.25^3^80.72^84.58^~2, 3~^~10/01/2002~ -~11339~^~269~^2.17^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11339~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11339~^~303~^0.30^4^0.17^~1~^~A~^^^1^0.00^0.72^3^-0.24^0.85^~1, 2, 3~^~10/01/2002~ -~11339~^~309~^0.06^4^0.02^~1~^~A~^^^1^0.02^0.12^3^-0.02^0.14^~1, 2, 3~^~10/01/2002~ -~11339~^~323~^1.40^2^^~1~^~A~^^^1^1.39^1.42^1^^^^~10/01/2002~ -~11339~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~10/01/2002~ -~11339~^~342~^7.55^2^^~1~^~A~^^^1^7.39^7.71^1^^^^~10/01/2002~ -~11339~^~343~^2.30^2^^~1~^~A~^^^1^1.96^2.63^1^^^^~10/01/2002~ -~11339~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11339~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11339~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11339~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11339~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11344~^~203~^7.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~204~^1.64^4^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~205~^23.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11344~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~255~^65.88^4^0.85^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~269~^3.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11344~^~303~^1.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~309~^1.04^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~323~^0.39^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11344~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11344~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11344~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11345~^~203~^5.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~204~^1.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~205~^19.49^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11345~^~207~^1.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~255~^71.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~269~^2.48^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11345~^~303~^1.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~309~^0.82^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11345~^~323~^0.32^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11345~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11349~^~203~^0.38^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~204~^0.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~205~^27.23^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11349~^~207~^0.61^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~255~^71.64^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~269~^0.39^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~303~^0.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~323~^2.30^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~ -~11349~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11349~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11349~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11350~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11350~^~207~^1.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~255~^91.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~303~^1.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~309~^0.24^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11351~^~203~^2.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~205~^3.10^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11351~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~255~^92.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~269~^1.60^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11351~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~309~^0.19^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~323~^0.85^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11351~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11352~^~203~^2.05^11^0.04^~1~^~A~^^^2^1.44^2.22^1^1.62^2.48^~2~^~09/01/2015~ -~11352~^~204~^0.09^11^0.01^~1~^~A~^^^2^0.08^0.20^1^-0.04^0.23^~1, 2~^~05/01/2002~ -~11352~^~205~^17.49^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11352~^~207~^1.11^11^0.09^~1~^~A~^^^2^0.70^1.38^1^0.30^1.91^~2~^~09/01/2015~ -~11352~^~209~^15.29^11^1.52^~1~^~A~^^^2^10.54^18.10^1^4.31^26.26^~2~^~09/01/2015~ -~11352~^~210~^0.17^11^0.02^~1~^~A~^^^2^0.08^0.33^1^-0.08^0.42^~1, 2~^~05/01/2002~ -~11352~^~211~^0.31^11^0.04^~1~^~A~^^^2^0.16^0.84^1^0.03^0.58^~1, 2~^~09/01/2015~ -~11352~^~212~^0.26^11^0.03^~1~^~A~^^^2^0.16^0.54^2^0.10^0.42^~1, 2~^~09/01/2015~ -~11352~^~213~^0.00^11^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~05/01/2002~ -~11352~^~214~^0.00^11^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~05/01/2002~ -~11352~^~255~^79.25^11^0.37^~1~^~A~^^^2^77.70^83.92^2^77.53^80.96^~2~^~09/01/2015~ -~11352~^~269~^0.82^5^^~1~^~A~^^^1^0.50^1.60^^^^~2~^~09/01/2015~ -~11352~^~287~^0.00^5^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~05/01/2002~ -~11352~^~303~^0.81^11^0.05^~1~^~A~^^^2^0.47^1.24^2^0.55^1.06^~2~^~09/01/2015~ -~11352~^~309~^0.30^11^3.0e-03^~1~^~A~^^^2^0.27^0.35^2^0.28^0.31^~2~^~09/01/2015~ -~11352~^~323~^0.01^2^^~1~^~A~^^^1^0.00^0.01^^^^~1~^~05/01/2002~ -~11352~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2002~ -~11352~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2002~ -~11352~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2002~ -~11352~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11353~^~203~^2.14^4^0.03^~1~^~A~^^^2^2.09^2.22^1^1.85^2.42^~2, 3~^~04/01/2002~ -~11353~^~204~^0.08^4^0.00^~1~^~A~^^^2^0.08^0.08^^^^~1, 2, 3~^~04/01/2002~ -~11353~^~205~^18.07^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11353~^~207~^1.13^4^0.03^~1~^~A~^^^2^0.94^1.27^1^0.73^1.52^~2, 3~^~04/01/2002~ -~11353~^~209~^15.86^4^0.31^~1~^~A~^^^2^13.35^18.10^2^13.99^17.71^~2, 3~^~04/01/2002~ -~11353~^~210~^0.13^4^9.0e-03^~1~^~A~^^^2^0.08^0.16^1^7.0e-03^0.24^~1, 2, 3~^~04/01/2002~ -~11353~^~211~^0.25^4^0.03^~1~^~A~^^^2^0.20^0.31^2^0.11^0.39^~2, 3~^~04/01/2002~ -~11353~^~212~^0.23^4^0.03^~1~^~A~^^^2^0.16^0.30^2^0.07^0.39^~1, 2, 3~^~04/01/2002~ -~11353~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11353~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11353~^~255~^78.58^4^0.43^~1~^~A~^^^2^77.70^79.74^2^76.28^80.87^~2, 3~^~04/01/2002~ -~11353~^~269~^0.62^2^^~1~^~A~^^^1^0.50^0.73^1^^^^~08/01/2002~ -~11353~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2002~ -~11353~^~303~^0.86^4^0.17^~1~^~A~^^^2^0.57^1.24^1^-0.86^2.58^~2, 3~^~04/01/2002~ -~11353~^~309~^0.29^4^6.0e-03^~1~^~A~^^^2^0.27^0.30^1^0.23^0.33^~2, 3~^~04/01/2002~ -~11353~^~323~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2002~ -~11353~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2002~ -~11353~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2002~ -~11353~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2002~ -~11353~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~11354~^~203~^1.68^3^0.07^~1~^~A~^^^2^1.54^1.86^1^0.70^2.65^~2, 3~^~05/01/2002~ -~11354~^~204~^0.10^3^0.00^~1~^~A~^^^2^0.08^0.14^^^^~1, 2, 3~^~05/01/2002~ -~11354~^~205~^15.71^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11354~^~207~^0.94^3^0.01^~1~^~A~^^^2^0.70^1.08^1^0.81^1.06^~2, 3~^~05/01/2002~ -~11354~^~209~^13.49^0^^~4~^~BFSN~^~11357~^^^^^^^^^~05/01/2002~ -~11354~^~210~^0.28^3^0.02^~1~^~A~^^^2^0.25^0.32^1^-0.01^0.57^~2, 3~^~05/01/2002~ -~11354~^~211~^0.53^3^0.01^~1~^~A~^^^2^0.35^0.84^1^0.31^0.74^~2, 3~^~05/01/2002~ -~11354~^~212~^0.34^3^0.01^~1~^~A~^^^2^0.25^0.49^1^0.17^0.51^~2, 3~^~05/01/2002~ -~11354~^~213~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11354~^~214~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11354~^~255~^81.58^3^1.09^~1~^~A~^^^2^80.18^83.92^1^67.64^95.51^~2, 3~^~05/01/2002~ -~11354~^~269~^1.15^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11354~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11354~^~303~^0.52^3^0.03^~1~^~A~^^^2^0.47^0.61^1^0.02^1.01^~2, 3~^~05/01/2002~ -~11354~^~309~^0.29^3^9.0e-03^~1~^~A~^^^2^0.27^0.31^1^0.18^0.40^~2, 3~^~05/01/2002~ -~11354~^~323~^0.01^0^^~4~^~BFSN~^~11353~^^^^^^^^^~05/01/2002~ -~11354~^~341~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~05/01/2002~ -~11354~^~342~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~05/01/2002~ -~11354~^~343~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~05/01/2002~ -~11354~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11355~^~203~^1.89^4^0.11^~1~^~A~^^^2^1.44^2.18^1^0.80^2.98^~2, 3~^~05/01/2002~ -~11355~^~204~^0.14^4^4.0e-03^~1~^~A~^^^2^0.08^0.20^1^0.08^0.18^~1, 2, 3~^~05/01/2002~ -~11355~^~205~^15.90^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11355~^~207~^1.10^4^0.08^~1~^~A~^^^2^0.87^1.38^2^0.69^1.50^~2, 3~^~05/01/2002~ -~11355~^~209~^13.35^4^0.09^~1~^~A~^^^2^10.54^16.20^2^12.90^13.78^~2, 3~^~05/01/2002~ -~11355~^~210~^0.29^4^0.01^~1~^~A~^^^2^0.26^0.33^1^0.13^0.43^~2, 3~^~05/01/2002~ -~11355~^~211~^0.40^4^0.05^~1~^~A~^^^2^0.16^0.67^2^0.10^0.69^~1, 2, 3~^~05/01/2002~ -~11355~^~212~^0.31^4^0.04^~1~^~A~^^^2^0.16^0.54^1^-0.13^0.76^~1, 2, 3~^~05/01/2002~ -~11355~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11355~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11355~^~255~^80.96^4^0.63^~1~^~A~^^^2^78.73^82.10^1^73.50^88.41^~2, 3~^~05/01/2002~ -~11355~^~269~^1.29^2^^~1~^~A~^^^1^1.09^1.49^1^^^^~08/01/2010~ -~11355~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2002~ -~11355~^~303~^0.73^4^0.09^~1~^~A~^^^2^0.47^1.12^1^-0.16^1.62^~2, 3~^~05/01/2002~ -~11355~^~309~^0.33^4^9.0e-03^~1~^~A~^^^2^0.31^0.35^1^0.24^0.42^~2, 3~^~05/01/2002~ -~11355~^~323~^0.01^0^^~4~^~BFSN~^~11353~^^^^^^^^^~08/01/2010~ -~11355~^~341~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~08/01/2010~ -~11355~^~342~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~08/01/2010~ -~11355~^~343~^0.00^0^^~4~^~BFSN~^~11353~^^^^^^^^^~08/01/2010~ -~11355~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~11356~^~203~^2.63^8^0.05^~1~^~A~^^^2^2.44^2.91^5^2.50^2.75^~2, 3~^~04/01/2002~ -~11356~^~204~^0.13^8^0.03^~1~^~A~^^^2^0.08^0.32^3^0.03^0.22^~1, 2, 3~^~04/01/2002~ -~11356~^~205~^21.44^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11356~^~207~^1.35^8^0.04^~1~^~A~^^^2^1.00^1.71^5^1.23^1.47^~2, 3~^~04/01/2002~ -~11356~^~209~^17.45^8^0.61^~1~^~A~^^^2^15.23^20.80^5^15.82^19.08^~2, 3~^~04/01/2002~ -~11356~^~210~^0.39^8^0.05^~1~^~A~^^^2^0.25^0.68^4^0.23^0.53^~2, 3~^~04/01/2002~ -~11356~^~211~^0.37^8^0.04^~1~^~A~^^^2^0.16^0.66^5^0.25^0.48^~1, 2, 3~^~04/01/2002~ -~11356~^~212~^0.32^8^0.03^~1~^~A~^^^2^0.16^0.60^4^0.21^0.42^~1, 2, 3~^~04/01/2002~ -~11356~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~255~^74.45^8^0.52^~1~^~A~^^^2^72.27^76.58^5^73.09^75.79^~2, 3~^~04/01/2002~ -~11356~^~269~^1.08^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11356~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11356~^~303~^1.07^8^0.10^~1~^~A~^^^2^0.77^1.52^6^0.80^1.32^~2, 3~^~04/01/2002~ -~11356~^~309~^0.35^8^0.02^~1~^~A~^^^2^0.27^0.44^6^0.29^0.39^~2, 3~^~04/01/2002~ -~11356~^~323~^0.07^6^7.0e-03^~1~^~A~^^^2^0.04^0.10^4^0.05^0.08^~2, 3~^~08/01/2010~ -~11356~^~341~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11356~^~342~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11356~^~343~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11356~^~418~^0.00^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11357~^~203~^2.10^5^0.12^~1~^~A~^^^2^1.86^2.42^3^1.69^2.50^~2, 3~^~05/01/2002~ -~11357~^~204~^0.15^5^7.0e-03^~1~^~A~^^^2^0.08^0.21^2^0.11^0.17^~1, 2, 3~^~05/01/2002~ -~11357~^~205~^21.08^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11357~^~207~^1.24^5^0.06^~1~^~A~^^^2^1.02^1.37^2^1.00^1.48^~2, 3~^~05/01/2002~ -~11357~^~209~^17.99^5^0.64^~1~^~A~^^^2^16.10^20.60^2^15.21^20.76^~2, 3~^~05/01/2002~ -~11357~^~210~^0.40^5^0.02^~1~^~A~^^^2^0.31^0.53^2^0.27^0.51^~2, 3~^~05/01/2002~ -~11357~^~211~^0.63^5^0.07^~1~^~A~^^^2^0.45^0.94^2^0.29^0.97^~2, 3~^~05/01/2002~ -~11357~^~212~^0.36^5^0.01^~1~^~A~^^^2^0.26^0.45^2^0.31^0.41^~2, 3~^~05/01/2002~ -~11357~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11357~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11357~^~255~^75.43^5^0.63^~1~^~A~^^^2^72.77^77.21^2^72.73^78.12^~2, 3~^~05/01/2002~ -~11357~^~269~^1.53^3^0.11^~1~^~A~^^^1^1.32^1.70^2^1.05^1.99^~2, 3~^~08/01/2010~ -~11357~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2002~ -~11357~^~303~^0.64^5^0.05^~1~^~A~^^^2^0.49^0.84^3^0.45^0.81^~2, 3~^~05/01/2002~ -~11357~^~309~^0.35^5^0.03^~1~^~A~^^^2^0.30^0.46^3^0.23^0.46^~2, 3~^~05/01/2002~ -~11357~^~323~^0.04^0^^~4~^~BFSN~^~11356~^^^^^^^^^~03/01/2006~ -~11357~^~341~^0.00^0^^~4~^~BFSN~^~11356~^^^^^^^^^~03/01/2006~ -~11357~^~342~^0.00^0^^~4~^~BFSN~^~11356~^^^^^^^^^~03/01/2006~ -~11357~^~343~^0.00^0^^~4~^~BFSN~^~11356~^^^^^^^^^~03/01/2006~ -~11357~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11358~^~203~^2.30^8^0.05^~1~^~A~^^^2^1.97^2.68^4^2.15^2.44^~2, 3~^~04/01/2002~ -~11358~^~204~^0.15^8^0.01^~1~^~A~^^^2^0.08^0.26^3^0.11^0.18^~1, 2, 3~^~04/01/2002~ -~11358~^~205~^19.59^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11358~^~207~^1.29^8^0.05^~1~^~A~^^^2^0.94^1.65^6^1.16^1.41^~2, 3~^~04/01/2002~ -~11358~^~209~^15.15^8^0.32^~1~^~A~^^^2^13.31^17.40^6^14.34^15.96^~2, 3~^~04/01/2002~ -~11358~^~210~^0.45^8^0.04^~1~^~A~^^^2^0.29^0.69^5^0.32^0.57^~2, 3~^~04/01/2002~ -~11358~^~211~^0.55^8^0.05^~1~^~A~^^^2^0.16^0.99^4^0.40^0.68^~1, 2, 3~^~04/01/2002~ -~11358~^~212~^0.44^8^0.05^~1~^~A~^^^2^0.16^0.82^3^0.27^0.59^~1, 2, 3~^~04/01/2002~ -~11358~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~255~^76.67^8^0.26^~1~^~A~^^^2^75.29^78.13^6^76.00^77.34^~2, 3~^~04/01/2002~ -~11358~^~269~^1.43^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11358~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2002~ -~11358~^~303~^0.70^8^0.04^~1~^~A~^^^2^0.52^1.00^5^0.59^0.81^~2, 3~^~04/01/2002~ -~11358~^~309~^0.40^8^0.01^~1~^~A~^^^2^0.31^0.48^3^0.34^0.45^~2, 3~^~04/01/2002~ -~11358~^~323~^0.08^4^0.01^~1~^~A~^^^2^0.07^0.11^1^-0.04^0.20^~2, 3~^~08/01/2010~ -~11358~^~341~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~342~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~343~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~344~^0.01^4^0.00^~1~^~A~^^^2^0.01^0.01^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~346~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~11358~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~11359~^~203~^2.34^10^0.08^~1~^~A~^^^2^1.80^2.85^7^2.14^2.54^~2, 3~^~07/01/2013~ -~11359~^~204~^4.99^9^0.33^~1~^~A~^^^2^3.40^6.12^4^3.99^5.98^~2, 3~^~07/01/2013~ -~11359~^~205~^23.96^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~11359~^~207~^1.59^10^0.10^~1~^~A~^^^2^1.01^2.02^8^1.34^1.83^~2, 3~^~07/01/2013~ -~11359~^~209~^17.71^2^^~1~^~A~^^^1^16.69^18.74^1^^^^~03/01/2005~ -~11359~^~210~^0.14^2^^~1~^~A~^^^1^0.13^0.15^1^^^^~03/01/2005~ -~11359~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~03/01/2005~ -~11359~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~255~^67.11^9^0.72^~1~^~A~^^^2^64.43^70.94^6^65.36^68.85^~2, 3~^~07/01/2013~ -~11359~^~269~^0.21^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11359~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~303~^0.62^10^0.06^~1~^~A~^^^2^0.28^0.85^7^0.47^0.76^~2, 3~^~07/01/2013~ -~11359~^~309~^0.34^2^^~1~^~A~^^^1^0.33^0.34^1^^^^~03/01/2005~ -~11359~^~323~^0.10^2^^~1~^~A~^^^1^0.08^0.13^1^^^^~03/01/2005~ -~11359~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~03/01/2005~ -~11359~^~342~^0.36^2^^~1~^~A~^^^1^0.22^0.51^1^^^^~03/01/2005~ -~11359~^~343~^0.47^2^^~1~^~A~^^^1^0.37^0.56^1^^^^~03/01/2005~ -~11359~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~03/01/2005~ -~11359~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11359~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11360~^~203~^2.51^2^^~1~^~A~^^^1^2.46^2.56^^^^^~03/01/2005~ -~11360~^~204~^5.13^2^^~1~^~A~^^^1^4.37^5.89^^^^^~03/01/2005~ -~11360~^~205~^27.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~207~^1.79^2^^~1~^~A~^^^1^1.66^1.92^^^^^~03/01/2005~ -~11360~^~209~^19.99^2^^~1~^~A~^^^1^19.68^20.30^^^^^~03/01/2005~ -~11360~^~210~^0.17^2^^~1~^~A~^^^1^0.17^0.18^^^^^~03/01/2005~ -~11360~^~211~^0.12^2^^~1~^~A~^^^1^0.07^0.17^^^^~1~^~03/01/2005~ -~11360~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~255~^63.07^2^^~1~^~A~^^^1^61.81^64.34^^^^^~03/01/2005~ -~11360~^~269~^0.29^2^^~1~^~A~^^^1^0.24^0.35^^^^^~03/01/2005~ -~11360~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~303~^0.75^50^0.04^~6~^~JA~^^^6^0.46^1.18^5^0.64^0.86^~2~^~03/01/2005~ -~11360~^~309~^0.40^50^0.02^~6~^~JA~^^^6^0.24^0.61^5^0.33^0.46^~2~^~03/01/2005~ -~11360~^~323~^0.10^2^^~1~^~A~^^^1^0.09^0.12^^^^^~03/01/2005~ -~11360~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^^^^~1~^~03/01/2005~ -~11360~^~342~^0.39^2^^~1~^~A~^^^1^0.26^0.53^^^^^~03/01/2005~ -~11360~^~343~^0.50^2^^~1~^~A~^^^1^0.43^0.58^^^^^~03/01/2005~ -~11360~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^^^^~1~^~03/01/2005~ -~11360~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11360~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11361~^~203~^2.22^3^0.03^~1~^~A~^^^1^2.17^2.29^2^2.07^2.37^~2, 3~^~04/01/2013~ -~11361~^~204~^1.81^3^0.65^~1~^~A~^^^1^1.08^3.11^2^-0.98^4.61^~2, 3~^~04/01/2013~ -~11361~^~205~^26.15^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11361~^~207~^1.73^3^0.25^~1~^~A~^^^1^1.47^2.23^2^0.65^2.80^~2, 3~^~04/01/2013~ -~11361~^~255~^68.08^3^0.43^~1~^~A~^^^1^67.25^68.69^2^66.22^69.93^~2, 3~^~04/01/2013~ -~11361~^~269~^0.69^3^0.14^~1~^~A~^^^1^0.49^0.97^2^0.06^1.31^~2, 3~^~04/01/2013~ -~11361~^~303~^0.50^3^0.08^~1~^~A~^^^1^0.40^0.67^2^0.14^0.86^~2, 3~^~04/01/2013~ -~11362~^~203~^2.57^4^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~205~^12.44^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11362~^~207~^1.61^4^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~255~^83.29^6^0.36^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~303~^3.24^6^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~309~^0.35^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11363~^~203~^1.96^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~205~^21.55^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11363~^~207~^0.97^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~255~^75.42^6^1.20^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~269~^1.70^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11363~^~303~^0.35^6^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~309~^0.29^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11363~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11363~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11363~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11364~^~203~^4.29^4^0.27^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~205~^46.06^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11364~^~207~^2.24^4^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~255~^47.31^6^1.89^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~269~^1.40^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11364~^~303~^7.04^6^1.90^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~309~^0.49^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11364~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11364~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11364~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11365~^~203~^1.87^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~205~^20.13^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11365~^~207~^0.92^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~210~^0.19^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2005~ -~11365~^~211~^0.34^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11365~^~212~^0.29^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11365~^~213~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2006~ -~11365~^~214~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2006~ -~11365~^~255~^76.98^6^0.91^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~269~^0.91^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11365~^~287~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2006~ -~11365~^~303~^0.31^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~309~^0.30^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~323~^0.01^0^^~4~^~BFSN~^~11352~^^^^^^^^^~10/01/2002~ -~11365~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11365~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11365~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11366~^~203~^2.86^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~205~^17.21^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11366~^~207~^2.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~255~^77.80^5^1.79^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~303~^6.07^5^0.31^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~309~^0.44^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11367~^~203~^1.71^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~205~^20.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~11367~^~207~^0.72^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~210~^0.18^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~211~^0.33^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~212~^0.28^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~213~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~214~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~255~^77.46^6^1.12^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~269~^0.89^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11367~^~287~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~303~^0.31^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~309~^0.27^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~323~^0.01^0^^~4~^~BFSN~^~11352~^^^^^^^^^~10/01/2002~ -~11367~^~341~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~342~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~343~^0.00^0^^~4~^~BFSN~^~11352~^^^^^^^^^~02/01/2007~ -~11367~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11368~^~203~^2.10^4^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~205~^23.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11368~^~207~^0.97^4^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~255~^73.55^5^1.23^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~303~^0.41^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~309~^0.33^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11369~^~203~^4.39^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~205~^29.63^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11369~^~207~^2.38^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~255~^63.50^5^1.03^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~303~^5.94^5^0.44^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~309~^0.51^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11370~^~203~^3.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~204~^12.52^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~205~^35.11^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~207~^2.12^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~210~^0.33^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~211~^0.64^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~212~^0.52^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~213~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~214~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~255~^47.25^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~269~^1.49^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~287~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~303~^0.55^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~309~^0.47^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~323~^0.01^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~342~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11371~^~203~^1.96^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~204~^4.20^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~205~^16.94^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11371~^~207~^1.65^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~210~^0.16^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11371~^~211~^0.30^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11371~^~212~^0.24^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11371~^~213~^0.71^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~255~^75.25^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~269~^1.41^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~303~^0.26^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~309~^0.30^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~323~^0.42^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~342~^1.99^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~343~^0.69^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~418~^0.07^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11371~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11372~^~203~^2.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~204~^3.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~205~^10.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11372~^~207~^1.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~255~^80.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~309~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11373~^~203~^5.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~204~^7.59^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~205~^11.26^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11373~^~207~^2.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~255~^74.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~303~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~309~^0.69^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11374~^~203~^1.20^66^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~204~^0.11^64^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~205~^9.89^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11374~^~207~^0.98^65^0.05^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~255~^87.83^65^0.23^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~303~^0.72^65^0.05^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11374~^~309~^0.39^23^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11376~^~203~^1.41^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~204~^0.21^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~205~^13.61^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11376~^~207~^0.86^5^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~255~^84.28^5^0.67^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~303~^1.26^5^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~309~^0.28^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11378~^~203~^8.34^20^0.14^~6~^~JA~^^^2^8.19^8.35^18^8.03^8.65^~2, 3~^~03/01/2006~ -~11378~^~204~^0.41^16^0.13^~6~^~JA~^^^2^0.39^0.76^14^0.11^0.71^~2, 3~^~03/01/2006~ -~11378~^~205~^81.17^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~207~^3.50^15^0.10^~6~^~JA~^^^2^2.96^3.54^13^3.27^3.72^~2, 3~^~03/01/2006~ -~11378~^~209~^70.60^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~210~^0.99^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~211~^0.89^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~212~^0.98^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~214~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~255~^6.58^27^0.50^~6~^~JA~^^^2^6.51^8.36^25^5.54^7.61^~2, 3~^~03/01/2006~ -~11378~^~269~^3.36^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11378~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~303~^1.21^24^0.12^~6~^~JA~^^^2^1.20^1.36^22^0.95^1.45^~2, 3~^~03/01/2006~ -~11378~^~309~^0.70^11^0.03^~6~^~JA~^^^2^0.68^0.94^9^0.61^0.79^~2, 3~^~03/01/2006~ -~11378~^~323~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11378~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11378~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11379~^~203~^1.77^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~204~^5.13^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~205~^10.87^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~207~^1.03^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~209~^8.49^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~210~^0.12^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~211~^0.11^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~212~^0.12^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~213~^1.16^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~214~^0.06^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~255~^81.20^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~269~^1.61^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2006~ -~11379~^~303~^0.16^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~309~^0.18^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~323~^0.14^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~418~^0.11^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11380~^~203~^8.22^14^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~204~^0.54^14^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~205~^85.51^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11380~^~207~^2.10^13^0.46^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~210~^1.02^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~211~^0.92^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~212~^1.01^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~213~^0.00^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~214~^0.52^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~255~^3.63^12^0.79^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~269~^3.47^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~287~^0.00^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~303~^1.09^15^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~309~^0.91^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~323~^0.27^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11380~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11381~^~203~^2.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~204~^4.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~205~^14.36^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11381~^~207~^1.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~255~^77.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~303~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~309~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11382~^~203~^10.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~204~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~205~^77.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11382~^~207~^4.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~255~^6.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~269~^3.37^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~303~^3.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~309~^1.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~323~^0.03^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11382~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11382~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11383~^~203~^2.13^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~204~^4.80^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~205~^16.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11383~^~207~^0.93^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~210~^0.18^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~211~^0.16^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~212~^0.18^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~213~^1.09^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~214~^0.09^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~255~^76.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~269~^1.74^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~287~^0.00^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~303~^0.20^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~309~^0.24^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~323~^0.51^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~341~^0.02^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~342~^2.18^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~343~^0.76^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~418~^0.10^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11384~^~203~^8.90^3^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~204~^3.70^3^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~205~^74.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11384~^~207~^8.12^3^0.42^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~255~^4.97^3^0.75^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~303~^1.63^3^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~309~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11385~^~203~^2.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~204~^4.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~205~^12.84^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11385~^~207~^1.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~255~^78.98^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~303~^0.32^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11386~^~203~^7.77^3^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~204~^4.59^3^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~205~^73.93^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11386~^~207~^7.49^3^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~255~^6.22^3^0.31^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~303~^2.01^3^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~309~^0.92^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11387~^~203~^2.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~204~^4.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~205~^12.77^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11387~^~207~^1.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~255~^79.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~309~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11390~^~203~^2.06^37^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~204~^0.62^183^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~205~^17.72^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11390~^~207~^0.75^97^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~255~^78.85^123^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~303~^0.98^109^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~309~^0.21^4^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11391~^~203~^2.65^9^0.22^~1~^~A~^^^1^2.34^2.71^1^-0.18^5.47^~4~^~02/01/2013~ -~11391~^~204~^11.59^9^4.52^~1~^~A~^^^1^5.30^12.78^1^-45.90^69.07^~4~^~02/01/2013~ -~11391~^~205~^28.51^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~207~^1.30^9^0.12^~1~^~A~^^^1^1.12^1.34^1^-0.33^2.94^~4~^~02/01/2013~ -~11391~^~209~^24.57^6^1.87^~1~^~A~^^^1^21.97^25.07^1^0.75^48.38^~4~^~02/01/2013~ -~11391~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~211~^0.26^9^0.02^~1~^~A~^^^1^0.22^0.28^2^0.14^0.38^~1, 4~^~02/01/2013~ -~11391~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~255~^55.95^9^7.56^~1~^~A~^^^1^53.95^66.47^1^-40.21^152.11^~4~^~02/01/2013~ -~11391~^~269~^0.27^6^0.04^~1~^~A~^^^1^0.22^0.28^1^-0.24^0.78^~4~^~02/01/2013~ -~11391~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~303~^0.54^9^0.04^~1~^~A~^^^1^0.48^0.55^1^4.0e-03^1.08^~4~^~02/01/2013~ -~11391~^~309~^0.38^9^0.05^~1~^~A~^^^1^0.30^0.40^1^-0.34^1.10^~4~^~02/01/2013~ -~11391~^~323~^2.19^6^0.85^~1~^~A~^^^1^1.00^2.42^1^-8.70^13.09^~4~^~02/01/2013~ -~11391~^~341~^0.04^9^2.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.04^~1, 4~^~02/01/2013~ -~11391~^~342~^3.92^6^1.52^~1~^~A~^^^1^1.80^4.33^1^-15.46^23.30^~4~^~02/01/2013~ -~11391~^~343~^0.16^6^0.05^~1~^~A~^^^1^0.08^0.17^1^-0.53^0.84^~4~^~02/01/2013~ -~11391~^~344~^0.01^9^9.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.03^0.04^~1, 4~^~02/01/2013~ -~11391~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~346~^0.00^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^1^-9.0e-03^0.01^~1, 4~^~02/01/2013~ -~11391~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~02/01/2013~ -~11391~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11391~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11391~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11392~^~203~^1.87^11^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~204~^6.66^11^0.50^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~205~^18.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11392~^~207~^0.69^11^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~255~^72.51^11^0.57^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~303~^0.75^11^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~309~^0.25^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11393~^~203~^2.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~204~^8.79^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~205~^24.13^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11393~^~207~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~255~^63.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~303~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11394~^~203~^2.16^3^0.25^~1~^~A~^^^2^1.91^2.41^1^-1.03^5.35^~2~^~05/01/2013~ -~11394~^~204~^6.24^3^0.71^~1~^~A~^^^2^5.29^6.96^1^-2.85^15.34^~2~^~05/01/2013~ -~11394~^~205~^25.59^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11394~^~207~^1.50^3^0.08^~1~^~A~^^^2^1.24^1.92^1^0.40^2.58^~2~^~05/01/2013~ -~11394~^~209~^17.07^2^^~1~^~A~^^^1^16.72^17.43^^^^^~03/01/2005~ -~11394~^~210~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~03/01/2005~ -~11394~^~211~^0.12^2^^~1~^~A~^^^1^0.07^0.17^^^^~1~^~03/01/2005~ -~11394~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~11394~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~255~^64.51^3^0.81^~1~^~A~^^^2^63.16^65.33^1^54.14^74.88^~2~^~05/01/2013~ -~11394~^~269~^0.20^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~11394~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~303~^0.72^3^0.10^~1~^~A~^^^2^0.60^0.83^1^-0.65^2.09^~2~^~05/01/2013~ -~11394~^~309~^0.36^2^^~1~^~A~^^^1^0.34^0.37^^^^^~03/01/2005~ -~11394~^~323~^0.12^2^^~1~^~A~^^^1^0.08^0.16^^^^^~03/01/2005~ -~11394~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~03/01/2005~ -~11394~^~342~^0.40^2^^~1~^~A~^^^1^0.21^0.60^^^^^~03/01/2005~ -~11394~^~343~^0.56^2^^~1~^~A~^^^1^0.36^0.76^^^^^~03/01/2005~ -~11394~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^^^^~1~^~03/01/2005~ -~11394~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11394~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11394~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11395~^~203~^2.90^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~204~^6.76^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~205~^31.66^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~207~^2.07^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~209~^23.15^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~210~^0.21^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~211~^0.10^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~212~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~213~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~255~^56.62^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~269~^0.31^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~303~^0.80^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~309~^0.43^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~323~^0.16^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~341~^0.01^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~342~^0.49^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~343~^0.65^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~344~^0.01^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11396~^~203~^1.83^16^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~204~^0.14^16^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~205~^17.47^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11396~^~207~^0.60^16^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~255~^79.97^15^0.58^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~303~^1.03^16^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~309~^0.29^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11397~^~203~^2.22^9^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~204~^13.21^9^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~205~^21.86^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11397~^~207~^0.75^9^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~255~^61.96^9^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~303~^0.96^9^0.23^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~309~^0.55^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11398~^~203~^1.93^12^0.05^~1~^~A~^^^1^1.62^2.25^6^1.80^2.06^~2, 3~^~08/01/2014~ -~11398~^~204~^8.71^12^0.33^~1~^~A~^^^1^7.37^10.54^6^7.88^9.54^~2, 3~^~08/01/2014~ -~11398~^~205~^24.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11398~^~207~^1.75^12^0.03^~1~^~A~^^^1^1.29^1.91^9^1.67^1.81^~2, 3~^~07/01/2012~ -~11398~^~209~^21.58^6^0.18^~1~^~A~^^^1^21.20^22.20^3^20.98^22.18^~2, 3~^~08/01/2014~ -~11398~^~210~^0.13^6^0.02^~1~^~A~^^^1^0.10^0.20^2^0.01^0.23^~2, 3~^~08/01/2014~ -~11398~^~211~^0.16^6^0.02^~1~^~A~^^^1^0.10^0.20^2^0.06^0.25^~2, 3~^~08/01/2014~ -~11398~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11398~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11398~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11398~^~255~^62.80^12^0.23^~1~^~A~^^^1^61.51^63.93^7^62.24^63.36^~2, 3~^~08/01/2014~ -~11398~^~269~^0.28^6^0.04^~1~^~A~^^^1^0.20^0.40^2^0.10^0.46^~2, 3~^~08/01/2014~ -~11398~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11398~^~303~^0.47^12^0.01^~1~^~A~^^^1^0.40^0.61^9^0.44^0.49^~2, 3~^~08/01/2014~ -~11398~^~309~^0.26^12^0.01^~1~^~A~^^^1^0.18^0.35^6^0.22^0.28^~2, 3~^~08/01/2014~ -~11398~^~323~^0.11^0^^~4~^~BFSN~^~11402~^^^^^^^^^~08/01/2014~ -~11398~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11398~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11398~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11399~^~203~^2.13^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~204~^9.05^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~205~^27.29^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11399~^~207~^1.89^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~209~^22.64^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~210~^0.08^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~211~^0.19^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~255~^59.65^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~269~^0.27^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~303~^0.58^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~309~^0.30^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~323~^0.26^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~341~^0.01^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~342~^1.21^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~343~^1.14^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~344~^0.02^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11399~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11399~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11401~^~203~^1.98^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~205~^14.52^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11401~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~255~^82.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~303~^0.84^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~309~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11402~^~203~^2.24^6^0.07^~1~^~A~^^^1^1.98^2.41^5^2.04^2.44^~2, 3~^~03/01/2005~ -~11402~^~204~^4.66^6^0.49^~1~^~A~^^^1^3.31^6.12^5^3.37^5.93^~2, 3~^~03/01/2005~ -~11402~^~205~^24.81^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~207~^1.68^6^0.13^~1~^~A~^^^1^1.24^2.02^5^1.32^2.02^~2, 3~^~03/01/2005~ -~11402~^~209~^17.39^6^0.30^~1~^~A~^^^1^16.69^18.74^5^16.60^18.16^~2, 3~^~03/01/2005~ -~11402~^~210~^0.10^6^0.01^~1~^~A~^^^1^0.07^0.15^5^0.06^0.14^~1, 2, 3~^~03/01/2005~ -~11402~^~211~^0.10^6^0.01^~1~^~A~^^^1^0.07^0.17^5^0.05^0.14^~1, 2, 3~^~03/01/2005~ -~11402~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~255~^66.61^6^1.05^~1~^~A~^^^1^63.16^69.93^5^63.89^69.33^~2, 3~^~03/01/2005~ -~11402~^~269~^0.20^5^0.02^~1~^~A~^^^1^0.15^0.25^4^0.13^0.25^~2, 3~^~03/01/2005~ -~11402~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~303~^0.62^6^0.03^~1~^~A~^^^1^0.54^0.77^5^0.53^0.71^~2, 3~^~03/01/2005~ -~11402~^~309~^0.35^6^5.0e-03^~1~^~A~^^^1^0.33^0.37^5^0.33^0.36^~2, 3~^~03/01/2005~ -~11402~^~323~^0.10^6^0.01^~1~^~A~^^^1^0.05^0.16^5^0.05^0.14^~2, 3~^~03/01/2005~ -~11402~^~341~^0.01^6^3.0e-03^~1~^~A~^^^1^0.00^0.01^5^-1.0e-03^0.01^~1, 2, 3~^~03/01/2005~ -~11402~^~342~^0.31^6^0.08^~1~^~A~^^^1^0.10^0.60^5^0.10^0.51^~2, 3~^~03/01/2005~ -~11402~^~343~^0.43^6^0.08^~1~^~A~^^^1^0.24^0.76^5^0.22^0.63^~2, 3~^~03/01/2005~ -~11402~^~344~^0.02^6^8.0e-03^~1~^~A~^^^1^0.00^0.04^5^4.0e-03^0.04^~1, 2, 3~^~03/01/2005~ -~11402~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11402~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~11403~^~203~^2.75^13^0.02^~1~^~A~^^^1^2.19^2.94^10^2.69^2.81^~2, 3~^~08/01/2014~ -~11403~^~204~^5.48^13^0.07^~1~^~A~^^^1^3.49^6.85^10^5.30^5.64^~2, 3~^~08/01/2014~ -~11403~^~205~^25.55^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~207~^1.77^13^0.04^~1~^~A~^^^1^0.91^2.03^9^1.67^1.87^~2, 3~^~08/01/2014~ -~11403~^~209~^23.20^6^0.42^~1~^~A~^^^1^21.40^25.80^4^22.03^24.37^~2, 3~^~08/01/2014~ -~11403~^~210~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~08/01/2014~ -~11403~^~211~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~08/01/2014~ -~11403~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~255~^64.44^12^0.30^~1~^~A~^^^1^60.21^69.75^9^63.75^65.12^~2, 3~^~08/01/2014~ -~11403~^~269~^0.37^3^0.00^~1~^~A~^^^1^0.37^0.37^^^^~2, 3~^~08/01/2014~ -~11403~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~303~^0.57^13^0.01^~1~^~A~^^^1^0.42^0.70^9^0.54^0.59^~2, 3~^~08/01/2014~ -~11403~^~309~^0.35^13^4.0e-03^~1~^~A~^^^1^0.32^0.43^9^0.34^0.36^~2, 3~^~08/01/2014~ -~11403~^~323~^0.39^3^0.08^~1~^~A~^^^1^0.26^0.56^2^7.0e-03^0.76^~2, 3~^~08/01/2014~ -~11403~^~341~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.09^~1, 2, 3~^~08/01/2014~ -~11403~^~342~^0.64^3^0.07^~1~^~A~^^^1^0.54^0.79^2^0.30^0.97^~2, 3~^~08/01/2014~ -~11403~^~343~^0.25^3^0.13^~1~^~A~^^^1^0.00^0.45^2^-0.31^0.82^~1, 2, 3~^~08/01/2014~ -~11403~^~344~^0.04^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.12^0.20^~1, 2, 3~^~08/01/2014~ -~11403~^~345~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.10^~1, 2, 3~^~08/01/2014~ -~11403~^~346~^0.07^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.08^0.21^~1, 2, 3~^~08/01/2014~ -~11403~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11403~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11403~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11406~^~203~^2.42^13^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~204~^5.78^13^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~205~^23.98^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11406~^~207~^1.01^13^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~255~^66.82^13^0.84^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~303~^1.05^13^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~309~^0.29^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11407~^~203~^3.44^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~204~^8.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~205~^34.03^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11407~^~207~^1.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~255~^52.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~309~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11408~^~203~^2.83^17^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~204~^14.95^17^0.72^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~205~^30.15^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11408~^~207~^2.13^17^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~255~^49.94^17^1.46^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~303~^1.32^16^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~309~^0.33^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11409~^~203~^3.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~204~^18.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~205~^39.68^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~11409~^~207~^2.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~255~^35.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~303~^1.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~309~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11410~^~203~^2.70^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~204~^2.20^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~205~^25.46^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11410~^~207~^1.34^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~255~^68.30^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~269~^0.30^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~303~^0.70^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~309~^0.37^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~418~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11411~^~203~^2.19^2^^~1~^~A~^^^1^1.98^2.41^^^^^~03/01/2005~ -~11411~^~204~^3.39^2^^~1~^~A~^^^1^3.31^3.47^^^^^~03/01/2005~ -~11411~^~205~^23.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~207~^1.61^2^^~1~^~A~^^^1^1.32^1.91^^^^^~03/01/2005~ -~11411~^~209~^17.37^2^^~1~^~A~^^^1^17.33^17.42^^^^^~03/01/2005~ -~11411~^~210~^0.10^2^^~1~^~A~^^^1^0.07^0.12^^^^~1~^~03/01/2005~ -~11411~^~211~^0.10^2^^~1~^~A~^^^1^0.07^0.13^^^^~1~^~03/01/2005~ -~11411~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~255~^69.29^2^^~1~^~A~^^^1^68.65^69.93^^^^^~03/01/2005~ -~11411~^~269~^0.20^2^^~1~^~A~^^^1^0.15^0.25^^^^^~03/01/2005~ -~11411~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~303~^0.65^2^^~1~^~A~^^^1^0.54^0.77^^^^^~03/01/2005~ -~11411~^~309~^0.36^2^^~1~^~A~^^^1^0.35^0.36^^^^^~03/01/2005~ -~11411~^~323~^0.08^2^^~1~^~A~^^^1^0.05^0.10^^^^^~03/01/2005~ -~11411~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~342~^0.15^2^^~1~^~A~^^^1^0.10^0.21^^^^^~03/01/2005~ -~11411~^~343~^0.26^2^^~1~^~A~^^^1^0.24^0.29^^^^^~03/01/2005~ -~11411~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.04^^^^^~03/01/2005~ -~11411~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11411~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11412~^~203~^2.57^2^^~1~^~A~^^^1^2.51^2.63^^^^^~03/01/2005~ -~11412~^~204~^3.76^2^^~1~^~A~^^^1^3.54^3.98^^^^^~03/01/2005~ -~11412~^~205~^26.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11412~^~207~^1.84^2^^~1~^~A~^^^1^1.39^2.29^^^^^~03/01/2005~ -~11412~^~209~^17.26^2^^~1~^~A~^^^1^13.86^20.67^^^^^~03/01/2005~ -~11412~^~210~^0.15^2^^~1~^~A~^^^1^0.11^0.19^^^^^~03/01/2005~ -~11412~^~211~^0.10^2^^~1~^~A~^^^1^0.07^0.12^^^^~1~^~03/01/2005~ -~11412~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~255~^64.85^2^^~1~^~A~^^^1^62.91^66.78^^^^^~03/01/2005~ -~11412~^~269~^0.25^2^^~1~^~A~^^^1^0.19^0.30^^^^^~03/01/2005~ -~11412~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~303~^0.64^2^^~1~^~A~^^^1^0.60^0.69^^^^^~03/01/2005~ -~11412~^~309~^0.41^2^^~1~^~A~^^^1^0.40^0.41^^^^^~03/01/2005~ -~11412~^~323~^0.08^2^^~1~^~A~^^^1^0.06^0.10^^^^^~03/01/2005~ -~11412~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~342~^0.19^2^^~1~^~A~^^^1^0.14^0.23^^^^^~03/01/2005~ -~11412~^~343~^0.31^2^^~1~^~A~^^^1^0.31^0.32^^^^^~03/01/2005~ -~11412~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.05^^^^^~03/01/2005~ -~11412~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~11412~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~11413~^~203~^6.90^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~204~^0.34^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~205~^83.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11413~^~207~^3.14^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~255~^6.52^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~269~^3.52^0^^~4~^~BFSN~^~11367~^^^^^^^^^~10/01/2002~ -~11413~^~303~^1.38^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~309~^0.54^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~11413~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11413~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11413~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11414~^~203~^2.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~204~^8.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~205~^11.17^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11414~^~207~^1.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~255~^76.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~303~^0.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~309~^0.31^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11416~^~203~^1.03^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~204~^0.07^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~205~^3.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11416~^~207~^0.48^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~255~^95.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11417~^~203~^1.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~205~^3.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11417~^~207~^0.33^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~255~^95.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~269~^2.40^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11417~^~303~^0.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~309~^0.10^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11417~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11417~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11417~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11417~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11418~^~203~^3.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~205~^2.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11418~^~207~^1.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~255~^92.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~303~^2.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11419~^~203~^2.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~204~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11419~^~207~^1.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~255~^92.51^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~269~^0.69^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11419~^~303~^3.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~323~^0.96^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11419~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11419~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11419~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11422~^~203~^1.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~205~^6.50^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11422~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~255~^91.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~269~^2.76^0^^~4~^~BFSN~^~11424~^^^^^^^^^~07/01/2012~ -~11422~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~309~^0.32^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~323~^1.06^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11422~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11423~^~203~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~205~^4.90^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11423~^~207~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~255~^93.69^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~269~^2.08^0^^~4~^~BFSN~^~11422~^^^^^^^^^~07/01/2012~ -~11423~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~323~^0.80^0^^~4~^~BFSN~^~11422~^^^^^^^^^~01/01/2003~ -~11423~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11423~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11423~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11424~^~203~^1.10^89^0.04^~1~^^^^^^^^^^^~05/01/2003~ -~11424~^~204~^0.28^82^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~205~^8.09^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11424~^~207~^0.56^111^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~255~^89.97^94^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~269~^3.30^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~11424~^~303~^1.39^106^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~309~^0.17^15^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~323~^1.06^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~11424~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11426~^~203~^1.09^16^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~204~^0.13^16^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~205~^26.39^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11426~^~207~^0.91^16^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~255~^71.49^16^0.53^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~303~^1.06^15^0.23^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~309~^0.27^12^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11427~^~203~^2.03^2^^~6~^~JA~^^^2^1.30^2.30^1^^^^~08/01/2012~ -~11427~^~204~^0.36^2^^~6~^~JA~^^^2^0.10^0.38^1^^^^~08/01/2012~ -~11427~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11427~^~207~^1.36^2^^~6~^~JA~^^^2^1.09^1.63^1^^^^~08/01/2012~ -~11427~^~255~^92.86^3^0.12^~6~^~JA~^^^2^92.14^93.92^1^91.25^94.47^~2, 3~^~08/01/2012~ -~11427~^~303~^1.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11428~^~203~^1.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~204~^0.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~205~^3.55^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11428~^~207~^1.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~255~^93.52^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~303~^0.77^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11429~^~203~^0.68^19^0.06^~11~^~JO~^^^3^0.30^1.51^18^0.53^0.81^~4~^~12/01/2002~ -~11429~^~204~^0.10^14^0.01^~6~^~JA~^^^3^0.07^0.20^13^0.08^0.12^~4~^~12/01/2002~ -~11429~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11429~^~207~^0.55^19^0.01^~6~^~JA~^^^3^0.40^0.68^18^0.51^0.58^~4~^~12/01/2002~ -~11429~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~210~^0.10^10^0.08^~6~^~JA~^^^4^0.00^0.81^9^-0.08^0.28^~4~^~03/01/2006~ -~11429~^~211~^1.05^13^0.09^~6~^~JA~^^^5^0.64^1.60^12^0.85^1.25^~4~^~03/01/2006~ -~11429~^~212~^0.71^13^0.04^~6~^~JA~^^^5^0.30^0.89^12^0.61^0.80^~4~^~03/01/2006~ -~11429~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11429~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11429~^~255~^95.27^21^0.22^~6~^~JA~^^^4^93.10^96.95^20^94.79^95.74^~4~^~12/01/2002~ -~11429~^~269~^1.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11429~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2006~ -~11429~^~303~^0.34^24^0.03^~6~^~JA~^^^3^0.15^0.80^17^0.26^0.41^~4~^~12/01/2002~ -~11429~^~309~^0.28^25^0.08^~6~^~JA~^^^3^0.10^1.81^18^0.10^0.46^~4~^~12/01/2002~ -~11429~^~323~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~2, 3~^~12/01/2002~ -~11429~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~344~^0.02^4^6.0e-03^~1~^~A~^^^1^0.01^0.04^3^2.0e-03^0.04^~2, 3~^~12/01/2002~ -~11429~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~12/01/2002~ -~11429~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11429~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11429~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11430~^~203~^0.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~205~^4.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11430~^~207~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~255~^94.62^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~269~^2.50^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11430~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~309~^0.15^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~323~^0.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11430~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11430~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11430~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11431~^~203~^0.67^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~204~^0.24^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~205~^3.43^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11431~^~207~^0.62^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~255~^95.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~269~^1.83^0^^~4~^~O~^~11430~^^^^^^^^^~02/01/2007~ -~11431~^~303~^0.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~309~^0.13^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~323~^0.00^0^^~4~^~BFSN~^~11430~^^^^^^^^^~01/01/2003~ -~11431~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11431~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11431~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11432~^~203~^7.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~204~^0.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~205~^63.37^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11432~^~207~^8.33^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~255~^19.68^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~269~^37.32^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~303~^6.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~309~^2.13^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~323~^0.01^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11435~^~203~^1.08^2^^~6~^~JA~^^^2^0.95^1.20^^^^^~08/01/2012~ -~11435~^~204~^0.16^2^^~6~^~JA~^^^2^0.12^0.20^^^^^~08/01/2012~ -~11435~^~205~^8.62^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11435~^~207~^0.71^2^^~6~^~JA~^^^2^0.62^0.81^^^^^~08/01/2012~ -~11435~^~209~^0.40^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11435~^~210~^0.53^2^^~6~^~JA~^^^2^0.35^0.72^^^^^~08/01/2012~ -~11435~^~211~^2.30^2^^~6~^~JA~^^^2^1.66^2.94^^^^^~08/01/2012~ -~11435~^~212~^1.61^2^^~6~^~JA~^^^2^1.42^1.80^^^^^~08/01/2012~ -~11435~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11435~^~214~^0.02^2^^~6~^~JA~^^^2^0.00^0.04^^^^~1~^~08/01/2012~ -~11435~^~255~^89.43^8^0.33^~6~^~JA~^^^2^88.74^89.66^4^88.50^90.35^~2, 3~^~08/01/2012~ -~11435~^~269~^4.46^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11435~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11435~^~303~^0.44^3^^~6~^~JA~^^^2^0.28^0.52^^^^~2, 3~^~08/01/2012~ -~11435~^~309~^0.24^2^^~6~^~JA~^^^2^0.14^0.34^^^^^~08/01/2012~ -~11435~^~323~^0.30^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11435~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11435~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11435~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11436~^~203~^0.93^1^^~6~^~JA~^^^2^0.93^1.29^^^^^~08/01/2012~ -~11436~^~204~^0.18^1^^~6~^~JA~^^^2^0.18^0.22^^^^^~08/01/2012~ -~11436~^~205~^6.84^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11436~^~207~^0.51^1^^~6~^~JA~^^^2^0.51^0.87^^^^^~08/01/2012~ -~11436~^~209~^0.31^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11436~^~210~^0.35^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11436~^~211~^2.06^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11436~^~212~^1.54^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11436~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11436~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11436~^~255~^91.54^3^0.00^~6~^~JA~^^^2^88.88^91.90^^^^~2, 3~^~08/01/2012~ -~11436~^~269~^3.95^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11436~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11436~^~303~^0.18^1^^~6~^~JA~^^^2^0.18^0.53^^^^^~08/01/2012~ -~11436~^~309~^0.12^1^^~6~^~JA~^^^2^0.12^0.35^^^^^~08/01/2012~ -~11436~^~323~^0.24^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/2012~ -~11436~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11436~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11436~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11437~^~203~^3.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~205~^18.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11437~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~255~^77.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11438~^~203~^2.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~205~^15.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11438~^~207~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~255~^81.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~269~^2.90^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11438~^~303~^0.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11438~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11438~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11438~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11439~^~203~^0.91^154^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~204~^0.14^146^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~205~^4.28^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~207~^2.15^173^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~211~^0.14^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~212~^0.04^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~255~^92.52^144^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~269~^1.78^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11439~^~303~^1.47^173^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~309~^0.19^17^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~323~^0.14^0^^~4~^~BFSN~^~11110~^^^^^^^^^~03/01/2006~ -~11439~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11439~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11439~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11442~^~203~^0.54^3^0.19^~1~^^^^^^^^^^^~02/01/2003~ -~11442~^~204~^0.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~205~^6.75^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11442~^~207~^1.36^3^0.83^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~255~^91.32^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~269~^0.28^0^^~4~^~BFSN~^~11446~^^^^^^^^^~02/01/2003~ -~11442~^~303~^1.86^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~309~^0.58^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~323~^0.87^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11442~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11442~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11442~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11444~^~203~^1.51^4^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~204~^0.16^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~205~^12.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11444~^~207~^4.70^6^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~255~^81.34^5^4.12^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~269~^0.61^0^^~4~^~BFSN~^~11446~^^^^^^^^^~02/01/2003~ -~11444~^~303~^8.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~309~^1.95^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~323~^0.87^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11444~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11445~^~203~^1.68^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~204~^0.56^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~205~^9.57^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11445~^~207~^6.61^9^0.62^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~255~^81.58^8^1.75^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~269~^0.60^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11445~^~303~^2.85^6^1.35^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~309~^1.23^5^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~323~^0.87^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11445~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11446~^~203~^5.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~204~^0.28^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~205~^5.11^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11446~^~207~^3.77^5^1.48^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~255~^85.03^7^2.30^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~269~^0.49^0^^~4~^~BFSN~^~11445~^^^^^^^^^~02/01/2003~ -~11446~^~303~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~309~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~323~^1.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11446~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11446~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11446~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11447~^~203~^1.28^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~204~^0.04^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~205~^6.73^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11447~^~207~^0.38^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~255~^91.58^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~303~^0.84^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11448~^~203~^1.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~204~^0.05^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~205~^5.23^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11448~^~207~^0.28^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~255~^93.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~303~^0.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11450~^~203~^12.95^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~204~^6.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11450~^~207~^1.70^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~255~^67.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~303~^3.55^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~309~^0.99^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11451~^~203~^12.35^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~204~^6.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11451~^~207~^1.60^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~255~^68.60^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~303~^2.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~309~^0.91^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11452~^~203~^13.09^6^8.06^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~204~^6.70^6^0.49^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~205~^9.57^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11452~^~207~^1.59^6^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~255~^69.05^6^2.77^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~303~^2.10^8^0.39^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~309~^1.17^8^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11453~^~203~^8.47^3^7.51^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~204~^4.45^3^0.95^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~205~^6.53^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11453~^~207~^1.10^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~255~^79.45^3^3.80^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~269~^0.52^0^^~4~^~BFSN~^~11001~^^^^^^^^^~03/01/2007~ -~11453~^~303~^1.31^3^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~309~^1.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~323~^0.21^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~ -~11453~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11453~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11453~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11454~^~203~^13.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~204~^7.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~205~^9.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11454~^~207~^3.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~255~^67.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~309~^2.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11457~^~203~^2.86^9^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~204~^0.39^7^0.03^~1~^^^^2^0.25^0.50^6^0.31^0.46^~4~^~10/01/2008~ -~11457~^~205~^3.63^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~207~^1.72^8^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~210~^0.07^8^0.03^~1~^^^^4^0.00^0.30^7^-0.01^0.15^~4~^~09/01/2002~ -~11457~^~211~^0.11^8^0.03^~1~^^^^4^0.02^0.30^7^0.03^0.18^~4~^~09/01/2002~ -~11457~^~212~^0.15^8^0.07^~1~^^^^4^0.00^0.51^7^-0.02^0.31^~4~^~09/01/2002~ -~11457~^~213~^0.00^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11457~^~214~^0.00^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11457~^~255~^91.40^1^^~11~^~JO~^^^7^87.75^94.16^15^^^^~09/01/2002~ -~11457~^~269~^0.42^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~287~^0.10^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11457~^~303~^2.71^10^0.52^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~309~^0.53^7^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~323~^2.03^7^0.15^~1~^^^^2^1.41^2.70^6^1.66^2.40^~4~^~10/01/2008~ -~11457~^~341~^0.00^7^0.00^~1~^^^^2^0.00^0.00^6^0.00^0.00^~4~^~10/01/2008~ -~11457~^~342~^0.18^7^0.03^~1~^^^^2^0.00^0.31^6^0.09^0.26^~4~^~10/01/2008~ -~11457~^~343~^0.00^7^0.00^~1~^^^^2^0.00^0.00^6^0.00^0.00^~4~^~10/01/2008~ -~11457~^~344~^0.00^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~345~^0.00^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~346~^0.00^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~347~^0.00^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11457~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11457~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11458~^~203~^2.97^16^0.15^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~204~^0.26^16^0.04^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~205~^3.75^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11458~^~207~^1.81^16^0.09^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~255~^91.21^19^0.22^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~269~^0.43^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11458~^~303~^3.57^12^0.99^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~309~^0.76^16^0.04^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~323~^2.08^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11458~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11458~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11458~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11459~^~203~^2.11^139^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~204~^0.37^111^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~205~^2.92^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11459~^~207~^1.38^161^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~255~^93.22^226^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~269~^0.33^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~303~^1.58^235^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~309~^0.42^47^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~323~^1.60^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11459~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11461~^~203~^2.81^11^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~204~^0.50^11^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11461~^~207~^1.51^11^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~255~^91.78^11^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~269~^0.40^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~303~^2.30^12^0.29^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~309~^0.46^11^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~323~^1.94^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~ -~11461~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11461~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11461~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11463~^~203~^3.63^11^0.06^~1~^~A~^^^1^3.21^3.94^6^3.46^3.78^~2, 3~^~07/01/2007~ -~11463~^~204~^0.57^11^0.08^~1~^~A~^^^1^0.34^1.11^8^0.37^0.75^~2, 3~^~07/01/2007~ -~11463~^~205~^4.21^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~207~^1.43^11^0.01^~1~^~A~^^^1^1.25^1.53^9^1.39^1.47^~2, 3~^~07/01/2007~ -~11463~^~209~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~210~^0.24^11^0.01^~1~^~A~^^^1^0.15^0.29^8^0.19^0.27^~1, 2, 3~^~07/01/2007~ -~11463~^~211~^0.24^11^0.02^~1~^~A~^^^1^0.15^0.29^8^0.18^0.28^~1, 2, 3~^~07/01/2007~ -~11463~^~212~^0.18^11^0.02^~1~^~A~^^^1^0.00^0.30^8^0.11^0.24^~1, 2, 3~^~07/01/2007~ -~11463~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~255~^90.17^11^0.11^~1~^~A~^^^1^89.45^90.93^4^89.85^90.47^~2, 3~^~07/01/2007~ -~11463~^~269~^0.65^11^0.04^~1~^~A~^^^1^0.30^0.87^8^0.54^0.75^~2, 3~^~07/01/2007~ -~11463~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~303~^1.89^11^0.07^~1~^~A~^^^1^1.63^2.03^7^1.71^2.05^~2, 3~^~07/01/2007~ -~11463~^~309~^0.56^11^0.03^~1~^~A~^^^1^0.45^0.75^7^0.48^0.63^~2, 3~^~07/01/2007~ -~11463~^~323~^2.90^2^^~1~^~A~^^^^2.88^2.92^^^^^~07/01/2007~ -~11463~^~341~^0.01^2^^~1~^~A~^^^^0.01^0.01^^^^^~07/01/2007~ -~11463~^~342~^0.14^2^^~1~^~A~^^^^0.13^0.15^^^^^~07/01/2007~ -~11463~^~343~^0.00^2^^~1~^~A~^^^^0.00^0.01^^^^^~07/01/2007~ -~11463~^~344~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2007~ -~11463~^~345~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2007~ -~11463~^~346~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2007~ -~11463~^~347~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2007~ -~11463~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11463~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11463~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11464~^~203~^4.01^6^0.06^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~204~^0.87^6^0.21^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~207~^1.39^6^0.07^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~209~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~210~^0.21^6^0.03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~211~^0.20^6^0.03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~212~^0.09^6^0.05^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~213~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~214~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~255~^88.94^6^0.19^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~269~^0.51^6^0.12^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~287~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~303~^1.96^6^0.06^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~309~^0.49^6^0.04^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~323~^3.54^3^0.11^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~341~^0.01^3^1.0e-03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~342~^0.17^3^7.0e-03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~344~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11464~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11464~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11467~^~203~^1.01^11^0.08^~6~^~JA~^^^2^0.94^1.50^9^0.82^1.20^~2, 3~^~04/01/2009~ -~11467~^~204~^0.27^11^0.03^~6~^~JA~^^^2^0.24^0.41^8^0.18^0.35^~2, 3~^~04/01/2009~ -~11467~^~205~^3.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11467~^~207~^0.56^9^0.02^~6~^~JA~^^^2^0.44^0.58^7^0.50^0.60^~2, 3~^~04/01/2009~ -~11467~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11467~^~210~^0.06^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~06/01/2014~ -~11467~^~211~^1.23^3^0.27^~1~^~A~^^^1^1.17^2.05^2^0.34^2.68^~2, 3~^~06/01/2014~ -~11467~^~212~^1.59^3^0.14^~1~^~A~^^^1^1.69^2.19^2^1.32^2.56^~2, 3~^~06/01/2014~ -~11467~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11467~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11467~^~255~^94.28^11^0.28^~6~^~JA~^^^2^93.69^95.51^9^93.63^94.92^~2, 3~^~04/01/2009~ -~11467~^~269~^2.88^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~11467~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11467~^~303~^0.44^11^0.02^~6~^~JA~^^^2^0.25^0.48^9^0.37^0.50^~2, 3~^~04/01/2009~ -~11467~^~309~^0.29^9^0.01^~6~^~JA~^^^2^0.25^0.36^7^0.24^0.33^~2, 3~^~04/01/2009~ -~11467~^~323~^0.13^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~ -~11467~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11467~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11467~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11468~^~203~^1.04^3^0.11^~1~^~A~^^^1^0.81^1.19^2^0.54^1.54^~2, 3~^~04/01/2009~ -~11468~^~204~^0.39^3^0.01^~1~^~A~^^^1^0.37^0.43^2^0.31^0.47^~2, 3~^~04/01/2009~ -~11468~^~205~^3.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11468~^~207~^0.53^3^0.04^~1~^~A~^^^1^0.44^0.59^2^0.33^0.72^~2, 3~^~04/01/2009~ -~11468~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11468~^~210~^0.27^6^0.11^~6~^~JA~^^^2^0.02^0.66^5^-0.02^0.55^~1, 4~^~04/01/2009~ -~11468~^~211~^0.91^7^0.21^~6~^~JA~^^^3^0.07^1.90^6^0.38^1.43^~1, 4~^~04/01/2009~ -~11468~^~212~^1.31^7^0.20^~6~^~JA~^^^3^0.50^2.07^6^0.80^1.81^~4~^~04/01/2009~ -~11468~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11468~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11468~^~255~^94.25^5^0.30^~6~^~JA~^^^3^93.90^95.45^4^93.41^95.08^~4~^~04/01/2009~ -~11468~^~269~^2.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11468~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11468~^~303~^0.37^31^0.02^~6~^~JA~^^^6^0.17^0.89^10^0.31^0.41^~2, 3~^~04/01/2009~ -~11468~^~309~^0.22^31^0.01^~6~^~JA~^^^6^0.09^0.39^19^0.19^0.25^~2, 3~^~04/01/2009~ -~11468~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11468~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11468~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11468~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11471~^~203~^0.61^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~204~^0.07^6^4.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~205~^2.96^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11471~^~207~^0.32^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~255~^96.04^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~269~^1.19^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11471~^~303~^0.71^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~309~^0.29^6^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11471~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11471~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11471~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11473~^~203~^0.83^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~204~^0.14^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11473~^~207~^0.58^6^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~255~^93.66^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~303~^0.48^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~309~^0.37^6^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11474~^~203~^1.28^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~204~^0.20^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11474~^~207~^0.74^6^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~255~^92.24^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~269~^2.33^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11474~^~303~^0.52^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~309~^0.34^6^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~323~^0.15^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11474~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11474~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11474~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11475~^~203~^1.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~205~^3.84^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11475~^~207~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~255~^94.18^10^0.32^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~269~^2.39^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~309~^0.29^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~323~^0.13^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11476~^~203~^1.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~205~^3.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11476~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~255~^95.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~269~^1.50^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11476~^~303~^0.33^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11476~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11476~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11476~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11477~^~203~^1.21^10^0.04^~11~^~JO~^^^3^0.91^1.50^6^1.10^1.30^~2, 3~^~04/01/2009~ -~11477~^~204~^0.32^7^0.02^~6~^~JA~^^^3^0.10^0.45^1^0.03^0.60^~2, 3~^~04/01/2009~ -~11477~^~205~^3.11^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~207~^0.58^9^0.01^~6~^~JA~^^^3^0.49^0.70^4^0.53^0.61^~2, 3~^~04/01/2009~ -~11477~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11477~^~210~^0.05^8^0.01^~6~^~JA~^^^3^0.00^0.10^2^-2.0e-03^0.10^~1, 2, 3~^~04/01/2009~ -~11477~^~211~^1.07^8^0.08^~6~^~JA~^^^3^0.58^1.82^4^0.83^1.29^~2, 3~^~04/01/2009~ -~11477~^~212~^1.38^8^0.06^~6~^~JA~^^^3^0.50^2.07^5^1.22^1.53^~2, 3~^~04/01/2009~ -~11477~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11477~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11477~^~255~^94.79^18^0.08^~6~^~JA~^^^6^93.30^95.80^9^94.60^94.96^~2, 3~^~04/01/2009~ -~11477~^~269~^2.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11477~^~303~^0.37^10^0.01^~6~^~JA~^^^3^0.30^0.45^6^0.34^0.39^~2, 3~^~04/01/2009~ -~11477~^~309~^0.32^10^0.02^~6~^~JA~^^^3^0.23^0.51^4^0.25^0.37^~2, 3~^~04/01/2009~ -~11477~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~11477~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11477~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11477~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11478~^~203~^1.14^4^0.05^~1~^~A~^^^1^1.06^1.31^3^0.95^1.32^~2, 3~^~04/01/2009~ -~11478~^~204~^0.36^4^0.03^~1~^~A~^^^1^0.30^0.44^3^0.25^0.46^~2, 3~^~04/01/2009~ -~11478~^~205~^2.69^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11478~^~207~^0.59^4^0.05^~1~^~A~^^^1^0.44^0.70^3^0.41^0.76^~2, 3~^~04/01/2009~ -~11478~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11478~^~255~^95.22^4^0.19^~1~^~A~^^^1^94.74^95.67^3^94.60^95.83^~2, 3~^~04/01/2009~ -~11478~^~269~^1.71^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~11478~^~303~^0.37^4^0.02^~1~^~A~^^^1^0.30^0.43^3^0.28^0.45^~2, 3~^~04/01/2009~ -~11478~^~309~^0.33^4^0.03^~1~^~A~^^^1^0.27^0.43^3^0.22^0.44^~2, 3~^~04/01/2009~ -~11478~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~11478~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11478~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11478~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11479~^~203~^1.16^17^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~204~^0.13^17^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~205~^3.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11479~^~207~^0.43^17^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~255~^94.70^17^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~269~^1.71^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~303~^0.51^17^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~309~^0.21^8^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~323~^0.12^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11479~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11480~^~203~^1.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~205~^3.56^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11480~^~207~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~255~^94.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~269~^1.69^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11480~^~303~^0.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~323~^0.12^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11480~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11480~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11480~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11481~^~203~^1.03^18^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~204~^0.11^18^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~205~^6.85^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11481~^~207~^1.40^18^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~255~^90.61^18^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~303~^0.68^18^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~309~^0.26^18^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11482~^~203~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~205~^10.42^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11482~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~255~^87.78^8^0.91^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~309~^0.13^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11483~^~203~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~204~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~205~^14.58^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11483~^~207~^1.26^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~255~^82.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~303~^0.93^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11484~^~203~^0.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~204~^0.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~205~^8.79^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11484~^~207~^0.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~255~^89.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~303~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11485~^~203~^1.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~205~^11.69^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11485~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~210~^0.22^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11485~^~211~^0.99^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11485~^~212~^0.99^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11485~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11485~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11485~^~255~^86.41^5^1.62^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~269~^2.20^0^^~4~^~T~^^^^^^^^^^~11/01/2002~ -~11485~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11485~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~323~^1.44^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11485~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11486~^~203~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~205~^10.49^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11486~^~207~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~255~^87.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~269~^1.97^0^^~4~^~BFSN~^~11485~^^^^^^^^^~04/01/2003~ -~11486~^~303~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~323~^1.29^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11486~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11487~^~203~^1.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~205~^14.41^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11487~^~207~^1.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~255~^82.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~269~^2.83^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~303~^0.88^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~323~^1.85^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~ -~11487~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11488~^~203~^1.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~205~^10.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11488~^~207~^0.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~255~^87.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~303~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11489~^~203~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~204~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~205~^8.70^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11489~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~255~^88.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~269~^3.95^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~323~^0.16^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11489~^~573~^0.00^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~203~^2.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~204~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~205~^10.81^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11490~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~255~^85.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~269~^4.90^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~303~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~323~^0.20^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11491~^~203~^1.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~204~^0.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11491~^~207~^0.59^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~255~^91.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~269~^2.93^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11491~^~303~^0.28^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11491~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11491~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11491~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11492~^~203~^0.64^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~204~^0.57^3^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~205~^6.91^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11492~^~207~^0.28^3^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~255~^91.60^3^0.56^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~269~^2.76^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~303~^0.31^3^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~309~^0.19^3^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~323~^0.13^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~ -~11492~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11493~^~203~^0.66^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~204~^0.26^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11493~^~207~^0.32^3^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~255~^92.30^3^1.52^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~269~^2.53^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~ -~11493~^~303~^0.34^3^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~309~^0.20^3^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11493~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11493~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11493~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11495~^~203~^5.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~204~^1.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~205~^19.59^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11495~^~207~^1.26^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~255~^73.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~303~^1.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~309~^0.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11496~^~203~^5.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~204~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~205~^24.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11496~^~207~^1.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~255~^68.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~303~^1.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11497~^~203~^2.64^23^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~204~^0.54^23^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~205~^17.61^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11497~^~207~^1.04^29^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~255~^78.17^23^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~303~^0.55^29^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~309~^0.43^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11497~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11499~^~203~^2.60^18^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~204~^0.49^16^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~205~^13.98^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11499~^~207~^0.96^24^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~255~^81.96^18^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~303~^0.53^24^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~309~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11501~^~203~^4.31^27^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~204~^0.89^27^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~205~^19.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11501~^~207~^0.75^22^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~255~^74.11^24^0.42^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~303~^0.94^27^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~309~^0.47^4^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11502~^~203~^4.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~204~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~205~^19.95^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11502~^~207~^0.75^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~255~^74.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~269~^2.21^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~303~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~309~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~323~^0.18^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11502~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11502~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11503~^~203~^2.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~205~^3.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~ -~11503~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~255~^92.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~303~^1.67^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~309~^0.18^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11504~^~203~^2.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~204~^0.24^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11504~^~207~^1.05^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~255~^92.93^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~303~^1.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~309~^0.16^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11505~^~203~^2.49^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~204~^0.51^1^^~1~^~A~^^^2^0.30^0.51^^^^^~07/01/2012~ -~11505~^~205~^8.82^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~207~^1.36^2^^~1~^~A~^^^2^1.36^1.37^^^^^~08/01/1984~ -~11505~^~255~^86.81^2^^~1~^~A~^^^2^85.67^87.96^^^^^~07/01/2012~ -~11505~^~303~^0.97^1^^~1~^~A~^^^2^0.94^1.01^1^^^^~07/01/2012~ -~11505~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11506~^~203~^2.18^2^^~6~^~JA~^^^2^2.03^2.32^1^^^^~07/01/2012~ -~11506~^~204~^0.34^2^^~6~^~JA~^^^2^0.30^0.38^1^^^^~07/01/2012~ -~11506~^~205~^7.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11506~^~207~^0.89^2^^~6~^~JA~^^^2^0.44^1.35^1^^^^~07/01/2012~ -~11506~^~255~^89.20^2^^~6~^~JA~^^^2^88.71^89.70^1^^^^~07/01/2012~ -~11506~^~269~^5.48^0^^~4~^~O~^^^^^^^^^^~07/01/2012~ -~11506~^~303~^0.63^1^^~6~^~JA~^^^2^0.60^0.66^1^^^^~07/01/2012~ -~11506~^~309~^0.26^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~323~^0.96^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11506~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11506~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11506~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11507~^~203~^1.57^4^0.14^~1~^~A~^^^1^1.37^1.99^3^1.10^2.03^~2, 3~^~10/01/2002~ -~11507~^~204~^0.05^4^0.03^~1~^~A~^^^1^0.02^0.15^3^-0.05^0.15^~1, 2, 3~^~10/01/2002~ -~11507~^~205~^20.12^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~207~^0.99^4^0.05^~1~^~A~^^^1^0.84^1.10^3^0.81^1.16^~2, 3~^~10/01/2002~ -~11507~^~209~^12.65^4^2.70^~1~^~A~^^^1^7.20^20.10^3^4.02^21.27^~2, 3~^~05/01/2004~ -~11507~^~210~^2.52^6^0.12^~6~^~JA~^^^2^1.88^3.34^4^2.15^2.89^~2, 3~^~05/01/2004~ -~11507~^~211~^0.96^6^0.26^~6~^~JA~^^^2^0.30^1.88^4^0.20^1.71^~2, 3~^~05/01/2004~ -~11507~^~212~^0.70^6^0.17^~6~^~JA~^^^2^0.24^1.13^3^0.18^1.21^~2, 3~^~05/01/2004~ -~11507~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~11507~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11507~^~255~^77.28^7^0.65^~6~^~JA~^^^3^73.52^81.89^3^75.25^79.29^~2, 3~^~05/01/2004~ -~11507~^~269~^4.18^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11507~^~303~^0.61^3^0.07^~1~^~A~^^^1^0.54^0.75^2^0.31^0.91^~2, 3~^~10/01/2002~ -~11507~^~309~^0.30^3^0.03^~1~^~A~^^^1^0.25^0.37^2^0.15^0.44^~2, 3~^~10/01/2002~ -~11507~^~323~^0.26^2^^~1~^~A~^^^1^0.04^0.48^1^^^^~10/01/2002~ -~11507~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~10/01/2002~ -~11507~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11507~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11507~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~10/01/2002~ -~11507~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11507~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11507~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11507~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11507~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11507~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11508~^~203~^2.01^4^0.16^~1~^~A~^^^1^1.61^2.39^3^1.47^2.54^~2, 3~^~12/01/2002~ -~11508~^~204~^0.15^5^9.0e-03^~11~^~JO~^^^2^0.10^0.18^3^0.12^0.17^~2, 3~^~04/01/2003~ -~11508~^~205~^20.71^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11508~^~207~^1.35^4^0.09^~1~^~A~^^^1^1.16^1.56^3^1.05^1.65^~2, 3~^~12/01/2002~ -~11508~^~209~^7.05^4^2.60^~1~^~A~^^^1^3.60^14.80^3^-1.24^15.34^~2, 3~^~12/01/2002~ -~11508~^~210~^2.28^12^0.35^~6~^~JA~^^^3^1.56^5.17^11^2.20^3.75^~4~^~03/01/2006~ -~11508~^~211~^0.57^12^0.12^~6~^~JA~^^^3^0.27^1.45^11^0.46^1.01^~4~^~03/01/2006~ -~11508~^~212~^0.50^12^0.10^~6~^~JA~^^^3^0.03^1.20^11^0.42^0.89^~1, 4~^~03/01/2006~ -~11508~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11508~^~214~^3.12^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~ -~11508~^~255~^75.78^8^2.48^~11~^~JO~^^^3^62.65^85.59^7^69.90^81.66^~4~^~04/01/2003~ -~11508~^~269~^6.48^3^0.62^~1~^^^^1^5.65^7.71^2^3.78^9.17^~4~^~06/01/2014~ -~11508~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11508~^~303~^0.69^68^0.03^~6~^~JA~^^^12^0.27^1.32^67^0.62^0.75^~4~^~04/01/2003~ -~11508~^~309~^0.32^68^0.01^~6~^~JA~^^^12^0.00^0.77^67^0.29^0.34^~4~^~04/01/2003~ -~11508~^~323~^0.71^3^0.45^~11~^~JO~^^^2^0.16^1.66^1^-5.05^6.46^~2, 3~^~04/01/2003~ -~11508~^~341~^0.00^3^5.0e-03^~11~^~JO~^^^2^0.00^0.01^1^-0.05^0.06^~1, 2, 3~^~04/01/2003~ -~11508~^~342~^0.01^3^0.00^~11~^~JO~^^^2^0.00^0.02^^^^~2, 3~^~04/01/2003~ -~11508~^~343~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11508~^~344~^0.02^3^5.0e-03^~11~^~JO~^^^2^0.00^0.04^1^-0.04^0.08^~1, 2, 3~^~04/01/2003~ -~11508~^~345~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11508~^~346~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11508~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2002~ -~11508~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11508~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11508~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11510~^~203~^1.37^4^0.09^~1~^~A~^^^1^1.10^1.54^3^1.06^1.68^~2, 3~^~10/01/2002~ -~11510~^~204~^0.14^4^0.05^~1~^~A~^^^1^0.02^0.27^3^-0.02^0.30^~1, 2, 3~^~10/01/2002~ -~11510~^~205~^17.72^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~207~^0.63^4^0.04^~1~^~A~^^^1^0.52^0.75^3^0.47^0.79^~2, 3~^~10/01/2002~ -~11510~^~209~^5.22^4^1.61^~1~^~A~^^^1^2.60^9.80^3^0.09^10.35^~2, 3~^~10/01/2002~ -~11510~^~210~^1.43^4^0.11^~1~^~A~^^^1^1.30^1.79^3^1.05^1.81^~2, 3~^~04/01/2003~ -~11510~^~211~^0.54^4^0.18^~1~^~A~^^^1^0.03^0.94^3^-0.06^1.13^~1, 2, 3~^~04/01/2003~ -~11510~^~212~^0.43^4^0.14^~1~^~A~^^^1^0.03^0.67^3^-0.02^0.87^~1, 2, 3~^~04/01/2003~ -~11510~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11510~^~214~^3.34^4^0.79^~1~^~A~^^^1^1.84^5.57^3^0.82^5.85^~2, 3~^~04/01/2003~ -~11510~^~255~^80.13^4^2.20^~1~^~A~^^^1^73.66^83.40^3^73.11^87.14^~2, 3~^~04/01/2003~ -~11510~^~269~^5.74^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11510~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11510~^~303~^0.72^4^0.06^~1~^~A~^^^1^0.60^0.89^3^0.52^0.91^~2, 3~^~04/01/2003~ -~11510~^~309~^0.20^4^5.0e-03^~1~^~A~^^^1^0.19^0.21^3^0.18^0.21^~2, 3~^~04/01/2003~ -~11510~^~323~^0.94^2^^~1~^~A~^^^1^0.37^1.51^1^^^^~10/01/2002~ -~11510~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~10/01/2002~ -~11510~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11510~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11510~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11510~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11512~^~203~^1.65^8^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~204~^0.20^8^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~205~^21.12^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~207~^1.00^8^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~255~^76.03^8^0.51^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~269~^5.00^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~303~^0.89^8^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~309~^0.18^8^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~323~^1.00^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~ -~11512~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11512~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11512~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11514~^~203~^1.98^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~204~^0.20^4^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~205~^23.19^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~207~^0.75^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~255~^73.88^4^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~269~^5.45^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~303~^1.33^4^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~309~^0.21^4^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~323~^1.09^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11514~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11516~^~203~^1.71^6^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~204~^0.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~205~^22.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11516~^~207~^1.00^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~255~^74.89^6^0.74^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~303~^0.53^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~309~^0.31^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11517~^~203~^1.71^6^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~204~^0.12^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~205~^23.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~207~^1.07^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~255~^73.70^6^0.66^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~269~^9.17^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~303~^0.54^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~309~^0.30^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~323~^0.77^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~ -~11517~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11518~^~203~^1.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~204~^0.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~205~^26.46^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11518~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~255~^70.64^8^4.58^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~269~^0.40^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11518~^~303~^0.55^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~323~^2.38^0^^~4~^~O~^^^^^^^^^^~10/01/2002~ -~11518~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11518~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11518~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11519~^~203~^0.52^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~204~^0.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~205~^34.60^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11519~^~207~^0.97^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~255~^63.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~269~^0.49^0^^~4~^~BFSN~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~303~^0.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~323~^2.93^0^^~4~^~BFSN~^~11518~^^^^^^^^^~12/01/2002~ -~11519~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11519~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11519~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11520~^~203~^4.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~204~^0.74^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11520~^~207~^1.92^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~255~^85.66^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~269~^3.01^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11520~^~303~^2.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~309~^0.41^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~323~^2.02^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11520~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11520~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11520~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11521~^~203~^2.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~204~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~205~^4.02^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11521~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~255~^92.15^3^3.41^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~303~^1.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~309~^0.21^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11522~^~203~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~205~^2.32^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11522~^~207~^0.85^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~255~^95.82^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~303~^0.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~309~^0.51^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11523~^~203~^0.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~205~^3.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11523~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~255~^95.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~303~^0.41^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~309~^0.54^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11525~^~203~^2.79^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~204~^0.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~205~^6.91^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11525~^~207~^1.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~255~^87.96^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~303~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~309~^0.09^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11526~^~203~^4.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~204~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~205~^6.85^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11526~^~207~^1.85^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~255~^86.46^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~303~^1.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~309~^0.10^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11527~^~203~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11527~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~255~^93.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~269~^4.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11527~^~303~^0.51^9^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~309~^0.07^9^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~323~^0.38^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11527~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11527~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11527~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11529~^~203~^0.88^19^0.03^~11~^~JO~^^^3^0.59^1.06^12^0.79^0.96^~4~^~09/01/2002~ -~11529~^~204~^0.20^26^0.03^~11~^~JO~^^^5^0.07^0.80^19^0.13^0.27^~4~^~09/01/2002~ -~11529~^~205~^3.89^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~207~^0.50^19^0.01^~6~^~JA~^^^3^0.37^0.60^12^0.46^0.54^~4~^~09/01/2002~ -~11529~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~210~^0.00^12^2.0e-03^~6~^~JA~^^^5^0.00^0.02^11^-2.0e-03^5.0e-03^~4~^~09/01/2002~ -~11529~^~211~^1.25^16^0.13^~6~^~JA~^^^7^0.49^2.67^15^0.96^1.53^~4~^~09/01/2002~ -~11529~^~212~^1.37^17^0.07^~6~^~JA~^^^7^1.10^2.32^16^1.22^1.53^~4~^~09/01/2002~ -~11529~^~213~^0.00^9^0.00^~6~^~JA~^^^3^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~214~^0.00^9^0.00^~6~^~JA~^^^3^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~255~^94.52^39^0.13^~11~^~JO~^^^11^92.70^95.73^32^94.23^94.80^~4~^~06/01/2010~ -~11529~^~269~^2.63^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~303~^0.27^70^0.01^~6~^~JA~^^^8^0.14^0.79^63^0.24^0.30^~4~^~09/01/2002~ -~11529~^~309~^0.17^70^0.03^~6~^~JA~^^^8^0.05^2.42^63^0.09^0.23^~4~^~09/01/2002~ -~11529~^~323~^0.54^16^0.07^~11~^~JO~^^^4^0.05^1.02^15^0.38^0.68^~4~^~09/01/2002~ -~11529~^~341~^0.01^16^2.0e-03^~11~^~JO~^^^4^0.00^0.01^15^3.0e-03^0.01^~4~^~09/01/2002~ -~11529~^~342~^0.12^16^0.01^~11~^~JO~^^^4^0.01^0.24^15^0.08^0.15^~4~^~09/01/2002~ -~11529~^~343~^0.00^16^2.0e-03^~11~^~JO~^^^4^0.00^0.01^15^0.00^7.0e-03^~4~^~09/01/2002~ -~11529~^~344~^0.01^6^5.0e-03^~11~^~JO~^^^3^0.00^0.04^3^-1.0e-03^0.03^~2, 3~^~09/01/2002~ -~11529~^~345~^0.00^6^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~346~^0.00^6^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~347~^0.00^6^0.00^~11~^~JO~^^^3^0.00^0.00^^^^~2, 3~^~09/01/2002~ -~11529~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11529~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11529~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11530~^~203~^0.95^4^0.05^~1~^~A~^^^1^0.82^1.06^3^0.78^1.11^~4~^~10/01/2002~ -~11530~^~204~^0.11^4^0.02^~1~^~A~^^^1^0.07^0.17^3^0.03^0.17^~4~^~10/01/2002~ -~11530~^~205~^4.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~207~^0.60^4^0.02^~1~^~A~^^^1^0.53^0.65^3^0.51^0.67^~4~^~10/01/2002~ -~11530~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~211~^1.18^4^0.06^~1~^~A~^^^1^1.04^1.33^3^0.98^1.37^~4~^~10/01/2002~ -~11530~^~212~^1.31^4^0.04^~1~^~A~^^^1^1.19^1.42^3^1.16^1.46^~4~^~10/01/2002~ -~11530~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~255~^94.34^4^0.20^~1~^~A~^^^1^93.78^94.65^3^93.68^94.99^~4~^~10/01/2002~ -~11530~^~269~^2.49^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~11530~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11530~^~303~^0.68^4^0.12^~1~^~A~^^^1^0.39^0.93^3^0.29^1.06^~4~^~10/01/2002~ -~11530~^~309~^0.14^4^0.02^~1~^~A~^^^1^0.09^0.19^3^0.08^0.20^~4~^~10/01/2002~ -~11530~^~323~^0.56^4^0.02^~1~^~A~^^^1^0.50^0.62^3^0.47^0.64^~4~^~10/01/2002~ -~11530~^~341~^0.01^4^0.00^~1~^~A~^^^1^0.01^0.01^3^0.01^0.01^~4~^~10/01/2002~ -~11530~^~342~^0.21^4^0.01^~1~^~A~^^^1^0.16^0.25^3^0.15^0.27^~4~^~10/01/2002~ -~11530~^~343~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.02^~4~^~10/01/2002~ -~11530~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~10/01/2002~ -~11530~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11530~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11530~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11531~^~203~^0.79^18^0.03^~1~^~A~^^^1^0.56^1.13^16^0.71^0.85^~2, 3~^~08/01/2014~ -~11531~^~204~^0.25^18^0.03^~1~^~A~^^^1^0.09^0.64^16^0.17^0.32^~2, 3~^~08/01/2014~ -~11531~^~205~^3.47^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~207~^0.74^18^0.02^~1~^~A~^^^1^0.53^0.96^14^0.69^0.79^~2, 3~^~08/01/2014~ -~11531~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11531~^~211~^1.24^9^0.04^~1~^~A~^^^1^1.03^1.56^7^1.14^1.34^~2, 3~^~08/01/2014~ -~11531~^~212~^1.31^9^0.03^~1~^~A~^^^1^1.12^1.54^7^1.22^1.38^~2, 3~^~08/01/2014~ -~11531~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~255~^94.75^18^0.16^~1~^~A~^^^1^93.53^96.69^15^94.40^95.10^~2, 3~^~08/01/2014~ -~11531~^~269~^2.55^9^0.07^~1~^~A~^^^1^2.15^3.10^7^2.38^2.72^~2, 3~^~08/01/2014~ -~11531~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~303~^0.57^18^0.07^~1~^~A~^^^1^0.26^1.15^16^0.42^0.72^~2, 3~^~08/01/2014~ -~11531~^~309~^0.12^18^3.0e-03^~1~^~A~^^^1^0.10^0.14^13^0.11^0.12^~1, 2, 3~^~08/01/2014~ -~11531~^~323~^0.59^3^7.0e-03^~1~^~A~^^^1^0.55^0.68^1^0.49^0.68^~2, 3~^~08/01/2014~ -~11531~^~341~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~08/01/2014~ -~11531~^~342~^0.06^3^0.00^~1~^~A~^^^1^0.05^0.07^^^^~2, 3~^~08/01/2014~ -~11531~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11531~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11531~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11531~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11531~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11533~^~203~^0.91^40^0.04^~1~^^^^4^0.15^1.49^39^0.81^0.99^~4~^~06/01/2013~ -~11533~^~204~^0.19^40^0.01^~1~^^^^4^0.07^0.33^39^0.16^0.21^~4~^~11/01/2002~ -~11533~^~205~^6.19^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~207~^1.17^40^0.04^~1~^^^^4^0.22^1.78^39^1.07^1.26^~4~^~11/01/2002~ -~11533~^~210~^0.02^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~211~^1.63^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~212~^1.88^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~ -~11533~^~213~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~214~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~255~^91.54^42^0.17^~11~^~JO~^^^5^88.68^94.69^41^91.19^91.90^~4~^~11/01/2002~ -~11533~^~269~^3.52^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11533~^~287~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~ -~11533~^~303~^1.33^40^0.12^~1~^^^^4^0.40^3.97^39^1.08^1.57^~4~^~11/01/2002~ -~11533~^~309~^0.17^27^5.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~323~^0.83^2^^~1~^^^^1^0.74^0.91^1^^^^~03/01/2007~ -~11533~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^1^^^^~03/01/2007~ -~11533~^~342~^0.20^2^^~1~^^^^1^0.17^0.22^1^^^^~03/01/2007~ -~11533~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^1^^^^~03/01/2007~ -~11533~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11533~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11533~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11537~^~203~^0.69^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~205~^3.62^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11537~^~207~^1.39^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~255~^94.23^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~303~^0.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~309~^0.13^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11540~^~203~^0.85^12^0.06^~1~^~A~^^^1^0.63^1.44^6^0.69^1.01^~2, 3~^~04/01/2014~ -~11540~^~204~^0.29^12^0.03^~1~^~A~^^^1^0.11^0.56^7^0.20^0.38^~2, 3~^~08/01/2014~ -~11540~^~205~^3.53^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11540~^~207~^1.09^12^0.01^~1~^~A~^^^1^0.96^1.18^8^1.04^1.12^~2, 3~^~04/01/2014~ -~11540~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11540~^~211~^1.25^6^0.03^~1~^~A~^^^1^1.22^1.29^1^0.78^1.71^~4~^~08/01/2014~ -~11540~^~212~^1.33^6^0.01^~1~^~A~^^^1^1.28^1.36^3^1.28^1.37^~2, 3~^~08/01/2014~ -~11540~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~255~^94.24^12^0.19^~1~^~A~^^^1^92.76^95.55^7^93.76^94.71^~2, 3~^~08/01/2014~ -~11540~^~269~^2.58^6^0.05^~1~^~A~^^^1^2.38^2.72^2^2.37^2.79^~2, 3~^~08/01/2014~ -~11540~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~303~^0.39^12^0.05^~1~^~A~^^^1^0.25^0.86^5^0.26^0.51^~2, 3~^~08/01/2014~ -~11540~^~309~^0.11^12^6.0e-03^~1~^~A~^^^1^0.08^0.15^10^0.10^0.12^~1, 2, 3~^~08/01/2014~ -~11540~^~323~^0.32^6^0.01^~1~^~A~^^^1^0.27^0.34^5^0.29^0.34^~2, 3~^~03/01/2007~ -~11540~^~341~^0.01^6^^~1~^~A~^^^1^0.01^0.01^0^^^~4~^~03/01/2007~ -~11540~^~342~^0.02^6^3.0e-03^~1~^~A~^^^1^0.01^0.03^5^0.01^0.02^~2, 3~^~03/01/2007~ -~11540~^~343~^0.00^6^^~1~^~A~^^^1^0.00^0.00^0^^^~4~^~03/01/2007~ -~11540~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11540~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11540~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11546~^~203~^4.32^33^0.06^~11~^~JO~^^^6^3.19^5.88^19^4.18^4.46^~2, 3~^~09/01/2002~ -~11546~^~204~^0.47^33^0.01^~6~^~JA~^^^6^0.20^0.76^17^0.43^0.50^~2, 3~^~09/01/2002~ -~11546~^~205~^18.91^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~207~^2.80^33^0.06^~6~^~JA~^^^6^1.96^4.37^22^2.66^2.93^~2, 3~^~09/01/2002~ -~11546~^~209~^0.22^3^0.03^~1~^~A~^^^1^0.15^0.26^2^0.06^0.37^~2, 3~^~09/01/2002~ -~11546~^~210~^0.30^3^0.01^~1~^~A~^^^1^0.28^0.33^2^0.23^0.36^~2, 3~^~12/01/2005~ -~11546~^~211~^5.75^3^0.10^~1~^~A~^^^1^5.63^5.97^2^5.28^6.22^~2, 3~^~12/01/2005~ -~11546~^~212~^5.85^3^0.07^~1~^~A~^^^1^5.74^6.00^2^5.52^6.17^~2, 3~^~12/01/2005~ -~11546~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11546~^~214~^0.28^1^^~1~^~A~^^^^^^^^^^~12/01/2005~ -~11546~^~255~^73.50^46^0.25^~11~^~JO~^^^8^68.61^78.40^21^72.97^74.03^~2, 3~^~09/01/2002~ -~11546~^~269~^12.18^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11546~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11546~^~303~^2.98^32^0.31^~6~^~JA~^^^5^1.20^8.70^17^2.32^3.64^~2, 3~^~09/01/2002~ -~11546~^~309~^0.63^6^0.04^~1~^~A~^^^1^0.52^0.82^5^0.51^0.73^~2, 3~^~09/01/2002~ -~11546~^~323~^4.30^2^^~1~^~A~^^^1^4.09^4.51^1^^^^~08/01/2010~ -~11546~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~08/01/2010~ -~11546~^~342~^0.52^2^^~1~^~A~^^^1^0.33^0.71^1^^^^~08/01/2010~ -~11546~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~08/01/2010~ -~11546~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11546~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11546~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11547~^~203~^1.65^36^0.06^~11~^~JO~^^^4^0.63^2.47^26^1.50^1.78^~2, 3~^~09/01/2002~ -~11547~^~204~^0.21^36^0.02^~6~^~JA~^^^4^0.07^1.05^15^0.15^0.26^~2, 3~^~09/01/2002~ -~11547~^~205~^8.98^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~207~^1.28^36^0.05^~6~^~JA~^^^4^0.70^2.32^17^1.17^1.38^~2, 3~^~09/01/2002~ -~11547~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~211~^2.45^3^0.05^~1~^~A~^^^1^2.37^2.56^2^2.21^2.68^~2, 3~^~09/01/2002~ -~11547~^~212~^2.38^3^0.05^~1~^~A~^^^1^2.29^2.48^2^2.14^2.61^~2, 3~^~09/01/2002~ -~11547~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~255~^87.88^48^0.27^~6~^~JA~^^^5^83.57^92.81^36^87.31^88.44^~2, 3~^~09/01/2002~ -~11547~^~269~^4.83^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~11547~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~11547~^~303~^1.78^35^0.17^~6~^~JA~^^^4^0.50^4.84^19^1.41^2.14^~2, 3~^~09/01/2002~ -~11547~^~309~^0.36^6^0.01^~1~^~A~^^^1^0.32^0.40^5^0.33^0.39^~2, 3~^~09/01/2002~ -~11547~^~323~^1.97^0^^~4~^~BFSN~^~11546~^^^^^^^^^~09/01/2002~ -~11547~^~341~^0.00^0^^~4~^~BFSN~^~11546~^^^^^^^^^~09/01/2002~ -~11547~^~342~^0.24^0^^~4~^~BFSN~^~11546~^^^^^^^^^~09/01/2002~ -~11547~^~343~^0.00^0^^~4~^~BFSN~^~11546~^^^^^^^^^~09/01/2002~ -~11547~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11547~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11547~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11548~^~203~^12.91^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~204~^0.44^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~205~^74.68^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11548~^~207~^8.91^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~255~^3.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~269~^43.90^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~303~^4.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~309~^1.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~323~^12.25^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~ -~11548~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11548~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11548~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11549~^~203~^1.20^18^0.02^~1~^~A~^^^2^0.94^1.39^9^1.15^1.24^~2, 3~^~04/01/2014~ -~11549~^~204~^0.30^13^0.02^~11~^~JO~^^^2^0.15^0.51^8^0.23^0.35^~2, 3~^~08/01/2014~ -~11549~^~205~^5.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11549~^~207~^1.92^18^0.03^~1~^~A~^^^2^1.43^2.43^11^1.85^1.98^~2, 3~^~04/01/2014~ -~11549~^~210~^0.07^8^0.00^~1~^~A~^^^2^0.00^0.27^^^^~1, 2, 3~^~04/01/2014~ -~11549~^~211~^1.82^9^0.07^~1~^~A~^^^2^1.29^2.60^2^1.49^2.13^~2, 3~^~04/01/2014~ -~11549~^~212~^1.67^9^0.08^~1~^~A~^^^2^1.40^2.08^2^1.33^2.01^~2, 3~^~04/01/2014~ -~11549~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~255~^91.28^26^0.11^~11~^~JO~^^^4^86.10^92.61^11^91.03^91.52^~2, 3~^~04/01/2014~ -~11549~^~269~^3.56^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~11549~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~303~^0.96^18^0.10^~1~^~A~^^^2^0.44^2.33^6^0.70^1.21^~2, 3~^~08/01/2014~ -~11549~^~309~^0.22^18^7.0e-03^~1~^~A~^^^2^0.15^0.38^6^0.20^0.24^~2, 3~^~08/01/2014~ -~11549~^~323~^1.44^8^0.04^~1~^~A~^^^2^1.13^1.55^4^1.32^1.54^~2, 3~^~04/01/2014~ -~11549~^~341~^0.02^8^1.0e-03^~1~^~A~^^^2^0.00^0.04^2^0.01^0.02^~2, 3~^~08/01/2010~ -~11549~^~342~^0.10^8^5.0e-03^~1~^~A~^^^2^0.05^0.23^3^0.08^0.11^~2, 3~^~08/01/2010~ -~11549~^~343~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~08/01/2010~ -~11549~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11549~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11549~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11551~^~203~^1.45^70^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~204~^0.13^69^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~205~^8.43^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11551~^~207~^2.02^70^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~255~^87.97^70^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~269~^5.77^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~303~^0.89^66^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~309~^0.21^32^5.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~323~^1.92^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11551~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11551~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11553~^~203~^1.56^54^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~204~^0.19^16^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~205~^9.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11553~^~207~^2.21^54^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~255~^86.09^54^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~303~^0.93^50^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~309~^0.23^16^5.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11555~^~203~^2.13^61^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~204~^1.93^57^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~205~^10.24^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11555~^~207~^2.27^57^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~255~^83.43^57^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~303~^0.87^49^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~309~^0.36^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~203~^0.94^27^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~204~^0.74^24^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~205~^8.77^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11557~^~207~^1.27^28^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~255~^88.28^28^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~269~^7.36^0^^~4~^~O~^^^^^^^^^^~06/01/2008~ -~11557~^~303~^0.76^22^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~323~^1.18^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11557~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11557~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11557~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11559~^~203~^1.32^27^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~204~^0.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~205~^7.09^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11559~^~207~^2.11^27^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~255~^89.09^27^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~303~^0.68^21^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~309~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11563~^~203~^0.29^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~205~^10.98^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11563~^~207~^0.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~255~^88.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~303~^0.16^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11564~^~203~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~205~^6.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11564~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~255~^91.87^5^0.24^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~269~^3.80^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~11564~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11564~^~323~^0.03^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~11564~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11564~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11564~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11565~^~203~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~204~^0.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~205~^5.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11565~^~207~^0.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~269~^2.99^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~303~^0.18^18^8.0e-03^~1~^~A~^^^7^0.13^0.25^17^0.16^0.19^~4~^~12/01/2002~ -~11565~^~309~^0.12^18^9.0e-03^~1~^~A~^^^7^0.06^0.23^17^0.10^0.14^~4~^~12/01/2002~ -~11565~^~323~^0.02^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~ -~11565~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11565~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11565~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11566~^~203~^1.04^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~204~^0.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~205~^2.94^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11566~^~207~^0.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~255~^95.67^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~303~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~309~^0.14^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11567~^~203~^1.53^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~204~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~205~^4.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11567~^~207~^0.28^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~269~^2.35^0^^~4~^~O~^~11565~^^^^^^^^^~03/01/2007~ -~11567~^~303~^0.98^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~323~^0.02^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11567~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11567~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11567~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11568~^~203~^1.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~204~^0.30^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~205~^7.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11568~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~211~^0.52^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11568~^~212~^0.29^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11568~^~255~^89.67^3^0.46^~11~^~JO~^^^2^88.90^90.30^1^83.73^95.59^~2, 3~^~12/01/2002~ -~11568~^~269~^0.81^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11568~^~303~^1.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~309~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~323~^2.86^2^^~1~^^^^1^2.84^2.88^1^^^^~06/01/2005~ -~11568~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~06/01/2005~ -~11568~^~342~^0.16^2^^~1~^^^^1^0.10^0.21^1^^^^~06/01/2005~ -~11568~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~06/01/2005~ -~11568~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11569~^~203~^1.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~204~^0.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~205~^4.36^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11569~^~207~^1.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~255~^93.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~269~^0.53^0^^~4~^~BFSN~^~11568~^^^^^^^^^~12/01/2002~ -~11569~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~309~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~323~^1.88^0^^~4~^~BFSN~^~11568~^^^^^^^^^~12/01/2002~ -~11569~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11569~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11569~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11570~^~203~^1.36^5^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~204~^0.30^5^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~205~^2.42^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11570~^~207~^1.23^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~255~^94.69^5^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~303~^1.51^5^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~309~^0.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11574~^~203~^2.47^13^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~204~^0.31^13^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~205~^3.67^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11574~^~207~^0.62^13^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~255~^92.93^19^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~303~^1.51^13^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~309~^0.17^3^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11575~^~203~^3.35^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~204~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~205~^4.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11575~^~207~^0.85^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~255~^90.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~269~^0.75^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~303~^1.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~309~^0.41^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~323~^2.66^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~ -~11575~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11575~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11575~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11576~^~203~^2.46^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~204~^0.19^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11576~^~207~^0.83^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~255~^93.13^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~303~^1.63^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~309~^0.16^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11577~^~203~^2.99^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~204~^0.38^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~205~^4.85^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~207~^0.74^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~255~^91.04^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~269~^1.07^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~303~^1.75^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~309~^0.37^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~323~^2.13^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11578~^~203~^0.93^11^0.05^~1~^~A~^^^1^0.69^1.13^5^0.79^1.06^~2, 3~^~04/01/2013~ -~11578~^~204~^0.31^11^0.01^~1~^~A~^^^1^0.11^0.36^7^0.27^0.34^~2, 3~^~04/01/2013~ -~11578~^~205~^3.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11578~^~207~^0.80^11^0.03^~1~^~A~^^^1^0.69^1.04^5^0.71^0.89^~2, 3~^~04/01/2013~ -~11578~^~209~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~210~^0.07^6^0.02^~1~^~A~^^^1^0.00^0.50^2^-0.04^0.18^~1, 2, 3~^~03/01/2015~ -~11578~^~211~^1.37^6^0.07^~1~^~A~^^^1^1.24^1.54^2^1.08^1.65^~2, 3~^~04/01/2013~ -~11578~^~212~^1.40^6^0.03^~1~^~A~^^^1^1.31^1.62^3^1.30^1.49^~2, 3~^~04/01/2013~ -~11578~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~255~^94.09^11^0.13^~1~^~A~^^^1^93.15^94.59^7^93.76^94.40^~2, 3~^~04/01/2013~ -~11578~^~269~^2.84^6^0.11^~1~^~A~^^^1^2.55^3.65^3^2.50^3.18^~2, 3~^~03/01/2015~ -~11578~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~303~^0.28^11^2.0e-03^~1~^~A~^^^1^0.20^0.31^9^0.27^0.28^~2, 3~^~04/01/2013~ -~11578~^~309~^0.12^11^2.0e-03^~1~^~A~^^^1^0.09^0.13^5^0.11^0.12^~2, 3~^~04/01/2013~ -~11578~^~323~^1.02^6^0.01^~1~^~A~^^^1^0.81^1.12^2^0.94^1.09^~2, 3~^~04/01/2013~ -~11578~^~341~^0.03^6^3.0e-03^~1~^~A~^^^1^0.00^0.03^4^0.01^0.03^~1, 2, 3~^~03/01/2015~ -~11578~^~342~^0.06^6^6.0e-03^~1~^~A~^^^1^0.06^0.08^2^0.04^0.08^~2, 3~^~04/01/2013~ -~11578~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~345~^0.34^6^6.0e-03^~1~^~A~^^^1^0.28^0.37^2^0.31^0.35^~2, 3~^~04/01/2013~ -~11578~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~11578~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11578~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11578~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11579~^~203~^1.42^56^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~204~^0.25^56^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~205~^7.13^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11579~^~207~^0.96^56^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~255~^90.24^56^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~303~^0.65^55^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~309~^0.51^18^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11581~^~203~^2.59^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~205~^9.26^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11581~^~207~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~255~^87.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~269~^2.41^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~303~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~309~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~323~^0.29^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11581~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11581~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11583~^~203~^3.33^36^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~204~^0.52^36^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~205~^13.47^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~11583~^~207~^0.60^25^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~255~^82.08^28^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~303~^0.95^36^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~309~^0.45^14^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11584~^~203~^2.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~205~^13.09^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11584~^~207~^0.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~255~^83.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~269~^3.12^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~ -~11584~^~303~^0.82^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~309~^0.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~323~^0.38^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~ -~11584~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11584~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11584~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11585~^~203~^0.91^13^8.0e-03^~1~^~A~^^^1^0.90^0.92^1^0.80^1.01^~4~^~04/01/2013~ -~11585~^~204~^0.32^13^0.05^~1~^~A~^^^1^0.24^0.34^1^-0.36^0.99^~4~^~04/01/2013~ -~11585~^~205~^3.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~207~^0.82^13^3.0e-03^~1~^~A~^^^1^0.81^0.82^1^0.77^0.85^~4~^~04/01/2013~ -~11585~^~209~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~210~^0.09^12^0.08^~1~^~A~^^^1^0.00^0.22^2^-0.27^0.44^~1, 4~^~04/01/2013~ -~11585~^~211~^1.33^8^0.02^~1~^~A~^^^1^1.33^1.37^1^1.04^1.64^~4~^~07/01/2015~ -~11585~^~212~^1.37^8^0.06^~1~^~A~^^^1^1.36^1.46^1^0.62^2.14^~4~^~07/01/2015~ -~11585~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~255~^94.13^13^0.15^~1~^~A~^^^1^93.91^94.20^1^92.12^96.13^~4~^~04/01/2013~ -~11585~^~269~^2.78^8^0.20^~1~^~A~^^^1^2.69^3.06^1^0.17^5.39^~4~^~07/01/2015~ -~11585~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~303~^0.29^13^0.03^~1~^~A~^^^1^0.24^0.30^1^-0.15^0.72^~4~^~04/01/2013~ -~11585~^~309~^0.12^13^9.0e-03^~1~^~A~^^^1^0.11^0.12^1^6.0e-03^0.23^~4~^~04/01/2013~ -~11585~^~323~^1.02^6^0.13^~1~^~A~^^^1^0.84^1.08^1^-0.66^2.69^~4~^~04/01/2013~ -~11585~^~341~^0.02^9^5.0e-03^~1~^~A~^^^1^0.02^0.03^2^3.0e-03^0.04^~1, 4~^~04/01/2013~ -~11585~^~342~^0.06^6^2.0e-03^~1~^~A~^^^1^0.06^0.07^1^0.04^0.08^~4~^~04/01/2013~ -~11585~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~345~^0.34^6^0.03^~1~^~A~^^^1^0.29^0.35^1^-0.11^0.79^~4~^~04/01/2013~ -~11585~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^1^0.00^0.00^~1, 4~^~04/01/2013~ -~11585~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11585~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11587~^~203~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11587~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~255~^93.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~309~^0.43^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11588~^~203~^1.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~205~^23.94^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11588~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~255~^73.46^3^4.32^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~269~^4.80^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~11588~^~303~^0.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~309~^0.50^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~323~^1.20^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11588~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11588~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11588~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11590~^~203~^0.88^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~204~^0.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~205~^12.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11590~^~207~^0.34^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~255~^86.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~269~^2.46^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11590~^~303~^0.87^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~309~^0.38^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~323~^0.50^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11590~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11590~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11590~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11591~^~203~^2.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~205~^1.29^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11591~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~255~^95.11^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11591~^~269~^0.20^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11591~^~303~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~309~^0.11^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11591~^~323~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11591~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11591~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11591~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11593~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~205~^3.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11593~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~255~^96.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~303~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~309~^0.61^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11594~^~203~^0.40^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11594~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~205~^3.04^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11594~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~255~^96.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~269~^1.18^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11594~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~309~^0.59^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~323~^0.08^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11594~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11594~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11594~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11595~^~203~^6.95^7^2.97^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~204~^0.87^7^0.32^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11595~^~207~^0.83^7^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~255~^87.04^8^1.25^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~303~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~309~^0.39^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11595~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11596~^~203~^5.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~204~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~205~^3.21^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11596~^~207~^0.71^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~255~^90.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~303~^1.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11597~^~203~^5.85^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~204~^1.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~205~^14.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11597~^~207~^2.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~255~^76.85^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~303~^4.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~309~^1.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11599~^~203~^11.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~204~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~205~^28.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11599~^~207~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~255~^57.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~303~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~309~^1.39^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11601~^~203~^1.53^6^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~204~^0.17^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~205~^27.88^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11601~^~207~^0.82^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~255~^69.60^12^0.96^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~269~^0.50^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11601~^~303~^0.54^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~309~^0.24^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~323~^0.35^0^^~4~^~BFSN~^~11507~^^^^^^^^^~03/01/2007~ -~11601~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11601~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11601~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11602~^~203~^1.49^6^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~204~^0.14^6^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~205~^27.48^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11602~^~207~^0.76^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11602~^~255~^70.13^12^1.13^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~269~^0.49^0^^~4~^~BFSN~^~11601~^^^^^^^^^~01/01/2003~ -~11602~^~303~^0.52^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~309~^0.20^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~323~^0.34^0^^~4~^~BFSN~^~11601~^^^^^^^^^~03/01/2007~ -~11602~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11602~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11602~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11603~^~203~^0.72^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~204~^0.09^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~205~^8.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11603~^~207~^0.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~255~^90.07^3^0.81^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~269~^1.80^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~ -~11603~^~303~^0.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~309~^0.16^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~323~^0.46^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11603~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11603~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11603~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11604~^~203~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~205~^8.82^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11604~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~255~^90.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11605~^~203~^0.84^29^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~204~^0.06^29^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~205~^18.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11605~^~207~^0.76^29^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~255~^80.16^29^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~303~^0.36^29^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11609~^~203~^0.80^60^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~204~^0.08^60^1.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~205~^16.28^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11609~^~207~^0.96^70^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~255~^81.88^70^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~269~^11.05^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11609~^~303~^0.41^70^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~309~^0.26^38^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~323~^0.06^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11609~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11609~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11613~^~203~^1.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~204~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~205~^3.06^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11613~^~207~^1.44^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~255~^93.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~303~^3.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11614~^~203~^2.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~204~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~205~^3.55^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11614~^~207~^1.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~255~^91.88^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~303~^3.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11615~^~203~^21.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~204~^3.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~205~^64.29^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11615~^~207~^9.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~303~^20.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~309~^5.12^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11616~^~203~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~204~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~205~^3.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11616~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~255~^93.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~303~^2.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11617~^~203~^1.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~204~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~205~^2.93^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11617~^~207~^1.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~303~^2.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11618~^~203~^4.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~204~^1.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~205~^31.68^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11618~^~207~^1.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~255~^60.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~303~^1.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~309~^1.15^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11620~^~203~^2.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~205~^8.53^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11620~^~207~^0.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~255~^88.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~303~^0.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~309~^0.45^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11621~^~203~^2.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~204~^0.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~205~^8.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11621~^~207~^1.12^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~255~^88.42^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~303~^0.45^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~309~^0.42^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11624~^~203~^15.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~204~^2.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~205~^74.65^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11624~^~207~^6.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~303~^7.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~309~^0.66^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11625~^~203~^31.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~204~^5.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~205~^42.38^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11625~^~207~^19.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~303~^53.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~309~^6.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11626~^~203~^1.40^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~204~^0.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~205~^2.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11626~^~207~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~255~^96.10^5^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~269~^0.70^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11626~^~303~^0.43^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11626~^~323~^0.04^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~ -~11626~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11626~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11626~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11632~^~203~^0.92^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~204~^0.94^3^0.17^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~205~^4.74^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11632~^~207~^4.51^3^0.32^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~255~^88.89^3^0.52^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~269~^2.14^0^^~4~^~O~^~11979~^^^^^^^^^~02/01/2003~ -~11632~^~303~^1.88^3^0.39^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~309~^0.34^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11632~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11637~^~203~^1.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~205~^2.63^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11637~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~255~^95.37^4^0.47^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~309~^0.13^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11637~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11640~^~203~^12.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~204~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~205~^80.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11640~^~207~^4.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~269~^38.16^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~303~^6.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~309~^1.93^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~323~^0.18^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11641~^~203~^1.21^6^0.06^~1~^^^^2^0.91^1.50^4^1.03^1.38^~2, 3~^~03/01/2007~ -~11641~^~204~^0.18^3^0.06^~1~^^^^2^0.10^0.30^1^-0.66^1.02^~2, 3~^~01/01/2003~ -~11641~^~205~^3.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11641~^~207~^0.62^5^0.02^~1~^^^^2^0.49^0.70^3^0.54^0.69^~2, 3~^~01/01/2003~ -~11641~^~210~^0.03^4^0.02^~1~^^^^2^0.00^0.10^2^-0.07^0.13^~2, 3~^~01/01/2003~ -~11641~^~211~^0.75^4^0.07^~1~^^^^2^0.58^1.00^2^0.42^1.06^~2, 3~^~01/01/2003~ -~11641~^~212~^0.95^4^0.07^~1~^^^^2^0.50^1.20^2^0.62^1.27^~2, 3~^~01/01/2003~ -~11641~^~255~^94.64^14^0.09^~1~^^^^5^93.30^95.80^7^94.41^94.86^~2, 3~^~01/01/2003~ -~11641~^~269~^2.20^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11641~^~303~^0.35^6^0.01^~1~^^^^2^0.30^0.40^4^0.31^0.37^~2, 3~^~01/01/2003~ -~11641~^~309~^0.29^6^0.01^~1~^^^^2^0.23^0.36^4^0.25^0.32^~2, 3~^~01/01/2003~ -~11641~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11641~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11641~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11641~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11642~^~203~^0.91^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~204~^0.31^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11642~^~207~^0.77^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~255~^93.70^6^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~269~^2.59^0^^~4~^~BFSN~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~303~^0.36^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~309~^0.39^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~323~^0.14^0^^~4~^~BFSN~^~11641~^^^^^^^^^~01/01/2003~ -~11642~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11642~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11642~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11643~^~203~^0.95^5^0.10^~1~^^^^1^0.59^1.20^4^0.66^1.24^~4~^~03/01/2007~ -~11643~^~204~^0.13^5^0.01^~1~^^^^1^0.10^0.16^4^0.10^0.16^~4~^~01/01/2003~ -~11643~^~205~^8.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~207~^0.57^5^0.02^~1~^^^^1^0.48^0.64^4^0.49^0.64^~4~^~01/01/2003~ -~11643~^~255~^89.76^13^0.76^~1~^^^^1^87.70^94.53^7^87.95^91.56^~4~^~01/01/2003~ -~11643~^~269~^2.20^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11643~^~303~^0.58^5^0.06^~1~^^^^1^0.37^0.80^4^0.39^0.77^~4~^~01/01/2003~ -~11643~^~309~^0.21^3^0.01^~1~^^^^1^0.19^0.25^2^0.13^0.29^~4~^~01/01/2003~ -~11643~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11643~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11643~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11643~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11644~^~203~^0.89^9^0.07^~1~^^^^2^0.68^1.01^3^0.66^1.12^~4~^~03/01/2006~ -~11644~^~204~^0.35^10^0.11^~1~^^^^2^0.17^0.67^3^-0.01^0.71^~4~^~03/01/2006~ -~11644~^~205~^8.85^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~207~^0.69^10^0.05^~1~^^^^2^0.56^0.81^3^0.52^0.85^~4~^~03/01/2006~ -~11644~^~255~^89.21^11^0.39^~1~^^^^2^88.07^89.84^3^87.95^90.46^~4~^~03/01/2006~ -~11644~^~269~^3.30^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11644~^~303~^0.44^10^0.07^~1~^^^^2^0.28^0.58^3^0.19^0.67^~4~^~03/01/2006~ -~11644~^~309~^0.22^9^0.02^~1~^^^^2^0.17^0.26^2^0.10^0.34^~4~^~03/01/2006~ -~11644~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11644~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11644~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11644~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11645~^~203~^0.98^26^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~204~^0.20^16^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~205~^20.93^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11645~^~207~^0.50^26^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~255~^77.39^26^0.58^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~269~^15.40^0^^~4~^~T~^^^^^^^^^^~02/01/2007~ -~11645~^~303~^0.80^36^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~309~^0.19^36^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~323~^0.94^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~ -~11645~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11645~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11645~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11647~^~203~^1.28^29^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~204~^0.32^29^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~205~^25.36^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11647~^~207~^0.57^29^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~255~^72.47^29^0.62^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~269~^5.74^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~303~^0.95^29^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~309~^0.16^10^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~323~^1.15^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~ -~11647~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11649~^~203~^1.44^5^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~204~^0.27^5^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~205~^7.24^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11649~^~207~^1.98^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~255~^89.08^5^0.42^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~303~^3.48^5^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~309~^0.34^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11653~^~203~^5.25^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~204~^0.90^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~205~^11.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11653~^~207~^0.95^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~255~^81.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~303~^1.97^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~309~^0.50^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11654~^~203~^1.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~204~^0.32^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~205~^4.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11654~^~207~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~255~^93.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~303~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11655~^~203~^0.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~205~^9.28^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11655~^~207~^0.75^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~255~^88.87^3^0.42^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~269~^3.91^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~303~^0.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~323~^1.16^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~ -~11655~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11655~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11655~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11656~^~203~^4.42^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~204~^5.04^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~205~^16.97^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~207~^1.23^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~209~^8.68^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~255~^72.33^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~269~^6.59^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~303~^0.53^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~309~^0.48^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~323~^0.27^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~342~^0.17^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~418~^0.31^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11657~^~203~^1.91^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~204~^0.57^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~205~^17.57^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11657~^~207~^1.46^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~210~^0.16^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11657~^~211~^0.31^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11657~^~212~^0.25^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11657~^~213~^0.76^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~255~^78.48^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~269~^1.48^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~303~^0.27^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~309~^0.28^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~323~^0.02^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~418~^0.07^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11657~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11658~^~203~^7.89^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~204~^12.95^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~205~^5.90^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~207~^2.52^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~210~^0.06^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~211~^0.08^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~212~^0.05^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~213~^1.51^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~214~^0.03^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~255~^70.73^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~269~^1.85^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~287~^0.04^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~303~^1.19^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~309~^0.85^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~323~^0.93^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~341~^0.01^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~342~^0.16^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11658~^~418~^0.40^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11659~^~203~^0.89^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~204~^3.54^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~205~^32.12^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~207~^0.69^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~210~^26.56^0^^~4~^~RC~^^^^^^^^^^~11/01/2012~ -~11659~^~211~^0.38^0^^~4~^~RC~^^^^^^^^^^~11/01/2012~ -~11659~^~212~^0.31^0^^~4~^~RC~^^^^^^^^^^~11/01/2012~ -~11659~^~213~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~214~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~255~^62.75^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~269~^27.25^0^^~4~^~RC~^^^^^^^^^^~11/01/2012~ -~11659~^~287~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~303~^0.79^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~309~^0.17^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~323~^0.90^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~342~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~344~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~345~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~346~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~347~^0.00^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~418~^0.01^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11659~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11660~^~203~^1.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~204~^2.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~205~^13.05^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11660~^~207~^1.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~255~^80.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~303~^1.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11663~^~203~^6.21^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~205~^80.88^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11663~^~207~^3.93^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~255~^8.68^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~269~^2.97^0^^~4~^~BFSN~^~11442~^^^^^^^^^~02/01/2003~ -~11663~^~303~^21.40^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~309~^5.80^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~323~^5.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11663~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11663~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11663~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11666~^~203~^5.92^14^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~204~^0.39^10^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~205~^2.42^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11666~^~207~^0.60^8^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~255~^90.67^5^1.00^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~269~^0.30^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~303~^2.79^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~323~^0.49^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~ -~11666~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11667~^~203~^57.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~204~^7.72^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~205~^23.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11667~^~207~^6.23^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~255~^4.68^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~269~^3.10^0^^~4~^~BFSN~^~11442~^^^^^^^^^~02/01/2003~ -~11667~^~303~^28.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~309~^2.00^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~323~^5.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11667~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11667~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11667~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11669~^~203~^3.03^3^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~204~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~205~^9.14^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11669~^~207~^7.20^4^0.92^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~255~^79.99^4^2.63^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~269~^0.65^0^^~4~^~BFSN~^~11446~^^^^^^^^^~02/01/2003~ -~11669~^~303~^2.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~309~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~323~^1.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11669~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11669~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11669~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11670~^~203~^2.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~205~^9.46^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11670~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~255~^87.74^5^1.21^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~269~^5.10^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~ -~11670~^~303~^1.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~309~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~11670~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11670~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11670~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11671~^~203~^2.35^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~204~^1.28^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~205~^15.47^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11671~^~207~^1.29^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~255~^79.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~303~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~309~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11672~^~203~^6.08^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~204~^14.76^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~205~^27.81^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~207~^3.59^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~209~^20.88^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~210~^0.39^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~211~^0.76^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~212~^0.56^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~213~^0.03^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~214~^0.03^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~255~^47.77^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~269~^1.79^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~287~^0.03^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~303~^1.67^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~309~^0.70^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~323~^0.23^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~341~^0.01^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~342~^0.13^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~343~^0.01^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~344~^0.01^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~418~^0.29^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11674~^~203~^2.50^21^^~1~^~A~^^^0^2.10^2.63^^^^~2~^~06/01/2002~ -~11674~^~204~^0.13^21^^~1~^~A~^^^0^0.13^0.15^^^^~2~^~06/01/2002~ -~11674~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11674~^~207~^1.33^21^^~1~^~A~^^^0^1.24^1.35^^^^~2~^~06/01/2002~ -~11674~^~209~^17.27^21^^~1~^~A~^^^0^15.15^17.99^^^^~2~^~05/01/2002~ -~11674~^~210~^0.40^21^^~1~^~A~^^^0^0.39^0.45^^^^~2~^~05/01/2002~ -~11674~^~211~^0.44^21^^~1~^~A~^^^0^0.37^0.63^^^^~2~^~05/01/2002~ -~11674~^~212~^0.34^21^^~1~^~A~^^^0^0.32^0.44^^^^~2~^~05/01/2002~ -~11674~^~213~^0.00^21^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11674~^~214~^0.00^21^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11674~^~255~^74.89^21^^~1~^~A~^^^0^74.45^76.67^^^^~2~^~06/01/2002~ -~11674~^~269~^1.18^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11674~^~287~^0.00^11^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11674~^~303~^1.08^47^0.02^~6~^~JA~^^^4^0.64^3.59^3^1.01^1.15^~2~^~06/01/2002~ -~11674~^~309~^0.36^47^1.0e-03^~6~^~JA~^^^4^0.18^0.49^3^0.35^0.35^~2~^~06/01/2002~ -~11674~^~323~^0.04^2^^~1~^~A~^^^^0.04^0.05^^^^^~05/01/2002~ -~11674~^~341~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11674~^~342~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11674~^~343~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11674~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11674~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11674~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11675~^~203~^2.44^6^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~205~^24.24^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~11675~^~207~^1.18^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~255~^72.04^10^1.06^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~303~^1.24^10^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~309~^0.36^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11676~^~203~^3.81^3^0.92^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~204~^2.53^3^1.56^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~205~^3.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11676~^~207~^0.53^3^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~255~^90.07^3^2.96^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~303~^0.86^3^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~309~^0.56^3^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11677~^~203~^2.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~205~^16.80^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11677~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~255~^79.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~269~^7.87^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~309~^0.40^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~323~^0.04^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~11683~^~203~^8.10^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~204~^1.49^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~205~^79.57^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11683~^~207~^6.84^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~255~^4.00^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~269~^38.82^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~303~^3.93^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~309~^1.57^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~323~^5.45^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~ -~11683~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11683~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11683~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11693~^~203~^1.64^31^0.08^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~204~^0.28^31^0.03^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~205~^7.29^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~ -~11693~^~207~^1.35^31^0.06^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~210~^0.02^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~211~^2.03^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~212~^2.34^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~213~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~214~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~255~^89.44^31^0.31^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~269~^4.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~11693~^~287~^0.00^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~303~^1.30^31^0.17^~1~^~A~^^^^^^^^^^~05/01/1996~ -~11693~^~309~^0.27^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~323~^1.25^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~ -~11693~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~11693~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11693~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11695~^~203~^1.16^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~204~^0.19^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~205~^3.18^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11695~^~207~^0.69^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~255~^94.78^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~303~^0.47^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~309~^0.14^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11696~^~203~^0.98^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~204~^0.26^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~205~^2.98^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~11696~^~207~^0.50^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~255~^95.28^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~303~^0.49^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~309~^0.28^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11697~^~203~^4.24^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~204~^0.20^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~205~^13.39^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11697~^~207~^1.42^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~255~^80.75^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~303~^2.22^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~309~^0.63^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11698~^~203~^3.36^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~204~^0.56^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~205~^3.01^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~11698~^~207~^1.67^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~255~^91.40^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~303~^2.30^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~309~^0.71^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11700~^~203~^2.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~204~^0.18^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11700~^~207~^2.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~255~^91.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~303~^2.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~309~^0.88^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11701~^~203~^4.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~205~^16.14^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11701~^~207~^2.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~255~^77.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~303~^1.21^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11702~^~203~^2.89^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~204~^0.34^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~205~^11.39^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11702~^~207~^1.30^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~11702~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~210~^0.73^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~211~^0.24^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~212~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~255~^84.08^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~269~^0.99^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~11702~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~11702~^~303~^0.61^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~309~^0.40^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11702~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11702~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11702~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11703~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~205~^9.18^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11703~^~207~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~255~^86.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~269~^0.84^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~303~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~309~^0.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~323~^0.16^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~ -~11703~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11703~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11703~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11705~^~203~^2.40^4^0.12^~1~^~A~^^^1^2.23^2.77^3^2.00^2.79^~2, 3~^~12/01/2002~ -~11705~^~204~^0.22^4^0.03^~1~^~A~^^^1^0.16^0.31^3^0.11^0.32^~2, 3~^~12/01/2002~ -~11705~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~207~^0.63^4^0.02^~1~^~A~^^^1^0.60^0.69^3^0.57^0.69^~2, 3~^~12/01/2002~ -~11705~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2002~ -~11705~^~210~^0.08^4^0.05^~1~^~A~^^^1^0.03^0.24^3^-0.07^0.24^~1, 2, 3~^~12/01/2002~ -~11705~^~211~^0.42^4^0.06^~1~^~A~^^^1^0.24^0.53^3^0.21^0.63^~2, 3~^~12/01/2002~ -~11705~^~212~^0.79^4^0.08^~1~^~A~^^^1^0.56^0.95^3^0.51^1.07^~2, 3~^~12/01/2002~ -~11705~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11705~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~11705~^~255~^92.63^4^0.14^~1~^~A~^^^1^92.29^92.93^3^92.18^93.08^~2, 3~^~12/01/2002~ -~11705~^~269~^1.30^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11705~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11705~^~303~^0.91^4^0.11^~1~^~A~^^^1^0.58^1.08^3^0.54^1.26^~2, 3~^~12/01/2002~ -~11705~^~309~^0.60^4^0.03^~1~^~A~^^^1^0.51^0.66^3^0.49^0.70^~2, 3~^~12/01/2002~ -~11705~^~323~^1.50^0^^~4~^~BFZN~^~11012~^^^^^^^^^~03/01/2006~ -~11705~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11705~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11705~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11707~^~203~^1.80^158^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~204~^0.18^142^6.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~205~^2.48^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~207~^1.22^5^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~255~^94.32^186^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~269~^1.00^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~303~^0.60^195^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11707~^~309~^0.47^78^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~323~^0.29^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~ -~11707~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11707~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11707~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11709~^~203~^2.95^4^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~204~^0.42^4^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~205~^1.92^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~207~^0.61^4^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~255~^94.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~269~^0.32^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11709~^~303~^0.56^38^0.03^~6~^~JA~^^^7^0.32^1.40^37^0.49^0.62^~4~^~12/01/2002~ -~11709~^~309~^0.41^38^0.01^~6~^~JA~^^^7^0.17^0.71^37^0.37^0.44^~4~^~12/01/2002~ -~11709~^~323~^1.20^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~341~^0.02^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~342~^0.17^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~343~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~344~^0.02^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~345~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~346~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~347~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11709~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11709~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11710~^~203~^3.60^1^^~1~^^^^^^^^^^^~05/01/2006~ -~11710~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~205~^6.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11710~^~207~^1.35^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11710~^~255~^88.69^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~269~^1.04^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~303~^1.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11710~^~323~^1.45^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~ -~11710~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11710~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11710~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11711~^~203~^0.84^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~204~^0.18^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~205~^4.32^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11711~^~207~^0.71^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~255~^93.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~269~^1.95^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11711~^~303~^0.38^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~309~^0.77^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~323~^0.14^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~ -~11711~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11711~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11711~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11712~^~203~^1.53^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~205~^1.52^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11712~^~207~^0.81^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~11712~^~255~^95.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~303~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~309~^0.47^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11713~^~203~^4.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~204~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~205~^4.72^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11713~^~207~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~255~^89.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~303~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~309~^0.44^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11714~^~203~^6.81^12^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~204~^0.32^12^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~205~^23.64^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11714~^~207~^2.06^12^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~255~^67.17^12^0.94^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~269~^1.63^0^^~4~^~BFSN~^~11031~^^^^^^^^^~12/01/2002~ -~11714~^~303~^2.45^12^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~309~^0.79^12^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~11714~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11714~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11714~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11715~^~203~^4.07^109^0.06^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~204~^0.29^107^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~205~^13.33^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11715~^~207~^1.14^108^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~255~^81.17^106^0.24^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~269~^0.93^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11715~^~303~^1.61^115^0.06^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11715~^~309~^0.64^44^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~323~^0.29^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11715~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11715~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11715~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11716~^~203~^6.65^6^0.46^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~204~^0.30^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~205~^19.45^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11716~^~207~^1.25^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~255~^72.35^6^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~269~^1.37^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~ -~11716~^~303~^1.96^6^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~309~^0.55^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~323~^0.64^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11716~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11716~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11716~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11717~^~203~^6.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~204~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~205~^19.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~210~^1.13^2^^~1~^^^^2^0.56^1.70^1^^^^~12/01/2002~ -~11717~^~211~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11717~^~212~^0.21^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11717~^~213~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11717~^~214~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~11717~^~255~^72.98^2^^~1~^^^^2^72.00^73.95^1^^^^~12/01/2002~ -~11717~^~269~^1.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11717~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~11717~^~303~^1.82^48^0.04^~1~^^^^5^1.19^2.46^37^1.72^1.92^~2, 3~^~12/01/2002~ -~11717~^~309~^0.74^48^0.02^~1~^^^^5^0.44^1.70^23^0.69^0.79^~2, 3~^~12/01/2002~ -~11717~^~323~^0.29^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11717~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11717~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11717~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11718~^~203~^2.03^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11718~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~205~^3.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11718~^~207~^0.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11718~^~255~^93.39^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~269~^2.84^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~303~^0.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~309~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~323~^0.07^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~ -~11718~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11718~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11718~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11719~^~203~^7.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~204~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~205~^15.01^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~11719~^~207~^1.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~255~^76.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~303~^2.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~309~^0.97^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11720~^~203~^9.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~204~^0.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~205~^30.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11720~^~207~^1.33^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~255~^58.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~303~^2.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~309~^0.69^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11721~^~203~^1.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~204~^0.32^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11721~^~207~^0.93^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11721~^~255~^93.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~303~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11722~^~203~^1.82^100^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~204~^0.12^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~205~^7.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11722~^~207~^0.66^140^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~255~^90.27^161^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~269~^3.27^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11722~^~303~^1.04^151^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~309~^0.24^148^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~323~^0.41^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11722~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11722~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11722~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11723~^~203~^1.89^5^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~204~^0.28^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~205~^7.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11723~^~207~^0.73^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~255~^89.22^6^1.14^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~269~^3.63^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11723~^~303~^0.65^28^0.02^~1~^^^^4^0.43^1.11^27^0.59^0.70^~4~^~06/01/2005~ -~11723~^~309~^0.25^28^0.01^~1~^^^^4^0.13^0.38^27^0.22^0.26^~4~^~06/01/2005~ -~11723~^~323~^0.46^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2015~ -~11723~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11723~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11723~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11724~^~203~^1.89^5^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~204~^0.28^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~205~^7.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11724~^~207~^0.73^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~255~^89.22^6^1.14^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~269~^3.63^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11724~^~303~^1.28^5^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~309~^0.36^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~323~^0.46^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11724~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11724~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11724~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11725~^~203~^1.89^5^0.28^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~204~^0.28^5^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~205~^7.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11725~^~207~^0.73^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~255~^89.22^6^1.14^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~269~^3.63^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11725~^~303~^1.28^5^0.21^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~309~^0.36^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~323~^0.46^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~ -~11725~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11725~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11725~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11726~^~203~^0.80^999^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~204~^0.10^932^5.0e-03^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11726~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11726~^~207~^0.92^852^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~255~^94.68^948^0.05^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~303~^0.90^1016^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11726~^~309~^0.20^454^4.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~11726~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11726~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11726~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11727~^~203~^0.80^999^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~204~^0.10^932^5.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~11727~^~207~^0.92^852^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~255~^94.68^948^0.05^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~269~^0.62^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11727~^~303~^0.90^1016^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11727~^~309~^0.20^454^4.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~323~^0.03^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~ -~11727~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11727~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11727~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~203~^0.80^999^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~204~^0.10^932^5.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11728~^~207~^0.92^852^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~255~^94.68^948^0.05^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~269~^0.62^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~303~^0.90^1016^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11728~^~309~^0.20^454^4.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~323~^0.23^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~ -~11728~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11728~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11729~^~203~^1.12^4^9.0e-03^~1~^~A~^^^1^0.97^1.37^1^1.00^1.23^~2, 3~^~08/01/2014~ -~11729~^~204~^0.46^4^0.05^~1~^~A~^^^1^0.30^0.60^1^-0.17^1.08^~2, 3~^~08/01/2014~ -~11729~^~205~^4.32^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11729~^~207~^0.73^4^0.23^~1~^~A~^^^1^0.23^0.97^1^-2.21^3.66^~2, 3~^~08/01/2014~ -~11729~^~209~^1.00^2^^~1~^~A~^^^1^0.60^1.40^1^^^^~04/01/2011~ -~11729~^~210~^0.16^2^^~1~^~A~^^^1^0.07^0.24^1^^^~1~^~08/01/2014~ -~11729~^~211~^0.29^2^^~1~^~A~^^^1^0.07^0.51^1^^^~1~^~08/01/2014~ -~11729~^~212~^0.33^2^^~1~^~A~^^^1^0.07^0.58^1^^^~1~^~08/01/2014~ -~11729~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2011~ -~11729~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2014~ -~11729~^~255~^93.38^4^0.13^~1~^~A~^^^1^92.29^94.03^1^91.68^95.08^~2, 3~^~08/01/2014~ -~11729~^~269~^0.78^2^^~1~^~A~^^^1^0.22^1.33^1^^^^~08/01/2014~ -~11729~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2011~ -~11729~^~303~^1.06^4^0.38^~1~^~A~^^^1^0.44^2.02^1^-3.85^5.97^~2, 3~^~08/01/2014~ -~11729~^~309~^0.20^4^5.0e-03^~1~^~A~^^^1^0.18^0.22^1^0.14^0.25^~2, 3~^~08/01/2014~ -~11729~^~323~^0.03^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11729~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11729~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11729~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11730~^~203~^1.80^99^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~204~^0.21^97^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~205~^7.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11730~^~207~^0.53^92^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~255~^89.88^95^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~269~^2.22^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~303~^0.86^98^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~309~^0.26^20^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~323~^0.05^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~ -~11730~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11730~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11730~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11731~^~203~^1.49^10^0.07^~1~^^^^^^^^^^^~02/01/1995~ -~11731~^~204~^0.17^10^0.02^~1~^^^^^^^^^^^~02/01/1995~ -~11731~^~205~^6.45^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11731~^~207~^0.47^10^0.03^~1~^^^^^^^^^^^~08/01/2015~ -~11731~^~255~^91.42^10^0.44^~1~^^^^^^^^^^^~02/01/1995~ -~11731~^~269~^1.88^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11731~^~303~^0.66^40^0.03^~1~^^^^1^0.37^0.91^20^0.58^0.72^~4~^~03/01/2006~ -~11731~^~309~^0.24^40^0.01^~1~^^^^1^0.13^0.36^20^0.21^0.27^~4~^~03/01/2006~ -~11731~^~323~^0.04^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~342~^0.08^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~343~^0.01^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11731~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11731~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11732~^~203~^1.49^10^0.07^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~204~^0.17^10^0.02^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~205~^6.45^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11732~^~207~^0.47^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~255~^91.42^10^0.44^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~269~^1.88^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11732~^~303~^0.88^10^0.07^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~309~^0.48^10^0.23^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~323~^0.04^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11732~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11732~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11732~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11733~^~203~^1.49^10^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~204~^0.17^10^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~205~^6.45^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~11733~^~207~^0.47^10^0.03^~1~^^^^^^^^^^^~08/01/2015~ -~11733~^~255~^91.42^10^0.44^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~269~^1.88^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~ -~11733~^~303~^0.88^10^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~309~^0.48^10^0.23^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~323~^0.04^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~ -~11733~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11733~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11733~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11734~^~203~^1.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~205~^9.96^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11734~^~207~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~255~^87.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~269~^7.96^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11734~^~303~^0.79^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~309~^0.35^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~323~^0.04^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~ -~11734~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11734~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11734~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11735~^~203~^0.80^203^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~204~^0.07^197^3.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~205~^6.57^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~207~^0.94^197^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~255~^91.62^196^0.09^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~269~^5.38^0^^~4~^~O~^~11082~^^^^^^^^^~01/01/2007~ -~11735~^~303~^0.63^206^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11735~^~309~^0.23^67^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~323~^0.03^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~ -~11735~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11735~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11735~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11736~^~203~^2.57^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~204~^0.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~205~^5.46^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11736~^~207~^2.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~255~^89.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~269~^0.60^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~303~^1.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~309~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~323~^1.81^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~ -~11736~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11737~^~203~^2.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~204~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~205~^3.55^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11737~^~207~^1.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~255~^91.88^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~303~^3.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~309~^0.22^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11738~^~203~^4.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~204~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~205~^10.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11738~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~255~^83.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~303~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~309~^0.47^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11739~^~203~^2.98^22^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~204~^0.35^22^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~205~^5.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11739~^~207~^0.92^23^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~255~^90.69^33^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~269~^1.48^0^^~4~^~BFSN~^~11090~^^^^^^^^^~04/01/2015~ -~11739~^~303~^0.88^34^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~309~^0.40^33^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11739~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11740~^~203~^2.98^22^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~204~^0.35^22^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~205~^5.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11740~^~207~^0.92^23^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~255~^90.69^33^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~269~^1.48^0^^~4~^~BFSN~^~11090~^^^^^^^^^~04/01/2015~ -~11740~^~303~^0.88^34^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~309~^0.40^33^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11740~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11741~^~203~^2.98^22^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~204~^0.35^22^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~205~^5.24^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11741~^~207~^0.92^23^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~255~^90.69^33^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~303~^0.88^34^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~309~^0.40^33^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11742~^~203~^2.38^4^0.41^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~204~^0.41^4^0.03^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~205~^7.18^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~207~^0.77^4^0.03^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~210~^0.08^5^0.05^~6~^~JA~^^^3^0.00^0.30^4^-0.07^0.24^~1, 4~^~11/01/2006~ -~11742~^~211~^0.49^5^0.13^~6~^~JA~^^^3^0.15^0.83^4^0.11^0.87^~4~^~11/01/2006~ -~11742~^~212~^0.74^5^0.04^~6~^~JA~^^^3^0.63^0.89^4^0.61^0.87^~4~^~11/01/2006~ -~11742~^~213~^0.00^5^0.00^~6~^~JA~^^^3^0.00^0.00^4^0.00^0.00^~1, 4~^~11/01/2006~ -~11742~^~214~^0.00^5^0.00^~6~^~JA~^^^3^0.00^0.00^4^0.00^0.00^~1, 4~^~11/01/2006~ -~11742~^~255~^89.25^7^0.80^~6~^~JA~^^^4^87.03^91.80^6^87.28^91.21^~4~^~11/01/2006~ -~11742~^~269~^1.39^3^0.27^~6~^~JA~^^^2^1.03^1.92^2^0.23^2.55^~4~^~11/01/2006~ -~11742~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~11742~^~303~^0.67^4^0.03^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~309~^0.45^4^0.02^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~323~^1.45^3^0.10^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~341~^0.01^3^5.0e-03^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~342~^0.25^3^0.02^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~343~^0.00^3^0.00^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11742~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11742~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11743~^~203~^3.10^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~204~^0.12^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11743~^~207~^0.71^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~255~^90.72^9^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~269~^1.47^0^^~4~^~BFSN~^~11092~^^^^^^^^^~02/01/2007~ -~11743~^~303~^0.61^20^0.04^~1~^^^^1^0.40^1.04^19^0.53^0.69^~4~^~10/01/2002~ -~11743~^~309~^0.28^20^0.01^~1~^^^^1^0.17^0.47^19^0.25^0.31^~4~^~10/01/2002~ -~11743~^~323~^1.32^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~ -~11743~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11743~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11743~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11744~^~203~^3.10^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~204~^0.11^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11744~^~207~^0.71^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~255~^90.72^9^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~269~^1.44^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~303~^0.61^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~309~^0.30^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~323~^1.32^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~ -~11744~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11744~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11744~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11745~^~203~^2.55^5^0.48^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~204~^0.50^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~207~^0.95^5^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~255~^88.90^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~269~^1.74^0^^~4~^~BFZN~^~11099~^^^^^^^^^~06/01/2005~ -~11745~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~309~^0.33^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~323~^0.43^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~341~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~342~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~343~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~344~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~345~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~346~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~347~^0.00^1^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11746~^~203~^3.64^7^0.16^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~204~^0.39^7^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~205~^8.32^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11746~^~207~^0.91^7^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~255~^86.74^10^0.41^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~269~^2.08^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~ -~11746~^~303~^0.48^18^0.01^~1~^~A~^^^7^0.33^0.66^17^0.44^0.52^~4~^~06/01/2005~ -~11746~^~309~^0.24^18^0.01^~1~^~A~^^^7^0.17^0.37^17^0.21^0.26^~4~^~06/01/2005~ -~11746~^~323~^0.51^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~ -~11746~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11747~^~203~^2.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~204~^0.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11747~^~207~^0.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~255~^75.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~269~^3.55^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11747~^~303~^0.77^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~323~^0.46^0^^~4~^~BFSN~^~11104~^^^^^^^^^~12/01/2002~ -~11747~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11747~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11747~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11748~^~203~^0.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~204~^0.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~205~^2.16^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11748~^~207~^0.88^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~255~^96.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~303~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~309~^0.09^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11749~^~203~^1.21^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~204~^0.18^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~205~^5.37^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11749~^~207~^0.72^27^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~255~^92.52^57^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~303~^0.56^29^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~309~^0.18^39^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11750~^~203~^1.21^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~204~^0.18^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~205~^5.37^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11750~^~207~^0.72^27^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~255~^92.52^57^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~303~^0.56^29^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~309~^0.18^39^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11751~^~203~^1.27^4^0.06^~1~^~A~^^^1^1.16^1.44^3^1.05^1.49^~2, 3~^~03/01/2006~ -~11751~^~204~^0.06^4^0.02^~1~^~A~^^^1^0.02^0.11^3^-0.02^0.14^~1, 2, 3~^~03/01/2006~ -~11751~^~205~^5.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~207~^0.59^4^0.02^~1~^~A~^^^1^0.56^0.65^3^0.52^0.65^~2, 3~^~03/01/2006~ -~11751~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~211~^1.62^4^0.08^~1~^~A~^^^1^1.46^1.84^3^1.35^1.89^~2, 3~^~03/01/2006~ -~11751~^~212~^1.16^4^0.04^~1~^~A~^^^1^1.07^1.25^3^1.03^1.29^~2, 3~^~03/01/2006~ -~11751~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~255~^92.57^6^0.48^~6~^~JA~^^^2^91.40^94.30^1^86.76^98.38^~2, 3~^~03/01/2006~ -~11751~^~269~^2.79^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~287~^0.00^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11751~^~303~^0.17^29^0.01^~1~^^^^^^^^^^^~03/01/2006~ -~11751~^~309~^0.20^4^0.02^~1~^~A~^^^1^0.14^0.26^3^0.11^0.28^~2, 3~^~03/01/2006~ -~11751~^~323~^0.14^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11751~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11751~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11751~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11752~^~203~^1.51^3^0.09^~1~^~A~^^^1^1.32^1.62^2^1.10^1.92^~2, 3~^~06/01/2005~ -~11752~^~204~^0.09^4^0.04^~1~^~A~^^^1^0.02^0.16^3^-0.04^0.22^~1, 2, 3~^~06/01/2005~ -~11752~^~205~^6.94^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~207~^0.62^3^0.03^~1~^~A~^^^1^0.59^0.68^2^0.49^0.74^~2, 3~^~06/01/2005~ -~11752~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2006~ -~11752~^~210~^0.71^4^0.07^~1~^~A~^^^1^0.56^0.85^3^0.46^0.95^~2, 3~^~06/01/2005~ -~11752~^~211~^1.42^4^0.03^~1~^~A~^^^1^1.35^1.48^3^1.32^1.51^~2, 3~^~06/01/2005~ -~11752~^~212~^1.20^4^0.06^~1~^~A~^^^1^1.09^1.35^3^1.00^1.39^~2, 3~^~06/01/2005~ -~11752~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2006~ -~11752~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2006~ -~11752~^~255~^90.84^4^0.22^~1~^~A~^^^1^90.58^91.50^3^90.14^91.54^~2, 3~^~06/01/2005~ -~11752~^~269~^3.32^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~ -~11752~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~11752~^~303~^0.66^3^0.09^~1~^~A~^^^1^0.55^0.84^2^0.26^1.05^~2, 3~^~06/01/2005~ -~11752~^~309~^0.25^3^0.03^~1~^~A~^^^1^0.21^0.31^2^0.11^0.38^~2, 3~^~06/01/2005~ -~11752~^~323~^0.12^0^^~4~^~BFZN~^~11113~^^^^^^^^^~06/01/2005~ -~11752~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11752~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~11752~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~11753~^~203~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~205~^5.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11753~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~255~^92.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11754~^~203~^1.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~204~^0.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~205~^1.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11754~^~207~^0.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~255~^95.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~269~^0.83^0^^~4~^~O~^~11116~^^^^^^^^^~02/01/2007~ -~11754~^~303~^1.04^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~323~^0.09^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~ -~11754~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11754~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11754~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11755~^~203~^1.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~205~^2.41^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11755~^~207~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~255~^95.24^2^^~1~^^^^^^^^^^^~08/01/2001~ -~11755~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11756~^~203~^0.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~205~^4.74^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11756~^~207~^0.93^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11756~^~255~^93.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~303~^0.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~309~^0.18^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11757~^~203~^0.76^4^0.04^~1~^~A~^^^1^0.62^0.83^3^0.60^0.91^~2, 3~^~03/01/2006~ -~11757~^~204~^0.18^4^0.07^~1~^~A~^^^1^0.02^0.34^3^-0.05^0.40^~1, 2, 3~^~03/01/2006~ -~11757~^~205~^8.22^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~207~^0.67^4^0.04^~1~^~A~^^^1^0.58^0.78^3^0.54^0.80^~2, 3~^~03/01/2006~ -~11757~^~209~^0.17^2^^~1~^~A~^^^1^0.17^0.17^^^^~1~^~03/01/2006~ -~11757~^~210~^2.70^4^0.17^~1~^~A~^^^1^2.47^3.23^3^2.12^3.26^~2, 3~^~03/01/2006~ -~11757~^~211~^0.40^4^0.05^~1~^~A~^^^1^0.27^0.55^3^0.20^0.58^~2, 3~^~03/01/2006~ -~11757~^~212~^0.36^4^0.05^~1~^~A~^^^1^0.24^0.49^3^0.19^0.52^~2, 3~^~03/01/2006~ -~11757~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~255~^90.17^4^0.19^~1~^~A~^^^1^89.59^90.43^3^89.54^90.78^~2, 3~^~03/01/2006~ -~11757~^~269~^3.45^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~287~^0.00^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~ -~11757~^~303~^0.34^4^0.03^~1~^~A~^^^1^0.25^0.41^3^0.22^0.45^~2, 3~^~03/01/2006~ -~11757~^~309~^0.20^4^8.0e-03^~1~^~A~^^^1^0.19^0.23^3^0.17^0.23^~2, 3~^~03/01/2006~ -~11757~^~323~^1.03^4^0.08^~1~^~A~^^^1^0.79^1.19^3^0.75^1.29^~2, 3~^~03/01/2006~ -~11757~^~341~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~03/01/2006~ -~11757~^~342~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~03/01/2006~ -~11757~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~344~^0.05^4^0.03^~1~^~A~^^^1^0.00^0.12^3^-0.04^0.15^~1, 2, 3~^~03/01/2006~ -~11757~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11757~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11757~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11758~^~203~^0.59^155^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~204~^0.14^152^7.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~205~^5.36^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~207~^0.92^124^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~210~^1.92^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~211~^0.28^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~212~^0.26^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~213~^0.00^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~214~^0.00^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~255~^92.99^133^0.71^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~269~^2.46^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~287~^0.00^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~303~^0.52^147^0.03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11758~^~309~^0.29^73^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~323~^0.73^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~341~^0.01^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~342~^0.01^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~343~^0.00^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11758~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11758~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11758~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11759~^~203~^0.64^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~204~^0.19^11^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11759~^~207~^0.68^11^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~255~^92.95^11^0.29^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~269~^2.48^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11759~^~303~^0.64^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~309~^0.26^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~323~^0.74^0^^~4~^~BFSN~^~11125~^^^^^^^^^~10/01/2002~ -~11759~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11759~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11759~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11760~^~203~^0.58^3^0.01^~1~^~A~^^^1^0.55^0.60^2^0.52^0.63^~2, 3~^~01/01/2003~ -~11760~^~204~^0.68^3^0.01^~1~^~A~^^^1^0.67^0.71^2^0.62^0.73^~2, 3~^~01/01/2003~ -~11760~^~205~^7.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~207~^0.69^3^0.03^~1~^~A~^^^1^0.65^0.75^2^0.54^0.82^~2, 3~^~01/01/2003~ -~11760~^~209~^0.31^3^0.01^~1~^~A~^^^1^0.29^0.34^2^0.24^0.37^~2, 3~^~01/01/2003~ -~11760~^~210~^3.44^3^0.04^~1~^~A~^^^1^3.37^3.53^2^3.24^3.64^~2, 3~^~01/01/2003~ -~11760~^~211~^0.36^3^0.03^~1~^~A~^^^1^0.30^0.43^2^0.18^0.52^~2, 3~^~01/01/2003~ -~11760~^~212~^0.28^3^0.02^~1~^~A~^^^1^0.24^0.30^2^0.19^0.36^~2, 3~^~01/01/2003~ -~11760~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11760~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11760~^~255~^90.32^3^0.21^~1~^~A~^^^1^89.91^90.63^2^89.40^91.24^~2, 3~^~01/01/2003~ -~11760~^~269~^4.08^3^0.09^~1~^~A~^^^1^3.98^4.26^2^3.69^4.46^~2, 3~^~01/01/2003~ -~11760~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2003~ -~11760~^~303~^0.53^3^0.06^~1~^~A~^^^1^0.39^0.62^2^0.23^0.82^~2, 3~^~01/01/2003~ -~11760~^~309~^0.35^3^9.0e-03^~1~^~A~^^^1^0.34^0.37^2^0.31^0.39^~2, 3~^~01/01/2003~ -~11760~^~323~^1.01^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~ -~11760~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11760~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11760~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11761~^~203~^1.84^4^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~204~^0.45^4^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11761~^~207~^0.60^4^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~255~^93.00^7^0.33^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~269~^1.86^0^^~4~^~O~^~11135~^^^^^^^^^~05/01/2007~ -~11761~^~303~^0.32^28^0.01^~1~^^^^4^0.18^0.46^23^0.28^0.34^~2, 3~^~02/01/2007~ -~11761~^~309~^0.17^28^6.0e-03^~1~^^^^4^0.11^0.23^19^0.15^0.18^~2, 3~^~02/01/2007~ -~11761~^~323~^0.07^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~ -~11761~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11761~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11761~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11762~^~203~^1.61^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11762~^~204~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~205~^3.16^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~207~^1.01^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~11762~^~255~^94.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~269~^0.46^0^^~4~^~O~^~11137~^^^^^^^^^~01/01/2007~ -~11762~^~303~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~323~^0.06^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~ -~11762~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11762~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11762~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11763~^~203~^0.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~204~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~205~^5.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11763~^~207~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~255~^92.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~303~^0.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11764~^~203~^0.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~204~^0.16^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~205~^4.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11764~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~210~^0.14^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~211~^0.71^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~212~^0.66^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~213~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~214~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~255~^94.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~269~^2.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11764~^~287~^0.85^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~303~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~309~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~323~^0.35^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~341~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~342~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~343~^0.00^0^^~4~^~BFSN~^~11143~^^^^^^^^^~09/01/2002~ -~11764~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11764~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11764~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11765~^~203~^1.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~205~^4.13^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11765~^~207~^1.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~255~^92.65^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~269~^1.10^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~303~^2.26^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~323~^1.89^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~ -~11765~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11765~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11765~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11766~^~203~^0.62^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~204~^0.48^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~205~^4.50^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~207~^0.97^0^^~4~^~O~^^^^^^^^^^~11/01/2014~ -~11766~^~255~^93.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~269~^1.89^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~303~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~323~^0.14^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11766~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11766~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11767~^~203~^1.64^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~204~^0.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11767~^~207~^1.47^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~255~^92.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~269~^2.01^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11767~^~303~^3.74^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~323~^2.50^0^^~4~^~BFZN~^~11158~^^^^^^^^^~05/01/2005~ -~11767~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11767~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11767~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11768~^~203~^2.71^4^0.20^~1~^~A~^^^1^2.34^3.30^3^2.05^3.36^~4~^~08/01/2012~ -~11768~^~204~^0.72^4^0.03^~1~^~A~^^^1^0.66^0.78^3^0.62^0.81^~4~^~08/01/2012~ -~11768~^~205~^5.65^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11768~^~207~^0.73^4^0.04^~1~^~A~^^^1^0.65^0.84^3^0.58^0.88^~4~^~08/01/2012~ -~11768~^~255~^90.18^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11768~^~303~^1.13^30^0.06^~6~^~JA~^^^5^0.61^2.24^20^1.00^1.26^~2, 3~^~08/01/2012~ -~11768~^~309~^0.23^30^0.01^~6~^~JA~^^^5^0.12^0.38^21^0.20^0.26^~2, 3~^~08/01/2012~ -~11768~^~323~^0.88^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11768~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11768~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11768~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11769~^~203~^2.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~204~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~205~^7.10^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11769~^~207~^1.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~255~^88.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~269~^0.57^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~309~^0.27^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~323~^1.25^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~ -~11769~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11769~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11769~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11770~^~203~^3.41^10^0.11^~6~^~JA~^^^2^3.31^3.88^8^3.13^3.68^~2, 3~^~04/01/2009~ -~11770~^~204~^1.50^10^0.08^~6~^~JA~^^^2^1.28^2.04^6^1.28^1.70^~2, 3~^~04/01/2009~ -~11770~^~205~^20.98^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~207~^0.71^10^0.01^~6~^~JA~^^^2^0.66^0.72^7^0.67^0.73^~2, 3~^~04/01/2009~ -~11770~^~209~^7.17^3^0.43^~1~^~A~^^^1^6.40^7.90^2^5.30^9.03^~2, 3~^~04/01/2009~ -~11770~^~210~^2.74^6^0.73^~6~^~JA~^^^2^0.84^5.22^2^-0.29^5.78^~2, 3~^~04/01/2009~ -~11770~^~211~^0.84^6^0.12^~6~^~JA~^^^2^0.60^1.49^2^0.34^1.34^~2, 3~^~04/01/2009~ -~11770~^~212~^0.79^6^0.20^~6~^~JA~^^^2^0.40^1.95^2^-0.07^1.64^~2, 3~^~04/01/2009~ -~11770~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11770~^~214~^0.17^6^0.03^~6~^~JA~^^^2^0.00^0.40^2^0.02^0.31^~1, 2, 3~^~04/01/2009~ -~11770~^~255~^73.41^13^0.67^~6~^~JA~^^^3^69.57^79.57^6^71.76^75.04^~2, 3~^~04/01/2009~ -~11770~^~269~^4.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11770~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11770~^~303~^0.45^31^0.01^~6~^~JA~^^^5^0.29^0.62^22^0.41^0.47^~2, 3~^~04/01/2009~ -~11770~^~309~^0.62^31^0.02^~6~^~JA~^^^5^0.28^1.00^20^0.56^0.68^~2, 3~^~04/01/2009~ -~11770~^~323~^0.09^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~341~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~342~^0.19^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~343~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11770~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11770~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11770~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11771~^~203~^1.95^354^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11771~^~204~^0.77^28^0.05^~11~^~JO~^^^5^0.37^1.30^21^0.66^0.87^~2, 3~^~04/01/2011~ -~11771~^~205~^13.86^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11771~^~207~^0.80^27^0.03^~6~^~JA~^^^4^0.40^1.07^18^0.72^0.87^~2, 3~^~04/01/2011~ -~11771~^~210~^3.65^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11771~^~211~^0.26^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11771~^~212~^0.17^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11771~^~213~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11771~^~214~^0.07^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11771~^~255~^82.61^32^0.38^~11~^~JO~^^^7^72.80^88.07^17^81.79^83.43^~2, 3~^~04/01/2011~ -~11771~^~269~^4.15^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11771~^~287~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11771~^~303~^0.36^61^0.01^~6~^~JA~^^^10^0.16^0.80^38^0.32^0.38^~2, 3~^~04/01/2011~ -~11771~^~309~^0.39^39^0.01^~6~^~JA~^^^7^0.21^0.62^28^0.36^0.41^~2, 3~^~04/01/2011~ -~11771~^~323~^0.03^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~342~^0.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~343~^0.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~344~^0.12^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~346~^1.30^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~11771~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11771~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11771~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11772~^~203~^1.74^305^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~204~^0.42^281^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~205~^18.13^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11772~^~207~^0.98^291^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~210~^2.66^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~211~^0.23^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~212~^0.23^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~213~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~214~^0.11^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~255~^78.73^267^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~269~^3.23^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11772~^~287~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11772~^~303~^0.38^286^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~309~^0.53^80^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~323~^0.07^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~341~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~342~^0.10^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~343~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~344~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~345~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~346~^0.21^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~347~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11772~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11772~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11772~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11773~^~203~^2.41^71^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~204~^0.50^71^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~205~^19.44^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11773~^~207~^1.07^71^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~210~^4.91^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11773~^~211~^0.35^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11773~^~212~^0.23^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11773~^~213~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11773~^~214~^0.10^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11773~^~255~^76.58^71^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~269~^5.59^0^^~4~^~BFSN~^~11172~^^^^^^^^^~04/01/2015~ -~11773~^~287~^0.00^0^^~4~^~BFSN~^~11172~^^^^^^^^^~09/01/2002~ -~11773~^~303~^0.42^69^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~309~^0.46^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~323~^0.04^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~341~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~342~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~343~^0.00^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~ -~11773~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11773~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11773~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11774~^~203~^2.55^4^0.10^~1~^^^^1^2.29^2.81^3^2.21^2.89^~4~^~03/01/2003~ -~11774~^~204~^0.67^5^0.04^~11~^~JO~^^^2^0.58^0.81^4^0.54^0.80^~4~^~09/01/2002~ -~11774~^~205~^18.71^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11774~^~207~^1.03^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11774~^~210~^1.96^1^^~1~^^^^3^0.73^3.66^13^^^^~09/01/2002~ -~11774~^~211~^0.48^1^^~1~^^^^3^0.20^1.39^13^^^^~09/01/2002~ -~11774~^~212~^0.46^1^^~1~^^^^3^0.20^1.56^13^^^^~09/01/2002~ -~11774~^~213~^0.00^2^^~1~^^^^1^0.00^0.00^1^^^^~09/01/2002~ -~11774~^~214~^0.17^1^^~1~^^^^3^0.00^0.40^10^^^^~09/01/2002~ -~11774~^~255~^77.03^1^^~11~^~JO~^^^5^73.50^80.27^18^^^^~09/01/2002~ -~11774~^~269~^3.07^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~11774~^~287~^0.00^0^^~4~^~BFSN~^~11176~^^^^^^^^^~09/01/2002~ -~11774~^~303~^0.47^2^^~1~^^^^2^0.31^0.80^23^^^^~09/01/2002~ -~11774~^~309~^0.63^2^^~1~^^^^2^0.36^1.00^23^^^^~09/01/2002~ -~11774~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~342~^0.14^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~344~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~346~^0.66^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~11774~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11774~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11774~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11775~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~204~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~205~^22.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11775~^~207~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~210~^2.29^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~211~^0.56^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~212~^0.53^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~213~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~214~^0.20^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~255~^73.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~269~^3.59^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~11775~^~287~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~303~^0.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~323~^0.08^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~341~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~342~^0.16^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~343~^0.00^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~ -~11775~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11775~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11775~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11777~^~203~^3.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~204~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~205~^19.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11777~^~207~^1.24^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11777~^~255~^75.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~269~^3.23^0^^~4~^~BFSN~^~11191~^^^^^^^^^~12/01/2002~ -~11777~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~309~^1.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~323~^0.22^0^^~4~^~O~^^^^^^^^^^~12/01/2002~ -~11777~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11777~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11777~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11778~^~203~^8.49^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11778~^~204~^0.66^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~205~^23.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11778~^~207~^1.25^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~11778~^~255~^66.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~269~^4.46^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~303~^2.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~309~^1.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~323~^0.30^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~ -~11778~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11778~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11778~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11779~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~204~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~205~^7.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11779~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~255~^89.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~309~^0.24^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11780~^~203~^4.67^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11780~^~207~^1.13^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~255~^91.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~303~^1.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~309~^0.24^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11781~^~203~^1.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~205~^3.80^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11781~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~255~^92.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~269~^3.11^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11781~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~309~^0.15^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~323~^0.50^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~ -~11781~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11781~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11781~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11782~^~203~^2.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~204~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~205~^6.40^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11782~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~255~^89.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~269~^1.62^0^^~4~^~BFSN~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~303~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~323~^0.60^0^^~4~^~BFSN~^~11207~^^^^^^^^^~03/01/2007~ -~11782~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11782~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11782~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11783~^~203~^0.83^3^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~205~^8.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11783~^~207~^1.13^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11783~^~255~^89.67^6^^~1~^^^^1^88.40^91.10^^^^~2~^~01/01/2003~ -~11783~^~269~^3.20^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~303~^0.25^18^0.01^~1~^~A~^^^7^0.17^0.36^6^0.21^0.29^~2~^~01/01/2003~ -~11783~^~309~^0.12^21^0.01^~6~^~JA~^^^8^0.06^0.27^7^0.07^0.15^~2~^~01/01/2003~ -~11783~^~323~^0.41^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~ -~11783~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11783~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11783~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11784~^~203~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~204~^0.02^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~205~^3.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11784~^~207~^0.96^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11784~^~255~^95.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~303~^0.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~309~^0.70^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11785~^~203~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~204~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~205~^13.75^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11785~^~207~^0.96^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~11785~^~255~^84.29^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~269~^5.17^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11785~^~303~^0.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~323~^0.24^0^^~4~^~BFSN~^~11493~^^^^^^^^^~08/01/2011~ -~11785~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11786~^~203~^5.27^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~204~^0.93^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~205~^11.15^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11786~^~207~^1.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~255~^81.65^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~269~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11786~^~303~^2.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~309~^0.49^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~323~^0.10^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11786~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11786~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11786~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11787~^~203~^2.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~204~^0.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~205~^8.18^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11787~^~207~^1.12^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~255~^88.42^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~303~^0.45^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~309~^0.42^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11788~^~203~^2.95^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~204~^0.27^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11788~^~207~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~255~^86.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~303~^0.76^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~309~^0.38^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11789~^~203~^3.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~205~^7.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11789~^~207~^1.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~255~^87.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~269~^1.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11789~^~303~^3.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~309~^0.79^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~323~^0.07^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11789~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11789~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11789~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11790~^~203~^2.94^6^0.18^~1~^~A~^^^1^2.19^3.38^5^2.46^3.40^~2, 3~^~10/01/2016~ -~11790~^~204~^1.21^6^0.06^~1~^~A~^^^1^0.91^1.34^5^1.04^1.37^~2, 3~^~10/01/2016~ -~11790~^~205~^5.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~207~^0.73^6^0.06^~1~^~A~^^^1^0.49^0.96^5^0.56^0.90^~2, 3~^~10/01/2016~ -~11790~^~210~^0.25^2^^~1~^~A~^^^1^0.18^0.31^1^^^~1~^~10/01/2016~ -~11790~^~211~^0.54^2^^~1~^~A~^^^1^0.49^0.59^1^^^^~10/01/2016~ -~11790~^~212~^0.42^2^^~1~^~A~^^^1^0.36^0.48^1^^^^~10/01/2016~ -~11790~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~255~^89.82^6^0.36^~1~^~A~^^^1^88.55^91.28^5^88.87^90.76^~2, 3~^~10/01/2016~ -~11790~^~269~^1.21^2^^~1~^~A~^^^1^1.03^1.38^1^^^^~10/01/2016~ -~11790~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.67^0.96^5^0.72^0.96^~2, 3~^~10/01/2016~ -~11790~^~309~^0.27^6^0.03^~1~^~A~^^^1^0.15^0.40^5^0.18^0.36^~2, 3~^~10/01/2016~ -~11790~^~323~^1.61^2^^~1~^~A~^^^1^1.38^1.84^1^^^^~10/01/2016~ -~11790~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~342~^0.12^2^^~1~^~A~^^^1^0.08^0.16^1^^^^~10/01/2016~ -~11790~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11790~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11790~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11790~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11791~^~203~^2.94^6^0.18^~1~^~A~^^^1^2.19^3.38^5^2.46^3.40^~2, 3~^~10/01/2016~ -~11791~^~204~^1.21^6^0.06^~1~^~A~^^^1^0.91^1.34^5^1.04^1.37^~2, 3~^~10/01/2016~ -~11791~^~205~^5.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~207~^0.73^6^0.06^~1~^~A~^^^1^0.49^0.96^5^0.56^0.90^~2, 3~^~10/01/2016~ -~11791~^~210~^0.25^2^^~1~^~A~^^^1^0.18^0.31^1^^^~1~^~10/01/2016~ -~11791~^~211~^0.54^2^^~1~^~A~^^^1^0.49^0.59^1^^^^~10/01/2016~ -~11791~^~212~^0.42^2^^~1~^~A~^^^1^0.36^0.48^1^^^^~10/01/2016~ -~11791~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~255~^89.82^6^0.36^~1~^~A~^^^1^88.55^91.28^5^88.87^90.76^~2, 3~^~10/01/2016~ -~11791~^~269~^1.21^2^^~1~^~A~^^^1^1.03^1.38^1^^^^~10/01/2016~ -~11791~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~303~^0.84^6^0.04^~1~^~A~^^^1^0.67^0.96^5^0.72^0.96^~2, 3~^~10/01/2016~ -~11791~^~309~^0.27^6^0.03^~1~^~A~^^^1^0.15^0.40^5^0.18^0.36^~2, 3~^~10/01/2016~ -~11791~^~323~^1.61^2^^~1~^~A~^^^1^1.38^1.84^1^^^^~10/01/2016~ -~11791~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~342~^0.12^2^^~1~^~A~^^^1^0.08^0.16^1^^^^~10/01/2016~ -~11791~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2016~ -~11791~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11791~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11791~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11793~^~203~^1.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~204~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~205~^6.69^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11793~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~255~^90.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~269~^2.80^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~303~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~323~^0.52^0^^~4~^~BFSN~^~11241~^^^^^^^^^~12/01/2002~ -~11793~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11793~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11793~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11794~^~203~^3.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~204~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~205~^5.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11794~^~207~^2.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~255~^88.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~269~^0.62^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~ -~11794~^~303~^0.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11795~^~203~^0.81^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~205~^7.62^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11795~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~255~^90.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~269~^2.11^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~303~^1.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~309~^0.06^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~323~^0.50^0^^~4~^~BFSN~^~11246~^^^^^^^^^~11/01/2007~ -~11795~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11796~^~203~^1.58^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~204~^0.07^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~205~^16.02^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11796~^~207~^0.91^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~255~^81.42^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~303~^0.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~309~^0.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11797~^~203~^2.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~204~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~205~^5.29^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11797~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~255~^91.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~269~^2.34^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~303~^1.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~309~^0.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~323~^0.01^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~ -~11797~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11797~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11797~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11798~^~203~^1.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~204~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~205~^14.39^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~207~^0.35^1^^~1~^^^^^^^^^^^~03/01/2009~ -~11798~^~255~^83.48^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~269~^3.84^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~ -~11798~^~303~^0.44^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~309~^1.33^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~323~^0.00^0^^~4~^~BFSN~^~11267~^^^^^^^^^~05/01/2009~ -~11798~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11798~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11798~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11799~^~203~^2.56^2^^~6~^~JA~^^^2^2.26^2.85^1^^^^~08/01/2012~ -~11799~^~204~^0.47^2^^~6~^~JA~^^^2^0.24^0.70^1^^^^~08/01/2012~ -~11799~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11799~^~207~^0.69^2^^~6~^~JA~^^^2^0.44^0.94^1^^^^~08/01/2012~ -~11799~^~255~^91.78^2^^~6~^~JA~^^^2^89.01^94.46^2^^^^~08/01/2012~ -~11799~^~269~^1.41^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11799~^~303~^0.87^2^^~6~^~JA~^^^2^0.70^1.03^1^^^^~08/01/2012~ -~11799~^~309~^0.15^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11799~^~323~^1.78^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~ -~11799~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11799~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11799~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11800~^~203~^2.27^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~204~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~205~^3.11^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11800~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~255~^93.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~269~^0.32^0^^~4~^~O~^~11270~^^^^^^^^^~02/01/2007~ -~11800~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~323~^1.35^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~ -~11800~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11800~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11800~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11801~^~203~^1.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11801~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~255~^94.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~309~^0.11^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11802~^~203~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11802~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~255~^94.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~269~^0.25^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11802~^~303~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~323~^1.23^0^^~4~^~BFSN~^~11458~^^^^^^^^^~08/01/2011~ -~11802~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11803~^~203~^1.87^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~204~^0.21^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~205~^4.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11803~^~207~^0.84^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~255~^92.57^5^0.55^~11~^~JO~^^^2^90.83^93.20^1^85.49^99.64^~2~^~01/01/2003~ -~11803~^~269~^2.40^0^^~4~^~BFZN~^~11279~^^^^^^^^^~06/01/2005~ -~11803~^~303~^0.28^18^0.01^~1~^~A~^^^7^0.12^0.40^6^0.24^0.30^~2~^~01/01/2003~ -~11803~^~309~^0.43^18^0.02^~1~^~A~^^^7^0.22^0.65^6^0.37^0.48^~2~^~01/01/2003~ -~11803~^~323~^0.27^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~342~^0.16^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~343~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11803~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11803~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11803~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11804~^~203~^1.63^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~204~^0.24^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~205~^6.41^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~207~^0.59^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~255~^91.12^0^^~4~^~T~^^^^^^^^^^~05/01/2010~ -~11804~^~269~^2.87^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~303~^0.52^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~309~^0.49^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~323~^0.32^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11804~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11804~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11805~^~203~^1.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~204~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~205~^9.56^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11805~^~207~^1.03^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~11805~^~255~^87.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~269~^4.73^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~303~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~309~^0.21^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~323~^0.02^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~ -~11805~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11805~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11805~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11806~^~203~^0.77^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~205~^6.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11806~^~207~^0.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11806~^~255~^92.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~269~^2.90^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~303~^0.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~309~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~323~^0.01^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~ -~11806~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11806~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11806~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11807~^~203~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~204~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~205~^6.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11807~^~207~^0.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11807~^~255~^92.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~269~^2.90^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~ -~11807~^~303~^0.34^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~309~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~323~^0.01^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~ -~11807~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11807~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11807~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11808~^~203~^1.32^5^0.07^~1~^^^^^^^^^^^~03/01/2007~ -~11808~^~204~^0.30^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~205~^17.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11808~^~207~^1.13^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~255~^80.24^7^^~1~^^^^1^77.72^81.50^^^^~2~^~12/01/2005~ -~11808~^~269~^4.80^0^^~4~^~BFZN~^~11299~^^^^^^^^^~05/01/2005~ -~11808~^~303~^0.58^5^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~309~^0.26^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~323~^1.00^0^^~4~^~BFZN~^~11299~^^^^^^^^^~05/01/2005~ -~11808~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11808~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11808~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11809~^~203~^3.27^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~204~^0.23^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~11809~^~207~^1.13^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~11809~^~255~^88.91^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~269~^3.99^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11809~^~303~^1.97^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~309~^0.37^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~323~^0.39^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11809~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11809~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11809~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11810~^~203~^3.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~204~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~205~^8.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11810~^~207~^1.09^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11810~^~255~^86.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~269~^4.82^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~303~^2.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~309~^0.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~323~^0.47^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~ -~11810~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11810~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11810~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11811~^~203~^5.36^14^0.25^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~204~^0.22^14^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~205~^15.63^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~207~^0.92^14^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~210~^5.22^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~211~^0.13^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~212~^0.41^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~213~^0.00^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~214~^0.18^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~255~^77.87^14^1.00^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~269~^5.93^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11811~^~287~^0.00^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~303~^1.54^14^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~309~^1.19^14^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~323~^0.14^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~341~^0.00^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~342~^0.99^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~343~^0.02^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~ -~11811~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11811~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11811~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11812~^~203~^3.19^566^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~204~^0.30^564^7.0e-03^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~205~^9.75^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~11812~^~207~^0.84^536^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~210~^2.95^11^0.20^~1~^^^^2^2.12^4.52^10^2.49^3.40^~4~^~09/01/2002~ -~11812~^~211~^0.08^9^0.03^~1~^^^^2^0.00^0.27^7^-5.0e-03^0.17^~4~^~09/01/2002~ -~11812~^~212~^0.10^9^0.03^~1~^^^^2^0.00^0.27^7^9.0e-03^0.18^~4~^~09/01/2002~ -~11812~^~213~^0.00^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~214~^0.07^11^0.03^~1~^^^^2^0.00^0.26^8^-3.0e-03^0.14^~4~^~09/01/2002~ -~11812~^~255~^85.92^521^0.11^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~269~^3.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11812~^~287~^0.00^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~ -~11812~^~303~^1.02^595^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11812~^~309~^0.70^176^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~323~^0.02^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~341~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~342~^1.70^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~343~^0.03^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~344~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~345~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~346~^0.05^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~347~^0.00^1^^~1~^^^^^^^^^^^~02/01/2007~ -~11812~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11812~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11812~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11813~^~203~^4.42^11^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~204~^0.35^11^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~205~^12.58^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11813~^~207~^0.97^11^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~210~^3.83^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~211~^0.11^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~212~^0.13^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~213~^0.00^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~214~^0.09^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~255~^81.70^11^0.78^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~269~^4.16^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~ -~11813~^~287~^0.00^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~303~^0.95^11^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~309~^0.71^11^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~323~^0.03^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~341~^0.00^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~342~^2.21^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~343~^0.04^0^^~4~^~BFSN~^~11308~^^^^^^^^^~09/01/2002~ -~11813~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11813~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11813~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11814~^~203~^5.15^11^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~204~^0.27^11^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~205~^14.26^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11814~^~207~^0.80^11^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~210~^4.06^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~211~^0.11^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~212~^0.13^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~213~^0.00^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~214~^0.10^0^^~4~^~BFZN~^~11313~^^^^^^^^^~05/01/2005~ -~11814~^~255~^79.52^11^0.68^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~269~^4.40^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~287~^0.00^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~303~^1.52^48^0.04^~1~^^^^5^0.96^2.35^47^1.42^1.60^~4~^~11/01/2006~ -~11814~^~309~^0.67^48^0.02^~1~^^^^5^0.37^1.04^47^0.62^0.72^~4~^~11/01/2006~ -~11814~^~323~^0.03^0^^~4~^~BFZN~^~11313~^^^^^^^^^~05/01/2005~ -~11814~^~341~^0.00^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~342~^2.34^0^^~4~^~BFZN~^~11313~^^^^^^^^^~08/01/2015~ -~11814~^~343~^0.04^0^^~4~^~BFZN~^~11313~^^^^^^^^^~05/01/2005~ -~11814~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11814~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11814~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11815~^~203~^7.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~204~^0.51^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~205~^17.08^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~11815~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~255~^74.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~303~^1.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~309~^0.78^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11816~^~203~^2.17^155^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~204~^0.27^155^3.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~205~^8.48^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11816~^~207~^0.93^165^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~255~^88.15^155^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~269~^2.83^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~303~^0.75^165^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~309~^0.58^28^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~323~^0.38^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11816~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11816~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11816~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11817~^~203~^3.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~204~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~205~^10.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11817~^~207~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~255~^85.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~269~^4.36^0^^~4~^~BFZN~^~11323~^^^^^^^^^~05/01/2005~ -~11817~^~303~^0.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~309~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~323~^0.52^0^^~4~^~BFZN~^~11323~^^^^^^^^^~05/01/2005~ -~11817~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11817~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11817~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11818~^~203~^2.54^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~205~^8.63^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11818~^~207~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~255~^88.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~269~^3.77^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~11818~^~303~^0.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~309~^0.29^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~323~^0.02^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11818~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11818~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11819~^~203~^1.87^4^0.08^~1~^^^^2^1.63^2.00^3^1.58^2.15^~4~^~03/01/2007~ -~11819~^~204~^0.44^2^^~1~^^^^1^0.35^0.52^1^^^^~01/01/2004~ -~11819~^~205~^8.81^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~207~^0.87^2^^~1~^^^^1^0.85^0.89^1^^^^~01/01/2003~ -~11819~^~255~^88.02^7^1.27^~1~^^^^2^84.00^90.37^4^84.46^91.56^~4~^~01/01/2004~ -~11819~^~269~^5.30^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11819~^~303~^1.03^4^0.21^~1~^^^^2^0.45^1.40^3^0.35^1.70^~4~^~01/01/2004~ -~11819~^~309~^0.26^2^^~1~^^^^1^0.17^0.35^1^^^^~01/01/2003~ -~11819~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11819~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11819~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11819~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11820~^~203~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~205~^5.10^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11820~^~207~^1.40^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11820~^~255~^92.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~269~^3.32^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11820~^~303~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11820~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11820~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11820~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11821~^~203~^0.99^4^0.03^~1~^~A~^^^1^0.89^1.04^3^0.88^1.10^~2, 3~^~11/01/2002~ -~11821~^~204~^0.30^4^9.0e-03^~1~^~A~^^^1^0.27^0.31^3^0.26^0.32^~2, 3~^~11/01/2002~ -~11821~^~205~^6.03^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11821~^~207~^0.47^4^0.03^~1~^~A~^^^1^0.41^0.55^3^0.37^0.57^~2, 3~^~11/01/2002~ -~11821~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11821~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11821~^~211~^1.94^4^0.12^~1~^~A~^^^1^1.67^2.25^3^1.55^2.32^~2, 3~^~10/01/2002~ -~11821~^~212~^2.26^4^0.10^~1~^~A~^^^1^2.02^2.53^3^1.91^2.61^~2, 3~^~10/01/2002~ -~11821~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11821~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~11821~^~255~^92.21^4^0.39^~1~^~A~^^^1^91.04^92.79^3^90.94^93.48^~2, 3~^~11/01/2002~ -~11821~^~269~^4.20^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~ -~11821~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11821~^~303~^0.43^4^0.03^~1~^~A~^^^1^0.38^0.53^3^0.32^0.54^~2, 3~^~11/01/2002~ -~11821~^~309~^0.25^4^0.03^~1~^~A~^^^1^0.17^0.33^3^0.15^0.35^~2, 3~^~11/01/2002~ -~11821~^~323~^1.58^2^^~1~^~A~^^^1^1.50^1.67^1^^^^~10/01/2002~ -~11821~^~341~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~10/01/2002~ -~11821~^~342~^0.14^2^^~1~^~A~^^^1^0.08^0.20^1^^^^~10/01/2002~ -~11821~^~343~^0.01^2^^~1~^~A~^^^1^0.01^0.02^1^^^^~10/01/2002~ -~11821~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11821~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11821~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11821~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~11821~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11821~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11821~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11822~^~203~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~205~^6.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11822~^~207~^0.90^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11822~^~210~^0.15^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~211~^1.55^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~212~^1.50^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~213~^0.00^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~214~^0.00^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~255~^91.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~269~^3.19^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~287~^0.00^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~303~^0.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~323~^0.50^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11822~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11822~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11823~^~203~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11823~^~207~^0.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~255~^91.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~269~^4.39^0^^~4~^~BFSN~^~11821~^^^^^^^^^~01/01/2003~ -~11823~^~303~^0.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~323~^1.65^0^^~4~^~BFSN~^~11821~^^^^^^^^^~01/01/2003~ -~11823~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11823~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11823~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11824~^~203~^0.92^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~205~^6.11^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11824~^~207~^0.90^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~11824~^~255~^91.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~269~^4.39^0^^~4~^~BFZN~^~11823~^^^^^^^^^~05/01/2005~ -~11824~^~303~^0.46^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~323~^1.65^0^^~4~^~BFZN~^~11823~^^^^^^^^^~05/01/2005~ -~11824~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11824~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11824~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11825~^~203~^0.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~205~^3.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11825~^~207~^0.86^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~11825~^~255~^94.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~303~^0.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11826~^~203~^5.96^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~204~^1.36^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~205~^19.49^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11826~^~207~^1.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~255~^71.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~269~^2.48^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11826~^~303~^1.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~309~^0.82^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11826~^~323~^0.32^0^^~4~^~BFSN~^~11344~^^^^^^^^^~01/01/2003~ -~11826~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11826~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11826~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11827~^~203~^2.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~204~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~205~^3.10^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11827~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~255~^92.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~269~^1.60^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11827~^~303~^1.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~309~^0.19^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~323~^0.85^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11827~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11827~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11827~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11828~^~203~^2.50^21^^~1~^~A~^^^0^2.10^2.63^^^^~2~^~05/01/2002~ -~11828~^~204~^0.13^21^^~1~^~A~^^^0^0.13^0.15^^^^~2~^~05/01/2002~ -~11828~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11828~^~207~^1.33^21^^~1~^~A~^^^0^1.24^1.35^^^^~2~^~05/01/2002~ -~11828~^~209~^17.27^21^^~1~^~A~^^^0^15.15^17.99^^^^~2~^~05/01/2002~ -~11828~^~210~^0.40^21^^~1~^~A~^^^0^0.39^0.45^^^^~2~^~05/01/2002~ -~11828~^~211~^0.44^21^^~1~^~A~^^^0^0.37^0.63^^^^~2~^~05/01/2002~ -~11828~^~212~^0.34^21^^~1~^~A~^^^0^0.32^0.44^^^^~2~^~05/01/2002~ -~11828~^~213~^0.00^21^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11828~^~214~^0.00^21^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11828~^~255~^74.89^21^^~1~^~A~^^^0^74.45^76.67^^^^~2~^~05/01/2002~ -~11828~^~269~^1.18^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11828~^~287~^0.00^11^^~1~^~A~^^^0^0.00^0.00^^^^~2~^~05/01/2002~ -~11828~^~303~^1.08^47^0.02^~6~^~JA~^^^4^0.64^3.59^3^1.01^1.15^~2~^~05/01/2002~ -~11828~^~309~^0.36^47^1.0e-03^~6~^~JA~^^^4^0.18^0.49^3^0.35^0.35^~2~^~05/01/2002~ -~11828~^~323~^0.04^2^^~1~^~A~^^^^0.04^0.05^^^^^~05/01/2002~ -~11828~^~341~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11828~^~342~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11828~^~343~^0.00^2^^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2002~ -~11828~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11828~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11828~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11829~^~203~^1.96^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~205~^21.55^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11829~^~207~^0.97^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~255~^75.42^6^1.20^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~269~^1.70^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11829~^~303~^0.35^6^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~309~^0.29^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11829~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11829~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11829~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11830~^~203~^4.29^4^0.27^~1~^^^^^^^^^^^~01/01/2003~ -~11830~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~205~^46.06^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11830~^~207~^2.24^4^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~255~^47.31^6^1.89^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~269~^1.40^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11830~^~303~^7.04^6^1.90^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~309~^0.49^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11830~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11830~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11830~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11831~^~203~^1.87^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~205~^20.13^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11831~^~207~^0.92^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~255~^76.98^6^0.91^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~269~^0.91^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11831~^~303~^0.31^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~309~^0.30^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~323~^0.05^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~11831~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11831~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11831~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11832~^~203~^2.86^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~205~^17.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11832~^~207~^2.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~255~^77.80^5^1.79^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~303~^6.07^5^0.31^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~309~^0.44^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11833~^~203~^1.71^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~205~^20.01^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11833~^~207~^0.72^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~255~^77.46^6^1.12^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~269~^0.89^0^^~4~^~BFSN~^~11352~^^^^^^^^^~09/01/2015~ -~11833~^~303~^0.31^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~309~^0.27^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~323~^0.01^0^^~4~^~BFSN~^~11352~^^^^^^^^^~10/01/2002~ -~11833~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~11833~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11833~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11834~^~203~^2.44^6^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~205~^24.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11834~^~207~^1.18^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~255~^72.04^10^1.06^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~303~^1.24^10^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~309~^0.36^10^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11835~^~203~^2.10^4^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~205~^23.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11835~^~207~^0.97^4^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~255~^73.55^5^1.23^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~303~^0.41^5^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~309~^0.33^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11836~^~203~^4.39^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~204~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~205~^29.63^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11836~^~207~^2.38^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~255~^63.50^5^1.03^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~303~^5.94^5^0.44^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~309~^0.51^5^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11837~^~203~^1.98^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~205~^13.93^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11837~^~207~^1.16^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11837~^~255~^82.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~303~^0.84^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~309~^0.25^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11840~^~203~^3.44^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~204~^8.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~205~^34.03^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11840~^~207~^1.43^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~255~^52.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~309~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11841~^~203~^2.66^6^0.09^~1~^~A~^^^1^2.46^3.11^5^2.41^2.90^~2, 3~^~03/01/2005~ -~11841~^~204~^5.22^6^0.60^~1~^~A~^^^1^3.54^7.33^5^3.66^6.76^~2, 3~^~03/01/2005~ -~11841~^~205~^28.71^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11841~^~207~^1.90^6^0.15^~1~^~A~^^^1^1.39^2.37^5^1.50^2.29^~2, 3~^~03/01/2005~ -~11841~^~209~^20.13^6^1.54^~1~^~A~^^^1^13.86^25.76^5^16.15^24.10^~2, 3~^~03/01/2005~ -~11841~^~210~^0.18^6^0.01^~1~^~A~^^^1^0.11^0.26^5^0.12^0.22^~2, 3~^~03/01/2005~ -~11841~^~211~^0.11^6^0.01^~1~^~A~^^^1^0.07^0.17^5^0.06^0.14^~1, 2, 3~^~03/01/2005~ -~11841~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~255~^61.51^6^1.74^~1~^~A~^^^1^54.92^66.78^5^57.02^66.00^~2, 3~^~03/01/2005~ -~11841~^~269~^0.28^6^0.03^~1~^~A~^^^1^0.19^0.38^5^0.20^0.35^~2, 3~^~03/01/2005~ -~11841~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~303~^0.74^54^0.01^~6~^~JA~^^^6^0.46^1.18^40^0.70^0.76^~2, 3~^~03/01/2005~ -~11841~^~309~^0.38^54^9.0e-03^~6~^~JA~^^^6^0.24^0.61^41^0.36^0.40^~2, 3~^~03/01/2005~ -~11841~^~323~^0.11^6^0.01^~1~^~A~^^^1^0.06^0.20^5^0.06^0.16^~2, 3~^~03/01/2005~ -~11841~^~341~^0.00^6^3.0e-03^~1~^~A~^^^1^0.00^0.01^5^-3.0e-03^0.01^~1, 2, 3~^~03/01/2005~ -~11841~^~342~^0.36^6^0.09^~1~^~A~^^^1^0.14^0.75^5^0.11^0.60^~2, 3~^~03/01/2005~ -~11841~^~343~^0.49^6^0.10^~1~^~A~^^^1^0.31^0.95^5^0.23^0.74^~2, 3~^~03/01/2005~ -~11841~^~344~^0.02^6^8.0e-03^~1~^~A~^^^1^0.00^0.05^5^0.00^0.04^~1, 2, 3~^~03/01/2005~ -~11841~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~203~^2.24^6^0.07^~1~^~A~^^^1^1.98^2.41^5^2.04^2.44^~2, 3~^~03/01/2005~ -~11842~^~204~^4.66^6^0.49^~1~^~A~^^^1^3.31^6.12^5^3.37^5.93^~2, 3~^~03/01/2005~ -~11842~^~205~^24.81^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~11842~^~207~^1.68^6^0.13^~1~^~A~^^^1^1.24^2.02^5^1.32^2.02^~2, 3~^~03/01/2005~ -~11842~^~209~^17.39^6^0.30^~1~^~A~^^^1^16.69^18.74^5^16.60^18.16^~2, 3~^~03/01/2005~ -~11842~^~210~^0.10^6^0.01^~1~^~A~^^^1^0.07^0.15^5^0.06^0.14^~1, 2, 3~^~03/01/2005~ -~11842~^~211~^0.10^6^0.01^~1~^~A~^^^1^0.07^0.17^5^0.05^0.14^~1, 2, 3~^~03/01/2005~ -~11842~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~255~^66.61^6^1.05^~1~^~A~^^^1^63.16^69.93^5^63.89^69.33^~2, 3~^~03/01/2005~ -~11842~^~269~^0.20^5^0.02^~1~^~A~^^^1^0.15^0.25^4^0.13^0.25^~2, 3~^~03/01/2005~ -~11842~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~303~^0.62^6^0.03^~1~^~A~^^^1^0.54^0.77^5^0.53^0.71^~2, 3~^~03/01/2005~ -~11842~^~309~^0.35^6^5.0e-03^~1~^~A~^^^1^0.33^0.37^5^0.33^0.36^~2, 3~^~03/01/2005~ -~11842~^~323~^0.10^6^0.01^~1~^~A~^^^1^0.05^0.16^5^0.05^0.14^~2, 3~^~03/01/2005~ -~11842~^~341~^0.01^6^3.0e-03^~1~^~A~^^^1^0.00^0.01^5^-1.0e-03^0.01^~1, 2, 3~^~03/01/2005~ -~11842~^~342~^0.31^6^0.08^~1~^~A~^^^1^0.10^0.60^5^0.10^0.51^~2, 3~^~03/01/2005~ -~11842~^~343~^0.43^6^0.08^~1~^~A~^^^1^0.24^0.76^5^0.22^0.63^~2, 3~^~03/01/2005~ -~11842~^~344~^0.02^6^8.0e-03^~1~^~A~^^^1^0.00^0.04^5^4.0e-03^0.04^~1, 2, 3~^~03/01/2005~ -~11842~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2005~ -~11843~^~203~^5.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~204~^7.59^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11843~^~207~^2.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~255~^74.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~303~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~309~^0.69^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11844~^~203~^2.87^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~204~^3.68^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~205~^10.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11844~^~207~^1.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~255~^80.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~309~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11845~^~203~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11845~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~07/01/2012~ -~11845~^~255~^93.69^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~269~^2.08^0^^~4~^~BFSN~^~11422~^^^^^^^^^~07/01/2012~ -~11845~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~323~^0.80^0^^~4~^~BFSN~^~11422~^^^^^^^^^~01/01/2003~ -~11845~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11845~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11845~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11846~^~203~^1.10^89^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~204~^0.28^82^8.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~205~^8.09^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11846~^~207~^0.56^111^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~255~^89.97^94^0.14^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~269~^3.30^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~ -~11846~^~303~^1.39^106^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~309~^0.17^15^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~323~^1.06^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~ -~11846~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11846~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11846~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11847~^~203~^1.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~205~^3.18^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11847~^~207~^0.45^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11847~^~255~^95.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~269~^2.40^0^^~4~^~BFZN~^~11417~^^^^^^^^^~05/01/2005~ -~11847~^~303~^0.88^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~309~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11847~^~323~^0.04^0^^~4~^~BFZN~^~11417~^^^^^^^^^~05/01/2005~ -~11847~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11847~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11847~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11848~^~203~^2.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~204~^0.22^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11848~^~207~^1.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~255~^92.51^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~269~^0.69^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11848~^~303~^3.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~323~^0.96^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11848~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11848~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11848~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11849~^~203~^1.49^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~204~^0.19^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~205~^3.55^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11849~^~207~^1.25^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~255~^93.52^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~303~^0.77^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11850~^~203~^0.67^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~204~^0.24^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~205~^3.43^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~11850~^~207~^0.62^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~255~^95.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~269~^1.83^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11850~^~303~^0.15^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~309~^0.13^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~323~^0.00^0^^~4~^~BFSN~^~11430~^^^^^^^^^~01/01/2003~ -~11850~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11850~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11850~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11851~^~203~^0.93^1^^~6~^~JA~^^^2^0.93^1.29^^^^^~08/01/2012~ -~11851~^~204~^0.18^1^^~6~^~JA~^^^2^0.18^0.22^^^^^~08/01/2012~ -~11851~^~205~^6.84^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~11851~^~207~^0.51^1^^~6~^~JA~^^^2^0.51^0.87^^^^^~08/01/2012~ -~11851~^~209~^0.31^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11851~^~210~^0.35^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11851~^~211~^2.06^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11851~^~212~^1.54^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~11851~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11851~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~11851~^~255~^91.54^3^0.00^~6~^~JA~^^^2^88.88^91.90^^^^~2, 3~^~08/01/2012~ -~11851~^~269~^3.95^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~11851~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~11851~^~303~^0.18^1^^~6~^~JA~^^^2^0.18^0.53^^^^^~08/01/2012~ -~11851~^~309~^0.12^1^^~6~^~JA~^^^2^0.12^0.35^^^^^~08/01/2012~ -~11851~^~323~^0.24^0^^~4~^~BFSN~^~11435~^^^^^^^^^~08/01/2012~ -~11851~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11851~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11851~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11852~^~203~^2.73^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~205~^15.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11852~^~207~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~255~^81.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~269~^2.90^0^^~4~^~T~^^^^^^^^^^~01/01/2003~ -~11852~^~303~^0.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~309~^0.30^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~323~^0.19^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11852~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11852~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11852~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11853~^~203~^12.35^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~204~^6.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11853~^~207~^1.60^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~255~^68.60^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~303~^2.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~309~^0.91^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11854~^~203~^2.97^16^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~204~^0.26^16^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~205~^3.75^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11854~^~207~^1.81^16^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~255~^91.21^19^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~269~^0.43^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11854~^~303~^3.57^12^0.99^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~309~^0.76^16^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~323~^2.08^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~ -~11854~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11854~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11854~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11855~^~203~^2.11^139^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~204~^0.37^111^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~205~^2.92^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11855~^~207~^1.38^161^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~255~^93.22^226^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~269~^0.33^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~303~^1.58^235^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~309~^0.42^47^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~323~^1.60^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11856~^~203~^4.01^6^0.06^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~204~^0.87^6^0.21^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11856~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11856~^~207~^1.39^6^0.07^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~209~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~210~^0.21^6^0.03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~211~^0.20^6^0.03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~212~^0.09^6^0.05^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~213~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~214~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~255~^88.94^6^0.19^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~269~^0.51^6^0.12^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~287~^0.00^6^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~303~^1.96^6^0.06^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~309~^0.49^6^0.04^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~323~^3.54^3^0.11^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~341~^0.01^3^1.0e-03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~342~^0.17^3^7.0e-03^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~344~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11856~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11856~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11857~^~203~^0.91^6^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~204~^0.31^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~205~^4.31^0^^~4~^~NC~^^^^^^^^^^~01/01/2004~ -~11857~^~207~^0.77^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~255~^93.70^6^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~269~^2.59^0^^~4~^~BFSN~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~303~^0.36^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~309~^0.39^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~323~^0.14^0^^~4~^~BFSN~^~11641~^^^^^^^^^~03/01/2007~ -~11857~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11857~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11857~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11858~^~203~^1.04^3^0.11^~1~^~A~^^^1^0.81^1.19^2^0.54^1.54^~2, 3~^~04/01/2009~ -~11858~^~204~^0.39^3^0.01^~1~^~A~^^^1^0.37^0.43^2^0.31^0.47^~2, 3~^~04/01/2009~ -~11858~^~205~^3.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~207~^0.53^3^0.04^~1~^~A~^^^1^0.44^0.59^2^0.33^0.72^~2, 3~^~04/01/2009~ -~11858~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11858~^~210~^0.27^6^0.11^~6~^~JA~^^^2^0.02^0.66^5^-0.02^0.55^~1, 4~^~04/01/2009~ -~11858~^~211~^0.91^7^0.21^~6~^~JA~^^^3^0.07^1.90^6^0.38^1.43^~1, 4~^~04/01/2009~ -~11858~^~212~^1.31^7^0.20^~6~^~JA~^^^3^0.50^2.07^6^0.80^1.81^~4~^~04/01/2009~ -~11858~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11858~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11858~^~255~^94.25^5^0.30^~6~^~JA~^^^3^93.90^95.45^4^93.41^95.08^~4~^~04/01/2009~ -~11858~^~269~^2.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11858~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11858~^~303~^0.37^31^0.02^~6~^~JA~^^^6^0.17^0.89^10^0.31^0.41^~2, 3~^~04/01/2009~ -~11858~^~309~^0.22^31^0.01^~6~^~JA~^^^6^0.09^0.39^19^0.19^0.25^~2, 3~^~04/01/2009~ -~11858~^~323~^0.12^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11858~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11858~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11859~^~203~^1.28^6^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~204~^0.20^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11859~^~207~^0.74^6^6.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~255~^92.24^6^0.06^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~269~^2.33^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11859~^~303~^0.52^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~309~^0.34^6^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~323~^0.15^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11859~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11859~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11859~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11860~^~203~^1.03^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~204~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~205~^3.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11860~^~207~^0.50^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~255~^95.00^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~269~^1.50^0^^~4~^~BFZN~^~11476~^^^^^^^^^~03/01/2007~ -~11860~^~303~^0.33^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~323~^0.12^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~ -~11860~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11860~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11860~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11861~^~203~^1.14^4^0.05^~1~^~A~^^^1^1.06^1.31^3^0.95^1.32^~2, 3~^~04/01/2009~ -~11861~^~204~^0.36^4^0.03^~1~^~A~^^^1^0.30^0.44^3^0.25^0.46^~2, 3~^~04/01/2009~ -~11861~^~205~^2.69^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11861~^~207~^0.59^4^0.05^~1~^~A~^^^1^0.44^0.70^3^0.41^0.76^~2, 3~^~04/01/2009~ -~11861~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11861~^~255~^95.22^4^0.19^~1~^~A~^^^1^94.74^95.67^3^94.60^95.83^~2, 3~^~04/01/2009~ -~11861~^~269~^1.71^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~11861~^~303~^0.37^4^0.02^~1~^~A~^^^1^0.30^0.43^3^0.28^0.45^~2, 3~^~04/01/2009~ -~11861~^~309~^0.33^4^0.03^~1~^~A~^^^1^0.27^0.43^3^0.22^0.44^~2, 3~^~04/01/2009~ -~11861~^~323~^0.12^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11861~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11861~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11861~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11862~^~203~^1.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~204~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11862~^~207~^1.01^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11862~^~255~^94.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~269~^1.69^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11862~^~303~^0.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~323~^0.12^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~ -~11862~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11862~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11862~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11863~^~203~^0.89^9^0.07^~1~^^^^2^0.68^1.01^3^0.66^1.12^~4~^~08/01/1984~ -~11863~^~204~^0.35^10^0.11^~1~^^^^2^0.17^0.67^3^-0.01^0.71^~4~^~08/01/2011~ -~11863~^~205~^8.85^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11863~^~207~^0.69^10^0.05^~1~^^^^2^0.56^0.81^3^0.52^0.85^~4~^~08/01/2011~ -~11863~^~255~^89.21^11^0.39^~1~^^^^2^88.07^89.84^3^87.95^90.46^~4~^~08/01/2011~ -~11863~^~269~^3.30^0^^~4~^~BFSN~^~11644~^^^^^^^^^~05/01/2005~ -~11863~^~303~^0.44^10^0.07^~1~^^^^2^0.28^0.58^3^0.19^0.67^~4~^~08/01/2011~ -~11863~^~309~^0.22^9^0.02^~1~^^^^2^0.17^0.26^2^0.10^0.34^~4~^~08/01/2011~ -~11863~^~323~^0.12^0^^~4~^~BFSN~^~11644~^^^^^^^^^~05/01/2005~ -~11863~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11863~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11863~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11864~^~203~^1.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~204~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~205~^14.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11864~^~207~^1.26^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~255~^82.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~303~^0.93^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~309~^0.17^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11865~^~203~^0.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~204~^0.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~205~^8.79^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11865~^~207~^0.76^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~255~^89.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~303~^0.56^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~309~^0.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11866~^~203~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~205~^10.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11866~^~207~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~255~^87.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~269~^1.97^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11866~^~303~^0.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~309~^0.13^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~323~^1.29^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~ -~11866~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11866~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11866~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11867~^~203~^1.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~205~^10.04^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11867~^~207~^0.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~255~^87.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~303~^0.58^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~309~^0.12^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11868~^~203~^2.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~204~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~205~^10.81^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11868~^~207~^0.99^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~255~^85.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~269~^4.90^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~303~^0.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~323~^0.20^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11869~^~203~^1.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~204~^0.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11869~^~207~^0.59^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~255~^91.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~269~^2.93^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~ -~11869~^~303~^0.28^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~309~^0.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~323~^0.12^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~ -~11869~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11869~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11869~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11870~^~203~^0.66^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~204~^0.26^3^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~205~^6.46^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11870~^~207~^0.32^3^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~255~^92.30^3^1.52^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~269~^2.53^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~ -~11870~^~303~^0.34^3^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~309~^0.20^3^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~323~^0.12^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~ -~11870~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11870~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11870~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11871~^~203~^5.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~204~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~205~^24.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11871~^~207~^1.39^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~255~^68.37^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~303~^1.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11872~^~203~^4.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~204~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~205~^19.95^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11872~^~207~^0.75^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~255~^74.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~269~^2.21^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11872~^~303~^0.89^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~309~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~323~^0.18^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~ -~11872~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11872~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11872~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11873~^~203~^2.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~204~^0.24^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11873~^~207~^1.05^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~255~^92.93^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~303~^1.32^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~309~^0.16^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11874~^~203~^2.18^2^^~6~^~JA~^^^2^2.03^2.32^1^^^^~07/01/2012~ -~11874~^~204~^0.34^2^^~6~^~JA~^^^2^0.30^0.38^1^^^^~07/01/2012~ -~11874~^~205~^7.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11874~^~207~^0.89^2^^~6~^~JA~^^^2^0.44^1.35^1^^^^~07/01/2012~ -~11874~^~255~^89.20^2^^~6~^~JA~^^^2^88.71^89.70^1^^^^~07/01/2012~ -~11874~^~269~^5.48^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~ -~11874~^~303~^0.63^1^^~6~^~JA~^^^2^0.60^0.66^1^^^^~07/01/2012~ -~11874~^~309~^0.26^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~323~^0.96^0^^~4~^~BFZN~^~11506~^^^^^^^^^~05/01/2005~ -~11874~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11874~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11874~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11875~^~203~^2.01^4^0.16^~1~^~A~^^^1^1.61^2.39^3^1.47^2.54^~2, 3~^~04/01/2003~ -~11875~^~204~^0.15^5^9.0e-03^~11~^~JO~^^^2^0.10^0.18^3^0.12^0.17^~2, 3~^~04/01/2003~ -~11875~^~205~^20.71^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11875~^~207~^1.35^4^0.09^~1~^~A~^^^1^1.16^1.56^3^1.05^1.65^~2, 3~^~04/01/2003~ -~11875~^~209~^7.05^4^2.60^~1~^~A~^^^1^3.60^14.80^3^-1.24^15.34^~2, 3~^~04/01/2003~ -~11875~^~210~^2.28^12^0.35^~6~^~JA~^^^3^1.56^5.17^11^2.20^3.75^~4~^~06/01/2014~ -~11875~^~211~^0.57^12^0.12^~6~^~JA~^^^3^0.27^1.45^11^0.46^1.01^~4~^~06/01/2014~ -~11875~^~212~^0.50^12^0.10^~6~^~JA~^^^3^0.03^1.20^11^0.42^0.89^~1, 4~^~06/01/2014~ -~11875~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2007~ -~11875~^~214~^3.12^0^^~4~^~BFSN~^~11510~^^^^^^^^^~06/01/2014~ -~11875~^~255~^75.78^8^2.48^~11~^~JO~^^^3^62.65^85.59^7^69.90^81.66^~4~^~04/01/2003~ -~11875~^~269~^6.48^3^0.62^~1~^^^^1^5.65^7.71^2^3.78^9.17^~4~^~06/01/2014~ -~11875~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11875~^~303~^0.69^68^0.03^~6~^~JA~^^^12^0.27^1.32^67^0.62^0.75^~4~^~04/01/2003~ -~11875~^~309~^0.32^68^0.01^~6~^~JA~^^^12^0.00^0.77^67^0.29^0.34^~4~^~04/01/2003~ -~11875~^~323~^0.71^3^0.45^~11~^~JO~^^^2^0.16^1.66^1^-5.05^6.46^~2, 3~^~04/01/2003~ -~11875~^~341~^0.00^3^5.0e-03^~11~^~JO~^^^2^0.00^0.01^1^-0.05^0.06^~1, 2, 3~^~04/01/2003~ -~11875~^~342~^0.01^3^0.00^~11~^~JO~^^^2^0.00^0.02^^^^~2, 3~^~04/01/2003~ -~11875~^~343~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11875~^~344~^0.02^3^5.0e-03^~11~^~JO~^^^2^0.00^0.04^1^-0.04^0.08^~1, 2, 3~^~04/01/2003~ -~11875~^~345~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11875~^~346~^0.00^3^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11875~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11875~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11875~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11875~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11876~^~203~^1.37^4^0.09^~1~^~A~^^^1^1.10^1.54^3^1.06^1.68^~2, 3~^~04/01/2003~ -~11876~^~204~^0.14^4^0.05^~1~^~A~^^^1^0.02^0.27^3^-0.02^0.30^~1, 2, 3~^~04/01/2003~ -~11876~^~205~^17.72^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11876~^~207~^0.63^4^0.04^~1~^~A~^^^1^0.52^0.75^3^0.47^0.79^~2, 3~^~04/01/2003~ -~11876~^~209~^5.22^4^1.61^~1~^~A~^^^1^2.60^9.80^3^0.09^10.35^~2, 3~^~04/01/2003~ -~11876~^~210~^1.43^4^0.11^~1~^~A~^^^1^1.30^1.79^3^1.05^1.81^~2, 3~^~04/01/2003~ -~11876~^~211~^0.54^4^0.18^~1~^~A~^^^1^0.03^0.94^3^-0.06^1.13^~1, 2, 3~^~04/01/2003~ -~11876~^~212~^0.43^4^0.14^~1~^~A~^^^1^0.03^0.67^3^-0.02^0.87^~1, 2, 3~^~04/01/2003~ -~11876~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11876~^~214~^3.34^4^0.79^~1~^~A~^^^1^1.84^5.57^3^0.82^5.85^~2, 3~^~04/01/2003~ -~11876~^~255~^80.13^4^2.20^~1~^~A~^^^1^73.66^83.40^3^73.11^87.14^~2, 3~^~04/01/2003~ -~11876~^~269~^5.74^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~11876~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~ -~11876~^~303~^0.72^4^0.06^~1~^~A~^^^1^0.60^0.89^3^0.52^0.91^~2, 3~^~04/01/2003~ -~11876~^~309~^0.20^4^5.0e-03^~1~^~A~^^^1^0.19^0.21^3^0.18^0.21^~2, 3~^~04/01/2003~ -~11876~^~323~^0.94^2^^~1~^~A~^^^1^0.37^1.51^1^^^^~04/01/2003~ -~11876~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2003~ -~11876~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11876~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11877~^~203~^1.71^6^0.20^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~204~^0.12^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~205~^23.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11877~^~207~^1.07^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~255~^73.70^6^0.66^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~303~^0.54^6^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~309~^0.30^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11878~^~203~^0.52^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~204~^0.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~205~^34.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11878~^~207~^0.97^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~255~^63.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~269~^0.49^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~ -~11878~^~303~^0.72^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~309~^0.27^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~323~^2.93^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~ -~11878~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11878~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11878~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11879~^~203~^2.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~204~^0.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~205~^3.89^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11879~^~207~^0.83^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~11879~^~255~^92.15^3^3.41^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~303~^1.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~309~^0.21^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11880~^~203~^0.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~205~^3.19^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11880~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~255~^95.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~303~^0.41^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~309~^0.54^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11881~^~203~^4.16^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~204~^0.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~205~^6.85^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11881~^~207~^1.85^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~255~^86.46^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~303~^1.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~309~^0.10^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11884~^~203~^0.95^4^0.05^~1~^~A~^^^1^0.82^1.06^3^0.78^1.11^~4~^~05/01/2004~ -~11884~^~204~^0.11^4^0.02^~1~^~A~^^^1^0.07^0.17^3^0.03^0.17^~4~^~05/01/2004~ -~11884~^~205~^4.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~207~^0.60^4^0.02^~1~^~A~^^^1^0.53^0.65^3^0.51^0.67^~4~^~05/01/2004~ -~11884~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~211~^1.18^4^0.06^~1~^~A~^^^1^1.04^1.33^3^0.98^1.37^~4~^~05/01/2004~ -~11884~^~212~^1.31^4^0.04^~1~^~A~^^^1^1.19^1.42^3^1.16^1.46^~4~^~05/01/2004~ -~11884~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~255~^94.34^4^0.20^~1~^~A~^^^1^93.78^94.65^3^93.68^94.99^~4~^~05/01/2004~ -~11884~^~269~^2.49^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~11884~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~11884~^~303~^0.68^4^0.12^~1~^~A~^^^1^0.39^0.93^3^0.29^1.06^~4~^~05/01/2004~ -~11884~^~309~^0.14^4^0.02^~1~^~A~^^^1^0.09^0.19^3^0.08^0.20^~4~^~05/01/2004~ -~11884~^~323~^0.56^4^0.02^~1~^~A~^^^1^0.50^0.62^3^0.47^0.64^~4~^~05/01/2004~ -~11884~^~341~^0.01^4^0.00^~1~^~A~^^^1^0.01^0.01^3^0.01^0.01^~4~^~05/01/2004~ -~11884~^~342~^0.21^4^0.01^~1~^~A~^^^1^0.16^0.25^3^0.15^0.27^~4~^~05/01/2004~ -~11884~^~343~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-1.0e-03^0.02^~4~^~05/01/2004~ -~11884~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~05/01/2004~ -~11884~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11884~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11884~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11885~^~203~^0.79^18^0.03^~1~^~A~^^^1^0.56^1.13^16^0.71^0.85^~2, 3~^~08/01/2014~ -~11885~^~204~^0.25^18^0.03^~1~^~A~^^^1^0.09^0.64^16^0.17^0.32^~2, 3~^~08/01/2014~ -~11885~^~205~^3.47^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~207~^0.74^18^0.02^~1~^~A~^^^1^0.53^0.96^14^0.69^0.79^~2, 3~^~08/01/2014~ -~11885~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11885~^~211~^1.24^9^0.04^~1~^~A~^^^1^1.03^1.56^7^1.14^1.34^~2, 3~^~08/01/2014~ -~11885~^~212~^1.31^9^0.03^~1~^~A~^^^1^1.12^1.54^7^1.22^1.38^~2, 3~^~08/01/2014~ -~11885~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~255~^94.75^18^0.16^~1~^~A~^^^1^93.53^96.69^15^94.40^95.10^~2, 3~^~08/01/2014~ -~11885~^~269~^2.55^9^0.07^~1~^~A~^^^1^2.15^3.10^7^2.38^2.72^~2, 3~^~08/01/2014~ -~11885~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~303~^0.57^18^0.07^~1~^~A~^^^1^0.26^1.15^16^0.42^0.72^~2, 3~^~08/01/2014~ -~11885~^~309~^0.12^18^3.0e-03^~1~^~A~^^^1^0.10^0.14^13^0.11^0.12^~1, 2, 3~^~08/01/2014~ -~11885~^~323~^0.59^3^7.0e-03^~1~^~A~^^^1^0.55^0.68^1^0.49^0.68^~2, 3~^~08/01/2014~ -~11885~^~341~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~08/01/2014~ -~11885~^~342~^0.06^3^0.00^~1~^~A~^^^1^0.05^0.07^^^^~2, 3~^~08/01/2014~ -~11885~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11885~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11885~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11885~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11885~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11886~^~203~^0.85^12^0.06^~1~^~A~^^^1^0.63^1.44^6^0.69^1.01^~2, 3~^~08/01/2014~ -~11886~^~204~^0.29^12^0.03^~1~^~A~^^^1^0.11^0.56^7^0.20^0.38^~2, 3~^~08/01/2014~ -~11886~^~205~^3.53^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~207~^1.09^12^0.01^~1~^~A~^^^1^0.96^1.18^8^1.04^1.12^~2, 3~^~08/01/2014~ -~11886~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~211~^1.25^6^0.03^~1~^~A~^^^1^1.22^1.29^1^0.78^1.71^~4~^~08/01/2014~ -~11886~^~212~^1.33^6^0.01^~1~^~A~^^^1^1.28^1.36^3^1.28^1.37^~2, 3~^~08/01/2014~ -~11886~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~255~^94.24^12^0.19^~1~^~A~^^^1^92.76^95.55^7^93.76^94.71^~2, 3~^~08/01/2014~ -~11886~^~269~^2.58^6^0.05^~1~^~A~^^^1^2.38^2.72^2^2.37^2.79^~2, 3~^~08/01/2014~ -~11886~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~303~^0.39^12^0.05^~1~^~A~^^^1^0.25^0.86^5^0.26^0.51^~2, 3~^~08/01/2014~ -~11886~^~309~^0.11^12^6.0e-03^~1~^~A~^^^1^0.08^0.15^10^0.10^0.12^~1, 2, 3~^~08/01/2014~ -~11886~^~323~^0.32^6^0.01^~1~^~A~^^^1^0.27^0.34^5^0.29^0.34^~2, 3~^~03/01/2007~ -~11886~^~341~^0.01^6^^~1~^~A~^^^1^0.01^0.01^0^^^~4~^~03/01/2007~ -~11886~^~342~^0.02^6^3.0e-03^~1~^~A~^^^1^0.01^0.03^5^0.01^0.02^~2, 3~^~03/01/2007~ -~11886~^~343~^0.00^6^^~1~^~A~^^^1^0.00^0.00^0^^^~4~^~03/01/2007~ -~11886~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11886~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11886~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11888~^~203~^1.65^36^0.06^~11~^~JO~^^^4^0.63^2.47^26^1.50^1.78^~2, 3~^~11/01/2002~ -~11888~^~204~^0.21^36^0.02^~6~^~JA~^^^4^0.07^1.05^15^0.15^0.26^~2, 3~^~11/01/2002~ -~11888~^~205~^8.98^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11888~^~207~^1.28^36^0.05^~6~^~JA~^^^4^0.70^2.32^17^1.17^1.38^~2, 3~^~11/01/2002~ -~11888~^~210~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~211~^2.45^3^0.05^~1~^~A~^^^1^2.37^2.56^2^2.21^2.68^~2, 3~^~11/01/2002~ -~11888~^~212~^2.38^3^0.05^~1~^~A~^^^1^2.29^2.48^2^2.14^2.61^~2, 3~^~11/01/2002~ -~11888~^~213~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~214~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~255~^87.88^48^0.27^~6~^~JA~^^^5^83.57^92.81^36^87.31^88.44^~2, 3~^~11/01/2002~ -~11888~^~269~^4.83^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11888~^~287~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~303~^1.78^35^0.17^~6~^~JA~^^^4^0.50^4.84^19^1.41^2.14^~2, 3~^~11/01/2002~ -~11888~^~309~^0.36^6^0.01^~1~^~A~^^^1^0.32^0.40^5^0.33^0.39^~2, 3~^~11/01/2002~ -~11888~^~323~^1.97^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~341~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~342~^0.24^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~343~^0.00^0^^~4~^~BFSN~^~11547~^^^^^^^^^~11/01/2002~ -~11888~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11888~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11888~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11889~^~203~^0.71^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~204~^0.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~205~^5.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11889~^~207~^0.55^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~269~^2.99^0^^~4~^~BFZN~^~11565~^^^^^^^^^~05/01/2005~ -~11889~^~303~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11889~^~323~^0.02^0^^~4~^~BFZN~^~11565~^^^^^^^^^~05/01/2005~ -~11889~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11889~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11889~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11890~^~203~^1.53^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~204~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~205~^3.73^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11890~^~207~^0.90^0^^~4~^~O~^^^^^^^^^^~11/01/2014~ -~11890~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~269~^1.73^0^^~4~^~O~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~303~^0.98^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~309~^0.20^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~323~^0.02^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~ -~11890~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11890~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11890~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11891~^~203~^1.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~204~^0.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~205~^4.36^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~11891~^~207~^1.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~255~^93.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~269~^0.53^0^^~4~^~BFSN~^~11568~^^^^^^^^^~12/01/2002~ -~11891~^~303~^0.80^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~309~^0.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~323~^1.88^0^^~4~^~BFSN~^~11568~^^^^^^^^^~12/01/2002~ -~11891~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11891~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11891~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11892~^~203~^3.35^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~204~^0.42^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~205~^4.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11892~^~207~^0.85^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~255~^90.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~269~^0.75^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~303~^1.94^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~309~^0.41^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~323~^2.66^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~ -~11892~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11892~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11892~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11893~^~203~^2.99^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~204~^0.38^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~205~^4.74^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11893~^~207~^0.85^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~255~^91.04^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~269~^0.95^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~303~^1.75^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~309~^0.37^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~323~^2.13^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11894~^~203~^2.86^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~204~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~205~^13.09^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11894~^~207~^0.67^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~255~^83.23^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~269~^3.12^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~303~^0.82^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~309~^0.49^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~323~^0.38^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11894~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11894~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11895~^~203~^0.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~204~^0.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~205~^2.45^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11895~^~207~^0.89^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11895~^~255~^96.06^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~269~^1.18^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~ -~11895~^~303~^0.38^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~309~^0.59^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~323~^0.08^0^^~4~^~BFSN~^~11468~^^^^^^^^^~03/01/2007~ -~11895~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11895~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11895~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11896~^~203~^5.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~204~^0.66^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~205~^3.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11896~^~207~^0.71^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~255~^90.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~303~^1.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~309~^0.28^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11896~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11897~^~203~^1.49^6^0.26^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~204~^0.14^6^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~205~^26.99^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11897~^~207~^1.25^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~11897~^~255~^70.13^12^1.13^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~269~^0.49^0^^~4~^~BFSN~^~11601~^^^^^^^^^~01/01/2003~ -~11897~^~303~^0.52^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~309~^0.20^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~323~^0.34^0^^~4~^~BFSN~^~11601~^^^^^^^^^~03/01/2007~ -~11897~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11897~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11897~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11898~^~203~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~204~^0.09^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~205~^8.23^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11898~^~207~^0.89^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11898~^~255~^90.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~303~^0.57^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~309~^0.15^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11899~^~203~^2.53^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~204~^0.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~205~^9.17^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11899~^~207~^0.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~255~^87.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~303~^0.98^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~309~^0.36^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11900~^~203~^3.22^6^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~204~^1.18^6^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~205~^19.02^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11900~^~207~^0.62^45^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~255~^75.96^101^0.88^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~269~^3.22^0^^~4~^~BFSN~^~11167~^^^^^^^^^~02/01/2003~ -~11900~^~303~^0.52^91^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~309~^0.45^56^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~323~^0.07^0^^~4~^~BFSN~^~11167~^^^^^^^^^~02/01/2003~ -~11900~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11901~^~203~^3.34^10^0.11^~6~^~JA~^^^2^3.13^3.63^8^3.06^3.60^~2, 3~^~04/01/2009~ -~11901~^~204~^1.41^10^0.08^~6~^~JA~^^^2^1.28^1.83^7^1.19^1.62^~2, 3~^~04/01/2009~ -~11901~^~205~^21.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11901~^~207~^0.70^10^0.01^~6~^~JA~^^^2^0.61^0.72^8^0.66^0.72^~2, 3~^~04/01/2009~ -~11901~^~209~^4.47^3^0.28^~1~^~A~^^^1^3.90^4.80^2^3.24^5.69^~2, 3~^~04/01/2009~ -~11901~^~210~^6.02^3^1.22^~1~^~A~^^^1^3.64^7.69^2^0.76^11.27^~2, 3~^~04/01/2009~ -~11901~^~211~^0.70^3^0.32^~1~^~A~^^^1^0.07^1.17^2^-0.70^2.10^~1, 2, 3~^~04/01/2009~ -~11901~^~212~^1.02^3^0.21^~1~^~A~^^^1^0.76^1.45^2^0.07^1.95^~2, 3~^~04/01/2009~ -~11901~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11901~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11901~^~255~^72.84^10^0.87^~6~^~JA~^^^2^69.57^80.77^6^70.70^74.97^~2, 3~^~04/01/2009~ -~11901~^~269~^7.73^3^0.73^~1~^~A~^^^1^6.26^8.52^2^4.56^10.91^~2, 3~^~04/01/2009~ -~11901~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11901~^~303~^0.55^10^0.04^~6~^~JA~^^^2^0.35^0.61^7^0.45^0.65^~2, 3~^~04/01/2009~ -~11901~^~309~^0.54^9^0.03^~6~^~JA~^^^2^0.48^0.66^5^0.46^0.61^~2, 3~^~04/01/2009~ -~11901~^~323~^0.09^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11901~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11901~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11901~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11902~^~203~^3.34^10^0.11^~6~^~JA~^^^2^3.13^3.63^8^3.06^3.60^~2, 3~^~04/01/2009~ -~11902~^~204~^1.41^10^0.08^~6~^~JA~^^^2^1.28^1.83^7^1.19^1.62^~2, 3~^~04/01/2009~ -~11902~^~205~^21.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11902~^~207~^0.70^10^0.01^~6~^~JA~^^^2^0.61^0.72^8^0.66^0.72^~2, 3~^~04/01/2009~ -~11902~^~209~^4.47^3^0.28^~1~^~A~^^^1^3.90^4.80^2^3.24^5.69^~2, 3~^~04/01/2009~ -~11902~^~210~^6.02^3^1.22^~1~^~A~^^^1^3.64^7.69^2^0.76^11.27^~2, 3~^~04/01/2009~ -~11902~^~211~^0.70^3^0.32^~1~^~A~^^^1^0.07^1.17^2^-0.70^2.10^~1, 2, 3~^~04/01/2009~ -~11902~^~212~^1.02^3^0.21^~1~^~A~^^^1^0.76^1.45^2^0.07^1.95^~2, 3~^~04/01/2009~ -~11902~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11902~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11902~^~255~^72.84^10^0.87^~6~^~JA~^^^2^69.57^80.77^6^70.70^74.97^~2, 3~^~04/01/2009~ -~11902~^~269~^7.73^3^0.73^~1~^~A~^^^1^6.26^8.52^2^4.56^10.91^~2, 3~^~04/01/2009~ -~11902~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~11902~^~303~^0.55^10^0.04^~6~^~JA~^^^2^0.35^0.61^7^0.45^0.65^~2, 3~^~04/01/2009~ -~11902~^~309~^0.54^9^0.03^~6~^~JA~^^^2^0.48^0.66^5^0.46^0.61^~2, 3~^~04/01/2009~ -~11902~^~323~^0.09^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~ -~11902~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11902~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11902~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11903~^~203~^1.95^354^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~204~^0.50^337^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~205~^15.41^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~11903~^~207~^0.80^316^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~255~^81.34^300^0.16^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~303~^0.41^327^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11903~^~309~^0.36^97^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11904~^~203~^1.95^354^0.02^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~204~^0.50^337^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~205~^15.41^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11904~^~207~^0.80^316^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~255~^81.34^300^0.16^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~303~^0.41^327^0.01^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11904~^~309~^0.36^97^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11905~^~203~^2.29^22^0.04^~1~^~A~^^^2^1.95^2.54^3^2.15^2.41^~2, 3~^~04/01/2016~ -~11905~^~204~^1.22^22^0.06^~1~^~A~^^^2^0.70^1.67^7^1.05^1.37^~2, 3~^~04/01/2016~ -~11905~^~205~^14.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~207~^0.75^22^0.05^~1~^~A~^^^2^0.38^1.00^4^0.58^0.90^~2, 3~^~04/01/2016~ -~11905~^~209~^8.06^10^1.39^~1~^~A~^^^1^3.80^13.40^3^3.67^12.44^~2, 3~^~04/01/2016~ -~11905~^~210~^3.90^10^0.31^~1~^~A~^^^1^2.70^4.90^3^2.91^4.88^~2, 3~^~04/01/2016~ -~11905~^~211~^0.28^10^0.01^~1~^~A~^^^1^0.20^0.30^4^0.23^0.32^~2, 3~^~04/01/2016~ -~11905~^~212~^0.18^10^0.01^~1~^~A~^^^1^0.10^0.20^3^0.13^0.23^~2, 3~^~04/01/2016~ -~11905~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11905~^~214~^0.08^10^6.0e-03^~1~^~A~^^^1^0.07^0.20^2^0.05^0.10^~1, 2, 3~^~04/01/2016~ -~11905~^~255~^81.41^22^0.85^~1~^~A~^^^2^76.90^84.80^3^78.86^83.94^~2, 3~^~04/01/2016~ -~11905~^~269~^4.44^10^0.33^~1~^~A~^^^1^3.27^5.47^3^3.40^5.47^~2, 3~^~04/01/2016~ -~11905~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~303~^0.27^22^0.01^~1~^~A~^^^2^0.18^0.34^6^0.24^0.30^~2, 3~^~04/01/2016~ -~11905~^~309~^0.32^22^0.01^~1~^~A~^^^2^0.23^0.39^2^0.24^0.40^~2, 3~^~04/01/2016~ -~11905~^~323~^0.09^2^^~1~^~A~^^^1^0.06^0.10^^^^^~04/01/2016~ -~11905~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2016~ -~11905~^~342~^0.31^2^^~1~^~A~^^^1^0.23^0.34^^^^^~04/01/2016~ -~11905~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2016~ -~11905~^~344~^0.26^2^^~1~^~A~^^^1^0.25^0.26^^^^^~04/01/2016~ -~11905~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2014~ -~11905~^~346~^0.90^2^^~1~^~A~^^^1^0.87^1.01^^^^^~04/01/2016~ -~11905~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2014~ -~11905~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11905~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11905~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11906~^~203~^1.74^305^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~204~^0.42^281^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~205~^18.62^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11906~^~207~^0.98^291^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~255~^78.24^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~269~^6.09^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~11906~^~303~^0.31^48^0.01^~1~^^^^5^0.00^0.59^47^0.28^0.34^~4~^~05/01/2013~ -~11906~^~309~^0.56^48^0.02^~1~^^^^5^0.28^1.04^47^0.50^0.61^~4~^~05/01/2013~ -~11906~^~323~^0.07^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~341~^0.00^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~342~^0.10^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~343~^0.00^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~344~^0.00^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~345~^0.00^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~346~^0.21^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~347~^0.00^1^^~1~^^^^^^^^^^^~05/01/2013~ -~11906~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11906~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11906~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11907~^~203~^1.74^305^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~204~^0.42^281^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~205~^18.13^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11907~^~207~^0.98^291^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~255~^78.73^267^0.19^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~269~^2.21^0^^~4~^~BFZN~^~11906~^^^^^^^^^~03/01/2010~ -~11907~^~303~^0.38^286^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~309~^0.53^80^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~323~^0.06^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~ -~11907~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11907~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11907~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11908~^~203~^2.41^71^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~204~^0.50^71^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~205~^19.44^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11908~^~207~^1.07^71^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~255~^76.58^71^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~303~^0.42^69^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~309~^0.46^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11909~^~203~^2.41^71^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~204~^0.50^71^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~205~^19.44^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11909~^~207~^1.07^71^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~255~^76.58^71^0.43^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~303~^0.42^69^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~309~^0.46^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11910~^~203~^3.02^81^0.03^~6~^~JA~^^^2^2.83^3.04^78^2.95^3.08^~2, 3~^~02/01/2013~ -~11910~^~204~^0.77^78^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~205~^20.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~207~^0.48^72^0.01^~6~^~JA~^^^2^0.48^0.61^69^0.45^0.51^~2, 3~^~02/01/2013~ -~11910~^~210~^8.50^3^0.18^~12~^~MA~^^^1^8.23^8.85^2^7.71^9.28^~2, 3~^~02/01/2013~ -~11910~^~211~^0.35^3^0.03^~12~^~MA~^^^1^0.30^0.43^2^0.18^0.52^~2, 3~^~02/01/2013~ -~11910~^~212~^0.20^3^6.0e-03^~12~^~MA~^^^1^0.19^0.21^2^0.17^0.22^~2, 3~^~02/01/2013~ -~11910~^~213~^0.03^3^0.03^~12~^~MA~^^^1^0.00^0.10^2^-0.11^0.17^~1, 2, 3~^~02/01/2013~ -~11910~^~214~^0.00^3^0.00^~12~^~MA~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~11910~^~255~^75.00^77^0.87^~6~^~JA~^^^2^74.92^77.83^73^73.25^76.74^~2, 3~^~02/01/2013~ -~11910~^~269~^9.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~11910~^~303~^0.41^80^0.03^~6~^~JA~^^^2^0.26^0.42^76^0.33^0.49^~2, 3~^~02/01/2013~ -~11910~^~309~^0.37^17^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11911~^~203~^2.75^7^0.11^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~204~^0.43^7^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~205~^19.56^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11911~^~207~^0.53^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~255~^76.73^10^0.47^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~269~^3.12^0^^~4~^~BFSN~^~11901~^^^^^^^^^~02/01/2003~ -~11911~^~303~^0.35^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~309~^0.40^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~323~^0.07^0^^~4~^~BFSN~^~11901~^^^^^^^^^~02/01/2003~ -~11911~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11911~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11911~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11912~^~203~^2.75^7^0.11^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~204~^0.43^7^0.12^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~205~^19.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11912~^~207~^0.53^7^0.04^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~255~^76.73^10^0.47^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~269~^3.12^0^^~4~^~BFZN~^~11911~^^^^^^^^^~05/01/2005~ -~11912~^~303~^0.35^7^0.02^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~309~^0.40^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~323~^0.07^0^^~4~^~BFZN~^~11911~^^^^^^^^^~05/01/2005~ -~11912~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11912~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11912~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11913~^~203~^3.28^58^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~204~^0.78^58^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~205~^23.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11913~^~207~^0.65^57^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~255~^71.79^58^0.27^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~303~^0.68^58^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~309~^0.70^5^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11914~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~204~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~205~^22.33^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11914~^~207~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~255~^73.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~303~^0.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11915~^~203~^3.11^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~204~^0.74^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~205~^22.33^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11915~^~207~^0.62^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~255~^73.20^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~303~^0.61^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11916~^~203~^0.80^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~205~^3.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11916~^~207~^3.75^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~255~^91.25^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~303~^0.80^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~309~^0.18^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11917~^~203~^1.08^7^0.07^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~204~^0.21^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~205~^4.45^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11917~^~207~^0.30^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~255~^93.96^7^0.38^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~269~^3.26^0^^~4~^~BFSN~^~11821~^^^^^^^^^~11/01/2002~ -~11917~^~303~^0.62^7^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~309~^0.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~323~^1.23^0^^~4~^~BFSN~^~11821~^^^^^^^^^~08/01/2007~ -~11917~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11917~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11917~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11918~^~203~^0.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~205~^3.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11918~^~207~^0.86^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~11918~^~255~^94.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~269~^2.86^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11918~^~303~^0.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~323~^1.08^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11918~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11919~^~203~^0.95^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~204~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~205~^3.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~11919~^~207~^0.86^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~11919~^~255~^94.70^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~269~^2.86^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11919~^~303~^0.52^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~309~^0.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~323~^1.08^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~ -~11919~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11921~^~203~^1.04^4^0.03^~1~^~A~^^^1^0.96^1.14^3^0.91^1.16^~2, 3~^~04/01/2003~ -~11921~^~204~^12.75^4^0.99^~1~^~A~^^^1^10.60^15.40^3^9.59^15.90^~2, 3~^~04/01/2003~ -~11921~^~205~^6.57^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~207~^0.70^4^0.02^~1~^~A~^^^1^0.63^0.76^3^0.61^0.78^~2, 3~^~04/01/2003~ -~11921~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11921~^~210~^0.06^4^0.05^~1~^~A~^^^1^0.00^0.23^3^-0.12^0.24^~1, 2, 3~^~04/01/2003~ -~11921~^~211~^1.91^4^0.06^~1~^~A~^^^1^1.73^1.99^3^1.71^2.11^~2, 3~^~04/01/2003~ -~11921~^~212~^2.31^4^0.10^~1~^~A~^^^1^1.98^2.44^3^1.95^2.65^~2, 3~^~04/01/2003~ -~11921~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11921~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2003~ -~11921~^~255~^78.95^4^1.22^~1~^~A~^^^1^75.49^81.07^3^75.04^82.85^~2, 3~^~04/01/2003~ -~11921~^~269~^4.28^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11921~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11921~^~303~^0.47^4^0.13^~1~^~A~^^^1^0.24^0.87^3^0.04^0.90^~2, 3~^~04/01/2003~ -~11921~^~309~^0.15^4^0.02^~1~^~A~^^^1^0.10^0.23^3^0.06^0.23^~2, 3~^~04/01/2003~ -~11921~^~323~^3.09^2^^~1~^~A~^^^1^2.72^3.46^1^^^^~04/01/2003~ -~11921~^~341~^0.12^2^^~1~^~A~^^^1^0.12^0.13^1^^^^~04/01/2003~ -~11921~^~342~^7.68^2^^~1~^~A~^^^1^7.51^7.84^1^^^^~04/01/2003~ -~11921~^~343~^2.35^2^^~1~^~A~^^^1^2.34^2.37^1^^^^~04/01/2003~ -~11921~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11921~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11921~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11921~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2003~ -~11921~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11922~^~203~^1.14^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~204~^0.05^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11922~^~207~^0.41^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~11922~^~255~^93.30^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~303~^0.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11923~^~203~^8.47^3^7.51^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~204~^4.45^3^0.95^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~205~^6.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11923~^~207~^1.10^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~255~^79.45^3^3.80^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~269~^0.43^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~303~^1.31^3^0.17^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~309~^1.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~323~^0.21^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11923~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11923~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11924~^~203~^13.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~204~^7.10^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~205~^9.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11924~^~207~^3.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~255~^67.20^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~309~^2.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11925~^~203~^1.83^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~204~^0.64^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~205~^2.93^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11925~^~207~^1.01^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~255~^93.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~303~^2.08^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~309~^0.17^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11926~^~203~^8.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~204~^0.45^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~205~^21.25^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11926~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~255~^68.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~303~^3.10^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~309~^1.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~ -~11927~^~203~^1.73^1^^~1~^^^^^^^^^^^~05/01/2005~ -~11927~^~204~^0.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~205~^19.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11927~^~207~^1.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~255~^77.14^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~303~^0.43^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~309~^0.32^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11928~^~203~^0.29^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~204~^0.07^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~205~^10.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11928~^~207~^0.26^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~11928~^~255~^88.60^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~303~^0.16^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~309~^0.31^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11929~^~203~^2.05^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~204~^4.93^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~205~^14.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11929~^~207~^1.14^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~255~^77.48^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~303~^0.19^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11930~^~203~^1.90^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~204~^5.60^6^0.30^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~205~^15.02^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11930~^~207~^1.18^6^0.09^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~255~^76.30^5^1.68^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~303~^0.22^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~309~^0.18^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11931~^~203~^17.90^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~204~^3.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~205~^68.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11931~^~207~^8.40^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~269~^40.77^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~303~^10.40^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~309~^2.41^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~323~^4.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11931~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11931~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11932~^~203~^1.15^17^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~204~^0.10^17^5.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~205~^4.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11932~^~207~^0.95^17^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~255~^93.30^17^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~269~^0.78^0^^~4~^~BFSN~^~11729~^^^^^^^^^~08/01/2015~ -~11932~^~303~^0.90^12^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~309~^0.29^17^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~323~^0.29^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11932~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11932~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11932~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11933~^~203~^1.15^17^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~204~^0.10^17^5.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~205~^4.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11933~^~207~^0.95^17^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~255~^93.30^17^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~269~^0.78^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~303~^0.90^12^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~309~^0.29^17^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~323~^0.03^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~ -~11933~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11933~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11933~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11934~^~203~^1.86^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~204~^4.22^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~205~^16.81^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11934~^~207~^1.50^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~210~^0.15^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~211~^0.29^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~212~^0.24^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~213~^0.71^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~214~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~255~^75.61^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~269~^1.43^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~287~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~303~^0.26^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~309~^0.27^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~323~^0.12^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~342~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~344~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~345~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~346~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~347~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~418~^0.07^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11935~^~203~^1.04^18^0.02^~1~^~A~^^^1^0.88^1.25^12^0.98^1.10^~2, 3~^~08/01/2014~ -~11935~^~204~^0.10^18^6.0e-03^~1~^~A~^^^1^0.07^0.20^7^0.08^0.11^~1, 2, 3~^~08/01/2014~ -~11935~^~205~^27.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~207~^2.94^18^0.01^~1~^~A~^^^1^2.73^3.05^13^2.90^2.97^~2, 3~^~08/01/2014~ -~11935~^~210~^2.30^9^0.02^~1~^~A~^^^1^0.00^9.55^2^2.20^2.39^~1, 2, 3~^~07/01/2012~ -~11935~^~211~^10.25^9^0.06^~1~^~A~^^^1^5.09^12.06^5^10.08^10.41^~2, 3~^~08/01/2014~ -~11935~^~212~^8.72^9^0.06^~1~^~A~^^^1^5.15^10.07^5^8.56^8.87^~2, 3~^~08/01/2014~ -~11935~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~11935~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11935~^~255~^68.51^18^0.20^~1~^~A~^^^1^65.50^73.50^7^68.04^68.98^~2, 3~^~08/01/2014~ -~11935~^~269~^21.27^9^0.10^~1~^~A~^^^1^19.79^22.02^4^20.98^21.54^~2, 3~^~08/01/2014~ -~11935~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~11935~^~303~^0.35^18^6.0e-03^~1~^~A~^^^1^0.30^0.49^13^0.34^0.36^~2, 3~^~08/01/2014~ -~11935~^~309~^0.17^18^5.0e-03^~1~^~A~^^^1^0.14^0.20^10^0.15^0.18^~2, 3~^~08/01/2014~ -~11935~^~323~^1.46^2^^~1~^^^^1^1.09^1.83^1^^^^~03/01/2006~ -~11935~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2006~ -~11935~^~342~^0.13^2^^~1~^^^^1^0.11^0.15^1^^^^~03/01/2006~ -~11935~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2006~ -~11935~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~11935~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11935~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11936~^~203~^2.50^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~204~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~205~^4.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11936~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~255~^92.12^5^0.30^~1~^~A~^^^2^91.22^93.08^4^91.28^92.95^~4~^~04/01/2015~ -~11936~^~269~^1.72^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~303~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~309~^1.10^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~323~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2015~ -~11936~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~04/01/2015~ -~11936~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2015~ -~11936~^~418~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11937~^~203~^0.50^18^0.01^~1~^~A~^^^1^0.37^0.75^11^0.46^0.54^~2, 3~^~08/01/2014~ -~11937~^~204~^0.30^18^0.01^~1~^~A~^^^1^0.20^0.40^12^0.27^0.33^~2, 3~^~08/01/2014~ -~11937~^~205~^2.41^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11937~^~207~^2.45^18^0.05^~1~^~A~^^^1^1.35^3.40^11^2.32^2.57^~2, 3~^~08/01/2014~ -~11937~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~11937~^~211~^0.52^5^0.02^~1~^~A~^^^1^0.46^0.59^2^0.40^0.62^~2, 3~^~08/01/2014~ -~11937~^~212~^0.55^5^6.0e-03^~1~^~A~^^^1^0.52^0.59^1^0.48^0.61^~2, 3~^~08/01/2014~ -~11937~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~11937~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~11937~^~255~^94.34^18^0.09^~1~^~A~^^^1^93.19^95.35^13^94.13^94.53^~2, 3~^~08/01/2014~ -~11937~^~269~^1.07^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11937~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11937~^~303~^0.26^18^0.01^~1~^~A~^^^1^0.17^0.38^9^0.22^0.28^~2, 3~^~08/01/2014~ -~11937~^~309~^0.10^18^4.0e-03^~1~^~A~^^^1^0.08^0.15^11^0.09^0.11^~2, 3~^~08/01/2014~ -~11937~^~323~^0.03^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~ -~11937~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11937~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11937~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11938~^~203~^3.09^33^0.10^~11~^~JO~^^^5^2.25^4.03^19^2.87^3.31^~4~^~04/01/2015~ -~11938~^~204~^0.34^33^0.03^~11~^~JO~^^^6^0.10^0.58^19^0.27^0.41^~4~^~04/01/2015~ -~11938~^~205~^3.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~207~^0.85^29^0.02^~11~^~JO~^^^5^0.60^1.04^15^0.78^0.91^~4~^~04/01/2015~ -~11938~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~211~^1.48^8^0.42^~11~^~JO~^^^4^0.00^3.58^7^0.46^2.49^~1, 4~^~04/01/2015~ -~11938~^~212~^0.17^8^0.13^~11~^~JO~^^^4^0.00^1.10^7^-0.14^0.49^~4~^~04/01/2015~ -~11938~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~255~^92.45^56^0.23^~11~^~JO~^^^9^88.20^95.20^34^91.96^92.93^~4~^~04/01/2015~ -~11938~^~269~^1.98^5^0.54^~11~^~JO~^^^3^0.17^3.58^4^0.46^3.49^~4~^~04/01/2015~ -~11938~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~303~^0.50^58^0.10^~6~^~JA~^^^11^0.00^3.05^36^0.28^0.71^~1, 4~^~04/01/2015~ -~11938~^~309~^0.52^62^0.04^~11~^~JO~^^^12^0.26^1.57^40^0.44^0.60^~4~^~04/01/2015~ -~11938~^~323~^0.01^2^^~11~^~JO~^^^2^0.01^0.01^1^^^~1~^~04/01/2015~ -~11938~^~341~^0.01^2^^~11~^~JO~^^^2^0.00^0.01^1^^^~1~^~04/01/2015~ -~11938~^~342~^0.01^2^^~11~^~JO~^^^2^0.00^0.02^1^^^~1~^~04/01/2015~ -~11938~^~343~^0.01^2^^~11~^~JO~^^^2^0.00^0.02^1^^^~1~^~04/01/2015~ -~11938~^~344~^0.05^2^^~11~^~JO~^^^2^0.03^0.07^1^^^^~04/01/2015~ -~11938~^~345~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~04/01/2015~ -~11938~^~346~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~04/01/2015~ -~11938~^~347~^0.00^2^^~11~^~JO~^^^2^0.00^0.00^1^^^~1~^~04/01/2015~ -~11938~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11939~^~203~^3.28^8^0.10^~1~^~A~^^^2^1.80^4.63^5^3.01^3.55^~2, 3~^~08/01/2009~ -~11939~^~204~^0.58^8^0.13^~1~^~A~^^^2^0.32^1.57^3^0.14^1.00^~2, 3~^~08/01/2009~ -~11939~^~205~^4.44^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11939~^~207~^1.05^8^0.04^~1~^~A~^^^2^0.76^1.30^6^0.94^1.14^~2, 3~^~08/01/2009~ -~11939~^~209~^0.43^1^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~11939~^~210~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~211~^2.26^5^0.05^~1~^~A~^^^2^0.00^3.00^3^2.09^2.42^~1, 2, 3~^~08/01/2009~ -~11939~^~212~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~214~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~255~^90.66^8^0.39^~1~^~A~^^^2^87.79^93.35^6^89.66^91.65^~2, 3~^~08/01/2009~ -~11939~^~269~^2.26^5^0.05^~1~^~A~^^^2^0.00^3.00^3^2.09^2.42^~2, 3~^~08/01/2009~ -~11939~^~287~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~11939~^~303~^0.40^7^0.09^~1~^~A~^^^2^0.21^0.98^2^0.02^0.76^~2, 3~^~08/01/2009~ -~11939~^~309~^0.65^7^0.02^~1~^~A~^^^2^0.51^0.77^5^0.57^0.72^~2, 3~^~08/01/2009~ -~11939~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11939~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11939~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11940~^~203~^0.58^4^0.03^~6~^~JA~^^^2^0.50^0.70^2^0.44^0.71^~2, 3~^~04/01/2006~ -~11940~^~204~^0.41^4^0.04^~6~^~JA~^^^2^0.30^0.51^2^0.21^0.61^~2, 3~^~04/01/2006~ -~11940~^~205~^21.15^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11940~^~207~^1.65^4^0.04^~6~^~JA~^^^2^1.50^1.90^2^1.44^1.86^~2, 3~^~04/01/2006~ -~11940~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~11940~^~211~^9.17^3^1.78^~1~^~A~^^^1^5.61^11.10^2^1.50^16.83^~2, 3~^~04/01/2006~ -~11940~^~212~^8.81^3^0.54^~1~^~A~^^^1^7.77^9.60^2^6.47^11.14^~2, 3~^~04/01/2006~ -~11940~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~11940~^~214~^0.29^3^0.03^~1~^~A~^^^1^0.25^0.35^2^0.16^0.42^~2, 3~^~04/01/2006~ -~11940~^~255~^76.20^4^1.97^~6~^~JA~^^^2^72.14^80.81^2^67.69^84.71^~2, 3~^~04/01/2006~ -~11940~^~269~^18.27^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~11940~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~11940~^~303~^0.25^3^0.01^~1~^~A~^^^1^0.23^0.28^2^0.19^0.31^~2, 3~^~04/01/2006~ -~11940~^~309~^0.12^3^8.0e-03^~1~^~A~^^^1^0.10^0.13^2^0.08^0.14^~2, 3~^~04/01/2006~ -~11940~^~323~^0.36^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11940~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11940~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11940~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11941~^~203~^0.33^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~204~^0.20^6^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~205~^2.26^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~207~^3.13^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~255~^94.08^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~269~^1.06^0^^~4~^~O~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~303~^0.40^6^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~309~^0.02^6^2.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~323~^0.09^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~ -~11941~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11941~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11941~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11943~^~203~^1.10^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~204~^0.30^4^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11943~^~207~^0.40^4^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~255~^93.10^7^0.29^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~269~^2.71^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~ -~11943~^~303~^1.68^4^0.41^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~309~^0.19^4^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11943~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11943~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11943~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11944~^~203~^1.50^7^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~204~^0.46^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~205~^23.35^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11944~^~207~^3.04^7^0.15^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~255~^71.65^7^0.65^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~303~^1.25^7^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~309~^0.21^6^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11945~^~203~^0.37^7^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~204~^0.47^7^0.04^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~205~^35.06^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~207~^2.03^7^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~255~^62.07^7^0.77^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~269~^29.13^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~303~^0.87^7^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~309~^0.14^7^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~323~^0.58^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11945~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11945~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11945~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11946~^~203~^0.33^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~204~^0.20^6^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~205~^2.26^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~207~^3.13^6^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~255~^94.08^6^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~269~^1.06^0^^~4~^~BFZN~^~11941~^^^^^^^^^~11/01/2002~ -~11946~^~303~^0.40^6^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~309~^0.02^6^2.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~323~^0.09^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11946~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11946~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11947~^~203~^0.50^18^0.01^~1~^~A~^^^1^0.37^0.75^11^0.46^0.54^~2, 3~^~08/01/2014~ -~11947~^~204~^0.30^18^0.01^~1~^~A~^^^1^0.20^0.40^12^0.27^0.33^~2, 3~^~08/01/2014~ -~11947~^~205~^2.41^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11947~^~207~^2.45^18^0.05^~1~^~A~^^^1^1.35^3.40^11^2.32^2.57^~2, 3~^~08/01/2014~ -~11947~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11947~^~211~^0.52^5^0.02^~1~^~A~^^^1^0.46^0.59^2^0.40^0.62^~2, 3~^~08/01/2014~ -~11947~^~212~^0.55^5^6.0e-03^~1~^~A~^^^1^0.52^0.59^1^0.48^0.61^~2, 3~^~08/01/2014~ -~11947~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11947~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~11947~^~255~^94.34^18^0.09^~1~^~A~^^^1^93.19^95.35^13^94.13^94.53^~2, 3~^~08/01/2014~ -~11947~^~269~^1.07^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~11947~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~303~^0.26^18^0.01^~1~^~A~^^^1^0.17^0.38^9^0.22^0.28^~2, 3~^~08/01/2014~ -~11947~^~309~^0.10^18^4.0e-03^~1~^~A~^^^1^0.08^0.15^11^0.09^0.11^~2, 3~^~08/01/2014~ -~11947~^~323~^0.03^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~ -~11947~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11947~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11948~^~203~^0.37^48^0.02^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~204~^0.26^48^0.01^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~205~^33.73^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11948~^~207~^0.38^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~11948~^~255~^65.26^48^0.81^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~269~^26.68^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~303~^0.59^48^0.03^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~309~^0.08^45^9.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~323~^0.53^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~ -~11948~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11948~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11948~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11949~^~203~^1.04^18^0.02^~1~^~A~^^^1^0.88^1.25^12^0.98^1.10^~2, 3~^~08/01/2014~ -~11949~^~204~^0.10^18^6.0e-03^~1~^~A~^^^1^0.07^0.20^7^0.08^0.11^~1, 2, 3~^~08/01/2014~ -~11949~^~205~^27.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~207~^2.94^18^0.01^~1~^~A~^^^1^2.73^3.05^13^2.90^2.97^~2, 3~^~08/01/2014~ -~11949~^~210~^2.30^9^0.02^~1~^~A~^^^1^0.00^9.55^2^2.20^2.39^~1, 2, 3~^~07/01/2012~ -~11949~^~211~^10.25^9^0.06^~1~^~A~^^^1^5.09^12.06^5^10.08^10.41^~2, 3~^~08/01/2014~ -~11949~^~212~^8.72^9^0.06^~1~^~A~^^^1^5.15^10.07^5^8.56^8.87^~2, 3~^~08/01/2014~ -~11949~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~11949~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~11949~^~255~^68.51^18^0.20^~1~^~A~^^^1^65.50^73.50^7^68.04^68.98^~2, 3~^~08/01/2014~ -~11949~^~269~^21.27^9^0.10^~1~^~A~^^^1^19.79^22.02^4^20.98^21.54^~2, 3~^~08/01/2014~ -~11949~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~11949~^~303~^0.35^18^6.0e-03^~1~^~A~^^^1^0.30^0.49^13^0.34^0.36^~2, 3~^~08/01/2014~ -~11949~^~309~^0.17^18^5.0e-03^~1~^~A~^^^1^0.14^0.20^10^0.15^0.18^~2, 3~^~08/01/2014~ -~11949~^~323~^1.46^2^^~1~^^^^1^1.09^1.83^1^^^^~01/01/2007~ -~11949~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~01/01/2007~ -~11949~^~342~^0.13^2^^~1~^^^^1^0.11^0.15^1^^^^~01/01/2007~ -~11949~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~01/01/2007~ -~11949~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11949~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11949~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11950~^~203~^2.66^4^0.25^~1~^~A~^^^1^2.06^3.25^3^1.85^3.45^~2, 3~^~07/01/2009~ -~11950~^~204~^0.29^4^0.08^~1~^~A~^^^1^0.15^0.50^3^0.01^0.55^~2, 3~^~07/01/2009~ -~11950~^~205~^7.81^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11950~^~207~^0.91^4^0.08^~1~^~A~^^^1^0.69^1.10^3^0.64^1.18^~2, 3~^~07/01/2009~ -~11950~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~211~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11950~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~255~^88.34^10^0.25^~6~^~JA~^^^3^86.65^89.70^6^87.70^88.96^~2, 3~^~07/01/2009~ -~11950~^~269~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11950~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~303~^1.15^3^0.08^~1~^~A~^^^1^1.04^1.32^2^0.78^1.52^~2, 3~^~07/01/2009~ -~11950~^~309~^0.65^2^^~1~^~A~^^^1^0.61^0.69^1^^^^~07/01/2009~ -~11950~^~323~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~11950~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11950~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11951~^~203~^1.00^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~204~^0.21^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~205~^6.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11951~^~207~^0.45^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~255~^92.02^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~303~^0.46^4^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~309~^0.17^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11952~^~203~^1.43^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~204~^0.25^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~205~^4.48^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11952~^~207~^0.70^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~255~^93.14^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~269~^0.60^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~ -~11952~^~303~^0.57^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~309~^0.62^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~323~^2.26^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11952~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11952~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11952~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11953~^~203~^2.71^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~204~^0.40^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~205~^3.11^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~11953~^~207~^1.05^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~255~^92.73^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~303~^0.79^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~309~^0.83^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11954~^~203~^0.96^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~204~^1.02^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~205~^5.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11954~^~207~^0.55^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~255~^91.63^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~269~^3.93^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11954~^~303~^0.62^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~309~^0.22^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~323~^0.38^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11954~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11954~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11954~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11955~^~203~^14.11^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~204~^2.97^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~205~^55.76^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11955~^~207~^12.60^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~255~^14.56^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~269~^37.59^0^^~4~^~BFSN~^~11530~^^^^^^^^^~02/01/2003~ -~11955~^~303~^9.09^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~309~^1.99^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~323~^0.01^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11955~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11955~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11955~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11956~^~203~^5.06^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~204~^14.08^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~205~^23.33^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11956~^~207~^3.70^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~255~^53.83^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~303~^2.68^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~309~^0.78^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11957~^~203~^1.24^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~204~^0.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~205~^7.30^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~11957~^~207~^1.05^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~255~^90.21^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~269~^3.93^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~303~^0.73^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~309~^0.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~323~^0.58^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11957~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~11957~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11958~^~203~^0.63^7^0.08^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~204~^0.54^7^0.05^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~205~^34.48^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11958~^~207~^3.22^7^0.12^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~255~^61.12^7^1.32^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~303~^1.14^7^0.10^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~309~^0.11^6^7.0e-03^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11959~^~203~^2.58^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~204~^0.66^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~205~^3.65^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11959~^~207~^1.40^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~255~^91.71^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~269~^2.05^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11959~^~303~^1.46^4^0.00^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~309~^0.47^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~323~^0.43^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11959~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11959~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11959~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11960~^~203~^0.64^8^0.04^~1~^~A~^^^2^0.44^0.84^5^0.54^0.74^~2, 3~^~10/01/2002~ -~11960~^~204~^0.13^8^0.02^~1~^~A~^^^2^0.07^0.25^5^0.06^0.20^~2, 3~^~10/01/2002~ -~11960~^~205~^8.24^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~207~^0.63^8^0.01^~1~^~A~^^^2^0.57^0.73^4^0.57^0.68^~2, 3~^~10/01/2002~ -~11960~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~10/01/2002~ -~11960~^~210~^2.72^4^0.13^~1~^~A~^^^1^2.35^2.95^3^2.30^3.13^~2, 3~^~10/01/2002~ -~11960~^~211~^1.04^4^0.07^~1~^~A~^^^1^0.91^1.24^3^0.79^1.28^~2, 3~^~10/01/2002~ -~11960~^~212~^1.00^4^0.06^~1~^~A~^^^1^0.83^1.10^3^0.79^1.19^~2, 3~^~10/01/2002~ -~11960~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~10/01/2002~ -~11960~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~10/01/2002~ -~11960~^~255~^90.35^8^0.11^~1~^~A~^^^2^89.93^90.76^6^90.07^90.63^~2, 3~^~10/01/2002~ -~11960~^~269~^4.76^4^0.11^~1~^~A~^^^1^4.52^5.08^3^4.38^5.12^~2, 3~^~03/01/2006~ -~11960~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~10/01/2002~ -~11960~^~303~^0.89^8^0.34^~1~^~A~^^^2^0.19^3.01^3^-0.19^1.97^~2, 3~^~10/01/2002~ -~11960~^~309~^0.17^8^6.0e-03^~1~^~A~^^^2^0.14^0.19^6^0.15^0.18^~2, 3~^~10/01/2002~ -~11960~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11961~^~203~^2.52^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~204~^0.62^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~205~^4.62^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~ -~11961~^~207~^2.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~255~^90.20^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~303~^3.13^3^1.20^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~309~^1.15^3^0.13^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11962~^~203~^10.58^3^0.22^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~204~^5.81^3^0.94^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~205~^69.86^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11962~^~207~^6.60^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~255~^7.15^3^0.18^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~269~^41.06^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~ -~11962~^~303~^6.04^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~309~^1.02^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~323~^3.14^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11962~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11962~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11962~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11963~^~203~^1.32^4^0.14^~1~^^^^1^1.02^1.58^3^0.86^1.76^~4~^~03/01/2007~ -~11963~^~204~^0.09^4^0.02^~1~^^^^1^0.05^0.13^3^0.02^0.15^~4~^~01/01/2003~ -~11963~^~205~^3.33^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11963~^~207~^1.14^4^0.10^~1~^^^^1^0.90^1.40^3^0.81^1.47^~4~^~01/01/2003~ -~11963~^~255~^94.12^8^0.10^~1~^^^^1^93.70^94.50^7^93.87^94.37^~4~^~01/01/2003~ -~11963~^~269~^1.15^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11963~^~303~^0.59^4^0.10^~1~^^^^1^0.35^0.85^3^0.24^0.92^~4~^~01/01/2003~ -~11963~^~309~^0.25^4^0.03^~1~^^^^1^0.17^0.31^3^0.16^0.34^~4~^~01/01/2003~ -~11963~^~323~^0.00^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11963~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11963~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11963~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11964~^~203~^1.35^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~204~^0.05^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~205~^3.28^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~207~^1.01^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~255~^94.31^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~269~^1.12^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~303~^0.50^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~309~^0.21^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~323~^0.00^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~ -~11964~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11964~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11964~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11965~^~203~^2.95^6^0.08^~1~^^^^2^2.68^3.21^5^2.74^3.15^~4~^~02/01/2007~ -~11965~^~204~^0.30^6^0.04^~1~^^^^2^0.20^0.50^5^0.18^0.41^~4~^~01/01/2003~ -~11965~^~205~^6.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11965~^~207~^0.88^6^0.03^~1~^^^^2^0.80^1.00^5^0.79^0.95^~4~^~01/01/2003~ -~11965~^~255~^89.79^6^0.26^~1~^^^^2^88.60^90.30^5^89.10^90.46^~4~^~01/01/2003~ -~11965~^~269~^3.03^0^^~4~^~BFSN~^~11135~^^^^^^^^^~02/01/2007~ -~11965~^~303~^0.73^6^0.05^~1~^^^^2^0.60^0.93^5^0.60^0.85^~4~^~01/01/2003~ -~11965~^~309~^0.64^6^0.14^~1~^^^^2^0.43^1.32^5^0.28^0.99^~4~^~01/01/2003~ -~11965~^~323~^0.04^0^^~4~^~O~^^^^^^^^^^~01/01/2003~ -~11965~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11965~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11965~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11967~^~203~^3.04^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~204~^0.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~205~^6.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11967~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~255~^89.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~269~^3.12^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~303~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~323~^0.04^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11967~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11967~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~11968~^~203~^3.04^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~204~^0.31^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~205~^6.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11968~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~255~^89.47^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~303~^0.72^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~309~^0.63^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~ -~11969~^~203~^1.14^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~204~^0.72^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~205~^3.81^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11969~^~207~^0.79^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~255~^93.54^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~269~^0.84^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~ -~11969~^~303~^0.56^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~309~^0.39^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~323~^0.48^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11969~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11969~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11969~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11970~^~203~^1.10^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~204~^0.17^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~205~^2.23^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11970~^~207~^0.17^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~255~^96.33^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~303~^0.74^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~309~^0.14^0^^~4~^~BFSN~^~11120~^^^^^^^^^~12/01/2007~ -~11970~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11972~^~203~^1.82^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~204~^0.49^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~205~^25.31^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~11972~^~207~^1.80^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~255~^70.58^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~303~^8.17^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~309~^2.23^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11973~^~203~^7.92^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~204~^0.73^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~205~^17.63^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~11973~^~207~^1.12^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~255~^72.60^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~269~^9.21^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11973~^~303~^1.55^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~309~^1.00^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~323~^1.16^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~ -~11973~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11974~^~203~^5.60^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~204~^2.12^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~205~^17.31^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11974~^~207~^1.65^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~255~^73.32^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~269~^6.30^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11974~^~303~^2.63^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~309~^0.67^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~323~^2.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11974~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~ -~11974~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11974~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11975~^~203~^4.27^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~204~^1.97^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~205~^11.71^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11975~^~207~^5.95^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~255~^76.10^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~303~^2.98^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~309~^0.40^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~323~^1.79^0^^~4~^~BFSN~^~11974~^^^^^^^^^~11/01/2011~ -~11975~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~11976~^~203~^1.66^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~204~^0.45^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~11976~^~207~^0.73^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~255~^91.81^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~269~^1.95^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11976~^~303~^0.46^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~309~^0.25^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11976~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11976~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11976~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11977~^~203~^1.74^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~204~^0.44^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~01/01/1995~ -~11977~^~207~^0.87^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~255~^90.25^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~269~^3.83^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~ -~11977~^~303~^0.86^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~309~^0.26^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~323~^0.69^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~11977~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11977~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11977~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11978~^~203~^11.86^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~204~^8.20^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~205~^51.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~11978~^~207~^5.89^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~255~^22.63^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~303~^10.93^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~309~^1.42^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/1994~ -~11979~^~203~^0.91^2^^~1~^~A~^^^1^0.81^1.00^1^^^^~05/01/2010~ -~11979~^~204~^0.37^2^^~1~^~A~^^^1^0.33^0.41^1^^^^~05/01/2010~ -~11979~^~205~^6.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~207~^0.53^2^^~1~^~A~^^^1^0.52^0.54^1^^^^~05/01/2010~ -~11979~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~211~^1.48^2^^~1~^~A~^^^1^1.17^1.80^1^^^^~05/01/2010~ -~11979~^~212~^2.63^2^^~1~^~A~^^^1^2.23^3.04^1^^^^~05/01/2010~ -~11979~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~255~^91.69^3^0.44^~6~^~JA~^^^2^90.88^92.20^1^86.10^97.28^~2, 3~^~05/01/2010~ -~11979~^~269~^4.12^2^^~1~^~A~^^^1^3.40^4.84^1^^^^~05/01/2010~ -~11979~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~303~^0.25^2^^~1~^~A~^^^1^0.18^0.32^1^^^^~05/01/2010~ -~11979~^~309~^0.14^2^^~1~^~A~^^^1^0.11^0.18^1^^^^~05/01/2010~ -~11979~^~323~^3.58^2^^~1~^~A~^^^1^0.56^6.61^1^^^^~05/01/2010~ -~11979~^~341~^0.17^2^^~1~^~A~^^^1^0.01^0.32^1^^^^~05/01/2010~ -~11979~^~342~^0.05^2^^~1~^~A~^^^1^0.01^0.09^1^^^~1~^~05/01/2010~ -~11979~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~05/01/2010~ -~11979~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~05/01/2010~ -~11979~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~11979~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~ -~11979~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11979~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11980~^~203~^0.72^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~204~^0.27^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~205~^4.60^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11980~^~207~^1.31^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~255~^93.25^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~303~^1.33^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~309~^0.09^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11981~^~203~^0.80^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~204~^0.41^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~11981~^~207~^0.58^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~255~^91.51^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~269~^3.53^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~303~^0.46^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~309~^0.30^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~323~^0.48^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11982~^~203~^12.35^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~204~^15.85^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~205~^51.13^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11982~^~207~^5.82^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~255~^14.84^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~303~^9.83^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~309~^1.40^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11983~^~203~^1.50^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~204~^0.90^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~205~^26.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11983~^~207~^2.06^0^^~4~^~T~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~255~^68.90^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~269~^23.88^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~303~^1.40^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~309~^0.23^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~323~^0.16^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~11983~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~11983~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11983~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~11984~^~203~^0.33^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~204~^0.52^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~205~^7.44^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11984~^~207~^2.50^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~255~^89.21^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~303~^1.88^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~309~^1.10^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11985~^~203~^4.71^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~204~^2.75^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~205~^19.22^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11985~^~207~^2.54^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~255~^70.78^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~303~^2.40^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~309~^2.66^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11986~^~203~^2.98^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~204~^0.78^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~205~^2.71^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~11986~^~207~^1.04^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~255~^92.50^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~303~^1.48^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~309~^0.30^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11987~^~203~^3.31^5^0.32^~1~^~A~^^^2^2.37^4.86^2^1.36^5.24^~2, 3~^~03/01/2006~ -~11987~^~204~^0.41^5^0.06^~1~^~A~^^^2^0.26^0.66^1^-0.01^0.83^~2, 3~^~03/01/2006~ -~11987~^~205~^6.09^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~207~^1.01^5^0.11^~1~^~A~^^^2^0.73^1.65^1^-0.32^2.33^~2, 3~^~03/01/2006~ -~11987~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~211~^1.11^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11987~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~255~^89.18^11^0.59^~6~^~JA~^^^3^85.10^91.01^4^87.50^90.86^~2, 3~^~07/01/2009~ -~11987~^~269~^1.11^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11987~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~303~^1.33^4^0.32^~1~^~A~^^^2^0.71^2.37^1^-1.46^4.11^~2, 3~^~04/01/2005~ -~11987~^~309~^0.77^4^0.14^~1~^~A~^^^2^0.53^1.03^2^-0.01^1.56^~2, 3~^~04/01/2005~ -~11987~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11987~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~11988~^~203~^9.25^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~204~^0.73^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~205~^73.01^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~ -~11988~^~207~^2.21^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~255~^14.80^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~303~^5.88^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~309~^1.32^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11989~^~203~^3.83^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~204~^0.68^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~205~^4.64^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11989~^~207~^0.97^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~255~^89.88^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~303~^1.43^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~309~^0.67^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11990~^~203~^4.80^2^^~1~^~A~^^^1^4.72^4.88^^^^^~07/01/2003~ -~11990~^~204~^0.63^2^^~1~^~A~^^^1^0.57^0.68^^^^^~07/01/2003~ -~11990~^~205~^23.54^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11990~^~207~^1.92^2^^~1~^~A~^^^1^1.74^2.11^^^^^~07/01/2003~ -~11990~^~255~^69.11^2^^~1~^~A~^^^1^68.22^70.01^^^^^~07/01/2003~ -~11990~^~303~^1.03^2^^~1~^~A~^^^1^0.90^1.16^^^^^~07/01/2003~ -~11990~^~309~^1.62^2^^~1~^~A~^^^1^0.42^2.82^^^^^~07/01/2003~ -~11990~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11991~^~203~^1.46^2^^~1~^~A~^^^2^1.40^1.51^1^^^^~07/01/2003~ -~11991~^~204~^0.40^2^^~1~^~A~^^^2^0.37^0.44^1^^^^~07/01/2003~ -~11991~^~205~^23.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11991~^~207~^1.45^2^^~1~^~A~^^^2^1.41^1.48^1^^^^~07/01/2003~ -~11991~^~255~^73.06^4^1.45^~6~^~JA~^^^2^70.47^75.60^3^68.42^77.69^~4~^~07/01/2003~ -~11991~^~303~^0.98^2^^~1~^~A~^^^2^0.56^1.40^1^^^^~07/01/2003~ -~11991~^~309~^0.50^2^^~1~^~A~^^^2^0.40^0.60^1^^^^~07/01/2003~ -~11991~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~11992~^~203~^3.91^4^0.28^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~204~^0.46^4^0.13^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~205~^6.04^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11992~^~207~^1.08^4^0.10^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~255~^88.52^4^1.20^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~11992~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~303~^0.33^3^0.01^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~309~^0.73^3^0.06^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11993~^~203~^1.94^2^^~1~^~A~^^^1^1.81^2.06^1^^^^~08/01/2009~ -~11993~^~204~^0.19^2^^~1~^~A~^^^1^0.18^0.21^1^^^^~08/01/2009~ -~11993~^~205~^6.97^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11993~^~207~^0.53^2^^~1~^~A~^^^1^0.49^0.56^1^^^^~08/01/2009~ -~11993~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~211~^1.74^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~213~^0.33^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~255~^90.37^6^0.86^~1~^~A~^^^2^88.37^92.30^4^87.92^92.81^~2, 3~^~08/01/2009~ -~11993~^~269~^2.07^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~303~^0.30^2^^~1~^~A~^^^1^0.28^0.31^1^^^^~08/01/2009~ -~11993~^~309~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~323~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11993~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~11994~^~203~^1.20^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~204~^0.76^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~205~^4.67^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~207~^0.83^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~255~^92.55^0^^~4~^~BFZN~^~11096~^^^^^^^^^~01/01/2015~ -~11994~^~269~^0.88^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~303~^0.59^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~309~^0.41^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~323~^0.50^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~418~^0.00^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~573~^0.00^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~578~^0.00^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11995~^~203~^4.55^5^0.01^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~204~^0.40^5^9.0e-03^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11995~^~207~^0.83^5^0.01^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~255~^88.68^5^0.29^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~303~^1.31^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~309~^0.83^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~ -~11996~^~203~^4.31^5^0.01^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~204~^0.35^5^4.0e-03^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~205~^5.74^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~11996~^~207~^0.69^5^0.01^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~255~^88.91^5^0.04^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~303~^0.73^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~309~^0.71^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~ -~11998~^~203~^2.11^5^0.14^~1~^~A~^^^2^1.71^2.50^4^1.71^2.51^~4~^~08/01/2009~ -~11998~^~204~^0.35^5^0.04^~1~^~A~^^^2^0.20^0.49^4^0.21^0.47^~4~^~08/01/2009~ -~11998~^~205~^3.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11998~^~207~^0.85^5^0.05^~1~^~A~^^^2^0.69^1.03^4^0.70^1.00^~4~^~08/01/2009~ -~11998~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~01/01/2010~ -~11998~^~211~^2.01^4^0.08^~1~^~A~^^^1^1.79^2.16^3^1.74^2.27^~4~^~08/01/2009~ -~11998~^~212~^0.49^4^0.03^~1~^~A~^^^1^0.42^0.58^3^0.36^0.60^~4~^~08/01/2009~ -~11998~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~01/01/2010~ -~11998~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~01/01/2010~ -~11998~^~255~^92.82^9^0.59^~1~^~A~^^^2^90.96^95.12^8^91.45^94.18^~4~^~08/01/2009~ -~11998~^~269~^2.50^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11998~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~01/01/2010~ -~11998~^~303~^0.31^5^0.07^~1~^~A~^^^2^0.19^0.60^4^0.09^0.51^~4~^~08/01/2009~ -~11998~^~309~^0.53^5^0.05^~1~^~A~^^^2^0.40^0.68^4^0.38^0.67^~4~^~08/01/2009~ -~11998~^~323~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~08/01/2009~ -~11998~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~08/01/2009~ -~11998~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~01/01/2010~ -~11998~^~418~^0.05^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~12001~^~203~^7.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~204~^5.59^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~205~^29.24^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12001~^~207~^1.50^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~255~^56.27^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~303~^3.67^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~309~^0.90^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12003~^~203~^5.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~204~^2.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~205~^32.00^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12003~^~207~^1.10^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~255~^59.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~303~^0.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~309~^0.83^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12004~^~203~^5.97^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~204~^0.99^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~205~^46.28^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12004~^~207~^1.76^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~255~^45.00^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~303~^2.09^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~309~^1.13^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12005~^~203~^8.62^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~204~^1.68^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~205~^79.39^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12005~^~207~^3.81^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~255~^6.50^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~303~^4.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~309~^1.91^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12006~^~203~^16.54^21^1.23^~1~^~A~^^^5^11.42^22.68^4^13.09^19.97^~2~^~04/01/2011~ -~12006~^~204~^30.74^24^0.78^~1~^~A~^^^7^25.80^33.20^6^28.81^32.66^~2~^~04/01/2011~ -~12006~^~205~^42.12^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~207~^4.80^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~255~^5.80^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~303~^7.72^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~309~^4.58^3^1.09^~6~^~JA~^^^2^3.49^5.68^1^-9.36^18.52^~2~^~04/01/2011~ -~12006~^~323~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12007~^~203~^40.96^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~204~^6.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~205~^40.54^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12007~^~207~^6.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~255~^6.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~303~^12.66^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~309~^11.69^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12008~^~203~^49.83^6^0.66^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~204~^1.41^6^0.44^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~205~^36.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12008~^~207~^5.76^5^0.73^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~255~^6.90^7^0.24^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~303~^12.58^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~309~^11.61^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12011~^~203~^49.10^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~204~^4.77^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~205~^38.43^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12011~^~207~^6.50^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~255~^1.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~303~^13.35^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~309~^12.32^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12012~^~203~^31.56^17^1.53^~6~^~JA~^^^3^25.69^34.60^2^24.97^38.15^~2~^~01/01/2015~ -~12012~^~204~^48.75^17^1.78^~6~^~JA~^^^3^37.60^52.30^2^41.09^56.40^~2~^~01/01/2015~ -~12012~^~205~^8.67^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~12012~^~207~^6.06^11^0.43^~6~^~JA~^^^3^5.20^7.10^2^4.19^7.91^~2~^~01/01/2015~ -~12012~^~210~^0.85^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~211~^0.20^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~212~^0.31^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~213~^0.07^1^^~12~^~MA~^^^^^^^^^~1~^~01/01/2015~ -~12012~^~214~^0.07^1^^~12~^~MA~^^^^^^^^^~1~^~01/01/2015~ -~12012~^~255~^4.96^17^0.17^~6~^~JA~^^^3^3.00^6.30^2^4.19^5.72^~2~^~01/01/2015~ -~12012~^~269~^1.50^2^^~12~^~MA~^^^2^1.00^1.99^1^^^^~01/01/2015~ -~12012~^~303~^7.95^2^^~12~^~MA~^^^2^4.70^11.20^1^^^^~01/01/2015~ -~12012~^~309~^9.90^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~323~^0.80^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12013~^~203~^15.41^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~204~^1.97^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~205~^64.47^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12013~^~207~^3.99^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~255~^14.16^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~303~^3.53^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~309~^1.05^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12014~^~203~^30.23^3^0.58^~1~^~A~^^^1^29.10^31.06^2^27.70^32.74^~2, 3~^~12/01/2008~ -~12014~^~204~^49.05^3^0.64^~1~^~A~^^^1^47.99^50.20^2^46.29^51.80^~2, 3~^~12/01/2008~ -~12014~^~205~^10.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12014~^~207~^4.78^3^0.07^~1~^~A~^^^1^4.63^4.88^2^4.45^5.11^~2, 3~^~12/01/2008~ -~12014~^~209~^1.47^3^0.08^~1~^~A~^^^1^1.30^1.60^2^1.08^1.84^~2, 3~^~12/01/2008~ -~12014~^~210~^1.13^3^0.05^~1~^~A~^^^1^1.01^1.20^2^0.87^1.38^~2, 3~^~12/01/2008~ -~12014~^~211~^0.13^3^0.05^~1~^~A~^^^1^0.07^0.23^2^-0.09^0.35^~1, 2, 3~^~12/01/2008~ -~12014~^~212~^0.15^3^0.07^~1~^~A~^^^1^0.07^0.29^2^-0.16^0.45^~1, 2, 3~^~12/01/2008~ -~12014~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~255~^5.23^3^0.57^~1~^~A~^^^1^4.08^5.89^2^2.74^7.71^~2, 3~^~12/01/2008~ -~12014~^~269~^1.40^3^0.06^~1~^~A~^^^1^1.32^1.53^2^1.11^1.68^~2, 3~^~12/01/2008~ -~12014~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~303~^8.82^3^0.44^~1~^~A~^^^1^8.04^9.57^2^6.91^10.71^~2, 3~^~12/01/2008~ -~12014~^~309~^7.81^3^0.18^~1~^~A~^^^1^7.45^8.08^2^7.00^8.62^~2, 3~^~12/01/2008~ -~12014~^~323~^2.18^3^0.01^~1~^~A~^^^1^2.15^2.20^2^2.11^2.25^~2, 3~^~04/01/2009~ -~12014~^~341~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.08^0.15^~1, 2, 3~^~04/01/2009~ -~12014~^~342~^35.10^3^0.90^~1~^~A~^^^1^33.42^36.52^2^31.20^38.99^~2, 3~^~04/01/2009~ -~12014~^~343~^0.44^3^0.04^~1~^~A~^^^1^0.36^0.49^2^0.26^0.62^~2, 3~^~04/01/2009~ -~12014~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~12014~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~12014~^~346~^0.06^3^0.06^~1~^~A~^^^1^0.00^0.19^2^-0.20^0.33^~1, 2, 3~^~04/01/2009~ -~12014~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~12014~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12016~^~203~^29.84^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~204~^49.05^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~205~^14.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~207~^4.37^1^^~1~^^^^^^^^^^^~04/01/2009~ -~12016~^~209~^0.74^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~210~^1.14^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~255~^2.03^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~269~^1.29^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~303~^8.07^2^^~1~^~A~^^^2^7.42^8.72^^^^^~04/01/2009~ -~12016~^~309~^7.64^2^^~1~^~A~^^^2^7.15^8.13^^^^^~04/01/2009~ -~12016~^~323~^0.56^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~342~^12.73^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~343~^0.28^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12021~^~203~^16.18^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~204~^38.45^34^0.79^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~205~^34.29^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12021~^~207~^5.47^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~255~^5.62^34^0.14^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~303~^4.90^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~309~^5.05^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12022~^~203~^35.62^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~204~^2.39^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~205~^48.73^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12022~^~207~^6.85^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~255~^6.41^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~303~^4.86^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~309~^5.01^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12023~^~203~^17.73^61^0.25^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~204~^49.67^58^0.50^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~205~^23.45^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12023~^~207~^4.45^59^0.15^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~255~^4.69^65^0.18^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~269~^0.30^3^6.0e-03^~1~^~A~^^^1^0.29^0.31^2^0.27^0.32^~4~^~02/01/2003~ -~12023~^~303~^14.55^16^1.58^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~309~^7.75^4^0.53^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~323~^0.25^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~12023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12024~^~203~^16.96^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~204~^48.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~205~^25.74^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12024~^~207~^6.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~255~^3.30^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~303~^14.76^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~309~^7.16^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12029~^~203~^16.96^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~204~^48.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~205~^26.04^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12029~^~207~^4.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~255~^5.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~269~^0.48^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~303~^7.78^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~309~^10.23^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~323~^0.25^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12029~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12032~^~203~^40.32^5^3.27^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~204~^11.89^5^1.73^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~205~^35.14^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12032~^~207~^6.05^5^0.55^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~255~^6.61^5^0.78^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~303~^14.30^6^0.31^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~309~^10.70^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12033~^~203~^50.14^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~204~^1.75^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~205~^35.51^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12033~^~207~^5.50^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~255~^7.10^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~303~^14.22^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~309~^10.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12034~^~203~^16.96^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~204~^48.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~205~^26.04^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12034~^~207~^4.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~255~^5.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~303~^14.55^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~309~^10.23^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12036~^~203~^20.78^2^^~1~^~A~^^^1^18.97^22.58^1^^^^~05/01/2007~ -~12036~^~204~^51.46^2^^~1~^~A~^^^1^48.47^54.46^1^^^^~05/01/2007~ -~12036~^~205~^20.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~12036~^~207~^3.02^2^^~1~^~A~^^^1^3.01^3.04^1^^^^~05/01/2007~ -~12036~^~210~^2.50^3^0.23^~1~^~A~^^^1^2.10^2.90^2^1.50^3.49^~4~^~05/01/2007~ -~12036~^~255~^4.73^5^0.25^~1~^~A~^^^2^4.36^5.54^1^1.49^7.97^~2~^~05/01/2007~ -~12036~^~269~^2.62^0^^~4~^~BFSN~^~12537~^^^^^^^^^~05/01/2007~ -~12036~^~303~^5.25^2^^~1~^~A~^^^1^4.30^6.20^1^^^^~05/01/2007~ -~12036~^~309~^5.00^2^^~1~^~A~^^^1^4.80^5.20^1^^^^~05/01/2007~ -~12036~^~323~^35.17^5^4.98^~1~^~A~^^^3^26.90^57.55^2^13.74^56.60^~2~^~11/01/2008~ -~12036~^~341~^1.18^4^0.12^~1~^~A~^^^2^0.82^1.32^1^-0.40^2.77^~2, 3~^~11/01/2008~ -~12036~^~342~^0.37^4^0.17^~1~^~A~^^^2^0.00^1.09^1^-1.88^2.62^~1, 2, 3~^~11/01/2008~ -~12036~^~343~^0.02^4^0.01^~1~^~A~^^^2^0.00^0.06^1^-0.17^0.20^~1, 2, 3~^~11/01/2008~ -~12036~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~12036~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12037~^~203~^19.33^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~204~^49.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~205~^24.07^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12037~^~207~^5.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~255~^1.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~269~^2.73^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~ -~12037~^~303~^3.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~309~^5.29^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~323~^26.10^4^4.83^~1~^~A~^^^2^21.27^36.40^1^-35.29^87.49^~2~^~05/01/2004~ -~12037~^~341~^1.19^4^0.06^~1~^~A~^^^2^1.12^1.45^1^0.32^2.05^~2~^~05/01/2004~ -~12037~^~342~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~05/01/2004~ -~12037~^~343~^0.24^4^0.24^~1~^~A~^^^2^0.00^1.44^1^-2.80^3.28^~1, 2~^~05/01/2004~ -~12037~^~344~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12037~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12037~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12037~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12037~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12038~^~203~^20.06^2^^~1~^~A~^^^2^17.65^20.86^^^^^~05/01/2004~ -~12038~^~204~^51.30^2^^~1~^~A~^^^2^50.99^51.40^^^^^~05/01/2004~ -~12038~^~205~^22.89^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~207~^4.22^2^^~1~^~A~^^^2^4.14^4.44^^^^^~05/01/2004~ -~12038~^~210~^2.37^5^^~1~^~A~^^^3^1.66^3.08^^^^~2~^~05/01/2004~ -~12038~^~211~^0.74^5^^~1~^~A~^^^3^0.00^2.18^^^^~1, 2~^~05/01/2004~ -~12038~^~212~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12038~^~213~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12038~^~214~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2004~ -~12038~^~255~^1.54^5^^~1~^~A~^^^3^0.52^2.08^^^^~2~^~05/01/2004~ -~12038~^~269~^3.11^5^^~1~^~A~^^^3^2.33^3.99^^^^~2~^~05/01/2004~ -~12038~^~303~^4.28^2^^~1~^~A~^^^2^3.97^5.20^^^^^~05/01/2004~ -~12038~^~309~^5.21^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~323~^36.33^3^2.23^~1~^~A~^^^1^33.90^40.80^2^26.71^45.95^~4~^~02/01/2004~ -~12038~^~341~^1.41^3^0.20^~1~^~A~^^^1^1.18^1.82^2^0.52^2.29^~4~^~02/01/2004~ -~12038~^~342~^0.46^3^0.08^~1~^~A~^^^1^0.37^0.63^2^0.08^0.83^~1, 4~^~02/01/2004~ -~12038~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2004~ -~12038~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2004~ -~12038~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2004~ -~12038~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2004~ -~12038~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2004~ -~12038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12039~^~203~^17.21^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~204~^56.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~205~^20.59^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12039~^~207~^4.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~255~^1.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~303~^6.81^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~309~^5.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12040~^~203~^17.28^3^0.11^~1~^~A~^^^1^17.12^17.49^2^16.80^17.75^~2, 3~^~08/01/2010~ -~12040~^~204~^55.20^3^0.68^~1~^~A~^^^1^53.93^56.26^2^52.26^58.13^~2, 3~^~08/01/2010~ -~12040~^~205~^23.32^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~207~^3.58^3^0.06^~1~^~A~^^^1^3.45^3.67^2^3.29^3.87^~2, 3~^~08/01/2010~ -~12040~^~209~^0.83^3^0.08^~1~^~A~^^^1^0.74^1.00^2^0.45^1.20^~1, 2, 3~^~08/01/2010~ -~12040~^~210~^10.54^3^0.07^~1~^~A~^^^1^10.41^10.65^2^10.23^10.83^~2, 3~^~08/01/2010~ -~12040~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~255~^0.62^3^0.06^~1~^~A~^^^1^0.49^0.69^2^0.34^0.89^~2, 3~^~08/01/2010~ -~12040~^~269~^10.54^3^0.07^~1~^~A~^^^1^10.41^10.65^2^10.23^10.83^~2, 3~^~08/01/2010~ -~12040~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~303~^4.12^3^0.09^~1~^~A~^^^1^3.94^4.28^2^3.69^4.54^~2, 3~^~08/01/2010~ -~12040~^~309~^4.89^3^0.11^~1~^~A~^^^1^4.69^5.09^2^4.39^5.38^~2, 3~^~08/01/2010~ -~12040~^~323~^22.89^3^3.55^~1~^~A~^^^1^18.53^29.92^2^7.61^38.16^~2, 3~^~08/01/2010~ -~12040~^~341~^1.34^3^0.15^~1~^~A~^^^1^1.05^1.57^2^0.68^2.00^~2, 3~^~08/01/2010~ -~12040~^~342~^14.99^3^7.44^~1~^~A~^^^1^0.86^26.13^2^-17.04^47.02^~2, 3~^~08/01/2010~ -~12040~^~343~^5.66^3^3.03^~1~^~A~^^^1^0.00^10.37^2^-7.38^18.70^~1, 2, 3~^~08/01/2010~ -~12040~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~346~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~08/01/2010~ -~12040~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12041~^~203~^48.06^11^1.43^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~204~^1.61^11^0.18^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~205~^35.83^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12041~^~207~^7.04^8^0.21^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~255~^7.47^11^0.71^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~303~^6.62^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~309~^4.95^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12058~^~203~^6.15^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~204~^23.86^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~205~^40.75^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12058~^~207~^1.35^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~255~^27.90^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~303~^0.79^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~309~^0.51^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12059~^~203~^8.10^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~204~^31.41^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~205~^53.66^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12059~^~207~^1.78^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~255~^5.06^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~303~^1.04^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~309~^0.67^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12060~^~203~^7.49^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~204~^30.17^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~205~^54.65^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12060~^~207~^1.69^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~255~^6.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~303~^1.21^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~309~^0.64^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12061~^~203~^21.15^91^0.11^~1~^~A~^^^3^16.82^25.43^2^20.42^21.86^~2~^~04/01/2013~ -~12061~^~204~^49.93^90^0.28^~1~^~A~^^^3^43.70^54.10^3^48.94^50.92^~2~^~04/01/2013~ -~12061~^~205~^21.55^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~207~^2.97^90^0.04^~1~^~A~^^^3^2.29^3.42^3^2.82^3.10^~2~^~04/01/2013~ -~12061~^~209~^0.72^4^0.10^~1~^~A~^^^1^0.66^0.97^3^0.40^1.04^~4~^~04/01/2013~ -~12061~^~210~^3.95^93^0.21^~1~^~A~^^^3^2.50^5.12^3^3.30^4.60^~2~^~04/01/2013~ -~12061~^~211~^0.17^93^0.03^~1~^~A~^^^3^0.00^0.87^3^0.05^0.28^~1, 2~^~04/01/2013~ -~12061~^~212~^0.11^93^0.04^~1~^~A~^^^3^0.00^0.83^3^-0.02^0.25^~1, 2~^~04/01/2013~ -~12061~^~213~^0.00^93^0.00^~1~^~A~^^^3^0.00^0.02^3^0.00^0.00^~1, 2~^~05/01/2007~ -~12061~^~214~^0.04^93^0.02^~1~^~A~^^^3^0.00^0.14^2^-0.03^0.11^~1, 2~^~05/01/2007~ -~12061~^~255~^4.41^90^0.21^~1~^~A~^^^3^3.20^6.30^3^3.69^5.12^~2~^~04/01/2013~ -~12061~^~269~^4.35^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~12061~^~287~^0.07^88^0.02^~1~^~A~^^^2^0.00^0.78^2^-0.02^0.16^~1, 2~^~04/01/2013~ -~12061~^~303~^3.71^89^0.13^~1~^~A~^^^3^2.58^5.12^2^3.15^4.26^~2~^~04/01/2013~ -~12061~^~309~^3.12^86^0.06^~1~^~A~^^^3^2.02^4.03^4^2.93^3.30^~2~^~04/01/2013~ -~12061~^~323~^25.63^90^0.29^~1~^~A~^^^3^18.20^33.30^2^24.16^27.09^~2~^~04/01/2013~ -~12061~^~341~^0.23^90^0.07^~1~^~A~^^^3^0.00^1.25^3^-0.01^0.46^~1, 2~^~04/01/2013~ -~12061~^~342~^0.64^90^0.07^~1~^~A~^^^3^0.00^1.49^3^0.42^0.86^~1, 2~^~04/01/2013~ -~12061~^~343~^0.07^88^0.04^~1~^~A~^^^3^0.00^0.51^2^-0.09^0.23^~1, 2~^~04/01/2013~ -~12061~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12062~^~203~^21.40^12^0.63^~1~^~A~^^^2^19.48^22.50^1^13.33^29.46^~2~^~03/01/2010~ -~12062~^~204~^52.52^11^0.21^~1~^~A~^^^2^48.89^57.40^1^49.76^55.26^~2~^~03/01/2010~ -~12062~^~205~^18.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~207~^2.91^11^0.10^~1~^~A~^^^2^2.50^3.03^1^1.58^4.22^~2~^~03/01/2010~ -~12062~^~209~^1.00^3^0.02^~1~^~A~^^^1^0.95^1.04^2^0.88^1.11^~4~^~03/01/2010~ -~12062~^~210~^4.46^8^0.27^~1~^~A~^^^2^3.00^5.30^1^0.94^7.97^~2~^~03/01/2010~ -~12062~^~211~^0.03^8^8.0e-03^~1~^~A~^^^2^0.00^0.10^1^-0.07^0.12^~1, 2~^~03/01/2010~ -~12062~^~212~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2010~ -~12062~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12062~^~214~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12062~^~255~^4.51^11^0.04^~1~^~A~^^^2^1.80^5.36^1^3.94^5.07^~2~^~03/01/2010~ -~12062~^~269~^4.63^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~ -~12062~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~12062~^~303~^3.28^8^0.25^~1~^~A~^^^2^1.71^3.80^1^0.11^6.45^~2~^~03/01/2010~ -~12062~^~309~^2.97^7^0.03^~1~^~A~^^^2^1.85^3.59^1^2.51^3.42^~2~^~03/01/2010~ -~12062~^~323~^23.75^10^0.75^~1~^~A~^^^2^18.10^28.50^1^14.22^33.28^~2~^~03/01/2010~ -~12062~^~341~^0.35^11^0.08^~1~^~A~^^^2^0.09^0.50^1^-0.66^1.36^~1, 2~^~03/01/2010~ -~12062~^~342~^0.66^11^0.14^~1~^~A~^^^2^0.13^0.97^1^-1.15^2.47^~1, 2~^~03/01/2010~ -~12062~^~343~^0.20^11^0.01^~1~^~A~^^^2^0.00^0.37^1^0.01^0.38^~1, 2~^~03/01/2010~ -~12062~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12063~^~203~^20.96^24^0.62^~1~^~A~^^^3^17.80^23.70^2^18.27^23.65^~2~^~04/01/2013~ -~12063~^~204~^52.54^23^0.76^~1~^~A~^^^3^47.29^56.29^2^49.26^55.81^~2~^~04/01/2013~ -~12063~^~205~^21.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~207~^3.07^21^0.06^~1~^~A~^^^3^2.51^3.48^2^2.81^3.33^~2~^~04/01/2013~ -~12063~^~209~^0.73^3^0.03^~1~^~A~^^^1^0.68^0.81^2^0.56^0.90^~4~^~03/01/2010~ -~12063~^~210~^4.75^22^0.07^~1~^~A~^^^3^4.00^6.50^2^4.43^5.07^~2~^~04/01/2013~ -~12063~^~211~^0.01^22^0.01^~1~^~A~^^^3^0.00^0.04^2^-0.03^0.06^~1, 2~^~04/01/2013~ -~12063~^~212~^0.01^22^3.0e-03^~1~^~A~^^^3^0.00^0.10^2^-7.0e-03^0.01^~1, 2~^~03/01/2010~ -~12063~^~213~^0.00^15^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2001~ -~12063~^~214~^0.09^15^0.05^~1~^~A~^^^2^0.00^0.20^1^-0.60^0.77^~1, 2~^~04/01/2013~ -~12063~^~255~^2.41^23^0.12^~1~^~A~^^^3^1.00^3.24^2^1.88^2.93^~2~^~04/01/2013~ -~12063~^~269~^4.86^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~12063~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~12063~^~303~^3.73^22^0.32^~1~^~A~^^^3^2.34^4.70^2^2.33^5.13^~2~^~04/01/2013~ -~12063~^~309~^3.31^19^0.09^~1~^~A~^^^3^2.52^3.75^2^2.90^3.71^~2~^~04/01/2013~ -~12063~^~323~^23.90^23^1.04^~1~^~A~^^^3^16.40^30.39^2^19.41^28.39^~2~^~04/01/2013~ -~12063~^~341~^0.32^12^0.06^~1~^~A~^^^3^0.16^0.54^2^0.04^0.60^~1, 2~^~04/01/2013~ -~12063~^~342~^0.72^20^0.09^~1~^~A~^^^3^0.24^1.09^2^0.31^1.11^~1, 2~^~04/01/2013~ -~12063~^~343~^0.09^23^0.03^~1~^~A~^^^3^0.00^0.37^2^-0.06^0.23^~1, 2~^~04/01/2013~ -~12063~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12065~^~203~^21.23^3^1.14^~1~^~A~^^^1^20.60^23.30^2^16.31^26.14^~4~^~01/01/2001~ -~12065~^~204~^55.17^3^1.19^~1~^~A~^^^1^52.70^55.70^2^50.01^60.32^~4~^~01/01/2001~ -~12065~^~205~^17.68^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~207~^3.13^3^0.03^~1~^~A~^^^1^3.12^3.20^2^2.97^3.28^~4~^~01/01/2001~ -~12065~^~209~^0.56^3^0.32^~1~^~A~^^^1^0.39^1.23^2^-0.83^1.95^~4~^~01/01/2001~ -~12065~^~210~^4.38^3^0.24^~1~^~A~^^^1^4.30^4.90^2^3.30^5.44^~4~^~01/01/2001~ -~12065~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12065~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12065~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12065~^~214~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12065~^~255~^2.80^3^0.15^~1~^~A~^^^1^2.72^3.12^2^2.12^3.46^~4~^~01/01/2001~ -~12065~^~269~^4.55^3^0.24^~1~^~A~^^^^^^^^^^~08/01/1999~ -~12065~^~303~^3.68^3^0.29^~1~^~A~^^^1^3.50^4.20^2^2.42^4.93^~4~^~01/01/2001~ -~12065~^~309~^3.07^3^0.24^~1~^~A~^^^1^2.90^3.50^2^1.99^4.13^~4~^~01/01/2001~ -~12065~^~323~^25.97^3^1.04^~1~^~A~^^^1^24.80^27.50^2^21.48^30.46^~4~^~01/01/2001~ -~12065~^~341~^0.42^3^0.04^~1~^~A~^^^1^0.40^0.50^2^0.22^0.60^~4~^~01/01/2001~ -~12065~^~342~^0.88^3^0.04^~1~^~A~^^^1^0.80^0.90^2^0.68^1.06^~4~^~01/01/2001~ -~12065~^~343~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12065~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12071~^~203~^9.00^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~204~^27.74^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~205~^47.81^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~12071~^~207~^1.37^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~255~^14.08^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~269~^36.25^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~12071~^~303~^1.60^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~309~^1.48^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~323~^13.54^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~12071~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~12071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~12077~^~203~^6.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~204~^50.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~205~^33.50^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12077~^~207~^3.70^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~255~^6.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~303~^2.46^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~309~^0.36^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12078~^~203~^14.32^7^0.14^~1~^~A~^^^2^13.89^14.78^4^13.92^14.71^~2, 3~^~02/01/2003~ -~12078~^~204~^67.10^11^0.58^~1~^~A~^^^4^65.00^68.60^3^65.24^68.95^~2~^~04/01/2014~ -~12078~^~205~^11.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~207~^3.43^8^0.07^~1~^~A~^^^3^3.28^3.68^2^3.08^3.76^~2~^~04/01/2014~ -~12078~^~209~^0.25^7^0.00^~1~^~A~^^^2^0.24^0.26^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~210~^2.33^7^0.07^~1~^~A~^^^2^2.05^2.53^5^2.12^2.54^~2, 3~^~02/01/2003~ -~12078~^~211~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~212~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~213~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~214~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~255~^3.42^10^0.25^~1~^~A~^^^4^2.50^4.40^3^2.61^4.23^~2~^~04/01/2014~ -~12078~^~269~^2.33^7^0.07^~1~^~A~^^^2^2.05^2.53^5^2.12^2.54^~2, 3~^~02/01/2003~ -~12078~^~287~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~303~^2.43^7^0.03^~1~^~A~^^^2^2.32^2.63^2^2.32^2.54^~2, 3~^~02/01/2003~ -~12078~^~309~^4.06^7^0.04^~1~^~A~^^^2^3.85^4.24^4^3.93^4.17^~2, 3~^~02/01/2003~ -~12078~^~323~^5.65^9^1.09^~1~^~A~^^^4^3.81^11.00^3^2.18^9.12^~2~^~04/01/2014~ -~12078~^~341~^0.01^9^8.0e-03^~1~^~A~^^^4^0.00^0.03^3^-0.01^0.03^~1, 2~^~04/01/2014~ -~12078~^~342~^9.56^9^2.27^~1~^~A~^^^4^2.08^14.63^3^2.33^16.79^~2~^~04/01/2014~ -~12078~^~343~^0.63^9^0.48^~1~^~A~^^^4^0.09^2.55^3^-0.91^2.17^~2~^~04/01/2014~ -~12078~^~344~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~02/01/2003~ -~12078~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~02/01/2003~ -~12078~^~346~^0.17^7^4.0e-03^~1~^~A~^^^3^0.15^0.20^2^0.14^0.18^~2~^~02/01/2003~ -~12078~^~347~^0.00^7^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~02/01/2003~ -~12078~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12084~^~203~^24.90^6^1.35^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~204~^56.98^12^0.54^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~205~^12.05^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12084~^~207~^2.73^4^0.21^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~255~^3.34^4^0.33^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~303~^4.02^4^0.19^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~309~^3.13^4^0.45^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12085~^~203~^15.31^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~204~^46.35^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~205~^32.69^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12085~^~207~^3.95^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~255~^1.70^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~269~^5.01^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~303~^6.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~309~^5.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~323~^0.92^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~ -~12085~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12086~^~203~^16.84^8^0.35^~1~^~A~^^^3^16.14^18.26^2^15.32^18.36^~2~^~04/01/2002~ -~12086~^~204~^47.77^3^1.86^~1~^~A~^^^3^44.10^50.20^2^39.73^55.79^~2~^~04/01/2002~ -~12086~^~205~^29.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~207~^2.03^3^0.42^~1~^~A~^^^1^1.18^2.54^2^0.18^3.88^~4~^~04/01/2002~ -~12086~^~209~^10.93^7^1.55^~1~^~A~^^^3^7.20^13.40^2^4.25^17.59^~2~^~04/01/2002~ -~12086~^~210~^4.84^8^0.60^~1~^~A~^^^3^3.74^5.84^2^2.22^7.46^~2~^~04/01/2002~ -~12086~^~211~^0.08^8^0.03^~1~^~A~^^^3^0.05^0.15^2^-0.05^0.22^~1, 2~^~04/01/2002~ -~12086~^~212~^0.08^8^0.03^~1~^~A~^^^3^0.05^0.15^2^-0.05^0.22^~1, 2~^~04/01/2002~ -~12086~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~04/01/2002~ -~12086~^~214~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~04/01/2002~ -~12086~^~255~^3.48^3^0.16^~1~^~A~^^^1^3.22^3.78^2^2.77^4.19^~4~^~04/01/2002~ -~12086~^~269~^5.01^8^0.54^~1~^~A~^^^3^4.04^5.94^2^2.64^7.37^~2~^~04/01/2002~ -~12086~^~287~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2002~ -~12086~^~303~^6.05^9^0.38^~1~^~A~^^^4^5.04^8.07^3^4.81^7.27^~2~^~04/01/2002~ -~12086~^~309~^5.35^8^0.24^~1~^~A~^^^3^4.63^6.84^2^4.31^6.39^~2~^~04/01/2002~ -~12086~^~323~^0.92^5^0.24^~1~^~A~^^^2^0.65^1.16^1^-2.18^4.01^~2~^~04/01/2002~ -~12086~^~341~^0.03^5^0.01^~1~^~A~^^^2^0.00^0.05^1^-0.19^0.25^~2~^~04/01/2002~ -~12086~^~342~^5.40^5^0.36^~1~^~A~^^^2^4.86^5.77^1^0.71^10.08^~2~^~04/01/2002~ -~12086~^~343~^0.37^5^0.04^~1~^~A~^^^2^0.29^0.41^1^-0.13^0.87^~2~^~04/01/2002~ -~12086~^~344~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2002~ -~12086~^~345~^0.10^5^0.10^~1~^~A~^^^2^0.00^0.20^1^-1.17^1.37^~2~^~04/01/2002~ -~12086~^~346~^0.20^5^0.20^~1~^~A~^^^2^0.00^0.40^1^-2.34^2.74^~2~^~04/01/2002~ -~12086~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2002~ -~12086~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~12086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12087~^~203~^18.22^2^^~1~^~A~^^^1^17.46^18.97^1^^^^~03/01/2002~ -~12087~^~204~^43.85^0^^~4~^~O~^^^^^^^^^^~03/01/2004~ -~12087~^~205~^30.19^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12087~^~207~^2.54^2^^~1~^~A~^^^1^2.44^2.63^1^^^^~03/01/2002~ -~12087~^~209~^23.49^2^^~1~^~A~^^^1^22.47^24.52^1^^^^~03/01/2002~ -~12087~^~210~^5.81^2^^~1~^~A~^^^1^5.54^6.09^1^^^^~03/01/2002~ -~12087~^~211~^0.05^2^^~1~^~A~^^^1^0.05^0.05^1^^^~1~^~03/01/2002~ -~12087~^~212~^0.05^2^^~1~^~A~^^^1^0.05^0.05^1^^^~1~^~03/01/2002~ -~12087~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~03/01/2002~ -~12087~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~03/01/2002~ -~12087~^~255~^5.20^2^^~1~^~A~^^^1^5.08^5.32^1^^^^~03/01/2002~ -~12087~^~269~^5.91^2^^~1~^~A~^^^1^5.64^6.19^1^^^^~05/01/2002~ -~12087~^~287~^0.00^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~303~^6.68^2^^~1~^~A~^^^1^6.24^7.11^1^^^^~03/01/2002~ -~12087~^~309~^5.78^2^^~1~^~A~^^^1^5.63^5.92^1^^^^~03/01/2002~ -~12087~^~323~^0.90^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~341~^0.03^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~342~^5.31^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~343~^0.36^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~344~^0.00^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~345~^0.10^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~346~^0.20^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~347~^0.00^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~12088~^~203~^17.56^3^0.59^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~204~^49.41^3^0.37^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~205~^27.57^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12088~^~207~^2.50^3^0.10^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~255~^2.96^3^0.88^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~303~^5.03^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~309~^5.16^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12093~^~203~^4.20^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~204~^1.11^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~205~^49.07^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12093~^~207~^1.67^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~255~^43.95^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~303~^1.41^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~309~^0.87^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12094~^~203~^6.82^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~204~^1.81^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~205~^79.76^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12094~^~207~^2.71^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~255~^8.90^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~303~^2.29^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~309~^1.41^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12095~^~203~^2.88^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~204~^0.76^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~205~^33.64^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12095~^~207~^1.14^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~255~^61.57^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~303~^0.97^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~309~^0.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12096~^~203~^4.48^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~204~^1.19^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~205~^52.36^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12096~^~207~^1.78^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~255~^40.20^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~303~^1.50^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~309~^0.93^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12097~^~203~^2.42^4^0.02^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~204~^2.26^4^0.13^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~205~^45.54^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12097~^~207~^1.13^4^0.03^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~255~^48.65^4^1.63^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~303~^1.01^4^0.21^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~309~^0.52^4^0.02^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12098~^~203~^1.63^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~204~^1.25^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~205~^44.17^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12098~^~207~^0.96^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~255~^52.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~303~^0.94^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~309~^0.49^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12099~^~203~^6.39^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~204~^4.45^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~205~^77.31^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12099~^~207~^2.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~255~^9.45^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~303~^2.38^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~309~^0.35^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12100~^~203~^5.01^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~204~^3.91^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~205~^78.43^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12100~^~207~^3.64^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~255~^9.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~303~^2.39^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~309~^0.35^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12101~^~203~^2.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~204~^1.38^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~205~^27.76^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12101~^~207~^0.71^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~255~^68.15^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~303~^1.73^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~309~^0.25^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12104~^~203~^3.33^12^0.21^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~204~^33.49^12^1.40^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~205~^15.23^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12104~^~207~^0.97^10^0.08^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~255~^46.99^15^1.06^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~269~^6.23^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~12104~^~303~^2.43^4^0.25^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~309~^1.10^3^0.26^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~323~^0.24^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~341~^0.00^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~342~^0.53^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~343~^0.00^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~344~^1.46^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~345~^0.00^0^^~4~^~BNA~^~04047~^^^^^^^^^~11/01/2002~ -~12104~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12108~^~203~^6.88^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~204~^64.53^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~205~^23.65^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12108~^~207~^1.94^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~255~^3.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~269~^7.35^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~12108~^~303~^3.32^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~309~^2.01^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~323~^0.44^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12108~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12109~^~203~^3.13^3^0.15^~1~^~A~^^^1^2.86^3.39^2^2.46^3.78^~2, 3~^~04/01/2006~ -~12109~^~204~^27.99^3^0.95^~1~^~A~^^^1^26.50^29.78^2^23.86^32.11^~2, 3~^~04/01/2006~ -~12109~^~205~^51.85^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12109~^~207~^1.57^3^0.04^~1~^~A~^^^1^1.48^1.64^2^1.36^1.78^~2, 3~^~04/01/2006~ -~12109~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~210~^36.21^3^0.94^~1~^~A~^^^1^34.50^37.76^2^32.14^40.26^~2, 3~^~04/01/2006~ -~12109~^~211~^0.53^3^0.02^~1~^~A~^^^1^0.49^0.57^2^0.43^0.63^~2, 3~^~04/01/2006~ -~12109~^~212~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~255~^15.46^3^1.80^~1~^~A~^^^1^12.82^18.92^2^7.68^23.23^~2, 3~^~04/01/2006~ -~12109~^~269~^36.75^3^0.93^~1~^~A~^^^1^35.08^38.31^2^32.73^40.77^~2, 3~^~11/01/2008~ -~12109~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~303~^1.51^3^0.03^~1~^~A~^^^1^1.45^1.57^2^1.36^1.65^~2, 3~^~04/01/2006~ -~12109~^~309~^0.71^3^0.02^~1~^~A~^^^1^0.67^0.75^2^0.60^0.82^~2, 3~^~04/01/2006~ -~12109~^~323~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~342~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~04/01/2006~ -~12109~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~344~^0.46^3^3.0e-03^~1~^~A~^^^1^0.46^0.47^2^0.44^0.47^~2, 3~^~04/01/2006~ -~12109~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~346~^0.12^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.10^0.13^~2, 3~^~04/01/2006~ -~12109~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12110~^~203~^3.35^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~204~^31.69^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~205~^40.91^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12110~^~207~^0.78^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~255~^23.27^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~303~^1.84^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~309~^1.59^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12114~^~203~^5.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~204~^47.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~205~^44.40^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12114~^~207~^2.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~255~^1.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~303~^3.39^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~309~^2.05^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12115~^~203~^3.63^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~204~^34.68^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~205~^6.65^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12115~^~207~^1.15^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~255~^53.90^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~303~^2.28^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~309~^0.96^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12116~^~203~^1.17^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~204~^16.31^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~205~^53.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~207~^0.34^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~210~^51.50^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~211~^0.00^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~212~^0.00^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~213~^0.00^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~214~^0.00^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~255~^28.97^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~269~^51.50^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~303~^0.13^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~309~^0.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~323~^0.13^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12116~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12117~^~203~^2.29^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~204~^23.84^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~205~^5.54^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12117~^~207~^0.72^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~255~^67.62^3^3.49^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~269~^3.34^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~12117~^~303~^1.64^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~309~^0.67^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~323~^0.15^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12117~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12118~^~203~^2.02^3^0.78^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~204~^21.33^3^8.35^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~205~^2.81^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12118~^~207~^0.97^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~255~^72.88^3^8.66^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~303~^3.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~309~^0.56^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12119~^~203~^0.72^4^0.41^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~204~^0.20^6^0.08^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~205~^3.71^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12119~^~207~^0.39^5^0.08^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~255~^94.99^7^0.27^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~269~^2.61^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~12119~^~303~^0.29^3^0.09^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~309~^0.10^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~12119~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12120~^~203~^14.95^4^0.15^~1~^~A~^^^1^14.50^15.20^3^14.45^15.44^~4~^~12/01/2000~ -~12120~^~204~^60.75^4^0.38^~1~^~A~^^^1^59.90^61.50^3^59.52^61.97^~4~^~12/01/2000~ -~12120~^~205~^16.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~207~^2.29^4^0.01^~1~^~A~^^^1^2.25^2.33^3^2.23^2.34^~4~^~12/01/2000~ -~12120~^~209~^0.48^4^0.06^~1~^~A~^^^1^0.32^0.60^3^0.26^0.69^~4~^~12/01/2000~ -~12120~^~210~^4.20^4^0.07^~1~^~A~^^^1^4.00^4.30^3^3.97^4.42^~4~^~12/01/2000~ -~12120~^~211~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12120~^~212~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12120~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12120~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12120~^~255~^5.31^4^0.19^~1~^~A~^^^1^4.85^5.76^3^4.68^5.93^~4~^~12/01/2000~ -~12120~^~269~^4.34^4^0.07^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12120~^~303~^4.70^4^0.07^~1~^~A~^^^1^4.50^4.80^3^4.47^4.92^~4~^~12/01/2000~ -~12120~^~309~^2.45^4^0.02^~1~^~A~^^^1^2.40^2.50^3^2.35^2.54^~4~^~12/01/2000~ -~12120~^~323~^15.03^4^0.39^~1~^~A~^^^1^14.10^15.90^3^13.77^16.28^~4~^~12/01/2000~ -~12120~^~341~^0.33^4^0.02^~1~^~A~^^^1^0.30^0.40^3^0.24^0.40^~4~^~12/01/2000~ -~12120~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~04/01/2001~ -~12120~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~04/01/2001~ -~12120~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12121~^~203~^13.70^2^^~1~^~A~^^^1^13.40^14.00^^^^^~06/01/2001~ -~12121~^~204~^61.15^2^^~1~^~A~^^^1^60.80^61.50^^^^^~06/01/2001~ -~12121~^~205~^17.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~207~^2.36^2^^~1~^~A~^^^1^2.32^2.40^^^^^~06/01/2001~ -~12121~^~209~^0.93^2^^~1~^~A~^^^1^0.92^0.94^^^^^~06/01/2001~ -~12121~^~210~^3.35^2^^~1~^~A~^^^1^3.30^3.40^^^^^~06/01/2001~ -~12121~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~06/01/2001~ -~12121~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~06/01/2001~ -~12121~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~06/01/2001~ -~12121~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~06/01/2001~ -~12121~^~255~^5.79^2^^~1~^~A~^^^1^5.57^6.01^^^^^~06/01/2001~ -~12121~^~269~^3.49^2^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12121~^~303~^3.30^2^^~1~^~A~^^^1^3.10^3.50^^^^^~06/01/2001~ -~12121~^~309~^2.20^2^^~1~^~A~^^^1^2.10^2.30^^^^^~06/01/2001~ -~12121~^~323~^17.50^2^^~1~^~A~^^^1^17.40^17.60^^^^^~06/01/2001~ -~12121~^~341~^0.35^2^^~1~^~A~^^^1^0.30^0.40^^^^^~06/01/2001~ -~12121~^~342~^2.15^2^^~1~^~A~^^^1^2.00^2.30^^^^^~06/01/2001~ -~12121~^~343~^0.14^2^^~1~^~A~^^^1^0.14^0.14^^^^^~06/01/2001~ -~12121~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12122~^~203~^15.03^4^0.42^~1~^~A~^^^1^14.20^15.80^3^13.68^16.36^~4~^~12/01/2000~ -~12122~^~204~^62.40^4^0.91^~1~^~A~^^^1^59.90^64.30^3^59.48^65.31^~4~^~12/01/2000~ -~12122~^~205~^17.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~207~^2.45^4^0.01^~1~^~A~^^^1^2.42^2.49^3^2.39^2.51^~4~^~12/01/2000~ -~12122~^~209~^1.10^4^0.03^~1~^~A~^^^1^1.05^1.20^3^0.99^1.21^~4~^~12/01/2000~ -~12122~^~210~^4.75^4^0.30^~1~^~A~^^^1^4.00^5.30^3^3.77^5.72^~4~^~12/01/2000~ -~12122~^~211~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12122~^~212~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12122~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12122~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12122~^~255~^2.52^4^0.33^~1~^~A~^^^1^2.04^3.49^3^1.45^3.58^~4~^~12/01/2000~ -~12122~^~269~^4.89^4^0.30^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12122~^~303~^4.38^4^0.13^~1~^~A~^^^1^4.10^4.70^3^3.93^4.81^~4~^~12/01/2000~ -~12122~^~309~^2.50^4^0.00^~1~^~A~^^^1^2.50^2.50^3^2.50^2.50^~4~^~12/01/2000~ -~12122~^~323~^15.28^4^0.70^~1~^~A~^^^1^13.60^16.90^3^13.03^17.51^~4~^~12/01/2000~ -~12122~^~341~^0.33^4^0.04^~1~^~A~^^^1^0.20^0.40^3^0.17^0.47^~4~^~12/01/2000~ -~12122~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~04/01/2001~ -~12122~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~04/01/2001~ -~12122~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12127~^~203~^4.32^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~204~^1.68^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~205~^37.60^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12127~^~207~^1.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~255~^55.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~303~^1.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~309~^0.34^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12128~^~203~^10.35^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~204~^2.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~205~^72.45^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12128~^~207~^2.80^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~255~^12.40^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~303~^1.60^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~309~^0.67^3^0.05^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12129~^~203~^2.29^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~204~^1.62^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~205~^22.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12129~^~207~^1.04^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~255~^72.95^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~303~^0.29^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~309~^0.21^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12130~^~203~^12.72^8^0.86^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~204~^64.37^18^1.54^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~205~^18.25^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12130~^~207~^2.00^6^0.13^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~255~^2.65^4^0.13^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~303~^2.12^8^0.03^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~309~^4.31^8^0.11^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12131~^~203~^7.91^3^0.35^~1~^~A~^^^1^7.55^8.58^2^6.40^9.42^~4~^~12/01/2000~ -~12131~^~204~^75.77^3^1.14^~1~^~A~^^^1^73.56^76.85^2^70.83^80.70^~4~^~12/01/2000~ -~12131~^~205~^13.82^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~207~^1.14^3^0.03^~1~^~A~^^^1^1.09^1.19^2^0.98^1.28^~4~^~12/01/2000~ -~12131~^~209~^1.05^3^0.02^~1~^~A~^^^1^1.02^1.09^2^0.94^1.14^~4~^~12/01/2000~ -~12131~^~210~^4.43^3^0.18^~1~^~A~^^^1^4.24^4.77^2^3.65^5.19^~4~^~12/01/2000~ -~12131~^~211~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^2^0.07^0.07^~4~^~12/01/2000~ -~12131~^~212~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^2^0.07^0.07^~4~^~12/01/2000~ -~12131~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~12/01/2000~ -~12131~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~12/01/2000~ -~12131~^~255~^1.36^3^0.06^~1~^~A~^^^1^1.30^1.49^2^1.07^1.65^~4~^~12/01/2000~ -~12131~^~269~^4.57^3^0.18^~1~^~A~^^^^^^^^^^~07/01/1999~ -~12131~^~303~^3.69^3^0.72^~1~^~A~^^^1^3.13^5.21^2^0.55^6.81^~4~^~12/01/2000~ -~12131~^~309~^1.30^3^0.09^~1~^~A~^^^1^1.17^1.44^2^0.90^1.69^~4~^~12/01/2000~ -~12131~^~323~^0.54^3^0.09^~1~^~A~^^^1^0.47^0.73^2^0.14^0.92^~4~^~12/01/2000~ -~12131~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2001~ -~12131~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2001~ -~12131~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2001~ -~12131~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12132~^~203~^7.79^4^0.28^~1~^~A~^^^1^7.27^8.44^3^6.87^8.69^~4~^~12/01/2000~ -~12132~^~204~^76.08^4^1.03^~1~^~A~^^^1^74.04^78.25^3^72.77^79.38^~4~^~12/01/2000~ -~12132~^~205~^13.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12132~^~207~^1.14^4^0.02^~1~^~A~^^^1^1.10^1.20^3^1.07^1.21^~4~^~12/01/2000~ -~12132~^~209~^1.05^4^0.02^~1~^~A~^^^1^0.99^1.10^3^0.97^1.13^~4~^~12/01/2000~ -~12132~^~210~^4.00^4^0.18^~1~^~A~^^^1^3.52^4.26^3^3.40^4.59^~4~^~12/01/2000~ -~12132~^~211~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12132~^~212~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12132~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12132~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12132~^~255~^1.61^4^0.12^~1~^~A~^^^1^1.24^1.80^3^1.20^2.00^~4~^~12/01/2000~ -~12132~^~269~^4.14^4^0.18^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12132~^~303~^2.65^4^0.53^~1~^~A~^^^1^2.04^4.14^3^0.94^4.35^~4~^~12/01/2000~ -~12132~^~309~^1.29^4^0.05^~1~^~A~^^^1^1.24^1.47^3^1.11^1.46^~4~^~12/01/2000~ -~12132~^~323~^0.57^4^0.11^~1~^~A~^^^1^0.40^0.90^3^0.22^0.91^~4~^~12/01/2000~ -~12132~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12132~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12132~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12132~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12135~^~203~^19.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~204~^53.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~205~^22.42^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~207~^2.45^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~209~^7.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~210~^5.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~255~^2.13^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~269~^5.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~303~^3.73^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~309~^4.06^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~323~^6.13^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~341~^0.27^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~342~^4.97^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~343~^0.38^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~12135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~12136~^~203~^23.28^3^1.41^~1~^~A~^^^1^21.10^25.94^2^17.17^29.38^~2, 3~^~03/01/2016~ -~12136~^~204~^47.52^3^1.73^~1~^~A~^^^1^44.05^49.40^2^40.04^54.98^~2, 3~^~03/01/2016~ -~12136~^~205~^23.07^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12136~^~207~^3.26^3^0.08^~1~^~A~^^^1^3.13^3.41^2^2.91^3.61^~2, 3~^~03/01/2016~ -~12136~^~209~^5.75^2^^~1~^~A~^^^1^5.70^5.80^1^^^^~06/01/2015~ -~12136~^~210~^4.45^2^^~1~^~A~^^^1^4.40^4.50^1^^^^~06/01/2015~ -~12136~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~12136~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~12136~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~12136~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~12136~^~255~^2.87^3^0.04^~1~^~A~^^^1^2.80^2.96^2^2.67^3.07^~2, 3~^~03/01/2016~ -~12136~^~269~^4.45^2^^~1~^~A~^^^1^4.40^4.50^1^^^^~06/01/2015~ -~12136~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~12136~^~303~^3.43^2^^~1~^~A~^^^1^3.25^3.62^1^^^^~06/01/2015~ -~12136~^~309~^3.42^2^^~1~^~A~^^^1^3.28^3.57^1^^^^~06/01/2015~ -~12136~^~323~^5.65^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12136~^~341~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12136~^~342~^6.57^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12136~^~343~^0.24^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12136~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12136~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12136~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12136~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12137~^~203~^20.04^10^0.30^~1~^~A~^^^1^17.81^21.47^9^19.35^20.72^~2, 3~^~05/01/2011~ -~12137~^~204~^53.95^10^0.46^~1~^~A~^^^1^52.50^56.90^9^52.90^55.00^~2, 3~^~05/01/2011~ -~12137~^~205~^21.05^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~207~^2.88^10^0.04^~1~^~A~^^^1^2.66^3.18^9^2.76^2.99^~2, 3~^~05/01/2011~ -~12137~^~209~^4.20^5^0.29^~1~^~A~^^^1^3.10^4.70^4^3.38^5.01^~2, 3~^~05/01/2011~ -~12137~^~210~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~05/01/2011~ -~12137~^~211~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~212~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~255~^2.08^10^0.03^~1~^~A~^^^1^1.90^2.20^9^2.00^2.15^~2, 3~^~05/01/2011~ -~12137~^~269~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~05/01/2011~ -~12137~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~303~^2.61^10^0.03^~1~^~A~^^^1^2.45^2.81^9^2.53^2.68^~2, 3~^~05/01/2011~ -~12137~^~309~^3.36^10^0.04^~1~^~A~^^^1^3.21^3.60^9^3.26^3.46^~2, 3~^~05/01/2011~ -~12137~^~323~^7.82^5^0.43^~1~^~A~^^^1^7.08^9.42^4^6.62^9.02^~2, 3~^~05/01/2011~ -~12137~^~341~^0.22^5^0.03^~1~^~A~^^^1^0.13^0.32^4^0.11^0.32^~2, 3~^~05/01/2011~ -~12137~^~342~^6.39^5^0.57^~1~^~A~^^^1^5.12^7.93^4^4.77^7.99^~2, 3~^~05/01/2011~ -~12137~^~343~^0.32^5^0.05^~1~^~A~^^^1^0.19^0.45^4^0.17^0.46^~2, 3~^~05/01/2011~ -~12137~^~344~^0.04^5^3.0e-03^~1~^~A~^^^1^0.03^0.04^4^0.02^0.04^~2, 3~^~05/01/2011~ -~12137~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~346~^0.03^5^5.0e-03^~1~^~A~^^^1^0.02^0.05^4^0.02^0.04^~2, 3~^~05/01/2011~ -~12137~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12138~^~203~^15.52^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~204~^56.17^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~205~^22.27^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12138~^~207~^2.89^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~255~^3.15^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~303~^2.57^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~309~^4.66^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12140~^~203~^13.82^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~204~^57.70^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~205~^23.68^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12140~^~207~^2.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~255~^2.50^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~303~^2.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~309~^2.94^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12141~^~203~^18.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~204~^53.20^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12141~^~205~^24.62^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~12141~^~207~^2.66^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~210~^3.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~255~^1.52^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~269~^3.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~303~^3.22^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~309~^3.76^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12142~^~203~^9.17^3^0.08^~1~^~A~^^^1^9.00^9.30^2^8.78^9.54^~4~^~01/01/2001~ -~12142~^~204~^71.97^3^0.12^~1~^~A~^^^1^71.80^72.20^2^71.45^72.48^~4~^~01/01/2001~ -~12142~^~205~^13.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~207~^1.49^3^0.05^~1~^~A~^^^1^1.38^1.56^2^1.25^1.72^~4~^~01/01/2001~ -~12142~^~209~^0.46^3^0.04^~1~^~A~^^^1^0.37^0.54^2^0.24^0.67^~4~^~01/01/2001~ -~12142~^~210~^3.90^3^0.15^~1~^~A~^^^1^3.70^4.20^2^3.24^4.55^~4~^~01/01/2001~ -~12142~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12142~^~212~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12142~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12142~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12142~^~255~^3.52^3^0.11^~1~^~A~^^^1^3.31^3.70^2^3.03^4.01^~4~^~01/01/2001~ -~12142~^~269~^3.97^3^0.15^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12142~^~303~^2.53^3^0.26^~1~^~A~^^^1^2.10^3.00^2^1.41^3.65^~4~^~01/01/2001~ -~12142~^~309~^4.53^3^0.13^~1~^~A~^^^1^4.40^4.80^2^3.96^5.10^~4~^~01/01/2001~ -~12142~^~323~^1.40^9^0.07^~1~^~A~^^^1^0.99^1.74^8^1.22^1.57^~4~^~01/01/2001~ -~12142~^~341~^0.39^9^0.11^~1~^~A~^^^1^0.14^1.23^8^0.13^0.65^~4~^~01/01/2001~ -~12142~^~342~^24.44^9^1.49^~1~^~A~^^^1^18.26^30.89^8^20.98^27.89^~4~^~01/01/2001~ -~12142~^~343~^0.47^9^0.08^~1~^~A~^^^1^0.19^0.90^8^0.27^0.66^~4~^~01/01/2001~ -~12142~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12143~^~203~^9.50^3^0.10^~1~^~A~^^^1^9.40^9.70^2^9.07^9.93^~4~^~01/01/2001~ -~12143~^~204~^74.27^3^0.37^~1~^~A~^^^1^73.60^74.90^2^72.65^75.88^~4~^~01/01/2001~ -~12143~^~205~^13.55^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~207~^1.56^3^0.07^~1~^~A~^^^1^1.41^1.64^2^1.23^1.89^~4~^~01/01/2001~ -~12143~^~209~^0.24^3^0.07^~1~^~A~^^^1^0.16^0.40^2^-0.09^0.58^~4~^~01/01/2001~ -~12143~^~210~^4.00^3^0.25^~1~^~A~^^^1^3.50^4.30^2^2.91^5.08^~4~^~01/01/2001~ -~12143~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12143~^~212~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12143~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12143~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12143~^~255~^1.12^3^0.09^~1~^~A~^^^1^0.95^1.25^2^0.73^1.50^~4~^~01/01/2001~ -~12143~^~269~^4.06^3^0.24^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12143~^~303~^2.80^3^0.15^~1~^~A~^^^1^2.60^3.10^2^2.14^3.45^~4~^~01/01/2001~ -~12143~^~309~^5.07^3^0.43^~1~^~A~^^^1^4.20^5.60^2^3.18^6.94^~4~^~01/01/2001~ -~12143~^~323~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~4~^~01/01/2001~ -~12143~^~341~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12143~^~342~^23.57^3^2.02^~1~^~A~^^^1^21.30^27.60^2^14.86^32.26^~4~^~01/01/2001~ -~12143~^~343~^0.77^3^0.12^~1~^~A~^^^1^0.60^1.00^2^0.25^1.28^~4~^~01/01/2001~ -~12143~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12144~^~203~^9.20^3^0.05^~1~^~A~^^^1^9.10^9.30^2^8.95^9.44^~4~^~01/01/2001~ -~12144~^~204~^75.23^3^0.52^~1~^~A~^^^1^74.30^76.10^2^72.99^77.47^~4~^~01/01/2001~ -~12144~^~205~^13.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~207~^1.42^3^0.06^~1~^~A~^^^1^1.34^1.55^2^1.14^1.70^~4~^~01/01/2001~ -~12144~^~209~^0.28^3^0.02^~1~^~A~^^^1^0.24^0.32^2^0.18^0.37^~4~^~01/01/2001~ -~12144~^~210~^3.90^3^0.26^~1~^~A~^^^1^3.40^4.30^2^2.76^5.03^~4~^~01/01/2001~ -~12144~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12144~^~212~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12144~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12144~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12144~^~255~^1.13^3^0.03^~1~^~A~^^^1^1.09^1.20^2^0.97^1.28^~4~^~01/01/2001~ -~12144~^~269~^3.97^3^0.26^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12144~^~303~^2.47^3^0.20^~1~^~A~^^^1^2.10^2.80^2^1.59^3.33^~4~^~01/01/2001~ -~12144~^~309~^4.47^3^0.03^~1~^~A~^^^1^4.40^4.50^2^4.32^4.61^~4~^~01/01/2001~ -~12144~^~323~^2.53^3^0.14^~1~^~A~^^^1^2.30^2.80^2^1.90^3.15^~4~^~01/01/2001~ -~12144~^~341~^0.35^3^0.10^~1~^~A~^^^1^0.14^0.50^2^-0.11^0.80^~4~^~01/01/2001~ -~12144~^~342~^24.20^3^2.47^~1~^~A~^^^1^19.30^27.20^2^13.57^34.83^~4~^~01/01/2001~ -~12144~^~343~^1.07^3^0.26^~1~^~A~^^^1^0.60^1.50^2^-0.05^2.18^~4~^~01/01/2001~ -~12144~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12145~^~203~^10.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~204~^79.55^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~205~^3.98^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12145~^~207~^2.91^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~255~^2.77^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~303~^3.53^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~309~^2.97^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12147~^~203~^13.69^8^0.15^~1~^~A~^^^2^13.14^14.57^4^13.23^14.15^~2, 3~^~02/01/2003~ -~12147~^~204~^68.37^8^0.24^~1~^~A~^^^2^67.31^69.90^6^67.75^68.97^~2, 3~^~02/01/2003~ -~12147~^~205~^13.08^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~207~^2.59^8^0.03^~1~^~A~^^^2^2.43^2.72^3^2.49^2.68^~2, 3~^~02/01/2003~ -~12147~^~209~^1.43^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~210~^3.45^4^0.08^~1~^~A~^^^1^3.22^3.61^3^3.17^3.71^~2, 3~^~02/01/2003~ -~12147~^~211~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~212~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~255~^2.28^8^0.09^~1~^~A~^^^2^1.60^2.57^4^1.99^2.55^~2, 3~^~02/01/2003~ -~12147~^~269~^3.59^4^0.08^~1~^~A~^^^1^3.37^3.76^3^3.32^3.86^~2, 3~^~02/01/2003~ -~12147~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~303~^5.53^8^0.13^~1~^~A~^^^2^4.89^6.00^5^5.19^5.86^~2, 3~^~02/01/2003~ -~12147~^~309~^6.45^8^0.07^~1~^~A~^^^2^5.85^6.77^4^6.23^6.67^~2, 3~^~02/01/2003~ -~12147~^~323~^9.33^4^0.28^~1~^~A~^^^2^8.88^9.95^2^7.85^10.80^~2, 3~^~02/01/2003~ -~12147~^~341~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~12147~^~342~^11.15^4^0.20^~1~^~A~^^^2^10.44^11.59^1^9.41^12.87^~2, 3~^~02/01/2003~ -~12147~^~343~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~12147~^~344~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~12147~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~12147~^~346~^0.69^4^0.08^~1~^~A~^^^2^0.53^0.85^1^-0.15^1.54^~2, 3~^~02/01/2003~ -~12147~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~12147~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12149~^~203~^11.57^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~204~^60.98^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~205~^19.30^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12149~^~207~^2.26^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~255~^5.90^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~303~^3.06^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~309~^4.28^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12151~^~203~^20.16^11^0.21^~1~^~A~^^^5^19.40^22.10^4^19.55^20.76^~2~^~04/01/2015~ -~12151~^~204~^45.32^10^0.96^~1~^~A~^^^4^40.90^47.30^3^42.25^48.37^~2~^~04/01/2015~ -~12151~^~205~^27.17^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~207~^2.99^10^0.10^~1~^~A~^^^4^2.70^3.21^3^2.64^3.33^~2~^~04/01/2015~ -~12151~^~209~^1.67^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12151~^~210~^6.87^9^0.14^~1~^~A~^^^3^6.20^8.00^2^6.24^7.49^~2~^~03/01/2009~ -~12151~^~211~^0.32^9^0.07^~1~^~A~^^^3^0.16^0.50^2^-0.01^0.65^~2~^~03/01/2009~ -~12151~^~212~^0.24^9^0.08^~1~^~A~^^^3^0.10^0.40^2^-0.10^0.59^~2~^~03/01/2009~ -~12151~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~03/01/2009~ -~12151~^~214~^0.17^9^0.04^~1~^~A~^^^3^0.10^0.60^2^-0.03^0.36^~2~^~03/01/2009~ -~12151~^~255~^4.37^10^0.47^~1~^~A~^^^4^3.40^5.74^3^2.86^5.87^~2~^~04/01/2015~ -~12151~^~269~^7.66^9^0.17^~1~^~A~^^^3^7.00^8.80^2^6.89^8.42^~2~^~03/01/2009~ -~12151~^~303~^3.92^9^0.24^~1~^~A~^^^3^3.46^5.04^2^2.86^4.98^~2~^~03/01/2009~ -~12151~^~309~^2.20^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~323~^2.86^2^^~1~^~A~^^^2^2.30^3.43^1^^^^~04/01/2015~ -~12151~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12151~^~342~^20.41^2^^~1~^~A~^^^2^18.22^22.60^1^^^^~04/01/2015~ -~12151~^~343~^0.80^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~346~^1.67^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12152~^~203~^21.05^14^0.35^~1~^~A~^^^4^19.59^22.80^3^19.93^22.16^~2~^~04/01/2015~ -~12152~^~204~^45.82^17^1.73^~1~^~A~^^^5^39.60^49.80^4^41.01^50.62^~2~^~04/01/2015~ -~12152~^~205~^28.28^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~207~^3.00^12^0.06^~1~^~A~^^^3^2.90^3.25^2^2.71^3.28^~2~^~05/01/2010~ -~12152~^~209~^1.38^4^0.11^~1~^~A~^^^1^1.19^1.68^3^1.01^1.73^~4~^~01/01/2001~ -~12152~^~210~^7.09^13^0.28^~1~^~A~^^^3^5.90^8.30^2^5.90^8.33^~2~^~04/01/2015~ -~12152~^~211~^0.25^13^0.07^~1~^~A~^^^3^0.07^0.60^2^-0.06^0.57^~2~^~04/01/2015~ -~12152~^~212~^0.22^13^0.08^~1~^~A~^^^3^0.10^0.40^2^-0.16^0.60^~2~^~05/01/2010~ -~12152~^~213~^0.00^13^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2010~ -~12152~^~214~^0.13^13^0.06^~1~^~A~^^^3^0.00^0.60^2^-0.17^0.42^~1, 2~^~05/01/2010~ -~12152~^~255~^1.85^15^0.11^~1~^~A~^^^4^1.30^2.60^3^1.47^2.22^~2~^~05/01/2010~ -~12152~^~269~^7.74^13^0.36^~1~^~A~^^^3^6.30^9.40^2^6.19^9.29^~2~^~05/01/2010~ -~12152~^~287~^0.05^2^^~1~^~A~^^^1^0.00^0.10^1^^^~1~^~04/01/2015~ -~12152~^~303~^4.03^13^0.17^~1~^~A~^^^3^3.55^4.60^2^3.27^4.78^~2~^~05/01/2010~ -~12152~^~309~^2.34^5^0.04^~1~^~A~^^^2^2.20^2.40^1^1.83^2.84^~2~^~05/01/2010~ -~12152~^~323~^2.17^9^0.35^~1~^~A~^^^4^1.45^3.14^3^1.04^3.30^~2~^~04/01/2015~ -~12152~^~341~^0.13^9^0.03^~1~^~A~^^^4^0.05^0.23^3^2.0e-03^0.25^~1, 2~^~04/01/2015~ -~12152~^~342~^23.42^9^2.53^~1~^~A~^^^4^18.00^30.23^3^15.36^31.47^~2~^~04/01/2015~ -~12152~^~343~^0.55^9^0.16^~1~^~A~^^^4^0.09^0.80^3^0.03^1.05^~1, 2~^~04/01/2015~ -~12152~^~344~^0.29^4^0.22^~1~^~A~^^^2^0.07^0.51^1^-2.50^3.08^~2~^~04/01/2015~ -~12152~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12152~^~346~^3.14^4^1.35^~1~^~A~^^^2^1.79^4.49^1^-14.01^20.29^~2~^~04/01/2015~ -~12152~^~347~^0.08^4^0.04^~1~^~A~^^^2^0.03^0.12^1^-0.49^0.64^~2~^~04/01/2015~ -~12152~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12154~^~203~^24.06^11^0.28^~1~^~A~^^^2^23.78^24.35^1^20.41^27.70^~2~^~06/01/2002~ -~12154~^~204~^59.33^34^1.43^~1~^~A~^^^3^56.58^61.42^2^53.15^65.51^~2~^~02/01/2014~ -~12154~^~205~^9.58^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~207~^2.47^11^0.14^~1~^~A~^^^2^2.33^2.61^1^0.67^4.26^~2~^~06/01/2002~ -~12154~^~209~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~210~^1.00^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~211~^0.05^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~212~^0.05^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~255~^4.56^11^0.19^~1~^~A~^^^2^4.36^4.76^1^2.03^7.08^~2~^~06/01/2002~ -~12154~^~269~^1.10^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~303~^3.12^16^0.04^~1~^~A~^^^2^3.07^3.16^1^2.54^3.68^~2~^~06/01/2002~ -~12154~^~309~^3.37^16^0.05^~1~^~A~^^^2^3.32^3.42^1^2.73^4.00^~2~^~06/01/2002~ -~12154~^~323~^2.08^4^0.27^~1~^~A~^^^2^1.80^2.35^1^-1.41^5.56^~2~^~02/01/2014~ -~12154~^~341~^0.01^4^5.0e-03^~1~^~A~^^^2^0.00^0.01^1^-0.05^0.06^~2~^~02/01/2014~ -~12154~^~342~^28.78^4^0.29^~1~^~A~^^^2^28.48^29.07^1^25.02^32.52^~2~^~02/01/2014~ -~12154~^~343~^1.51^4^0.06^~1~^~A~^^^2^1.44^1.57^1^0.67^2.33^~2~^~02/01/2014~ -~12154~^~344~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2002~ -~12154~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~346~^0.70^4^0.69^~1~^~A~^^^2^0.00^1.39^1^-8.13^9.52^~1, 2~^~02/01/2014~ -~12154~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2002~ -~12154~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12154~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12154~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12155~^~203~^15.23^7^0.23^~1~^~A~^^^1^14.40^16.00^6^14.64^15.81^~4~^~12/01/2000~ -~12155~^~204~^65.21^7^0.49^~1~^~A~^^^1^63.50^66.90^6^64.00^66.42^~4~^~12/01/2000~ -~12155~^~205~^13.71^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~207~^1.78^7^0.01^~1~^~A~^^^1^1.71^1.88^6^1.73^1.82^~4~^~12/01/2000~ -~12155~^~209~^0.06^7^0.01^~1~^~A~^^^1^0.01^0.09^6^0.03^0.08^~4~^~12/01/2000~ -~12155~^~210~^2.43^7^0.08^~1~^~A~^^^1^2.20^2.90^6^2.21^2.64^~4~^~12/01/2000~ -~12155~^~211~^0.08^7^0.01^~1~^~A~^^^1^0.04^0.15^6^0.04^0.11^~4~^~12/01/2000~ -~12155~^~212~^0.09^7^0.01^~1~^~A~^^^1^0.04^0.12^6^0.06^0.11^~4~^~12/01/2000~ -~12155~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^6^0.00^0.00^~4~^~12/01/2000~ -~12155~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^6^0.00^0.00^~4~^~12/01/2000~ -~12155~^~255~^4.07^7^0.15^~1~^~A~^^^1^3.46^4.51^6^3.69^4.44^~4~^~12/01/2000~ -~12155~^~269~^2.61^7^0.09^~1~^~A~^^^^^^^^^^~08/01/2002~ -~12155~^~303~^2.91^7^0.08^~1~^~A~^^^1^2.60^3.20^6^2.70^3.12^~4~^~12/01/2000~ -~12155~^~309~^3.09^7^0.08^~1~^~A~^^^1^2.80^3.40^6^2.88^3.28^~4~^~12/01/2000~ -~12155~^~323~^0.70^13^0.32^~1~^~A~^^^2^0.14^1.56^1^-3.38^4.78^~2~^~03/01/2001~ -~12155~^~341~^0.15^13^0.14^~1~^~A~^^^2^0.00^0.30^1^-1.69^2.00^~2~^~03/01/2001~ -~12155~^~342~^20.83^13^2.60^~1~^~A~^^^2^15.47^27.00^1^-12.31^53.98^~2~^~03/01/2001~ -~12155~^~343~^1.89^13^0.46^~1~^~A~^^^2^1.26^2.80^1^-4.03^7.81^~2~^~03/01/2001~ -~12155~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12156~^~203~^8.28^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~12156~^~204~^35.71^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~205~^47.59^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~12156~^~207~^2.13^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~12156~^~255~^6.28^0^^~4~^~FLC~^^^^^^^^^^~06/01/2013~ -~12156~^~269~^32.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~303~^1.29^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12157~^~203~^14.29^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~204~^60.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~205~^17.86^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~207~^2.76^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~12157~^~255~^4.39^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~269~^3.57^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~303~^2.57^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~309~^2.98^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~323~^0.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~12157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~12157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~12158~^~203~^6.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~204~^2.70^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~205~^40.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12158~^~207~^1.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~255~^49.70^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~303~^0.90^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~309~^1.03^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12160~^~203~^32.59^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~204~^36.29^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~205~^21.90^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12160~^~207~^4.58^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~255~^4.65^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~303~^5.40^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~309~^6.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12163~^~203~^18.55^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~204~^19.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~205~^53.75^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12163~^~207~^3.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~255~^4.50^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~303~^3.31^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~309~^10.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12166~^~203~^17.00^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~204~^53.76^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~205~^21.19^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12166~^~207~^5.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~255~^3.05^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~269~^0.49^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~303~^8.95^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~309~^4.62^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~323~^0.25^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~ -~12166~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12167~^~203~^3.17^4^0.46^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~204~^2.20^4^0.13^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~205~^52.96^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12167~^~207~^1.20^4^0.05^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~255~^40.48^4^1.71^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~269~^10.60^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~12167~^~303~^0.91^4^0.13^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~309~^0.57^3^0.01^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~323~^0.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~12167~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12169~^~203~^18.08^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~204~^50.87^3^1.73^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~205~^24.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12169~^~207~^5.40^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~255~^1.60^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~303~^19.20^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~309~^7.29^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12170~^~203~^30.78^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~204~^37.10^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~205~^26.62^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12170~^~207~^4.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~255~^0.90^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~303~^15.17^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~309~^10.67^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12171~^~203~^17.95^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~204~^56.44^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~205~^17.89^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12171~^~207~^4.73^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~255~^3.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~303~^6.35^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~309~^10.45^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12174~^~203~^28.33^15^0.55^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~204~^47.37^15^1.48^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~205~^15.31^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12174~^~207~^3.94^10^0.14^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~255~^5.05^18^0.39^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~303~^7.28^9^0.53^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~309~^10.24^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12175~^~203~^5.25^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~204~^1.24^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~205~^81.43^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12175~^~207~^2.11^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~255~^9.96^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~303~^3.38^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~309~^2.57^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12176~^~203~^1.61^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~204~^20.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~205~^5.58^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12176~^~207~^0.59^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~255~^71.42^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~303~^0.81^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~309~^0.59^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12177~^~203~^5.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~204~^69.08^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~205~^21.52^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12177~^~207~^2.44^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~255~^1.67^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~303~^3.36^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~309~^2.04^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12179~^~203~^2.88^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~204~^35.49^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~205~^47.67^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12179~^~207~^1.42^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~255~^12.55^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~269~^43.17^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~ -~12179~^~303~^1.92^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~309~^1.82^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~323~^0.39^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~ -~12179~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12193~^~203~^12.14^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~204~^4.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~205~^58.26^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12193~^~207~^18.90^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~255~^6.10^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~303~^0.11^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~309~^0.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12195~^~203~^20.96^8^0.44^~1~^~A~^^^1^18.32^22.13^7^19.89^22.02^~4~^~02/01/2010~ -~12195~^~204~^55.50^8^0.71^~1~^~A~^^^1^53.20^59.20^7^53.80^57.19^~4~^~02/01/2010~ -~12195~^~205~^18.82^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~207~^3.09^8^0.05^~1~^~A~^^^1^2.90^3.30^7^2.95^3.22^~4~^~02/01/2010~ -~12195~^~209~^0.08^8^0.00^~1~^~A~^^^1^0.08^0.08^7^0.07^0.07^~1, 4~^~05/01/2010~ -~12195~^~210~^4.34^8^0.19^~1~^~A~^^^1^3.40^5.30^7^3.87^4.80^~4~^~02/01/2010~ -~12195~^~211~^0.02^8^0.00^~1~^~A~^^^1^0.02^0.02^7^0.01^0.01^~1, 4~^~05/01/2010~ -~12195~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~02/01/2010~ -~12195~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~02/01/2010~ -~12195~^~214~^0.07^8^0.00^~1~^~A~^^^1^0.07^0.07^7^0.07^0.07^~1, 4~^~05/01/2010~ -~12195~^~255~^1.64^8^0.15^~1~^~A~^^^1^1.20^2.40^7^1.27^2.00^~4~^~02/01/2010~ -~12195~^~269~^4.43^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~12195~^~303~^3.49^8^0.36^~1~^~A~^^^1^1.59^5.37^7^2.63^4.34^~4~^~02/01/2010~ -~12195~^~309~^3.29^8^0.21^~1~^~A~^^^1^2.41^4.53^7^2.76^3.80^~4~^~02/01/2010~ -~12195~^~323~^24.21^8^1.08^~1~^~A~^^^1^21.00^30.60^7^21.65^26.77^~4~^~02/01/2010~ -~12195~^~341~^0.53^8^0.03^~1~^~A~^^^1^0.45^0.77^7^0.44^0.61^~4~^~02/01/2010~ -~12195~^~342~^1.01^8^0.07^~1~^~A~^^^1^0.89^1.50^7^0.83^1.17^~4~^~02/01/2010~ -~12195~^~343~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~02/01/2010~ -~12195~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12198~^~203~^17.81^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~204~^48.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~205~^26.19^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12198~^~207~^5.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~255~^3.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~303~^2.51^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~309~^4.64^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12200~^~203~^13.11^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~204~^62.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~205~^20.79^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12200~^~207~^1.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~255~^2.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~303~^2.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~309~^2.96^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12201~^~203~^20.45^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~204~^61.21^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~205~^11.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12201~^~207~^2.86^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~210~^0.31^4^0.26^~1~^~A~^^^2^0.02^0.60^1^-3.00^3.68^~2~^~06/01/2014~ -~12201~^~211~^0.10^4^0.03^~1~^~A~^^^2^0.07^0.16^1^-0.32^0.54^~1, 2~^~06/01/2014~ -~12201~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12201~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12201~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12201~^~255~^3.75^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~269~^0.48^4^0.26^~1~^~A~^^^2^0.18^0.75^1^-2.92^3.88^~2~^~02/01/2005~ -~12201~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12201~^~303~^6.36^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~309~^6.73^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~323~^1.68^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12201~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12201~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12202~^~203~^2.25^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~204~^0.53^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~205~^34.91^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12202~^~207~^0.91^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~255~^61.41^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~303~^1.45^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~309~^1.10^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12203~^~203~^0.82^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~204~^0.19^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~205~^12.64^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12203~^~207~^0.33^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~255~^86.03^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~303~^0.53^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~309~^0.40^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12204~^~203~^2.97^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~204~^0.80^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~205~^45.13^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12204~^~207~^1.20^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~255~^49.90^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~303~^2.10^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~309~^1.43^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12205~^~203~^4.13^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~204~^0.53^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~205~^17.28^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12205~^~207~^1.07^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~255~^77.00^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~303~^0.95^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~309~^0.28^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12206~^~203~^18.17^3^0.24^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~204~^49.90^3^0.50^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~205~^27.90^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12206~^~207~^2.33^3^0.29^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~255~^1.70^3^1.0e-03^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~303~^2.83^3^0.08^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~309~^2.60^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12220~^~203~^18.29^7^0.91^~1~^~A~^^^3^16.96^21.31^2^14.33^22.23^~2~^~03/01/2005~ -~12220~^~204~^42.16^6^3.18^~1~^~A~^^^2^36.81^45.84^1^1.66^82.66^~2~^~03/01/2005~ -~12220~^~205~^28.88^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~207~^3.72^3^0.02^~1~^~A~^^^2^3.42^4.07^1^3.39^4.04^~2~^~03/01/2005~ -~12220~^~210~^1.15^3^0.31^~1~^~A~^^^2^0.84^1.51^1^-2.78^5.08^~2~^~03/01/2005~ -~12220~^~211~^0.40^3^0.19^~1~^~A~^^^2^0.21^0.73^1^-2.01^2.81^~2~^~03/01/2005~ -~12220~^~212~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2005~ -~12220~^~213~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2005~ -~12220~^~214~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2005~ -~12220~^~255~^6.96^3^1.63^~1~^~A~^^^2^5.32^8.89^1^-13.83^27.74^~2~^~03/01/2005~ -~12220~^~269~^1.55^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~12220~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12220~^~303~^5.73^7^0.55^~1~^~A~^^^3^3.67^7.32^2^3.34^8.11^~2~^~03/01/2005~ -~12220~^~309~^4.34^7^0.11^~1~^~A~^^^3^3.95^4.92^2^3.83^4.85^~2~^~03/01/2005~ -~12220~^~323~^0.31^6^6.0e-03^~1~^~A~^^^2^0.23^0.45^1^0.23^0.38^~2~^~03/01/2005~ -~12220~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~12220~^~342~^19.95^6^5.06^~1~^~A~^^^2^14.34^25.83^1^-44.42^84.31^~2~^~03/01/2005~ -~12220~^~343~^0.35^6^0.13^~1~^~A~^^^2^0.21^0.55^1^-1.31^2.00^~2~^~03/01/2005~ -~12220~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~12220~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~12220~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~12220~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~12220~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12516~^~203~^29.84^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~204~^49.05^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~205~^14.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~207~^4.37^1^^~1~^^^^^^^^^^^~04/01/2009~ -~12516~^~209~^0.74^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~210~^1.14^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~255~^2.03^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~269~^1.29^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~303~^8.07^2^^~1~^~A~^^^2^7.42^8.72^^^^^~04/01/2009~ -~12516~^~309~^7.64^2^^~1~^~A~^^^2^7.15^8.13^^^^^~04/01/2009~ -~12516~^~323~^0.56^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~342~^12.73^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~343~^0.28^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12516~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12516~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12529~^~203~^16.96^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~204~^48.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~205~^26.04^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12529~^~207~^4.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~255~^5.00^3^0.00^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~269~^0.48^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~303~^7.78^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~309~^10.23^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~323~^0.25^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~ -~12529~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12529~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12529~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12536~^~203~^19.33^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~204~^49.80^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~205~^15.31^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12536~^~207~^14.36^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12536~^~210~^2.70^3^0.34^~1~^~A~^^^1^2.10^3.30^2^1.21^4.19^~4~^~05/01/2014~ -~12536~^~211~^0.03^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.11^0.17^~4~^~05/01/2014~ -~12536~^~212~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~213~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~214~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~ -~12536~^~255~^1.20^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~269~^2.73^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~12536~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~303~^3.80^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~309~^5.29^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~323~^26.10^4^4.83^~1~^~A~^^^2^21.27^36.40^1^-35.29^87.49^~2~^~05/01/2014~ -~12536~^~341~^1.19^4^0.06^~1~^~A~^^^2^1.12^1.45^1^0.32^2.05^~2~^~05/01/2014~ -~12536~^~342~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~05/01/2014~ -~12536~^~343~^0.24^4^0.24^~1~^~A~^^^2^0.00^1.44^1^-2.80^3.28^~1, 2~^~05/01/2014~ -~12536~^~344~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2014~ -~12536~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2014~ -~12536~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2014~ -~12536~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~05/01/2014~ -~12536~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12536~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~12537~^~203~^19.33^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~204~^49.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~205~^24.07^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12537~^~207~^5.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~210~^2.70^3^0.34^~1~^~A~^^^1^2.10^3.30^2^1.21^4.19^~4~^~02/01/2003~ -~12537~^~211~^0.03^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.11^0.17^~4~^~02/01/2003~ -~12537~^~212~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12537~^~213~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12537~^~214~^0.00^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~ -~12537~^~255~^1.20^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~269~^2.73^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12537~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~12537~^~303~^3.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~309~^5.29^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~323~^26.10^4^4.83^~1~^~A~^^^2^21.27^36.40^1^-35.29^87.49^~2~^~03/01/2004~ -~12537~^~341~^1.19^4^0.06^~1~^~A~^^^2^1.12^1.45^1^0.32^2.05^~2~^~03/01/2004~ -~12537~^~342~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2004~ -~12537~^~343~^0.24^4^0.24^~1~^~A~^^^2^0.00^1.44^1^-2.80^3.28^~1, 2~^~03/01/2004~ -~12537~^~344~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~03/01/2004~ -~12537~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~03/01/2004~ -~12537~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~03/01/2004~ -~12537~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~03/01/2004~ -~12537~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12537~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12537~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12538~^~203~^20.06^2^^~1~^~A~^^^2^17.65^20.86^^^^^~03/01/2004~ -~12538~^~204~^51.30^2^^~1~^~A~^^^2^50.99^51.40^^^^^~03/01/2004~ -~12538~^~205~^22.89^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~207~^4.22^2^^~1~^~A~^^^2^4.14^4.44^^^^^~03/01/2004~ -~12538~^~210~^2.37^5^^~1~^~A~^^^3^1.66^3.08^^^^~2~^~03/01/2004~ -~12538~^~211~^0.74^5^^~1~^~A~^^^3^0.00^2.18^^^^~1, 2~^~03/01/2004~ -~12538~^~212~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2003~ -~12538~^~213~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2003~ -~12538~^~214~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2003~ -~12538~^~255~^1.54^5^^~1~^~A~^^^3^0.52^2.08^^^^~2~^~03/01/2004~ -~12538~^~269~^3.11^5^^~1~^~A~^^^3^2.33^3.99^^^^~2~^~03/01/2004~ -~12538~^~303~^4.28^2^^~1~^~A~^^^2^3.97^5.20^^^^^~03/01/2004~ -~12538~^~309~^5.21^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~323~^36.33^3^2.23^~1~^~A~^^^1^33.90^40.80^2^26.71^45.95^~4~^~05/01/2004~ -~12538~^~341~^1.41^3^0.20^~1~^~A~^^^1^1.18^1.82^2^0.52^2.29^~4~^~05/01/2004~ -~12538~^~342~^0.46^3^0.08^~1~^~A~^^^1^0.37^0.63^2^0.08^0.83^~1, 4~^~05/01/2004~ -~12538~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2004~ -~12538~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12538~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12538~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12538~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12538~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12538~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12538~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12539~^~203~^17.21^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~204~^56.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~205~^20.59^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12539~^~207~^4.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~255~^1.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~303~^6.81^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~309~^5.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12540~^~203~^17.28^3^0.11^~1~^~A~^^^1^17.12^17.49^2^16.80^17.75^~2, 3~^~02/01/2010~ -~12540~^~204~^55.20^3^0.68^~1~^~A~^^^1^53.93^56.26^2^52.26^58.13^~2, 3~^~02/01/2010~ -~12540~^~205~^23.32^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12540~^~207~^3.58^3^0.06^~1~^~A~^^^1^3.45^3.67^2^3.29^3.87^~2, 3~^~02/01/2010~ -~12540~^~209~^0.83^3^0.08^~1~^~A~^^^1^0.74^1.00^2^0.45^1.20^~1, 2, 3~^~02/01/2010~ -~12540~^~210~^10.54^3^0.07^~1~^~A~^^^1^10.41^10.65^2^10.23^10.83^~2, 3~^~02/01/2010~ -~12540~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~255~^0.62^3^0.06^~1~^~A~^^^1^0.49^0.69^2^0.34^0.89^~2, 3~^~02/01/2010~ -~12540~^~269~^10.54^3^0.07^~1~^~A~^^^1^10.41^10.65^2^10.23^10.83^~2, 3~^~02/01/2010~ -~12540~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~303~^4.12^3^0.09^~1~^~A~^^^1^3.94^4.28^2^3.69^4.54^~2, 3~^~02/01/2010~ -~12540~^~309~^4.89^3^0.11^~1~^~A~^^^1^4.69^5.09^2^4.39^5.38^~2, 3~^~02/01/2010~ -~12540~^~323~^22.89^3^3.55^~1~^~A~^^^1^18.53^29.92^2^7.61^38.16^~2, 3~^~02/01/2010~ -~12540~^~341~^1.34^3^0.15^~1~^~A~^^^1^1.05^1.57^2^0.68^2.00^~2, 3~^~02/01/2010~ -~12540~^~342~^14.99^3^7.44^~1~^~A~^^^1^0.86^26.13^2^-17.04^47.02^~2, 3~^~02/01/2010~ -~12540~^~343~^5.66^3^3.03^~1~^~A~^^^1^0.00^10.37^2^-7.38^18.70^~1, 2, 3~^~02/01/2010~ -~12540~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~346~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~02/01/2010~ -~12540~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12563~^~203~^20.96^24^0.62^~1~^~A~^^^3^17.80^23.70^2^18.27^23.65^~2~^~04/01/2013~ -~12563~^~204~^52.54^23^0.76^~1~^~A~^^^3^47.29^56.29^2^49.26^55.81^~2~^~04/01/2013~ -~12563~^~205~^21.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~207~^3.07^21^0.06^~1~^~A~^^^3^2.51^3.48^2^2.81^3.33^~2~^~04/01/2013~ -~12563~^~209~^0.73^3^0.03^~1~^~A~^^^1^0.68^0.81^2^0.56^0.90^~4~^~05/01/2010~ -~12563~^~210~^4.75^22^0.07^~1~^~A~^^^3^4.00^6.50^2^4.43^5.07^~2~^~04/01/2013~ -~12563~^~211~^0.01^22^0.01^~1~^~A~^^^3^0.00^0.04^2^-0.03^0.06^~1, 2~^~04/01/2013~ -~12563~^~212~^0.01^22^3.0e-03^~1~^~A~^^^3^0.00^0.10^2^-7.0e-03^0.01^~1, 2~^~05/01/2010~ -~12563~^~213~^0.00^15^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~01/01/2001~ -~12563~^~214~^0.09^15^0.05^~1~^~A~^^^2^0.00^0.20^1^-0.60^0.77^~1, 2~^~04/01/2013~ -~12563~^~255~^2.41^23^0.12^~1~^~A~^^^3^1.00^3.24^2^1.88^2.93^~2~^~04/01/2013~ -~12563~^~269~^4.86^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~12563~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~12563~^~303~^3.73^22^0.32^~1~^~A~^^^3^2.34^4.70^2^2.33^5.13^~2~^~04/01/2013~ -~12563~^~309~^3.31^19^0.09^~1~^~A~^^^3^2.52^3.75^2^2.90^3.71^~2~^~04/01/2013~ -~12563~^~323~^23.90^23^1.04^~1~^~A~^^^3^16.40^30.39^2^19.41^28.39^~2~^~04/01/2013~ -~12563~^~341~^0.32^12^0.06^~1~^~A~^^^3^0.16^0.54^2^0.04^0.60^~1, 2~^~04/01/2013~ -~12563~^~342~^0.72^20^0.09^~1~^~A~^^^3^0.24^1.09^2^0.31^1.11^~1, 2~^~04/01/2013~ -~12563~^~343~^0.09^23^0.03^~1~^~A~^^^3^0.00^0.37^2^-0.06^0.23^~1, 2~^~04/01/2013~ -~12563~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~ -~12563~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12563~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12565~^~203~^21.23^3^1.14^~1~^~A~^^^1^20.60^23.30^2^16.31^26.14^~4~^~01/01/2001~ -~12565~^~204~^55.17^3^1.19^~1~^~A~^^^1^52.70^55.70^2^50.01^60.32^~4~^~01/01/2001~ -~12565~^~205~^17.68^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~207~^3.13^3^0.03^~1~^~A~^^^1^3.12^3.20^2^2.97^3.28^~4~^~01/01/2001~ -~12565~^~209~^0.56^3^0.32^~1~^~A~^^^1^0.39^1.23^2^-0.83^1.95^~4~^~01/01/2001~ -~12565~^~210~^4.38^3^0.24^~1~^~A~^^^1^4.30^4.90^2^3.30^5.44^~4~^~01/01/2001~ -~12565~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12565~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12565~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12565~^~214~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12565~^~255~^2.80^3^0.15^~1~^~A~^^^1^2.72^3.12^2^2.12^3.46^~4~^~01/01/2001~ -~12565~^~269~^4.55^3^0.24^~1~^~A~^^^^^^^^^^~08/01/1999~ -~12565~^~303~^3.68^3^0.29^~1~^~A~^^^1^3.50^4.20^2^2.42^4.93^~4~^~01/01/2001~ -~12565~^~309~^3.07^3^0.24^~1~^~A~^^^1^2.90^3.50^2^1.99^4.13^~4~^~01/01/2001~ -~12565~^~323~^25.97^3^1.04^~1~^~A~^^^1^24.80^27.50^2^21.48^30.46^~4~^~01/01/2001~ -~12565~^~341~^0.42^3^0.04^~1~^~A~^^^1^0.40^0.50^2^0.22^0.60^~4~^~01/01/2001~ -~12565~^~342~^0.88^3^0.04^~1~^~A~^^^1^0.80^0.90^2^0.68^1.06^~4~^~01/01/2001~ -~12565~^~343~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12565~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12565~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12565~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12567~^~203~^21.43^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~204~^55.89^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~205~^17.86^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~207~^2.03^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~12567~^~255~^2.80^0^^~4~^~BFZN~^~12565~^^^^^^^^^~03/01/2013~ -~12567~^~269~^3.57^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~303~^3.86^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~323~^25.13^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12585~^~203~^15.31^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~204~^46.35^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~205~^32.69^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12585~^~207~^3.95^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~255~^1.70^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~269~^5.01^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~303~^6.00^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~309~^5.60^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~323~^0.92^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~ -~12585~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12585~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12585~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12586~^~203~^16.84^8^0.35^~1~^~A~^^^3^16.14^18.26^2^15.32^18.36^~2~^~04/01/2002~ -~12586~^~204~^47.77^3^1.86^~1~^~A~^^^3^44.10^50.20^2^39.73^55.79^~2~^~04/01/2002~ -~12586~^~205~^30.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~207~^2.89^6^0.07^~1~^~A~^^^4^2.69^3.18^3^2.64^3.14^~2~^~04/01/2002~ -~12586~^~209~^10.93^7^1.55^~1~^~A~^^^3^7.20^13.40^2^4.25^17.59^~2~^~04/01/2002~ -~12586~^~210~^4.84^8^0.60^~1~^~A~^^^3^3.74^5.84^2^2.22^7.46^~2~^~04/01/2002~ -~12586~^~211~^0.08^8^0.03^~1~^~A~^^^3^0.05^0.15^2^-0.05^0.22^~1, 2~^~04/01/2002~ -~12586~^~212~^0.08^8^0.03^~1~^~A~^^^3^0.05^0.15^2^-0.05^0.22^~1, 2~^~04/01/2002~ -~12586~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~04/01/2002~ -~12586~^~214~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~04/01/2002~ -~12586~^~255~^2.34^7^0.20^~1~^~A~^^^5^1.60^2.88^4^1.76^2.90^~2~^~04/01/2002~ -~12586~^~269~^5.01^8^0.54^~1~^~A~^^^3^4.04^5.94^2^2.64^7.37^~2~^~04/01/2002~ -~12586~^~287~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2002~ -~12586~^~303~^6.05^9^0.38^~1~^~A~^^^4^5.04^8.07^3^4.81^7.27^~2~^~04/01/2002~ -~12586~^~309~^5.35^8^0.24^~1~^~A~^^^3^4.63^6.84^2^4.31^6.39^~2~^~04/01/2002~ -~12586~^~323~^0.92^5^0.24^~1~^~A~^^^2^0.65^1.16^1^-2.18^4.01^~2~^~04/01/2002~ -~12586~^~341~^0.03^5^0.01^~1~^~A~^^^2^0.00^0.05^1^-0.19^0.25^~2~^~04/01/2002~ -~12586~^~342~^5.40^5^0.36^~1~^~A~^^^2^4.86^5.77^1^0.71^10.08^~2~^~04/01/2002~ -~12586~^~343~^0.37^5^0.04^~1~^~A~^^^2^0.29^0.41^1^-0.13^0.87^~2~^~04/01/2002~ -~12586~^~344~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~04/01/2002~ -~12586~^~345~^0.10^5^0.10^~1~^~A~^^^2^0.00^0.20^1^-1.17^1.37^~2~^~04/01/2002~ -~12586~^~346~^0.20^5^0.20^~1~^~A~^^^2^0.00^0.40^1^-2.34^2.74^~2~^~04/01/2002~ -~12586~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2002~ -~12586~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12586~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12586~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12588~^~203~^12.12^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~204~^53.03^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~205~^30.30^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~207~^2.50^3^0.10^~1~^^^^^^^^^^^~09/01/1984~ -~12588~^~255~^2.34^0^^~4~^~BFZN~^~12586~^^^^^^^^^~05/01/2014~ -~12588~^~269~^9.09^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~303~^4.91^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~309~^4.43^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~323~^5.08^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12588~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12588~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12632~^~203~^7.79^4^0.28^~1~^~A~^^^1^7.27^8.44^3^6.87^8.69^~4~^~12/01/2000~ -~12632~^~204~^76.08^4^1.03^~1~^~A~^^^1^74.04^78.25^3^72.77^79.38^~4~^~12/01/2000~ -~12632~^~205~^12.83^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~207~^1.70^4^0.12^~1~^~A~^^^1^1.50^2.05^3^1.31^2.07^~4~^~12/01/2000~ -~12632~^~209~^1.05^4^0.02^~1~^~A~^^^1^0.99^1.10^3^0.97^1.13^~4~^~12/01/2000~ -~12632~^~210~^4.00^4^0.18^~1~^~A~^^^1^3.52^4.26^3^3.40^4.59^~4~^~12/01/2000~ -~12632~^~211~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12632~^~212~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^3^0.07^0.07^~4~^~12/01/2000~ -~12632~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12632~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~4~^~12/01/2000~ -~12632~^~255~^1.61^4^0.12^~1~^~A~^^^1^1.24^1.80^3^1.20^2.00^~4~^~12/01/2000~ -~12632~^~269~^4.14^4^0.18^~1~^~A~^^^^^^^^^^~07/01/1999~ -~12632~^~303~^2.65^4^0.53^~1~^~A~^^^1^2.04^4.14^3^0.94^4.35^~4~^~12/01/2000~ -~12632~^~309~^1.29^4^0.05^~1~^~A~^^^1^1.24^1.47^3^1.11^1.46^~4~^~12/01/2000~ -~12632~^~323~^0.57^4^0.11^~1~^~A~^^^1^0.40^0.90^3^0.22^0.91^~4~^~12/01/2000~ -~12632~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12632~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12632~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~12632~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12632~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12632~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12635~^~203~^17.30^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~204~^51.45^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~205~^25.35^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12635~^~207~^4.15^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~255~^1.75^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~269~^4.80^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12635~^~303~^3.70^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~309~^3.80^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~323~^10.94^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~12635~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12635~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12635~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12637~^~203~^20.04^10^0.30^~1~^~A~^^^1^17.81^21.47^9^19.35^20.72^~2, 3~^~05/01/2011~ -~12637~^~204~^53.95^10^0.46^~1~^~A~^^^1^52.50^56.90^9^52.90^55.00^~2, 3~^~05/01/2011~ -~12637~^~205~^21.05^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~207~^2.88^10^0.04^~1~^~A~^^^1^2.66^3.18^9^2.76^2.99^~2, 3~^~05/01/2011~ -~12637~^~209~^4.20^5^0.29^~1~^~A~^^^1^3.10^4.70^4^3.38^5.01^~2, 3~^~05/01/2011~ -~12637~^~210~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~05/01/2011~ -~12637~^~211~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~212~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~255~^2.08^10^0.03^~1~^~A~^^^1^1.90^2.20^9^2.00^2.15^~2, 3~^~05/01/2011~ -~12637~^~269~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~05/01/2011~ -~12637~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~303~^2.61^10^0.03^~1~^~A~^^^1^2.45^2.81^9^2.53^2.68^~2, 3~^~05/01/2011~ -~12637~^~309~^3.36^10^0.04^~1~^~A~^^^1^3.21^3.60^9^3.26^3.46^~2, 3~^~05/01/2011~ -~12637~^~323~^7.82^5^0.43^~1~^~A~^^^1^7.08^9.42^4^6.62^9.02^~2, 3~^~05/01/2011~ -~12637~^~341~^0.22^5^0.03^~1~^~A~^^^1^0.13^0.32^4^0.11^0.32^~2, 3~^~05/01/2011~ -~12637~^~342~^6.39^5^0.57^~1~^~A~^^^1^5.12^7.93^4^4.77^7.99^~2, 3~^~05/01/2011~ -~12637~^~343~^0.32^5^0.05^~1~^~A~^^^1^0.19^0.45^4^0.17^0.46^~2, 3~^~05/01/2011~ -~12637~^~344~^0.04^5^3.0e-03^~1~^~A~^^^1^0.03^0.04^4^0.02^0.04^~2, 3~^~05/01/2011~ -~12637~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~346~^0.03^5^5.0e-03^~1~^~A~^^^1^0.02^0.05^4^0.02^0.04^~2, 3~^~05/01/2011~ -~12637~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12637~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12637~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12638~^~203~^15.52^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~204~^56.17^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~205~^22.27^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12638~^~207~^2.89^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~255~^3.15^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~269~^4.38^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~303~^2.57^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~309~^4.66^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~323~^8.20^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~12638~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12638~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12638~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12643~^~203~^9.50^3^0.10^~1~^~A~^^^1^9.40^9.70^2^9.07^9.93^~4~^~01/01/2001~ -~12643~^~204~^74.27^3^0.37^~1~^~A~^^^1^73.60^74.90^2^72.65^75.88^~4~^~01/01/2001~ -~12643~^~205~^13.55^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~207~^1.56^3^0.07^~1~^~A~^^^1^1.41^1.64^2^1.23^1.89^~4~^~01/01/2001~ -~12643~^~209~^0.24^3^0.07^~1~^~A~^^^1^0.16^0.40^2^-0.09^0.58^~4~^~01/01/2001~ -~12643~^~210~^4.00^3^0.25^~1~^~A~^^^1^3.50^4.30^2^2.91^5.08^~4~^~01/01/2001~ -~12643~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12643~^~212~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12643~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12643~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12643~^~255~^1.12^3^0.09^~1~^~A~^^^1^0.95^1.25^2^0.73^1.50^~4~^~01/01/2001~ -~12643~^~269~^4.06^3^0.24^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12643~^~303~^2.80^3^0.15^~1~^~A~^^^1^2.60^3.10^2^2.14^3.45^~4~^~01/01/2001~ -~12643~^~309~^5.07^3^0.43^~1~^~A~^^^1^4.20^5.60^2^3.18^6.94^~4~^~01/01/2001~ -~12643~^~323~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~4~^~01/01/2001~ -~12643~^~341~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~01/01/2001~ -~12643~^~342~^23.57^3^2.02^~1~^~A~^^^1^21.30^27.60^2^14.86^32.26^~4~^~01/01/2001~ -~12643~^~343~^0.77^3^0.12^~1~^~A~^^^1^0.60^1.00^2^0.25^1.28^~4~^~01/01/2001~ -~12643~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12644~^~203~^9.20^3^0.05^~1~^~A~^^^1^9.10^9.30^2^8.95^9.44^~4~^~01/01/2001~ -~12644~^~204~^75.23^3^0.52^~1~^~A~^^^1^74.30^76.10^2^72.99^77.47^~4~^~01/01/2001~ -~12644~^~205~^13.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~207~^1.42^3^0.06^~1~^~A~^^^1^1.34^1.55^2^1.14^1.70^~4~^~01/01/2001~ -~12644~^~209~^0.28^3^0.02^~1~^~A~^^^1^0.24^0.32^2^0.18^0.37^~4~^~01/01/2001~ -~12644~^~210~^3.90^3^0.26^~1~^~A~^^^1^3.40^4.30^2^2.76^5.03^~4~^~01/01/2001~ -~12644~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12644~^~212~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~01/01/2001~ -~12644~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12644~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~01/01/2001~ -~12644~^~255~^1.13^3^0.03^~1~^~A~^^^1^1.09^1.20^2^0.97^1.28^~4~^~01/01/2001~ -~12644~^~269~^3.97^3^0.26^~1~^~A~^^^^^^^^^^~05/01/1999~ -~12644~^~303~^2.47^3^0.20^~1~^~A~^^^1^2.10^2.80^2^1.59^3.33^~4~^~01/01/2001~ -~12644~^~309~^4.47^3^0.03^~1~^~A~^^^1^4.40^4.50^2^4.32^4.61^~4~^~01/01/2001~ -~12644~^~323~^2.53^3^0.14^~1~^~A~^^^1^2.30^2.80^2^1.90^3.15^~4~^~01/01/2001~ -~12644~^~341~^0.35^3^0.10^~1~^~A~^^^1^0.14^0.50^2^-0.11^0.80^~4~^~01/01/2001~ -~12644~^~342~^24.20^3^2.47^~1~^~A~^^^1^19.30^27.20^2^13.57^34.83^~4~^~01/01/2001~ -~12644~^~343~^1.07^3^0.26^~1~^~A~^^^1^0.60^1.50^2^-0.05^2.18^~4~^~01/01/2001~ -~12644~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12652~^~203~^21.05^14^0.35^~1~^~A~^^^4^19.59^22.80^3^19.93^22.16^~2~^~04/01/2015~ -~12652~^~204~^45.82^17^1.73^~1~^~A~^^^5^39.60^49.80^4^41.01^50.62^~2~^~04/01/2015~ -~12652~^~205~^27.55^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~207~^3.79^5^0.08^~1~^~A~^^^2^3.59^4.01^1^2.69^4.88^~2~^~05/01/2010~ -~12652~^~209~^1.38^4^0.11^~1~^~A~^^^1^1.19^1.68^3^1.01^1.73^~4~^~01/01/2001~ -~12652~^~210~^7.09^13^0.28^~1~^~A~^^^3^5.90^8.30^2^5.90^8.33^~2~^~04/01/2015~ -~12652~^~211~^0.25^13^0.07^~1~^~A~^^^3^0.07^0.60^2^-0.06^0.57^~2~^~04/01/2015~ -~12652~^~212~^0.22^13^0.08^~1~^~A~^^^3^0.10^0.40^2^-0.16^0.60^~2~^~05/01/2010~ -~12652~^~213~^0.00^13^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2010~ -~12652~^~214~^0.13^13^0.06^~1~^~A~^^^3^0.00^0.60^2^-0.17^0.42^~1, 2~^~05/01/2010~ -~12652~^~255~^1.79^8^0.14^~1~^~A~^^^3^1.30^2.48^2^1.16^2.40^~2~^~05/01/2010~ -~12652~^~269~^7.74^13^0.36^~1~^~A~^^^3^6.30^9.40^2^6.19^9.29^~2~^~05/01/2010~ -~12652~^~303~^4.03^13^0.17^~1~^~A~^^^3^3.55^4.60^2^3.27^4.78^~2~^~05/01/2010~ -~12652~^~309~^2.34^5^0.04^~1~^~A~^^^2^2.20^2.40^1^1.83^2.84^~2~^~05/01/2010~ -~12652~^~323~^2.17^9^0.35^~1~^~A~^^^4^1.45^3.14^3^1.04^3.30^~2~^~04/01/2015~ -~12652~^~341~^0.13^9^0.03^~1~^~A~^^^4^0.05^0.23^3^2.0e-03^0.25^~1, 2~^~04/01/2015~ -~12652~^~342~^23.42^9^2.53^~1~^~A~^^^4^18.00^30.23^3^15.36^31.47^~2~^~04/01/2015~ -~12652~^~343~^0.55^9^0.16^~1~^~A~^^^4^0.09^0.80^3^0.03^1.05^~1, 2~^~04/01/2015~ -~12652~^~344~^0.29^4^0.22^~1~^~A~^^^2^0.07^0.51^1^-2.50^3.08^~2~^~04/01/2015~ -~12652~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12652~^~346~^3.14^4^1.35^~1~^~A~^^^2^1.79^4.49^1^-14.01^20.29^~2~^~04/01/2015~ -~12652~^~347~^0.08^4^0.04^~1~^~A~^^^2^0.03^0.12^1^-0.49^0.64^~2~^~04/01/2015~ -~12652~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12652~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12652~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12663~^~203~^18.55^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~204~^19.40^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~205~^53.75^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~ -~12663~^~207~^3.80^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~255~^4.50^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~303~^3.31^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~309~^10.30^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12665~^~203~^21.23^3^1.14^~1~^~A~^^^1^20.60^23.30^2^16.31^26.14^~4~^~07/01/2012~ -~12665~^~204~^55.17^3^1.19^~1~^~A~^^^1^52.70^55.70^2^50.01^60.32^~4~^~07/01/2012~ -~12665~^~205~^17.68^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~12665~^~207~^3.13^3^0.03^~1~^~A~^^^1^3.12^3.20^2^2.97^3.28^~4~^~07/01/2012~ -~12665~^~209~^0.56^3^0.32^~1~^~A~^^^1^0.39^1.23^2^-0.83^1.95^~4~^~07/01/2012~ -~12665~^~210~^4.38^3^0.24^~1~^~A~^^^1^4.30^4.90^2^3.30^5.44^~4~^~07/01/2012~ -~12665~^~211~^0.04^3^0.00^~1~^~A~^^^1^0.04^0.04^2^0.03^0.03^~4~^~07/01/2012~ -~12665~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~07/01/2012~ -~12665~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~07/01/2012~ -~12665~^~214~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~07/01/2012~ -~12665~^~255~^2.80^3^0.15^~1~^~A~^^^1^2.72^3.12^2^2.12^3.46^~4~^~07/01/2012~ -~12665~^~269~^4.55^3^0.24^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~303~^3.68^3^0.29^~1~^~A~^^^1^3.50^4.20^2^2.42^4.93^~4~^~07/01/2012~ -~12665~^~309~^3.07^3^0.24^~1~^~A~^^^1^2.90^3.50^2^1.99^4.13^~4~^~07/01/2012~ -~12665~^~323~^25.97^3^1.04^~1~^~A~^^^1^24.80^27.50^2^21.48^30.46^~4~^~07/01/2012~ -~12665~^~341~^0.42^3^0.04^~1~^~A~^^^1^0.40^0.50^2^0.22^0.60^~4~^~07/01/2012~ -~12665~^~342~^0.88^3^0.04^~1~^~A~^^^1^0.80^0.90^2^0.68^1.06^~4~^~07/01/2012~ -~12665~^~343~^0.14^3^0.00^~1~^~A~^^^1^0.14^0.14^2^0.14^0.14^~4~^~07/01/2012~ -~12665~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12695~^~203~^20.96^8^0.44^~1~^~A~^^^1^18.32^22.13^7^19.89^22.02^~4~^~05/01/2010~ -~12695~^~204~^55.50^8^0.71^~1~^~A~^^^1^53.20^59.20^7^53.80^57.19^~4~^~05/01/2010~ -~12695~^~205~^18.82^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~207~^3.09^8^0.05^~1~^~A~^^^1^2.90^3.30^7^2.95^3.22^~4~^~05/01/2010~ -~12695~^~209~^0.08^8^0.00^~1~^~A~^^^1^0.08^0.08^7^0.07^0.07^~1, 4~^~05/01/2010~ -~12695~^~210~^6.14^8^0.19^~1~^~A~^^^1^3.40^5.30^7^3.87^4.80^~4~^~08/01/2012~ -~12695~^~211~^0.02^8^0.00^~1~^~A~^^^1^0.02^0.02^7^0.01^0.01^~1, 4~^~05/01/2010~ -~12695~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~05/01/2010~ -~12695~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~05/01/2010~ -~12695~^~214~^0.10^8^0.00^~1~^~A~^^^1^0.07^0.07^7^0.07^0.07^~1, 4~^~08/01/2012~ -~12695~^~255~^1.64^8^0.15^~1~^~A~^^^1^1.20^2.40^7^1.27^2.00^~4~^~05/01/2010~ -~12695~^~269~^6.27^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12695~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~12695~^~303~^3.49^8^0.36^~1~^~A~^^^1^1.59^5.37^7^2.63^4.34^~4~^~05/01/2010~ -~12695~^~309~^3.29^8^0.21^~1~^~A~^^^1^2.41^4.53^7^2.76^3.80^~4~^~05/01/2010~ -~12695~^~323~^24.21^8^1.08^~1~^~A~^^^1^21.00^30.60^7^21.65^26.77^~4~^~05/01/2010~ -~12695~^~341~^0.53^8^0.03^~1~^~A~^^^1^0.45^0.77^7^0.44^0.61^~4~^~05/01/2010~ -~12695~^~342~^1.01^8^0.07^~1~^~A~^^^1^0.89^1.50^7^0.83^1.17^~4~^~05/01/2010~ -~12695~^~343~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^7^0.00^0.00^~1, 4~^~05/01/2010~ -~12695~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~ -~12695~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12695~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~12698~^~203~^17.40^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~204~^53.01^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~205~^21.50^0^^~4~^~NC~^^^^^^^^^^~07/01/1984~ -~12698~^~207~^5.09^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~12698~^~255~^3.00^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~303~^4.42^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~309~^4.62^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~418~^0.00^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12737~^~203~^20.04^10^0.30^~1~^~A~^^^1^17.81^21.47^9^19.35^20.72^~2, 3~^~08/01/2012~ -~12737~^~204~^53.95^10^0.46^~1~^~A~^^^1^52.50^56.90^9^52.90^55.00^~2, 3~^~08/01/2012~ -~12737~^~205~^21.05^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~207~^2.88^10^0.04^~1~^~A~^^^1^2.66^3.18^9^2.76^2.99^~2, 3~^~08/01/2012~ -~12737~^~209~^4.20^5^0.29^~1~^~A~^^^1^3.10^4.70^4^3.38^5.01^~2, 3~^~08/01/2012~ -~12737~^~210~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~08/01/2012~ -~12737~^~211~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~212~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~255~^2.08^10^0.03^~1~^~A~^^^1^1.90^2.20^9^2.00^2.15^~2, 3~^~08/01/2012~ -~12737~^~269~^4.15^10^0.08^~1~^~A~^^^1^3.78^4.56^9^3.95^4.33^~2, 3~^~08/01/2012~ -~12737~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~303~^2.61^10^0.03^~1~^~A~^^^1^2.45^2.81^9^2.53^2.68^~2, 3~^~08/01/2012~ -~12737~^~309~^3.36^10^0.04^~1~^~A~^^^1^3.21^3.60^9^3.26^3.46^~2, 3~^~08/01/2012~ -~12737~^~323~^7.82^5^0.43^~1~^~A~^^^1^7.08^9.42^4^6.62^9.02^~2, 3~^~08/01/2012~ -~12737~^~341~^0.22^5^0.03^~1~^~A~^^^1^0.13^0.32^4^0.11^0.32^~2, 3~^~08/01/2012~ -~12737~^~342~^6.39^5^0.57^~1~^~A~^^^1^5.12^7.93^4^4.77^7.99^~2, 3~^~08/01/2012~ -~12737~^~343~^0.32^5^0.05^~1~^~A~^^^1^0.19^0.45^4^0.17^0.46^~2, 3~^~08/01/2012~ -~12737~^~344~^0.04^5^3.0e-03^~1~^~A~^^^1^0.03^0.04^4^0.02^0.04^~2, 3~^~08/01/2012~ -~12737~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~346~^0.03^5^5.0e-03^~1~^~A~^^^1^0.02^0.05^4^0.02^0.04^~2, 3~^~08/01/2012~ -~12737~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12737~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12738~^~203~^17.86^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~204~^50.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~205~^25.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~207~^3.18^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~210~^5.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~211~^0.11^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~212~^0.04^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~213~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~214~^0.07^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~255~^3.15^0^^~4~^~BFZN~^~12638~^^^^^^^^^~08/01/2012~ -~12738~^~269~^5.21^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12738~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~12738~^~303~^5.18^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~309~^4.57^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~323~^7.68^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~418~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13000~^~203~^23.07^38^0.12^~1~^~A~^^^1^21.49^24.99^37^22.82^23.32^~2, 3~^~06/01/2007~ -~13000~^~204~^2.69^36^0.16^~1~^~A~^^^1^1.41^4.85^35^2.36^3.01^~2, 3~^~06/01/2007~ -~13000~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~13000~^~207~^1.69^38^0.14^~1~^~A~^^^1^0.16^3.42^37^1.40^1.98^~2, 3~^~06/01/2007~ -~13000~^~255~^73.42^38^0.20^~1~^~A~^^^1^70.71^75.67^37^73.01^73.82^~2, 3~^~06/01/2007~ -~13000~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~303~^1.85^11^0.09^~1~^~A~^^^1^1.42^2.49^10^1.64^2.05^~2, 3~^~06/01/2007~ -~13000~^~309~^3.61^11^0.14^~1~^~A~^^^1^2.49^4.24^10^3.29^3.92^~2, 3~^~06/01/2007~ -~13000~^~323~^0.22^0^^~4~^~BFFN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~418~^1.27^11^0.12^~1~^~A~^^^1^0.85^2.30^10^1.00^1.54^~2, 3~^~06/01/2007~ -~13000~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13001~^~203~^17.32^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~204~^24.05^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13001~^~207~^0.81^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~255~^57.26^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~303~^1.83^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~309~^3.57^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~418~^2.67^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~203~^17.48^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~204~^22.55^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13002~^~207~^0.82^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~255~^58.21^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~303~^1.85^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~309~^3.59^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~418~^2.69^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~203~^8.21^6^0.20^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~204~^70.89^12^0.41^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13019~^~207~^0.28^6^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~255~^20.21^12^0.27^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~303~^0.72^4^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~309~^0.82^4^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~418~^0.73^4^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13020~^~203~^10.65^6^0.42^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~204~^70.33^6^0.85^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13020~^~207~^0.45^6^0.61^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~255~^18.58^6^0.61^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13020~^~303~^1.08^4^0.06^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~309~^1.24^4^0.05^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~418~^0.90^4^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13023~^~203~^20.72^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~204~^7.37^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13023~^~207~^1.02^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~255~^70.29^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~303~^1.92^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~309~^4.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~323~^0.32^0^^~4~^~BFSN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~418~^2.43^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13047~^~203~^19.42^42^0.15^~1~^~A~^^^1^17.26^20.99^41^19.11^19.72^~2, 3~^~06/01/2007~ -~13047~^~204~^12.73^42^0.58^~1~^~A~^^^1^6.43^22.62^41^11.55^13.91^~2, 3~^~06/01/2007~ -~13047~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~207~^1.71^42^0.08^~1~^~A~^^^1^0.26^2.78^41^1.53^1.87^~2, 3~^~06/01/2007~ -~13047~^~255~^67.13^42^0.47^~1~^~A~^^^1^58.98^72.87^41^66.17^68.08^~2, 3~^~06/01/2007~ -~13047~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~303~^1.99^11^0.06^~1~^~A~^^^1^1.71^2.31^10^1.84^2.13^~2, 3~^~06/01/2007~ -~13047~^~309~^4.55^11^0.11^~1~^~A~^^^1^4.11^5.42^10^4.29^4.81^~2, 3~^~06/01/2007~ -~13047~^~323~^0.35^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~418~^1.97^11^0.08^~1~^~A~^^^1^1.56^2.36^10^1.79^2.15^~2, 3~^~06/01/2007~ -~13047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13055~^~203~^28.97^10^0.39^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~204~^17.37^10^0.87^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~207~^0.93^10^0.07^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~255~^53.39^10^0.82^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13055~^~303~^2.40^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~309~^6.92^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~323~^0.50^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13055~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~418~^1.92^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13065~^~203~^21.22^10^0.28^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~204~^8.29^10^0.77^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13065~^~207~^1.02^10^0.03^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~255~^69.46^10^0.68^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13065~^~303~^1.55^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~309~^3.81^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13065~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13065~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13065~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13065~^~418~^1.18^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13066~^~203~^26.98^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~204~^16.44^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13066~^~207~^2.04^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~255~^54.95^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~13066~^~303~^3.33^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~309~^5.77^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~323~^0.69^0^^~4~^~BFFN~^~13067~^^^^^^^^^~05/01/2004~ -~13066~^~418~^3.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13067~^~203~^27.55^10^0.39^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~204~^9.31^10^0.48^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13067~^~207~^1.06^10^0.05^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~255~^63.33^10^0.30^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~303~^1.80^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~309~^4.79^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2003~ -~13067~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13067~^~418~^1.82^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13068~^~203~^21.72^10^0.32^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~204~^6.29^10^0.54^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13068~^~207~^0.99^10^0.03^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~255~^68.72^10^0.58^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13068~^~303~^1.62^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~309~^4.12^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13068~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13068~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13068~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13068~^~418~^1.18^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13069~^~203~^28.02^11^0.58^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~204~^13.00^11^0.99^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13069~^~207~^2.14^7^0.00^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~255~^57.27^11^0.01^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13069~^~303~^3.47^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~309~^6.05^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~13069~^~418~^3.41^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13070~^~203~^27.82^10^0.38^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~204~^8.32^10^0.51^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~207~^1.07^10^0.05^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~255~^64.06^10^0.41^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~303~^1.84^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~309~^5.11^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13070~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13070~^~418~^1.74^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13095~^~203~^17.51^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~204~^22.07^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13095~^~207~^0.85^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~255~^58.03^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~303~^1.87^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~309~^3.85^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~418~^3.11^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13096~^~203~^26.58^10^0.54^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~204~^16.76^10^1.19^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13096~^~207~^1.08^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~255~^55.87^10^0.81^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~303~^1.80^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~309~^4.79^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~323~^0.47^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13096~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13096~^~418~^1.75^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13097~^~203~^20.13^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~204~^8.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13097~^~207~^1.01^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~255~^68.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~303~^2.18^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~309~^4.66^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~418~^3.57^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13098~^~203~^28.88^10^0.45^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~204~^9.01^10^0.56^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13098~^~207~^1.17^10^0.03^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~255~^61.30^10^0.60^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~303~^1.98^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~309~^5.49^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13098~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13098~^~418~^1.80^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13147~^~203~^14.40^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~204~^36.23^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13147~^~207~^0.68^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~255~^48.29^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~303~^1.55^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~309~^3.16^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~418~^2.56^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~203~^21.57^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~204~^41.98^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13148~^~207~^0.74^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~255~^35.72^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13148~^~303~^2.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~309~^4.88^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~323~^0.29^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~418~^2.62^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13149~^~203~^19.05^4^0.29^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~204~^10.19^4^1.42^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13149~^~207~^0.98^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~255~^69.38^4^1.13^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~303~^2.16^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~309~^4.78^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~418~^3.39^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~203~^30.76^4^0.95^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~204~^18.13^4^1.78^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13150~^~207~^0.98^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~255~^50.15^4^0.89^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~13150~^~303~^3.36^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~309~^7.80^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~ -~13150~^~418~^3.46^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~203~^29.21^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~204~^7.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13156~^~207~^1.41^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~255~^60.50^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13156~^~303~^2.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~309~^4.64^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~418~^3.17^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13158~^~203~^29.25^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~204~^5.22^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13158~^~207~^1.41^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~255~^62.44^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~303~^2.71^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~309~^4.66^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~418~^3.17^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13165~^~203~^32.21^10^0.59^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~204~^9.24^10^0.77^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~207~^1.09^10^0.07^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~255~^58.42^10^0.48^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~303~^2.75^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~309~^7.23^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13165~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13165~^~418~^2.62^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13227~^~203~^21.75^11^3.16^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~204~^3.85^11^0.19^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13227~^~207~^1.44^7^0.23^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~255~^73.03^11^0.28^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~303~^2.32^7^0.16^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~309~^6.94^7^0.23^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~418~^3.33^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~203~^33.68^11^4.52^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~204~^6.36^11^0.82^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13228~^~207~^2.39^7^0.23^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~255~^58.21^11^0.62^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~303~^3.86^7^0.19^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~309~^10.49^7^0.50^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~418~^3.79^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13231~^~203~^22.13^24^0.34^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~204~^7.39^24^0.72^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13231~^~207~^1.01^24^0.03^~1~^~AR~^^^^^^^^^^~09/01/2001~ -~13231~^~255~^69.56^24^0.45^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13231~^~303~^1.98^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~309~^3.61^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13231~^~418~^1.93^4^0.06^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~203~^27.65^24^1.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~204~^11.36^24^0.80^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13232~^~207~^1.02^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~255~^60.31^24^0.58^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13232~^~303~^3.16^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~309~^4.65^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13232~^~418~^2.14^4^0.04^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~203~^22.10^24^0.38^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~204~^7.27^24^0.45^~1~^~AR~^^^^^^^^^^~09/01/2001~ -~13235~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13235~^~207~^1.00^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~255~^69.97^24^0.24^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13235~^~303~^1.65^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~309~^3.86^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~323~^0.28^0^^~4~^~BFFN~^~23385~^^^^^^^^^~05/01/2013~ -~13235~^~418~^1.79^4^0.09^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~203~^27.48^24^0.68^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~204~^11.05^24^1.09^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13236~^~207~^1.02^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~255~^60.60^24^0.53^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13236~^~303~^3.57^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~309~^4.69^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13236~^~418~^1.89^4^0.06^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13284~^~203~^21.17^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~204~^6.57^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~205~^0.00^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~207~^0.93^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~255~^71.33^0^^~4~^~NR~^^^^^^^^^^~11/01/2009~ -~13284~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~303~^1.94^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~309~^5.28^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~418~^2.51^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13285~^~203~^30.54^36^0.88^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~204~^10.46^36^1.21^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~207~^1.39^36^0.32^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~255~^58.22^36^1.16^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~303~^3.19^6^0.04^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~309~^11.32^6^0.24^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~323~^0.08^6^7.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~418~^3.39^6^0.11^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~203~^21.13^36^0.19^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~204~^6.07^36^0.26^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~205~^0.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13293~^~207~^1.08^36^0.07^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~255~^71.41^36^0.73^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~303~^2.34^6^0.05^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~309~^7.79^6^0.07^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~323~^0.18^6^0.02^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~418~^3.11^6^0.15^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~203~^21.19^24^0.24^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~204~^6.51^24^0.33^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~205~^0.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13294~^~207~^1.08^24^0.08^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~255~^70.82^24^0.75^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~303~^2.27^4^0.06^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~309~^7.82^4^0.08^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~323~^0.17^4^0.02^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~418~^3.26^4^0.18^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13317~^~203~^23.05^2^^~1~^~A~^^^1^22.94^23.15^1^^^^~02/01/2007~ -~13317~^~204~^21.83^2^^~1~^~A~^^^1^21.27^22.39^1^^^^~02/01/2007~ -~13317~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13317~^~207~^0.90^2^^~1~^~A~^^^1^0.88^0.92^1^^^^~02/01/2007~ -~13317~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~255~^53.91^2^^~1~^~A~^^^1^53.64^54.18^1^^^^~02/01/2007~ -~13317~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~303~^2.42^2^^~1~^~A~^^^1^2.39^2.45^1^^^^~02/01/2007~ -~13317~^~309~^4.84^2^^~1~^~A~^^^1^4.60^5.08^1^^^^~02/01/2007~ -~13317~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~13317~^~418~^2.65^2^^~1~^~A~^^^1^2.55^2.75^1^^^^~02/01/2007~ -~13317~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13317~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~13318~^~203~^10.86^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~204~^10.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~205~^1.05^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~207~^1.51^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~255~^76.29^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13318~^~303~^2.55^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~309~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~323~^0.99^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~342~^0.05^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13318~^~418~^9.51^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13319~^~203~^12.57^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~204~^15.83^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13319~^~207~^1.58^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~255~^70.75^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~303~^2.22^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~309~^1.35^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~418~^15.20^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13320~^~203~^11.67^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~204~^10.53^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~205~^1.48^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13320~^~207~^1.46^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~255~^74.86^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13320~^~303~^2.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~309~^1.09^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~323~^1.67^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~342~^0.06^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13320~^~418~^10.10^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13320~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13321~^~203~^17.72^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~204~^3.94^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~ -~13321~^~207~^1.10^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~255~^77.11^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~303~^4.31^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~309~^1.70^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~323~^0.22^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13321~^~418~^8.55^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~203~^28.48^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~204~^4.73^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~205~^0.15^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13322~^~207~^0.97^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~255~^65.67^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~303~^6.38^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~309~^2.87^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~323~^0.29^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~342~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~344~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13322~^~418~^10.80^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13323~^~203~^17.40^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~204~^3.09^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~205~^0.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13323~^~207~^1.33^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~255~^77.89^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~303~^4.60^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~309~^1.92^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~323~^0.22^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~344~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13323~^~418~^27.50^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~203~^27.27^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~204~^4.65^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~207~^1.31^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~255~^66.88^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~303~^5.80^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~309~^2.84^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~323~^0.08^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~342~^0.00^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~13324~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~344~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13324~^~418~^24.90^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13325~^~203~^20.36^4^0.15^~1~^~A~^^^1^20.13^20.80^3^19.87^20.84^~2, 3~^~02/01/2003~ -~13325~^~204~^3.63^4^0.20^~1~^~A~^^^1^3.16^4.09^3^2.98^4.28^~2, 3~^~02/01/2003~ -~13325~^~205~^3.89^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13325~^~207~^1.31^4^0.08^~1~^~A~^^^1^1.14^1.55^3^1.03^1.58^~2, 3~^~02/01/2003~ -~13325~^~255~^70.81^4^0.19^~1~^~A~^^^1^70.49^71.29^3^70.20^71.41^~2, 3~^~02/01/2003~ -~13325~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~303~^4.90^4^0.46^~1~^~A~^^^1^4.00^6.17^3^3.40^6.39^~2, 3~^~02/01/2003~ -~13325~^~309~^4.00^4^0.32^~1~^~A~^^^1^3.36^4.92^3^2.95^5.04^~2, 3~^~02/01/2003~ -~13325~^~323~^0.38^8^^~1~^~A~^^^1^0.32^0.48^^^^~2, 3~^~02/01/2003~ -~13325~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~13325~^~342~^0.07^8^^~1~^~A~^^^1^0.03^0.09^^^^~2, 3~^~02/01/2003~ -~13325~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13325~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13325~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13325~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13325~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13325~^~418~^59.30^4^4.09^~1~^~A~^^^1^51.60^69.10^3^46.28^72.31^~2, 3~^~02/01/2003~ -~13325~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13325~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~13326~^~203~^29.08^4^0.27^~1~^~A~^^^1^28.57^29.70^3^28.20^29.94^~2, 3~^~02/01/2003~ -~13326~^~204~^5.26^4^0.31^~1~^~A~^^^1^4.75^6.16^3^4.27^6.24^~2, 3~^~02/01/2003~ -~13326~^~205~^5.13^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13326~^~207~^1.74^4^0.05^~1~^~A~^^^1^1.58^1.83^3^1.56^1.90^~2, 3~^~02/01/2003~ -~13326~^~255~^58.81^4^0.52^~1~^~A~^^^1^57.47^59.84^3^57.14^60.47^~2, 3~^~02/01/2003~ -~13326~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~303~^6.54^4^0.28^~1~^~A~^^^1^5.90^7.21^3^5.62^7.46^~2, 3~^~02/01/2003~ -~13326~^~309~^5.30^4^0.13^~1~^~A~^^^1^4.95^5.61^3^4.86^5.74^~2, 3~^~02/01/2003~ -~13326~^~323~^0.51^8^^~1~^~A~^^^1^0.39^0.59^^^^~2, 3~^~02/01/2003~ -~13326~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~13326~^~342~^0.06^6^^~1~^~A~^^^1^0.04^0.09^^^^~2, 3~^~02/01/2003~ -~13326~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13326~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13326~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13326~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13326~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13326~^~418~^70.58^4^9.39^~1~^~A~^^^1^49.30^95.10^3^40.67^100.48^~2, 3~^~02/01/2003~ -~13326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~203~^26.52^4^0.42^~1~^~A~^^^1^25.31^27.29^3^25.16^27.86^~2, 3~^~02/01/2003~ -~13327~^~204~^4.68^4^0.34^~1~^~A~^^^1^4.10^5.60^3^3.58^5.77^~2, 3~^~02/01/2003~ -~13327~^~205~^5.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~13327~^~207~^1.63^4^0.09^~1~^~A~^^^1^1.44^1.90^3^1.31^1.94^~2, 3~^~02/01/2003~ -~13327~^~255~^62.01^4^0.47^~1~^~A~^^^1^61.05^63.17^3^60.51^63.51^~2, 3~^~02/01/2003~ -~13327~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~303~^6.17^4^0.35^~1~^~A~^^^1^5.34^7.04^3^5.05^7.28^~2, 3~^~02/01/2003~ -~13327~^~309~^5.23^4^0.24^~1~^~A~^^^1^4.56^5.68^3^4.45^5.99^~2, 3~^~02/01/2003~ -~13327~^~323~^0.46^6^^~1~^~A~^^^1^0.36^0.58^^^^~2, 3~^~02/01/2003~ -~13327~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~13327~^~342~^0.06^6^^~1~^~A~^^^1^0.04^0.08^^^^~2, 3~^~02/01/2003~ -~13327~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13327~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13327~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13327~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13327~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~13327~^~418~^83.13^4^7.20^~1~^~A~^^^1^72.00^104.00^3^60.20^106.04^~2, 3~^~02/01/2003~ -~13327~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13328~^~203~^16.20^5^0.57^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~204~^2.50^7^0.49^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13328~^~207~^0.98^5^0.02^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~255~^79.38^8^0.73^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~303~^7.95^4^0.53^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~309~^1.61^10^0.06^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~418~^3.81^3^0.59^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~203~^20.40^3^0.40^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~204~^3.70^3^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13329~^~207~^1.10^3^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~255~^76.40^4^1.25^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~303~^5.40^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~309~^1.64^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~418~^2.59^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~203~^14.97^56^0.10^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~204~^23.52^64^0.54^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13330~^~207~^2.14^56^0.37^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~255~^59.39^56^0.54^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~303~^5.67^36^0.61^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~309~^3.58^47^0.09^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~418~^2.56^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~203~^15.70^3^0.46^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~204~^18.60^3^2.25^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13331~^~207~^1.30^3^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~255~^65.20^3^2.07^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~303~^2.22^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~309~^2.58^35^0.10^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~418~^14.00^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~203~^27.10^3^0.69^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~204~^17.20^3^0.63^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13332~^~207~^1.50^3^0.00^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~255~^55.60^3^0.34^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~303~^2.61^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~309~^4.60^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~418~^16.60^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~203~^18.30^5^0.85^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~204~^3.00^7^0.54^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13333~^~207~^1.38^5^0.02^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~255~^77.20^8^0.86^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~303~^44.55^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~309~^2.11^22^0.15^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~418~^5.68^3^0.58^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~203~^25.10^3^0.34^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~204~^4.20^3^0.28^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13334~^~207~^1.60^3^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~255~^69.98^4^0.71^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~303~^39.36^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~309~^2.79^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~418~^5.02^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~203~^1.50^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~204~^94.00^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13335~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~255~^4.00^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13335~^~303~^0.17^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~309~^0.22^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~323~^1.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~418~^0.27^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2006~ -~13335~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2006~ -~13337~^~203~^12.18^5^1.26^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~204~^20.35^4^1.48^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13337~^~207~^1.38^4^0.08^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~255~^67.80^4^0.75^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~303~^2.10^3^0.28^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~309~^2.06^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~418~^2.13^3^0.06^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~203~^21.85^4^1.43^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~204~^24.98^4^7.17^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13338~^~207~^1.53^4^0.08^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~255~^52.83^4^3.01^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~303~^1.49^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~309~^2.20^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~418~^1.51^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~203~^14.90^19^0.43^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~204~^16.09^11^1.30^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~205~^3.68^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13339~^~207~^0.80^5^6.0e-03^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~255~^64.53^22^1.05^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~303~^2.95^4^0.29^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~309~^2.87^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~418~^3.79^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13340~^~203~^19.29^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~204~^22.30^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~207~^0.69^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~255~^57.87^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~303~^2.61^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~309~^4.09^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~13340~^~323~^0.30^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~342~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~344~^0.05^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13340~^~418~^3.13^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~203~^12.07^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~204~^3.69^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13341~^~207~^0.55^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~255~^84.16^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~303~^0.59^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~309~^1.42^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~323~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~344~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~13341~^~418~^1.39^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13342~^~203~^16.50^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~204~^27.00^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~13342~^~207~^0.80^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~255~^56.00^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13342~^~303~^1.86^1^^~1~^~A~^^^^^^^^^^~06/01/1998~ -~13342~^~309~^3.63^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~323~^0.21^0^^~4~^~NR~^^^^^^^^^^~12/01/2000~ -~13342~^~418~^2.71^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13342~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13343~^~203~^32.62^10^0.56^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~204~^8.07^10^0.68^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~207~^1.10^10^0.07^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~255~^59.18^10^0.45^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~303~^2.83^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~309~^7.61^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13343~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13343~^~418~^2.53^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13343~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13344~^~203~^12.50^22^0.10^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~204~^38.80^22^0.36^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13344~^~207~^2.80^22^0.02^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~255~^45.20^22^0.40^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~303~^1.23^22^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~309~^2.39^22^0.06^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~418~^1.64^22^0.07^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~203~^31.30^22^0.85^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~204~^34.40^22^0.64^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13345~^~207~^6.70^22^0.14^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~255~^26.20^22^1.13^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13345~^~303~^3.14^22^0.11^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~309~^6.37^22^0.20^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~323~^0.29^0^^~4~^~BFSN~^~13347~^^^^^^^^^~03/01/2003~ -~13345~^~418~^3.45^22^0.17^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13346~^~203~^14.68^102^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~204~^14.90^18^1.16^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13346~^~207~^3.73^10^0.12^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~255~^66.56^102^0.47^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~303~^1.69^19^0.05^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~309~^2.85^11^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~418~^1.78^5^0.27^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~203~^18.17^40^0.55^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~204~^18.98^13^2.62^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~205~^0.47^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13347~^~207~^2.60^5^0.17^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~255~^59.79^40^1.15^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~13347~^~303~^1.86^13^0.11^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~309~^4.58^5^0.25^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~323~^0.16^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~13347~^~418~^1.63^5^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13347~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13348~^~203~^27.10^69^0.24^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~204~^14.93^11^1.04^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13348~^~207~^2.90^6^0.04^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~255~^57.72^70^0.26^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~13348~^~303~^2.08^29^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~309~^3.57^29^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~13348~^~418~^1.62^6^0.10^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13348~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13349~^~203~^21.03^12^0.32^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~204~^5.41^12^0.43^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~205~^0.19^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~207~^1.07^12^0.09^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~255~^72.30^12^0.81^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~303~^2.43^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~309~^7.74^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~323~^0.18^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~418~^2.89^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13350~^~203~^31.10^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~204~^1.94^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~205~^2.76^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~207~^10.40^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~255~^53.80^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~13350~^~269~^2.70^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~303~^2.42^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~309~^4.93^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~323~^0.38^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~418~^1.59^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13351~^~203~^26.50^36^0.69^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~204~^12.64^36^2.01^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~207~^1.00^36^0.07^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~255~^59.72^36^0.95^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~303~^3.31^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~309~^10.05^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~323~^0.08^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~418~^3.73^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~203~^26.49^24^0.73^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~204~^13.42^24^2.03^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~205~^0.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~207~^0.99^24^0.08^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~255~^58.83^24^1.01^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~303~^3.32^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~309~^9.85^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~323~^0.09^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~418~^3.50^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13353~^~203~^19.00^15^0.23^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~204~^3.30^15^0.16^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13353~^~207~^3.40^15^0.03^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~255~^74.60^15^0.30^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~303~^3.45^7^0.40^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~309~^3.55^7^0.21^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~418~^5.14^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13354~^~203~^26.53^12^0.80^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~204~^11.46^12^2.08^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13354~^~207~^1.02^12^0.08^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~255~^61.06^12^1.12^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~303~^3.37^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~309~^10.40^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~323~^0.07^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~418~^4.28^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13355~^~203~^21.80^5^^~1~^~A~^^^2^17.70^27.00^^^^~2~^~05/01/2004~ -~13355~^~204~^5.82^5^^~1~^~A~^^^2^3.57^8.00^^^^~2~^~05/01/2004~ -~13355~^~205~^0.36^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~207~^3.40^4^^~1~^~A~^^^1^3.20^3.70^^^^~2~^~05/01/2004~ -~13355~^~210~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~211~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~212~^0.01^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~214~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~255~^69.53^4^^~1~^~A~^^^1^68.20^70.10^^^^~2~^~05/01/2004~ -~13355~^~269~^0.10^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~13355~^~303~^2.22^5^^~1~^~A~^^^2^1.99^2.57^^^^~2~^~05/01/2004~ -~13355~^~309~^4.98^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~418~^1.87^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13356~^~203~^19.42^36^0.31^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~204~^9.99^36^2.32^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~205~^0.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~207~^0.91^36^0.06^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~255~^69.19^36^1.76^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~303~^2.42^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~309~^7.58^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~323~^0.14^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~418~^3.10^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13357~^~203~^14.11^18^0.28^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~204~^26.91^7^1.16^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~205~^2.42^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13357~^~207~^3.00^5^0.00^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~255~^53.56^16^1.00^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~303~^1.76^5^0.10^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~309~^2.80^5^0.03^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~418~^1.86^5^0.07^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~203~^20.19^31^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~204~^4.42^33^0.18^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~205~^1.86^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~ -~13358~^~207~^4.60^7^0.03^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~255~^68.93^31^0.20^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~303~^2.85^19^0.15^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~309~^3.93^7^0.37^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~418~^1.73^37^0.07^~1~^^^^^^^^^^^~05/01/1990~ -~13359~^~203~^19.23^24^0.33^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~204~^10.96^24^2.33^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~205~^0.67^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~207~^0.91^24^0.07^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~255~^68.24^24^1.77^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~303~^2.40^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~309~^7.47^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~323~^0.15^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~418~^2.95^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13361~^~203~^28.40^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~204~^12.42^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~207~^1.12^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~255~^58.61^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~303~^2.82^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~309~^6.34^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~418~^2.73^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13362~^~203~^28.17^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~204~^12.53^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~207~^1.12^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~255~^58.70^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~303~^2.79^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~309~^6.27^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~418~^2.76^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~203~^28.61^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~204~^9.18^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~207~^1.16^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~255~^61.79^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~303~^2.69^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~309~^6.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~418~^2.63^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13364~^~203~^29.90^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~204~^8.37^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~207~^1.16^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~255~^61.02^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~303~^2.98^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~309~^6.91^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~418~^2.86^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13365~^~203~^29.51^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~204~^8.87^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~207~^1.16^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~255~^60.93^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~303~^2.98^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~309~^6.85^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~323~^0.23^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~418~^2.96^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~203~^29.88^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~204~^7.12^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~207~^1.18^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~255~^62.48^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~303~^2.88^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~309~^6.83^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~344~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~345~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~346~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~347~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~418~^3.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13367~^~203~^26.79^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~204~^19.52^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13367~^~207~^0.95^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~255~^51.54^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13367~^~303~^2.53^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~309~^5.96^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13367~^~418~^2.45^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~203~^29.75^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~204~^10.08^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13368~^~207~^1.04^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~255~^57.71^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13368~^~303~^2.81^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~309~^6.89^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13368~^~418~^2.60^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13369~^~203~^32.90^20^0.36^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~204~^8.01^20^0.50^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13369~^~207~^1.03^20^0.22^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~255~^58.90^20^0.39^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~303~^2.76^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~309~^7.61^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13369~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13369~^~418~^2.43^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13369~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13370~^~203~^33.26^20^0.34^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~204~^6.99^20^0.43^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13370~^~207~^1.04^20^0.05^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~255~^59.55^20^0.37^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~303~^2.82^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~309~^8.00^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13370~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13370~^~418~^2.42^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13370~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~203~^23.53^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~204~^28.50^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13371~^~207~^0.84^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~255~^46.05^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~303~^2.34^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~309~^5.83^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~418~^2.33^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~203~^28.05^11^0.48^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~204~^13.80^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13372~^~207~^0.98^10^0.06^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~255~^55.70^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~303~^2.79^9^0.13^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~309~^7.39^8^0.32^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~418~^2.58^11^0.42^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13373~^~203~^28.94^20^0.45^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~204~^19.17^20^0.89^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13373~^~207~^0.90^20^0.03^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~255~^51.90^20^0.65^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13373~^~303~^2.42^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~309~^6.66^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~323~^0.51^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2003~ -~13373~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~13373~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~13373~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~ -~13373~^~418~^2.13^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13373~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13375~^~203~^29.23^10^0.55^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~204~^17.56^10^1.15^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13375~^~207~^0.91^10^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~255~^53.44^10^0.88^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~303~^2.38^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~309~^6.87^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~323~^0.50^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13375~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13375~^~418~^1.93^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13375~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13377~^~203~^33.36^10^0.57^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~204~^7.67^10^0.37^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13377~^~207~^1.00^10^0.04^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~255~^58.83^10^0.65^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~303~^2.89^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~309~^7.79^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13377~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13377~^~418~^2.59^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13377~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13378~^~203~^33.37^10^0.44^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~204~^5.80^10^0.38^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13378~^~207~^1.01^10^0.05^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~255~^61.20^10^0.53^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~303~^2.77^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~309~^8.09^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13378~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13378~^~418~^2.25^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13378~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13379~^~203~^27.18^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~204~^24.14^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13379~^~207~^0.89^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~255~^47.92^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13379~^~303~^3.18^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~309~^8.58^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13379~^~418~^2.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13379~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13380~^~203~^26.39^22^1.40^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~204~^21.48^22^1.52^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13380~^~207~^1.14^22^0.26^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~255~^51.93^22^0.89^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~303~^2.68^4^0.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~309~^9.05^4^0.24^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~323~^0.09^4^7.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~418~^3.10^4^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~13380~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~203~^27.17^12^1.45^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~204~^19.02^12^1.81^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13381~^~207~^1.33^12^0.26^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~255~^53.39^12^1.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~303~^2.67^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~309~^9.28^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~323~^0.06^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~418~^2.88^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~13381~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13382~^~203~^31.06^11^0.77^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~204~^13.30^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13382~^~207~^0.99^11^0.03^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~255~^54.80^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13382~^~303~^3.68^10^0.20^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~309~^10.27^7^0.75^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13382~^~418~^2.47^11^0.32^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13382~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13383~^~203~^30.45^24^0.91^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~204~^11.14^24^1.25^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13383~^~207~^1.27^24^0.32^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~255~^57.85^24^1.21^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~303~^3.20^4^0.05^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~309~^11.21^4^0.30^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~323~^0.10^4^9.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~418~^3.50^4^0.13^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13383~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~203~^30.68^12^0.98^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~204~^9.44^12^1.34^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13384~^~207~^1.58^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~255~^58.79^12^1.31^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~303~^3.18^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~309~^11.49^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~323~^0.06^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~418~^3.22^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13384~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13386~^~203~^22.80^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~204~^30.49^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13386~^~207~^0.90^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~255~^46.10^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~303~^2.33^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~309~^5.76^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~418~^2.33^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~203~^23.48^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~204~^25.54^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13387~^~207~^0.93^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~255~^49.53^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~303~^2.40^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~309~^6.01^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~418~^2.37^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~203~^27.53^13^0.63^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~204~^13.40^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13388~^~207~^1.08^15^0.01^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~255~^57.90^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13388~^~303~^2.82^11^0.15^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~309~^7.46^8^0.49^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~13388~^~418~^2.61^15^0.45^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13388~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13389~^~203~^27.53^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~204~^15.00^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13389~^~207~^1.08^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~255~^56.80^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~303~^2.82^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~309~^7.46^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~418~^2.61^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~203~^27.53^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~204~^11.40^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13390~^~207~^1.08^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~255~^59.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~303~^2.82^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~309~^7.46^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~418~^2.61^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13391~^~203~^27.27^20^0.37^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~204~^14.74^20^0.78^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13391~^~207~^1.10^20^0.02^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~255~^57.52^20^0.59^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13391~^~303~^1.75^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~309~^4.93^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13391~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13391~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13391~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13391~^~418~^1.60^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13392~^~203~^24.73^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~204~^22.84^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13392~^~207~^1.08^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~255~^51.08^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~303~^2.28^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~309~^5.93^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~418~^3.00^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~203~^24.91^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~204~^19.79^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13393~^~207~^1.09^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~255~^52.79^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~303~^2.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~309~^5.98^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~418~^3.01^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13394~^~203~^29.41^20^0.31^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~204~^7.53^20^0.46^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13394~^~207~^1.18^20^0.02^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~255~^62.59^20^0.50^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13394~^~303~^1.87^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~309~^5.46^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13394~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13394~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13394~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13394~^~418~^1.64^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13395~^~203~^28.04^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~204~^11.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13395~^~207~^1.23^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~255~^58.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~303~^2.57^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~309~^6.99^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~418~^3.32^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~203~^28.04^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~204~^8.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13396~^~207~^1.23^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~255~^60.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~303~^2.57^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~309~^6.99^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~418~^3.32^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13398~^~203~^33.56^20^0.47^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~204~^8.86^20^0.48^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~207~^1.00^20^0.04^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~255~^57.33^20^0.43^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13398~^~303~^2.72^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~309~^5.60^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13398~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13398~^~418~^1.87^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13398~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13399~^~203~^27.42^20^0.29^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~204~^7.72^20^0.60^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13399~^~207~^1.09^20^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~255~^64.46^20^0.49^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~303~^2.24^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~309~^4.61^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13399~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13399~^~418~^1.53^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13399~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13401~^~203~^32.73^10^0.41^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~204~^10.00^10^0.69^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13401~^~207~^1.01^10^0.07^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~255~^56.74^10^0.49^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~303~^2.71^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~309~^5.41^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13401~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13401~^~418~^1.97^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13401~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13402~^~203~^26.76^10^0.41^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~204~^9.37^10^0.93^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13402~^~207~^1.06^10^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~255~^63.54^10^0.86^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~303~^2.20^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~309~^4.41^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13402~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13402~^~418~^1.61^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13402~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13404~^~203~^34.39^10^0.62^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~204~^7.72^10^0.46^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13404~^~207~^0.99^10^0.05^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~255~^57.92^10^0.69^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~303~^2.74^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~309~^5.78^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13404~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13404~^~418~^1.76^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13404~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13405~^~203~^28.08^10^0.32^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~204~^6.06^10^0.28^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13405~^~207~^1.12^10^0.05^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~255~^65.37^10^0.34^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~303~^2.28^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~309~^4.81^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13405~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13405~^~418~^1.44^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13405~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13407~^~203~^34.00^20^0.47^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~204~^7.67^20^0.42^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13407~^~207~^1.01^20^0.04^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~255~^58.09^20^0.43^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13407~^~303~^2.83^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~309~^5.82^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13407~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13407~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13407~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13407~^~418~^1.88^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13407~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13408~^~203~^27.76^20^0.28^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~204~^6.48^20^0.41^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13408~^~207~^1.10^20^0.03^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~255~^65.37^20^0.39^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~303~^2.33^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~309~^4.79^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13408~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13408~^~418~^1.53^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13408~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13410~^~203~^33.08^10^0.61^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~204~^9.03^10^0.55^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13410~^~207~^1.02^10^0.07^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~255~^57.36^10^0.48^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~303~^2.93^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~309~^5.79^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13410~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13410~^~418~^1.95^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13411~^~203~^27.23^10^0.40^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~204~^7.63^10^0.60^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13411~^~207~^1.07^10^0.04^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~255~^64.83^10^0.70^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~303~^2.40^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~309~^4.74^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13411~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13411~^~418~^1.61^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13411~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13413~^~203~^34.93^10^0.62^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~204~^6.30^10^0.16^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13413~^~207~^1.01^10^0.05^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~255~^58.82^10^0.65^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~303~^2.85^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~309~^5.97^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13413~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13413~^~418~^1.80^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13413~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13414~^~203~^28.29^10^0.34^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~204~^5.33^10^0.25^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13414~^~207~^1.13^10^0.05^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~255~^65.90^10^0.32^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~303~^2.35^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~309~^4.92^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13414~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13414~^~418~^1.45^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13414~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13415~^~203~^29.66^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13415~^~204~^4.46^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13415~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13415~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13415~^~255~^65.05^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13415~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13415~^~303~^1.84^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~309~^4.30^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~323~^0.30^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13415~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13415~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13415~^~418~^2.32^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13415~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13416~^~203~^29.79^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13416~^~204~^4.83^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13416~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13416~^~207~^1.19^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13416~^~255~^64.50^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13416~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~303~^1.86^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~309~^4.32^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~323~^0.31^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13416~^~418~^2.13^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13416~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13417~^~203~^29.45^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13417~^~204~^3.97^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13417~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13417~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13417~^~255~^65.92^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13417~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~303~^1.74^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~309~^4.25^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~323~^0.28^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13417~^~418~^2.60^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13417~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13418~^~203~^29.85^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13418~^~204~^3.90^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13418~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13418~^~207~^1.27^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13418~^~255~^65.35^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13418~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13418~^~303~^1.84^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~309~^4.33^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~323~^0.30^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13418~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13418~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13418~^~418~^2.32^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13418~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13419~^~203~^29.94^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13419~^~204~^4.26^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13419~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13419~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13419~^~255~^64.83^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13419~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~303~^1.86^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~309~^4.35^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~323~^0.34^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13419~^~418~^2.13^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13419~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13420~^~203~^29.52^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13420~^~204~^3.43^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13420~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13420~^~207~^1.19^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13420~^~255~^66.20^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13420~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~303~^1.74^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~309~^4.28^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~323~^0.28^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13420~^~418~^2.61^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13420~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13421~^~203~^26.79^20^0.22^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~204~^8.21^20^0.45^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13421~^~207~^1.11^20^0.02^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~255~^64.67^20^0.52^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13421~^~303~^2.18^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~309~^4.49^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13421~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13421~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13421~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13421~^~418~^1.49^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13421~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13422~^~203~^27.01^10^0.24^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~204~^8.90^10^0.74^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13422~^~207~^1.10^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~255~^63.80^10^0.73^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~303~^2.22^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~309~^4.44^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13422~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13422~^~418~^1.62^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13423~^~203~^26.57^10^0.48^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~204~^7.53^10^0.45^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13423~^~207~^1.12^10^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~255~^65.54^10^0.68^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~303~^2.15^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~309~^4.53^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13423~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13423~^~418~^1.36^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13423~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13424~^~203~^27.53^20^0.33^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~204~^6.20^20^0.36^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13424~^~207~^0.81^20^0.02^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~255~^66.75^20^0.46^~1~^~A~^^^^^^^^^^~01/01/2005~ -~13424~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~13424~^~303~^2.30^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~309~^4.73^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~323~^0.35^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13424~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13424~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13424~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13424~^~418~^1.52^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13425~^~203~^27.68^10^0.44^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~204~^6.42^10^0.55^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13425~^~207~^1.12^10^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~255~^65.62^10^0.59^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~303~^2.43^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~309~^4.81^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13425~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13425~^~418~^1.63^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13425~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13426~^~203~^27.37^10^0.51^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13426~^~204~^4.38^10^0.11^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13426~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13426~^~207~^1.16^10^0.04^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13426~^~255~^67.88^10^0.53^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13426~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~303~^2.26^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~309~^4.75^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~323~^0.34^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13426~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13426~^~418~^1.41^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13426~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13428~^~203~^35.62^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~204~^6.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13428~^~207~^1.72^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~255~^57.90^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13428~^~303~^3.27^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~309~^4.50^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13428~^~418~^2.68^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13428~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13430~^~203~^35.62^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~204~^7.09^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13430~^~207~^1.72^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~255~^57.31^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~303~^3.27^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~309~^4.50^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~418~^2.68^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~203~^35.62^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~204~^5.33^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13432~^~207~^1.72^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~255~^58.49^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~303~^3.27^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~309~^4.50^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~418~^2.68^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~203~^36.12^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~204~^5.80^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13436~^~207~^1.75^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~255~^58.10^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~303~^3.32^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~309~^4.56^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~418~^2.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~203~^36.12^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~204~^4.00^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13438~^~207~^1.75^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~255~^59.30^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~303~^3.32^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~309~^4.56^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~418~^2.70^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13439~^~203~^30.50^36^1.23^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~204~^8.91^36^1.23^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13439~^~207~^1.37^36^0.04^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~255~^60.38^36^0.70^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13439~^~303~^3.24^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~309~^4.21^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~323~^0.14^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~13439~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13439~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13439~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13439~^~418~^4.10^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13439~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13440~^~203~^30.21^24^1.24^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~204~^9.71^24^1.26^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13440~^~207~^1.38^24^0.05^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~255~^59.78^24^0.74^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~303~^3.32^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~309~^4.54^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~323~^0.12^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2013~ -~13440~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13440~^~418~^4.08^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13440~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13441~^~203~^30.93^12^1.26^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~204~^7.70^12^1.31^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13441~^~207~^1.36^12^0.05^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~255~^61.29^12^0.83^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~303~^3.02^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~309~^3.66^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~323~^0.10^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2013~ -~13441~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13441~^~418~^4.15^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13441~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13442~^~203~^30.70^36^1.16^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~204~^8.32^36^0.98^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13442~^~207~^1.38^36^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~255~^60.76^36^0.77^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13442~^~303~^3.59^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~309~^4.68^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~323~^0.28^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13442~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13442~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13442~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13442~^~418~^4.57^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13442~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13443~^~203~^30.45^24^1.17^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~204~^9.03^24^1.01^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13443~^~207~^1.39^24^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~255~^60.21^24^0.81^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~303~^4.12^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~309~^5.65^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~323~^0.28^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13443~^~418~^5.18^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13443~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13444~^~203~^31.09^12^1.19^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~204~^7.25^12^1.07^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13444~^~207~^1.37^12^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~255~^61.58^12^0.89^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~303~^3.11^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~309~^3.78^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~323~^0.25^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13444~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13444~^~418~^4.29^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13445~^~203~^28.57^36^0.18^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~204~^11.15^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13445~^~207~^1.12^36^0.02^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~255~^59.98^36^0.49^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13445~^~303~^3.41^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~309~^4.66^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~323~^0.14^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~13445~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13445~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13445~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13445~^~418~^4.25^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13446~^~203~^28.19^24^0.23^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~204~^12.51^24^0.45^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13446~^~207~^1.11^24^0.02^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~255~^58.83^24^0.55^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~303~^3.37^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~309~^4.61^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~323~^0.16^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~13446~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13446~^~418~^4.11^0^^~4~^~BFPN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13446~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13447~^~203~^29.16^12^0.31^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~204~^9.12^12^0.61^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13447~^~207~^1.14^12^0.02^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~255~^61.71^12^0.67^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~303~^3.23^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~309~^3.91^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~323~^0.08^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~13447~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13447~^~418~^4.48^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13447~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13448~^~203~^29.53^36^0.18^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~204~^8.41^36^0.34^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13448~^~207~^1.15^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~255~^61.74^36^0.30^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13448~^~303~^3.47^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~309~^4.52^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~323~^0.33^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13448~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13448~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13448~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13448~^~418~^4.39^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13448~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13449~^~203~^29.22^24^0.23^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~204~^9.52^24^0.39^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13449~^~207~^1.14^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~255~^60.74^24^0.38^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~303~^3.38^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~309~^4.41^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~323~^0.29^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13449~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13449~^~418~^4.30^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13449~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13450~^~203~^29.99^12^0.30^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~204~^6.74^12^0.49^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13450~^~207~^1.17^12^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~255~^63.25^12^0.50^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~303~^3.25^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~309~^3.95^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13450~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13450~^~418~^4.52^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13450~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13451~^~203~^29.33^20^0.39^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~204~^9.67^20^0.58^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13451~^~207~^1.26^20^0.03^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~255~^60.33^20^0.70^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13451~^~303~^1.89^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~309~^5.33^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~323~^0.42^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13451~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13451~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13451~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13451~^~418~^1.73^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13451~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~13452~^~203~^29.02^10^0.37^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~204~^10.54^10^0.96^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13452~^~207~^1.22^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~255~^59.68^10^1.10^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~303~^1.96^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~309~^5.21^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13452~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13452~^~418~^1.91^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13452~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13453~^~203~^29.65^10^0.71^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~204~^8.80^10^0.59^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13453~^~207~^1.30^10^0.05^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~255~^60.97^10^0.87^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~303~^1.83^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~309~^5.44^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~323~^0.42^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13453~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13453~^~418~^1.54^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13453~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13454~^~203~^30.55^20^0.42^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~204~^5.79^20^0.29^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~207~^1.31^20^0.03^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~255~^62.98^20^0.57^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~13454~^~303~^1.96^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~309~^5.71^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2003~ -~13454~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~13454~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13454~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13455~^~203~^30.29^10^0.51^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~204~^6.55^10^0.35^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13455~^~207~^1.27^10^0.03^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~255~^62.38^10^0.70^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~303~^2.07^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~309~^5.75^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13455~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13455~^~418~^1.89^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13455~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13456~^~203~^30.80^10^0.69^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~204~^5.03^10^0.34^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1990~ -~13456~^~207~^1.35^10^0.06^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~255~^63.58^10^0.91^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~309~^5.70^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13456~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13456~^~418~^1.47^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13456~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13459~^~203~^23.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~204~^19.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~255~^54.66^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~303~^2.94^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~309~^4.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~418~^2.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13459~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13460~^~203~^23.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~204~^20.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~255~^53.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~303~^2.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~309~^4.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~418~^2.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13460~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13463~^~203~^24.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~204~^17.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~207~^1.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~255~^55.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~303~^2.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~309~^4.51^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~418~^2.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13463~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13464~^~203~^22.32^36^0.33^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~204~^6.60^36^0.70^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2001~ -~13464~^~207~^1.02^36^0.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~255~^70.32^36^0.43^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~303~^2.07^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~309~^3.58^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~323~^0.26^0^^~4~^~BFFN~^~23386~^^^^^^^^^~07/01/2013~ -~13464~^~418~^1.95^6^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~203~^28.16^36^1.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~204~^10.32^36^0.78^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2001~ -~13465~^~207~^1.05^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~255~^61.05^36^0.53^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~303~^3.22^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~309~^4.67^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~323~^0.24^0^^~4~^~BFFN~^~23392~^^^^^^^^^~07/01/2013~ -~13465~^~418~^2.16^6^0.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13466~^~203~^26.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~204~^11.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~207~^1.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~255~^60.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~303~^3.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~309~^5.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~323~^0.14^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~418~^2.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13466~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13467~^~203~^25.51^8^0.58^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13467~^~204~^12.80^8^0.95^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13467~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13467~^~207~^1.17^8^0.13^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13467~^~255~^59.13^8^1.01^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13467~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13467~^~303~^3.24^30^0.12^~1~^~A~^^^2^3.11^3.36^1^1.64^4.82^~2~^~07/01/2001~ -~13467~^~309~^5.06^24^0.23^~1~^~A~^^^2^4.83^5.29^1^2.13^7.98^~2~^~07/01/2001~ -~13467~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13467~^~418~^2.27^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13467~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13468~^~203~^22.61^12^0.36^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~204~^5.41^12^0.76^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13468~^~207~^1.03^12^0.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~255~^71.46^12^0.50^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13468~^~303~^2.26^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~309~^3.52^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13468~^~418~^1.98^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~203~^28.92^12^1.06^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~204~^8.76^12^0.85^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13469~^~207~^1.10^12^0.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~255~^62.16^12^0.67^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13469~^~303~^3.44^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~309~^4.80^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13469~^~418~^2.19^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13470~^~203~^26.89^6^0.60^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~204~^8.81^6^1.05^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13470~^~207~^1.44^6^0.27^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~255~^62.19^6^1.01^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13470~^~303~^3.24^30^0.12^~1~^~A~^^^2^3.11^3.36^1^1.64^4.82^~2~^~07/01/2001~ -~13470~^~309~^5.06^24^0.23^~1~^~A~^^^2^4.83^5.29^1^2.13^7.98^~2~^~07/01/2001~ -~13470~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13470~^~418~^2.27^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13470~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13473~^~203~^24.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~204~^15.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~255~^57.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~303~^3.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~309~^4.67^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~418~^2.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13473~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13474~^~203~^24.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~204~^17.26^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~255~^56.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~303~^3.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~309~^4.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~418~^2.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13474~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13477~^~203~^24.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~204~^14.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~207~^1.12^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~255~^58.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~303~^3.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~309~^4.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~418~^2.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13477~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13478~^~203~^22.22^36^0.37^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~204~^6.50^36^0.42^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2001~ -~13478~^~207~^1.01^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~255~^70.73^36^0.21^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~303~^1.66^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~309~^3.88^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~323~^0.26^0^^~4~^~BFFN~^~23386~^^^^^^^^^~05/01/2013~ -~13478~^~418~^1.81^6^0.07^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~203~^27.86^36^0.67^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~204~^10.37^36^1.07^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2001~ -~13479~^~207~^1.05^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~255~^61.15^36^0.50^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~303~^3.57^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~309~^4.61^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~323~^0.23^0^^~4~^~BFFN~^~23394~^^^^^^^^^~05/01/2013~ -~13479~^~418~^1.96^6^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13481~^~203~^25.98^8^1.27^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~204~^9.61^8^0.41^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13481~^~207~^1.17^8^0.08^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~255~^62.50^8^0.44^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13481~^~303~^3.66^29^0.48^~1~^~A~^^^2^3.17^4.14^1^-2.50^9.81^~2~^~07/01/2001~ -~13481~^~309~^5.11^24^0.20^~1~^~A~^^^2^4.91^5.31^1^2.56^7.65^~2~^~07/01/2001~ -~13481~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13481~^~418~^2.27^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13481~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13482~^~203~^22.41^12^0.39^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~204~^5.34^12^0.50^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13482~^~207~^1.02^12^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~255~^71.86^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13482~^~303~^1.77^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~309~^4.01^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~323~^0.23^0^^~4~^~BFFN~^~23384~^^^^^^^^^~05/01/2013~ -~13482~^~418~^1.84^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~203~^28.45^12^0.71^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~204~^9.35^12^1.14^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13483~^~207~^1.09^12^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~255~^61.98^12^0.59^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13483~^~303~^3.65^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~309~^4.47^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~323~^0.24^0^^~4~^~BFFN~^~23393~^^^^^^^^^~05/01/2013~ -~13483~^~418~^2.07^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13484~^~203~^26.00^6^1.27^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13484~^~204~^7.36^6^0.71^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13484~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1995~ -~13484~^~207~^1.20^6^0.03^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13484~^~255~^63.73^6^0.75^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13484~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~ -~13484~^~303~^3.66^28^0.48^~1~^~A~^^^2^3.17^4.14^1^-2.50^9.81^~2~^~07/01/2001~ -~13484~^~309~^5.11^23^0.20^~1~^~A~^^^2^4.91^5.31^1^2.56^7.65^~2~^~07/01/2001~ -~13484~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13484~^~418~^2.27^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13484~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13485~^~203~^33.90^10^0.31^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~204~^5.92^10^0.29^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~207~^0.98^10^0.06^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~255~^59.92^10^0.58^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~303~^2.87^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~309~^8.38^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13485~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13485~^~418~^2.28^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13485~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13486~^~203~^20.48^20^0.22^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~204~^7.01^20^0.38^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~207~^1.00^20^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~255~^72.01^20^0.37^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~303~^1.69^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~309~^3.72^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13486~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13486~^~418~^1.48^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13486~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13487~^~203~^20.16^10^0.42^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~204~^7.73^10^0.58^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~207~^0.99^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~255~^71.40^10^0.55^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~303~^1.78^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~309~^3.68^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13487~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13487~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13487~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13488~^~203~^20.80^10^0.35^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~204~^6.28^10^0.41^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~207~^1.01^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~255~^72.62^10^0.45^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~303~^1.59^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~309~^3.75^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13488~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13488~^~418~^1.24^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13488~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13490~^~203~^29.93^10^0.39^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~204~^6.05^10^0.30^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~207~^1.19^10^0.02^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~255~^63.87^10^0.58^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~303~^1.84^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~309~^5.46^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13490~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13490~^~418~^1.43^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13491~^~203~^30.09^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13491~^~204~^3.77^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13491~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~207~^1.29^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13491~^~255~^64.28^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13491~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~303~^3.25^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~309~^5.15^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~323~^0.32^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13491~^~418~^2.28^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13491~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13492~^~203~^30.24^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13492~^~204~^4.11^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13492~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~207~^1.22^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13492~^~255~^64.37^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13492~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~303~^3.27^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~309~^5.25^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~323~^0.34^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13492~^~418~^2.30^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13492~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13493~^~203~^29.81^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13493~^~204~^3.37^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13493~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~207~^1.26^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13493~^~255~^65.87^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13493~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~303~^3.26^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~309~^4.92^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~323~^0.30^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13493~^~418~^2.26^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13493~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13494~^~203~^25.56^36^0.51^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~204~^17.86^36^1.04^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13494~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~207~^1.04^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~255~^55.78^36^1.11^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~303~^2.48^12^0.21^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13494~^~309~^5.95^12^0.22^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13494~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13494~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13495~^~203~^23.87^12^1.35^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~204~^15.37^12^2.14^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~207~^0.88^12^0.06^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~255~^58.37^12^2.88^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13495~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~303~^2.27^12^0.18^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13495~^~309~^5.84^12^0.22^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13495~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13495~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13496~^~203~^22.86^36^0.77^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13496~^~204~^15.54^36^0.98^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13496~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13496~^~207~^1.04^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13496~^~255~^59.36^36^0.49^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~13496~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~303~^2.41^12^0.23^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~309~^5.82^12^0.21^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13496~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~13496~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13497~^~203~^25.38^72^0.44^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~204~^18.66^107^0.49^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~207~^0.97^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~255~^55.85^107^0.59^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~303~^2.25^36^0.12^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~309~^6.14^36^0.23^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13497~^~418~^2.90^36^0.13^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13497~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13498~^~203~^14.35^72^0.27^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~13498~^~204~^30.00^72^^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~13498~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~207~^0.70^72^0.03^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~13498~^~255~^54.30^107^0.25^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~303~^1.64^36^0.08^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~309~^3.57^36^0.13^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~418~^2.07^36^0.09^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13498~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13499~^~203~^19.71^12^0.36^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~204~^8.54^12^2.36^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~207~^0.92^12^0.07^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~255~^70.62^12^1.79^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~303~^2.43^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~309~^7.76^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~418~^3.32^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13500~^~203~^28.15^36^1.30^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~204~^9.23^36^1.03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~207~^1.13^36^0.03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~255~^62.11^36^1.65^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~303~^3.14^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~309~^9.82^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~323~^0.14^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~418~^5.18^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~203~^28.28^24^1.32^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~204~^9.83^24^1.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~207~^1.04^24^0.03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~255~^61.73^24^1.68^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~303~^3.23^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~309~^9.85^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~323~^0.14^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~418~^5.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~203~^27.96^12^1.36^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~204~^8.34^12^1.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~207~^1.27^12^0.04^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~255~^62.67^12^1.74^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~303~^3.07^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~309~^9.88^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~418~^5.35^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~203~^20.36^36^0.38^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~204~^6.42^36^0.30^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13519~^~207~^1.10^36^0.21^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~255~^72.42^36^0.38^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~303~^2.51^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~309~^7.63^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~323~^0.18^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~418~^4.38^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~203~^20.35^24^0.41^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~204~^6.88^24^0.34^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13520~^~207~^1.00^24^0.21^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~255~^71.79^24^0.43^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~303~^2.52^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~309~^7.65^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~323~^0.17^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~418~^4.35^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~203~^20.39^12^0.47^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~204~^5.73^12^0.43^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~207~^1.25^12^0.22^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~255~^73.35^12^0.53^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~303~^2.51^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~309~^7.90^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~323~^0.20^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~418~^4.42^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~203~^21.47^36^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~204~^5.11^36^0.57^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~207~^1.03^36^0.11^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~255~^72.70^36^0.43^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~303~^2.06^6^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~309~^5.21^6^0.10^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~323~^0.14^6^2.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~418~^1.81^6^0.03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~203~^21.28^24^0.28^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~204~^5.75^24^0.58^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~207~^1.00^24^0.11^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~255~^72.21^24^0.44^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~303~^2.04^4^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~309~^5.15^4^0.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~323~^0.17^4^3.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~418~^1.73^4^0.04^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~203~^21.74^12^0.31^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~204~^4.14^12^0.60^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13597~^~207~^1.07^12^0.11^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~255~^73.43^12^0.47^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~303~^2.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~309~^5.30^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~418~^1.95^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13598~^~203~^27.59^35^1.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~204~^11.07^35^0.52^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~207~^1.11^35^0.03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~255~^61.04^35^1.85^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~303~^3.04^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~309~^9.48^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~323~^0.13^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~418~^5.04^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13647~^~203~^21.64^72^0.12^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~204~^4.09^72^0.24^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~207~^1.13^72^0.15^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~255~^73.17^72^0.38^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~303~^2.64^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~309~^6.86^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~323~^0.18^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~418~^2.76^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~203~^21.45^48^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~204~^4.35^48^0.25^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~205~^0.11^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~207~^1.14^48^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~255~^72.95^48^0.39^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~303~^2.69^4^0.02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~309~^6.81^4^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~323~^0.20^4^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~418~^2.69^4^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~203~^21.93^24^0.20^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~204~^3.70^24^0.27^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13649~^~207~^1.12^24^0.15^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~255~^73.51^24^0.41^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~303~^2.57^6^0.03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~309~^6.95^6^0.11^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~323~^0.16^6^4.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~418~^2.86^6^0.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13650~^~203~^27.51^24^1.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~204~^12.26^24^0.64^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~207~^1.02^24^0.04^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~255~^60.31^24^1.89^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~303~^3.11^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~309~^9.40^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~323~^0.14^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~418~^4.94^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~203~^19.18^36^0.68^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~204~^11.48^36^1.72^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13786~^~207~^0.97^36^0.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~255~^68.80^36^1.36^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~303~^2.08^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~309~^7.52^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~323~^0.19^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~418~^2.73^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~203~^19.14^24^0.69^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~204~^12.02^24^1.76^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~207~^0.98^24^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~255~^68.26^24^1.39^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~303~^2.08^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~309~^7.54^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~323~^0.21^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~418~^2.69^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~203~^19.25^12^0.71^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~204~^10.67^12^1.84^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13791~^~207~^0.95^12^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~255~^69.61^12^1.46^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~303~^2.12^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~309~^7.66^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~323~^0.14^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~418~^2.78^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13795~^~203~^20.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~204~^14.42^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~255~^64.81^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~303~^1.69^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~309~^3.99^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~418~^1.50^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~203~^26.11^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~204~^16.59^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~207~^1.01^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~255~^56.97^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~303~^2.20^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~309~^5.10^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~323~^0.31^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~418~^1.81^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13797~^~203~^19.79^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~204~^15.42^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~255~^63.98^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~303~^1.73^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~309~^3.97^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~323~^0.29^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~418~^1.61^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~203~^25.85^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~204~^17.68^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~207~^0.99^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~255~^55.96^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~303~^2.24^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~309~^5.06^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~323~^0.33^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~418~^1.90^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~203~^19.06^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~204~^12.40^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~207~^0.92^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~255~^61.88^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~303~^1.52^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~309~^3.84^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~418~^1.27^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~203~^26.06^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~204~^15.09^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~255~^58.68^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~303~^2.11^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~309~^4.89^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~418~^1.58^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13803~^~203~^18.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~204~^19.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~205~^0.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13803~^~207~^0.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~255~^61.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~303~^1.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~309~^3.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~418~^2.25^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13804~^~203~^25.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~204~^24.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13804~^~207~^0.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~255~^49.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~303~^2.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~309~^5.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~323~^0.19^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13804~^~418~^2.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13805~^~203~^17.94^20^0.38^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~204~^22.18^20^1.32^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13805~^~207~^0.81^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~255~^59.07^20^1.00^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13805~^~303~^1.59^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~309~^4.32^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13805~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~418~^1.54^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13805~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13805~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13806~^~203~^28.82^20^0.33^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~204~^18.42^20^0.74^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13806~^~207~^0.94^20^0.04^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~255~^52.48^20^0.58^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13806~^~303~^2.43^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~309~^6.69^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~323~^0.51^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13806~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~418~^2.12^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13806~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13806~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~203~^17.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~204~^20.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~205~^0.59^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13807~^~207~^0.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~255~^59.96^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~303~^1.69^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~309~^4.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~418~^2.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~203~^24.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~204~^27.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13808~^~207~^0.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~255~^48.30^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~303~^2.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~309~^6.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~418~^2.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13809~^~203~^19.23^5^0.17^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13809~^~204~^17.98^5^0.47^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13809~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13809~^~207~^0.86^5^0.03^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13809~^~255~^62.33^5^0.47^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13809~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13809~^~303~^1.67^4^0.08^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~309~^4.54^4^0.12^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13809~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~418~^1.65^4^0.10^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13809~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13810~^~203~^30.12^5^0.23^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~204~^19.22^5^0.44^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13810~^~207~^0.92^5^3.0e-03^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~255~^50.45^5^0.58^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13810~^~303~^2.53^4^0.09^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~309~^6.98^4^0.17^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~323~^0.53^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13810~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~418~^2.22^4^0.14^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13810~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13811~^~203~^19.14^3^0.21^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13811~^~204~^18.57^3^1.21^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13811~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13811~^~207~^0.87^3^0.05^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13811~^~255~^61.78^3^1.02^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13811~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13811~^~303~^1.73^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~309~^4.56^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13811~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~418~^1.79^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13811~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13812~^~203~^30.20^10^0.43^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~204~^19.93^10^0.24^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13812~^~207~^0.93^10^0.01^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~255~^49.35^10^0.45^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13812~^~303~^2.61^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~309~^6.87^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~323~^0.54^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13812~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~418~^2.46^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13812~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13813~^~203~^19.33^3^0.41^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13813~^~204~^17.39^3^0.87^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13813~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13813~^~207~^0.85^3^0.03^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13813~^~255~^62.88^3^0.72^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13813~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13813~^~303~^1.61^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~309~^4.52^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13813~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~418~^1.50^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13813~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13814~^~203~^30.05^3^0.26^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~204~^18.50^3^0.62^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13814~^~207~^0.91^3^0.01^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~255~^51.56^3^0.50^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13814~^~303~^2.46^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~309~^7.09^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~323~^0.52^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13814~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~418~^1.99^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13814~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13815~^~203~^17.16^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~204~^19.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13815~^~207~^0.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~255~^61.23^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~303~^2.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~309~^4.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~418~^3.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13815~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13816~^~203~^26.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~204~^25.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13816~^~207~^0.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~255~^47.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~303~^3.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~309~^8.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~323~^0.20^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2004~ -~13816~^~418~^2.29^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13816~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13817~^~203~^16.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~204~^21.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~205~^0.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13817~^~207~^0.81^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~255~^59.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~303~^2.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~309~^4.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~418~^3.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13818~^~203~^26.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~204~^27.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13818~^~207~^0.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~255~^46.32^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~303~^3.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~309~^8.23^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~323~^0.21^0^^~4~^~BFSN~^~13816~^^^^^^^^^~03/01/2007~ -~13818~^~418~^2.27^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13819~^~203~^17.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~204~^17.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13819~^~207~^0.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~255~^62.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~303~^2.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~309~^5.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~418~^3.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13819~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~203~^27.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~204~^22.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13820~^~207~^0.89^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~255~^49.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~303~^3.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~309~^8.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~418~^2.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13821~^~203~^26.65^36^1.02^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~204~^8.46^36^0.29^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~207~^1.00^36^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~255~^64.79^36^1.32^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~303~^2.47^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~309~^9.73^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~323~^0.12^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~418~^3.24^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~203~^26.41^24^1.05^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~204~^9.36^24^0.36^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~207~^0.99^24^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~255~^63.88^24^1.36^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~303~^2.52^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~309~^9.93^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~323~^0.14^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~418~^3.46^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~203~^27.02^12^1.12^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~204~^7.12^12^0.48^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~207~^1.01^12^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~255~^66.16^12^1.43^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~303~^2.42^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~309~^9.56^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~323~^0.08^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~418~^2.85^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13824~^~203~^16.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~204~^26.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13824~^~207~^0.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~255~^55.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~303~^1.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~309~^3.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~418~^2.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~203~^22.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~204~^26.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13825~^~207~^1.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~255~^48.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~303~^2.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~309~^5.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~418~^2.89^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~203~^22.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~204~^28.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13826~^~207~^0.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~255~^48.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~303~^2.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~309~^5.45^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~418~^2.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~203~^16.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~204~^27.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13827~^~207~^0.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~255~^53.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~303~^1.72^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~309~^3.66^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~418~^2.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~203~^22.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~204~^28.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13828~^~207~^1.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~255~^47.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~303~^2.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~309~^5.23^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~418~^2.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~203~^22.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~204~^29.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13829~^~207~^0.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~255~^46.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~303~^2.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~309~^5.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~323~^0.24^0^^~4~^~BFSN~^~13840~^^^^^^^^^~03/01/2007~ -~13829~^~418~^2.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13830~^~203~^16.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~204~^23.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13830~^~207~^0.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~255~^57.48^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~303~^1.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~309~^3.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~418~^2.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~203~^22.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~204~^24.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13831~^~207~^1.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~255~^50.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~303~^2.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~309~^5.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~418~^2.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~203~^23.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~204~^25.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13832~^~207~^1.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~255~^49.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~303~^2.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~309~^5.57^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~418~^2.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~203~^16.15^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~204~^31.66^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13833~^~207~^0.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~255~^51.51^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~303~^1.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~309~^3.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~418~^2.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~203~^21.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~204~^32.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13834~^~207~^0.96^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~255~^44.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~303~^2.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~309~^5.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~418~^2.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~203~^22.57^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~204~^33.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13835~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~255~^43.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~303~^2.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~309~^5.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~418~^2.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~203~^16.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~204~^27.29^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13838~^~207~^0.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~255~^54.51^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~303~^1.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~309~^3.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~418~^2.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~203~^21.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~204~^27.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13839~^~207~^1.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~255~^48.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~303~^2.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~309~^5.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~418~^2.89^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~203~^23.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~204~^28.51^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13840~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~255~^47.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~303~^2.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~309~^5.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~323~^0.23^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2004~ -~13840~^~418~^2.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13840~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13841~^~203~^16.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~204~^29.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13841~^~207~^0.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~255~^53.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~303~^1.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~309~^3.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~418~^2.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~203~^20.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~204~^31.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13842~^~207~^1.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~255~^45.96^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~303~^2.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~309~^4.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~418~^2.81^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~203~^22.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~204~^31.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13843~^~207~^0.89^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~255~^45.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~303~^2.30^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~309~^5.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~418~^2.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~203~^16.52^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~204~^24.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13844~^~207~^0.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~255~^56.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~303~^1.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~309~^3.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~418~^2.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~203~^21.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~204~^25.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13845~^~207~^1.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~255~^50.25^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~303~^2.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~309~^5.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~418~^2.89^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~203~^23.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~204~^25.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13846~^~207~^0.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~255~^49.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~303~^2.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~309~^5.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~418~^2.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~203~^15.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~204~^33.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13847~^~207~^0.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~255~^50.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~303~^1.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~309~^3.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~418~^2.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~203~^20.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~204~^34.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13848~^~207~^0.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~255~^43.48^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~303~^2.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~309~^4.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~418~^2.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~203~^22.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~204~^32.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13849~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~255~^44.49^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~303~^2.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~309~^5.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~418~^2.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13850~^~203~^19.33^20^0.22^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13850~^~204~^19.06^20^0.70^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13850~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13850~^~207~^0.90^20^0.01^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13850~^~255~^61.05^20^0.57^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13850~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~303~^1.39^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~309~^3.33^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~323~^0.42^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13850~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13850~^~418~^1.00^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~203~^25.85^20^0.46^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13851~^~204~^20.04^20^0.79^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13851~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13851~^~207~^1.05^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13851~^~255~^53.65^20^0.57^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13851~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~303~^1.66^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~309~^4.67^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13851~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13851~^~418~^1.52^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13851~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13852~^~203~^22.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~204~^27.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13852~^~207~^1.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~255~^48.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~303~^2.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~309~^4.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~418~^2.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13853~^~203~^19.09^10^0.36^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~204~^20.13^10^1.05^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13853~^~207~^0.90^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~255~^60.11^10^0.82^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~303~^1.38^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~309~^3.38^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13853~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13853~^~418~^1.06^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13854~^~203~^24.53^10^0.45^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~204~^22.09^10^1.05^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13854~^~207~^1.04^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~255~^52.93^10^0.89^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~303~^1.64^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~309~^4.37^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~323~^0.50^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13854~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13854~^~418~^1.62^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13855~^~203~^22.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~204~^29.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13855~^~207~^1.09^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~255~^47.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~303~^2.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~309~^4.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~418~^2.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13856~^~203~^19.56^10^0.26^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~204~^18.00^10^0.87^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13856~^~207~^0.89^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~255~^62.00^10^0.72^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~303~^1.40^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~309~^3.28^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13856~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13856~^~418~^0.93^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~203~^27.17^10^0.56^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~204~^18.00^10^0.77^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13857~^~207~^1.06^10^0.04^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~255~^54.36^10^0.68^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~303~^1.67^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~309~^4.97^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13857~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13857~^~418~^1.41^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13858~^~203~^22.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~204~^25.02^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13858~^~207~^1.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~255~^50.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~303~^2.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~309~^5.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~418~^2.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~203~^16.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~204~^29.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13859~^~207~^0.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~255~^53.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~303~^1.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~309~^3.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~418~^2.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~203~^24.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~204~^27.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13860~^~207~^1.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~255~^47.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~303~^2.23^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~309~^5.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~418~^2.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~203~^22.15^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~204~^35.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13861~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~255~^41.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~303~^1.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~309~^4.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~418~^2.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13862~^~203~^27.70^11^1.17^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~204~^9.29^11^0.89^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~207~^1.25^11^0.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~255~^62.15^11^1.97^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~303~^3.02^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~309~^9.71^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~418~^5.28^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~203~^20.16^36^0.34^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~204~^7.25^36^0.26^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~207~^1.09^36^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~255~^71.89^36^0.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~303~^2.49^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~309~^7.55^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~323~^0.17^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~418~^4.33^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13864~^~203~^20.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~204~^11.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13864~^~207~^0.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~255~^65.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~303~^1.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~309~^3.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~323~^0.18^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~13864~^~418~^2.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~203~^27.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~204~^12.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13865~^~207~^1.32^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~255~^56.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~303~^2.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~309~^4.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~323~^0.16^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13865~^~418~^3.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13866~^~203~^20.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~204~^10.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13866~^~207~^0.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~255~^66.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~303~^2.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~309~^3.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~418~^2.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~13866~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~203~^27.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~204~^11.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13867~^~207~^1.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~255~^58.49^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~303~^2.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~309~^4.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~418~^3.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13868~^~203~^20.70^20^0.19^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~204~^11.54^20^0.68^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13868~^~207~^1.01^20^0.01^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~255~^66.88^20^0.57^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~303~^1.74^4^0.10^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~309~^3.82^4^0.07^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~323~^0.35^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13868~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13868~^~418~^1.49^4^0.22^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13868~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13869~^~203~^32.76^5^0.13^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~204~^11.87^5^0.68^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13869~^~207~^0.98^5^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~255~^54.97^5^0.69^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~303~^2.67^4^0.07^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~309~^5.49^4^0.06^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~323~^0.48^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13869~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13869~^~418~^1.82^4^0.10^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13869~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13870~^~203~^26.41^20^0.28^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13870~^~204~^11.64^20^0.51^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13870~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13870~^~207~^1.05^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13870~^~255~^61.60^20^0.47^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13870~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~303~^2.16^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~309~^4.43^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13870~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13870~^~418~^1.47^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13870~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13871~^~203~^20.71^10^0.29^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~204~^12.15^10^0.99^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13871~^~207~^1.02^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~255~^66.32^10^0.77^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~303~^1.84^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~309~^3.80^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13871~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13871~^~418~^1.76^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13871~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13872~^~203~^32.85^3^0.32^~1~^~PAK~^^^^^^^^^^~09/01/2004~ -~13872~^~204~^12.56^3^1.21^~1~^~PAK~^^^^^^^^^^~09/01/2004~ -~13872~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13872~^~207~^0.95^3^0.04^~1~^~PAK~^^^^^^^^^^~09/01/2004~ -~13872~^~255~^54.27^3^1.07^~1~^~PAK~^^^^^^^^^^~09/01/2004~ -~13872~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~303~^2.70^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~309~^5.40^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13872~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13872~^~418~^1.97^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13872~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13873~^~203~^26.05^10^0.50^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13873~^~204~^12.44^10^0.89^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13873~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13873~^~207~^1.01^10^0.04^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13873~^~255~^61.09^10^0.78^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13873~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~303~^2.15^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~309~^4.31^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13873~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13873~^~418~^1.56^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13873~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13874~^~203~^20.68^10^0.28^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~204~^10.93^10^0.94^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13874~^~207~^0.99^10^0.01^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~255~^67.44^10^0.85^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~303~^1.63^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~309~^3.85^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~323~^0.35^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13874~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13874~^~418~^1.23^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13874~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13875~^~203~^32.67^3^0.31^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13875~^~204~^11.19^3^0.19^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13875~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13875~^~207~^1.01^3^8.0e-03^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13875~^~255~^55.67^3^0.57^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13875~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~303~^2.64^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~309~^5.58^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~323~^0.47^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13875~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13875~^~418~^1.67^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13875~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13876~^~203~^26.77^10^0.21^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13876~^~204~^10.85^10^0.44^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13876~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13876~^~207~^1.08^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13876~^~255~^62.10^10^0.50^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13876~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~303~^2.16^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~309~^4.56^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13876~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13876~^~418~^1.37^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13876~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13877~^~203~^21.49^20^0.24^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~204~^8.24^20^0.62^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13877~^~207~^1.01^20^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~255~^69.31^20^0.49^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~303~^1.81^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~309~^3.98^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13877~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13877~^~418~^1.55^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13877~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13878~^~203~^28.31^20^0.30^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13878~^~204~^9.65^20^0.52^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13878~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13878~^~207~^1.10^20^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13878~^~255~^61.97^20^0.38^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13878~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~303~^2.29^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~309~^4.70^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13878~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13878~^~418~^1.57^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13878~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13879~^~203~^21.68^10^0.35^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~204~^8.91^10^0.89^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13879~^~207~^1.03^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~255~^68.57^10^0.69^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~309~^3.97^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13879~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13879~^~418~^1.84^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13879~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13880~^~203~^28.48^10^0.43^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13880~^~204~^10.05^10^0.88^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13880~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13880~^~207~^1.06^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13880~^~255~^61.36^10^0.65^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13880~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~303~^2.33^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~309~^4.65^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13880~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13880~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13880~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13881~^~203~^21.30^10^0.33^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~204~^7.57^10^0.86^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~205~^0.08^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~13881~^~207~^0.99^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~255~^70.06^10^0.63^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~303~^1.69^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~309~^3.98^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~323~^0.32^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13881~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13881~^~418~^1.27^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13881~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13882~^~203~^28.13^10^0.44^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~204~^9.26^10^0.56^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13882~^~207~^1.13^10^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~255~^62.58^10^0.35^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~303~^2.24^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~309~^4.74^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13882~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13882~^~418~^1.44^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13882~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~203~^19.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~204~^11.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13883~^~207~^0.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~255~^66.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~303~^2.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~309~^4.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~418~^3.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13884~^~203~^27.45^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~204~^11.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13884~^~207~^1.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~255~^61.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~303~^2.81^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~309~^6.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~323~^0.17^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2004~ -~13884~^~418~^2.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13884~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13885~^~203~^19.48^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~204~^12.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13885~^~207~^0.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~255~^65.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~303~^1.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~309~^4.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~418~^3.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13886~^~203~^27.27^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~204~^12.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13886~^~207~^1.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~255~^60.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~303~^2.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~309~^6.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~323~^0.18^0^^~4~^~BFSN~^~13884~^^^^^^^^^~03/01/2007~ -~13886~^~418~^2.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13887~^~203~^19.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~204~^10.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13887~^~207~^0.96^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~255~^66.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~303~^2.02^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~309~^4.45^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~418~^3.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13888~^~203~^27.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~204~^10.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13888~^~207~^1.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~255~^62.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~303~^2.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~309~^6.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~323~^0.14^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13888~^~418~^2.81^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13889~^~203~^20.07^24^0.38^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~204~^7.94^24^0.32^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13889~^~207~^0.99^24^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~255~^71.12^24^0.55^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~303~^2.50^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~309~^7.53^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~323~^0.16^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~418~^4.29^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13890~^~203~^33.93^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~204~^8.33^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~205~^2.03^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~207~^1.53^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~255~^54.18^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~303~^3.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~309~^4.58^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~323~^0.17^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13890~^~418~^3.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13891~^~203~^22.06^20^0.15^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~204~^7.93^20^0.38^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13891~^~207~^1.10^20^0.01^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~255~^69.04^20^0.32^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~303~^1.85^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~309~^4.08^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13891~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13891~^~418~^1.59^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13891~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13892~^~203~^34.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~204~^10.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13892~^~207~^1.66^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~255~^54.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~303~^3.16^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~309~^4.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~323~^0.17^0^^~4~^~BFNN~^^^^^^^^^^~11/01/2004~ -~13892~^~418~^2.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13892~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13893~^~203~^30.67^20^0.31^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13893~^~204~^9.00^20^0.46^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13893~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13893~^~207~^1.16^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13893~^~255~^59.59^20^0.60^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13893~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~303~^2.53^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~309~^5.20^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13893~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13893~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13893~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13894~^~203~^21.94^10^0.19^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~204~^8.19^10^0.58^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13894~^~207~^1.11^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~255~^68.80^10^0.51^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~303~^1.97^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~309~^4.06^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13894~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13894~^~418~^1.86^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13894~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~203~^34.09^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~204~^11.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13895~^~207~^1.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~255~^53.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~303~^3.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~309~^4.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~418~^2.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13896~^~203~^30.70^10^0.37^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13896~^~204~^10.27^10^0.34^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13896~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13896~^~207~^1.18^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13896~^~255~^58.46^10^0.87^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13896~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~303~^2.54^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~309~^5.09^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13896~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13896~^~418~^1.84^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13896~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13897~^~203~^32.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~204~^13.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13897~^~207~^1.45^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~255~^52.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~303~^2.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~309~^4.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~323~^0.18^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~ -~13897~^~418~^3.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13898~^~203~^22.18^10^0.24^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~204~^7.68^10^0.52^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13898~^~207~^1.08^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~255~^69.29^10^0.42^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~303~^1.74^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~309~^4.10^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13898~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13898~^~418~^1.32^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13898~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~203~^34.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~204~^8.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13899~^~207~^1.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~255~^55.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~303~^3.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~309~^4.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~418~^2.64^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13900~^~203~^30.63^10^0.51^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13900~^~204~^7.73^10^0.65^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13900~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13900~^~207~^1.14^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13900~^~255~^60.72^10^0.72^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13900~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~303~^2.52^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~309~^5.31^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~323~^0.42^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13900~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13900~^~418~^1.57^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13900~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~203~^22.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~204~^8.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13901~^~207~^1.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~255~^68.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~303~^2.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~309~^2.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~418~^2.79^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~203~^31.27^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~204~^10.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13902~^~207~^1.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~255~^59.51^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~303~^2.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~309~^5.49^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~418~^2.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13903~^~203~^20.28^12^0.45^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~204~^6.21^12^0.43^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13903~^~207~^1.24^12^0.22^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~255~^73.04^12^0.64^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~303~^2.49^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~309~^7.84^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~323~^0.20^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~418~^4.39^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~203~^20.32^36^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~204~^9.29^36^0.70^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~207~^0.98^36^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~255~^69.89^36^0.30^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~303~^2.00^6^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~309~^4.98^6^0.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~323~^0.14^6^2.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~418~^1.76^6^0.03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13905~^~203~^20.36^24^0.30^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~204~^14.58^24^0.41^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13905~^~207~^0.93^24^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~255~^64.12^24^0.79^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~303~^1.91^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~309~^3.19^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~323~^0.23^0^^~4~^~BFSN~^~13911~^^^^^^^^^~03/01/2013~ -~13905~^~418~^1.80^4^0.05^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13905~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~203~^24.85^24^0.69^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~204~^19.78^24^0.35^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13906~^~207~^0.95^24^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~255~^54.76^24^0.85^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~303~^2.95^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~309~^4.09^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~323~^0.34^0^^~4~^~BFFN~^~13911~^^^^^^^^^~03/01/2013~ -~13906~^~418~^2.01^4^0.04^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13906~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~203~^20.00^24^0.40^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~204~^15.83^24^0.73^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13907~^~207~^0.91^24^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~255~^63.43^24^0.75^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~303~^1.64^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~309~^3.31^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~323~^0.27^0^^~4~^~BFFN~^~13911~^^^^^^^^^~03/01/2013~ -~13907~^~418~^1.66^4^0.07^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13907~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~203~^24.21^24^0.44^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~204~^21.13^24^0.79^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13908~^~207~^0.94^24^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~255~^53.91^24^0.82^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~303~^3.24^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~309~^4.02^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~323~^0.25^0^^~4~^~BFSN~^~13912~^^^^^^^^^~03/01/2013~ -~13908~^~418~^1.79^4^0.05^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13908~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13909~^~203~^20.61^5^0.13^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~204~^15.49^5^0.32^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13909~^~207~^0.90^5^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~255~^63.43^5^0.48^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~303~^1.47^4^0.08^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~309~^3.53^4^0.14^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13909~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13909~^~418~^1.06^4^0.06^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13909~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13910~^~203~^26.44^5^0.17^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~204~^16.78^5^0.86^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13910~^~207~^1.03^5^0.01^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~255~^56.48^5^0.82^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~303~^1.69^4^0.06^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~309~^4.75^4^0.09^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13910~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13910~^~418~^1.56^4^0.09^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13910~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13911~^~203~^19.32^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~204~^17.10^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13911~^~207~^0.79^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~255~^61.49^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~303~^1.61^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~309~^3.20^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13911~^~418~^2.79^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13912~^~203~^26.16^3^0.13^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~204~^18.45^3^0.61^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13912~^~207~^1.02^3^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~255~^54.99^3^0.72^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~303~^1.75^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~309~^4.65^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~323~^0.48^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13912~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13912~^~418~^1.73^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13912~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13913~^~203~^20.59^3^0.22^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~204~^15.04^3^0.53^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13913~^~207~^0.87^3^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~255~^63.95^3^0.59^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~303~^1.47^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~309~^3.45^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13913~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13913~^~418~^0.98^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13913~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13914~^~203~^26.72^3^0.16^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~204~^15.11^3^0.18^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13914~^~207~^1.04^3^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~255~^57.96^3^0.34^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~303~^1.63^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~309~^4.85^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~13914~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13914~^~418~^1.38^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13914~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13915~^~203~^19.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~204~^22.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13915~^~207~^0.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~255~^58.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~303~^1.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~309~^3.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~418~^2.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~203~^25.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~204~^22.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13916~^~207~^1.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~255~^51.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~303~^2.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~309~^4.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~418~^1.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13917~^~203~^19.61^21^0.26^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~204~^18.16^21^1.00^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13917~^~207~^0.92^21^0.01^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~255~^61.52^21^0.83^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~303~^1.42^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~309~^3.41^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13917~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13917~^~418~^1.01^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13917~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13918~^~203~^26.46^19^0.32^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~204~^17.12^19^0.66^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13918~^~207~^1.06^19^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~255~^56.04^19^0.57^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~303~^1.69^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~309~^4.76^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~323~^0.47^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13918~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13918~^~418~^1.56^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13918~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13919~^~203~^23.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~204~^24.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13919~^~207~^1.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~255~^48.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~303~^3.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~309~^4.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~418~^2.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13920~^~203~^19.82^11^0.41^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~204~^17.88^11^1.31^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13920~^~207~^0.94^11^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~255~^61.69^11^0.98^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~303~^1.43^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~309~^3.50^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13920~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13920~^~418~^1.10^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13920~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13921~^~203~^26.43^9^0.56^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~204~^17.78^9^0.75^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13921~^~207~^1.01^9^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~255~^55.53^9^0.57^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~303~^1.76^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~309~^4.67^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~323~^0.47^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13921~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13921~^~418~^1.74^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13921~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~203~^23.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~204~^25.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13922~^~207~^1.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~255~^47.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~303~^3.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~309~^4.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~418~^3.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13923~^~203~^19.37^10^0.34^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~204~^18.46^10^1.61^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13923~^~207~^0.90^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~255~^61.33^10^1.42^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~303~^1.42^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~309~^3.32^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13923~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13923~^~418~^0.92^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13923~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13924~^~203~^26.48^10^0.38^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13924~^~204~^16.53^10^1.06^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13924~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13924~^~207~^1.09^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13924~^~255~^56.50^10^0.96^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13924~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~303~^1.63^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~309~^4.85^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13924~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13924~^~418~^1.37^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13924~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~203~^23.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~204~^23.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13925~^~207~^1.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~255~^48.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~303~^3.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~309~^4.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~418~^2.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~203~^18.15^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~204~^21.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13926~^~207~^0.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~255~^59.52^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~303~^2.35^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~309~^3.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~418~^2.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~203~^25.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~204~^22.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13927~^~207~^1.16^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~255~^51.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~303~^3.15^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~309~^4.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~418~^2.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13928~^~203~^24.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~204~^26.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13928~^~207~^1.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~255~^48.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~303~^3.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~309~^4.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~323~^0.55^0^^~4~^~BFSN~^~13918~^^^^^^^^^~03/01/2007~ -~13928~^~418~^2.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13929~^~203~^20.30^20^0.17^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~204~^12.71^20^0.63^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13929~^~207~^1.03^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~255~^66.09^20^0.47^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~303~^1.48^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~309~^3.55^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13929~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13929~^~418~^1.05^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13929~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13930~^~203~^26.96^20^0.24^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~204~^14.23^20^0.63^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13930~^~207~^1.11^20^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~255~^58.36^20^0.64^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~303~^1.73^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~309~^4.87^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13930~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13930~^~418~^1.59^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13930~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13931~^~203~^19.92^10^0.24^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13931~^~204~^14.28^10^0.88^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13931~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13931~^~207~^0.97^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13931~^~255~^64.87^10^0.61^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13931~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~303~^1.46^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~309~^3.57^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13931~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13931~^~418~^1.11^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13931~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13932~^~203~^26.80^10^0.24^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13932~^~204~^15.75^10^0.95^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13932~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13932~^~207~^1.10^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13932~^~255~^56.81^10^0.92^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13932~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~303~^1.81^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~309~^4.81^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13932~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13932~^~418~^1.77^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13932~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13933~^~203~^28.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~204~^21.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13933~^~207~^1.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~255~^49.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~303~^3.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~309~^5.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~323~^0.54^0^^~4~^~BFSN~^~13930~^^^^^^^^^~03/01/2007~ -~13933~^~418~^3.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13934~^~203~^20.68^10^0.19^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~204~^11.13^10^0.61^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13934~^~207~^1.08^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~255~^67.32^10^0.50^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~303~^1.51^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~309~^3.54^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~323~^0.35^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13934~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13934~^~418~^0.98^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13934~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13935~^~203~^27.12^10^0.42^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~204~^12.71^10^0.52^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~13935~^~207~^1.11^10^0.01^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~255~^59.92^10^0.60^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~303~^1.66^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~309~^4.93^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~13935~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~13935~^~418~^1.41^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13935~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13937~^~203~^25.95^8^0.76^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~204~^6.69^8^0.40^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13937~^~207~^1.13^8^0.03^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~255~^64.39^8^0.67^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13937~^~303~^3.20^0^^~4~^~BFNY~^^^^^^^^^^~07/01/2001~ -~13937~^~309~^6.39^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13937~^~323~^0.17^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13937~^~418~^2.97^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13937~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~203~^28.09^6^0.71^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~204~^5.82^6^0.29^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13940~^~207~^1.30^6^0.09^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~255~^64.21^6^0.89^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13940~^~303~^3.19^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~ -~13940~^~309~^6.39^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13940~^~323~^0.17^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13940~^~418~^3.22^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13943~^~203~^28.54^48^0.32^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~204~^6.25^48^0.51^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13943~^~207~^1.22^48^0.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~255~^64.21^48^0.53^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13943~^~303~^2.95^4^0.14^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~309~^8.03^4^0.25^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~323~^0.12^4^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~418~^3.30^4^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13943~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~203~^28.71^24^0.39^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~204~^5.17^24^0.55^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13946~^~207~^1.25^24^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~255~^65.24^24^0.59^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13946~^~303~^2.94^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~309~^8.43^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~418~^3.62^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13948~^~203~^27.66^20^0.32^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~204~^8.23^20^0.45^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~207~^1.09^20^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~255~^64.17^20^0.48^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~303~^1.74^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~309~^4.90^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13948~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13948~^~418~^1.63^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13948~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13949~^~203~^27.78^10^0.54^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~204~^7.15^10^0.61^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~207~^1.13^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~255~^65.01^10^0.84^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~303~^1.68^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~309~^5.01^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13949~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13949~^~418~^1.44^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13949~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13950~^~203~^33.59^10^0.29^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~204~^6.77^10^0.35^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~207~^0.98^10^0.06^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~255~^59.38^10^0.60^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~303~^2.78^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~309~^8.01^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13950~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13950~^~418~^1.92^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13950~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13951~^~203~^27.95^10^0.45^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~204~^12.71^10^0.52^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~207~^1.12^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~255~^59.16^10^0.46^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~303~^1.70^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~309~^5.06^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13951~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13951~^~418~^1.45^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~203~^27.27^20^0.37^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~204~^14.74^20^0.78^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2003~ -~13952~^~207~^1.10^20^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~255~^57.52^20^0.59^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~303~^1.75^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~309~^4.93^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13952~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13952~^~418~^1.60^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~203~^26.05^20^0.34^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~204~^11.07^20^0.73^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~207~^1.05^20^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~255~^62.63^20^0.56^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~303~^1.66^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~309~^4.67^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13953~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13953~^~418~^1.53^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13953~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13954~^~203~^20.64^19^0.19^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~204~^8.55^19^0.79^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~207~^1.03^19^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~255~^70.08^19^0.86^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~303~^1.49^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~309~^3.58^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~323~^0.32^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13954~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13954~^~418~^1.06^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13954~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13955~^~203~^25.66^10^0.51^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~204~^12.36^10^1.15^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~207~^1.03^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~255~^61.82^10^0.89^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~303~^1.70^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~309~^4.52^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13955~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13955~^~418~^1.69^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13955~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13956~^~203~^20.64^9^0.36^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~204~^9.51^9^1.32^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~207~^1.00^9^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~255~^69.37^9^1.31^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~303~^1.47^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~309~^3.61^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13956~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13956~^~418~^1.15^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13956~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13957~^~203~^26.44^10^0.44^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~204~^9.78^10^0.73^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~207~^1.06^10^0.04^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~255~^63.45^10^0.63^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~303~^1.62^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~309~^4.82^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13957~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13957~^~418~^1.37^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13957~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13958~^~203~^20.64^10^0.20^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~204~^7.68^10^0.91^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~207~^1.06^10^0.03^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~255~^70.73^10^1.15^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~303~^1.51^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~309~^3.54^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13958~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13958~^~418~^0.98^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13958~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13959~^~203~^29.96^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13959~^~204~^4.28^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13959~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~207~^1.24^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13959~^~255~^64.68^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13959~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~303~^3.24^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~309~^5.12^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~323~^0.32^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13959~^~418~^2.28^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13959~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~203~^25.74^8^0.25^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~204~^5.69^8^0.48^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13961~^~207~^1.50^8^0.15^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~255~^65.59^8^0.49^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13961~^~303~^3.02^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13961~^~309~^7.83^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~323~^0.16^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13961~^~418~^3.37^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~203~^26.13^6^0.55^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~204~^5.02^6^0.53^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13963~^~207~^1.15^6^0.04^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~255~^67.26^6^0.34^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~13963~^~303~^2.80^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13963~^~309~^7.83^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~323~^0.16^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13963~^~418~^3.42^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~203~^26.11^8^0.43^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~204~^11.65^8^0.87^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13965~^~207~^1.03^8^0.03^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~255~^61.63^8^0.75^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13965~^~303~^2.81^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13965~^~309~^8.92^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~323~^0.18^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13965~^~418~^3.42^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~203~^26.16^6^0.93^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~204~^8.00^6^0.79^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13967~^~207~^1.21^6^0.07^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~255~^64.32^6^0.67^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13967~^~303~^2.80^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13967~^~309~^8.92^4^0.00^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~323~^0.16^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13967~^~418~^3.78^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13968~^~203~^30.12^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13968~^~204~^4.62^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13968~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13968~^~255~^64.09^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13968~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~303~^3.26^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~309~^5.22^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~323~^0.34^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13968~^~418~^2.30^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13968~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13969~^~203~^29.70^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13969~^~204~^3.85^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13969~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~207~^1.25^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13969~^~255~^65.58^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~13969~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~303~^3.25^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~309~^4.89^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~323~^0.29^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13969~^~418~^2.25^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13969~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13970~^~203~^21.22^20^0.20^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~204~^7.17^20^0.49^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~207~^1.00^20^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~255~^70.73^20^0.51^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~303~^1.55^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~309~^3.70^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13970~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13970~^~418~^1.09^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13970~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13971~^~203~^21.22^10^0.31^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~204~^6.06^10^0.39^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~207~^0.98^10^0.02^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~255~^71.99^10^0.53^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~303~^1.54^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~309~^3.60^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~13971~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~ -~13971~^~418~^1.01^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13971~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13972~^~203~^20.61^36^0.37^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~204~^6.01^36^0.46^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13972~^~207~^1.03^36^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~255~^72.48^36^0.59^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~303~^2.18^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~309~^8.21^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~323~^0.20^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~418~^2.95^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~203~^20.67^24^0.40^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~204~^6.21^24^0.49^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13973~^~207~^1.05^24^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~255~^72.16^24^0.63^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~303~^2.18^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~309~^8.25^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~323~^0.23^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~418~^2.91^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~203~^20.52^12^0.44^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~204~^5.71^12^0.56^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13974~^~207~^1.01^12^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~255~^72.96^12^0.71^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~303~^2.21^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~309~^8.29^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~323~^0.15^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~418~^2.98^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13975~^~203~^20.15^24^0.24^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~204~^9.86^24^0.78^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~207~^0.96^24^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~255~^69.47^24^0.37^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~303~^1.98^4^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~309~^4.93^4^0.13^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~323~^0.16^4^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~418~^1.68^4^0.03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13977~^~203~^26.66^7^0.67^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~204~^10.06^7^0.95^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13977~^~207~^1.09^7^0.03^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~255~^61.77^7^0.80^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13977~^~303~^2.83^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~309~^7.43^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13977~^~323~^0.11^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~ -~13977~^~418~^3.80^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13977~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~203~^24.18^7^0.88^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~204~^14.37^7^1.51^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~13979~^~207~^0.95^7^0.11^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~255~^59.17^7^0.89^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13979~^~303~^2.66^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~309~^5.72^2^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13979~^~323~^0.11^0^^~4~^~NR~^^^^^^^^^^~05/01/2001~ -~13979~^~418~^4.30^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13980~^~203~^28.84^24^0.42^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~204~^14.95^24^2.42^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13980~^~207~^0.90^24^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~255~^55.94^24^2.33^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~303~^3.19^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~309~^11.95^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~418~^4.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~203~^28.79^12^0.56^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~204~^12.08^12^2.49^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13981~^~207~^0.93^12^0.10^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~255~^58.71^12^2.40^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~303~^3.21^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~309~^12.28^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~323~^0.07^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~418~^3.66^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~203~^28.82^36^0.34^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~204~^13.80^36^2.39^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13982~^~207~^0.91^36^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~255~^57.05^36^2.29^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~303~^3.20^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~309~^11.99^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~323~^0.09^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~418~^3.92^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13983~^~203~^20.57^12^0.30^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~204~^8.45^12^0.91^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~207~^1.01^12^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~255~^70.52^12^0.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~303~^2.02^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~309~^5.05^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~418~^1.88^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13985~^~203~^26.75^20^0.31^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~204~^8.34^20^0.58^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~13985~^~207~^1.08^20^0.02^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~255~^64.67^20^0.50^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~13985~^~303~^1.69^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~309~^4.93^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~09/01/2003~ -~13985~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2003~ -~13985~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2003~ -~13985~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2003~ -~13985~^~418~^1.53^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13985~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~14003~^~203~^0.46^588^7.0e-03^~1~^~A~^^^1^0.20^1.55^587^0.44^0.47^~4~^~03/01/2005~ -~14003~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~205~^3.55^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14003~^~207~^0.16^588^2.0e-03^~1~^~A~^^^1^0.05^0.58^587^0.15^0.16^~4~^~03/01/2005~ -~14003~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~255~^91.96^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14003~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2004~ -~14003~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~303~^0.02^3^4.0e-03^~1~^~A~^^^1^0.01^0.03^2^4.0e-03^0.04^~1, 2, 3~^~04/01/2004~ -~14003~^~309~^0.01^3^1.0e-03^~1~^~A~^^^1^0.00^0.01^2^2.0e-03^0.01^~2, 3~^~04/01/2004~ -~14003~^~323~^0.00^5^0.00^~1~^~A~^^^^0.00^0.00^^^^^~11/01/2002~ -~14003~^~341~^0.00^5^0.00^~1~^~A~^^^^0.00^0.00^^^^^~11/01/2002~ -~14003~^~342~^0.00^5^0.00^~1~^~A~^^^^0.00^0.00^^^^^~11/01/2002~ -~14003~^~343~^0.00^5^0.00^~1~^~A~^^^^0.00^0.00^^^^^~11/01/2002~ -~14003~^~418~^0.02^33^1.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14004~^~203~^0.36^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~205~^2.97^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~207~^0.11^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~209~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~211~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~212~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~214~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~255~^92.77^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~309~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14005~^~203~^0.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~205~^0.87^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~207~^0.08^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~209~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~211~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~212~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~214~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~255~^95.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~309~^0.01^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14006~^~203~^0.24^167^5.0e-03^~1~^~A~^^^1^0.14^0.51^166^0.23^0.25^~4~^~04/01/2005~ -~14006~^~204~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~205~^1.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14006~^~207~^0.09^167^2.0e-03^~1~^~A~^^^1^0.05^0.19^166^0.09^0.09^~4~^~04/01/2005~ -~14006~^~209~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~211~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.14^3^0.03^0.14^~1, 2, 3~^~04/01/2004~ -~14006~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~255~^94.88^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~14006~^~269~^0.09^4^0.01^~1~^~A~^^^1^0.07^0.14^3^0.03^0.14^~2, 3~^~04/01/2004~ -~14006~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~303~^0.03^4^6.0e-03^~1~^~A~^^^1^0.01^0.04^3^6.0e-03^0.04^~1, 2, 3~^~04/01/2004~ -~14006~^~309~^0.01^4^1.0e-03^~1~^~A~^^^1^0.01^0.01^3^6.0e-03^0.01^~2, 3~^~04/01/2004~ -~14006~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14006~^~418~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~09/01/2005~ -~14006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14007~^~203~^0.25^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~205~^1.30^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14007~^~207~^0.11^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~209~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~211~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~212~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~214~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~255~^95.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~309~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14009~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~205~^15.70^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~255~^74.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~303~^0.01^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14009~^~309~^0.03^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14010~^~203~^0.06^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~204~^0.06^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~205~^6.94^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~207~^0.08^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~255~^69.74^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~269~^5.58^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~14010~^~303~^0.09^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~309~^0.04^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~323~^0.03^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~14010~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14013~^~203~^0.17^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~205~^0.73^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~207~^0.06^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~209~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~211~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~212~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~214~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~255~^95.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~309~^0.01^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14015~^~203~^0.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~204~^7.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~205~^27.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14015~^~207~^0.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~255~^54.90^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~303~^0.03^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~309~^0.20^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14016~^~203~^0.42^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~204~^1.04^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14016~^~205~^6.59^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14016~^~207~^0.32^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14016~^~255~^91.80^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~269~^6.25^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~303~^0.30^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~309~^0.63^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~323~^2.81^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~418~^1.25^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~573~^2.81^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14016~^~578~^1.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14017~^~203~^0.42^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~204~^1.88^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~205~^22.66^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~207~^0.14^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~255~^64.99^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~269~^22.33^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~303~^0.21^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~309~^0.13^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~323~^0.02^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14019~^~203~^0.30^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~204~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~205~^11.30^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~255~^78.80^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~303~^0.02^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14019~^~309~^0.60^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14021~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~205~^11.27^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14021~^~207~^0.28^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~255~^88.45^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~269~^10.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14021~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14021~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14022~^~203~^0.00^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~205~^1.38^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~207~^0.40^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14022~^~255~^98.35^0^^~4~^~BFZN~^~14156~^^^^^^^^^~02/01/2013~ -~14022~^~269~^1.38^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~ -~14022~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~578~^2.50^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14024~^~203~^0.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~204~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~205~^97.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14024~^~207~^1.40^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~255~^0.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~269~^97.30^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~14024~^~303~^0.39^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~309~^0.14^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~418~^0.01^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14025~^~203~^0.10^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~204~^0.02^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~205~^15.85^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~207~^0.27^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~255~^69.15^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~269~^15.81^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~309~^0.04^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14026~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14026~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14026~^~205~^1.03^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14026~^~207~^0.62^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~255~^98.35^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~269~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~323~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14026~^~573~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~578~^2.50^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14027~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~205~^13.40^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~255~^76.90^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~303~^0.01^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14027~^~309~^0.06^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14028~^~203~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~204~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~205~^21.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14028~^~207~^0.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~255~^78.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~269~^21.40^0^^~4~^~NR~^^^^^^^^^^~03/01/2008~ -~14028~^~303~^0.11^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~309~^0.07^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14028~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14029~^~203~^0.06^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~204~^0.06^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~205~^12.82^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~207~^0.12^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~255~^72.44^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~269~^12.78^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~309~^0.06^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14029~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14030~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~205~^11.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~207~^0.28^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~255~^88.45^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~269~^11.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~578~^2.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14031~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~205~^1.25^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~207~^0.00^0^^~4~^~BFZN~^~14440~^^^^^^^^^~02/01/2013~ -~14031~^~255~^98.75^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14031~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~323~^0.56^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~418~^0.25^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~578~^0.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~203~^66.67^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~204~^5.13^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~205~^17.95^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~207~^3.65^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~255~^6.61^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14033~^~269~^5.13^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~303~^0.92^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~309~^7.14^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~323~^0.38^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~418~^2.27^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14034~^~203~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~204~^0.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~205~^41.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14034~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14034~^~255~^28.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~269~^41.60^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14034~^~303~^0.07^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~309~^0.04^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14034~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14034~^~418~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14035~^~203~^47.62^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~204~^3.57^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~205~^43.94^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14035~^~207~^2.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~255~^2.83^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14035~^~269~^40.48^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~303~^6.43^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~309~^2.29^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14036~^~203~^5.87^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~204~^2.17^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14036~^~205~^2.28^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14036~^~207~^0.68^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~255~^89.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14036~^~269~^0.78^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~303~^1.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~309~^1.05^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~323~^0.83^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~418~^0.69^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~573~^0.83^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~578~^0.69^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14037~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~204~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~205~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14037~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14037~^~255~^66.60^0^^~1~^^^^^^^^^^^~03/01/2006~ -~14037~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~14037~^~303~^0.04^128^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~309~^0.04^66^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14037~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14038~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~205~^3.75^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~207~^0.11^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~255~^96.18^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~269~^3.75^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~309~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~418~^1.25^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~578~^1.25^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14041~^~203~^5.38^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~204~^5.38^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~205~^17.29^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~207~^0.97^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~255~^71.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~269~^8.46^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~303~^1.73^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~309~^1.73^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~323~^5.19^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~418~^0.81^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~578~^0.81^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14044~^~203~^6.59^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~204~^3.38^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14044~^~205~^0.85^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14044~^~207~^0.61^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~255~^88.57^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14044~^~269~^0.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~303~^0.96^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~309~^0.85^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~323~^4.58^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14044~^~418~^0.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~573~^4.58^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14045~^~203~^3.32^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~204~^1.93^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~205~^7.74^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~207~^0.86^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~255~^85.69^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14045~^~269~^5.95^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~303~^0.87^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~309~^0.72^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~323~^4.58^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14045~^~418~^0.68^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~573~^4.58^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14045~^~578~^0.68^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~14047~^~203~^8.13^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~204~^13.34^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~205~^73.92^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14047~^~207~^2.62^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~255~^1.99^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~269~^38.02^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~303~^0.68^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~309~^17.31^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~323~^51.92^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~418~^8.08^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~573~^51.92^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14047~^~578~^8.08^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14048~^~203~^0.68^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~204~^0.06^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~205~^9.20^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~207~^2.09^0^^~4~^~O~^^^^^^^^^^~12/01/2011~ -~14048~^~255~^87.97^0^^~4~^~BFZN~^~14264~^^^^^^^^^~12/01/2011~ -~14048~^~269~^9.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~303~^0.10^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~309~^0.05^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~323~^1.08^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~418~^0.00^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~573~^0.00^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~578~^0.00^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14050~^~203~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~204~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14050~^~255~^66.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~14050~^~303~^0.12^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~309~^0.07^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14050~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14051~^~203~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~204~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14051~^~255~^66.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~14051~^~303~^0.01^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~309~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14052~^~203~^0.00^1^^~1~^^^^^^^^^^^~07/01/2003~ -~14052~^~204~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14052~^~207~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~255~^63.90^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~269~^0.10^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~ -~14052~^~303~^0.02^117^0.01^~6~^~JA~^^^1^0.00^0.03^1^-0.18^0.21^~4~^~11/01/2002~ -~14052~^~309~^0.02^81^0.02^~6~^~JA~^^^1^0.00^0.05^1^-0.26^0.30^~4~^~11/01/2002~ -~14052~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14054~^~203~^0.63^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~204~^1.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~205~^9.38^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~207~^0.37^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14054~^~255~^88.43^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~269~^8.75^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~303~^0.53^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~309~^0.63^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~323~^2.81^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~418~^1.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~573~^2.81^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~578~^1.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~203~^27.87^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~204~^13.46^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14055~^~205~^50.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14055~^~207~^3.63^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14055~^~255~^5.40^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14055~^~269~^20.59^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14055~^~303~^24.84^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~309~^17.29^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~323~^51.92^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~418~^8.07^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~573~^51.92^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~578~^8.08^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14056~^~203~^0.83^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14056~^~204~^0.83^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14056~^~205~^12.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14056~^~207~^0.62^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~ -~14056~^~210~^0.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~211~^3.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~212~^6.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14056~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14056~^~255~^84.88^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~269~^11.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14056~^~303~^0.16^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~309~^0.11^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~323~^11.11^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~342~^0.10^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14056~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~14056~^~418~^3.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~573~^6.75^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14056~^~578~^3.40^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~14057~^~203~^0.20^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~205~^13.69^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14057~^~207~^0.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~210~^0.05^3^0.05^~13~^~AI~^^^1^0.00^0.15^2^-0.16^0.26^~4~^~11/01/2002~ -~14057~^~211~^2.60^6^0.78^~13~^~AI~^^^1^0.72^5.14^5^0.57^4.63^~4~^~11/01/2002~ -~14057~^~212~^5.15^6^0.20^~13~^~AI~^^^1^4.38^5.57^5^4.62^5.68^~4~^~11/01/2002~ -~14057~^~255~^70.51^9^0.44^~13~^~AI~^^^1^68.12^72.09^8^69.48^71.52^~4~^~11/01/2002~ -~14057~^~269~^7.78^6^0.76^~13~^~AI~^^^1^5.83^9.82^5^5.80^9.75^~4~^~11/01/2002~ -~14057~^~303~^0.24^32^0.03^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~309~^0.07^55^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14057~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14058~^~203~^58.14^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~204~^1.16^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~205~^29.07^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~207~^10.77^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~255~^0.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14058~^~269~^1.16^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~303~^1.26^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~309~^8.72^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~323~^7.85^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~418~^3.49^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~573~^7.85^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~578~^3.49^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~203~^0.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~205~^15.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~207~^0.06^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14060~^~255~^84.52^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14060~^~269~^13.75^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~309~^0.63^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~578~^2.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14061~^~203~^0.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~205~^0.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~207~^0.06^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14061~^~255~^99.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14061~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~418~^2.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~578~^2.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14062~^~203~^3.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~204~^2.53^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~205~^16.88^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~207~^0.60^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~255~^76.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14062~^~269~^9.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~303~^1.90^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~309~^1.58^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~323~^1.42^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~418~^0.63^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~573~^1.34^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~578~^0.60^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14063~^~203~^9.09^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~204~^4.50^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~14063~^~205~^68.31^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~14063~^~207~^10.70^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~255~^7.40^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~269~^27.27^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~303~^3.27^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~309~^13.64^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~203~^0.21^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~205~^5.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~207~^0.19^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~255~^94.19^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14064~^~269~^4.17^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~309~^0.02^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~323~^1.25^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14064~^~418~^0.00^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~573~^1.25^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14064~^~578~^0.00^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14065~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~205~^12.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~207~^0.01^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~14065~^~255~^87.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14065~^~269~^12.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14065~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~203~^78.13^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~204~^1.56^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~205~^6.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~207~^10.55^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~255~^3.44^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~303~^1.13^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~309~^6.18^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~418~^2.45^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14067~^~203~^55.56^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~204~^5.56^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~205~^28.89^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~207~^5.87^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~255~^4.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14067~^~269~^22.22^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~303~^12.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~309~^6.60^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~323~^0.00^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~418~^0.00^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~573~^0.00^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~578~^0.00^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14073~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14073~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14073~^~205~^1.13^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14073~^~207~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~255~^98.36^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14073~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14073~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14074~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14074~^~205~^1.13^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14074~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14074~^~255~^98.87^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14074~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~207~^0.05^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14075~^~255~^99.95^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14075~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~205~^12.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14079~^~207~^0.28^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~255~^86.89^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14079~^~269~^12.90^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14079~^~303~^0.02^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~309~^0.00^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~205~^92.96^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14080~^~207~^5.76^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14080~^~255~^1.28^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14080~^~269~^81.82^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~303~^16.36^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~309~^13.64^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~323~^12.27^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~418~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~573~^12.27^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14080~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~14082~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~207~^0.05^0^^~4~^~O~^^^^^^^^^^~07/01/2014~ -~14082~^~255~^99.95^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14082~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14083~^~203~^3.25^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~204~^0.17^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~205~^8.64^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~207~^0.98^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~255~^86.95^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~269~^7.77^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~303~^0.74^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~309~^0.97^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~323~^0.54^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~418~^0.36^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~578~^0.00^0^^~4~^~BFZN~^~42290~^^^^^^^^^~05/01/2014~ -~14084~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14084~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2005~ -~14084~^~205~^2.72^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14084~^~207~^0.24^2526^0.03^~1~^~A~^^^1^0.20^0.28^1^-0.24^0.72^~4~^~03/01/2005~ -~14084~^~255~^86.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14084~^~269~^0.79^2^^~1~^~A~^^^1^0.62^0.96^1^^^^~02/01/2005~ -~14084~^~303~^0.37^2^^~1~^~A~^^^1^0.27^0.46^1^^^^~02/01/2005~ -~14084~^~309~^0.13^2^^~1~^~A~^^^1^0.12^0.14^1^^^^~02/01/2005~ -~14084~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14084~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~14084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14086~^~203~^1.22^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~205~^7.76^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~207~^0.33^0^^~4~^~BFZN~^~21521~^^^^^^^^^~07/01/2015~ -~14086~^~255~^90.69^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14086~^~269~^7.35^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~418~^0.24^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~203~^1.22^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~205~^8.16^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~207~^0.33^0^^~4~^~BFZN~^~21521~^^^^^^^^^~07/01/2015~ -~14087~^~255~^90.28^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14087~^~269~^7.35^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~418~^0.24^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~203~^1.22^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~205~^8.54^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~207~^0.33^0^^~4~^~BFZN~^~14087~^^^^^^^^^~07/01/2015~ -~14088~^~255~^90.28^0^^~4~^~BFZN~^~14087~^^^^^^^^^~07/01/2015~ -~14088~^~269~^7.32^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~418~^0.24^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14090~^~203~^0.22^11^0.01^~1~^~A~^^^1^0.12^0.30^10^0.17^0.25^~2, 3~^~07/01/2014~ -~14090~^~204~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~14090~^~205~^4.24^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~14090~^~207~^0.52^11^0.01^~1~^~A~^^^1^0.42^0.59^10^0.48^0.55^~2, 3~^~07/01/2014~ -~14090~^~210~^0.96^5^0.24^~1~^~A~^^^1^0.30^1.70^4^0.27^1.64^~2, 3~^~07/01/2014~ -~14090~^~211~^0.82^5^0.21^~1~^~A~^^^1^0.30^1.40^4^0.22^1.41^~2, 3~^~07/01/2014~ -~14090~^~212~^2.14^5^0.84^~1~^~A~^^^1^0.40^4.80^4^-0.19^4.47^~2, 3~^~07/01/2014~ -~14090~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~14090~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~14090~^~255~^95.03^11^0.28^~1~^~A~^^^1^93.90^96.10^10^94.39^95.66^~2, 3~^~07/01/2014~ -~14090~^~269~^3.92^5^0.54^~1~^~A~^^^1^2.40^5.50^4^2.39^5.44^~2, 3~^~07/01/2014~ -~14090~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~14090~^~303~^0.03^9^3.0e-03^~1~^~A~^^^1^0.02^0.05^8^0.02^0.04^~1, 2, 3~^~07/01/2014~ -~14090~^~309~^0.02^9^5.0e-03^~1~^~A~^^^1^0.01^0.06^8^0.01^0.03^~1, 2, 3~^~07/01/2014~ -~14090~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14091~^~203~^0.40^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~204~^0.96^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~205~^1.31^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~14091~^~207~^0.79^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~209~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~210~^0.81^3^0.81^~1~^~A~^^^1^0.00^2.44^2^-2.68^4.31^~1, 2, 3~^~02/01/2016~ -~14091~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~14091~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~14091~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~14091~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~14091~^~255~^96.54^5^0.51^~1~^~A~^^^1^94.50^97.10^4^95.12^97.95^~2, 3~^~02/01/2016~ -~14091~^~269~^0.81^3^0.81^~1~^~A~^^^1^0.00^2.44^2^-2.68^4.31^~2, 3~^~02/01/2016~ -~14091~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2015~ -~14091~^~303~^0.28^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~309~^0.06^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~323~^6.33^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~14091~^~341~^0.12^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~342~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~343~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~418~^0.00^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~573~^6.33^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~14091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14092~^~203~^0.83^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~204~^1.46^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~205~^1.25^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~207~^0.68^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~255~^95.78^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14092~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~303~^0.45^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~309~^0.07^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~323~^4.19^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~418~^0.00^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~573~^2.81^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~578~^0.00^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14093~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~205~^0.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~14093~^~207~^0.15^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14093~^~255~^99.17^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14093~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~418~^1.02^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~578~^1.02^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14095~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~205~^13.75^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~207~^0.02^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14095~^~255~^86.08^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~269~^12.92^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14095~^~303~^0.00^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~309~^0.01^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~323~^0.00^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~418~^0.00^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~573~^0.00^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~578~^0.00^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14096~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2005~ -~14096~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~205~^2.61^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14096~^~207~^0.28^1300^2.0e-03^~1~^~A~^^^1^0.10^0.53^1299^0.27^0.27^~4~^~03/01/2005~ -~14096~^~255~^86.49^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14096~^~269~^0.62^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~303~^0.46^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~309~^0.14^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~323~^0.00^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14096~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14096~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14097~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14097~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14097~^~205~^2.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14097~^~207~^0.29^377^3.0e-03^~1~^~A~^^^1^0.11^0.50^376^0.28^0.29^~4~^~05/01/2005~ -~14097~^~255~^86.56^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14098~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14098~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14098~^~205~^2.45^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14098~^~207~^0.27^30^0.01^~1~^~A~^^^1^0.15^0.37^29^0.24^0.28^~4~^~05/01/2005~ -~14098~^~255~^86.59^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14099~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14099~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14099~^~205~^2.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14099~^~207~^0.25^287^3.0e-03^~1~^~A~^^^1^0.11^0.49^286^0.24^0.25^~4~^~05/01/2005~ -~14099~^~255~^86.94^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14100~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14100~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14100~^~205~^2.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14100~^~207~^0.32^30^0.01^~1~^~A~^^^1^0.11^0.46^29^0.29^0.35^~4~^~05/01/2005~ -~14100~^~255~^86.53^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14101~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14101~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14101~^~205~^2.79^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14101~^~207~^0.23^8^0.01^~1~^~A~^^^1^0.17^0.30^7^0.19^0.26^~4~^~05/01/2005~ -~14101~^~255~^86.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14102~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14102~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14102~^~205~^2.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14102~^~207~^0.27^164^4.0e-03^~1~^~A~^^^1^0.13^0.44^163^0.26^0.28^~4~^~05/01/2005~ -~14102~^~255~^85.71^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14103~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14103~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14103~^~205~^2.68^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14103~^~207~^0.31^25^0.01^~1~^~A~^^^1^0.22^0.53^24^0.28^0.33^~4~^~05/01/2005~ -~14103~^~255~^86.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14105~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14105~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14105~^~205~^3.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14105~^~207~^0.29^11^0.01^~1~^~A~^^^1^0.20^0.40^10^0.25^0.33^~4~^~05/01/2005~ -~14105~^~255~^86.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14106~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2005~ -~14106~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~205~^2.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14106~^~207~^0.20^1200^2.0e-03^~1~^~A~^^^1^0.04^0.62^1199^0.19^0.20^~4~^~06/01/2005~ -~14106~^~255~^86.86^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14106~^~269~^0.96^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~303~^0.27^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~309~^0.12^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14107~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14107~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14107~^~205~^2.46^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14107~^~207~^0.25^11^0.01^~1~^~A~^^^1^0.20^0.37^10^0.22^0.28^~4~^~05/01/2005~ -~14107~^~255~^87.02^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14108~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14108~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14108~^~205~^2.62^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14108~^~207~^0.26^14^9.0e-03^~1~^~A~^^^1^0.20^0.32^13^0.24^0.28^~4~^~05/01/2005~ -~14108~^~255~^86.17^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14109~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14109~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~05/01/2005~ -~14109~^~205~^2.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14109~^~207~^0.31^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~14109~^~255~^87.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14113~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14113~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14113~^~205~^2.06^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14113~^~207~^0.16^47^5.0e-03^~1~^~A~^^^1^0.10^0.25^46^0.14^0.16^~4~^~06/01/2005~ -~14113~^~255~^86.98^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14116~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14116~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14116~^~205~^3.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14116~^~207~^0.22^39^7.0e-03^~1~^~A~^^^1^0.12^0.31^38^0.20^0.23^~4~^~05/01/2005~ -~14116~^~255~^86.78^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14117~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14117~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14117~^~205~^2.27^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14117~^~207~^0.17^32^7.0e-03^~1~^~A~^^^1^0.09^0.24^31^0.15^0.18^~4~^~05/01/2005~ -~14117~^~255~^86.98^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14119~^~203~^0.04^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~204~^0.01^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~205~^7.47^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~14119~^~207~^0.13^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~255~^92.34^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~269~^2.10^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~303~^0.04^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~309~^0.01^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~323~^1.63^0^^~4~^~NR~^^^^^^^^^^~10/01/2003~ -~14119~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14119~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14120~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14120~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14120~^~205~^3.48^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14120~^~207~^0.15^13^0.01^~1~^~A~^^^1^0.04^0.20^12^0.12^0.17^~4~^~05/01/2005~ -~14120~^~255~^87.28^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14121~^~203~^0.00^0^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~255~^99.90^1^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~14121~^~303~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2001~ -~14121~^~309~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14121~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14124~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14124~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14124~^~205~^2.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14124~^~207~^0.17^68^5.0e-03^~1~^~A~^^^1^0.11^0.29^67^0.16^0.18^~4~^~05/01/2005~ -~14124~^~255~^87.03^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14125~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14125~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14125~^~205~^11.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14125~^~207~^0.20^3^0.03^~1~^~A~^^^1^0.14^0.24^2^0.06^0.34^~4~^~05/01/2005~ -~14125~^~255~^79.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14126~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14126~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14126~^~205~^3.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14126~^~207~^0.21^31^0.01^~1~^~A~^^^1^0.12^0.62^30^0.17^0.24^~4~^~05/01/2005~ -~14126~^~255~^86.54^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14130~^~203~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~205~^13.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14130~^~207~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~255~^86.70^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~269~^13.30^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14130~^~303~^0.05^4^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~309~^0.07^3^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14130~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14132~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14132~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14132~^~205~^3.74^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14132~^~207~^0.17^146^3.0e-03^~1~^~A~^^^1^0.08^0.32^145^0.16^0.17^~4~^~05/01/2005~ -~14132~^~255~^86.56^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14134~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14134~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14134~^~205~^2.05^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14134~^~207~^0.18^146^3.0e-03^~1~^~A~^^^1^0.09^0.32^145^0.17^0.18^~4~^~05/01/2005~ -~14134~^~255~^87.16^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14135~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14135~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~05/01/2005~ -~14135~^~205~^13.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~14135~^~207~^0.27^26^0.01^~1~^~A~^^^1^0.14^0.47^25^0.24^0.30^~4~^~05/01/2005~ -~14135~^~255~^77.76^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14136~^~203~^0.00^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~204~^0.00^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~205~^8.76^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14136~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14136~^~210~^1.90^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~14136~^~211~^3.10^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~14136~^~212~^3.70^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~14136~^~255~^91.23^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~14136~^~269~^8.90^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14136~^~303~^0.18^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~309~^0.05^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14136~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14137~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~14137~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14137~^~205~^9.09^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14137~^~207~^0.12^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~255~^91.18^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~269~^9.09^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14137~^~309~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14138~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14138~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14138~^~205~^1.94^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14138~^~207~^0.24^11^0.01^~1~^~A~^^^1^0.17^0.33^10^0.21^0.27^~4~^~06/01/2005~ -~14138~^~255~^87.14^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14140~^~203~^0.07^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14140~^~204~^0.00^0^^~4~^~BFZN~^~14106~^^^^^^^^^~06/01/2005~ -~14140~^~205~^5.23^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14140~^~207~^0.21^37^0.01^~1~^~A~^^^1^0.11^0.39^36^0.19^0.23^~4~^~06/01/2005~ -~14140~^~255~^85.69^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14142~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~205~^11.20^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14142~^~207~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~255~^88.80^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~303~^0.08^12^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~309~^0.07^11^0.02^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14143~^~203~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~204~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/1999~ -~14143~^~207~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~255~^99.80^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~303~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14143~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14144~^~203~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~205~^10.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14144~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~211~^4.32^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~212~^5.87^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~255~^89.49^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14144~^~269~^10.38^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~14144~^~303~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~309~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14144~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14145~^~203~^0.05^4^^~1~^~A~^^^4^0.00^0.09^^^^~2, 3~^~04/01/2005~ -~14145~^~204~^0.02^4^^~1~^~A~^^^4^0.00^0.08^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~205~^10.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14145~^~207~^0.01^4^^~1~^~A~^^^4^0.00^0.03^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~210~^0.65^4^^~1~^~A~^^^4^0.00^3.90^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~211~^3.13^4^^~1~^~A~^^^4^0.00^4.32^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~212~^5.19^4^^~1~^~A~^^^4^2.78^5.87^^^^~2, 3~^~04/01/2005~ -~14145~^~255~^89.78^4^^~1~^~A~^^^4^89.48^90.78^^^^~2, 3~^~04/01/2005~ -~14145~^~269~^8.98^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14145~^~303~^0.11^4^^~1~^~A~^^^4^0.00^0.57^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~309~^0.04^4^^~1~^~A~^^^4^0.00^0.19^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14145~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14145~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14145~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14146~^~203~^0.12^4^0.00^~1~^~A~^^^1^0.09^0.14^^^^~2, 3~^~04/01/2005~ -~14146~^~204~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~14146~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14146~^~207~^0.03^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14146~^~255~^99.74^4^7.0e-03^~1~^~A~^^^1^99.68^99.79^1^99.65^99.82^~2, 3~^~04/01/2005~ -~14146~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~303~^0.02^4^1.0e-03^~1~^~A~^^^1^0.02^0.03^1^0.01^0.03^~1, 2, 3~^~04/01/2005~ -~14146~^~309~^0.01^4^3.0e-03^~1~^~A~^^^1^0.01^0.04^1^-0.02^0.05^~1, 2, 3~^~04/01/2005~ -~14146~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14146~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14146~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14147~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2005~ -~14147~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2005~ -~14147~^~205~^10.58^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14147~^~207~^0.06^4^0.03^~1~^~A~^^^1^0.00^0.12^3^-0.04^0.16^~1, 2, 3~^~04/01/2005~ -~14147~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~14147~^~211~^4.48^4^0.03^~1~^~A~^^^1^4.39^4.55^3^4.36^4.59^~2, 3~^~04/01/2005~ -~14147~^~212~^6.10^4^0.10^~1~^~A~^^^1^5.80^6.30^3^5.76^6.44^~2, 3~^~04/01/2005~ -~14147~^~255~^89.62^4^0.06^~1~^~A~^^^1^89.47^89.75^3^89.40^89.83^~2, 3~^~04/01/2005~ -~14147~^~269~^10.58^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14147~^~303~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.02^0.05^~1, 2, 3~^~04/01/2005~ -~14147~^~309~^0.01^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^6.0e-03^0.02^~1, 2, 3~^~04/01/2005~ -~14147~^~323~^0.00^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~418~^0.00^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~573~^0.00^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~578~^0.00^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14148~^~203~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2005~ -~14148~^~204~^0.25^12^0.02^~1~^~A~^^^1^0.23^0.26^10^0.19^0.30^~2, 3~^~01/01/2015~ -~14148~^~205~^10.36^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~14148~^~207~^0.04^11^0.00^~1~^~A~^^^1^0.04^0.04^^^^~2, 3~^~01/01/2015~ -~14148~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2005~ -~14148~^~211~^4.10^12^0.03^~1~^~A~^^^1^4.02^4.18^10^4.01^4.18^~2, 3~^~01/01/2015~ -~14148~^~212~^5.84^12^0.02^~1~^~A~^^^1^5.71^5.97^10^5.79^5.89^~2, 3~^~01/01/2015~ -~14148~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2015~ -~14148~^~214~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2015~ -~14148~^~255~^89.36^12^0.13^~1~^~A~^^^1^89.27^89.45^5^89.02^89.69^~2, 3~^~01/01/2015~ -~14148~^~269~^9.94^12^0.05^~1~^~A~^^^1^9.73^10.15^10^9.81^10.06^~2, 3~^~01/01/2015~ -~14148~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2015~ -~14148~^~303~^0.02^12^1.0e-03^~1~^~A~^^^1^0.02^0.02^10^0.01^0.02^~2, 3~^~04/01/2005~ -~14148~^~309~^0.09^12^0.02^~1~^~A~^^^1^0.07^0.11^9^0.03^0.15^~2, 3~^~01/01/2015~ -~14148~^~323~^0.00^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~ -~14148~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14149~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2005~ -~14149~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2005~ -~14149~^~205~^5.16^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~14149~^~207~^0.06^4^0.03^~1~^~A~^^^1^0.00^0.12^3^-0.04^0.16^~1, 2, 3~^~04/01/2005~ -~14149~^~255~^94.78^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~14149~^~269~^5.16^0^^~4~^~NR~^^^^^^^^^^~07/01/2008~ -~14149~^~303~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.02^0.05^~1, 2, 3~^~04/01/2005~ -~14149~^~309~^0.01^4^2.0e-03^~1~^~A~^^^1^0.01^0.02^3^6.0e-03^0.02^~1, 2, 3~^~04/01/2005~ -~14149~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~418~^0.00^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14149~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14150~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~205~^12.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14150~^~207~^0.10^46^4.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~255~^87.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~303~^0.06^9^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~309~^0.10^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14151~^~203~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~204~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~205~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~207~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~255~^99.80^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~ -~14151~^~303~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~309~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14151~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14152~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14152~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~06/01/2005~ -~14152~^~205~^3.69^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14152~^~207~^0.34^14^0.01^~1~^~A~^^^1^0.25^0.49^13^0.30^0.37^~4~^~06/01/2005~ -~14152~^~255~^85.62^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14153~^~203~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~204~^0.10^3^0.02^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~205~^10.40^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14153~^~207~^0.03^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14153~^~255~^89.40^3^0.19^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~303~^0.04^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~309~^0.04^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14154~^~203~^0.46^6^0.02^~1~^~A~^^^1^0.40^0.53^5^0.40^0.51^~2, 3~^~02/01/2015~ -~14154~^~204~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~205~^10.23^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14154~^~207~^0.10^6^0.01^~1~^~A~^^^1^0.07^0.14^5^0.06^0.13^~1, 2, 3~^~02/01/2015~ -~14154~^~210~^5.19^3^6.0e-03^~1~^~A~^^^1^5.18^5.20^2^5.16^5.21^~2, 3~^~02/01/2015~ -~14154~^~211~^3.40^3^0.11^~1~^~A~^^^1^3.18^3.53^2^2.92^3.87^~2, 3~^~02/01/2015~ -~14154~^~212~^1.63^3^0.08^~1~^~A~^^^1^1.47^1.72^2^1.28^1.98^~2, 3~^~02/01/2015~ -~14154~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~255~^89.22^6^0.11^~1~^~A~^^^1^89.00^89.70^5^88.92^89.50^~2, 3~^~02/01/2015~ -~14154~^~269~^10.22^3^0.19^~1~^~A~^^^1^9.84^10.43^2^9.39^11.04^~2, 3~^~02/01/2015~ -~14154~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~303~^0.06^6^0.02^~1~^~A~^^^1^0.04^0.15^5^6.0e-03^0.10^~1, 2, 3~^~02/01/2015~ -~14154~^~309~^0.01^6^1.0e-03^~1~^~A~^^^1^0.01^0.01^5^6.0e-03^0.01^~1, 2, 3~^~02/01/2015~ -~14154~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~418~^1.97^3^0.03^~1~^~A~^^^1^1.90^2.00^2^1.82^2.11^~2, 3~^~02/01/2015~ -~14154~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14154~^~578~^1.96^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14155~^~203~^0.00^3^0.00^~8~^~LC~^^^1^0.00^0.00^2^0.00^0.00^~4~^~11/01/2004~ -~14155~^~204~^0.00^3^0.00^~8~^~LC~^^^1^0.00^0.00^2^0.00^0.00^~4~^~11/01/2004~ -~14155~^~205~^8.80^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14155~^~207~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~255~^91.10^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~269~^8.80^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~14155~^~303~^0.01^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~309~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~14155~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14156~^~203~^0.25^1^^~13~^~AI~^^^^^^^^^^~02/01/2005~ -~14156~^~204~^0.08^1^^~13~^~AI~^^^^^^^^^^~02/01/2005~ -~14156~^~205~^0.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14156~^~207~^0.62^1^^~13~^~AI~^^^^^^^^^^~02/01/2005~ -~14156~^~255~^98.35^1^^~13~^~AI~^^^^^^^^^^~02/01/2005~ -~14156~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14156~^~303~^0.02^2^^~13~^~AI~^^^1^0.02^0.02^1^^^^~02/01/2005~ -~14156~^~309~^0.00^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~418~^1.99^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14156~^~578~^1.99^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14157~^~203~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~205~^10.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14157~^~207~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~255~^89.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~269~^10.60^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14157~^~303~^0.05^10^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~309~^0.07^11^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14157~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14158~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14158~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~06/01/2005~ -~14158~^~205~^2.38^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14158~^~207~^0.21^15^0.01^~1~^~A~^^^1^0.10^0.32^14^0.18^0.24^~4~^~06/01/2005~ -~14158~^~255~^87.49^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14159~^~203~^0.07^0^^~4~^~BFZN~^~14096~^^^^^^^^^~07/01/2005~ -~14159~^~204~^0.00^0^^~4~^~BFZN~^~14096~^^^^^^^^^~06/01/2005~ -~14159~^~205~^2.64^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14159~^~207~^0.29^8^0.02^~1~^~A~^^^1^0.15^0.37^7^0.22^0.35^~4~^~06/01/2005~ -~14159~^~255~^85.81^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14160~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2005~ -~14160~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~205~^2.16^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14160~^~207~^0.22^504^2.0e-03^~1~^~A~^^^1^0.07^0.41^503^0.21^0.21^~4~^~06/01/2005~ -~14160~^~255~^86.85^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14160~^~269~^0.96^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~303~^0.27^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~309~^0.12^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14161~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~205~^12.26^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~207~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~255~^87.74^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~14161~^~269~^11.63^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14161~^~303~^0.15^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~ -~14161~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14162~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14162~^~204~^0.10^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~205~^5.10^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~207~^0.16^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~14162~^~255~^94.84^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14162~^~269~^4.80^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~303~^0.20^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~ -~14162~^~309~^0.04^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~323~^0.01^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~418~^0.00^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~573~^0.00^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14162~^~578~^0.00^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~ -~14163~^~203~^4.22^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~204~^1.69^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~205~^17.30^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~207~^0.97^0^^~4~^~BFZN~^~14041~^^^^^^^^^~04/01/2015~ -~14163~^~255~^75.82^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14163~^~269~^8.44^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~303~^1.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~309~^1.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~323~^5.70^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~418~^0.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~573~^5.17^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14163~^~578~^0.89^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14164~^~203~^3.32^6^0.01^~1~^~A~^^^1^3.26^3.36^5^3.27^3.36^~2, 3~^~06/01/2015~ -~14164~^~204~^0.97^6^0.02^~1~^~A~^^^1^0.90^1.00^5^0.91^1.02^~2, 3~^~06/01/2015~ -~14164~^~205~^8.81^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14164~^~207~^0.95^6^0.02^~1~^~A~^^^1^0.88^1.06^5^0.89^1.02^~2, 3~^~06/01/2015~ -~14164~^~209~^0.14^4^0.03^~1~^~A~^^^1^0.07^0.20^3^0.03^0.24^~1, 2, 3~^~06/01/2015~ -~14164~^~210~^3.02^6^0.19^~1~^~A~^^^1^2.55^3.64^5^2.50^3.53^~2, 3~^~06/01/2015~ -~14164~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~213~^4.79^6^0.01^~1~^~A~^^^1^4.72^4.85^5^4.74^4.84^~2, 3~^~06/01/2015~ -~14164~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~255~^85.95^6^0.13^~1~^~A~^^^1^85.40^86.30^5^85.60^86.29^~2, 3~^~06/01/2015~ -~14164~^~269~^7.81^6^0.19^~1~^~A~^^^1^7.36^8.47^5^7.32^8.30^~2, 3~^~06/01/2015~ -~14164~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~303~^1.14^6^0.04^~1~^~A~^^^1^1.02^1.36^5^1.01^1.26^~2, 3~^~06/01/2015~ -~14164~^~309~^1.22^6^0.02^~1~^~A~^^^1^1.16^1.33^5^1.15^1.28^~2, 3~^~06/01/2015~ -~14164~^~323~^13.79^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14164~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14164~^~418~^0.47^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~573~^12.27^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14165~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~02/01/2015~ -~14165~^~204~^0.11^6^0.01^~1~^~A~^^^1^0.08^0.17^5^0.07^0.15^~1, 2, 3~^~02/01/2015~ -~14165~^~205~^4.11^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14165~^~207~^0.09^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14165~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14165~^~211~^1.72^6^0.03^~1~^~A~^^^1^1.60^1.82^5^1.63^1.80^~2, 3~^~02/01/2015~ -~14165~^~212~^2.25^6^0.03^~1~^~A~^^^1^2.15^2.33^5^2.17^2.32^~2, 3~^~02/01/2015~ -~14165~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14165~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14165~^~255~^95.68^6^0.02^~1~^~A~^^^1^95.57^95.74^5^95.61^95.75^~2, 3~^~02/01/2015~ -~14165~^~269~^3.97^6^0.06^~1~^~A~^^^1^3.75^4.15^5^3.81^4.13^~2, 3~^~02/01/2015~ -~14165~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14165~^~303~^0.03^6^9.0e-03^~1~^~A~^^^1^0.02^0.07^5^4.0e-03^0.05^~1, 2, 3~^~02/01/2015~ -~14165~^~309~^0.01^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^5^3.0e-03^9.0e-03^~1, 2, 3~^~02/01/2015~ -~14165~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14166~^~203~^0.00^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~204~^0.00^3^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~14166~^~207~^0.10^3^0.01^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~255~^99.80^3^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~303~^0.02^28^0.02^~6~^~JA~^^^1^0.00^0.04^1^-0.23^0.27^~4~^~12/01/2002~ -~14166~^~309~^0.03^30^0.02^~6~^~JA~^^^1^0.00^0.05^1^-0.27^0.32^~4~^~12/01/2002~ -~14166~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14166~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14167~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~205~^0.14^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~207~^0.51^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14167~^~255~^99.35^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14167~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~303~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~418~^0.25^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14168~^~203~^1.80^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~204~^0.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~205~^93.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14168~^~207~^1.90^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~255~^2.90^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~303~^4.60^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~309~^0.08^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14169~^~203~^3.16^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~204~^3.11^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~205~^8.68^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~207~^0.75^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~255~^84.32^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~303~^0.25^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~309~^0.37^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~418~^0.42^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14171~^~203~^0.21^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~204~^2.08^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~205~^2.92^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~207~^0.23^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14171~^~255~^94.57^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14171~^~269~^2.50^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~303~^0.30^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~418~^1.25^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~578~^1.25^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14173~^~203~^2.14^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~204~^1.07^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~205~^4.27^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~207~^0.47^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~255~^92.06^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14173~^~269~^3.91^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~309~^0.26^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~323~^0.01^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~418~^0.51^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~573~^0.00^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~578~^0.00^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14174~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~205~^5.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~207~^0.02^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~255~^94.98^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14174~^~269~^5.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~303~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~309~^0.01^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~323~^0.56^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~418~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~573~^0.56^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14174~^~578~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14177~^~203~^3.23^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~204~^3.24^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~205~^11.96^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~14177~^~207~^0.78^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~255~^80.79^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~303~^0.30^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~309~^0.48^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~323~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~418~^0.40^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14179~^~203~^1.98^4^0.01^~1~^~A~^^^1^1.94^2.00^3^1.93^2.03^~2, 3~^~02/01/2015~ -~14179~^~204~^1.38^5^0.03^~1~^~A~^^^1^1.28^1.46^4^1.28^1.47^~2, 3~^~02/01/2015~ -~14179~^~205~^12.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14179~^~207~^0.47^5^0.05^~1~^~A~^^^1^0.26^0.53^4^0.32^0.61^~2, 3~^~02/01/2015~ -~14179~^~210~^7.51^3^0.16^~1~^~A~^^^1^7.31^7.83^2^6.80^8.20^~2, 3~^~02/01/2015~ -~14179~^~211~^0.24^3^0.05^~1~^~A~^^^1^0.18^0.35^2^2.0e-03^0.47^~1, 2, 3~^~02/01/2015~ -~14179~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14179~^~213~^2.92^3^0.06^~1~^~A~^^^1^2.80^3.04^2^2.62^3.21^~2, 3~^~02/01/2015~ -~14179~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14179~^~255~^83.56^5^0.06^~1~^~A~^^^1^83.32^83.68^4^83.38^83.74^~2, 3~^~02/01/2015~ -~14179~^~269~^10.67^3^0.27^~1~^~A~^^^1^10.36^11.22^2^9.47^11.85^~2, 3~^~02/01/2015~ -~14179~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14179~^~303~^0.04^5^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~02/01/2015~ -~14179~^~309~^0.26^5^8.0e-03^~1~^~A~^^^1^0.24^0.28^4^0.23^0.28^~2, 3~^~02/01/2015~ -~14179~^~323~^0.01^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~418~^0.51^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~573~^0.00^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~578~^0.00^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14180~^~203~^0.30^6^0.02^~1~^~A~^^^1^0.24^0.40^5^0.24^0.36^~2, 3~^~02/01/2015~ -~14180~^~204~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14180~^~205~^0.17^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~14180~^~207~^0.06^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14180~^~255~^99.47^6^0.02^~1~^~A~^^^1^99.40^99.50^5^99.41^99.52^~2, 3~^~02/01/2015~ -~14180~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~303~^0.02^6^1.0e-03^~1~^~A~^^^1^0.02^0.03^5^0.01^0.02^~1, 2, 3~^~02/01/2015~ -~14180~^~309~^0.02^6^1.0e-03^~1~^~A~^^^1^0.01^0.02^5^0.01^0.02^~2, 3~^~02/01/2015~ -~14180~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14181~^~203~^2.10^14^0.12^~1~^~A~^^^^^^^^^^~03/01/1998~ -~14181~^~204~^1.13^14^0.12^~1~^~A~^^^^^^^^^^~04/01/2002~ -~14181~^~205~^65.10^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~14181~^~207~^0.67^13^0.07^~1~^~A~^^^^^^^^^^~04/01/2002~ -~14181~^~255~^31.00^13^3.20^~1~^~A~^^^^^^^^^^~03/01/1998~ -~14181~^~269~^49.65^2^^~13~^~AI~^^^^49.60^49.70^^^^^~01/01/2008~ -~14181~^~303~^2.11^13^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~309~^0.73^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~418~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~14181~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14181~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14182~^~203~^3.07^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~204~^2.96^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~205~^12.78^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~207~^0.69^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~255~^80.51^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~269~^11.31^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~303~^0.32^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~309~^0.43^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~323~^0.05^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~418~^0.38^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14183~^~203~^1.48^6^0.02^~1~^~A~^^^1^1.42^1.56^5^1.42^1.53^~2, 3~^~02/01/2015~ -~14183~^~204~^0.98^6^0.01^~1~^~A~^^^1^0.90^1.00^5^0.94^1.02^~2, 3~^~02/01/2015~ -~14183~^~205~^11.42^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14183~^~207~^0.44^6^0.01^~1~^~A~^^^1^0.40^0.49^5^0.40^0.47^~2, 3~^~02/01/2015~ -~14183~^~210~^6.11^3^0.12^~1~^~A~^^^1^5.96^6.35^2^5.58^6.63^~2, 3~^~02/01/2015~ -~14183~^~211~^0.37^3^0.05^~1~^~A~^^^1^0.26^0.44^2^0.13^0.60^~2, 3~^~02/01/2015~ -~14183~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14183~^~213~^2.76^3^0.03^~1~^~A~^^^1^2.70^2.81^2^2.62^2.89^~2, 3~^~02/01/2015~ -~14183~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14183~^~255~^85.68^6^0.06^~1~^~A~^^^1^85.50^85.90^5^85.52^85.83^~2, 3~^~02/01/2015~ -~14183~^~269~^9.23^3^0.17^~1~^~A~^^^1^8.97^9.55^2^8.49^9.96^~2, 3~^~02/01/2015~ -~14183~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14183~^~303~^0.09^6^4.0e-03^~1~^~A~^^^1^0.08^0.11^5^0.08^0.10^~2, 3~^~02/01/2015~ -~14183~^~309~^0.15^6^6.0e-03^~1~^~A~^^^1^0.12^0.16^5^0.13^0.16^~2, 3~^~02/01/2015~ -~14183~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14183~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~205~^0.15^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14185~^~207~^0.02^0^^~4~^~O~^^^^^^^^^^~02/01/2015~ -~14185~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~255~^99.84^3^0.01^~1~^~A~^^^1^99.80^99.87^2^99.75^99.92^~2, 3~^~02/01/2015~ -~14185~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14185~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~303~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14185~^~309~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^2^0.01^0.01^~2, 3~^~02/01/2015~ -~14185~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14187~^~203~^0.60^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14187~^~204~^0.20^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14187~^~205~^10.95^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~14187~^~207~^0.85^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14187~^~255~^87.40^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14187~^~269~^3.31^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~309~^0.08^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~323~^0.11^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~418~^0.03^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14188~^~203~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2015~ -~14188~^~204~^0.18^8^0.01^~1~^~A~^^^2^0.13^0.27^5^0.15^0.21^~2, 3~^~06/01/2015~ -~14188~^~205~^7.16^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14188~^~207~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.03^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~210~^0.49^4^0.00^~1~^~A~^^^2^0.00^3.35^^^^~1, 2, 3~^~06/01/2015~ -~14188~^~211~^2.79^4^0.13^~1~^~A~^^^2^1.86^3.25^2^2.22^3.36^~2, 3~^~06/01/2015~ -~14188~^~212~^3.59^4^0.10^~1~^~A~^^^2^1.73^4.13^2^3.14^4.03^~2, 3~^~06/01/2015~ -~14188~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~214~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~255~^92.65^7^0.02^~1~^~A~^^^2^92.23^92.82^5^92.57^92.71^~2, 3~^~06/01/2015~ -~14188~^~269~^6.87^4^0.23^~1~^~A~^^^2^6.44^7.38^2^5.86^7.88^~2, 3~^~06/01/2015~ -~14188~^~287~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~303~^0.02^8^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~309~^0.01^8^1.0e-03^~1~^~A~^^^2^0.00^0.01^5^5.0e-03^0.01^~1, 2, 3~^~02/01/2015~ -~14188~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14189~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~205~^12.08^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~207~^0.02^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~255~^87.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14189~^~269~^11.67^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14189~^~303~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~309~^0.01^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~323~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~418~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~573~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~578~^0.00^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14190~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~205~^0.93^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14190~^~207~^0.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14190~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~211~^0.40^3^7.0e-03^~1~^~A~^^^1^0.39^0.41^2^0.37^0.43^~2, 3~^~04/01/2015~ -~14190~^~212~^0.53^3^3.0e-03^~1~^~A~^^^1^0.52^0.53^2^0.51^0.54^~2, 3~^~04/01/2015~ -~14190~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~255~^98.71^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~14190~^~269~^0.93^3^0.01^~1~^~A~^^^1^0.91^0.94^2^0.88^0.97^~2, 3~^~04/01/2015~ -~14190~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~303~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~309~^0.01^5^1.0e-03^~1~^~A~^^^1^0.00^0.01^4^3.0e-03^9.0e-03^~1, 2, 3~^~04/01/2015~ -~14190~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~205~^0.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14191~^~207~^0.08^0^^~4~^~O~^^^^^^^^^^~08/01/2015~ -~14191~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~255~^99.62^6^6.0e-03^~1~^~A~^^^1^99.59^99.63^5^99.60^99.63^~2, 3~^~04/01/2015~ -~14191~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2015~ -~14191~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~303~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~309~^0.00^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^5^2.0e-03^7.0e-03^~1, 2, 3~^~04/01/2015~ -~14191~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14192~^~203~^6.67^3^0.87^~8~^~LC~^^^1^4.97^7.89^2^2.89^10.44^~4~^~01/01/2005~ -~14192~^~204~^4.00^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~205~^83.73^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14192~^~207~^4.10^4^0.05^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~255~^1.50^4^0.07^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~269~^65.55^3^5.39^~8~^~LC~^^^1^59.62^76.32^2^42.34^88.75^~4~^~12/01/2006~ -~14192~^~303~^1.19^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~309~^1.46^9^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~323~^0.19^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~418~^0.35^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14194~^~203~^0.92^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~204~^0.55^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~205~^11.54^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~207~^0.65^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~255~^86.34^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~269~^9.03^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~303~^0.17^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~309~^0.21^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~323~^0.03^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~418~^0.05^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14195~^~203~^2.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~204~^15.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~205~^75.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~207~^3.02^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14195~^~255~^4.18^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~14195~^~269~^65.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~303~^1.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14196~^~203~^15.49^2^^~8~^~LC~^^^1^11.02^19.96^1^^^^~01/01/2005~ -~14196~^~204~^3.00^2^^~1~^^^^^^^^^^^~12/01/2002~ -~14196~^~205~^71.93^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14196~^~207~^6.18^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~255~^3.40^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~269~^37.65^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~303~^4.96^2^^~1~^^^^^^^^^^^~01/01/2005~ -~14196~^~309~^3.44^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~323~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~418~^1.18^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14196~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14197~^~203~^3.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~204~^15.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~205~^75.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~207~^3.27^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14197~^~255~^3.73^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~14197~^~269~^60.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~303~^1.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14199~^~203~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2015~ -~14199~^~204~^0.22^7^0.02^~1~^~A~^^^1^0.12^0.31^6^0.14^0.28^~2, 3~^~04/01/2015~ -~14199~^~205~^10.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14199~^~207~^0.03^7^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~04/01/2015~ -~14199~^~210~^1.12^4^1.12^~1~^~A~^^^1^0.00^4.49^3^-2.45^4.69^~1, 2, 3~^~04/01/2015~ -~14199~^~211~^3.59^4^0.40^~1~^~A~^^^1^2.38^4.06^3^2.30^4.87^~2, 3~^~04/01/2015~ -~14199~^~212~^4.77^4^0.91^~1~^~A~^^^1^2.03^5.76^3^1.86^7.68^~2, 3~^~04/01/2015~ -~14199~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14199~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14199~^~255~^88.95^7^0.42^~1~^~A~^^^1^87.46^89.90^6^87.90^89.99^~2, 3~^~04/01/2015~ -~14199~^~269~^9.49^4^0.20^~1~^~A~^^^1^8.90^9.77^3^8.84^10.12^~2, 3~^~04/01/2015~ -~14199~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14199~^~303~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14199~^~309~^0.01^7^2.0e-03^~1~^~A~^^^1^0.00^0.01^6^4.0e-03^0.01^~1, 2, 3~^~04/01/2015~ -~14199~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14201~^~203~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~204~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~14201~^~207~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~210~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~211~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~212~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~213~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~214~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~255~^99.30^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~269~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~14201~^~287~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~303~^0.05^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~309~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~323~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~14201~^~341~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~342~^0.01^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~343~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14201~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14202~^~203~^0.10^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~204~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~205~^1.69^0^^~4~^~NC~^~14201~^^^^^^^^^~08/01/2012~ -~14202~^~207~^0.23^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~255~^97.80^0^^~4~^~BFZN~^~14210~^^^^^^^^^~05/01/2004~ -~14202~^~269~^0.00^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~303~^0.13^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~309~^0.05^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~323~^0.00^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~ -~14202~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14202~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14203~^~203~^14.42^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~14203~^~204~^0.50^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~205~^73.18^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14203~^~207~^8.80^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~255~^3.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~269~^0.00^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~303~^4.41^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~309~^0.35^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~323~^0.00^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14203~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14203~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14204~^~203~^9.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~204~^13.21^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~205~^71.40^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~207~^3.29^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~255~^3.10^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~269~^34.98^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~303~^3.06^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~309~^1.01^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~323~^0.09^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14206~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2015~ -~14206~^~204~^0.22^6^0.03^~1~^~A~^^^1^0.13^0.35^5^0.14^0.30^~2, 3~^~04/01/2015~ -~14206~^~205~^6.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14206~^~207~^0.03^6^2.0e-03^~1~^~A~^^^1^0.03^0.04^5^0.02^0.03^~1, 2, 3~^~04/01/2015~ -~14206~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~211~^2.19^3^0.01^~1~^~A~^^^1^2.16^2.22^2^2.11^2.26^~2, 3~^~04/01/2015~ -~14206~^~212~^3.12^3^0.02^~1~^~A~^^^1^3.07^3.17^2^2.99^3.24^~2, 3~^~04/01/2015~ -~14206~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~255~^93.54^5^0.54^~1~^~A~^^^1^91.69^94.68^4^92.03^95.04^~2, 3~^~04/01/2015~ -~14206~^~269~^5.32^3^0.02^~1~^~A~^^^1^5.29^5.37^2^5.20^5.43^~2, 3~^~04/01/2015~ -~14206~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~303~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~309~^0.01^6^1.0e-03^~1~^~A~^^^1^0.00^0.01^5^2.0e-03^9.0e-03^~1, 2, 3~^~04/01/2015~ -~14206~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14207~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14207~^~205~^0.41^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14207~^~207~^0.04^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14207~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~255~^99.55^3^0.01^~1~^~A~^^^1^99.52^99.58^2^99.48^99.61^~2, 3~^~04/01/2015~ -~14207~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2015~ -~14207~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~14207~^~303~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14207~^~309~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^2^6.0e-03^7.0e-03^~2, 3~^~04/01/2015~ -~14207~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14209~^~203~^0.12^10^0.00^~1~^~A~^^^4^0.00^0.21^^^^~2, 3~^~03/01/2006~ -~14209~^~204~^0.02^6^3.0e-03^~1~^~A~^^^4^0.00^0.05^2^5.0e-03^0.02^~1, 2, 3~^~04/01/2004~ -~14209~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~14209~^~207~^0.35^10^0.02^~1~^~A~^^^4^0.08^0.59^6^0.28^0.40^~2, 3~^~04/01/2004~ -~14209~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~255~^99.39^10^0.01^~1~^~A~^^^4^99.13^99.58^6^99.34^99.43^~2, 3~^~04/01/2004~ -~14209~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~14209~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~303~^0.01^11^0.00^~1~^~A~^^^4^0.00^0.01^7^7.0e-03^8.0e-03^~1, 2, 3~^~04/01/2004~ -~14209~^~309~^0.02^11^1.0e-03^~1~^~A~^^^4^0.01^0.04^7^0.01^0.02^~2, 3~^~04/01/2004~ -~14209~^~323~^0.01^2^^~1~^~A~^^^2^0.00^0.01^^^^~1~^~04/01/2004~ -~14209~^~341~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2004~ -~14209~^~342~^0.01^2^^~1~^~A~^^^2^0.00^0.01^^^^~1~^~04/01/2004~ -~14209~^~343~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2004~ -~14209~^~344~^0.02^2^^~1~^~A~^^^2^0.02^0.02^^^^^~04/01/2004~ -~14209~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2004~ -~14209~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2004~ -~14209~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2004~ -~14209~^~418~^0.00^1^^~4~^^^^^^^^^^^~05/01/1986~ -~14209~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14209~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14210~^~203~^0.12^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~204~^0.18^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~205~^1.67^0^^~4~^~NC~^~14209~^^^^^^^^^~08/01/2012~ -~14210~^~207~^0.23^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~255~^97.80^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~269~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~303~^0.13^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~309~^0.05^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~323~^0.01^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~341~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~342~^0.01^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~343~^0.00^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~14210~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14210~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14211~^~203~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~14211~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~14211~^~205~^0.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~14211~^~207~^0.07^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14211~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~255~^99.72^3^4.0e-03^~1~^~A~^^^1^99.71^99.73^2^99.69^99.73^~2, 3~^~04/01/2015~ -~14211~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2015~ -~14211~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~303~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~309~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14214~^~203~^12.20^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~204~^0.50^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~205~^75.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14214~^~207~^8.80^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~255~^3.10^11^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~269~^0.00^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~303~^4.41^18^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~309~^0.35^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~323~^0.00^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~ -~14214~^~418~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14214~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14215~^~203~^0.10^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~205~^0.34^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~207~^0.17^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~255~^99.09^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~303~^0.04^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14216~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~205~^3.75^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~207~^0.02^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~14216~^~255~^96.23^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14216~^~269~^3.75^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~303~^0.15^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~203~^0.21^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14217~^~205~^13.16^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14217~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~210~^5.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~211~^3.60^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~212~^3.80^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14217~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14217~^~255~^86.50^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14217~^~269~^12.60^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14217~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14217~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14218~^~203~^11.60^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~204~^0.20^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~205~^76.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14218~^~207~^9.00^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~255~^3.20^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~303~^3.80^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~309~^0.11^4^0.13^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14218~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14219~^~203~^0.12^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~205~^0.43^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~207~^0.19^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~255~^98.93^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~303~^0.04^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14220~^~203~^0.29^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~204~^0.00^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14220~^~205~^13.68^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14220~^~207~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~210~^3.90^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~211~^4.30^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~212~^4.70^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14220~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14220~^~255~^86.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14220~^~269~^13.12^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14220~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~323~^0.27^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~418~^0.00^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~573~^0.00^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~578~^0.00^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14221~^~203~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~204~^0.00^0^^~4~^~BFZN~^~14038~^^^^^^^^^~05/01/2015~ -~14221~^~205~^0.80^0^^~1~^~A~^~14038~^^^^^^^^^~08/01/2015~ -~14221~^~207~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~211~^0.10^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14221~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14221~^~255~^99.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~269~^0.25^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14221~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14221~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14221~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14222~^~203~^9.30^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~204~^0.20^3^0.03^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~205~^78.90^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~14222~^~207~^7.50^3^0.18^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~255~^4.10^3^0.23^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~303~^4.76^3^0.62^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~309~^0.37^3^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14223~^~203~^0.09^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~205~^0.75^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~207~^0.17^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~255~^98.94^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~303~^0.05^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14224~^~203~^5.29^1^^~8~^~LC~^^^^^^^^^~1~^~01/01/2005~ -~14224~^~204~^15.87^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~ -~14224~^~205~^74.04^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14224~^~207~^3.10^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~255~^1.70^12^^~1~^^^^^^^^^^^~04/01/1999~ -~14224~^~269~^58.20^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~14224~^~303~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~01/01/2005~ -~14224~^~309~^0.96^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14224~^~418~^0.45^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14226~^~203~^0.73^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~204~^0.00^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14226~^~205~^5.77^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14226~^~207~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~210~^0.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~211~^1.70^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~212~^2.90^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14226~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14226~^~255~^93.80^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14226~^~269~^5.02^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14226~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~203~^0.22^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~204~^0.01^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14227~^~205~^11.98^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14227~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~210~^1.80^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~211~^4.50^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~212~^4.90^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14227~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14227~^~255~^88.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14227~^~269~^11.42^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14227~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~309~^0.04^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14227~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14231~^~203~^2.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~204~^19.20^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~14231~^~205~^74.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14231~^~207~^2.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~255~^1.50^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~269~^54.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14231~^~303~^0.33^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14233~^~203~^0.28^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14233~^~205~^11.96^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14233~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~210~^3.20^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14233~^~211~^3.90^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14233~^~212~^4.30^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~14233~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14233~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14233~^~255~^87.50^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14233~^~269~^11.40^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14233~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14233~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~323~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~418~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~573~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~578~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~203~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14234~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14234~^~205~^11.12^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~14234~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~210~^8.20^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~211~^1.10^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~212~^1.10^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14234~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14234~^~255~^88.70^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~269~^10.40^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14234~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14234~^~303~^0.03^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~309~^0.01^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~323~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~418~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~573~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~578~^0.00^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14235~^~203~^0.21^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~204~^0.00^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~205~^0.70^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~210~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~211~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~255~^99.10^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14235~^~269~^0.22^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14235~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~309~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14236~^~203~^6.01^26^0.33^~11~^~JO~^^^1^4.64^7.14^6^5.19^6.83^~4~^~12/01/2002~ -~14236~^~204~^2.52^26^0.59^~11~^~JO~^^^1^0.25^3.97^6^1.06^3.97^~4~^~12/01/2002~ -~14236~^~205~^78.42^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14236~^~207~^5.06^26^0.89^~11~^~JO~^^^1^3.25^8.95^6^2.87^7.24^~4~^~12/01/2002~ -~14236~^~255~^7.99^26^1.71^~11~^~JO~^^^1^0.85^14.91^6^3.79^12.17^~4~^~12/01/2002~ -~14236~^~269~^4.63^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~303~^4.60^11^1.61^~11~^~JO~^^^1^2.98^6.21^1^-15.92^25.11^~4~^~12/01/2002~ -~14236~^~309~^0.51^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14236~^~323~^0.98^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14237~^~203~^0.10^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~204~^0.04^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~205~^1.30^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~207~^0.18^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~255~^98.37^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~269~^0.08^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~303~^0.08^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14237~^~323~^0.02^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14238~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~204~^0.11^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~205~^15.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14238~^~207~^0.26^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~255~^83.78^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~269~^14.50^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14238~^~303~^0.07^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~323~^0.12^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14239~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14239~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14239~^~205~^10.07^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14239~^~207~^0.13^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~209~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~210~^2.11^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~211~^3.55^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~212~^3.91^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~214~^0.10^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~255~^85.74^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~14239~^~269~^9.77^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14239~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~303~^0.03^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~309~^0.01^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~323~^0.02^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14240~^~203~^0.20^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~205~^16.20^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14240~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~255~^83.50^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~303~^0.15^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~309~^0.04^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~203~^0.20^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~204~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~205~^14.00^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14241~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~255~^85.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~303~^0.01^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~309~^0.04^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14242~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~204~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~205~^13.52^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14242~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~211~^6.79^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~212~^4.97^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~214~^0.12^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~255~^86.17^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~269~^11.87^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14242~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~303~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14243~^~203~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~204~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~205~^4.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14243~^~207~^0.18^1^^~13~^~AI~^^^^0.18^0.18^^^^^~03/01/2003~ -~14243~^~255~^95.20^1^^~9~^~MC~^^^^95.20^95.20^^^^^~03/01/2003~ -~14243~^~269~^4.59^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14243~^~303~^0.04^1^^~9~^~MC~^^^^0.04^0.04^^^^^~03/01/2003~ -~14243~^~309~^0.02^1^^~9~^~MC~^^^^0.02^0.02^^^^^~03/01/2003~ -~14243~^~323~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14243~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14245~^~203~^2.93^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~204~^3.02^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~205~^14.20^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~207~^0.69^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~255~^79.16^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~269~^12.66^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~303~^0.12^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~309~^0.35^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~323~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~418~^0.39^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14246~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~205~^94.45^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14246~^~207~^0.47^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~255~^5.09^0^^~4~^~BFZN~^~14366~^^^^^^^^^~05/01/2015~ -~14246~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~303~^0.21^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~309~^0.03^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~207~^2.11^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~14247~^~255~^97.89^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~14247~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~203~^0.25^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14248~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14248~^~205~^0.77^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14248~^~207~^0.09^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~255~^92.88^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~14248~^~269~^0.09^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~303~^0.03^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~309~^0.01^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~323~^0.00^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~418~^0.02^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~573~^0.00^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~578~^0.00^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14250~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~205~^5.92^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~14250~^~207~^1.35^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14250~^~255~^89.00^0^^~4~^~O~^^^^^^^^^^~08/01/2015~ -~14250~^~269~^5.92^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14250~^~303~^0.06^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~309~^0.02^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14251~^~203~^0.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~205~^0.27^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14251~^~207~^0.12^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~255~^91.00^0^^~4~^~O~^^^^^^^^^^~06/01/2015~ -~14251~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14251~^~303~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~309~^0.01^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~418~^0.02^0^^~4~^~BFZN~^~14003~^^^^^^^^^~06/01/2015~ -~14251~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~203~^0.35^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14252~^~207~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~255~^94.50^0^^~4~^~O~^^^^^^^^^^~08/01/2015~ -~14252~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~303~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~309~^0.08^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~203~^0.36^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~205~^3.80^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14253~^~207~^0.16^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~211~^1.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~212~^2.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~255~^86.40^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14253~^~269~^3.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~303~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~309~^0.11^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~418~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14253~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~203~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~204~^0.01^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14255~^~205~^12.56^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14255~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~210~^3.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~211~^4.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~212~^4.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~255~^87.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14255~^~269~^12.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14255~^~303~^0.12^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~203~^0.19^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14256~^~205~^12.76^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14256~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~210~^0.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~211~^5.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~212~^6.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~255~^87.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14256~^~269~^12.20^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14256~^~303~^0.08^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~203~^0.22^2^^~1~^~A~^^^1^0.17^0.26^1^^^^~06/01/2015~ -~14257~^~204~^0.01^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14257~^~205~^4.72^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14257~^~207~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~06/01/2015~ -~14257~^~210~^0.20^2^^~1~^~A~^^^1^0.20^0.20^^^^^~06/01/2015~ -~14257~^~211~^1.80^2^^~1~^~A~^^^1^1.80^1.80^^^^^~06/01/2015~ -~14257~^~212~^1.75^2^^~1~^~A~^^^1^1.60^1.90^1^^^^~06/01/2015~ -~14257~^~213~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~06/01/2015~ -~14257~^~214~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~06/01/2015~ -~14257~^~255~^95.30^2^^~1~^~A~^^^1^95.30^95.30^^^^^~06/01/2015~ -~14257~^~269~^3.97^2^^~1~^~A~^^^1^3.82^4.12^1^^^^~06/01/2015~ -~14257~^~287~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~06/01/2015~ -~14257~^~303~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~06/01/2015~ -~14257~^~309~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14257~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~203~^0.13^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~204~^0.01^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14258~^~205~^11.88^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14258~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14258~^~210~^3.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~211~^3.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~212~^3.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14258~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14258~^~255~^87.80^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14258~^~269~^11.32^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14258~^~303~^0.05^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14258~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~203~^0.36^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~204~^0.02^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14259~^~205~^5.78^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14259~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14259~^~210~^0.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~211~^1.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~212~^2.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14259~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14259~^~255~^93.40^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14259~^~269~^5.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14259~^~303~^0.06^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~309~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~207~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2015~ -~14260~^~255~^99.93^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2015~ -~14260~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14260~^~309~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~205~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~207~^0.12^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~255~^99.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14261~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14261~^~303~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~309~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14262~^~203~^1.20^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~204~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~205~^40.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~207~^1.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~255~^57.40^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~269~^28.63^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14262~^~303~^3.94^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~309~^0.12^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~323~^0.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14263~^~203~^0.34^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~204~^0.03^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~205~^11.42^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~207~^0.38^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~255~^87.83^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~269~^8.13^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~303~^1.12^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~309~^0.04^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~323~^0.06^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14264~^~203~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~02/01/2003~ -~14264~^~204~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~02/01/2003~ -~14264~^~205~^11.97^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~14264~^~207~^0.05^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~255~^87.97^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~269~^11.29^0^^~4~^~BFZN~^~14267~^^^^^^^^^~12/01/2006~ -~14264~^~303~^0.09^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~309~^0.01^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~323~^0.02^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~418~^0.00^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14264~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14267~^~203~^0.00^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~204~^0.00^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~205~^11.94^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14267~^~207~^0.08^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14267~^~255~^87.97^6^0.23^~11~^~JO~^^^1^87.30^88.60^5^87.37^88.56^~4~^~02/01/2003~ -~14267~^~269~^11.29^1^^~13~^~AI~^^^^11.29^11.29^^^^^~12/01/2006~ -~14267~^~303~^0.09^18^0.01^~1~^~A~^^^7^0.00^0.17^17^0.05^0.11^~4~^~02/01/2003~ -~14267~^~309~^0.01^18^4.0e-03^~1~^~A~^^^7^0.00^0.04^17^3.0e-03^0.01^~4~^~02/01/2003~ -~14267~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14268~^~203~^0.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~204~^0.00^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~205~^41.40^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14268~^~207~^0.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~255~^58.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~303~^0.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~309~^0.07^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14269~^~203~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~205~^11.66^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~207~^0.13^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~255~^88.15^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~303~^0.09^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~309~^0.02^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14270~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~204~^13.33^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~205~^86.28^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14270~^~207~^0.23^0^^~4~^~BFFN~^~14231~^^^^^^^^^~06/01/2015~ -~14270~^~255~^0.16^0^^~4~^~BFFN~^~14231~^^^^^^^^^~06/01/2015~ -~14270~^~269~^66.67^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14276~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~205~^2.50^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~207~^0.01^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~14276~^~255~^97.49^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~14276~^~269~^2.50^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~309~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14277~^~203~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~02/01/2005~ -~14277~^~204~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~02/01/2005~ -~14277~^~205~^15.72^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14277~^~207~^0.08^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14277~^~255~^84.20^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~269~^13.06^2^^~8~^~LC~^^^1^13.06^13.06^1^^^^~12/01/2006~ -~14277~^~303~^0.07^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~309~^0.12^1^^~13~^~AI~^^^^0.12^0.12^^^^^~01/01/2003~ -~14277~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14278~^~203~^0.22^12^0.04^~1~^~A~^^^1^0.18^0.25^8^0.10^0.32^~2, 3~^~06/01/2015~ -~14278~^~204~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~14278~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14278~^~207~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~14278~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~255~^99.93^12^0.01^~1~^~A~^^^1^99.90^99.95^8^99.90^99.96^~2, 3~^~06/01/2015~ -~14278~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~06/01/2015~ -~14278~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14278~^~303~^0.02^12^0.00^~1~^~A~^^^1^0.02^0.02^6^0.01^0.01^~2, 3~^~06/01/2015~ -~14278~^~309~^0.01^12^1.0e-03^~1~^~A~^^^1^0.01^0.01^6^6.0e-03^0.01^~2, 3~^~06/01/2015~ -~14278~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~203~^0.00^0^^~4~^~BFZN~^~14211~^^^^^^^^^~06/01/2015~ -~14279~^~204~^0.00^0^^~4~^~BFZN~^~14211~^^^^^^^^^~06/01/2015~ -~14279~^~205~^0.25^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14279~^~207~^0.07^0^^~4~^~BFZN~^~14211~^^^^^^^^^~06/01/2015~ -~14279~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~255~^99.68^2^^~1~^~A~^^^1^99.67^99.69^1^^^^~06/01/2015~ -~14279~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~06/01/2015~ -~14279~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~303~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~309~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~14279~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~205~^0.83^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~207~^0.03^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~255~^99.14^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14280~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14280~^~303~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~309~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~205~^8.75^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~207~^0.03^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~255~^91.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14281~^~269~^7.92^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14281~^~303~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~309~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14282~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~205~^14.55^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~207~^0.12^7^0.03^~13~^~AI~^^^1^0.05^0.30^6^0.04^0.20^~4~^~01/01/2003~ -~14282~^~255~^85.30^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~14282~^~269~^14.11^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14282~^~303~^0.13^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~309~^0.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14284~^~203~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~14284~^~204~^0.34^13^0.02^~1~^~A~^^^1^0.15^0.43^2^0.23^0.44^~2, 3~^~06/01/2015~ -~14284~^~205~^12.25^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14284~^~207~^0.03^13^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~210~^0.55^9^0.34^~1~^~A~^^^1^0.00^1.58^2^-0.90^2.00^~1, 2, 3~^~06/01/2015~ -~14284~^~211~^5.68^9^0.16^~1~^~A~^^^1^5.12^6.35^2^5.04^6.32^~2, 3~^~06/01/2015~ -~14284~^~212~^5.17^9^0.16^~1~^~A~^^^1^4.66^5.46^2^4.49^5.85^~2, 3~^~06/01/2015~ -~14284~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~255~^87.39^13^0.46^~1~^~A~^^^1^86.06^88.01^2^85.41^89.35^~2, 3~^~06/01/2015~ -~14284~^~269~^11.41^9^0.05^~1~^~A~^^^1^11.20^11.77^3^11.24^11.57^~2, 3~^~06/01/2015~ -~14284~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~303~^0.04^13^1.0e-03^~1~^~A~^^^1^0.04^0.09^5^0.03^0.04^~1, 2, 3~^~06/01/2015~ -~14284~^~309~^0.02^13^2.0e-03^~1~^~A~^^^1^0.01^0.03^3^0.01^0.02^~2, 3~^~06/01/2015~ -~14285~^~203~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~204~^0.01^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~14285~^~205~^11.58^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14285~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~210~^6.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~211~^2.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~212~^2.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14285~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14285~^~255~^88.26^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~14285~^~269~^11.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~14285~^~303~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~309~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14286~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~14286~^~204~^0.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~205~^5.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~255~^94.80^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~269~^4.80^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~303~^0.20^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14287~^~203~^0.00^1^^~1~^^^^^^^^^^^~01/01/2009~ -~14287~^~204~^1.05^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~205~^97.57^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~207~^0.47^0^^~4~^~O~^^^^^^^^^^~10/01/2013~ -~14287~^~209~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14287~^~210~^74.45^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~211~^2.75^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~212~^17.50^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14287~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14287~^~255~^1.43^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~269~^94.70^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14287~^~303~^0.19^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~309~^0.10^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~323~^0.14^0^^~4~^~O~^^^^^^^^^^~01/01/2009~ -~14287~^~418~^0.00^1^^~1~^^^^^^^^^^^~10/01/2013~ -~14287~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~14287~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~14288~^~203~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~204~^0.04^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~205~^3.59^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~207~^0.11^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~209~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~210~^2.75^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~211~^0.10^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~212~^0.65^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~213~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~255~^96.26^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~269~^3.50^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~303~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~323~^0.01^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14291~^~203~^0.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~204~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~205~^0.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~255~^99.80^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~303~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14292~^~203~^0.22^2^^~1~^~A~^^^1^0.19^0.25^1^^^^~01/01/2009~ -~14292~^~204~^0.70^2^^~1~^~A~^^^1^0.60^0.80^1^^^^~01/01/2009~ -~14292~^~205~^49.89^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14292~^~207~^0.13^2^^~1~^~A~^^^1^0.12^0.14^1^^^^~01/01/2009~ -~14292~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~210~^9.70^2^^~1~^~A~^^^1^9.28^10.13^1^^^^~01/01/2009~ -~14292~^~211~^16.30^2^^~1~^~A~^^^1^13.64^18.97^1^^^^~01/01/2009~ -~14292~^~212~^17.99^2^^~1~^~A~^^^1^17.60^18.38^1^^^^~01/01/2009~ -~14292~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~214~^0.46^2^^~1~^~A~^^^1^0.33^0.59^1^^^^~01/01/2009~ -~14292~^~255~^49.06^2^^~1~^~A~^^^1^48.77^49.35^1^^^^~01/01/2009~ -~14292~^~269~^44.46^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14292~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~303~^0.09^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~01/01/2009~ -~14292~^~309~^0.04^2^^~1~^~A~^^^1^0.04^0.04^1^^^^~01/01/2009~ -~14292~^~323~^0.09^2^^~1~^~A~^^^1^0.07^0.10^1^^^^~01/01/2009~ -~14292~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~01/01/2009~ -~14292~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14292~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14292~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14292~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14293~^~203~^0.07^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~204~^0.04^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~205~^10.42^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~207~^0.12^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~255~^89.35^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~269~^9.98^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~303~^0.16^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~309~^0.02^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~323~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14294~^~203~^0.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~204~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~205~^0.10^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~255~^99.80^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~269~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~303~^0.00^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14296~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~01/01/2009~ -~14296~^~204~^1.01^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14296~^~205~^97.90^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~14296~^~207~^0.57^2^^~1~^~A~^^^1^0.54^0.60^1^^^^~01/01/2009~ -~14296~^~209~^0.04^2^^~1~^~A~^^^1^0.00^0.07^1^^^~1~^~01/01/2009~ -~14296~^~210~^72.16^1^^~1~^~A~^^^^^^^^^^~10/01/2013~ -~14296~^~211~^2.26^2^^~1~^~A~^^^1^1.55^2.83^1^^^^~10/01/2013~ -~14296~^~212~^22.73^2^^~1~^~A~^^^1^18.20^25.78^1^^^^~10/01/2013~ -~14296~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14296~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14296~^~255~^0.52^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14296~^~269~^97.15^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14296~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14296~^~303~^0.17^2^^~1~^~A~^^^1^0.16^0.17^1^^^^~01/01/2009~ -~14296~^~309~^0.03^2^^~1~^~A~^^^1^0.03^0.03^1^^^^~01/01/2009~ -~14296~^~323~^0.08^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~418~^0.00^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14296~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14296~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14297~^~203~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~204~^0.07^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~205~^6.90^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~207~^0.13^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~209~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~210~^4.94^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~211~^0.15^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~212~^1.55^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~213~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~214~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~255~^92.87^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~269~^6.87^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14297~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~303~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~203~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~205~^13.79^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~207~^0.13^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~255~^86.08^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~269~^13.27^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~303~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~309~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14305~^~203~^0.21^3^0.05^~11~^~JO~^^^1^0.16^0.31^2^-3.0e-03^0.42^~4~^~01/01/2003~ -~14305~^~204~^0.12^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~205~^8.05^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14305~^~207~^0.12^3^0.01^~11~^~JO~^^^1^0.10^0.15^2^0.04^0.18^~4~^~01/01/2003~ -~14305~^~255~^91.15^4^2.97^~11~^~JO~^^^1^85.80^96.41^3^81.68^100.62^~4~^~01/01/2003~ -~14305~^~269~^8.05^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~14305~^~303~^0.06^4^0.02^~11~^~JO~^^^1^0.01^0.10^3^-0.02^0.13^~4~^~01/01/2003~ -~14305~^~309~^0.02^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14305~^~418~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~14305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14305~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14309~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~205~^93.33^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14309~^~207~^5.24^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14309~^~255~^1.43^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14309~^~269~^63.64^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~303~^16.36^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~309~^13.64^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~323~^12.27^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~418~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~573~^12.27^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14310~^~203~^3.67^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~204~^3.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~205~^10.67^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~207~^0.97^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~255~^81.49^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~269~^8.37^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~303~^1.36^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~309~^0.41^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~418~^0.40^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14311~^~203~^14.29^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14311~^~204~^9.52^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14311~^~205~^71.21^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14311~^~207~^2.98^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~255~^2.00^6^0.13^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~269~^47.62^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14311~^~303~^0.70^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~309~^0.99^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~323~^0.36^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~418~^0.80^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14312~^~203~^3.86^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~204~^3.62^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~205~^10.23^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~207~^0.89^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~255~^81.40^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~269~^9.56^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~303~^0.09^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~309~^0.43^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~418~^0.46^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14315~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~205~^92.96^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14315~^~207~^5.76^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14315~^~255~^1.28^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~14315~^~269~^72.73^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~303~^16.36^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~309~^13.64^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~323~^12.27^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~418~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14316~^~203~^3.29^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~204~^3.26^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~205~^11.19^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~207~^0.99^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~255~^81.26^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~269~^10.49^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14316~^~303~^1.42^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~309~^0.43^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~323~^0.07^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~418~^0.42^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14317~^~203~^5.10^9^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~204~^4.76^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14317~^~205~^86.94^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14317~^~207~^1.90^6^0.02^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~255~^1.30^6^0.06^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~269~^66.67^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14317~^~303~^2.28^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~309~^0.80^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~323~^0.17^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~418~^0.42^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14318~^~203~^3.37^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~204~^3.29^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~205~^11.20^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~207~^0.79^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~255~^81.34^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~269~^6.68^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~303~^0.21^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~309~^0.41^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~323~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~418~^0.42^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14323~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~4~^~02/01/2005~ -~14323~^~204~^0.07^6^0.02^~1~^~A~^^^1^0.02^0.13^5^8.0e-03^0.12^~1, 4~^~02/01/2005~ -~14323~^~205~^12.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14323~^~207~^0.11^6^0.02^~1~^~A~^^^1^0.07^0.22^5^0.04^0.17^~1, 4~^~02/01/2005~ -~14323~^~255~^87.47^6^0.26^~1~^~A~^^^1^86.77^88.61^5^86.78^88.16^~4~^~02/01/2005~ -~14323~^~269~^11.03^6^0.20^~1~^~A~^^^1^10.34^11.54^5^10.49^11.56^~4~^~12/01/2006~ -~14323~^~303~^0.04^6^6.0e-03^~1~^~A~^^^1^0.04^0.07^5^0.02^0.05^~1, 4~^~02/01/2005~ -~14323~^~309~^0.02^6^4.0e-03^~1~^~A~^^^1^0.01^0.03^5^0.01^0.03^~1, 4~^~02/01/2005~ -~14323~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14323~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14327~^~203~^0.30^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~204~^0.10^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~205~^12.70^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14327~^~207~^0.20^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~255~^86.70^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~269~^12.06^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~14327~^~303~^0.10^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~309~^0.04^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14327~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14334~^~203~^0.20^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~204~^0.10^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~205~^11.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14334~^~207~^0.20^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~255~^87.90^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~269~^11.52^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~14334~^~303~^0.31^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~309~^0.06^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14334~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14334~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14341~^~203~^1.30^15^0.00^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~204~^0.00^15^0.00^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~205~^11.80^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14341~^~207~^0.10^22^0.00^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~255~^86.90^15^0.02^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~269~^11.59^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~14341~^~303~^0.27^15^0.02^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~309~^0.06^15^2.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14341~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14341~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14341~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14347~^~203~^3.37^2^^~1~^~A~^^^2^3.19^3.56^^^^^~04/01/2005~ -~14347~^~204~^6.52^2^^~1~^~A~^^^2^4.30^8.74^^^^^~04/01/2005~ -~14347~^~205~^19.59^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~207~^0.86^2^^~1~^~A~^^^2^0.82^0.91^^^^^~04/01/2005~ -~14347~^~255~^69.65^2^^~1~^~A~^^^2^68.13^71.18^1^^^^~04/01/2005~ -~14347~^~269~^13.63^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14347~^~303~^0.46^2^^~1~^~A~^^^2^0.42^0.49^^^^^~04/01/2005~ -~14347~^~309~^0.57^2^^~1~^~A~^^^2^0.46^0.67^^^^^~04/01/2005~ -~14347~^~323~^0.25^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14347~^~418~^0.22^2^^~1~^~A~^^^2^0.07^0.36^^^^~1~^~04/01/2005~ -~14347~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14347~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14350~^~203~^0.10^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~204~^0.20^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~205~^99.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14350~^~207~^0.20^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~255~^0.40^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~269~^95.45^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14350~^~303~^0.44^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~309~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14350~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14351~^~203~^3.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~204~^3.10^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~205~^12.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14351~^~207~^0.70^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~255~^80.90^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~303~^0.08^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~309~^0.35^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~418~^0.33^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14352~^~203~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~204~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~205~^0.30^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~207~^0.04^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14352~^~255~^99.70^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14352~^~303~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~309~^0.02^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~323~^0.00^0^^~4~^~BFZN~^~14355~^^^^^^^^^~02/01/2003~ -~14352~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14353~^~203~^20.21^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~204~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~205~^58.66^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14353~^~207~^16.04^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~209~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~255~^5.09^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~269~^5.53^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~303~^2.26^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~309~^1.69^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~323~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~ -~14353~^~418~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~573~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~578~^0.00^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14355~^~203~^0.00^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~204~^0.00^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14355~^~207~^0.04^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14355~^~255~^99.70^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14355~^~303~^0.02^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~309~^0.02^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~02/01/2003~ -~14355~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~02/01/2003~ -~14355~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~02/01/2003~ -~14355~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14355~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14356~^~203~^3.30^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~204~^0.60^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~205~^85.40^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~207~^7.20^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~255~^3.50^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~269~^1.88^0^^~4~^~BFZN~^~14375~^^^^^^^^^~05/01/2007~ -~14356~^~303~^8.87^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~309~^0.89^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~418~^0.00^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14356~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14357~^~203~^0.12^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~204~^0.73^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~205~^98.55^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~207~^0.47^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~255~^0.13^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~269~^95.29^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~303~^0.21^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~309~^0.03^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~323~^0.00^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~ -~14357~^~418~^0.00^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14366~^~203~^20.21^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14366~^~205~^58.66^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14366~^~207~^16.04^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14366~^~255~^5.09^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~269~^5.53^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~303~^2.26^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~309~^1.69^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14366~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14366~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14366~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14367~^~203~^0.06^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~205~^0.17^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~207~^0.15^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~255~^99.62^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~269~^0.02^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~303~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14367~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14368~^~203~^7.40^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~204~^0.18^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~205~^78.52^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14368~^~207~^9.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~255~^4.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~269~^4.52^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~303~^0.75^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~309~^0.98^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14368~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~203~^0.12^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~204~^0.73^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~205~^98.55^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14370~^~207~^0.47^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~14370~^~255~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~269~^95.29^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~14370~^~303~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~309~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14370~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14371~^~203~^0.01^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~204~^0.06^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~205~^8.61^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~207~^0.13^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~255~^91.18^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~269~^8.33^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~303~^0.02^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14371~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14375~^~203~^3.30^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14375~^~204~^0.60^1^^~9~^~MC~^^^^0.60^0.60^^^^^~12/01/2006~ -~14375~^~205~^85.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14375~^~207~^7.20^1^^~9~^~MC~^^^^7.20^7.20^^^^^~12/01/2006~ -~14375~^~255~^3.50^1^^~9~^~MC~^^^^3.50^3.50^^^^^~12/01/2006~ -~14375~^~269~^1.88^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~14375~^~303~^8.87^1^^~9~^~MC~^^^^8.87^8.87^^^^^~12/01/2006~ -~14375~^~309~^0.89^1^^~9~^~MC~^^^^0.89^0.89^^^^^~12/01/2006~ -~14375~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14375~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14376~^~203~^0.02^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~205~^0.44^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~207~^0.14^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~255~^99.41^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~269~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~303~^0.05^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~309~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14376~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14381~^~203~^0.00^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~204~^0.00^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14381~^~207~^0.00^21^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~255~^99.70^21^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~303~^0.08^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~309~^0.04^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14381~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14381~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14381~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14384~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~207~^0.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~255~^99.90^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~303~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~309~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~207~^0.00^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~255~^100.00^3^2.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~303~^0.01^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~309~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14390~^~203~^1.21^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~204~^0.23^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14390~^~205~^5.61^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~207~^0.57^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~255~^92.38^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~269~^2.93^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~303~^0.39^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~309~^0.27^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~418~^0.09^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14400~^~203~^0.07^5^0.00^~1~^~A~^^^4^0.00^0.30^^^^~2, 3~^~04/01/2005~ -~14400~^~204~^0.02^5^0.00^~1~^~A~^^^4^0.00^0.13^^^^~1, 2, 3~^~04/01/2005~ -~14400~^~205~^9.56^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14400~^~207~^0.04^7^0.01^~1~^~A~^^^4^0.00^0.12^3^-0.01^0.09^~1, 2, 3~^~04/01/2005~ -~14400~^~255~^90.31^7^0.03^~1~^~A~^^^4^89.47^91.77^3^90.20^90.41^~2, 3~^~04/01/2005~ -~14400~^~269~^8.97^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~14400~^~303~^0.11^7^6.0e-03^~1~^~A~^^^4^0.00^0.48^3^0.09^0.13^~1, 2, 3~^~04/01/2005~ -~14400~^~309~^0.02^1^^~1~^~A~^^^4^^^^^^~1~^~05/01/2007~ -~14400~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14400~^~418~^0.00^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14400~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14405~^~203~^0.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~204~^0.70^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~205~^43.10^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14405~^~207~^0.50^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~255~^55.50^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~303~^0.80^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~309~^0.70^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14406~^~203~^0.07^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~204~^0.17^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~205~^11.40^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14406~^~207~^0.20^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~255~^88.16^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~14406~^~269~^11.40^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14406~^~303~^0.20^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~309~^0.17^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14407~^~203~^0.00^5^0.00^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~14407~^~204~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~205~^98.94^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~14407~^~207~^0.92^5^^~9~^~MC~^^^^0.90^1.00^^^^^~02/01/2003~ -~14407~^~255~^0.14^5^^~9~^~MC~^^^^0.10^0.20^^^^^~02/01/2003~ -~14407~^~269~^92.31^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14407~^~303~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~309~^0.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14407~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14407~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14408~^~203~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~205~^12.65^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~207~^0.20^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~255~^87.15^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~269~^11.80^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~303~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~309~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14409~^~203~^3.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~204~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~205~^85.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~14409~^~207~^8.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~255~^1.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~269~^2.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~303~^0.07^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~309~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14411~^~203~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2006~ -~14411~^~204~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14411~^~205~^0.00^0^^~4~^~NC~^~14429~^^^^^^^^^~04/01/2006~ -~14411~^~207~^0.10^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14411~^~255~^99.90^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14411~^~269~^0.00^0^^~7~^~Z~^~14429~^^^^^^^^^~05/01/2007~ -~14411~^~303~^0.00^287^0.00^~1~^~A~^^^1^0.00^0.07^286^1.0e-03^2.0e-03^~1, 2, 3~^~04/01/2006~ -~14411~^~309~^0.01^287^1.0e-03^~1~^~A~^^^1^0.00^0.07^286^4.0e-03^6.0e-03^~1, 2, 3~^~04/01/2006~ -~14411~^~323~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14412~^~203~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14412~^~204~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~04/01/2006~ -~14412~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14412~^~207~^0.10^0^^~4~^~BFZN~^~14429~^^^^^^^^^~11/01/2005~ -~14412~^~255~^99.90^0^^~4~^~BFZN~^~14429~^^^^^^^^^~11/01/2005~ -~14412~^~303~^0.00^50^^~1~^~A~^^^1^0.00^0.01^^^^~1, 2~^~11/01/2005~ -~14412~^~309~^0.01^50^^~1~^~A~^^^1^0.00^0.07^^^^~1, 2~^~11/01/2005~ -~14414~^~203~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~204~^0.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~205~^46.80^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~207~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~255~^31.00^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14414~^~269~^38.30^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14414~^~303~^0.06^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~309~^0.03^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14415~^~203~^2.80^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~204~^15.70^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~205~^20.90^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14415~^~207~^0.40^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~255~^46.50^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~269~^19.76^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14415~^~303~^0.13^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~309~^0.16^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~323~^0.45^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14415~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14416~^~203~^0.11^7^^~1~^~A~^^^4^0.00^0.22^^^^~2, 3~^~04/01/2005~ -~14416~^~204~^0.03^7^^~1~^~A~^^^4^0.00^0.08^^^^~1, 2, 3~^~04/01/2005~ -~14416~^~205~^0.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14416~^~207~^0.03^7^^~1~^~A~^^^4^0.00^0.09^^^^~1, 2, 3~^~04/01/2005~ -~14416~^~210~^0.00^3^^~1~^~A~^^^3^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~14416~^~255~^99.54^7^^~1~^~A~^^^4^98.85^99.99^^^^~2, 3~^~04/01/2005~ -~14416~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~14416~^~303~^0.11^6^^~1~^~A~^^^3^0.00^0.40^^^^~1, 2, 3~^~04/01/2005~ -~14416~^~309~^0.01^6^^~1~^~A~^^^3^0.00^0.03^^^^~1, 2, 3~^~03/01/2006~ -~14416~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~14416~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14416~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14416~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14421~^~203~^3.30^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~204~^3.30^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~205~^5.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14421~^~207~^0.80^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~255~^87.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~303~^0.11^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~309~^0.38^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~418~^0.35^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~203~^25.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~204~^2.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~205~^51.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14422~^~207~^8.20^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~255~^12.80^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~269~^32.94^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~ -~14422~^~303~^7.70^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~309~^3.60^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~323~^0.04^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~418~^2.03^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14422~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14422~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~14423~^~203~^2.19^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~204~^0.23^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~205~^4.51^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~207~^0.81^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~255~^92.26^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~269~^2.89^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~303~^0.68^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~309~^0.32^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~418~^0.18^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14424~^~203~^0.10^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~204~^0.50^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~205~^42.90^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14424~^~207~^1.30^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~255~^55.20^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~269~^11.70^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~14424~^~303~^0.26^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~309~^0.06^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14425~^~203~^0.03^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~204~^0.14^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~205~^12.21^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~207~^0.44^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~255~^87.18^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~269~^11.91^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~309~^0.02^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14425~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14426~^~203~^0.40^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~204~^0.00^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~205~^39.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~14426~^~207~^1.40^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~255~^59.20^1^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~269~^38.05^0^^~4~^~BFCN~^^^^^^^^^^~12/01/2006~ -~14426~^~303~^0.26^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~309~^0.12^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~323~^0.09^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~ -~14426~^~418~^0.00^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14426~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14427~^~203~^0.12^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~205~^11.32^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~207~^0.48^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~255~^88.08^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~269~^11.05^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~303~^0.08^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~309~^0.04^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~323~^0.02^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14428~^~203~^3.40^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~204~^2.80^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~205~^18.90^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14428~^~207~^0.90^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~255~^74.10^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~303~^0.11^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~309~^0.36^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~418~^0.31^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~204~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~14429~^~207~^0.10^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~255~^99.90^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~303~^0.00^236^0.00^~1~^~A~^^^1^0.00^0.07^235^1.0e-03^3.0e-03^~1, 2, 3~^~04/01/2006~ -~14429~^~309~^0.00^236^1.0e-03^~1~^~A~^^^1^0.00^0.06^235^4.0e-03^6.0e-03^~1, 2, 3~^~04/01/2006~ -~14429~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~14429~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14429~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14430~^~203~^0.05^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~204~^0.00^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~205~^51.45^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~14430~^~207~^0.10^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~255~^48.40^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~269~^42.50^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~14430~^~303~^0.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~309~^0.07^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14430~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14431~^~203~^0.01^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~205~^11.81^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~207~^0.10^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~255~^88.08^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~269~^9.76^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~303~^0.07^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~309~^0.02^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14432~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14432~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14432~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14432~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~255~^99.98^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14432~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14433~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14433~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14433~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~255~^99.97^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14433~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14434~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14434~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~255~^99.96^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14434~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14436~^~203~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~204~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~205~^13.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14436~^~207~^1.40^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~255~^85.40^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~269~^8.02^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~14436~^~303~^0.05^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~309~^0.05^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~323~^0.04^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14436~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2005~ -~14436~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14437~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14437~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14437~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14437~^~207~^0.10^2^^~13~^~AI~^^^^^^^^^^~03/01/2005~ -~14437~^~255~^100.00^2^^~13~^~AI~^^^^^^^^^^~03/01/2005~ -~14438~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14438~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14438~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14438~^~207~^0.10^4^^~13~^~AI~^^^^^^^^^^~03/01/2005~ -~14438~^~255~^100.00^4^^~13~^~AI~^^^^^^^^^^~03/01/2005~ -~14439~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14439~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~14439~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~14439~^~207~^0.10^4^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14439~^~255~^100.00^4^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14440~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14440~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~205~^0.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14440~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~255~^99.97^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14440~^~303~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14440~^~309~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14450~^~204~^1.23^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~205~^94.11^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14450~^~207~^2.15^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~210~^59.90^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~211~^20.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~213~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~214~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~255~^2.51^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~269~^80.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14450~^~303~^0.34^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~309~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14460~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14460~^~205~^6.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~14460~^~207~^0.14^2^^~1~^~A~^^^1^0.07^0.20^^^^~1~^~03/01/2007~ -~14460~^~210~^0.92^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~211~^2.19^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~212~^1.82^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~213~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~214~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~255~^93.38^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~14460~^~269~^5.24^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~14460~^~303~^0.05^2^^~1~^~A~^^^1^0.02^0.07^^^^^~03/01/2007~ -~14460~^~309~^0.01^2^^~1~^~A~^^^1^0.00^0.01^^^^^~03/01/2007~ -~14460~^~323~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14460~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~14460~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~203~^0.00^3^0.00^~8~^~LC~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2007~ -~14461~^~204~^0.05^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~205~^7.84^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~14461~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~210~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~211~^2.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~212~^3.22^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~213~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~214~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~255~^91.91^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~269~^6.11^3^0.04^~8~^~LC~^^^1^6.02^6.16^2^5.91^6.30^~4~^~03/01/2007~ -~14461~^~303~^0.09^2^^~1~^~A~^^^1^0.02^0.15^^^^^~11/01/2007~ -~14461~^~309~^0.01^2^^~1~^~A~^^^1^0.00^0.01^^^^~1~^~11/01/2007~ -~14461~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~418~^0.91^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14461~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~578~^0.91^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14462~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2008~ -~14462~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2008~ -~14462~^~205~^1.14^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~14462~^~207~^0.08^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14462~^~255~^98.78^2^^~1~^~A~^^^1^98.78^98.79^1^^^^~04/01/2005~ -~14462~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14462~^~303~^0.03^2^^~1~^~A~^^^1^0.01^0.05^1^^^~1~^~04/01/2005~ -~14462~^~309~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2005~ -~14462~^~323~^1.67^2^^~1~^~A~^^^1^1.59^1.74^1^^^^~08/01/2009~ -~14462~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~14462~^~573~^1.67^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14462~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2009~ -~14475~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14475~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14475~^~205~^9.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14475~^~207~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14475~^~255~^90.15^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~269~^9.63^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14475~^~309~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14476~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14476~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14476~^~205~^8.81^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14476~^~207~^0.12^2^^~1~^~A~^^^1^0.07^0.17^1^^^~1~^~02/01/2005~ -~14476~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2005~ -~14476~^~255~^91.06^2^^~1~^~A~^^^1^91.03^91.09^1^^^^~02/01/2005~ -~14476~^~269~^8.69^2^^~1~^~A~^^^1^8.34^9.03^1^^^^~02/01/2005~ -~14476~^~303~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2005~ -~14476~^~309~^0.01^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~02/01/2005~ -~14530~^~203~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~204~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~205~^21.40^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14530~^~207~^0.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~255~^78.20^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~303~^0.11^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~309~^0.07^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14530~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14531~^~203~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~204~^0.03^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14531~^~205~^13.17^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~14531~^~207~^0.10^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~255~^72.60^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~303~^0.08^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~309~^0.06^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~418~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~204~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~207~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~255~^60.30^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~303~^0.04^128^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~309~^0.04^66^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14533~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~204~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14533~^~255~^57.50^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~303~^0.04^128^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~309~^0.04^66^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14534~^~203~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~204~^0.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~205~^32.20^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14534~^~207~^0.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~255~^41.40^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~269~^32.20^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~14534~^~303~^0.06^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~309~^0.03^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14534~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14536~^~203~^0.20^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~204~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~205~^11.67^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~14536~^~207~^0.30^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~210~^0.00^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~14536~^~211~^0.58^6^0.04^~13~^~AI~^^^1^0.46^0.71^5^0.48^0.68^~4~^~11/01/2002~ -~14536~^~212~^0.47^6^0.01^~13~^~AI~^^^1^0.40^0.52^5^0.42^0.51^~4~^~11/01/2002~ -~14536~^~214~^0.10^2^^~13~^~AI~^^^1^0.09^0.11^1^^^^~11/01/2002~ -~14536~^~255~^72.53^6^0.17^~13~^~AI~^^^1^71.89^73.16^5^72.08^72.97^~4~^~11/01/2002~ -~14536~^~269~^1.09^6^0.04^~13~^~AI~^^^1^0.94^1.22^5^0.98^1.18^~4~^~11/01/2002~ -~14536~^~303~^0.24^32^0.03^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~309~^0.07^55^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~14536~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14536~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14537~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~204~^0.00^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14537~^~207~^0.10^3^0.01^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~255~^99.80^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~303~^0.04^10^9.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~309~^0.05^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14538~^~203~^25.10^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~204~^3.00^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~205~^58.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14538~^~207~^10.50^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~255~^3.40^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~269~^55.58^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~303~^4.96^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~309~^3.44^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~323~^0.21^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~418~^2.78^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14541~^~203~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~204~^0.01^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~205~^9.47^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~207~^0.17^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~255~^90.35^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~269~^9.23^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~303~^0.05^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~309~^0.02^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14542~^~203~^0.22^2^^~1~^~A~^^^1^0.19^0.25^1^^^^~01/01/2009~ -~14542~^~204~^0.69^2^^~1~^~A~^^^1^0.63^0.76^1^^^^~01/01/2009~ -~14542~^~205~^48.86^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14542~^~207~^0.14^2^^~1~^~A~^^^1^0.13^0.16^1^^^^~01/01/2009~ -~14542~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~210~^7.39^2^^~1~^~A~^^^1^4.59^10.20^1^^^^~01/01/2009~ -~14542~^~211~^18.57^2^^~1~^~A~^^^1^15.08^22.06^1^^^^~01/01/2009~ -~14542~^~212~^20.06^2^^~1~^~A~^^^1^19.76^20.36^1^^^^~01/01/2009~ -~14542~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~214~^0.44^2^^~1~^~A~^^^1^0.34^0.54^1^^^^~01/01/2009~ -~14542~^~255~^50.09^2^^~1~^~A~^^^1^49.63^50.54^1^^^^~01/01/2009~ -~14542~^~269~^46.46^2^^~1~^~A~^^^1^45.98^46.95^1^^^^~01/01/2009~ -~14542~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~303~^0.08^2^^~1~^~A~^^^1^0.08^0.08^^^^^~01/01/2009~ -~14542~^~309~^0.03^2^^~1~^~A~^^^1^0.03^0.04^1^^^^~01/01/2009~ -~14542~^~323~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~01/01/2009~ -~14542~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~01/01/2009~ -~14542~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2009~ -~14542~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~14542~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14543~^~203~^0.05^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~204~^0.15^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~205~^10.81^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~207~^0.11^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~209~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~210~^1.64^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~211~^4.11^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~212~^4.44^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~213~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~214~^0.10^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~255~^88.88^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~269~^10.28^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~287~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~303~^0.02^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~323~^0.02^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14544~^~203~^0.00^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~204~^0.00^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14544~^~207~^0.02^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14544~^~255~^99.70^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~303~^0.01^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~309~^0.01^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14545~^~203~^0.00^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~204~^0.00^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14545~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~14545~^~255~^99.70^21^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~303~^0.08^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~309~^0.04^32^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14545~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14545~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14545~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14548~^~203~^0.60^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~204~^0.30^4^0.07^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~205~^97.60^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14548~^~207~^1.10^4^0.38^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~255~^0.30^4^0.04^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~303~^0.16^4^8.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~309~^0.10^4^4.0e-03^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14550~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~204~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~ -~14550~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14550~^~255~^63.90^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~303~^0.04^128^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~309~^0.04^66^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14550~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14550~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14550~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14551~^~203~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~204~^0.00^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~205~^0.00^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~207~^0.01^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~14551~^~255~^62.10^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~303~^0.04^128^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~309~^0.04^66^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14551~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14551~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14551~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14552~^~203~^0.00^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~204~^0.00^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~205~^10.70^0^^~4~^^^^^^^^^^^~04/01/2001~ -~14552~^~207~^0.10^0^^~4~^~BFSN~^~14400~^^^^^^^^^~02/01/2005~ -~14552~^~255~^89.20^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~269~^10.70^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14552~^~303~^0.10^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~309~^0.16^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~14552~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14552~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14553~^~203~^0.50^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~204~^0.00^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~205~^1.10^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~207~^0.20^0^^~4~^~BFZN~^~14084~^^^^^^^^^~01/01/2003~ -~14553~^~255~^98.20^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~269~^1.10^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~14553~^~303~^0.40^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~309~^0.08^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~14553~^~418~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~14553~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14553~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14555~^~203~^0.00^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~204~^0.00^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~14555~^~207~^0.07^8^0.01^~11~^~JO~^^^3^0.00^0.10^13^0.04^0.09^~1, 4~^~01/01/2005~ -~14555~^~255~^99.98^8^8.0e-03^~11~^~JO~^^^3^99.90^100.00^13^99.96^100.00^~4~^~01/01/2005~ -~14555~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~303~^0.00^6^2.0e-03^~6~^~JA~^^^2^0.00^0.01^4^-4.0e-03^8.0e-03^~1, 4~^~01/01/2005~ -~14555~^~309~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~01/01/2005~ -~14555~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~14555~^~418~^0.00^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~14555~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~14557~^~203~^4.55^1^^~8~^~LC~^^^^^^^^^~1~^~10/01/2003~ -~14557~^~204~^2.27^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~205~^90.28^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14557~^~207~^1.80^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2003~ -~14557~^~255~^1.10^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~269~^81.82^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14557~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~309~^6.82^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~323~^0.04^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14557~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14558~^~203~^3.27^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~204~^3.17^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~205~^11.87^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~207~^0.77^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~255~^80.93^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~269~^11.59^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~303~^0.03^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~309~^0.91^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~323~^0.07^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~418~^0.41^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14559~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14559~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~14559~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~14559~^~207~^0.05^11^0.05^~1~^~A~^^^2^0.00^0.10^1^-0.58^0.68^~1, 4~^~09/01/2004~ -~14559~^~255~^99.97^11^0.03^~1~^~A~^^^2^99.93^100.00^1^99.52^100.41^~4~^~09/01/2004~ -~14559~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~14559~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~14599~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14599~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~ -~14599~^~205~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14599~^~207~^0.14^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~255~^99.89^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~14599~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14599~^~303~^0.05^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~309~^0.01^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~323~^0.57^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~418~^0.17^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~ -~14599~^~573~^0.00^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~578~^0.00^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14601~^~203~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~207~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~255~^99.79^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~303~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~309~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14602~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2005~ -~14602~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14602~^~205~^2.51^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~14602~^~207~^0.27^142^3.0e-03^~1~^~A~^^^1^0.19^0.42^141^0.26^0.28^~4~^~06/01/2005~ -~14602~^~255~^86.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~14602~^~269~^0.62^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~303~^0.46^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~309~^0.14^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14604~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2007~ -~14604~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2007~ -~14604~^~205~^0.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~14604~^~207~^0.02^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~14604~^~255~^99.85^2^^~1~^~A~^^^1^99.83^99.86^1^^^^~02/01/2007~ -~14604~^~269~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~303~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2007~ -~14604~^~309~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^^~02/01/2007~ -~14604~^~323~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~418~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~573~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~578~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~14605~^~204~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^^^^^~02/01/2007~ -~14605~^~205~^5.49^2^^~8~^~LC~^^^1^5.49^5.49^^^^^~02/01/2007~ -~14605~^~207~^0.07^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~255~^94.44^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~14605~^~269~^5.49^2^^~8~^~LC~^^^1^5.49^5.49^^^^^~02/01/2007~ -~14605~^~303~^0.00^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~309~^0.32^2^^~8~^~LC~^^^1^0.00^0.63^^^^^~02/01/2007~ -~14605~^~323~^1.90^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14605~^~418~^0.25^2^^~8~^~LC~^^^1^0.25^0.25^^^^^~03/01/2009~ -~14605~^~573~^1.90^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~14605~^~578~^0.25^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~14607~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~205~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~207~^0.07^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14607~^~255~^98.70^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14607~^~269~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14607~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~205~^1.26^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~207~^0.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14608~^~255~^98.80^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14608~^~269~^0.84^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14608~^~323~^1.13^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~205~^1.26^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~207~^0.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14609~^~255~^98.80^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14609~^~269~^0.84^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~303~^0.30^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14609~^~323~^1.13^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~205~^1.26^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~207~^0.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14610~^~255~^98.80^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14610~^~269~^0.42^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14610~^~323~^1.13^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~205~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~207~^0.39^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14611~^~255~^92.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14611~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14611~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~205~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~207~^0.38^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14612~^~255~^91.80^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14612~^~269~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14612~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~205~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~207~^0.28^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14613~^~255~^91.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14613~^~269~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14613~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~205~^8.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~207~^0.17^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14614~^~255~^91.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14614~^~269~^8.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14614~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~205~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~207~^0.69^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14615~^~255~^91.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14615~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14615~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~205~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~207~^0.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14616~^~255~^92.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14616~^~269~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14616~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~205~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~207~^0.39^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14617~^~255~^92.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14617~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14617~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~205~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~207~^0.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14618~^~255~^92.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14618~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14618~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~205~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~207~^0.19^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14619~^~255~^92.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14619~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14619~^~323~^1.11^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~203~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~205~^11.38^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~207~^0.41^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14620~^~255~^87.80^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14620~^~269~^10.57^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~323~^0.55^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~203~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~205~^11.79^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~207~^0.10^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~14621~^~255~^87.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14621~^~269~^10.16^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~323~^0.55^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~203~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~205~^11.38^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~207~^0.21^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~14622~^~255~^88.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~14622~^~269~^10.16^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~303~^0.15^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~323~^0.55^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14623~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~205~^10.98^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~207~^0.62^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~14623~^~255~^88.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~14623~^~269~^10.57^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~303~^0.81^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~323~^1.83^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14625~^~203~^0.25^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~204~^0.08^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~205~^12.08^1^^~8~^~LC~^^^1^12.08^12.08^0^^^^~08/01/2008~ -~14625~^~207~^0.28^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~255~^87.30^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~14625~^~269~^12.08^1^^~8~^~LC~^^^1^12.08^12.08^0^^^^~08/01/2008~ -~14625~^~303~^0.02^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~309~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~418~^0.60^1^^~8~^~LC~^^^1^0.60^0.60^0^^^^~08/01/2009~ -~14625~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~578~^0.43^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~14626~^~203~^0.25^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~204~^0.08^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~205~^12.08^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~207~^0.28^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~255~^87.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~14626~^~269~^12.08^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~303~^0.02^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~309~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~418~^0.25^1^^~8~^~LC~^^^^^^^^^^~10/01/2009~ -~14626~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~578~^0.25^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~14627~^~203~^0.47^6^0.02^~1~^~A~^^^1^0.42^0.55^5^0.41^0.52^~2, 3~^~05/01/2015~ -~14627~^~204~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~205~^11.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~14627~^~207~^0.19^6^0.02^~1~^~A~^^^1^0.13^0.26^5^0.14^0.25^~2, 3~^~05/01/2015~ -~14627~^~210~^4.43^3^0.14^~1~^~A~^^^1^4.28^4.73^2^3.79^5.07^~2, 3~^~05/01/2015~ -~14627~^~211~^4.11^3^0.22^~1~^~A~^^^1^3.66^4.37^2^3.13^5.08^~2, 3~^~05/01/2015~ -~14627~^~212~^2.39^3^0.17^~1~^~A~^^^1^2.04^2.57^2^1.63^3.14^~2, 3~^~05/01/2015~ -~14627~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~255~^88.05^6^0.11^~1~^~A~^^^1^87.70^88.30^5^87.75^88.34^~2, 3~^~05/01/2015~ -~14627~^~269~^10.93^3^0.25^~1~^~A~^^^1^10.43^11.22^2^9.84^12.01^~2, 3~^~05/01/2015~ -~14627~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~303~^0.04^6^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~309~^0.01^6^1.0e-03^~1~^~A~^^^1^0.01^0.01^5^6.0e-03^0.01^~1, 2, 3~^~05/01/2015~ -~14627~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~418~^2.57^3^0.03^~1~^~A~^^^1^2.50^2.60^2^2.42^2.71^~2, 3~^~05/01/2015~ -~14627~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~578~^2.57^0^^~4~^~O~^^^^^^^^^^~05/01/2015~ -~14628~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~205~^1.03^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14628~^~207~^0.62^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~255~^98.35^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~309~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~323~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~418~^0.25^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~ -~14628~^~573~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~578~^0.25^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~14629~^~203~^0.34^5^0.01^~1~^~A~^^^1^0.31^0.37^4^0.29^0.38^~2, 3~^~11/01/2011~ -~14629~^~204~^0.22^5^0.03^~1~^~A~^^^1^0.10^0.33^4^0.11^0.31^~2, 3~^~11/01/2011~ -~14629~^~205~^12.70^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~14629~^~207~^0.05^5^0.01^~1~^~A~^^^1^0.03^0.09^4^0.02^0.07^~1, 2, 3~^~11/01/2011~ -~14629~^~210~^2.65^5^0.51^~1~^~A~^^^1^0.85^3.87^4^1.22^4.08^~2, 3~^~11/01/2011~ -~14629~^~211~^6.03^5^0.25^~1~^~A~^^^1^5.40^6.88^4^5.33^6.72^~2, 3~^~11/01/2011~ -~14629~^~212~^3.59^5^0.24^~1~^~A~^^^1^3.04^4.44^4^2.91^4.26^~2, 3~^~11/01/2011~ -~14629~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~255~^87.08^5^0.26^~1~^~A~^^^1^86.68^88.13^4^86.33^87.82^~2, 3~^~11/01/2011~ -~14629~^~269~^12.26^5^0.03^~1~^~A~^^^1^12.17^12.37^4^12.16^12.36^~2, 3~^~11/01/2011~ -~14629~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~303~^0.05^5^9.0e-03^~1~^~A~^^^1^0.04^0.08^4^0.02^0.07^~1, 2, 3~^~11/01/2011~ -~14629~^~309~^0.05^5^0.01^~1~^~A~^^^1^0.01^0.08^4^9.0e-03^0.08^~1, 2, 3~^~11/01/2011~ -~14629~^~323~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^3.0e-03^~2, 3~^~11/01/2011~ -~14629~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~418~^3.77^3^0.20^~1~^~A~^^^1^3.40^4.10^2^2.89^4.63^~2, 3~^~11/01/2011~ -~14629~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14629~^~578~^2.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~14630~^~203~^0.25^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~204~^0.08^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~205~^0.70^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~207~^0.62^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~255~^98.35^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~303~^0.02^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~309~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~323~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~418~^2.50^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~573~^0.00^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~578~^2.50^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~14632~^~203~^3.50^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~204~^3.07^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~205~^14.74^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~207~^0.90^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~209~^1.40^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~210~^6.06^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~211~^0.37^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~213~^3.41^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~255~^77.79^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~303~^2.20^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~309~^0.42^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~341~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~342~^0.52^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~343~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~418~^0.53^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14633~^~203~^0.00^4^0.00^~8~^~LC~^^^1^0.00^0.00^3^0.00^0.00^~4~^~03/01/2009~ -~14633~^~204~^0.00^4^0.00^~8~^~LC~^^^1^0.00^0.00^3^0.00^0.00^~4~^~03/01/2009~ -~14633~^~205~^1.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~14633~^~207~^0.13^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~255~^98.78^4^0.02^~9~^~MC~^^^1^98.70^98.80^3^98.69^98.85^~4~^~03/01/2009~ -~14633~^~269~^0.63^4^0.12^~8~^~LC~^^^1^0.41^0.84^3^0.23^1.01^~4~^~03/01/2009~ -~14633~^~303~^0.30^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14633~^~309~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~323~^1.13^4^6.0e-03^~8~^~LC~^^^1^1.11^1.13^3^1.11^1.14^~4~^~03/01/2009~ -~14633~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~573~^1.12^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~14633~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14634~^~203~^3.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~204~^1.83^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~205~^12.08^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~14634~^~207~^0.73^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~255~^82.32^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~269~^11.40^0^^~4~^~O~^^^^^^^^^^~04/01/2009~ -~14634~^~303~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~309~^0.45^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~323~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~418~^0.49^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14635~^~203~^0.30^4^0.10^~8~^~LC~^^^2^0.00^0.41^3^-0.01^0.62^~4~^~05/01/2009~ -~14635~^~204~^0.01^0^^~4~^~BFZN~^~14119~^^^^^^^^^~05/01/2009~ -~14635~^~205~^11.15^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14635~^~207~^0.13^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~255~^88.40^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~14635~^~269~^10.37^4^0.11^~8~^~LC~^^^2^10.16^10.57^3^9.99^10.73^~4~^~05/01/2009~ -~14635~^~303~^0.31^4^0.16^~8~^~LC~^^^2^0.15^0.81^3^-0.21^0.84^~4~^~05/01/2009~ -~14635~^~309~^0.01^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~323~^0.87^4^0.32^~8~^~LC~^^^2^0.55^1.83^3^-0.14^1.88^~4~^~05/01/2009~ -~14635~^~418~^0.00^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~573~^0.87^0^^~4~^~NR~^~14633~^^^^^^^^^~05/01/2009~ -~14635~^~578~^0.00^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14636~^~203~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2009~ -~14636~^~204~^0.07^4^0.03^~1~^~A~^^^1^0.02^0.13^3^-0.02^0.16^~1, 2, 3~^~04/01/2009~ -~14636~^~205~^10.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14636~^~207~^2.35^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~14636~^~255~^87.58^4^0.40^~1~^~A~^^^1^86.77^88.61^3^86.29^88.87^~2, 3~^~04/01/2009~ -~14636~^~269~^9.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14636~^~303~^0.04^4^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~309~^0.02^4^5.0e-03^~1~^~A~^^^1^0.01^0.03^3^8.0e-03^0.03^~2, 3~^~04/01/2009~ -~14636~^~323~^0.68^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~14636~^~418~^0.00^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14636~^~573~^0.68^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~14636~^~578~^0.00^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~ -~14637~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14637~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14637~^~205~^4.50^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14637~^~207~^1.00^0^^~4~^~NR~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~255~^94.44^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~269~^4.50^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~14637~^~303~^0.00^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~309~^0.32^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~323~^1.90^0^^~4~^~BFZN~^~14605~^^^^^^^^^~05/01/2009~ -~14637~^~418~^0.25^0^^~4~^~BFZN~^~14605~^^^^^^^^^~05/01/2009~ -~14637~^~573~^1.90^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~578~^0.25^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14638~^~203~^0.48^3^0.07^~1~^~A~^^^1^0.37^0.63^2^0.15^0.80^~2, 3~^~05/01/2009~ -~14638~^~204~^0.71^3^0.16^~1~^~A~^^^1^0.46^1.02^2^3.0e-03^1.41^~2, 3~^~05/01/2009~ -~14638~^~205~^11.52^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~14638~^~207~^0.19^3^0.06^~1~^~A~^^^1^0.10^0.31^2^-0.07^0.45^~2, 3~^~05/01/2009~ -~14638~^~209~^0.99^3^0.25^~1~^~A~^^^1^0.74^1.50^2^-0.10^2.08^~1, 2, 3~^~05/01/2009~ -~14638~^~210~^6.17^3^0.18^~1~^~A~^^^1^5.93^6.53^2^5.38^6.95^~2, 3~^~05/01/2009~ -~14638~^~211~^1.64^3^1.26^~1~^~A~^^^1^0.00^4.13^2^-3.80^7.08^~1, 2, 3~^~05/01/2009~ -~14638~^~212~^1.55^3^0.93^~1~^~A~^^^1^0.00^3.23^2^-2.47^5.56^~1, 2, 3~^~05/01/2009~ -~14638~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~255~^87.10^3^2.93^~1~^~A~^^^1^82.15^92.30^2^74.48^99.72^~2, 3~^~05/01/2009~ -~14638~^~269~^9.36^3^2.36^~1~^~A~^^^1^5.93^13.89^2^-0.80^19.52^~2, 3~^~05/01/2009~ -~14638~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~303~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~309~^0.06^3^0.01^~1~^~A~^^^1^0.04^0.08^2^0.02^0.10^~2, 3~^~05/01/2009~ -~14638~^~323~^0.24^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14638~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14638~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14638~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14638~^~344~^0.01^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14638~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14638~^~346~^0.18^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14638~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~14639~^~203~^0.28^3^0.13^~8~^~LC~^^^1^0.00^0.42^2^-0.32^0.87^~4~^~06/01/2009~ -~14639~^~204~^0.97^3^0.06^~8~^~LC~^^^1^0.83^1.04^2^0.67^1.27^~4~^~06/01/2009~ -~14639~^~205~^9.17^3^0.41^~8~^~LC~^^^1^8.33^9.58^2^7.37^10.95^~4~^~06/01/2009~ -~14639~^~207~^0.30^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~255~^89.28^0^^~4~^~O~^^^^^^^^^^~06/01/2009~ -~14639~^~269~^5.28^3^0.60^~8~^~LC~^^^1^4.17^6.25^2^2.67^7.88^~4~^~06/01/2009~ -~14639~^~303~^0.20^3^0.10^~8~^~LC~^^^1^0.00^0.30^2^-0.23^0.63^~4~^~06/01/2009~ -~14639~^~309~^0.13^3^0.12^~8~^~LC~^^^1^0.00^0.38^2^-0.41^0.66^~4~^~06/01/2009~ -~14639~^~323~^0.47^3^0.46^~8~^~LC~^^^1^0.00^1.41^2^-1.54^2.48^~4~^~07/01/2009~ -~14639~^~418~^0.63^3^0.36^~8~^~LC~^^^1^0.00^1.25^2^-0.92^2.17^~4~^~07/01/2009~ -~14639~^~573~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~14639~^~578~^0.63^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~14640~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~205~^12.99^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~207~^0.28^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~255~^86.73^0^^~4~^~NR~^^^^^^^^^^~12/01/2011~ -~14640~^~269~^12.99^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14640~^~303~^0.02^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~309~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~418~^0.00^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14640~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~14641~^~203~^0.25^0^^~4~^~BFZN~^~14156~^^^^^^^^^~07/01/2009~ -~14641~^~204~^0.08^0^^~4~^~BFZN~^~14156~^^^^^^^^^~07/01/2009~ -~14641~^~205~^0.70^0^^~4~^~BFZN~^~14156~^^^^^^^^^~07/01/2009~ -~14641~^~207~^0.62^0^^~4~^~BFZN~^~14156~^^^^^^^^^~07/01/2009~ -~14641~^~255~^98.35^0^^~4~^~BFZN~^~14156~^^^^^^^^^~07/01/2009~ -~14641~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~ -~14641~^~303~^0.02^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~309~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~323~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~418~^0.00^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14641~^~573~^0.00^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~578~^0.00^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14644~^~203~^0.05^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~204~^0.01^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~205~^1.94^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~207~^0.07^0^^~4~^~O~^^^^^^^^^^~08/01/2012~ -~14644~^~210~^1.31^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~211~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~212~^0.08^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~255~^97.94^0^^~4~^~O~^^^^^^^^^^~08/01/2012~ -~14644~^~269~^1.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~303~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~309~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~418~^3.38^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~573~^0.00^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~578~^3.38^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~14645~^~203~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~03/01/2011~ -~14645~^~204~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~205~^16.03^7^3.74^~8~^~LC~^^^1^9.00^35.00^6^6.85^25.20^~4~^~03/01/2011~ -~14645~^~207~^0.10^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~255~^83.87^0^^~4~^~O~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~269~^15.85^7^3.77^~8~^~LC~^^^1^9.00^35.00^6^6.60^25.08^~4~^~03/01/2011~ -~14645~^~303~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~309~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~323~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~418~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~573~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~578~^0.00^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14646~^~203~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~204~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~205~^6.67^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~ -~14646~^~207~^0.10^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~255~^93.20^0^^~4~^~O~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~269~^5.00^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~ -~14646~^~303~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~309~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~323~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~418~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~573~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~578~^0.00^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14647~^~203~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2011~ -~14647~^~204~^0.37^5^0.03^~1~^~A~^^^1^0.30^0.46^4^0.29^0.45^~2, 3~^~03/01/2011~ -~14647~^~205~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~207~^0.06^5^0.01^~1~^~A~^^^1^0.03^0.11^4^9.0e-03^0.11^~1, 2, 3~^~03/01/2011~ -~14647~^~255~^93.00^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~14647~^~269~^5.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~303~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~14647~^~309~^0.04^5^0.01^~1~^~A~^^^1^0.01^0.07^4^7.0e-03^0.06^~1, 2, 3~^~03/01/2011~ -~14647~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~14647~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~14647~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14648~^~203~^0.13^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14648~^~205~^13.16^4^0.63^~11~^~JO~^^^1^12.08^14.79^3^11.15^15.17^~4~^~03/01/2011~ -~14648~^~207~^0.31^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~255~^86.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14648~^~269~^12.11^4^0.46^~11~^~JO~^^^1^11.25^13.10^3^10.64^13.57^~4~^~03/01/2011~ -~14648~^~303~^0.25^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~309~^0.04^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~323~^0.05^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~418~^0.00^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~573~^0.04^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~578~^0.00^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14649~^~203~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~14649~^~207~^0.42^0^^~4~^~O~^^^^^^^^^^~04/01/2015~ -~14649~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~255~^99.58^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~303~^0.08^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~309~^0.04^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~323~^0.00^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~418~^0.00^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~573~^0.00^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14649~^~578~^0.00^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~ -~14651~^~203~^0.13^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~204~^0.11^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~205~^11.35^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~207~^0.31^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~255~^88.10^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~269~^10.69^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~303~^0.25^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~309~^0.04^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~323~^0.05^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~573~^0.04^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14654~^~203~^53.57^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~204~^10.71^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~205~^20.38^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14654~^~207~^7.03^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~255~^8.30^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~269~^3.57^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~303~^22.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~309~^18.75^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~323~^16.88^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~418~^6.43^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14654~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~15001~^~203~^20.35^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~204~^4.84^26^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~205~^0.00^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15001~^~207~^1.44^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~255~^73.37^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~303~^3.25^4^0.60^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~309~^1.72^4^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~323~^0.57^0^^~4~^^^^^^^^^^^ -~15001~^~418~^0.62^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15002~^~203~^28.89^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~204~^9.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15002~^~207~^11.10^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15002~^~255~^50.30^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15002~^~303~^4.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~309~^2.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~323~^3.33^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~342~^0.17^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15002~^~418~^0.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15003~^~203~^18.86^16^0.50^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~204~^3.69^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15003~^~207~^1.52^16^0.29^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~255~^75.66^16^0.69^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~303~^1.49^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~309~^0.65^62^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~203~^17.73^10^0.39^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~204~^2.33^14^0.38^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15004~^~207~^1.04^10^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~255~^79.22^10^0.52^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~303~^0.84^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~309~^0.40^134^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~418~^3.82^8^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~203~^20.04^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~204~^4.24^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15005~^~207~^1.04^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~255~^70.86^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~303~^0.48^6^8.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~309~^0.81^107^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~418~^5.39^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~203~^19.31^14^0.71^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~204~^0.81^13^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15006~^~207~^1.16^12^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~255~^79.26^13^0.64^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~303~^0.90^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~309~^0.76^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~418~^0.80^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~203~^17.28^42^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~204~^8.02^43^0.72^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15007~^~207~^1.20^42^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~255~^74.13^42^0.68^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~303~^0.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~309~^0.77^73^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~418~^1.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~203~^17.83^63^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~204~^5.60^163^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15008~^~207~^1.46^64^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~255~^76.31^65^0.36^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15008~^~303~^1.24^7^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~309~^1.48^44^0.24^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~323~^0.63^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15008~^~418~^1.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15009~^~203~^22.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~204~^7.17^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15009~^~207~^1.87^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~255~^69.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~303~^1.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~309~^1.90^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~418~^1.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~203~^16.38^5^0.23^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~204~^2.82^5^0.59^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15010~^~207~^0.96^5^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~255~^80.36^5^0.30^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~303~^0.30^4^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~309~^0.51^4^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~418~^2.23^4^0.15^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~203~^18.09^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~204~^13.33^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~205~^8.04^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15011~^~207~^1.26^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~255~^58.81^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~303~^1.43^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~309~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~418~^1.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~203~^24.60^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~204~^17.90^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~205~^4.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~207~^6.50^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~255~^47.50^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15012~^~303~^11.88^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~309~^0.95^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~323~^1.89^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~ -~15012~^~418~^20.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15013~^~203~^18.99^68^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~204~^1.91^69^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15013~^~207~^1.20^70^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~255~^78.93^68^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~303~^0.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~309~^0.37^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~418~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15014~^~203~^16.36^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~204~^11.90^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15014~^~207~^2.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~255~^69.80^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15014~^~303~^0.49^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~309~^0.30^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~323~^0.22^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15014~^~418~^4.26^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15015~^~203~^17.81^605^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~204~^0.67^293^7.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15015~^~207~^1.16^165^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~255~^81.22^537^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15015~^~303~^0.38^26^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~309~^0.45^188^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~323~^0.64^2^^~4~^^^^1^0.63^0.64^1^^^^~03/01/2009~ -~15015~^~341~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~342~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~343~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~344~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~345~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~346~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~347~^0.00^2^^~4~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15015~^~418~^0.91^55^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15016~^~203~^22.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~204~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15016~^~207~^1.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~255~^75.92^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15016~^~303~^0.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~309~^0.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~323~^0.81^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15016~^~418~^1.05^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15017~^~203~^22.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~204~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15017~^~207~^1.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~255~^75.61^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15017~^~303~^0.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~309~^0.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~323~^0.82^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15017~^~418~^1.05^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15018~^~203~^62.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~204~^2.37^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15018~^~207~^18.67^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15018~^~255~^16.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15018~^~303~^2.50^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~309~^1.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~323~^2.84^0^^~4~^~BFSN~^~15015~^^^^^^^^^~02/01/2003~ -~15018~^~418~^10.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15019~^~203~^15.27^11^0.82^~1~^~A~^^^1^11.13^19.06^10^13.43^17.10^~2, 3~^~07/01/2010~ -~15019~^~204~^0.41^11^0.03^~1~^~A~^^^1^0.12^0.59^10^0.32^0.49^~2, 3~^~07/01/2010~ -~15019~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15019~^~207~^1.46^11^0.11^~1~^~A~^^^1^1.00^1.93^10^1.20^1.72^~2, 3~^~07/01/2010~ -~15019~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~255~^83.95^11^0.62^~1~^~A~^^^1^80.93^87.25^10^82.54^85.34^~2, 3~^~07/01/2010~ -~15019~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15019~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15019~^~303~^0.16^11^0.02^~1~^~A~^^^1^0.07^0.43^10^0.10^0.22^~1, 2, 3~^~07/01/2010~ -~15019~^~309~^0.31^11^0.01^~1~^~A~^^^1^0.24^0.40^10^0.27^0.35^~2, 3~^~07/01/2010~ -~15019~^~323~^0.54^4^0.04^~1~^~A~^^^1^0.41^0.63^3^0.38^0.69^~2, 3~^~07/01/2010~ -~15019~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~418~^1.98^4^0.37^~1~^~A~^^^1^0.92^2.70^3^0.77^3.18^~2, 3~^~07/01/2010~ -~15019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15020~^~203~^17.78^7^0.30^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~204~^3.17^8^0.52^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15020~^~207~^1.11^7^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~255~^78.03^7^0.59^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15020~^~303~^0.37^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~309~^0.42^91^9.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~323~^1.29^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~ -~15020~^~418~^2.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15021~^~203~^18.20^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~204~^12.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~205~^7.54^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15021~^~207~^1.37^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~255~^59.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~303~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~309~^0.52^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~418~^2.10^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~203~^18.99^12^0.38^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~204~^0.69^4^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15022~^~207~^1.25^6^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~255~^76.35^25^0.66^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~303~^0.83^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~309~^0.38^76^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~418~^1.04^7^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~203~^18.50^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~204~^0.70^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15023~^~207~^2.10^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~255~^77.55^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~303~^1.13^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~309~^0.46^65^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~418~^0.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~203~^17.54^650^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~204~^4.93^905^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15024~^~207~^1.08^652^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~255~^77.33^650^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~303~^0.90^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~309~^0.66^4^0.15^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15025~^~203~^18.44^12^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~204~^11.66^14^0.88^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15025~^~207~^1.41^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~255~^68.26^12^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15025~^~303~^0.50^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~309~^1.62^40^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~323~^4.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15025~^~418~^3.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15026~^~203~^23.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~204~^14.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15026~^~207~^1.80^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~255~^59.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~303~^0.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~309~^2.08^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~418~^2.89^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15027~^~203~^11.01^17^0.21^~1~^~A~^^^1^9.88^12.94^9^10.52^11.50^~2, 3~^~03/01/2013~ -~15027~^~204~^16.23^18^0.33^~1~^~A~^^^1^13.30^19.00^14^15.50^16.94^~2, 3~^~03/01/2013~ -~15027~^~205~^21.66^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~207~^1.61^18^0.03^~1~^~A~^^^1^1.44^2.32^8^1.52^1.68^~2, 3~^~03/01/2013~ -~15027~^~209~^20.46^3^^~1~^~A~^^^1^18.70^21.80^^^^~2, 3~^~03/01/2013~ -~15027~^~210~^0.56^3^^~1~^~A~^^^1^0.20^0.90^^^^~2, 3~^~03/01/2013~ -~15027~^~211~^0.30^3^^~1~^~A~^^^1^0.07^0.60^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~212~^0.10^3^^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~03/01/2013~ -~15027~^~213~^0.12^3^^~1~^~A~^^^1^0.00^0.30^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~214~^0.58^3^^~1~^~A~^^^1^0.40^0.70^^^^~2, 3~^~03/01/2013~ -~15027~^~255~^49.50^18^0.37^~1~^~A~^^^1^45.62^53.17^13^48.68^50.31^~2, 3~^~03/01/2013~ -~15027~^~269~^1.65^3^^~1~^~A~^^^1^1.10^2.30^^^^~2, 3~^~03/01/2013~ -~15027~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~303~^0.84^18^0.02^~1~^~A~^^^1^0.61^1.07^11^0.79^0.88^~2, 3~^~03/01/2013~ -~15027~^~309~^0.42^18^8.0e-03^~1~^~A~^^^1^0.36^0.51^14^0.40^0.43^~2, 3~^~03/01/2013~ -~15027~^~323~^6.88^9^0.45^~1~^~A~^^^1^1.87^10.52^3^5.47^8.27^~2, 3~^~03/01/2013~ -~15027~^~341~^0.13^9^0.04^~1~^~A~^^^1^0.05^0.34^3^-0.01^0.27^~2, 3~^~03/01/2013~ -~15027~^~342~^5.42^9^0.71^~1~^~A~^^^1^4.03^12.96^3^2.87^7.96^~2, 3~^~03/01/2013~ -~15027~^~343~^0.63^9^0.32^~1~^~A~^^^1^0.00^5.02^2^-0.77^2.03^~1, 2, 3~^~03/01/2013~ -~15027~^~344~^0.03^9^0.03^~1~^~A~^^^1^0.00^0.26^2^-0.11^0.18^~1, 2, 3~^~03/01/2013~ -~15027~^~345~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~15027~^~346~^0.03^9^0.01^~1~^~A~^^^1^0.00^0.08^4^-8.0e-03^0.06^~1, 2, 3~^~03/01/2013~ -~15027~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~15027~^~418~^0.96^9^0.07^~1~^~A~^^^1^0.57^1.70^4^0.76^1.16^~2, 3~^~03/01/2013~ -~15027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~15027~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15028~^~203~^12.41^4^1.03^~1~^~A~^^^1^10.63^15.13^3^9.12^15.68^~2, 3~^~07/01/2010~ -~15028~^~204~^1.93^4^0.43^~1~^~A~^^^1^0.98^3.06^3^0.55^3.29^~2, 3~^~07/01/2010~ -~15028~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15028~^~207~^1.22^4^0.08^~1~^~A~^^^1^1.00^1.44^3^0.93^1.49^~2, 3~^~07/01/2010~ -~15028~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~255~^84.63^4^0.80^~1~^~A~^^^1^82.48^86.32^3^82.06^87.19^~2, 3~^~07/01/2010~ -~15028~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~303~^0.18^4^0.02^~1~^~A~^^^1^0.13^0.22^3^0.11^0.24^~2, 3~^~07/01/2010~ -~15028~^~309~^0.32^4^0.01^~1~^~A~^^^1^0.31^0.35^3^0.28^0.35^~2, 3~^~07/01/2010~ -~15028~^~323~^0.63^4^0.12^~1~^~A~^^^1^0.35^0.89^3^0.22^1.03^~2, 3~^~07/01/2010~ -~15028~^~341~^0.01^4^8.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~07/01/2010~ -~15028~^~342~^0.01^4^8.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~07/01/2010~ -~15028~^~343~^0.26^4^0.13^~1~^~A~^^^1^0.00^0.55^3^-0.15^0.67^~1, 2, 3~^~07/01/2010~ -~15028~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~418~^1.13^4^0.06^~1~^~A~^^^1^1.00^1.30^3^0.92^1.32^~2, 3~^~07/01/2010~ -~15028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15029~^~203~^15.24^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~204~^2.37^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~207~^1.49^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~255~^81.11^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~303~^0.23^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~309~^0.39^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~323~^0.77^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~342~^0.01^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~343~^0.32^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~418~^1.31^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15030~^~203~^9.07^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~204~^1.73^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~205~^7.41^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15030~^~207~^1.44^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~255~^80.35^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~303~^2.48^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~309~^0.82^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~418~^0.84^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~203~^19.38^6^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~204~^1.02^7^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15031~^~207~^1.17^5^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~255~^79.22^6^0.47^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~303~^0.89^5^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~309~^0.48^51^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~418~^0.60^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~203~^24.84^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~204~^1.30^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15032~^~207~^1.41^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~255~^73.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~303~^1.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~309~^0.51^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~418~^0.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15033~^~203~^16.32^8^0.81^~1~^~A~^^^1^12.88^18.44^7^14.38^18.25^~2, 3~^~07/01/2010~ -~15033~^~204~^0.45^8^0.02^~1~^~A~^^^1^0.33^0.55^7^0.39^0.50^~2, 3~^~07/01/2010~ -~15033~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15033~^~207~^1.28^8^0.09^~1~^~A~^^^1^1.00^1.72^7^1.04^1.51^~2, 3~^~07/01/2010~ -~15033~^~255~^83.38^8^0.74^~1~^~A~^^^1^81.19^86.15^7^81.61^85.15^~2, 3~^~07/01/2010~ -~15033~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15033~^~303~^0.17^8^0.01^~1~^~A~^^^1^0.13^0.23^7^0.14^0.19^~2, 3~^~07/01/2010~ -~15033~^~309~^0.32^8^0.01^~1~^~A~^^^1^0.28^0.38^7^0.29^0.35^~2, 3~^~07/01/2010~ -~15033~^~323~^0.45^3^0.01^~1~^~A~^^^1^0.42^0.47^2^0.38^0.51^~2, 3~^~07/01/2010~ -~15033~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~418~^1.83^3^0.17^~1~^~A~^^^1^1.50^2.10^2^1.07^2.59^~2, 3~^~07/01/2010~ -~15033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15034~^~203~^19.99^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~204~^0.55^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~207~^1.56^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~255~^79.65^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~303~^0.21^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~309~^0.40^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~323~^0.55^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~418~^2.13^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15035~^~203~^25.23^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~204~^0.96^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15035~^~207~^1.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~255~^71.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15035~^~303~^1.40^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~309~^0.50^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~323~^0.55^0^^~4~^~BFSN~^~15033~^^^^^^^^^~02/01/2003~ -~15035~^~418~^1.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15036~^~203~^18.56^10^0.37^~1~^~A~^^^1^16.31^20.25^9^17.70^19.41^~2, 3~^~07/01/2010~ -~15036~^~204~^1.33^10^0.30^~1~^~A~^^^1^0.46^3.82^9^0.63^2.02^~2, 3~^~07/01/2010~ -~15036~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15036~^~207~^1.29^10^0.02^~1~^~A~^^^1^1.11^1.42^9^1.23^1.35^~2, 3~^~07/01/2010~ -~15036~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~255~^80.34^10^0.52^~1~^~A~^^^1^77.23^82.89^9^79.15^81.52^~2, 3~^~07/01/2010~ -~15036~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15036~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15036~^~303~^0.16^10^0.01^~1~^~A~^^^1^0.11^0.21^9^0.13^0.18^~2, 3~^~07/01/2010~ -~15036~^~309~^0.36^10^0.01^~1~^~A~^^^1^0.31^0.45^9^0.32^0.38^~2, 3~^~07/01/2010~ -~15036~^~323~^0.61^2^^~1~^~A~^^^1^0.48^0.74^1^^^^~07/01/2010~ -~15036~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15036~^~418~^1.10^4^0.05^~1~^~A~^^^1^1.00^1.20^3^0.91^1.28^~2, 3~^~07/01/2010~ -~15036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15037~^~203~^22.54^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~204~^1.61^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~207~^1.57^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~255~^76.12^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~303~^0.20^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~309~^0.43^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~323~^0.74^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~418~^1.27^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15038~^~203~^14.37^3^1.00^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~204~^13.84^22^0.77^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15038~^~207~^1.00^3^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~255~^70.27^19^1.36^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15038~^~303~^0.66^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~309~^0.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~323~^0.73^0^^~4~^~BFSN~^~15028~^^^^^^^^^~03/01/2009~ -~15038~^~418~^1.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15039~^~203~^17.96^59^0.23^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~204~^9.04^2524^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15039~^~207~^1.46^28^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~255~^72.05^138^0.49^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15039~^~303~^1.10^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~309~^0.99^56^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~323~^1.07^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15039~^~418~^13.67^6^0.55^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15040~^~203~^23.03^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~204~^11.59^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15040~^~207~^1.87^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~255~^64.16^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15040~^~303~^1.41^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~309~^1.27^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~323~^1.37^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15040~^~418~^13.14^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15041~^~203~^14.19^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~204~^18.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~205~^9.64^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15041~^~207~^2.95^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~255~^55.22^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~269~^7.71^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15041~^~303~^1.22^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~309~^0.53^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~323~^1.71^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15041~^~418~^4.27^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15042~^~203~^24.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~204~^12.37^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15042~^~207~^1.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~255~^59.70^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15042~^~303~^1.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~309~^1.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~323~^1.54^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~ -~15042~^~418~^18.70^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15043~^~203~^16.39^70^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~204~^13.88^128^0.47^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15043~^~207~^2.37^71^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~255~^71.52^84^0.47^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~303~^1.12^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~309~^0.53^14^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~418~^10.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~203~^18.99^10^0.28^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~204~^0.64^7^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15044~^~207~^1.40^6^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~255~^79.63^16^0.26^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~303~^0.65^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~309~^0.78^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~418~^0.56^5^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~203~^17.66^173^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~204~^1.06^16^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15045~^~207~^1.21^174^5.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~255~^81.03^181^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~303~^0.32^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~309~^0.45^78^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~418~^3.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15046~^~203~^18.60^83^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~204~^13.89^364^0.38^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15046~^~207~^1.35^60^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~255~^63.55^142^0.65^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15046~^~303~^1.63^3^0.39^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~309~^0.63^82^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~323~^1.52^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15046~^~418~^8.71^9^1.33^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15047~^~203~^23.85^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~204~^17.81^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15047~^~207~^1.53^10^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~255~^53.27^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~303~^1.57^10^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~309~^0.94^10^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~418~^19.00^10^1.61^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~203~^23.19^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~204~^6.30^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15048~^~207~^1.73^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~255~^69.17^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15048~^~303~^2.04^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~309~^1.02^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~323~^1.03^0^^~4~^~BFSN~^~15050~^^^^^^^^^~02/01/2003~ -~15048~^~418~^6.94^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15049~^~203~^20.28^6^0.78^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~204~^2.00^6^0.18^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15049~^~207~^1.28^6^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~255~^75.85^6^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~303~^1.78^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~309~^0.56^106^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~418~^15.60^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~203~^20.07^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~204~^7.89^126^0.86^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15050~^~207~^1.62^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~255~^70.15^12^2.32^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15050~^~303~^1.16^4^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~309~^0.67^63^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~323~^1.00^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15050~^~418~^4.40^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15051~^~203~^19.29^3^1.20^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~204~^6.30^3^3.81^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15051~^~207~^1.27^3^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~255~^71.67^3^4.38^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15051~^~303~^0.44^3^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~309~^0.49^3^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~323~^0.69^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15051~^~418~^2.40^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15052~^~203~^23.59^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~204~^6.32^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15052~^~207~^1.53^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~255~^68.46^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~303~^0.74^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~309~^0.62^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~418~^7.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~203~^20.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~204~^6.73^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15053~^~207~^1.14^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~255~^70.85^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~303~^0.32^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~309~^0.82^40^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~418~^3.40^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~203~^14.48^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~204~^1.52^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15054~^~207~^1.21^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~255~^83.24^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~303~^0.32^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~309~^0.41^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~418~^0.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~203~^19.35^16^0.52^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~204~^3.79^43^0.35^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15055~^~207~^1.20^14^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~255~^77.01^18^0.63^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15055~^~303~^1.02^11^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~309~^0.52^200^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~323~^1.00^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15055~^~418~^0.22^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15056~^~203~^24.81^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~204~^4.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15056~^~207~^1.34^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~255~^70.52^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~303~^1.41^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~309~^0.88^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~418~^0.25^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15057~^~203~^15.31^11^0.78^~1~^~A~^^^1^12.63^19.56^10^13.56^17.05^~2, 3~^~07/01/2010~ -~15057~^~204~^1.54^11^0.25^~1~^~A~^^^1^0.19^2.89^10^0.96^2.11^~2, 3~^~07/01/2010~ -~15057~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15057~^~207~^1.20^115^0.02^~1~^^^^^^^^^^^~07/01/2013~ -~15057~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~255~^83.07^11^0.54^~1~^~A~^^^1^80.14^85.46^10^81.85^84.28^~2, 3~^~07/01/2013~ -~15057~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15057~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15057~^~303~^0.22^11^0.01^~1~^~A~^^^1^0.18^0.30^10^0.20^0.24^~2, 3~^~07/01/2010~ -~15057~^~309~^0.29^11^0.01^~1~^~A~^^^1^0.24^0.34^10^0.26^0.31^~2, 3~^~07/01/2010~ -~15057~^~323~^0.76^4^0.06^~1~^~A~^^^1^0.64^0.92^3^0.53^0.97^~2, 3~^~07/01/2010~ -~15057~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~342~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.01^~1, 2, 3~^~07/01/2010~ -~15057~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~418~^1.50^4^0.21^~1~^~A~^^^1^1.10^2.10^3^0.82^2.17^~2, 3~^~07/01/2010~ -~15057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15058~^~203~^18.51^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~204~^1.87^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~207~^1.60^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~255~^74.24^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~303~^0.27^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~309~^0.35^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~323~^0.91^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~418~^1.72^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15059~^~203~^16.64^5^0.67^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~204~^0.91^5^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15059~^~207~^1.13^5^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~255~^81.36^6^0.69^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~303~^0.28^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~309~^1.03^34^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~418~^0.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~203~^19.39^39^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~204~^0.92^24^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15060~^~207~^1.24^39^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~255~^79.13^38^0.12^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15060~^~303~^0.90^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~309~^1.11^53^0.15^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15060~^~418~^1.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15061~^~203~^24.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~204~^1.18^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15061~^~207~^1.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~255~^73.25^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~303~^1.16^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~309~^1.43^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~203~^19.26^236^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~204~^0.69^224^5.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15062~^~207~^1.20^16^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~255~^78.92^238^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15062~^~303~^0.55^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~309~^0.67^59^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15062~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15063~^~203~^24.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~204~^0.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15063~^~207~^1.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~255~^72.97^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~303~^0.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~309~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~418~^2.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~203~^19.14^29^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~204~^1.22^14^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15064~^~207~^1.20^29^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~255~^79.31^28^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~303~^1.30^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~309~^0.62^28^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15065~^~203~^19.44^61^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~204~^0.98^14^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15065~^~207~^1.41^56^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~255~^78.18^62^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15065~^~303~^0.46^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15065~^~309~^0.47^84^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~323~^0.23^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15065~^~418~^3.19^11^0.35^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15066~^~203~^12.19^8^1.27^~1~^~A~^^^1^8.75^18.63^7^9.17^15.20^~2, 3~^~07/01/2010~ -~15066~^~204~^0.41^8^0.03^~1~^~A~^^^1^0.21^0.51^7^0.32^0.48^~2, 3~^~07/01/2010~ -~15066~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15066~^~207~^1.36^8^0.17^~1~^~A~^^^1^0.83^2.35^7^0.95^1.75^~2, 3~^~07/01/2010~ -~15066~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~255~^86.75^8^1.18^~1~^~A~^^^1^80.67^89.78^7^83.94^89.54^~2, 3~^~07/01/2010~ -~15066~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15066~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15066~^~303~^0.22^8^0.01^~1~^~A~^^^1^0.16^0.32^7^0.18^0.26^~2, 3~^~07/01/2010~ -~15066~^~309~^0.31^8^0.02^~1~^~A~^^^1^0.22^0.39^7^0.25^0.36^~2, 3~^~07/01/2010~ -~15066~^~323~^0.49^2^^~1~^~A~^^^1^0.44^0.54^1^^^^~07/01/2010~ -~15066~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15066~^~418~^1.63^3^0.58^~1~^~A~^^^1^1.00^2.80^2^-0.88^4.14^~2, 3~^~07/01/2010~ -~15066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15067~^~203~^23.48^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~204~^1.18^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~207~^1.70^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~255~^73.65^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~303~^0.56^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~309~^0.57^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~323~^0.28^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~418~^3.66^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15068~^~203~^18.48^6^0.84^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~204~^9.47^7^2.25^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15068~^~207~^1.10^6^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~255~^71.12^6^1.70^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15068~^~303~^0.60^6^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~309~^0.72^65^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~323~^0.18^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15068~^~418~^1.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15069~^~203~^23.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~204~^12.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15069~^~207~^1.38^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~255~^62.97^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~303~^0.67^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~309~^0.69^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~418~^1.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15070~^~203~^18.36^4^0.34^~1~^~A~^^^1^17.69^19.31^3^17.26^19.45^~2, 3~^~07/01/2010~ -~15070~^~204~^1.34^4^0.46^~1~^~A~^^^1^0.48^2.39^3^-0.15^2.82^~2, 3~^~07/01/2010~ -~15070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15070~^~207~^1.31^4^0.13^~1~^~A~^^^1^1.13^1.71^3^0.88^1.73^~2, 3~^~07/01/2010~ -~15070~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~255~^79.08^4^1.39^~1~^~A~^^^1^75.36^81.60^3^74.63^83.51^~2, 3~^~07/01/2010~ -~15070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15070~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~303~^0.30^4^0.08^~1~^~A~^^^1^0.18^0.56^3^0.02^0.57^~2, 3~^~07/01/2010~ -~15070~^~309~^0.36^4^0.03^~1~^~A~^^^1^0.28^0.41^3^0.26^0.45^~2, 3~^~07/01/2010~ -~15070~^~323~^0.36^3^0.07^~1~^~A~^^^1^0.25^0.49^2^0.06^0.66^~2, 3~^~07/01/2010~ -~15070~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~418~^1.39^3^0.42^~1~^~A~^^^1^0.56^2.00^2^-0.46^3.23^~2, 3~^~07/01/2010~ -~15070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15071~^~203~^22.23^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~204~^1.62^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~207~^1.59^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~255~^74.67^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~303~^0.36^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~309~^0.43^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~323~^0.44^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~418~^1.59^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15072~^~203~^22.32^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~204~^6.42^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~205~^1.50^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15072~^~207~^1.37^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~255~^67.73^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15072~^~303~^0.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~309~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~323~^7.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15072~^~418~^10.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15073~^~203~^16.41^3^1.45^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~204~^0.70^0^^~4~^^^^^^^^^^^~03/01/2005~ -~15073~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15073~^~207~^1.08^3^0.25^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~255~^75.67^3^1.35^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~303~^1.01^3^0.28^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~309~^0.23^3^7.0e-03^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~323~^1.20^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~342~^0.04^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~344~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~418~^0.38^3^0.04^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15074~^~203~^13.41^169^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~204~^15.30^178^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15074~^~207~^1.05^169^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~255~^71.02^169^0.29^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~303~^1.28^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~309~^0.32^103^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~418~^1.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~203~^17.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~204~^20.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15075~^~207~^2.07^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~15075~^~255~^60.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~303~^1.69^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~309~^0.43^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15076~^~203~^19.84^9^0.66^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~204~^6.34^7^1.77^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15076~^~207~^2.54^6^0.89^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~255~^68.50^21^1.14^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~303~^0.80^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~309~^0.64^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~418~^3.18^10^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~203~^18.28^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~204~^4.32^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15077~^~207~^2.62^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~255~^72.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15077~^~303~^0.85^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~309~^0.31^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~323~^1.35^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15077~^~418~^3.26^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15078~^~203~^19.93^9^0.42^~11~^~JO~^^^2^17.80^21.40^5^18.80^21.04^~2, 3~^~04/01/2003~ -~15078~^~204~^10.43^12^1.47^~6~^~JA~^^^2^3.30^19.60^8^7.03^13.83^~2, 3~^~04/01/2003~ -~15078~^~205~^0.00^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15078~^~207~^1.33^9^0.08^~6~^~JA~^^^2^1.08^1.80^6^1.12^1.52^~2, 3~^~04/01/2003~ -~15078~^~255~^71.64^9^1.01^~6~^~JA~^^^2^66.23^78.30^5^68.99^74.28^~2, 3~^~04/01/2003~ -~15078~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~15078~^~303~^0.25^2^^~1~^~A~^^^1^0.10^0.40^1^^^^~04/01/2003~ -~15078~^~309~^0.44^110^^~1~^^^^1^0.38^0.53^^^^~2, 3~^~04/01/2003~ -~15078~^~323~^1.22^0^^~4~^^^^^^^^^^^ -~15078~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~15079~^~203~^20.14^8^1.22^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~204~^3.77^13^0.65^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~205~^0.00^0^^~7~^^^^^^^^^^^~09/01/1987~ -~15079~^~207~^1.18^7^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~255~^75.38^8^1.39^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~303~^0.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~309~^0.47^56^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~323~^1.09^0^^~4~^^^^^^^^^^^ -~15079~^~418~^3.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~203~^21.43^6^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~204~^5.50^7^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15080~^~207~^2.47^6^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~255~^70.77^6^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15080~^~303~^0.70^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~309~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~323~^1.60^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15080~^~418~^4.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15081~^~203~^21.62^178^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~204~^5.93^219^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15081~^~207~^1.21^178^4.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~255~^72.66^178^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15081~^~303~^0.56^3^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~309~^0.41^74^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~323~^0.73^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~ -~15081~^~418~^4.17^3^0.69^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15082~^~203~^27.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~204~^7.50^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15082~^~207~^1.53^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~255~^65.39^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~303~^0.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~309~^0.52^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~418~^4.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15083~^~203~^20.50^3^0.70^~1~^~A~^^^1^19.56^21.88^2^17.47^23.52^~2, 3~^~07/01/2010~ -~15083~^~204~^4.40^3^2.09^~1~^~A~^^^1^2.04^8.57^2^-4.59^13.39^~2, 3~^~07/01/2010~ -~15083~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15083~^~207~^1.52^3^0.22^~1~^~A~^^^1^1.25^1.96^2^0.55^2.47^~2, 3~^~07/01/2010~ -~15083~^~255~^75.52^3^2.00^~1~^~A~^^^1^71.57^78.11^2^66.88^84.16^~2, 3~^~07/01/2010~ -~15083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15083~^~303~^0.38^3^0.04^~1~^~A~^^^1^0.33^0.46^2^0.20^0.55^~2, 3~^~07/01/2010~ -~15083~^~309~^0.39^3^0.01^~1~^~A~^^^1^0.37^0.40^2^0.34^0.43^~2, 3~^~07/01/2010~ -~15083~^~323~^0.40^2^^~1~^~A~^^^1^0.08^0.72^1^^^^~07/01/2010~ -~15083~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2010~ -~15083~^~418~^4.15^2^^~1~^~A~^^^1^4.10^4.20^1^^^^~07/01/2010~ -~15083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15084~^~203~^19.68^17^0.14^~1~^~A~^^^1^18.81^20.56^16^19.37^19.99^~2, 3~^~05/01/2011~ -~15084~^~204~^4.97^17^0.23^~1~^~A~^^^1^2.63^6.70^16^4.47^5.45^~2, 3~^~05/01/2011~ -~15084~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15084~^~207~^2.40^17^0.03^~1~^~A~^^^1^2.05^2.56^16^2.32^2.47^~2, 3~^~05/01/2011~ -~15084~^~255~^74.04^17^0.32^~1~^~A~^^^1^72.31^77.39^16^73.35^74.72^~2, 3~^~05/01/2011~ -~15084~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15084~^~303~^0.64^17^0.01^~1~^~A~^^^1^0.55^0.72^16^0.61^0.66^~2, 3~^~05/01/2011~ -~15084~^~309~^0.76^17^9.0e-03^~1~^~A~^^^1^0.70^0.84^16^0.74^0.78^~2, 3~^~05/01/2011~ -~15084~^~323~^0.64^2^^~1~^^^^1^0.57^0.70^1^^^^~03/01/2009~ -~15084~^~341~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15084~^~342~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15084~^~343~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2009~ -~15084~^~418~^4.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15085~^~203~^22.25^22^^~1~^~A~^^^3^21.31^22.89^^^^~2~^~08/01/2015~ -~15085~^~204~^4.69^22^^~1~^~A~^^^3^3.91^5.61^^^^~2~^~08/01/2015~ -~15085~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15085~^~207~^1.26^22^^~1~^~A~^^^3^1.20^1.33^^^^~2~^~08/01/2015~ -~15085~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~255~^72.54^22^^~1~^~A~^^^3^71.86^73.15^^^^~2~^~08/01/2015~ -~15085~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15085~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15085~^~303~^0.43^22^^~1~^~A~^^^3^0.42^0.46^^^^~2~^~08/01/2015~ -~15085~^~309~^0.46^22^^~1~^~A~^^^3^0.42^0.49^^^^~2~^~08/01/2015~ -~15085~^~323~^0.83^19^^~1~^~A~^^^2^0.71^0.95^^^^~2~^~08/01/2015~ -~15085~^~341~^0.01^4^8.0e-03^~1~^~A~^^^^0.00^0.03^^^^^~07/01/2010~ -~15085~^~342~^0.16^4^0.10^~1~^~A~^^^^0.00^0.43^^^^^~07/01/2010~ -~15085~^~343~^0.19^4^0.14^~1~^~A~^^^^0.00^0.61^^^^^~07/01/2010~ -~15085~^~344~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2010~ -~15085~^~345~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2010~ -~15085~^~346~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2010~ -~15085~^~347~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~07/01/2010~ -~15085~^~418~^4.69^19^^~1~^~A~^^^2^3.43^5.95^^^^~2~^~08/01/2015~ -~15085~^~573~^0.00^0^^~4~^~BFZN~^~15083~^^^^^^^^^~03/01/2009~ -~15085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15086~^~203~^26.48^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~204~^5.57^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~207~^1.50^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~255~^67.33^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~303~^0.52^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~309~^0.55^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~323~^0.99^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~341~^0.01^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~342~^0.19^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~343~^0.22^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~418~^4.47^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15087~^~203~^23.59^12^0.09^~1~^~A~^^^1^23.19^24.38^11^23.39^23.79^~2, 3~^~05/01/2011~ -~15087~^~204~^7.39^12^0.23^~1~^~A~^^^1^5.98^8.37^11^6.87^7.91^~2, 3~^~05/01/2011~ -~15087~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15087~^~207~^2.47^12^0.05^~1~^~A~^^^1^2.22^2.78^11^2.35^2.57^~2, 3~^~05/01/2011~ -~15087~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~15087~^~255~^68.07^12^0.26^~1~^~A~^^^1^66.66^69.20^11^67.49^68.64^~2, 3~^~05/01/2011~ -~15087~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15087~^~303~^0.65^12^0.01^~1~^~A~^^^1^0.53^0.76^11^0.61^0.69^~2, 3~^~05/01/2011~ -~15087~^~309~^0.84^12^0.01^~1~^~A~^^^1^0.76^0.99^11^0.79^0.88^~2, 3~^~05/01/2011~ -~15087~^~323~^2.07^3^0.14^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~341~^0.01^3^7.0e-03^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~342~^0.04^3^6.0e-03^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~343~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~344~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~345~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~346~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~347~^0.00^3^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15087~^~418~^5.50^12^0.17^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15088~^~203~^24.62^13^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~204~^11.45^13^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15088~^~207~^3.38^35^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~255~^59.61^13^0.64^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15088~^~303~^2.92^7^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~309~^1.31^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~323~^2.04^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15088~^~418~^8.94^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15088~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~203~^20.86^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~15089~^~204~^10.45^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~205~^0.54^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~207~^1.88^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~15089~^~210~^0.03^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~211~^0.23^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~212~^0.17^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~255~^66.86^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~269~^0.43^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~303~^2.30^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~309~^1.40^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~323~^1.38^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~342~^0.01^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15089~^~418~^9.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15089~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~15090~^~203~^18.88^25^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~204~^2.73^15^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15090~^~207~^1.21^26^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~255~^75.37^25^0.34^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15090~^~303~^0.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~309~^0.48^71^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~323~^0.50^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15090~^~418~^1.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15091~^~203~^18.43^33^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~204~^2.00^40^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15091~^~207~^1.09^34^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~255~^78.27^35^0.19^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15091~^~303~^0.29^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~309~^0.40^34^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~323~^0.84^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~ -~15091~^~418~^0.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15092~^~203~^23.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~204~^2.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15092~^~207~^1.40^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~255~^72.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~303~^0.37^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~309~^0.52^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~418~^0.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~203~^16.74^14^0.41^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~204~^3.61^14^0.59^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15093~^~207~^1.26^15^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~255~^78.09^14^0.42^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~303~^0.27^6^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~309~^0.45^172^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~418~^3.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~203~^16.93^11^0.62^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~204~^13.77^11^1.00^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15094~^~207~^1.32^11^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~255~^68.19^13^0.80^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15094~^~303~^0.97^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~309~^0.37^60^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~323~^1.22^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~ -~15094~^~418~^0.15^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15095~^~203~^20.98^16^0.25^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~204~^4.51^52^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15095~^~207~^1.39^15^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~255~^73.58^29^0.28^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15095~^~303~^0.84^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~309~^0.43^223^9.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~323~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15095~^~418~^1.49^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15096~^~203~^18.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~204~^13.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~205~^6.39^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15096~^~207~^1.25^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~255~^60.09^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~303~^1.11^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~309~^0.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~418~^1.21^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~203~^20.21^5^2.33^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~204~^2.41^5^0.40^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15097~^~207~^1.09^5^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~255~^77.97^5^0.73^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~303~^0.46^3^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~309~^0.39^62^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~203~^26.02^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~204~^1.63^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15098~^~207~^1.44^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~255~^69.04^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~303~^0.67^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~309~^0.63^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~418~^2.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15099~^~203~^17.63^47^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~204~^2.42^52^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15099~^~207~^1.40^46^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~255~^78.77^47^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15099~^~303~^0.90^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~309~^1.65^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~323~^0.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15099~^~418~^3.44^4^0.72^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15100~^~203~^22.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~204~^3.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15100~^~207~^1.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~255~^72.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~303~^1.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~309~^2.12^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~418~^3.97^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~203~^20.51^59^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~204~^1.34^55^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15101~^~207~^1.31^52^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~255~^76.87^60^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15101~^~303~^0.18^7^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~309~^0.36^242^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~323~^0.96^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~ -~15101~^~418~^3.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15101~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15101~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15102~^~203~^26.30^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~204~^1.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15102~^~207~^1.41^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~255~^70.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~303~^0.24^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~309~^0.44^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~418~^3.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~203~^18.51^10^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~204~^4.90^10^2.92^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15103~^~207~^1.06^10^3.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~255~^75.95^10^3.58^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~303~^0.32^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~309~^0.51^52^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~418~^3.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~203~^16.14^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~204~^4.04^7^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15104~^~207~^1.10^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~255~^76.55^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15104~^~303~^0.70^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~309~^0.42^10^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~323~^0.50^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15104~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15105~^~203~^20.70^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~204~^5.18^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15105~^~207~^1.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~255~^69.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15105~^~303~^0.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~309~^0.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~323~^0.63^0^^~4~^~BFYN~^~15104~^^^^^^^^^~02/01/2003~ -~15105~^~418~^2.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15106~^~203~^31.20^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~204~^4.40^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15106~^~207~^1.90^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~255~^62.50^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15106~^~303~^0.93^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~309~^0.56^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~323~^0.50^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~15106~^~418~^2.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15107~^~203~^16.76^18^0.27^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~204~^2.32^157^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15107~^~207~^1.46^16^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~255~^79.71^148^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~303~^1.30^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~309~^0.75^3^0.25^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~203~^19.40^8^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~204~^0.70^8^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15108~^~207~^1.10^8^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~255~^79.50^8^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~303~^1.20^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~309~^1.55^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~418~^2.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~203~^15.18^3^0.54^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~204~^0.90^3^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~205~^6.85^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15109~^~207~^0.72^3^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~255~^76.34^3^1.28^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15109~^~303~^0.26^3^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~309~^0.33^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~323~^0.63^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15109~^~418~^1.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15110~^~203~^19.66^11^0.28^~1~^~A~^^^1^17.88^20.69^10^19.04^20.29^~2, 3~^~07/01/2010~ -~15110~^~204~^6.65^11^0.96^~1~^~A~^^^1^3.52^13.62^10^4.51^8.79^~2, 3~^~07/01/2010~ -~15110~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15110~^~207~^1.44^11^0.02^~1~^~A~^^^1^1.35^1.60^10^1.38^1.48^~2, 3~^~07/01/2010~ -~15110~^~255~^73.38^11^1.05^~1~^~A~^^^1^66.94^77.89^10^71.03^75.73^~2, 3~^~07/01/2010~ -~15110~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15110~^~303~^0.38^11^0.02^~1~^~A~^^^1^0.28^0.52^10^0.31^0.43^~2, 3~^~07/01/2010~ -~15110~^~309~^0.66^11^0.06^~1~^~A~^^^1^0.44^1.19^10^0.51^0.79^~2, 3~^~07/01/2010~ -~15110~^~323~^2.02^4^0.20^~1~^~A~^^^1^1.54^2.49^3^1.37^2.66^~2, 3~^~07/01/2010~ -~15110~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~342~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.02^~1, 2, 3~^~07/01/2010~ -~15110~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~418~^1.70^4^0.37^~1~^~A~^^^1^1.20^2.80^3^0.51^2.88^~2, 3~^~07/01/2010~ -~15110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15111~^~203~^23.45^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~204~^7.93^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~207~^1.71^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~255~^68.26^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~303~^0.45^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~309~^0.78^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~323~^2.41^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~342~^0.01^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~418~^1.62^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15112~^~203~^17.50^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~204~^2.31^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15112~^~207~^1.14^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~255~^78.90^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~303~^0.25^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~309~^0.37^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~203~^24.49^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~204~^4.69^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15113~^~207~^1.36^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~255~^70.24^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~303~^0.31^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~309~^0.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~418~^2.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15114~^~203~^20.77^58^3.87^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~204~^6.61^111^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15114~^~207~^1.17^54^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~255~^71.42^95^0.61^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15114~^~303~^1.50^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~309~^0.66^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15114~^~418~^7.79^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15115~^~203~^20.48^28^0.30^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~204~^3.46^50^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15115~^~207~^1.31^27^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~255~^71.87^30^0.82^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~303~^0.70^5^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~309~^1.08^172^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~418~^4.45^5^0.56^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~203~^22.92^4^0.37^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~204~^5.82^4^0.93^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15116~^~207~^1.60^4^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~255~^70.50^4^0.83^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~303~^0.38^4^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~309~^0.51^4^6.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~418~^6.30^4^0.77^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~203~^23.33^18^0.37^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~204~^4.90^7^0.97^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15117~^~207~^1.18^25^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~255~^68.09^26^0.78^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15117~^~303~^1.02^5^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~309~^0.60^10^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~323~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15117~^~418~^9.43^18^2.38^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15118~^~203~^29.91^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~204~^6.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15118~^~207~^1.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~255~^59.09^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~303~^1.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~309~^0.77^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~418~^10.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~203~^29.13^6^0.36^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~204~^8.21^7^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15119~^~207~^2.76^9^0.29^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~255~^59.83^9^0.55^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15119~^~303~^1.39^8^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~309~^0.90^8^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~323~^0.87^3^0.01^~1~^^^^2^0.61^1.03^1^0.66^1.08^~2, 3~^~03/01/2009~ -~15119~^~341~^0.02^3^0.00^~1~^^^^2^0.00^0.05^^^^~2, 3~^~03/01/2009~ -~15119~^~342~^3.96^3^0.74^~1~^^^^2^2.60^4.82^1^-5.44^13.35^~2, 3~^~03/01/2009~ -~15119~^~343~^1.24^3^0.27^~1~^^^^2^0.78^1.89^1^-2.27^4.75^~2, 3~^~03/01/2009~ -~15119~^~344~^0.05^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15119~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15119~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15119~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15121~^~203~^19.44^24^0.16^~1~^~A~^^^1^16.00^21.00^17^19.08^19.79^~2, 3~^~06/01/2012~ -~15121~^~204~^0.96^24^0.02^~1~^~A~^^^1^0.82^1.27^17^0.90^1.00^~2, 3~^~06/01/2012~ -~15121~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15121~^~207~^0.95^24^0.02^~1~^~A~^^^1^0.74^1.21^7^0.90^0.99^~2, 3~^~06/01/2012~ -~15121~^~255~^78.14^24^0.19^~1~^~A~^^^1^76.02^81.24^17^77.71^78.55^~2, 3~^~06/01/2012~ -~15121~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15121~^~303~^1.63^24^0.06^~1~^~A~^^^1^0.87^2.40^13^1.47^1.77^~2, 3~^~06/01/2012~ -~15121~^~309~^0.69^24^0.03^~1~^~A~^^^1^0.45^1.11^11^0.61^0.77^~2, 3~^~06/01/2012~ -~15121~^~323~^0.33^9^0.01^~11~^~JO~^^^2^0.28^0.42^6^0.30^0.36^~2, 3~^~02/01/2003~ -~15121~^~341~^0.00^9^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~15121~^~342~^0.00^9^1.0e-03^~11~^~JO~^^^2^0.00^0.01^2^-4.0e-03^6.0e-03^~1, 2, 3~^~02/01/2003~ -~15121~^~343~^0.00^9^0.00^~11~^~JO~^^^2^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~15121~^~344~^0.05^3^0.00^~1~^~A~^^^1^0.05^0.05^^^^~2, 3~^~06/01/2012~ -~15121~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~418~^2.55^4^^~1~^~A~^^^1^2.00^3.00^^^^~2, 3~^~06/01/2012~ -~15121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15123~^~203~^22.00^9^1.24^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~204~^1.01^5^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15123~^~207~^1.30^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~255~^70.58^15^0.42^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~303~^1.25^24^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~309~^0.82^70^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~418~^1.90^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15124~^~203~^26.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~204~^8.08^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15124~^~207~^2.18^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~255~^64.02^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15124~^~303~^0.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~309~^0.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~323~^2.30^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~342~^0.02^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~343~^0.02^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~344~^0.06^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~15124~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15126~^~203~^23.62^3^1.53^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~204~^2.97^4^0.41^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~ -~15126~^~207~^1.46^3^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~255~^73.19^5^1.10^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15126~^~303~^0.97^5^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~309~^0.48^5^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~323~^0.85^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~342~^0.03^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~343~^0.02^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~344~^0.08^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15126~^~418~^1.17^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15126~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15127~^~203~^24.40^11^0.74^~1~^~A~^^^1^18.44^27.81^10^22.75^26.05^~2, 3~^~07/01/2010~ -~15127~^~204~^0.49^11^0.10^~1~^~A~^^^1^0.22^1.25^10^0.25^0.72^~2, 3~^~07/01/2010~ -~15127~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15127~^~207~^1.64^11^0.07^~1~^~A~^^^1^1.27^2.13^10^1.47^1.80^~2, 3~^~07/01/2010~ -~15127~^~255~^74.03^11^0.91^~1~^~A~^^^1^69.51^81.29^10^71.99^76.07^~2, 3~^~07/01/2010~ -~15127~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15127~^~303~^0.77^11^0.14^~1~^~A~^^^1^0.27^2.10^10^0.45^1.08^~2, 3~^~07/01/2010~ -~15127~^~309~^0.37^11^0.01^~1~^~A~^^^1^0.32^0.44^10^0.34^0.40^~2, 3~^~07/01/2010~ -~15127~^~323~^0.24^4^0.04^~1~^~A~^^^1^0.13^0.35^3^0.09^0.38^~2, 3~^~07/01/2010~ -~15127~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~418~^2.08^4^0.31^~1~^~A~^^^1^1.60^3.00^3^1.07^3.07^~2, 3~^~07/01/2010~ -~15127~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15127~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15128~^~203~^16.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~204~^9.26^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~205~^9.41^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15128~^~207~^2.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~255~^63.16^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~303~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~309~^0.56^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~418~^1.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~203~^16.05^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~204~^2.95^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15129~^~207~^2.10^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~255~^76.95^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~303~^0.36^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~309~^0.22^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~418~^2.20^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~203~^19.09^42^0.23^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~204~^5.86^68^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15130~^~207~^1.12^34^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~255~^72.77^37^0.64^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15130~^~303~^0.37^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~309~^0.99^3^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15130~^~418~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15131~^~203~^23.40^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~204~^0.93^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15131~^~207~^5.06^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~255~^70.83^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15131~^~303~^0.50^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~309~^0.49^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~323~^0.21^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~ -~15131~^~418~^3.26^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15132~^~203~^18.31^77^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~204~^1.31^185^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15132~^~207~^1.30^57^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~255~^80.27^61^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15132~^~303~^0.34^11^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~309~^0.88^88^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~323~^0.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15132~^~418~^2.30^11^0.33^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15133~^~203~^23.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~204~^1.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15133~^~207~^1.46^11^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~255~^74.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15133~^~303~^0.42^11^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~309~^0.53^11^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~323~^0.38^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~ -~15133~^~418~^2.60^11^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15134~^~203~^17.50^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~204~^2.39^4^0.54^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15134~^~207~^1.16^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~255~^79.90^9^0.76^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~303~^0.09^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~309~^0.78^60^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~418~^2.03^3^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~203~^23.14^29^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~204~^5.24^39^0.29^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15135~^~207~^1.09^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~255~^74.52^32^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~303~^0.49^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~309~^0.52^26^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~418~^1.30^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~203~^18.29^51^0.38^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~204~^0.60^54^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15136~^~207~^1.80^50^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~255~^79.57^54^0.46^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~303~^0.59^3^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~309~^5.95^29^0.51^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~418~^9.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~203~^19.35^4^0.77^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~204~^1.54^18^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15137~^~207~^1.85^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~255~^77.55^4^0.60^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~303~^0.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~309~^7.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~418~^11.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~203~^7.62^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~204~^0.46^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~205~^15.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~207~^2.26^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~209~^3.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~15138~^~210~^2.95^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~211~^2.68^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~212~^0.62^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~213~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~255~^74.66^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~269~^6.25^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~303~^0.39^3^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15138~^~309~^0.33^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~323~^0.17^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~342~^0.10^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~343~^0.04^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~344~^0.03^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~418~^0.57^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15138~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~15139~^~203~^18.06^43^0.34^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~204~^1.08^44^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15139~^~207~^1.81^39^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~255~^79.02^47^0.38^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~303~^0.74^17^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~309~^3.54^112^0.18^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~418~^9.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15140~^~203~^17.88^3^0.82^~1~^~A~^^^1^16.31^19.13^2^14.31^21.43^~2, 3~^~07/01/2010~ -~15140~^~204~^0.74^3^0.04^~1~^~A~^^^1^0.68^0.83^2^0.55^0.93^~2, 3~^~07/01/2010~ -~15140~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15140~^~207~^1.96^3^0.08^~1~^~A~^^^1^1.80^2.09^2^1.59^2.33^~2, 3~^~07/01/2010~ -~15140~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~255~^79.69^3^0.82^~1~^~A~^^^1^78.67^81.32^2^76.15^83.23^~2, 3~^~07/01/2010~ -~15140~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~303~^0.50^3^0.04^~1~^~A~^^^1^0.40^0.55^2^0.29^0.70^~2, 3~^~07/01/2010~ -~15140~^~309~^3.81^3^0.43^~1~^~A~^^^1^3.23^4.67^2^1.93^5.69^~2, 3~^~07/01/2010~ -~15140~^~323~^1.84^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~ -~15140~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~344~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~345~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~346~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~347~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~418~^3.33^3^0.49^~1~^~A~^^^1^2.40^4.10^2^1.19^5.47^~2, 3~^~07/01/2010~ -~15140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15141~^~203~^17.88^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~204~^0.74^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~207~^1.96^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~255~^79.69^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~303~^0.50^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~309~^3.81^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~323~^1.84^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~418~^3.33^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15142~^~203~^20.21^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~204~^7.52^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~205~^0.48^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15142~^~207~^2.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~255~^71.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~303~^1.08^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~309~^4.09^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~418~^5.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~203~^17.41^36^0.33^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~204~^0.97^24^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~205~^0.74^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15143~^~207~^1.70^28^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~255~^79.18^32^0.28^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~303~^0.37^8^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~309~^4.27^57^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~418~^9.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~203~^18.50^4^1.38^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~204~^1.18^6^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15144~^~207~^2.00^4^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~255~^80.58^5^0.79^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~303~^2.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~309~^2.80^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~418~^9.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15145~^~203~^15.97^5^0.80^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~204~^0.95^5^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15145~^~207~^1.34^5^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~255~^82.24^5^0.59^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15145~^~303~^0.84^5^0.40^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~309~^1.30^20^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~323~^2.85^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15145~^~418~^2.00^5^0.39^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15145~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15146~^~203~^16.77^4^0.73^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~204~^1.20^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15146~^~207~^1.20^4^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~255~^79.37^4^0.54^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15146~^~303~^0.83^4^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~309~^1.76^4^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~323~^1.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15146~^~418~^2.15^4^0.24^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15146~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15147~^~203~^16.52^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~204~^0.75^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~207~^1.88^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~255~^80.95^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~303~^0.26^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~309~^3.53^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~323~^0.87^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~418~^1.25^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15148~^~203~^19.00^3^0.15^~1~^~A~^^^1^18.81^19.31^2^18.32^19.67^~2, 3~^~07/01/2010~ -~15148~^~204~^0.86^3^0.05^~1~^~A~^^^1^0.79^0.96^2^0.64^1.08^~2, 3~^~07/01/2010~ -~15148~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~207~^2.14^3^0.07^~1~^~A~^^^1^2.00^2.26^2^1.81^2.47^~2, 3~^~07/01/2010~ -~15148~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~255~^78.11^3^0.52^~1~^~A~^^^1^77.27^79.08^2^75.84^80.37^~2, 3~^~07/01/2010~ -~15148~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~303~^0.29^3^0.04^~1~^~A~^^^1^0.22^0.37^2^0.11^0.47^~2, 3~^~07/01/2010~ -~15148~^~309~^4.05^3^0.35^~1~^~A~^^^1^3.36^4.43^2^2.54^5.56^~2, 3~^~07/01/2010~ -~15148~^~323~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15148~^~418~^1.43^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.29^1.57^~2, 3~^~07/01/2010~ -~15148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15149~^~203~^13.61^4^0.31^~1~^~A~^^^1^12.94^14.44^3^12.61^14.60^~2, 3~^~07/01/2010~ -~15149~^~204~^1.01^4^0.06^~1~^~A~^^^1^0.85^1.16^3^0.81^1.21^~2, 3~^~07/01/2010~ -~15149~^~205~^0.91^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15149~^~207~^1.86^4^0.12^~1~^~A~^^^1^1.59^2.19^3^1.46^2.25^~2, 3~^~07/01/2010~ -~15149~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~255~^83.01^4^0.85^~1~^~A~^^^1^80.81^84.57^3^80.30^85.72^~2, 3~^~07/01/2010~ -~15149~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15149~^~303~^0.21^4^0.04^~1~^~A~^^^1^0.11^0.33^3^0.06^0.35^~2, 3~^~07/01/2010~ -~15149~^~309~^0.97^4^0.10^~1~^~A~^^^1^0.83^1.28^3^0.63^1.31^~2, 3~^~07/01/2010~ -~15149~^~323~^1.32^4^0.07^~1~^~A~^^^1^1.12^1.43^3^1.09^1.53^~2, 3~^~07/01/2010~ -~15149~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~342~^0.12^4^0.02^~1~^~A~^^^1^0.06^0.15^3^0.05^0.18^~2, 3~^~07/01/2010~ -~15149~^~343~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.06^3^-0.01^0.06^~1, 2, 3~^~07/01/2010~ -~15149~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~418~^1.11^4^0.08^~1~^~A~^^^1^0.92^1.30^3^0.82^1.38^~2, 3~^~07/01/2010~ -~15149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15150~^~203~^21.39^11^0.48^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~204~^12.28^11^0.24^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~205~^11.47^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15150~^~207~^1.99^11^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~209~^6.70^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~255~^52.86^11^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~269~^0.80^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~303~^1.26^11^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~309~^1.38^11^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~323~^1.30^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15150~^~418~^1.87^11^0.35^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15151~^~203~^22.78^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~204~^1.70^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~205~^1.52^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~207~^3.11^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~255~^71.56^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~303~^0.32^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~309~^1.63^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~323~^2.20^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~342~^0.20^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~343~^0.05^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~418~^1.66^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15152~^~203~^20.42^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~204~^1.36^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~207~^2.54^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~255~^75.85^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15152~^~303~^2.13^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~309~^1.96^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~323~^1.10^7^0.12^~1~^~A~^^^2^0.80^1.77^6^0.81^1.39^~4~^~03/01/2005~ -~15152~^~341~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^6^0.00^0.00^~4~^~03/01/2005~ -~15152~^~342~^0.10^7^0.03^~1~^~A~^^^2^0.00^0.22^6^7.0e-03^0.19^~4~^~03/01/2005~ -~15152~^~343~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^6^0.00^0.00^~4~^~03/01/2005~ -~15152~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~418~^0.74^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15153~^~203~^12.39^3^0.45^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~204~^1.47^3^0.19^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~205~^9.13^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15153~^~207~^2.11^3^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~255~^74.91^3^0.22^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~303~^0.60^3^0.19^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~309~^0.33^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~418~^1.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~203~^20.60^27^1.11^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~204~^1.51^8^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~205~^2.43^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15154~^~207~^1.39^23^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~255~^74.07^28^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~303~^1.22^4^0.61^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~309~^5.67^40^3.76^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~418~^3.50^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~203~^17.10^3^0.40^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~204~^0.76^7^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~205~^6.01^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15155~^~207~^1.57^9^0.09^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~255~^74.56^12^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15155~^~303~^3.19^7^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~309~^0.82^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~323~^4.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15155~^~418~^0.73^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15156~^~203~^19.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~204~^6.78^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~205~^11.05^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15156~^~207~^1.77^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~255~^60.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~303~^3.80^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~309~^0.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~418~^0.69^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15157~^~203~^14.67^4^0.08^~1~^~A~^^^1^14.50^14.88^3^14.39^14.94^~2, 3~^~07/01/2010~ -~15157~^~204~^0.96^4^0.05^~1~^~A~^^^1^0.85^1.10^3^0.80^1.12^~2, 3~^~07/01/2010~ -~15157~^~205~^3.57^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~207~^1.82^4^0.01^~1~^~A~^^^1^1.78^1.87^3^1.75^1.87^~2, 3~^~07/01/2010~ -~15157~^~209~^1.40^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~255~^78.98^4^0.16^~1~^~A~^^^1^78.50^79.22^3^78.45^79.50^~2, 3~^~07/01/2010~ -~15157~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15157~^~303~^1.62^4^0.02^~1~^~A~^^^1^1.55^1.66^3^1.54^1.70^~2, 3~^~07/01/2010~ -~15157~^~309~^0.51^4^7.0e-03^~1~^~A~^^^1^0.49^0.52^3^0.48^0.53^~2, 3~^~07/01/2010~ -~15157~^~323~^0.68^4^0.11^~1~^~A~^^^1^0.44^0.91^3^0.30^1.04^~2, 3~^~07/01/2010~ -~15157~^~341~^0.02^4^0.02^~1~^~A~^^^1^0.00^0.08^3^-0.04^0.08^~1, 2, 3~^~07/01/2010~ -~15157~^~342~^0.89^4^0.89^~1~^~A~^^^1^0.00^3.57^3^-1.94^3.73^~1, 2, 3~^~07/01/2010~ -~15157~^~343~^0.38^4^0.36^~1~^~A~^^^1^0.00^1.47^3^-0.77^1.53^~1, 2, 3~^~07/01/2010~ -~15157~^~344~^0.03^4^0.02^~1~^~A~^^^1^0.00^0.11^3^-0.06^0.11^~1, 2, 3~^~07/01/2010~ -~15157~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~346~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~07/01/2010~ -~15157~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~418~^11.28^4^1.65^~1~^~A~^^^1^8.30^14.70^3^6.02^16.52^~2, 3~^~07/01/2010~ -~15157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15158~^~203~^14.24^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~204~^11.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~205~^10.33^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15158~^~207~^2.16^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~255~^61.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~303~^13.91^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~309~^1.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~418~^40.27^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~203~^25.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~204~^1.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~205~^5.13^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15159~^~207~^3.74^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~255~^63.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~303~^2.81^0^^~4~^~BFSN~^~15160~^^^^^^^^^~07/01/2013~ -~15159~^~309~^2.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~418~^98.89^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15160~^~203~^24.25^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~204~^1.59^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~205~^5.90^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~207~^3.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~209~^2.31^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~255~^65.26^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~303~^2.68^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~309~^0.84^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~323~^1.12^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~341~^0.03^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~342~^1.47^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~343~^0.63^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~344~^0.05^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~346~^0.01^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~418~^18.63^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15162~^~203~^0.40^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~204~^0.02^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15162~^~207~^1.80^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~255~^97.70^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15162~^~303~^0.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~309~^0.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~323~^0.31^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~342~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~343~^0.01^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15162~^~418~^5.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15162~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15163~^~203~^16.24^14^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~204~^0.70^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~205~^0.82^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15163~^~207~^1.68^14^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~255~^80.56^16^0.54^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~303~^6.02^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~309~^1.73^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~418~^3.00^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~203~^11.90^12^0.07^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~204~^2.24^23^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~205~^3.69^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15164~^~207~^1.59^19^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~255~^80.58^16^0.61^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15164~^~303~^3.95^6^0.15^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~309~^1.60^6^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~323~^0.55^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~342~^0.02^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~343~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15164~^~418~^12.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15165~^~203~^23.80^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~204~^4.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~205~^7.39^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15165~^~207~^3.18^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~255~^61.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~303~^6.72^18^0.23^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~309~^2.67^18^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~418~^24.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~203~^14.91^18^0.69^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~204~^1.04^17^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~205~^2.20^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15166~^~207~^1.60^14^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~255~^80.25^19^0.62^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15166~^~303~^5.30^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~309~^1.68^11^0.28^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~323~^1.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15166~^~418~^20.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15167~^~203~^5.71^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~204~^1.71^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~205~^2.72^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~207~^0.82^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~209~^0.45^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~211~^0.62^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~255~^89.04^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~269~^0.62^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~303~^4.61^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~309~^39.30^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~323~^0.85^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~418~^8.75^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15168~^~203~^8.77^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~204~^12.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~205~^11.62^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15168~^~207~^1.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~255~^64.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~303~^6.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~309~^87.13^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~418~^15.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15169~^~203~^11.42^3^1.20^~1~^~A~^^^1^9.06^13.00^2^6.25^16.58^~2, 3~^~07/01/2010~ -~15169~^~204~^3.42^3^0.11^~1~^~A~^^^1^3.29^3.64^2^2.93^3.89^~2, 3~^~07/01/2010~ -~15169~^~205~^5.45^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~207~^1.53^3^0.34^~1~^~A~^^^1^0.94^2.12^2^0.06^2.99^~2, 3~^~07/01/2010~ -~15169~^~209~^0.90^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15169~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~211~^1.23^3^0.52^~1~^~A~^^^1^0.19^1.80^2^-1.02^3.48^~1, 2, 3~^~07/01/2010~ -~15169~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~255~^78.19^3^0.83^~1~^~A~^^^1^76.94^79.77^2^74.59^81.77^~2, 3~^~07/01/2010~ -~15169~^~269~^1.23^3^0.52^~1~^~A~^^^1^0.19^1.80^2^-1.02^3.48^~2, 3~^~07/01/2010~ -~15169~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~303~^9.21^3^1.38^~1~^~A~^^^1^7.00^11.77^2^3.24^15.18^~2, 3~^~07/01/2010~ -~15169~^~309~^78.60^3^31.07^~1~^~A~^^^1^20.91^127.44^2^-55.08^212.27^~2, 3~^~07/01/2010~ -~15169~^~323~^1.70^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~15169~^~418~^17.50^3^2.80^~1~^~A~^^^1^12.70^22.40^2^5.45^29.55^~2, 3~^~07/01/2010~ -~15169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15170~^~203~^7.06^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~204~^2.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~205~^3.91^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15170~^~207~^1.42^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~255~^85.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15170~^~303~^6.70^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~309~^90.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~323~^0.85^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15170~^~418~^19.13^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15171~^~203~^9.45^14^0.36^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~204~^2.30^13^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~205~^4.95^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15171~^~207~^1.23^7^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~255~^82.06^27^0.67^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~303~^5.11^23^0.54^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~309~^16.62^102^1.43^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~418~^16.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15172~^~203~^12.06^12^0.90^~1~^~A~^^^1^8.31^17.94^11^10.07^14.04^~2, 3~^~07/01/2010~ -~15172~^~204~^0.49^12^0.02^~1~^~A~^^^1^0.32^0.61^11^0.43^0.55^~2, 3~^~07/01/2010~ -~15172~^~205~^3.18^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~207~^1.74^12^0.08^~1~^~A~^^^1^1.40^2.38^11^1.56^1.92^~2, 3~^~07/01/2010~ -~15172~^~209~^2.17^3^0.64^~1~^~A~^^^1^1.20^3.40^2^-0.62^4.95^~2, 3~^~07/01/2010~ -~15172~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~255~^82.53^12^1.22^~1~^~A~^^^1^75.03^88.90^11^79.83^85.22^~2, 3~^~07/01/2010~ -~15172~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~303~^0.38^12^0.04^~1~^~A~^^^1^0.21^0.75^11^0.28^0.48^~2, 3~^~07/01/2010~ -~15172~^~309~^0.91^12^0.09^~1~^~A~^^^1^0.58^1.65^11^0.70^1.11^~2, 3~^~07/01/2010~ -~15172~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~344~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~345~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~346~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~347~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15172~^~418~^1.41^4^0.46^~1~^~A~^^^1^0.82^2.80^3^-0.08^2.89^~2, 3~^~07/01/2010~ -~15172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15173~^~203~^18.07^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~204~^10.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~205~^10.13^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15173~^~207~^1.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~255~^58.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~303~^0.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~309~^1.06^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~418~^1.32^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~203~^12.77^3^0.62^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~204~^0.41^3^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~205~^10.62^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15174~^~207~^2.37^3^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~255~^73.82^3^1.18^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~303~^0.31^3^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~309~^0.33^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~418~^1.60^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15175~^~203~^15.58^11^0.85^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~204~^1.38^12^0.25^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~205~^3.08^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15175~^~207~^1.41^7^0.24^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~255~^78.55^8^0.60^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15175~^~303~^0.68^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~309~^1.53^157^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~323~^1.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15175~^~418~^1.30^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15176~^~203~^17.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~204~^7.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~205~^7.79^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15176~^~207~^1.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~255~^64.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~303~^1.01^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~309~^1.74^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~418~^1.23^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~203~^23.84^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~204~^0.40^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~205~^7.76^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15177~^~207~^2.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~255~^66.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15177~^~303~^5.03^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~309~^1.63^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15177~^~418~^9.07^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15178~^~203~^47.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~204~^0.80^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~205~^15.52^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15178~^~207~^4.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~255~^32.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~303~^10.06^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~309~^3.26^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~418~^18.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~203~^18.28^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~204~^4.32^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15179~^~207~^2.62^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~255~^72.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~303~^0.85^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~309~^0.31^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~418~^3.26^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~203~^21.43^6^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~204~^5.50^7^0.20^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15180~^~207~^2.47^6^0.11^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~255~^70.77^6^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~303~^0.70^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~309~^1.00^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~418~^4.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15181~^~203~^19.78^25^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~204~^6.05^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15181~^~207~^1.38^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15181~^~255~^70.03^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15181~^~303~^0.84^25^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~309~^0.92^25^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~418~^4.40^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15182~^~203~^20.47^45^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~204~^7.31^1689^0.14^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15182~^~207~^2.70^42^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~255~^68.72^44^0.21^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~303~^1.06^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~309~^1.02^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~418~^0.30^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15183~^~203~^29.13^6^0.36^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~204~^8.21^7^0.13^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15183~^~207~^2.76^9^0.29^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~255~^59.83^9^0.55^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~303~^1.39^8^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~309~^0.90^8^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15184~^~203~^25.51^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~204~^0.82^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15184~^~207~^0.78^0^^~4~^~BFAN~^^^^^^^^^^~03/01/1997~ -~15184~^~255~^75.21^0^^~4~^~BFAN~^^^^^^^^^^~03/01/1997~ -~15184~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1997~ -~15184~^~303~^1.53^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~309~^0.77^0^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~15184~^~418~^2.99^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15185~^~203~^26.53^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~204~^8.08^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15185~^~207~^2.18^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~255~^64.02^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~303~^0.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~309~^0.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~418~^2.20^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15186~^~203~^23.62^3^1.53^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~204~^2.97^4^0.41^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~205~^0.00^0^^~7~^^^^^^^^^^^~08/01/1992~ -~15186~^~207~^0.63^0^^~4~^~BFAN~^^^^^^^^^^~06/01/1996~ -~15186~^~255~^74.02^0^^~4~^~BFAN~^^^^^^^^^^~06/01/1996~ -~15186~^~303~^0.97^5^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~309~^0.48^5^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~418~^1.17^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~15187~^~203~^24.18^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~204~^4.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15187~^~207~^1.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~255~^68.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~303~^1.91^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~309~^0.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~418~^2.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~203~^22.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~204~^2.99^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15188~^~207~^1.33^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~255~^73.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~303~^1.08^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~309~^0.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~418~^4.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~203~^25.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~204~^5.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15189~^~207~^1.33^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~255~^62.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~303~^0.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~309~^1.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~418~^6.22^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~203~^24.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~204~^1.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15190~^~207~^1.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~255~^73.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~303~^1.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~309~^0.97^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~418~^0.92^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~203~^22.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~204~^10.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15191~^~207~^1.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~255~^66.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~303~^0.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~309~^0.99^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~418~^1.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15192~^~203~^18.73^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~204~^0.50^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~207~^1.80^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~255~^80.31^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~303~^0.20^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~309~^0.39^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~323~^0.67^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~418~^2.31^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15193~^~203~^24.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~204~^0.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15193~^~207~^1.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~255~^69.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~303~^1.06^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~309~^0.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~418~^1.20^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~203~^23.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~204~^0.90^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15194~^~207~^2.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~255~^71.22^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~303~^1.45^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~309~^0.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~418~^0.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~203~^22.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~204~^6.32^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15195~^~207~^1.38^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~255~^70.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~303~^1.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~309~^0.85^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~418~^2.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~203~^18.42^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~204~^17.74^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15196~^~207~^1.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~255~^61.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~303~^0.85^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~309~^0.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~418~^0.96^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~203~^21.01^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~204~^17.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15197~^~207~^3.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~255~^63.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~303~^1.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~309~^0.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~418~^9.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~203~^24.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~204~^0.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15198~^~207~^1.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~255~^73.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~303~^0.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~309~^1.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~418~^0.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~203~^22.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~204~^1.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15199~^~207~^1.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~255~^75.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~303~^0.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~309~^0.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~418~^4.15^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~203~^26.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~204~^2.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15200~^~207~^1.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~255~^69.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~303~^2.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~309~^0.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~418~^18.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~203~^25.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~204~^10.12^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15201~^~207~^2.08^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~255~^61.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15201~^~303~^1.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~309~^0.86^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~323~^1.25^0^^~4~^~BFYN~^~15050~^^^^^^^^^~02/01/2003~ -~15201~^~418~^4.23^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15201~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15202~^~203~^26.32^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~204~^8.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15202~^~207~^1.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~255~^62.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~303~^0.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~309~^1.05^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~418~^3.27^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~203~^18.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~204~^1.95^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15203~^~207~^1.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~255~^78.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~303~^0.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~309~^0.53^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~418~^1.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~203~^24.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~204~^1.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15204~^~207~^1.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~255~^73.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~303~^1.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~309~^0.79^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~418~^2.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~203~^24.92^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~204~^1.26^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15205~^~207~^1.81^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~255~^72.03^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~303~^0.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~309~^0.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~418~^3.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~203~^21.33^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~204~^1.17^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15206~^~207~^1.45^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~255~^76.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~303~^0.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~309~^1.32^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~418~^1.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~203~^28.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~204~^8.23^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~205~^1.92^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15207~^~207~^1.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~255~^58.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~303~^0.77^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~309~^1.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~418~^11.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~203~^17.19^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~204~^19.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15208~^~207~^1.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~255~^62.85^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~303~^1.64^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~309~^0.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~418~^1.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~203~^25.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~204~^8.13^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15209~^~207~^3.26^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~255~^59.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~303~^1.03^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~309~^0.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~418~^3.05^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~203~^25.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~204~^13.38^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15210~^~207~^1.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~255~^65.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~303~^0.91^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~309~^0.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~418~^2.87^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~203~^25.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~204~^4.83^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15211~^~207~^1.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~255~^68.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~303~^0.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~309~^0.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~418~^3.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15212~^~203~^24.58^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~204~^5.28^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~207~^1.82^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~255~^70.65^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~303~^0.45^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~309~^0.46^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~323~^0.48^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~418~^4.73^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15213~^~203~^24.21^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~204~^3.50^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15213~^~207~^1.55^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~255~^68.42^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~303~^0.68^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~309~^0.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~418~^1.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~203~^21.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~204~^4.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15214~^~207~^1.62^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~255~^71.91^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~303~^0.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~309~^0.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~418~^3.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~203~^21.71^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~204~^17.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15215~^~207~^1.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~255~^59.22^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~303~^1.24^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~309~^0.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~418~^0.14^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~203~^23.73^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~204~^6.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15216~^~207~^1.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~255~^69.17^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~303~^0.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~309~^0.65^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~418~^3.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~203~^21.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~204~^2.97^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15217~^~207~^1.87^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~255~^73.99^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~303~^1.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~309~^0.96^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~418~^2.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~203~^24.87^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~204~^0.90^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15218~^~207~^1.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~255~^73.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~303~^1.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~309~^1.99^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~418~^2.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~203~^26.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~204~^8.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15219~^~207~^1.50^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~255~^63.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~303~^1.92^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~309~^0.85^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~418~^7.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~203~^28.21^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~204~^1.29^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15220~^~207~^1.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~255~^62.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~303~^1.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~309~^1.05^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~418~^2.19^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15221~^~203~^29.15^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~204~^0.59^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~207~^1.96^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~255~^68.98^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~303~^0.92^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~309~^0.45^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~323~^0.29^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~418~^2.35^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15222~^~203~^20.58^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~204~^3.78^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15222~^~207~^2.69^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~255~^70.45^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~303~^0.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~309~^0.28^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~418~^2.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~203~^24.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~204~^7.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15223~^~207~^1.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~255~^65.09^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~303~^0.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~309~^1.27^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~418~^0.96^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~203~^22.44^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~204~^3.06^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15224~^~207~^1.49^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~255~^74.23^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~303~^0.12^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~309~^1.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~418~^2.35^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~203~^29.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~204~^6.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15225~^~207~^1.40^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~255~^67.33^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~303~^0.63^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~309~^0.67^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~418~^1.25^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~203~^22.32^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~204~^1.24^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~205~^0.95^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15226~^~207~^2.18^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~255~^73.31^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~303~^0.43^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~309~^5.47^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~418~^10.38^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~203~^23.72^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~204~^1.51^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15227~^~207~^2.56^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~255~^75.10^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~303~^2.88^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~309~^3.59^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~418~^10.38^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~203~^26.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~204~^1.94^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~205~^3.12^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15228~^~207~^1.78^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~255~^66.76^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~303~^1.41^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~309~^7.27^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~418~^4.04^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~203~^32.48^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~204~^1.40^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~205~^1.64^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15229~^~207~^3.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~255~^61.12^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~303~^10.84^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~309~^3.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~418~^5.40^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~203~^29.82^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~204~^2.08^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~205~^4.40^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15230~^~207~^3.20^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~255~^60.50^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15230~^~303~^9.54^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~309~^3.36^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~323~^1.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15230~^~418~^36.00^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15230~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15231~^~203~^18.90^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~204~^4.60^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~205~^9.90^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15231~^~207~^2.46^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~255~^64.12^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15231~^~303~^9.20^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~309~^33.24^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~323~^0.85^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~418~^28.80^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15232~^~203~^22.64^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~204~^0.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~15232~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15232~^~207~^0.99^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~255~^66.97^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~303~^1.13^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~309~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~323~^1.87^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~342~^0.03^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~344~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~418~^0.47^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15233~^~203~^18.47^4^0.42^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~204~^2.85^4^0.19^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15233~^~207~^1.15^4^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~255~^77.67^4^0.62^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~303~^0.35^4^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~309~^0.61^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~418~^2.90^4^0.06^~1~^^^^^^^^^^^~09/01/1987~ -~15234~^~203~^15.23^12^0.31^~1~^~A~^^^1^13.81^17.13^11^14.55^15.91^~2, 3~^~07/01/2010~ -~15234~^~204~^5.94^12^0.37^~1~^~A~^^^1^4.02^8.21^11^5.12^6.75^~2, 3~^~07/01/2010~ -~15234~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15234~^~207~^1.05^12^0.04^~1~^~A~^^^1^0.89^1.33^11^0.95^1.15^~2, 3~^~07/01/2010~ -~15234~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~255~^79.06^12^0.42^~1~^~A~^^^1^76.55^81.90^11^78.12^79.98^~2, 3~^~07/01/2010~ -~15234~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15234~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15234~^~303~^0.23^12^0.01^~1~^~A~^^^1^0.15^0.31^11^0.19^0.26^~2, 3~^~07/01/2010~ -~15234~^~309~^0.48^12^0.01^~1~^~A~^^^1^0.41^0.54^11^0.45^0.50^~2, 3~^~07/01/2010~ -~15234~^~323~^0.81^4^0.05^~1~^~A~^^^1^0.63^0.89^3^0.61^0.99^~2, 3~^~07/01/2010~ -~15234~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-3.0e-03^0.02^~1, 2, 3~^~07/01/2010~ -~15234~^~342~^0.22^4^0.01^~1~^~A~^^^1^0.19^0.25^3^0.17^0.26^~2, 3~^~07/01/2010~ -~15234~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~344~^0.04^4^0.01^~1~^~A~^^^1^0.02^0.06^3^0.00^0.07^~1, 2, 3~^~07/01/2010~ -~15234~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~346~^0.02^4^1.0e-03^~1~^~A~^^^1^0.02^0.02^3^0.01^0.02^~1, 2, 3~^~07/01/2010~ -~15234~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~418~^2.88^4^0.28^~1~^~A~^^^1^2.30^3.50^3^1.97^3.77^~2, 3~^~07/01/2010~ -~15234~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15234~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15235~^~203~^18.44^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~204~^7.19^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~207~^1.28^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~209~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~255~^74.65^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~303~^0.28^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~309~^0.58^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~323~^0.97^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~341~^0.02^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~342~^0.27^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~344~^0.05^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~346~^0.02^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~418~^2.78^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15236~^~203~^20.42^4^0.36^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~204~^13.42^4^1.27^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15236~^~207~^1.13^4^0.04^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~255~^64.89^4^0.67^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~269~^0.00^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~303~^0.34^4^0.01^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~309~^0.36^4^0.01^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~323~^3.55^4^0.26^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~341~^0.01^4^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~342~^0.30^4^0.04^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~343~^0.05^4^0.01^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~344~^0.06^4^0.02^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~345~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~347~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~418~^3.23^4^0.86^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~573~^0.00^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~578~^0.00^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15237~^~203~^22.10^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~204~^12.35^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15237~^~207~^1.15^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~255~^64.75^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~269~^0.00^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~303~^0.34^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~309~^0.43^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~323~^1.14^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~418~^2.80^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~573~^0.00^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~578~^0.00^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15238~^~203~^21.27^3^0.87^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~204~^7.67^3^0.69^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15238~^~207~^1.30^3^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~255~^70.47^3^1.19^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~303~^0.34^3^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~309~^0.43^3^0.02^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~418~^2.67^3^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~203~^24.30^3^0.66^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~204~^8.23^3^0.89^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15239~^~207~^1.40^3^0.00^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~255~^67.00^3^1.35^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~303~^0.39^3^0.03^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~309~^0.47^3^6.0e-03^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~418~^3.17^3^0.31^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~203~^19.94^8^0.19^~1~^~A~^^^1^19.25^20.75^7^19.48^20.39^~2, 3~^~07/01/2010~ -~15240~^~204~^6.18^8^1.15^~1~^~A~^^^1^1.94^10.81^7^3.45^8.90^~2, 3~^~07/01/2010~ -~15240~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15240~^~207~^1.21^8^0.04^~1~^~A~^^^1^0.96^1.36^7^1.10^1.31^~2, 3~^~07/01/2010~ -~15240~^~255~^73.80^8^0.94^~1~^~A~^^^1^69.09^76.55^7^71.57^76.02^~2, 3~^~07/01/2010~ -~15240~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15240~^~303~^0.31^8^0.01^~1~^~A~^^^1^0.23^0.36^7^0.26^0.34^~2, 3~^~07/01/2010~ -~15240~^~309~^0.45^8^0.02^~1~^~A~^^^1^0.35^0.54^7^0.39^0.50^~2, 3~^~07/01/2010~ -~15240~^~323~^2.34^3^0.11^~1~^~A~^^^1^2.22^2.57^2^1.84^2.83^~2, 3~^~07/01/2010~ -~15240~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~342~^0.04^3^0.01^~1~^~A~^^^1^0.02^0.06^2^-0.01^0.09^~2, 3~^~07/01/2010~ -~15240~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~344~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 2, 3~^~07/01/2010~ -~15240~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~346~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.02^~1, 2, 3~^~07/01/2010~ -~15240~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~418~^4.30^3^0.40^~1~^~A~^^^1^3.50^4.70^2^2.57^6.02^~2, 3~^~07/01/2010~ -~15240~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15240~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15241~^~203~^23.80^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~204~^7.38^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~205~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~207~^1.44^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~255~^68.72^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~303~^0.36^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~309~^0.54^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~323~^2.79^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~342~^0.05^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~344~^0.01^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~346~^0.01^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~418~^4.11^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15242~^~203~^14.85^4^0.05^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~204~^0.97^4^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15242~^~207~^1.00^4^0.00^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~255~^84.05^4^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~303~^0.55^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~309~^1.01^4^0.01^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~418~^2.10^4^0.17^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~203~^17.52^4^0.33^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~204~^1.30^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15243~^~207~^1.07^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~255~^80.80^4^0.46^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~303~^1.11^4^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~309~^1.48^3^0.16^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~418~^3.10^4^0.04^~1~^^^^^^^^^^^~09/01/1987~ -~15244~^~203~^8.87^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~204~^2.65^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~205~^4.23^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~207~^1.27^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~209~^0.70^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~211~^0.96^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~255~^82.98^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~269~^0.96^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~303~^7.16^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~309~^61.04^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~323~^1.32^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~418~^12.91^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15245~^~203~^5.22^4^0.34^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~204~^1.55^4^0.25^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~205~^5.53^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15245~^~207~^1.50^4^0.10^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~255~^86.20^4^1.52^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~303~^5.78^4^1.34^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~309~^37.92^4^3.55^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~418~^16.20^4^1.14^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~203~^7.00^4^0.25^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~204~^2.12^4^0.36^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~205~^7.28^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~ -~15246~^~207~^1.65^4^0.08^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~255~^81.95^4^1.58^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~303~^7.77^4^2.62^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~309~^45.15^4^5.35^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~418~^24.30^4^1.07^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~203~^23.45^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~204~^4.30^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1987~ -~15247~^~207~^1.30^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~255~^71.50^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15247~^~303~^0.61^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~309~^0.56^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~323~^0.92^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~ -~15247~^~418~^5.00^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15247~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15250~^~203~^26.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~204~^1.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~205~^1.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~207~^1.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15250~^~255~^69.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15250~^~303~^1.41^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~309~^1.71^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~323~^6.33^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~15250~^~418~^5.25^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15250~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~15251~^~203~^12.69^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~204~^11.72^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~205~^13.96^0^^~4~^~NC~^^^^^^^^^^~06/01/1995~ -~15251~^~207~^1.25^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~255~^60.38^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~303~^1.24^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~309~^0.52^1^^~1~^~A~^^^^^^^^^^~06/01/1995~ -~15251~^~418~^2.07^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~203~^11.97^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~204~^10.43^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~205~^11.85^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~ -~15252~^~207~^1.19^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~255~^64.57^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~303~^1.46^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~309~^0.46^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~418~^2.18^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15253~^~203~^20.63^12^0.10^~1~^~A~^^^1^19.75^21.06^11^20.39^20.87^~2, 3~^~05/01/2011~ -~15253~^~204~^7.17^12^0.30^~1~^~A~^^^1^5.13^8.69^11^6.50^7.84^~2, 3~^~05/01/2011~ -~15253~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1996~ -~15253~^~207~^2.45^12^0.04^~1~^~A~^^^1^2.26^2.74^11^2.34^2.55^~2, 3~^~05/01/2011~ -~15253~^~255~^71.07^12^0.29^~1~^~A~^^^1^68.95^72.55^11^70.42^71.72^~2, 3~^~05/01/2011~ -~15253~^~269~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~303~^0.57^12^0.02^~1~^~A~^^^1^0.48^0.68^11^0.53^0.61^~2, 3~^~05/01/2011~ -~15253~^~309~^0.67^12^0.01^~1~^~A~^^^1^0.59^0.77^11^0.63^0.70^~2, 3~^~05/01/2011~ -~15253~^~323~^1.88^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~418~^0.40^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~573~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15253~^~578~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15260~^~203~^23.10^17^0.09^~1~^~A~^^^1^22.31^23.75^16^22.90^23.29^~2, 3~^~05/01/2011~ -~15260~^~204~^5.02^17^0.18^~1~^~A~^^^1^3.03^6.80^16^4.62^5.42^~2, 3~^~05/01/2011~ -~15260~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~15260~^~207~^2.50^17^0.03^~1~^~A~^^^1^2.14^2.76^16^2.41^2.58^~2, 3~^~05/01/2011~ -~15260~^~255~^70.71^17^0.23^~1~^~A~^^^1^68.96^73.34^16^70.21^71.20^~2, 3~^~05/01/2011~ -~15260~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~15260~^~303~^0.77^17^0.02^~1~^~A~^^^1^0.58^0.88^16^0.72^0.81^~2, 3~^~05/01/2011~ -~15260~^~309~^0.96^17^0.01^~1~^~A~^^^1^0.87^1.12^16^0.92^0.99^~2, 3~^~05/01/2011~ -~15260~^~323~^1.28^4^0.04^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~341~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~342~^0.12^4^0.03^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~343~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~344~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~345~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~346~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~347~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~418~^4.95^15^0.19^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~203~^20.08^3^0.13^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~204~^1.70^3^0.11^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15261~^~207~^0.93^3^0.02^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~255~^78.08^3^0.14^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~303~^0.56^3^0.03^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~309~^0.33^3^0.01^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15261~^~342~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15261~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15261~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15261~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15261~^~418~^1.58^3^0.18^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15261~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~203~^26.15^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~204~^2.65^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~207~^1.14^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~255~^71.59^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~303~^0.69^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~309~^0.41^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~323~^0.79^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~342~^0.06^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15262~^~418~^1.86^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15264~^~203~^26.33^12^0.16^~1~^~A~^^^1^25.56^27.63^11^25.98^26.68^~2, 3~^~05/01/2011~ -~15264~^~204~^5.87^12^0.14^~1~^~A~^^^1^5.24^6.62^11^5.56^6.18^~2, 3~^~05/01/2011~ -~15264~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~207~^1.89^12^0.04^~1~^~A~^^^1^1.70^2.22^11^1.79^1.98^~2, 3~^~05/01/2011~ -~15264~^~255~^67.78^12^0.17^~1~^~A~^^^1^66.56^68.79^11^67.39^68.16^~2, 3~^~05/01/2011~ -~15264~^~269~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~303~^0.48^12^0.01^~1~^~A~^^^1^0.40^0.66^11^0.44^0.52^~2, 3~^~05/01/2011~ -~15264~^~309~^0.58^12^8.0e-03^~1~^~A~^^^1^0.55^0.63^11^0.56^0.59^~2, 3~^~05/01/2011~ -~15264~^~323~^2.09^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~418~^5.54^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~573~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~578~^0.00^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15265~^~203~^24.62^17^0.12^~1~^~A~^^^1^23.87^25.37^16^24.35^24.89^~2, 3~^~05/01/2011~ -~15265~^~204~^4.21^17^0.13^~1~^~A~^^^1^2.70^4.94^16^3.91^4.49^~2, 3~^~05/01/2011~ -~15265~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~207~^1.90^17^0.02^~1~^~A~^^^1^1.75^2.12^16^1.85^1.94^~2, 3~^~05/01/2011~ -~15265~^~255~^70.63^17^0.19^~1~^~A~^^^1^69.44^72.66^16^70.21^71.04^~2, 3~^~05/01/2011~ -~15265~^~269~^0.00^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~303~^0.57^17^0.01^~1~^~A~^^^1^0.44^0.76^16^0.52^0.60^~2, 3~^~05/01/2011~ -~15265~^~309~^0.65^17^9.0e-03^~1~^~A~^^^1^0.57^0.71^16^0.63^0.66^~2, 3~^~05/01/2011~ -~15265~^~323~^1.28^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~418~^4.96^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~573~^0.00^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~578~^0.00^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15266~^~203~^17.17^3^^~1~^~A~^^^1^16.88^17.56^^^^~2~^~08/01/2012~ -~15266~^~204~^0.82^0^^~4~^~O~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15266~^~207~^1.34^3^^~1~^~A~^^^1^1.22^1.42^^^^~2~^~08/01/2012~ -~15266~^~255~^81.99^3^^~1~^~A~^^^1^81.92^82.05^^^^~2~^~08/01/2012~ -~15266~^~303~^0.27^3^^~1~^~A~^^^1^0.25^0.29^^^^~2~^~08/01/2012~ -~15266~^~309~^0.40^3^^~1~^~A~^^^1^0.37^0.45^^^^~2~^~08/01/2012~ -~15267~^~203~^19.42^3^^~1~^~A~^^^1^18.81^19.94^^^^~2~^~08/01/2012~ -~15267~^~204~^0.99^0^^~4~^~O~^~~^~~^^^^^^^~~^~10/01/2017~ -~15267~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15267~^~207~^1.42^3^^~1~^~A~^^^1^1.25^1.58^^^^~2~^~08/01/2012~ -~15267~^~255~^79.34^3^^~1~^~A~^^^1^79.23^79.50^^^^~2~^~08/01/2012~ -~15267~^~303~^0.29^3^^~1~^~A~^^^1^0.27^0.34^^^^~2~^~08/01/2012~ -~15267~^~309~^0.44^3^^~1~^~A~^^^1^0.43^0.46^^^^~2~^~08/01/2012~ -~15269~^~203~^20.42^3^^~1~^~A~^^^1^18.81^21.38^^^^~2~^~08/01/2012~ -~15269~^~204~^0.25^3^^~1~^~A~^^^1^0.18^0.33^^^^~2~^~08/01/2012~ -~15269~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~207~^1.33^3^^~1~^~A~^^^1^1.15^1.60^^^^~2~^~08/01/2012~ -~15269~^~255~^78.37^3^^~1~^~A~^^^1^77.39^79.27^^^^~2~^~08/01/2012~ -~15269~^~303~^0.16^3^^~1~^~A~^^^1^0.15^0.17^^^^~2~^~08/01/2012~ -~15269~^~309~^0.43^3^^~1~^~A~^^^1^0.43^0.45^^^^~2~^~08/01/2012~ -~15270~^~203~^20.10^3^^~1~^~A~^^^1^19.37^20.87^^^^~2~^~08/01/2012~ -~15270~^~204~^0.51^3^^~1~^~A~^^^1^0.23^0.66^^^^~2~^~08/01/2012~ -~15270~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~207~^1.23^3^^~1~^~A~^^^1^1.18^1.29^^^^~2~^~08/01/2012~ -~15270~^~255~^78.45^3^^~1~^~A~^^^1^77.89^79.14^^^^~2~^~08/01/2012~ -~15270~^~303~^0.52^3^^~1~^~A~^^^1^0.29^0.97^^^^~2~^~08/01/2012~ -~15270~^~309~^1.34^3^^~1~^~A~^^^1^1.33^1.35^^^^~2~^~08/01/2012~ -~15271~^~203~^23.98^3^^~1~^~A~^^^1^23.50^24.25^^^^~2~^~08/01/2012~ -~15271~^~204~^0.28^3^^~1~^~A~^^^1^0.20^0.37^^^^~2~^~08/01/2012~ -~15271~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~207~^1.22^3^^~1~^~A~^^^1^1.19^1.27^^^^~2~^~08/01/2012~ -~15271~^~255~^74.33^3^^~1~^~A~^^^1^73.83^74.78^^^^~2~^~08/01/2012~ -~15271~^~303~^0.51^3^^~1~^~A~^^^1^0.41^0.65^^^^~2~^~08/01/2012~ -~15271~^~309~^1.64^3^^~1~^~A~^^^1^1.61^1.68^^^^~2~^~08/01/2012~ -~15274~^~203~^21.23^3^0.81^~1~^~A~^^^1^19.75^22.56^2^17.72^24.73^~2, 3~^~08/01/2013~ -~15274~^~204~^2.73^3^0.54^~1~^~A~^^^1^2.00^3.80^2^0.38^5.08^~2, 3~^~08/01/2013~ -~15274~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~207~^1.32^3^0.03^~1~^~A~^^^1^1.24^1.36^2^1.15^1.48^~2, 3~^~08/01/2013~ -~15274~^~255~^75.67^3^0.56^~1~^~A~^^^1^74.54^76.26^2^73.24^78.09^~2, 3~^~08/01/2013~ -~15274~^~303~^0.38^3^0.01^~1~^~A~^^^1^0.35^0.42^2^0.30^0.46^~2, 3~^~08/01/2013~ -~15274~^~309~^0.55^3^0.01^~1~^~A~^^^1^0.53^0.57^2^0.50^0.60^~2, 3~^~08/01/2013~ -~15274~^~418~^2.77^3^0.31^~1~^~A~^^^1^2.40^3.40^2^1.39^4.13^~2, 3~^~08/01/2013~ -~16001~^~203~^19.87^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~204~^0.53^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~205~^62.90^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16001~^~207~^3.26^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~255~^13.44^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~303~^4.98^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~309~^5.04^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~203~^7.52^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~204~^0.10^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~205~^24.77^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16002~^~207~^1.33^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~255~^66.29^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~303~^2.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~309~^1.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~203~^3.80^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~204~^0.03^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~205~^55.01^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16003~^~207~^0.58^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~255~^40.58^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~303~^1.13^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~309~^1.56^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~203~^3.29^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~204~^0.12^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~205~^60.72^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16004~^~207~^0.42^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~255~^35.45^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~303~^1.16^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~309~^0.07^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~203~^5.54^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~204~^5.15^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~205~^21.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~16005~^~207~^2.51^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~255~^65.17^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~303~^1.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~309~^0.73^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16006~^~203~^4.75^8^0.05^~6~^~JA~^^^2^4.50^4.97^5^4.60^4.88^~2, 3~^~05/01/2004~ -~16006~^~204~^0.37^8^0.04^~6~^~JA~^^^2^0.13^0.51^4^0.24^0.48^~2, 3~^~05/01/2004~ -~16006~^~205~^21.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~207~^1.75^8^0.04^~6~^~JA~^^^2^1.59^1.92^4^1.62^1.86^~2, 3~^~05/01/2004~ -~16006~^~209~^7.38^5^0.24^~1~^~A~^^^1^6.70^8.20^4^6.69^8.06^~2, 3~^~05/01/2004~ -~16006~^~210~^4.80^7^0.54^~6~^~JA~^^^2^0.90^6.46^2^2.09^7.51^~2, 3~^~12/01/2005~ -~16006~^~211~^1.59^7^0.05^~6~^~JA~^^^2^1.40^1.72^2^1.34^1.84^~2, 3~^~12/01/2005~ -~16006~^~212~^1.56^7^0.13^~6~^~JA~^^^2^0.70^1.85^1^0.48^2.64^~2, 3~^~12/01/2005~ -~16006~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~214~^0.00^7^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~255~^72.00^13^0.12^~6~^~JA~^^^3^70.19^73.33^5^71.68^72.30^~2, 3~^~05/01/2004~ -~16006~^~269~^7.96^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~303~^1.19^6^0.06^~6~^~JA~^^^2^0.29^1.60^4^1.01^1.36^~2, 3~^~12/01/2005~ -~16006~^~309~^2.28^5^0.65^~6~^~JA~^^^2^0.97^4.74^4^0.47^4.08^~2, 3~^~12/01/2005~ -~16006~^~323~^0.15^3^0.02^~1~^~A~^^^1^0.11^0.18^2^0.05^0.24^~2, 3~^~05/01/2004~ -~16006~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~342~^0.71^3^0.02^~1~^~A~^^^1^0.66^0.74^2^0.60^0.81^~2, 3~^~05/01/2004~ -~16006~^~343~^0.05^3^0.00^~1~^~A~^^^1^0.05^0.05^^^^~2, 3~^~05/01/2004~ -~16006~^~344~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~05/01/2004~ -~16006~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16007~^~203~^6.38^10^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~204~^3.45^10^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~205~^16.91^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16007~^~207~^1.94^10^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~255~^71.33^10^0.25^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~303~^1.60^10^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~309~^1.20^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~418~^0.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~203~^6.75^29^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~204~^6.57^29^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~205~^15.39^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16008~^~207~^1.95^29^0.13^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~255~^69.34^29^0.29^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~269~^6.53^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~16008~^~303~^1.73^29^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~309~^1.87^4^0.40^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~323~^0.16^0^^~4~^~RF~^^^^^^^^^^~04/01/2007~ -~16008~^~418~^0.34^0^^~4~^~RF~^^^^^^^^^^~02/01/2005~ -~16008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16009~^~203~^5.19^76^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~204~^1.55^77^0.13^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~205~^19.99^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~16009~^~207~^1.81^63^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~255~^71.46^63^0.29^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~303~^1.70^83^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~309~^1.46^11^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16010~^~203~^4.52^18^0.05^~1~^~A~^^^1^3.95^5.25^6^4.39^4.64^~2, 3~^~08/01/2014~ -~16010~^~204~^0.89^18^0.06^~1~^~A~^^^1^0.40^1.39^7^0.74^1.04^~2, 3~^~08/01/2014~ -~16010~^~205~^21.57^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~207~^1.53^18^0.01^~1~^~A~^^^1^1.34^1.79^6^1.49^1.56^~2, 3~^~08/01/2014~ -~16010~^~209~^8.10^9^0.10^~1~^~A~^^^1^7.30^9.20^2^7.66^8.53^~2, 3~^~08/01/2014~ -~16010~^~210~^5.79^9^0.16^~1~^~A~^^^1^0.33^7.32^4^5.32^6.24^~2, 3~^~08/01/2014~ -~16010~^~211~^1.13^9^0.07^~1~^~A~^^^1^0.80^1.87^3^0.90^1.35^~2, 3~^~08/01/2014~ -~16010~^~212~^1.31^9^0.07^~1~^~A~^^^1^0.74^2.75^3^1.06^1.55^~2, 3~^~08/01/2014~ -~16010~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~16010~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~16010~^~255~^71.48^18^0.25^~1~^~A~^^^1^69.20^76.80^4^70.74^72.22^~2, 3~^~08/01/2014~ -~16010~^~269~^8.23^9^0.18^~1~^~A~^^^1^4.88^9.30^2^7.46^9.00^~2, 3~^~08/01/2014~ -~16010~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~16010~^~303~^1.40^18^0.02^~1~^~A~^^^1^1.14^2.99^9^1.33^1.46^~2, 3~^~08/01/2014~ -~16010~^~309~^0.51^18^6.0e-03^~1~^~A~^^^1^0.46^0.73^7^0.50^0.53^~2, 3~^~08/01/2014~ -~16010~^~323~^0.04^9^4.0e-03^~1~^~A~^^^1^0.02^0.16^3^0.03^0.05^~2, 3~^~07/01/2014~ -~16010~^~341~^0.01^9^6.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.01^0.04^~1, 2, 3~^~06/01/2012~ -~16010~^~342~^1.14^9^0.03^~1~^~A~^^^1^0.96^1.25^3^1.04^1.24^~2, 3~^~08/01/2014~ -~16010~^~343~^0.06^9^2.0e-03^~1~^~A~^^^1^0.04^0.07^4^0.05^0.06^~2, 3~^~08/01/2014~ -~16010~^~344~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~345~^0.00^9^1.0e-03^~1~^~A~^^^1^0.00^0.02^2^-2.0e-03^5.0e-03^~1, 2, 3~^~11/01/2004~ -~16010~^~346~^0.01^9^6.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.01^0.03^~1, 2, 3~^~08/01/2014~ -~16010~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~16010~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~16011~^~203~^5.15^246^2.0e-03^~6~^~JA~^^^2^4.48^5.16^3^5.14^5.15^~2, 3~^~04/01/2004~ -~16011~^~204~^0.93^243^0.05^~11~^~JO~^^^3^0.71^1.07^5^0.77^1.08^~4~^~04/01/2004~ -~16011~^~205~^18.69^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~207~^1.73^210^1.0e-03^~6~^~JA~^^^2^1.48^1.81^3^1.72^1.73^~2, 3~^~11/01/2006~ -~16011~^~209~^8.05^4^0.15^~1~^~A~^^^1^7.90^8.50^3^7.57^8.52^~2, 3~^~04/01/2004~ -~16011~^~210~^3.36^12^0.36^~6~^~JA~^^^3^1.00^5.32^8^2.51^4.20^~2, 3~^~04/01/2004~ -~16011~^~211~^1.20^12^0.10^~6~^~JA~^^^3^0.34^2.20^6^0.93^1.46^~2, 3~^~04/01/2004~ -~16011~^~212~^1.03^12^0.15^~6~^~JA~^^^3^0.36^2.00^7^0.66^1.39^~2, 3~^~04/01/2004~ -~16011~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~214~^0.09^7^0.04^~6~^~JA~^^^2^0.00^0.40^2^-0.12^0.29^~1, 2, 3~^~04/01/2004~ -~16011~^~255~^73.50^234^0.51^~6~^~JA~^^^5^68.70^75.59^13^72.39^74.60^~4~^~04/01/2004~ -~16011~^~269~^5.67^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~303~^3.24^245^4.0e-03^~6~^~JA~^^^2^0.28^3.28^3^3.23^3.25^~2, 3~^~04/01/2004~ -~16011~^~309~^5.48^10^1.47^~6~^~JA~^^^2^0.62^15.90^3^0.79^10.16^~2, 3~^~04/01/2004~ -~16011~^~323~^0.10^9^8.0e-03^~11~^~JO~^^^2^0.06^0.13^8^0.07^0.11^~4~^~04/01/2004~ -~16011~^~341~^0.00^9^0.00^~11~^~JO~^^^2^0.00^0.00^8^0.00^0.00^~1, 4~^~04/01/2004~ -~16011~^~342~^0.61^9^0.05^~11~^~JO~^^^2^0.43^0.88^8^0.48^0.73^~4~^~04/01/2004~ -~16011~^~343~^0.04^9^7.0e-03^~11~^~JO~^^^2^0.02^0.07^8^0.02^0.05^~4~^~04/01/2004~ -~16011~^~344~^0.04^4^0.01^~1~^~A~^^^1^0.02^0.08^3^3.0e-03^0.08^~2, 3~^~04/01/2004~ -~16011~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~418~^0.00^6^0.00^~6~^~JA~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16014~^~203~^21.60^36^0.30^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~204~^1.42^12^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~205~^62.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16014~^~207~^3.60^15^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~255~^11.02^40^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~269~^2.12^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16014~^~303~^5.02^28^0.56^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~309~^3.65^27^0.36^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~323~^0.21^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16014~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16015~^~203~^8.86^8^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~204~^0.54^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~205~^23.71^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16015~^~207~^1.15^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~255~^65.74^9^1.55^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~303~^2.10^8^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~309~^1.12^9^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~323~^0.87^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16016~^~203~^21.25^3^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~204~^0.90^4^0.00^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~205~^63.25^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16016~^~207~^3.60^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~255~^11.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~269~^2.12^0^^~4~^~BFSN~^~16042~^^^^^^^^^~01/01/2011~ -~16016~^~303~^8.70^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~309~^2.20^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~323~^0.21^0^^~4~^~BFSN~^~16042~^^^^^^^^^~01/01/2011~ -~16016~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~203~^8.18^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~204~^0.35^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~205~^24.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16017~^~207~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~255~^65.74^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16017~^~303~^2.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~309~^0.76^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~323~^0.87^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16017~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16018~^~203~^6.03^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~204~^0.29^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~205~^16.55^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16018~^~207~^1.49^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~255~^75.64^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~269~^0.23^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~303~^1.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~309~^0.54^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~323~^0.62^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16019~^~203~^23.03^8^0.29^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~204~^1.23^8^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~205~^60.05^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16019~^~207~^3.31^8^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~255~^12.39^8^0.84^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~303~^5.00^8^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~309~^3.63^8^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~203~^9.34^8^0.17^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~204~^0.46^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~205~^24.46^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16020~^~207~^1.09^8^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~255~^64.65^8^0.49^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~303~^2.09^8^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~309~^1.14^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~203~^5.54^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~204~^0.28^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~205~^15.12^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16021~^~207~^1.50^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~255~^77.56^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~303~^1.55^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~309~^0.84^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~203~^18.81^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~204~^2.02^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~205~^64.11^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16022~^~207~^4.30^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~255~^10.77^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~303~^3.40^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~309~^1.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~203~^7.05^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~204~^0.76^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~205~^24.02^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16023~^~207~^1.61^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~255~^66.57^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~303~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~309~^0.64^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~203~^21.86^48^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~204~^1.14^49^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~205~^62.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16024~^~207~^3.93^45^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~255~^10.70^45^0.29^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~269~^2.26^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~303~^5.47^36^0.30^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~309~^2.31^35^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~323~^0.22^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~203~^8.33^20^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~204~^0.45^20^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~205~^21.09^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16025~^~207~^1.14^20^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~255~^69.00^25^1.51^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~303~^2.13^20^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~309~^0.88^20^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~203~^7.37^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~204~^0.39^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~205~^21.02^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16026~^~207~^1.33^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~255~^69.89^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~269~^1.41^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~303~^1.57^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~309~^0.65^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~323~^0.79^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16027~^~203~^23.58^102^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~204~^0.83^108^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~205~^60.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16027~^~207~^3.83^85^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~255~^11.75^86^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~269~^2.23^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~303~^8.20^90^0.59^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~309~^2.79^68^0.21^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~323~^0.22^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~203~^8.67^23^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~204~^0.50^23^0.01^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~205~^22.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~207~^1.09^23^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~255~^66.94^20^0.20^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16028~^~303~^2.22^54^0.12^~6~^~JA~^^^10^1.33^8.20^53^1.96^2.46^~4~^~02/01/2003~ -~16028~^~309~^1.00^54^0.01^~6~^~JA~^^^10^0.66^1.42^53^0.95^1.03^~4~^~02/01/2003~ -~16028~^~323~^0.03^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~341~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~342~^0.92^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~343~^0.01^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~344~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~345~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~346~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~347~^0.00^1^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16029~^~203~^5.22^44^0.02^~6~^~JA~^^^2^5.20^5.24^1^4.97^5.47^~4~^~04/01/2004~ -~16029~^~204~^0.60^43^0.29^~6~^~JA~^^^2^0.31^0.90^1^-3.14^4.35^~4~^~04/01/2004~ -~16029~^~205~^14.50^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~16029~^~207~^1.64^44^0.02^~6~^~JA~^^^2^1.61^1.66^1^1.31^1.95^~4~^~04/01/2004~ -~16029~^~209~^8.90^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~210~^1.85^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~255~^78.04^44^0.09^~6~^~JA~^^^2^77.95^78.14^1^76.83^79.25^~4~^~04/01/2004~ -~16029~^~269~^1.85^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~303~^1.17^45^0.06^~6~^~JA~^^^2^1.10^1.23^1^0.33^1.99^~4~^~04/01/2004~ -~16029~^~309~^0.46^2^^~6~^~JA~^^^2^0.38^0.55^1^^^^~04/01/2004~ -~16029~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~342~^0.69^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16029~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~203~^24.37^6^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~204~^0.25^8^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~205~^59.80^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16030~^~207~^3.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~255~^11.75^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~303~^9.35^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~309~^2.55^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~203~^9.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~204~^0.09^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~205~^22.41^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16031~^~207~^1.44^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~255~^66.93^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~303~^2.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~309~^0.86^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~203~^22.53^61^0.22^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~204~^1.06^65^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~205~^61.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16032~^~207~^3.37^58^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~255~^11.75^58^0.21^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~269~^2.10^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16032~^~303~^6.69^51^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~309~^2.79^51^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~323~^0.21^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16032~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16033~^~203~^8.67^23^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~204~^0.50^23^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~205~^22.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16033~^~207~^1.09^23^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~255~^66.94^20^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~269~^0.32^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~ -~16033~^~303~^2.94^30^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~309~^1.07^32^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~323~^0.03^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16033~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16034~^~203~^5.22^48^0.01^~6~^~JA~^^^3^5.12^5.94^3^5.17^5.26^~2, 3~^~04/01/2011~ -~16034~^~204~^0.36^47^9.0e-03^~6~^~JA~^^^3^0.31^0.90^3^0.32^0.38^~2, 3~^~11/01/2006~ -~16034~^~205~^14.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16034~^~207~^1.64^48^0.01^~6~^~JA~^^^3^1.12^1.77^3^1.60^1.68^~2, 3~^~04/01/2011~ -~16034~^~209~^8.90^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~210~^1.85^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~255~^77.96^48^0.04^~6~^~JA~^^^3^76.86^79.15^3^77.82^78.09^~2, 3~^~04/01/2011~ -~16034~^~269~^1.85^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~303~^1.25^49^2.0e-03^~6~^~JA~^^^3^1.10^1.54^3^1.24^1.25^~2, 3~^~04/01/2011~ -~16034~^~309~^0.62^6^0.02^~6~^~JA~^^^3^0.38^0.75^3^0.55^0.68^~2, 3~^~04/01/2011~ -~16034~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16034~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~342~^0.69^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16034~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16034~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16035~^~203~^25.33^6^0.80^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~204~^0.45^8^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~205~^58.33^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16035~^~207~^4.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~255~^11.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~303~^8.70^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~309~^2.66^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~203~^9.49^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~204~^0.17^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~205~^21.85^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16036~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~255~^66.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~303~^2.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~309~^0.90^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16037~^~203~^22.33^72^0.25^~1~^^^^^^^^^^^~11/01/2006~ -~16037~^~204~^1.50^17^0.06^~11~^~JO~^^^2^1.00^2.00^15^1.36^1.64^~2, 3~^~04/01/2004~ -~16037~^~205~^60.75^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~207~^3.32^17^0.02^~11~^~JO~^^^2^3.20^3.60^15^3.27^3.37^~2, 3~^~04/01/2004~ -~16037~^~209~^32.90^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~210~^3.33^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~211~^0.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~255~^12.10^17^0.23^~11~^~JO~^^^2^9.70^21.18^15^11.59^12.60^~2, 3~^~04/01/2004~ -~16037~^~269~^3.88^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~287~^0.34^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~303~^5.49^13^0.20^~11~^~JO~^^^2^3.20^6.67^11^5.04^5.93^~2, 3~^~04/01/2004~ -~16037~^~309~^3.65^13^0.10^~11~^~JO~^^^2^2.00^14.70^11^3.41^3.88^~2, 3~^~04/01/2004~ -~16037~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~342~^2.01^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~343~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16037~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~418~^0.00^0^^~1~^^^^^^^^^^^~04/01/2004~ -~16037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16038~^~203~^8.23^3^0.30^~11~^~JO~^^^2^7.90^8.80^1^4.41^12.04^~2, 3~^~04/01/2004~ -~16038~^~204~^0.62^9^0.00^~11~^~JO~^^^2^0.60^0.76^^^^~2, 3~^~04/01/2004~ -~16038~^~205~^26.05^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~207~^1.30^9^0.02^~11~^~JO~^^^2^1.11^1.40^7^1.24^1.35^~2, 3~^~04/01/2004~ -~16038~^~209~^15.40^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16038~^~210~^0.37^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16038~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~255~^63.81^9^0.39^~11~^~JO~^^^2^61.70^67.85^7^62.86^64.74^~2, 3~^~04/01/2004~ -~16038~^~269~^0.37^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16038~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~303~^2.36^45^0.06^~11~^~JO~^^^5^1.20^3.40^5^2.20^2.51^~2, 3~^~04/01/2004~ -~16038~^~309~^1.03^45^0.02^~11~^~JO~^^^5^0.68^1.37^36^0.97^1.07^~2, 3~^~04/01/2004~ -~16038~^~323~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~342~^1.28^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16038~^~343~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16038~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~16039~^~203~^7.53^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~204~^0.43^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~205~^20.45^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16039~^~207~^1.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~255~^70.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~269~^0.28^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~303~^1.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~309~^0.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~323~^0.78^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16039~^~418~^0.00^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16040~^~203~^20.96^20^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~204~^1.13^21^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~205~^64.19^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16040~^~207~^3.66^17^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~255~^10.06^17^0.38^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~269~^2.14^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16040~^~303~^6.77^14^0.40^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~309~^2.55^20^0.13^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~323~^0.21^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16040~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16041~^~203~^9.06^9^0.17^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~204~^0.49^9^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~205~^27.91^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16041~^~207~^1.34^9^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~255~^61.20^8^0.53^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~269~^0.36^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16041~^~303~^2.30^9^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~309~^0.96^15^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~323~^0.98^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16041~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16042~^~203~^21.42^8^0.40^~11~^~JO~^^^2^20.43^23.60^3^20.19^22.65^~2, 3~^~04/01/2004~ -~16042~^~204~^1.23^20^0.04^~11~^~JO~^^^2^0.90^1.50^18^1.15^1.32^~2, 3~^~04/01/2004~ -~16042~^~205~^62.55^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~207~^3.46^20^0.06^~11~^~JO~^^^2^3.00^4.00^15^3.32^3.59^~2, 3~^~04/01/2004~ -~16042~^~209~^34.17^4^1.01^~1~^~A~^^^1^31.90^36.50^3^30.94^37.40^~2, 3~^~01/01/2003~ -~16042~^~210~^1.98^4^0.03^~1~^~A~^^^1^1.87^2.05^3^1.85^2.09^~2, 3~^~01/01/2003~ -~16042~^~211~^0.13^4^0.05^~1~^~A~^^^1^0.03^0.24^3^-0.05^0.31^~1, 2, 3~^~01/01/2003~ -~16042~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16042~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16042~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16042~^~255~^11.33^20^0.30^~11~^~JO~^^^2^7.10^16.82^15^10.68^11.98^~2, 3~^~04/01/2004~ -~16042~^~269~^2.11^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16042~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16042~^~303~^5.07^16^0.23^~11~^~JO~^^^2^3.85^6.83^12^4.56^5.58^~2, 3~^~04/01/2004~ -~16042~^~309~^2.28^16^0.07^~11~^~JO~^^^2^1.79^2.81^11^2.11^2.45^~2, 3~^~04/01/2004~ -~16042~^~323~^0.21^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~16042~^~418~^0.00^0^^~1~^^^^^^^^^^^~11/01/2006~ -~16042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16043~^~203~^9.01^6^0.26^~11~^~JO~^^^2^8.40^9.81^4^8.28^9.74^~2, 3~^~04/01/2004~ -~16043~^~204~^0.65^12^0.02^~11~^~JO~^^^2^0.50^0.97^6^0.59^0.70^~2, 3~^~04/01/2004~ -~16043~^~205~^26.22^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~207~^1.17^12^0.03^~11~^~JO~^^^2^0.76^1.50^10^1.10^1.24^~2, 3~^~04/01/2004~ -~16043~^~209~^15.15^4^0.85^~1~^~A~^^^1^13.20^17.20^3^12.43^17.86^~2, 3~^~01/01/2003~ -~16043~^~210~^0.34^4^0.03^~1~^~A~^^^1^0.25^0.40^3^0.23^0.45^~2, 3~^~01/01/2003~ -~16043~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16043~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16043~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16043~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~16043~^~255~^62.95^13^0.47^~11~^~JO~^^^3^59.50^66.90^6^61.77^64.11^~2, 3~^~04/01/2004~ -~16043~^~269~^0.34^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~16043~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~16043~^~303~^2.09^66^0.04^~11~^~JO~^^^12^1.52^3.91^44^1.99^2.17^~2, 3~^~04/01/2004~ -~16043~^~309~^0.98^66^0.01^~11~^~JO~^^^12^0.71^1.50^44^0.95^1.01^~2, 3~^~04/01/2004~ -~16043~^~323~^0.94^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~16043~^~418~^0.00^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16044~^~203~^4.60^27^0.09^~11~^~JO~^^^4^3.27^5.38^19^4.40^4.80^~2, 3~^~04/01/2011~ -~16044~^~204~^0.56^27^0.03^~6~^~JA~^^^4^0.11^1.03^10^0.48^0.62^~2, 3~^~04/01/2011~ -~16044~^~205~^15.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16044~^~207~^1.48^27^0.04^~6~^~JA~^^^4^0.68^1.89^19^1.38^1.57^~2, 3~^~04/01/2011~ -~16044~^~255~^78.19^27^0.31^~6~^~JA~^^^4^74.54^81.35^21^77.54^78.83^~2, 3~^~04/01/2011~ -~16044~^~269~^1.02^23^0.11^~1~^^^^3^0.20^2.29^20^0.77^1.26^~2, 3~^~04/01/2011~ -~16044~^~303~^1.47^27^0.05^~6~^~JA~^^^4^1.05^2.40^18^1.34^1.58^~2, 3~^~04/01/2011~ -~16044~^~309~^0.56^4^0.03^~1~^~A~^^^1^0.47^0.62^3^0.46^0.66^~2, 3~^~04/01/2011~ -~16044~^~323~^0.55^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16044~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16045~^~203~^21.11^18^0.72^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~204~^1.18^19^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~205~^62.25^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16045~^~207~^3.75^15^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~255~^11.71^15^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~303~^7.73^14^0.59^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~309~^2.81^14^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~203~^8.97^9^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~204~^0.64^9^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~205~^25.81^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16046~^~207~^1.34^9^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~255~^63.24^8^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~303~^2.84^9^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~309~^1.09^9^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~203~^22.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~204~^2.60^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~205~^60.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16047~^~207~^3.60^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~255~^11.10^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~303~^7.01^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~309~^2.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~203~^9.16^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~204~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~205~^25.28^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~16048~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~255~^62.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~269~^0.34^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~303~^2.48^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~309~^1.06^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~323~^0.94^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16049~^~203~^23.36^12^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~204~^0.85^10^0.26^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~205~^60.27^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16049~^~207~^4.20^6^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~255~^11.32^9^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~269~^2.11^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16049~^~303~^10.44^5^0.48^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~309~^3.67^5^0.29^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~323~^0.21^0^^~4~^~BFSN~^~16042~^^^^^^^^^~04/01/2007~ -~16049~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16050~^~203~^9.73^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~204~^0.35^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~205~^25.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16050~^~207~^1.75^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~255~^63.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~269~^0.34^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16050~^~303~^3.70^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~309~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~323~^0.94^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16050~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16051~^~203~^7.26^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~204~^0.29^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~205~^21.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16051~^~207~^1.15^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~255~^70.10^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~269~^0.29^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~303~^2.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~309~^1.12^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~323~^0.79^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~ -~16051~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~203~^26.12^104^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~204~^1.53^101^0.11^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~205~^58.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16052~^~207~^3.08^102^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~255~^10.98^100^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~269~^5.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16052~^~303~^6.70^30^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~309~^3.14^10^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~323~^0.05^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16052~^~418~^0.00^0^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16053~^~203~^7.60^8^0.27^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~204~^0.40^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~205~^19.65^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16053~^~207~^0.81^8^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~255~^71.54^8^1.01^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~269~^1.82^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16053~^~303~^1.50^8^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~309~^1.01^8^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~323~^0.02^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16053~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16054~^~203~^5.47^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~204~^0.22^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~205~^12.41^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16054~^~207~^1.58^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~255~^80.32^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~303~^1.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~309~^0.62^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~203~^4.62^40^0.70^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~204~^0.65^32^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~205~^88.88^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16055~^~207~^2.27^40^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~255~^3.58^12^0.74^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~269~^49.08^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16055~^~303~^2.94^10^0.31^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~309~^0.92^7^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~323~^0.63^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16055~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16056~^~203~^20.47^54^0.41^~1~^~A~^^^2^2.45^25.83^24^19.62^21.31^~2, 3~^~04/01/2014~ -~16056~^~204~^6.04^60^0.13^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~205~^62.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16056~^~207~^2.85^38^0.03^~1~^~A~^^^1^1.82^3.13^37^2.78^2.92^~2, 3~^~04/01/2014~ -~16056~^~255~^7.68^54^0.08^~1~^~A~^^^2^4.55^9.42^40^7.50^7.86^~2, 3~^~04/01/2014~ -~16056~^~269~^10.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16056~^~303~^4.31^35^0.10^~1~^~A~^^^2^3.41^5.72^27^4.08^4.52^~2, 3~^~04/01/2014~ -~16056~^~309~^2.76^35^0.08^~1~^~A~^^^2^2.03^4.54^21^2.57^2.94^~2, 3~^~04/01/2014~ -~16056~^~323~^0.82^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16056~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16057~^~203~^8.86^23^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~204~^2.59^24^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~205~^27.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16057~^~207~^0.92^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~255~^60.21^23^0.60^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~269~^4.80^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16057~^~303~^2.89^21^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~309~^1.53^27^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~323~^0.35^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16057~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16058~^~203~^4.92^4^0.05^~1~^~A~^^^1^4.79^5.00^3^4.75^5.08^~2, 3~^~05/01/2011~ -~16058~^~204~^1.95^4^0.15^~1~^~A~^^^1^1.70^2.30^3^1.47^2.42^~2, 3~^~05/01/2011~ -~16058~^~205~^13.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16058~^~207~^1.09^4^0.11^~1~^~A~^^^1^0.87^1.39^3^0.73^1.43^~2, 3~^~05/01/2011~ -~16058~^~255~^78.55^4^0.31^~1~^~A~^^^1^77.90^79.40^3^77.53^79.56^~2, 3~^~05/01/2011~ -~16058~^~303~^1.23^4^0.01^~1~^~A~^^^1^1.22^1.28^3^1.18^1.28^~2, 3~^~05/01/2011~ -~16058~^~309~^0.69^4^0.03^~1~^~A~^^^1^0.62^0.77^3^0.59^0.78^~2, 3~^~05/01/2011~ -~16058~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16059~^~203~^6.12^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~204~^3.76^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~205~^13.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~16059~^~207~^1.38^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~255~^75.51^16^0.31^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~269~^1.65^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~303~^3.43^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~309~^2.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~323~^0.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~16059~^~418~^0.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~16059~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16060~^~203~^23.85^3^0.61^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~204~^2.07^3^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~205~^59.64^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16060~^~207~^3.39^4^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~255~^11.05^3^0.72^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~303~^9.95^4^2.09^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~309~^6.11^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~203~^8.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~204~^0.71^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~205~^20.32^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16061~^~207~^1.16^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~255~^69.70^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~303~^3.05^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~309~^1.87^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~203~^23.52^147^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~204~^1.26^139^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~205~^60.03^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16062~^~207~^3.24^91^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~255~^11.95^82^0.39^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~269~^6.90^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16062~^~303~^8.27^59^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~309~^3.37^46^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~323~^0.39^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16062~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16063~^~203~^7.73^24^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~204~^0.53^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~205~^20.76^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16063~^~207~^0.94^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~255~^70.04^23^0.60^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~269~^3.30^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16063~^~303~^2.51^29^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~309~^1.29^35^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~323~^0.28^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16063~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16064~^~203~^4.74^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~204~^0.55^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~205~^13.63^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16064~^~207~^1.45^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~255~^79.63^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~303~^0.97^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~309~^0.70^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~203~^2.74^34^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~204~^1.60^34^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~205~^16.53^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16065~^~207~^1.54^34^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~255~^77.59^34^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~303~^1.42^33^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~309~^1.04^30^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~203~^23.90^4^0.49^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~204~^1.69^4^0.52^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~205~^60.74^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16067~^~207~^4.29^4^0.38^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~255~^9.38^4^1.35^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~303~^5.10^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~309~^9.30^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16068~^~203~^8.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~204~^0.58^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~205~^20.69^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16068~^~207~^1.46^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~255~^69.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~303~^4.58^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~309~^2.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16069~^~203~^24.63^56^0.27^~1~^~A~^^^2^18.98^28.30^54^24.08^25.16^~2, 3~^~04/01/2014~ -~16069~^~204~^1.06^9^0.03^~1~^~A~^^^2^0.80^2.00^7^0.97^1.13^~2, 3~^~03/01/2010~ -~16069~^~205~^63.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16069~^~207~^2.71^46^0.03^~1~^~A~^^^1^2.30^3.47^45^2.64^2.77^~2, 3~^~04/01/2014~ -~16069~^~209~^49.90^56^0.47^~1~^~A~^^^2^28.69^57.39^44^48.95^50.85^~2, 3~^~04/01/2014~ -~16069~^~210~^1.47^3^0.03^~1~^^^^1^1.40^1.50^2^1.32^1.61^~2, 3~^~01/01/2005~ -~16069~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16069~^~212~^0.27^3^0.12^~1~^^^^1^0.10^0.50^2^-0.25^0.78^~2, 3~^~01/01/2005~ -~16069~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16069~^~214~^0.30^3^0.10^~1~^^^^1^0.20^0.50^2^-0.13^0.73^~2, 3~^~01/01/2005~ -~16069~^~255~^8.26^55^0.07^~1~^~A~^^^2^6.98^9.97^44^8.10^8.41^~2, 3~^~04/01/2014~ -~16069~^~269~^2.03^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~16069~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16069~^~303~^6.51^38^0.55^~1~^~A~^^^2^4.19^25.43^28^5.36^7.65^~2, 3~^~04/01/2014~ -~16069~^~309~^3.27^38^0.12^~1~^~A~^^^2^2.07^6.99^30^3.02^3.52^~2, 3~^~04/01/2014~ -~16069~^~323~^0.49^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~342~^4.23^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~16069~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~16069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16070~^~203~^9.02^23^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~204~^0.38^22^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~205~^20.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16070~^~207~^0.83^22^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~255~^69.64^23^0.75^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~269~^1.80^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16070~^~303~^3.33^20^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~309~^1.27^21^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~323~^0.11^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16070~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16071~^~203~^21.46^49^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~204~^0.69^48^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~205~^63.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16071~^~207~^4.30^46^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~255~^10.17^43^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~269~^8.50^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16071~^~303~^7.51^47^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~309~^2.83^58^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~323~^0.72^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16071~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16072~^~203~^7.80^22^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~204~^0.38^22^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~205~^20.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16072~^~207~^1.15^22^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~255~^69.79^20^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~269~^2.90^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16072~^~303~^2.39^30^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~309~^0.95^36^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~323~^0.18^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16072~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16073~^~203~^4.93^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~204~^0.17^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~205~^14.91^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16073~^~207~^2.92^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~255~^77.08^13^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~303~^1.81^13^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~309~^0.65^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~203~^20.62^29^0.21^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~204~^0.93^29^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~205~^62.83^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~16074~^~207~^3.55^29^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~255~^12.07^29^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~269~^8.32^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~303~^6.19^25^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~309~^2.60^25^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~323~^0.70^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~203~^8.04^21^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~204~^0.38^21^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~205~^23.31^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16075~^~207~^1.12^21^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~255~^67.15^20^0.71^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~303~^2.40^21^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~309~^1.03^21^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~203~^36.17^12^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~204~^9.74^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~205~^40.37^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~16076~^~207~^3.28^12^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~255~^10.44^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~303~^4.36^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~309~^4.75^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16077~^~203~^15.57^3^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~204~^2.92^3^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~205~^9.88^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16077~^~207~^0.55^3^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~255~^71.08^3^0.58^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~303~^1.20^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~309~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~203~^22.94^5^0.21^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~204~^1.61^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~205~^61.52^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16078~^~207~^4.26^5^0.22^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~255~^9.68^5^0.66^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~303~^10.85^5^2.04^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~309~^1.92^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~203~^7.81^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~204~^0.55^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~205~^20.96^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16079~^~207~^1.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~255~^69.23^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~303~^3.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~309~^0.59^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~203~^23.86^82^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~204~^1.15^65^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~205~^62.62^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16080~^~207~^3.32^58^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~255~^9.05^60^0.43^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~269~^6.60^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16080~^~303~^6.74^55^0.87^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~309~^2.68^26^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~323~^0.51^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16080~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16081~^~203~^7.02^9^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~204~^0.38^9^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~205~^19.15^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16081~^~207~^0.79^9^7.0e-03^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~255~^72.66^9^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~269~^2.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16081~^~303~^1.40^9^0.26^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~309~^0.84^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~323~^0.15^0^^~4~^~BFSN~^~16080~^^^^^^^^^~02/01/2003~ -~16081~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16082~^~203~^0.16^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~204~^0.06^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~205~^86.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16082~^~207~^0.27^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~255~^13.42^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16082~^~303~^2.17^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~309~^0.41^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~323~^0.13^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16082~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16083~^~203~^25.21^19^0.59^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~204~^1.64^8^0.28^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~205~^58.99^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~ -~16083~^~207~^3.36^9^0.16^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~255~^10.80^10^1.59^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~303~^7.57^8^0.61^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~309~^3.35^3^0.40^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16084~^~203~^7.54^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~204~^0.55^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~205~^18.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16084~^~207~^1.06^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~255~^72.51^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~269~^2.01^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~303~^1.75^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~309~^0.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~323~^0.15^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~ -~16084~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16085~^~203~^23.12^105^0.26^~1~^~A~^^^3^15.56^28.27^98^22.59^23.64^~2, 3~^~03/01/2016~ -~16085~^~204~^3.89^18^0.11^~1~^~A~^^^1^3.09^4.64^17^3.64^4.13^~2, 3~^~03/01/2016~ -~16085~^~205~^61.63^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~207~^2.67^92^0.03^~1~^~A~^^^2^2.04^4.66^37^2.60^2.73^~2, 3~^~03/01/2016~ -~16085~^~210~^2.69^14^0.14^~1~^~A~^^^1^1.85^3.62^13^2.37^3.01^~2, 3~^~03/01/2016~ -~16085~^~211~^0.44^14^0.02^~1~^~A~^^^1^0.33^0.65^13^0.38^0.50^~2, 3~^~03/01/2016~ -~16085~^~212~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~213~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~214~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~255~^8.69^105^0.07^~1~^~A~^^^3^7.00^10.90^86^8.54^8.82^~2, 3~^~03/01/2016~ -~16085~^~269~^3.14^14^0.13^~1~^~A~^^^1^2.50^4.14^13^2.85^3.42^~2, 3~^~03/01/2016~ -~16085~^~287~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~303~^4.73^85^0.53^~1~^~A~^^^3^2.28^48.74^53^3.66^5.80^~2, 3~^~03/01/2016~ -~16085~^~309~^3.49^85^0.07^~1~^~A~^^^3^1.94^6.99^73^3.33^3.63^~2, 3~^~03/01/2016~ -~16085~^~323~^0.12^7^0.01^~1~^~A~^^^1^0.08^0.17^6^0.08^0.15^~2, 3~^~03/01/2016~ -~16085~^~341~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~342~^5.75^7^0.31^~1~^~A~^^^1^4.70^7.05^6^4.99^6.50^~2, 3~^~03/01/2016~ -~16085~^~343~^0.14^7^0.01^~1~^~A~^^^1^0.10^0.19^6^0.10^0.17^~2, 3~^~03/01/2016~ -~16085~^~344~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~345~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~346~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~347~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16086~^~203~^8.34^20^0.27^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~204~^0.39^20^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~205~^21.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16086~^~207~^0.68^20^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~255~^69.49^25^1.52^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~269~^2.90^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16086~^~303~^1.29^20^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~309~^1.00^20^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~323~^0.03^0^^~4~^~BFSN~^~16085~^^^^^^^^^~02/01/2003~ -~16086~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16087~^~203~^25.80^78^0.24^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~204~^49.24^98^0.29^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~205~^16.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~207~^2.33^26^0.06^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~255~^6.50^31^0.09^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~269~^4.72^0^^~4~^~BFSN~^~16090~^^^^^^^^^~04/01/2014~ -~16087~^~303~^4.58^49^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~309~^3.27^45^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~323~^8.33^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~16087~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16088~^~203~^13.50^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~204~^22.01^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~205~^21.26^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16088~^~207~^1.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~255~^41.78^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~269~^2.47^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16088~^~303~^1.01^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~309~^1.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~323~^4.10^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16088~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16089~^~203~^28.03^4^0.45^~1~^~A~^^^1^26.72^28.82^3^26.58^29.48^~2, 3~^~02/01/2003~ -~16089~^~204~^52.50^4^0.60^~1~^~A~^^^1^51.10^53.97^3^50.59^54.41^~2, 3~^~02/01/2003~ -~16089~^~205~^15.26^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~16089~^~207~^2.75^4^0.06^~1~^~A~^^^1^2.61^2.88^3^2.54^2.94^~2, 3~^~02/01/2003~ -~16089~^~209~^3.07^4^0.13^~1~^~A~^^^1^2.76^3.36^3^2.64^3.49^~2, 3~^~11/01/2011~ -~16089~^~210~^4.03^4^0.03^~1~^~A~^^^1^3.92^4.08^3^3.91^4.14^~2, 3~^~11/01/2002~ -~16089~^~211~^0.08^4^0.00^~1~^~A~^^^1^0.08^0.08^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~212~^0.08^4^0.00^~1~^~A~^^^1^0.08^0.08^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~255~^1.45^4^0.13^~1~^~A~^^^1^1.22^1.71^3^1.03^1.87^~2, 3~^~02/01/2003~ -~16089~^~269~^4.18^4^0.03^~1~^~A~^^^1^4.08^4.24^3^4.07^4.29^~2, 3~^~11/01/2002~ -~16089~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~16089~^~303~^1.52^4^3.0e-03^~1~^~A~^^^1^1.51^1.52^3^1.50^1.52^~2, 3~^~02/01/2003~ -~16089~^~309~^3.28^4^0.07^~1~^~A~^^^1^3.09^3.44^3^3.04^3.52^~2, 3~^~02/01/2003~ -~16089~^~323~^6.94^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16089~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16090~^~203~^24.35^17^0.16^~1~^~A~^^^1^21.51^25.28^15^23.98^24.70^~2, 3~^~04/01/2014~ -~16090~^~204~^49.66^9^0.53^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~205~^21.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~207~^2.92^17^0.09^~1~^~A~^^^1^2.21^3.89^10^2.70^3.13^~2, 3~^~04/01/2014~ -~16090~^~209~^4.39^8^0.11^~1~^~A~^^^1^3.80^4.80^3^4.03^4.74^~2, 3~^~04/01/2014~ -~16090~^~210~^4.90^8^0.11^~1~^~A~^^^1^4.36^5.32^3^4.56^5.23^~2, 3~^~04/01/2014~ -~16090~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~255~^1.81^17^0.03^~1~^~A~^^^1^1.53^2.26^13^1.72^1.89^~2, 3~^~04/01/2014~ -~16090~^~269~^4.90^8^0.11^~1~^~A~^^^1^4.36^5.32^3^4.56^5.23^~2, 3~^~04/01/2014~ -~16090~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~303~^1.58^17^0.02^~1~^~A~^^^1^1.40^1.76^8^1.52^1.63^~2, 3~^~04/01/2014~ -~16090~^~309~^2.77^17^0.03^~1~^~A~^^^1^2.51^3.12^12^2.70^2.84^~2, 3~^~04/01/2014~ -~16090~^~323~^4.93^6^0.44^~1~^~A~^^^1^2.82^6.61^3^3.54^6.31^~2, 3~^~04/01/2014~ -~16090~^~341~^0.36^6^0.02^~1~^~A~^^^1^0.27^0.43^4^0.29^0.41^~2, 3~^~04/01/2014~ -~16090~^~342~^6.32^6^0.59^~1~^~A~^^^1^3.82^7.75^3^4.35^8.29^~2, 3~^~04/01/2014~ -~16090~^~343~^0.61^6^0.03^~1~^~A~^^^1^0.49^0.71^4^0.50^0.71^~2, 3~^~04/01/2014~ -~16090~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16091~^~203~^26.15^17^0.31^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~204~^49.60^22^0.52^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~205~^15.83^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~207~^2.03^3^0.30^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~255~^6.39^4^0.30^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~303~^3.91^9^0.36^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~309~^2.12^5^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~203~^28.01^19^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~204~^49.04^19^0.33^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~205~^17.45^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16092~^~207~^3.72^3^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~255~^1.78^19^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~303~^2.28^3^0.22^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~309~^2.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~203~^25.09^44^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~204~^47.58^44^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~205~^20.91^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16093~^~207~^2.17^19^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~255~^4.26^25^0.57^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~303~^2.09^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~309~^3.34^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~203~^27.04^6^1.70^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~204~^51.24^6^0.75^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16094~^~207~^3.29^6^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~255~^2.12^11^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~303~^1.65^5^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~309~^3.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~203~^25.19^21^0.37^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~204~^48.75^27^0.48^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~205~^16.54^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16095~^~207~^2.61^8^0.02^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~255~^6.91^8^0.14^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~269~^3.95^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~303~^2.55^15^0.31^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~309~^4.43^15^0.51^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~323~^6.56^0^^~4~^~BFSN~^~16089~^^^^^^^^^~05/01/2014~ -~16095~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16096~^~203~^25.87^15^0.33^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~204~^48.62^15^0.47^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~205~^19.86^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16096~^~207~^3.48^8^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~255~^2.17^15^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~303~^1.67^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~309~^6.62^8^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~203~^24.06^295^1.0e-03^~6~^~JA~^^^2^24.05^25.30^3^24.06^24.06^~2, 3~^~03/01/2004~ -~16097~^~204~^49.94^299^6.0e-03^~6~^~JA~^^^2^48.88^50.56^3^49.91^49.95^~2, 3~^~03/01/2004~ -~16097~^~205~^21.57^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16097~^~207~^3.29^210^1.0e-03^~6~^~JA~^^^2^2.83^3.30^3^3.29^3.29^~2, 3~^~03/01/2004~ -~16097~^~209~^4.93^4^0.16^~1~^~A~^^^1^4.47^5.20^3^4.41^5.45^~2, 3~^~03/01/2004~ -~16097~^~210~^4.19^4^2.41^~1~^~A~^^^1^0.00^8.47^3^-3.50^11.88^~1, 2, 3~^~03/01/2004~ -~16097~^~211~^4.22^4^2.36^~1~^~A~^^^1^0.00^8.72^3^-3.30^11.74^~1, 2, 3~^~03/01/2004~ -~16097~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~255~^1.14^227^3.0e-03^~6~^~JA~^^^2^1.00^1.70^5^1.13^1.14^~2, 3~^~03/01/2004~ -~16097~^~269~^8.41^4^0.20^~1~^~A~^^^1^7.89^8.75^3^7.76^9.05^~2, 3~^~03/01/2004~ -~16097~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~303~^1.90^263^3.0e-03^~6~^~JA~^^^2^1.56^2.65^3^1.89^1.91^~2, 3~^~03/01/2004~ -~16097~^~309~^2.79^196^6.0e-03^~6~^~JA~^^^2^2.78^4.08^3^2.77^2.80^~2, 3~^~03/01/2004~ -~16097~^~323~^6.30^4^1.40^~1~^~A~^^^1^3.74^8.76^3^1.84^10.75^~2, 3~^~03/01/2004~ -~16097~^~341~^0.22^4^0.02^~1~^~A~^^^1^0.18^0.28^3^0.14^0.30^~2, 3~^~03/01/2004~ -~16097~^~342~^7.98^4^0.58^~1~^~A~^^^1^6.89^9.25^3^6.13^9.83^~2, 3~^~03/01/2004~ -~16097~^~343~^0.73^4^0.07^~1~^~A~^^^1^0.61^0.93^3^0.49^0.96^~2, 3~^~03/01/2004~ -~16097~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16097~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16098~^~203~^22.21^18^0.10^~1~^~A~^^^1^20.97^23.59^12^21.98^22.43^~2, 3~^~08/01/2014~ -~16098~^~204~^51.36^18^0.14^~1~^~A~^^^1^49.67^52.66^10^51.03^51.68^~2, 3~^~08/01/2014~ -~16098~^~205~^22.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16098~^~207~^2.89^18^0.01^~1~^~A~^^^1^2.79^3.12^9^2.85^2.92^~2, 3~^~08/01/2014~ -~16098~^~209~^3.56^6^0.14^~1~^~A~^^^1^3.20^4.50^2^2.65^4.46^~2, 3~^~07/01/2014~ -~16098~^~210~^10.25^9^0.35^~1~^~A~^^^1^7.01^11.01^2^8.90^11.59^~2, 3~^~07/01/2014~ -~16098~^~211~^0.13^9^0.12^~1~^~A~^^^1^0.00^1.27^2^-0.41^0.66^~1, 2, 3~^~07/01/2014~ -~16098~^~212~^0.12^9^0.11^~1~^~A~^^^1^0.00^1.20^2^-0.39^0.62^~1, 2, 3~^~07/01/2014~ -~16098~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~16098~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2014~ -~16098~^~255~^1.23^22^0.04^~6~^~JA~^^^4^0.17^2.40^6^1.10^1.34^~2, 3~^~08/01/2014~ -~16098~^~269~^10.49^9^0.15^~1~^~A~^^^1^9.48^11.01^4^10.06^10.92^~2, 3~^~07/01/2014~ -~16098~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16098~^~303~^1.74^18^0.02^~1~^~A~^^^1^1.54^2.08^11^1.68^1.80^~2, 3~^~08/01/2014~ -~16098~^~309~^2.51^18^0.01^~1~^~A~^^^1^2.37^2.69^14^2.48^2.54^~2, 3~^~08/01/2014~ -~16098~^~323~^9.10^6^0.30^~1~^~A~^^^1^8.44^9.59^1^6.74^11.44^~2, 3~^~08/01/2014~ -~16098~^~341~^0.52^6^0.01^~1~^~A~^^^1^0.47^0.56^1^0.37^0.66^~2, 3~^~08/01/2014~ -~16098~^~342~^7.62^6^0.05^~1~^~A~^^^1^7.19^7.91^1^7.20^8.03^~2, 3~^~08/01/2014~ -~16098~^~343~^0.74^6^0.04^~1~^~A~^^^1^0.48^0.97^2^0.55^0.92^~2, 3~^~08/01/2014~ -~16098~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16099~^~203~^52.20^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~204~^0.55^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~205~^34.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16099~^~207~^4.75^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~255~^7.80^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~269~^8.22^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~ -~16099~^~303~^2.10^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~309~^5.10^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~323~^0.05^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~16099~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16100~^~203~^33.80^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~204~^21.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~205~^31.27^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16100~^~207~^5.23^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~255~^7.80^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~303~^4.74^8^0.95^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~309~^5.99^8^0.38^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~203~^21.70^41^0.31^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~204~^1.49^23^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~205~^62.78^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16101~^~207~^3.45^28^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~255~^10.59^28^0.38^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~303~^5.23^30^0.36^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~309~^2.76^9^0.26^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~203~^6.76^8^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~204~^0.38^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~205~^23.25^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16102~^~207~^1.06^8^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~255~^68.55^8^0.41^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~303~^1.11^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~309~^0.90^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~203~^4.98^17^0.12^~1~^~A~^^^1^4.37^6.44^7^4.69^5.25^~2, 3~^~08/01/2014~ -~16103~^~204~^2.01^16^0.06^~1~^~A~^^^1^0.83^2.67^7^1.85^2.17^~2, 3~^~08/01/2014~ -~16103~^~205~^13.55^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~207~^1.71^17^0.03^~1~^~A~^^^1^1.36^2.08^8^1.62^1.79^~2, 3~^~08/01/2014~ -~16103~^~209~^7.43^9^0.09^~1~^~A~^^^1^6.80^9.00^5^7.17^7.68^~2, 3~^~08/01/2014~ -~16103~^~210~^0.54^4^4.0e-03^~1~^~A~^^^1^0.40^0.74^1^0.49^0.59^~2, 3~^~08/01/2014~ -~16103~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~255~^77.75^17^0.37^~1~^~A~^^^1^74.45^79.46^5^76.75^78.74^~2, 3~^~08/01/2014~ -~16103~^~269~^0.54^4^4.0e-03^~1~^~A~^^^1^0.40^0.74^1^0.49^0.59^~2, 3~^~08/01/2014~ -~16103~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~303~^1.44^17^0.03^~1~^~A~^^^1^1.22^1.90^9^1.36^1.50^~2, 3~^~08/01/2014~ -~16103~^~309~^0.58^17^0.01^~1~^~A~^^^1^0.46^0.91^10^0.54^0.61^~2, 3~^~08/01/2014~ -~16103~^~323~^0.09^5^8.0e-03^~1~^~A~^^^1^0.06^0.16^1^-0.01^0.18^~2, 3~^~08/01/2014~ -~16103~^~341~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16103~^~342~^0.81^5^0.07^~1~^~A~^^^1^0.64^1.17^2^0.38^1.23^~2, 3~^~08/01/2014~ -~16103~^~343~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16103~^~344~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16103~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~346~^0.08^5^0.01^~1~^~A~^^^1^0.00^0.38^1^-0.16^0.33^~1, 2, 3~^~08/01/2014~ -~16103~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16103~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16103~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16104~^~203~^11.69^2^^~1~^^^^^^^^^^^~07/01/2015~ -~16104~^~204~^29.52^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~205~^5.31^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16104~^~207~^4.50^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~255~^48.98^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~16104~^~303~^2.41^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~309~^0.42^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~323~^6.90^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16104~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16106~^~203~^41.71^17^^~1~^^^^^^^^^^^~07/01/2015~ -~16106~^~204~^2.97^16^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~205~^34.71^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16106~^~207~^13.13^16^0.48^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~255~^7.48^16^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~303~^11.99^15^1.25^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~309~^2.21^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~418~^6.00^14^0.47^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~203~^20.28^2^^~1~^^^^^^^^^^^~07/01/2015~ -~16107~^~204~^18.16^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~205~^8.09^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16107~^~207~^3.07^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~255~^50.40^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~16107~^~303~^3.72^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~309~^1.46^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~323~^2.10^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16107~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16108~^~203~^36.49^454^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~204~^19.94^364^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~205~^30.16^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16108~^~207~^4.87^190^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~255~^8.54^433^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~269~^7.33^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~303~^15.70^78^0.74^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~309~^4.89^60^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~323~^0.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~203~^18.21^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16109~^~204~^8.97^69^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~205~^8.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16109~^~207~^1.91^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~255~^62.55^69^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~269~^3.00^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16109~^~303~^5.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~309~^1.15^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~323~^0.35^0^^~4~^~BFSN~^~16108~^^^^^^^^^~02/01/2003~ -~16109~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16110~^~203~^38.55^3^^~1~^^^^^^^^^^^~07/01/2015~ -~16110~^~204~^25.40^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~205~^30.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16110~^~207~^3.88^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~255~^1.95^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~269~^4.20^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16110~^~303~^3.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~309~^3.14^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~323~^0.91^0^^~4~^~BFSN~^~16109~^^^^^^^^^~02/01/2003~ -~16110~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16111~^~203~^43.32^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16111~^~204~^21.62^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~205~^28.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16111~^~207~^5.28^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~255~^0.80^3^0.17^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~303~^3.95^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~309~^4.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16112~^~203~^12.79^10^0.03^~6~^~JA~^^^2^12.08^12.93^1^12.33^13.24^~2, 3~^~07/01/2015~ -~16112~^~204~^6.01^10^0.04^~6~^~JA~^^^2^5.54^6.07^1^5.48^6.52^~2, 3~^~12/01/2003~ -~16112~^~205~^25.37^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16112~^~207~^12.81^5^0.08^~6~^~JA~^^^2^12.71^13.17^1^11.74^13.87^~2, 3~^~12/01/2003~ -~16112~^~210~^0.00^1^^~1~^^^^^^^^^^^~12/01/2003~ -~16112~^~211~^0.00^1^^~1~^^^^^^^^^^^~12/01/2003~ -~16112~^~212~^6.00^1^^~1~^^^^^^^^^^^~12/01/2003~ -~16112~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~16112~^~214~^0.20^1^^~1~^^^^^^^^^^^~12/01/2003~ -~16112~^~255~^43.02^22^2.17^~6~^~JA~^^^4^41.45^52.55^17^38.43^47.61^~2, 3~^~12/01/2003~ -~16112~^~269~^6.20^0^^~4~^~NC~^~16109~^^^^^^^^^~04/01/2007~ -~16112~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~ -~16112~^~303~^2.49^5^0.04^~6~^~JA~^^^2^2.02^2.74^1^1.97^3.00^~2, 3~^~12/01/2003~ -~16112~^~309~^2.56^6^0.00^~6~^~JA~^^^2^1.05^3.32^1^2.56^2.56^~2, 3~^~12/01/2003~ -~16112~^~323~^0.01^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16112~^~418~^0.08^2^^~6~^~JA~^^^2^0.00^0.08^1^^^^~12/01/2003~ -~16112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16113~^~203~^19.40^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16113~^~204~^11.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~205~^12.68^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16113~^~207~^1.90^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~255~^55.02^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~269~^4.89^0^^~4~^~BFSN~^~16112~^^^^^^^^^~04/01/2007~ -~16113~^~303~^8.60^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~309~^3.03^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~323~^0.01^0^^~4~^~BFSN~^~16112~^^^^^^^^^~04/01/2007~ -~16113~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16113~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16113~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16114~^~203~^20.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~204~^10.80^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~205~^7.64^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~207~^1.62^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~255~^59.65^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~303~^2.70^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~309~^1.14^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~418~^0.08^1^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~16115~^~203~^37.81^4^^~1~^^^^^^^^^^^~07/01/2015~ -~16115~^~204~^20.65^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~205~^31.92^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16115~^~207~^4.46^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~255~^5.16^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~269~^7.50^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16115~^~303~^6.37^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~309~^3.92^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~323~^1.95^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16115~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16115~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16116~^~203~^38.09^52^0.17^~1~^^^^^^^^^^^~07/01/2015~ -~16116~^~204~^21.86^31^0.22^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~205~^30.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16116~^~207~^5.86^16^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~255~^3.81^58^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~269~^7.61^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~303~^5.82^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~309~^3.58^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~323~^1.98^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16117~^~203~^51.46^6^^~1~^^^^^^^^^^^~07/01/2015~ -~16117~^~204~^1.22^6^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~205~^33.92^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16117~^~207~^6.15^2^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~255~^7.25^6^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~269~^16.42^0^^~4~^~O~^^^^^^^^^^~07/01/2015~ -~16117~^~303~^9.24^13^0.78^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~309~^2.46^14^0.21^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~323~^0.12^0^^~4~^~BFFN~^~16115~^^^^^^^^^~01/01/2008~ -~16117~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16118~^~203~^49.81^2^^~1~^~A~^^^1^49.50^50.13^1^^^^~07/01/2015~ -~16118~^~204~^8.90^2^^~1~^~A~^^^1^8.15^9.66^1^^^^~01/01/2008~ -~16118~^~205~^30.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16118~^~207~^6.04^2^^~1~^~A~^^^1^5.86^6.22^1^^^^~01/01/2008~ -~16118~^~209~^5.25^2^^~1~^~A~^^^1^5.20^5.30^1^^^^~01/01/2008~ -~16118~^~255~^4.61^2^^~1~^~A~^^^1^4.14^5.09^1^^^^~01/01/2008~ -~16118~^~269~^9.33^0^^~4~^~O~^~16117~^^^^^^^^^~07/01/2015~ -~16118~^~303~^8.20^2^^~1~^~A~^^^1^6.50^9.90^1^^^^~01/01/2008~ -~16118~^~309~^4.10^2^^~1~^~A~^^^1^3.80^4.40^1^^^^~01/01/2008~ -~16118~^~323~^0.55^2^^~1~^~A~^^^1^0.51^0.60^1^^^^~01/01/2008~ -~16118~^~341~^0.05^2^^~1~^~A~^^^1^0.04^0.07^1^^^^~01/01/2008~ -~16118~^~342~^6.03^2^^~1~^~A~^^^1^5.18^6.88^1^^^^~01/01/2008~ -~16118~^~343~^2.61^2^^~1~^~A~^^^1^2.47^2.76^1^^^^~01/01/2008~ -~16118~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2008~ -~16118~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2008~ -~16118~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2008~ -~16118~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2008~ -~16118~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16119~^~203~^49.20^5^1.34^~1~^^^^^^^^^^^~07/01/2015~ -~16119~^~204~^2.39^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~205~^35.89^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16119~^~207~^5.58^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~255~^6.94^4^0.30^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~303~^13.70^7^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~309~^5.06^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16120~^~203~^3.27^14^0.30^~6~^~JA~^^^2^2.88^4.20^3^2.29^4.24^~4~^~08/01/2007~ -~16120~^~204~^1.75^13^0.16^~6~^~JA~^^^2^1.65^2.28^3^1.23^2.25^~4~^~08/01/2007~ -~16120~^~205~^6.28^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16120~^~207~^0.65^7^^~1~^~A~^^^1^0.65^0.65^0^^^~4~^~08/01/2007~ -~16120~^~255~^88.05^7^^~1~^~A~^^^1^88.05^88.05^0^^^~4~^~08/01/2007~ -~16120~^~269~^3.99^7^0.66^~12~^~MA~^^^1^2.67^4.94^2^1.13^6.84^~4~^~08/01/2007~ -~16120~^~303~^0.64^14^0.14^~6~^~JA~^^^2^0.37^1.02^3^0.18^1.10^~4~^~08/01/2007~ -~16120~^~309~^0.12^10^0.25^~6~^~JA~^^^2^0.00^0.45^1^-3.05^3.30^~4~^~08/01/2007~ -~16120~^~323~^0.11^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~418~^0.00^7^0.00^~12~^~MA~^^^1^0.00^0.00^2^0.00^0.00^~4~^~08/01/2007~ -~16120~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2007~ -~16120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~16121~^~203~^63.63^360^2.35^~1~^^^^^^^^^^^~07/01/2015~ -~16121~^~204~^0.46^5^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~205~^25.41^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16121~^~207~^4.70^3^0.55^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~255~^5.80^7^0.52^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~269~^20.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16121~^~303~^10.78^5^0.46^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~309~^4.40^5^0.81^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16121~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16122~^~203~^88.32^233^0.11^~1~^^^^^^^^^^^~07/01/2015~ -~16122~^~204~^3.39^124^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16122~^~207~^3.58^166^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~255~^4.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~303~^14.50^125^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~309~^4.03^132^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16122~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16123~^~203~^8.14^6^0.02^~1~^~A~^^^1^8.05^8.22^5^8.06^8.21^~2, 3~^~06/01/2012~ -~16123~^~204~^0.57^6^0.04^~1~^~A~^^^1^0.44^0.69^5^0.46^0.67^~2, 3~^~06/01/2012~ -~16123~^~205~^4.93^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~16123~^~207~^15.21^6^0.01^~1~^~A~^^^1^15.17^15.28^5^15.17^15.25^~2, 3~^~06/01/2012~ -~16123~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~16123~^~211~^0.30^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~16123~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2012~ -~16123~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2012~ -~16123~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2012~ -~16123~^~255~^71.15^6^0.03^~1~^~A~^^^1^71.05^71.26^5^71.05^71.24^~2, 3~^~06/01/2012~ -~16123~^~269~^0.40^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~ -~16123~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~16123~^~303~^1.45^6^0.04^~1~^~A~^^^1^1.36^1.64^5^1.34^1.55^~2, 3~^~06/01/2012~ -~16123~^~309~^0.87^6^0.01^~1~^~A~^^^1^0.84^0.90^5^0.84^0.89^~2, 3~^~06/01/2012~ -~16123~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16123~^~418~^0.00^1^^~6~^~JA~^^^2^0.00^0.00^^^^^~12/01/2003~ -~16123~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16123~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16124~^~203~^10.51^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16124~^~204~^0.10^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~205~^5.57^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16124~^~207~^17.82^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~255~^66.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~269~^1.70^0^^~4~^~T~^^^^^^^^^^~02/01/2003~ -~16124~^~303~^2.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~309~^0.43^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16124~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16125~^~203~^7.00^6^0.05^~1~^~A~^^^1^6.85^7.19^5^6.85^7.15^~2, 3~^~06/01/2012~ -~16125~^~204~^0.51^6^0.05^~1~^~A~^^^1^0.32^0.67^5^0.36^0.65^~2, 3~^~06/01/2012~ -~16125~^~205~^7.84^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~16125~^~207~^16.63^6^0.29^~1~^~A~^^^1^15.27^17.30^5^15.86^17.39^~2, 3~^~06/01/2012~ -~16125~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~16125~^~211~^0.70^3^0.05^~1~^~A~^^^1^0.60^0.80^2^0.45^0.94^~2, 3~^~06/01/2012~ -~16125~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~16125~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~16125~^~214~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~06/01/2012~ -~16125~^~255~^68.02^6^0.10^~1~^~A~^^^1^67.63^68.24^5^67.76^68.27^~2, 3~^~06/01/2012~ -~16125~^~269~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~2, 3~^~06/01/2012~ -~16125~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~16125~^~303~^0.33^6^0.01^~1~^~A~^^^1^0.29^0.36^5^0.30^0.35^~2, 3~^~06/01/2012~ -~16125~^~309~^0.23^6^7.0e-03^~1~^~A~^^^1^0.21^0.25^5^0.21^0.24^~2, 3~^~06/01/2012~ -~16125~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~16125~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16126~^~203~^9.04^4^0.22^~1~^~A~^^^1^8.56^9.50^3^8.32^9.75^~2, 3~^~07/01/2015~ -~16126~^~204~^4.17^7^0.12^~1~^~A~^^^2^3.42^4.46^4^3.84^4.50^~2, 3~^~12/01/2003~ -~16126~^~205~^2.85^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~16126~^~207~^1.01^7^0.06^~1~^~A~^^^2^0.79^1.29^4^0.81^1.20^~2, 3~^~12/01/2003~ -~16126~^~255~^82.93^10^0.98^~6~^~JA~^^^4^71.10^86.14^1^72.05^93.81^~2, 3~^~08/01/2015~ -~16126~^~269~^0.60^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16126~^~303~^1.61^7^0.13^~1~^~A~^^^2^1.29^2.35^4^1.24^1.97^~2, 3~^~12/01/2003~ -~16126~^~309~^0.83^6^0.02^~1~^~A~^^^2^0.70^1.01^4^0.74^0.90^~2, 3~^~12/01/2003~ -~16126~^~323~^0.01^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2006~ -~16126~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16127~^~203~^7.17^5^0.75^~1~^^^^^^^^^^^~07/01/2015~ -~16127~^~204~^3.69^5^0.20^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~205~^1.18^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16127~^~207~^0.70^5^0.03^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~255~^87.26^5^0.95^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~269~^0.70^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~303~^1.11^5^0.03^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~309~^0.64^4^0.04^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~323~^0.01^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16127~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~ -~16127~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16127~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16128~^~203~^52.47^1^^~1~^^^^^^^^^^^~07/01/2015~ -~16128~^~204~^30.34^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~205~^10.03^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16128~^~207~^1.38^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~255~^5.78^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~303~^9.73^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~309~^4.90^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~203~^18.82^2^^~1~^^^^^^^^^^^~07/01/2015~ -~16129~^~204~^20.18^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~205~^8.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16129~^~207~^1.62^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~255~^50.52^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~269~^2.72^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~303~^4.87^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~309~^1.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~323~^0.04^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~ -~16129~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16130~^~203~^3.52^2^^~1~^^^^^^^^^^^~07/01/2015~ -~16130~^~204~^1.73^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~205~^12.23^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16130~^~207~^0.88^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~255~^81.64^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~303~^1.30^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~309~^0.56^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~203~^8.92^1^^~1~^^^^^^^^^^^~07/01/2015~ -~16132~^~204~^8.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~205~^4.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16132~^~207~^8.69^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~255~^70.01^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~303~^1.98^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~309~^1.56^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~203~^24.33^4^0.45^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~204~^1.31^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~205~^61.91^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16133~^~207~^4.03^4^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~255~^8.43^4^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~303~^8.61^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~309~^3.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~203~^8.29^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~204~^0.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~205~^21.09^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16134~^~207~^1.37^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~255~^68.80^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~303~^2.64^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~309~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~203~^29.65^57^0.45^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~204~^16.32^95^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~205~^41.71^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16135~^~207~^3.98^70^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~255~^8.34^83^0.36^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~303~^13.44^56^1.02^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~309~^4.48^33^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~ -~16136~^~203~^10.62^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~204~^5.84^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~205~^14.94^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16136~^~207~^1.43^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~255~^67.19^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~303~^4.33^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~309~^1.44^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16137~^~203~^4.86^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~204~^8.59^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~205~^20.12^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~207~^1.56^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~255~^64.87^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~269~^0.27^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~303~^1.56^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~309~^1.09^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~323~^0.75^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~341~^0.01^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~342~^0.04^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16138~^~203~^13.31^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~204~^17.80^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~205~^31.84^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16138~^~207~^2.43^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~255~^34.62^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~303~^3.42^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~309~^1.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16139~^~203~^2.60^15^0.13^~12~^~MA~^^^1^2.47^2.88^5^2.25^2.93^~4~^~08/01/2007~ -~16139~^~204~^1.47^15^0.17^~12~^~MA~^^^1^1.13^1.65^5^1.01^1.92^~4~^~08/01/2007~ -~16139~^~205~^4.92^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16139~^~207~^0.65^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~255~^90.36^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16139~^~269~^3.65^15^0.52^~12~^~MA~^^^1^2.67^4.32^5^2.29^4.99^~4~^~08/01/2007~ -~16139~^~303~^0.42^13^0.12^~12~^~MA~^^^1^0.30^0.70^4^0.08^0.76^~4~^~08/01/2007~ -~16139~^~309~^0.26^15^0.07^~12~^~MA~^^^1^0.10^0.37^5^0.06^0.45^~4~^~08/01/2007~ -~16139~^~323~^0.11^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~418~^0.85^15^0.43^~12~^~MA~^^^1^0.00^1.23^5^-0.25^1.95^~4~^~05/01/2009~ -~16139~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~16139~^~578~^0.85^0^^~4~^~NR~^^^^^^^^^^~08/01/2007~ -~16144~^~203~^23.91^13^0.70^~1~^~A~^^^2^18.98^28.30^11^22.35^25.46^~2, 3~^~04/01/2014~ -~16144~^~204~^2.17^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~205~^63.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16144~^~207~^3.00^7^0.06^~1~^~A~^^^1^2.82^3.31^6^2.84^3.15^~2, 3~^~04/01/2014~ -~16144~^~209~^47.62^13^1.47^~1~^~A~^^^2^35.80^59.39^10^44.33^50.91^~2, 3~^~04/01/2014~ -~16144~^~255~^7.82^13^0.13^~1~^~A~^^^2^6.99^8.75^9^7.50^8.12^~2, 3~^~04/01/2014~ -~16144~^~303~^7.39^12^0.43^~1~^~A~^^^2^5.77^10.65^6^6.34^8.43^~2, 3~^~04/01/2014~ -~16144~^~309~^3.60^12^0.15^~1~^~A~^^^2^2.28^4.80^10^3.26^3.93^~2, 3~^~04/01/2014~ -~16144~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16145~^~203~^7.98^4^0.04^~1~^~A~^^^1^7.87^8.10^3^7.82^8.13^~2, 3~^~04/01/2011~ -~16145~^~204~^1.05^4^0.12^~1~^~A~^^^1^0.70^1.23^3^0.66^1.43^~2, 3~^~04/01/2011~ -~16145~^~205~^21.49^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16145~^~207~^1.36^4^0.12^~1~^~A~^^^1^1.07^1.65^3^0.95^1.77^~2, 3~^~04/01/2011~ -~16145~^~210~^3.47^2^^~1~^^^^1^3.47^3.47^^^^^~04/01/2011~ -~16145~^~211~^0.23^2^^~1~^^^^1^0.23^0.23^^^^^~04/01/2011~ -~16145~^~212~^0.10^2^^~1~^^^^1^0.10^0.10^^^^^~04/01/2011~ -~16145~^~213~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~04/01/2011~ -~16145~^~214~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~04/01/2011~ -~16145~^~255~^68.11^8^0.38^~6~^~JA~^^^3^65.53^70.80^2^66.30^69.92^~2, 3~^~04/01/2011~ -~16145~^~269~^3.80^2^^~1~^^^^1^3.80^3.80^^^^^~04/01/2011~ -~16145~^~303~^1.50^4^0.04^~1~^~A~^^^1^1.37^1.56^3^1.36^1.65^~2, 3~^~04/01/2011~ -~16145~^~309~^0.75^4^0.02^~1~^~A~^^^1^0.68^0.78^3^0.67^0.81^~2, 3~^~04/01/2011~ -~16145~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16146~^~203~^6.99^4^0.34^~1~^~A~^^^1^6.10^7.70^3^5.90^8.06^~2, 3~^~04/01/2011~ -~16146~^~204~^0.90^4^0.04^~1~^~A~^^^1^0.80^1.00^3^0.77^1.03^~2, 3~^~04/01/2011~ -~16146~^~205~^20.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16146~^~207~^1.30^4^0.07^~1~^~A~^^^1^1.13^1.48^3^1.06^1.53^~2, 3~^~04/01/2011~ -~16146~^~209~^10.21^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~210~^0.54^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~211~^0.00^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~212~^0.00^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~213~^0.00^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~214~^0.00^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~255~^70.60^8^0.31^~6~^~JA~^^^4^69.16^76.00^3^69.60^71.59^~2, 3~^~04/01/2011~ -~16146~^~269~^0.54^1^^~1~^^^^^^^^^^^~04/01/2011~ -~16146~^~303~^1.33^4^0.04^~1~^~A~^^^1^1.24^1.43^3^1.18^1.47^~2, 3~^~04/01/2011~ -~16146~^~309~^0.61^4^0.05^~1~^~A~^^^1^0.48^0.70^3^0.44^0.77^~2, 3~^~04/01/2011~ -~16146~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16147~^~203~^15.70^4^3.15^~1~^~A~^^^1^7.26^22.24^3^5.67^25.73^~2, 3~^~02/01/2005~ -~16147~^~204~^6.30^4^1.25^~1~^~A~^^^1^4.40^9.97^3^2.30^10.28^~2, 3~^~02/01/2005~ -~16147~^~205~^14.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~207~^2.52^4^0.20^~1~^~A~^^^1^1.96^2.93^3^1.86^3.16^~2, 3~^~02/01/2005~ -~16147~^~209~^5.78^4^3.02^~1~^~A~^^^1^0.77^14.51^3^-3.85^15.41^~2, 3~^~02/01/2005~ -~16147~^~210~^0.62^4^0.05^~1~^~A~^^^1^0.52^0.72^3^0.44^0.79^~1, 2, 3~^~02/01/2005~ -~16147~^~211~^0.26^4^0.07^~1~^~A~^^^1^0.07^0.46^3^0.01^0.50^~1, 2, 3~^~02/01/2005~ -~16147~^~212~^0.13^4^0.03^~1~^~A~^^^1^0.07^0.20^3^0.02^0.23^~1, 2, 3~^~02/01/2005~ -~16147~^~213~^0.06^4^0.05^~1~^~A~^^^1^0.00^0.23^3^-0.12^0.24^~1, 2, 3~^~02/01/2005~ -~16147~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~255~^61.21^4^1.82^~1~^~A~^^^1^55.76^63.55^3^55.39^67.03^~2, 3~^~02/01/2005~ -~16147~^~269~^1.07^4^0.13^~1~^~A~^^^1^0.67^1.25^3^0.64^1.49^~2, 3~^~02/01/2005~ -~16147~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~303~^2.41^4^0.61^~1~^~A~^^^1^1.23^4.06^3^0.47^4.35^~2, 3~^~02/01/2005~ -~16147~^~309~^1.26^4^0.20^~1~^~A~^^^1^0.87^1.83^3^0.60^1.91^~2, 3~^~02/01/2005~ -~16147~^~323~^0.23^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~16147~^~418~^2.01^4^1.93^~1~^~A~^^^1^0.00^7.82^3^-4.14^8.17^~1, 2, 3~^~08/01/2007~ -~16147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~578~^2.01^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~16149~^~203~^24.80^2^^~9~^~MC~^^^1^24.79^24.81^1^^^^~05/01/2006~ -~16149~^~204~^54.89^2^^~9~^~MC~^^^1^54.77^55.01^1^^^^~05/01/2006~ -~16149~^~205~^14.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16149~^~207~^4.15^2^^~9~^~MC~^^^1^4.10^4.20^1^^^^~05/01/2006~ -~16149~^~255~^1.93^1^^~9~^~MC~^^^^^^^^^^~05/01/2006~ -~16149~^~269~^6.35^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16149~^~303~^2.84^2^^~9~^~MC~^^^1^2.80^2.88^1^^^^~05/01/2006~ -~16149~^~309~^3.51^1^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~16149~^~323~^8.06^2^^~9~^~MC~^^^1^8.01^8.10^1^^^^~05/01/2006~ -~16149~^~418~^0.00^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~16149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~16150~^~203~^25.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~204~^34.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~205~^35.65^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~207~^3.25^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~ -~16150~^~255~^1.20^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~269~^9.28^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2010~ -~16150~^~303~^1.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~309~^2.80^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~323~^9.04^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16150~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~16150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16155~^~203~^25.72^0^^~9~^~MC~^^^^^^^^^^~02/01/2004~ -~16155~^~204~^50.81^0^^~9~^~MC~^^^^^^^^^^~02/01/2004~ -~16155~^~205~^18.75^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~16155~^~207~^3.25^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1996~ -~16155~^~255~^1.47^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1996~ -~16155~^~269~^10.47^0^^~9~^~MC~^^^^^^^^^^~02/01/2010~ -~16155~^~303~^16.60^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~309~^14.40^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~323~^43.20^0^^~8~^~LC~^^^^^^^^^^~02/01/2010~ -~16155~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16155~^~573~^36.90^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~16156~^~203~^26.06^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~204~^51.47^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~205~^17.69^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16156~^~207~^3.30^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1996~ -~16156~^~255~^1.48^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1996~ -~16156~^~269~^10.94^0^^~9~^~MC~^^^^^^^^^^~02/01/2010~ -~16156~^~303~^17.50^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~309~^15.10^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~323~^43.20^0^^~8~^~LC~^~16097~^^^^^^^^^~02/01/2010~ -~16156~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~ -~16156~^~573~^36.90^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~16157~^~203~^22.39^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~204~^6.69^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~205~^57.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16157~^~207~^2.82^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~255~^10.28^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~269~^10.85^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~303~^4.86^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~309~^2.81^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~323~^0.83^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16158~^~203~^7.78^11^0.03^~1~^~A~^^^1^6.20^8.05^6^7.68^7.88^~2, 3~^~12/01/2016~ -~16158~^~204~^17.82^11^0.31^~1~^~A~^^^1^11.90^19.10^6^17.04^18.59^~2, 3~^~12/01/2016~ -~16158~^~205~^15.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~207~^2.00^11^0.02^~1~^~A~^^^1^1.73^2.12^6^1.95^2.05^~2, 3~^~12/01/2016~ -~16158~^~209~^8.08^6^0.06^~1~^~A~^^^1^7.70^8.80^3^7.86^8.30^~2, 3~^~12/01/2016~ -~16158~^~210~^0.34^2^^~1~^~A~^^^1^0.00^0.37^^^^~1~^~12/01/2016~ -~16158~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~16158~^~212~^0.28^2^^~1~^~A~^^^1^0.00^0.30^^^^~1~^~12/01/2016~ -~16158~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~16158~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~16158~^~255~^57.40^11^0.28^~1~^~A~^^^1^56.10^65.60^6^56.68^58.10^~2, 3~^~12/01/2016~ -~16158~^~269~^0.62^2^^~1~^~A~^^^1^0.00^0.67^^^^^~12/01/2016~ -~16158~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2016~ -~16158~^~303~^2.54^11^0.08^~1~^~A~^^^1^1.87^2.96^5^2.31^2.77^~2, 3~^~12/01/2016~ -~16158~^~309~^1.44^11^0.01^~1~^~A~^^^1^1.17^1.50^4^1.40^1.47^~2, 3~^~12/01/2016~ -~16158~^~323~^1.54^6^0.04^~1~^~A~^^^1^1.40^2.89^2^1.37^1.70^~2, 3~^~12/01/2016~ -~16158~^~341~^0.34^6^4.0e-03^~1~^~A~^^^1^0.22^0.36^2^0.32^0.35^~2, 3~^~12/01/2016~ -~16158~^~342~^11.02^6^0.32^~1~^~A~^^^1^6.32^11.93^2^9.65^12.39^~2, 3~^~12/01/2016~ -~16158~^~343~^2.08^6^0.10^~1~^~A~^^^1^0.26^2.47^2^1.64^2.51^~2, 3~^~12/01/2016~ -~16158~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~ -~16158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~ -~16159~^~203~^9.98^2^^~1~^~A~^^^1^8.34^11.61^1^^^^~07/01/2015~ -~16159~^~204~^5.26^2^^~1~^~A~^^^1^4.52^6.01^1^^^^~07/01/2015~ -~16159~^~205~^1.18^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~207~^1.28^2^^~1~^~A~^^^1^1.22^1.34^1^^^^~07/01/2015~ -~16159~^~255~^82.31^2^^~1~^~A~^^^1^80.38^84.23^1^^^^~07/01/2015~ -~16159~^~269~^0.71^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16159~^~303~^2.04^2^^~1~^~A~^^^1^1.24^2.84^1^^^^~07/01/2015~ -~16159~^~309~^1.07^2^^~1~^~A~^^^1^0.81^1.34^1^^^^~07/01/2015~ -~16159~^~323~^0.01^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16159~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~ -~16159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16160~^~203~^12.68^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16160~^~204~^9.99^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~205~^4.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16160~^~207~^1.82^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~255~^71.12^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~303~^2.75^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~309~^1.66^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~ -~16161~^~203~^4.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~204~^2.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~205~^2.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~207~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~255~^89.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~269~^1.31^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~303~^0.82^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~309~^0.52^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~16162~^~203~^6.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~204~^2.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~205~^2.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~207~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~255~^87.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~269~^1.27^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~303~^1.03^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~309~^0.61^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~16163~^~203~^7.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~204~^1.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~205~^2.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~207~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~255~^88.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~269~^0.99^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~303~^1.19^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~309~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~16164~^~203~^6.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~204~^0.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~205~^1.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~207~^0.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~255~^91.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~269~^0.45^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~303~^0.75^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~309~^0.33^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~16165~^~203~^7.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~204~^0.70^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~205~^1.00^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~207~^0.40^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~255~^90.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~269~^0.42^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~303~^0.79^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~309~^0.26^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1998~ -~16166~^~203~^2.26^9^0.36^~12~^~MA~^^^1^2.16^3.29^5^1.33^3.18^~4~^~08/01/2007~ -~16166~^~204~^1.53^9^0.25^~12~^~MA~^^^1^1.03^1.85^5^0.88^2.17^~4~^~08/01/2007~ -~16166~^~205~^9.95^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16166~^~207~^0.65^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~255~^85.61^0^^~4~^~NR~^^^^^^^^^^~08/01/2007~ -~16166~^~269~^7.86^9^0.72^~12~^~MA~^^^1^6.17^8.64^5^6.00^9.72^~4~^~08/01/2007~ -~16166~^~303~^0.48^8^0.11^~12~^~MA~^^^1^0.44^0.74^4^0.15^0.80^~4~^~08/01/2007~ -~16166~^~309~^0.34^9^0.15^~12~^~MA~^^^1^0.00^0.49^5^-0.04^0.73^~4~^~08/01/2007~ -~16166~^~323~^0.01^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~16166~^~418~^0.70^9^0.38^~12~^~MA~^^^1^0.00^1.23^5^-0.28^1.69^~4~^~08/01/2007~ -~16166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16167~^~203~^21.93^5^0.48^~1~^~A~^^^1^20.47^23.16^4^20.57^23.29^~2, 3~^~02/01/2004~ -~16167~^~204~^49.54^5^0.82^~1~^~A~^^^1^47.30^52.30^4^47.24^51.83^~2, 3~^~02/01/2004~ -~16167~^~205~^23.98^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~207~^3.00^5^0.08^~1~^~A~^^^1^2.76^3.23^4^2.75^3.24^~2, 3~^~02/01/2004~ -~16167~^~209~^4.57^3^0.03^~1~^~A~^^^1^4.50^4.60^2^4.42^4.71^~2, 3~^~02/01/2004~ -~16167~^~210~^2.39^5^0.80^~1~^~A~^^^1^1.03^5.39^4^0.16^4.61^~2, 3~^~02/01/2004~ -~16167~^~211~^4.11^5^0.81^~1~^~A~^^^1^1.38^6.08^4^1.84^6.37^~2, 3~^~02/01/2004~ -~16167~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~255~^1.55^5^0.15^~1~^~A~^^^1^1.20^2.04^4^1.11^1.98^~2, 3~^~02/01/2004~ -~16167~^~269~^6.50^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~287~^0.00^0^^~4~^~BFSN~^~16098~^^^^^^^^^~07/01/2004~ -~16167~^~303~^2.16^5^0.22^~1~^~A~^^^1^1.66^2.98^4^1.53^2.78^~2, 3~^~02/01/2004~ -~16167~^~309~^2.67^5^0.21^~1~^~A~^^^1^2.24^3.26^4^2.07^3.26^~2, 3~^~02/01/2004~ -~16167~^~323~^5.94^5^0.69^~1~^~A~^^^1^4.29^8.40^4^4.00^7.88^~2, 3~^~02/01/2004~ -~16167~^~341~^0.19^5^0.02^~1~^~A~^^^1^0.14^0.28^4^0.12^0.25^~2, 3~^~02/01/2004~ -~16167~^~342~^8.32^5^0.41^~1~^~A~^^^1^6.89^9.37^4^7.16^9.48^~2, 3~^~02/01/2004~ -~16167~^~343~^0.68^5^0.18^~1~^~A~^^^1^0.35^1.39^4^0.15^1.20^~2, 3~^~02/01/2004~ -~16167~^~344~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~346~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~418~^0.00^0^^~4~^~BFSN~^~16098~^^^^^^^^^~07/01/2004~ -~16168~^~203~^2.26^9^0.36^~12~^~MA~^^^1^2.16^3.29^5^1.33^3.18^~4~^~08/01/2007~ -~16168~^~204~^1.53^9^0.25^~12~^~MA~^^^1^1.03^1.85^5^0.88^2.17^~4~^~08/01/2007~ -~16168~^~205~^9.95^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16168~^~207~^0.65^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~255~^85.61^0^^~4~^~O~^^^^^^^^^^~08/01/2007~ -~16168~^~269~^7.86^9^0.72^~12~^~MA~^^^1^6.17^8.64^5^6.00^9.72^~4~^~08/01/2007~ -~16168~^~303~^0.48^8^0.11^~12~^~MA~^^^1^0.44^0.74^4^0.15^0.80^~4~^~08/01/2007~ -~16168~^~309~^0.34^9^0.15^~12~^~MA~^^^1^0.00^0.49^5^-0.04^0.73^~4~^~08/01/2007~ -~16168~^~323~^0.11^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~418~^0.70^9^0.38^~12~^~MA~^^^1^0.00^1.23^5^-0.28^1.69^~4~^~08/01/2007~ -~16168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~16168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~16171~^~203~^5.28^2^^~1~^~A~^^^1^5.25^5.31^1^^^^~03/01/2008~ -~16171~^~204~^0.87^2^^~1~^~A~^^^1^0.61^1.13^1^^^^~03/01/2008~ -~16171~^~205~^13.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~207~^1.95^2^^~1~^~A~^^^1^1.89^2.01^1^^^^~03/01/2008~ -~16171~^~209~^8.65^2^^~1~^~A~^^^1^8.40^8.90^1^^^^~03/01/2008~ -~16171~^~210~^0.59^2^^~1~^~A~^^^1^0.42^0.77^1^^^^~03/01/2008~ -~16171~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~255~^78.39^2^^~1~^~A~^^^1^78.38^78.41^1^^^^~03/01/2008~ -~16171~^~269~^0.59^2^^~1~^~A~^^^1^0.42^0.77^1^^^^~03/01/2008~ -~16171~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~303~^1.70^2^^~1~^~A~^^^1^1.37^2.03^1^^^^~03/01/2008~ -~16171~^~309~^0.74^2^^~1~^~A~^^^1^0.72^0.76^1^^^^~03/01/2008~ -~16171~^~323~^0.09^2^^~1~^~A~^^^1^0.06^0.13^1^^^^~03/01/2008~ -~16171~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~03/01/2008~ -~16171~^~342~^1.31^2^^~1~^~A~^^^1^1.16^1.46^1^^^^~03/01/2008~ -~16171~^~343~^0.18^2^^~1~^~A~^^^1^0.15^0.20^1^^^^~03/01/2008~ -~16171~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2008~ -~16171~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16171~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~03/01/2008~ -~16171~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~16172~^~203~^5.34^2^^~1~^~A~^^^1^5.31^5.38^1^^^^~03/01/2008~ -~16172~^~204~^0.45^2^^~1~^~A~^^^1^0.25^0.65^1^^^^~03/01/2008~ -~16172~^~205~^13.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~207~^2.01^2^^~1~^~A~^^^1^1.90^2.13^1^^^^~03/01/2008~ -~16172~^~209~^8.65^2^^~1~^~A~^^^1^8.50^8.80^1^^^^~03/01/2008~ -~16172~^~210~^0.61^2^^~1~^~A~^^^1^0.59^0.63^1^^^^~03/01/2008~ -~16172~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~255~^78.69^2^^~1~^~A~^^^1^78.08^79.31^1^^^^~03/01/2008~ -~16172~^~269~^0.61^2^^~1~^~A~^^^1^0.59^0.63^1^^^^~03/01/2008~ -~16172~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~303~^1.62^2^^~1~^~A~^^^1^1.37^1.86^1^^^^~03/01/2008~ -~16172~^~309~^0.65^2^^~1~^~A~^^^1^0.64^0.67^1^^^^~03/01/2008~ -~16172~^~323~^0.04^2^^~1~^~A~^^^1^0.03^0.05^1^^^^~03/01/2008~ -~16172~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~342~^0.99^2^^~1~^~A~^^^1^0.92^1.06^1^^^^~03/01/2008~ -~16172~^~343~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^^~03/01/2008~ -~16172~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~03/01/2008~ -~16172~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~03/01/2008~ -~16172~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~16172~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~16173~^~203~^5.00^2^^~1~^~A~^^^1^4.63^5.38^1^^^^~06/01/2008~ -~16173~^~204~^6.93^2^^~1~^~A~^^^1^6.68^7.18^1^^^^~06/01/2008~ -~16173~^~205~^15.47^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~207~^1.89^2^^~1~^~A~^^^1^1.86^1.92^1^^^^~06/01/2008~ -~16173~^~209~^8.30^2^^~1~^~A~^^^1^7.30^9.30^1^^^^~06/01/2008~ -~16173~^~255~^70.71^2^^~1~^~A~^^^1^70.04^71.38^1^^^^~06/01/2008~ -~16173~^~303~^1.95^2^^~1~^~A~^^^1^1.90^2.00^1^^^^~06/01/2008~ -~16173~^~309~^0.70^2^^~1~^~A~^^^1^0.69^0.72^1^^^^~06/01/2008~ -~16173~^~323~^1.04^2^^~1~^~A~^^^1^0.36^1.71^1^^^^~06/01/2008~ -~16173~^~341~^0.04^2^^~1~^~A~^^^1^0.02^0.06^1^^^^~06/01/2008~ -~16173~^~342~^1.56^2^^~1~^~A~^^^1^0.60^2.53^1^^^^~06/01/2008~ -~16173~^~343~^0.44^2^^~1~^~A~^^^1^0.22^0.67^1^^^^~06/01/2008~ -~16173~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~06/01/2008~ -~16173~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~16173~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~16173~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~16174~^~203~^19.91^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16174~^~204~^11.38^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~205~^7.62^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16174~^~207~^1.53^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~255~^59.56^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~303~^2.13^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~309~^1.57^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~418~^0.14^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16210~^~203~^8.30^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~204~^1.70^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16210~^~205~^1.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16210~^~207~^1.60^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16210~^~255~^87.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16210~^~269~^0.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~303~^1.60^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~323~^5.22^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16210~^~418~^2.36^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~203~^12.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~204~^6.30^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16211~^~207~^1.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16211~^~255~^77.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16211~^~269~^0.60^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~303~^2.00^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~203~^10.10^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~204~^5.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~205~^2.60^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~207~^1.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~255~^80.90^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~269~^0.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16212~^~303~^1.60^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~203~^8.90^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~204~^4.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16213~^~205~^2.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16213~^~207~^1.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16213~^~255~^83.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16213~^~269~^0.30^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~303~^1.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~203~^4.80^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~204~^2.50^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16214~^~207~^0.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16214~^~255~^90.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16214~^~269~^0.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16214~^~303~^0.90^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~203~^2.90^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~204~^1.60^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~205~^4.50^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~207~^0.73^0^^~4~^~BFFN~^~16139~^^^^^^^^^~02/01/2007~ -~16215~^~255~^90.27^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~16215~^~269~^2.00^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~303~^0.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~309~^0.37^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~418~^0.39^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~203~^3.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~204~^1.80^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~205~^4.50^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~207~^0.74^0^^~4~^~BFZN~^~16139~^^^^^^^^^~02/01/2007~ -~16216~^~255~^89.76^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~16216~^~269~^2.00^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~303~^0.44^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~203~^1.60^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~204~^0.82^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~205~^4.10^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~207~^0.74^0^^~4~^~BFZN~^~16139~^^^^^^^^^~02/01/2007~ -~16219~^~255~^92.74^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~16219~^~269~^2.90^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~303~^0.30^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~309~^0.37^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~418~^0.37^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16222~^~203~^2.86^6^0.20^~12~^~MA~^^^1^2.67^3.29^4^2.30^3.42^~4~^~08/01/2007~ -~16222~^~204~^1.61^6^0.21^~12~^~MA~^^^1^1.23^1.85^4^1.02^2.19^~4~^~08/01/2007~ -~16222~^~205~^1.74^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~16222~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16222~^~255~^93.14^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16222~^~269~^0.41^6^0.16^~12~^~MA~^^^1^0.41^0.82^4^-0.04^0.87^~1, 4~^~08/01/2007~ -~16222~^~303~^0.46^5^0.28^~12~^~MA~^^^1^0.44^1.11^3^-0.44^1.36^~4~^~08/01/2007~ -~16222~^~418~^1.11^6^0.60^~12~^~MA~^^^1^0.00^1.23^4^-0.56^2.79^~4~^~08/01/2007~ -~16223~^~203~^2.94^4^0.69^~12~^~MA~^^^1^2.88^4.53^3^0.74^5.14^~4~^~06/01/2007~ -~16223~^~204~^1.99^4^0.17^~12~^~MA~^^^1^1.65^2.06^3^1.43^2.54^~4~^~06/01/2007~ -~16223~^~205~^3.45^4^0.81^~12~^~MA~^^^1^3.29^5.35^3^0.84^6.04^~4~^~06/01/2007~ -~16223~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16223~^~255~^90.98^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16223~^~269~^2.53^4^0.59^~12~^~MA~^^^1^1.65^3.29^3^0.64^4.40^~4~^~06/01/2007~ -~16223~^~303~^0.49^4^0.12^~12~^~MA~^^^1^0.44^0.74^3^0.09^0.89^~4~^~06/01/2007~ -~16223~^~309~^0.24^2^^~12~^~MA~^^^1^0.00^0.25^1^^^^~06/01/2007~ -~16223~^~323~^2.52^3^0.32^~12~^~MA~^^^1^2.47^3.09^2^1.11^3.92^~4~^~06/01/2007~ -~16223~^~418~^1.08^4^0.59^~12~^~MA~^^^1^0.00^1.23^3^-0.83^2.98^~4~^~06/01/2007~ -~16225~^~203~^2.38^6^0.36^~12~^~MA~^^^1^1.65^2.47^3^1.20^3.55^~4~^~06/01/2007~ -~16225~^~204~^0.77^6^0.16^~12~^~MA~^^^1^0.41^0.82^3^0.25^1.27^~4~^~06/01/2007~ -~16225~^~205~^3.51^6^0.69^~12~^~MA~^^^1^2.06^4.12^3^1.29^5.72^~4~^~06/01/2007~ -~16225~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16225~^~255~^92.69^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16225~^~269~^2.61^6^0.67^~12~^~MA~^^^1^1.65^3.70^3^0.47^4.74^~4~^~06/01/2007~ -~16225~^~303~^0.43^6^0.11^~12~^~MA~^^^1^0.30^0.59^3^0.08^0.78^~4~^~06/01/2007~ -~16225~^~309~^0.23^5^0.11^~12~^~MA~^^^1^0.10^0.37^2^-0.26^0.72^~4~^~06/01/2007~ -~16225~^~323~^0.06^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~418~^1.00^6^0.40^~12~^~MA~^^^1^0.00^1.23^3^-0.29^2.29^~4~^~10/01/2008~ -~16225~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16225~^~578~^1.00^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16227~^~203~^2.10^4^0.26^~12~^~MA~^^^1^1.65^2.47^3^1.27^2.93^~4~^~06/01/2007~ -~16227~^~204~^0.64^4^0.09^~12~^~MA~^^^1^0.62^0.82^3^0.34^0.93^~4~^~06/01/2007~ -~16227~^~205~^8.24^4^1.29^~12~^~MA~^^^1^5.35^9.05^3^4.12^12.34^~4~^~06/01/2007~ -~16227~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16227~^~255~^88.38^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16227~^~269~^7.13^4^1.08^~12~^~MA~^^^1^4.53^7.82^3^3.66^10.58^~4~^~06/01/2007~ -~16227~^~303~^0.59^4^0.11^~12~^~MA~^^^1^0.30^0.59^3^0.21^0.95^~4~^~06/01/2007~ -~16227~^~309~^0.23^3^0.11^~12~^~MA~^^^1^0.10^0.37^2^-0.26^0.72^~4~^~06/01/2007~ -~16227~^~323~^0.13^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~418~^1.00^4^0.40^~12~^~MA~^^^1^0.00^1.23^3^-0.29^2.29^~4~^~10/01/2008~ -~16227~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~16227~^~578~^1.00^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16228~^~203~^2.62^2^^~12~^~MA~^^^1^2.47^2.88^1^^^^~06/01/2007~ -~16228~^~204~^0.85^2^^~12~^~MA~^^^1^0.62^1.23^1^^^^~06/01/2007~ -~16228~^~205~^3.85^2^^~12~^~MA~^^^1^2.06^4.94^1^^^^~06/01/2007~ -~16228~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16228~^~255~^92.03^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16228~^~269~^0.41^2^^~12~^~MA~^^^1^0.41^0.41^1^^^~1~^~06/01/2007~ -~16228~^~303~^0.46^2^^~12~^~MA~^^^1^0.30^0.74^1^^^^~06/01/2007~ -~16228~^~309~^0.10^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16228~^~418~^0.23^2^^~12~^~MA~^^^1^0.00^0.37^1^^^^~06/01/2007~ -~16229~^~203~^1.65^2^^~12~^~MA~^^^1^1.65^1.65^^^^^~06/01/2007~ -~16229~^~204~^0.62^2^^~12~^~MA~^^^1^0.62^0.62^^^^^~06/01/2007~ -~16229~^~205~^7.20^2^^~12~^~MA~^^^1^5.76^8.64^1^^^^~06/01/2007~ -~16229~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16229~^~255~^89.89^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16229~^~269~^3.50^2^^~12~^~MA~^^^1^2.88^4.12^1^^^^~06/01/2007~ -~16229~^~303~^0.44^2^^~12~^~MA~^^^1^0.44^0.44^^^^^~06/01/2007~ -~16229~^~418~^0.00^2^^~12~^~MA~^^^1^0.00^0.00^^^^^~05/01/2009~ -~16230~^~203~^2.47^4^0.00^~12~^~MA~^^^1^2.47^2.47^^^^~2, 3~^~06/01/2007~ -~16230~^~204~^0.04^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16230~^~205~^4.14^4^0.41^~12~^~MA~^^^1^3.29^4.94^1^1.11^7.16^~2, 3~^~10/01/2008~ -~16230~^~207~^0.64^0^^~4~^~BFZN~^~16120~^^^^^^^^^~06/01/2007~ -~16230~^~255~^92.67^0^^~4~^~O~^^^^^^^^^^~06/01/2007~ -~16230~^~269~^3.65^4^0.39^~12~^~MA~^^^1^2.88^4.12^1^-0.51^7.81^~2, 3~^~08/01/2007~ -~16230~^~303~^0.35^4^0.00^~12~^~MA~^^^1^0.30^0.44^^^^~2, 3~^~08/01/2007~ -~16230~^~309~^0.10^2^^~12~^~MA~^^^1^0.10^0.10^^^^^~06/01/2007~ -~16230~^~323~^0.08^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~418~^0.23^4^0.00^~12~^~MA~^^^1^0.00^0.37^^^^~2, 3~^~10/01/2008~ -~16230~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~ -~16230~^~578~^0.23^0^^~4~^~O~^^^^^^^^^^~10/01/2008~ -~16231~^~203~^2.47^4^0.00^~12~^~MA~^^^1^2.47^2.47^^^^~2, 3~^~04/01/2009~ -~16231~^~204~^0.04^0^^~12~^~MA~^^^^^^^^^^~05/01/2009~ -~16231~^~205~^8.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~16231~^~207~^0.64^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~255~^88.38^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~269~^3.65^4^0.39^~12~^~MA~^^^1^2.88^4.12^1^-0.51^7.81^~2, 3~^~04/01/2009~ -~16231~^~303~^0.35^4^0.00^~12~^~MA~^^^1^0.30^0.44^^^^~2, 3~^~04/01/2009~ -~16231~^~309~^0.10^2^^~12~^~MA~^^^1^0.10^0.10^^^^^~04/01/2009~ -~16231~^~323~^0.13^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~418~^0.23^4^0.00^~12~^~MA~^^^1^0.00^0.37^^^^~2, 3~^~05/01/2009~ -~16231~^~573~^0.00^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~578~^0.23^0^^~4~^~NR~^~16227~^^^^^^^^^~05/01/2009~ -~16235~^~203~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~204~^1.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~205~^3.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16235~^~255~^91.53^0^^~4~^~O~^~16139~^^^^^^^^^~03/01/2008~ -~16235~^~269~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~205~^4.12^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~207~^0.65^0^^~4~^~BFZN~^~16168~^^^^^^^^^~03/01/2008~ -~16236~^~255~^91.32^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16236~^~269~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16236~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~203~^2.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~205~^9.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~207~^0.65^0^^~4~^~BFZN~^~16168~^^^^^^^^^~03/01/2008~ -~16237~^~255~^86.39^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16237~^~269~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~303~^0.59^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16237~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~204~^0.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~205~^3.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~207~^0.64^0^^~4~^~BFZN~^~16228~^^^^^^^^^~03/01/2008~ -~16238~^~255~^92.77^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16238~^~269~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~204~^0.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~205~^4.12^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~207~^0.64^0^^~4~^~BFZN~^~16228~^^^^^^^^^~03/01/2008~ -~16239~^~255~^91.95^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16239~^~269~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16239~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~203~^2.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~204~^0.62^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~205~^9.05^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~207~^0.64^0^^~4~^~BFZN~^~16227~^^^^^^^^^~03/01/2008~ -~16240~^~255~^87.63^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16240~^~269~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~303~^0.59^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~203~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~204~^2.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~205~^3.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~207~^0.64^0^^~4~^~BFZN~^~16223~^^^^^^^^^~03/01/2008~ -~16241~^~255~^91.13^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16241~^~269~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~205~^4.53^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~207~^0.64^0^^~4~^~BFZN~^~16223~^^^^^^^^^~03/01/2008~ -~16242~^~255~^90.92^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16242~^~269~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~205~^5.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~207~^0.64^0^^~4~^~BFZN~^~16223~^^^^^^^^^~03/01/2008~ -~16243~^~255~^89.69^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16243~^~269~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~203~^2.88^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~204~^1.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~205~^1.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~207~^0.64^0^^~4~^~BFZN~^~16222~^^^^^^^^^~03/01/2008~ -~16244~^~255~^93.18^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16244~^~269~^0.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~309~^0.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~204~^1.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~205~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16245~^~255~^87.41^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16245~^~269~^6.58^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~309~^0.62^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~418~^1.23^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~203~^2.46^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~204~^1.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~205~^12.30^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16246~^~255~^82.96^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16246~^~269~^9.84^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~303~^0.30^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~309~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~418~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16247~^~203~^2.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~205~^7.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16247~^~255~^87.62^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16247~^~269~^5.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~309~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~418~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~203~^2.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~205~^9.05^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16248~^~255~^86.80^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16248~^~269~^7.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~303~^0.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~309~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~418~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~203~^2.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~204~^1.44^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~205~^10.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~207~^0.65^0^^~4~^~BFZN~^~16139~^^^^^^^^^~03/01/2008~ -~16249~^~255~^85.56^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16249~^~269~^9.47^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~309~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~418~^0.37^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~203~^2.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~204~^1.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~205~^13.66^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16250~^~255~^80.70^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16250~^~269~^10.57^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~303~^0.48^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~203~^2.94^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~204~^1.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~205~^14.71^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~07/01/2008~ -~16251~^~255~^79.35^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16251~^~269~^10.59^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~303~^0.85^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~203~^2.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~204~^1.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~205~^9.69^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16252~^~255~^84.67^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16252~^~269~^5.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~205~^18.24^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16253~^~255~^77.00^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16253~^~269~^12.94^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~205~^17.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16254~^~255~^77.59^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16254~^~269~^12.94^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~205~^18.82^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16255~^~255~^76.41^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16255~^~269~^14.71^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~205~^17.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16256~^~255~^78.18^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16256~^~269~^11.76^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~205~^17.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16257~^~255~^78.18^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16257~^~269~^12.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~205~^17.65^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16258~^~255~^77.59^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16258~^~269~^12.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~203~^2.35^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~204~^1.18^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~205~^17.06^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~207~^1.24^0^^~4~^~BFZN~^~43476~^^^^^^^^^~03/01/2008~ -~16259~^~255~^78.18^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16259~^~269~^10.59^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~204~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~205~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~207~^0.38^0^^~4~^~BFZN~^~01067~^^^^^^^^^~03/01/2008~ -~16260~^~255~^86.29^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16260~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~204~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~205~^20.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~207~^0.38^0^^~4~^~BFZN~^~01067~^^^^^^^^^~03/01/2008~ -~16261~^~255~^72.95^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16261~^~269~^20.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~204~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~205~^20.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~207~^0.38^0^^~4~^~BFZN~^~01067~^^^^^^^^^~03/01/2008~ -~16262~^~255~^72.95^0^^~4~^~O~^^^^^^^^^^~03/01/2008~ -~16262~^~269~^20.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16271~^~203~^8.76^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16271~^~204~^3.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~205~^0.74^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16271~^~207~^1.20^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16271~^~255~^85.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~269~^0.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~303~^1.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~203~^8.21^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16272~^~204~^1.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16272~^~207~^1.30^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16272~^~255~^89.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~303~^0.87^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~323~^5.26^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~418~^2.42^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~203~^10.18^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16273~^~204~^4.90^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~205~^1.82^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16273~^~207~^1.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~255~^81.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~269~^0.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~303~^1.60^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~418~^1.45^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~203~^9.19^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16274~^~204~^3.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~205~^1.71^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16274~^~207~^1.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~255~^84.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~269~^0.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~303~^1.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~418~^1.43^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~203~^13.24^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16275~^~204~^5.90^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~205~^2.16^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16275~^~207~^1.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~255~^77.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~269~^1.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~303~^1.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~203~^10.07^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16276~^~204~^4.60^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~205~^1.53^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16276~^~207~^1.30^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16276~^~255~^82.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~269~^0.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~303~^1.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~203~^9.08^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16277~^~204~^4.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~205~^1.52^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16277~^~207~^1.20^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16277~^~255~^84.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~269~^0.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~303~^1.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~203~^4.82^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16278~^~204~^2.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~205~^0.58^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16278~^~207~^0.80^1^^~4~^~O~^^^^^^^^^^~04/01/2011~ -~16278~^~255~^91.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~269~^0.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~303~^0.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16279~^~203~^6.38^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16279~^~204~^2.71^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~205~^2.19^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16279~^~207~^0.64^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~255~^88.08^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~269~^0.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~303~^1.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~203~^10.92^1^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~16281~^~204~^4.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~205~^0.97^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16281~^~207~^1.05^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~255~^82.87^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~269~^0.40^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~303~^1.69^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16302~^~203~^7.52^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~204~^0.10^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~205~^24.77^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16302~^~207~^1.33^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~255~^66.29^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~303~^2.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~309~^1.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~203~^8.86^8^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~204~^0.54^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~205~^23.71^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16315~^~207~^1.15^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~255~^65.74^9^1.55^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~303~^2.10^8^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~309~^1.12^9^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~323~^0.87^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16315~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16316~^~203~^6.03^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~204~^0.29^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~205~^16.55^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~16316~^~207~^1.49^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~255~^75.64^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~269~^0.23^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~303~^1.90^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~309~^0.54^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~323~^0.62^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16316~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16317~^~203~^8.18^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~204~^0.35^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~205~^24.35^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16317~^~207~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~255~^65.74^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16317~^~303~^2.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~309~^0.76^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~323~^0.87^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16317~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~203~^9.34^8^0.17^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~204~^0.46^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~205~^24.46^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16320~^~207~^1.09^8^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~255~^64.65^8^0.49^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~303~^2.09^8^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~309~^1.14^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~203~^7.05^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~204~^0.76^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~205~^24.02^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16323~^~207~^1.61^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~255~^66.57^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~303~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~309~^0.64^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~203~^8.33^20^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~204~^0.45^20^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~205~^21.09^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16325~^~207~^1.14^20^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~255~^69.00^25^1.51^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~303~^2.13^20^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~309~^0.88^20^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16326~^~203~^7.37^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~204~^0.39^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~205~^21.02^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16326~^~207~^1.33^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~255~^69.89^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~269~^1.41^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~303~^1.57^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~309~^0.65^1^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~323~^0.79^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16328~^~203~^8.67^23^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~204~^0.50^23^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~205~^22.80^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16328~^~207~^1.09^23^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~255~^66.94^20^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~269~^0.32^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~303~^2.94^30^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~309~^1.07^32^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~323~^0.87^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16328~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16331~^~203~^9.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~204~^0.09^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~205~^22.41^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16331~^~207~^1.44^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~255~^66.93^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~303~^2.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~309~^0.86^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~203~^8.67^23^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~204~^0.50^23^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~205~^22.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16333~^~207~^1.09^23^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~255~^66.94^20^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~269~^0.32^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~303~^2.94^30^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~309~^1.07^32^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~323~^0.03^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~ -~16333~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16335~^~203~^8.12^4^0.08^~1~^~A~^^^1^7.87^8.25^3^7.83^8.40^~2, 3~^~04/01/2011~ -~16335~^~204~^0.93^4^0.11^~1~^~A~^^^1^0.60^1.11^3^0.56^1.31^~2, 3~^~04/01/2011~ -~16335~^~205~^20.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16335~^~207~^1.29^4^0.15^~1~^~A~^^^1^0.97^1.67^3^0.78^1.78^~2, 3~^~04/01/2011~ -~16335~^~255~^68.86^4^0.36^~1~^~A~^^^1^67.80^69.44^3^67.70^70.01^~2, 3~^~04/01/2011~ -~16335~^~303~^1.50^4^0.06^~1~^~A~^^^1^1.36^1.66^3^1.30^1.69^~2, 3~^~04/01/2011~ -~16335~^~309~^0.74^4^0.03^~1~^~A~^^^1^0.67^0.84^3^0.62^0.85^~2, 3~^~04/01/2011~ -~16335~^~323~^0.03^0^^~4~^~BFSN~^~16034~^^^^^^^^^~06/01/2015~ -~16335~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16336~^~203~^9.49^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~204~^0.17^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~205~^21.85^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16336~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~255~^66.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~303~^2.77^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~309~^0.90^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16337~^~203~^5.22^48^0.01^~6~^~JA~^^^3^5.12^5.94^3^5.17^5.26^~2, 3~^~01/01/2013~ -~16337~^~204~^0.36^47^9.0e-03^~6~^~JA~^^^3^0.31^0.90^3^0.32^0.38^~2, 3~^~01/01/2013~ -~16337~^~205~^14.83^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~207~^1.64^48^0.01^~6~^~JA~^^^3^1.12^1.77^3^1.60^1.68^~2, 3~^~01/01/2013~ -~16337~^~209~^8.90^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~210~^1.85^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~255~^77.96^48^0.04^~6~^~JA~^^^3^76.86^79.15^3^77.82^78.09^~2, 3~^~01/01/2013~ -~16337~^~269~^1.85^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~303~^1.25^49^2.0e-03^~6~^~JA~^^^3^1.10^1.54^3^1.24^1.25^~2, 3~^~01/01/2013~ -~16337~^~309~^0.62^6^0.02^~6~^~JA~^^^3^0.38^0.75^3^0.55^0.68^~2, 3~^~01/01/2013~ -~16337~^~323~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~342~^0.69^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~418~^0.00^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16337~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16337~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16338~^~203~^8.23^3^0.30^~11~^~JO~^^^2^7.90^8.80^1^4.41^12.04^~2, 3~^~04/01/2004~ -~16338~^~204~^0.62^9^0.00^~11~^~JO~^^^2^0.60^0.76^^^^~2, 3~^~04/01/2004~ -~16338~^~205~^26.05^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~207~^1.30^9^0.02^~11~^~JO~^^^2^1.11^1.40^7^1.24^1.35^~2, 3~^~04/01/2004~ -~16338~^~209~^15.40^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~210~^0.37^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~255~^63.81^9^0.39^~11~^~JO~^^^2^61.70^67.85^7^62.86^64.74^~2, 3~^~04/01/2004~ -~16338~^~269~^0.37^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~303~^2.36^45^0.06^~11~^~JO~^^^5^1.20^3.40^5^2.20^2.51^~2, 3~^~04/01/2004~ -~16338~^~309~^1.03^45^0.02^~11~^~JO~^^^5^0.68^1.37^36^0.97^1.07^~2, 3~^~04/01/2004~ -~16338~^~323~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~342~^1.28^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~343~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~16338~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16338~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16338~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16338~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~16341~^~203~^9.06^9^0.17^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~204~^0.49^9^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~205~^27.91^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~16341~^~207~^1.34^9^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~255~^61.20^8^0.53^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~269~^0.36^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~303~^2.30^9^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~309~^0.96^15^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~323~^0.98^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16341~^~418~^0.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16343~^~203~^9.01^6^0.26^~11~^~JO~^^^2^8.40^9.81^4^8.28^9.74^~2, 3~^~04/01/2004~ -~16343~^~204~^0.65^12^0.02^~11~^~JO~^^^2^0.50^0.97^6^0.59^0.70^~2, 3~^~04/01/2004~ -~16343~^~205~^26.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~16343~^~207~^1.17^12^0.03^~11~^~JO~^^^2^0.76^1.50^10^1.10^1.24^~2, 3~^~04/01/2004~ -~16343~^~209~^15.15^4^0.85^~1~^~A~^^^1^13.20^17.20^3^12.43^17.86^~2, 3~^~04/01/2004~ -~16343~^~210~^0.34^4^0.03^~1~^~A~^^^1^0.25^0.40^3^0.23^0.45^~2, 3~^~04/01/2004~ -~16343~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16343~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16343~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16343~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~16343~^~255~^62.95^13^0.47^~11~^~JO~^^^3^59.50^66.90^6^61.77^64.11^~2, 3~^~04/01/2004~ -~16343~^~269~^0.34^0^^~4~^~BFZN~^~16043~^^^^^^^^^~06/01/2005~ -~16343~^~303~^2.09^66^0.04^~11~^~JO~^^^12^1.52^3.91^44^1.99^2.17^~2, 3~^~04/01/2004~ -~16343~^~309~^0.98^66^0.01^~11~^~JO~^^^12^0.71^1.50^44^0.95^1.01^~2, 3~^~04/01/2004~ -~16343~^~323~^0.94^0^^~4~^~BFZN~^~16043~^^^^^^^^^~06/01/2005~ -~16343~^~418~^0.00^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16345~^~203~^7.04^4^0.11^~1~^~A~^^^1^6.74^7.27^3^6.68^7.39^~2, 3~^~04/01/2011~ -~16345~^~204~^0.97^4^0.04^~1~^~A~^^^1^0.90^1.10^3^0.82^1.12^~2, 3~^~04/01/2011~ -~16345~^~205~^20.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~16345~^~207~^1.22^4^0.03^~1~^~A~^^^1^1.15^1.31^3^1.10^1.33^~2, 3~^~04/01/2011~ -~16345~^~255~^70.00^4^0.57^~1~^~A~^^^1^68.90^71.60^3^68.18^71.81^~2, 3~^~04/01/2011~ -~16345~^~303~^1.27^4^0.05^~1~^~A~^^^1^1.12^1.40^3^1.08^1.46^~2, 3~^~04/01/2011~ -~16345~^~309~^0.59^4^0.04^~1~^~A~^^^1^0.49^0.68^3^0.44^0.73^~2, 3~^~04/01/2011~ -~16345~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~16346~^~203~^8.97^9^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~204~^0.64^9^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~205~^25.81^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16346~^~207~^1.34^9^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~255~^63.24^8^0.34^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~303~^2.84^9^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~309~^1.09^9^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16347~^~203~^4.60^27^0.09^~11~^~JO~^^^4^3.27^5.38^19^4.40^4.80^~2, 3~^~01/01/2013~ -~16347~^~204~^0.56^27^0.03^~6~^~JA~^^^4^0.11^1.03^10^0.48^0.62^~2, 3~^~01/01/2013~ -~16347~^~205~^15.18^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~207~^1.48^27^0.04^~6~^~JA~^^^4^0.68^1.89^19^1.38^1.57^~2, 3~^~01/01/2013~ -~16347~^~255~^78.19^27^0.31^~6~^~JA~^^^4^74.54^81.35^21^77.54^78.83^~2, 3~^~01/01/2013~ -~16347~^~269~^1.02^23^0.11^~1~^^^^3^0.20^2.29^20^0.77^1.26^~2, 3~^~01/01/2013~ -~16347~^~303~^1.47^27^0.05^~6~^~JA~^^^4^1.05^2.40^18^1.34^1.58^~2, 3~^~01/01/2013~ -~16347~^~309~^0.56^4^0.03^~1~^~A~^^^1^0.47^0.62^3^0.46^0.66^~2, 3~^~01/01/2013~ -~16347~^~323~^0.55^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16347~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16348~^~203~^9.16^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~204~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~205~^25.28^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~16348~^~207~^1.50^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~255~^62.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~269~^0.34^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~303~^2.48^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~309~^1.06^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~323~^0.94^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16348~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~16350~^~203~^9.73^0^^~1~^^^^^^^^^^^~05/01/2005~ -~16350~^~204~^0.35^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~205~^25.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16350~^~207~^1.75^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~255~^63.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~269~^0.34^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~303~^3.70^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~309~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~323~^0.94^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~ -~16350~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~203~^7.60^8^0.27^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~204~^0.40^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~205~^19.65^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16353~^~207~^0.81^8^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~255~^71.54^8^1.01^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~269~^1.82^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16353~^~303~^1.50^8^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~309~^1.01^8^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~323~^0.02^0^^~4~^~BFSN~^~16052~^^^^^^^^^~02/01/2003~ -~16353~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16353~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16357~^~203~^8.86^23^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~204~^2.59^24^0.09^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~205~^27.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16357~^~207~^0.92^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~255~^60.21^23^0.60^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~269~^4.80^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~303~^2.89^21^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~309~^1.53^27^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~323~^0.35^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~ -~16357~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16357~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16358~^~203~^7.05^4^0.30^~1~^~A~^^^1^6.48^7.85^3^6.07^8.03^~2, 3~^~05/01/2011~ -~16358~^~204~^2.77^4^0.14^~1~^~A~^^^1^2.60^3.20^3^2.31^3.23^~2, 3~^~05/01/2011~ -~16358~^~205~^22.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~207~^0.91^4^0.09^~1~^~A~^^^1^0.70^1.13^3^0.62^1.20^~2, 3~^~05/01/2011~ -~16358~^~255~^66.72^4^0.51^~1~^~A~^^^1^65.90^68.10^3^65.10^68.35^~2, 3~^~05/01/2011~ -~16358~^~269~^4.01^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16358~^~303~^1.07^4^0.03^~1~^~A~^^^1^1.03^1.17^3^0.96^1.17^~2, 3~^~05/01/2011~ -~16358~^~309~^0.63^4^0.06^~1~^~A~^^^1^0.51^0.81^3^0.42^0.84^~2, 3~^~05/01/2011~ -~16358~^~323~^0.29^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16358~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16359~^~203~^7.04^4^0.24^~1~^~A~^^^1^6.42^7.51^3^6.26^7.81^~2, 3~^~05/01/2011~ -~16359~^~204~^2.47^4^0.14^~1~^~A~^^^1^2.10^2.70^3^2.01^2.93^~2, 3~^~05/01/2011~ -~16359~^~205~^22.87^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~207~^0.74^4^0.04^~1~^~A~^^^1^0.66^0.86^3^0.60^0.87^~2, 3~^~05/01/2011~ -~16359~^~255~^66.87^4^0.53^~1~^~A~^^^1^66.00^68.30^3^65.16^68.58^~2, 3~^~05/01/2011~ -~16359~^~269~^4.00^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~303~^0.98^4^0.04^~1~^~A~^^^1^0.88^1.11^3^0.82^1.13^~2, 3~^~05/01/2011~ -~16359~^~309~^0.59^4^0.07^~1~^~A~^^^1^0.45^0.79^3^0.35^0.82^~2, 3~^~05/01/2011~ -~16359~^~323~^0.29^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~16360~^~203~^4.92^4^0.05^~1~^~A~^^^1^4.79^5.00^3^4.75^5.08^~2, 3~^~01/01/2013~ -~16360~^~204~^1.95^4^0.15^~1~^~A~^^^1^1.70^2.30^3^1.47^2.42^~2, 3~^~01/01/2013~ -~16360~^~205~^13.49^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16360~^~207~^1.09^4^0.11^~1~^~A~^^^1^0.87^1.39^3^0.73^1.43^~2, 3~^~01/01/2013~ -~16360~^~255~^78.55^4^0.31^~1~^~A~^^^1^77.90^79.40^3^77.53^79.56^~2, 3~^~01/01/2013~ -~16360~^~269~^2.59^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~303~^1.23^4^0.01^~1~^~A~^^^1^1.22^1.28^3^1.18^1.28^~2, 3~^~01/01/2013~ -~16360~^~309~^0.69^4^0.03^~1~^~A~^^^1^0.62^0.77^3^0.59^0.78^~2, 3~^~01/01/2013~ -~16360~^~323~^0.19^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16360~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~16361~^~203~^8.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~204~^0.71^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~205~^20.32^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16361~^~207~^1.16^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~255~^69.70^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~303~^3.05^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~309~^1.87^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~203~^7.73^24^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~204~^0.53^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~205~^20.76^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16363~^~207~^0.94^24^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~255~^70.04^23^0.60^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~269~^3.30^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~303~^2.51^29^0.10^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~309~^1.29^35^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~323~^0.28^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~ -~16363~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16363~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16368~^~203~^8.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~204~^0.58^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~205~^20.70^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16368~^~207~^1.46^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~255~^69.13^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~303~^4.58^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~309~^2.85^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~203~^9.02^23^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~204~^0.38^22^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~205~^19.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16370~^~207~^1.42^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~16370~^~255~^69.64^23^0.75^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~269~^1.80^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~303~^3.33^20^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~309~^1.27^21^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~323~^0.11^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~ -~16370~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16370~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16372~^~203~^7.80^22^0.16^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~204~^0.38^22^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~205~^20.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16372~^~207~^1.15^22^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~255~^69.79^20^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~269~^2.90^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~303~^2.39^30^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~309~^0.95^36^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~323~^0.18^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~ -~16372~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16372~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16375~^~203~^8.04^21^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~204~^0.38^21^0.01^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~205~^23.31^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16375~^~207~^1.12^21^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~255~^67.15^20^0.71^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~303~^2.40^21^0.08^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~309~^1.03^21^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~203~^15.57^3^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~204~^2.92^3^0.19^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~205~^9.29^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~16377~^~207~^1.14^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~16377~^~255~^71.08^3^0.58^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~303~^1.20^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~309~^1.38^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~203~^7.81^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~204~^0.55^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~205~^20.96^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16379~^~207~^1.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~255~^69.23^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~303~^3.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~309~^0.59^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~203~^7.02^9^0.14^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~204~^0.38^9^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~205~^19.15^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16381~^~207~^0.79^9^7.0e-03^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~255~^72.66^9^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~269~^2.00^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~303~^1.40^9^0.26^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~309~^0.84^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~323~^0.15^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~ -~16381~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16381~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16384~^~203~^7.54^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~204~^0.55^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~205~^18.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~16384~^~207~^1.06^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~255~^72.51^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~269~^2.01^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~303~^1.75^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~309~^0.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~323~^0.15^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~ -~16384~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16384~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16386~^~203~^8.34^20^0.27^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~204~^0.39^20^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~205~^20.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16386~^~207~^1.27^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~16386~^~255~^69.49^25^1.52^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~269~^2.90^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~303~^1.29^20^0.07^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~309~^1.00^20^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~323~^0.03^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~ -~16386~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16386~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16389~^~203~^28.03^4^0.45^~1~^~A~^^^1^26.72^28.82^3^26.58^29.48^~2, 3~^~10/01/2011~ -~16389~^~204~^52.50^4^0.60^~1~^~A~^^^1^51.10^53.97^3^50.59^54.41^~2, 3~^~10/01/2011~ -~16389~^~205~^15.26^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~207~^2.75^4^0.06^~1~^~A~^^^1^2.61^2.88^3^2.54^2.94^~2, 3~^~10/01/2011~ -~16389~^~210~^4.03^4^0.03^~1~^~A~^^^1^3.92^4.08^3^3.91^4.14^~2, 3~^~10/01/2011~ -~16389~^~211~^0.08^4^0.00^~1~^~A~^^^1^0.08^0.08^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~212~^0.08^4^0.00^~1~^~A~^^^1^0.08^0.08^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~255~^1.45^4^0.13^~1~^~A~^^^1^1.22^1.71^3^1.03^1.87^~2, 3~^~10/01/2011~ -~16389~^~269~^4.18^4^0.03^~1~^~A~^^^1^4.08^4.24^3^4.07^4.29^~2, 3~^~10/01/2011~ -~16389~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~303~^1.52^4^3.0e-03^~1~^~A~^^^1^1.51^1.52^3^1.50^1.52^~2, 3~^~10/01/2011~ -~16389~^~309~^3.28^4^0.07^~1~^~A~^^^1^3.09^3.44^3^3.04^3.52^~2, 3~^~10/01/2011~ -~16389~^~323~^6.91^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16389~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16389~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16389~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16390~^~203~^24.35^17^0.16^~1~^~A~^^^1^21.51^25.28^15^23.98^24.70^~2, 3~^~04/01/2014~ -~16390~^~204~^49.66^9^0.53^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~205~^21.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~207~^2.92^17^0.09^~1~^~A~^^^1^2.21^3.89^10^2.70^3.13^~2, 3~^~04/01/2014~ -~16390~^~209~^4.39^8^0.11^~1~^~A~^^^1^3.80^4.80^3^4.03^4.74^~2, 3~^~04/01/2014~ -~16390~^~210~^4.90^8^0.11^~1~^~A~^^^1^4.36^5.32^3^4.56^5.23^~2, 3~^~04/01/2014~ -~16390~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~255~^1.81^17^0.03^~1~^~A~^^^1^1.53^2.26^13^1.72^1.89^~2, 3~^~04/01/2014~ -~16390~^~269~^4.90^8^0.11^~1~^~A~^^^1^4.36^5.32^3^4.56^5.23^~2, 3~^~04/01/2014~ -~16390~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~303~^1.58^17^0.02^~1~^~A~^^^1^1.40^1.76^8^1.52^1.63^~2, 3~^~04/01/2014~ -~16390~^~309~^2.77^17^0.03^~1~^~A~^^^1^2.51^3.12^12^2.70^2.84^~2, 3~^~04/01/2014~ -~16390~^~323~^4.93^6^0.44^~1~^~A~^^^1^2.82^6.61^3^3.54^6.31^~2, 3~^~04/01/2014~ -~16390~^~341~^0.36^6^0.02^~1~^~A~^^^1^0.27^0.43^4^0.29^0.41^~2, 3~^~04/01/2014~ -~16390~^~342~^6.32^6^0.59^~1~^~A~^^^1^3.82^7.75^3^4.35^8.29^~2, 3~^~04/01/2014~ -~16390~^~343~^0.61^6^0.03^~1~^~A~^^^1^0.49^0.71^4^0.50^0.71^~2, 3~^~04/01/2014~ -~16390~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16390~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16390~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16392~^~203~^28.01^19^0.28^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~204~^49.04^19^0.33^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~205~^17.45^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16392~^~207~^3.72^3^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~255~^1.78^19^0.23^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~303~^2.28^3^0.22^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~309~^2.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~203~^27.04^6^1.70^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~204~^51.24^6^0.75^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16394~^~207~^3.29^6^0.37^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~255~^2.12^11^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~303~^1.65^5^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~309~^3.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~203~^25.87^15^0.33^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~204~^48.62^15^0.47^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~205~^19.86^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16396~^~207~^3.48^8^0.11^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~255~^2.17^15^0.06^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~303~^1.67^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~309~^6.62^8^0.02^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~203~^24.06^295^1.0e-03^~6~^~JA~^^^2^24.05^25.30^3^24.06^24.06^~2, 3~^~03/01/2004~ -~16397~^~204~^49.94^299^6.0e-03^~6~^~JA~^^^2^48.88^50.56^3^49.91^49.95^~2, 3~^~03/01/2004~ -~16397~^~205~^21.57^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16397~^~207~^3.29^210^1.0e-03^~6~^~JA~^^^2^2.83^3.30^3^3.29^3.29^~2, 3~^~03/01/2004~ -~16397~^~209~^4.93^4^0.16^~1~^~A~^^^1^4.47^5.20^3^4.41^5.45^~2, 3~^~03/01/2004~ -~16397~^~210~^4.19^4^2.41^~1~^~A~^^^1^0.00^8.47^3^-3.50^11.88^~1, 2, 3~^~03/01/2004~ -~16397~^~211~^4.22^4^2.36^~1~^~A~^^^1^0.00^8.72^3^-3.30^11.74^~1, 2, 3~^~03/01/2004~ -~16397~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~255~^1.14^227^3.0e-03^~6~^~JA~^^^2^1.00^1.70^5^1.13^1.14^~2, 3~^~03/01/2004~ -~16397~^~269~^8.41^4^0.20^~1~^~A~^^^1^7.89^8.75^3^7.76^9.05^~2, 3~^~03/01/2006~ -~16397~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~303~^1.90^263^3.0e-03^~6~^~JA~^^^2^1.56^2.65^3^1.89^1.91^~2, 3~^~03/01/2004~ -~16397~^~309~^2.79^196^6.0e-03^~6~^~JA~^^^2^2.78^4.08^3^2.77^2.80^~2, 3~^~03/01/2004~ -~16397~^~323~^6.30^4^1.40^~1~^~A~^^^1^3.74^8.76^3^1.84^10.75^~2, 3~^~03/01/2004~ -~16397~^~341~^0.22^4^0.02^~1~^~A~^^^1^0.18^0.28^3^0.14^0.30^~2, 3~^~03/01/2004~ -~16397~^~342~^7.98^4^0.58^~1~^~A~^^^1^6.89^9.25^3^6.13^9.83^~2, 3~^~03/01/2004~ -~16397~^~343~^0.73^4^0.07^~1~^~A~^^^1^0.61^0.93^3^0.49^0.96^~2, 3~^~03/01/2004~ -~16397~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16397~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16397~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16398~^~203~^22.21^18^0.10^~1~^~A~^^^1^20.97^23.59^12^21.98^22.43^~2, 3~^~08/01/2014~ -~16398~^~204~^51.36^18^0.14^~1~^~A~^^^1^49.67^52.66^10^51.03^51.68^~2, 3~^~08/01/2014~ -~16398~^~205~^22.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~207~^2.89^18^0.01^~1~^~A~^^^1^2.79^3.12^9^2.85^2.92^~2, 3~^~08/01/2014~ -~16398~^~209~^3.56^6^0.14^~1~^~A~^^^1^3.20^4.50^2^2.65^4.46^~2, 3~^~08/01/2014~ -~16398~^~210~^10.25^9^0.35^~1~^~A~^^^1^7.01^11.01^2^8.90^11.59^~2, 3~^~08/01/2014~ -~16398~^~211~^0.13^9^0.12^~1~^~A~^^^1^0.00^1.27^2^-0.41^0.66^~1, 2, 3~^~08/01/2014~ -~16398~^~212~^0.12^9^0.11^~1~^~A~^^^1^0.00^1.20^2^-0.39^0.62^~1, 2, 3~^~08/01/2014~ -~16398~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~255~^1.23^22^0.04^~6~^~JA~^^^4^0.17^2.40^6^1.10^1.34^~2, 3~^~08/01/2014~ -~16398~^~269~^10.49^9^0.15^~1~^~A~^^^1^9.48^11.01^4^10.06^10.92^~2, 3~^~08/01/2014~ -~16398~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2004~ -~16398~^~303~^1.74^18^0.02^~1~^~A~^^^1^1.54^2.08^11^1.68^1.80^~2, 3~^~08/01/2014~ -~16398~^~309~^2.51^18^0.01^~1~^~A~^^^1^2.37^2.69^14^2.48^2.54^~2, 3~^~08/01/2014~ -~16398~^~323~^9.10^6^0.30^~1~^~A~^^^1^8.44^9.59^1^6.74^11.44^~2, 3~^~08/01/2014~ -~16398~^~341~^0.52^6^0.01^~1~^~A~^^^1^0.47^0.56^1^0.37^0.66^~2, 3~^~08/01/2014~ -~16398~^~342~^7.62^6^0.05^~1~^~A~^^^1^7.19^7.91^1^7.20^8.03^~2, 3~^~08/01/2014~ -~16398~^~343~^0.74^6^0.04^~1~^~A~^^^1^0.48^0.97^2^0.55^0.92^~2, 3~^~08/01/2014~ -~16398~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~16398~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16398~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16399~^~203~^24.47^4^0.10^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~204~^54.17^4^0.68^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~205~^17.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~207~^3.37^4^0.01^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~209~^3.32^4^0.26^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~210~^3.11^4^0.08^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~211~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~212~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~213~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~214~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~255~^0.99^4^0.04^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~269~^3.11^4^0.08^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~287~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~303~^1.67^4^0.01^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~309~^3.08^4^0.06^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~323~^10.34^4^0.23^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~341~^0.28^4^0.02^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~342~^13.44^4^0.32^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~343~^0.96^4^0.05^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~344~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~345~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~346~^0.19^4^0.01^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~347~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16402~^~203~^6.76^8^0.24^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~204~^0.38^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~205~^23.25^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16402~^~207~^1.06^8^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~255~^68.55^8^0.41^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~303~^1.11^8^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~309~^0.90^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16403~^~203~^4.98^17^0.12^~1~^~A~^^^1^4.37^6.44^7^4.69^5.25^~2, 3~^~08/01/2014~ -~16403~^~204~^2.01^16^0.06^~1~^~A~^^^1^0.83^2.67^7^1.85^2.17^~2, 3~^~08/01/2014~ -~16403~^~205~^13.55^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~207~^1.71^17^0.03^~1~^~A~^^^1^1.36^2.08^8^1.62^1.79^~2, 3~^~08/01/2014~ -~16403~^~209~^7.43^9^0.09^~1~^~A~^^^1^6.80^9.00^5^7.17^7.68^~2, 3~^~08/01/2014~ -~16403~^~210~^0.54^4^4.0e-03^~1~^~A~^^^1^0.40^0.74^1^0.49^0.59^~2, 3~^~08/01/2014~ -~16403~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~255~^77.75^17^0.37^~1~^~A~^^^1^74.45^79.46^5^76.75^78.74^~2, 3~^~08/01/2014~ -~16403~^~269~^0.54^4^4.0e-03^~1~^~A~^^^1^0.40^0.74^1^0.49^0.59^~2, 3~^~08/01/2014~ -~16403~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~303~^1.44^17^0.03^~1~^~A~^^^1^1.22^1.90^9^1.36^1.50^~2, 3~^~08/01/2014~ -~16403~^~309~^0.58^17^0.01^~1~^~A~^^^1^0.46^0.91^10^0.54^0.61^~2, 3~^~08/01/2014~ -~16403~^~323~^0.09^5^8.0e-03^~1~^~A~^^^1^0.06^0.16^1^-0.01^0.18^~2, 3~^~08/01/2014~ -~16403~^~341~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~342~^0.81^5^0.07^~1~^~A~^^^1^0.64^1.17^2^0.38^1.23^~2, 3~^~08/01/2014~ -~16403~^~343~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~344~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~346~^0.08^5^0.01^~1~^~A~^^^1^0.00^0.38^1^-0.16^0.33^~1, 2, 3~^~08/01/2014~ -~16403~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~16403~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16403~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~16409~^~203~^18.21^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16409~^~204~^8.97^69^0.12^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~205~^8.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16409~^~207~^1.91^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~255~^62.55^69^0.20^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~269~^2.36^0^^~4~^~O~^~16109~^^^^^^^^^~07/01/2015~ -~16409~^~303~^5.14^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~309~^1.15^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~323~^0.35^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~ -~16409~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16409~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16410~^~203~^38.55^3^^~1~^^^^^^^^^^^~07/01/2015~ -~16410~^~204~^25.40^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~205~^30.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16410~^~207~^3.88^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~255~^1.95^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~303~^3.90^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~309~^3.14^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~203~^63.63^360^2.35^~1~^^^^^^^^^^^~07/01/2015~ -~16420~^~204~^0.46^5^0.18^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~205~^25.41^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16420~^~207~^4.70^3^0.55^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~255~^5.80^7^0.52^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~269~^20.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~16420~^~303~^10.78^5^0.46^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~309~^4.40^5^0.81^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~203~^88.32^233^0.11^~1~^^^^^^^^^^^~07/01/2015~ -~16422~^~204~^0.53^14^0.04^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~205~^2.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16422~^~207~^3.58^166^0.05^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~255~^4.98^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~269~^0.00^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~303~^14.50^125^0.32^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~309~^4.03^132^0.15^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~323~^0.00^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16424~^~203~^9.05^6^0.15^~1~^~A~^^^1^8.56^9.44^5^8.65^9.45^~2, 3~^~04/01/2013~ -~16424~^~204~^0.30^6^0.02^~1~^~A~^^^1^0.20^0.36^5^0.22^0.36^~2, 3~^~04/01/2013~ -~16424~^~205~^5.59^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~207~^9.92^6^0.01^~1~^~A~^^^1^9.86^9.96^5^9.88^9.95^~2, 3~^~04/01/2013~ -~16424~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~16424~^~211~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~04/01/2013~ -~16424~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~16424~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~16424~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~16424~^~255~^75.14^6^0.06^~1~^~A~^^^1^74.96^75.33^5^74.98^75.30^~2, 3~^~04/01/2013~ -~16424~^~269~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~16424~^~287~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~04/01/2013~ -~16424~^~303~^1.35^6^0.01^~1~^~A~^^^1^1.32^1.41^5^1.31^1.38^~2, 3~^~04/01/2013~ -~16424~^~309~^0.79^6^1.0e-03^~1~^~A~^^^1^0.79^0.80^5^0.78^0.79^~2, 3~^~04/01/2013~ -~16424~^~323~^0.41^2^^~1~^~A~^^^1^0.00^0.83^1^^^~1~^~04/01/2013~ -~16424~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~04/01/2013~ -~16424~^~342~^0.05^2^^~1~^~A~^^^1^0.03^0.07^1^^^^~04/01/2013~ -~16424~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~04/01/2013~ -~16424~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16424~^~345~^0.16^2^^~1~^~A~^^^1^0.06^0.25^1^^^^~04/01/2013~ -~16424~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16424~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16424~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/1986~ -~16424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~16425~^~203~^8.19^4^^~1~^~A~^^^1^8.06^8.50^^^^~2~^~04/01/2013~ -~16425~^~204~^0.31^4^^~1~^~A~^^^1^0.27^0.34^^^^~2~^~04/01/2013~ -~16425~^~205~^14.44^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~207~^13.74^4^^~1~^~A~^^^1^13.63^13.99^^^^~2~^~04/01/2013~ -~16425~^~210~^0.08^4^^~1~^~A~^^^1^0.07^0.10^^^^~1, 2~^~04/01/2013~ -~16425~^~211~^3.02^4^^~1~^~A~^^^1^2.80^3.30^^^^~2~^~04/01/2013~ -~16425~^~212~^0.10^4^^~1~^~A~^^^1^0.10^0.10^^^^~2~^~04/01/2013~ -~16425~^~213~^0.00^4^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2013~ -~16425~^~214~^2.42^4^^~1~^~A~^^^1^2.20^2.60^^^^~2~^~04/01/2013~ -~16425~^~255~^63.33^4^^~1~^~A~^^^1^62.98^63.61^^^^~2~^~04/01/2013~ -~16425~^~269~^5.63^4^^~1~^~A~^^^1^5.17^6.07^^^^~2~^~04/01/2013~ -~16425~^~287~^0.00^4^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2013~ -~16425~^~303~^0.43^4^^~1~^~A~^^^1^0.40^0.49^^^^~2~^~04/01/2013~ -~16425~^~309~^0.25^4^^~1~^~A~^^^1^0.24^0.27^^^^~2~^~04/01/2013~ -~16425~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~16425~^~418~^0.00^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16425~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~16426~^~203~^17.27^6^0.49^~1~^^^^^^^^^^^~07/01/2015~ -~16426~^~204~^8.72^6^0.59^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~205~^2.78^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16426~^~207~^1.40^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~255~^69.83^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~303~^2.66^0^^~4~^~BFSN~^~16159~^^^^^^^^^~03/01/2002~ -~16426~^~309~^1.57^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~203~^8.08^44^0.30^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~204~^4.78^8^0.73^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~205~^1.87^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16427~^~207~^0.72^8^0.03^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~255~^84.55^65^0.40^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~269~^0.62^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16427~^~303~^5.36^3^4.32^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~309~^0.80^3^0.04^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~323~^0.01^0^^~4~^~BFSN~^~16126~^^^^^^^^^~07/01/2015~ -~16427~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16428~^~203~^52.43^1^^~1~^^^^^^^^^^^~07/01/2015~ -~16428~^~204~^30.34^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~205~^8.30^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16428~^~207~^3.15^0^^~4~^~O~^^^^^^^^^^~06/01/2005~ -~16428~^~255~^5.78^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~303~^9.73^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~309~^4.90^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~203~^18.82^2^^~1~^^^^^^^^^^^~07/01/2015~ -~16429~^~204~^20.18^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~205~^8.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16429~^~207~^1.62^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~255~^50.52^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~303~^4.87^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~309~^1.99^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~203~^8.15^1^^~1~^^^^^^^^^^^~09/01/2015~ -~16432~^~204~^8.00^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~205~^5.15^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16432~^~207~^8.69^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~255~^70.01^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~303~^1.98^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~309~^1.56^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~203~^8.29^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~204~^0.45^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~205~^21.09^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16434~^~207~^1.37^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~255~^68.80^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~303~^2.64^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~309~^1.08^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~203~^10.62^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~204~^5.84^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~205~^14.94^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~ -~16436~^~207~^1.43^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~255~^67.19^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~303~^4.33^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~309~^1.44^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~418~^0.00^0^^~1~^^^^^^^^^^^~12/01/1986~ -~17000~^~203~^21.70^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~204~^4.63^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~207~^1.01^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~255~^71.26^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~303~^1.58^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17001~^~203~^16.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~204~^21.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17001~^~207~^0.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~255~^60.70^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~303~^1.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~309~^3.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~418~^2.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~203~^24.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~204~^20.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17002~^~207~^1.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~255~^53.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17002~^~303~^1.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~309~^4.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~323~^0.14^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17002~^~418~^2.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17003~^~203~^20.29^32^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~204~^5.25^45^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17003~^~207~^1.06^32^8.0e-03^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~255~^73.42^45^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~303~^1.77^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~309~^4.06^32^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~418~^2.62^16^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~203~^28.22^16^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~204~^9.52^16^0.35^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17004~^~207~^1.14^16^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~255~^61.96^16^0.43^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~303~^2.05^16^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~309~^5.27^16^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~323~^0.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~418~^2.61^16^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~203~^6.65^29^0.53^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~204~^70.61^30^1.48^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17005~^~207~^0.36^30^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~255~^22.54^29^1.04^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~303~^0.98^30^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~309~^1.13^30^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~418~^1.68^7^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~203~^12.16^13^1.48^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~204~^59.18^14^2.64^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17006~^~207~^0.68^14^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~255~^26.14^11^1.49^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17006~^~303~^1.29^14^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~309~^1.74^14^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~323~^0.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~418~^2.35^7^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17007~^~203~^18.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~204~^13.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17007~^~207~^0.95^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~255~^67.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~303~^1.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~309~^5.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~323~^0.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~418~^2.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~203~^28.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~204~^13.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17008~^~207~^0.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~255~^56.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17008~^~303~^2.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~309~^7.69^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~418~^2.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17009~^~203~^21.08^24^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~204~^3.29^24^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17009~^~207~^1.05^24^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~255~^74.86^23^0.34^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~303~^1.79^24^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~309~^5.95^24^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~323~^0.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~418~^2.45^8^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~203~^31.01^8^0.90^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~204~^6.02^8^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17010~^~207~^0.94^8^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~255~^61.79^8^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~303~^2.27^8^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~309~^8.66^8^0.30^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~418~^2.26^8^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~203~^17.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~204~^17.07^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17011~^~207~^0.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~255~^64.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~303~^1.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~309~^3.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~418~^2.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~203~^25.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~204~^16.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17012~^~207~^1.02^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~255~^57.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17012~^~303~^1.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~309~^4.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~323~^0.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~418~^2.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17013~^~203~^20.56^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~204~^4.51^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17013~^~207~^1.07^32^9.0e-03^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~255~^74.11^32^0.26^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~303~^1.82^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~309~^3.84^32^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~418~^2.70^16^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~203~^28.30^16^0.30^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~204~^7.74^16^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17014~^~207~^1.09^16^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~255~^63.89^16^0.46^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17014~^~303~^2.12^16^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~309~^4.94^16^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~418~^2.64^16^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17015~^~203~^18.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~204~^13.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17015~^~207~^0.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~255~^67.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~303~^1.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~309~^3.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~418~^2.51^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~203~^26.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~204~^12.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17016~^~207~^1.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~255~^60.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~303~^1.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~309~^4.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~418~^2.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~203~^20.52^32^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~204~^4.19^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17017~^~207~^1.08^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~255~^74.44^32^0.25^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~303~^1.82^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~309~^3.89^32^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~418~^2.64^16^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~203~^28.17^14^0.34^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~204~^6.67^16^0.24^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17018~^~207~^1.10^16^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~255~^64.92^16^0.44^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~303~^2.06^16^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~309~^5.02^16^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~418~^2.71^15^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~203~^16.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~204~^22.11^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17019~^~207~^0.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~255~^60.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~303~^1.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~309~^3.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~418~^2.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~203~^24.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~204~^20.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17020~^~207~^0.99^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~255~^54.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~303~^2.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~309~^4.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~323~^0.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~418~^2.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~203~^20.55^32^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~204~^5.08^32^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17021~^~207~^1.07^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~255~^73.57^32^0.47^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~303~^1.83^32^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~309~^3.77^32^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~323~^0.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~418~^2.76^16^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~203~^28.35^15^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~204~^9.17^16^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17022~^~207~^1.09^16^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~255~^62.49^16^0.62^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~303~^2.20^16^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~309~^4.85^16^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~323~^0.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~418~^2.58^16^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~203~^16.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~204~^26.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17023~^~207~^0.84^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~255~^56.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~303~^1.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~309~^2.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~418~^2.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~203~^25.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~204~^23.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17024~^~207~^1.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~255~^51.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17024~^~303~^1.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~309~^3.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~323~^0.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~418~^2.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17025~^~203~^22.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~204~^23.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17025~^~207~^1.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~255~^52.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17025~^~303~^2.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~309~^3.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~323~^0.11^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~418~^2.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17025~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17026~^~203~^20.88^31^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~204~^5.94^32^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17026~^~207~^1.06^32^9.0e-03^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~255~^72.55^32^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~303~^1.91^32^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~309~^3.19^32^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~323~^0.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~418~^2.21^16^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~203~^29.99^16^0.63^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~204~^9.73^15^0.45^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17027~^~207~^1.24^16^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~255~^60.98^16^0.38^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17027~^~303~^2.00^16^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~309~^4.13^16^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~418~^2.52^16^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17028~^~203~^26.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~204~^9.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17028~^~207~^1.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~255~^62.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~303~^2.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~309~^4.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~418~^2.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~203~^14.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~204~^34.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17029~^~207~^0.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~255~^50.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~303~^1.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~309~^2.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~418~^2.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~203~^22.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~204~^29.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17030~^~207~^1.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~255~^47.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17030~^~303~^1.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~309~^4.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~323~^0.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~418~^2.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17031~^~203~^21.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~204~^29.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17031~^~207~^0.93^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~255~^47.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~303~^1.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~309~^3.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~323~^0.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~418~^2.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~203~^19.98^31^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~204~^9.23^32^0.66^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17032~^~207~^1.01^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~255~^70.44^32^0.54^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~303~^1.67^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~309~^3.80^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~323~^0.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~418~^2.38^16^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~203~^27.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~204~^12.95^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17033~^~207~^1.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~255~^58.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17033~^~303~^2.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~309~^5.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~418~^2.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17034~^~203~^26.16^16^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~204~^13.31^15^0.64^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17034~^~207~^1.07^16^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~255~^60.13^16^0.73^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~303~^1.77^16^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~309~^4.47^16^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~323~^0.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~418~^2.16^15^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~203~^16.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~204~^21.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17035~^~207~^0.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~255~^61.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17035~^~303~^1.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~309~^3.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~418~^2.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17036~^~203~^28.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~204~^24.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17036~^~207~^1.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~255~^45.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~303~^2.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~309~^6.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~418~^2.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~203~^24.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~204~^19.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17037~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~255~^55.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~303~^2.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~309~^5.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~418~^2.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~203~^22.51^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~204~^19.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17038~^~207~^1.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~255~^56.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17038~^~303~^1.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~309~^5.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~323~^0.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~418~^2.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17039~^~203~^19.55^32^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~204~^6.76^32^0.25^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17039~^~207~^1.04^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~255~^72.99^32^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17039~^~303~^1.66^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~309~^4.77^32^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~418~^2.78^16^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17040~^~203~^32.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~204~^15.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17040~^~207~^1.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~255~^49.96^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~303~^2.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~309~^7.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~418~^2.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~203~^27.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~204~^10.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17041~^~207~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~255~^61.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17041~^~303~^2.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~309~^6.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~418~^3.11^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17042~^~203~^24.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~204~^10.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17042~^~207~^1.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~255~^63.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17042~^~303~^2.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~309~^6.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~418~^2.70^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17043~^~203~^16.79^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~204~^20.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17043~^~207~^0.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~255~^61.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~303~^1.56^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~309~^3.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~418~^2.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~203~^30.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~204~^24.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17044~^~207~^1.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~255~^44.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~303~^2.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~309~^6.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~323~^0.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~418~^2.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~203~^24.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~204~^19.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17045~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~255~^54.69^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~303~^2.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~309~^4.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~323~^0.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~418~^2.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~203~^22.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~204~^20.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17046~^~207~^1.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~255~^55.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~303~^2.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~309~^4.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~323~^0.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~418~^2.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~203~^19.99^32^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~204~^5.20^32^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17047~^~207~^1.07^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~255~^74.14^32^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~303~^1.74^32^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~309~^4.15^32^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~418~^2.67^16^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~203~^35.54^15^1.07^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~204~^14.08^16^0.68^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17048~^~207~^1.22^16^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~255~^49.32^16^1.24^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~303~^2.70^16^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~309~^7.30^16^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~418~^2.65^16^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~203~^27.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~204~^9.02^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17049~^~207~^1.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~255~^62.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~303~^2.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~309~^5.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~418~^3.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~203~^25.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~204~^9.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17050~^~207~^1.36^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~255~^64.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~303~^2.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~309~^5.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~323~^0.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~418~^2.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~203~^16.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~204~^20.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17051~^~207~^0.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~255~^61.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~303~^1.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~309~^4.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~418~^2.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~203~^28.51^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~204~^24.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17052~^~207~^1.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~255~^45.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~303~^2.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~309~^6.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~418~^2.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~203~^23.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~204~^19.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17053~^~207~^1.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~255~^55.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17053~^~303~^1.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~309~^5.62^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~323~^0.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~418~^2.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17054~^~203~^22.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~204~^20.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17054~^~207~^1.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~255~^55.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~303~^1.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~309~^5.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~323~^0.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~418~^2.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~203~^19.29^31^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~204~^7.63^32^0.36^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17055~^~207~^1.03^32^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~255~^72.36^32^0.35^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~303~^1.62^32^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~309~^5.11^32^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~418~^2.83^16^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~203~^32.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~204~^16.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17056~^~207~^1.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~255~^49.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~303~^2.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~309~^8.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~418~^2.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~203~^25.48^16^0.51^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~204~^11.32^15^0.55^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17057~^~207~^1.26^16^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~255~^62.46^16^0.61^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~303~^1.81^16^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~309~^6.48^16^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~323~^0.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~418~^2.81^16^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~203~^24.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~204~^11.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17058~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~255~^62.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~303~^2.07^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~309~^6.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~323~^0.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~418~^2.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~203~^20.21^32^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~204~^5.28^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17059~^~207~^1.06^32^9.0e-03^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~255~^73.74^32^0.24^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~303~^1.77^32^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~309~^4.15^32^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~418~^2.73^16^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~203~^33.69^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~204~^8.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17060~^~207~^1.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~255~^56.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17060~^~303~^2.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~309~^6.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~418~^2.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17061~^~203~^28.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~204~^7.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17061~^~207~^1.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~255~^63.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~303~^2.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~309~^5.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~418~^3.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~203~^16.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~204~^22.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17062~^~207~^0.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~255~^59.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~303~^1.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~309~^2.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~418~^2.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~203~^24.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~204~^22.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17063~^~207~^1.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~255~^51.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~303~^2.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~309~^3.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~323~^0.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~418~^2.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~203~^20.75^9^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~204~^4.41^9^0.43^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17064~^~207~^1.12^9^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~255~^73.78^9^0.63^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~303~^1.64^9^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~309~^3.01^9^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~323~^0.21^0^^~1~^^^^^^^^^^^~03/01/2001~ -~17064~^~418~^2.71^9^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~203~^29.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~204~^8.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17065~^~207~^1.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~255~^59.95^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~303~^2.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~309~^4.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~323~^0.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~418~^2.95^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~203~^6.92^9^0.41^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~204~^67.63^9^1.99^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17066~^~207~^0.42^9^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~255~^25.56^9^1.71^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~303~^1.14^9^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~309~^0.85^9^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~323~^0.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~418~^1.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~203~^9.72^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~204~^60.39^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17067~^~207~^0.71^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~255~^26.12^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~303~^1.39^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~309~^1.17^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~323~^0.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~418~^2.42^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17068~^~203~^20.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~204~^11.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~205~^0.09^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~255~^68.69^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~303~^1.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~309~^3.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~323~^0.27^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~418~^2.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~203~^30.35^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~204~^14.99^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~255~^55.58^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~303~^2.11^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~309~^6.45^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~323~^0.49^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~418~^1.28^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17070~^~203~^22.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~204~^3.77^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17070~^~207~^1.02^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~255~^74.49^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~303~^1.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~309~^4.28^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~418~^2.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~203~^33.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~204~^8.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17071~^~207~^0.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~255~^59.33^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~303~^2.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~309~^7.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~323~^0.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~418~^1.36^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17072~^~203~^18.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~204~^14.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~205~^0.13^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~255~^66.75^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~303~^1.49^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~309~^2.80^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~323~^0.26^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~418~^1.46^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17073~^~203~^24.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~204~^15.56^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17073~^~207~^1.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~255~^57.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~303~^2.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~309~^3.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~323~^0.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~418~^2.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17074~^~203~^21.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~204~^4.64^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17074~^~207~^1.08^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~255~^74.35^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~303~^1.64^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~309~^3.16^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~323~^0.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~418~^1.64^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17075~^~203~^27.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~204~^7.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17075~^~207~^1.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~255~^63.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~303~^2.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~309~^4.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~323~^0.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~418~^2.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17076~^~203~^15.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~204~^26.19^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~205~^0.22^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~207~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~255~^56.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~303~^1.24^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~309~^2.08^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~323~^0.47^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~418~^1.47^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17077~^~203~^23.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~204~^23.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17077~^~207~^1.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~255~^50.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17077~^~303~^2.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~309~^2.65^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~323~^0.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~418~^2.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17078~^~203~^19.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~204~^6.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17078~^~207~^1.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~255~^71.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~303~^1.52^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~309~^2.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~418~^1.90^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17079~^~203~^29.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~204~^8.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17079~^~207~^1.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~255~^60.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~303~^2.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~309~^3.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~323~^0.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~418~^2.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17080~^~203~^18.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~204~^18.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~205~^0.13^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~207~^0.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~255~^62.78^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~303~^1.30^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~309~^2.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~323~^0.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~418~^1.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17081~^~203~^22.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~204~^18.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~205~^0.04^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~255~^59.66^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~303~^1.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~309~^2.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~323~^0.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~418~^1.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17082~^~203~^20.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~204~^8.61^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17082~^~207~^0.94^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~255~^70.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~303~^1.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~309~^2.66^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~323~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~418~^1.25^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~203~^24.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~204~^10.63^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17083~^~207~^1.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~255~^64.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17083~^~303~^1.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~309~^2.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~323~^0.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~418~^1.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17084~^~203~^16.16^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~204~^22.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~205~^0.24^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~207~^0.80^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~255~^61.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~303~^1.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~309~^2.91^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~323~^0.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~418~^1.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17085~^~203~^28.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~204~^26.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17085~^~207~^1.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~255~^42.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~303~^2.11^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~309~^4.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~418~^3.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17086~^~203~^19.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~204~^8.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17086~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~255~^72.51^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~303~^1.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~309~^3.57^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~418~^2.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17087~^~203~^34.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~204~^15.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17087~^~207~^1.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~255~^47.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~303~^2.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~309~^5.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~418~^3.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~203~^19.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~204~^6.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17088~^~207~^1.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~255~^72.84^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~303~^0.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~309~^3.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~323~^0.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~418~^1.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~203~^30.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~204~^11.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17089~^~207~^1.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~255~^57.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17089~^~303~^1.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~309~^4.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~323~^0.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~418~^1.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17090~^~203~^20.20^12^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~204~^2.87^12^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17090~^~207~^1.08^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~255~^75.91^12^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~303~^0.85^12^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~309~^3.23^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~323~^0.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~418~^1.40^12^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~203~^31.90^12^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~204~^6.58^12^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17091~^~207~^1.23^12^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~255~^60.16^12^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17091~^~303~^1.16^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~309~^5.10^12^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~418~^1.65^12^0.24^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17092~^~203~^6.02^3^2.74^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~204~^67.83^5^2.48^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17092~^~207~^0.43^3^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~255~^24.77^3^2.20^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~303~^0.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~309~^0.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~323~^0.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~418~^0.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~203~^9.42^10^1.23^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~204~^66.74^10^2.99^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17093~^~207~^0.82^10^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~255~^21.65^10^1.70^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~303~^1.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~309~^0.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~323~^0.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~418~^0.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~203~^20.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~204~^3.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17094~^~207~^1.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~255~^74.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17094~^~303~^0.79^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~309~^2.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~323~^0.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~418~^1.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17095~^~203~^36.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~204~^6.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17095~^~207~^1.95^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~255~^55.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17095~^~303~^1.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~309~^3.96^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~323~^0.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~418~^1.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17096~^~203~^27.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~204~^9.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~205~^9.91^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17096~^~207~^2.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~209~^5.49^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17096~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2006~ -~17096~^~211~^0.17^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17096~^~212~^0.23^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17096~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2006~ -~17096~^~214~^0.18^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17096~^~255~^51.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~269~^0.57^0^^~4~^~PIK~^^^^^^^^^^~12/01/2005~ -~17096~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2006~ -~17096~^~303~^1.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~309~^2.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~323~^0.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~342~^0.07^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~346~^0.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~418~^1.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17097~^~203~^31.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~204~^8.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17097~^~207~^1.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~255~^58.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17097~^~303~^0.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~309~^3.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~418~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17098~^~203~^27.70^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~204~^4.65^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17098~^~207~^1.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~255~^66.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17098~^~303~^0.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~309~^3.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~323~^0.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~418~^1.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17099~^~203~^21.28^12^0.71^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~204~^1.76^12^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17099~^~207~^1.14^12^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~255~^75.82^12^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~303~^0.80^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~309~^2.34^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~323~^0.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~418~^1.05^12^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~203~^36.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~204~^5.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17100~^~207~^1.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~255~^56.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~303~^1.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~309~^4.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~323~^0.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~418~^1.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~203~^28.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~204~^6.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~205~^9.84^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17101~^~207~^2.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~209~^5.49^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17101~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~17101~^~211~^0.17^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17101~^~212~^0.23^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17101~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~17101~^~214~^0.18^0^^~1~^~PAK~^^^^^^^^^^~12/01/2005~ -~17101~^~255~^53.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~269~^0.57^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~17101~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~17101~^~303~^1.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~309~^2.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~323~^0.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~342~^0.07^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~343~^0.02^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~346~^0.10^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~418~^1.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17101~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17102~^~203~^33.17^12^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~204~^4.62^12^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17102~^~207~^1.44^12^9.0e-03^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~255~^60.68^12^0.37^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17102~^~303~^0.87^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~309~^3.38^12^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~418~^1.51^12^0.24^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17102~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17103~^~203~^28.07^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~204~^3.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17103~^~207~^1.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~255~^67.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~303~^0.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~309~^3.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~323~^0.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~418~^1.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17104~^~203~^20.07^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~204~^10.07^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~205~^0.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~255~^69.44^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~303~^0.84^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~309~^2.01^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~323~^0.30^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~342~^0.05^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~418~^2.46^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17105~^~203~^30.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~204~^17.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17105~^~207~^1.11^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~255~^52.02^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17105~^~303~^1.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~309~^3.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~323~^0.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~418~^1.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17106~^~203~^24.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~204~^12.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17106~^~207~^1.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~255~^60.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17106~^~303~^0.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~309~^3.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~323~^0.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~418~^1.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17107~^~203~^21.85^6^^~1~^~A~^^^1^21.23^23.09^^^^~2~^~04/01/2014~ -~17107~^~204~^2.90^6^^~1~^~A~^^^1^2.58^3.18^^^^~2~^~04/01/2014~ -~17107~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17107~^~207~^1.04^6^^~1~^~A~^^^1^1.00^1.07^^^^~2~^~04/01/2014~ -~17107~^~255~^74.79^6^^~1~^~A~^^^1^73.72^75.43^^^^~2~^~04/01/2014~ -~17107~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~303~^0.85^6^^~1~^~A~^^^1^0.70^1.09^^^^~2~^~04/01/2014~ -~17107~^~309~^2.15^6^^~1~^~A~^^^1^1.74^2.95^^^^~2~^~04/01/2014~ -~17107~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17107~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17107~^~418~^2.65^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17108~^~203~^33.57^12^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~204~^9.15^12^0.36^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17108~^~207~^1.15^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~255~^56.96^12^0.62^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17108~^~303~^1.10^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~309~^4.09^12^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~418~^1.32^11^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17109~^~203~^26.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~204~^6.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17109~^~207~^1.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~255~^64.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17109~^~303~^0.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~309~^3.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~323~^0.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~418~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17110~^~203~^18.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~204~^9.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17110~^~207~^0.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~255~^71.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~303~^0.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~309~^3.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~418~^1.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~203~^32.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~204~^12.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17111~^~207~^1.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~255~^53.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17111~^~303~^1.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~309~^5.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~323~^0.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~418~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17111~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17112~^~203~^23.96^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~204~^13.96^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17112~^~207~^1.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~255~^59.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~303~^0.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~309~^4.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~323~^0.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~418~^1.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~203~^19.97^12^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~204~^3.89^12^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17113~^~207~^1.02^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~255~^75.18^12^0.41^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~303~^0.88^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~309~^3.47^12^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~323~^0.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~418~^1.36^12^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~203~^34.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~204~^7.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17114~^~207~^1.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~255~^56.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17114~^~303~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~309~^5.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~323~^0.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~418~^1.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17115~^~203~^25.76^12^0.48^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~204~^7.44^12^0.35^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17115~^~207~^1.08^12^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~255~^64.64^12^0.42^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~303~^0.96^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~309~^4.49^12^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~323~^0.36^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~418~^1.58^12^0.21^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~203~^19.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~204~^5.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17116~^~207~^1.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~255~^74.78^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17116~^~303~^0.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~309~^3.93^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~323~^0.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~418~^1.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17117~^~203~^32.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~204~^10.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17117~^~207~^1.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~255~^56.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17117~^~303~^1.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~309~^6.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~418~^1.84^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17118~^~203~^25.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~204~^8.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17118~^~207~^1.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~255~^65.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~303~^1.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~309~^5.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~323~^0.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~418~^1.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~203~^19.79^18^0.21^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~204~^3.00^18^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17119~^~207~^1.07^18^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~255~^76.58^18^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~303~^0.90^18^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~309~^4.06^18^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~323~^0.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~418~^1.68^18^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~203~^33.68^12^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~204~^6.10^12^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17120~^~207~^1.27^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~255~^58.88^12^0.30^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~303~^1.45^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~309~^7.00^12^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~323~^0.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~418~^1.94^12^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~203~^25.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~204~^6.62^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17121~^~207~^1.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~255~^66.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~303~^1.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~309~^5.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~323~^0.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~418~^1.86^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~203~^19.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~204~^5.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17122~^~207~^1.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~255~^74.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17122~^~303~^1.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~309~^3.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~323~^0.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~418~^1.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17123~^~203~^33.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~204~^10.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17123~^~207~^1.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~255~^55.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~303~^1.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~309~^5.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~323~^0.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~418~^1.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~203~^25.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~204~^8.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17124~^~207~^1.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~255~^64.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~303~^1.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~309~^4.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~323~^0.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~418~^1.53^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~203~^20.04^12^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~204~^2.16^12^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17125~^~207~^1.12^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~255~^76.64^12^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~303~^1.02^12^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~309~^3.34^12^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~323~^0.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~418~^1.42^12^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~203~^35.73^12^0.39^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~204~^5.33^12^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17126~^~207~^1.31^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~255~^58.20^12^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~303~^1.41^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~309~^6.24^12^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~323~^0.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~418~^1.82^11^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~203~^26.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~204~^5.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17127~^~207~^1.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~255~^66.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~303~^1.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~309~^4.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~323~^0.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~418~^1.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17128~^~203~^18.72^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~204~^7.61^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~255~^72.60^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~303~^1.22^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~309~^3.18^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~323~^0.30^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~342~^0.02^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~418~^2.73^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17129~^~203~^31.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~204~^10.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17129~^~207~^1.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~255~^56.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17129~^~303~^1.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~309~^7.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~323~^0.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~418~^1.93^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17130~^~203~^25.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~204~^8.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17130~^~207~^1.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~255~^65.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~303~^1.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~309~^5.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~323~^0.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~418~^2.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17131~^~203~^19.60^6^^~1~^~A~^^^1^19.02^20.49^^^^~2~^~04/01/2014~ -~17131~^~204~^2.88^6^^~1~^~A~^^^1^1.84^3.88^^^^~2~^~04/01/2014~ -~17131~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17131~^~207~^1.01^6^^~1~^~A~^^^1^0.95^1.06^^^^~2~^~04/01/2014~ -~17131~^~255~^76.29^6^^~1~^~A~^^^1^75.70^77.12^^^^~2~^~04/01/2014~ -~17131~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~303~^1.26^6^^~1~^~A~^^^1^0.86^1.85^^^^~2~^~04/01/2014~ -~17131~^~309~^3.38^6^^~1~^~A~^^^1^2.53^4.98^^^^~2~^~04/01/2014~ -~17131~^~323~^0.26^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17131~^~418~^2.88^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17132~^~203~^32.66^12^0.40^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~204~^6.48^12^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17132~^~207~^1.24^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~255~^59.24^12^0.39^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17132~^~303~^1.47^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~309~^7.39^12^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~323~^0.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~418~^2.01^12^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17133~^~203~^25.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~204~^6.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17133~^~207~^1.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~255~^66.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~303~^1.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~309~^5.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~323~^0.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~418~^2.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~203~^19.07^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~204~^7.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17134~^~207~^1.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~255~^71.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17134~^~303~^0.78^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~309~^2.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~323~^0.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~418~^1.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17135~^~203~^31.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~204~^13.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17135~^~207~^1.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~255~^54.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~303~^1.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~309~^4.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~323~^0.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~418~^1.48^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~203~^25.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~204~^10.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17136~^~207~^1.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~255~^62.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17136~^~303~^0.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~309~^3.35^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~323~^0.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~418~^1.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17137~^~203~^20.20^12^0.66^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~204~^2.59^12^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17137~^~207~^1.09^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~255~^75.94^12^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~303~^0.80^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~309~^2.73^12^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~323~^0.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~418~^1.34^12^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~203~^33.96^11^0.44^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~204~^6.51^11^0.38^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17138~^~207~^1.20^11^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~255~^58.55^11^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~303~^1.23^11^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~309~^4.75^11^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~323~^0.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~418~^1.59^11^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~203~^26.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~204~^6.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17139~^~207~^1.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~255~^65.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~303~^0.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~309~^3.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~323~^0.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~418~^1.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~203~^20.27^12^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~204~^2.50^12^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17140~^~207~^1.10^12^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~255~^76.39^12^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~303~^0.88^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~309~^3.48^12^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~323~^0.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~418~^1.49^12^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~203~^34.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~204~^4.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17141~^~207~^1.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~255~^59.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~303~^1.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~309~^6.01^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~323~^0.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~418~^1.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17142~^~203~^18.58^6^^~1~^~A~^^^1^16.95^20.92^^^^~2~^~04/01/2014~ -~17142~^~204~^13.06^6^^~1~^~A~^^^1^8.39^15.69^^^^~2~^~04/01/2014~ -~17142~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17142~^~207~^0.93^6^^~1~^~A~^^^1^0.78^1.09^^^^~2~^~04/01/2014~ -~17142~^~255~^66.16^6^^~1~^~A~^^^1^63.79^70.00^^^^~2~^~04/01/2014~ -~17142~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~303~^1.37^6^^~1~^~A~^^^1^1.02^1.65^^^^~2~^~04/01/2014~ -~17142~^~309~^2.51^6^^~1~^~A~^^^1^1.67^3.21^^^^~2~^~04/01/2014~ -~17142~^~323~^0.49^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17142~^~342~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~343~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~418~^2.28^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17143~^~203~^24.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~204~^7.56^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17143~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~255~^66.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~17143~^~303~^0.99^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~309~^3.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~ -~17143~^~418~^1.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17144~^~203~^22.38^24^0.13^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~204~^2.03^54^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17144~^~207~^1.10^22^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~255~^74.08^54^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~303~^3.19^22^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~309~^1.28^22^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~203~^29.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~204~^2.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17145~^~207~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~255~^65.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~303~^4.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~309~^1.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~203~^20.10^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~204~^8.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17146~^~207~^0.70^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~255~^71.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~303~^6.65^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~203~^32.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~204~^13.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17147~^~207~^1.13^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~255~^53.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17147~^~303~^10.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~309~^10.27^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17147~^~418~^2.47^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17148~^~203~^25.45^9^0.49^~1~^~A~^^^1^22.86^27.09^8^24.30^26.60^~4~^~03/01/2008~ -~17148~^~204~^8.62^9^1.03^~1~^~A~^^^1^5.13^14.96^8^6.23^11.01^~4~^~03/01/2008~ -~17148~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17148~^~207~^1.02^9^0.02^~1~^~A~^^^1^0.89^1.15^8^0.96^1.08^~4~^~03/01/2008~ -~17148~^~255~^65.09^9^0.69^~1~^~A~^^^1^62.09^68.43^8^63.48^66.69^~4~^~03/01/2008~ -~17148~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~303~^3.19^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~309~^5.34^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~323~^0.20^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~418~^2.44^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~203~^20.23^9^0.29^~1~^~A~^^^1^19.10^21.81^8^19.54^20.92^~4~^~03/01/2008~ -~17149~^~204~^7.21^9^0.92^~1~^~A~^^^1^4.25^11.77^8^5.08^9.33^~4~^~03/01/2008~ -~17149~^~205~^0.05^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~207~^0.91^9^0.01^~1~^~A~^^^1^0.86^1.00^8^0.87^0.95^~4~^~03/01/2008~ -~17149~^~255~^71.59^9^0.83^~1~^~A~^^^1^68.04^75.25^8^69.66^73.52^~4~^~03/01/2008~ -~17149~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~303~^2.78^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~309~^4.59^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~323~^0.19^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~418~^1.94^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17150~^~203~^24.05^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~204~^4.80^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17150~^~207~^1.00^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~255~^70.97^3^1.78^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~303~^6.90^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~203~^34.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~204~^6.96^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17151~^~207~^1.45^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~255~^57.92^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17151~^~303~^10.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~309~^2.27^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17151~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17151~^~418~^8.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17152~^~203~^23.30^6^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~204~^4.80^6^0.73^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17152~^~207~^0.92^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~255~^70.89^6^1.00^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~303~^2.32^5^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~309~^4.86^7^0.63^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~418~^2.42^3^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~203~^30.66^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~204~^6.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17153~^~207~^1.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~255~^61.70^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~303~^3.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~309~^6.40^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~418~^2.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17154~^~203~^9.91^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~204~^52.17^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~207~^0.50^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~255~^38.10^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~303~^0.93^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17155~^~203~^19.60^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~204~^13.10^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~205~^1.15^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~207~^0.92^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~255~^65.35^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~303~^1.46^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17156~^~203~^21.62^33^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~204~^1.84^33^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17156~^~207~^1.20^33^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~255~^74.57^33^0.25^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~303~^2.60^30^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~309~^2.80^30^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~203~^28.44^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~204~^2.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17157~^~207~^1.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~255~^66.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17157~^~303~^3.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~309~^3.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17157~^~418~^2.86^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17158~^~203~^21.51^3^2.64^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~204~^3.33^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17158~^~207~^0.97^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~255~^72.54^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~203~^28.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~204~^4.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17159~^~207~^1.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~255~^63.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17159~^~303~^1.12^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~309~^3.01^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17159~^~418~^0.70^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17160~^~203~^20.39^85^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~204~^1.37^85^0.12^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17160~^~207~^1.05^67^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~255~^76.30^80^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~303~^1.61^6^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~309~^1.93^130^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~418~^1.66^45^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~203~^26.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~204~^1.80^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17161~^~207~^1.39^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~255~^68.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~303~^2.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~309~^2.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~418~^1.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~203~^22.63^30^0.45^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~204~^3.36^41^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17162~^~207~^1.14^40^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~255~^71.45^45^0.50^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~303~^4.69^19^0.37^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~309~^4.00^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~418~^6.31^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~203~^29.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~204~^4.42^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17163~^~207~^1.50^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~255~^62.43^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17163~^~303~^6.17^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~309~^5.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17163~^~418~^6.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17164~^~203~^22.96^33^0.26^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~204~^2.42^50^0.21^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17164~^~207~^1.16^27^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~255~^73.57^44^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17164~^~303~^3.40^20^0.22^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~309~^2.09^14^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17164~^~418~^6.31^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17165~^~203~^30.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~204~^3.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17165~^~207~^1.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~255~^65.23^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~303~^4.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~309~^2.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~203~^22.95^22^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~204~^1.45^30^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17166~^~207~^1.00^22^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~255~^74.38^30^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~303~^2.76^23^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~309~^2.40^21^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~203~^30.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~204~^1.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17167~^~207~^1.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~255~^66.28^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~303~^3.63^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~309~^3.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~203~^20.60^97^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~204~^2.31^118^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17168~^~207~^1.11^91^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~255~^75.84^92^0.21^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~303~^2.83^52^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~309~^4.00^47^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~418~^1.13^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~203~^27.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~204~^3.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17169~^~207~^1.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~255~^68.21^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17169~^~303~^3.73^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~309~^5.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~323~^0.34^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17169~^~418~^1.19^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17170~^~203~^21.39^123^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~204~^4.60^119^0.39^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17170~^~207~^0.99^69^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~255~^72.63^139^0.34^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~303~^3.82^21^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~309~^2.90^16^0.47^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~418~^3.00^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~203~^28.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~204~^6.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17171~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~255~^63.98^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~303~^5.03^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~309~^3.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~418~^3.16^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~203~^22.24^35^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~204~^0.74^37^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17172~^~207~^1.13^36^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~255~^75.55^36^0.34^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~303~^3.21^29^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~309~^2.80^26^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~203~^29.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~204~^0.97^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17173~^~207~^1.49^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~255~^67.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17173~^~303~^4.22^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~309~^3.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~17173~^~418~^6.31^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17174~^~203~^20.76^5^0.50^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~204~^8.10^4^2.45^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17174~^~207~^1.18^5^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~255~^69.35^4^1.50^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~203~^30.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~204~^11.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17175~^~207~^1.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~255~^55.58^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~303~^7.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~309~^2.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~418~^8.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~203~^30.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~204~^10.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17176~^~207~^2.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~255~^58.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~303~^4.64^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~309~^2.28^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17176~^~418~^8.30^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17177~^~203~^20.05^60^0.26^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~204~^5.55^62^0.33^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17177~^~207~^0.72^34^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~255~^72.82^87^0.27^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~303~^1.57^3^0.29^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~309~^1.57^3^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~418~^7.16^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~203~^29.06^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~204~^8.05^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17178~^~207~^1.04^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~255~^60.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~303~^2.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~309~^2.27^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~418~^8.30^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~203~^30.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~204~^8.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17179~^~207~^1.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~255~^58.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17179~^~303~^2.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~309~^2.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17179~^~418~^6.51^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17180~^~203~^21.79^32^0.18^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~204~^2.32^30^0.39^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17180~^~207~^1.12^28^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~255~^74.51^31^0.41^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~303~^3.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~203~^33.02^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~204~^3.51^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17181~^~207~^1.70^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~255~^61.37^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17181~^~303~^4.85^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~309~^2.38^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17181~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17181~^~418~^6.51^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17181~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17181~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17182~^~203~^29.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~204~^14.50^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17182~^~207~^1.50^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~255~^54.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17182~^~303~^7.10^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~309~^2.27^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17182~^~418~^8.30^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17182~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17183~^~203~^21.23^17^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~204~^3.21^16^0.56^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17183~^~207~^1.16^16^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~255~^73.83^17^0.50^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~303~^4.70^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~203~^30.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~204~^4.69^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17184~^~207~^1.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~255~^62.07^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17184~^~303~^6.81^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~309~^1.78^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~17184~^~418~^6.51^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17185~^~203~^10.40^6^0.51^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~204~^8.58^5^0.50^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17185~^~207~^1.33^5^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~255~^79.20^5^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~303~^1.75^5^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~309~^1.17^4^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~418~^11.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~203~^12.55^6^0.19^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~204~^10.17^6^1.01^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17186~^~207~^1.36^5^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~255~^75.73^6^0.78^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~303~^1.68^3^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~309~^1.36^3^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~418~^9.25^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~203~^16.97^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~204~^22.19^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17187~^~207~^1.82^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~255~^60.71^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~303~^2.04^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~309~^2.00^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~418~^24.10^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~203~^10.32^9^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~204~^8.21^9^0.35^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17188~^~207~^1.36^9^0.01^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~255~^79.78^9^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~303~^2.13^5^0.60^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~309~^1.11^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~418~^12.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~203~^11.48^5^0.60^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~204~^9.63^5^1.48^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17189~^~207~^1.40^4^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~255~^76.89^5^2.01^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~303~^1.67^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~309~^1.61^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~418~^9.65^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~203~^14.48^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~204~^16.75^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17190~^~207~^1.88^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~255~^68.56^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~303~^1.07^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~309~^1.82^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~418~^21.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~203~^16.47^6^0.38^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~204~^5.68^12^0.43^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17191~^~207~^0.93^9^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~255~^76.71^19^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~303~^4.60^18^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~309~^1.87^18^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~418~^10.25^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~203~^24.97^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~204~^7.91^6^0.57^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~205~^1.93^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17192~^~207~^0.99^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~255~^64.20^6^0.76^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~303~^5.52^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~309~^3.68^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~418~^11.20^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~203~^17.18^6^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~204~^3.98^6^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~205~^0.08^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17193~^~207~^1.07^6^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~255~^77.69^7^0.60^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~303~^4.24^6^0.46^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~309~^1.47^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~418~^13.76^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~203~^29.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~204~^6.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~205~^0.13^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17194~^~207~^1.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~255~^62.18^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~303~^4.32^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~309~^2.24^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~418~^14.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~203~^15.74^12^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~204~^2.95^21^0.15^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~205~^0.82^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17195~^~207~^1.26^11^0.02^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~255~^79.23^35^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~303~^6.38^19^0.35^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~309~^2.24^23^0.10^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~418~^52.41^4^9.03^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~203~^23.65^5^0.80^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~204~^3.62^5^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~205~^0.99^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17196~^~207~^1.29^5^0.07^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~255~^70.45^5^0.67^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~303~^12.40^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~309~^3.80^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~418~^78.90^6^9.20^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~203~^15.76^5^0.44^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~204~^3.12^3^0.48^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~205~^0.85^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17197~^~207~^1.20^5^0.03^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~255~^79.07^4^0.85^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~303~^3.36^4^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~309~^1.97^3^0.31^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~418~^28.20^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~203~^26.32^4^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~204~^5.66^4^0.40^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17198~^~207~^1.45^4^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~255~^67.67^4^1.19^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~303~^3.04^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~309~^4.25^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~418~^36.90^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~203~^20.38^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~204~^5.02^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~205~^1.78^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17199~^~207~^1.44^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~255~^71.37^17^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~303~^7.37^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~309~^4.66^8^0.37^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~418~^90.05^19^5.46^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~203~^30.57^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~204~^8.81^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~205~^2.53^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17200~^~207~^1.42^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~255~^56.67^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~303~^8.28^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~309~^7.89^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~418~^76.50^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~203~^25.53^3^1.31^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~204~^12.65^3^1.20^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~205~^3.78^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17201~^~207~^1.83^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~255~^56.20^3^1.81^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~303~^10.20^3^0.47^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~309~^5.63^3^0.94^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~418~^85.70^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17202~^~203~^19.93^2^^~1~^~A~^^^1^18.26^21.59^1^^^^~02/01/2003~ -~17202~^~204~^4.85^2^^~1~^~A~^^^1^4.62^5.09^1^^^^~02/01/2003~ -~17202~^~205~^2.91^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~207~^1.42^2^^~1~^~A~^^^1^1.38^1.47^1^^^^~02/01/2003~ -~17202~^~255~^70.89^2^^~1~^~A~^^^1^70.35^71.44^1^^^^~02/01/2003~ -~17202~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~303~^6.40^2^^~1~^~A~^^^1^4.71^8.08^1^^^^~02/01/2003~ -~17202~^~309~^12.02^2^^~1~^~A~^^^1^3.93^20.10^1^^^^~02/01/2003~ -~17202~^~323~^0.37^4^^~1~^~A~^^^1^0.28^0.46^^^^~2, 3~^~02/01/2003~ -~17202~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~17202~^~342~^0.03^4^^~1~^~A~^^^1^0.02^0.04^^^^~2, 3~^~02/01/2003~ -~17202~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17202~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17202~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17202~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17202~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17202~^~418~^59.85^2^^~1~^~A~^^^1^52.60^67.10^1^^^^~02/01/2003~ -~17202~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17202~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17203~^~203~^28.42^2^^~1~^~A~^^^1^26.88^29.96^1^^^^~02/01/2003~ -~17203~^~204~^6.26^2^^~1~^~A~^^^1^5.79^6.73^1^^^^~02/01/2003~ -~17203~^~205~^3.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~207~^1.70^2^^~1~^~A~^^^1^1.70^1.70^^^^^~02/01/2003~ -~17203~^~255~^59.86^2^^~1~^~A~^^^1^58.75^60.97^1^^^^~02/01/2003~ -~17203~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~303~^5.11^2^^~1~^~A~^^^1^3.89^6.32^1^^^^~02/01/2003~ -~17203~^~309~^11.23^2^^~1~^~A~^^^1^4.56^17.90^1^^^^~02/01/2003~ -~17203~^~323~^0.68^4^^~1~^~A~^^^1^0.30^1.06^^^^~2, 3~^~02/01/2003~ -~17203~^~341~^0.01^4^^~1~^~A~^^^1^0.00^0.02^^^^~2, 3~^~02/01/2003~ -~17203~^~342~^0.04^4^^~1~^~A~^^^1^0.02^0.05^^^^~2, 3~^~02/01/2003~ -~17203~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17203~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17203~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17203~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17203~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~17203~^~418~^84.60^2^^~1~^~A~^^^1^67.20^102.00^1^^^^~02/01/2003~ -~17203~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17203~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17204~^~203~^27.37^2^^~1~^~A~^^^1^26.38^28.35^1^^^^~02/01/2003~ -~17204~^~204~^6.51^2^^~1~^~A~^^^1^5.37^7.65^1^^^^~02/01/2003~ -~17204~^~205~^4.47^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~207~^1.79^2^^~1~^~A~^^^1^1.77^1.81^1^^^^~02/01/2003~ -~17204~^~255~^59.87^2^^~1~^~A~^^^1^59.74^59.99^1^^^^~02/01/2003~ -~17204~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~303~^5.98^2^^~1~^~A~^^^1^5.91^6.05^1^^^^~02/01/2003~ -~17204~^~309~^11.90^2^^~1~^~A~^^^1^4.90^18.90^1^^^^~02/01/2003~ -~17204~^~323~^0.60^4^^~1~^~A~^^^2^0.59^0.61^^^^~2, 3~^~02/01/2003~ -~17204~^~341~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~342~^0.03^4^^~1~^~A~^^^2^0.02^0.04^^^^~2, 3~^~02/01/2003~ -~17204~^~343~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~344~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~345~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~346~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~347~^0.00^4^^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2003~ -~17204~^~418~^72.50^2^^~1~^~A~^^^1^66.60^78.40^1^^^^~02/01/2003~ -~17204~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17204~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~17205~^~203~^16.70^3^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~204~^2.60^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17205~^~207~^1.10^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~255~^79.70^3^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~303~^6.40^3^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~309~^1.80^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~418~^3.93^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~203~^19.88^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~204~^3.10^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17206~^~207~^1.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~255~^75.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~303~^4.57^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~309~^1.93^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~418~^2.52^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~203~^16.30^3^0.40^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~204~^2.30^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17207~^~207~^1.10^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~255~^80.50^4^0.44^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~303~^5.23^8^1.03^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~309~^1.16^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~418~^3.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~203~^18.74^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~204~^2.64^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17208~^~207~^1.26^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~255~^77.59^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~303~^3.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~309~^1.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~418~^2.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~203~^14.97^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~204~^23.54^6^4.61^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17209~^~207~^1.21^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~255~^58.68^5^4.61^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~303~^5.90^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~309~^3.72^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~418~^2.56^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~203~^14.84^4^0.21^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~204~^9.82^4^0.88^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17210~^~207~^1.40^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~255~^73.77^4^0.70^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~303~^2.30^4^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~309~^1.93^3^0.26^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~418~^6.00^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~203~^22.83^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~204~^15.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17211~^~207~^2.15^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~255~^59.65^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~303~^2.12^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~309~^2.68^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~418~^5.54^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~203~^15.00^3^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~204~^13.10^3^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17212~^~207~^1.30^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~255~^70.60^3^0.80^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~303~^2.10^3^0.28^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~309~^2.60^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~418~^13.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~203~^29.10^3^0.23^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~204~^14.60^3^2.02^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17213~^~207~^1.50^3^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~255~^55.70^3^2.07^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~303~^2.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~309~^5.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~418~^17.33^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~203~^17.20^3^0.40^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~204~^3.10^3^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17214~^~207~^1.30^3^0.00^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~255~^78.15^11^0.14^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~303~^41.89^11^6.99^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~309~^2.84^11^0.16^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~418~^5.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~203~^26.46^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~204~^4.77^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17215~^~207~^2.00^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~255~^66.38^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~303~^38.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~309~^3.94^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~418~^5.29^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~203~^18.30^3^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~204~^2.20^3^0.11^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17216~^~207~^1.30^3^0.05^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~255~^78.15^4^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~303~^9.32^8^0.62^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~309~^1.61^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~418~^5.34^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~203~^24.08^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~204~^2.89^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17217~^~207~^1.71^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~255~^71.25^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~303~^7.36^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~309~^1.91^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~418~^4.82^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17218~^~203~^17.21^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~204~^3.07^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17218~^~207~^2.16^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~255~^79.16^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~303~^1.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~309~^1.55^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~323~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~344~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17218~^~418~^3.33^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~203~^22.67^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~204~^3.11^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17219~^~207~^2.88^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~255~^73.63^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~303~^1.24^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~309~^2.13^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~323~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~344~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17219~^~418~^2.85^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17219~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17220~^~203~^15.70^10^0.63^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~204~^17.17^6^0.85^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17220~^~207~^0.92^9^0.06^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~255~^66.60^7^0.43^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~303~^2.65^10^0.20^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~309~^2.32^7^0.17^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~418~^7.20^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~203~^21.57^5^0.64^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~204~^20.28^5^0.32^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17221~^~207~^0.73^5^0.08^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~255~^57.86^5^0.55^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~303~^2.63^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~309~^2.99^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~418~^6.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~203~^17.18^4^0.78^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~204~^5.48^4^1.57^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~205~^1.91^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~ -~17222~^~207~^0.89^4^0.04^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~255~^74.53^4^0.46^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~303~^2.72^4^0.52^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~309~^2.63^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~418~^6.10^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~203~^25.85^4^0.40^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~204~^10.10^4^1.80^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17223~^~207~^0.91^4^0.09^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~255~^64.08^4^2.23^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~303~^2.09^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~309~^4.51^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~418~^5.30^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~203~^16.56^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~204~^23.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17224~^~207~^0.87^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~255~^59.47^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17224~^~303~^1.55^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~309~^3.41^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~323~^0.20^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~418~^2.31^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17224~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17225~^~203~^24.75^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~204~^19.65^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1989~ -~17225~^~207~^1.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~255~^55.09^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17225~^~303~^1.79^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~309~^4.67^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~323~^0.14^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~418~^2.61^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17225~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17226~^~203~^17.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~204~^18.66^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17226~^~207~^0.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~255~^63.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~303~^1.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~309~^3.52^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~418~^2.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~203~^25.51^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~204~^18.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17227~^~207~^1.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~255~^55.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~303~^1.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~309~^4.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~418~^2.57^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~203~^18.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~204~^13.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17228~^~207~^0.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~255~^67.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~303~^1.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~309~^5.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~418~^2.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~203~^28.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~204~^13.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17229~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~255~^56.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~303~^2.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~309~^7.69^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~418~^2.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~203~^18.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~204~^14.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17230~^~207~^0.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~255~^66.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~303~^1.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~309~^3.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~418~^2.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~203~^26.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~204~^14.42^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17231~^~207~^1.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~255~^58.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~303~^2.02^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~309~^4.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~418~^2.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~203~^18.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~204~^11.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17232~^~207~^1.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~255~^68.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~303~^1.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~309~^3.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~418~^2.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~203~^26.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~204~^11.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17233~^~207~^1.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~255~^61.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~303~^1.99^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~309~^4.72^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~418~^2.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~203~^17.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~204~^20.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17234~^~207~^0.90^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~255~^61.32^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~303~^1.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~309~^3.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~418~^2.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~203~^24.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~204~^19.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17235~^~207~^1.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~255~^54.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~303~^2.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~309~^4.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~418~^2.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~203~^17.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~204~^22.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17236~^~207~^0.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~255~^59.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~303~^1.66^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~309~^2.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~418~^2.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~203~^26.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~204~^20.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17237~^~207~^1.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~255~^53.31^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~303~^1.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~309~^3.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~418~^2.48^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~203~^23.27^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~204~^21.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17238~^~207~^1.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~255~^54.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~303~^2.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~309~^3.52^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~418~^2.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~203~^15.32^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~204~^30.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17239~^~207~^0.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~255~^53.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~303~^1.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~309~^2.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~418~^2.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~203~^23.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~204~^26.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17240~^~207~^1.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~255~^49.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~303~^1.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~309~^4.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~418~^2.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~203~^21.82^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~204~^27.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17241~^~207~^0.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~255~^49.59^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~303~^1.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~309~^3.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~418~^2.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~203~^17.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~204~^18.96^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17242~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~255~^63.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~303~^1.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~309~^4.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~418~^2.57^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~203~^29.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~204~^23.57^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17243~^~207~^1.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~255~^45.46^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~303~^2.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~309~^6.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~418~^2.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~203~^23.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~204~^18.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17244~^~207~^1.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~255~^56.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~303~^1.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~309~^5.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~418~^2.78^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~203~^22.70^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~204~^19.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17245~^~207~^1.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~255~^56.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~303~^1.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~309~^5.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~418~^2.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~203~^17.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~204~^18.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17246~^~207~^0.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~255~^63.30^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~303~^1.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~309~^3.52^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~418~^2.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~203~^31.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~204~^22.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17247~^~207~^1.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~255~^44.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~303~^2.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~309~^6.24^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~418~^2.59^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~203~^24.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~204~^18.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17248~^~207~^1.33^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~255~^55.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~303~^2.12^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~309~^5.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~418~^2.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~203~^22.93^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~204~^18.75^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17249~^~207~^1.23^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~255~^57.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~303~^2.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~309~^4.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~418~^2.56^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~203~^17.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~204~^18.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17250~^~207~^0.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~255~^63.39^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~303~^1.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~309~^4.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~418~^2.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~203~^28.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~204~^23.88^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17251~^~207~^1.55^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~255~^45.65^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~303~^2.38^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~309~^6.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~418~^2.84^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~203~^23.48^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~204~^18.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17252~^~207~^1.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~255~^57.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~303~^1.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~309~^5.77^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~418~^2.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~203~^22.62^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~204~^19.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17253~^~207~^1.21^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~255~^56.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~303~^1.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~309~^5.72^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~418~^2.68^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~203~^17.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~204~^17.20^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17254~^~207~^0.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~255~^64.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~303~^1.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~309~^2.58^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~418~^2.50^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~203~^25.26^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~204~^17.98^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17255~^~207~^1.40^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~255~^54.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~303~^2.08^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~309~^3.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~418~^2.71^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~203~^18.04^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~204~^16.15^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17256~^~207~^1.06^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~255~^66.02^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~303~^1.49^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~309~^3.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~418~^2.53^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~203~^26.97^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~204~^15.83^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17257~^~207~^1.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~255~^56.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~303~^2.07^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~309~^4.80^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~418~^2.44^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~203~^18.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~204~^13.37^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17258~^~207~^1.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~255~^67.05^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~303~^1.60^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~309~^2.72^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~418~^2.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~203~^25.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~204~^13.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17259~^~207~^1.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~255~^59.01^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~303~^2.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~309~^3.67^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~418~^2.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~203~^17.18^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~204~^22.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17260~^~207~^0.92^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~255~^59.95^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~303~^1.59^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~309~^1.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~418~^2.13^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~203~^24.41^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~204~^21.28^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17261~^~207~^1.34^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~255~^52.17^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~303~^2.10^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~309~^2.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~418~^2.54^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~203~^15.87^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~204~^27.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17262~^~207~^0.85^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~255~^56.61^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~303~^1.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~309~^2.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~418~^2.22^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~203~^19.86^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~204~^25.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17263~^~207~^1.11^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~255~^52.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~303~^1.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~309~^2.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~418~^2.32^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~203~^17.19^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~204~^19.74^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17264~^~207~^0.94^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~255~^62.00^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~303~^1.36^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~309~^2.91^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~418~^3.14^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~203~^29.43^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~204~^24.03^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~17265~^~207~^1.63^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~255~^43.73^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~303~^2.16^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~309~^4.76^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~418~^3.47^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17267~^~203~^21.40^100^0.08^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~204~^2.40^100^0.10^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17267~^~207~^1.20^100^0.01^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~255~^74.40^100^0.13^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~303~^3.00^96^0.03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~309~^3.40^96^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~323~^0.05^12^0.01^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~342~^0.01^12^4.0e-03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~418~^2.30^12^0.19^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~203~^22.10^100^0.08^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~204~^2.40^100^0.12^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17268~^~207~^1.20^100^0.01^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~255~^74.00^100^0.14^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~303~^2.80^96^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~309~^3.20^96^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~323~^0.04^12^8.0e-03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~342~^0.01^12^3.0e-03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~418~^2.20^12^0.16^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~203~^21.10^100^0.07^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~204~^2.10^100^0.10^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17269~^~207~^1.20^100^0.01^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~255~^75.40^100^0.11^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~303~^3.00^95^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~309~^5.00^95^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~323~^0.05^12^0.01^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~342~^0.01^12^3.0e-03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~418~^2.20^12^0.18^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17270~^~203~^9.40^6^0.69^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~204~^53.35^6^0.67^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17270~^~207~^0.45^6^0.03^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~255~^36.15^6^0.60^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~303~^0.45^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~309~^0.76^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~418~^0.55^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17271~^~203~^17.47^6^0.42^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~204~^14.75^6^1.64^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17271~^~207~^0.90^6^0.02^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~255~^67.67^6^1.26^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~303~^0.53^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~309~^2.33^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17272~^~203~^26.97^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~204~^16.77^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~17272~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~255~^55.95^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~303~^0.77^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~309~^3.64^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~418~^1.33^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~203~^25.93^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~204~^18.95^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~17273~^~207~^0.86^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~255~^54.77^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~303~^0.75^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~309~^3.47^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~418~^1.33^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~203~^28.23^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~204~^14.16^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~17274~^~207~^0.92^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~255~^57.36^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~303~^0.79^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~309~^3.85^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~418~^1.39^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17275~^~203~^30.32^6^0.28^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~204~^9.80^6^0.56^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17275~^~207~^0.97^6^0.03^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~255~^59.72^6^0.40^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~303~^0.83^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~309~^4.19^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~418~^1.48^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17276~^~203~^19.15^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~204~^3.48^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~17276~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~255~^76.92^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~303~^0.76^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~309~^3.99^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~418~^1.36^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~203~^31.54^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~204~^6.20^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/1997~ -~17277~^~207~^1.12^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~255~^61.74^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~303~^1.25^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~309~^6.63^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~418~^1.61^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17278~^~203~^19.28^6^0.24^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~204~^2.83^6^0.13^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17278~^~207~^1.05^6^0.02^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~255~^77.45^6^0.17^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~303~^0.76^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~309~^4.02^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~418~^1.37^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~203~^32.22^6^0.33^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~204~^4.33^6^0.11^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~ -~17279~^~207~^1.13^6^0.02^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~255~^62.98^6^0.33^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~303~^1.26^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~309~^6.81^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~418~^1.64^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17280~^~203~^17.84^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~204~^16.97^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17280~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~255~^64.93^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~303~^1.43^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~309~^3.67^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~418~^2.47^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~203~^24.52^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~204~^16.82^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17281~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~255~^58.71^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~303~^1.93^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~309~^4.68^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~418~^2.87^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~203~^20.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~204~^6.18^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17282~^~207~^0.99^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~255~^73.22^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~303~^1.59^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~309~^4.21^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~418~^2.77^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~203~^26.71^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~204~^9.63^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17283~^~207~^1.05^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~255~^63.75^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~303~^2.05^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~309~^5.14^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~418~^3.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17284~^~203~^6.27^6^0.41^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~204~^68.87^6^1.25^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~17284~^~207~^0.35^6^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~255~^25.08^6^1.20^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~303~^0.63^6^0.02^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~309~^1.06^6^0.07^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~418~^1.06^3^0.10^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~203~^9.42^6^0.25^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~204~^66.40^6^1.28^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17285~^~207~^0.45^6^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~255~^24.00^6^1.09^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~303~^1.11^6^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~309~^1.48^6^0.09^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~418~^1.84^3^0.01^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17286~^~203~^18.85^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~204~^12.68^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17286~^~207~^0.85^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~255~^68.31^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~303~^1.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~309~^5.40^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~418~^2.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~203~^24.78^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~204~^14.44^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17287~^~207~^0.78^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~255~^60.47^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~303~^1.79^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~309~^6.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~418~^3.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17288~^~203~^20.83^3^0.14^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~204~^3.81^3^0.26^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17288~^~207~^0.93^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~255~^75.13^3^0.27^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~303~^1.50^3^0.03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~309~^6.08^3^0.03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~418~^2.71^3^0.23^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~203~^27.50^3^0.50^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~204~^5.22^3^0.46^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17289~^~207~^0.83^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~255~^66.93^3^0.80^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~303~^1.91^3^0.03^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~309~^7.93^3^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~418~^3.20^3^0.27^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17290~^~203~^18.24^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~204~^15.19^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17290~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~255~^66.33^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~303~^1.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~309~^3.75^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~418~^2.70^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~203~^25.16^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~204~^15.13^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17291~^~207~^1.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~255~^59.65^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~303~^2.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~309~^4.43^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~418~^3.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~203~^20.46^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~204~^5.23^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17292~^~207~^1.06^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~255~^73.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~303~^1.64^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~309~^4.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~418~^3.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~203~^27.31^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~204~^8.10^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17293~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~255~^64.54^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~303~^2.15^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~309~^4.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~418~^3.19^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~203~^18.59^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~204~^13.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17294~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~255~^67.64^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~303~^1.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~309~^4.04^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~418~^2.75^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~203~^25.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~204~^13.69^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17295~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~255~^60.82^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~303~^2.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~309~^4.49^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~418~^3.04^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17296~^~203~^20.45^4^0.23^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~204~^5.10^4^0.23^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17296~^~207~^1.08^4^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~255~^74.08^4^0.58^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~303~^1.61^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~309~^4.50^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~203~^27.18^4^0.44^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~204~^7.27^4^0.48^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17297~^~207~^1.10^4^0.04^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~255~^65.30^4^0.72^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~303~^2.13^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~309~^4.86^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~418~^3.19^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17298~^~203~^17.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~204~^20.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17298~^~207~^0.87^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~255~^62.63^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~303~^1.50^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~309~^2.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~418~^2.57^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~203~^24.88^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~204~^19.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17299~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~255~^56.20^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~303~^2.06^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~309~^4.24^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~418~^2.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17300~^~203~^20.48^4^0.21^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~204~^5.64^4^0.36^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17300~^~207~^1.03^4^0.02^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~255~^73.68^4^0.53^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~303~^1.75^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~309~^3.50^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~203~^27.75^4^0.21^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~204~^10.65^4^0.69^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17301~^~207~^1.05^4^0.02^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~255~^62.18^4^0.47^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~303~^2.24^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~309~^4.76^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~418~^3.19^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17302~^~203~^18.33^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~204~^14.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17302~^~207~^0.86^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~255~^66.86^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~303~^1.75^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~309~^3.21^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~418~^2.72^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~203~^25.75^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~204~^13.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17303~^~207~^0.99^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~255~^59.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~303~^2.34^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~309~^4.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~418~^3.05^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17304~^~203~^20.43^4^0.19^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~204~^4.91^4^0.57^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17304~^~207~^0.95^4^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~255~^74.13^4^0.68^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~303~^1.94^3^0.15^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~309~^3.58^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~203~^27.63^4^0.63^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~204~^7.80^4^0.56^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17305~^~207~^1.05^4^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~255~^64.08^4^0.60^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~303~^2.48^3^0.18^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~309~^5.21^3^0.24^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~418~^3.19^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17306~^~203~^19.17^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~204~^12.56^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17306~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~255~^68.46^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~303~^1.81^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~309~^3.32^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~418~^2.81^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~203~^25.54^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~204~^11.78^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17307~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~255~^61.99^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~303~^2.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~309~^4.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~418~^3.10^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17308~^~203~^20.65^4^0.37^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~204~^6.08^4^1.19^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17308~^~207~^1.05^4^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~255~^73.45^4^0.51^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~303~^1.94^3^0.15^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~309~^3.58^3^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~203~^26.75^4^0.93^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~204~^7.68^4^0.60^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17309~^~207~^1.08^4^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~255~^64.85^4^1.19^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~303~^2.48^3^0.18^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~309~^5.21^3^0.24^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~418~^3.19^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17310~^~203~^19.32^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~204~^13.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17310~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~255~^66.80^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~303~^1.66^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~309~^2.50^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~418~^1.76^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~203~^25.49^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~204~^12.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17311~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~255~^62.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~303~^2.12^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~309~^3.36^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~418~^2.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17312~^~203~^21.00^6^0.16^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~204~^6.24^6^0.38^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17312~^~207~^0.95^6^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~255~^72.17^6^0.49^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~303~^1.79^6^0.07^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~309~^2.69^6^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~418~^1.85^3^0.15^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~203~^26.53^6^0.37^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~204~^8.75^6^0.49^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17313~^~207~^1.07^6^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~255~^64.45^6^0.31^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~303~^2.18^6^0.11^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~309~^3.48^6^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~418~^2.01^3^0.27^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17314~^~203~^21.26^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~204~^16.89^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~207~^0.86^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~255~^61.86^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~303~^1.55^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~309~^1.94^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~418~^0.89^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~203~^28.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~204~^21.20^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17315~^~207~^1.05^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~255~^49.65^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~303~^2.24^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~309~^3.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~323~^0.31^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~418~^1.33^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17316~^~203~^24.07^6^^~1~^~A~^^^1^22.69^25.17^^^^~2~^~11/01/2014~ -~17316~^~204~^5.59^6^^~1~^~A~^^^1^2.68^8.25^^^^~2~^~11/01/2014~ -~17316~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17316~^~207~^0.96^6^^~1~^~A~^^^1^0.85^1.03^^^^~2~^~11/01/2014~ -~17316~^~255~^70.48^6^^~1~^~A~^^^1^66.92^73.25^^^^~2~^~11/01/2014~ -~17316~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~303~^1.75^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~309~^2.20^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~323~^0.25^0^^~4~^~BFFN~^~17397~^^^^^^^^^~11/01/2014~ -~17316~^~418~^1.23^0^^~4~^~BFPN~^~17397~^^^^^^^^^~11/01/2014~ -~17316~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17316~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~203~^32.16^6^^~1~^~A~^^^1^29.39^32.94^^^^~2~^~11/01/2014~ -~17317~^~204~^11.68^6^^~1~^~A~^^^1^6.43^19.31^^^^~2~^~11/01/2014~ -~17317~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17317~^~207~^1.15^6^^~1~^~A~^^^1^1.02^1.22^^^^~2~^~11/01/2014~ -~17317~^~255~^56.33^6^^~1~^~A~^^^1^50.66^61.69^^^^~2~^~11/01/2014~ -~17317~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~303~^2.36^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~309~^3.28^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~323~^0.41^0^^~4~^~BFFN~^~17396~^^^^^^^^^~11/01/2014~ -~17317~^~418~^1.73^0^^~4~^~BFPN~^~17396~^^^^^^^^^~11/01/2014~ -~17317~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17318~^~203~^16.68^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~204~^20.47^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17318~^~207~^0.78^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~255~^62.70^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~303~^1.26^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~309~^4.09^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~418~^2.61^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~203~^23.58^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~204~^21.65^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17319~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~255~^55.31^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~303~^1.78^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~309~^5.85^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~418~^3.29^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~203~^19.36^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~204~^8.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17320~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~255~^72.39^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~303~^1.42^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~309~^4.87^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~418~^3.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~203~^26.18^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~204~^13.44^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17321~^~207~^1.06^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~255~^61.05^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~303~^1.90^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~309~^6.65^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~418~^3.56^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~203~^17.06^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~204~^18.89^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17322~^~207~^0.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~255~^63.82^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~303~^1.35^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~309~^3.52^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~418~^2.60^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~203~^29.70^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~204~^20.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17323~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~255~^51.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~303~^2.42^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~309~^6.64^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~418~^3.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17324~^~203~^19.88^6^0.13^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~204~^5.81^6^0.36^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17324~^~207~^0.95^6^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~255~^73.95^6^0.46^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~303~^1.54^3^0.12^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~309~^4.16^3^0.18^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~203~^34.17^6^0.40^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~204~^10.23^6^0.65^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17325~^~207~^1.03^6^0.08^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~255~^56.98^6^0.94^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~303~^2.71^3^0.20^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~309~^7.78^3^0.10^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~418~^3.56^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17326~^~203~^16.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~204~^21.28^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17326~^~207~^0.76^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~255~^62.13^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~303~^1.21^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~309~^4.37^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~418~^2.61^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~203~^21.71^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~204~^22.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~17327~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~255~^56.63^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~303~^1.58^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~309~^5.61^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~418~^3.30^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17328~^~203~^19.10^6^0.21^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~204~^9.09^6^0.58^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17328~^~207~^0.87^6^0.05^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~255~^71.62^6^0.50^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~303~^1.36^3^0.09^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~309~^5.22^3^0.12^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~418~^3.01^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~203~^23.83^6^0.29^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~204~^14.38^6^0.91^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1998~ -~17329~^~207~^1.07^6^0.06^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~255~^62.25^6^0.45^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~303~^1.67^3^0.10^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~309~^6.32^3^0.23^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~418~^3.56^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17330~^~203~^18.67^6^1.32^~1~^~A~^^^1^16.70^25.20^5^15.26^22.07^~4~^~03/01/2008~ -~17330~^~204~^15.93^6^0.97^~1~^~A~^^^1^12.50^18.40^5^13.44^18.42^~4~^~03/01/2008~ -~17330~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~207~^0.88^6^0.03^~1~^~A~^^^1^0.80^1.00^5^0.80^0.96^~4~^~03/01/2008~ -~17330~^~255~^64.25^6^2.05^~1~^~A~^^^1^55.30^68.70^5^58.97^69.52^~4~^~03/01/2008~ -~17330~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17330~^~303~^2.60^6^0.20^~1~^~A~^^^1^2.20^3.59^5^2.07^3.11^~4~^~09/01/2001~ -~17330~^~309~^4.29^3^0.13^~1~^~A~^^^1^4.05^4.53^2^3.69^4.88^~4~^~09/01/2001~ -~17330~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~ -~17330~^~418~^1.79^3^0.10^~1~^~A~^^^1^1.58^1.92^2^1.33^2.24^~4~^~09/01/2001~ -~17331~^~203~^23.77^6^0.82^~1~^~A~^^^1^21.00^25.80^5^21.64^25.89^~4~^~03/01/2008~ -~17331~^~204~^15.13^6^1.10^~1~^~A~^^^1^12.30^19.00^5^12.28^17.98^~4~^~03/01/2008~ -~17331~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~207~^1.02^6^0.01^~1~^~A~^^^1^1.00^1.10^5^0.97^1.06^~4~^~03/01/2008~ -~17331~^~255~^59.53^6^0.96^~1~^~A~^^^1^55.30^61.40^5^57.06^62.00^~4~^~03/01/2008~ -~17331~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17331~^~303~^3.08^6^0.17^~1~^~A~^^^1^2.28^3.59^5^2.62^3.53^~4~^~09/01/2001~ -~17331~^~309~^5.14^3^0.44^~1~^~A~^^^1^4.32^5.83^2^3.24^7.04^~4~^~09/01/2001~ -~17331~^~323~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~ -~17331~^~418~^2.28^3^0.01^~1~^~A~^^^1^2.25^2.30^2^2.21^2.33^~4~^~09/01/2001~ -~17332~^~203~^28.05^6^0.41^~1~^~A~^^^1^27.00^29.80^5^26.99^29.10^~4~^~11/01/2001~ -~17332~^~204~^5.65^6^0.69^~1~^~A~^^^1^3.40^7.60^5^3.85^7.44^~4~^~11/01/2001~ -~17332~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~207~^1.17^6^0.03^~1~^~A~^^^1^1.10^1.30^5^1.08^1.25^~4~^~11/01/2001~ -~17332~^~255~^65.10^6^0.79^~1~^~A~^^^1^62.30^68.20^5^63.05^67.14^~4~^~11/01/2001~ -~17332~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17332~^~303~^3.47^6^0.12^~1~^~A~^^^1^3.17^4.03^5^3.15^3.77^~4~^~11/01/2001~ -~17332~^~309~^5.11^3^0.19^~1~^~A~^^^1^4.74^5.41^2^4.26^5.95^~4~^~11/01/2001~ -~17332~^~323~^0.20^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2002~ -~17332~^~418~^2.83^3^0.54^~1~^~A~^^^1^1.75^3.50^2^0.48^5.16^~4~^~11/01/2001~ -~17333~^~203~^33.78^6^0.59^~1~^~A~^^^1^31.40^35.80^5^32.26^35.30^~4~^~11/01/2001~ -~17333~^~204~^5.43^6^0.61^~1~^~A~^^^1^4.40^8.30^5^3.84^7.01^~4~^~11/01/2001~ -~17333~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~207~^1.08^6^0.04^~1~^~A~^^^1^1.00^1.20^5^0.98^1.18^~4~^~11/01/2001~ -~17333~^~255~^60.48^6^0.38^~1~^~A~^^^1^59.40^61.60^5^59.49^61.47^~4~^~11/01/2001~ -~17333~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17333~^~303~^4.86^6^0.23^~1~^~A~^^^1^4.13^5.75^5^4.27^5.45^~4~^~11/01/2001~ -~17333~^~309~^8.64^3^0.34^~1~^~A~^^^1^7.96^9.09^2^7.15^10.12^~4~^~11/01/2001~ -~17333~^~323~^0.23^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2002~ -~17333~^~418~^2.38^3^0.37^~1~^~A~^^^1^1.90^3.12^2^0.77^3.99^~4~^~11/01/2001~ -~17334~^~203~^21.12^6^0.48^~1~^~A~^^^1^19.50^23.10^5^19.87^22.35^~4~^~11/01/2001~ -~17334~^~204~^3.15^6^0.28^~1~^~A~^^^1^2.10^4.10^5^2.42^3.87^~4~^~11/01/2001~ -~17334~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~207~^0.98^6^0.04^~1~^~A~^^^1^0.80^1.10^5^0.88^1.08^~4~^~11/01/2001~ -~17334~^~255~^75.50^6^0.47^~1~^~A~^^^1^74.10^77.00^5^74.29^76.70^~4~^~11/01/2001~ -~17334~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17334~^~303~^2.88^6^0.05^~1~^~A~^^^1^2.67^3.09^5^2.72^3.02^~4~^~11/01/2001~ -~17334~^~309~^5.27^3^0.27^~1~^~A~^^^1^4.99^5.82^2^4.09^6.45^~4~^~11/01/2001~ -~17334~^~323~^0.16^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2002~ -~17334~^~418~^2.46^3^0.27^~1~^~A~^^^1^1.94^2.85^2^1.29^3.62^~4~^~11/01/2001~ -~17335~^~203~^29.45^6^0.66^~1~^~A~^^^1^28.10^32.30^5^27.74^31.15^~4~^~11/01/2001~ -~17335~^~204~^5.67^6^0.74^~1~^~A~^^^1^4.20^8.80^5^3.76^7.56^~4~^~11/01/2001~ -~17335~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~207~^1.02^6^0.06^~1~^~A~^^^1^0.80^1.20^5^0.86^1.17^~4~^~11/01/2001~ -~17335~^~255~^64.48^6^0.75^~1~^~A~^^^1^62.20^66.80^5^62.55^66.41^~4~^~11/01/2001~ -~17335~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17335~^~303~^2.88^6^0.10^~1~^~A~^^^1^2.61^3.19^5^2.62^3.14^~4~^~11/01/2001~ -~17335~^~309~^5.01^3^0.31^~1~^~A~^^^1^4.43^5.51^2^3.65^6.35^~4~^~11/01/2001~ -~17335~^~323~^0.21^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2002~ -~17335~^~418~^1.29^3^0.23^~1~^~A~^^^1^0.82^1.54^2^0.28^2.29^~4~^~11/01/2001~ -~17336~^~203~^30.18^6^0.58^~1~^~A~^^^1^28.70^32.10^5^28.68^31.67^~4~^~03/01/2003~ -~17336~^~204~^4.96^6^0.87^~1~^~A~^^^1^2.70^7.90^5^2.70^7.21^~4~^~03/01/2003~ -~17336~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17336~^~207~^1.20^6^0.02^~1~^~A~^^^1^1.10^1.30^5^1.12^1.27^~4~^~03/01/2003~ -~17336~^~255~^65.08^6^0.95^~1~^~A~^^^1^61.90^68.10^5^62.62^67.53^~4~^~03/01/2003~ -~17336~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17336~^~303~^3.52^6^0.20^~1~^~A~^^^1^2.77^3.97^5^2.99^4.03^~4~^~03/01/2003~ -~17336~^~309~^3.79^3^0.15^~1~^~A~^^^1^3.59^3.98^2^3.10^4.46^~4~^~03/01/2003~ -~17336~^~323~^0.21^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~418~^1.81^3^0.27^~1~^~A~^^^1^1.43^2.19^2^0.64^2.97^~4~^~03/01/2003~ -~17337~^~203~^23.32^6^0.19^~1~^~A~^^^1^22.80^24.10^5^22.81^23.82^~4~^~11/01/2001~ -~17337~^~204~^2.43^6^0.34^~1~^~A~^^^1^1.30^3.90^5^1.54^3.32^~4~^~11/01/2001~ -~17337~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17337~^~207~^1.18^6^0.01^~1~^~A~^^^1^1.10^1.20^5^1.14^1.22^~4~^~11/01/2001~ -~17337~^~255~^73.95^6^0.43^~1~^~A~^^^1^72.40^75.00^5^72.84^75.06^~4~^~11/01/2001~ -~17337~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~ -~17337~^~303~^2.66^6^0.16^~1~^~A~^^^1^2.08^3.22^5^2.24^3.07^~4~^~11/01/2001~ -~17337~^~309~^2.92^3^0.12^~1~^~A~^^^1^2.74^3.17^2^2.37^3.47^~4~^~11/01/2001~ -~17337~^~323~^0.17^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2002~ -~17337~^~418~^1.55^3^0.37^~1~^~A~^^^1^0.80^1.99^2^-0.07^3.17^~4~^~11/01/2001~ -~17338~^~203~^21.76^5^0.33^~1~^~A~^^^1^20.50^22.40^4^20.83^22.68^~4~^~09/01/2001~ -~17338~^~204~^8.82^5^1.42^~1~^~A~^^^1^5.90^13.50^4^4.87^12.76^~4~^~09/01/2001~ -~17338~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~207~^1.04^5^0.08^~1~^~A~^^^1^0.80^1.20^4^0.81^1.26^~4~^~09/01/2001~ -~17338~^~255~^68.84^5^0.83^~1~^~A~^^^1^66.50^71.00^4^66.52^71.15^~4~^~09/01/2001~ -~17338~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17338~^~303~^2.75^3^0.13^~1~^~A~^^^1^2.55^3.00^2^2.18^3.32^~4~^~02/01/2002~ -~17338~^~309~^5.40^3^0.12^~1~^~A~^^^1^5.15^5.53^2^4.86^5.92^~4~^~02/01/2002~ -~17338~^~323~^0.28^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~418~^2.13^2^^~1~^~A~^^^1^2.01^2.25^1^^^^~02/01/2002~ -~17339~^~203~^26.64^5^0.47^~1~^~A~^^^1^24.90^27.60^4^25.32^27.95^~4~^~09/01/2001~ -~17339~^~204~^8.74^5^0.81^~1~^~A~^^^1^6.50^10.60^4^6.47^11.00^~4~^~09/01/2001~ -~17339~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~207~^1.04^5^0.08^~1~^~A~^^^1^0.80^1.20^4^0.81^1.26^~4~^~09/01/2001~ -~17339~^~255~^64.14^5^0.82^~1~^~A~^^^1^62.50^66.90^4^61.84^66.43^~4~^~09/01/2001~ -~17339~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17339~^~303~^3.34^3^0.11^~1~^~A~^^^1^3.10^3.47^2^2.82^3.84^~4~^~02/01/2002~ -~17339~^~309~^6.56^3^0.20^~1~^~A~^^^1^6.30^6.97^2^5.66^7.45^~4~^~02/01/2002~ -~17339~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~418~^2.57^2^^~1~^~A~^^^1^2.39^2.74^1^^^^~02/01/2002~ -~17340~^~203~^31.00^7^0.44^~1~^~A~^^^1^28.70^32.50^6^29.91^32.08^~4~^~10/01/2001~ -~17340~^~204~^3.84^7^0.89^~1~^~A~^^^1^1.40^7.70^6^1.65^6.02^~4~^~10/01/2001~ -~17340~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~207~^1.14^7^0.03^~1~^~A~^^^1^1.00^1.30^6^1.05^1.23^~4~^~10/01/2001~ -~17340~^~255~^64.50^7^0.83^~1~^~A~^^^1^60.10^66.20^6^62.46^66.53^~4~^~10/01/2001~ -~17340~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17340~^~303~^3.96^3^0.38^~1~^~A~^^^1^3.53^4.72^2^2.32^5.60^~4~^~10/01/2001~ -~17340~^~309~^5.10^2^^~1~^~A~^^^1^5.04^5.15^1^^^^~10/01/2001~ -~17340~^~323~^0.56^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17340~^~418~^0.83^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~203~^30.94^8^0.49^~1~^~A~^^^1^28.70^33.50^7^29.75^32.11^~4~^~10/01/2001~ -~17341~^~204~^2.64^8^0.21^~1~^~A~^^^1^2.00^3.50^7^2.13^3.14^~4~^~10/01/2001~ -~17341~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~207~^1.28^8^0.03^~1~^~A~^^^1^1.20^1.40^7^1.20^1.34^~4~^~10/01/2001~ -~17341~^~255~^65.43^8^0.59^~1~^~A~^^^1^62.50^67.70^7^64.01^66.83^~4~^~10/01/2001~ -~17341~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17341~^~303~^4.08^3^0.37^~1~^~A~^^^1^3.39^4.69^2^2.45^5.70^~4~^~10/01/2001~ -~17341~^~309~^5.64^2^^~1~^~A~^^^1^5.57^5.71^1^^^^~10/01/2001~ -~17341~^~323~^0.54^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17341~^~418~^1.50^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~203~^30.76^8^0.52^~1~^~A~^^^1^29.00^32.80^7^29.53^31.99^~4~^~10/01/2001~ -~17342~^~204~^3.41^8^0.32^~1~^~A~^^^1^2.20^5.20^7^2.64^4.18^~4~^~10/01/2001~ -~17342~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~207~^1.34^8^0.06^~1~^~A~^^^1^1.10^1.50^7^1.19^1.47^~4~^~10/01/2001~ -~17342~^~255~^64.93^8^0.30^~1~^~A~^^^1^63.10^65.80^7^64.19^65.65^~4~^~10/01/2001~ -~17342~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17342~^~303~^4.07^3^0.15^~1~^~A~^^^1^3.88^4.38^2^3.39^4.74^~4~^~10/01/2001~ -~17342~^~309~^4.12^2^^~1~^~A~^^^1^3.87^4.36^1^^^^~10/01/2001~ -~17342~^~323~^0.55^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~ -~17342~^~418~^2.96^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17343~^~203~^21.78^6^0.37^~1~^~A~^^^1^20.60^23.10^5^20.83^22.73^~4~^~02/01/2002~ -~17343~^~204~^7.13^6^0.35^~1~^~A~^^^1^5.80^7.80^5^6.23^8.03^~4~^~02/01/2002~ -~17343~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~207~^0.88^6^0.06^~1~^~A~^^^1^0.60^1.00^5^0.71^1.05^~4~^~02/01/2002~ -~17343~^~255~^71.15^6^0.49^~1~^~A~^^^1^70.20^73.30^5^69.87^72.43^~4~^~02/01/2002~ -~17343~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17343~^~303~^2.92^6^0.08^~1~^~A~^^^1^2.74^3.25^5^2.70^3.12^~4~^~02/01/2002~ -~17343~^~309~^4.20^3^0.04^~1~^~A~^^^1^4.13^4.28^2^4.01^4.38^~4~^~02/01/2002~ -~17343~^~323~^0.45^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17343~^~418~^1.87^3^0.23^~1~^~A~^^^1^1.63^2.34^2^0.85^2.88^~4~^~02/01/2002~ -~17343~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17343~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17344~^~203~^26.45^6^0.39^~1~^~A~^^^1^25.60^27.50^5^25.44^27.45^~4~^~02/01/2002~ -~17344~^~204~^8.22^6^0.29^~1~^~A~^^^1^7.30^9.40^5^7.45^8.97^~4~^~02/01/2002~ -~17344~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~ -~17344~^~207~^1.07^6^0.04^~1~^~A~^^^1^0.90^1.20^5^0.95^1.17^~4~^~02/01/2002~ -~17344~^~255~^64.23^6^0.41^~1~^~A~^^^1^62.50^65.30^5^63.16^65.30^~4~^~02/01/2002~ -~17344~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17344~^~303~^3.35^6^0.05^~1~^~A~^^^1^3.14^3.54^5^3.21^3.48^~4~^~02/01/2002~ -~17344~^~309~^5.20^3^0.12^~1~^~A~^^^1^4.99^5.41^2^4.67^5.72^~4~^~02/01/2002~ -~17344~^~323~^0.68^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17344~^~418~^2.32^3^0.51^~1~^~A~^^^1^1.78^3.36^2^0.09^4.55^~4~^~02/01/2002~ -~17344~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17344~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17345~^~203~^30.20^6^0.20^~1~^~A~^^^1^29.40^30.60^5^29.68^30.71^~4~^~02/01/2002~ -~17345~^~204~^2.38^6^0.31^~1~^~A~^^^1^1.60^3.40^5^1.56^3.19^~4~^~02/01/2002~ -~17345~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17345~^~207~^1.25^6^0.04^~1~^~A~^^^1^1.10^1.40^5^1.14^1.36^~4~^~02/01/2002~ -~17345~^~255~^67.07^6^0.48^~1~^~A~^^^1^66.10^69.30^5^65.82^68.30^~4~^~02/01/2002~ -~17345~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~303~^4.09^6^0.21^~1~^~A~^^^1^3.58^5.07^5^3.53^4.64^~4~^~02/01/2002~ -~17345~^~309~^3.63^3^0.48^~1~^~A~^^^1^2.67^4.27^2^1.52^5.72^~4~^~02/01/2002~ -~17345~^~323~^0.62^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17345~^~418~^1.83^3^0.27^~1~^~A~^^^1^1.28^2.15^2^0.63^3.02^~4~^~02/01/2002~ -~17345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17346~^~203~^36.28^6^0.42^~1~^~A~^^^1^34.40^37.50^5^35.19^37.37^~4~^~03/01/2002~ -~17346~^~204~^3.95^6^0.31^~1~^~A~^^^1^3.20^4.90^5^3.14^4.75^~4~^~03/01/2002~ -~17346~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~207~^1.12^6^0.01^~1~^~A~^^^1^1.10^1.20^5^1.07^1.16^~4~^~03/01/2002~ -~17346~^~255~^59.78^6^0.47^~1~^~A~^^^1^58.70^61.80^5^58.56^61.00^~4~^~03/01/2002~ -~17346~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17346~^~303~^5.01^6^0.34^~1~^~A~^^^1^3.50^5.87^5^4.11^5.89^~4~^~03/01/2002~ -~17346~^~309~^8.64^3^0.71^~1~^~A~^^^1^7.22^9.38^2^5.58^11.70^~4~^~03/01/2002~ -~17346~^~323~^0.75^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17346~^~418~^3.06^3^0.81^~1~^~A~^^^1^1.56^4.36^2^-0.44^6.56^~4~^~03/01/2002~ -~17346~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17346~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~17347~^~203~^29.90^6^0.54^~1~^~A~^^^1^28.10^31.90^5^28.49^31.30^~4~^~02/01/2002~ -~17347~^~204~^2.35^6^0.30^~1~^~A~^^^1^1.30^3.40^5^1.56^3.13^~4~^~02/01/2002~ -~17347~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17347~^~207~^1.27^6^0.04^~1~^~A~^^^1^1.10^1.40^5^1.14^1.39^~4~^~02/01/2002~ -~17347~^~255~^67.20^6^0.60^~1~^~A~^^^1^65.10^69.50^5^65.65^68.74^~4~^~02/01/2002~ -~17347~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17347~^~303~^4.25^6^0.07^~1~^~A~^^^1^4.02^4.46^5^4.05^4.43^~4~^~02/01/2002~ -~17347~^~309~^3.99^3^0.48^~1~^~A~^^^1^3.17^4.85^2^1.90^6.07^~4~^~02/01/2002~ -~17347~^~323~^0.62^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17347~^~418~^3.62^3^0.38^~1~^~A~^^^1^3.17^4.38^2^1.96^5.26^~4~^~02/01/2002~ -~17348~^~203~^31.47^6^0.31^~1~^~A~^^^1^30.60^32.50^5^30.65^32.27^~4~^~02/01/2002~ -~17348~^~204~^1.92^6^0.07^~1~^~A~^^^1^1.70^2.10^5^1.72^2.10^~4~^~02/01/2002~ -~17348~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~17348~^~207~^1.20^6^0.04^~1~^~A~^^^1^1.10^1.40^5^1.08^1.31^~4~^~02/01/2002~ -~17348~^~255~^66.10^6^0.25^~1~^~A~^^^1^65.70^67.30^5^65.44^66.75^~4~^~02/01/2002~ -~17348~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~17348~^~303~^4.23^6^0.23^~1~^~A~^^^1^3.32^4.86^5^3.62^4.82^~4~^~02/01/2002~ -~17348~^~309~^3.67^3^0.50^~1~^~A~^^^1^2.74^4.49^2^1.48^5.85^~4~^~02/01/2002~ -~17348~^~323~^0.64^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~ -~17348~^~418~^2.27^3^0.49^~1~^~A~^^^1^1.57^3.22^2^0.15^4.38^~4~^~02/01/2002~ -~17349~^~203~^20.18^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~204~^4.65^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~207~^1.03^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~255~^74.70^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17350~^~203~^19.58^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~204~^7.42^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~255~^72.57^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~303~^0.99^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17351~^~203~^20.37^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~204~^4.47^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~207~^1.01^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~255~^75.38^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~303~^3.08^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17352~^~203~^19.78^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~204~^7.20^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~255~^73.25^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~303~^2.95^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17353~^~203~^17.14^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~204~^20.71^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~207~^0.82^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~255~^61.46^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~303~^1.41^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17354~^~203~^8.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~204~^62.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~207~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~255~^29.57^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~303~^1.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~309~^1.77^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~323~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~418~^0.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~203~^4.63^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~204~^68.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~205~^1.26^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~207~^0.22^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~255~^25.36^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~303~^0.72^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~309~^0.87^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~323~^0.84^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~418~^0.45^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~203~^3.87^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~204~^76.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~205~^0.55^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~207~^0.25^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~255~^19.17^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~303~^0.47^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~309~^0.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~323~^1.18^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~418~^0.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~203~^14.03^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~204~^10.92^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~207~^3.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~255~^73.11^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~303~^1.21^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~309~^1.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~323~^1.12^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~418~^9.54^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~203~^11.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~204~^8.03^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~207~^2.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~255~^78.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~303~^1.07^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~309~^1.10^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~323~^0.87^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~418~^9.99^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~203~^28.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~204~^17.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~207~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~255~^54.77^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~303~^1.89^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~309~^4.80^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~323~^0.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~418~^1.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~203~^18.31^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~204~^7.98^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~205~^1.02^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~255~^71.69^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~303~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~309~^2.93^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~323~^0.31^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~418~^1.96^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~203~^23.69^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~204~^5.27^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~207~^1.20^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~255~^70.59^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~303~^1.73^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~309~^3.24^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~418~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~203~^5.24^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~204~^72.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~205~^0.62^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~207~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~255~^21.77^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~303~^0.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~309~^1.03^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~323~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~418~^0.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~203~^21.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~204~^3.83^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~207~^1.24^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~255~^74.58^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~303~^1.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~309~^2.89^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~323~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~418~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17364~^~203~^19.78^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~204~^3.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~205~^0.18^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~207~^1.41^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~255~^75.07^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~303~^14.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~309~^2.36^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~418~^55.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~203~^27.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~204~^13.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~207~^0.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~255~^60.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~303~^1.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~309~^4.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~418~^1.53^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~203~^21.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~204~^10.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~255~^69.49^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~303~^0.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~309~^3.15^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~323~^0.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~418~^2.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~203~^15.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~204~^2.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~205~^0.03^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~207~^1.19^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~255~^81.02^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~303~^6.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~309~^1.81^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~323~^0.42^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~418~^50.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~203~^25.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~204~^6.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~205~^1.48^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~207~^1.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~255~^64.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~303~^5.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~309~^5.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~323~^1.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~418~^57.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~203~^20.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~204~^4.92^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~205~^2.22^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~207~^1.36^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~255~^70.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~303~^4.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~309~^3.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~323~^0.86^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~418~^59.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~203~^22.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~204~^11.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~207~^1.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~255~^66.59^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~303~^1.27^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~309~^3.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~418~^0.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~203~^20.33^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~204~^12.41^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~207~^0.86^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~255~^69.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~303~^1.04^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~309~^2.75^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~323~^0.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~418~^1.62^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~203~^26.26^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~204~^6.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~207~^0.94^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~255~^66.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~303~^4.94^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~309~^2.66^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~323~^0.63^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~418~^9.18^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~203~^18.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~204~^3.68^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~207~^1.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~255~^77.84^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~303~^3.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~309~^1.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~323~^0.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~418~^8.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~203~^21.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~204~^6.61^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~207~^2.58^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~255~^72.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~303~^1.06^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~309~^1.93^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~323~^1.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~418~^2.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~203~^11.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~204~^3.16^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~207~^1.35^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~255~^85.78^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~303~^0.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~309~^0.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~323~^0.48^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~418~^1.83^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~203~^21.01^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~204~^4.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~207~^1.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~255~^73.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~303~^1.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~309~^2.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~323~^0.85^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~418~^8.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~203~^11.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~204~^2.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~207~^1.08^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~255~^85.01^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~303~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~309~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~323~^0.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~418~^9.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~203~^17.51^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~204~^22.04^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~205~^0.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~207~^0.84^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~255~^58.74^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~303~^1.74^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~309~^2.07^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~323~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~418~^5.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~203~^14.27^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~204~^18.61^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~207~^0.77^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~255~^66.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~303~^1.25^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~309~^1.55^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~418~^6.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~203~^25.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~204~^6.44^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~207~^1.17^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~255~^68.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~303~^1.71^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~309~^3.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~418~^1.58^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~203~^20.93^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~204~^4.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~207~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~255~^74.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~309~^3.26^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~323~^0.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~418~^1.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~203~^31.06^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~204~^14.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~207~^1.18^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~255~^55.36^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~303~^1.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~309~^6.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~323~^0.63^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~418~^2.42^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~203~^20.62^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~204~^9.08^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~255~^71.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~303~^1.18^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~309~^3.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~323~^0.39^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~418~^2.52^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~203~^27.94^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~204~^4.81^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~207~^1.44^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~255~^66.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~303~^2.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~309~^2.81^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~323~^0.55^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~418~^2.41^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17385~^~203~^20.53^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~204~^3.81^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17385~^~207~^1.35^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~255~^74.35^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~303~^1.63^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~309~^2.16^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~323~^0.41^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~418~^1.88^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17386~^~203~^25.53^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~204~^6.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~207~^1.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~255~^68.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~303~^1.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~309~^3.01^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~323~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~418~^1.63^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~203~^20.86^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~204~^5.32^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~207~^1.04^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~255~^73.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~303~^1.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~309~^2.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~418~^1.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~203~^28.99^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~204~^4.49^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~207~^1.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~255~^66.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~303~^2.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~309~^2.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~418~^1.39^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~203~^21.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~204~^3.77^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~207~^1.17^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~255~^74.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~303~^1.55^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~309~^2.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~418~^1.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~203~^32.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~204~^7.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~207~^1.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~255~^60.93^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~303~^2.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~309~^5.41^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~323~^0.52^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~418~^1.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~203~^20.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~204~^3.35^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~207~^1.02^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~255~^74.49^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~303~^1.46^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~309~^3.45^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~323~^0.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~418~^1.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~203~^19.84^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~204~^7.97^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~255~^72.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~303~^1.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~309~^3.48^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~323~^0.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~418~^2.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~203~^31.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~204~^15.36^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~207~^1.11^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~255~^54.64^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~303~^2.28^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~309~^5.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~418~^2.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~203~^25.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~204~^10.91^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~207~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~255~^64.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~303~^1.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~309~^5.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~418~^2.27^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~203~^20.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~204~^6.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~255~^72.90^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~303~^1.16^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~309~^3.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~418~^2.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~203~^24.39^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~204~^8.38^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~207~^1.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~255~^66.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~303~^1.76^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~309~^2.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~323~^0.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~418~^1.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~203~^20.61^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~204~^7.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~207~^0.97^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~255~^71.67^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~309~^2.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~323~^0.32^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~418~^1.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~203~^27.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~204~^10.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~205~^0.41^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~207~^1.25^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~255~^60.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~303~^1.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~309~^3.48^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~323~^0.37^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~418~^1.84^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~203~^25.08^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~204~^10.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~207~^1.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~255~^64.96^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~303~^1.47^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~309~^4.59^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~323~^0.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~418~^2.65^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~203~^26.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~204~^6.35^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~207~^1.26^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~255~^67.56^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~303~^2.03^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~309~^3.93^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~418~^2.25^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17401~^~203~^20.48^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~204~^32.63^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~205~^0.14^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~207~^0.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~255~^47.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~309~^3.20^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~323~^0.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~418~^1.25^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~203~^16.17^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~204~^30.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~205~^0.27^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~207~^0.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~255~^54.39^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~303~^0.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~309~^2.35^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~323~^0.58^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~418~^1.60^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~203~^29.59^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~204~^14.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~205~^0.04^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~255~^56.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~303~^1.99^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~309~^4.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~323~^0.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~418~^1.50^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~203~^18.39^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~204~^12.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~205~^0.73^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~255~^67.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~303~^1.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~309~^3.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~323~^0.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~418~^1.31^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~203~^24.26^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~204~^12.76^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~205~^0.04^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~207~^1.15^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~255~^63.15^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~303~^1.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~309~^3.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~323~^0.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~418~^2.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~203~^21.50^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~204~^27.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~205~^0.41^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~255~^50.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~303~^1.62^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~309~^2.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~323~^0.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~418~^1.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~203~^21.13^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~204~^20.98^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~205~^0.10^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~255~^58.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~303~^1.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~309~^2.61^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~323~^0.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~418~^1.42^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~203~^16.56^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~204~^22.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~205~^0.20^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~207~^0.83^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~255~^60.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~303~^1.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~309~^2.04^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~323~^0.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~418~^0.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~203~^28.96^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~204~^4.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~207~^1.30^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~255~^66.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~303~^2.05^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~309~^2.69^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~323~^0.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~418~^1.39^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~203~^21.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~204~^3.99^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~255~^74.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~303~^1.55^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~309~^2.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~323~^0.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~418~^1.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~203~^28.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~204~^21.43^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~207~^1.01^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~255~^51.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~303~^2.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~309~^5.21^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~323~^0.62^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~418~^1.85^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~203~^17.43^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~204~^17.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~205~^0.14^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~255~^64.70^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~303~^1.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~309~^3.05^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~323~^0.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~418~^2.51^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~203~^21.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~204~^22.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~255~^56.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~303~^1.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~309~^4.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~323~^0.47^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~418~^1.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~203~^16.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~204~^20.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~205~^0.20^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~207~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~255~^62.47^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~303~^1.05^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~309~^3.16^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~323~^0.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~418~^1.98^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~203~^26.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~204~^23.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~255~^50.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~303~^1.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~309~^5.35^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~323~^0.69^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~418~^2.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~203~^17.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~204~^22.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~205~^0.23^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~207~^0.83^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~255~^61.18^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~303~^1.06^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~309~^2.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~323~^0.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~418~^2.06^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~203~^20.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~204~^23.39^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~207~^0.91^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~255~^55.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~303~^1.41^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~309~^3.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~323~^0.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~418~^2.18^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~203~^27.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~204~^5.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~207~^1.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~255~^66.31^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~303~^2.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~309~^2.80^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~323~^0.55^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~418~^2.41^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~203~^23.56^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~204~^11.20^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~205~^0.01^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~255~^64.76^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~303~^1.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~309~^2.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~323~^0.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~418~^1.28^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~203~^19.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~204~^9.96^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~205~^0.05^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~255~^69.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~303~^1.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~309~^2.17^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~323~^0.35^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~418~^1.03^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~203~^23.41^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~204~^12.68^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~255~^63.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~303~^1.64^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~309~^3.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~323~^0.40^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~418~^1.49^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~203~^20.93^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~204~^4.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~207~^1.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~255~^74.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~309~^3.26^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~323~^0.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~418~^1.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17423~^~203~^20.43^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~204~^4.22^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~205~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~207~^1.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~255~^74.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~303~^1.62^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~309~^2.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~323~^0.41^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~418~^1.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17424~^~203~^25.83^6^^~1~^~A~^^^1^23.74^27.86^^^^~2~^~04/01/2014~ -~17424~^~204~^11.78^6^^~1~^~A~^^^1^8.86^15.15^^^^~2~^~04/01/2014~ -~17424~^~205~^1.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~207~^1.02^6^^~1~^~A~^^^1^0.85^1.27^^^^~2~^~04/01/2014~ -~17424~^~255~^59.87^6^^~1~^~A~^^^1^57.23^61.95^^^^~2~^~04/01/2014~ -~17424~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~303~^1.50^6^^~1~^~A~^^^1^1.26^1.63^^^^~2~^~04/01/2014~ -~17424~^~309~^2.95^6^^~1~^~A~^^^1^2.59^3.26^^^^~2~^~04/01/2014~ -~17424~^~323~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17424~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~343~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~418~^3.53^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~203~^31.89^6^^~1~^~A~^^^1^30.01^33.45^^^^~2~^~04/01/2014~ -~17425~^~204~^2.63^6^^~1~^~A~^^^1^2.10^3.10^^^^~2~^~04/01/2014~ -~17425~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~207~^1.45^6^^~1~^~A~^^^1^1.13^1.66^^^^~2~^~04/01/2014~ -~17425~^~255~^65.32^6^^~1~^~A~^^^1^64.33^66.63^^^^~2~^~04/01/2014~ -~17425~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~303~^1.39^6^^~1~^~A~^^^1^1.00^1.62^^^^~2~^~04/01/2014~ -~17425~^~309~^3.29^6^^~1~^~A~^^^1^3.01^3.99^^^^~2~^~04/01/2014~ -~17425~^~323~^0.43^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17425~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17425~^~418~^2.72^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~203~^22.07^6^^~1~^~A~^^^1^21.25^22.61^^^^~2~^~04/01/2014~ -~17426~^~204~^2.07^6^^~1~^~A~^^^1^1.52^2.46^^^^~2~^~04/01/2014~ -~17426~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~207~^1.09^6^^~1~^~A~^^^1^1.02^1.13^^^^~2~^~04/01/2014~ -~17426~^~255~^75.20^6^^~1~^~A~^^^1^74.64^75.86^^^^~2~^~04/01/2014~ -~17426~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~303~^0.81^6^^~1~^~A~^^^1^0.49^0.94^^^^~2~^~04/01/2014~ -~17426~^~309~^1.97^6^^~1~^~A~^^^1^1.27^2.48^^^^~2~^~04/01/2014~ -~17426~^~323~^0.31^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17426~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17426~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~418~^2.08^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~203~^29.75^6^^~1~^~A~^^^1^28.35^31.10^^^^~2~^~04/01/2014~ -~17427~^~204~^4.44^6^^~1~^~A~^^^1^3.79^4.77^^^^~2~^~04/01/2014~ -~17427~^~205~^0.07^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~207~^1.09^6^^~1~^~A~^^^1^0.96^1.13^^^^~2~^~04/01/2014~ -~17427~^~255~^64.65^6^^~1~^~A~^^^1^63.47^65.53^^^^~2~^~04/01/2014~ -~17427~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~303~^0.79^6^^~1~^~A~^^^1^0.69^0.86^^^^~2~^~04/01/2014~ -~17427~^~309~^1.83^6^^~1~^~A~^^^1^1.69^1.96^^^^~2~^~04/01/2014~ -~17427~^~323~^0.38^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17427~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17427~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17427~^~418~^2.89^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~203~^19.77^6^^~1~^~A~^^^1^18.72^21.82^^^^~2~^~04/01/2014~ -~17428~^~204~^1.64^6^^~1~^~A~^^^1^1.22^2.05^^^^~2~^~04/01/2014~ -~17428~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~207~^0.98^6^^~1~^~A~^^^1^0.92^1.01^^^^~2~^~04/01/2014~ -~17428~^~255~^77.96^6^^~1~^~A~^^^1^77.50^78.20^^^^~2~^~04/01/2014~ -~17428~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~303~^1.19^6^^~1~^~A~^^^1^0.94^1.63^^^^~2~^~04/01/2014~ -~17428~^~309~^3.42^6^^~1~^~A~^^^1^2.62^4.06^^^^~2~^~04/01/2014~ -~17428~^~323~^0.15^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~ -~17428~^~418~^1.92^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~203~^29.12^6^^~1~^~A~^^^1^17.69^39.42^^^^~2~^~04/01/2014~ -~17429~^~204~^4.51^6^^~1~^~A~^^^1^3.42^5.46^^^^~2~^~04/01/2014~ -~17429~^~205~^0.00^0^^~4~^~BFZN~^~17425~^^^^^^^^^~05/01/2014~ -~17429~^~207~^0.97^6^^~1~^~A~^^^1^0.85^1.09^^^^~2~^~04/01/2014~ -~17429~^~255~^63.28^6^^~1~^~A~^^^1^59.44^67.09^^^^~2~^~04/01/2014~ -~17429~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~303~^2.06^6^^~1~^~A~^^^1^1.24^2.64^^^^~2~^~04/01/2014~ -~17429~^~309~^5.32^6^^~1~^~A~^^^1^3.49^6.41^^^^~2~^~04/01/2014~ -~17429~^~323~^0.38^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17429~^~418~^1.88^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~203~^27.33^6^^~1~^~A~^^^1^25.64^28.63^^^^~2~^~04/01/2014~ -~17430~^~204~^5.53^6^^~1~^~A~^^^1^4.91^6.78^^^^~2~^~04/01/2014~ -~17430~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~207~^0.95^6^^~1~^~A~^^^1^0.39^1.16^^^^~2~^~04/01/2014~ -~17430~^~255~^66.44^6^^~1~^~A~^^^1^65.33^67.32^^^^~2~^~04/01/2014~ -~17430~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~303~^1.65^6^^~1~^~A~^^^1^0.72^2.61^^^^~2~^~04/01/2014~ -~17430~^~309~^5.07^6^^~1~^~A~^^^1^4.39^6.24^^^^~2~^~04/01/2014~ -~17430~^~323~^0.47^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~ -~17430~^~418~^3.66^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~203~^8.85^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~204~^51.60^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17431~^~205~^0.89^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17431~^~207~^0.47^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17431~^~255~^38.19^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17431~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~303~^0.73^2^^~1~^~A~^^^1^0.69^0.78^^^^^~04/01/2014~ -~17431~^~309~^0.83^2^^~1~^~A~^^^1^0.77^0.90^^^^^~04/01/2014~ -~17431~^~323~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17431~^~342~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~343~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~418~^1.35^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~203~^15.28^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~204~^53.23^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~207~^0.60^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~255~^32.69^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~303~^1.09^2^^~1~^~A~^^^1^1.05^1.13^^^^^~04/01/2014~ -~17432~^~309~^1.42^2^^~1~^~A~^^^1^1.39^1.44^^^^^~04/01/2014~ -~17432~^~323~^0.45^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17432~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~343~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~418~^1.61^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~203~^12.53^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~204~^43.75^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17433~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~255~^44.47^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~303~^0.87^2^^~1~^~A~^^^1^0.80^0.94^^^^^~04/01/2014~ -~17433~^~309~^1.77^2^^~1~^~A~^^^1^1.56^1.98^^^^^~04/01/2014~ -~17433~^~323~^0.68^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17433~^~342~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17433~^~418~^1.56^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~203~^11.16^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~204~^50.17^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17434~^~205~^2.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~17434~^~207~^0.57^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~255~^35.99^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~303~^1.15^2^^~1~^~A~^^^1^1.10^1.20^^^^^~04/01/2014~ -~17434~^~309~^2.00^2^^~1~^~A~^^^1^1.95^2.04^^^^^~04/01/2014~ -~17434~^~323~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17434~^~342~^0.12^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~343~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~418~^1.62^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17435~^~203~^19.28^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~204~^3.30^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~255~^75.85^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~303~^1.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~309~^3.32^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~418~^1.89^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~203~^27.94^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~204~^7.77^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~205~^0.11^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~255~^61.30^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~303~^2.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~309~^5.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~323~^0.39^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~418~^1.86^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~203~^28.04^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~204~^9.48^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~205~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~207~^1.03^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~255~^61.41^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~303~^0.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~309~^1.81^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~323~^0.39^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~418~^2.75^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~203~^25.72^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~204~^10.57^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~205~^0.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~207~^0.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~255~^62.96^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~303~^1.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~309~^4.71^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~323~^0.47^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~342~^0.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~418~^3.44^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17439~^~203~^28.60^6^^~1~^~A~^^^1^25.48^30.96^^^^~2~^~10/01/2014~ -~17439~^~204~^8.35^6^^~1~^~A~^^^1^5.46^13.33^^^^~2~^~10/01/2014~ -~17439~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~207~^1.17^6^^~1~^~A~^^^1^0.87^1.28^^^^~2~^~10/01/2014~ -~17439~^~255~^63.87^6^^~1~^~A~^^^1^59.46^68.03^^^^~2~^~10/01/2014~ -~17439~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~303~^2.04^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~309~^3.67^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~323~^0.27^0^^~4~^~BFFN~^~17400~^^^^^^^^^~10/01/2014~ -~17439~^~418~^2.45^0^^~4~^~BFPN~^~17400~^^^^^^^^^~10/01/2014~ -~17439~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~203~^30.73^6^^~1~^~A~^^^1^28.13^32.81^^^^~2~^~10/01/2014~ -~17440~^~204~^5.63^6^^~1~^~A~^^^1^4.11^7.13^^^^~2~^~10/01/2014~ -~17440~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~207~^0.90^6^^~1~^~A~^^^1^0.85^0.98^^^^~2~^~10/01/2014~ -~17440~^~255~^64.87^6^^~1~^~A~^^^1^62.54^67.85^^^^~2~^~10/01/2014~ -~17440~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~303~^2.02^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~309~^4.28^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~323~^0.40^0^^~4~^~BFFN~^~17390~^^^^^^^^^~10/01/2014~ -~17440~^~418~^1.51^0^^~4~^~BFPN~^~17390~^^^^^^^^^~10/01/2014~ -~17440~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~203~^22.49^6^^~1~^~A~^^^1^21.27^23.38^^^^~2~^~10/01/2014~ -~17441~^~204~^3.53^6^^~1~^~A~^^^1^2.80^5.21^^^^~2~^~10/01/2014~ -~17441~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~207~^0.96^6^^~1~^~A~^^^1^0.83^1.03^^^^~2~^~10/01/2014~ -~17441~^~255~^74.83^6^^~1~^~A~^^^1^74.09^75.30^^^^~2~^~10/01/2014~ -~17441~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~303~^1.58^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~309~^3.48^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~323~^0.31^0^^~4~^~BFFN~^~17391~^^^^^^^^^~10/01/2014~ -~17441~^~418~^1.58^0^^~4~^~BFPN~^~17391~^^^^^^^^^~10/01/2014~ -~17441~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~203~^30.97^6^^~1~^~A~^^^1^30.50^31.82^^^^~2~^~10/01/2014~ -~17442~^~204~^6.71^6^^~1~^~A~^^^1^5.85^7.62^^^^~2~^~10/01/2014~ -~17442~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~207~^1.49^6^^~1~^~A~^^^1^1.44^1.57^^^^~2~^~10/01/2014~ -~17442~^~255~^62.62^6^^~1~^~A~^^^1^62.15^62.85^^^^~2~^~10/01/2014~ -~17442~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~303~^2.52^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~309~^2.42^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~323~^0.77^0^^~4~^~BFFN~^~17384~^^^^^^^^^~10/01/2014~ -~17442~^~418~^2.67^0^^~4~^~BFPN~^~17384~^^^^^^^^^~12/01/2014~ -~17442~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~203~^23.42^6^^~1~^~A~^^^1^22.62^24.54^^^^~2~^~10/01/2014~ -~17443~^~204~^4.73^6^^~1~^~A~^^^1^3.65^6.12^^^^~2~^~10/01/2014~ -~17443~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~207~^1.09^6^^~1~^~A~^^^1^1.05^1.13^^^^~2~^~10/01/2014~ -~17443~^~255~^72.45^6^^~1~^~A~^^^1^71.88^73.01^^^^~2~^~10/01/2014~ -~17443~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~303~^2.27^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~309~^2.32^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~323~^0.51^0^^~4~^~BFFN~^~17385~^^^^^^^^^~10/01/2014~ -~17443~^~418~^2.14^0^^~4~^~BFPN~^~17385~^^^^^^^^^~10/01/2014~ -~17443~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~203~^22.28^5^^~1~^~A~^^^1^21.26^24.08^^^^~2~^~10/01/2014~ -~17444~^~204~^5.24^5^^~1~^~A~^^^1^3.28^7.02^^^^~2~^~10/01/2014~ -~17444~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~207~^1.05^5^^~1~^~A~^^^1^1.00^1.14^^^^~2~^~10/01/2014~ -~17444~^~255~^72.94^5^^~1~^~A~^^^1^71.52^73.93^^^^~2~^~10/01/2014~ -~17444~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~303~^1.88^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~309~^3.10^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~323~^0.15^0^^~4~^~BFFN~^~17074~^^^^^^^^^~10/01/2014~ -~17444~^~418~^1.73^0^^~4~^~BFPN~^~17074~^^^^^^^^^~10/01/2014~ -~17444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~203~^32.08^6^^~1~^~A~^^^1^29.10^35.32^^^^~2~^~10/01/2014~ -~17445~^~204~^9.59^6^^~1~^~A~^^^1^7.68^11.14^^^^~2~^~10/01/2014~ -~17445~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~207~^1.20^6^^~1~^~A~^^^1^1.10^1.34^^^^~2~^~10/01/2014~ -~17445~^~255~^58.24^6^^~1~^~A~^^^1^54.89^61.74^^^^~2~^~10/01/2014~ -~17445~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~303~^2.55^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~309~^4.15^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~323~^0.31^0^^~4~^~BFFN~^~17400~^^^^^^^^^~10/01/2014~ -~17445~^~418~^2.75^0^^~4~^~BFPN~^~17400~^^^^^^^^^~10/01/2014~ -~17445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~203~^23.11^6^^~1~^~A~^^^1^21.99^24.26^^^^~2~^~10/01/2014~ -~17446~^~204~^4.33^6^^~1~^~A~^^^1^3.29^4.87^^^^~2~^~10/01/2014~ -~17446~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~207~^1.01^6^^~1~^~A~^^^1^0.85^1.11^^^^~2~^~10/01/2014~ -~17446~^~255~^73.02^6^^~1~^~A~^^^1^72.01^74.19^^^^~2~^~10/01/2014~ -~17446~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~303~^2.25^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~309~^2.94^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~323~^0.13^0^^~4~^~BFFN~^~17074~^^^^^^^^^~10/01/2014~ -~17446~^~418~^1.80^0^^~4~^~BFPN~^~17074~^^^^^^^^^~10/01/2014~ -~17446~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~203~^26.52^6^^~1~^~A~^^^1^25.32^27.82^^^^~2~^~10/01/2014~ -~17447~^~204~^7.63^6^^~1~^~A~^^^1^5.36^9.11^^^^~2~^~10/01/2014~ -~17447~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~207~^1.00^6^^~1~^~A~^^^1^0.75^1.10^^^^~2~^~10/01/2014~ -~17447~^~255~^66.02^6^^~1~^~A~^^^1^65.46^67.28^^^^~2~^~10/01/2014~ -~17447~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~303~^1.94^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~309~^2.33^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~323~^0.27^0^^~4~^~BFFN~^~17396~^^^^^^^^^~10/01/2014~ -~17447~^~418~^1.42^0^^~4~^~BFPN~^~17396~^^^^^^^^^~10/01/2014~ -~17447~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17448~^~203~^28.01^5^^~1~^~A~^^^1^27.03^30.11^^^^~2~^~11/01/2014~ -~17448~^~204~^14.64^5^^~1~^~A~^^^1^11.21^18.06^^^^~2~^~11/01/2014~ -~17448~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~207~^1.02^5^^~1~^~A~^^^1^0.96^1.10^^^^~2~^~11/01/2014~ -~17448~^~255~^57.93^5^^~1~^~A~^^^1^55.46^59.78^^^^~2~^~11/01/2014~ -~17448~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~303~^2.63^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~309~^2.98^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~323~^0.51^0^^~4~^~BFFN~^~17396~^^^^^^^^^~11/01/2014~ -~17448~^~418~^1.50^0^^~4~^~BFPN~^~17396~^^^^^^^^^~11/01/2014~ -~17448~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~203~^16.90^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~204~^52.30^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~ -~17449~^~207~^0.75^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~255~^27.09^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~303~^1.98^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~309~^2.13^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~203~^12.59^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~204~^48.50^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~207~^0.56^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~255~^38.41^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~303~^1.08^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~309~^1.41^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~203~^13.81^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~204~^54.72^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~205~^1.55^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~207~^0.67^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~255~^29.25^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~303~^1.39^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~309~^1.80^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~203~^15.65^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~204~^44.01^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~207~^0.66^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~255~^40.32^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~303~^0.98^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~309~^1.10^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17453~^~203~^27.54^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~204~^12.04^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17453~^~207~^1.13^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~255~^60.91^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~303~^2.01^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~309~^3.53^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~418~^2.25^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~203~^20.97^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~204~^11.43^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~255~^67.93^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~303~^1.76^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~309~^2.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~323~^0.13^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~418~^1.48^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~203~^29.52^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~204~^9.50^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17455~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~255~^61.85^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~303~^2.00^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~309~^4.09^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~323~^0.36^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~418~^1.39^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~203~^20.58^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~204~^12.68^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~255~^67.33^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~303~^1.47^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~309~^3.03^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~323~^0.24^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~418~^1.25^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~203~^30.15^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~204~^11.64^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~205~^0.08^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~ -~17457~^~207~^1.14^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~255~^54.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~303~^2.41^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~309~^3.90^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~418~^2.52^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~203~^21.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~204~^9.73^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~207~^0.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~255~^68.68^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~303~^2.09^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~309~^2.72^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~418~^1.56^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~203~^30.87^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~204~^7.02^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17459~^~207~^1.48^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~255~^62.38^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~303~^2.52^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~309~^2.42^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~323~^0.77^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~418~^2.65^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~ -~17459~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~203~^23.23^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~204~^5.52^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~255~^71.83^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~303~^2.25^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~309~^2.30^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~323~^0.50^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~418~^2.10^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17461~^~203~^33.17^3^^~1~^~A~^^^1^32.38^33.95^^^^~2~^~11/01/2014~ -~17461~^~204~^11.50^3^^~1~^~A~^^^1^7.88^14.66^^^^~2~^~11/01/2014~ -~17461~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~207~^1.26^3^^~1~^~A~^^^1^1.21^1.33^^^^~2~^~11/01/2014~ -~17461~^~255~^55.36^3^^~1~^~A~^^^1^51.31^60.15^^^^~2~^~11/01/2014~ -~17461~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~303~^2.46^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~309~^3.79^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~323~^0.40^0^^~4~^~BFFN~^~17396~^^^^^^^^^~11/01/2014~ -~17461~^~418~^1.78^0^^~4~^~BFPN~^~17396~^^^^^^^^^~11/01/2014~ -~17461~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17462~^~203~^25.95^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~204~^9.91^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17462~^~207~^0.98^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~255~^64.15^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~303~^1.92^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~309~^2.31^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~418~^1.35^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~203~^25.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~204~^20.77^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17463~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~255~^53.33^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~303~^2.47^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~309~^2.81^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~323~^0.43^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~418~^1.27^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~203~^30.90^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~204~^16.96^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17464~^~207~^1.19^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~255~^51.74^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~303~^2.37^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~309~^3.56^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~323~^0.35^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~418~^1.55^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~18001~^~203~^10.56^12^0.13^~1~^~A~^^^1^9.62^11.34^9^10.25^10.86^~2, 3~^~03/01/2014~ -~18001~^~204~^1.32^12^0.09^~1~^~A~^^^1^0.82^1.73^9^1.09^1.54^~2, 3~^~03/01/2014~ -~18001~^~205~^52.38^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~207~^1.93^12^0.16^~1~^~A~^^^1^1.68^3.81^3^1.41^2.43^~2, 3~^~03/01/2014~ -~18001~^~209~^37.37^6^0.62^~1~^~A~^^^1^36.00^39.50^2^34.09^40.64^~2, 3~^~03/01/2014~ -~18001~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18001~^~211~^2.34^6^0.21^~1~^~A~^^^1^1.48^2.93^1^-0.19^4.87^~2, 3~^~03/01/2014~ -~18001~^~212~^2.89^6^0.23^~1~^~A~^^^1^2.01^3.49^1^0.33^5.45^~2, 3~^~03/01/2014~ -~18001~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18001~^~214~^3.20^6^0.45^~1~^~A~^^^1^2.00^6.03^1^-1.91^8.32^~2, 3~^~03/01/2014~ -~18001~^~255~^33.81^12^0.30^~1~^~A~^^^1^30.91^35.97^5^33.00^34.60^~2, 3~^~03/01/2014~ -~18001~^~269~^8.43^6^0.13^~1~^~A~^^^1^7.36^9.68^2^7.84^9.02^~2, 3~^~03/01/2014~ -~18001~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18001~^~303~^3.57^12^0.09^~1~^~A~^^^1^3.13^4.17^7^3.35^3.78^~2, 3~^~03/01/2014~ -~18001~^~309~^0.83^12^0.02^~1~^~A~^^^1^0.73^0.98^8^0.78^0.87^~2, 3~^~03/01/2014~ -~18001~^~323~^7.46^2^^~1~^~A~^^^1^0.06^19.79^^^^^~03/01/2014~ -~18001~^~341~^0.06^2^^~1~^~A~^^^1^0.05^0.08^^^^^~03/01/2014~ -~18001~^~342~^0.03^2^^~1~^~A~^^^1^0.00^0.05^^^^~1~^~03/01/2014~ -~18001~^~343~^0.03^2^^~1~^~A~^^^1^0.00^0.07^^^^~1~^~03/01/2014~ -~18001~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~18001~^~345~^0.47^2^^~1~^~A~^^^1^0.38^0.62^^^^^~03/01/2014~ -~18001~^~346~^0.03^2^^~1~^~A~^^^1^0.00^0.08^^^^~1~^~03/01/2014~ -~18001~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~18001~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18001~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18002~^~203~^11.14^2^^~1~^~A~^^^1^10.78^11.50^1^^^^~03/01/2005~ -~18002~^~204~^1.43^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~205~^57.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18002~^~207~^1.76^2^^~1~^~A~^^^1^1.75^1.78^1^^^^~03/01/2005~ -~18002~^~209~^48.70^2^^~1~^~A~^^^1^47.90^49.50^1^^^^~03/01/2005~ -~18002~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2012~ -~18002~^~211~^1.73^2^^~1~^~A~^^^1^1.09^1.11^1^^^^~07/01/2015~ -~18002~^~212~^2.18^2^^~1~^~A~^^^1^1.39^1.39^^^^^~07/01/2015~ -~18002~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2012~ -~18002~^~214~^5.23^2^^~1~^~A~^^^1^3.29^3.37^1^^^^~07/01/2015~ -~18002~^~255~^28.27^2^^~1~^~A~^^^1^26.99^29.55^1^^^^~03/01/2005~ -~18002~^~269~^9.14^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2012~ -~18002~^~303~^4.50^2^^~1~^~A~^^^1^4.40^4.60^1^^^^~03/01/2005~ -~18002~^~309~^1.30^2^^~1~^~A~^^^1^1.30^1.30^^^^^~03/01/2005~ -~18002~^~323~^0.12^2^^~1~^~A~^^^1^0.12^0.13^1^^^^~03/01/2005~ -~18002~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18003~^~203~^10.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~204~^2.10^4^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~205~^53.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18003~^~207~^1.60^3^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~255~^32.70^3^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~303~^3.98^3^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~309~^0.77^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~418~^0.16^8^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~203~^9.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~204~^1.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~205~^55.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~207~^1.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~255~^32.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~269~^5.98^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18005~^~303~^3.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~309~^1.13^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18005~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18006~^~203~^10.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~204~^1.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~205~^59.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~207~^1.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~255~^26.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~269~^6.43^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~18006~^~303~^4.09^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~309~^0.81^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~323~^0.34^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18006~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18007~^~203~^10.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~204~^1.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~205~^53.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~207~^1.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~255~^32.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~269~^1.63^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18007~^~303~^3.08^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~309~^0.90^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~323~^0.33^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18007~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18009~^~203~^6.20^6^0.39^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~204~^11.03^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~18009~^~205~^53.87^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18009~^~207~^2.20^7^0.33^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~255~^26.70^6^1.15^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~269~^3.48^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~18009~^~303~^3.30^21^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~309~^0.48^19^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~323~^1.32^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18009~^~418~^0.14^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18009~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18010~^~203~^8.00^4^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~204~^15.40^3^1.34^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~205~^63.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18010~^~207~^4.00^14^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~255~^9.20^7^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~269~^11.65^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~303~^2.77^3^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~309~^0.60^12^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~323~^0.13^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18010~^~418~^0.39^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18011~^~203~^7.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~204~^12.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~205~^48.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18011~^~207~^3.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~255~^28.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~303~^2.05^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~309~^0.61^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~418~^0.21^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~203~^6.70^29^0.06^~1~^^^^^^^^^^^~04/01/2012~ -~18012~^~204~^7.83^2^^~9~^~MC~^^^1^6.87^8.79^1^^^^~04/01/2012~ -~18012~^~205~^43.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18012~^~207~^4.02^2^^~9~^~MC~^^^1^3.79^4.24^1^^^^~04/01/2012~ -~18012~^~255~^37.76^2^^~9~^~MC~^^^1^36.74^38.78^1^^^^~04/01/2012~ -~18012~^~269~^7.18^2^^~9~^~MC~^^^1^6.77^7.58^1^^^^~04/01/2012~ -~18012~^~303~^2.13^2^^~9~^~MC~^^^1^1.97^2.28^1^^^^~04/01/2012~ -~18012~^~309~^0.39^23^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18012~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18013~^~203~^7.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~204~^9.10^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~ -~18013~^~205~^51.60^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18013~^~207~^3.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~255~^27.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~269~^8.14^0^^~4~^~RK~^^^^^^^^^^~03/01/2006~ -~18013~^~303~^3.09^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~309~^0.46^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~323~^0.07^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18013~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~01/01/2005~ -~18013~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~01/01/2005~ -~18014~^~203~^6.66^6^0.06^~1~^~A~^^^1^6.49^6.84^5^6.49^6.81^~2, 3~^~11/01/2005~ -~18014~^~204~^10.58^2^^~9~^~MC~^^^1^9.61^11.54^1^^^^~05/01/2013~ -~18014~^~205~^46.32^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~207~^3.30^6^0.08^~1~^~A~^^^1^3.06^3.58^5^3.07^3.51^~2, 3~^~11/01/2005~ -~18014~^~255~^33.15^6^0.32^~1~^~A~^^^1^32.09^34.39^5^32.33^33.97^~2, 3~^~11/01/2005~ -~18014~^~269~^7.40^6^0.21^~1~^~A~^^^1^6.79^8.30^5^6.84^7.95^~2, 3~^~11/01/2005~ -~18014~^~303~^2.48^6^0.03^~1~^~A~^^^1^2.33^2.55^5^2.39^2.56^~2, 3~^~11/01/2005~ -~18014~^~309~^0.50^6^0.02^~1~^~A~^^^1^0.42^0.56^5^0.44^0.56^~2, 3~^~11/01/2005~ -~18014~^~323~^0.69^4^0.04^~1~^~A~^^^1^0.57^0.78^3^0.54^0.82^~2, 3~^~11/01/2005~ -~18014~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2012~ -~18014~^~418~^0.05^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~203~^6.79^12^0.06^~1~^~A~^^^1^6.44^7.19^6^6.63^6.95^~2, 3~^~03/01/2014~ -~18015~^~204~^11.22^12^0.29^~1~^~A~^^^1^8.57^14.53^6^10.50^11.92^~2, 3~^~03/01/2014~ -~18015~^~205~^49.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~207~^3.25^12^0.03^~1~^~A~^^^1^3.02^3.43^6^3.17^3.32^~2, 3~^~03/01/2014~ -~18015~^~209~^36.36^6^0.40^~1~^~A~^^^1^34.90^38.40^2^34.86^37.85^~2, 3~^~03/01/2014~ -~18015~^~210~^3.56^6^0.16^~1~^~A~^^^1^0.57^4.83^2^2.95^4.16^~2, 3~^~03/01/2014~ -~18015~^~211~^2.53^6^0.08^~1~^~A~^^^1^1.10^5.27^3^2.25^2.80^~2, 3~^~03/01/2014~ -~18015~^~212~^0.71^6^0.02^~1~^~A~^^^1^0.50^0.85^4^0.65^0.77^~2, 3~^~03/01/2014~ -~18015~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~214~^1.28^6^0.08^~1~^~A~^^^1^0.93^2.26^2^0.95^1.60^~2, 3~^~03/01/2014~ -~18015~^~255~^29.69^12^0.17^~1~^~A~^^^1^27.92^30.67^9^29.28^30.09^~2, 3~^~03/01/2014~ -~18015~^~269~^8.19^6^0.09^~1~^~A~^^^1^7.85^9.06^3^7.86^8.51^~2, 3~^~03/01/2014~ -~18015~^~287~^0.10^6^2.0e-03^~1~^~A~^^^1^0.00^0.17^2^0.09^0.11^~1, 2, 3~^~03/01/2014~ -~18015~^~303~^2.57^12^0.10^~1~^~A~^^^1^2.11^3.55^10^2.34^2.79^~2, 3~^~03/01/2014~ -~18015~^~309~^0.41^12^8.0e-03^~1~^~A~^^^1^0.37^0.47^7^0.39^0.43^~2, 3~^~03/01/2014~ -~18015~^~323~^0.67^2^^~1~^~A~^^^1^0.27^0.89^^^^^~03/01/2014~ -~18015~^~341~^0.10^2^^~1~^~A~^^^1^0.06^0.13^^^^^~03/01/2014~ -~18015~^~342~^3.70^2^^~1~^~A~^^^1^0.45^5.50^^^^^~03/01/2014~ -~18015~^~343~^1.45^2^^~1~^~A~^^^1^0.23^2.12^^^^^~03/01/2014~ -~18015~^~344~^0.04^2^^~1~^~A~^^^1^0.00^0.12^^^^~1~^~03/01/2014~ -~18015~^~345~^0.15^2^^~1~^~A~^^^1^0.13^0.16^^^^^~03/01/2014~ -~18015~^~346~^0.15^2^^~1~^~A~^^^1^0.00^0.43^^^^~1~^~03/01/2014~ -~18015~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~18015~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~18015~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18015~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18016~^~203~^7.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~204~^16.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~205~^44.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18016~^~207~^3.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~255~^28.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~269~^2.18^0^^~4~^~RA~^^^^^^^^^^~01/01/2005~ -~18016~^~303~^2.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~309~^0.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~203~^6.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~204~^5.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~205~^47.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18017~^~207~^3.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~255~^37.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~303~^2.75^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~309~^0.60^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~203~^4.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~204~^10.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~205~^54.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18019~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~255~^29.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~303~^1.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~309~^0.35^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~418~^0.10^0^^~1~^^^^^^^^^^^~04/01/2002~ -~18021~^~203~^5.20^3^0.93^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~204~^1.50^4^0.35^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~205~^43.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18021~^~207~^2.80^5^0.44^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~255~^47.20^3^4.11^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~269~^2.42^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~18021~^~303~^2.10^3^0.75^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~309~^0.50^3^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~323~^0.32^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18021~^~418~^0.01^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18022~^~203~^7.00^56^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~204~^12.20^54^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~205~^69.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18022~^~207~^3.60^46^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~255~^7.80^46^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~269~^20.34^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~18022~^~303~^2.50^42^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~309~^0.57^22^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18022~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18023~^~203~^6.59^12^0.04^~1~^~A~^^^1^6.44^7.12^5^6.49^6.69^~2, 3~^~07/01/2014~ -~18023~^~204~^9.58^12^0.18^~1~^~A~^^^1^7.24^11.23^5^9.11^10.05^~2, 3~^~08/01/2012~ -~18023~^~205~^54.46^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~207~^2.25^12^0.02^~1~^~A~^^^1^1.88^2.35^5^2.17^2.32^~2, 3~^~08/01/2012~ -~18023~^~209~^35.66^6^0.42^~1~^~A~^^^1^34.60^36.50^2^33.82^37.49^~2, 3~^~07/01/2014~ -~18023~^~210~^14.45^6^0.45^~1~^~A~^^^1^7.70^15.80^2^12.49^16.40^~2, 3~^~07/01/2014~ -~18023~^~211~^0.29^6^0.00^~1~^~A~^^^1^0.20^1.60^^^^~2, 3~^~07/01/2014~ -~18023~^~212~^0.20^6^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~08/01/2012~ -~18023~^~213~^1.05^6^0.03^~1~^~A~^^^1^1.00^1.30^2^0.91^1.18^~2, 3~^~08/01/2012~ -~18023~^~214~^0.06^6^0.00^~1~^~A~^^^1^0.00^0.90^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~255~^27.11^12^0.47^~1~^~A~^^^1^24.68^32.45^5^25.90^28.31^~2, 3~^~07/01/2014~ -~18023~^~269~^16.05^6^0.43^~1~^~A~^^^1^11.60^17.20^2^14.20^17.90^~2, 3~^~07/01/2014~ -~18023~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~303~^1.85^12^0.03^~1~^~A~^^^1^1.69^2.33^5^1.76^1.93^~2, 3~^~08/01/2012~ -~18023~^~309~^0.67^12^0.01^~1~^~A~^^^1^0.61^0.74^5^0.63^0.70^~2, 3~^~08/01/2012~ -~18023~^~323~^0.51^6^0.01^~1~^~A~^^^1^0.47^0.86^2^0.45^0.55^~2, 3~^~08/01/2012~ -~18023~^~341~^0.12^6^0.01^~1~^~A~^^^1^0.06^0.16^2^0.05^0.18^~2, 3~^~08/01/2012~ -~18023~^~342~^0.82^6^0.06^~1~^~A~^^^1^0.48^5.70^2^0.58^1.06^~2, 3~^~07/01/2014~ -~18023~^~343~^0.25^6^0.02^~1~^~A~^^^1^0.11^2.49^1^0.05^0.44^~2, 3~^~07/01/2014~ -~18023~^~344~^0.19^6^5.0e-03^~1~^~A~^^^1^0.10^0.21^2^0.16^0.21^~2, 3~^~08/01/2012~ -~18023~^~345~^0.46^6^0.01^~1~^~A~^^^1^0.06^0.51^2^0.39^0.51^~2, 3~^~08/01/2012~ -~18023~^~346~^0.24^6^0.01^~1~^~A~^^^1^0.20^0.25^2^0.19^0.27^~2, 3~^~08/01/2012~ -~18023~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~418~^0.23^2^^~1~^~A~^^^1^0.23^0.28^^^^^~08/01/2012~ -~18023~^~573~^0.00^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18023~^~578~^0.00^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~ -~18024~^~203~^6.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~204~^7.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~205~^43.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18024~^~207~^3.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~255~^39.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~303~^2.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~309~^0.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~418~^0.15^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~203~^8.70^27^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~204~^3.90^27^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~205~^49.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18025~^~207~^2.10^19^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~255~^35.80^23^0.43^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~303~^2.81^26^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~309~^1.24^13^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18027~^~203~^9.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~204~^6.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~205~^47.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18027~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~255~^34.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~269~^1.78^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~303~^3.04^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~309~^0.79^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18027~^~418~^0.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18028~^~203~^10.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~204~^6.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~205~^52.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18028~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~255~^28.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~269~^1.94^0^^~4~^~RK~^^^^^^^^^^~03/01/2009~ -~18028~^~303~^3.34^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~309~^0.86^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~323~^0.29^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18028~^~418~^0.11^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~07/01/2012~ -~18028~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~07/01/2012~ -~18029~^~203~^10.75^6^0.11^~1~^~A~^^^1^10.50^11.30^5^10.44^11.05^~2, 3~^~05/01/2014~ -~18029~^~204~^2.42^6^0.43^~1~^~A~^^^1^1.60^4.00^5^1.31^3.52^~2, 3~^~05/01/2014~ -~18029~^~205~^51.88^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~207~^1.96^6^0.05^~1~^~A~^^^1^1.78^2.14^5^1.80^2.10^~2, 3~^~05/01/2014~ -~18029~^~209~^44.23^3^2.90^~1~^~A~^^^1^38.60^48.30^2^31.72^56.74^~2, 3~^~05/01/2014~ -~18029~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~211~^0.40^3^0.02^~1~^~A~^^^1^0.36^0.45^2^0.29^0.51^~2, 3~^~05/01/2014~ -~18029~^~212~^0.51^3^0.03^~1~^~A~^^^1^0.47^0.57^2^0.38^0.64^~2, 3~^~05/01/2014~ -~18029~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~214~^3.70^3^0.32^~1~^~A~^^^1^3.31^4.34^2^2.32^5.08^~2, 3~^~05/01/2014~ -~18029~^~255~^33.00^5^0.64^~1~^~A~^^^1^31.10^34.40^4^31.20^34.79^~2, 3~^~05/01/2014~ -~18029~^~269~^4.62^3^0.30^~1~^~A~^^^1^4.18^5.20^2^3.31^5.92^~2, 3~^~05/01/2014~ -~18029~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~303~^3.91^6^0.15^~1~^~A~^^^1^3.55^4.66^5^3.50^4.32^~2, 3~^~05/01/2014~ -~18029~^~309~^1.04^6^0.07^~1~^~A~^^^1^0.84^1.35^5^0.85^1.22^~2, 3~^~05/01/2014~ -~18029~^~323~^0.21^3^0.05^~1~^~A~^^^1^0.12^0.31^2^-0.03^0.45^~2, 3~^~05/01/2014~ -~18029~^~341~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.08^0.14^~1, 2, 3~^~05/01/2014~ -~18029~^~342~^0.28^3^0.27^~1~^~A~^^^1^0.00^0.83^2^-0.91^1.47^~1, 2, 3~^~05/01/2014~ -~18029~^~343~^0.07^3^0.07^~1~^~A~^^^1^0.00^0.22^2^-0.24^0.39^~1, 2, 3~^~05/01/2014~ -~18029~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~345~^0.59^3^0.17^~1~^~A~^^^1^0.40^0.93^2^-0.15^1.32^~2, 3~^~05/01/2014~ -~18029~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18029~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18029~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~ -~18030~^~203~^13.00^2^^~1~^~A~^^^1^12.86^13.14^1^^^^~11/01/2005~ -~18030~^~204~^2.14^2^^~1~^~A~^^^1^1.97^2.32^1^^^^~11/01/2005~ -~18030~^~205~^61.93^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~207~^2.31^2^^~1~^~A~^^^1^2.20^2.42^1^^^^~11/01/2005~ -~18030~^~255~^20.61^2^^~1~^~A~^^^1^20.14^21.09^1^^^^~11/01/2005~ -~18030~^~269~^3.59^2^^~1~^~A~^^^1^3.49^3.69^1^^^^~03/01/2006~ -~18030~^~303~^3.87^2^^~1~^~A~^^^1^3.75^3.99^1^^^^~11/01/2005~ -~18030~^~309~^1.05^2^^~1~^~A~^^^1^1.03^1.07^1^^^^~11/01/2005~ -~18030~^~323~^0.19^2^^~1~^~A~^^^1^0.19^0.20^1^^^^~11/01/2005~ -~18030~^~418~^0.00^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18032~^~203~^6.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~204~^5.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~205~^56.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18032~^~207~^1.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~255~^30.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~303~^2.69^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~309~^0.57^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~418~^0.05^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18033~^~203~^9.49^6^0.01^~1~^~A~^^^1^8.87^10.13^1^9.35^9.62^~2, 3~^~01/01/2017~ -~18033~^~204~^2.73^5^0.01^~1~^~A~^^^1^1.24^3.00^1^2.49^2.96^~2, 3~^~01/01/2017~ -~18033~^~205~^48.11^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~207~^2.13^6^0.03^~1~^~A~^^^1^1.60^2.53^1^1.84^2.42^~2, 3~^~01/01/2017~ -~18033~^~209~^38.99^5^0.14^~1~^~A~^^^1^37.40^39.30^2^38.35^39.62^~2, 3~^~01/01/2017~ -~18033~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~211~^0.56^3^9.0e-03^~1~^~A~^^^1^0.35^0.67^1^0.45^0.67^~2, 3~^~01/01/2017~ -~18033~^~212~^0.93^3^0.01^~1~^~A~^^^1^0.78^0.99^1^0.79^1.06^~2, 3~^~01/01/2017~ -~18033~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~214~^3.20^3^0.01^~1~^~A~^^^1^2.10^3.79^1^2.99^3.40^~2, 3~^~01/01/2017~ -~18033~^~255~^37.54^6^0.48^~1~^~A~^^^1^29.73^39.80^1^31.66^43.41^~2, 3~^~01/01/2017~ -~18033~^~269~^4.69^3^0.03^~1~^~A~^^^1^3.23^5.45^1^4.23^5.14^~2, 3~^~01/01/2017~ -~18033~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~303~^3.45^6^0.02^~1~^~A~^^^1^3.20^3.73^1^3.22^3.67^~2, 3~^~01/01/2017~ -~18033~^~309~^0.79^6^9.0e-03^~1~^~A~^^^1^0.70^0.81^2^0.73^0.84^~2, 3~^~01/01/2017~ -~18033~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18033~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2017~ -~18033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18036~^~203~^14.52^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~204~^4.60^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~205~^47.11^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~207~^2.32^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~210~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~211~^1.84^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~212~^2.67^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~213~^0.62^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~214~^1.82^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~255~^31.46^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~269~^6.94^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~303~^2.72^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~309~^1.85^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~323~^0.40^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~341~^0.10^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~342~^1.58^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~343~^0.59^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~344~^0.11^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~345~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~346~^0.02^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~347~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~418~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18037~^~203~^10.40^3^1.45^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~204~^4.40^3^0.70^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~205~^39.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~207~^1.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~255~^44.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~269~^7.70^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18037~^~303~^3.12^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~309~^0.89^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~323~^0.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18037~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18038~^~203~^11.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~204~^4.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~205~^43.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~207~^1.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~255~^38.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~269~^8.46^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18038~^~303~^3.43^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~309~^1.05^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~323~^0.48^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18038~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18039~^~203~^8.40^24^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~204~^4.40^24^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~205~^48.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~207~^2.00^12^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~255~^36.70^14^0.44^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~269~^8.14^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18039~^~303~^2.70^23^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~309~^1.02^11^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~323~^0.48^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18039~^~418~^0.03^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18040~^~203~^9.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~204~^4.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~205~^52.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18040~^~207~^2.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~255~^31.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~269~^8.84^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18040~^~303~^2.94^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~309~^1.11^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~323~^0.53^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18040~^~418~^0.02^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18041~^~203~^9.10^37^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~204~^1.20^36^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~205~^55.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18041~^~207~^1.90^14^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~255~^32.10^17^1.01^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~269~^1.30^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18041~^~303~^2.62^35^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~309~^0.84^13^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18041~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18042~^~203~^9.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~204~^1.71^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18042~^~205~^55.89^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18042~^~207~^2.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~255~^30.60^4^0.37^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~269~^2.87^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~18042~^~303~^3.06^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18042~^~309~^1.52^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~323~^0.61^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18042~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18043~^~203~^12.10^62^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~204~^2.20^62^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~205~^43.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~207~^1.90^10^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~255~^40.00^57^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~269~^1.44^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~303~^4.15^12^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~309~^1.82^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18043~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18044~^~203~^8.70^43^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~204~^3.10^43^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~205~^47.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18044~^~207~^2.60^20^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~255~^37.90^24^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~269~^0.53^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~303~^2.87^35^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~309~^1.48^14^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18044~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18047~^~203~^7.90^55^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~204~^4.40^54^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~205~^52.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18047~^~207~^1.80^22^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~255~^33.60^47^0.28^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~269~^5.68^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18047~^~303~^2.90^24^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~309~^0.72^13^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18047~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18048~^~203~^8.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~204~^4.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~205~^56.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18048~^~207~^1.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~255~^27.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~269~^6.18^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18048~^~303~^3.15^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~309~^0.78^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~323~^0.31^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18048~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18049~^~203~^8.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~204~^3.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~205~^41.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~207~^1.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~255~^46.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~269~^3.52^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18049~^~303~^3.15^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~309~^1.05^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18049~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18050~^~203~^9.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~204~^3.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~205~^49.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~207~^1.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~255~^35.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~269~^4.20^0^^~4~^~RK~^^^^^^^^^^~02/01/2007~ -~18050~^~303~^3.75^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~309~^1.19^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~323~^0.33^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18050~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18051~^~203~^7.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~204~^3.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~205~^43.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~207~^1.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~255~^44.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~303~^2.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~309~^0.83^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18053~^~203~^9.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~204~^2.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~205~^40.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~207~^1.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~255~^46.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~269~^2.29^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18053~^~303~^3.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~309~^0.66^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~323~^0.28^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18053~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18055~^~203~^13.32^3^0.22^~1~^~A~^^^1^13.10^14.00^1^10.46^16.18^~2, 3~^~03/01/2011~ -~18055~^~204~^2.92^3^0.12^~1~^~A~^^^1^2.50^3.10^1^1.33^4.51^~2, 3~^~03/01/2011~ -~18055~^~205~^42.47^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~207~^1.68^3^0.03^~1~^~A~^^^1^1.55^1.88^1^1.23^2.12^~2, 3~^~03/01/2011~ -~18055~^~209~^26.05^3^0.65^~1~^~A~^^^1^25.00^27.60^1^17.79^34.30^~2, 3~^~03/01/2011~ -~18055~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18055~^~211~^0.95^3^0.01^~1~^~A~^^^1^0.67^1.27^1^0.73^1.17^~2, 3~^~03/01/2011~ -~18055~^~212~^1.62^3^0.03^~1~^~A~^^^1^1.40^1.90^1^1.20^2.03^~2, 3~^~03/01/2011~ -~18055~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18055~^~214~^1.14^3^0.01^~1~^~A~^^^1^0.92^1.33^1^0.94^1.33^~2, 3~^~03/01/2011~ -~18055~^~255~^39.60^3^0.35^~1~^~A~^^^1^37.80^40.70^1^35.15^44.04^~2, 3~^~03/01/2011~ -~18055~^~269~^3.71^3^0.00^~1~^~A~^^^1^3.40^4.02^1^3.71^3.71^~2, 3~^~03/01/2011~ -~18055~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18055~^~303~^2.91^3^0.04^~1~^~A~^^^1^2.48^3.44^1^2.30^3.51^~2, 3~^~03/01/2011~ -~18055~^~309~^1.35^3^0.01^~1~^~A~^^^1^1.17^1.56^1^1.15^1.54^~2, 3~^~03/01/2011~ -~18055~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18055~^~341~^0.09^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~342~^0.67^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~344~^0.09^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18055~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18057~^~203~^8.70^27^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~204~^2.50^23^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~205~^44.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~207~^1.70^25^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~255~^42.90^31^0.45^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~269~^4.76^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~18057~^~303~^3.19^15^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~309~^1.34^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~323~^0.19^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18057~^~418~^0.28^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18059~^~203~^8.90^4^0.46^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~204~^4.60^4^0.50^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~205~^43.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~207~^2.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~255~^41.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~269~^4.67^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~18059~^~303~^3.61^4^0.36^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~309~^1.31^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~323~^0.65^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18059~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18059~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18059~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18060~^~203~^8.50^76^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~204~^3.30^78^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~205~^48.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~207~^2.50^41^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~255~^37.30^54^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~269~^3.85^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18060~^~303~^2.83^101^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~309~^1.14^38^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~323~^0.33^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18060~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18061~^~203~^9.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~204~^3.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~205~^53.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~207~^2.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~255~^31.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~269~^4.23^0^^~4~^~RK~^^^^^^^^^^~08/01/2012~ -~18061~^~303~^3.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~309~^1.25^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~323~^0.37^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18061~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18064~^~203~^10.67^9^0.29^~1~^~A~^^^1^9.69^13.88^5^9.90^11.43^~2, 3~^~04/01/2016~ -~18064~^~204~^4.53^9^0.32^~1~^~A~^^^1^3.43^5.60^5^3.68^5.37^~2, 3~^~04/01/2016~ -~18064~^~205~^47.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~207~^2.01^9^0.07^~1~^~A~^^^1^1.71^2.17^5^1.82^2.19^~2, 3~^~04/01/2016~ -~18064~^~209~^36.34^3^1.63^~1~^~A~^^^1^27.00^38.10^1^15.61^57.06^~2, 3~^~04/01/2016~ -~18064~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~211~^1.66^8^0.20^~1~^~A~^^^1^0.89^2.56^5^1.13^2.18^~2, 3~^~04/01/2016~ -~18064~^~212~^2.33^8^0.25^~1~^~A~^^^1^1.58^3.39^5^1.68^2.96^~2, 3~^~04/01/2016~ -~18064~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~214~^1.74^8^0.20^~1~^~A~^^^1^0.77^2.53^5^1.21^2.26^~2, 3~^~04/01/2016~ -~18064~^~255~^35.25^9^0.40^~1~^~A~^^^1^33.25^42.15^5^34.22^36.28^~2, 3~^~04/01/2016~ -~18064~^~269~^5.73^8^0.42^~1~^~A~^^^1^3.34^7.79^5^4.63^6.83^~2, 3~^~04/01/2016~ -~18064~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~303~^3.60^9^0.30^~1~^~A~^^^1^2.54^4.72^5^2.81^4.37^~2, 3~^~04/01/2016~ -~18064~^~309~^1.04^9^0.06^~1~^~A~^^^1^0.88^1.40^5^0.88^1.19^~2, 3~^~04/01/2016~ -~18064~^~323~^0.19^3^0.01^~1~^~A~^^^1^0.17^0.21^2^0.14^0.24^~2, 3~^~11/01/2005~ -~18064~^~341~^0.06^3^3.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.04^0.07^~2, 3~^~03/01/2011~ -~18064~^~342~^1.54^3^0.02^~1~^~A~^^^1^1.49^1.58^2^1.42^1.64^~2, 3~^~03/01/2011~ -~18064~^~343~^0.33^3^9.0e-03^~1~^~A~^^^1^0.32^0.35^2^0.29^0.37^~2, 3~^~03/01/2011~ -~18064~^~344~^0.11^3^3.0e-03^~1~^~A~^^^1^0.10^0.11^2^0.09^0.12^~2, 3~^~03/01/2011~ -~18064~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18064~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18065~^~203~^12.96^3^0.15^~1~^~A~^^^1^12.76^13.27^2^12.27^13.63^~2, 3~^~11/01/2005~ -~18065~^~204~^4.27^3^0.13^~1~^~A~^^^1^4.06^4.53^2^3.67^4.86^~2, 3~^~11/01/2005~ -~18065~^~205~^55.77^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~207~^2.77^3^0.08^~1~^~A~^^^1^2.67^2.94^2^2.39^3.13^~2, 3~^~11/01/2005~ -~18065~^~255~^24.23^3^0.20^~1~^~A~^^^1^23.91^24.61^2^23.35^25.10^~2, 3~^~11/01/2005~ -~18065~^~269~^6.42^3^0.41^~1~^~A~^^^1^5.82^7.21^2^4.64^8.19^~2, 3~^~07/01/2007~ -~18065~^~303~^4.09^3^0.10^~1~^~A~^^^1^3.96^4.30^2^3.64^4.54^~2, 3~^~11/01/2005~ -~18065~^~309~^1.47^3^0.02^~1~^~A~^^^1^1.42^1.51^2^1.35^1.58^~2, 3~^~11/01/2005~ -~18065~^~323~^0.24^3^0.01^~1~^~A~^^^1^0.21^0.26^2^0.17^0.29^~2, 3~^~11/01/2005~ -~18065~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18069~^~203~^8.85^6^0.16^~1~^~A~^^^1^8.17^9.42^5^8.41^9.28^~2, 3~^~05/01/2014~ -~18069~^~204~^3.33^6^0.16^~1~^~A~^^^1^2.70^3.90^5^2.90^3.76^~2, 3~^~05/01/2014~ -~18069~^~205~^49.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18069~^~207~^1.98^6^0.07^~1~^~A~^^^1^1.69^2.23^5^1.78^2.18^~2, 3~^~05/01/2014~ -~18069~^~209~^37.17^14^0.54^~1~^~A~^^^1^27.00^40.90^5^35.79^38.55^~2, 3~^~03/01/2011~ -~18069~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~211~^1.57^3^0.08^~1~^~A~^^^1^1.40^1.70^2^1.18^1.94^~2, 3~^~05/01/2014~ -~18069~^~212~^2.43^3^0.12^~1~^~A~^^^1^2.20^2.60^2^1.91^2.95^~2, 3~^~05/01/2014~ -~18069~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18069~^~214~^1.67^3^0.14^~1~^~A~^^^1^1.40^1.90^2^1.04^2.29^~2, 3~^~05/01/2014~ -~18069~^~255~^36.42^6^0.28^~1~^~A~^^^1^35.70^37.50^5^35.69^37.13^~2, 3~^~05/01/2014~ -~18069~^~269~^5.67^3^0.33^~1~^~A~^^^1^5.00^6.10^2^4.21^7.12^~2, 3~^~05/01/2014~ -~18069~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~303~^3.61^6^0.07^~1~^~A~^^^1^3.35^3.88^5^3.41^3.80^~2, 3~^~05/01/2014~ -~18069~^~309~^0.74^6^0.03^~1~^~A~^^^1^0.66^0.86^5^0.65^0.81^~2, 3~^~05/01/2014~ -~18069~^~323~^0.22^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18069~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2002~ -~18069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18070~^~203~^9.00^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~204~^4.00^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~205~^54.50^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18070~^~207~^2.10^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~255~^30.40^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~269~^6.20^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~ -~18070~^~303~^3.33^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~309~^0.68^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~323~^0.24^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~ -~18070~^~418~^0.02^0^^~4~^^^^^^^^^^^~05/01/2000~ -~18070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18071~^~203~^7.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~204~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~205~^53.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18071~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~255~^34.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~303~^3.18^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~309~^0.59^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~418~^0.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~203~^7.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~204~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~205~^49.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18073~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~255~^35.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~303~^2.97^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~309~^0.64^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18075~^~203~^12.45^10^0.24^~1~^~A~^^^1^11.31^13.56^3^11.67^13.22^~2, 3~^~04/01/2013~ -~18075~^~204~^3.50^10^0.07^~1~^~A~^^^1^3.15^4.00^8^3.33^3.67^~2, 3~^~04/01/2013~ -~18075~^~205~^42.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~207~^2.32^10^0.07^~1~^~A~^^^1^1.95^2.68^6^2.13^2.51^~2, 3~^~04/01/2013~ -~18075~^~209~^28.73^7^1.47^~1~^~A~^^^1^24.00^32.80^5^24.91^32.54^~2, 3~^~04/01/2013~ -~18075~^~210~^0.03^7^0.02^~1~^~A~^^^1^0.00^0.20^3^-0.05^0.11^~1, 2, 3~^~04/01/2013~ -~18075~^~211~^1.07^7^0.14^~1~^~A~^^^1^0.50^2.20^3^0.61^1.52^~2, 3~^~04/01/2013~ -~18075~^~212~^2.21^7^0.19^~1~^~A~^^^1^1.60^3.70^3^1.60^2.81^~2, 3~^~04/01/2013~ -~18075~^~213~^0.01^7^0.01^~1~^~A~^^^1^0.00^0.10^3^-0.02^0.05^~1, 2, 3~^~04/01/2013~ -~18075~^~214~^1.02^7^0.08^~1~^~A~^^^1^0.70^1.50^3^0.73^1.30^~2, 3~^~04/01/2013~ -~18075~^~255~^39.01^10^0.22^~1~^~A~^^^1^36.49^40.33^7^38.48^39.53^~2, 3~^~04/01/2013~ -~18075~^~269~^4.34^7^0.41^~1~^~A~^^^1^3.00^7.50^3^3.02^5.66^~2, 3~^~04/01/2013~ -~18075~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~303~^2.47^10^0.18^~1~^~A~^^^1^1.83^4.61^6^2.02^2.92^~2, 3~^~04/01/2013~ -~18075~^~309~^1.77^10^0.03^~1~^~A~^^^1^1.57^2.08^8^1.68^1.86^~2, 3~^~04/01/2013~ -~18075~^~323~^2.66^5^1.87^~1~^~A~^^^1^0.33^10.69^2^-4.97^10.30^~2, 3~^~04/01/2013~ -~18075~^~341~^0.25^5^0.03^~1~^~A~^^^1^0.10^0.36^3^0.13^0.35^~2, 3~^~04/01/2013~ -~18075~^~342~^0.89^5^0.15^~1~^~A~^^^1^0.43^1.25^3^0.34^1.43^~2, 3~^~04/01/2013~ -~18075~^~343~^0.28^5^0.02^~1~^~A~^^^1^0.23^0.36^3^0.21^0.35^~2, 3~^~04/01/2013~ -~18075~^~344~^0.45^5^0.36^~1~^~A~^^^1^0.07^1.67^1^-4.23^5.13^~2, 3~^~04/01/2013~ -~18075~^~345~^1.30^5^0.12^~1~^~A~^^^1^0.68^1.74^3^0.89^1.70^~2, 3~^~04/01/2013~ -~18075~^~346~^0.42^5^0.42^~1~^~A~^^^1^0.00^1.83^1^-4.92^5.76^~1, 2, 3~^~04/01/2013~ -~18075~^~347~^0.21^5^0.20^~1~^~A~^^^1^0.00^0.90^1^-2.42^2.84^~1, 2, 3~^~04/01/2013~ -~18075~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18075~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18075~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18076~^~203~^16.27^2^^~1~^~A~^^^1^16.05^16.48^1^^^^~11/01/2005~ -~18076~^~204~^4.07^2^^~1~^~A~^^^1^4.06^4.08^1^^^^~11/01/2005~ -~18076~^~205~^51.16^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18076~^~207~^4.25^2^^~1~^~A~^^^1^4.17^4.33^1^^^^~11/01/2005~ -~18076~^~255~^24.25^2^^~1~^~A~^^^1^24.03^24.48^1^^^^~11/01/2005~ -~18076~^~269~^5.77^2^^~1~^~A~^^^1^5.19^6.34^1^^^^~06/01/2009~ -~18076~^~303~^2.96^2^^~1~^~A~^^^1^2.93^3.00^1^^^^~11/01/2005~ -~18076~^~309~^2.15^2^^~1~^~A~^^^1^2.10^2.20^1^^^^~11/01/2005~ -~18076~^~323~^0.63^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18077~^~203~^8.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~204~^5.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~205~^51.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18077~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~255~^32.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~269~^3.84^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~18077~^~303~^3.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~309~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~323~^0.76^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18077~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18078~^~203~^9.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~204~^5.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~205~^56.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18078~^~207~^2.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~255~^26.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~269~^4.22^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~18078~^~303~^3.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~309~^1.65^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~323~^0.84^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18078~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18079~^~203~^13.35^6^0.70^~1~^~A~^^^1^9.92^14.49^5^11.53^15.17^~2, 3~^~01/01/2003~ -~18079~^~204~^5.30^6^0.10^~1~^~A~^^^1^4.81^5.57^5^5.02^5.57^~2, 3~^~01/01/2003~ -~18079~^~205~^71.98^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~207~^2.87^6^0.02^~1~^~A~^^^1^2.81^2.92^5^2.80^2.92^~2, 3~^~01/01/2003~ -~18079~^~209~^59.66^6^0.47^~1~^~A~^^^1^58.00^61.25^5^58.45^60.86^~2, 3~^~01/01/2003~ -~18079~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~211~^1.82^6^0.07^~1~^~A~^^^1^1.53^2.06^5^1.63^2.01^~2, 3~^~01/01/2003~ -~18079~^~212~^2.46^6^0.07^~1~^~A~^^^1^2.26^2.73^5^2.28^2.64^~2, 3~^~01/01/2003~ -~18079~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~214~^1.92^6^0.05^~1~^~A~^^^1^1.76^2.09^5^1.77^2.06^~2, 3~^~01/01/2003~ -~18079~^~255~^6.51^6^0.15^~1~^~A~^^^1^6.12^7.02^5^6.11^6.90^~2, 3~^~01/01/2003~ -~18079~^~269~^6.20^6^0.13^~1~^~A~^^^1^5.69^6.55^5^5.84^6.55^~2, 3~^~01/01/2007~ -~18079~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~303~^4.83^6^0.15^~1~^~A~^^^1^4.48^5.36^5^4.43^5.22^~2, 3~^~01/01/2003~ -~18079~^~309~^1.45^6^0.02^~1~^~A~^^^1^1.39^1.51^5^1.39^1.49^~2, 3~^~01/01/2003~ -~18079~^~323~^0.08^3^3.0e-03^~1~^~A~^^^1^0.07^0.08^2^0.06^0.09^~2, 3~^~01/01/2003~ -~18079~^~341~^0.04^3^3.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.05^~2, 3~^~01/01/2003~ -~18079~^~342~^0.76^3^0.05^~1~^~A~^^^1^0.67^0.85^2^0.53^0.98^~2, 3~^~01/01/2003~ -~18079~^~343~^0.18^3^0.08^~1~^~A~^^^1^0.01^0.28^2^-0.19^0.55^~2, 3~^~01/01/2003~ -~18079~^~344~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~01/01/2003~ -~18079~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~346~^1.04^3^0.13^~1~^~A~^^^1^0.80^1.27^2^0.45^1.62^~2, 3~^~01/01/2003~ -~18079~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~418~^0.35^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~18079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18080~^~203~^12.00^8^0.35^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~204~^9.50^7^1.65^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~205~^68.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18080~^~207~^3.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~255~^6.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~269~^1.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~303~^4.28^8^0.39^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~309~^0.88^4^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~323~^1.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18080~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18081~^~203~^11.00^59^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~204~^3.40^58^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~205~^76.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18081~^~207~^5.20^11^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~255~^4.20^11^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~269~^8.27^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~18081~^~303~^3.81^63^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~309~^0.93^10^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~323~^0.38^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18081~^~418~^0.02^5^4.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18082~^~203~^2.73^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~204~^12.05^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~205~^18.84^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18082~^~207~^1.61^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~255~^64.77^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~269~^2.04^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~303~^0.95^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~309~^0.23^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~323~^1.34^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~418~^0.02^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18084~^~203~^10.00^20^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~204~^4.20^20^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~205~^76.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18084~^~207~^4.40^3^0.83^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~255~^4.60^3^0.56^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~269~^13.16^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~18084~^~303~^3.25^20^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~309~^0.75^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~418~^0.01^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18085~^~203~^2.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~204~^8.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~205~^21.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~207~^1.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~255~^64.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18085~^~303~^0.94^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~309~^0.23^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~323~^0.85^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18085~^~418~^0.01^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18086~^~203~^5.90^3^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~204~^0.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~205~^57.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~207~^2.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~255~^33.20^3^0.91^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~303~^0.52^3^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~309~^0.07^5^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~418~^0.06^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18088~^~203~^6.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~204~^0.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~205~^58.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~207~^2.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~255~^32.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~269~^30.51^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~18088~^~303~^0.23^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~309~^0.13^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~323~^0.01^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18088~^~418~^0.03^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18090~^~203~^2.40^3^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~204~^8.50^4^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~205~^42.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18090~^~207~^0.70^5^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~255~^45.40^3^2.18^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~269~^36.11^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18090~^~303~^0.38^3^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~309~^0.16^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18090~^~418~^0.16^8^4.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18092~^~203~^5.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~204~^9.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~205~^79.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18092~^~207~^2.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~255~^3.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~303~^1.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~309~^0.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~203~^2.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~204~^12.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~205~^38.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18095~^~207~^1.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~255~^46.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~269~^32.94^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18095~^~303~^1.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~309~^0.28^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~323~^0.75^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18095~^~418~^0.21^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18095~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~18096~^~203~^3.48^6^0.16^~1~^~A~^^^1^3.00^4.25^5^3.04^3.91^~2, 3~^~07/01/2011~ -~18096~^~204~^20.05^6^1.45^~1~^~A~^^^1^13.75^23.81^5^16.32^23.78^~2, 3~^~07/01/2011~ -~18096~^~205~^52.84^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~207~^1.58^6^0.05^~1~^~A~^^^1^1.45^1.81^5^1.44^1.71^~2, 3~^~07/01/2011~ -~18096~^~209~^7.45^6^0.74^~1~^~A~^^^1^5.60^10.80^5^5.54^9.36^~2, 3~^~08/01/2012~ -~18096~^~210~^37.12^3^2.88^~1~^~A~^^^1^31.44^40.82^2^24.71^49.53^~2, 3~^~07/01/2011~ -~18096~^~211~^1.42^3^0.80^~1~^~A~^^^1^0.56^3.03^2^-2.03^4.88^~2, 3~^~07/01/2011~ -~18096~^~212~^0.82^3^0.66^~1~^~A~^^^1^0.00^2.14^2^-2.03^3.68^~1, 2, 3~^~07/01/2011~ -~18096~^~213~^0.46^3^0.04^~1~^~A~^^^1^0.41^0.56^2^0.25^0.67^~2, 3~^~07/01/2011~ -~18096~^~214~^0.12^3^0.12^~1~^~A~^^^1^0.00^0.37^2^-0.40^0.65^~1, 2, 3~^~07/01/2011~ -~18096~^~255~^22.04^6^1.21^~1~^~A~^^^1^18.28^26.85^5^18.92^25.16^~2, 3~^~07/01/2011~ -~18096~^~269~^39.96^3^1.26^~1~^~A~^^^1^37.54^41.79^2^34.53^45.38^~2, 3~^~07/01/2011~ -~18096~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~303~^3.04^6^0.15^~1~^~A~^^^1^2.67^3.65^5^2.64^3.43^~2, 3~^~07/01/2011~ -~18096~^~309~^0.58^6^0.03^~1~^~A~^^^1^0.49^0.68^5^0.50^0.66^~2, 3~^~07/01/2011~ -~18096~^~323~^4.33^3^0.44^~1~^~A~^^^1^3.56^5.10^2^2.42^6.24^~2, 3~^~08/01/2012~ -~18096~^~341~^0.14^3^0.02^~1~^~A~^^^1^0.10^0.19^2^0.03^0.25^~2, 3~^~08/01/2012~ -~18096~^~342~^7.48^3^1.20^~1~^~A~^^^1^5.08^8.81^2^2.31^12.64^~2, 3~^~08/01/2012~ -~18096~^~343~^1.96^3^0.40^~1~^~A~^^^1^1.17^2.47^2^0.23^3.68^~2, 3~^~08/01/2012~ -~18096~^~344~^0.45^3^0.21^~1~^~A~^^^1^0.04^0.79^2^-0.49^1.38^~2, 3~^~08/01/2012~ -~18096~^~345~^0.05^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.05^0.15^~1, 2, 3~^~08/01/2012~ -~18096~^~346~^0.73^3^0.32^~1~^~A~^^^1^0.14^1.25^2^-0.65^2.10^~2, 3~^~08/01/2012~ -~18096~^~347~^0.22^3^0.08^~1~^~A~^^^1^0.08^0.38^2^-0.14^0.59^~2, 3~^~08/01/2012~ -~18096~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~573~^0.00^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18096~^~578~^0.00^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~ -~18097~^~203~^4.60^50^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~204~^8.14^0^^~4~^~T~^^^^^^^^^^~05/01/2013~ -~18097~^~205~^80.16^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18097~^~207~^3.20^45^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~255~^3.90^48^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~269~^39.53^0^^~4~^~T~^^^^^^^^^^~05/01/2013~ -~18097~^~303~^2.92^44^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~309~^0.78^36^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~323~^0.65^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18097~^~418~^0.50^6^0.00^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18101~^~203~^5.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~204~^15.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~205~^53.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~207~^1.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~255~^24.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~303~^1.61^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~309~^0.69^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~418~^0.16^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18102~^~203~^4.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~204~^10.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~205~^63.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18102~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~255~^20.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~269~^57.39^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~ -~18102~^~303~^1.16^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~309~^0.33^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~323~^0.12^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18102~^~418~^0.06^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18102~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18103~^~203~^7.00^4^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~204~^15.20^4^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~205~^44.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18103~^~207~^1.20^4^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~255~^32.20^4^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~303~^0.64^4^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~309~^0.59^4^4.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~418~^0.34^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~203~^6.80^8^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~204~^23.30^10^1.74^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~205~^46.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18104~^~207~^1.40^10^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~255~^21.90^9^1.78^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~303~^1.91^33^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~309~^0.81^33^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~418~^0.18^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~203~^5.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~204~^10.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~205~^53.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18105~^~207~^1.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~255~^29.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~303~^0.51^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~309~^0.44^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~418~^0.20^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18106~^~203~^5.20^3^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~204~^10.20^4^2.60^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~205~^51.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18106~^~207~^1.20^5^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~255~^31.70^3^3.83^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~303~^2.43^3^0.42^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~309~^0.65^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18108~^~203~^5.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~204~^9.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~205~^52.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~207~^1.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~255~^30.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~269~^29.53^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~303~^1.43^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~309~^0.45^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~323~^0.20^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~18108~^~418~^0.14^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18108~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~18110~^~203~^2.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~204~^9.10^4^1.07^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~205~^61.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18110~^~207~^1.00^4^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~255~^25.30^3^1.76^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~269~^27.42^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18110~^~303~^2.07^3^0.43^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~309~^0.27^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~323~^0.90^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18110~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18114~^~203~^4.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~204~^13.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~205~^74.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18114~^~207~^2.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~255~^4.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~269~^46.62^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18114~^~303~^4.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~309~^0.36^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~323~^0.20^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18114~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18116~^~203~^3.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~204~^16.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~205~^49.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18116~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~255~^28.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~303~^2.88^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~309~^0.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~418~^0.06^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~203~^3.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~204~^12.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~205~^50.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18119~^~207~^1.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~255~^32.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~303~^1.48^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~309~^0.31^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18120~^~203~^5.00^9^0.09^~1~^~A~^^^1^4.56^5.56^5^4.74^5.24^~2, 3~^~04/01/2013~ -~18120~^~204~^13.96^9^1.36^~1~^~A~^^^1^9.85^19.64^5^10.48^17.44^~2, 3~^~04/01/2013~ -~18120~^~205~^53.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~207~^1.53^9^0.14^~1~^~A~^^^1^0.96^1.86^5^1.15^1.90^~2, 3~^~04/01/2013~ -~18120~^~209~^17.36^6^0.44^~1~^~A~^^^1^16.40^18.40^2^15.43^19.28^~2, 3~^~04/01/2013~ -~18120~^~210~^30.68^6^0.64^~1~^~A~^^^1^28.60^32.10^2^28.02^33.33^~2, 3~^~04/01/2013~ -~18120~^~211~^0.75^6^0.14^~1~^~A~^^^1^0.40^1.10^2^0.17^1.31^~2, 3~^~04/01/2013~ -~18120~^~212~^0.33^6^0.02^~1~^~A~^^^1^0.30^0.40^2^0.21^0.44^~2, 3~^~04/01/2013~ -~18120~^~213~^1.27^6^0.03^~1~^~A~^^^1^0.50^1.50^4^1.17^1.36^~2, 3~^~04/01/2013~ -~18120~^~214~^0.33^6^0.10^~1~^~A~^^^1^0.07^0.50^2^-0.10^0.77^~1, 2, 3~^~04/01/2013~ -~18120~^~255~^25.87^9^0.31^~1~^~A~^^^1^23.68^27.57^6^25.11^26.62^~2, 3~^~04/01/2013~ -~18120~^~269~^33.36^6^0.57^~1~^~A~^^^1^30.80^34.70^2^30.93^35.78^~2, 3~^~04/01/2013~ -~18120~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~303~^1.48^9^0.04^~1~^~A~^^^1^0.52^1.73^3^1.34^1.61^~2, 3~^~04/01/2013~ -~18120~^~309~^0.43^9^0.01^~1~^~A~^^^1^0.40^0.49^7^0.40^0.45^~2, 3~^~04/01/2013~ -~18120~^~323~^0.65^6^0.03^~1~^~A~^^^1^0.54^1.09^4^0.55^0.73^~2, 3~^~04/01/2013~ -~18120~^~341~^0.04^6^3.0e-03^~1~^~A~^^^1^0.00^0.05^2^0.02^0.05^~1, 2, 3~^~04/01/2013~ -~18120~^~342~^2.82^6^0.19^~1~^~A~^^^1^0.51^3.42^2^2.07^3.57^~2, 3~^~04/01/2013~ -~18120~^~343~^0.97^6^0.06^~1~^~A~^^^1^0.00^1.14^2^0.72^1.22^~1, 2, 3~^~04/01/2013~ -~18120~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~347~^0.32^6^0.31^~1~^~A~^^^1^0.00^1.19^2^-1.05^1.68^~1, 2, 3~^~04/01/2013~ -~18120~^~418~^0.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18120~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~18121~^~203~^5.20^13^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~204~^17.90^14^1.05^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~205~^52.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18121~^~207~^1.40^12^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~255~^23.10^13^0.84^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~303~^1.62^6^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~309~^0.39^4^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~418~^0.14^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~203~^6.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~204~^14.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~205~^48.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18126~^~207~^2.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~255~^28.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~303~^2.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~309~^0.48^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~418~^0.07^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18127~^~203~^3.63^2^^~1~^~A~^^^1^3.28^3.98^1^^^^~10/01/2005~ -~18127~^~204~^15.93^2^^~1~^~A~^^^1^10.87^20.99^1^^^^~10/01/2005~ -~18127~^~205~^60.31^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~207~^1.56^2^^~1~^~A~^^^1^1.23^1.90^1^^^^~10/01/2005~ -~18127~^~255~^18.57^2^^~1~^~A~^^^1^15.73^21.41^1^^^^~10/01/2005~ -~18127~^~269~^37.76^2^^~1~^~A~^^^1^37.13^38.40^1^^^^~10/01/2005~ -~18127~^~303~^3.60^2^^~1~^~A~^^^1^2.90^4.30^1^^^^~10/01/2005~ -~18127~^~309~^1.04^2^^~1~^~A~^^^1^0.69^1.40^1^^^^~10/01/2005~ -~18127~^~323~^1.09^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~418~^0.06^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18127~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18128~^~203~^3.47^2^^~1~^~A~^^^1^3.31^3.62^1^^^^~10/01/2007~ -~18128~^~204~^11.54^2^^~1~^~A~^^^1^11.49^11.59^1^^^^~10/01/2007~ -~18128~^~205~^64.03^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~207~^1.36^2^^~1~^~A~^^^1^1.20^1.52^1^^^^~10/01/2007~ -~18128~^~209~^17.70^2^^~1~^~A~^^^1^16.40^19.00^1^^^^~10/01/2007~ -~18128~^~210~^28.90^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18128~^~211~^5.82^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18128~^~212~^2.54^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18128~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2007~ -~18128~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2007~ -~18128~^~255~^19.60^2^^~1~^~A~^^^1^18.06^21.14^1^^^^~10/01/2007~ -~18128~^~269~^37.30^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~ -~18128~^~303~^1.36^2^^~1~^~A~^^^1^0.82^1.90^1^^^^~10/01/2007~ -~18128~^~309~^0.60^2^^~1~^~A~^^^1^0.45^0.75^1^^^^~10/01/2007~ -~18128~^~323~^0.62^2^^~1~^~A~^^^1^0.35^0.89^1^^^^~10/01/2007~ -~18128~^~341~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~10/01/2007~ -~18128~^~342~^2.67^2^^~1~^~A~^^^1^1.96^3.38^1^^^^~10/01/2007~ -~18128~^~343~^0.75^2^^~1~^~A~^^^1^0.64^0.87^1^^^^~10/01/2007~ -~18128~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18128~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18128~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18128~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18128~^~418~^0.19^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18131~^~203~^3.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~204~^8.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~205~^79.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~207~^2.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~255~^6.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~303~^1.99^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~309~^0.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~203~^5.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~204~^2.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~205~^61.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18133~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~255~^29.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~269~^36.66^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18133~^~303~^2.72^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~309~^0.51^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18133~^~418~^0.24^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18134~^~203~^7.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~204~^4.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~205~^57.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18134~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~255~^29.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~303~^1.58^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~309~^0.59^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~418~^0.37^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~203~^3.90^16^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~204~^9.50^16^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~205~^80.90^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~207~^2.20^13^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~255~^3.50^16^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~269~^48.95^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18135~^~303~^1.36^8^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~309~^0.25^13^4.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18135~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18139~^~203~^5.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~204~^12.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~205~^57.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18139~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~255~^23.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~269~^35.49^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~18139~^~303~^1.52^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~309~^0.32^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~323~^0.12^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18139~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18140~^~203~^3.16^6^0.11^~1~^~A~^^^1^2.81^3.62^5^2.86^3.45^~2, 3~^~07/01/2011~ -~18140~^~204~^17.75^6^1.14^~1~^~A~^^^1^14.00^21.36^5^14.81^20.68^~2, 3~^~07/01/2011~ -~18140~^~205~^55.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~207~^1.35^6^0.03^~1~^~A~^^^1^1.27^1.47^5^1.27^1.43^~2, 3~^~07/01/2011~ -~18140~^~209~^8.55^6^0.86^~1~^~A~^^^1^5.90^12.30^5^6.32^10.77^~2, 3~^~08/01/2012~ -~18140~^~210~^36.51^3^4.07^~1~^~A~^^^1^28.36^40.80^2^18.96^54.05^~2, 3~^~07/01/2011~ -~18140~^~211~^1.29^3^0.52^~1~^~A~^^^1^0.70^2.34^2^-0.97^3.55^~2, 3~^~07/01/2011~ -~18140~^~212~^0.62^3^0.44^~1~^~A~^^^1^0.00^1.49^2^-1.30^2.54^~1, 2, 3~^~07/01/2011~ -~18140~^~213~^0.59^3^0.03^~1~^~A~^^^1^0.52^0.64^2^0.43^0.74^~2, 3~^~07/01/2011~ -~18140~^~214~^0.21^3^0.20^~1~^~A~^^^1^0.00^0.62^2^-0.68^1.09^~1, 2, 3~^~07/01/2011~ -~18140~^~255~^22.38^6^1.39^~1~^~A~^^^1^18.74^28.40^5^18.78^25.96^~2, 3~^~07/01/2011~ -~18140~^~269~^39.22^3^2.89^~1~^~A~^^^1^33.42^42.21^2^26.74^51.68^~2, 3~^~07/01/2011~ -~18140~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~303~^2.03^6^0.21^~1~^~A~^^^1^1.31^2.61^5^1.49^2.56^~2, 3~^~07/01/2011~ -~18140~^~309~^0.42^6^0.02^~1~^~A~^^^1^0.32^0.50^5^0.34^0.49^~2, 3~^~07/01/2011~ -~18140~^~323~^4.50^3^0.38^~1~^~A~^^^1^4.01^5.26^2^2.83^6.16^~2, 3~^~08/01/2012~ -~18140~^~341~^0.14^3^0.03^~1~^~A~^^^1^0.08^0.18^2^-1.0e-03^0.29^~2, 3~^~08/01/2012~ -~18140~^~342~^7.65^3^1.59^~1~^~A~^^^1^4.50^9.68^2^0.78^14.52^~2, 3~^~08/01/2012~ -~18140~^~343~^2.09^3^0.56^~1~^~A~^^^1^0.97^2.74^2^-0.33^4.51^~2, 3~^~08/01/2012~ -~18140~^~344~^0.50^3^0.18^~1~^~A~^^^1^0.16^0.81^2^-0.30^1.30^~2, 3~^~08/01/2012~ -~18140~^~345~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.09^2^-0.03^0.13^~2, 3~^~08/01/2012~ -~18140~^~346~^0.79^3^0.30^~1~^~A~^^^1^0.28^1.33^2^-0.51^2.10^~2, 3~^~08/01/2012~ -~18140~^~347~^0.28^3^0.09^~1~^~A~^^^1^0.13^0.45^2^-0.13^0.68^~2, 3~^~08/01/2012~ -~18140~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~573~^0.00^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~ -~18140~^~578~^0.00^0^^~4~^~BFSN~^~18128~^^^^^^^^^~02/01/2013~ -~18141~^~203~^2.99^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18141~^~204~^17.91^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18141~^~205~^56.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18141~^~207~^0.81^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~255~^22.10^4^1.32^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~269~^41.79^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~18141~^~303~^1.07^29^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~309~^0.25^27^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~323~^1.19^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~418~^0.15^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18142~^~203~^4.00^46^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~204~^9.80^46^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~205~^80.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18142~^~207~^2.20^45^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~255~^4.00^48^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~269~^44.21^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18142~^~303~^1.57^43^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~309~^0.27^26^8.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~323~^0.77^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18142~^~418~^0.05^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18144~^~203~^3.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~204~^3.50^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~18144~^~205~^81.92^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18144~^~207~^3.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~255~^7.18^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~269~^43.29^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~303~^2.08^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~309~^0.27^43^9.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~323~^0.92^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18144~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18146~^~203~^5.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~204~^14.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~205~^53.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18146~^~207~^1.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~255~^25.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~303~^1.64^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~309~^0.45^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~418~^0.16^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~203~^5.50^4^0.55^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~204~^22.50^5^1.51^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~205~^25.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18147~^~207~^0.90^6^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~255~^45.60^4^1.28^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~269~^21.80^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~303~^0.63^4^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~309~^0.51^4^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~323~^0.56^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18147~^~418~^0.17^8^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~18147~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18148~^~203~^5.50^6^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~204~^12.70^7^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~205~^35.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18148~^~207~^2.00^8^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~255~^44.20^6^0.96^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~303~^0.47^6^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~309~^0.46^4^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~418~^0.31^10^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~203~^4.80^19^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~204~^16.30^21^0.61^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~205~^63.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18151~^~207~^1.30^16^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~255~^13.60^15^0.64^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~269~^36.61^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18151~^~303~^2.25^18^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~309~^0.72^9^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18151~^~418~^0.07^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18152~^~203~^4.00^37^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~204~^14.90^39^0.59^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~205~^76.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18152~^~207~^1.30^29^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~255~^2.80^40^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~303~^1.99^32^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~309~^0.64^25^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~203~^6.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~204~^29.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~205~^50.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18154~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~255~^12.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~303~^1.84^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~309~^0.97^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~418~^0.16^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~203~^6.10^10^0.41^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~204~^18.80^14^0.95^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~205~^68.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18155~^~207~^1.50^12^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~255~^4.60^9^0.49^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~269~^20.24^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18155~^~303~^2.22^3^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~309~^0.38^3^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~323~^0.58^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18155~^~418~^0.36^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18156~^~203~^5.00^35^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~204~^3.70^35^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~205~^78.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18156~^~207~^0.90^35^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~255~^11.80^35^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~303~^2.48^38^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~309~^0.55^7^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~418~^0.08^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18157~^~203~^6.60^17^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~204~^14.20^15^1.02^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~205~^72.70^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18157~^~207~^2.00^14^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~255~^4.50^14^0.36^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~269~^37.43^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~303~^4.01^17^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~309~^1.09^15^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~323~^0.72^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18157~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18157~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18158~^~203~^5.97^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~204~^17.91^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~205~^67.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~207~^1.27^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~255~^7.36^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~269~^32.84^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~303~^3.22^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~309~^0.59^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~323~^1.47^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18158~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18159~^~203~^5.10^12^0.06^~1~^~A~^^^1^4.77^5.79^9^4.94^5.25^~2, 3~^~07/01/2014~ -~18159~^~204~^24.72^12^0.18^~1~^~A~^^^1^23.00^30.00^9^24.31^25.13^~2, 3~^~07/01/2014~ -~18159~^~205~^65.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~207~^1.25^12^0.02^~1~^~A~^^^1^1.08^1.47^6^1.18^1.30^~2, 3~^~07/01/2014~ -~18159~^~209~^28.32^6^0.40^~1~^~A~^^^1^26.10^30.10^2^26.55^30.07^~2, 3~^~07/01/2014~ -~18159~^~210~^31.29^6^0.28^~1~^~A~^^^1^28.99^32.46^3^30.33^32.25^~2, 3~^~07/01/2014~ -~18159~^~211~^1.21^6^0.03^~1~^~A~^^^1^1.05^1.49^2^1.08^1.33^~2, 3~^~07/01/2014~ -~18159~^~212~^0.39^6^7.0e-03^~1~^~A~^^^1^0.34^0.56^3^0.36^0.41^~2, 3~^~07/01/2014~ -~18159~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~255~^3.57^12^0.06^~1~^~A~^^^1^2.11^4.03^10^3.43^3.70^~2, 3~^~07/01/2014~ -~18159~^~269~^32.90^6^0.25^~1~^~A~^^^1^31.01^33.85^3^32.00^33.79^~2, 3~^~07/01/2014~ -~18159~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~303~^5.58^12^0.08^~1~^~A~^^^1^5.14^7.00^9^5.38^5.76^~2, 3~^~07/01/2014~ -~18159~^~309~^0.72^12^0.01^~1~^~A~^^^1^0.62^0.87^6^0.68^0.75^~2, 3~^~07/01/2014~ -~18159~^~323~^2.01^6^0.07^~1~^~A~^^^1^1.12^2.36^2^1.72^2.29^~2, 3~^~07/01/2014~ -~18159~^~341~^0.28^6^0.01^~1~^~A~^^^1^0.24^0.33^3^0.23^0.32^~2, 3~^~02/01/2013~ -~18159~^~342~^9.76^6^0.32^~1~^~A~^^^1^8.64^10.53^2^8.42^11.09^~2, 3~^~07/01/2014~ -~18159~^~343~^2.89^6^0.14^~1~^~A~^^^1^2.53^3.48^3^2.42^3.36^~2, 3~^~07/01/2014~ -~18159~^~344~^0.07^6^0.01^~1~^~A~^^^1^0.00^0.15^2^1.0e-03^0.13^~1, 2, 3~^~07/01/2014~ -~18159~^~345~^0.61^6^0.03^~1~^~A~^^^1^0.53^0.68^2^0.47^0.74^~2, 3~^~02/01/2013~ -~18159~^~346~^0.08^6^0.01^~1~^~A~^^^1^0.00^0.32^3^0.03^0.13^~1, 2, 3~^~07/01/2014~ -~18159~^~347~^0.04^6^0.02^~1~^~A~^^^1^0.00^0.15^3^-0.05^0.14^~1, 2, 3~^~02/01/2013~ -~18159~^~418~^0.03^2^^~1~^~A~^^^1^0.00^0.10^^^^~1~^~07/01/2014~ -~18159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18160~^~203~^3.63^6^0.06^~1~^~A~^^^1^3.48^3.82^5^3.47^3.78^~2, 3~^~02/01/2013~ -~18160~^~204~^19.77^6^0.13^~1~^~A~^^^1^19.40^20.20^5^19.42^20.10^~2, 3~^~02/01/2013~ -~18160~^~205~^65.75^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~207~^0.97^6^0.02^~1~^~A~^^^1^0.90^1.05^5^0.90^1.04^~2, 3~^~02/01/2013~ -~18160~^~209~^23.97^3^0.14^~1~^~A~^^^1^23.70^24.20^2^23.34^24.59^~2, 3~^~02/01/2013~ -~18160~^~210~^22.12^3^0.14^~1~^~A~^^^1^21.87^22.36^2^21.51^22.73^~2, 3~^~02/01/2013~ -~18160~^~211~^8.34^3^0.07^~1~^~A~^^^1^8.21^8.46^2^8.02^8.65^~2, 3~^~02/01/2013~ -~18160~^~212~^6.33^3^0.04^~1~^~A~^^^1^6.25^6.37^2^6.15^6.50^~2, 3~^~02/01/2013~ -~18160~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~214~^0.31^3^0.01^~1~^~A~^^^1^0.28^0.33^2^0.24^0.36^~2, 3~^~02/01/2013~ -~18160~^~255~^9.88^6^0.08^~1~^~A~^^^1^9.53^10.10^5^9.67^10.08^~2, 3~^~02/01/2013~ -~18160~^~269~^37.10^3^0.10^~1~^~A~^^^1^36.92^37.28^2^36.65^37.54^~2, 3~^~02/01/2013~ -~18160~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~18160~^~303~^4.07^6^0.10^~1~^~A~^^^1^3.87^4.54^5^3.80^4.33^~2, 3~^~02/01/2013~ -~18160~^~309~^0.54^6^7.0e-03^~1~^~A~^^^1^0.53^0.57^5^0.52^0.55^~2, 3~^~02/01/2013~ -~18160~^~323~^1.55^3^0.15^~1~^~A~^^^1^1.27^1.79^2^0.89^2.19^~2, 3~^~02/01/2013~ -~18160~^~341~^0.10^3^8.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.06^0.14^~2, 3~^~02/01/2013~ -~18160~^~342~^0.81^3^0.10^~1~^~A~^^^1^0.67^1.02^2^0.34^1.27^~2, 3~^~02/01/2013~ -~18160~^~343~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.05^0.13^~1, 2, 3~^~02/01/2013~ -~18160~^~344~^1.60^3^0.14^~1~^~A~^^^1^1.35^1.84^2^0.99^2.20^~2, 3~^~02/01/2013~ -~18160~^~345~^0.61^3^0.05^~1~^~A~^^^1^0.52^0.70^2^0.39^0.83^~2, 3~^~02/01/2013~ -~18160~^~346~^2.27^3^0.18^~1~^~A~^^^1^1.94^2.56^2^1.49^3.05^~2, 3~^~02/01/2013~ -~18160~^~347~^0.69^3^0.04^~1~^~A~^^^1^0.63^0.79^2^0.49^0.90^~2, 3~^~02/01/2013~ -~18160~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~18161~^~203~^4.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~204~^25.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~205~^66.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~207~^1.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~255~^3.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~303~^2.07^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~309~^0.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~203~^3.98^2^^~9~^~MC~^^^1^3.82^4.14^1^^^^~04/01/2012~ -~18163~^~204~^21.33^2^^~9~^~MC~^^^1^21.26^21.39^1^^^^~04/01/2012~ -~18163~^~205~^61.02^2^^~9~^~MC~^^^1^60.75^61.28^1^^^^~04/01/2012~ -~18163~^~207~^1.54^2^^~9~^~MC~^^^1^1.37^1.70^1^^^^~04/01/2012~ -~18163~^~255~^12.08^2^^~9~^~MC~^^^1^11.38^12.78^1^^^^~04/01/2012~ -~18163~^~269~^38.04^2^^~9~^~MC~^^^1^37.67^38.40^1^^^^~04/01/2012~ -~18163~^~303~^2.00^2^^~9~^~MC~^^^1^1.97^2.03^1^^^^~04/01/2012~ -~18163~^~309~^0.50^9^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~418~^0.08^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18164~^~203~^4.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~204~^22.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~205~^68.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~207~^1.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~255~^3.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~303~^2.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~309~^0.56^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~418~^0.07^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18165~^~203~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~204~^28.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~205~^58.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18165~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~255~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~303~^2.46^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~309~^0.93^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18166~^~203~^5.21^12^0.03^~1~^~A~^^^1^4.44^5.94^9^5.13^5.29^~2, 3~^~04/01/2013~ -~18166~^~204~^19.14^12^0.18^~1~^~A~^^^1^16.54^19.95^6^18.68^19.59^~2, 3~^~07/01/2014~ -~18166~^~205~^71.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18166~^~207~^1.54^12^0.01^~1~^~A~^^^1^1.46^2.09^7^1.49^1.57^~2, 3~^~04/01/2013~ -~18166~^~209~^24.81^9^0.33^~1~^~A~^^^1^19.50^31.90^3^23.74^25.87^~2, 3~^~04/01/2013~ -~18166~^~210~^39.03^9^0.26^~1~^~A~^^^1^24.78^45.20^5^38.36^39.69^~2, 3~^~07/01/2014~ -~18166~^~211~^0.92^9^0.13^~1~^~A~^^^1^0.18^7.97^7^0.60^1.24^~1, 2, 3~^~07/01/2014~ -~18166~^~212~^0.70^9^0.04^~1~^~A~^^^1^0.18^1.52^3^0.55^0.84^~1, 2, 3~^~04/01/2013~ -~18166~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~255~^3.11^12^0.09^~1~^~A~^^^1^2.37^4.59^6^2.88^3.33^~2, 3~^~07/01/2014~ -~18166~^~269~^40.67^8^0.20^~1~^~A~^^^1^33.88^46.38^5^40.13^41.20^~2, 3~^~04/01/2013~ -~18166~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~303~^12.14^12^1.07^~1~^~A~^^^1^4.35^15.50^5^9.38^14.90^~2, 3~^~07/01/2014~ -~18166~^~309~^0.74^12^0.01^~1~^~A~^^^1^0.71^0.88^6^0.71^0.76^~2, 3~^~04/01/2013~ -~18166~^~323~^2.47^6^0.07^~1~^~A~^^^1^0.98^2.67^2^2.18^2.75^~2, 3~^~07/01/2014~ -~18166~^~341~^0.11^6^9.0e-03^~1~^~A~^^^1^0.09^0.25^3^0.08^0.14^~2, 3~^~04/01/2013~ -~18166~^~342~^3.48^6^0.17^~1~^~A~^^^1^1.12^7.31^3^2.97^3.99^~2, 3~^~07/01/2014~ -~18166~^~343~^0.16^6^0.01^~1~^~A~^^^1^0.00^0.48^3^0.12^0.20^~1, 2, 3~^~07/01/2014~ -~18166~^~344~^0.94^6^0.06^~1~^~A~^^^1^0.06^1.11^3^0.71^1.17^~2, 3~^~04/01/2013~ -~18166~^~345~^0.90^6^0.02^~1~^~A~^^^1^0.45^0.98^2^0.78^1.01^~2, 3~^~04/01/2013~ -~18166~^~346~^1.83^6^0.09^~1~^~A~^^^1^0.10^3.15^4^1.56^2.10^~2, 3~^~04/01/2013~ -~18166~^~347~^0.26^6^0.05^~1~^~A~^^^1^0.00^0.48^2^0.05^0.47^~1, 2, 3~^~04/01/2013~ -~18166~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~ -~18166~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18166~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~203~^3.60^11^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~204~^26.40^11^0.81^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~205~^66.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18167~^~207~^1.60^11^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~255~^2.00^11^0.25^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~269~^49.58^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18167~^~303~^3.13^10^0.25^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~309~^0.58^11^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~323~^1.58^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~418~^0.05^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18167~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~203~^4.33^2^^~1~^~A~^^^1^4.20^4.47^1^^^^~03/01/2004~ -~18168~^~204~^24.52^2^^~1~^~A~^^^1^24.09^24.94^1^^^^~03/01/2004~ -~18168~^~205~^68.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~18168~^~207~^1.30^2^^~1~^~A~^^^1^1.26^1.33^1^^^^~03/01/2004~ -~18168~^~209~^20.27^2^^~1~^~A~^^^1^20.06^20.49^1^^^^~03/01/2004~ -~18168~^~210~^44.53^2^^~1~^~A~^^^1^44.00^45.07^1^^^^~03/01/2004~ -~18168~^~211~^1.10^2^^~1~^~A~^^^1^1.04^1.17^1^^^^~03/01/2004~ -~18168~^~212~^0.36^2^^~1~^~A~^^^1^0.36^0.36^1^^^^~03/01/2004~ -~18168~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2004~ -~18168~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2004~ -~18168~^~255~^1.65^2^^~1~^~A~^^^1^1.44^1.87^1^^^^~03/01/2004~ -~18168~^~269~^46.00^2^^~1~^~A~^^^1^45.54^46.46^1^^^^~02/01/2007~ -~18168~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2004~ -~18168~^~303~^7.80^2^^~1~^~A~^^^1^7.72^7.88^1^^^^~03/01/2004~ -~18168~^~309~^0.78^2^^~1~^~A~^^^1^0.78^0.79^1^^^^~03/01/2004~ -~18168~^~323~^1.89^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~341~^0.15^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~342~^12.45^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~343~^3.27^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18168~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18168~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18170~^~203~^3.70^29^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~204~^7.30^31^0.28^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~205~^70.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18170~^~207~^1.60^25^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~255~^16.50^26^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~269~^46.36^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18170~^~303~^2.90^29^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~309~^0.39^25^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~323~^0.65^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18170~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18171~^~203~^4.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~204~^2.70^3^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~205~^84.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18171~^~207~^0.90^4^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~255~^8.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~269~^45.42^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18171~^~303~^1.44^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~309~^0.17^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18171~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18171~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18171~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18172~^~203~^5.60^25^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~204~^9.80^25^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~205~^76.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18172~^~207~^2.40^24^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~255~^5.30^23^0.28^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~269~^19.92^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18172~^~303~^6.40^24^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~309~^0.55^23^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~323~^0.97^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18172~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18173~^~203~^6.69^16^0.04^~1~^~A~^^^1^6.31^7.00^3^6.54^6.82^~2, 3~^~06/01/2014~ -~18173~^~204~^10.60^13^0.34^~1~^~A~^^^1^8.66^13.47^5^9.73^11.46^~2, 3~^~06/01/2014~ -~18173~^~205~^77.66^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~207~^1.66^16^0.01^~1~^~A~^^^1^1.44^2.75^2^1.59^1.73^~2, 3~^~06/01/2014~ -~18173~^~209~^46.56^9^0.11^~1~^~A~^^^1^44.00^47.90^3^46.13^46.98^~2, 3~^~06/01/2014~ -~18173~^~210~^22.82^9^0.05^~1~^~A~^^^1^20.25^24.31^2^22.62^23.02^~2, 3~^~06/01/2014~ -~18173~^~211~^1.04^9^0.01^~1~^~A~^^^1^0.73^1.48^3^1.01^1.07^~2, 3~^~06/01/2014~ -~18173~^~212~^0.99^9^4.0e-03^~1~^~A~^^^1^0.70^1.41^3^0.97^0.99^~2, 3~^~06/01/2014~ -~18173~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~255~^3.39^16^0.08^~1~^~A~^^^1^2.92^4.20^6^3.19^3.58^~2, 3~^~06/01/2014~ -~18173~^~269~^24.85^9^0.04^~1~^~A~^^^1^22.74^25.78^2^24.68^25.01^~2, 3~^~06/01/2014~ -~18173~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~303~^3.78^16^0.05^~1~^~A~^^^1^3.44^4.60^6^3.64^3.91^~2, 3~^~06/01/2014~ -~18173~^~309~^0.96^16^0.02^~1~^~A~^^^1^0.73^1.10^1^0.76^1.15^~2, 3~^~06/01/2014~ -~18173~^~323~^1.51^9^0.05^~1~^~A~^^^1^0.96^2.17^2^1.28^1.72^~2, 3~^~06/01/2014~ -~18173~^~341~^0.23^9^0.01^~1~^~A~^^^1^0.13^0.31^2^0.18^0.28^~2, 3~^~06/01/2014~ -~18173~^~342~^5.99^9^0.20^~1~^~A~^^^1^3.11^7.78^2^5.15^6.83^~2, 3~^~06/01/2014~ -~18173~^~343~^1.54^9^0.04^~1~^~A~^^^1^0.14^2.25^2^1.36^1.72^~2, 3~^~06/01/2014~ -~18173~^~344~^0.18^9^0.02^~1~^~A~^^^1^0.00^1.04^1^-0.06^0.42^~1, 2, 3~^~06/01/2014~ -~18173~^~345~^1.41^9^0.22^~1~^~A~^^^1^0.54^1.99^2^0.49^2.32^~2, 3~^~06/01/2014~ -~18173~^~346~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~18173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18174~^~203~^4.00^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~204~^25.80^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~205~^66.78^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~18174~^~207~^1.42^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~269~^37.30^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~303~^2.00^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~309~^0.20^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~323~^0.99^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~418~^0.10^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18174~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18175~^~203~^10.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~204~^9.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~205~^59.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18175~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~255~^19.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~269~^25.39^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18175~^~303~^3.58^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~309~^1.14^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~323~^0.63^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18175~^~418~^0.75^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18176~^~203~^4.00^20^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~204~^16.90^20^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~205~^67.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18176~^~207~^1.10^20^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~255~^10.10^20^0.59^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~269~^44.80^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~18176~^~303~^2.53^18^0.26^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~309~^0.65^18^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~323~^0.14^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18176~^~418~^0.17^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18176~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18177~^~203~^5.60^14^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~204~^12.80^15^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~205~^73.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18177~^~207~^2.00^15^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~255~^5.80^14^0.44^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~269~^17.60^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18177~^~303~^6.43^12^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~309~^0.45^9^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18177~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18178~^~203~^6.20^32^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~204~^18.10^31^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~205~^68.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18178~^~207~^1.40^28^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~255~^5.70^28^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~269~^24.66^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18178~^~303~^2.58^24^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~309~^0.79^18^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18178~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18179~^~203~^6.10^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~204~^14.70^4^0.47^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~205~^65.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18179~^~207~^2.40^4^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~255~^11.00^5^0.50^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~303~^2.79^3^0.76^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~309~^0.44^3^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18180~^~203~^6.50^27^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~204~^19.20^27^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~205~^67.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18180~^~207~^1.70^27^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~255~^5.30^26^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~303~^2.22^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~309~^0.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~203~^5.40^34^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~204~^18.90^36^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~205~^59.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18182~^~207~^1.30^35^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~255~^15.30^35^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~303~^2.14^22^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~309~^0.64^17^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18183~^~203~^6.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~204~^21.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~205~^65.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~207~^1.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~255~^5.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~303~^2.38^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~309~^0.71^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~418~^0.04^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18184~^~203~^5.86^14^0.08^~1~^~A~^^^1^5.12^6.23^13^5.67^6.04^~2, 3~^~01/01/2017~ -~18184~^~204~^15.76^14^0.85^~1~^~A~^^^1^11.00^22.10^13^13.92^17.60^~2, 3~^~01/01/2017~ -~18184~^~205~^68.95^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~207~^1.44^14^0.01^~1~^~A~^^^1^1.31^1.50^13^1.40^1.47^~2, 3~^~01/01/2017~ -~18184~^~209~^31.11^9^1.01^~1~^~A~^^^1^27.20^34.20^8^28.77^33.44^~2, 3~^~01/01/2017~ -~18184~^~210~^18.22^9^2.01^~1~^~A~^^^1^8.86^24.75^8^13.56^22.87^~2, 3~^~01/01/2017~ -~18184~^~211~^5.90^9^0.95^~1~^~A~^^^1^2.33^10.14^8^3.69^8.10^~2, 3~^~01/01/2017~ -~18184~^~212~^8.34^9^2.01^~1~^~A~^^^1^2.48^17.43^8^3.69^12.99^~2, 3~^~01/01/2017~ -~18184~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~214~^0.67^9^0.21^~1~^~A~^^^1^0.00^1.54^8^0.17^1.16^~1, 2, 3~^~01/01/2017~ -~18184~^~255~^7.98^14^0.49^~1~^~A~^^^1^4.56^9.73^13^6.92^9.04^~2, 3~^~01/01/2017~ -~18184~^~269~^33.14^9^1.28^~1~^~A~^^^1^29.11^38.18^8^30.18^36.09^~2, 3~^~01/01/2017~ -~18184~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~303~^2.30^14^0.07^~1~^~A~^^^1^1.82^2.69^13^2.13^2.45^~2, 3~^~01/01/2017~ -~18184~^~309~^0.65^14^0.02^~1~^~A~^^^1^0.50^0.83^13^0.60^0.70^~2, 3~^~01/01/2017~ -~18185~^~203~^8.92^5^0.78^~1~^~A~^^^1^7.95^10.50^2^5.55^12.28^~2, 3~^~05/01/2014~ -~18185~^~204~^23.82^5^2.13^~1~^~A~^^^1^19.50^27.90^2^14.61^33.02^~2, 3~^~05/01/2014~ -~18185~^~205~^58.15^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~207~^1.83^5^0.15^~1~^~A~^^^1^1.35^2.17^2^1.18^2.47^~2, 3~^~05/01/2014~ -~18185~^~209~^24.69^3^1.52^~1~^~A~^^^1^23.10^26.30^1^5.37^44.00^~2, 3~^~05/01/2014~ -~18185~^~210~^23.58^3^1.33^~1~^~A~^^^1^15.77^25.40^1^6.62^40.54^~2, 3~^~05/01/2014~ -~18185~^~211~^2.72^3^0.06^~1~^~A~^^^1^2.59^3.79^1^1.87^3.56^~2, 3~^~05/01/2014~ -~18185~^~212~^2.02^3^0.01^~1~^~A~^^^1^1.88^4.48^1^1.84^2.20^~2, 3~^~05/01/2014~ -~18185~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~214~^0.26^3^0.00^~1~^~A~^^^1^0.18^1.60^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~255~^7.28^5^1.03^~1~^~A~^^^1^5.09^9.80^2^2.85^11.71^~2, 3~^~05/01/2014~ -~18185~^~269~^28.58^3^1.25^~1~^~A~^^^1^25.64^30.05^1^12.64^44.51^~2, 3~^~05/01/2014~ -~18185~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~303~^2.11^5^0.15^~1~^~A~^^^1^1.81^2.57^2^1.43^2.77^~2, 3~^~05/01/2014~ -~18185~^~309~^0.86^5^0.07^~1~^~A~^^^1^0.76^1.01^2^0.53^1.18^~2, 3~^~05/01/2014~ -~18185~^~323~^3.53^3^0.27^~1~^~A~^^^1^3.00^3.84^1^0.10^6.95^~2, 3~^~05/01/2014~ -~18185~^~341~^0.26^3^0.03^~1~^~A~^^^1^0.22^0.32^1^-0.15^0.66^~2, 3~^~05/01/2014~ -~18185~^~342~^6.04^3^0.79^~1~^~A~^^^1^1.44^7.12^1^-4.05^16.14^~2, 3~^~05/01/2014~ -~18185~^~343~^1.66^3^0.01^~1~^~A~^^^1^0.00^1.77^1^1.43^1.88^~1, 2, 3~^~05/01/2014~ -~18185~^~344~^0.90^3^0.34^~1~^~A~^^^1^0.54^1.25^1^-3.41^5.22^~2, 3~^~05/01/2014~ -~18185~^~345~^0.22^3^0.03^~1~^~A~^^^1^0.17^0.39^1^-0.24^0.67^~2, 3~^~05/01/2014~ -~18185~^~346~^0.95^3^0.64^~1~^~A~^^^1^0.25^1.61^1^-7.23^9.13^~2, 3~^~05/01/2014~ -~18185~^~347~^0.16^3^0.14^~1~^~A~^^^1^0.00^0.30^1^-1.64^1.96^~1, 2, 3~^~05/01/2014~ -~18185~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18186~^~203~^5.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~204~^24.40^3^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~205~^57.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18186~^~207~^1.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~255~^11.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~303~^0.89^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~309~^0.55^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~203~^8.20^38^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~204~^25.00^40^0.35^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~205~^52.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18187~^~207~^2.00^38^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~255~^12.60^38^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~303~^1.70^30^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~309~^0.68^22^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18188~^~203~^9.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~204~^27.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~205~^57.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~207~^2.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~255~^4.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~303~^1.87^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~309~^0.75^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~418~^0.06^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18189~^~203~^9.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~204~^23.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~205~^58.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18189~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~255~^5.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~303~^2.23^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~309~^0.82^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~418~^0.09^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~203~^8.80^21^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~204~^21.10^24^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~205~^65.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18190~^~207~^1.60^22^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~255~^2.80^21^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~269~^35.44^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18190~^~303~^2.60^19^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~309~^1.06^19^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~323~^1.87^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18190~^~418~^0.23^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18191~^~203~^4.10^4^0.47^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~204~^13.60^4^1.30^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~205~^68.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18191~^~207~^1.20^4^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~255~^13.10^4^1.36^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~269~^47.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18191~^~303~^2.29^4^0.36^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~309~^0.32^3^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~323~^2.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18191~^~418~^0.03^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18191~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18192~^~203~^5.37^12^0.02^~1~^~A~^^^1^5.25^5.50^7^5.32^5.41^~2, 3~^~05/01/2014~ -~18192~^~204~^26.22^11^0.19^~1~^~A~^^^1^23.33^29.10^9^25.77^26.65^~2, 3~^~05/01/2014~ -~18192~^~205~^63.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~207~^1.04^12^0.01^~1~^~A~^^^1^0.84^1.20^10^1.00^1.07^~2, 3~^~05/01/2014~ -~18192~^~209~^40.47^6^0.25^~1~^~A~^^^1^36.00^43.90^3^39.65^41.27^~2, 3~^~05/01/2014~ -~18192~^~210~^20.99^6^0.21^~1~^~A~^^^1^19.46^23.56^2^20.12^21.86^~2, 3~^~05/01/2014~ -~18192~^~211~^0.36^6^0.01^~1~^~A~^^^1^0.27^0.43^4^0.31^0.40^~2, 3~^~05/01/2014~ -~18192~^~212~^0.30^6^0.01^~1~^~A~^^^1^0.18^0.36^3^0.25^0.33^~1, 2, 3~^~05/01/2014~ -~18192~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~255~^3.60^12^0.11^~1~^~A~^^^1^2.74^4.83^10^3.34^3.84^~2, 3~^~05/01/2014~ -~18192~^~269~^21.65^6^0.19^~1~^~A~^^^1^20.15^24.01^2^20.89^22.41^~2, 3~^~05/01/2014~ -~18192~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~303~^2.98^12^0.02^~1~^~A~^^^1^2.30^3.54^8^2.93^3.03^~2, 3~^~05/01/2014~ -~18192~^~309~^0.49^12^0.02^~1~^~A~^^^1^0.41^0.72^8^0.43^0.53^~2, 3~^~05/01/2014~ -~18192~^~323~^2.44^6^0.07^~1~^~A~^^^1^1.56^3.13^4^2.22^2.65^~2, 3~^~05/01/2014~ -~18192~^~341~^0.26^6^0.02^~1~^~A~^^^1^0.19^0.33^3^0.19^0.32^~2, 3~^~05/01/2014~ -~18192~^~342~^9.79^6^0.10^~1~^~A~^^^1^7.27^11.89^4^9.49^10.09^~2, 3~^~05/01/2014~ -~18192~^~343~^3.44^6^0.10^~1~^~A~^^^1^2.34^4.36^4^3.15^3.72^~2, 3~^~05/01/2014~ -~18192~^~344~^0.36^6^0.01^~1~^~A~^^^1^0.22^0.52^2^0.29^0.43^~2, 3~^~05/01/2014~ -~18192~^~345~^0.74^6^0.08^~1~^~A~^^^1^0.54^0.94^4^0.50^0.97^~2, 3~^~05/01/2014~ -~18192~^~346~^0.51^6^0.04^~1~^~A~^^^1^0.32^0.69^4^0.38^0.63^~2, 3~^~05/01/2014~ -~18192~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~18192~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18192~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18193~^~203~^4.90^23^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~204~^32.50^24^0.33^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~205~^58.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18193~^~207~^1.00^23^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~255~^3.30^23^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~303~^2.43^23^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~309~^0.58^22^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~203~^2.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~204~^12.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~205~^80.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18196~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~255~^3.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~303~^1.52^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~309~^0.14^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~203~^3.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~204~^16.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~205~^73.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18198~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~255~^5.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~269~^39.81^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18198~^~303~^3.50^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~309~^0.47^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~323~^1.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18198~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18198~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18198~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18199~^~203~^4.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~204~^22.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~205~^68.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18199~^~207~^1.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~255~^4.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~269~^19.73^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~303~^4.72^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~309~^0.58^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~323~^1.64^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18199~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18199~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18200~^~203~^4.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~204~^18.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~205~^69.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18200~^~207~^0.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~255~^6.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~269~^31.65^0^^~4~^~FLC~^^^^^^^^^^~02/01/2007~ -~18200~^~303~^4.07^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~309~^0.49^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~323~^1.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18200~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18201~^~203~^10.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~204~^34.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~205~^50.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18201~^~207~^1.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~255~^3.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~303~^2.55^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~309~^1.03^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~203~^3.57^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~204~^28.57^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~205~^66.26^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~207~^0.90^3^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~255~^0.70^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~303~^1.29^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~309~^0.20^3^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~323~^3.08^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~418~^0.00^3^0.00^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~573~^0.00^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~ -~18202~^~578~^0.00^0^^~4~^~BFNN~^~18209~^^^^^^^^^~06/01/2015~ -~18204~^~203~^5.35^9^0.24^~1~^~A~^^^1^4.58^6.51^4^4.68^6.02^~2, 3~^~05/01/2014~ -~18204~^~204~^19.55^9^1.11^~1~^~A~^^^1^14.70^23.80^4^16.46^22.64^~2, 3~^~05/01/2014~ -~18204~^~205~^67.34^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~207~^1.47^9^0.12^~1~^~A~^^^1^0.79^2.16^5^1.13^1.79^~2, 3~^~05/01/2014~ -~18204~^~209~^36.43^4^0.05^~1~^~A~^^^1^30.90^38.20^2^36.18^36.68^~2, 3~^~05/01/2014~ -~18204~^~210~^25.75^6^0.28^~1~^~A~^^^1^23.25^31.67^2^24.52^26.96^~2, 3~^~05/01/2014~ -~18204~^~211~^0.77^6^0.56^~1~^~A~^^^1^0.00^2.53^2^-1.66^3.20^~1, 2, 3~^~05/01/2014~ -~18204~^~212~^0.61^6^0.43^~1~^~A~^^^1^0.00^1.97^2^-1.25^2.47^~1, 2, 3~^~05/01/2014~ -~18204~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~214~^0.18^6^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~255~^6.29^9^0.56^~1~^~A~^^^1^3.27^9.08^4^4.72^7.85^~2, 3~^~05/01/2014~ -~18204~^~269~^27.31^6^1.27^~1~^~A~^^^1^24.08^31.85^2^21.84^32.77^~2, 3~^~05/01/2014~ -~18204~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~303~^2.24^9^0.24^~1~^~A~^^^1^1.41^3.34^4^1.56^2.91^~2, 3~^~05/01/2014~ -~18204~^~309~^0.43^9^0.01^~1~^~A~^^^1^0.40^0.53^4^0.38^0.48^~2, 3~^~08/01/1992~ -~18204~^~323~^3.07^6^0.36^~1~^~A~^^^1^2.03^4.05^2^1.55^4.59^~2, 3~^~05/01/2014~ -~18204~^~341~^0.40^6^0.07^~1~^~A~^^^1^0.17^0.57^3^0.15^0.63^~2, 3~^~05/01/2014~ -~18204~^~342~^4.58^6^2.56^~1~^~A~^^^1^0.20^12.02^2^-6.44^15.60^~2, 3~^~05/01/2014~ -~18204~^~343~^1.71^6^1.02^~1~^~A~^^^1^0.00^4.72^2^-2.69^6.11^~1, 2, 3~^~05/01/2014~ -~18204~^~344~^1.90^6^0.85^~1~^~A~^^^1^0.00^3.72^2^-1.74^5.54^~1, 2, 3~^~05/01/2014~ -~18204~^~345~^1.21^6^0.02^~1~^~A~^^^1^1.14^1.42^3^1.14^1.27^~2, 3~^~05/01/2014~ -~18204~^~346~^2.62^6^1.26^~1~^~A~^^^1^0.00^5.34^2^-2.77^8.02^~1, 2, 3~^~05/01/2014~ -~18204~^~347~^0.45^6^0.26^~1~^~A~^^^1^0.00^1.06^2^-0.68^1.57^~1, 2, 3~^~05/01/2014~ -~18204~^~418~^0.19^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18204~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18204~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18205~^~203~^4.00^2^^~9~^~MC~^^^1^3.61^4.39^1^^^^~04/01/2012~ -~18205~^~204~^19.48^2^^~9~^~MC~^^^1^18.56^20.39^1^^^^~04/01/2012~ -~18205~^~205~^61.22^2^^~9~^~MC~^^^1^61.14^61.30^1^^^^~04/01/2012~ -~18205~^~207~^1.20^2^^~9~^~MC~^^^1^1.09^1.30^1^^^^~04/01/2012~ -~18205~^~255~^14.08^2^^~9~^~MC~^^^1^13.58^14.57^1^^^^~04/01/2012~ -~18205~^~269~^36.51^2^^~9~^~MC~^^^1^36.17^36.84^1^^^^~04/01/2012~ -~18205~^~303~^1.85^2^^~9~^~MC~^^^1^1.72^1.98^1^^^^~04/01/2012~ -~18205~^~309~^0.24^11^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~323~^0.19^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18205~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18206~^~203~^4.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~204~^23.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~205~^65.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18206~^~207~^1.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~255~^5.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~269~^40.36^0^^~4~^~BFSN~^~18205~^^^^^^^^^~07/01/2015~ -~18206~^~303~^1.84^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~309~^0.27^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~323~^0.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~18206~^~418~^0.07^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18206~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18209~^~203~^3.84^6^0.14^~1~^~A~^^^1^3.38^4.37^5^3.45^4.22^~2, 3~^~06/01/2010~ -~18209~^~204~^23.24^6^0.86^~1~^~A~^^^1^19.50^25.60^5^21.02^25.44^~2, 3~^~06/01/2010~ -~18209~^~205~^70.64^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~207~^0.61^6^0.03^~1~^~A~^^^1^0.52^0.77^5^0.51^0.71^~2, 3~^~06/01/2010~ -~18209~^~209~^25.93^6^1.60^~1~^~A~^^^1^23.00^33.50^5^21.81^30.05^~2, 3~^~06/01/2010~ -~18209~^~210~^40.63^6^1.14^~1~^~A~^^^1^35.86^43.07^5^37.69^43.57^~2, 3~^~06/01/2010~ -~18209~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~213~^2.31^6^0.22^~1~^~A~^^^1^1.57^3.14^5^1.73^2.89^~2, 3~^~06/01/2010~ -~18209~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~255~^1.66^6^0.08^~1~^~A~^^^1^1.50^2.06^5^1.43^1.89^~2, 3~^~06/01/2010~ -~18209~^~269~^42.95^6^1.29^~1~^~A~^^^1^37.43^45.81^5^39.63^46.26^~2, 3~^~06/01/2010~ -~18209~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~303~^3.73^6^1.05^~1~^~A~^^^1^2.24^8.98^5^1.01^6.45^~2, 3~^~06/01/2010~ -~18209~^~309~^0.43^6^0.05^~1~^~A~^^^1^0.31^0.67^5^0.28^0.57^~2, 3~^~06/01/2010~ -~18209~^~323~^2.50^4^0.20^~1~^~A~^^^1^2.22^3.11^3^1.85^3.15^~2, 3~^~06/01/2010~ -~18209~^~341~^0.17^4^0.02^~1~^~A~^^^1^0.12^0.23^3^0.09^0.23^~2, 3~^~06/01/2010~ -~18209~^~342~^1.57^4^0.74^~1~^~A~^^^1^0.61^3.74^3^-0.79^3.92^~2, 3~^~06/01/2010~ -~18209~^~343~^0.55^4^0.29^~1~^~A~^^^1^0.20^1.43^3^-0.39^1.49^~2, 3~^~06/01/2010~ -~18209~^~344~^0.06^4^4.0e-03^~1~^~A~^^^1^0.05^0.07^3^0.04^0.06^~2, 3~^~06/01/2010~ -~18209~^~345~^0.60^4^0.04^~1~^~A~^^^1^0.53^0.72^3^0.46^0.74^~2, 3~^~06/01/2010~ -~18209~^~346~^3.20^4^0.18^~1~^~A~^^^1^2.69^3.48^3^2.61^3.78^~2, 3~^~06/01/2010~ -~18209~^~347~^0.95^4^0.07^~1~^~A~^^^1^0.83^1.17^3^0.70^1.20^~2, 3~^~06/01/2010~ -~18209~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18210~^~203~^4.50^39^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~204~^20.00^40^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~205~^72.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~207~^1.20^34^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~255~^2.20^32^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~269~^39.30^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18210~^~303~^2.21^40^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~309~^0.40^32^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~323~^1.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18210~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18210~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18210~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18211~^~203~^7.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~204~^38.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~205~^45.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18211~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~255~^7.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~269~^0.75^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~303~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~309~^0.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~323~^0.55^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18211~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18211~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18212~^~203~^5.00^48^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~204~^15.20^46^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~205~^73.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18212~^~207~^1.10^45^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~255~^5.10^47^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~269~^37.50^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18212~^~303~^2.38^48^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~309~^0.36^49^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18212~^~418~^0.13^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18212~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18213~^~203~^4.90^17^0.04^~1~^~A~^^^1^4.37^5.19^7^4.79^5.00^~2, 3~^~06/01/2015~ -~18213~^~204~^16.41^17^0.25^~1~^~A~^^^1^10.58^20.43^9^15.82^16.98^~2, 3~^~06/01/2015~ -~18213~^~205~^72.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~207~^1.11^17^0.01^~1~^~A~^^^1^0.78^1.30^10^1.07^1.14^~2, 3~^~06/01/2015~ -~18213~^~209~^36.51^9^0.29^~1~^~A~^^^1^35.10^41.50^3^35.48^37.54^~2, 3~^~06/01/2015~ -~18213~^~210~^32.51^9^0.49^~1~^~A~^^^1^28.74^40.91^2^30.71^34.30^~2, 3~^~06/01/2015~ -~18213~^~211~^0.86^9^0.05^~1~^~A~^^^1^0.00^1.38^3^0.70^1.01^~1, 2, 3~^~06/01/2015~ -~18213~^~212~^0.94^9^0.05^~1~^~A~^^^1^0.00^1.43^2^0.72^1.15^~1, 2, 3~^~06/01/2015~ -~18213~^~213~^0.77^9^0.01^~1~^~A~^^^1^0.00^1.40^2^0.70^0.83^~1, 2, 3~^~06/01/2015~ -~18213~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~255~^4.98^17^0.07^~1~^~A~^^^1^4.02^6.14^9^4.80^5.15^~2, 3~^~06/01/2015~ -~18213~^~269~^35.07^9^0.43^~1~^~A~^^^1^30.08^40.91^3^33.63^36.50^~2, 3~^~06/01/2015~ -~18213~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~303~^2.79^17^0.10^~1~^~A~^^^1^1.67^3.59^10^2.55^3.02^~2, 3~^~06/01/2015~ -~18213~^~309~^0.36^17^0.01^~1~^~A~^^^1^0.25^0.46^7^0.33^0.39^~2, 3~^~06/01/2015~ -~18213~^~323~^2.27^6^0.03^~1~^~A~^^^1^1.39^2.97^3^2.14^2.38^~2, 3~^~06/01/2015~ -~18213~^~341~^0.39^6^8.0e-03^~1~^~A~^^^1^0.30^0.44^2^0.34^0.43^~2, 3~^~06/01/2015~ -~18213~^~342~^7.71^6^0.40^~1~^~A~^^^1^2.99^10.48^1^3.67^11.74^~2, 3~^~06/01/2015~ -~18213~^~343~^2.09^6^0.21^~1~^~A~^^^1^0.76^2.72^1^0.19^3.98^~2, 3~^~06/01/2015~ -~18213~^~344~^0.20^6^0.15^~1~^~A~^^^1^0.00^0.88^1^-1.67^2.08^~1, 2, 3~^~06/01/2015~ -~18213~^~345~^0.82^6^0.02^~1~^~A~^^^1^0.73^0.90^3^0.73^0.90^~2, 3~^~06/01/2015~ -~18213~^~346~^0.26^6^0.16^~1~^~A~^^^1^0.00^1.09^1^-1.73^2.24^~1, 2, 3~^~06/01/2015~ -~18213~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~18213~^~573~^0.00^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~ -~18213~^~578~^0.00^0^^~4~^~BFNN~^~18159~^^^^^^^^^~06/01/2015~ -~18214~^~203~^10.93^12^0.11^~1~^~A~^^^1^9.19^13.00^8^10.67^11.18^~2, 3~^~03/01/2011~ -~18214~^~204~^22.74^12^0.57^~1~^~A~^^^1^15.17^28.37^8^21.40^24.07^~2, 3~^~03/01/2011~ -~18214~^~205~^59.42^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~207~^3.36^12^0.07^~1~^~A~^^^1^2.73^4.11^9^3.19^3.52^~2, 3~^~03/01/2011~ -~18214~^~209~^52.56^12^0.49^~1~^~A~^^^1^49.40^56.30^8^51.41^53.69^~2, 3~^~03/01/2011~ -~18214~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~211~^0.30^6^0.01^~1~^~A~^^^1^0.00^0.63^2^0.24^0.35^~1, 2, 3~^~03/01/2011~ -~18214~^~212~^0.37^6^0.02^~1~^~A~^^^1^0.00^0.80^2^0.27^0.45^~1, 2, 3~^~03/01/2011~ -~18214~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~214~^3.84^5^0.19^~1~^~A~^^^1^0.00^8.06^1^1.42^6.25^~1, 2, 3~^~03/01/2011~ -~18214~^~255~^3.55^12^0.20^~1~^~A~^^^1^2.49^5.07^6^3.06^4.04^~2, 3~^~03/01/2011~ -~18214~^~269~^4.53^5^0.21^~1~^~A~^^^1^0.00^9.49^1^1.83^7.23^~2, 3~^~03/01/2011~ -~18214~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~303~^4.88^12^0.15^~1~^~A~^^^1^4.11^5.80^6^4.51^5.26^~2, 3~^~03/01/2011~ -~18214~^~309~^1.19^12^0.02^~1~^~A~^^^1^0.87^1.54^9^1.14^1.24^~2, 3~^~03/01/2011~ -~18214~^~323~^2.19^2^^~1~^~A~^^^1^2.01^2.38^^^^^~03/01/2011~ -~18214~^~341~^0.40^2^^~1~^~A~^^^1^0.34^0.46^^^^^~03/01/2011~ -~18214~^~342~^10.46^2^^~1~^~A~^^^1^10.23^10.68^^^^^~03/01/2011~ -~18214~^~343~^3.44^2^^~1~^~A~^^^1^3.26^3.62^^^^^~03/01/2011~ -~18214~^~344~^0.39^2^^~1~^~A~^^^1^0.11^0.68^^^^^~03/01/2011~ -~18214~^~345~^1.07^2^^~1~^~A~^^^1^1.04^1.10^^^^^~03/01/2011~ -~18214~^~346~^0.42^2^^~1~^~A~^^^1^0.00^0.85^^^^~1~^~03/01/2011~ -~18214~^~347~^0.13^2^^~1~^~A~^^^1^0.03^0.23^^^^^~03/01/2011~ -~18214~^~418~^0.34^2^^~1~^~A~^^^1^0.19^0.49^^^^^~03/01/2011~ -~18214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18214~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~18215~^~203~^12.41^6^0.14^~1~^~A~^^^1^12.03^13.05^5^12.04^12.76^~2, 3~^~12/01/2002~ -~18215~^~204~^25.12^6^0.07^~1~^~A~^^^1^24.90^25.40^5^24.92^25.31^~2, 3~^~12/01/2002~ -~18215~^~205~^56.74^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~207~^2.46^6^0.09^~1~^~A~^^^1^2.21^2.78^5^2.22^2.69^~2, 3~^~12/01/2002~ -~18215~^~209~^44.98^3^1.53^~1~^~A~^^^1^41.97^47.02^2^38.36^51.59^~2, 3~^~07/01/2012~ -~18215~^~210~^4.53^3^0.49^~1~^~A~^^^1^3.54^5.13^2^2.39^6.66^~2, 3~^~07/01/2012~ -~18215~^~211~^1.68^3^0.08^~1~^~A~^^^1^1.52^1.80^2^1.32^2.03^~2, 3~^~07/01/2012~ -~18215~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~214~^0.77^3^0.09^~1~^~A~^^^1^0.59^0.88^2^0.37^1.16^~2, 3~^~07/01/2012~ -~18215~^~255~^3.28^6^0.07^~1~^~A~^^^1^3.06^3.60^5^3.08^3.47^~2, 3~^~12/01/2002~ -~18215~^~269~^6.98^3^0.53^~1~^~A~^^^1^5.93^7.69^2^4.67^9.28^~2, 3~^~07/01/2007~ -~18215~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~303~^2.72^6^0.12^~1~^~A~^^^1^2.36^3.14^5^2.40^3.04^~2, 3~^~12/01/2002~ -~18215~^~309~^1.04^6^0.02^~1~^~A~^^^1^0.98^1.11^5^0.98^1.09^~2, 3~^~12/01/2002~ -~18215~^~323~^2.37^3^0.04^~1~^~A~^^^1^2.29^2.41^2^2.19^2.54^~2, 3~^~12/01/2002~ -~18215~^~341~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.17^2^0.09^0.19^~2, 3~^~07/01/2012~ -~18215~^~342~^7.14^3^0.31^~1~^~A~^^^1^6.56^7.63^2^5.79^8.48^~2, 3~^~07/01/2012~ -~18215~^~343~^1.92^3^0.12^~1~^~A~^^^1^1.73^2.14^2^1.40^2.43^~2, 3~^~07/01/2012~ -~18215~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18215~^~418~^0.28^3^7.0e-03^~1~^~A~^^^1^0.27^0.29^2^0.25^0.31^~2, 3~^~12/01/2002~ -~18215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18215~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18216~^~203~^7.90^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~204~^1.30^6^0.32^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~205~^82.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18216~^~207~^2.40^6^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~255~^6.10^4^0.66^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~269~^1.07^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~303~^2.43^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~309~^2.39^4^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~323~^0.81^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18216~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18217~^~203~^10.00^10^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~204~^1.40^10^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~205~^83.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18217~^~207~^0.60^4^2.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~255~^4.30^9^0.61^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~269~^0.29^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~303~^3.16^4^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~309~^0.68^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~323~^0.06^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~18217~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18218~^~203~^12.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~204~^2.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~205~^78.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18218~^~207~^0.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~255~^6.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~303~^2.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~309~^0.73^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~418~^0.19^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18219~^~203~^13.10^6^0.60^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~204~^1.50^6^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~205~^78.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18219~^~207~^1.60^4^5.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~255~^4.80^4^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~303~^4.65^4^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~309~^2.61^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~203~^12.10^15^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~204~^3.20^11^0.42^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~205~^76.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18220~^~207~^3.00^13^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~255~^5.10^16^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~269~^0.94^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~303~^3.70^10^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~309~^2.01^7^0.29^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~323~^0.43^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18220~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18221~^~203~^11.60^8^0.29^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~204~^3.40^8^0.53^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~205~^77.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~207~^2.90^8^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~255~^4.90^7^0.47^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~303~^3.68^5^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~309~^1.36^3^0.32^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18222~^~203~^12.90^3^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~204~^2.30^4^0.81^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~205~^76.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18222~^~207~^2.90^5^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~255~^5.50^3^0.59^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~303~^4.50^3^0.55^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~309~^1.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~203~^7.60^10^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~204~^13.77^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~18223~^~205~^71.73^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~18223~^~207~^2.20^10^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~255~^4.70^10^0.44^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~269~^10.32^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~18223~^~303~^3.58^9^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~309~^0.67^9^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~323~^1.22^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18223~^~418~^0.08^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18223~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18224~^~203~^13.50^15^0.25^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~204~^7.20^15^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~205~^72.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18224~^~207~^1.20^15^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~255~^5.50^15^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~303~^2.72^13^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~309~^1.10^12^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~418~^0.18^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18225~^~203~^9.20^5^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~204~^22.30^5^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~205~^60.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18225~^~207~^3.90^5^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~255~^3.80^5^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~303~^2.45^5^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~309~^0.70^4^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~418~^0.12^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~203~^9.60^21^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~204~^0.90^21^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~205~^80.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18226~^~207~^4.10^21^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~255~^5.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~269~^1.01^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~303~^5.94^21^0.53^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~309~^2.80^21^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~323~^0.80^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18226~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18227~^~203~^9.00^7^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~204~^9.20^6^1.00^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~205~^73.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18227~^~207~^4.00^3^0.35^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~255~^4.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~303~^3.04^6^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~309~^2.55^5^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18228~^~203~^9.46^12^0.04^~1~^~A~^^^1^8.94^9.69^5^9.36^9.56^~2, 3~^~07/01/2014~ -~18228~^~204~^8.64^12^0.10^~1~^~A~^^^1^8.02^9.67^5^8.38^8.90^~2, 3~^~07/01/2014~ -~18228~^~205~^74.05^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18228~^~207~^2.79^12^0.03^~1~^~A~^^^1^2.37^3.25^6^2.70^2.88^~2, 3~^~07/01/2014~ -~18228~^~209~^67.83^6^0.54^~1~^~A~^^^1^66.60^70.00^2^65.48^70.16^~2, 3~^~07/01/2014~ -~18228~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~211~^0.12^6^0.03^~1~^~A~^^^1^0.00^0.20^2^-9.0e-03^0.25^~1, 2, 3~^~02/01/2013~ -~18228~^~212~^0.19^6^0.05^~1~^~A~^^^1^0.00^0.30^2^-0.04^0.41^~1, 2, 3~^~07/01/2014~ -~18228~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~214~^0.98^6^0.11^~1~^~A~^^^1^0.20^1.20^2^0.49^1.45^~2, 3~^~07/01/2014~ -~18228~^~255~^5.05^12^0.22^~1~^~A~^^^1^4.13^5.83^5^4.46^5.62^~2, 3~^~07/01/2014~ -~18228~^~269~^1.29^6^0.18^~1~^~A~^^^1^0.20^1.70^2^0.47^2.09^~2, 3~^~07/01/2014~ -~18228~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~303~^5.57^12^0.07^~1~^~A~^^^1^4.94^5.93^5^5.37^5.76^~2, 3~^~07/01/2014~ -~18228~^~309~^0.69^12^0.01^~1~^~A~^^^1^0.64^0.93^5^0.65^0.71^~2, 3~^~02/01/2013~ -~18228~^~323~^1.15^6^0.09^~1~^~A~^^^1^0.90^1.35^2^0.74^1.56^~2, 3~^~02/01/2013~ -~18228~^~341~^0.31^6^3.0e-03^~1~^~A~^^^1^0.30^0.41^2^0.29^0.32^~2, 3~^~02/01/2013~ -~18228~^~342~^4.90^6^0.30^~1~^~A~^^^1^3.82^5.42^2^3.60^6.20^~2, 3~^~07/01/2014~ -~18228~^~343~^1.55^6^0.03^~1~^~A~^^^1^1.20^1.96^4^1.46^1.64^~2, 3~^~07/01/2014~ -~18228~^~344~^0.10^6^3.0e-03^~1~^~A~^^^1^0.09^0.12^2^0.09^0.11^~2, 3~^~02/01/2013~ -~18228~^~345~^1.45^6^0.04^~1~^~A~^^^1^1.37^1.59^2^1.28^1.61^~2, 3~^~02/01/2013~ -~18228~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~418~^0.09^2^^~1~^~A~^^^1^0.00^0.18^1^^^~1~^~04/01/2008~ -~18228~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18228~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~18229~^~203~^6.64^12^0.03^~1~^~A~^^^1^6.13^6.88^5^6.55^6.73^~2, 3~^~07/01/2014~ -~18229~^~204~^26.43^12^0.28^~1~^~A~^^^1^25.14^27.56^5^25.70^27.15^~2, 3~^~07/01/2014~ -~18229~^~205~^61.30^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~207~^2.49^12^0.04^~1~^~A~^^^1^2.35^2.69^5^2.38^2.60^~2, 3~^~02/01/2013~ -~18229~^~209~^49.69^6^0.67^~1~^~A~^^^1^48.50^51.10^2^46.78^52.59^~2, 3~^~07/01/2014~ -~18229~^~210~^6.95^6^0.12^~1~^~A~^^^1^5.40^7.49^2^6.41^7.48^~2, 3~^~07/01/2014~ -~18229~^~211~^0.47^6^0.03^~1~^~A~^^^1^0.38^0.60^2^0.31^0.61^~2, 3~^~07/01/2014~ -~18229~^~212~^0.29^6^0.04^~1~^~A~^^^1^0.18^0.40^2^0.11^0.46^~1, 2, 3~^~07/01/2014~ -~18229~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~214~^0.48^6^0.04^~1~^~A~^^^1^0.35^0.60^2^0.27^0.69^~2, 3~^~07/01/2014~ -~18229~^~255~^3.14^11^0.09^~1~^~A~^^^1^2.65^4.30^5^2.90^3.37^~2, 3~^~07/01/2014~ -~18229~^~269~^8.18^6^0.06^~1~^~A~^^^1^6.90^8.61^2^7.90^8.46^~2, 3~^~07/01/2014~ -~18229~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~303~^4.03^12^0.10^~1~^~A~^^^1^2.98^4.58^5^3.75^4.29^~2, 3~^~07/01/2014~ -~18229~^~309~^0.49^12^0.02^~1~^~A~^^^1^0.40^0.56^5^0.42^0.55^~2, 3~^~02/01/2013~ -~18229~^~323~^3.03^6^0.15^~1~^~A~^^^1^1.88^3.64^2^2.35^3.70^~2, 3~^~07/01/2014~ -~18229~^~341~^0.43^6^0.01^~1~^~A~^^^1^0.40^0.55^2^0.38^0.47^~2, 3~^~07/01/2014~ -~18229~^~342~^14.40^6^0.66^~1~^~A~^^^1^12.41^17.51^2^11.76^17.03^~2, 3~^~07/01/2014~ -~18229~^~343~^5.20^6^0.29^~1~^~A~^^^1^4.25^7.15^2^4.06^6.33^~2, 3~^~07/01/2014~ -~18229~^~344~^0.08^6^5.0e-03^~1~^~A~^^^1^0.06^0.09^2^0.06^0.10^~2, 3~^~02/01/2013~ -~18229~^~345~^1.11^6^0.04^~1~^~A~^^^1^1.00^1.21^2^0.93^1.29^~2, 3~^~07/01/2014~ -~18229~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18229~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18230~^~203~^9.30^7^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~204~^21.10^7^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~205~^61.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18230~^~207~^4.00^3^0.68^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~255~^3.90^7^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~269~^3.18^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18230~^~303~^2.39^5^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~309~^0.62^5^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18230~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18230~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18231~^~203~^11.47^6^0.18^~1~^~A~^^^1^10.81^11.88^5^10.99^11.94^~2, 3~^~12/01/2002~ -~18231~^~204~^24.54^6^0.34^~1~^~A~^^^1^23.16^25.58^5^23.65^25.42^~2, 3~^~12/01/2002~ -~18231~^~205~^58.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~18231~^~207~^2.68^6^0.07^~1~^~A~^^^1^2.49^2.92^5^2.48^2.87^~2, 3~^~12/01/2002~ -~18231~^~209~^40.78^3^0.70^~1~^~A~^^^1^40.07^42.19^2^37.75^43.80^~2, 3~^~12/01/2002~ -~18231~^~210~^6.57^3^0.25^~1~^~A~^^^1^6.05^6.87^2^5.45^7.67^~2, 3~^~12/01/2002~ -~18231~^~211~^2.76^3^0.72^~1~^~A~^^^1^2.04^4.20^2^-0.34^5.86^~2, 3~^~12/01/2002~ -~18231~^~212~^0.51^3^0.20^~1~^~A~^^^1^0.21^0.89^2^-0.35^1.37^~2, 3~^~12/01/2002~ -~18231~^~213~^0.07^3^0.07^~1~^~A~^^^1^0.00^0.21^2^-0.23^0.37^~1, 2, 3~^~12/01/2002~ -~18231~^~214~^0.59^3^0.05^~1~^~A~^^^1^0.48^0.67^2^0.35^0.82^~2, 3~^~12/01/2002~ -~18231~^~255~^2.93^6^0.14^~1~^~A~^^^1^2.39^3.40^5^2.55^3.31^~2, 3~^~12/01/2002~ -~18231~^~269~^10.50^3^1.04^~1~^~A~^^^1^9.13^12.54^2^6.02^14.97^~2, 3~^~03/01/2007~ -~18231~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~303~^2.77^6^0.24^~1~^~A~^^^1^1.81^3.46^5^2.14^3.39^~2, 3~^~12/01/2002~ -~18231~^~309~^1.13^6^0.01^~1~^~A~^^^1^1.04^1.16^5^1.07^1.17^~2, 3~^~12/01/2002~ -~18231~^~323~^2.06^3^0.25^~1~^~A~^^^1^1.57^2.38^2^0.98^3.13^~2, 3~^~12/01/2002~ -~18231~^~341~^0.16^3^3.0e-03^~1~^~A~^^^1^0.16^0.17^2^0.14^0.17^~2, 3~^~12/01/2002~ -~18231~^~342~^7.49^3^0.02^~1~^~A~^^^1^7.46^7.54^2^7.38^7.59^~2, 3~^~12/01/2002~ -~18231~^~343~^2.11^3^0.18^~1~^~A~^^^1^1.90^2.48^2^1.30^2.91^~2, 3~^~12/01/2002~ -~18231~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18231~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18232~^~203~^7.30^12^0.08^~1~^~A~^^^1^6.81^9.97^8^7.11^7.48^~2, 3~^~05/01/2014~ -~18232~^~204~^16.40^12^0.22^~1~^~A~^^^1^15.10^20.70^10^15.90^16.88^~2, 3~^~05/01/2014~ -~18232~^~205~^70.73^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~207~^2.83^12^0.11^~1~^~A~^^^1^2.17^3.54^6^2.55^3.11^~2, 3~^~05/01/2014~ -~18232~^~209~^47.38^5^0.46^~1~^~A~^^^1^45.80^50.90^2^45.40^49.35^~2, 3~^~05/01/2014~ -~18232~^~210~^11.85^6^0.29^~1~^~A~^^^1^7.72^12.75^3^10.94^12.75^~2, 3~^~05/01/2014~ -~18232~^~211~^0.79^6^0.05^~1~^~A~^^^1^0.68^1.00^2^0.59^0.99^~2, 3~^~05/01/2014~ -~18232~^~212~^0.42^6^0.04^~1~^~A~^^^1^0.32^0.79^4^0.29^0.53^~2, 3~^~05/01/2014~ -~18232~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~214~^2.42^6^0.15^~1~^~A~^^^1^0.18^2.97^4^1.99^2.84^~1, 2, 3~^~05/01/2014~ -~18232~^~255~^2.75^12^0.12^~1~^~A~^^^1^2.16^3.56^6^2.45^3.04^~2, 3~^~05/01/2014~ -~18232~^~269~^15.48^6^0.27^~1~^~A~^^^1^8.90^16.60^3^14.56^16.39^~2, 3~^~05/01/2014~ -~18232~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~303~^2.64^12^0.08^~1~^~A~^^^1^2.23^6.07^6^2.44^2.83^~2, 3~^~05/01/2014~ -~18232~^~309~^1.64^12^0.03^~1~^~A~^^^1^0.94^2.26^5^1.54^1.73^~2, 3~^~05/01/2014~ -~18232~^~323~^1.55^6^0.12^~1~^~A~^^^1^0.37^2.36^3^1.18^1.92^~2, 3~^~05/01/2014~ -~18232~^~341~^0.46^6^0.03^~1~^~A~^^^1^0.38^0.53^2^0.31^0.60^~2, 3~^~05/01/2014~ -~18232~^~342~^9.23^6^0.75^~1~^~A~^^^1^0.13^14.28^2^6.01^12.43^~2, 3~^~05/01/2014~ -~18232~^~343~^3.29^6^0.26^~1~^~A~^^^1^0.00^4.79^2^2.26^4.31^~1, 2, 3~^~05/01/2014~ -~18232~^~344~^0.29^6^0.04^~1~^~A~^^^1^0.13^0.40^2^0.11^0.46^~2, 3~^~05/01/2014~ -~18232~^~345~^1.63^6^0.18^~1~^~A~^^^1^0.63^2.16^2^0.90^2.35^~2, 3~^~05/01/2014~ -~18232~^~346~^0.05^6^0.04^~1~^~A~^^^1^0.00^0.82^2^-0.16^0.26^~1, 2, 3~^~05/01/2014~ -~18232~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18232~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18232~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18233~^~203~^9.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~204~^25.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~205~^58.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18233~^~207~^3.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~255~^3.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~303~^2.62^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~309~^0.87^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~418~^0.12^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~203~^13.50^4^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~204~^26.70^4^0.98^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~205~^53.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18234~^~207~^2.60^4^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~255~^3.40^3^0.73^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~303~^2.67^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~309~^0.82^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18235~^~203~^10.58^4^0.20^~1~^~A~^^^1^10.13^11.00^3^9.94^11.21^~2, 3~^~10/01/2008~ -~18235~^~204~^14.13^4^0.63^~1~^~A~^^^1^13.10^15.97^3^12.11^16.15^~2, 3~^~10/01/2008~ -~18235~^~205~^69.55^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~207~^2.80^4^0.05^~1~^~A~^^^1^2.67^2.94^3^2.61^2.98^~2, 3~^~10/01/2008~ -~18235~^~209~^57.00^4^0.29^~1~^~A~^^^1^56.20^57.60^3^56.06^57.93^~2, 3~^~10/01/2008~ -~18235~^~210~^0.86^4^0.02^~1~^~A~^^^1^0.82^0.92^3^0.79^0.93^~2, 3~^~10/01/2008~ -~18235~^~211~^0.32^4^0.01^~1~^~A~^^^1^0.30^0.38^3^0.26^0.38^~2, 3~^~10/01/2008~ -~18235~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~255~^2.94^4^0.23^~1~^~A~^^^1^2.50^3.59^3^2.18^3.68^~2, 3~^~10/01/2008~ -~18235~^~269~^1.19^4^0.02^~1~^~A~^^^1^1.13^1.25^3^1.09^1.28^~2, 3~^~10/01/2008~ -~18235~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~303~^3.34^4^0.04^~1~^~A~^^^1^3.20^3.41^3^3.19^3.49^~2, 3~^~10/01/2008~ -~18235~^~309~^2.63^4^0.03^~1~^~A~^^^1^2.52^2.71^3^2.50^2.75^~2, 3~^~10/01/2008~ -~18235~^~323~^1.41^4^0.03^~1~^~A~^^^1^1.35^1.52^3^1.29^1.53^~2, 3~^~10/01/2008~ -~18235~^~341~^0.21^4^3.0e-03^~1~^~A~^^^1^0.21^0.22^3^0.20^0.22^~2, 3~^~10/01/2008~ -~18235~^~342~^7.52^4^0.25^~1~^~A~^^^1^7.15^8.28^3^6.70^8.33^~2, 3~^~10/01/2008~ -~18235~^~343~^2.01^4^0.09^~1~^~A~^^^1^1.86^2.30^3^1.69^2.32^~2, 3~^~10/01/2008~ -~18235~^~344~^0.29^4^0.01^~1~^~A~^^^1^0.26^0.32^3^0.25^0.33^~2, 3~^~10/01/2008~ -~18235~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2008~ -~18235~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18235~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~18236~^~203~^9.30^16^0.26^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~204~^1.70^15^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~205~^80.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18236~^~207~^0.60^13^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~255~^7.60^13^0.45^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~269~^0.33^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~303~^4.64^16^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~309~^0.69^15^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~323~^0.43^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~18236~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18237~^~203~^9.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~204~^25.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~205~^22.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18237~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~255~^40.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~269~^0.25^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~303~^2.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~309~^0.73^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~323~^2.85^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18237~^~418~^0.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~18237~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~ -~18239~^~203~^8.20^26^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~204~^21.00^27^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~205~^45.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18239~^~207~^1.60^6^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~255~^23.20^6^0.73^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~269~^11.26^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18239~^~303~^2.03^4^0.58^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~309~^0.75^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~323~^0.84^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18239~^~418~^0.16^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18239~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~18240~^~203~^7.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~204~^8.70^3^0.29^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~205~^37.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18240~^~207~^1.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~255~^45.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~303~^1.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~309~^1.03^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~418~^0.20^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~203~^9.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~204~^20.90^3^0.29^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~205~^47.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18241~^~207~^1.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~255~^21.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~269~^11.35^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18241~^~303~^2.15^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~309~^0.94^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~323~^1.44^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18241~^~418~^0.32^8^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18241~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18242~^~203~^11.90^5^0.97^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~204~^6.60^6^3.08^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~205~^73.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18242~^~207~^2.50^5^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~255~^5.50^5^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~303~^4.08^5^0.45^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~309~^0.89^5^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~203~^10.80^40^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~204~^18.30^40^0.34^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~205~^63.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18243~^~207~^3.80^11^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~255~^3.60^9^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~269~^4.41^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18243~^~303~^2.82^40^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~309~^0.94^5^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~323~^0.40^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18243~^~418~^0.14^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18243~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18244~^~203~^7.00^3^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~204~^22.40^3^1.63^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~205~^44.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18244~^~207~^1.70^5^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~255~^24.30^3^1.53^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~269~^19.78^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18244~^~303~^1.96^29^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~309~^0.72^31^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~323~^0.39^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18244~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18244~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18245~^~203~^8.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~204~^21.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~205~^37.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18245~^~207~^1.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~255~^31.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~269~^6.95^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~303~^1.80^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18245~^~309~^0.70^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~323~^0.35^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~418~^0.20^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18245~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18246~^~203~^5.40^18^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~204~^18.50^15^0.71^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~205~^47.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~207~^1.20^18^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~255~^27.10^18^1.25^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~269~^27.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~18246~^~303~^1.77^14^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~309~^0.54^6^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~323~^0.34^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18246~^~418~^0.09^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18248~^~203~^5.31^5^0.07^~1~^~A~^^^1^5.19^5.56^1^4.52^6.09^~2, 3~^~04/01/2014~ -~18248~^~204~^24.93^5^0.08^~1~^~A~^^^1^24.67^25.28^2^24.59^25.27^~2, 3~^~04/01/2014~ -~18248~^~205~^47.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~207~^1.87^5^0.01^~1~^~A~^^^1^1.79^1.93^2^1.79^1.95^~2, 3~^~04/01/2014~ -~18248~^~209~^25.91^4^0.32^~1~^~A~^^^1^24.40^26.70^2^24.36^27.45^~2, 3~^~04/01/2014~ -~18248~^~210~^16.02^4^0.57^~1~^~A~^^^1^14.01^16.96^1^10.75^21.27^~2, 3~^~04/01/2014~ -~18248~^~211~^0.67^4^0.02^~1~^~A~^^^1^0.62^0.71^1^0.51^0.81^~2, 3~^~04/01/2014~ -~18248~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~213~^0.93^4^0.04^~1~^~A~^^^1^0.00^1.56^1^0.37^1.48^~1, 2, 3~^~04/01/2014~ -~18248~^~214~^0.54^4^0.03^~1~^~A~^^^1^0.43^0.63^1^0.08^0.99^~2, 3~^~04/01/2014~ -~18248~^~255~^20.82^5^0.16^~1~^~A~^^^1^20.36^21.37^2^20.19^21.44^~2, 3~^~04/01/2014~ -~18248~^~269~^18.15^4^0.57^~1~^~A~^^^1^15.29^19.07^1^11.29^25.00^~2, 3~^~04/01/2014~ -~18248~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~303~^2.53^5^0.05^~1~^~A~^^^1^2.16^2.81^3^2.34^2.71^~2, 3~^~04/01/2014~ -~18248~^~309~^0.50^5^4.0e-03^~1~^~A~^^^1^0.47^0.53^2^0.48^0.51^~2, 3~^~04/01/2014~ -~18248~^~323~^1.99^4^0.13^~1~^~A~^^^1^1.14^2.71^1^0.33^3.64^~2, 3~^~04/01/2014~ -~18248~^~341~^0.14^4^4.0e-03^~1~^~A~^^^1^0.11^0.19^1^0.09^0.19^~2, 3~^~04/01/2014~ -~18248~^~342~^2.45^4^0.37^~1~^~A~^^^1^1.94^3.06^1^-0.15^5.06^~2, 3~^~04/01/2014~ -~18248~^~343~^0.77^4^0.03^~1~^~A~^^^1^0.68^0.99^1^0.42^1.11^~2, 3~^~04/01/2014~ -~18248~^~344~^1.23^4^0.04^~1~^~A~^^^1^0.32^1.80^2^0.98^1.47^~2, 3~^~04/01/2014~ -~18248~^~345~^0.63^4^0.01^~1~^~A~^^^1^0.56^0.69^1^0.51^0.74^~2, 3~^~04/01/2014~ -~18248~^~346~^1.49^4^0.04^~1~^~A~^^^1^0.46^2.05^1^0.97^1.99^~2, 3~^~04/01/2014~ -~18248~^~347~^0.20^4^0.15^~1~^~A~^^^1^0.00^0.48^1^-1.09^1.49^~1, 2, 3~^~04/01/2014~ -~18248~^~418~^0.06^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~18248~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18248~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18249~^~203~^4.93^2^^~1~^~A~^^^1^4.74^5.12^1^^^^~10/01/2005~ -~18249~^~204~^25.25^2^^~1~^~A~^^^1^22.24^28.27^1^^^^~10/01/2005~ -~18249~^~205~^51.33^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18249~^~207~^1.73^2^^~1~^~A~^^^1^1.72^1.74^1^^^^~10/01/2005~ -~18249~^~255~^16.76^2^^~1~^~A~^^^1^13.08^20.44^1^^^^~10/01/2005~ -~18249~^~269~^26.65^2^^~1~^~A~^^^1^23.62^29.68^1^^^^~10/01/2005~ -~18249~^~303~^4.00^2^^~1~^~A~^^^1^2.80^5.20^1^^^^~10/01/2005~ -~18249~^~309~^0.98^2^^~1~^~A~^^^1^0.76^1.20^1^^^^~10/01/2005~ -~18249~^~323~^2.02^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18250~^~203~^5.20^15^0.33^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~204~^22.90^20^0.90^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~205~^50.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18250~^~207~^1.50^13^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~255~^19.60^21^0.39^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~303~^1.06^11^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~309~^0.44^7^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~418~^0.24^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~203~^4.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~204~^19.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~205~^57.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18251~^~207~^1.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~255~^16.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~269~^31.92^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18251~^~303~^2.27^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~309~^0.57^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~323~^0.21^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18251~^~418~^0.10^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18251~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18253~^~203~^3.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~204~^18.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~205~^59.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~207~^1.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~255~^17.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~269~^35.11^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18253~^~303~^2.42^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~309~^0.26^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18253~^~418~^0.05^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18254~^~203~^6.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~204~^24.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~205~^30.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18254~^~207~^0.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~255~^38.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~269~^14.55^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18254~^~303~^1.83^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~309~^0.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18254~^~418~^0.14^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18254~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18255~^~203~^6.14^8^0.18^~1~^~A~^^^1^4.69^6.88^6^5.69^6.58^~2, 3~^~08/01/2012~ -~18255~^~204~^22.70^8^0.70^~1~^~A~^^^1^14.75^24.80^6^20.96^24.43^~2, 3~^~08/01/2012~ -~18255~^~205~^47.93^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~207~^1.22^8^0.04^~1~^~A~^^^1^0.97^1.72^6^1.12^1.32^~2, 3~^~08/01/2012~ -~18255~^~209~^26.35^2^^~1~^~A~^^^1^23.70^29.00^1^^^^~08/01/2012~ -~18255~^~210~^18.39^6^1.57^~1~^~A~^^^1^9.72^25.81^3^13.45^23.32^~2, 3~^~08/01/2012~ -~18255~^~211~^2.21^6^0.12^~1~^~A~^^^1^1.04^2.88^4^1.86^2.55^~2, 3~^~08/01/2012~ -~18255~^~212~^0.64^6^0.07^~1~^~A~^^^1^0.47^1.24^4^0.41^0.87^~2, 3~^~08/01/2012~ -~18255~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~214~^1.51^6^0.24^~1~^~A~^^^1^0.94^3.29^3^0.72^2.28^~2, 3~^~08/01/2012~ -~18255~^~255~^22.00^8^0.32^~1~^~A~^^^1^20.09^25.89^6^21.20^22.80^~2, 3~^~08/01/2012~ -~18255~^~269~^22.75^6^1.42^~1~^~A~^^^1^13.54^28.66^3^18.26^27.24^~2, 3~^~08/01/2012~ -~18255~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~303~^2.38^8^0.08^~1~^~A~^^^1^2.15^2.98^2^1.99^2.77^~2, 3~^~08/01/2012~ -~18255~^~309~^0.61^8^0.01^~1~^~A~^^^1^0.47^0.66^6^0.57^0.64^~2, 3~^~08/01/2012~ -~18255~^~323~^1.43^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~418~^0.11^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18255~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18256~^~203~^5.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~204~^18.70^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~205~^39.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18256~^~207~^0.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~255~^35.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~269~^21.10^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18256~^~303~^1.76^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~309~^0.75^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~323~^0.43^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18256~^~418~^0.22^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18258~^~203~^8.87^2^^~1~^~A~^^^1^8.80^8.95^1^^^^~03/01/2005~ -~18258~^~204~^1.69^2^^~1~^~A~^^^1^1.58^1.80^1^^^^~03/01/2005~ -~18258~^~205~^44.17^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18258~^~207~^1.71^2^^~1~^~A~^^^1^1.58^1.83^1^^^^~03/01/2005~ -~18258~^~209~^37.20^2^^~1~^~A~^^^1^37.20^37.20^^^^^~03/01/2005~ -~18258~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~18258~^~211~^0.66^2^^~1~^~A~^^^1^0.49^0.83^1^^^^~11/01/2006~ -~18258~^~212~^0.69^2^^~1~^~A~^^^1^0.61^0.78^1^^^^~11/01/2006~ -~18258~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~18258~^~214~^2.18^2^^~1~^~A~^^^1^1.65^2.71^1^^^^~11/01/2006~ -~18258~^~255~^43.56^2^^~1~^~A~^^^1^43.08^44.04^1^^^^~03/01/2005~ -~18258~^~269~^3.53^2^^~1~^~A~^^^1^3.26^3.81^1^^^^~11/01/2006~ -~18258~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2006~ -~18258~^~303~^4.00^2^^~1~^~A~^^^1^3.70^4.30^1^^^^~03/01/2005~ -~18258~^~309~^1.05^2^^~1~^~A~^^^1^1.00^1.10^1^^^^~03/01/2005~ -~18258~^~323~^0.31^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18258~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18258~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18259~^~203~^10.32^2^^~1~^~A~^^^1^10.27^10.37^1^^^^~03/01/2005~ -~18259~^~204~^2.02^2^^~1~^~A~^^^1^1.84^2.20^1^^^^~03/01/2005~ -~18259~^~205~^52.65^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~207~^2.04^2^^~1~^~A~^^^1^1.89^2.19^1^^^^~03/01/2005~ -~18259~^~209~^44.50^2^^~1~^~A~^^^1^43.70^45.30^1^^^^~03/01/2005~ -~18259~^~255~^32.97^2^^~1~^~A~^^^1^32.65^33.30^1^^^^~03/01/2005~ -~18259~^~269~^3.47^2^^~1~^~A~^^^1^3.41^3.54^1^^^^~07/01/2007~ -~18259~^~303~^4.65^2^^~1~^~A~^^^1^4.60^4.70^1^^^^~03/01/2005~ -~18259~^~309~^1.40^2^^~1~^~A~^^^1^1.20^1.60^1^^^^~03/01/2005~ -~18259~^~323~^0.36^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~418~^0.05^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~573~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~578~^0.00^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18260~^~203~^9.10^10^0.26^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~204~^1.80^9^0.37^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~205~^46.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18260~^~207~^2.50^6^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~255~^40.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~269~^0.81^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18260~^~303~^3.02^10^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~309~^1.39^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18260~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18262~^~203~^7.91^2^^~1~^~A~^^^1^7.61^8.21^1^^^^~03/01/2005~ -~18262~^~204~^1.80^2^^~1~^~A~^^^1^1.77^1.84^1^^^^~03/01/2005~ -~18262~^~205~^48.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~207~^1.58^2^^~1~^~A~^^^1^1.44^1.72^1^^^^~03/01/2005~ -~18262~^~209~^31.40^2^^~1~^~A~^^^1^30.30^32.50^1^^^^~03/01/2005~ -~18262~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2012~ -~18262~^~255~^40.60^2^^~1~^~A~^^^1^40.32^40.89^1^^^^~03/01/2005~ -~18262~^~269~^14.76^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~18262~^~303~^4.50^2^^~1~^~A~^^^1^3.20^5.80^1^^^^~03/01/2005~ -~18262~^~309~^0.97^2^^~1~^~A~^^^1^0.93^1.00^1^^^^~03/01/2005~ -~18262~^~323~^0.31^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18262~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18262~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18263~^~203~^8.87^2^^~1~^~A~^^^1^8.60^9.15^1^^^^~03/01/2005~ -~18263~^~204~^2.21^2^^~1~^~A~^^^1^1.98^2.44^1^^^^~03/01/2005~ -~18263~^~205~^55.04^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~207~^1.81^2^^~1~^~A~^^^1^1.67^1.95^1^^^^~03/01/2005~ -~18263~^~209~^36.05^2^^~1~^~A~^^^1^35.00^37.10^1^^^^~03/01/2005~ -~18263~^~255~^32.07^2^^~1~^~A~^^^1^31.75^32.38^1^^^^~03/01/2005~ -~18263~^~269~^13.34^2^^~1~^~A~^^^1^11.23^15.46^1^^^^~07/01/2007~ -~18263~^~303~^4.90^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~18263~^~309~^1.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~18263~^~323~^0.36^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18264~^~203~^8.70^7^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~204~^2.00^6^0.24^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~205~^44.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18264~^~207~^2.30^5^0.24^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~255~^42.30^7^1.16^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~269~^1.56^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~18264~^~303~^2.87^11^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~309~^1.07^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~323~^0.45^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18264~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18264~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18266~^~203~^8.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~204~^2.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~205~^40.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18266~^~207~^2.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~255~^45.70^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~269~^8.09^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~18266~^~303~^2.45^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~309~^1.60^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~323~^0.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18266~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18266~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18268~^~203~^7.40^54^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~204~^6.10^54^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~205~^32.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18268~^~207~^1.80^54^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~255~^52.60^66^0.33^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~303~^2.21^63^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~309~^0.77^15^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~418~^1.68^64^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~203~^7.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~204~^10.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~205~^25.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18269~^~207~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~255~^54.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~303~^1.67^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~309~^0.67^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~418~^0.31^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~203~^7.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~204~^13.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~205~^46.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18270~^~207~^3.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~255~^29.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~269~^2.03^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~303~^3.04^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~309~^0.66^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~323~^1.26^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18270~^~418~^0.19^0^^~1~^^^^^^^^^^^~04/01/2002~ -~18270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18271~^~203~^8.10^11^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~204~^6.90^10^0.56^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~205~^79.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18271~^~207~^0.70^11^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~255~^5.30^13^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~269~^6.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18271~^~303~^3.60^12^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~309~^0.67^14^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~323~^0.78^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18271~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18271~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18272~^~203~^7.90^13^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~204~^3.80^14^0.25^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~205~^84.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18272~^~207~^1.10^13^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~255~^3.00^13^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~269~^25.66^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18272~^~303~^4.43^13^0.42^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~309~^0.75^14^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18272~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18272~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18273~^~203~^6.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~204~^11.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~205~^41.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18273~^~207~^2.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~255~^37.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~303~^2.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~309~^0.56^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~418~^0.15^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18274~^~203~^4.49^15^0.06^~1~^~A~^^^1^3.50^5.62^4^4.29^4.69^~2, 3~^~07/01/2014~ -~18274~^~204~^16.07^15^0.24^~1~^~A~^^^1^14.40^17.83^2^15.16^16.98^~2, 3~^~07/01/2014~ -~18274~^~205~^53.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~207~^1.46^15^0.04^~1~^~A~^^^1^1.11^1.74^3^1.31^1.61^~2, 3~^~07/01/2014~ -~18274~^~209~^16.31^9^0.27^~1~^~A~^^^1^15.40^17.50^2^15.17^17.44^~2, 3~^~07/01/2014~ -~18274~^~210~^28.01^9^0.21^~1~^~A~^^^1^25.07^30.71^2^27.15^28.86^~2, 3~^~07/01/2014~ -~18274~^~211~^1.23^9^0.10^~1~^~A~^^^1^0.75^1.80^2^0.82^1.64^~2, 3~^~07/01/2014~ -~18274~^~212~^1.21^9^0.09^~1~^~A~^^^1^0.84^1.70^2^0.82^1.59^~2, 3~^~07/01/2014~ -~18274~^~213~^0.54^9^0.20^~1~^~A~^^^1^0.00^2.08^3^-0.16^1.25^~1, 2, 3~^~07/01/2014~ -~18274~^~214~^0.47^9^0.12^~1~^~A~^^^1^0.18^0.91^3^0.07^0.87^~1, 2, 3~^~07/01/2014~ -~18274~^~255~^24.96^15^0.27^~1~^~A~^^^1^21.00^27.80^2^23.93^25.99^~2, 3~^~07/01/2014~ -~18274~^~269~^31.47^9^0.34^~1~^~A~^^^1^28.39^34.95^4^30.51^32.41^~2, 3~^~07/01/2014~ -~18274~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18274~^~303~^1.30^15^0.04^~1~^~A~^^^1^0.43^1.75^6^1.18^1.41^~2, 3~^~07/01/2014~ -~18274~^~309~^0.37^15^3.0e-03^~1~^~A~^^^1^0.28^0.50^8^0.36^0.37^~2, 3~^~08/01/2012~ -~18274~^~323~^1.63^9^0.05^~1~^~A~^^^1^1.21^2.30^4^1.47^1.78^~2, 3~^~07/01/2014~ -~18274~^~341~^0.19^9^7.0e-03^~1~^~A~^^^1^0.05^0.24^3^0.16^0.21^~2, 3~^~07/01/2014~ -~18274~^~342~^9.06^9^0.23^~1~^~A~^^^1^4.58^10.78^2^8.19^9.92^~2, 3~^~07/01/2014~ -~18274~^~343~^3.47^9^0.12^~1~^~A~^^^1^0.61^4.55^2^2.98^3.94^~2, 3~^~07/01/2014~ -~18274~^~344~^0.03^9^3.0e-03^~1~^~A~^^^1^0.02^0.05^3^0.02^0.04^~1, 2, 3~^~07/01/2014~ -~18274~^~345~^0.01^9^0.01^~1~^~A~^^^1^0.00^0.16^2^-0.03^0.05^~1, 2, 3~^~07/01/2014~ -~18274~^~346~^0.10^9^0.01^~1~^~A~^^^1^0.06^0.13^3^0.06^0.12^~2, 3~^~08/01/2012~ -~18274~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18274~^~418~^0.16^2^^~1~^~A~^^^1^0.16^0.16^^^^^~08/01/2012~ -~18274~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18274~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18275~^~203~^3.48^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~204~^3.25^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~205~^61.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18275~^~207~^2.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~255~^30.18^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~269~^32.73^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~303~^1.62^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~309~^0.33^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~203~^4.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~204~^9.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~205~^53.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18277~^~207~^1.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~255~^30.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~269~^4.85^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18277~^~303~^0.51^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~309~^0.39^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~323~^0.91^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18277~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18277~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18278~^~203~^6.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~204~^10.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~205~^40.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18278~^~207~^2.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~255~^39.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~303~^2.27^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~309~^0.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~418~^0.14^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~203~^5.90^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18279~^~204~^8.40^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18279~^~205~^51.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18279~^~207~^2.10^3^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~255~^32.60^6^1.40^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~269~^17.78^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18279~^~303~^2.81^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~309~^0.54^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~323~^0.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18279~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18279~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18280~^~203~^7.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~204~^10.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~205~^49.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18280~^~207~^2.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~255~^30.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~303~^1.94^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~309~^0.64^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~418~^0.16^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~203~^5.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~204~^11.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~205~^57.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18281~^~207~^1.90^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~255~^23.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~303~^1.47^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~309~^0.39^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~418~^0.03^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18282~^~203~^7.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~204~^12.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~205~^44.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18282~^~207~^3.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~255~^33.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~303~^2.61^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~309~^0.61^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~418~^0.16^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~203~^7.00^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~204~^7.40^3^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~205~^48.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~207~^2.30^4^0.00^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~255~^35.00^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~269~^8.22^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18283~^~303~^4.20^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~309~^1.84^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~323~^0.66^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18283~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18284~^~203~^7.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~204~^12.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~205~^73.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18284~^~207~^3.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~255~^4.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~303~^3.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~309~^1.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18288~^~203~^5.23^6^0.05^~1~^~A~^^^1^5.00^5.38^5^5.08^5.37^~2, 3~^~08/01/2012~ -~18288~^~204~^6.83^6^0.04^~1~^~A~^^^1^6.70^7.00^5^6.70^6.96^~2, 3~^~08/01/2012~ -~18288~^~205~^37.75^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~207~^1.82^6^0.08^~1~^~A~^^^1^1.65^2.21^5^1.59^2.04^~2, 3~^~08/01/2012~ -~18288~^~209~^25.20^3^0.00^~1~^~A~^^^1^25.20^25.20^^^^~2, 3~^~08/01/2012~ -~18288~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~211~^4.58^3^0.02^~1~^~A~^^^1^4.52^4.61^2^4.45^4.69^~2, 3~^~08/01/2012~ -~18288~^~212~^3.74^3^0.05^~1~^~A~^^^1^3.64^3.80^2^3.52^3.96^~2, 3~^~08/01/2012~ -~18288~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~255~^48.37^6^0.08^~1~^~A~^^^1^48.00^48.60^5^48.14^48.59^~2, 3~^~08/01/2012~ -~18288~^~269~^8.32^3^0.04^~1~^~A~^^^1^8.24^8.40^2^8.12^8.51^~2, 3~^~08/01/2012~ -~18288~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18288~^~303~^5.67^6^0.17^~1~^~A~^^^1^5.01^6.11^5^5.22^6.11^~2, 3~^~08/01/2012~ -~18288~^~309~^0.40^6^0.01^~1~^~A~^^^1^0.37^0.46^5^0.36^0.43^~2, 3~^~08/01/2012~ -~18288~^~323~^0.62^3^0.03^~1~^~A~^^^1^0.57^0.68^2^0.48^0.76^~2, 3~^~08/01/2012~ -~18288~^~341~^0.20^3^9.0e-03^~1~^~A~^^^1^0.18^0.21^2^0.16^0.23^~2, 3~^~08/01/2012~ -~18288~^~342~^3.59^3^0.37^~1~^~A~^^^1^3.11^4.33^2^1.97^5.21^~2, 3~^~08/01/2012~ -~18288~^~343~^1.27^3^0.19^~1~^~A~^^^1^1.03^1.65^2^0.42^2.10^~2, 3~^~08/01/2012~ -~18288~^~344~^0.07^3^4.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.04^0.08^~2, 3~^~08/01/2012~ -~18288~^~345~^0.68^3^0.03^~1~^~A~^^^1^0.63^0.74^2^0.53^0.81^~2, 3~^~08/01/2012~ -~18288~^~346~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~08/01/2012~ -~18288~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~18288~^~418~^2.80^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18288~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~18288~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18289~^~203~^9.77^17^0.06^~1~^~A~^^^1^7.10^10.80^6^9.62^9.91^~2, 3~^~04/01/2011~ -~18289~^~204~^3.10^17^0.05^~1~^~A~^^^1^2.30^4.70^5^2.95^3.24^~2, 3~^~04/01/2011~ -~18289~^~205~^73.65^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~207~^4.44^17^0.03^~1~^~A~^^^1^4.03^5.07^7^4.35^4.52^~2, 3~^~04/01/2011~ -~18289~^~209~^56.20^8^0.42^~1~^~A~^^^1^54.40^58.80^2^54.40^58.00^~2, 3~^~04/01/2011~ -~18289~^~210~^10.00^8^0.10^~1~^~A~^^^1^5.92^12.34^3^9.61^10.38^~2, 3~^~04/01/2011~ -~18289~^~211~^2.69^8^0.02^~1~^~A~^^^1^2.04^4.96^3^2.59^2.77^~2, 3~^~04/01/2011~ -~18289~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~213~^0.86^8^0.03^~1~^~A~^^^1^0.00^1.28^2^0.71^1.00^~1, 2, 3~^~04/01/2011~ -~18289~^~214~^2.49^8^0.03^~1~^~A~^^^1^1.92^3.52^3^2.37^2.59^~2, 3~^~04/01/2011~ -~18289~^~255~^9.05^17^0.11^~1~^~A~^^^1^8.00^10.10^5^8.75^9.33^~2, 3~^~04/01/2011~ -~18289~^~269~^16.03^8^0.14^~1~^~A~^^^1^12.80^18.22^2^15.50^16.55^~2, 3~^~04/01/2011~ -~18289~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~303~^3.60^17^0.10^~1~^~A~^^^1^2.37^4.72^6^3.33^3.86^~2, 3~^~04/01/2011~ -~18289~^~309~^0.72^17^0.01^~1~^~A~^^^1^0.58^0.80^6^0.69^0.74^~2, 3~^~04/01/2011~ -~18289~^~418~^0.32^9^0.10^~1~^~A~^^^1^0.08^2.10^2^-0.15^0.78^~2, 3~^~04/01/2011~ -~18290~^~203~^5.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~204~^2.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~205~^36.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18290~^~207~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~255~^53.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~303~^1.56^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~309~^0.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~203~^10.00^129^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~204~^1.70^125^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~205~^73.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~207~^5.60^110^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~255~^9.10^124^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~269~^2.21^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18291~^~303~^3.05^104^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~309~^0.84^58^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~323~^0.39^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18291~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18292~^~203~^7.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~204~^7.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~205~^28.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18292~^~207~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~255~^52.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~303~^1.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~309~^0.75^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~418~^0.34^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~203~^6.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~204~^9.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~205~^28.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18293~^~207~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~255~^52.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~303~^1.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~309~^0.56^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~418~^0.22^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~203~^6.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~204~^9.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~205~^29.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18294~^~207~^2.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~255~^53.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~303~^1.72^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~309~^0.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~418~^0.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~203~^10.90^43^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~204~^2.70^43^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~205~^71.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18295~^~207~^6.00^34^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~255~^9.10^43^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~269~^7.21^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18295~^~303~^4.73^26^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~309~^2.55^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~323~^0.48^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18295~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18295~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18295~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18297~^~203~^8.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~204~^1.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~205~^73.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18297~^~207~^5.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~255~^10.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~303~^3.05^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~309~^1.19^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~203~^12.80^19^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~204~^1.50^19^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~205~^71.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18299~^~207~^5.90^19^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~255~^8.80^19^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~303~^7.84^19^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~309~^1.96^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~203~^8.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~204~^6.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~205~^29.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18300~^~207~^2.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~255~^52.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~303~^3.11^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~309~^1.04^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~418~^0.29^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~203~^1.90^17^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~204~^11.00^21^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~205~^34.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18301~^~207~^0.90^23^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~255~^52.20^21^1.30^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~269~^15.65^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~18301~^~303~^0.45^36^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~309~^0.16^36^8.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~323~^1.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18301~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18301~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18302~^~203~^2.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~204~^12.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~205~^37.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18302~^~207~^0.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~255~^47.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~303~^1.12^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~309~^0.19^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~203~^3.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~204~^12.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~205~^31.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18303~^~207~^1.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~255~^50.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~303~^0.46^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~309~^0.33^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~418~^0.21^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~203~^4.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~204~^13.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~205~^32.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18304~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~255~^47.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~269~^12.06^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~18304~^~303~^1.04^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~309~^0.48^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~323~^0.40^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18304~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18304~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18305~^~203~^1.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~204~^10.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~205~^34.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18305~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~255~^52.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~269~^9.89^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18305~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~309~^0.16^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~323~^1.04^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18305~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18305~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18306~^~203~^2.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~204~^11.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~205~^33.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18306~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~255~^51.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~303~^1.23^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~203~^2.00^5^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~204~^11.00^6^0.55^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~205~^39.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~207~^0.90^7^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~255~^46.20^5^1.63^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~269~^14.29^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18308~^~303~^0.48^5^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~309~^0.18^3^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~323~^0.76^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18308~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18308~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18309~^~203~^2.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~204~^12.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~205~^38.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18309~^~207~^0.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~255~^45.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~303~^1.85^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~309~^0.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18310~^~203~^4.15^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~204~^22.41^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~205~^38.44^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18310~^~207~^1.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~255~^33.92^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~269~^27.39^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~303~^1.49^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~309~^0.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~323~^1.09^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~418~^0.12^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18312~^~203~^3.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~204~^15.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~205~^29.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18312~^~207~^1.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~255~^49.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~303~^1.08^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~309~^0.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~418~^0.21^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~203~^2.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~204~^16.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~205~^37.30^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18313~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~255~^43.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~269~^18.52^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18313~^~303~^0.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~309~^0.47^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~323~^0.15^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18313~^~418~^0.12^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18313~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18314~^~203~^2.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~204~^17.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~205~^28.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18314~^~207~^1.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~255~^49.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~303~^0.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~309~^0.38^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~418~^0.21^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~203~^5.90^3^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~204~^13.20^3^1.61^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~205~^30.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18316~^~207~^1.40^3^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~255~^49.20^3^3.68^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~303~^0.80^3^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~309~^0.68^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~418~^0.09^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18317~^~203~^5.50^6^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~204~^11.60^6^0.24^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~205~^20.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18317~^~207~^1.30^8^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~255~^60.90^4^1.93^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~269~^11.58^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18317~^~303~^0.58^4^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~309~^0.52^3^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~323~^0.94^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18317~^~418~^0.43^9^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18317~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18319~^~203~^3.00^23^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~204~^16.10^30^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~205~^42.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18319~^~207~^1.10^15^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~255~^37.60^28^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~269~^21.40^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18319~^~303~^1.22^22^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~309~^0.23^8^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~323~^1.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18319~^~418~^0.08^4^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18319~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18320~^~203~^1.50^3^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~204~^8.70^6^1.11^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~205~^47.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18320~^~207~^0.90^7^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~255~^41.70^5^2.58^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~269~^23.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18320~^~303~^0.61^3^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~309~^0.49^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~323~^1.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18320~^~418~^0.17^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18320~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18321~^~203~^3.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~204~^12.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~205~^39.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18321~^~207~^0.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~255~^43.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~303~^1.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~309~^0.28^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~418~^0.12^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~203~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~204~^10.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~205~^48.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18322~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~255~^37.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~269~^28.31^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~18322~^~303~^1.49^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~309~^0.22^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~323~^0.15^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18322~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18322~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18323~^~203~^1.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~204~^10.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~205~^32.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18323~^~207~^0.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~255~^54.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~269~^16.23^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~18323~^~303~^0.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~309~^0.09^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~323~^0.94^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18323~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18323~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18323~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18324~^~203~^4.50^2^^~1~^~A~^^^1^4.25^4.75^1^^^^~10/01/2007~ -~18324~^~204~^16.69^2^^~1~^~A~^^^1^15.09^18.30^1^^^^~10/01/2007~ -~18324~^~205~^59.61^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18324~^~207~^0.95^2^^~1~^~A~^^^1^0.91^0.99^1^^^^~10/01/2007~ -~18324~^~209~^16.95^2^^~1~^~A~^^^1^16.86^17.03^1^^^^~10/01/2007~ -~18324~^~210~^14.44^2^^~1~^~A~^^^1^14.13^14.76^1^^^^~10/01/2007~ -~18324~^~211~^5.53^2^^~1~^~A~^^^1^5.00^6.07^1^^^^~10/01/2007~ -~18324~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18324~^~213~^0.23^2^^~1~^~A~^^^1^0.21^0.24^1^^^^~10/01/2007~ -~18324~^~214~^4.98^2^^~1~^~A~^^^1^3.98^5.97^1^^^^~10/01/2007~ -~18324~^~255~^18.25^2^^~1~^~A~^^^1^17.19^19.31^1^^^^~10/01/2007~ -~18324~^~269~^25.18^2^^~1~^~A~^^^1^23.98^26.38^1^^^^~10/01/2007~ -~18324~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18324~^~303~^0.93^2^^~1~^~A~^^^1^0.86^1.00^1^^^^~10/01/2007~ -~18324~^~309~^0.87^2^^~1~^~A~^^^1^0.87^0.87^^^^^~10/01/2007~ -~18324~^~323~^0.80^2^^~1~^~A~^^^1^0.65^0.95^1^^^^~10/01/2007~ -~18324~^~341~^0.08^2^^~1~^~A~^^^1^0.07^0.09^1^^^^~10/01/2007~ -~18324~^~342~^6.64^2^^~1~^~A~^^^1^5.73^7.56^1^^^^~10/01/2007~ -~18324~^~343~^1.62^2^^~1~^~A~^^^1^1.49^1.75^1^^^^~10/01/2007~ -~18324~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~10/01/2007~ -~18324~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18324~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18324~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2007~ -~18324~^~418~^0.12^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18325~^~203~^4.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~204~^22.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~205~^52.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18325~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~255~^19.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~303~^1.48^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~309~^1.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~418~^0.17^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18326~^~203~^3.90^3^0.57^~1~^~A~^^^1^2.81^4.75^2^1.43^6.35^~2, 3~^~11/01/2007~ -~18326~^~204~^9.75^2^^~1~^~A~^^^1^9.47^10.03^1^^^^~11/01/2007~ -~18326~^~205~^34.83^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~207~^1.14^3^0.04^~1~^~A~^^^1^1.05^1.20^2^0.94^1.33^~2, 3~^~11/01/2007~ -~18326~^~209~^10.73^3^1.63^~1~^~A~^^^1^8.90^14.00^2^3.68^17.77^~2, 3~^~11/01/2007~ -~18326~^~210~^9.30^3^5.96^~1~^~A~^^^1^0.58^20.70^2^-16.34^34.94^~2, 3~^~11/01/2007~ -~18326~^~211~^3.78^3^2.03^~1~^~A~^^^1^0.51^7.52^2^-4.98^12.54^~2, 3~^~11/01/2007~ -~18326~^~212~^2.85^3^1.57^~1~^~A~^^^1^0.37^5.77^2^-3.92^9.62^~2, 3~^~11/01/2007~ -~18326~^~213~^2.00^3^0.54^~1~^~A~^^^1^1.34^3.08^2^-0.35^4.34^~2, 3~^~11/01/2007~ -~18326~^~214~^0.95^3^0.38^~1~^~A~^^^1^0.46^1.70^2^-0.68^2.58^~2, 3~^~11/01/2007~ -~18326~^~255~^50.39^3^2.97^~1~^~A~^^^1^44.63^54.56^2^37.59^63.18^~2, 3~^~11/01/2007~ -~18326~^~269~^18.88^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18326~^~287~^0.01^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~303~^0.90^3^0.12^~1~^~A~^^^1^0.67^1.10^2^0.36^1.43^~2, 3~^~11/01/2007~ -~18326~^~309~^0.39^3^0.05^~1~^~A~^^^1^0.33^0.49^2^0.17^0.60^~2, 3~^~11/01/2007~ -~18326~^~323~^0.76^3^0.22^~1~^~A~^^^1^0.33^1.08^2^-0.20^1.71^~2, 3~^~11/01/2007~ -~18326~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.06^2^7.0e-03^0.09^~2, 3~^~11/01/2007~ -~18326~^~342~^3.49^3^0.93^~1~^~A~^^^1^1.62^4.56^2^-0.54^7.52^~2, 3~^~11/01/2007~ -~18326~^~343~^1.00^3^0.22^~1~^~A~^^^1^0.58^1.33^2^0.04^1.94^~2, 3~^~11/01/2007~ -~18326~^~344~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.04^~1, 2, 3~^~07/01/2012~ -~18326~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~418~^0.35^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18327~^~203~^4.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~204~^9.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~205~^26.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18327~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~255~^58.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~303~^1.27^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~309~^0.46^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~418~^0.09^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~203~^4.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~204~^14.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~205~^32.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18328~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~255~^47.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~269~^12.68^0^^~4~^~RK~^^^^^^^^^^~03/01/2009~ -~18328~^~303~^1.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~309~^0.53^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~323~^0.45^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~ -~18328~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18328~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18332~^~203~^6.90^30^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~204~^31.40^34^0.44^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~205~^52.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18332~^~207~^2.00^28^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~255~^7.60^28^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~303~^2.22^20^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~309~^0.40^10^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~203~^6.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~204~^30.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~205~^50.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18333~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~255~^10.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~303~^2.15^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~309~^0.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18334~^~203~^6.16^2^^~1~^~A~^^^1^5.50^6.81^1^^^^~04/01/2008~ -~18334~^~204~^26.07^2^^~1~^~A~^^^1^25.12^27.02^1^^^^~04/01/2008~ -~18334~^~205~^48.62^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~207~^1.33^2^^~1~^~A~^^^1^1.32^1.34^1^^^^~04/01/2008~ -~18334~^~209~^44.10^2^^~1~^~A~^^^1^43.00^45.20^1^^^^~04/01/2008~ -~18334~^~255~^17.82^2^^~1~^~A~^^^1^17.40^18.25^1^^^^~04/01/2008~ -~18334~^~269~^3.72^0^^~4~^~BFYN~^~18335~^^^^^^^^^~06/01/2015~ -~18334~^~303~^2.60^2^^~1~^~A~^^^1^1.45^3.74^1^^^^~04/01/2008~ -~18334~^~309~^0.45^2^^~1~^~A~^^^1^0.44^0.46^1^^^^~04/01/2008~ -~18334~^~323~^0.46^2^^~1~^~A~^^^1^0.05^0.86^1^^^^~04/01/2008~ -~18334~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~04/01/2008~ -~18334~^~342~^4.51^2^^~1~^~A~^^^1^0.61^8.41^1^^^^~04/01/2008~ -~18334~^~343~^1.50^2^^~1~^~A~^^^1^0.04^2.97^1^^^^~04/01/2008~ -~18334~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2008~ -~18334~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18334~^~346~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~04/01/2008~ -~18334~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18334~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~18334~^~578~^0.00^0^^~4~^~BFYN~^~18335~^^^^^^^^^~05/01/2014~ -~18335~^~203~^6.50^2^^~1~^~A~^^^1^6.19^6.81^1^^^^~04/01/2008~ -~18335~^~204~^28.59^2^^~1~^~A~^^^1^27.41^29.78^1^^^^~04/01/2008~ -~18335~^~205~^56.24^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~207~^1.49^2^^~1~^~A~^^^1^1.48^1.49^1^^^^~04/01/2008~ -~18335~^~209~^48.30^2^^~1~^~A~^^^1^46.00^50.60^1^^^^~04/01/2008~ -~18335~^~255~^7.18^2^^~1~^~A~^^^1^7.06^7.31^1^^^^~04/01/2008~ -~18335~^~269~^4.23^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~303~^2.80^2^^~1~^~A~^^^1^1.72^3.88^1^^^^~04/01/2008~ -~18335~^~309~^0.51^0^^~4~^~BFSN~^~18334~^^^^^^^^^~04/01/2008~ -~18335~^~323~^0.54^2^^~1~^~A~^^^1^0.08^1.01^1^^^^~04/01/2008~ -~18335~^~341~^0.09^2^^~1~^~A~^^^1^0.07^0.10^1^^^^~04/01/2008~ -~18335~^~342~^5.31^2^^~1~^~A~^^^1^0.73^9.90^1^^^^~04/01/2008~ -~18335~^~343~^1.64^2^^~1~^~A~^^^1^0.05^3.22^1^^^^~04/01/2008~ -~18335~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2008~ -~18335~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18335~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2008~ -~18335~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18335~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18335~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18335~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~18336~^~203~^6.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~204~^34.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~205~^47.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18336~^~207~^1.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~255~^9.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~269~^0.17^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~303~^2.89^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~309~^0.44^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~323~^0.31^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18336~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~203~^7.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~204~^38.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~205~^45.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18337~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~255~^8.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~269~^0.74^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~303~^2.56^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~309~^0.53^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~323~^0.54^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18337~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~203~^7.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~204~^6.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~205~^52.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18338~^~207~^1.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~255~^32.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~269~^0.18^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~303~^3.21^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~309~^0.49^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~323~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18338~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18338~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18339~^~203~^10.40^15^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~204~^4.30^19^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~205~^71.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18339~^~207~^2.60^11^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~255~^11.70^19^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~303~^2.97^4^0.58^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~309~^0.88^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~418~^0.08^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18342~^~203~^10.86^3^0.28^~1~^~A~^^^1^10.29^11.20^2^9.62^12.09^~2, 3~^~10/01/2005~ -~18342~^~204~^6.47^3^0.27^~1~^~A~^^^1^5.94^6.83^2^5.30^7.64^~2, 3~^~10/01/2005~ -~18342~^~205~^52.04^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~207~^2.18^3^0.02^~1~^~A~^^^1^2.14^2.22^2^2.07^2.27^~2, 3~^~10/01/2005~ -~18342~^~255~^28.44^3^1.68^~1~^~A~^^^1^26.27^31.75^2^21.20^35.68^~2, 3~^~10/01/2005~ -~18342~^~269~^5.55^3^0.28^~1~^~A~^^^1^4.99^5.96^2^4.31^6.79^~2, 3~^~03/01/2007~ -~18342~^~303~^3.72^3^0.08^~1~^~A~^^^1^3.58^3.86^2^3.36^4.06^~2, 3~^~10/01/2005~ -~18342~^~309~^0.99^3^0.05^~1~^~A~^^^1^0.89^1.05^2^0.76^1.21^~2, 3~^~10/01/2005~ -~18342~^~323~^0.28^3^0.10^~1~^~A~^^^1^0.16^0.48^2^-0.15^0.71^~2, 3~^~10/01/2005~ -~18342~^~418~^0.13^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18344~^~203~^9.50^3^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~204~^6.40^4^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~205~^52.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18344~^~207~^1.70^4^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~255~^30.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~269~^4.30^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~18344~^~303~^3.52^3^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~309~^1.12^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~323~^0.36^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18344~^~418~^0.24^8^7.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18344~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18345~^~203~^9.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~204~^4.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~205~^40.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18345~^~207~^1.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~255~^44.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~269~^6.67^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18345~^~303~^4.14^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~309~^1.02^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~323~^0.48^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18345~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18346~^~203~^10.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~204~^3.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~205~^53.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18346~^~207~^2.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~255~^30.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~269~^1.17^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~303~^2.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~309~^0.97^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~323~^0.34^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18346~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18346~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18347~^~203~^8.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~204~^6.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~205~^46.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18347~^~207~^2.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~255~^37.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~269~^1.63^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18347~^~303~^3.55^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~309~^0.90^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18347~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18347~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18348~^~203~^8.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~204~^4.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~205~^51.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18348~^~207~^2.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~255~^33.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~269~^8.46^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18348~^~303~^2.42^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~309~^2.01^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~323~^0.90^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18348~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18348~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18349~^~203~^8.60^13^0.35^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~204~^4.30^14^0.39^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~205~^50.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18349~^~207~^1.90^27^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~255~^34.80^31^0.47^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~269~^0.31^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18349~^~303~^2.71^27^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~309~^0.90^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18349~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18349~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18350~^~203~^9.77^5^0.26^~1~^~A~^^^1^9.06^10.56^4^9.04^10.50^~2, 3~^~02/01/2015~ -~18350~^~204~^3.91^5^0.15^~1~^~A~^^^1^3.54^4.44^4^3.48^4.34^~2, 3~^~02/01/2015~ -~18350~^~205~^50.12^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~207~^1.85^5^0.06^~1~^~A~^^^1^1.68^2.08^4^1.66^2.04^~2, 3~^~02/01/2015~ -~18350~^~209~^36.70^3^1.15^~1~^~A~^^^1^34.70^38.70^2^31.73^41.66^~2, 3~^~02/01/2015~ -~18350~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~18350~^~211~^2.27^3^0.28^~1~^~A~^^^1^1.75^2.72^2^1.05^3.48^~2, 3~^~02/01/2015~ -~18350~^~212~^2.49^3^0.19^~1~^~A~^^^1^2.24^2.88^2^1.64^3.34^~2, 3~^~02/01/2015~ -~18350~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18350~^~214~^2.52^3^0.49^~1~^~A~^^^1^1.92^3.51^2^0.37^4.66^~2, 3~^~02/01/2015~ -~18350~^~255~^34.34^5^0.41^~1~^~A~^^^1^33.03^35.41^4^33.18^35.49^~2, 3~^~02/01/2015~ -~18350~^~269~^7.28^3^0.11^~1~^~A~^^^1^7.14^7.50^2^6.80^7.75^~2, 3~^~02/01/2015~ -~18350~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~18350~^~303~^3.43^5^0.56^~1~^~A~^^^1^1.70^4.83^4^1.85^5.01^~2, 3~^~03/01/2011~ -~18350~^~309~^0.73^5^0.04^~1~^~A~^^^1^0.60^0.87^4^0.59^0.86^~2, 3~^~02/01/2015~ -~18350~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18350~^~341~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18350~^~342~^1.68^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18350~^~343~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18350~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~18350~^~345~^0.42^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~18350~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18350~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18350~^~418~^0.20^2^^~1~^~A~^^^1^0.19^0.20^1^^^^~01/01/2003~ -~18350~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18350~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18351~^~203~^9.60^15^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~204~^6.00^15^0.58^~1~^^^^^^^^^^^~09/01/1998~ -~18351~^~205~^44.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18351~^~207~^1.80^9^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~255~^38.00^3^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~269~^6.25^4^0.15^~1~^~A~^^^1^5.87^6.61^3^5.76^6.73^~2, 3~^~03/01/2007~ -~18351~^~303~^3.95^15^0.24^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~309~^1.05^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~323~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^^~03/01/2003~ -~18351~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18353~^~203~^9.90^29^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~204~^4.30^26^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~205~^52.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18353~^~207~^2.00^39^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~255~^31.00^46^0.45^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~269~^1.77^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~18353~^~303~^3.28^23^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~309~^0.94^9^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18353~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18353~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18354~^~203~^3.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~204~^11.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~205~^41.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18354~^~207~^0.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~255~^43.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~269~^25.75^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18354~^~303~^0.42^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~309~^0.19^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~323~^1.42^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18354~^~418~^0.22^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18354~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18355~^~203~^7.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~204~^18.30^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~205~^43.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18355~^~207~^1.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~255~^29.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~303~^0.76^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~309~^0.63^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~418~^0.30^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~203~^6.20^8^0.31^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~204~^16.40^8^1.18^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~205~^50.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18356~^~207~^1.70^8^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~255~^24.80^12^0.75^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~269~^31.73^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18356~^~303~^1.60^13^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~309~^0.59^6^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~323~^1.99^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18356~^~418~^0.14^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18356~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18357~^~203~^5.00^16^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~204~^12.20^16^0.64^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~205~^51.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18357~^~207~^2.40^16^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~255~^28.90^16^0.67^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~303~^2.44^10^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~309~^0.31^8^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18358~^~203~^5.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~204~^13.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~205~^56.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~207~^2.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~255~^22.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~303~^2.65^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~309~^0.34^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~418~^0.05^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18360~^~203~^6.41^16^0.05^~1~^~A~^^^1^5.94^7.06^10^6.28^6.53^~2, 3~^~07/01/2014~ -~18360~^~204~^21.79^16^0.20^~1~^~A~^^^1^17.56^23.78^9^21.32^22.25^~2, 3~^~07/01/2014~ -~18360~^~205~^63.49^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~207~^1.90^16^0.05^~1~^~A~^^^1^1.05^2.80^7^1.76^2.03^~2, 3~^~07/01/2014~ -~18360~^~209~^54.94^6^0.73^~1~^~A~^^^1^49.60^56.90^4^52.86^57.00^~2, 3~^~07/01/2014~ -~18360~^~210~^1.00^9^0.03^~1~^~A~^^^1^0.80^1.20^3^0.86^1.13^~2, 3~^~07/01/2014~ -~18360~^~211~^0.10^9^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~18360~^~212~^0.10^9^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~18360~^~213~^0.10^9^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~18360~^~214~^0.10^9^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~18360~^~255~^6.40^16^0.05^~1~^~A~^^^1^5.98^6.98^8^6.27^6.53^~2, 3~^~07/01/2014~ -~18360~^~269~^1.50^9^0.03^~1~^~A~^^^1^1.30^1.70^3^1.36^1.63^~2, 3~^~07/01/2014~ -~18360~^~287~^0.10^9^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~18360~^~303~^1.64^16^0.08^~1~^~A~^^^1^1.21^2.52^9^1.45^1.82^~2, 3~^~07/01/2014~ -~18360~^~309~^1.61^16^0.05^~1~^~A~^^^1^1.42^2.11^5^1.45^1.75^~2, 3~^~07/01/2014~ -~18360~^~323~^0.69^3^0.01^~1~^~A~^^^1^0.67^0.71^2^0.63^0.73^~2, 3~^~02/01/2006~ -~18360~^~418~^0.00^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18360~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~18360~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~18361~^~203~^4.06^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~204~^7.98^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~205~^72.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18361~^~207~^1.23^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~209~^30.90^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~210~^16.26^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~211~^8.03^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~212~^1.25^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~18361~^~214~^1.70^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~255~^14.09^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~269~^27.24^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~18361~^~303~^5.62^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~309~^0.55^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~323~^1.33^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~341~^0.27^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~342~^5.98^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~343~^2.19^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~344~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~345~^0.65^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~346~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~18362~^~203~^4.20^11^0.11^~1~^~A~^^^1^3.56^4.69^8^3.93^4.46^~2, 3~^~04/01/2014~ -~18362~^~204~^9.95^11^0.19^~1~^~A~^^^1^8.30^11.37^8^9.49^10.40^~2, 3~^~04/01/2014~ -~18362~^~205~^70.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~207~^1.20^11^0.05^~1~^~A~^^^1^1.10^1.71^8^1.08^1.31^~2, 3~^~04/01/2014~ -~18362~^~209~^33.03^5^1.28^~1~^~A~^^^1^29.20^37.50^3^28.92^37.12^~2, 3~^~04/01/2014~ -~18362~^~210~^1.78^5^1.11^~1~^~A~^^^1^0.00^5.49^3^-1.77^5.33^~1, 2, 3~^~04/01/2014~ -~18362~^~211~^15.20^5^1.12^~1~^~A~^^^1^11.38^17.13^3^11.61^18.78^~2, 3~^~04/01/2014~ -~18362~^~212~^4.39^5^0.04^~1~^~A~^^^1^4.16^4.61^3^4.25^4.53^~2, 3~^~04/01/2014~ -~18362~^~213~^0.72^5^0.44^~1~^~A~^^^1^0.00^2.16^3^-0.67^2.12^~1, 2, 3~^~04/01/2014~ -~18362~^~214~^4.03^5^0.41^~1~^~A~^^^1^3.46^5.53^3^2.70^5.35^~2, 3~^~04/01/2014~ -~18362~^~255~^14.33^11^0.17^~1~^~A~^^^1^12.71^15.02^8^13.92^14.73^~2, 3~^~04/01/2014~ -~18362~^~269~^26.13^5^0.90^~1~^~A~^^^1^24.43^29.17^3^23.25^29.00^~2, 3~^~04/01/2014~ -~18362~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~303~^5.51^11^0.12^~1~^~A~^^^1^4.64^6.20^8^5.21^5.80^~2, 3~^~04/01/2014~ -~18362~^~309~^0.38^11^0.01^~1~^~A~^^^1^0.28^0.47^8^0.33^0.41^~2, 3~^~04/01/2014~ -~18362~^~323~^0.90^3^8.0e-03^~1~^~A~^^^1^0.84^1.12^1^0.79^1.00^~2, 3~^~04/01/2014~ -~18362~^~341~^0.19^3^0.01^~1~^~A~^^^1^0.18^0.20^1^0.06^0.31^~2, 3~^~04/01/2014~ -~18362~^~342~^3.33^3^0.17^~1~^~A~^^^1^2.21^3.79^1^1.15^5.50^~2, 3~^~04/01/2014~ -~18362~^~343~^1.25^3^0.07^~1~^~A~^^^1^0.85^1.43^1^0.34^2.15^~2, 3~^~04/01/2014~ -~18362~^~344~^0.16^3^0.01^~1~^~A~^^^1^0.06^0.54^1^0.01^0.30^~2, 3~^~04/01/2014~ -~18362~^~345~^0.58^3^0.02^~1~^~A~^^^1^0.53^0.64^1^0.24^0.91^~2, 3~^~04/01/2014~ -~18362~^~346~^0.25^3^0.01^~1~^~A~^^^1^0.09^0.87^1^0.02^0.48^~2, 3~^~04/01/2014~ -~18362~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~18362~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~18362~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~18363~^~203~^5.70^29^0.12^~1~^^^^^^^^^^^~02/01/2004~ -~18363~^~204~^2.85^6^0.03^~1~^~A~^^^1^2.73^2.93^5^2.77^2.92^~2, 3~^~02/01/2004~ -~18363~^~205~^44.64^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~207~^0.93^6^0.02^~1~^~A~^^^1^0.85^1.02^5^0.86^0.99^~2, 3~^~02/01/2004~ -~18363~^~255~^45.89^6^1.10^~1~^~A~^^^1^40.74^48.13^5^43.05^48.71^~2, 3~^~02/01/2004~ -~18363~^~269~^0.88^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~18363~^~303~^1.23^6^0.02^~1~^~A~^^^1^1.13^1.33^5^1.15^1.29^~2, 3~^~02/01/2004~ -~18363~^~309~^1.31^6^0.06^~1~^~A~^^^1^1.21^1.60^5^1.15^1.46^~2, 3~^~02/01/2004~ -~18363~^~323~^0.28^3^0.02^~1~^~A~^^^1^0.24^0.33^2^0.15^0.39^~2, 3~^~02/01/2004~ -~18363~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18363~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18364~^~203~^8.20^16^0.06^~1~^~A~^^^1^7.63^9.25^11^8.05^8.35^~2, 3~^~02/01/2015~ -~18364~^~204~^7.99^16^0.10^~1~^~A~^^^1^6.77^9.43^10^7.77^8.21^~2, 3~^~02/01/2015~ -~18364~^~205~^49.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~207~^2.45^16^0.02^~1~^~A~^^^1^2.09^2.79^10^2.38^2.50^~2, 3~^~02/01/2015~ -~18364~^~209~^38.38^9^0.64^~1~^~A~^^^1^35.60^44.60^4^36.58^40.16^~2, 3~^~02/01/2015~ -~18364~^~210~^0.60^9^0.06^~1~^~A~^^^1^0.00^1.35^2^0.30^0.89^~1, 2, 3~^~02/01/2015~ -~18364~^~211~^0.38^9^0.05^~1~^~A~^^^1^0.18^0.61^3^0.21^0.55^~1, 2, 3~^~02/01/2015~ -~18364~^~212~^0.28^9^0.02^~1~^~A~^^^1^0.18^0.52^4^0.19^0.35^~1, 2, 3~^~02/01/2015~ -~18364~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18364~^~214~^2.45^9^0.22^~1~^~A~^^^1^1.78^4.96^3^1.67^3.22^~2, 3~^~02/01/2015~ -~18364~^~255~^31.98^16^0.18^~1~^~A~^^^1^29.40^33.53^12^31.58^32.37^~2, 3~^~02/01/2015~ -~18364~^~269~^3.71^9^0.19^~1~^~A~^^^1^2.15^5.75^3^3.08^4.34^~2, 3~^~02/01/2015~ -~18364~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18364~^~303~^3.63^16^0.16^~1~^~A~^^^1^2.49^5.22^12^3.28^3.98^~2, 3~^~02/01/2015~ -~18364~^~309~^0.53^16^6.0e-03^~1~^~A~^^^1^0.49^0.59^9^0.51^0.54^~2, 3~^~02/01/2015~ -~18364~^~323~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~18364~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~18364~^~342~^0.84^2^^~1~^~A~^^^1^0.65^0.88^^^^^~02/01/2015~ -~18364~^~343~^0.36^2^^~1~^~A~^^^1^0.35^0.44^^^^^~02/01/2015~ -~18364~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~18364~^~345~^0.15^2^^~1~^~A~^^^1^0.13^0.15^^^^^~02/01/2015~ -~18364~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2015~ -~18364~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2011~ -~18364~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18364~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18365~^~203~^6.47^2^^~1~^~A~^^^1^6.11^6.84^1^^^^~10/01/2004~ -~18365~^~204~^9.70^2^^~1~^~A~^^^1^9.54^9.86^1^^^^~10/01/2004~ -~18365~^~205~^42.98^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~207~^2.90^2^^~1~^~A~^^^1^2.66^3.14^1^^^^~10/01/2004~ -~18365~^~209~^34.90^2^^~1~^~A~^^^1^34.35^35.46^1^^^^~10/01/2004~ -~18365~^~210~^3.16^2^^~1~^~A~^^^1^1.99^4.34^1^^^^~10/01/2004~ -~18365~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~213~^1.48^2^^~1~^~A~^^^1^1.15^1.82^1^^^^~10/01/2004~ -~18365~^~214~^0.26^2^^~1~^~A~^^^1^0.24^0.28^1^^^^~10/01/2004~ -~18365~^~255~^37.95^2^^~1~^~A~^^^1^35.89^40.00^1^^^^~10/01/2004~ -~18365~^~269~^4.91^2^^~1~^~A~^^^1^3.37^6.44^1^^^^~03/01/2005~ -~18365~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~303~^5.61^2^^~1~^~A~^^^1^5.09^6.13^1^^^^~10/01/2004~ -~18365~^~309~^0.59^2^^~1~^~A~^^^1^0.39^0.78^1^^^^~10/01/2004~ -~18365~^~323~^1.05^2^^~1~^~A~^^^1^0.70^1.40^1^^^^~10/01/2004~ -~18365~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~10/01/2004~ -~18365~^~342~^4.40^2^^~1~^~A~^^^1^4.15^4.66^1^^^^~10/01/2004~ -~18365~^~343~^0.97^2^^~1~^~A~^^^1^0.73^1.20^1^^^^~10/01/2004~ -~18365~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18365~^~418~^2.93^2^^~1~^~A~^^^1^2.58^3.29^1^^^^~10/01/2004~ -~18365~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~578~^2.70^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18367~^~203~^7.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~204~^14.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~205~^32.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18367~^~207~^3.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~255~^42.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~303~^2.31^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~309~^0.68^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~203~^9.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~204~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~205~^57.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18368~^~207~^1.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~255~^28.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~303~^3.36^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~309~^0.71^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~418~^0.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~205~^27.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18369~^~207~^67.30^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~255~^5.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~303~^11.02^4^1.17^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~309~^0.01^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18369~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18369~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18369~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18370~^~203~^0.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~205~^24.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18370~^~207~^71.80^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~255~^4.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~303~^11.27^3^2.86^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~309~^0.02^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18370~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18370~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18370~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18371~^~203~^0.10^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~204~^0.40^3^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~205~^46.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18371~^~207~^46.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~255~^6.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~303~^8.17^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~309~^0.72^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18371~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18371~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18372~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~205~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~207~^36.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~255~^0.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~303~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~309~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18372~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18372~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18373~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~205~^61.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18373~^~207~^36.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~255~^1.70^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~303~^3.72^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~309~^0.42^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18373~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18373~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18374~^~203~^8.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~204~^1.90^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~205~^18.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18374~^~207~^1.80^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~255~^69.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~303~^3.25^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~309~^9.97^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~18374~^~418~^0.01^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18374~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18374~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18375~^~203~^40.44^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~204~^7.61^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~205~^41.22^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18375~^~207~^5.65^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~255~^5.08^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~303~^2.17^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~309~^7.94^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~18375~^~418~^0.07^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18375~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18376~^~203~^14.13^3^0.18^~1~^~A~^^^1^13.87^14.50^2^13.32^14.94^~2, 3~^~04/01/2004~ -~18376~^~204~^5.48^6^0.13^~1~^~A~^^^1^5.16^5.96^5^5.14^5.81^~2, 3~^~04/01/2004~ -~18376~^~205~^68.49^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~207~^5.55^5^0.11^~1~^~A~^^^1^5.23^5.89^4^5.23^5.86^~2, 3~^~04/01/2004~ -~18376~^~209~^54.92^6^0.58^~1~^~A~^^^1^53.14^57.52^5^53.40^56.43^~2, 3~^~04/01/2004~ -~18376~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~211~^1.72^6^0.02^~1~^~A~^^^1^1.65^1.81^5^1.67^1.82^~2, 3~^~06/01/2014~ -~18376~^~212~^1.98^6^0.09^~1~^~A~^^^1^1.62^2.21^5^1.78^2.25^~2, 3~^~06/01/2014~ -~18376~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~214~^2.04^6^0.12^~1~^~A~^^^1^1.80^2.58^5^1.77^2.39^~2, 3~^~06/01/2014~ -~18376~^~255~^6.35^6^0.14^~1~^~A~^^^1^5.93^6.84^5^5.98^6.72^~2, 3~^~04/01/2004~ -~18376~^~269~^5.74^3^0.28^~1~^~A~^^^1^5.17^6.05^2^4.50^6.96^~2, 3~^~04/01/2004~ -~18376~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~303~^4.92^6^0.12^~1~^~A~^^^1^4.59^5.41^5^4.59^5.24^~2, 3~^~04/01/2004~ -~18376~^~309~^1.43^6^0.03^~1~^~A~^^^1^1.34^1.58^5^1.34^1.51^~2, 3~^~04/01/2004~ -~18376~^~323~^0.26^3^0.05^~1~^~A~^^^1^0.15^0.32^2^0.02^0.48^~2, 3~^~04/01/2004~ -~18376~^~341~^0.05^3^7.0e-03^~1~^~A~^^^1^0.04^0.06^2^0.01^0.07^~2, 3~^~04/01/2004~ -~18376~^~342~^0.85^3^0.04^~1~^~A~^^^1^0.79^0.93^2^0.67^1.03^~2, 3~^~04/01/2004~ -~18376~^~343~^0.25^3^3.0e-03^~1~^~A~^^^1^0.24^0.25^2^0.23^0.26^~2, 3~^~04/01/2004~ -~18376~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2004~ -~18376~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~346~^0.87^3^0.09^~1~^~A~^^^1^0.69^0.99^2^0.47^1.27^~2, 3~^~04/01/2004~ -~18376~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~418~^0.35^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~573~^0.00^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18376~^~578~^0.00^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~ -~18377~^~203~^6.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~204~^17.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~205~^66.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18377~^~207~^2.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~255~^6.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~303~^2.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~309~^0.93^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~418~^0.09^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~203~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~204~^28.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~205~^58.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18378~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~255~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~303~^2.48^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~309~^0.94^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~418~^0.08^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18383~^~203~^13.20^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~204~^2.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~205~^48.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~207~^2.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~255~^34.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~269~^1.44^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~303~^4.56^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~309~^1.17^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~323~^0.36^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18383~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18383~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18384~^~203~^9.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~204~^5.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~205~^47.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18384~^~207~^2.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~255~^35.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~269~^5.08^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~18384~^~303~^3.92^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~309~^1.38^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~323~^0.71^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18384~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18384~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18386~^~203~^4.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~204~^10.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~205~^56.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18386~^~207~^1.90^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~255~^26.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~269~^12.95^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~303~^0.54^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~309~^0.48^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~323~^0.98^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18386~^~418~^0.01^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18386~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18388~^~203~^5.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~204~^9.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~205~^55.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18388~^~207~^2.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~255~^27.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~269~^23.07^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~303~^2.83^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~309~^0.44^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~323~^0.98^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~ -~18388~^~418~^0.02^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18390~^~203~^6.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~204~^9.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~205~^28.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18390~^~207~^2.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~255~^52.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~303~^1.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~309~^0.62^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~418~^0.18^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~203~^8.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~204~^7.30^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~205~^53.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18396~^~207~^1.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~255~^29.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~303~^2.96^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~309~^0.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~418~^0.14^0^^~1~^^^^^^^^^^^~12/01/1997~ -~18399~^~203~^4.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~204~^24.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~205~^63.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18399~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~255~^6.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~269~^37.57^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~18399~^~303~^2.12^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~309~^0.46^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~323~^2.28^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~18399~^~418~^0.02^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~203~^10.00^3^0.42^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~204~^3.90^4^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~205~^77.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18400~^~207~^1.80^4^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~255~^7.20^3^1.57^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~303~^4.37^3^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~309~^0.73^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~418~^0.22^8^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~203~^3.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~204~^36.20^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~205~^50.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18401~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~255~^8.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~269~^7.33^0^^~4~^~RC~^^^^^^^^^^~04/01/2009~ -~18401~^~303~^1.63^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~309~^0.24^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~323~^3.06^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18401~^~418~^0.09^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18401~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18402~^~203~^5.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~204~^30.80^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~205~^42.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18402~^~207~^1.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~255~^19.70^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~269~^0.15^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~303~^2.57^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~309~^0.39^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~323~^0.28^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~18402~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18402~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18403~^~203~^7.19^6^0.10^~1~^~A~^^^1^6.97^7.65^5^6.92^7.45^~2, 3~^~10/01/2004~ -~18403~^~204~^9.61^6^0.23^~1~^~A~^^^1^8.80^10.56^5^8.99^10.22^~2, 3~^~10/01/2004~ -~18403~^~205~^49.29^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18403~^~207~^3.32^6^0.10^~1~^~A~^^^1^2.96^3.57^5^3.05^3.58^~2, 3~^~10/01/2004~ -~18403~^~209~^40.94^3^1.27^~1~^~A~^^^1^39.64^43.48^2^35.46^46.40^~2, 3~^~10/01/2004~ -~18403~^~210~^3.24^3^0.71^~1~^~A~^^^1^2.19^4.61^2^0.16^6.31^~2, 3~^~10/01/2004~ -~18403~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~213~^1.56^3^0.30^~1~^~A~^^^1^1.08^2.14^2^0.23^2.88^~2, 3~^~10/01/2004~ -~18403~^~214~^0.22^3^0.03^~1~^~A~^^^1^0.17^0.28^2^0.06^0.36^~2, 3~^~10/01/2004~ -~18403~^~255~^30.59^6^0.55^~1~^~A~^^^1^28.37^32.08^5^29.15^32.02^~2, 3~^~10/01/2004~ -~18403~^~269~^5.02^3^1.05^~1~^~A~^^^1^3.47^7.03^2^0.48^9.54^~2, 3~^~03/01/2007~ -~18403~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~303~^6.91^6^0.49^~1~^~A~^^^1^5.29^8.94^5^5.64^8.16^~2, 3~^~10/01/2004~ -~18403~^~309~^0.53^6^0.06^~1~^~A~^^^1^0.44^0.83^5^0.37^0.68^~2, 3~^~10/01/2004~ -~18403~^~323~^0.98^3^0.16^~1~^~A~^^^1^0.80^1.32^2^0.25^1.70^~2, 3~^~10/01/2004~ -~18403~^~418~^2.90^3^0.29^~1~^~A~^^^1^2.32^3.22^2^1.65^4.15^~2, 3~^~03/01/2007~ -~18403~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18403~^~578~^2.83^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18406~^~203~^10.50^21^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~204~^1.60^21^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~205~^53.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~207~^1.80^17^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~255~^32.60^23^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~303~^3.56^22^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~309~^0.88^18^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~203~^10.50^21^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~204~^1.60^21^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~205~^53.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~207~^1.80^17^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~255~^32.60^23^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~303~^1.36^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~309~^0.88^18^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~203~^10.50^21^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~204~^1.60^21^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~205~^53.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~207~^1.80^17^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~255~^32.60^23^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~303~^1.36^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~309~^0.88^18^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~203~^7.00^56^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~204~^12.20^54^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~205~^69.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~207~^3.60^46^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~255~^7.80^46^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~303~^0.59^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~309~^0.57^22^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~418~^0.09^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~203~^9.10^37^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~204~^1.20^36^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~205~^55.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~207~^1.90^14^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~255~^32.10^17^1.01^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~303~^1.40^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~309~^0.84^13^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~203~^7.90^55^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~204~^4.40^54^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~205~^52.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~207~^1.80^22^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~255~^33.60^47^0.28^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~303~^1.83^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~309~^0.72^13^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~203~^8.20^218^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~204~^3.60^224^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~205~^49.60^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18416~^~207~^1.90^286^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~255~^36.70^302^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~269~^4.31^4^0.05^~1~^~A~^^^1^4.23^4.44^3^4.15^4.47^~2, 3~^~01/01/2007~ -~18416~^~303~^3.03^256^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~309~^0.62^111^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~323~^0.22^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~18416~^~418~^0.03^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18416~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18416~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18417~^~203~^6.80^8^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~204~^23.30^10^1.74^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~205~^46.70^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~207~^1.40^10^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~255~^21.90^9^1.78^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~303~^0.78^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~309~^0.81^33^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~418~^0.18^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~203~^5.20^13^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~204~^17.90^14^1.05^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~205~^52.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~207~^1.40^12^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~255~^23.10^13^0.84^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~303~^0.60^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~309~^0.39^4^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~418~^0.14^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~203~^3.90^16^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~204~^9.50^16^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~205~^81.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~207~^2.20^13^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~255~^3.50^16^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~303~^0.52^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~309~^0.25^13^4.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~418~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~203~^4.40^80^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~204~^11.60^79^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~205~^78.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~207~^2.30^61^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~255~^3.70^86^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~303~^0.48^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~309~^0.27^43^9.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~418~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~203~^6.10^10^0.41^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~204~^18.80^14^0.95^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~205~^68.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~207~^1.50^12^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~255~^4.60^9^0.49^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~303~^0.29^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~309~^0.38^3^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~418~^0.36^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~203~^5.40^88^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~204~^22.60^89^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~205~^66.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~207~^1.10^85^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~255~^4.10^87^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~303~^1.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~309~^0.64^107^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~418~^0.01^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18423~^~203~^10.60^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~204~^9.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~205~^59.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18423~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~255~^19.50^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~303~^3.58^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~309~^1.14^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~418~^0.75^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~203~^12.10^15^0.38^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~204~^3.20^11^0.42^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~205~^76.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~207~^3.00^13^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~255~^5.10^16^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~303~^3.70^10^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~309~^2.01^7^0.29^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18425~^~203~^9.50^8^0.11^~1~^~A~^^^1^8.94^9.94^7^9.23^9.76^~2, 3~^~04/01/2008~ -~18425~^~204~^8.85^8^0.28^~1~^~A~^^^1^7.70^9.71^7^8.17^9.52^~2, 3~^~04/01/2008~ -~18425~^~205~^74.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~207~^3.28^8^0.10^~1~^~A~^^^1^2.95^3.75^7^3.03^3.52^~2, 3~^~04/01/2008~ -~18425~^~209~^67.30^8^0.47^~1~^~A~^^^1^65.80^69.80^7^66.17^68.42^~2, 3~^~04/01/2008~ -~18425~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~211~^0.23^8^0.04^~1~^~A~^^^1^0.07^0.44^7^0.11^0.33^~1, 2, 3~^~04/01/2008~ -~18425~^~212~^0.23^8^0.09^~1~^~A~^^^1^0.00^0.60^7^0.01^0.44^~1, 2, 3~^~04/01/2008~ -~18425~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~214~^1.69^8^0.23^~1~^~A~^^^1^0.77^2.42^7^1.15^2.23^~2, 3~^~04/01/2008~ -~18425~^~255~^4.03^8^0.09^~1~^~A~^^^1^3.77^4.45^7^3.80^4.25^~2, 3~^~04/01/2008~ -~18425~^~269~^2.22^8^0.32^~1~^~A~^^^1^1.16^3.31^7^1.45^2.98^~2, 3~^~04/01/2008~ -~18425~^~287~^0.07^8^0.02^~1~^~A~^^^1^0.00^0.18^7^2.0e-03^0.13^~1, 2, 3~^~04/01/2008~ -~18425~^~303~^5.13^8^0.31^~1~^~A~^^^1^3.87^6.06^7^4.39^5.87^~2, 3~^~04/01/2008~ -~18425~^~309~^0.82^8^0.02^~1~^~A~^^^1^0.68^0.95^7^0.74^0.88^~2, 3~^~04/01/2008~ -~18425~^~323~^1.12^5^0.10^~1~^~A~^^^1^0.89^1.37^4^0.82^1.40^~2, 3~^~04/01/2008~ -~18425~^~341~^0.23^5^0.03^~1~^~A~^^^1^0.17^0.36^4^0.13^0.33^~2, 3~^~04/01/2008~ -~18425~^~342~^5.05^5^0.14^~1~^~A~^^^1^4.73^5.52^4^4.65^5.45^~2, 3~^~04/01/2008~ -~18425~^~343~^1.27^5^0.08^~1~^~A~^^^1^1.02^1.50^4^1.02^1.51^~2, 3~^~04/01/2008~ -~18425~^~344~^0.13^5^6.0e-03^~1~^~A~^^^1^0.12^0.15^4^0.11^0.15^~2, 3~^~04/01/2008~ -~18425~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~346~^0.00^5^2.0e-03^~1~^~A~^^^1^0.00^0.01^4^-4.0e-03^8.0e-03^~1, 2, 3~^~04/01/2008~ -~18425~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~418~^0.09^2^^~1~^~A~^^^1^0.00^0.18^1^^^~1~^~04/01/2008~ -~18425~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18426~^~203~^9.20^155^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~204~^11.80^161^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~205~^71.50^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~207~^3.30^153^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~255~^4.10^176^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~303~^5.40^171^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~309~^0.77^161^0.01^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~203~^7.40^159^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~204~^25.30^169^0.32^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~205~^61.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~207~^2.80^149^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~255~^3.50^157^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~269~^1.79^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~18427~^~303~^3.60^147^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~309~^0.68^143^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~323~^2.03^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18427~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18427~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18428~^~203~^8.60^58^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~204~^20.60^56^0.40^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~205~^64.90^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~207~^2.80^55^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~255~^3.10^57^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~269~^13.04^0^^~4~^~FLA~^^^^^^^^^^~08/01/2009~ -~18428~^~303~^4.40^56^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~309~^1.60^52^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~323~^0.50^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18428~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18428~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18429~^~203~^8.80^16^0.30^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~204~^17.20^23^0.53^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~205~^68.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~207~^2.70^18^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~255~^2.70^34^0.17^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~269~^0.37^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~303~^3.08^24^0.19^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~309~^2.15^26^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~323~^0.86^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18429~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18429~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18430~^~203~^7.00^3^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~204~^22.40^3^1.63^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~205~^44.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~207~^1.70^5^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~255~^24.30^3^1.53^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~303~^0.78^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~309~^0.72^31^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~418~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~203~^5.40^18^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~204~^18.50^15^0.71^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~205~^47.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~207~^1.20^18^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~255~^27.10^18^1.25^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~303~^0.75^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~309~^0.54^6^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~418~^0.13^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18432~^~203~^9.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~204~^4.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~205~^54.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~207~^2.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~255~^30.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~303~^3.33^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~309~^0.68^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~418~^0.02^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~203~^5.40^18^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~204~^18.50^15^0.71^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~205~^47.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~207~^1.20^18^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~255~^27.10^18^1.25^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~303~^0.75^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~309~^0.54^6^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~418~^0.09^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18434~^~203~^10.10^47^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~204~^25.30^51^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~205~^58.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18434~^~207~^3.30^43^0.11^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~255~^3.10^48^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~269~^0.28^0^^~4~^~FLA~^^^^^^^^^^~12/01/2005~ -~18434~^~303~^4.77^45^0.20^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~309~^1.13^42^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18434~^~418~^0.46^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18434~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18435~^~203~^5.40^18^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~204~^18.50^15^0.71^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~205~^47.80^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~207~^1.20^18^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~255~^27.10^18^1.25^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~303~^0.75^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~309~^0.54^6^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~418~^0.09^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~203~^6.40^20^0.28^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~204~^22.80^20^0.97^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~205~^44.30^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~207~^1.10^19^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~255~^25.40^23^0.94^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~303~^0.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~309~^0.77^6^0.14^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~418~^0.09^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18437~^~203~^7.70^142^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~204~^1.80^141^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~205~^46.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~207~^2.20^37^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~255~^42.10^140^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~303~^2.50^42^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~309~^0.70^28^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~418~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18438~^~203~^7.70^142^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~204~^1.80^141^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~205~^46.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~207~^2.20^37^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~255~^42.10^140^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~303~^0.89^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~309~^0.70^28^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~418~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18439~^~203~^7.70^142^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~204~^1.80^141^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~205~^46.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~207~^2.20^37^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~255~^42.10^140^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~303~^0.89^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18439~^~309~^0.70^28^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~418~^0.04^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~203~^1.90^17^0.10^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~204~^11.00^21^0.51^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~205~^34.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~207~^0.90^23^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~255~^52.20^21^1.30^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~303~^1.21^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~309~^0.16^36^8.0e-03^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~418~^0.01^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18444~^~203~^3.00^23^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~204~^16.10^30^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~205~^42.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~207~^1.10^15^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~255~^37.60^28^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~303~^1.22^22^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~309~^0.23^8^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~418~^0.08^4^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~203~^3.00^23^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~204~^16.10^30^0.48^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~205~^42.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~207~^1.10^15^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~255~^37.60^28^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~303~^1.22^22^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~309~^0.23^8^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~418~^0.08^4^0.04^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~203~^3.90^7^0.50^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~204~^29.20^4^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~205~^44.10^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~207~^1.80^7^0.27^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~255~^21.00^7^0.16^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~303~^0.38^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~309~^0.30^7^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~418~^0.03^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~203~^10.40^15^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~204~^4.30^19^0.13^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~205~^71.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~207~^2.60^11^0.03^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~255~^11.70^19^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18447~^~303~^0.82^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~309~^0.88^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~418~^0.08^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~203~^7.20^3^0.54^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~204~^22.60^3^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~205~^62.40^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~207~^1.80^3^0.21^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~255~^6.00^5^0.39^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~303~^2.50^3^1.09^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~309~^1.40^3^0.09^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~203~^5.70^29^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~204~^2.50^25^0.23^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~205~^46.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~207~^1.20^29^0.05^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~255~^44.10^42^0.66^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~303~^1.40^44^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~309~^0.94^33^0.07^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~203~^8.70^12^0.58^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~204~^7.10^11^0.57^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~205~^55.60^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~207~^1.80^12^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~255~^26.80^14^0.90^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~303~^3.30^38^0.12^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~309~^0.71^40^0.08^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18451~^~203~^5.40^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~204~^1.20^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~205~^61.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18451~^~207~^1.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~255~^31.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~269~^34.34^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~18451~^~303~^2.06^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~309~^0.31^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18451~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18451~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18453~^~203~^4.70^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~204~^5.50^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~205~^84.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18453~^~207~^2.60^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~255~^3.10^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~303~^1.31^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~309~^0.33^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~418~^0.11^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~203~^10.50^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~204~^1.60^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~205~^82.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~18457~^~207~^2.20^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~255~^3.40^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~269~^0.38^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~303~^7.72^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~309~^0.94^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~18457~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18457~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18459~^~203~^3.99^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~204~^5.99^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~205~^76.80^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~207~^1.18^0^^~4~^^^^^^^^^^^~05/01/2005~ -~18459~^~255~^12.04^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~269~^4.87^0^^~4~^~FLM~^^^^^^^^^^~01/01/2007~ -~18459~^~303~^3.42^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~309~^0.28^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~323~^0.53^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~18459~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18459~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~18513~^~203~^5.54^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~204~^20.92^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~205~^67.20^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~207~^1.34^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~255~^5.00^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~269~^1.26^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~303~^1.96^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18522~^~203~^4.28^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~204~^24.40^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~205~^65.02^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~207~^1.28^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~255~^5.01^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~269~^34.06^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~303~^2.63^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18524~^~203~^3.02^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~204~^22.55^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~205~^61.23^1^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~18524~^~207~^1.71^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~255~^11.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~269~^45.16^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~303~^0.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18527~^~203~^4.67^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~204~^12.05^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~205~^68.16^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~207~^1.62^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~255~^13.49^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~269~^34.27^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~303~^2.26^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~203~^4.50^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~204~^14.99^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~205~^69.44^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~207~^1.75^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~255~^9.32^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~269~^35.35^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~303~^3.36^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18529~^~203~^4.41^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~204~^17.11^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~205~^64.78^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~207~^1.67^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~255~^12.03^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~269~^33.35^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~303~^1.62^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18532~^~203~^3.50^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~204~^14.43^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~205~^69.12^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~207~^2.61^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~255~^10.34^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~269~^38.43^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~303~^4.10^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~203~^4.89^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~204~^16.53^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~205~^66.76^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~207~^1.84^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~255~^9.99^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~269~^37.20^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~303~^2.19^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~203~^4.25^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~204~^12.06^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~205~^69.41^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~207~^2.85^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~255~^11.43^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~269~^36.35^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~303~^4.68^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~203~^5.48^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~204~^14.08^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~205~^68.17^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~207~^2.00^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~255~^10.28^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~269~^34.50^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~303~^2.45^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~203~^5.17^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~204~^12.08^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~205~^69.27^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~207~^1.95^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~255~^11.53^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~269~^39.55^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~303~^2.40^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~203~^4.27^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~204~^11.83^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~205~^70.55^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~207~^2.94^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~255~^10.41^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~269~^36.09^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~303~^4.99^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~203~^5.17^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~204~^17.55^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~205~^72.23^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~207~^2.05^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~255~^3.00^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~269~^32.64^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~303~^3.06^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18541~^~203~^9.00^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~204~^24.28^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~205~^58.48^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~207~^1.90^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~255~^6.35^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~269~^32.55^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~303~^2.72^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18544~^~203~^4.35^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~204~^13.26^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~205~^65.92^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~207~^1.48^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~255~^14.99^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~269~^31.76^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~303~^2.32^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~203~^4.35^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~204~^13.26^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~205~^65.92^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~207~^1.48^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~255~^14.99^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~269~^31.76^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~303~^2.32^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18562~^~203~^4.67^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~204~^11.14^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~205~^76.23^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~207~^2.75^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~255~^5.22^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~269~^36.28^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~303~^12.57^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18566~^~203~^4.70^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~204~^8.70^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~205~^77.45^0^^~4~^~NC~^^^^^^^^^^~10/01/1998~ -~18566~^~207~^2.75^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~255~^6.40^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18567~^~203~^12.60^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~204~^4.10^0^^~4~^~NR~^^^^^^^^^^~02/01/1999~ -~18567~^~205~^73.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~207~^4.80^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~255~^5.30^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~269~^10.10^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~303~^4.32^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18603~^~203~^13.30^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18603~^~204~^5.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18603~^~205~^72.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18603~^~207~^4.90^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18603~^~255~^4.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18603~^~303~^3.81^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18608~^~203~^7.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18608~^~204~^16.60^1^^~1~^~A~^^^^^^^^^^~07/01/1997~ -~18608~^~205~^71.80^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18608~^~207~^1.40^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18608~^~255~^3.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18608~^~269~^26.50^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18610~^~203~^5.60^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~204~^10.30^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~205~^75.60^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~207~^1.90^0^^~9~^~MC~^^^^^^^^^^~11/01/2005~ -~18610~^~255~^5.70^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18610~^~269~^40.00^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~303~^2.47^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18612~^~203~^8.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18612~^~204~^32.80^1^^~1~^~A~^^^^^^^^^^~07/01/1997~ -~18612~^~205~^55.20^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18612~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18612~^~255~^3.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18612~^~269~^34.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18614~^~203~^4.42^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~204~^6.16^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~205~^83.58^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18614~^~207~^1.84^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~255~^4.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~269~^54.76^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~303~^3.81^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~309~^0.26^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~418~^0.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~203~^7.81^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~204~^13.23^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~205~^59.41^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18615~^~207~^9.55^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~255~^10.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~269~^4.46^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~303~^4.06^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~309~^0.90^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~418~^0.16^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18616~^~203~^8.70^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18616~^~204~^6.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18616~^~205~^49.60^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18616~^~207~^2.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18616~^~255~^33.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18616~^~303~^1.99^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18617~^~203~^6.99^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~204~^10.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18617~^~205~^76.20^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18617~^~207~^2.80^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18617~^~255~^3.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18617~^~269~^23.00^1^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~303~^4.13^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~309~^1.94^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~203~^4.78^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~204~^21.50^1^^~1~^~A~^^^^^^^^^^~07/01/1997~ -~18619~^~205~^70.23^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~207~^1.90^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18619~^~255~^1.57^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~269~^36.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18619~^~303~^4.90^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~309~^1.23^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~418~^0.02^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18621~^~203~^7.23^4^0.04^~1~^~A~^^^1^7.19^7.37^3^7.08^7.38^~2, 3~^~06/01/2008~ -~18621~^~204~^23.21^4^0.36^~1~^~A~^^^1^22.21^23.78^3^22.04^24.37^~2, 3~^~06/01/2008~ -~18621~^~205~^63.51^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~207~^2.93^4^0.07^~1~^~A~^^^1^2.78^3.14^3^2.67^3.17^~2, 3~^~06/01/2008~ -~18621~^~209~^51.32^4^0.30^~1~^~A~^^^1^50.90^52.20^3^50.34^52.30^~2, 3~^~06/01/2008~ -~18621~^~210~^6.33^4^0.23^~1~^~A~^^^1^5.64^6.66^3^5.58^7.07^~2, 3~^~06/01/2008~ -~18621~^~211~^0.64^4^0.04^~1~^~A~^^^1^0.52^0.72^3^0.50^0.78^~2, 3~^~06/01/2008~ -~18621~^~212~^0.59^4^0.03^~1~^~A~^^^1^0.51^0.64^3^0.50^0.68^~2, 3~^~06/01/2008~ -~18621~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~214~^0.58^4^0.02^~1~^~A~^^^1^0.52^0.65^3^0.48^0.66^~2, 3~^~06/01/2008~ -~18621~^~255~^3.12^4^0.16^~1~^~A~^^^1^2.78^3.51^3^2.60^3.64^~2, 3~^~06/01/2008~ -~18621~^~269~^8.14^4^0.22^~1~^~A~^^^1^7.53^8.57^3^7.43^8.85^~2, 3~^~06/01/2008~ -~18621~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~303~^4.47^4^0.05^~1~^~A~^^^1^4.31^4.58^3^4.29^4.66^~2, 3~^~06/01/2008~ -~18621~^~309~^0.61^4^0.03^~1~^~A~^^^1^0.57^0.70^3^0.50^0.70^~2, 3~^~06/01/2008~ -~18621~^~323~^3.49^2^^~1~^~A~^^^1^3.38^3.60^1^^^^~06/01/2008~ -~18621~^~341~^0.30^2^^~1~^~A~^^^1^0.20^0.40^1^^^^~06/01/2008~ -~18621~^~342~^14.11^2^^~1~^~A~^^^1^14.09^14.13^1^^^^~06/01/2008~ -~18621~^~343~^4.12^2^^~1~^~A~^^^1^4.07^4.18^1^^^^~06/01/2008~ -~18621~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~18621~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~18621~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~18621~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2008~ -~18629~^~203~^6.40^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~204~^2.79^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~205~^47.07^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~207~^3.86^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~255~^39.89^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~269~^4.46^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~303~^2.60^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~203~^3.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~204~^21.26^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~205~^60.75^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~207~^1.37^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~255~^12.78^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~269~^37.67^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~303~^2.03^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~203~^8.59^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~204~^2.88^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~205~^46.35^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~207~^2.15^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~255~^38.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~269~^5.06^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~303~^2.27^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~203~^6.16^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~204~^11.34^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~205~^42.41^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~207~^3.98^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~255~^36.12^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~269~^4.60^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~303~^2.34^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18634~^~203~^5.88^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~204~^13.24^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~205~^41.18^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18634~^~207~^3.50^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~255~^35.50^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~269~^5.88^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~303~^2.12^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18635~^~203~^4.34^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~204~^11.27^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~205~^53.42^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~207~^3.08^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~255~^27.86^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~269~^21.34^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~303~^1.93^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18637~^~203~^6.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18637~^~204~^3.70^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18637~^~205~^79.80^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~18637~^~207~^7.20^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18637~^~255~^3.20^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18639~^~203~^8.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~204~^1.80^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~205~^46.00^1^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18639~^~207~^1.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18639~^~255~^42.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18639~^~303~^1.40^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18640~^~203~^4.40^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~204~^6.90^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~205~^40.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18640~^~207~^1.30^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~255~^47.30^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18640~^~269~^16.80^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~303~^0.70^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18641~^~203~^8.07^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~204~^4.15^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~205~^50.84^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~207~^1.92^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~255~^34.20^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~269~^11.06^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18641~^~303~^2.22^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18651~^~203~^5.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1999~ -~18651~^~204~^1.09^0^^~9~^~MC~^^^^^^^^^^~05/01/1999~ -~18651~^~205~^74.25^0^^~9~^~MC~^^^^^^^^^^~05/01/1999~ -~18651~^~207~^1.02^0^^~9~^~MC~^^^^^^^^^^~05/01/1999~ -~18651~^~255~^17.65^0^^~9~^~MC~^^^^^^^^^^~05/01/1999~ -~18651~^~269~^43.38^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~303~^2.78^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~309~^0.46^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~418~^0.07^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18927~^~203~^8.92^6^0.10^~1~^~A~^^^1^8.68^9.40^5^8.65^9.19^~2, 3~^~12/01/2002~ -~18927~^~204~^24.41^6^0.12^~1~^~A~^^^1^24.14^24.99^5^24.08^24.74^~2, 3~^~12/01/2002~ -~18927~^~205~^58.76^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18927~^~207~^3.10^6^0.03^~1~^~A~^^^1^2.99^3.21^5^3.00^3.18^~2, 3~^~12/01/2002~ -~18927~^~209~^44.53^3^0.70^~1~^~A~^^^1^43.46^45.87^2^41.48^47.57^~2, 3~^~12/01/2002~ -~18927~^~210~^3.09^3^0.25^~1~^~A~^^^1^2.63^3.50^2^2.00^4.18^~2, 3~^~11/01/2006~ -~18927~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~213~^7.74^3^0.18^~1~^~A~^^^1^7.37^7.99^2^6.93^8.55^~2, 3~^~11/01/2006~ -~18927~^~214~^1.49^3^0.13^~1~^~A~^^^1^1.32^1.76^2^0.90^2.07^~2, 3~^~11/01/2006~ -~18927~^~255~^4.81^6^0.26^~1~^~A~^^^1^3.73^5.70^5^4.12^5.50^~2, 3~^~12/01/2002~ -~18927~^~269~^12.33^3^0.28^~1~^~A~^^^1^11.76^12.70^2^11.08^13.57^~2, 3~^~12/01/2002~ -~18927~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~303~^2.13^6^0.11^~1~^~A~^^^1^1.80^2.59^5^1.82^2.43^~2, 3~^~12/01/2002~ -~18927~^~309~^0.57^6^7.0e-03^~1~^~A~^^^1^0.54^0.59^5^0.55^0.59^~2, 3~^~12/01/2002~ -~18927~^~323~^1.99^3^0.11^~1~^~A~^^^1^1.81^2.21^2^1.49^2.49^~2, 3~^~12/01/2002~ -~18927~^~341~^0.14^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.06^0.22^~2, 3~^~11/01/2006~ -~18927~^~342~^9.97^3^0.24^~1~^~A~^^^1^9.53^10.39^2^8.90^11.04^~2, 3~^~11/01/2006~ -~18927~^~343~^2.64^3^0.12^~1~^~A~^^^1^2.41^2.84^2^2.10^3.18^~2, 3~^~11/01/2006~ -~18927~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18927~^~418~^0.80^3^0.01^~1~^~A~^^^1^0.77^0.83^2^0.72^0.87^~2, 3~^~12/01/2002~ -~18932~^~203~^6.58^2^^~1~^~A~^^^1^6.44^6.72^1^^^^~10/01/2004~ -~18932~^~204~^9.22^2^^~1~^~A~^^^1^8.71^9.73^1^^^^~10/01/2004~ -~18932~^~205~^41.05^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18932~^~207~^2.81^2^^~1~^~A~^^^1^2.63^2.99^1^^^^~10/01/2004~ -~18932~^~209~^35.51^2^^~1~^~A~^^^1^35.18^35.84^1^^^^~10/01/2004~ -~18932~^~210~^2.67^2^^~1~^~A~^^^1^2.38^2.95^1^^^^~10/01/2004~ -~18932~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~213~^1.35^2^^~1~^~A~^^^1^0.71^1.98^1^^^^~10/01/2004~ -~18932~^~214~^0.29^2^^~1~^~A~^^^1^0.27^0.30^1^^^^~10/01/2004~ -~18932~^~255~^40.34^2^^~1~^~A~^^^1^40.23^40.45^1^^^^~10/01/2004~ -~18932~^~269~^4.30^2^^~1~^~A~^^^1^3.36^5.24^1^^^^~10/01/2004~ -~18932~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~303~^6.04^2^^~1~^~A~^^^1^5.69^6.39^1^^^^~10/01/2004~ -~18932~^~309~^0.48^2^^~1~^~A~^^^1^0.43^0.53^1^^^^~10/01/2004~ -~18932~^~323~^0.62^2^^~1~^~A~^^^1^0.56^0.67^1^^^^~10/01/2004~ -~18932~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~10/01/2004~ -~18932~^~342~^4.03^2^^~1~^~A~^^^1^3.64^4.42^1^^^^~10/01/2004~ -~18932~^~343~^1.27^2^^~1~^~A~^^^1^1.12^1.43^1^^^^~10/01/2004~ -~18932~^~344~^0.03^2^^~1~^~A~^^^1^0.02^0.05^1^^^^~10/01/2004~ -~18932~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~18932~^~418~^2.86^2^^~1~^~A~^^^1^2.33^3.39^1^^^^~10/01/2004~ -~18932~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~578~^2.70^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18933~^~203~^7.42^6^0.10^~1~^~A~^^^1^7.07^7.74^5^7.14^7.69^~2, 3~^~11/01/2004~ -~18933~^~204~^9.49^6^0.05^~1~^~A~^^^1^9.27^9.63^5^9.34^9.63^~2, 3~^~11/01/2004~ -~18933~^~205~^48.39^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18933~^~207~^3.13^6^0.11^~1~^~A~^^^1^2.84^3.50^5^2.84^3.41^~2, 3~^~11/01/2004~ -~18933~^~209~^39.70^3^0.72^~1~^~A~^^^1^38.61^41.08^2^36.56^42.83^~2, 3~^~11/01/2004~ -~18933~^~210~^2.85^3^0.27^~1~^~A~^^^1^2.38^3.33^2^1.66^4.03^~2, 3~^~11/01/2004~ -~18933~^~211~^0.05^3^0.04^~1~^~A~^^^1^0.00^0.14^2^-0.15^0.24^~1, 2, 3~^~11/01/2004~ -~18933~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~213~^1.35^3^0.36^~1~^~A~^^^1^0.80^2.04^2^-0.21^2.92^~2, 3~^~11/01/2004~ -~18933~^~214~^0.17^3^0.07^~1~^~A~^^^1^0.07^0.31^2^-0.14^0.47^~1, 2, 3~^~11/01/2004~ -~18933~^~255~^31.57^6^0.60^~1~^~A~^^^1^29.61^33.29^5^30.02^33.11^~2, 3~^~11/01/2004~ -~18933~^~269~^4.41^3^0.46^~1~^~A~^^^1^3.49^4.94^2^2.41^6.40^~2, 3~^~11/01/2004~ -~18933~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~303~^6.59^6^0.43^~1~^~A~^^^1^4.53^7.58^5^5.47^7.71^~2, 3~^~11/01/2004~ -~18933~^~309~^0.48^6^0.04^~1~^~A~^^^1^0.24^0.55^5^0.35^0.60^~2, 3~^~11/01/2004~ -~18933~^~323~^0.68^3^0.06^~1~^~A~^^^1^0.55^0.77^2^0.39^0.95^~2, 3~^~11/01/2004~ -~18933~^~341~^0.09^3^6.0e-03^~1~^~A~^^^1^0.08^0.10^2^0.06^0.11^~2, 3~^~07/01/2017~ -~18933~^~342~^4.62^3^0.22^~1~^~A~^^^1^4.17^4.89^2^3.64^5.59^~2, 3~^~07/01/2017~ -~18933~^~343~^1.51^3^0.10^~1~^~A~^^^1^1.33^1.68^2^1.07^1.95^~2, 3~^~07/01/2017~ -~18933~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~07/01/2017~ -~18933~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~18933~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~18933~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2017~ -~18933~^~418~^1.62^3^0.66^~1~^~A~^^^1^0.95^2.94^2^-1.23^4.46^~2, 3~^~03/01/2007~ -~18933~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~578~^3.00^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~18934~^~203~^6.92^2^^~1~^~A~^^^1^6.85^7.00^1^^^^~11/01/2004~ -~18934~^~204~^9.40^2^^~1~^~A~^^^1^9.23^9.57^1^^^^~11/01/2004~ -~18934~^~205~^44.16^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~207~^3.04^2^^~1~^~A~^^^1^2.82^3.26^1^^^^~11/01/2004~ -~18934~^~209~^38.55^2^^~1~^~A~^^^1^37.92^39.18^1^^^^~11/01/2004~ -~18934~^~210~^2.77^2^^~1~^~A~^^^1^2.44^3.11^1^^^^~11/01/2004~ -~18934~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~213~^1.39^2^^~1~^~A~^^^1^0.78^2.00^1^^^^~11/01/2004~ -~18934~^~214~^0.34^2^^~1~^~A~^^^1^0.32^0.35^1^^^^~11/01/2004~ -~18934~^~255~^36.48^2^^~1~^~A~^^^1^35.84^37.12^1^^^^~11/01/2004~ -~18934~^~269~^4.50^2^^~1~^~A~^^^1^3.54^5.45^1^^^^~11/01/2004~ -~18934~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~303~^6.53^2^^~1~^~A~^^^1^6.30^6.77^1^^^^~11/01/2004~ -~18934~^~309~^0.58^2^^~1~^~A~^^^1^0.57^0.60^1^^^^~11/01/2004~ -~18934~^~323~^0.63^2^^~1~^~A~^^^1^0.56^0.70^1^^^^~11/01/2004~ -~18934~^~341~^0.08^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~11/01/2004~ -~18934~^~342~^4.21^2^^~1~^~A~^^^1^3.87^4.55^1^^^^~11/01/2004~ -~18934~^~343~^1.33^2^^~1~^~A~^^^1^1.15^1.52^1^^^^~11/01/2004~ -~18934~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18934~^~418~^2.44^2^^~1~^~A~^^^1^1.37^3.52^1^^^^~11/01/2004~ -~18935~^~203~^6.71^2^^~1~^~A~^^^1^6.34^7.08^1^^^^~11/01/2004~ -~18935~^~204~^9.91^2^^~1~^~A~^^^1^9.58^10.23^1^^^^~11/01/2004~ -~18935~^~205~^45.41^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~207~^3.02^2^^~1~^~A~^^^1^2.78^3.26^1^^^^~11/01/2004~ -~18935~^~209~^38.63^2^^~1~^~A~^^^1^38.11^39.16^1^^^^~11/01/2004~ -~18935~^~210~^3.31^2^^~1~^~A~^^^1^2.21^4.41^1^^^^~11/01/2004~ -~18935~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~213~^1.46^2^^~1~^~A~^^^1^1.16^1.76^1^^^^~11/01/2004~ -~18935~^~214~^0.28^2^^~1~^~A~^^^1^0.26^0.29^1^^^^~11/01/2004~ -~18935~^~255~^34.95^2^^~1~^~A~^^^1^32.77^37.13^1^^^^~11/01/2004~ -~18935~^~269~^5.04^2^^~1~^~A~^^^1^3.63^6.46^1^^^^~11/01/2004~ -~18935~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~303~^5.81^2^^~1~^~A~^^^1^5.61^6.01^1^^^^~11/01/2004~ -~18935~^~309~^0.45^2^^~1~^~A~^^^1^0.35^0.56^1^^^^~11/01/2004~ -~18935~^~323~^0.95^2^^~1~^~A~^^^1^0.60^1.31^1^^^^~11/01/2004~ -~18935~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~11/01/2004~ -~18935~^~342~^4.52^2^^~1~^~A~^^^1^4.03^5.02^1^^^^~11/01/2004~ -~18935~^~343~^1.18^2^^~1~^~A~^^^1^0.73^1.62^1^^^^~11/01/2004~ -~18935~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~11/01/2004~ -~18935~^~418~^2.18^2^^~1~^~A~^^^1^0.96^3.40^1^^^^~11/01/2004~ -~18936~^~203~^5.88^4^0.45^~1~^~A~^^^1^5.15^7.17^3^4.42^7.34^~2, 3~^~12/01/2004~ -~18936~^~204~^4.73^4^1.00^~1~^~A~^^^1^3.52^7.72^3^1.54^7.91^~2, 3~^~12/01/2004~ -~18936~^~205~^43.33^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18936~^~207~^2.26^4^0.09^~1~^~A~^^^1^2.12^2.55^3^1.94^2.57^~2, 3~^~12/01/2004~ -~18936~^~209~^33.56^3^0.32^~1~^~A~^^^1^33.01^34.13^2^32.17^34.95^~2, 3~^~12/01/2004~ -~18936~^~210~^0.16^3^0.04^~1~^~A~^^^1^0.07^0.25^2^-0.05^0.36^~1, 2, 3~^~11/01/2006~ -~18936~^~211~^3.13^3^1.13^~1~^~A~^^^1^1.20^5.14^2^-1.77^8.03^~2, 3~^~11/01/2006~ -~18936~^~212~^2.74^3^0.74^~1~^~A~^^^1^1.61^4.16^2^-0.47^5.95^~2, 3~^~11/01/2006~ -~18936~^~213~^0.85^3^0.15^~1~^~A~^^^1^0.64^1.16^2^0.18^1.52^~2, 3~^~11/01/2006~ -~18936~^~214~^0.18^3^0.07^~1~^~A~^^^1^0.07^0.33^2^-0.16^0.51^~1, 2, 3~^~11/01/2006~ -~18936~^~255~^43.80^4^0.73^~1~^~A~^^^1^42.23^45.45^3^41.47^46.13^~2, 3~^~12/01/2004~ -~18936~^~269~^7.06^3^2.10^~1~^~A~^^^1^3.85^11.03^2^-2.00^16.12^~2, 3~^~12/01/2004~ -~18936~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18936~^~303~^1.64^4^0.70^~1~^~A~^^^1^0.17^3.55^3^-0.60^3.88^~2, 3~^~12/01/2004~ -~18936~^~309~^0.44^4^0.13^~1~^~A~^^^1^0.15^0.79^3^0.02^0.86^~2, 3~^~12/01/2004~ -~18936~^~323~^0.38^3^0.13^~1~^~A~^^^1^0.20^0.65^2^-0.22^0.97^~2, 3~^~12/01/2004~ -~18936~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.06^2^7.0e-03^0.09^~2, 3~^~11/01/2006~ -~18936~^~342~^2.58^3^1.26^~1~^~A~^^^1^0.96^5.08^2^-2.88^8.03^~2, 3~^~11/01/2006~ -~18936~^~343~^0.75^3^0.36^~1~^~A~^^^1^0.29^1.48^2^-0.83^2.33^~2, 3~^~11/01/2006~ -~18936~^~344~^0.01^3^9.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.02^0.05^~1, 2, 3~^~11/01/2006~ -~18936~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18936~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18936~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~18938~^~203~^4.01^17^0.03^~1~^~A~^^^1^3.62^4.25^6^3.93^4.09^~2, 3~^~07/01/2014~ -~18938~^~204~^9.02^17^0.12^~1~^~A~^^^1^7.01^9.67^10^8.74^9.28^~2, 3~^~07/01/2014~ -~18938~^~205~^71.83^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~207~^1.10^17^0.01^~1~^~A~^^^1^0.99^1.30^6^1.05^1.14^~2, 3~^~04/01/2013~ -~18938~^~209~^29.65^11^0.17^~1~^~A~^^^1^28.70^31.90^2^28.96^30.33^~2, 3~^~07/01/2014~ -~18938~^~210~^8.88^11^0.18^~1~^~A~^^^1^7.66^13.30^2^8.18^9.58^~2, 3~^~07/01/2014~ -~18938~^~211~^14.90^11^0.17^~1~^~A~^^^1^9.36^16.33^2^14.23^15.56^~2, 3~^~07/01/2014~ -~18938~^~212~^3.88^11^0.06^~1~^~A~^^^1^3.55^4.22^2^3.60^4.15^~2, 3~^~04/01/2013~ -~18938~^~213~^0.26^11^0.01^~1~^~A~^^^1^0.00^1.86^4^0.21^0.29^~1, 2, 3~^~07/01/2014~ -~18938~^~214~^3.07^11^0.14^~1~^~A~^^^1^2.50^4.93^2^2.46^3.67^~2, 3~^~07/01/2014~ -~18938~^~255~^14.04^17^0.13^~1~^~A~^^^1^13.19^14.65^5^13.70^14.37^~2, 3~^~07/01/2014~ -~18938~^~269~^31.00^11^0.43^~1~^~A~^^^1^29.41^32.92^2^29.30^32.68^~2, 3~^~07/01/2014~ -~18938~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~18938~^~303~^4.35^17^0.11^~1~^~A~^^^1^3.46^5.65^6^4.05^4.64^~2, 3~^~07/01/2014~ -~18938~^~309~^0.36^17^4.0e-03^~1~^~A~^^^1^0.28^0.39^11^0.35^0.36^~2, 3~^~04/01/2013~ -~18938~^~323~^0.74^9^0.01^~1~^~A~^^^1^0.68^1.00^3^0.69^0.78^~2, 3~^~07/01/2014~ -~18938~^~341~^0.16^9^0.01^~1~^~A~^^^1^0.11^0.22^2^0.12^0.19^~2, 3~^~04/01/2013~ -~18938~^~342~^3.30^9^0.10^~1~^~A~^^^1^0.05^4.15^2^2.88^3.72^~2, 3~^~07/01/2014~ -~18938~^~343~^1.15^9^0.05^~1~^~A~^^^1^0.00^1.55^2^0.92^1.37^~1, 2, 3~^~07/01/2014~ -~18938~^~344~^0.17^9^0.01^~1~^~A~^^^1^0.09^0.68^2^0.12^0.20^~2, 3~^~07/01/2014~ -~18938~^~345~^0.49^9^0.03^~1~^~A~^^^1^0.37^0.62^2^0.34^0.64^~2, 3~^~04/01/2013~ -~18938~^~346~^0.24^9^0.01^~1~^~A~^^^1^0.09^1.00^4^0.19^0.28^~2, 3~^~07/01/2014~ -~18938~^~347~^0.08^9^0.01^~1~^~A~^^^1^0.00^0.33^3^0.03^0.11^~1, 2, 3~^~07/01/2014~ -~18938~^~418~^0.01^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~18938~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~18938~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~18939~^~203~^4.70^2^^~1~^~A~^^^1^4.54^4.87^1^^^^~01/01/2006~ -~18939~^~204~^11.03^2^^~1~^~A~^^^1^10.88^11.17^1^^^^~01/01/2006~ -~18939~^~205~^72.70^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~207~^1.11^2^^~1~^~A~^^^1^1.07^1.15^1^^^^~01/01/2006~ -~18939~^~209~^34.20^2^^~1~^~A~^^^1^32.90^35.50^1^^^^~01/01/2006~ -~18939~^~255~^10.46^2^^~1~^~A~^^^1^10.34^10.58^1^^^^~01/01/2006~ -~18939~^~269~^28.99^2^^~1~^~A~^^^1^26.95^31.03^1^^^^~01/01/2006~ -~18939~^~303~^3.92^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~309~^0.38^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~323~^0.90^2^^~1~^~A~^^^1^0.85^0.95^1^^^^~01/01/2006~ -~18940~^~203~^4.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~204~^4.22^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~205~^50.05^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~207~^1.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~255~^39.94^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~269~^27.05^0^^~4~^~BFZN~^~18274~^^^^^^^^^~04/01/2009~ -~18940~^~303~^2.00^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~309~^1.27^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~323~^0.39^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~418~^0.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18942~^~203~^5.10^3^0.18^~1~^~A~^^^1^4.75^5.38^2^4.30^5.90^~2, 3~^~08/01/2007~ -~18942~^~204~^24.83^3^1.61^~1~^~A~^^^1^21.78^27.28^2^17.87^31.78^~2, 3~^~08/01/2007~ -~18942~^~205~^64.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~207~^1.39^3^0.17^~1~^~A~^^^1^1.16^1.73^2^0.65^2.13^~2, 3~^~08/01/2007~ -~18942~^~209~^35.87^3^0.12^~1~^~A~^^^1^35.70^36.10^2^35.35^36.38^~2, 3~^~08/01/2007~ -~18942~^~210~^18.13^3^1.24^~1~^~A~^^^1^16.00^20.30^2^12.79^23.47^~2, 3~^~08/01/2007~ -~18942~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~255~^4.37^3^0.15^~1~^~A~^^^1^4.14^4.67^2^3.69^5.04^~2, 3~^~08/01/2007~ -~18942~^~269~^18.13^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~18942~^~303~^2.60^3^0.10^~1~^~A~^^^1^2.50^2.80^2^2.17^3.03^~2, 3~^~08/01/2007~ -~18942~^~309~^1.25^3^0.25^~1~^~A~^^^1^0.75^1.60^2^0.14^2.35^~2, 3~^~08/01/2007~ -~18942~^~323~^1.85^3^0.36^~1~^~A~^^^1^1.39^2.56^2^0.30^3.39^~2, 3~^~08/01/2007~ -~18942~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18942~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18943~^~203~^6.08^3^0.36^~1~^~A~^^^1^5.69^6.81^2^4.51^7.65^~2, 3~^~09/01/2007~ -~18943~^~204~^22.42^3^0.78^~1~^~A~^^^1^21.14^23.85^2^19.03^25.80^~2, 3~^~09/01/2007~ -~18943~^~205~^64.48^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~18943~^~207~^2.03^3^0.23^~1~^~A~^^^1^1.66^2.46^2^1.02^3.03^~2, 3~^~09/01/2007~ -~18943~^~209~^34.67^3^2.28^~1~^~A~^^^1^31.90^39.20^2^24.83^44.49^~2, 3~^~09/01/2007~ -~18943~^~210~^19.47^3^2.43^~1~^~A~^^^1^14.60^21.90^2^8.99^29.93^~2, 3~^~06/01/2014~ -~18943~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~255~^4.99^3^0.60^~1~^~A~^^^1^4.26^6.19^2^2.38^7.59^~2, 3~^~09/01/2007~ -~18943~^~269~^26.31^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18943~^~303~^4.30^2^^~1~^~A~^^^1^3.70^4.90^1^^^^~09/01/2007~ -~18943~^~309~^2.10^3^0.15^~1~^~A~^^^1^1.80^2.30^2^1.44^2.75^~2, 3~^~09/01/2007~ -~18943~^~323~^1.79^3^0.28^~1~^~A~^^^1^1.36^2.33^2^0.56^3.01^~2, 3~^~09/01/2007~ -~18943~^~341~^0.17^3^0.02^~1~^~A~^^^1^0.14^0.21^2^0.07^0.26^~2, 3~^~05/01/2014~ -~18943~^~342~^11.79^3^0.46^~1~^~A~^^^1^11.25^12.72^2^9.79^13.79^~2, 3~^~05/01/2014~ -~18943~^~343~^3.49^3^0.08^~1~^~A~^^^1^3.33^3.60^2^3.13^3.85^~2, 3~^~05/01/2014~ -~18943~^~344~^0.04^3^6.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~2, 3~^~05/01/2014~ -~18943~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~18943~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18944~^~203~^2.17^3^0.38^~1~^~A~^^^1^1.44^2.75^2^0.50^3.82^~2, 3~^~11/01/2007~ -~18944~^~204~^11.50^3^0.40^~1~^~A~^^^1^10.72^12.08^2^9.75^13.24^~2, 3~^~11/01/2007~ -~18944~^~205~^44.54^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~207~^0.70^3^0.03^~1~^~A~^^^1^0.66^0.78^2^0.53^0.86^~2, 3~^~11/01/2007~ -~18944~^~209~^15.40^3^2.60^~1~^~A~^^^1^10.20^18.20^2^4.20^26.59^~2, 3~^~11/01/2007~ -~18944~^~210~^11.03^3^4.18^~1~^~A~^^^1^6.70^19.40^2^-6.98^29.04^~2, 3~^~11/01/2007~ -~18944~^~211~^4.89^3^1.21^~1~^~A~^^^1^2.79^7.01^2^-0.35^10.12^~2, 3~^~11/01/2007~ -~18944~^~212~^4.57^3^0.38^~1~^~A~^^^1^3.84^5.14^2^2.91^6.21^~2, 3~^~11/01/2007~ -~18944~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~214~^1.53^3^0.50^~1~^~A~^^^1^0.57^2.25^2^-0.62^3.68^~2, 3~^~11/01/2007~ -~18944~^~255~^41.09^3^1.25^~1~^~A~^^^1^38.64^42.78^2^35.69^46.47^~2, 3~^~11/01/2007~ -~18944~^~269~^22.02^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~303~^0.91^3^0.24^~1~^~A~^^^1^0.42^1.20^2^-0.14^1.96^~2, 3~^~11/01/2007~ -~18944~^~309~^0.19^2^^~1~^~A~^^^1^0.19^0.19^^^^^~11/01/2007~ -~18944~^~323~^0.96^3^0.15^~1~^~A~^^^1^0.73^1.25^2^0.30^1.61^~2, 3~^~11/01/2007~ -~18944~^~341~^0.07^3^9.0e-03^~1~^~A~^^^1^0.06^0.09^2^0.03^0.11^~2, 3~^~11/01/2007~ -~18944~^~342~^4.89^3^0.43^~1~^~A~^^^1^4.23^5.72^2^2.99^6.77^~2, 3~^~11/01/2007~ -~18944~^~343~^1.55^3^0.13^~1~^~A~^^^1^1.29^1.75^2^0.96^2.14^~2, 3~^~11/01/2007~ -~18944~^~344~^0.02^3^5.0e-03^~1~^~A~^^^1^0.01^0.03^2^3.0e-03^0.04^~1, 2, 3~^~11/01/2007~ -~18944~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18945~^~203~^5.52^3^0.29^~1~^~A~^^^1^5.06^6.06^2^4.26^6.77^~2, 3~^~04/01/2008~ -~18945~^~204~^28.74^3^3.76^~1~^~A~^^^1^24.12^36.20^2^12.54^44.93^~2, 3~^~04/01/2008~ -~18945~^~205~^46.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~207~^1.17^3^0.09^~1~^~A~^^^1^0.98^1.29^2^0.75^1.57^~2, 3~^~04/01/2008~ -~18945~^~209~^41.70^3^2.65^~1~^~A~^^^1^36.50^45.20^2^30.29^53.10^~2, 3~^~04/01/2008~ -~18945~^~255~^17.78^3^0.43^~1~^~A~^^^1^16.93^18.34^2^15.92^19.63^~2, 3~^~04/01/2008~ -~18945~^~303~^2.26^3^0.42^~1~^~A~^^^1^1.82^3.10^2^0.45^4.06^~2, 3~^~04/01/2008~ -~18945~^~309~^0.46^3^0.02^~1~^~A~^^^1^0.44^0.51^2^0.36^0.55^~2, 3~^~04/01/2008~ -~18945~^~323~^1.24^3^0.87^~1~^~A~^^^1^0.05^2.95^2^-2.53^5.01^~2, 3~^~04/01/2008~ -~18945~^~341~^0.12^3^0.05^~1~^~A~^^^1^0.06^0.22^2^-0.09^0.33^~2, 3~^~04/01/2008~ -~18945~^~342~^8.59^3^5.23^~1~^~A~^^^1^0.51^18.39^2^-13.91^31.10^~2, 3~^~04/01/2008~ -~18945~^~343~^2.54^3^1.53^~1~^~A~^^^1^0.04^5.32^2^-4.04^9.12^~2, 3~^~04/01/2008~ -~18945~^~344~^0.04^3^0.01^~1~^~A~^^^1^0.02^0.07^2^-0.02^0.10^~2, 3~^~04/01/2008~ -~18945~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18946~^~203~^3.41^2^^~1~^~A~^^^1^2.81^4.00^1^^^^~04/01/2008~ -~18946~^~204~^28.69^2^^~1~^~A~^^^1^27.75^29.62^1^^^^~04/01/2008~ -~18946~^~205~^58.52^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~207~^1.42^2^^~1~^~A~^^^1^1.26^1.58^1^^^^~04/01/2008~ -~18946~^~209~^51.85^2^^~1~^~A~^^^1^50.80^52.90^1^^^^~04/01/2008~ -~18946~^~255~^7.96^2^^~1~^~A~^^^1^7.90^8.03^1^^^^~04/01/2008~ -~18946~^~303~^1.15^2^^~1~^~A~^^^1^0.52^1.78^1^^^^~04/01/2008~ -~18946~^~309~^0.22^2^^~1~^~A~^^^1^0.21^0.24^1^^^^~04/01/2008~ -~18946~^~323~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~04/01/2008~ -~18946~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~18946~^~342~^0.15^2^^~1~^~A~^^^1^0.06^0.24^1^^^^~04/01/2008~ -~18946~^~343~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~04/01/2008~ -~18946~^~344~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~18946~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18946~^~346~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~18946~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18946~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18947~^~203~^6.10^3^0.30^~1~^~A~^^^1^5.50^6.44^2^4.80^7.40^~2, 3~^~04/01/2008~ -~18947~^~204~^31.84^3^4.15^~1~^~A~^^^1^27.16^40.13^2^13.95^49.72^~2, 3~^~04/01/2008~ -~18947~^~205~^52.47^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~207~^1.33^3^0.09^~1~^~A~^^^1^1.16^1.48^2^0.93^1.73^~2, 3~^~04/01/2008~ -~18947~^~209~^45.67^3^3.01^~1~^~A~^^^1^40.70^51.10^2^32.71^58.62^~2, 3~^~04/01/2008~ -~18947~^~255~^8.26^3^0.72^~1~^~A~^^^1^6.81^9.07^2^5.13^11.37^~2, 3~^~04/01/2008~ -~18947~^~303~^2.47^3^0.57^~1~^~A~^^^1^1.87^3.61^2^0.01^4.92^~2, 3~^~04/01/2008~ -~18947~^~309~^0.52^3^0.03^~1~^~A~^^^1^0.48^0.58^2^0.38^0.64^~2, 3~^~04/01/2008~ -~18947~^~323~^1.39^3^0.94^~1~^~A~^^^1^0.09^3.23^2^-2.67^5.45^~2, 3~^~04/01/2008~ -~18947~^~341~^0.13^3^0.04^~1~^~A~^^^1^0.08^0.23^2^-0.07^0.34^~2, 3~^~04/01/2008~ -~18947~^~342~^9.41^3^5.53^~1~^~A~^^^1^0.64^19.64^2^-14.40^33.21^~2, 3~^~04/01/2008~ -~18947~^~343~^2.78^3^1.66^~1~^~A~^^^1^0.03^5.77^2^-4.37^9.92^~2, 3~^~04/01/2008~ -~18947~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.02^0.05^2^-0.01^0.07^~2, 3~^~04/01/2008~ -~18947~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2008~ -~18948~^~203~^2.97^2^^~1~^~A~^^^1^2.44^3.50^1^^^^~04/01/2008~ -~18948~^~204~^25.46^2^^~1~^~A~^^^1^24.54^26.37^1^^^^~04/01/2008~ -~18948~^~205~^51.11^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~207~^1.22^2^^~1~^~A~^^^1^1.08^1.36^1^^^^~04/01/2008~ -~18948~^~209~^44.90^2^^~1~^~A~^^^1^43.90^45.90^1^^^^~04/01/2008~ -~18948~^~255~^19.25^2^^~1~^~A~^^^1^18.80^19.70^1^^^^~04/01/2008~ -~18948~^~303~^1.02^2^^~1~^~A~^^^1^0.42^1.61^1^^^^~04/01/2008~ -~18948~^~309~^0.20^2^^~1~^~A~^^^1^0.19^0.22^1^^^^~04/01/2008~ -~18948~^~323~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~04/01/2008~ -~18948~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~04/01/2008~ -~18948~^~342~^0.14^2^^~1~^~A~^^^1^0.06^0.22^1^^^^~04/01/2008~ -~18948~^~343~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~04/01/2008~ -~18948~^~344~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~18948~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18948~^~346~^0.01^2^^~1~^~A~^^^1^0.01^0.01^^^^~1~^~04/01/2008~ -~18948~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18948~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2008~ -~18949~^~203~^11.34^4^0.06^~1~^~A~^^^1^11.19^11.50^3^11.13^11.55^~2, 3~^~10/01/2008~ -~18949~^~204~^7.59^4^0.32^~1~^~A~^^^1^6.69^8.21^3^6.56^8.60^~2, 3~^~10/01/2008~ -~18949~^~205~^75.52^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18949~^~207~^2.96^4^0.02^~1~^~A~^^^1^2.92^3.02^3^2.89^3.03^~2, 3~^~10/01/2008~ -~18949~^~209~^61.10^4^0.14^~1~^~A~^^^1^60.70^61.40^3^60.63^61.56^~2, 3~^~10/01/2008~ -~18949~^~210~^0.90^4^0.01^~1~^~A~^^^1^0.87^0.95^3^0.84^0.95^~2, 3~^~10/01/2008~ -~18949~^~211~^0.32^4^0.02^~1~^~A~^^^1^0.29^0.39^3^0.24^0.39^~2, 3~^~10/01/2008~ -~18949~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~255~^2.59^4^0.26^~1~^~A~^^^1^2.19^3.36^3^1.73^3.44^~2, 3~^~10/01/2008~ -~18949~^~269~^1.22^4^0.03^~1~^~A~^^^1^1.17^1.29^3^1.12^1.31^~2, 3~^~10/01/2008~ -~18949~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~303~^3.56^4^0.01^~1~^~A~^^^1^3.51^3.59^3^3.50^3.61^~2, 3~^~10/01/2008~ -~18949~^~309~^2.99^4^0.04^~1~^~A~^^^1^2.91^3.13^3^2.83^3.14^~2, 3~^~10/01/2008~ -~18949~^~323~^1.08^4^0.04^~1~^~A~^^^1^0.97^1.14^3^0.95^1.21^~2, 3~^~10/01/2008~ -~18949~^~341~^0.22^4^3.0e-03^~1~^~A~^^^1^0.22^0.23^3^0.21^0.23^~2, 3~^~10/01/2008~ -~18949~^~342~^4.49^4^0.15^~1~^~A~^^^1^4.20^4.90^3^4.01^4.97^~2, 3~^~10/01/2008~ -~18949~^~343~^0.94^4^0.05^~1~^~A~^^^1^0.83^1.07^3^0.77^1.11^~2, 3~^~10/01/2008~ -~18949~^~344~^0.34^4^6.0e-03^~1~^~A~^^^1^0.33^0.36^3^0.32^0.36^~2, 3~^~10/01/2008~ -~18949~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18949~^~573~^0.00^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18949~^~578~^0.00^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~ -~18950~^~203~^9.34^4^0.10^~1~^~A~^^^1^9.19^9.62^3^9.01^9.67^~2, 3~^~10/01/2008~ -~18950~^~204~^13.37^4^0.20^~1~^~A~^^^1^12.95^13.82^3^12.72^14.00^~2, 3~^~10/01/2008~ -~18950~^~205~^71.52^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18950~^~207~^3.04^4^0.07^~1~^~A~^^^1^2.88^3.24^3^2.79^3.28^~2, 3~^~10/01/2008~ -~18950~^~209~^50.92^4^0.27^~1~^~A~^^^1^50.20^51.50^3^50.06^51.79^~2, 3~^~10/01/2008~ -~18950~^~210~^9.24^4^0.41^~1~^~A~^^^1^8.61^10.48^3^7.91^10.57^~2, 3~^~10/01/2008~ -~18950~^~211~^1.55^4^0.02^~1~^~A~^^^1^1.50^1.59^3^1.47^1.61^~2, 3~^~10/01/2008~ -~18950~^~212~^0.88^4^0.01^~1~^~A~^^^1^0.84^0.92^3^0.82^0.93^~2, 3~^~10/01/2008~ -~18950~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~214~^3.34^4^0.14^~1~^~A~^^^1^2.96^3.62^3^2.89^3.79^~2, 3~^~10/01/2008~ -~18950~^~255~^2.73^4^0.09^~1~^~A~^^^1^2.55^2.91^3^2.41^3.03^~2, 3~^~10/01/2008~ -~18950~^~269~^15.01^4^0.30^~1~^~A~^^^1^14.36^15.82^3^14.04^15.97^~2, 3~^~10/01/2008~ -~18950~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~303~^5.02^4^0.08^~1~^~A~^^^1^4.91^5.26^3^4.75^5.27^~2, 3~^~10/01/2008~ -~18950~^~309~^1.74^4^0.06^~1~^~A~^^^1^1.65^1.94^3^1.52^1.95^~2, 3~^~10/01/2008~ -~18950~^~323~^1.18^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~418~^0.14^1^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~573~^0.00^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18950~^~578~^0.00^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~ -~18951~^~203~^5.80^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~204~^10.10^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~205~^45.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18951~^~207~^2.80^0^^~4~^~BFSN~^~18365~^^^^^^^^^~03/01/2009~ -~18951~^~255~^35.62^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~269~^13.10^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~303~^6.40^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~309~^0.40^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~323~^0.00^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~418~^1.70^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~578~^1.10^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~18952~^~203~^6.15^3^0.91^~1~^~A~^^^1^4.31^7.12^2^2.19^10.09^~2, 3~^~01/01/2009~ -~18952~^~204~^23.38^3^1.93^~1~^~A~^^^1^19.74^26.35^2^15.04^31.71^~2, 3~^~01/01/2009~ -~18952~^~205~^64.43^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~207~^2.72^3^0.05^~1~^~A~^^^1^2.60^2.79^2^2.46^2.97^~2, 3~^~01/01/2009~ -~18952~^~209~^55.40^3^2.15^~1~^~A~^^^1^52.90^59.70^2^46.10^64.69^~2, 3~^~01/01/2009~ -~18952~^~255~^3.32^3^0.20^~1~^~A~^^^1^3.03^3.72^2^2.43^4.20^~2, 3~^~01/01/2009~ -~18952~^~303~^1.53^3^0.18^~1~^~A~^^^1^1.30^1.90^2^0.73^2.33^~2, 3~^~01/01/2009~ -~18952~^~309~^1.23^3^0.08^~1~^~A~^^^1^1.10^1.40^2^0.85^1.61^~2, 3~^~01/01/2009~ -~18953~^~203~^7.12^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~204~^17.12^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~205~^47.84^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18953~^~207~^2.44^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~209~^16.00^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~210~^24.10^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~213~^0.59^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~214~^0.23^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~255~^25.48^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~269~^24.90^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~18953~^~303~^0.98^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~309~^0.80^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~323~^0.96^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~342~^6.90^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~343~^3.49^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~346~^0.04^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~418~^0.35^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18953~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~18954~^~203~^7.06^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~204~^17.45^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~205~^51.29^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~207~^1.82^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~209~^25.20^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~210~^17.30^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~211~^0.27^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~212~^0.25^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~214~^0.28^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~255~^22.38^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~269~^18.10^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~18954~^~303~^2.20^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~309~^0.62^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~323~^1.42^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~341~^0.77^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~342~^7.70^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~343~^3.79^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18955~^~203~^9.42^3^0.65^~1~^~A~^^^1^8.50^10.69^2^6.59^12.23^~2, 3~^~05/01/2009~ -~18955~^~204~^11.58^3^3.69^~1~^~A~^^^1^5.81^18.45^2^-4.29^27.45^~2, 3~^~05/01/2009~ -~18955~^~205~^56.38^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~207~^1.08^3^0.16^~1~^~A~^^^1^0.75^1.31^2^0.35^1.80^~2, 3~^~05/01/2009~ -~18955~^~209~^37.80^3^1.82^~1~^~A~^^^1^35.50^41.40^2^29.95^45.64^~2, 3~^~05/01/2009~ -~18955~^~210~^3.86^3^2.35^~1~^~A~^^^1^1.02^8.52^2^-6.25^13.96^~2, 3~^~05/01/2009~ -~18955~^~211~^3.58^3^0.38^~1~^~A~^^^1^3.13^4.35^2^1.90^5.24^~2, 3~^~05/01/2009~ -~18955~^~212~^4.05^3^0.23^~1~^~A~^^^1^3.72^4.51^2^3.03^5.07^~2, 3~^~05/01/2009~ -~18955~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18955~^~214~^1.01^3^0.29^~1~^~A~^^^1^0.67^1.60^2^-0.25^2.28^~2, 3~^~05/01/2009~ -~18955~^~255~^21.54^3^3.56^~1~^~A~^^^1^15.45^27.81^2^6.18^36.89^~2, 3~^~05/01/2009~ -~18955~^~269~^12.50^3^2.47^~1~^~A~^^^1^8.76^17.18^2^1.84^23.15^~2, 3~^~05/01/2009~ -~18955~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18955~^~303~^2.87^3^0.76^~1~^~A~^^^1^1.38^3.92^2^-0.43^6.16^~2, 3~^~05/01/2009~ -~18955~^~309~^0.84^3^0.03^~1~^~A~^^^1^0.79^0.91^2^0.67^1.00^~2, 3~^~05/01/2009~ -~18955~^~323~^0.29^2^^~1~^~A~^^^1^0.16^0.43^1^^^^~05/01/2009~ -~18955~^~341~^0.07^2^^~1~^~A~^^^1^0.04^0.11^1^^^^~05/01/2009~ -~18955~^~342~^2.69^2^^~1~^~A~^^^1^1.33^4.05^1^^^^~05/01/2009~ -~18955~^~343~^0.77^2^^~1~^~A~^^^1^0.43^1.11^1^^^^~05/01/2009~ -~18955~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~18955~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~18955~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~18955~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~18955~^~418~^0.11^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~573~^0.00^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~578~^0.00^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18956~^~203~^6.81^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~204~^25.24^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~205~^53.16^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18956~^~207~^1.80^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~209~^25.20^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~210~^25.81^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18956~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18956~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18956~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18956~^~255~^12.99^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~269~^25.81^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18956~^~303~^2.53^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~309~^0.52^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~203~^6.62^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~204~^21.70^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~205~^48.94^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18957~^~207~^1.45^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~209~^19.60^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~210~^26.50^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~211~^1.18^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~212~^1.02^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18957~^~214~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18957~^~255~^21.29^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~269~^28.77^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18957~^~303~^1.51^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~309~^0.59^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~203~^8.81^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~204~^16.11^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~205~^66.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18958~^~207~^1.68^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~209~^41.70^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~210~^21.86^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18958~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18958~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18958~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18958~^~255~^7.12^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~269~^21.86^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~18958~^~303~^2.52^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~309~^0.82^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~203~^5.48^3^0.49^~1~^~A~^^^1^4.69^6.37^2^3.37^7.58^~2, 3~^~05/01/2009~ -~18959~^~204~^18.50^3^0.87^~1~^~A~^^^1^17.31^20.21^2^14.72^22.27^~2, 3~^~05/01/2009~ -~18959~^~205~^47.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~207~^0.99^3^0.03^~1~^~A~^^^1^0.93^1.03^2^0.85^1.13^~2, 3~^~05/01/2009~ -~18959~^~209~^24.65^2^^~1~^~A~^^^1^22.80^26.50^1^^^^~05/01/2009~ -~18959~^~210~^12.37^3^1.07^~1~^~A~^^^1^10.69^14.36^2^7.75^16.97^~2, 3~^~05/01/2009~ -~18959~^~211~^2.29^3^0.19^~1~^~A~^^^1^1.95^2.63^2^1.44^3.13^~2, 3~^~05/01/2009~ -~18959~^~212~^1.41^3^0.31^~1~^~A~^^^1^0.84^1.94^2^0.04^2.78^~2, 3~^~05/01/2009~ -~18959~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~214~^0.93^3^0.55^~1~^~A~^^^1^0.07^1.97^2^-1.46^3.31^~1, 2, 3~^~05/01/2009~ -~18959~^~255~^27.26^3^2.96^~1~^~A~^^^1^24.22^33.19^2^14.51^40.01^~2, 3~^~05/01/2009~ -~18959~^~269~^17.00^3^1.08^~1~^~A~^^^1^15.25^18.99^2^12.32^21.66^~2, 3~^~05/01/2009~ -~18959~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~303~^2.12^3^0.19^~1~^~A~^^^1^1.82^2.47^2^1.30^2.94^~2, 3~^~05/01/2009~ -~18959~^~309~^0.42^3^0.06^~1~^~A~^^^1^0.32^0.53^2^0.15^0.67^~2, 3~^~05/01/2009~ -~18959~^~323~^0.95^3^0.40^~1~^~A~^^^1^0.22^1.61^2^-0.78^2.68^~2, 3~^~05/01/2009~ -~18959~^~341~^0.12^3^0.04^~1~^~A~^^^1^0.04^0.17^2^-0.05^0.29^~2, 3~^~05/01/2009~ -~18959~^~342~^6.81^3^1.90^~1~^~A~^^^1^3.05^9.27^2^-1.40^15.01^~2, 3~^~05/01/2009~ -~18959~^~343~^2.43^3^0.33^~1~^~A~^^^1^2.00^3.09^2^0.99^3.87^~2, 3~^~05/01/2009~ -~18959~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~18960~^~203~^14.25^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~204~^13.35^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~205~^64.35^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~207~^2.12^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~209~^57.80^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~212~^0.47^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~214~^1.88^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~255~^5.93^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~269~^2.35^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~303~^5.66^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~309~^1.17^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18961~^~203~^7.01^6^^~1~^~A~^^^1^6.81^7.19^^^^~2~^~06/01/2010~ -~18961~^~204~^20.37^6^^~1~^~A~^^^1^19.06^21.87^^^^~2~^~06/01/2010~ -~18961~^~205~^64.55^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~207~^3.62^6^^~1~^~A~^^^1^3.29^3.97^^^^~2~^~06/01/2010~ -~18961~^~209~^51.87^6^^~1~^~A~^^^1^50.60^53.00^^^^~2~^~06/01/2010~ -~18961~^~210~^6.22^6^^~1~^~A~^^^1^5.57^7.16^^^^~2~^~06/01/2010~ -~18961~^~211~^0.92^6^^~1~^~A~^^^1^0.69^1.09^^^^~2~^~06/01/2010~ -~18961~^~212~^0.95^6^^~1~^~A~^^^1^0.83^1.21^^^^~2~^~06/01/2010~ -~18961~^~213~^0.00^6^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~18961~^~214~^1.27^6^^~1~^~A~^^^1^0.99^1.55^^^^~2~^~06/01/2010~ -~18961~^~255~^4.45^6^^~1~^~A~^^^1^4.06^4.90^^^^~2~^~06/01/2010~ -~18961~^~269~^9.37^6^^~1~^~A~^^^1^8.52^10.84^^^^~2~^~06/01/2010~ -~18961~^~287~^0.00^6^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~18961~^~303~^7.38^6^^~1~^~A~^^^1^3.17^9.83^^^^~2~^~06/01/2010~ -~18961~^~309~^0.66^6^^~1~^~A~^^^1^0.60^0.79^^^^~2~^~06/01/2010~ -~18961~^~323~^1.59^4^^~1~^~A~^^^1^1.49^1.79^^^^~2~^~06/01/2010~ -~18961~^~341~^0.37^4^^~1~^~A~^^^1^0.35^0.39^^^^~2~^~06/01/2010~ -~18961~^~342~^5.38^4^^~1~^~A~^^^1^5.12^5.91^^^^~2~^~06/01/2010~ -~18961~^~343~^2.01^4^^~1~^~A~^^^1^1.90^2.18^^^^~2~^~06/01/2010~ -~18961~^~344~^0.04^4^^~1~^~A~^^^1^0.03^0.05^^^^~2~^~06/01/2010~ -~18961~^~345~^1.05^4^^~1~^~A~^^^1^1.04^1.07^^^^~2~^~06/01/2010~ -~18961~^~346~^0.97^4^^~1~^~A~^^^1^0.94^1.01^^^^~2~^~06/01/2010~ -~18961~^~347~^0.32^4^^~1~^~A~^^^1^0.31^0.33^^^^~2~^~06/01/2010~ -~18961~^~418~^0.46^2^^~1~^~A~^^^1^0.18^0.73^^^^^~06/01/2010~ -~18962~^~203~^7.19^2^^~1~^~A~^^^1^7.12^7.25^^^^^~06/01/2010~ -~18962~^~204~^19.50^2^^~1~^~A~^^^1^18.40^20.61^^^^^~06/01/2010~ -~18962~^~205~^64.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18962~^~207~^3.95^2^^~1~^~A~^^^1^3.79^4.11^^^^^~06/01/2010~ -~18962~^~209~^51.10^2^^~1~^~A~^^^1^50.50^51.70^^^^^~06/01/2010~ -~18962~^~210~^7.97^2^^~1~^~A~^^^1^7.91^8.03^^^^^~06/01/2010~ -~18962~^~211~^0.95^2^^~1~^~A~^^^1^0.88^1.02^^^^^~06/01/2010~ -~18962~^~212~^1.10^2^^~1~^~A~^^^1^1.05^1.16^^^^^~06/01/2010~ -~18962~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2010~ -~18962~^~214~^0.39^2^^~1~^~A~^^^1^0.18^0.60^^^^~1~^~06/01/2010~ -~18962~^~255~^4.48^2^^~1~^~A~^^^1^4.23^4.73^^^^^~06/01/2010~ -~18962~^~269~^10.41^2^^~1~^~A~^^^1^10.02^10.81^^^^^~06/01/2010~ -~18962~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2010~ -~18962~^~303~^6.64^2^^~1~^~A~^^^1^6.60^6.68^^^^^~06/01/2010~ -~18962~^~309~^4.11^2^^~1~^~A~^^^1^4.08^4.14^^^^^~06/01/2010~ -~18962~^~418~^0.80^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18963~^~203~^8.36^10^0.15^~1~^~A~^^^1^7.28^8.89^9^8.01^8.70^~2, 3~^~04/01/2011~ -~18963~^~204~^16.61^10^0.43^~1~^~A~^^^1^14.20^18.40^9^15.62^17.59^~2, 3~^~04/01/2011~ -~18963~^~205~^41.72^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~207~^1.54^10^0.02^~1~^~A~^^^1^1.36^1.66^9^1.48^1.59^~2, 3~^~04/01/2011~ -~18963~^~209~^34.84^5^0.26^~1~^~A~^^^1^34.20^35.50^4^34.11^35.56^~2, 3~^~04/01/2011~ -~18963~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~211~^0.42^5^0.06^~1~^~A~^^^1^0.32^0.68^4^0.24^0.60^~2, 3~^~04/01/2011~ -~18963~^~212~^0.62^5^0.03^~1~^~A~^^^1^0.55^0.72^4^0.53^0.71^~2, 3~^~04/01/2011~ -~18963~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~214~^2.64^5^0.08^~1~^~A~^^^1^2.39^2.86^4^2.41^2.87^~2, 3~^~04/01/2011~ -~18963~^~255~^31.78^10^0.25^~1~^~A~^^^1^30.40^33.00^9^31.20^32.35^~2, 3~^~04/01/2011~ -~18963~^~269~^3.69^5^0.12^~1~^~A~^^^1^3.31^4.06^4^3.35^4.02^~2, 3~^~04/01/2011~ -~18963~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~303~^3.05^10^0.10^~1~^~A~^^^1^2.47^3.51^9^2.82^3.28^~2, 3~^~04/01/2011~ -~18963~^~309~^0.87^10^0.05^~1~^~A~^^^1^0.62^1.07^9^0.73^0.99^~2, 3~^~04/01/2011~ -~18963~^~323~^1.18^6^0.08^~1~^~A~^^^1^0.95^1.42^5^0.96^1.40^~2, 3~^~08/01/2012~ -~18963~^~341~^0.25^6^0.02^~1~^~A~^^^1^0.19^0.35^5^0.18^0.31^~2, 3~^~08/01/2012~ -~18963~^~342~^7.88^6^0.25^~1~^~A~^^^1^7.12^8.66^5^7.22^8.54^~2, 3~^~08/01/2012~ -~18963~^~343~^2.63^6^0.12^~1~^~A~^^^1^2.12^2.99^5^2.30^2.96^~2, 3~^~08/01/2012~ -~18963~^~344~^0.39^6^0.10^~1~^~A~^^^1^0.15^0.68^5^0.12^0.66^~2, 3~^~08/01/2012~ -~18963~^~345~^0.74^6^0.06^~1~^~A~^^^1^0.47^0.85^5^0.57^0.91^~2, 3~^~08/01/2012~ -~18963~^~346~^0.43^6^0.15^~1~^~A~^^^1^0.07^0.93^5^0.01^0.83^~2, 3~^~08/01/2012~ -~18963~^~347~^0.18^6^0.08^~1~^~A~^^^1^0.00^0.39^5^-0.02^0.38^~1, 2, 3~^~08/01/2012~ -~18963~^~418~^0.08^4^5.0e-03^~1~^~A~^^^1^0.07^0.09^3^0.06^0.09^~2, 3~^~04/01/2011~ -~18963~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18963~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18964~^~203~^4.45^10^0.03^~1~^~A~^^^1^4.29^5.30^6^4.36^4.53^~2, 3~^~07/01/2014~ -~18964~^~204~^26.61^10^0.55^~1~^~A~^^^1^19.60^29.40^5^25.20^28.00^~2, 3~^~07/01/2014~ -~18964~^~205~^48.60^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~207~^1.36^10^0.01^~1~^~A~^^^1^1.22^1.44^5^1.32^1.40^~2, 3~^~07/01/2014~ -~18964~^~209~^16.39^10^0.28^~1~^~A~^^^1^14.60^22.70^6^15.68^17.09^~2, 3~^~07/01/2014~ -~18964~^~210~^20.11^10^0.47^~1~^~A~^^^1^2.35^21.66^3^18.48^21.73^~2, 3~^~07/01/2014~ -~18964~^~211~^3.05^10^0.15^~1~^~A~^^^1^2.76^8.93^1^1.44^4.65^~2, 3~^~07/01/2014~ -~18964~^~212~^1.11^10^0.15^~1~^~A~^^^1^0.72^8.43^1^-0.60^2.82^~2, 3~^~07/01/2014~ -~18964~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~214~^1.43^10^0.12^~1~^~A~^^^1^1.15^6.47^1^0.47^2.38^~2, 3~^~07/01/2014~ -~18964~^~255~^18.98^10^0.24^~1~^~A~^^^1^17.90^22.00^5^18.35^19.60^~2, 3~^~07/01/2014~ -~18964~^~269~^25.70^10^0.25^~1~^~A~^^^1^23.76^26.55^7^25.10^26.30^~2, 3~^~07/01/2014~ -~18964~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~303~^1.37^10^0.03^~1~^~A~^^^1^1.17^1.95^5^1.28^1.45^~2, 3~^~07/01/2014~ -~18964~^~309~^0.53^10^8.0e-03^~1~^~A~^^^1^0.47^0.57^5^0.50^0.54^~2, 3~^~07/01/2014~ -~18964~^~323~^1.15^5^0.09^~1~^~A~^^^1^0.92^1.64^2^0.73^1.55^~2, 3~^~07/01/2014~ -~18964~^~341~^0.10^5^4.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.08^0.11^~2, 3~^~04/01/2011~ -~18964~^~342~^2.13^5^0.08^~1~^~A~^^^1^0.45^2.53^2^1.76^2.50^~2, 3~^~07/01/2014~ -~18964~^~343~^0.83^5^0.02^~1~^~A~^^^1^0.14^0.98^2^0.72^0.94^~2, 3~^~07/01/2014~ -~18964~^~344~^0.46^5^0.02^~1~^~A~^^^1^0.35^1.21^2^0.36^0.56^~2, 3~^~07/01/2014~ -~18964~^~345~^0.39^5^0.01^~1~^~A~^^^1^0.34^0.67^2^0.32^0.45^~2, 3~^~07/01/2014~ -~18964~^~346~^0.71^5^0.04^~1~^~A~^^^1^0.56^1.56^2^0.53^0.87^~2, 3~^~07/01/2014~ -~18964~^~347~^0.37^5^8.0e-03^~1~^~A~^^^1^0.34^0.53^2^0.33^0.40^~2, 3~^~07/01/2014~ -~18964~^~418~^0.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18964~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18965~^~203~^10.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~204~^11.67^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~205~^68.19^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18965~^~207~^2.84^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~255~^7.30^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~18965~^~303~^4.80^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~309~^0.90^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~323~^1.88^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~418~^0.03^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~203~^7.14^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~204~^10.71^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~205~^68.25^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18966~^~207~^4.04^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~255~^9.85^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~303~^5.14^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~309~^1.46^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~323~^1.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18967~^~203~^10.66^2^^~1~^~A~^^^1^10.31^11.00^1^^^^~03/01/2011~ -~18967~^~204~^2.15^2^^~1~^~A~^^^1^2.10^2.20^1^^^^~03/01/2011~ -~18967~^~205~^43.91^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~207~^3.69^2^^~1~^~A~^^^1^3.64^3.73^1^^^^~03/01/2011~ -~18967~^~209~^27.25^2^^~1~^~A~^^^1^27.00^27.50^1^^^^~03/01/2011~ -~18967~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2011~ -~18967~^~211~^1.50^2^^~1~^~A~^^^1^1.30^1.70^1^^^^~03/01/2011~ -~18967~^~212~^2.70^2^^~1~^~A~^^^1^2.50^2.90^1^^^^~03/01/2011~ -~18967~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2011~ -~18967~^~214~^0.80^2^^~1~^~A~^^^1^0.70^0.90^1^^^^~03/01/2011~ -~18967~^~255~^39.60^2^^~1~^~A~^^^1^38.80^40.40^1^^^^~03/01/2011~ -~18967~^~269~^5.00^2^^~1~^~A~^^^1^4.50^5.50^1^^^^~03/01/2011~ -~18967~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2011~ -~18967~^~303~^4.89^2^^~1~^~A~^^^1^4.75^5.04^1^^^^~03/01/2011~ -~18967~^~309~^0.95^2^^~1~^~A~^^^1^0.93^0.97^1^^^^~03/01/2011~ -~18967~^~323~^0.38^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18967~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18968~^~203~^10.20^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~204~^1.53^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~205~^48.89^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18968~^~207~^1.82^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~255~^37.55^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~269~^6.12^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~303~^2.76^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~309~^1.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~323~^0.32^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18969~^~203~^4.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~204~^18.52^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~205~^37.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~207~^1.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~255~^38.64^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~269~^22.05^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~303~^0.95^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~309~^0.45^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~323~^0.95^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~418~^0.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~203~^8.01^12^0.18^~1~^~A~^^^1^7.19^9.56^11^7.59^8.42^~2, 3~^~03/01/2011~ -~18970~^~204~^7.58^12^0.33^~1~^~A~^^^1^6.05^9.41^11^6.84^8.32^~2, 3~^~03/01/2011~ -~18970~^~205~^49.27^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18970~^~207~^2.71^12^0.11^~1~^~A~^^^1^2.07^3.29^11^2.45^2.96^~2, 3~^~03/01/2011~ -~18970~^~209~^40.20^12^0.95^~1~^~A~^^^1^35.30^45.70^11^38.09^42.31^~2, 3~^~03/01/2011~ -~18970~^~210~^0.48^12^0.19^~1~^~A~^^^1^0.00^1.74^11^0.05^0.90^~1, 2, 3~^~03/01/2011~ -~18970~^~211~^0.09^12^0.05^~1~^~A~^^^1^0.00^0.45^11^-0.01^0.20^~1, 2, 3~^~03/01/2011~ -~18970~^~212~^0.03^12^0.03^~1~^~A~^^^1^0.00^0.36^11^-0.03^0.09^~1, 2, 3~^~03/01/2011~ -~18970~^~213~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18970~^~214~^2.06^12^0.08^~1~^~A~^^^1^1.71^2.65^11^1.86^2.24^~2, 3~^~03/01/2011~ -~18970~^~255~^32.43^12^0.50^~1~^~A~^^^1^28.60^34.33^11^31.32^33.53^~2, 3~^~03/01/2011~ -~18970~^~269~^2.66^12^0.15^~1~^~A~^^^1^1.71^3.63^11^2.32^2.99^~2, 3~^~03/01/2011~ -~18970~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~18970~^~303~^3.32^12^0.11^~1~^~A~^^^1^2.68^4.10^11^3.06^3.57^~2, 3~^~03/01/2011~ -~18970~^~309~^0.57^12^0.03^~1~^~A~^^^1^0.42^0.90^11^0.48^0.65^~2, 3~^~03/01/2011~ -~18970~^~323~^0.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~341~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~342~^2.32^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~343~^0.58^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~345~^0.05^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18971~^~203~^12.50^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~204~^3.13^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~205~^47.07^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~18971~^~207~^3.76^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~255~^33.55^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~269~^9.38^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18971~^~303~^2.25^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~309~^1.44^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~323~^0.47^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~203~^10.42^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~204~^20.83^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~205~^44.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18972~^~207~^2.79^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~255~^21.13^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~269~^2.08^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~303~^2.49^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~309~^0.96^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~323~^1.49^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~418~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~203~^8.77^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~204~^7.89^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~205~^35.82^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18973~^~207~^1.60^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~255~^45.91^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~269~^1.75^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~303~^3.16^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~309~^1.33^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~323~^1.42^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~19000~^~203~^16.80^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~204~^14.29^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~205~^56.46^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19000~^~207~^2.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~209~^0.53^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~255~^10.28^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~269~^36.40^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~303~^10.28^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~309~^1.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~323~^2.48^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~341~^0.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~342~^2.88^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~343~^0.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~418~^4.20^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~578~^4.20^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19001~^~203~^5.71^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~19001~^~204~^28.57^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~19001~^~205~^61.21^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~207~^1.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~209~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~255~^3.28^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~269~^55.74^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~19001~^~303~^1.60^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~309~^1.53^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~323~^1.77^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~342~^0.59^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~418~^0.47^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19002~^~203~^33.20^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~204~^25.60^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~205~^11.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~ -~19002~^~207~^6.80^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~255~^23.36^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~269~^9.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19002~^~303~^5.42^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~309~^8.11^2^^~12~^~MA~^^^^^^^^^^~08/01/1991~ -~19002~^~323~^0.49^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19002~^~418~^0.99^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19003~^~203~^6.17^12^0.09^~1~^~A~^^^1^5.81^6.94^11^5.96^6.36^~2, 3~^~05/01/2014~ -~19003~^~204~^33.36^12^0.59^~1~^~A~^^^1^29.64^35.91^11^32.04^34.67^~2, 3~^~05/01/2014~ -~19003~^~205~^57.27^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~19003~^~207~^2.13^12^0.07^~1~^~A~^^^1^1.53^2.49^11^1.96^2.29^~2, 3~^~05/01/2014~ -~19003~^~209~^51.36^5^2.26^~1~^~A~^^^1^42.70^54.60^4^45.05^57.66^~2, 3~^~05/01/2014~ -~19003~^~210~^0.27^6^0.06^~1~^~A~^^^1^0.18^0.56^5^0.12^0.42^~1, 2, 3~^~05/01/2014~ -~19003~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2015~ -~19003~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~255~^1.07^12^0.11^~1~^~A~^^^1^0.63^1.77^11^0.81^1.33^~2, 3~^~05/01/2014~ -~19003~^~269~^0.27^6^0.06^~1~^~A~^^^1^0.18^0.56^5^0.12^0.42^~2, 3~^~05/01/2014~ -~19003~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~303~^1.20^12^0.02^~1~^~A~^^^1^1.11^1.35^11^1.15^1.24^~2, 3~^~05/01/2014~ -~19003~^~309~^1.29^12^0.03^~1~^~A~^^^1^1.16^1.52^11^1.22^1.35^~2, 3~^~05/01/2014~ -~19003~^~323~^7.23^6^0.40^~1~^~A~^^^1^5.76^8.12^5^6.19^8.25^~2, 3~^~05/01/2014~ -~19003~^~341~^0.35^6^0.01^~1~^~A~^^^1^0.32^0.38^5^0.32^0.37^~2, 3~^~05/01/2014~ -~19003~^~342~^17.84^6^1.39^~1~^~A~^^^1^12.61^20.38^5^14.26^21.41^~2, 3~^~05/01/2014~ -~19003~^~343~^0.60^6^0.04^~1~^~A~^^^1^0.39^0.69^5^0.49^0.71^~2, 3~^~05/01/2014~ -~19003~^~344~^0.90^6^0.05^~1~^~A~^^^1^0.62^1.02^5^0.74^1.05^~2, 3~^~05/01/2014~ -~19003~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19004~^~203~^7.00^21^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~204~^32.70^22^0.43^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~205~^56.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19004~^~207~^2.80^20^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~255~^1.20^21^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~303~^1.54^21^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~309~^1.06^19^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~203~^5.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~204~^26.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~205~^62.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19005~^~207~^2.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~303~^2.54^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~309~^0.21^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~203~^7.70^15^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~204~^22.60^15^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~205~^65.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19007~^~207~^2.60^15^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~255~^2.00^15^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~269~^4.83^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~19007~^~303~^3.72^13^0.49^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~309~^0.33^14^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~323~^2.69^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19007~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19008~^~203~^5.46^12^0.05^~1~^~A~^^^1^5.12^5.75^11^5.33^5.57^~2, 3~^~02/01/2016~ -~19008~^~204~^36.54^12^0.30^~1~^~A~^^^1^35.18^38.72^11^35.87^37.21^~2, 3~^~02/01/2016~ -~19008~^~205~^54.54^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~207~^2.90^12^0.10^~1~^~A~^^^1^2.34^3.38^11^2.66^3.14^~2, 3~^~02/01/2016~ -~19008~^~209~^50.48^6^0.55^~1~^~A~^^^1^48.60^52.20^5^49.06^51.90^~2, 3~^~02/01/2016~ -~19008~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~213~^3.57^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~ -~19008~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~255~^0.56^12^0.07^~1~^~A~^^^1^0.26^0.92^11^0.40^0.71^~2, 3~^~02/01/2016~ -~19008~^~269~^3.57^5^0.26^~1~^~A~^^^1^2.89^4.30^4^2.84^4.29^~2, 3~^~02/01/2016~ -~19008~^~303~^1.69^12^0.09^~1~^~A~^^^1^1.21^2.48^11^1.47^1.91^~2, 3~^~02/01/2016~ -~19008~^~309~^0.37^12^7.0e-03^~1~^~A~^^^1^0.32^0.41^11^0.35^0.38^~2, 3~^~02/01/2016~ -~19008~^~323~^4.18^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~341~^0.01^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~342~^17.39^6^1.02^~1~^~A~^^^1^12.42^19.37^5^14.75^20.02^~2, 3~^~02/01/2016~ -~19008~^~343~^0.49^6^0.04^~1~^~A~^^^1^0.30^0.61^5^0.37^0.59^~2, 3~^~02/01/2016~ -~19008~^~344~^0.47^6^0.05^~1~^~A~^^^1^0.21^0.59^5^0.32^0.60^~2, 3~^~02/01/2016~ -~19008~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2016~ -~19008~^~346~^0.54^6^0.04^~1~^~A~^^^1^0.33^0.68^5^0.41^0.66^~2, 3~^~02/01/2016~ -~19008~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19008~^~418~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~19008~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19008~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~19009~^~203~^8.50^8^0.12^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~204~^15.64^0^^~12~^~MA~^^^^^^^^^^~05/01/2003~ -~19009~^~205~^71.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~ -~19009~^~207~^2.70^8^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~255~^1.30^8^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~269~^0.61^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19009~^~303~^1.67^8^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~309~^1.78^8^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~323~^1.98^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19009~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19010~^~203~^5.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~204~^13.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~205~^73.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19010~^~207~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~255~^7.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~303~^6.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~309~^0.86^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~203~^1.00^8^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~204~^2.68^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19013~^~205~^82.82^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19013~^~207~^1.20^8^0.14^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~255~^12.30^8^0.67^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~269~^57.58^4^2.50^~8~^~LC~^^^1^52.00^64.00^3^49.60^65.56^~4~^~12/01/2006~ -~19013~^~303~^0.75^2^^~1~^^^^^^^^^^^~06/01/2002~ -~19013~^~309~^0.19^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~323~^0.56^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19014~^~203~^0.10^1^^~13~^~AI~^^^^^^^^^^~02/01/2003~ -~19014~^~204~^3.00^17^0.51^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~205~^85.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19014~^~207~^0.90^17^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~255~^10.20^1^^~13~^~AI~^^^^^^^^^^~02/01/2003~ -~19014~^~269~^49.16^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19014~^~303~^1.01^17^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~309~^0.19^7^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~323~^0.56^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19014~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19015~^~203~^10.10^28^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~204~^19.80^27^0.44^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~205~^64.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19015~^~207~^1.90^25^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~255~^3.90^27^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~269~^28.57^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~303~^2.95^22^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~309~^2.03^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~323~^2.09^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19015~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19016~^~203~^7.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~204~^25.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~205~^62.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19016~^~207~^1.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~255~^3.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~303~^2.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~309~^1.58^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~203~^7.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~204~^16.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~205~^72.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19017~^~207~^1.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~255~^2.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~303~^3.05^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~309~^1.93^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~418~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19018~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19018~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19018~^~205~^85.13^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19018~^~207~^0.13^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~255~^14.74^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~269~^53.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19018~^~303~^0.04^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~309~^0.26^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19020~^~203~^7.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~204~^17.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~205~^67.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19020~^~207~^1.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~255~^6.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~303~^2.56^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~309~^1.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~418~^0.39^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~203~^10.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~204~^15.80^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~205~^64.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19021~^~207~^2.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~255~^7.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~303~^2.13^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~309~^1.86^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~418~^0.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~203~^7.60^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~204~^17.80^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~205~^66.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19022~^~207~^1.80^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~255~^6.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~303~^2.44^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~309~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~418~^0.18^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~203~^5.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~204~^24.90^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~205~^63.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19024~^~207~^1.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~255~^3.60^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~303~^2.33^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~309~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~418~^0.57^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19025~^~203~^8.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~204~^20.18^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~205~^67.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~207~^1.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~209~^1.40^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~255~^2.54^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~269~^62.68^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~303~^0.71^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~309~^1.03^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~323~^3.57^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~341~^0.20^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~342~^2.99^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~343~^0.29^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19026~^~203~^10.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~204~^31.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~205~^53.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19026~^~207~^1.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~255~^3.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~269~^23.74^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~303~^1.45^3^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~309~^1.47^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~323~^4.17^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19027~^~203~^9.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~204~^20.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~205~^62.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19027~^~207~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~255~^5.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~303~^1.94^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~309~^1.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~418~^0.45^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19029~^~203~^2.94^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~204~^44.10^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~205~^50.07^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19029~^~207~^2.64^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~255~^0.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~269~^47.06^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19029~^~309~^0.45^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~323~^9.85^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~342~^0.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~344~^0.11^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~346~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19030~^~203~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~204~^0.02^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~205~^65.10^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~207~^0.06^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~255~^34.82^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~269~^65.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~303~^0.03^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~309~^0.06^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19031~^~203~^17.31^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~204~^25.58^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~205~^51.62^0^^~4~^~NC~^^^^^^^^^^~06/01/1996~ -~19031~^~207~^2.94^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~255~^2.55^0^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~269~^3.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19031~^~303~^2.44^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~309~^2.66^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~323~^5.60^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19031~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19034~^~203~^12.94^4^0.03^~1~^~A~^^^1^12.84^12.99^3^12.82^13.04^~2, 3~^~09/01/2004~ -~19034~^~204~^4.54^4^0.05^~1~^~A~^^^1^4.41^4.68^3^4.36^4.71^~2, 3~^~09/01/2004~ -~19034~^~205~^77.78^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19034~^~207~^1.42^4^0.10^~1~^~A~^^^1^1.25^1.66^3^1.10^1.74^~2, 3~^~09/01/2004~ -~19034~^~209~^54.40^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~210~^0.72^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~211~^0.07^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~212~^0.07^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~214~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~255~^3.32^4^0.30^~1~^~A~^^^1^2.68^3.92^3^2.35^4.29^~2, 3~^~09/01/2004~ -~19034~^~269~^0.87^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~303~^3.19^4^0.04^~1~^~A~^^^1^3.05^3.27^3^3.03^3.34^~2, 3~^~09/01/2004~ -~19034~^~309~^3.08^4^0.02^~1~^~A~^^^1^3.03^3.14^3^2.99^3.15^~2, 3~^~09/01/2004~ -~19034~^~323~^0.29^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~19034~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19035~^~203~^7.29^6^0.12^~1~^~A~^^^1^6.79^7.63^5^6.96^7.62^~2, 3~^~05/01/2006~ -~19035~^~204~^43.55^6^0.66^~1~^~A~^^^1^41.30^45.61^5^41.84^45.26^~2, 3~^~05/01/2006~ -~19035~^~205~^45.06^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~19035~^~207~^2.90^32^0.21^~1~^^^^^^^^^^^~07/01/2007~ -~19035~^~209~^34.40^3^0.94^~1~^~A~^^^1^33.00^36.20^2^30.33^38.46^~2, 3~^~05/01/2006~ -~19035~^~210~^0.31^3^0.02^~1~^~A~^^^1^0.26^0.35^2^0.20^0.41^~2, 3~^~05/01/2006~ -~19035~^~211~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~212~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~255~^1.20^6^0.14^~1~^~A~^^^1^0.76^1.62^5^0.83^1.56^~2, 3~^~05/01/2006~ -~19035~^~269~^0.46^3^0.02^~1~^~A~^^^1^0.41^0.50^2^0.35^0.56^~2, 3~^~05/01/2006~ -~19035~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~303~^1.98^6^0.10^~1~^~A~^^^1^1.76^2.47^5^1.70^2.24^~2, 3~^~05/01/2006~ -~19035~^~309~^3.10^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~19035~^~323~^2.43^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19035~^~341~^0.16^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19035~^~342~^24.88^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19035~^~343~^5.99^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19035~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~19035~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~19035~^~346~^0.25^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19035~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~19035~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19035~^~573~^0.00^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~19035~^~578~^0.00^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~19036~^~203~^9.70^4^0.38^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~204~^3.10^4^0.43^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~205~^80.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19036~^~207~^2.00^4^0.26^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~255~^5.00^4^0.90^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~269~^0.72^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~303~^1.87^3^0.33^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~309~^3.99^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~323~^0.29^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~ -~19036~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19038~^~203~^6.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~204~^7.80^5^0.70^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~205~^80.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19038~^~207~^1.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~255~^3.30^12^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~269~^45.36^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~19038~^~303~^3.91^14^0.14^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~309~^1.24^14^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~323~^0.85^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19038~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19039~^~203~^3.80^5^0.40^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~204~^12.80^5^3.31^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~205~^79.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19039~^~207~^1.50^5^0.20^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~255~^2.80^5^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~269~^53.19^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~19039~^~303~^1.74^3^0.46^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~309~^0.58^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~323~^1.20^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19039~^~418~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19040~^~203~^9.30^10^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~204~^33.20^12^0.90^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~205~^51.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19040~^~207~^3.40^8^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~255~^2.50^13^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~269~^0.79^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~303~^2.24^10^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~309~^2.01^6^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~323~^3.82^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~418~^0.53^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19040~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19040~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19041~^~203~^61.30^20^1.49^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~204~^31.30^16^0.44^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~205~^0.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~207~^5.40^24^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~255~^1.80^24^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~269~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~303~^0.88^23^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~309~^0.56^20^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~323~^0.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19041~^~418~^0.64^5^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19042~^~203~^6.51^13^0.16^~1~^~A~^^^1^5.56^7.25^6^6.11^6.89^~2, 3~^~04/01/2015~ -~19042~^~204~^31.06^13^0.48^~1~^~A~^^^1^26.19^33.08^8^29.95^32.17^~2, 3~^~04/01/2015~ -~19042~^~205~^55.92^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~207~^4.03^13^0.08^~1~^~A~^^^1^3.46^4.97^9^3.84^4.20^~2, 3~^~04/01/2015~ -~19042~^~209~^48.91^7^0.48^~1~^~A~^^^1^46.30^50.70^5^47.66^50.15^~2, 3~^~04/01/2015~ -~19042~^~255~^2.48^13^0.08^~1~^~A~^^^1^2.12^3.48^10^2.30^2.66^~2, 3~^~04/01/2015~ -~19042~^~269~^5.47^3^0.51^~1~^~A~^^^1^4.54^6.32^2^3.26^7.68^~2, 3~^~05/01/2013~ -~19042~^~303~^1.36^13^0.05^~1~^~A~^^^1^1.15^1.80^7^1.23^1.49^~2, 3~^~05/01/2013~ -~19042~^~309~^0.98^13^0.06^~1~^~A~^^^1^0.67^1.30^6^0.83^1.12^~2, 3~^~04/01/2015~ -~19042~^~323~^4.42^7^0.55^~1~^~A~^^^1^2.94^6.31^3^2.67^6.17^~2, 3~^~04/01/2015~ -~19042~^~341~^1.23^7^0.87^~1~^~A~^^^1^0.00^4.91^4^-1.25^3.71^~1, 2, 3~^~04/01/2015~ -~19042~^~342~^3.27^7^0.53^~1~^~A~^^^1^1.07^7.02^4^1.83^4.70^~2, 3~^~04/01/2015~ -~19042~^~343~^0.08^7^0.03^~1~^~A~^^^1^0.00^0.25^4^-7.0e-03^0.15^~1, 2, 3~^~04/01/2015~ -~19042~^~344~^0.01^7^0.01^~1~^~A~^^^1^0.00^0.15^2^-0.03^0.05^~1, 2, 3~^~04/01/2015~ -~19042~^~345~^0.19^7^0.08^~1~^~A~^^^1^0.00^0.41^3^-0.05^0.44^~1, 2, 3~^~04/01/2015~ -~19042~^~346~^0.05^7^0.02^~1~^~A~^^^1^0.00^0.19^4^-0.03^0.12^~1, 2, 3~^~04/01/2015~ -~19042~^~347~^0.14^7^0.10^~1~^~A~^^^1^0.00^0.67^4^-0.14^0.41^~1, 2, 3~^~04/01/2015~ -~19042~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~08/01/1991~ -~19042~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19042~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~19043~^~203~^8.10^39^0.20^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~204~^33.90^39^0.47^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~205~^51.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19043~^~207~^4.70^39^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~255~^1.80^39^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~303~^1.60^40^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~309~^0.98^32^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~418~^1.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19045~^~203~^4.56^4^0.10^~1~^~A~^^^1^4.31^4.81^3^4.22^4.89^~2, 3~^~03/01/2008~ -~19045~^~204~^26.14^4^0.27^~1~^~A~^^^1^25.48^26.67^3^25.28^27.00^~2, 3~^~03/01/2008~ -~19045~^~205~^64.76^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19045~^~207~^2.31^4^0.15^~1~^~A~^^^1^1.84^2.53^3^1.80^2.81^~2, 3~^~03/01/2008~ -~19045~^~210~^0.39^4^0.15^~1~^~A~^^^1^0.07^0.79^3^-0.08^0.87^~1, 2, 3~^~03/01/2008~ -~19045~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~212~^0.16^4^0.05^~1~^~A~^^^1^0.07^0.26^3^-2.0e-03^0.33^~1, 2, 3~^~03/01/2008~ -~19045~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~214~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~255~^2.22^4^0.07^~1~^~A~^^^1^2.05^2.42^3^1.98^2.46^~2, 3~^~03/01/2008~ -~19045~^~269~^0.63^4^0.19^~1~^~A~^^^1^0.22^1.11^3^8.0e-03^1.25^~2, 3~^~03/01/2008~ -~19045~^~303~^1.11^4^0.01^~1~^~A~^^^1^1.09^1.14^3^1.07^1.14^~2, 3~^~03/01/2008~ -~19045~^~309~^0.70^4^0.01^~1~^~A~^^^1^0.67^0.74^3^0.65^0.74^~2, 3~^~03/01/2008~ -~19045~^~323~^2.18^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19045~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19046~^~203~^6.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~204~^37.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~205~^51.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19046~^~207~^3.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~303~^1.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~309~^0.71^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19047~^~203~^10.04^21^0.07^~1~^~A~^^^2^8.85^10.70^7^9.86^10.21^~2, 3~^~07/01/2014~ -~19047~^~204~^2.93^21^0.07^~1~^~A~^^^2^1.90^4.50^6^2.75^3.11^~2, 3~^~12/01/2014~ -~19047~^~205~^80.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19047~^~207~^3.51^21^0.03^~1~^~A~^^^2^2.79^4.45^7^3.43^3.57^~2, 3~^~12/01/2014~ -~19047~^~209~^72.58^18^0.13^~1~^~A~^^^2^68.60^74.20^8^72.27^72.88^~2, 3~^~12/01/2014~ -~19047~^~211~^0.69^9^0.06^~1~^~A~^^^2^0.30^1.10^2^0.39^0.98^~2, 3~^~07/01/2014~ -~19047~^~212~^0.31^9^0.04^~1~^~A~^^^2^0.20^0.60^2^0.13^0.47^~2, 3~^~12/01/2014~ -~19047~^~214~^1.11^9^0.03^~1~^~A~^^^2^0.90^1.30^2^0.98^1.23^~2, 3~^~12/01/2014~ -~19047~^~255~^3.13^21^0.03^~1~^~A~^^^2^1.80^4.57^8^3.04^3.21^~2, 3~^~07/01/2014~ -~19047~^~269~^2.21^9^0.13^~1~^~A~^^^2^1.70^3.20^2^1.61^2.80^~2, 3~^~07/01/2014~ -~19047~^~287~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~303~^4.58^21^0.23^~1~^~A~^^^2^1.17^7.69^5^3.98^5.16^~2, 3~^~12/01/2014~ -~19047~^~309~^1.04^21^0.03^~1~^~A~^^^2^0.82^1.45^2^0.89^1.19^~2, 3~^~12/01/2014~ -~19047~^~323~^0.47^5^0.04^~1~^~A~^^^1^0.27^1.13^2^0.27^0.66^~2, 3~^~07/01/2014~ -~19047~^~341~^0.26^5^0.01^~1~^~A~^^^1^0.21^0.41^3^0.22^0.30^~2, 3~^~07/01/2014~ -~19047~^~342~^0.62^5^0.09^~1~^~A~^^^1^0.19^2.05^2^0.22^1.01^~2, 3~^~07/01/2014~ -~19047~^~343~^0.02^5^3.0e-03^~1~^~A~^^^1^0.00^0.07^2^6.0e-03^0.03^~1, 2, 3~^~07/01/2014~ -~19047~^~344~^0.03^5^3.0e-03^~1~^~A~^^^1^0.00^0.12^2^0.02^0.04^~1, 2, 3~^~07/01/2014~ -~19047~^~345~^1.10^5^0.01^~1~^~A~^^^1^1.00^1.38^3^1.05^1.15^~2, 3~^~07/01/2014~ -~19047~^~346~^0.00^5^4.0e-03^~1~^~A~^^^1^0.00^0.04^2^-0.01^0.02^~1, 2, 3~^~07/01/2014~ -~19047~^~347~^0.32^5^0.01^~1~^~A~^^^1^0.28^0.36^1^0.10^0.53^~2, 3~^~07/01/2014~ -~19047~^~418~^0.00^1^^~4~^^^^^^^^^^^~02/01/2005~ -~19047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19048~^~203~^7.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~204~^16.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~205~^70.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19048~^~207~^2.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~255~^2.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~269~^38.80^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~303~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~309~^0.92^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~323~^0.62^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~203~^9.85^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~204~^16.92^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~205~^66.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~207~^5.01^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~19049~^~255~^1.67^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~19049~^~269~^17.60^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~303~^0.92^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19049~^~309~^0.73^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~323~^0.67^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~418~^0.12^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19050~^~203~^11.10^3^0.64^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~204~^2.60^3^0.62^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~205~^81.30^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~19050~^~207~^1.10^3^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~255~^3.90^3^0.52^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~303~^2.69^3^0.41^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~309~^0.62^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19051~^~203~^8.20^10^0.43^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~204~^2.80^10^0.34^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~205~^81.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19051~^~207~^1.70^10^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~255~^5.80^10^0.42^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~269~^0.89^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~303~^1.49^9^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~309~^3.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~323~^0.62^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19051~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~19052~^~203~^9.00^4^0.69^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~204~^3.50^4^0.40^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~205~^80.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19052~^~207~^1.60^4^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~255~^5.90^4^0.50^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~303~^1.14^4^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~309~^2.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19053~^~203~^7.60^7^0.32^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~204~^3.80^7^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~205~^81.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19053~^~207~^1.20^7^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~255~^5.90^7^0.31^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~303~^1.58^6^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~309~^3.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19056~^~203~^7.10^12^0.04^~1~^~A~^^^1^6.56^7.25^5^6.98^7.21^~2, 3~^~07/01/2014~ -~19056~^~204~^20.68^12^0.34^~1~^~A~^^^1^17.74^22.47^5^19.80^21.55^~2, 3~^~07/01/2014~ -~19056~^~205~^67.78^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~207~^1.79^12^0.02^~1~^~A~^^^1^1.34^2.28^8^1.72^1.86^~2, 3~^~07/01/2014~ -~19056~^~209~^62.53^7^0.46^~1~^~A~^^^1^59.90^64.40^3^61.13^63.93^~2, 3~^~07/01/2014~ -~19056~^~210~^0.78^7^0.03^~1~^~A~^^^1^0.70^0.90^3^0.67^0.87^~2, 3~^~07/01/2014~ -~19056~^~211~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~212~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19056~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19056~^~255~^2.64^12^0.08^~1~^~A~^^^1^2.07^4.15^7^2.44^2.84^~2, 3~^~07/01/2014~ -~19056~^~269~^0.78^7^0.03^~1~^~A~^^^1^0.70^0.90^3^0.67^0.87^~2, 3~^~07/01/2014~ -~19056~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~19056~^~303~^1.52^12^0.03^~1~^~A~^^^1^1.38^1.85^5^1.43^1.60^~2, 3~^~07/01/2014~ -~19056~^~309~^1.38^12^0.01^~1~^~A~^^^1^0.98^1.49^6^1.34^1.42^~2, 3~^~07/01/2014~ -~19056~^~323~^3.53^7^0.28^~1~^~A~^^^1^2.38^7.19^3^2.56^4.48^~2, 3~^~07/01/2014~ -~19056~^~341~^0.11^7^7.0e-03^~1~^~A~^^^1^0.05^0.14^2^0.08^0.14^~2, 3~^~07/01/2014~ -~19056~^~342~^9.14^7^0.50^~1~^~A~^^^1^4.20^10.76^3^7.50^10.77^~2, 3~^~07/01/2014~ -~19056~^~343~^0.36^7^0.01^~1~^~A~^^^1^0.09^0.44^3^0.30^0.40^~2, 3~^~07/01/2014~ -~19056~^~344~^0.49^7^0.03^~1~^~A~^^^1^0.20^0.58^2^0.35^0.62^~2, 3~^~07/01/2014~ -~19056~^~345~^0.42^7^0.02^~1~^~A~^^^1^0.22^0.49^4^0.35^0.48^~2, 3~^~07/01/2014~ -~19056~^~346~^1.15^7^0.04^~1~^~A~^^^1^0.82^1.43^3^0.99^1.31^~2, 3~^~07/01/2014~ -~19056~^~347~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~418~^0.36^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19057~^~203~^7.36^12^0.03^~1~^~A~^^^1^6.88^7.75^5^7.26^7.45^~2, 3~^~07/01/2014~ -~19057~^~204~^27.42^12^0.58^~1~^~A~^^^1^23.05^29.73^5^25.91^28.92^~2, 3~^~07/01/2014~ -~19057~^~205~^60.81^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19057~^~207~^2.75^12^0.03^~1~^~A~^^^1^2.48^2.90^5^2.65^2.84^~2, 3~^~08/01/2014~ -~19057~^~209~^53.20^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~19057~^~255~^1.66^12^0.03^~1~^~A~^^^1^1.49^2.50^5^1.56^1.75^~2, 3~^~07/01/2014~ -~19057~^~269~^2.59^6^0.01^~1~^~A~^^^1^2.02^2.63^3^2.53^2.64^~2, 3~^~07/01/2014~ -~19057~^~303~^1.16^12^0.03^~1~^~A~^^^1^1.07^1.33^5^1.08^1.23^~2, 3~^~07/01/2014~ -~19057~^~309~^1.38^12^0.01^~1~^~A~^^^1^0.92^1.45^5^1.32^1.42^~2, 3~^~07/01/2014~ -~19057~^~323~^6.24^6^0.10^~1~^~A~^^^1^4.01^6.49^2^5.81^6.67^~2, 3~^~07/01/2014~ -~19057~^~341~^0.23^6^0.05^~1~^~A~^^^1^0.16^0.34^2^4.0e-03^0.45^~2, 3~^~07/01/2014~ -~19057~^~342~^13.58^6^0.57^~1~^~A~^^^1^8.31^14.56^2^11.10^16.06^~2, 3~^~07/01/2014~ -~19057~^~343~^0.43^6^0.07^~1~^~A~^^^1^0.28^0.53^2^0.10^0.75^~2, 3~^~07/01/2014~ -~19057~^~344~^0.80^6^0.03^~1~^~A~^^^1^0.51^0.88^2^0.66^0.94^~2, 3~^~07/01/2014~ -~19057~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~346~^0.31^6^0.15^~1~^~A~^^^1^0.00^0.55^2^-0.36^0.98^~1, 2, 3~^~05/01/2014~ -~19057~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19057~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~19058~^~203~^7.19^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~204~^24.63^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~205~^62.74^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~19058~^~207~^2.30^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~209~^54.80^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~210~^1.07^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~211~^0.44^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~212~^0.34^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~213~^1.11^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~255~^3.14^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~269~^3.03^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~303~^1.38^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~309~^1.43^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19059~^~203~^13.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~204~^29.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~205~^44.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19059~^~207~^2.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~255~^9.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~303~^3.05^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~309~^3.22^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~203~^6.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~204~^17.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~205~^65.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19061~^~207~^2.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~255~^9.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~303~^2.64^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~309~^1.17^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~418~^0.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~203~^14.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~204~^31.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~205~^44.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19062~^~207~^2.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~209~^2.04^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~255~^6.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~269~^23.88^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~303~^3.39^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~309~^3.14^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~323~^8.40^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~341~^0.25^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~342~^2.02^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~343~^0.10^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~345~^0.02^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~346~^0.04^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~19063~^~203~^7.90^13^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~204~^24.20^13^0.36^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~205~^63.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19063~^~207~^3.10^13^0.23^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~255~^1.60^13^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~303~^2.02^13^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~309~^1.27^13^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19064~^~203~^1.59^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~204~^3.31^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~205~^87.73^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~207~^0.68^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~209~^15.30^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~210~^39.35^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~211~^7.85^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~212~^0.40^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~213~^2.18^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~214~^6.54^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~255~^6.69^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~269~^56.32^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~303~^0.80^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~309~^0.40^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~323~^0.65^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~342~^7.42^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~343~^3.18^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19065~^~203~^4.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~204~^26.93^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~205~^59.51^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~19065~^~207~^1.23^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~255~^8.20^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~269~^48.34^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~303~^1.27^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~203~^2.97^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~204~^1.70^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~205~^79.38^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~207~^0.79^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~255~^15.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~303~^0.55^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19068~^~203~^2.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~204~^7.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~19068~^~205~^80.89^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19068~^~207~^1.31^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19068~^~255~^8.30^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~19068~^~269~^48.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~303~^0.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~309~^0.49^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~418~^0.06^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19069~^~203~^5.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~204~^18.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~205~^72.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~207~^1.57^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~255~^1.23^0^^~4~^~O~^^^^^^^^^^~03/01/2006~ -~19069~^~269~^45.90^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19069~^~303~^0.79^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~309~^1.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~323~^1.72^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19069~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19070~^~203~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~204~^3.30^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~205~^90.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19070~^~207~^1.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~255~^5.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~269~^80.46^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19070~^~303~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~309~^0.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~323~^0.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19071~^~203~^8.15^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~204~^31.36^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~205~^56.29^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19071~^~207~^2.66^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~255~^1.54^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~269~^34.11^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~303~^1.29^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~309~^3.53^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~323~^1.57^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~418~^0.28^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19074~^~203~^4.60^3^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~204~^8.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~205~^77.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19074~^~207~^1.80^3^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~255~^8.50^5^0.34^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~269~^65.50^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19074~^~303~^0.14^41^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~309~^0.44^42^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~323~^0.46^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19074~^~418~^0.30^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19075~^~203~^6.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~204~^21.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~205~^63.81^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~207~^1.46^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~255~^6.79^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~269~^56.92^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~303~^1.09^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19076~^~203~^1.59^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~204~^3.31^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~19076~^~205~^87.73^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19076~^~207~^0.68^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~255~^6.69^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~269~^56.32^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~19076~^~303~^0.80^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~309~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~323~^0.65^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19076~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19076~^~342~^7.42^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19076~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19076~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19077~^~203~^12.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~204~^47.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~205~^36.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19077~^~207~^3.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~255~^0.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/1997~ -~19077~^~303~^4.15^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~309~^3.68^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19078~^~203~^14.32^3^0.18^~1~^~A~^^^1^14.07^14.67^2^13.54^15.09^~2, 3~^~08/01/2014~ -~19078~^~204~^52.31^3^0.33^~1~^~A~^^^1^51.89^52.98^2^50.86^53.76^~2, 3~^~02/01/2003~ -~19078~^~205~^28.42^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~207~^3.60^3^0.14^~1~^~A~^^^1^3.33^3.83^2^2.97^4.23^~2, 3~^~02/01/2003~ -~19078~^~210~^0.91^3^0.17^~1~^~A~^^^1^0.56^1.09^2^0.15^1.67^~2, 3~^~08/01/2014~ -~19078~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19078~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19078~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19078~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19078~^~255~^1.34^3^0.09^~1~^~A~^^^1^1.22^1.52^2^0.94^1.73^~2, 3~^~02/01/2003~ -~19078~^~269~^0.91^3^0.17^~1~^~A~^^^1^0.56^1.09^2^0.15^1.67^~2, 3~^~02/01/2003~ -~19078~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2014~ -~19078~^~303~^17.40^3^2.85^~1~^~A~^^^1^12.00^21.70^2^5.12^29.67^~2, 3~^~02/01/2003~ -~19078~^~309~^9.63^3^1.01^~1~^~A~^^^1^7.90^11.40^2^5.28^13.98^~2, 3~^~02/01/2003~ -~19078~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~342~^5.83^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~19078~^~418~^0.00^1^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19079~^~203~^5.87^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~204~^27.00^2^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19079~^~205~^63.94^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19079~^~207~^1.28^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~255~^1.91^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19079~^~269~^62.36^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19079~^~303~^0.14^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~309~^0.70^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~323~^1.11^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~418~^0.65^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19079~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~203~^4.20^5^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~204~^30.00^9^0.74^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~205~^63.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19080~^~207~^1.20^7^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~255~^0.70^8^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~269~^54.50^4^1.38^~11~^~JO~^^^2^52.10^56.90^3^50.09^58.91^~4~^~05/01/2009~ -~19080~^~303~^3.13^5^0.28^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~309~^1.62^3^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19080~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19081~^~203~^3.90^4^0.28^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~204~^34.20^4^1.37^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~205~^60.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19081~^~207~^1.00^3^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~255~^0.50^3^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~269~^51.48^0^^~4~^~BFCN~^~19080~^^^^^^^^^~05/01/2009~ -~19081~^~303~^2.76^6^0.36^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~309~^1.50^6^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~323~^0.26^0^^~4~^~BFFN~^~19080~^^^^^^^^^~02/01/2003~ -~19081~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19083~^~203~^2.20^5^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~204~^9.30^5^1.30^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~205~^80.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19083~^~207~^0.40^6^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~255~^7.70^6^0.67^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~269~^71.42^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~303~^1.56^4^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~309~^0.45^3^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~323~^0.13^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19083~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19084~^~203~^11.97^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~204~^37.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~205~^46.85^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19084~^~207~^2.79^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19084~^~255~^1.26^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19084~^~269~^37.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19084~^~303~^2.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19085~^~203~^2.20^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~204~^29.05^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~205~^67.10^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19085~^~207~^0.90^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~255~^0.75^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~269~^67.10^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19085~^~303~^0.08^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19085~^~309~^0.11^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~323~^0.68^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~342~^0.03^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~418~^0.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~203~^18.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~204~^29.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~205~^46.88^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19086~^~207~^2.35^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~255~^2.67^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~269~^38.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~303~^1.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~309~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~323~^1.36^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~418~^0.20^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19087~^~203~^5.87^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~204~^32.09^5^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~205~^59.24^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19087~^~207~^1.50^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~255~^1.30^5^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~269~^59.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19087~^~303~^0.24^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~309~^0.74^3^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~19087~^~323~^0.96^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~418~^0.56^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19088~^~203~^4.78^3^0.04^~9~^~MC~^^^1^4.69^4.84^2^4.58^4.98^~4~^~05/01/2004~ -~19088~^~204~^4.83^3^0.37^~9~^~MC~^^^1^4.35^5.56^2^3.24^6.42^~4~^~05/01/2004~ -~19088~^~205~^29.46^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19088~^~207~^1.07^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~255~^59.85^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~19088~^~269~^22.12^3^0.51^~9~^~MC~^^^1^21.11^22.78^2^19.91^24.32^~4~^~06/01/2005~ -~19088~^~303~^0.19^3^0.07^~9~^~MC~^^^1^0.06^0.31^2^-0.11^0.50^~4~^~05/01/2004~ -~19088~^~309~^0.73^18^0.35^~1~^~A~^^^7^0.32^2.85^6^-0.13^1.59^~4~^~03/01/2003~ -~19088~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~418~^0.47^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19089~^~203~^3.50^4^0.41^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~204~^16.20^11^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~205~^22.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19089~^~207~^0.81^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~255~^57.20^7^0.55^~1~^^^^^^^^^^^~03/01/2002~ -~19089~^~269~^20.65^2^^~8~^~LC~^^^1^19.81^21.50^1^^^^~03/01/2009~ -~19089~^~303~^0.34^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19089~^~309~^0.47^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~323~^0.51^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~418~^0.39^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19090~^~203~^4.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~204~^13.00^11^0.50^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~205~^22.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19090~^~207~^0.90^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~255~^59.80^11^0.36^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~269~^21.16^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19090~^~303~^0.21^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~309~^0.52^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~323~^0.61^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19090~^~418~^0.50^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19090~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19091~^~203~^2.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~204~^7.17^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~205~^80.99^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~207~^0.14^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~255~^9.03^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~269~^63.78^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~303~^0.92^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~203~^2.30^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~204~^2.64^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~205~^79.37^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~207~^0.57^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~255~^15.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~269~^51.35^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~303~^0.28^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~203~^8.51^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~204~^30.57^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~205~^58.01^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~207~^1.61^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~255~^0.94^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~269~^53.96^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~303~^0.91^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19094~^~203~^4.53^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~204~^4.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~205~^22.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19094~^~207~^0.62^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~255~^68.05^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~269~^22.78^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~19094~^~303~^0.38^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~309~^0.47^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~323~^0.23^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~418~^0.36^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19095~^~203~^3.50^152^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~204~^11.00^291^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~205~^23.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19095~^~207~^0.90^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~255~^61.00^50^0.36^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~269~^21.22^3^0.31^~11~^~JO~^^^1^20.59^21.54^2^19.85^22.58^~4~^~03/01/2006~ -~19095~^~303~^0.09^35^7.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~309~^0.69^14^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~323~^0.30^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~418~^0.39^3^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19096~^~203~^4.90^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~204~^2.60^67^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~205~^21.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19096~^~207~^1.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~255~^69.60^45^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~269~^18.69^0^^~4~^~BFCN~^~19088~^^^^^^^^^~03/01/2009~ -~19096~^~303~^0.06^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~309~^0.53^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~323~^0.06^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~ -~19096~^~418~^0.50^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19097~^~203~^1.10^41^0.33^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~204~^2.00^23^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~205~^30.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19097~^~207~^0.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~255~^66.10^40^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~269~^24.32^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19097~^~303~^0.14^6^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~309~^0.48^10^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~418~^0.13^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19098~^~203~^8.78^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~204~^23.98^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~205~^62.68^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~207~^1.91^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~255~^2.30^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~269~^47.19^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19098~^~303~^1.20^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~309~^1.12^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~323~^2.70^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~418~^0.18^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19099~^~203~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~204~^0.02^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~205~^93.18^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~207~^0.06^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~255~^6.74^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~269~^88.90^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~303~^0.01^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~309~^0.04^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~323~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~418~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19100~^~203~^2.39^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~204~^10.41^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~205~^76.70^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19100~^~207~^0.70^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~255~^9.81^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~269~^73.12^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~303~^1.77^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~309~^1.11^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~323~^0.18^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~418~^0.09^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~203~^4.38^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~204~^18.93^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~205~^68.15^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19101~^~207~^0.87^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~255~^7.66^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~269~^63.37^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~303~^1.97^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~309~^1.43^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~323~^0.26^0^^~4~^~RC~^^^^^^^^^^~08/01/2003~ -~19101~^~418~^0.07^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19102~^~203~^3.78^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~204~^6.59^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~205~^77.75^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~207~^0.71^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~255~^10.93^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~269~^73.36^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~303~^0.22^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~309~^0.48^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~323~^1.01^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~418~^0.14^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~19102~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19103~^~203~^1.05^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~204~^5.45^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~205~^82.15^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~207~^0.34^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~255~^10.85^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~269~^79.77^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~303~^0.02^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~309~^0.15^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~323~^0.14^0^^~4~^~RC~^^^^^^^^^^~08/01/2003~ -~19103~^~418~^0.08^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~203~^3.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~204~^13.69^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~205~^74.61^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~207~^0.54^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~255~^7.99^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~269~^71.00^0^^~4~^~RC~^^^^^^^^^^~07/01/2007~ -~19104~^~303~^0.41^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~309~^0.56^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~323~^0.22^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~418~^0.07^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19105~^~203~^9.70^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~204~^34.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~205~^53.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~207~^1.80^3^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19105~^~255~^1.90^3^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19105~^~269~^43.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19105~^~303~^1.10^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19106~^~203~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19106~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19106~^~205~^98.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19106~^~207~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19106~^~255~^1.00^8^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~269~^58.97^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19106~^~303~^0.40^8^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~309~^0.00^8^4.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19107~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19107~^~204~^0.20^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19107~^~205~^98.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~19107~^~207~^0.50^9^0.40^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~255~^1.30^6^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~269~^62.90^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19107~^~303~^0.30^42^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~309~^0.01^42^5.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19107~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19108~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19108~^~204~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~205~^93.55^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19108~^~207~^0.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~255~^6.30^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19108~^~269~^70.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19108~^~303~^0.13^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~309~^0.05^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19109~^~203~^6.51^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~204~^25.99^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~205~^64.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19109~^~207~^1.28^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~209~^10.60^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~210~^40.04^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19109~^~211~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19109~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~213~^8.21^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~214~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~255~^1.63^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~269~^48.68^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19109~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~309~^0.09^1^^~9~^~MC~^^^^^^^^^^~02/01/2004~ -~19109~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~342~^4.13^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~343~^0.22^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~344~^0.14^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~346~^0.11^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~418~^0.56^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19110~^~203~^6.62^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~204~^26.58^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~205~^64.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19110~^~207~^1.29^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~255~^1.17^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~269~^52.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~303~^1.06^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~309~^0.49^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19111~^~203~^5.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~204~^21.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~205~^64.80^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19111~^~207~^1.21^3^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19111~^~255~^6.99^0^^~4~^~O~^^^^^^^^^^~03/01/2006~ -~19111~^~269~^54.00^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19111~^~303~^0.63^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~309~^0.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~323~^0.93^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~418~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19112~^~203~^2.56^3^0.17^~8~^~LC~^^^1^2.22^2.82^2^1.80^3.31^~4~^~03/01/2002~ -~19112~^~204~^2.32^3^0.15^~8~^~LC~^^^1^2.11^2.63^2^1.64^3.00^~4~^~03/01/2002~ -~19112~^~205~^79.16^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19112~^~207~^0.96^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19112~^~255~^15.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19112~^~269~^39.64^3^0.18^~8~^~LC~^^^1^39.44^40.00^2^38.85^40.42^~4~^~03/01/2002~ -~19112~^~303~^0.51^1^^~8~^~LC~^^^^^^^^^^~03/01/2002~ -~19113~^~203~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~204~^0.09^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~205~^72.43^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~207~^0.76^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~255~^26.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~269~^72.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~303~^0.09^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~309~^0.22^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19114~^~203~^5.00^2^^~9~^~MC~^^^1^4.69^5.30^1^^^^~05/01/2004~ -~19114~^~204~^7.19^2^^~9~^~MC~^^^1^7.09^7.28^1^^^^~05/01/2004~ -~19114~^~205~^25.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19114~^~207~^0.69^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~255~^61.43^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~19114~^~269~^24.71^2^^~9~^~MC~^^^1^24.04^25.38^1^^^^~03/01/2009~ -~19114~^~303~^0.69^2^^~9~^~MC~^^^1^0.52^0.85^1^^^^~05/01/2004~ -~19114~^~309~^0.43^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~323~^0.20^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~418~^0.14^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19115~^~203~^8.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~204~^23.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~205~^62.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19115~^~207~^1.60^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~255~^4.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~269~^52.10^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~19115~^~303~^1.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~309~^1.11^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~323~^7.75^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19115~^~418~^0.36^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19115~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19116~^~203~^1.80^5^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~204~^0.20^5^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~205~^81.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19116~^~207~^0.30^5^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~255~^16.40^6^0.37^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~269~^57.56^3^4.87^~8~^~LC~^^^1^50.00^66.67^2^36.58^78.52^~4~^~12/01/2006~ -~19116~^~303~^0.23^10^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~309~^0.04^10^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19117~^~203~^12.49^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~204~^21.52^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~205~^60.49^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19117~^~207~^1.83^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~255~^3.67^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~303~^4.53^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~309~^4.32^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~418~^0.04^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19118~^~203~^7.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~204~^23.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~205~^65.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~207~^1.50^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~255~^2.30^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~19118~^~269~^46.20^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19118~^~303~^0.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~309~^1.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~323~^2.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~418~^0.20^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19119~^~203~^7.50^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~204~^27.50^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~205~^60.40^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19119~^~207~^1.70^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19119~^~255~^2.90^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19119~^~269~^52.50^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~303~^0.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19120~^~203~^7.65^9^0.28^~1~^~A~^^^^5.41^8.10^^^^^~02/01/2003~ -~19120~^~204~^29.66^9^0.23^~1~^~A~^^^^28.18^30.38^^^^^~02/01/2003~ -~19120~^~205~^59.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19120~^~207~^1.78^9^0.03^~1~^~A~^^^^1.50^1.85^^^^^~02/01/2003~ -~19120~^~255~^1.50^9^0.05^~1~^~A~^^^^1.23^1.74^^^^^~01/01/2008~ -~19120~^~269~^51.50^9^0.49^~1~^~A~^^^^50.07^55.09^^^^^~08/01/2008~ -~19120~^~303~^2.35^27^1.04^~1~^~A~^^^1^1.30^3.39^1^-10.90^15.59^~4~^~02/01/2003~ -~19120~^~309~^2.30^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~323~^0.51^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~342~^0.92^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~418~^0.75^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19120~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19120~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19121~^~203~^2.76^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~204~^1.70^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~205~^19.74^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~207~^1.26^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~255~^74.52^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~303~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~309~^0.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~418~^0.30^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19122~^~203~^2.90^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~204~^1.73^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~205~^18.43^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~207~^1.03^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~255~^75.90^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~303~^0.05^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~309~^0.35^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~418~^0.25^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19123~^~203~^3.15^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~204~^1.92^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~205~^18.89^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~207~^1.41^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~255~^74.59^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~303~^0.40^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~309~^0.43^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~418~^0.31^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19124~^~203~^3.64^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~204~^15.59^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~205~^77.41^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19124~^~207~^1.34^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~255~^1.59^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~269~^69.40^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19124~^~303~^2.18^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~309~^1.26^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~323~^0.36^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19124~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~ -~19124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19125~^~203~^5.41^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~204~^29.73^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~205~^62.36^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19125~^~207~^1.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~255~^1.07^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~269~^54.05^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19125~^~303~^4.38^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19125~^~309~^1.06^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~323~^4.96^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~418~^0.27^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19126~^~203~^13.10^5^0.91^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~204~^33.50^5^0.62^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~205~^49.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19126~^~207~^1.80^3^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~255~^1.90^3^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~269~^37.59^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~19126~^~303~^1.31^5^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~309~^2.60^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~323~^2.40^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~418~^0.53^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19127~^~203~^4.10^8^0.29^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~204~^14.80^7^1.15^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~205~^68.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~207~^1.50^7^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~255~^11.20^7^2.28^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~269~^62.22^0^^~8~^~LC~^^^^^^^^^^~07/01/2007~ -~19127~^~303~^1.71^4^0.32^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~309~^1.25^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~323~^0.29^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~418~^0.37^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19128~^~203~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~12/01/2006~ -~19128~^~204~^0.00^2^^~8~^~LC~^^^1^0.00^0.00^1^^^^~12/01/2006~ -~19128~^~205~^44.55^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19128~^~207~^0.55^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~255~^54.90^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~269~^32.80^2^^~8~^~LC~^^^1^32.79^32.81^1^^^^~05/01/2007~ -~19128~^~303~^0.03^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~309~^0.20^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19129~^~203~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19129~^~204~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19129~^~205~^61.47^1^^~8~^~LC~^^^1^61.47^61.47^0^^^^~12/01/2006~ -~19129~^~207~^0.20^2^^~1~^^^^^^^^^^^~12/01/2006~ -~19129~^~255~^37.98^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~269~^21.47^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~303~^0.03^18^0.01^~1~^~A~^^^7^0.00^0.12^17^8.0e-03^0.05^~4~^~02/01/2003~ -~19129~^~309~^0.08^18^0.01^~1~^~A~^^^7^0.00^0.21^17^0.04^0.11^~4~^~02/01/2003~ -~19129~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19129~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19130~^~203~^12.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~204~^38.46^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~205~^44.89^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19130~^~207~^2.57^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19130~^~255~^1.26^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19130~^~269~^38.46^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19130~^~303~^1.85^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19132~^~203~^9.00^13^0.31^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~204~^34.40^14^0.79^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~205~^53.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~207~^1.70^9^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~255~^1.50^9^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~269~^43.90^0^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~19132~^~303~^1.63^12^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~309~^1.34^6^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~323~^3.14^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~418~^0.67^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19134~^~203~^7.64^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~204~^29.37^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~205~^59.67^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~207~^1.78^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~255~^1.52^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~269~^51.06^0^^~4~^~FLC~^^^^^^^^^^~07/01/2008~ -~19134~^~303~^2.65^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~309~^2.29^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~323~^0.50^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~342~^0.91^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~418~^0.80^0^^~4~^~FLC~^^^^^^^^^^~07/01/2008~ -~19134~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~578~^0.05^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19135~^~203~^4.01^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19135~^~204~^17.23^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~205~^71.17^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19135~^~207~^1.30^4^0.02^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19135~^~255~^6.30^5^0.11^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19135~^~269~^59.69^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19135~^~303~^0.49^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~309~^0.69^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~323~^0.89^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~418~^0.18^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19136~^~203~^3.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~204~^30.37^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~19136~^~205~^63.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19136~^~207~^1.20^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~255~^1.57^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~269~^59.89^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~303~^0.57^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~309~^0.17^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~323~^0.58^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~418~^0.21^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19137~^~203~^0.20^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~204~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~205~^66.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19137~^~207~^0.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~255~^33.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19137~^~269~^27.38^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~ -~19137~^~303~^0.28^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~309~^0.06^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~323~^0.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19138~^~203~^6.21^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~204~^33.76^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~205~^44.88^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~207~^1.44^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~255~^13.47^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~269~^38.31^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~303~^1.75^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~309~^1.55^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~323~^1.82^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~418~^0.49^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19139~^~203~^4.44^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~204~^26.15^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~205~^65.96^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~207~^2.07^0^^~9~^~MC~^^^^^^^^^^~03/01/1996~ -~19139~^~255~^1.27^0^^~9~^~MC~^^^^^^^^^^~03/01/1996~ -~19139~^~269~^53.07^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~303~^2.91^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19140~^~203~^9.57^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~204~^26.13^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~205~^60.48^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~207~^1.44^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~255~^2.48^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~269~^50.75^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~303~^1.16^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~309~^1.76^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~323~^2.85^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~418~^0.32^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~203~^4.33^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~204~^21.13^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~205~^71.19^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~207~^1.63^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~19141~^~255~^1.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~269~^63.68^1^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~19141~^~303~^1.11^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~309~^1.61^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~323~^0.36^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~341~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~342~^0.64^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~418~^0.53^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19142~^~203~^4.60^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~204~^26.60^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~205~^58.88^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19142~^~207~^0.87^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~255~^9.05^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~269~^46.19^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19142~^~303~^2.09^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~309~^1.10^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~323~^0.19^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19143~^~203~^10.22^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~204~^33.21^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~205~^54.34^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~207~^1.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~255~^0.45^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~269~^47.22^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~303~^1.39^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~309~^0.93^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~323~^3.17^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~418~^0.33^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19144~^~203~^2.50^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~204~^19.33^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~19144~^~205~^70.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19144~^~207~^1.10^3^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~19144~^~255~^6.10^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~269~^51.90^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19144~^~303~^0.34^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19144~^~309~^0.99^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~418~^0.29^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19144~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19145~^~203~^5.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~204~^26.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~205~^67.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~207~^1.35^3^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~19145~^~255~^0.65^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~269~^55.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~303~^0.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19146~^~203~^4.78^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~204~^23.36^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~205~^68.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~207~^1.78^0^^~4~^~BFZN~^~19120~^^^^^^^^^~02/01/2006~ -~19146~^~255~^1.50^0^^~4~^~BFZN~^~19120~^^^^^^^^^~02/01/2006~ -~19146~^~269~^62.54^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~303~^1.23^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19147~^~203~^15.50^4^1.15^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~204~^33.70^4^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~205~^47.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19147~^~207~^1.90^3^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~255~^1.60^4^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~269~^42.22^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19147~^~303~^0.97^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~309~^3.94^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~323~^4.10^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19148~^~203~^7.57^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~204~^18.98^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~205~^71.24^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19148~^~207~^1.51^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~255~^0.70^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~269~^51.33^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19148~^~303~^1.22^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~309~^0.87^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~323~^2.56^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~418~^0.01^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19149~^~203~^4.40^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~204~^17.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~205~^71.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~207~^1.50^3^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19149~^~255~^6.40^3^0.78^~1~^^^^^^^^^^^~08/01/1991~ -~19149~^~269~^59.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~303~^1.20^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19150~^~203~^10.24^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~204~^30.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~205~^55.36^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~207~^2.28^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~255~^1.44^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~269~^47.17^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~303~^1.21^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~309~^1.28^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~19150~^~418~^0.26^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~203~^12.46^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~204~^24.77^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~205~^59.86^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~207~^1.81^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~255~^1.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~269~^53.25^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19151~^~303~^0.49^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~309~^1.15^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~323~^0.99^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19151~^~418~^0.11^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19152~^~203~^5.08^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~204~^20.93^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~205~^67.95^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~207~^1.27^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~255~^4.60^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~269~^63.93^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19152~^~303~^0.42^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~309~^0.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~323~^1.10^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~418~^0.33^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19153~^~203~^1.67^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~204~^11.90^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~205~^79.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19153~^~207~^0.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19153~^~255~^6.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19153~^~269~^66.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~303~^0.57^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19154~^~203~^11.60^3^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~204~^33.30^3^1.77^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~205~^50.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19154~^~207~^2.60^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~255~^2.20^3^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~269~^31.17^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~303~^4.27^3^0.26^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~309~^3.76^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~323~^0.16^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19155~^~203~^7.53^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~204~^23.85^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~205~^61.51^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19155~^~207~^1.57^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~255~^5.55^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~269~^50.47^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19155~^~303~^0.72^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~309~^2.50^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~323~^1.50^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~341~^0.03^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~342~^3.95^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~343~^0.42^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~346~^0.02^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~418~^0.16^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19156~^~203~^0.41^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~204~^8.21^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~205~^82.57^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~207~^0.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~255~^8.51^0^^~4~^~O~^^^^^^^^^^~02/01/2006~ -~19156~^~269~^58.12^1^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~19156~^~303~^0.01^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~309~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~323~^0.33^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19157~^~203~^4.78^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~204~^23.36^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~205~^68.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~207~^1.40^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19157~^~255~^1.19^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19157~^~269~^62.54^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~303~^1.23^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19159~^~203~^2.60^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~204~^12.75^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~205~^77.77^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19159~^~207~^1.07^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~255~^5.80^7^0.17^~1~^^^^^^^^^^^~12/01/2005~ -~19159~^~269~^66.89^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~303~^0.67^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~309~^0.55^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~323~^0.98^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~418~^0.16^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19160~^~203~^4.91^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~204~^24.85^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~205~^64.80^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19160~^~207~^1.21^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~19160~^~255~^4.23^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~19160~^~269~^48.25^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19160~^~303~^0.81^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~309~^1.06^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~323~^0.74^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~418~^0.33^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19161~^~203~^9.18^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~204~^32.67^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~205~^54.14^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~19161~^~207~^2.18^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19161~^~255~^1.82^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19161~^~269~^36.13^1^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~19161~^~303~^1.32^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~309~^1.61^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~323~^3.42^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~418~^0.26^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19162~^~203~^8.04^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~204~^23.68^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~205~^63.23^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~207~^1.66^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~255~^3.04^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~269~^48.86^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~303~^1.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~309~^0.43^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~323~^1.27^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~418~^0.37^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19162~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19163~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~205~^96.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19163~^~207~^0.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~255~^2.60^3^0.30^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~269~^66.08^3^7.20^~8~^~LC~^^^1^51.81^75.00^2^35.06^97.09^~4~^~05/01/2009~ -~19163~^~303~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~309~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19164~^~203~^5.54^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~204~^32.40^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~205~^60.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19164~^~207~^0.67^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~255~^0.90^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~269~^47.56^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~303~^2.13^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~309~^0.01^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19165~^~203~^19.60^8^0.52^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~204~^13.70^8^0.49^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~205~^57.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19165~^~207~^5.80^7^0.55^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~255~^3.00^8^0.30^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~269~^1.75^0^^~4~^~BFCN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~303~^13.86^9^1.60^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~309~^6.81^9^0.25^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~323~^0.10^0^^~4~^~BFFN~^~19078~^^^^^^^^^~02/01/2003~ -~19165~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19166~^~203~^18.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~204~^13.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~205~^58.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19166~^~207~^7.80^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~255~^2.70^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~269~^1.76^0^^~4~^~BFCN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~303~^15.52^3^4.21^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~309~^6.37^3^0.25^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~323~^0.10^0^^~4~^~BFFN~^~19078~^^^^^^^^^~02/01/2003~ -~19166~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19168~^~203~^5.02^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~204~^4.58^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~205~^11.00^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~19168~^~207~^0.76^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~255~^78.86^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~269~^11.00^0^^~4~^~O~^^^^^^^^^^~08/01/2010~ -~19168~^~303~^0.35^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~309~^0.54^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~323~^0.22^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~418~^0.39^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19169~^~203~^6.90^6^0.28^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~204~^6.40^6^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~205~^82.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19169~^~207~^2.20^6^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~255~^1.70^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~303~^1.93^6^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~309~^1.05^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~418~^1.17^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19170~^~203~^3.99^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~204~^4.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~205~^17.60^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~207~^0.97^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~210~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~211~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~212~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~213~^4.63^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~214~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~255~^73.45^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~269~^4.82^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~287~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~303~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~309~^0.51^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~323~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~341~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~342~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~343~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~344~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~345~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~346~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~347~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~418~^0.52^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19171~^~203~^20.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~204~^10.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~205~^60.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19171~^~207~^7.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19171~^~255~^3.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~19171~^~269~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19171~^~303~^36.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19172~^~203~^7.80^84^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19172~^~205~^90.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19172~^~207~^0.70^84^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~255~^1.00^84^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~269~^86.04^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19172~^~303~^0.13^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~309~^0.01^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19173~^~203~^1.22^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~205~^14.19^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~207~^0.20^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~255~^84.39^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~269~^13.49^0^^~6~^~RPI~^^^^^^^^^^~03/01/2006~ -~19173~^~303~^0.02^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~309~^0.01^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19175~^~203~^15.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19175~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19175~^~205~^80.21^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19175~^~207~^2.18^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~19175~^~255~^1.93^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~303~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~309~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19176~^~203~^0.83^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~204~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~205~^4.22^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~207~^0.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~255~^94.74^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~269~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~303~^0.01^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~309~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~323~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~418~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19177~^~203~^85.60^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~204~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~205~^0.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~207~^1.30^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~255~^13.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19177~^~303~^1.11^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~309~^0.14^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19177~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19181~^~203~^1.78^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~204~^7.32^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~205~^81.64^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~207~^0.17^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~19181~^~255~^9.09^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~269~^75.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~303~^0.94^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~309~^0.01^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19182~^~203~^4.14^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~204~^16.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~205~^16.07^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~207~^0.76^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~255~^62.94^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~269~^14.81^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~303~^0.55^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~309~^0.64^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~323~^0.51^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~418~^0.47^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~19182~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19183~^~203~^2.09^4^0.23^~1~^~A~^^^1^1.67^2.62^3^1.36^2.82^~2, 3~^~10/01/2006~ -~19183~^~204~^4.60^4^0.53^~1~^~A~^^^1^3.52^5.66^3^2.89^6.30^~2, 3~^~10/01/2006~ -~19183~^~205~^23.01^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~207~^0.84^4^0.08^~1~^~A~^^^1^0.64^0.98^3^0.57^1.10^~2, 3~^~10/01/2006~ -~19183~^~210~^15.47^4^0.69^~1~^~A~^^^1^14.57^17.55^3^13.24^17.69^~2, 3~^~10/01/2006~ -~19183~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~213~^1.70^4^0.33^~1~^~A~^^^1^0.92^2.53^3^0.64^2.75^~2, 3~^~10/01/2006~ -~19183~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~255~^69.46^4^0.88^~1~^~A~^^^1^67.73^71.85^3^66.66^72.26^~2, 3~^~10/01/2006~ -~19183~^~269~^17.17^4^0.75^~1~^~A~^^^1^15.72^19.14^3^14.77^19.55^~2, 3~^~03/01/2009~ -~19183~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~303~^1.27^4^0.16^~1~^~A~^^^1^1.00^1.74^3^0.73^1.80^~2, 3~^~10/01/2006~ -~19183~^~309~^0.34^4^0.03^~1~^~A~^^^1^0.26^0.41^3^0.24^0.44^~2, 3~^~10/01/2006~ -~19183~^~323~^0.31^4^0.13^~1~^~A~^^^1^0.13^0.70^3^-0.09^0.72^~2, 3~^~10/01/2006~ -~19183~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-1.0e-03^0.02^~1, 2, 3~^~10/01/2006~ -~19183~^~342~^1.64^4^0.46^~1~^~A~^^^1^0.58^2.52^3^0.15^3.13^~2, 3~^~10/01/2006~ -~19183~^~343~^0.63^4^0.27^~1~^~A~^^^1^0.03^1.11^3^-0.23^1.49^~2, 3~^~10/01/2006~ -~19183~^~418~^0.09^4^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19184~^~203~^2.30^8^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19184~^~204~^1.90^8^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19184~^~205~^87.90^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19184~^~207~^4.70^8^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19184~^~255~^3.20^8^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19184~^~269~^67.86^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19184~^~303~^1.29^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19184~^~309~^0.62^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19185~^~203~^3.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~204~^3.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~205~^18.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19185~^~207~^1.40^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~255~^73.60^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~303~^0.29^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~309~^0.42^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19186~^~203~^1.75^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~204~^3.43^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~205~^30.84^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~207~^1.07^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~255~^62.91^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~269~^19.68^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~303~^0.82^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~309~^0.18^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~323~^0.38^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19187~^~203~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~205~^91.60^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~ -~19187~^~207~^0.61^0^^~4~^~BFAN~^^^^^^^^^^~01/01/1996~ -~19187~^~255~^7.80^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~303~^0.08^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~309~^0.04^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19188~^~203~^2.60^11^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~204~^2.10^11^0.14^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~205~^89.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19188~^~207~^2.00^11^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~255~^4.00^11^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~269~^42.88^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~303~^1.82^4^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19188~^~309~^0.90^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~323~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19189~^~203~^3.16^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~204~^3.15^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~205~^19.64^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~207~^0.92^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~255~^73.13^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~269~^11.96^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~303~^0.34^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~309~^0.48^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~323~^0.06^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~418~^0.31^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19190~^~203~^3.28^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~204~^2.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~205~^19.76^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~207~^0.96^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~255~^73.94^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~269~^11.85^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~303~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~309~^0.57^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~323~^0.03^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~341~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~342~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~343~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~344~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~345~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~346~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~347~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~418~^0.37^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19191~^~203~^2.90^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~204~^2.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~205~^19.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19191~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~255~^74.40^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~303~^0.15^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~309~^0.33^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19193~^~203~^3.23^6^0.02^~1~^~A~^^^1^3.19^3.31^5^3.17^3.28^~2, 3~^~05/01/2013~ -~19193~^~204~^2.15^6^0.27^~1~^~A~^^^1^1.74^3.51^5^1.44^2.86^~2, 3~^~05/01/2013~ -~19193~^~205~^18.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~207~^0.78^6^0.01^~1~^~A~^^^1^0.75^0.83^5^0.75^0.81^~2, 3~^~05/01/2013~ -~19193~^~209~^7.43^3^1.71^~1~^~A~^^^1^5.20^10.80^2^0.06^14.80^~2, 3~^~05/01/2013~ -~19193~^~210~^8.07^3^0.08^~1~^~A~^^^1^7.90^8.20^2^7.68^8.44^~2, 3~^~05/01/2013~ -~19193~^~211~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 2, 3~^~05/01/2013~ -~19193~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~213~^3.43^3^0.06^~1~^~A~^^^1^3.30^3.50^2^3.14^3.72^~2, 3~^~05/01/2013~ -~19193~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~255~^75.15^6^0.14^~1~^~A~^^^1^74.48^75.50^5^74.77^75.53^~2, 3~^~05/01/2013~ -~19193~^~269~^11.59^3^0.16^~1~^~A~^^^1^11.27^11.80^2^10.89^12.28^~2, 3~^~05/01/2013~ -~19193~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~303~^0.11^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~309~^0.43^6^5.0e-03^~1~^~A~^^^1^0.41^0.44^5^0.41^0.43^~2, 3~^~05/01/2013~ -~19193~^~323~^0.07^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~19193~^~418~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.18^2^0.08^0.21^~2, 3~^~05/01/2013~ -~19193~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19194~^~203~^2.70^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~204~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~205~^91.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19194~^~207~^1.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~255~^4.80^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~303~^1.79^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~309~^0.31^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19194~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19195~^~203~^3.25^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~204~^2.82^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~205~^20.68^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~207~^0.81^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~255~^72.42^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~303~^0.37^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~309~^0.38^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~418~^0.24^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19198~^~203~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~204~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~205~^94.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19198~^~207~^1.40^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~255~^4.00^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~269~^65.00^0^^~8~^~LC~^^^^^^^^^^~12/01/1997~ -~19198~^~303~^0.12^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~309~^0.08^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19199~^~203~^2.84^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~204~^2.89^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~205~^19.43^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~207~^0.85^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~255~^73.97^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~303~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~309~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~418~^0.25^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19201~^~203~^1.45^4^0.05^~1~^~A~^^^1^1.30^2.26^1^0.81^2.08^~2, 3~^~10/01/2006~ -~19201~^~204~^3.78^4^0.34^~1~^~A~^^^1^3.11^5.37^1^-0.60^8.15^~2, 3~^~10/01/2006~ -~19201~^~205~^22.60^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19201~^~207~^0.51^4^7.0e-03^~1~^~A~^^^1^0.41^0.66^1^0.42^0.59^~2, 3~^~10/01/2006~ -~19201~^~210~^15.17^4^1.11^~1~^~A~^^^1^12.75^18.38^1^0.96^29.38^~2, 3~^~10/01/2006~ -~19201~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~213~^1.80^4^0.01^~1~^~A~^^^1^1.69^2.65^1^1.59^2.01^~2, 3~^~10/01/2006~ -~19201~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~255~^71.66^4^0.65^~1~^~A~^^^1^69.40^73.27^1^63.31^80.01^~2, 3~^~10/01/2006~ -~19201~^~269~^16.97^4^1.13^~1~^~A~^^^1^15.39^20.13^1^2.55^31.39^~2, 3~^~12/01/2006~ -~19201~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~303~^0.09^4^7.0e-03^~1~^~A~^^^1^0.07^0.17^1^4.0e-03^0.17^~1, 2, 3~^~10/01/2006~ -~19201~^~309~^0.16^4^4.0e-03^~1~^~A~^^^1^0.15^0.20^1^0.11^0.20^~2, 3~^~10/01/2006~ -~19201~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^1^-0.05^0.07^~1, 2, 3~^~10/01/2006~ -~19201~^~342~^1.13^4^0.38^~1~^~A~^^^1^0.41^2.59^1^-3.73^5.99^~2, 3~^~10/01/2006~ -~19201~^~343~^0.45^4^0.19^~1~^~A~^^^1^0.03^1.31^1^-1.99^2.89^~2, 3~^~10/01/2006~ -~19201~^~418~^0.15^4^0.03^~1~^~A~^^^1^0.09^0.24^1^-0.32^0.63^~1, 2, 3~^~10/01/2006~ -~19201~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19202~^~203~^0.00^20^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~204~^0.60^20^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~205~^92.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19202~^~207~^3.90^20^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~255~^2.60^20^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~269~^92.90^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19202~^~303~^0.01^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~309~^0.06^4^2.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19203~^~203~^2.70^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~204~^2.90^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~205~^19.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19203~^~207~^1.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~255~^73.50^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~269~^18.03^0^^~4~^~BFCN~^^^^^^^^^^~03/01/2006~ -~19203~^~303~^0.07^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~309~^0.33^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19204~^~203~^2.76^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~204~^1.71^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~205~^20.20^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~207~^1.16^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~255~^74.16^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~303~^0.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~309~^0.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~418~^0.30^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19205~^~203~^4.13^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~204~^2.83^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~205~^17.61^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~207~^1.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~210~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~211~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~212~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~213~^4.59^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~214~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~255~^74.44^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~269~^4.63^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~287~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~303~^0.33^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~309~^0.61^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~323~^0.03^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~341~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~342~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~343~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~344~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~345~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~346~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~347~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~418~^0.58^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19206~^~203~^0.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~204~^0.40^11^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~205~^93.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19206~^~207~^2.00^22^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~255~^3.90^22^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~269~^79.34^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19206~^~303~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~309~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19206~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19207~^~203~^2.80^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~204~^2.90^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~205~^18.92^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~207~^0.90^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~255~^74.49^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~269~^17.09^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19207~^~303~^0.04^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~309~^0.33^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~323~^0.06^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~418~^0.31^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19207~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19208~^~203~^3.29^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~204~^1.63^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~205~^20.81^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~207~^0.82^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~255~^73.43^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~303~^0.37^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~309~^0.38^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~418~^0.24^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~203~^2.88^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~204~^1.67^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~205~^19.56^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~207~^0.87^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~255~^75.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~303~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~309~^0.35^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~418~^0.25^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~203~^2.94^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~204~^1.73^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~205~^18.53^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~207~^0.95^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~255~^75.86^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~303~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~309~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~418~^0.25^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19213~^~203~^3.24^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~204~^2.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~205~^13.47^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~207~^0.81^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~255~^80.39^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~303~^0.30^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~309~^0.51^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~418~^0.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~203~^3.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~204~^1.77^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~205~^12.34^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~207~^0.73^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~255~^82.11^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~303~^0.05^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~309~^0.36^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~418~^0.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19216~^~203~^3.30^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~204~^25.90^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~205~^59.59^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~207~^0.85^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~255~^10.36^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~269~^55.79^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~303~^1.29^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~309~^1.67^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~323~^0.50^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19217~^~203~^0.50^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~204~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~205~^6.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19217~^~207~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~255~^93.20^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~303~^0.13^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~309~^0.04^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19218~^~203~^1.95^2^^~1~^~A~^^^1^1.72^2.19^1^^^^~10/01/2006~ -~19218~^~204~^3.88^2^^~1~^~A~^^^1^3.15^4.62^1^^^^~10/01/2006~ -~19218~^~205~^21.69^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~207~^0.64^2^^~1~^~A~^^^1^0.61^0.66^1^^^^~10/01/2006~ -~19218~^~210~^12.55^2^^~1~^~A~^^^1^12.20^12.90^1^^^^~10/01/2006~ -~19218~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2006~ -~19218~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2006~ -~19218~^~213~^2.36^2^^~1~^~A~^^^1^2.03^2.69^1^^^^~10/01/2006~ -~19218~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2006~ -~19218~^~255~^71.84^2^^~1~^~A~^^^1^71.54^72.14^1^^^^~10/01/2006~ -~19218~^~269~^14.91^2^^~1~^~A~^^^1^14.22^15.59^1^^^^~03/01/2009~ -~19218~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2006~ -~19218~^~303~^0.11^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~10/01/2006~ -~19218~^~309~^0.22^2^^~1~^~A~^^^1^0.22^0.22^1^^^^~10/01/2006~ -~19218~^~323~^0.15^2^^~1~^~A~^^^1^0.10^0.21^1^^^^~10/01/2006~ -~19218~^~341~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~10/01/2006~ -~19218~^~342~^1.79^2^^~1~^~A~^^^1^1.36^2.22^1^^^^~10/01/2006~ -~19218~^~343~^0.83^2^^~1~^~A~^^^1^0.72^0.93^1^^^^~10/01/2006~ -~19218~^~418~^0.21^2^^~1~^~A~^^^1^0.09^0.33^1^^^~1~^~10/01/2006~ -~19218~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19219~^~203~^3.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~204~^2.50^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~205~^17.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19219~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~255~^75.60^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~309~^0.37^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~418~^0.26^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~203~^2.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~204~^3.30^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~205~^91.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19220~^~207~^1.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~255~^1.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~303~^2.55^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~309~^1.58^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19221~^~203~^3.20^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~204~^3.34^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~205~^13.34^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~207~^0.79^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~255~^79.29^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~303~^0.30^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~309~^0.50^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~418~^0.32^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19222~^~203~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~205~^99.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19222~^~207~^0.60^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~255~^0.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~303~^0.07^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~309~^0.04^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19223~^~203~^3.03^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~204~^3.07^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~205~^12.21^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~207~^0.71^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~255~^80.98^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~303~^0.05^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~309~^0.35^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~418~^0.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19225~^~203~^1.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~205~^19.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19225~^~207~^72.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~255~^6.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~303~^7.07^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~309~^6.36^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~203~^1.10^13^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~204~^17.60^12^0.43^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~205~^63.20^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~207~^1.00^9^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~255~^17.00^13^0.68^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~269~^57.70^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19226~^~303~^1.42^7^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~309~^0.29^4^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~323~^1.56^3^0.03^~1~^~A~^^^1^1.50^1.62^2^1.41^1.70^~4~^~03/01/2002~ -~19226~^~341~^0.06^3^0.06^~1~^~A~^^^1^0.00^0.19^2^-0.20^0.33^~4~^~03/01/2002~ -~19226~^~342~^7.26^3^0.67^~1~^~A~^^^1^5.94^8.15^2^4.36^10.15^~4~^~03/01/2002~ -~19226~^~343~^1.80^3^0.17^~1~^~A~^^^1^1.50^2.11^2^1.03^2.55^~4~^~03/01/2002~ -~19226~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2002~ -~19226~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2002~ -~19226~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2002~ -~19226~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~03/01/2002~ -~19226~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19227~^~203~^1.50^9^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~204~^24.00^9^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~205~^52.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19227~^~207~^0.80^9^8.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~255~^21.00^9^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~269~^40.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19227~^~303~^0.54^8^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~309~^0.41^8^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~323~^1.09^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19228~^~203~^0.10^3^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~204~^17.30^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~205~^67.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~19228~^~207~^0.23^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~19228~^~255~^15.10^3^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~269~^63.54^3^2.62^~8~^~LC~^^^1^58.33^66.67^2^52.26^74.82^~4~^~03/01/2002~ -~19228~^~303~^0.16^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~309~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19230~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2003~ -~19230~^~204~^16.23^6^0.26^~1~^~A~^^^1^15.40^16.70^5^15.55^16.91^~2, 3~^~04/01/2005~ -~19230~^~205~^67.89^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19230~^~207~^0.81^6^0.03^~1~^~A~^^^1^0.74^0.90^5^0.72^0.88^~2, 3~^~03/01/2003~ -~19230~^~255~^15.07^6^0.34^~1~^~A~^^^1^14.02^16.16^5^14.17^15.96^~2, 3~^~03/01/2003~ -~19230~^~269~^63.10^4^1.90^~8~^~LC~^^^1^58.33^66.67^3^57.03^69.16^~4~^~03/01/2006~ -~19230~^~303~^0.16^6^9.0e-03^~1~^~A~^^^1^0.15^0.20^5^0.13^0.17^~1, 2, 3~^~03/01/2003~ -~19230~^~309~^0.07^6^0.01^~1~^~A~^^^1^0.04^0.10^5^0.04^0.09^~1, 2, 3~^~03/01/2003~ -~19230~^~323~^1.53^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19231~^~203~^2.99^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~204~^1.72^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~205~^18.82^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~207~^0.76^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~255~^75.71^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~303~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~309~^0.36^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~418~^0.26^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~203~^2.95^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~204~^3.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~205~^18.68^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~207~^0.74^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~255~^74.63^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~303~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~309~^0.35^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~418~^0.26^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19233~^~203~^2.02^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~205~^20.16^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~207~^0.90^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~255~^76.93^0^^~4~^~O~^^^^^^^^^^~11/01/2006~ -~19233~^~269~^15.12^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~19233~^~303~^0.36^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~309~^0.23^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~418~^0.21^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19234~^~203~^1.44^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~204~^0.35^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~205~^21.31^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~207~^0.64^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~255~^76.25^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~269~^14.18^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19234~^~303~^0.11^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~309~^0.17^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~323~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~418~^0.31^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19235~^~203~^1.93^3^0.08^~8~^~LC~^^^1^1.76^2.02^2^1.57^2.29^~4~^~11/01/2006~ -~19235~^~204~^0.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~205~^20.87^3^0.65^~8~^~LC~^^^1^20.16^22.17^2^18.06^23.67^~4~^~11/01/2006~ -~19235~^~207~^0.70^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~255~^76.23^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~269~^15.75^3^0.69^~8~^~LC~^^^1^14.99^17.13^2^12.76^18.73^~4~^~12/01/2006~ -~19235~^~303~^1.69^3^1.17^~8~^~LC~^^^1^0.32^4.03^2^-3.36^6.75^~4~^~11/01/2006~ -~19235~^~309~^0.30^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19236~^~203~^9.76^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~204~^35.73^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~205~^51.72^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19236~^~207~^1.59^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~255~^1.19^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~269~^44.59^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~303~^1.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~309~^1.34^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~203~^11.34^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~204~^29.85^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~205~^55.18^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~207~^1.62^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~255~^1.65^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~269~^48.03^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~303~^0.85^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~309~^1.06^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~203~^11.28^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~204~^32.09^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~205~^52.80^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~207~^2.18^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~255~^1.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~269~^40.22^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~303~^1.23^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~309~^1.29^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19240~^~203~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~204~^5.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~205~^92.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19240~^~207~^0.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~255~^0.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~303~^1.19^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~309~^0.81^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19241~^~203~^1.11^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~204~^13.06^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~205~^71.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19241~^~207~^0.71^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~255~^13.33^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~269~^0.01^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~303~^0.93^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~309~^0.64^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~323~^0.26^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~19241~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~418~^0.02^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19243~^~203~^3.94^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~204~^30.38^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~205~^63.39^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~207~^1.16^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~255~^0.86^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~269~^60.02^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~303~^0.78^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~309~^0.11^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19244~^~203~^0.30^4^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~204~^4.90^3^0.37^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~205~^93.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19244~^~207~^0.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~255~^0.70^4^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~303~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~309~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19246~^~203~^2.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~205~^94.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19246~^~207~^0.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~255~^1.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~303~^0.09^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~309~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~418~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19247~^~203~^1.50^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~204~^0.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~205~^62.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19247~^~207~^0.60^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~255~^35.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~303~^0.06^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~309~^0.02^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~418~^0.01^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19248~^~203~^5.58^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~204~^34.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~205~^57.54^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~19248~^~207~^1.12^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~255~^1.26^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~269~^51.71^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~303~^1.33^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~309~^0.79^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19249~^~203~^9.53^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~204~^31.34^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~205~^55.38^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~207~^2.00^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~255~^1.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~269~^40.33^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~303~^1.30^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~309~^0.99^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~323~^2.77^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19249~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19250~^~203~^6.24^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~204~^27.84^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~205~^63.64^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~207~^0.96^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~255~^1.10^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~269~^53.96^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~303~^0.84^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~309~^0.07^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~203~^8.66^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~204~^23.42^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~205~^61.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~207~^2.01^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~255~^4.10^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~269~^53.08^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~303~^0.96^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~309~^0.94^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19254~^~203~^5.94^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~204~^31.72^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~205~^59.78^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~207~^0.95^0^^~4~^~O~^~19120~^^^^^^^^^~01/01/2006~ -~19254~^~255~^1.61^0^^~4~^~BFFN~^~19120~^^^^^^^^^~01/01/2006~ -~19254~^~269~^55.45^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~303~^1.11^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~203~^5.19^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~204~^32.45^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~205~^59.40^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~207~^1.30^0^^~4~^~BFFN~^~19080~^^^^^^^^^~01/01/2006~ -~19255~^~255~^1.66^0^^~4~^~O~^~19080~^^^^^^^^^~01/01/2006~ -~19255~^~269~^46.27^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~303~^3.18^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19256~^~203~^4.28^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~204~^19.17^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~205~^68.49^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~207~^1.08^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19256~^~255~^6.99^0^^~4~^~O~^^^^^^^^^^~02/01/2006~ -~19256~^~269~^58.65^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~303~^0.34^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~203~^3.82^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~204~^20.42^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~205~^67.56^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~207~^1.08^0^^~4~^~BFZN~^~19256~^^^^^^^^^~02/01/2006~ -~19258~^~255~^6.99^0^^~4~^~BFZN~^~19256~^^^^^^^^^~02/01/2006~ -~19258~^~269~^54.08^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~303~^1.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19260~^~203~^3.97^4^0.19^~9~^~MC~^^^1^3.68^4.50^3^3.36^4.57^~4~^~05/01/2004~ -~19260~^~204~^7.45^4^0.96^~9~^~MC~^^^1^6.20^10.30^3^4.37^10.53^~4~^~05/01/2004~ -~19260~^~205~^21.42^4^0.25^~9~^~MC~^^^1^20.75^21.92^3^20.60^22.23^~4~^~05/01/2004~ -~19260~^~207~^1.20^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19260~^~255~^65.52^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~ -~19260~^~269~^6.46^4^0.41^~9~^~MC~^^^1^5.90^7.70^3^5.13^7.78^~4~^~05/01/2004~ -~19260~^~303~^0.19^4^0.03^~9~^~MC~^^^1^0.09^0.27^3^0.06^0.30^~4~^~05/01/2004~ -~19260~^~309~^0.31^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~323~^0.29^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~418~^0.52^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~19260~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19263~^~203~^1.20^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~204~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~205~^20.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19263~^~207~^0.20^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~255~^78.30^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~269~^17.48^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~303~^0.19^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~309~^0.05^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~19263~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19265~^~203~^3.54^2^^~9~^~MC~^^^1^3.53^3.54^1^^^^~05/01/2004~ -~19265~^~204~^5.74^2^^~9~^~MC~^^^1^5.68^5.80^1^^^^~05/01/2004~ -~19265~^~205~^26.79^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19265~^~207~^0.94^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~255~^62.99^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~19265~^~269~^5.65^2^^~9~^~MC~^^^1^5.49^5.81^1^^^^~03/01/2009~ -~19265~^~303~^0.48^2^^~9~^~MC~^^^1^0.36^0.59^1^^^^~05/01/2004~ -~19265~^~309~^0.40^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~323~^0.30^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~418~^0.38^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19265~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19268~^~203~^7.50^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~204~^30.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~205~^59.95^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19268~^~207~^1.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~255~^1.47^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~269~^42.50^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~303~^2.70^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~309~^1.32^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~323~^0.23^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19269~^~203~^0.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19269~^~204~^3.50^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19269~^~205~^85.20^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19269~^~207~^1.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19269~^~255~^10.20^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19269~^~269~^38.70^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19270~^~203~^3.80^6^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~204~^11.00^6^0.42^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~205~^28.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19270~^~207~^1.00^6^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~255~^55.70^11^0.81^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~269~^25.36^0^^~4~^~BFCN~^~19095~^^^^^^^^^~03/01/2009~ -~19270~^~303~^0.93^35^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~309~^0.58^35^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~323~^0.30^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~ -~19270~^~418~^0.29^5^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19271~^~203~^3.20^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~204~^8.40^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~205~^27.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19271~^~207~^0.70^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~213~^4.43^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19271~^~255~^60.00^7^1.30^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~303~^0.21^4^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~309~^0.34^4^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~418~^0.30^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19272~^~203~^4.40^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19272~^~204~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19272~^~205~^80.90^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19272~^~207~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19272~^~255~^14.70^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~203~^0.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~204~^1.00^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~205~^82.70^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~ -~19273~^~207~^1.10^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19273~^~255~^14.60^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19274~^~203~^0.10^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~204~^3.50^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~205~^85.20^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~207~^1.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~255~^10.20^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~303~^0.75^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~309~^0.19^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19279~^~203~^7.41^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~204~^33.18^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19279~^~205~^55.25^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~207~^1.75^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~19279~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~255~^2.42^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~269~^50.75^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~19279~^~303~^2.29^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~309~^2.02^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~323~^0.44^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~418~^0.65^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19280~^~203~^0.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~205~^32.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19280~^~207~^0.03^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~19280~^~255~^66.90^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~269~^32.60^0^^~4~^~NR~^^^^^^^^^^~06/01/2008~ -~19280~^~303~^0.16^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~309~^0.02^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~19280~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19281~^~203~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~204~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~205~^13.50^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~ -~19281~^~207~^0.05^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~255~^86.40^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~303~^0.09^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~309~^0.03^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~ -~19283~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2005~ -~19283~^~204~^0.24^3^0.05^~1~^~A~^^^1^0.13^0.32^2^-5.0e-03^0.47^~2, 3~^~04/01/2005~ -~19283~^~205~^19.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19283~^~207~^0.05^3^9.0e-03^~1~^~A~^^^1^0.03^0.06^2^9.0e-03^0.08^~2, 3~^~04/01/2005~ -~19283~^~210~^6.28^3^0.03^~1~^~A~^^^1^6.22^6.34^2^6.12^6.42^~2, 3~^~04/01/2005~ -~19283~^~211~^3.96^3^0.02^~1~^~A~^^^1^3.92^4.00^2^3.85^4.05^~2, 3~^~04/01/2005~ -~19283~^~212~^2.72^3^0.01^~1~^~A~^^^1^2.69^2.75^2^2.64^2.79^~2, 3~^~04/01/2005~ -~19283~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~19283~^~214~^0.71^3^0.01^~1~^~A~^^^1^0.69^0.73^2^0.65^0.75^~2, 3~^~04/01/2005~ -~19283~^~255~^80.49^3^0.15^~1~^~A~^^^1^80.30^80.79^2^79.83^81.14^~2, 3~^~04/01/2005~ -~19283~^~269~^13.66^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~19283~^~303~^0.54^3^0.15^~1~^~A~^^^1^0.36^0.84^2^-0.11^1.19^~2, 3~^~04/01/2005~ -~19283~^~309~^0.15^2^^~1~^~A~^^^1^0.07^0.23^1^^^~1~^~04/01/2005~ -~19283~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19292~^~203~^4.28^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~204~^19.32^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~205~^72.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~207~^1.63^0^^~4~^~BFZN~^~19141~^^^^^^^^^~02/01/2006~ -~19292~^~255~^1.70^0^^~4~^~BFZN~^~19141~^^^^^^^^^~02/01/2006~ -~19292~^~269~^58.94^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~303~^0.86^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19293~^~203~^4.00^8^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~204~^5.60^8^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~205~^24.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19293~^~207~^0.90^8^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~255~^65.30^8^0.38^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~269~^24.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~19293~^~303~^0.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~309~^0.42^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~323~^0.11^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~418~^0.29^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19293~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19294~^~203~^0.39^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~204~^0.30^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~205~^42.47^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19294~^~207~^0.39^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~255~^56.45^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~269~^35.30^1^^~12~^~MA~^^^^^^^^^^~12/01/2006~ -~19294~^~303~^0.31^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~19294~^~309~^0.06^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19294~^~323~^0.05^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~342~^0.01^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19294~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19295~^~203~^15.25^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~204~^36.22^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~205~^43.64^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~207~^1.90^0^^~4~^~BFZN~^~19147~^^^^^^^^^~02/01/2006~ -~19295~^~255~^2.99^0^^~4~^~O~^~19147~^^^^^^^^^~02/01/2006~ -~19295~^~269~^30.87^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~303~^1.02^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19296~^~203~^0.30^508^7.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~204~^0.00^3^2.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~205~^82.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19296~^~207~^0.20^508^9.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~210~^0.89^9^0.24^~13~^~AI~^^^1^0.00^2.40^8^0.32^1.45^~4~^~11/01/2002~ -~19296~^~211~^35.75^1^^~13~^~AI~^^^1^32.50^40.56^12^^^^~11/01/2002~ -~19296~^~212~^40.94^1^^~13~^~AI~^^^1^36.20^47.11^12^^^^~11/01/2002~ -~19296~^~214~^1.44^9^0.30^~13~^~AI~^^^1^0.00^3.00^8^0.73^2.14^~4~^~11/01/2002~ -~19296~^~255~^17.10^509^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~269~^82.12^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19296~^~287~^3.10^1^^~13~^~AI~^^^^^^^^^^~11/01/2002~ -~19296~^~303~^0.42^14^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~309~^0.22^12^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19296~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19296~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19296~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19297~^~203~^0.37^13^0.18^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19297~^~204~^0.07^10^0.07^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19297~^~205~^68.86^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19297~^~207~^0.23^3^0.03^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19297~^~255~^30.47^8^2.28^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19297~^~269~^48.50^2^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~19297~^~303~^0.49^3^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~309~^0.06^4^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19297~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19300~^~203~^0.15^15^0.05^~11~^~JO~^^^1^0.10^0.20^1^-0.48^0.78^~4~^~11/01/2002~ -~19300~^~204~^0.02^10^0.01^~11~^~JO~^^^1^0.00^0.03^1^-0.17^0.20^~4~^~11/01/2002~ -~19300~^~205~^69.95^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19300~^~207~^0.12^6^0.01^~11~^~JO~^^^1^0.10^0.13^1^-0.07^0.30^~4~^~11/01/2002~ -~19300~^~255~^29.77^12^0.59^~11~^~JO~^^^1^29.17^30.37^1^22.16^37.37^~4~^~11/01/2002~ -~19300~^~269~^51.22^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19300~^~303~^0.19^50^6.0e-03^~6~^~JA~^^^1^0.19^0.20^1^0.12^0.26^~4~^~11/01/2002~ -~19300~^~309~^0.03^56^8.0e-03^~6~^~JA~^^^1^0.02^0.04^1^-0.07^0.13^~4~^~11/01/2002~ -~19300~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~342~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~343~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~345~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19300~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19301~^~203~^3.24^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~204~^21.11^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~205~^67.69^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~19301~^~207~^0.84^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~255~^7.12^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~303~^1.11^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~309~^0.76^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~323~^0.59^0^^~4~^~RC~^^^^^^^^^^~08/01/2009~ -~19301~^~418~^0.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19302~^~203~^5.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~204~^22.40^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~205~^64.67^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~207~^1.50^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19302~^~255~^5.45^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19302~^~269~^53.93^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~303~^0.85^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19303~^~203~^0.30^3^0.05^~1~^^^^^^^^^^^~02/01/2003~ -~19303~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~205~^66.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19303~^~207~^0.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~255~^33.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~269~^60.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19303~^~303~^0.15^3^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~309~^0.04^4^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~323~^0.06^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19303~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19304~^~203~^0.00^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~ -~19304~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~205~^74.73^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19304~^~207~^3.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~210~^29.40^12^3.45^~13~^~AI~^^^1^5.10^52.24^11^21.80^37.00^~4~^~11/01/2002~ -~19304~^~211~^11.92^11^2.05^~13~^~AI~^^^1^0.00^20.50^10^7.34^16.50^~4~^~11/01/2002~ -~19304~^~212~^12.79^10^1.18^~13~^~AI~^^^1^7.90^18.50^10^10.14^15.42^~4~^~11/01/2002~ -~19304~^~255~^21.87^12^1.31^~13~^~AI~^^^1^16.47^28.69^11^18.98^24.76^~4~^~11/01/2002~ -~19304~^~269~^74.72^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~19304~^~303~^4.72^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~309~^0.29^3^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19304~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19304~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19304~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19306~^~203~^7.15^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~204~^24.32^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~205~^61.07^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~207~^1.61^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19306~^~255~^5.78^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19306~^~269~^51.69^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19306~^~303~^0.72^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~203~^3.30^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~204~^18.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~205~^71.85^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19307~^~207~^1.07^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19307~^~255~^5.78^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19307~^~269~^61.08^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~303~^0.50^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~203~^2.59^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~204~^15.17^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~205~^75.94^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~207~^1.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19308~^~255~^5.30^0^^~4~^~O~^^^^^^^^^^~01/01/2006~ -~19308~^~269~^67.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~303~^0.58^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19309~^~203~^0.41^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~204~^8.36^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~205~^82.43^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~207~^0.10^0^^~4~^~BFZN~^~19156~^^^^^^^^^~02/01/2006~ -~19309~^~255~^8.70^0^^~4~^~O~^~19156~^^^^^^^^^~02/01/2006~ -~19309~^~269~^57.98^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~303~^0.01^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19310~^~203~^0.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~204~^0.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~205~^90.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19310~^~207~^0.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~255~^8.70^3^2.79^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~303~^2.71^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~309~^0.47^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19310~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19312~^~203~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~204~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~205~^26.10^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19312~^~207~^0.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~255~^73.40^3^0.81^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~269~^13.80^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~303~^0.29^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~309~^0.04^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~323~^0.04^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19312~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19313~^~203~^0.41^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~204~^8.31^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~205~^82.76^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~207~^0.30^0^^~4~^~BFZN~^~19156~^^^^^^^^^~02/01/2006~ -~19313~^~255~^8.51^0^^~4~^~BFZN~^~19156~^^^^^^^^^~02/01/2006~ -~19313~^~269~^58.18^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~303~^0.01^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19314~^~203~^0.37^4^0.07^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19314~^~204~^0.07^4^0.07^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19314~^~205~^28.00^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~ -~19314~^~207~^0.20^4^0.01^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19314~^~255~^71.23^5^0.93^~1~^~A~^^^^^^^^^^~03/01/1998~ -~19314~^~303~^0.24^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~309~^0.05^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19315~^~203~^0.39^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~204~^7.78^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~205~^79.73^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~207~^0.30^0^^~4~^~BFZN~^~19156~^^^^^^^^^~02/01/2006~ -~19315~^~255~^10.89^0^^~4~^~O~^~19156~^^^^^^^^^~02/01/2006~ -~19315~^~269~^56.10^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~303~^0.01^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19318~^~203~^0.00^6^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~204~^0.60^6^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~205~^92.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19318~^~207~^3.80^6^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~255~^2.80^6^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~269~^76.57^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~19318~^~303~^0.12^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~309~^0.04^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~418~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19319~^~203~^2.62^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~204~^2.80^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~205~^19.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19319~^~207~^1.20^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~255~^73.62^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~269~^17.38^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~303~^0.05^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~309~^0.32^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~323~^0.06^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~341~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~342~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~343~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~344~^0.00^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~345~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~346~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~347~^0.00^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~418~^0.37^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~573~^0.00^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~19319~^~578~^0.00^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~19320~^~203~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~204~^0.40^3^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~205~^93.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19320~^~207~^2.50^6^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~255~^4.10^6^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~269~^74.32^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~19320~^~303~^0.05^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~309~^0.09^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19321~^~203~^2.74^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~204~^2.89^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~205~^18.44^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19321~^~207~^0.97^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~255~^74.96^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~269~^15.98^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~ -~19321~^~303~^0.04^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~309~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~323~^0.06^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~341~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~342~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~343~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~344~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~345~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~346~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~347~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~418~^0.31^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19322~^~203~^0.90^4^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19322~^~204~^10.00^1^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~19322~^~205~^83.50^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~19322~^~207~^3.40^4^0.19^~1~^^^^^^^^^^^~12/01/2006~ -~19322~^~255~^2.20^4^0.49^~1~^^^^^^^^^^^~08/01/1991~ -~19322~^~269~^64.00^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19322~^~303~^0.72^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~309~^0.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19322~^~323~^0.08^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19323~^~203~^2.90^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~204~^3.50^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~205~^19.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19323~^~207~^1.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~255~^73.40^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~303~^0.15^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~309~^0.33^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~203~^1.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~204~^11.36^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19324~^~205~^81.84^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19324~^~207~^2.10^6^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~255~^3.70^6^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~269~^80.54^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~303~^0.57^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~309~^0.35^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19324~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19325~^~203~^3.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~204~^3.80^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~205~^17.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19325~^~207~^1.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~255~^74.60^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~303~^0.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~309~^0.36^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~418~^0.25^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19326~^~203~^5.81^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~204~^29.30^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~205~^62.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19326~^~207~^1.20^0^^~4~^~BFZN~^~19080~^^^^^^^^^~02/01/2006~ -~19326~^~255~^0.70^0^^~4~^~BFZN~^~19080~^^^^^^^^^~02/01/2006~ -~19326~^~269~^39.19^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~303~^3.47^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~323~^12.27^1^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~19326~^~418~^4.09^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19327~^~203~^6.35^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~204~^28.68^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~205~^60.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19327~^~207~^1.70^0^^~4~^~BFZN~^~19119~^^^^^^^^^~02/01/2006~ -~19327~^~255~^2.90^0^^~4~^~BFZN~^~19119~^^^^^^^^^~02/01/2006~ -~19327~^~269~^38.99^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~303~^3.18^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~323~^9.20^1^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~19327~^~418~^2.73^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19328~^~203~^8.21^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~204~^26.23^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~205~^62.06^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19328~^~207~^1.60^0^^~4~^~BFZN~^~19134~^^^^^^^^^~02/01/2006~ -~19328~^~255~^1.90^0^^~4~^~BFZN~^~19134~^^^^^^^^^~02/01/2006~ -~19328~^~269~^34.96^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~303~^3.45^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~323~^10.13^1^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~19328~^~418~^3.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19330~^~203~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~204~^0.70^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~205~^95.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19330~^~207~^3.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~255~^0.70^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~303~^0.08^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~309~^0.05^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~418~^0.01^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19331~^~203~^2.70^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~204~^2.90^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~205~^20.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19331~^~207~^1.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~255~^73.20^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~303~^0.06^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~309~^0.32^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~418~^0.30^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~203~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~204~^0.50^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~205~^91.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19332~^~207~^2.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~255~^5.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~303~^0.17^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~309~^0.02^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19333~^~203~^0.65^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~204~^1.12^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~205~^24.20^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~207~^0.42^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~255~^73.62^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~269~^13.51^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~303~^0.13^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~309~^0.10^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~323~^0.10^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~418~^0.06^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~573~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~578~^0.00^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19334~^~203~^0.12^15^0.01^~1~^~A~^^^1^0.09^0.25^7^0.08^0.16^~2, 3~^~12/01/2006~ -~19334~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~205~^98.09^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19334~^~207~^0.45^15^0.07^~1~^~A~^^^1^0.04^0.87^7^0.28^0.61^~2, 3~^~12/01/2006~ -~19334~^~210~^94.56^15^0.45^~1~^~A~^^^1^90.06^97.23^8^93.50^95.61^~2, 3~^~12/01/2006~ -~19334~^~211~^1.35^15^0.10^~1~^~A~^^^1^0.75^1.82^7^1.10^1.60^~2, 3~^~12/01/2006~ -~19334~^~212~^1.11^15^0.09^~1~^~A~^^^1^0.62^1.57^7^0.88^1.33^~2, 3~^~12/01/2006~ -~19334~^~213~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~214~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~255~^1.34^15^0.06^~1~^~A~^^^1^1.10^2.13^8^1.19^1.48^~2, 3~^~12/01/2006~ -~19334~^~269~^97.02^15^0.50^~1~^~A~^^^1^92.42^99.85^8^95.84^98.18^~2, 3~^~12/01/2006~ -~19334~^~287~^0.00^15^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~303~^0.71^15^0.06^~1~^~A~^^^1^0.13^1.67^10^0.56^0.85^~2, 3~^~12/01/2006~ -~19334~^~309~^0.03^15^6.0e-03^~1~^~A~^^^1^0.01^0.09^8^0.01^0.04^~2, 3~^~12/01/2006~ -~19334~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19334~^~418~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19334~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19335~^~203~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2009~ -~19335~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19335~^~205~^99.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19335~^~207~^0.01^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~19335~^~210~^99.80^8^0.09^~1~^~A~^^^1^99.17^100.00^7^99.58^100.04^~2, 3~^~03/01/2009~ -~19335~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~255~^0.02^8^7.0e-03^~1~^~A~^^^1^0.01^0.06^7^3.0e-03^0.03^~1, 2, 3~^~03/01/2009~ -~19335~^~269~^99.80^7^0.10^~1~^~A~^^^1^99.17^100.00^6^99.53^100.06^~2, 3~^~07/01/2009~ -~19335~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~303~^0.05^8^7.0e-03^~1~^~A~^^^1^0.03^0.09^7^0.03^0.06^~1, 2, 3~^~03/01/2009~ -~19335~^~309~^0.01^8^1.0e-03^~1~^~A~^^^1^0.01^0.02^7^5.0e-03^0.01^~1, 2, 3~^~03/01/2009~ -~19335~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~19335~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19335~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19335~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19336~^~203~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2009~ -~19336~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19336~^~205~^99.77^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~19336~^~207~^0.01^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~19336~^~209~^1.26^4^0.26^~1~^~A~^^^1^0.74^2.00^3^0.41^2.10^~1, 2, 3~^~03/01/2009~ -~19336~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~255~^0.23^8^0.01^~1~^~A~^^^1^0.18^0.25^7^0.20^0.25^~2, 3~^~03/01/2009~ -~19336~^~269~^97.81^8^0.30^~1~^~A~^^^1^96.45^99.17^7^97.09^98.52^~2, 3~^~07/01/2009~ -~19336~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~303~^0.06^8^8.0e-03^~1~^~A~^^^1^0.03^0.10^7^0.03^0.07^~1, 2, 3~^~03/01/2009~ -~19336~^~309~^0.01^8^5.0e-03^~1~^~A~^^^1^0.01^0.05^7^0.00^0.02^~1, 2, 3~^~03/01/2009~ -~19336~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~19336~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19337~^~203~^2.17^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~205~^89.08^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19337~^~207~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2005~ -~19337~^~209~^8.36^2^^~1~^~A~^^^1^7.07^9.64^1^^^^~02/01/2005~ -~19337~^~255~^8.75^3^0.04^~1~^~A~^^^1^8.67^8.83^2^8.55^8.95^~2, 3~^~02/01/2005~ -~19337~^~269~^80.70^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19337~^~303~^0.04^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.12^0.20^~1, 2, 3~^~02/01/2005~ -~19337~^~309~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~02/01/2005~ -~19337~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~19337~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~19340~^~203~^0.10^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~204~^0.20^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~205~^90.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19340~^~207~^0.80^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~255~^8.00^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~269~^84.87^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~19340~^~303~^1.61^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~309~^6.06^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19340~^~418~^0.00^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19340~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19345~^~203~^1.40^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~204~^0.97^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~205~^34.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19345~^~207~^0.91^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~255~^62.16^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~269~^28.57^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~19345~^~303~^0.00^1^^~12~^~MA~^^^^^^^^^^~12/01/2006~ -~19345~^~309~^0.48^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~323~^0.01^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~203~^4.60^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~204~^8.90^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~205~^62.90^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19348~^~207~^1.80^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~255~^21.80^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~269~^34.82^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~303~^1.30^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19348~^~309~^0.83^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~323~^2.63^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~418~^0.06^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19349~^~203~^0.00^1^^~4~^^^^^^^^^^^~07/01/2003~ -~19349~^~204~^0.00^5^0.03^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~205~^77.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~19349~^~207~^0.40^4^0.07^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~255~^22.01^6^0.79^~11~^~JO~^^^1^21.22^22.80^1^11.97^32.04^~4~^~11/01/2002~ -~19349~^~269~^77.59^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~19349~^~303~^0.37^1^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~309~^0.04^5^0.01^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19349~^~418~^0.00^1^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19349~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19350~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~19350~^~204~^0.20^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~205~^76.79^0^^~4~^~NC~^^^^^^^^^^~12/01/2004~ -~19350~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~255~^22.81^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~269~^76.77^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~19350~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~309~^0.44^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19350~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19350~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19350~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19351~^~203~^0.00^3^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~204~^0.00^3^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~205~^76.00^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19351~^~207~^0.00^6^4.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~255~^24.00^6^1.49^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~269~^75.65^0^^~4~^~NR~^~19350~^^^^^^^^^~09/01/2012~ -~19351~^~303~^0.03^19^9.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~309~^0.02^19^8.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~ -~19351~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19352~^~203~^6.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~204~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~205~^71.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19352~^~207~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~255~^21.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~269~^71.30^0^^~4~^~NR~^^^^^^^^^^~07/01/2008~ -~19352~^~303~^0.96^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~309~^0.14^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19353~^~203~^0.04^8^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.50^~2~^~03/01/2010~ -~19353~^~204~^0.06^8^0.05^~1~^~A~^^^2^0.00^0.20^1^-0.67^0.79^~1, 2~^~03/01/2010~ -~19353~^~205~^67.04^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~207~^0.47^6^^~1~^~A~^^^1^0.43^0.51^^^^~2~^~03/01/2010~ -~19353~^~210~^58.32^25^3.68^~6~^~JA~^^^2^48.75^65.56^1^13.62^107.26^~2~^~03/01/2010~ -~19353~^~211~^1.60^22^0.58^~6~^~JA~^^^2^0.65^5.20^1^-5.71^9.02^~2~^~03/01/2010~ -~19353~^~212~^0.52^25^0.21^~6~^~JA~^^^2^0.00^1.70^1^-2.23^3.31^~2~^~03/01/2010~ -~19353~^~213~^0.00^6^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2010~ -~19353~^~214~^0.00^6^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2010~ -~19353~^~255~^32.39^12^0.35^~6~^~JA~^^^2^29.67^33.05^1^27.85^36.93^~2~^~03/01/2010~ -~19353~^~269~^60.46^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~19353~^~287~^0.00^6^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~03/01/2010~ -~19353~^~303~^0.11^8^3.0e-03^~1~^~A~^^^2^0.11^0.12^1^0.07^0.14^~2~^~03/01/2010~ -~19353~^~309~^1.47^16^0.77^~1~^~A~^^^2^0.70^4.20^1^-8.34^11.28^~2~^~03/01/2010~ -~19353~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19353~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19353~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19353~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19355~^~203~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~205~^74.90^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~ -~19355~^~207~^2.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~255~^22.70^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~19355~^~269~^74.90^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~ -~19355~^~303~^3.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~309~^0.41^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~19355~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19355~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19359~^~203~^6.86^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~204~^24.38^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~205~^62.85^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~207~^1.43^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19359~^~255~^4.47^0^^~4~^~O~^^^^^^^^^^~02/01/2006~ -~19359~^~269~^46.54^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~303~^0.68^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19360~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~204~^0.10^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~205~^69.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19360~^~207~^0.20^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~255~^30.10^3^1.27^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~269~^42.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19360~^~303~^0.07^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~309~^0.23^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19360~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19362~^~203~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~205~^83.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19362~^~207~^0.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~255~^15.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~303~^0.74^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~309~^0.03^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19363~^~203~^0.19^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~204~^4.25^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~205~^90.76^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19363~^~207~^0.97^0^^~4~^~BFZN~^~19370~^^^^^^^^^~02/01/2006~ -~19363~^~255~^3.83^0^^~4~^~BFZN~^~19370~^^^^^^^^^~02/01/2006~ -~19363~^~269~^75.92^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19364~^~203~^1.21^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~205~^57.01^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~19364~^~207~^1.15^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~255~^40.63^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~269~^57.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~303~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~309~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~323~^0.05^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~342~^0.02^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~418~^0.18^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19365~^~203~^0.80^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19365~^~204~^0.30^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19365~^~205~^79.00^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~ -~19365~^~207~^0.10^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19365~^~255~^19.80^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19365~^~269~^46.80^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19365~^~303~^0.22^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~309~^0.04^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~323~^0.00^0^^~7~^^^^^^^^^^^ -~19365~^~418~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19365~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19366~^~203~^0.10^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19366~^~204~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19366~^~205~^66.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19366~^~207~^0.40^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19366~^~255~^33.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19366~^~269~^21.01^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19366~^~303~^0.12^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~309~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19366~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19367~^~203~^4.50^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~204~^22.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~205~^58.08^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~19367~^~207~^0.73^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~255~^14.69^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~269~^36.72^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19367~^~303~^1.05^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~309~^1.05^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19368~^~203~^0.19^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~204~^4.34^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~205~^90.77^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~207~^0.97^0^^~4~^~BFZN~^~19370~^^^^^^^^^~02/01/2006~ -~19368~^~255~^3.83^0^^~4~^~BFZN~^~19370~^^^^^^^^^~02/01/2006~ -~19368~^~269~^75.76^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19368~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19369~^~203~^0.18^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~204~^4.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~205~^91.02^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19369~^~207~^0.97^0^^~4~^~BFZN~^~19370~^^^^^^^^^~01/01/2006~ -~19369~^~255~^3.83^0^^~4~^~BFZN~^~19370~^^^^^^^^^~01/01/2006~ -~19369~^~269~^73.16^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~303~^0.01^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~203~^0.19^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~204~^4.37^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~205~^90.78^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~207~^0.97^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~255~^3.83^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~269~^75.84^1^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~19370~^~303~^0.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~309~^0.02^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~323~^0.17^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19371~^~203~^0.34^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~204~^12.74^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~205~^74.28^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~207~^0.47^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~255~^12.18^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~303~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~309~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~418~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~203~^1.10^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~204~^12.87^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~205~^71.02^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~207~^0.69^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~255~^14.07^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~303~^0.93^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~309~^0.63^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~418~^0.01^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19375~^~203~^0.44^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~204~^0.53^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~205~^83.65^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19375~^~207~^0.11^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~255~^15.27^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~269~^80.44^0^^~4~^~RC~^^^^^^^^^^~07/01/2008~ -~19375~^~303~^0.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~309~^0.06^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~418~^0.05^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~203~^2.26^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~204~^17.48^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~205~^71.34^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~207~^0.76^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~255~^7.82^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~269~^64.06^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~303~^0.96^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~309~^0.58^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~323~^0.32^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~418~^0.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~203~^0.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~204~^3.33^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~205~^91.56^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~207~^0.18^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~255~^4.85^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~269~^68.48^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~303~^0.01^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~309~^0.21^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~323~^0.09^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~418~^0.01^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~203~^1.07^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~204~^32.75^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~205~^64.72^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~207~^0.66^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~255~^0.55^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~269~^63.47^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~303~^0.03^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~309~^0.12^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~323~^0.94^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~418~^0.11^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~19383~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~203~^1.32^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~204~^0.06^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~205~^89.05^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~207~^0.14^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~255~^9.16^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~269~^78.96^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~303~^0.02^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~309~^0.09^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~323~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~418~^0.01^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19387~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~204~^2.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~205~^23.90^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~207~^0.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~255~^73.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~303~^3.53^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19387~^~309~^0.11^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19393~^~203~^4.00^3^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~204~^6.00^3^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~205~^24.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19393~^~207~^1.00^3^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~255~^63.80^3^0.38^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~303~^1.25^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19393~^~309~^0.49^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~418~^0.29^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~203~^2.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~204~^33.60^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~205~^58.40^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19400~^~207~^1.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~255~^4.30^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~269~^35.34^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~19400~^~303~^1.25^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~309~^0.75^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~323~^0.24^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19400~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19400~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19400~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19401~^~203~^9.00^4^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~204~^14.30^4^1.03^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~205~^71.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19401~^~207~^3.40^4^0.20^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~255~^1.60^4^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~303~^1.70^4^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~309~^1.88^4^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~203~^7.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~204~^20.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~205~^64.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19403~^~207~^1.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~255~^6.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~303~^6.35^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~309~^5.29^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19404~^~203~^5.65^3^0.13^~1~^~A~^^^1^5.48^5.91^2^5.08^6.21^~2, 3~^~03/01/2006~ -~19404~^~204~^16.57^3^1.86^~1~^~A~^^^1^14.52^20.30^2^8.54^24.60^~2, 3~^~03/01/2006~ -~19404~^~205~^70.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~207~^1.14^3^0.04^~1~^~A~^^^1^1.05^1.21^2^0.93^1.33^~2, 3~^~03/01/2006~ -~19404~^~209~^21.95^3^2.18^~1~^~A~^^^1^17.58^24.28^2^12.54^31.35^~2, 3~^~03/01/2006~ -~19404~^~210~^16.51^3^2.86^~1~^~A~^^^1^10.90^20.35^2^4.16^28.85^~2, 3~^~03/01/2006~ -~19404~^~211~^5.16^3^1.68^~1~^~A~^^^1^2.63^8.35^2^-2.08^12.41^~2, 3~^~03/01/2006~ -~19404~^~212~^2.01^3^0.75^~1~^~A~^^^1^0.50^2.79^2^-1.23^5.26^~2, 3~^~03/01/2006~ -~19404~^~213~^0.50^3^0.25^~1~^~A~^^^1^0.00^0.80^2^-0.58^1.58^~1, 2, 3~^~03/01/2006~ -~19404~^~214~^4.73^3^0.89^~1~^~A~^^^1^3.66^6.49^2^0.89^8.55^~2, 3~^~03/01/2006~ -~19404~^~255~^6.45^3^0.20^~1~^~A~^^^1^6.05^6.69^2^5.57^7.32^~2, 3~^~03/01/2006~ -~19404~^~269~^28.92^3^0.93^~1~^~A~^^^1^27.05^29.96^2^24.88^32.95^~2, 3~^~03/01/2006~ -~19404~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~303~^2.19^3^0.03^~1~^~A~^^^1^2.13^2.23^2^2.05^2.32^~2, 3~^~03/01/2006~ -~19404~^~309~^1.30^3^0.04^~1~^~A~^^^1^1.21^1.38^2^1.08^1.50^~2, 3~^~03/01/2006~ -~19404~^~323~^0.31^3^0.09^~1~^~A~^^^1^0.13^0.44^2^-0.09^0.70^~2, 3~^~03/01/2006~ -~19404~^~341~^0.03^3^0.01^~1~^~A~^^^1^0.01^0.05^2^-0.01^0.08^~1, 2, 3~^~03/01/2006~ -~19404~^~342~^2.22^3^0.58^~1~^~A~^^^1^1.14^3.14^2^-0.28^4.72^~2, 3~^~03/01/2006~ -~19404~^~343~^0.89^3^0.24^~1~^~A~^^^1^0.41^1.23^2^-0.17^1.94^~2, 3~^~03/01/2006~ -~19404~^~344~^0.24^3^0.08^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~19404~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~346~^0.03^3^0.01^~1~^~A~^^^1^0.01^0.05^2^-0.01^0.07^~1, 2, 3~^~03/01/2006~ -~19404~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19404~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19404~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~19405~^~203~^6.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~204~^15.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~205~^70.80^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19405~^~207~^1.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~255~^6.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~303~^2.57^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~309~^1.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19406~^~203~^8.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~204~^20.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~205~^63.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19406~^~207~^1.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~255~^6.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~303~^2.18^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~309~^1.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~418~^0.24^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~203~^21.50^5^0.51^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~204~^49.60^5^0.69^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~205~^5.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19407~^~207~^4.40^5^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~255~^19.10^5^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~303~^3.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~309~^2.42^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~418~^1.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~203~^57.90^6^0.47^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~204~^31.80^6^1.12^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~205~^1.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19408~^~207~^7.00^6^0.75^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~255~^2.10^6^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~303~^1.04^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~309~^0.71^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~418~^0.13^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19409~^~203~^1.42^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~204~^7.17^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~205~^72.18^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~207~^0.82^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~255~^18.27^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~269~^64.30^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~303~^0.60^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~309~^0.37^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~323~^0.19^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~418~^0.09^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19410~^~203~^4.62^6^0.09^~1~^~A~^^^1^4.31^4.94^5^4.37^4.87^~2, 3~^~05/01/2014~ -~19410~^~204~^35.28^6^0.43^~1~^~A~^^^1^34.02^36.93^5^34.15^36.41^~2, 3~^~05/01/2014~ -~19410~^~205~^55.38^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~207~^2.34^6^0.08^~1~^~A~^^^1^2.09^2.68^5^2.11^2.56^~2, 3~^~05/01/2014~ -~19410~^~209~^51.40^2^^~1~^~A~^^^1^51.00^51.80^1^^^^~05/01/2014~ -~19410~^~210~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~05/01/2014~ -~19410~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~05/01/2014~ -~19410~^~212~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~05/01/2014~ -~19410~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~19410~^~214~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 2, 3~^~05/01/2014~ -~19410~^~255~^2.37^6^0.05^~1~^~A~^^^1^2.20^2.60^5^2.22^2.51^~2, 3~^~05/01/2014~ -~19410~^~269~^0.76^2^^~1~^~A~^^^1^0.75^0.77^1^^^^~05/01/2014~ -~19410~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~19410~^~303~^0.80^6^0.02^~1~^~A~^^^1^0.67^0.84^5^0.72^0.86^~2, 3~^~05/01/2014~ -~19410~^~309~^0.58^6^0.03^~1~^~A~^^^1^0.50^0.67^5^0.49^0.65^~2, 3~^~05/01/2014~ -~19410~^~323~^13.72^3^0.56^~1~^~A~^^^1^12.60^14.29^2^11.30^16.14^~2, 3~^~05/01/2014~ -~19410~^~341~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.07^0.22^~2, 3~^~05/01/2014~ -~19410~^~342~^9.52^3^0.64^~1~^~A~^^^1^8.23^10.17^2^6.74^12.28^~2, 3~^~05/01/2014~ -~19410~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~344~^0.35^3^0.03^~1~^~A~^^^1^0.29^0.39^2^0.21^0.48^~2, 3~^~05/01/2014~ -~19410~^~345~^0.09^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.02^0.16^~2, 3~^~05/01/2014~ -~19410~^~346~^0.59^3^0.07^~1~^~A~^^^1^0.44^0.67^2^0.27^0.89^~2, 3~^~05/01/2014~ -~19410~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~19410~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19411~^~203~^6.39^17^0.21^~1~^~A~^^^1^5.44^7.19^5^5.85^6.92^~2, 3~^~05/01/2014~ -~19411~^~204~^33.98^17^0.58^~1~^~A~^^^1^30.74^38.39^6^32.55^35.41^~2, 3~^~05/01/2014~ -~19411~^~205~^53.83^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~207~^3.94^17^0.04^~1~^~A~^^^1^3.13^4.23^6^3.82^4.05^~2, 3~^~05/01/2014~ -~19411~^~210~^0.33^9^0.02^~1~^~A~^^^1^0.30^0.40^2^0.23^0.43^~2, 3~^~05/01/2014~ -~19411~^~211~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~212~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~255~^1.86^17^0.04^~1~^~A~^^^1^1.24^2.44^7^1.74^1.97^~2, 3~^~05/01/2014~ -~19411~^~269~^0.33^9^0.02^~1~^~A~^^^1^0.30^0.40^2^0.23^0.43^~2, 3~^~05/01/2014~ -~19411~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~303~^1.28^17^0.05^~1~^~A~^^^1^1.02^1.49^5^1.15^1.40^~2, 3~^~05/01/2014~ -~19411~^~309~^1.09^17^0.06^~1~^~A~^^^1^0.77^1.35^5^0.92^1.25^~2, 3~^~05/01/2014~ -~19411~^~323~^10.45^9^0.70^~1~^~A~^^^1^8.39^16.96^3^8.01^12.88^~2, 3~^~05/01/2014~ -~19411~^~341~^0.24^9^0.04^~1~^~A~^^^1^0.00^0.47^2^0.05^0.42^~1, 2, 3~^~05/01/2014~ -~19411~^~342~^10.83^9^1.86^~1~^~A~^^^1^6.41^19.68^3^4.15^17.50^~2, 3~^~05/01/2014~ -~19411~^~343~^0.17^9^0.07^~1~^~A~^^^1^0.00^1.16^4^-0.05^0.38^~1, 2, 3~^~05/01/2014~ -~19411~^~344~^0.09^9^0.03^~1~^~A~^^^1^0.00^0.58^3^0.00^0.18^~1, 2, 3~^~05/01/2014~ -~19411~^~345~^0.01^9^7.0e-03^~1~^~A~^^^1^0.00^0.15^1^-0.08^0.09^~1, 2, 3~^~05/01/2014~ -~19411~^~346~^0.05^9^0.03^~1~^~A~^^^1^0.00^0.69^4^-0.03^0.13^~1, 2, 3~^~05/01/2014~ -~19411~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19411~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19411~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19412~^~203~^7.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~204~^37.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~205~^50.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19412~^~207~^3.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~255~^1.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~303~^1.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~309~^0.64^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19413~^~203~^8.40^3^0.27^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~204~^3.20^3^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~205~^81.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19413~^~207~^1.40^3^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~255~^5.90^3^0.61^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~303~^1.17^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~309~^2.22^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19414~^~203~^8.50^10^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~204~^3.50^10^0.34^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~205~^80.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19414~^~207~^1.60^10^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~255~^6.30^10^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~303~^1.96^10^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~309~^2.53^4^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19415~^~203~^6.70^3^0.20^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~204~^34.40^3^0.51^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~205~^53.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19415~^~207~^3.30^3^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~255~^2.20^3^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~269~^0.22^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19415~^~303~^2.27^3^0.73^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~309~^0.99^3^6.0e-03^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~323~^9.11^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19415~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19415~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19415~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19416~^~203~^8.10^3^0.27^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~204~^3.80^3^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~205~^79.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19416~^~207~^1.50^3^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~255~^6.80^3^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~303~^1.80^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~309~^3.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~203~^10.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~204~^36.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~205~^46.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19418~^~207~^3.90^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~269~^0.19^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~303~^0.74^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~309~^1.17^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~323~^3.85^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19418~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19418~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19419~^~203~^8.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~204~^2.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~205~^83.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19419~^~207~^1.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~255~^4.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~269~^23.47^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19419~^~303~^1.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~309~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~344~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19419~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~203~^9.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~204~^23.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~205~^62.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19420~^~207~^1.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~255~^2.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~303~^2.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~309~^1.25^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19421~^~203~^8.50^4^0.48^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~204~^27.20^4^0.78^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~205~^57.70^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19421~^~207~^4.80^4^0.30^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~255~^1.80^4^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~303~^1.84^4^0.27^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~309~^0.91^4^0.14^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~203~^7.10^5^0.26^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~204~^20.80^6^0.31^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~205~^66.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19422~^~207~^4.10^5^0.26^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~255~^1.00^5^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~269~^0.22^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19422~^~303~^1.35^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~309~^0.07^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~323~^5.47^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~ -~19422~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19423~^~203~^7.74^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~204~^0.70^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~205~^65.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19423~^~207~^4.57^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~209~^58.20^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19423~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~303~^2.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~309~^3.50^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~19423~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/1998~ -~19423~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19423~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19424~^~203~^8.70^15^0.23^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~204~^15.20^24^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~205~^71.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19424~^~207~^3.20^15^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~255~^1.30^15^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~303~^1.63^15^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19433~^~203~^11.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~204~^5.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~205~^80.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19433~^~207~^1.40^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19433~^~255~^1.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~269~^0.67^0^^~4~^~BFCN~^~19056~^^^^^^^^^~05/01/2007~ -~19433~^~303~^1.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~309~^1.15^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~323~^0.77^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~ -~19433~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19433~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19434~^~203~^8.50^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~204~^12.10^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~205~^72.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19434~^~207~^4.05^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~19434~^~255~^3.00^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~269~^7.29^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~303~^1.28^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~309~^2.14^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~323~^4.25^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~19434~^~418~^2.14^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19434~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19435~^~203~^5.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19435~^~204~^0.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19435~^~205~^77.60^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~207~^1.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19435~^~209~^24.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~210~^33.51^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~211~^4.27^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~212~^7.46^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~213~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~214~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~255~^13.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~269~^45.24^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~287~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~303~^4.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~19435~^~309~^1.42^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~323~^0.22^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~418~^0.18^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19436~^~203~^2.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~204~^1.40^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~205~^90.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19436~^~207~^0.54^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~255~^6.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~269~^64.68^0^^~4~^~O~^^^^^^^^^^~02/01/2009~ -~19436~^~303~^0.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~309~^0.62^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~323~^0.13^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19436~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~19436~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19436~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19437~^~203~^9.64^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~204~^0.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19437~^~205~^83.76^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~19437~^~207~^4.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~19437~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19437~^~269~^3.69^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~303~^3.57^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~19437~^~309~^0.74^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~ -~19437~^~323~^0.04^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~ -~19437~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~19437~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19437~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19438~^~203~^3.40^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~204~^9.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~205~^80.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19438~^~207~^1.20^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~255~^5.90^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~269~^19.36^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~19438~^~303~^2.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19438~^~309~^0.50^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19438~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19439~^~203~^8.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~204~^7.40^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~205~^78.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~207~^1.60^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~255~^5.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~303~^8.60^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~309~^2.20^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19440~^~203~^4.47^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~204~^13.02^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~205~^72.31^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~19440~^~207~^5.30^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19440~^~255~^4.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19440~^~269~^38.78^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~303~^1.40^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~19440~^~309~^1.41^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~323~^10.79^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~19440~^~418~^0.14^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~19440~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~19441~^~203~^4.22^6^0.05^~1~^~A~^^^1^4.05^4.40^5^4.08^4.35^~2, 3~^~04/01/2015~ -~19441~^~204~^8.67^6^0.09^~1~^~A~^^^1^8.40^8.90^5^8.42^8.91^~2, 3~^~04/01/2015~ -~19441~^~205~^67.61^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~207~^2.80^6^0.02^~1~^~A~^^^1^2.73^2.86^5^2.75^2.85^~2, 3~^~04/01/2015~ -~19441~^~209~^24.40^3^0.20^~1~^~A~^^^1^24.00^24.60^2^23.53^25.26^~2, 3~^~04/01/2015~ -~19441~^~210~^4.10^3^0.08^~1~^~A~^^^1^4.00^4.26^2^3.75^4.44^~2, 3~^~04/01/2015~ -~19441~^~211~^12.43^3^0.16^~1~^~A~^^^1^12.21^12.75^2^11.73^13.13^~2, 3~^~04/01/2015~ -~19441~^~212~^9.19^3^0.15^~1~^~A~^^^1^9.01^9.49^2^8.54^9.84^~2, 3~^~04/01/2015~ -~19441~^~213~^1.08^3^0.01^~1~^~A~^^^1^1.06^1.11^2^1.01^1.14^~2, 3~^~04/01/2015~ -~19441~^~214~^2.18^3^0.15^~1~^~A~^^^1^1.97^2.47^2^1.53^2.82^~2, 3~^~04/01/2015~ -~19441~^~255~^16.70^6^0.06^~1~^~A~^^^1^16.50^17.00^5^16.52^16.87^~2, 3~^~04/01/2015~ -~19441~^~269~^28.98^3^0.27^~1~^~A~^^^1^28.56^29.49^2^27.81^30.15^~2, 3~^~04/01/2015~ -~19441~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~303~^6.14^6^0.16^~1~^~A~^^^1^5.38^6.50^5^5.72^6.55^~2, 3~^~04/01/2015~ -~19441~^~309~^5.24^6^0.07^~1~^~A~^^^1^4.97^5.48^5^5.04^5.44^~2, 3~^~04/01/2015~ -~19441~^~323~^0.93^3^0.02^~1~^~A~^^^1^0.88^0.97^2^0.81^1.04^~2, 3~^~04/01/2015~ -~19441~^~341~^0.18^3^0.01^~1~^~A~^^^1^0.15^0.20^2^0.12^0.23^~2, 3~^~04/01/2015~ -~19441~^~342~^5.63^3^0.20^~1~^~A~^^^1^5.26^5.96^2^4.76^6.49^~2, 3~^~04/01/2015~ -~19441~^~343~^2.10^3^0.07^~1~^~A~^^^1^1.97^2.22^2^1.78^2.41^~2, 3~^~04/01/2015~ -~19441~^~344~^0.22^3^0.07^~1~^~A~^^^1^0.08^0.31^2^-0.09^0.54^~2, 3~^~04/01/2015~ -~19441~^~345~^0.53^3^0.09^~1~^~A~^^^1^0.37^0.69^2^0.13^0.93^~2, 3~^~04/01/2015~ -~19441~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~06/01/2012~ -~19441~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~19441~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~19444~^~203~^8.44^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~204~^3.53^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~205~^65.22^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19444~^~207~^3.06^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~209~^56.00^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~210~^0.89^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~211~^0.28^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~212~^0.21^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~213~^1.44^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~19444~^~255~^1.66^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~269~^2.82^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~19444~^~303~^4.80^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~309~^3.40^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~323~^3.53^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~ -~19444~^~341~^0.00^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~19444~^~342~^0.00^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~19444~^~343~^0.00^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~19444~^~418~^0.27^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~ -~19444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19445~^~203~^5.06^4^0.08^~1~^~A~^^^1^4.87^5.25^3^4.80^5.31^~2, 3~^~07/01/2008~ -~19445~^~204~^0.93^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19445~^~205~^56.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~19445~^~207~^2.84^4^0.05^~1~^~A~^^^1^2.75^2.99^3^2.66^3.00^~2, 3~^~07/01/2008~ -~19445~^~209~^46.07^4^0.54^~1~^~A~^^^1^44.80^47.20^3^44.35^47.79^~2, 3~^~07/01/2008~ -~19445~^~210~^0.24^4^0.16^~1~^~A~^^^1^0.07^0.74^3^-0.29^0.77^~1, 2, 3~^~07/01/2008~ -~19445~^~211~^0.13^4^0.05^~1~^~A~^^^1^0.07^0.31^3^-0.05^0.32^~1, 2, 3~^~07/01/2008~ -~19445~^~212~^0.14^4^0.06^~1~^~A~^^^1^0.07^0.35^3^-0.07^0.36^~1, 2, 3~^~07/01/2008~ -~19445~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~214~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~255~^2.63^4^0.08^~1~^~A~^^^1^2.45^2.79^3^2.37^2.89^~2, 3~^~07/01/2008~ -~19445~^~269~^0.59^4^0.29^~1~^~A~^^^1^0.29^1.47^3^-0.34^1.52^~2, 3~^~07/01/2008~ -~19445~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~303~^1.14^4^0.01^~1~^~A~^^^1^1.11^1.18^3^1.09^1.18^~2, 3~^~07/01/2008~ -~19445~^~309~^0.78^4^7.0e-03^~1~^~A~^^^1^0.76^0.80^3^0.75^0.80^~2, 3~^~07/01/2008~ -~19445~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~19445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~19524~^~203~^2.30^3^0.27^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~204~^24.90^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~205~^68.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19524~^~207~^2.70^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~255~^2.00^3^0.69^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~269~^3.82^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~303~^1.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~309~^0.38^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~323~^11.34^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19524~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19524~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19701~^~203~^4.20^5^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~204~^29.70^8^0.77^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~205~^63.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19701~^~207~^1.20^7^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~255~^0.70^7^0.07^~1~^~A~^^^^^^^^^^~01/01/1996~ -~19701~^~303~^3.13^5^0.28^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~309~^1.62^3^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~203~^7.80^84^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~205~^90.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19702~^~207~^0.70^84^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~255~^1.00^84^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~303~^0.15^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~309~^0.01^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~203~^55.30^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~205~^33.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19703~^~207~^4.70^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~255~^6.70^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~303~^0.02^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~309~^0.07^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~203~^55.30^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~204~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~205~^33.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19704~^~207~^4.70^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~255~^6.70^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~303~^0.02^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~309~^0.07^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~203~^0.00^6^0.00^~1~^^^^^^^^^^^~08/01/1991~ -~19705~^~204~^4.40^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19705~^~205~^89.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~207~^3.80^6^0.01^~1~^^^^^^^^^^^~08/01/1991~ -~19705~^~255~^2.80^6^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19705~^~303~^0.12^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~309~^0.04^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~418~^0.01^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~203~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~204~^5.00^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~205~^88.40^0^^~4~^^^^^^^^^^^~04/01/1996~ -~19706~^~207~^2.50^6^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~255~^4.10^6^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~303~^0.05^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~309~^0.09^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~203~^0.10^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~204~^1.50^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~205~^90.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19708~^~207~^2.40^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~255~^5.20^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~303~^0.17^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~309~^0.02^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~203~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~204~^0.10^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~205~^94.30^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19709~^~207~^1.40^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~255~^4.00^6^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~303~^0.12^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~309~^0.08^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~203~^0.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~204~^1.10^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~205~^92.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19710~^~207~^2.00^22^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~255~^3.90^22^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~303~^0.05^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~309~^0.09^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~418~^0.00^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19719~^~203~^0.70^11^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~204~^0.20^8^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~205~^64.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19719~^~207~^0.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~255~^34.50^6^0.81^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~269~^43.40^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~303~^0.49^3^0.07^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~309~^0.06^4^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~323~^0.13^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19719~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19720~^~203~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~204~^0.10^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~205~^69.60^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19720~^~207~^0.20^3^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~255~^30.10^3^1.27^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~303~^0.07^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~309~^0.23^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19800~^~203~^8.10^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~204~^2.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~205~^83.40^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19800~^~207~^1.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~255~^4.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~303~^1.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~309~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19802~^~203~^5.76^6^0.44^~1~^~A~^^^^3.57^6.29^^^^^~05/01/2005~ -~19802~^~204~^35.76^3^2.89^~1~^~A~^^^^31.44^41.25^^^^^~05/01/2005~ -~19802~^~205~^54.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~207~^2.89^6^0.08^~1~^~A~^^^^2.64^3.17^^^^^~08/01/2015~ -~19802~^~211~^0.15^6^0.07^~1~^~A~^^^^0.07^0.53^^^^^~08/01/2015~ -~19802~^~213~^2.12^6^0.18^~1~^~A~^^^^1.60^2.90^^^^^~08/01/2015~ -~19802~^~255~^1.50^6^0.12^~1~^~A~^^^^1.21^2.03^^^^^~05/01/2005~ -~19802~^~269~^2.76^6^0.43^~1~^~A~^^^^1.97^4.86^^^^^~05/01/2005~ -~19802~^~287~^0.07^6^0.00^~1~^~A~^^^^0.07^0.07^^^^^~08/01/2015~ -~19802~^~303~^1.10^1^^~1~^^^^^^^^^^^~08/01/2015~ -~19802~^~309~^0.60^6^0.02^~1~^~A~^^^^0.53^0.67^^^^^~05/01/2005~ -~19802~^~323~^5.12^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~19802~^~418~^0.48^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19802~^~573~^0.00^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~19804~^~203~^7.00^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~204~^32.70^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~205~^56.20^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~207~^2.80^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~255~^1.20^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~303~^4.90^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~ -~19804~^~309~^1.06^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~ -~19806~^~203~^12.00^3^0.56^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~204~^4.20^3^1.18^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~205~^77.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19806~^~207~^1.80^3^0.08^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~255~^4.10^3^0.28^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~303~^2.66^3^0.30^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~309~^3.44^3^0.38^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19807~^~203~^9.00^32^0.26^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~204~^28.10^40^1.07^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~205~^57.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19807~^~207~^2.90^32^0.21^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~255~^2.80^50^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~303~^2.78^63^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~309~^2.64^52^0.09^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19809~^~203~^7.00^145^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~204~^34.60^158^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~205~^52.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19809~^~207~^3.60^157^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~255~^1.90^191^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~303~^1.63^248^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~309~^1.09^88^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~203~^7.00^145^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~204~^34.60^158^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~205~^52.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19810~^~207~^3.60^157^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~255~^1.90^191^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~303~^1.63^248^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~309~^1.09^88^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~203~^7.00^145^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~204~^34.60^158^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~205~^52.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19811~^~207~^3.60^157^0.06^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~255~^1.90^191^0.05^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~269~^0.22^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19811~^~303~^1.63^248^0.02^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~309~^1.09^88^0.04^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~323~^9.11^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19811~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19811~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19811~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19812~^~203~^9.10^85^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~204~^3.50^94^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~205~^79.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19812~^~207~^4.90^82^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~255~^3.30^105^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~303~^1.67^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~309~^0.85^74^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19813~^~203~^9.10^85^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~204~^3.50^94^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~205~^79.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19813~^~207~^4.90^82^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~255~^3.30^105^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~303~^1.67^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~309~^0.85^74^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19814~^~203~^9.10^85^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~204~^3.50^94^0.15^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~205~^79.20^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19814~^~207~^4.90^82^0.17^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~255~^3.30^105^0.13^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~269~^2.21^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~19814~^~303~^4.32^76^0.11^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~309~^0.85^74^0.03^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~323~^0.35^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19814~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19814~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19814~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19816~^~203~^8.20^10^0.43^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~204~^2.80^10^0.34^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~205~^81.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19816~^~207~^1.70^10^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~255~^5.80^10^0.42^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~269~^0.88^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19816~^~303~^1.49^9^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~309~^3.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~323~^1.24^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19816~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19816~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19817~^~203~^9.00^4^0.69^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~204~^3.50^4^0.40^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~205~^80.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19817~^~207~^1.60^4^0.12^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~255~^5.90^4^0.50^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~303~^1.14^4^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~309~^2.50^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19818~^~203~^8.50^10^0.22^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~204~^3.50^10^0.34^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~205~^80.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19818~^~207~^1.60^10^0.10^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~255~^6.30^10^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~303~^1.96^10^0.19^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~309~^2.53^4^0.18^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19819~^~203~^7.60^7^0.32^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~204~^3.80^7^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~205~^81.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19819~^~207~^1.20^7^0.16^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~255~^5.90^7^0.31^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~303~^1.58^6^0.24^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~309~^3.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~418~^0.00^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~203~^10.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~204~^36.70^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~205~^46.50^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19820~^~207~^3.90^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~255~^2.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~303~^0.74^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~309~^1.17^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~418~^0.00^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19821~^~203~^13.80^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~204~^29.40^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~205~^44.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19821~^~207~^2.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~255~^9.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~303~^3.05^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~309~^3.22^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~203~^14.20^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~204~^31.90^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~205~^44.90^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~ -~19822~^~207~^2.30^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~255~^6.60^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~303~^3.39^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~309~^3.14^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~418~^0.00^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19823~^~203~^7.10^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~204~^20.80^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~205~^67.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19823~^~207~^3.30^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19823~^~255~^1.00^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~269~^0.22^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19823~^~303~^1.35^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~309~^1.01^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19823~^~323~^5.47^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19823~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19823~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19833~^~203~^11.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~204~^5.70^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~205~^80.10^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~207~^1.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~19833~^~255~^1.70^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~269~^0.85^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~303~^1.60^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~309~^1.15^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~323~^3.53^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~19833~^~418~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19833~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19856~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~204~^0.24^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~205~^19.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19856~^~207~^0.12^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~210~^5.68^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~211~^4.52^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~212~^3.70^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19856~^~214~^0.67^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~255~^79.96^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~269~^14.57^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19856~^~303~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19856~^~309~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19857~^~203~^7.80^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~204~^25.60^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~205~^62.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~19857~^~207~^2.60^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~255~^1.70^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~303~^3.70^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~309~^1.20^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~418~^0.05^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19858~^~203~^10.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19858~^~204~^17.93^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~19858~^~205~^68.26^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~19858~^~207~^1.51^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~255~^2.30^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~269~^62.50^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~19858~^~303~^1.90^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~309~^1.56^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~323~^12.36^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~19858~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19858~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~19860~^~203~^16.80^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~204~^23.71^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~205~^49.71^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19860~^~207~^6.79^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~255~^3.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~269~^1.53^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~303~^14.50^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~309~^6.70^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~323~^0.18^0^^~4~^~BFFN~^~19166~^^^^^^^^^~03/01/2003~ -~19860~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19860~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19860~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19866~^~203~^2.31^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~204~^9.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~205~^73.81^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~207~^0.40^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~255~^13.88^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~269~^45.95^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19866~^~303~^0.93^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~309~^0.53^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~323~^0.10^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19866~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19867~^~203~^4.48^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~204~^0.00^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~205~^30.06^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~19867~^~207~^1.11^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~255~^64.35^4^1.66^~1~^^^^^61.10^69.00^^^^^~10/01/2002~ -~19867~^~269~^6.30^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~19867~^~303~^0.00^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~309~^1.06^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~323~^0.00^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~418~^0.45^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19867~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~19868~^~203~^0.00^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~19868~^~204~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~205~^91.17^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19868~^~207~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~19868~^~209~^9.64^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19868~^~255~^8.83^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19868~^~269~^80.33^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~19868~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~19868~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~19871~^~203~^3.67^3^0.05^~1~^~A~^^^1^3.58^3.76^2^3.45^3.89^~2, 3~^~07/01/2015~ -~19871~^~204~^1.87^3^0.03^~1~^~A~^^^1^1.80^1.90^2^1.72^2.01^~2, 3~^~07/01/2015~ -~19871~^~205~^23.11^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~207~^1.41^3^0.02^~1~^~A~^^^1^1.37^1.45^2^1.31^1.51^~2, 3~^~07/01/2015~ -~19871~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~19871~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~19871~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~19871~^~213~^5.10^2^^~1~^~A~^^^1^5.04^5.17^1^^^^~07/01/2015~ -~19871~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~19871~^~255~^69.93^3^0.03^~1~^~A~^^^1^69.90^70.00^2^69.79^70.07^~2, 3~^~07/01/2015~ -~19871~^~269~^5.10^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~19871~^~303~^1.58^3^0.15^~1~^~A~^^^1^1.28^1.75^2^0.93^2.23^~2, 3~^~07/01/2015~ -~19871~^~309~^0.55^3^5.0e-03^~1~^~A~^^^1^0.54^0.56^2^0.53^0.57^~2, 3~^~07/01/2015~ -~19871~^~323~^0.30^0^^~4~^~BFZN~^~19265~^^^^^^^^^~07/01/2015~ -~19871~^~418~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~573~^0.00^0^^~4~^~BFZN~^~19265~^^^^^^^^^~03/01/2007~ -~19871~^~578~^0.00^0^^~4~^~BFZN~^~19265~^^^^^^^^^~03/01/2007~ -~19873~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2005~ -~19873~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19873~^~205~^5.14^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19873~^~207~^0.06^3^0.01^~1~^~A~^^^1^0.04^0.08^2^5.0e-03^0.10^~2, 3~^~04/01/2005~ -~19873~^~210~^0.70^3^0.01^~1~^~A~^^^1^0.68^0.73^2^0.64^0.76^~2, 3~^~04/01/2005~ -~19873~^~211~^0.47^3^0.02^~1~^~A~^^^1^0.42^0.50^2^0.36^0.57^~2, 3~^~04/01/2005~ -~19873~^~212~^0.34^3^7.0e-03^~1~^~A~^^^1^0.33^0.35^2^0.31^0.37^~2, 3~^~04/01/2005~ -~19873~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~255~^94.03^2^^~1~^~A~^^^1^94.01^94.04^1^^^^~04/01/2005~ -~19873~^~269~^1.52^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19873~^~303~^0.67^3^0.27^~1~^~A~^^^1^0.17^1.10^2^-0.49^1.83^~2, 3~^~04/01/2005~ -~19873~^~309~^0.47^3^0.21^~1~^~A~^^^1^0.07^0.81^2^-0.44^1.39^~1, 2, 3~^~04/01/2005~ -~19874~^~203~^4.31^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~204~^1.88^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~205~^30.07^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~207~^0.23^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19874~^~255~^63.51^0^^~4~^~FLC~^^^^^^^^^^~04/01/2004~ -~19874~^~269~^7.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~303~^0.71^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~203~^4.84^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~204~^4.59^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~205~^25.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~207~^0.38^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19875~^~255~^64.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2004~ -~19875~^~269~^22.78^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~303~^0.06^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~203~^4.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~204~^5.56^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~205~^26.03^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~207~^0.88^0^^~4~^~FLC~^^^^^^^^^^~04/01/2004~ -~19876~^~255~^62.71^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19876~^~269~^21.11^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~303~^0.21^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~203~^3.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~204~^2.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~205~^30.51^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~207~^0.57^0^^~4~^~FLC~^^^^^^^^^^~04/01/2004~ -~19877~^~255~^63.42^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19877~^~269~^20.93^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~303~^0.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~203~^4.69^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~204~^4.35^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~205~^26.06^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~207~^1.58^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19878~^~255~^63.32^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19878~^~269~^22.47^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~303~^0.31^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~203~^4.69^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~204~^7.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~205~^28.39^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~207~^0.72^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19879~^~255~^59.11^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19879~^~269~^25.38^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~303~^0.52^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~203~^3.99^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~204~^10.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~205~^21.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~207~^0.89^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19880~^~255~^63.52^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19880~^~269~^5.90^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~303~^0.19^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~203~^4.50^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~204~^7.05^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~205~^20.75^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~207~^1.22^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19881~^~255~^66.48^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19881~^~269~^7.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~303~^0.19^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~203~^3.68^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~204~^6.20^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~205~^21.92^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~207~^0.84^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19882~^~255~^67.86^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19882~^~269~^6.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~303~^0.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~203~^3.53^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~204~^5.68^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~205~^25.63^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~207~^0.76^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19883~^~255~^64.40^0^^~4~^~O~^~19882~^^^^^^^^^~04/01/2004~ -~19883~^~269~^5.49^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~303~^0.36^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~203~^3.71^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~204~^6.26^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~205~^21.70^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~207~^0.99^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19884~^~255~^67.34^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19884~^~269~^6.15^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~303~^0.27^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~203~^4.09^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~204~^4.10^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~205~^45.32^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~207~^0.98^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2004~ -~19886~^~255~^45.51^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19886~^~269~^24.62^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~303~^0.75^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~203~^3.90^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19887~^~204~^5.85^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19887~^~205~^42.75^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19887~^~207~^0.85^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19887~^~255~^46.65^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19887~^~269~^21.82^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~303~^0.38^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~203~^5.20^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19890~^~204~^13.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19890~^~205~^25.98^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19890~^~207~^1.13^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19890~^~255~^54.69^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19890~^~269~^8.64^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19890~^~303~^0.41^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~203~^3.69^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19891~^~204~^0.61^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19891~^~205~^12.88^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19891~^~207~^0.44^0^^~4~^~FLM~^^^^^^^^^^~04/01/2004~ -~19891~^~255~^82.38^0^^~4~^~O~^^^^^^^^^^~04/01/2004~ -~19891~^~269~^2.75^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19891~^~303~^0.28^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~203~^1.37^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~204~^2.33^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~205~^11.95^1^^~9~^~MC~^^^^^^^^^^~09/01/2015~ -~19892~^~207~^0.44^0^^~4~^~BFZN~^~19891~^^^^^^^^^~04/01/2004~ -~19892~^~255~^82.38^0^^~4~^~BFZN~^~19891~^^^^^^^^^~09/01/2015~ -~19892~^~269~^0.43^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~303~^0.03^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~203~^5.30^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~204~^7.28^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~205~^29.68^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~207~^1.16^0^^~4~^~BFFN~^~19876~^^^^^^^^^~04/01/2004~ -~19893~^~255~^56.58^0^^~4~^~O~^~19876~^^^^^^^^^~04/01/2004~ -~19893~^~269~^24.04^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~303~^0.85^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~203~^3.89^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~204~^2.17^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~205~^30.18^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~207~^0.56^0^^~4~^~BFFN~^~19877~^^^^^^^^^~04/01/2004~ -~19894~^~255~^63.20^0^^~4~^~O~^~19877~^^^^^^^^^~04/01/2004~ -~19894~^~269~^20.29^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~303~^0.84^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~203~^3.54^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~204~^5.80^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~205~^25.17^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~207~^0.78^0^^~4~^~BFFN~^~19883~^^^^^^^^^~04/01/2004~ -~19895~^~255~^64.71^0^^~4~^~O~^~19883~^^^^^^^^^~04/01/2004~ -~19895~^~269~^5.81^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~303~^0.59^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19896~^~203~^8.93^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~204~^23.21^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~205~^63.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~19896~^~207~^2.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~255~^1.66^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~269~^53.57^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19896~^~303~^0.64^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~309~^1.45^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~323~^2.56^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~418~^0.18^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19897~^~203~^9.51^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~204~^37.07^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~205~^50.22^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19897~^~207~^1.70^0^^~4~^~BFZN~^~19132~^^^^^^^^^~02/01/2006~ -~19897~^~255~^1.50^0^^~4~^~BFZN~^~19132~^^^^^^^^^~02/01/2006~ -~19897~^~269~^26.92^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~303~^3.56^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~323~^4.82^1^^~8~^~LC~^^^^^^^^^^~07/01/2006~ -~19897~^~418~^2.14^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19898~^~203~^3.17^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19898~^~204~^12.70^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19898~^~205~^22.23^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19898~^~207~^0.90^6^0.04^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~255~^61.00^50^0.36^~1~^^^^^^^^^^^~03/01/2009~ -~19898~^~269~^6.35^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19898~^~303~^0.09^35^7.0e-03^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~309~^0.69^14^0.16^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~323~^0.30^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~418~^0.39^3^0.04^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~573~^0.00^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19898~^~578~^0.00^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~ -~19899~^~203~^3.80^6^0.08^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~204~^12.70^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19899~^~205~^26.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19899~^~207~^1.00^6^0.05^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~255~^55.70^11^0.81^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~269~^6.35^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19899~^~303~^0.93^35^0.06^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~309~^0.58^35^0.02^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~323~^0.30^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~ -~19899~^~418~^0.29^5^0.05^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~573~^0.00^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19899~^~578~^0.00^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~ -~19902~^~203~^4.88^5^0.01^~1~^~A~^^^1^4.22^5.64^1^4.73^5.03^~2, 3~^~08/01/2008~ -~19902~^~204~^31.28^8^0.50^~1~^~A~^^^1^28.20^33.99^3^29.63^32.92^~2, 3~^~04/01/2009~ -~19902~^~205~^61.17^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19902~^~207~^1.70^5^0.01^~1~^~A~^^^1^1.58^1.84^2^1.65^1.74^~2, 3~^~08/01/2008~ -~19902~^~210~^46.25^5^0.14^~1~^~A~^^^1^43.08^49.29^1^44.51^47.98^~2, 3~^~08/01/2008~ -~19902~^~211~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~212~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~213~^1.65^5^0.01^~1~^~A~^^^1^0.00^2.43^1^1.46^1.83^~1, 2, 3~^~08/01/2008~ -~19902~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~255~^0.97^5^0.03^~1~^~A~^^^1^0.52^1.59^1^0.67^1.27^~2, 3~^~08/01/2008~ -~19902~^~269~^47.90^5^0.16^~1~^~A~^^^1^43.86^51.72^1^45.97^49.82^~2, 3~^~08/01/2008~ -~19902~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~303~^8.02^5^0.06^~1~^~A~^^^1^4.75^14.78^2^7.68^8.36^~2, 3~^~08/01/2008~ -~19902~^~309~^2.01^5^0.02^~1~^~A~^^^1^1.74^2.34^2^1.88^2.14^~2, 3~^~08/01/2008~ -~19902~^~323~^0.54^3^^~1~^~A~^^^1^0.48^0.57^^^^~2, 3~^~04/01/2009~ -~19902~^~341~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~342~^6.37^3^^~1~^~A~^^^1^6.20^6.74^^^^~2, 3~^~04/01/2009~ -~19902~^~343~^0.34^3^^~1~^~A~^^^1^0.13^0.41^^^^~2, 3~^~04/01/2009~ -~19902~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~346~^0.08^3^^~1~^~A~^^^1^0.07^0.08^^^^~2, 3~^~04/01/2009~ -~19902~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~418~^0.23^3^^~1~^~A~^^^1^0.15^0.34^^^^~2, 3~^~08/01/2008~ -~19903~^~203~^6.12^6^9.0e-03^~1~^~A~^^^1^5.45^7.39^3^6.09^6.14^~2, 3~^~08/01/2008~ -~19903~^~204~^38.31^9^0.16^~1~^~A~^^^1^36.34^39.37^4^37.85^38.76^~2, 3~^~04/01/2009~ -~19903~^~205~^52.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19903~^~207~^1.90^6^7.0e-03^~1~^~A~^^^1^1.63^2.17^3^1.88^1.92^~2, 3~^~08/01/2008~ -~19903~^~210~^36.39^6^0.02^~1~^~A~^^^1^35.44^37.92^3^36.32^36.46^~2, 3~^~08/01/2008~ -~19903~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~213~^0.31^6^0.00^~1~^~A~^^^1^0.00^1.56^^^^~1, 2, 3~^~08/01/2008~ -~19903~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~255~^1.25^6^0.02^~1~^~A~^^^1^0.69^1.56^3^1.17^1.32^~2, 3~^~08/01/2008~ -~19903~^~269~^36.71^6^0.02^~1~^~A~^^^1^35.44^37.92^3^36.63^36.78^~2, 3~^~08/01/2008~ -~19903~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~303~^6.32^6^0.07^~1~^~A~^^^1^4.10^9.23^3^6.08^6.55^~2, 3~^~08/01/2008~ -~19903~^~309~^2.65^6^0.01^~1~^~A~^^^1^2.47^2.72^3^2.58^2.70^~2, 3~^~08/01/2008~ -~19903~^~323~^0.59^3^^~1~^~A~^^^1^0.47^0.64^^^^~2, 3~^~04/01/2009~ -~19903~^~341~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~342~^8.47^3^^~1~^~A~^^^1^6.72^9.09^^^^~2, 3~^~04/01/2009~ -~19903~^~343~^0.34^3^^~1~^~A~^^^1^0.14^0.48^^^^~2, 3~^~04/01/2009~ -~19903~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~346~^0.10^3^^~1~^~A~^^^1^0.08^0.11^^^^~2, 3~^~04/01/2009~ -~19903~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~418~^0.18^3^^~1~^~A~^^^1^0.14^0.32^^^^~2, 3~^~08/01/2008~ -~19904~^~203~^7.79^2^^~1~^~A~^^^1^6.92^9.10^^^^^~08/01/2008~ -~19904~^~204~^42.63^4^0.17^~1~^~A~^^^1^39.86^46.55^1^41.39^43.85^~2, 3~^~04/01/2009~ -~19904~^~205~^45.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19904~^~207~^2.32^2^^~1~^~A~^^^1^2.03^2.75^^^^^~08/01/2008~ -~19904~^~210~^23.99^2^^~1~^~A~^^^1^14.47^30.33^^^^^~08/01/2008~ -~19904~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~255~^1.37^2^^~1~^~A~^^^1^1.05^1.84^^^^^~08/01/2008~ -~19904~^~269~^23.99^2^^~1~^~A~^^^1^14.47^30.33^^^^^~08/01/2008~ -~19904~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~303~^11.90^2^^~1~^~A~^^^1^8.94^16.33^^^^^~08/01/2008~ -~19904~^~309~^3.31^2^^~1~^~A~^^^1^2.93^3.88^^^^^~08/01/2008~ -~19904~^~323~^0.59^2^^~1~^~A~^^^1^0.57^0.63^^^^^~04/01/2009~ -~19904~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.03^^^^~1~^~04/01/2009~ -~19904~^~342~^9.19^2^^~1~^~A~^^^1^8.65^9.99^^^^^~04/01/2009~ -~19904~^~343~^0.29^2^^~1~^~A~^^^1^0.22^0.34^^^^^~04/01/2009~ -~19904~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~346~^0.14^2^^~1~^~A~^^^1^0.10^0.21^^^^^~04/01/2009~ -~19904~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~19904~^~418~^0.28^2^^~1~^~A~^^^1^0.28^0.28^^^^^~08/01/2008~ -~19905~^~203~^5.09^13^0.01^~1~^~A~^^^1^4.22^9.10^1^4.95^5.22^~2, 3~^~08/01/2008~ -~19905~^~204~^32.20^21^0.45^~1~^~A~^^^1^28.20^46.55^3^30.72^33.68^~2, 3~^~04/01/2009~ -~19905~^~205~^59.97^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~19905~^~207~^1.74^13^0.01^~1~^~A~^^^1^1.58^2.75^2^1.70^1.78^~2, 3~^~08/01/2008~ -~19905~^~210~^44.65^13^0.13^~1~^~A~^^^1^14.47^49.29^1^43.08^46.20^~2, 3~^~08/01/2008~ -~19905~^~211~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~212~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~213~^1.50^13^0.01^~1~^~A~^^^1^0.00^2.43^1^1.33^1.66^~1, 2, 3~^~08/01/2008~ -~19905~^~214~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~255~^1.00^13^0.03^~1~^~A~^^^1^0.52^1.84^1^0.73^1.27^~2, 3~^~08/01/2008~ -~19905~^~269~^46.14^13^0.14^~1~^~A~^^^1^14.47^51.72^1^44.41^47.87^~2, 3~^~08/01/2008~ -~19905~^~287~^0.00^13^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~303~^8.13^13^0.05^~1~^~A~^^^1^4.10^16.33^2^7.83^8.43^~2, 3~^~08/01/2008~ -~19905~^~309~^2.11^13^0.02^~1~^~A~^^^1^1.74^3.88^2^1.99^2.22^~2, 3~^~08/01/2008~ -~19905~^~323~^0.55^8^^~1~^~A~^^^1^0.47^0.64^^^^~2, 3~^~04/01/2009~ -~19905~^~341~^0.00^8^^~1~^~A~^^^1^0.00^0.03^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~342~^6.62^8^^~1~^~A~^^^1^6.20^9.99^^^^~2, 3~^~04/01/2009~ -~19905~^~343~^0.34^8^^~1~^~A~^^^1^0.13^0.48^^^^~2, 3~^~04/01/2009~ -~19905~^~344~^0.00^8^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~345~^0.00^8^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~346~^0.08^8^^~1~^~A~^^^1^0.07^0.21^^^^~2, 3~^~04/01/2009~ -~19905~^~347~^0.00^8^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~418~^0.23^8^^~1~^~A~^^^1^0.14^0.34^^^^~2, 3~^~08/01/2008~ -~19905~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19905~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19906~^~203~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~03/01/2009~ -~19906~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19906~^~205~^97.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19906~^~207~^0.45^4^0.01^~1~^~A~^^^1^0.42^0.48^3^0.41^0.48^~2, 3~^~03/01/2009~ -~19906~^~210~^44.35^4^0.44^~1~^~A~^^^1^43.62^45.61^3^42.93^45.77^~2, 3~^~03/01/2009~ -~19906~^~211~^0.80^4^0.25^~1~^~A~^^^1^0.07^1.24^3^-6.0e-03^1.60^~1, 2, 3~^~03/01/2009~ -~19906~^~212~^0.51^4^0.14^~1~^~A~^^^1^0.07^0.74^3^0.03^0.98^~1, 2, 3~^~03/01/2009~ -~19906~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19906~^~255~^2.44^4^0.19^~1~^~A~^^^1^2.07^2.95^3^1.80^3.06^~2, 3~^~03/01/2009~ -~19906~^~269~^45.66^4^0.69^~1~^~A~^^^1^43.99^47.35^3^43.46^47.86^~2, 3~^~03/01/2009~ -~19906~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19906~^~303~^1.64^4^0.04^~1~^~A~^^^1^1.56^1.76^3^1.50^1.77^~2, 3~^~03/01/2009~ -~19906~^~309~^0.08^4^5.0e-03^~1~^~A~^^^1^0.08^0.10^3^0.06^0.09^~2, 3~^~03/01/2009~ -~19907~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2009~ -~19907~^~204~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~19907~^~205~^99.53^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19907~^~207~^0.04^4^0.01^~1~^~A~^^^1^0.03^0.07^3^7.0e-03^0.07^~1, 2, 3~^~03/01/2009~ -~19907~^~210~^47.05^4^0.42^~1~^~A~^^^1^46.00^47.99^3^45.69^48.40^~2, 3~^~03/01/2009~ -~19907~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19907~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19907~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19907~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19907~^~255~^0.43^4^0.11^~1~^~A~^^^1^0.21^0.75^3^0.07^0.79^~2, 3~^~03/01/2009~ -~19907~^~269~^47.05^4^0.42^~1~^~A~^^^1^46.00^47.99^3^45.69^48.40^~2, 3~^~03/01/2009~ -~19907~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19907~^~303~^0.06^4^0.02^~1~^~A~^^^1^0.03^0.13^3^-0.01^0.13^~1, 2, 3~^~03/01/2009~ -~19907~^~309~^0.01^4^1.0e-03^~1~^~A~^^^1^0.01^0.01^3^6.0e-03^0.01^~2, 3~^~03/01/2009~ -~19908~^~203~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2009~ -~19908~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2009~ -~19908~^~205~^99.80^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19908~^~207~^0.17^6^0.04^~1~^~A~^^^1^0.10^0.36^5^0.06^0.28^~2, 3~^~03/01/2009~ -~19908~^~210~^99.19^6^0.37^~1~^~A~^^^1^97.83^99.90^5^98.23^100.14^~2, 3~^~03/01/2009~ -~19908~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~255~^0.03^6^8.0e-03^~1~^~A~^^^1^0.01^0.06^5^4.0e-03^0.04^~1, 2, 3~^~03/01/2009~ -~19908~^~269~^99.19^6^0.37^~1~^~A~^^^1^97.83^99.90^5^98.23^100.14^~2, 3~^~03/01/2009~ -~19908~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~303~^0.37^6^0.13^~1~^~A~^^^1^0.18^1.04^5^0.02^0.72^~2, 3~^~03/01/2009~ -~19908~^~309~^0.03^6^0.01^~1~^~A~^^^1^0.01^0.10^5^-3.0e-03^0.07^~1, 2, 3~^~03/01/2009~ -~19909~^~203~^2.06^3^0.15^~1~^~A~^^^1^1.75^2.25^2^1.38^2.73^~2, 3~^~03/01/2009~ -~19909~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2009~ -~19909~^~205~^84.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~19909~^~207~^4.03^3^0.02^~1~^~A~^^^1^3.98^4.07^2^3.91^4.14^~2, 3~^~03/01/2009~ -~19909~^~209~^3.52^4^1.04^~1~^~A~^^^1^1.30^5.30^3^0.21^6.83^~2, 3~^~03/01/2009~ -~19909~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19909~^~211~^1.09^3^0.36^~1~^~A~^^^1^1.86^3.03^2^1.00^4.17^~2, 3~^~03/01/2009~ -~19909~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19909~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19909~^~214~^2.94^3^2.41^~1~^~A~^^^1^2.17^9.46^2^-3.38^17.37^~2, 3~^~03/01/2009~ -~19909~^~255~^9.14^3^1.16^~1~^~A~^^^1^7.12^11.16^2^4.13^14.14^~2, 3~^~03/01/2009~ -~19909~^~269~^4.03^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19909~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~19909~^~303~^0.16^3^0.02^~1~^~A~^^^1^0.12^0.18^2^0.06^0.25^~2, 3~^~03/01/2009~ -~19909~^~309~^0.04^3^0.02^~1~^~A~^^^1^0.01^0.08^2^-0.04^0.13^~2, 3~^~03/01/2009~ -~19910~^~203~^9.53^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~204~^31.34^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~205~^55.53^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~19910~^~207~^2.00^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~255~^1.60^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~269~^40.33^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~303~^1.30^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~309~^0.99^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~323~^2.77^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19910~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~19911~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~204~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~205~^67.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~19911~^~207~^0.47^0^^~4~^~T~^^^^^^^^^^~02/01/2011~ -~19911~^~210~^58.93^90^0.78^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~211~^0.65^90^0.05^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~212~^0.34^90^0.05^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19911~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19911~^~255~^32.15^90^0.15^~1~^~A~^^^^^^^^^^~07/01/2011~ -~19911~^~269~^59.92^0^^~4~^~T~^^^^^^^^^^~07/01/2011~ -~19911~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19911~^~303~^0.11^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~309~^0.70^600^0.02^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~19912~^~203~^0.09^3^0.00^~1~^~A~^^^1^0.09^0.09^^^^~2, 3~^~05/01/2011~ -~19912~^~204~^0.45^3^9.0e-03^~1~^~A~^^^1^0.44^0.47^2^0.41^0.49^~2, 3~^~05/01/2011~ -~19912~^~205~^76.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~19912~^~207~^0.14^3^0.02^~1~^~A~^^^1^0.11^0.18^2^0.05^0.23^~2, 3~^~05/01/2011~ -~19912~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~211~^12.43^3^2.68^~1~^~A~^^^1^7.86^17.15^2^0.89^23.97^~2, 3~^~05/01/2011~ -~19912~^~212~^55.60^3^4.58^~1~^~A~^^^1^46.98^62.64^2^35.85^75.34^~2, 3~^~05/01/2011~ -~19912~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~255~^22.94^3^0.15^~1~^~A~^^^1^22.66^23.18^2^22.28^23.59^~2, 3~^~05/01/2011~ -~19912~^~269~^68.03^3^1.97^~1~^~A~^^^1^64.13^70.50^2^59.53^76.52^~2, 3~^~05/01/2011~ -~19912~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~303~^0.09^3^0.02^~1~^~A~^^^1^0.05^0.13^2^-8.0e-03^0.18^~1, 2, 3~^~05/01/2011~ -~19912~^~309~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~323~^0.98^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~19912~^~573~^0.00^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~578~^0.00^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19913~^~203~^6.67^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~204~^18.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~205~^68.45^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19913~^~207~^1.50^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~255~^5.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~269~^48.33^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~303~^0.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19913~^~309~^1.23^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~323~^1.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~341~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~418~^0.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19914~^~203~^6.41^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19914~^~204~^28.85^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19914~^~205~^63.15^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19914~^~207~^1.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~255~^0.18^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~269~^57.69^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19914~^~303~^1.88^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~309~^1.83^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~323~^0.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~342~^0.73^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~418~^0.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19916~^~203~^2.87^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~19916~^~204~^2.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~205~^14.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~19916~^~207~^1.80^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~19916~^~209~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~255~^78.89^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~269~^0.27^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~303~^2.06^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19916~^~309~^0.99^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~323~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~203~^5.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19917~^~204~^15.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19917~^~205~^72.94^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19917~^~207~^2.23^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~255~^4.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~269~^50.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~19917~^~303~^0.90^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19917~^~309~^1.25^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~323~^0.37^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~342~^0.37^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~418~^0.45^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19918~^~203~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~205~^100.00^0^^~4~^~O~^^^^^^^^^^~07/01/2013~ -~19918~^~207~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~255~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~303~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~309~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19919~^~203~^0.08^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~205~^87.97^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19919~^~207~^0.11^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~255~^11.84^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~269~^68.18^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~309~^0.19^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19920~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19920~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19920~^~205~^52.93^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19920~^~207~^0.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~255~^46.84^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~269~^42.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19920~^~303~^0.34^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~309~^0.20^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~323~^0.13^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~204~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19921~^~205~^91.96^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19921~^~207~^5.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~255~^2.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~269~^78.57^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19921~^~309~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~323~^0.05^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~203~^2.13^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~204~^27.65^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~205~^55.87^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19922~^~207~^1.10^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~255~^13.26^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~269~^36.16^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~303~^0.77^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19922~^~309~^1.02^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~323~^0.20^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~342~^0.44^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~344~^1.20^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~203~^13.44^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~204~^25.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~205~^52.88^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19923~^~207~^1.70^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~209~^2.19^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~255~^6.97^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~269~^40.32^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~303~^1.92^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~309~^1.57^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~323~^2.47^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~341~^0.18^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~342~^3.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~343~^0.30^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~344~^0.03^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~346~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19924~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~205~^67.21^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~207~^0.87^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~210~^59.86^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~211~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~212~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~255~^31.92^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~269~^60.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~19924~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19924~^~309~^0.55^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~20001~^~203~^13.56^4^0.17^~1~^~A~^^^2^12.62^15.01^1^11.35^15.76^~2~^~05/01/2008~ -~20001~^~204~^7.02^5^0.37^~1~^~A~^^^3^6.30^8.41^2^5.40^8.64^~2~^~05/01/2008~ -~20001~^~205~^65.25^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~207~^2.88^4^0.31^~1~^~A~^^^2^2.19^3.20^1^-1.14^6.90^~2~^~05/01/2008~ -~20001~^~209~^57.27^4^3.72^~1~^~A~^^^2^50.13^61.00^1^9.92^104.62^~2~^~05/01/2008~ -~20001~^~210~^1.40^3^0.15^~1~^~A~^^^1^1.12^1.65^2^0.74^2.04^~4~^~05/01/2008~ -~20001~^~211~^0.27^3^0.01^~1~^~A~^^^1^0.23^0.30^2^0.18^0.35^~4~^~05/01/2008~ -~20001~^~212~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^2^0.01^0.01^~1, 4~^~05/01/2008~ -~20001~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2008~ -~20001~^~214~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^2^0.01^0.01^~1, 4~^~05/01/2008~ -~20001~^~255~^11.29^4^0.11^~1~^~A~^^^2^10.64^12.15^1^9.88^12.69^~2~^~05/01/2008~ -~20001~^~269~^1.69^3^0.14^~1~^~A~^^^1^1.45^1.95^2^1.06^2.32^~4~^~05/01/2008~ -~20001~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2008~ -~20001~^~303~^7.61^3^0.83^~1~^~A~^^^1^5.96^8.61^2^4.03^11.17^~4~^~05/01/2008~ -~20001~^~309~^2.87^3^0.11^~1~^~A~^^^1^2.66^3.07^2^2.36^3.38^~4~^~05/01/2008~ -~20001~^~323~^1.19^5^0.42^~1~^~A~^^^3^0.37^2.02^2^-0.62^3.00^~2~^~05/01/2008~ -~20001~^~341~^0.96^5^0.48^~1~^~A~^^^3^0.00^1.94^2^-1.13^3.05^~2~^~05/01/2008~ -~20001~^~342~^0.19^5^0.11^~1~^~A~^^^3^0.01^0.39^2^-0.29^0.66^~2~^~05/01/2008~ -~20001~^~343~^0.69^5^0.34^~1~^~A~^^^3^0.00^1.18^2^-0.80^2.18^~2~^~05/01/2008~ -~20001~^~344~^0.00^5^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2008~ -~20001~^~345~^0.48^4^0.47^~1~^~A~^^^2^0.00^0.96^1^-5.60^6.55^~1, 2~^~05/01/2008~ -~20001~^~346~^0.29^5^0.29^~1~^~A~^^^3^0.00^0.87^2^-0.95^1.53^~1, 2~^~05/01/2008~ -~20001~^~347~^0.00^5^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2008~ -~20001~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20002~^~203~^3.80^3^^~1~^~A~^^^1^3.57^4.15^^^^~2~^~04/01/2007~ -~20002~^~204~^1.58^3^^~1~^~A~^^^1^1.43^1.68^^^^~2~^~04/01/2007~ -~20002~^~205~^18.69^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20002~^~207~^0.77^3^^~1~^~A~^^^1^0.65^0.91^^^^~2~^~04/01/2007~ -~20002~^~209~^16.23^3^^~1~^~A~^^^1^15.50^16.80^^^^~2~^~04/01/2007~ -~20002~^~255~^75.16^3^^~1~^~A~^^^1^74.36^76.04^^^^~2~^~04/01/2007~ -~20002~^~303~^2.10^3^^~1~^~A~^^^1^1.72^2.47^^^^~2~^~04/01/2007~ -~20002~^~309~^0.86^3^^~1~^~A~^^^1^0.81^0.89^^^^~2~^~04/01/2007~ -~20002~^~323~^0.19^3^^~1~^~A~^^^1^0.11^0.34^^^^~2~^~04/01/2007~ -~20002~^~341~^0.38^3^^~1~^~A~^^^1^0.35^0.41^^^^~2~^~04/01/2007~ -~20002~^~342~^0.05^3^^~1~^~A~^^^1^0.01^0.11^^^^~1, 2~^~04/01/2007~ -~20002~^~343~^0.24^3^^~1~^~A~^^^1^0.21^0.27^^^^~2~^~04/01/2007~ -~20002~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2007~ -~20002~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2007~ -~20002~^~346~^0.02^3^^~1~^~A~^^^1^0.01^0.02^^^^~1, 2~^~04/01/2007~ -~20002~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2~^~04/01/2007~ -~20003~^~203~^0.30^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~204~^0.10^3^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~205~^88.15^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20003~^~207~^0.08^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~255~^11.37^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~303~^0.33^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~309~^0.07^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20004~^~203~^12.48^12^0.57^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~204~^2.30^6^0.25^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~205~^73.48^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20004~^~207~^2.29^14^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~255~^9.44^7^0.55^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~269~^0.80^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20004~^~303~^3.60^19^0.15^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~309~^2.77^28^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~323~^0.57^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20005~^~203~^9.91^23^0.42^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~204~^1.16^18^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~205~^77.72^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20005~^~207~^1.11^18^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~255~^10.09^18^0.36^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~269~^0.80^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20005~^~303~^2.50^27^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~309~^2.13^23^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~323~^0.02^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20006~^~203~^2.26^4^0.15^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~204~^0.44^5^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~205~^28.22^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20006~^~207~^0.27^5^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~255~^68.80^5^2.51^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~269~^0.28^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~ -~20006~^~303~^1.33^5^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~309~^0.82^5^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~323~^0.01^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~ -~20006~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20008~^~203~^13.25^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~204~^3.40^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~205~^71.50^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20008~^~207~^2.10^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~255~^9.75^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~303~^2.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~309~^2.40^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20009~^~203~^11.73^5^1.46^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~204~^2.71^5^0.55^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~205~^74.95^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20009~^~207~^2.20^5^0.46^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~255~^8.41^5^0.56^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~303~^2.47^4^0.60^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~309~^2.42^5^0.32^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20010~^~203~^3.38^5^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~204~^0.62^8^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~205~^19.94^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20010~^~207~^0.43^5^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~210~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20010~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20010~^~212~^0.10^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20010~^~255~^75.63^5^2.13^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~269~^0.90^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20010~^~303~^0.80^5^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~309~^0.61^5^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~323~^0.09^0^^~4~^~BFSN~^~20011~^^^^^^^^^~03/01/2003~ -~20010~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20010~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20010~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20011~^~203~^12.62^6^0.21^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~204~^3.10^6^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~205~^70.59^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20011~^~207~^2.54^6^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~210~^1.70^1^^~1~^^^^^^^^^^^~10/01/2002~ -~20011~^~255~^11.15^6^0.40^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~269~^2.60^0^^~4~^~T~^^^^^^^^^^~10/01/2002~ -~20011~^~303~^4.06^4^1.47^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~309~^3.12^4^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~323~^0.32^1^^~1~^^^^^^^^^^^~12/01/2006~ -~20011~^~342~^7.14^1^^~1~^^^^^^^^^^^~12/01/2006~ -~20011~^~343~^0.45^1^^~1~^^^^^^^^^^^~12/01/2006~ -~20011~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20011~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20012~^~203~^12.29^5^0.43^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~204~^1.33^7^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~205~^75.87^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20012~^~207~^1.51^7^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~255~^9.00^6^0.46^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20012~^~303~^2.46^9^0.29^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~309~^1.93^11^0.25^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~323~^0.06^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~418~^0.00^0^^~7~^^^^^^^^^^^~10/01/1989~ -~20012~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20012~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20013~^~203~^3.08^4^0.43^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~204~^0.24^7^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~205~^18.58^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20013~^~207~^0.34^4^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~255~^77.76^7^1.00^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~269~^0.10^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~303~^0.96^3^0.28^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~309~^0.57^3^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~323~^0.01^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~ -~20013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20014~^~203~^9.42^7^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~204~^4.74^4^0.45^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~205~^74.26^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20014~^~207~^1.20^4^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~255~^10.37^10^1.03^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~269~^0.64^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20014~^~303~^2.71^6^0.40^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~309~^2.21^5^0.47^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~323~^0.49^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20015~^~203~^8.36^6^1.76^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~204~^0.92^6^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~205~^85.64^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20015~^~207~^0.36^6^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~255~^4.71^6^0.55^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~ -~20015~^~303~^2.79^3^6.0e-03^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~309~^1.56^5^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~323~^0.42^0^^~4~^~BFZN~^~20020~^^^^^^^^^~11/01/2002~ -~20015~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20016~^~203~^6.93^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~204~^3.86^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~205~^76.85^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20016~^~207~^1.45^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~255~^10.91^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~269~^0.64^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20016~^~303~^2.38^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~309~^1.73^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~323~^0.42^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20016~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20017~^~203~^8.46^25^0.54^~1~^~A~^^^5^6.57^9.61^4^6.95^9.96^~2~^~07/01/2014~ -~20017~^~204~^3.69^25^0.39^~1~^~A~^^^5^2.55^5.31^4^2.59^4.78^~2~^~07/01/2014~ -~20017~^~205~^76.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20017~^~207~^1.48^25^0.11^~1~^~A~^^^5^1.15^1.80^4^1.16^1.79^~2~^~07/01/2014~ -~20017~^~209~^66.00^2^^~1~^~A~^^^1^64.40^67.60^1^^^^~12/01/2009~ -~20017~^~255~^9.79^28^0.51^~1~^~A~^^^5^8.62^11.34^4^8.35^11.21^~2~^~07/01/2014~ -~20017~^~269~^1.61^0^^~4~^~BFZN~^~20022~^^^^^^^^^~03/01/2010~ -~20017~^~303~^8.50^20^0.55^~1~^~A~^^^2^7.95^9.05^1^1.50^15.49^~2~^~07/01/2014~ -~20017~^~309~^1.80^5^0.17^~1~^~A~^^^4^1.30^2.17^3^1.25^2.34^~2~^~12/01/2009~ -~20017~^~323~^0.12^0^^~4~^~BFZN~^~20022~^^^^^^^^^~03/01/2010~ -~20017~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20018~^~203~^5.59^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~204~^1.39^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~205~^82.75^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20018~^~207~^0.46^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~255~^9.81^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~269~^0.64^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~303~^0.91^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~309~^0.37^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~323~^0.15^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20018~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20019~^~203~^8.46^25^0.54^~1~^~A~^^^5^6.57^9.61^4^6.95^9.96^~2~^~07/01/2014~ -~20019~^~204~^3.69^25^0.39^~1~^~A~^^^5^2.55^5.31^4^2.59^4.78^~2~^~07/01/2014~ -~20019~^~205~^76.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20019~^~207~^1.48^25^0.11^~1~^~A~^^^5^1.15^1.80^4^1.16^1.79^~2~^~07/01/2014~ -~20019~^~209~^66.00^2^^~1~^~A~^^^1^64.40^67.60^1^^^^~12/01/2009~ -~20019~^~255~^9.79^28^0.51^~1~^~A~^^^5^8.62^11.34^4^8.35^11.21^~2~^~07/01/2014~ -~20019~^~269~^1.61^0^^~4~^~BFZN~^~20022~^^^^^^^^^~01/01/2010~ -~20019~^~303~^1.47^3^0.07^~1~^~A~^^^2^1.40^1.60^1^0.50^2.44^~2~^~12/01/2009~ -~20019~^~309~^1.80^5^0.17^~1~^~A~^^^4^1.30^2.17^3^1.25^2.34^~2~^~12/01/2009~ -~20019~^~323~^0.12^0^^~4~^~BFZN~^~20022~^^^^^^^^^~01/01/2010~ -~20019~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~ -~20020~^~203~^8.12^7^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~204~^3.59^7^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~205~^76.89^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20020~^~207~^1.13^7^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~255~^10.26^10^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~269~^0.64^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~ -~20020~^~303~^3.45^9^0.37^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~309~^1.82^6^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~323~^0.42^1^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~20020~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~342~^1.86^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~344~^0.21^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~346~^0.13^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20020~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20022~^~203~^7.11^7^0.12^~1~^~A~^^^2^6.44^7.62^5^6.79^7.42^~2, 3~^~12/01/2009~ -~20022~^~204~^1.75^7^0.14^~1~^~A~^^^2^1.35^2.50^4^1.36^2.14^~2, 3~^~12/01/2009~ -~20022~^~205~^79.45^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20022~^~207~^0.51^7^0.04^~1~^~A~^^^2^0.33^0.70^4^0.38^0.63^~2, 3~^~12/01/2009~ -~20022~^~209~^73.30^7^0.46^~1~^~A~^^^2^71.00^76.20^5^72.07^74.52^~2, 3~^~12/01/2009~ -~20022~^~210~^0.68^8^0.15^~1~^~A~^^^3^0.43^1.38^2^3.0e-03^1.36^~2~^~12/01/2009~ -~20022~^~211~^0.56^8^0.41^~1~^~A~^^^3^0.00^1.41^2^-1.23^2.35^~2~^~12/01/2009~ -~20022~^~212~^0.17^8^0.09^~1~^~A~^^^3^0.00^0.31^2^-0.22^0.56^~2~^~12/01/2009~ -~20022~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~12/01/2009~ -~20022~^~214~^0.19^8^0.18^~1~^~A~^^^3^0.00^0.70^2^-0.61^0.99^~1, 2~^~12/01/2009~ -~20022~^~255~^11.18^7^0.14^~1~^~A~^^^2^10.25^12.38^5^10.80^11.54^~2, 3~^~12/01/2009~ -~20022~^~269~^1.61^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20022~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~20022~^~303~^4.36^17^0.42^~1~^~A~^^^2^1.81^7.51^15^3.46^5.25^~2, 3~^~12/01/2009~ -~20022~^~309~^0.66^7^0.07^~1~^~A~^^^2^0.34^0.98^4^0.44^0.87^~2, 3~^~12/01/2009~ -~20022~^~323~^0.12^4^0.02^~1~^~A~^^^2^0.08^0.21^1^-0.18^0.42^~2, 3~^~12/01/2009~ -~20022~^~341~^0.02^4^1.0e-03^~1~^~A~^^^2^0.01^0.02^1^0.00^0.03^~1, 2, 3~^~12/01/2009~ -~20022~^~342~^0.45^4^0.10^~1~^~A~^^^2^0.28^0.80^1^-0.77^1.67^~2, 3~^~12/01/2009~ -~20022~^~343~^0.04^4^8.0e-03^~1~^~A~^^^2^0.02^0.05^1^-0.05^0.13^~2, 3~^~12/01/2009~ -~20022~^~344~^0.35^4^0.06^~1~^~A~^^^2^0.26^0.57^1^-0.44^1.14^~2, 3~^~12/01/2009~ -~20022~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~346~^0.58^4^0.08^~1~^~A~^^^2^0.43^0.74^1^6.0e-03^1.14^~2, 3~^~12/01/2009~ -~20022~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20023~^~203~^8.28^17^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~204~^3.40^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~205~^70.28^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20023~^~207~^5.45^17^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~255~^12.59^442^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~303~^5.76^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~309~^2.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20024~^~203~^8.41^39^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~204~^2.85^43^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~205~^73.43^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20024~^~207~^4.98^43^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~255~^10.33^43^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~303~^4.95^6^0.93^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~309~^1.39^10^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20025~^~203~^8.41^20^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~204~^1.72^21^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~205~^74.79^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20025~^~207~^4.91^21^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~255~^10.17^21^0.21^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~303~^4.73^20^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~309~^1.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20027~^~203~^0.26^5^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~204~^0.05^3^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~205~^91.27^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20027~^~207~^0.09^4^3.0e-03^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~255~^8.32^5^0.70^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~269~^0.00^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20027~^~303~^0.47^6^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~309~^0.06^6^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~20027~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20027~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20027~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20028~^~203~^12.76^6^0.82^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~204~^0.64^6^0.24^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~205~^77.43^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20028~^~207~^0.62^6^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~255~^8.56^6^0.37^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~303~^1.08^6^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~309~^0.83^5^0.24^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20029~^~203~^3.79^3^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~204~^0.16^7^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~205~^23.22^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20029~^~207~^0.26^4^8.0e-03^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~255~^72.57^7^0.15^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~269~^0.10^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~303~^0.38^4^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~309~^0.26^4^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~323~^0.13^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~ -~20029~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20029~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20029~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20030~^~203~^1.48^7^0.23^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~204~^0.88^7^0.17^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~205~^14.26^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20030~^~207~^0.86^7^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~255~^82.53^9^1.91^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~269~^1.51^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20030~^~303~^0.62^9^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~309~^1.05^6^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~323~^0.05^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~ -~20030~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20031~^~203~^11.02^9^0.68^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~204~^4.22^9^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~205~^72.85^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20031~^~207~^3.25^8^0.35^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~255~^8.67^8^0.58^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~303~^3.01^19^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~309~^1.68^19^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~323~^0.05^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20032~^~203~^3.51^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~204~^1.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~205~^23.67^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20032~^~207~^0.41^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~255~^71.41^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~269~^0.13^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~ -~20032~^~303~^0.63^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~309~^0.91^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~323~^0.02^0^^~4~^~BFSN~^~20031~^^^^^^^^^~02/01/2003~ -~20032~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20033~^~203~^17.30^9^1.45^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~204~^7.03^6^0.27^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~205~^66.22^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20033~^~207~^2.89^8^0.49^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~255~^6.55^8^0.85^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~269~^1.45^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20033~^~303~^5.41^8^0.62^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~309~^3.11^7^0.38^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~323~^1.01^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~341~^0.08^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~342~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~343~^0.10^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~344~^2.21^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~345~^0.08^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~20033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20034~^~203~^3.21^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~204~^0.86^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~205~^11.44^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20034~^~207~^0.49^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~255~^84.00^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~303~^0.88^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~309~^0.53^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20035~^~203~^14.12^3^0.95^~1~^~A~^^^1^12.22^15.19^2^10.01^18.23^~2, 3~^~04/01/2007~ -~20035~^~204~^6.07^3^0.30^~1~^~A~^^^1^5.58^6.62^2^4.76^7.36^~2, 3~^~04/01/2007~ -~20035~^~205~^64.16^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20035~^~207~^2.38^3^0.01^~1~^~A~^^^1^2.35^2.40^2^2.30^2.44^~2, 3~^~04/01/2007~ -~20035~^~209~^52.22^3^0.39^~1~^~A~^^^1^51.75^53.00^2^50.52^53.91^~2, 3~^~04/01/2007~ -~20035~^~255~^13.28^3^0.50^~1~^~A~^^^1^12.51^14.22^2^11.11^15.43^~2, 3~^~04/01/2007~ -~20035~^~303~^4.57^3^0.16^~1~^~A~^^^1^4.40^4.90^2^3.85^5.28^~2, 3~^~04/01/2007~ -~20035~^~309~^3.10^3^0.10^~1~^~A~^^^1^3.00^3.30^2^2.67^3.53^~2, 3~^~04/01/2007~ -~20035~^~323~^2.44^3^0.18^~1~^~A~^^^1^2.12^2.77^2^1.62^3.24^~2, 3~^~04/01/2007~ -~20035~^~341~^0.08^3^0.01^~1~^~A~^^^1^0.05^0.10^2^0.01^0.15^~2, 3~^~04/01/2007~ -~20035~^~342~^4.55^3^0.66^~1~^~A~^^^1^3.23^5.25^2^1.70^7.39^~2, 3~^~04/01/2007~ -~20035~^~343~^0.35^3^0.07^~1~^~A~^^^1^0.22^0.48^2^0.02^0.67^~2, 3~^~04/01/2007~ -~20035~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20036~^~203~^7.54^6^0.08^~1~^~A~^^^1^7.21^8.01^4^7.29^7.78^~2, 3~^~04/01/2015~ -~20036~^~204~^3.20^6^0.07^~1~^~A~^^^1^3.00^3.50^4^3.00^3.40^~2, 3~^~04/01/2015~ -~20036~^~205~^76.25^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~207~^1.21^6^0.02^~1~^~A~^^^1^1.13^1.32^4^1.13^1.28^~2, 3~^~04/01/2015~ -~20036~^~209~^72.51^3^0.92^~1~^~A~^^^1^71.20^73.60^1^60.79^84.22^~2, 3~^~04/01/2015~ -~20036~^~210~^0.66^3^0.04^~1~^~A~^^^1^0.60^0.70^1^0.12^1.19^~2, 3~^~04/01/2015~ -~20036~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20036~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20036~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20036~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20036~^~255~^11.80^6^0.17^~1~^~A~^^^1^11.10^12.30^4^11.32^12.26^~2, 3~^~04/01/2015~ -~20036~^~269~^0.66^3^0.04^~1~^~A~^^^1^0.60^0.70^1^0.12^1.19^~2, 3~^~04/01/2015~ -~20036~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20036~^~303~^1.29^6^0.08^~1~^~A~^^^1^1.10^1.70^4^1.04^1.53^~2, 3~^~04/01/2015~ -~20036~^~309~^2.13^6^0.03^~1~^~A~^^^1^2.04^2.27^4^2.02^2.22^~2, 3~^~04/01/2015~ -~20036~^~323~^0.60^2^^~1~^~A~^^^1^0.59^0.60^^^^^~04/01/2015~ -~20036~^~341~^0.04^2^^~1~^~A~^^^1^0.00^0.04^^^^~1~^~04/01/2015~ -~20036~^~342~^0.19^2^^~1~^~A~^^^1^0.17^0.30^^^^^~04/01/2015~ -~20036~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~09/01/2002~ -~20036~^~344~^0.44^2^^~1~^~A~^^^1^0.34^0.46^^^^^~04/01/2015~ -~20036~^~345~^0.09^2^^~1~^~A~^^^1^0.08^0.09^^^^^~04/01/2015~ -~20036~^~346~^1.34^2^^~1~^~A~^^^1^1.34^1.35^^^^^~04/01/2015~ -~20036~^~347~^0.06^2^^~1~^~A~^^^1^0.06^0.07^^^^^~04/01/2015~ -~20036~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20037~^~203~^2.74^6^0.04^~1~^~A~^^^1^2.58^2.95^4^2.60^2.88^~2, 3~^~04/01/2015~ -~20037~^~204~^0.97^6^0.03^~1~^~A~^^^1^0.90^1.10^4^0.88^1.05^~2, 3~^~04/01/2015~ -~20037~^~205~^25.58^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~207~^0.44^6^0.02^~1~^~A~^^^1^0.37^0.50^4^0.38^0.49^~2, 3~^~04/01/2015~ -~20037~^~209~^24.79^3^0.21^~1~^~A~^^^1^24.50^25.00^1^22.12^27.45^~2, 3~^~04/01/2015~ -~20037~^~210~^0.24^3^0.04^~1~^~A~^^^1^0.20^0.30^1^-0.29^0.77^~2, 3~^~04/01/2015~ -~20037~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~20037~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~20037~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~20037~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2002~ -~20037~^~255~^70.27^6^0.48^~1~^~A~^^^1^68.80^72.40^4^68.91^71.63^~2, 3~^~04/01/2015~ -~20037~^~269~^0.24^3^0.04^~1~^~A~^^^1^0.20^0.30^1^-0.29^0.77^~2, 3~^~04/01/2015~ -~20037~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~20037~^~303~^0.56^6^0.03^~1~^~A~^^^1^0.47^0.69^4^0.47^0.65^~2, 3~^~04/01/2015~ -~20037~^~309~^0.71^6^0.03^~1~^~A~^^^1^0.58^0.85^4^0.61^0.81^~2, 3~^~04/01/2015~ -~20037~^~323~^0.17^2^^~1~^~A~^^^1^0.16^0.18^^^^^~07/01/2014~ -~20037~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~20037~^~342~^0.05^2^^~1~^~A~^^^1^0.04^0.08^^^^^~04/01/2015~ -~20037~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~20037~^~344~^0.13^2^^~1~^~A~^^^1^0.13^0.14^^^^^~04/01/2015~ -~20037~^~345~^0.06^2^^~1~^~A~^^^1^0.06^0.07^^^^^~04/01/2015~ -~20037~^~346~^0.46^2^^~1~^~A~^^^1^0.45^0.54^^^^^~04/01/2015~ -~20037~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2002~ -~20037~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20038~^~203~^16.89^50^0.32^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~204~^6.90^14^0.70^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~205~^66.27^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20038~^~207~^1.72^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~255~^8.22^17^0.38^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~303~^4.72^37^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~309~^3.97^37^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20040~^~203~^7.50^7^0.28^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~204~^2.68^5^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~205~^76.17^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20040~^~207~^1.27^4^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~255~^12.37^4^0.67^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~303~^1.80^5^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~309~^2.02^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20041~^~203~^2.32^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~204~^0.83^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~205~^23.51^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20041~^~207~^0.39^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~255~^72.96^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~303~^0.53^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~309~^0.62^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20042~^~203~^7.60^6^0.12^~1~^~A~^^^1^7.26^8.10^5^7.28^7.90^~2, 3~^~03/01/2015~ -~20042~^~204~^2.75^6^0.05^~1~^~A~^^^1^2.60^2.90^5^2.60^2.89^~2, 3~^~03/01/2015~ -~20042~^~205~^78.68^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~207~^1.16^6^0.02^~1~^~A~^^^1^1.10^1.24^5^1.10^1.20^~2, 3~^~03/01/2015~ -~20042~^~209~^73.83^3^0.52^~1~^~A~^^^1^73.00^74.80^2^71.57^76.08^~2, 3~^~03/01/2015~ -~20042~^~210~^0.50^2^^~1~^~A~^^^1^0.50^0.50^^^^^~03/01/2015~ -~20042~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20042~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20042~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20042~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20042~^~255~^9.82^6^0.20^~1~^~A~^^^1^9.22^10.50^5^9.29^10.33^~2, 3~^~03/01/2015~ -~20042~^~269~^0.50^2^^~1~^~A~^^^1^0.50^0.50^^^^^~03/01/2015~ -~20042~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20042~^~303~^1.16^6^0.07^~1~^~A~^^^1^0.95^1.39^5^0.96^1.36^~2, 3~^~03/01/2015~ -~20042~^~309~^1.96^6^0.05^~1~^~A~^^^1^1.86^2.19^5^1.83^2.09^~2, 3~^~03/01/2015~ -~20042~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20042~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20042~^~342~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20042~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20042~^~344~^0.18^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20042~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20042~^~346~^0.79^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20042~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20042~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~20044~^~203~^7.13^70^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~204~^0.66^23^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~205~^79.95^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20044~^~207~^0.64^60^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~210~^0.08^2^^~1~^~A~^^^1^0.02^0.15^1^^^~1~^~09/01/2002~ -~20044~^~211~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^~1~^~09/01/2002~ -~20044~^~212~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^~1~^~09/01/2002~ -~20044~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~09/01/2002~ -~20044~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~09/01/2002~ -~20044~^~255~^11.62^58^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~269~^0.12^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~20044~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20044~^~303~^4.31^6^0.58^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~309~^1.09^13^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~323~^0.11^0^^~1~^^^^^^^^^^^~09/01/2002~ -~20044~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20045~^~203~^2.69^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~204~^0.28^6^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~205~^28.17^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20045~^~207~^0.41^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~255~^68.44^23^0.39^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~269~^0.05^3^0.00^~1~^~A~^^^1^0.05^0.05^^^^~2, 3~^~09/01/2002~ -~20045~^~303~^1.20^39^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~309~^0.49^43^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~323~^0.04^0^^~4~^~BFSN~^~20044~^^^^^^^^^~09/01/2002~ -~20045~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20046~^~203~^7.51^2^^~1~^~A~^^^2^6.90^8.11^^^^^~12/01/2009~ -~20046~^~204~^1.03^2^^~1~^~A~^^^2^1.03^1.04^^^^^~12/01/2009~ -~20046~^~205~^80.89^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~20046~^~207~^0.71^2^^~1~^~A~^^^2^0.71^0.72^^^^^~12/01/2009~ -~20046~^~209~^68.29^2^^~1~^~A~^^^2^63.58^73.00^^^^^~12/01/2009~ -~20046~^~210~^0.21^5^0.13^~1~^~A~^^^3^0.05^0.48^2^-0.37^0.79^~2~^~02/01/2005~ -~20046~^~211~^0.11^4^0.02^~1~^~A~^^^2^0.07^0.13^1^-0.17^0.39^~2~^~02/01/2005~ -~20046~^~212~^0.02^4^0.00^~1~^~A~^^^2^0.00^0.03^1^0.01^0.01^~1, 2~^~02/01/2005~ -~20046~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20046~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20046~^~255~^9.86^7^0.19^~1~^~A~^^^4^9.36^10.32^3^9.23^10.48^~2~^~12/01/2009~ -~20046~^~269~^0.33^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~20046~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20046~^~303~^3.33^2^^~1~^~A~^^^2^1.40^5.26^^^^^~12/01/2009~ -~20046~^~309~^1.02^2^^~1~^~A~^^^2^1.00^1.04^^^^^~12/01/2009~ -~20046~^~323~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~342~^0.17^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20046~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20047~^~203~^2.91^3^0.25^~1~^~A~^^^1^2.41^3.25^2^1.80^4.01^~2, 3~^~02/01/2005~ -~20047~^~204~^0.37^3^0.05^~1~^~A~^^^1^0.30^0.48^2^0.13^0.61^~2, 3~^~02/01/2005~ -~20047~^~205~^26.05^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20047~^~207~^0.30^3^0.04^~1~^~A~^^^1^0.24^0.38^2^0.12^0.48^~2, 3~^~02/01/2005~ -~20047~^~210~^0.08^5^0.01^~1~^~A~^^^2^0.02^0.13^1^-0.04^0.21^~1, 2~^~02/01/2005~ -~20047~^~211~^0.01^5^8.0e-03^~1~^~A~^^^2^0.00^0.02^1^-0.09^0.11^~1, 2~^~02/01/2005~ -~20047~^~212~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^~1~^~02/01/2003~ -~20047~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~20047~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~20047~^~255~^70.36^16^1.98^~1~^~A~^^^4^63.06^74.40^3^64.04^76.68^~2~^~02/01/2005~ -~20047~^~269~^0.11^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20047~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~20047~^~303~^1.81^3^0.13^~1~^~A~^^^1^1.54^1.96^2^1.22^2.40^~2, 3~^~02/01/2005~ -~20047~^~309~^0.37^3^0.02^~1~^~A~^^^1^0.32^0.42^2^0.24^0.49^~2, 3~^~02/01/2005~ -~20047~^~323~^0.01^0^^~4~^~BFSN~^~20046~^^^^^^^^^~02/01/2005~ -~20047~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20048~^~203~^7.82^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~204~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~205~^82.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20048~^~207~^0.53^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~209~^73.77^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~210~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20048~^~211~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20048~^~212~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20048~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20048~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~20048~^~255~^8.38^2^^~1~^~A~^^^2^8.37^8.40^1^^^^~02/01/2005~ -~20048~^~269~^0.05^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20048~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~20048~^~303~^6.30^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~309~^1.43^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~323~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~341~^0.01^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~342~^0.19^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~343~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~20048~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20049~^~203~^2.18^3^0.01^~1~^~A~^^^1^2.15^2.20^2^2.10^2.24^~2, 3~^~02/01/2005~ -~20049~^~204~^0.50^3^0.05^~1~^~A~^^^1^0.38^0.57^2^0.24^0.75^~2, 3~^~02/01/2005~ -~20049~^~205~^26.76^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20049~^~207~^0.22^3^7.0e-03^~1~^~A~^^^1^0.20^0.23^2^0.18^0.25^~2, 3~^~02/01/2005~ -~20049~^~209~^26.33^3^0.60^~1~^~A~^^^1^25.59^27.52^2^23.74^28.91^~2, 3~^~02/01/2005~ -~20049~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20049~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20049~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20049~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20049~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20049~^~255~^70.34^3^^~1~^~A~^^^1^68.67^71.33^^^^~2~^~06/01/2014~ -~20049~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2007~ -~20049~^~303~^1.77^3^0.34^~1~^~A~^^^1^1.10^2.25^2^0.28^3.24^~2, 3~^~02/01/2005~ -~20049~^~309~^0.49^3^0.01^~1~^~A~^^^1^0.47^0.53^2^0.41^0.57^~2, 3~^~02/01/2005~ -~20049~^~323~^0.01^0^^~4~^~BFSN~^~20048~^^^^^^^^^~02/01/2005~ -~20049~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20050~^~203~^6.61^18^0.19^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~204~^0.58^6^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~205~^79.34^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20050~^~207~^0.58^17^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~255~^12.89^16^0.47^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~303~^4.36^3^0.80^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~309~^1.16^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~323~^0.11^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20051~^~203~^2.38^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~204~^0.21^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~205~^28.59^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20051~^~207~^0.21^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~255~^68.61^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~303~^1.49^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~309~^0.42^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20052~^~203~^6.50^11^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~204~^0.52^5^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~205~^79.15^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20052~^~207~^0.54^10^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~255~^13.29^9^0.67^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~303~^4.23^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20052~^~309~^1.10^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20053~^~203~^2.36^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~204~^0.19^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~205~^28.73^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20053~^~207~^0.20^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~255~^68.53^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~303~^1.46^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~309~^0.40^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20054~^~203~^6.81^3^0.93^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~204~^0.55^3^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~205~^81.68^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20054~^~207~^0.49^3^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~255~^10.46^3^0.41^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~303~^1.60^3^0.65^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~309~^1.20^3^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20055~^~203~^2.02^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~204~^0.19^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~205~^21.09^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20055~^~207~^0.07^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~255~^76.63^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~269~^0.05^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~303~^0.14^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~309~^0.41^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~323~^0.04^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20055~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20058~^~203~^3.20^4^0.11^~1~^~A~^^^1^2.98^3.51^3^2.84^3.55^~4~^~05/01/2008~ -~20058~^~204~^0.27^4^0.04^~1~^~A~^^^1^0.18^0.36^3^0.12^0.41^~4~^~05/01/2008~ -~20058~^~205~^33.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20058~^~207~^0.14^4^9.0e-03^~1~^~A~^^^1^0.12^0.16^3^0.11^0.17^~4~^~05/01/2008~ -~20058~^~209~^32.05^4^0.55^~1~^~A~^^^1^30.80^33.50^3^30.28^33.81^~4~^~05/01/2008~ -~20058~^~255~^62.50^4^0.52^~1~^~A~^^^1^61.40^63.92^3^60.84^64.16^~4~^~05/01/2008~ -~20058~^~303~^0.39^4^0.09^~1~^~A~^^^1^0.16^0.62^3^0.07^0.70^~4~^~05/01/2008~ -~20058~^~309~^0.68^4^0.02^~1~^~A~^^^1^0.63^0.73^3^0.61^0.74^~4~^~05/01/2008~ -~20060~^~203~^13.35^4^0.52^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~204~^20.85^6^1.56^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~205~^49.69^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20060~^~207~^9.98^5^0.65^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~210~^0.50^1^^~1~^^^^^^^^^^^~11/01/2002~ -~20060~^~211~^0.20^1^^~1~^^^^^^^^^^^~11/01/2002~ -~20060~^~212~^0.20^1^^~1~^^^^^^^^^^^~11/01/2002~ -~20060~^~255~^6.13^10^1.11^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~269~^0.90^1^^~1~^^^^^^^^^^^~11/01/2002~ -~20060~^~303~^18.54^5^3.55^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~309~^6.04^5^0.92^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~323~^4.92^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~20060~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20061~^~203~^5.95^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~204~^1.42^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~205~^80.13^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20061~^~207~^0.61^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~255~^11.89^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~269~^0.12^0^^~4~^~BFZN~^~20044~^^^^^^^^^~09/01/2002~ -~20061~^~303~^0.35^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~309~^0.80^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~323~^0.11^0^^~4~^~BFZN~^~20044~^^^^^^^^^~09/01/2002~ -~20061~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20062~^~203~^10.34^10^0.21^~1~^~A~^^^1^9.48^11.21^9^9.85^10.83^~4~^~06/01/2009~ -~20062~^~204~^1.63^10^0.01^~1~^~A~^^^1^1.54^1.70^9^1.58^1.66^~4~^~06/01/2009~ -~20062~^~205~^75.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20062~^~207~^1.57^10^0.02^~1~^~A~^^^1^1.49^1.66^9^1.52^1.61^~4~^~06/01/2009~ -~20062~^~210~^0.71^11^0.21^~1~^~A~^^^2^0.00^1.16^1^-2.06^3.48^~1, 2~^~06/01/2009~ -~20062~^~211~^0.16^11^0.08^~1~^~A~^^^2^0.00^0.24^1^-0.88^1.20^~1, 2~^~06/01/2009~ -~20062~^~212~^0.11^11^1.0e-03^~1~^~A~^^^2^0.11^0.12^1^0.09^0.12^~2~^~06/01/2009~ -~20062~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^9^0.00^0.00^~1, 4~^~06/01/2009~ -~20062~^~214~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^9^0.00^0.00^~1, 4~^~06/01/2009~ -~20062~^~255~^10.60^10^0.07^~1~^~A~^^^1^10.18^11.04^9^10.44^10.76^~4~^~06/01/2009~ -~20062~^~269~^0.98^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20062~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~20062~^~303~^2.63^10^0.12^~1~^~A~^^^1^2.14^3.19^9^2.34^2.92^~4~^~06/01/2009~ -~20062~^~309~^2.65^10^0.21^~1~^~A~^^^1^1.99^3.87^9^2.16^3.13^~4~^~06/01/2009~ -~20062~^~323~^0.85^10^0.03^~1~^~A~^^^1^0.60^0.94^9^0.76^0.92^~4~^~06/01/2009~ -~20062~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20063~^~203~^15.91^12^0.17^~1~^~A~^^^1^14.56^16.76^11^15.51^16.29^~4~^~06/01/2009~ -~20063~^~204~^2.22^12^0.03^~1~^~A~^^^1^2.00^2.50^11^2.13^2.29^~4~^~06/01/2009~ -~20063~^~205~^68.63^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20063~^~207~^2.50^12^0.07^~1~^~A~^^^1^2.17^3.04^11^2.32^2.66^~4~^~06/01/2009~ -~20063~^~210~^1.80^12^^~1~^~A~^^^1^1.53^1.97^^^^~2~^~06/01/2009~ -~20063~^~211~^0.22^12^^~1~^~A~^^^1^0.12^0.30^^^^~2~^~06/01/2009~ -~20063~^~212~^0.23^12^^~1~^~A~^^^1^0.17^0.29^^^^~2~^~06/01/2009~ -~20063~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^8^0.00^0.00^~1, 4~^~06/01/2009~ -~20063~^~214~^0.07^12^0.02^~1~^~A~^^^1^0.00^0.22^11^4.0e-03^0.13^~1, 4~^~06/01/2009~ -~20063~^~255~^10.75^13^0.25^~1~^~A~^^^2^10.07^11.15^1^7.57^13.92^~2~^~06/01/2009~ -~20063~^~269~^2.31^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20063~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~20063~^~303~^4.97^12^0.19^~1~^~A~^^^1^4.10^6.29^11^4.53^5.40^~4~^~06/01/2009~ -~20063~^~309~^5.04^12^0.19^~1~^~A~^^^1^4.02^6.02^11^4.61^5.45^~4~^~06/01/2009~ -~20063~^~323~^2.73^12^0.05^~1~^~A~^^^1^2.35^3.02^11^2.60^2.86^~4~^~06/01/2009~ -~20063~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20064~^~203~^10.88^11^0.28^~1~^~A~^^^1^9.22^12.08^10^10.24^11.50^~4~^~06/01/2009~ -~20064~^~204~^1.52^11^0.02^~1~^~A~^^^1^1.37^1.61^10^1.46^1.56^~4~^~06/01/2009~ -~20064~^~205~^75.43^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20064~^~207~^1.20^11^0.01^~1~^~A~^^^1^1.09^1.29^10^1.16^1.24^~4~^~06/01/2009~ -~20064~^~210~^0.90^11^0.01^~1~^~A~^^^1^0.84^0.97^10^0.87^0.93^~4~^~06/01/2009~ -~20064~^~211~^0.06^11^0.01^~1~^~A~^^^1^0.00^0.11^10^0.02^0.09^~1, 4~^~06/01/2009~ -~20064~^~212~^0.12^11^2.0e-03^~1~^~A~^^^1^0.11^0.13^10^0.11^0.12^~4~^~06/01/2009~ -~20064~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^8^0.00^0.00^~1, 4~^~07/01/2009~ -~20064~^~214~^0.02^11^0.01^~1~^~A~^^^1^0.00^0.16^10^-0.01^0.06^~1, 4~^~06/01/2009~ -~20064~^~255~^10.97^12^0.02^~1~^~A~^^^2^10.60^12.10^1^10.63^11.31^~2~^~06/01/2009~ -~20064~^~269~^1.10^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20064~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~20064~^~303~^2.54^11^0.16^~1~^~A~^^^1^1.69^3.68^10^2.17^2.90^~4~^~06/01/2009~ -~20064~^~309~^2.17^11^0.12^~1~^~A~^^^1^1.70^2.99^10^1.89^2.44^~4~^~06/01/2009~ -~20064~^~323~^1.43^11^0.02^~1~^~A~^^^1^1.34^1.54^10^1.38^1.47^~4~^~06/01/2009~ -~20064~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20065~^~203~^9.82^12^0.14^~1~^~A~^^^1^9.09^10.93^11^9.49^10.14^~4~^~06/01/2009~ -~20065~^~204~^1.33^12^0.01^~1~^~A~^^^1^1.21^1.39^11^1.29^1.36^~4~^~06/01/2009~ -~20065~^~205~^76.68^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~20065~^~207~^0.78^12^0.01^~1~^~A~^^^1^0.67^0.84^11^0.74^0.80^~4~^~06/01/2009~ -~20065~^~210~^0.57^13^0.07^~1~^~A~^^^2^0.43^0.65^1^-0.37^1.52^~2~^~06/01/2009~ -~20065~^~211~^0.14^13^0.06^~1~^~A~^^^2^0.00^0.20^1^-0.62^0.90^~1, 2~^~06/01/2009~ -~20065~^~212~^0.09^13^0.02^~1~^~A~^^^2^0.00^0.18^1^-0.26^0.43^~1, 2~^~06/01/2009~ -~20065~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^6^0.00^0.00^~1, 4~^~06/01/2009~ -~20065~^~214~^0.13^12^0.04^~1~^~A~^^^1^0.00^0.31^11^0.04^0.21^~1, 4~^~06/01/2009~ -~20065~^~255~^11.40^12^0.08^~1~^~A~^^^1^10.98^11.96^11^11.21^11.58^~4~^~06/01/2009~ -~20065~^~269~^0.93^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~20065~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~20065~^~303~^0.91^12^0.08^~1~^~A~^^^1^0.44^1.26^11^0.71^1.10^~4~^~06/01/2009~ -~20065~^~309~^1.33^12^0.14^~1~^~A~^^^1^0.56^2.33^11^1.00^1.65^~4~^~06/01/2009~ -~20065~^~323~^0.83^12^0.05^~1~^~A~^^^1^0.34^1.07^11^0.70^0.95^~4~^~06/01/2009~ -~20065~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20066~^~203~^12.68^16^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~204~^1.05^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~205~^72.83^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20066~^~207~^0.77^45^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~255~^12.67^3^1.01^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~303~^4.36^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~309~^1.05^4^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~323~^0.26^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20067~^~203~^10.62^5^0.37^~1~^~A~^^^1^9.30^11.50^4^9.56^11.67^~4~^~04/01/2014~ -~20067~^~204~^3.46^5^0.05^~1~^~A~^^^1^3.34^3.60^4^3.31^3.59^~4~^~04/01/2014~ -~20067~^~205~^72.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~207~^1.43^5^0.07^~1~^~A~^^^1^1.21^1.67^4^1.22^1.63^~4~^~04/01/2014~ -~20067~^~255~^12.40^10^0.31^~1~^~A~^^^2^11.12^14.11^1^8.43^16.37^~2~^~04/01/2014~ -~20067~^~269~^2.53^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20067~^~303~^3.36^5^0.19^~1~^~A~^^^1^2.67^3.81^4^2.82^3.89^~4~^~04/01/2014~ -~20067~^~309~^1.67^6^0.12^~6~^~JA~^^^2^1.54^2.26^1^0.07^3.25^~2~^~04/01/2014~ -~20067~^~323~^0.50^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2014~ -~20067~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20068~^~203~^0.19^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~204~^0.02^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~205~^88.69^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20068~^~207~^0.11^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~255~^10.99^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~269~^3.35^0^^~4~^~BFSN~^~11413~^^^^^^^^^~10/01/2002~ -~20068~^~303~^1.58^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~309~^0.12^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~20068~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20069~^~203~^13.05^3^2.61^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~204~^2.09^3^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~205~^72.13^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20069~^~207~^2.23^3^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~255~^10.51^3^0.65^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~303~^2.57^6^0.25^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~309~^3.45^6^0.48^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~323~^0.90^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20070~^~203~^13.18^7^0.78^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~204~^1.81^7^0.15^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~205~^73.14^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20070~^~207~^1.85^6^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~255~^10.01^6^0.20^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~303~^2.59^7^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~309~^2.66^6^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~323~^0.90^0^^~4~^^^^^^^^^^^~01/01/2001~ -~20070~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20071~^~203~^15.40^56^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~204~^1.92^5^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~205~^68.03^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20071~^~207~^1.89^31^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~255~^12.76^38^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20071~^~303~^3.60^87^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~309~^2.78^106^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~323~^1.01^0^^~4~^~BFZN~^~20072~^^^^^^^^^~09/01/2002~ -~20071~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20072~^~203~^12.61^47^0.17^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~204~^1.54^6^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~205~^71.18^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20072~^~207~^1.57^34^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~255~^13.10^31^0.27^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20072~^~303~^3.19^63^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~309~^2.65^86^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~323~^1.01^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20072~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20073~^~203~^10.35^20^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~204~^1.56^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~205~^74.24^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20073~^~207~^1.68^8^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~255~^12.17^22^0.31^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~05/01/2005~ -~20073~^~303~^3.21^48^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~309~^2.63^53^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~323~^1.01^1^^~1~^^^^^^^^^^^~05/01/2005~ -~20073~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20074~^~203~^11.31^11^0.39^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~204~^1.71^8^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~205~^75.90^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20074~^~207~^1.52^11^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~255~^9.57^11^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20074~^~303~^4.56^11^0.46^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~309~^3.33^11^0.37^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~323~^1.01^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20074~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20075~^~203~^10.69^124^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~204~^1.99^98^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~205~^75.36^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20075~^~207~^1.54^125^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~255~^10.42^126^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~09/01/2002~ -~20075~^~303~^5.37^123^0.32^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~309~^3.46^123^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~323~^1.01^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20075~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20076~^~203~^13.68^28^0.27^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~204~^2.47^18^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~205~^71.13^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20076~^~207~^1.78^38^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~255~^10.94^31^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~303~^3.52^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~309~^4.16^37^0.17^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20077~^~203~^15.55^13^0.52^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~204~^4.25^11^0.21^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~205~^64.51^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20077~^~207~^5.79^13^0.24^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~255~^9.89^15^0.68^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~269~^0.41^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~ -~20077~^~303~^10.57^5^1.20^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~309~^7.27^4^0.63^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~323~^1.49^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20078~^~203~^23.15^7^1.44^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~204~^9.72^8^0.40^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~205~^51.80^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20078~^~207~^4.21^9^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~255~^11.12^10^0.86^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~303~^6.26^7^0.90^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~309~^12.29^6^0.67^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20080~^~203~^13.21^3^1.18^~1~^~A~^^^1^10.84^14.40^2^8.11^18.31^~2, 3~^~01/01/2010~ -~20080~^~204~^2.50^3^0.08^~1~^~A~^^^1^2.37^2.65^2^2.14^2.85^~2, 3~^~01/01/2010~ -~20080~^~205~^71.97^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~207~^1.58^3^0.01^~1~^~A~^^^1^1.56^1.60^2^1.52^1.62^~2, 3~^~01/01/2010~ -~20080~^~209~^57.77^3^1.01^~1~^~A~^^^1^56.70^59.80^2^53.39^62.14^~2, 3~^~01/01/2010~ -~20080~^~210~^0.36^3^0.02^~1~^~A~^^^1^0.31^0.40^2^0.24^0.47^~4~^~01/01/2010~ -~20080~^~211~^0.00^3^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~212~^0.05^3^5.0e-03^~1~^~A~^^^1^0.04^0.05^1^-0.01^0.10^~4~^~01/01/2010~ -~20080~^~255~^10.74^6^1.45^~1~^~A~^^^2^9.19^12.47^1^-7.74^29.22^~2~^~01/01/2010~ -~20080~^~269~^0.41^3^0.03^~1~^~A~^^^1^0.35^0.45^2^0.27^0.53^~4~^~01/01/2010~ -~20080~^~303~^3.60^3^0.15^~1~^~A~^^^1^3.30^3.80^2^2.94^4.25^~2, 3~^~01/01/2010~ -~20080~^~309~^2.60^3^0.00^~1~^~A~^^^1^2.60^2.60^^^^~2, 3~^~01/01/2010~ -~20080~^~323~^0.71^3^0.05^~1~^~A~^^^1^0.65^0.81^2^0.49^0.92^~2, 3~^~01/01/2010~ -~20080~^~341~^0.23^3^0.01^~1~^~A~^^^1^0.20^0.25^2^0.16^0.28^~2, 3~^~01/01/2010~ -~20080~^~342~^1.91^3^0.13^~1~^~A~^^^1^1.68^2.15^2^1.32^2.49^~2, 3~^~01/01/2010~ -~20080~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~344~^0.30^3^0.01^~1~^~A~^^^1^0.29^0.33^2^0.24^0.36^~2, 3~^~01/01/2010~ -~20080~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~346~^0.03^3^7.0e-03^~1~^~A~^^^1^0.02^0.04^2^-2.0e-03^0.05^~2, 3~^~01/01/2010~ -~20080~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20081~^~203~^10.33^61^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~204~^0.98^29^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~205~^76.31^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20081~^~207~^0.47^61^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~255~^11.92^72^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~269~^0.27^3^^~1~^~A~^^^2^0.22^0.31^^^^~2~^~10/01/2002~ -~20081~^~303~^4.64^23^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~309~^0.70^136^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~323~^0.06^9^8.0e-03^~1~^~A~^^^3^0.02^0.12^1^-0.04^0.16^~2~^~10/01/2002~ -~20081~^~341~^0.07^9^0.01^~1~^~A~^^^3^0.03^0.17^1^-0.08^0.21^~2~^~10/01/2002~ -~20081~^~342~^0.38^9^0.12^~1~^~A~^^^3^0.00^0.87^1^-1.17^1.94^~2~^~10/01/2002~ -~20081~^~343~^0.02^9^3.0e-03^~1~^~A~^^^3^0.00^0.03^1^-0.01^0.04^~1, 2~^~10/01/2002~ -~20081~^~344~^0.02^3^8.0e-03^~1~^~A~^^^2^0.01^0.03^2^-0.01^0.05^~4~^~10/01/2002~ -~20081~^~345~^0.09^3^0.06^~1~^~A~^^^2^0.00^0.17^2^-0.21^0.38^~1, 4~^~10/01/2002~ -~20081~^~346~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~10/01/2002~ -~20081~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~10/01/2002~ -~20081~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20082~^~203~^9.89^37^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~204~^0.97^29^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~205~^74.22^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20082~^~207~^4.33^32^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~255~^10.59^34^0.19^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~269~^0.22^1^^~13~^~AI~^^^^^^^^^^~10/01/2002~ -~20082~^~303~^4.67^7^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~309~^0.62^5^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~323~^0.05^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~342~^0.32^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~20082~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20083~^~203~^11.98^65^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~204~^1.66^9^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~205~^72.53^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20083~^~207~^0.47^65^5.0e-03^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~255~^13.36^67^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~269~^0.31^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20083~^~303~^4.41^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20083~^~309~^0.85^177^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~323~^0.40^2^^~1~^~A~^^^1^0.32^0.48^1^^^^~05/01/2002~ -~20083~^~341~^0.20^2^^~1~^~A~^^^1^0.20^0.20^^^^^~05/01/2002~ -~20083~^~342~^1.44^2^^~1~^~A~^^^1^1.32^1.56^1^^^^~05/01/2002~ -~20083~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2002~ -~20083~^~344~^0.20^2^^~1~^~A~^^^1^0.15^0.25^1^^^^~05/01/2002~ -~20083~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2002~ -~20083~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2002~ -~20083~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2002~ -~20083~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20084~^~203~^8.20^21^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~204~^0.86^5^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~205~^78.03^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20084~^~207~^0.39^35^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~255~^12.51^25^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~269~^0.31^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20084~^~303~^7.32^2^^~1~^^^^^^^^^^^~05/01/2002~ -~20084~^~309~^0.62^72^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~323~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~10/01/2002~ -~20084~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~10/01/2002~ -~20084~^~342~^0.08^2^^~1~^~A~^^^1^0.05^0.11^1^^^^~10/01/2002~ -~20084~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20084~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20084~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20084~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20084~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20084~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20086~^~203~^9.66^25^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~204~^10.63^25^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~205~^67.14^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20086~^~207~^2.49^25^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~255~^10.08^25^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~303~^7.05^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~309~^0.64^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~323~^1.64^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~20086~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20087~^~203~^7.49^8^0.38^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~204~^1.27^8^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~205~^42.53^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20087~^~207~^0.96^8^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~255~^47.75^8^3.57^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~303~^2.14^8^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~309~^1.65^8^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20088~^~203~^14.73^43^0.25^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~204~^1.08^10^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~205~^74.90^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20088~^~207~^1.53^10^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~210~^0.67^3^^~1~^^^^1^0.50^0.80^^^^~2~^~03/01/2003~ -~20088~^~255~^7.76^40^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~269~^2.50^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~20088~^~303~^1.96^40^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~309~^5.96^41^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~323~^0.82^0^^~4~^~BFZN~^~20080~^^^^^^^^^~03/01/2003~ -~20088~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20089~^~203~^3.99^8^0.28^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~204~^0.34^11^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~205~^21.34^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20089~^~207~^0.40^8^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~210~^0.33^4^0.06^~1~^~A~^^^2^0.20^0.40^1^-0.51^1.18^~2~^~03/01/2003~ -~20089~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20089~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~20089~^~255~^73.93^11^0.86^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~269~^0.73^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~20089~^~303~^0.60^5^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~309~^1.34^5^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~323~^0.24^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~ -~20089~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20090~^~203~^7.23^3^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~204~^2.78^3^0.40^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~205~^76.48^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20090~^~207~^1.54^3^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~255~^11.97^3^0.97^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~269~^0.66^0^^~4~^~BFZN~^~20036~^^^^^^^^^~05/01/2015~ -~20090~^~303~^1.98^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~309~^2.45^3^0.45^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~323~^0.60^0^^~4~^~BFZN~^~20036~^^^^^^^^^~05/01/2015~ -~20090~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20091~^~203~^7.46^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~204~^2.08^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~205~^79.26^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20091~^~207~^1.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~255~^10.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~303~^0.93^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~309~^1.79^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20092~^~203~^2.63^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~204~^0.73^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~205~^27.91^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20092~^~207~^0.42^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~255~^68.31^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~303~^0.25^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~309~^0.63^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20093~^~203~^11.31^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~204~^2.30^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~205~^54.73^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20093~^~207~^0.66^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~255~^31.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~303~^3.35^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~309~^1.22^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~418~^0.31^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20094~^~203~^5.15^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~204~^1.05^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~205~^24.93^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20094~^~207~^0.30^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~255~^68.56^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~303~^1.14^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~309~^0.56^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~418~^0.14^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~203~^11.26^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~204~^2.10^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~205~^55.72^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20095~^~207~^0.82^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~255~^30.10^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~303~^3.30^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~309~^1.40^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~418~^0.31^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20096~^~203~^5.06^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~204~^0.94^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~205~^25.04^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20096~^~207~^0.37^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~255~^68.58^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~303~^1.11^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~309~^0.63^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~418~^0.14^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~203~^5.28^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~204~^1.74^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~205~^23.54^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20097~^~207~^0.73^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~255~^68.71^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~303~^1.16^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~309~^0.44^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~418~^0.10^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~203~^4.37^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~204~^0.98^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~205~^25.12^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20098~^~207~^0.66^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~255~^68.86^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~303~^1.13^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~309~^0.37^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20105~^~203~^13.14^21^0.12^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~204~^1.04^5^0.55^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~205~^74.88^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20105~^~207~^1.05^19^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~255~^9.89^5^0.21^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~303~^4.28^19^0.20^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~309~^0.76^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20106~^~203~^4.53^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~204~^0.11^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~205~^26.61^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20106~^~207~^0.38^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~255~^68.37^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~269~^1.15^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~20106~^~303~^0.49^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~309~^0.44^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~323~^0.21^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~20106~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20109~^~203~^14.16^3^0.17^~1~^~A~^^^1^13.84^14.46^2^13.40^14.92^~2, 3~^~11/01/2004~ -~20109~^~204~^4.44^3^0.19^~1~^~A~^^^1^4.08^4.72^2^3.61^5.26^~2, 3~^~11/01/2004~ -~20109~^~205~^71.27^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~207~^1.12^3^0.04^~1~^~A~^^^1^1.07^1.20^2^0.93^1.30^~2, 3~^~11/01/2004~ -~20109~^~210~^0.27^6^0.16^~1~^~A~^^^2^0.08^0.48^1^-1.84^2.37^~2~^~11/01/2004~ -~20109~^~211~^0.10^4^0.04^~1~^~A~^^^2^0.06^0.18^1^-0.42^0.62^~2~^~11/01/2004~ -~20109~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~214~^1.53^6^0.70^~1~^~A~^^^2^0.58^2.56^1^-7.40^10.46^~2~^~11/01/2004~ -~20109~^~255~^9.01^6^0.21^~1~^~A~^^^2^8.45^10.13^1^6.22^11.79^~2~^~11/01/2004~ -~20109~^~269~^1.88^6^0.93^~1~^~A~^^^2^0.66^3.11^1^-9.94^13.70^~2~^~11/01/2004~ -~20109~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~303~^4.01^3^0.17^~1~^~A~^^^1^3.74^4.33^2^3.27^4.75^~2, 3~^~02/01/2009~ -~20109~^~309~^1.92^3^0.02^~1~^~A~^^^1^1.88^1.97^2^1.79^2.03^~2, 3~^~11/01/2004~ -~20109~^~323~^0.37^3^0.04^~1~^~A~^^^1^0.29^0.43^2^0.19^0.54^~2, 3~^~11/01/2004~ -~20109~^~341~^0.06^3^0.00^~1~^~A~^^^1^0.06^0.06^^^^~2, 3~^~11/01/2004~ -~20109~^~342~^1.36^3^0.02^~1~^~A~^^^1^1.31^1.40^2^1.24^1.48^~2, 3~^~11/01/2004~ -~20109~^~343~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 2, 3~^~11/01/2004~ -~20109~^~344~^0.23^3^9.0e-03^~1~^~A~^^^1^0.22^0.25^2^0.19^0.27^~2, 3~^~11/01/2004~ -~20109~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~418~^0.29^3^0.01^~1~^~A~^^^1^0.27^0.31^2^0.23^0.33^~2, 3~^~11/01/2004~ -~20109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20110~^~203~^4.54^3^1.05^~1~^~A~^^^1^2.76^6.41^2^5.0e-03^9.07^~2, 3~^~11/01/2004~ -~20110~^~204~^2.07^3^0.12^~1~^~A~^^^1^1.89^2.31^2^1.52^2.61^~2, 3~^~11/01/2004~ -~20110~^~205~^25.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~207~^0.50^3^0.04^~1~^~A~^^^1^0.43^0.59^2^0.30^0.69^~2, 3~^~11/01/2004~ -~20110~^~210~^0.04^4^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~11/01/2004~ -~20110~^~211~^0.07^6^0.05^~1~^~A~^^^2^0.02^0.17^1^-0.58^0.72^~1, 2~^~11/01/2004~ -~20110~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~214~^0.30^6^0.09^~1~^~A~^^^2^0.10^0.41^1^-0.95^1.54^~2~^~11/01/2004~ -~20110~^~255~^67.73^8^2.15^~1~^~A~^^^4^60.40^73.60^3^60.89^74.57^~2~^~11/01/2004~ -~20110~^~269~^0.40^6^0.08^~1~^~A~^^^2^0.24^0.50^1^-0.64^1.45^~2~^~11/01/2004~ -~20110~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~303~^1.47^42^0.05^~1~^~A~^^^13^0.81^2.01^12^1.36^1.58^~2~^~03/01/2005~ -~20110~^~309~^0.65^42^0.03^~1~^~A~^^^13^0.43^0.94^12^0.58^0.72^~2~^~11/01/2004~ -~20110~^~323~^0.17^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.09^0.25^~2, 3~^~11/01/2004~ -~20110~^~341~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~11/01/2004~ -~20110~^~342~^0.60^3^0.01^~1~^~A~^^^1^0.58^0.62^2^0.55^0.65^~2, 3~^~11/01/2004~ -~20110~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~344~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~11/01/2004~ -~20110~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~418~^0.09^3^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~11/01/2004~ -~20110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20111~^~203~^14.61^4^0.66^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~204~^4.55^4^0.75^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~205~^70.32^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20111~^~207~^1.79^3^0.34^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~255~^8.72^3^0.26^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~303~^4.20^3^0.58^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~309~^1.83^3^0.20^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~418~^0.40^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20112~^~203~^5.04^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~204~^1.57^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~205~^24.25^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20112~^~207~^0.62^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~255~^68.52^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~269~^0.71^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~20112~^~303~^1.09^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~309~^0.63^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~323~^0.55^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~20112~^~418~^0.14^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20113~^~203~^10.88^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~204~^21.24^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~205~^63.64^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~207~^2.66^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~255~^1.58^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~303~^6.43^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~309~^0.81^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~323~^0.83^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20114~^~203~^14.38^3^0.20^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~204~^0.71^3^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~205~^74.62^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20114~^~207~^3.41^3^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~255~^6.88^3^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~303~^2.70^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~309~^1.71^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20115~^~203~^5.06^3^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~204~^0.10^3^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~205~^21.44^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20115~^~207~^0.39^3^6.0e-03^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~255~^73.01^3^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~303~^0.48^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~309~^0.12^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20116~^~203~^11.35^6^0.31^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~204~^0.81^6^0.24^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~205~^74.10^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20116~^~207~^4.54^6^0.28^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~255~^9.21^6^0.78^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~303~^1.32^5^0.20^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~309~^0.45^5^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20117~^~203~^4.00^4^0.91^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~204~^0.18^7^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~205~^27.54^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20117~^~207~^0.36^4^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~255~^67.91^4^8.57^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~303~^0.52^4^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~309~^0.22^4^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20118~^~203~^10.33^4^0.80^~1~^~A~^^^1^8.42^12.32^3^7.77^12.88^~2, 3~^~04/01/2008~ -~20118~^~204~^31.72^4^3.13^~1~^~A~^^^1^25.75^38.48^3^21.74^41.70^~2, 3~^~04/01/2008~ -~20118~^~205~^51.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~20118~^~207~^1.11^4^0.25^~1~^~A~^^^1^0.43^1.57^3^0.30^1.91^~2, 3~^~04/01/2008~ -~20118~^~255~^4.93^4^0.63^~1~^~A~^^^1^3.77^6.42^3^2.91^6.94^~2, 3~^~04/01/2008~ -~20118~^~269~^0.25^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~303~^1.76^4^0.54^~1~^~A~^^^1^0.79^3.31^3^0.03^3.48^~2, 3~^~04/01/2008~ -~20118~^~309~^0.63^4^0.05^~1~^~A~^^^1^0.51^0.79^3^0.45^0.81^~2, 3~^~04/01/2008~ -~20118~^~323~^3.29^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~20120~^~203~^13.04^6^0.18^~1~^~A~^^^3^12.40^13.40^2^12.23^13.84^~2~^~10/01/2004~ -~20120~^~204~^1.51^8^0.20^~1~^~A~^^^4^1.00^2.09^3^0.86^2.15^~2~^~10/01/2004~ -~20120~^~205~^74.67^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~207~^0.88^5^0.01^~1~^~A~^^^2^0.84^0.94^1^0.73^1.02^~2~^~10/01/2004~ -~20120~^~209~^62.45^5^0.52^~1~^~A~^^^2^56.78^66.10^2^60.13^64.75^~2, 3~^~10/01/2004~ -~20120~^~210~^0.48^5^0.01^~1~^~A~^^^2^0.43^0.53^3^0.42^0.52^~2, 3~^~05/01/2006~ -~20120~^~211~^0.12^5^0.01^~1~^~A~^^^2^0.10^0.19^2^0.05^0.19^~1, 2, 3~^~05/01/2006~ -~20120~^~212~^0.11^5^0.01^~1~^~A~^^^2^0.07^0.15^2^0.05^0.15^~1, 2, 3~^~05/01/2006~ -~20120~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20120~^~214~^1.96^5^0.08^~1~^~A~^^^2^1.48^2.34^2^1.61^2.30^~2, 3~^~05/01/2006~ -~20120~^~255~^9.90^9^0.27^~1~^~A~^^^4^8.93^10.93^3^9.02^10.77^~2~^~10/01/2004~ -~20120~^~269~^2.67^5^0.10^~1~^~A~^^^2^2.10^3.03^2^2.22^3.10^~2, 3~^~05/01/2006~ -~20120~^~287~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20120~^~303~^3.30^6^0.14^~1~^~A~^^^3^3.08^3.83^2^2.66^3.93^~2~^~08/01/2007~ -~20120~^~309~^1.41^5^0.07^~1~^~A~^^^2^1.23^1.68^2^1.09^1.71^~2, 3~^~05/01/2006~ -~20120~^~323~^0.11^6^0.03^~1~^~A~^^^3^0.03^0.15^2^-0.05^0.26^~2~^~10/01/2004~ -~20120~^~341~^0.06^6^0.01^~1~^~A~^^^3^0.02^0.09^2^-7.0e-03^0.11^~2~^~10/01/2004~ -~20120~^~342~^0.88^6^0.32^~1~^~A~^^^3^0.18^1.23^2^-0.51^2.27^~2~^~10/01/2004~ -~20120~^~343~^0.00^6^3.0e-03^~1~^~A~^^^3^0.00^0.01^2^-0.01^0.01^~1, 2~^~10/01/2004~ -~20120~^~344~^0.13^6^0.04^~1~^~A~^^^3^0.04^0.19^2^-0.06^0.31^~2~^~10/01/2004~ -~20120~^~345~^0.01^6^5.0e-03^~1~^~A~^^^3^0.00^0.02^2^-0.01^0.02^~1, 2~^~10/01/2004~ -~20120~^~346~^0.00^6^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~10/01/2004~ -~20120~^~347~^0.00^6^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~10/01/2004~ -~20120~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20121~^~203~^5.80^19^0.10^~1~^~A~^^^3^4.39^7.20^11^5.57^6.02^~2, 3~^~03/01/2005~ -~20121~^~204~^0.93^19^0.02^~1~^~A~^^^3^0.64^1.11^11^0.87^0.99^~2, 3~^~03/01/2005~ -~20121~^~205~^30.86^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20121~^~207~^0.27^13^7.0e-03^~1~^~A~^^^2^0.23^0.32^11^0.25^0.28^~2, 3~^~03/01/2005~ -~20121~^~209~^26.01^11^0.46^~1~^~A~^^^2^23.57^30.40^6^24.89^27.13^~2, 3~^~10/01/2004~ -~20121~^~210~^0.09^9^0.06^~1~^~A~^^^3^0.00^0.23^2^-0.16^0.35^~1, 2~^~05/01/2006~ -~20121~^~211~^0.04^12^0.02^~1~^~A~^^^4^0.00^0.12^3^-0.02^0.11^~1, 2~^~09/01/2015~ -~20121~^~212~^0.03^9^0.02^~1~^~A~^^^3^0.00^0.10^2^-0.06^0.12^~1, 2~^~05/01/2006~ -~20121~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20121~^~214~^0.40^12^0.08^~1~^~A~^^^4^0.18^0.66^3^0.15^0.69^~2~^~09/01/2015~ -~20121~^~255~^62.13^26^0.58^~1~^~A~^^^7^54.33^69.60^6^60.72^63.53^~2, 3~^~03/01/2005~ -~20121~^~269~^0.56^12^0.13^~1~^~A~^^^4^0.24^1.06^3^0.13^0.98^~2~^~05/01/2006~ -~20121~^~287~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20121~^~303~^1.28^56^0.05^~1~^~A~^^^14^0.88^2.50^13^1.15^1.41^~2~^~05/01/2006~ -~20121~^~309~^0.51^52^0.02^~1~^~A~^^^14^0.37^0.90^13^0.44^0.57^~2~^~05/01/2006~ -~20121~^~323~^0.06^5^5.0e-03^~1~^~A~^^^2^0.04^0.07^3^0.04^0.07^~2, 3~^~10/01/2004~ -~20121~^~341~^0.03^5^2.0e-03^~1~^~A~^^^2^0.03^0.04^3^0.02^0.03^~2, 3~^~10/01/2004~ -~20121~^~342~^0.50^5^0.01^~1~^~A~^^^2^0.42^0.61^3^0.45^0.55^~2, 3~^~10/01/2004~ -~20121~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~10/01/2004~ -~20121~^~344~^0.05^5^0.01^~1~^~A~^^^2^0.00^0.08^3^0.01^0.08^~2, 3~^~10/01/2004~ -~20121~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20121~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20121~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20121~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20124~^~203~^13.87^10^0.06^~1~^~A~^^^1^13.53^14.23^5^13.68^14.05^~2, 3~^~06/01/2015~ -~20124~^~204~^2.93^10^0.06^~1~^~A~^^^1^2.60^3.24^6^2.77^3.07^~2, 3~^~06/01/2015~ -~20124~^~205~^73.37^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~207~^1.62^10^0.04^~1~^~A~^^^1^1.35^1.93^4^1.49^1.74^~2, 3~^~06/01/2015~ -~20124~^~209~^56.75^6^1.15^~1~^~A~^^^1^53.70^61.10^2^52.25^61.24^~2, 3~^~06/01/2015~ -~20124~^~210~^0.68^2^^~1~^~A~^^^1^0.60^0.70^^^^^~06/01/2015~ -~20124~^~211~^0.24^2^^~1~^~A~^^^1^0.20^0.40^^^^^~06/01/2015~ -~20124~^~212~^0.30^2^^~1~^~A~^^^1^0.30^0.30^^^^^~06/01/2015~ -~20124~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20124~^~214~^1.52^2^^~1~^~A~^^^1^1.50^1.60^^^^^~06/01/2015~ -~20124~^~255~^8.21^10^0.10^~1~^~A~^^^1^7.47^8.97^5^7.93^8.48^~2, 3~^~06/01/2015~ -~20124~^~269~^2.74^2^^~1~^~A~^^^1^2.70^2.90^^^^^~06/01/2015~ -~20124~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20124~^~303~^3.62^10^0.08^~1~^~A~^^^1^3.14^3.90^6^3.39^3.83^~2, 3~^~06/01/2015~ -~20124~^~309~^2.97^10^0.05^~1~^~A~^^^1^2.70^3.17^4^2.82^3.11^~2, 3~^~06/01/2015~ -~20124~^~323~^0.46^2^^~1~^~A~^^^1^0.44^0.47^1^^^^~06/01/2015~ -~20124~^~341~^0.22^2^^~1~^~A~^^^1^0.22^0.23^1^^^^~06/01/2015~ -~20124~^~342~^0.87^2^^~1~^~A~^^^1^0.83^0.90^1^^^^~06/01/2015~ -~20124~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20124~^~344~^0.40^2^^~1~^~A~^^^1^0.39^0.42^1^^^^~06/01/2015~ -~20124~^~345~^2.79^2^^~1~^~A~^^^1^2.68^2.89^1^^^^~06/01/2015~ -~20124~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20124~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20124~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20125~^~203~^5.99^10^0.11^~1~^~A~^^^1^5.31^6.70^4^5.68^6.28^~2, 3~^~05/01/2015~ -~20125~^~204~^1.71^10^0.03^~1~^~A~^^^1^1.59^1.85^4^1.61^1.79^~2, 3~^~05/01/2015~ -~20125~^~205~^30.07^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~207~^0.44^10^0.02^~1~^~A~^^^1^0.36^0.55^3^0.38^0.50^~2, 3~^~10/01/1989~ -~20125~^~209~^25.51^6^0.39^~1~^~A~^^^1^23.60^27.20^1^21.20^29.81^~2, 3~^~05/01/2015~ -~20125~^~210~^0.20^2^^~1~^~A~^^^1^0.20^0.20^^^^^~05/01/2015~ -~20125~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~05/01/2015~ -~20125~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~05/01/2015~ -~20125~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~20125~^~214~^0.40^2^^~1~^~A~^^^1^0.40^0.40^^^^^~05/01/2015~ -~20125~^~255~^61.80^10^0.82^~1~^~A~^^^1^57.87^65.26^4^59.36^64.22^~2, 3~^~05/01/2015~ -~20125~^~269~^0.75^2^^~1~^~A~^^^1^0.75^0.75^^^^^~05/01/2015~ -~20125~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~20125~^~303~^1.72^10^0.04^~1~^~A~^^^1^1.37^1.94^6^1.61^1.83^~2, 3~^~05/01/2015~ -~20125~^~309~^1.34^10^0.02^~1~^~A~^^^1^1.18^1.49^6^1.29^1.39^~2, 3~^~05/01/2015~ -~20125~^~323~^0.23^2^^~1~^~A~^^^1^0.20^0.25^1^^^^~05/01/2015~ -~20125~^~341~^0.08^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~05/01/2015~ -~20125~^~342~^0.09^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~05/01/2015~ -~20125~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~20125~^~344~^0.18^2^^~1~^~A~^^^1^0.17^0.19^1^^^^~05/01/2015~ -~20125~^~345~^1.16^2^^~1~^~A~^^^1^1.15^1.17^1^^^^~05/01/2015~ -~20125~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~20125~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~20125~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20126~^~203~^13.35^4^0.37^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~204~^1.57^3^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~205~^74.81^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20126~^~207~^1.93^3^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~255~^8.34^3^0.38^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~269~^2.72^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~303~^2.13^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~309~^2.76^3^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~323~^0.74^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20126~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~20126~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20127~^~203~^4.58^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~204~^0.63^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~205~^26.15^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20127~^~207~^0.50^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~255~^68.14^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~303~^1.04^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~309~^1.08^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20129~^~203~^11.98^65^0.09^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~204~^1.66^9^0.03^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~205~^72.53^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~ -~20129~^~207~^0.47^65^5.0e-03^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~255~^13.36^67^0.10^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~269~^0.31^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~303~^0.90^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20129~^~309~^0.85^177^0.02^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~323~^0.40^0^^~4~^~BFZN~^~20083~^^^^^^^^^~02/01/2003~ -~20129~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~20129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20130~^~203~^10.50^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~204~^1.60^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~205~^74.52^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20130~^~207~^1.28^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~255~^12.11^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~269~^0.80^0^^~4~^~BFZN~^~20132~^^^^^^^^^~09/01/2002~ -~20130~^~303~^2.68^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~309~^2.00^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~323~^0.57^0^^~4~^~BFZN~^~20004~^^^^^^^^^~09/01/2002~ -~20130~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20131~^~203~^10.28^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~204~^1.84^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~205~^78.30^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~ -~20131~^~207~^1.37^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~255~^8.21^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~269~^0.80^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~303~^4.71^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~309~^2.06^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~323~^0.57^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~ -~20131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20132~^~203~^14.66^2^^~1~^~A~^^^1^14.23^15.09^1^^^^~09/01/2002~ -~20132~^~204~^9.12^2^^~1~^~A~^^^1^8.99^9.25^1^^^^~09/01/2002~ -~20132~^~205~^65.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20132~^~207~^1.97^2^^~1~^~A~^^^1^1.91^2.03^1^^^^~09/01/2002~ -~20132~^~210~^0.50^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20132~^~211~^0.10^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20132~^~212~^0.00^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20132~^~255~^8.55^2^^~1~^~A~^^^1^8.24^8.86^1^^^^~09/01/2002~ -~20132~^~269~^0.80^1^^~1~^^^^^^^^^^^~09/01/2002~ -~20132~^~303~^4.00^2^^~1~^~A~^^^1^3.99^4.01^1^^^^~09/01/2002~ -~20132~^~309~^3.20^2^^~1~^~A~^^^1^3.11^3.28^1^^^^~09/01/2002~ -~20132~^~323~^0.70^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20133~^~203~^5.95^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~204~^0.56^3^0.21^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~205~^80.18^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~207~^0.85^3^0.37^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~255~^11.91^3^1.11^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~269~^0.12^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20133~^~303~^0.70^2^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~309~^0.74^3^0.30^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20133~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20134~^~203~^1.79^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~204~^0.20^3^0.09^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~205~^24.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~20134~^~207~^0.18^3^0.06^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~255~^73.82^3^1.10^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~269~^0.03^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20134~^~303~^0.14^3^0.02^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~309~^0.25^3^0.19^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~323~^0.03^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~20134~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~20134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~20134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~20135~^~203~^13.51^6^0.18^~1~^~A~^^^1^13.00^15.04^4^13.00^14.00^~2, 3~^~06/01/2015~ -~20135~^~204~^2.68^6^0.02^~1~^~A~^^^1^2.26^3.08^4^2.61^2.73^~2, 3~^~06/01/2015~ -~20135~^~205~^73.10^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~207~^1.87^6^0.02^~1~^~A~^^^1^1.54^2.18^4^1.81^1.92^~2, 3~^~06/01/2015~ -~20135~^~209~^57.39^4^0.50^~1~^~A~^^^1^54.40^59.30^2^55.21^59.56^~2, 3~^~06/01/2015~ -~20135~^~210~^0.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20135~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20135~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20135~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20135~^~214~^1.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20135~^~255~^8.85^6^0.09^~1~^~A~^^^1^7.71^10.03^4^8.59^9.10^~2, 3~^~06/01/2015~ -~20135~^~269~^2.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20135~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20135~^~303~^3.33^6^0.02^~1~^~A~^^^1^3.04^3.68^4^3.27^3.39^~2, 3~^~06/01/2015~ -~20135~^~309~^2.40^6^0.02^~1~^~A~^^^1^1.99^2.83^4^2.33^2.45^~2, 3~^~06/01/2015~ -~20135~^~323~^0.17^2^^~1~^~A~^^^1^0.17^0.17^1^^^^~06/01/2015~ -~20135~^~341~^0.10^2^^~1~^~A~^^^1^0.10^0.10^1^^^^~06/01/2015~ -~20135~^~342~^0.64^2^^~1~^~A~^^^1^0.62^0.66^1^^^^~06/01/2015~ -~20135~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20135~^~344~^0.15^2^^~1~^~A~^^^1^0.14^0.16^1^^^^~06/01/2015~ -~20135~^~345~^1.42^2^^~1~^~A~^^^1^1.31^1.53^1^^^^~06/01/2015~ -~20135~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20135~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20136~^~203~^5.82^6^0.05^~1~^~A~^^^1^5.66^6.12^4^5.66^5.96^~2, 3~^~06/01/2015~ -~20136~^~204~^1.50^6^0.02^~1~^~A~^^^1^1.38^1.68^4^1.43^1.57^~2, 3~^~06/01/2015~ -~20136~^~205~^31.51^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~207~^0.45^6^0.01^~1~^~A~^^^1^0.36^0.57^4^0.41^0.47^~2, 3~^~06/01/2015~ -~20136~^~209~^26.39^4^0.17^~1~^~A~^^^1^24.80^27.80^2^25.64^27.12^~2, 3~^~06/01/2015~ -~20136~^~210~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20136~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20136~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20136~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20136~^~214~^0.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20136~^~255~^60.72^6^0.34^~1~^~A~^^^1^59.23^62.14^4^59.77^61.67^~2, 3~^~06/01/2015~ -~20136~^~269~^0.85^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20136~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20136~^~303~^1.65^6^0.03^~1~^~A~^^^1^1.54^1.93^4^1.56^1.74^~2, 3~^~06/01/2015~ -~20136~^~309~^1.12^6^0.01^~1~^~A~^^^1^0.92^1.34^4^1.07^1.16^~2, 3~^~06/01/2015~ -~20136~^~323~^0.10^2^^~1~^~A~^^^1^0.09^0.12^1^^^^~06/01/2015~ -~20136~^~341~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~06/01/2015~ -~20136~^~342~^0.06^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~06/01/2015~ -~20136~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20136~^~344~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~06/01/2015~ -~20136~^~345~^0.60^2^^~1~^~A~^^^1^0.57^0.64^1^^^^~06/01/2015~ -~20136~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20136~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~20137~^~203~^4.40^3^0.82^~1~^~A~^^^1^3.13^5.94^2^0.85^7.93^~2, 3~^~03/01/2007~ -~20137~^~204~^1.92^3^0.27^~1~^~A~^^^1^1.50^2.43^2^0.75^3.09^~2, 3~^~03/01/2007~ -~20137~^~205~^21.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20137~^~207~^0.76^3^0.10^~1~^~A~^^^1^0.65^0.97^2^0.31^1.20^~2, 3~^~03/01/2007~ -~20137~^~209~^17.63^3^2.18^~1~^~A~^^^1^15.40^22.00^2^8.23^27.02^~2, 3~^~03/01/2007~ -~20137~^~255~^71.61^3^3.95^~1~^~A~^^^1^63.83^76.69^2^54.61^88.61^~2, 3~^~03/01/2007~ -~20137~^~269~^0.87^0^^~4~^~O~^^^^^^^^^^~05/01/2012~ -~20137~^~303~^1.49^3^0.29^~1~^~A~^^^1^1.14^2.08^2^0.22^2.76^~2, 3~^~03/01/2007~ -~20137~^~309~^1.09^3^0.21^~1~^~A~^^^1^0.85^1.51^2^0.18^1.99^~2, 3~^~03/01/2007~ -~20137~^~323~^0.63^3^0.12^~1~^~A~^^^1^0.45^0.88^2^0.08^1.18^~2, 3~^~03/01/2007~ -~20137~^~341~^0.03^3^7.0e-03^~1~^~A~^^^1^0.02^0.04^2^-2.0e-03^0.05^~2, 3~^~03/01/2007~ -~20137~^~342~^1.19^3^0.33^~1~^~A~^^^1^0.70^1.82^2^-0.23^2.61^~2, 3~^~03/01/2007~ -~20137~^~343~^0.11^3^0.03^~1~^~A~^^^1^0.06^0.18^2^-0.05^0.26^~2, 3~^~03/01/2007~ -~20137~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20137~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20137~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20137~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~20137~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20138~^~203~^14.54^4^0.01^~1~^~A~^^^2^13.84^15.20^1^14.32^14.75^~2~^~06/01/2013~ -~20138~^~204~^2.13^4^0.05^~1~^~A~^^^2^1.96^2.21^1^1.40^2.86^~2~^~06/01/2013~ -~20138~^~205~^70.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20138~^~207~^1.67^4^0.02^~1~^~A~^^^2^1.48^1.91^1^1.42^1.92^~2~^~06/01/2013~ -~20138~^~209~^52.41^2^^~1~^~A~^^^1^52.01^52.81^^^^^~03/01/2007~ -~20138~^~210~^0.55^4^0.04^~1~^~A~^^^2^0.40^0.80^1^-0.01^1.12^~2~^~06/01/2013~ -~20138~^~211~^0.62^4^0.26^~1~^~A~^^^2^0.10^0.97^1^-2.75^3.98^~2~^~06/01/2013~ -~20138~^~212~^0.11^4^0.06^~1~^~A~^^^2^0.00^0.19^1^-0.65^0.87^~1, 2~^~06/01/2013~ -~20138~^~213~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~03/01/2007~ -~20138~^~214~^6.56^4^0.75^~1~^~A~^^^2^2.20^9.40^1^-3.06^16.18^~2~^~06/01/2013~ -~20138~^~255~^11.07^4^0.18^~1~^~A~^^^2^10.09^12.33^1^8.71^13.43^~2~^~06/01/2013~ -~20138~^~269~^7.84^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~20138~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~20138~^~303~^3.77^4^0.37^~1~^~A~^^^2^3.34^4.90^1^-0.99^8.53^~2~^~06/01/2013~ -~20138~^~309~^3.68^2^^~1~^~A~^^^1^2.38^4.99^^^^^~03/01/2007~ -~20138~^~323~^0.61^2^^~1~^~A~^^^1^0.60^0.61^^^^^~06/01/2013~ -~20138~^~341~^0.14^2^^~1~^~A~^^^1^0.13^0.16^^^^^~06/01/2013~ -~20138~^~342~^1.08^2^^~1~^~A~^^^1^1.02^1.14^^^^^~06/01/2013~ -~20138~^~343~^0.01^2^^~1~^~A~^^^1^0.00^0.01^^^^~1~^~03/01/2007~ -~20138~^~344~^0.31^2^^~1~^~A~^^^1^0.30^0.31^^^^^~06/01/2013~ -~20138~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~20138~^~346~^0.02^2^^~1~^~A~^^^1^0.02^0.03^^^^^~03/01/2007~ -~20138~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~20139~^~203~^5.71^2^^~1~^~A~^^^1^5.54^5.89^^^^^~06/01/2013~ -~20139~^~204~^0.83^2^^~1~^~A~^^^1^0.83^0.84^^^^^~06/01/2013~ -~20139~^~205~^27.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20139~^~207~^0.67^2^^~1~^~A~^^^1^0.61^0.73^^^^^~06/01/2013~ -~20139~^~255~^65.18^2^^~1~^~A~^^^1^64.91^65.45^^^^^~06/01/2013~ -~20139~^~269~^3.07^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~303~^1.76^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~309~^1.84^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~323~^0.24^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20140~^~203~^14.57^3^1.42^~1~^~A~^^^1^13.04^17.41^2^8.44^20.69^~4~^~04/01/2007~ -~20140~^~204~^2.43^3^0.18^~1~^~A~^^^1^2.11^2.76^2^1.62^3.24^~4~^~04/01/2007~ -~20140~^~205~^70.19^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20140~^~207~^1.78^3^0.07^~1~^~A~^^^1^1.63^1.88^2^1.45^2.11^~4~^~04/01/2007~ -~20140~^~209~^53.92^3^1.52^~1~^~A~^^^1^50.87^55.60^2^47.34^60.50^~4~^~04/01/2007~ -~20140~^~210~^0.59^3^0.04^~1~^~A~^^^1^0.51^0.68^2^0.38^0.80^~4~^~04/01/2007~ -~20140~^~211~^0.84^3^0.08^~1~^~A~^^^1^0.73^1.00^2^0.48^1.19^~4~^~04/01/2007~ -~20140~^~212~^0.24^3^0.02^~1~^~A~^^^1^0.18^0.27^2^0.11^0.35^~4~^~04/01/2007~ -~20140~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~214~^5.15^3^0.94^~1~^~A~^^^1^3.68^6.91^2^1.09^9.21^~4~^~04/01/2007~ -~20140~^~255~^11.02^3^1.52^~1~^~A~^^^1^7.97^12.65^2^4.45^17.59^~4~^~04/01/2007~ -~20140~^~269~^6.82^3^1.03^~1~^~A~^^^1^5.24^8.77^2^2.36^11.27^~4~^~04/01/2007~ -~20140~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~303~^4.44^3^0.10^~1~^~A~^^^1^4.32^4.65^2^3.97^4.89^~4~^~04/01/2007~ -~20140~^~309~^3.28^3^0.31^~1~^~A~^^^1^2.82^3.87^2^1.94^4.61^~4~^~04/01/2007~ -~20140~^~323~^0.79^3^0.02^~1~^~A~^^^1^0.76^0.83^2^0.69^0.88^~4~^~04/01/2007~ -~20140~^~341~^0.25^3^3.0e-03^~1~^~A~^^^1^0.24^0.25^2^0.23^0.26^~4~^~04/01/2007~ -~20140~^~342~^1.71^3^0.10^~1~^~A~^^^1^1.51^1.83^2^1.27^2.14^~4~^~04/01/2007~ -~20140~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~344~^0.35^3^0.02^~1~^~A~^^^1^0.31^0.37^2^0.26^0.43^~4~^~04/01/2007~ -~20140~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20140~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~20141~^~203~^5.50^3^0.46^~1~^~A~^^^1^4.96^6.41^2^3.52^7.47^~4~^~04/01/2007~ -~20141~^~204~^0.85^3^0.08^~1~^~A~^^^1^0.67^0.96^2^0.46^1.23^~4~^~04/01/2007~ -~20141~^~205~^26.44^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20141~^~207~^0.65^3^0.02^~1~^~A~^^^1^0.62^0.69^2^0.56^0.74^~4~^~04/01/2007~ -~20141~^~209~^19.57^3^0.34^~1~^~A~^^^1^19.00^20.20^2^18.06^21.06^~4~^~04/01/2007~ -~20141~^~255~^66.56^3^0.39^~1~^~A~^^^1^65.79^67.07^2^64.87^68.24^~4~^~04/01/2007~ -~20141~^~303~^1.67^3^0.11^~1~^~A~^^^1^1.44^1.80^2^1.17^2.17^~4~^~04/01/2007~ -~20141~^~309~^1.25^3^0.14^~1~^~A~^^^1^1.02^1.53^2^0.60^1.89^~4~^~04/01/2007~ -~20141~^~323~^0.26^3^0.03^~1~^~A~^^^1^0.23^0.32^2^0.13^0.38^~4~^~04/01/2007~ -~20141~^~341~^0.08^3^6.0e-03^~1~^~A~^^^1^0.07^0.09^2^0.05^0.10^~4~^~04/01/2007~ -~20141~^~342~^0.55^3^0.02^~1~^~A~^^^1^0.50^0.59^2^0.43^0.65^~4~^~04/01/2007~ -~20141~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20141~^~344~^0.11^3^0.02^~1~^~A~^^^1^0.06^0.14^2^3.0e-03^0.21^~4~^~04/01/2007~ -~20141~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20141~^~346~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 4~^~04/01/2007~ -~20141~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2007~ -~20141~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20142~^~203~^13.30^3^1.16^~1~^~A~^^^1^11.77^15.58^2^8.31^18.29^~2, 3~^~04/01/2007~ -~20142~^~204~^2.38^0^^~4~^~BFSN~^~20143~^^^^^^^^^~04/01/2007~ -~20142~^~205~^73.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~20142~^~207~^2.37^3^0.06^~1~^~A~^^^1^2.28^2.48^2^2.11^2.62^~2, 3~^~04/01/2007~ -~20142~^~209~^36.56^3^6.08^~1~^~A~^^^1^30.10^48.73^2^10.36^62.75^~2, 3~^~04/01/2007~ -~20142~^~210~^0.62^3^0.07^~1~^~A~^^^1^0.49^0.74^2^0.31^0.93^~2, 3~^~04/01/2007~ -~20142~^~211~^0.73^3^0.14^~1~^~A~^^^1^0.58^1.02^2^0.10^1.35^~2, 3~^~04/01/2007~ -~20142~^~212~^0.47^3^0.05^~1~^~A~^^^1^0.39^0.58^2^0.22^0.71^~2, 3~^~04/01/2007~ -~20142~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~20142~^~214~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~04/01/2007~ -~20142~^~255~^8.82^3^0.36^~1~^~A~^^^1^8.15^9.43^2^7.23^10.41^~2, 3~^~04/01/2007~ -~20142~^~269~^1.84^3^0.13^~1~^~A~^^^1^1.63^2.10^2^1.23^2.43^~2, 3~^~04/01/2007~ -~20142~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~20142~^~303~^7.63^3^1.41^~1~^~A~^^^1^4.87^9.55^2^1.54^13.71^~2, 3~^~04/01/2007~ -~20142~^~309~^3.63^3^0.18^~1~^~A~^^^1^3.32^3.96^2^2.82^4.42^~2, 3~^~04/01/2007~ -~20142~^~323~^0.08^3^0.02^~1~^~A~^^^1^0.05^0.12^2^-0.01^0.17^~2, 3~^~04/01/2007~ -~20142~^~341~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^9.0e-03^0.02^~1, 2, 3~^~04/01/2007~ -~20142~^~342~^5.04^3^0.44^~1~^~A~^^^1^4.26^5.79^2^3.14^6.94^~2, 3~^~04/01/2007~ -~20142~^~343~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.11^2^-6.0e-03^0.15^~2, 3~^~04/01/2007~ -~20142~^~344~^0.02^3^4.0e-03^~1~^~A~^^^1^0.01^0.03^2^2.0e-03^0.04^~1, 2, 3~^~04/01/2007~ -~20142~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~20142~^~346~^0.23^3^0.06^~1~^~A~^^^1^0.12^0.35^2^-0.05^0.51^~2, 3~^~04/01/2007~ -~20142~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~20143~^~203~^3.87^3^0.28^~1~^~A~^^^1^3.38^4.37^2^2.63^5.11^~4~^~01/01/2009~ -~20143~^~204~^0.65^3^0.02^~1~^~A~^^^1^0.62^0.70^2^0.55^0.75^~4~^~01/01/2009~ -~20143~^~205~^19.86^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20143~^~207~^0.69^3^7.0e-03^~1~^~A~^^^1^0.68^0.70^2^0.65^0.71^~4~^~01/01/2009~ -~20143~^~255~^74.93^3^0.04^~1~^~A~^^^1^74.84^75.00^2^74.72^75.13^~4~^~01/01/2009~ -~20143~^~303~^2.05^2^^~1~^~A~^^^1^1.49^2.61^1^^^^~01/01/2009~ -~20143~^~309~^1.11^2^^~1~^~A~^^^1^1.06^1.16^1^^^^~01/01/2009~ -~20143~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~20310~^~203~^4.54^3^1.05^~1~^~A~^^^1^2.76^6.41^2^5.0e-03^9.07^~2, 3~^~11/01/2004~ -~20310~^~204~^2.07^3^0.12^~1~^~A~^^^1^1.89^2.31^2^1.52^2.61^~2, 3~^~11/01/2004~ -~20310~^~205~^25.16^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20310~^~207~^0.50^3^0.04^~1~^~A~^^^1^0.43^0.59^2^0.30^0.69^~2, 3~^~11/01/2004~ -~20310~^~210~^0.04^4^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~11/01/2004~ -~20310~^~211~^0.07^6^0.05^~1~^~A~^^^2^0.02^0.17^1^-0.58^0.72^~1, 2~^~11/01/2004~ -~20310~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~214~^0.30^6^0.09^~1~^~A~^^^2^0.10^0.41^1^-0.95^1.54^~2~^~11/01/2004~ -~20310~^~255~^67.73^8^2.15^~1~^~A~^^^4^60.40^73.60^3^60.89^74.57^~2~^~11/01/2004~ -~20310~^~269~^0.40^6^0.08^~1~^~A~^^^2^0.24^0.50^1^-0.64^1.45^~2~^~11/01/2004~ -~20310~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~303~^1.47^42^0.05^~1~^~A~^^^13^0.81^2.01^12^1.36^1.58^~2~^~11/01/2004~ -~20310~^~309~^0.65^42^0.03^~1~^~A~^^^13^0.43^0.94^12^0.58^0.72^~2~^~11/01/2004~ -~20310~^~323~^0.17^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.09^0.25^~2, 3~^~11/01/2004~ -~20310~^~341~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~11/01/2004~ -~20310~^~342~^0.60^3^0.01^~1~^~A~^^^1^0.58^0.62^2^0.55^0.65^~2, 3~^~11/01/2004~ -~20310~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~344~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~11/01/2004~ -~20310~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20310~^~418~^0.09^3^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~11/01/2004~ -~20314~^~203~^9.42^7^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~204~^4.74^4^0.45^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~205~^74.26^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20314~^~207~^1.20^4^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~255~^10.37^10^1.03^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~303~^2.71^6^0.40^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~309~^2.21^5^0.47^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20314~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20315~^~203~^8.75^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~204~^5.09^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~205~^73.89^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~20315~^~207~^1.44^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~209~^68.00^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~255~^10.83^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~303~^1.74^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~309~^2.24^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20316~^~203~^6.93^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~204~^3.86^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~205~^76.85^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20316~^~207~^1.45^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~255~^10.91^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~269~^0.64^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~ -~20316~^~303~^2.38^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~309~^1.73^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~323~^0.42^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~ -~20316~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20316~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20316~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20317~^~203~^8.46^25^0.54^~1~^~A~^^^5^6.57^9.61^4^6.95^9.96^~2~^~07/01/2014~ -~20317~^~204~^3.69^25^0.39^~1~^~A~^^^5^2.55^5.31^4^2.59^4.78^~2~^~07/01/2014~ -~20317~^~205~^76.59^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~20317~^~207~^1.48^25^0.11^~1~^~A~^^^5^1.15^1.80^4^1.16^1.79^~2~^~07/01/2014~ -~20317~^~209~^66.00^2^^~1~^~A~^^^1^64.40^67.60^1^^^^~12/01/2009~ -~20317~^~255~^9.79^28^0.51^~1~^~A~^^^5^8.62^11.34^4^8.35^11.21^~2~^~07/01/2014~ -~20317~^~303~^8.50^20^0.55^~1~^~A~^^^2^7.95^9.05^1^1.50^15.49^~2~^~07/01/2014~ -~20317~^~309~^1.80^5^0.17^~1~^~A~^^^4^1.30^2.17^3^1.25^2.34^~2~^~12/01/2009~ -~20317~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20320~^~203~^8.12^7^0.30^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~204~^3.59^7^0.22^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~205~^76.89^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20320~^~207~^1.13^7^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~255~^10.26^10^0.14^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~269~^0.64^0^^~4~^~BFZN~^~20020~^^^^^^^^^~03/01/2003~ -~20320~^~303~^3.45^9^0.37^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~309~^1.82^6^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~323~^0.42^0^^~4~^~BFZN~^~20020~^^^^^^^^^~03/01/2003~ -~20320~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20320~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20320~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20321~^~203~^5.80^19^0.10^~1~^~A~^^^3^4.39^7.20^11^5.57^6.02^~2, 3~^~03/01/2005~ -~20321~^~204~^0.93^19^0.02^~1~^~A~^^^3^0.64^1.11^11^0.87^0.99^~2, 3~^~03/01/2005~ -~20321~^~205~^30.59^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~207~^0.55^6^0.03^~1~^~A~^^^1^0.45^0.70^5^0.45^0.63^~2, 3~^~03/01/2005~ -~20321~^~209~^26.01^11^0.46^~1~^~A~^^^2^23.57^30.40^6^24.89^27.13^~2, 3~^~10/01/2004~ -~20321~^~210~^0.09^9^0.06^~1~^~A~^^^3^0.00^0.23^2^-0.16^0.35^~1, 2~^~05/01/2006~ -~20321~^~211~^0.04^12^0.02^~1~^~A~^^^4^0.00^0.12^3^-0.02^0.11^~1, 2~^~05/01/2006~ -~20321~^~212~^0.03^9^0.02^~1~^~A~^^^3^0.00^0.10^2^-0.06^0.12^~1, 2~^~05/01/2006~ -~20321~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20321~^~214~^0.40^12^0.08^~1~^~A~^^^4^0.18^0.66^3^0.15^0.69^~2~^~05/01/2006~ -~20321~^~255~^62.13^26^0.58^~1~^~A~^^^7^54.33^69.60^6^60.72^63.53^~2, 3~^~03/01/2005~ -~20321~^~269~^0.56^12^0.13^~1~^~A~^^^4^0.24^1.06^3^0.13^0.98^~2~^~05/01/2006~ -~20321~^~287~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20321~^~303~^1.28^56^0.05^~1~^~A~^^^14^0.88^2.50^13^1.15^1.41^~2~^~05/01/2006~ -~20321~^~309~^0.51^52^0.02^~1~^~A~^^^14^0.37^0.90^13^0.44^0.57^~2~^~05/01/2006~ -~20321~^~323~^0.06^5^5.0e-03^~1~^~A~^^^2^0.04^0.07^3^0.04^0.07^~2, 3~^~10/01/2004~ -~20321~^~341~^0.03^5^2.0e-03^~1~^~A~^^^2^0.03^0.04^3^0.02^0.03^~2, 3~^~10/01/2004~ -~20321~^~342~^0.50^5^0.01^~1~^~A~^^^2^0.42^0.61^3^0.45^0.55^~2, 3~^~10/01/2004~ -~20321~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~10/01/2004~ -~20321~^~344~^0.05^5^0.01^~1~^~A~^^^2^0.00^0.08^3^0.01^0.08^~2, 3~^~10/01/2004~ -~20321~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20321~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20321~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20321~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20321~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~20321~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~20322~^~203~^7.11^7^0.12^~1~^~A~^^^2^6.44^7.62^5^6.79^7.42^~2, 3~^~12/01/2009~ -~20322~^~204~^1.75^7^0.14^~1~^~A~^^^2^1.35^2.50^4^1.36^2.14^~2, 3~^~12/01/2009~ -~20322~^~205~^79.45^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20322~^~207~^0.51^7^0.04^~1~^~A~^^^2^0.33^0.70^4^0.38^0.63^~2, 3~^~12/01/2009~ -~20322~^~209~^73.30^7^0.46^~1~^~A~^^^2^71.00^76.20^5^72.07^74.52^~2, 3~^~12/01/2009~ -~20322~^~210~^0.68^8^0.15^~1~^~A~^^^3^0.43^1.38^2^3.0e-03^1.36^~2~^~12/01/2009~ -~20322~^~211~^0.56^8^0.41^~1~^~A~^^^3^0.00^1.41^2^-1.23^2.35^~2~^~12/01/2009~ -~20322~^~212~^0.17^8^0.09^~1~^~A~^^^3^0.00^0.31^2^-0.22^0.56^~2~^~12/01/2009~ -~20322~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~12/01/2009~ -~20322~^~214~^0.19^8^0.18^~1~^~A~^^^3^0.00^0.70^2^-0.61^0.99^~1, 2~^~12/01/2009~ -~20322~^~255~^11.18^7^0.14^~1~^~A~^^^2^10.25^12.38^5^10.80^11.54^~2, 3~^~12/01/2009~ -~20322~^~269~^1.61^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20322~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2006~ -~20322~^~303~^4.36^17^0.42^~1~^~A~^^^2^1.81^7.51^15^3.46^5.25^~2, 3~^~12/01/2009~ -~20322~^~309~^0.66^7^0.07^~1~^~A~^^^2^0.34^0.98^4^0.44^0.87^~2, 3~^~12/01/2009~ -~20322~^~323~^0.12^4^0.02^~1~^~A~^^^2^0.08^0.21^1^-0.18^0.42^~2, 3~^~12/01/2009~ -~20322~^~341~^0.02^4^1.0e-03^~1~^~A~^^^2^0.01^0.02^1^0.00^0.03^~1, 2, 3~^~12/01/2009~ -~20322~^~342~^0.45^4^0.10^~1~^~A~^^^2^0.28^0.80^1^-0.77^1.67^~2, 3~^~12/01/2009~ -~20322~^~343~^0.04^4^8.0e-03^~1~^~A~^^^2^0.02^0.05^1^-0.05^0.13^~2, 3~^~12/01/2009~ -~20322~^~344~^0.35^4^0.06^~1~^~A~^^^2^0.26^0.57^1^-0.44^1.14^~2, 3~^~12/01/2009~ -~20322~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~346~^0.58^4^0.08^~1~^~A~^^^2^0.43^0.74^1^6.0e-03^1.14^~2, 3~^~12/01/2009~ -~20322~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20322~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20322~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20323~^~203~^8.28^17^0.11^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~204~^3.40^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~205~^70.28^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20323~^~207~^5.45^17^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~255~^12.59^442^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~303~^5.76^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~309~^2.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20324~^~203~^8.41^39^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~204~^2.85^43^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~205~^73.43^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20324~^~207~^4.98^43^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~255~^10.33^43^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~303~^4.95^6^0.93^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~309~^1.39^10^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20325~^~203~^8.41^20^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~204~^1.72^21^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~205~^74.79^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20325~^~207~^4.91^21^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~255~^10.17^21^0.21^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~303~^4.73^20^0.16^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~309~^1.00^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20330~^~203~^1.48^7^0.23^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~204~^0.88^7^0.17^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~205~^14.26^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20330~^~207~^0.86^7^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~255~^82.53^9^1.91^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~303~^0.62^9^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~309~^1.05^6^0.10^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20345~^~203~^2.69^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~204~^0.28^6^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~205~^28.17^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20345~^~207~^0.41^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~255~^68.44^23^0.39^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~269~^0.05^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~303~^1.20^39^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~309~^0.49^43^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~323~^0.04^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20345~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20381~^~203~^10.33^61^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~204~^0.98^29^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~205~^76.31^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20381~^~207~^0.47^61^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~255~^11.92^72^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~303~^4.64^23^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~309~^0.70^136^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~323~^0.06^0^^~4~^~BFZN~^~20081~^^^^^^^^^~05/01/2003~ -~20381~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20409~^~203~^14.16^3^0.17^~1~^~A~^^^1^13.84^14.46^2^13.40^14.92^~2, 3~^~11/01/2004~ -~20409~^~204~^4.44^3^0.19^~1~^~A~^^^1^4.08^4.72^2^3.61^5.26^~2, 3~^~11/01/2004~ -~20409~^~205~^71.27^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20409~^~207~^1.12^3^0.04^~1~^~A~^^^1^1.07^1.20^2^0.93^1.30^~2, 3~^~11/01/2004~ -~20409~^~210~^0.26^6^0.16^~1~^~A~^^^2^0.08^0.48^1^-1.84^2.37^~2~^~03/01/2009~ -~20409~^~211~^0.10^4^0.04^~1~^~A~^^^2^0.06^0.18^1^-0.42^0.62^~2~^~03/01/2009~ -~20409~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~20409~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~20409~^~214~^1.51^6^0.70^~1~^~A~^^^2^0.58^2.56^1^-7.40^10.46^~2~^~03/01/2009~ -~20409~^~255~^9.01^6^0.21^~1~^~A~^^^2^8.45^10.13^1^6.22^11.79^~2~^~11/01/2004~ -~20409~^~269~^1.88^6^0.93^~1~^~A~^^^2^0.66^3.11^1^-9.94^13.70^~2~^~11/01/2004~ -~20409~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~20409~^~303~^1.90^1^^~1~^^^^^^^^^^^~03/01/2005~ -~20409~^~309~^1.92^3^0.02^~1~^~A~^^^1^1.88^1.97^2^1.79^2.03^~2, 3~^~11/01/2004~ -~20409~^~323~^0.37^3^0.04^~1~^~A~^^^1^0.29^0.43^2^0.19^0.54^~2, 3~^~11/01/2004~ -~20409~^~341~^0.06^3^0.00^~1~^~A~^^^1^0.06^0.06^^^^~2, 3~^~11/01/2004~ -~20409~^~342~^1.36^3^0.02^~1~^~A~^^^1^1.31^1.40^2^1.24^1.48^~2, 3~^~11/01/2004~ -~20409~^~343~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 2, 3~^~11/01/2004~ -~20409~^~344~^0.23^3^9.0e-03^~1~^~A~^^^1^0.22^0.25^2^0.19^0.27^~2, 3~^~11/01/2004~ -~20409~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~418~^0.29^3^0.01^~1~^~A~^^^1^0.27^0.31^2^0.23^0.33^~2, 3~^~11/01/2004~ -~20409~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20409~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20410~^~203~^4.54^3^1.05^~1~^~A~^^^1^2.76^6.41^2^5.0e-03^9.07^~2, 3~^~11/01/2004~ -~20410~^~204~^2.07^3^0.12^~1~^~A~^^^1^1.89^2.31^2^1.52^2.61^~2, 3~^~11/01/2004~ -~20410~^~205~^25.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~207~^0.50^3^0.04^~1~^~A~^^^1^0.43^0.59^2^0.30^0.69^~2, 3~^~11/01/2004~ -~20410~^~210~^0.04^4^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~11/01/2004~ -~20410~^~211~^0.07^6^0.05^~1~^~A~^^^2^0.02^0.17^1^-0.58^0.72^~1, 2~^~11/01/2004~ -~20410~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~214~^0.30^6^0.09^~1~^~A~^^^2^0.10^0.41^1^-0.95^1.54^~2~^~11/01/2004~ -~20410~^~255~^67.73^8^2.15^~1~^~A~^^^4^60.40^73.60^3^60.89^74.57^~2~^~11/01/2004~ -~20410~^~269~^0.40^6^0.08^~1~^~A~^^^2^0.24^0.50^1^-0.64^1.45^~2~^~11/01/2004~ -~20410~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~303~^0.60^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20410~^~309~^0.65^42^0.03^~1~^~A~^^^13^0.43^0.94^12^0.58^0.72^~2~^~11/01/2004~ -~20410~^~323~^0.17^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.09^0.25^~2, 3~^~11/01/2004~ -~20410~^~341~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~11/01/2004~ -~20410~^~342~^0.60^3^0.01^~1~^~A~^^^1^0.58^0.62^2^0.55^0.65^~2, 3~^~11/01/2004~ -~20410~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~344~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~11/01/2004~ -~20410~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~418~^0.09^3^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~11/01/2004~ -~20410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20420~^~203~^13.04^6^0.18^~1~^~A~^^^3^12.40^13.40^2^12.23^13.84^~2~^~03/01/2005~ -~20420~^~204~^1.51^8^0.20^~1~^~A~^^^4^1.00^2.09^3^0.86^2.15^~2~^~03/01/2005~ -~20420~^~205~^74.67^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~207~^0.88^5^0.01^~1~^~A~^^^2^0.84^0.94^1^0.73^1.02^~2~^~03/01/2005~ -~20420~^~209~^62.45^5^0.52^~1~^~A~^^^2^56.78^66.10^2^60.13^64.75^~2, 3~^~03/01/2005~ -~20420~^~210~^0.48^5^0.01^~1~^~A~^^^2^0.43^0.53^3^0.42^0.52^~2, 3~^~05/01/2006~ -~20420~^~211~^0.12^5^0.01^~1~^~A~^^^2^0.10^0.19^2^0.05^0.19^~1, 2, 3~^~05/01/2006~ -~20420~^~212~^0.11^5^0.01^~1~^~A~^^^2^0.07^0.15^2^0.05^0.15^~1, 2, 3~^~05/01/2006~ -~20420~^~213~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~214~^1.96^5^0.08^~1~^~A~^^^2^1.48^2.34^2^1.61^2.30^~2, 3~^~05/01/2006~ -~20420~^~255~^9.90^9^0.27^~1~^~A~^^^4^8.93^10.93^3^9.02^10.77^~2~^~03/01/2005~ -~20420~^~269~^2.67^5^0.10^~1~^~A~^^^2^2.10^3.03^2^2.22^3.10^~2, 3~^~05/01/2006~ -~20420~^~287~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~303~^1.30^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~309~^1.41^5^0.07^~1~^~A~^^^2^1.23^1.68^2^1.09^1.71^~2, 3~^~05/01/2006~ -~20420~^~323~^0.11^6^0.03^~1~^~A~^^^3^0.03^0.15^2^-0.05^0.26^~2~^~03/01/2005~ -~20420~^~341~^0.05^6^0.01^~1~^~A~^^^3^0.02^0.09^2^-7.0e-03^0.11^~2~^~03/01/2005~ -~20420~^~342~^0.88^6^0.32^~1~^~A~^^^3^0.18^1.23^2^-0.51^2.27^~2~^~03/01/2005~ -~20420~^~343~^0.00^6^3.0e-03^~1~^~A~^^^3^0.00^0.01^2^-0.01^0.01^~1, 2~^~03/01/2005~ -~20420~^~344~^0.13^6^0.04^~1~^~A~^^^3^0.04^0.19^2^-0.06^0.31^~2~^~03/01/2005~ -~20420~^~345~^0.01^6^5.0e-03^~1~^~A~^^^3^0.00^0.02^2^-0.01^0.02^~1, 2~^~03/01/2005~ -~20420~^~346~^0.00^6^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20420~^~347~^0.00^6^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20420~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20421~^~203~^5.80^19^0.10^~1~^~A~^^^3^4.39^7.20^11^5.57^6.02^~2, 3~^~03/01/2005~ -~20421~^~204~^0.93^19^0.02^~1~^~A~^^^3^0.64^1.11^11^0.87^0.99^~2, 3~^~03/01/2005~ -~20421~^~205~^30.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~207~^0.27^13^7.0e-03^~1~^~A~^^^2^0.23^0.32^11^0.25^0.28^~2, 3~^~03/01/2005~ -~20421~^~209~^26.01^11^0.46^~1~^~A~^^^2^23.57^30.40^6^24.89^27.13^~2, 3~^~03/01/2005~ -~20421~^~210~^0.09^9^0.06^~1~^~A~^^^3^0.00^0.23^2^-0.16^0.35^~1, 2~^~05/01/2006~ -~20421~^~211~^0.04^12^0.02^~1~^~A~^^^4^0.00^0.12^3^-0.02^0.11^~1, 2~^~05/01/2006~ -~20421~^~212~^0.03^9^0.02^~1~^~A~^^^3^0.00^0.10^2^-0.06^0.12^~1, 2~^~05/01/2006~ -~20421~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20421~^~214~^0.40^12^0.08^~1~^~A~^^^4^0.18^0.66^3^0.15^0.69^~2~^~05/01/2006~ -~20421~^~255~^62.13^26^0.58^~1~^~A~^^^7^54.33^69.60^6^60.72^63.53^~2, 3~^~03/01/2005~ -~20421~^~269~^0.56^12^0.13^~1~^~A~^^^4^0.24^1.06^3^0.13^0.98^~2~^~05/01/2006~ -~20421~^~287~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20421~^~303~^0.50^1^^~1~^^^^^^^^^^^~05/01/2015~ -~20421~^~309~^0.51^52^0.02^~1~^~A~^^^14^0.37^0.90^13^0.44^0.57^~2~^~05/01/2006~ -~20421~^~323~^0.06^5^5.0e-03^~1~^~A~^^^2^0.04^0.07^3^0.04^0.07^~2, 3~^~03/01/2005~ -~20421~^~341~^0.03^5^2.0e-03^~1~^~A~^^^2^0.03^0.04^3^0.02^0.03^~2, 3~^~03/01/2005~ -~20421~^~342~^0.50^5^0.01^~1~^~A~^^^2^0.42^0.61^3^0.45^0.55^~2, 3~^~03/01/2005~ -~20421~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~03/01/2005~ -~20421~^~344~^0.05^5^0.01^~1~^~A~^^^2^0.00^0.08^3^0.01^0.08^~2, 3~^~03/01/2005~ -~20421~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20421~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~20421~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~20422~^~203~^7.11^7^0.12^~1~^~A~^^^2^6.44^7.62^5^6.79^7.42^~2, 3~^~12/01/2009~ -~20422~^~204~^1.75^7^0.14^~1~^~A~^^^2^1.35^2.50^4^1.36^2.14^~2, 3~^~12/01/2009~ -~20422~^~205~^79.45^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20422~^~207~^0.51^7^0.04^~1~^~A~^^^2^0.33^0.70^4^0.38^0.63^~2, 3~^~12/01/2009~ -~20422~^~209~^73.30^7^0.46^~1~^~A~^^^2^71.00^76.20^5^72.07^74.52^~2, 3~^~12/01/2009~ -~20422~^~210~^0.68^8^0.15^~1~^~A~^^^3^0.43^1.38^2^3.0e-03^1.36^~2~^~12/01/2009~ -~20422~^~211~^0.56^8^0.41^~1~^~A~^^^3^0.00^1.41^2^-1.23^2.35^~2~^~12/01/2009~ -~20422~^~212~^0.17^8^0.09^~1~^~A~^^^3^0.00^0.31^2^-0.22^0.56^~2~^~12/01/2009~ -~20422~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~12/01/2009~ -~20422~^~214~^0.19^8^0.18^~1~^~A~^^^3^0.00^0.70^2^-0.61^0.99^~1, 2~^~12/01/2009~ -~20422~^~255~^11.18^7^0.14^~1~^~A~^^^2^10.25^12.38^5^10.80^11.54^~2, 3~^~12/01/2009~ -~20422~^~269~^1.61^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20422~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2006~ -~20422~^~303~^1.10^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20422~^~309~^0.66^7^0.07^~1~^~A~^^^2^0.34^0.98^4^0.44^0.87^~2, 3~^~12/01/2009~ -~20422~^~323~^0.12^4^0.02^~1~^~A~^^^2^0.08^0.21^1^-0.18^0.42^~2, 3~^~12/01/2009~ -~20422~^~341~^0.02^4^1.0e-03^~1~^~A~^^^2^0.01^0.02^1^0.00^0.03^~1, 2, 3~^~12/01/2009~ -~20422~^~342~^0.45^4^0.10^~1~^~A~^^^2^0.28^0.80^1^-0.77^1.67^~2, 3~^~12/01/2009~ -~20422~^~343~^0.04^4^8.0e-03^~1~^~A~^^^2^0.02^0.05^1^-0.05^0.13^~2, 3~^~12/01/2009~ -~20422~^~344~^0.35^4^0.06^~1~^~A~^^^2^0.26^0.57^1^-0.44^1.14^~2, 3~^~12/01/2009~ -~20422~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~346~^0.58^4^0.08^~1~^~A~^^^2^0.43^0.74^1^6.0e-03^1.14^~2, 3~^~12/01/2009~ -~20422~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20444~^~203~^7.13^70^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~204~^0.66^23^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~205~^79.95^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20444~^~207~^0.64^60^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~255~^11.62^58^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~269~^0.12^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~303~^0.80^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~309~^1.09^13^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~323~^0.11^0^^~4~^~BFZN~^~20044~^^^^^^^^^~02/01/2003~ -~20444~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20445~^~203~^2.69^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~204~^0.28^6^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~205~^28.17^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20445~^~207~^0.41^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~255~^68.44^23^0.39^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~269~^0.05^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~303~^0.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~309~^0.49^43^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~323~^0.04^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20445~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20446~^~203~^7.51^2^^~1~^~A~^^^2^6.90^8.11^^^^^~01/01/2010~ -~20446~^~204~^1.03^2^^~1~^~A~^^^2^1.03^1.04^^^^^~01/01/2010~ -~20446~^~205~^80.89^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20446~^~207~^0.71^2^^~1~^~A~^^^2^0.71^0.72^^^^^~01/01/2010~ -~20446~^~209~^68.29^2^^~1~^~A~^^^2^63.58^73.00^^^^^~01/01/2010~ -~20446~^~210~^0.21^5^0.13^~1~^~A~^^^3^0.05^0.48^2^-0.37^0.79^~2~^~03/01/2005~ -~20446~^~211~^0.11^4^0.02^~1~^~A~^^^2^0.07^0.13^1^-0.17^0.39^~2~^~03/01/2005~ -~20446~^~212~^0.02^4^0.00^~1~^~A~^^^2^0.00^0.03^1^0.01^0.01^~1, 2~^~03/01/2005~ -~20446~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~255~^9.86^7^0.19^~1~^~A~^^^4^9.36^10.32^3^9.23^10.48^~2~^~01/01/2010~ -~20446~^~269~^0.33^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~20446~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~20446~^~303~^0.74^3^0.06^~1~^~A~^^^1^0.65^0.86^2^0.47^1.00^~4~^~03/01/2005~ -~20446~^~309~^1.02^2^^~1~^~A~^^^2^1.00^1.04^^^^^~01/01/2010~ -~20446~^~323~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~342~^0.17^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~343~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20446~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20446~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20447~^~203~^2.91^3^0.25^~1~^~A~^^^1^2.41^3.25^2^1.80^4.01^~2, 3~^~03/01/2005~ -~20447~^~204~^0.37^3^0.05^~1~^~A~^^^1^0.30^0.48^2^0.13^0.61^~2, 3~^~03/01/2005~ -~20447~^~205~^26.05^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20447~^~207~^0.30^3^0.04^~1~^~A~^^^1^0.24^0.38^2^0.12^0.48^~2, 3~^~03/01/2005~ -~20447~^~210~^0.08^5^0.01^~1~^~A~^^^2^0.02^0.13^1^-0.04^0.21^~1, 2~^~03/01/2005~ -~20447~^~211~^0.01^5^8.0e-03^~1~^~A~^^^2^0.00^0.02^1^-0.09^0.11^~1, 2~^~03/01/2005~ -~20447~^~212~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^~1~^~03/01/2005~ -~20447~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~20447~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2005~ -~20447~^~255~^70.36^16^1.98^~1~^~A~^^^4^63.06^74.40^3^64.04^76.68^~2~^~03/01/2005~ -~20447~^~269~^0.11^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~20447~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~20447~^~303~^0.24^0^^~4~^~BFSN~^~20446~^^^^^^^^^~01/01/2010~ -~20447~^~309~^0.37^3^0.02^~1~^~A~^^^1^0.32^0.42^2^0.24^0.49^~2, 3~^~03/01/2005~ -~20447~^~323~^0.01^0^^~4~^~BFZN~^~20047~^^^^^^^^^~03/01/2005~ -~20447~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20450~^~203~^6.61^18^0.19^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~204~^0.58^6^0.05^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~205~^79.34^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20450~^~207~^0.58^17^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~255~^12.89^16^0.47^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~303~^0.80^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~309~^1.16^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20451~^~203~^2.38^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~204~^0.21^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~205~^28.59^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20451~^~207~^0.21^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~255~^68.61^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~303~^0.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~309~^0.42^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20452~^~203~^6.50^11^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~204~^0.52^5^0.04^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~205~^79.15^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20452~^~207~^0.54^10^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~255~^13.29^9^0.67^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~303~^0.80^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~309~^1.10^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20452~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20453~^~203~^2.36^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~204~^0.19^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~205~^28.73^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20453~^~207~^0.20^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~255~^68.53^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~303~^0.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~309~^0.40^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20466~^~203~^12.68^16^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~204~^1.05^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~205~^72.83^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20466~^~207~^0.77^45^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~255~^12.67^3^1.01^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~303~^1.23^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~309~^1.05^4^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20466~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20481~^~203~^10.33^61^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~204~^0.98^29^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~205~^76.31^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20481~^~207~^0.47^61^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~255~^11.92^72^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~269~^0.27^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~303~^1.17^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~309~^0.70^136^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~323~^0.06^0^^~4~^~BFZN~^~20081~^^^^^^^^^~10/01/2002~ -~20481~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20481~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20481~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20510~^~203~^4.54^3^1.05^~1~^~A~^^^1^2.76^6.41^2^5.0e-03^9.07^~2, 3~^~11/01/2004~ -~20510~^~204~^2.07^3^0.12^~1~^~A~^^^1^1.89^2.31^2^1.52^2.61^~2, 3~^~11/01/2004~ -~20510~^~205~^25.16^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~20510~^~207~^0.50^3^0.04^~1~^~A~^^^1^0.43^0.59^2^0.30^0.69^~2, 3~^~11/01/2004~ -~20510~^~210~^0.04^4^0.03^~1~^~A~^^^2^0.00^0.07^1^-0.43^0.51^~1, 2~^~11/01/2004~ -~20510~^~211~^0.07^6^0.05^~1~^~A~^^^2^0.02^0.17^1^-0.58^0.72^~1, 2~^~11/01/2004~ -~20510~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~214~^0.30^6^0.09^~1~^~A~^^^2^0.10^0.41^1^-0.95^1.54^~2~^~11/01/2004~ -~20510~^~255~^67.73^8^2.15^~1~^~A~^^^4^60.40^73.60^3^60.89^74.57^~2~^~11/01/2004~ -~20510~^~269~^0.40^6^0.08^~1~^~A~^^^2^0.24^0.50^1^-0.64^1.45^~2~^~11/01/2004~ -~20510~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~303~^0.60^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~309~^0.65^42^0.03^~1~^~A~^^^13^0.43^0.94^12^0.58^0.72^~2~^~11/01/2004~ -~20510~^~323~^0.17^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.09^0.25^~2, 3~^~11/01/2004~ -~20510~^~341~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^^^^~2, 3~^~11/01/2004~ -~20510~^~342~^0.60^3^0.01^~1~^~A~^^^1^0.58^0.62^2^0.55^0.65^~2, 3~^~11/01/2004~ -~20510~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~344~^0.13^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.11^0.14^~2, 3~^~11/01/2004~ -~20510~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2004~ -~20510~^~418~^0.09^3^0.00^~1~^~A~^^^1^0.09^0.09^^^^~1, 2, 3~^~11/01/2004~ -~20521~^~203~^5.80^19^0.10^~1~^~A~^^^3^4.39^7.20^11^5.57^6.02^~2, 3~^~03/01/2005~ -~20521~^~204~^0.93^19^0.02^~1~^~A~^^^3^0.64^1.11^11^0.87^0.99^~2, 3~^~03/01/2005~ -~20521~^~205~^30.59^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~207~^0.55^6^0.03^~1~^~A~^^^1^0.45^0.70^5^0.45^0.63^~2, 3~^~03/01/2005~ -~20521~^~209~^26.01^11^0.46^~1~^~A~^^^2^23.57^30.40^6^24.89^27.13^~2, 3~^~03/01/2005~ -~20521~^~210~^0.09^9^0.06^~1~^~A~^^^3^0.00^0.23^2^-0.16^0.35^~1, 2~^~05/01/2006~ -~20521~^~211~^0.04^12^0.02^~1~^~A~^^^4^0.00^0.12^3^-0.02^0.11^~1, 2~^~05/01/2006~ -~20521~^~212~^0.03^9^0.02^~1~^~A~^^^3^0.00^0.10^2^-0.06^0.12^~1, 2~^~05/01/2006~ -~20521~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20521~^~214~^0.40^12^0.08^~1~^~A~^^^4^0.18^0.66^3^0.15^0.69^~2~^~05/01/2006~ -~20521~^~255~^62.13^26^0.58^~1~^~A~^^^7^54.33^69.60^6^60.72^63.53^~2, 3~^~03/01/2005~ -~20521~^~269~^0.56^12^0.13^~1~^~A~^^^4^0.24^1.06^3^0.13^0.98^~2~^~05/01/2006~ -~20521~^~287~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~05/01/2006~ -~20521~^~303~^0.50^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~309~^0.51^52^0.02^~1~^~A~^^^14^0.37^0.90^13^0.44^0.57^~2~^~05/01/2006~ -~20521~^~323~^0.06^5^5.0e-03^~1~^~A~^^^2^0.04^0.07^3^0.04^0.07^~2, 3~^~03/01/2005~ -~20521~^~341~^0.03^5^2.0e-03^~1~^~A~^^^2^0.03^0.04^3^0.02^0.03^~2, 3~^~03/01/2005~ -~20521~^~342~^0.50^5^0.01^~1~^~A~^^^2^0.42^0.61^3^0.45^0.55^~2, 3~^~03/01/2005~ -~20521~^~343~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.02^^^^~1, 2, 3~^~03/01/2005~ -~20521~^~344~^0.05^5^0.01^~1~^~A~^^^2^0.00^0.08^3^0.01^0.08^~2, 3~^~03/01/2005~ -~20521~^~345~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~346~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~347~^0.00^5^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20522~^~203~^7.11^7^0.12^~1~^~A~^^^2^6.44^7.62^5^6.79^7.42^~2, 3~^~12/01/2009~ -~20522~^~204~^1.75^7^0.14^~1~^~A~^^^2^1.35^2.50^4^1.36^2.14^~2, 3~^~12/01/2009~ -~20522~^~205~^79.45^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~ -~20522~^~207~^0.51^7^0.04^~1~^~A~^^^2^0.33^0.70^4^0.38^0.63^~2, 3~^~12/01/2009~ -~20522~^~209~^73.30^7^0.46^~1~^~A~^^^2^71.00^76.20^5^72.07^74.52^~2, 3~^~12/01/2009~ -~20522~^~210~^0.68^8^0.15^~1~^~A~^^^3^0.43^1.38^2^3.0e-03^1.36^~2~^~12/01/2009~ -~20522~^~211~^0.56^8^0.41^~1~^~A~^^^3^0.00^1.41^2^-1.23^2.35^~2~^~12/01/2009~ -~20522~^~212~^0.17^8^0.09^~1~^~A~^^^3^0.00^0.31^2^-0.22^0.56^~2~^~12/01/2009~ -~20522~^~213~^0.00^8^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~12/01/2009~ -~20522~^~214~^0.19^8^0.18^~1~^~A~^^^3^0.00^0.70^2^-0.61^0.99^~1, 2~^~12/01/2009~ -~20522~^~255~^11.18^7^0.14^~1~^~A~^^^2^10.25^12.38^5^10.80^11.54^~2, 3~^~12/01/2009~ -~20522~^~269~^1.61^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~ -~20522~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2006~ -~20522~^~303~^1.10^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20522~^~309~^0.66^7^0.07^~1~^~A~^^^2^0.34^0.98^4^0.44^0.87^~2, 3~^~12/01/2009~ -~20522~^~323~^0.12^4^0.02^~1~^~A~^^^2^0.08^0.21^1^-0.18^0.42^~2, 3~^~12/01/2009~ -~20522~^~341~^0.02^4^1.0e-03^~1~^~A~^^^2^0.01^0.02^1^0.00^0.03^~1, 2, 3~^~12/01/2009~ -~20522~^~342~^0.45^4^0.10^~1~^~A~^^^2^0.28^0.80^1^-0.77^1.67^~2, 3~^~12/01/2009~ -~20522~^~343~^0.04^4^8.0e-03^~1~^~A~^^^2^0.02^0.05^1^-0.05^0.13^~2, 3~^~12/01/2009~ -~20522~^~344~^0.35^4^0.06^~1~^~A~^^^2^0.26^0.57^1^-0.44^1.14^~2, 3~^~12/01/2009~ -~20522~^~345~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~346~^0.58^4^0.08^~1~^~A~^^^2^0.43^0.74^1^6.0e-03^1.14^~2, 3~^~12/01/2009~ -~20522~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20522~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20522~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20523~^~203~^8.86^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~204~^0.21^7^0.09^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~205~^30.88^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20523~^~207~^0.31^4^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~255~^59.73^4^3.34^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~303~^0.72^4^0.25^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~309~^0.50^3^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20545~^~203~^2.69^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~204~^0.28^6^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~205~^28.17^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20545~^~207~^0.41^20^0.06^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~255~^68.44^23^0.39^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~269~^0.05^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~303~^0.20^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~309~^0.49^43^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~323~^0.04^0^^~4~^~BFZN~^~20045~^^^^^^^^^~02/01/2003~ -~20545~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20545~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20545~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20581~^~203~^10.33^61^0.13^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~204~^0.98^29^0.03^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~205~^76.31^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20581~^~207~^0.47^61^0.01^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~255~^11.92^72^0.18^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~269~^0.27^3^^~1~^~A~^^^2^0.22^0.31^^^^~2~^~10/01/2002~ -~20581~^~303~^4.64^23^0.07^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~309~^0.70^136^0.02^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~323~^0.23^2^^~1~^~A~^^^1^0.20^0.25^1^^^^~10/01/2002~ -~20581~^~341~^0.14^2^^~1~^~A~^^^1^0.13^0.15^1^^^^~10/01/2002~ -~20581~^~342~^1.25^2^^~1~^~A~^^^1^1.18^1.32^1^^^^~10/01/2002~ -~20581~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20581~^~344~^0.19^2^^~1~^~A~^^^1^0.12^0.25^1^^^^~10/01/2002~ -~20581~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20581~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20581~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~10/01/2002~ -~20581~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20581~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20581~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20622~^~203~^21.78^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~204~^2.23^20^0.24^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~205~^65.65^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~ -~20622~^~207~^1.12^14^0.08^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~255~^9.23^14^0.62^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~303~^4.15^19^0.33^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~309~^1.79^6^0.29^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~ -~20623~^~203~^8.89^10^0.11^~1~^~A~^^^1^8.44^9.51^9^8.63^9.14^~2, 3~^~08/01/2004~ -~20623~^~204~^1.43^10^0.08^~1~^~A~^^^1^1.09^1.88^9^1.23^1.62^~2, 3~^~08/01/2004~ -~20623~^~205~^77.32^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~20623~^~207~^0.51^10^0.02^~1~^~A~^^^1^0.43^0.60^9^0.46^0.55^~2, 3~^~08/01/2004~ -~20623~^~209~^68.01^6^0.49^~1~^~A~^^^1^66.83^70.23^5^66.72^69.28^~2, 3~^~08/01/2004~ -~20623~^~210~^0.26^6^0.04^~1~^~A~^^^1^0.15^0.41^5^0.14^0.37^~1, 2, 3~^~08/01/2004~ -~20623~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~214~^0.22^6^0.03^~1~^~A~^^^1^0.15^0.35^5^0.14^0.30^~1, 2, 3~^~08/01/2004~ -~20623~^~255~^11.85^10^0.18^~1~^~A~^^^1^11.11^12.70^9^11.43^12.27^~2, 3~^~08/01/2004~ -~20623~^~269~^0.54^6^0.05^~1~^~A~^^^1^0.44^0.78^5^0.40^0.68^~2, 3~^~08/01/2004~ -~20623~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~08/01/2004~ -~20623~^~309~^0.94^4^0.16^~1~^~A~^^^1^0.50^1.25^3^0.43^1.45^~2, 3~^~08/01/2004~ -~20623~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~08/01/2004~ -~20623~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~08/01/2004~ -~20623~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~08/01/2004~ -~20623~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~08/01/2004~ -~20623~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~08/01/2004~ -~20623~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20623~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20624~^~203~^8.89^10^0.11^~1~^~A~^^^1^8.44^9.51^9^8.63^9.14^~2, 3~^~08/01/2004~ -~20624~^~204~^1.43^10^0.08^~1~^~A~^^^1^1.09^1.88^9^1.23^1.62^~2, 3~^~08/01/2004~ -~20624~^~205~^77.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~207~^0.51^10^0.02^~1~^~A~^^^1^0.43^0.60^9^0.46^0.55^~2, 3~^~08/01/2004~ -~20624~^~209~^68.01^6^0.49^~1~^~A~^^^1^66.83^70.23^5^66.72^69.28^~2, 3~^~08/01/2004~ -~20624~^~210~^0.26^6^0.04^~1~^~A~^^^1^0.15^0.41^5^0.14^0.37^~1, 2, 3~^~08/01/2004~ -~20624~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~214~^0.22^6^0.03^~1~^~A~^^^1^0.15^0.35^5^0.14^0.30^~1, 2, 3~^~08/01/2004~ -~20624~^~255~^11.85^10^0.18^~1~^~A~^^^1^11.11^12.70^9^11.43^12.27^~2, 3~^~08/01/2004~ -~20624~^~269~^0.54^6^0.05^~1~^~A~^^^1^0.44^0.78^5^0.40^0.68^~2, 3~^~08/01/2004~ -~20624~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~303~^1.26^27^0.05^~1~^~A~^^^1^0.91^2.06^26^1.15^1.36^~2, 3~^~08/01/2004~ -~20624~^~309~^0.94^4^0.16^~1~^~A~^^^1^0.50^1.25^3^0.43^1.45^~2, 3~^~08/01/2004~ -~20624~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~08/01/2004~ -~20624~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~08/01/2004~ -~20624~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~08/01/2004~ -~20624~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~08/01/2004~ -~20624~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~08/01/2004~ -~20624~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~203~^9.71^9^0.11^~1~^~A~^^^1^9.20^10.32^8^9.44^9.98^~2, 3~^~09/01/2004~ -~20628~^~204~^1.48^9^0.05^~1~^~A~^^^1^1.24^1.74^8^1.34^1.61^~2, 3~^~09/01/2004~ -~20628~^~205~^76.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~207~^0.58^9^0.01^~1~^~A~^^^1^0.52^0.66^8^0.54^0.62^~2, 3~^~09/01/2004~ -~20628~^~209~^64.48^6^0.72^~1~^~A~^^^1^61.72^66.49^5^62.60^66.35^~2, 3~^~09/01/2004~ -~20628~^~210~^0.20^6^0.03^~1~^~A~^^^1^0.15^0.34^5^0.11^0.28^~1, 2, 3~^~09/01/2004~ -~20628~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~214~^0.23^6^0.02^~1~^~A~^^^1^0.15^0.33^5^0.15^0.30^~1, 2, 3~^~09/01/2004~ -~20628~^~255~^12.01^9^0.20^~1~^~A~^^^1^11.03^12.74^8^11.52^12.48^~2, 3~^~09/01/2004~ -~20628~^~269~^0.49^6^0.01^~1~^~A~^^^1^0.44^0.55^5^0.44^0.54^~2, 3~^~09/01/2004~ -~20628~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~07/01/2007~ -~20628~^~309~^1.02^3^0.08^~1~^~A~^^^1^0.87^1.17^2^0.64^1.39^~2, 3~^~09/01/2004~ -~20628~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20628~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20628~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20628~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20628~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20628~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20628~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20628~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20629~^~203~^9.71^9^0.11^~1~^~A~^^^1^9.20^10.32^8^9.44^9.98^~2, 3~^~09/01/2004~ -~20629~^~204~^1.48^9^0.05^~1~^~A~^^^1^1.24^1.74^8^1.34^1.61^~2, 3~^~09/01/2004~ -~20629~^~205~^76.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~207~^0.58^9^0.01^~1~^~A~^^^1^0.52^0.66^8^0.54^0.62^~2, 3~^~09/01/2004~ -~20629~^~209~^64.48^6^0.72^~1~^~A~^^^1^61.72^66.49^5^62.60^66.35^~2, 3~^~09/01/2004~ -~20629~^~210~^0.20^6^0.03^~1~^~A~^^^1^0.15^0.34^5^0.11^0.28^~1, 2, 3~^~09/01/2004~ -~20629~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~214~^0.23^6^0.02^~1~^~A~^^^1^0.15^0.33^5^0.15^0.30^~1, 2, 3~^~09/01/2004~ -~20629~^~255~^12.01^9^0.20^~1~^~A~^^^1^11.03^12.74^8^11.52^12.48^~2, 3~^~09/01/2004~ -~20629~^~269~^0.49^6^0.01^~1~^~A~^^^1^0.44^0.55^5^0.44^0.54^~2, 3~^~09/01/2004~ -~20629~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~303~^1.26^27^0.05^~1~^~A~^^^1^0.91^2.06^26^1.15^1.36^~2, 3~^~09/01/2004~ -~20629~^~309~^1.02^3^0.08^~1~^~A~^^^1^0.87^1.17^2^0.64^1.39^~2, 3~^~09/01/2004~ -~20629~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20629~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20629~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20629~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20629~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20629~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20630~^~203~^9.71^9^0.11^~1~^~A~^^^1^9.20^10.32^8^9.44^9.98^~2, 3~^~10/01/2004~ -~20630~^~204~^1.48^9^0.05^~1~^~A~^^^1^1.24^1.74^8^1.34^1.61^~2, 3~^~10/01/2004~ -~20630~^~205~^76.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~207~^0.58^9^0.01^~1~^~A~^^^1^0.52^0.66^8^0.54^0.62^~2, 3~^~10/01/2004~ -~20630~^~209~^64.48^6^0.72^~1~^~A~^^^1^61.72^66.49^5^62.60^66.35^~2, 3~^~10/01/2004~ -~20630~^~210~^0.20^6^0.03^~1~^~A~^^^1^0.15^0.34^5^0.11^0.28^~1, 2, 3~^~10/01/2004~ -~20630~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~214~^0.23^6^0.02^~1~^~A~^^^1^0.15^0.33^5^0.15^0.30^~1, 2, 3~^~10/01/2004~ -~20630~^~255~^12.01^9^0.20^~1~^~A~^^^1^11.03^12.74^8^11.52^12.48^~2, 3~^~10/01/2004~ -~20630~^~269~^0.49^6^0.01^~1~^~A~^^^1^0.44^0.55^5^0.44^0.54^~2, 3~^~10/01/2004~ -~20630~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~10/01/2004~ -~20630~^~309~^1.02^3^0.08^~1~^~A~^^^1^0.87^1.17^2^0.64^1.39^~2, 3~^~10/01/2004~ -~20630~^~323~^0.38^12^0.01^~1~^~A~^^^1^0.30^0.50^11^0.33^0.41^~2, 3~^~10/01/2004~ -~20630~^~341~^0.13^12^7.0e-03^~1~^~A~^^^1^0.10^0.17^11^0.11^0.14^~2, 3~^~10/01/2004~ -~20630~^~342~^1.50^12^0.13^~1~^~A~^^^1^0.79^2.24^11^1.21^1.78^~2, 3~^~10/01/2004~ -~20630~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~344~^0.14^12^0.01^~1~^~A~^^^1^0.07^0.19^11^0.12^0.16^~2, 3~^~10/01/2004~ -~20630~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20634~^~203~^11.50^10^0.22^~1~^~A~^^^1^10.87^13.30^9^10.98^12.02^~2, 3~^~09/01/2004~ -~20634~^~204~^1.45^10^0.04^~1~^~A~^^^1^1.18^1.64^9^1.36^1.54^~2, 3~^~09/01/2004~ -~20634~^~205~^73.81^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~207~^0.55^10^0.01^~1~^~A~^^^1^0.49^0.60^9^0.52^0.57^~2, 3~^~09/01/2004~ -~20634~^~209~^62.88^6^0.97^~1~^~A~^^^1^59.17^65.76^5^60.38^65.37^~2, 3~^~09/01/2004~ -~20634~^~210~^0.15^6^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~214~^0.90^6^0.10^~1~^~A~^^^1^0.57^1.18^5^0.63^1.16^~2, 3~^~09/01/2004~ -~20634~^~255~^12.68^10^0.20^~1~^~A~^^^1^11.49^13.67^9^12.20^13.15^~2, 3~^~09/01/2004~ -~20634~^~269~^1.12^6^0.10^~1~^~A~^^^1^0.79^1.40^5^0.85^1.37^~2, 3~^~09/01/2004~ -~20634~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~09/01/2004~ -~20634~^~309~^0.84^4^0.04^~1~^~A~^^^1^0.74^0.96^3^0.69^0.98^~2, 3~^~09/01/2004~ -~20634~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20634~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20634~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20634~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20634~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20634~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20634~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20635~^~203~^11.50^10^0.22^~1~^~A~^^^1^10.87^13.30^9^10.98^12.02^~2, 3~^~09/01/2004~ -~20635~^~204~^1.45^10^0.04^~1~^~A~^^^1^1.18^1.64^9^1.36^1.54^~2, 3~^~09/01/2004~ -~20635~^~205~^73.81^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~207~^0.55^10^0.01^~1~^~A~^^^1^0.49^0.60^9^0.52^0.57^~2, 3~^~09/01/2004~ -~20635~^~209~^62.88^6^0.97^~1~^~A~^^^1^59.17^65.76^5^60.38^65.37^~2, 3~^~09/01/2004~ -~20635~^~210~^0.15^6^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~214~^0.90^6^0.10^~1~^~A~^^^1^0.57^1.18^5^0.63^1.16^~2, 3~^~09/01/2004~ -~20635~^~255~^12.68^10^0.20^~1~^~A~^^^1^11.49^13.67^9^12.20^13.15^~2, 3~^~09/01/2004~ -~20635~^~269~^1.12^6^0.10^~1~^~A~^^^1^0.79^1.40^5^0.85^1.37^~2, 3~^~09/01/2004~ -~20635~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~303~^1.26^27^0.05^~1~^~A~^^^1^0.91^2.06^26^1.15^1.36^~2, 3~^~09/01/2004~ -~20635~^~309~^0.84^4^0.04^~1~^~A~^^^1^0.74^0.96^3^0.69^0.98^~2, 3~^~09/01/2004~ -~20635~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20635~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20635~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20635~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20635~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20635~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20636~^~203~^11.50^10^0.22^~1~^~A~^^^1^10.87^13.30^9^10.98^12.02^~2, 3~^~10/01/2004~ -~20636~^~204~^1.45^10^0.04^~1~^~A~^^^1^1.18^1.64^9^1.36^1.54^~2, 3~^~10/01/2004~ -~20636~^~205~^73.81^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~207~^0.55^10^0.01^~1~^~A~^^^1^0.49^0.60^9^0.52^0.57^~2, 3~^~10/01/2004~ -~20636~^~209~^62.88^6^0.97^~1~^~A~^^^1^59.17^65.76^5^60.38^65.37^~2, 3~^~10/01/2004~ -~20636~^~210~^0.15^6^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~214~^0.90^6^0.10^~1~^~A~^^^1^0.57^1.18^5^0.63^1.16^~2, 3~^~10/01/2004~ -~20636~^~255~^12.68^10^0.20^~1~^~A~^^^1^11.49^13.67^9^12.20^13.15^~2, 3~^~10/01/2004~ -~20636~^~269~^1.12^6^0.10^~1~^~A~^^^1^0.79^1.40^5^0.85^1.37^~2, 3~^~10/01/2004~ -~20636~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~10/01/2004~ -~20636~^~309~^0.84^4^0.04^~1~^~A~^^^1^0.74^0.96^3^0.69^0.98^~2, 3~^~10/01/2004~ -~20636~^~323~^0.38^12^0.01^~1~^~A~^^^1^0.30^0.50^11^0.33^0.41^~2, 3~^~10/01/2004~ -~20636~^~341~^0.13^12^7.0e-03^~1~^~A~^^^1^0.10^0.17^11^0.11^0.14^~2, 3~^~10/01/2004~ -~20636~^~342~^1.50^12^0.13^~1~^~A~^^^1^0.79^2.24^11^1.21^1.78^~2, 3~^~10/01/2004~ -~20636~^~343~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~344~^0.14^12^0.01^~1~^~A~^^^1^0.07^0.19^11^0.12^0.16^~2, 3~^~10/01/2004~ -~20636~^~345~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~346~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~347~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~20640~^~203~^13.07^10^0.11^~1~^~A~^^^1^12.35^13.62^9^12.81^13.33^~2, 3~^~09/01/2004~ -~20640~^~204~^1.38^10^0.04^~1~^~A~^^^1^1.18^1.66^9^1.26^1.48^~2, 3~^~09/01/2004~ -~20640~^~205~^72.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~207~^0.53^10^0.02^~1~^~A~^^^1^0.43^0.63^9^0.48^0.57^~2, 3~^~09/01/2004~ -~20640~^~209~^61.22^6^1.80^~1~^~A~^^^1^54.22^66.08^5^56.57^65.85^~2, 3~^~09/01/2004~ -~20640~^~210~^0.16^6^0.01^~1~^~A~^^^1^0.15^0.22^5^0.13^0.18^~1, 2, 3~^~09/01/2004~ -~20640~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~214~^0.87^6^0.16^~1~^~A~^^^1^0.37^1.37^5^0.44^1.30^~2, 3~^~09/01/2004~ -~20640~^~255~^12.82^10^0.11^~1~^~A~^^^1^12.18^13.23^9^12.56^13.06^~2, 3~^~09/01/2004~ -~20640~^~269~^1.10^6^0.16^~1~^~A~^^^1^0.65^1.58^5^0.68^1.51^~2, 3~^~09/01/2004~ -~20640~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~07/01/2007~ -~20640~^~309~^1.60^4^0.53^~1~^~A~^^^1^0.96^3.20^3^-0.10^3.30^~2, 3~^~09/01/2004~ -~20640~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20640~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20640~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20640~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20640~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20640~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20640~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20640~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20641~^~203~^13.07^10^0.11^~1~^~A~^^^1^12.35^13.62^9^12.81^13.33^~2, 3~^~09/01/2004~ -~20641~^~204~^1.38^10^0.04^~1~^~A~^^^1^1.18^1.66^9^1.26^1.48^~2, 3~^~07/01/2005~ -~20641~^~205~^72.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~207~^0.53^10^0.02^~1~^~A~^^^1^0.43^0.63^9^0.48^0.57^~2, 3~^~09/01/2004~ -~20641~^~209~^61.22^6^1.80^~1~^~A~^^^1^54.22^66.08^5^56.57^65.85^~2, 3~^~09/01/2004~ -~20641~^~210~^0.16^6^0.01^~1~^~A~^^^1^0.15^0.22^5^0.13^0.18^~1, 2, 3~^~09/01/2004~ -~20641~^~211~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~212~^0.03^6^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~214~^0.87^6^0.16^~1~^~A~^^^1^0.37^1.37^5^0.44^1.30^~2, 3~^~09/01/2004~ -~20641~^~255~^12.82^10^0.11^~1~^~A~^^^1^12.18^13.23^9^12.56^13.06^~2, 3~^~09/01/2004~ -~20641~^~269~^1.10^6^0.16^~1~^~A~^^^1^0.65^1.58^5^0.68^1.51^~2, 3~^~09/01/2004~ -~20641~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~303~^1.26^27^0.05^~1~^~A~^^^1^0.91^2.06^26^1.15^1.36^~2, 3~^~09/01/2004~ -~20641~^~309~^1.60^4^0.53^~1~^~A~^^^1^0.96^3.20^3^-0.10^3.30^~2, 3~^~09/01/2004~ -~20641~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20641~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20641~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20641~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20641~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20641~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~203~^15.33^12^0.06^~1~^~A~^^^1^14.87^15.64^11^15.19^15.46^~2, 3~^~09/01/2004~ -~20645~^~204~^1.41^12^0.06^~1~^~A~^^^1^1.05^1.80^11^1.27^1.55^~2, 3~^~09/01/2004~ -~20645~^~205~^69.88^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~207~^0.53^12^0.01^~1~^~A~^^^1^0.44^0.68^11^0.49^0.57^~2, 3~^~09/01/2004~ -~20645~^~209~^59.52^8^1.23^~1~^~A~^^^1^51.41^62.45^7^56.60^62.43^~2, 3~^~09/01/2004~ -~20645~^~210~^0.15^8^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~211~^0.03^8^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~212~^0.03^8^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~214~^0.71^8^0.11^~1~^~A~^^^1^0.15^1.10^7^0.44^0.97^~1, 2, 3~^~09/01/2004~ -~20645~^~255~^12.85^12^0.18^~1~^~A~^^^1^11.70^13.74^11^12.43^13.26^~2, 3~^~09/01/2004~ -~20645~^~269~^0.92^8^0.11^~1~^~A~^^^1^0.36^1.32^7^0.66^1.18^~2, 3~^~09/01/2004~ -~20645~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~303~^5.06^28^0.19^~1~^~A~^^^1^3.44^7.77^27^4.65^5.46^~2, 3~^~07/01/2007~ -~20645~^~309~^1.16^4^0.03^~1~^~A~^^^1^1.10^1.26^3^1.04^1.26^~2, 3~^~09/01/2004~ -~20645~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20645~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20645~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20645~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20645~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20645~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20645~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20645~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~20646~^~203~^15.33^12^0.06^~1~^~A~^^^1^14.87^15.64^11^15.19^15.46^~2, 3~^~09/01/2004~ -~20646~^~204~^1.41^12^0.06^~1~^~A~^^^1^1.05^1.80^11^1.27^1.55^~2, 3~^~09/01/2004~ -~20646~^~205~^69.88^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~207~^0.53^12^0.01^~1~^~A~^^^1^0.44^0.68^11^0.49^0.57^~2, 3~^~09/01/2004~ -~20646~^~209~^59.52^8^1.23^~1~^~A~^^^1^51.41^62.45^7^56.60^62.43^~2, 3~^~09/01/2004~ -~20646~^~210~^0.15^8^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~211~^0.03^8^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~212~^0.03^8^0.00^~1~^~A~^^^1^0.03^0.03^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~214~^0.71^8^0.11^~1~^~A~^^^1^0.15^1.10^7^0.44^0.97^~1, 2, 3~^~09/01/2004~ -~20646~^~255~^12.85^12^0.18^~1~^~A~^^^1^11.70^13.74^11^12.43^13.26^~2, 3~^~09/01/2004~ -~20646~^~269~^0.92^8^0.11^~1~^~A~^^^1^0.36^1.32^7^0.66^1.18^~2, 3~^~09/01/2004~ -~20646~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~303~^1.26^27^0.05^~1~^~A~^^^1^0.91^2.06^26^1.15^1.36^~2, 3~^~09/01/2004~ -~20646~^~309~^1.16^4^0.03^~1~^~A~^^^1^1.10^1.26^3^1.04^1.26^~2, 3~^~09/01/2004~ -~20646~^~323~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.13^7^0.01^0.09^~1, 2, 3~^~09/01/2004~ -~20646~^~341~^0.04^8^8.0e-03^~1~^~A~^^^1^0.01^0.08^7^0.01^0.05^~1, 2, 3~^~09/01/2004~ -~20646~^~342~^0.42^8^0.12^~1~^~A~^^^1^0.06^1.09^7^0.12^0.72^~2, 3~^~09/01/2004~ -~20646~^~343~^0.01^8^5.0e-03^~1~^~A~^^^1^0.00^0.03^7^-4.0e-03^0.01^~1, 2, 3~^~09/01/2004~ -~20646~^~344~^0.05^8^0.01^~1~^~A~^^^1^0.00^0.09^7^0.02^0.07^~1, 2, 3~^~09/01/2004~ -~20646~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~20647~^~203~^10.75^3^0.78^~1~^~A~^^^1^9.62^12.24^2^7.39^14.10^~2, 3~^~06/01/2010~ -~20647~^~204~^4.25^6^0.67^~1~^~A~^^^2^2.19^5.31^1^-4.33^12.83^~2~^~06/01/2010~ -~20647~^~205~^75.12^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~20647~^~207~^1.21^6^0.04^~1~^~A~^^^2^1.07^1.39^1^0.63^1.78^~2~^~06/01/2010~ -~20647~^~209~^69.88^3^1.46^~1~^~A~^^^1^66.95^71.50^2^63.56^76.20^~2, 3~^~06/01/2010~ -~20647~^~210~^0.30^6^0.29^~1~^~A~^^^2^0.00^0.66^1^-3.47^4.06^~1, 2~^~06/01/2010~ -~20647~^~211~^1.26^6^1.19^~1~^~A~^^^2^0.00^3.97^1^-13.97^16.48^~1, 2~^~06/01/2010~ -~20647~^~212~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~20647~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~20647~^~214~^0.11^6^0.10^~1~^~A~^^^2^0.00^0.63^1^-1.22^1.43^~1, 2~^~06/01/2010~ -~20647~^~255~^8.67^0^^~4~^~BFZN~^~20031~^^^^^^^^^~06/01/2014~ -~20647~^~269~^1.66^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~20647~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~303~^3.94^7^0.23^~1~^~A~^^^2^2.23^5.46^1^0.97^6.90^~2~^~06/01/2010~ -~20647~^~309~^2.63^7^0.16^~1~^~A~^^^2^2.01^3.31^1^0.51^4.73^~2~^~06/01/2010~ -~20647~^~323~^0.11^3^0.00^~1~^~A~^^^1^0.11^0.11^2^0.10^0.10^~2, 3~^~06/01/2010~ -~20647~^~341~^0.06^3^4.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.03^0.07^~2, 3~^~06/01/2010~ -~20647~^~342~^2.07^3^0.09^~1~^~A~^^^1^1.87^2.17^2^1.64^2.50^~2, 3~^~06/01/2010~ -~20647~^~343~^0.53^3^0.05^~1~^~A~^^^1^0.42^0.59^2^0.29^0.76^~2, 3~^~06/01/2010~ -~20647~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~346~^0.01^3^8.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.04^~1, 2, 3~^~06/01/2010~ -~20647~^~347~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 2, 3~^~06/01/2010~ -~20648~^~203~^8.43^9^0.57^~1~^~A~^^^3^6.75^10.80^2^5.97^10.89^~2~^~04/01/2014~ -~20648~^~204~^3.34^9^0.09^~1~^~A~^^^3^3.01^3.61^2^2.91^3.76^~2~^~04/01/2014~ -~20648~^~205~^76.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~207~^1.32^9^0.03^~1~^~A~^^^3^1.22^1.40^2^1.18^1.45^~2~^~04/01/2014~ -~20648~^~209~^68.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~ -~20648~^~210~^0.47^9^0.23^~1~^~A~^^^3^0.00^1.10^2^-0.54^1.49^~1, 2~^~04/01/2014~ -~20648~^~211~^1.31^9^0.83^~1~^~A~^^^3^0.00^4.61^2^-2.30^4.91^~1, 2~^~04/01/2014~ -~20648~^~212~^0.16^9^0.11^~1~^~A~^^^3^0.00^0.67^2^-0.35^0.67^~1, 2~^~04/01/2014~ -~20648~^~213~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~20648~^~214~^0.00^9^0.00^~1~^~A~^^^3^0.00^0.00^^^^~1, 2~^~06/01/2010~ -~20648~^~255~^10.26^9^0.29^~1~^~A~^^^3^9.04^11.44^2^9.01^11.51^~2~^~04/01/2014~ -~20648~^~269~^1.94^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~20648~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~303~^3.14^10^0.18^~1~^~A~^^^3^2.48^3.90^2^2.35^3.93^~2~^~04/01/2014~ -~20648~^~309~^1.63^9^0.19^~1~^~A~^^^3^1.25^2.36^2^0.78^2.47^~2~^~04/01/2014~ -~20648~^~323~^0.50^6^0.05^~1~^~A~^^^2^0.40^0.61^1^-0.17^1.18^~2~^~06/01/2010~ -~20648~^~341~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^7.0e-03^0.02^~2, 3~^~06/01/2010~ -~20648~^~342~^1.90^3^0.08^~1~^~A~^^^1^1.73^2.00^2^1.52^2.27^~2, 3~^~06/01/2010~ -~20648~^~343~^0.03^3^1.0e-03^~1~^~A~^^^1^0.03^0.03^2^0.02^0.03^~2, 3~^~06/01/2010~ -~20648~^~344~^0.11^3^0.01^~1~^~A~^^^1^0.09^0.13^2^0.06^0.16^~2, 3~^~06/01/2010~ -~20648~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~346~^0.04^3^0.01^~1~^~A~^^^1^0.03^0.06^2^-3.0e-03^0.08^~2, 3~^~06/01/2010~ -~20648~^~347~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~06/01/2010~ -~20649~^~203~^9.61^24^0.14^~1~^~A~^^^1^8.50^11.20^23^9.30^9.92^~4~^~07/01/2011~ -~20649~^~204~^1.95^24^0.02^~1~^~A~^^^1^1.78^2.19^23^1.90^2.00^~4~^~07/01/2011~ -~20649~^~205~^74.48^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~20649~^~207~^1.53^24^0.02^~1~^~A~^^^1^1.30^1.77^23^1.48^1.57^~4~^~07/01/2011~ -~20649~^~255~^12.42^24^0.18^~1~^~A~^^^1^9.10^14.30^23^12.02^12.81^~4~^~07/01/2011~ -~20649~^~269~^1.02^18^0.05^~1~^~AS~^^^1^0.70^1.50^17^0.89^1.13^~4~^~07/01/2011~ -~20649~^~303~^3.71^24^0.07^~1~^~A~^^^1^3.03^4.30^23^3.56^3.85^~4~^~07/01/2011~ -~20649~^~309~^2.96^24^0.09^~1~^~A~^^^1^1.51^3.81^23^2.75^3.15^~4~^~07/01/2011~ -~20649~^~323~^0.53^24^0.03^~1~^~A~^^^1^0.31^0.91^23^0.45^0.60^~4~^~07/01/2011~ -~20650~^~203~^9.53^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~204~^1.24^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~205~^76.85^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~207~^0.47^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~211~^0.34^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~255~^11.92^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~303~^0.97^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~309~^0.47^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20651~^~203~^3.09^6^0.07^~1~^~A~^^^1^2.81^3.30^5^2.90^3.27^~2, 3~^~03/01/2015~ -~20651~^~204~^0.85^6^0.03^~1~^~A~^^^1^0.80^1.00^5^0.76^0.93^~2, 3~^~03/01/2015~ -~20651~^~205~^31.33^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~207~^0.35^6^0.01^~1~^~A~^^^1^0.30^0.40^5^0.30^0.38^~2, 3~^~03/01/2015~ -~20651~^~209~^29.27^3^0.89^~1~^~A~^^^1^27.70^30.80^2^25.41^33.11^~2, 3~^~03/01/2015~ -~20651~^~210~^0.15^2^^~1~^~A~^^^1^0.10^0.20^1^^^^~03/01/2015~ -~20651~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20651~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20651~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20651~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20651~^~255~^64.38^6^0.94^~1~^~A~^^^1^62.30^67.80^5^61.96^66.79^~2, 3~^~03/01/2015~ -~20651~^~269~^0.15^2^^~1~^~A~^^^1^0.10^0.20^1^^^^~03/01/2015~ -~20651~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2015~ -~20651~^~303~^0.53^6^0.04^~1~^~A~^^^1^0.42^0.69^5^0.40^0.64^~2, 3~^~03/01/2015~ -~20651~^~309~^0.77^6^0.02^~1~^~A~^^^1^0.67^0.84^5^0.70^0.83^~2, 3~^~03/01/2015~ -~20651~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20651~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20651~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20651~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20651~^~344~^0.11^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20651~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20651~^~346~^0.30^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~20651~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~20652~^~203~^5.67^3^0.09^~1~^~A~^^^1^5.48^5.77^2^5.25^6.09^~2, 3~^~06/01/2015~ -~20652~^~204~^1.48^3^0.02^~1~^~A~^^^1^1.43^1.52^2^1.36^1.58^~2, 3~^~06/01/2015~ -~20652~^~205~^30.87^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20652~^~207~^0.49^3^0.04^~1~^~A~^^^1^0.42^0.56^2^0.31^0.66^~2, 3~^~06/01/2015~ -~20652~^~209~^24.73^3^0.53^~1~^~A~^^^1^24.10^25.80^2^22.42^27.04^~2, 3~^~06/01/2015~ -~20652~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20652~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~214~^0.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20652~^~255~^61.49^3^0.71^~1~^~A~^^^1^60.06^62.36^2^58.39^64.58^~2, 3~^~06/01/2015~ -~20652~^~269~^0.65^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20652~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20652~^~303~^1.58^3^0.06^~1~^~A~^^^1^1.48^1.69^2^1.31^1.84^~2, 3~^~06/01/2015~ -~20652~^~309~^1.02^3^0.01^~1~^~A~^^^1^0.99^1.04^2^0.94^1.09^~2, 3~^~06/01/2015~ -~20653~^~203~^13.20^3^0.25^~1~^~A~^^^1^12.94^13.70^2^12.10^14.28^~2, 3~^~06/01/2015~ -~20653~^~204~^2.55^3^0.01^~1~^~A~^^^1^2.52^2.58^2^2.47^2.62^~2, 3~^~06/01/2015~ -~20653~^~205~^73.30^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~207~^1.73^2^^~1~^~A~^^^1^1.52^1.95^1^^^^~06/01/2015~ -~20653~^~209~^55.67^3^0.81^~1~^~A~^^^1^54.40^57.20^2^52.14^59.19^~2, 3~^~06/01/2015~ -~20653~^~210~^0.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20653~^~214~^1.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~255~^9.23^3^0.13^~1~^~A~^^^1^8.96^9.41^2^8.64^9.81^~2, 3~^~06/01/2015~ -~20653~^~269~^2.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20653~^~303~^3.41^3^0.06^~1~^~A~^^^1^3.32^3.53^2^3.14^3.67^~2, 3~^~06/01/2015~ -~20653~^~309~^2.20^3^0.05^~1~^~A~^^^1^2.11^2.30^2^1.95^2.43^~2, 3~^~06/01/2015~ -~20654~^~203~^3.46^6^0.12^~1~^~A~^^^1^2.99^3.83^5^3.14^3.77^~2, 3~^~06/01/2015~ -~20654~^~204~^1.67^6^0.04^~1~^~A~^^^1^1.50^1.80^5^1.54^1.79^~2, 3~^~06/01/2015~ -~20654~^~205~^32.20^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~207~^0.38^6^0.01^~1~^~A~^^^1^0.34^0.44^5^0.33^0.41^~2, 3~^~06/01/2015~ -~20654~^~209~^30.96^5^1.39^~1~^~A~^^^1^27.80^34.80^4^27.08^34.83^~2, 3~^~06/01/2015~ -~20654~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~255~^62.30^6^1.23^~1~^~A~^^^1^58.70^67.20^5^59.12^65.48^~2, 3~^~06/01/2015~ -~20654~^~269~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~20654~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~303~^0.53^6^0.03^~1~^~A~^^^1^0.41^0.65^5^0.43^0.62^~2, 3~^~06/01/2015~ -~20654~^~309~^0.83^6^0.05^~1~^~A~^^^1^0.60^0.92^5^0.69^0.95^~2, 3~^~06/01/2015~ -~20654~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~341~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~342~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~343~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~344~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~345~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~346~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~347~^0.00^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20654~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20654~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~203~^3.23^3^0.02^~1~^~A~^^^1^3.20^3.27^2^3.13^3.32^~2, 3~^~06/01/2015~ -~20655~^~204~^2.07^3^0.03^~1~^~A~^^^1^2.00^2.10^2^1.92^2.21^~2, 3~^~06/01/2015~ -~20655~^~205~^31.11^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~207~^0.39^3^0.02^~1~^~A~^^^1^0.34^0.44^2^0.26^0.51^~2, 3~^~06/01/2015~ -~20655~^~209~^27.93^3^1.11^~1~^~A~^^^1^25.70^29.10^2^23.12^32.74^~2, 3~^~06/01/2015~ -~20655~^~210~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~06/01/2015~ -~20655~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~255~^63.20^3^0.90^~1~^~A~^^^1^62.30^65.00^2^59.32^67.07^~2, 3~^~06/01/2015~ -~20655~^~269~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~06/01/2015~ -~20655~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~303~^0.72^3^0.04^~1~^~A~^^^1^0.64^0.81^2^0.50^0.93^~2, 3~^~06/01/2015~ -~20655~^~309~^0.70^3^0.02^~1~^~A~^^^1^0.65^0.73^2^0.60^0.79^~2, 3~^~06/01/2015~ -~20655~^~323~^0.23^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~20655~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20655~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20656~^~203~^4.21^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~204~^1.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~205~^40.75^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20656~^~207~^0.54^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~209~^36.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~255~^52.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20656~^~303~^0.62^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~309~^1.08^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20657~^~203~^3.20^3^0.01^~1~^~A~^^^1^3.05^3.32^1^2.98^3.42^~2, 3~^~06/01/2015~ -~20657~^~204~^1.00^3^0.00^~1~^~A~^^^1^0.90^1.10^^^^~2, 3~^~06/01/2015~ -~20657~^~205~^38.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~207~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~209~^36.15^3^0.40^~1~^~A~^^^1^33.70^37.80^1^31.06^41.23^~2, 3~^~06/01/2015~ -~20657~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~255~^57.67^3^0.17^~1~^~A~^^^1^56.40^59.30^1^55.45^59.89^~2, 3~^~06/01/2015~ -~20657~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~20657~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~20657~^~303~^0.22^3^0.01^~1~^~A~^^^1^0.20^0.25^1^0.09^0.34^~2, 3~^~06/01/2015~ -~20657~^~309~^0.27^3^2.0e-03^~1~^~A~^^^1^0.24^0.29^1^0.24^0.28^~2, 3~^~06/01/2015~ -~20657~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~20657~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~20657~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~21003~^~203~^11.33^3^0.08^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~204~^20.73^3^1.81^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~205~^19.06^3^^~9~^^^^^^^^^^^~09/01/1988~ -~21003~^~207~^2.40^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~255~^46.67^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~269~^2.19^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21003~^~303~^2.49^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~309~^1.09^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~323~^1.34^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21003~^~418~^0.69^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21003~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21004~^~203~^10.64^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~204~^14.08^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~205~^16.37^2^^~1~^^^^^^^^^^^~03/01/2009~ -~21004~^~207~^2.31^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~255~^56.60^0^^~1~^^^^^^^^^^^~03/01/2009~ -~21004~^~269~^2.20^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~303~^2.37^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~309~^1.16^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~323~^1.10^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21004~^~418~^0.62^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21004~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21005~^~203~^11.13^4^0.18^~1~^~A~^^^1^10.72^11.52^3^10.54^11.72^~2, 3~^~09/01/2006~ -~21005~^~204~^20.77^4^0.45^~1~^~A~^^^1^19.80^22.00^3^19.31^22.23^~2, 3~^~09/01/2006~ -~21005~^~205~^21.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~207~^2.56^4^0.02^~1~^~A~^^^1^2.51^2.61^3^2.48^2.64^~2, 3~^~09/01/2006~ -~21005~^~209~^16.33^4^0.43^~1~^~A~^^^1^15.39^17.43^3^14.96^17.70^~2, 3~^~09/01/2006~ -~21005~^~210~^0.25^4^0.11^~1~^~A~^^^1^0.07^0.57^3^-0.12^0.62^~1, 2, 3~^~09/01/2006~ -~21005~^~211~^0.17^4^0.02^~1~^~A~^^^1^0.11^0.21^3^0.09^0.25^~2, 3~^~09/01/2006~ -~21005~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~213~^0.35^4^0.02^~1~^~A~^^^1^0.30^0.39^3^0.28^0.41^~2, 3~^~09/01/2006~ -~21005~^~214~^0.18^4^8.0e-03^~1~^~A~^^^1^0.16^0.20^3^0.15^0.20^~2, 3~^~09/01/2006~ -~21005~^~255~^44.48^4^0.59^~1~^~A~^^^1^43.43^45.62^3^42.58^46.37^~2, 3~^~09/01/2006~ -~21005~^~269~^0.95^4^0.07^~1~^~A~^^^1^0.81^1.14^3^0.72^1.18^~2, 3~^~09/01/2006~ -~21005~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~303~^1.90^4^0.07^~1~^~A~^^^1^1.78^2.07^3^1.68^2.12^~2, 3~^~09/01/2006~ -~21005~^~309~^0.90^4^6.0e-03^~1~^~A~^^^1^0.89^0.92^3^0.87^0.91^~2, 3~^~09/01/2006~ -~21005~^~323~^0.95^4^0.02^~1~^~A~^^^1^0.91^1.02^3^0.88^1.02^~2, 3~^~09/01/2006~ -~21005~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~09/01/2006~ -~21005~^~342~^3.84^4^0.24^~1~^~A~^^^1^3.18^4.31^3^3.08^4.61^~2, 3~^~09/01/2006~ -~21005~^~343~^1.86^4^0.10^~1~^~A~^^^1^1.55^2.05^3^1.51^2.20^~2, 3~^~09/01/2006~ -~21005~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~418~^0.75^4^0.02^~1~^~A~^^^1^0.68^0.80^3^0.66^0.83^~2, 3~^~09/01/2006~ -~21005~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~21005~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~21007~^~203~^12.01^4^0.41^~1~^~A~^^^1^11.15^13.16^3^10.68^13.34^~2, 3~^~09/01/2006~ -~21007~^~204~^17.48^4^0.29^~1~^~A~^^^1^17.00^18.20^3^16.54^18.40^~2, 3~^~09/01/2006~ -~21007~^~205~^24.44^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~207~^3.08^4^0.06^~1~^~A~^^^1^2.97^3.21^3^2.88^3.27^~2, 3~^~09/01/2006~ -~21007~^~209~^17.84^4^0.67^~1~^~A~^^^1^15.88^18.95^3^15.69^19.98^~2, 3~^~09/01/2006~ -~21007~^~210~^0.50^4^0.18^~1~^~A~^^^1^0.22^1.03^3^-0.07^1.08^~2, 3~^~09/01/2006~ -~21007~^~211~^0.17^4^0.02^~1~^~A~^^^1^0.11^0.21^3^0.09^0.24^~2, 3~^~09/01/2006~ -~21007~^~212~^0.08^4^7.0e-03^~1~^~A~^^^1^0.07^0.10^3^0.05^0.10^~1, 2, 3~^~09/01/2006~ -~21007~^~213~^0.79^4^0.02^~1~^~A~^^^1^0.74^0.85^3^0.71^0.86^~2, 3~^~09/01/2006~ -~21007~^~214~^0.20^4^0.01^~1~^~A~^^^1^0.18^0.24^3^0.15^0.24^~2, 3~^~09/01/2006~ -~21007~^~255~^42.99^4^0.57^~1~^~A~^^^1^41.32^43.88^3^41.16^44.81^~2, 3~^~09/01/2006~ -~21007~^~269~^1.74^4^0.14^~1~^~A~^^^1^1.52^2.16^3^1.28^2.20^~2, 3~^~09/01/2006~ -~21007~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~303~^1.57^4^0.07^~1~^~A~^^^1^1.40^1.77^3^1.33^1.81^~2, 3~^~09/01/2006~ -~21007~^~309~^1.09^4^0.06^~1~^~A~^^^1^0.94^1.21^3^0.87^1.30^~2, 3~^~09/01/2006~ -~21007~^~323~^1.02^4^0.01^~1~^~A~^^^1^0.98^1.05^3^0.96^1.07^~2, 3~^~09/01/2006~ -~21007~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~09/01/2006~ -~21007~^~342~^4.39^4^0.33^~1~^~A~^^^1^3.99^5.39^3^3.31^5.45^~2, 3~^~09/01/2006~ -~21007~^~343~^2.19^4^0.16^~1~^~A~^^^1^1.99^2.69^3^1.66^2.72^~2, 3~^~09/01/2006~ -~21007~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~418~^0.86^4^0.08^~1~^~A~^^^1^0.65^1.04^3^0.59^1.12^~2, 3~^~09/01/2006~ -~21007~^~573~^0.00^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~578~^0.00^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21008~^~203~^11.85^4^0.83^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~204~^16.30^4^1.26^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~205~^38.75^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21008~^~207~^4.70^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~255~^28.40^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~269~^1.97^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21008~^~303~^2.41^4^0.38^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~309~^1.46^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~323~^1.23^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~21008~^~418~^0.03^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21008~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~21009~^~203~^9.67^4^0.27^~1~^~A~^^^1^8.99^10.19^3^8.79^10.55^~2, 3~^~09/01/2006~ -~21009~^~204~^24.42^4^0.35^~1~^~A~^^^1^23.50^25.10^3^23.31^25.53^~2, 3~^~09/01/2006~ -~21009~^~205~^29.99^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~207~^3.10^4^0.04^~1~^~A~^^^1^2.97^3.18^3^2.95^3.24^~2, 3~^~09/01/2006~ -~21009~^~209~^24.23^4^0.68^~1~^~A~^^^1^22.44^25.54^3^22.06^26.39^~2, 3~^~09/01/2006~ -~21009~^~210~^0.42^4^0.23^~1~^~A~^^^1^0.07^1.08^3^-0.33^1.16^~1, 2, 3~^~09/01/2006~ -~21009~^~211~^0.21^4^0.02^~1~^~A~^^^1^0.15^0.25^3^0.14^0.28^~2, 3~^~09/01/2006~ -~21009~^~212~^0.11^4^0.01^~1~^~A~^^^1^0.07^0.13^3^0.06^0.14^~1, 2, 3~^~09/01/2006~ -~21009~^~213~^0.66^4^0.02^~1~^~A~^^^1^0.63^0.72^3^0.59^0.72^~2, 3~^~09/01/2006~ -~21009~^~214~^0.19^4^6.0e-03^~1~^~A~^^^1^0.18^0.20^3^0.17^0.21^~2, 3~^~09/01/2006~ -~21009~^~255~^32.82^4^0.89^~1~^~A~^^^1^31.45^35.35^3^29.96^35.67^~2, 3~^~09/01/2006~ -~21009~^~269~^1.59^4^0.20^~1~^~A~^^^1^1.28^2.13^3^0.94^2.23^~2, 3~^~09/01/2006~ -~21009~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~303~^1.86^4^0.09^~1~^~A~^^^1^1.66^2.13^3^1.54^2.17^~2, 3~^~09/01/2006~ -~21009~^~309~^0.71^4^0.01^~1~^~A~^^^1^0.68^0.74^3^0.66^0.74^~2, 3~^~09/01/2006~ -~21009~^~323~^0.84^4^0.01^~1~^~A~^^^1^0.82^0.86^3^0.80^0.87^~2, 3~^~09/01/2006~ -~21009~^~341~^0.04^4^0.00^~1~^~A~^^^1^0.04^0.04^^^^~2, 3~^~09/01/2006~ -~21009~^~342~^4.58^4^0.16^~1~^~A~^^^1^4.11^4.86^3^4.06^5.10^~2, 3~^~09/01/2006~ -~21009~^~343~^2.10^4^0.33^~1~^~A~^^^1^1.18^2.63^3^1.04^3.15^~2, 3~^~09/01/2006~ -~21009~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~418~^0.60^4^0.02^~1~^~A~^^^1^0.52^0.66^3^0.51^0.68^~2, 3~^~09/01/2006~ -~21009~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21010~^~203~^11.93^3^0.76^~1~^~A~^^^1^10.40^12.80^2^8.62^15.24^~2, 3~^~05/01/2015~ -~21010~^~204~^14.93^3^0.76^~1~^~A~^^^1^13.80^16.40^2^11.62^18.24^~2, 3~^~05/01/2015~ -~21010~^~205~^30.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~207~^3.17^3^0.05^~1~^~A~^^^1^3.11^3.27^2^2.95^3.38^~2, 3~^~05/01/2015~ -~21010~^~209~^25.33^3^1.77^~1~^~A~^^^1^22.50^28.60^2^17.70^32.96^~2, 3~^~05/01/2015~ -~21010~^~210~^1.84^3^0.14^~1~^~A~^^^1^1.62^2.10^2^1.23^2.44^~2, 3~^~05/01/2015~ -~21010~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~213~^0.66^3^0.11^~1~^~A~^^^1^0.50^0.88^2^0.17^1.14^~2, 3~^~05/01/2015~ -~21010~^~214~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.18^2^-0.02^0.26^~1, 2, 3~^~05/01/2015~ -~21010~^~255~^39.40^2^^~1~^~A~^^^1^39.30^39.50^1^^^^~05/01/2015~ -~21010~^~269~^2.62^3^0.12^~1~^~A~^^^1^2.37^2.80^2^2.07^3.16^~2, 3~^~05/01/2015~ -~21010~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~303~^1.76^3^0.04^~1~^~A~^^^1^1.70^1.84^2^1.58^1.93^~2, 3~^~05/01/2015~ -~21010~^~309~^0.49^3^0.03^~1~^~A~^^^1^0.45^0.56^2^0.34^0.63^~2, 3~^~05/01/2015~ -~21010~^~323~^1.88^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~341~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~342~^2.05^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~343~^0.31^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~344~^0.65^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~345~^0.27^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~346~^0.96^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21010~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21010~^~418~^0.15^3^0.02^~1~^~A~^^^1^0.11^0.20^2^0.02^0.26^~2, 3~^~02/01/2016~ -~21010~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21010~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21012~^~203~^12.92^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~204~^16.40^0^^~4~^~T~^^^^^^^^^^~01/01/2017~ -~21012~^~205~^22.50^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~21012~^~207~^2.35^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~255~^45.83^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~269~^4.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~303~^1.55^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~309~^1.31^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~323~^0.97^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~418~^0.64^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~203~^12.45^3^0.67^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~204~^14.95^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~205~^18.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~21013~^~207~^2.48^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~255~^51.14^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~269~^5.42^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~303~^1.40^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~309~^1.43^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~323~^0.76^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~418~^0.66^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21014~^~203~^12.09^6^0.19^~1~^~A~^^^1^11.44^12.62^5^11.58^12.60^~2, 3~^~04/01/2013~ -~21014~^~204~^21.78^6^0.40^~1~^~A~^^^1^20.39^23.00^5^20.75^22.81^~2, 3~^~04/01/2013~ -~21014~^~205~^15.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~207~^2.12^6^0.01^~1~^~A~^^^1^2.06^2.20^5^2.07^2.16^~2, 3~^~04/01/2013~ -~21014~^~209~^12.83^3^0.69^~1~^~A~^^^1^11.70^14.10^2^9.83^15.82^~2, 3~^~04/01/2013~ -~21014~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~211~^0.95^3^0.07^~1~^~A~^^^1^0.85^1.09^2^0.63^1.26^~2, 3~^~04/01/2013~ -~21014~^~212~^0.90^3^0.06^~1~^~A~^^^1^0.83^1.02^2^0.64^1.15^~2, 3~^~04/01/2013~ -~21014~^~213~^0.64^3^0.01^~1~^~A~^^^1^0.61^0.66^2^0.57^0.71^~2, 3~^~04/01/2013~ -~21014~^~214~^0.63^3^0.01^~1~^~A~^^^1^0.61^0.66^2^0.56^0.69^~2, 3~^~04/01/2013~ -~21014~^~255~^48.10^6^0.87^~1~^~A~^^^1^46.11^51.71^5^45.85^50.34^~2, 3~^~04/01/2013~ -~21014~^~269~^3.12^3^0.13^~1~^~A~^^^1^2.95^3.39^2^2.53^3.70^~2, 3~^~04/01/2013~ -~21014~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~303~^1.65^6^0.05^~1~^~A~^^^1^1.47^1.80^5^1.50^1.78^~2, 3~^~04/01/2013~ -~21014~^~309~^1.14^6^0.02^~1~^~A~^^^1^1.06^1.18^5^1.08^1.18^~2, 3~^~04/01/2013~ -~21014~^~323~^1.54^2^^~1~^~A~^^^1^1.50^1.57^1^^^^~04/01/2013~ -~21014~^~341~^0.06^2^^~1~^~A~^^^1^0.04^0.07^1^^^^~04/01/2013~ -~21014~^~342~^1.32^2^^~1~^~A~^^^1^1.24^1.40^1^^^^~04/01/2013~ -~21014~^~343~^0.21^2^^~1~^~A~^^^1^0.18^0.24^1^^^^~04/01/2013~ -~21014~^~344~^0.44^2^^~1~^~A~^^^1^0.37^0.52^1^^^^~04/01/2013~ -~21014~^~345~^0.20^2^^~1~^~A~^^^1^0.15^0.26^1^^^^~04/01/2013~ -~21014~^~346~^0.57^2^^~1~^~A~^^^1^0.44^0.70^1^^^^~04/01/2013~ -~21014~^~347~^0.16^2^^~1~^~A~^^^1^0.16^0.17^1^^^^~04/01/2013~ -~21014~^~418~^0.51^3^0.03^~1~^~A~^^^1^0.47^0.58^2^0.34^0.66^~2, 3~^~04/01/2013~ -~21014~^~573~^0.00^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21014~^~578~^0.00^0^^~4~^~BFFN~^~21022~^^^^^^^^^~04/01/2013~ -~21018~^~203~^13.84^5^0.51^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~204~^16.18^6^1.16^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~205~^2.08^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21018~^~207~^1.20^3^0.05^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~255~^66.70^5^1.29^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~269~^1.64^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~303~^2.59^6^0.12^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~309~^1.66^4^0.08^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~323~^0.96^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~418~^1.01^3^0.04^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21018~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~203~^13.28^4^0.02^~1~^~A~^^^1^13.23^13.33^3^13.20^13.35^~2, 3~^~09/01/2006~ -~21020~^~204~^20.67^4^0.33^~1~^~A~^^^1^19.80^21.40^3^19.60^21.74^~2, 3~^~09/01/2006~ -~21020~^~205~^25.28^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~207~^2.83^4^0.02^~1~^~A~^^^1^2.76^2.87^3^2.75^2.91^~2, 3~^~09/01/2006~ -~21020~^~209~^20.12^4^0.53^~1~^~A~^^^1^18.72^21.32^3^18.41^21.83^~2, 3~^~09/01/2006~ -~21020~^~210~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~211~^0.43^4^0.03^~1~^~A~^^^1^0.38^0.50^3^0.33^0.52^~2, 3~^~09/01/2006~ -~21020~^~212~^0.27^4^0.04^~1~^~A~^^^1^0.20^0.41^3^0.12^0.42^~2, 3~^~09/01/2006~ -~21020~^~213~^0.43^4^0.05^~1~^~A~^^^1^0.33^0.57^3^0.26^0.60^~2, 3~^~09/01/2006~ -~21020~^~214~^0.77^4^0.05^~1~^~A~^^^1^0.63^0.87^3^0.61^0.93^~2, 3~^~09/01/2006~ -~21020~^~255~^37.93^4^0.56^~1~^~A~^^^1^36.29^38.71^3^36.13^39.72^~2, 3~^~09/01/2006~ -~21020~^~269~^1.98^4^0.05^~1~^~A~^^^1^1.87^2.07^3^1.81^2.13^~2, 3~^~09/01/2006~ -~21020~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~303~^3.14^4^0.84^~1~^~A~^^^1^1.90^5.58^3^0.44^5.83^~2, 3~^~09/01/2006~ -~21020~^~309~^1.19^4^0.03^~1~^~A~^^^1^1.13^1.27^3^1.08^1.28^~2, 3~^~09/01/2006~ -~21020~^~323~^0.58^4^0.10^~1~^~A~^^^1^0.35^0.84^3^0.25^0.90^~2, 3~^~09/01/2006~ -~21020~^~341~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~09/01/2006~ -~21020~^~342~^0.43^4^0.07^~1~^~A~^^^1^0.23^0.54^3^0.21^0.65^~2, 3~^~09/01/2006~ -~21020~^~343~^0.10^4^0.03^~1~^~A~^^^1^0.00^0.16^3^-0.01^0.21^~1, 2, 3~^~09/01/2006~ -~21020~^~344~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.06^3^-0.03^0.06^~1, 2, 3~^~09/01/2006~ -~21020~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~418~^0.79^4^0.02^~1~^~A~^^^1^0.71^0.83^3^0.70^0.87^~2, 3~^~09/01/2006~ -~21020~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21020~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21021~^~203~^13.64^6^0.21^~1~^~A~^^^1^12.81^14.25^5^13.07^14.19^~2, 3~^~08/01/2012~ -~21021~^~204~^9.66^6^0.21^~1~^~A~^^^1^8.93^10.31^5^9.10^10.21^~2, 3~^~08/01/2012~ -~21021~^~205~^21.67^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~207~^2.45^6^0.06^~1~^~A~^^^1^2.24^2.74^5^2.27^2.61^~2, 3~^~08/01/2012~ -~21021~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~08/01/2012~ -~21021~^~211~^0.40^3^0.10^~1~^~A~^^^1^0.30^0.60^2^-0.03^0.83^~2, 3~^~08/01/2012~ -~21021~^~212~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~08/01/2012~ -~21021~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~2, 3~^~08/01/2012~ -~21021~^~214~^0.57^3^0.06^~1~^~A~^^^1^0.50^0.70^2^0.28^0.85^~2, 3~^~08/01/2012~ -~21021~^~255~^52.58^6^0.42^~1~^~A~^^^1^51.41^53.95^5^51.50^53.66^~2, 3~^~08/01/2012~ -~21021~^~269~^2.13^3^0.23^~1~^~A~^^^1^1.90^2.60^2^1.12^3.13^~2, 3~^~08/01/2012~ -~21021~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21021~^~303~^2.30^6^0.04^~1~^~A~^^^1^2.12^2.43^5^2.18^2.42^~2, 3~^~08/01/2012~ -~21021~^~309~^1.29^6^0.03^~1~^~A~^^^1^1.21^1.44^5^1.19^1.38^~2, 3~^~08/01/2012~ -~21021~^~323~^0.91^4^0.25^~1~^~A~^^^1^0.48^1.63^3^0.08^1.73^~2, 3~^~09/01/2006~ -~21021~^~418~^0.81^4^0.05^~1~^~A~^^^1^0.65^0.87^3^0.64^0.97^~2, 3~^~09/01/2006~ -~21021~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21021~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21022~^~203~^13.38^4^0.27^~1~^~A~^^^1^12.75^13.91^3^12.49^14.26^~2, 3~^~09/01/2006~ -~21022~^~204~^18.10^4^0.23^~1~^~A~^^^1^17.60^18.70^3^17.35^18.84^~2, 3~^~09/01/2006~ -~21022~^~205~^17.44^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~207~^2.26^4^0.02^~1~^~A~^^^1^2.20^2.32^3^2.18^2.34^~2, 3~^~09/01/2006~ -~21022~^~209~^13.49^4^0.43^~1~^~A~^^^1^12.34^14.28^3^12.12^14.86^~2, 3~^~09/01/2006~ -~21022~^~210~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~211~^0.38^4^0.02^~1~^~A~^^^1^0.34^0.43^3^0.30^0.46^~2, 3~^~09/01/2006~ -~21022~^~212~^0.19^4^0.03^~1~^~A~^^^1^0.15^0.29^3^0.08^0.29^~2, 3~^~09/01/2006~ -~21022~^~213~^0.31^4^0.03^~1~^~A~^^^1^0.23^0.38^3^0.20^0.40^~2, 3~^~09/01/2006~ -~21022~^~214~^0.53^4^0.02^~1~^~A~^^^1^0.46^0.59^3^0.44^0.62^~2, 3~^~09/01/2006~ -~21022~^~255~^48.82^4^0.42^~1~^~A~^^^1^47.91^49.75^3^47.47^50.16^~2, 3~^~09/01/2006~ -~21022~^~269~^1.49^4^0.04^~1~^~A~^^^1^1.40^1.60^3^1.34^1.63^~2, 3~^~09/01/2006~ -~21022~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~303~^2.63^4^0.42^~1~^~A~^^^1^1.91^3.81^3^1.28^3.97^~2, 3~^~09/01/2006~ -~21022~^~309~^1.00^4^0.07^~1~^~A~^^^1^0.82^1.14^3^0.74^1.24^~2, 3~^~09/01/2006~ -~21022~^~323~^0.94^4^0.24^~1~^~A~^^^1^0.58^1.65^3^0.17^1.70^~2, 3~^~09/01/2006~ -~21022~^~341~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~09/01/2006~ -~21022~^~342~^0.52^4^0.03^~1~^~A~^^^1^0.41^0.58^3^0.40^0.65^~2, 3~^~09/01/2006~ -~21022~^~343~^0.14^4^0.03^~1~^~A~^^^1^0.09^0.21^3^0.04^0.24^~2, 3~^~09/01/2006~ -~21022~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~418~^0.95^4^0.02^~1~^~A~^^^1^0.87^0.99^3^0.86^1.03^~2, 3~^~09/01/2006~ -~21022~^~573~^0.00^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~578~^0.00^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21024~^~203~^6.00^4^0.18^~1~^~A~^^^1^5.61^6.41^3^5.41^6.59^~2, 3~^~03/01/2007~ -~21024~^~204~^17.74^4^1.08^~1~^~A~^^^1^15.43^20.58^3^14.29^21.18^~2, 3~^~03/01/2007~ -~21024~^~205~^41.21^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~207~^1.47^4^0.12^~1~^~A~^^^1^1.20^1.79^3^1.08^1.86^~2, 3~^~03/01/2007~ -~21024~^~209~^26.60^4^0.81^~1~^~A~^^^1^24.88^28.51^3^24.00^29.19^~2, 3~^~03/01/2007~ -~21024~^~210~^7.14^4^0.39^~1~^~A~^^^1^6.13^7.96^3^5.89^8.38^~2, 3~^~03/01/2007~ -~21024~^~211~^1.03^4^0.03^~1~^~A~^^^1^0.97^1.11^3^0.92^1.13^~2, 3~^~03/01/2007~ -~21024~^~212~^0.75^4^0.02^~1~^~A~^^^1^0.68^0.81^3^0.66^0.83^~2, 3~^~03/01/2007~ -~21024~^~213~^0.15^4^9.0e-03^~1~^~A~^^^1^0.13^0.17^3^0.12^0.18^~2, 3~^~03/01/2007~ -~21024~^~214~^0.82^4^0.10^~1~^~A~^^^1^0.63^0.99^3^0.49^1.13^~2, 3~^~03/01/2007~ -~21024~^~255~^33.57^4^0.77^~1~^~A~^^^1^31.62^35.31^3^31.11^36.02^~2, 3~^~03/01/2007~ -~21024~^~269~^9.89^4^0.43^~1~^~A~^^^1^8.65^10.55^3^8.51^11.27^~2, 3~^~07/01/2007~ -~21024~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~303~^1.92^4^0.10^~1~^~A~^^^1^1.65^2.09^3^1.60^2.24^~2, 3~^~03/01/2007~ -~21024~^~309~^0.51^4^0.03^~1~^~A~^^^1^0.46^0.60^3^0.41^0.61^~2, 3~^~03/01/2007~ -~21024~^~323~^0.88^4^0.05^~1~^~A~^^^1^0.73^0.99^3^0.70^1.05^~2, 3~^~03/01/2007~ -~21024~^~341~^0.07^4^5.0e-03^~1~^~A~^^^1^0.06^0.08^3^0.05^0.08^~2, 3~^~03/01/2007~ -~21024~^~342~^5.29^4^0.63^~1~^~A~^^^1^4.26^7.05^3^3.27^7.31^~2, 3~^~03/01/2007~ -~21024~^~343~^3.50^4^0.26^~1~^~A~^^^1^2.86^4.09^3^2.67^4.32^~2, 3~^~03/01/2007~ -~21024~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.02^0.08^~1, 2, 3~^~03/01/2007~ -~21024~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~03/01/2007~ -~21024~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~418~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21026~^~203~^2.58^15^0.09^~1~^~A~^^^1^2.07^3.31^5^2.33^2.83^~2, 3~^~05/01/2014~ -~21026~^~204~^17.04^15^0.35^~1~^~A~^^^1^14.70^19.80^5^16.13^17.94^~2, 3~^~05/01/2014~ -~21026~^~205~^28.88^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~207~^2.23^15^0.06^~1~^~A~^^^1^1.80^2.58^6^2.08^2.38^~2, 3~^~05/01/2014~ -~21026~^~209~^25.74^9^0.28^~1~^~A~^^^1^24.60^29.50^3^24.84^26.62^~2, 3~^~05/01/2014~ -~21026~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~211~^0.31^9^0.04^~1~^~A~^^^1^0.18^0.37^2^0.13^0.49^~1, 2, 3~^~05/01/2014~ -~21026~^~212~^0.24^9^0.02^~1~^~A~^^^1^0.18^0.29^2^0.15^0.33^~1, 2, 3~^~05/01/2014~ -~21026~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~255~^49.27^15^0.44^~1~^~A~^^^1^44.20^51.80^6^48.16^50.37^~2, 3~^~05/01/2014~ -~21026~^~269~^0.56^9^0.06^~1~^~A~^^^1^0.37^0.65^2^0.28^0.82^~2, 3~^~05/01/2014~ -~21026~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~303~^0.60^16^0.01^~1~^~A~^^^1^0.49^1.08^10^0.55^0.63^~2, 3~^~05/01/2014~ -~21026~^~309~^0.36^16^0.02^~1~^~A~^^^1^0.24^0.54^6^0.29^0.41^~2, 3~^~05/01/2014~ -~21026~^~323~^2.62^9^0.25^~1~^~A~^^^1^1.49^5.15^3^1.72^3.51^~2, 3~^~05/01/2014~ -~21026~^~341~^0.13^9^0.07^~1~^~A~^^^1^0.00^1.39^2^-0.18^0.44^~1, 2, 3~^~05/01/2014~ -~21026~^~342~^4.93^9^1.07^~1~^~A~^^^1^1.32^9.68^2^0.53^9.33^~2, 3~^~05/01/2014~ -~21026~^~343~^0.65^9^0.09^~1~^~A~^^^1^0.07^1.40^2^0.27^1.02^~2, 3~^~05/01/2014~ -~21026~^~344~^0.12^9^7.0e-03^~1~^~A~^^^1^0.06^0.52^5^0.10^0.13^~2, 3~^~05/01/2014~ -~21026~^~345~^0.03^9^0.01^~1~^~A~^^^1^0.00^0.17^3^-0.01^0.08^~1, 2, 3~^~05/01/2014~ -~21026~^~346~^0.07^9^0.01^~1~^~A~^^^1^0.00^0.40^2^8.0e-03^0.12^~1, 2, 3~^~05/01/2014~ -~21026~^~347~^0.06^9^0.05^~1~^~A~^^^1^0.00^0.23^2^-0.17^0.30^~1, 2, 3~^~05/01/2014~ -~21026~^~418~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~02/01/2006~ -~21026~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21026~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~21028~^~203~^4.24^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~204~^4.86^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~205~^26.36^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21028~^~207~^0.90^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~210~^12.76^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~211~^0.69^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~212~^0.16^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~213~^5.59^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~214~^0.29^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~255~^63.64^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~269~^19.49^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~303~^0.35^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~309~^0.50^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~323~^0.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~418~^0.58^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21032~^~203~^4.71^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~204~^5.98^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~205~^31.81^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21032~^~207~^1.00^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~255~^56.50^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~303~^0.14^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~309~^0.53^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~323~^0.58^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~418~^0.39^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~203~^3.57^5^0.34^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~204~^5.46^5^0.85^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~205~^30.17^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21033~^~207~^1.10^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~255~^59.70^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~303~^0.37^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~309~^0.60^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~323~^0.42^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~418~^0.41^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~203~^4.09^3^3.0e-03^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~204~^5.13^3^0.08^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~205~^29.18^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21034~^~207~^0.70^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~255~^60.90^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~303~^0.21^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~309~^0.43^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~323~^0.51^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~418~^0.42^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21059~^~203~^7.84^6^0.29^~1~^~A~^^^1^6.50^8.35^5^7.08^8.60^~4~^~03/01/2011~ -~21059~^~204~^18.90^6^0.99^~1~^~A~^^^1^16.00^21.40^5^16.33^21.46^~4~^~03/01/2011~ -~21059~^~205~^27.99^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~207~^3.12^6^0.11^~1~^~A~^^^1^2.76^3.48^5^2.82^3.41^~4~^~03/01/2011~ -~21059~^~209~^26.28^6^0.45^~1~^~A~^^^1^24.70^27.60^5^25.11^27.45^~4~^~03/01/2011~ -~21059~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21059~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21059~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21059~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21059~^~214~^0.10^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~255~^42.15^6^1.05^~1~^~A~^^^1^38.80^45.50^5^39.43^44.86^~4~^~03/01/2011~ -~21059~^~269~^0.10^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21059~^~303~^0.86^6^0.05^~1~^~A~^^^1^0.68^1.05^5^0.72^1.00^~4~^~03/01/2011~ -~21059~^~309~^0.58^6^0.01^~1~^~A~^^^1^0.53^0.62^5^0.54^0.61^~4~^~03/01/2011~ -~21059~^~323~^2.52^0^^~4~^~BFZN~^~36016~^^^^^^^^^~03/01/2011~ -~21059~^~418~^0.53^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21059~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21060~^~203~^6.48^7^0.14^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~204~^6.22^7^0.41^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~205~^32.92^0^^~4~^~NC~^^^^^^^^^^~09/01/1988~ -~21060~^~207~^1.85^7^0.04^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~255~^52.53^7^1.68^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~303~^2.08^7^0.20^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~309~^0.70^6^0.05^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~418~^0.50^7^0.11^~1~^^^^^^^^^^^~09/01/1988~ -~21061~^~203~^7.35^6^0.13^~1~^~A~^^^1^6.89^7.75^5^7.00^7.69^~2, 3~^~03/01/2011~ -~21061~^~204~^6.05^6^0.30^~1~^~A~^^^1^4.70^6.60^5^5.25^6.84^~2, 3~^~03/01/2011~ -~21061~^~205~^31.23^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~207~^2.20^6^0.06^~1~^~A~^^^1^1.96^2.40^5^2.02^2.38^~2, 3~^~03/01/2011~ -~21061~^~209~^21.58^6^0.77^~1~^~A~^^^1^18.30^23.40^5^19.59^23.56^~2, 3~^~03/01/2011~ -~21061~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~03/01/2011~ -~21061~^~211~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~03/01/2011~ -~21061~^~212~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~03/01/2011~ -~21061~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21061~^~214~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~03/01/2011~ -~21061~^~255~^53.17^6^0.54^~1~^~A~^^^1^51.70^54.60^5^51.77^54.56^~2, 3~^~03/01/2011~ -~21061~^~269~^1.73^3^0.03^~1~^~A~^^^1^1.70^1.80^2^1.59^1.87^~2, 3~^~03/01/2011~ -~21061~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21061~^~303~^2.37^6^0.03^~1~^~A~^^^1^2.29^2.50^5^2.28^2.46^~2, 3~^~03/01/2011~ -~21061~^~309~^0.86^6^0.01^~1~^~A~^^^1^0.81^0.91^5^0.81^0.90^~2, 3~^~03/01/2011~ -~21061~^~323~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~418~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21061~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21061~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21063~^~203~^11.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~204~^7.47^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~205~^19.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~207~^1.51^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~255~^60.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~269~^2.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~303~^1.91^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~309~^1.99^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~323~^0.45^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~418~^0.68^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21064~^~203~^7.03^6^0.19^~1~^~A~^^^1^6.57^7.86^5^6.53^7.52^~2, 3~^~04/01/2013~ -~21064~^~204~^6.80^6^0.13^~1~^~A~^^^1^6.20^7.10^5^6.46^7.13^~2, 3~^~04/01/2013~ -~21064~^~205~^23.37^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~207~^1.89^6^0.01^~1~^~A~^^^1^1.85^1.94^5^1.86^1.92^~2, 3~^~04/01/2013~ -~21064~^~209~^14.50^3^0.23^~1~^~A~^^^1^14.10^14.90^2^13.50^15.49^~2, 3~^~04/01/2013~ -~21064~^~210~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~04/01/2013~ -~21064~^~211~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~21064~^~212~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~04/01/2013~ -~21064~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~2, 3~^~04/01/2013~ -~21064~^~214~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~21064~^~255~^60.90^6^0.23^~1~^~A~^^^1^60.30^61.90^5^60.28^61.51^~2, 3~^~04/01/2013~ -~21064~^~269~^2.10^3^0.05^~1~^~A~^^^1^2.00^2.20^2^1.85^2.34^~2, 3~^~04/01/2013~ -~21064~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~303~^1.82^6^0.02^~1~^~A~^^^1^1.76^1.91^5^1.75^1.88^~2, 3~^~04/01/2013~ -~21064~^~309~^0.88^6^0.02^~1~^~A~^^^1^0.83^0.99^5^0.82^0.94^~2, 3~^~04/01/2013~ -~21064~^~323~^0.28^2^^~1~^~A~^^^1^0.26^0.30^1^^^^~04/01/2013~ -~21064~^~341~^0.03^2^^~1~^~A~^^^1^0.01^0.04^1^^^~1~^~04/01/2013~ -~21064~^~342~^0.78^2^^~1~^~A~^^^1^0.73^0.84^1^^^^~04/01/2013~ -~21064~^~343~^0.38^2^^~1~^~A~^^^1^0.34^0.42^1^^^^~04/01/2013~ -~21064~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21064~^~345~^0.03^2^^~1~^~A~^^^1^0.02^0.05^1^^^~1~^~04/01/2013~ -~21064~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21064~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21064~^~418~^0.27^3^0.02^~1~^~A~^^^1^0.25^0.31^2^0.18^0.35^~2, 3~^~04/01/2013~ -~21064~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21064~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~203~^4.32^6^0.07^~1~^~A~^^^1^4.10^4.57^5^4.11^4.52^~2, 3~^~04/01/2013~ -~21078~^~204~^21.50^6^0.45^~1~^~A~^^^1^20.20^23.00^5^20.33^22.66^~2, 3~^~04/01/2013~ -~21078~^~205~^34.91^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~207~^1.87^6^0.03^~1~^~A~^^^1^1.76^1.95^5^1.78^1.95^~2, 3~^~04/01/2013~ -~21078~^~209~^28.33^3^1.03^~1~^~A~^^^1^27.20^30.40^2^23.88^32.78^~2, 3~^~04/01/2013~ -~21078~^~210~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~2, 3~^~04/01/2013~ -~21078~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~213~^1.63^3^0.14^~1~^~A~^^^1^1.40^1.90^2^1.00^2.25^~2, 3~^~04/01/2013~ -~21078~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~255~^37.40^5^0.83^~1~^~A~^^^1^35.30^39.30^4^35.08^39.71^~2, 3~^~04/01/2013~ -~21078~^~269~^2.17^3^0.12^~1~^~A~^^^1^2.00^2.40^2^1.65^2.68^~2, 3~^~04/01/2013~ -~21078~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~303~^0.75^6^0.02^~1~^~A~^^^1^0.66^0.83^5^0.68^0.82^~2, 3~^~04/01/2013~ -~21078~^~309~^0.86^6^0.02^~1~^~A~^^^1^0.79^0.93^5^0.80^0.91^~2, 3~^~04/01/2013~ -~21078~^~323~^4.08^2^^~1~^~A~^^^1^3.52^4.65^1^^^^~04/01/2013~ -~21078~^~341~^0.08^2^^~1~^~A~^^^1^0.07^0.09^1^^^^~04/01/2013~ -~21078~^~342~^6.46^2^^~1~^~A~^^^1^5.55^7.37^1^^^^~04/01/2013~ -~21078~^~343~^0.22^2^^~1~^~A~^^^1^0.19^0.25^1^^^^~04/01/2013~ -~21078~^~344~^0.23^2^^~1~^~A~^^^1^0.21^0.26^1^^^^~04/01/2013~ -~21078~^~345~^0.42^2^^~1~^~A~^^^1^0.38^0.46^1^^^^~04/01/2013~ -~21078~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21078~^~347~^0.41^2^^~1~^~A~^^^1^0.37^0.44^1^^^^~04/01/2013~ -~21078~^~418~^0.07^3^0.02^~1~^~A~^^^1^0.03^0.12^2^-0.05^0.18^~2, 3~^~04/01/2013~ -~21078~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21078~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2013~ -~21080~^~203~^6.21^6^0.31^~1~^~A~^^^1^5.55^7.69^5^5.40^7.01^~2, 3~^~04/01/2013~ -~21080~^~204~^12.48^6^0.16^~1~^~A~^^^1^11.80^13.00^5^12.05^12.91^~2, 3~^~04/01/2013~ -~21080~^~205~^21.39^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~207~^1.76^6^0.02^~1~^~A~^^^1^1.69^1.87^5^1.69^1.83^~2, 3~^~04/01/2013~ -~21080~^~209~^14.97^3^0.84^~1~^~A~^^^1^13.60^16.50^2^11.34^18.58^~2, 3~^~04/01/2013~ -~21080~^~210~^0.27^3^0.06^~1~^~A~^^^1^0.20^0.40^2^-0.02^0.55^~2, 3~^~04/01/2013~ -~21080~^~211~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~2, 3~^~04/01/2013~ -~21080~^~212~^0.27^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.12^0.41^~2, 3~^~04/01/2013~ -~21080~^~213~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~2, 3~^~04/01/2013~ -~21080~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~255~^58.15^6^0.67^~1~^~A~^^^1^56.00^60.50^5^56.42^59.87^~2, 3~^~04/01/2013~ -~21080~^~269~^1.63^3^0.03^~1~^~A~^^^1^1.60^1.70^2^1.49^1.77^~2, 3~^~04/01/2013~ -~21080~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~303~^1.01^6^0.02^~1~^~A~^^^1^0.93^1.08^5^0.95^1.05^~2, 3~^~04/01/2013~ -~21080~^~309~^1.05^6^0.03^~1~^~A~^^^1^0.98^1.18^5^0.96^1.13^~2, 3~^~04/01/2013~ -~21080~^~323~^1.75^2^^~1~^~A~^^^1^1.70^1.80^1^^^^~04/01/2013~ -~21080~^~341~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~04/01/2013~ -~21080~^~342~^2.96^2^^~1~^~A~^^^1^2.67^3.24^1^^^^~04/01/2013~ -~21080~^~343~^0.24^2^^~1~^~A~^^^1^0.22^0.26^1^^^^~04/01/2013~ -~21080~^~344~^0.11^2^^~1~^~A~^^^1^0.10^0.13^1^^^^~04/01/2013~ -~21080~^~345~^0.17^2^^~1~^~A~^^^1^0.15^0.19^1^^^^~04/01/2013~ -~21080~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21080~^~347~^0.12^2^^~1~^~A~^^^1^0.09^0.15^1^^^^~04/01/2013~ -~21080~^~418~^0.31^3^0.03^~1~^~A~^^^1^0.25^0.35^2^0.17^0.43^~2, 3~^~04/01/2013~ -~21080~^~573~^0.00^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21080~^~578~^0.00^0^^~4~^~BFPN~^~21064~^^^^^^^^^~04/01/2013~ -~21082~^~203~^8.86^6^0.38^~1~^~A~^^^1^7.87^9.98^5^7.87^9.84^~2, 3~^~03/01/2011~ -~21082~^~204~^12.70^6^0.38^~1~^~A~^^^1^11.70^14.20^5^11.71^13.68^~2, 3~^~03/01/2011~ -~21082~^~205~^19.85^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~207~^1.57^6^0.07^~1~^~A~^^^1^1.36^1.78^5^1.38^1.75^~2, 3~^~03/01/2011~ -~21082~^~209~^14.78^6^0.88^~1~^~A~^^^1^12.80^18.80^5^12.51^17.05^~2, 3~^~03/01/2011~ -~21082~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~03/01/2011~ -~21082~^~211~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~03/01/2011~ -~21082~^~212~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~03/01/2011~ -~21082~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~255~^57.02^6^0.72^~1~^~A~^^^1^55.30^59.80^5^55.14^58.88^~2, 3~^~03/01/2011~ -~21082~^~269~^0.90^3^0.00^~1~^~A~^^^1^0.90^0.90^^^^~2, 3~^~03/01/2011~ -~21082~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~303~^1.19^6^0.01^~1~^~A~^^^1^1.14^1.23^5^1.14^1.22^~2, 3~^~03/01/2011~ -~21082~^~309~^1.75^6^0.03^~1~^~A~^^^1^1.63^1.84^5^1.66^1.83^~2, 3~^~03/01/2011~ -~21082~^~323~^0.60^4^0.03^~1~^~A~^^^1^0.54^0.66^3^0.51^0.69^~2, 3~^~03/01/2011~ -~21082~^~341~^0.04^4^6.0e-03^~1~^~A~^^^1^0.02^0.05^3^0.01^0.05^~2, 3~^~03/01/2011~ -~21082~^~342~^2.16^4^0.16^~1~^~A~^^^1^1.90^2.61^3^1.64^2.66^~2, 3~^~03/01/2011~ -~21082~^~343~^1.11^4^0.04^~1~^~A~^^^1^1.04^1.26^3^0.95^1.27^~2, 3~^~03/01/2011~ -~21082~^~344~^0.15^4^0.02^~1~^~A~^^^1^0.11^0.21^3^0.08^0.21^~2, 3~^~03/01/2011~ -~21082~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~418~^0.93^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21082~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21082~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21089~^~203~^16.51^6^0.12^~1~^~A~^^^1^16.19^17.06^5^16.18^16.84^~2, 3~^~04/01/2013~ -~21089~^~204~^14.72^6^0.21^~1~^~A~^^^1^13.98^15.32^5^14.18^15.26^~2, 3~^~04/01/2013~ -~21089~^~205~^28.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~207~^2.11^6^0.02^~1~^~A~^^^1^2.07^2.23^5^2.04^2.17^~2, 3~^~04/01/2013~ -~21089~^~209~^19.87^3^0.74^~1~^~A~^^^1^18.80^21.30^2^16.66^23.07^~2, 3~^~04/01/2013~ -~21089~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~211~^1.76^3^0.01^~1~^~A~^^^1^1.73^1.79^2^1.68^1.83^~2, 3~^~04/01/2013~ -~21089~^~212~^1.94^3^6.0e-03^~1~^~A~^^^1^1.93^1.95^2^1.91^1.96^~2, 3~^~04/01/2013~ -~21089~^~213~^0.72^3^0.03^~1~^~A~^^^1^0.66^0.76^2^0.58^0.86^~2, 3~^~04/01/2013~ -~21089~^~214~^0.46^3^0.18^~1~^~A~^^^1^0.18^0.80^2^-0.31^1.23^~1, 2, 3~^~04/01/2013~ -~21089~^~255~^38.63^6^0.40^~1~^~A~^^^1^37.33^40.25^5^37.58^39.67^~2, 3~^~04/01/2013~ -~21089~^~269~^4.88^3^0.16^~1~^~A~^^^1^4.60^5.18^2^4.16^5.60^~2, 3~^~04/01/2013~ -~21089~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~303~^2.71^6^0.11^~1~^~A~^^^1^2.44^3.17^5^2.40^3.01^~2, 3~^~04/01/2013~ -~21089~^~309~^2.49^6^0.05^~1~^~A~^^^1^2.30^2.63^5^2.35^2.61^~2, 3~^~04/01/2013~ -~21089~^~323~^0.52^2^^~1~^~A~^^^1^0.49^0.55^1^^^^~04/01/2013~ -~21089~^~341~^0.08^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~04/01/2013~ -~21089~^~342~^0.90^2^^~1~^~A~^^^1^0.83^0.97^1^^^^~04/01/2013~ -~21089~^~343~^0.22^2^^~1~^~A~^^^1^0.22^0.22^1^^^^~04/01/2013~ -~21089~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~04/01/2013~ -~21089~^~345~^0.50^2^^~1~^~A~^^^1^0.41^0.58^1^^^^~04/01/2013~ -~21089~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21089~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21089~^~418~^0.76^3^0.04^~1~^~A~^^^1^0.67^0.81^2^0.56^0.95^~2, 3~^~04/01/2013~ -~21089~^~573~^0.00^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21089~^~578~^0.00^0^^~4~^~BFZN~^~21091~^^^^^^^^^~04/01/2013~ -~21090~^~203~^13.49^3^^~1~^~A~^^^3^12.83^14.57^^^^~2, 3~^~11/01/2005~ -~21090~^~204~^12.90^3^^~1~^~A~^^^3^11.50^14.81^^^^~2, 3~^~11/01/2005~ -~21090~^~205~^25.46^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~207~^2.38^3^^~1~^~A~^^^3^2.32^2.41^^^^~2, 3~^~11/01/2005~ -~21090~^~209~^18.17^3^^~1~^~A~^^^3^16.60^19.30^^^^~2, 3~^~04/01/2007~ -~21090~^~210~^0.61^3^^~1~^~A~^^^3^0.00^1.69^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~211~^1.78^3^^~1~^~A~^^^3^0.00^3.29^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~212~^1.98^3^^~1~^~A~^^^3^1.85^2.23^^^^~2, 3~^~11/01/2005~ -~21090~^~213~^0.24^3^^~1~^~A~^^^3^0.07^0.43^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~214~^0.48^3^^~1~^~A~^^^3^0.15^0.73^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~255~^45.78^3^^~1~^~A~^^^3^44.59^48.06^^^^~2, 3~^~11/01/2005~ -~21090~^~269~^5.24^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~21090~^~287~^0.15^1^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21090~^~303~^2.25^3^^~1~^~A~^^^3^1.47^2.78^^^^~2, 3~^~11/01/2005~ -~21090~^~309~^2.21^3^^~1~^~A~^^^3^2.05^2.40^^^^~2, 3~^~11/01/2005~ -~21090~^~323~^0.09^2^^~1~^~A~^^^2^0.08^0.10^^^^^~11/01/2005~ -~21090~^~341~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2007~ -~21090~^~342~^0.34^2^^~1~^~A~^^^2^0.20^0.48^^^^^~11/01/2005~ -~21090~^~343~^0.10^2^^~1~^~A~^^^2^0.05^0.14^^^^^~11/01/2005~ -~21090~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2007~ -~21090~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2007~ -~21090~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~02/01/2007~ -~21090~^~418~^1.31^2^^~1~^~A~^^^2^1.30^1.32^^^^^~11/01/2005~ -~21090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~21090~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21091~^~203~^13.06^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~204~^11.50^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~205~^24.97^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~207~^2.41^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~209~^16.60^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~211~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~212~^2.23^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~213~^0.23^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~214~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~255~^48.06^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~269~^5.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~303~^2.78^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~309~^2.18^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21091~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~21094~^~203~^16.24^18^1.06^~1~^~A~^^^1^15.50^18.53^2^11.65^20.83^~4~^~01/01/2013~ -~21094~^~204~^16.18^18^0.19^~1~^~A~^^^1^16.09^16.60^2^15.32^17.03^~4~^~01/01/2013~ -~21094~^~205~^17.97^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~207~^2.44^18^0.24^~1~^~A~^^^1^1.94^2.63^2^1.40^3.49^~4~^~01/01/2013~ -~21094~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~01/01/2013~ -~21094~^~211~^1.38^9^0.06^~1~^~A~^^^1^1.33^1.50^2^1.11^1.65^~4~^~01/01/2013~ -~21094~^~212~^1.86^9^0.10^~1~^~A~^^^1^1.63^1.93^2^1.40^2.31^~4~^~01/01/2013~ -~21094~^~213~^0.54^9^0.09^~1~^~A~^^^1^0.33^0.60^2^0.13^0.94^~4~^~01/01/2013~ -~21094~^~214~^0.38^9^0.01^~1~^~A~^^^1^0.37^0.40^2^0.32^0.43^~4~^~01/01/2013~ -~21094~^~255~^47.16^18^0.20^~1~^~A~^^^1^47.00^47.58^2^46.27^48.04^~4~^~01/01/2013~ -~21094~^~269~^4.16^9^0.13^~1~^~A~^^^1^3.87^4.23^2^3.56^4.75^~4~^~01/01/2013~ -~21094~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~01/01/2013~ -~21094~^~303~^2.35^18^0.19^~1~^~A~^^^1^2.24^2.75^2^1.52^3.16^~4~^~01/01/2013~ -~21094~^~309~^2.77^18^0.28^~1~^~A~^^^1^2.58^3.37^2^1.56^3.97^~4~^~01/01/2013~ -~21094~^~323~^0.35^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~418~^1.28^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21094~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~01/01/2013~ -~21096~^~203~^17.29^6^0.17^~1~^~A~^^^1^16.50^17.69^5^16.84^17.73^~2, 3~^~04/01/2013~ -~21096~^~204~^15.97^6^0.25^~1~^~A~^^^1^15.17^16.92^5^15.32^16.61^~2, 3~^~04/01/2013~ -~21096~^~205~^24.07^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~207~^2.00^6^0.02^~1~^~A~^^^1^1.91^2.08^5^1.94^2.05^~2, 3~^~04/01/2013~ -~21096~^~209~^18.25^2^^~1~^~A~^^^1^18.10^18.40^1^^^^~04/01/2013~ -~21096~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~211~^1.65^3^0.01^~1~^~A~^^^1^1.62^1.68^2^1.57^1.72^~2, 3~^~04/01/2013~ -~21096~^~212~^1.76^3^0.01^~1~^~A~^^^1^1.73^1.79^2^1.68^1.83^~2, 3~^~04/01/2013~ -~21096~^~213~^0.76^3^0.04^~1~^~A~^^^1^0.71^0.84^2^0.58^0.93^~2, 3~^~04/01/2013~ -~21096~^~214~^0.50^3^0.10^~1~^~A~^^^1^0.29^0.62^2^0.04^0.96^~2, 3~^~04/01/2013~ -~21096~^~255~^40.67^6^0.26^~1~^~A~^^^1^39.72^41.39^5^40.00^41.34^~2, 3~^~04/01/2013~ -~21096~^~269~^4.67^3^0.05^~1~^~A~^^^1^4.57^4.74^2^4.44^4.89^~2, 3~^~04/01/2013~ -~21096~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~303~^2.57^6^0.11^~1~^~A~^^^1^2.21^2.94^5^2.29^2.86^~2, 3~^~04/01/2013~ -~21096~^~309~^2.79^6^0.06^~1~^~A~^^^1^2.55^2.99^5^2.62^2.95^~2, 3~^~04/01/2013~ -~21096~^~323~^0.52^2^^~1~^~A~^^^1^0.46^0.58^1^^^^~04/01/2013~ -~21096~^~341~^0.09^2^^~1~^~A~^^^1^0.08^0.09^1^^^^~04/01/2013~ -~21096~^~342~^0.67^2^^~1~^~A~^^^1^0.61^0.73^1^^^^~04/01/2013~ -~21096~^~343~^0.17^2^^~1~^~A~^^^1^0.15^0.20^1^^^^~04/01/2013~ -~21096~^~344~^0.03^2^^~1~^~A~^^^1^0.03^0.03^1^^^~1~^~04/01/2013~ -~21096~^~345~^0.33^2^^~1~^~A~^^^1^0.29^0.38^1^^^^~04/01/2013~ -~21096~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21096~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21096~^~418~^1.00^3^0.15^~1~^~A~^^^1^0.79^1.30^2^0.33^1.66^~2, 3~^~04/01/2013~ -~21096~^~573~^0.00^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21096~^~578~^0.00^0^^~4~^~BFFN~^~21089~^^^^^^^^^~04/01/2013~ -~21102~^~203~^16.28^4^0.39^~1~^~A~^^^1^15.50^17.00^3^15.01^17.55^~2, 3~^~06/01/2015~ -~21102~^~204~^11.19^4^0.07^~1~^~A~^^^1^11.05^11.39^3^10.96^11.42^~2, 3~^~06/01/2015~ -~21102~^~205~^20.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~207~^2.70^4^0.07^~1~^~A~^^^1^2.51^2.83^3^2.46^2.92^~2, 3~^~06/01/2015~ -~21102~^~209~^16.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~210~^1.15^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~211~^0.79^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~212~^0.97^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~21102~^~214~^0.73^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~255~^48.94^4^0.39^~1~^~A~^^^1^47.91^49.73^3^47.69^50.19^~2, 3~^~06/01/2015~ -~21102~^~269~^3.64^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~21102~^~303~^1.77^3^0.21^~1~^~A~^^^1^1.36^2.07^2^0.85^2.67^~2, 3~^~06/01/2015~ -~21102~^~309~^0.61^3^2.0e-03^~1~^~A~^^^1^0.60^0.61^2^0.59^0.61^~2, 3~^~06/01/2015~ -~21102~^~323~^2.41^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~418~^0.13^3^9.0e-03^~1~^~A~^^^1^0.11^0.14^2^0.08^0.16^~2, 3~^~06/01/2015~ -~21102~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21102~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21105~^~203~^10.29^6^0.13^~1~^~A~^^^1^9.75^10.63^5^9.95^10.63^~4~^~07/01/2012~ -~21105~^~204~^12.45^6^0.70^~1~^~A~^^^1^9.66^14.50^5^10.64^14.26^~4~^~07/01/2012~ -~21105~^~205~^26.69^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~207~^2.13^6^0.02^~1~^~A~^^^1^2.04^2.21^5^2.06^2.19^~4~^~07/01/2012~ -~21105~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21105~^~211~^1.20^3^0.00^~1~^~A~^^^1^1.20^1.20^2^1.20^1.20^~4~^~07/01/2012~ -~21105~^~212~^1.47^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.32^1.61^~4~^~07/01/2012~ -~21105~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21105~^~214~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~4~^~07/01/2012~ -~21105~^~255~^48.44^6^0.54^~1~^~A~^^^1^46.35^50.03^5^47.03^49.84^~4~^~07/01/2012~ -~21105~^~269~^3.53^3^0.03^~1~^~A~^^^1^3.50^3.60^2^3.39^3.67^~4~^~07/01/2012~ -~21105~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21105~^~303~^1.50^6^0.03^~1~^~A~^^^1^1.35^1.57^5^1.39^1.59^~4~^~07/01/2012~ -~21105~^~309~^0.49^6^6.0e-03^~1~^~A~^^^1^0.48^0.52^5^0.47^0.50^~4~^~07/01/2012~ -~21105~^~323~^0.55^0^^~1~^^^^^^^^^^^~01/01/2013~ -~21105~^~418~^0.68^6^0.06^~1~^^^^^^^^^^^~01/01/2013~ -~21105~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21105~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2013~ -~21106~^~203~^11.26^6^0.11^~1~^~A~^^^1^10.81^11.56^5^10.95^11.56^~2, 3~^~09/01/1988~ -~21106~^~204~^14.64^6^0.26^~1~^~A~^^^1^14.16^15.93^5^13.95^15.33^~2, 3~^~07/01/2012~ -~21106~^~205~^26.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~207~^1.95^6^0.02^~1~^~A~^^^1^1.86^2.02^5^1.88^2.01^~2, 3~^~07/01/2012~ -~21106~^~210~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~07/01/2012~ -~21106~^~211~^1.00^3^0.00^~1~^~A~^^^1^1.00^1.00^^^^~2, 3~^~07/01/2012~ -~21106~^~212~^1.93^3^0.03^~1~^~A~^^^1^1.90^2.00^2^1.79^2.07^~2, 3~^~07/01/2012~ -~21106~^~213~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~07/01/2012~ -~21106~^~214~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~07/01/2012~ -~21106~^~255~^45.76^6^0.18^~1~^~A~^^^1^45.03^46.32^5^45.27^46.23^~2, 3~^~07/01/2012~ -~21106~^~269~^3.67^3^0.06^~1~^~A~^^^1^3.60^3.80^2^3.38^3.95^~2, 3~^~07/01/2012~ -~21106~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21106~^~303~^1.56^6^0.07^~1~^~A~^^^1^1.35^1.78^5^1.37^1.74^~2, 3~^~07/01/2012~ -~21106~^~309~^0.58^6^0.01^~1~^~A~^^^1^0.54^0.64^5^0.54^0.61^~2, 3~^~07/01/2012~ -~21106~^~323~^1.00^0^^~1~^^^^^^^^^^^~04/01/2013~ -~21106~^~418~^0.59^5^0.05^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21106~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~04/01/2013~ -~21107~^~203~^16.52^6^0.26^~1~^~A~^^^1^15.63^17.25^5^15.83^17.20^~2, 3~^~04/01/2013~ -~21107~^~204~^12.01^6^0.31^~1~^~A~^^^1^11.14^12.96^5^11.20^12.82^~2, 3~^~04/01/2013~ -~21107~^~205~^31.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~207~^1.52^6^0.01^~1~^~A~^^^1^1.47^1.54^5^1.49^1.54^~2, 3~^~04/01/2013~ -~21107~^~209~^22.87^3^0.57^~1~^~A~^^^1^22.10^24.00^2^20.37^25.35^~2, 3~^~04/01/2013~ -~21107~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~211~^2.05^3^0.01^~1~^~A~^^^1^2.03^2.06^2^2.00^2.09^~2, 3~^~04/01/2013~ -~21107~^~212~^2.27^3^0.03^~1~^~A~^^^1^2.20^2.33^2^2.10^2.42^~2, 3~^~04/01/2013~ -~21107~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~214~^0.57^3^0.17^~1~^~A~^^^1^0.34^0.90^2^-0.16^1.29^~2, 3~^~04/01/2013~ -~21107~^~255~^38.45^6^0.34^~1~^~A~^^^1^37.58^39.97^5^37.55^39.33^~2, 3~^~04/01/2013~ -~21107~^~269~^4.88^3^0.14^~1~^~A~^^^1^4.70^5.16^2^4.27^5.48^~2, 3~^~04/01/2013~ -~21107~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~303~^3.06^6^0.10^~1~^~A~^^^1^2.67^3.42^5^2.80^3.32^~2, 3~^~04/01/2013~ -~21107~^~309~^2.52^6^0.04^~1~^~A~^^^1^2.36^2.68^5^2.39^2.63^~2, 3~^~04/01/2013~ -~21107~^~323~^0.38^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~341~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~342~^0.91^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~343~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~344~^0.03^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21107~^~345~^0.61^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21107~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21107~^~418~^0.89^3^0.10^~1~^~A~^^^1^0.78^1.10^2^0.42^1.34^~2, 3~^~04/01/2013~ -~21107~^~573~^0.00^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21107~^~578~^0.00^0^^~4~^~BFZN~^~21108~^^^^^^^^^~04/01/2013~ -~21108~^~203~^13.30^12^0.11^~1~^~A~^^^1^12.62^15.19^6^13.02^13.58^~2, 3~^~07/01/2012~ -~21108~^~204~^10.18^12^0.16^~1~^~A~^^^1^9.65^11.60^6^9.77^10.59^~2, 3~^~07/01/2012~ -~21108~^~205~^29.57^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~207~^2.12^12^0.05^~1~^~A~^^^1^1.82^2.45^5^1.97^2.26^~2, 3~^~07/01/2012~ -~21108~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~211~^2.13^6^0.04^~1~^~A~^^^1^2.00^2.40^2^1.95^2.31^~2, 3~^~07/01/2012~ -~21108~^~212~^3.19^6^0.05^~1~^~A~^^^1^2.60^3.40^3^3.02^3.35^~2, 3~^~07/01/2012~ -~21108~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~214~^0.63^6^0.02^~1~^~A~^^^1^0.60^0.70^2^0.51^0.74^~2, 3~^~07/01/2012~ -~21108~^~255~^44.82^12^0.42^~1~^~A~^^^1^42.23^47.18^5^43.75^45.88^~2, 3~^~07/01/2012~ -~21108~^~269~^5.95^6^0.11^~1~^~A~^^^1^5.40^6.30^2^5.47^6.42^~2, 3~^~07/01/2012~ -~21108~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~303~^2.87^12^0.08^~1~^~A~^^^1^2.32^3.86^9^2.68^3.05^~2, 3~^~07/01/2012~ -~21108~^~309~^2.03^12^0.01^~1~^~A~^^^1^1.88^2.51^10^1.99^2.07^~2, 3~^~07/01/2012~ -~21108~^~323~^0.07^7^7.0e-03^~1~^~A~^^^2^0.04^0.10^3^0.05^0.09^~2, 3~^~01/01/2006~ -~21108~^~341~^0.62^7^0.60^~1~^~A~^^^2^0.01^1.42^2^-1.99^3.23^~2, 3~^~01/01/2006~ -~21108~^~342~^1.65^7^0.73^~1~^~A~^^^2^0.22^3.57^2^-1.48^4.79^~2, 3~^~01/01/2006~ -~21108~^~343~^0.08^7^0.02^~1~^~A~^^^2^0.07^0.09^4^0.02^0.14^~2, 3~^~01/01/2006~ -~21108~^~345~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2007~ -~21108~^~346~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2007~ -~21108~^~347~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~02/01/2007~ -~21108~^~418~^1.20^7^0.04^~1~^~A~^^^2^1.12^1.27^3^1.07^1.33^~2, 3~^~01/01/2006~ -~21108~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21108~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21121~^~203~^15.17^3^0.11^~1~^~A~^^^1^15.00^15.38^2^14.69^15.64^~2, 3~^~06/01/2015~ -~21121~^~204~^10.30^3^0.13^~1~^~A~^^^1^10.14^10.57^2^9.72^10.88^~2, 3~^~06/01/2015~ -~21121~^~205~^22.21^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~207~^2.41^3^0.03^~1~^~A~^^^1^2.34^2.45^2^2.26^2.55^~2, 3~^~06/01/2015~ -~21121~^~209~^17.65^2^^~1~^~A~^^^1^16.30^19.00^1^^^^~06/01/2015~ -~21121~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21121~^~211~^1.34^2^^~1~^~A~^^^1^1.16^1.53^1^^^^~06/01/2015~ -~21121~^~212~^1.50^2^^~1~^~A~^^^1^1.35^1.65^1^^^^~06/01/2015~ -~21121~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21121~^~214~^1.00^2^^~1~^~A~^^^1^0.90^1.10^1^^^^~06/01/2015~ -~21121~^~255~^49.91^3^0.35^~1~^~A~^^^1^49.48^50.62^2^48.37^51.44^~2, 3~^~06/01/2015~ -~21121~^~269~^3.84^2^^~1~^~A~^^^1^3.41^4.28^1^^^^~06/01/2015~ -~21121~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21121~^~303~^2.64^3^0.08^~1~^~A~^^^1^2.54^2.82^2^2.26^3.02^~2, 3~^~06/01/2015~ -~21121~^~309~^2.27^3^0.02^~1~^~A~^^^1^2.23^2.30^2^2.17^2.35^~2, 3~^~06/01/2015~ -~21121~^~323~^0.43^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~418~^0.96^3^0.07^~1~^~A~^^^1^0.83^1.10^2^0.61^1.29^~2, 3~^~06/01/2015~ -~21121~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21121~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21124~^~203~^10.52^6^0.20^~1~^~A~^^^1^9.75^11.31^5^9.98^11.05^~2, 3~^~04/01/2013~ -~21124~^~204~^10.04^6^0.15^~1~^~A~^^^1^9.70^10.71^5^9.64^10.42^~2, 3~^~04/01/2013~ -~21124~^~205~^20.43^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~207~^2.50^6^0.05^~1~^~A~^^^1^2.32^2.69^5^2.36^2.63^~2, 3~^~04/01/2013~ -~21124~^~209~^15.67^3^0.44^~1~^~A~^^^1^15.00^16.50^2^13.76^17.56^~2, 3~^~04/01/2013~ -~21124~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~211~^1.23^3^0.03^~1~^~A~^^^1^1.20^1.30^2^1.09^1.37^~2, 3~^~04/01/2013~ -~21124~^~212~^1.40^3^0.05^~1~^~A~^^^1^1.30^1.50^2^1.15^1.64^~2, 3~^~04/01/2013~ -~21124~^~213~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 2, 3~^~04/01/2013~ -~21124~^~214~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~04/01/2013~ -~21124~^~255~^56.51^6^0.40^~1~^~A~^^^1^54.81^57.72^5^55.47^57.54^~2, 3~^~04/01/2013~ -~21124~^~269~^3.18^3^0.11^~1~^~A~^^^1^2.97^3.37^2^2.68^3.68^~2, 3~^~04/01/2013~ -~21124~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~303~^1.81^6^0.02^~1~^~A~^^^1^1.75^1.89^5^1.74^1.86^~2, 3~^~04/01/2013~ -~21124~^~309~^1.05^6^0.02^~1~^~A~^^^1^1.00^1.14^5^0.99^1.10^~2, 3~^~04/01/2013~ -~21124~^~323~^0.41^2^^~1~^~A~^^^1^0.38^0.44^1^^^^~04/01/2013~ -~21124~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2013~ -~21124~^~342~^0.37^2^^~1~^~A~^^^1^0.36^0.38^1^^^^~04/01/2013~ -~21124~^~343~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~04/01/2013~ -~21124~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~04/01/2013~ -~21124~^~345~^0.24^2^^~1~^~A~^^^1^0.24^0.25^1^^^^~04/01/2013~ -~21124~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21124~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21124~^~418~^0.22^3^9.0e-03^~1~^~A~^^^1^0.20^0.23^2^0.17^0.25^~2, 3~^~04/01/2013~ -~21124~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21124~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~203~^12.17^6^0.22^~1~^~A~^^^1^11.50^12.81^5^11.58^12.74^~2, 3~^~04/01/2013~ -~21125~^~204~^2.73^6^0.18^~1~^~A~^^^1^2.39^3.64^5^2.24^3.20^~2, 3~^~04/01/2013~ -~21125~^~205~^20.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~207~^1.68^6^0.04^~1~^~A~^^^1^1.53^1.82^5^1.57^1.78^~2, 3~^~04/01/2013~ -~21125~^~209~^15.60^3^0.40^~1~^~A~^^^1^15.20^16.40^2^13.87^17.32^~2, 3~^~04/01/2013~ -~21125~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~211~^1.07^3^0.08^~1~^~A~^^^1^0.90^1.20^2^0.68^1.44^~2, 3~^~04/01/2013~ -~21125~^~212~^1.40^3^0.00^~1~^~A~^^^1^1.40^1.40^^^^~2, 3~^~04/01/2013~ -~21125~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~214~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~2, 3~^~04/01/2013~ -~21125~^~255~^63.08^6^0.61^~1~^~A~^^^1^60.67^64.52^5^61.49^64.66^~2, 3~^~04/01/2013~ -~21125~^~269~^3.00^3^0.11^~1~^~A~^^^1^2.80^3.20^2^2.50^3.49^~2, 3~^~04/01/2013~ -~21125~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~303~^2.09^6^0.04^~1~^~A~^^^1^1.99^2.30^5^1.97^2.20^~2, 3~^~04/01/2013~ -~21125~^~309~^1.50^6^0.05^~1~^~A~^^^1^1.36^1.65^5^1.36^1.63^~2, 3~^~04/01/2013~ -~21125~^~323~^0.29^2^^~1~^~A~^^^1^0.27^0.32^1^^^^~04/01/2013~ -~21125~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2013~ -~21125~^~342~^0.43^2^^~1~^~A~^^^1^0.42^0.44^1^^^^~04/01/2013~ -~21125~^~343~^0.13^2^^~1~^~A~^^^1^0.13^0.14^1^^^^~04/01/2013~ -~21125~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^1^^^~1~^~04/01/2013~ -~21125~^~345~^0.33^2^^~1~^~A~^^^1^0.32^0.34^1^^^^~04/01/2013~ -~21125~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21125~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21125~^~418~^0.44^3^0.04^~1~^~A~^^^1^0.37^0.52^2^0.25^0.63^~2, 3~^~04/01/2013~ -~21125~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21125~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~203~^12.33^6^0.39^~1~^~A~^^^1^11.19^13.94^5^11.31^13.35^~2, 3~^~04/01/2013~ -~21126~^~204~^12.04^6^0.81^~1~^~A~^^^1^10.38^15.02^5^9.95^14.11^~2, 3~^~04/01/2013~ -~21126~^~205~^15.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~207~^1.51^6^0.11^~1~^~A~^^^1^0.99^1.79^5^1.21^1.79^~2, 3~^~04/01/2013~ -~21126~^~209~^12.40^3^0.32^~1~^~A~^^^1^11.80^12.90^2^11.01^13.78^~2, 3~^~04/01/2013~ -~21126~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~211~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~04/01/2013~ -~21126~^~212~^1.10^3^0.05^~1~^~A~^^^1^1.00^1.20^2^0.85^1.34^~2, 3~^~04/01/2013~ -~21126~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~214~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~04/01/2013~ -~21126~^~255~^58.17^6^0.80^~1~^~A~^^^1^55.65^60.45^5^56.10^60.23^~2, 3~^~04/01/2013~ -~21126~^~269~^1.93^3^0.12^~1~^~A~^^^1^1.70^2.10^2^1.41^2.45^~2, 3~^~04/01/2013~ -~21126~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~303~^1.57^6^0.01^~1~^~A~^^^1^1.53^1.60^5^1.53^1.59^~2, 3~^~04/01/2013~ -~21126~^~309~^0.67^6^0.02^~1~^~A~^^^1^0.61^0.76^5^0.61^0.72^~2, 3~^~04/01/2013~ -~21126~^~323~^1.57^2^^~1~^~A~^^^1^1.55^1.58^1^^^^~04/01/2013~ -~21126~^~341~^0.17^2^^~1~^~A~^^^1^0.15^0.19^1^^^^~04/01/2013~ -~21126~^~342~^7.06^2^^~1~^~A~^^^1^6.60^7.53^1^^^^~04/01/2013~ -~21126~^~343~^2.35^2^^~1~^~A~^^^1^2.24^2.47^1^^^^~04/01/2013~ -~21126~^~344~^0.04^2^^~1~^~A~^^^1^0.03^0.04^1^^^~1~^~04/01/2013~ -~21126~^~345~^0.24^2^^~1~^~A~^^^1^0.24^0.25^1^^^^~04/01/2013~ -~21126~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21126~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21126~^~418~^1.06^3^0.33^~1~^~A~^^^1^0.39^1.40^2^-0.38^2.51^~2, 3~^~04/01/2013~ -~21126~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21126~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21127~^~203~^0.95^8^0.03^~1~^~A~^^^2^0.91^0.98^1^0.44^1.44^~2~^~05/01/2009~ -~21127~^~204~^9.91^8^1.27^~1~^~A~^^^2^8.64^11.18^1^-6.24^26.06^~2~^~05/01/2009~ -~21127~^~205~^14.89^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~207~^0.84^8^0.02^~1~^~A~^^^2^0.81^0.87^1^0.47^1.20^~2~^~05/01/2009~ -~21127~^~210~^8.96^8^1.22^~1~^~A~^^^2^7.74^10.18^1^-6.57^24.49^~2~^~05/01/2009~ -~21127~^~211~^1.69^8^0.03^~1~^~A~^^^2^1.65^1.72^1^1.28^2.08^~2~^~05/01/2009~ -~21127~^~212~^1.44^8^4.0e-03^~1~^~A~^^^2^1.44^1.45^1^1.39^1.49^~2~^~05/01/2009~ -~21127~^~213~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~05/01/2009~ -~21127~^~214~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2~^~05/01/2009~ -~21127~^~255~^73.42^8^0.57^~1~^~A~^^^2^72.84^73.99^1^66.09^80.74^~2~^~05/01/2009~ -~21127~^~269~^12.19^8^1.35^~1~^~A~^^^2^10.83^13.54^1^-4.98^29.35^~2~^~05/01/2009~ -~21127~^~287~^0.09^8^0.09^~1~^~A~^^^2^0.00^0.19^1^-1.09^1.28^~2~^~05/01/2009~ -~21127~^~303~^0.22^8^0.01^~1~^~A~^^^2^0.21^0.23^1^0.07^0.36^~2~^~05/01/2009~ -~21127~^~309~^0.14^8^0.01^~1~^~A~^^^2^0.12^0.15^1^-0.03^0.30^~2~^~05/01/2009~ -~21127~^~323~^0.54^4^0.03^~1~^~A~^^^^0.48^0.64^^^^^~05/01/2009~ -~21127~^~341~^0.04^4^3.0e-03^~1~^~A~^^^^0.03^0.04^^^^^~05/01/2009~ -~21127~^~342~^4.79^4^0.14^~1~^~A~^^^^4.59^5.23^^^^^~05/01/2009~ -~21127~^~343~^1.64^4^0.08^~1~^~A~^^^^1.49^1.87^^^^^~05/01/2009~ -~21127~^~344~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2009~ -~21127~^~345~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2009~ -~21127~^~346~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2009~ -~21127~^~347~^0.00^4^0.00^~1~^~A~^^^^0.00^0.00^^^^^~05/01/2009~ -~21127~^~418~^0.01^2^^~1~^~A~^^^2^0.00^0.03^1^^^~1~^~05/01/2009~ -~21129~^~203~^6.16^6^0.09^~1~^~A~^^^1^5.86^6.48^5^5.90^6.41^~4~^~03/01/2011~ -~21129~^~204~^13.25^6^0.60^~1~^~A~^^^1^11.10^15.10^5^11.69^14.80^~4~^~03/01/2011~ -~21129~^~205~^40.21^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~207~^3.80^6^0.08^~1~^~A~^^^1^3.46^4.02^5^3.58^4.01^~4~^~03/01/2011~ -~21129~^~209~^30.32^6^0.64^~1~^~A~^^^1^29.00^33.30^5^28.66^31.97^~4~^~03/01/2011~ -~21129~^~210~^3.17^3^0.18^~1~^~A~^^^1^2.80^3.40^2^2.36^3.96^~4~^~03/01/2011~ -~21129~^~211~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~4~^~03/01/2011~ -~21129~^~212~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~4~^~03/01/2011~ -~21129~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21129~^~214~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~4~^~03/01/2011~ -~21129~^~255~^36.58^6^0.77^~1~^~A~^^^1^34.70^38.60^5^34.59^38.57^~4~^~03/01/2011~ -~21129~^~269~^3.80^3^0.11^~1~^~A~^^^1^3.60^4.00^2^3.30^4.29^~4~^~03/01/2011~ -~21129~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21129~^~303~^2.55^6^0.26^~1~^~A~^^^1^2.08^3.59^5^1.86^3.22^~4~^~03/01/2011~ -~21129~^~309~^0.73^6^0.02^~1~^~A~^^^1^0.65^0.80^5^0.67^0.78^~4~^~03/01/2011~ -~21129~^~323~^1.06^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21129~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21130~^~203~^3.86^6^0.14^~1~^~A~^^^1^3.28^4.35^5^3.47^4.23^~2, 3~^~08/01/2012~ -~21130~^~204~^25.23^6^0.51^~1~^~A~^^^1^23.80^27.10^5^23.90^26.56^~2, 3~^~08/01/2012~ -~21130~^~205~^43.58^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~207~^2.82^6^0.08^~1~^~A~^^^1^2.56^3.05^5^2.60^3.03^~2, 3~^~08/01/2012~ -~21130~^~209~^26.50^3^1.85^~1~^~A~^^^1^23.40^29.80^2^18.53^34.46^~2, 3~^~08/01/2012~ -~21130~^~210~^3.56^3^0.26^~1~^~A~^^^1^3.05^3.92^2^2.43^4.68^~2, 3~^~08/01/2012~ -~21130~^~211~^0.44^3^0.01^~1~^~A~^^^1^0.42^0.47^2^0.38^0.50^~2, 3~^~08/01/2012~ -~21130~^~212~^0.98^3^0.06^~1~^~A~^^^1^0.89^1.10^2^0.71^1.24^~2, 3~^~08/01/2012~ -~21130~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~214~^0.45^3^0.05^~1~^~A~^^^1^0.34^0.53^2^0.20^0.69^~2, 3~^~08/01/2012~ -~21130~^~255~^24.52^6^0.99^~1~^~A~^^^1^22.10^28.30^5^21.95^27.07^~2, 3~^~08/01/2012~ -~21130~^~269~^5.43^3^0.25^~1~^~A~^^^1^4.94^5.80^2^4.33^6.53^~2, 3~^~08/01/2012~ -~21130~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~303~^0.78^6^0.02^~1~^~A~^^^1^0.72^0.89^5^0.70^0.84^~2, 3~^~08/01/2012~ -~21130~^~309~^0.51^6^0.01^~1~^~A~^^^1^0.44^0.56^5^0.47^0.55^~2, 3~^~08/01/2012~ -~21130~^~323~^4.92^3^0.23^~1~^~A~^^^1^4.46^5.21^2^3.92^5.91^~2, 3~^~08/01/2012~ -~21130~^~341~^0.18^3^0.02^~1~^~A~^^^1^0.14^0.23^2^0.05^0.29^~2, 3~^~08/01/2012~ -~21130~^~342~^11.02^3^0.69^~1~^~A~^^^1^9.64^11.73^2^8.04^14.00^~2, 3~^~08/01/2012~ -~21130~^~343~^1.22^3^0.11^~1~^~A~^^^1^1.00^1.41^2^0.70^1.72^~2, 3~^~08/01/2012~ -~21130~^~344~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.07^0.22^~2, 3~^~08/01/2012~ -~21130~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~346~^0.10^3^0.01^~1~^~A~^^^1^0.08^0.12^2^0.05^0.15^~2, 3~^~08/01/2012~ -~21130~^~347~^0.06^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.18^0.30^~1, 2, 3~^~08/01/2012~ -~21130~^~418~^0.00^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~573~^0.00^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21130~^~578~^0.00^0^^~4~^~BFNN~^~11296~^^^^^^^^^~04/01/2013~ -~21138~^~203~^3.43^18^0.14^~1~^~A~^^^1^2.63^4.20^5^3.05^3.80^~2, 3~^~08/01/2012~ -~21138~^~204~^14.73^18^0.29^~1~^~A~^^^1^11.90^16.60^6^13.99^15.45^~2, 3~^~08/01/2012~ -~21138~^~205~^41.44^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~207~^1.85^18^0.03^~1~^~A~^^^1^1.44^2.04^7^1.77^1.92^~2, 3~^~08/01/2012~ -~21138~^~255~^38.55^18^0.49^~1~^~A~^^^1^34.60^45.20^6^37.31^39.79^~2, 3~^~08/01/2012~ -~21138~^~269~^0.30^9^0.05^~1~^~A~^^^1^0.18^0.83^5^0.16^0.42^~2, 3~^~08/01/2012~ -~21138~^~303~^0.81^18^0.01^~1~^~A~^^^1^0.63^1.07^9^0.76^0.85^~2, 3~^~08/01/2012~ -~21138~^~309~^0.50^18^0.03^~1~^~A~^^^1^0.39^0.73^6^0.41^0.58^~2, 3~^~08/01/2012~ -~21138~^~323~^1.67^9^0.18^~1~^~A~^^^1^0.91^2.55^2^0.93^2.40^~2, 3~^~08/01/2012~ -~21138~^~341~^0.05^9^5.0e-03^~1~^~A~^^^1^0.02^0.12^2^0.03^0.06^~2, 3~^~08/01/2012~ -~21138~^~342~^3.63^9^0.57^~1~^~A~^^^1^1.03^8.40^2^1.37^5.88^~2, 3~^~08/01/2012~ -~21138~^~343~^0.90^9^0.07^~1~^~A~^^^1^0.28^2.68^4^0.69^1.11^~2, 3~^~08/01/2012~ -~21138~^~344~^0.02^9^5.0e-03^~1~^~A~^^^1^0.00^0.10^3^6.0e-03^0.04^~1, 2, 3~^~08/01/2012~ -~21138~^~345~^0.09^9^0.08^~1~^~A~^^^1^0.00^0.40^2^-0.29^0.46^~1, 2, 3~^~08/01/2012~ -~21138~^~346~^0.03^9^0.01^~1~^~A~^^^1^0.00^0.12^3^-2.0e-03^0.06^~1, 2, 3~^~08/01/2012~ -~21138~^~347~^0.03^9^0.02^~1~^~A~^^^1^0.00^0.28^4^-0.03^0.09^~1, 2, 3~^~08/01/2012~ -~21138~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21138~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21138~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~21139~^~203~^1.65^6^0.09^~1~^~A~^^^1^1.42^2.02^5^1.42^1.88^~2, 3~^~03/01/2011~ -~21139~^~204~^2.82^6^0.22^~1~^~A~^^^1^1.80^3.40^5^2.23^3.40^~2, 3~^~03/01/2011~ -~21139~^~205~^14.65^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~207~^1.26^6^0.07^~1~^~A~^^^1^1.08^1.47^5^1.08^1.44^~2, 3~^~03/01/2011~ -~21139~^~209~^12.10^6^0.27^~1~^~A~^^^1^11.50^13.40^5^11.39^12.80^~2, 3~^~03/01/2011~ -~21139~^~210~^0.10^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21139~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21139~^~255~^79.62^6^0.29^~1~^~A~^^^1^78.40^80.50^5^78.86^80.37^~2, 3~^~03/01/2011~ -~21139~^~269~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21139~^~303~^0.31^6^0.01^~1~^~A~^^^1^0.27^0.35^5^0.28^0.34^~2, 3~^~03/01/2011~ -~21139~^~309~^0.22^6^0.01^~1~^~A~^^^1^0.18^0.25^5^0.18^0.25^~2, 3~^~03/01/2011~ -~21139~^~323~^0.42^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~418~^0.07^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21139~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21141~^~203~^3.19^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~204~^8.74^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~205~^19.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~207~^0.91^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~209~^1.00^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~210~^7.28^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~213~^4.26^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~255~^68.13^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~269~^11.67^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~287~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~303~^0.42^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~309~^0.67^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~323~^0.32^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~418~^0.36^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21142~^~203~^7.08^12^0.10^~1~^~A~^^^1^5.62^7.94^6^6.82^7.33^~2, 3~^~04/01/2014~ -~21142~^~204~^18.92^12^0.36^~1~^~A~^^^1^15.54^25.36^7^18.05^19.77^~2, 3~^~04/01/2014~ -~21142~^~205~^42.82^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~207~^3.31^12^0.03^~1~^~A~^^^1^2.77^3.67^5^3.21^3.40^~2, 3~^~04/01/2014~ -~21142~^~209~^37.50^6^0.26^~1~^~A~^^^1^35.10^38.30^4^36.75^38.25^~2, 3~^~04/01/2014~ -~21142~^~210~^1.55^6^0.04^~1~^~A~^^^1^0.68^1.98^2^1.36^1.73^~2, 3~^~04/01/2014~ -~21142~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~213~^1.81^6^0.04^~1~^~A~^^^1^1.55^2.22^2^1.63^1.98^~2, 3~^~04/01/2014~ -~21142~^~214~^0.52^6^0.02^~1~^~A~^^^1^0.44^0.61^3^0.42^0.60^~2, 3~^~04/01/2014~ -~21142~^~255~^27.88^12^0.42^~1~^~A~^^^1^25.47^30.45^6^26.80^28.94^~2, 3~^~04/01/2014~ -~21142~^~269~^3.88^6^0.07^~1~^~A~^^^1^3.41^4.15^2^3.55^4.19^~2, 3~^~04/01/2014~ -~21142~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~303~^2.76^12^0.02^~1~^~A~^^^1^2.30^3.01^9^2.69^2.82^~2, 3~^~04/01/2014~ -~21142~^~309~^0.50^12^5.0e-03^~1~^~A~^^^1^0.47^0.51^6^0.48^0.51^~2, 3~^~04/01/2014~ -~21142~^~323~^0.47^6^0.06^~1~^~A~^^^1^0.16^1.16^3^0.25^0.68^~2, 3~^~04/01/2014~ -~21142~^~341~^0.05^6^0.01^~1~^~A~^^^1^0.00^0.09^2^-0.01^0.12^~1, 2, 3~^~04/01/2014~ -~21142~^~342~^1.55^6^0.42^~1~^~A~^^^1^0.06^3.90^3^8.0e-03^3.08^~2, 3~^~04/01/2014~ -~21142~^~343~^0.51^6^0.14^~1~^~A~^^^1^0.00^1.35^3^4.0e-03^1.02^~1, 2, 3~^~04/01/2014~ -~21142~^~344~^0.07^6^5.0e-03^~1~^~A~^^^1^0.00^0.28^2^0.05^0.09^~1, 2, 3~^~04/01/2014~ -~21142~^~345~^0.13^6^0.03^~1~^~A~^^^1^0.00^0.27^2^-0.01^0.27^~1, 2, 3~^~04/01/2014~ -~21142~^~346~^0.16^6^6.0e-03^~1~^~A~^^^1^0.00^0.59^2^0.12^0.18^~1, 2, 3~^~04/01/2014~ -~21142~^~347~^0.02^6^2.0e-03^~1~^~A~^^^1^0.00^0.07^2^7.0e-03^0.02^~1, 2, 3~^~04/01/2014~ -~21142~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~21142~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21142~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~21143~^~203~^21.40^4^0.76^~1~^~A~^^^1^19.90^23.40^3^18.97^23.82^~2, 3~^~05/01/2014~ -~21143~^~204~^11.20^4^0.47^~1~^~A~^^^1^10.10^12.40^3^9.69^12.70^~2, 3~^~05/01/2014~ -~21143~^~205~^10.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~207~^2.66^4^0.09^~1~^~A~^^^1^2.45^2.88^3^2.35^2.97^~2, 3~^~05/01/2014~ -~21143~^~209~^9.50^3^0.68^~1~^~A~^^^1^8.50^10.80^2^6.57^12.42^~2, 3~^~05/01/2014~ -~21143~^~210~^1.24^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21143~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21143~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21143~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21143~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21143~^~255~^54.35^4^0.48^~1~^~A~^^^1^53.20^55.20^3^52.81^55.89^~2, 3~^~05/01/2014~ -~21143~^~269~^1.24^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21143~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~21143~^~303~^0.97^3^5.0e-03^~1~^~A~^^^1^0.95^0.97^2^0.94^0.98^~2, 3~^~05/01/2014~ -~21143~^~309~^0.72^4^0.02^~1~^~A~^^^1^0.68^0.79^3^0.64^0.80^~2, 3~^~05/01/2014~ -~21143~^~323~^1.56^3^0.08^~1~^~A~^^^1^1.45^1.73^2^1.19^1.93^~2, 3~^~05/01/2014~ -~21143~^~341~^0.09^3^8.0e-03^~1~^~A~^^^1^0.08^0.10^2^0.05^0.12^~2, 3~^~05/01/2014~ -~21143~^~342~^0.92^3^0.06^~1~^~A~^^^1^0.83^1.04^2^0.65^1.18^~2, 3~^~05/01/2014~ -~21143~^~343~^0.07^3^9.0e-03^~1~^~A~^^^1^0.05^0.08^2^0.02^0.10^~2, 3~^~05/01/2014~ -~21143~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~418~^0.19^3^0.03^~1~^~A~^^^1^0.15^0.25^2^0.06^0.32^~2, 3~^~05/01/2014~ -~21144~^~203~^3.00^4^0.11^~1~^~A~^^^1^2.75^3.31^3^2.63^3.37^~2, 3~^~05/01/2014~ -~21144~^~204~^18.50^4^0.61^~1~^~A~^^^1^16.80^19.60^3^16.56^20.44^~2, 3~^~05/01/2014~ -~21144~^~205~^30.51^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~207~^2.16^4^0.16^~1~^~A~^^^1^1.80^2.58^3^1.63^2.68^~2, 3~^~05/01/2014~ -~21144~^~209~^28.03^3^1.04^~1~^~A~^^^1^26.00^29.50^2^23.51^32.54^~2, 3~^~05/01/2014~ -~21144~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~211~^0.33^3^0.01^~1~^~A~^^^1^0.30^0.36^2^0.25^0.40^~2, 3~^~05/01/2014~ -~21144~^~212~^0.21^3^0.02^~1~^~A~^^^1^0.18^0.26^2^0.10^0.31^~1, 2, 3~^~05/01/2014~ -~21144~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~255~^45.82^4^0.90^~1~^~A~^^^1^44.20^47.80^3^42.96^48.69^~2, 3~^~05/01/2014~ -~21144~^~269~^0.54^3^0.04^~1~^~A~^^^1^0.48^0.62^2^0.36^0.71^~2, 3~^~05/01/2014~ -~21144~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~303~^0.65^4^0.02^~1~^~A~^^^1^0.60^0.70^3^0.58^0.72^~2, 3~^~05/01/2014~ -~21144~^~309~^0.45^4^0.04^~1~^~A~^^^1^0.37^0.54^3^0.32^0.57^~2, 3~^~05/01/2014~ -~21144~^~323~^3.00^3^0.51^~1~^~A~^^^1^1.98^3.68^2^0.77^5.21^~2, 3~^~05/01/2014~ -~21144~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~342~^4.19^3^0.91^~1~^~A~^^^1^2.38^5.31^2^0.25^8.11^~2, 3~^~05/01/2014~ -~21144~^~343~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.04^0.15^~2, 3~^~05/01/2014~ -~21144~^~344~^0.41^3^0.05^~1~^~A~^^^1^0.33^0.52^2^0.15^0.66^~2, 3~^~05/01/2014~ -~21144~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~346~^0.34^3^0.03^~1~^~A~^^^1^0.27^0.40^2^0.17^0.49^~2, 3~^~05/01/2014~ -~21144~^~347~^0.09^3^0.01^~1~^~A~^^^1^0.06^0.12^2^3.0e-03^0.16^~2, 3~^~05/01/2014~ -~21145~^~203~^13.89^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~204~^8.81^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~205~^27.10^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~207~^2.18^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~211~^1.34^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~212~^0.95^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~213~^0.59^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~214~^1.89^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~255~^48.02^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~269~^4.77^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~303~^2.50^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~309~^1.74^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~418~^2.00^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~203~^13.63^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~204~^9.33^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~205~^27.35^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~207~^2.12^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~211~^0.80^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~212~^1.04^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~213~^0.76^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~214~^1.23^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~255~^47.57^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~269~^3.83^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~303~^2.40^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~309~^1.83^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~418~^1.13^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~203~^12.08^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~204~^7.51^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~205~^29.27^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~207~^2.31^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~211~^2.04^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~212~^2.10^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~213~^0.81^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~214~^1.81^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~255~^48.83^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~269~^6.76^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~303~^2.40^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~309~^1.87^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~418~^1.42^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~203~^12.14^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~204~^8.19^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~205~^28.84^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~207~^2.36^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~211~^1.92^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~212~^2.07^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~213~^0.67^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~214~^2.58^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~255~^48.47^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~269~^7.24^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~303~^2.60^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~309~^2.38^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~418~^2.05^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~203~^10.39^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~204~^10.04^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~205~^26.99^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~207~^2.38^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~211~^1.08^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~212~^1.32^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~213~^0.75^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~214~^2.72^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~255~^50.20^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~269~^5.87^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~303~^2.10^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~309~^1.94^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~418~^1.03^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21150~^~203~^10.91^6^0.18^~1~^~A~^^^1^10.25^11.44^5^10.42^11.39^~2, 3~^~04/01/2015~ -~21150~^~204~^2.37^6^0.07^~1~^~A~^^^1^2.22^2.66^5^2.18^2.56^~2, 3~^~04/01/2015~ -~21150~^~205~^22.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~207~^1.78^6^0.03^~1~^~A~^^^1^1.68^1.93^5^1.69^1.86^~2, 3~^~04/01/2015~ -~21150~^~209~^13.77^3^0.38^~1~^~A~^^^1^13.00^14.20^2^12.11^15.42^~2, 3~^~04/01/2015~ -~21150~^~210~^0.79^3^0.07^~1~^~A~^^^1^0.64^0.88^2^0.46^1.11^~2, 3~^~04/01/2015~ -~21150~^~211~^2.23^3^0.14^~1~^~A~^^^1^2.04^2.52^2^1.58^2.86^~2, 3~^~04/01/2015~ -~21150~^~212~^2.39^3^0.12^~1~^~A~^^^1^2.20^2.63^2^1.85^2.93^~2, 3~^~04/01/2015~ -~21150~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~214~^0.65^3^0.06^~1~^~A~^^^1^0.52^0.73^2^0.37^0.92^~2, 3~^~04/01/2015~ -~21150~^~255~^62.40^6^0.22^~1~^~A~^^^1^61.80^63.11^5^61.82^62.99^~2, 3~^~04/01/2015~ -~21150~^~269~^6.06^3^0.34^~1~^~A~^^^1^5.57^6.73^2^4.56^7.55^~2, 3~^~04/01/2015~ -~21150~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~303~^1.52^6^0.03^~1~^~A~^^^1^1.44^1.63^5^1.43^1.60^~2, 3~^~04/01/2015~ -~21150~^~309~^0.64^6^7.0e-03^~1~^~A~^^^1^0.61^0.66^5^0.62^0.65^~2, 3~^~04/01/2015~ -~21150~^~323~^0.38^2^^~1~^~A~^^^1^0.37^0.39^1^^^^~04/01/2015~ -~21150~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~04/01/2015~ -~21150~^~342~^0.46^2^^~1~^~A~^^^1^0.46^0.46^1^^^^~04/01/2015~ -~21150~^~343~^0.13^2^^~1~^~A~^^^1^0.10^0.15^1^^^^~04/01/2015~ -~21150~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~04/01/2015~ -~21150~^~345~^0.32^2^^~1~^~A~^^^1^0.29^0.35^1^^^^~04/01/2015~ -~21150~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21150~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21150~^~418~^0.11^3^0.01^~1~^~A~^^^1^0.09^0.13^2^0.05^0.15^~2, 3~^~04/01/2015~ -~21151~^~203~^10.91^6^0.18^~1~^~A~^^^1^10.25^11.44^5^10.42^11.39^~2, 3~^~05/01/2015~ -~21151~^~204~^2.37^6^0.07^~1~^~A~^^^1^2.22^2.66^5^2.18^2.56^~2, 3~^~05/01/2015~ -~21151~^~205~^22.54^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~207~^1.78^6^0.03^~1~^~A~^^^1^1.68^1.93^5^1.69^1.86^~2, 3~^~05/01/2015~ -~21151~^~209~^13.77^3^0.38^~1~^~A~^^^1^13.00^14.20^2^12.11^15.42^~2, 3~^~05/01/2015~ -~21151~^~210~^0.79^3^0.07^~1~^~A~^^^1^0.64^0.88^2^0.46^1.11^~2, 3~^~05/01/2015~ -~21151~^~211~^2.23^3^0.14^~1~^~A~^^^1^2.04^2.52^2^1.58^2.86^~2, 3~^~05/01/2015~ -~21151~^~212~^2.39^3^0.12^~1~^~A~^^^1^2.20^2.63^2^1.85^2.93^~2, 3~^~05/01/2015~ -~21151~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~214~^0.65^3^0.06^~1~^~A~^^^1^0.52^0.73^2^0.37^0.92^~2, 3~^~05/01/2015~ -~21151~^~255~^62.40^6^0.22^~1~^~A~^^^1^61.80^63.11^5^61.82^62.99^~2, 3~^~05/01/2015~ -~21151~^~269~^6.06^3^0.34^~1~^~A~^^^1^5.57^6.73^2^4.56^7.55^~2, 3~^~05/01/2015~ -~21151~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~303~^1.52^6^0.03^~1~^~A~^^^1^1.44^1.63^5^1.43^1.60^~2, 3~^~05/01/2015~ -~21151~^~309~^0.64^6^7.0e-03^~1~^~A~^^^1^0.61^0.66^5^0.62^0.65^~2, 3~^~05/01/2015~ -~21151~^~323~^0.38^2^^~1~^~A~^^^1^0.37^0.39^1^^^^~05/01/2015~ -~21151~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~05/01/2015~ -~21151~^~342~^0.46^2^^~1~^~A~^^^1^0.46^0.46^1^^^^~05/01/2015~ -~21151~^~343~^0.13^2^^~1~^~A~^^^1^0.10^0.15^1^^^^~05/01/2015~ -~21151~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~05/01/2015~ -~21151~^~345~^0.32^2^^~1~^~A~^^^1^0.29^0.35^1^^^^~05/01/2015~ -~21151~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21151~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21151~^~418~^0.11^3^0.01^~1~^~A~^^^1^0.09^0.13^2^0.05^0.15^~2, 3~^~05/01/2015~ -~21151~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21151~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21152~^~203~^10.66^6^0.16^~1~^~A~^^^1^10.00^11.06^5^10.23^11.08^~2, 3~^~04/01/2015~ -~21152~^~204~^2.42^6^0.05^~1~^~A~^^^1^2.21^2.55^5^2.29^2.55^~2, 3~^~04/01/2015~ -~21152~^~205~^20.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~207~^1.86^6^0.04^~1~^~A~^^^1^1.72^2.00^5^1.74^1.98^~2, 3~^~04/01/2015~ -~21152~^~209~^15.50^3^0.26^~1~^~A~^^^1^15.10^16.00^2^14.36^16.63^~2, 3~^~04/01/2015~ -~21152~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~211~^1.32^3^0.09^~1~^~A~^^^1^1.16^1.47^2^0.93^1.70^~2, 3~^~04/01/2015~ -~21152~^~212~^1.26^3^0.06^~1~^~A~^^^1^1.13^1.33^2^0.98^1.53^~2, 3~^~04/01/2015~ -~21152~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~214~^0.61^3^0.02^~1~^~A~^^^1^0.56^0.66^2^0.48^0.73^~2, 3~^~04/01/2015~ -~21152~^~255~^64.70^6^0.39^~1~^~A~^^^1^63.17^65.72^5^63.68^65.70^~2, 3~^~04/01/2015~ -~21152~^~269~^3.19^3^0.14^~1~^~A~^^^1^2.91^3.36^2^2.58^3.79^~2, 3~^~04/01/2015~ -~21152~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~303~^1.93^6^0.05^~1~^~A~^^^1^1.73^2.09^5^1.80^2.06^~2, 3~^~04/01/2015~ -~21152~^~309~^1.18^6^0.03^~1~^~A~^^^1^1.06^1.28^5^1.08^1.26^~2, 3~^~04/01/2015~ -~21152~^~323~^0.24^2^^~1~^~A~^^^1^0.21^0.26^1^^^^~04/01/2015~ -~21152~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~04/01/2015~ -~21152~^~342~^0.42^2^^~1~^~A~^^^1^0.42^0.43^1^^^^~04/01/2015~ -~21152~^~343~^0.12^2^^~1~^~A~^^^1^0.10^0.14^1^^^^~04/01/2015~ -~21152~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21152~^~345~^0.29^2^^~1~^~A~^^^1^0.29^0.29^1^^^^~04/01/2015~ -~21152~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21152~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21152~^~418~^0.20^3^0.07^~1~^~A~^^^1^0.09^0.34^2^-0.11^0.51^~2, 3~^~04/01/2015~ -~21153~^~203~^10.66^6^0.16^~1~^~A~^^^1^10.00^11.06^5^10.23^11.08^~2, 3~^~05/01/2015~ -~21153~^~204~^2.42^6^0.05^~1~^~A~^^^1^2.21^2.55^5^2.29^2.55^~2, 3~^~05/01/2015~ -~21153~^~205~^20.36^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~207~^1.86^6^0.04^~1~^~A~^^^1^1.72^2.00^5^1.74^1.98^~2, 3~^~05/01/2015~ -~21153~^~209~^15.50^3^0.26^~1~^~A~^^^1^15.10^16.00^2^14.36^16.63^~2, 3~^~05/01/2015~ -~21153~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~211~^1.32^3^0.09^~1~^~A~^^^1^1.16^1.47^2^0.93^1.70^~2, 3~^~05/01/2015~ -~21153~^~212~^1.26^3^0.06^~1~^~A~^^^1^1.13^1.33^2^0.98^1.53^~2, 3~^~05/01/2015~ -~21153~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~214~^0.61^3^0.02^~1~^~A~^^^1^0.56^0.66^2^0.48^0.73^~2, 3~^~05/01/2015~ -~21153~^~255~^64.70^6^0.39^~1~^~A~^^^1^63.17^65.72^5^63.68^65.70^~2, 3~^~05/01/2015~ -~21153~^~269~^3.19^3^0.14^~1~^~A~^^^1^2.91^3.36^2^2.58^3.79^~2, 3~^~05/01/2015~ -~21153~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~303~^1.93^6^0.05^~1~^~A~^^^1^1.73^2.09^5^1.80^2.06^~2, 3~^~05/01/2015~ -~21153~^~309~^1.18^6^0.03^~1~^~A~^^^1^1.06^1.28^5^1.08^1.26^~2, 3~^~05/01/2015~ -~21153~^~323~^0.24^2^^~1~^~A~^^^1^0.21^0.26^1^^^^~05/01/2015~ -~21153~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~05/01/2015~ -~21153~^~342~^0.42^2^^~1~^~A~^^^1^0.42^0.43^1^^^^~05/01/2015~ -~21153~^~343~^0.12^2^^~1~^~A~^^^1^0.10^0.14^1^^^^~05/01/2015~ -~21153~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21153~^~345~^0.29^2^^~1~^~A~^^^1^0.29^0.29^1^^^^~05/01/2015~ -~21153~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21153~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21153~^~418~^0.20^3^0.07^~1~^~A~^^^1^0.09^0.34^2^-0.11^0.51^~2, 3~^~05/01/2015~ -~21153~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21153~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~203~^10.84^6^0.12^~1~^~A~^^^1^10.50^11.25^5^10.52^11.16^~2, 3~^~05/01/2015~ -~21154~^~204~^3.15^6^0.15^~1~^~A~^^^1^2.51^3.57^5^2.75^3.55^~2, 3~^~05/01/2015~ -~21154~^~205~^21.35^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~207~^1.50^6^0.04^~1~^~A~^^^1^1.39^1.66^5^1.39^1.61^~2, 3~^~05/01/2015~ -~21154~^~209~^15.97^3^0.51^~1~^~A~^^^1^15.40^17.00^2^13.74^18.19^~2, 3~^~05/01/2015~ -~21154~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~211~^0.97^3^0.04^~1~^~A~^^^1^0.91^1.06^2^0.76^1.16^~2, 3~^~05/01/2015~ -~21154~^~212~^1.30^3^0.04^~1~^~A~^^^1^1.23^1.39^2^1.10^1.50^~2, 3~^~05/01/2015~ -~21154~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~214~^0.72^3^0.05^~1~^~A~^^^1^0.62^0.78^2^0.50^0.93^~2, 3~^~05/01/2015~ -~21154~^~255~^63.15^6^0.42^~1~^~A~^^^1^61.37^64.14^5^62.04^64.25^~2, 3~^~05/01/2015~ -~21154~^~269~^2.99^3^0.04^~1~^~A~^^^1^2.90^3.07^2^2.77^3.20^~2, 3~^~05/01/2015~ -~21154~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~303~^1.72^6^0.10^~1~^~A~^^^1^1.40^2.06^5^1.45^1.98^~2, 3~^~05/01/2015~ -~21154~^~309~^0.66^6^0.01^~1~^~A~^^^1^0.63^0.69^5^0.63^0.68^~2, 3~^~05/01/2015~ -~21154~^~323~^0.42^2^^~1~^~A~^^^1^0.31^0.52^1^^^^~05/01/2015~ -~21154~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^^~05/01/2015~ -~21154~^~342~^0.39^2^^~1~^~A~^^^1^0.34^0.45^1^^^^~05/01/2015~ -~21154~^~343~^0.13^2^^~1~^~A~^^^1^0.09^0.17^1^^^^~05/01/2015~ -~21154~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~05/01/2015~ -~21154~^~345~^0.31^2^^~1~^~A~^^^1^0.28^0.34^1^^^^~05/01/2015~ -~21154~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21154~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21154~^~418~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~2, 3~^~05/01/2015~ -~21154~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21154~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~203~^9.12^6^0.08^~1~^~A~^^^1^8.87^9.38^5^8.91^9.33^~2, 3~^~05/01/2015~ -~21155~^~204~^2.31^6^0.11^~1~^~A~^^^1^1.97^2.60^5^2.01^2.60^~2, 3~^~05/01/2015~ -~21155~^~205~^22.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~207~^1.82^6^0.03^~1~^~A~^^^1^1.74^1.94^5^1.74^1.90^~2, 3~^~05/01/2015~ -~21155~^~209~^16.70^3^0.20^~1~^~A~^^^1^16.40^17.10^2^15.80^17.59^~2, 3~^~05/01/2015~ -~21155~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~211~^1.18^3^0.10^~1~^~A~^^^1^0.99^1.33^2^0.74^1.61^~2, 3~^~05/01/2015~ -~21155~^~212~^1.28^3^0.08^~1~^~A~^^^1^1.13^1.42^2^0.91^1.64^~2, 3~^~05/01/2015~ -~21155~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~214~^0.63^3^0.04^~1~^~A~^^^1^0.54^0.69^2^0.43^0.83^~2, 3~^~05/01/2015~ -~21155~^~255~^64.33^6^0.32^~1~^~A~^^^1^63.29^65.27^5^63.48^65.17^~2, 3~^~05/01/2015~ -~21155~^~269~^3.09^3^0.15^~1~^~A~^^^1^2.79^3.29^2^2.43^3.75^~2, 3~^~05/01/2015~ -~21155~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~303~^1.84^6^0.04^~1~^~A~^^^1^1.72^1.97^5^1.72^1.96^~2, 3~^~05/01/2015~ -~21155~^~309~^0.66^6^0.01^~1~^~A~^^^1^0.61^0.72^5^0.62^0.70^~2, 3~^~05/01/2015~ -~21155~^~323~^0.28^2^^~1~^~A~^^^1^0.28^0.29^1^^^^~05/01/2015~ -~21155~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~05/01/2015~ -~21155~^~342~^0.56^2^^~1~^~A~^^^1^0.48^0.63^1^^^^~05/01/2015~ -~21155~^~343~^0.19^2^^~1~^~A~^^^1^0.17^0.21^1^^^^~05/01/2015~ -~21155~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~05/01/2015~ -~21155~^~345~^0.37^2^^~1~^~A~^^^1^0.35^0.38^1^^^^~05/01/2015~ -~21155~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21155~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21155~^~418~^0.12^3^6.0e-03^~1~^~A~^^^1^0.11^0.13^2^0.09^0.14^~2, 3~^~05/01/2015~ -~21155~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21155~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~203~^9.12^6^0.27^~1~^~A~^^^1^8.25^10.19^5^8.40^9.84^~2, 3~^~05/01/2015~ -~21156~^~204~^2.53^6^0.06^~1~^~A~^^^1^2.29^2.74^5^2.35^2.70^~2, 3~^~05/01/2015~ -~21156~^~205~^22.91^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~207~^2.17^6^0.06^~1~^~A~^^^1^1.97^2.38^5^2.01^2.32^~2, 3~^~05/01/2015~ -~21156~^~209~^17.33^3^0.12^~1~^~A~^^^1^17.10^17.50^2^16.81^17.85^~2, 3~^~05/01/2015~ -~21156~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~211~^1.52^3^0.01^~1~^~A~^^^1^1.50^1.53^2^1.47^1.56^~2, 3~^~05/01/2015~ -~21156~^~212~^1.32^3^0.07^~1~^~A~^^^1^1.22^1.47^2^0.99^1.64^~2, 3~^~05/01/2015~ -~21156~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~214~^0.69^3^0.04^~1~^~A~^^^1^0.63^0.78^2^0.50^0.88^~2, 3~^~05/01/2015~ -~21156~^~255~^63.26^6^0.32^~1~^~A~^^^1^62.17^64.34^5^62.42^64.09^~2, 3~^~05/01/2015~ -~21156~^~269~^3.54^3^0.04^~1~^~A~^^^1^3.48^3.63^2^3.33^3.73^~2, 3~^~05/01/2015~ -~21156~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~303~^1.78^6^0.05^~1~^~A~^^^1^1.66^2.04^5^1.63^1.92^~2, 3~^~05/01/2015~ -~21156~^~309~^0.88^6^0.02^~1~^~A~^^^1^0.82^0.98^5^0.81^0.94^~2, 3~^~05/01/2015~ -~21156~^~323~^0.29^2^^~1~^~A~^^^1^0.27^0.30^1^^^^~05/01/2015~ -~21156~^~341~^0.08^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~05/01/2015~ -~21156~^~342~^0.46^2^^~1~^~A~^^^1^0.45^0.47^1^^^^~05/01/2015~ -~21156~^~343~^0.13^2^^~1~^~A~^^^1^0.12^0.14^1^^^^~05/01/2015~ -~21156~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~05/01/2015~ -~21156~^~345~^0.36^2^^~1~^~A~^^^1^0.35^0.38^1^^^^~05/01/2015~ -~21156~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21156~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21156~^~418~^0.12^3^0.02^~1~^~A~^^^1^0.09^0.17^2^0.01^0.22^~2, 3~^~05/01/2015~ -~21156~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21156~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21157~^~203~^9.77^6^0.25^~1~^~A~^^^1^9.06^10.75^5^9.11^10.42^~2, 3~^~04/01/2015~ -~21157~^~204~^8.45^6^0.23^~1~^~A~^^^1^7.94^9.43^5^7.84^9.05^~2, 3~^~04/01/2015~ -~21157~^~205~^26.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~207~^2.17^6^0.06^~1~^~A~^^^1^1.95^2.37^5^2.01^2.33^~2, 3~^~04/01/2015~ -~21157~^~209~^16.43^3^1.44^~1~^~A~^^^1^14.70^19.30^2^10.22^22.64^~2, 3~^~04/01/2015~ -~21157~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~211~^1.93^3^0.12^~1~^~A~^^^1^1.68^2.09^2^1.38^2.47^~2, 3~^~04/01/2015~ -~21157~^~212~^2.09^3^0.19^~1~^~A~^^^1^1.83^2.46^2^1.27^2.90^~2, 3~^~04/01/2015~ -~21157~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~214~^0.96^3^0.05^~1~^~A~^^^1^0.87^1.04^2^0.74^1.17^~2, 3~^~04/01/2015~ -~21157~^~255~^53.59^6^0.84^~1~^~A~^^^1^50.31^55.59^5^51.41^55.76^~2, 3~^~04/01/2015~ -~21157~^~269~^4.98^3^0.28^~1~^~A~^^^1^4.55^5.53^2^3.74^6.22^~2, 3~^~04/01/2015~ -~21157~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~303~^2.32^6^0.08^~1~^~A~^^^1^2.05^2.65^5^2.10^2.54^~2, 3~^~04/01/2015~ -~21157~^~309~^1.19^6^0.03^~1~^~A~^^^1^1.08^1.28^5^1.10^1.27^~2, 3~^~04/01/2015~ -~21157~^~323~^0.79^2^^~1~^~A~^^^1^0.67^0.92^1^^^^~04/01/2015~ -~21157~^~341~^0.08^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~04/01/2015~ -~21157~^~342~^0.66^2^^~1~^~A~^^^1^0.65^0.66^1^^^^~04/01/2015~ -~21157~^~343~^0.24^2^^~1~^~A~^^^1^0.21^0.27^1^^^^~04/01/2015~ -~21157~^~344~^0.04^2^^~1~^~A~^^^1^0.00^0.07^1^^^~1~^~04/01/2015~ -~21157~^~345~^0.31^2^^~1~^~A~^^^1^0.30^0.33^1^^^^~04/01/2015~ -~21157~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21157~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21157~^~418~^0.55^3^0.08^~1~^~A~^^^1^0.39^0.64^2^0.20^0.90^~2, 3~^~04/01/2015~ -~21158~^~203~^9.77^6^0.25^~1~^~A~^^^1^9.06^10.75^5^9.11^10.42^~2, 3~^~05/01/2015~ -~21158~^~204~^8.45^6^0.23^~1~^~A~^^^1^7.94^9.43^5^7.84^9.05^~2, 3~^~05/01/2015~ -~21158~^~205~^26.01^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~207~^2.17^6^0.06^~1~^~A~^^^1^1.95^2.37^5^2.01^2.33^~2, 3~^~05/01/2015~ -~21158~^~209~^16.43^3^1.44^~1~^~A~^^^1^14.70^19.30^2^10.22^22.64^~2, 3~^~05/01/2015~ -~21158~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~211~^1.93^3^0.12^~1~^~A~^^^1^1.68^2.09^2^1.38^2.47^~2, 3~^~05/01/2015~ -~21158~^~212~^2.09^3^0.19^~1~^~A~^^^1^1.83^2.46^2^1.27^2.90^~2, 3~^~05/01/2015~ -~21158~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~214~^0.96^3^0.05^~1~^~A~^^^1^0.87^1.04^2^0.74^1.17^~2, 3~^~05/01/2015~ -~21158~^~255~^53.59^6^0.84^~1~^~A~^^^1^50.31^55.59^5^51.41^55.76^~2, 3~^~05/01/2015~ -~21158~^~269~^4.98^3^0.28^~1~^~A~^^^1^4.55^5.53^2^3.74^6.22^~2, 3~^~05/01/2015~ -~21158~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~303~^2.32^6^0.08^~1~^~A~^^^1^2.05^2.65^5^2.10^2.54^~2, 3~^~05/01/2015~ -~21158~^~309~^1.19^6^0.03^~1~^~A~^^^1^1.08^1.28^5^1.10^1.27^~2, 3~^~05/01/2015~ -~21158~^~323~^0.79^2^^~1~^~A~^^^1^0.67^0.92^1^^^^~05/01/2015~ -~21158~^~341~^0.08^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~05/01/2015~ -~21158~^~342~^0.66^2^^~1~^~A~^^^1^0.65^0.66^1^^^^~05/01/2015~ -~21158~^~343~^0.24^2^^~1~^~A~^^^1^0.21^0.27^1^^^^~05/01/2015~ -~21158~^~344~^0.04^2^^~1~^~A~^^^1^0.00^0.07^1^^^~1~^~05/01/2015~ -~21158~^~345~^0.31^2^^~1~^~A~^^^1^0.30^0.33^1^^^^~05/01/2015~ -~21158~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21158~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21158~^~418~^0.55^3^0.08^~1~^~A~^^^1^0.39^0.64^2^0.20^0.90^~2, 3~^~05/01/2015~ -~21158~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21158~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21159~^~203~^12.29^6^0.28^~1~^~A~^^^1^11.31^12.94^5^11.57^13.01^~2, 3~^~04/01/2015~ -~21159~^~204~^5.34^6^0.11^~1~^~A~^^^1^4.98^5.81^5^5.04^5.63^~2, 3~^~04/01/2015~ -~21159~^~205~^21.49^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~207~^2.01^6^0.02^~1~^~A~^^^1^1.97^2.09^5^1.95^2.05^~2, 3~^~04/01/2015~ -~21159~^~209~^16.43^3^0.93^~1~^~A~^^^1^14.60^17.70^2^12.39^20.47^~2, 3~^~04/01/2015~ -~21159~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~211~^1.36^3^0.04^~1~^~A~^^^1^1.29^1.44^2^1.16^1.54^~2, 3~^~04/01/2015~ -~21159~^~212~^1.45^3^0.04^~1~^~A~^^^1^1.37^1.54^2^1.23^1.66^~2, 3~^~04/01/2015~ -~21159~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~214~^0.60^3^0.04^~1~^~A~^^^1^0.54^0.69^2^0.41^0.79^~2, 3~^~04/01/2015~ -~21159~^~255~^58.88^6^0.29^~1~^~A~^^^1^57.49^59.36^5^58.12^59.63^~2, 3~^~04/01/2015~ -~21159~^~269~^3.41^3^0.06^~1~^~A~^^^1^3.29^3.52^2^3.12^3.69^~2, 3~^~04/01/2015~ -~21159~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~303~^2.02^6^0.05^~1~^~A~^^^1^1.86^2.20^5^1.87^2.17^~2, 3~^~04/01/2015~ -~21159~^~309~^1.98^6^0.06^~1~^~A~^^^1^1.77^2.22^5^1.80^2.15^~2, 3~^~04/01/2015~ -~21159~^~323~^0.40^2^^~1~^~A~^^^1^0.36^0.44^1^^^^~04/01/2015~ -~21159~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2015~ -~21159~^~342~^0.44^2^^~1~^~A~^^^1^0.39^0.49^1^^^^~04/01/2015~ -~21159~^~343~^0.15^2^^~1~^~A~^^^1^0.12^0.17^1^^^^~04/01/2015~ -~21159~^~344~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~04/01/2015~ -~21159~^~345~^0.40^2^^~1~^~A~^^^1^0.39^0.41^1^^^^~04/01/2015~ -~21159~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21159~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21159~^~418~^0.58^3^9.0e-03^~1~^~A~^^^1^0.56^0.59^2^0.53^0.61^~2, 3~^~04/01/2015~ -~21160~^~203~^12.29^6^0.28^~1~^~A~^^^1^11.31^12.94^5^11.57^13.01^~2, 3~^~05/01/2015~ -~21160~^~204~^5.34^6^0.11^~1~^~A~^^^1^4.98^5.81^5^5.04^5.63^~2, 3~^~05/01/2015~ -~21160~^~205~^21.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~207~^2.01^6^0.02^~1~^~A~^^^1^1.97^2.09^5^1.95^2.05^~2, 3~^~05/01/2015~ -~21160~^~209~^16.43^3^0.93^~1~^~A~^^^1^14.60^17.70^2^12.39^20.47^~2, 3~^~05/01/2015~ -~21160~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~211~^1.36^3^0.04^~1~^~A~^^^1^1.29^1.44^2^1.16^1.54^~2, 3~^~05/01/2015~ -~21160~^~212~^1.45^3^0.04^~1~^~A~^^^1^1.37^1.54^2^1.23^1.66^~2, 3~^~05/01/2015~ -~21160~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~214~^0.60^3^0.04^~1~^~A~^^^1^0.54^0.69^2^0.41^0.79^~2, 3~^~05/01/2015~ -~21160~^~255~^58.88^6^0.29^~1~^~A~^^^1^57.49^59.36^5^58.12^59.63^~2, 3~^~05/01/2015~ -~21160~^~269~^3.41^3^0.06^~1~^~A~^^^1^3.29^3.52^2^3.12^3.69^~2, 3~^~05/01/2015~ -~21160~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~303~^2.02^6^0.05^~1~^~A~^^^1^1.86^2.20^5^1.87^2.17^~2, 3~^~05/01/2015~ -~21160~^~309~^1.98^6^0.06^~1~^~A~^^^1^1.77^2.22^5^1.80^2.15^~2, 3~^~05/01/2015~ -~21160~^~323~^0.40^2^^~1~^~A~^^^1^0.36^0.44^1^^^^~05/01/2015~ -~21160~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~05/01/2015~ -~21160~^~342~^0.44^2^^~1~^~A~^^^1^0.39^0.49^1^^^^~05/01/2015~ -~21160~^~343~^0.15^2^^~1~^~A~^^^1^0.12^0.17^1^^^^~05/01/2015~ -~21160~^~344~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~05/01/2015~ -~21160~^~345~^0.40^2^^~1~^~A~^^^1^0.39^0.41^1^^^^~05/01/2015~ -~21160~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21160~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21160~^~418~^0.58^3^9.0e-03^~1~^~A~^^^1^0.56^0.59^2^0.53^0.61^~2, 3~^~05/01/2015~ -~21160~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21160~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21161~^~203~^10.06^6^0.08^~1~^~A~^^^1^9.81^10.31^5^9.85^10.27^~2, 3~^~04/01/2015~ -~21161~^~204~^6.41^6^0.16^~1~^~A~^^^1^5.71^6.93^5^5.98^6.83^~2, 3~^~04/01/2015~ -~21161~^~205~^26.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~207~^1.83^6^0.03^~1~^~A~^^^1^1.71^1.95^5^1.74^1.91^~2, 3~^~04/01/2015~ -~21161~^~209~^20.13^3^0.46^~1~^~A~^^^1^19.30^20.90^2^18.14^22.12^~2, 3~^~04/01/2015~ -~21161~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~211~^1.10^3^0.02^~1~^~A~^^^1^1.06^1.15^2^0.99^1.21^~2, 3~^~04/01/2015~ -~21161~^~212~^1.69^3^3.0e-03^~1~^~A~^^^1^1.68^1.69^2^1.67^1.70^~2, 3~^~04/01/2015~ -~21161~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~214~^0.82^3^0.01^~1~^~A~^^^1^0.80^0.85^2^0.74^0.88^~2, 3~^~04/01/2015~ -~21161~^~255~^55.03^6^0.47^~1~^~A~^^^1^53.17^56.74^5^53.81^56.25^~2, 3~^~04/01/2015~ -~21161~^~269~^3.61^3^0.01^~1~^~A~^^^1^3.58^3.64^2^3.53^3.68^~2, 3~^~04/01/2015~ -~21161~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~303~^2.14^6^0.04^~1~^~A~^^^1^2.00^2.28^5^2.03^2.24^~2, 3~^~04/01/2015~ -~21161~^~309~^0.96^6^0.01^~1~^~A~^^^1^0.93^1.00^5^0.93^0.98^~2, 3~^~04/01/2015~ -~21161~^~323~^0.29^2^^~1~^~A~^^^1^0.28^0.29^1^^^^~04/01/2015~ -~21161~^~341~^0.07^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~04/01/2015~ -~21161~^~342~^0.56^2^^~1~^~A~^^^1^0.34^0.77^1^^^^~04/01/2015~ -~21161~^~343~^0.17^2^^~1~^~A~^^^1^0.14^0.20^1^^^^~04/01/2015~ -~21161~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21161~^~345~^0.40^2^^~1~^~A~^^^1^0.40^0.41^1^^^^~04/01/2015~ -~21161~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21161~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21161~^~418~^0.18^2^^~1~^~A~^^^1^0.17^0.18^1^^^^~04/01/2015~ -~21162~^~203~^10.06^6^0.08^~1~^~A~^^^1^9.81^10.31^5^9.85^10.27^~2, 3~^~05/01/2015~ -~21162~^~204~^6.41^6^0.16^~1~^~A~^^^1^5.71^6.93^5^5.98^6.83^~2, 3~^~05/01/2015~ -~21162~^~205~^26.66^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~207~^1.83^6^0.03^~1~^~A~^^^1^1.71^1.95^5^1.74^1.91^~2, 3~^~05/01/2015~ -~21162~^~209~^20.13^3^0.46^~1~^~A~^^^1^19.30^20.90^2^18.14^22.12^~2, 3~^~05/01/2015~ -~21162~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~211~^1.10^3^0.02^~1~^~A~^^^1^1.06^1.15^2^0.99^1.21^~2, 3~^~05/01/2015~ -~21162~^~212~^1.69^3^3.0e-03^~1~^~A~^^^1^1.68^1.69^2^1.67^1.70^~2, 3~^~05/01/2015~ -~21162~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~214~^0.82^3^0.01^~1~^~A~^^^1^0.80^0.85^2^0.74^0.88^~2, 3~^~05/01/2015~ -~21162~^~255~^55.03^6^0.47^~1~^~A~^^^1^53.17^56.74^5^53.81^56.25^~2, 3~^~05/01/2015~ -~21162~^~269~^3.61^3^0.01^~1~^~A~^^^1^3.58^3.64^2^3.53^3.68^~2, 3~^~05/01/2015~ -~21162~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~303~^2.14^6^0.04^~1~^~A~^^^1^2.00^2.28^5^2.03^2.24^~2, 3~^~05/01/2015~ -~21162~^~309~^0.96^6^0.01^~1~^~A~^^^1^0.93^1.00^5^0.93^0.98^~2, 3~^~05/01/2015~ -~21162~^~323~^0.29^2^^~1~^~A~^^^1^0.28^0.29^1^^^^~05/01/2015~ -~21162~^~341~^0.07^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~05/01/2015~ -~21162~^~342~^0.56^2^^~1~^~A~^^^1^0.34^0.77^1^^^^~05/01/2015~ -~21162~^~343~^0.17^2^^~1~^~A~^^^1^0.14^0.20^1^^^^~05/01/2015~ -~21162~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21162~^~345~^0.40^2^^~1~^~A~^^^1^0.40^0.41^1^^^^~05/01/2015~ -~21162~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21162~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2015~ -~21162~^~418~^0.18^2^^~1~^~A~^^^1^0.17^0.18^1^^^^~05/01/2015~ -~21162~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21162~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~05/01/2015~ -~21202~^~203~^15.68^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~204~^11.60^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~205~^22.14^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~207~^1.77^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~209~^14.90^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~210~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21202~^~211~^1.14^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~212~^1.86^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~213~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21202~^~214~^0.37^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~255~^48.81^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~269~^3.67^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~21202~^~303~^1.73^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~309~^3.04^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~323~^0.06^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~341~^1.12^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~342~^0.13^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~21202~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~21202~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~21202~^~418~^1.66^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21207~^~203~^9.12^6^0.08^~1~^~A~^^^1^8.87^9.38^5^8.91^9.33^~2, 3~^~04/01/2015~ -~21207~^~204~^2.31^6^0.11^~1~^~A~^^^1^1.97^2.60^5^2.01^2.60^~2, 3~^~04/01/2015~ -~21207~^~205~^22.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~207~^1.82^6^0.03^~1~^~A~^^^1^1.74^1.94^5^1.74^1.90^~2, 3~^~04/01/2015~ -~21207~^~209~^16.70^3^0.20^~1~^~A~^^^1^16.40^17.10^2^15.80^17.59^~2, 3~^~04/01/2015~ -~21207~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~211~^1.18^3^0.10^~1~^~A~^^^1^0.99^1.33^2^0.74^1.61^~2, 3~^~04/01/2015~ -~21207~^~212~^1.28^3^0.08^~1~^~A~^^^1^1.13^1.42^2^0.91^1.64^~2, 3~^~04/01/2015~ -~21207~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~214~^0.63^3^0.04^~1~^~A~^^^1^0.54^0.69^2^0.43^0.83^~2, 3~^~04/01/2015~ -~21207~^~255~^64.33^6^0.32^~1~^~A~^^^1^63.29^65.27^5^63.48^65.17^~2, 3~^~04/01/2015~ -~21207~^~269~^3.09^3^0.15^~1~^~A~^^^1^2.79^3.29^2^2.43^3.75^~2, 3~^~04/01/2015~ -~21207~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~303~^1.84^6^0.04^~1~^~A~^^^1^1.72^1.97^5^1.72^1.96^~2, 3~^~04/01/2015~ -~21207~^~309~^0.66^6^0.01^~1~^~A~^^^1^0.61^0.72^5^0.62^0.70^~2, 3~^~04/01/2015~ -~21207~^~323~^0.28^2^^~1~^~A~^^^1^0.28^0.29^1^^^^~04/01/2015~ -~21207~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.08^1^^^^~04/01/2015~ -~21207~^~342~^0.56^2^^~1~^~A~^^^1^0.48^0.63^1^^^^~04/01/2015~ -~21207~^~343~^0.19^2^^~1~^~A~^^^1^0.17^0.21^1^^^^~04/01/2015~ -~21207~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~04/01/2015~ -~21207~^~345~^0.37^2^^~1~^~A~^^^1^0.35^0.38^1^^^^~04/01/2015~ -~21207~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21207~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21207~^~418~^0.12^3^6.0e-03^~1~^~A~^^^1^0.11^0.13^2^0.09^0.14^~2, 3~^~04/01/2015~ -~21209~^~203~^9.12^6^0.27^~1~^~A~^^^1^8.25^10.19^5^8.40^9.84^~2, 3~^~04/01/2015~ -~21209~^~204~^2.53^6^0.06^~1~^~A~^^^1^2.29^2.74^5^2.35^2.70^~2, 3~^~04/01/2015~ -~21209~^~205~^22.91^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~207~^2.17^6^0.06^~1~^~A~^^^1^1.97^2.38^5^2.01^2.32^~2, 3~^~04/01/2015~ -~21209~^~209~^17.33^3^0.12^~1~^~A~^^^1^17.10^17.50^2^16.81^17.85^~2, 3~^~04/01/2015~ -~21209~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~211~^1.52^3^0.01^~1~^~A~^^^1^1.50^1.53^2^1.47^1.56^~2, 3~^~04/01/2015~ -~21209~^~212~^1.32^3^0.07^~1~^~A~^^^1^1.22^1.47^2^0.99^1.64^~2, 3~^~04/01/2015~ -~21209~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~214~^0.69^3^0.04^~1~^~A~^^^1^0.63^0.78^2^0.50^0.88^~2, 3~^~04/01/2015~ -~21209~^~255~^63.26^6^0.32^~1~^~A~^^^1^62.17^64.34^5^62.42^64.09^~2, 3~^~04/01/2015~ -~21209~^~269~^3.54^3^0.04^~1~^~A~^^^1^3.48^3.63^2^3.33^3.73^~2, 3~^~04/01/2015~ -~21209~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~303~^1.78^6^0.05^~1~^~A~^^^1^1.66^2.04^5^1.63^1.92^~2, 3~^~04/01/2015~ -~21209~^~309~^0.88^6^0.02^~1~^~A~^^^1^0.82^0.98^5^0.81^0.94^~2, 3~^~04/01/2015~ -~21209~^~323~^0.29^2^^~1~^~A~^^^1^0.27^0.30^1^^^^~04/01/2015~ -~21209~^~341~^0.08^2^^~1~^~A~^^^1^0.06^0.09^1^^^^~04/01/2015~ -~21209~^~342~^0.46^2^^~1~^~A~^^^1^0.45^0.47^1^^^^~04/01/2015~ -~21209~^~343~^0.13^2^^~1~^~A~^^^1^0.12^0.14^1^^^^~04/01/2015~ -~21209~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~04/01/2015~ -~21209~^~345~^0.36^2^^~1~^~A~^^^1^0.35^0.38^1^^^^~04/01/2015~ -~21209~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21209~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21209~^~418~^0.12^3^0.02^~1~^~A~^^^1^0.09^0.17^2^0.01^0.22^~2, 3~^~04/01/2015~ -~21210~^~203~^12.17^6^0.22^~1~^~A~^^^1^11.50^12.81^5^11.58^12.74^~2, 3~^~05/01/2013~ -~21210~^~204~^2.73^6^0.18^~1~^~A~^^^1^2.39^3.64^5^2.24^3.20^~2, 3~^~05/01/2013~ -~21210~^~205~^20.34^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~207~^1.68^6^0.04^~1~^~A~^^^1^1.53^1.82^5^1.57^1.78^~2, 3~^~05/01/2013~ -~21210~^~209~^15.60^3^0.40^~1~^~A~^^^1^15.20^16.40^2^13.87^17.32^~2, 3~^~05/01/2013~ -~21210~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~211~^1.07^3^0.08^~1~^~A~^^^1^0.90^1.20^2^0.68^1.44^~2, 3~^~05/01/2013~ -~21210~^~212~^1.40^3^0.00^~1~^~A~^^^1^1.40^1.40^^^^~2, 3~^~05/01/2013~ -~21210~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~214~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~2, 3~^~05/01/2013~ -~21210~^~255~^63.08^6^0.61^~1~^~A~^^^1^60.67^64.52^5^61.49^64.66^~2, 3~^~05/01/2013~ -~21210~^~269~^3.00^3^0.11^~1~^~A~^^^1^2.80^3.20^2^2.50^3.49^~2, 3~^~05/01/2013~ -~21210~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~303~^2.09^6^0.04^~1~^~A~^^^1^1.99^2.30^5^1.97^2.20^~2, 3~^~05/01/2013~ -~21210~^~309~^1.50^6^0.05^~1~^~A~^^^1^1.36^1.65^5^1.36^1.63^~2, 3~^~05/01/2013~ -~21210~^~323~^0.29^2^^~1~^~A~^^^1^0.27^0.32^1^^^^~05/01/2013~ -~21210~^~341~^0.07^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~05/01/2013~ -~21210~^~342~^0.43^2^^~1~^~A~^^^1^0.42^0.44^1^^^^~05/01/2013~ -~21210~^~343~^0.13^2^^~1~^~A~^^^1^0.13^0.14^1^^^^~05/01/2013~ -~21210~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.02^1^^^~1~^~05/01/2013~ -~21210~^~345~^0.33^2^^~1~^~A~^^^1^0.32^0.34^1^^^^~05/01/2013~ -~21210~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21210~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21210~^~418~^0.44^3^0.04^~1~^~A~^^^1^0.37^0.52^2^0.25^0.63^~2, 3~^~05/01/2013~ -~21211~^~203~^10.84^6^0.12^~1~^~A~^^^1^10.50^11.25^5^10.52^11.16^~2, 3~^~04/01/2015~ -~21211~^~204~^3.15^6^0.15^~1~^~A~^^^1^2.51^3.57^5^2.75^3.55^~2, 3~^~04/01/2015~ -~21211~^~205~^21.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~207~^1.50^6^0.04^~1~^~A~^^^1^1.39^1.66^5^1.39^1.61^~2, 3~^~04/01/2015~ -~21211~^~209~^15.97^3^0.51^~1~^~A~^^^1^15.40^17.00^2^13.74^18.19^~2, 3~^~04/01/2015~ -~21211~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~211~^0.97^3^0.04^~1~^~A~^^^1^0.91^1.06^2^0.76^1.16^~2, 3~^~04/01/2015~ -~21211~^~212~^1.30^3^0.04^~1~^~A~^^^1^1.23^1.39^2^1.10^1.50^~2, 3~^~04/01/2015~ -~21211~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~214~^0.72^3^0.05^~1~^~A~^^^1^0.62^0.78^2^0.50^0.93^~2, 3~^~04/01/2015~ -~21211~^~255~^63.15^6^0.42^~1~^~A~^^^1^61.37^64.14^5^62.04^64.25^~2, 3~^~04/01/2015~ -~21211~^~269~^2.99^3^0.04^~1~^~A~^^^1^2.90^3.07^2^2.77^3.20^~2, 3~^~04/01/2015~ -~21211~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~303~^1.72^6^0.10^~1~^~A~^^^1^1.40^2.06^5^1.45^1.98^~2, 3~^~04/01/2015~ -~21211~^~309~^0.66^6^0.01^~1~^~A~^^^1^0.63^0.69^5^0.63^0.68^~2, 3~^~04/01/2015~ -~21211~^~323~^0.42^2^^~1~^~A~^^^1^0.31^0.52^1^^^^~04/01/2015~ -~21211~^~341~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^^~04/01/2015~ -~21211~^~342~^0.39^2^^~1~^~A~^^^1^0.34^0.45^1^^^^~04/01/2015~ -~21211~^~343~^0.13^2^^~1~^~A~^^^1^0.09^0.17^1^^^^~04/01/2015~ -~21211~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~04/01/2015~ -~21211~^~345~^0.31^2^^~1~^~A~^^^1^0.28^0.34^1^^^^~04/01/2015~ -~21211~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21211~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~21211~^~418~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~2, 3~^~04/01/2015~ -~21213~^~203~^10.52^6^0.20^~1~^~A~^^^1^9.75^11.31^5^9.98^11.05^~2, 3~^~05/01/2013~ -~21213~^~204~^10.04^6^0.15^~1~^~A~^^^1^9.70^10.71^5^9.64^10.42^~2, 3~^~05/01/2013~ -~21213~^~205~^20.43^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~207~^2.50^6^0.05^~1~^~A~^^^1^2.32^2.69^5^2.36^2.63^~2, 3~^~05/01/2013~ -~21213~^~209~^15.67^3^0.44^~1~^~A~^^^1^15.00^16.50^2^13.76^17.56^~2, 3~^~05/01/2013~ -~21213~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~211~^1.23^3^0.03^~1~^~A~^^^1^1.20^1.30^2^1.09^1.37^~2, 3~^~05/01/2013~ -~21213~^~212~^1.40^3^0.05^~1~^~A~^^^1^1.30^1.50^2^1.15^1.64^~2, 3~^~05/01/2013~ -~21213~^~213~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 2, 3~^~05/01/2013~ -~21213~^~214~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~05/01/2013~ -~21213~^~255~^56.51^6^0.40^~1~^~A~^^^1^54.81^57.72^5^55.47^57.54^~2, 3~^~05/01/2013~ -~21213~^~269~^3.18^3^0.11^~1~^~A~^^^1^2.97^3.37^2^2.68^3.68^~2, 3~^~05/01/2013~ -~21213~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~303~^1.81^6^0.02^~1~^~A~^^^1^1.75^1.89^5^1.74^1.86^~2, 3~^~05/01/2013~ -~21213~^~309~^1.05^6^0.02^~1~^~A~^^^1^1.00^1.14^5^0.99^1.10^~2, 3~^~05/01/2013~ -~21213~^~323~^0.41^2^^~1~^~A~^^^1^0.38^0.44^1^^^^~05/01/2013~ -~21213~^~341~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~05/01/2013~ -~21213~^~342~^0.37^2^^~1~^~A~^^^1^0.36^0.38^1^^^^~05/01/2013~ -~21213~^~343~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~05/01/2013~ -~21213~^~344~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~05/01/2013~ -~21213~^~345~^0.24^2^^~1~^~A~^^^1^0.24^0.25^1^^^^~05/01/2013~ -~21213~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21213~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21213~^~418~^0.22^3^9.0e-03^~1~^~A~^^^1^0.20^0.23^2^0.17^0.25^~2, 3~^~05/01/2013~ -~21214~^~203~^12.33^6^0.39^~1~^~A~^^^1^11.19^13.94^5^11.31^13.35^~2, 3~^~05/01/2013~ -~21214~^~204~^12.04^6^0.81^~1~^~A~^^^1^10.38^15.02^5^9.95^14.11^~2, 3~^~05/01/2013~ -~21214~^~205~^15.95^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~207~^1.51^6^0.11^~1~^~A~^^^1^0.99^1.79^5^1.21^1.79^~2, 3~^~05/01/2013~ -~21214~^~209~^12.40^3^0.32^~1~^~A~^^^1^11.80^12.90^2^11.01^13.78^~2, 3~^~05/01/2013~ -~21214~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~211~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~05/01/2013~ -~21214~^~212~^1.10^3^0.05^~1~^~A~^^^1^1.00^1.20^2^0.85^1.34^~2, 3~^~05/01/2013~ -~21214~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~214~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~05/01/2013~ -~21214~^~255~^58.17^6^0.80^~1~^~A~^^^1^55.65^60.45^5^56.10^60.23^~2, 3~^~05/01/2013~ -~21214~^~269~^1.93^3^0.12^~1~^~A~^^^1^1.70^2.10^2^1.41^2.45^~2, 3~^~05/01/2013~ -~21214~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~303~^1.57^6^0.01^~1~^~A~^^^1^1.53^1.60^5^1.53^1.59^~2, 3~^~05/01/2013~ -~21214~^~309~^0.67^6^0.02^~1~^~A~^^^1^0.61^0.76^5^0.61^0.72^~2, 3~^~05/01/2013~ -~21214~^~323~^1.57^2^^~1~^~A~^^^1^1.55^1.58^1^^^^~05/01/2013~ -~21214~^~341~^0.17^2^^~1~^~A~^^^1^0.15^0.19^1^^^^~05/01/2013~ -~21214~^~342~^7.06^2^^~1~^~A~^^^1^6.60^7.53^1^^^^~05/01/2013~ -~21214~^~343~^2.35^2^^~1~^~A~^^^1^2.24^2.47^1^^^^~05/01/2013~ -~21214~^~344~^0.04^2^^~1~^~A~^^^1^0.03^0.04^1^^^~1~^~05/01/2013~ -~21214~^~345~^0.24^2^^~1~^~A~^^^1^0.24^0.25^1^^^^~05/01/2013~ -~21214~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21214~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21214~^~418~^1.06^3^0.33^~1~^~A~^^^1^0.39^1.40^2^-0.38^2.51^~2, 3~^~05/01/2013~ -~21224~^~203~^10.36^8^0.26^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~204~^12.28^8^0.68^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~205~^29.02^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~207~^2.06^8^0.04^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~209~^18.74^4^0.30^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~210~^0.31^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~211~^0.93^4^0.02^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~212~^1.20^4^0.07^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~213~^0.39^3^3.0e-03^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~214~^0.74^4^0.10^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~255~^46.28^8^1.36^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~269~^3.57^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~21224~^~303~^2.27^8^0.26^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~309~^1.32^8^0.03^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~323~^1.01^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~418~^0.78^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~573~^0.00^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~578~^0.00^0^^~4~^~BFCN~^~21299~^^^^^^^^^~07/01/2008~ -~21225~^~203~^12.37^4^0.39^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~204~^8.78^4^0.48^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~205~^32.91^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~207~^2.48^4^0.10^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~209~^20.46^4^1.01^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~211~^1.16^4^0.16^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~212~^1.50^4^0.19^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~214~^2.43^4^1.20^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~255~^43.46^4^0.61^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~269~^5.09^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~21225~^~303~^1.77^4^0.17^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~309~^1.32^4^0.07^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~323~^0.72^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~418~^0.70^4^0.04^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~573~^0.00^0^^~4~^~BFFN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~578~^0.00^0^^~4~^~BFCN~^~21299~^^^^^^^^^~03/01/2007~ -~21226~^~203~^11.28^5^0.26^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~204~^14.43^5^0.17^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~205~^25.14^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~207~^2.44^5^0.09^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~209~^19.76^5^0.84^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~211~^2.51^5^0.09^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~212~^1.32^5^0.10^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~214~^0.87^5^0.09^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~255~^46.71^5^0.90^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~269~^4.85^0^^~4~^~NR~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~287~^0.14^5^0.02^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~303~^1.36^5^0.07^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~309~^1.71^5^0.07^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~323~^1.13^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~418~^0.62^5^0.05^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~573~^0.00^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~578~^0.00^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~203~^12.63^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~204~^11.75^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~205~^28.78^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~207~^2.61^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~209~^19.76^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~211~^3.00^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~212~^1.70^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~214~^2.40^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~255~^44.24^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~269~^7.26^0^^~4~^~BFSN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~287~^0.16^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~303~^1.36^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~309~^1.87^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~323~^0.92^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~418~^0.80^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~573~^0.00^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~578~^0.00^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21228~^~203~^12.92^6^0.13^~1~^~A~^^^1^12.62^13.50^5^12.56^13.26^~4~^~07/01/2012~ -~21228~^~204~^10.09^6^0.19^~1~^~A~^^^1^9.66^10.73^5^9.57^10.60^~4~^~07/01/2012~ -~21228~^~205~^30.28^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~207~^2.18^6^0.07^~1~^~A~^^^1^1.97^2.45^5^2.00^2.36^~4~^~07/01/2012~ -~21228~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21228~^~211~^2.10^3^0.05^~1~^~A~^^^1^2.00^2.20^2^1.85^2.34^~4~^~07/01/2012~ -~21228~^~212~^3.30^3^0.05^~1~^~A~^^^1^3.20^3.40^2^3.05^3.54^~4~^~07/01/2012~ -~21228~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21228~^~214~^0.63^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.49^0.77^~4~^~07/01/2012~ -~21228~^~255~^44.53^6^0.51^~1~^~A~^^^1^42.23^45.70^5^43.20^45.86^~4~^~07/01/2012~ -~21228~^~269~^6.03^3^0.14^~1~^~A~^^^1^5.80^6.30^2^5.40^6.65^~4~^~07/01/2012~ -~21228~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21228~^~303~^2.87^6^0.08^~1~^~A~^^^1^2.51^3.02^5^2.65^3.09^~4~^~07/01/2012~ -~21228~^~309~^1.95^6^0.01^~1~^~A~^^^1^1.88^2.00^5^1.90^1.98^~4~^~07/01/2012~ -~21228~^~418~^0.83^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21229~^~203~^15.92^12^0.24^~1~^~A~^^^1^14.75^17.94^7^15.34^16.50^~2, 3~^~08/01/2012~ -~21229~^~204~^20.36^12^0.44^~1~^~A~^^^1^17.69^24.67^6^19.24^21.47^~2, 3~^~08/01/2012~ -~21229~^~205~^14.93^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~207~^2.25^12^0.06^~1~^~A~^^^1^1.93^2.66^5^2.08^2.42^~2, 3~^~08/01/2012~ -~21229~^~210~^0.07^6^7.0e-03^~1~^~A~^^^1^0.00^0.10^2^0.03^0.09^~1, 2, 3~^~08/01/2012~ -~21229~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~214~^0.02^6^2.0e-03^~1~^~A~^^^1^0.00^0.10^2^9.0e-03^0.02^~1, 2, 3~^~08/01/2012~ -~21229~^~255~^46.53^12^0.36^~1~^~A~^^^1^41.85^49.03^8^45.69^47.36^~2, 3~^~08/01/2012~ -~21229~^~269~^0.08^6^7.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.11^~2, 3~^~08/01/2012~ -~21229~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~303~^0.83^12^0.02^~1~^~A~^^^1^0.58^1.03^5^0.76^0.90^~2, 3~^~04/01/2004~ -~21229~^~309~^0.59^12^6.0e-03^~1~^~A~^^^1^0.56^0.65^8^0.57^0.60^~2, 3~^~08/01/2012~ -~21229~^~323~^1.12^4^0.18^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~341~^0.05^4^0.02^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~342~^3.56^4^1.18^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~343~^1.22^4^0.32^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~344~^0.01^4^7.0e-03^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~345~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~346~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~347~^0.00^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~418~^0.33^4^0.00^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~21229~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~21230~^~203~^10.94^18^0.14^~1~^~A~^^^1^9.69^12.62^6^10.58^11.28^~2, 3~^~07/01/2012~ -~21230~^~204~^13.59^18^0.22^~1~^~A~^^^1^12.39^16.94^8^13.06^14.10^~2, 3~^~07/01/2012~ -~21230~^~205~^27.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~207~^2.24^18^0.01^~1~^~A~^^^1^1.97^2.46^9^2.19^2.28^~2, 3~^~07/01/2012~ -~21230~^~210~^0.12^9^0.02^~1~^~A~^^^1^0.00^0.20^2^0.03^0.20^~1, 2, 3~^~04/01/2015~ -~21230~^~211~^1.05^9^0.02^~1~^~A~^^^1^0.80^1.20^4^0.97^1.12^~2, 3~^~07/01/2012~ -~21230~^~212~^1.75^9^0.02^~1~^~A~^^^1^1.30^2.00^3^1.66^1.83^~2, 3~^~07/01/2012~ -~21230~^~213~^0.00^9^4.0e-03^~1~^~A~^^^1^0.00^0.07^2^-0.01^0.02^~1, 2, 3~^~07/01/2012~ -~21230~^~214~^0.47^9^0.02^~1~^~A~^^^1^0.40^0.70^3^0.39^0.55^~2, 3~^~07/01/2012~ -~21230~^~255~^45.84^18^0.24^~1~^~A~^^^1^42.50^48.18^9^45.27^46.40^~2, 3~^~07/01/2012~ -~21230~^~269~^3.40^9^0.05^~1~^~A~^^^1^2.80^3.70^3^3.24^3.55^~2, 3~^~07/01/2012~ -~21230~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21230~^~303~^1.71^18^0.06^~1~^~A~^^^1^1.31^2.13^6^1.54^1.87^~2, 3~^~07/01/2012~ -~21230~^~309~^0.62^18^0.02^~1~^~A~^^^1^0.53^0.73^5^0.57^0.67^~2, 3~^~07/01/2012~ -~21230~^~323~^0.69^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~418~^0.33^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2006~ -~21230~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21230~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2011~ -~21232~^~203~^11.26^6^0.11^~1~^~A~^^^1^10.81^11.56^5^10.95^11.56^~4~^~07/01/2012~ -~21232~^~204~^14.64^6^0.26^~1~^~A~^^^1^14.16^15.93^5^13.95^15.33^~4~^~07/01/2012~ -~21232~^~205~^26.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~207~^1.95^6^0.02^~1~^~A~^^^1^1.86^2.02^5^1.88^2.01^~4~^~07/01/2012~ -~21232~^~210~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^2^0.10^0.10^~4~^~07/01/2012~ -~21232~^~211~^1.00^3^0.00^~1~^~A~^^^1^1.00^1.00^2^1.00^1.00^~4~^~07/01/2012~ -~21232~^~212~^1.93^3^0.03^~1~^~A~^^^1^1.90^2.00^2^1.79^2.07^~4~^~07/01/2012~ -~21232~^~213~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^2^0.20^0.20^~4~^~07/01/2012~ -~21232~^~214~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~4~^~07/01/2012~ -~21232~^~255~^45.76^6^0.18^~1~^~A~^^^1^45.03^46.32^5^45.27^46.23^~4~^~07/01/2012~ -~21232~^~269~^3.67^3^0.06^~1~^~A~^^^1^3.60^3.80^2^3.38^3.95^~4~^~07/01/2012~ -~21232~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21232~^~303~^1.56^6^0.07^~1~^~A~^^^1^1.35^1.78^5^1.37^1.74^~4~^~07/01/2012~ -~21232~^~309~^0.58^6^0.01^~1~^~A~^^^1^0.54^0.64^5^0.54^0.61^~4~^~07/01/2012~ -~21232~^~323~^1.17^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~341~^0.10^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~342~^6.56^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~343~^2.15^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~21232~^~418~^1.08^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21233~^~203~^12.97^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~204~^11.79^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~205~^27.81^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21233~^~207~^2.45^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~210~^0.24^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~211~^2.01^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~212~^2.59^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~213~^0.54^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~214~^0.84^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~255~^45.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~269~^6.22^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21233~^~303~^2.35^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~309~^1.91^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~418~^0.86^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21234~^~203~^14.10^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~204~^11.55^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~205~^22.17^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~207~^1.81^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~210~^0.22^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~211~^1.91^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~212~^2.20^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~213~^0.07^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~214~^0.73^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~255~^50.37^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~269~^5.13^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~303~^2.41^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~309~^2.69^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~418~^1.28^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~203~^14.59^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~204~^14.22^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~205~^19.95^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~207~^2.35^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~210~^0.19^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~211~^1.64^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~212~^1.89^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~213~^0.55^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~214~^0.63^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~255~^48.90^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~269~^4.91^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~303~^2.10^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~309~^2.63^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~418~^1.26^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~203~^11.82^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~204~^14.96^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~205~^20.08^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~207~^1.87^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~210~^0.46^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~211~^1.04^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~212~^1.69^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~213~^0.32^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~214~^0.49^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~255~^51.30^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~269~^3.97^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~303~^2.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~309~^1.91^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~418~^0.88^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21238~^~203~^3.41^6^0.22^~1~^~A~^^^1^2.63^4.06^5^2.83^3.98^~2, 3~^~08/01/2012~ -~21238~^~204~^15.47^6^0.43^~1~^~A~^^^1^13.70^16.60^5^14.36^16.57^~2, 3~^~08/01/2012~ -~21238~^~205~^42.58^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~207~^1.91^6^0.04^~1~^~A~^^^1^1.73^2.04^5^1.79^2.02^~2, 3~^~08/01/2012~ -~21238~^~209~^38.23^3^1.32^~1~^~A~^^^1^35.90^40.50^2^32.51^43.94^~2, 3~^~08/01/2012~ -~21238~^~210~^0.21^3^0.02^~1~^~A~^^^1^0.18^0.27^2^0.09^0.33^~1, 2, 3~^~08/01/2012~ -~21238~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~255~^36.63^6^0.73^~1~^~A~^^^1^34.60^38.70^5^34.75^38.51^~2, 3~^~08/01/2012~ -~21238~^~269~^0.21^3^0.02^~1~^~A~^^^1^0.18^0.27^2^0.09^0.33^~2, 3~^~08/01/2012~ -~21238~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~303~^0.80^6^0.02^~1~^~A~^^^1^0.70^0.87^5^0.73^0.86^~2, 3~^~08/01/2012~ -~21238~^~309~^0.51^6^0.05^~1~^~A~^^^1^0.39^0.73^5^0.37^0.63^~2, 3~^~08/01/2012~ -~21238~^~323~^1.38^3^0.26^~1~^~A~^^^1^0.91^1.84^2^0.22^2.53^~2, 3~^~08/01/2012~ -~21238~^~341~^0.03^3^7.0e-03^~1~^~A~^^^1^0.02^0.04^2^5.0e-03^0.06^~2, 3~^~08/01/2012~ -~21238~^~342~^2.36^3^0.84^~1~^~A~^^^1^1.03^3.94^2^-1.28^6.01^~2, 3~^~08/01/2012~ -~21238~^~343~^0.62^3^0.09^~1~^~A~^^^1^0.47^0.79^2^0.22^1.02^~2, 3~^~08/01/2012~ -~21238~^~344~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.04^~1, 2, 3~^~08/01/2012~ -~21238~^~345~^0.13^3^0.13^~1~^~A~^^^1^0.00^0.40^2^-0.44^0.70^~1, 2, 3~^~08/01/2012~ -~21238~^~346~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~08/01/2012~ -~21238~^~347~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.07^0.12^~1, 2, 3~^~08/01/2012~ -~21239~^~203~^12.63^4^0.45^~1~^~A~^^^1^11.76^13.61^3^11.19^14.06^~2, 3~^~08/01/2004~ -~21239~^~204~^10.60^4^0.16^~1~^~A~^^^1^10.20^11.00^3^10.06^11.13^~2, 3~^~08/01/2004~ -~21239~^~205~^16.82^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21239~^~207~^1.54^4^0.05^~1~^~A~^^^1^1.42^1.66^3^1.37^1.70^~2, 3~^~08/01/2004~ -~21239~^~209~^11.52^4^0.25^~1~^~A~^^^1^10.80^11.90^3^10.73^12.31^~2, 3~^~08/01/2004~ -~21239~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~211~^1.14^4^0.06^~1~^~A~^^^1^0.97^1.25^3^0.93^1.33^~2, 3~^~08/01/2004~ -~21239~^~212~^1.32^4^0.09^~1~^~A~^^^1^1.15^1.53^3^1.01^1.61^~2, 3~^~08/01/2004~ -~21239~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~214~^0.22^4^0.07^~1~^~A~^^^1^0.15^0.44^3^-0.01^0.45^~1, 2, 3~^~08/01/2004~ -~21239~^~255~^58.41^4^0.62^~1~^~A~^^^1^56.87^59.84^3^56.42^60.38^~2, 3~^~08/01/2004~ -~21239~^~303~^2.73^4^0.16^~1~^~A~^^^1^2.24^2.95^3^2.20^3.26^~2, 3~^~08/01/2004~ -~21239~^~309~^2.47^4^0.10^~1~^~A~^^^1^2.18^2.65^3^2.14^2.79^~2, 3~^~08/01/2004~ -~21239~^~418~^1.45^4^0.08^~1~^~A~^^^1^1.26^1.65^3^1.18^1.71^~2, 3~^~08/01/2004~ -~21240~^~203~^14.87^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~204~^11.60^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~205~^14.20^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~207~^1.83^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~209~^9.90^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~211~^0.82^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~212~^1.09^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~213~^0.21^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~214~^0.29^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~255~^57.50^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~303~^2.34^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~309~^2.58^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~418~^1.54^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~203~^12.62^4^0.21^~1~^~A~^^^1^12.06^13.06^3^11.92^13.31^~2, 3~^~08/01/2004~ -~21241~^~204~^8.75^4^0.13^~1~^~A~^^^1^8.40^9.00^3^8.32^9.17^~2, 3~^~08/01/2004~ -~21241~^~205~^28.45^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~207~^1.92^4^0.06^~1~^~A~^^^1^1.80^2.09^3^1.71^2.13^~2, 3~^~08/01/2004~ -~21241~^~209~^19.25^4^0.59^~1~^~A~^^^1^18.10^20.90^3^17.36^21.13^~2, 3~^~08/01/2004~ -~21241~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~211~^2.43^4^0.33^~1~^~A~^^^1^1.84^3.38^3^1.35^3.49^~2, 3~^~08/01/2004~ -~21241~^~212~^2.66^4^0.37^~1~^~A~^^^1^1.91^3.57^3^1.48^3.84^~2, 3~^~08/01/2004~ -~21241~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~214~^0.51^4^0.18^~1~^~A~^^^1^0.15^0.84^3^-0.09^1.10^~1, 2, 3~^~08/01/2004~ -~21241~^~255~^48.25^4^0.57^~1~^~A~^^^1^47.54^49.95^3^46.43^50.07^~2, 3~^~08/01/2004~ -~21241~^~303~^3.35^4^0.32^~1~^~A~^^^1^2.76^4.23^3^2.33^4.37^~2, 3~^~08/01/2004~ -~21241~^~309~^2.10^4^0.04^~1~^~A~^^^1^2.02^2.20^3^1.95^2.24^~2, 3~^~08/01/2004~ -~21241~^~418~^1.27^4^0.03^~1~^~A~^^^1^1.17^1.31^3^1.16^1.37^~2, 3~^~08/01/2004~ -~21242~^~203~^13.06^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~204~^11.50^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~205~^24.97^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~207~^2.41^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~209~^16.60^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~211~^2.06^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~212~^2.23^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~213~^0.23^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~214~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~255~^48.06^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~303~^2.78^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~309~^2.18^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~418~^1.30^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~203~^16.52^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~204~^14.20^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~205~^11.71^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~207~^1.73^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~209~^8.60^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~211~^0.47^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~212~^0.62^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~213~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~214~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~255~^55.84^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~303~^2.94^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~309~^3.05^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~418~^1.92^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~203~^13.78^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~204~^8.10^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~205~^21.55^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21244~^~207~^1.63^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~209~^16.10^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~211~^0.87^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~212~^1.14^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~214~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~255~^54.94^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~303~^1.50^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~309~^0.61^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~418~^0.33^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~203~^14.73^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~204~^5.00^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~205~^18.88^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~207~^1.72^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~209~^13.40^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~211~^1.87^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~212~^1.80^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~214~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~255~^59.67^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~303~^1.55^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~309~^0.57^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~418~^0.33^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21246~^~203~^16.46^6^0.43^~1~^~A~^^^1^14.94^17.94^5^15.33^17.58^~4~^~08/01/2012~ -~21246~^~204~^22.55^6^0.48^~1~^~A~^^^1^21.10^24.67^5^21.32^23.79^~4~^~08/01/2012~ -~21246~^~205~^14.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~207~^2.52^6^0.04^~1~^~A~^^^1^2.35^2.66^5^2.39^2.64^~4~^~08/01/2012~ -~21246~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2004~ -~21246~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21246~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2004~ -~21246~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2004~ -~21246~^~214~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~08/01/2012~ -~21246~^~255~^44.15^6^0.84^~1~^~A~^^^1^41.85^47.50^5^41.97^46.33^~4~^~08/01/2012~ -~21246~^~269~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~4~^~08/01/2012~ -~21246~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21246~^~303~^0.62^6^0.01^~1~^~A~^^^1^0.58^0.67^5^0.58^0.65^~4~^~08/01/2012~ -~21246~^~309~^0.61^6^0.01^~1~^~A~^^^1^0.56^0.65^5^0.56^0.64^~4~^~08/01/2012~ -~21246~^~418~^0.33^4^0.00^~1~^~A~^^^1^0.33^0.33^^^^~1, 2, 3~^~08/01/2004~ -~21247~^~203~^3.73^6^0.12^~1~^~A~^^^1^3.47^4.20^5^3.41^4.03^~2, 3~^~08/01/2012~ -~21247~^~204~^14.10^6^0.42^~1~^~A~^^^1^12.50^14.90^5^13.00^15.19^~2, 3~^~08/01/2012~ -~21247~^~205~^39.73^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~207~^1.83^6^0.05^~1~^~A~^^^1^1.56^1.97^5^1.67^1.98^~2, 3~^~08/01/2012~ -~21247~^~209~^35.20^3^0.65^~1~^~A~^^^1^33.90^35.90^2^32.40^37.99^~2, 3~^~08/01/2012~ -~21247~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~211~^0.40^3^0.21^~1~^~A~^^^1^0.18^0.83^2^-0.52^1.32^~1, 2, 3~^~08/01/2012~ -~21247~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21247~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21247~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2004~ -~21247~^~255~^40.62^6^0.64^~1~^~A~^^^1^38.40^42.60^5^38.96^42.27^~2, 3~^~08/01/2012~ -~21247~^~269~^0.40^3^0.21^~1~^~A~^^^1^0.18^0.83^2^-0.52^1.32^~2, 3~^~08/01/2012~ -~21247~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~303~^0.93^6^0.04^~1~^~A~^^^1^0.80^1.07^5^0.82^1.03^~2, 3~^~08/01/2012~ -~21247~^~309~^0.54^6^0.03^~1~^~A~^^^1^0.41^0.65^5^0.44^0.63^~2, 3~^~08/01/2012~ -~21247~^~323~^2.00^3^0.17^~1~^~A~^^^1^1.70^2.30^2^1.25^2.74^~2, 3~^~08/01/2012~ -~21247~^~341~^0.11^3^6.0e-03^~1~^~A~^^^1^0.10^0.12^2^0.08^0.13^~2, 3~^~08/01/2012~ -~21247~^~342~^7.44^3^0.49^~1~^~A~^^^1^6.79^8.40^2^5.33^9.54^~2, 3~^~08/01/2012~ -~21247~^~343~^2.38^3^0.22^~1~^~A~^^^1^1.93^2.68^2^1.39^3.36^~2, 3~^~08/01/2012~ -~21247~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~346~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.10^~1, 2, 3~^~08/01/2012~ -~21247~^~347~^0.09^3^0.09^~1~^~A~^^^1^0.00^0.28^2^-0.30^0.49^~1, 2, 3~^~08/01/2012~ -~21248~^~203~^3.49^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~204~^2.60^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~205~^23.62^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~207~^1.04^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~209~^1.30^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~210~^8.63^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~211~^0.55^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~212~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21248~^~213~^5.44^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~214~^0.91^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~255~^69.25^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~303~^1.04^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~309~^0.44^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~418~^0.59^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21249~^~203~^3.23^6^0.06^~1~^~A~^^^1^3.04^3.44^5^3.05^3.39^~2, 3~^~08/01/2012~ -~21249~^~204~^12.48^6^0.16^~1~^~A~^^^1^11.90^13.00^5^12.06^12.90^~2, 3~^~08/01/2012~ -~21249~^~205~^38.70^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~207~^1.64^6^0.05^~1~^~A~^^^1^1.44^1.81^5^1.51^1.77^~2, 3~^~08/01/2012~ -~21249~^~209~^35.97^3^0.44^~1~^~A~^^^1^35.10^36.60^2^34.03^37.89^~2, 3~^~08/01/2012~ -~21249~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~211~^0.51^3^0.16^~1~^~A~^^^1^0.18^0.74^2^-0.21^1.24^~1, 2, 3~^~08/01/2012~ -~21249~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21249~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21249~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21249~^~255~^43.95^6^0.39^~1~^~A~^^^1^42.50^45.20^5^42.93^44.96^~2, 3~^~08/01/2012~ -~21249~^~269~^0.51^3^0.16^~1~^~A~^^^1^0.18^0.74^2^-0.21^1.24^~2, 3~^~08/01/2012~ -~21249~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~303~^0.73^6^0.04^~1~^~A~^^^1^0.63^0.88^5^0.62^0.82^~2, 3~^~08/01/2012~ -~21249~^~309~^0.44^6^0.02^~1~^~A~^^^1^0.39^0.52^5^0.38^0.49^~2, 3~^~08/01/2012~ -~21249~^~323~^2.45^3^0.07^~1~^~A~^^^1^2.30^2.55^2^2.12^2.77^~2, 3~^~08/01/2012~ -~21249~^~341~^0.06^3^6.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.03^0.08^~2, 3~^~08/01/2012~ -~21249~^~342~^4.75^3^0.58^~1~^~A~^^^1^4.15^5.92^2^2.24^7.26^~2, 3~^~08/01/2012~ -~21249~^~343~^0.52^3^0.14^~1~^~A~^^^1^0.28^0.77^2^-0.08^1.12^~2, 3~^~08/01/2012~ -~21249~^~344~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~2, 3~^~08/01/2012~ -~21249~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21249~^~346~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.03^0.16^~2, 3~^~08/01/2012~ -~21249~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21250~^~203~^14.85^6^0.11^~1~^~A~^^^1^14.37^15.19^5^14.55^15.15^~4~^~07/01/2012~ -~21250~^~204~^10.55^6^0.25^~1~^~A~^^^1^9.65^11.60^5^9.88^11.21^~4~^~07/01/2012~ -~21250~^~205~^26.76^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~207~^1.87^6^0.01^~1~^~A~^^^1^1.82^1.93^5^1.82^1.91^~4~^~07/01/2012~ -~21250~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21250~^~211~^2.27^3^0.06^~1~^~A~^^^1^2.20^2.40^2^1.98^2.55^~4~^~07/01/2012~ -~21250~^~212~^2.73^3^0.13^~1~^~A~^^^1^2.60^3.00^2^2.15^3.30^~4~^~07/01/2012~ -~21250~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2004~ -~21250~^~214~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^2^0.60^0.60^~4~^~07/01/2012~ -~21250~^~255~^45.97^6^0.42^~1~^~A~^^^1^44.27^47.18^5^44.87^47.06^~4~^~07/01/2012~ -~21250~^~269~^5.60^3^0.11^~1~^~A~^^^1^5.40^5.80^2^5.10^6.09^~4~^~07/01/2012~ -~21250~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21250~^~303~^2.87^6^0.22^~1~^~A~^^^1^2.32^3.86^5^2.28^3.45^~4~^~07/01/2012~ -~21250~^~309~^2.38^6^0.05^~1~^~A~^^^1^2.20^2.51^5^2.23^2.52^~4~^~07/01/2012~ -~21250~^~323~^0.04^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.02^0.05^~2, 3~^~10/01/2004~ -~21250~^~343~^0.07^3^0.02^~1~^~A~^^^1^0.05^0.11^2^-0.01^0.15^~2, 3~^~10/01/2004~ -~21250~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21250~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21250~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21251~^~203~^14.57^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~204~^14.81^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~205~^23.71^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21251~^~207~^2.32^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~209~^18.60^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~210~^1.69^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~212~^1.85^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~213~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~214~^0.73^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~255~^44.59^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~269~^4.49^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~287~^0.15^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~303~^2.50^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~309~^2.40^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~342~^0.48^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~343~^0.14^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21252~^~203~^10.74^4^0.29^~1~^~A~^^^1^10.15^11.55^3^9.80^11.67^~2, 3~^~07/01/2004~ -~21252~^~204~^12.84^4^0.04^~1~^~A~^^^1^12.74^12.94^3^12.70^12.97^~2, 3~^~07/01/2004~ -~21252~^~205~^18.55^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21252~^~207~^1.43^4^0.05^~1~^~A~^^^1^1.35^1.57^3^1.26^1.59^~2, 3~^~07/01/2004~ -~21252~^~209~^13.53^3^0.64^~1~^~A~^^^1^12.70^14.80^2^10.76^16.30^~2, 3~^~07/01/2004~ -~21252~^~210~^1.70^4^0.04^~1~^~A~^^^1^1.63^1.84^3^1.54^1.85^~2, 3~^~07/01/2004~ -~21252~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~212~^1.73^4^0.01^~1~^~A~^^^1^1.70^1.77^3^1.67^1.79^~2, 3~^~07/01/2004~ -~21252~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~214~^0.67^4^0.07^~1~^~A~^^^1^0.54^0.85^3^0.44^0.89^~2, 3~^~07/01/2004~ -~21252~^~255~^56.43^4^0.72^~1~^~A~^^^1^54.76^58.24^3^54.12^58.74^~2, 3~^~07/01/2004~ -~21252~^~269~^4.22^4^0.12^~1~^~A~^^^1^4.04^4.59^3^3.81^4.62^~2, 3~^~07/01/2004~ -~21252~^~287~^0.11^4^0.02^~1~^~A~^^^1^0.07^0.17^3^0.03^0.18^~1, 2, 3~^~07/01/2004~ -~21252~^~303~^4.37^3^0.72^~1~^~A~^^^1^3.20^5.70^2^1.24^7.49^~2, 3~^~07/01/2004~ -~21252~^~309~^2.83^3^0.41^~1~^~A~^^^1^2.00^3.30^2^1.03^4.63^~2, 3~^~07/01/2004~ -~21252~^~323~^0.15^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~341~^1.95^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~342~^0.45^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~343~^0.39^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21252~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21252~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~203~^11.19^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~204~^15.33^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~205~^16.70^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21253~^~207~^1.86^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~210~^1.61^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~212~^1.66^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~213~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~214~^0.69^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~255~^54.92^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~269~^4.11^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~303~^2.00^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~309~^1.60^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~342~^3.56^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~343~^0.37^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~203~^13.94^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~204~^15.66^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~205~^13.74^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21254~^~207~^1.37^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~209~^10.30^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~210~^1.45^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~212~^1.43^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~214~^0.57^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~255~^55.29^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~269~^3.52^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~303~^2.80^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~309~^3.00^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~203~^14.47^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~204~^17.06^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~205~^13.52^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21255~^~207~^1.67^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~209~^10.10^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~210~^1.21^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~212~^1.27^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~213~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~214~^0.55^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~255~^53.28^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~269~^3.61^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~287~^0.51^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~303~^5.30^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~309~^3.50^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~323~^0.06^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~341~^0.83^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~342~^0.21^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~343~^0.25^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21256~^~203~^18.20^6^0.41^~1~^~A~^^^1^17.10^19.70^5^17.13^19.26^~2, 3~^~05/01/2014~ -~21256~^~204~^15.25^6^0.32^~1~^~A~^^^1^14.50^16.50^5^14.42^16.07^~2, 3~^~05/01/2014~ -~21256~^~205~^20.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~207~^3.05^6^0.07^~1~^~A~^^^1^2.82^3.21^5^2.86^3.23^~2, 3~^~05/01/2014~ -~21256~^~209~^20.57^3^1.14^~1~^~A~^^^1^18.40^22.30^2^15.63^25.50^~2, 3~^~05/01/2014~ -~21256~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2004~ -~21256~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~21256~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~21256~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~21256~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~21256~^~255~^43.02^6^0.89^~1~^~A~^^^1^39.90^46.20^5^40.70^45.32^~2, 3~^~05/01/2014~ -~21256~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2014~ -~21256~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2004~ -~21256~^~303~^0.62^6^0.02^~1~^~A~^^^1^0.58^0.74^5^0.56^0.68^~2, 3~^~05/01/2014~ -~21256~^~309~^0.70^6^0.01^~1~^~A~^^^1^0.67^0.79^5^0.65^0.74^~2, 3~^~05/01/2014~ -~21256~^~323~^3.93^3^0.43^~1~^~A~^^^1^3.49^4.80^2^2.06^5.79^~2, 3~^~05/01/2014~ -~21256~^~341~^0.15^3^8.0e-03^~1~^~A~^^^1^0.14^0.16^2^0.11^0.18^~2, 3~^~05/01/2014~ -~21256~^~342~^7.82^3^0.78^~1~^~A~^^^1^6.41^9.12^2^4.44^11.19^~2, 3~^~05/01/2014~ -~21256~^~343~^0.72^3^0.02^~1~^~A~^^^1^0.68^0.77^2^0.61^0.82^~2, 3~^~05/01/2014~ -~21256~^~344~^0.20^3^0.02^~1~^~A~^^^1^0.15^0.23^2^0.09^0.30^~2, 3~^~05/01/2014~ -~21256~^~345~^0.23^3^0.02^~1~^~A~^^^1^0.18^0.28^2^0.11^0.35^~2, 3~^~05/01/2014~ -~21256~^~346~^0.08^3^6.0e-03^~1~^~A~^^^1^0.06^0.09^2^0.05^0.10^~2, 3~^~05/01/2014~ -~21256~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2004~ -~21256~^~418~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.16^2^0.10^0.19^~2, 3~^~05/01/2014~ -~21258~^~203~^10.29^6^0.13^~1~^~A~^^^1^9.75^10.63^5^9.95^10.63^~4~^~07/01/2012~ -~21258~^~204~^12.45^6^0.70^~1~^~A~^^^1^9.66^14.50^5^10.64^14.26^~4~^~07/01/2012~ -~21258~^~205~^26.69^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~207~^2.13^6^0.02^~1~^~A~^^^1^2.04^2.21^5^2.06^2.19^~4~^~07/01/2012~ -~21258~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21258~^~211~^1.20^3^0.00^~1~^~A~^^^1^1.20^1.20^2^1.20^1.20^~4~^~07/01/2012~ -~21258~^~212~^1.47^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.32^1.61^~4~^~07/01/2012~ -~21258~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21258~^~214~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~4~^~07/01/2012~ -~21258~^~255~^48.44^6^0.54^~1~^~A~^^^1^46.35^50.03^5^47.03^49.84^~4~^~07/01/2012~ -~21258~^~269~^3.53^3^0.03^~1~^~A~^^^1^3.50^3.60^2^3.39^3.67^~4~^~07/01/2012~ -~21258~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2004~ -~21258~^~303~^1.50^6^0.03^~1~^~A~^^^1^1.35^1.57^5^1.39^1.59^~4~^~07/01/2012~ -~21258~^~309~^0.49^6^6.0e-03^~1~^~A~^^^1^0.48^0.52^5^0.47^0.50^~4~^~08/01/2004~ -~21259~^~203~^12.14^6^0.09^~1~^~A~^^^1^11.87^12.44^5^11.88^12.38^~4~^~07/01/2012~ -~21259~^~204~^14.69^6^0.52^~1~^~A~^^^1^13.53^16.94^5^13.34^16.04^~4~^~07/01/2012~ -~21259~^~205~^26.22^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~207~^2.25^6^0.05^~1~^~A~^^^1^2.09^2.46^5^2.12^2.38^~4~^~07/01/2012~ -~21259~^~210~^0.07^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.07^0.21^~1, 4~^~07/01/2012~ -~21259~^~211~^1.00^3^0.10^~1~^~A~^^^1^0.80^1.10^2^0.57^1.43^~4~^~07/01/2012~ -~21259~^~212~^1.37^3^0.03^~1~^~A~^^^1^1.30^1.40^2^1.22^1.51^~4~^~07/01/2012~ -~21259~^~213~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.08^0.13^~1, 4~^~07/01/2012~ -~21259~^~214~^0.57^3^0.06^~1~^~A~^^^1^0.50^0.70^2^0.28^0.85^~4~^~07/01/2012~ -~21259~^~255~^44.70^6^0.56^~1~^~A~^^^1^42.50^45.99^5^43.25^46.14^~4~^~07/01/2012~ -~21259~^~269~^3.02^3^0.13^~1~^~A~^^^1^2.80^3.27^2^2.43^3.61^~4~^~07/01/2012~ -~21259~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~10/01/2004~ -~21259~^~303~^1.79^6^0.09^~1~^~A~^^^1^1.47^2.13^5^1.56^2.02^~4~^~07/01/2012~ -~21259~^~309~^0.62^6^7.0e-03^~1~^~A~^^^1^0.60^0.65^5^0.60^0.63^~4~^~07/01/2012~ -~21260~^~203~^8.86^6^0.38^~1~^~A~^^^1^7.87^9.98^5^7.87^9.84^~4~^~02/01/2011~ -~21260~^~204~^12.70^6^0.38^~1~^~A~^^^1^11.70^14.20^5^11.71^13.68^~4~^~02/01/2011~ -~21260~^~205~^19.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~207~^1.57^6^0.07^~1~^~A~^^^1^1.36^1.78^5^1.38^1.75^~4~^~02/01/2011~ -~21260~^~209~^14.78^6^0.88^~1~^~A~^^^1^12.80^18.80^5^12.51^17.05^~4~^~02/01/2011~ -~21260~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~02/01/2011~ -~21260~^~211~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^2^0.20^0.20^~4~^~02/01/2011~ -~21260~^~212~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^2^0.30^0.30^~4~^~02/01/2011~ -~21260~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21260~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21260~^~255~^57.02^6^0.72^~1~^~A~^^^1^55.30^59.80^5^55.14^58.88^~4~^~02/01/2011~ -~21260~^~269~^0.90^3^0.00^~1~^~A~^^^1^0.90^0.90^2^0.90^0.90^~4~^~02/01/2011~ -~21260~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21260~^~303~^1.19^6^0.01^~1~^~A~^^^1^1.14^1.23^5^1.14^1.22^~4~^~02/01/2011~ -~21260~^~309~^1.75^6^0.03^~1~^~A~^^^1^1.63^1.84^5^1.66^1.83^~4~^~02/01/2011~ -~21260~^~323~^0.60^4^0.03^~1~^~A~^^^1^0.54^0.66^3^0.51^0.69^~2, 3~^~10/01/2004~ -~21260~^~341~^0.04^4^6.0e-03^~1~^~A~^^^1^0.02^0.05^3^0.01^0.05^~2, 3~^~10/01/2004~ -~21260~^~342~^2.16^4^0.16^~1~^~A~^^^1^1.90^2.61^3^1.64^2.66^~2, 3~^~10/01/2004~ -~21260~^~343~^1.11^4^0.04^~1~^~A~^^^1^1.04^1.26^3^0.95^1.27^~2, 3~^~10/01/2004~ -~21260~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21260~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21260~^~418~^0.93^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21261~^~203~^9.25^6^0.27^~1~^~A~^^^1^8.33^10.10^5^8.53^9.96^~4~^~03/01/2011~ -~21261~^~204~^9.75^6^0.40^~1~^~A~^^^1^8.60^11.20^5^8.71^10.78^~4~^~03/01/2011~ -~21261~^~205~^20.23^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~207~^1.99^6^0.05^~1~^~A~^^^1^1.80^2.21^5^1.84^2.13^~4~^~03/01/2011~ -~21261~^~209~^13.78^6^0.39^~1~^~A~^^^1^12.10^14.80^5^12.76^14.80^~4~^~03/01/2011~ -~21261~^~210~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~4~^~03/01/2011~ -~21261~^~211~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~4~^~03/01/2011~ -~21261~^~212~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^2^0.60^0.60^~4~^~03/01/2011~ -~21261~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21261~^~214~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~03/01/2011~ -~21261~^~255~^58.78^6^0.84^~1~^~A~^^^1^57.10^62.30^5^56.61^60.95^~4~^~03/01/2011~ -~21261~^~269~^1.57^3^0.08^~1~^~A~^^^1^1.40^1.70^2^1.18^1.94^~4~^~03/01/2011~ -~21261~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21261~^~303~^1.67^6^0.07^~1~^~A~^^^1^1.32^1.83^5^1.47^1.86^~4~^~03/01/2011~ -~21261~^~309~^1.37^6^0.03^~1~^~A~^^^1^1.24^1.46^5^1.27^1.46^~4~^~03/01/2011~ -~21261~^~323~^0.40^4^0.02^~1~^~A~^^^1^0.34^0.43^3^0.32^0.46^~2, 3~^~10/01/2004~ -~21261~^~341~^0.02^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~10/01/2004~ -~21261~^~342~^0.91^4^0.08^~1~^~A~^^^1^0.78^1.16^3^0.63^1.18^~2, 3~^~10/01/2004~ -~21261~^~343~^0.45^4^0.05^~1~^~A~^^^1^0.35^0.56^3^0.27^0.62^~2, 3~^~10/01/2004~ -~21261~^~344~^0.03^4^9.0e-03^~1~^~A~^^^1^0.00^0.04^3^-3.0e-03^0.05^~1, 2, 3~^~10/01/2004~ -~21261~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21261~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21261~^~418~^0.84^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21262~^~203~^13.30^6^0.19^~1~^~A~^^^1^12.70^14.00^5^12.79^13.81^~4~^~03/01/2011~ -~21262~^~204~^6.35^6^0.19^~1~^~A~^^^1^5.50^6.70^5^5.85^6.84^~4~^~03/01/2011~ -~21262~^~205~^19.69^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~207~^2.25^6^0.06^~1~^~A~^^^1^2.00^2.41^5^2.08^2.40^~4~^~03/01/2011~ -~21262~^~209~^13.93^6^0.67^~1~^~A~^^^1^11.30^15.60^5^12.19^15.67^~4~^~03/01/2011~ -~21262~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21262~^~211~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~03/01/2011~ -~21262~^~212~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~4~^~03/01/2011~ -~21262~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21262~^~214~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~03/01/2011~ -~21262~^~255~^58.42^6^0.42^~1~^~A~^^^1^56.90^59.50^5^57.33^59.49^~4~^~03/01/2011~ -~21262~^~269~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~4~^~03/01/2011~ -~21262~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21262~^~303~^1.59^6^0.08^~1~^~A~^^^1^1.22^1.77^5^1.37^1.80^~4~^~03/01/2011~ -~21262~^~309~^0.76^6^0.01^~1~^~A~^^^1^0.72^0.79^5^0.73^0.79^~4~^~03/01/2011~ -~21262~^~323~^0.35^4^0.05^~1~^~A~^^^1^0.22^0.45^3^0.19^0.50^~2, 3~^~10/01/2004~ -~21262~^~341~^0.02^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~10/01/2004~ -~21262~^~342~^0.98^4^0.06^~1~^~A~^^^1^0.80^1.11^3^0.76^1.20^~2, 3~^~10/01/2004~ -~21262~^~343~^0.47^4^0.04^~1~^~A~^^^1^0.37^0.56^3^0.34^0.60^~2, 3~^~10/01/2004~ -~21262~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.02^0.08^~1, 2, 3~^~10/01/2004~ -~21262~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21262~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21262~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21262~^~418~^0.12^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21263~^~203~^11.81^4^0.18^~1~^~A~^^^1^11.36^12.13^3^11.21^12.40^~2, 3~^~10/01/2004~ -~21263~^~204~^12.10^4^0.50^~1~^~A~^^^1^10.80^13.20^3^10.50^13.69^~2, 3~^~10/01/2004~ -~21263~^~205~^17.22^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~207~^2.05^4^0.04^~1~^~A~^^^1^1.94^2.14^3^1.91^2.18^~2, 3~^~10/01/2004~ -~21263~^~209~^13.25^4^0.47^~1~^~A~^^^1^12.20^14.40^3^11.72^14.77^~2, 3~^~10/01/2004~ -~21263~^~210~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~211~^0.22^4^9.0e-03^~1~^~A~^^^1^0.21^0.25^3^0.19^0.25^~2, 3~^~10/01/2004~ -~21263~^~212~^0.63^4^0.02^~1~^~A~^^^1^0.56^0.69^3^0.54^0.71^~2, 3~^~10/01/2004~ -~21263~^~213~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~214~^0.17^4^0.02^~1~^~A~^^^1^0.15^0.24^3^0.09^0.24^~1, 2, 3~^~10/01/2004~ -~21263~^~255~^56.82^4^0.40^~1~^~A~^^^1^55.62^57.45^3^55.52^58.12^~2, 3~^~10/01/2004~ -~21263~^~303~^2.22^4^0.21^~1~^~A~^^^1^1.89^2.80^3^1.54^2.89^~2, 3~^~10/01/2004~ -~21263~^~309~^2.15^4^9.0e-03^~1~^~A~^^^1^2.13^2.17^3^2.12^2.17^~2, 3~^~10/01/2004~ -~21263~^~323~^0.43^4^0.04^~1~^~A~^^^1^0.33^0.55^3^0.28^0.57^~2, 3~^~10/01/2004~ -~21263~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~10/01/2004~ -~21263~^~342~^3.02^4^0.36^~1~^~A~^^^1^2.13^3.65^3^1.86^4.17^~2, 3~^~10/01/2004~ -~21263~^~343~^1.69^4^0.08^~1~^~A~^^^1^1.43^1.80^3^1.41^1.97^~2, 3~^~10/01/2004~ -~21263~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.01^0.08^~1, 2, 3~^~10/01/2004~ -~21263~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~418~^0.96^4^0.04^~1~^~A~^^^1^0.85^1.03^3^0.82^1.08^~2, 3~^~10/01/2004~ -~21264~^~203~^7.35^6^0.13^~1~^~A~^^^1^6.89^7.75^5^7.00^7.69^~4~^~03/01/2011~ -~21264~^~204~^6.05^6^0.30^~1~^~A~^^^1^4.70^6.60^5^5.25^6.84^~4~^~03/01/2011~ -~21264~^~205~^31.23^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~207~^2.20^6^0.06^~1~^~A~^^^1^1.96^2.40^5^2.02^2.38^~4~^~03/01/2011~ -~21264~^~209~^21.58^6^0.77^~1~^~A~^^^1^18.30^23.40^5^19.59^23.56^~4~^~03/01/2011~ -~21264~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~03/01/2011~ -~21264~^~211~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~03/01/2011~ -~21264~^~212~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^2^0.50^0.50^~4~^~03/01/2011~ -~21264~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21264~^~214~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~4~^~03/01/2011~ -~21264~^~255~^53.17^6^0.54^~1~^~A~^^^1^51.70^54.60^5^51.77^54.56^~4~^~03/01/2011~ -~21264~^~269~^1.73^3^0.03^~1~^~A~^^^1^1.70^1.80^2^1.59^1.87^~4~^~03/01/2011~ -~21264~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21264~^~303~^2.37^6^0.03^~1~^~A~^^^1^2.29^2.50^5^2.28^2.46^~4~^~03/01/2011~ -~21264~^~309~^0.86^6^0.01^~1~^~A~^^^1^0.81^0.91^5^0.81^0.90^~4~^~10/01/2004~ -~21264~^~323~^0.50^4^0.02^~1~^~A~^^^1^0.44^0.53^3^0.43^0.56^~2, 3~^~10/01/2004~ -~21264~^~341~^0.02^4^6.0e-03^~1~^~A~^^^1^0.00^0.03^3^-3.0e-03^0.03^~1, 2, 3~^~10/01/2004~ -~21264~^~342~^1.78^4^0.13^~1~^~A~^^^1^1.45^2.09^3^1.34^2.21^~2, 3~^~10/01/2004~ -~21264~^~343~^0.53^4^0.05^~1~^~A~^^^1^0.38^0.59^3^0.37^0.69^~2, 3~^~10/01/2004~ -~21264~^~344~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.03^0.07^~1, 2, 3~^~10/01/2004~ -~21264~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21264~^~346~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~10/01/2004~ -~21264~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21264~^~418~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21265~^~203~^7.03^6^0.19^~1~^~A~^^^1^6.57^7.86^5^6.53^7.52^~2, 3~^~05/01/2013~ -~21265~^~204~^6.80^6^0.13^~1~^~A~^^^1^6.20^7.10^5^6.46^7.13^~2, 3~^~05/01/2013~ -~21265~^~205~^23.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~207~^1.89^6^0.01^~1~^~A~^^^1^1.85^1.94^5^1.86^1.92^~2, 3~^~05/01/2013~ -~21265~^~209~^14.50^3^0.23^~1~^~A~^^^1^14.10^14.90^2^13.50^15.49^~2, 3~^~05/01/2013~ -~21265~^~210~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~05/01/2013~ -~21265~^~211~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~05/01/2013~ -~21265~^~212~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~05/01/2013~ -~21265~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~2, 3~^~05/01/2013~ -~21265~^~214~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~05/01/2013~ -~21265~^~255~^60.90^6^0.23^~1~^~A~^^^1^60.30^61.90^5^60.28^61.51^~2, 3~^~05/01/2013~ -~21265~^~269~^2.10^3^0.05^~1~^~A~^^^1^2.00^2.20^2^1.85^2.34^~2, 3~^~05/01/2013~ -~21265~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~303~^1.82^6^0.02^~1~^~A~^^^1^1.76^1.91^5^1.75^1.88^~2, 3~^~05/01/2013~ -~21265~^~309~^0.88^6^0.02^~1~^~A~^^^1^0.83^0.99^5^0.82^0.94^~2, 3~^~05/01/2013~ -~21265~^~323~^0.28^2^^~1~^~A~^^^1^0.26^0.30^1^^^^~05/01/2013~ -~21265~^~341~^0.03^2^^~1~^~A~^^^1^0.01^0.04^1^^^~1~^~05/01/2013~ -~21265~^~342~^0.78^2^^~1~^~A~^^^1^0.73^0.84^1^^^^~05/01/2013~ -~21265~^~343~^0.38^2^^~1~^~A~^^^1^0.34^0.42^1^^^^~05/01/2013~ -~21265~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21265~^~345~^0.03^2^^~1~^~A~^^^1^0.02^0.05^1^^^~1~^~05/01/2013~ -~21265~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21265~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~10/01/2004~ -~21265~^~418~^0.27^3^0.02^~1~^~A~^^^1^0.25^0.31^2^0.18^0.35^~2, 3~^~05/01/2013~ -~21266~^~203~^9.84^4^0.37^~1~^~A~^^^1^9.11^10.86^3^8.65^11.03^~2, 3~^~10/01/2004~ -~21266~^~204~^6.42^4^0.22^~1~^~A~^^^1^5.80^6.80^3^5.70^7.14^~2, 3~^~10/01/2004~ -~21266~^~205~^20.51^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~207~^2.22^4^0.03^~1~^~A~^^^1^2.12^2.29^3^2.10^2.33^~2, 3~^~10/01/2004~ -~21266~^~209~^15.10^4^0.35^~1~^~A~^^^1^14.30^15.70^3^13.96^16.23^~2, 3~^~10/01/2004~ -~21266~^~210~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~211~^0.73^4^0.34^~1~^~A~^^^1^0.15^1.44^3^-0.35^1.82^~1, 2, 3~^~10/01/2004~ -~21266~^~212~^0.55^4^0.01^~1~^~A~^^^1^0.54^0.59^3^0.51^0.59^~2, 3~^~10/01/2004~ -~21266~^~213~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~214~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~255~^61.00^4^0.32^~1~^~A~^^^1^60.13^61.69^3^59.95^62.04^~2, 3~^~10/01/2004~ -~21266~^~303~^1.56^4^0.14^~1~^~A~^^^1^1.28^1.90^3^1.09^2.04^~2, 3~^~10/01/2004~ -~21266~^~309~^0.65^4^0.01^~1~^~A~^^^1^0.62^0.69^3^0.60^0.69^~2, 3~^~10/01/2004~ -~21266~^~323~^0.42^4^0.02^~1~^~A~^^^1^0.38^0.49^3^0.35^0.49^~2, 3~^~10/01/2004~ -~21266~^~341~^0.02^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~10/01/2004~ -~21266~^~342~^1.22^4^0.09^~1~^~A~^^^1^1.01^1.45^3^0.93^1.51^~2, 3~^~10/01/2004~ -~21266~^~343~^0.42^4^0.02^~1~^~A~^^^1^0.37^0.46^3^0.36^0.48^~2, 3~^~10/01/2004~ -~21266~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.08^3^-0.03^0.09^~1, 2, 3~^~10/01/2004~ -~21266~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~346~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~10/01/2004~ -~21266~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~418~^0.33^4^0.00^~1~^~A~^^^1^0.33^0.33^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~203~^9.13^4^0.30^~1~^~A~^^^1^8.45^9.69^3^8.17^10.09^~2, 3~^~10/01/2004~ -~21267~^~204~^7.27^4^0.12^~1~^~A~^^^1^7.00^7.60^3^6.87^7.67^~2, 3~^~10/01/2004~ -~21267~^~205~^20.32^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~207~^2.06^4^0.05^~1~^~A~^^^1^1.97^2.21^3^1.88^2.23^~2, 3~^~10/01/2004~ -~21267~^~209~^14.95^4^0.34^~1~^~A~^^^1^14.30^15.80^3^13.85^16.04^~2, 3~^~10/01/2004~ -~21267~^~210~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~211~^0.17^4^0.01^~1~^~A~^^^1^0.15^0.22^3^0.11^0.22^~1, 2, 3~^~10/01/2004~ -~21267~^~212~^0.71^4^0.01^~1~^~A~^^^1^0.68^0.74^3^0.67^0.74^~2, 3~^~10/01/2004~ -~21267~^~213~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~214~^0.17^4^0.02^~1~^~A~^^^1^0.15^0.25^3^0.09^0.25^~1, 2, 3~^~10/01/2004~ -~21267~^~255~^61.21^4^0.14^~1~^~A~^^^1^60.87^61.57^3^60.75^61.67^~2, 3~^~10/01/2004~ -~21267~^~303~^2.00^4^0.09^~1~^~A~^^^1^1.76^2.24^3^1.68^2.30^~2, 3~^~10/01/2004~ -~21267~^~309~^1.38^4^0.06^~1~^~A~^^^1^1.26^1.53^3^1.18^1.58^~2, 3~^~10/01/2004~ -~21267~^~323~^0.38^4^0.04^~1~^~A~^^^1^0.29^0.46^3^0.25^0.51^~2, 3~^~10/01/2004~ -~21267~^~341~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-3.0e-03^0.02^~1, 2, 3~^~10/01/2004~ -~21267~^~342~^1.15^4^0.04^~1~^~A~^^^1^1.07^1.25^3^1.01^1.29^~2, 3~^~10/01/2004~ -~21267~^~343~^0.42^4^0.01^~1~^~A~^^^1^0.40^0.47^3^0.37^0.47^~2, 3~^~10/01/2004~ -~21267~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~346~^0.02^4^9.0e-03^~1~^~A~^^^1^0.00^0.04^3^-5.0e-03^0.05^~1, 2, 3~^~10/01/2004~ -~21267~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~418~^0.60^4^0.04^~1~^~A~^^^1^0.51^0.69^3^0.46^0.74^~2, 3~^~10/01/2004~ -~21268~^~203~^4.32^6^0.07^~1~^~A~^^^1^4.10^4.57^5^4.11^4.52^~2, 3~^~05/01/2013~ -~21268~^~204~^21.50^6^0.45^~1~^~A~^^^1^20.20^23.00^5^20.33^22.66^~2, 3~^~05/01/2013~ -~21268~^~205~^34.91^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~207~^1.87^6^0.03^~1~^~A~^^^1^1.76^1.95^5^1.78^1.95^~2, 3~^~05/01/2013~ -~21268~^~209~^28.33^3^1.03^~1~^~A~^^^1^27.20^30.40^2^23.88^32.78^~2, 3~^~05/01/2013~ -~21268~^~210~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~2, 3~^~05/01/2013~ -~21268~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~213~^1.63^3^0.14^~1~^~A~^^^1^1.40^1.90^2^1.00^2.25^~2, 3~^~05/01/2013~ -~21268~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~255~^37.40^5^0.83^~1~^~A~^^^1^35.30^39.30^4^35.08^39.71^~2, 3~^~05/01/2013~ -~21268~^~269~^2.17^3^0.12^~1~^~A~^^^1^2.00^2.40^2^1.65^2.68^~2, 3~^~05/01/2013~ -~21268~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~303~^0.75^6^0.02^~1~^~A~^^^1^0.66^0.83^5^0.68^0.82^~2, 3~^~05/01/2013~ -~21268~^~309~^0.86^6^0.02^~1~^~A~^^^1^0.79^0.93^5^0.80^0.91^~2, 3~^~05/01/2013~ -~21268~^~323~^4.08^2^^~1~^~A~^^^1^3.52^4.65^1^^^^~05/01/2013~ -~21268~^~341~^0.08^2^^~1~^~A~^^^1^0.07^0.09^1^^^^~05/01/2013~ -~21268~^~342~^6.46^2^^~1~^~A~^^^1^5.55^7.37^1^^^^~05/01/2013~ -~21268~^~343~^0.22^2^^~1~^~A~^^^1^0.19^0.25^1^^^^~05/01/2013~ -~21268~^~345~^0.42^2^^~1~^~A~^^^1^0.38^0.46^1^^^^~05/01/2013~ -~21268~^~418~^0.07^3^0.02^~1~^~A~^^^1^0.03^0.12^2^-0.05^0.18^~2, 3~^~05/01/2013~ -~21269~^~203~^6.21^6^0.31^~1~^~A~^^^1^5.55^7.69^5^5.40^7.01^~2, 3~^~05/01/2013~ -~21269~^~204~^12.48^6^0.16^~1~^~A~^^^1^11.80^13.00^5^12.05^12.91^~2, 3~^~05/01/2013~ -~21269~^~205~^21.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~207~^1.76^6^0.02^~1~^~A~^^^1^1.69^1.87^5^1.69^1.83^~2, 3~^~05/01/2013~ -~21269~^~209~^14.97^3^0.84^~1~^~A~^^^1^13.60^16.50^2^11.34^18.58^~2, 3~^~05/01/2013~ -~21269~^~210~^0.27^3^0.06^~1~^~A~^^^1^0.20^0.40^2^-0.02^0.55^~2, 3~^~05/01/2013~ -~21269~^~211~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~2, 3~^~05/01/2013~ -~21269~^~212~^0.27^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.12^0.41^~2, 3~^~05/01/2013~ -~21269~^~213~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~2, 3~^~05/01/2013~ -~21269~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~255~^58.15^6^0.67^~1~^~A~^^^1^56.00^60.50^5^56.42^59.87^~2, 3~^~05/01/2013~ -~21269~^~269~^1.63^3^0.03^~1~^~A~^^^1^1.60^1.70^2^1.49^1.77^~2, 3~^~05/01/2013~ -~21269~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~303~^1.01^6^0.02^~1~^~A~^^^1^0.93^1.08^5^0.95^1.05^~2, 3~^~05/01/2013~ -~21269~^~309~^1.05^6^0.03^~1~^~A~^^^1^0.98^1.18^5^0.96^1.13^~2, 3~^~05/01/2013~ -~21269~^~323~^1.75^2^^~1~^~A~^^^1^1.70^1.80^1^^^^~05/01/2013~ -~21269~^~341~^0.04^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~05/01/2013~ -~21269~^~342~^2.96^2^^~1~^~A~^^^1^2.67^3.24^1^^^^~05/01/2013~ -~21269~^~343~^0.24^2^^~1~^~A~^^^1^0.22^0.26^1^^^^~05/01/2013~ -~21269~^~344~^0.11^2^^~1~^~A~^^^1^0.10^0.13^1^^^^~05/01/2013~ -~21269~^~345~^0.17^2^^~1~^~A~^^^1^0.15^0.19^1^^^^~05/01/2013~ -~21269~^~347~^0.12^2^^~1~^~A~^^^1^0.09^0.15^1^^^^~05/01/2013~ -~21269~^~418~^0.31^3^0.03^~1~^~A~^^^1^0.25^0.35^2^0.17^0.43^~2, 3~^~05/01/2013~ -~21270~^~203~^6.69^4^0.25^~1~^~A~^^^1^5.97^7.14^3^5.87^7.49^~2, 3~^~10/01/2004~ -~21270~^~204~^9.17^4^0.49^~1~^~A~^^^1^8.20^10.40^3^7.61^10.73^~2, 3~^~10/01/2004~ -~21270~^~205~^15.10^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~207~^1.71^4^0.04^~1~^~A~^^^1^1.66^1.85^3^1.57^1.85^~2, 3~^~10/01/2004~ -~21270~^~209~^9.73^4^0.23^~1~^~A~^^^1^9.10^10.10^3^8.96^10.48^~2, 3~^~10/01/2004~ -~21270~^~210~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~211~^0.26^4^0.01^~1~^~A~^^^1^0.24^0.30^3^0.21^0.31^~2, 3~^~10/01/2004~ -~21270~^~212~^0.63^4^0.03^~1~^~A~^^^1^0.54^0.68^3^0.53^0.72^~2, 3~^~10/01/2004~ -~21270~^~213~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~214~^0.15^4^0.00^~1~^~A~^^^1^0.15^0.15^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~255~^67.32^4^1.01^~1~^~A~^^^1^65.51^70.07^3^64.07^70.56^~2, 3~^~10/01/2004~ -~21270~^~303~^1.77^4^0.10^~1~^~A~^^^1^1.50^2.01^3^1.43^2.11^~2, 3~^~10/01/2004~ -~21270~^~309~^1.17^4^0.09^~1~^~A~^^^1^0.98^1.42^3^0.86^1.47^~2, 3~^~10/01/2004~ -~21270~^~323~^0.54^4^0.06^~1~^~A~^^^1^0.34^0.63^3^0.32^0.76^~2, 3~^~10/01/2004~ -~21270~^~341~^0.02^4^4.0e-03^~1~^~A~^^^1^0.01^0.03^3^7.0e-03^0.03^~1, 2, 3~^~10/01/2004~ -~21270~^~342~^1.23^4^0.18^~1~^~A~^^^1^0.93^1.75^3^0.63^1.82^~2, 3~^~10/01/2004~ -~21270~^~343~^0.58^4^0.05^~1~^~A~^^^1^0.44^0.71^3^0.39^0.76^~2, 3~^~10/01/2004~ -~21270~^~344~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.04^3^-0.02^0.04^~1, 2, 3~^~10/01/2004~ -~21270~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~346~^0.05^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~2, 3~^~10/01/2004~ -~21270~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~418~^0.40^4^0.04^~1~^~A~^^^1^0.33^0.48^3^0.26^0.53^~1, 2, 3~^~10/01/2004~ -~21271~^~203~^11.93^4^0.18^~1~^~A~^^^1^11.38^12.19^3^11.33^12.52^~2, 3~^~01/01/2005~ -~21271~^~204~^10.89^4^0.57^~1~^~A~^^^1^9.49^12.06^3^9.07^12.71^~2, 3~^~01/01/2005~ -~21271~^~205~^31.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~207~^2.67^4^0.09^~1~^~A~^^^1^2.44^2.88^3^2.35^2.98^~2, 3~^~01/01/2005~ -~21271~^~209~^21.21^4^1.01^~1~^~A~^^^1^19.01^23.82^3^17.98^24.42^~2, 3~^~01/01/2005~ -~21271~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~211~^0.53^4^0.06^~1~^~A~^^^1^0.35^0.67^3^0.31^0.74^~2, 3~^~01/01/2005~ -~21271~^~212~^0.65^4^0.02^~1~^~A~^^^1^0.61^0.71^3^0.57^0.71^~2, 3~^~01/01/2005~ -~21271~^~213~^0.38^4^0.07^~1~^~A~^^^1^0.26^0.59^3^0.15^0.61^~2, 3~^~01/01/2005~ -~21271~^~214~^1.74^4^0.13^~1~^~A~^^^1^1.52^2.12^3^1.31^2.16^~2, 3~^~01/01/2005~ -~21271~^~255~^43.29^4^0.56^~1~^~A~^^^1^41.98^44.35^3^41.50^45.07^~2, 3~^~01/01/2005~ -~21271~^~269~^3.37^4^0.18^~1~^~A~^^^1^3.13^3.92^3^2.78^3.95^~2, 3~^~01/01/2005~ -~21271~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~303~^1.95^4^0.10^~1~^~A~^^^1^1.74^2.15^3^1.60^2.29^~2, 3~^~01/01/2005~ -~21271~^~309~^1.65^4^0.05^~1~^~A~^^^1^1.51^1.75^3^1.48^1.82^~2, 3~^~01/01/2005~ -~21271~^~323~^0.70^4^0.13^~1~^~A~^^^1^0.35^0.97^3^0.26^1.13^~2, 3~^~01/01/2005~ -~21271~^~341~^0.03^4^9.0e-03^~1~^~A~^^^1^0.02^0.06^3^7.0e-03^0.06^~2, 3~^~01/01/2005~ -~21271~^~342~^1.81^4^0.52^~1~^~A~^^^1^0.81^3.12^3^0.14^3.47^~2, 3~^~01/01/2005~ -~21271~^~343~^0.58^4^0.17^~1~^~A~^^^1^0.25^1.03^3^0.01^1.15^~2, 3~^~01/01/2005~ -~21271~^~344~^0.02^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.01^0.06^~1, 2, 3~^~01/01/2005~ -~21271~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~346~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~01/01/2005~ -~21271~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~418~^0.70^4^0.08^~1~^~A~^^^1^0.58^0.94^3^0.43^0.96^~2, 3~^~01/01/2005~ -~21272~^~203~^11.73^4^0.51^~1~^~A~^^^1^10.90^13.04^3^10.08^13.36^~2, 3~^~01/01/2005~ -~21272~^~204~^12.56^4^0.58^~1~^~A~^^^1^11.19^13.58^3^10.70^14.40^~2, 3~^~01/01/2005~ -~21272~^~205~^29.93^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21272~^~207~^2.39^4^0.06^~1~^~A~^^^1^2.23^2.55^3^2.18^2.59^~2, 3~^~01/01/2005~ -~21272~^~209~^21.22^4^0.42^~1~^~A~^^^1^20.15^22.22^3^19.85^22.59^~2, 3~^~01/01/2005~ -~21272~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~211~^0.41^4^0.04^~1~^~A~^^^1^0.30^0.48^3^0.27^0.54^~2, 3~^~01/01/2005~ -~21272~^~212~^0.42^4^0.07^~1~^~A~^^^1^0.26^0.60^3^0.20^0.64^~2, 3~^~01/01/2005~ -~21272~^~213~^0.47^4^0.12^~1~^~A~^^^1^0.27^0.83^3^0.08^0.86^~2, 3~^~01/01/2005~ -~21272~^~214~^1.83^4^0.09^~1~^~A~^^^1^1.62^2.04^3^1.54^2.11^~2, 3~^~01/01/2005~ -~21272~^~255~^43.40^4^0.57^~1~^~A~^^^1^42.05^44.73^3^41.55^45.23^~2, 3~^~01/01/2005~ -~21272~^~269~^3.21^4^0.21^~1~^~A~^^^1^2.64^3.57^3^2.53^3.87^~2, 3~^~01/01/2005~ -~21272~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~303~^1.86^4^0.08^~1~^~A~^^^1^1.70^2.03^3^1.57^2.13^~2, 3~^~01/01/2005~ -~21272~^~309~^1.63^4^0.06^~1~^~A~^^^1^1.54^1.83^3^1.41^1.84^~2, 3~^~01/01/2005~ -~21272~^~323~^1.06^4^0.12^~1~^~A~^^^1^0.81^1.37^3^0.65^1.47^~2, 3~^~01/01/2005~ -~21272~^~341~^0.05^4^0.01^~1~^~A~^^^1^0.03^0.10^3^0.00^0.10^~2, 3~^~01/01/2005~ -~21272~^~342~^3.48^4^1.00^~1~^~A~^^^1^2.00^6.36^3^0.27^6.67^~2, 3~^~01/01/2005~ -~21272~^~343~^1.15^4^0.38^~1~^~A~^^^1^0.50^2.21^3^-0.06^2.36^~2, 3~^~01/01/2005~ -~21272~^~344~^0.05^4^0.01^~1~^~A~^^^1^0.00^0.08^3^-7.0e-03^0.10^~1, 2, 3~^~01/01/2005~ -~21272~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~418~^0.64^4^0.06^~1~^~A~^^^1^0.52^0.76^3^0.44^0.84^~2, 3~^~01/01/2005~ -~21273~^~203~^15.29^4^0.20^~1~^~A~^^^1^15.05^15.91^3^14.62^15.95^~2, 3~^~01/01/2005~ -~21273~^~204~^14.10^4^0.38^~1~^~A~^^^1^13.18^14.91^3^12.87^15.32^~2, 3~^~01/01/2005~ -~21273~^~205~^28.64^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~207~^3.20^4^0.11^~1~^~A~^^^1^2.97^3.48^3^2.83^3.57^~2, 3~^~01/01/2005~ -~21273~^~209~^19.66^4^1.13^~1~^~A~^^^1^17.71^22.80^3^16.05^23.27^~2, 3~^~01/01/2005~ -~21273~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~211~^0.59^4^0.04^~1~^~A~^^^1^0.46^0.69^3^0.43^0.74^~2, 3~^~01/01/2005~ -~21273~^~212~^0.48^4^0.04^~1~^~A~^^^1^0.40^0.55^3^0.34^0.60^~2, 3~^~01/01/2005~ -~21273~^~213~^0.50^4^0.10^~1~^~A~^^^1^0.32^0.79^3^0.17^0.82^~2, 3~^~01/01/2005~ -~21273~^~214~^1.03^4^0.07^~1~^~A~^^^1^0.93^1.25^3^0.80^1.26^~2, 3~^~01/01/2005~ -~21273~^~255~^38.77^4^0.70^~1~^~A~^^^1^37.56^40.74^3^36.51^41.02^~2, 3~^~01/01/2005~ -~21273~^~269~^2.67^4^0.16^~1~^~A~^^^1^2.35^3.10^3^2.14^3.19^~2, 3~^~01/01/2005~ -~21273~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~303~^1.71^4^0.11^~1~^~A~^^^1^1.50^1.94^3^1.33^2.08^~2, 3~^~01/01/2005~ -~21273~^~309~^1.87^4^0.10^~1~^~A~^^^1^1.59^2.07^3^1.54^2.19^~2, 3~^~01/01/2005~ -~21273~^~323~^0.84^4^0.01^~1~^~A~^^^1^0.81^0.88^3^0.79^0.89^~2, 3~^~01/01/2005~ -~21273~^~341~^0.03^4^5.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~01/01/2005~ -~21273~^~342~^1.05^4^0.12^~1~^~A~^^^1^0.80^1.36^3^0.66^1.44^~2, 3~^~01/01/2005~ -~21273~^~343~^0.35^4^0.02^~1~^~A~^^^1^0.30^0.39^3^0.28^0.41^~2, 3~^~01/01/2005~ -~21273~^~344~^0.06^4^0.01^~1~^~A~^^^1^0.03^0.08^3^0.02^0.09^~2, 3~^~01/01/2005~ -~21273~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~418~^0.89^4^0.08^~1~^~A~^^^1^0.64^1.03^3^0.61^1.16^~2, 3~^~01/01/2005~ -~21274~^~203~^12.86^4^0.21^~1~^~A~^^^1^12.33^13.34^3^12.18^13.53^~2, 3~^~01/01/2005~ -~21274~^~204~^11.38^4^0.23^~1~^~A~^^^1^10.75^11.87^3^10.62^12.12^~2, 3~^~01/01/2005~ -~21274~^~205~^31.55^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21274~^~207~^2.87^4^0.04^~1~^~A~^^^1^2.73^2.95^3^2.71^3.03^~2, 3~^~01/01/2005~ -~21274~^~209~^22.85^4^0.77^~1~^~A~^^^1^21.04^24.64^3^20.38^25.31^~2, 3~^~01/01/2005~ -~21274~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~211~^0.55^4^0.03^~1~^~A~^^^1^0.46^0.62^3^0.42^0.66^~2, 3~^~01/01/2005~ -~21274~^~212~^0.85^4^0.05^~1~^~A~^^^1^0.72^0.99^3^0.66^1.02^~2, 3~^~01/01/2005~ -~21274~^~213~^0.37^4^0.07^~1~^~A~^^^1^0.22^0.55^3^0.14^0.60^~2, 3~^~01/01/2005~ -~21274~^~214~^1.83^4^0.08^~1~^~A~^^^1^1.62^1.99^3^1.56^2.08^~2, 3~^~01/01/2005~ -~21274~^~255~^41.35^4^0.37^~1~^~A~^^^1^40.38^42.14^3^40.14^42.54^~2, 3~^~01/01/2005~ -~21274~^~269~^3.67^4^0.12^~1~^~A~^^^1^3.33^3.93^3^3.26^4.07^~2, 3~^~01/01/2005~ -~21274~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~303~^2.14^4^0.05^~1~^~A~^^^1^1.99^2.24^3^1.96^2.31^~2, 3~^~01/01/2005~ -~21274~^~309~^1.68^4^0.05^~1~^~A~^^^1^1.51^1.76^3^1.49^1.86^~2, 3~^~01/01/2005~ -~21274~^~323~^0.75^4^0.14^~1~^~A~^^^1^0.43^1.08^3^0.28^1.22^~2, 3~^~01/01/2005~ -~21274~^~341~^0.05^4^0.01^~1~^~A~^^^1^0.03^0.07^3^0.01^0.08^~2, 3~^~01/01/2005~ -~21274~^~342~^1.75^4^0.39^~1~^~A~^^^1^1.04^2.70^3^0.51^3.00^~2, 3~^~01/01/2005~ -~21274~^~343~^0.58^4^0.12^~1~^~A~^^^1^0.31^0.87^3^0.17^0.99^~2, 3~^~01/01/2005~ -~21274~^~344~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~01/01/2005~ -~21274~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~418~^0.68^4^0.07^~1~^~A~^^^1^0.58^0.88^3^0.46^0.90^~2, 3~^~01/01/2005~ -~21275~^~203~^11.97^4^0.31^~1~^~A~^^^1^11.30^12.66^3^10.97^12.96^~2, 3~^~01/01/2005~ -~21275~^~204~^14.21^4^0.45^~1~^~A~^^^1^12.99^15.20^3^12.75^15.65^~2, 3~^~01/01/2005~ -~21275~^~205~^30.49^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~207~^2.53^4^0.07^~1~^~A~^^^1^2.37^2.69^3^2.29^2.77^~2, 3~^~01/01/2005~ -~21275~^~209~^23.13^4^0.94^~1~^~A~^^^1^20.76^24.83^3^20.13^26.12^~2, 3~^~01/01/2005~ -~21275~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~211~^0.40^4^0.03^~1~^~A~^^^1^0.31^0.46^3^0.27^0.51^~2, 3~^~01/01/2005~ -~21275~^~212~^0.37^4^0.03^~1~^~A~^^^1^0.30^0.46^3^0.26^0.47^~2, 3~^~01/01/2005~ -~21275~^~213~^0.35^4^0.09^~1~^~A~^^^1^0.21^0.62^3^0.06^0.63^~2, 3~^~01/01/2005~ -~21275~^~214~^2.01^4^0.13^~1~^~A~^^^1^1.76^2.31^3^1.57^2.43^~2, 3~^~01/01/2005~ -~21275~^~255~^40.80^4^0.71^~1~^~A~^^^1^38.87^42.21^3^38.51^43.08^~2, 3~^~01/01/2005~ -~21275~^~269~^3.20^4^0.15^~1~^~A~^^^1^2.86^3.58^3^2.72^3.68^~2, 3~^~01/01/2005~ -~21275~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~303~^2.14^4^0.07^~1~^~A~^^^1^1.96^2.27^3^1.89^2.38^~2, 3~^~01/01/2005~ -~21275~^~309~^1.54^4^0.05^~1~^~A~^^^1^1.46^1.70^3^1.36^1.71^~2, 3~^~01/01/2005~ -~21275~^~323~^0.78^4^0.08^~1~^~A~^^^1^0.61^1.03^3^0.50^1.06^~2, 3~^~01/01/2005~ -~21275~^~341~^0.05^4^8.0e-03^~1~^~A~^^^1^0.03^0.07^3^0.02^0.07^~2, 3~^~01/01/2005~ -~21275~^~342~^3.08^4^0.48^~1~^~A~^^^1^2.21^4.30^3^1.55^4.61^~2, 3~^~01/01/2005~ -~21275~^~343~^1.13^4^0.21^~1~^~A~^^^1^0.75^1.73^3^0.43^1.82^~2, 3~^~01/01/2005~ -~21275~^~344~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.02^0.05^~1, 2, 3~^~01/01/2005~ -~21275~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~418~^0.64^4^0.06^~1~^~A~^^^1^0.52^0.80^3^0.44^0.83^~2, 3~^~01/01/2005~ -~21276~^~203~^10.90^4^0.37^~1~^~A~^^^1^10.29^11.88^3^9.70^12.10^~2, 3~^~01/01/2005~ -~21276~^~204~^10.72^4^0.30^~1~^~A~^^^1^10.18^11.47^3^9.76^11.67^~2, 3~^~01/01/2005~ -~21276~^~205~^25.62^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~21276~^~207~^2.56^4^0.06^~1~^~A~^^^1^2.41^2.66^3^2.36^2.75^~2, 3~^~01/01/2005~ -~21276~^~209~^16.53^4^0.35^~1~^~A~^^^1^15.85^17.51^3^15.40^17.64^~2, 3~^~01/01/2005~ -~21276~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~211~^0.74^4^0.08^~1~^~A~^^^1^0.51^0.91^3^0.46^1.01^~2, 3~^~01/01/2005~ -~21276~^~212~^0.90^4^0.10^~1~^~A~^^^1^0.68^1.12^3^0.57^1.22^~2, 3~^~01/01/2005~ -~21276~^~213~^0.28^4^0.05^~1~^~A~^^^1^0.19^0.44^3^0.09^0.45^~2, 3~^~01/01/2005~ -~21276~^~214~^1.73^4^0.05^~1~^~A~^^^1^1.58^1.84^3^1.55^1.90^~2, 3~^~01/01/2005~ -~21276~^~255~^50.20^4^0.70^~1~^~A~^^^1^48.64^51.43^3^47.96^52.42^~2, 3~^~01/01/2005~ -~21276~^~269~^3.71^4^0.12^~1~^~A~^^^1^3.43^3.95^3^3.33^4.09^~2, 3~^~01/01/2005~ -~21276~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~303~^2.00^4^0.05^~1~^~A~^^^1^1.88^2.13^3^1.83^2.17^~2, 3~^~01/01/2005~ -~21276~^~309~^1.45^4^0.04^~1~^~A~^^^1^1.36^1.56^3^1.32^1.58^~2, 3~^~01/01/2005~ -~21276~^~323~^0.77^4^0.06^~1~^~A~^^^1^0.59^0.89^3^0.56^0.99^~2, 3~^~01/01/2005~ -~21276~^~341~^0.03^4^5.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~01/01/2005~ -~21276~^~342~^0.88^4^0.05^~1~^~A~^^^1^0.83^1.04^3^0.72^1.04^~2, 3~^~01/01/2005~ -~21276~^~343~^0.28^4^0.01^~1~^~A~^^^1^0.24^0.31^3^0.22^0.33^~2, 3~^~01/01/2005~ -~21276~^~344~^0.04^4^0.01^~1~^~A~^^^1^0.00^0.08^3^-8.0e-03^0.09^~1, 2, 3~^~01/01/2005~ -~21276~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~346~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~01/01/2005~ -~21276~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~418~^0.62^4^0.05^~1~^~A~^^^1^0.50^0.75^3^0.43^0.79^~2, 3~^~01/01/2005~ -~21277~^~203~^10.80^6^0.23^~1~^~A~^^^1^10.00^11.50^5^10.18^11.41^~4~^~02/01/2011~ -~21277~^~204~^8.97^6^0.12^~1~^~A~^^^1^8.50^9.40^5^8.65^9.28^~4~^~02/01/2011~ -~21277~^~205~^33.24^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~207~^2.13^6^0.06^~1~^~A~^^^1^1.83^2.25^5^1.96^2.28^~4~^~02/01/2011~ -~21277~^~209~^26.37^3^0.51^~1~^~A~^^^1^25.80^27.40^2^24.14^28.59^~4~^~02/01/2011~ -~21277~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~02/01/2011~ -~21277~^~211~^1.00^3^0.05^~1~^~A~^^^1^0.90^1.10^2^0.75^1.24^~4~^~02/01/2011~ -~21277~^~212~^1.07^3^0.03^~1~^~A~^^^1^1.00^1.10^2^0.92^1.21^~4~^~02/01/2011~ -~21277~^~213~^0.50^3^0.11^~1~^~A~^^^1^0.30^0.70^2^3.0e-03^0.99^~4~^~02/01/2011~ -~21277~^~214~^0.93^3^0.03^~1~^~A~^^^1^0.90^1.00^2^0.79^1.07^~4~^~02/01/2011~ -~21277~^~255~^44.87^6^0.54^~1~^~A~^^^1^43.20^46.60^5^43.46^46.26^~4~^~02/01/2011~ -~21277~^~269~^4.02^3^0.03^~1~^~A~^^^1^3.97^4.10^2^3.85^4.19^~4~^~02/01/2011~ -~21277~^~287~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.20^2^-0.04^0.29^~1, 4~^~02/01/2011~ -~21277~^~303~^2.34^6^0.07^~1~^~A~^^^1^2.06^2.54^5^2.14^2.52^~4~^~02/01/2011~ -~21277~^~309~^1.24^6^0.01^~1~^~A~^^^1^1.21^1.31^5^1.19^1.28^~4~^~02/01/2011~ -~21277~^~323~^0.99^4^0.06^~1~^~A~^^^1^0.82^1.15^3^0.77^1.20^~2, 3~^~01/01/2005~ -~21277~^~341~^0.05^4^9.0e-03^~1~^~A~^^^1^0.04^0.07^3^0.02^0.08^~2, 3~^~01/01/2005~ -~21277~^~342~^1.34^4^0.03^~1~^~A~^^^1^1.28^1.43^3^1.22^1.46^~2, 3~^~01/01/2005~ -~21277~^~343~^0.33^4^0.03^~1~^~A~^^^1^0.28^0.44^3^0.21^0.44^~2, 3~^~01/01/2005~ -~21277~^~344~^0.11^4^9.0e-03^~1~^~A~^^^1^0.09^0.13^3^0.08^0.14^~2, 3~^~01/01/2005~ -~21277~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21277~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~01/01/2005~ -~21277~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21277~^~418~^0.46^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~203~^10.76^6^0.24^~1~^~A~^^^1^9.88^11.70^5^10.12^11.39^~4~^~02/01/2011~ -~21278~^~204~^9.83^6^0.15^~1~^~A~^^^1^9.50^10.50^5^9.44^10.22^~4~^~02/01/2011~ -~21278~^~205~^33.48^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~207~^2.50^6^0.03^~1~^~A~^^^1^2.43^2.66^5^2.41^2.58^~4~^~02/01/2011~ -~21278~^~209~^24.97^3^0.93^~1~^~A~^^^1^23.50^26.70^2^20.95^28.98^~4~^~02/01/2011~ -~21278~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~02/01/2011~ -~21278~^~211~^0.60^3^0.05^~1~^~A~^^^1^0.50^0.70^2^0.35^0.84^~4~^~02/01/2011~ -~21278~^~212~^0.97^3^0.08^~1~^~A~^^^1^0.80^1.10^2^0.58^1.34^~4~^~02/01/2011~ -~21278~^~213~^0.73^3^0.03^~1~^~A~^^^1^0.70^0.80^2^0.59^0.87^~4~^~02/01/2011~ -~21278~^~214~^1.43^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.29^1.57^~4~^~02/01/2011~ -~21278~^~255~^43.42^6^0.85^~1~^~A~^^^1^41.20^46.20^5^41.23^45.60^~4~^~02/01/2011~ -~21278~^~269~^4.22^3^0.21^~1~^~A~^^^1^3.87^4.60^2^3.30^5.12^~4~^~02/01/2011~ -~21278~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21278~^~303~^2.49^6^0.09^~1~^~A~^^^1^2.21^2.78^5^2.25^2.73^~4~^~02/01/2011~ -~21278~^~309~^1.22^6^0.02^~1~^~A~^^^1^1.16^1.31^5^1.16^1.28^~4~^~02/01/2011~ -~21278~^~323~^0.89^4^0.06^~1~^~A~^^^1^0.78^1.05^3^0.69^1.09^~2, 3~^~01/01/2005~ -~21278~^~341~^0.07^4^9.0e-03^~1~^~A~^^^1^0.05^0.09^3^0.04^0.09^~2, 3~^~01/01/2005~ -~21278~^~342~^2.29^4^0.06^~1~^~A~^^^1^2.10^2.41^3^2.07^2.51^~2, 3~^~01/01/2005~ -~21278~^~343~^0.69^4^0.03^~1~^~A~^^^1^0.62^0.78^3^0.58^0.80^~2, 3~^~01/01/2005~ -~21278~^~344~^0.07^4^0.02^~1~^~A~^^^1^0.00^0.12^3^-0.01^0.14^~1, 2, 3~^~01/01/2005~ -~21278~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21278~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21278~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21278~^~418~^0.36^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~203~^12.33^6^0.40^~1~^~A~^^^1^10.70^13.20^5^11.28^13.37^~4~^~02/01/2011~ -~21279~^~204~^15.10^6^0.36^~1~^~A~^^^1^13.70^16.40^5^14.17^16.02^~4~^~02/01/2011~ -~21279~^~205~^28.18^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~207~^2.80^6^0.10^~1~^~A~^^^1^2.49^3.21^5^2.54^3.06^~4~^~02/01/2011~ -~21279~^~209~^20.00^3^0.75^~1~^~A~^^^1^18.50^20.90^2^16.75^23.24^~4~^~02/01/2011~ -~21279~^~210~^0.77^3^0.06^~1~^~A~^^^1^0.70^0.90^2^0.48^1.05^~4~^~02/01/2011~ -~21279~^~211~^0.97^3^0.06^~1~^~A~^^^1^0.90^1.10^2^0.68^1.25^~4~^~02/01/2011~ -~21279~^~212~^1.10^3^0.10^~1~^~A~^^^1^1.00^1.30^2^0.67^1.53^~4~^~02/01/2011~ -~21279~^~213~^0.60^3^0.05^~1~^~A~^^^1^0.50^0.70^2^0.35^0.84^~4~^~02/01/2011~ -~21279~^~214~^0.57^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.42^0.71^~4~^~02/01/2011~ -~21279~^~255~^41.58^6^0.90^~1~^~A~^^^1^39.10^44.40^5^39.24^43.91^~4~^~02/01/2011~ -~21279~^~269~^4.09^3^0.19^~1~^~A~^^^1^3.90^4.47^2^3.26^4.91^~4~^~02/01/2011~ -~21279~^~287~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 4~^~02/01/2011~ -~21279~^~303~^0.91^6^0.02^~1~^~A~^^^1^0.86^0.99^5^0.86^0.96^~4~^~02/01/2011~ -~21279~^~309~^1.54^6^0.06^~1~^~A~^^^1^1.27^1.72^5^1.37^1.71^~4~^~02/01/2011~ -~21279~^~323~^1.49^4^0.16^~1~^~A~^^^1^1.21^1.84^3^0.97^2.00^~2, 3~^~01/01/2005~ -~21279~^~341~^0.06^4^3.0e-03^~1~^~A~^^^1^0.06^0.07^3^0.05^0.07^~2, 3~^~01/01/2005~ -~21279~^~342~^3.54^4^0.20^~1~^~A~^^^1^2.95^3.86^3^2.88^4.19^~2, 3~^~01/01/2005~ -~21279~^~343~^1.39^4^0.08^~1~^~A~^^^1^1.15^1.51^3^1.12^1.65^~2, 3~^~01/01/2005~ -~21279~^~344~^0.09^4^0.03^~1~^~A~^^^1^0.00^0.14^3^-8.0e-03^0.19^~1, 2, 3~^~01/01/2005~ -~21279~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21279~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~01/01/2005~ -~21279~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21279~^~418~^0.64^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~203~^11.25^6^0.20^~1~^~A~^^^1^10.60^12.10^5^10.71^11.78^~4~^~02/01/2011~ -~21280~^~204~^11.18^6^0.31^~1~^~A~^^^1^10.60^12.60^5^10.36^12.00^~4~^~02/01/2011~ -~21280~^~205~^31.86^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~207~^2.31^6^0.06^~1~^~A~^^^1^2.02^2.45^5^2.12^2.48^~4~^~02/01/2011~ -~21280~^~209~^24.77^3^0.89^~1~^~A~^^^1^23.50^26.50^2^20.90^28.62^~4~^~02/01/2011~ -~21280~^~210~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~02/01/2011~ -~21280~^~211~^0.93^3^0.08^~1~^~A~^^^1^0.80^1.10^2^0.55^1.31^~4~^~02/01/2011~ -~21280~^~212~^1.03^3^0.03^~1~^~A~^^^1^1.00^1.10^2^0.89^1.17^~4~^~02/01/2011~ -~21280~^~213~^0.43^3^0.12^~1~^~A~^^^1^0.20^0.60^2^-0.08^0.95^~4~^~02/01/2011~ -~21280~^~214~^0.83^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.69^0.97^~4~^~02/01/2011~ -~21280~^~255~^43.40^6^0.54^~1~^~A~^^^1^41.40^45.40^5^42.01^44.78^~4~^~02/01/2011~ -~21280~^~269~^3.69^3^0.05^~1~^~A~^^^1^3.60^3.80^2^3.44^3.94^~4~^~02/01/2011~ -~21280~^~287~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 4~^~01/01/2005~ -~21280~^~303~^2.33^6^0.11^~1~^~A~^^^1^1.95^2.61^5^2.04^2.61^~4~^~02/01/2011~ -~21280~^~309~^1.31^6^0.02^~1~^~A~^^^1^1.25^1.38^5^1.26^1.36^~4~^~02/01/2011~ -~21280~^~323~^0.97^4^0.07^~1~^~A~^^^1^0.76^1.10^3^0.72^1.21^~2, 3~^~01/01/2005~ -~21280~^~341~^0.06^4^7.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.03^0.08^~2, 3~^~01/01/2005~ -~21280~^~342~^1.34^4^0.03^~1~^~A~^^^1^1.27^1.42^3^1.24^1.44^~2, 3~^~01/01/2005~ -~21280~^~343~^0.35^4^0.03^~1~^~A~^^^1^0.29^0.43^3^0.24^0.44^~2, 3~^~01/01/2005~ -~21280~^~344~^0.12^4^0.01^~1~^~A~^^^1^0.08^0.15^3^0.07^0.17^~2, 3~^~01/01/2005~ -~21280~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21280~^~346~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~01/01/2005~ -~21280~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21280~^~418~^0.49^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~203~^11.52^6^0.19^~1~^~A~^^^1^10.80^12.00^5^11.02^12.01^~4~^~02/01/2011~ -~21281~^~204~^12.10^6^0.29^~1~^~A~^^^1^11.10^13.00^5^11.35^12.84^~4~^~02/01/2011~ -~21281~^~205~^31.89^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~207~^2.60^6^0.08^~1~^~A~^^^1^2.21^2.81^5^2.37^2.81^~4~^~02/01/2011~ -~21281~^~209~^22.97^3^1.37^~1~^~A~^^^1^21.40^25.70^2^17.06^28.86^~4~^~02/01/2011~ -~21281~^~210~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~02/01/2011~ -~21281~^~211~^0.60^3^0.05^~1~^~A~^^^1^0.50^0.70^2^0.35^0.84^~4~^~02/01/2011~ -~21281~^~212~^0.93^3^0.06^~1~^~A~^^^1^0.80^1.00^2^0.64^1.22^~4~^~02/01/2011~ -~21281~^~213~^0.67^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.52^0.81^~4~^~02/01/2011~ -~21281~^~214~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~4~^~02/01/2011~ -~21281~^~255~^41.90^6^1.23^~1~^~A~^^^1^39.10^46.10^5^38.73^45.06^~4~^~02/01/2011~ -~21281~^~269~^3.91^3^0.12^~1~^~A~^^^1^3.67^4.07^2^3.39^4.42^~4~^~02/01/2011~ -~21281~^~287~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^2^0.07^0.07^~1, 4~^~02/01/2011~ -~21281~^~303~^2.54^6^0.05^~1~^~A~^^^1^2.40^2.72^5^2.40^2.67^~4~^~02/01/2011~ -~21281~^~309~^1.33^6^0.01^~1~^~A~^^^1^1.28^1.36^5^1.29^1.36^~4~^~02/01/2011~ -~21281~^~323~^0.88^4^0.13^~1~^~A~^^^1^0.65^1.25^3^0.44^1.31^~2, 3~^~01/01/2005~ -~21281~^~341~^0.06^4^4.0e-03^~1~^~A~^^^1^0.05^0.07^3^0.04^0.07^~2, 3~^~01/01/2005~ -~21281~^~342~^2.13^4^0.16^~1~^~A~^^^1^1.85^2.53^3^1.59^2.66^~2, 3~^~01/01/2005~ -~21281~^~343~^0.67^4^0.06^~1~^~A~^^^1^0.52^0.79^3^0.44^0.88^~2, 3~^~01/01/2005~ -~21281~^~344~^0.07^4^0.02^~1~^~A~^^^1^0.00^0.12^3^-0.01^0.15^~1, 2, 3~^~01/01/2005~ -~21281~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21281~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21281~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21281~^~418~^0.52^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21282~^~203~^10.33^4^0.12^~1~^~A~^^^1^10.00^10.62^3^9.91^10.74^~2, 3~^~01/01/2005~ -~21282~^~204~^11.10^4^0.40^~1~^~A~^^^1^10.25^12.09^3^9.81^12.37^~2, 3~^~01/01/2005~ -~21282~^~205~^25.72^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~207~^2.08^4^0.02^~1~^~A~^^^1^2.03^2.14^3^2.00^2.15^~2, 3~^~01/01/2005~ -~21282~^~209~^19.90^4^1.12^~1~^~A~^^^1^17.10^22.10^3^16.30^23.49^~2, 3~^~01/01/2005~ -~21282~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~211~^1.01^4^0.03^~1~^~A~^^^1^0.93^1.09^3^0.89^1.13^~2, 3~^~01/01/2005~ -~21282~^~212~^0.89^4^0.03^~1~^~A~^^^1^0.81^0.96^3^0.77^1.00^~2, 3~^~01/01/2005~ -~21282~^~213~^0.33^4^0.08^~1~^~A~^^^1^0.07^0.44^3^0.05^0.59^~1, 2, 3~^~01/01/2005~ -~21282~^~214~^0.97^4^0.14^~1~^~A~^^^1^0.69^1.36^3^0.51^1.43^~2, 3~^~01/01/2005~ -~21282~^~255~^50.77^4^0.43^~1~^~A~^^^1^49.73^51.61^3^49.38^52.15^~2, 3~^~01/01/2005~ -~21282~^~269~^3.30^4^0.18^~1~^~A~^^^1^2.93^3.74^3^2.70^3.88^~2, 3~^~01/01/2005~ -~21282~^~287~^0.10^4^0.01^~1~^~A~^^^1^0.07^0.12^3^0.05^0.13^~1, 2, 3~^~01/01/2005~ -~21282~^~303~^2.32^4^0.20^~1~^~A~^^^1^1.87^2.67^3^1.67^2.96^~2, 3~^~01/01/2005~ -~21282~^~309~^1.27^4^0.04^~1~^~A~^^^1^1.18^1.36^3^1.14^1.40^~2, 3~^~01/01/2005~ -~21282~^~323~^0.80^4^0.06^~1~^~A~^^^1^0.69^1.00^3^0.57^1.01^~2, 3~^~01/01/2005~ -~21282~^~341~^0.05^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~2, 3~^~01/01/2005~ -~21282~^~342~^1.03^4^0.03^~1~^~A~^^^1^0.96^1.10^3^0.90^1.15^~2, 3~^~01/01/2005~ -~21282~^~343~^0.28^4^0.04^~1~^~A~^^^1^0.22^0.41^3^0.15^0.42^~2, 3~^~01/01/2005~ -~21282~^~344~^0.09^4^0.01^~1~^~A~^^^1^0.05^0.12^3^0.03^0.14^~2, 3~^~01/01/2005~ -~21282~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~346~^0.03^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~01/01/2005~ -~21282~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~418~^0.55^4^0.06^~1~^~A~^^^1^0.44^0.72^3^0.36^0.74^~2, 3~^~01/01/2005~ -~21283~^~203~^11.53^9^0.18^~1~^~A~^^^1^10.65^12.15^8^11.09^11.95^~2, 3~^~01/01/2005~ -~21283~^~204~^9.25^9^0.16^~1~^~A~^^^1^8.51^10.07^8^8.87^9.62^~2, 3~^~01/01/2005~ -~21283~^~205~^32.74^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~207~^2.32^9^0.04^~1~^~A~^^^1^2.16^2.64^8^2.20^2.42^~2, 3~^~01/01/2005~ -~21283~^~209~^23.79^9^0.53^~1~^~A~^^^1^21.50^25.50^8^22.54^25.02^~2, 3~^~01/01/2005~ -~21283~^~210~^0.44^9^0.03^~1~^~A~^^^1^0.26^0.55^8^0.36^0.51^~2, 3~^~01/01/2005~ -~21283~^~211~^1.49^9^0.04^~1~^~A~^^^1^1.26^1.68^8^1.38^1.58^~2, 3~^~01/01/2005~ -~21283~^~212~^1.76^9^0.03^~1~^~A~^^^1^1.57^1.91^8^1.68^1.84^~2, 3~^~01/01/2005~ -~21283~^~213~^0.26^9^0.06^~1~^~A~^^^1^0.07^0.66^8^0.10^0.41^~1, 2, 3~^~01/01/2005~ -~21283~^~214~^1.28^9^0.05^~1~^~A~^^^1^1.00^1.53^8^1.15^1.40^~2, 3~^~01/01/2005~ -~21283~^~255~^44.16^9^0.55^~1~^~A~^^^1^42.64^46.55^8^42.88^45.44^~2, 3~^~01/01/2005~ -~21283~^~269~^5.32^9^0.08^~1~^~A~^^^1^4.95^5.74^8^5.12^5.52^~2, 3~^~01/01/2005~ -~21283~^~287~^0.10^9^8.0e-03^~1~^~A~^^^1^0.07^0.14^8^0.07^0.11^~1, 2, 3~^~01/01/2005~ -~21283~^~303~^1.97^9^0.04^~1~^~A~^^^1^1.79^2.19^8^1.86^2.07^~2, 3~^~01/01/2005~ -~21283~^~309~^1.24^9^0.02^~1~^~A~^^^1^1.11^1.34^8^1.18^1.30^~2, 3~^~01/01/2005~ -~21283~^~323~^1.14^4^0.04^~1~^~A~^^^1^1.00^1.20^3^0.99^1.29^~2, 3~^~01/01/2005~ -~21283~^~341~^0.06^4^7.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.03^0.08^~2, 3~^~01/01/2005~ -~21283~^~342~^1.22^4^0.08^~1~^~A~^^^1^1.05^1.39^3^0.95^1.48^~2, 3~^~01/01/2005~ -~21283~^~343~^0.34^4^0.01^~1~^~A~^^^1^0.30^0.37^3^0.28^0.39^~2, 3~^~01/01/2005~ -~21283~^~344~^0.05^4^0.02^~1~^~A~^^^1^0.00^0.10^3^-0.03^0.13^~1, 2, 3~^~01/01/2005~ -~21283~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~418~^0.68^9^0.02^~1~^~A~^^^1^0.51^0.79^8^0.62^0.74^~2, 3~^~01/01/2005~ -~21284~^~203~^11.97^9^0.18^~1~^~A~^^^1^11.31^12.82^8^11.55^12.39^~2, 3~^~01/01/2005~ -~21284~^~204~^11.86^9^0.22^~1~^~A~^^^1^10.48^12.50^8^11.34^12.38^~2, 3~^~01/01/2005~ -~21284~^~205~^30.04^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~207~^2.53^9^0.04^~1~^~A~^^^1^2.32^2.77^8^2.42^2.64^~2, 3~^~01/01/2005~ -~21284~^~209~^21.77^9^0.45^~1~^~A~^^^1^19.70^24.70^8^20.70^22.82^~2, 3~^~01/01/2005~ -~21284~^~210~^0.38^9^0.02^~1~^~A~^^^1^0.22^0.49^8^0.31^0.44^~2, 3~^~01/01/2005~ -~21284~^~211~^1.38^9^0.02^~1~^~A~^^^1^1.22^1.48^8^1.31^1.44^~2, 3~^~01/01/2005~ -~21284~^~212~^1.64^9^0.03^~1~^~A~^^^1^1.47^1.73^8^1.56^1.70^~2, 3~^~01/01/2005~ -~21284~^~213~^0.23^9^0.09^~1~^~A~^^^1^0.07^0.86^8^0.02^0.43^~1, 2, 3~^~01/01/2005~ -~21284~^~214~^1.13^9^0.06^~1~^~A~^^^1^0.81^1.45^8^0.99^1.27^~2, 3~^~01/01/2005~ -~21284~^~255~^43.60^9^0.59^~1~^~A~^^^1^40.00^46.58^8^42.23^44.95^~2, 3~^~01/01/2005~ -~21284~^~269~^4.84^9^0.06^~1~^~A~^^^1^4.48^5.09^8^4.68^4.99^~2, 3~^~01/01/2005~ -~21284~^~287~^0.08^9^5.0e-03^~1~^~A~^^^1^0.07^0.12^8^0.06^0.09^~1, 2, 3~^~01/01/2005~ -~21284~^~303~^1.98^9^0.05^~1~^~A~^^^1^1.63^2.14^8^1.86^2.10^~2, 3~^~01/01/2005~ -~21284~^~309~^1.34^9^0.02^~1~^~A~^^^1^1.23^1.42^8^1.28^1.39^~2, 3~^~01/01/2005~ -~21284~^~323~^1.10^4^0.02^~1~^~A~^^^1^1.06^1.14^3^1.03^1.17^~2, 3~^~01/01/2005~ -~21284~^~341~^0.06^4^2.0e-03^~1~^~A~^^^1^0.05^0.06^3^0.05^0.06^~2, 3~^~01/01/2005~ -~21284~^~342~^1.21^4^0.05^~1~^~A~^^^1^1.10^1.32^3^1.04^1.38^~2, 3~^~01/01/2005~ -~21284~^~343~^0.32^4^6.0e-03^~1~^~A~^^^1^0.31^0.34^3^0.30^0.34^~2, 3~^~01/01/2005~ -~21284~^~344~^0.07^4^5.0e-03^~1~^~A~^^^1^0.06^0.08^3^0.05^0.08^~2, 3~^~01/01/2005~ -~21284~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~418~^0.79^9^0.04^~1~^~A~^^^1^0.64^1.06^8^0.68^0.88^~2, 3~^~01/01/2005~ -~21285~^~203~^10.27^4^0.13^~1~^~A~^^^1^10.06^10.61^3^9.85^10.68^~2, 3~^~01/01/2005~ -~21285~^~204~^10.21^4^0.14^~1~^~A~^^^1^9.84^10.54^3^9.74^10.66^~2, 3~^~01/01/2005~ -~21285~^~205~^26.69^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~207~^2.26^4^0.02^~1~^~A~^^^1^2.19^2.31^3^2.17^2.34^~2, 3~^~01/01/2005~ -~21285~^~209~^18.45^4^0.91^~1~^~A~^^^1^16.27^20.64^3^15.54^21.34^~2, 3~^~01/01/2005~ -~21285~^~210~^0.33^4^0.06^~1~^~A~^^^1^0.18^0.47^3^0.11^0.55^~2, 3~^~01/01/2005~ -~21285~^~211~^1.50^4^0.03^~1~^~A~^^^1^1.43^1.57^3^1.38^1.60^~2, 3~^~01/01/2005~ -~21285~^~212~^1.56^4^0.01^~1~^~A~^^^1^1.52^1.60^3^1.50^1.61^~2, 3~^~01/01/2005~ -~21285~^~213~^0.16^4^0.05^~1~^~A~^^^1^0.07^0.28^3^-4.0e-03^0.32^~1, 2, 3~^~01/01/2005~ -~21285~^~214~^1.22^4^0.08^~1~^~A~^^^1^1.04^1.41^3^0.95^1.47^~2, 3~^~01/01/2005~ -~21285~^~255~^50.57^4^1.11^~1~^~A~^^^1^48.58^52.98^3^47.03^54.11^~2, 3~^~01/01/2005~ -~21285~^~269~^4.84^4^0.07^~1~^~A~^^^1^4.70^4.99^3^4.59^5.09^~2, 3~^~01/01/2005~ -~21285~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~303~^1.50^4^0.09^~1~^~A~^^^1^1.30^1.70^3^1.20^1.79^~2, 3~^~01/01/2005~ -~21285~^~309~^0.98^4^0.01^~1~^~A~^^^1^0.95^1.00^3^0.94^1.01^~2, 3~^~01/01/2005~ -~21285~^~323~^1.06^4^0.14^~1~^~A~^^^1^0.63^1.31^3^0.58^1.53^~2, 3~^~01/01/2005~ -~21285~^~341~^0.05^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~2, 3~^~01/01/2005~ -~21285~^~342~^1.06^4^0.08^~1~^~A~^^^1^0.87^1.29^3^0.78^1.33^~2, 3~^~01/01/2005~ -~21285~^~343~^0.27^4^0.01^~1~^~A~^^^1^0.25^0.31^3^0.23^0.31^~2, 3~^~01/01/2005~ -~21285~^~344~^0.08^4^0.02^~1~^~A~^^^1^0.03^0.16^3^-0.01^0.16^~2, 3~^~01/01/2005~ -~21285~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~418~^0.72^4^0.03^~1~^~A~^^^1^0.66^0.81^3^0.61^0.82^~2, 3~^~01/01/2005~ -~21286~^~203~^12.29^4^0.19^~1~^~A~^^^1^11.92^12.73^3^11.68^12.89^~2, 3~^~01/01/2005~ -~21286~^~204~^15.66^4^0.25^~1~^~A~^^^1^14.97^16.06^3^14.86^16.46^~2, 3~^~01/01/2005~ -~21286~^~205~^26.26^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~207~^2.48^4^0.04^~1~^~A~^^^1^2.38^2.60^3^2.32^2.63^~2, 3~^~01/01/2005~ -~21286~^~209~^18.50^4^0.66^~1~^~A~^^^1^17.19^20.32^3^16.39^20.60^~2, 3~^~01/01/2005~ -~21286~^~210~^0.77^4^0.02^~1~^~A~^^^1^0.70^0.81^3^0.68^0.84^~2, 3~^~01/01/2005~ -~21286~^~211~^0.94^4^0.06^~1~^~A~^^^1^0.76^1.06^3^0.72^1.16^~2, 3~^~01/01/2005~ -~21286~^~212~^0.87^4^0.02^~1~^~A~^^^1^0.81^0.94^3^0.78^0.95^~2, 3~^~01/01/2005~ -~21286~^~213~^0.29^4^0.13^~1~^~A~^^^1^0.07^0.68^3^-0.13^0.71^~1, 2, 3~^~01/01/2005~ -~21286~^~214~^0.91^4^0.05^~1~^~A~^^^1^0.79^1.04^3^0.73^1.08^~2, 3~^~01/01/2005~ -~21286~^~255~^43.30^4^0.41^~1~^~A~^^^1^42.18^44.09^3^41.97^44.62^~2, 3~^~01/01/2005~ -~21286~^~269~^3.85^4^0.08^~1~^~A~^^^1^3.62^4.01^3^3.58^4.11^~2, 3~^~01/01/2005~ -~21286~^~287~^0.07^4^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~303~^0.51^4^0.01^~1~^~A~^^^1^0.47^0.55^3^0.46^0.56^~2, 3~^~01/01/2005~ -~21286~^~309~^1.25^4^0.06^~1~^~A~^^^1^1.10^1.40^3^1.04^1.45^~2, 3~^~01/01/2005~ -~21286~^~323~^1.78^4^0.21^~1~^~A~^^^1^1.26^2.23^3^1.09^2.46^~2, 3~^~01/01/2005~ -~21286~^~341~^0.07^4^3.0e-03^~1~^~A~^^^1^0.07^0.08^3^0.06^0.08^~2, 3~^~01/01/2005~ -~21286~^~342~^3.12^4^0.21^~1~^~A~^^^1^2.63^3.64^3^2.42^3.81^~2, 3~^~01/01/2005~ -~21286~^~343~^0.91^4^0.07^~1~^~A~^^^1^0.73^1.08^3^0.65^1.16^~2, 3~^~01/01/2005~ -~21286~^~344~^0.06^4^9.0e-03^~1~^~A~^^^1^0.04^0.08^3^0.03^0.09^~2, 3~^~01/01/2005~ -~21286~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~418~^0.83^4^0.04^~1~^~A~^^^1^0.76^0.96^3^0.69^0.97^~2, 3~^~01/01/2005~ -~21287~^~203~^13.39^8^0.38^~1~^~A~^^^1^11.54^14.78^7^12.48^14.30^~2, 3~^~02/01/2005~ -~21287~^~204~^9.54^8^0.51^~1~^~A~^^^1^7.35^11.42^7^8.33^10.74^~2, 3~^~02/01/2005~ -~21287~^~205~^31.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~207~^2.18^8^0.04^~1~^~A~^^^1^1.98^2.33^7^2.07^2.28^~2, 3~^~02/01/2005~ -~21287~^~209~^25.29^8^1.10^~1~^~A~^^^1^21.30^30.70^7^22.68^27.89^~2, 3~^~02/01/2005~ -~21287~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~211~^0.98^8^0.03^~1~^~A~^^^1^0.88^1.19^7^0.89^1.05^~2, 3~^~02/01/2005~ -~21287~^~212~^1.13^8^0.05^~1~^~A~^^^1^0.93^1.41^7^1.00^1.25^~2, 3~^~02/01/2005~ -~21287~^~213~^0.07^8^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~214~^1.67^8^0.12^~1~^~A~^^^1^1.32^2.25^7^1.37^1.97^~2, 3~^~02/01/2005~ -~21287~^~255~^43.39^8^1.10^~1~^~A~^^^1^38.93^47.49^7^40.78^45.99^~2, 3~^~02/01/2005~ -~21287~^~269~^4.02^8^0.14^~1~^~A~^^^1^3.39^4.43^7^3.68^4.36^~2, 3~^~02/01/2005~ -~21287~^~287~^0.16^8^0.01^~1~^~A~^^^1^0.12^0.19^7^0.14^0.18^~2, 3~^~02/01/2005~ -~21287~^~303~^2.34^8^0.08^~1~^~A~^^^1^1.97^2.70^7^2.13^2.55^~2, 3~^~02/01/2005~ -~21287~^~309~^1.61^8^0.06^~1~^~A~^^^1^1.27^1.81^7^1.45^1.77^~2, 3~^~02/01/2005~ -~21287~^~323~^0.61^3^0.07^~1~^~A~^^^1^0.51^0.76^2^0.28^0.93^~2, 3~^~02/01/2005~ -~21287~^~341~^0.04^3^3.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.05^~2, 3~^~02/01/2005~ -~21287~^~342~^1.05^3^0.05^~1~^~A~^^^1^0.96^1.16^2^0.80^1.30^~2, 3~^~02/01/2005~ -~21287~^~343~^0.33^3^0.02^~1~^~A~^^^1^0.28^0.36^2^0.22^0.43^~2, 3~^~02/01/2005~ -~21287~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.05^~1, 2, 3~^~02/01/2005~ -~21287~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~418~^0.40^8^0.03^~1~^~A~^^^1^0.26^0.56^7^0.31^0.48^~2, 3~^~02/01/2005~ -~21288~^~203~^13.59^8^0.24^~1~^~A~^^^1^12.28^14.27^7^13.01^14.16^~2, 3~^~02/01/2005~ -~21288~^~204~^10.50^8^0.28^~1~^~A~^^^1^9.16^11.58^7^9.82^11.18^~2, 3~^~02/01/2005~ -~21288~^~205~^31.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21288~^~207~^2.33^8^0.03^~1~^~A~^^^1^2.19^2.50^7^2.24^2.41^~2, 3~^~02/01/2005~ -~21288~^~209~^24.52^8^0.85^~1~^~A~^^^1^20.40^27.20^7^22.51^26.54^~2, 3~^~02/01/2005~ -~21288~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~211~^0.98^8^0.04^~1~^~A~^^^1^0.79^1.20^7^0.87^1.09^~2, 3~^~02/01/2005~ -~21288~^~212~^1.12^8^0.06^~1~^~A~^^^1^0.86^1.37^7^0.97^1.25^~2, 3~^~02/01/2005~ -~21288~^~213~^0.07^8^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~214~^1.45^8^0.07^~1~^~A~^^^1^1.22^1.75^7^1.28^1.62^~2, 3~^~02/01/2005~ -~21288~^~255~^42.57^8^1.01^~1~^~A~^^^1^38.13^46.61^7^40.17^44.95^~2, 3~^~02/01/2005~ -~21288~^~269~^3.76^8^0.12^~1~^~A~^^^1^3.14^4.27^7^3.47^4.05^~2, 3~^~02/01/2005~ -~21288~^~287~^0.14^8^0.01^~1~^~A~^^^1^0.07^0.21^7^0.09^0.18^~1, 2, 3~^~02/01/2005~ -~21288~^~303~^2.34^8^0.06^~1~^~A~^^^1^2.00^2.63^7^2.18^2.50^~2, 3~^~02/01/2005~ -~21288~^~309~^1.66^8^0.04^~1~^~A~^^^1^1.49^1.84^7^1.56^1.75^~2, 3~^~02/01/2005~ -~21288~^~323~^0.76^3^0.06^~1~^~A~^^^1^0.64^0.85^2^0.49^1.03^~2, 3~^~02/01/2005~ -~21288~^~341~^0.04^3^7.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.07^~2, 3~^~02/01/2005~ -~21288~^~342~^1.05^3^0.01^~1~^~A~^^^1^1.03^1.09^2^0.97^1.13^~2, 3~^~02/01/2005~ -~21288~^~343~^0.31^3^0.03^~1~^~A~^^^1^0.25^0.36^2^0.17^0.45^~2, 3~^~02/01/2005~ -~21288~^~344~^0.07^3^0.01^~1~^~A~^^^1^0.04^0.09^2^4.0e-03^0.13^~2, 3~^~02/01/2005~ -~21288~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~02/01/2005~ -~21288~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~418~^0.52^8^0.04^~1~^~A~^^^1^0.38^0.79^7^0.41^0.63^~2, 3~^~02/01/2005~ -~21289~^~203~^12.12^3^0.37^~1~^~A~^^^1^11.57^12.83^2^10.52^13.72^~2, 3~^~02/01/2005~ -~21289~^~204~^11.35^3^0.16^~1~^~A~^^^1^11.13^11.68^2^10.63^12.07^~2, 3~^~02/01/2005~ -~21289~^~205~^23.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~207~^2.32^3^0.05^~1~^~A~^^^1^2.22^2.42^2^2.07^2.56^~2, 3~^~02/01/2005~ -~21289~^~209~^16.13^3^0.96^~1~^~A~^^^1^14.60^17.90^2^12.00^20.26^~2, 3~^~02/01/2005~ -~21289~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~211~^1.09^3^0.10^~1~^~A~^^^1^0.91^1.28^2^0.62^1.54^~2, 3~^~02/01/2005~ -~21289~^~212~^0.92^3^0.04^~1~^~A~^^^1^0.83^0.98^2^0.72^1.12^~2, 3~^~02/01/2005~ -~21289~^~213~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~214~^1.52^3^0.21^~1~^~A~^^^1^1.16^1.89^2^0.61^2.42^~2, 3~^~02/01/2005~ -~21289~^~255~^51.10^3^0.35^~1~^~A~^^^1^50.44^51.65^2^49.58^52.61^~2, 3~^~02/01/2005~ -~21289~^~269~^3.74^3^0.05^~1~^~A~^^^1^3.62^3.82^2^3.48^3.99^~2, 3~^~02/01/2005~ -~21289~^~287~^0.13^3^9.0e-03^~1~^~A~^^^1^0.12^0.15^2^0.09^0.17^~2, 3~^~02/01/2005~ -~21289~^~303~^2.11^3^0.05^~1~^~A~^^^1^2.00^2.18^2^1.86^2.35^~2, 3~^~02/01/2005~ -~21289~^~309~^1.55^3^0.02^~1~^~A~^^^1^1.50^1.59^2^1.43^1.65^~2, 3~^~02/01/2005~ -~21289~^~323~^0.90^3^0.11^~1~^~A~^^^1^0.78^1.14^2^0.39^1.41^~2, 3~^~02/01/2005~ -~21289~^~341~^0.04^3^0.01^~1~^~A~^^^1^0.02^0.05^2^-3.0e-03^0.08^~2, 3~^~02/01/2005~ -~21289~^~342~^0.73^3^0.06^~1~^~A~^^^1^0.61^0.85^2^0.43^1.02^~2, 3~^~02/01/2005~ -~21289~^~343~^0.22^3^3.0e-03^~1~^~A~^^^1^0.21^0.22^2^0.20^0.23^~2, 3~^~02/01/2005~ -~21289~^~344~^0.05^3^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.06^0.17^~1, 2, 3~^~02/01/2005~ -~21289~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~418~^0.61^3^0.04^~1~^~A~^^^1^0.53^0.69^2^0.40^0.80^~2, 3~^~02/01/2005~ -~21290~^~203~^12.63^3^1.05^~1~^~A~^^^1^11.37^14.72^2^8.09^17.15^~2, 3~^~02/01/2005~ -~21290~^~204~^10.22^3^1.31^~1~^~A~^^^1^8.24^12.70^2^4.58^15.85^~2, 3~^~02/01/2005~ -~21290~^~205~^30.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~207~^2.16^3^0.22^~1~^~A~^^^1^1.89^2.60^2^1.18^3.12^~2, 3~^~02/01/2005~ -~21290~^~209~^24.07^3^2.53^~1~^~A~^^^1^19.00^26.70^2^13.16^34.97^~2, 3~^~02/01/2005~ -~21290~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~211~^0.94^3^0.09^~1~^~A~^^^1^0.82^1.12^2^0.55^1.33^~2, 3~^~02/01/2005~ -~21290~^~212~^1.08^3^0.11^~1~^~A~^^^1^0.95^1.31^2^0.57^1.57^~2, 3~^~02/01/2005~ -~21290~^~213~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~214~^1.42^3^0.17^~1~^~A~^^^1^1.09^1.70^2^0.65^2.18^~2, 3~^~02/01/2005~ -~21290~^~255~^44.90^3^0.56^~1~^~A~^^^1^44.27^46.03^2^42.45^47.34^~2, 3~^~02/01/2005~ -~21290~^~269~^3.66^3^0.28^~1~^~A~^^^1^3.13^4.12^2^2.42^4.90^~2, 3~^~02/01/2005~ -~21290~^~287~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.07^0.22^~2, 3~^~02/01/2005~ -~21290~^~303~^2.31^3^0.17^~1~^~A~^^^1^1.96^2.51^2^1.55^3.05^~2, 3~^~02/01/2005~ -~21290~^~309~^1.52^3^0.16^~1~^~A~^^^1^1.30^1.85^2^0.78^2.24^~2, 3~^~02/01/2005~ -~21290~^~323~^0.81^3^0.25^~1~^~A~^^^1^0.49^1.31^2^-0.27^1.89^~2, 3~^~02/01/2005~ -~21290~^~341~^0.05^3^9.0e-03^~1~^~A~^^^1^0.03^0.06^2^9.0e-03^0.08^~2, 3~^~02/01/2005~ -~21290~^~342~^1.25^3^0.26^~1~^~A~^^^1^0.73^1.53^2^0.12^2.38^~2, 3~^~02/01/2005~ -~21290~^~343~^0.39^3^0.06^~1~^~A~^^^1^0.27^0.49^2^0.11^0.66^~2, 3~^~02/01/2005~ -~21290~^~344~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.12^2^-0.13^0.21^~1, 2, 3~^~02/01/2005~ -~21290~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~418~^0.43^3^0.13^~1~^~A~^^^1^0.18^0.64^2^-0.14^1.01^~2, 3~^~02/01/2005~ -~21291~^~203~^12.93^3^0.79^~1~^~A~^^^1^11.88^14.49^2^9.52^16.34^~2, 3~^~02/01/2005~ -~21291~^~204~^10.81^3^1.21^~1~^~A~^^^1^8.70^12.91^2^5.57^16.04^~2, 3~^~02/01/2005~ -~21291~^~205~^29.03^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~207~^2.25^3^0.12^~1~^~A~^^^1^2.06^2.49^2^1.70^2.79^~2, 3~^~02/01/2005~ -~21291~^~209~^22.30^3^1.41^~1~^~A~^^^1^19.50^24.10^2^16.19^28.40^~2, 3~^~02/01/2005~ -~21291~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~211~^0.86^3^0.11^~1~^~A~^^^1^0.72^1.10^2^0.35^1.37^~2, 3~^~02/01/2005~ -~21291~^~212~^0.97^3^0.16^~1~^~A~^^^1^0.75^1.29^2^0.27^1.67^~2, 3~^~02/01/2005~ -~21291~^~213~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~214~^1.35^3^0.05^~1~^~A~^^^1^1.27^1.45^2^1.11^1.57^~2, 3~^~02/01/2005~ -~21291~^~255~^44.98^3^1.80^~1~^~A~^^^1^42.84^48.57^2^37.20^52.74^~2, 3~^~02/01/2005~ -~21291~^~269~^3.39^3^0.24^~1~^~A~^^^1^3.12^3.88^2^2.32^4.45^~2, 3~^~02/01/2005~ -~21291~^~287~^0.13^3^0.02^~1~^~A~^^^1^0.07^0.17^2^6.0e-03^0.25^~1, 2, 3~^~02/01/2005~ -~21291~^~303~^2.30^3^0.12^~1~^~A~^^^1^2.17^2.54^2^1.78^2.81^~2, 3~^~02/01/2005~ -~21291~^~309~^1.57^3^0.12^~1~^~A~^^^1^1.36^1.79^2^1.03^2.10^~2, 3~^~02/01/2005~ -~21291~^~323~^0.81^3^0.06^~1~^~A~^^^1^0.68^0.91^2^0.51^1.09^~2, 3~^~02/01/2005~ -~21291~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.06^2^7.0e-03^0.09^~2, 3~^~02/01/2005~ -~21291~^~342~^1.13^3^0.14^~1~^~A~^^^1^0.86^1.37^2^0.49^1.77^~2, 3~^~02/01/2005~ -~21291~^~343~^0.34^3^0.03^~1~^~A~^^^1^0.30^0.41^2^0.19^0.48^~2, 3~^~02/01/2005~ -~21291~^~344~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.09^2^0.01^0.11^~2, 3~^~02/01/2005~ -~21291~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~346~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~02/01/2005~ -~21291~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~418~^0.46^3^0.03^~1~^~A~^^^1^0.39^0.50^2^0.30^0.61^~2, 3~^~02/01/2005~ -~21292~^~203~^16.23^2^^~1~^~A~^^^1^13.84^18.62^1^^^^~02/01/2005~ -~21292~^~204~^16.99^2^^~1~^~A~^^^1^15.10^18.87^1^^^^~02/01/2005~ -~21292~^~205~^22.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~207~^2.73^2^^~1~^~A~^^^1^2.44^3.01^1^^^^~02/01/2005~ -~21292~^~209~^17.70^2^^~1~^~A~^^^1^15.30^20.10^1^^^^~02/01/2005~ -~21292~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2005~ -~21292~^~211~^0.89^2^^~1~^~A~^^^1^0.73^1.05^1^^^^~02/01/2005~ -~21292~^~212~^0.89^2^^~1~^~A~^^^1^0.66^1.11^1^^^^~02/01/2005~ -~21292~^~213~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~02/01/2005~ -~21292~^~214~^0.66^2^^~1~^~A~^^^1^0.50^0.82^1^^^^~02/01/2005~ -~21292~^~255~^41.21^2^^~1~^~A~^^^1^39.59^42.83^1^^^^~02/01/2005~ -~21292~^~269~^2.76^2^^~1~^~A~^^^1^2.26^3.26^1^^^^~02/01/2005~ -~21292~^~287~^0.25^2^^~1~^~A~^^^1^0.21^0.30^1^^^^~02/01/2005~ -~21292~^~303~^0.64^2^^~1~^~A~^^^1^0.61^0.66^1^^^^~02/01/2005~ -~21292~^~309~^2.12^2^^~1~^~A~^^^1^1.74^2.51^1^^^^~02/01/2005~ -~21292~^~323~^1.21^2^^~1~^~A~^^^1^0.89^1.53^1^^^^~02/01/2005~ -~21292~^~341~^0.06^2^^~1~^~A~^^^1^0.05^0.07^1^^^^~02/01/2005~ -~21292~^~342~^2.36^2^^~1~^~A~^^^1^2.15^2.57^1^^^^~02/01/2005~ -~21292~^~343~^0.87^2^^~1~^~A~^^^1^0.80^0.94^1^^^^~02/01/2005~ -~21292~^~344~^0.05^2^^~1~^~A~^^^1^0.00^0.10^1^^^~1~^~02/01/2005~ -~21292~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2005~ -~21292~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~02/01/2005~ -~21292~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2005~ -~21292~^~418~^0.71^2^^~1~^~A~^^^1^0.59^0.83^1^^^^~02/01/2005~ -~21293~^~203~^11.98^6^0.17^~1~^~A~^^^1^11.40^12.50^5^11.52^12.44^~4~^~02/01/2011~ -~21293~^~204~^10.42^6^0.17^~1~^~A~^^^1^10.00^11.10^5^9.96^10.87^~4~^~02/01/2011~ -~21293~^~205~^33.42^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~207~^2.69^6^0.05^~1~^~A~^^^1^2.47^2.86^5^2.54^2.83^~4~^~02/01/2011~ -~21293~^~209~^27.53^3^1.73^~1~^~A~^^^1^25.70^31.00^2^20.07^34.99^~4~^~02/01/2011~ -~21293~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2005~ -~21293~^~211~^0.57^3^0.06^~1~^~A~^^^1^0.50^0.70^2^0.28^0.85^~4~^~02/01/2011~ -~21293~^~212~^0.93^3^0.08^~1~^~A~^^^1^0.80^1.10^2^0.55^1.31^~4~^~02/01/2011~ -~21293~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~02/01/2011~ -~21293~^~214~^1.17^3^0.06^~1~^~A~^^^1^1.10^1.30^2^0.88^1.45^~4~^~02/01/2011~ -~21293~^~255~^41.48^6^0.83^~1~^~A~^^^1^38.40^43.40^5^39.34^43.62^~4~^~02/01/2011~ -~21293~^~269~^3.13^3^0.13^~1~^~A~^^^1^3.00^3.40^2^2.56^3.70^~4~^~02/01/2011~ -~21293~^~287~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~4~^~02/01/2011~ -~21293~^~303~^2.62^6^0.09^~1~^~A~^^^1^2.35^2.93^5^2.37^2.86^~4~^~02/01/2011~ -~21293~^~309~^1.44^6^0.03^~1~^~A~^^^1^1.31^1.57^5^1.34^1.53^~4~^~02/01/2011~ -~21293~^~323~^0.57^4^0.02^~1~^~A~^^^1^0.53^0.65^3^0.48^0.65^~2, 3~^~02/01/2005~ -~21293~^~341~^0.04^4^6.0e-03^~1~^~A~^^^1^0.02^0.05^3^0.01^0.05^~2, 3~^~02/01/2005~ -~21293~^~342~^1.13^4^0.03^~1~^~A~^^^1^1.08^1.22^3^1.03^1.23^~2, 3~^~02/01/2005~ -~21293~^~343~^0.36^4^5.0e-03^~1~^~A~^^^1^0.35^0.37^3^0.34^0.38^~2, 3~^~02/01/2005~ -~21293~^~344~^0.04^4^6.0e-03^~1~^~A~^^^1^0.03^0.06^3^0.02^0.06^~2, 3~^~02/01/2005~ -~21293~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21293~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~02/01/2005~ -~21293~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21293~^~418~^0.38^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~203~^10.85^6^0.13^~1~^~A~^^^1^10.40^11.30^5^10.49^11.20^~4~^~02/01/2011~ -~21294~^~204~^11.25^6^0.33^~1~^~A~^^^1^10.20^12.20^5^10.39^12.11^~4~^~02/01/2011~ -~21294~^~205~^32.85^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~207~^2.37^6^0.08^~1~^~A~^^^1^2.07^2.64^5^2.15^2.57^~4~^~02/01/2011~ -~21294~^~209~^25.00^2^^~1~^~A~^^^1^24.80^25.20^1^^^^~02/01/2011~ -~21294~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2005~ -~21294~^~211~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~02/01/2011~ -~21294~^~212~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~4~^~02/01/2011~ -~21294~^~213~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~4~^~02/01/2011~ -~21294~^~214~^1.07^3^0.08^~1~^~A~^^^1^0.90^1.20^2^0.68^1.44^~4~^~02/01/2011~ -~21294~^~255~^42.68^6^0.68^~1~^~A~^^^1^39.70^44.30^5^40.92^44.43^~4~^~02/01/2011~ -~21294~^~269~^2.47^3^0.06^~1~^~A~^^^1^2.40^2.60^2^2.18^2.75^~4~^~02/01/2011~ -~21294~^~287~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~4~^~02/01/2011~ -~21294~^~303~^2.47^6^0.10^~1~^~A~^^^1^2.16^2.78^5^2.21^2.73^~4~^~02/01/2011~ -~21294~^~309~^1.31^6^0.04^~1~^~A~^^^1^1.14^1.42^5^1.20^1.41^~4~^~02/01/2011~ -~21294~^~323~^0.74^4^0.03^~1~^~A~^^^1^0.69^0.85^3^0.62^0.86^~2, 3~^~02/01/2005~ -~21294~^~341~^0.05^4^3.0e-03^~1~^~A~^^^1^0.05^0.06^3^0.04^0.06^~2, 3~^~02/01/2005~ -~21294~^~342~^2.74^4^0.34^~1~^~A~^^^1^1.85^3.54^3^1.63^3.83^~2, 3~^~02/01/2005~ -~21294~^~343~^0.79^4^0.06^~1~^~A~^^^1^0.59^0.89^3^0.57^1.00^~2, 3~^~02/01/2005~ -~21294~^~344~^0.03^4^5.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~02/01/2005~ -~21294~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21294~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~02/01/2005~ -~21294~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21294~^~418~^0.33^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~203~^13.37^6^0.25^~1~^~A~^^^1^12.60^14.00^5^12.70^14.03^~4~^~02/01/2011~ -~21295~^~204~^12.80^6^0.20^~1~^~A~^^^1^12.10^13.60^5^12.26^13.33^~4~^~02/01/2011~ -~21295~^~205~^34.22^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~207~^3.34^6^0.05^~1~^~A~^^^1^3.18^3.49^5^3.20^3.48^~4~^~02/01/2011~ -~21295~^~209~^27.67^3^1.71^~1~^~A~^^^1^25.80^31.10^2^20.27^35.06^~4~^~02/01/2011~ -~21295~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2005~ -~21295~^~211~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^2^0.60^0.60^~4~^~02/01/2011~ -~21295~^~212~^0.93^3^0.03^~1~^~A~^^^1^0.90^1.00^2^0.79^1.07^~4~^~02/01/2011~ -~21295~^~213~^0.50^3^0.10^~1~^~A~^^^1^0.40^0.70^2^0.07^0.93^~4~^~02/01/2011~ -~21295~^~214~^0.90^3^0.05^~1~^~A~^^^1^0.80^1.00^2^0.65^1.14^~4~^~02/01/2011~ -~21295~^~255~^36.27^6^1.08^~1~^~A~^^^1^32.60^40.40^5^33.48^39.05^~4~^~02/01/2011~ -~21295~^~269~^3.13^3^0.13^~1~^~A~^^^1^3.00^3.40^2^2.56^3.70^~4~^~02/01/2011~ -~21295~^~287~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^2^0.20^0.20^~4~^~02/01/2011~ -~21295~^~303~^2.52^6^0.04^~1~^~A~^^^1^2.40^2.71^5^2.39^2.63^~4~^~02/01/2011~ -~21295~^~309~^1.64^6^0.05^~1~^~A~^^^1^1.44^1.81^5^1.48^1.78^~4~^~02/01/2011~ -~21295~^~323~^0.68^4^0.05^~1~^~A~^^^1^0.58^0.83^3^0.51^0.85^~2, 3~^~02/01/2005~ -~21295~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.04^0.05^3^0.03^0.05^~2, 3~^~02/01/2005~ -~21295~^~342~^1.05^4^0.11^~1~^~A~^^^1^0.82^1.35^3^0.69^1.40^~2, 3~^~02/01/2005~ -~21295~^~343~^0.35^4^0.04^~1~^~A~^^^1^0.27^0.48^3^0.20^0.49^~2, 3~^~02/01/2005~ -~21295~^~344~^0.04^4^8.0e-03^~1~^~A~^^^1^0.03^0.06^3^0.01^0.06^~2, 3~^~02/01/2005~ -~21295~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21295~^~346~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~02/01/2005~ -~21295~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21295~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~203~^12.23^6^0.15^~1~^~A~^^^1^11.80^12.80^5^11.83^12.63^~4~^~02/01/2011~ -~21296~^~204~^12.63^6^0.17^~1~^~A~^^^1^11.90^13.10^5^12.17^13.09^~4~^~02/01/2011~ -~21296~^~205~^32.11^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~207~^2.87^6^0.03^~1~^~A~^^^1^2.73^2.97^5^2.77^2.97^~4~^~02/01/2011~ -~21296~^~209~^25.97^3^0.95^~1~^~A~^^^1^24.40^27.70^2^21.85^30.08^~4~^~02/01/2011~ -~21296~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2005~ -~21296~^~211~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~4~^~02/01/2011~ -~21296~^~212~^0.83^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.69^0.97^~4~^~02/01/2011~ -~21296~^~213~^0.27^3^0.06^~1~^~A~^^^1^0.20^0.40^2^-0.02^0.55^~4~^~02/01/2011~ -~21296~^~214~^1.10^3^0.05^~1~^~A~^^^1^1.00^1.20^2^0.85^1.34^~4~^~02/01/2011~ -~21296~^~255~^40.15^6^0.40^~1~^~A~^^^1^39.10^41.90^5^39.11^41.18^~4~^~02/01/2011~ -~21296~^~269~^2.82^3^0.08^~1~^~A~^^^1^2.70^2.97^2^2.48^3.16^~4~^~02/01/2011~ -~21296~^~287~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 4~^~02/01/2011~ -~21296~^~303~^2.71^6^0.09^~1~^~A~^^^1^2.48^3.07^5^2.47^2.95^~4~^~02/01/2011~ -~21296~^~309~^1.49^6^0.02^~1~^~A~^^^1^1.40^1.59^5^1.41^1.56^~4~^~02/01/2011~ -~21296~^~323~^0.65^4^0.04^~1~^~A~^^^1^0.59^0.79^3^0.50^0.80^~2, 3~^~02/01/2005~ -~21296~^~341~^0.05^4^3.0e-03^~1~^~A~^^^1^0.04^0.05^3^0.03^0.05^~2, 3~^~02/01/2005~ -~21296~^~342~^1.14^4^0.06^~1~^~A~^^^1^1.00^1.30^3^0.93^1.35^~2, 3~^~02/01/2005~ -~21296~^~343~^0.35^4^0.01^~1~^~A~^^^1^0.31^0.38^3^0.30^0.40^~2, 3~^~02/01/2005~ -~21296~^~344~^0.02^4^9.0e-03^~1~^~A~^^^1^0.00^0.04^3^-3.0e-03^0.05^~1, 2, 3~^~02/01/2005~ -~21296~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21296~^~346~^0.01^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-6.0e-03^0.02^~1, 2, 3~^~02/01/2005~ -~21296~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21296~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~203~^11.47^6^0.12^~1~^~A~^^^1^11.10^11.90^5^11.15^11.78^~4~^~02/01/2011~ -~21297~^~204~^13.07^6^0.35^~1~^~A~^^^1^11.60^13.90^5^12.16^13.97^~4~^~02/01/2011~ -~21297~^~205~^31.79^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~207~^2.51^6^0.06^~1~^~A~^^^1^2.20^2.68^5^2.33^2.67^~4~^~02/01/2011~ -~21297~^~209~^26.80^3^0.70^~1~^~A~^^^1^25.40^27.70^2^23.74^29.85^~4~^~02/01/2011~ -~21297~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2005~ -~21297~^~211~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~02/01/2011~ -~21297~^~212~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~02/01/2011~ -~21297~^~213~^0.37^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.01^0.74^~4~^~02/01/2011~ -~21297~^~214~^0.80^3^0.05^~1~^~A~^^^1^0.70^0.90^2^0.55^1.04^~4~^~02/01/2011~ -~21297~^~255~^41.17^6^0.31^~1~^~A~^^^1^40.20^42.40^5^40.36^41.96^~4~^~02/01/2011~ -~21297~^~269~^1.95^3^0.13^~1~^~A~^^^1^1.70^2.17^2^1.35^2.54^~4~^~02/01/2011~ -~21297~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21297~^~303~^2.57^6^0.08^~1~^~A~^^^1^2.32^2.82^5^2.34^2.78^~4~^~02/01/2011~ -~21297~^~309~^1.36^6^0.02^~1~^~A~^^^1^1.31^1.43^5^1.31^1.41^~4~^~02/01/2011~ -~21297~^~323~^0.92^4^0.07^~1~^~A~^^^1^0.79^1.10^3^0.67^1.17^~2, 3~^~02/01/2005~ -~21297~^~341~^0.06^4^4.0e-03^~1~^~A~^^^1^0.05^0.07^3^0.04^0.07^~2, 3~^~02/01/2005~ -~21297~^~342~^3.02^4^0.36^~1~^~A~^^^1^2.20^3.99^3^1.85^4.19^~2, 3~^~02/01/2005~ -~21297~^~343~^0.94^4^0.08^~1~^~A~^^^1^0.79^1.17^3^0.66^1.21^~2, 3~^~02/01/2005~ -~21297~^~344~^0.02^4^9.0e-03^~1~^~A~^^^1^0.00^0.04^3^-3.0e-03^0.05^~1, 2, 3~^~02/01/2005~ -~21297~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21297~^~346~^0.04^4^0.02^~1~^~A~^^^1^0.01^0.10^3^-0.03^0.10^~1, 2, 3~^~02/01/2005~ -~21297~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21297~^~418~^0.51^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21298~^~203~^11.34^4^0.31^~1~^~A~^^^1^10.44^11.87^3^10.34^12.34^~2, 3~^~02/01/2005~ -~21298~^~204~^10.95^4^0.36^~1~^~A~^^^1^9.92^11.48^3^9.80^12.10^~2, 3~^~02/01/2005~ -~21298~^~205~^26.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~207~^2.53^4^0.05^~1~^~A~^^^1^2.45^2.68^3^2.37^2.69^~2, 3~^~02/01/2005~ -~21298~^~209~^20.32^4^0.99^~1~^~A~^^^1^18.49^23.00^3^17.15^23.48^~2, 3~^~02/01/2005~ -~21298~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~211~^0.67^4^0.03^~1~^~A~^^^1^0.63^0.75^3^0.57^0.76^~2, 3~^~02/01/2005~ -~21298~^~212~^1.03^4^0.06^~1~^~A~^^^1^0.90^1.15^3^0.82^1.23^~2, 3~^~02/01/2005~ -~21298~^~213~^0.14^4^0.04^~1~^~A~^^^1^0.07^0.28^3^-0.01^0.29^~1, 2, 3~^~02/01/2005~ -~21298~^~214~^1.12^4^0.04^~1~^~A~^^^1^1.05^1.21^3^0.99^1.25^~2, 3~^~02/01/2005~ -~21298~^~255~^49.15^4^0.48^~1~^~A~^^^1^47.82^50.15^3^47.60^50.69^~2, 3~^~02/01/2005~ -~21298~^~269~^3.04^4^0.12^~1~^~A~^^^1^2.76^3.33^3^2.65^3.43^~2, 3~^~02/01/2005~ -~21298~^~287~^0.09^4^8.0e-03^~1~^~A~^^^1^0.07^0.10^3^0.06^0.11^~1, 2, 3~^~02/01/2005~ -~21298~^~303~^1.53^4^0.02^~1~^~A~^^^1^1.50^1.60^3^1.44^1.60^~2, 3~^~02/01/2005~ -~21298~^~309~^1.15^4^0.02^~1~^~A~^^^1^1.10^1.20^3^1.05^1.24^~2, 3~^~02/01/2005~ -~21298~^~323~^0.66^4^0.05^~1~^~A~^^^1^0.59^0.84^3^0.47^0.85^~2, 3~^~02/01/2005~ -~21298~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.04^0.05^3^0.03^0.05^~2, 3~^~02/01/2005~ -~21298~^~342~^0.90^4^0.05^~1~^~A~^^^1^0.82^1.04^3^0.74^1.06^~2, 3~^~02/01/2005~ -~21298~^~343~^0.29^4^6.0e-03^~1~^~A~^^^1^0.27^0.30^3^0.26^0.30^~2, 3~^~02/01/2005~ -~21298~^~344~^0.03^4^5.0e-03^~1~^~A~^^^1^0.02^0.04^3^0.01^0.04^~2, 3~^~02/01/2005~ -~21298~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~346~^0.02^4^1.0e-03^~1~^~A~^^^1^0.01^0.02^3^0.01^0.02^~1, 2, 3~^~02/01/2005~ -~21298~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~418~^0.84^4^0.05^~1~^~A~^^^1^0.69^0.95^3^0.66^1.02^~2, 3~^~02/01/2005~ -~21299~^~203~^11.39^12^0.22^~1~^~A~^^^1^10.00^12.50^11^10.89^11.89^~4~^~02/01/2011~ -~21299~^~204~^9.69^12^0.24^~1~^~A~^^^1^8.50^11.10^11^9.16^10.22^~4~^~02/01/2011~ -~21299~^~205~^33.33^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~207~^2.41^12^0.09^~1~^~A~^^^1^1.83^2.86^11^2.20^2.61^~4~^~02/01/2011~ -~21299~^~209~^26.95^6^0.85^~1~^~A~^^^1^25.70^31.00^5^24.76^29.13^~4~^~02/01/2011~ -~21299~^~210~^0.20^6^0.08^~1~^~A~^^^1^0.00^0.40^5^-0.03^0.43^~1, 4~^~02/01/2011~ -~21299~^~211~^0.78^6^0.10^~1~^~A~^^^1^0.50^1.10^5^0.51^1.05^~4~^~02/01/2011~ -~21299~^~212~^1.00^6^0.05^~1~^~A~^^^1^0.80^1.10^5^0.86^1.13^~4~^~02/01/2011~ -~21299~^~213~^0.42^6^0.06^~1~^~A~^^^1^0.30^0.70^5^0.24^0.58^~4~^~02/01/2011~ -~21299~^~214~^1.05^6^0.06^~1~^~A~^^^1^0.90^1.30^5^0.89^1.20^~4~^~02/01/2011~ -~21299~^~255~^43.17^12^0.69^~1~^~A~^^^1^38.40^46.60^11^41.64^44.70^~4~^~02/01/2011~ -~21299~^~269~^3.58^6^0.20^~1~^~A~^^^1^3.00^4.10^5^3.04^4.11^~4~^~02/01/2011~ -~21299~^~287~^0.13^6^0.02^~1~^~A~^^^1^0.07^0.20^5^0.07^0.18^~1, 4~^~06/01/2005~ -~21299~^~303~^2.48^12^0.07^~1~^~A~^^^1^2.06^2.93^11^2.32^2.63^~4~^~02/01/2011~ -~21299~^~309~^1.34^12^0.03^~1~^~A~^^^1^1.21^1.57^11^1.26^1.42^~4~^~02/01/2011~ -~21299~^~323~^0.83^15^0.14^~1~^~A~^^^4^0.57^1.14^3^0.37^1.27^~4~^~06/01/2005~ -~21299~^~341~^0.05^15^6.0e-03^~1~^~A~^^^4^0.04^0.06^3^0.02^0.06^~4~^~06/01/2005~ -~21299~^~342~^1.19^15^0.06^~1~^~A~^^^4^1.05^1.34^3^0.99^1.38^~4~^~06/01/2005~ -~21299~^~343~^0.34^15^8.0e-03^~1~^~A~^^^4^0.33^0.36^3^0.31^0.36^~4~^~06/01/2005~ -~21299~^~344~^0.06^15^0.02^~1~^~A~^^^4^0.01^0.11^3^-0.01^0.12^~4~^~06/01/2005~ -~21299~^~345~^0.00^15^0.00^~1~^~A~^^^4^0.00^0.00^3^0.00^0.00^~4~^~06/01/2005~ -~21299~^~346~^0.00^15^1.0e-03^~1~^~A~^^^4^0.00^0.00^3^-2.0e-03^5.0e-03^~4~^~06/01/2005~ -~21299~^~347~^0.00^15^0.00^~1~^~A~^^^4^0.00^0.00^3^0.00^0.00^~4~^~06/01/2005~ -~21299~^~418~^0.42^2^^~1~^~A~^^^1^0.38^0.46^1^^^^~02/01/2011~ -~21299~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~21299~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~ -~21300~^~203~^10.81^12^0.13^~1~^~A~^^^1^9.88^11.70^11^10.50^11.10^~2, 3~^~02/01/2011~ -~21300~^~204~^10.54^12^0.27^~1~^~A~^^^1^9.50^12.20^11^9.93^11.15^~2, 3~^~02/01/2011~ -~21300~^~205~^33.17^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~207~^2.44^12^0.04^~1~^~A~^^^1^2.07^2.66^11^2.33^2.53^~2, 3~^~02/01/2011~ -~21300~^~209~^24.98^5^0.51^~1~^~A~^^^1^23.50^26.70^4^23.55^26.41^~2, 3~^~02/01/2011~ -~21300~^~210~^0.20^6^0.08^~1~^~A~^^^1^0.00^0.40^5^-0.03^0.43^~1, 2, 3~^~02/01/2011~ -~21300~^~211~^0.50^6^0.05^~1~^~A~^^^1^0.40^0.70^5^0.36^0.63^~2, 3~^~02/01/2011~ -~21300~^~212~^0.72^6^0.11^~1~^~A~^^^1^0.40^1.10^5^0.41^1.02^~2, 3~^~02/01/2011~ -~21300~^~213~^0.57^6^0.08^~1~^~A~^^^1^0.30^0.80^5^0.36^0.77^~2, 3~^~02/01/2011~ -~21300~^~214~^1.25^6^0.09^~1~^~A~^^^1^0.90^1.50^5^1.01^1.48^~2, 3~^~02/01/2011~ -~21300~^~255~^43.05^12^0.53^~1~^~A~^^^1^39.70^46.20^11^41.88^44.22^~2, 3~^~02/01/2011~ -~21300~^~269~^3.34^6^0.40^~1~^~A~^^^1^2.40^4.60^5^2.30^4.37^~2, 3~^~02/01/2011~ -~21300~^~287~^0.11^6^0.01^~1~^~A~^^^1^0.07^0.20^5^0.05^0.15^~1, 2, 3~^~02/01/2011~ -~21300~^~303~^2.48^12^0.06^~1~^~A~^^^1^2.16^2.78^11^2.34^2.63^~2, 3~^~02/01/2011~ -~21300~^~309~^1.27^12^0.02^~1~^~A~^^^1^1.14^1.42^11^1.21^1.32^~2, 3~^~02/01/2011~ -~21300~^~323~^0.82^11^0.04^~1~^~A~^^^3^0.74^0.89^2^0.63^1.00^~4~^~06/01/2005~ -~21300~^~341~^0.06^11^6.0e-03^~1~^~A~^^^3^0.05^0.07^2^0.03^0.08^~4~^~06/01/2005~ -~21300~^~342~^2.09^11^0.44^~1~^~A~^^^3^1.25^2.74^2^0.20^3.98^~4~^~06/01/2005~ -~21300~^~343~^0.62^11^0.12^~1~^~A~^^^3^0.39^0.79^2^0.10^1.14^~4~^~06/01/2005~ -~21300~^~344~^0.04^11^0.01^~1~^~A~^^^3^0.03^0.07^2^-6.0e-03^0.09^~4~^~06/01/2005~ -~21300~^~345~^0.00^11^0.00^~1~^~A~^^^3^0.00^0.00^2^0.00^0.00^~4~^~06/01/2005~ -~21300~^~346~^0.00^11^2.0e-03^~1~^~A~^^^3^0.00^0.01^2^-8.0e-03^0.01^~4~^~06/01/2005~ -~21300~^~347~^0.00^11^0.00^~1~^~A~^^^3^0.00^0.00^2^0.00^0.00^~4~^~06/01/2005~ -~21300~^~418~^0.35^2^^~1~^~A~^^^1^0.33^0.36^1^^^^~02/01/2011~ -~21300~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21300~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21301~^~203~^12.85^12^0.27^~1~^~A~^^^1^10.70^14.00^11^12.23^13.46^~2, 3~^~02/01/2011~ -~21301~^~204~^13.95^12^0.39^~1~^~A~^^^1^12.10^16.40^11^13.07^14.82^~2, 3~^~02/01/2011~ -~21301~^~205~^31.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~207~^3.07^12^0.09^~1~^~A~^^^1^2.49^3.49^11^2.85^3.29^~2, 3~^~02/01/2011~ -~21301~^~209~^23.83^6^1.90^~1~^~A~^^^1^18.50^31.10^5^18.92^28.74^~2, 3~^~02/01/2011~ -~21301~^~210~^0.38^6^0.17^~1~^~A~^^^1^0.00^0.90^5^-0.06^0.83^~1, 2, 3~^~02/01/2011~ -~21301~^~211~^0.78^6^0.08^~1~^~A~^^^1^0.60^1.10^5^0.55^1.00^~2, 3~^~02/01/2011~ -~21301~^~212~^1.02^6^0.06^~1~^~A~^^^1^0.90^1.30^5^0.86^1.17^~2, 3~^~02/01/2011~ -~21301~^~213~^0.55^6^0.05^~1~^~A~^^^1^0.40^0.70^5^0.40^0.69^~2, 3~^~02/01/2011~ -~21301~^~214~^0.73^6^0.08^~1~^~A~^^^1^0.50^1.00^5^0.52^0.94^~2, 3~^~06/01/2005~ -~21301~^~255~^38.92^12^1.04^~1~^~A~^^^1^32.60^44.40^11^36.62^41.23^~2, 3~^~02/01/2011~ -~21301~^~269~^3.61^6^0.23^~1~^~A~^^^1^3.00^4.47^5^3.00^4.22^~2, 3~^~02/01/2011~ -~21301~^~287~^0.15^6^0.02^~1~^~A~^^^1^0.07^0.20^5^0.08^0.20^~1, 2, 3~^~02/01/2011~ -~21301~^~303~^1.71^12^0.24^~1~^~A~^^^1^0.86^2.71^11^1.18^2.25^~2, 3~^~02/01/2011~ -~21301~^~309~^1.59^12^0.04^~1~^~A~^^^1^1.27^1.81^11^1.49^1.68^~2, 3~^~02/01/2011~ -~21301~^~323~^1.29^14^0.23^~1~^~A~^^^4^0.68^1.78^3^0.54^2.03^~4~^~06/01/2005~ -~21301~^~418~^0.57^2^^~1~^~A~^^^1^0.51^0.64^1^^^^~02/01/2011~ -~21301~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21301~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21302~^~203~^11.74^12^0.19^~1~^~A~^^^1^10.60^12.80^11^11.31^12.16^~2, 3~^~02/01/2011~ -~21302~^~204~^11.91^12^0.27^~1~^~A~^^^1^10.60^13.10^11^11.29^12.52^~2, 3~^~02/01/2011~ -~21302~^~205~^31.98^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~207~^2.59^12^0.09^~1~^~A~^^^1^2.02^2.97^11^2.38^2.79^~2, 3~^~02/01/2011~ -~21302~^~209~^25.37^6^0.64^~1~^~A~^^^1^23.50^27.70^5^23.70^27.02^~2, 3~^~02/01/2011~ -~21302~^~210~^0.18^6^0.08^~1~^~A~^^^1^0.00^0.40^5^-0.03^0.39^~1, 2, 3~^~02/01/2011~ -~21302~^~211~^0.73^6^0.09^~1~^~A~^^^1^0.50^1.10^5^0.47^0.98^~2, 3~^~02/01/2011~ -~21302~^~212~^0.93^6^0.04^~1~^~A~^^^1^0.80^1.10^5^0.80^1.06^~2, 3~^~02/01/2011~ -~21302~^~213~^0.35^6^0.07^~1~^~A~^^^1^0.20^0.60^5^0.16^0.53^~2, 3~^~02/01/2011~ -~21302~^~214~^0.97^6^0.06^~1~^~A~^^^1^0.80^1.20^5^0.79^1.13^~2, 3~^~02/01/2011~ -~21302~^~255~^41.77^12^0.58^~1~^~A~^^^1^39.10^45.40^11^40.48^43.06^~2, 3~^~02/01/2011~ -~21302~^~269~^3.26^6^0.19^~1~^~A~^^^1^2.70^3.80^5^2.74^3.76^~2, 3~^~02/01/2011~ -~21302~^~287~^0.09^6^6.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.07^0.10^~1, 2, 3~^~02/01/2011~ -~21302~^~303~^2.52^12^0.09^~1~^~A~^^^1^1.95^3.07^11^2.32^2.72^~2, 3~^~02/01/2011~ -~21302~^~309~^1.40^12^0.03^~1~^~A~^^^1^1.25^1.59^11^1.33^1.47^~2, 3~^~02/01/2011~ -~21302~^~323~^0.87^15^0.10^~1~^~A~^^^4^0.65^1.10^3^0.55^1.19^~4~^~06/01/2005~ -~21302~^~418~^0.50^2^^~1~^~A~^^^1^0.49^0.51^1^^^^~02/01/2011~ -~21302~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21302~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21303~^~203~^11.49^12^0.10^~1~^~A~^^^1^10.80^12.00^11^11.25^11.73^~2, 3~^~02/01/2011~ -~21303~^~204~^12.58^12^0.26^~1~^~A~^^^1^11.10^13.90^11^12.00^13.16^~2, 3~^~02/01/2011~ -~21303~^~205~^31.84^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~207~^2.55^12^0.05^~1~^~A~^^^1^2.20^2.81^11^2.43^2.67^~2, 3~^~02/01/2011~ -~21303~^~209~^24.88^6^1.10^~1~^~A~^^^1^21.40^27.70^5^22.05^27.71^~2, 3~^~02/01/2011~ -~21303~^~210~^0.17^6^0.07^~1~^~A~^^^1^0.00^0.40^5^-0.02^0.36^~1, 2, 3~^~02/01/2011~ -~21303~^~211~^0.47^6^0.06^~1~^~A~^^^1^0.30^0.70^5^0.29^0.63^~2, 3~^~02/01/2011~ -~21303~^~212~^0.65^6^0.13^~1~^~A~^^^1^0.30^1.00^5^0.31^0.98^~2, 3~^~02/01/2011~ -~21303~^~213~^0.52^6^0.07^~1~^~A~^^^1^0.20^0.70^5^0.31^0.72^~2, 3~^~02/01/2011~ -~21303~^~214~^1.05^6^0.11^~1~^~A~^^^1^0.70^1.40^5^0.74^1.35^~2, 3~^~02/01/2011~ -~21303~^~255~^41.53^12^0.61^~1~^~A~^^^1^39.10^46.10^11^40.17^42.88^~2, 3~^~02/01/2011~ -~21303~^~269~^2.93^6^0.44^~1~^~A~^^^1^1.70^4.07^5^1.78^4.07^~2, 3~^~02/01/2011~ -~21303~^~287~^0.08^6^4.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.06^0.08^~1, 2, 3~^~02/01/2011~ -~21303~^~303~^2.55^12^0.04^~1~^~A~^^^1^2.32^2.82^11^2.44^2.65^~2, 3~^~02/01/2011~ -~21303~^~309~^1.35^12^0.01^~1~^~A~^^^1^1.28^1.43^11^1.31^1.37^~2, 3~^~02/01/2011~ -~21303~^~323~^0.87^11^0.03^~1~^~A~^^^3^0.81^0.92^2^0.72^1.01^~4~^~06/01/2005~ -~21303~^~418~^0.51^2^^~1~^~A~^^^1^0.51^0.52^1^^^^~02/01/2011~ -~21303~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21303~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21304~^~203~^11.02^15^0.44^~1~^~A~^^^4^10.27^12.12^3^9.60^12.43^~4~^~06/01/2005~ -~21304~^~204~^10.90^15^0.24^~1~^~A~^^^4^10.21^11.35^3^10.11^11.68^~4~^~06/01/2005~ -~21304~^~205~^25.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~207~^2.30^15^0.09^~1~^~A~^^^4^2.08^2.53^3^2.00^2.59^~4~^~06/01/2005~ -~21304~^~209~^18.70^15^0.94^~1~^~A~^^^4^16.13^20.32^3^15.69^21.70^~4~^~06/01/2005~ -~21304~^~210~^0.08^15^0.08^~1~^~A~^^^4^0.00^0.33^3^-0.18^0.34^~4~^~06/01/2005~ -~21304~^~211~^1.07^15^0.17^~1~^~A~^^^4^0.67^1.50^3^0.52^1.61^~4~^~06/01/2005~ -~21304~^~212~^1.10^15^0.15^~1~^~A~^^^4^0.89^1.56^3^0.60^1.59^~4~^~06/01/2005~ -~21304~^~213~^0.17^15^0.05^~1~^~A~^^^4^0.07^0.33^3^4.0e-03^0.34^~4~^~06/01/2005~ -~21304~^~214~^1.21^15^0.11^~1~^~A~^^^4^0.97^1.52^3^0.84^1.57^~4~^~06/01/2005~ -~21304~^~255~^50.40^15^0.42^~1~^~A~^^^4^49.15^51.10^3^49.03^51.76^~4~^~06/01/2005~ -~21304~^~269~^3.73^15^0.39^~1~^~A~^^^4^3.04^4.84^3^2.46^4.99^~4~^~11/01/2006~ -~21304~^~287~^0.10^15^0.01^~1~^~A~^^^4^0.07^0.13^3^0.05^0.13^~4~^~06/01/2005~ -~21304~^~303~^1.86^15^0.20^~1~^~A~^^^4^1.50^2.32^3^1.20^2.52^~4~^~06/01/2005~ -~21304~^~309~^1.24^15^0.11^~1~^~A~^^^4^0.98^1.55^3^0.86^1.61^~4~^~06/01/2005~ -~21304~^~323~^0.86^15^0.08^~1~^~A~^^^4^0.66^1.06^3^0.59^1.12^~4~^~06/01/2005~ -~21304~^~341~^0.04^15^2.0e-03^~1~^~A~^^^4^0.04^0.05^3^0.03^0.05^~4~^~06/01/2005~ -~21304~^~342~^0.93^15^0.07^~1~^~A~^^^4^0.73^1.06^3^0.69^1.17^~4~^~06/01/2005~ -~21304~^~343~^0.27^15^0.01^~1~^~A~^^^4^0.22^0.29^3^0.21^0.31^~4~^~06/01/2005~ -~21304~^~344~^0.06^15^0.01^~1~^~A~^^^4^0.03^0.09^3^0.01^0.10^~4~^~06/01/2005~ -~21304~^~345~^0.00^15^0.00^~1~^~A~^^^4^0.00^0.00^3^0.00^0.00^~4~^~06/01/2005~ -~21304~^~346~^0.04^15^0.02^~1~^~A~^^^4^0.00^0.12^3^-0.04^0.12^~4~^~06/01/2005~ -~21304~^~347~^0.00^15^0.00^~1~^~A~^^^4^0.00^0.00^3^0.00^0.00^~4~^~06/01/2005~ -~21304~^~418~^0.68^15^0.06^~1~^~A~^^^4^0.55^0.84^3^0.47^0.88^~4~^~06/01/2005~ -~21304~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21304~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~ -~21305~^~203~^10.77^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~204~^17.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~205~^22.04^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21305~^~207~^2.44^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~210~^4.16^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~211~^2.71^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~212~^0.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21305~^~213~^0.61^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~214~^0.32^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~255~^47.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~269~^7.90^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21305~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21305~^~303~^1.51^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~309~^1.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~323~^0.55^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~418~^0.53^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~203~^8.41^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~204~^17.76^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~205~^31.25^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21306~^~207~^2.47^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~210~^6.16^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~211~^3.91^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~212~^0.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~213~^0.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~214~^0.48^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~255~^40.11^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~269~^11.23^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21306~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21306~^~303~^1.42^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~309~^0.76^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~323~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~418~^0.27^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~203~^12.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~204~^13.19^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~205~^26.19^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21307~^~207~^2.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~210~^5.22^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~211~^3.13^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~212~^0.11^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~213~^0.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~214~^0.38^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~255~^45.85^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~269~^9.56^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21307~^~303~^1.65^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~309~^1.37^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~323~^0.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~418~^0.40^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21309~^~203~^15.79^6^0.27^~1~^~A~^^^1^14.75^16.56^5^15.07^16.50^~4~^~08/01/2012~ -~21309~^~204~^19.81^6^0.54^~1~^~A~^^^1^17.69^21.29^5^18.40^21.20^~4~^~08/01/2012~ -~21309~^~205~^15.09^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~207~^2.19^6^0.08^~1~^~A~^^^1^1.93^2.44^5^1.97^2.39^~4~^~08/01/2012~ -~21309~^~210~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~08/01/2012~ -~21309~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21309~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21309~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21309~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21309~^~255~^47.13^6^0.39^~1~^~A~^^^1^46.35^49.03^5^46.10^48.14^~4~^~08/01/2012~ -~21309~^~269~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~4~^~08/01/2012~ -~21309~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~08/01/2012~ -~21309~^~303~^0.89^6^0.03^~1~^~A~^^^1^0.77^1.03^5^0.79^0.97^~4~^~08/01/2012~ -~21309~^~309~^0.59^6^7.0e-03^~1~^~A~^^^1^0.57^0.62^5^0.57^0.60^~4~^~04/01/2005~ -~21309~^~418~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21319~^~203~^2.48^6^0.13^~1~^~A~^^^1^2.07^2.90^5^2.13^2.81^~2, 3~^~05/01/2014~ -~21319~^~204~^16.30^6^0.48^~1~^~A~^^^1^14.70^17.80^5^15.05^17.54^~2, 3~^~05/01/2014~ -~21319~^~205~^28.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~207~^2.25^6^0.08^~1~^~A~^^^1^2.04^2.51^5^2.04^2.46^~2, 3~^~05/01/2014~ -~21319~^~209~^25.23^3^0.34^~1~^~A~^^^1^24.60^25.80^2^23.73^26.73^~2, 3~^~05/01/2014~ -~21319~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~211~^0.30^3^0.05^~1~^~A~^^^1^0.18^0.37^2^0.05^0.54^~1, 2, 3~^~05/01/2014~ -~21319~^~212~^0.24^3^0.02^~1~^~A~^^^1^0.18^0.28^2^0.11^0.36^~1, 2, 3~^~05/01/2014~ -~21319~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~255~^50.42^6^0.59^~1~^~A~^^^1^47.80^51.80^5^48.89^51.94^~2, 3~^~05/01/2014~ -~21319~^~269~^0.54^3^0.08^~1~^~A~^^^1^0.37^0.65^2^0.16^0.91^~2, 3~^~05/01/2014~ -~21319~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~303~^0.56^6^0.01^~1~^~A~^^^1^0.49^0.60^5^0.51^0.60^~2, 3~^~05/01/2014~ -~21319~^~309~^0.34^6^0.03^~1~^~A~^^^1^0.24^0.43^5^0.25^0.42^~2, 3~^~02/01/2005~ -~21319~^~323~^2.14^3^0.32^~1~^~A~^^^1^1.49^2.54^2^0.72^3.54^~2, 3~^~05/01/2014~ -~21319~^~341~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.04^0.13^~1, 2, 3~^~05/01/2014~ -~21319~^~342~^4.22^3^1.45^~1~^~A~^^^1^1.32^5.72^2^-2.02^10.47^~2, 3~^~05/01/2014~ -~21319~^~343~^0.58^3^0.12^~1~^~A~^^^1^0.33^0.73^2^0.03^1.13^~2, 3~^~05/01/2014~ -~21319~^~344~^0.07^3^5.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.04^0.08^~2, 3~^~05/01/2014~ -~21319~^~345~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.06^0.09^~1, 2, 3~^~05/01/2014~ -~21319~^~346~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.10^~1, 2, 3~^~05/01/2014~ -~21319~^~347~^0.08^3^0.07^~1~^~A~^^^1^0.00^0.23^2^-0.25^0.40^~1, 2, 3~^~05/01/2014~ -~21321~^~203~^6.00^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~204~^5.84^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~205~^38.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21321~^~207~^1.65^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~210~^3.90^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~211~^1.05^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~212~^0.24^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~213~^3.34^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~214~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~255~^48.24^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~269~^8.84^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~303~^1.83^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~309~^0.42^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~323~^0.70^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21327~^~203~^12.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~204~^13.19^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~205~^26.19^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~207~^2.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~210~^5.22^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~211~^3.13^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~212~^0.11^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~213~^0.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~214~^0.38^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~255~^45.85^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~269~^9.56^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21327~^~303~^1.65^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21328~^~203~^8.41^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~204~^17.76^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~205~^31.25^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21328~^~207~^2.47^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~210~^6.16^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~211~^3.91^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~212~^0.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~213~^0.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~214~^0.48^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~255~^40.11^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~269~^11.23^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21328~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21328~^~303~^1.42^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~309~^0.76^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~418~^0.27^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~203~^10.77^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~204~^17.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~205~^22.04^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21329~^~207~^2.44^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~210~^4.16^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~211~^2.71^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~212~^0.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~213~^0.61^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~214~^0.32^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~255~^47.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~269~^7.90^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21329~^~303~^1.51^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~309~^1.03^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~418~^0.53^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21333~^~203~^4.24^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~204~^4.86^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~205~^26.36^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21333~^~207~^0.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~210~^12.76^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~211~^0.69^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~212~^0.16^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~213~^5.59^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~214~^0.29^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~255~^63.64^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~269~^19.49^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~303~^0.35^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~309~^0.50^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~323~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~418~^0.58^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~203~^3.19^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~204~^3.95^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~205~^28.09^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21334~^~207~^0.75^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~210~^16.53^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~211~^2.17^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~212~^1.61^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~213~^4.72^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~214~^0.29^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~255~^64.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~269~^25.32^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~303~^0.10^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~309~^0.39^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~323~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~418~^0.49^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~203~^3.58^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~204~^4.89^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~205~^33.36^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21335~^~207~^0.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~210~^12.67^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~211~^3.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~212~^0.78^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~213~^5.46^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~214~^1.64^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~255~^57.27^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~269~^23.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~303~^0.08^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~309~^0.45^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~323~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~418~^0.51^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~203~^4.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~204~^5.91^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~205~^30.05^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21336~^~207~^1.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~210~^19.69^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~211~^0.79^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~212~^0.22^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~213~^5.86^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~214~^0.32^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~255~^58.81^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~269~^26.89^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~303~^0.83^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~309~^0.56^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~323~^0.19^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~418~^0.55^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~203~^4.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~204~^6.46^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~205~^26.82^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21338~^~207~^0.96^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~210~^16.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~211~^0.75^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~212~^0.21^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~213~^6.23^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~214~^0.28^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~255~^61.74^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~269~^24.37^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~303~^0.27^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~309~^0.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~323~^0.08^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~418~^0.60^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~203~^3.97^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~204~^5.66^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~205~^25.55^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21339~^~207~^0.92^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~210~^14.20^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~211~^0.89^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~212~^0.18^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~213~^5.62^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~214~^0.28^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~255~^63.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~269~^21.19^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~303~^0.61^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~309~^0.50^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~323~^0.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~418~^0.58^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21340~^~203~^11.10^6^0.16^~1~^~A~^^^1^10.60^11.60^5^10.67^11.52^~2, 3~^~06/01/2015~ -~21340~^~204~^15.63^6^0.34^~1~^~A~^^^1^14.80^16.90^5^14.73^16.53^~2, 3~^~06/01/2015~ -~21340~^~205~^22.97^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~207~^2.75^6^0.04^~1~^~A~^^^1^2.60^2.87^5^2.64^2.85^~2, 3~^~06/01/2015~ -~21340~^~209~^17.90^3^1.13^~1~^~A~^^^1^16.10^20.00^2^13.01^22.78^~2, 3~^~06/01/2015~ -~21340~^~210~^0.82^3^0.05^~1~^~A~^^^1^0.74^0.91^2^0.60^1.03^~2, 3~^~06/01/2015~ -~21340~^~211~^0.33^3^0.01^~1~^~A~^^^1^0.30^0.35^2^0.26^0.39^~2, 3~^~06/01/2015~ -~21340~^~212~^0.19^3^5.0e-03^~1~^~A~^^^1^0.18^0.20^2^0.16^0.21^~1, 2, 3~^~06/01/2015~ -~21340~^~213~^0.84^3^0.12^~1~^~A~^^^1^0.60^1.01^2^0.30^1.37^~2, 3~^~06/01/2015~ -~21340~^~214~^0.39^3^0.01^~1~^~A~^^^1^0.37^0.40^2^0.34^0.43^~2, 3~^~06/01/2015~ -~21340~^~255~^47.55^6^0.41^~1~^~A~^^^1^46.60^49.20^5^46.47^48.62^~2, 3~^~06/01/2015~ -~21340~^~269~^2.57^3^0.13^~1~^~A~^^^1^2.30^2.71^2^1.99^3.14^~2, 3~^~06/01/2015~ -~21340~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~21340~^~303~^2.28^6^0.13^~1~^~A~^^^1^1.80^2.69^5^1.94^2.61^~2, 3~^~06/01/2015~ -~21340~^~309~^1.09^6^0.02^~1~^~A~^^^1^1.04^1.15^5^1.04^1.14^~2, 3~^~06/01/2015~ -~21340~^~323~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~341~^0.07^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~342~^1.63^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~343~^0.50^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~344~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~345~^0.22^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21340~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21340~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21340~^~418~^0.74^3^0.05^~1~^~A~^^^1^0.64^0.82^2^0.51^0.96^~2, 3~^~06/01/2015~ -~21341~^~203~^10.16^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~204~^19.37^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~205~^17.50^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~207~^2.30^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~255~^50.68^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~269~^0.93^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~303~^1.74^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~309~^0.97^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~418~^0.57^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21344~^~203~^15.50^6^0.30^~1~^~A~^^^1^14.44^16.69^5^14.72^16.27^~4~^~07/01/2012~ -~21344~^~204~^16.09^6^0.24^~1~^~A~^^^1^15.51^17.19^5^15.45^16.71^~4~^~07/01/2012~ -~21344~^~205~^18.79^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~207~^2.63^6^0.06^~1~^~A~^^^1^2.41^2.85^5^2.45^2.80^~4~^~07/01/2012~ -~21344~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21344~^~211~^1.33^3^0.03^~1~^~A~^^^1^1.30^1.40^2^1.19^1.47^~4~^~07/01/2012~ -~21344~^~212~^1.93^3^0.03^~1~^~A~^^^1^1.90^2.00^2^1.79^2.07^~4~^~07/01/2012~ -~21344~^~213~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^2^0.60^0.60^~4~^~07/01/2012~ -~21344~^~214~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~07/01/2012~ -~21344~^~255~^47.00^6^0.42^~1~^~A~^^^1^45.28^48.36^5^45.90^48.08^~4~^~07/01/2012~ -~21344~^~269~^4.23^3^0.08^~1~^~A~^^^1^4.10^4.40^2^3.85^4.61^~4~^~07/01/2012~ -~21344~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21344~^~303~^2.24^6^0.06^~1~^~A~^^^1^2.03^2.48^5^2.08^2.40^~4~^~07/01/2012~ -~21344~^~309~^2.58^6^0.02^~1~^~A~^^^1^2.51^2.65^5^2.52^2.63^~4~^~07/01/2012~ -~21345~^~203~^16.96^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~204~^16.22^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~205~^14.43^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~207~^2.05^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~210~^0.14^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~211~^1.17^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~212~^1.35^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~213~^0.39^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~214~^0.45^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~255~^50.34^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~269~^3.49^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~303~^2.18^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~309~^3.33^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~418~^1.68^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~203~^12.79^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~204~^11.57^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~205~^21.01^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~207~^1.91^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~210~^0.21^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~211~^0.96^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~212~^1.74^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~213~^0.35^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~214~^0.47^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~255~^52.76^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~269~^3.70^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~303~^2.14^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~309~^2.07^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~418~^0.94^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21355~^~203~^10.43^6^0.20^~1~^~A~^^^1^9.69^11.25^5^9.89^10.95^~4~^~07/01/2012~ -~21355~^~204~^13.21^6^0.30^~1~^~A~^^^1^12.39^14.57^5^12.43^13.99^~4~^~07/01/2012~ -~21355~^~205~^27.97^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~207~^2.28^6^0.02^~1~^~A~^^^1^2.18^2.35^5^2.21^2.34^~4~^~07/01/2012~ -~21355~^~210~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~4~^~07/01/2012~ -~21355~^~211~^1.03^3^0.03^~1~^~A~^^^1^1.00^1.10^2^0.89^1.17^~4~^~07/01/2012~ -~21355~^~212~^1.93^3^0.03^~1~^~A~^^^1^1.90^2.00^2^1.79^2.07^~4~^~07/01/2012~ -~21355~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21355~^~214~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~4~^~07/01/2012~ -~21355~^~255~^46.11^6^0.32^~1~^~A~^^^1^45.29^47.51^5^45.27^46.94^~4~^~07/01/2012~ -~21355~^~269~^3.57^3^0.06^~1~^~A~^^^1^3.50^3.70^2^3.28^3.85^~4~^~07/01/2012~ -~21355~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21355~^~303~^1.74^6^0.10^~1~^~A~^^^1^1.31^1.98^5^1.48^2.00^~4~^~07/01/2012~ -~21355~^~309~^0.63^6^0.03^~1~^~A~^^^1^0.53^0.73^5^0.55^0.71^~4~^~07/01/2012~ -~21355~^~418~^0.19^0^^~6~^~RKI~^^^^^^^^^^~07/01/2012~ -~21356~^~203~^11.08^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~204~^8.46^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~205~^30.95^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~207~^2.08^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~255~^47.43^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~269~^4.16^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~303~^1.78^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~309~^0.75^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~418~^0.17^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21357~^~203~^13.64^6^0.21^~1~^~A~^^^1^12.81^14.25^5^13.07^14.19^~4~^~07/01/2012~ -~21357~^~204~^9.66^6^0.21^~1~^~A~^^^1^8.93^10.31^5^9.10^10.21^~4~^~07/01/2012~ -~21357~^~205~^21.67^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~207~^2.45^6^0.06^~1~^~A~^^^1^2.24^2.74^5^2.27^2.61^~4~^~07/01/2012~ -~21357~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~07/01/2012~ -~21357~^~211~^0.40^3^0.10^~1~^~A~^^^1^0.30^0.60^2^-0.03^0.83^~4~^~07/01/2012~ -~21357~^~212~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~4~^~07/01/2012~ -~21357~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~07/01/2012~ -~21357~^~214~^0.57^3^0.06^~1~^~A~^^^1^0.50^0.70^2^0.28^0.85^~4~^~07/01/2012~ -~21357~^~255~^52.58^6^0.42^~1~^~A~^^^1^51.41^53.95^5^51.50^53.66^~4~^~07/01/2012~ -~21357~^~269~^2.13^3^0.23^~1~^~A~^^^1^1.90^2.60^2^1.12^3.13^~4~^~07/01/2012~ -~21357~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21357~^~303~^2.30^6^0.04^~1~^~A~^^^1^2.12^2.43^5^2.18^2.42^~4~^~07/01/2012~ -~21357~^~309~^1.29^6^0.03^~1~^~A~^^^1^1.21^1.44^5^1.19^1.38^~4~^~07/01/2012~ -~21357~^~323~^0.59^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~203~^12.66^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~204~^21.06^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~205~^24.52^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~207~^2.81^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~210~^0.08^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~211~^0.46^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~212~^0.29^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~213~^0.43^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~214~^0.68^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~255~^38.94^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~269~^1.93^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~303~^2.04^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~309~^1.28^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~323~^0.28^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~418~^0.45^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~203~^12.59^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~204~^17.83^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~205~^17.28^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~207~^2.34^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~210~^0.09^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~211~^0.38^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~212~^0.24^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~213~^0.33^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~214~^0.51^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~255~^49.96^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~269~^1.57^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~287~^0.03^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~303~^1.97^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~309~^1.22^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~323~^0.50^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~418~^0.70^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21360~^~203~^13.45^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~204~^18.77^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~205~^22.26^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21360~^~207~^3.23^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~255~^42.29^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~269~^2.18^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~303~^2.13^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~309~^0.90^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~203~^9.62^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~204~^25.40^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~205~^27.20^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21361~^~207~^3.07^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~255~^34.71^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~269~^1.97^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~303~^2.01^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~309~^0.86^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~323~^0.75^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~418~^0.39^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~203~^11.27^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~204~^22.26^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~205~^19.28^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21362~^~207~^2.57^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~255~^44.62^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~269~^1.43^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~303~^2.03^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~309~^1.04^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~323~^0.98^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~418~^0.60^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~203~^7.56^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~204~^15.23^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~205~^29.48^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21363~^~207~^1.82^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~255~^45.91^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~269~^9.88^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~303~^1.50^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~309~^0.69^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~418~^0.35^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21364~^~203~^7.81^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~204~^12.50^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~205~^37.55^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21364~^~207~^1.44^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~255~^40.70^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~269~^7.29^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~303~^1.41^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21364~^~309~^0.50^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~418~^0.14^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~203~^4.05^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~204~^8.06^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~205~^46.08^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21365~^~207~^1.21^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~210~^7.75^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~211~^5.06^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~212~^0.18^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~213~^2.38^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~214~^5.20^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~255~^40.60^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~269~^20.58^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~303~^1.28^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~309~^0.29^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~418~^0.01^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21376~^~203~^10.28^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~204~^3.14^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~205~^3.64^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~207~^1.52^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~210~^0.49^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~211~^0.55^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~212~^0.68^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~213~^0.01^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~214~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~255~^81.42^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~269~^1.73^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21376~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~303~^0.65^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~203~^8.82^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~204~^6.30^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~205~^6.08^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~207~^1.41^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~255~^77.38^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~269~^1.53^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~303~^0.61^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21378~^~203~^4.14^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~204~^3.64^0^^~6~^~RKI~^^^^^^^^^^~06/01/2005~ -~21378~^~205~^4.20^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~207~^0.96^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~210~^0.35^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~211~^0.79^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~212~^0.98^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~213~^0.01^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~214~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~255~^87.20^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~269~^2.14^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~21378~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~303~^0.67^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~418~^0.10^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~203~^1.03^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~204~^0.19^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~205~^4.30^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~207~^0.54^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~210~^0.17^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~211~^0.92^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~212~^1.15^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~213~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~214~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~255~^93.93^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~269~^2.24^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~21379~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~303~^0.65^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~418~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~203~^2.73^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~204~^1.30^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~205~^20.72^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~207~^0.64^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~210~^7.92^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~211~^0.78^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~212~^1.76^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~213~^2.11^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~214~^0.07^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~255~^74.61^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~269~^12.83^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~287~^0.17^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~303~^0.45^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~309~^0.36^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~418~^0.19^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~203~^2.47^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~204~^1.13^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~205~^17.67^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~207~^0.56^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~210~^6.97^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~211~^0.75^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~212~^1.78^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~213~^2.22^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~255~^78.18^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~269~^11.90^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~287~^0.18^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~303~^0.36^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~309~^0.30^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~418~^0.20^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21382~^~203~^12.47^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~204~^7.62^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~205~^31.08^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~207~^1.93^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~255~^46.90^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~269~^4.27^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~303~^1.64^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~309~^0.54^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~418~^0.81^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21383~^~203~^12.09^6^0.19^~1~^~A~^^^1^11.44^12.62^5^11.58^12.60^~2, 3~^~05/01/2013~ -~21383~^~204~^21.78^6^0.40^~1~^~A~^^^1^20.39^23.00^5^20.75^22.81^~2, 3~^~05/01/2013~ -~21383~^~205~^15.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~207~^2.12^6^0.01^~1~^~A~^^^1^2.06^2.20^5^2.07^2.16^~2, 3~^~05/01/2013~ -~21383~^~209~^12.83^3^0.69^~1~^~A~^^^1^11.70^14.10^2^9.83^15.82^~2, 3~^~05/01/2013~ -~21383~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21383~^~211~^0.95^3^0.07^~1~^~A~^^^1^0.85^1.09^2^0.63^1.26^~2, 3~^~05/01/2013~ -~21383~^~212~^0.90^3^0.06^~1~^~A~^^^1^0.83^1.02^2^0.64^1.15^~2, 3~^~05/01/2013~ -~21383~^~213~^0.64^3^0.01^~1~^~A~^^^1^0.61^0.66^2^0.57^0.71^~2, 3~^~05/01/2013~ -~21383~^~214~^0.63^3^0.01^~1~^~A~^^^1^0.61^0.66^2^0.56^0.69^~2, 3~^~05/01/2013~ -~21383~^~255~^48.10^6^0.87^~1~^~A~^^^1^46.11^51.71^5^45.85^50.34^~2, 3~^~05/01/2013~ -~21383~^~269~^3.12^3^0.13^~1~^~A~^^^1^2.95^3.39^2^2.53^3.70^~2, 3~^~05/01/2013~ -~21383~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21383~^~303~^1.65^6^0.05^~1~^~A~^^^1^1.47^1.80^5^1.50^1.78^~2, 3~^~05/01/2013~ -~21383~^~309~^1.14^6^0.02^~1~^~A~^^^1^1.06^1.18^5^1.08^1.18^~2, 3~^~05/01/2013~ -~21383~^~323~^1.54^2^^~1~^~A~^^^1^1.50^1.57^1^^^^~05/01/2013~ -~21383~^~341~^0.06^2^^~1~^~A~^^^1^0.04^0.07^1^^^^~05/01/2013~ -~21383~^~342~^1.32^2^^~1~^~A~^^^1^1.24^1.40^1^^^^~05/01/2013~ -~21383~^~343~^0.21^2^^~1~^~A~^^^1^0.18^0.24^1^^^^~05/01/2013~ -~21383~^~344~^0.44^2^^~1~^~A~^^^1^0.37^0.52^1^^^^~05/01/2013~ -~21383~^~345~^0.20^2^^~1~^~A~^^^1^0.15^0.26^1^^^^~05/01/2013~ -~21383~^~346~^0.57^2^^~1~^~A~^^^1^0.44^0.70^1^^^^~05/01/2013~ -~21383~^~347~^0.16^2^^~1~^~A~^^^1^0.16^0.17^1^^^^~05/01/2013~ -~21383~^~418~^0.51^3^0.03^~1~^~A~^^^1^0.47^0.58^2^0.34^0.66^~2, 3~^~05/01/2013~ -~21384~^~203~^13.73^4^0.45^~1~^~A~^^^1^12.95^14.57^3^12.29^15.16^~2, 3~^~11/01/2005~ -~21384~^~204~^25.45^4^0.24^~1~^~A~^^^1^25.01^26.13^3^24.67^26.22^~2, 3~^~11/01/2005~ -~21384~^~205~^23.00^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~207~^2.75^4^0.04^~1~^~A~^^^1^2.70^2.88^3^2.61^2.88^~2, 3~^~11/01/2005~ -~21384~^~209~^17.73^4^0.41^~1~^~A~^^^1^16.58^18.44^3^16.40^19.05^~2, 3~^~11/01/2005~ -~21384~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~211~^0.75^4^0.03^~1~^~A~^^^1^0.69^0.84^3^0.65^0.84^~2, 3~^~11/01/2005~ -~21384~^~212~^0.93^4^0.04^~1~^~A~^^^1^0.85^1.04^3^0.80^1.06^~2, 3~^~11/01/2005~ -~21384~^~213~^0.89^4^0.03^~1~^~A~^^^1^0.83^0.97^3^0.78^1.00^~2, 3~^~11/01/2005~ -~21384~^~214~^0.79^4^0.02^~1~^~A~^^^1^0.76^0.87^3^0.70^0.87^~2, 3~^~11/01/2005~ -~21384~^~255~^35.08^4^0.44^~1~^~A~^^^1^33.90^36.02^3^33.65^36.49^~2, 3~^~11/01/2005~ -~21384~^~269~^3.36^4^0.07^~1~^~A~^^^1^3.15^3.48^3^3.12^3.60^~2, 3~^~11/01/2005~ -~21384~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~303~^1.87^4^0.03^~1~^~A~^^^1^1.76^1.93^3^1.75^2.00^~2, 3~^~11/01/2005~ -~21384~^~309~^1.43^4^0.02^~1~^~A~^^^1^1.38^1.51^3^1.34^1.52^~2, 3~^~11/01/2005~ -~21384~^~323~^0.98^4^0.03^~1~^~A~^^^1^0.88^1.02^3^0.87^1.09^~2, 3~^~11/01/2005~ -~21384~^~341~^0.05^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~2, 3~^~11/01/2005~ -~21384~^~342~^3.36^4^0.21^~1~^~A~^^^1^3.12^3.99^3^2.68^4.03^~2, 3~^~11/01/2005~ -~21384~^~343~^1.43^4^0.06^~1~^~A~^^^1^1.36^1.62^3^1.23^1.63^~2, 3~^~11/01/2005~ -~21384~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~418~^0.55^4^0.05^~1~^~A~^^^1^0.43^0.64^3^0.38^0.70^~2, 3~^~11/01/2005~ -~21385~^~203~^10.35^4^0.08^~1~^~A~^^^1^10.19^10.54^3^10.07^10.62^~2, 3~^~11/01/2005~ -~21385~^~204~^15.78^4^0.26^~1~^~A~^^^1^15.36^16.51^3^14.95^16.60^~2, 3~^~11/01/2005~ -~21385~^~205~^24.79^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~207~^2.68^4^0.02^~1~^~A~^^^1^2.61^2.74^3^2.58^2.76^~2, 3~^~11/01/2005~ -~21385~^~209~^17.56^4^0.26^~1~^~A~^^^1^16.93^18.21^3^16.72^18.40^~2, 3~^~11/01/2005~ -~21385~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~211~^0.64^4^0.03^~1~^~A~^^^1^0.58^0.74^3^0.52^0.75^~2, 3~^~11/01/2005~ -~21385~^~212~^0.89^4^0.03^~1~^~A~^^^1^0.80^0.98^3^0.76^1.00^~2, 3~^~11/01/2005~ -~21385~^~213~^1.71^4^0.03^~1~^~A~^^^1^1.64^1.80^3^1.59^1.82^~2, 3~^~11/01/2005~ -~21385~^~214~^0.80^4^0.01^~1~^~A~^^^1^0.77^0.82^3^0.75^0.84^~2, 3~^~11/01/2005~ -~21385~^~255~^46.40^4^0.17^~1~^~A~^^^1^45.88^46.62^3^45.85^46.95^~2, 3~^~11/01/2005~ -~21385~^~269~^4.03^4^0.06^~1~^~A~^^^1^3.87^4.18^3^3.82^4.24^~2, 3~^~11/01/2005~ -~21385~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~303~^1.90^4^0.03^~1~^~A~^^^1^1.83^2.00^3^1.78^2.02^~2, 3~^~11/01/2005~ -~21385~^~309~^1.04^4^0.02^~1~^~A~^^^1^0.99^1.12^3^0.94^1.12^~2, 3~^~11/01/2005~ -~21385~^~323~^1.11^4^0.02^~1~^~A~^^^1^1.07^1.17^3^1.04^1.18^~2, 3~^~11/01/2005~ -~21385~^~341~^0.06^4^0.00^~1~^~A~^^^1^0.06^0.06^^^^~2, 3~^~11/01/2005~ -~21385~^~342~^4.74^4^0.11^~1~^~A~^^^1^4.40^4.90^3^4.37^5.10^~2, 3~^~11/01/2005~ -~21385~^~343~^1.83^4^0.04^~1~^~A~^^^1^1.69^1.89^3^1.68^1.98^~2, 3~^~11/01/2005~ -~21385~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~418~^0.53^4^0.03^~1~^~A~^^^1^0.46^0.62^3^0.41^0.64^~2, 3~^~11/01/2005~ -~21386~^~203~^6.00^4^0.18^~1~^~A~^^^1^5.61^6.41^3^5.41^6.59^~2, 3~^~11/01/2005~ -~21386~^~204~^17.74^4^1.08^~1~^~A~^^^1^15.43^20.58^3^14.29^21.18^~2, 3~^~11/01/2005~ -~21386~^~205~^41.21^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~207~^1.47^4^0.12^~1~^~A~^^^1^1.20^1.79^3^1.08^1.86^~2, 3~^~11/01/2005~ -~21386~^~209~^26.60^4^0.81^~1~^~A~^^^1^24.88^28.51^3^24.00^29.19^~2, 3~^~11/01/2005~ -~21386~^~210~^7.14^4^0.39^~1~^~A~^^^1^6.13^7.96^3^5.89^8.38^~2, 3~^~11/01/2005~ -~21386~^~211~^1.03^4^0.03^~1~^~A~^^^1^0.97^1.11^3^0.92^1.13^~2, 3~^~11/01/2005~ -~21386~^~212~^0.75^4^0.02^~1~^~A~^^^1^0.68^0.81^3^0.66^0.83^~2, 3~^~11/01/2005~ -~21386~^~213~^0.15^4^9.0e-03^~1~^~A~^^^1^0.13^0.17^3^0.12^0.18^~2, 3~^~11/01/2005~ -~21386~^~214~^0.82^4^0.10^~1~^~A~^^^1^0.63^0.99^3^0.49^1.13^~2, 3~^~11/01/2005~ -~21386~^~255~^33.57^4^0.77^~1~^~A~^^^1^31.62^35.31^3^31.11^36.02^~2, 3~^~11/01/2005~ -~21386~^~269~^9.89^4^0.43^~1~^~A~^^^1^8.65^10.55^3^8.51^11.27^~2, 3~^~11/01/2005~ -~21386~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~303~^1.92^4^0.10^~1~^~A~^^^1^1.65^2.09^3^1.60^2.24^~2, 3~^~11/01/2005~ -~21386~^~309~^0.51^4^0.03^~1~^~A~^^^1^0.46^0.60^3^0.41^0.61^~2, 3~^~11/01/2005~ -~21386~^~323~^0.88^4^0.05^~1~^~A~^^^1^0.73^0.99^3^0.70^1.05^~2, 3~^~11/01/2005~ -~21386~^~341~^0.07^4^5.0e-03^~1~^~A~^^^1^0.06^0.08^3^0.05^0.08^~2, 3~^~11/01/2005~ -~21386~^~342~^5.29^4^0.63^~1~^~A~^^^1^4.26^7.05^3^3.27^7.31^~2, 3~^~11/01/2005~ -~21386~^~343~^3.50^4^0.26^~1~^~A~^^^1^2.86^4.09^3^2.67^4.32^~2, 3~^~11/01/2005~ -~21386~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.02^0.08^~1, 2, 3~^~11/01/2005~ -~21386~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~346~^0.00^4^4.0e-03^~1~^~A~^^^1^0.00^0.01^3^-8.0e-03^0.01^~1, 2, 3~^~11/01/2005~ -~21386~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~418~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2005~ -~21387~^~203~^2.80^5^0.06^~1~^~A~^^^1^2.65^2.99^4^2.62^2.98^~2, 3~^~05/01/2014~ -~21387~^~204~^19.30^5^0.14^~1~^~A~^^^1^18.90^19.80^4^18.89^19.70^~2, 3~^~05/01/2014~ -~21387~^~205~^29.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~207~^2.19^5^0.05^~1~^~A~^^^1^2.00^2.35^4^2.02^2.35^~2, 3~^~05/01/2014~ -~21387~^~209~^26.63^3^0.53^~1~^~A~^^^1^25.60^27.40^2^24.32^28.94^~2, 3~^~05/01/2014~ -~21387~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21387~^~211~^0.35^3^7.0e-03^~1~^~A~^^^1^0.34^0.36^2^0.32^0.38^~2, 3~^~05/01/2014~ -~21387~^~212~^0.28^3^9.0e-03^~1~^~A~^^^1^0.26^0.29^2^0.23^0.31^~2, 3~^~05/01/2014~ -~21387~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21387~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~255~^46.34^5^0.49^~1~^~A~^^^1^45.30^48.00^4^44.97^47.70^~2, 3~^~05/01/2014~ -~21387~^~269~^0.63^3^6.0e-03^~1~^~A~^^^1^0.62^0.64^2^0.60^0.65^~2, 3~^~05/01/2014~ -~21387~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21387~^~303~^0.71^6^0.07^~1~^~A~^^^1^0.58^1.08^5^0.52^0.90^~2, 3~^~05/01/2014~ -~21387~^~309~^0.37^6^0.02^~1~^~A~^^^1^0.31^0.45^5^0.31^0.41^~2, 3~^~05/01/2014~ -~21387~^~323~^4.40^3^0.41^~1~^~A~^^^1^3.74^5.15^2^2.63^6.16^~2, 3~^~05/01/2014~ -~21387~^~341~^0.54^3^0.42^~1~^~A~^^^1^0.10^1.39^2^-1.28^2.36^~2, 3~^~05/01/2014~ -~21387~^~342~^8.18^3^0.86^~1~^~A~^^^1^6.69^9.68^2^4.45^11.89^~2, 3~^~05/01/2014~ -~21387~^~343~^1.21^3^0.12^~1~^~A~^^^1^0.99^1.40^2^0.68^1.72^~2, 3~^~05/01/2014~ -~21387~^~344~^0.20^3^0.02^~1~^~A~^^^1^0.17^0.23^2^0.11^0.27^~2, 3~^~05/01/2014~ -~21387~^~345~^0.11^3^0.03^~1~^~A~^^^1^0.07^0.17^2^-0.02^0.23^~2, 3~^~05/01/2014~ -~21387~^~346~^0.11^3^0.01^~1~^~A~^^^1^0.08^0.13^2^0.04^0.17^~2, 3~^~05/01/2014~ -~21387~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2006~ -~21388~^~203~^7.02^4^0.08^~1~^~A~^^^1^6.79^7.14^3^6.76^7.28^~2, 3~^~11/01/2005~ -~21388~^~204~^17.95^4^0.33^~1~^~A~^^^1^17.39^18.82^3^16.88^19.02^~2, 3~^~11/01/2005~ -~21388~^~205~^53.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21388~^~207~^2.02^4^0.06^~1~^~A~^^^1^1.88^2.16^3^1.83^2.21^~2, 3~^~11/01/2005~ -~21388~^~209~^29.05^4^0.61^~1~^~A~^^^1^27.69^30.56^3^27.09^31.01^~2, 3~^~11/01/2005~ -~21388~^~210~^5.50^4^0.63^~1~^~A~^^^1^4.03^6.95^3^3.47^7.52^~2, 3~^~11/01/2005~ -~21388~^~211~^6.94^4^0.37^~1~^~A~^^^1^6.45^8.04^3^5.76^8.12^~2, 3~^~11/01/2005~ -~21388~^~212~^3.76^4^0.37^~1~^~A~^^^1^3.13^4.84^3^2.57^4.94^~2, 3~^~11/01/2005~ -~21388~^~213~^0.93^4^0.01^~1~^~A~^^^1^0.92^0.97^3^0.90^0.96^~2, 3~^~11/01/2005~ -~21388~^~214~^0.84^4^0.04^~1~^~A~^^^1^0.79^0.96^3^0.71^0.96^~2, 3~^~11/01/2005~ -~21388~^~255~^19.62^4^0.41^~1~^~A~^^^1^18.75^20.48^3^18.29^20.94^~2, 3~^~11/01/2005~ -~21388~^~269~^17.98^4^0.41^~1~^~A~^^^1^16.82^18.79^3^16.64^19.30^~2, 3~^~11/01/2005~ -~21388~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~303~^2.55^4^0.06^~1~^~A~^^^1^2.46^2.74^3^2.35^2.75^~2, 3~^~11/01/2005~ -~21388~^~309~^0.54^4^9.0e-03^~1~^~A~^^^1^0.53^0.57^3^0.51^0.57^~2, 3~^~11/01/2005~ -~21388~^~323~^1.11^4^0.05^~1~^~A~^^^1^0.99^1.25^3^0.93^1.28^~2, 3~^~11/01/2005~ -~21388~^~341~^0.08^4^6.0e-03^~1~^~A~^^^1^0.07^0.10^3^0.06^0.10^~2, 3~^~11/01/2005~ -~21388~^~342~^7.61^4^0.46^~1~^~A~^^^1^6.69^8.86^3^6.13^9.08^~2, 3~^~11/01/2005~ -~21388~^~343~^3.01^4^0.17^~1~^~A~^^^1^2.65^3.47^3^2.46^3.55^~2, 3~^~11/01/2005~ -~21388~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~418~^0.11^4^0.01^~1~^~A~^^^1^0.09^0.13^3^0.07^0.14^~1, 2, 3~^~11/01/2005~ -~21389~^~203~^13.94^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~204~^15.66^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~205~^13.74^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21389~^~207~^1.37^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~209~^10.30^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~210~^1.45^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~212~^1.43^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~214~^0.57^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~255~^55.29^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~269~^3.52^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21389~^~287~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~303~^2.80^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~309~^3.00^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~323~^0.67^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~418~^1.37^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21389~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~203~^11.34^8^0.64^~11~^~JO~^^^0^10.64^12.63^2^8.55^14.11^~4~^~02/01/2006~ -~21390~^~204~^12.37^8^0.91^~11~^~JO~^^^0^10.60^13.68^2^8.41^16.32^~4~^~02/01/2006~ -~21390~^~205~^17.33^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~207~^1.45^8^0.05^~11~^~JO~^^^0^1.37^1.54^2^1.22^1.66^~4~^~02/01/2006~ -~21390~^~209~^12.53^7^1.00^~1~^~A~^^^0^11.52^13.53^1^-0.23^25.28^~4~^~02/01/2006~ -~21390~^~210~^0.65^8^0.53^~11~^~JO~^^^0^0.00^1.70^2^-1.64^2.93^~4~^~02/01/2006~ -~21390~^~211~^0.83^8^0.41^~11~^~JO~^^^0^0.00^1.35^2^-0.97^2.63^~4~^~02/01/2006~ -~21390~^~212~^1.59^8^0.13^~11~^~JO~^^^0^1.32^1.73^2^1.00^2.16^~4~^~02/01/2006~ -~21390~^~213~^0.02^8^0.01^~11~^~JO~^^^0^0.00^0.05^2^-0.05^0.08^~4~^~02/01/2006~ -~21390~^~214~^0.45^8^0.13^~11~^~JO~^^^0^0.22^0.67^2^-0.10^1.01^~4~^~02/01/2006~ -~21390~^~255~^57.52^8^0.57^~11~^~JO~^^^0^56.43^58.41^2^55.03^60.00^~4~^~02/01/2006~ -~21390~^~269~^4.00^4^0.21^~11~^~JO~^^^0^3.79^4.22^1^1.25^6.75^~4~^~03/01/2009~ -~21390~^~287~^0.06^4^0.05^~11~^~JO~^^^0^0.00^0.11^1^-0.65^0.76^~4~^~02/01/2006~ -~21390~^~303~^2.99^7^0.73^~11~^~JO~^^^0^1.88^4.37^2^-0.14^6.13^~4~^~02/01/2006~ -~21390~^~309~^2.46^7^0.22^~11~^~JO~^^^0^2.06^2.83^2^1.49^3.41^~4~^~02/01/2006~ -~21390~^~323~^0.15^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~341~^1.95^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~342~^0.45^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~343~^0.39^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~345~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21390~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21390~^~347~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~21390~^~418~^1.21^4^0.23^~11~^~JO~^^^0^0.98^1.45^1^-1.81^4.24^~4~^~02/01/2006~ -~21390~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21390~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21393~^~203~^12.17^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~204~^13.30^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~205~^22.69^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21393~^~207~^1.54^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~209~^16.10^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~210~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~211~^1.26^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~212~^1.43^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~213~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~214~^0.39^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~255~^50.30^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~303~^2.07^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~309~^2.38^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~342~^1.60^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~343~^0.83^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~418~^1.23^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21395~^~203~^16.24^18^0.20^~1~^~A~^^^1^14.44^19.19^6^15.72^16.75^~2, 3~^~07/01/2012~ -~21395~^~204~^16.18^18^0.18^~1~^~A~^^^1^15.35^18.47^8^15.75^16.60^~2, 3~^~07/01/2012~ -~21395~^~205~^17.97^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~207~^2.44^18^0.04^~1~^~A~^^^1^1.76^2.85^6^2.33^2.55^~2, 3~^~07/01/2012~ -~21395~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21395~^~211~^1.38^9^0.02^~1~^~A~^^^1^1.30^1.50^2^1.29^1.47^~2, 3~^~07/01/2012~ -~21395~^~212~^1.86^9^0.02^~1~^~A~^^^1^1.60^2.00^4^1.78^1.93^~2, 3~^~07/01/2012~ -~21395~^~213~^0.54^9^0.01^~1~^~A~^^^1^0.30^0.60^3^0.50^0.57^~2, 3~^~07/01/2012~ -~21395~^~214~^0.38^9^0.02^~1~^~A~^^^1^0.30^0.50^3^0.29^0.45^~2, 3~^~07/01/2012~ -~21395~^~255~^47.16^18^0.29^~1~^~A~^^^1^45.28^49.15^6^46.44^47.87^~2, 3~^~07/01/2012~ -~21395~^~269~^4.16^9^0.06^~1~^~A~^^^1^3.70^4.50^3^3.95^4.36^~2, 3~^~07/01/2012~ -~21395~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~21395~^~303~^2.35^18^0.05^~1~^~A~^^^1^2.03^3.05^10^2.23^2.45^~2, 3~^~07/01/2012~ -~21395~^~309~^2.77^18^0.02^~1~^~A~^^^1^2.51^3.79^13^2.72^2.82^~2, 3~^~07/01/2012~ -~21395~^~323~^0.35^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~418~^1.28^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21395~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21396~^~203~^16.96^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~204~^16.22^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~205~^14.43^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~207~^2.05^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~210~^0.14^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~211~^1.17^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~212~^1.35^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~213~^0.39^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~214~^0.45^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~255~^50.34^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~269~^3.49^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~287~^0.00^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~303~^2.18^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~309~^3.33^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~418~^1.68^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21397~^~203~^13.69^6^0.44^~1~^~A~^^^1^12.75^15.38^5^12.53^14.84^~2, 3~^~08/01/2012~ -~21397~^~204~^15.80^6^0.58^~1~^~A~^^^1^14.31^17.86^5^14.30^17.29^~2, 3~^~08/01/2012~ -~21397~^~205~^17.73^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~207~^1.86^6^0.06^~1~^~A~^^^1^1.62^2.02^5^1.69^2.02^~2, 3~^~08/01/2012~ -~21397~^~209~^12.63^3^0.64^~1~^~A~^^^1^11.80^13.90^2^9.86^15.40^~2, 3~^~08/01/2012~ -~21397~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~211~^1.63^3^0.03^~1~^~A~^^^1^1.60^1.70^2^1.49^1.77^~2, 3~^~08/01/2012~ -~21397~^~212~^2.10^3^0.00^~1~^~A~^^^1^2.10^2.10^^^^~2, 3~^~08/01/2012~ -~21397~^~213~^0.37^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.01^0.74^~2, 3~^~08/01/2012~ -~21397~^~214~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~2, 3~^~08/01/2012~ -~21397~^~255~^50.92^6^0.83^~1~^~A~^^^1^47.22^52.62^5^48.77^53.06^~2, 3~^~08/01/2012~ -~21397~^~269~^4.50^3^0.05^~1~^~A~^^^1^4.40^4.60^2^4.25^4.74^~2, 3~^~08/01/2012~ -~21397~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~303~^2.30^6^0.16^~1~^~A~^^^1^1.89^2.99^5^1.89^2.71^~2, 3~^~08/01/2012~ -~21397~^~309~^2.26^6^0.05^~1~^~A~^^^1^2.07^2.47^5^2.11^2.40^~2, 3~^~08/01/2012~ -~21397~^~323~^0.57^3^0.01^~1~^~A~^^^1^0.54^0.60^2^0.49^0.64^~2, 3~^~08/01/2012~ -~21397~^~341~^0.07^3^6.0e-03^~1~^~A~^^^1^0.06^0.08^2^0.04^0.09^~2, 3~^~08/01/2012~ -~21397~^~342~^1.81^3^0.30^~1~^~A~^^^1^1.24^2.28^2^0.49^3.11^~2, 3~^~08/01/2012~ -~21397~^~343~^0.76^3^0.12^~1~^~A~^^^1^0.51^0.94^2^0.20^1.30^~2, 3~^~08/01/2012~ -~21397~^~344~^0.02^3^3.0e-03^~1~^~A~^^^1^0.01^0.02^2^2.0e-03^0.03^~2, 3~^~08/01/2012~ -~21397~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~346~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~2, 3~^~08/01/2012~ -~21397~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~418~^0.93^3^0.03^~1~^~A~^^^1^0.87^0.98^2^0.79^1.06^~2, 3~^~08/01/2012~ -~21397~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21397~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~203~^15.21^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~204~^14.40^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~205~^19.72^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~207~^2.31^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~209~^13.00^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~210~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~211~^0.93^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~212~^1.29^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~213~^0.47^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~214~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~255~^48.36^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~269~^3.60^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~ -~21398~^~303~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~309~^2.83^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~341~^2.76^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~342~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~343~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~418~^1.75^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21399~^~203~^15.50^2^^~1~^~A~^^^2^14.47^16.52^^^^^~02/01/2006~ -~21399~^~204~^15.63^2^^~1~^~A~^^^2^14.20^17.06^^^^^~02/01/2006~ -~21399~^~205~^12.62^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~207~^1.70^2^^~1~^~A~^^^2^1.67^1.73^^^^^~02/01/2006~ -~21399~^~209~^9.35^2^^~1~^~A~^^^2^8.60^10.10^^^^^~02/01/2006~ -~21399~^~210~^0.61^2^^~1~^~A~^^^2^0.00^1.21^^^^~1~^~02/01/2006~ -~21399~^~211~^0.23^2^^~1~^~A~^^^2^0.00^0.47^^^^~1~^~02/01/2006~ -~21399~^~212~^0.94^2^^~1~^~A~^^^2^0.62^1.27^^^^^~02/01/2006~ -~21399~^~213~^0.11^2^^~1~^~A~^^^2^0.07^0.15^^^^~1~^~02/01/2006~ -~21399~^~255~^54.56^2^^~1~^~A~^^^2^53.28^55.84^^^^^~02/01/2006~ -~21399~^~269~^3.61^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~21399~^~303~^4.12^2^^~1~^~A~^^^2^2.94^5.30^^^^^~02/01/2006~ -~21399~^~309~^3.27^2^^~1~^~A~^^^2^3.05^3.50^^^^^~02/01/2006~ -~21399~^~323~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~341~^0.83^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~342~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~343~^0.25^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~418~^1.92^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21399~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~203~^11.94^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~204~^14.10^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~205~^21.53^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~207~^1.89^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~209~^14.10^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~210~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~211~^1.10^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~212~^1.30^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~213~^0.29^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~214~^0.25^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~255~^50.54^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~269~^3.26^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~21400~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~309~^2.16^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~323~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21400~^~342~^1.00^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~343~^0.87^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21400~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21400~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21400~^~418~^1.27^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21401~^~203~^19.22^10^0.37^~1~^~A~^^^1^17.10^23.40^8^18.36^20.08^~2, 3~^~05/01/2014~ -~21401~^~204~^13.95^10^0.26^~1~^~A~^^^1^10.10^16.50^8^13.33^14.57^~2, 3~^~05/01/2014~ -~21401~^~205~^17.25^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~207~^2.92^10^0.05^~1~^~A~^^^1^2.45^3.21^8^2.79^3.05^~2, 3~^~05/01/2014~ -~21401~^~209~^17.03^6^0.80^~1~^~A~^^^1^8.50^22.30^2^13.95^20.09^~2, 3~^~05/01/2014~ -~21401~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.00^1.24^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~255~^46.64^10^0.63^~1~^~A~^^^1^39.90^55.20^6^45.07^48.21^~2, 3~^~05/01/2014~ -~21401~^~269~^0.40^3^0.00^~1~^~A~^^^1^0.00^1.24^^^^~2, 3~^~05/01/2014~ -~21401~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~21401~^~303~^0.73^9^0.01^~1~^~A~^^^1^0.58^0.97^5^0.69^0.77^~2, 3~^~05/01/2014~ -~21401~^~309~^0.71^10^0.01^~1~^~A~^^^1^0.67^0.79^8^0.67^0.74^~2, 3~^~05/01/2014~ -~21401~^~323~^3.17^6^0.29^~1~^~A~^^^1^1.45^4.80^2^1.91^4.42^~2, 3~^~05/01/2014~ -~21401~^~341~^0.13^6^6.0e-03^~1~^~A~^^^1^0.08^0.16^3^0.11^0.15^~2, 3~^~05/01/2014~ -~21401~^~342~^5.61^6^0.53^~1~^~A~^^^1^0.83^9.12^2^3.31^7.90^~2, 3~^~05/01/2014~ -~21401~^~343~^0.51^6^0.01^~1~^~A~^^^1^0.05^0.77^2^0.44^0.58^~2, 3~^~05/01/2014~ -~21401~^~344~^0.14^6^0.01^~1~^~A~^^^1^0.00^0.23^2^0.06^0.20^~1, 2, 3~^~05/01/2014~ -~21401~^~345~^0.16^6^0.01^~1~^~A~^^^1^0.00^0.28^2^0.07^0.23^~1, 2, 3~^~05/01/2014~ -~21401~^~346~^0.05^6^4.0e-03^~1~^~A~^^^1^0.00^0.09^2^0.03^0.06^~1, 2, 3~^~05/01/2014~ -~21401~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~418~^0.16^6^0.01^~1~^~A~^^^1^0.13^0.25^4^0.13^0.19^~2, 3~^~05/01/2014~ -~21401~^~573~^0.00^0^^~4~^~BFPN~^~21229~^^^^^^^^^~03/01/2007~ -~21401~^~578~^0.00^0^^~4~^~BFPN~^~21229~^^^^^^^^^~03/01/2007~ -~21410~^~203~^12.98^3^0.30^~1~^~A~^^^1^12.42^13.46^2^11.67^14.28^~2, 3~^~09/01/2005~ -~21410~^~204~^16.97^3^0.21^~1~^~A~^^^1^16.70^17.40^2^16.02^17.90^~2, 3~^~09/01/2005~ -~21410~^~205~^22.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~207~^2.24^3^0.04^~1~^~A~^^^1^2.16^2.30^2^2.06^2.41^~2, 3~^~09/01/2005~ -~21410~^~209~^17.41^3^0.90^~1~^~A~^^^1^16.06^19.13^2^13.51^21.30^~2, 3~^~09/01/2005~ -~21410~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~211~^0.84^3^0.02^~1~^~A~^^^1^0.80^0.87^2^0.74^0.93^~2, 3~^~09/01/2005~ -~21410~^~212~^0.80^3^0.07^~1~^~A~^^^1^0.66^0.89^2^0.49^1.10^~2, 3~^~09/01/2005~ -~21410~^~213~^0.36^3^0.04^~1~^~A~^^^1^0.28^0.41^2^0.18^0.52^~2, 3~^~09/01/2005~ -~21410~^~214~^0.87^3^0.03^~1~^~A~^^^1^0.82^0.94^2^0.72^1.02^~2, 3~^~09/01/2005~ -~21410~^~255~^45.17^3^0.66^~1~^~A~^^^1^44.12^46.40^2^42.31^48.03^~2, 3~^~09/01/2005~ -~21410~^~269~^2.87^3^0.13^~1~^~A~^^^1^2.60^3.06^2^2.27^3.46^~2, 3~^~09/01/2005~ -~21410~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~303~^1.77^3^0.14^~1~^~A~^^^1^1.61^2.05^2^1.15^2.37^~2, 3~^~09/01/2005~ -~21410~^~309~^1.05^3^0.07^~1~^~A~^^^1^0.90^1.13^2^0.73^1.36^~2, 3~^~09/01/2005~ -~21410~^~323~^0.64^3^0.02^~1~^~A~^^^1^0.61^0.68^2^0.55^0.73^~2, 3~^~09/01/2005~ -~21410~^~341~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~09/01/2005~ -~21410~^~342~^0.87^3^0.02^~1~^~A~^^^1^0.83^0.90^2^0.77^0.95^~2, 3~^~09/01/2005~ -~21410~^~343~^0.29^3^0.03^~1~^~A~^^^1^0.22^0.32^2^0.14^0.43^~2, 3~^~09/01/2005~ -~21410~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~418~^0.96^3^0.08^~1~^~A~^^^1^0.84^1.12^2^0.59^1.31^~2, 3~^~09/01/2005~ -~21410~^~573~^0.00^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~578~^0.00^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21411~^~203~^15.95^4^0.71^~1~^~A~^^^1^14.47^17.42^3^13.66^18.24^~2, 3~^~09/01/2005~ -~21411~^~204~^14.07^4^0.30^~1~^~A~^^^1^13.70^15.00^3^13.09^15.05^~2, 3~^~09/01/2005~ -~21411~^~205~^22.99^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~207~^2.08^4^0.06^~1~^~A~^^^1^1.96^2.27^3^1.86^2.29^~2, 3~^~09/01/2005~ -~21411~^~209~^17.58^4^0.14^~1~^~A~^^^1^17.25^17.97^3^17.11^18.05^~2, 3~^~09/01/2005~ -~21411~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~211~^0.82^4^0.02^~1~^~A~^^^1^0.77^0.87^3^0.74^0.90^~2, 3~^~09/01/2005~ -~21411~^~212~^0.86^4^0.03^~1~^~A~^^^1^0.76^0.90^3^0.75^0.96^~2, 3~^~09/01/2005~ -~21411~^~213~^0.37^4^0.02^~1~^~A~^^^1^0.32^0.42^3^0.30^0.44^~2, 3~^~09/01/2005~ -~21411~^~214~^0.92^4^0.04^~1~^~A~^^^1^0.80^1.04^3^0.76^1.07^~2, 3~^~09/01/2005~ -~21411~^~255~^44.90^4^0.27^~1~^~A~^^^1^44.48^45.68^3^44.01^45.78^~2, 3~^~09/01/2005~ -~21411~^~269~^2.97^4^0.03^~1~^~A~^^^1^2.89^3.03^3^2.87^3.06^~2, 3~^~09/01/2005~ -~21411~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~303~^2.06^4^0.03^~1~^~A~^^^1^2.02^2.15^3^1.96^2.16^~2, 3~^~09/01/2005~ -~21411~^~309~^2.21^4^0.17^~1~^~A~^^^1^1.74^2.57^3^1.65^2.75^~2, 3~^~09/01/2005~ -~21411~^~323~^0.55^4^0.02^~1~^~A~^^^1^0.49^0.62^3^0.46^0.64^~2, 3~^~09/01/2005~ -~21411~^~341~^0.03^4^3.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.03^~2, 3~^~09/01/2005~ -~21411~^~342~^1.14^4^0.16^~1~^~A~^^^1^0.72^1.46^3^0.60^1.67^~2, 3~^~09/01/2005~ -~21411~^~343~^0.46^4^0.06^~1~^~A~^^^1^0.29^0.62^3^0.24^0.67^~2, 3~^~09/01/2005~ -~21411~^~344~^0.01^4^7.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 2, 3~^~09/01/2005~ -~21411~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~418~^1.27^4^0.10^~1~^~A~^^^1^0.97^1.48^3^0.92^1.61^~2, 3~^~09/01/2005~ -~21411~^~573~^0.00^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21411~^~578~^0.00^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2009~ -~21412~^~203~^4.02^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~204~^6.46^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~205~^26.82^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21412~^~207~^0.96^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~210~^16.90^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~211~^0.75^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~212~^0.21^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~213~^6.23^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~214~^0.28^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~255~^61.74^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~269~^24.37^0^^~1~^~RKA~^^^^^^^^^^~02/01/2009~ -~21412~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~303~^0.27^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~309~^0.54^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~323~^0.08^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~341~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~342~^0.06^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~418~^0.60^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~203~^3.97^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~204~^5.66^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~205~^25.55^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~21413~^~207~^0.92^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~210~^14.20^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~211~^0.89^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~212~^0.18^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~213~^5.62^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~214~^0.28^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~255~^63.90^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~269~^21.19^0^^~1~^~RKA~^^^^^^^^^^~02/01/2007~ -~21413~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~303~^0.61^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~309~^0.50^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~323~^0.09^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~418~^0.58^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21415~^~203~^6.00^6^0.08^~1~^~A~^^^1^5.62^6.19^5^5.77^6.22^~2, 3~^~04/01/2014~ -~21415~^~204~^23.71^6^0.54^~1~^~A~^^^1^21.83^25.36^5^22.31^25.10^~2, 3~^~04/01/2014~ -~21415~^~205~^40.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~207~^2.81^6^0.02^~1~^~A~^^^1^2.77^2.90^5^2.76^2.86^~2, 3~^~04/01/2014~ -~21415~^~209~^36.57^3^0.73^~1~^~A~^^^1^35.10^37.40^2^33.40^39.73^~2, 3~^~04/01/2014~ -~21415~^~210~^0.74^3^0.03^~1~^~A~^^^1^0.68^0.81^2^0.57^0.90^~2, 3~^~04/01/2014~ -~21415~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~213~^2.17^3^0.02^~1~^~A~^^^1^2.12^2.22^2^2.04^2.29^~2, 3~^~04/01/2014~ -~21415~^~214~^0.55^3^0.03^~1~^~A~^^^1^0.51^0.61^2^0.41^0.68^~2, 3~^~04/01/2014~ -~21415~^~255~^26.52^6^0.33^~1~^~A~^^^1^25.47^27.75^5^25.66^27.38^~2, 3~^~04/01/2014~ -~21415~^~269~^3.46^3^0.02^~1~^~A~^^^1^3.41^3.50^2^3.34^3.56^~2, 3~^~04/01/2014~ -~21415~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~303~^2.51^6^0.05^~1~^~A~^^^1^2.30^2.68^5^2.35^2.66^~2, 3~^~04/01/2014~ -~21415~^~309~^0.49^6^5.0e-03^~1~^~A~^^^1^0.48^0.51^5^0.47^0.50^~2, 3~^~04/01/2014~ -~21415~^~323~^1.02^3^0.08^~1~^~A~^^^1^0.86^1.16^2^0.64^1.39^~2, 3~^~04/01/2014~ -~21415~^~341~^0.07^3^0.01^~1~^~A~^^^1^0.06^0.09^2^0.03^0.11^~2, 3~^~04/01/2014~ -~21415~^~342~^3.07^3^0.50^~1~^~A~^^^1^2.17^3.90^2^0.90^5.22^~2, 3~^~04/01/2014~ -~21415~^~343~^1.02^3^0.19^~1~^~A~^^^1^0.67^1.35^2^0.17^1.86^~2, 3~^~04/01/2014~ -~21415~^~344~^0.25^3^0.01^~1~^~A~^^^1^0.22^0.28^2^0.17^0.32^~2, 3~^~04/01/2014~ -~21415~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~346~^0.56^3^0.02^~1~^~A~^^^1^0.51^0.59^2^0.46^0.65^~2, 3~^~04/01/2014~ -~21415~^~347~^0.06^3^8.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.02^0.09^~2, 3~^~04/01/2014~ -~21415~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~21416~^~203~^0.98^4^0.03^~1~^~A~^^^1^0.94^1.06^3^0.88^1.07^~2, 3~^~01/01/2007~ -~21416~^~204~^11.18^4^0.40^~1~^~A~^^^1^9.97^11.73^3^9.88^12.47^~2, 3~^~01/01/2007~ -~21416~^~205~^14.12^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21416~^~207~^0.87^4^0.02^~1~^~A~^^^1^0.83^0.91^3^0.80^0.93^~2, 3~^~01/01/2007~ -~21416~^~210~^7.74^4^0.26^~1~^~A~^^^1^7.35^8.51^3^6.88^8.59^~2, 3~^~01/01/2007~ -~21416~^~211~^1.65^4^0.10^~1~^~A~^^^1^1.34^1.80^3^1.31^1.99^~2, 3~^~01/01/2007~ -~21416~^~212~^1.44^4^0.06^~1~^~A~^^^1^1.33^1.62^3^1.23^1.64^~2, 3~^~01/01/2007~ -~21416~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~21416~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~21416~^~255~^72.84^4^0.85^~1~^~A~^^^1^70.81^74.72^3^70.12^75.56^~2, 3~^~01/01/2007~ -~21416~^~269~^10.83^4^0.30^~1~^~A~^^^1^10.38^11.71^3^9.87^11.80^~2, 3~^~01/01/2007~ -~21416~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~21416~^~303~^0.23^4^8.0e-03^~1~^~A~^^^1^0.21^0.25^3^0.20^0.25^~2, 3~^~01/01/2007~ -~21416~^~309~^0.12^4^4.0e-03^~1~^~A~^^^1^0.12^0.13^3^0.11^0.13^~2, 3~^~01/01/2007~ -~21416~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~ -~21417~^~203~^19.20^4^0.39^~1~^~A~^^^1^18.25^19.94^3^17.95^20.45^~2, 3~^~01/01/2007~ -~21417~^~204~^13.01^4^0.51^~1~^~A~^^^1^11.62^14.09^3^11.38^14.64^~2, 3~^~01/01/2007~ -~21417~^~205~^19.31^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21417~^~207~^3.29^3^0.04^~1~^~A~^^^1^3.21^3.37^2^3.08^3.48^~2, 3~^~01/01/2007~ -~21417~^~209~^18.15^4^0.60^~1~^~A~^^^1^16.60^19.50^3^16.23^20.07^~2, 3~^~01/01/2007~ -~21417~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~255~^45.18^4^0.64^~1~^~A~^^^1^43.97^46.95^3^43.14^47.22^~2, 3~^~01/01/2007~ -~21417~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~01/01/2007~ -~21417~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21417~^~303~^0.91^4^0.08^~1~^~A~^^^1^0.77^1.11^3^0.64^1.17^~2, 3~^~01/01/2007~ -~21417~^~309~^0.59^4^6.0e-03^~1~^~A~^^^1^0.58^0.60^3^0.56^0.60^~2, 3~^~01/01/2007~ -~21417~^~418~^0.11^4^0.01^~1~^~A~^^^1^0.07^0.16^3^0.05^0.16^~2, 3~^~01/01/2007~ -~21418~^~203~^19.61^4^0.15^~1~^~A~^^^1^19.19^19.94^3^19.11^20.10^~2, 3~^~01/01/2007~ -~21418~^~204~^11.20^4^0.50^~1~^~A~^^^1^10.20^12.55^3^9.60^12.80^~2, 3~^~01/01/2007~ -~21418~^~205~^18.52^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~207~^3.56^4^0.03^~1~^~A~^^^1^3.46^3.60^3^3.45^3.66^~2, 3~^~01/01/2007~ -~21418~^~209~^17.55^4^0.66^~1~^~A~^^^1^15.90^19.00^3^15.44^19.65^~2, 3~^~01/01/2007~ -~21418~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~255~^47.11^4^0.97^~1~^~A~^^^1^45.17^49.53^3^44.01^50.21^~2, 3~^~01/01/2007~ -~21418~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~01/01/2007~ -~21418~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~01/01/2007~ -~21418~^~303~^1.01^4^0.06^~1~^~A~^^^1^0.88^1.15^3^0.80^1.22^~2, 3~^~01/01/2007~ -~21418~^~309~^0.60^4^0.01^~1~^~A~^^^1^0.57^0.63^3^0.57^0.63^~2, 3~^~01/01/2007~ -~21418~^~418~^0.20^4^0.01^~1~^~A~^^^1^0.16^0.24^3^0.14^0.25^~2, 3~^~01/01/2007~ -~21419~^~203~^7.50^6^0.13^~1~^~A~^^^1^7.06^7.94^5^7.14^7.85^~2, 3~^~04/01/2014~ -~21419~^~204~^17.05^6^0.45^~1~^~A~^^^1^15.54^18.24^5^15.87^18.23^~2, 3~^~04/01/2014~ -~21419~^~205~^43.55^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~207~^3.50^6^0.05^~1~^~A~^^^1^3.35^3.67^5^3.36^3.63^~2, 3~^~04/01/2014~ -~21419~^~209~^37.87^3^0.23^~1~^~A~^^^1^37.50^38.30^2^36.86^38.87^~2, 3~^~04/01/2014~ -~21419~^~210~^1.87^3^0.06^~1~^~A~^^^1^1.76^1.98^2^1.59^2.14^~2, 3~^~04/01/2014~ -~21419~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~213~^1.67^3^0.06^~1~^~A~^^^1^1.55^1.74^2^1.41^1.92^~2, 3~^~04/01/2014~ -~21419~^~214~^0.50^3^0.03^~1~^~A~^^^1^0.44^0.55^2^0.36^0.64^~2, 3~^~04/01/2014~ -~21419~^~255~^28.40^6^0.58^~1~^~A~^^^1^26.23^30.45^5^26.91^29.89^~2, 3~^~04/01/2014~ -~21419~^~269~^4.04^3^0.10^~1~^~A~^^^1^3.83^4.15^2^3.58^4.49^~2, 3~^~04/01/2014~ -~21419~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~303~^2.86^6^0.03^~1~^~A~^^^1^2.79^3.01^5^2.77^2.94^~2, 3~^~04/01/2014~ -~21419~^~309~^0.50^6^6.0e-03^~1~^~A~^^^1^0.47^0.51^5^0.48^0.51^~2, 3~^~11/01/2006~ -~21419~^~323~^0.26^3^0.08^~1~^~A~^^^1^0.16^0.42^2^-0.08^0.60^~2, 3~^~04/01/2014~ -~21419~^~341~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.05^0.14^~1, 2, 3~^~04/01/2014~ -~21419~^~342~^0.96^3^0.56^~1~^~A~^^^1^0.06^1.99^2^-1.45^3.37^~2, 3~^~04/01/2014~ -~21419~^~343~^0.32^3^0.19^~1~^~A~^^^1^0.00^0.66^2^-0.50^1.13^~1, 2, 3~^~04/01/2014~ -~21419~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~345~^0.18^3^0.04^~1~^~A~^^^1^0.13^0.27^2^-0.01^0.37^~2, 3~^~04/01/2014~ -~21419~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21419~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~203~^0.91^4^0.06^~1~^~A~^^^1^0.75^1.06^3^0.69^1.11^~2, 3~^~11/01/2006~ -~21420~^~204~^8.64^4^0.25^~1~^~A~^^^1^7.98^9.13^3^7.83^9.43^~2, 3~^~11/01/2006~ -~21420~^~205~^15.65^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~207~^0.81^4^0.02^~1~^~A~^^^1^0.77^0.87^3^0.73^0.88^~2, 3~^~11/01/2006~ -~21420~^~210~^10.18^4^0.41^~1~^~A~^^^1^9.05^10.81^3^8.86^11.50^~2, 3~^~11/01/2006~ -~21420~^~211~^1.72^4^0.11^~1~^~A~^^^1^1.49^1.95^3^1.36^2.07^~2, 3~^~11/01/2006~ -~21420~^~212~^1.45^4^0.09^~1~^~A~^^^1^1.31^1.72^3^1.15^1.74^~2, 3~^~11/01/2006~ -~21420~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~255~^73.99^4^0.38^~1~^~A~^^^1^72.98^74.86^3^72.76^75.22^~2, 3~^~11/01/2006~ -~21420~^~269~^13.54^4^0.31^~1~^~A~^^^1^12.89^14.28^3^12.55^14.52^~2, 3~^~11/01/2006~ -~21420~^~287~^0.19^4^6.0e-03^~1~^~A~^^^1^0.17^0.20^3^0.16^0.20^~2, 3~^~11/01/2006~ -~21420~^~303~^0.21^4^0.01^~1~^~A~^^^1^0.17^0.23^3^0.16^0.24^~2, 3~^~11/01/2006~ -~21420~^~309~^0.15^4^0.01^~1~^~A~^^^1^0.12^0.17^3^0.11^0.18^~2, 3~^~11/01/2006~ -~21420~^~323~^0.54^4^0.03^~1~^~A~^^^1^0.48^0.64^3^0.43^0.65^~2, 3~^~11/01/2006~ -~21420~^~341~^0.04^4^3.0e-03^~1~^~A~^^^1^0.03^0.04^3^0.02^0.04^~2, 3~^~11/01/2006~ -~21420~^~342~^4.79^4^0.14^~1~^~A~^^^1^4.59^5.23^3^4.31^5.26^~2, 3~^~11/01/2006~ -~21420~^~343~^1.64^4^0.08^~1~^~A~^^^1^1.49^1.87^3^1.38^1.90^~2, 3~^~11/01/2006~ -~21420~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~418~^0.03^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21421~^~203~^20.25^6^0.92^~1~^~A~^^^1^16.69^23.25^5^17.88^22.61^~2, 3~^~04/01/2009~ -~21421~^~204~^15.42^6^0.47^~1~^~A~^^^1^14.13^16.87^5^14.20^16.63^~2, 3~^~04/01/2009~ -~21421~^~205~^13.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~207~^2.74^6^0.21^~1~^~A~^^^1^2.13^3.65^5^2.19^3.28^~2, 3~^~04/01/2009~ -~21421~^~209~^13.40^4^1.01^~1~^~A~^^^1^11.20^15.80^3^10.18^16.61^~2, 3~^~11/01/2006~ -~21421~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~255~^47.93^6^0.99^~1~^~A~^^^1^44.53^50.57^5^45.38^50.47^~2, 3~^~04/01/2009~ -~21421~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2009~ -~21421~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21421~^~303~^0.69^4^0.03^~1~^~A~^^^1^0.61^0.78^3^0.57^0.81^~2, 3~^~11/01/2006~ -~21421~^~309~^0.68^4^0.02^~1~^~A~^^^1^0.62^0.74^3^0.59^0.76^~2, 3~^~11/01/2006~ -~21421~^~323~^0.90^4^0.02^~1~^~A~^^^1^0.86^0.96^3^0.83^0.96^~2, 3~^~11/01/2006~ -~21421~^~341~^0.05^4^4.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.06^~2, 3~^~11/01/2006~ -~21421~^~342~^3.51^4^0.24^~1~^~A~^^^1^3.12^4.15^3^2.72^4.29^~2, 3~^~11/01/2006~ -~21421~^~343~^1.92^4^0.15^~1~^~A~^^^1^1.63^2.19^3^1.41^2.41^~2, 3~^~11/01/2006~ -~21421~^~344~^0.01^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 2, 3~^~11/01/2006~ -~21421~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21421~^~346~^0.09^4^0.02^~1~^~A~^^^1^0.01^0.15^3^-2.0e-03^0.18^~1, 2, 3~^~11/01/2006~ -~21421~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21421~^~418~^0.17^4^0.01^~1~^~A~^^^1^0.14^0.22^3^0.11^0.22^~2, 3~^~11/01/2006~ -~21422~^~203~^17.67^6^1.00^~1~^~A~^^^1^14.31^21.31^5^15.09^20.24^~2, 3~^~04/01/2009~ -~21422~^~204~^21.74^6^0.61^~1~^~A~^^^1^20.44^24.50^5^20.16^23.31^~2, 3~^~04/01/2009~ -~21422~^~205~^21.18^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~207~^3.79^6^0.18^~1~^~A~^^^1^3.28^4.60^5^3.31^4.26^~2, 3~^~04/01/2009~ -~21422~^~209~^18.35^4^0.52^~1~^~A~^^^1^17.40^19.40^3^16.68^20.01^~2, 3~^~11/01/2006~ -~21422~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~255~^35.62^6^1.78^~1~^~A~^^^1^27.22^38.95^5^31.04^40.19^~2, 3~^~04/01/2009~ -~21422~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~04/01/2009~ -~21422~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2009~ -~21422~^~303~^1.42^4^0.08^~1~^~A~^^^1^1.19^1.61^3^1.14^1.69^~2, 3~^~11/01/2006~ -~21422~^~309~^0.98^4^0.28^~1~^~A~^^^1^0.67^1.82^3^0.08^1.87^~2, 3~^~11/01/2006~ -~21422~^~323~^1.32^4^0.18^~1~^~A~^^^1^0.90^1.71^3^0.75^1.89^~2, 3~^~11/01/2006~ -~21422~^~341~^0.09^4^0.02^~1~^~A~^^^1^0.04^0.16^3^0.01^0.17^~2, 3~^~11/01/2006~ -~21422~^~342~^5.88^4^1.41^~1~^~A~^^^1^2.58^9.47^3^1.38^10.37^~2, 3~^~11/01/2006~ -~21422~^~343~^3.02^4^0.44^~1~^~A~^^^1^2.15^4.19^3^1.61^4.42^~2, 3~^~11/01/2006~ -~21422~^~344~^0.00^4^5.0e-03^~1~^~A~^^^1^0.00^0.02^3^-0.01^0.02^~1, 2, 3~^~11/01/2006~ -~21422~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21422~^~346~^0.10^4^0.05^~1~^~A~^^^1^0.02^0.21^3^-0.05^0.26^~2, 3~^~11/01/2006~ -~21422~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~21422~^~418~^0.14^4^3.0e-03^~1~^~A~^^^1^0.13^0.14^3^0.12^0.14^~2, 3~^~11/01/2006~ -~21424~^~203~^14.17^6^0.98^~1~^~A~^^^1^11.19^17.81^5^11.63^16.70^~2, 3~^~04/01/2014~ -~21424~^~204~^28.01^6^1.11^~1~^~A~^^^1^25.70^32.66^5^25.15^30.87^~2, 3~^~04/01/2014~ -~21424~^~205~^18.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~207~^3.51^6^0.13^~1~^~A~^^^1^3.16^3.90^5^3.14^3.86^~2, 3~^~04/01/2014~ -~21424~^~209~^16.72^6^0.17^~1~^~A~^^^1^16.00^17.10^5^16.27^17.17^~2, 3~^~04/01/2007~ -~21424~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~255~^35.52^6^1.84^~1~^~A~^^^1^30.15^41.73^5^30.78^40.26^~2, 3~^~04/01/2014~ -~21424~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~21424~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21424~^~303~^0.88^6^0.10^~1~^~A~^^^1^0.68^1.32^5^0.61^1.14^~2, 3~^~04/01/2014~ -~21424~^~309~^0.87^6^0.03^~1~^~A~^^^1^0.77^1.01^5^0.76^0.96^~2, 3~^~04/01/2014~ -~21424~^~323~^1.20^3^0.11^~1~^~A~^^^1^1.03^1.42^2^0.71^1.68^~2, 3~^~04/01/2014~ -~21424~^~341~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.09^0.19^~1, 2, 3~^~04/01/2014~ -~21424~^~342~^1.78^3^0.14^~1~^~A~^^^1^1.52^2.01^2^1.16^2.40^~2, 3~^~04/01/2014~ -~21424~^~343~^0.07^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.08^0.22^~1, 2, 3~^~04/01/2014~ -~21424~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.09^~1, 2, 3~^~04/01/2014~ -~21424~^~345~^0.33^3^0.11^~1~^~A~^^^1^0.12^0.50^2^-0.14^0.81^~2, 3~^~04/01/2014~ -~21424~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~418~^0.32^3^0.01^~1~^~A~^^^1^0.30^0.36^2^0.24^0.40^~2, 3~^~04/01/2007~ -~21425~^~203~^26.89^6^0.36^~1~^~A~^^^1^25.56^27.69^5^25.95^27.81^~2, 3~^~04/01/2014~ -~21425~^~204~^4.56^6^0.20^~1~^~A~^^^1^3.69^5.17^5^4.03^5.08^~2, 3~^~04/01/2014~ -~21425~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~207~^2.28^6^0.13^~1~^~A~^^^1^1.80^2.61^5^1.94^2.61^~2, 3~^~04/01/2014~ -~21425~^~255~^66.44^6^0.24^~1~^~A~^^^1^65.83^67.35^5^65.82^67.06^~2, 3~^~04/01/2014~ -~21425~^~303~^0.53^6^0.02^~1~^~A~^^^1^0.47^0.61^5^0.47^0.57^~2, 3~^~04/01/2014~ -~21425~^~309~^0.97^6^0.04^~1~^~A~^^^1^0.88^1.13^5^0.85^1.07^~2, 3~^~04/01/2014~ -~21425~^~323~^0.33^3^0.06^~1~^~A~^^^1^0.22^0.44^2^0.04^0.61^~2, 3~^~04/01/2014~ -~21425~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~342~^0.19^3^0.01^~1~^~A~^^^1^0.16^0.22^2^0.11^0.26^~2, 3~^~04/01/2014~ -~21425~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~418~^0.26^3^0.03^~1~^~A~^^^1^0.20^0.33^2^0.09^0.42^~2, 3~^~04/01/2014~ -~21426~^~203~^26.30^6^0.30^~1~^~A~^^^1^25.38^26.94^5^25.52^27.07^~2, 3~^~04/01/2009~ -~21426~^~204~^7.66^6^0.16^~1~^~A~^^^1^7.10^8.12^5^7.23^8.07^~2, 3~^~04/01/2009~ -~21426~^~205~^0.11^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~207~^2.16^6^0.08^~1~^~A~^^^1^1.95^2.50^5^1.93^2.38^~2, 3~^~04/01/2009~ -~21426~^~255~^63.77^6^0.27^~1~^~A~^^^1^62.75^64.70^5^63.05^64.47^~2, 3~^~04/01/2009~ -~21426~^~303~^1.04^6^0.04^~1~^~A~^^^1^0.87^1.13^5^0.94^1.14^~2, 3~^~04/01/2007~ -~21426~^~309~^2.50^6^0.09^~1~^~A~^^^1^2.12^2.79^5^2.25^2.74^~2, 3~^~04/01/2007~ -~21426~^~418~^0.64^4^0.02^~1~^~A~^^^1^0.59^0.71^3^0.54^0.73^~2, 3~^~04/01/2007~ -~21427~^~203~^22.78^6^0.45^~1~^~A~^^^1^20.94^23.81^5^21.61^23.94^~2, 3~^~04/01/2014~ -~21427~^~204~^9.31^6^0.32^~1~^~A~^^^1^8.31^10.45^5^8.48^10.13^~2, 3~^~04/01/2014~ -~21427~^~205~^0.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~207~^2.25^6^0.12^~1~^~A~^^^1^1.93^2.80^5^1.92^2.58^~2, 3~^~04/01/2014~ -~21427~^~255~^65.65^6^0.28^~1~^~A~^^^1^64.44^66.52^5^64.92^66.37^~2, 3~^~04/01/2014~ -~21427~^~303~^0.87^6^0.02^~1~^~A~^^^1^0.81^0.98^5^0.80^0.93^~2, 3~^~04/01/2014~ -~21427~^~309~^1.91^6^0.04^~1~^~A~^^^1^1.78^2.08^5^1.78^2.02^~2, 3~^~04/01/2014~ -~21427~^~323~^0.41^3^0.03^~1~^~A~^^^1^0.36^0.47^2^0.26^0.55^~2, 3~^~04/01/2014~ -~21427~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~342~^0.21^3^2.0e-03^~1~^~A~^^^1^0.21^0.21^2^0.20^0.21^~2, 3~^~04/01/2014~ -~21427~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~345~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.04^0.10^~1, 2, 3~^~04/01/2014~ -~21427~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~418~^0.47^3^0.15^~1~^~A~^^^1^0.17^0.65^2^-0.18^1.11^~2, 3~^~04/01/2014~ -~21428~^~203~^28.65^6^0.68^~1~^~A~^^^1^27.00^31.13^5^26.89^30.39^~2, 3~^~04/01/2014~ -~21428~^~204~^10.49^6^0.48^~1~^~A~^^^1^8.90^11.40^5^9.24^11.73^~2, 3~^~04/01/2014~ -~21428~^~205~^1.76^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~207~^2.67^6^0.13^~1~^~A~^^^1^2.19^3.17^5^2.32^3.00^~2, 3~^~04/01/2014~ -~21428~^~255~^56.44^6^0.72^~1~^~A~^^^1^54.56^59.14^5^54.57^58.30^~2, 3~^~04/01/2014~ -~21428~^~303~^0.98^6^0.06^~1~^~A~^^^1^0.84^1.26^5^0.82^1.13^~2, 3~^~04/01/2014~ -~21428~^~309~^1.82^6^0.07^~1~^~A~^^^1^1.49^2.00^5^1.62^2.01^~2, 3~^~04/01/2014~ -~21428~^~323~^0.66^3^0.04^~1~^~A~^^^1^0.56^0.73^2^0.44^0.86^~2, 3~^~04/01/2014~ -~21428~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~342~^0.59^3^0.06^~1~^~A~^^^1^0.52^0.72^2^0.32^0.86^~2, 3~^~04/01/2014~ -~21428~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~345~^0.09^3^0.01^~1~^~A~^^^1^0.06^0.12^2^0.02^0.16^~2, 3~^~04/01/2014~ -~21428~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~418~^0.45^3^0.05^~1~^~A~^^^1^0.35^0.55^2^0.20^0.70^~2, 3~^~04/01/2014~ -~21429~^~203~^10.96^6^0.27^~1~^~A~^^^1^9.94^11.94^5^10.26^11.65^~2, 3~^~04/01/2009~ -~21429~^~204~^36.61^6^0.52^~1~^~A~^^^1^35.12^39.00^5^35.25^37.97^~2, 3~^~04/01/2009~ -~21429~^~205~^22.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~207~^2.92^6^0.21^~1~^~A~^^^1^2.27^3.60^5^2.36^3.46^~2, 3~^~04/01/2009~ -~21429~^~209~^21.32^6^0.27^~1~^~A~^^^1^20.50^22.10^5^20.60^22.04^~2, 3~^~04/01/2007~ -~21429~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~255~^26.98^6^0.86^~1~^~A~^^^1^23.74^28.80^5^24.75^29.19^~2, 3~^~04/01/2009~ -~21429~^~269~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2007~ -~21429~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~303~^0.67^12^0.02^~1~^~A~^^^1^0.55^0.79^11^0.62^0.71^~2, 3~^~04/01/2007~ -~21429~^~309~^0.61^12^0.02^~1~^~A~^^^1^0.50^0.76^11^0.55^0.66^~2, 3~^~04/01/2007~ -~21429~^~418~^0.36^4^0.03^~1~^~A~^^^1^0.30^0.46^3^0.25^0.47^~2, 3~^~04/01/2007~ -~21430~^~203~^27.25^6^0.44^~1~^~A~^^^1^25.81^28.38^5^26.10^28.39^~2, 3~^~04/01/2009~ -~21430~^~204~^4.82^6^0.36^~1~^~A~^^^1^3.66^6.12^5^3.88^5.75^~2, 3~^~04/01/2009~ -~21430~^~205~^0.25^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~207~^1.97^6^0.06^~1~^~A~^^^1^1.76^2.21^5^1.80^2.13^~2, 3~^~04/01/2009~ -~21430~^~255~^65.71^6^0.73^~1~^~A~^^^1^62.82^68.25^5^63.82^67.59^~2, 3~^~04/01/2009~ -~21430~^~303~^0.51^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~309~^0.89^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~418~^0.30^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21431~^~203~^25.90^6^0.22^~1~^~A~^^^1^25.19^26.69^5^25.31^26.48^~2, 3~^~04/01/2009~ -~21431~^~204~^7.43^6^0.20^~1~^~A~^^^1^6.64^7.94^5^6.91^7.94^~2, 3~^~04/01/2009~ -~21431~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~207~^2.09^6^0.08^~1~^~A~^^^1^1.78^2.37^5^1.85^2.31^~2, 3~^~04/01/2009~ -~21431~^~255~^64.78^6^0.35^~1~^~A~^^^1^63.48^65.92^5^63.87^65.69^~2, 3~^~04/01/2009~ -~21431~^~303~^1.05^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~309~^2.51^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~418~^0.63^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21432~^~203~^22.41^6^0.21^~1~^~A~^^^1^21.63^23.13^5^21.85^22.95^~2, 3~^~04/01/2009~ -~21432~^~204~^9.96^6^0.29^~1~^~A~^^^1^8.77^10.80^5^9.20^10.71^~2, 3~^~04/01/2009~ -~21432~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~207~^1.98^6^0.10^~1~^~A~^^^1^1.74^2.33^5^1.72^2.24^~2, 3~^~04/01/2009~ -~21432~^~255~^65.68^6^0.21^~1~^~A~^^^1^65.02^66.33^5^65.12^66.22^~2, 3~^~04/01/2009~ -~21432~^~303~^0.96^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~309~^1.90^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~418~^0.53^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21433~^~203~^28.67^6^0.64^~1~^~A~^^^1^26.88^31.44^5^27.00^30.33^~2, 3~^~04/01/2009~ -~21433~^~204~^12.13^6^0.66^~1~^~A~^^^1^9.81^14.55^5^10.41^13.85^~2, 3~^~04/01/2009~ -~21433~^~205~^2.97^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~207~^2.39^6^0.13^~1~^~A~^^^1^1.98^2.89^5^2.04^2.73^~2, 3~^~04/01/2009~ -~21433~^~255~^53.85^6^1.47^~1~^~A~^^^1^47.78^57.89^5^50.06^57.62^~2, 3~^~04/01/2009~ -~21433~^~303~^0.89^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~309~^1.75^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~418~^0.41^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21434~^~203~^21.94^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~204~^13.11^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~205~^6.28^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~207~^2.51^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~209~^5.85^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~255~^56.16^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~303~^0.60^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~309~^0.81^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~418~^0.31^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~203~^22.30^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~204~^14.22^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~205~^5.39^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~207~^2.49^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~255~^55.60^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~303~^0.97^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~309~^1.96^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~418~^0.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21436~^~203~^18.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~204~^17.73^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~205~^8.46^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~207~^2.82^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~209~^7.53^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~255~^52.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~303~^0.88^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21436~^~309~^1.44^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~323~^0.77^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~341~^0.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~342~^0.92^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~344~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~345~^0.17^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~346~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~418~^0.40^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~203~^21.70^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~204~^18.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~205~^9.93^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~207~^3.07^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~209~^8.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~255~^46.40^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~303~^0.93^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~309~^1.36^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~323~^0.92^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~341~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~342~^1.16^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~344~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~345~^0.21^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~346~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~418~^0.39^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21438~^~203~^21.24^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~204~^16.55^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~205~^8.47^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~207~^2.32^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~255~^51.42^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~303~^0.57^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~309~^0.78^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~418~^0.32^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~203~^20.62^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~204~^17.73^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~205~^7.96^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~207~^2.38^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~255~^51.44^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~303~^0.91^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~309~^1.84^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~418~^0.54^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~203~^17.17^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~204~^22.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~205~^10.30^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~207~^2.41^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~255~^47.99^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~303~^0.83^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~309~^1.31^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~418~^0.45^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~203~^20.80^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~204~^23.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~205~^11.66^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~207~^2.62^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~255~^41.91^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~303~^0.79^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~309~^1.24^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~418~^0.39^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21442~^~203~^28.98^6^0.58^~1~^~A~^^^1^27.06^31.19^5^27.48^30.47^~2, 3~^~04/01/2014~ -~21442~^~204~^4.52^6^0.40^~1~^~A~^^^1^3.65^6.03^5^3.47^5.55^~2, 3~^~04/01/2014~ -~21442~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~207~^2.26^6^0.06^~1~^~A~^^^1^1.99^2.42^5^2.10^2.41^~2, 3~^~04/01/2014~ -~21442~^~255~^64.77^6^0.52^~1~^~A~^^^1^62.77^66.07^5^63.43^66.10^~2, 3~^~04/01/2014~ -~21442~^~303~^0.55^6^0.02^~1~^~A~^^^1^0.47^0.66^5^0.47^0.62^~2, 3~^~04/01/2014~ -~21442~^~309~^0.97^6^0.04^~1~^~A~^^^1^0.86^1.17^5^0.85^1.08^~2, 3~^~04/01/2014~ -~21442~^~323~^0.21^3^0.06^~1~^~A~^^^1^0.14^0.33^2^-0.05^0.47^~2, 3~^~04/01/2014~ -~21442~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~342~^0.06^3^0.06^~1~^~A~^^^1^0.00^0.19^2^-0.21^0.34^~1, 2, 3~^~04/01/2014~ -~21442~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~418~^0.33^3^0.05^~1~^~A~^^^1^0.26^0.44^2^0.09^0.56^~2, 3~^~04/01/2014~ -~21443~^~203~^26.51^6^0.41^~1~^~A~^^^1^25.25^27.81^5^25.43^27.58^~2, 3~^~04/01/2009~ -~21443~^~204~^7.14^6^0.18^~1~^~A~^^^1^6.58^7.58^5^6.66^7.61^~2, 3~^~04/01/2009~ -~21443~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~207~^2.13^6^0.10^~1~^~A~^^^1^1.88^2.53^5^1.85^2.40^~2, 3~^~04/01/2009~ -~21443~^~255~^64.18^6^0.35^~1~^~A~^^^1^63.10^65.23^5^63.26^65.09^~2, 3~^~04/01/2009~ -~21443~^~303~^1.06^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~309~^2.59^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~418~^0.85^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21444~^~203~^13.96^6^0.60^~1~^~A~^^^1^12.19^16.00^5^12.40^15.51^~2, 3~^~04/01/2014~ -~21444~^~204~^32.32^6^0.76^~1~^~A~^^^1^30.21^35.06^5^30.36^34.27^~2, 3~^~04/01/2014~ -~21444~^~205~^21.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~207~^2.55^6^0.07^~1~^~A~^^^1^2.33^2.81^5^2.36^2.73^~2, 3~^~04/01/2014~ -~21444~^~209~^20.17^6^0.67^~1~^~A~^^^1^17.30^22.05^5^18.44^21.90^~2, 3~^~04/01/2007~ -~21444~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~255~^29.63^6^0.53^~1~^~A~^^^1^28.36^31.90^5^28.26^30.99^~2, 3~^~04/01/2014~ -~21444~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~21444~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21444~^~303~^1.73^6^0.04^~1~^~A~^^^1^1.59^1.88^5^1.61^1.83^~2, 3~^~04/01/2014~ -~21444~^~309~^0.67^6^0.01^~1~^~A~^^^1^0.61^0.72^5^0.62^0.71^~2, 3~^~04/01/2014~ -~21444~^~323~^0.20^3^0.03^~1~^~A~^^^1^0.16^0.28^2^0.04^0.36^~2, 3~^~04/01/2014~ -~21444~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~342~^0.14^3^0.04^~1~^~A~^^^1^0.08^0.23^2^-0.05^0.34^~2, 3~^~04/01/2014~ -~21444~^~343~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.07^0.18^~1, 2, 3~^~04/01/2014~ -~21444~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~345~^0.13^3^0.02^~1~^~A~^^^1^0.10^0.17^2^0.04^0.22^~2, 3~^~04/01/2014~ -~21444~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~418~^0.38^3^6.0e-03^~1~^~A~^^^1^0.37^0.39^2^0.35^0.40^~2, 3~^~04/01/2014~ -~21445~^~203~^24.31^6^0.15^~1~^~A~^^^1^24.06^24.88^5^23.92^24.69^~2, 3~^~06/01/2014~ -~21445~^~204~^9.66^6^0.36^~1~^~A~^^^1^8.93^11.20^5^8.71^10.61^~2, 3~^~06/01/2014~ -~21445~^~205~^0.85^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~207~^2.00^6^0.11^~1~^~A~^^^1^1.51^2.29^5^1.70^2.29^~2, 3~^~06/01/2014~ -~21445~^~255~^63.18^6^0.62^~1~^~A~^^^1^61.21^64.90^5^61.57^64.77^~2, 3~^~06/01/2014~ -~21445~^~303~^1.03^6^0.02^~1~^~A~^^^1^0.96^1.11^5^0.97^1.08^~2, 3~^~06/01/2014~ -~21445~^~309~^2.01^6^0.03^~1~^~A~^^^1^1.86^2.13^5^1.92^2.10^~2, 3~^~06/01/2014~ -~21445~^~323~^0.28^3^0.09^~1~^~A~^^^1^0.09^0.40^2^-0.13^0.69^~2, 3~^~06/01/2014~ -~21445~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~342~^0.05^3^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.06^0.17^~1, 2, 3~^~06/01/2014~ -~21445~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~418~^0.59^3^0.05^~1~^~A~^^^1^0.48^0.66^2^0.35^0.82^~2, 3~^~06/01/2014~ -~21446~^~203~^28.94^6^0.32^~1~^~A~^^^1^28.00^30.25^5^28.10^29.77^~2, 3~^~04/01/2014~ -~21446~^~204~^9.42^6^0.69^~1~^~A~^^^1^7.74^11.89^5^7.63^11.21^~2, 3~^~04/01/2014~ -~21446~^~205~^2.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~207~^2.89^6^0.13^~1~^~A~^^^1^2.59^3.49^5^2.54^3.24^~2, 3~^~04/01/2014~ -~21446~^~255~^55.85^6^0.82^~1~^~A~^^^1^53.72^59.65^5^53.71^57.97^~2, 3~^~04/01/2014~ -~21446~^~303~^0.92^6^0.01^~1~^~A~^^^1^0.87^1.00^5^0.86^0.96^~2, 3~^~04/01/2014~ -~21446~^~309~^2.02^6^0.05^~1~^~A~^^^1^1.86^2.24^5^1.87^2.15^~2, 3~^~04/01/2014~ -~21446~^~323~^0.39^3^0.05^~1~^~A~^^^1^0.28^0.47^2^0.14^0.63^~2, 3~^~04/01/2014~ -~21446~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~342~^0.11^3^0.02^~1~^~A~^^^1^0.08^0.15^2^0.02^0.20^~2, 3~^~04/01/2014~ -~21446~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~346~^0.07^3^2.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.05^0.07^~2, 3~^~04/01/2014~ -~21446~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~418~^0.75^3^0.05^~1~^~A~^^^1^0.64^0.84^2^0.49^1.00^~2, 3~^~04/01/2014~ -~21456~^~203~^21.67^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~204~^16.47^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~205~^9.83^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~207~^2.55^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~209~^7.87^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~255~^49.48^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~303~^0.74^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~309~^0.76^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~418~^0.36^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~203~^20.44^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~204~^19.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~205~^9.84^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~207~^2.44^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~255~^48.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~303~^1.06^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~309~^1.76^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~418~^0.62^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21458~^~203~^19.14^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~204~^20.99^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~205~^11.20^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~207~^2.27^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~209~^10.09^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~255~^46.40^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~303~^1.38^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~309~^1.34^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~323~^0.24^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~341~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~342~^0.10^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~344~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~345~^0.07^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~346~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~418~^0.48^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21459~^~203~^20.40^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~204~^22.48^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~205~^13.52^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~207~^2.70^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~209~^11.50^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~255~^40.90^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~269~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~303~^1.38^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~309~^1.25^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~323~^0.28^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~341~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~342~^0.13^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~344~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~345~^0.08^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~346~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~418~^0.54^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21461~^~203~^17.19^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~204~^8.05^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~205~^19.87^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~207~^2.38^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~255~^52.52^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~269~^4.68^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~303~^1.37^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~309~^1.34^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~323~^0.61^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~418~^0.47^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~203~^15.38^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~204~^11.76^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~205~^22.61^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~207~^2.23^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~255~^48.02^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~269~^4.99^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~303~^1.32^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~309~^1.17^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~323~^0.50^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~418~^0.46^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21463~^~203~^3.36^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~204~^1.01^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~205~^15.86^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~207~^0.80^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~255~^78.98^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~269~^11.68^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~303~^0.49^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~309~^0.89^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~323~^0.25^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~418~^0.88^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~578~^0.58^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21464~^~203~^27.93^12^0.45^~1~^~A~^^^1^25.56^31.19^11^26.93^28.93^~2, 3~^~04/01/2014~ -~21464~^~204~^4.54^12^0.21^~1~^~A~^^^1^3.65^6.03^11^4.06^5.01^~2, 3~^~04/01/2014~ -~21464~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~207~^2.27^12^0.06^~1~^~A~^^^1^1.80^2.61^11^2.11^2.41^~2, 3~^~04/01/2014~ -~21464~^~255~^65.61^12^0.37^~1~^~A~^^^1^62.77^67.35^11^64.78^66.42^~2, 3~^~04/01/2014~ -~21464~^~269~^0.00^0^^~4~^~BFSN~^~05342~^^^^^^^^^~05/01/2009~ -~21464~^~303~^0.54^12^0.01^~1~^~A~^^^1^0.47^0.66^11^0.50^0.57^~2, 3~^~04/01/2014~ -~21464~^~309~^0.97^12^0.03^~1~^~A~^^^1^0.86^1.17^11^0.90^1.03^~2, 3~^~04/01/2014~ -~21464~^~323~^0.27^6^0.04^~1~^~A~^^^1^0.14^0.44^5^0.14^0.39^~2, 3~^~04/01/2014~ -~21464~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~342~^0.13^6^0.04^~1~^~A~^^^1^0.00^0.22^5^0.02^0.23^~1, 2, 3~^~04/01/2014~ -~21464~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~418~^0.30^6^0.03^~1~^~A~^^^1^0.20^0.44^5^0.20^0.38^~2, 3~^~04/01/2014~ -~21464~^~573~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21464~^~578~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21465~^~203~^26.24^18^^~1~^~A~^^^1^25.90^26.51^^^^~2~^~05/01/2009~ -~21465~^~204~^7.41^18^^~1~^~A~^^^1^7.14^7.66^^^^~2~^~05/01/2009~ -~21465~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~207~^2.13^18^^~1~^~A~^^^1^2.09^2.16^^^^~2~^~05/01/2009~ -~21465~^~255~^64.24^18^^~1~^~A~^^^1^63.77^64.78^^^^~2~^~05/01/2009~ -~21465~^~269~^0.00^0^^~4~^~BFNN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~303~^1.03^12^0.01^~1~^~A~^^^2^1.02^1.04^1^0.85^1.20^~2~^~05/01/2009~ -~21465~^~309~^2.50^12^0.00^~1~^~A~^^^2^2.50^2.50^1^2.49^2.49^~2~^~05/01/2009~ -~21465~^~323~^0.33^0^^~4~^~BFFN~^~05343~^^^^^^^^^~05/01/2009~ -~21465~^~418~^0.74^8^0.10^~1~^~A~^^^2^0.64^0.85^1^-0.60^2.09^~2~^~05/01/2009~ -~21465~^~573~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21465~^~578~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21466~^~203~^23.21^12^0.33^~1~^~A~^^^1^20.94^24.88^5^22.36^24.05^~2, 3~^~07/01/2014~ -~21466~^~204~^9.41^12^0.25^~1~^~A~^^^1^8.31^11.20^7^8.80^10.00^~2, 3~^~07/01/2014~ -~21466~^~205~^0.24^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~207~^2.18^12^0.09^~1~^~A~^^^1^1.51^2.80^6^1.94^2.41^~2, 3~^~07/01/2014~ -~21466~^~255~^64.96^12^0.26^~1~^~A~^^^1^61.21^66.52^10^64.36^65.55^~2, 3~^~07/01/2014~ -~21466~^~269~^0.00^0^^~4~^~BFNN~^~05345~^^^^^^^^^~05/01/2009~ -~21466~^~303~^0.91^12^0.02^~1~^~A~^^^1^0.81^1.11^6^0.86^0.96^~2, 3~^~07/01/2014~ -~21466~^~309~^1.94^12^0.03^~1~^~A~^^^1^1.78^2.13^6^1.85^2.02^~2, 3~^~07/01/2014~ -~21466~^~323~^0.37^6^0.03^~1~^~A~^^^1^0.09^0.47^4^0.27^0.47^~2, 3~^~07/01/2014~ -~21466~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~342~^0.17^6^8.0e-03^~1~^~A~^^^1^0.00^0.21^2^0.13^0.19^~1, 2, 3~^~07/01/2014~ -~21466~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~345~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.02^0.07^~1, 2, 3~^~07/01/2014~ -~21466~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~418~^0.50^6^0.11^~1~^~A~^^^1^0.17^0.66^2^0.04^0.95^~2, 3~^~07/01/2014~ -~21466~^~573~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21466~^~578~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21467~^~203~^28.77^12^0.43^~1~^~A~^^^1^27.00^31.13^7^27.74^29.79^~2, 3~^~07/01/2014~ -~21467~^~204~^10.20^12^0.37^~1~^~A~^^^1^7.74^11.89^9^9.35^11.03^~2, 3~^~07/01/2014~ -~21467~^~205~^2.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~207~^2.74^12^0.09^~1~^~A~^^^1^2.19^3.49^9^2.53^2.94^~2, 3~^~07/01/2014~ -~21467~^~255~^56.16^12^0.54^~1~^~A~^^^1^53.72^59.65^9^54.93^57.39^~2, 3~^~07/01/2014~ -~21467~^~269~^0.00^0^^~4~^~BFNN~^~05346~^^^^^^^^^~05/01/2009~ -~21467~^~303~^0.96^12^0.03^~1~^~A~^^^1^0.84^1.26^6^0.87^1.04^~2, 3~^~07/01/2014~ -~21467~^~309~^1.90^12^0.05^~1~^~A~^^^1^1.49^2.24^7^1.76^2.03^~2, 3~^~07/01/2014~ -~21467~^~323~^0.54^6^0.05^~1~^~A~^^^1^0.28^0.73^4^0.37^0.69^~2, 3~^~07/01/2014~ -~21467~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~342~^0.38^6^0.08^~1~^~A~^^^1^0.08^0.72^3^0.10^0.65^~2, 3~^~07/01/2014~ -~21467~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~345~^0.05^6^0.01^~1~^~A~^^^1^0.00^0.12^3^-9.0e-03^0.11^~1, 2, 3~^~04/01/2014~ -~21467~^~346~^0.03^6^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.01^0.07^~1, 2, 3~^~04/01/2014~ -~21467~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~418~^0.59^6^0.07^~1~^~A~^^^1^0.35^0.84^3^0.35^0.82^~2, 3~^~07/01/2014~ -~21467~^~573~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21467~^~578~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21468~^~203~^14.11^12^0.73^~1~^~A~^^^1^11.19^17.81^6^12.28^15.92^~2, 3~^~04/01/2014~ -~21468~^~204~^29.22^12^0.82^~1~^~A~^^^1^25.70^35.06^6^27.17^31.27^~2, 3~^~04/01/2014~ -~21468~^~205~^19.56^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~207~^3.24^12^0.10^~1~^~A~^^^1^2.33^3.90^5^2.98^3.49^~2, 3~^~04/01/2014~ -~21468~^~209~^19.76^24^0.73^~1~^~A~^^^2^16.72^21.32^1^10.41^29.10^~2~^~05/01/2009~ -~21468~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~255~^33.87^12^1.33^~1~^~A~^^^1^28.36^41.73^5^30.46^37.28^~2, 3~^~04/01/2014~ -~21468~^~269~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~05/01/2009~ -~21468~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~21468~^~303~^1.12^12^0.07^~1~^~A~^^^1^0.68^1.88^5^0.93^1.30^~2, 3~^~04/01/2014~ -~21468~^~309~^0.81^12^0.02^~1~^~A~^^^1^0.61^1.01^5^0.74^0.88^~2, 3~^~04/01/2014~ -~21468~^~323~^0.92^6^0.08^~1~^~A~^^^1^0.16^1.42^2^0.57^1.26^~2, 3~^~04/01/2014~ -~21468~^~341~^0.04^6^0.02^~1~^~A~^^^1^0.00^0.12^2^-0.06^0.14^~1, 2, 3~^~04/01/2014~ -~21468~^~342~^1.32^6^0.10^~1~^~A~^^^1^0.08^2.01^2^0.88^1.75^~2, 3~^~04/01/2014~ -~21468~^~343~^0.06^6^0.02^~1~^~A~^^^1^0.00^0.12^2^-0.03^0.16^~1, 2, 3~^~04/01/2014~ -~21468~^~344~^0.01^6^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.04^0.06^~1, 2, 3~^~04/01/2014~ -~21468~^~345~^0.28^6^0.08^~1~^~A~^^^1^0.10^0.50^2^-0.06^0.62^~2, 3~^~04/01/2014~ -~21468~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21468~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~21468~^~418~^0.34^6^0.01^~1~^~A~^^^1^0.30^0.39^2^0.28^0.39^~2, 3~^~04/01/2014~ -~21468~^~573~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21468~^~578~^0.00^0^^~7~^^^^^^^^^^^~05/01/2009~ -~21469~^~203~^23.51^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~204~^12.44^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~205~^6.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21469~^~207~^2.58^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~209~^6.32^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~255~^55.45^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~269~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~303~^0.72^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~309~^0.92^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~323~^0.48^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~341~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~342~^0.51^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~343~^0.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~344~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~345~^0.09^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~346~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~418~^0.31^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21469~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~203~^21.13^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~204~^16.92^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~205~^7.59^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~207~^2.45^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~209~^7.11^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~255~^51.92^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~269~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~303~^0.99^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~309~^1.83^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~323~^0.33^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~418~^0.59^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~203~^19.23^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~204~^18.07^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~205~^8.68^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~207~^2.64^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~209~^8.64^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~255~^51.37^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~269~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~303~^1.00^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~309~^1.45^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~323~^0.61^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~341~^0.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~342~^0.67^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~344~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~345~^0.14^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~346~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~418~^0.43^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21471~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~203~^21.14^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~204~^20.09^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~205~^11.19^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~207~^3.00^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~209~^10.28^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~210~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~211~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~212~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~213~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~214~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~255~^44.57^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~269~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~287~^0.00^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~303~^1.04^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~309~^1.33^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~323~^0.74^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~341~^0.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~342~^0.87^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~343~^0.03^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~344~^0.01^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~345~^0.17^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~346~^0.02^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~347~^0.00^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~418~^0.46^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21472~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21473~^~203~^13.48^3^0.19^~1~^~A~^^^1^13.25^13.88^2^12.62^14.33^~4~^~03/01/2010~ -~21473~^~204~^11.68^3^0.48^~1~^~A~^^^1^11.07^12.63^2^9.61^13.74^~4~^~03/01/2010~ -~21473~^~205~^29.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~207~^3.19^3^0.08^~1~^~A~^^^1^3.03^3.33^2^2.81^3.57^~4~^~03/01/2010~ -~21473~^~209~^21.47^3^0.08^~1~^~A~^^^1^21.30^21.60^2^21.08^21.84^~4~^~03/01/2010~ -~21473~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21473~^~211~^2.02^3^0.09^~1~^~A~^^^1^1.85^2.16^2^1.63^2.41^~4~^~03/01/2010~ -~21473~^~212~^2.25^3^0.01^~1~^~A~^^^1^2.22^2.28^2^2.17^2.32^~4~^~03/01/2010~ -~21473~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21473~^~255~^41.78^2^^~1~^~A~^^^1^41.65^41.92^1^^^^~03/01/2010~ -~21473~^~303~^2.35^3^0.01^~1~^~A~^^^1^2.31^2.37^2^2.26^2.42^~4~^~03/01/2010~ -~21473~^~309~^1.67^3^0.03^~1~^~A~^^^1^1.61^1.73^2^1.51^1.81^~4~^~03/01/2010~ -~21473~^~323~^0.93^3^0.09^~1~^~A~^^^1^0.75^1.04^2^0.54^1.31^~4~^~03/01/2010~ -~21473~^~341~^0.08^3^0.00^~1~^~A~^^^1^0.08^0.08^2^0.08^0.08^~4~^~03/01/2010~ -~21473~^~342~^1.26^3^0.07^~1~^~A~^^^1^1.12^1.37^2^0.94^1.57^~4~^~03/01/2010~ -~21473~^~343~^0.37^3^0.01^~1~^~A~^^^1^0.34^0.39^2^0.30^0.42^~4~^~03/01/2010~ -~21473~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.02^0.07^~1, 4~^~03/01/2010~ -~21473~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21473~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~03/01/2010~ -~21473~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21473~^~418~^0.36^3^0.01^~1~^~A~^^^1^0.34^0.38^2^0.31^0.41^~4~^~03/01/2010~ -~21474~^~203~^12.80^5^0.13^~1~^~A~^^^1^12.56^13.31^4^12.42^13.17^~4~^~03/01/2010~ -~21474~^~204~^8.60^5^0.11^~1~^~A~^^^1^8.23^8.88^4^8.29^8.90^~4~^~03/01/2010~ -~21474~^~205~^31.78^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~207~^2.87^5^0.03^~1~^~A~^^^1^2.79^3.00^4^2.77^2.97^~4~^~03/01/2010~ -~21474~^~209~^24.72^5^0.52^~1~^~A~^^^1^23.60^26.50^4^23.27^26.16^~4~^~03/01/2010~ -~21474~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21474~^~211~^1.70^5^0.14^~1~^~A~^^^1^1.14^1.96^4^1.29^2.11^~4~^~03/01/2010~ -~21474~^~212~^2.36^5^0.04^~1~^~A~^^^1^2.24^2.47^4^2.24^2.47^~4~^~03/01/2010~ -~21474~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21474~^~214~^0.70^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21474~^~255~^43.95^5^0.46^~1~^~A~^^^1^42.27^44.73^4^42.67^45.22^~4~^~03/01/2010~ -~21474~^~269~^5.00^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21474~^~287~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21474~^~303~^0.77^5^0.02^~1~^~A~^^^1^0.73^0.84^4^0.71^0.82^~4~^~03/01/2010~ -~21474~^~309~^1.56^5^8.0e-03^~1~^~A~^^^1^1.53^1.57^4^1.53^1.58^~4~^~03/01/2010~ -~21474~^~323~^0.89^5^0.02^~1~^~A~^^^1^0.85^0.97^4^0.83^0.95^~4~^~03/01/2010~ -~21474~^~341~^0.11^5^4.0e-03^~1~^~A~^^^1^0.11^0.13^4^0.10^0.12^~4~^~03/01/2010~ -~21474~^~342~^1.43^5^0.03^~1~^~A~^^^1^1.37^1.57^4^1.33^1.53^~4~^~03/01/2010~ -~21474~^~343~^0.26^5^0.01^~1~^~A~^^^1^0.23^0.29^4^0.23^0.28^~4~^~03/01/2010~ -~21474~^~344~^0.02^5^0.01^~1~^~A~^^^1^0.00^0.08^4^-0.02^0.06^~1, 4~^~03/01/2010~ -~21474~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21474~^~346~^0.01^5^6.0e-03^~1~^~A~^^^1^0.00^0.03^4^-8.0e-03^0.02^~1, 4~^~03/01/2010~ -~21474~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21474~^~418~^0.33^5^9.0e-03^~1~^~A~^^^1^0.30^0.35^4^0.30^0.35^~4~^~03/01/2010~ -~21475~^~203~^12.96^3^0.30^~1~^~A~^^^1^12.38^13.38^2^11.66^14.25^~4~^~03/01/2010~ -~21475~^~204~^9.91^3^0.18^~1~^~A~^^^1^9.54^10.13^2^9.11^10.70^~4~^~03/01/2010~ -~21475~^~205~^26.47^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~207~^2.51^3^0.05^~1~^~A~^^^1^2.41^2.57^2^2.29^2.73^~4~^~03/01/2010~ -~21475~^~209~^20.00^3^0.40^~1~^~A~^^^1^19.20^20.50^2^18.26^21.73^~4~^~03/01/2010~ -~21475~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21475~^~211~^1.16^3^0.09^~1~^~A~^^^1^0.99^1.30^2^0.77^1.55^~4~^~03/01/2010~ -~21475~^~212~^1.35^3^0.04^~1~^~A~^^^1^1.28^1.44^2^1.14^1.55^~4~^~03/01/2010~ -~21475~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21475~^~255~^48.15^3^0.23^~1~^~A~^^^1^47.71^48.51^2^47.14^49.16^~4~^~03/01/2010~ -~21475~^~303~^0.68^3^0.01^~1~^~A~^^^1^0.66^0.70^2^0.63^0.73^~4~^~03/01/2010~ -~21475~^~309~^1.80^3^0.01^~1~^~A~^^^1^1.77^1.82^2^1.73^1.85^~4~^~03/01/2010~ -~21475~^~323~^0.74^3^0.10^~1~^~A~^^^1^0.54^0.87^2^0.30^1.18^~4~^~03/01/2010~ -~21475~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.06^2^7.0e-03^0.09^~4~^~03/01/2010~ -~21475~^~342~^1.05^3^0.11^~1~^~A~^^^1^0.82^1.21^2^0.54^1.56^~4~^~03/01/2010~ -~21475~^~343~^0.30^3^0.01^~1~^~A~^^^1^0.27^0.33^2^0.22^0.37^~4~^~03/01/2010~ -~21475~^~344~^0.00^3^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.01^~1, 4~^~03/01/2010~ -~21475~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21475~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~03/01/2010~ -~21475~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21475~^~418~^0.62^3^0.02^~1~^~A~^^^1^0.58^0.66^2^0.52^0.71^~4~^~03/01/2010~ -~21476~^~203~^13.92^3^0.11^~1~^~A~^^^1^13.75^14.13^2^13.44^14.39^~4~^~03/01/2010~ -~21476~^~204~^11.71^3^0.08^~1~^~A~^^^1^11.61^11.87^2^11.36^12.05^~4~^~03/01/2010~ -~21476~^~205~^29.46^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~207~^3.04^3^0.04^~1~^~A~^^^1^2.98^3.14^2^2.83^3.25^~4~^~03/01/2010~ -~21476~^~209~^22.87^3^0.83^~1~^~A~^^^1^21.40^24.30^2^19.26^26.46^~4~^~03/01/2010~ -~21476~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21476~^~211~^1.78^3^0.11^~1~^~A~^^^1^1.58^1.98^2^1.28^2.27^~4~^~03/01/2010~ -~21476~^~212~^2.13^3^0.02^~1~^~A~^^^1^2.10^2.18^2^2.01^2.24^~4~^~03/01/2010~ -~21476~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21476~^~214~^1.31^2^^~1~^~A~^^^1^1.27^1.34^1^^^^~03/01/2010~ -~21476~^~255~^41.87^3^1.05^~1~^~A~^^^1^39.75^43.00^2^37.31^46.41^~4~^~03/01/2010~ -~21476~^~303~^2.30^3^0.08^~1~^~A~^^^1^2.15^2.43^2^1.94^2.64^~4~^~03/01/2010~ -~21476~^~309~^1.63^3^0.05^~1~^~A~^^^1^1.58^1.74^2^1.40^1.86^~4~^~03/01/2010~ -~21476~^~323~^0.72^3^0.17^~1~^~A~^^^1^0.45^1.05^2^-0.03^1.47^~4~^~03/01/2010~ -~21476~^~341~^0.06^3^0.01^~1~^~A~^^^1^0.03^0.09^2^-0.01^0.13^~4~^~03/01/2010~ -~21476~^~342~^0.91^3^0.28^~1~^~A~^^^1^0.48^1.45^2^-0.31^2.13^~4~^~03/01/2010~ -~21476~^~343~^0.30^3^0.07^~1~^~A~^^^1^0.18^0.45^2^-0.03^0.64^~4~^~03/01/2010~ -~21476~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.08^~1, 4~^~03/01/2010~ -~21476~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21476~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~03/01/2010~ -~21476~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2010~ -~21476~^~418~^0.55^3^0.05^~1~^~A~^^^1^0.50^0.65^2^0.33^0.76^~4~^~03/01/2010~ -~21477~^~203~^12.46^5^0.08^~1~^~A~^^^1^12.31^12.75^4^12.23^12.68^~4~^~03/01/2010~ -~21477~^~204~^10.11^5^0.19^~1~^~A~^^^1^9.57^10.78^4^9.56^10.64^~4~^~03/01/2010~ -~21477~^~205~^31.15^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~207~^2.97^5^0.03^~1~^~A~^^^1^2.86^3.05^4^2.88^3.05^~4~^~03/01/2010~ -~21477~^~209~^24.24^5^0.25^~1~^~A~^^^1^23.50^25.00^4^23.54^24.93^~4~^~03/01/2010~ -~21477~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21477~^~211~^1.97^5^0.04^~1~^~A~^^^1^1.83^2.10^4^1.84^2.10^~4~^~03/01/2010~ -~21477~^~212~^2.32^5^0.04^~1~^~A~^^^1^2.22^2.48^4^2.20^2.44^~4~^~03/01/2010~ -~21477~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21477~^~214~^0.60^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21477~^~255~^43.32^5^0.24^~1~^~A~^^^1^42.42^43.89^4^42.63^43.99^~4~^~03/01/2010~ -~21477~^~269~^5.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2010~ -~21477~^~287~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21477~^~303~^0.95^5^0.12^~1~^~A~^^^1^0.79^1.44^4^0.60^1.29^~4~^~03/01/2010~ -~21477~^~309~^1.45^5^7.0e-03^~1~^~A~^^^1^1.44^1.47^4^1.43^1.47^~4~^~03/01/2010~ -~21477~^~323~^0.88^5^0.07^~1~^~A~^^^1^0.70^1.13^4^0.66^1.08^~4~^~03/01/2010~ -~21477~^~341~^0.10^5^5.0e-03^~1~^~A~^^^1^0.09^0.12^4^0.09^0.11^~4~^~03/01/2010~ -~21477~^~342~^1.31^5^0.05^~1~^~A~^^^1^1.23^1.52^4^1.16^1.46^~4~^~03/01/2010~ -~21477~^~343~^0.25^5^0.01^~1~^~A~^^^1^0.22^0.28^4^0.21^0.28^~4~^~03/01/2010~ -~21477~^~344~^0.03^5^0.01^~1~^~A~^^^1^0.00^0.09^4^-0.02^0.08^~1, 4~^~03/01/2010~ -~21477~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21477~^~346~^0.01^5^8.0e-03^~1~^~A~^^^1^0.00^0.04^4^-0.01^0.03^~1, 4~^~03/01/2010~ -~21477~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^4^0.00^0.00^~1, 4~^~03/01/2010~ -~21477~^~418~^0.42^5^0.01^~1~^~A~^^^1^0.36^0.47^4^0.36^0.47^~4~^~03/01/2010~ -~21478~^~203~^13.22^4^0.14^~1~^~A~^^^1^12.81^13.44^3^12.77^13.66^~4~^~03/01/2010~ -~21478~^~204~^12.86^4^0.28^~1~^~A~^^^1^12.02^13.26^3^11.94^13.76^~4~^~03/01/2010~ -~21478~^~205~^28.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~207~^2.88^4^0.07^~1~^~A~^^^1^2.68^2.99^3^2.65^3.10^~4~^~03/01/2010~ -~21478~^~209~^22.33^3^0.85^~1~^~A~^^^1^21.20^24.00^2^18.67^25.99^~4~^~03/01/2010~ -~21478~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21478~^~211~^1.31^4^0.12^~1~^~A~^^^1^0.93^1.50^3^0.90^1.71^~4~^~03/01/2010~ -~21478~^~212~^1.35^4^0.06^~1~^~A~^^^1^1.16^1.44^3^1.14^1.55^~4~^~03/01/2010~ -~21478~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21478~^~214~^0.97^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21478~^~255~^42.38^4^0.30^~1~^~A~^^^1^41.64^43.14^3^41.40^43.35^~4~^~03/01/2010~ -~21478~^~303~^0.90^4^0.03^~1~^~A~^^^1^0.83^0.95^3^0.80^0.99^~4~^~03/01/2010~ -~21478~^~309~^1.64^4^0.02^~1~^~A~^^^1^1.58^1.67^3^1.56^1.70^~4~^~03/01/2010~ -~21478~^~323~^0.77^4^0.06^~1~^~A~^^^1^0.60^0.87^3^0.57^0.97^~4~^~03/01/2010~ -~21478~^~341~^0.06^4^5.0e-03^~1~^~A~^^^1^0.04^0.06^3^0.03^0.07^~4~^~03/01/2010~ -~21478~^~342~^0.99^4^0.06^~1~^~A~^^^1^0.90^1.17^3^0.80^1.18^~4~^~03/01/2010~ -~21478~^~343~^0.29^4^0.02^~1~^~A~^^^1^0.24^0.35^3^0.20^0.37^~4~^~03/01/2010~ -~21478~^~344~^0.00^4^3.0e-03^~1~^~A~^^^1^0.00^0.01^3^-5.0e-03^0.01^~1, 4~^~03/01/2010~ -~21478~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21478~^~346~^0.01^4^6.0e-03^~1~^~A~^^^1^0.00^0.02^3^-8.0e-03^0.02^~1, 4~^~03/01/2010~ -~21478~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21478~^~418~^0.55^4^0.03^~1~^~A~^^^1^0.47^0.64^3^0.42^0.67^~4~^~03/01/2010~ -~21479~^~203~^11.74^6^0.09^~1~^~A~^^^1^11.44^12.06^5^11.50^11.97^~4~^~03/01/2010~ -~21479~^~204~^10.68^6^0.18^~1~^~A~^^^1^10.23^11.44^5^10.19^11.15^~4~^~03/01/2010~ -~21479~^~205~^27.93^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~207~^2.85^6^0.03^~1~^~A~^^^1^2.71^2.93^5^2.76^2.93^~4~^~03/01/2010~ -~21479~^~209~^21.07^6^0.15^~1~^~A~^^^1^20.60^21.50^5^20.68^21.45^~4~^~03/01/2010~ -~21479~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~03/01/2010~ -~21479~^~211~^1.76^6^0.16^~1~^~A~^^^1^0.99^2.05^5^1.32^2.19^~4~^~03/01/2010~ -~21479~^~212~^2.15^6^0.06^~1~^~A~^^^1^1.90^2.30^5^1.98^2.31^~4~^~03/01/2010~ -~21479~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~03/01/2010~ -~21479~^~214~^0.60^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21479~^~255~^46.80^6^0.20^~1~^~A~^^^1^45.83^47.31^5^46.26^47.33^~4~^~03/01/2010~ -~21479~^~269~^4.71^0^^~4~^~NR~^^^^^^^^^^~03/01/2010~ -~21479~^~287~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21479~^~303~^1.01^6^0.05^~1~^~A~^^^1^0.91^1.25^5^0.87^1.14^~4~^~03/01/2010~ -~21479~^~309~^1.30^6^0.03^~1~^~A~^^^1^1.21^1.41^5^1.21^1.38^~4~^~03/01/2010~ -~21479~^~323~^0.89^6^0.04^~1~^~A~^^^1^0.74^1.04^5^0.77^1.00^~4~^~03/01/2010~ -~21479~^~341~^0.12^6^0.01^~1~^~A~^^^1^0.09^0.16^5^0.08^0.14^~4~^~03/01/2010~ -~21479~^~342~^1.28^6^0.03^~1~^~A~^^^1^1.17^1.38^5^1.18^1.36^~4~^~03/01/2010~ -~21479~^~343~^0.25^6^0.01^~1~^~A~^^^1^0.23^0.29^5^0.22^0.27^~4~^~03/01/2010~ -~21479~^~344~^0.05^6^0.01^~1~^~A~^^^1^0.00^0.07^5^0.02^0.07^~1, 4~^~03/01/2010~ -~21479~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~03/01/2010~ -~21479~^~346~^0.04^6^9.0e-03^~1~^~A~^^^1^0.00^0.06^5^0.01^0.05^~1, 4~^~03/01/2010~ -~21479~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~03/01/2010~ -~21479~^~418~^0.41^6^0.02^~1~^~A~^^^1^0.36^0.49^5^0.34^0.46^~4~^~03/01/2010~ -~21480~^~203~^11.41^4^0.23^~1~^~A~^^^1^11.00^12.00^3^10.66^12.15^~4~^~03/01/2010~ -~21480~^~204~^10.80^4^0.36^~1~^~A~^^^1^9.83^11.59^3^9.64^11.95^~4~^~03/01/2010~ -~21480~^~205~^28.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~207~^2.43^4^0.03^~1~^~A~^^^1^2.37^2.53^3^2.31^2.54^~4~^~03/01/2010~ -~21480~^~209~^21.43^4^0.59^~1~^~A~^^^1^20.40^23.00^3^19.52^23.32^~4~^~03/01/2010~ -~21480~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21480~^~211~^1.38^4^0.07^~1~^~A~^^^1^1.20^1.53^3^1.15^1.60^~4~^~03/01/2010~ -~21480~^~212~^1.57^4^0.03^~1~^~A~^^^1^1.48^1.64^3^1.46^1.67^~4~^~03/01/2010~ -~21480~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21480~^~255~^47.31^4^0.44^~1~^~A~^^^1^46.29^48.45^3^45.88^48.73^~4~^~03/01/2010~ -~21480~^~303~^0.92^4^0.01^~1~^~A~^^^1^0.89^0.94^3^0.88^0.96^~4~^~03/01/2010~ -~21480~^~309~^1.40^4^0.03^~1~^~A~^^^1^1.36^1.49^3^1.30^1.49^~4~^~03/01/2010~ -~21480~^~323~^0.82^4^0.13^~1~^~A~^^^1^0.56^1.17^3^0.37^1.25^~4~^~03/01/2010~ -~21480~^~341~^0.07^4^8.0e-03^~1~^~A~^^^1^0.06^0.09^3^0.04^0.09^~4~^~03/01/2010~ -~21480~^~342~^1.09^4^0.12^~1~^~A~^^^1^0.81^1.36^3^0.70^1.47^~4~^~03/01/2010~ -~21480~^~343~^0.32^4^0.03^~1~^~A~^^^1^0.23^0.38^3^0.20^0.43^~4~^~03/01/2010~ -~21480~^~344~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.02^0.07^~1, 4~^~03/01/2010~ -~21480~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21480~^~346~^0.01^4^8.0e-03^~1~^~A~^^^1^0.00^0.03^3^-0.01^0.03^~1, 4~^~03/01/2010~ -~21480~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~03/01/2010~ -~21480~^~418~^0.48^4^0.03^~1~^~A~^^^1^0.40^0.53^3^0.38^0.57^~4~^~03/01/2010~ -~21482~^~203~^11.06^12^0.12^~1~^~A~^^^1^10.50^11.70^11^10.79^11.32^~4~^~02/01/2011~ -~21482~^~204~^12.94^12^0.33^~1~^~A~^^^1^11.20^15.10^11^12.21^13.67^~4~^~02/01/2011~ -~21482~^~205~^30.36^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~207~^2.41^12^0.09^~1~^~A~^^^1^1.79^2.85^11^2.21^2.61^~4~^~02/01/2011~ -~21482~^~209~^24.10^6^0.42^~1~^~A~^^^1^22.30^25.10^5^23.02^25.18^~4~^~02/01/2011~ -~21482~^~210~^0.15^6^0.06^~1~^~A~^^^1^0.00^0.30^5^-0.02^0.32^~1, 4~^~02/01/2011~ -~21482~^~211~^0.42^6^0.04^~1~^~A~^^^1^0.30^0.50^5^0.31^0.52^~4~^~02/01/2011~ -~21482~^~212~^0.60^6^0.10^~1~^~A~^^^1^0.30^0.90^5^0.32^0.87^~4~^~02/01/2011~ -~21482~^~213~^0.50^6^0.08^~1~^~A~^^^1^0.20^0.80^5^0.27^0.73^~4~^~02/01/2011~ -~21482~^~214~^1.07^6^0.17^~1~^~A~^^^1^0.50^1.50^5^0.60^1.52^~4~^~02/01/2011~ -~21482~^~255~^43.22^12^0.65^~1~^~A~^^^1^39.80^47.80^11^41.79^44.66^~4~^~02/01/2011~ -~21482~^~269~^2.82^6^0.46^~1~^~A~^^^1^1.50^4.07^5^1.62^4.00^~4~^~02/01/2011~ -~21482~^~287~^0.08^6^6.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.06^0.09^~1, 4~^~02/01/2011~ -~21482~^~303~^2.45^12^0.04^~1~^~A~^^^1^2.26^2.84^11^2.34^2.55^~4~^~02/01/2011~ -~21482~^~309~^1.26^12^0.01^~1~^~A~^^^1^1.17^1.34^11^1.21^1.29^~4~^~02/01/2011~ -~21482~^~323~^0.90^0^^~4~^~BFFN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~418~^0.49^2^^~1~^~A~^^^1^0.48^0.50^1^^^^~02/01/2011~ -~21482~^~573~^0.00^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21482~^~578~^0.00^0^^~4~^~BFNN~^~21303~^^^^^^^^^~02/01/2011~ -~21483~^~203~^13.36^12^0.27^~1~^~A~^^^1^12.20^15.50^11^12.76^13.95^~4~^~02/01/2011~ -~21483~^~204~^17.71^12^0.42^~1~^~A~^^^1^15.70^21.00^11^16.76^18.65^~4~^~02/01/2011~ -~21483~^~205~^27.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~207~^3.10^12^0.05^~1~^~A~^^^1^2.63^3.38^11^2.97^3.22^~4~^~02/01/2011~ -~21483~^~209~^21.17^6^1.52^~1~^~A~^^^1^17.30^26.70^5^17.23^25.09^~4~^~02/01/2011~ -~21483~^~210~^0.30^6^0.12^~1~^~A~^^^1^0.00^0.60^5^-0.01^0.61^~1, 4~^~02/01/2011~ -~21483~^~211~^0.65^6^0.05^~1~^~A~^^^1^0.50^0.80^5^0.50^0.79^~4~^~02/01/2011~ -~21483~^~212~^0.82^6^0.04^~1~^~A~^^^1^0.70^0.90^5^0.71^0.92^~4~^~02/01/2011~ -~21483~^~213~^0.47^6^0.09^~1~^~A~^^^1^0.20^0.80^5^0.21^0.72^~4~^~02/01/2011~ -~21483~^~214~^0.68^6^0.06^~1~^~A~^^^1^0.50^0.90^5^0.52^0.83^~4~^~02/01/2011~ -~21483~^~255~^38.83^12^0.79^~1~^~A~^^^1^35.00^44.90^11^37.07^40.59^~4~^~02/01/2011~ -~21483~^~269~^3.02^6^0.18^~1~^~A~^^^1^2.40^3.57^5^2.53^3.50^~4~^~02/01/2011~ -~21483~^~287~^0.10^6^0.02^~1~^~A~^^^1^0.07^0.20^5^0.05^0.15^~1, 4~^~02/01/2011~ -~21483~^~303~^1.73^12^0.20^~1~^~A~^^^1^0.89^2.50^11^1.28^2.16^~4~^~02/01/2011~ -~21483~^~309~^1.51^12^0.02^~1~^~A~^^^1^1.40^1.65^11^1.45^1.56^~4~^~02/01/2011~ -~21483~^~323~^1.30^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~418~^0.58^2^^~1~^~A~^^^1^0.49^0.66^1^^^^~02/01/2011~ -~21483~^~573~^0.00^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21483~^~578~^0.00^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~203~^11.50^12^0.16^~1~^~A~^^^1^10.60^12.60^11^11.13^11.86^~4~^~02/01/2011~ -~21484~^~204~^12.35^12^0.39^~1~^~A~^^^1^10.50^14.50^11^11.47^13.22^~4~^~02/01/2011~ -~21484~^~205~^30.62^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~207~^2.47^12^0.06^~1~^~A~^^^1^1.99^2.95^11^2.32^2.62^~4~^~02/01/2011~ -~21484~^~209~^23.90^6^0.71^~1~^~A~^^^1^22.20^26.30^5^22.07^25.72^~4~^~02/01/2011~ -~21484~^~210~^0.20^6^0.08^~1~^~A~^^^1^0.00^0.40^5^-0.03^0.43^~1, 4~^~02/01/2011~ -~21484~^~211~^0.80^6^0.12^~1~^~A~^^^1^0.40^1.20^5^0.47^1.12^~4~^~02/01/2011~ -~21484~^~212~^1.00^6^0.07^~1~^~A~^^^1^0.70^1.20^5^0.81^1.18^~4~^~02/01/2011~ -~21484~^~213~^0.30^6^0.03^~1~^~A~^^^1^0.20^0.40^5^0.20^0.39^~4~^~02/01/2011~ -~21484~^~214~^0.93^6^0.05^~1~^~A~^^^1^0.80^1.20^5^0.79^1.07^~4~^~02/01/2011~ -~21484~^~255~^43.06^12^0.43^~1~^~A~^^^1^41.00^45.90^11^42.10^44.00^~4~^~02/01/2011~ -~21484~^~269~^3.32^6^0.27^~1~^~A~^^^1^2.60^4.17^5^2.61^4.02^~4~^~02/01/2011~ -~21484~^~287~^0.09^6^6.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.07^0.10^~1, 4~^~02/01/2011~ -~21484~^~303~^2.41^12^0.04^~1~^~A~^^^1^2.06^2.67^11^2.30^2.51^~4~^~02/01/2011~ -~21484~^~309~^1.32^12^0.03^~1~^~A~^^^1^1.08^1.46^11^1.24^1.39^~4~^~02/01/2011~ -~21484~^~323~^0.91^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~418~^0.48^2^^~1~^~A~^^^1^0.48^0.49^1^^^^~02/01/2011~ -~21484~^~573~^0.00^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21484~^~578~^0.00^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~203~^14.01^12^0.15^~1~^~A~^^^1^12.90^14.80^11^13.67^14.34^~4~^~02/01/2011~ -~21485~^~204~^17.61^12^0.52^~1~^~A~^^^1^14.50^20.40^11^16.46^18.75^~4~^~02/01/2011~ -~21485~^~205~^29.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~207~^3.33^12^0.06^~1~^~A~^^^1^3.03^3.70^11^3.19^3.47^~4~^~02/01/2011~ -~21485~^~209~^21.80^6^1.82^~1~^~A~^^^1^16.40^26.80^5^17.10^26.49^~4~^~02/01/2011~ -~21485~^~210~^0.32^6^0.14^~1~^~A~^^^1^0.00^0.70^5^-0.04^0.68^~1, 4~^~02/01/2011~ -~21485~^~211~^0.68^6^0.07^~1~^~A~^^^1^0.50^0.90^5^0.50^0.86^~4~^~02/01/2011~ -~21485~^~212~^0.92^6^0.04^~1~^~A~^^^1^0.80^1.10^5^0.81^1.02^~4~^~02/01/2011~ -~21485~^~213~^0.48^6^0.06^~1~^~A~^^^1^0.20^0.60^5^0.31^0.65^~4~^~02/01/2011~ -~21485~^~214~^0.72^6^0.07^~1~^~A~^^^1^0.50^0.90^5^0.52^0.90^~4~^~02/01/2011~ -~21485~^~255~^36.05^12^1.02^~1~^~A~^^^1^32.70^42.20^11^33.79^38.30^~4~^~02/01/2011~ -~21485~^~269~^3.22^6^0.20^~1~^~A~^^^1^2.70^3.87^5^2.70^3.73^~4~^~02/01/2011~ -~21485~^~287~^0.10^6^0.02^~1~^~A~^^^1^0.07^0.20^5^0.05^0.15^~1, 4~^~02/01/2011~ -~21485~^~303~^1.95^12^0.25^~1~^~A~^^^1^1.02^2.89^11^1.40^2.50^~4~^~02/01/2011~ -~21485~^~309~^1.64^12^0.02^~1~^~A~^^^1^1.45^1.77^11^1.58^1.69^~4~^~02/01/2011~ -~21485~^~323~^1.29^0^^~4~^~BFFN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~418~^0.76^2^^~1~^~A~^^^1^0.71^0.81^1^^^^~02/01/2011~ -~21485~^~573~^0.00^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21485~^~578~^0.00^0^^~4~^~BFNN~^~21302~^^^^^^^^^~02/01/2011~ -~21486~^~203~^9.25^6^0.27^~1~^~A~^^^1^8.33^10.10^5^8.53^9.96^~2, 3~^~03/01/2011~ -~21486~^~204~^9.75^6^0.40^~1~^~A~^^^1^8.60^11.20^5^8.71^10.78^~2, 3~^~03/01/2011~ -~21486~^~205~^20.23^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~207~^1.99^6^0.05^~1~^~A~^^^1^1.80^2.21^5^1.84^2.13^~2, 3~^~03/01/2011~ -~21486~^~209~^13.78^6^0.39^~1~^~A~^^^1^12.10^14.80^5^12.76^14.80^~2, 3~^~03/01/2011~ -~21486~^~210~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~03/01/2011~ -~21486~^~211~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~03/01/2011~ -~21486~^~212~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~03/01/2011~ -~21486~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21486~^~214~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~03/01/2011~ -~21486~^~255~^58.78^6^0.84^~1~^~A~^^^1^57.10^62.30^5^56.61^60.95^~2, 3~^~03/01/2011~ -~21486~^~269~^1.57^3^0.08^~1~^~A~^^^1^1.40^1.70^2^1.18^1.94^~2, 3~^~03/01/2011~ -~21486~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21486~^~303~^1.67^6^0.07^~1~^~A~^^^1^1.32^1.83^5^1.47^1.86^~2, 3~^~03/01/2011~ -~21486~^~309~^1.37^6^0.03^~1~^~A~^^^1^1.24^1.46^5^1.27^1.46^~2, 3~^~03/01/2011~ -~21486~^~323~^0.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~418~^0.84^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21486~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21486~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~203~^13.30^6^0.19^~1~^~A~^^^1^12.70^14.00^5^12.79^13.81^~2, 3~^~03/01/2011~ -~21487~^~204~^6.35^6^0.19^~1~^~A~^^^1^5.50^6.70^5^5.85^6.84^~2, 3~^~03/01/2011~ -~21487~^~205~^19.69^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~207~^2.25^6^0.06^~1~^~A~^^^1^2.00^2.41^5^2.08^2.40^~2, 3~^~03/01/2011~ -~21487~^~209~^13.93^6^0.67^~1~^~A~^^^1^11.30^15.60^5^12.19^15.67^~2, 3~^~03/01/2011~ -~21487~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~211~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~03/01/2011~ -~21487~^~212~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~2, 3~^~03/01/2011~ -~21487~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~214~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~03/01/2011~ -~21487~^~255~^58.42^6^0.42^~1~^~A~^^^1^56.90^59.50^5^57.33^59.49^~2, 3~^~03/01/2011~ -~21487~^~269~^1.30^3^0.05^~1~^~A~^^^1^1.20^1.40^2^1.05^1.54^~2, 3~^~03/01/2011~ -~21487~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~303~^1.59^6^0.08^~1~^~A~^^^1^1.22^1.77^5^1.37^1.80^~2, 3~^~03/01/2011~ -~21487~^~309~^0.76^6^0.01^~1~^~A~^^^1^0.72^0.79^5^0.73^0.79^~2, 3~^~03/01/2011~ -~21487~^~323~^0.21^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~418~^0.12^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21487~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21487~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~21488~^~203~^15.05^6^0.25^~1~^~A~^^^1^14.50^16.20^5^14.40^15.69^~4~^~03/01/2011~ -~21488~^~204~^15.25^6^0.36^~1~^~A~^^^1^14.40^16.90^5^14.30^16.19^~4~^~03/01/2011~ -~21488~^~205~^24.04^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~207~^3.05^6^0.06^~1~^~A~^^^1^2.86^3.23^5^2.88^3.20^~4~^~03/01/2011~ -~21488~^~209~^17.10^6^0.99^~1~^~A~^^^1^12.40^18.80^5^14.53^19.66^~4~^~03/01/2011~ -~21488~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~03/01/2011~ -~21488~^~211~^0.43^3^0.06^~1~^~A~^^^1^0.30^0.50^2^0.14^0.72^~4~^~03/01/2011~ -~21488~^~212~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~4~^~03/01/2011~ -~21488~^~213~^0.53^3^0.21^~1~^~A~^^^1^0.10^0.80^2^-0.40^1.47^~4~^~03/01/2011~ -~21488~^~214~^0.43^3^0.08^~1~^~A~^^^1^0.30^0.60^2^0.05^0.81^~4~^~03/01/2011~ -~21488~^~255~^42.62^6^0.25^~1~^~A~^^^1^41.90^43.60^5^41.95^43.27^~4~^~03/01/2011~ -~21488~^~269~^1.88^3^0.36^~1~^~A~^^^1^1.17^2.37^2^0.32^3.44^~4~^~03/01/2011~ -~21488~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~03/01/2011~ -~21488~^~303~^1.77^6^0.04^~1~^~A~^^^1^1.63^1.91^5^1.65^1.89^~4~^~03/01/2011~ -~21488~^~309~^1.42^6^0.05^~1~^~A~^^^1^1.22^1.54^5^1.28^1.55^~4~^~03/01/2011~ -~21488~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~418~^0.19^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21488~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21488~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~21490~^~203~^17.34^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~204~^4.57^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~205~^16.78^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~207~^1.29^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~255~^60.44^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~269~^3.08^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~303~^1.58^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~309~^0.75^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~323~^0.38^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~418~^0.22^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~573~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~578~^0.00^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21491~^~203~^14.13^6^0.17^~1~^~A~^^^1^13.40^14.60^5^13.68^14.58^~4~^~02/01/2011~ -~21491~^~204~^16.17^6^0.42^~1~^~A~^^^1^14.50^17.40^5^15.06^17.26^~4~^~02/01/2011~ -~21491~^~205~^32.66^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~207~^3.48^6^0.07^~1~^~A~^^^1^3.18^3.70^5^3.27^3.68^~4~^~02/01/2011~ -~21491~^~209~^25.63^3^0.69^~1~^~A~^^^1^24.40^26.80^2^22.64^28.61^~4~^~02/01/2011~ -~21491~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21491~^~211~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~4~^~02/01/2011~ -~21491~^~212~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~4~^~02/01/2011~ -~21491~^~213~^0.40^3^0.11^~1~^~A~^^^1^0.20^0.60^2^-0.09^0.89^~4~^~02/01/2011~ -~21491~^~214~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~4~^~02/01/2011~ -~21491~^~255~^33.57^6^0.40^~1~^~A~^^^1^32.70^35.40^5^32.53^34.59^~4~^~02/01/2011~ -~21491~^~269~^2.79^3^0.05^~1~^~A~^^^1^2.70^2.87^2^2.57^3.00^~4~^~02/01/2011~ -~21491~^~287~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.20^2^-0.04^0.29^~1, 4~^~02/01/2011~ -~21491~^~303~^2.78^6^0.02^~1~^~A~^^^1^2.71^2.89^5^2.71^2.84^~4~^~02/01/2011~ -~21491~^~309~^1.63^6^0.04^~1~^~A~^^^1^1.45^1.74^5^1.51^1.73^~4~^~02/01/2011~ -~21491~^~418~^0.71^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~203~^13.88^6^0.25^~1~^~A~^^^1^12.90^14.80^5^13.22^14.54^~4~^~02/01/2011~ -~21492~^~204~^19.05^6^0.42^~1~^~A~^^^1^17.90^20.40^5^17.95^20.15^~4~^~02/01/2011~ -~21492~^~205~^25.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~207~^3.19^6^0.05^~1~^~A~^^^1^3.03^3.37^5^3.05^3.32^~4~^~02/01/2011~ -~21492~^~209~^17.97^3^1.23^~1~^~A~^^^1^16.40^20.40^2^12.66^23.27^~4~^~02/01/2011~ -~21492~^~210~^0.63^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.49^0.77^~4~^~02/01/2011~ -~21492~^~211~^0.83^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.69^0.97^~4~^~02/01/2011~ -~21492~^~212~^0.97^3^0.06^~1~^~A~^^^1^0.90^1.10^2^0.68^1.25^~4~^~02/01/2011~ -~21492~^~213~^0.57^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.42^0.71^~4~^~02/01/2011~ -~21492~^~214~^0.57^3^0.06^~1~^~A~^^^1^0.50^0.70^2^0.28^0.85^~4~^~02/01/2011~ -~21492~^~255~^38.53^6^1.40^~1~^~A~^^^1^34.00^42.20^5^34.92^42.14^~4~^~02/01/2011~ -~21492~^~269~^3.65^3^0.11^~1~^~A~^^^1^3.47^3.87^2^3.14^4.15^~4~^~02/01/2011~ -~21492~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21492~^~303~^1.13^6^0.03^~1~^~A~^^^1^1.02^1.24^5^1.03^1.22^~4~^~02/01/2011~ -~21492~^~309~^1.65^6^0.03^~1~^~A~^^^1^1.58^1.77^5^1.57^1.72^~4~^~02/01/2011~ -~21492~^~418~^0.81^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~203~^12.77^6^0.19^~1~^~A~^^^1^12.20^13.50^5^12.25^13.27^~4~^~02/01/2011~ -~21493~^~204~^18.52^6^0.58^~1~^~A~^^^1^17.00^21.00^5^17.00^20.02^~4~^~02/01/2011~ -~21493~^~205~^25.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~207~^3.03^6^0.08^~1~^~A~^^^1^2.63^3.21^5^2.81^3.25^~4~^~02/01/2011~ -~21493~^~209~^18.03^3^0.59^~1~^~A~^^^1^17.30^19.20^2^15.49^20.57^~4~^~02/01/2011~ -~21493~^~210~^0.57^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.42^0.71^~4~^~02/01/2011~ -~21493~^~211~^0.77^3^0.03^~1~^~A~^^^1^0.70^0.80^2^0.62^0.91^~4~^~02/01/2011~ -~21493~^~212~^0.83^3^0.06^~1~^~A~^^^1^0.70^0.90^2^0.54^1.12^~4~^~02/01/2011~ -~21493~^~213~^0.60^3^0.15^~1~^~A~^^^1^0.30^0.80^2^-0.05^1.25^~4~^~02/01/2011~ -~21493~^~214~^0.57^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.42^0.71^~4~^~02/01/2011~ -~21493~^~255~^40.38^6^1.25^~1~^~A~^^^1^37.20^44.90^5^37.16^43.60^~4~^~02/01/2011~ -~21493~^~269~^3.42^3^0.08^~1~^~A~^^^1^3.30^3.57^2^3.06^3.76^~4~^~02/01/2011~ -~21493~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21493~^~303~^1.07^6^0.04^~1~^~A~^^^1^0.89^1.20^5^0.95^1.17^~4~^~02/01/2011~ -~21493~^~309~^1.48^6^0.02^~1~^~A~^^^1^1.42^1.58^5^1.41^1.54^~4~^~02/01/2011~ -~21493~^~418~^0.66^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~203~^11.08^6^0.14^~1~^~A~^^^1^10.60^11.60^5^10.71^11.44^~4~^~02/01/2011~ -~21494~^~204~^11.20^6^0.35^~1~^~A~^^^1^10.50^12.90^5^10.28^12.11^~4~^~02/01/2011~ -~21494~^~205~^31.84^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~207~^2.32^6^0.07^~1~^~A~^^^1^1.99^2.52^5^2.13^2.51^~4~^~02/01/2011~ -~21494~^~209~^23.83^3^1.01^~1~^~A~^^^1^22.20^25.70^2^19.45^28.20^~4~^~02/01/2011~ -~21494~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~02/01/2011~ -~21494~^~211~^1.07^3^0.06^~1~^~A~^^^1^1.00^1.20^2^0.78^1.35^~4~^~02/01/2011~ -~21494~^~212~^1.13^3^0.03^~1~^~A~^^^1^1.10^1.20^2^0.99^1.27^~4~^~02/01/2011~ -~21494~^~213~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~02/01/2011~ -~21494~^~214~^0.87^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.72^1.01^~4~^~02/01/2011~ -~21494~^~255~^43.55^6^0.75^~1~^~A~^^^1^41.30^45.90^5^41.60^45.49^~4~^~02/01/2011~ -~21494~^~269~^3.92^3^0.12^~1~^~A~^^^1^3.77^4.17^2^3.36^4.47^~4~^~02/01/2011~ -~21494~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21494~^~303~^2.36^6^0.07^~1~^~A~^^^1^2.06^2.58^5^2.16^2.55^~4~^~02/01/2011~ -~21494~^~309~^1.24^6^0.03^~1~^~A~^^^1^1.08^1.33^5^1.14^1.33^~4~^~02/01/2011~ -~21494~^~418~^0.48^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~203~^11.03^6^0.18^~1~^~A~^^^1^10.60^11.60^5^10.56^11.50^~4~^~02/01/2011~ -~21495~^~204~^12.03^6^0.24^~1~^~A~^^^1^11.20^12.80^5^11.41^12.65^~4~^~02/01/2011~ -~21495~^~205~^31.17^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~207~^2.65^6^0.07^~1~^~A~^^^1^2.40^2.85^5^2.45^2.84^~4~^~02/01/2011~ -~21495~^~209~^24.73^3^0.27^~1~^~A~^^^1^24.20^25.10^2^23.55^25.90^~4~^~02/01/2011~ -~21495~^~210~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^2^0.30^0.30^~4~^~02/01/2011~ -~21495~^~211~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^2^0.50^0.50^~4~^~02/01/2011~ -~21495~^~212~^0.83^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.69^0.97^~4~^~02/01/2011~ -~21495~^~213~^0.67^3^0.08^~1~^~A~^^^1^0.50^0.80^2^0.28^1.04^~4~^~02/01/2011~ -~21495~^~214~^1.43^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.29^1.57^~4~^~02/01/2011~ -~21495~^~255~^43.12^6^1.28^~1~^~A~^^^1^39.80^47.80^5^39.80^46.42^~4~^~02/01/2011~ -~21495~^~269~^3.82^3^0.13^~1~^~A~^^^1^3.60^4.07^2^3.22^4.41^~4~^~02/01/2011~ -~21495~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21495~^~303~^2.50^6^0.08^~1~^~A~^^^1^2.26^2.84^5^2.28^2.72^~4~^~02/01/2011~ -~21495~^~309~^1.27^6^0.02^~1~^~A~^^^1^1.20^1.34^5^1.20^1.33^~4~^~02/01/2011~ -~21495~^~418~^0.50^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~203~^13.95^6^0.38^~1~^~A~^^^1^12.60^15.50^5^12.96^14.93^~4~^~02/01/2011~ -~21496~^~204~^16.90^6^0.44^~1~^~A~^^^1^15.70^18.70^5^15.74^18.05^~4~^~02/01/2011~ -~21496~^~205~^28.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~207~^3.16^6^0.07^~1~^~A~^^^1^2.86^3.38^5^2.97^3.35^~4~^~02/01/2011~ -~21496~^~209~^24.30^3^1.23^~1~^~A~^^^1^22.60^26.70^2^18.99^29.61^~4~^~02/01/2011~ -~21496~^~210~^0.03^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.11^0.17^~1, 4~^~02/01/2011~ -~21496~^~211~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~4~^~02/01/2011~ -~21496~^~212~^0.80^3^0.05^~1~^~A~^^^1^0.70^0.90^2^0.55^1.04^~4~^~02/01/2011~ -~21496~^~213~^0.33^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.04^0.71^~4~^~02/01/2011~ -~21496~^~214~^0.80^3^0.05^~1~^~A~^^^1^0.70^0.90^2^0.55^1.04^~4~^~02/01/2011~ -~21496~^~255~^37.28^6^0.52^~1~^~A~^^^1^35.00^39.00^5^35.93^38.63^~4~^~02/01/2011~ -~21496~^~269~^2.62^3^0.11^~1~^~A~^^^1^2.40^2.77^2^2.13^3.11^~4~^~02/01/2011~ -~21496~^~287~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.20^2^-0.04^0.29^~1, 4~^~02/01/2011~ -~21496~^~303~^2.38^6^0.03^~1~^~A~^^^1^2.24^2.50^5^2.28^2.48^~4~^~02/01/2011~ -~21496~^~309~^1.54^6^0.04^~1~^~A~^^^1^1.40^1.65^5^1.43^1.65^~4~^~02/01/2011~ -~21496~^~418~^0.49^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~203~^11.92^6^0.17^~1~^~A~^^^1^11.30^12.60^5^11.46^12.37^~4~^~02/01/2011~ -~21497~^~204~^13.50^6^0.20^~1~^~A~^^^1^13.10^14.50^5^12.96^14.03^~4~^~02/01/2011~ -~21497~^~205~^29.39^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~207~^2.62^6^0.07^~1~^~A~^^^1^2.46^2.95^5^2.42^2.82^~4~^~02/01/2011~ -~21497~^~209~^23.97^3^1.21^~1~^~A~^^^1^22.20^26.30^2^18.73^29.20^~4~^~02/01/2011~ -~21497~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21497~^~211~^0.53^3^0.06^~1~^~A~^^^1^0.40^0.60^2^0.24^0.82^~4~^~02/01/2011~ -~21497~^~212~^0.87^3^0.08^~1~^~A~^^^1^0.70^1.00^2^0.48^1.24^~4~^~02/01/2011~ -~21497~^~213~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~4~^~02/01/2011~ -~21497~^~214~^1.00^3^0.10^~1~^~A~^^^1^0.90^1.20^2^0.57^1.43^~4~^~02/01/2011~ -~21497~^~255~^42.57^6^0.38^~1~^~A~^^^1^41.00^43.80^5^41.57^43.55^~4~^~02/01/2011~ -~21497~^~269~^2.72^3^0.08^~1~^~A~^^^1^2.60^2.87^2^2.38^3.06^~4~^~02/01/2011~ -~21497~^~287~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 4~^~02/01/2011~ -~21497~^~303~^2.45^6^0.06^~1~^~A~^^^1^2.28^2.67^5^2.29^2.60^~4~^~02/01/2011~ -~21497~^~309~^1.40^6^0.02^~1~^~A~^^^1^1.28^1.46^5^1.32^1.46^~4~^~02/01/2011~ -~21497~^~418~^0.49^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~203~^11.08^6^0.17^~1~^~A~^^^1^10.50^11.70^5^10.63^11.53^~4~^~02/01/2011~ -~21498~^~204~^13.85^6^0.31^~1~^~A~^^^1^13.00^15.10^5^13.04^14.65^~4~^~02/01/2011~ -~21498~^~205~^29.56^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~207~^2.18^6^0.09^~1~^~A~^^^1^1.79^2.41^5^1.93^2.41^~4~^~02/01/2011~ -~21498~^~209~^23.47^3^0.63^~1~^~A~^^^1^22.30^24.50^2^20.71^26.21^~4~^~02/01/2011~ -~21498~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2011~ -~21498~^~211~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~02/01/2011~ -~21498~^~212~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~4~^~02/01/2011~ -~21498~^~213~^0.33^3^0.06^~1~^~A~^^^1^0.20^0.40^2^0.04^0.62^~4~^~02/01/2011~ -~21498~^~214~^0.70^3^0.15^~1~^~A~^^^1^0.50^1.00^2^0.04^1.35^~4~^~02/01/2011~ -~21498~^~255~^43.33^6^0.45^~1~^~A~^^^1^42.00^44.90^5^42.15^44.50^~4~^~02/01/2011~ -~21498~^~269~^1.82^3^0.23^~1~^~A~^^^1^1.50^2.27^2^0.80^2.82^~4~^~02/01/2011~ -~21498~^~287~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 4~^~02/01/2011~ -~21498~^~303~^2.39^6^0.02^~1~^~A~^^^1^2.32^2.47^5^2.34^2.44^~4~^~02/01/2011~ -~21498~^~309~^1.25^6^0.02^~1~^~A~^^^1^1.17^1.34^5^1.17^1.32^~4~^~02/01/2011~ -~21498~^~418~^0.48^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21505~^~203~^11.91^12^0.08^~1~^~A~^^^1^10.94^13.38^9^11.71^12.11^~2, 3~^~06/01/2014~ -~21505~^~204~^11.07^12^0.12^~1~^~A~^^^1^10.50^11.80^6^10.76^11.38^~2, 3~^~06/01/2014~ -~21505~^~205~^28.80^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~207~^2.21^12^0.01^~1~^~A~^^^1^2.07^2.42^9^2.17^2.24^~2, 3~^~06/01/2014~ -~21505~^~210~^0.10^6^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~05/01/2012~ -~21505~^~211~^0.88^6^0.02^~1~^~A~^^^1^0.80^1.00^4^0.81^0.95^~2, 3~^~06/01/2014~ -~21505~^~212~^1.25^6^0.02^~1~^~A~^^^1^1.20^1.39^4^1.17^1.32^~2, 3~^~06/01/2014~ -~21505~^~213~^0.38^6^0.03^~1~^~A~^^^1^0.10^0.60^2^0.23^0.52^~2, 3~^~06/01/2014~ -~21505~^~214~^0.85^6^0.02^~1~^~A~^^^1^0.80^1.00^4^0.77^0.93^~2, 3~^~06/01/2014~ -~21505~^~255~^46.01^12^0.15^~1~^~A~^^^1^44.50^47.70^5^45.61^46.39^~2, 3~^~06/01/2014~ -~21505~^~269~^3.71^6^0.03^~1~^~A~^^^1^3.59^3.79^3^3.58^3.83^~2, 3~^~06/01/2014~ -~21505~^~287~^0.24^6^0.02^~1~^~A~^^^1^0.10^0.40^3^0.16^0.31^~2, 3~^~06/01/2014~ -~21505~^~303~^2.14^12^0.09^~1~^~A~^^^1^1.77^2.63^8^1.92^2.34^~2, 3~^~06/01/2014~ -~21505~^~309~^1.49^12^0.02^~1~^~A~^^^1^1.28^1.86^9^1.42^1.55^~2, 3~^~06/01/2014~ -~21505~^~323~^0.74^3^0.10^~1~^~A~^^^1^0.54^0.87^2^0.30^1.18^~4~^~01/01/2013~ -~21505~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.03^0.06^2^7.0e-03^0.09^~4~^~06/01/2014~ -~21505~^~342~^1.05^3^0.11^~1~^~A~^^^1^0.82^1.21^2^0.54^1.56^~4~^~06/01/2014~ -~21505~^~343~^0.30^3^0.01^~1~^~A~^^^1^0.27^0.33^2^0.22^0.37^~4~^~06/01/2014~ -~21505~^~344~^0.00^3^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.01^~1, 4~^~06/01/2014~ -~21505~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~06/01/2014~ -~21505~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~06/01/2014~ -~21505~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~06/01/2014~ -~21505~^~418~^0.62^3^0.02^~1~^~A~^^^1^0.58^0.66^2^0.52^0.71^~4~^~01/01/2013~ -~21505~^~573~^0.00^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21505~^~578~^0.00^0^^~4~^~BFZN~^~21301~^^^^^^^^^~01/01/2013~ -~21506~^~203~^16.83^6^0.19^~1~^~A~^^^1^16.12^17.37^5^16.32^17.33^~4~^~07/01/2012~ -~21506~^~204~^16.13^6^0.29^~1~^~A~^^^1^15.35^17.11^5^15.37^16.89^~4~^~07/01/2012~ -~21506~^~205~^17.43^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~207~^2.23^6^0.04^~1~^~A~^^^1^2.06^2.35^5^2.12^2.33^~4~^~07/01/2012~ -~21506~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21506~^~211~^1.47^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.32^1.61^~4~^~07/01/2012~ -~21506~^~212~^1.80^3^0.10^~1~^~A~^^^1^1.70^2.00^2^1.37^2.23^~4~^~07/01/2012~ -~21506~^~213~^0.50^3^0.05^~1~^~A~^^^1^0.40^0.60^2^0.25^0.74^~4~^~07/01/2012~ -~21506~^~214~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^2^0.40^0.40^~4~^~07/01/2012~ -~21506~^~255~^47.37^6^0.32^~1~^~A~^^^1^46.35^48.74^5^46.53^48.21^~4~^~07/01/2012~ -~21506~^~269~^4.17^3^0.16^~1~^~A~^^^1^4.00^4.50^2^3.44^4.88^~4~^~07/01/2012~ -~21506~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21506~^~303~^2.33^6^0.13^~1~^~A~^^^1^2.05^2.92^5^2.00^2.66^~4~^~07/01/2012~ -~21506~^~309~^2.92^6^0.05^~1~^~A~^^^1^2.74^3.14^5^2.77^3.07^~4~^~07/01/2012~ -~21507~^~203~^18.53^6^0.27^~1~^~A~^^^1^17.44^19.19^5^17.83^19.23^~4~^~07/01/2012~ -~21507~^~204~^16.60^6^0.40^~1~^~A~^^^1^15.75^18.47^5^15.55^17.64^~4~^~07/01/2012~ -~21507~^~205~^15.35^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~207~^1.94^6^0.06^~1~^~A~^^^1^1.76^2.15^5^1.77^2.10^~4~^~07/01/2012~ -~21507~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21507~^~211~^1.50^3^0.00^~1~^~A~^^^1^1.50^1.50^2^1.50^1.50^~4~^~07/01/2012~ -~21507~^~212~^1.63^3^0.03^~1~^~A~^^^1^1.60^1.70^2^1.49^1.77^~4~^~07/01/2012~ -~21507~^~213~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~4~^~07/01/2012~ -~21507~^~214~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~4~^~07/01/2012~ -~21507~^~255~^47.58^6^0.35^~1~^~A~^^^1^46.82^49.15^5^46.66^48.48^~4~^~07/01/2012~ -~21507~^~269~^3.87^3^0.08^~1~^~A~^^^1^3.70^4.00^2^3.48^4.24^~4~^~07/01/2012~ -~21507~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21507~^~303~^2.75^6^0.11^~1~^~A~^^^1^2.36^3.05^5^2.45^3.05^~4~^~07/01/2012~ -~21507~^~309~^3.37^6^0.09^~1~^~A~^^^1^3.20^3.79^5^3.13^3.61^~4~^~07/01/2012~ -~21508~^~203~^11.72^6^0.24^~1~^~A~^^^1^10.75^12.62^5^11.08^12.35^~4~^~07/01/2012~ -~21508~^~204~^13.93^6^0.29^~1~^~A~^^^1^12.98^14.92^5^13.17^14.69^~4~^~07/01/2012~ -~21508~^~205~^26.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~207~^2.06^6^0.02^~1~^~A~^^^1^1.97^2.14^5^2.00^2.12^~4~^~07/01/2012~ -~21508~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21508~^~211~^1.17^3^0.03^~1~^~A~^^^1^1.10^1.20^2^1.02^1.31^~4~^~07/01/2012~ -~21508~^~212~^1.43^3^0.03^~1~^~A~^^^1^1.40^1.50^2^1.29^1.57^~4~^~07/01/2012~ -~21508~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21508~^~214~^0.53^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.39^0.67^~4~^~07/01/2012~ -~21508~^~255~^45.92^6^0.47^~1~^~A~^^^1^45.01^48.18^5^44.69^47.15^~4~^~07/01/2012~ -~21508~^~269~^3.13^3^0.06^~1~^~A~^^^1^3.00^3.20^2^2.84^3.42^~4~^~07/01/2012~ -~21508~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~21508~^~303~^1.49^6^0.03^~1~^~A~^^^1^1.37^1.58^5^1.40^1.58^~4~^~07/01/2012~ -~21508~^~309~^0.59^6^2.0e-03^~1~^~A~^^^1^0.58^0.60^5^0.58^0.59^~4~^~07/01/2012~ -~21509~^~203~^3.86^6^0.14^~1~^~A~^^^1^3.28^4.35^5^3.47^4.23^~2, 3~^~08/01/2012~ -~21509~^~204~^25.23^6^0.51^~1~^~A~^^^1^23.80^27.10^5^23.90^26.56^~2, 3~^~08/01/2012~ -~21509~^~205~^43.58^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~207~^2.82^6^0.08^~1~^~A~^^^1^2.56^3.05^5^2.60^3.03^~2, 3~^~08/01/2012~ -~21509~^~209~^26.50^3^1.85^~1~^~A~^^^1^23.40^29.80^2^18.53^34.46^~2, 3~^~08/01/2012~ -~21509~^~210~^3.56^3^0.26^~1~^~A~^^^1^3.05^3.92^2^2.43^4.68^~2, 3~^~08/01/2012~ -~21509~^~211~^0.44^3^0.01^~1~^~A~^^^1^0.42^0.47^2^0.38^0.50^~2, 3~^~08/01/2012~ -~21509~^~212~^0.98^3^0.06^~1~^~A~^^^1^0.89^1.10^2^0.71^1.24^~2, 3~^~08/01/2012~ -~21509~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~214~^0.45^3^0.05^~1~^~A~^^^1^0.34^0.53^2^0.20^0.69^~2, 3~^~08/01/2012~ -~21509~^~255~^24.52^6^0.99^~1~^~A~^^^1^22.10^28.30^5^21.95^27.07^~2, 3~^~08/01/2012~ -~21509~^~269~^5.43^3^0.25^~1~^~A~^^^1^4.94^5.80^2^4.33^6.53^~2, 3~^~08/01/2012~ -~21509~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~303~^0.78^6^0.02^~1~^~A~^^^1^0.72^0.89^5^0.70^0.84^~2, 3~^~08/01/2012~ -~21509~^~309~^0.51^6^0.01^~1~^~A~^^^1^0.44^0.56^5^0.47^0.55^~2, 3~^~08/01/2012~ -~21509~^~323~^4.92^3^0.23^~1~^~A~^^^1^4.46^5.21^2^3.92^5.91^~2, 3~^~08/01/2012~ -~21509~^~341~^0.18^3^0.02^~1~^~A~^^^1^0.14^0.23^2^0.05^0.29^~2, 3~^~08/01/2012~ -~21509~^~342~^11.02^3^0.69^~1~^~A~^^^1^9.64^11.73^2^8.04^14.00^~2, 3~^~08/01/2012~ -~21509~^~343~^1.22^3^0.11^~1~^~A~^^^1^1.00^1.41^2^0.70^1.72^~2, 3~^~08/01/2012~ -~21509~^~344~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.07^0.22^~2, 3~^~08/01/2012~ -~21509~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~346~^0.10^3^0.01^~1~^~A~^^^1^0.08^0.12^2^0.05^0.15^~2, 3~^~08/01/2012~ -~21509~^~347~^0.06^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.18^0.30^~1, 2, 3~^~08/01/2012~ -~21510~^~203~^13.69^6^0.44^~1~^~A~^^^1^12.75^15.38^5^12.53^14.84^~2, 3~^~08/01/2012~ -~21510~^~204~^15.80^6^0.58^~1~^~A~^^^1^14.31^17.86^5^14.30^17.29^~2, 3~^~08/01/2012~ -~21510~^~205~^17.73^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~207~^1.86^6^0.06^~1~^~A~^^^1^1.62^2.02^5^1.69^2.02^~2, 3~^~08/01/2012~ -~21510~^~209~^12.63^3^0.64^~1~^~A~^^^1^11.80^13.90^2^9.86^15.40^~2, 3~^~08/01/2012~ -~21510~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~211~^1.63^3^0.03^~1~^~A~^^^1^1.60^1.70^2^1.49^1.77^~2, 3~^~08/01/2012~ -~21510~^~212~^2.10^3^0.00^~1~^~A~^^^1^2.10^2.10^^^^~2, 3~^~08/01/2012~ -~21510~^~213~^0.37^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.01^0.74^~2, 3~^~08/01/2012~ -~21510~^~214~^0.40^3^0.05^~1~^~A~^^^1^0.30^0.50^2^0.15^0.64^~2, 3~^~08/01/2012~ -~21510~^~255~^50.92^6^0.83^~1~^~A~^^^1^47.22^52.62^5^48.77^53.06^~2, 3~^~08/01/2012~ -~21510~^~269~^4.50^3^0.05^~1~^~A~^^^1^4.40^4.60^2^4.25^4.74^~2, 3~^~08/01/2012~ -~21510~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~303~^2.30^6^0.16^~1~^~A~^^^1^1.89^2.99^5^1.89^2.71^~2, 3~^~08/01/2012~ -~21510~^~309~^2.26^6^0.05^~1~^~A~^^^1^2.07^2.47^5^2.11^2.40^~2, 3~^~08/01/2012~ -~21510~^~323~^0.57^3^0.01^~1~^~A~^^^1^0.54^0.60^2^0.49^0.64^~2, 3~^~08/01/2012~ -~21510~^~341~^0.07^3^6.0e-03^~1~^~A~^^^1^0.06^0.08^2^0.04^0.09^~2, 3~^~08/01/2012~ -~21510~^~342~^1.81^3^0.30^~1~^~A~^^^1^1.24^2.28^2^0.49^3.11^~2, 3~^~08/01/2012~ -~21510~^~343~^0.76^3^0.12^~1~^~A~^^^1^0.51^0.94^2^0.20^1.30^~2, 3~^~08/01/2012~ -~21510~^~344~^0.02^3^3.0e-03^~1~^~A~^^^1^0.01^0.02^2^2.0e-03^0.03^~2, 3~^~08/01/2012~ -~21510~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~346~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~2, 3~^~08/01/2012~ -~21510~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~418~^0.93^3^0.03^~1~^~A~^^^1^0.87^0.98^2^0.79^1.06^~2, 3~^~08/01/2012~ -~21511~^~203~^12.23^6^0.23^~1~^~A~^^^1^11.40^12.90^5^11.62^12.84^~2, 3~^~04/01/2013~ -~21511~^~204~^11.63^6^0.19^~1~^~A~^^^1^10.90^12.10^5^11.13^12.12^~2, 3~^~04/01/2013~ -~21511~^~205~^30.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~207~^2.76^6^0.03^~1~^~A~^^^1^2.61^2.84^5^2.67^2.85^~2, 3~^~04/01/2013~ -~21511~^~209~^23.70^3^0.60^~1~^~A~^^^1^22.50^24.40^2^21.10^26.29^~2, 3~^~04/01/2013~ -~21511~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~211~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~04/01/2013~ -~21511~^~212~^0.67^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.52^0.81^~2, 3~^~04/01/2013~ -~21511~^~213~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~04/01/2013~ -~21511~^~214~^1.10^3^0.00^~1~^~A~^^^1^1.10^1.10^^^^~2, 3~^~04/01/2013~ -~21511~^~255~^43.37^6^0.46^~1~^~A~^^^1^42.00^44.80^5^42.18^44.55^~2, 3~^~04/01/2013~ -~21511~^~269~^2.90^3^0.05^~1~^~A~^^^1^2.80^3.00^2^2.65^3.14^~2, 3~^~04/01/2013~ -~21511~^~287~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~04/01/2013~ -~21511~^~303~^2.04^6^0.04^~1~^~A~^^^1^1.85^2.18^5^1.92^2.16^~2, 3~^~04/01/2013~ -~21511~^~309~^1.49^6^0.02^~1~^~A~^^^1^1.40^1.55^5^1.43^1.54^~2, 3~^~04/01/2013~ -~21511~^~323~^0.67^2^^~1~^~A~^^^1^0.64^0.70^1^^^^~04/01/2013~ -~21511~^~341~^0.06^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~04/01/2013~ -~21511~^~342~^0.89^2^^~1~^~A~^^^1^0.82^0.96^1^^^^~04/01/2013~ -~21511~^~343~^0.30^2^^~1~^~A~^^^1^0.28^0.31^1^^^^~04/01/2013~ -~21511~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21511~^~345~^0.22^2^^~1~^~A~^^^1^0.22^0.23^1^^^^~04/01/2013~ -~21511~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21511~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~21511~^~418~^0.40^3^0.04^~1~^~A~^^^1^0.32^0.44^2^0.22^0.57^~2, 3~^~04/01/2013~ -~21511~^~573~^0.00^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21511~^~578~^0.00^0^^~4~^~BFNN~^~21299~^^^^^^^^^~04/01/2013~ -~21512~^~203~^12.23^6^0.23^~1~^~A~^^^1^11.40^12.90^5^11.62^12.84^~2, 3~^~05/01/2013~ -~21512~^~204~^11.63^6^0.19^~1~^~A~^^^1^10.90^12.10^5^11.13^12.12^~2, 3~^~05/01/2013~ -~21512~^~205~^30.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~207~^2.76^6^0.03^~1~^~A~^^^1^2.61^2.84^5^2.67^2.85^~2, 3~^~05/01/2013~ -~21512~^~209~^23.70^3^0.60^~1~^~A~^^^1^22.50^24.40^2^21.10^26.29^~2, 3~^~05/01/2013~ -~21512~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~211~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~05/01/2013~ -~21512~^~212~^0.67^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.52^0.81^~2, 3~^~05/01/2013~ -~21512~^~213~^0.60^3^0.00^~1~^~A~^^^1^0.60^0.60^^^^~2, 3~^~05/01/2013~ -~21512~^~214~^1.10^3^0.00^~1~^~A~^^^1^1.10^1.10^^^^~2, 3~^~05/01/2013~ -~21512~^~255~^43.37^6^0.46^~1~^~A~^^^1^42.00^44.80^5^42.18^44.55^~2, 3~^~05/01/2013~ -~21512~^~269~^2.90^3^0.05^~1~^~A~^^^1^2.80^3.00^2^2.65^3.14^~2, 3~^~05/01/2013~ -~21512~^~287~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~05/01/2013~ -~21512~^~303~^2.04^6^0.04^~1~^~A~^^^1^1.85^2.18^5^1.92^2.16^~2, 3~^~05/01/2013~ -~21512~^~309~^1.49^6^0.02^~1~^~A~^^^1^1.40^1.55^5^1.43^1.54^~2, 3~^~05/01/2013~ -~21512~^~323~^0.67^2^^~1~^~A~^^^1^0.64^0.70^1^^^^~05/01/2013~ -~21512~^~341~^0.06^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~05/01/2013~ -~21512~^~342~^0.89^2^^~1~^~A~^^^1^0.82^0.96^1^^^^~05/01/2013~ -~21512~^~343~^0.30^2^^~1~^~A~^^^1^0.28^0.31^1^^^^~05/01/2013~ -~21512~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21512~^~345~^0.22^2^^~1~^~A~^^^1^0.22^0.23^1^^^^~05/01/2013~ -~21512~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21512~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~21512~^~418~^0.40^3^0.04^~1~^~A~^^^1^0.32^0.44^2^0.22^0.57^~2, 3~^~05/01/2013~ -~21517~^~203~^11.48^4^0.25^~1~^~A~^^^1^10.81^12.06^3^10.66^12.30^~2, 3~^~05/01/2015~ -~21517~^~204~^15.10^4^0.24^~1~^~A~^^^1^14.58^15.71^3^14.32^15.87^~2, 3~^~05/01/2015~ -~21517~^~205~^23.22^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~207~^2.32^4^0.04^~1~^~A~^^^1^2.20^2.37^3^2.19^2.44^~2, 3~^~05/01/2015~ -~21517~^~209~^20.33^3^0.78^~1~^~A~^^^1^19.00^21.70^2^16.97^23.68^~2, 3~^~05/01/2015~ -~21517~^~210~^1.47^3^0.06^~1~^~A~^^^1^1.40^1.60^2^1.19^1.74^~2, 3~^~05/01/2015~ -~21517~^~211~^0.33^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.04^0.71^~2, 3~^~05/01/2015~ -~21517~^~212~^0.25^3^0.05^~1~^~A~^^^1^0.20^0.35^2^0.03^0.46^~2, 3~^~05/01/2015~ -~21517~^~213~^0.13^3^0.02^~1~^~A~^^^1^0.10^0.18^2^7.0e-03^0.24^~1, 2, 3~^~05/01/2015~ -~21517~^~214~^0.29^3^0.06^~1~^~A~^^^1^0.18^0.40^2^0.02^0.56^~1, 2, 3~^~05/01/2015~ -~21517~^~255~^47.88^4^0.98^~1~^~A~^^^1^45.86^50.26^3^44.74^51.01^~2, 3~^~05/01/2015~ -~21517~^~269~^2.48^3^0.14^~1~^~A~^^^1^2.20^2.64^2^1.87^3.08^~2, 3~^~05/01/2015~ -~21517~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21517~^~303~^1.47^4^0.09^~1~^~A~^^^1^1.32^1.75^3^1.16^1.77^~2, 3~^~05/01/2015~ -~21517~^~309~^0.72^4^0.04^~1~^~A~^^^1^0.65^0.83^3^0.58^0.84^~2, 3~^~05/01/2015~ -~21517~^~323~^1.21^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~341~^0.17^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~342~^4.36^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~343~^1.13^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~345~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21517~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21517~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21517~^~418~^0.11^0^^~4~^~FLA~^^^^^^^^^^~02/01/2016~ -~21517~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21517~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~203~^13.77^6^0.16^~1~^~A~^^^1^13.38^14.44^5^13.35^14.18^~2, 3~^~05/01/2015~ -~21518~^~204~^10.31^6^0.42^~1~^~A~^^^1^8.59^11.46^5^9.22^11.40^~2, 3~^~05/01/2015~ -~21518~^~205~^18.43^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~207~^2.31^6^0.05^~1~^~A~^^^1^2.14^2.48^5^2.17^2.44^~2, 3~^~05/01/2015~ -~21518~^~209~^17.60^3^1.70^~1~^~A~^^^1^15.60^21.00^2^10.24^24.95^~2, 3~^~05/01/2015~ -~21518~^~210~^0.39^3^0.20^~1~^~A~^^^1^0.18^0.80^2^-0.49^1.27^~1, 2, 3~^~05/01/2015~ -~21518~^~211~^0.44^3^0.12^~1~^~A~^^^1^0.20^0.56^2^-0.07^0.95^~2, 3~^~05/01/2015~ -~21518~^~212~^0.22^3^0.02^~1~^~A~^^^1^0.18^0.27^2^0.10^0.33^~1, 2, 3~^~05/01/2015~ -~21518~^~213~^0.16^3^0.02^~1~^~A~^^^1^0.10^0.18^2^0.03^0.27^~1, 2, 3~^~05/01/2015~ -~21518~^~214~^0.32^3^0.07^~1~^~A~^^^1^0.18^0.40^2^0.02^0.62^~1, 2, 3~^~05/01/2015~ -~21518~^~255~^55.17^6^0.69^~1~^~A~^^^1^52.97^57.20^5^53.39^56.95^~2, 3~^~05/01/2015~ -~21518~^~269~^1.53^3^0.12^~1~^~A~^^^1^1.30^1.70^2^1.01^2.04^~2, 3~^~05/01/2015~ -~21518~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~303~^1.45^6^0.09^~1~^~A~^^^1^1.13^1.77^5^1.21^1.69^~2, 3~^~05/01/2015~ -~21518~^~309~^0.77^6^0.03^~1~^~A~^^^1^0.66^0.88^5^0.67^0.86^~2, 3~^~05/01/2015~ -~21518~^~323~^0.45^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~418~^0.20^3^0.04^~1~^~A~^^^1^0.11^0.26^2^1.0e-03^0.40^~2, 3~^~02/01/2016~ -~21518~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21518~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~203~^11.10^6^0.16^~1~^~A~^^^1^10.60^11.60^5^10.67^11.52^~2, 3~^~05/01/2015~ -~21519~^~204~^15.63^6^0.34^~1~^~A~^^^1^14.80^16.90^5^14.73^16.53^~2, 3~^~05/01/2015~ -~21519~^~205~^22.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~207~^2.75^6^0.04^~1~^~A~^^^1^2.60^2.87^5^2.64^2.85^~2, 3~^~05/01/2015~ -~21519~^~209~^17.90^3^1.13^~1~^~A~^^^1^16.10^20.00^2^13.01^22.78^~2, 3~^~05/01/2015~ -~21519~^~210~^0.82^3^0.05^~1~^~A~^^^1^0.74^0.91^2^0.60^1.03^~2, 3~^~05/01/2015~ -~21519~^~211~^0.33^3^0.01^~1~^~A~^^^1^0.30^0.35^2^0.26^0.39^~2, 3~^~05/01/2015~ -~21519~^~212~^0.19^3^5.0e-03^~1~^~A~^^^1^0.18^0.20^2^0.16^0.21^~1, 2, 3~^~05/01/2015~ -~21519~^~213~^0.84^3^0.12^~1~^~A~^^^1^0.60^1.01^2^0.30^1.37^~2, 3~^~05/01/2015~ -~21519~^~214~^0.39^3^0.01^~1~^~A~^^^1^0.37^0.40^2^0.34^0.43^~2, 3~^~05/01/2015~ -~21519~^~255~^47.55^6^0.41^~1~^~A~^^^1^46.60^49.20^5^46.47^48.62^~2, 3~^~05/01/2015~ -~21519~^~269~^2.57^3^0.13^~1~^~A~^^^1^2.30^2.71^2^1.99^3.14^~2, 3~^~05/01/2015~ -~21519~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21519~^~303~^2.28^6^0.13^~1~^~A~^^^1^1.80^2.69^5^1.94^2.61^~2, 3~^~05/01/2015~ -~21519~^~309~^1.09^6^0.02^~1~^~A~^^^1^1.04^1.15^5^1.04^1.14^~2, 3~^~05/01/2015~ -~21519~^~323~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~341~^0.07^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~342~^1.63^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~343~^0.50^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~344~^0.06^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~345~^0.22^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21519~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21519~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21519~^~418~^0.74^3^0.05^~1~^~A~^^^1^0.64^0.82^2^0.51^0.96^~2, 3~^~05/01/2015~ -~21519~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21519~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2015~ -~21520~^~203~^12.20^4^0.74^~1~^~A~^^^1^10.44^13.94^3^9.82^14.57^~2, 3~^~06/01/2015~ -~21520~^~204~^12.88^4^0.69^~1~^~A~^^^1^10.81^13.73^3^10.67^15.09^~2, 3~^~06/01/2015~ -~21520~^~205~^44.48^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~207~^2.05^4^0.11^~1~^~A~^^^1^1.85^2.29^3^1.69^2.39^~2, 3~^~06/01/2015~ -~21520~^~209~^38.85^2^^~1~^~A~^^^1^38.10^39.60^1^^^^~06/01/2015~ -~21520~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21520~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21520~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21520~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21520~^~214~^1.11^2^^~1~^~A~^^^1^1.11^1.11^^^^^~06/01/2015~ -~21520~^~255~^28.38^4^0.89^~1~^~A~^^^1^26.26^30.63^3^25.54^31.22^~2, 3~^~06/01/2015~ -~21520~^~269~^1.11^2^^~1~^~A~^^^1^1.11^1.11^^^^^~06/01/2015~ -~21520~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21520~^~303~^4.65^3^0.20^~1~^~A~^^^1^4.29^4.98^2^3.78^5.50^~2, 3~^~06/01/2015~ -~21520~^~309~^1.02^3^0.12^~1~^~A~^^^1^0.81^1.23^2^0.50^1.54^~2, 3~^~06/01/2015~ -~21520~^~323~^0.88^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~418~^0.13^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21520~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~21521~^~203~^0.86^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~204~^0.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~205~^15.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21521~^~207~^0.33^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~255~^83.61^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~269~^12.68^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~303~^0.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~309~^0.09^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~323~^0.03^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21522~^~203~^11.93^3^0.76^~1~^~A~^^^1^10.40^12.80^2^8.62^15.24^~2, 3~^~05/01/2015~ -~21522~^~204~^14.93^3^0.76^~1~^~A~^^^1^13.80^16.40^2^11.62^18.24^~2, 3~^~05/01/2015~ -~21522~^~205~^30.56^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~207~^3.17^3^0.05^~1~^~A~^^^1^3.11^3.27^2^2.95^3.38^~2, 3~^~05/01/2015~ -~21522~^~209~^25.33^3^1.77^~1~^~A~^^^1^22.50^28.60^2^17.70^32.96^~2, 3~^~05/01/2015~ -~21522~^~210~^1.84^3^0.14^~1~^~A~^^^1^1.62^2.10^2^1.23^2.44^~2, 3~^~05/01/2015~ -~21522~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~213~^0.66^3^0.11^~1~^~A~^^^1^0.50^0.88^2^0.17^1.14^~2, 3~^~05/01/2015~ -~21522~^~214~^0.12^3^0.03^~1~^~A~^^^1^0.07^0.18^2^-0.02^0.26^~1, 2, 3~^~05/01/2015~ -~21522~^~255~^39.40^2^^~1~^~A~^^^1^39.30^39.50^1^^^^~05/01/2015~ -~21522~^~269~^2.62^3^0.12^~1~^~A~^^^1^2.37^2.80^2^2.07^3.16^~2, 3~^~05/01/2015~ -~21522~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~303~^1.76^3^0.04^~1~^~A~^^^1^1.70^1.84^2^1.58^1.93^~2, 3~^~05/01/2015~ -~21522~^~309~^0.49^3^0.03^~1~^~A~^^^1^0.45^0.56^2^0.34^0.63^~2, 3~^~05/01/2015~ -~21522~^~323~^1.88^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~341~^0.13^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~342~^2.05^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~343~^0.31^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~344~^0.65^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~345~^0.27^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~346~^0.96^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21522~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21522~^~418~^0.15^3^0.02^~1~^~A~^^^1^0.11^0.20^2^0.02^0.26^~2, 3~^~02/01/2016~ -~21523~^~203~^11.48^4^0.25^~1~^~A~^^^1^10.81^12.06^3^10.66^12.30^~2, 3~^~05/01/2015~ -~21523~^~204~^15.10^4^0.24^~1~^~A~^^^1^14.58^15.71^3^14.32^15.87^~2, 3~^~05/01/2015~ -~21523~^~205~^23.22^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~207~^2.32^4^0.04^~1~^~A~^^^1^2.20^2.37^3^2.19^2.44^~2, 3~^~05/01/2015~ -~21523~^~209~^20.33^3^0.78^~1~^~A~^^^1^19.00^21.70^2^16.97^23.68^~2, 3~^~05/01/2015~ -~21523~^~210~^1.47^3^0.06^~1~^~A~^^^1^1.40^1.60^2^1.19^1.74^~2, 3~^~05/01/2015~ -~21523~^~211~^0.33^3^0.08^~1~^~A~^^^1^0.20^0.50^2^-0.04^0.71^~2, 3~^~05/01/2015~ -~21523~^~212~^0.25^3^0.05^~1~^~A~^^^1^0.20^0.35^2^0.03^0.46^~2, 3~^~05/01/2015~ -~21523~^~213~^0.13^3^0.02^~1~^~A~^^^1^0.10^0.18^2^7.0e-03^0.24^~1, 2, 3~^~05/01/2015~ -~21523~^~214~^0.29^3^0.06^~1~^~A~^^^1^0.18^0.40^2^0.02^0.56^~1, 2, 3~^~05/01/2015~ -~21523~^~255~^47.88^4^0.98^~1~^~A~^^^1^45.86^50.26^3^44.74^51.01^~2, 3~^~05/01/2015~ -~21523~^~269~^2.48^3^0.14^~1~^~A~^^^1^2.20^2.64^2^1.87^3.08^~2, 3~^~05/01/2015~ -~21523~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21523~^~303~^1.47^4^0.09^~1~^~A~^^^1^1.32^1.75^3^1.16^1.77^~2, 3~^~05/01/2015~ -~21523~^~309~^0.72^4^0.04^~1~^~A~^^^1^0.65^0.83^3^0.58^0.84^~2, 3~^~05/01/2015~ -~21523~^~323~^1.21^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~341~^0.17^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~342~^4.36^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~343~^1.13^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~345~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~21523~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21523~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~21524~^~203~^13.77^6^0.16^~1~^~A~^^^1^13.38^14.44^5^13.35^14.18^~2, 3~^~05/01/2015~ -~21524~^~204~^10.31^6^0.42^~1~^~A~^^^1^8.59^11.46^5^9.22^11.40^~2, 3~^~05/01/2015~ -~21524~^~205~^18.43^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~207~^2.31^6^0.05^~1~^~A~^^^1^2.14^2.48^5^2.17^2.44^~2, 3~^~05/01/2015~ -~21524~^~209~^17.60^3^1.70^~1~^~A~^^^1^15.60^21.00^2^10.24^24.95^~2, 3~^~05/01/2015~ -~21524~^~210~^0.39^3^0.20^~1~^~A~^^^1^0.18^0.80^2^-0.49^1.27^~1, 2, 3~^~05/01/2015~ -~21524~^~211~^0.44^3^0.12^~1~^~A~^^^1^0.20^0.56^2^-0.07^0.95^~2, 3~^~05/01/2015~ -~21524~^~212~^0.22^3^0.02^~1~^~A~^^^1^0.18^0.27^2^0.10^0.33^~1, 2, 3~^~05/01/2015~ -~21524~^~213~^0.16^3^0.02^~1~^~A~^^^1^0.10^0.18^2^0.03^0.27^~1, 2, 3~^~05/01/2015~ -~21524~^~214~^0.32^3^0.07^~1~^~A~^^^1^0.18^0.40^2^0.02^0.62^~1, 2, 3~^~05/01/2015~ -~21524~^~255~^55.17^6^0.69^~1~^~A~^^^1^52.97^57.20^5^53.39^56.95^~2, 3~^~05/01/2015~ -~21524~^~269~^1.53^3^0.12^~1~^~A~^^^1^1.30^1.70^2^1.01^2.04^~2, 3~^~05/01/2015~ -~21524~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~303~^1.45^6^0.09^~1~^~A~^^^1^1.13^1.77^5^1.21^1.69^~2, 3~^~05/01/2015~ -~21524~^~309~^0.77^6^0.03^~1~^~A~^^^1^0.66^0.88^5^0.67^0.86^~2, 3~^~05/01/2015~ -~21524~^~418~^0.20^3^0.04^~1~^~A~^^^1^0.11^0.26^2^1.0e-03^0.40^~2, 3~^~02/01/2016~ -~21525~^~203~^12.20^4^0.74^~1~^~A~^^^1^10.44^13.94^3^9.82^14.57^~2, 3~^~06/01/2015~ -~21525~^~204~^12.88^4^0.69^~1~^~A~^^^1^10.81^13.73^3^10.67^15.09^~2, 3~^~06/01/2015~ -~21525~^~205~^44.48^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~207~^2.05^4^0.11^~1~^~A~^^^1^1.85^2.29^3^1.69^2.39^~2, 3~^~06/01/2015~ -~21525~^~209~^38.85^2^^~1~^~A~^^^1^38.10^39.60^1^^^^~06/01/2015~ -~21525~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21525~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21525~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21525~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21525~^~214~^1.11^2^^~1~^~A~^^^1^1.11^1.11^^^^^~06/01/2015~ -~21525~^~255~^28.38^4^0.89^~1~^~A~^^^1^26.26^30.63^3^25.54^31.22^~2, 3~^~06/01/2015~ -~21525~^~269~^1.11^2^^~1~^~A~^^^1^1.11^1.11^^^^^~06/01/2015~ -~21525~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21525~^~303~^4.65^3^0.20^~1~^~A~^^^1^4.29^4.98^2^3.78^5.50^~2, 3~^~06/01/2015~ -~21525~^~309~^1.02^3^0.12^~1~^~A~^^^1^0.81^1.23^2^0.50^1.54^~2, 3~^~06/01/2015~ -~21526~^~203~^16.28^4^0.39^~1~^~A~^^^1^15.50^17.00^3^15.01^17.55^~2, 3~^~06/01/2015~ -~21526~^~204~^11.19^4^0.07^~1~^~A~^^^1^11.05^11.39^3^10.96^11.42^~2, 3~^~06/01/2015~ -~21526~^~205~^20.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~207~^2.70^4^0.07^~1~^~A~^^^1^2.51^2.83^3^2.46^2.92^~2, 3~^~06/01/2015~ -~21526~^~209~^16.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~210~^1.15^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~211~^0.79^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~212~^0.97^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~21526~^~214~^0.73^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~255~^48.94^4^0.39^~1~^~A~^^^1^47.91^49.73^3^47.69^50.19^~2, 3~^~06/01/2015~ -~21526~^~269~^3.64^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~21526~^~303~^1.77^3^0.21^~1~^~A~^^^1^1.36^2.07^2^0.85^2.67^~2, 3~^~06/01/2015~ -~21526~^~309~^0.61^3^2.0e-03^~1~^~A~^^^1^0.60^0.61^2^0.59^0.61^~2, 3~^~06/01/2015~ -~21526~^~418~^0.13^3^9.0e-03^~1~^~A~^^^1^0.11^0.14^2^0.08^0.16^~2, 3~^~06/01/2015~ -~21527~^~203~^15.17^3^0.11^~1~^~A~^^^1^15.00^15.38^2^14.69^15.64^~2, 3~^~06/01/2015~ -~21527~^~204~^10.30^3^0.13^~1~^~A~^^^1^10.14^10.57^2^9.72^10.88^~2, 3~^~06/01/2015~ -~21527~^~205~^22.21^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~207~^2.41^3^0.03^~1~^~A~^^^1^2.34^2.45^2^2.26^2.55^~2, 3~^~06/01/2015~ -~21527~^~209~^17.65^2^^~1~^~A~^^^1^16.30^19.00^1^^^^~06/01/2015~ -~21527~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21527~^~211~^1.34^2^^~1~^~A~^^^1^1.16^1.53^1^^^^~06/01/2015~ -~21527~^~212~^1.50^2^^~1~^~A~^^^1^1.35^1.65^1^^^^~06/01/2015~ -~21527~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21527~^~214~^1.00^2^^~1~^~A~^^^1^0.90^1.10^1^^^^~06/01/2015~ -~21527~^~255~^49.91^3^0.35^~1~^~A~^^^1^49.48^50.62^2^48.37^51.44^~2, 3~^~06/01/2015~ -~21527~^~269~^3.84^2^^~1~^~A~^^^1^3.41^4.28^1^^^^~06/01/2015~ -~21527~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~21527~^~303~^2.64^3^0.08^~1~^~A~^^^1^2.54^2.82^2^2.26^3.02^~2, 3~^~06/01/2015~ -~21527~^~309~^2.27^3^0.02^~1~^~A~^^^1^2.23^2.30^2^2.17^2.35^~2, 3~^~06/01/2015~ -~21527~^~418~^0.96^3^0.07^~1~^~A~^^^1^0.83^1.10^2^0.61^1.29^~2, 3~^~06/01/2015~ -~21600~^~203~^12.72^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~204~^7.91^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~205~^31.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21600~^~207~^2.43^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~255~^45.64^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~269~^7.12^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~303~^2.53^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~309~^1.97^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~323~^0.75^0^^~4~^~BFSN~^~21505~^^^^^^^^^~05/01/2015~ -~21600~^~418~^1.49^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~203~^14.62^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~204~^9.27^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~205~^28.08^0^^~4~^~NC~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~207~^2.29^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~255~^45.73^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~269~^5.02^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~303~^2.63^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~309~^1.83^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~323~^0.72^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~418~^2.10^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~573~^0.00^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2015~ -~21601~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~203~^12.78^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~204~^8.62^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~205~^31.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21602~^~207~^2.48^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~255~^44.88^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~269~^7.62^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~303~^2.74^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~309~^2.51^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~323~^0.80^0^^~4~^~BFNN~^~21478~^^^^^^^^^~05/01/2015~ -~21602~^~418~^2.16^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~203~^14.35^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~204~^9.82^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~205~^28.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21603~^~207~^2.23^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~255~^45.30^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~269~^4.03^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~303~^2.53^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~309~^1.93^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~323~^0.81^0^^~4~^~BFSN~^~21303~^^^^^^^^^~05/01/2015~ -~21603~^~418~^1.19^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~203~^12.63^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~204~^7.83^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~205~^32.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21604~^~207~^2.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~255~^45.30^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21604~^~269~^7.53^0^^~4~^~BFPN~^~21602~^^^^^^^^^~08/01/2015~ -~21604~^~303~^2.09^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2015~ -~21604~^~309~^2.53^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~323~^0.81^0^^~4~^~BFNN~^~21478~^^^^^^^^^~05/01/2015~ -~21604~^~418~^2.18^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21605~^~203~^13.26^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~204~^9.07^0^^~4~^~BFPN~^~21603~^^^^^^^^^~05/01/2015~ -~21605~^~205~^30.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21605~^~207~^1.78^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~255~^45.31^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~269~^3.72^0^^~4~^~BFPN~^~21146~^^^^^^^^^~05/01/2015~ -~21605~^~303~^2.21^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~309~^1.60^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~323~^0.75^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~418~^0.34^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~203~^17.64^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~204~^13.93^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~205~^12.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21610~^~207~^2.08^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~255~^53.84^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~269~^0.55^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~303~^3.77^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~309~^1.12^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~323~^1.36^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~418~^0.31^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~203~^15.67^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~204~^12.90^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~205~^22.86^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21611~^~207~^2.04^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~255~^46.53^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~269~^0.49^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~303~^1.99^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~309~^0.71^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~323~^1.23^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~418~^0.24^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~22247~^~203~^3.38^2^^~1~^~A~^^^1^3.35^3.40^1^^^^~06/01/2004~ -~22247~^~204~^2.46^2^^~1~^~A~^^^1^2.42^2.49^1^^^^~06/01/2004~ -~22247~^~205~^11.52^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~207~^1.25^2^^~1~^~A~^^^1^1.24^1.27^1^^^^~06/01/2004~ -~22247~^~209~^9.68^2^^~1~^~A~^^^1^9.30^10.06^1^^^^~06/01/2004~ -~22247~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2004~ -~22247~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2004~ -~22247~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2004~ -~22247~^~213~^0.30^2^^~1~^~A~^^^1^0.28^0.32^1^^^^~06/01/2004~ -~22247~^~214~^0.20^2^^~1~^~A~^^^1^0.10^0.29^1^^^~1~^~06/01/2004~ -~22247~^~255~^81.39^2^^~1~^~A~^^^1^81.10^81.68^1^^^^~06/01/2004~ -~22247~^~269~^0.50^2^^~1~^~A~^^^1^0.38^0.61^1^^^^~06/01/2004~ -~22247~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2004~ -~22247~^~303~^0.90^2^^~1~^~A~^^^1^0.64^1.16^1^^^^~06/01/2004~ -~22247~^~309~^0.45^2^^~1~^~A~^^^1^0.38^0.52^1^^^^~06/01/2004~ -~22247~^~323~^0.05^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~418~^0.15^2^^~1~^~A~^^^1^0.15^0.15^^^^~1~^~06/01/2004~ -~22247~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22401~^~203~^5.05^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~204~^1.01^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~205~^15.24^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~22401~^~207~^0.88^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~255~^77.82^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~269~^2.60^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~303~^1.25^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~309~^0.51^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~323~^0.50^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~418~^0.06^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~22402~^~203~^5.89^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~204~^1.96^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~205~^17.99^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~207~^1.15^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~255~^73.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~269~^3.80^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~303~^1.30^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~309~^1.08^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~323~^0.65^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~418~^0.29^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~22402~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~22522~^~203~^4.37^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~204~^2.38^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~205~^12.70^1^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~22522~^~207~^2.36^0^^~4~^~O~^^^^^^^^^^~07/01/2010~ -~22522~^~209~^3.78^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~ -~22522~^~255~^78.20^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22522~^~269~^3.17^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~22522~^~303~^0.91^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22522~^~309~^0.52^0^^~4~^~FLM~^^^^^^^^^^~01/01/2007~ -~22522~^~323~^0.74^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~418~^0.19^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22528~^~203~^6.50^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~204~^8.80^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~205~^17.70^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~22528~^~207~^1.30^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~255~^65.70^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22529~^~203~^7.25^4^0.41^~1~^~A~^^^1^6.56^8.38^3^5.92^8.57^~2, 3~^~12/01/2007~ -~22529~^~204~^11.39^4^0.07^~1~^~A~^^^1^11.20^11.57^3^11.14^11.63^~2, 3~^~12/01/2007~ -~22529~^~205~^22.05^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~207~^1.26^4^0.02^~1~^~A~^^^1^1.21^1.30^3^1.19^1.32^~2, 3~^~12/01/2007~ -~22529~^~209~^14.13^3^0.73^~1~^~A~^^^1^12.70^15.10^2^10.98^17.27^~2, 3~^~12/01/2007~ -~22529~^~210~^0.32^3^0.03^~1~^~A~^^^1^0.26^0.39^2^0.16^0.48^~2, 3~^~12/01/2007~ -~22529~^~211~^0.77^3^0.03^~1~^~A~^^^1^0.72^0.84^2^0.61^0.92^~2, 3~^~12/01/2007~ -~22529~^~212~^0.08^3^0.04^~1~^~A~^^^1^0.00^0.12^2^-0.09^0.25^~2, 3~^~12/01/2007~ -~22529~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~214~^1.66^3^0.30^~1~^~A~^^^1^1.25^2.25^2^0.36^2.96^~2, 3~^~12/01/2007~ -~22529~^~255~^58.05^4^1.00^~1~^~A~^^^1^55.21^59.91^3^54.86^61.23^~2, 3~^~12/01/2007~ -~22529~^~303~^1.25^4^0.37^~1~^~A~^^^1^0.64^2.20^3^0.05^2.44^~2, 3~^~12/01/2007~ -~22529~^~309~^1.10^4^0.00^~1~^~A~^^^1^1.10^1.10^^^^~2, 3~^~12/01/2007~ -~22529~^~323~^0.26^3^0.05^~1~^~A~^^^1^0.20^0.38^2^0.01^0.51^~2, 3~^~12/01/2007~ -~22529~^~341~^0.03^3^3.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.01^0.04^~2, 3~^~12/01/2007~ -~22529~^~342~^0.71^3^0.43^~1~^~A~^^^1^0.27^1.57^2^-1.15^2.56^~2, 3~^~12/01/2007~ -~22529~^~343~^0.13^3^0.11^~1~^~A~^^^1^0.01^0.35^2^-0.35^0.60^~1, 2, 3~^~12/01/2007~ -~22529~^~344~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^^^^~2, 3~^~12/01/2007~ -~22529~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~418~^0.32^3^0.00^~1~^~A~^^^1^0.32^0.32^^^^~1, 2, 3~^~12/01/2007~ -~22535~^~203~^8.90^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~204~^8.60^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~205~^30.40^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~ -~22535~^~207~^2.10^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~255~^50.00^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~269~^7.60^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~303~^2.97^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~309~^0.95^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~323~^0.29^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~418~^0.35^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~573~^0.00^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~578~^0.00^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22537~^~203~^9.16^4^0.04^~1~^~A~^^^1^9.06^9.25^3^9.02^9.28^~2, 3~^~06/01/2009~ -~22537~^~204~^15.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22537~^~205~^24.69^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22537~^~207~^2.20^4^0.01^~1~^~A~^^^1^2.15^2.21^3^2.14^2.24^~2, 3~^~06/01/2009~ -~22537~^~209~^24.55^4^0.49^~1~^~A~^^^1^23.20^25.30^3^22.96^26.13^~2, 3~^~06/01/2009~ -~22537~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~22537~^~211~^0.90^2^^~1~^~A~^^^1^0.89^0.91^1^^^^~06/01/2009~ -~22537~^~212~^0.49^2^^~1~^~A~^^^1^0.43^0.54^1^^^^~06/01/2009~ -~22537~^~213~^2.37^2^^~1~^~A~^^^1^2.35^2.39^1^^^^~06/01/2009~ -~22537~^~214~^3.84^2^^~1~^~A~^^^1^3.24^4.45^1^^^^~06/01/2009~ -~22537~^~255~^48.96^4^0.24^~1~^~A~^^^1^48.40^49.58^3^48.19^49.73^~2, 3~^~06/01/2009~ -~22537~^~269~^7.60^2^^~1~^~A~^^^1^6.91^8.29^1^^^^~06/01/2009~ -~22537~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~22537~^~303~^2.00^4^0.10^~1~^~A~^^^1^1.77^2.20^3^1.66^2.33^~2, 3~^~06/01/2009~ -~22537~^~309~^0.95^4^0.01^~1~^~A~^^^1^0.90^0.98^3^0.89^1.00^~2, 3~^~06/01/2009~ -~22537~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22537~^~418~^0.35^4^0.02^~1~^~A~^^^1^0.30^0.40^3^0.28^0.41^~2, 3~^~06/01/2009~ -~22537~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22537~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22899~^~203~^2.48^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~204~^1.45^2^^~8~^~LC~^^^1^1.45^1.45^1^^^^~03/01/2011~ -~22899~^~205~^13.64^2^^~8~^~LC~^^^1^12.81^14.46^1^^^^~03/01/2011~ -~22899~^~207~^1.52^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~ -~22899~^~255~^80.91^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~269~^3.72^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~303~^0.74^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~22899~^~309~^0.36^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~323~^0.85^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~418~^0.03^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22900~^~203~^3.24^17^0.08^~1~^~A~^^^1^2.66^4.21^5^3.04^3.44^~2, 3~^~07/01/2014~ -~22900~^~204~^3.41^17^0.10^~1~^~A~^^^1^2.70^4.10^5^3.15^3.67^~2, 3~^~04/01/2011~ -~22900~^~205~^13.26^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~207~^0.97^17^0.01^~1~^~A~^^^1^0.87^1.55^7^0.93^1.00^~2, 3~^~07/01/2014~ -~22900~^~209~^8.79^11^0.04^~1~^~A~^^^1^8.30^9.20^6^8.68^8.90^~2, 3~^~07/01/2014~ -~22900~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~211~^1.00^8^0.05^~1~^~A~^^^1^0.87^1.78^2^0.75^1.24^~2, 3~^~07/01/2014~ -~22900~^~212~^0.97^8^0.01^~1~^~A~^^^1^0.87^2.19^3^0.91^1.02^~2, 3~^~07/01/2014~ -~22900~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~255~^79.12^17^0.15^~1~^~A~^^^1^74.80^80.00^5^78.71^79.51^~2, 3~^~07/01/2014~ -~22900~^~269~^1.97^8^0.07^~1~^~A~^^^1^1.79^3.97^2^1.66^2.27^~2, 3~^~07/01/2014~ -~22900~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~303~^1.09^17^0.01^~1~^~A~^^^1^0.86^1.29^9^1.06^1.11^~2, 3~^~07/01/2014~ -~22900~^~309~^0.39^17^0.01^~1~^~A~^^^1^0.35^0.67^5^0.36^0.41^~2, 3~^~07/01/2014~ -~22900~^~323~^0.50^8^0.03^~1~^~A~^^^1^0.42^0.72^2^0.35^0.64^~2, 3~^~07/01/2014~ -~22900~^~341~^0.03^8^2.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.03^~2, 3~^~07/01/2014~ -~22900~^~342~^0.06^8^6.0e-03^~1~^~A~^^^1^0.05^0.11^2^0.03^0.08^~2, 3~^~07/01/2014~ -~22900~^~343~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~344~^0.01^8^1.0e-03^~1~^~A~^^^1^0.01^0.02^2^6.0e-03^0.01^~2, 3~^~04/01/2011~ -~22900~^~345~^0.09^8^8.0e-03^~1~^~A~^^^1^0.07^0.11^2^0.05^0.11^~2, 3~^~04/01/2011~ -~22900~^~346~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~347~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~418~^0.15^8^0.01^~1~^~A~^^^1^0.08^0.24^2^0.09^0.19^~2, 3~^~07/01/2014~ -~22900~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22900~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~22901~^~203~^13.50^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~204~^7.23^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~205~^47.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~207~^1.77^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~255~^30.50^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~269~^0.95^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~303~^1.50^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~309~^1.02^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~323~^0.16^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~22901~^~418~^0.16^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~22901~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~22902~^~203~^11.76^17^0.70^~1~^~A~^^^2^11.06^12.46^1^2.83^20.68^~4~^~06/01/2015~ -~22902~^~204~^11.52^17^1.41^~1~^~A~^^^2^10.11^12.94^1^-6.49^29.53^~4~^~06/01/2015~ -~22902~^~205~^30.76^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~207~^2.69^17^0.27^~1~^~A~^^^2^2.41^2.97^1^-0.82^6.20^~4~^~06/01/2015~ -~22902~^~209~^24.17^11^0.07^~1~^~A~^^^2^24.10^24.24^1^23.28^25.05^~4~^~06/01/2015~ -~22902~^~255~^43.27^17^0.04^~1~^~A~^^^2^43.22^43.32^1^42.69^43.84^~4~^~06/01/2015~ -~22902~^~269~^3.88^7^1.06^~1~^~A~^^^2^2.82^4.95^1^-9.64^17.40^~4~^~06/01/2015~ -~22902~^~303~^1.70^17^0.75^~1~^~A~^^^2^0.95^2.45^1^-7.83^11.23^~4~^~06/01/2015~ -~22902~^~309~^1.36^17^0.09^~1~^~A~^^^2^1.26^1.45^1^0.10^2.60^~4~^~06/01/2015~ -~22902~^~323~^0.88^5^0.07^~1~^~A~^^^^0.70^1.13^^^^^~06/01/2015~ -~22902~^~418~^0.45^7^0.03^~1~^~A~^^^2^0.42^0.49^1^0.01^0.90^~4~^~06/01/2015~ -~22902~^~573~^0.00^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22902~^~578~^0.00^0^^~4~^~BFNN~^~21482~^^^^^^^^^~06/01/2015~ -~22903~^~203~^14.38^5^0.72^~1~^~A~^^^1^10.94^17.25^2^11.26^17.48^~2, 3~^~06/01/2015~ -~22903~^~204~^13.13^5^0.07^~1~^~A~^^^1^11.68^13.83^2^12.79^13.46^~2, 3~^~06/01/2015~ -~22903~^~205~^24.69^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~207~^2.39^5^0.02^~1~^~A~^^^1^2.07^2.54^2^2.28^2.50^~2, 3~^~06/01/2015~ -~22903~^~209~^17.59^3^0.82^~1~^~A~^^^1^16.20^19.40^1^7.12^28.05^~2, 3~^~06/01/2015~ -~22903~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~211~^0.95^5^0.01^~1~^~A~^^^1^0.85^1.28^2^0.87^1.02^~2, 3~^~06/01/2015~ -~22903~^~212~^1.12^5^0.01^~1~^~A~^^^1^1.08^1.21^2^1.05^1.18^~2, 3~^~06/01/2015~ -~22903~^~213~^0.36^5^0.07^~1~^~A~^^^1^0.18^0.88^2^0.05^0.66^~1, 2, 3~^~06/01/2015~ -~22903~^~214~^0.85^5^0.01^~1~^~A~^^^1^0.78^0.95^2^0.77^0.91^~2, 3~^~06/01/2015~ -~22903~^~255~^45.41^5^0.61^~1~^~A~^^^1^42.76^47.55^2^42.75^48.06^~2, 3~^~06/01/2015~ -~22903~^~269~^3.39^5^0.05^~1~^~A~^^^1^3.08^4.15^2^3.13^3.64^~2, 3~^~06/01/2015~ -~22903~^~287~^0.11^5^0.01^~1~^~A~^^^1^0.00^0.19^2^0.06^0.16^~1, 2, 3~^~06/01/2015~ -~22903~^~303~^2.43^4^0.02^~1~^~A~^^^1^1.55^4.23^1^2.08^2.79^~2, 3~^~06/01/2015~ -~22903~^~309~^1.52^4^0.00^~1~^~A~^^^1^1.30^1.63^^^^~2, 3~^~06/01/2015~ -~22903~^~323~^1.35^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22903~^~341~^0.16^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22903~^~342~^1.67^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22903~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~22903~^~344~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22903~^~345~^0.32^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~22903~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~22903~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~22903~^~418~^0.61^2^^~1~^~A~^^^1^0.59^0.64^1^^^^~06/01/2015~ -~22903~^~573~^0.00^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22903~^~578~^0.00^0^^~4~^~BFFN~^~21302~^^^^^^^^^~06/01/2015~ -~22904~^~203~^5.80^11^0.13^~1~^~A~^^^1^5.00^6.50^10^5.50^6.09^~2, 3~^~04/01/2011~ -~22904~^~204~^3.47^11^0.13^~1~^~A~^^^1^2.70^4.40^10^3.17^3.77^~2, 3~^~04/01/2011~ -~22904~^~205~^13.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~207~^1.94^11^0.02^~1~^~A~^^^1^1.80^2.04^10^1.89^1.98^~2, 3~^~04/01/2011~ -~22904~^~209~^6.90^3^0.50^~1~^~A~^^^1^5.90^7.50^2^4.73^9.06^~2, 3~^~04/01/2011~ -~22904~^~210~^1.03^6^0.02^~1~^~A~^^^1^0.95^1.11^5^0.96^1.10^~2, 3~^~04/01/2011~ -~22904~^~211~^0.34^6^0.02^~1~^~A~^^^1^0.28^0.41^5^0.28^0.40^~2, 3~^~04/01/2011~ -~22904~^~212~^0.49^6^0.01^~1~^~A~^^^1^0.44^0.51^5^0.46^0.51^~2, 3~^~04/01/2011~ -~22904~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~255~^75.69^11^0.17^~1~^~A~^^^1^74.50^76.60^10^75.29^76.09^~2, 3~^~04/01/2011~ -~22904~^~269~^1.87^6^0.05^~1~^~A~^^^1^1.72^1.98^5^1.73^1.99^~2, 3~^~04/01/2011~ -~22904~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~303~^1.34^11^0.02^~1~^~A~^^^1^1.25^1.49^10^1.28^1.39^~2, 3~^~04/01/2011~ -~22904~^~309~^0.89^11^0.01^~1~^~A~^^^1^0.80^1.00^10^0.86^0.92^~2, 3~^~04/01/2011~ -~22904~^~323~^0.50^3^0.01^~1~^~A~^^^1^0.49^0.53^2^0.44^0.56^~2, 3~^~04/01/2011~ -~22904~^~341~^0.31^3^0.03^~1~^~A~^^^1^0.25^0.36^2^0.17^0.44^~2, 3~^~04/01/2011~ -~22904~^~342~^1.19^3^0.01^~1~^~A~^^^1^1.17^1.22^2^1.13^1.25^~2, 3~^~04/01/2011~ -~22904~^~343~^0.03^3^5.0e-03^~1~^~A~^^^1^0.02^0.04^2^9.0e-03^0.05^~2, 3~^~04/01/2011~ -~22904~^~344~^0.06^3^5.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.04^0.08^~2, 3~^~04/01/2011~ -~22904~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~346~^0.04^3^5.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~2, 3~^~04/01/2011~ -~22904~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~418~^0.28^6^0.01^~1~^~A~^^^1^0.24^0.34^5^0.24^0.32^~2, 3~^~04/01/2011~ -~22904~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~22904~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22905~^~203~^4.41^4^0.33^~1~^~A~^^^2^3.34^5.00^2^2.98^5.82^~2, 3~^~11/01/2008~ -~22905~^~204~^5.53^4^1.03^~1~^~A~^^^2^2.33^9.06^2^1.09^9.97^~2, 3~^~11/01/2008~ -~22905~^~205~^7.85^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~22905~^~207~^1.43^4^0.06^~1~^~A~^^^2^1.27^1.55^2^1.14^1.71^~2, 3~^~11/01/2008~ -~22905~^~209~^5.43^3^0.27^~1~^~A~^^^2^4.59^6.30^1^1.99^8.87^~2, 3~^~11/01/2008~ -~22905~^~210~^0.48^3^0.05^~1~^~A~^^^2^0.26^0.77^1^-0.20^1.17^~2, 3~^~11/01/2008~ -~22905~^~211~^0.95^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~212~^0.33^2^^~1~^~A~^^^2^0.31^0.35^^^^^~11/01/2008~ -~22905~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~255~^80.78^4^0.61^~1~^~A~^^^2^78.81^81.84^2^78.15^83.41^~2, 3~^~11/01/2008~ -~22905~^~269~^1.76^0^^~4~^~NR~^^^^^^^^^^~11/01/2008~ -~22905~^~303~^2.48^4^0.96^~1~^~A~^^^2^0.63^5.60^2^-1.66^6.62^~2, 3~^~11/01/2008~ -~22905~^~309~^1.00^4^0.11^~1~^~A~^^^2^0.66^1.34^2^0.52^1.47^~2, 3~^~11/01/2008~ -~22905~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~418~^0.50^3^0.07^~1~^~A~^^^2^0.34^0.59^1^-0.47^1.46^~2, 3~^~11/01/2008~ -~22905~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~22905~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~22906~^~203~^5.11^12^0.06^~1~^~A~^^^1^4.44^6.25^8^4.95^5.26^~2, 3~^~07/01/2014~ -~22906~^~204~^11.85^12^0.08^~1~^~A~^^^1^10.89^13.50^10^11.67^12.02^~2, 3~^~07/01/2014~ -~22906~^~205~^19.21^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~207~^1.25^12^0.02^~1~^~A~^^^1^1.03^1.44^8^1.19^1.30^~2, 3~^~07/01/2014~ -~22906~^~209~^14.26^6^0.15^~1~^~A~^^^1^13.50^15.39^3^13.76^14.75^~2, 3~^~07/01/2014~ -~22906~^~210~^0.42^6^0.02^~1~^~A~^^^1^0.30^0.60^3^0.34^0.49^~2, 3~^~07/01/2014~ -~22906~^~211~^0.49^6^0.02^~1~^~A~^^^1^0.10^0.80^2^0.39^0.59^~2, 3~^~07/01/2014~ -~22906~^~212~^0.10^6^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~12/01/2007~ -~22906~^~213~^0.15^6^0.01^~1~^~A~^^^1^0.10^0.30^2^0.09^0.20^~2, 3~^~07/01/2014~ -~22906~^~214~^0.99^6^0.03^~1~^~A~^^^1^0.69^1.20^4^0.90^1.08^~2, 3~^~07/01/2014~ -~22906~^~255~^62.58^12^0.13^~1~^~A~^^^1^59.40^64.69^8^62.27^62.88^~2, 3~^~07/01/2014~ -~22906~^~269~^2.26^6^0.02^~1~^~A~^^^1^1.79^2.50^2^2.15^2.36^~2, 3~^~07/01/2014~ -~22906~^~287~^0.10^6^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~06/01/2012~ -~22906~^~303~^0.76^12^0.01^~1~^~A~^^^1^0.44^1.37^7^0.73^0.79^~2, 3~^~07/01/2014~ -~22906~^~309~^0.42^12^4.0e-03^~1~^~A~^^^1^0.34^0.48^6^0.41^0.42^~2, 3~^~07/01/2014~ -~22906~^~323~^0.53^6^0.02^~1~^~A~^^^1^0.21^1.13^3^0.45^0.61^~2, 3~^~07/01/2014~ -~22906~^~341~^0.07^6^0.01^~1~^~A~^^^1^0.00^0.16^2^-2.0e-03^0.15^~1, 2, 3~^~06/01/2012~ -~22906~^~342~^2.15^6^0.03^~1~^~A~^^^1^0.14^5.66^2^1.99^2.30^~2, 3~^~07/01/2014~ -~22906~^~343~^0.76^6^0.02^~1~^~A~^^^1^0.03^2.08^2^0.65^0.86^~2, 3~^~07/01/2014~ -~22906~^~344~^0.04^6^0.00^~1~^~A~^^^1^0.02^0.08^^^^~2, 3~^~07/01/2014~ -~22906~^~345~^0.26^6^6.0e-03^~1~^~A~^^^1^0.22^0.31^3^0.23^0.27^~2, 3~^~07/01/2014~ -~22906~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22906~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22906~^~418~^0.11^6^2.0e-03^~1~^~A~^^^1^0.11^0.12^2^0.10^0.12^~2, 3~^~07/01/2014~ -~22906~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22906~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22908~^~203~^8.73^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~204~^10.24^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~205~^9.27^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~207~^1.50^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~255~^70.32^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~269~^0.34^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~303~^1.00^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~309~^1.40^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~323~^0.04^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~418~^0.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~22908~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~22910~^~203~^6.54^2^^~1~^~A~^^^1^6.36^6.72^1^^^^~05/01/2013~ -~22910~^~204~^5.33^2^^~1~^~A~^^^1^4.91^5.75^1^^^^~05/01/2013~ -~22910~^~205~^13.84^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~207~^1.51^2^^~1~^~A~^^^1^1.41^1.60^1^^^^~05/01/2013~ -~22910~^~209~^8.91^2^^~1~^~A~^^^1^8.72^9.09^1^^^^~05/01/2013~ -~22910~^~210~^0.32^2^^~1~^~A~^^^1^0.23^0.42^1^^^^~05/01/2013~ -~22910~^~211~^1.86^2^^~1~^~A~^^^1^1.25^2.47^1^^^^~05/01/2013~ -~22910~^~212~^0.99^2^^~1~^~A~^^^1^0.98^1.00^1^^^^~05/01/2013~ -~22910~^~213~^1.01^2^^~1~^~A~^^^1^0.77^1.26^1^^^^~05/01/2013~ -~22910~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~22910~^~255~^72.78^2^^~1~^~A~^^^1^72.65^72.92^1^^^^~05/01/2013~ -~22910~^~269~^4.23^2^^~1~^~A~^^^1^3.76^4.70^1^^^^~05/01/2013~ -~22910~^~287~^0.05^2^^~1~^~A~^^^1^0.04^0.05^1^^^^~05/01/2013~ -~22910~^~303~^1.27^2^^~1~^~A~^^^1^0.71^1.83^1^^^^~05/01/2013~ -~22910~^~309~^0.91^2^^~1~^~A~^^^1^0.87^0.96^1^^^^~05/01/2013~ -~22910~^~323~^0.88^2^^~1~^~A~^^^1^0.86^0.90^1^^^^~05/01/2013~ -~22910~^~341~^0.02^2^^~1~^~A~^^^1^0.02^0.02^^^^^~05/01/2013~ -~22910~^~342~^0.82^2^^~1~^~A~^^^1^0.71^0.93^1^^^^~05/01/2013~ -~22910~^~343~^0.17^2^^~1~^~A~^^^1^0.10^0.23^1^^^^~05/01/2013~ -~22910~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~22910~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~22910~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~22910~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2013~ -~22910~^~418~^0.57^2^^~1~^~A~^^^1^0.50^0.65^1^^^^~05/01/2013~ -~22910~^~573~^0.00^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~578~^0.00^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22911~^~203~^7.53^12^0.23^~1~^~A~^^^1^6.47^9.02^11^7.01^8.04^~2, 3~^~02/01/2004~ -~22911~^~204~^7.10^12^0.92^~1~^~A~^^^1^4.13^13.29^11^5.05^9.14^~2, 3~^~02/01/2004~ -~22911~^~205~^6.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~22911~^~207~^1.59^12^0.04^~1~^~A~^^^1^1.44^1.88^11^1.49^1.68^~2, 3~^~02/01/2004~ -~22911~^~209~^3.35^3^0.34^~1~^~A~^^^1^2.71^3.88^2^1.88^4.80^~2, 3~^~02/01/2004~ -~22911~^~210~^0.68^3^0.20^~1~^~A~^^^1^0.59^1.22^2^-0.07^1.69^~2, 3~^~02/01/2013~ -~22911~^~212~^0.42^3^0.10^~1~^~A~^^^1^0.33^0.68^2^0.07^0.93^~2, 3~^~02/01/2013~ -~22911~^~255~^77.68^12^0.89^~1~^~A~^^^1^73.11^80.97^11^75.70^79.65^~2, 3~^~02/01/2004~ -~22911~^~269~^1.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~303~^2.01^12^0.28^~1~^~A~^^^1^0.70^3.66^11^1.37^2.64^~2, 3~^~02/01/2004~ -~22911~^~309~^1.12^12^0.08^~1~^~A~^^^1^0.67^1.57^11^0.92^1.31^~2, 3~^~02/01/2004~ -~22911~^~323~^0.59^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~418~^1.02^6^0.04^~1~^~A~^^^1^0.85^1.13^5^0.91^1.13^~2, 3~^~02/01/2004~ -~22911~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22912~^~203~^4.37^18^0.04^~1~^~A~^^^1^3.81^5.13^10^4.28^4.46^~2, 3~^~07/01/2014~ -~22912~^~204~^4.11^18^0.04^~1~^~A~^^^1^2.96^5.21^9^4.00^4.22^~2, 3~^~07/01/2014~ -~22912~^~205~^11.45^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~207~^1.26^18^0.01^~1~^~A~^^^1^1.13^1.55^11^1.23^1.29^~2, 3~^~07/01/2014~ -~22912~^~209~^7.37^9^0.23^~1~^~A~^^^1^6.40^8.60^2^6.42^8.31^~2, 3~^~07/01/2014~ -~22912~^~210~^0.34^9^0.01^~1~^~A~^^^1^0.00^1.24^2^0.26^0.41^~1, 2, 3~^~07/01/2014~ -~22912~^~211~^1.25^9^9.0e-03^~1~^~A~^^^1^0.77^1.53^5^1.22^1.27^~2, 3~^~07/01/2014~ -~22912~^~212~^1.32^9^0.01^~1~^~A~^^^1^0.92^1.57^4^1.29^1.35^~2, 3~^~07/01/2014~ -~22912~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~255~^78.80^18^0.12^~1~^~A~^^^1^77.44^80.94^9^78.51^79.07^~2, 3~^~07/01/2014~ -~22912~^~269~^2.91^9^0.02^~1~^~A~^^^1^2.28^3.10^4^2.84^2.98^~2, 3~^~07/01/2014~ -~22912~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~303~^1.03^18^0.03^~1~^~A~^^^1^0.57^2.23^7^0.94^1.11^~2, 3~^~07/01/2014~ -~22912~^~309~^0.51^18^8.0e-03^~1~^~A~^^^1^0.41^0.71^13^0.49^0.52^~2, 3~^~07/01/2014~ -~22912~^~323~^0.50^6^0.01^~1~^~A~^^^1^0.43^0.54^2^0.41^0.59^~2, 3~^~07/01/2014~ -~22912~^~341~^0.03^6^1.0e-03^~1~^~A~^^^1^0.02^0.05^1^0.01^0.05^~2, 3~^~06/01/2012~ -~22912~^~342~^0.10^6^4.0e-03^~1~^~A~^^^1^0.08^0.12^1^0.04^0.16^~2, 3~^~07/01/2014~ -~22912~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~344~^0.02^6^1.0e-03^~1~^~A~^^^1^0.01^0.03^1^6.0e-03^0.04^~1, 2, 3~^~06/01/2012~ -~22912~^~345~^0.17^6^7.0e-03^~1~^~A~^^^1^0.14^0.19^2^0.13^0.21^~2, 3~^~07/01/2014~ -~22912~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~418~^0.19^9^9.0e-03^~1~^~A~^^^1^0.15^0.30^3^0.16^0.22^~2, 3~^~07/01/2014~ -~22912~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22912~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2013~ -~22914~^~203~^2.22^11^0.09^~1~^~A~^^^1^1.33^2.59^10^2.00^2.42^~2, 3~^~04/01/2011~ -~22914~^~204~^0.71^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22914~^~205~^13.94^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~207~^0.98^11^0.02^~1~^~A~^^^1^0.86^1.11^10^0.92^1.04^~2, 3~^~04/01/2011~ -~22914~^~209~^7.44^8^0.20^~1~^~A~^^^1^6.70^8.20^7^6.95^7.92^~2, 3~^~04/01/2011~ -~22914~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~211~^1.98^6^0.23^~1~^~A~^^^1^1.47^2.75^5^1.38^2.58^~2, 3~^~04/01/2011~ -~22914~^~212~^2.02^6^0.09^~1~^~A~^^^1^1.78^2.37^5^1.78^2.26^~2, 3~^~04/01/2011~ -~22914~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~255~^82.15^11^0.19^~1~^~A~^^^1^80.90^83.20^10^81.70^82.58^~2, 3~^~04/01/2011~ -~22914~^~269~^4.00^6^0.32^~1~^~A~^^^1^3.25^5.12^5^3.18^4.83^~2, 3~^~04/01/2011~ -~22914~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~303~^0.91^11^0.03^~1~^~A~^^^1^0.73^1.09^10^0.82^0.99^~2, 3~^~04/01/2011~ -~22914~^~309~^0.38^11^0.02^~1~^~A~^^^1^0.22^0.51^10^0.33^0.44^~2, 3~^~04/01/2011~ -~22914~^~323~^0.62^6^0.02^~1~^~A~^^^1^0.58^0.76^5^0.55^0.69^~2, 3~^~04/01/2011~ -~22914~^~341~^0.04^6^5.0e-03^~1~^~A~^^^1^0.02^0.06^5^0.02^0.05^~2, 3~^~04/01/2011~ -~22914~^~342~^0.08^6^0.01^~1~^~A~^^^1^0.02^0.11^5^0.03^0.12^~2, 3~^~04/01/2011~ -~22914~^~343~^0.02^6^5.0e-03^~1~^~A~^^^1^0.00^0.03^5^2.0e-03^0.03^~1, 2, 3~^~04/01/2011~ -~22914~^~344~^0.03^6^4.0e-03^~1~^~A~^^^1^0.02^0.05^5^0.02^0.04^~2, 3~^~04/01/2011~ -~22914~^~345~^0.28^6^0.01^~1~^~A~^^^1^0.25^0.30^5^0.25^0.30^~2, 3~^~04/01/2011~ -~22914~^~346~^0.00^6^2.0e-03^~1~^~A~^^^1^0.00^0.01^5^-4.0e-03^8.0e-03^~1, 2, 3~^~04/01/2011~ -~22914~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~418~^0.00^4^^~8~^~LC~^^^1^0.00^0.00^0^^^~4~^~07/01/2017~ -~22914~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22914~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22915~^~203~^6.81^3^0.39^~1~^~A~^^^1^6.03^7.26^2^5.13^8.49^~2, 3~^~03/01/2004~ -~22915~^~204~^2.23^3^0.46^~1~^~A~^^^1^1.36^2.95^2^0.23^4.23^~2, 3~^~03/01/2004~ -~22915~^~205~^13.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~207~^1.10^3^0.02^~1~^~A~^^^1^1.06^1.15^2^0.98^1.21^~2, 3~^~03/01/2004~ -~22915~^~209~^9.45^2^^~1~^~A~^^^1^7.39^11.52^1^^^^~03/01/2004~ -~22915~^~210~^0.50^2^^~1~^~A~^^^1^0.42^0.58^1^^^^~03/01/2004~ -~22915~^~211~^0.75^2^^~1~^~A~^^^1^0.64^0.86^1^^^^~03/01/2004~ -~22915~^~212~^0.76^2^^~1~^~A~^^^1^0.70^0.82^1^^^^~03/01/2004~ -~22915~^~255~^76.36^3^0.33^~1~^~A~^^^1^75.69^76.70^2^74.91^77.80^~2, 3~^~03/01/2004~ -~22915~^~303~^0.97^3^0.07^~1~^~A~^^^1^0.89^1.13^2^0.64^1.30^~2, 3~^~03/01/2004~ -~22915~^~309~^0.86^3^0.05^~1~^~A~^^^1^0.80^0.97^2^0.63^1.08^~2, 3~^~03/01/2004~ -~22915~^~418~^0.45^2^^~1~^~A~^^^1^0.32^0.57^1^^^^~03/01/2004~ -~22916~^~203~^6.63^12^0.23^~1~^~A~^^^1^5.52^7.31^5^6.03^7.22^~2, 3~^~07/01/2014~ -~22916~^~204~^4.42^12^0.30^~1~^~A~^^^1^2.90^5.81^5^3.64^5.20^~2, 3~^~07/01/2014~ -~22916~^~205~^14.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~207~^1.46^12^0.03^~1~^~A~^^^1^1.32^1.77^7^1.38^1.53^~2, 3~^~07/01/2014~ -~22916~^~209~^9.80^6^0.26^~1~^~A~^^^1^9.20^10.40^2^8.71^10.89^~2, 3~^~07/01/2014~ -~22916~^~210~^0.48^6^5.0e-03^~1~^~A~^^^1^0.44^0.70^4^0.47^0.49^~2, 3~^~07/01/2014~ -~22916~^~211~^0.95^6^0.02^~1~^~A~^^^1^0.78^1.04^2^0.83^1.07^~2, 3~^~07/01/2014~ -~22916~^~212~^1.07^6^0.03^~1~^~A~^^^1^0.81^1.20^2^0.91^1.22^~2, 3~^~07/01/2014~ -~22916~^~213~^0.46^6^0.05^~1~^~A~^^^1^0.18^1.21^2^0.24^0.67^~1, 2, 3~^~07/01/2014~ -~22916~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~255~^73.10^12^0.26^~1~^~A~^^^1^71.16^74.12^6^72.44^73.75^~2, 3~^~07/01/2014~ -~22916~^~269~^2.96^6^0.08^~1~^~A~^^^1^2.71^3.55^2^2.59^3.32^~2, 3~^~07/01/2014~ -~22916~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~303~^0.65^12^0.01^~1~^~A~^^^1^0.60^0.82^8^0.62^0.66^~2, 3~^~07/01/2014~ -~22916~^~309~^0.79^12^0.01^~1~^~A~^^^1^0.68^0.87^6^0.74^0.82^~2, 3~^~07/01/2014~ -~22916~^~323~^0.87^6^0.03^~1~^~A~^^^1^0.36^0.99^4^0.77^0.96^~2, 3~^~07/01/2014~ -~22916~^~341~^0.06^6^0.01^~1~^~A~^^^1^0.00^0.11^2^-0.02^0.13^~1, 2, 3~^~07/01/2014~ -~22916~^~342~^0.11^6^5.0e-03^~1~^~A~^^^1^0.06^0.13^2^0.08^0.13^~2, 3~^~07/01/2014~ -~22916~^~343~^0.01^6^0.01^~1~^~A~^^^1^0.00^0.22^2^-0.04^0.06^~1, 2, 3~^~07/01/2014~ -~22916~^~344~^0.02^6^1.0e-03^~1~^~A~^^^1^0.02^0.03^3^0.01^0.02^~2, 3~^~06/01/2012~ -~22916~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~346~^0.03^6^0.01^~1~^~A~^^^1^0.00^0.28^2^-0.03^0.08^~1, 2, 3~^~07/01/2014~ -~22916~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~418~^0.74^3^0.16^~1~^~A~^^^1^0.41^0.93^2^0.02^1.45^~2, 3~^~03/01/2004~ -~22916~^~573~^0.00^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22916~^~578~^0.00^0^^~4~^~BFYN~^~22977~^^^^^^^^^~04/01/2013~ -~22917~^~203~^7.26^2^^~1~^~A~^^^1^7.17^7.34^1^^^^~01/01/2007~ -~22917~^~204~^9.61^2^^~1~^~A~^^^1^9.53^9.68^1^^^^~01/01/2007~ -~22917~^~205~^30.84^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22917~^~207~^1.81^2^^~1~^~A~^^^1^1.80^1.83^1^^^^~01/01/2007~ -~22917~^~255~^50.48^2^^~1~^~A~^^^1^50.44^50.52^1^^^^~01/01/2007~ -~22917~^~269~^0.70^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~22917~^~303~^2.96^2^^~1~^~A~^^^1^2.70^3.21^1^^^^~01/01/2007~ -~22917~^~309~^0.99^2^^~1~^~A~^^^1^0.98^1.00^1^^^^~01/01/2007~ -~22917~^~323~^0.64^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~22918~^~203~^7.07^13^0.06^~1~^~A~^^^1^5.87^7.81^7^6.90^7.23^~2, 3~^~03/01/2011~ -~22918~^~204~^6.30^11^0.19^~1~^~A~^^^1^5.30^7.70^1^5.02^7.57^~2, 3~^~03/01/2011~ -~22918~^~205~^34.01^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~207~^1.63^11^0.02^~1~^~A~^^^1^1.24^2.04^4^1.57^1.68^~2, 3~^~03/01/2011~ -~22918~^~209~^26.37^5^0.27^~1~^~A~^^^1^24.90^27.50^2^25.17^27.57^~2, 3~^~03/01/2011~ -~22918~^~210~^0.44^9^0.01^~1~^~A~^^^1^0.32^0.52^3^0.39^0.48^~2, 3~^~03/01/2011~ -~22918~^~211~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~212~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~213~^0.04^9^0.00^~1~^~A~^^^1^0.04^0.04^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~214~^2.73^9^0.06^~1~^~A~^^^1^1.88^4.33^2^2.31^3.15^~2, 3~^~03/01/2011~ -~22918~^~255~^50.99^11^0.23^~1~^~A~^^^1^47.10^55.00^5^50.37^51.61^~2, 3~^~03/01/2011~ -~22918~^~269~^3.21^9^0.07^~1~^~A~^^^1^2.42^4.87^1^2.75^3.66^~2, 3~^~03/01/2011~ -~22918~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~303~^2.51^11^0.03^~1~^~A~^^^1^2.11^2.80^7^2.42^2.60^~2, 3~^~03/01/2011~ -~22918~^~309~^0.71^11^0.02^~1~^~A~^^^1^0.52^0.96^5^0.64^0.76^~2, 3~^~03/01/2011~ -~22918~^~323~^0.37^5^7.0e-03^~1~^~A~^^^1^0.34^0.41^2^0.33^0.40^~2, 3~^~03/01/2011~ -~22918~^~341~^0.13^5^0.01^~1~^~A~^^^1^0.10^0.17^2^0.08^0.18^~2, 3~^~03/01/2011~ -~22918~^~342~^3.58^5^0.06^~1~^~A~^^^1^2.94^4.07^1^3.00^4.14^~2, 3~^~03/01/2011~ -~22918~^~343~^1.31^5^0.03^~1~^~A~^^^1^1.14^1.48^2^1.15^1.47^~2, 3~^~03/01/2011~ -~22918~^~344~^0.03^5^2.0e-03^~1~^~A~^^^1^0.00^0.05^1^0.02^0.04^~1, 2, 3~^~03/01/2011~ -~22918~^~345~^0.30^5^8.0e-03^~1~^~A~^^^1^0.23^0.44^1^0.22^0.38^~2, 3~^~03/01/2011~ -~22918~^~346~^0.00^5^3.0e-03^~1~^~A~^^^1^0.00^0.02^1^-0.03^0.04^~1, 2, 3~^~03/01/2011~ -~22918~^~347~^0.00^5^2.0e-03^~1~^~A~^^^1^0.00^0.01^1^-0.02^0.02^~1, 2, 3~^~03/01/2011~ -~22918~^~418~^0.08^9^0.01^~1~^~A~^^^1^0.04^0.14^3^0.02^0.14^~1, 2, 3~^~03/01/2011~ -~22918~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22918~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22919~^~203~^5.98^2^^~1~^~A~^^^1^5.92^6.05^1^^^^~06/01/2004~ -~22919~^~204~^5.99^2^^~1~^~A~^^^1^5.81^6.16^1^^^^~06/01/2004~ -~22919~^~205~^13.96^0^^~4~^~NC~^^^^^^^^^^~06/01/2004~ -~22919~^~207~^1.12^2^^~1~^~A~^^^1^1.10^1.15^1^^^^~06/01/2004~ -~22919~^~209~^11.44^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22919~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22919~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22919~^~213~^1.18^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~214~^0.24^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~255~^72.94^2^^~1~^~A~^^^1^72.69^73.20^1^^^^~06/01/2004~ -~22919~^~269~^1.41^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22919~^~303~^0.91^2^^~1~^~A~^^^1^0.76^1.07^1^^^^~06/01/2004~ -~22919~^~309~^0.55^2^^~1~^~A~^^^1^0.55^0.56^1^^^^~06/01/2004~ -~22919~^~418~^0.09^2^^~1~^~A~^^^1^0.03^0.15^1^^^~1~^~06/01/2004~ -~22928~^~203~^8.73^3^0.10^~1~^~A~^^^1^8.59^8.93^2^8.28^9.17^~2, 3~^~01/01/2007~ -~22928~^~204~^11.94^3^0.22^~1~^~A~^^^1^11.48^12.17^2^10.95^12.92^~2, 3~^~01/01/2007~ -~22928~^~205~^38.95^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22928~^~207~^2.24^3^0.03^~1~^~A~^^^1^2.17^2.29^2^2.08^2.39^~2, 3~^~01/01/2007~ -~22928~^~210~^0.47^6^0.02^~1~^~A~^^^1^0.40^0.54^5^0.40^0.52^~2, 3~^~01/01/2007~ -~22928~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~212~^0.14^6^2.0e-03^~1~^~A~^^^1^0.13^0.14^5^0.13^0.14^~2, 3~^~01/01/2007~ -~22928~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~214~^0.75^6^0.01^~1~^~A~^^^1^0.69^0.81^5^0.70^0.80^~2, 3~^~01/01/2007~ -~22928~^~255~^38.14^6^0.74^~1~^~A~^^^1^35.23^40.02^5^36.23^40.05^~2, 3~^~01/01/2007~ -~22928~^~269~^1.36^6^0.03^~1~^~A~^^^1^1.23^1.48^5^1.25^1.45^~2, 3~^~01/01/2007~ -~22928~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~303~^3.12^6^0.29^~1~^~A~^^^1^1.91^3.92^5^2.35^3.89^~2, 3~^~01/01/2007~ -~22928~^~309~^1.24^5^0.12^~1~^~A~^^^1^1.01^1.59^4^0.89^1.58^~2, 3~^~01/01/2007~ -~22928~^~323~^0.79^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~418~^0.14^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22928~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22953~^~203~^9.94^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~204~^8.18^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22953~^~205~^28.49^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22953~^~207~^2.06^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~209~^22.40^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~210~^1.60^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~211~^1.18^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~212~^0.70^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~214~^1.84^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~255~^51.33^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~269~^1.67^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22953~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~303~^1.55^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~309~^0.90^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~341~^2.42^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22953~^~342~^1.27^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22953~^~343~^0.58^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22953~^~344~^1.12^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22953~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~418~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22953~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~22954~^~203~^10.44^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~204~^4.51^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~205~^28.54^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22954~^~207~^2.33^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~209~^19.10^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~210~^2.50^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~211~^1.05^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~212~^0.82^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~214~^1.20^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~255~^54.18^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~269~^5.57^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~303~^1.69^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~309~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~323~^0.37^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~341~^0.54^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22954~^~342~^0.98^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22954~^~343~^0.25^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22954~^~344~^0.20^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~22954~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~418~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22954~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~203~^5.95^6^0.28^~1~^~A~^^^1^4.37^6.50^1^3.45^8.44^~2, 3~^~04/01/2014~ -~22955~^~204~^6.97^6^0.60^~1~^~A~^^^1^3.88^11.89^1^2.37^11.56^~2, 3~^~04/01/2014~ -~22955~^~205~^31.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~207~^1.94^6^0.10^~1~^~A~^^^1^1.60^2.15^2^1.51^2.37^~2, 3~^~04/01/2014~ -~22955~^~209~^20.94^3^^~1~^~A~^^^1^19.10^21.60^^^^~2, 3~^~04/01/2014~ -~22955~^~210~^2.34^3^^~1~^~A~^^^1^1.69^2.64^^^^~2, 3~^~04/01/2014~ -~22955~^~211~^1.53^3^^~1~^~A~^^^1^1.01^1.67^^^^~2, 3~^~04/01/2014~ -~22955~^~212~^1.06^3^^~1~^~A~^^^1^0.81^1.11^^^^~2, 3~^~04/01/2007~ -~22955~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~214~^1.02^3^^~1~^~A~^^^1^0.18^1.27^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~255~^53.37^6^1.27^~1~^~A~^^^1^50.38^61.20^1^44.93^61.80^~2, 3~^~04/01/2014~ -~22955~^~269~^5.96^3^^~1~^~A~^^^1^4.64^6.67^^^^~2, 3~^~04/01/2014~ -~22955~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~303~^1.95^6^0.18^~1~^~A~^^^1^0.55^3.04^2^1.16^2.72^~2, 3~^~04/01/2007~ -~22955~^~309~^0.45^6^0.01^~1~^~A~^^^1^0.28^0.72^3^0.41^0.48^~2, 3~^~04/01/2014~ -~22955~^~323~^0.75^3^^~1~^~A~^^^1^0.71^1.37^^^^~2, 3~^~04/01/2014~ -~22955~^~341~^0.06^3^^~1~^~A~^^^1^0.05^0.07^^^^~2, 3~^~04/01/2014~ -~22955~^~342~^2.34^3^^~1~^~A~^^^1^0.31^3.30^^^^~2, 3~^~04/01/2014~ -~22955~^~343~^0.78^3^^~1~^~A~^^^1^0.11^1.15^^^^~2, 3~^~04/01/2014~ -~22955~^~344~^0.01^3^^~1~^~A~^^^1^0.00^0.16^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~345~^0.17^3^^~1~^~A~^^^1^0.08^0.37^^^^~2, 3~^~04/01/2014~ -~22955~^~346~^0.08^3^^~1~^~A~^^^1^0.00^0.08^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~ -~22955~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22955~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~22956~^~203~^6.87^2^^~1~^~A~^^^1^6.50^7.25^1^^^^~06/01/2007~ -~22956~^~204~^6.04^2^^~1~^~A~^^^1^5.02^7.07^1^^^^~06/01/2007~ -~22956~^~205~^14.18^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~22956~^~207~^1.66^2^^~1~^~A~^^^1^1.60^1.71^1^^^^~06/01/2007~ -~22956~^~255~^71.24^2^^~1~^~A~^^^1^70.25^72.24^1^^^^~06/01/2007~ -~22956~^~269~^2.54^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2007~ -~22956~^~303~^0.55^2^^~1~^~A~^^^1^0.32^0.77^1^^^^~06/01/2007~ -~22956~^~309~^0.87^2^^~1~^~A~^^^1^0.84^0.91^1^^^^~06/01/2007~ -~22956~^~323~^0.46^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~418~^0.59^2^^~1~^~A~^^^1^0.33^0.86^1^^^~1~^~06/01/2007~ -~22956~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22957~^~203~^6.97^4^1.10^~1~^~A~^^^1^5.56^10.25^3^3.44^10.49^~2, 3~^~10/01/2007~ -~22957~^~204~^3.89^4^0.22^~1~^~A~^^^1^3.45^4.39^3^3.19^4.59^~2, 3~^~10/01/2007~ -~22957~^~205~^16.32^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~22957~^~207~^1.66^4^0.05^~1~^~A~^^^1^1.51^1.76^3^1.49^1.82^~2, 3~^~10/01/2007~ -~22957~^~210~^2.11^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~22957~^~211~^1.69^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~22957~^~212~^1.02^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~22957~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2007~ -~22957~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2007~ -~22957~^~255~^71.16^4^0.71^~1~^~A~^^^1^70.27^73.30^3^68.88^73.43^~2, 3~^~10/01/2007~ -~22957~^~269~^4.82^0^^~4~^~O~^^^^^^^^^^~05/01/2009~ -~22957~^~303~^0.79^4^0.05^~1~^~A~^^^1^0.71^0.94^3^0.62^0.96^~2, 3~^~10/01/2007~ -~22957~^~309~^0.48^4^0.04^~1~^~A~^^^1^0.40^0.59^3^0.35^0.61^~2, 3~^~10/01/2007~ -~22957~^~323~^0.24^3^0.02^~1~^~A~^^^1^0.21^0.29^2^0.12^0.35^~2, 3~^~10/01/2007~ -~22957~^~341~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^9.0e-03^0.02^~1, 2, 3~^~10/01/2007~ -~22957~^~342~^1.02^3^0.07^~1~^~A~^^^1^0.87^1.12^2^0.69^1.34^~2, 3~^~10/01/2007~ -~22957~^~343~^0.38^3^0.05^~1~^~A~^^^1^0.27^0.45^2^0.14^0.61^~2, 3~^~10/01/2007~ -~22957~^~344~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.03^~1, 2, 3~^~10/01/2007~ -~22957~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~418~^0.33^4^0.00^~1~^~A~^^^1^0.33^0.33^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22957~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~ -~22958~^~203~^5.65^3^0.77^~1~^~A~^^^1^4.87^7.19^2^2.32^8.96^~2, 3~^~12/01/2007~ -~22958~^~204~^1.56^3^0.34^~1~^~A~^^^1^1.13^2.23^2^0.09^3.02^~2, 3~^~12/01/2007~ -~22958~^~205~^22.46^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~207~^1.25^3^0.22^~1~^~A~^^^1^0.80^1.51^2^0.28^2.21^~2, 3~^~12/01/2007~ -~22958~^~209~^15.07^3^3.48^~1~^~A~^^^1^8.42^20.18^2^0.09^30.04^~2, 3~^~12/01/2007~ -~22958~^~210~^3.50^3^1.25^~1~^~A~^^^1^1.17^5.49^2^-1.91^8.91^~2, 3~^~12/01/2007~ -~22958~^~211~^0.25^3^0.16^~1~^~A~^^^1^0.07^0.57^2^-0.44^0.94^~1, 2, 3~^~12/01/2007~ -~22958~^~212~^0.32^3^0.15^~1~^~A~^^^1^0.07^0.59^2^-0.33^0.96^~1, 2, 3~^~12/01/2007~ -~22958~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22958~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22958~^~255~^69.09^3^0.80^~1~^~A~^^^1^67.52^70.15^2^65.64^72.53^~2, 3~^~12/01/2007~ -~22958~^~269~^4.07^3^1.54^~1~^~A~^^^1^1.32^6.65^2^-2.56^10.69^~2, 3~^~12/01/2007~ -~22958~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2007~ -~22958~^~303~^0.35^3^0.06^~1~^~A~^^^1^0.23^0.47^2^0.05^0.64^~2, 3~^~12/01/2007~ -~22958~^~309~^0.38^3^0.05^~1~^~A~^^^1^0.29^0.49^2^0.12^0.63^~2, 3~^~12/01/2007~ -~22958~^~323~^0.23^2^^~1~^~A~^^^1^0.11^0.35^1^^^^~12/01/2007~ -~22958~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~12/01/2007~ -~22958~^~342~^0.14^2^^~1~^~A~^^^1^0.00^0.29^1^^^~1~^~12/01/2007~ -~22958~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2007~ -~22958~^~418~^0.32^3^0.00^~1~^~A~^^^1^0.32^0.32^^^^~1, 2, 3~^~03/01/2009~ -~22958~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~22958~^~578~^0.32^0^^~4~^~NR~^^^^^^^^^^~12/01/2007~ -~22959~^~203~^13.86^12^0.05^~1~^~A~^^^1^11.69^14.44^5^13.70^14.00^~2, 3~^~07/01/2014~ -~22959~^~204~^4.82^12^0.38^~1~^~A~^^^1^2.60^7.32^5^3.83^5.81^~2, 3~^~07/01/2014~ -~22959~^~205~^70.12^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22959~^~207~^3.15^12^0.06^~1~^~A~^^^1^2.83^3.43^6^3.00^3.29^~2, 3~^~08/01/2012~ -~22959~^~209~^52.60^2^^~1~^~A~^^^1^52.22^52.97^1^^^^~12/01/2008~ -~22959~^~210~^0.32^2^^~1~^~A~^^^1^0.29^0.35^1^^^^~12/01/2008~ -~22959~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2008~ -~22959~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2008~ -~22959~^~213~^6.90^2^^~1~^~A~^^^1^6.55^7.26^1^^^^~12/01/2008~ -~22959~^~214~^2.39^2^^~1~^~A~^^^1^1.79^2.99^1^^^^~12/01/2008~ -~22959~^~255~^8.05^12^0.12^~1~^~A~^^^1^7.45^9.18^7^7.76^8.34^~2, 3~^~07/01/2014~ -~22959~^~269~^9.61^2^^~1~^~A~^^^1^8.62^10.60^1^^^^~12/01/2008~ -~22959~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2008~ -~22959~^~303~^2.75^12^0.04^~1~^~A~^^^1^2.47^3.19^7^2.64^2.85^~2, 3~^~07/01/2014~ -~22959~^~309~^1.23^12^0.01^~1~^~A~^^^1^0.96^1.35^7^1.19^1.27^~2, 3~^~08/01/2012~ -~22959~^~323~^0.13^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~22959~^~418~^0.77^2^^~1~^~A~^^^1^0.77^0.78^1^^^^~12/01/2008~ -~22959~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~22959~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~22960~^~203~^4.89^12^0.06^~1~^~A~^^^1^4.25^5.31^6^4.73^5.04^~2, 3~^~08/01/2012~ -~22960~^~204~^8.28^12^0.20^~1~^~A~^^^1^6.68^10.45^9^7.81^8.75^~2, 3~^~08/01/2012~ -~22960~^~205~^23.93^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~207~^1.30^12^0.02^~1~^~A~^^^1^1.11^1.44^6^1.23^1.37^~2, 3~^~08/01/2012~ -~22960~^~209~^17.52^6^0.60^~1~^~A~^^^1^15.50^19.10^2^15.10^19.92^~2, 3~^~08/01/2012~ -~22960~^~210~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~213~^3.02^12^0.09^~1~^~A~^^^1^2.30^3.40^6^2.79^3.24^~2, 3~^~08/01/2012~ -~22960~^~214~^1.25^12^0.04^~1~^~A~^^^1^0.20^2.40^5^1.13^1.36^~2, 3~^~08/01/2012~ -~22960~^~255~^61.60^12^0.20^~1~^~A~^^^1^59.74^62.76^9^61.13^62.05^~2, 3~^~08/01/2012~ -~22960~^~269~^4.27^12^0.11^~1~^~A~^^^1^3.20^5.70^6^3.99^4.54^~2, 3~^~08/01/2012~ -~22960~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~303~^0.99^12^0.01^~1~^~A~^^^1^0.83^1.13^10^0.94^1.02^~2, 3~^~08/01/2012~ -~22960~^~309~^0.47^12^0.01^~1~^~A~^^^1^0.38^0.54^6^0.43^0.49^~2, 3~^~08/01/2012~ -~22960~^~418~^0.16^6^9.0e-03^~1~^~A~^^^1^0.12^0.23^2^0.12^0.19^~2, 3~^~08/01/2012~ -~22961~^~203~^9.32^5^0.05^~1~^~A~^^^1^9.19^9.44^4^9.18^9.46^~2, 3~^~06/01/2009~ -~22961~^~204~^10.23^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22961~^~205~^30.68^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22961~^~207~^2.55^5^0.02^~1~^~A~^^^1^2.49^2.62^4^2.49^2.61^~2, 3~^~06/01/2009~ -~22961~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~22961~^~211~^0.97^2^^~1~^~A~^^^1^0.88^1.06^1^^^^~06/01/2009~ -~22961~^~212~^1.00^2^^~1~^~A~^^^1^0.87^1.13^1^^^^~06/01/2009~ -~22961~^~213~^0.95^2^^~1~^~A~^^^1^0.94^0.97^1^^^^~06/01/2009~ -~22961~^~214~^4.81^2^^~1~^~A~^^^1^4.75^4.87^1^^^^~06/01/2009~ -~22961~^~255~^47.21^5^0.08^~1~^~A~^^^1^47.00^47.42^4^46.98^47.43^~2, 3~^~06/01/2009~ -~22961~^~269~^7.73^2^^~1~^~A~^^^1^7.44^8.03^1^^^^~06/01/2009~ -~22961~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~22961~^~303~^2.08^5^0.04^~1~^~A~^^^1^1.95^2.20^4^1.94^2.20^~2, 3~^~06/01/2009~ -~22961~^~309~^0.99^5^0.01^~1~^~A~^^^1^0.94^1.04^4^0.94^1.03^~2, 3~^~06/01/2009~ -~22961~^~323~^0.69^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22961~^~341~^0.04^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~342~^1.50^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~343~^0.46^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~344~^0.01^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~345~^0.02^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~346~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~347~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~418~^0.60^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22962~^~203~^10.28^4^0.15^~1~^~A~^^^1^10.00^10.69^3^9.80^10.75^~2, 3~^~06/01/2009~ -~22962~^~204~^6.53^4^0.07^~1~^~A~^^^1^6.36^6.73^3^6.28^6.77^~2, 3~^~06/01/2009~ -~22962~^~205~^32.52^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~207~^2.19^4^0.02^~1~^~A~^^^1^2.15^2.27^3^2.10^2.27^~2, 3~^~06/01/2009~ -~22962~^~255~^48.48^4^0.20^~1~^~A~^^^1^47.87^48.75^3^47.82^49.13^~2, 3~^~06/01/2009~ -~22962~^~269~^7.60^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~303~^2.15^4^0.12^~1~^~A~^^^1^1.94^2.50^3^1.74^2.55^~2, 3~^~06/01/2009~ -~22962~^~309~^1.21^4^0.02^~1~^~A~^^^1^1.16^1.25^3^1.13^1.27^~2, 3~^~06/01/2009~ -~22962~^~323~^0.29^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~418~^0.44^4^0.02^~1~^~A~^^^1^0.39^0.49^3^0.37^0.50^~2, 3~^~06/01/2009~ -~22962~^~573~^0.00^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22962~^~578~^0.00^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22963~^~203~^10.49^5^0.16^~1~^~A~^^^1^10.00^10.88^4^10.03^10.93^~2, 3~^~06/01/2009~ -~22963~^~204~^7.70^5^0.16^~1~^~A~^^^1^7.29^8.23^4^7.26^8.14^~2, 3~^~06/01/2009~ -~22963~^~205~^32.28^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~207~^2.59^5^0.04^~1~^~A~^^^1^2.45^2.67^4^2.47^2.69^~2, 3~^~06/01/2009~ -~22963~^~210~^0.28^2^^~1~^~A~^^^1^0.00^0.55^1^^^~1~^~06/01/2009~ -~22963~^~211~^1.30^2^^~1~^~A~^^^1^1.19^1.42^1^^^^~06/01/2009~ -~22963~^~212~^1.24^2^^~1~^~A~^^^1^1.08^1.41^1^^^^~06/01/2009~ -~22963~^~213~^1.25^2^^~1~^~A~^^^1^1.22^1.28^1^^^^~06/01/2009~ -~22963~^~214~^4.74^2^^~1~^~A~^^^1^4.53^4.94^1^^^^~06/01/2009~ -~22963~^~255~^46.94^5^0.18^~1~^~A~^^^1^46.66^47.58^4^46.44^47.44^~2, 3~^~06/01/2009~ -~22963~^~269~^8.81^2^^~1~^~A~^^^1^8.58^9.04^1^^^^~06/01/2009~ -~22963~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~22963~^~303~^2.06^5^0.04^~1~^~A~^^^1^1.92^2.19^4^1.93^2.18^~2, 3~^~06/01/2009~ -~22963~^~309~^0.98^5^0.01^~1~^~A~^^^1^0.95^1.04^4^0.93^1.03^~2, 3~^~06/01/2009~ -~22963~^~418~^0.46^5^9.0e-03^~1~^~A~^^^1^0.44^0.49^4^0.43^0.48^~2, 3~^~06/01/2009~ -~22969~^~203~^5.85^9^0.08^~1~^~A~^^^1^5.50^6.37^6^5.62^6.06^~2, 3~^~03/01/2011~ -~22969~^~204~^3.68^9^0.11^~1~^~A~^^^1^2.90^4.30^7^3.42^3.95^~2, 3~^~03/01/2011~ -~22969~^~205~^10.88^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~207~^1.70^9^0.02^~1~^~A~^^^1^1.34^2.06^6^1.62^1.76^~2, 3~^~03/01/2011~ -~22969~^~209~^4.70^5^0.13^~1~^~A~^^^1^3.00^6.60^3^4.22^5.17^~2, 3~^~03/01/2011~ -~22969~^~210~^0.76^9^0.01^~1~^~A~^^^1^0.44^1.10^7^0.71^0.80^~2, 3~^~03/01/2011~ -~22969~^~211~^0.45^9^0.02^~1~^~A~^^^1^0.31^0.66^4^0.38^0.51^~2, 3~^~03/01/2011~ -~22969~^~212~^0.63^9^0.02^~1~^~A~^^^1^0.43^0.89^4^0.55^0.70^~2, 3~^~03/01/2011~ -~22969~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~255~^77.89^9^0.18^~1~^~A~^^^1^76.20^79.70^6^77.44^78.33^~2, 3~^~03/01/2011~ -~22969~^~269~^1.84^9^0.06^~1~^~A~^^^1^1.60^2.11^4^1.66^2.02^~2, 3~^~03/01/2011~ -~22969~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~303~^1.13^9^0.04^~1~^~A~^^^1^0.93^1.32^6^1.02^1.23^~2, 3~^~03/01/2011~ -~22969~^~309~^0.95^9^0.01^~1~^~A~^^^1^0.78^1.11^7^0.91^0.97^~2, 3~^~03/01/2011~ -~22969~^~323~^0.64^5^0.02^~1~^~A~^^^1^0.47^0.78^2^0.56^0.71^~2, 3~^~03/01/2011~ -~22969~^~341~^0.15^5^0.02^~1~^~A~^^^1^0.02^0.36^2^0.05^0.24^~2, 3~^~03/01/2011~ -~22969~^~342~^0.92^5^0.04^~1~^~A~^^^1^0.78^1.15^2^0.75^1.07^~2, 3~^~03/01/2011~ -~22969~^~343~^0.07^5^4.0e-03^~1~^~A~^^^1^0.03^0.12^1^0.02^0.11^~2, 3~^~03/01/2011~ -~22969~^~344~^0.07^5^6.0e-03^~1~^~A~^^^1^0.05^0.08^3^0.04^0.08^~2, 3~^~03/01/2011~ -~22969~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~346~^0.02^5^3.0e-03^~1~^~A~^^^1^0.00^0.04^2^4.0e-03^0.03^~1, 2, 3~^~03/01/2011~ -~22969~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~418~^0.32^9^0.01^~1~^~A~^^^1^0.22^0.38^5^0.29^0.35^~2, 3~^~03/01/2011~ -~22969~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22970~^~203~^5.60^20^0.03^~1~^~A~^^^1^4.50^6.75^14^5.52^5.68^~2, 3~^~03/01/2011~ -~22970~^~204~^6.41^20^0.08^~1~^~A~^^^1^3.60^7.80^6^6.19^6.62^~2, 3~^~03/01/2011~ -~22970~^~205~^17.28^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~207~^1.31^20^0.01^~1~^~A~^^^1^0.86^1.64^16^1.28^1.33^~2, 3~^~03/01/2011~ -~22970~^~209~^13.71^14^0.26^~1~^~A~^^^1^10.30^17.80^6^13.04^14.36^~2, 3~^~03/01/2011~ -~22970~^~210~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22970~^~211~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22970~^~212~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22970~^~213~^1.23^14^0.01^~1~^~A~^^^1^0.50^1.80^4^1.19^1.26^~2, 3~^~03/01/2011~ -~22970~^~214~^0.30^14^0.02^~1~^~A~^^^1^0.20^0.50^6^0.23^0.35^~2, 3~^~03/01/2011~ -~22970~^~255~^69.39^20^0.15^~1~^~A~^^^1^63.80^72.00^10^69.03^69.74^~2, 3~^~03/01/2011~ -~22970~^~269~^1.53^14^0.03^~1~^~A~^^^1^0.70^2.20^9^1.45^1.59^~2, 3~^~03/01/2011~ -~22970~^~287~^0.00^14^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22970~^~303~^0.57^20^0.03^~1~^~A~^^^1^0.25^1.07^4^0.47^0.66^~2, 3~^~03/01/2011~ -~22970~^~309~^0.80^20^0.01^~1~^~A~^^^1^0.57^1.01^14^0.76^0.82^~2, 3~^~03/01/2011~ -~22970~^~323~^0.25^7^0.02^~1~^~A~^^^1^0.18^0.35^2^0.13^0.36^~2, 3~^~03/01/2011~ -~22970~^~341~^0.04^7^4.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.02^0.05^~2, 3~^~03/01/2011~ -~22970~^~342~^1.04^7^0.15^~1~^~A~^^^1^0.00^2.19^2^0.39^1.67^~1, 2, 3~^~03/01/2011~ -~22970~^~343~^0.40^7^0.06^~1~^~A~^^^1^0.00^0.85^2^0.14^0.66^~1, 2, 3~^~03/01/2011~ -~22970~^~344~^0.04^7^5.0e-03^~1~^~A~^^^1^0.00^0.08^2^0.02^0.06^~1, 2, 3~^~03/01/2011~ -~22970~^~345~^0.27^7^0.01^~1~^~A~^^^1^0.12^0.44^3^0.21^0.32^~2, 3~^~03/01/2011~ -~22970~^~346~^0.02^7^0.01^~1~^~A~^^^1^0.00^0.09^1^-0.07^0.11^~1, 2, 3~^~03/01/2011~ -~22970~^~347~^0.02^7^3.0e-03^~1~^~A~^^^1^0.00^0.03^3^9.0e-03^0.02^~1, 2, 3~^~03/01/2011~ -~22970~^~418~^0.12^14^7.0e-03^~1~^~A~^^^1^0.05^0.18^11^0.10^0.13^~2, 3~^~03/01/2011~ -~22970~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22970~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~203~^1.96^11^0.17^~1~^~A~^^^1^1.37^3.69^10^1.56^2.36^~2, 3~^~03/01/2011~ -~22971~^~204~^9.40^10^0.87^~1~^~A~^^^1^4.80^14.90^9^7.42^11.38^~2, 3~^~03/01/2011~ -~22971~^~205~^16.18^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~207~^1.47^10^0.06^~1~^~A~^^^1^1.20^1.77^9^1.31^1.62^~2, 3~^~03/01/2011~ -~22971~^~209~^8.48^6^0.10^~1~^~A~^^^1^8.10^8.80^5^8.20^8.74^~2, 3~^~03/01/2011~ -~22971~^~210~^1.70^6^0.67^~1~^~A~^^^1^0.00^4.25^5^-0.02^3.43^~1, 2, 3~^~03/01/2011~ -~22971~^~211~^1.54^6^0.33^~1~^~A~^^^1^0.61^2.98^5^0.68^2.40^~2, 3~^~03/01/2011~ -~22971~^~212~^1.31^6^0.28^~1~^~A~^^^1^0.43^2.48^5^0.59^2.03^~2, 3~^~03/01/2011~ -~22971~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~214~^0.39^6^0.28^~1~^~A~^^^1^0.00^1.68^5^-0.32^1.10^~1, 2, 3~^~03/01/2011~ -~22971~^~255~^70.99^10^0.65^~1~^~A~^^^1^68.40^75.30^9^69.51^72.46^~2, 3~^~03/01/2011~ -~22971~^~269~^4.95^6^0.64^~1~^~A~^^^1^2.90^7.68^5^3.29^6.61^~2, 3~^~03/01/2011~ -~22971~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~303~^0.50^10^0.03^~1~^~A~^^^1^0.38^0.78^9^0.40^0.58^~2, 3~^~03/01/2011~ -~22971~^~309~^0.33^10^0.02^~1~^~A~^^^1^0.22^0.47^9^0.27^0.38^~2, 3~^~03/01/2011~ -~22971~^~323~^0.68^3^0.14^~1~^~A~^^^1^0.51^0.98^2^0.04^1.32^~2, 3~^~03/01/2011~ -~22971~^~341~^0.17^3^0.02^~1~^~A~^^^1^0.14^0.23^2^0.05^0.28^~2, 3~^~03/01/2011~ -~22971~^~342~^5.74^3^0.94^~1~^~A~^^^1^4.41^7.57^2^1.67^9.80^~2, 3~^~03/01/2011~ -~22971~^~343~^2.23^3^0.37^~1~^~A~^^^1^1.63^2.91^2^0.63^3.82^~2, 3~^~03/01/2011~ -~22971~^~344~^0.00^3^2.0e-03^~1~^~A~^^^1^0.00^0.01^2^-7.0e-03^0.01^~1, 2, 3~^~03/01/2011~ -~22971~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~346~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~03/01/2011~ -~22971~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~418~^0.07^6^0.01^~1~^~A~^^^1^0.03^0.14^5^0.03^0.11^~2, 3~^~03/01/2011~ -~22971~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~22971~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~203~^13.19^11^0.15^~1~^~A~^^^1^11.12^15.44^9^12.84^13.53^~2, 3~^~03/01/2011~ -~22972~^~204~^4.42^11^0.62^~1~^~A~^^^1^2.80^10.70^4^2.71^6.13^~2, 3~^~03/01/2011~ -~22972~^~205~^18.74^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~207~^2.65^11^0.05^~1~^~A~^^^1^2.18^3.01^6^2.52^2.77^~2, 3~^~03/01/2011~ -~22972~^~209~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~210~^3.38^11^0.64^~1~^~A~^^^1^1.49^7.81^4^1.58^5.18^~2, 3~^~03/01/2011~ -~22972~^~211~^6.36^11^0.48^~1~^~A~^^^1^3.18^8.48^4^5.01^7.70^~2, 3~^~03/01/2011~ -~22972~^~212~^5.46^11^0.41^~1~^~A~^^^1^2.61^7.15^4^4.30^6.60^~2, 3~^~03/01/2011~ -~22972~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~214~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~255~^60.99^11^0.35^~1~^~A~^^^1^56.40^65.20^7^60.16^61.82^~2, 3~^~03/01/2011~ -~22972~^~269~^15.20^11^0.33^~1~^~A~^^^1^13.60^17.30^5^14.32^16.07^~2, 3~^~03/01/2011~ -~22972~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~303~^1.24^11^0.04^~1~^~A~^^^1^0.98^1.40^7^1.13^1.33^~2, 3~^~03/01/2011~ -~22972~^~309~^1.85^11^0.02^~1~^~A~^^^1^1.32^2.28^7^1.78^1.91^~2, 3~^~03/01/2011~ -~22972~^~323~^0.89^5^0.07^~1~^~A~^^^1^0.68^1.04^1^0.26^1.51^~2, 3~^~03/01/2011~ -~22972~^~341~^0.01^5^3.0e-03^~1~^~A~^^^1^0.00^0.03^2^-2.0e-03^0.02^~2, 3~^~03/01/2011~ -~22972~^~342~^0.30^5^0.01^~1~^~A~^^^1^0.10^0.52^1^0.16^0.43^~2, 3~^~03/01/2011~ -~22972~^~343~^0.01^5^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-8.0e-03^0.01^~1, 2, 3~^~03/01/2011~ -~22972~^~344~^0.02^5^4.0e-03^~1~^~A~^^^1^0.01^0.04^1^-9.0e-03^0.05^~2, 3~^~03/01/2011~ -~22972~^~345~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~346~^0.01^5^5.0e-03^~1~^~A~^^^1^0.00^0.02^1^-0.03^0.05^~1, 2, 3~^~03/01/2011~ -~22972~^~347~^0.01^5^0.00^~1~^~A~^^^1^0.00^0.02^1^7.0e-03^0.01^~1, 2, 3~^~03/01/2011~ -~22972~^~418~^0.41^11^0.01^~1~^~A~^^^1^0.30^0.52^9^0.38^0.43^~2, 3~^~03/01/2011~ -~22972~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22973~^~203~^8.57^12^0.14^~1~^~A~^^^1^6.50^9.31^4^8.18^8.96^~2, 3~^~07/01/2014~ -~22973~^~204~^12.02^12^0.42^~1~^~A~^^^1^11.30^14.60^4^10.84^13.19^~2, 3~^~07/01/2014~ -~22973~^~205~^26.96^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~207~^2.13^12^0.08^~1~^~A~^^^1^1.65^2.48^4^1.90^2.35^~2, 3~^~07/01/2014~ -~22973~^~209~^17.61^8^0.51^~1~^~A~^^^1^15.60^22.60^4^16.09^19.12^~2, 3~^~07/01/2014~ -~22973~^~210~^6.23^8^0.66^~1~^~A~^^^1^3.74^9.93^3^4.14^8.32^~2, 3~^~07/01/2014~ -~22973~^~211~^0.62^8^0.05^~1~^~A~^^^1^0.41^2.19^5^0.48^0.76^~2, 3~^~07/01/2014~ -~22973~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~214~^0.69^8^0.17^~1~^~A~^^^1^0.29^1.51^3^0.14^1.23^~2, 3~^~07/01/2014~ -~22973~^~255~^50.32^12^0.21^~1~^~A~^^^1^39.70^51.80^8^49.82^50.82^~2, 3~^~07/01/2014~ -~22973~^~269~^7.54^8^0.50^~1~^~A~^^^1^5.50^12.00^3^5.97^9.11^~2, 3~^~07/01/2014~ -~22973~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~303~^1.90^12^0.07^~1~^~A~^^^1^1.65^2.16^4^1.70^2.09^~2, 3~^~07/01/2014~ -~22973~^~309~^0.85^12^0.03^~1~^~A~^^^1^0.71^1.01^4^0.74^0.95^~2, 3~^~07/01/2014~ -~22973~^~323~^0.60^6^0.14^~1~^~A~^^^1^0.19^0.88^2^-0.03^1.23^~2, 3~^~07/01/2014~ -~22973~^~341~^0.04^6^0.01^~1~^~A~^^^1^0.03^0.07^2^4.0e-03^0.08^~2, 3~^~07/01/2014~ -~22973~^~342~^0.89^6^0.05^~1~^~A~^^^1^0.72^1.03^2^0.65^1.12^~2, 3~^~07/01/2014~ -~22973~^~343~^0.39^6^0.16^~1~^~A~^^^1^0.20^0.77^2^-0.31^1.08^~2, 3~^~07/01/2014~ -~22973~^~344~^0.04^6^5.0e-03^~1~^~A~^^^1^0.03^0.07^2^0.02^0.06^~2, 3~^~07/01/2014~ -~22973~^~345~^0.19^6^0.01^~1~^~A~^^^1^0.17^0.26^2^0.14^0.23^~2, 3~^~07/01/2014~ -~22973~^~346~^0.06^6^0.01^~1~^~A~^^^1^0.04^0.08^2^0.01^0.11^~2, 3~^~04/01/2011~ -~22973~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~418~^0.48^6^0.05^~1~^~A~^^^1^0.38^0.63^2^0.22^0.72^~2, 3~^~07/01/2014~ -~22973~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22973~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22974~^~203~^12.02^15^0.16^~1~^~A~^^^1^11.12^14.50^8^11.63^12.39^~2, 3~^~04/01/2016~ -~22974~^~204~^17.31^15^0.32^~1~^~A~^^^1^11.81^20.04^6^16.51^18.09^~2, 3~^~04/01/2016~ -~22974~^~205~^16.09^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~22974~^~207~^2.23^15^0.08^~1~^~A~^^^1^1.65^3.62^7^2.01^2.44^~2, 3~^~04/01/2016~ -~22974~^~209~^15.13^9^0.84^~1~^~A~^^^1^12.40^17.30^2^11.73^18.53^~2, 3~^~04/01/2016~ -~22974~^~210~^0.22^9^7.0e-03^~1~^~A~^^^1^0.00^0.90^2^0.19^0.25^~1, 2, 3~^~04/01/2016~ -~22974~^~211~^0.16^9^8.0e-03^~1~^~A~^^^1^0.00^0.57^2^0.12^0.19^~1, 2, 3~^~04/01/2016~ -~22974~^~212~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~22974~^~214~^0.33^9^0.02^~1~^~A~^^^1^0.18^0.49^3^0.23^0.42^~1, 2, 3~^~04/01/2016~ -~22974~^~255~^52.36^14^0.72^~1~^~A~^^^1^46.10^58.28^6^50.61^54.10^~2, 3~^~04/01/2016~ -~22974~^~269~^0.72^9^0.02^~1~^~A~^^^1^0.18^1.68^3^0.62^0.81^~2, 3~^~04/01/2016~ -~22974~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~22974~^~303~^0.95^15^0.01^~1~^~A~^^^1^0.57^1.66^8^0.91^0.99^~2, 3~^~04/01/2016~ -~22974~^~309~^0.78^15^0.01^~1~^~A~^^^1^0.56^1.13^3^0.73^0.82^~2, 3~^~04/01/2016~ -~22974~^~323~^1.92^9^0.07^~1~^~A~^^^1^1.26^3.81^2^1.62^2.22^~2, 3~^~04/01/2016~ -~22974~^~341~^0.20^9^0.01^~1~^~A~^^^1^0.15^0.25^3^0.17^0.22^~2, 3~^~04/01/2016~ -~22974~^~342~^5.76^9^0.28^~1~^~A~^^^1^4.12^8.27^5^5.00^6.51^~2, 3~^~04/01/2016~ -~22974~^~343~^1.27^9^0.05^~1~^~A~^^^1^0.32^2.22^3^1.09^1.45^~2, 3~^~04/01/2016~ -~22974~^~344~^0.12^9^8.0e-03^~1~^~A~^^^1^0.05^0.28^4^0.09^0.14^~2, 3~^~04/01/2016~ -~22974~^~345~^0.18^9^0.02^~1~^~A~^^^1^0.09^0.30^2^0.08^0.27^~2, 3~^~04/01/2016~ -~22974~^~346~^0.04^9^5.0e-03^~1~^~A~^^^1^0.00^0.19^2^0.02^0.06^~1, 2, 3~^~04/01/2016~ -~22974~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~418~^0.23^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2017~ -~22974~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22974~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~203~^14.36^14^0.50^~1~^~A~^^^1^10.44^16.19^4^12.99^15.71^~2, 3~^~05/01/2013~ -~22975~^~204~^15.42^14^0.42^~1~^~A~^^^1^12.01^20.51^6^14.39^16.43^~2, 3~^~05/01/2013~ -~22975~^~205~^16.24^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22975~^~207~^2.09^14^0.03^~1~^~A~^^^1^1.74^2.43^6^2.01^2.17^~2, 3~^~05/01/2013~ -~22975~^~209~^13.27^4^0.57^~1~^~A~^^^1^11.80^14.60^3^11.44^15.11^~2, 3~^~08/01/2010~ -~22975~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~22975~^~211~^0.56^4^0.13^~1~^~A~^^^1^0.38^0.96^3^0.13^0.99^~2, 3~^~08/01/2010~ -~22975~^~212~^0.28^4^0.05^~1~^~A~^^^1^0.19^0.41^3^0.09^0.46^~1, 2, 3~^~08/01/2010~ -~22975~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~22975~^~214~^0.42^4^0.09^~1~^~A~^^^1^0.19^0.63^3^0.12^0.71^~1, 2, 3~^~08/01/2010~ -~22975~^~255~^51.90^14^0.56^~1~^~A~^^^1^46.26^59.06^6^50.53^53.25^~2, 3~^~05/01/2013~ -~22975~^~269~^1.27^4^0.25^~1~^~A~^^^1^0.88^2.00^3^0.46^2.07^~2, 3~^~08/01/2010~ -~22975~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2010~ -~22975~^~303~^1.43^14^0.04^~1~^~A~^^^1^0.53^1.67^6^1.31^1.54^~2, 3~^~05/01/2013~ -~22975~^~309~^0.75^14^0.08^~1~^~A~^^^1^0.52^1.19^4^0.51^0.98^~2, 3~^~05/01/2013~ -~22975~^~323~^1.18^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~418~^0.23^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~573~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~578~^0.00^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22976~^~203~^4.52^15^0.09^~1~^~A~^^^1^3.93^5.34^14^4.31^4.73^~2, 3~^~04/01/2011~ -~22976~^~204~^2.61^15^0.15^~1~^~A~^^^1^2.20^4.30^14^2.27^2.93^~2, 3~^~04/01/2011~ -~22976~^~205~^17.31^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~207~^1.23^15^0.03^~1~^~A~^^^1^1.02^1.40^14^1.15^1.30^~2, 3~^~04/01/2011~ -~22976~^~209~^10.10^11^0.22^~1~^~A~^^^1^8.80^11.20^10^9.59^10.60^~2, 3~^~04/01/2011~ -~22976~^~210~^0.51^9^0.04^~1~^~A~^^^1^0.18^0.70^8^0.40^0.62^~1, 2, 3~^~04/01/2011~ -~22976~^~211~^1.10^9^0.06^~1~^~A~^^^1^0.79^1.35^8^0.94^1.24^~2, 3~^~04/01/2011~ -~22976~^~212~^1.08^9^0.07^~1~^~A~^^^1^0.79^1.42^8^0.90^1.26^~2, 3~^~04/01/2011~ -~22976~^~213~^1.10^9^0.06^~1~^~A~^^^1^0.87^1.40^8^0.96^1.24^~2, 3~^~04/01/2011~ -~22976~^~214~^0.29^9^0.05^~1~^~A~^^^1^0.18^0.61^8^0.17^0.41^~1, 2, 3~^~04/01/2011~ -~22976~^~255~^74.33^15^0.39^~1~^~A~^^^1^71.80^77.10^14^73.48^75.16^~2, 3~^~04/01/2011~ -~22976~^~269~^4.09^9^0.22^~1~^~A~^^^1^3.36^5.12^8^3.56^4.60^~2, 3~^~04/01/2011~ -~22976~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~303~^0.93^15^0.04^~1~^~A~^^^1^0.60^1.42^14^0.83^1.03^~2, 3~^~04/01/2011~ -~22976~^~309~^0.43^15^0.01^~1~^~A~^^^1^0.34^0.52^14^0.40^0.46^~2, 3~^~04/01/2011~ -~22976~^~323~^0.98^9^0.10^~1~^~A~^^^1^0.61^1.47^8^0.74^1.22^~2, 3~^~04/01/2011~ -~22976~^~341~^0.04^9^3.0e-03^~1~^~A~^^^1^0.03^0.05^8^0.03^0.04^~2, 3~^~04/01/2011~ -~22976~^~342~^0.32^9^0.11^~1~^~A~^^^1^0.07^0.80^8^0.06^0.56^~2, 3~^~04/01/2011~ -~22976~^~343~^0.06^9^0.02^~1~^~A~^^^1^0.00^0.20^8^-7.0e-03^0.12^~1, 2, 3~^~04/01/2011~ -~22976~^~344~^0.02^9^3.0e-03^~1~^~A~^^^1^0.01^0.04^8^0.01^0.03^~2, 3~^~04/01/2011~ -~22976~^~345~^0.20^9^0.01^~1~^~A~^^^1^0.12^0.26^8^0.17^0.23^~2, 3~^~04/01/2011~ -~22976~^~346~^0.00^9^2.0e-03^~1~^~A~^^^1^0.00^0.01^8^-2.0e-03^5.0e-03^~1, 2, 3~^~04/01/2011~ -~22976~^~347~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~418~^0.14^6^0.01^~1~^~A~^^^1^0.11^0.18^5^0.11^0.17^~2, 3~^~04/01/2011~ -~22976~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~22976~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22977~^~203~^7.28^12^0.17^~1~^~A~^^^1^6.00^7.77^6^6.83^7.71^~2, 3~^~06/01/2012~ -~22977~^~204~^4.92^12^0.24^~1~^~A~^^^1^3.70^6.37^8^4.34^5.49^~2, 3~^~06/01/2012~ -~22977~^~205~^15.36^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~207~^1.57^12^0.04^~1~^~A~^^^1^1.26^1.84^6^1.46^1.68^~2, 3~^~06/01/2012~ -~22977~^~209~^9.83^6^0.10^~1~^~A~^^^1^9.00^10.20^3^9.51^10.15^~2, 3~^~06/01/2012~ -~22977~^~210~^0.54^6^8.0e-03^~1~^~A~^^^1^0.45^0.74^2^0.50^0.57^~2, 3~^~06/01/2012~ -~22977~^~211~^0.93^6^0.02^~1~^~A~^^^1^0.77^1.07^3^0.84^1.02^~2, 3~^~06/01/2012~ -~22977~^~212~^1.04^6^0.02^~1~^~A~^^^1^0.81^1.22^2^0.92^1.14^~2, 3~^~06/01/2012~ -~22977~^~213~^0.60^6^0.04^~1~^~A~^^^1^0.18^1.29^2^0.43^0.76^~1, 2, 3~^~06/01/2012~ -~22977~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~255~^70.87^12^0.29^~1~^~A~^^^1^69.05^72.90^8^70.18^71.54^~2, 3~^~06/01/2012~ -~22977~^~269~^3.11^6^0.05^~1~^~A~^^^1^2.68^3.76^3^2.93^3.28^~2, 3~^~06/01/2012~ -~22977~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~303~^0.71^12^0.01^~1~^~A~^^^1^0.61^0.83^9^0.67^0.73^~2, 3~^~06/01/2012~ -~22977~^~309~^0.87^12^0.01^~1~^~A~^^^1^0.78^0.95^6^0.84^0.89^~2, 3~^~06/01/2012~ -~22977~^~323~^0.85^6^0.06^~1~^~A~^^^1^0.61^1.10^2^0.60^1.09^~2, 3~^~06/01/2012~ -~22977~^~341~^0.04^6^0.01^~1~^~A~^^^1^0.00^0.09^2^-0.01^0.09^~1, 2, 3~^~06/01/2012~ -~22977~^~342~^0.11^6^5.0e-03^~1~^~A~^^^1^0.07^0.14^2^0.08^0.13^~2, 3~^~06/01/2012~ -~22977~^~343~^0.03^6^0.02^~1~^~A~^^^1^0.00^0.24^2^-0.09^0.14^~1, 2, 3~^~06/01/2012~ -~22977~^~344~^0.02^6^2.0e-03^~1~^~A~^^^1^0.02^0.04^4^0.02^0.02^~2, 3~^~06/01/2012~ -~22977~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~346~^0.05^6^0.02^~1~^~A~^^^1^0.00^0.23^2^-0.05^0.15^~1, 2, 3~^~06/01/2012~ -~22977~^~347~^0.01^6^9.0e-03^~1~^~A~^^^1^0.00^0.08^2^-0.03^0.04^~1, 2, 3~^~06/01/2012~ -~22977~^~418~^0.33^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~22977~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22977~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~203~^14.62^13^0.20^~1~^~A~^^^1^11.50^15.56^1^13.19^16.03^~2, 3~^~07/01/2014~ -~22978~^~204~^13.58^13^0.14^~1~^~A~^^^1^11.30^16.08^5^13.20^13.96^~2, 3~^~07/01/2014~ -~22978~^~205~^14.86^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~207~^2.11^13^0.03^~1~^~A~^^^1^1.77^2.83^3^2.01^2.20^~2, 3~^~07/01/2014~ -~22978~^~209~^13.19^7^0.29^~1~^~A~^^^1^12.00^16.70^1^11.10^15.27^~2, 3~^~07/01/2014~ -~22978~^~210~^0.33^2^^~1~^~A~^^^1^0.00^0.80^^^^~1~^~07/01/2014~ -~22978~^~211~^0.12^2^^~1~^~A~^^^1^0.00^0.30^^^^~1~^~07/01/2014~ -~22978~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2012~ -~22978~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2012~ -~22978~^~214~^0.12^2^^~1~^~A~^^^1^0.00^0.30^^^^~1~^~07/01/2014~ -~22978~^~255~^54.83^13^0.78^~1~^~A~^^^1^50.98^57.36^1^48.06^61.60^~2, 3~^~07/01/2014~ -~22978~^~269~^0.57^2^^~1~^~A~^^^1^0.00^1.40^^^^^~07/01/2014~ -~22978~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2012~ -~22978~^~303~^0.84^13^0.07^~1~^~A~^^^1^0.54^2.29^3^0.60^1.07^~2, 3~^~07/01/2014~ -~22978~^~309~^0.61^13^5.0e-03^~1~^~A~^^^1^0.55^0.85^5^0.59^0.61^~2, 3~^~07/01/2014~ -~22978~^~323~^2.22^7^0.09^~1~^~A~^^^1^0.91^3.50^1^1.46^2.97^~2, 3~^~07/01/2014~ -~22978~^~341~^0.13^7^3.0e-03^~1~^~A~^^^1^0.10^0.15^1^0.08^0.16^~2, 3~^~07/01/2014~ -~22978~^~342~^6.46^7^0.05^~1~^~A~^^^1^4.69^7.49^2^6.23^6.67^~2, 3~^~07/01/2014~ -~22978~^~343~^0.87^7^0.14^~1~^~A~^^^1^0.19^2.08^1^-1.00^2.74^~2, 3~^~07/01/2014~ -~22978~^~344~^0.12^7^8.0e-03^~1~^~A~^^^1^0.00^0.19^1^0.03^0.21^~1, 2, 3~^~07/01/2014~ -~22978~^~345~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~346~^0.56^7^6.0e-03^~1~^~A~^^^1^0.00^0.84^2^0.53^0.59^~1, 2, 3~^~07/01/2014~ -~22978~^~347~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~418~^0.18^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22978~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~22998~^~203~^10.64^6^0.13^~1~^~A~^^^1^10.06^11.00^5^10.28^10.98^~2, 3~^~08/01/2012~ -~22998~^~204~^1.04^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22998~^~205~^76.08^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22998~^~207~^4.05^6^0.16^~1~^~A~^^^1^3.60^4.62^5^3.62^4.48^~2, 3~^~08/01/2012~ -~22998~^~209~^71.60^3^0.75^~1~^~A~^^^1^70.10^72.50^2^68.35^74.84^~2, 3~^~08/01/2012~ -~22998~^~210~^1.30^3^0.10^~1~^~A~^^^1^1.20^1.50^2^0.87^1.73^~2, 3~^~08/01/2012~ -~22998~^~211~^0.27^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.12^0.41^~2, 3~^~08/01/2012~ -~22998~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22998~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22998~^~214~^0.83^3^0.03^~1~^~A~^^^1^0.80^0.90^2^0.69^0.97^~2, 3~^~08/01/2012~ -~22998~^~255~^8.19^6^0.15^~1~^~A~^^^1^7.72^8.70^5^7.80^8.58^~2, 3~^~08/01/2012~ -~22998~^~269~^0.70^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22998~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22998~^~303~^2.77^6^0.14^~1~^~A~^^^1^2.38^3.18^5^2.40^3.12^~2, 3~^~08/01/2012~ -~22998~^~309~^1.36^6^0.01^~1~^~A~^^^1^1.30^1.41^5^1.31^1.40^~2, 3~^~08/01/2012~ -~22998~^~323~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.18^2^0.09^0.21^~2, 3~^~08/01/2012~ -~22998~^~341~^0.04^3^8.0e-03^~1~^~A~^^^1^0.03^0.06^2^8.0e-03^0.08^~2, 3~^~08/01/2012~ -~22998~^~342~^0.14^3^0.01^~1~^~A~^^^1^0.12^0.17^2^0.07^0.21^~2, 3~^~08/01/2012~ -~22998~^~343~^0.04^3^0.01^~1~^~A~^^^1^0.03^0.06^2^3.0e-03^0.08^~2, 3~^~08/01/2012~ -~22998~^~344~^0.07^3^9.0e-03^~1~^~A~^^^1^0.05^0.09^2^0.02^0.10^~2, 3~^~08/01/2012~ -~22998~^~345~^0.24^3^0.03^~1~^~A~^^^1^0.18^0.28^2^0.10^0.37^~2, 3~^~08/01/2012~ -~22998~^~346~^0.22^3^0.01^~1~^~A~^^^1^0.21^0.24^2^0.18^0.26^~2, 3~^~08/01/2012~ -~22998~^~347~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~08/01/2012~ -~22998~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22998~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2012~ -~22999~^~203~^2.65^6^0.08^~1~^~A~^^^1^2.31^2.81^5^2.42^2.87^~2, 3~^~08/01/2012~ -~22999~^~204~^3.45^6^0.09^~1~^~A~^^^1^3.10^3.80^5^3.19^3.70^~2, 3~^~08/01/2012~ -~22999~^~205~^23.54^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~207~^1.03^6^0.01^~1~^~A~^^^1^0.97^1.08^5^0.98^1.06^~2, 3~^~08/01/2012~ -~22999~^~209~^20.40^3^0.15^~1~^~A~^^^1^20.10^20.60^2^19.74^21.05^~2, 3~^~08/01/2012~ -~22999~^~210~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~08/01/2012~ -~22999~^~211~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~214~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~08/01/2012~ -~22999~^~255~^69.33^6^0.51^~1~^~A~^^^1^67.20^70.80^5^68.01^70.65^~2, 3~^~08/01/2012~ -~22999~^~269~^0.64^3^0.03^~1~^~A~^^^1^0.57^0.67^2^0.49^0.78^~2, 3~^~08/01/2012~ -~22999~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~303~^0.95^6^0.05^~1~^~A~^^^1^0.77^1.16^5^0.81^1.07^~2, 3~^~08/01/2012~ -~22999~^~309~^0.46^6^0.02^~1~^~A~^^^1^0.41^0.56^5^0.40^0.52^~2, 3~^~08/01/2012~ -~22999~^~323~^0.27^3^9.0e-03^~1~^~A~^^^1^0.25^0.28^2^0.22^0.31^~2, 3~^~08/01/2012~ -~22999~^~341~^0.06^3^2.0e-03^~1~^~A~^^^1^0.06^0.06^2^0.05^0.06^~2, 3~^~08/01/2012~ -~22999~^~342~^2.41^3^0.04^~1~^~A~^^^1^2.32^2.48^2^2.21^2.61^~2, 3~^~08/01/2012~ -~22999~^~343~^1.14^3^0.11^~1~^~A~^^^1^0.99^1.36^2^0.65^1.62^~2, 3~^~08/01/2012~ -~22999~^~344~^0.02^3^3.0e-03^~1~^~A~^^^1^0.02^0.03^2^9.0e-03^0.03^~2, 3~^~08/01/2012~ -~22999~^~345~^0.06^3^1.0e-03^~1~^~A~^^^1^0.06^0.07^2^0.05^0.06^~2, 3~^~08/01/2012~ -~22999~^~346~^0.07^3^1.0e-03^~1~^~A~^^^1^0.07^0.07^2^0.06^0.07^~2, 3~^~08/01/2012~ -~22999~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~23000~^~203~^21.39^70^0.13^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~204~^4.97^70^0.42^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23000~^~207~^1.13^70^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~255~^72.58^70^0.44^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~303~^2.62^6^0.02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~309~^6.78^6^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~323~^0.18^6^2.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~418~^2.73^6^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23001~^~203~^20.49^36^0.29^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~204~^14.06^36^0.33^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23001~^~207~^0.94^36^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~255~^64.67^36^0.77^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~303~^1.98^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~309~^3.15^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~323~^0.24^0^^~4~^~BFFN~^~13911~^^^^^^^^^~03/01/2013~ -~23001~^~418~^1.81^6^0.04^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23001~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~203~^25.40^36^0.68^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~204~^18.57^36^0.28^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23002~^~207~^0.98^36^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~255~^55.60^36^0.82^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~303~^3.00^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~309~^4.13^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~323~^0.24^0^^~4~^~BFFN~^~13910~^^^^^^^^^~03/01/2013~ -~23002~^~418~^2.03^6^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23002~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~203~^20.69^12^0.33^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~204~^13.27^12^0.55^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23003~^~207~^0.95^12^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~255~^65.49^12^0.84^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~303~^2.13^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~309~^3.09^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~323~^0.20^0^^~4~^~BFSN~^~13913~^^^^^^^^^~03/01/2013~ -~23003~^~418~^1.83^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23003~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~203~^26.21^12^0.72^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~204~^16.75^12^0.46^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23004~^~207~^1.03^12^0.03^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~255~^56.87^12^0.90^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~303~^3.20^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~309~^4.26^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~323~^0.21^0^^~4~^~BFFN~^~13914~^^^^^^^^^~03/01/2013~ -~23004~^~418~^2.07^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~203~^20.11^36^0.39^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~204~^15.18^36^0.67^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23005~^~207~^0.92^36^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~255~^64.06^36^0.72^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~303~^1.64^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~309~^3.32^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~323~^0.22^0^^~4~^~BFSN~^~13909~^^^^^^^^^~03/01/2013~ -~23005~^~418~^1.68^6^0.06^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~203~^24.60^36^0.42^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~204~^20.36^36^0.71^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23006~^~207~^0.96^36^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~255~^54.50^36^0.78^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~303~^3.24^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~309~^3.96^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~323~^0.23^0^^~4~^~BFSN~^~13910~^^^^^^^^^~03/01/2013~ -~23006~^~418~^1.85^6^0.04^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~203~^20.28^12^0.42^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~204~^14.19^12^0.84^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23007~^~207~^0.92^12^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~255~^65.00^12^0.81^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~303~^1.73^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~309~^3.43^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~323~^0.20^0^^~4~^~BFSN~^~13913~^^^^^^^^^~03/01/2013~ -~23007~^~418~^1.70^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~203~^25.18^12^0.48^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~204~^19.22^12^0.93^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/1995~ -~23008~^~207~^0.99^12^0.02^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~255~^55.38^12^0.90^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~303~^3.32^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~309~^3.86^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~323~^0.21^0^^~4~^~BFSN~^~13914~^^^^^^^^^~03/01/2013~ -~23008~^~418~^1.94^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23030~^~203~^21.41^8^^~1~^~A~^^^1^20.55^22.26^^^^~2~^~01/01/2005~ -~23030~^~204~^4.66^8^^~1~^~A~^^^1^3.90^5.60^^^^~2~^~01/01/2005~ -~23030~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23030~^~207~^1.05^8^^~1~^~A~^^^1^0.88^1.13^^^^~2~^~01/01/2005~ -~23030~^~255~^73.00^8^^~1~^~A~^^^1^71.61^73.84^^^^~2~^~01/01/2005~ -~23030~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~303~^2.14^2^^~1~^~A~^^^1^2.07^2.21^^^^^~01/01/2005~ -~23030~^~309~^4.97^2^^~1~^~A~^^^1^4.39^5.56^^^^^~01/01/2005~ -~23030~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23030~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23030~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23030~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23030~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23030~^~418~^3.17^2^^~1~^~A~^^^1^2.72^3.62^^^^^~01/01/2005~ -~23030~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~203~^28.79^8^^~1~^~A~^^^1^27.86^29.76^^^^~2~^~01/01/2005~ -~23031~^~204~^5.71^8^^~1~^~A~^^^1^5.03^7.14^^^^~2~^~01/01/2005~ -~23031~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23031~^~207~^1.15^8^^~1~^~A~^^^1^1.03^1.23^^^^~2~^~01/01/2005~ -~23031~^~255~^65.10^8^^~1~^~A~^^^1^64.11^65.95^^^^~2~^~01/01/2005~ -~23031~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~303~^2.67^2^^~1~^~A~^^^1^2.45^2.88^^^^^~01/01/2005~ -~23031~^~309~^6.84^2^^~1~^~A~^^^1^5.84^7.85^^^^^~01/01/2005~ -~23031~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23031~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23031~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23031~^~418~^4.25^2^^~1~^~A~^^^1^3.73^4.77^^^^^~01/01/2005~ -~23031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23032~^~203~^21.96^5^^~1~^~A~^^^1^21.58^22.22^^^^~2~^~01/01/2005~ -~23032~^~204~^3.24^5^^~1~^~A~^^^1^2.01^3.91^^^^~2~^~01/01/2005~ -~23032~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2005~ -~23032~^~207~^1.12^5^^~1~^~A~^^^1^1.09^1.14^^^^~2~^~01/01/2005~ -~23032~^~255~^73.52^5^^~1~^~A~^^^1^73.25^73.99^^^^~2~^~01/01/2005~ -~23032~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~303~^2.38^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~309~^5.74^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~323~^0.17^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~344~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23032~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23032~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23032~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23032~^~418~^2.87^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~203~^29.24^5^^~1~^~A~^^^1^27.86^30.79^^^^~2~^~01/01/2005~ -~23033~^~204~^3.91^5^^~1~^~A~^^^1^2.96^5.75^^^^~2~^~01/01/2005~ -~23033~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23033~^~207~^1.17^5^^~1~^~A~^^^1^1.09^1.22^^^^~2~^~01/01/2005~ -~23033~^~255~^66.28^5^^~1~^~A~^^^1^65.61^67.23^^^^~2~^~01/01/2005~ -~23033~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~303~^2.98^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~309~^8.06^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~323~^0.19^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23033~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23033~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23033~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23033~^~344~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23033~^~418~^4.04^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23034~^~203~^20.51^8^^~1~^~A~^^^1^19.18^22.11^^^^~2~^~01/01/2005~ -~23034~^~204~^6.36^8^^~1~^~A~^^^1^4.98^7.61^^^^~2~^~01/01/2005~ -~23034~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23034~^~207~^0.91^8^^~1~^~A~^^^1^0.73^1.05^^^^~2~^~01/01/2005~ -~23034~^~255~^72.87^8^^~1~^~A~^^^1^72.34^73.52^^^^~2~^~01/01/2005~ -~23034~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~303~^2.01^2^^~1~^~A~^^^1^1.95^2.08^^^^^~01/01/2005~ -~23034~^~309~^3.98^2^^~1~^~A~^^^1^3.72^4.24^^^^^~01/01/2005~ -~23034~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23034~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23034~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23034~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23034~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23034~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23034~^~418~^3.98^2^^~1~^~A~^^^1^3.97^3.99^^^^^~01/01/2005~ -~23034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~203~^26.07^8^^~1~^~A~^^^1^24.56^27.52^^^^~2~^~01/01/2005~ -~23035~^~204~^7.68^8^^~1~^~A~^^^1^5.64^10.18^^^^~2~^~01/01/2005~ -~23035~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23035~^~207~^1.03^8^^~1~^~A~^^^1^0.93^1.07^^^^~2~^~01/01/2005~ -~23035~^~255~^65.57^8^^~1~^~A~^^^1^63.79^66.62^^^^~2~^~01/01/2005~ -~23035~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~303~^2.58^2^^~1~^~A~^^^1^2.49^2.67^^^^^~01/01/2005~ -~23035~^~309~^5.26^2^^~1~^~A~^^^1^5.04^5.48^^^^^~01/01/2005~ -~23035~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23035~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23035~^~418~^4.73^2^^~1~^~A~^^^1^4.47^4.99^^^^^~01/01/2005~ -~23035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~203~^20.93^5^^~1~^~A~^^^1^19.84^22.25^^^^~2~^~01/01/2005~ -~23036~^~204~^5.79^5^^~1~^~A~^^^1^5.00^6.68^^^^~2~^~01/01/2005~ -~23036~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23036~^~207~^0.90^5^^~1~^~A~^^^1^0.83^0.97^^^^~2~^~01/01/2005~ -~23036~^~255~^72.79^5^^~1~^~A~^^^1^72.22^73.15^^^^~2~^~01/01/2005~ -~23036~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~303~^2.39^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~309~^4.38^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~323~^0.09^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23036~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23036~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23036~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23036~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23036~^~418~^5.09^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~203~^20.39^8^^~1~^~A~^^^1^19.43^21.53^^^^~2~^~01/01/2005~ -~23037~^~204~^6.12^8^^~1~^~A~^^^1^5.15^8.10^^^^~2~^~01/01/2005~ -~23037~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2005~ -~23037~^~207~^0.91^8^^~1~^~A~^^^1^0.82^1.04^^^^~2~^~01/01/2005~ -~23037~^~255~^72.49^8^^~1~^~A~^^^1^71.94^73.42^^^^~2~^~01/01/2005~ -~23037~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~303~^2.14^2^^~1~^~A~^^^1^2.07^2.21^^^^^~01/01/2005~ -~23037~^~309~^5.24^2^^~1~^~A~^^^1^5.08^5.41^^^^^~01/01/2005~ -~23037~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23037~^~418~^3.56^2^^~1~^~A~^^^1^3.35^3.77^^^^^~01/01/2005~ -~23037~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~203~^26.07^8^^~1~^~A~^^^1^24.24^28.33^^^^~2~^~01/01/2005~ -~23038~^~204~^8.11^8^^~1~^~A~^^^1^6.71^9.49^^^^~2~^~01/01/2005~ -~23038~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23038~^~207~^1.03^8^^~1~^~A~^^^1^0.88^1.17^^^^~2~^~01/01/2005~ -~23038~^~255~^65.02^8^^~1~^~A~^^^1^62.52^67.69^^^^~2~^~01/01/2005~ -~23038~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~303~^2.57^2^^~1~^~A~^^^1^2.50^2.64^^^^^~01/01/2005~ -~23038~^~309~^6.85^2^^~1~^~A~^^^1^6.35^7.35^^^^^~01/01/2005~ -~23038~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23038~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23038~^~418~^4.56^2^^~1~^~A~^^^1^4.51^4.62^^^^^~01/01/2005~ -~23038~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~203~^21.13^5^^~1~^~A~^^^1^19.96^22.19^^^^~2~^~01/01/2005~ -~23039~^~204~^5.51^5^^~1~^~A~^^^1^4.13^6.76^^^^~2~^~01/01/2005~ -~23039~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23039~^~207~^0.88^5^^~1~^~A~^^^1^0.81^0.93^^^^~2~^~01/01/2005~ -~23039~^~255~^72.54^5^^~1~^~A~^^^1^71.94^73.67^^^^~2~^~01/01/2005~ -~23039~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~303~^2.64^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~309~^5.99^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~323~^0.18^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23039~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23039~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23039~^~344~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23039~^~418~^4.68^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23040~^~203~^26.66^5^^~1~^~A~^^^1^24.44^28.36^^^^~2~^~01/01/2005~ -~23040~^~204~^6.94^5^^~1~^~A~^^^1^4.29^9.09^^^^~2~^~01/01/2005~ -~23040~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23040~^~207~^1.07^5^^~1~^~A~^^^1^0.95^1.14^^^^~2~^~01/01/2005~ -~23040~^~255~^64.65^5^^~1~^~A~^^^1^63.29^67.65^^^^~2~^~01/01/2005~ -~23040~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~303~^3.23^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~309~^7.58^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~323~^0.18^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23040~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23040~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23040~^~344~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23040~^~418~^5.71^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23041~^~203~^18.75^8^^~1~^~A~^^^1^17.62^20.44^^^^~2~^~01/01/2005~ -~23041~^~204~^11.33^8^^~1~^~A~^^^1^8.78^14.13^^^^~2~^~01/01/2005~ -~23041~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23041~^~207~^0.88^8^^~1~^~A~^^^1^0.77^1.00^^^^~2~^~01/01/2005~ -~23041~^~255~^70.00^8^^~1~^~A~^^^1^69.04^71.85^^^^~2~^~01/01/2005~ -~23041~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~303~^2.23^2^^~1~^~A~^^^1^2.19^2.27^^^^^~01/01/2005~ -~23041~^~309~^6.58^2^^~1~^~A~^^^1^6.32^6.85^^^^^~01/01/2005~ -~23041~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23041~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23041~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23041~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23041~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23041~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23041~^~418~^4.96^2^^~1~^~A~^^^1^3.57^6.35^^^^^~01/01/2005~ -~23041~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~203~^24.70^8^^~1~^~A~^^^1^22.66^26.29^^^^~2~^~01/01/2005~ -~23042~^~204~^13.59^8^^~1~^~A~^^^1^11.15^15.13^^^^~2~^~02/01/2005~ -~23042~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23042~^~207~^0.94^8^^~1~^~A~^^^1^0.79^1.02^^^^~2~^~01/01/2005~ -~23042~^~255~^61.93^8^^~1~^~A~^^^1^58.83^65.52^^^^~2~^~01/01/2005~ -~23042~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~303~^2.78^2^^~1~^~A~^^^1^2.64^2.91^^^^^~01/01/2005~ -~23042~^~309~^8.77^2^^~1~^~A~^^^1^8.08^9.46^^^^^~01/01/2005~ -~23042~^~323~^0.14^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23042~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23042~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23042~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23042~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23042~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23042~^~418~^5.75^2^^~1~^~A~^^^1^4.73^6.76^^^^^~01/01/2005~ -~23042~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~203~^19.38^5^^~1~^~A~^^^1^17.80^20.56^^^^~2~^~01/01/2005~ -~23043~^~204~^9.22^5^^~1~^~A~^^^1^7.00^12.27^^^^~2~^~01/01/2005~ -~23043~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23043~^~207~^0.94^5^^~1~^~A~^^^1^0.76^1.06^^^^~2~^~01/01/2005~ -~23043~^~255~^71.19^5^^~1~^~A~^^^1^67.60^72.51^^^^~2~^~01/01/2005~ -~23043~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~303~^2.62^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~309~^7.47^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~323~^0.16^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~342~^0.03^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23043~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23043~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23043~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23043~^~418~^5.23^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~203~^25.29^5^^~1~^~A~^^^1^24.63^26.13^^^^~2~^~01/01/2005~ -~23044~^~204~^11.52^5^^~1~^~A~^^^1^9.71^16.04^^^^~2~^~01/01/2005~ -~23044~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2005~ -~23044~^~207~^0.93^5^^~1~^~A~^^^1^0.85^0.99^^^^~2~^~01/01/2005~ -~23044~^~255~^62.22^5^^~1~^~A~^^^1^57.59^64.02^^^^~2~^~01/01/2005~ -~23044~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~303~^3.10^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~309~^9.61^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~323~^0.14^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23044~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23044~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23044~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23044~^~418~^6.18^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~203~^20.74^8^^~1~^~A~^^^1^19.72^21.42^^^^~2~^~01/01/2005~ -~23045~^~204~^6.85^8^^~1~^~A~^^^1^5.33^8.26^^^^~2~^~01/01/2005~ -~23045~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23045~^~207~^0.96^8^^~1~^~A~^^^1^0.79^1.07^^^^~2~^~01/01/2005~ -~23045~^~255~^72.05^8^^~1~^~A~^^^1^70.80^72.73^^^^~2~^~01/01/2005~ -~23045~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~303~^1.94^2^^~1~^~A~^^^1^1.91^1.97^^^^^~01/01/2005~ -~23045~^~309~^5.15^2^^~1~^~A~^^^1^4.68^5.63^^^^^~01/01/2005~ -~23045~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23045~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23045~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23045~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23045~^~418~^4.04^2^^~1~^~A~^^^1^3.80^4.29^^^^^~01/01/2005~ -~23045~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~203~^26.88^8^^~1~^~A~^^^1^24.93^29.00^^^^~2~^~01/01/2005~ -~23046~^~204~^8.13^8^^~1~^~A~^^^1^6.55^10.77^^^^~2~^~01/01/2005~ -~23046~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23046~^~207~^0.97^8^^~1~^~A~^^^1^0.80^1.16^^^^~2~^~01/01/2005~ -~23046~^~255~^64.53^8^^~1~^~A~^^^1^63.29^65.76^^^^~2~^~01/01/2005~ -~23046~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~303~^2.51^2^^~1~^~A~^^^1^2.42^2.61^^^^^~01/01/2005~ -~23046~^~309~^6.56^2^^~1~^~A~^^^1^6.39^6.73^^^^^~01/01/2005~ -~23046~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23046~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23046~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23046~^~418~^2.92^2^^~1~^~A~^^^1^2.86^2.99^^^^^~01/01/2005~ -~23046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~203~^20.98^5^^~1~^~A~^^^1^19.91^22.49^^^^~2~^~01/01/2005~ -~23047~^~204~^5.21^5^^~1~^~A~^^^1^4.50^6.07^^^^~2~^~01/01/2005~ -~23047~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2005~ -~23047~^~207~^0.92^5^^~1~^~A~^^^1^0.83^1.00^^^^~2~^~01/01/2005~ -~23047~^~255~^72.72^5^^~1~^~A~^^^1^71.96^73.17^^^^~2~^~01/01/2005~ -~23047~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~303~^2.01^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~309~^5.65^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~323~^0.20^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~341~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~342~^0.03^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23047~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23047~^~418~^5.39^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~203~^26.61^5^^~1~^~A~^^^1^24.00^28.20^^^^~2~^~01/01/2005~ -~23048~^~204~^5.32^5^^~1~^~A~^^^1^4.61^5.72^^^^~2~^~01/01/2005~ -~23048~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23048~^~207~^0.97^5^^~1~^~A~^^^1^0.85^1.22^^^^~2~^~01/01/2005~ -~23048~^~255~^67.13^5^^~1~^~A~^^^1^66.51^68.24^^^^~2~^~01/01/2005~ -~23048~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~303~^2.49^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~309~^7.41^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~323~^0.19^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~342~^0.03^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~343~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23048~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23048~^~418~^3.83^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~203~^21.24^8^^~1~^~A~^^^1^19.89^21.78^^^^~2~^~01/01/2005~ -~23049~^~204~^6.59^8^^~1~^~A~^^^1^4.69^7.80^^^^~2~^~01/01/2005~ -~23049~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23049~^~207~^1.04^8^^~1~^~A~^^^1^0.94^1.08^^^^~2~^~01/01/2005~ -~23049~^~255~^71.51^8^^~1~^~A~^^^1^70.26^72.80^^^^~2~^~01/01/2005~ -~23049~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~303~^2.34^2^^~1~^~A~^^^1^2.27^2.41^^^^^~01/01/2005~ -~23049~^~309~^3.76^2^^~1~^~A~^^^1^3.49^4.03^^^^^~01/01/2005~ -~23049~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23049~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23049~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23049~^~418~^4.70^2^^~1~^~A~^^^1^3.57^5.84^^^^^~01/01/2005~ -~23049~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~203~^27.22^8^^~1~^~A~^^^1^24.89^28.50^^^^~2~^~01/01/2005~ -~23050~^~204~^8.30^8^^~1~^~A~^^^1^6.92^11.00^^^^~2~^~02/01/2005~ -~23050~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23050~^~207~^1.14^8^^~1~^~A~^^^1^1.08^1.27^^^^~2~^~01/01/2005~ -~23050~^~255~^63.35^8^^~1~^~A~^^^1^61.84^64.72^^^^~2~^~01/01/2005~ -~23050~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~303~^2.92^2^^~1~^~A~^^^1^2.88^2.96^^^^^~01/01/2005~ -~23050~^~309~^4.81^2^^~1~^~A~^^^1^4.45^5.18^^^^^~01/01/2005~ -~23050~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23050~^~418~^3.83^2^^~1~^~A~^^^1^3.77^3.90^^^^^~01/01/2005~ -~23050~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23051~^~203~^22.15^5^^~1~^~A~^^^1^21.83^22.57^^^^~2~^~01/01/2005~ -~23051~^~204~^3.83^5^^~1~^~A~^^^1^3.26^4.29^^^^~2~^~01/01/2005~ -~23051~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23051~^~207~^1.06^5^^~1~^~A~^^^1^0.99^1.15^^^^~2~^~01/01/2005~ -~23051~^~255~^73.28^5^^~1~^~A~^^^1^73.08^73.58^^^^~2~^~01/01/2005~ -~23051~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~303~^2.91^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~309~^4.31^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~323~^0.07^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23051~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~342~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23051~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~344~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23051~^~418~^3.61^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23052~^~203~^28.01^5^^~1~^~A~^^^1^24.57^30.04^^^^~2~^~01/01/2005~ -~23052~^~204~^5.17^5^^~1~^~A~^^^1^4.10^7.17^^^^~2~^~01/01/2005~ -~23052~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23052~^~207~^1.20^5^^~1~^~A~^^^1^1.10^1.28^^^^~2~^~01/01/2005~ -~23052~^~255~^65.76^5^^~1~^~A~^^^1^64.73^66.99^^^^~2~^~01/01/2005~ -~23052~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~303~^3.12^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~309~^5.68^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~323~^0.10^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23052~^~341~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23052~^~342~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23052~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~344~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2005~ -~23052~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23052~^~418~^4.41^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~203~^20.54^11^^~1~^~A~^^^1^19.18^22.11^^^^~2~^~01/01/2005~ -~23053~^~204~^6.22^11^^~1~^~A~^^^1^4.98^7.61^^^^~2~^~01/01/2005~ -~23053~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23053~^~207~^0.92^11^^~1~^~A~^^^1^0.73^1.05^^^^~2~^~01/01/2005~ -~23053~^~255~^72.80^11^^~1~^~A~^^^1^72.22^73.52^^^^~2~^~01/01/2005~ -~23053~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~303~^1.95^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~309~^3.72^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23053~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23053~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~418~^3.97^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~203~^26.22^13^^~1~^~A~^^^1^24.56^27.99^^^^~2~^~01/01/2005~ -~23054~^~204~^7.20^13^^~1~^~A~^^^1^5.07^10.18^^^^~2~^~01/01/2005~ -~23054~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23054~^~207~^1.02^13^^~1~^~A~^^^1^0.86^1.13^^^^~2~^~01/01/2005~ -~23054~^~255~^65.65^13^^~1~^~A~^^^1^63.79^66.64^^^^~2~^~01/01/2005~ -~23054~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~303~^2.59^3^^~1~^~A~^^^1^2.49^2.67^^^^~2~^~01/01/2005~ -~23054~^~309~^5.24^3^^~1~^~A~^^^1^5.04^5.48^^^^~2~^~01/01/2005~ -~23054~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23054~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23054~^~418~^5.16^3^^~1~^~A~^^^1^4.47^6.01^^^^~2~^~01/01/2005~ -~23054~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~203~^21.69^10^^~1~^~A~^^^1^20.55^22.22^^^^~2~^~01/01/2005~ -~23055~^~204~^4.00^10^^~1~^~A~^^^1^2.01^5.05^^^^~2~^~01/01/2005~ -~23055~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23055~^~207~^1.09^10^^~1~^~A~^^^1^0.88^1.14^^^^~2~^~01/01/2005~ -~23055~^~255~^73.25^10^^~1~^~A~^^^1^72.61^73.99^^^^~2~^~01/01/2005~ -~23055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~303~^2.22^3^^~1~^~A~^^^1^2.07^2.38^^^^~2~^~01/01/2005~ -~23055~^~309~^5.23^3^^~1~^~A~^^^1^4.39^5.74^^^^~2~^~01/01/2005~ -~23055~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23055~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23055~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23055~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23055~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23055~^~418~^3.07^3^^~1~^~A~^^^1^2.72^3.62^^^^~2~^~01/01/2005~ -~23055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~203~^29.08^10^^~1~^~A~^^^1^27.86^30.79^^^^~2~^~01/01/2005~ -~23056~^~204~^4.84^10^^~1~^~A~^^^1^2.96^7.14^^^^~2~^~01/01/2005~ -~23056~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23056~^~207~^1.16^10^^~1~^~A~^^^1^1.09^1.22^^^^~2~^~01/01/2005~ -~23056~^~255~^65.68^10^^~1~^~A~^^^1^64.11^67.23^^^^~2~^~01/01/2005~ -~23056~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~303~^2.77^3^^~1~^~A~^^^1^2.45^2.98^^^^~2~^~01/01/2005~ -~23056~^~309~^7.25^3^^~1~^~A~^^^1^5.84^8.06^^^^~2~^~01/01/2005~ -~23056~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23056~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23056~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23056~^~418~^4.18^3^^~1~^~A~^^^1^3.73^4.77^^^^~2~^~01/01/2005~ -~23056~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~203~^20.67^13^^~1~^~A~^^^1^19.43^22.19^^^^~2~^~01/01/2005~ -~23057~^~204~^5.88^13^^~1~^~A~^^^1^4.13^8.10^^^^~2~^~01/01/2005~ -~23057~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2005~ -~23057~^~207~^0.90^13^^~1~^~A~^^^1^0.81^1.04^^^^~2~^~01/01/2005~ -~23057~^~255~^72.51^13^^~1~^~A~^^^1^71.94^73.67^^^^~2~^~01/01/2005~ -~23057~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~303~^2.31^3^^~1~^~A~^^^1^2.07^2.64^^^^~2~^~01/01/2005~ -~23057~^~309~^5.49^3^^~1~^~A~^^^1^5.08^5.99^^^^~2~^~01/01/2005~ -~23057~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23057~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23057~^~418~^3.93^3^^~1~^~A~^^^1^3.35^4.68^^^^~2~^~01/01/2005~ -~23057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~203~^26.30^13^^~1~^~A~^^^1^24.24^28.36^^^^~2~^~02/01/2005~ -~23058~^~204~^7.66^13^^~1~^~A~^^^1^4.29^9.49^^^^~2~^~02/01/2005~ -~23058~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23058~^~207~^1.04^13^^~1~^~A~^^^1^0.88^1.17^^^^~2~^~02/01/2005~ -~23058~^~255~^64.88^13^^~1~^~A~^^^1^62.52^67.69^^^^~2~^~02/01/2005~ -~23058~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~303~^2.79^3^^~1~^~A~^^^1^2.50^3.23^^^^~2~^~02/01/2005~ -~23058~^~309~^7.09^3^^~1~^~A~^^^1^6.35^7.58^^^^~2~^~02/01/2005~ -~23058~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23058~^~418~^4.95^3^^~1~^~A~^^^1^4.51^5.71^^^^~2~^~02/01/2005~ -~23058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~203~^18.99^13^^~1~^~A~^^^1^17.62^20.56^^^^~2~^~02/01/2005~ -~23059~^~204~^10.52^13^^~1~^~A~^^^1^7.00^14.13^^^^~2~^~02/01/2005~ -~23059~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~207~^0.90^13^^~1~^~A~^^^1^0.76^1.06^^^^~2~^~02/01/2005~ -~23059~^~255~^70.46^13^^~1~^~A~^^^1^67.60^72.51^^^^~2~^~02/01/2005~ -~23059~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~303~^2.36^3^^~1~^~A~^^^1^2.19^2.62^^^^~2~^~02/01/2005~ -~23059~^~309~^6.88^3^^~1~^~A~^^^1^6.32^7.47^^^^~2~^~02/01/2005~ -~23059~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23059~^~418~^5.05^3^^~1~^~A~^^^1^3.57^6.35^^^^~2~^~02/01/2005~ -~23059~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~203~^24.93^13^^~1~^~A~^^^1^22.66^26.29^^^^~2~^~04/01/2005~ -~23060~^~204~^12.79^13^^~1~^~A~^^^1^9.71^16.04^^^^~2~^~04/01/2005~ -~23060~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~207~^0.94^13^^~1~^~A~^^^1^0.79^1.02^^^^~2~^~04/01/2005~ -~23060~^~255~^62.04^13^^~1~^~A~^^^1^57.59^65.52^^^^~2~^~04/01/2005~ -~23060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~303~^2.88^3^^~1~^~A~^^^1^2.64^3.10^^^^~2~^~04/01/2005~ -~23060~^~309~^9.05^3^^~1~^~A~^^^1^8.08^9.61^^^^~2~^~04/01/2005~ -~23060~^~323~^0.14^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23060~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~23060~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~23060~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23060~^~418~^5.89^3^^~1~^~A~^^^1^4.73^6.76^^^^~2~^~04/01/2005~ -~23060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~203~^20.93^16^^~1~^~A~^^^1^19.72^22.49^^^^~2~^~02/01/2005~ -~23061~^~204~^5.89^16^^~1~^~A~^^^1^3.90^8.26^^^^~2~^~02/01/2005~ -~23061~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~207~^0.96^16^^~1~^~A~^^^1^0.79^1.09^^^^~2~^~02/01/2005~ -~23061~^~255~^72.45^16^^~1~^~A~^^^1^70.80^73.84^^^^~2~^~02/01/2005~ -~23061~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~303~^1.96^3^^~1~^~A~^^^1^1.91^2.01^^^^~2~^~02/01/2005~ -~23061~^~309~^5.32^3^^~1~^~A~^^^1^4.68^5.65^^^^~2~^~02/01/2005~ -~23061~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23061~^~418~^4.49^3^^~1~^~A~^^^1^3.80^5.39^^^^~2~^~02/01/2005~ -~23061~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~203~^27.12^16^^~1~^~A~^^^1^24.00^29.00^^^^~2~^~02/01/2005~ -~23062~^~204~^6.78^16^^~1~^~A~^^^1^4.61^10.77^^^^~2~^~02/01/2005~ -~23062~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23062~^~207~^1.00^16^^~1~^~A~^^^1^0.80^1.23^^^^~2~^~02/01/2005~ -~23062~^~255~^65.46^16^^~1~^~A~^^^1^63.29^68.24^^^^~2~^~02/01/2005~ -~23062~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~303~^2.51^3^^~1~^~A~^^^1^2.42^2.61^^^^~2~^~02/01/2005~ -~23062~^~309~^6.84^3^^~1~^~A~^^^1^6.39^7.41^^^^~2~^~02/01/2005~ -~23062~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23062~^~418~^3.23^3^^~1~^~A~^^^1^2.86^3.83^^^^~2~^~02/01/2005~ -~23062~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~203~^21.59^13^^~1~^~A~^^^1^19.89^22.57^^^^~2~^~02/01/2005~ -~23063~^~204~^5.53^13^^~1~^~A~^^^1^3.26^7.80^^^^~2~^~02/01/2005~ -~23063~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~207~^1.05^13^^~1~^~A~^^^1^0.94^1.15^^^^~2~^~02/01/2005~ -~23063~^~255~^72.19^13^^~1~^~A~^^^1^70.26^73.58^^^^~2~^~02/01/2005~ -~23063~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~303~^2.53^3^^~1~^~A~^^^1^2.27^2.91^^^^~2~^~02/01/2005~ -~23063~^~309~^3.94^3^^~1~^~A~^^^1^3.49^4.31^^^^~2~^~02/01/2005~ -~23063~^~323~^0.08^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23063~^~418~^4.34^3^^~1~^~A~^^^1^3.57^5.84^^^^~2~^~02/01/2005~ -~23063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~203~^27.52^13^^~1~^~A~^^^1^24.57^30.04^^^^~2~^~02/01/2005~ -~23064~^~204~^7.10^13^^~1~^~A~^^^1^4.10^11.00^^^^~2~^~02/01/2005~ -~23064~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~207~^1.16^13^^~1~^~A~^^^1^1.08^1.28^^^^~2~^~02/01/2005~ -~23064~^~255~^64.28^13^^~1~^~A~^^^1^61.84^66.99^^^^~2~^~02/01/2005~ -~23064~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~303~^2.99^3^^~1~^~A~^^^1^2.88^3.12^^^^~2~^~02/01/2005~ -~23064~^~309~^5.10^3^^~1~^~A~^^^1^4.45^5.68^^^^~2~^~02/01/2005~ -~23064~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23064~^~418~^4.03^3^^~1~^~A~^^^1^3.77^4.41^^^^~2~^~02/01/2005~ -~23064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~203~^26.45^5^^~1~^~A~^^^1^24.77^27.99^^^^~2~^~02/01/2005~ -~23065~^~204~^6.43^5^^~1~^~A~^^^1^5.07^7.63^^^^~2~^~02/01/2005~ -~23065~^~205~^0.33^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23065~^~207~^1.00^5^^~1~^~A~^^^1^0.86^1.13^^^^~2~^~02/01/2005~ -~23065~^~255~^65.79^5^^~1~^~A~^^^1^64.65^66.64^^^^~2~^~02/01/2005~ -~23065~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~303~^2.60^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~309~^5.19^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~323~^0.17^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~341~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~342~^0.03^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~343~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~344~^0.01^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~345~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~346~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~347~^0.00^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2005~ -~23065~^~418~^6.01^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23066~^~203~^19.38^24^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~204~^10.70^24^1.02^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~205~^0.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~207~^0.90^24^0.10^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~255~^68.73^24^0.48^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~303~^2.53^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~309~^8.25^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~323~^0.17^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~418~^3.32^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~203~^20.14^12^0.33^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~204~^8.99^12^1.08^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23067~^~207~^0.93^12^0.10^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~255~^70.24^12^0.58^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~309~^8.14^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~323~^0.16^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~418~^3.56^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~203~^19.68^36^0.22^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~204~^10.02^36^0.98^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~205~^0.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~207~^0.91^36^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~255~^69.33^36^0.42^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~303~^2.45^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~309~^8.15^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~323~^0.17^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~418~^3.43^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~203~^30.95^48^1.18^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~204~^12.22^48^0.59^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23069~^~207~^1.06^48^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~255~^56.64^48^0.88^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~303~^2.97^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~309~^10.98^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~323~^0.12^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~418~^3.51^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~203~^32.10^24^1.20^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~204~^10.24^24^0.66^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23070~^~207~^1.12^24^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~255~^57.54^24^0.93^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~303~^2.86^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~309~^10.94^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~323~^0.05^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~418~^3.40^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~203~^31.41^72^1.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~204~^11.43^72^0.55^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23071~^~207~^1.08^72^0.07^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~255~^57.00^72^0.86^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~303~^2.93^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~309~^10.91^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~323~^0.10^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~418~^3.47^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~203~^20.87^48^0.56^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~204~^7.67^48^0.21^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~207~^0.94^48^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~255~^70.58^48^0.33^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~303~^2.31^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~309~^7.86^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~323~^0.20^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~418~^3.27^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~203~^21.10^24^0.62^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~204~^5.89^24^0.28^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23073~^~207~^0.99^24^0.10^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~255~^72.11^24^0.39^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~303~^2.08^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~309~^6.53^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~418~^3.10^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~203~^20.96^72^0.52^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~204~^6.95^72^0.17^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23074~^~207~^0.96^72^0.09^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~255~^71.19^72^0.30^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~303~^2.24^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~309~^7.44^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~323~^0.17^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~418~^3.24^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~203~^27.97^47^1.36^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~204~^11.47^47^0.78^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~207~^1.03^47^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~255~^60.35^47^1.20^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~303~^2.88^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~309~^10.50^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~418~^3.20^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~203~^27.88^24^1.40^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~204~^9.77^24^0.83^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23076~^~207~^1.03^24^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~255~^61.45^24^1.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~303~^2.81^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~309~^10.60^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~323~^0.10^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~418~^3.50^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~203~^27.94^71^1.35^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~204~^10.79^71^0.75^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23077~^~207~^1.03^71^0.06^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~255~^60.79^71^1.19^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~303~^2.87^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~309~^10.54^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~323~^0.11^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~418~^3.37^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~203~^21.31^48^0.49^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~204~^8.29^48^0.49^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~207~^0.92^48^0.05^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~255~^69.48^48^0.24^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~303~^2.27^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~309~^8.41^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~323~^0.17^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~418~^3.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~203~^21.28^24^0.52^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~204~^6.47^24^0.53^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~207~^0.98^24^0.05^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~255~^71.41^24^0.31^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~303~^2.33^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~309~^8.54^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~323~^0.15^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~418~^3.00^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~203~^21.29^72^0.48^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~204~^7.56^72^0.46^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~207~^0.94^72^0.04^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~255~^70.25^72^0.19^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~303~^2.28^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~309~^8.39^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~323~^0.17^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~418~^3.07^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~203~^31.32^48^0.32^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~204~^8.30^48^0.51^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~207~^1.42^48^0.25^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~255~^60.05^48^0.57^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~303~^3.76^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~309~^9.39^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~323~^0.13^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~418~^3.38^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~203~^31.71^24^0.40^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~204~^7.02^24^0.56^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~207~^1.38^24^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~255~^60.96^24^0.63^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~303~^3.36^4^0.18^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~309~^9.53^4^0.38^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~323~^0.08^4^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~418~^3.41^4^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~203~^31.48^72^0.27^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~204~^7.78^72^0.49^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~207~^1.40^72^0.24^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~255~^60.41^72^0.54^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~303~^3.60^6^0.11^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~309~^9.44^6^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~323~^0.11^6^4.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~418~^3.39^6^0.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~203~^33.55^48^1.21^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~204~^6.94^48^0.39^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~207~^1.62^48^0.33^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~255~^59.17^48^1.37^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~303~^3.53^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~309~^11.01^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~418~^4.44^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~203~^32.96^24^1.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~204~^5.44^24^0.43^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~207~^1.69^24^0.34^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~255~^60.80^24^1.39^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~303~^3.32^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~309~^10.76^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~323~^0.10^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~418~^4.48^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~203~^33.31^72^1.20^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~204~^6.34^72^0.36^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~207~^1.65^72^0.33^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~255~^59.82^72^1.35^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~303~^3.42^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~309~^10.93^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~323~^0.11^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~418~^4.44^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~203~^21.36^48^0.31^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~204~^4.60^48^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~207~^1.25^48^0.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~255~^73.20^48^0.59^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~303~^2.51^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~309~^8.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~323~^0.19^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~418~^3.22^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~203~^21.22^24^0.34^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~204~^3.53^24^0.29^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23088~^~207~^1.12^24^0.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~255~^74.46^24^0.62^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~303~^2.26^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~309~^7.93^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~323~^0.20^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~418~^3.02^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~203~^21.30^72^0.30^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~204~^4.17^72^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~207~^1.19^72^0.16^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~255~^73.71^72^0.57^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~303~^2.44^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~309~^8.00^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~323~^0.20^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~418~^3.13^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~203~^32.41^72^0.53^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~204~^6.82^72^0.87^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~207~^1.26^72^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~255~^60.08^72^0.65^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~303~^2.96^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~309~^8.32^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~323~^0.11^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~418~^2.73^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~203~^32.29^24^0.57^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~204~^6.34^24^0.94^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~207~^1.18^24^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~255~^60.97^24^0.71^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~303~^2.84^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~309~^8.47^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~323~^0.07^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~418~^2.53^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~203~^32.49^48^0.54^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~204~^7.14^48^0.90^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23092~^~207~^1.31^48^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~255~^59.49^48^0.67^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~303~^3.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~309~^8.27^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~323~^0.13^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~418~^2.85^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~203~^21.75^72^0.58^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~204~^4.48^72^0.91^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~205~^0.16^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23093~^~207~^1.11^72^0.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~255~^72.51^72^1.12^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~303~^2.12^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~309~^5.43^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~323~^0.17^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~418~^2.30^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~203~^21.90^24^0.63^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~204~^3.99^24^0.92^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~207~^1.12^24^0.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~255~^72.79^24^1.14^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~303~^2.20^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~309~^5.51^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~323~^0.15^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~418~^2.42^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~203~^21.64^48^0.60^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~204~^4.81^48^0.91^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23095~^~207~^1.11^48^0.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~255~^72.32^48^1.13^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~303~^2.09^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~309~^5.41^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~323~^0.18^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~418~^2.27^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~203~^30.91^24^0.50^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~204~^10.91^24^1.25^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23096~^~207~^1.56^24^0.24^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~255~^57.56^24^1.34^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~303~^3.25^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~309~^11.39^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~323~^0.10^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23096~^~418~^3.55^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~203~^32.01^12^0.60^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~204~^9.66^12^1.31^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23097~^~207~^1.20^12^0.26^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~255~^58.92^12^1.39^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~303~^3.15^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~309~^11.37^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~323~^0.06^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23097~^~418~^3.37^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~203~^31.35^36^0.44^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~204~^10.41^36^1.22^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23098~^~207~^1.42^36^0.23^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~255~^58.11^36^1.31^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~303~^3.21^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~309~^11.38^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~323~^0.09^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~ -~23098~^~418~^3.48^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23099~^~203~^26.70^34^1.34^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~204~^20.49^34^1.25^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~207~^1.22^34^0.25^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~255~^52.51^34^0.69^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~303~^2.68^6^0.04^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~309~^9.14^6^0.19^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~323~^0.08^6^6.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~418~^3.02^6^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23100~^~203~^27.97^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~204~^10.57^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~207~^1.02^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~255~^61.36^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~303~^2.53^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~309~^7.00^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~323~^0.10^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~418~^2.32^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~203~^27.18^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~204~^14.55^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~207~^1.02^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~255~^57.57^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~303~^2.37^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~309~^6.11^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~323~^0.12^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~418~^2.23^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23102~^~203~^19.17^36^0.28^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~204~^13.26^36^0.98^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~207~^0.98^36^0.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~255~^66.70^36^1.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~303~^2.19^6^0.04^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~309~^6.99^6^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~323~^0.16^6^0.01^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~418~^2.82^6^0.13^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~203~^19.15^24^0.34^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~204~^13.93^24^1.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~207~^0.98^24^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~255~^66.00^24^1.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~303~^2.13^4^0.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~309~^6.99^4^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~323~^0.16^4^0.02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~418~^2.94^4^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~203~^19.20^12^0.44^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~204~^12.27^12^1.32^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~207~^0.98^12^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~255~^67.76^12^1.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~303~^2.27^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~309~^6.98^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~323~^0.17^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~418~^2.63^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~203~^26.18^35^0.37^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~204~^13.54^35^1.45^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~205~^0.21^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~207~^0.99^35^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~255~^59.08^35^0.67^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~303~^3.26^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~309~^9.85^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~323~^0.08^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~418~^3.68^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~203~^26.10^23^0.44^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~204~^14.41^23^1.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~207~^0.98^23^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~255~^58.12^23^0.77^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~303~^3.27^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~309~^9.66^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~323~^0.09^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~418~^3.46^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~203~^26.30^12^0.54^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~204~^12.25^12^1.56^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23107~^~207~^1.01^12^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~255~^60.52^12^0.92^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~303~^3.31^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~309~^10.19^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~323~^0.07^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~418~^4.22^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~203~^18.99^36^0.28^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~204~^11.64^36^1.98^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~205~^0.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~207~^0.90^36^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~255~^68.11^36^1.75^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~303~^2.38^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~309~^7.40^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~323~^0.14^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~418~^3.03^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~203~^18.85^24^0.30^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~204~^12.40^24^2.00^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~205~^0.53^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~207~^0.90^24^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~255~^67.31^24^1.76^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~303~^2.37^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~309~^7.32^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~323~^0.15^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~418~^2.90^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~203~^19.20^12^0.34^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~204~^10.50^12^2.04^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~205~^0.09^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~207~^0.91^12^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~255~^69.30^12^1.79^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~303~^2.38^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~309~^7.51^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~418~^3.22^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~203~^21.17^46^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~204~^5.33^46^0.44^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~205~^0.07^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~207~^1.13^46^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~255~^72.30^46^0.46^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~303~^2.66^4^0.02^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~309~^6.72^4^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~323~^0.19^4^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~418~^2.66^4^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~203~^21.72^24^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~204~^4.44^24^0.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23112~^~207~^1.11^24^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~255~^73.01^24^0.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~303~^2.56^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~309~^6.88^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~323~^0.16^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~418~^2.83^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~203~^24.63^35^0.31^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~204~^15.29^35^1.62^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~207~^0.94^35^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~255~^60.30^35^2.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~303~^2.22^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~309~^8.48^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~323~^0.11^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~418~^3.01^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~203~^24.47^23^0.39^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~204~^15.87^23^1.66^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~207~^0.94^23^0.06^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~255~^59.63^23^2.19^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~303~^2.28^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~309~^8.74^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~323~^0.13^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~418~^3.22^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~203~^24.86^12^0.51^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~204~^14.41^12^1.74^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~207~^0.94^12^0.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~255~^61.29^12^2.24^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~303~^2.16^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~309~^8.24^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~323~^0.07^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~418~^2.66^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~203~^28.23^34^0.87^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~204~^18.00^34^0.65^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23116~^~207~^1.30^34^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~255~^53.80^34^0.48^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~303~^2.80^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~309~^9.55^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~323~^0.08^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23116~^~418~^3.19^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~203~^27.60^23^0.91^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~204~^19.30^23^0.80^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23117~^~207~^1.40^23^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~255~^52.71^23^0.59^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~303~^2.82^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~309~^9.52^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~323~^0.09^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23117~^~418~^3.25^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~203~^29.18^11^0.98^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~204~^16.05^11^1.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23118~^~207~^1.15^11^0.23^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~255~^55.43^11^0.82^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~303~^2.76^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~309~^9.59^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~323~^0.05^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~ -~23118~^~418~^3.10^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~203~^32.07^62^2.18^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~204~^10.18^62^2.93^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~207~^1.62^62^0.28^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~255~^57.29^62^0.82^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~303~^3.29^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~309~^10.44^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~323~^0.11^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~418~^4.30^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~203~^32.21^41^2.19^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~204~^10.74^41^2.94^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~207~^1.55^41^0.28^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~255~^56.78^41^0.85^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~303~^3.38^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~309~^10.46^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~418~^4.29^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~203~^31.86^21^2.20^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~204~^9.34^21^2.97^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~207~^1.71^21^0.29^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~255~^58.05^21^0.91^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~303~^3.21^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~309~^10.31^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~323~^0.10^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~418~^4.35^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~203~^21.13^72^0.27^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~204~^4.79^72^0.30^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~207~^1.19^72^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~255~^73.30^72^0.60^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~303~^2.43^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~309~^7.93^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~323~^0.20^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~418~^3.11^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~203~^21.19^48^0.29^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~204~^5.18^48^0.33^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23123~^~207~^1.24^48^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~255~^72.83^48^0.63^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~303~^2.50^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~309~^8.00^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~323~^0.19^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~418~^3.19^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~203~^21.05^24^0.32^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~204~^4.20^24^0.39^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~207~^1.11^24^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~255~^74.01^24^0.68^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~303~^2.25^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~309~^7.85^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~323~^0.20^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~418~^2.99^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~203~^25.48^35^0.34^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~204~^22.58^35^2.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23125~^~207~^0.83^35^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~255~^52.01^35^1.91^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~303~^2.70^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~309~^9.73^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~323~^0.08^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~418~^3.45^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~203~^25.26^24^0.42^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~204~^24.05^24^2.18^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23126~^~207~^0.82^24^0.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~255~^50.69^24^1.96^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~303~^2.67^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~309~^9.64^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~323~^0.09^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~418~^3.55^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~203~^25.81^11^0.59^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~204~^20.38^11^2.36^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~207~^0.84^11^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~255~^53.99^11^2.08^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~303~^2.76^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~309~^10.23^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~323~^0.06^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~418~^3.29^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~203~^17.48^36^0.23^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~204~^18.33^36^0.72^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~207~^0.84^36^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~255~^63.84^36^0.86^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~303~^2.24^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~309~^7.07^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~323~^0.15^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~418~^3.00^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~203~^17.22^24^0.27^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~204~^19.03^24^0.85^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~207~^0.83^24^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~255~^63.23^24^0.93^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~303~^2.30^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~309~^7.13^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~323~^0.16^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~418~^2.90^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~203~^17.87^12^0.33^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~204~^17.28^12^1.07^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~207~^0.86^12^0.09^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~255~^64.76^12^1.05^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~303~^2.15^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~309~^7.04^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~323~^0.14^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~418~^3.09^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~203~^31.03^72^0.28^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~204~^8.92^72^0.68^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~207~^1.38^72^0.24^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~255~^59.76^72^0.65^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~303~^3.53^6^0.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~309~^9.24^6^0.23^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~323~^0.11^6^4.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~418~^3.35^6^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~203~^30.93^48^0.33^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~204~^9.25^48^0.70^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~207~^1.40^48^0.24^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~255~^59.49^48^0.69^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~303~^3.70^4^0.14^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~309~^9.22^4^0.29^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~323~^0.13^4^5.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~418~^3.34^4^0.19^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~203~^31.18^24^0.41^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~204~^8.41^24^0.76^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~207~^1.35^24^0.25^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~255~^60.15^24^0.75^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~303~^3.29^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~309~^9.28^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~323~^0.08^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~418~^3.36^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23134~^~203~^27.69^70^1.31^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~204~^20.55^70^1.11^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~207~^0.96^70^0.03^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~255~^51.91^70^0.31^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~303~^2.49^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~309~^8.91^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~323~^0.09^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~418~^3.10^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~203~^27.16^48^1.33^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~204~^21.56^48^1.15^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~207~^0.94^48^0.04^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~255~^51.36^48^0.37^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~303~^2.51^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~309~^8.93^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~418~^3.12^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~203~^28.47^22^1.35^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~204~^19.03^22^1.22^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23136~^~207~^0.99^22^0.04^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~255~^52.74^22^0.47^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~303~^2.46^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~309~^9.07^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~323~^0.05^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~418~^3.07^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~203~^18.97^71^0.45^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~204~^14.32^71^1.42^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~207~^0.88^71^0.08^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~255~^66.33^71^1.11^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~303~^2.10^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~309~^6.65^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~323~^0.16^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~418~^2.91^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~203~^18.87^47^0.48^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~204~^14.99^47^1.44^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~207~^0.86^47^0.08^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~255~^65.78^47^1.13^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~303~^2.16^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~309~^7.02^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~323~^0.18^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~418~^2.94^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~203~^19.10^24^0.54^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~204~^13.33^24^1.49^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~207~^0.91^24^0.08^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~255~^67.17^24^1.16^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~303~^1.97^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~309~^5.89^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~323~^0.12^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~418~^2.80^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~203~^24.98^71^0.92^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~204~^19.64^71^0.45^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~207~^0.94^71^0.05^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~255~^55.22^71^1.06^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~303~^2.45^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~309~^8.68^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~323~^0.10^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~418~^3.03^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~203~^24.95^47^0.94^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~204~^20.35^47^0.57^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~207~^0.94^47^0.05^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~255~^54.74^47^1.09^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~303~^2.46^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~309~^8.63^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~418~^2.89^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~203~^25.03^24^0.97^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~204~^18.57^24^0.76^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23142~^~207~^0.94^24^0.05^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~255~^55.93^24^1.14^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~303~^2.42^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~309~^8.78^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~323~^0.09^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~418~^3.14^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~203~^18.86^71^0.20^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~204~^16.35^71^0.82^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~207~^0.86^71^0.04^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~255~^64.48^71^0.67^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~303~^2.10^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~309~^7.26^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~323~^0.15^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~418~^2.70^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~203~^18.86^48^0.25^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~204~^16.85^48^0.89^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~207~^0.84^48^0.04^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~255~^63.98^48^0.71^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~303~^2.10^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~309~^7.30^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~323~^0.15^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~418~^2.74^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~203~^18.86^23^0.33^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~204~^15.60^23^1.03^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~207~^0.89^23^0.04^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~255~^65.24^23^0.78^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~303~^2.14^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~309~^7.36^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~323~^0.14^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~418~^2.64^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23146~^~203~^27.12^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~204~^13.64^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~207~^1.05^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~255~^58.66^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~303~^2.36^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~309~^6.14^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~323~^0.10^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~418~^2.26^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~203~^27.03^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~204~^12.29^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~207~^1.11^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~255~^60.30^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~303~^2.35^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~309~^6.20^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~418~^2.31^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~203~^27.30^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~204~^11.97^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~207~^1.01^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~255~^60.57^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~303~^2.65^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~309~^6.97^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~323~^0.12^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~418~^2.37^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~203~^28.98^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~204~^8.48^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~207~^1.05^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~255~^62.56^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~303~^2.34^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~309~^7.05^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~418~^2.25^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~203~^21.22^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~204~^9.04^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~207~^0.97^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~255~^69.24^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~303~^1.96^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~309~^4.89^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~323~^0.15^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~418~^1.94^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~203~^20.93^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~204~^9.97^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~207~^0.95^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~255~^68.58^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~303~^1.95^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~309~^4.77^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~323~^0.16^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~418~^1.93^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~203~^21.65^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~204~^7.64^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~207~^1.00^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~255~^70.21^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~303~^1.99^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~309~^5.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~323~^0.14^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~418~^1.96^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~203~^21.99^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~204~^7.54^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~207~^1.01^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~255~^70.14^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~303~^1.94^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~309~^5.67^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~323~^0.15^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~418~^1.87^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~203~^21.62^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~204~^8.29^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~207~^0.99^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~255~^69.65^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~303~^2.04^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~309~^5.63^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~323~^0.18^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~418~^1.96^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~203~^22.55^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~204~^6.41^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~207~^1.03^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~255~^70.89^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~303~^1.80^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~309~^5.72^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~418~^1.75^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~203~^27.40^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~204~^12.43^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~207~^1.09^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~255~^59.69^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~303~^2.62^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~309~^6.00^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~323~^0.08^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~418~^2.22^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~203~^27.03^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~204~^13.44^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~207~^1.04^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~255~^59.13^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~303~^2.61^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~309~^6.00^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~323~^0.10^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~418~^2.21^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~203~^27.96^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~204~^10.91^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~207~^1.15^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~255~^60.51^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~303~^2.63^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~309~^6.01^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~323~^0.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~418~^2.23^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~203~^28.21^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~204~^11.68^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~207~^1.05^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~255~^59.55^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~303~^2.13^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~309~^7.09^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~323~^0.10^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~418~^2.33^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~203~^27.87^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~204~^13.01^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~207~^1.01^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~255~^58.26^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~303~^2.20^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~309~^7.12^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~323~^0.12^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~418~^2.43^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~203~^28.72^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~204~^9.68^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~207~^1.11^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~255~^61.49^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~303~^2.02^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~309~^7.05^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~323~^0.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~418~^2.18^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~203~^29.99^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~204~^12.69^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~207~^1.05^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~255~^57.00^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~303~^2.47^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~309~^8.24^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~323~^0.09^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~418~^2.95^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~203~^21.17^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~204~^8.82^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~207~^0.95^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~255~^69.50^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~303~^1.75^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~309~^6.26^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~323~^0.14^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~418~^2.38^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~203~^29.56^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~204~^13.72^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~207~^1.03^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~255~^56.33^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~303~^2.51^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~309~^8.14^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~323~^0.11^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~418~^3.10^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~203~^20.89^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~204~^9.76^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~207~^0.94^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~255~^68.91^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~303~^1.74^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~309~^6.25^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~323~^0.17^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~418~^2.55^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~203~^30.64^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~204~^11.16^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~207~^1.09^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~255~^58.01^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~303~^2.36^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~309~^8.49^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~418~^2.72^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~203~^21.61^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~204~^7.41^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~207~^0.97^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~255~^70.40^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~303~^1.76^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~309~^6.44^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~418~^2.13^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~203~^27.68^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~204~^19.01^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~207~^1.30^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~255~^52.29^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~303~^5.21^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~309~^7.17^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~323~^0.09^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~418~^7.92^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~203~^18.74^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~204~^14.53^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~205~^0.19^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~207~^0.94^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~255~^65.60^72^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~303~^3.60^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~309~^4.95^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~323~^0.14^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~418~^5.55^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~203~^27.03^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~204~^20.28^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~207~^1.28^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~255~^51.62^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~303~^5.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~309~^7.12^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~323~^0.09^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~418~^8.18^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~203~^18.47^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~204~^15.26^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~205~^0.17^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~207~^0.92^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~255~^65.19^48^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~303~^3.53^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~309~^4.74^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~323~^0.16^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~418~^5.82^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~203~^28.65^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~204~^17.10^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~207~^1.33^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~255~^53.31^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~303~^5.46^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~309~^7.38^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~418~^7.53^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~203~^19.14^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~204~^13.44^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~205~^0.23^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~207~^0.97^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~255~^66.22^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~303~^3.80^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~309~^5.36^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~323~^0.12^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~418~^5.16^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~203~^28.11^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~204~^10.37^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~207~^1.09^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~255~^60.91^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~303~^2.53^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~309~^7.00^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~323~^0.10^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~418~^2.32^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~203~^21.85^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~204~^7.41^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~207~^0.98^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~255~^69.93^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~303~^1.94^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~309~^5.67^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~323~^0.15^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~418~^1.87^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~203~^27.39^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~204~^11.75^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~207~^1.06^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~255~^60.09^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~303~^2.65^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~309~^6.97^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~323~^0.12^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~418~^2.37^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~203~^21.44^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~204~^8.50^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~207~^0.97^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~255~^69.22^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~303~^2.04^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~309~^5.63^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~323~^0.18^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~418~^1.96^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~203~^29.18^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~204~^8.31^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~207~^1.15^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~255~^62.15^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~303~^2.34^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~309~^7.05^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~418~^2.25^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~203~^22.46^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~204~^5.78^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~207~^1.00^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~255~^71.00^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~303~^1.80^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~309~^5.72^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~418~^1.75^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~203~^28.36^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~204~^20.57^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23180~^~207~^0.64^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~255~^51.12^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~303~^2.66^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~309~^6.10^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~323~^0.10^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~23180~^~418~^2.30^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~203~^19.11^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~204~^17.91^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~205~^0.46^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~207~^0.82^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~255~^61.70^36^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~303~^1.84^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~309~^4.59^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~323~^0.08^0^^~4~^~BFSN~^^^^^^^^^^~08/01/2012~ -~23181~^~418~^1.75^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~203~^27.75^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~204~^21.72^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23182~^~207~^0.60^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~255~^50.50^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~303~^2.64^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~309~^6.08^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~418~^2.27^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~203~^18.72^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~204~^19.36^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~205~^0.64^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~207~^0.80^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~255~^60.48^24^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~303~^1.83^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~309~^4.48^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~418~^1.73^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~203~^29.28^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~204~^18.84^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23184~^~207~^0.70^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~255~^52.05^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~303~^2.68^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~309~^6.13^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~418~^2.34^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~203~^19.71^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~204~^15.73^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~207~^0.84^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~255~^63.52^12^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~303~^1.86^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~309~^4.75^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~418~^1.78^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~203~^22.71^24^0.70^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~204~^24.70^24^0.62^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~207~^0.90^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~255~^52.36^24^0.77^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~303~^2.29^4^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~309~^5.07^4^0.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~323~^0.10^4^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~418~^2.00^4^0.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~203~^23.19^12^0.74^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~204~^23.47^12^0.83^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~207~^0.98^12^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~255~^53.01^12^0.85^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~303~^2.29^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~309~^5.03^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~418~^2.02^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~203~^22.90^36^0.69^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~204~^24.20^36^0.50^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~207~^0.93^36^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~255~^52.62^36^0.72^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~303~^2.29^6^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~309~^5.05^6^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~323~^0.09^6^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~418~^2.01^6^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~203~^23.53^24^0.67^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~204~^23.61^24^1.92^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~207~^0.91^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~255~^52.38^24^1.19^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~303~^2.15^4^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~309~^5.33^4^0.15^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~323~^0.12^4^5.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~418~^2.05^4^0.13^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~203~^23.36^11^0.71^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~204~^21.85^11^2.10^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~207~^0.99^11^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~255~^54.66^11^1.36^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~303~^2.13^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~309~^5.39^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~418~^2.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~203~^23.47^35^0.65^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~204~^22.91^35^1.87^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~207~^0.94^35^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~255~^53.29^35^1.14^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~303~^2.14^6^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~309~^5.35^6^0.12^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~323~^0.10^6^4.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~418~^2.07^6^0.10^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~203~^18.13^36^0.40^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~204~^20.31^36^1.36^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~207~^0.85^36^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~255~^60.80^36^1.14^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~303~^1.74^6^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~309~^4.12^6^0.10^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~323~^0.15^6^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~418~^1.74^6^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~203~^17.92^24^0.42^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~204~^20.96^24^1.40^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~207~^0.84^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~255~^60.35^24^1.17^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~303~^1.73^4^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~309~^4.04^4^0.13^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~323~^0.15^4^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~418~^1.74^4^0.07^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~203~^18.44^12^0.44^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~204~^19.34^12^1.50^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~207~^0.88^12^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~255~^61.47^12^1.22^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~303~^1.76^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~309~^4.24^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~323~^0.14^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~418~^1.75^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~203~^22.92^24^0.39^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~204~^23.52^24^0.75^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~207~^0.88^24^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~255~^53.50^24^0.53^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~303~^2.33^4^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~309~^5.84^4^0.33^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~323~^0.11^4^5.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~418~^2.13^4^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~203~^24.83^12^0.48^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~204~^19.25^12^1.00^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~207~^0.93^12^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~255~^55.98^12^0.71^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~303~^2.12^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~309~^6.03^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~323~^0.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~418~^2.06^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~203~^23.69^36^0.33^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~204~^21.81^36^0.60^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~207~^0.90^36^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~255~^54.49^36^0.42^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~303~^2.24^6^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~309~^5.91^6^0.27^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~323~^0.10^6^4.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~418~^2.10^6^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~203~^24.30^36^0.36^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~204~^21.66^36^1.50^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~207~^0.93^36^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~255~^53.79^36^1.15^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~303~^1.95^6^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~309~^6.09^6^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~323~^0.10^6^6.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~418~^2.13^6^0.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~203~^23.92^24^0.41^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~204~^22.98^24^1.61^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~207~^0.89^24^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~255~^52.62^24^1.24^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~303~^2.00^4^0.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~309~^6.09^4^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~323~^0.11^4^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~418~^2.20^4^0.08^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~203~^24.85^12^0.51^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~204~^19.68^12^1.83^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~207~^0.98^12^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~255~^55.56^12^1.43^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~303~^1.87^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~309~^6.09^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~323~^0.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~418~^2.01^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~203~^18.85^36^0.17^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~204~^18.73^36^0.94^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~207~^0.89^36^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~255~^61.77^36^0.90^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~303~^1.74^6^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~309~^4.78^6^0.24^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~323~^0.14^6^4.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~418~^1.70^6^0.07^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~203~^18.39^24^0.21^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~204~^19.95^24^1.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~207~^0.87^24^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~255~^60.90^24^0.94^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~303~^1.81^4^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~309~^4.71^4^0.30^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~323~^0.17^4^5.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~418~^1.75^4^0.09^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~203~^19.55^12^0.28^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~204~^16.90^12^1.16^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~207~^0.91^12^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~255~^63.08^12^1.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~303~^1.64^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~309~^4.88^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~323~^0.10^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~418~^1.61^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~203~^29.36^72^0.81^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~204~^14.20^72^0.92^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~207~^1.04^72^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~255~^56.07^72^0.31^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~303~^2.44^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~309~^8.06^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~323~^0.10^6^3.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~418~^2.91^6^0.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~203~^28.90^48^0.83^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~204~^15.30^48^0.96^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~207~^1.01^48^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~255~^55.35^48^0.38^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~303~^2.48^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~309~^7.95^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~323~^0.11^4^3.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~418~^3.06^4^0.07^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~203~^30.06^24^0.87^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~204~^12.54^24^1.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~207~^1.08^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~255~^57.16^24^0.51^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~309~^8.33^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~418~^2.70^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~203~^20.38^72^0.25^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~204~^11.71^72^1.08^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~207~^0.92^72^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~255~^67.25^72^1.16^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~303~^1.71^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~309~^5.99^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~323~^0.15^6^5.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~418~^2.31^6^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~203~^20.06^48^0.25^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~204~^12.78^48^1.12^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~207~^0.91^48^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~255~^66.55^48^1.18^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~303~^1.70^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~309~^5.97^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~323~^0.17^4^6.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~418~^2.46^4^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~203~^20.87^24^0.27^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~204~^10.11^24^1.20^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~207~^0.94^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~255~^68.31^24^1.24^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~303~^1.73^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~309~^6.20^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~323~^0.11^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~418~^2.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23220~^~203~^25.07^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~204~^14.53^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~205~^0.62^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~207~^1.09^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~255~^58.69^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~303~^2.67^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~309~^6.19^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~323~^0.43^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~418~^2.73^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23221~^~203~^27.06^72^1.22^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~204~^20.47^72^1.70^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~207~^1.28^72^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~255~^51.41^72^1.00^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~303~^5.09^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~309~^7.01^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~323~^0.09^6^6.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~418~^7.72^6^0.10^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~203~^26.46^48^1.23^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~204~^21.62^48^1.74^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~207~^1.26^48^0.04^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~255~^50.82^48^1.06^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~303~^4.95^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~309~^6.97^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~323~^0.10^4^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~418~^7.97^4^0.12^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~203~^27.95^24^1.26^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~204~^18.75^24^1.80^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~207~^1.31^24^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~255~^52.30^24^1.17^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~303~^5.33^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~309~^7.20^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~323~^0.08^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~418~^7.34^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~203~^17.98^72^0.20^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~204~^17.59^72^1.29^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~205~^0.35^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~207~^0.91^72^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~255~^63.17^72^0.91^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~303~^3.42^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~309~^4.72^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~323~^0.15^6^6.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~418~^5.25^6^0.18^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~203~^17.69^48^0.22^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~204~^18.44^48^1.32^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~205~^0.35^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~207~^0.88^48^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~255~^62.64^48^0.94^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~303~^3.35^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~309~^4.51^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~323~^0.17^4^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~418~^5.48^4^0.22^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~203~^18.43^24^0.25^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~204~^16.31^24^1.38^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~205~^0.36^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~207~^0.94^24^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~255~^63.96^24^1.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~303~^3.63^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~309~^5.13^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~323~^0.13^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~418~^4.92^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~203~^24.85^36^0.26^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~204~^19.02^36^0.66^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23227~^~207~^0.99^36^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~255~^55.59^36^0.47^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~303~^2.40^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~309~^6.34^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~418~^2.20^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~203~^23.89^24^0.33^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~204~^21.10^24^0.83^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23228~^~207~^0.95^24^0.01^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~255~^54.37^24^0.58^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~303~^2.49^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~309~^6.23^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~418~^2.22^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~203~^26.29^12^0.44^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~204~^15.90^12^1.10^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23229~^~207~^1.05^12^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~255~^57.42^12^0.78^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~303~^2.28^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~309~^6.50^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~418~^2.18^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~203~^19.26^36^0.17^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~204~^16.71^36^0.65^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23230~^~207~^0.88^36^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~255~^63.02^36^0.64^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~303~^1.81^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~309~^4.96^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~418~^1.73^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~203~^18.69^24^0.21^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~204~^18.43^24^0.79^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23231~^~207~^0.87^24^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~255~^61.82^24^0.72^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~303~^1.86^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~309~^4.86^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~418~^1.78^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~203~^20.12^12^0.28^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~204~^14.14^12^1.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23232~^~207~^0.91^12^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~255~^64.83^12^0.88^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~303~^1.72^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~309~^5.13^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~418~^1.66^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~203~^24.23^36^0.49^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~204~^29.21^36^1.65^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23233~^~207~^0.62^36^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~255~^46.49^36^1.52^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~303~^2.40^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~309~^5.30^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~418~^2.12^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~203~^23.34^24^0.55^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~204~^30.95^24^1.72^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23234~^~207~^0.59^24^0.02^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~255~^45.56^24^1.55^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~303~^2.34^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~309~^5.19^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~418~^2.06^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~203~^25.56^12^0.65^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~204~^26.59^12^1.86^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23235~^~207~^0.67^12^0.03^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~255~^47.88^12^1.62^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~303~^2.49^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~309~^5.46^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~418~^2.22^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~203~^16.15^36^0.44^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~204~^28.42^36^1.70^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~205~^0.78^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~207~^0.73^36^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~255~^53.91^36^1.47^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~303~^1.63^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~309~^3.85^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~418~^1.55^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~203~^15.75^24^0.45^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~204~^29.89^24^1.77^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~205~^0.90^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~207~^0.72^24^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~255~^52.74^24^1.51^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~303~^1.61^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~309~^3.76^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~418~^1.53^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~203~^16.75^12^0.49^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~204~^26.23^12^1.89^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~207~^0.75^12^0.05^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~255~^55.67^12^1.60^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~303~^1.66^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~309~^4.00^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~418~^1.59^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23239~^~203~^28.97^16^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~204~^6.37^16^0.26^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~207~^1.11^16^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~255~^63.64^16^0.33^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~303~^2.77^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~309~^7.11^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~418~^3.36^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~203~^23.03^16^0.15^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23240~^~204~^4.40^16^0.12^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23240~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~207~^1.04^16^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23240~^~255~^72.28^16^0.14^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23240~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~303~^2.23^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23240~^~309~^5.19^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23240~^~418~^3.24^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~203~^28.26^24^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~204~^7.23^24^0.26^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~205~^0.73^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23241~^~207~^1.17^24^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~255~^62.62^24^0.36^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~303~^2.02^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~309~^5.61^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~418~^2.74^6^0.41^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~203~^28.19^16^0.27^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~204~^7.96^16^0.33^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~205~^1.07^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23242~^~207~^1.14^16^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~255~^61.65^16^0.45^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~303~^2.04^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~309~^5.65^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~418~^2.79^4^0.51^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~203~^28.36^8^0.36^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~204~^6.14^8^0.44^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~205~^0.22^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23243~^~207~^1.21^8^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~255~^64.07^8^0.61^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~303~^1.82^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~309~^5.41^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~418~^2.65^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~203~^21.38^24^0.10^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~204~^5.36^24^0.17^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~207~^0.98^24^0.03^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~255~^72.93^24^0.19^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~303~^2.00^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~309~^5.30^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23244~^~418~^2.69^6^0.04^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~203~^21.34^16^0.13^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~204~^5.82^16^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~207~^0.99^16^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~255~^72.52^16^0.23^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~303~^2.08^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23245~^~309~^4.82^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23245~^~418~^2.73^4^0.05^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~203~^21.44^8^0.17^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~204~^4.68^8^0.28^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~207~^0.98^8^0.05^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~255~^73.56^8^0.31^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~303~^1.98^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23246~^~309~^5.57^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23246~^~418~^2.64^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~203~^29.33^24^0.13^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~204~^8.54^24^0.34^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23247~^~207~^1.16^24^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~255~^60.67^24^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~303~^2.06^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23247~^~309~^5.69^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~418~^3.92^6^0.18^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~203~^28.99^16^0.16^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~204~^9.48^16^0.42^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~205~^0.36^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23248~^~207~^1.17^16^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~255~^60.00^16^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~303~^2.04^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~309~^5.64^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~418~^3.57^4^0.23^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~203~^29.85^8^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~204~^7.12^8^0.56^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23249~^~207~^1.15^8^0.06^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~255~^61.68^8^0.67^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~303~^1.91^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~309~^5.67^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~418~^4.46^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~203~^28.33^24^0.22^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~204~^8.76^24^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~205~^0.82^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23250~^~207~^1.17^24^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~255~^60.91^24^0.39^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~303~^2.02^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~309~^5.61^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~418~^4.09^6^0.30^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~203~^28.24^16^0.27^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~204~^9.97^16^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~205~^0.88^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23251~^~207~^1.18^16^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~255~^59.74^16^0.48^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~303~^2.02^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~309~^5.60^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~418~^3.72^4^0.38^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~203~^28.48^8^0.37^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~204~^6.95^8^0.67^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~205~^0.74^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23252~^~207~^1.15^8^0.06^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~255~^62.67^8^0.65^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~303~^1.85^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~309~^5.52^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~418~^4.65^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~203~^22.61^24^0.12^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~204~^5.84^24^0.28^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23253~^~207~^1.00^24^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~255~^70.59^24^0.25^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~303~^2.17^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23253~^~309~^5.76^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23253~^~418~^2.87^6^0.11^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~203~^22.50^16^0.15^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~204~^6.48^16^0.35^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~205~^0.23^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23254~^~207~^1.00^16^0.03^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~255~^69.79^16^0.32^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~303~^2.27^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23254~^~309~^5.28^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23254~^~418~^2.90^4^0.13^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~203~^22.77^8^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~204~^4.88^8^0.47^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23255~^~207~^1.01^8^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~255~^71.80^8^0.42^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~303~^2.39^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~309~^5.76^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~418~^2.82^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~203~^30.58^24^0.17^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~204~^5.37^24^0.13^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~207~^1.31^24^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~255~^62.92^24^0.22^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~303~^2.90^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23256~^~309~^7.44^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23256~^~418~^3.65^6^0.30^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~203~^30.45^16^0.22^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~204~^5.83^16^0.16^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~207~^1.32^16^0.05^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~255~^62.57^16^0.27^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~303~^2.89^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23257~^~309~^7.41^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23257~^~418~^3.80^4^0.37^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~203~^30.78^8^0.29^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~204~^4.68^8^0.22^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23258~^~207~^1.30^8^0.06^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~255~^63.44^8^0.36^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~303~^3.19^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~309~^8.62^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~418~^3.42^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~203~^29.12^24^0.15^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~204~^5.92^24^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~207~^1.12^24^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~255~^63.93^24^0.26^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~303~^2.75^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~309~^7.07^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~418~^3.78^6^0.20^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~203~^29.35^8^0.26^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~204~^5.25^8^0.34^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23260~^~207~^1.12^8^0.05^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~255~^64.36^8^0.44^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~303~^2.75^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~309~^8.17^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~418~^4.40^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~203~^23.04^24^0.12^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~204~^3.98^24^0.09^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~207~^1.06^24^0.01^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~255~^72.67^24^0.11^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~303~^2.24^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~309~^5.20^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~418~^2.90^6^0.34^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~203~^23.05^8^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~204~^3.35^8^0.16^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~207~^1.07^8^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~255~^73.27^8^0.19^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~303~^2.39^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23262~^~309~^5.78^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23262~^~418~^2.38^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~203~^22.66^24^0.10^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~204~^4.66^24^0.21^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~205~^0.04^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23263~^~207~^1.06^24^0.02^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~255~^71.57^24^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~303~^2.28^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23263~^~309~^5.29^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23263~^~418~^2.98^6^0.27^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~203~^22.52^16^0.13^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~204~^5.29^16^0.26^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~205~^0.18^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23264~^~207~^1.03^16^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~255~^70.99^16^0.25^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~303~^2.27^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23264~^~309~^5.28^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23264~^~418~^3.17^4^0.33^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~203~^22.89^8^0.17^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23265~^~204~^3.72^8^0.35^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23265~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23265~^~207~^1.11^8^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23265~^~255~^72.46^8^0.34^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23265~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~303~^2.17^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~309~^6.10^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~418~^2.69^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~203~^24.66^24^0.19^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~204~^15.70^24^0.49^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~205~^1.53^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23266~^~207~^0.94^24^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~255~^57.18^24^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~303~^3.07^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23266~^~309~^9.71^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23266~^~418~^3.15^6^0.15^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~203~^24.24^16^0.23^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~204~^17.21^16^0.61^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~205~^1.81^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23267~^~207~^0.95^16^0.02^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~255~^55.80^16^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~303~^3.06^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~309~^9.67^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~418~^3.02^4^0.19^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~203~^25.28^8^0.31^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~204~^13.43^8^0.82^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~205~^1.10^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23268~^~207~^0.93^8^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~255~^59.26^8^0.67^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~303~^3.22^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~309~^9.99^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~418~^3.36^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~203~^19.70^24^0.11^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23269~^~204~^10.60^24^0.31^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23269~^~205~^1.51^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23269~^~207~^0.89^24^0.01^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~255~^67.31^24^0.29^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23269~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~303~^2.64^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~309~^7.79^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~418~^2.96^6^0.39^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~203~^19.46^16^0.14^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~204~^11.40^16^0.39^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~205~^1.75^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23270~^~207~^0.89^16^0.01^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~255~^66.50^16^0.36^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~303~^2.64^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23270~^~309~^7.80^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23270~^~418~^3.21^4^0.48^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~203~^20.05^8^0.19^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~204~^9.39^8^0.52^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~205~^1.15^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23271~^~207~^0.88^8^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~255~^68.53^8^0.48^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~303~^2.95^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~309~^8.42^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~418~^2.57^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~203~^28.77^24^0.18^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~204~^9.20^24^0.31^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~205~^0.17^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23272~^~207~^1.12^24^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~255~^60.74^24^0.27^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~303~^2.77^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23272~^~309~^7.21^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23272~^~418~^3.25^6^0.15^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~203~^28.35^16^0.22^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~204~^10.26^16^0.38^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~205~^0.51^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23273~^~207~^1.12^16^0.02^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~255~^59.75^16^0.34^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~303~^2.76^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23273~^~309~^7.19^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23273~^~418~^3.15^4^0.19^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~203~^29.39^8^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23274~^~204~^7.61^8^0.51^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23274~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23274~^~207~^1.12^8^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23274~^~255~^62.22^8^0.46^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23274~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~303~^3.56^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~309~^11.04^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~418~^3.41^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~203~^28.15^24^0.19^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~204~^7.31^24^0.29^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~207~^1.09^24^0.02^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~255~^63.52^24^0.29^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~303~^2.68^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~309~^7.00^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~418~^4.01^6^0.29^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~203~^28.00^16^0.23^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~204~^8.42^16^0.36^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~207~^1.07^16^0.03^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~255~^62.52^16^0.37^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~303~^2.65^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~309~^6.81^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~418~^3.72^4^0.37^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~203~^28.37^8^0.31^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~204~^5.65^8^0.48^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23277~^~207~^1.12^8^0.04^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~255~^65.02^8^0.49^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~303~^3.46^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~309~^10.73^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~418~^4.43^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23278~^~203~^26.00^24^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~204~^15.00^24^0.90^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~205~^0.80^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23278~^~207~^1.10^24^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~255~^57.10^24^0.80^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~303~^3.16^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~309~^9.99^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23278~^~418~^2.77^6^0.36^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~203~^26.30^16^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~204~^14.30^16^1.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~205~^1.10^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23279~^~207~^1.10^16^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~255~^57.20^16^1.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~303~^3.23^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~309~^10.21^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~418~^2.81^4^0.45^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~203~^25.50^8^0.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~204~^16.10^8^1.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23280~^~207~^1.10^8^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~255~^56.90^8^1.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~303~^3.19^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~309~^9.88^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~418~^2.71^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~203~^19.90^24^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~204~^12.40^24^0.70^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~207~^0.90^24^0.00^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~255~^67.40^24^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~303~^2.41^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~309~^7.12^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23281~^~418~^2.64^6^0.03^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~203~^19.70^16^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~204~^13.40^16^0.90^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~207~^0.90^16^0.00^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~255~^66.50^16^0.70^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~303~^2.40^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~309~^7.09^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~418~^2.67^4^0.04^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~203~^20.10^8^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~204~^10.90^8^1.10^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~207~^0.90^8^0.00^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~255~^68.60^8^0.90^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~303~^2.74^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~309~^7.82^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~418~^2.60^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~203~^27.40^24^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~204~^14.10^24^1.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23284~^~207~^1.10^24^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~255~^56.80^24^0.80^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~303~^3.30^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~309~^10.42^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~418~^3.96^6^0.17^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~203~^26.80^16^0.40^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~204~^15.90^16^1.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23285~^~207~^1.10^16^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~255~^55.60^16^0.90^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~303~^3.23^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~309~^10.21^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~418~^3.63^4^0.22^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~203~^28.30^8^0.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23286~^~204~^11.60^8^1.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23286~^~205~^0.40^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23286~^~207~^1.10^8^0.10^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23286~^~255~^58.60^8^1.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23286~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~303~^3.52^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~309~^10.90^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~418~^4.44^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~203~^27.00^24^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~204~^12.90^24^0.70^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~205~^1.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23287~^~207~^1.10^24^0.00^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~255~^58.00^24^0.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~303~^3.30^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~309~^10.42^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~418~^4.11^6^0.28^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~203~^26.80^16^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~204~^14.10^16^0.90^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~205~^1.10^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23288~^~207~^1.10^16^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~255~^56.90^16^0.70^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~303~^3.29^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~309~^10.39^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~418~^3.77^4^0.35^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~203~^27.10^8^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~204~^11.20^8^1.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~205~^0.90^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23289~^~207~^1.10^8^0.10^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~255~^59.70^8^1.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~303~^3.43^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~309~^10.65^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~418~^4.62^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~203~^21.10^24^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~204~^11.30^24^0.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23290~^~207~^0.90^24^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~255~^66.40^24^0.50^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~303~^2.66^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~309~^7.87^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~418~^2.82^6^0.09^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~203~^20.80^16^0.20^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~204~^12.60^16^0.70^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~205~^0.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23291~^~207~^0.90^16^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~255~^65.10^16^0.60^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~303~^2.66^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~309~^7.87^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~418~^2.85^4^0.12^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~203~^21.60^8^0.30^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~204~^9.30^8^1.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2001~ -~23292~^~207~^1.00^8^0.00^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~255~^68.40^8^0.80^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~303~^2.98^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~309~^8.50^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~418~^2.79^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23293~^~203~^17.72^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~204~^18.12^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~207~^0.82^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~255~^63.56^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~303~^1.79^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~203~^20.85^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~204~^6.11^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~207~^1.08^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~255~^72.42^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~303~^2.25^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~203~^20.19^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~204~^12.30^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~207~^1.04^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~255~^66.47^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~303~^2.24^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~203~^11.32^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~204~^51.36^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~205~^0.39^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~207~^0.42^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~255~^36.51^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~303~^0.95^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~203~^9.58^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~204~^57.73^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~205~^1.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~207~^0.44^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~255~^31.20^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~303~^0.89^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~203~^6.54^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~204~^63.27^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~207~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~255~^30.25^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~203~^6.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~204~^63.30^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~207~^0.32^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~255~^30.44^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~303~^0.97^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~203~^5.54^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~204~^68.07^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~205~^0.97^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~207~^0.25^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~255~^25.17^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~303~^0.81^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~203~^5.16^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~204~^67.33^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~207~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~255~^28.13^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~303~^0.91^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23302~^~203~^20.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~204~^7.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~205~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~207~^1.06^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~255~^71.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~303~^2.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23303~^~203~^21.79^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~204~^4.87^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~207~^1.01^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~255~^72.95^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~303~^1.57^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23304~^~203~^19.71^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~204~^14.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~255~^65.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~303~^2.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~203~^19.90^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~204~^13.17^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~205~^0.11^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~207~^0.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~255~^66.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~303~^1.46^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23306~^~203~^21.90^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~204~^3.87^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~207~^1.11^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~255~^74.10^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~303~^2.53^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~203~^21.47^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~204~^8.20^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~207~^0.96^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~255~^70.09^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~303~^1.88^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~203~^21.40^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~204~^4.93^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~207~^1.06^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~255~^73.31^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~303~^2.11^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~203~^22.41^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~204~^4.43^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~207~^1.09^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~255~^73.05^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~303~^2.30^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~203~^18.87^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~204~^17.73^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~205~^0.57^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~207~^0.93^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~255~^61.91^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~303~^2.41^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~203~^20.15^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~204~^15.69^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~205~^0.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~207~^0.89^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~255~^63.07^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~303~^1.85^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~203~^16.92^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~204~^29.15^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~205~^0.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~207~^0.71^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~255~^53.09^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~303~^1.71^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~203~^20.35^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~204~^16.93^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~207~^0.91^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~255~^61.92^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~303~^1.89^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~23313~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~203~^17.61^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~204~^28.61^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~205~^0.46^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~207~^0.73^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~255~^52.58^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~303~^2.14^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23315~^~203~^21.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~204~^4.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~205~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~255~^73.65^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~303~^2.51^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~203~^19.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~204~^15.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~205~^0.11^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~207~^0.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~255~^64.60^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~303~^1.74^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~203~^21.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~204~^6.16^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~205~^0.01^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~255~^72.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~303~^2.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~203~^22.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~204~^4.40^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~255~^72.52^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~303~^2.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~203~^17.67^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~204~^24.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23319~^~207~^0.80^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~255~^57.21^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~303~^1.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~203~^14.58^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~204~^36.98^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23320~^~207~^0.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~255~^47.68^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~303~^1.54^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~203~^17.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~204~^27.64^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~207~^0.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~255~^54.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~303~^1.68^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2012~ -~23321~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~203~^14.54^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~204~^38.30^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~205~^0.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23322~^~207~^0.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~255~^46.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~303~^1.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~203~^18.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~204~^19.11^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~205~^0.58^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~207~^0.91^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~210~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~211~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~212~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~213~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~214~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~255~^60.90^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~287~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~303~^2.37^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23324~^~203~^23.49^36^0.37^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~204~^3.34^36^0.51^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~207~^1.12^36^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~255~^72.64^36^0.61^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~303~^2.33^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~309~^3.68^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~323~^0.23^6^5.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~418~^1.64^6^0.07^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~203~^23.49^24^0.38^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~204~^3.66^24^0.52^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~207~^1.12^24^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~255~^72.35^24^0.61^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~303~^2.35^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~309~^3.76^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~323~^0.24^4^6.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~418~^1.65^4^0.09^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~203~^23.49^12^0.39^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~204~^2.85^12^0.54^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~207~^1.12^12^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~255~^73.08^12^0.63^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~309~^3.52^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~323~^0.21^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~418~^1.62^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~203~^23.45^36^0.39^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~204~^3.50^36^0.57^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~207~^1.11^36^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~255~^72.51^36^0.56^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~303~^2.33^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~309~^3.67^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~323~^0.23^6^5.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~418~^1.64^6^0.07^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~203~^23.46^24^0.39^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~204~^3.81^24^0.58^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~207~^1.12^24^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~255~^72.24^24^0.57^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~303~^2.35^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~309~^3.75^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~323~^0.24^4^6.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~418~^1.65^4^0.09^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~203~^23.44^12^0.41^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~204~^3.04^12^0.60^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~207~^1.11^12^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~255~^72.93^12^0.59^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~309~^3.52^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~323~^0.21^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~418~^1.62^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~203~^23.27^36^0.31^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~204~^3.44^36^0.21^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~207~^1.09^36^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~255~^73.09^36^0.34^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~303~^1.45^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~309~^3.40^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23330~^~418~^1.83^6^0.10^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~203~^23.26^24^0.31^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~204~^3.74^24^0.25^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~207~^1.10^24^0.04^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~255~^72.88^24^0.35^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~303~^1.47^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~309~^3.41^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~323~^0.25^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23331~^~418~^1.68^4^0.12^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~203~^23.28^12^0.32^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~204~^3.00^12^0.31^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~207~^1.08^12^0.04^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~255~^73.40^12^0.38^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~303~^1.37^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~309~^3.36^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23332~^~418~^2.06^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~203~^23.26^36^0.30^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~204~^3.48^36^0.23^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~207~^1.09^36^0.03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~255~^73.07^36^0.36^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~303~^1.45^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~309~^3.39^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23333~^~418~^1.83^6^0.10^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~203~^23.24^24^0.30^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~204~^3.83^24^0.25^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~207~^1.10^24^0.04^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~255~^72.81^24^0.37^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~303~^1.47^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~309~^3.41^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~323~^0.25^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23334~^~418~^1.68^4^0.12^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~203~^23.30^12^0.31^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~204~^2.95^12^0.31^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~207~^1.08^12^0.04^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~255~^73.46^12^0.39^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~303~^1.37^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~309~^3.36^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23335~^~418~^2.06^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~203~^21.67^36^0.42^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~204~^6.93^36^0.72^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~207~^1.09^36^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~255~^71.50^36^0.17^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~303~^2.48^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~309~^3.20^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~323~^0.19^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23336~^~418~^3.47^6^0.13^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~203~^21.50^24^0.42^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~204~^7.40^24^0.73^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~207~^1.10^24^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~255~^71.05^24^0.22^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~303~^2.52^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~309~^3.21^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~323~^0.19^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23337~^~418~^3.34^4^0.16^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~203~^21.91^12^0.43^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~204~^6.21^12^0.77^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~207~^1.09^12^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~255~^72.17^12^0.29^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~303~^2.46^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~309~^3.32^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~323~^0.18^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23338~^~418~^3.67^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~203~^22.43^36^0.27^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~204~^8.17^36^0.66^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~207~^1.00^36^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~255~^68.75^36^0.85^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~303~^1.83^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~309~^3.57^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~323~^0.22^6^7.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~418~^1.74^6^0.08^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~203~^22.19^24^0.29^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~204~^9.16^24^0.71^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~207~^0.98^24^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~255~^67.82^24^0.87^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~303~^1.91^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~309~^3.62^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~323~^0.24^4^8.0e-03^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~418~^1.67^4^0.10^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~203~^22.79^12^0.32^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~204~^6.67^12^0.79^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~207~^1.02^12^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~255~^70.15^12^0.90^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~303~^1.73^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~309~^3.52^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~323~^0.20^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~418~^1.85^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~203~^21.72^36^0.38^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~204~^6.67^36^0.68^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~207~^1.10^36^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~255~^71.70^36^0.20^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~303~^2.49^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~309~^3.22^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~323~^0.18^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23342~^~418~^3.48^6^0.12^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~203~^21.57^24^0.39^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~204~^7.10^24^0.71^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~207~^1.10^24^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~255~^71.30^24^0.25^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~303~^2.53^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~309~^3.22^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~323~^0.18^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23343~^~418~^3.36^4^0.15^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~203~^21.95^12^0.40^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~204~^6.02^12^0.76^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~207~^1.09^12^0.05^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~255~^72.31^12^0.33^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~303~^2.47^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~309~^3.33^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~323~^0.18^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2013~ -~23344~^~418~^3.67^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23345~^~203~^27.31^36^0.47^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~204~^8.14^36^0.86^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~207~^1.24^36^0.06^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~255~^64.35^36^0.29^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~303~^3.20^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~309~^4.16^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~323~^0.10^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~23345~^~418~^4.06^6^0.13^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~203~^27.26^24^0.48^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~204~^8.82^24^0.90^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~207~^1.24^24^0.06^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~255~^63.70^24^0.37^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~303~^3.24^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~309~^4.42^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~323~^0.11^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~23346~^~418~^3.98^4^0.17^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~203~^27.38^12^0.51^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~204~^7.12^12^0.97^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~207~^1.24^12^0.06^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~255~^65.33^12^0.49^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~303~^3.03^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~309~^3.68^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~323~^0.09^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~23347~^~418~^4.18^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~203~^29.90^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23348~^~204~^4.49^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23348~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23348~^~207~^1.24^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23348~^~255~^64.56^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23348~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~303~^2.88^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~309~^4.54^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~323~^0.28^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~418~^2.02^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~203~^30.08^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23349~^~204~^4.79^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23349~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23349~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23349~^~255~^63.99^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23349~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~303~^2.90^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~309~^4.63^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~323~^0.30^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~418~^2.04^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~203~^30.97^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~204~^3.72^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23350~^~207~^1.27^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~255~^65.14^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~303~^2.88^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~309~^4.34^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~323~^0.26^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~418~^2.00^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~203~^29.66^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~204~^4.47^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23351~^~207~^1.22^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~255~^65.06^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~303~^1.88^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~309~^4.41^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~323~^0.31^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~418~^2.38^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~203~^29.79^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~204~^4.83^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23352~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~255~^64.50^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~303~^1.91^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~309~^4.43^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~323~^0.33^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~418~^2.18^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23353~^~203~^29.47^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~204~^3.98^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23353~^~207~^1.22^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~255~^65.92^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~303~^1.78^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~309~^4.36^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~323~^0.28^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~418~^2.67^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~203~^23.59^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~204~^2.94^36^0.47^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~207~^1.12^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~255~^72.96^36^0.67^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~303~^2.34^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~309~^3.70^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~323~^0.23^6^5.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~418~^1.64^6^0.07^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~203~^23.59^24^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~204~^3.26^24^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~207~^1.12^24^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~255~^72.66^24^0.68^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~303~^2.35^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~309~^3.78^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~323~^0.24^4^6.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~418~^1.66^4^0.09^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~203~^23.59^12^0.37^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~204~^2.45^12^0.49^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~207~^1.12^12^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~255~^73.40^12^0.69^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~309~^3.54^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~323~^0.21^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~418~^1.63^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~203~^23.59^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~204~^2.94^36^0.47^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~207~^1.12^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~255~^72.96^36^0.67^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~303~^2.34^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~309~^3.70^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~323~^0.23^6^5.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~418~^1.64^6^0.07^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~203~^23.59^24^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~204~^3.26^24^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~207~^1.12^24^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~255~^72.66^24^0.68^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~303~^2.35^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~309~^3.78^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~323~^0.24^4^6.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~418~^1.66^4^0.09^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~203~^23.59^12^0.37^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~204~^2.45^12^0.49^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~207~^1.12^12^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~255~^73.40^12^0.69^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~303~^2.34^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~309~^3.54^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~323~^0.21^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~418~^1.63^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~203~^23.37^36^0.28^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~204~^3.04^36^0.27^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~207~^1.10^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~255~^73.43^36^0.46^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~303~^1.45^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~309~^3.42^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23360~^~418~^1.84^6^0.10^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~203~^23.35^24^0.28^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~204~^3.38^24^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~207~^1.10^24^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~255~^73.18^24^0.46^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~303~^1.47^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~309~^3.43^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~323~^0.27^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23361~^~418~^1.68^4^0.12^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~203~^23.41^12^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~204~^2.52^12^0.33^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~207~^1.09^12^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~255~^73.81^12^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~303~^1.37^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~309~^3.38^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23362~^~418~^2.07^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~203~^23.37^36^0.28^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~204~^3.04^36^0.27^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~207~^1.10^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~255~^73.43^36^0.46^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~303~^1.45^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~309~^3.42^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23363~^~418~^1.84^6^0.10^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~203~^23.35^24^0.28^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~204~^3.38^24^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~207~^1.10^24^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~255~^73.18^24^0.46^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~303~^1.47^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~309~^3.43^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~323~^0.25^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23364~^~418~^1.68^4^0.12^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~203~^23.41^12^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~204~^2.52^12^0.33^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~207~^1.09^12^0.04^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~255~^73.81^12^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~303~^1.37^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~309~^3.38^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23365~^~418~^2.07^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~203~^21.94^36^0.34^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~204~^5.74^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~207~^1.11^36^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~255~^72.44^36^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~303~^2.50^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~309~^3.26^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~323~^0.23^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23366~^~418~^3.53^6^0.12^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~203~^21.78^24^0.34^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~204~^6.16^24^0.39^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~207~^1.11^24^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~255~^72.04^24^0.32^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~303~^2.55^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~309~^3.27^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23367~^~418~^3.40^4^0.15^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~203~^22.16^12^0.35^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~204~^5.10^12^0.44^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~207~^1.10^12^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~255~^73.04^12^0.37^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~303~^2.48^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~309~^3.37^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~323~^0.18^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~23368~^~418~^3.72^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~203~^23.07^36^0.35^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~204~^5.67^36^0.52^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~207~^1.02^36^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~255~^70.63^36^0.66^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~303~^1.84^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~309~^3.72^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~323~^0.22^6^8.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~418~^1.78^6^0.09^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~203~^22.93^24^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~204~^6.34^24^0.56^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~207~^1.01^24^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~255~^69.94^24^0.68^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~303~^1.93^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~309~^3.79^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~323~^0.24^4^9.0e-03^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~418~^1.71^4^0.11^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~203~^23.30^12^0.38^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~204~^4.66^12^0.62^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23371~^~207~^1.04^12^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~255~^71.68^12^0.71^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~303~^1.73^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~309~^3.64^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~323~^0.20^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~418~^1.88^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~203~^21.94^36^0.34^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~204~^5.74^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~207~^1.11^36^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~255~^72.44^36^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~303~^2.50^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~309~^3.26^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~323~^0.23^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23372~^~418~^3.53^6^0.12^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~203~^21.78^24^0.34^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~204~^6.16^24^0.39^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~207~^1.11^24^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~255~^72.04^24^0.32^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~303~^2.55^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~309~^3.27^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~323~^0.24^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23373~^~418~^3.40^4^0.15^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~203~^22.16^12^0.35^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~204~^5.10^12^0.44^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~207~^1.10^12^0.05^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~255~^73.04^12^0.37^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~303~^2.48^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~309~^3.37^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~323~^0.22^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~23374~^~418~^3.72^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~203~^27.51^36^0.42^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~204~^7.49^36^0.69^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~207~^1.25^36^0.06^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~255~^64.79^36^0.29^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~303~^3.22^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~309~^4.19^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~323~^0.28^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23375~^~418~^4.09^6^0.13^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~203~^27.48^24^0.44^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~204~^8.13^24^0.73^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~207~^1.25^24^0.06^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~255~^64.17^24^0.36^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~303~^3.25^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~309~^4.46^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~323~^0.30^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23376~^~418~^4.01^4^0.16^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~203~^27.55^12^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~204~^6.54^12^0.81^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~207~^1.24^12^0.07^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~255~^65.71^12^0.48^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~303~^3.04^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~309~^3.70^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~323~^0.25^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23377~^~418~^4.21^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~203~^30.09^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23378~^~204~^3.77^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23378~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23378~^~207~^1.29^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23378~^~255~^64.96^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23378~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~303~^2.89^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~309~^4.57^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~323~^0.28^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~418~^2.03^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~203~^30.24^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23379~^~204~^4.11^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23379~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~23379~^~207~^1.22^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23379~^~255~^64.37^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23379~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~303~^2.91^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~309~^4.67^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~323~^0.30^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~418~^2.05^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~203~^29.81^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23380~^~204~^3.37^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23380~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23380~^~207~^1.26^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23380~^~255~^65.87^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~23380~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~303~^2.89^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~309~^4.37^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~323~^0.26^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~418~^2.01^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~203~^29.85^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~204~^3.90^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23381~^~207~^1.27^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~255~^65.35^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~303~^1.88^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~309~^4.44^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~323~^0.31^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~418~^2.38^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~203~^29.94^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~204~^4.26^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23382~^~207~^1.21^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~255~^64.83^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~303~^1.91^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~309~^4.46^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~323~^0.33^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~418~^2.19^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~203~^29.52^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~204~^3.43^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23383~^~207~^1.19^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~255~^66.20^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~303~^1.78^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~309~^4.39^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~323~^0.28^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~418~^2.68^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23384~^~203~^23.30^12^0.38^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~204~^4.66^12^0.62^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~207~^1.04^12^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~255~^71.68^12^0.71^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~303~^1.73^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~309~^3.64^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~323~^0.20^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~418~^1.88^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~203~^22.93^24^0.36^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~204~^6.34^24^0.56^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~207~^1.01^24^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~255~^69.94^24^0.68^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~303~^1.93^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~309~^3.79^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~323~^0.24^4^9.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~418~^1.71^4^0.11^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~203~^23.07^36^0.35^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~204~^5.67^36^0.52^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~207~^1.02^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~255~^70.63^36^0.66^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~303~^1.84^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~309~^3.72^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~323~^0.22^6^8.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~418~^1.78^6^0.09^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~203~^21.54^12^0.38^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~204~^11.65^12^0.53^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~207~^0.97^12^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~255~^66.35^12^0.79^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~303~^1.71^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~309~^3.24^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~323~^0.19^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~418~^1.78^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~203~^21.29^36^0.35^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~204~^12.68^36^0.32^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~207~^0.95^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~255~^65.33^36^0.70^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~303~^1.80^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~309~^3.29^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~323~^0.21^6^7.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~418~^1.69^6^0.08^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~203~^25.69^24^0.23^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~204~^19.19^24^0.53^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~207~^1.04^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~255~^54.87^24^1.07^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~303~^2.47^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~309~^4.10^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~323~^0.24^4^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~418~^1.81^4^0.09^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~203~^26.92^12^0.30^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~204~^15.44^12^0.68^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~207~^1.08^12^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~255~^57.68^12^1.14^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~303~^2.51^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~309~^4.31^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~323~^0.20^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~418~^2.00^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~203~^26.18^36^0.19^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~204~^17.69^36^0.45^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~207~^1.06^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~255~^55.99^36^1.04^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~303~^2.48^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~309~^4.16^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~323~^0.23^6^0.01^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~418~^1.88^6^0.07^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~203~^28.66^24^0.31^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~204~^10.34^24^0.33^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~207~^1.13^24^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~255~^60.58^24^0.64^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~303~^2.58^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~309~^4.66^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~323~^0.24^4^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~418~^1.88^4^0.11^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~203~^29.67^12^0.38^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~204~^7.26^12^0.45^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~207~^1.17^12^0.03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~255~^62.99^12^0.72^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~303~^2.61^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~309~^4.83^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~323~^0.19^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~418~^2.09^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~203~^29.06^36^0.27^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~204~^9.11^36^0.27^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~207~^1.15^36^0.02^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~255~^61.54^36^0.60^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~303~^2.59^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~309~^4.71^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~323~^0.22^6^0.01^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~418~^1.96^6^0.09^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~203~^21.13^24^0.36^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~204~^13.36^24^0.40^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~207~^0.94^24^0.05^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~255~^64.65^24^0.73^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~303~^1.88^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~309~^3.35^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~323~^0.23^4^8.0e-03^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~418~^1.63^4^0.10^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23397~^~203~^33.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~204~^6.57^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~207~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~255~^60.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~303~^2.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~309~^6.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~323~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~418~^1.65^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~203~^22.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~204~^4.49^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~207~^0.98^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~255~^73.11^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~303~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~309~^3.63^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~418~^1.80^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~203~^29.35^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~204~^16.37^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~207~^0.93^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~255~^54.88^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~303~^1.84^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~309~^5.76^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~323~^0.71^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~418~^1.34^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~203~^19.74^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~204~^12.75^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~207~^0.84^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~255~^67.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~303~^1.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~309~^3.64^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~323~^0.43^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~418~^1.97^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~203~^34.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~204~^7.05^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~207~^0.83^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~255~^58.64^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~303~^2.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~309~^5.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~323~^0.85^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~418~^1.18^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~203~^20.92^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~204~^4.62^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~207~^0.96^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~255~^73.75^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~303~^2.06^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~309~^2.66^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~323~^0.48^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~418~^1.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~203~^20.46^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~204~^5.41^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23404~^~207~^0.95^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~255~^73.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~303~^2.04^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~309~^4.84^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~323~^0.63^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~418~^2.26^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~203~^32.08^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~204~^8.89^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~207~^0.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~255~^59.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~303~^2.71^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~309~^7.81^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~323~^0.90^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~418~^1.97^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~203~^30.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~204~^13.22^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~207~^1.07^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~255~^56.80^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~303~^2.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~309~^4.99^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~323~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~418~^1.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~203~^19.77^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~204~^8.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~205~^1.38^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~207~^0.91^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~255~^69.43^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~303~^2.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~309~^3.66^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~323~^0.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~418~^1.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~203~^29.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~204~^4.98^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~207~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~255~^65.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~303~^1.89^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~309~^3.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~323~^0.60^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~418~^1.25^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~203~^20.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~204~^3.35^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~205~^1.35^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~207~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~255~^74.14^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~303~^1.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~309~^2.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~323~^0.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~418~^1.14^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~203~^30.75^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~204~^7.92^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~207~^0.67^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~255~^61.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~303~^2.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~309~^6.89^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~323~^0.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~418~^1.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~203~^20.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~204~^6.67^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~207~^0.96^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~255~^73.62^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~303~^1.57^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~309~^4.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~418~^1.56^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~203~^33.22^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~204~^10.30^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~207~^1.06^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~255~^56.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~303~^3.23^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~309~^4.54^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~323~^1.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~418~^1.85^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~203~^21.30^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~204~^7.69^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~207~^0.92^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~255~^70.81^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~303~^1.90^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~309~^5.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~323~^0.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~418~^2.85^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~203~^31.29^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~204~^6.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~207~^1.04^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~255~^62.27^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~303~^6.81^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~309~^2.79^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~323~^2.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~418~^6.73^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~203~^18.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~204~^3.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~207~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~255~^78.07^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~303~^4.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~309~^1.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~323~^1.22^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~418~^10.81^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~203~^31.23^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~204~^4.64^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~207~^1.62^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~255~^64.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~303~^2.72^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~309~^6.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~323~^0.74^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~418~^1.26^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~203~^21.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~204~^3.12^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~207~^0.99^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~255~^74.57^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~303~^2.04^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~309~^3.86^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~323~^0.43^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~418~^1.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~203~^22.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~204~^4.36^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~205~^0.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~207~^1.03^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~255~^72.35^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~303~^2.27^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~309~^2.93^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~323~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~418~^1.65^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~203~^7.90^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~204~^57.22^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~205~^3.39^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~207~^0.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~255~^31.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~303~^1.18^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~309~^1.88^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~418~^0.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~203~^6.97^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~204~^63.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~205~^0.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~255~^29.04^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~309~^1.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~418~^0.21^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~203~^27.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~204~^5.27^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~207~^1.55^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~255~^66.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~303~^5.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~309~^2.60^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~323~^1.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~418~^21.35^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~203~^27.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~204~^7.58^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~207~^1.25^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~255~^64.70^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~303~^2.25^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~309~^4.66^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~323~^0.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~418~^1.88^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~203~^15.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~204~^2.64^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~207~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~255~^80.52^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~303~^3.83^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~309~^1.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~323~^0.82^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~418~^27.66^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~203~^23.30^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~204~^4.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~205~^3.78^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~207~^1.80^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~255~^66.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~303~^7.17^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~309~^3.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~323~^1.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~418~^96.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~203~^20.50^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~204~^4.05^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~205~^3.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~207~^1.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~255~^70.39^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~303~^8.44^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~309~^3.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~323~^1.84^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~418~^84.50^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~203~^24.21^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~204~^3.26^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~207~^0.63^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~255~^73.10^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~303~^1.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~309~^5.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~418~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~203~^21.23^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~204~^3.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~205~^0.23^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~207~^1.02^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~255~^73.84^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~303~^1.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~309~^4.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~323~^0.49^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~418~^1.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~203~^29.87^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~204~^8.46^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~207~^0.63^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~255~^62.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~303~^2.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~309~^5.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~323~^0.76^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~418~^1.86^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~203~^21.83^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~204~^7.56^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~207~^0.90^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~255~^71.68^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~303~^1.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~309~^4.64^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~323~^0.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~418~^2.33^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~203~^27.23^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~204~^9.74^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~205~^0.09^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~207~^1.12^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~255~^61.82^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~303~^2.21^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~309~^4.90^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~323~^0.93^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~418~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~203~^21.31^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~204~^6.78^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~207~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~255~^71.32^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~303~^1.82^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~309~^3.95^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~323~^0.74^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~418~^1.17^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~203~^30.17^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~204~^7.48^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~207~^1.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~255~^61.77^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~303~^2.96^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~309~^4.08^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~323~^0.56^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~418~^2.21^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~203~^28.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~204~^11.40^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~207~^1.09^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~255~^59.61^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~303~^1.96^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~309~^3.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~323~^0.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~418~^0.94^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~203~^20.93^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~204~^7.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~205~^0.74^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~207~^0.91^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~255~^70.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~303~^1.61^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~309~^2.76^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~323~^0.35^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~418~^0.71^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~203~^6.50^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~204~^78.30^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~207~^0.28^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~255~^15.41^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~303~^0.47^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~309~^0.43^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~418~^0.34^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~203~^8.50^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~204~^72.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~207~^0.10^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~255~^19.91^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~303~^0.38^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~309~^0.36^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~418~^0.16^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~203~^12.53^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~204~^29.79^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~207~^1.91^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~255~^56.26^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~303~^1.12^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~309~^1.20^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~323~^0.79^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~418~^1.50^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~203~^11.51^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~204~^28.60^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~207~^2.36^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~255~^57.67^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~303~^1.15^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~309~^1.00^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~323~^0.69^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~418~^2.10^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~203~^29.37^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~204~^9.01^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~205~^0.27^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~207~^1.66^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~255~^59.69^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~303~^3.01^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~309~^3.34^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~323~^0.81^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~418~^1.97^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23440~^~203~^21.27^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~204~^10.31^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~207~^0.87^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~255~^69.48^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~303~^1.89^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~309~^4.46^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~323~^0.36^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~418~^2.24^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23441~^~203~^21.19^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~204~^6.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~207~^1.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~255~^71.79^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~303~^2.21^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~309~^2.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~323~^0.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~418~^1.78^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~203~^18.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~204~^20.34^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~205~^3.68^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~207~^0.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~255~^56.95^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~303~^2.52^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~309~^4.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~323~^0.95^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~418~^3.95^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~203~^17.77^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~204~^19.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~207~^0.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~255~^65.24^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~303~^1.81^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~309~^2.70^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~323~^0.95^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~418~^5.18^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~203~^19.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~204~^2.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~207~^0.89^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~255~^77.71^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~303~^3.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~309~^2.39^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~323~^0.51^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~418~^2.29^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~203~^14.86^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~204~^1.98^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23445~^~207~^1.10^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~255~^82.19^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~303~^4.44^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~309~^1.72^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~323~^0.45^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~418~^7.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23446~^~203~^31.30^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~204~^11.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~255~^57.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~303~^2.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~309~^5.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~323~^0.70^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~418~^1.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~203~^21.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~204~^8.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~255~^70.23^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~303~^1.97^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~309~^3.46^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~323~^0.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~418~^1.71^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~203~^20.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~204~^41.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~207~^0.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~255~^38.97^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~303~^1.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~309~^3.61^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~323~^0.43^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~418~^0.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~203~^15.81^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~204~^31.27^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~207~^0.61^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~255~^53.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~303~^1.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~309~^2.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~323~^0.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~418~^1.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~203~^31.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~204~^13.60^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~207~^0.78^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~255~^54.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~303~^2.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~309~^4.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~323~^0.77^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~418~^1.10^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~203~^20.05^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~204~^9.23^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~207~^0.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~255~^70.11^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~303~^1.94^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~309~^2.51^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~323~^0.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~418~^1.31^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~203~^29.92^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~204~^14.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~207~^0.74^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~255~^55.95^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~303~^2.52^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~309~^7.18^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~323~^0.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~418~^1.83^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~203~^19.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~204~^11.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~207~^0.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~255~^68.67^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~303~^1.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~309~^4.44^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~323~^0.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~418~^2.07^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~203~^27.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~204~^19.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~205~^0.03^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~255~^52.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~303~^2.20^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~309~^4.56^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~323~^0.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~418~^1.30^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~203~^18.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~204~^16.31^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~205~^1.26^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23455~^~207~^0.83^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~255~^63.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~303~^1.91^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~309~^3.32^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~323~^0.34^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~418~^1.39^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~203~^29.49^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~204~^5.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~207~^1.14^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~255~^64.99^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~303~^1.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~309~^3.92^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~323~^0.59^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~418~^1.24^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~203~^19.88^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~204~^4.92^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~205~^1.32^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~207~^1.00^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~255~^72.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~303~^1.37^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~309~^2.72^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~323~^0.45^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~418~^1.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~203~^30.13^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~204~^9.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~207~^0.66^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~255~^60.32^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~303~^2.36^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~309~^6.73^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~323~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~418~^1.38^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~203~^20.12^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~204~^8.90^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~255~^71.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~303~^1.53^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~309~^4.19^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~323~^0.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~418~^1.51^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~203~^31.86^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~204~^13.79^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~255~^54.29^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~303~^3.09^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~309~^4.33^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~323~^1.10^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~418~^1.77^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~203~^20.57^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~204~^10.55^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~207~^0.89^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~255~^68.68^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~303~^1.84^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~309~^5.22^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~323~^0.49^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~418~^2.72^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~203~^29.82^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~204~^8.50^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~205~^0.07^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~207~^1.54^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~255~^61.87^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~303~^2.60^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~309~^5.85^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~323~^0.70^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~418~^1.21^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23463~^~203~^20.61^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~204~^7.20^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23463~^~207~^0.94^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~255~^71.41^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~303~^1.95^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~309~^3.66^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~323~^0.41^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~418~^1.43^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23464~^~203~^29.79^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~204~^8.68^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~207~^0.63^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~255~^62.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~303~^2.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~309~^5.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~323~^0.75^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~418~^1.85^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~203~^30.01^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~204~^7.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~207~^1.37^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~255~^61.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~303~^2.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~309~^4.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~323~^0.56^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~418~^2.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23466~^~203~^21.74^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~204~^6.05^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~207~^0.97^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~255~^72.22^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~303~^2.30^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~309~^3.46^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~323~^0.32^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~418~^2.15^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23467~^~203~^21.65^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~204~^6.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~207~^0.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~255~^71.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~303~^2.29^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~309~^3.43^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~323~^0.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~418~^2.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~203~^24.89^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~204~^22.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~205~^0.02^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~207~^0.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~255~^52.40^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~303~^1.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~309~^2.92^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~323~^0.44^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~418~^0.84^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~203~^18.49^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~204~^19.53^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~205~^0.60^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~207~^0.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~255~^60.78^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~303~^1.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~309~^2.31^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~323~^0.28^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~418~^0.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~203~^29.26^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~204~^9.35^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~205~^0.27^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~207~^1.66^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~255~^59.47^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~303~^2.99^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~309~^3.33^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~323~^0.81^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~418~^1.96^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~203~^21.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~204~^6.88^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~255~^71.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~303~^2.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~309~^2.32^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~323~^0.59^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~418~^1.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23472~^~203~^20.85^72^0.21^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~204~^7.00^72^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23472~^~207~^1.02^72^0.02^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~255~^71.72^107^0.19^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~303~^2.33^36^0.06^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~309~^4.97^36^0.09^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23472~^~418~^2.23^36^0.07^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~203~^26.22^72^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~204~^8.94^107^0.24^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23473~^~207~^1.05^72^0.02^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~255~^63.81^107^0.30^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~303~^2.78^36^0.09^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~309~^6.41^36^0.17^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23473~^~418~^2.51^36^0.09^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~203~^25.56^36^0.56^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~204~^8.01^36^0.52^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~205~^0.06^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23474~^~207~^1.08^36^0.03^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~255~^65.29^36^0.29^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~303~^2.82^12^0.15^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~309~^6.40^12^0.14^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23474~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~203~^27.03^12^0.96^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~204~^8.43^12^0.81^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~207~^0.94^12^0.04^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~255~^63.26^12^1.18^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~303~^2.99^12^0.12^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~309~^6.78^12^0.14^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~203~^28.88^36^0.37^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~204~^9.51^36^0.55^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23476~^~207~^1.32^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~255~^60.82^36^0.65^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~303~^3.17^12^0.14^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~309~^6.97^12^0.15^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23476~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~203~^21.98^72^0.26^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~204~^3.00^72^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23477~^~207~^1.07^72^0.03^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~255~^74.75^107^0.24^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~303~^2.44^36^0.07^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~309~^5.21^36^0.12^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23477~^~418~^2.26^36^0.09^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~203~^26.36^72^0.43^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~204~^4.46^107^0.48^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23478~^~207~^1.06^72^0.02^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~255~^67.96^107^0.58^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~303~^2.88^36^0.12^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~309~^6.45^36^0.22^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23478~^~418~^2.44^36^0.12^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~203~^26.03^36^0.73^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~204~^3.65^36^1.06^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23479~^~207~^1.09^36^0.03^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~255~^68.68^36^0.51^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~303~^2.89^12^0.21^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~309~^6.50^12^0.19^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23479~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~203~^27.58^12^1.24^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~204~^4.06^12^1.85^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23480~^~207~^0.95^12^0.06^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~255~^66.43^12^2.63^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~303~^3.11^12^0.17^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~309~^6.94^12^0.20^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23480~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~203~^29.46^36^0.48^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~204~^5.46^36^1.09^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~23481~^~207~^1.36^36^0.06^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~255~^64.55^36^1.16^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~303~^3.29^12^0.19^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~309~^7.15^12^0.20^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23481~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23482~^~203~^20.95^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~204~^9.30^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23482~^~207~^1.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~255~^69.03^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~303~^2.04^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~309~^4.74^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~418~^2.23^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~203~^22.15^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~204~^5.38^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~207~^1.06^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~255~^71.78^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~303~^1.84^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~309~^4.59^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~418~^1.61^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~203~^28.95^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~204~^8.15^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~255~^62.48^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~303~^2.40^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~309~^5.80^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~323~^0.28^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~418~^1.94^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~203~^22.15^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~204~^5.54^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23485~^~207~^1.05^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~255~^71.58^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~303~^2.08^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~309~^4.86^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~323~^0.19^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~418~^2.10^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23490~^~203~^22.01^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~204~^6.05^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~207~^1.04^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~255~^71.22^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~303~^1.91^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~309~^4.59^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~323~^0.26^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~418~^1.75^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~203~^28.73^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~204~^9.16^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~207~^1.08^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~255~^61.51^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~303~^2.49^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~309~^5.84^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~323~^0.27^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~418~^1.99^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~203~^21.34^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~204~^10.08^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23494~^~207~^1.01^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~255~^68.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~303~^2.07^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~309~^4.82^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~323~^0.20^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~418~^2.32^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~203~^21.55^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~204~^7.24^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23495~^~207~^1.01^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~255~^70.24^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~303~^2.16^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~309~^5.36^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~344~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~345~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~346~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~347~^0.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~418~^2.60^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~203~^22.03^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~204~^4.99^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23496~^~207~^1.05^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~255~^72.30^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~303~^2.14^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~309~^5.08^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~344~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~345~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~346~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~347~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~418~^2.33^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~203~^21.20^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~204~^8.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~ -~23497~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~255~^70.16^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~303~^2.06^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~309~^4.76^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~344~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~345~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~346~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~347~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~418~^2.22^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~203~^27.51^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~204~^6.37^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~255~^60.00^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~303~^2.17^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~309~^5.50^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~323~^0.25^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~418~^1.68^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~203~^22.37^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~204~^4.55^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~255~^72.47^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~269~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~303~^1.81^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~309~^4.67^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~323~^0.22^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~341~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~342~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~343~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~418~^1.47^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~573~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~578~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23509~^~203~^25.90^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~204~^5.42^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~207~^1.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~255~^66.27^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23509~^~303~^2.93^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~309~^7.83^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~418~^3.39^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23509~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~203~^26.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~204~^10.16^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~207~^1.10^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~255~^62.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23511~^~303~^2.81^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~309~^8.92^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~418~^3.57^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23513~^~203~^19.63^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~204~^5.02^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~255~^73.41^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23513~^~303~^2.35^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~309~^4.83^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~323~^0.13^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~418~^3.21^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23514~^~203~^26.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~204~^6.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~207~^1.20^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~255~^64.32^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23514~^~303~^3.20^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~309~^6.39^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~418~^3.07^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23515~^~203~^26.36^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~204~^6.75^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~255~^64.92^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23515~^~303~^3.09^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~309~^6.39^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~418~^3.02^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23516~^~203~^28.60^72^0.29^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~204~^5.82^72^0.49^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23516~^~207~^1.23^72^0.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~255~^64.62^72^0.50^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23516~^~303~^2.94^6^0.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~309~^8.19^6^0.20^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~323~^0.10^6^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~418~^3.43^6^0.16^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23516~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23517~^~203~^29.34^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~204~^7.04^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~207~^1.17^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~255~^60.02^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23517~^~303~^3.79^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~309~^7.87^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~323~^0.13^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~418~^2.97^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23519~^~203~^25.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~204~^5.72^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~207~^1.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~255~^65.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23519~^~303~^3.02^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~309~^7.83^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~418~^3.37^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~203~^26.08^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~204~^5.24^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~207~^1.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~255~^67.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23521~^~303~^2.80^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~309~^7.81^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~323~^0.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~418~^3.42^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~203~^25.77^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~204~^12.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~207~^1.02^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~255~^60.69^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23523~^~303~^2.77^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~309~^8.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~323~^0.18^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~418~^3.38^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23523~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23525~^~203~^25.67^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~204~^9.99^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~207~^1.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~255~^62.86^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23525~^~303~^2.74^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~309~^8.68^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~418~^3.71^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23525~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23528~^~203~^24.61^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~204~^12.26^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~255~^60.38^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23528~^~303~^3.02^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~309~^5.95^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~323~^0.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~418~^2.85^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~23528~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~23531~^~203~^27.30^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~204~^8.76^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~207~^1.26^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~255~^62.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23531~^~303~^3.09^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~309~^6.16^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~418~^3.15^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~23531~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~23533~^~203~^28.22^48^0.26^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~204~^7.25^48^0.50^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23533~^~207~^1.21^48^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~255~^63.61^48^0.72^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23533~^~303~^2.90^4^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~309~^7.89^4^0.23^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~323~^0.11^4^4.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~418~^3.27^4^0.19^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~23533~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~203~^28.41^24^0.35^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~204~^6.14^24^0.55^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23536~^~207~^1.24^24^0.12^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~255~^64.65^24^0.75^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23536~^~303~^2.89^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~309~^8.27^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~323~^0.07^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~418~^3.57^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23540~^~203~^26.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~204~^12.05^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~207~^1.07^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~255~^60.34^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23540~^~303~^2.77^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~309~^7.23^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~323~^0.10^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~418~^3.72^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23540~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23541~^~203~^23.51^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~204~^17.13^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~207~^0.93^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~255~^57.16^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23541~^~303~^2.58^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~309~^5.51^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~323~^0.11^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~418~^4.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23541~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23545~^~203~^29.97^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~204~^15.18^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~207~^1.45^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~255~^50.50^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23545~^~303~^3.64^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~309~^7.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~418~^2.83^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23545~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23547~^~203~^25.87^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~204~^5.52^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~207~^1.36^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~255~^66.19^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23547~^~303~^2.93^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~309~^7.82^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~418~^3.39^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~203~^25.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~204~^11.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~207~^1.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~255~^61.57^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23549~^~303~^2.76^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~309~^8.73^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~323~^0.17^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~418~^3.51^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23549~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23552~^~203~^25.70^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~204~^10.84^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~205~^0.00^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~207~^1.15^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~255~^61.09^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23552~^~303~^3.05^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~309~^6.04^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~323~^0.16^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~418~^2.97^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23552~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23554~^~203~^28.29^72^0.21^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~204~^6.80^72^0.47^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23554~^~207~^1.22^72^0.11^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~255~^64.02^72^0.70^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~ -~23554~^~303~^2.90^6^0.10^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~309~^8.04^6^0.18^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~323~^0.10^6^3.0e-03^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~418~^3.39^6^0.15^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23557~^~203~^21.41^72^0.24^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~204~^5.00^72^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~207~^1.05^72^0.03^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~255~^73.24^107^0.21^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23557~^~303~^2.38^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~309~^5.09^36^0.10^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23557~^~418~^2.24^36^0.08^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23557~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23558~^~203~^26.29^72^0.38^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~204~^6.80^107^0.34^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~207~^1.06^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~255~^65.78^107^0.42^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23558~^~303~^2.83^36^0.10^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~309~^6.43^36^0.19^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23558~^~418~^2.47^36^0.11^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23558~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23559~^~203~^25.80^36^0.64^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~204~^5.94^36^0.76^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23559~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~207~^1.09^36^0.03^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~255~^66.90^36^0.38^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23559~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23559~^~303~^2.85^12^0.18^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~309~^6.45^12^0.16^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23559~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23559~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23560~^~203~^29.17^36^0.42^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~204~^7.58^36^0.79^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23560~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~207~^1.34^36^0.06^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~255~^62.58^36^0.87^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23560~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23560~^~303~^3.23^12^0.16^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~309~^7.06^12^0.18^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~ -~23560~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23560~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23561~^~203~^27.31^12^1.09^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~204~^6.37^12^1.27^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23561~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~207~^0.94^12^0.05^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~255~^64.76^12^1.83^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23561~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23561~^~303~^3.05^12^0.15^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~309~^6.86^12^0.17^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23561~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23561~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23562~^~203~^20.00^72^0.19^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~204~^10.00^72^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~207~^0.98^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~255~^69.45^107^0.15^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23562~^~303~^2.24^36^0.05^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~309~^4.79^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23562~^~418~^2.21^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23562~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23563~^~203~^26.11^72^0.26^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~204~^11.75^107^0.15^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~207~^1.04^72^0.01^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~255~^61.24^107^0.21^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23563~^~303~^2.71^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~309~^6.37^36^0.14^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23563~^~418~^2.56^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23563~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23564~^~203~^25.21^36^0.44^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~204~^10.68^36^0.30^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23564~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~207~^1.08^36^0.02^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~255~^63.21^36^0.22^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23564~^~303~^2.77^12^0.12^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~309~^6.33^12^0.11^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23564~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23564~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23565~^~203~^28.45^36^0.29^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~204~^12.04^36^0.35^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23565~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~207~^1.28^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~255~^58.58^36^0.49^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23565~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23565~^~303~^3.08^12^0.11^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~309~^6.84^12^0.11^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23565~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23565~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23566~^~203~^26.62^12^0.77^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~204~^11.10^12^0.39^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23566~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~207~^0.93^12^0.03^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~255~^61.33^12^0.58^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23566~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23566~^~303~^2.89^12^0.10^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~309~^6.65^12^0.11^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23566~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23566~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23567~^~203~^18.59^72^0.16^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~204~^15.00^72^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~207~^0.91^72^0.02^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~255~^65.66^107^0.12^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23567~^~303~^2.09^36^0.04^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~309~^4.48^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~418~^2.17^36^0.06^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23567~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~23568~^~203~^25.93^72^0.19^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~204~^15.41^107^0.17^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~207~^1.02^72^0.01^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~255~^57.98^107^0.23^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23568~^~303~^2.60^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~309~^6.31^36^0.10^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23568~^~418~^2.64^36^0.05^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23568~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23569~^~203~^24.62^36^0.32^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~204~^14.02^36^0.30^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23569~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~207~^1.07^36^0.01^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23569~^~255~^60.61^36^0.22^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23569~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23569~^~303~^2.68^12^0.08^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~309~^6.20^12^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23569~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23569~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23570~^~203~^27.73^36^0.21^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~204~^15.30^36^0.36^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23570~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~207~^1.22^36^0.03^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~255~^55.90^36^0.49^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23570~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23570~^~303~^2.93^12^0.07^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~309~^6.62^12^0.08^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23570~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23570~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23571~^~203~^25.93^12^0.60^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~204~^14.36^12^0.43^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23571~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~207~^0.92^12^0.02^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~255~^58.98^12^0.60^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23571~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23571~^~303~^2.74^12^0.07^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~309~^6.45^12^0.07^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23571~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23571~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23572~^~203~^17.17^72^0.17^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~204~^20.00^72^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~207~^0.84^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~255~^61.87^107^0.13^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23572~^~303~^1.94^36^0.04^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~309~^4.18^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~418~^2.14^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23572~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~23573~^~203~^25.75^72^0.22^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23573~^~204~^17.78^107^0.16^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~207~^1.00^72^0.01^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~255~^55.99^107^0.22^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23573~^~303~^2.48^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~309~^6.25^36^0.12^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23573~^~418~^2.73^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23573~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23574~^~203~^24.04^36^0.37^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~204~^15.94^36^0.30^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23574~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~207~^1.06^36^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~255~^59.11^36^0.22^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23574~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23574~^~303~^2.59^12^0.10^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~309~^6.07^12^0.09^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23574~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23574~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23575~^~203~^27.00^36^0.24^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~204~^17.36^36^0.36^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23575~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~207~^1.16^36^0.04^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~255~^54.54^36^0.49^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23575~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23575~^~303~^2.78^12^0.09^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~309~^6.40^12^0.10^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23575~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23575~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23576~^~203~^25.25^12^0.69^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~204~^16.17^12^0.37^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23576~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~207~^0.90^12^0.03^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~255~^57.70^12^0.55^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23576~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23576~^~303~^2.58^12^0.08^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~309~^6.24^12^0.09^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23576~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23576~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23577~^~203~^15.76^72^0.21^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~204~^25.00^72^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~207~^0.77^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~255~^58.09^107^0.18^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23577~^~303~^1.79^36^0.06^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~309~^3.87^36^0.09^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~323~^0.17^19^7.0e-03^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23577~^~418~^2.11^36^0.07^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23577~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~23578~^~203~^25.56^72^0.32^~1~^~AR~^^^^^^^^^^~09/01/2004~ -~23578~^~204~^18.87^107^0.20^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~207~^0.98^72^0.02^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~255~^55.28^107^0.27^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~ -~23578~^~303~^2.37^36^0.09^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~309~^6.19^36^0.17^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23578~^~418~^2.81^36^0.09^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23578~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23579~^~203~^23.45^36^0.55^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~204~^16.44^36^0.41^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23579~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~207~^1.05^36^0.03^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~255~^58.69^36^0.25^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23579~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23579~^~303~^2.50^12^0.16^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~309~^5.95^12^0.15^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~323~^0.13^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23579~^~418~^2.79^12^0.31^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23579~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23580~^~203~^26.28^36^0.36^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~204~^18.21^36^0.46^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23580~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~207~^1.10^36^0.05^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~255~^54.50^36^0.57^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23580~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23580~^~303~^2.63^12^0.14^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~309~^6.17^12^0.16^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23580~^~418~^2.80^12^0.33^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23580~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23581~^~203~^24.56^12^0.98^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~204~^16.50^12^0.80^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23581~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~207~^0.89^12^0.04^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~255~^57.50^12^1.09^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23581~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~23581~^~303~^2.43^12^0.13^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~309~^6.04^12^0.15^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~323~^0.12^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23581~^~418~^2.49^12^0.11^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23581~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23582~^~203~^22.53^10^0.24^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~204~^4.20^10^0.27^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~207~^1.06^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~255~^72.90^10^0.35^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~303~^1.59^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~309~^3.96^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23582~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23582~^~418~^0.95^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23582~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23583~^~203~^22.06^10^0.22^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23583~^~204~^5.93^10^0.36^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23583~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~207~^1.05^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23583~^~255~^71.11^10^0.47^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23583~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~303~^1.60^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~309~^3.97^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23583~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23583~^~418~^0.93^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23583~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23584~^~203~^22.27^10^0.18^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~204~^3.54^10^0.23^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~207~^1.19^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~255~^73.31^10^0.34^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~303~^1.61^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~309~^4.00^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23584~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23584~^~418~^0.94^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23584~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23585~^~203~^23.07^10^0.27^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~204~^3.88^10^0.24^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~207~^0.99^10^0.03^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~255~^72.68^10^0.41^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~303~^1.63^3^0.12^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~309~^4.05^3^0.22^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23585~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23585~^~418~^0.98^3^0.10^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23585~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23585~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23586~^~203~^30.87^10^0.51^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~204~^6.22^10^0.35^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~207~^1.19^10^0.04^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~255~^62.45^10^0.77^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~303~^1.91^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~309~^5.69^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23586~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23586~^~418~^1.47^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~203~^29.07^10^0.35^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~204~^7.76^10^0.51^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~207~^1.20^10^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~255~^62.67^10^0.68^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~303~^1.81^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~309~^5.37^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23587~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23587~^~418~^1.39^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23587~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23588~^~203~^29.34^10^0.48^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~204~^4.96^10^0.26^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~207~^1.20^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~255~^65.47^10^0.56^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~303~^1.81^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~309~^5.37^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23588~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23588~^~418~^1.40^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23588~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23589~^~203~^29.44^10^0.35^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~204~^5.73^10^0.30^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~207~^1.14^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~255~^64.65^10^0.63^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23589~^~303~^1.81^3^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~309~^5.38^3^0.14^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23589~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23589~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23589~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23589~^~418~^1.41^3^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23589~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23590~^~203~^28.45^10^0.23^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~204~^4.67^10^0.29^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~207~^1.15^10^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~255~^66.61^10^0.33^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~303~^2.35^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~309~^4.92^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23590~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23590~^~418~^1.46^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~23590~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23590~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23591~^~203~^29.59^10^0.37^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~204~^4.11^10^0.22^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~207~^1.18^10^0.04^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~255~^66.31^10^0.40^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~303~^2.42^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~309~^5.06^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23591~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23591~^~418~^1.52^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23591~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23592~^~203~^31.61^10^0.47^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23592~^~204~^4.65^10^0.21^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23592~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~207~^1.17^10^0.04^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23592~^~255~^62.79^10^0.61^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23592~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~303~^2.66^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~309~^5.57^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~323~^0.34^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23592~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23592~^~418~^1.62^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23592~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23593~^~203~^34.46^10^0.33^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~204~^6.43^10^0.18^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~207~^1.05^10^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~255~^58.64^10^0.40^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~303~^2.85^3^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~309~^5.98^3^0.06^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23593~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23593~^~418~^1.77^3^0.07^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23593~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23594~^~203~^22.19^20^0.15^~1~^~A~^^^^^^^^^^~06/01/2003~ -~23594~^~204~^4.31^20^0.26^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~207~^1.09^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~255~^72.58^20^0.27^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~303~^1.92^5^0.12^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~309~^4.22^5^0.12^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23594~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23594~^~418~^1.57^4^0.24^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23594~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23595~^~203~^33.15^20^0.24^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~204~^6.00^20^0.36^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~207~^1.06^20^0.05^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~255~^60.61^20^0.48^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~303~^2.81^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~309~^7.98^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~323~^0.47^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23595~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23595~^~418~^2.42^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23595~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23596~^~203~^21.57^20^0.25^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~204~^3.84^20^0.19^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~207~^1.01^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~255~^73.76^20^0.39^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~309~^5.52^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23596~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23596~^~418~^1.84^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23596~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23597~^~203~^22.60^20^0.19^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~204~^3.00^20^0.20^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~207~^1.08^20^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~255~^73.43^20^0.28^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~303~^1.96^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~309~^4.30^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23597~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23597~^~418~^1.60^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23597~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23598~^~203~^29.73^20^0.25^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~204~^4.71^20^0.28^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~207~^1.15^20^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~255~^65.52^20^0.34^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~303~^2.46^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~309~^5.06^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~23598~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23598~^~418~^1.64^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23598~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23599~^~203~^22.33^20^0.19^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~204~^5.04^20^0.34^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~207~^0.99^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~255~^69.95^20^0.33^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~303~^1.60^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~309~^4.01^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~323~^0.32^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23599~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23599~^~418~^1.10^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~203~^29.04^19^0.29^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~204~^8.39^19^0.42^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~207~^1.13^19^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~255~^62.93^19^0.54^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~303~^1.84^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~309~^5.38^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~323~^0.40^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23600~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23600~^~418~^1.66^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23600~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23601~^~203~^22.12^21^0.18^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23601~^~204~^6.52^21^0.33^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23601~^~207~^1.06^21^0.01^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~255~^70.62^21^0.35^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~303~^1.60^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~309~^4.01^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~323~^0.32^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23601~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23601~^~418~^1.09^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23601~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23602~^~203~^34.66^20^0.25^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~204~^7.36^20^0.34^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~207~^1.02^20^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~255~^57.84^20^0.50^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23602~^~303~^2.93^5^0.09^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~309~^8.32^5^0.13^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23602~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23602~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23602~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23602~^~418~^2.53^4^0.16^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23602~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23603~^~203~^22.11^20^0.14^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~204~^4.19^20^0.28^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~207~^1.01^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~255~^73.32^20^0.28^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23603~^~303~^1.93^5^0.06^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~309~^5.55^5^0.12^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23603~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23603~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23603~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23603~^~418~^1.88^4^0.09^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23603~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23604~^~203~^28.00^20^0.29^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23604~^~204~^5.72^20^0.42^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23604~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~207~^1.11^20^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23604~^~255~^65.93^20^0.42^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23604~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~303~^2.35^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~309~^4.82^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~323~^0.36^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2003~ -~23604~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23604~^~418~^1.54^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23604~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23605~^~203~^34.34^20^0.28^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~204~^7.73^20^0.45^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~207~^1.02^20^0.03^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~255~^57.54^20^0.54^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~303~^2.87^5^0.10^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~309~^5.90^5^0.10^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~323~^0.45^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23605~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23605~^~418~^1.89^4^0.10^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23605~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23606~^~203~^29.30^20^0.23^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~204~^7.09^20^0.39^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~207~^1.14^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~255~^63.32^20^0.51^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~303~^1.85^5^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~309~^5.41^5^0.08^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23606~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23606~^~418~^1.68^4^0.11^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23606~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23607~^~203~^22.93^20^0.17^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~204~^5.15^20^0.40^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~207~^1.02^20^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23607~^~255~^71.49^20^0.40^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~303~^1.64^5^0.08^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~309~^4.10^5^0.13^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~ -~23607~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23607~^~418~^1.13^4^0.07^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23607~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23608~^~203~^31.82^20^0.30^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23608~^~204~^5.45^20^0.30^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23608~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~207~^1.20^20^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23608~^~255~^61.96^20^0.58^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23608~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~303~^2.70^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~309~^5.54^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~323~^0.49^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23608~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23608~^~418~^1.75^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23608~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23609~^~203~^22.91^20^0.15^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23609~^~204~^4.09^20^0.37^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23609~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~207~^1.13^20^0.01^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23609~^~255~^75.02^20^0.32^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23609~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~303~^1.99^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~309~^4.36^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~323~^0.27^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23609~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23609~^~418~^1.62^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23609~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23610~^~203~^29.42^20^0.29^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23610~^~204~^5.84^20^0.29^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23610~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~207~^1.20^20^0.02^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23610~^~255~^64.29^20^0.46^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23610~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~303~^1.87^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~309~^5.46^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~23610~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23610~^~418~^1.68^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23610~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23611~^~203~^22.09^20^0.11^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23611~^~204~^4.08^20^0.19^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23611~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~207~^1.14^20^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23611~^~255~^72.91^20^0.27^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23611~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~303~^1.61^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~309~^4.04^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~323~^0.32^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23611~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23611~^~418~^1.09^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23611~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23612~^~203~^21.96^10^0.15^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~204~^5.05^10^0.34^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~207~^1.02^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~255~^72.51^10^0.29^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23612~^~303~^2.02^3^0.10^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~309~^5.48^3^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23612~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23612~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23612~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23612~^~418~^2.11^3^0.11^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23612~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23613~^~203~^21.69^10^0.44^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23613~^~204~^4.06^10^0.28^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23613~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~207~^1.01^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23613~^~255~^73.27^10^0.59^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23613~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23613~^~303~^2.04^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~309~^5.53^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23613~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23613~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23613~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23613~^~418~^2.09^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23613~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23614~^~203~^34.72^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~204~^8.37^10^0.47^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~207~^1.03^10^0.05^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~255~^56.39^10^0.68^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23614~^~303~^3.04^3^0.15^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~309~^8.20^3^0.14^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23614~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23614~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23614~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23614~^~418~^2.69^3^0.09^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23614~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23615~^~203~^33.13^10^0.37^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23615~^~204~^6.79^10^0.54^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23615~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~207~^1.07^10^0.07^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23615~^~255~^59.82^10^0.42^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23615~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23615~^~303~^2.88^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~309~^7.76^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~323~^0.50^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23615~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23615~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23615~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23615~^~418~^2.57^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23615~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23616~^~203~^22.88^10^0.27^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23616~^~204~^3.38^10^0.35^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23616~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~207~^1.10^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23616~^~255~^72.89^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23616~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~303~^2.12^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~309~^4.28^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23616~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23616~^~418~^1.91^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23616~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23617~^~203~^22.69^10^0.20^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23617~^~204~^4.78^10^0.58^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23617~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~207~^1.16^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23617~^~255~^71.44^10^0.48^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23617~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~303~^2.12^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~309~^4.29^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23617~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23617~^~418~^1.89^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23617~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~23618~^~203~^22.22^10^0.22^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~204~^4.96^10^0.41^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23618~^~207~^1.06^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~255~^71.99^10^0.40^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~303~^2.06^3^0.11^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~309~^4.16^3^0.13^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23618~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23618~^~418~^1.85^2^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~23618~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23618~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23619~^~203~^27.56^10^0.50^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23619~^~204~^6.77^10^0.65^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23619~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~207~^1.07^10^0.05^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23619~^~255~^65.26^10^0.73^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23619~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~303~^2.43^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~309~^4.82^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23619~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23619~^~418~^1.63^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23619~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23620~^~203~^29.87^10^0.35^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23620~^~204~^5.30^10^0.46^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23620~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~207~^1.11^10^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23620~^~255~^64.73^10^0.44^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23620~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~303~^2.61^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~309~^5.16^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23620~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23620~^~418~^1.76^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23620~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23621~^~203~^32.04^10^0.41^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23621~^~204~^6.25^10^0.44^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23621~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~207~^1.23^10^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23621~^~255~^61.13^10^0.95^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23621~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~303~^2.84^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~309~^5.62^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23621~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23621~^~418~^1.89^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23621~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23622~^~203~^34.22^10^0.47^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~204~^9.02^10^0.69^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23622~^~207~^0.98^10^0.06^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~255~^56.44^10^0.90^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~303~^3.01^3^0.22^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~309~^5.95^3^0.25^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~323~^0.46^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23622~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23622~^~418~^2.02^3^0.05^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23622~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23623~^~203~^22.12^10^0.30^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23623~^~204~^5.91^10^0.50^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23623~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~207~^1.08^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23623~^~255~^71.28^10^0.44^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23623~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~303~^1.63^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~309~^4.13^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23623~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23623~^~418~^1.20^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23624~^~203~^22.17^11^0.30^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23624~^~204~^7.07^11^0.50^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23624~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~207~^1.08^11^0.03^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23624~^~255~^70.17^11^0.50^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23624~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~303~^1.63^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~309~^4.13^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23624~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23624~^~418~^1.20^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23624~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23625~^~203~^21.91^10^0.11^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23625~^~204~^4.62^10^0.20^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23625~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~207~^1.09^10^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23625~^~255~^72.51^10^0.39^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23625~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~303~^1.63^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~309~^4.14^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~323~^0.33^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23625~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23625~^~418~^1.19^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23625~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~23626~^~203~^28.29^10^0.47^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23626~^~204~^9.05^10^0.52^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23626~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~207~^1.10^10^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23626~^~255~^62.22^10^0.68^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23626~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~309~^5.31^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~323~^0.42^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23626~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23626~^~418~^1.77^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~23626~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~23627~^~203~^22.78^10^0.21^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~204~^6.43^10^0.53^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~207~^1.04^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~255~^70.30^10^0.46^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~303~^1.66^3^0.08^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~309~^4.22^3^0.12^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23627~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23627~^~418~^1.24^3^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23627~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23628~^~203~^29.01^9^0.51^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23628~^~204~^9.10^9^0.64^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~207~^1.10^9^0.05^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23628~^~255~^61.68^9^0.87^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23628~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~303~^1.95^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~309~^5.40^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23628~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23628~^~418~^1.81^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23628~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23629~^~203~^29.51^10^0.48^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23629~^~204~^6.72^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23629~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~207~^1.20^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23629~^~255~^63.27^10^0.51^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23629~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~303~^2.01^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~309~^5.58^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23629~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23629~^~418~^1.64^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23629~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23630~^~203~^29.16^10^0.31^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~204~^8.45^10^0.38^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~207~^1.13^10^0.03^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~255~^61.99^10^0.58^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~303~^1.97^3^0.13^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~309~^5.47^3^0.16^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23630~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23630~^~418~^1.82^3^0.04^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23630~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23631~^~203~^22.26^10^0.25^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~204~^3.32^10^0.23^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~207~^1.00^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~255~^74.12^10^0.32^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23631~^~303~^1.86^3^0.07^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~309~^5.68^3^0.23^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23631~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23631~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23631~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~23631~^~418~^1.77^3^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~23631~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~23632~^~203~^21.45^10^0.27^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23632~^~204~^3.61^10^0.24^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23632~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~207~^1.00^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23632~^~255~^74.26^10^0.49^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23632~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23632~^~303~^1.83^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~309~^5.57^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~323~^0.27^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23632~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23632~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23632~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23632~^~418~^1.71^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23632~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23633~^~203~^34.60^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~204~^6.35^10^0.18^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~207~^1.02^10^0.05^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~255~^59.29^10^0.37^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~303~^2.89^3^0.09^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~309~^8.43^3^0.17^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23633~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23633~^~418~^2.33^3^0.11^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23633~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23634~^~203~^33.18^10^0.32^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23634~^~204~^5.21^10^0.34^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23634~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~207~^1.05^10^0.09^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23634~^~255~^61.39^10^0.80^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23634~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~303~^2.81^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~309~^8.19^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~323~^0.41^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23634~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23634~^~418~^2.24^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23634~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23635~^~203~^22.31^10^0.26^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23635~^~204~^2.62^10^0.16^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23635~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~207~^1.05^10^0.03^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23635~^~255~^73.97^10^0.37^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23635~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~309~^4.46^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23635~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23635~^~418~^1.30^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23635~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23636~^~203~^23.13^10^0.23^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23636~^~204~^3.37^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23636~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~207~^1.13^10^0.02^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23636~^~255~^72.63^10^0.36^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23636~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~303~^1.97^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~309~^4.57^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23636~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23636~^~418~^1.35^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23636~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23637~^~203~^22.18^10^0.21^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~204~^3.66^10^0.14^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~207~^1.08^10^0.01^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~255~^73.17^10^0.27^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~303~^1.90^3^0.22^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~309~^4.42^3^0.27^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23637~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23637~^~418~^1.30^2^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~23637~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23637~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23638~^~203~^29.58^20^0.45^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23638~^~204~^7.63^20^0.44^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23638~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~207~^1.15^20^0.03^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23638~^~255~^64.27^20^0.50^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23638~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~303~^1.88^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~309~^5.49^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~ -~23638~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23638~^~418~^1.69^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23638~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23640~^~203~^11.71^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~204~^4.05^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~205~^1.99^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~23640~^~207~^0.60^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~255~^81.65^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~303~^0.66^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~309~^1.71^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~323~^0.14^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~341~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~342~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~343~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~344~^0.02^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~345~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~346~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~347~^0.00^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23640~^~418~^0.72^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~23640~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~23646~^~203~^21.26^20^0.21^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~204~^5.63^20^0.54^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~207~^1.06^20^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~255~^72.41^20^0.63^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~303~^1.54^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~309~^3.85^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23646~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23646~^~418~^1.04^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23646~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23647~^~203~^26.34^10^0.48^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23647~^~204~^9.73^10^0.86^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23647~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~207~^1.06^10^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23647~^~255~^63.79^10^0.75^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23647~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~303~^1.77^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~309~^4.90^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~323~^0.39^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23647~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23647~^~418~^1.64^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23647~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23648~^~203~^21.17^10^0.35^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~204~^7.06^10^0.76^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~207~^1.02^10^0.03^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~255~^71.33^10^0.90^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~303~^1.54^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~309~^3.92^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~323~^0.31^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23648~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23648~^~418~^1.15^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23648~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23649~^~203~^27.17^10^0.39^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~204~^6.95^10^0.52^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~207~^1.09^10^0.04^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~255~^65.55^10^0.58^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~303~^1.68^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~309~^5.00^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23649~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23649~^~418~^1.30^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23649~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23650~^~203~^21.34^10^0.25^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~204~^4.21^10^0.46^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~207~^1.10^10^0.03^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~255~^73.48^10^0.80^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~303~^1.55^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~309~^3.85^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23650~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23650~^~418~^0.90^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23650~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23651~^~203~^21.07^20^0.22^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~204~^3.95^20^0.22^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~207~^1.03^20^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~255~^74.48^20^0.27^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~303~^1.77^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~309~^3.89^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~323~^0.27^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23651~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23651~^~418~^1.47^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23651~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23652~^~203~^20.76^10^0.19^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~204~^4.55^10^0.29^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~207~^1.02^10^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~255~^73.98^10^0.43^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~303~^1.92^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~309~^3.87^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~323~^0.28^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23652~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23652~^~418~^1.73^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23652~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23653~^~203~^21.38^10^0.38^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~204~^3.35^10^0.22^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~207~^1.04^10^0.03^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~255~^74.99^10^0.25^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~303~^1.78^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~309~^4.13^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~323~^0.27^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23653~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23653~^~418~^1.25^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23653~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23654~^~203~^27.89^20^0.32^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~204~^7.40^20^0.43^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~207~^1.10^20^0.03^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~255~^64.79^20^0.50^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~303~^1.74^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~309~^5.09^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~323~^0.38^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23654~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23654~^~418~^1.60^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23654~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23655~^~203~^27.96^10^0.53^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~204~^6.48^10^0.57^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~207~^1.13^10^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~255~^65.51^10^0.87^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~303~^1.71^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~309~^5.09^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~323~^0.37^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23655~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23655~^~418~^1.34^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23655~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23656~^~203~^21.57^20^0.22^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~204~^5.47^20^0.35^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~207~^1.02^20^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~255~^72.08^20^0.43^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~303~^1.57^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~309~^3.94^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~323~^0.30^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23656~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23656~^~418~^1.06^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23656~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23657~^~203~^21.43^10^0.31^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~204~^5.00^10^0.43^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~23657~^~207~^0.99^10^0.02^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~255~^72.84^10^0.57^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~303~^1.54^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~309~^3.83^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~323~^0.29^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23657~^~341~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~342~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~343~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23657~^~418~^0.91^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23657~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23658~^~203~^18.12^10^0.71^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~204~^22.15^10^2.01^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~205~^0.12^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~207~^0.82^10^0.03^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~255~^58.80^10^1.30^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23658~^~303~^1.68^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~309~^4.42^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~323~^0.44^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23658~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~418~^1.69^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23658~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23658~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23659~^~203~^17.77^10^0.33^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~204~^22.21^10^1.84^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~207~^0.80^10^0.02^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~255~^59.34^10^1.59^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23659~^~303~^1.50^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~309~^4.23^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~323~^0.43^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23659~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~418~^1.38^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23659~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23659~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23660~^~203~^28.66^10^0.54^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~204~^19.47^10^1.15^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~207~^0.95^10^0.06^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~255~^51.58^10^0.75^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~23660~^~303~^2.46^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~309~^6.47^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~323~^0.52^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~ -~23660~^~341~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~342~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~343~^0.00^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~418~^2.33^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23660~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23660~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~25000~^~203~^10.72^8^0.36^~1~^~A~^^^1^10.34^11.11^3^9.60^11.84^~2, 3~^~03/01/2008~ -~25000~^~204~^6.10^7^0.11^~1~^~A~^^^1^5.79^6.51^3^5.75^6.44^~2, 3~^~03/01/2008~ -~25000~^~205~^76.04^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~207~^2.91^8^0.06^~1~^~A~^^^1^2.81^3.01^5^2.74^3.07^~2, 3~^~03/01/2008~ -~25000~^~209~^59.75^8^0.64^~1~^~A~^^^1^58.57^60.93^6^58.14^61.35^~2, 3~^~03/01/2008~ -~25000~^~210~^0.65^8^0.04^~1~^~A~^^^1^0.58^0.72^6^0.55^0.75^~2, 3~^~03/01/2008~ -~25000~^~211~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~212~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~213~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~214~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~255~^4.22^8^0.15^~1~^~A~^^^1^3.80^4.65^3^3.75^4.69^~2, 3~^~03/01/2008~ -~25000~^~269~^0.65^8^0.04^~1~^~A~^^^1^0.58^0.72^6^0.55^0.75^~2, 3~^~03/01/2008~ -~25000~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~303~^2.87^8^0.15^~1~^~A~^^^1^2.27^3.48^4^2.45^3.28^~2, 3~^~03/01/2008~ -~25000~^~309~^2.80^6^0.09^~1~^~A~^^^1^2.27^3.85^3^2.49^3.10^~2, 3~^~03/01/2008~ -~25000~^~323~^0.41^8^0.04^~1~^~A~^^^1^0.39^0.43^6^0.29^0.52^~2, 3~^~03/01/2008~ -~25000~^~341~^0.02^8^4.0e-03^~1~^~A~^^^1^0.01^0.02^4^8.0e-03^0.02^~2, 3~^~03/01/2008~ -~25000~^~342~^4.26^8^0.42^~1~^~A~^^^1^3.74^4.77^6^3.21^5.29^~2, 3~^~03/01/2008~ -~25000~^~343~^0.90^8^0.14^~1~^~A~^^^1^0.89^0.90^4^0.50^1.29^~2, 3~^~03/01/2008~ -~25000~^~344~^0.32^8^0.01^~1~^~A~^^^1^0.32^0.33^4^0.29^0.35^~2, 3~^~03/01/2008~ -~25000~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25000~^~346~^0.37^8^0.01^~1~^~A~^^^1^0.30^0.44^6^0.32^0.41^~2, 3~^~03/01/2008~ -~25000~^~347~^0.11^8^0.02^~1~^~A~^^^1^0.09^0.14^5^0.05^0.16^~2, 3~^~03/01/2008~ -~25000~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2008~ -~25000~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~25000~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~25001~^~203~^12.60^0^^~1~^^^^^^^^^^^~05/01/2007~ -~25001~^~204~^9.50^0^^~1~^^^^^^^^^^^~05/01/2007~ -~25001~^~205~^72.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~25001~^~207~^3.10^0^^~4~^~O~^^^^^^^^^^~03/01/2006~ -~25001~^~255~^2.80^0^^~1~^^^^^^^^^^^~05/01/2007~ -~25001~^~269~^0.92^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~303~^2.28^0^^~1~^^^^^^^^^^^~05/01/2007~ -~25001~^~309~^3.83^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~323~^0.50^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2007~ -~25001~^~573~^0.00^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25001~^~578~^0.00^0^^~4~^~BFFN~^~25000~^^^^^^^^^~05/01/2007~ -~25003~^~203~^0.46^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~204~^6.53^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~205~^74.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25003~^~207~^0.77^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~255~^17.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~269~^39.15^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~303~^0.56^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~309~^0.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~323~^0.41^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25004~^~203~^24.29^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~204~^13.12^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~205~^47.24^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~207~^3.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25004~^~255~^12.90^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25004~^~269~^32.86^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~309~^9.55^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~323~^24.55^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~25004~^~418~^10.91^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~203~^18.49^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~204~^13.18^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~205~^57.27^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25005~^~207~^3.07^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25005~^~255~^7.99^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25005~^~269~^33.04^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~303~^14.67^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~309~^9.55^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~323~^24.57^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~25005~^~418~^10.91^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25006~^~203~^22.35^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~204~^8.99^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~205~^51.66^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~25006~^~207~^3.00^1^^~4~^~FLM~^^^^^^^^^^~02/01/2006~ -~25006~^~255~^14.00^1^^~4~^~FLM~^^^^^^^^^^~02/01/2006~ -~25006~^~269~^22.67^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~303~^17.95^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~309~^13.57^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~323~^30.50^0^^~4~^~T~^^^^^^^^^^~05/01/2006~ -~25006~^~418~^7.50^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~25007~^~203~^5.88^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~204~^20.78^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~205~^64.69^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25007~^~207~^1.43^1^^~4~^~FLM~^^^^^^^^^^~02/01/2006~ -~25007~^~255~^7.00^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~25007~^~269~^44.29^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25007~^~303~^0.89^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~203~^22.50^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~204~^7.87^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~25008~^~205~^55.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~25008~^~207~^5.00^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~25008~^~255~^9.50^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~25008~^~269~^26.26^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~303~^18.15^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~25008~^~309~^11.88^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~323~^30.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~25008~^~418~^10.91^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~25009~^~203~^3.78^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~204~^11.95^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~205~^73.01^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~207~^3.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25009~^~255~^8.00^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~25009~^~269~^37.81^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~303~^0.85^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~203~^7.72^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~204~^14.19^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~205~^51.68^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~207~^3.00^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25010~^~255~^22.90^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25010~^~269~^27.03^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~303~^2.21^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~418~^2.73^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25012~^~203~^2.94^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~204~^32.35^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~205~^56.82^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~25012~^~207~^3.38^0^^~4~^~O~^^^^^^^^^^~02/01/2011~ -~25012~^~255~^4.51^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~269~^8.82^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~303~^2.12^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~309~^0.53^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~323~^9.82^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25013~^~203~^7.95^4^0.06^~1~^~A~^^^1^7.81^8.12^3^7.74^8.15^~2, 3~^~04/01/2006~ -~25013~^~204~^21.11^4^0.19^~1~^~A~^^^1^20.75^21.64^3^20.50^21.71^~2, 3~^~04/01/2006~ -~25013~^~205~^67.26^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~207~^1.63^4^0.10^~1~^~A~^^^1^1.34^1.78^3^1.31^1.95^~2, 3~^~04/01/2006~ -~25013~^~210~^6.90^4^0.07^~1~^~A~^^^1^6.71^7.05^3^6.66^7.13^~2, 3~^~02/01/2007~ -~25013~^~211~^0.16^4^0.03^~1~^~A~^^^1^0.07^0.21^3^0.06^0.26^~1, 2, 3~^~02/01/2007~ -~25013~^~212~^0.13^4^0.03^~1~^~A~^^^1^0.07^0.23^3^0.01^0.25^~1, 2, 3~^~02/01/2007~ -~25013~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2007~ -~25013~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2007~ -~25013~^~255~^2.04^4^0.04^~1~^~A~^^^1^1.98^2.18^3^1.89^2.19^~2, 3~^~04/01/2006~ -~25013~^~269~^7.20^4^0.11^~1~^~A~^^^1^6.99^7.48^3^6.82^7.57^~2, 3~^~02/01/2007~ -~25013~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2007~ -~25013~^~303~^1.74^4^5.0e-03^~1~^~A~^^^1^1.73^1.75^3^1.72^1.75^~2, 3~^~04/01/2006~ -~25013~^~309~^1.65^4^0.01^~1~^~A~^^^1^1.63^1.68^3^1.61^1.69^~2, 3~^~04/01/2006~ -~25013~^~323~^7.04^4^0.08^~1~^~A~^^^1^6.82^7.23^3^6.76^7.31^~2, 3~^~04/01/2006~ -~25013~^~341~^0.24^4^3.0e-03^~1~^~A~^^^1^0.24^0.25^3^0.23^0.25^~2, 3~^~04/01/2006~ -~25013~^~342~^1.43^4^0.04^~1~^~A~^^^1^1.35^1.53^3^1.30^1.56^~2, 3~^~04/01/2006~ -~25013~^~343~^0.11^4^6.0e-03^~1~^~A~^^^1^0.10^0.13^3^0.09^0.13^~2, 3~^~04/01/2006~ -~25013~^~344~^0.35^4^8.0e-03^~1~^~A~^^^1^0.33^0.37^3^0.32^0.37^~2, 3~^~04/01/2006~ -~25013~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~346~^0.32^4^0.01^~1~^~A~^^^1^0.30^0.35^3^0.28^0.35^~2, 3~^~04/01/2006~ -~25013~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25013~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25014~^~203~^7.50^12^0.21^~1~^~A~^^^1^6.42^8.47^11^7.03^7.97^~2, 3~^~07/01/2013~ -~25014~^~204~^34.02^12^1.39^~1~^~A~^^^1^27.20^38.80^11^30.95^37.10^~2, 3~^~07/01/2013~ -~25014~^~205~^55.16^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~207~^2.98^12^0.13^~1~^~A~^^^1^2.45^3.80^11^2.67^3.27^~2, 3~^~07/01/2013~ -~25014~^~209~^43.31^12^1.12^~1~^~A~^^^1^39.20^49.40^11^40.83^45.78^~2, 3~^~07/01/2013~ -~25014~^~210~^0.55^2^^~1~^~A~^^^1^0.50^0.60^1^^^^~07/01/2013~ -~25014~^~211~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25014~^~212~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~03/01/2008~ -~25014~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25014~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25014~^~255~^0.34^12^0.05^~1~^~A~^^^1^0.07^0.60^11^0.21^0.46^~1, 2, 3~^~07/01/2013~ -~25014~^~269~^0.55^2^^~1~^~A~^^^1^0.50^0.60^1^^^^~07/01/2013~ -~25014~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25014~^~303~^1.85^12^0.11^~1~^~A~^^^1^1.38^2.78^11^1.60^2.09^~2, 3~^~07/01/2013~ -~25014~^~309~^2.16^12^0.11^~1~^~A~^^^1^1.33^2.78^11^1.92^2.40^~2, 3~^~07/01/2013~ -~25014~^~323~^2.62^5^0.34^~1~^~A~^^^1^1.48^3.20^4^1.66^3.57^~2, 3~^~07/01/2013~ -~25014~^~341~^0.42^5^0.02^~1~^~A~^^^1^0.35^0.50^4^0.34^0.50^~2, 3~^~07/01/2013~ -~25014~^~342~^28.08^5^2.30^~1~^~A~^^^1^18.95^30.91^4^21.68^34.48^~2, 3~^~07/01/2013~ -~25014~^~343~^7.26^5^0.49^~1~^~A~^^^1^5.32^7.98^4^5.89^8.62^~2, 3~^~07/01/2013~ -~25014~^~344~^0.28^5^0.01^~1~^~A~^^^1^0.24^0.34^4^0.23^0.32^~2, 3~^~07/01/2013~ -~25014~^~345~^0.01^5^9.0e-03^~1~^~A~^^^1^0.00^0.05^4^-0.01^0.03^~1, 2, 3~^~07/01/2013~ -~25014~^~346~^0.46^5^0.02^~1~^~A~^^^1^0.39^0.53^4^0.39^0.52^~2, 3~^~07/01/2013~ -~25014~^~347~^1.04^5^0.20^~1~^~A~^^^1^0.50^1.53^4^0.47^1.59^~2, 3~^~07/01/2013~ -~25014~^~418~^0.00^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~25014~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~25015~^~203~^25.00^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~204~^12.50^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~205~^50.50^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~ -~25015~^~207~^3.00^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~25015~^~255~^9.00^0^^~4~^~O~^^^^^^^^^^~05/01/2006~ -~25015~^~269~^28.75^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~303~^10.13^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~309~^6.56^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~323~^16.88^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~10/01/2008~ -~25015~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~418~^7.50^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~573~^16.00^0^^~4~^~O~^^^^^^^^^^~09/01/2009~ -~25015~^~578~^7.40^0^^~4~^~O~^^^^^^^^^^~09/01/2009~ -~25016~^~203~^21.91^4^1.22^~12~^~MA~^^^0^18.49^24.29^3^18.02^25.79^~2, 3~^~05/01/2006~ -~25016~^~204~^10.79^4^1.38^~12~^~MA~^^^0^7.87^13.18^3^6.39^15.18^~2, 3~^~05/01/2006~ -~25016~^~205~^50.30^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25016~^~207~^3.00^2^^~4~^~FLM~^^^0^3.00^3.07^^^^^~05/01/2006~ -~25016~^~210~^14.27^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~211~^8.61^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~212~^0.48^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~213~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~214~^5.35^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~255~^14.00^1^^~4~^~FLM~^^^0^7.90^14.00^^^^^~05/01/2006~ -~25016~^~269~^28.71^4^2.55^~12~^~MA~^^^0^22.67^33.04^3^20.56^36.84^~2, 3~^~05/01/2006~ -~25016~^~287~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~303~^16.31^2^^~12~^~MA~^^^0^14.67^17.95^1^^^^~07/01/2006~ -~25016~^~309~^11.88^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~323~^27.53^0^^~4~^~O~^^^^^^^^^^~06/01/2009~ -~25016~^~418~^10.91^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~25016~^~573~^26.23^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~25016~^~578~^10.71^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~25017~^~203~^14.15^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~204~^3.11^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~205~^69.63^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25017~^~207~^3.28^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~209~^18.70^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~210~^0.52^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~211~^11.94^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~212~^15.96^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~214~^1.65^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~255~^9.83^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~269~^30.07^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~303~^11.70^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~309~^9.96^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~323~^8.28^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~25017~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~342~^0.33^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~343~^0.05^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~344~^1.04^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~346~^0.08^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~418~^5.60^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~25017~^~573~^8.28^0^^~4~^~O~^^^^^^^^^^~07/01/2007~ -~25017~^~578~^5.60^0^^~4~^~O~^^^^^^^^^^~07/01/2007~ -~25018~^~203~^6.21^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~204~^9.27^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~205~^57.87^0^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25018~^~207~^5.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25018~^~255~^20.10^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25018~^~269~^33.40^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~303~^1.88^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~418~^4.09^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25020~^~203~^16.19^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~204~^8.92^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~25020~^~205~^60.21^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25020~^~207~^3.81^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~209~^9.60^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~210~^7.58^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~211~^1.24^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~212~^0.52^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25020~^~214~^10.04^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~255~^10.87^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~269~^25.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25020~^~287~^5.62^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~303~^4.98^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~309~^5.73^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~323~^6.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~25020~^~341~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~342~^1.75^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~343~^0.67^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~344~^0.34^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~25020~^~346~^0.05^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~25020~^~418~^7.90^1^^~1~^~A~^^^^^^^^^^~09/01/2009~ -~25020~^~573~^6.00^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~25020~^~578~^7.90^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~25021~^~203~^20.75^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~204~^12.19^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~205~^52.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25021~^~207~^5.19^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~209~^10.50^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~210~^9.26^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~211~^1.05^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~212~^0.37^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~214~^6.22^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~255~^9.38^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25021~^~269~^16.90^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25021~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~303~^14.20^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~309~^9.72^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~323~^8.40^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~25021~^~341~^0.02^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~342~^1.20^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~343~^0.42^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~344~^0.66^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~418~^6.40^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25021~^~573~^8.40^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~25021~^~578~^6.40^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~25022~^~203~^8.68^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~204~^22.15^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~205~^65.49^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~25022~^~207~^1.63^1^^~4~^~NC~^^^1^^^^^^^~08/01/2009~ -~25022~^~255~^2.04^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~269~^8.82^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~303~^1.55^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~309~^1.38^1^^~4~^~NR~^^^1^^^^^^^~08/01/2009~ -~25022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25023~^~203~^8.08^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~204~^22.22^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~205~^64.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~25023~^~207~^2.50^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~255~^2.50^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~269~^7.05^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~303~^1.41^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~309~^1.34^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~25024~^~203~^8.20^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~204~^3.10^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~205~^71.04^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~25024~^~207~^2.66^0^^~4~^~O~^^^^^^^^^^~07/01/2007~ -~25024~^~255~^15.00^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~269~^0.25^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~303~^3.92^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~309~^0.94^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~323~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~25024~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2007~ -~25024~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~25024~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~25025~^~203~^26.50^2^^~4~^~FLC~^^^1^25.00^28.00^^^^^~07/01/2007~ -~25025~^~204~^7.35^2^^~4~^~FLC~^^^1^4.00^10.70^^^^^~07/01/2007~ -~25025~^~205~^53.15^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~207~^4.50^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~255~^8.50^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~269~^1.80^2^^~4~^~FLC~^^^1^0.00^3.60^^^^^~06/01/2009~ -~25025~^~303~^5.20^2^^~4~^~FLC~^^^1^4.00^6.40^^^^^~07/01/2007~ -~25025~^~309~^1.50^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~323~^1.01^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~342~^0.07^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~343~^0.03^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25026~^~203~^8.38^8^0.08^~1~^~A~^^^1^8.04^9.03^4^8.16^8.60^~2, 3~^~07/01/2014~ -~25026~^~204~^30.22^8^1.26^~1~^~A~^^^1^25.30^33.20^1^14.28^46.16^~2, 3~^~07/01/2014~ -~25026~^~205~^57.26^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~25026~^~207~^3.23^8^0.23^~1~^~A~^^^1^2.80^3.90^1^0.35^6.10^~2, 3~^~07/01/2014~ -~25026~^~209~^45.46^8^0.24^~1~^~A~^^^1^42.40^48.00^1^43.40^47.52^~2, 3~^~07/01/2014~ -~25026~^~210~^0.30^1^^~1~^~A~^^^1^0.30^0.30^^^^^~09/01/2012~ -~25026~^~211~^0.00^1^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25026~^~212~^0.00^1^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25026~^~213~^0.00^1^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2008~ -~25026~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~25026~^~255~^0.90^8^0.07^~1~^~A~^^^1^0.40^1.50^2^0.55^1.24^~2, 3~^~07/01/2014~ -~25026~^~269~^0.30^1^^~1~^~A~^^^1^0.30^0.30^^^^^~09/01/2012~ -~25026~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~ -~25026~^~303~^2.06^8^0.13^~1~^~A~^^^1^1.66^2.57^1^0.95^3.16^~2, 3~^~07/01/2014~ -~25026~^~309~^2.32^8^0.18^~1~^~A~^^^1^1.89^2.98^1^0.56^4.07^~2, 3~^~07/01/2014~ -~25026~^~323~^2.91^5^0.07^~1~^~A~^^^1^2.48^3.06^2^2.58^3.24^~2, 3~^~07/01/2014~ -~25026~^~341~^0.14^5^4.0e-03^~1~^~A~^^^1^0.10^0.16^2^0.12^0.15^~2, 3~^~07/01/2014~ -~25026~^~342~^6.58^5^0.08^~1~^~A~^^^1^5.29^7.36^2^6.20^6.94^~2, 3~^~07/01/2014~ -~25026~^~343~^0.24^5^0.01^~1~^~A~^^^1^0.15^0.28^2^0.19^0.28^~2, 3~^~07/01/2014~ -~25026~^~344~^2.54^5^0.03^~1~^~A~^^^1^2.22^2.92^2^2.37^2.70^~2, 3~^~07/01/2014~ -~25026~^~345~^0.34^5^6.0e-03^~1~^~A~^^^1^0.31^0.39^2^0.31^0.36^~2, 3~^~07/01/2014~ -~25026~^~346~^4.15^5^0.04^~1~^~A~^^^1^3.75^4.62^2^3.94^4.35^~2, 3~^~07/01/2014~ -~25026~^~347~^1.46^5^0.03^~1~^~A~^^^1^1.35^1.62^2^1.29^1.62^~2, 3~^~07/01/2014~ -~25026~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25026~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25027~^~203~^2.28^4^0.05^~1~^~A~^^^1^2.19^2.44^3^2.10^2.45^~2, 3~^~05/01/2009~ -~25027~^~204~^29.59^4^1.33^~1~^~A~^^^1^26.01^32.25^3^25.33^33.85^~2, 3~^~05/01/2009~ -~25027~^~205~^63.84^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~207~^2.19^4^0.27^~1~^~A~^^^1^1.64^2.95^3^1.32^3.06^~2, 3~^~05/01/2009~ -~25027~^~209~^50.80^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25027~^~210~^0.92^4^0.56^~1~^~A~^^^1^0.07^2.46^3^-0.88^2.71^~1, 2, 3~^~05/01/2009~ -~25027~^~255~^2.09^4^0.35^~1~^~A~^^^1^1.24^2.67^3^0.97^3.20^~2, 3~^~05/01/2009~ -~25027~^~269~^0.92^4^0.56^~1~^~A~^^^1^0.07^2.46^3^-0.88^2.71^~2, 3~^~05/01/2009~ -~25027~^~303~^0.97^4^0.05^~1~^~A~^^^1^0.87^1.08^3^0.80^1.12^~2, 3~^~05/01/2009~ -~25027~^~309~^0.37^4^0.01^~1~^~A~^^^1^0.33^0.40^3^0.32^0.42^~2, 3~^~05/01/2009~ -~25027~^~323~^5.04^3^2.25^~1~^~A~^^^1^2.02^9.45^2^-4.65^14.74^~2, 3~^~05/01/2009~ -~25027~^~341~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.08^~1, 2, 3~^~05/01/2009~ -~25027~^~342~^1.81^3^1.09^~1~^~A~^^^1^0.18^3.88^2^-2.87^6.50^~2, 3~^~05/01/2009~ -~25027~^~343~^0.03^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.11^0.17^~1, 2, 3~^~05/01/2009~ -~25027~^~344~^0.14^3^0.13^~1~^~A~^^^1^0.00^0.41^2^-0.45^0.72^~1, 2, 3~^~05/01/2009~ -~25027~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~346~^0.19^3^0.19^~1~^~A~^^^1^0.00^0.58^2^-0.63^1.02^~1, 2, 3~^~05/01/2009~ -~25027~^~347~^0.13^3^0.12^~1~^~A~^^^1^0.00^0.38^2^-0.41^0.67^~1, 2, 3~^~05/01/2009~ -~25027~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25027~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25028~^~203~^6.62^19^0.10^~1~^~A~^^^2^5.62^7.37^12^6.40^6.83^~2, 3~^~07/01/2013~ -~25028~^~204~^22.33^19^0.47^~1~^~A~^^^2^18.90^25.00^17^21.32^23.34^~2, 3~^~07/01/2013~ -~25028~^~205~^67.38^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~207~^1.73^19^0.04^~1~^~A~^^^2^1.32^2.23^16^1.63^1.82^~2, 3~^~07/01/2013~ -~25028~^~209~^60.55^13^0.41^~1~^~A~^^^2^57.50^62.90^10^59.63^61.46^~2, 3~^~04/01/2011~ -~25028~^~210~^0.89^13^0.03^~1~^~A~^^^2^0.65^1.15^11^0.82^0.96^~2, 3~^~04/01/2011~ -~25028~^~211~^0.16^13^6.0e-03^~1~^~A~^^^2^0.00^0.40^5^0.14^0.17^~1, 2, 3~^~04/01/2011~ -~25028~^~212~^0.16^13^3.0e-03^~1~^~A~^^^2^0.00^0.36^5^0.15^0.16^~1, 2, 3~^~04/01/2011~ -~25028~^~213~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~214~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~255~^1.94^19^0.14^~1~^~A~^^^2^1.20^3.30^14^1.62^2.25^~2, 3~^~04/01/2011~ -~25028~^~269~^1.21^13^0.03^~1~^~A~^^^2^0.76^1.67^11^1.14^1.28^~2, 3~^~04/01/2011~ -~25028~^~287~^0.00^13^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~303~^1.32^19^0.05^~1~^~A~^^^2^1.03^2.29^7^1.17^1.45^~2, 3~^~07/01/2013~ -~25028~^~309~^1.46^19^0.03^~1~^~A~^^^2^1.22^1.87^14^1.37^1.53^~2, 3~^~07/01/2013~ -~25028~^~323~^2.97^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25028~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~25030~^~203~^4.13^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~204~^29.81^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~205~^57.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25030~^~207~^3.56^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~255~^4.54^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~269~^9.75^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~303~^1.64^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~25030~^~309~^1.15^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~323~^8.16^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~342~^6.60^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~343~^0.24^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25031~^~203~^30.00^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~204~^14.00^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~205~^45.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25031~^~207~^4.00^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~255~^7.00^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~269~^27.00^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~303~^3.60^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~309~^7.50^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~323~^24.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25031~^~418~^4.20^1^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25031~^~573~^24.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~25031~^~578~^4.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~25032~^~203~^16.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~204~^7.69^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~205~^63.42^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~207~^2.99^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~209~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~255~^9.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~269~^42.31^1^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~25032~^~303~^1.62^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~309~^1.40^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~323~^0.81^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~418~^0.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~203~^18.57^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~204~^15.71^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~205~^53.26^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25033~^~207~^3.11^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~209~^0.27^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~255~^9.34^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~269~^17.14^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~303~^3.39^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25033~^~309~^1.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~323~^7.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~341~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~203~^17.88^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~204~^9.23^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~205~^59.58^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25034~^~207~^3.89^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~209~^6.64^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~255~^9.43^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~269~^27.30^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~303~^5.20^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25034~^~309~^4.83^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~323~^10.27^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~418~^3.22^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25035~^~203~^5.55^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~204~^12.50^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~205~^69.40^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~207~^0.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~255~^11.65^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~269~^20.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25035~^~303~^2.03^1^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~25035~^~309~^1.34^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~323~^1.52^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~418~^0.09^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~203~^7.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~204~^17.50^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~205~^66.27^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~207~^1.12^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~255~^7.88^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~269~^30.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25036~^~303~^1.56^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~309~^1.92^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~323~^2.51^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~418~^0.07^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25037~^~203~^11.79^6^0.05^~1~^~A~^^^1^11.63^11.97^5^11.65^11.92^~2, 3~^~04/01/2009~ -~25037~^~204~^15.20^6^0.29^~1~^~A~^^^1^14.16^16.34^5^14.44^15.96^~2, 3~^~04/01/2009~ -~25037~^~205~^68.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~207~^2.75^6^0.01^~1~^~A~^^^1^2.69^2.78^5^2.71^2.78^~2, 3~^~04/01/2009~ -~25037~^~209~^59.47^6^0.45^~1~^~A~^^^1^58.00^61.40^5^58.29^60.63^~2, 3~^~04/01/2009~ -~25037~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~211~^0.82^3^6.0e-03^~1~^~A~^^^1^0.81^0.83^2^0.79^0.84^~2, 3~^~04/01/2009~ -~25037~^~212~^1.35^3^0.01^~1~^~A~^^^1^1.33^1.38^2^1.29^1.41^~2, 3~^~04/01/2009~ -~25037~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~214~^2.59^3^0.06^~1~^~A~^^^1^2.46^2.69^2^2.29^2.88^~2, 3~^~04/01/2009~ -~25037~^~255~^2.00^6^0.07^~1~^~A~^^^1^1.74^2.26^5^1.81^2.18^~2, 3~^~04/01/2009~ -~25037~^~269~^4.76^3^0.07^~1~^~A~^^^1^4.62^4.85^2^4.45^5.07^~2, 3~^~04/01/2009~ -~25037~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~303~^4.59^6^0.09^~1~^~A~^^^1^4.33^4.85^5^4.35^4.83^~2, 3~^~04/01/2009~ -~25037~^~309~^0.96^6^0.02^~1~^~A~^^^1^0.92^1.05^5^0.91^1.01^~2, 3~^~04/01/2009~ -~25037~^~323~^6.93^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~341~^0.06^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~342~^0.33^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~343~^0.02^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~344~^0.02^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~345~^0.07^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~ -~25037~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25037~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25038~^~203~^8.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~204~^20.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~205~^60.13^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25038~^~207~^2.53^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~255~^8.74^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~269~^34.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~303~^1.49^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~309~^1.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~323~^7.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~341~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~342~^0.19^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~343~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~344~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~418~^0.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~203~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~204~^6.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~205~^75.47^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25039~^~207~^1.33^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~255~^9.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~269~^31.54^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~303~^6.00^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~309~^1.42^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~323~^2.25^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~341~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25040~^~203~^5.32^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~204~^23.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~205~^60.43^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~207~^4.64^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~255~^6.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~269~^4.04^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~303~^1.55^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~309~^0.50^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~323~^4.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~342~^6.37^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~343~^0.23^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25041~^~203~^15.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~204~^15.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~205~^62.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25041~^~207~^4.48^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~255~^2.74^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~269~^20.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~303~^2.70^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~309~^2.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~323~^2.30^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25043~^~203~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~25043~^~204~^7.50^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~25043~^~205~^86.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25043~^~207~^1.87^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~255~^3.73^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~269~^65.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~25043~^~303~^0.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~309~^0.86^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~323~^0.60^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~418~^0.76^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25045~^~203~^5.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~204~^10.00^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25045~^~205~^69.82^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~25045~^~207~^3.14^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~209~^6.08^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~210~^12.20^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~211~^6.86^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~212~^1.57^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~214~^4.31^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~255~^12.04^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~269~^25.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~ -~25045~^~287~^0.06^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~25045~^~303~^0.90^0^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25045~^~309~^1.96^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~323~^1.47^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~342~^0.50^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~343~^0.02^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~344~^0.06^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25046~^~203~^12.34^6^0.12^~1~^~A~^^^1^11.97^12.77^5^12.01^12.66^~2, 3~^~04/01/2009~ -~25046~^~204~^15.14^6^0.48^~1~^~A~^^^1^13.49^16.26^5^13.88^16.39^~2, 3~^~04/01/2009~ -~25046~^~205~^66.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~207~^1.10^6^0.01^~1~^~A~^^^1^1.07^1.14^5^1.07^1.13^~2, 3~^~04/01/2009~ -~25046~^~209~^49.03^6^0.77^~1~^~A~^^^1^47.50^51.90^5^47.03^51.03^~2, 3~^~04/01/2009~ -~25046~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~211~^0.47^3^3.0e-03^~1~^~A~^^^1^0.47^0.48^2^0.45^0.48^~2, 3~^~04/01/2009~ -~25046~^~212~^0.73^3^0.01^~1~^~A~^^^1^0.70^0.75^2^0.66^0.80^~2, 3~^~04/01/2009~ -~25046~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~214~^4.81^3^0.15^~1~^~A~^^^1^4.51^5.01^2^4.15^5.47^~2, 3~^~04/01/2009~ -~25046~^~255~^5.05^6^0.18^~1~^~A~^^^1^4.29^5.47^5^4.56^5.53^~2, 3~^~04/01/2009~ -~25046~^~269~^6.02^3^0.15^~1~^~A~^^^1^5.73^6.23^2^5.37^6.66^~2, 3~^~04/01/2009~ -~25046~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~303~^5.05^6^0.11^~1~^~A~^^^1^4.66^5.43^5^4.76^5.33^~2, 3~^~04/01/2009~ -~25046~^~309~^1.00^6^0.01^~1~^~A~^^^1^0.96^1.04^5^0.97^1.03^~2, 3~^~04/01/2009~ -~25046~^~323~^0.81^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~341~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~342~^0.29^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~343~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~344~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~345~^0.06^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25046~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~203~^9.38^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~204~^10.93^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~205~^66.72^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25048~^~207~^1.72^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~255~^11.26^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~269~^32.45^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~303~^5.65^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25048~^~309~^3.28^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~323~^3.72^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~341~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~342~^0.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~343~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~418~^1.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~578~^1.14^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25050~^~203~^1.34^4^0.23^~1~^~A~^^^1^0.81^1.94^3^0.60^2.08^~2, 3~^~05/01/2009~ -~25050~^~204~^25.91^4^3.06^~1~^~A~^^^1^20.78^34.80^3^16.14^35.67^~2, 3~^~05/01/2009~ -~25050~^~205~^69.23^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~ -~25050~^~207~^2.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~25050~^~209~^62.17^4^3.81^~1~^~A~^^^1^53.90^70.60^3^50.03^74.31^~2, 3~^~05/01/2009~ -~25050~^~255~^2.80^4^0.65^~1~^~A~^^^1^1.82^4.65^3^0.70^4.89^~2, 3~^~05/01/2009~ -~25050~^~269~^3.36^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25050~^~303~^0.72^4^0.20^~1~^~A~^^^1^0.40^1.31^3^0.07^1.36^~2, 3~^~05/01/2009~ -~25050~^~309~^0.85^4^0.06^~1~^~A~^^^1^0.74^1.01^3^0.64^1.05^~2, 3~^~05/01/2009~ -~25050~^~323~^2.78^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25050~^~341~^0.07^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25050~^~342~^0.29^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25050~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25050~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25050~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~25050~^~346~^0.61^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25050~^~347~^0.42^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25051~^~203~^14.71^2^^~8~^~LC~^^^1^14.71^14.71^^^^^~04/01/2011~ -~25051~^~204~^5.88^2^^~8~^~LC~^^^1^4.41^7.35^^^^^~04/01/2011~ -~25051~^~205~^65.44^2^^~8~^~LC~^^^1^64.71^66.18^^^^^~04/01/2011~ -~25051~^~207~^2.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~255~^11.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~25051~^~269~^31.62^2^^~8~^~LC~^^^1^30.88^32.35^^^^^~04/01/2011~ -~25051~^~303~^6.62^2^^~8~^~LC~^^^1^6.62^6.62^^^^^~04/01/2011~ -~25051~^~309~^4.41^2^^~8~^~LC~^^^1^4.41^4.41^^^^^~04/01/2011~ -~25051~^~323~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~418~^1.32^2^^~8~^~LC~^^^1^1.32^1.32^^^^^~04/01/2011~ -~25051~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~25051~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~25052~^~203~^4.17^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~204~^8.33^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~205~^79.17^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~207~^2.10^0^^~4~^~O~^^^^^^^^^^~05/01/2011~ -~25052~^~255~^6.23^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~269~^29.17^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~303~^1.50^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~309~^1.23^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~323~^2.23^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~418~^0.03^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~203~^9.14^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~204~^22.86^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~205~^61.14^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~207~^2.76^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~255~^3.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~269~^33.14^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~303~^1.44^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~309~^1.77^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~323~^6.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~341~^0.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~342~^1.94^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~343~^0.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~344~^0.17^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~418~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~203~^5.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~204~^11.43^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~205~^74.29^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~207~^1.43^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~255~^7.18^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~269~^40.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~303~^1.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25054~^~309~^1.58^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~323~^1.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~341~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~342~^2.41^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~343~^0.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~344~^0.54^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~203~^5.71^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25055~^~204~^11.43^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25055~^~205~^72.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25055~^~207~^1.29^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~255~^9.30^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~269~^42.86^1^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~25055~^~303~^8.71^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~309~^1.35^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~323~^2.66^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~341~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~342~^0.81^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~343~^0.04^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~344~^0.34^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~203~^7.52^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~204~^20.42^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~205~^64.96^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25056~^~207~^1.55^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~255~^5.56^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~269~^37.61^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~303~^1.16^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~309~^1.20^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~323~^4.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~341~^0.03^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~342~^0.62^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~343~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~344~^0.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~418~^0.06^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25059~^~203~^8.20^10^0.43^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~204~^2.80^10^0.34^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~205~^81.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~207~^1.70^10^0.18^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~210~^0.58^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25059~^~255~^5.80^10^0.42^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~269~^0.60^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~25059~^~303~^1.49^9^0.12^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~309~^3.00^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~323~^6.54^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~342~^1.68^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~343~^0.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~344~^0.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~345~^0.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~346~^0.65^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~418~^0.00^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~203~^7.05^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~204~^17.64^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~205~^70.07^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~207~^2.17^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~255~^3.06^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~269~^38.80^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~303~^2.54^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25060~^~309~^1.33^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~323~^0.62^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~341~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~342~^0.53^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~343~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~344~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~345~^0.03^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~418~^0.32^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~203~^13.16^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~204~^10.53^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~205~^58.84^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25062~^~207~^1.97^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~255~^15.52^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~269~^26.32^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~303~^1.89^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~25062~^~309~^2.64^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~323~^0.29^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~341~^0.02^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~342~^0.07^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~344~^0.62^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~418~^0.51^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25063~^~203~^5.30^10^0.07^~1~^~A~^^^1^4.93^5.81^9^5.12^5.47^~2, 3~^~04/01/2013~ -~25063~^~204~^24.74^10^0.18^~1~^~A~^^^1^23.90^25.80^9^24.32^25.15^~2, 3~^~04/01/2013~ -~25063~^~205~^65.34^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~207~^2.36^10^0.08^~1~^~A~^^^1^1.68^2.53^9^2.17^2.53^~2, 3~^~04/01/2013~ -~25063~^~209~^49.00^6^1.48^~1~^~A~^^^1^43.60^54.00^5^45.18^52.82^~2, 3~^~04/01/2013~ -~25063~^~210~^2.57^6^0.07^~1~^~A~^^^1^2.30^2.70^5^2.38^2.75^~2, 3~^~04/01/2013~ -~25063~^~211~^0.37^6^0.02^~1~^~A~^^^1^0.30^0.40^5^0.31^0.42^~2, 3~^~04/01/2013~ -~25063~^~212~^0.40^6^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~04/01/2013~ -~25063~^~213~^0.43^6^0.19^~1~^~A~^^^1^0.00^1.00^5^-0.07^0.94^~1, 2, 3~^~04/01/2013~ -~25063~^~214~^0.32^6^0.01^~1~^~A~^^^1^0.30^0.40^5^0.27^0.36^~2, 3~^~04/01/2013~ -~25063~^~255~^2.27^10^0.05^~1~^~A~^^^1^2.02^2.63^9^2.15^2.38^~2, 3~^~04/01/2013~ -~25063~^~269~^4.08^6^0.26^~1~^~A~^^^1^3.30^4.80^5^3.39^4.77^~2, 3~^~04/01/2013~ -~25063~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~303~^0.85^10^0.01^~1~^~A~^^^1^0.81^0.93^9^0.81^0.88^~2, 3~^~04/01/2013~ -~25063~^~309~^0.91^10^0.01^~1~^~A~^^^1^0.86^0.96^9^0.88^0.92^~2, 3~^~04/01/2013~ -~25063~^~323~^9.08^6^0.32^~1~^~A~^^^1^7.64^9.77^5^8.25^9.90^~2, 3~^~04/01/2013~ -~25063~^~341~^2.19^6^1.38^~1~^~A~^^^1^0.00^6.59^5^-1.37^5.75^~1, 2, 3~^~04/01/2013~ -~25063~^~342~^4.11^6^1.31^~1~^~A~^^^1^0.00^6.61^5^0.73^7.48^~1, 2, 3~^~04/01/2013~ -~25063~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~344~^0.27^6^0.01^~1~^~A~^^^1^0.21^0.31^5^0.21^0.31^~2, 3~^~04/01/2013~ -~25063~^~345~^0.39^6^0.12^~1~^~A~^^^1^0.00^0.66^5^0.07^0.71^~1, 2, 3~^~04/01/2013~ -~25063~^~346~^0.21^6^0.09^~1~^~A~^^^1^0.00^0.45^5^-0.03^0.46^~1, 2, 3~^~04/01/2013~ -~25063~^~347~^0.05^6^0.03^~1~^~A~^^^1^0.00^0.17^5^-0.03^0.13^~1, 2, 3~^~04/01/2013~ -~25063~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25063~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~25064~^~203~^6.72^16^0.14^~1~^~A~^^^2^5.19^7.69^10^6.38^7.05^~2, 3~^~05/01/2013~ -~25064~^~204~^35.39^10^0.83^~11~^~JO~^^^2^30.40^38.36^9^33.51^37.26^~2, 3~^~05/01/2013~ -~25064~^~205~^53.54^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~207~^3.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25064~^~209~^45.95^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~25064~^~210~^0.34^7^0.01^~1~^~A~^^^1^0.30^0.40^6^0.27^0.34^~2, 3~^~05/01/2013~ -~25064~^~211~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~212~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~213~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~214~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~255~^1.35^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25064~^~269~^0.34^12^0.01^~1~^~A~^^^2^0.30^0.40^7^0.29^0.37^~2, 3~^~05/01/2013~ -~25064~^~287~^0.00^7^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~303~^1.43^16^0.07^~1~^~A~^^^2^0.72^2.08^11^1.25^1.60^~2, 3~^~05/01/2013~ -~25064~^~309~^1.51^16^0.47^~1~^~A~^^^2^0.73^2.39^5^0.28^2.72^~2, 3~^~05/01/2013~ -~25064~^~323~^7.72^3^0.70^~11~^~JO~^^^2^6.36^8.75^2^4.67^10.76^~2, 3~^~05/01/2013~ -~25064~^~341~^10.46^3^5.37^~1~^~A~^^^1^0.21^18.39^2^-12.66^33.58^~2, 3~^~05/01/2013~ -~25064~^~342~^5.11^3^5.10^~1~^~A~^^^1^0.00^15.32^2^-16.87^27.08^~1, 2, 3~^~05/01/2013~ -~25064~^~343~^0.44^3^0.08^~1~^~A~^^^1^0.32^0.60^2^0.08^0.80^~2, 3~^~05/01/2013~ -~25064~^~344~^0.22^3^0.11^~1~^~A~^^^1^0.00^0.39^2^-0.27^0.72^~1, 2, 3~^~05/01/2013~ -~25064~^~345~^0.07^3^0.07^~1~^~A~^^^1^0.00^0.21^2^-0.23^0.36^~1, 2, 3~^~05/01/2013~ -~25064~^~346~^0.19^3^0.19^~1~^~A~^^^1^0.00^0.58^2^-0.63^1.02^~1, 2, 3~^~05/01/2013~ -~25064~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~418~^0.00^1^^~4~^^^^^^^^^^^~05/01/2013~ -~25064~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25064~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~25065~^~203~^3.52^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25065~^~204~^6.67^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~205~^78.62^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~25065~^~207~^4.28^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~255~^6.91^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~269~^4.22^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~303~^0.46^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~309~^0.09^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~323~^1.07^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~342~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~344~^1.47^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~346~^1.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~347~^0.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~203~^14.11^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~204~^14.11^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~205~^62.20^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~207~^2.65^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~210~^12.73^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~211~^0.24^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~212~^0.78^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~214~^0.34^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~255~^6.93^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~269~^14.11^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~303~^3.80^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~309~^3.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~323~^2.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~341~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~342~^1.88^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~343~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~344~^2.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~346~^1.95^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~347~^0.15^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~203~^30.34^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25067~^~204~^15.17^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25067~^~205~^38.40^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~25067~^~207~^3.93^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~209~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~255~^12.16^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~269~^15.17^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25067~^~303~^5.40^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~309~^2.39^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~323~^4.61^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~341~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~342~^1.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~343~^0.07^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~344~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~346~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~418~^0.61^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~203~^28.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25068~^~204~^12.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25068~^~205~^48.73^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~25068~^~207~^3.51^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~209~^0.85^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~255~^7.76^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~269~^34.89^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~25068~^~303~^10.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~309~^3.52^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~323~^5.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~342~^0.98^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~343~^0.43^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~418~^1.24^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~573~^2.42^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~578~^0.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25070~^~203~^7.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~204~^17.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~205~^59.09^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~207~^2.31^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~209~^30.36^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~210~^21.40^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~211~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~212~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~213~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~214~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~255~^13.60^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~269~^21.43^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~287~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~303~^1.91^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~309~^1.38^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~323~^3.28^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~341~^0.12^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~342~^5.52^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~343~^0.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~344~^0.16^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~346~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~203~^10.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~25071~^~204~^5.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25071~^~205~^82.64^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~207~^2.24^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~255~^0.11^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25071~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25071~^~309~^2.20^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~323~^1.26^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~27000~^~203~^1.16^4^0.22^~1~^~A~^^^1^0.69^1.56^3^0.45^1.85^~2, 3~^~03/01/2008~ -~27000~^~204~^0.61^4^0.15^~1~^~A~^^^1^0.23^0.98^3^0.12^1.11^~2, 3~^~03/01/2008~ -~27000~^~205~^4.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~207~^1.07^4^0.10^~1~^~A~^^^1^0.85^1.35^3^0.73^1.39^~2, 3~^~03/01/2008~ -~27000~^~209~^2.45^4^0.21^~1~^~A~^^^1^2.03^3.03^3^1.78^3.11^~2, 3~^~03/01/2008~ -~27000~^~255~^92.87^4^0.68^~1~^~A~^^^1^90.99^94.23^3^90.68^95.06^~2, 3~^~03/01/2008~ -~27000~^~269~^0.09^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~303~^0.26^4^0.01^~1~^~A~^^^1^0.22^0.29^3^0.20^0.31^~2, 3~^~03/01/2008~ -~27000~^~309~^0.09^4^0.02^~1~^~A~^^^1^0.05^0.15^3^0.02^0.15^~2, 3~^~03/01/2008~ -~27000~^~323~^0.13^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~418~^0.03^4^0.01^~1~^~A~^^^1^0.02^0.07^3^-3.0e-03^0.07^~2, 3~^~03/01/2008~ -~27000~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27000~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27001~^~203~^2.58^4^0.24^~1~^~A~^^^1^2.00^3.19^3^1.80^3.34^~2, 3~^~03/01/2008~ -~27001~^~204~^1.21^4^0.21^~1~^~A~^^^1^0.87^1.83^3^0.52^1.89^~2, 3~^~03/01/2008~ -~27001~^~205~^4.35^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27001~^~207~^1.20^4^0.04^~1~^~A~^^^1^1.14^1.33^3^1.06^1.34^~2, 3~^~03/01/2008~ -~27001~^~209~^2.43^4^0.23^~1~^~A~^^^1^1.79^2.92^3^1.68^3.17^~2, 3~^~03/01/2008~ -~27001~^~210~^0.40^4^0.07^~1~^~A~^^^1^0.21^0.53^3^0.17^0.61^~2, 3~^~03/01/2008~ -~27001~^~211~^0.03^4^0.02^~1~^~A~^^^1^0.00^0.10^3^-0.05^0.11^~1, 2, 3~^~03/01/2008~ -~27001~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~255~^90.65^4^0.43^~1~^~A~^^^1^89.88^91.86^3^89.25^92.05^~2, 3~^~03/01/2008~ -~27001~^~269~^0.42^4^0.08^~1~^~A~^^^1^0.21^0.57^3^0.16^0.68^~2, 3~^~03/01/2008~ -~27001~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~303~^0.64^4^0.05^~1~^~A~^^^1^0.54^0.77^3^0.47^0.80^~2, 3~^~03/01/2008~ -~27001~^~309~^0.22^4^0.03^~1~^~A~^^^1^0.16^0.30^3^0.12^0.32^~2, 3~^~03/01/2008~ -~27001~^~323~^0.39^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~418~^0.10^4^0.03^~1~^~A~^^^1^0.04^0.16^3^-2.0e-03^0.20^~2, 3~^~03/01/2008~ -~27001~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27001~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~ -~27002~^~203~^2.08^4^0.32^~1~^~A~^^^1^1.25^2.69^3^1.04^3.11^~2, 3~^~03/01/2008~ -~27002~^~204~^0.26^4^0.08^~1~^~A~^^^1^0.17^0.52^3^-6.0e-03^0.53^~2, 3~^~03/01/2008~ -~27002~^~205~^5.25^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~207~^1.22^4^0.21^~1~^~A~^^^1^0.96^1.85^3^0.55^1.89^~2, 3~^~03/01/2008~ -~27002~^~209~^4.75^4^1.25^~1~^~A~^^^1^2.17^7.55^3^0.74^8.75^~2, 3~^~03/01/2008~ -~27002~^~210~^0.24^4^0.08^~1~^~A~^^^1^0.07^0.43^3^-0.01^0.49^~1, 2, 3~^~03/01/2008~ -~27002~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~214~^0.09^4^0.02^~1~^~A~^^^1^0.07^0.16^3^0.02^0.16^~1, 2, 3~^~03/01/2008~ -~27002~^~255~^91.18^4^1.87^~1~^~A~^^^1^85.85^94.56^3^85.21^97.16^~2, 3~^~03/01/2008~ -~27002~^~269~^0.34^4^0.07^~1~^~A~^^^1^0.15^0.50^3^0.10^0.57^~2, 3~^~03/01/2008~ -~27002~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~303~^0.21^4^0.04^~1~^~A~^^^1^0.09^0.33^3^0.05^0.36^~2, 3~^~03/01/2008~ -~27002~^~309~^0.12^4^0.03^~1~^~A~^^^1^0.07^0.20^3^0.02^0.22^~2, 3~^~03/01/2008~ -~27002~^~323~^0.06^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~418~^0.09^4^0.05^~1~^~A~^^^1^0.01^0.23^3^-0.07^0.24^~1, 2, 3~^~03/01/2008~ -~27002~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27002~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~27035~^~203~^10.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~204~^2.50^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~205~^70.95^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~207~^3.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~255~^12.08^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~269~^0.85^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~303~^4.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~309~^0.74^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~323~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27042~^~203~^2.61^12^0.19^~1~^~A~^^^1^2.19^4.75^11^2.17^3.04^~4~^~02/01/2011~ -~27042~^~204~^3.94^12^0.23^~1~^~A~^^^1^2.82^5.65^11^3.42^4.45^~4~^~02/01/2011~ -~27042~^~205~^8.28^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27042~^~207~^1.32^12^0.04^~1~^~A~^^^1^1.12^1.53^11^1.21^1.42^~4~^~02/01/2011~ -~27042~^~209~^7.43^7^0.22^~1~^~A~^^^1^6.60^8.10^6^6.88^7.97^~4~^~02/01/2011~ -~27042~^~210~^0.23^6^0.10^~1~^~A~^^^1^0.00^0.57^5^-0.04^0.51^~1, 4~^~02/01/2011~ -~27042~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27042~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27042~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27042~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27042~^~255~^83.85^12^0.20^~1~^~A~^^^1^82.81^85.22^11^83.39^84.30^~4~^~02/01/2011~ -~27042~^~269~^0.23^6^0.10^~1~^~A~^^^1^0.00^0.57^5^-0.04^0.51^~4~^~02/01/2011~ -~27042~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27042~^~303~^0.48^12^0.03^~1~^~A~^^^1^0.32^0.67^11^0.41^0.54^~4~^~02/01/2011~ -~27042~^~309~^0.23^12^0.01^~1~^~A~^^^1^0.18^0.29^11^0.20^0.25^~4~^~02/01/2011~ -~27043~^~203~^2.33^4^0.07^~1~^~A~^^^1^2.13^2.44^3^2.09^2.56^~4~^~04/01/2011~ -~27043~^~204~^4.23^4^0.09^~1~^~A~^^^1^3.99^4.46^3^3.92^4.53^~4~^~04/01/2011~ -~27043~^~205~^5.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~207~^1.23^4^0.03^~1~^~A~^^^1^1.12^1.30^3^1.10^1.35^~4~^~04/01/2011~ -~27043~^~209~^4.10^3^0.05^~1~^~A~^^^1^4.00^4.20^2^3.85^4.34^~4~^~04/01/2011~ -~27043~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~255~^86.53^4^0.15^~1~^~A~^^^1^86.10^86.77^3^86.03^87.02^~4~^~04/01/2011~ -~27043~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~4~^~04/01/2011~ -~27043~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2011~ -~27043~^~303~^0.56^4^0.03^~1~^~A~^^^1^0.50^0.64^3^0.46^0.66^~4~^~04/01/2011~ -~27043~^~309~^0.27^4^8.0e-03^~1~^~A~^^^1^0.26^0.29^3^0.24^0.29^~4~^~04/01/2011~ -~27043~^~323~^0.40^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~418~^4.63^0^^~4~^~BFZN~^~06430~^^^^^^^^^~06/01/2015~ -~27043~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27044~^~203~^3.29^12^0.16^~1~^~A~^^^1^2.69^4.19^11^2.92^3.64^~4~^~02/01/2011~ -~27044~^~204~^1.34^12^0.08^~1~^~A~^^^1^0.94^1.75^11^1.15^1.52^~4~^~02/01/2011~ -~27044~^~205~^3.84^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27044~^~207~^1.07^12^0.06^~1~^~A~^^^1^0.79^1.33^11^0.93^1.20^~4~^~02/01/2011~ -~27044~^~210~^0.34^6^0.01^~1~^~A~^^^1^0.32^0.38^5^0.31^0.37^~4~^~02/01/2011~ -~27044~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27044~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27044~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27044~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27044~^~255~^90.46^12^0.20^~1~^~A~^^^1^89.42^91.50^11^90.00^90.91^~4~^~02/01/2011~ -~27044~^~269~^0.34^6^0.01^~1~^~A~^^^1^0.32^0.38^5^0.31^0.37^~4~^~02/01/2011~ -~27044~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^5^0.00^0.00^~1, 4~^~02/01/2011~ -~27044~^~303~^0.33^12^0.01^~1~^~A~^^^1^0.27^0.40^11^0.30^0.36^~4~^~02/01/2011~ -~27044~^~309~^0.18^12^9.0e-03^~1~^~A~^^^1^0.14^0.23^11^0.15^0.19^~4~^~02/01/2011~ -~27044~^~323~^0.10^2^^~1~^~A~^^^1^0.08^0.13^1^^^^~01/01/2013~ -~27044~^~418~^0.15^2^^~1~^~A~^^^1^0.15^0.15^1^^^~1~^~01/01/2013~ -~27044~^~573~^0.00^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~578~^0.00^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27045~^~203~^3.26^9^0.13^~1~^~A~^^^1^2.69^4.00^8^2.94^3.56^~4~^~02/01/2011~ -~27045~^~204~^0.95^9^0.03^~1~^~A~^^^1^0.82^1.08^8^0.87^1.01^~4~^~02/01/2011~ -~27045~^~205~^4.99^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~27045~^~207~^1.05^9^0.05^~1~^~A~^^^1^0.88^1.33^8^0.92^1.18^~4~^~02/01/2011~ -~27045~^~209~^3.00^5^0.12^~1~^~A~^^^1^2.70^3.30^4^2.64^3.35^~4~^~02/01/2011~ -~27045~^~210~^0.93^4^0.11^~1~^~A~^^^1^0.58^1.08^3^0.55^1.30^~4~^~02/01/2011~ -~27045~^~211~^0.05^4^0.04^~1~^~A~^^^1^0.00^0.18^3^-0.10^0.19^~1, 4~^~02/01/2011~ -~27045~^~212~^0.25^4^0.02^~1~^~A~^^^1^0.18^0.28^3^0.17^0.31^~1, 4~^~02/01/2011~ -~27045~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~02/01/2011~ -~27045~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~02/01/2011~ -~27045~^~255~^89.75^9^0.17^~1~^~A~^^^1^88.90^90.48^8^89.35^90.14^~4~^~02/01/2011~ -~27045~^~269~^1.22^4^0.09^~1~^~A~^^^1^0.95^1.36^3^0.92^1.51^~4~^~02/01/2011~ -~27045~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^3^0.00^0.00^~1, 4~^~02/01/2011~ -~27045~^~303~^0.45^9^0.04^~1~^~A~^^^1^0.28^0.67^8^0.35^0.53^~4~^~02/01/2011~ -~27045~^~309~^0.41^9^0.01^~1~^~A~^^^1^0.35^0.47^8^0.38^0.44^~4~^~02/01/2011~ -~27046~^~203~^0.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~204~^0.13^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~205~^60.66^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~27046~^~207~^1.40^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~255~^37.44^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~269~^30.54^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~303~^0.39^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~309~^0.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~323~^0.20^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~203~^1.13^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~204~^0.89^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~205~^6.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~207~^2.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~255~^89.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~269~^3.50^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~303~^0.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~309~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~323~^0.43^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~203~^1.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~204~^0.23^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~205~^22.04^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~207~^5.08^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~255~^71.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~269~^9.82^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~303~^1.37^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~309~^0.34^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~323~^1.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~203~^1.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~27049~^~204~^16.70^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~27049~^~205~^13.30^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~27049~^~207~^1.96^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~255~^67.00^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~27049~^~269~^4.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~303~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~309~^0.12^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~323~^1.68^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~203~^0.27^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~204~^0.02^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~205~^38.22^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~207~^1.22^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~255~^60.27^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~269~^18.75^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~303~^0.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~309~^0.09^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~203~^1.36^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~204~^1.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~205~^28.22^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~207~^3.70^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~255~^65.67^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~269~^11.83^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~303~^0.83^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~309~^0.38^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~323~^1.08^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~203~^3.14^14^0.31^~1~^~A~^^^1^2.07^5.85^13^2.45^3.82^~2, 3~^~07/01/2012~ -~27052~^~204~^9.51^14^0.65^~1~^~A~^^^1^7.40^15.59^13^8.08^10.92^~2, 3~^~07/01/2012~ -~27052~^~205~^11.14^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~207~^2.49^14^0.11^~1~^~A~^^^1^2.12^3.53^13^2.24^2.75^~2, 3~^~07/01/2012~ -~27052~^~209~^4.86^8^0.36^~1~^~A~^^^1^2.90^5.70^7^4.01^5.71^~2, 3~^~07/01/2012~ -~27052~^~210~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~211~^0.26^8^0.07^~1~^~A~^^^1^0.10^0.80^7^0.07^0.44^~2, 3~^~07/01/2012~ -~27052~^~212~^0.21^8^0.01^~1~^~A~^^^1^0.20^0.30^7^0.18^0.24^~2, 3~^~07/01/2012~ -~27052~^~213~^1.45^8^0.42^~1~^~A~^^^1^0.90^4.40^7^0.44^2.45^~2, 3~^~07/01/2012~ -~27052~^~214~^0.03^8^0.02^~1~^~A~^^^1^0.00^0.20^7^-0.03^0.08^~1, 2, 3~^~07/01/2012~ -~27052~^~255~^73.72^14^1.16^~1~^~A~^^^1^63.15^77.38^13^71.20^76.23^~2, 3~^~07/01/2012~ -~27052~^~269~^1.95^8^0.44^~1~^~A~^^^1^1.20^4.80^7^0.90^2.99^~2, 3~^~07/01/2012~ -~27052~^~287~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~303~^0.14^14^5.0e-03^~1~^~A~^^^1^0.10^0.17^13^0.12^0.15^~2, 3~^~07/01/2012~ -~27052~^~309~^0.41^14^0.03^~1~^~A~^^^1^0.26^0.70^13^0.33^0.49^~2, 3~^~07/01/2012~ -~27052~^~323~^1.86^8^0.14^~1~^~A~^^^1^1.24^2.63^7^1.51^2.21^~2, 3~^~07/01/2012~ -~27052~^~341~^0.13^8^0.02^~1~^~A~^^^1^0.00^0.27^7^0.06^0.20^~1, 2, 3~^~07/01/2012~ -~27052~^~342~^6.36^8^0.65^~1~^~A~^^^1^4.24^9.27^7^4.82^7.90^~2, 3~^~07/01/2012~ -~27052~^~343~^0.99^8^0.35^~1~^~A~^^^1^0.12^2.43^7^0.16^1.82^~2, 3~^~07/01/2012~ -~27052~^~344~^0.06^8^0.01^~1~^~A~^^^1^0.00^0.11^7^0.01^0.10^~1, 2, 3~^~07/01/2012~ -~27052~^~345~^0.00^8^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~346~^0.08^8^0.02^~1~^~A~^^^1^0.00^0.17^7^0.01^0.14^~1, 2, 3~^~07/01/2012~ -~27052~^~347~^0.03^8^0.01^~1~^~A~^^^1^0.00^0.11^7^-0.01^0.06^~1, 2, 3~^~07/01/2012~ -~27052~^~418~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27054~^~203~^2.92^6^0.10^~1~^~A~^^^1^2.59^3.18^5^2.64^3.19^~2, 3~^~07/01/2012~ -~27054~^~204~^8.26^6^0.22^~1~^~A~^^^1^7.40^8.90^5^7.67^8.84^~2, 3~^~07/01/2012~ -~27054~^~205~^11.72^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~207~^2.42^6^0.06^~1~^~A~^^^1^2.30^2.71^5^2.27^2.58^~2, 3~^~07/01/2012~ -~27054~^~209~^5.43^3^0.06^~1~^~A~^^^1^5.30^5.50^2^5.14^5.72^~2, 3~^~07/01/2012~ -~27054~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~211~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~07/01/2012~ -~27054~^~212~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~07/01/2012~ -~27054~^~213~^1.00^3^0.00^~1~^~A~^^^1^1.00^1.00^^^^~2, 3~^~07/01/2012~ -~27054~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~255~^74.68^6^0.55^~1~^~A~^^^1^72.30^75.89^5^73.25^76.10^~2, 3~^~07/01/2012~ -~27054~^~269~^1.40^3^0.00^~1~^~A~^^^1^1.40^1.40^^^^~2, 3~^~07/01/2012~ -~27054~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~303~^0.14^6^7.0e-03^~1~^~A~^^^1^0.12^0.17^5^0.11^0.15^~2, 3~^~07/01/2012~ -~27054~^~309~^0.44^6^0.01^~1~^~A~^^^1^0.40^0.49^5^0.40^0.47^~2, 3~^~07/01/2012~ -~27054~^~323~^1.92^3^0.04^~1~^~A~^^^1^1.82^1.97^2^1.70^2.13^~2, 3~^~07/01/2012~ -~27054~^~341~^0.11^3^0.02^~1~^~A~^^^1^0.09^0.15^2^0.03^0.19^~2, 3~^~07/01/2012~ -~27054~^~342~^4.77^3^0.27^~1~^~A~^^^1^4.24^5.17^2^3.58^5.96^~2, 3~^~07/01/2012~ -~27054~^~343~^0.14^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.06^0.21^~2, 3~^~07/01/2012~ -~27054~^~344~^0.10^3^3.0e-03^~1~^~A~^^^1^0.10^0.11^2^0.09^0.11^~2, 3~^~07/01/2012~ -~27054~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~346~^0.11^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.12^0.34^~1, 2, 3~^~07/01/2012~ -~27054~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2012~ -~27055~^~203~^0.95^6^0.01^~1~^~A~^^^1^0.94^1.00^5^0.92^0.97^~4~^~07/01/2012~ -~27055~^~204~^0.43^6^0.03^~1~^~A~^^^1^0.34^0.59^5^0.33^0.53^~4~^~07/01/2012~ -~27055~^~205~^46.08^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~207~^2.39^6^0.01^~1~^~A~^^^1^2.34^2.43^5^2.36^2.42^~4~^~07/01/2012~ -~27055~^~209~^0.20^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~211~^20.85^3^0.16^~1~^~A~^^^1^20.59^21.15^2^20.15^21.55^~4~^~07/01/2012~ -~27055~^~212~^17.52^3^0.03^~1~^~A~^^^1^17.45^17.58^2^17.35^17.68^~4~^~07/01/2012~ -~27055~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~255~^50.14^6^0.07^~1~^~A~^^^1^49.89^50.43^5^49.96^50.33^~4~^~07/01/2012~ -~27055~^~269~^38.37^3^0.15^~1~^~A~^^^1^38.17^38.68^2^37.70^39.04^~4~^~07/01/2012~ -~27055~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~303~^0.33^6^0.01^~1~^~A~^^^1^0.29^0.38^5^0.29^0.36^~4~^~07/01/2012~ -~27055~^~309~^0.19^6^0.01^~1~^~A~^^^1^0.13^0.25^5^0.13^0.23^~4~^~07/01/2012~ -~27055~^~323~^1.08^3^0.02^~1~^~A~^^^1^1.04^1.11^2^0.99^1.16^~4~^~07/01/2012~ -~27055~^~341~^0.03^3^5.0e-03^~1~^~A~^^^1^0.02^0.04^2^9.0e-03^0.05^~4~^~07/01/2012~ -~27055~^~342~^0.08^3^5.0e-03^~1~^~A~^^^1^0.07^0.09^2^0.06^0.10^~4~^~07/01/2012~ -~27055~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27055~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~203~^0.91^6^0.03^~1~^~A~^^^1^0.88^1.06^5^0.82^0.98^~4~^~07/01/2012~ -~27056~^~204~^0.67^6^0.09^~1~^~A~^^^1^0.41^1.04^5^0.43^0.91^~4~^~07/01/2012~ -~27056~^~205~^39.95^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~207~^3.19^6^0.08^~1~^~A~^^^1^3.07^3.59^5^2.97^3.39^~4~^~07/01/2012~ -~27056~^~209~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~210~^24.71^3^1.09^~1~^~A~^^^1^22.63^26.32^2^20.01^29.40^~4~^~07/01/2012~ -~27056~^~211~^5.19^3^0.50^~1~^~A~^^^1^4.30^6.04^2^3.03^7.35^~4~^~07/01/2012~ -~27056~^~212~^5.39^3^0.52^~1~^~A~^^^1^4.41^6.19^2^3.14^7.62^~4~^~07/01/2012~ -~27056~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~255~^55.28^6^0.51^~1~^~A~^^^1^52.70^55.92^5^53.94^56.60^~4~^~07/01/2012~ -~27056~^~269~^35.29^3^0.34^~1~^~A~^^^1^34.86^35.98^2^33.79^36.78^~4~^~07/01/2012~ -~27056~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~303~^0.69^6^6.0e-03^~1~^~A~^^^1^0.68^0.72^5^0.67^0.70^~4~^~07/01/2012~ -~27056~^~309~^0.17^6^0.01^~1~^~A~^^^1^0.15^0.22^5^0.14^0.20^~4~^~07/01/2012~ -~27056~^~323~^0.91^3^0.04^~1~^~A~^^^1^0.86^1.00^2^0.71^1.10^~4~^~07/01/2012~ -~27056~^~341~^0.04^3^5.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~4~^~07/01/2012~ -~27056~^~342~^0.30^3^0.14^~1~^~A~^^^1^0.15^0.58^2^-0.31^0.90^~4~^~07/01/2012~ -~27056~^~343~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.13^2^-0.14^0.22^~1, 4~^~07/01/2012~ -~27056~^~344~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~07/01/2012~ -~27056~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27056~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~203~^1.00^6^0.00^~1~^~A~^^^1^1.00^1.00^5^0.99^0.99^~4~^~07/01/2012~ -~27057~^~204~^0.52^6^0.04^~1~^~A~^^^1^0.40^0.65^5^0.41^0.62^~4~^~07/01/2012~ -~27057~^~205~^37.92^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27057~^~207~^2.20^6^0.01^~1~^~A~^^^1^2.14^2.25^5^2.15^2.24^~4~^~07/01/2012~ -~27057~^~209~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27057~^~210~^2.02^3^0.16^~1~^~A~^^^1^1.69^2.21^2^1.31^2.72^~4~^~07/01/2012~ -~27057~^~211~^15.49^3^0.35^~1~^~A~^^^1^14.82^16.00^2^13.98^16.99^~4~^~07/01/2012~ -~27057~^~212~^13.44^3^0.21^~1~^~A~^^^1^13.04^13.78^2^12.51^14.37^~4~^~07/01/2012~ -~27057~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~255~^58.36^6^0.08^~1~^~A~^^^1^58.06^58.59^5^58.13^58.59^~4~^~07/01/2012~ -~27057~^~269~^30.95^3^0.44^~1~^~A~^^^1^30.07^31.47^2^29.04^32.85^~4~^~07/01/2012~ -~27057~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~303~^1.09^6^0.03^~1~^~A~^^^1^0.96^1.24^5^0.99^1.18^~4~^~07/01/2012~ -~27057~^~309~^0.22^6^0.02^~1~^~A~^^^1^0.17^0.35^5^0.14^0.29^~4~^~07/01/2012~ -~27057~^~323~^0.96^3^0.03^~1~^~A~^^^1^0.93^1.03^2^0.83^1.09^~4~^~07/01/2012~ -~27057~^~341~^0.08^3^3.0e-03^~1~^~A~^^^1^0.07^0.08^2^0.06^0.09^~4~^~07/01/2012~ -~27057~^~342~^0.12^3^2.0e-03^~1~^~A~^^^1^0.11^0.12^2^0.11^0.12^~4~^~07/01/2012~ -~27057~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~344~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^2^0.01^0.01^~4~^~07/01/2012~ -~27057~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27057~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~203~^0.44^3^0.00^~1~^~A~^^^1^0.44^0.44^2^0.43^0.43^~4~^~07/01/2012~ -~27058~^~204~^1.41^3^0.08^~1~^~A~^^^1^1.26^1.54^2^1.06^1.76^~4~^~07/01/2012~ -~27058~^~205~^29.45^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27058~^~207~^3.74^3^0.28^~1~^~A~^^^1^3.17^4.06^2^2.51^4.96^~4~^~07/01/2012~ -~27058~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~211~^12.64^3^0.19^~1~^~A~^^^1^12.26^12.88^2^11.81^13.45^~4~^~07/01/2012~ -~27058~^~212~^10.85^3^0.16^~1~^~A~^^^1^10.57^11.15^2^10.13^11.57^~4~^~07/01/2012~ -~27058~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~255~^64.96^3^0.10^~1~^~A~^^^1^64.74^65.09^2^64.48^65.42^~4~^~07/01/2012~ -~27058~^~269~^23.49^3^0.35^~1~^~A~^^^1^22.83^24.03^2^21.97^25.00^~4~^~07/01/2012~ -~27058~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~303~^0.15^3^6.0e-03^~1~^~A~^^^1^0.14^0.16^2^0.12^0.17^~4~^~07/01/2012~ -~27058~^~309~^0.12^3^0.02^~1~^~A~^^^1^0.08^0.15^2^0.02^0.21^~1, 4~^~07/01/2012~ -~27058~^~323~^0.21^3^6.0e-03^~1~^~A~^^^1^0.20^0.22^2^0.18^0.23^~4~^~07/01/2012~ -~27058~^~341~^0.02^3^0.00^~1~^~A~^^^1^0.02^0.02^2^0.02^0.02^~4~^~07/01/2012~ -~27058~^~342~^0.82^3^0.02^~1~^~A~^^^1^0.78^0.86^2^0.72^0.91^~4~^~07/01/2012~ -~27058~^~343~^0.22^3^3.0e-03^~1~^~A~^^^1^0.22^0.22^2^0.20^0.23^~4~^~07/01/2012~ -~27058~^~344~^1.26^3^1.25^~1~^~A~^^^1^0.00^3.77^2^-4.15^6.66^~1, 4~^~07/01/2012~ -~27058~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27058~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~07/01/2012~ -~27059~^~203~^6.31^5^0.05^~1~^~A~^^^1^6.17^6.44^4^6.17^6.45^~2, 3~^~04/01/2013~ -~27059~^~204~^16.02^5^0.37^~1~^~A~^^^1^15.05^17.21^4^14.98^17.04^~2, 3~^~04/01/2013~ -~27059~^~205~^22.02^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~207~^4.25^5^0.02^~1~^~A~^^^1^4.15^4.31^4^4.16^4.33^~2, 3~^~04/01/2013~ -~27059~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~27059~^~210~^12.40^3^0.30^~1~^~A~^^^1^12.00^13.00^2^11.08^13.71^~2, 3~^~04/01/2013~ -~27059~^~211~^2.53^3^0.03^~1~^~A~^^^1^2.50^2.60^2^2.39^2.67^~2, 3~^~04/01/2013~ -~27059~^~212~^2.13^3^0.08^~1~^~A~^^^1^2.00^2.30^2^1.75^2.51^~2, 3~^~04/01/2013~ -~27059~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~255~^51.40^5^0.32^~1~^~A~^^^1^50.23^52.06^4^50.49^52.31^~2, 3~^~04/01/2013~ -~27059~^~269~^17.07^3^0.21^~1~^~A~^^^1^16.80^17.50^2^16.12^18.00^~2, 3~^~04/01/2013~ -~27059~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~303~^0.91^5^0.01^~1~^~A~^^^1^0.88^0.94^4^0.87^0.94^~2, 3~^~04/01/2013~ -~27059~^~309~^0.78^5^0.03^~1~^~A~^^^1^0.71^0.91^4^0.68^0.87^~2, 3~^~04/01/2013~ -~27059~^~323~^2.23^3^0.11^~1~^~A~^^^1^1.99^2.35^2^1.71^2.74^~2, 3~^~04/01/2013~ -~27059~^~341~^0.09^3^0.01^~1~^~A~^^^1^0.06^0.13^2^0.01^0.17^~2, 3~^~04/01/2013~ -~27059~^~342~^5.22^3^0.60^~1~^~A~^^^1^4.50^6.42^2^2.60^7.82^~2, 3~^~04/01/2013~ -~27059~^~343~^0.44^3^0.28^~1~^~A~^^^1^0.09^1.00^2^-0.78^1.65^~2, 3~^~04/01/2013~ -~27059~^~344~^0.05^3^7.0e-03^~1~^~A~^^^1^0.04^0.06^2^0.02^0.07^~2, 3~^~04/01/2013~ -~27059~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~346~^2.28^3^0.09^~1~^~A~^^^1^2.10^2.39^2^1.88^2.66^~2, 3~^~04/01/2013~ -~27059~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27059~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~27060~^~203~^1.16^2^^~1~^~A~^^^1^1.13^1.19^1^^^^~02/01/2013~ -~27060~^~204~^0.51^2^^~1~^~A~^^^1^0.42^0.61^1^^^^~02/01/2013~ -~27060~^~205~^10.28^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~27060~^~207~^1.14^2^^~1~^~A~^^^1^1.12^1.16^1^^^^~02/01/2013~ -~27060~^~209~^7.00^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~210~^1.18^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~211~^0.85^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~212~^0.75^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~255~^86.91^2^^~1~^~A~^^^1^86.38^87.44^1^^^^~02/01/2013~ -~27060~^~269~^2.78^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~303~^0.40^2^^~1~^~A~^^^1^0.38^0.42^1^^^^~02/01/2013~ -~27060~^~309~^0.24^2^^~1~^~A~^^^1^0.22^0.25^1^^^^~02/01/2013~ -~27060~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~342~^0.07^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~343~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~ -~27060~^~418~^0.02^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27061~^~203~^0.67^6^0.01^~1~^~A~^^^1^0.63^0.72^5^0.63^0.70^~2, 3~^~02/01/2015~ -~27061~^~204~^2.57^6^0.08^~1~^~A~^^^1^2.35^2.90^5^2.35^2.77^~2, 3~^~02/01/2015~ -~27061~^~205~^5.01^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~207~^1.03^6^0.01^~1~^~A~^^^1^0.99^1.05^5^0.99^1.05^~2, 3~^~02/01/2015~ -~27061~^~209~^5.40^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~27061~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~255~^90.73^6^0.07^~1~^~A~^^^1^90.56^91.00^5^90.54^90.90^~2, 3~^~02/01/2015~ -~27061~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~27061~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~303~^0.07^6^0.00^~1~^~A~^^^1^0.07^0.07^5^0.07^0.07^~1, 2, 3~^~02/01/2015~ -~27061~^~309~^0.08^6^3.0e-03^~1~^~A~^^^1^0.07^0.09^5^0.06^0.08^~2, 3~^~02/01/2015~ -~27061~^~323~^0.11^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~27061~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~342~^0.09^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~27061~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27061~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~27062~^~203~^2.81^11^0.09^~1~^~A~^^^1^2.51^3.51^10^2.60^3.01^~2, 3~^~04/01/2015~ -~27062~^~204~^0.96^11^0.03^~1~^~A~^^^1^0.70^1.10^10^0.88^1.03^~2, 3~^~04/01/2015~ -~27062~^~205~^7.94^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~207~^0.94^11^0.02^~1~^~A~^^^1^0.83^1.11^10^0.89^0.99^~2, 3~^~04/01/2015~ -~27062~^~209~^3.97^4^0.55^~1~^~A~^^^1^3.00^5.50^3^2.19^5.75^~2, 3~^~04/01/2015~ -~27062~^~210~^0.70^6^0.02^~1~^~A~^^^1^0.60^0.80^5^0.63^0.76^~2, 3~^~04/01/2015~ -~27062~^~211~^0.22^6^0.01^~1~^~A~^^^1^0.20^0.30^5^0.17^0.26^~2, 3~^~04/01/2015~ -~27062~^~212~^0.30^6^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~04/01/2015~ -~27062~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~255~^87.35^11^0.45^~1~^~A~^^^1^84.70^89.80^10^86.33^88.37^~2, 3~^~04/01/2015~ -~27062~^~269~^1.22^6^0.03^~1~^~A~^^^1^1.10^1.30^5^1.13^1.29^~2, 3~^~04/01/2015~ -~27062~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~303~^0.45^11^0.02^~1~^~A~^^^1^0.32^0.61^10^0.39^0.49^~2, 3~^~04/01/2015~ -~27062~^~309~^0.50^11^0.02^~1~^~A~^^^1^0.41^0.63^10^0.45^0.54^~2, 3~^~04/01/2015~ -~27062~^~323~^0.12^3^0.03^~1~^~A~^^^1^0.08^0.18^2^-0.01^0.24^~2, 3~^~04/01/2015~ -~27062~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~342~^0.12^3^0.07^~1~^~A~^^^1^0.00^0.26^2^-0.20^0.44^~1, 2, 3~^~04/01/2015~ -~27062~^~343~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.09^0.15^~1, 2, 3~^~04/01/2015~ -~27062~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~418~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.17^2^0.10^0.20^~2, 3~^~04/01/2015~ -~27062~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27062~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~203~^0.62^12^0.03^~1~^~A~^^^1^0.42^0.90^2^0.47^0.76^~2, 3~^~04/01/2015~ -~27063~^~204~^0.91^12^0.04^~1~^~A~^^^1^0.50^2.10^7^0.80^1.01^~2, 3~^~04/01/2015~ -~27063~^~205~^4.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~207~^1.82^12^0.04^~1~^~A~^^^1^1.36^2.11^2^1.66^1.98^~2, 3~^~04/01/2015~ -~27063~^~209~^2.12^4^0.00^~1~^~A~^^^1^1.20^2.30^^^^~2, 3~^~04/01/2015~ -~27063~^~210~^0.43^6^0.02^~1~^~A~^^^1^0.00^0.60^3^0.33^0.52^~1, 2, 3~^~04/01/2015~ -~27063~^~211~^0.59^6^0.01^~1~^~A~^^^1^0.20^0.70^1^0.37^0.79^~2, 3~^~04/01/2015~ -~27063~^~212~^0.81^6^5.0e-03^~1~^~A~^^^1^0.50^0.90^1^0.74^0.88^~2, 3~^~04/01/2015~ -~27063~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~255~^91.78^12^0.18^~1~^~A~^^^1^90.00^93.40^2^91.01^92.54^~2, 3~^~04/01/2015~ -~27063~^~269~^1.83^6^0.04^~1~^~A~^^^1^0.70^2.20^2^1.66^1.99^~2, 3~^~04/01/2015~ -~27063~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~303~^0.67^12^0.08^~1~^~A~^^^1^0.23^3.48^5^0.45^0.87^~2, 3~^~04/01/2015~ -~27063~^~309~^0.09^12^8.0e-03^~1~^~A~^^^1^0.06^0.17^2^0.04^0.12^~2, 3~^~04/01/2015~ -~27063~^~323~^0.70^2^^~1~^~A~^^^1^0.60^1.39^^^^^~04/01/2015~ -~27063~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~27063~^~342~^0.40^2^^~1~^~A~^^^1^0.36^0.70^^^^^~04/01/2015~ -~27063~^~343~^0.12^2^^~1~^~A~^^^1^0.12^0.16^^^^^~04/01/2015~ -~27063~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~27063~^~345~^0.14^2^^~1~^~A~^^^1^0.14^0.15^^^^^~04/01/2015~ -~27063~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~27063~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2015~ -~27063~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27063~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27064~^~203~^2.23^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~204~^10.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~205~^46.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~207~^9.04^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~209~^8.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~210~^8.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~211~^2.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~212~^2.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~255~^31.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~269~^13.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~303~^0.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~309~^0.61^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~323~^3.91^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~341~^0.18^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~342~^0.44^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~344~^2.27^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~346~^2.40^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~27064~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~27064~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27064~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~203~^5.44^3^0.03^~1~^~A~^^^1^5.38^5.50^2^5.28^5.59^~2, 3~^~06/01/2015~ -~27065~^~204~^3.70^3^0.08^~1~^~A~^^^1^3.59^3.86^2^3.34^4.05^~2, 3~^~06/01/2015~ -~27065~^~205~^15.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~207~^2.02^3^0.02^~1~^~A~^^^1^1.98^2.05^2^1.92^2.11^~2, 3~^~06/01/2015~ -~27065~^~209~^8.40^2^^~1~^~A~^^^1^8.10^8.70^1^^^^~06/01/2015~ -~27065~^~210~^0.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27065~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27065~^~212~^0.39^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27065~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27065~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27065~^~255~^72.95^3^0.08^~1~^~A~^^^1^72.79^73.05^2^72.60^73.29^~2, 3~^~06/01/2015~ -~27065~^~269~^0.99^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27065~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27065~^~303~^1.60^3^0.01^~1~^~A~^^^1^1.57^1.63^2^1.52^1.67^~2, 3~^~06/01/2015~ -~27065~^~309~^0.69^3^4.0e-03^~1~^~A~^^^1^0.69^0.70^2^0.67^0.71^~2, 3~^~06/01/2015~ -~27065~^~323~^0.91^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27065~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~203~^1.09^2^^~1~^~A~^^^1^1.06^1.13^1^^^^~06/01/2015~ -~27066~^~204~^50.89^2^^~1~^~A~^^^1^50.34^51.43^1^^^^~06/01/2015~ -~27066~^~205~^10.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~207~^2.14^2^^~1~^~A~^^^1^2.14^2.14^^^^^~06/01/2015~ -~27066~^~209~^0.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~210~^0.88^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~211~^4.08^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~212~^4.02^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~27066~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~27066~^~255~^35.83^2^^~1~^~A~^^^1^35.05^36.62^1^^^^~06/01/2015~ -~27066~^~269~^8.98^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~27066~^~303~^0.23^4^0.06^~1~^~A~^^^1^0.12^0.35^3^0.03^0.42^~2, 3~^~06/01/2015~ -~27066~^~309~^0.17^4^0.05^~1~^~A~^^^1^0.07^0.28^3^-0.01^0.34^~2, 3~^~06/01/2015~ -~27066~^~323~^4.19^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27066~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~27068~^~203~^5.44^3^0.03^~1~^~A~^^^1^5.38^5.50^2^5.28^5.59^~2, 3~^~06/01/2015~ -~27068~^~204~^3.70^3^0.08^~1~^~A~^^^1^3.59^3.86^2^3.34^4.05^~2, 3~^~06/01/2015~ -~27068~^~205~^15.89^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~207~^2.02^3^0.02^~1~^~A~^^^1^1.98^2.05^2^1.92^2.11^~2, 3~^~06/01/2015~ -~27068~^~209~^8.40^2^^~1~^~A~^^^1^8.10^8.70^1^^^^~06/01/2015~ -~27068~^~210~^0.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27068~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27068~^~212~^0.39^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27068~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27068~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27068~^~255~^72.95^3^0.08^~1~^~A~^^^1^72.79^73.05^2^72.60^73.29^~2, 3~^~06/01/2015~ -~27068~^~269~^0.99^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27068~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27068~^~303~^1.60^3^0.01^~1~^~A~^^^1^1.57^1.63^2^1.52^1.67^~2, 3~^~06/01/2015~ -~27068~^~309~^0.69^3^4.0e-03^~1~^~A~^^^1^0.69^0.70^2^0.67^0.71^~2, 3~^~06/01/2015~ -~28285~^~203~^7.85^3^^~1~^~A~^^^1^6.43^10.20^^^^~2, 3~^~04/01/2013~ -~28285~^~204~^9.20^0^^~1~^~A~^^^^^^^^^^~11/01/2013~ -~28285~^~205~^46.13^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~207~^1.39^3^^~1~^~A~^^^1^0.94^1.85^^^^~2, 3~^~04/01/2013~ -~28285~^~209~^33.67^3^^~1~^~A~^^^1^32.40^35.30^^^^~2, 3~^~04/01/2013~ -~28285~^~210~^0.40^3^^~1~^~A~^^^1^0.20^0.50^^^^~2, 3~^~04/01/2013~ -~28285~^~211~^0.30^3^^~1~^~A~^^^1^0.10^0.40^^^^~2, 3~^~04/01/2013~ -~28285~^~212~^0.27^3^^~1~^~A~^^^1^0.10^0.40^^^^~2, 3~^~04/01/2013~ -~28285~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~28285~^~214~^1.97^3^^~1~^~A~^^^1^1.20^2.90^^^^~2, 3~^~04/01/2013~ -~28285~^~255~^35.43^3^^~1~^~A~^^^1^31.20^38.70^^^^~2, 3~^~04/01/2013~ -~28285~^~269~^2.93^3^^~1~^~A~^^^1^2.10^3.60^^^^~2, 3~^~04/01/2013~ -~28285~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~28285~^~303~^2.20^3^^~1~^~A~^^^1^1.26^3.20^^^^~2, 3~^~04/01/2013~ -~28285~^~309~^1.54^3^^~1~^~A~^^^1^1.06^2.25^^^^~2, 3~^~04/01/2013~ -~28285~^~323~^0.55^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~341~^0.28^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~342~^1.72^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~343~^0.57^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~344~^0.14^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~345~^1.37^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~346~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~347~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~418~^0.00^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~573~^0.00^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28285~^~578~^0.00^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~203~^6.36^2^^~1~^~A~^^^1^5.80^6.93^^^^^~04/01/2013~ -~28286~^~204~^13.20^2^^~1~^~A~^^^1^11.90^14.50^^^^^~04/01/2013~ -~28286~^~205~^45.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~207~^1.59^2^^~1~^~A~^^^1^1.39^1.79^^^^^~04/01/2013~ -~28286~^~209~^31.50^2^^~1~^~A~^^^1^30.80^32.20^^^^^~04/01/2013~ -~28286~^~210~^1.75^2^^~1~^~A~^^^1^0.30^3.20^^^^^~04/01/2013~ -~28286~^~211~^0.35^2^^~1~^~A~^^^1^0.20^0.50^^^^^~04/01/2013~ -~28286~^~212~^0.35^2^^~1~^~A~^^^1^0.20^0.50^^^^^~04/01/2013~ -~28286~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28286~^~214~^1.70^2^^~1~^~A~^^^1^1.10^2.30^^^^^~04/01/2013~ -~28286~^~255~^33.50^2^^~1~^~A~^^^1^33.20^33.80^^^^^~04/01/2013~ -~28286~^~269~^4.15^2^^~1~^~A~^^^1^3.60^4.70^^^^^~04/01/2013~ -~28286~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28286~^~303~^1.61^2^^~1~^~A~^^^1^0.53^2.69^^^^^~04/01/2013~ -~28286~^~309~^0.82^2^^~1~^~A~^^^1^0.34^1.31^^^^^~04/01/2013~ -~28286~^~323~^1.35^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~342~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~343~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~344~^1.08^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~345~^0.41^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~346~^3.36^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~347~^1.14^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~418~^0.00^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~573~^0.00^0^^~4~^~BFSN~^~18364~^^^^^^^^^~04/01/2013~ -~28286~^~578~^0.00^0^^~4~^~BFPN~^~18364~^^^^^^^^^~04/01/2013~ -~28287~^~203~^10.20^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~204~^6.70^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~205~^46.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~207~^1.99^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~209~^36.00^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28287~^~211~^0.60^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~212~^0.80^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~213~^0.50^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~214~^1.50^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~255~^34.90^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~269~^3.40^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28287~^~303~^1.73^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~309~^1.24^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~323~^1.32^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~418~^0.00^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~573~^0.00^0^^~4~^~BFSN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~578~^0.00^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28288~^~203~^10.65^2^^~1~^~A~^^^1^10.20^11.10^^^^^~04/01/2013~ -~28288~^~204~^5.80^2^^~1~^~A~^^^1^2.43^9.17^^^^^~04/01/2013~ -~28288~^~205~^55.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~207~^1.73^2^^~1~^~A~^^^1^1.64^1.82^^^^^~04/01/2013~ -~28288~^~209~^46.95^2^^~1~^~A~^^^1^46.70^47.20^^^^^~04/01/2013~ -~28288~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28288~^~211~^0.40^2^^~1~^~A~^^^1^0.10^0.70^^^^^~04/01/2013~ -~28288~^~212~^1.15^2^^~1~^~A~^^^1^0.20^2.10^^^^^~04/01/2013~ -~28288~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28288~^~214~^2.00^2^^~1~^~A~^^^1^1.50^2.50^^^^^~04/01/2013~ -~28288~^~255~^26.05^2^^~1~^~A~^^^1^21.10^31.00^^^^^~04/01/2013~ -~28288~^~269~^3.55^2^^~1~^~A~^^^1^2.80^4.30^^^^^~04/01/2013~ -~28288~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28288~^~303~^3.90^2^^~1~^~A~^^^1^3.85^3.95^^^^^~04/01/2013~ -~28288~^~309~^0.88^2^^~1~^~A~^^^1^0.82^0.94^^^^^~04/01/2013~ -~28288~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28288~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28288~^~342~^0.14^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28288~^~343~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28288~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28288~^~345~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28288~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28288~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28288~^~418~^0.13^0^^~4~^~BFPN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~573~^0.00^0^^~4~^~BFSN~^~18342~^^^^^^^^^~04/01/2013~ -~28288~^~578~^0.00^0^^~4~^~BFPN~^~18342~^^^^^^^^^~04/01/2013~ -~28289~^~203~^3.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~204~^25.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~205~^64.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~207~^0.77^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~255~^5.70^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~269~^35.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~303~^3.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~309~^0.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~323~^2.42^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~418~^0.04^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~203~^8.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~204~^35.30^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~205~^52.90^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28290~^~207~^1.90^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~255~^1.80^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~269~^30.90^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~303~^2.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~309~^0.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~323~^4.32^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~203~^3.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~204~^24.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~205~^70.09^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28291~^~207~^0.81^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~269~^41.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~303~^1.57^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~309~^0.24^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~323~^0.93^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~203~^7.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~204~^20.40^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~205~^67.60^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~28292~^~207~^2.40^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~255~^2.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~269~^12.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~303~^2.59^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~309~^0.98^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~323~^1.75^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28293~^~203~^4.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~204~^23.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~205~^68.83^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28293~^~207~^1.57^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~269~^33.80^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~303~^2.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~309~^0.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~323~^1.81^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~418~^0.03^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~203~^4.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~204~^24.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~205~^67.87^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28294~^~207~^1.43^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~255~^2.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~269~^32.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~303~^3.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~309~^0.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~323~^2.79^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~203~^9.76^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~204~^9.76^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~205~^45.89^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28295~^~207~^4.45^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~255~^30.15^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~269~^2.44^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~303~^2.63^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~309~^1.92^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~323~^0.90^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~203~^3.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~204~^13.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~205~^69.37^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28296~^~207~^2.62^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~255~^11.31^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~269~^33.42^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~303~^4.01^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~309~^0.73^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~323~^1.13^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~418~^0.18^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~203~^3.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~204~^11.14^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~205~^74.30^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~28297~^~207~^1.19^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~255~^9.66^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~269~^29.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~303~^1.34^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~309~^0.49^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~323~^1.06^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~418~^0.22^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~203~^2.77^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~204~^9.68^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~205~^61.58^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28298~^~207~^1.14^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~255~^24.83^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~269~^38.73^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~303~^1.99^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~309~^0.46^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~323~^0.59^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~203~^2.94^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~204~^13.24^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~205~^76.17^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~207~^1.42^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~255~^6.23^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~269~^41.18^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~303~^3.18^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~309~^0.49^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~323~^1.68^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~203~^2.61^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~204~^18.29^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~205~^55.62^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28300~^~207~^1.37^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~255~^22.10^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~269~^31.36^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~303~^1.88^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~309~^0.67^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~323~^2.21^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~203~^10.34^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~204~^31.03^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~205~^50.52^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28301~^~207~^1.92^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~255~^6.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~303~^2.48^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~309~^1.05^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~323~^3.51^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~203~^5.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~204~^5.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~205~^77.96^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28302~^~207~^2.60^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~255~^8.01^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~269~^22.86^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~303~^3.09^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~309~^1.16^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~323~^0.86^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~203~^9.62^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~204~^16.03^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~205~^57.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28303~^~207~^2.79^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~255~^14.26^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~303~^3.46^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~309~^1.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~323~^1.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~418~^0.06^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~203~^7.14^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~204~^3.57^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~205~^49.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~28304~^~207~^1.74^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~255~^38.39^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~269~^4.29^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~303~^6.43^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~309~^1.17^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~323~^0.41^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~418~^1.71^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28305~^~203~^5.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~204~^1.90^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~205~^57.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~207~^1.72^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~255~^33.34^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~269~^8.57^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~303~^1.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~309~^0.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~323~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~418~^0.10^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28306~^~203~^11.25^2^^~1~^~A~^^^1^10.20^12.30^^^^^~04/01/2013~ -~28306~^~204~^7.45^2^^~1~^~A~^^^1^6.50^8.40^^^^^~04/01/2013~ -~28306~^~205~^46.36^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~207~^1.94^2^^~1~^~A~^^^1^1.79^2.09^^^^^~04/01/2013~ -~28306~^~209~^37.75^2^^~1~^~A~^^^1^37.40^38.10^^^^^~04/01/2013~ -~28306~^~210~^0.29^2^^~1~^~A~^^^1^0.07^0.50^^^^~1~^~04/01/2013~ -~28306~^~211~^0.25^2^^~1~^~A~^^^1^0.10^0.40^^^^^~04/01/2013~ -~28306~^~212~^0.54^2^^~1~^~A~^^^1^0.07^1.00^^^^~1~^~04/01/2013~ -~28306~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28306~^~214~^1.65^2^^~1~^~A~^^^1^1.50^1.80^^^^^~04/01/2013~ -~28306~^~255~^33.00^2^^~1~^~A~^^^1^31.90^34.10^^^^^~04/01/2013~ -~28306~^~269~^2.72^2^^~1~^~A~^^^1^2.47^2.97^^^^^~04/01/2013~ -~28306~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28306~^~303~^3.01^2^^~1~^~A~^^^1^2.84^3.18^^^^^~04/01/2013~ -~28306~^~309~^1.57^2^^~1~^~A~^^^1^1.30^1.84^^^^^~04/01/2013~ -~28306~^~323~^0.88^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~341~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~342~^0.89^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~343~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~344~^0.48^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~345~^2.13^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~346~^0.68^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~347~^0.32^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~203~^9.62^2^^~1~^~A~^^^1^9.41^9.84^^^^^~04/01/2013~ -~28307~^~204~^5.65^2^^~1~^~A~^^^1^5.00^6.30^^^^^~04/01/2013~ -~28307~^~205~^50.43^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~207~^1.69^2^^~1~^~A~^^^1^1.58^1.81^^^^^~04/01/2013~ -~28307~^~209~^42.75^2^^~1~^~A~^^^1^42.20^43.30^^^^^~04/01/2013~ -~28307~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28307~^~211~^0.65^2^^~1~^~A~^^^1^0.60^0.70^^^^^~04/01/2013~ -~28307~^~212~^0.85^2^^~1~^~A~^^^1^0.80^0.90^^^^^~04/01/2013~ -~28307~^~213~^0.25^2^^~1~^~A~^^^1^0.00^0.50^^^^~1~^~04/01/2013~ -~28307~^~214~^1.80^2^^~1~^~A~^^^1^1.50^2.10^^^^^~04/01/2013~ -~28307~^~255~^32.60^2^^~1~^~A~^^^1^31.90^33.30^^^^^~04/01/2013~ -~28307~^~269~^3.55^2^^~1~^~A~^^^1^2.90^4.20^^^^^~04/01/2013~ -~28307~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28307~^~303~^3.25^2^^~1~^~A~^^^1^2.51^4.00^^^^^~04/01/2013~ -~28307~^~309~^0.81^2^^~1~^~A~^^^1^0.81^0.82^^^^^~04/01/2013~ -~28307~^~323~^0.79^2^^~1~^~A~^^^1^0.43^1.15^^^^^~04/01/2013~ -~28307~^~341~^0.13^2^^~1~^~A~^^^1^0.09^0.17^^^^^~04/01/2013~ -~28307~^~342~^1.41^2^^~1~^~A~^^^1^1.27^1.56^^^^^~04/01/2013~ -~28307~^~343~^0.42^2^^~1~^~A~^^^1^0.13^0.71^^^^^~04/01/2013~ -~28307~^~344~^0.11^2^^~1~^~A~^^^1^0.00^0.22^^^^~1~^~04/01/2013~ -~28307~^~345~^0.69^2^^~1~^~A~^^^1^0.29^1.10^^^^^~04/01/2013~ -~28307~^~346~^0.12^2^^~1~^~A~^^^1^0.00^0.23^^^^~1~^~04/01/2013~ -~28307~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~28308~^~203~^7.29^5^0.05^~1~^~A~^^^1^7.10^7.40^4^7.14^7.44^~2, 3~^~05/01/2014~ -~28308~^~204~^17.84^5^0.36^~1~^~A~^^^1^16.80^19.00^4^16.83^18.84^~2, 3~^~05/01/2014~ -~28308~^~205~^68.37^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~207~^3.77^5^0.51^~1~^~A~^^^1^2.60^5.54^4^2.33^5.20^~2, 3~^~05/01/2014~ -~28308~^~209~^52.60^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~28308~^~210~^9.70^3^0.11^~1~^~A~^^^1^9.57^9.93^2^9.21^10.19^~2, 3~^~05/01/2014~ -~28308~^~211~^0.24^3^0.02^~1~^~A~^^^1^0.18^0.28^2^0.11^0.36^~1, 2, 3~^~05/01/2014~ -~28308~^~212~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~214~^0.30^3^0.11^~1~^~A~^^^1^0.18^0.53^2^-0.19^0.79^~1, 2, 3~^~05/01/2014~ -~28308~^~255~^2.73^5^0.13^~1~^~A~^^^1^2.42^3.22^4^2.34^3.11^~2, 3~^~05/01/2014~ -~28308~^~269~^10.43^3^0.24^~1~^~A~^^^1^10.16^10.92^2^9.36^11.49^~2, 3~^~05/01/2014~ -~28308~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~303~^3.65^5^0.08^~1~^~A~^^^1^3.41^3.93^4^3.41^3.89^~2, 3~^~05/01/2014~ -~28308~^~309~^1.11^5^9.0e-03^~1~^~A~^^^1^1.09^1.13^4^1.08^1.13^~2, 3~^~05/01/2014~ -~28308~^~323~^2.90^3^0.13^~1~^~A~^^^1^2.70^3.17^2^2.30^3.49^~2, 3~^~05/01/2014~ -~28308~^~341~^0.42^3^0.05^~1~^~A~^^^1^0.31^0.51^2^0.16^0.66^~2, 3~^~05/01/2014~ -~28308~^~342~^9.98^3^0.83^~1~^~A~^^^1^8.32^10.88^2^6.40^13.55^~2, 3~^~05/01/2014~ -~28308~^~343~^2.72^3^0.12^~1~^~A~^^^1^2.47^2.88^2^2.17^3.25^~2, 3~^~05/01/2014~ -~28308~^~344~^0.23^3^7.0e-03^~1~^~A~^^^1^0.22^0.24^2^0.20^0.26^~2, 3~^~05/01/2014~ -~28308~^~345~^1.48^3^0.09^~1~^~A~^^^1^1.29^1.60^2^1.06^1.89^~2, 3~^~05/01/2014~ -~28308~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~418~^0.00^0^^~4~^~BFPN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~573~^0.00^0^^~4~^~BFSN~^~18232~^^^^^^^^^~03/01/2015~ -~28308~^~578~^0.00^0^^~4~^~BFPN~^~18232~^^^^^^^^^~03/01/2015~ -~28309~^~203~^3.02^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~204~^22.55^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~205~^61.22^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~207~^1.71^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~255~^11.50^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~269~^45.16^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~303~^0.82^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~309~^0.73^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~323~^0.19^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28310~^~203~^5.37^12^0.02^~1~^~A~^^^1^5.25^5.50^7^5.32^5.41^~2, 3~^~06/01/2015~ -~28310~^~204~^14.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~205~^75.99^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~207~^1.04^12^0.01^~1~^~A~^^^1^0.84^1.20^10^1.00^1.07^~2, 3~^~06/01/2015~ -~28310~^~209~^40.47^6^0.25^~1~^~A~^^^1^36.00^43.90^3^39.65^41.27^~2, 3~^~06/01/2015~ -~28310~^~210~^20.99^6^0.21^~1~^~A~^^^1^19.46^23.56^2^20.12^21.86^~2, 3~^~06/01/2015~ -~28310~^~211~^0.36^6^0.01^~1~^~A~^^^1^0.27^0.43^4^0.31^0.40^~2, 3~^~06/01/2015~ -~28310~^~212~^0.30^6^0.01^~1~^~A~^^^1^0.18^0.36^3^0.25^0.33^~1, 2, 3~^~06/01/2015~ -~28310~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28310~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28310~^~255~^3.60^12^0.11^~1~^~A~^^^1^2.74^4.83^10^3.34^3.84^~2, 3~^~06/01/2015~ -~28310~^~269~^21.65^6^0.19^~1~^~A~^^^1^20.15^24.01^2^20.89^22.41^~2, 3~^~06/01/2015~ -~28310~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28310~^~303~^2.98^12^0.02^~1~^~A~^^^1^2.30^3.54^8^2.93^3.03^~2, 3~^~06/01/2015~ -~28310~^~309~^0.49^12^0.02^~1~^~A~^^^1^0.41^0.72^8^0.43^0.53^~2, 3~^~06/01/2015~ -~28310~^~323~^2.44^6^0.07^~1~^~A~^^^1^1.56^3.13^4^2.22^2.65^~2, 3~^~06/01/2015~ -~28310~^~341~^0.26^6^0.02^~1~^~A~^^^1^0.19^0.33^3^0.19^0.32^~2, 3~^~06/01/2015~ -~28310~^~342~^9.79^6^0.10^~1~^~A~^^^1^7.27^11.89^4^9.49^10.09^~2, 3~^~06/01/2015~ -~28310~^~343~^3.44^6^0.10^~1~^~A~^^^1^2.34^4.36^4^3.15^3.72^~2, 3~^~06/01/2015~ -~28310~^~344~^0.36^6^0.01^~1~^~A~^^^1^0.22^0.52^2^0.29^0.43^~2, 3~^~06/01/2015~ -~28310~^~345~^0.74^6^0.08^~1~^~A~^^^1^0.54^0.94^4^0.50^0.97^~2, 3~^~06/01/2015~ -~28310~^~346~^0.51^6^0.04^~1~^~A~^^^1^0.32^0.69^4^0.38^0.63^~2, 3~^~06/01/2015~ -~28310~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28310~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~203~^3.45^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~204~^27.59^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~205~^65.99^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~207~^1.24^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~255~^1.73^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~269~^51.72^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~303~^1.24^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~309~^0.61^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~323~^2.16^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~418~^0.15^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28312~^~203~^11.69^11^0.23^~1~^~A~^^^1^10.56^13.06^6^11.10^12.26^~2, 3~^~06/01/2015~ -~28312~^~204~^3.61^11^0.30^~1~^~A~^^^1^1.80^5.12^9^2.92^4.30^~2, 3~^~06/01/2015~ -~28312~^~205~^47.31^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~207~^2.16^11^0.05^~1~^~A~^^^1^1.81^2.55^8^2.03^2.28^~2, 3~^~06/01/2015~ -~28312~^~209~^31.38^9^1.02^~1~^~A~^^^1^24.90^37.70^7^28.95^33.80^~2, 3~^~06/01/2015~ -~28312~^~210~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~211~^2.30^9^0.14^~1~^~A~^^^1^1.80^2.83^7^1.95^2.63^~2, 3~^~06/01/2015~ -~28312~^~212~^2.99^9^0.09^~1~^~A~^^^1^2.46^3.37^6^2.75^3.22^~2, 3~^~06/01/2015~ -~28312~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~214~^1.61^9^0.18^~1~^~A~^^^1^0.85^2.93^2^0.72^2.50^~2, 3~^~06/01/2015~ -~28312~^~255~^35.23^11^0.57^~1~^~A~^^^1^31.77^38.36^9^33.91^36.54^~2, 3~^~06/01/2015~ -~28312~^~269~^6.90^9^0.25^~1~^~A~^^^1^5.85^7.84^7^6.29^7.50^~2, 3~^~06/01/2015~ -~28312~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~303~^2.92^11^0.11^~1~^~A~^^^1^2.39^3.54^8^2.65^3.17^~2, 3~^~06/01/2015~ -~28312~^~309~^1.17^11^0.09^~1~^~A~^^^1^0.19^1.66^8^0.95^1.38^~1, 2, 3~^~06/01/2015~ -~28312~^~323~^0.40^2^^~1~^~A~^^^1^0.40^0.40^^^^^~06/01/2015~ -~28312~^~341~^0.13^2^^~1~^~A~^^^1^0.13^0.16^^^^^~06/01/2015~ -~28312~^~342~^1.44^2^^~1~^~A~^^^1^1.34^1.46^^^^^~06/01/2015~ -~28312~^~343~^0.35^2^^~1~^~A~^^^1^0.32^0.36^^^^^~06/01/2015~ -~28312~^~344~^0.11^2^^~1~^~A~^^^1^0.07^0.12^^^^^~06/01/2015~ -~28312~^~345~^0.84^2^^~1~^~A~^^^1^0.65^0.89^^^^^~06/01/2015~ -~28312~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28312~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28312~^~418~^0.19^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~573~^0.00^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28312~^~578~^0.00^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~203~^12.38^11^0.16^~1~^~A~^^^1^11.56^16.31^9^12.01^12.74^~2, 3~^~06/01/2015~ -~28313~^~204~^4.38^11^0.04^~1~^~A~^^^1^3.28^4.69^9^4.28^4.47^~2, 3~^~06/01/2015~ -~28313~^~205~^44.93^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~207~^2.39^11^9.0e-03^~1~^~A~^^^1^1.99^2.50^9^2.36^2.40^~2, 3~^~06/01/2015~ -~28313~^~209~^28.52^10^0.37^~1~^~A~^^^1^21.90^31.40^8^27.65^29.37^~2, 3~^~06/01/2015~ -~28313~^~210~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~211~^2.03^10^0.06^~1~^~A~^^^1^1.03^2.32^8^1.89^2.17^~2, 3~^~06/01/2015~ -~28313~^~212~^2.44^10^0.06^~1~^~A~^^^1^1.65^3.02^8^2.29^2.58^~2, 3~^~06/01/2015~ -~28313~^~213~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~214~^1.44^10^0.11^~1~^~A~^^^1^0.61^3.89^8^1.17^1.71^~2, 3~^~06/01/2015~ -~28313~^~255~^35.92^11^0.18^~1~^~A~^^^1^33.06^39.49^9^35.51^36.33^~2, 3~^~06/01/2015~ -~28313~^~269~^5.92^10^0.16^~1~^~A~^^^1^3.95^8.57^8^5.53^6.29^~2, 3~^~06/01/2015~ -~28313~^~287~^0.00^10^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~303~^2.42^11^0.06^~1~^~A~^^^1^1.20^3.42^9^2.27^2.56^~2, 3~^~06/01/2015~ -~28313~^~309~^1.71^11^0.03^~1~^~A~^^^1^0.91^1.99^9^1.63^1.79^~2, 3~^~06/01/2015~ -~28313~^~323~^0.41^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~341~^0.15^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~342~^1.22^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~343~^0.37^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28313~^~345~^0.87^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28313~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28313~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28313~^~418~^0.19^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~573~^0.00^0^^~4~^~BFFN~^~18350~^^^^^^^^^~06/01/2015~ -~28313~^~578~^0.00^0^^~4~^~BFNN~^~18350~^^^^^^^^^~06/01/2015~ -~28314~^~203~^8.33^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~204~^16.67^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~205~^63.49^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28314~^~207~^2.18^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~255~^9.33^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~269~^11.11^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~303~^3.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~309~^0.67^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~323~^1.86^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28315~^~203~^7.05^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~204~^5.29^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~205~^44.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28315~^~207~^1.34^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~255~^41.93^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~269~^14.11^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~303~^2.54^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~309~^0.49^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~323~^0.50^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~418~^0.05^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~203~^13.16^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~205~^33.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~207~^2.08^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~255~^50.88^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~269~^2.63^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~303~^1.89^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~309~^1.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~323~^0.34^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28317~^~203~^14.30^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~204~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~205~^36.82^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~207~^2.26^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~255~^46.61^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~269~^2.86^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~303~^2.06^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~309~^1.36^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~323~^0.36^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~418~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28318~^~203~^8.33^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~204~^1.04^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~205~^49.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~207~^1.72^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~255~^39.81^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~303~^0.75^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~309~^1.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~323~^0.30^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~203~^9.30^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~205~^54.52^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~207~^1.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~255~^34.52^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~269~^9.30^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~303~^4.19^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~309~^1.62^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~323~^0.24^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~203~^7.02^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~204~^1.75^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~205~^50.17^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28320~^~207~^1.59^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~255~^39.48^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~269~^1.75^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~303~^2.53^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~309~^0.97^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~323~^0.25^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28321~^~203~^9.30^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~204~^3.49^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~205~^46.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~207~^2.05^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~255~^38.67^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~269~^9.30^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~303~^2.59^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~309~^2.05^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~323~^0.33^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~203~^9.90^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~204~^1.24^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~205~^47.47^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~207~^1.99^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~255~^39.40^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~269~^8.66^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~303~^2.23^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~309~^1.52^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~323~^0.66^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28324~^~203~^10.53^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~204~^1.32^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~205~^74.11^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~207~^3.55^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~255~^10.50^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~269~^10.53^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~303~^7.11^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~309~^1.64^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~323~^0.27^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~203~^6.45^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~204~^16.13^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~205~^67.66^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~207~^1.63^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~255~^8.12^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~269~^12.90^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~303~^3.48^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~309~^1.94^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~323~^1.69^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~203~^14.12^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~204~^21.18^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~205~^54.59^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~207~^2.79^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~255~^7.32^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~269~^9.41^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~303~^3.07^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~309~^2.05^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~323~^2.63^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~203~^7.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~204~^7.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~205~^72.81^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~207~^1.90^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~255~^11.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~309~^0.65^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~323~^0.29^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~203~^2.94^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~204~^17.65^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~205~^63.52^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~207~^0.95^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~255~^14.95^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~269~^38.24^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~303~^1.06^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~309~^0.69^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~323~^1.84^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~203~^3.23^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~204~^19.35^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~205~^63.26^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~207~^1.14^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~255~^13.02^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~269~^40.32^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~303~^2.49^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~309~^0.67^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~323~^1.96^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~418~^0.07^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~203~^4.55^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~204~^18.18^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~205~^63.26^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~207~^1.74^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~255~^12.27^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~269~^40.91^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~303~^1.64^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~309~^1.11^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~323~^0.72^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~418~^0.04^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28331~^~203~^10.16^19^0.13^~1~^~A~^^^1^8.75^12.38^11^9.85^10.46^~2, 3~^~06/01/2015~ -~28331~^~204~^17.71^19^0.13^~1~^~A~^^^1^15.54^19.27^4^17.30^18.10^~2, 3~^~06/01/2015~ -~28331~^~205~^65.67^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~207~^3.04^19^0.02^~1~^~A~^^^1^2.62^3.69^7^2.97^3.10^~2, 3~^~06/01/2015~ -~28331~^~209~^60.22^11^0.90^~1~^~A~^^^1^55.00^63.10^2^56.64^63.80^~2, 3~^~06/01/2015~ -~28331~^~210~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~211~^0.30^11^0.01^~1~^~A~^^^1^0.00^0.94^3^0.24^0.35^~1, 2, 3~^~06/01/2015~ -~28331~^~212~^0.09^11^0.00^~1~^~A~^^^1^0.00^0.46^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~213~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~214~^0.79^11^0.04^~1~^~A~^^^1^0.43^1.18^4^0.67^0.90^~2, 3~^~06/01/2015~ -~28331~^~255~^3.42^19^0.06^~1~^~A~^^^1^3.01^3.79^3^3.17^3.66^~2, 3~^~06/01/2015~ -~28331~^~269~^1.18^11^0.05^~1~^~A~^^^1^0.61^2.40^5^1.04^1.31^~2, 3~^~06/01/2015~ -~28331~^~287~^0.00^11^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~303~^4.58^19^0.10^~1~^~A~^^^1^3.25^5.25^7^4.32^4.83^~2, 3~^~06/01/2015~ -~28331~^~309~^1.09^19^0.02^~1~^~A~^^^1^0.70^1.61^3^1.00^1.17^~2, 3~^~06/01/2015~ -~28331~^~323~^3.68^2^^~1~^~A~^^^1^3.63^3.73^1^^^^~06/01/2015~ -~28331~^~341~^0.17^2^^~1~^~A~^^^1^0.16^0.18^1^^^^~06/01/2015~ -~28331~^~342~^5.85^2^^~1~^~A~^^^1^5.67^6.03^1^^^^~06/01/2015~ -~28331~^~343~^0.10^2^^~1~^~A~^^^1^0.09^0.10^1^^^^~06/01/2015~ -~28331~^~344~^0.10^2^^~1~^~A~^^^1^0.09^0.10^1^^^^~06/01/2015~ -~28331~^~345~^0.83^2^^~1~^~A~^^^1^0.82^0.85^1^^^^~06/01/2015~ -~28331~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28331~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28332~^~203~^2.19^3^0.03^~1~^~A~^^^1^2.13^2.25^2^2.03^2.34^~2, 3~^~06/01/2015~ -~28332~^~204~^17.89^3^0.15^~1~^~A~^^^1^17.59^18.10^2^17.22^18.55^~2, 3~^~06/01/2015~ -~28332~^~205~^76.03^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~207~^1.06^3^0.02^~1~^~A~^^^1^1.02^1.11^2^0.93^1.17^~2, 3~^~06/01/2015~ -~28332~^~209~^24.30^2^^~1~^~A~^^^1^24.00^24.60^1^^^^~06/01/2015~ -~28332~^~210~^47.57^2^^~1~^~A~^^^1^47.30^47.85^1^^^^~06/01/2015~ -~28332~^~211~^1.00^2^^~1~^~A~^^^1^0.95^1.06^1^^^^~06/01/2015~ -~28332~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28332~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28332~^~214~^0.42^2^^~1~^~A~^^^1^0.18^0.66^1^^^~1~^~06/01/2015~ -~28332~^~255~^2.84^3^0.54^~1~^~A~^^^1^2.16^3.91^2^0.51^5.17^~2, 3~^~06/01/2015~ -~28332~^~269~^49.00^2^^~1~^~A~^^^1^48.91^49.09^1^^^^~06/01/2015~ -~28332~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28332~^~303~^2.81^3^0.13^~1~^~A~^^^1^2.59^3.06^2^2.22^3.39^~2, 3~^~06/01/2015~ -~28332~^~309~^0.66^3^0.01^~1~^~A~^^^1^0.64^0.68^2^0.61^0.70^~2, 3~^~06/01/2015~ -~28332~^~323~^2.31^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~418~^0.00^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~573~^0.00^0^^~4~^~BFFN~^~18166~^^^^^^^^^~06/01/2015~ -~28332~^~578~^0.00^0^^~4~^~BFNN~^~18166~^^^^^^^^^~06/01/2015~ -~28333~^~203~^4.06^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~204~^30.42^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~205~^62.82^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~207~^1.33^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~209~^21.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~210~^37.07^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~213~^3.92^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~255~^1.37^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~269~^40.99^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~303~^3.67^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~309~^0.78^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~06/01/2015~ -~28334~^~204~^24.18^3^0.56^~1~^~A~^^^1^23.28^25.21^2^21.77^26.59^~2, 3~^~06/01/2015~ -~28334~^~205~^74.39^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~207~^0.30^3^0.01^~1~^~A~^^^1^0.27^0.33^2^0.22^0.37^~2, 3~^~06/01/2015~ -~28334~^~209~^33.55^2^^~1~^~A~^^^1^33.00^34.10^1^^^^~06/01/2015~ -~28334~^~210~^42.31^2^^~1~^~A~^^^1^41.05^43.57^1^^^^~06/01/2015~ -~28334~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28334~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28334~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28334~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28334~^~255~^1.12^3^0.09^~1~^~A~^^^1^0.94^1.27^2^0.70^1.54^~2, 3~^~06/01/2015~ -~28334~^~269~^42.31^2^^~1~^~A~^^^1^41.05^43.57^1^^^^~06/01/2015~ -~28334~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28334~^~303~^0.18^3^0.05^~1~^~A~^^^1^0.12^0.30^2^-0.05^0.42^~2, 3~^~06/01/2015~ -~28334~^~309~^0.03^3^2.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.04^~2, 3~^~06/01/2015~ -~28334~^~323~^3.12^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~342~^1.17^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~343~^0.36^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~344~^3.28^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~345~^0.35^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~346~^4.79^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28334~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28335~^~203~^2.66^2^^~1~^~A~^^^1^2.19^3.13^1^^^^~06/01/2015~ -~28335~^~204~^20.47^2^^~1~^~A~^^^1^18.79^22.15^1^^^^~06/01/2015~ -~28335~^~205~^74.61^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~207~^0.59^2^^~1~^~A~^^^1^0.39^0.79^1^^^^~06/01/2015~ -~28335~^~209~^25.70^2^^~1~^~A~^^^1^23.40^28.00^1^^^^~06/01/2015~ -~28335~^~210~^45.41^2^^~1~^~A~^^^1^42.94^47.89^1^^^^~06/01/2015~ -~28335~^~211~^0.88^2^^~1~^~A~^^^1^0.49^1.28^1^^^^~06/01/2015~ -~28335~^~212~^0.38^2^^~1~^~A~^^^1^0.26^0.51^1^^^^~06/01/2015~ -~28335~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28335~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28335~^~255~^1.67^2^^~1~^~A~^^^1^1.29^2.06^1^^^^~06/01/2015~ -~28335~^~269~^46.68^2^^~1~^~A~^^^1^43.94^49.43^1^^^^~06/01/2015~ -~28335~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28335~^~303~^0.34^2^^~1~^~A~^^^1^0.23^0.45^1^^^^~06/01/2015~ -~28335~^~309~^0.23^2^^~1~^~A~^^^1^0.18^0.29^1^^^^~06/01/2015~ -~28336~^~203~^3.13^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~204~^10.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~205~^52.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~207~^1.68^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~209~^33.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~211~^3.46^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~212~^4.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~255~^31.67^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~269~^8.36^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~309~^0.26^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28337~^~203~^4.31^3^0.50^~1~^~A~^^^1^3.81^5.31^2^2.16^6.46^~2, 3~^~06/01/2015~ -~28337~^~204~^5.24^3^0.77^~1~^~A~^^^1^4.34^6.78^2^1.91^8.56^~2, 3~^~06/01/2015~ -~28337~^~205~^45.78^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~207~^1.68^3^0.03^~1~^~A~^^^1^1.60^1.72^2^1.51^1.84^~2, 3~^~06/01/2015~ -~28337~^~209~^33.30^3^0.64^~1~^~A~^^^1^32.30^34.50^2^30.53^36.06^~2, 3~^~06/01/2015~ -~28337~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28337~^~211~^0.99^3^0.05^~1~^~A~^^^1^0.93^1.09^2^0.76^1.20^~2, 3~^~06/01/2015~ -~28337~^~212~^1.01^3^0.22^~1~^~A~^^^1^0.78^1.46^2^0.05^1.97^~2, 3~^~06/01/2015~ -~28337~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28337~^~214~^1.53^3^0.08^~1~^~A~^^^1^1.40^1.68^2^1.18^1.88^~2, 3~^~06/01/2015~ -~28337~^~255~^42.99^3^0.91^~1~^~A~^^^1^41.22^44.29^2^39.04^46.92^~2, 3~^~06/01/2015~ -~28337~^~269~^3.53^3^0.23^~1~^~A~^^^1^3.11^3.92^2^2.52^4.54^~2, 3~^~06/01/2015~ -~28337~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28337~^~303~^2.63^3^0.54^~1~^~A~^^^1^1.54^3.29^2^0.26^4.99^~2, 3~^~06/01/2015~ -~28337~^~309~^0.48^3^0.01^~1~^~A~^^^1^0.46^0.49^2^0.43^0.51^~2, 3~^~06/01/2015~ -~28337~^~323~^0.60^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28337~^~341~^0.15^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28337~^~342~^4.61^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28337~^~343~^2.01^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28337~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28337~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28337~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28337~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28337~^~418~^0.00^0^^~4~^~BFNN~^~18069~^^^^^^^^^~06/01/2015~ -~28337~^~573~^0.00^0^^~4~^~BFFN~^~18069~^^^^^^^^^~06/01/2015~ -~28337~^~578~^0.00^0^^~4~^~BFNN~^~18069~^^^^^^^^^~06/01/2015~ -~28338~^~203~^5.40^3^0.10^~1~^~A~^^^1^5.19^5.50^2^4.94^5.84^~2, 3~^~06/01/2015~ -~28338~^~204~^8.02^3^0.08^~1~^~A~^^^1^7.89^8.17^2^7.66^8.36^~2, 3~^~06/01/2015~ -~28338~^~205~^51.15^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~207~^1.75^3^0.01^~1~^~A~^^^1^1.73^1.78^2^1.68^1.81^~2, 3~^~06/01/2015~ -~28338~^~209~^34.37^3^0.38^~1~^~A~^^^1^33.60^34.80^2^32.71^36.02^~2, 3~^~06/01/2015~ -~28338~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28338~^~211~^1.66^3^0.03^~1~^~A~^^^1^1.61^1.74^2^1.49^1.83^~2, 3~^~06/01/2015~ -~28338~^~212~^1.54^3^0.01^~1~^~A~^^^1^1.51^1.56^2^1.47^1.59^~2, 3~^~06/01/2015~ -~28338~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28338~^~214~^8.10^3^0.24^~1~^~A~^^^1^7.64^8.48^2^7.04^9.15^~2, 3~^~06/01/2015~ -~28338~^~255~^33.69^3^0.19^~1~^~A~^^^1^33.32^33.96^2^32.86^34.51^~2, 3~^~06/01/2015~ -~28338~^~269~^11.30^3^0.20^~1~^~A~^^^1^10.94^11.66^2^10.40^12.19^~2, 3~^~06/01/2015~ -~28338~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28338~^~303~^0.53^3^0.02^~1~^~A~^^^1^0.50^0.57^2^0.43^0.63^~2, 3~^~06/01/2015~ -~28338~^~309~^0.51^3^0.01^~1~^~A~^^^1^0.48^0.52^2^0.44^0.56^~2, 3~^~06/01/2015~ -~28338~^~323~^1.61^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28338~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28338~^~342~^2.76^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28338~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28338~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28338~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28338~^~346~^0.83^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28338~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28339~^~203~^7.25^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~204~^9.34^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~205~^49.09^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~207~^1.96^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~209~^32.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~211~^1.61^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~212~^1.39^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~214~^6.81^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~255~^32.36^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~269~^9.81^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~309~^0.58^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~203~^7.99^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~204~^6.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~205~^55.10^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28340~^~207~^2.21^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~209~^40.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28340~^~211~^0.48^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~212~^0.35^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28340~^~214~^8.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~255~^28.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~269~^9.53^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28340~^~303~^0.78^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~309~^0.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~203~^3.34^2^^~1~^~A~^^^1^3.33^3.35^1^^^^~06/01/2015~ -~28341~^~204~^2.65^2^^~1~^~A~^^^1^2.60^2.70^1^^^^~06/01/2015~ -~28341~^~205~^50.47^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~207~^1.54^2^^~1~^~A~^^^1^1.43^1.65^1^^^^~06/01/2015~ -~28341~^~209~^32.05^2^^~1~^~A~^^^1^30.70^33.40^1^^^^~06/01/2015~ -~28341~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28341~^~211~^2.08^2^^~1~^~A~^^^1^2.06^2.11^1^^^^~06/01/2015~ -~28341~^~212~^2.06^2^^~1~^~A~^^^1^2.04^2.09^1^^^^~06/01/2015~ -~28341~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28341~^~214~^2.72^2^^~1~^~A~^^^1^2.42^3.02^1^^^^~06/01/2015~ -~28341~^~255~^42.00^2^^~1~^~A~^^^1^41.60^42.40^1^^^^~06/01/2015~ -~28341~^~269~^6.87^2^^~1~^~A~^^^1^6.57^7.17^1^^^^~06/01/2015~ -~28341~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28341~^~303~^3.57^2^^~1~^~A~^^^1^3.53^3.62^1^^^^~06/01/2015~ -~28341~^~309~^0.56^2^^~1~^~A~^^^1^0.56^0.57^1^^^^~06/01/2015~ -~28341~^~323~^0.18^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~418~^0.00^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~573~^0.00^0^^~4~^~BFFN~^~28337~^^^^^^^^^~06/01/2015~ -~28341~^~578~^0.00^0^^~4~^~BFNN~^~28337~^^^^^^^^^~06/01/2015~ -~28342~^~203~^5.65^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~204~^8.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~205~^40.24^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28342~^~207~^1.31^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~209~^34.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28342~^~211~^1.25^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~212~^1.55^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28342~^~214~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28342~^~255~^44.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~269~^2.98^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28342~^~303~^0.89^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~309~^0.77^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~323~^0.52^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28342~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28342~^~342~^2.71^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28342~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28342~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28342~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28342~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28342~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28343~^~203~^11.80^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~204~^11.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~205~^44.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28343~^~207~^2.41^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~209~^29.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~211~^0.52^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~212~^0.72^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~214~^2.96^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~255~^29.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~269~^4.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~303~^1.64^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~309~^1.35^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~323~^1.39^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~341~^0.08^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~342~^3.14^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28343~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28343~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28343~^~346~^0.21^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28344~^~203~^2.50^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~204~^15.41^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~205~^76.94^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~207~^2.67^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~209~^71.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~210~^3.20^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~211~^0.40^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~212~^0.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~255~^2.48^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~269~^3.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~303~^0.56^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~309~^0.44^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~203~^11.25^5^0.02^~1~^~A~^^^1^7.63^12.06^2^11.11^11.37^~2, 3~^~06/01/2015~ -~28345~^~204~^15.84^5^0.70^~1~^~A~^^^1^14.88^18.93^1^6.88^24.80^~2, 3~^~06/01/2015~ -~28345~^~205~^66.30^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~207~^3.02^5^0.01^~1~^~A~^^^1^2.59^3.73^1^2.81^3.23^~2, 3~^~06/01/2015~ -~28345~^~209~^54.64^2^^~1~^~A~^^^1^47.70^57.80^^^^^~06/01/2015~ -~28345~^~210~^0.86^2^^~1~^~A~^^^1^0.80^1.00^^^^^~06/01/2015~ -~28345~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28345~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28345~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28345~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28345~^~255~^3.59^5^0.07^~1~^~A~^^^1^2.40^4.29^1^2.69^4.48^~2, 3~^~06/01/2015~ -~28345~^~269~^0.86^2^^~1~^~A~^^^1^0.80^1.00^^^^^~06/01/2015~ -~28345~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28345~^~303~^2.83^5^0.11^~1~^~A~^^^1^1.93^3.17^1^1.31^4.34^~2, 3~^~06/01/2015~ -~28345~^~309~^2.64^5^0.01^~1~^~A~^^^1^1.72^2.95^1^2.51^2.76^~2, 3~^~06/01/2015~ -~28345~^~323~^1.50^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~418~^0.00^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~573~^0.00^0^^~4~^~BFFN~^~18232~^^^^^^^^^~06/01/2015~ -~28345~^~578~^0.00^0^^~4~^~BFNN~^~18232~^^^^^^^^^~06/01/2015~ -~28346~^~203~^2.72^8^0.14^~1~^~A~^^^1^2.19^3.38^7^2.37^3.06^~2, 3~^~06/01/2015~ -~28346~^~204~^8.84^8^0.31^~1~^~A~^^^1^7.97^10.07^7^8.09^9.58^~2, 3~^~06/01/2015~ -~28346~^~205~^43.05^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~207~^2.02^8^0.03^~1~^~A~^^^1^1.91^2.14^7^1.95^2.09^~2, 3~^~06/01/2015~ -~28346~^~209~^39.90^2^^~1~^~A~^^^1^38.60^41.20^1^^^^~06/01/2015~ -~28346~^~210~^0.79^2^^~1~^~A~^^^1^0.77^0.82^1^^^^~06/01/2015~ -~28346~^~211~^0.43^2^^~1~^~A~^^^1^0.42^0.44^1^^^^~06/01/2015~ -~28346~^~212~^0.50^2^^~1~^~A~^^^1^0.50^0.51^1^^^^~06/01/2015~ -~28346~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28346~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28346~^~255~^43.37^8^1.41^~1~^~A~^^^1^37.81^47.30^7^40.03^46.70^~2, 3~^~06/01/2015~ -~28346~^~269~^1.73^2^^~1~^~A~^^^1^1.70^1.76^1^^^^~06/01/2015~ -~28346~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~28346~^~303~^0.63^5^0.10^~1~^~A~^^^1^0.47^1.02^4^0.34^0.91^~2, 3~^~06/01/2015~ -~28346~^~309~^0.50^5^0.02^~1~^~A~^^^1^0.40^0.56^4^0.41^0.57^~2, 3~^~06/01/2015~ -~28346~^~323~^0.96^0^^~4~^~BFFN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~418~^2.68^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28346~^~573~^0.00^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28346~^~578~^2.46^0^^~4~^~BFNN~^~18365~^^^^^^^^^~06/01/2015~ -~28347~^~203~^3.31^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~204~^4.55^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~205~^40.32^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~207~^1.58^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~209~^36.90^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~210~^3.29^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~211~^0.34^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~212~^0.43^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~255~^50.24^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~269~^4.06^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~303~^0.70^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~309~^0.55^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~323~^0.42^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~418~^2.83^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~573~^0.00^0^^~4~^~BFFN~^~18288~^^^^^^^^^~06/01/2015~ -~28347~^~578~^0.00^0^^~4~^~BFNN~^~18288~^^^^^^^^^~06/01/2015~ -~28348~^~203~^10.04^6^0.04^~1~^~A~^^^1^9.91^10.20^5^9.93^10.15^~2, 3~^~06/01/2015~ -~28348~^~204~^7.37^6^0.18^~1~^~A~^^^1^6.60^7.90^5^6.89^7.84^~2, 3~^~06/01/2015~ -~28348~^~205~^53.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~207~^1.18^6^0.02^~1~^~A~^^^1^1.13^1.26^5^1.12^1.23^~2, 3~^~06/01/2015~ -~28348~^~209~^27.53^3^0.86^~1~^~A~^^^1^25.80^28.50^2^23.79^31.27^~2, 3~^~06/01/2015~ -~28348~^~210~^3.07^3^0.69^~1~^~A~^^^1^1.70^3.94^2^0.08^6.06^~2, 3~^~06/01/2015~ -~28348~^~211~^4.81^3^0.29^~1~^~A~^^^1^4.34^5.35^2^3.54^6.07^~2, 3~^~06/01/2015~ -~28348~^~212~^5.40^3^0.32^~1~^~A~^^^1^4.93^6.01^2^4.01^6.77^~2, 3~^~06/01/2015~ -~28348~^~213~^1.06^3^0.01^~1~^~A~^^^1^1.04^1.09^2^1.00^1.12^~2, 3~^~06/01/2015~ -~28348~^~214~^1.04^3^0.14^~1~^~A~^^^1^0.90^1.32^2^0.43^1.64^~2, 3~^~06/01/2015~ -~28348~^~255~^27.83^6^0.17^~1~^~A~^^^1^27.40^28.50^5^27.38^28.28^~2, 3~^~06/01/2015~ -~28348~^~269~^15.38^3^0.09^~1~^~A~^^^1^15.20^15.50^2^14.98^15.77^~2, 3~^~06/01/2015~ -~28348~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~303~^2.74^6^0.08^~1~^~A~^^^1^2.48^3.03^5^2.51^2.95^~2, 3~^~06/01/2015~ -~28348~^~309~^0.85^6^0.01^~1~^~A~^^^1^0.79^0.89^5^0.80^0.89^~2, 3~^~06/01/2015~ -~28348~^~323~^0.38^3^0.01^~1~^~A~^^^1^0.35^0.41^2^0.31^0.44^~2, 3~^~06/01/2015~ -~28348~^~341~^0.10^3^9.0e-03^~1~^~A~^^^1^0.08^0.11^2^0.06^0.14^~2, 3~^~06/01/2015~ -~28348~^~342~^0.20^3^3.0e-03^~1~^~A~^^^1^0.20^0.21^2^0.19^0.21^~2, 3~^~06/01/2015~ -~28348~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~345~^0.52^3^0.03^~1~^~A~^^^1^0.47^0.58^2^0.38^0.65^~2, 3~^~06/01/2015~ -~28348~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~418~^0.21^2^^~1~^~A~^^^1^0.19^0.23^1^^^^~06/01/2015~ -~28348~^~573~^0.00^0^^~4~^~BFFN~^~18342~^^^^^^^^^~06/01/2015~ -~28348~^~578~^0.00^0^^~4~^~BFNN~^~18342~^^^^^^^^^~06/01/2015~ -~28349~^~203~^4.02^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~204~^10.04^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~205~^64.62^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~207~^1.86^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~255~^19.46^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~269~^32.14^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~303~^1.45^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~309~^0.61^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~323~^1.10^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~203~^10.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~204~^22.50^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~205~^51.08^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~207~^1.32^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~255~^15.09^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~269~^25.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~303~^0.90^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28350~^~309~^0.90^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~323~^8.87^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~418~^0.40^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~203~^7.05^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~204~^10.58^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~205~^70.54^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~207~^2.03^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~255~^9.79^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~269~^21.16^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~303~^0.00^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~309~^0.61^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~323~^0.45^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~418~^0.19^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~203~^4.17^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~204~^10.42^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~205~^78.16^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~207~^1.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~255~^6.25^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~269~^37.50^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~303~^2.25^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~309~^0.37^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~323~^1.31^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28354~^~203~^5.65^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~204~^8.20^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~205~^40.24^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28354~^~207~^1.31^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~209~^34.30^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~211~^1.25^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~212~^1.55^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~214~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~255~^44.60^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~269~^2.98^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~303~^0.89^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~309~^0.77^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~323~^0.52^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~342~^2.71^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28354~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~203~^10.91^2^^~1~^~A~^^^1^10.88^10.94^1^^^^~07/01/2015~ -~28355~^~204~^15.92^2^^~1~^~A~^^^1^14.88^16.96^1^^^^~07/01/2015~ -~28355~^~205~^67.18^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~207~^2.71^2^^~1~^~A~^^^1^2.68^2.73^1^^^^~07/01/2015~ -~28355~^~209~^57.80^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~210~^0.80^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~255~^3.29^2^^~1~^~A~^^^1^3.18^3.39^1^^^^~07/01/2015~ -~28355~^~269~^0.80^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~303~^2.68^2^^~1~^~A~^^^1^2.51^2.86^1^^^^~07/01/2015~ -~28355~^~309~^2.50^2^^~1~^~A~^^^1^2.49^2.52^1^^^^~07/01/2015~ -~28356~^~203~^2.19^3^0.03^~1~^~A~^^^1^2.13^2.25^2^2.03^2.34^~2, 3~^~07/01/2015~ -~28356~^~204~^17.89^3^0.15^~1~^~A~^^^1^17.59^18.10^2^17.22^18.55^~2, 3~^~07/01/2015~ -~28356~^~205~^76.03^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~207~^1.06^3^0.02^~1~^~A~^^^1^1.02^1.11^2^0.93^1.17^~2, 3~^~07/01/2015~ -~28356~^~209~^24.30^2^^~1~^~A~^^^1^24.00^24.60^1^^^^~07/01/2015~ -~28356~^~210~^47.57^2^^~1~^~A~^^^1^47.30^47.85^1^^^^~07/01/2015~ -~28356~^~211~^1.00^2^^~1~^~A~^^^1^0.95^1.06^1^^^^~07/01/2015~ -~28356~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28356~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28356~^~214~^0.42^2^^~1~^~A~^^^1^0.18^0.66^1^^^~1~^~07/01/2015~ -~28356~^~255~^2.84^3^0.54^~1~^~A~^^^1^2.16^3.91^2^0.51^5.17^~2, 3~^~07/01/2015~ -~28356~^~269~^49.00^2^^~1~^~A~^^^1^48.91^49.09^1^^^^~07/01/2015~ -~28356~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28356~^~303~^2.81^3^0.13^~1~^~A~^^^1^2.59^3.06^2^2.22^3.39^~2, 3~^~07/01/2015~ -~28356~^~309~^0.66^3^0.01^~1~^~A~^^^1^0.64^0.68^2^0.61^0.70^~2, 3~^~07/01/2015~ -~28357~^~203~^2.19^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~204~^18.79^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~205~^77.34^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~207~^0.39^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~209~^23.40^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~210~^47.89^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~211~^1.28^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~212~^0.26^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~255~^1.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~269~^49.43^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~303~^0.23^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~309~^0.18^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~07/01/2015~ -~28358~^~204~^24.18^3^0.56^~1~^~A~^^^1^23.28^25.21^2^21.77^26.59^~2, 3~^~07/01/2015~ -~28358~^~205~^74.39^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~207~^0.30^3^0.01^~1~^~A~^^^1^0.27^0.33^2^0.22^0.37^~2, 3~^~07/01/2015~ -~28358~^~209~^33.55^2^^~1~^~A~^^^1^33.00^34.10^1^^^^~07/01/2015~ -~28358~^~210~^42.31^2^^~1~^~A~^^^1^41.05^43.57^1^^^^~07/01/2015~ -~28358~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28358~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28358~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28358~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28358~^~255~^1.12^3^0.09^~1~^~A~^^^1^0.94^1.27^2^0.70^1.54^~2, 3~^~07/01/2015~ -~28358~^~269~^42.31^2^^~1~^~A~^^^1^41.05^43.57^1^^^^~07/01/2015~ -~28358~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28358~^~303~^0.18^3^0.05^~1~^~A~^^^1^0.12^0.30^2^-0.05^0.42^~2, 3~^~07/01/2015~ -~28358~^~309~^0.03^3^2.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.02^0.04^~2, 3~^~07/01/2015~ -~28358~^~323~^3.12^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~342~^1.17^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~343~^0.36^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~344~^3.28^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~345~^0.35^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~346~^4.79^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~203~^4.06^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~204~^30.42^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~205~^62.82^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~207~^1.33^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~209~^21.20^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~210~^37.07^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~213~^3.92^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~255~^1.37^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~269~^40.99^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~303~^3.67^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~309~^0.78^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~203~^12.06^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~204~^15.63^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~205~^64.29^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28360~^~207~^3.73^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~209~^47.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~210~^1.00^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~255~^4.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~269~^1.00^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~303~^3.17^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~309~^2.95^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28361~^~203~^11.71^3^0.33^~1~^~A~^^^1^11.31^12.38^2^10.26^13.15^~2, 3~^~07/01/2015~ -~28361~^~204~^16.11^3^0.33^~1~^~A~^^^1^15.54^16.69^2^14.67^17.53^~2, 3~^~07/01/2015~ -~28361~^~205~^66.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28361~^~207~^2.82^3^0.02^~1~^~A~^^^1^2.78^2.84^2^2.73^2.90^~2, 3~^~07/01/2015~ -~28361~^~209~^59.73^3^0.48^~1~^~A~^^^1^58.80^60.40^2^57.66^61.80^~2, 3~^~07/01/2015~ -~28361~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28361~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28361~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28361~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28361~^~214~^0.69^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28361~^~255~^3.17^3^0.08^~1~^~A~^^^1^3.01^3.30^2^2.80^3.53^~2, 3~^~07/01/2015~ -~28361~^~269~^0.69^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28361~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28361~^~303~^4.26^3^0.55^~1~^~A~^^^1^3.25^5.17^2^1.86^6.65^~2, 3~^~07/01/2015~ -~28361~^~309~^1.45^3^0.08^~1~^~A~^^^1^1.34^1.61^2^1.09^1.80^~2, 3~^~07/01/2015~ -~28362~^~203~^9.56^2^^~1~^~A~^^^1^9.25^9.88^1^^^^~07/01/2015~ -~28362~^~204~^16.82^2^^~1~^~A~^^^1^16.30^17.34^1^^^^~07/01/2015~ -~28362~^~205~^67.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28362~^~207~^2.91^2^^~1~^~A~^^^1^2.89^2.93^1^^^^~07/01/2015~ -~28362~^~209~^60.60^2^^~1~^~A~^^^1^60.00^61.20^1^^^^~07/01/2015~ -~28362~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28362~^~211~^0.94^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~212~^0.46^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28362~^~214~^1.00^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~255~^3.50^2^^~1~^~A~^^^1^3.22^3.79^1^^^^~07/01/2015~ -~28362~^~269~^2.40^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28362~^~303~^4.43^2^^~1~^~A~^^^1^4.11^4.75^1^^^^~07/01/2015~ -~28362~^~309~^0.81^2^^~1~^~A~^^^1^0.70^0.91^1^^^^~07/01/2015~ -~28363~^~203~^9.42^5^0.27^~1~^~A~^^^1^8.75^10.44^4^8.65^10.19^~2, 3~^~07/01/2015~ -~28363~^~204~^18.42^5^0.22^~1~^~A~^^^1^17.72^19.02^4^17.80^19.04^~2, 3~^~07/01/2015~ -~28363~^~205~^65.81^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~207~^2.87^5^0.05^~1~^~A~^^^1^2.66^3.01^4^2.70^3.03^~2, 3~^~07/01/2015~ -~28363~^~209~^59.37^3^2.36^~1~^~A~^^^1^55.00^63.10^2^49.21^69.51^~2, 3~^~07/01/2015~ -~28363~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28363~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28363~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28363~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28363~^~214~^1.03^3^0.11^~1~^~A~^^^1^0.80^1.18^2^0.52^1.54^~2, 3~^~07/01/2015~ -~28363~^~255~^3.47^5^0.11^~1~^~A~^^^1^3.11^3.69^4^3.16^3.78^~2, 3~^~07/01/2015~ -~28363~^~269~^1.03^3^0.11^~1~^~A~^^^1^0.80^1.18^2^0.52^1.54^~2, 3~^~07/01/2015~ -~28363~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28363~^~303~^4.73^5^0.18^~1~^~A~^^^1^4.28^5.25^4^4.21^5.23^~2, 3~^~07/01/2015~ -~28363~^~309~^0.97^5^0.01^~1~^~A~^^^1^0.91^1.00^4^0.92^1.01^~2, 3~^~07/01/2015~ -~28363~^~323~^3.68^2^^~1~^~A~^^^1^3.63^3.73^1^^^^~07/01/2015~ -~28363~^~341~^0.17^2^^~1~^~A~^^^1^0.16^0.18^1^^^^~07/01/2015~ -~28363~^~342~^5.85^2^^~1~^~A~^^^1^5.67^6.03^1^^^^~07/01/2015~ -~28363~^~343~^0.10^2^^~1~^~A~^^^1^0.09^0.10^1^^^^~07/01/2015~ -~28363~^~344~^0.10^2^^~1~^~A~^^^1^0.09^0.10^1^^^^~07/01/2015~ -~28363~^~345~^0.83^2^^~1~^~A~^^^1^0.82^0.85^1^^^^~07/01/2015~ -~28363~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28363~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28364~^~203~^11.16^6^0.30^~1~^~A~^^^1^10.13^12.38^5^10.37^11.93^~2, 3~^~07/01/2015~ -~28364~^~204~^17.29^6^0.22^~1~^~A~^^^1^16.57^17.96^5^16.72^17.86^~2, 3~^~07/01/2015~ -~28364~^~205~^64.70^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~207~^3.51^6^0.04^~1~^~A~^^^1^3.43^3.69^5^3.41^3.61^~2, 3~^~07/01/2015~ -~28364~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28364~^~211~^0.24^3^0.05^~1~^~A~^^^1^0.18^0.36^2^-9.0e-03^0.49^~1, 2, 3~^~07/01/2015~ -~28364~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28364~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28364~^~214~^0.59^3^0.08^~1~^~A~^^^1^0.43^0.71^2^0.23^0.94^~2, 3~^~07/01/2015~ -~28364~^~255~^3.33^6^0.08^~1~^~A~^^^1^3.15^3.63^5^3.11^3.55^~2, 3~^~07/01/2015~ -~28364~^~269~^0.83^3^0.13^~1~^~A~^^^1^0.61^1.07^2^0.26^1.39^~2, 3~^~07/01/2015~ -~28364~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28364~^~303~^4.45^6^0.15^~1~^~A~^^^1^4.09^4.98^5^4.06^4.84^~2, 3~^~07/01/2015~ -~28364~^~309~^1.32^6^0.04^~1~^~A~^^^1^1.18^1.43^5^1.20^1.44^~2, 3~^~07/01/2015~ -~28365~^~203~^9.67^3^0.26^~1~^~A~^^^1^9.38^10.19^2^8.54^10.78^~2, 3~^~07/01/2015~ -~28365~^~204~^18.93^3^0.21^~1~^~A~^^^1^18.54^19.27^2^18.01^19.83^~2, 3~^~07/01/2015~ -~28365~^~205~^65.11^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~207~^2.79^3^0.10^~1~^~A~^^^1^2.62^2.99^2^2.32^3.25^~2, 3~^~07/01/2015~ -~28365~^~209~^61.33^3^0.41^~1~^~A~^^^1^60.50^61.80^2^59.53^63.13^~2, 3~^~07/01/2015~ -~28365~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28365~^~211~^0.30^3^0.05^~1~^~A~^^^1^0.18^0.36^2^0.05^0.55^~1, 2, 3~^~07/01/2015~ -~28365~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28365~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28365~^~214~^0.56^3^0.06^~1~^~A~^^^1^0.49^0.68^2^0.30^0.81^~2, 3~^~07/01/2015~ -~28365~^~255~^3.51^3^0.08^~1~^~A~^^^1^3.38^3.67^2^3.13^3.87^~2, 3~^~07/01/2015~ -~28365~^~269~^0.86^3^0.10^~1~^~A~^^^1^0.67^1.04^2^0.40^1.31^~2, 3~^~07/01/2015~ -~28365~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28365~^~303~^4.87^3^0.19^~1~^~A~^^^1^4.50^5.15^2^4.04^5.69^~2, 3~^~07/01/2015~ -~28365~^~309~^1.04^3^0.04^~1~^~A~^^^1^0.96^1.13^2^0.83^1.25^~2, 3~^~07/01/2015~ -~28366~^~203~^3.13^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~204~^10.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~205~^52.83^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~207~^1.68^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~209~^33.00^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~211~^3.46^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~212~^4.90^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~255~^31.67^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~269~^8.36^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~309~^0.26^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~203~^3.13^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~204~^22.15^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~205~^71.88^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~207~^0.79^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~209~^28.00^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~210~^42.94^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~211~^0.49^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~212~^0.51^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~255~^2.06^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~269~^43.94^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~303~^0.45^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~309~^0.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28368~^~203~^3.34^2^^~1~^~A~^^^1^3.33^3.35^1^^^^~07/01/2015~ -~28368~^~204~^2.65^2^^~1~^~A~^^^1^2.60^2.70^1^^^^~07/01/2015~ -~28368~^~205~^50.47^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~207~^1.54^2^^~1~^~A~^^^1^1.43^1.65^1^^^^~07/01/2015~ -~28368~^~209~^32.05^2^^~1~^~A~^^^1^30.70^33.40^1^^^^~07/01/2015~ -~28368~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28368~^~211~^2.08^2^^~1~^~A~^^^1^2.06^2.11^1^^^^~07/01/2015~ -~28368~^~212~^2.06^2^^~1~^~A~^^^1^2.04^2.09^1^^^^~07/01/2015~ -~28368~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28368~^~214~^2.72^2^^~1~^~A~^^^1^2.42^3.02^1^^^^~07/01/2015~ -~28368~^~255~^42.00^2^^~1~^~A~^^^1^41.60^42.40^1^^^^~07/01/2015~ -~28368~^~269~^6.87^2^^~1~^~A~^^^1^6.57^7.17^1^^^^~07/01/2015~ -~28368~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28368~^~303~^3.57^2^^~1~^~A~^^^1^3.53^3.62^1^^^^~07/01/2015~ -~28368~^~309~^0.56^2^^~1~^~A~^^^1^0.56^0.57^1^^^^~07/01/2015~ -~28369~^~203~^3.81^2^^~1~^~A~^^^1^3.81^3.81^^^^^~07/01/2015~ -~28369~^~204~^4.47^2^^~1~^~A~^^^1^4.34^4.60^1^^^^~07/01/2015~ -~28369~^~205~^46.13^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~207~^1.72^2^^~1~^~A~^^^1^1.71^1.72^1^^^^~07/01/2015~ -~28369~^~209~^32.70^2^^~1~^~A~^^^1^32.30^33.10^1^^^^~07/01/2015~ -~28369~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28369~^~211~^1.01^2^^~1~^~A~^^^1^0.93^1.09^1^^^^~07/01/2015~ -~28369~^~212~^0.79^2^^~1~^~A~^^^1^0.78^0.80^1^^^^~07/01/2015~ -~28369~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28369~^~214~^1.54^2^^~1~^~A~^^^1^1.40^1.68^1^^^^~07/01/2015~ -~28369~^~255~^43.87^2^^~1~^~A~^^^1^43.45^44.29^1^^^^~07/01/2015~ -~28369~^~269~^3.34^2^^~1~^~A~^^^1^3.11^3.57^1^^^^~07/01/2015~ -~28369~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28369~^~303~^3.17^2^^~1~^~A~^^^1^3.06^3.29^1^^^^~07/01/2015~ -~28369~^~309~^0.47^2^^~1~^~A~^^^1^0.46^0.49^1^^^^~07/01/2015~ -~28370~^~203~^7.99^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~204~^6.40^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~205~^55.10^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28370~^~207~^2.21^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~209~^40.30^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28370~^~211~^0.48^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~212~^0.35^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28370~^~214~^8.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~255~^28.30^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~269~^9.53^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28370~^~303~^0.78^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~309~^0.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~203~^5.40^3^0.10^~1~^~A~^^^1^5.19^5.50^2^4.94^5.84^~2, 3~^~07/01/2015~ -~28371~^~204~^8.02^3^0.08^~1~^~A~^^^1^7.89^8.17^2^7.66^8.36^~2, 3~^~07/01/2015~ -~28371~^~205~^51.15^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~207~^1.75^3^0.01^~1~^~A~^^^1^1.73^1.78^2^1.68^1.81^~2, 3~^~07/01/2015~ -~28371~^~209~^34.37^3^0.38^~1~^~A~^^^1^33.60^34.80^2^32.71^36.02^~2, 3~^~07/01/2015~ -~28371~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28371~^~211~^1.66^3^0.03^~1~^~A~^^^1^1.61^1.74^2^1.49^1.83^~2, 3~^~07/01/2015~ -~28371~^~212~^1.54^3^0.01^~1~^~A~^^^1^1.51^1.56^2^1.47^1.59^~2, 3~^~07/01/2015~ -~28371~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28371~^~214~^8.10^3^0.24^~1~^~A~^^^1^7.64^8.48^2^7.04^9.15^~2, 3~^~07/01/2015~ -~28371~^~255~^33.69^3^0.19^~1~^~A~^^^1^33.32^33.96^2^32.86^34.51^~2, 3~^~07/01/2015~ -~28371~^~269~^11.30^3^0.20^~1~^~A~^^^1^10.94^11.66^2^10.40^12.19^~2, 3~^~07/01/2015~ -~28371~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~28371~^~303~^0.53^3^0.02^~1~^~A~^^^1^0.50^0.57^2^0.43^0.63^~2, 3~^~07/01/2015~ -~28371~^~309~^0.51^3^0.01^~1~^~A~^^^1^0.48^0.52^2^0.44^0.56^~2, 3~^~07/01/2015~ -~28371~^~323~^1.61^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28371~^~342~^2.76^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28371~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28371~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28371~^~346~^0.83^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~203~^7.25^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~204~^9.34^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~205~^49.09^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~207~^1.96^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~209~^32.50^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~211~^1.61^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~212~^1.39^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~214~^6.81^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~255~^32.36^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~269~^9.81^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~303~^0.76^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~309~^0.58^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~203~^11.80^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~204~^11.60^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~205~^44.29^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~207~^2.41^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~209~^29.30^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~211~^0.52^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~212~^0.72^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~214~^2.96^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~255~^29.90^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~269~^4.20^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~303~^1.64^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~309~^1.35^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~323~^1.39^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~341~^0.08^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~342~^3.14^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~346~^0.21^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~203~^3.31^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~204~^4.55^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~205~^40.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~207~^1.58^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~209~^36.90^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~210~^3.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~211~^0.34^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~212~^0.43^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~255~^50.24^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~269~^4.06^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~303~^0.70^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~309~^0.55^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28375~^~203~^2.99^5^0.10^~1~^~A~^^^1^2.81^3.38^4^2.71^3.26^~2, 3~^~07/01/2015~ -~28375~^~204~^8.22^5^0.12^~1~^~A~^^^1^7.97^8.69^4^7.86^8.56^~2, 3~^~07/01/2015~ -~28375~^~205~^40.54^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~207~^2.04^5^0.02^~1~^~A~^^^1^1.96^2.10^4^1.97^2.10^~2, 3~^~07/01/2015~ -~28375~^~210~^0.79^2^^~1~^~A~^^^1^0.77^0.82^1^^^^~07/01/2015~ -~28375~^~211~^0.43^2^^~1~^~A~^^^1^0.42^0.44^1^^^^~07/01/2015~ -~28375~^~212~^0.50^2^^~1~^~A~^^^1^0.50^0.51^1^^^^~07/01/2015~ -~28375~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28375~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28375~^~255~^46.22^5^0.32^~1~^~A~^^^1^45.43^47.30^4^45.30^47.12^~2, 3~^~07/01/2015~ -~28375~^~269~^1.73^2^^~1~^~A~^^^1^1.70^1.76^1^^^^~07/01/2015~ -~28375~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~28375~^~303~^0.56^3^0.05^~1~^~A~^^^1^0.48^0.66^2^0.32^0.79^~2, 3~^~07/01/2015~ -~28375~^~309~^0.54^3^0.01^~1~^~A~^^^1^0.51^0.56^2^0.47^0.59^~2, 3~^~07/01/2015~ -~28376~^~203~^7.63^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~204~^18.93^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~205~^67.57^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28376~^~207~^2.79^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~255~^3.09^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~303~^1.94^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~309~^1.72^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28397~^~203~^13.36^4^0.81^~1~^~A~^^^1^11.94^15.69^3^10.75^15.95^~2, 3~^~03/01/2007~ -~28397~^~204~^4.23^4^0.56^~1~^~A~^^^1^3.44^5.87^3^2.43^6.01^~2, 3~^~03/01/2007~ -~28397~^~205~^43.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~207~^2.13^4^0.07^~1~^~A~^^^1^1.95^2.31^3^1.89^2.37^~2, 3~^~03/01/2007~ -~28397~^~209~^25.67^4^1.59^~1~^~A~^^^1^22.80^30.20^3^20.61^30.73^~2, 3~^~07/01/2012~ -~28397~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~211~^1.69^4^0.27^~1~^~A~^^^1^1.01^2.32^3^0.81^2.57^~2, 3~^~03/01/2007~ -~28397~^~212~^2.45^4^0.24^~1~^~A~^^^1^1.94^3.09^3^1.68^3.22^~2, 3~^~03/01/2007~ -~28397~^~213~^0.57^4^0.01^~1~^~A~^^^1^0.54^0.60^3^0.51^0.62^~2, 3~^~03/01/2007~ -~28397~^~214~^1.67^4^0.24^~1~^~A~^^^1^1.04^2.12^3^0.89^2.44^~2, 3~^~03/01/2007~ -~28397~^~255~^36.94^4^0.91^~1~^~A~^^^1^35.63^39.64^3^34.01^39.86^~2, 3~^~03/01/2007~ -~28397~^~269~^6.39^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~303~^2.50^4^0.05^~1~^~A~^^^1^2.40^2.60^3^2.31^2.68^~2, 3~^~03/01/2007~ -~28397~^~309~^1.70^4^0.08^~1~^~A~^^^1^1.50^1.90^3^1.44^1.96^~2, 3~^~03/01/2007~ -~28397~^~323~^0.37^4^0.12^~1~^~A~^^^1^0.19^0.73^3^-0.02^0.76^~2, 3~^~03/01/2007~ -~28397~^~341~^0.09^4^0.01^~1~^~A~^^^1^0.06^0.13^3^0.04^0.13^~2, 3~^~03/01/2007~ -~28397~^~342~^1.46^4^0.24^~1~^~A~^^^1^0.86^1.97^3^0.66^2.24^~2, 3~^~03/01/2007~ -~28397~^~343~^0.54^4^0.04^~1~^~A~^^^1^0.41^0.62^3^0.39^0.68^~2, 3~^~03/01/2007~ -~28397~^~344~^0.10^4^0.01^~1~^~A~^^^1^0.07^0.12^3^0.06^0.13^~2, 3~^~03/01/2007~ -~28397~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~346~^0.02^4^6.0e-03^~1~^~A~^^^1^0.00^0.03^3^-4.0e-03^0.03^~1, 2, 3~^~03/01/2007~ -~28397~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28399~^~203~^6.90^46^0.15^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~204~^13.80^46^0.22^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~205~^74.10^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~ -~28399~^~207~^1.30^44^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~255~^3.90^42^0.18^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~269~^23.30^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~28399~^~303~^2.75^37^0.06^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~309~^0.64^32^0.02^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~323~^0.12^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~28399~^~418~^0.05^1^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~28399~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~31019~^~203~^15.34^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~204~^1.39^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~205~^46.24^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31019~^~207~^23.03^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~255~^14.00^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~303~^66.38^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~309~^2.53^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~323~^5.53^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~418~^2.25^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~203~^1.86^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~204~^0.17^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~205~^5.62^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~31020~^~207~^2.80^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~255~^89.55^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~303~^8.07^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~309~^0.31^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~323~^0.67^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~418~^0.27^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31021~^~203~^1.75^6^0.08^~1~^~A~^^^1^1.50^2.12^5^1.53^1.96^~4~^~02/01/2013~ -~31021~^~204~^0.08^6^4.0e-03^~1~^~A~^^^1^0.07^0.10^5^0.06^0.08^~1, 4~^~02/01/2013~ -~31021~^~205~^19.16^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31021~^~207~^1.19^6^0.02^~1~^~A~^^^1^1.11^1.30^5^1.11^1.26^~4~^~02/01/2013~ -~31021~^~209~^17.03^3^0.52^~1~^~A~^^^1^16.20^18.00^2^14.77^19.28^~4~^~02/01/2013~ -~31021~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~211~^0.54^3^3.0e-03^~1~^~A~^^^1^0.54^0.55^2^0.52^0.55^~4~^~02/01/2013~ -~31021~^~212~^0.36^3^0.01^~1~^~A~^^^1^0.34^0.38^2^0.31^0.41^~4~^~02/01/2013~ -~31021~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~255~^77.82^6^0.20^~1~^~A~^^^1^77.00^78.30^5^77.29^78.33^~4~^~02/01/2013~ -~31021~^~269~^0.91^3^0.01^~1~^~A~^^^1^0.88^0.93^2^0.84^0.96^~4~^~02/01/2013~ -~31021~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~303~^0.48^6^0.02^~1~^~A~^^^1^0.39^0.60^5^0.40^0.55^~4~^~02/01/2013~ -~31021~^~309~^0.38^6^0.01^~1~^~A~^^^1^0.34^0.43^5^0.33^0.41^~4~^~02/01/2013~ -~31021~^~323~^0.07^3^0.01^~1~^~A~^^^1^0.04^0.10^2^-0.01^0.14^~4~^~02/01/2013~ -~31021~^~341~^0.01^3^9.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.04^~1, 4~^~02/01/2013~ -~31021~^~342~^0.00^3^2.0e-03^~1~^~A~^^^1^0.00^0.01^2^-7.0e-03^0.01^~1, 4~^~02/01/2013~ -~31021~^~343~^0.00^3^2.0e-03^~1~^~A~^^^1^0.00^0.01^2^-8.0e-03^0.01^~1, 4~^~02/01/2013~ -~31021~^~344~^0.01^3^8.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.04^~1, 4~^~02/01/2013~ -~31021~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31021~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~203~^3.24^6^0.13^~1~^~A~^^^1^2.79^3.77^5^2.88^3.58^~4~^~02/01/2013~ -~31022~^~204~^10.30^6^0.29^~1~^~A~^^^1^9.60^11.50^5^9.54^11.05^~4~^~02/01/2013~ -~31022~^~205~^33.99^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~207~^1.91^6^0.03^~1~^~A~^^^1^1.84^2.05^5^1.82^1.98^~4~^~02/01/2013~ -~31022~^~209~^26.30^3^1.13^~1~^~A~^^^1^24.70^28.50^2^21.40^31.19^~4~^~02/01/2013~ -~31022~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~02/01/2013~ -~31022~^~211~^0.61^3^0.04^~1~^~A~^^^1^0.52^0.67^2^0.41^0.81^~4~^~02/01/2013~ -~31022~^~212~^0.45^3^0.05^~1~^~A~^^^1^0.34^0.52^2^0.21^0.68^~4~^~02/01/2013~ -~31022~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31022~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31022~^~255~^50.57^6^1.19^~1~^~A~^^^1^47.40^54.50^5^47.50^53.63^~4~^~02/01/2013~ -~31022~^~269~^1.16^2^^~1~^~A~^^^1^1.13^1.19^1^^^^~02/01/2013~ -~31022~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31022~^~303~^0.74^6^0.02^~1~^~A~^^^1^0.64^0.83^5^0.67^0.80^~4~^~02/01/2013~ -~31022~^~309~^0.63^6^0.03^~1~^~A~^^^1^0.51^0.76^5^0.52^0.72^~4~^~02/01/2013~ -~31022~^~323~^1.68^3^0.09^~1~^~A~^^^1^1.50^1.82^2^1.27^2.09^~4~^~02/01/2013~ -~31022~^~341~^0.05^3^0.03^~1~^~A~^^^1^0.02^0.12^2^-0.08^0.18^~4~^~02/01/2013~ -~31022~^~342~^3.36^3^0.18^~1~^~A~^^^1^3.00^3.61^2^2.57^4.13^~4~^~02/01/2013~ -~31022~^~343~^0.14^3^0.01^~1~^~A~^^^1^0.11^0.15^2^0.07^0.19^~4~^~02/01/2013~ -~31022~^~344~^0.03^3^0.03^~1~^~A~^^^1^0.00^0.09^2^-0.09^0.15^~1, 4~^~02/01/2013~ -~31022~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31022~^~346~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 4~^~02/01/2013~ -~31022~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~02/01/2013~ -~31022~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31022~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~31023~^~203~^2.16^8^0.05^~1~^~A~^^^1^1.62^2.88^6^2.01^2.29^~2, 3~^~06/01/2015~ -~31023~^~204~^8.92^8^0.24^~1~^~A~^^^1^6.78^11.37^6^8.29^9.54^~2, 3~^~06/01/2015~ -~31023~^~205~^35.58^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~207~^1.38^8^0.04^~1~^~A~^^^1^0.94^1.86^5^1.26^1.49^~2, 3~^~06/01/2015~ -~31023~^~209~^13.22^4^0.87^~1~^~A~^^^1^11.30^16.40^1^4.81^21.63^~2, 3~^~06/01/2015~ -~31023~^~210~^5.41^6^0.18^~1~^~A~^^^1^4.33^6.42^3^4.87^5.95^~2, 3~^~06/01/2015~ -~31023~^~211~^0.81^6^0.04^~1~^~A~^^^1^0.53^1.03^2^0.62^1.00^~2, 3~^~06/01/2015~ -~31023~^~212~^0.57^6^0.04^~1~^~A~^^^1^0.36^0.73^3^0.42^0.70^~2, 3~^~06/01/2015~ -~31023~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~214~^6.10^6^0.31^~1~^~A~^^^1^4.76^7.50^4^5.19^7.01^~2, 3~^~06/01/2015~ -~31023~^~255~^51.97^8^0.83^~1~^~A~^^^1^47.56^55.31^6^49.90^54.04^~2, 3~^~06/01/2015~ -~31023~^~269~^12.90^6^0.32^~1~^~A~^^^1^11.17^14.33^4^11.98^13.81^~2, 3~^~06/01/2015~ -~31023~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~303~^0.77^6^0.04^~1~^~A~^^^1^0.63^0.87^4^0.64^0.89^~2, 3~^~06/01/2015~ -~31023~^~309~^0.38^6^0.02^~1~^~A~^^^1^0.30^0.43^3^0.30^0.44^~2, 3~^~06/01/2015~ -~31023~^~323~^1.49^2^^~1~^~A~^^^1^1.24^1.75^^^^^~07/01/2015~ -~31023~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~31023~^~342~^1.04^2^^~1~^~A~^^^1^1.03^1.06^^^^^~07/01/2015~ -~31023~^~343~^0.19^2^^~1~^~A~^^^1^0.00^0.39^^^^~1~^~07/01/2015~ -~31023~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~31023~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~31023~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~31023~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~31023~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31023~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31024~^~203~^1.70^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~204~^11.10^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~205~^25.52^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31024~^~207~^1.09^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~255~^60.59^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~269~^6.46^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~303~^0.44^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~203~^1.36^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~204~^3.58^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~205~^30.72^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31025~^~207~^1.32^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~255~^63.02^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~269~^7.65^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~303~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31026~^~203~^1.99^3^0.29^~1~^~A~^^^1^1.61^2.56^2^0.73^3.24^~2, 3~^~04/01/2013~ -~31026~^~204~^1.85^3^0.05^~1~^~A~^^^1^1.74^1.94^2^1.59^2.10^~2, 3~^~04/01/2013~ -~31026~^~205~^23.44^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31026~^~207~^1.76^3^0.31^~1~^~A~^^^1^1.24^2.34^2^0.39^3.13^~2, 3~^~04/01/2013~ -~31026~^~255~^70.96^3^0.31^~1~^~A~^^^1^70.38^71.44^2^69.62^72.28^~2, 3~^~04/01/2013~ -~31026~^~269~^0.31^3^0.08^~1~^~A~^^^1^0.15^0.43^2^-0.04^0.66^~2, 3~^~04/01/2013~ -~31026~^~303~^0.45^3^0.04^~1~^~A~^^^1^0.37^0.50^2^0.27^0.63^~2, 3~^~04/01/2013~ -~31027~^~203~^2.47^3^0.26^~1~^~A~^^^1^2.14^2.99^2^1.32^3.60^~2, 3~^~04/01/2013~ -~31027~^~204~^5.84^3^1.40^~1~^~A~^^^1^4.01^8.60^2^-0.21^11.88^~2, 3~^~04/01/2013~ -~31027~^~205~^25.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31027~^~207~^1.64^3^0.02^~1~^~A~^^^1^1.59^1.69^2^1.51^1.76^~2, 3~^~04/01/2013~ -~31027~^~255~^65.04^3^2.86^~1~^~A~^^^1^59.45^68.95^2^52.69^77.38^~2, 3~^~04/01/2013~ -~31027~^~269~^0.37^3^0.07^~1~^~A~^^^1^0.23^0.49^2^0.04^0.70^~2, 3~^~04/01/2013~ -~31027~^~303~^0.48^3^0.05^~1~^~A~^^^1^0.38^0.56^2^0.25^0.71^~2, 3~^~04/01/2013~ -~31028~^~203~^2.04^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~204~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~205~^17.98^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31028~^~207~^1.57^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~255~^78.34^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~269~^0.23^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~303~^0.31^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31029~^~203~^2.56^3^0.08^~1~^~A~^^^1^2.45^2.73^2^2.18^2.93^~2, 3~^~04/01/2013~ -~31029~^~204~^7.47^3^0.29^~1~^~A~^^^1^7.13^8.05^2^6.21^8.72^~2, 3~^~04/01/2013~ -~31029~^~205~^22.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~31029~^~207~^1.69^3^0.14^~1~^~A~^^^1^1.53^1.97^2^1.08^2.29^~2, 3~^~04/01/2013~ -~31029~^~255~^66.06^3^0.78^~1~^~A~^^^1^64.66^67.37^2^62.69^69.43^~2, 3~^~04/01/2013~ -~31029~^~269~^0.34^3^0.10^~1~^~A~^^^1^0.23^0.54^2^-0.09^0.77^~2, 3~^~04/01/2013~ -~31029~^~303~^0.72^3^0.14^~1~^~A~^^^1^0.43^0.87^2^0.09^1.34^~2, 3~^~04/01/2013~ -~31030~^~203~^2.40^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~204~^3.42^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~205~^24.31^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~31030~^~207~^0.86^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~255~^69.01^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~269~^0.21^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~303~^0.83^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~203~^2.70^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~204~^10.00^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~205~^22.95^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~31031~^~207~^1.99^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~255~^62.36^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~269~^0.49^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~303~^0.87^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31033~^~203~^0.33^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~204~^0.10^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~205~^4.83^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~207~^2.44^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~209~^0.60^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~255~^92.30^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~303~^0.28^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~309~^0.04^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~323~^0.18^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~31033~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31033~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31033~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~203~^0.80^3^0.05^~1~^~A~^^^1^0.73^0.91^2^0.56^1.04^~2, 3~^~06/01/2015~ -~31034~^~204~^0.40^3^0.20^~1~^~A~^^^1^0.20^0.80^2^-0.46^1.26^~2, 3~^~06/01/2015~ -~31034~^~205~^4.56^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~207~^4.04^3^0.29^~1~^~A~^^^1^3.71^4.63^2^2.77^5.30^~2, 3~^~06/01/2015~ -~31034~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31034~^~211~^0.67^3^0.26^~1~^~A~^^^1^0.40^1.20^2^-0.48^1.81^~2, 3~^~06/01/2015~ -~31034~^~212~^0.93^3^0.20^~1~^~A~^^^1^0.60^1.30^2^0.06^1.80^~2, 3~^~06/01/2015~ -~31034~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31034~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31034~^~255~^90.20^3^0.72^~1~^~A~^^^1^88.80^91.20^2^87.09^93.30^~2, 3~^~06/01/2015~ -~31034~^~269~^1.60^3^0.45^~1~^~A~^^^1^1.00^2.50^2^-0.37^3.57^~2, 3~^~06/01/2015~ -~31034~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31034~^~303~^0.32^3^0.08^~1~^~A~^^^1^0.19^0.48^2^-0.04^0.67^~2, 3~^~06/01/2015~ -~31034~^~309~^0.09^3^0.01^~1~^~A~^^^1^0.08^0.11^2^0.05^0.13^~2, 3~^~06/01/2015~ -~31034~^~323~^0.90^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~31034~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~31034~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31034~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~203~^0.49^3^0.02^~1~^~A~^^^1^0.44^0.53^2^0.37^0.61^~2, 3~^~06/01/2015~ -~31035~^~204~^0.04^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~205~^8.13^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~207~^0.74^3^0.01^~1~^~A~^^^1^0.72^0.76^2^0.68^0.78^~2, 3~^~06/01/2015~ -~31035~^~210~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~06/01/2015~ -~31035~^~211~^1.70^3^0.05^~1~^~A~^^^1^1.60^1.80^2^1.45^1.94^~2, 3~^~06/01/2015~ -~31035~^~212~^3.23^3^0.08^~1~^~A~^^^1^3.10^3.40^2^2.85^3.61^~2, 3~^~06/01/2015~ -~31035~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31035~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31035~^~255~^90.60^3^0.05^~1~^~A~^^^1^90.50^90.70^2^90.35^90.84^~2, 3~^~06/01/2015~ -~31035~^~269~^5.37^3^0.17^~1~^~A~^^^1^5.10^5.70^2^4.60^6.12^~2, 3~^~06/01/2015~ -~31035~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31035~^~303~^3.85^3^0.03^~1~^~A~^^^1^3.81^3.93^2^3.68^4.01^~2, 3~^~06/01/2015~ -~31035~^~309~^3.47^3^0.01^~1~^~A~^^^1^3.44^3.50^2^3.39^3.54^~2, 3~^~06/01/2015~ -~31035~^~323~^0.47^0^^~4~^~FLC~^^^^^^^^^^~03/01/2016~ -~31035~^~418~^0.97^2^^~1~^~A~^^^1^0.97^0.97^^^^^~06/01/2015~ -~31035~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~31035~^~578~^0.97^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~31036~^~203~^1.97^9^0.01^~1~^~A~^^^1^1.62^2.25^4^1.93^2.00^~2, 3~^~06/01/2015~ -~31036~^~204~^5.01^9^0.21^~1~^~A~^^^1^2.54^6.22^5^4.45^5.55^~2, 3~^~06/01/2015~ -~31036~^~205~^13.29^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~207~^1.46^9^0.01^~1~^~A~^^^1^1.30^1.70^4^1.42^1.49^~2, 3~^~06/01/2015~ -~31036~^~209~^7.84^4^0.19^~1~^~A~^^^1^7.00^8.60^1^5.36^10.32^~2, 3~^~06/01/2015~ -~31036~^~210~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~211~^0.27^4^0.02^~1~^~A~^^^1^0.18^0.35^1^-0.03^0.57^~1, 2, 3~^~06/01/2015~ -~31036~^~212~^0.31^4^0.00^~1~^~A~^^^1^0.28^0.36^^^^~2, 3~^~06/01/2015~ -~31036~^~213~^1.17^4^0.03^~1~^~A~^^^1^1.09^1.34^1^0.74^1.59^~2, 3~^~06/01/2015~ -~31036~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~255~^78.27^9^0.18^~1~^~A~^^^1^77.44^79.31^3^77.68^78.86^~2, 3~^~06/01/2015~ -~31036~^~269~^1.76^4^0.05^~1~^~A~^^^1^1.55^1.98^1^1.02^2.48^~2, 3~^~06/01/2015~ -~31036~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~303~^0.27^8^0.01^~1~^~A~^^^1^0.23^0.34^2^0.23^0.31^~2, 3~^~06/01/2015~ -~31036~^~309~^0.30^8^0.01^~1~^~A~^^^1^0.24^0.35^2^0.23^0.35^~2, 3~^~06/01/2015~ -~31036~^~323~^0.29^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~342~^0.92^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~343~^0.32^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~344~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~418~^0.22^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~31036~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~32000~^~203~^10.84^6^0.08^~1~^~A~^^^1^10.63^11.19^5^10.62^11.06^~2, 3~^~08/01/2012~ -~32000~^~204~^1.27^6^0.02^~1~^~A~^^^1^1.20^1.30^5^1.21^1.32^~2, 3~^~08/01/2012~ -~32000~^~205~^76.02^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32000~^~207~^3.60^6^0.09^~1~^~A~^^^1^3.36^4.01^5^3.35^3.85^~2, 3~^~08/01/2012~ -~32000~^~209~^69.70^3^0.81^~1~^~A~^^^1^68.10^70.80^2^66.17^73.22^~2, 3~^~08/01/2012~ -~32000~^~255~^8.27^6^0.12^~1~^~A~^^^1^7.75^8.59^5^7.94^8.59^~2, 3~^~08/01/2012~ -~32000~^~269~^4.27^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~303~^2.82^6^0.16^~1~^~A~^^^1^2.22^3.44^5^2.38^3.24^~2, 3~^~08/01/2012~ -~32000~^~309~^1.34^6^0.01^~1~^~A~^^^1^1.30^1.37^5^1.31^1.37^~2, 3~^~08/01/2012~ -~32000~^~323~^0.18^3^0.02^~1~^~A~^^^1^0.14^0.22^2^0.07^0.27^~2, 3~^~08/01/2012~ -~32000~^~341~^0.04^3^7.0e-03^~1~^~A~^^^1^0.02^0.05^2^8.0e-03^0.06^~2, 3~^~08/01/2012~ -~32000~^~342~^0.19^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.11^0.27^~2, 3~^~08/01/2012~ -~32000~^~343~^0.05^3^6.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.03^0.07^~2, 3~^~08/01/2012~ -~32000~^~344~^0.08^3^7.0e-03^~1~^~A~^^^1^0.07^0.09^2^0.04^0.10^~2, 3~^~08/01/2012~ -~32000~^~345~^0.19^3^0.01^~1~^~A~^^^1^0.17^0.21^2^0.13^0.26^~2, 3~^~08/01/2012~ -~32000~^~346~^0.25^3^8.0e-03^~1~^~A~^^^1^0.23^0.26^2^0.21^0.28^~2, 3~^~08/01/2012~ -~32000~^~347~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.01^0.04^~1, 2, 3~^~08/01/2012~ -~32000~^~418~^0.05^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32001~^~203~^2.82^6^0.06^~1~^~A~^^^1^2.50^2.94^5^2.65^2.99^~2, 3~^~08/01/2012~ -~32001~^~204~^3.20^6^0.07^~1~^~A~^^^1^3.00^3.40^5^3.00^3.39^~2, 3~^~08/01/2012~ -~32001~^~205~^22.03^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32001~^~207~^1.01^6^0.03^~1~^~A~^^^1^0.89^1.14^5^0.91^1.10^~2, 3~^~08/01/2012~ -~32001~^~209~^18.43^3^0.41^~1~^~A~^^^1^17.80^19.20^2^16.67^20.19^~2, 3~^~08/01/2012~ -~32001~^~255~^70.93^6^0.29^~1~^~A~^^^1^69.80^71.80^5^70.17^71.68^~2, 3~^~08/01/2012~ -~32001~^~303~^0.88^6^0.05^~1~^~A~^^^1^0.65^1.08^5^0.73^1.03^~2, 3~^~08/01/2012~ -~32001~^~309~^0.42^6^0.01^~1~^~A~^^^1^0.39^0.46^5^0.39^0.44^~2, 3~^~08/01/2012~ -~32001~^~323~^0.27^3^8.0e-03^~1~^~A~^^^1^0.25^0.28^2^0.23^0.30^~2, 3~^~08/01/2012~ -~32001~^~341~^0.06^3^2.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.04^0.06^~2, 3~^~08/01/2012~ -~32001~^~342~^2.39^3^0.10^~1~^~A~^^^1^2.23^2.59^2^1.94^2.84^~2, 3~^~08/01/2012~ -~32001~^~343~^1.03^3^0.04^~1~^~A~^^^1^0.95^1.09^2^0.85^1.21^~2, 3~^~08/01/2012~ -~32001~^~344~^0.02^3^2.0e-03^~1~^~A~^^^1^0.01^0.02^2^0.01^0.02^~2, 3~^~08/01/2012~ -~32001~^~345~^0.05^3^5.0e-03^~1~^~A~^^^1^0.04^0.06^2^0.02^0.07^~2, 3~^~08/01/2012~ -~32001~^~346~^0.06^3^1.0e-03^~1~^~A~^^^1^0.06^0.06^2^0.05^0.06^~2, 3~^~08/01/2012~ -~32001~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32002~^~203~^10.42^6^0.08^~1~^~A~^^^1^10.19^10.63^5^10.21^10.62^~2, 3~^~08/01/2012~ -~32002~^~204~^1.37^6^0.02^~1~^~A~^^^1^1.30^1.40^5^1.31^1.42^~2, 3~^~08/01/2012~ -~32002~^~205~^76.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32002~^~207~^3.87^6^0.05^~1~^~A~^^^1^3.63^4.05^5^3.71^4.01^~2, 3~^~08/01/2012~ -~32002~^~209~^71.23^3^0.31^~1~^~A~^^^1^70.60^71.60^2^69.86^72.60^~2, 3~^~08/01/2012~ -~32002~^~210~^0.30^3^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~08/01/2012~ -~32002~^~211~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~08/01/2012~ -~32002~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32002~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32002~^~214~^1.13^3^0.03^~1~^~A~^^^1^1.10^1.20^2^0.99^1.27^~2, 3~^~08/01/2012~ -~32002~^~255~^8.04^6^0.30^~1~^~A~^^^1^6.84^8.81^5^7.25^8.82^~2, 3~^~08/01/2012~ -~32002~^~269~^1.53^3^0.03^~1~^~A~^^^1^1.50^1.60^2^1.39^1.67^~2, 3~^~08/01/2012~ -~32002~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32002~^~303~^2.44^6^0.08^~1~^~A~^^^1^2.17^2.76^5^2.21^2.67^~2, 3~^~08/01/2012~ -~32002~^~309~^1.01^6^0.01^~1~^~A~^^^1^0.94^1.05^5^0.96^1.06^~2, 3~^~08/01/2012~ -~32002~^~323~^0.04^3^6.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~2, 3~^~08/01/2012~ -~32002~^~341~^0.04^3^4.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.01^0.05^~2, 3~^~08/01/2012~ -~32002~^~342~^0.05^3^0.02^~1~^~A~^^^1^0.01^0.09^2^-0.03^0.14^~2, 3~^~08/01/2012~ -~32002~^~343~^0.00^3^2.0e-03^~1~^~A~^^^1^0.00^0.01^2^-6.0e-03^0.01^~1, 2, 3~^~08/01/2012~ -~32002~^~344~^0.03^3^4.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.04^~2, 3~^~08/01/2012~ -~32002~^~345~^0.26^3^0.01^~1~^~A~^^^1^0.23^0.29^2^0.18^0.34^~2, 3~^~08/01/2012~ -~32002~^~346~^0.10^3^6.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.07^0.12^~2, 3~^~08/01/2012~ -~32002~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32002~^~418~^0.02^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32003~^~203~^2.94^6^0.09^~1~^~A~^^^1^2.75^3.25^5^2.70^3.16^~2, 3~^~08/01/2012~ -~32003~^~204~^3.70^6^0.06^~1~^~A~^^^1^3.50^3.80^5^3.53^3.86^~2, 3~^~08/01/2012~ -~32003~^~205~^25.67^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~207~^1.23^6^0.06^~1~^~A~^^^1^1.04^1.43^5^1.07^1.38^~2, 3~^~08/01/2012~ -~32003~^~209~^21.00^3^1.04^~1~^~A~^^^1^19.00^22.50^2^16.52^25.47^~2, 3~^~08/01/2012~ -~32003~^~210~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 2, 3~^~08/01/2012~ -~32003~^~211~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~214~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~08/01/2012~ -~32003~^~255~^66.47^6^0.49^~1~^~A~^^^1^65.10^67.70^5^65.19^67.73^~2, 3~^~08/01/2012~ -~32003~^~269~^0.26^3^0.03^~1~^~A~^^^1^0.19^0.31^2^0.09^0.43^~2, 3~^~08/01/2012~ -~32003~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~303~^0.85^6^0.03^~1~^~A~^^^1^0.76^0.95^5^0.76^0.93^~2, 3~^~08/01/2012~ -~32003~^~309~^0.39^6^0.01^~1~^~A~^^^1^0.34^0.42^5^0.35^0.42^~2, 3~^~08/01/2012~ -~32003~^~323~^0.26^3^0.02^~1~^~A~^^^1^0.23^0.29^2^0.17^0.34^~2, 3~^~08/01/2012~ -~32003~^~341~^0.07^3^4.0e-03^~1~^~A~^^^1^0.06^0.08^2^0.05^0.08^~2, 3~^~08/01/2012~ -~32003~^~342~^2.65^3^0.12^~1~^~A~^^^1^2.44^2.86^2^2.12^3.16^~2, 3~^~08/01/2012~ -~32003~^~343~^1.18^3^0.06^~1~^~A~^^^1^1.07^1.29^2^0.90^1.46^~2, 3~^~08/01/2012~ -~32003~^~344~^0.01^3^1.0e-03^~1~^~A~^^^1^0.01^0.01^2^4.0e-03^0.01^~1, 2, 3~^~08/01/2012~ -~32003~^~345~^0.10^3^8.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.06^0.13^~2, 3~^~08/01/2012~ -~32003~^~346~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.05^~2, 3~^~08/01/2012~ -~32003~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32004~^~203~^12.73^12^0.03^~1~^~A~^^^1^12.44^12.94^9^12.65^12.81^~2, 3~^~08/01/2012~ -~32004~^~204~^10.67^12^0.13^~1~^~A~^^^1^9.93^11.40^10^10.36^10.96^~2, 3~^~08/01/2012~ -~32004~^~205~^46.66^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32004~^~207~^3.06^12^0.04^~1~^~A~^^^1^2.69^3.38^10^2.95^3.16^~2, 3~^~08/01/2012~ -~32004~^~255~^26.88^12^0.35^~1~^~A~^^^1^24.91^28.98^10^26.08^27.67^~2, 3~^~08/01/2012~ -~32004~^~269~^6.43^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~303~^2.07^12^0.04^~1~^~A~^^^1^1.83^2.34^9^1.96^2.18^~2, 3~^~08/01/2012~ -~32004~^~309~^1.30^12^0.01^~1~^~A~^^^1^1.19^1.37^8^1.27^1.32^~2, 3~^~08/01/2012~ -~32004~^~323~^1.48^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~418~^0.39^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32005~^~203~^6.68^12^0.05^~1~^~A~^^^1^6.25^7.12^9^6.54^6.80^~2, 3~^~08/01/2012~ -~32005~^~204~^4.99^12^0.07^~1~^~A~^^^1^4.49^5.77^6^4.81^5.16^~2, 3~^~08/01/2012~ -~32005~^~205~^23.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~207~^1.64^12^0.01^~1~^~A~^^^1^1.56^1.75^9^1.60^1.67^~2, 3~^~08/01/2012~ -~32005~^~209~^19.38^12^0.18^~1~^~A~^^^1^17.90^20.40^10^18.98^19.78^~2, 3~^~08/01/2012~ -~32005~^~210~^0.01^12^8.0e-03^~1~^~A~^^^1^0.00^0.10^5^-0.01^0.03^~1, 2, 3~^~08/01/2012~ -~32005~^~211~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~212~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~213~^1.30^12^0.01^~1~^~A~^^^1^1.20^1.40^10^1.27^1.32^~2, 3~^~08/01/2012~ -~32005~^~214~^0.27^12^0.01^~1~^~A~^^^1^0.20^0.40^10^0.24^0.29^~2, 3~^~08/01/2012~ -~32005~^~255~^63.59^12^0.24^~1~^~A~^^^1^61.70^66.11^8^63.03^64.14^~2, 3~^~08/01/2012~ -~32005~^~269~^1.57^12^0.01^~1~^~A~^^^1^1.40^1.80^10^1.54^1.60^~2, 3~^~08/01/2012~ -~32005~^~287~^0.00^12^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~303~^1.17^12^0.01^~1~^~A~^^^1^1.05^1.28^10^1.13^1.21^~2, 3~^~08/01/2012~ -~32005~^~309~^0.65^12^8.0e-03^~1~^~A~^^^1^0.57^0.73^10^0.63^0.66^~2, 3~^~08/01/2012~ -~32005~^~323~^0.54^2^^~1~^~A~^^^1^0.48^0.60^^^^^~08/01/2012~ -~32005~^~341~^0.02^2^^~1~^~A~^^^1^0.02^0.03^^^^^~08/01/2012~ -~32005~^~342~^1.05^2^^~1~^~A~^^^1^0.93^1.16^^^^^~08/01/2012~ -~32005~^~343~^0.05^2^^~1~^~A~^^^1^0.05^0.05^^^^^~08/01/2012~ -~32005~^~344~^0.02^2^^~1~^~A~^^^1^0.01^0.02^^^^^~08/01/2012~ -~32005~^~345~^0.18^2^^~1~^~A~^^^1^0.15^0.21^^^^^~08/01/2012~ -~32005~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~08/01/2012~ -~32005~^~347~^0.11^2^^~1~^~A~^^^1^0.10^0.13^^^^^~08/01/2012~ -~32005~^~418~^0.27^2^^~1~^~A~^^^1^0.22^0.33^^^^^~08/01/2012~ -~32006~^~203~^9.21^12^0.16^~1~^~A~^^^1^8.04^10.30^8^8.82^9.59^~2, 3~^~04/01/2013~ -~32006~^~204~^12.54^12^0.24^~1~^~A~^^^1^11.20^15.60^6^11.92^13.15^~2, 3~^~04/01/2013~ -~32006~^~205~^33.63^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~207~^1.88^12^0.02^~1~^~A~^^^1^1.40^2.32^7^1.81^1.93^~2, 3~^~04/01/2013~ -~32006~^~209~^29.62^6^0.60^~1~^~A~^^^1^25.60^33.60^4^27.93^31.31^~2, 3~^~04/01/2013~ -~32006~^~210~^0.30^6^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~04/01/2013~ -~32006~^~211~^0.09^6^4.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.07^0.10^~1, 2, 3~^~04/01/2013~ -~32006~^~212~^0.12^6^0.01^~1~^~A~^^^1^0.10^0.20^2^0.03^0.19^~2, 3~^~04/01/2013~ -~32006~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~214~^0.78^6^0.01^~1~^~A~^^^1^0.70^0.80^2^0.72^0.85^~2, 3~^~04/01/2013~ -~32006~^~255~^42.74^12^0.26^~1~^~A~^^^1^37.80^46.10^9^42.12^43.34^~2, 3~^~04/01/2013~ -~32006~^~269~^1.30^6^0.02^~1~^~A~^^^1^1.20^1.40^3^1.23^1.36^~2, 3~^~04/01/2013~ -~32006~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~303~^2.47^12^0.04^~1~^~A~^^^1^1.99^3.18^9^2.38^2.56^~2, 3~^~04/01/2013~ -~32006~^~309~^0.71^12^0.01^~1~^~A~^^^1^0.61^0.81^9^0.66^0.74^~2, 3~^~04/01/2013~ -~32006~^~323~^1.13^6^0.09^~1~^~A~^^^1^0.64^2.03^2^0.73^1.51^~2, 3~^~04/01/2013~ -~32006~^~341~^0.11^6^4.0e-03^~1~^~A~^^^1^0.10^0.13^4^0.10^0.12^~2, 3~^~04/01/2013~ -~32006~^~342~^3.04^6^0.15^~1~^~A~^^^1^2.11^3.59^3^2.55^3.53^~2, 3~^~04/01/2013~ -~32006~^~343~^0.76^6^0.01^~1~^~A~^^^1^0.07^1.36^2^0.69^0.82^~2, 3~^~04/01/2013~ -~32006~^~344~^0.05^6^0.01^~1~^~A~^^^1^0.00^0.08^2^0.01^0.09^~1, 2, 3~^~04/01/2013~ -~32006~^~345~^0.49^6^0.01^~1~^~A~^^^1^0.36^0.68^3^0.42^0.54^~2, 3~^~04/01/2013~ -~32006~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~347~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.12^2^-0.05^0.09^~1, 2, 3~^~04/01/2013~ -~32006~^~418~^0.18^6^0.01^~1~^~A~^^^1^0.13^0.26^3^0.12^0.24^~2, 3~^~04/01/2013~ -~32006~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32006~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~203~^9.40^11^0.16^~1~^~A~^^^1^8.67^10.40^7^9.01^9.79^~2, 3~^~04/01/2013~ -~32007~^~204~^12.79^11^0.13^~1~^~A~^^^1^12.20^14.20^9^12.49^13.08^~2, 3~^~04/01/2013~ -~32007~^~205~^33.46^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~207~^1.89^11^0.01^~1~^~A~^^^1^1.54^2.21^4^1.84^1.94^~2, 3~^~04/01/2013~ -~32007~^~209~^29.50^6^0.35^~1~^~A~^^^1^27.40^32.80^2^28.07^30.91^~2, 3~^~04/01/2013~ -~32007~^~210~^0.30^6^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~04/01/2013~ -~32007~^~211~^0.24^6^0.03^~1~^~A~^^^1^0.20^0.40^2^0.07^0.39^~2, 3~^~04/01/2013~ -~32007~^~212~^0.30^6^0.00^~1~^~A~^^^1^0.30^0.30^^^^~2, 3~^~04/01/2013~ -~32007~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~214~^0.83^6^0.01^~1~^~A~^^^1^0.70^0.90^2^0.74^0.90^~2, 3~^~04/01/2013~ -~32007~^~255~^42.45^11^0.15^~1~^~A~^^^1^40.60^44.20^7^42.09^42.80^~2, 3~^~04/01/2013~ -~32007~^~269~^1.66^6^0.04^~1~^~A~^^^1^1.50^1.80^2^1.45^1.87^~2, 3~^~04/01/2013~ -~32007~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~303~^2.67^11^0.03^~1~^~A~^^^1^2.21^3.31^7^2.58^2.75^~2, 3~^~04/01/2013~ -~32007~^~309~^1.05^11^0.01^~1~^~A~^^^1^0.96^1.16^9^1.02^1.07^~2, 3~^~04/01/2013~ -~32007~^~323~^1.25^6^0.04^~1~^~A~^^^1^0.83^1.83^3^1.11^1.37^~2, 3~^~04/01/2013~ -~32007~^~341~^0.13^6^2.0e-03^~1~^~A~^^^1^0.12^0.14^4^0.12^0.13^~2, 3~^~04/01/2013~ -~32007~^~342~^3.44^6^0.10^~1~^~A~^^^1^2.28^4.35^4^3.13^3.74^~2, 3~^~04/01/2013~ -~32007~^~343~^0.85^6^0.01^~1~^~A~^^^1^0.05^1.49^4^0.80^0.89^~2, 3~^~04/01/2013~ -~32007~^~344~^0.22^6^0.01^~1~^~A~^^^1^0.10^0.43^2^0.14^0.28^~2, 3~^~04/01/2013~ -~32007~^~345~^0.50^6^7.0e-03^~1~^~A~^^^1^0.39^0.67^2^0.47^0.52^~2, 3~^~04/01/2013~ -~32007~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~418~^0.28^6^0.01^~1~^~A~^^^1^0.20^0.38^4^0.25^0.31^~2, 3~^~04/01/2013~ -~32007~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32007~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~203~^11.60^6^0.07^~1~^~A~^^^1^11.40^11.80^5^11.41^11.78^~2, 3~^~04/01/2013~ -~32008~^~204~^1.88^6^0.06^~1~^~A~^^^1^1.70^2.10^5^1.72^2.03^~2, 3~^~04/01/2013~ -~32008~^~205~^71.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~207~^5.94^6^0.27^~1~^~A~^^^1^5.31^6.90^5^5.24^6.64^~2, 3~^~04/01/2013~ -~32008~^~209~^58.73^3^1.59^~1~^~A~^^^1^55.80^61.30^2^51.85^65.61^~2, 3~^~04/01/2013~ -~32008~^~210~^2.50^3^0.20^~1~^~A~^^^1^2.20^2.90^2^1.60^3.39^~2, 3~^~04/01/2013~ -~32008~^~211~^0.17^3^0.03^~1~^~A~^^^1^0.10^0.20^2^0.02^0.31^~2, 3~^~04/01/2013~ -~32008~^~212~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~2, 3~^~04/01/2013~ -~32008~^~213~^0.70^3^0.05^~1~^~A~^^^1^0.60^0.80^2^0.45^0.94^~2, 3~^~04/01/2013~ -~32008~^~214~^1.37^3^0.08^~1~^~A~^^^1^1.20^1.50^2^0.98^1.74^~2, 3~^~04/01/2013~ -~32008~^~255~^9.06^6^0.08^~1~^~A~^^^1^8.73^9.32^5^8.83^9.28^~2, 3~^~04/01/2013~ -~32008~^~269~^4.97^3^0.34^~1~^~A~^^^1^4.40^5.60^2^3.46^6.46^~2, 3~^~04/01/2013~ -~32008~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32008~^~303~^2.75^6^0.13^~1~^~A~^^^1^2.27^3.23^5^2.40^3.10^~2, 3~^~04/01/2013~ -~32008~^~309~^0.82^6^0.04^~1~^~A~^^^1^0.69^0.94^5^0.71^0.92^~2, 3~^~04/01/2013~ -~32008~^~323~^0.43^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~341~^0.16^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~342~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~343~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~344~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~345~^0.81^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32008~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32008~^~418~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32008~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32008~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~203~^12.32^6^0.27^~1~^~A~^^^1^11.40^13.20^5^11.61^13.02^~2, 3~^~04/01/2013~ -~32009~^~204~^1.78^6^0.01^~1~^~A~^^^1^1.70^1.80^5^1.74^1.82^~2, 3~^~04/01/2013~ -~32009~^~205~^72.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32009~^~207~^5.12^6^0.09^~1~^~A~^^^1^4.72^5.37^5^4.88^5.35^~2, 3~^~04/01/2013~ -~32009~^~209~^57.23^3^3.29^~1~^~A~^^^1^51.10^62.40^2^43.04^71.42^~2, 3~^~04/01/2013~ -~32009~^~210~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~04/01/2013~ -~32009~^~211~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~04/01/2013~ -~32009~^~212~^0.08^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.04^0.12^~1, 2, 3~^~04/01/2013~ -~32009~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32009~^~214~^4.37^3^0.49^~1~^~A~^^^1^3.60^5.30^2^2.22^6.50^~2, 3~^~04/01/2013~ -~32009~^~255~^8.58^6^0.07^~1~^~A~^^^1^8.40^8.80^5^8.39^8.77^~2, 3~^~04/01/2013~ -~32009~^~269~^4.95^3^0.50^~1~^~A~^^^1^4.17^5.90^2^2.77^7.12^~2, 3~^~04/01/2013~ -~32009~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32009~^~303~^2.71^6^0.08^~1~^~A~^^^1^2.46^3.10^5^2.48^2.93^~2, 3~^~04/01/2013~ -~32009~^~309~^0.99^6^0.01^~1~^~A~^^^1^0.95^1.07^5^0.94^1.03^~2, 3~^~04/01/2013~ -~32009~^~323~^0.33^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32009~^~341~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32009~^~342~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32009~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32009~^~344~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32009~^~345~^0.96^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32009~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32009~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32009~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32009~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~203~^10.90^6^0.09^~1~^~A~^^^1^10.70^11.30^5^10.66^11.13^~2, 3~^~04/01/2013~ -~32010~^~204~^1.97^6^0.07^~1~^~A~^^^1^1.70^2.20^5^1.78^2.15^~2, 3~^~04/01/2013~ -~32010~^~205~^73.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~207~^5.41^6^0.14^~1~^~A~^^^1^4.98^6.06^5^5.03^5.79^~2, 3~^~04/01/2013~ -~32010~^~209~^53.90^3^2.37^~1~^~A~^^^1^49.20^56.80^2^43.69^64.10^~2, 3~^~04/01/2013~ -~32010~^~210~^6.83^3^0.55^~1~^~A~^^^1^5.80^7.70^2^4.44^9.22^~2, 3~^~04/01/2013~ -~32010~^~211~^0.60^3^0.05^~1~^~A~^^^1^0.50^0.70^2^0.35^0.84^~2, 3~^~04/01/2013~ -~32010~^~212~^0.80^3^0.05^~1~^~A~^^^1^0.70^0.90^2^0.55^1.04^~2, 3~^~04/01/2013~ -~32010~^~213~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~04/01/2013~ -~32010~^~214~^2.67^3^0.29^~1~^~A~^^^1^2.10^3.10^2^1.39^3.94^~2, 3~^~04/01/2013~ -~32010~^~255~^7.94^6^0.12^~1~^~A~^^^1^7.68^8.32^5^7.63^8.25^~2, 3~^~04/01/2013~ -~32010~^~269~^11.27^3^0.99^~1~^~A~^^^1^9.40^12.80^2^6.98^15.55^~2, 3~^~04/01/2013~ -~32010~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32010~^~303~^2.87^6^0.05^~1~^~A~^^^1^2.68^3.01^5^2.74^3.00^~2, 3~^~04/01/2013~ -~32010~^~309~^0.84^6^0.02^~1~^~A~^^^1^0.73^0.88^5^0.78^0.89^~2, 3~^~04/01/2013~ -~32010~^~323~^0.81^2^^~1~^~A~^^^1^0.67^0.95^1^^^^~04/01/2013~ -~32010~^~341~^0.09^2^^~1~^~A~^^^1^0.08^0.10^1^^^^~04/01/2013~ -~32010~^~342~^0.32^2^^~1~^~A~^^^1^0.23^0.41^1^^^^~04/01/2013~ -~32010~^~343~^0.06^2^^~1~^~A~^^^1^0.00^0.12^1^^^~1~^~04/01/2013~ -~32010~^~344~^0.06^2^^~1~^~A~^^^1^0.06^0.07^1^^^^~04/01/2013~ -~32010~^~345~^0.61^2^^~1~^~A~^^^1^0.52^0.71^1^^^^~04/01/2013~ -~32010~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~32010~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~32010~^~418~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32010~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32010~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32011~^~203~^7.02^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~204~^1.75^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~205~^74.68^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~207~^5.79^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~255~^10.76^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~269~^1.75^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~303~^2.53^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~309~^1.21^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~323~^0.25^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32012~^~203~^8.73^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~204~^9.98^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~205~^50.72^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32012~^~207~^2.72^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~255~^27.86^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~269~^3.74^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~303~^1.80^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~309~^0.73^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~323~^1.59^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~418~^0.26^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~203~^8.28^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~204~^5.52^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~205~^13.28^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32013~^~207~^1.99^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~255~^70.94^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~269~^2.76^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~303~^0.74^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~309~^1.67^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~323~^0.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~418~^0.26^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32014~^~203~^13.10^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~204~^4.03^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~205~^52.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~207~^3.15^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~255~^27.66^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~269~^5.04^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~303~^1.81^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~309~^1.34^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~323~^0.56^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~418~^0.40^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~573~^0.00^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~578~^0.00^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32015~^~203~^10.24^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~204~^9.45^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~205~^27.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~32015~^~207~^2.64^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~255~^50.38^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~269~^7.87^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~303~^1.85^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~309~^1.26^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~323~^0.79^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~418~^0.94^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32016~^~203~^11.48^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~204~^6.56^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~205~^70.75^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32016~^~207~^3.15^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~255~^8.07^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~269~^8.20^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~303~^2.36^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~309~^1.23^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~323~^0.13^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~418~^0.77^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~573~^0.00^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~578~^0.00^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32017~^~203~^12.53^6^0.07^~1~^~A~^^^1^12.30^12.80^5^12.33^12.72^~2, 3~^~04/01/2013~ -~32017~^~204~^2.70^6^0.10^~1~^~A~^^^1^2.40^3.00^5^2.43^2.96^~2, 3~^~04/01/2013~ -~32017~^~205~^70.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~207~^6.43^6^0.29^~1~^~A~^^^1^5.35^7.28^5^5.67^7.19^~2, 3~^~04/01/2013~ -~32017~^~209~^57.10^3^1.91^~1~^~A~^^^1^53.30^59.40^2^48.86^65.33^~2, 3~^~04/01/2013~ -~32017~^~210~^1.60^3^0.00^~1~^~A~^^^1^1.60^1.60^^^^~2, 3~^~04/01/2013~ -~32017~^~211~^0.27^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.12^0.41^~2, 3~^~04/01/2013~ -~32017~^~212~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~04/01/2013~ -~32017~^~213~^2.37^3^0.32^~1~^~A~^^^1^1.90^3.00^2^0.95^3.77^~2, 3~^~04/01/2013~ -~32017~^~214~^2.07^3^0.12^~1~^~A~^^^1^1.90^2.30^2^1.55^2.58^~2, 3~^~04/01/2013~ -~32017~^~255~^8.07^6^0.13^~1~^~A~^^^1^7.60^8.49^5^7.72^8.41^~2, 3~^~04/01/2013~ -~32017~^~269~^6.70^3^0.25^~1~^~A~^^^1^6.40^7.20^2^5.61^7.78^~2, 3~^~04/01/2013~ -~32017~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32017~^~303~^3.12^6^0.14^~1~^~A~^^^1^2.94^3.85^5^2.74^3.49^~2, 3~^~04/01/2013~ -~32017~^~309~^0.98^6^0.01^~1~^~A~^^^1^0.94^1.06^5^0.93^1.02^~2, 3~^~04/01/2013~ -~32017~^~323~^0.54^3^0.03^~1~^~A~^^^1^0.49^0.61^2^0.37^0.70^~2, 3~^~04/01/2013~ -~32017~^~341~^0.10^3^3.0e-03^~1~^~A~^^^1^0.10^0.11^2^0.08^0.11^~2, 3~^~04/01/2013~ -~32017~^~342~^0.32^3^0.02^~1~^~A~^^^1^0.28^0.35^2^0.21^0.43^~2, 3~^~04/01/2013~ -~32017~^~343~^0.08^3^0.01^~1~^~A~^^^1^0.04^0.10^2^3.0e-03^0.15^~2, 3~^~04/01/2013~ -~32017~^~344~^0.05^3^4.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.03^0.06^~2, 3~^~04/01/2013~ -~32017~^~345~^0.70^3^0.04^~1~^~A~^^^1^0.64^0.78^2^0.52^0.88^~2, 3~^~04/01/2013~ -~32017~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32017~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~32017~^~418~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32018~^~203~^10.62^12^0.07^~1~^~A~^^^1^9.94^11.06^9^10.46^10.78^~2, 3~^~04/01/2014~ -~32018~^~204~^1.62^12^0.04^~1~^~A~^^^1^1.45^1.89^10^1.53^1.71^~2, 3~^~04/01/2014~ -~32018~^~205~^76.45^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~207~^4.04^12^0.08^~1~^~A~^^^1^3.47^4.56^10^3.83^4.23^~2, 3~^~04/01/2014~ -~32018~^~209~^66.05^6^0.63^~1~^~A~^^^1^64.50^68.30^3^64.12^67.97^~2, 3~^~04/01/2014~ -~32018~^~210~^0.62^6^0.05^~1~^~A~^^^1^0.31^1.27^2^0.53^1.01^~2, 3~^~04/01/2014~ -~32018~^~211~^1.36^6^0.03^~1~^~A~^^^1^1.44^2.10^3^1.58^1.82^~2, 3~^~04/01/2014~ -~32018~^~212~^0.91^6^0.02^~1~^~A~^^^1^0.30^1.76^2^1.05^1.22^~2, 3~^~04/01/2014~ -~32018~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~214~^0.93^3^0.09^~1~^~A~^^^1^0.97^1.29^2^0.74^1.58^~2, 3~^~04/01/2014~ -~32018~^~255~^7.27^12^0.13^~1~^~A~^^^1^6.10^9.60^9^6.96^7.57^~2, 3~^~04/01/2014~ -~32018~^~269~^3.83^3^0.18^~1~^~A~^^^1^3.46^4.06^2^3.02^4.62^~2, 3~^~04/01/2014~ -~32018~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~303~^3.32^12^0.17^~1~^~A~^^^1^2.45^4.79^6^2.89^3.73^~2, 3~^~04/01/2014~ -~32018~^~309~^1.03^12^0.01^~1~^~A~^^^1^0.78^1.37^8^0.98^1.07^~2, 3~^~04/01/2014~ -~32018~^~323~^0.86^6^0.03^~1~^~A~^^^1^0.44^1.19^4^0.76^0.95^~2, 3~^~04/01/2014~ -~32018~^~341~^0.05^6^8.0e-03^~1~^~A~^^^1^0.00^0.07^3^0.02^0.07^~1, 2, 3~^~04/01/2014~ -~32018~^~342~^0.14^6^6.0e-03^~1~^~A~^^^1^0.08^0.18^3^0.12^0.15^~2, 3~^~04/01/2014~ -~32018~^~343~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.05^3^-9.0e-03^0.05^~1, 2, 3~^~04/01/2014~ -~32018~^~344~^0.06^6^0.01^~1~^~A~^^^1^0.00^0.09^2^-2.0e-03^0.12^~1, 2, 3~^~04/01/2014~ -~32018~^~345~^0.39^6^0.02^~1~^~A~^^^1^0.31^0.47^4^0.31^0.46^~2, 3~^~04/01/2014~ -~32018~^~346~^0.16^6^0.03^~1~^~A~^^^1^0.00^0.38^4^0.06^0.25^~1, 2, 3~^~04/01/2014~ -~32018~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32019~^~203~^5.06^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~204~^4.22^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~205~^21.61^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~207~^1.51^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~255~^67.60^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~269~^3.80^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~303~^0.76^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~309~^0.63^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~323~^0.66^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~418~^0.10^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32020~^~203~^18.66^6^0.34^~1~^~A~^^^1^18.00^20.13^5^17.75^19.55^~2, 3~^~04/01/2014~ -~32020~^~204~^22.45^6^0.31^~1~^~A~^^^1^21.52^23.70^5^21.63^23.26^~2, 3~^~04/01/2014~ -~32020~^~205~^14.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~207~^3.03^6^0.06^~1~^~A~^^^1^2.87^3.30^5^2.86^3.20^~2, 3~^~04/01/2014~ -~32020~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~255~^41.63^6^0.77^~1~^~A~^^^1^38.80^44.42^5^39.65^43.61^~2, 3~^~04/01/2014~ -~32020~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~32020~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~32020~^~303~^1.26^6^0.02^~1~^~A~^^^1^1.17^1.34^5^1.19^1.33^~2, 3~^~04/01/2014~ -~32020~^~309~^1.39^6^0.03^~1~^~A~^^^1^1.34^1.54^5^1.31^1.46^~2, 3~^~04/01/2014~ -~32020~^~323~^1.19^2^^~1~^~A~^^^1^1.18^1.20^1^^^^~04/01/2014~ -~32020~^~341~^0.09^2^^~1~^~A~^^^1^0.07^0.11^1^^^^~04/01/2014~ -~32020~^~342~^4.21^2^^~1~^~A~^^^1^3.92^4.51^1^^^^~04/01/2014~ -~32020~^~343~^1.62^2^^~1~^~A~^^^1^1.58^1.65^1^^^^~04/01/2014~ -~32020~^~344~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~04/01/2014~ -~32020~^~345~^0.19^2^^~1~^~A~^^^1^0.15^0.23^1^^^^~04/01/2014~ -~32020~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~32020~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2014~ -~32020~^~418~^0.54^3^0.03^~1~^~A~^^^1^0.48^0.57^2^0.41^0.66^~2, 3~^~04/01/2014~ -~32021~^~203~^3.27^12^0.08^~1~^~A~^^^1^2.56^3.94^6^3.07^3.46^~2, 3~^~04/01/2014~ -~32021~^~204~^2.38^12^0.09^~1~^~A~^^^1^1.41^3.00^9^2.16^2.58^~2, 3~^~04/01/2014~ -~32021~^~205~^22.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~207~^1.35^12^0.03^~1~^~A~^^^1^0.95^1.53^6^1.25^1.43^~2, 3~^~04/01/2014~ -~32021~^~209~^19.32^6^0.35^~1~^~A~^^^1^12.90^23.40^2^17.96^20.67^~2, 3~^~04/01/2014~ -~32021~^~210~^0.26^6^0.01^~1~^~A~^^^1^0.18^0.35^2^0.20^0.31^~1, 2, 3~^~04/01/2014~ -~32021~^~211~^0.61^6^0.01^~1~^~A~^^^1^0.47^0.74^3^0.53^0.67^~2, 3~^~04/01/2014~ -~32021~^~212~^0.64^6^0.02^~1~^~A~^^^1^0.55^0.75^4^0.56^0.72^~2, 3~^~04/01/2014~ -~32021~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~214~^0.29^6^0.01^~1~^~A~^^^1^0.18^0.42^2^0.21^0.36^~1, 2, 3~^~04/01/2014~ -~32021~^~255~^70.26^12^0.50^~1~^~A~^^^1^63.10^77.90^8^69.10^71.42^~2, 3~^~04/01/2014~ -~32021~^~269~^1.79^6^0.06^~1~^~A~^^^1^1.63^1.95^3^1.59^1.99^~2, 3~^~04/01/2014~ -~32021~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~303~^1.02^12^0.06^~1~^~A~^^^1^0.78^1.48^8^0.87^1.17^~2, 3~^~04/01/2014~ -~32021~^~309~^0.30^12^0.01^~1~^~A~^^^1^0.19^0.39^6^0.26^0.33^~2, 3~^~04/01/2014~ -~32021~^~323~^0.67^6^0.07^~1~^~A~^^^1^0.37^0.80^2^0.36^0.98^~2, 3~^~04/01/2014~ -~32021~^~341~^0.01^6^9.0e-03^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.05^~1, 2, 3~^~04/01/2014~ -~32021~^~342~^0.88^6^0.08^~1~^~A~^^^1^0.55^1.12^2^0.56^1.20^~2, 3~^~04/01/2014~ -~32021~^~343~^0.22^6^0.03^~1~^~A~^^^1^0.00^0.40^2^0.07^0.35^~1, 2, 3~^~04/01/2014~ -~32021~^~344~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~345~^0.08^6^0.01^~1~^~A~^^^1^0.04^0.12^2^0.02^0.14^~2, 3~^~04/01/2014~ -~32021~^~346~^0.04^6^0.01^~1~^~A~^^^1^0.00^0.07^2^1.0e-03^0.08^~1, 2, 3~^~04/01/2014~ -~32021~^~347~^0.06^6^0.05^~1~^~A~^^^1^0.00^0.28^2^-0.18^0.29^~1, 2, 3~^~04/01/2014~ -~32024~^~203~^8.77^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~204~^3.51^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~205~^73.88^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~207~^5.10^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~255~^8.74^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~269~^5.26^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~303~^4.74^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~309~^1.45^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~323~^0.50^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~418~^0.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~203~^5.26^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~204~^6.14^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~205~^29.64^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~207~^1.70^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~255~^57.25^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~269~^1.75^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~303~^1.26^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~309~^0.44^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~323~^0.98^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~418~^0.08^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~203~^7.87^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~204~^5.51^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~205~^21.74^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~207~^1.56^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~255~^63.32^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~269~^3.94^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~303~^2.13^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~309~^1.04^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~323~^0.43^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~418~^0.14^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32027~^~203~^9.45^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~204~^5.51^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~205~^31.89^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~207~^1.92^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~255~^51.23^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~269~^3.94^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~303~^2.13^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~309~^1.51^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~323~^0.13^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~418~^0.58^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~203~^7.87^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~204~^12.60^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~205~^20.67^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~207~^1.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~255~^57.21^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~269~^7.87^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~303~^2.13^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~309~^0.99^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~323~^0.65^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~418~^0.33^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~203~^3.49^16^0.07^~1~^~A~^^^1^3.41^3.69^9^3.31^3.66^~2, 3~^~02/01/2017~ -~32029~^~204~^2.57^16^0.07^~1~^~A~^^^1^2.22^3.16^8^2.40^2.73^~2, 3~^~02/01/2017~ -~32029~^~205~^26.28^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~207~^1.46^16^0.05^~1~^~A~^^^1^1.39^1.64^7^1.33^1.57^~2, 3~^~01/01/2017~ -~32029~^~209~^25.01^9^0.50^~1~^~A~^^^1^24.17^28.83^3^23.44^26.57^~2, 3~^~02/01/2017~ -~32029~^~210~^0.40^9^0.02^~1~^~A~^^^1^0.00^0.57^3^0.32^0.47^~2, 3~^~02/01/2017~ -~32029~^~211~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2017~ -~32029~^~212~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2017~ -~32029~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2017~ -~32029~^~214~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2017~ -~32029~^~255~^66.21^16^0.66^~1~^~A~^^^1^61.12^66.98^7^64.64^67.77^~2, 3~^~02/01/2017~ -~32029~^~269~^0.40^9^0.02^~1~^~A~^^^1^0.00^0.57^3^0.32^0.47^~2, 3~^~02/01/2017~ -~32029~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~01/01/2017~ -~32029~^~303~^1.45^16^0.15^~1~^~A~^^^1^0.72^1.90^5^1.06^1.83^~2, 3~^~02/01/2017~ -~32029~^~309~^0.60^16^0.01^~1~^~A~^^^1^0.55^0.73^5^0.56^0.63^~2, 3~^~01/01/2017~ -~32029~^~323~^1.47^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32031~^~203~^6.98^9^0.27^~1~^~A~^^^1^5.33^8.51^3^6.12^7.83^~2, 3~^~06/01/2015~ -~32031~^~204~^10.47^9^0.24^~1~^~A~^^^1^7.90^11.70^3^9.64^11.30^~2, 3~^~06/01/2015~ -~32031~^~205~^6.78^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~207~^1.58^9^0.06^~1~^~A~^^^1^1.22^1.83^2^1.34^1.81^~2, 3~^~06/01/2015~ -~32031~^~209~^2.53^3^^~1~^~A~^^^1^2.20^2.90^^^^~2, 3~^~06/01/2015~ -~32031~^~210~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~211~^0.26^3^^~1~^~A~^^^1^0.18^0.28^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~212~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~213~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~214~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~255~^74.19^9^0.31^~1~^~A~^^^1^73.10^79.00^3^73.26^75.11^~2, 3~^~06/01/2015~ -~32031~^~269~^0.26^3^^~1~^~A~^^^1^0.18^0.28^^^^~2, 3~^~06/01/2015~ -~32031~^~287~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~303~^0.95^9^0.03^~1~^~A~^^^1^0.67^1.07^2^0.80^1.09^~2, 3~^~06/01/2015~ -~32031~^~309~^0.75^9^0.01^~1~^~A~^^^1^0.48^1.20^4^0.70^0.79^~2, 3~^~06/01/2015~ -~32031~^~323~^0.23^3^^~1~^~A~^^^1^0.00^0.29^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~341~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~342~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~343~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~344~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~345~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~346~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~347~^0.00^3^^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2015~ -~32031~^~418~^0.41^3^^~1~^~A~^^^1^0.27^0.77^^^^~2, 3~^~06/01/2015~ -~32031~^~573~^0.00^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2015~ -~32031~^~578~^0.00^0^^~4~^~BFNN~^~13497~^^^^^^^^^~06/01/2015~ -~32032~^~203~^9.54^5^0.08^~1~^~A~^^^1^9.13^10.88^3^9.26^9.81^~2, 3~^~06/01/2015~ -~32032~^~204~^22.13^5^0.25^~1~^~A~^^^1^18.62^23.25^2^21.06^23.19^~2, 3~^~06/01/2015~ -~32032~^~205~^21.57^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~207~^2.64^5^0.04^~1~^~A~^^^1^2.24^2.70^1^2.13^3.13^~2, 3~^~06/01/2015~ -~32032~^~209~^16.05^2^^~1~^~A~^^^1^16.00^16.10^1^^^^~06/01/2015~ -~32032~^~210~^0.87^2^^~1~^~A~^^^1^0.86^0.88^1^^^^~06/01/2015~ -~32032~^~211~^0.59^2^^~1~^~A~^^^1^0.58^0.60^1^^^^~06/01/2015~ -~32032~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~32032~^~213~^1.28^2^^~1~^~A~^^^1^1.27^1.29^1^^^^~06/01/2015~ -~32032~^~214~^0.36^2^^~1~^~A~^^^1^0.36^0.36^^^^^~06/01/2015~ -~32032~^~255~^44.12^5^0.33^~1~^~A~^^^1^43.26^45.50^3^43.04^45.20^~2, 3~^~06/01/2015~ -~32032~^~269~^3.10^2^^~1~^~A~^^^1^3.09^3.11^1^^^^~06/01/2015~ -~32032~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~32032~^~303~^1.85^5^0.02^~1~^~A~^^^1^1.75^1.96^2^1.74^1.94^~2, 3~^~06/01/2015~ -~32032~^~309~^0.99^5^0.03^~1~^~A~^^^1^0.91^1.30^2^0.85^1.11^~2, 3~^~06/01/2015~ -~32032~^~323~^1.56^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~418~^0.59^5^7.0e-03^~1~^~A~^^^1^0.39^0.65^2^0.56^0.62^~2, 3~^~06/01/2015~ -~32032~^~573~^0.00^0^^~4~^~BFFN~^~21014~^^^^^^^^^~06/01/2015~ -~32032~^~578~^0.00^0^^~4~^~BFNN~^~21014~^^^^^^^^^~06/01/2015~ -~32034~^~203~^7.96^3^0.39^~1~^~A~^^^1^7.20^8.51^2^6.27^9.64^~2, 3~^~07/01/2015~ -~32034~^~204~^8.53^3^0.31^~1~^~A~^^^1^8.00^9.10^2^7.16^9.90^~2, 3~^~07/01/2015~ -~32034~^~205~^6.96^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~207~^1.38^3^0.08^~1~^~A~^^^1^1.22^1.47^2^1.03^1.72^~2, 3~^~07/01/2015~ -~32034~^~209~^2.20^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~211~^0.18^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~255~^75.17^3^0.54^~1~^~A~^^^1^74.10^75.90^2^72.81^77.51^~2, 3~^~07/01/2015~ -~32034~^~269~^0.18^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~303~^1.02^3^0.03^~1~^~A~^^^1^0.96^1.07^2^0.88^1.16^~2, 3~^~07/01/2015~ -~32034~^~309~^1.12^3^0.05^~1~^~A~^^^1^1.01^1.20^2^0.87^1.35^~2, 3~^~07/01/2015~ -~32034~^~323~^0.10^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32034~^~418~^0.77^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~203~^6.89^3^0.32^~1~^~A~^^^1^6.30^7.42^2^5.49^8.28^~2, 3~^~07/01/2015~ -~32035~^~204~^11.10^3^0.30^~1~^~A~^^^1^10.70^11.70^2^9.78^12.41^~2, 3~^~07/01/2015~ -~32035~^~205~^6.96^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~207~^1.58^3^0.08^~1~^~A~^^^1^1.42^1.67^2^1.23^1.92^~2, 3~^~07/01/2015~ -~32035~^~209~^2.50^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~211~^0.28^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~255~^73.47^3^0.20^~1~^~A~^^^1^73.10^73.80^2^72.59^74.33^~2, 3~^~07/01/2015~ -~32035~^~269~^0.28^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~303~^0.98^3^0.04^~1~^~A~^^^1^0.89^1.05^2^0.78^1.18^~2, 3~^~07/01/2015~ -~32035~^~309~^0.73^3^0.01^~1~^~A~^^^1^0.70^0.76^2^0.66^0.80^~2, 3~^~07/01/2015~ -~32035~^~323~^0.29^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~32035~^~418~^0.38^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32036~^~203~^9.29^3^0.08^~1~^~A~^^^1^9.13^9.38^2^8.93^9.65^~2, 3~^~07/01/2015~ -~32036~^~204~^22.90^3^0.31^~1~^~A~^^^1^22.27^23.25^2^21.54^24.25^~2, 3~^~07/01/2015~ -~32036~^~205~^21.07^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~207~^2.68^3^9.0e-03^~1~^~A~^^^1^2.66^2.69^2^2.63^2.71^~2, 3~^~07/01/2015~ -~32036~^~209~^16.05^2^^~1~^~A~^^^1^16.00^16.10^1^^^^~07/01/2015~ -~32036~^~210~^0.87^2^^~1~^~A~^^^1^0.86^0.88^1^^^^~07/01/2015~ -~32036~^~211~^0.59^2^^~1~^~A~^^^1^0.58^0.60^1^^^^~07/01/2015~ -~32036~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~32036~^~213~^1.28^2^^~1~^~A~^^^1^1.27^1.29^1^^^^~07/01/2015~ -~32036~^~214~^0.36^2^^~1~^~A~^^^1^0.36^0.36^^^^^~07/01/2015~ -~32036~^~255~^44.06^3^0.32^~1~^~A~^^^1^43.43^44.47^2^42.68^45.44^~2, 3~^~07/01/2015~ -~32036~^~269~^3.10^2^^~1~^~A~^^^1^3.09^3.11^1^^^^~07/01/2015~ -~32036~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~32036~^~303~^1.84^3^0.02^~1~^~A~^^^1^1.80^1.87^2^1.74^1.93^~2, 3~^~07/01/2015~ -~32036~^~309~^0.94^3^0.02^~1~^~A~^^^1^0.91^0.99^2^0.83^1.05^~2, 3~^~07/01/2015~ -~32036~^~418~^0.64^3^9.0e-03^~1~^~A~^^^1^0.62^0.65^2^0.59^0.67^~2, 3~^~07/01/2015~ -~33862~^~203~^10.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~204~^27.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~205~^57.60^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33862~^~207~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~255~^2.10^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~269~^54.00^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~303~^9.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~309~^5.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~323~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~418~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~573~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~578~^1.53^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33863~^~203~^10.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~204~^27.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~205~^57.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~207~^3.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~255~^2.40^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~269~^57.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~303~^9.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~309~^5.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~323~^6.90^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~418~^1.54^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~573~^6.90^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~578~^1.54^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33864~^~203~^2.73^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~204~^6.83^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~205~^14.42^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~207~^0.35^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~255~^75.20^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33864~^~269~^14.42^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~303~^2.33^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~309~^1.29^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~323~^1.17^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~418~^0.39^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~573~^1.17^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~578~^0.39^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33865~^~203~^2.72^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~204~^7.10^0^^~4~^~NR~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~205~^14.34^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~207~^0.35^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~255~^75.34^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33865~^~269~^14.34^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~303~^2.32^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~309~^1.28^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~323~^1.17^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~418~^0.39^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~573~^1.17^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~578~^0.39^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33866~^~203~^12.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~204~^26.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~205~^53.50^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33866~^~207~^5.20^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~255~^2.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~269~^12.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~303~^7.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~309~^5.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~323~^4.46^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~418~^1.49^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~578~^1.49^0^^~9~^~MC~^^^^^^^^^^~10/01/2016~ -~33867~^~203~^11.30^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~204~^26.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~205~^57.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~207~^3.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~255~^2.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~269~^57.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~303~^7.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~309~^4.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~323~^4.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33867~^~418~^1.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~573~^4.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33867~^~578~^1.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~203~^10.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~204~^25.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~205~^57.10^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~207~^4.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~255~^2.50^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~269~^57.10^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~303~^9.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~309~^3.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~323~^4.41^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~418~^1.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~573~^4.41^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33868~^~578~^1.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33869~^~203~^11.10^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~204~^25.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~205~^56.30^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~207~^4.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~255~^2.90^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~269~^56.30^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~303~^10.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~309~^4.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~323~^4.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~418~^1.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~573~^4.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33869~^~578~^1.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33870~^~203~^15.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~204~^21.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~205~^56.00^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33870~^~207~^4.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~255~^2.70^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~269~^5.40^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~303~^9.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~309~^5.70^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~323~^4.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~418~^1.42^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~573~^4.30^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~578~^1.42^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33871~^~203~^15.36^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~204~^27.65^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~205~^52.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~207~^2.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~255~^2.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~269~^52.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33871~^~303~^10.20^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~309~^3.84^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~323~^10.30^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~418~^1.54^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~573~^10.31^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~578~^1.54^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33872~^~203~^12.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~204~^25.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~205~^55.60^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~207~^3.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~255~^2.90^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~269~^55.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33872~^~303~^9.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~309~^4.50^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~323~^6.75^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~418~^1.70^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~573~^6.75^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~578~^1.70^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33873~^~203~^13.90^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~204~^26.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~205~^55.68^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~33873~^~207~^2.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~255~^1.82^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~269~^7.60^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~303~^9.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~309~^5.00^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~323~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~418~^1.49^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~573~^4.50^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~578~^1.49^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33874~^~203~^1.97^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~204~^3.34^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~205~^7.21^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~207~^0.52^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~255~^87.50^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33874~^~269~^7.23^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~303~^0.33^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~309~^0.98^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~323~^1.86^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~418~^0.16^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~573~^1.86^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33874~^~578~^0.16^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~203~^1.97^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~204~^3.34^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~205~^7.19^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~207~^0.27^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~255~^87.23^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~269~^7.21^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~303~^0.33^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~309~^0.98^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~323~^1.86^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~418~^0.16^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~573~^1.86^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~578~^0.16^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33876~^~203~^1.38^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~204~^3.48^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~205~^7.39^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~207~^0.32^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~255~^87.78^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~269~^7.39^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~303~^1.18^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~309~^0.66^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~323~^0.63^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~418~^0.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~573~^0.63^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~578~^0.20^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~203~^10.80^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~204~^27.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~205~^57.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~207~^3.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~255~^2.40^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~269~^57.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~303~^9.20^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~309~^5.10^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~323~^6.90^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~418~^1.54^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~573~^6.90^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~578~^1.54^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33878~^~203~^1.06^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~33878~^~204~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~33878~^~205~^20.41^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~33878~^~207~^0.62^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~209~^2.83^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~255~^77.91^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~269~^14.27^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~303~^0.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~309~^0.12^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~323~^0.49^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~341~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~342~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~343~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~344~^0.04^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~345~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~346~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~347~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33881~^~203~^7.50^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~204~^4.90^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~205~^78.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~33881~^~207~^0.93^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~255~^8.61^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~269~^0.12^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~303~^47.53^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~309~^1.84^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~323~^5.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~418~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~35001~^~203~^3.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~204~^31.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~205~^13.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35001~^~207~^4.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35001~^~255~^47.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~303~^0.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~309~^0.18^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~323~^2.36^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~203~^21.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~204~^18.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~205~^0.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35003~^~207~^3.60^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35003~^~255~^55.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~303~^4.55^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~309~^3.83^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~418~^4.83^1^^~13~^~AI~^^^^^^^^^^~05/01/2004~ -~35004~^~203~^3.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~204~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35004~^~207~^3.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35004~^~255~^90.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~303~^3.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~203~^20.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~204~^8.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35007~^~207~^0.40^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35007~^~255~^71.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~303~^7.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~203~^25.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~204~^3.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35008~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35008~^~255~^70.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~303~^6.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35009~^~203~^69.86^2^^~6~^~JA~^^^2^66.63^73.10^1^^^^~07/01/2007~ -~35009~^~204~^5.34^2^^~6~^~JA~^^^2^2.30^8.37^1^^^^~07/01/2007~ -~35009~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35009~^~207~^2.69^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~255~^22.39^2^^~6~^~JA~^^^2^21.48^23.30^1^^^^~07/01/2007~ -~35009~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~303~^72.35^2^^~6~^~JA~^^^2^53.00^91.70^1^^^^~07/01/2007~ -~35009~^~309~^7.80^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~07/01/2008~ -~35009~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35009~^~418~^7.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35009~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~203~^19.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35010~^~204~^23.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35010~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~35010~^~207~^1.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35010~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~255~^55.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35010~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35010~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~203~^26.50^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~204~^0.50^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35011~^~207~^0.60^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35011~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~255~^72.50^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35011~^~303~^25.90^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~35011~^~309~^2.76^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~341~^0.00^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~342~^0.00^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~343~^0.00^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~418~^2.59^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~203~^19.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35012~^~204~^21.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35012~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35012~^~207~^1.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35012~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~255~^57.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35012~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35012~^~303~^2.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35013~^~203~^18.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35013~^~204~^3.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35013~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35013~^~207~^1.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35013~^~255~^74.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35014~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~204~^100.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35014~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35014~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~210~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~35014~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~255~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35014~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~323~^8.27^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35014~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35014~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35014~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35015~^~203~^0.84^3^0.54^~11~^~JO~^^^1^0.29^1.38^1^-6.12^7.79^~4~^~04/01/2006~ -~35015~^~204~^1.07^3^0.29^~11~^~JO~^^^1^0.77^1.36^1^-2.68^4.81^~4~^~04/01/2006~ -~35015~^~205~^9.84^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35015~^~207~^0.21^2^^~1~^~A~^^^1^0.15^0.27^1^^^^~04/01/2006~ -~35015~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~210~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~04/01/2006~ -~35015~^~211~^1.69^2^^~1~^~A~^^^1^0.80^2.57^1^^^^~04/01/2006~ -~35015~^~212~^1.95^2^^~1~^~A~^^^1^1.54^2.37^1^^^^~04/01/2006~ -~35015~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~255~^88.05^3^0.50^~11~^~JO~^^^1^87.54^88.56^1^81.59^94.49^~4~^~04/01/2006~ -~35015~^~269~^3.65^2^^~1~^~A~^^^1^2.36^4.94^1^^^^~04/01/2006~ -~35015~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~303~^0.21^3^0.06^~11~^~JO~^^^1^0.15^0.27^1^-0.56^0.98^~1, 4~^~04/01/2006~ -~35015~^~309~^0.15^3^0.04^~11~^~JO~^^^1^0.11^0.20^1^-0.45^0.75^~4~^~04/01/2006~ -~35015~^~323~^0.91^2^^~1~^~A~^^^1^0.70^1.13^1^^^^~04/01/2006~ -~35015~^~341~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2006~ -~35015~^~342~^0.05^2^^~1~^~A~^^^1^0.03^0.07^1^^^^~04/01/2006~ -~35015~^~343~^0.02^2^^~1~^~A~^^^1^0.01^0.03^1^^^^~04/01/2006~ -~35015~^~344~^0.02^2^^~1~^~A~^^^1^0.01^0.02^1^^^~1~^~04/01/2006~ -~35015~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~346~^0.08^2^^~1~^~A~^^^1^0.08^0.08^1^^^^~04/01/2006~ -~35015~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35015~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35015~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35015~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35016~^~203~^15.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~204~^1.75^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35016~^~207~^1.65^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35016~^~255~^80.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~303~^4.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~203~^0.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~204~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~205~^10.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35017~^~207~^0.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35017~^~255~^88.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~303~^1.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~203~^6.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~204~^84.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35021~^~207~^1.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35021~^~255~^7.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~303~^4.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~203~^10.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~204~^31.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35022~^~207~^0.60^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35022~^~255~^57.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~303~^4.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~203~^15.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~204~^3.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~205~^6.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35023~^~207~^2.90^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35023~^~255~^71.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35023~^~303~^15.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~203~^3.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~204~^0.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~205~^4.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35024~^~207~^0.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35024~^~255~^90.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~303~^0.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~309~^0.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~203~^13.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~204~^22.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35025~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35025~^~255~^62.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~303~^2.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~203~^17.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~204~^1.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35026~^~207~^2.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35026~^~255~^78.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~303~^16.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~203~^2.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~204~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~205~^8.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35027~^~207~^1.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35027~^~255~^87.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~303~^0.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~203~^13.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~204~^0.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~205~^4.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35028~^~207~^2.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35028~^~255~^78.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~303~^16.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~203~^1.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~204~^0.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~205~^12.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35029~^~207~^0.40^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35029~^~255~^86.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~303~^1.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~203~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~204~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~205~^12.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35030~^~207~^0.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35030~^~255~^86.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~303~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~203~^11.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~204~^5.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35034~^~207~^1.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35034~^~255~^80.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~303~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~203~^3.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~204~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~205~^6.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35038~^~207~^2.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35038~^~255~^87.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~303~^2.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~203~^11.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~204~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~205~^2.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35039~^~207~^3.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35039~^~255~^81.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~303~^3.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~203~^60.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~204~^6.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~205~^2.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35040~^~207~^2.90^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35040~^~255~^27.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~203~^9.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~204~^1.93^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~205~^4.47^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35041~^~207~^2.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35041~^~255~^81.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~303~^2.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~203~^44.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~204~^34.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35042~^~207~^2.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35042~^~255~^18.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~203~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~204~^0.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~205~^8.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35043~^~207~^0.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35043~^~255~^90.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~303~^0.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~203~^17.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~204~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35046~^~207~^1.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35046~^~255~^80.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~203~^5.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~204~^42.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~205~^6.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35047~^~207~^0.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35047~^~255~^45.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~303~^1.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~203~^6.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~204~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~205~^6.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35048~^~207~^0.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35048~^~255~^86.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~303~^1.52^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~309~^0.12^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~203~^22.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~204~^1.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35049~^~207~^1.41^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35049~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~255~^74.79^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35049~^~303~^3.28^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~309~^2.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~203~^5.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~204~^2.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~205~^22.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35050~^~207~^1.40^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35050~^~255~^67.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~203~^24.38^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~204~^4.89^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~205~^3.43^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35051~^~207~^1.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35051~^~255~^66.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~303~^6.77^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~309~^6.07^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~418~^71.00^1^^~13~^~AI~^^^^^^^^^^~05/01/2004~ -~35052~^~203~^3.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~204~^0.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~205~^16.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35052~^~207~^2.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35052~^~255~^77.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~203~^7.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~204~^1.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35053~^~207~^2.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35053~^~255~^73.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~203~^12.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~204~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35054~^~207~^1.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35054~^~255~^84.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~303~^4.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~309~^1.43^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35055~^~203~^82.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~204~^2.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35055~^~207~^3.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2006~ -~35055~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~255~^11.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35055~^~303~^49.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35056~^~203~^26.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~204~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35056~^~207~^3.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35056~^~255~^69.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~303~^12.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35057~^~203~^0.56^4^0.42^~6~^~JA~^^^3^0.00^1.81^3^-0.80^1.92^~4~^~05/01/2007~ -~35057~^~204~^99.60^4^0.26^~6~^~JA~^^^3^98.95^100.07^3^98.75^100.44^~4~^~05/01/2007~ -~35057~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35057~^~207~^0.00^3^0.00^~11~^~JO~^^^3^0.00^0.00^3^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~255~^0.02^4^0.01^~6~^~JA~^^^3^0.00^0.07^3^-0.04^0.07^~1, 4~^~05/01/2007~ -~35057~^~303~^0.00^3^0.00^~6~^~JA~^^^3^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~309~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~05/01/2007~ -~35057~^~323~^10.28^3^0.20^~1~^~A~^^^2^9.87^10.55^2^9.38^11.17^~4~^~05/01/2007~ -~35057~^~341~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2007~ -~35057~^~342~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~343~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~344~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~345~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~346~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~347~^0.00^3^0.00^~1~^~A~^^^2^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35057~^~418~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35058~^~203~^11.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35058~^~204~^2.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35058~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35058~^~207~^2.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35058~^~255~^80.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35058~^~303~^20.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~203~^22.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~204~^5.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35059~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35059~^~255~^71.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35059~^~303~^4.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~203~^16.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~204~^8.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~205~^4.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35060~^~207~^1.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35060~^~255~^69.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~303~^2.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~203~^4.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~204~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~205~^9.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35063~^~207~^1.90^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35063~^~255~^83.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~203~^15.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~204~^10.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35064~^~207~^2.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35064~^~255~^68.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~203~^30.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~204~^15.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35065~^~207~^2.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35065~^~255~^51.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~303~^1.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~203~^23.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~204~^5.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35066~^~207~^3.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35066~^~255~^66.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~303~^1.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~203~^39.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~204~^30.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35067~^~207~^3.60^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35067~^~255~^23.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~303~^4.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~203~^16.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~204~^8.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~205~^4.30^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35068~^~207~^1.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35068~^~255~^69.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~303~^2.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35069~^~203~^20.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35069~^~204~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35069~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35069~^~207~^0.40^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35069~^~255~^79.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~203~^13.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~204~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35070~^~207~^2.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35070~^~255~^80.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~303~^0.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~203~^28.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~204~^3.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35071~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35071~^~255~^67.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~303~^19.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~203~^18.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~204~^3.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~205~^2.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35072~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35072~^~255~^74.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~303~^13.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~203~^7.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~204~^2.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~205~^5.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35073~^~207~^0.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35073~^~255~^84.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~303~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~203~^2.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~204~^0.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~205~^6.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35074~^~207~^0.80^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35074~^~255~^89.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~303~^0.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~203~^19.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~204~^3.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35075~^~207~^1.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35075~^~255~^75.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35075~^~303~^4.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~203~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~204~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~205~^0.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~207~^0.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35078~^~255~^99.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~303~^0.08^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~309~^0.04^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~418~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~203~^57.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~204~^2.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35079~^~207~^1.60^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35079~^~255~^38.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~303~^43.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~203~^21.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~204~^2.66^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35080~^~207~^0.64^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35080~^~255~^75.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~303~^2.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~203~^19.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~204~^13.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35081~^~207~^2.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35081~^~255~^65.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~303~^9.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~203~^16.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~204~^24.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35082~^~207~^0.70^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35082~^~255~^58.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~303~^9.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~203~^21.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~204~^3.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35083~^~207~^1.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35083~^~255~^71.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~303~^14.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~203~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~204~^100.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35084~^~207~^0.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35084~^~255~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~203~^0.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~204~^96.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35085~^~207~^0.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35085~^~255~^2.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35085~^~303~^0.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~203~^12.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~204~^46.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35086~^~207~^0.10^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35086~^~255~^40.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~203~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~204~^100.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35087~^~207~^0.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35087~^~255~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~303~^0.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~203~^11.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~204~^4.40^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~205~^5.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35088~^~207~^3.40^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35088~^~255~^76.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~303~^8.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~203~^18.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~204~^6.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35089~^~207~^2.20^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35089~^~255~^72.80^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~303~^0.29^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~309~^0.99^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35091~^~203~^18.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35091~^~204~^3.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35091~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35091~^~207~^1.50^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35091~^~255~^76.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35091~^~303~^3.90^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35092~^~203~^2.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35092~^~204~^61.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35092~^~205~^8.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35092~^~207~^0.30^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35092~^~255~^28.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35092~^~303~^1.30^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~203~^6.10^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~204~^1.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~205~^20.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35093~^~207~^2.90^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35093~^~255~^68.70^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~303~^2.60^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35130~^~203~^0.66^2^^~1~^~A~^^^1^0.51^0.81^1^^^^~04/01/2004~ -~35130~^~204~^0.49^2^^~1~^~A~^^^1^0.42^0.56^1^^^^~04/01/2004~ -~35130~^~205~^11.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~207~^0.44^2^^~1~^~A~^^^1^0.43^0.45^1^^^^~04/01/2004~ -~35130~^~209~^8.08^2^^~1~^~A~^^^1^7.92^8.24^1^^^^~04/01/2004~ -~35130~^~210~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~255~^86.67^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~269~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~303~^2.92^2^^~1~^~A~^^^1^1.88^3.96^1^^^^~04/01/2004~ -~35130~^~309~^0.76^2^^~1~^~A~^^^1^0.35^1.17^1^^^^~04/01/2004~ -~35130~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35131~^~203~^10.40^2^^~1~^~A~^^^1^8.81^11.99^1^^^^~04/01/2004~ -~35131~^~204~^5.44^2^^~1~^~A~^^^1^4.27^6.61^1^^^^~04/01/2004~ -~35131~^~205~^76.93^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~207~^1.54^2^^~1~^~A~^^^1^1.43^1.64^1^^^^~04/01/2004~ -~35131~^~209~^63.62^2^^~1~^~A~^^^1^60.37^66.87^1^^^^~04/01/2004~ -~35131~^~210~^1.53^2^^~1~^~A~^^^1^1.44^1.62^1^^^^~04/01/2004~ -~35131~^~211~^0.16^2^^~1~^~A~^^^1^0.10^0.21^1^^^^~04/01/2004~ -~35131~^~212~^0.12^2^^~1~^~A~^^^1^0.07^0.17^1^^^~1~^~04/01/2004~ -~35131~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35131~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35131~^~255~^5.70^2^^~1~^~A~^^^1^4.03^7.36^1^^^^~04/01/2004~ -~35131~^~269~^1.81^2^^~1~^~A~^^^1^1.62^2.00^1^^^^~04/01/2004~ -~35131~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35131~^~303~^2.91^2^^~1~^~A~^^^1^2.25^3.58^1^^^^~04/01/2004~ -~35131~^~309~^2.91^2^^~1~^~A~^^^1^1.99^3.84^1^^^^~04/01/2004~ -~35131~^~323~^0.73^2^^~1~^~A~^^^1^0.63^0.83^1^^^^~04/01/2004~ -~35131~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35131~^~342~^3.21^2^^~1~^~A~^^^1^2.42^4.00^1^^^^~04/01/2004~ -~35131~^~343~^0.37^2^^~1~^~A~^^^1^0.37^0.37^^^^~1~^~04/01/2004~ -~35131~^~344~^0.37^2^^~1~^~A~^^^1^0.37^0.37^^^^~1~^~04/01/2004~ -~35131~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35131~^~346~^0.55^2^^~1~^~A~^^^1^0.37^0.73^1^^^~1~^~04/01/2004~ -~35131~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35132~^~203~^0.84^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~204~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~205~^4.06^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35132~^~207~^0.24^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~211~^1.30^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~212~^2.06^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~255~^94.66^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~269~^3.36^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~303~^0.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~309~^0.14^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~203~^0.81^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~204~^0.63^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~205~^8.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~207~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~210~^1.15^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35133~^~211~^0.60^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35133~^~212~^0.74^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35133~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35133~^~214~^0.11^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35133~^~255~^89.69^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~269~^2.60^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35133~^~303~^0.95^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~309~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~203~^9.88^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~204~^5.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~205~^74.93^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~207~^1.86^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~209~^48.18^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~210~^3.38^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~211~^1.00^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~212~^0.99^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~255~^8.10^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~269~^5.38^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~303~^1.92^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~309~^3.05^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~203~^9.72^3^0.22^~1~^~A~^^^1^9.29^10.06^2^8.74^10.70^~2, 3~^~04/01/2004~ -~35135~^~204~^5.18^3^0.37^~1~^~A~^^^1^4.67^5.91^2^3.56^6.78^~2, 3~^~04/01/2004~ -~35135~^~205~^75.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~207~^1.81^3^0.14^~1~^~A~^^^1^1.63^2.09^2^1.19^2.42^~2, 3~^~04/01/2004~ -~35135~^~209~^45.78^3^2.52^~1~^~A~^^^1^41.10^49.78^2^34.90^56.66^~2, 3~^~04/01/2004~ -~35135~^~210~^4.35^3^0.52^~1~^~A~^^^1^3.72^5.39^2^2.09^6.60^~2, 3~^~04/01/2004~ -~35135~^~211~^1.09^3^0.23^~1~^~A~^^^1^0.61^1.36^2^0.06^2.11^~2, 3~^~04/01/2004~ -~35135~^~212~^1.04^3^0.23^~1~^~A~^^^1^0.61^1.43^2^0.01^2.06^~2, 3~^~04/01/2004~ -~35135~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35135~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35135~^~255~^8.09^3^0.43^~1~^~A~^^^1^7.35^8.86^2^6.21^9.96^~2, 3~^~04/01/2004~ -~35135~^~269~^6.47^3^0.93^~1~^~A~^^^1^4.94^8.18^2^2.44^10.50^~2, 3~^~04/01/2004~ -~35135~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35135~^~303~^2.29^3^0.16^~1~^~A~^^^1^1.98^2.55^2^1.57^3.01^~2, 3~^~04/01/2004~ -~35135~^~309~^3.15^3^0.27^~1~^~A~^^^1^2.61^3.49^2^1.97^4.33^~2, 3~^~04/01/2004~ -~35135~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~203~^10.99^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~204~^5.04^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~205~^77.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~207~^1.40^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~209~^60.46^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~210~^1.16^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~211~^0.18^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~212~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~255~^5.42^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~269~^1.46^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~303~^3.79^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~309~^3.24^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~323~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~342~^5.06^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~343~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~344~^0.58^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~346~^1.08^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~203~^9.85^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~204~^5.88^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~205~^72.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~207~^1.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~209~^61.94^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~210~^1.20^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~211~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~212~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~255~^10.15^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~269~^1.56^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~303~^2.99^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~309~^3.10^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~323~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~342~^4.86^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~343~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~344~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~346~^0.99^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~203~^0.52^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~204~^0.20^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~205~^5.64^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35138~^~207~^0.29^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~210~^0.77^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~35138~^~211~^1.21^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~35138~^~212~^1.56^0^^~4~^~O~^^^^^^^^^^~05/01/2004~ -~35138~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~255~^93.35^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~269~^3.54^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~35138~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~303~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~309~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~203~^0.31^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~204~^0.15^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~205~^3.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35139~^~207~^0.10^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~210~^0.44^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~211~^0.69^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~212~^0.89^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~255~^96.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~269~^2.02^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~203~^4.29^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~204~^2.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~205~^39.47^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~207~^1.07^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~209~^28.25^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~210~^2.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~211~^0.82^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~212~^0.70^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~255~^52.96^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~269~^3.74^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~303~^1.11^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~309~^1.46^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~342~^1.33^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~346~^0.71^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~203~^33.43^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~204~^11.09^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~205~^0.08^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35141~^~207~^1.41^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~255~^54.00^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~303~^4.76^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~309~^5.93^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~323~^0.80^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~418~^4.44^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35142~^~203~^6.69^3^0.04^~1~^~A~^^^1^6.64^6.79^2^6.48^6.89^~2, 3~^~04/01/2004~ -~35142~^~204~^12.22^3^1.76^~1~^~A~^^^1^9.28^15.38^2^4.61^19.81^~2, 3~^~04/01/2004~ -~35142~^~205~^48.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~207~^1.25^3^0.29^~1~^~A~^^^1^0.67^1.64^2^-0.02^2.53^~2, 3~^~04/01/2004~ -~35142~^~209~^42.85^3^0.24^~1~^~A~^^^1^42.44^43.28^2^41.80^43.89^~2, 3~^~04/01/2004~ -~35142~^~210~^0.17^3^0.02^~1~^~A~^^^1^0.12^0.20^2^0.06^0.27^~2, 3~^~04/01/2004~ -~35142~^~211~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.04^0.14^~1, 2, 3~^~04/01/2004~ -~35142~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~214~^1.76^3^0.05^~1~^~A~^^^1^1.67^1.84^2^1.54^1.98^~2, 3~^~04/01/2004~ -~35142~^~255~^31.57^3^2.01^~1~^~A~^^^1^27.99^34.95^2^22.91^40.22^~2, 3~^~04/01/2004~ -~35142~^~269~^2.03^3^0.08^~1~^~A~^^^1^1.86^2.13^2^1.66^2.40^~2, 3~^~04/01/2004~ -~35142~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~303~^4.04^3^0.28^~1~^~A~^^^1^3.61^4.58^2^2.81^5.26^~2, 3~^~04/01/2004~ -~35142~^~309~^0.35^3^0.08^~1~^~A~^^^1^0.25^0.52^2^-0.01^0.71^~2, 3~^~04/01/2004~ -~35142~^~323~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~342~^0.54^3^0.16^~1~^~A~^^^1^0.37^0.87^2^-0.16^1.24^~1, 2, 3~^~04/01/2004~ -~35142~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2004~ -~35143~^~203~^7.28^2^^~1~^~A~^^^1^6.73^7.82^1^^^^~04/01/2004~ -~35143~^~204~^0.95^2^^~1~^~A~^^^1^0.74^1.17^1^^^^~04/01/2004~ -~35143~^~205~^49.94^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35143~^~207~^1.87^2^^~1~^~A~^^^1^1.70^2.04^1^^^^~04/01/2004~ -~35143~^~209~^43.02^2^^~1~^~A~^^^1^40.05^45.99^1^^^^~04/01/2004~ -~35143~^~210~^0.22^2^^~1~^~A~^^^1^0.19^0.26^1^^^^~04/01/2004~ -~35143~^~211~^0.15^2^^~1~^~A~^^^1^0.15^0.16^1^^^^~04/01/2004~ -~35143~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~214~^2.37^2^^~1~^~A~^^^1^1.91^2.84^1^^^^~04/01/2004~ -~35143~^~255~^39.96^2^^~1~^~A~^^^1^36.76^43.16^1^^^^~04/01/2004~ -~35143~^~269~^2.75^2^^~1~^~A~^^^1^2.25^3.25^1^^^^~04/01/2004~ -~35143~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~303~^3.81^2^^~1~^~A~^^^1^2.75^4.87^1^^^^~04/01/2004~ -~35143~^~309~^0.32^2^^~1~^~A~^^^1^0.27^0.36^1^^^^~04/01/2004~ -~35143~^~323~^0.19^2^^~1~^~A~^^^1^0.00^0.37^1^^^~1~^~04/01/2004~ -~35143~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35143~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~203~^8.71^2^^~1~^~A~^^^1^5.25^12.17^1^^^^~04/01/2004~ -~35144~^~204~^3.78^2^^~1~^~A~^^^1^3.73^3.83^1^^^^~04/01/2004~ -~35144~^~205~^8.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~207~^0.27^2^^~1~^~A~^^^1^0.14^0.41^1^^^^~04/01/2004~ -~35144~^~209~^7.77^2^^~1~^~A~^^^1^6.89^8.66^1^^^^~04/01/2004~ -~35144~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~214~^0.21^2^^~1~^~A~^^^1^0.13^0.28^1^^^^~04/01/2004~ -~35144~^~255~^79.21^2^^~1~^~A~^^^1^76.13^82.29^1^^^^~04/01/2004~ -~35144~^~269~^0.21^2^^~1~^~A~^^^1^0.13^0.28^1^^^^~04/01/2004~ -~35144~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~303~^1.79^2^^~1~^~A~^^^1^1.39^2.19^1^^^^~04/01/2004~ -~35144~^~309~^1.85^2^^~1~^~A~^^^1^1.20^2.49^1^^^^~04/01/2004~ -~35144~^~323~^0.37^2^^~1~^~A~^^^1^0.37^0.37^^^^~1~^~04/01/2004~ -~35144~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35144~^~418~^0.82^2^^~1~^~A~^^^1^0.59^1.06^1^^^^~04/01/2004~ -~35145~^~203~^6.71^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~204~^2.06^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~205~^9.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~207~^0.26^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~209~^6.15^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~210~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~255~^81.58^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~269~^0.11^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~303~^0.81^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~309~^1.19^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~323~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~342~^0.76^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~418~^0.64^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~203~^8.62^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~204~^4.34^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~205~^7.27^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35146~^~207~^3.63^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~210~^0.25^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35146~^~211~^0.18^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35146~^~212~^0.18^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35146~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~35146~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~35146~^~255~^76.13^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~269~^0.61^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~35146~^~303~^1.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~309~^1.87^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~323~^0.37^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~418~^1.16^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~203~^6.28^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~204~^6.12^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~205~^18.12^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~207~^1.37^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~209~^12.27^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~210~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~211~^0.21^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~212~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~214~^0.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~255~^68.10^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~269~^0.99^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~303~^1.22^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~309~^1.48^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~418~^0.54^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~203~^8.82^2^^~1~^~A~^^^1^6.96^10.68^1^^^^~04/01/2004~ -~35148~^~204~^3.75^2^^~1~^~A~^^^1^3.18^4.32^1^^^^~04/01/2004~ -~35148~^~205~^10.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~207~^0.60^2^^~1~^~A~^^^1^0.41^0.80^1^^^^~04/01/2004~ -~35148~^~209~^6.55^2^^~1~^~A~^^^1^5.78^7.32^1^^^^~04/01/2004~ -~35148~^~210~^0.34^2^^~1~^~A~^^^1^0.31^0.38^1^^^^~04/01/2004~ -~35148~^~211~^0.09^2^^~1~^~A~^^^1^0.07^0.10^1^^^~1~^~04/01/2004~ -~35148~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~04/01/2004~ -~35148~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35148~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35148~^~255~^76.03^2^^~1~^~A~^^^1^72.86^79.20^1^^^^~04/01/2004~ -~35148~^~269~^0.51^2^^~1~^~A~^^^1^0.45^0.56^1^^^^~04/01/2004~ -~35148~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2004~ -~35148~^~303~^1.10^2^^~1~^~A~^^^1^0.94^1.25^1^^^^~04/01/2004~ -~35148~^~309~^1.55^2^^~1~^~A~^^^1^1.50^1.60^1^^^^~04/01/2004~ -~35148~^~323~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35149~^~203~^20.53^4^0.53^~1~^~A~^^^1^18.50^22.19^2^18.21^22.84^~2, 3~^~04/01/2006~ -~35149~^~204~^2.92^4^0.96^~1~^~A~^^^1^0.74^5.92^2^-1.22^7.07^~2, 3~^~04/01/2006~ -~35149~^~205~^1.81^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~35149~^~207~^1.30^4^4.0e-03^~1~^~A~^^^1^1.29^1.31^2^1.27^1.31^~2, 3~^~04/01/2006~ -~35149~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~255~^73.44^4^1.58^~1~^~A~^^^1^69.24^77.26^2^66.62^80.25^~2, 3~^~04/01/2006~ -~35149~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~303~^0.27^4^0.02^~1~^~A~^^^1^0.15^0.36^2^0.17^0.35^~2, 3~^~04/01/2006~ -~35149~^~309~^0.61^4^0.04^~1~^~A~^^^1^0.54^0.74^2^0.41^0.80^~2, 3~^~04/01/2006~ -~35149~^~323~^1.90^4^0.98^~1~^~A~^^^1^0.49^5.01^2^-2.35^6.15^~2, 3~^~06/01/2006~ -~35149~^~341~^0.03^4^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.06^0.11^~1, 2, 3~^~04/01/2006~ -~35149~^~342~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~346~^0.05^4^0.05^~1~^~A~^^^1^0.00^0.22^2^-0.18^0.29^~1, 2, 3~^~04/01/2006~ -~35149~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~418~^1.78^4^0.11^~1~^~A~^^^1^0.71^2.36^2^1.28^2.26^~2, 3~^~04/01/2006~ -~35149~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35149~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~203~^22.56^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~204~^5.57^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35150~^~207~^1.24^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~255~^69.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~303~^0.55^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~309~^0.41^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35150~^~323~^0.81^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35150~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35150~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35150~^~418~^8.52^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~203~^21.94^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~204~^7.28^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35151~^~207~^1.29^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~255~^69.64^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~303~^0.53^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~309~^0.52^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~323~^1.25^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35151~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~418~^7.82^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~203~^20.69^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~204~^3.67^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35152~^~207~^1.27^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~255~^72.34^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~303~^0.56^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~309~^0.54^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~323~^0.49^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~418~^8.08^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35152~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~203~^20.25^2^^~11~^~JO~^^^2^18.00^22.50^1^^^^~06/01/2006~ -~35153~^~204~^11.73^2^^~11~^~JO~^^^2^10.07^13.40^1^^^^~06/01/2006~ -~35153~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35153~^~207~^1.25^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~255~^65.96^2^^~11~^~JO~^^^2^63.60^68.32^1^^^^~06/01/2006~ -~35153~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~303~^0.79^2^^~11~^~JO~^^^2^0.67^0.90^1^^^^~06/01/2006~ -~35153~^~309~^0.52^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~323~^1.49^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35153~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~418~^7.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35154~^~203~^0.85^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~204~^0.33^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~205~^10.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35154~^~207~^0.56^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~209~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~210~^0.02^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~211~^1.90^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~212~^1.75^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~255~^88.21^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~269~^3.66^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~303~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~309~^0.28^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~323~^1.61^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~342~^0.37^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~343~^0.09^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35155~^~203~^1.22^2^^~1~^~A~^^^2^1.06^1.38^^^^^~04/01/2006~ -~35155~^~204~^0.76^2^^~1~^~A~^^^2^0.65^0.87^^^^^~04/01/2006~ -~35155~^~205~^12.31^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35155~^~207~^0.23^2^^~1~^~A~^^^2^0.20^0.26^^^^^~04/01/2006~ -~35155~^~209~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~210~^0.01^2^^~1~^~A~^^^2^0.00^0.02^^^^~1~^~04/01/2006~ -~35155~^~211~^3.10^2^^~1~^~A~^^^2^2.71^3.49^^^^^~04/01/2006~ -~35155~^~212~^3.35^2^^~1~^~A~^^^2^2.92^3.79^^^^^~04/01/2006~ -~35155~^~213~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~214~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~255~^85.48^2^^~1~^~A~^^^2^85.03^85.93^^^^^~04/01/2006~ -~35155~^~269~^6.46^2^^~1~^~A~^^^2^5.64^7.28^^^^^~04/01/2006~ -~35155~^~287~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~303~^0.37^2^^~1~^~A~^^^2^0.23^0.50^^^^^~04/01/2006~ -~35155~^~309~^0.20^2^^~1~^~A~^^^2^0.19^0.22^^^^^~04/01/2006~ -~35155~^~323~^1.69^2^^~1~^~A~^^^2^0.61^2.78^^^^^~04/01/2006~ -~35155~^~341~^0.01^2^^~1~^~A~^^^2^0.00^0.01^^^^~1~^~04/01/2006~ -~35155~^~342~^0.19^2^^~1~^~A~^^^2^0.06^0.33^^^^^~04/01/2006~ -~35155~^~343~^0.01^2^^~1~^~A~^^^2^0.00^0.02^^^^~1~^~04/01/2006~ -~35155~^~344~^0.04^2^^~1~^~A~^^^2^0.02^0.06^^^^^~04/01/2006~ -~35155~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~346~^0.46^2^^~1~^~A~^^^2^0.45^0.47^^^^^~04/01/2006~ -~35155~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^^^^~1~^~04/01/2006~ -~35155~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35156~^~203~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~204~^99.32^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35156~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~255~^0.25^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~309~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~323~^6.28^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35157~^~203~^27.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~204~^5.76^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35157~^~207~^1.96^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~255~^65.82^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~303~^1.90^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~309~^0.66^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~323~^0.61^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~418~^4.91^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35158~^~203~^14.66^2^^~6~^~JA~^^^2^8.00^21.31^1^^^^~04/01/2006~ -~35158~^~204~^2.88^2^^~6~^~JA~^^^2^0.76^5.00^1^^^^~04/01/2006~ -~35158~^~205~^4.89^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~207~^1.33^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~255~^76.24^2^^~6~^~JA~^^^2^68.68^83.80^1^^^^~04/01/2006~ -~35158~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~303~^5.95^2^^~6~^~JA~^^^2^0.90^11.00^1^^^^~04/01/2006~ -~35158~^~309~^2.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~323~^2.68^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35158~^~342~^0.02^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35158~^~418~^56.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35160~^~203~^52.06^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~204~^5.23^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~207~^3.15^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~255~^38.04^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~303~^11.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~309~^9.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~323~^0.09^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~344~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~418~^7.16^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35160~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~203~^59.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~204~^3.67^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~207~^4.68^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~255~^33.81^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~303~^11.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~309~^9.40^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~344~^0.03^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~418~^15.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~203~^22.63^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~204~^3.37^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~207~^1.23^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~255~^72.60^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~303~^4.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~309~^2.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~323~^0.69^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~344~^0.09^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~418~^7.05^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35162~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~203~^35.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~204~^25.08^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35164~^~207~^1.42^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~255~^35.48^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~303~^17.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~309~^3.10^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~323~^0.55^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~418~^5.85^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35164~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35165~^~203~^62.44^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~204~^13.44^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35165~^~207~^5.57^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~255~^20.59^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~287~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35165~^~303~^4.10^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~309~^5.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~323~^0.66^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~418~^18.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35165~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~203~^35.19^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~204~^7.26^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35166~^~207~^2.75^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~255~^56.49^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~303~^1.50^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~309~^1.10^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~323~^0.45^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~418~^7.43^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35166~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~203~^24.50^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~204~^4.75^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35167~^~207~^2.25^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~255~^69.41^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35167~^~303~^0.49^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~309~^0.75^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~323~^0.44^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~418~^4.98^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35168~^~203~^23.19^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~204~^12.95^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35168~^~207~^3.21^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~255~^61.52^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35168~^~303~^0.55^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~309~^0.77^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~323~^0.42^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~418~^3.65^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~203~^22.25^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~204~^2.84^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~35169~^~207~^1.58^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~255~^74.62^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~303~^0.50^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~309~^0.60^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~323~^0.44^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~418~^5.90^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35169~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~203~^23.63^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~204~^10.17^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35170~^~207~^0.80^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~255~^63.35^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35170~^~303~^17.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~309~^2.60^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~323~^0.27^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~342~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35171~^~203~^62.09^2^^~1~^~A~^^^2^60.88^63.31^1^^^^~07/01/2007~ -~35171~^~204~^14.38^2^^~1~^~A~^^^2^10.55^18.20^1^^^^~07/01/2007~ -~35171~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~35171~^~207~^3.69^2^^~1~^~A~^^^2^3.64^3.74^1^^^^~07/01/2007~ -~35171~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~255~^22.79^2^^~1~^~A~^^^2^18.12^27.45^1^^^^~07/01/2007~ -~35171~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35171~^~303~^2.20^2^^~1~^~A~^^^2^1.40^3.00^1^^^^~07/01/2007~ -~35171~^~309~^1.40^2^^~1~^~A~^^^2^1.20^1.60^1^^^^~07/01/2007~ -~35171~^~323~^0.82^2^^~1~^~A~^^^2^0.29^1.34^1^^^^~07/01/2007~ -~35171~^~341~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~342~^0.05^2^^~1~^~A~^^^2^0.01^0.09^1^^^~1~^~07/01/2007~ -~35171~^~343~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~344~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35171~^~418~^28.60^2^^~1~^~A~^^^2^26.70^30.50^1^^^^~07/01/2007~ -~35172~^~203~^29.45^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~204~^2.80^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~207~^0.78^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~213~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35172~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~255~^67.78^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~303~^9.06^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~309~^7.79^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~323~^0.79^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~418~^4.25^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35172~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~203~^20.14^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~204~^1.80^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35173~^~207~^0.75^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~255~^75.68^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35173~^~303~^7.17^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~309~^5.82^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~418~^3.45^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~203~^21.44^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~204~^1.30^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~205~^0.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2008~ -~35174~^~207~^0.94^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~255~^75.96^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~303~^2.61^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~309~^3.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~418~^1.15^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~203~^62.38^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~204~^2.31^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35175~^~207~^2.78^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~255~^34.92^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35175~^~303~^33.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~309~^5.00^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35176~^~203~^32.51^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~204~^1.80^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35176~^~207~^1.22^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~255~^64.28^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~303~^3.76^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~309~^5.06^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~323~^0.59^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~418~^1.67^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~203~^19.74^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~204~^2.10^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35177~^~207~^0.94^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~255~^76.54^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35177~^~303~^2.27^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~309~^4.16^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~418~^1.77^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~203~^30.56^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~204~^2.85^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35178~^~207~^1.32^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~214~^0.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~35178~^~255~^64.58^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~303~^2.68^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~309~^4.80^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~323~^0.47^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~418~^1.95^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35178~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~203~^2.89^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~204~^0.98^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~205~^33.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35179~^~207~^0.75^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~209~^0.87^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~211~^8.85^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~212~^5.38^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~255~^61.50^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~269~^14.22^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~303~^0.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~309~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~323~^0.75^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~342~^0.82^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~343~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~344~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35179~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~203~^77.27^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~204~^8.06^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~207~^10.58^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~255~^6.49^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35180~^~303~^2.96^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~309~^1.79^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~323~^2.41^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~342~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~418~^22.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~203~^21.11^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~204~^8.26^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~207~^1.24^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~255~^70.59^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~303~^0.64^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~309~^0.57^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~323~^2.15^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~342~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~418~^5.79^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35181~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35182~^~203~^6.81^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~204~^3.47^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~205~^9.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~207~^0.72^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~209~^6.57^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~210~^0.16^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~214~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~255~^79.78^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~269~^0.34^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~303~^1.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~309~^1.60^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~323~^0.30^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~341~^0.12^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~342~^0.23^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~343~^0.05^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~344~^0.02^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~418~^0.68^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35182~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35183~^~203~^14.48^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~204~^10.64^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~205~^66.27^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~207~^2.24^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~209~^24.99^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~210~^20.08^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~211~^0.69^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~212~^0.55^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~255~^6.36^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~269~^21.32^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~303~^2.61^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~309~^3.06^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~323~^0.44^0^^~4~^~O~^^^^^^^^^^~07/01/2006~ -~35183~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2006~ -~35183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~203~^56.19^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~204~^17.90^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~ -~35184~^~207~^8.25^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~255~^16.92^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~303~^5.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~309~^6.70^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~323~^4.51^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~342~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~418~^19.10^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35184~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35185~^~203~^8.38^2^^~1~^~A~^^^1^8.30^8.46^1^^^^~04/01/2006~ -~35185~^~204~^10.14^2^^~1~^~A~^^^1^9.39^10.89^1^^^^~04/01/2006~ -~35185~^~205~^46.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~207~^2.36^2^^~1~^~A~^^^1^1.74^2.98^1^^^^~04/01/2006~ -~35185~^~209~^43.29^2^^~1~^~A~^^^1^43.05^43.54^1^^^^~04/01/2006~ -~35185~^~210~^0.22^2^^~1~^~A~^^^1^0.15^0.29^1^^^^~04/01/2006~ -~35185~^~211~^0.09^2^^~1~^~A~^^^1^0.07^0.11^1^^^~1~^~04/01/2006~ -~35185~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~214~^1.22^2^^~1~^~A~^^^1^0.77^1.68^1^^^^~04/01/2006~ -~35185~^~255~^33.11^2^^~1~^~A~^^^1^32.55^33.67^1^^^^~04/01/2006~ -~35185~^~269~^1.54^2^^~1~^~A~^^^1^1.00^2.08^1^^^^~04/01/2006~ -~35185~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~303~^3.43^2^^~1~^~A~^^^1^3.38^3.48^1^^^^~04/01/2006~ -~35185~^~309~^0.47^2^^~1~^~A~^^^1^0.41^0.54^1^^^^~04/01/2006~ -~35185~^~323~^0.09^2^^~1~^~A~^^^1^0.06^0.12^1^^^^~04/01/2006~ -~35185~^~341~^0.03^2^^~1~^~A~^^^1^0.03^0.03^1^^^^~04/01/2006~ -~35185~^~342~^0.59^2^^~1~^~A~^^^1^0.42^0.77^1^^^^~04/01/2006~ -~35185~^~343~^0.12^2^^~1~^~A~^^^1^0.00^0.24^1^^^~1~^~04/01/2006~ -~35185~^~344~^0.02^2^^~1~^~A~^^^1^0.02^0.03^1^^^^~04/01/2006~ -~35185~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35185~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35186~^~203~^7.91^2^^~1~^~A~^^^1^7.46^8.36^1^^^^~04/01/2006~ -~35186~^~204~^8.31^2^^~1~^~A~^^^1^6.39^10.22^1^^^^~04/01/2006~ -~35186~^~205~^29.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~207~^1.92^2^^~1~^~A~^^^1^1.89^1.94^1^^^^~04/01/2006~ -~35186~^~209~^25.99^2^^~1~^~A~^^^1^25.88^26.11^1^^^^~04/01/2006~ -~35186~^~210~^0.37^2^^~1~^~A~^^^1^0.31^0.44^1^^^^~04/01/2006~ -~35186~^~211~^0.21^2^^~1~^~A~^^^1^0.17^0.24^1^^^^~04/01/2006~ -~35186~^~212~^0.25^2^^~1~^~A~^^^1^0.17^0.33^1^^^^~04/01/2006~ -~35186~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35186~^~214~^0.97^2^^~1~^~A~^^^1^0.73^1.21^1^^^^~04/01/2006~ -~35186~^~255~^52.51^2^^~1~^~A~^^^1^49.81^55.21^1^^^^~04/01/2006~ -~35186~^~269~^1.79^2^^~1~^~A~^^^1^1.61^1.98^1^^^^~04/01/2006~ -~35186~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35186~^~303~^1.80^2^^~1~^~A~^^^1^1.78^1.82^1^^^^~04/01/2006~ -~35186~^~309~^0.88^2^^~1~^~A~^^^1^0.81^0.95^1^^^^~04/01/2006~ -~35186~^~323~^0.20^2^^~1~^~A~^^^1^0.19^0.22^1^^^^~04/01/2006~ -~35186~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^1^^^~1~^~04/01/2006~ -~35186~^~342~^0.26^2^^~1~^~A~^^^1^0.18^0.33^1^^^^~04/01/2006~ -~35186~^~343~^0.08^2^^~1~^~A~^^^1^0.00^0.15^1^^^~1~^~04/01/2006~ -~35186~^~344~^0.04^2^^~1~^~A~^^^1^0.02^0.06^1^^^^~04/01/2006~ -~35186~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35186~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~04/01/2006~ -~35186~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2006~ -~35186~^~418~^0.23^2^^~1~^~A~^^^1^0.18^0.27^1^^^^~04/01/2006~ -~35187~^~203~^9.00^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~204~^1.05^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~205~^53.26^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~207~^2.92^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~209~^45.14^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~210~^0.37^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~211~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~212~^0.13^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~214~^2.35^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~255~^33.77^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~269~^3.01^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~303~^3.40^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~309~^0.53^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~323~^0.07^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~342~^0.50^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~344~^0.04^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35188~^~203~^22.13^3^1.97^~1~^~A~^^^1^18.39^25.11^2^13.62^30.63^~4~^~04/01/2006~ -~35188~^~204~^2.73^3^1.40^~1~^~A~^^^1^1.14^5.54^2^-3.32^8.78^~4~^~04/01/2006~ -~35188~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~207~^1.39^3^0.03^~1~^~A~^^^1^1.34^1.45^2^1.25^1.52^~4~^~04/01/2006~ -~35188~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~255~^72.82^3^1.86^~1~^~A~^^^1^69.38^75.78^2^64.79^80.85^~4~^~04/01/2006~ -~35188~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~303~^0.36^3^0.06^~1~^~A~^^^1^0.27^0.48^2^0.07^0.63^~4~^~04/01/2006~ -~35188~^~309~^0.75^3^0.08^~1~^~A~^^^1^0.62^0.91^2^0.38^1.12^~4~^~04/01/2006~ -~35188~^~323~^1.05^3^0.05^~1~^~A~^^^1^0.97^1.15^2^0.81^1.27^~4~^~04/01/2006~ -~35188~^~341~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 4~^~04/01/2006~ -~35188~^~342~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~04/01/2006~ -~35188~^~418~^2.55^3^0.21^~1~^~A~^^^1^2.13^2.82^2^1.63^3.45^~4~^~04/01/2006~ -~35188~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35188~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~35190~^~203~^60.62^2^^~1~^~A~^^^2^56.94^64.31^1^^^^~07/01/2007~ -~35190~^~204~^11.43^2^^~1~^~A~^^^2^11.03^11.83^1^^^^~07/01/2007~ -~35190~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35190~^~207~^6.19^2^^~1~^~A~^^^2^5.11^7.26^1^^^^~07/01/2007~ -~35190~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~255~^23.93^2^^~1~^~A~^^^2^21.00^26.86^1^^^^~07/01/2007~ -~35190~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~303~^1.06^2^^~1~^~A~^^^2^0.73^1.40^1^^^^~07/01/2007~ -~35190~^~309~^1.14^2^^~1~^~A~^^^2^0.88^1.40^1^^^^~07/01/2007~ -~35190~^~323~^1.20^2^^~1~^~A~^^^2^0.63^1.78^1^^^^~07/01/2007~ -~35190~^~341~^0.03^2^^~1~^~A~^^^2^0.00^0.05^1^^^~1~^~07/01/2007~ -~35190~^~342~^0.03^2^^~1~^~A~^^^2^0.00^0.06^1^^^~1~^~07/01/2007~ -~35190~^~343~^0.03^2^^~1~^~A~^^^2^0.00^0.05^1^^^~1~^~07/01/2007~ -~35190~^~344~^0.01^2^^~1~^~A~^^^2^0.00^0.03^1^^^~1~^~07/01/2007~ -~35190~^~345~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35190~^~346~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35190~^~347~^0.00^2^^~1~^~A~^^^2^0.00^0.00^1^^^~1~^~07/01/2007~ -~35190~^~418~^18.10^2^^~1~^~A~^^^2^14.30^21.90^1^^^^~07/01/2007~ -~35190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35192~^~203~^0.52^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~204~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~205~^16.23^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35192~^~207~^1.27^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~209~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~210~^0.41^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~211~^1.19^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~212~^0.98^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~255~^81.83^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~269~^2.58^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~303~^1.80^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~309~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~323~^0.23^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35192~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~203~^0.99^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2006~ -~35193~^~204~^0.29^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2006~ -~35193~^~205~^32.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35193~^~207~^1.32^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~209~^0.24^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~210~^1.72^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~211~^1.58^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~212~^17.57^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~255~^65.40^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~269~^20.87^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~303~^3.55^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~309~^0.25^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~323~^0.36^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35193~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~203~^1.71^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~204~^0.69^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~205~^81.98^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35194~^~207~^3.98^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~209~^0.91^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~210~^4.39^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~211~^3.48^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~212~^42.83^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~255~^11.64^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~269~^50.70^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~303~^3.64^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~309~^12.10^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~323~^0.76^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~342~^0.03^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35194~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~35194~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~35195~^~203~^1.18^2^^~1~^~A~^^^1^0.76^1.60^1^^^^~05/01/2007~ -~35195~^~204~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35195~^~205~^5.14^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35195~^~207~^1.03^2^^~1~^~A~^^^1^0.99^1.07^1^^^^~05/01/2007~ -~35195~^~209~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35195~^~210~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35195~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35195~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35195~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35195~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35195~^~255~^92.65^2^^~1~^~A~^^^1^92.29^93.01^1^^^^~05/01/2007~ -~35195~^~269~^0.22^2^^~1~^~A~^^^1^0.22^0.22^1^^^^~05/01/2007~ -~35195~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35195~^~303~^0.91^2^^~1~^~A~^^^1^0.30^1.52^1^^^^~05/01/2007~ -~35195~^~309~^0.24^2^^~1~^~A~^^^1^0.20^0.29^1^^^^~05/01/2007~ -~35196~^~203~^4.21^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~204~^0.28^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~205~^6.96^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35196~^~207~^3.32^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~255~^85.23^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~303~^1.16^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~309~^0.72^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~203~^4.06^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~204~^0.16^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~205~^7.47^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35197~^~207~^3.30^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~255~^85.02^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~303~^1.15^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~309~^0.61^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~203~^0.12^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~204~^0.11^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~205~^10.17^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35198~^~207~^0.38^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~210~^0.38^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~211~^0.44^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~212~^0.21^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~255~^89.22^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~269~^1.02^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~303~^0.20^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~309~^0.14^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~203~^0.39^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~204~^0.31^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~205~^21.57^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35199~^~207~^1.90^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~255~^75.83^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~203~^2.62^2^^~1~^~A~^^^1^2.60^2.65^1^^^^~05/01/2007~ -~35200~^~204~^0.36^2^^~1~^~A~^^^1^0.34^0.38^1^^^^~05/01/2007~ -~35200~^~205~^35.67^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35200~^~207~^0.65^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~209~^23.47^2^^~1~^~A~^^^1^21.79^25.16^1^^^^~05/01/2007~ -~35200~^~210~^0.16^2^^~1~^~A~^^^1^0.07^0.24^1^^^~1~^~05/01/2007~ -~35200~^~211~^0.42^2^^~1~^~A~^^^1^0.07^0.76^1^^^~1~^~05/01/2007~ -~35200~^~212~^0.17^2^^~1~^~A~^^^1^0.07^0.27^1^^^~1~^~05/01/2007~ -~35200~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35200~^~214~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35200~^~255~^60.69^2^^~1~^~A~^^^1^57.18^64.20^1^^^^~05/01/2007~ -~35200~^~269~^0.82^2^^~1~^~A~^^^1^0.46^1.18^1^^^^~05/01/2007~ -~35200~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35200~^~303~^1.27^2^^~1~^~A~^^^1^1.25^1.29^1^^^^~05/01/2007~ -~35200~^~309~^0.37^2^^~1~^~A~^^^1^0.35^0.39^1^^^^~05/01/2007~ -~35201~^~203~^1.64^2^^~1~^~A~^^^1^1.43^1.86^1^^^^~05/01/2007~ -~35201~^~204~^0.32^2^^~1~^~A~^^^1^0.28^0.35^1^^^^~05/01/2007~ -~35201~^~205~^29.99^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35201~^~207~^0.36^2^^~1~^~A~^^^1^0.29^0.43^1^^^^~05/01/2007~ -~35201~^~209~^15.80^2^^~1~^~A~^^^1^12.39^19.21^1^^^^~05/01/2007~ -~35201~^~210~^0.75^2^^~1~^~A~^^^1^0.71^0.80^1^^^^~05/01/2007~ -~35201~^~211~^0.38^2^^~1~^~A~^^^1^0.07^0.68^1^^^~1~^~05/01/2007~ -~35201~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35201~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35201~^~214~^3.53^2^^~1~^~A~^^^1^2.00^5.07^1^^^^~05/01/2007~ -~35201~^~255~^67.68^2^^~1~^~A~^^^1^65.99^69.38^1^^^^~05/01/2007~ -~35201~^~269~^4.74^2^^~1~^~A~^^^1^2.86^6.62^1^^^^~05/01/2007~ -~35201~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35201~^~303~^0.95^2^^~1~^~A~^^^1^0.95^0.96^1^^^^~05/01/2007~ -~35201~^~309~^0.28^2^^~1~^~A~^^^1^0.26^0.29^1^^^^~05/01/2007~ -~35202~^~203~^1.12^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~204~^0.28^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~205~^13.85^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35202~^~207~^0.28^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~211~^2.43^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~212~^3.04^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~255~^84.48^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~269~^5.54^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~303~^0.64^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~309~^0.47^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~323~^0.57^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~341~^0.04^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~342~^2.22^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~343~^2.40^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35202~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~203~^1.60^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~204~^0.34^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~205~^38.22^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35203~^~207~^1.18^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~211~^1.34^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~212~^1.16^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~255~^58.66^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~269~^2.58^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~303~^1.06^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~309~^0.25^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~323~^5.84^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~341~^0.05^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~342~^1.34^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~343~^0.14^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~344~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35203~^~346~^0.07^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35204~^~203~^3.04^3^0.72^~1~^~A~^^^1^2.31^4.49^2^-0.07^6.15^~4~^~05/01/2007~ -~35204~^~204~^1.69^3^0.22^~1~^~A~^^^1^1.37^2.12^2^0.72^2.65^~4~^~05/01/2007~ -~35204~^~205~^33.62^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35204~^~207~^0.93^3^0.16^~1~^~A~^^^1^0.68^1.24^2^0.21^1.64^~4~^~05/01/2007~ -~35204~^~210~^0.07^3^0.00^~1~^~A~^^^1^0.07^0.07^2^0.07^0.07^~1, 4~^~05/01/2007~ -~35204~^~211~^4.95^3^0.27^~1~^~A~^^^1^4.40^5.30^2^3.75^6.13^~4~^~05/01/2007~ -~35204~^~212~^4.35^3^0.35^~1~^~A~^^^1^3.88^5.05^2^2.81^5.88^~4~^~05/01/2007~ -~35204~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35204~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35204~^~255~^60.72^3^1.64^~1~^~A~^^^1^58.51^63.94^2^53.64^67.79^~4~^~05/01/2007~ -~35204~^~269~^9.37^3^0.55^~1~^~A~^^^1^8.35^10.26^2^6.98^11.75^~2, 3~^~05/01/2007~ -~35204~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35204~^~303~^0.69^3^0.12^~1~^~A~^^^1^0.49^0.90^2^0.16^1.20^~4~^~05/01/2007~ -~35204~^~309~^0.33^3^0.05^~1~^~A~^^^1^0.22^0.40^2^0.10^0.55^~4~^~05/01/2007~ -~35204~^~323~^0.35^3^0.03^~1~^~A~^^^1^0.29^0.39^2^0.21^0.49^~4~^~05/01/2007~ -~35204~^~341~^0.03^3^6.0e-03^~1~^~A~^^^1^0.02^0.04^2^5.0e-03^0.05^~4~^~05/01/2007~ -~35204~^~342~^1.06^3^0.20^~1~^~A~^^^1^0.66^1.29^2^0.19^1.93^~4~^~05/01/2007~ -~35204~^~343~^0.09^3^0.02^~1~^~A~^^^1^0.06^0.14^2^-0.01^0.19^~4~^~05/01/2007~ -~35204~^~344~^0.01^3^6.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 4~^~05/01/2007~ -~35204~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35204~^~346~^0.00^3^5.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 4~^~05/01/2007~ -~35204~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^2^0.00^0.00^~1, 4~^~05/01/2007~ -~35205~^~203~^2.71^2^^~1~^~A~^^^1^2.17^3.24^1^^^^~05/01/2007~ -~35205~^~204~^0.11^2^^~1~^~A~^^^1^0.07^0.14^1^^^~1~^~05/01/2007~ -~35205~^~205~^7.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35205~^~207~^2.03^2^^~1~^~A~^^^1^1.89^2.16^1^^^^~05/01/2007~ -~35205~^~210~^0.10^2^^~1~^~A~^^^1^0.07^0.12^1^^^~1~^~05/01/2007~ -~35205~^~211~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35205~^~212~^0.07^2^^~1~^~A~^^^1^0.07^0.07^1^^^~1~^~05/01/2007~ -~35205~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35205~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35205~^~255~^87.67^2^^~1~^~A~^^^1^85.13^90.22^1^^^^~05/01/2007~ -~35205~^~269~^0.25^2^^~1~^~A~^^^1^0.22^0.27^1^^^^~05/01/2007~ -~35205~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35205~^~303~^1.64^2^^~1~^~A~^^^1^1.26^2.02^1^^^^~05/01/2007~ -~35205~^~309~^0.34^2^^~1~^~A~^^^1^0.31^0.36^1^^^^~05/01/2007~ -~35206~^~203~^0.43^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~204~^0.17^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~205~^21.95^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35206~^~207~^0.77^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~210~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~211~^5.07^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~212~^5.47^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~255~^76.68^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~269~^10.61^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~303~^0.17^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~309~^0.09^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~323~^0.53^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~341~^0.01^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~342~^0.41^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~343~^0.05^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35206~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~203~^7.41^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~204~^34.08^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~205~^51.06^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~207~^2.45^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~209~^5.50^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~210~^3.45^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~211~^0.15^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~212~^0.30^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~255~^5.00^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~303~^3.53^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~309~^2.89^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~323~^11.30^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~35207~^~342~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35211~^~203~^28.81^2^^~1~^~A~^^^1^22.63^35.00^1^^^^~05/01/2007~ -~35211~^~204~^4.82^2^^~1~^~A~^^^1^3.37^6.26^1^^^^~05/01/2007~ -~35211~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~207~^1.05^2^^~1~^~A~^^^1^0.88^1.23^1^^^^~05/01/2007~ -~35211~^~209~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~210~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~211~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~212~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~255~^65.47^2^^~1~^~A~^^^1^58.35^72.60^1^^^^~05/01/2007~ -~35211~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~303~^4.80^2^^~1~^~A~^^^1^4.10^5.50^1^^^^~05/01/2007~ -~35211~^~309~^4.30^2^^~1~^~A~^^^1^2.10^6.50^1^^^^~05/01/2007~ -~35211~^~323~^0.88^2^^~1~^~A~^^^1^0.69^1.07^1^^^^~05/01/2007~ -~35211~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35211~^~342~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35211~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35211~^~344~^0.05^2^^~1~^~A~^^^1^0.01^0.09^1^^^~1~^~05/01/2007~ -~35211~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2007~ -~35211~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35211~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^1^^^~1~^~05/01/2007~ -~35211~^~418~^6.47^2^^~1~^~A~^^^1^5.89^7.05^1^^^^~05/01/2007~ -~35211~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35211~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~35225~^~203~^9.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~204~^43.50^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~205~^10.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35225~^~207~^3.00^0^^~4~^~NP~^^^^^^^^^^~04/01/2004~ -~35225~^~255~^34.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~303~^0.20^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~309~^0.47^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~323~^4.00^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35226~^~203~^22.90^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~204~^5.00^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~205~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~207~^0.83^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~255~^71.27^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35226~^~303~^9.00^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35226~^~309~^4.10^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35227~^~203~^18.10^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~204~^1.70^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~205~^1.40^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35227~^~207~^1.40^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~255~^77.40^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~303~^7.00^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~309~^2.90^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35228~^~203~^17.00^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~35228~^~204~^3.30^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35228~^~205~^1.00^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~35228~^~207~^1.00^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~35228~^~255~^76.20^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~35228~^~303~^6.70^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~309~^2.24^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35229~^~203~^25.85^2^^~1~^~A~^^^1^25.30^26.40^1^^^^~07/01/2008~ -~35229~^~204~^1.88^4^0.44^~1~^~A~^^^1^0.70^2.60^3^0.47^3.27^~2, 3~^~07/01/2008~ -~35229~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35229~^~207~^1.10^2^^~1~^~A~^^^1^1.10^1.10^^^^^~07/01/2008~ -~35229~^~255~^71.20^2^^~1~^~A~^^^1^70.00^72.40^1^^^^~07/01/2008~ -~35229~^~303~^11.48^4^1.07^~1~^~A~^^^1^9.90^14.50^3^8.06^14.88^~2, 3~^~07/01/2008~ -~35229~^~309~^3.32^4^1.15^~1~^~A~^^^1^0.00^5.20^3^-0.36^6.99^~2, 3~^~07/01/2008~ -~35230~^~203~^22.10^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~204~^14.65^2^^~1~^~A~^^^1^8.30^21.00^1^^^^~07/01/2008~ -~35230~^~205~^5.55^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35230~^~207~^0.90^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~255~^56.80^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~303~^9.55^2^^~1~^~A~^^^1^9.50^9.60^1^^^^~07/01/2008~ -~35230~^~309~^4.26^2^^~1~^~A~^^^1^4.23^4.29^1^^^^~07/01/2008~ -~35231~^~203~^0.90^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35231~^~204~^94.00^2^^~1~^~A~^^^1^88.00^100.00^1^^^^~07/01/2008~ -~35231~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~ -~35231~^~207~^0.20^1^^~4~^~BFZY~^^^^^^^^^^~07/01/2008~ -~35231~^~255~^4.70^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35232~^~203~^7.90^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~204~^1.07^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~205~^80.02^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~207~^1.65^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~209~^39.50^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~211~^0.43^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~255~^9.36^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~269~^0.43^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~303~^1.47^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~309~^6.33^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~323~^35.64^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~341~^6.49^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~342~^1.80^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~343~^1.30^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~344~^1.59^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35233~^~203~^14.89^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~204~^52.99^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~205~^22.98^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~35233~^~207~^3.22^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~255~^5.92^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~303~^3.12^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~309~^2.06^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35234~^~203~^9.06^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~204~^7.16^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~205~^72.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~207~^2.58^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~209~^61.30^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~210~^1.60^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~255~^8.98^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~269~^1.60^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~303~^6.11^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~309~^3.75^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~323~^0.76^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~341~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~342~^4.83^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~343~^0.15^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~344~^0.31^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~345~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~346~^0.64^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~347~^0.05^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~203~^0.69^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~204~^0.35^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~205~^7.06^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~207~^0.49^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~209~^3.70^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~211~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~255~^91.41^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~303~^1.21^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~309~^0.30^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~323~^0.42^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~341~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~342~^0.01^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~343~^0.02^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~344~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~345~^0.01^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~346~^0.00^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~35236~^~203~^1.42^3^0.05^~1~^~A~^^^1^1.31^1.50^2^1.17^1.65^~2, 3~^~04/01/2010~ -~35236~^~204~^0.54^3^0.02^~1~^~A~^^^1^0.49^0.59^2^0.41^0.66^~2, 3~^~04/01/2010~ -~35236~^~205~^5.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~207~^0.41^3^0.07^~1~^~A~^^^1^0.29^0.54^2^0.09^0.72^~2, 3~^~04/01/2010~ -~35236~^~209~^4.13^3^0.55^~1~^~A~^^^1^3.10^5.00^2^1.74^6.52^~2, 3~^~04/01/2010~ -~35236~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~255~^92.25^3^1.18^~1~^~A~^^^1^91.03^94.62^2^87.14^97.35^~2, 3~^~04/01/2010~ -~35236~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2010~ -~35236~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~303~^0.37^3^0.03^~1~^~A~^^^1^0.29^0.41^2^0.20^0.53^~2, 3~^~04/01/2010~ -~35236~^~309~^0.18^3^0.05^~1~^~A~^^^1^0.09^0.26^2^-0.04^0.39^~2, 3~^~04/01/2010~ -~35236~^~323~^0.04^2^^~1~^~A~^^^1^0.01^0.06^1^^^~1~^~04/01/2010~ -~35236~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~35236~^~342~^0.25^2^^~1~^~A~^^^1^0.25^0.25^1^^^^~04/01/2010~ -~35236~^~343~^0.01^2^^~1~^~A~^^^1^0.01^0.01^1^^^^~04/01/2010~ -~35236~^~344~^0.02^2^^~1~^~A~^^^1^0.01^0.03^1^^^^~04/01/2010~ -~35236~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~35236~^~346~^0.05^2^^~1~^~A~^^^1^0.02^0.07^1^^^^~04/01/2010~ -~35236~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~35237~^~203~^13.19^3^0.22^~1~^~A~^^^1^12.75^13.44^2^12.24^14.13^~2, 3~^~04/01/2010~ -~35237~^~204~^4.70^3^0.09^~1~^~A~^^^1^4.58^4.88^2^4.30^5.09^~2, 3~^~04/01/2010~ -~35237~^~205~^18.28^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~207~^1.45^3^0.07^~1~^~A~^^^1^1.34^1.58^2^1.14^1.75^~2, 3~^~04/01/2010~ -~35237~^~209~^15.13^3^0.38^~1~^~A~^^^1^14.40^15.70^2^13.47^16.78^~2, 3~^~04/01/2010~ -~35237~^~210~^0.48^3^0.02^~1~^~A~^^^1^0.43^0.51^2^0.37^0.58^~2, 3~^~04/01/2010~ -~35237~^~211~^0.49^3^0.04^~1~^~A~^^^1^0.40^0.55^2^0.29^0.68^~2, 3~^~04/01/2010~ -~35237~^~212~^0.60^3^0.03^~1~^~A~^^^1^0.53^0.64^2^0.44^0.76^~2, 3~^~04/01/2010~ -~35237~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~255~^62.39^3^0.05^~1~^~A~^^^1^62.30^62.49^2^62.15^62.62^~2, 3~^~04/01/2010~ -~35237~^~269~^1.57^3^0.07^~1~^~A~^^^1^1.42^1.67^2^1.24^1.89^~2, 3~^~04/01/2010~ -~35237~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~303~^0.66^3^8.0e-03^~1~^~A~^^^1^0.66^0.68^2^0.63^0.70^~2, 3~^~04/01/2010~ -~35237~^~309~^1.27^3^7.0e-03^~1~^~A~^^^1^1.26^1.28^2^1.23^1.29^~2, 3~^~04/01/2010~ -~35237~^~323~^1.11^2^^~1~^~A~^^^1^1.06^1.17^1^^^^~04/01/2010~ -~35237~^~341~^0.03^2^^~1~^~A~^^^1^0.03^0.03^1^^^^~04/01/2010~ -~35237~^~342~^0.95^2^^~1~^~A~^^^1^0.91^0.99^1^^^^~04/01/2010~ -~35237~^~343~^0.02^2^^~1~^~A~^^^1^0.02^0.02^1^^^^~04/01/2010~ -~35237~^~344~^0.05^2^^~1~^~A~^^^1^0.05^0.06^1^^^^~04/01/2010~ -~35237~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~35237~^~346~^0.24^2^^~1~^~A~^^^1^0.24^0.25^1^^^^~04/01/2010~ -~35237~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2010~ -~35237~^~418~^0.22^3^3.0e-03^~1~^~A~^^^1^0.21^0.22^2^0.20^0.23^~2, 3~^~04/01/2010~ -~35238~^~203~^0.12^3^0.00^~1~^~A~^^^1^0.12^0.12^^^^~2, 3~^~04/01/2010~ -~35238~^~204~^0.20^3^0.02^~1~^~A~^^^1^0.16^0.23^2^0.11^0.29^~2, 3~^~04/01/2010~ -~35238~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35238~^~207~^0.13^3^3.0e-03^~1~^~A~^^^1^0.13^0.14^2^0.11^0.14^~2, 3~^~04/01/2010~ -~35238~^~255~^99.64^3^0.03^~1~^~A~^^^1^99.58^99.70^2^99.49^99.79^~2, 3~^~04/01/2010~ -~35238~^~303~^0.03^3^0.00^~1~^~A~^^^1^0.03^0.03^2^0.02^0.03^~1, 2, 3~^~04/01/2010~ -~35238~^~309~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.05^~1, 2, 3~^~04/01/2010~ -~35239~^~203~^7.83^3^0.17^~1~^~A~^^^1^7.63^8.19^2^7.06^8.59^~2, 3~^~04/01/2010~ -~35239~^~204~^1.40^3^0.01^~1~^~A~^^^1^1.37^1.43^2^1.32^1.47^~2, 3~^~04/01/2010~ -~35239~^~205~^58.12^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~207~^2.76^3^0.03^~1~^~A~^^^1^2.70^2.83^2^2.60^2.92^~2, 3~^~04/01/2010~ -~35239~^~209~^51.57^3^0.97^~1~^~A~^^^1^50.40^53.50^2^47.37^55.75^~2, 3~^~04/01/2010~ -~35239~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35239~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35239~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35239~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35239~^~214~^2.97^3^0.30^~1~^~A~^^^1^2.39^3.40^2^1.67^4.26^~2, 3~^~04/01/2010~ -~35239~^~255~^29.89^3^1.40^~1~^~A~^^^1^27.08^31.48^2^23.83^35.94^~2, 3~^~04/01/2010~ -~35239~^~269~^2.97^3^0.30^~1~^~A~^^^1^2.39^3.40^2^1.67^4.26^~2, 3~^~04/01/2010~ -~35239~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35239~^~303~^2.89^3^0.11^~1~^~A~^^^1^2.71^3.09^2^2.41^3.36^~2, 3~^~04/01/2010~ -~35239~^~309~^0.68^3^0.02^~1~^~A~^^^1^0.65^0.73^2^0.57^0.78^~2, 3~^~04/01/2010~ -~35239~^~323~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~342~^0.36^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~343~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~344~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~345~^0.35^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~346~^0.08^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~203~^3.10^3^0.11^~1~^~A~^^^1^2.88^3.25^2^2.60^3.60^~2, 3~^~04/01/2010~ -~35240~^~204~^1.53^3^0.06^~1~^~A~^^^1^1.41^1.63^2^1.25^1.80^~2, 3~^~04/01/2010~ -~35240~^~205~^39.84^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~207~^0.52^3^0.04^~1~^~A~^^^1^0.44^0.61^2^0.30^0.73^~2, 3~^~04/01/2010~ -~35240~^~209~^22.98^3^1.58^~1~^~A~^^^1^21.30^26.15^2^16.16^29.80^~2, 3~^~04/01/2010~ -~35240~^~210~^12.94^3^2.63^~1~^~A~^^^1^7.78^16.41^2^1.62^24.25^~2, 3~^~04/01/2010~ -~35240~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~255~^55.01^3^1.15^~1~^~A~^^^1^52.89^56.87^2^50.03^59.98^~2, 3~^~04/01/2010~ -~35240~^~269~^12.94^3^2.63^~1~^~A~^^^1^7.78^16.41^2^1.62^24.25^~2, 3~^~04/01/2010~ -~35240~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~303~^1.58^3^0.38^~1~^~A~^^^1^1.13^2.34^2^-0.06^3.22^~2, 3~^~04/01/2010~ -~35240~^~309~^0.82^3^0.07^~1~^~A~^^^1^0.73^0.96^2^0.50^1.13^~2, 3~^~04/01/2010~ -~35240~^~323~^0.34^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~342~^0.80^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~343~^0.01^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~344~^0.17^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~345~^0.21^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~36000~^~203~^26.85^6^0.49^~1~^~A~^^^1^25.60^28.60^5^25.56^28.13^~2, 3~^~03/01/2013~ -~36000~^~204~^9.08^6^0.37^~1~^~A~^^^1^7.40^9.90^5^8.11^10.05^~2, 3~^~03/01/2013~ -~36000~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36000~^~207~^2.28^6^0.06^~1~^~A~^^^1^2.08^2.50^5^2.11^2.43^~2, 3~^~03/01/2013~ -~36000~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36000~^~211~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36000~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36000~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36000~^~255~^61.88^6^0.74^~1~^~A~^^^1^60.20^64.80^5^59.98^63.78^~2, 3~^~03/01/2013~ -~36000~^~269~^0.00^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36000~^~303~^2.07^6^0.17^~1~^~A~^^^1^1.57^2.52^5^1.63^2.50^~2, 3~^~03/01/2013~ -~36000~^~309~^5.35^6^0.27^~1~^~A~^^^1^4.39^6.15^5^4.63^6.06^~2, 3~^~03/01/2013~ -~36000~^~323~^0.37^3^0.03^~1~^~A~^^^1^0.32^0.43^2^0.23^0.50^~2, 3~^~03/01/2013~ -~36000~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~342~^0.11^3^0.01^~1~^~A~^^^1^0.10^0.13^2^0.06^0.15^~2, 3~^~03/01/2013~ -~36000~^~343~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.02^0.07^~1, 2, 3~^~03/01/2013~ -~36000~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~345~^0.07^3^0.06^~1~^~A~^^^1^0.00^0.20^2^-0.22^0.35^~1, 2, 3~^~03/01/2013~ -~36000~^~346~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.03^0.08^~1, 2, 3~^~03/01/2013~ -~36000~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~418~^2.00^3^0.20^~1~^~A~^^^1^1.60^2.20^2^1.13^2.86^~2, 3~^~03/01/2013~ -~36001~^~203~^12.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~204~^18.90^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~205~^25.96^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~207~^2.71^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~209~^22.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~210~^0.30^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~212~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~214~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~255~^40.12^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~269~^1.07^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~303~^1.03^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~309~^0.78^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~323~^1.97^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~341~^0.22^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~342~^8.31^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~343~^3.35^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~418~^0.43^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36002~^~203~^3.31^6^0.09^~1~^~A~^^^1^3.06^3.62^5^3.06^3.55^~2, 3~^~03/01/2013~ -~36002~^~204~^13.17^6^0.34^~1~^~A~^^^1^12.31^14.43^5^12.28^14.06^~2, 3~^~03/01/2013~ -~36002~^~205~^39.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~207~^2.72^6^0.07^~1~^~A~^^^1^2.45^2.98^5^2.52^2.92^~2, 3~^~03/01/2013~ -~36002~^~209~^35.47^3^0.43^~1~^~A~^^^1^34.60^35.90^2^33.60^37.33^~2, 3~^~03/01/2013~ -~36002~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~255~^41.29^6^1.39^~1~^~A~^^^1^36.30^44.52^5^37.70^44.87^~2, 3~^~03/01/2013~ -~36002~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2013~ -~36002~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~303~^1.01^6^0.05^~1~^~A~^^^1^0.89^1.22^5^0.87^1.14^~2, 3~^~03/01/2013~ -~36002~^~309~^0.49^6^0.01^~1~^~A~^^^1^0.42^0.54^5^0.44^0.53^~2, 3~^~04/01/2009~ -~36002~^~323~^0.93^3^0.03^~1~^~A~^^^1^0.89^1.00^2^0.77^1.08^~2, 3~^~03/01/2013~ -~36002~^~341~^0.11^3^4.0e-03^~1~^~A~^^^1^0.10^0.12^2^0.09^0.12^~2, 3~^~03/01/2013~ -~36002~^~342~^5.53^3^0.30^~1~^~A~^^^1^5.03^6.08^2^4.21^6.83^~2, 3~^~03/01/2013~ -~36002~^~343~^2.23^3^0.10^~1~^~A~^^^1^2.02^2.33^2^1.78^2.67^~2, 3~^~03/01/2013~ -~36002~^~344~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.09^2^0.02^0.11^~2, 3~^~03/01/2013~ -~36002~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~346~^0.14^3^0.02^~1~^~A~^^^1^0.10^0.19^2^0.03^0.25^~2, 3~^~03/01/2013~ -~36002~^~347~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~03/01/2013~ -~36003~^~203~^5.01^6^0.12^~1~^~A~^^^1^4.77^5.44^5^4.68^5.33^~2, 3~^~03/01/2013~ -~36003~^~204~^4.34^6^0.11^~1~^~A~^^^1^3.90^4.60^5^4.04^4.64^~2, 3~^~03/01/2013~ -~36003~^~205~^21.08^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~207~^1.29^6^0.01^~1~^~A~^^^1^1.21^1.32^5^1.24^1.33^~2, 3~^~03/01/2013~ -~36003~^~209~^14.77^3^0.28^~1~^~A~^^^1^14.20^15.10^2^13.54^15.99^~2, 3~^~03/01/2013~ -~36003~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~213~^3.66^3^0.06^~1~^~A~^^^1^3.55^3.78^2^3.36^3.94^~2, 3~^~03/01/2013~ -~36003~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~255~^68.28^6^0.15^~1~^~A~^^^1^67.70^68.90^5^67.87^68.68^~2, 3~^~03/01/2013~ -~36003~^~269~^3.70^3^0.10^~1~^~A~^^^1^3.55^3.90^2^3.24^4.14^~2, 3~^~03/01/2013~ -~36003~^~287~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.12^2^-0.13^0.21^~1, 2, 3~^~03/01/2013~ -~36003~^~303~^0.84^6^0.05^~1~^~A~^^^1^0.68^1.04^5^0.70^0.98^~2, 3~^~03/01/2013~ -~36003~^~309~^0.57^6^0.01^~1~^~A~^^^1^0.54^0.63^5^0.53^0.60^~2, 3~^~03/01/2013~ -~36003~^~323~^0.52^3^0.03^~1~^~A~^^^1^0.46^0.58^2^0.36^0.67^~2, 3~^~03/01/2013~ -~36003~^~341~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~04/01/2009~ -~36003~^~342~^1.03^3^0.01^~1~^~A~^^^1^1.00^1.06^2^0.94^1.11^~2, 3~^~03/01/2013~ -~36003~^~343~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.08^~1, 2, 3~^~03/01/2013~ -~36003~^~344~^0.04^3^0.01^~1~^~A~^^^1^0.00^0.06^2^-0.04^0.11^~1, 2, 3~^~03/01/2013~ -~36003~^~345~^0.14^3^0.14^~1~^~A~^^^1^0.00^0.43^2^-0.46^0.75^~1, 2, 3~^~03/01/2013~ -~36003~^~346~^0.33^3^0.16^~1~^~A~^^^1^0.00^0.53^2^-0.38^1.03^~1, 2, 3~^~03/01/2013~ -~36003~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~418~^0.24^3^0.01^~1~^~A~^^^1^0.21^0.27^2^0.16^0.31^~2, 3~^~03/01/2013~ -~36004~^~203~^14.87^6^0.32^~1~^~A~^^^1^13.78^16.13^5^14.03^15.71^~2, 3~^~03/01/2013~ -~36004~^~204~^18.37^6^0.51^~1~^~A~^^^1^16.88^20.50^5^17.04^19.69^~2, 3~^~03/01/2013~ -~36004~^~205~^22.87^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~207~^3.23^6^0.05^~1~^~A~^^^1^3.01^3.42^5^3.08^3.37^~2, 3~^~03/01/2013~ -~36004~^~209~^18.43^3^0.14^~1~^~A~^^^1^18.20^18.70^2^17.80^19.05^~2, 3~^~03/01/2013~ -~36004~^~210~^0.11^3^0.11^~1~^~A~^^^1^0.00^0.33^2^-0.36^0.58^~1, 2, 3~^~03/01/2013~ -~36004~^~211~^0.79^3^0.01^~1~^~A~^^^1^0.77^0.83^2^0.71^0.87^~2, 3~^~03/01/2013~ -~36004~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36004~^~213~^1.04^3^0.23^~1~^~A~^^^1^0.57^1.34^2^0.01^2.06^~2, 3~^~03/01/2013~ -~36004~^~214~^0.59^3^0.03^~1~^~A~^^^1^0.52^0.63^2^0.44^0.73^~2, 3~^~03/01/2013~ -~36004~^~255~^40.65^6^0.38^~1~^~A~^^^1^39.79^41.91^5^39.65^41.65^~2, 3~^~03/01/2013~ -~36004~^~269~^2.80^3^0.30^~1~^~A~^^^1^2.30^3.36^2^1.48^4.12^~2, 3~^~03/01/2013~ -~36004~^~287~^0.27^3^0.02^~1~^~A~^^^1^0.25^0.32^2^0.17^0.37^~2, 3~^~03/01/2013~ -~36004~^~303~^0.43^6^0.01^~1~^~A~^^^1^0.40^0.47^5^0.39^0.45^~2, 3~^~03/01/2013~ -~36004~^~309~^2.00^6^0.03^~1~^~A~^^^1^1.88^2.14^5^1.90^2.10^~2, 3~^~04/01/2009~ -~36004~^~323~^0.71^3^0.04^~1~^~A~^^^1^0.61^0.77^2^0.49^0.91^~2, 3~^~03/01/2013~ -~36004~^~341~^0.11^3^0.01^~1~^~A~^^^1^0.08^0.12^2^0.05^0.16^~2, 3~^~03/01/2013~ -~36004~^~342~^3.47^3^0.22^~1~^~A~^^^1^3.14^3.89^2^2.51^4.41^~2, 3~^~03/01/2013~ -~36004~^~343~^1.53^3^0.12^~1~^~A~^^^1^1.30^1.70^2^1.01^2.05^~2, 3~^~03/01/2013~ -~36004~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36004~^~345~^0.14^3^0.01^~1~^~A~^^^1^0.12^0.17^2^0.07^0.20^~2, 3~^~03/01/2013~ -~36004~^~346~^0.05^3^0.02^~1~^~A~^^^1^0.00^0.09^2^-0.06^0.15^~1, 2, 3~^~03/01/2013~ -~36004~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36004~^~418~^0.99^3^0.05^~1~^~A~^^^1^0.93^1.10^2^0.74^1.23^~2, 3~^~03/01/2013~ -~36005~^~203~^19.25^6^0.15^~1~^~A~^^^1^18.70^19.75^5^18.86^19.63^~2, 3~^~03/01/2013~ -~36005~^~204~^16.15^6^0.44^~1~^~A~^^^1^15.20^18.03^5^15.01^17.29^~2, 3~^~03/01/2013~ -~36005~^~205~^18.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~207~^2.81^6^0.04^~1~^~A~^^^1^2.60^2.92^5^2.69^2.93^~2, 3~^~03/01/2013~ -~36005~^~209~^16.97^3^0.73^~1~^~A~^^^1^15.50^17.80^2^13.80^20.13^~2, 3~^~03/01/2013~ -~36005~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~211~^0.39^3^0.01^~1~^~A~^^^1^0.36^0.42^2^0.31^0.46^~2, 3~^~03/01/2013~ -~36005~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~255~^43.42^6^0.55^~1~^~A~^^^1^42.16^46.06^5^41.99^44.84^~2, 3~^~03/01/2013~ -~36005~^~269~^0.39^3^0.01^~1~^~A~^^^1^0.36^0.42^2^0.31^0.46^~2, 3~^~03/01/2013~ -~36005~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~303~^0.90^6^0.02^~1~^~A~^^^1^0.85^0.99^5^0.83^0.96^~2, 3~^~03/01/2013~ -~36005~^~309~^0.71^6^0.01^~1~^~A~^^^1^0.67^0.76^5^0.68^0.74^~2, 3~^~03/01/2013~ -~36005~^~323~^1.28^3^0.10^~1~^~A~^^^1^1.15^1.48^2^0.83^1.72^~2, 3~^~03/01/2013~ -~36005~^~341~^0.17^3^0.01^~1~^~A~^^^1^0.14^0.20^2^0.10^0.23^~2, 3~^~03/01/2013~ -~36005~^~342~^7.01^3^0.43^~1~^~A~^^^1^6.27^7.76^2^5.15^8.86^~2, 3~^~03/01/2013~ -~36005~^~343~^1.12^3^1.11^~1~^~A~^^^1^0.00^3.35^2^-3.69^5.92^~1, 2, 3~^~03/01/2013~ -~36005~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2009~ -~36005~^~345~^0.08^3^0.07^~1~^~A~^^^1^0.00^0.23^2^-0.25^0.41^~1, 2, 3~^~03/01/2013~ -~36005~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~418~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.18^2^0.07^0.22^~2, 3~^~03/01/2013~ -~36006~^~203~^11.87^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~204~^19.02^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~205~^20.87^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~207~^3.39^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~209~^18.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~255~^44.85^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~303~^0.53^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~309~^0.73^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~323~^2.09^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~341~^0.16^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~342~^4.42^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~343~^3.06^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~36006~^~345~^0.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~36006~^~347~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~418~^0.23^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36007~^~203~^3.74^6^0.17^~1~^~A~^^^1^3.06^4.37^5^3.27^4.20^~2, 3~^~03/01/2013~ -~36007~^~204~^14.82^6^0.72^~1~^~A~^^^1^12.98^17.84^5^12.95^16.68^~2, 3~^~03/01/2013~ -~36007~^~205~^36.90^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~207~^2.31^6^0.32^~1~^~A~^^^1^1.32^3.50^5^1.46^3.14^~2, 3~^~03/01/2013~ -~36007~^~209~^32.87^3^0.46^~1~^~A~^^^1^32.00^33.60^2^30.85^34.87^~2, 3~^~03/01/2013~ -~36007~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~255~^42.23^6^0.71^~1~^~A~^^^1^39.43^44.48^5^40.37^44.07^~2, 3~^~03/01/2013~ -~36007~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~03/01/2013~ -~36007~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~303~^0.98^6^0.02^~1~^~A~^^^1^0.93^1.11^5^0.91^1.05^~2, 3~^~03/01/2013~ -~36007~^~309~^0.57^6^0.02^~1~^~A~^^^1^0.48^0.67^5^0.50^0.63^~2, 3~^~03/01/2013~ -~36007~^~323~^1.09^3^0.08^~1~^~A~^^^1^0.93^1.21^2^0.73^1.45^~2, 3~^~03/01/2013~ -~36007~^~341~^0.13^3^0.02^~1~^~A~^^^1^0.10^0.17^2^0.05^0.22^~2, 3~^~03/01/2013~ -~36007~^~342~^7.92^3^0.81^~1~^~A~^^^1^6.36^9.11^2^4.41^11.42^~2, 3~^~03/01/2013~ -~36007~^~343~^3.04^3^0.39^~1~^~A~^^^1^2.27^3.59^2^1.33^4.74^~2, 3~^~03/01/2013~ -~36007~^~344~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.07^0.11^~1, 2, 3~^~03/01/2013~ -~36007~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~346~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.04^0.13^~1, 2, 3~^~03/01/2013~ -~36007~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36008~^~203~^15.82^6^0.19^~1~^~A~^^^1^15.11^16.52^5^15.32^16.30^~2, 3~^~03/01/2013~ -~36008~^~204~^18.76^6^0.38^~1~^~A~^^^1^17.47^20.33^5^17.77^19.75^~2, 3~^~03/01/2013~ -~36008~^~205~^25.33^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~207~^3.07^6^0.04^~1~^~A~^^^1^2.98^3.28^5^2.96^3.19^~2, 3~^~03/01/2013~ -~36008~^~209~^21.27^3^0.16^~1~^~A~^^^1^21.10^21.60^2^20.55^21.98^~2, 3~^~03/01/2013~ -~36008~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~211~^0.50^3^0.05^~1~^~A~^^^1^0.41^0.61^2^0.25^0.75^~2, 3~^~03/01/2013~ -~36008~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36008~^~214~^0.54^3^0.07^~1~^~A~^^^1^0.41^0.66^2^0.23^0.85^~2, 3~^~03/01/2013~ -~36008~^~255~^37.02^6^0.30^~1~^~A~^^^1^36.20^38.20^5^36.24^37.79^~2, 3~^~03/01/2013~ -~36008~^~269~^1.45^3^0.14^~1~^~A~^^^1^1.19^1.69^2^0.82^2.06^~2, 3~^~03/01/2013~ -~36008~^~287~^0.40^3^0.01^~1~^~A~^^^1^0.37^0.42^2^0.33^0.46^~2, 3~^~03/01/2013~ -~36008~^~303~^0.59^6^0.01^~1~^~A~^^^1^0.54^0.63^5^0.55^0.62^~2, 3~^~03/01/2013~ -~36008~^~309~^2.24^6^0.04^~1~^~A~^^^1^2.05^2.39^5^2.12^2.36^~2, 3~^~03/01/2013~ -~36008~^~323~^0.86^3^9.0e-03^~1~^~A~^^^1^0.85^0.88^2^0.82^0.90^~2, 3~^~03/01/2013~ -~36008~^~341~^0.14^3^0.01^~1~^~A~^^^1^0.12^0.16^2^0.08^0.19^~2, 3~^~03/01/2013~ -~36008~^~342~^5.14^3^0.46^~1~^~A~^^^1^4.66^6.06^2^3.16^7.11^~2, 3~^~03/01/2013~ -~36008~^~343~^1.99^3^0.15^~1~^~A~^^^1^1.76^2.29^2^1.32^2.66^~2, 3~^~03/01/2013~ -~36008~^~344~^0.06^3^0.06^~1~^~A~^^^1^0.00^0.18^2^-0.19^0.31^~1, 2, 3~^~03/01/2013~ -~36008~^~345~^0.17^3^3.0e-03^~1~^~A~^^^1^0.16^0.17^2^0.15^0.17^~2, 3~^~03/01/2013~ -~36008~^~346~^0.05^3^0.04^~1~^~A~^^^1^0.00^0.14^2^-0.15^0.24^~1, 2, 3~^~03/01/2013~ -~36008~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36008~^~418~^0.94^3^0.08^~1~^~A~^^^1^0.84^1.10^2^0.60^1.28^~2, 3~^~03/01/2013~ -~36009~^~203~^5.03^6^0.19^~1~^~A~^^^1^4.63^5.81^5^4.51^5.54^~2, 3~^~03/01/2013~ -~36009~^~204~^3.45^6^0.11^~1~^~A~^^^1^2.88^3.71^5^3.14^3.75^~2, 3~^~03/01/2013~ -~36009~^~205~^17.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~207~^1.61^6^0.02^~1~^~A~^^^1^1.54^1.73^5^1.54^1.68^~2, 3~^~03/01/2013~ -~36009~^~209~^13.17^3^0.24^~1~^~A~^^^1^12.70^13.50^2^12.13^14.20^~2, 3~^~03/01/2013~ -~36009~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~213~^1.65^3^0.03^~1~^~A~^^^1^1.58^1.70^2^1.49^1.79^~2, 3~^~03/01/2013~ -~36009~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~255~^72.51^6^0.40^~1~^~A~^^^1^71.61^74.33^5^71.46^73.55^~2, 3~^~03/01/2013~ -~36009~^~269~^1.65^3^0.03^~1~^~A~^^^1^1.58^1.70^2^1.49^1.79^~2, 3~^~03/01/2013~ -~36009~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~303~^0.53^6^0.04^~1~^~A~^^^1^0.33^0.63^5^0.40^0.64^~2, 3~^~03/01/2013~ -~36009~^~309~^0.58^6^0.02^~1~^~A~^^^1^0.50^0.65^5^0.51^0.64^~2, 3~^~03/01/2013~ -~36009~^~323~^1.20^3^0.51^~1~^~A~^^^1^0.18^1.74^2^-0.99^3.40^~2, 3~^~03/01/2013~ -~36009~^~341~^0.04^3^5.0e-03^~1~^~A~^^^1^0.03^0.05^2^0.01^0.06^~2, 3~^~03/01/2013~ -~36009~^~342~^0.52^3^0.05^~1~^~A~^^^1^0.43^0.63^2^0.26^0.77^~2, 3~^~03/01/2013~ -~36009~^~343~^0.16^3^0.02^~1~^~A~^^^1^0.12^0.19^2^0.07^0.25^~2, 3~^~03/01/2013~ -~36009~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~03/01/2013~ -~36009~^~345~^0.33^3^8.0e-03^~1~^~A~^^^1^0.31^0.34^2^0.28^0.36^~2, 3~^~03/01/2013~ -~36009~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~347~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.06^2^-0.06^0.10^~1, 2, 3~^~03/01/2013~ -~36009~^~418~^0.12^3^0.02^~1~^~A~^^^1^0.09^0.16^2^0.03^0.21^~2, 3~^~03/01/2013~ -~36010~^~203~^18.11^6^0.69^~1~^~A~^^^1^15.80^20.10^5^16.32^19.89^~2, 3~^~03/01/2013~ -~36010~^~204~^20.78^6^1.05^~1~^~A~^^^1^17.70^25.27^5^18.07^23.49^~2, 3~^~03/01/2013~ -~36010~^~205~^17.72^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~207~^2.89^6^0.12^~1~^~A~^^^1^2.40^3.21^5^2.58^3.20^~2, 3~^~03/01/2013~ -~36010~^~209~^16.33^3^1.33^~1~^~A~^^^1^14.80^19.00^2^10.57^22.09^~2, 3~^~03/01/2013~ -~36010~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~211~^0.34^3^3.0e-03^~1~^~A~^^^1^0.33^0.34^2^0.32^0.35^~2, 3~^~03/01/2013~ -~36010~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~255~^40.49^6^2.07^~1~^~A~^^^1^31.50^47.00^5^35.16^45.81^~2, 3~^~03/01/2013~ -~36010~^~269~^0.34^3^3.0e-03^~1~^~A~^^^1^0.33^0.34^2^0.32^0.35^~2, 3~^~03/01/2013~ -~36010~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~303~^0.79^6^0.05^~1~^~A~^^^1^0.57^0.94^5^0.63^0.93^~2, 3~^~03/01/2013~ -~36010~^~309~^0.62^6^0.02^~1~^~A~^^^1^0.54^0.71^5^0.55^0.68^~2, 3~^~03/01/2013~ -~36010~^~323~^1.85^3^0.26^~1~^~A~^^^1^1.45^2.35^2^0.71^2.98^~2, 3~^~03/01/2013~ -~36010~^~341~^0.24^3^0.01^~1~^~A~^^^1^0.22^0.27^2^0.18^0.30^~2, 3~^~03/01/2013~ -~36010~^~342~^10.65^3^0.49^~1~^~A~^^^1^9.98^11.62^2^8.51^12.78^~2, 3~^~03/01/2013~ -~36010~^~343~^4.59^3^0.37^~1~^~A~^^^1^4.10^5.32^2^2.98^6.19^~2, 3~^~03/01/2013~ -~36010~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~03/01/2013~ -~36010~^~345~^0.10^3^0.10^~1~^~A~^^^1^0.00^0.30^2^-0.33^0.53^~1, 2, 3~^~03/01/2013~ -~36010~^~346~^0.04^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.13^0.20^~1, 2, 3~^~03/01/2013~ -~36010~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~418~^0.09^3^3.0e-03^~1~^~A~^^^1^0.09^0.10^2^0.07^0.10^~2, 3~^~03/01/2013~ -~36011~^~203~^31.02^6^0.85^~1~^~A~^^^1^29.00^33.70^5^28.80^33.22^~2, 3~^~03/01/2013~ -~36011~^~204~^7.83^6^0.94^~1~^~A~^^^1^5.50^11.68^5^5.40^10.26^~2, 3~^~03/01/2013~ -~36011~^~205~^0.47^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~207~^1.44^6^0.05^~1~^~A~^^^1^1.33^1.68^5^1.30^1.58^~2, 3~^~03/01/2013~ -~36011~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36011~^~211~^0.46^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~212~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36011~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36011~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36011~^~255~^59.24^6^1.13^~1~^~A~^^^1^55.20^63.25^5^56.33^62.14^~2, 3~^~03/01/2013~ -~36011~^~269~^0.46^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36011~^~303~^2.87^6^0.11^~1~^~A~^^^1^2.57^3.25^5^2.58^3.16^~2, 3~^~03/01/2013~ -~36011~^~309~^5.54^6^0.20^~1~^~A~^^^1^4.82^6.21^5^5.00^6.07^~2, 3~^~03/01/2013~ -~36011~^~323~^0.77^3^0.36^~1~^~A~^^^1^0.40^1.50^2^-0.78^2.32^~2, 3~^~03/01/2013~ -~36011~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~342~^0.19^3^0.02^~1~^~A~^^^1^0.16^0.22^2^0.10^0.28^~2, 3~^~03/01/2013~ -~36011~^~343~^0.09^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.04^0.13^~2, 3~^~03/01/2013~ -~36011~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~345~^0.31^3^0.24^~1~^~A~^^^1^0.00^0.79^2^-0.74^1.35^~1, 2, 3~^~03/01/2013~ -~36011~^~346~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.13^2^-0.14^0.23^~1, 2, 3~^~03/01/2013~ -~36011~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~418~^2.63^3^0.08^~1~^~A~^^^1^2.50^2.80^2^2.25^3.01^~2, 3~^~03/01/2013~ -~36012~^~203~^14.75^18^0.15^~1~^~A~^^^2^13.17^16.52^13^14.40^15.09^~2, 3~^~04/01/2013~ -~36012~^~204~^18.33^18^0.21^~1~^~A~^^^2^16.88^20.50^13^17.86^18.80^~2, 3~^~04/01/2013~ -~36012~^~205~^25.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~207~^3.34^18^0.03^~1~^~A~^^^2^2.98^3.87^16^3.26^3.41^~2, 3~^~04/01/2013~ -~36012~^~209~^20.46^9^0.45^~1~^~A~^^^2^18.20^22.30^6^19.35^21.56^~2, 3~^~04/01/2013~ -~36012~^~210~^0.04^9^0.03^~1~^~A~^^^2^0.00^0.33^5^-0.05^0.13^~1, 2, 3~^~04/01/2013~ -~36012~^~211~^0.64^9^0.04^~1~^~A~^^^2^0.41^0.83^6^0.52^0.76^~2, 3~^~04/01/2013~ -~36012~^~212~^0.07^9^0.00^~1~^~A~^^^2^0.00^0.20^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~213~^0.74^9^0.17^~1~^~A~^^^2^0.00^1.34^5^0.29^1.17^~1, 2, 3~^~04/01/2013~ -~36012~^~214~^0.58^9^0.03^~1~^~A~^^^2^0.41^0.70^7^0.50^0.65^~2, 3~^~04/01/2013~ -~36012~^~255~^38.44^18^0.40^~1~^~A~^^^2^36.20^41.91^12^37.55^39.31^~2, 3~^~04/01/2013~ -~36012~^~269~^2.36^9^0.23^~1~^~A~^^^2^1.19^3.36^5^1.78^2.94^~2, 3~^~04/01/2013~ -~36012~^~287~^0.30^9^0.02^~1~^~A~^^^2^0.20^0.42^7^0.24^0.35^~2, 3~^~05/01/2009~ -~36012~^~303~^0.62^18^0.01^~1~^~A~^^^2^0.40^0.93^15^0.57^0.66^~2, 3~^~04/01/2013~ -~36012~^~309~^2.07^18^0.03^~1~^~A~^^^2^1.88^2.39^13^2.00^2.14^~2, 3~^~04/01/2013~ -~36012~^~323~^0.77^9^0.03^~1~^~A~^^^2^0.61^0.88^7^0.69^0.84^~2, 3~^~04/01/2013~ -~36012~^~341~^0.11^9^7.0e-03^~1~^~A~^^^2^0.08^0.16^5^0.09^0.12^~2, 3~^~04/01/2013~ -~36012~^~342~^4.19^9^0.29^~1~^~A~^^^2^3.14^6.06^5^3.44^4.94^~2, 3~^~04/01/2013~ -~36012~^~343~^1.63^9^0.11^~1~^~A~^^^2^1.14^2.29^7^1.36^1.90^~2, 3~^~04/01/2013~ -~36012~^~344~^0.02^9^0.02^~1~^~A~^^^2^0.00^0.18^5^-0.03^0.07^~1, 2, 3~^~04/01/2013~ -~36012~^~345~^0.14^9^6.0e-03^~1~^~A~^^^2^0.12^0.17^5^0.12^0.15^~2, 3~^~04/01/2013~ -~36012~^~346~^0.03^9^0.01^~1~^~A~^^^2^0.00^0.14^5^-9.0e-03^0.07^~1, 2, 3~^~04/01/2013~ -~36012~^~347~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36012~^~418~^0.96^9^0.03^~1~^~A~^^^2^0.84^1.10^6^0.88^1.03^~2, 3~^~04/01/2013~ -~36012~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36012~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~36013~^~203~^29.80^18^0.56^~1~^~A~^^^2^25.60^34.19^14^28.59^31.00^~2, 3~^~04/01/2013~ -~36013~^~204~^8.48^18^0.35^~1~^~A~^^^2^5.50^11.68^12^7.70^9.25^~2, 3~^~04/01/2013~ -~36013~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~207~^1.79^18^0.09^~1~^~A~^^^2^1.33^2.50^12^1.59^1.98^~2, 3~^~04/01/2013~ -~36013~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~36013~^~211~^0.55^2^^~1~^~A~^^^1^0.46^0.65^1^^^^~04/01/2013~ -~36013~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~36013~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~36013~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~36013~^~255~^60.18^18^0.54^~1~^~A~^^^2^55.20^64.80^14^59.01^61.33^~2, 3~^~04/01/2013~ -~36013~^~269~^0.55^2^^~1~^~A~^^^1^0.46^0.65^1^^^^~04/01/2013~ -~36013~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~04/01/2013~ -~36013~^~303~^2.57^18^0.10^~1~^~A~^^^2^1.57^3.25^12^2.33^2.79^~2, 3~^~04/01/2013~ -~36013~^~309~^5.44^18^0.13^~1~^~A~^^^2^4.39^6.21^16^5.15^5.71^~2, 3~^~04/01/2013~ -~36013~^~323~^0.53^9^0.12^~1~^~A~^^^2^0.32^1.50^5^0.21^0.85^~2, 3~^~04/01/2013~ -~36013~^~341~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~342~^0.15^9^0.01^~1~^~A~^^^2^0.10^0.22^7^0.11^0.19^~2, 3~^~04/01/2013~ -~36013~^~343~^0.05^9^0.01^~1~^~A~^^^2^0.00^0.11^7^0.02^0.07^~1, 2, 3~^~04/01/2013~ -~36013~^~344~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~345~^0.12^9^0.08^~1~^~A~^^^2^0.00^0.79^5^-0.09^0.33^~1, 2, 3~^~04/01/2013~ -~36013~^~346~^0.02^9^0.01^~1~^~A~^^^2^0.00^0.13^5^-0.01^0.05^~1, 2, 3~^~04/01/2013~ -~36013~^~347~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~418~^2.54^9^0.13^~1~^~A~^^^2^1.60^3.40^7^2.23^2.85^~2, 3~^~04/01/2013~ -~36014~^~203~^3.49^18^0.08^~1~^~A~^^^2^2.96^4.37^16^3.29^3.67^~2, 3~^~04/01/2013~ -~36014~^~204~^14.04^18^0.34^~1~^~A~^^^2^12.31^17.84^16^13.30^14.77^~2, 3~^~04/01/2013~ -~36014~^~205~^37.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~207~^2.08^18^0.11^~1~^~A~^^^2^1.03^3.50^11^1.82^2.33^~2, 3~^~04/01/2013~ -~36014~^~209~^33.61^9^0.61^~1~^~A~^^^2^30.10^35.90^6^32.06^35.15^~2, 3~^~04/01/2013~ -~36014~^~210~^0.06^9^0.00^~1~^~A~^^^2^0.00^0.18^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~211~^0.14^9^3.0e-03^~1~^~A~^^^2^0.00^0.42^2^0.12^0.14^~1, 2, 3~^~04/01/2013~ -~36014~^~212~^0.09^9^0.00^~1~^~A~^^^2^0.00^0.26^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~213~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~214~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~255~^43.19^18^0.68^~1~^~A~^^^2^36.30^49.90^15^41.72^44.65^~2, 3~^~04/01/2013~ -~36014~^~269~^0.28^9^3.0e-03^~1~^~A~^^^2^0.00^0.86^2^0.27^0.29^~2, 3~^~05/01/2009~ -~36014~^~287~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~303~^0.91^18^0.02^~1~^~A~^^^2^0.60^1.22^16^0.85^0.95^~2, 3~^~04/01/2013~ -~36014~^~309~^0.51^18^0.01^~1~^~A~^^^2^0.42^0.67^14^0.47^0.53^~2, 3~^~04/01/2013~ -~36014~^~323~^1.00^9^0.05^~1~^~A~^^^2^0.79^1.21^6^0.87^1.13^~2, 3~^~04/01/2013~ -~36014~^~341~^0.11^9^7.0e-03^~1~^~A~^^^2^0.09^0.17^5^0.09^0.13^~2, 3~^~05/01/2009~ -~36014~^~342~^6.47^9^0.44^~1~^~A~^^^2^5.03^9.11^5^5.34^7.60^~2, 3~^~04/01/2013~ -~36014~^~343~^2.48^9^0.18^~1~^~A~^^^2^1.89^3.59^6^2.03^2.92^~2, 3~^~04/01/2013~ -~36014~^~344~^0.04^9^0.01^~1~^~A~^^^2^0.00^0.09^6^0.01^0.07^~1, 2, 3~^~04/01/2013~ -~36014~^~345~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~346~^0.08^9^0.01^~1~^~A~^^^2^0.00^0.19^6^0.03^0.12^~1, 2, 3~^~04/01/2013~ -~36014~^~347~^0.01^9^8.0e-03^~1~^~A~^^^2^0.00^0.05^7^-4.0e-03^0.03^~1, 2, 3~^~05/01/2009~ -~36015~^~203~^18.68^18^0.34^~1~^~A~^^^2^15.80^21.88^14^17.93^19.41^~2, 3~^~04/01/2013~ -~36015~^~204~^17.45^18^0.59^~1~^~A~^^^2^14.52^25.27^12^16.13^18.75^~2, 3~^~04/01/2013~ -~36015~^~205~^18.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~207~^2.93^18^0.06^~1~^~A~^^^2^2.40^3.58^13^2.79^3.05^~2, 3~^~04/01/2013~ -~36015~^~209~^18.01^9^0.53^~1~^~A~^^^2^14.80^21.90^7^16.75^19.26^~2, 3~^~04/01/2013~ -~36015~^~210~^0.03^9^3.0e-03^~1~^~A~^^^2^0.00^0.10^2^0.01^0.04^~1, 2, 3~^~04/01/2013~ -~36015~^~211~^0.24^9^9.0e-03^~1~^~A~^^^2^0.00^0.42^5^0.21^0.26^~1, 2, 3~^~04/01/2013~ -~36015~^~212~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36015~^~213~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36015~^~214~^0.01^7^0.00^~1~^~A~^^^2^0.00^0.10^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~255~^42.17^18^0.79^~1~^~A~^^^2^31.50^47.00^14^40.46^43.87^~2, 3~^~04/01/2013~ -~36015~^~269~^0.33^7^0.01^~1~^~A~^^^2^0.17^0.42^5^0.30^0.36^~2, 3~^~04/01/2013~ -~36015~^~287~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36015~^~303~^0.76^18^0.02^~1~^~A~^^^2^0.53^0.99^12^0.70^0.80^~2, 3~^~04/01/2013~ -~36015~^~309~^0.67^18^0.01^~1~^~A~^^^2^0.54^0.76^14^0.63^0.69^~2, 3~^~06/01/2009~ -~36015~^~323~^1.47^9^0.12^~1~^~A~^^^2^1.15^2.35^5^1.15^1.77^~2, 3~^~04/01/2013~ -~36015~^~341~^0.19^9^0.01^~1~^~A~^^^2^0.14^0.27^5^0.15^0.22^~2, 3~^~04/01/2013~ -~36015~^~342~^8.24^9^0.60^~1~^~A~^^^2^6.12^11.62^6^6.75^9.72^~2, 3~^~04/01/2013~ -~36015~^~343~^2.74^9^0.63^~1~^~A~^^^2^0.00^5.32^5^1.13^4.34^~1, 2, 3~^~04/01/2013~ -~36015~^~344~^0.01^9^6.0e-03^~1~^~A~^^^2^0.00^0.04^5^-6.0e-03^0.02^~1, 2, 3~^~04/01/2013~ -~36015~^~345~^0.10^9^0.04^~1~^~A~^^^2^0.00^0.30^7^-5.0e-03^0.19^~1, 2, 3~^~04/01/2013~ -~36015~^~346~^0.83^9^0.48^~1~^~A~^^^2^0.00^3.66^5^-0.41^2.07^~1, 2, 3~^~04/01/2013~ -~36015~^~347~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36015~^~418~^0.13^9^0.01^~1~^~A~^^^2^0.09^0.18^6^0.10^0.15^~2, 3~^~04/01/2013~ -~36016~^~203~^12.67^4^0.43^~1~^~A~^^^1^11.87^13.88^3^11.30^14.03^~2, 3~^~03/01/2014~ -~36016~^~204~^18.67^4^0.68^~1~^~A~^^^1^16.77^20.01^3^16.50^20.84^~2, 3~^~03/01/2014~ -~36016~^~205~^22.29^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~207~^3.34^4^0.30^~1~^~A~^^^1^2.71^4.14^3^2.38^4.29^~2, 3~^~03/01/2014~ -~36016~^~209~^20.00^4^0.99^~1~^~A~^^^1^18.60^22.80^3^16.85^23.15^~2, 3~^~03/01/2014~ -~36016~^~210~^0.35^2^^~1~^~A~^^^1^0.30^0.40^1^^^^~03/01/2014~ -~36016~^~211~^0.14^2^^~1~^~A~^^^1^0.07^0.20^1^^^~1~^~03/01/2014~ -~36016~^~212~^0.14^2^^~1~^~A~^^^1^0.07^0.20^1^^^~1~^~03/01/2014~ -~36016~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~36016~^~214~^0.29^2^^~1~^~A~^^^1^0.07^0.50^1^^^~1~^~03/01/2014~ -~36016~^~255~^43.02^4^1.44^~1~^~A~^^^1^40.12^46.08^3^38.43^47.61^~2, 3~^~03/01/2014~ -~36016~^~269~^0.91^2^^~1~^~A~^^^1^0.75^1.07^1^^^^~03/01/2014~ -~36016~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2009~ -~36016~^~303~^1.16^4^0.24^~1~^~A~^^^1^0.53^1.54^3^0.38^1.92^~2, 3~^~03/01/2014~ -~36016~^~309~^0.79^4^0.02^~1~^~A~^^^1^0.73^0.85^3^0.70^0.86^~2, 3~^~03/01/2014~ -~36016~^~323~^2.14^4^0.16^~1~^~A~^^^1^1.88^2.61^3^1.61^2.65^~2, 3~^~03/01/2014~ -~36016~^~341~^0.22^4^0.01^~1~^~A~^^^1^0.16^0.25^3^0.15^0.27^~2, 3~^~03/01/2014~ -~36016~^~342~^7.24^4^0.95^~1~^~A~^^^1^4.42^8.49^3^4.20^10.27^~2, 3~^~03/01/2014~ -~36016~^~343~^3.12^4^0.12^~1~^~A~^^^1^2.78^3.35^3^2.71^3.52^~2, 3~^~03/01/2014~ -~36016~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~345~^0.05^4^0.03^~1~^~A~^^^1^0.00^0.13^3^-0.04^0.14^~1, 2, 3~^~03/01/2014~ -~36016~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~347~^0.25^4^0.14^~1~^~A~^^^1^0.00^0.50^3^-0.20^0.70^~1, 2, 3~^~03/01/2014~ -~36016~^~418~^0.44^4^0.09^~1~^~A~^^^1^0.23^0.69^3^0.13^0.74^~2, 3~^~06/01/2009~ -~36016~^~573~^0.00^0^^~4~^~BFZN~^~21059~^^^^^^^^^~05/01/2013~ -~36016~^~578~^0.00^0^^~4~^~BFFN~^~21059~^^^^^^^^^~05/01/2013~ -~36017~^~203~^5.42^24^0.12^~1~^~A~^^^2^4.63^7.06^16^5.15^5.69^~2, 3~^~04/01/2013~ -~36017~^~204~^6.06^24^0.52^~1~^~A~^^^2^2.88^12.20^12^4.90^7.20^~2, 3~^~04/01/2013~ -~36017~^~205~^18.80^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~207~^1.48^24^0.03^~1~^~A~^^^2^1.21^1.73^22^1.40^1.54^~2, 3~^~04/01/2013~ -~36017~^~209~^13.63^12^0.47^~1~^~A~^^^2^9.50^15.20^7^12.50^14.76^~2, 3~^~04/01/2013~ -~36017~^~210~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36017~^~211~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36017~^~212~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~05/01/2009~ -~36017~^~213~^3.02^12^0.27^~1~^~A~^^^2^1.58^4.30^9^2.39^3.63^~2, 3~^~04/01/2013~ -~36017~^~214~^0.07^12^0.01^~1~^~A~^^^2^0.00^0.20^5^0.04^0.09^~1, 2, 3~^~04/01/2013~ -~36017~^~255~^68.24^24^0.54^~1~^~A~^^^2^60.40^74.33^21^67.10^69.37^~2, 3~^~04/01/2013~ -~36017~^~269~^3.09^12^0.27^~1~^~A~^^^2^1.58^4.40^9^2.46^3.72^~2, 3~^~04/01/2013~ -~36017~^~287~^0.01^12^0.01^~1~^~A~^^^2^0.00^0.12^5^-0.01^0.03^~1, 2, 3~^~04/01/2013~ -~36017~^~303~^0.68^24^0.03^~1~^~A~^^^2^0.33^1.04^21^0.60^0.75^~2, 3~^~04/01/2013~ -~36017~^~309~^0.64^24^0.02^~1~^~A~^^^2^0.50^0.94^13^0.58^0.68^~2, 3~^~04/01/2013~ -~36017~^~323~^0.75^12^0.14^~1~^~A~^^^2^0.18^1.74^5^0.39^1.10^~2, 3~^~04/01/2013~ -~36017~^~341~^0.04^12^0.01^~1~^~A~^^^2^0.00^0.09^7^0.02^0.06^~1, 2, 3~^~04/01/2013~ -~36017~^~342~^1.72^12^0.37^~1~^~A~^^^2^0.43^4.54^5^0.75^2.67^~2, 3~^~04/01/2013~ -~36017~^~343~^0.41^12^0.15^~1~^~A~^^^2^0.00^1.52^5^7.0e-03^0.81^~1, 2, 3~^~04/01/2013~ -~36017~^~344~^0.03^12^8.0e-03^~1~^~A~^^^2^0.00^0.06^10^0.01^0.04^~1, 2, 3~^~04/01/2013~ -~36017~^~345~^0.23^12^0.05^~1~^~A~^^^2^0.00^0.48^10^0.10^0.35^~1, 2, 3~^~04/01/2013~ -~36017~^~346~^0.09^12^0.05^~1~^~A~^^^2^0.00^0.53^5^-0.04^0.22^~1, 2, 3~^~04/01/2013~ -~36017~^~347~^0.01^12^5.0e-03^~1~^~A~^^^2^0.00^0.06^5^-8.0e-03^0.01^~1, 2, 3~^~04/01/2013~ -~36017~^~418~^0.18^12^0.01^~1~^~A~^^^2^0.09^0.27^8^0.13^0.21^~2, 3~^~04/01/2013~ -~36017~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36017~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36018~^~203~^13.23^6^0.37^~1~^~A~^^^1^12.20^14.70^5^12.25^14.19^~2, 3~^~03/01/2013~ -~36018~^~204~^9.14^5^0.24^~1~^~A~^^^1^8.60^9.96^4^8.46^9.81^~2, 3~^~03/01/2013~ -~36018~^~205~^16.65^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~207~^2.17^6^0.08^~1~^~A~^^^1^1.80^2.33^5^1.96^2.37^~2, 3~^~03/01/2013~ -~36018~^~209~^15.80^3^0.10^~1~^~A~^^^1^15.70^16.00^2^15.37^16.23^~2, 3~^~03/01/2013~ -~36018~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~211~^0.51^3^0.02^~1~^~A~^^^1^0.46^0.56^2^0.38^0.63^~2, 3~^~03/01/2013~ -~36018~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~255~^58.82^6^0.28^~1~^~A~^^^1^57.80^59.91^5^58.08^59.54^~2, 3~^~03/01/2013~ -~36018~^~269~^0.51^3^0.02^~1~^~A~^^^1^0.46^0.56^2^0.38^0.63^~2, 3~^~03/01/2013~ -~36018~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~303~^0.35^6^5.0e-03^~1~^~A~^^^1^0.34^0.37^5^0.33^0.36^~2, 3~^~03/01/2013~ -~36018~^~309~^0.34^6^7.0e-03^~1~^~A~^^^1^0.33^0.37^5^0.32^0.36^~2, 3~^~03/01/2013~ -~36018~^~323~^0.88^3^0.02^~1~^~A~^^^1^0.84^0.93^2^0.77^0.98^~2, 3~^~03/01/2013~ -~36018~^~341~^0.09^3^0.02^~1~^~A~^^^1^0.05^0.12^2^4.0e-03^0.17^~2, 3~^~03/01/2013~ -~36018~^~342~^3.72^3^1.04^~1~^~A~^^^1^1.65^4.95^2^-0.77^8.21^~2, 3~^~03/01/2013~ -~36018~^~343~^1.52^3^0.49^~1~^~A~^^^1^0.54^2.04^2^-0.60^3.64^~2, 3~^~03/01/2013~ -~36018~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~03/01/2013~ -~36018~^~345~^0.11^3^0.01^~1~^~A~^^^1^0.09^0.14^2^0.03^0.18^~2, 3~^~03/01/2013~ -~36018~^~346~^0.05^3^0.03^~1~^~A~^^^1^0.00^0.12^2^-0.11^0.21^~1, 2, 3~^~03/01/2013~ -~36018~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~418~^1.23^3^0.06^~1~^~A~^^^1^1.10^1.30^2^0.94^1.52^~2, 3~^~03/01/2013~ -~36019~^~203~^12.56^6^0.76^~1~^~A~^^^1^10.69^15.20^5^10.59^14.53^~2, 3~^~03/01/2013~ -~36019~^~204~^9.79^6^0.92^~1~^~A~^^^1^7.80^13.00^5^7.41^12.17^~2, 3~^~03/01/2013~ -~36019~^~205~^4.57^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~207~^1.76^6^0.05^~1~^~A~^^^1^1.52^1.95^5^1.61^1.90^~2, 3~^~03/01/2013~ -~36019~^~209~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~03/01/2013~ -~36019~^~210~^0.22^3^0.03^~1~^~A~^^^1^0.18^0.28^2^0.07^0.35^~1, 2, 3~^~03/01/2013~ -~36019~^~211~^1.07^3^0.04^~1~^~A~^^^1^0.99^1.16^2^0.86^1.28^~2, 3~^~03/01/2013~ -~36019~^~212~^0.98^3^0.08^~1~^~A~^^^1^0.88^1.15^2^0.61^1.34^~2, 3~^~03/01/2013~ -~36019~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~255~^71.31^6^1.44^~1~^~A~^^^1^64.90^74.75^5^67.58^75.02^~2, 3~^~03/01/2013~ -~36019~^~269~^2.27^3^0.11^~1~^~A~^^^1^2.15^2.49^2^1.78^2.75^~2, 3~^~03/01/2013~ -~36019~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~303~^1.46^6^0.13^~1~^~A~^^^1^0.98^1.82^5^1.12^1.80^~2, 3~^~03/01/2013~ -~36019~^~309~^2.23^6^0.30^~1~^~A~^^^1^1.44^3.13^5^1.45^3.00^~2, 3~^~03/01/2013~ -~36019~^~323~^1.15^3^0.17^~1~^~A~^^^1^0.86^1.48^2^0.37^1.91^~2, 3~^~03/01/2013~ -~36019~^~341~^0.07^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.15^0.29^~1, 2, 3~^~03/01/2013~ -~36019~^~342~^0.08^3^0.07^~1~^~A~^^^1^0.00^0.23^2^-0.25^0.40^~1, 2, 3~^~03/01/2013~ -~36019~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~344~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.07^0.12^~1, 2, 3~^~03/01/2013~ -~36019~^~345~^0.10^3^0.09^~1~^~A~^^^1^0.00^0.29^2^-0.31^0.50^~1, 2, 3~^~03/01/2013~ -~36019~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~418~^1.26^3^0.15^~1~^~A~^^^1^0.97^1.50^2^0.59^1.92^~2, 3~^~03/01/2013~ -~36020~^~203~^18.68^6^0.55^~1~^~A~^^^1^17.20^20.56^5^17.25^20.10^~2, 3~^~03/01/2013~ -~36020~^~204~^20.31^6^0.89^~1~^~A~^^^1^17.80^24.17^5^18.02^22.59^~2, 3~^~03/01/2013~ -~36020~^~205~^16.84^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~207~^2.85^6^0.15^~1~^~A~^^^1^2.22^3.25^5^2.44^3.25^~2, 3~^~03/01/2013~ -~36020~^~209~^15.60^3^1.35^~1~^~A~^^^1^14.00^18.30^2^9.75^21.44^~2, 3~^~03/01/2013~ -~36020~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~211~^0.23^3^0.04^~1~^~A~^^^1^0.18^0.33^2^0.02^0.44^~1, 2, 3~^~03/01/2013~ -~36020~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~255~^41.32^6^1.72^~1~^~A~^^^1^33.86^45.60^5^36.88^45.75^~2, 3~^~03/01/2013~ -~36020~^~269~^0.23^3^0.04^~1~^~A~^^^1^0.18^0.33^2^0.02^0.44^~2, 3~^~03/01/2013~ -~36020~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~303~^0.77^6^0.04^~1~^~A~^^^1^0.60^0.87^5^0.64^0.88^~2, 3~^~03/01/2013~ -~36020~^~309~^0.65^6^0.02^~1~^~A~^^^1^0.58^0.71^5^0.59^0.69^~2, 3~^~03/01/2013~ -~36020~^~323~^1.69^3^0.01^~1~^~A~^^^1^1.66^1.73^2^1.61^1.77^~2, 3~^~03/01/2013~ -~36020~^~341~^0.21^3^4.0e-03^~1~^~A~^^^1^0.20^0.21^2^0.18^0.22^~2, 3~^~03/01/2013~ -~36020~^~342~^9.62^3^0.75^~1~^~A~^^^1^8.31^10.93^2^6.36^12.88^~2, 3~^~03/01/2013~ -~36020~^~343~^4.22^3^0.23^~1~^~A~^^^1^3.96^4.68^2^3.23^5.21^~2, 3~^~03/01/2013~ -~36020~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~345~^0.20^3^0.10^~1~^~A~^^^1^0.00^0.31^2^-0.23^0.62^~1, 2, 3~^~03/01/2013~ -~36020~^~346~^0.07^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.08^0.22^~1, 2, 3~^~03/01/2013~ -~36020~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36020~^~418~^0.12^3^0.01^~1~^~A~^^^1^0.10^0.15^2^0.05^0.18^~2, 3~^~03/01/2013~ -~36021~^~203~^0.79^6^0.09^~1~^~A~^^^1^0.47^1.00^5^0.55^1.03^~2, 3~^~03/01/2013~ -~36021~^~204~^7.09^6^0.41^~1~^~A~^^^1^5.49^8.09^5^6.02^8.16^~2, 3~^~03/01/2013~ -~36021~^~205~^13.17^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~207~^0.79^6^0.04^~1~^~A~^^^1^0.70^0.97^5^0.68^0.90^~2, 3~^~03/01/2013~ -~36021~^~210~^4.56^2^^~1~^~A~^^^1^2.51^6.72^1^^^^~03/01/2013~ -~36021~^~211~^2.53^3^0.22^~1~^~A~^^^1^2.13^2.85^2^1.61^3.51^~2, 3~^~03/01/2013~ -~36021~^~212~^2.24^3^0.23^~1~^~A~^^^1^1.89^2.70^2^1.25^3.28^~2, 3~^~03/01/2013~ -~36021~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~255~^78.15^6^1.58^~1~^~A~^^^1^74.40^85.06^5^74.07^82.21^~2, 3~^~03/01/2013~ -~36021~^~269~^9.33^2^^~1~^~A~^^^1^7.92^10.74^1^^^^~03/01/2013~ -~36021~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~303~^0.26^6^0.02^~1~^~A~^^^1^0.20^0.35^5^0.20^0.31^~2, 3~^~03/01/2013~ -~36021~^~309~^0.19^6^0.01^~1~^~A~^^^1^0.17^0.24^5^0.16^0.22^~2, 3~^~03/01/2013~ -~36021~^~323~^0.50^3^0.02^~1~^~A~^^^1^0.45^0.53^2^0.38^0.60^~2, 3~^~03/01/2013~ -~36021~^~341~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.10^2^9.0e-03^0.13^~2, 3~^~03/01/2013~ -~36021~^~342~^4.03^3^0.76^~1~^~A~^^^1^2.66^5.30^2^0.74^7.31^~2, 3~^~03/01/2013~ -~36021~^~343~^1.37^3^0.30^~1~^~A~^^^1^1.00^1.97^2^0.06^2.67^~2, 3~^~03/01/2013~ -~36021~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36021~^~346~^0.00^3^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-9.0e-03^0.01^~1, 2, 3~^~03/01/2013~ -~36021~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~203~^4.58^6^0.10^~1~^~A~^^^1^4.31^4.94^5^4.32^4.84^~2, 3~^~03/01/2013~ -~36022~^~204~^19.61^6^0.38^~1~^~A~^^^1^18.13^20.82^5^18.62^20.59^~2, 3~^~03/01/2013~ -~36022~^~205~^40.17^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~207~^2.55^6^0.03^~1~^~A~^^^1^2.39^2.61^5^2.46^2.63^~2, 3~^~03/01/2013~ -~36022~^~209~^32.53^3^0.82^~1~^~A~^^^1^30.90^33.50^2^29.00^36.06^~2, 3~^~03/01/2013~ -~36022~^~210~^1.07^3^0.02^~1~^~A~^^^1^1.04^1.11^2^0.97^1.16^~2, 3~^~03/01/2013~ -~36022~^~211~^1.17^3^0.04^~1~^~A~^^^1^1.08^1.22^2^0.97^1.37^~2, 3~^~03/01/2013~ -~36022~^~212~^1.05^3^0.05^~1~^~A~^^^1^0.94^1.13^2^0.80^1.28^~2, 3~^~03/01/2013~ -~36022~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~214~^1.19^3^0.17^~1~^~A~^^^1^0.88^1.50^2^0.42^1.96^~2, 3~^~03/01/2013~ -~36022~^~255~^33.09^6^0.73^~1~^~A~^^^1^29.69^34.66^5^31.18^34.98^~2, 3~^~03/01/2013~ -~36022~^~269~^4.48^3^0.17^~1~^~A~^^^1^4.26^4.83^2^3.71^5.24^~2, 3~^~03/01/2013~ -~36022~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~303~^0.67^6^0.01^~1~^~A~^^^1^0.61^0.73^5^0.63^0.71^~2, 3~^~03/01/2013~ -~36022~^~309~^0.43^6^0.01^~1~^~A~^^^1^0.40^0.47^5^0.40^0.46^~2, 3~^~03/01/2013~ -~36022~^~323~^1.27^3^0.07^~1~^~A~^^^1^1.13^1.35^2^0.97^1.57^~2, 3~^~03/01/2013~ -~36022~^~341~^0.21^3^0.01^~1~^~A~^^^1^0.17^0.23^2^0.12^0.28^~2, 3~^~03/01/2013~ -~36022~^~342~^8.83^3^0.40^~1~^~A~^^^1^8.18^9.57^2^7.09^10.56^~2, 3~^~03/01/2013~ -~36022~^~343~^3.93^3^0.21^~1~^~A~^^^1^3.51^4.18^2^3.02^4.83^~2, 3~^~03/01/2013~ -~36022~^~344~^0.04^3^1.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.04^0.04^~2, 3~^~03/01/2013~ -~36022~^~345~^0.08^3^0.01^~1~^~A~^^^1^0.06^0.09^2^0.03^0.12^~2, 3~^~03/01/2013~ -~36022~^~346~^0.08^3^0.01^~1~^~A~^^^1^0.05^0.11^2^3.0e-03^0.15^~2, 3~^~03/01/2013~ -~36022~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~203~^19.62^6^0.36^~1~^~A~^^^1^18.70^21.00^5^18.69^20.54^~2, 3~^~03/01/2013~ -~36023~^~204~^16.24^6^0.37^~1~^~A~^^^1^15.30^17.62^5^15.28^17.20^~2, 3~^~03/01/2013~ -~36023~^~205~^17.98^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~207~^2.78^6^0.04^~1~^~A~^^^1^2.59^2.91^5^2.65^2.90^~2, 3~^~03/01/2013~ -~36023~^~209~^17.03^3^0.44^~1~^~A~^^^1^16.20^17.70^2^15.13^18.93^~2, 3~^~03/01/2013~ -~36023~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~211~^0.36^3^0.01^~1~^~A~^^^1^0.33^0.38^2^0.29^0.42^~2, 3~^~03/01/2013~ -~36023~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~255~^43.38^6^0.21^~1~^~A~^^^1^42.81^44.20^5^42.81^43.93^~2, 3~^~03/01/2013~ -~36023~^~269~^0.36^3^0.01^~1~^~A~^^^1^0.33^0.38^2^0.29^0.42^~2, 3~^~03/01/2013~ -~36023~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~303~^0.90^6^0.01^~1~^~A~^^^1^0.86^0.96^5^0.85^0.94^~2, 3~^~03/01/2013~ -~36023~^~309~^0.71^6^7.0e-03^~1~^~A~^^^1^0.69^0.74^5^0.69^0.73^~2, 3~^~03/01/2013~ -~36023~^~323~^1.45^3^0.06^~1~^~A~^^^1^1.36^1.59^2^1.15^1.74^~2, 3~^~03/01/2013~ -~36023~^~341~^0.24^3^0.06^~1~^~A~^^^1^0.14^0.35^2^-0.01^0.50^~2, 3~^~03/01/2013~ -~36023~^~342~^7.86^3^0.60^~1~^~A~^^^1^6.65^8.50^2^5.25^10.46^~2, 3~^~03/01/2013~ -~36023~^~343~^3.52^3^0.23^~1~^~A~^^^1^3.06^3.83^2^2.50^4.54^~2, 3~^~03/01/2013~ -~36023~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~03/01/2013~ -~36023~^~345~^0.17^3^0.08^~1~^~A~^^^1^0.00^0.27^2^-0.20^0.54^~1, 2, 3~^~03/01/2013~ -~36023~^~346~^0.08^3^0.03^~1~^~A~^^^1^0.00^0.13^2^-0.09^0.24^~1, 2, 3~^~03/01/2013~ -~36023~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~418~^0.14^3^9.0e-03^~1~^~A~^^^1^0.12^0.15^2^0.09^0.17^~2, 3~^~03/01/2013~ -~36024~^~203~^18.06^6^0.75^~1~^~A~^^^1^16.50^21.60^5^16.12^19.99^~2, 3~^~04/01/2013~ -~36024~^~204~^15.48^6^0.44^~1~^~A~^^^1^13.90^16.68^5^14.34^16.61^~2, 3~^~04/01/2013~ -~36024~^~205~^20.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~207~^3.06^6^0.16^~1~^~A~^^^1^2.66^3.82^5^2.62^3.49^~2, 3~^~04/01/2013~ -~36024~^~209~^19.63^3^0.38^~1~^~A~^^^1^18.90^20.20^2^17.97^21.28^~2, 3~^~04/01/2013~ -~36024~^~210~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 2, 3~^~04/01/2013~ -~36024~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~255~^43.12^6^1.06^~1~^~A~^^^1^38.80^46.50^5^40.39^45.84^~2, 3~^~04/01/2013~ -~36024~^~269~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~2, 3~^~04/01/2013~ -~36024~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~303~^0.59^6^0.02^~1~^~A~^^^1^0.55^0.72^5^0.52^0.66^~2, 3~^~04/01/2013~ -~36024~^~309~^0.66^6^0.02^~1~^~A~^^^1^0.60^0.78^5^0.58^0.73^~2, 3~^~04/01/2013~ -~36024~^~323~^1.21^3^0.04^~1~^~A~^^^1^1.13^1.27^2^1.03^1.39^~2, 3~^~04/01/2013~ -~36024~^~341~^0.15^3^0.02^~1~^~A~^^^1^0.10^0.19^2^0.03^0.26^~2, 3~^~04/01/2013~ -~36024~^~342~^6.97^3^0.78^~1~^~A~^^^1^5.51^8.18^2^3.61^10.33^~2, 3~^~04/01/2013~ -~36024~^~343~^2.47^3^0.34^~1~^~A~^^^1^1.81^2.99^2^0.97^3.96^~2, 3~^~04/01/2013~ -~36024~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~345~^0.09^3^0.04^~1~^~A~^^^1^0.00^0.15^2^-0.10^0.29^~1, 2, 3~^~04/01/2013~ -~36024~^~346~^0.06^3^0.01^~1~^~A~^^^1^0.05^0.08^2^0.01^0.10^~2, 3~^~04/01/2013~ -~36024~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~418~^0.11^3^9.0e-03^~1~^~A~^^^1^0.10^0.13^2^0.07^0.15^~2, 3~^~04/01/2013~ -~36025~^~203~^0.89^6^0.02^~1~^~A~^^^1^0.80^1.00^5^0.81^0.96^~2, 3~^~04/01/2013~ -~36025~^~204~^13.22^6^0.43^~1~^~A~^^^1^11.47^14.60^5^12.10^14.33^~2, 3~^~04/01/2013~ -~36025~^~205~^13.01^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~207~^0.70^6^0.01^~1~^~A~^^^1^0.68^0.75^5^0.66^0.73^~2, 3~^~04/01/2013~ -~36025~^~209~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~210~^1.73^3^0.12^~1~^~A~^^^1^1.53^1.97^2^1.17^2.28^~2, 3~^~04/01/2013~ -~36025~^~211~^5.16^3^0.19^~1~^~A~^^^1^4.85^5.52^2^4.31^5.99^~2, 3~^~04/01/2013~ -~36025~^~212~^4.19^3^0.13^~1~^~A~^^^1^3.93^4.36^2^3.62^4.75^~2, 3~^~04/01/2013~ -~36025~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~255~^72.18^6^0.69^~1~^~A~^^^1^70.40^74.68^5^70.39^73.96^~2, 3~^~04/01/2013~ -~36025~^~269~^11.07^3^0.42^~1~^~A~^^^1^10.31^11.77^2^9.25^12.89^~2, 3~^~04/01/2013~ -~36025~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~303~^0.29^6^0.01^~1~^~A~^^^1^0.24^0.32^5^0.25^0.32^~2, 3~^~04/01/2013~ -~36025~^~309~^0.16^6^5.0e-03^~1~^~A~^^^1^0.14^0.17^5^0.14^0.16^~2, 3~^~04/01/2013~ -~36025~^~323~^0.97^3^0.05^~1~^~A~^^^1^0.90^1.08^2^0.74^1.19^~2, 3~^~04/01/2013~ -~36025~^~341~^0.10^3^8.0e-03^~1~^~A~^^^1^0.09^0.11^2^0.06^0.13^~2, 3~^~04/01/2013~ -~36025~^~342~^7.22^3^0.62^~1~^~A~^^^1^6.57^8.47^2^4.53^9.91^~2, 3~^~04/01/2013~ -~36025~^~343~^2.22^3^0.20^~1~^~A~^^^1^1.98^2.63^2^1.34^3.10^~2, 3~^~04/01/2013~ -~36025~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~346~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.05^0.14^~1, 2, 3~^~04/01/2013~ -~36025~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~203~^4.78^6^0.06^~1~^~A~^^^1^4.59^4.94^5^4.62^4.94^~2, 3~^~04/01/2013~ -~36026~^~204~^16.00^6^0.61^~1~^~A~^^^1^14.00^17.31^5^14.41^17.59^~2, 3~^~04/01/2013~ -~36026~^~205~^40.95^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~207~^1.59^6^0.02^~1~^~A~^^^1^1.50^1.64^5^1.53^1.64^~2, 3~^~04/01/2013~ -~36026~^~209~^33.50^3^0.30^~1~^~A~^^^1^33.10^34.10^2^32.18^34.81^~2, 3~^~04/01/2013~ -~36026~^~210~^1.49^3^0.09^~1~^~A~^^^1^1.31^1.62^2^1.09^1.89^~2, 3~^~04/01/2013~ -~36026~^~211~^1.36^3^0.04^~1~^~A~^^^1^1.26^1.41^2^1.14^1.56^~2, 3~^~04/01/2013~ -~36026~^~212~^1.15^3^0.05^~1~^~A~^^^1^1.05^1.23^2^0.92^1.37^~2, 3~^~04/01/2013~ -~36026~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~214~^0.83^3^0.03^~1~^~A~^^^1^0.78^0.90^2^0.66^0.98^~2, 3~^~04/01/2013~ -~36026~^~255~^36.68^6^0.51^~1~^~A~^^^1^34.88^38.20^5^35.35^37.99^~2, 3~^~04/01/2013~ -~36026~^~269~^4.82^3^0.09^~1~^~A~^^^1^4.65^4.97^2^4.42^5.21^~2, 3~^~04/01/2013~ -~36026~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~303~^0.73^6^0.02^~1~^~A~^^^1^0.66^0.82^5^0.67^0.78^~2, 3~^~04/01/2013~ -~36026~^~309~^0.55^6^0.01^~1~^~A~^^^1^0.54^0.60^5^0.52^0.58^~2, 3~^~04/01/2013~ -~36026~^~323~^1.31^3^0.05^~1~^~A~^^^1^1.25^1.42^2^1.06^1.55^~2, 3~^~04/01/2013~ -~36026~^~341~^0.15^3^0.07^~1~^~A~^^^1^0.00^0.23^2^-0.17^0.47^~1, 2, 3~^~04/01/2013~ -~36026~^~342~^7.97^3^1.09^~1~^~A~^^^1^5.98^9.77^2^3.24^12.68^~2, 3~^~04/01/2013~ -~36026~^~343~^3.02^3^0.53^~1~^~A~^^^1^2.07^3.92^2^0.70^5.33^~2, 3~^~04/01/2013~ -~36026~^~344~^0.03^3^3.0e-03^~1~^~A~^^^1^0.03^0.04^2^0.01^0.04^~2, 3~^~04/01/2013~ -~36026~^~345~^0.22^3^0.01^~1~^~A~^^^1^0.20^0.25^2^0.14^0.29^~2, 3~^~04/01/2013~ -~36026~^~346~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.03^0.08^~1, 2, 3~^~04/01/2013~ -~36026~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~203~^19.17^6^0.44^~1~^~A~^^^1^18.00^21.10^5^18.02^20.30^~2, 3~^~04/01/2013~ -~36027~^~204~^14.50^6^0.48^~1~^~A~^^^1^12.50^15.70^5^13.24^15.75^~2, 3~^~04/01/2013~ -~36027~^~205~^22.03^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~207~^2.93^6^0.06^~1~^~A~^^^1^2.74^3.16^5^2.77^3.09^~2, 3~^~04/01/2013~ -~36027~^~209~^19.70^3^0.15^~1~^~A~^^^1^19.40^19.90^2^19.04^20.35^~2, 3~^~04/01/2013~ -~36027~^~210~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~04/01/2013~ -~36027~^~211~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 2, 3~^~04/01/2013~ -~36027~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~214~^0.10^3^0.00^~1~^~A~^^^1^0.10^0.10^^^^~2, 3~^~04/01/2013~ -~36027~^~255~^41.37^6^1.08^~1~^~A~^^^1^38.00^45.00^5^38.57^44.15^~2, 3~^~04/01/2013~ -~36027~^~269~^0.29^3^9.0e-03^~1~^~A~^^^1^0.27^0.30^2^0.25^0.32^~2, 3~^~04/01/2013~ -~36027~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~303~^0.72^6^0.04^~1~^~A~^^^1^0.57^0.87^5^0.60^0.82^~2, 3~^~04/01/2013~ -~36027~^~309~^0.71^6^0.01^~1~^~A~^^^1^0.65^0.76^5^0.66^0.74^~2, 3~^~04/01/2013~ -~36027~^~323~^1.22^3^0.02^~1~^~A~^^^1^1.19^1.27^2^1.09^1.34^~2, 3~^~04/01/2013~ -~36027~^~341~^0.11^3^3.0e-03^~1~^~A~^^^1^0.11^0.12^2^0.09^0.12^~2, 3~^~04/01/2013~ -~36027~^~342~^6.23^3^0.41^~1~^~A~^^^1^5.51^6.94^2^4.45^8.01^~2, 3~^~04/01/2013~ -~36027~^~343~^2.27^3^0.33^~1~^~A~^^^1^1.76^2.90^2^0.82^3.70^~2, 3~^~04/01/2013~ -~36027~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2013~ -~36027~^~345~^0.04^3^0.04^~1~^~A~^^^1^0.00^0.12^2^-0.13^0.21^~1, 2, 3~^~04/01/2013~ -~36027~^~346~^0.07^3^8.0e-03^~1~^~A~^^^1^0.05^0.08^2^0.03^0.10^~2, 3~^~04/01/2013~ -~36027~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~418~^0.14^3^0.02^~1~^~A~^^^1^0.10^0.18^2^0.03^0.23^~2, 3~^~04/01/2013~ -~36028~^~203~^0.97^6^0.11^~1~^~A~^^^1^0.58^1.27^5^0.67^1.26^~2, 3~^~04/01/2013~ -~36028~^~204~^15.03^6^0.82^~1~^~A~^^^1^11.40^17.42^5^12.92^17.14^~2, 3~^~04/01/2013~ -~36028~^~205~^10.88^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~207~^1.35^6^0.07^~1~^~A~^^^1^1.16^1.62^5^1.17^1.53^~2, 3~^~04/01/2013~ -~36028~^~209~^0.15^3^0.07^~1~^~A~^^^1^0.07^0.30^2^-0.17^0.47^~1, 2, 3~^~04/01/2013~ -~36028~^~210~^2.97^3^0.52^~1~^~A~^^^1^2.00^3.80^2^0.71^5.22^~2, 3~^~04/01/2013~ -~36028~^~211~^2.81^3^0.17^~1~^~A~^^^1^2.63^3.17^2^2.04^3.58^~2, 3~^~04/01/2013~ -~36028~^~212~^2.37^3^0.05^~1~^~A~^^^1^2.26^2.44^2^2.12^2.61^~2, 3~^~04/01/2013~ -~36028~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~255~^71.77^6^1.06^~1~^~A~^^^1^68.90^76.60^5^69.03^74.49^~2, 3~^~04/01/2013~ -~36028~^~269~^8.16^3^0.54^~1~^~A~^^^1^7.07^8.70^2^5.81^10.49^~2, 3~^~04/01/2013~ -~36028~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~303~^0.34^6^8.0e-03^~1~^~A~^^^1^0.31^0.37^5^0.31^0.36^~2, 3~^~04/01/2013~ -~36028~^~309~^0.20^6^8.0e-03^~1~^~A~^^^1^0.17^0.21^5^0.17^0.21^~2, 3~^~04/01/2013~ -~36028~^~323~^0.93^3^0.09^~1~^~A~^^^1^0.76^1.09^2^0.52^1.34^~2, 3~^~04/01/2013~ -~36028~^~341~^0.14^3^0.02^~1~^~A~^^^1^0.09^0.17^2^0.03^0.25^~2, 3~^~04/01/2013~ -~36028~^~342~^9.46^3^1.04^~1~^~A~^^^1^7.71^11.33^2^4.96^13.96^~2, 3~^~04/01/2013~ -~36028~^~343~^3.55^3^0.59^~1~^~A~^^^1^2.43^4.46^2^0.98^6.11^~2, 3~^~04/01/2013~ -~36028~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~346~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.09^~1, 2, 3~^~04/01/2013~ -~36028~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~203~^13.75^6^0.17^~1~^~A~^^^1^13.31^14.25^5^13.30^14.18^~2, 3~^~04/01/2013~ -~36029~^~204~^12.16^6^0.33^~1~^~A~^^^1^10.90^13.12^5^11.30^13.01^~2, 3~^~04/01/2013~ -~36029~^~205~^17.41^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~207~^2.02^6^0.02^~1~^~A~^^^1^1.96^2.08^5^1.96^2.07^~2, 3~^~04/01/2013~ -~36029~^~209~^16.23^3^0.20^~1~^~A~^^^1^15.90^16.60^2^15.36^17.10^~2, 3~^~04/01/2013~ -~36029~^~210~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~04/01/2013~ -~36029~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~214~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~04/01/2013~ -~36029~^~255~^54.66^6^0.65^~1~^~A~^^^1^52.57^57.50^5^52.97^56.35^~2, 3~^~04/01/2013~ -~36029~^~269~^0.40^3^0.00^~1~^~A~^^^1^0.40^0.40^^^^~2, 3~^~04/01/2013~ -~36029~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~303~^0.41^6^0.01^~1~^~A~^^^1^0.37^0.50^5^0.36^0.46^~2, 3~^~04/01/2013~ -~36029~^~309~^0.44^6^0.01^~1~^~A~^^^1^0.41^0.49^5^0.40^0.46^~2, 3~^~04/01/2013~ -~36029~^~323~^1.00^3^0.01^~1~^~A~^^^1^0.98^1.02^2^0.95^1.05^~2, 3~^~04/01/2013~ -~36029~^~341~^0.08^3^3.0e-03^~1~^~A~^^^1^0.08^0.09^2^0.07^0.09^~2, 3~^~04/01/2013~ -~36029~^~342~^5.16^3^0.36^~1~^~A~^^^1^4.66^5.87^2^3.58^6.73^~2, 3~^~04/01/2013~ -~36029~^~343~^1.84^3^0.26^~1~^~A~^^^1^1.48^2.35^2^0.70^2.96^~2, 3~^~04/01/2013~ -~36029~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~04/01/2013~ -~36029~^~345~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.08^~1, 2, 3~^~04/01/2013~ -~36029~^~346~^0.11^3^0.02^~1~^~A~^^^1^0.07^0.15^2^0.02^0.20^~2, 3~^~04/01/2013~ -~36029~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~418~^1.12^3^0.13^~1~^~A~^^^1^0.85^1.30^2^0.53^1.70^~2, 3~^~04/01/2013~ -~36030~^~203~^2.49^6^0.11^~1~^~A~^^^1^2.18^2.88^5^2.19^2.77^~2, 3~^~04/01/2013~ -~36030~^~204~^8.99^6^0.90^~1~^~A~^^^1^5.60^12.18^5^6.67^11.31^~2, 3~^~04/01/2013~ -~36030~^~205~^26.59^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~207~^2.08^6^0.07^~1~^~A~^^^1^1.77^2.28^5^1.87^2.28^~2, 3~^~04/01/2013~ -~36030~^~209~^23.23^3^1.87^~1~^~A~^^^1^20.70^26.90^2^15.15^31.31^~2, 3~^~04/01/2013~ -~36030~^~210~^0.30^3^0.02^~1~^~A~^^^1^0.27^0.35^2^0.19^0.40^~2, 3~^~04/01/2013~ -~36030~^~211~^0.58^3^0.02^~1~^~A~^^^1^0.54^0.62^2^0.47^0.67^~2, 3~^~04/01/2013~ -~36030~^~212~^0.51^3^0.02^~1~^~A~^^^1^0.48^0.55^2^0.41^0.60^~2, 3~^~04/01/2013~ -~36030~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~255~^59.85^6^1.37^~1~^~A~^^^1^54.68^63.90^5^56.32^63.38^~2, 3~^~04/01/2013~ -~36030~^~269~^1.38^3^0.04^~1~^~A~^^^1^1.31^1.47^2^1.18^1.58^~2, 3~^~04/01/2013~ -~36030~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~303~^0.56^6^0.02^~1~^~A~^^^1^0.50^0.67^5^0.50^0.62^~2, 3~^~04/01/2013~ -~36030~^~309~^0.29^6^0.01^~1~^~A~^^^1^0.25^0.32^5^0.25^0.31^~2, 3~^~04/01/2013~ -~36030~^~323~^0.55^3^0.09^~1~^~A~^^^1^0.43^0.73^2^0.14^0.94^~2, 3~^~04/01/2013~ -~36030~^~341~^0.07^3^9.0e-03^~1~^~A~^^^1^0.06^0.09^2^0.02^0.10^~2, 3~^~04/01/2013~ -~36030~^~342~^5.02^3^0.59^~1~^~A~^^^1^4.02^6.08^2^2.46^7.58^~2, 3~^~04/01/2013~ -~36030~^~343~^1.80^3^0.12^~1~^~A~^^^1^1.62^2.04^2^1.25^2.34^~2, 3~^~04/01/2013~ -~36030~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~345~^0.12^3^0.01^~1~^~A~^^^1^0.09^0.15^2^0.04^0.18^~2, 3~^~04/01/2013~ -~36030~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~203~^5.29^6^0.05^~1~^~A~^^^1^5.06^5.38^5^5.16^5.42^~2, 3~^~04/01/2013~ -~36031~^~204~^22.23^6^0.58^~1~^~A~^^^1^20.70^24.11^5^20.73^23.72^~2, 3~^~04/01/2013~ -~36031~^~205~^41.05^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~207~^2.51^6^0.05^~1~^~A~^^^1^2.32^2.73^5^2.36^2.65^~2, 3~^~04/01/2013~ -~36031~^~209~^33.83^3^0.06^~1~^~A~^^^1^33.70^33.90^2^33.54^34.12^~2, 3~^~04/01/2013~ -~36031~^~210~^0.95^3^0.03^~1~^~A~^^^1^0.89^0.99^2^0.81^1.07^~2, 3~^~04/01/2013~ -~36031~^~211~^1.22^3^0.06^~1~^~A~^^^1^1.11^1.33^2^0.94^1.49^~2, 3~^~04/01/2013~ -~36031~^~212~^1.24^3^0.06^~1~^~A~^^^1^1.13^1.36^2^0.95^1.52^~2, 3~^~04/01/2013~ -~36031~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~214~^1.35^3^0.11^~1~^~A~^^^1^1.15^1.56^2^0.84^1.86^~2, 3~^~04/01/2013~ -~36031~^~255~^28.92^6^1.00^~1~^~A~^^^1^24.45^31.82^5^26.34^31.49^~2, 3~^~04/01/2013~ -~36031~^~269~^4.76^3^0.22^~1~^~A~^^^1^4.47^5.21^2^3.77^5.74^~2, 3~^~04/01/2013~ -~36031~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~303~^0.74^6^0.02^~1~^~A~^^^1^0.63^0.80^5^0.66^0.80^~2, 3~^~04/01/2013~ -~36031~^~309~^0.55^6^0.02^~1~^~A~^^^1^0.50^0.64^5^0.49^0.60^~2, 3~^~04/01/2013~ -~36031~^~323~^1.23^3^0.02^~1~^~A~^^^1^1.19^1.28^2^1.10^1.35^~2, 3~^~04/01/2013~ -~36031~^~341~^0.18^3^0.01^~1~^~A~^^^1^0.17^0.21^2^0.12^0.24^~2, 3~^~04/01/2013~ -~36031~^~342~^8.33^3^0.44^~1~^~A~^^^1^7.64^9.15^2^6.42^10.23^~2, 3~^~04/01/2013~ -~36031~^~343~^3.23^3^0.52^~1~^~A~^^^1^2.56^4.26^2^0.99^5.47^~2, 3~^~04/01/2013~ -~36031~^~344~^0.04^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.02^0.05^~2, 3~^~04/01/2013~ -~36031~^~345~^0.15^3^5.0e-03^~1~^~A~^^^1^0.14^0.16^2^0.12^0.16^~2, 3~^~04/01/2013~ -~36031~^~346~^0.04^3^4.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.02^0.05^~2, 3~^~04/01/2013~ -~36031~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~203~^7.84^6^0.32^~1~^~A~^^^1^6.99^9.25^5^7.01^8.67^~2, 3~^~04/01/2013~ -~36032~^~204~^8.52^6^0.64^~1~^~A~^^^1^6.30^10.49^5^6.86^10.17^~2, 3~^~04/01/2013~ -~36032~^~205~^15.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~207~^1.49^6^0.05^~1~^~A~^^^1^1.31^1.71^5^1.33^1.64^~2, 3~^~04/01/2013~ -~36032~^~209~^11.37^3^1.59^~1~^~A~^^^1^9.00^14.40^2^4.50^18.22^~2, 3~^~04/01/2013~ -~36032~^~210~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~36032~^~211~^0.63^3^0.08^~1~^~A~^^^1^0.50^0.80^2^0.25^1.01^~2, 3~^~04/01/2013~ -~36032~^~212~^0.70^3^0.10^~1~^~A~^^^1^0.60^0.90^2^0.27^1.13^~2, 3~^~04/01/2013~ -~36032~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~214~^0.20^3^0.05^~1~^~A~^^^1^0.10^0.30^2^-0.04^0.44^~2, 3~^~04/01/2013~ -~36032~^~255~^66.64^6^0.90^~1~^~A~^^^1^62.73^69.30^5^64.32^68.95^~2, 3~^~04/01/2013~ -~36032~^~269~^2.03^3^0.20^~1~^~A~^^^1^1.70^2.40^2^1.16^2.90^~2, 3~^~04/01/2013~ -~36032~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~303~^1.29^6^0.03^~1~^~A~^^^1^1.16^1.40^5^1.19^1.38^~2, 3~^~04/01/2013~ -~36032~^~309~^1.04^6^0.03^~1~^~A~^^^1^0.93^1.13^5^0.95^1.11^~2, 3~^~04/01/2013~ -~36032~^~323~^0.75^3^0.05^~1~^~A~^^^1^0.67^0.86^2^0.50^0.99^~2, 3~^~04/01/2013~ -~36032~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~342~^0.36^3^0.08^~1~^~A~^^^1^0.26^0.53^2^1.0e-03^0.72^~2, 3~^~04/01/2013~ -~36032~^~343~^0.06^3^0.03^~1~^~A~^^^1^0.00^0.13^2^-0.09^0.22^~1, 2, 3~^~04/01/2013~ -~36032~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~04/01/2013~ -~36032~^~345~^0.27^3^0.04^~1~^~A~^^^1^0.19^0.31^2^0.09^0.44^~2, 3~^~04/01/2013~ -~36032~^~346~^0.08^3^0.08^~1~^~A~^^^1^0.00^0.24^2^-0.26^0.43^~1, 2, 3~^~04/01/2013~ -~36032~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~418~^0.39^3^0.04^~1~^~A~^^^1^0.31^0.46^2^0.20^0.58^~2, 3~^~04/01/2013~ -~36033~^~203~^13.49^12^0.20^~1~^~A~^^^2^12.20^14.70^7^12.99^13.97^~2, 3~^~04/01/2013~ -~36033~^~204~^10.79^11^0.21^~1~^~A~^^^2^8.60^13.12^8^10.29^11.27^~2, 3~^~04/01/2013~ -~36033~^~205~^16.89^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~207~^2.09^12^0.04^~1~^~A~^^^2^1.80^2.33^6^1.99^2.19^~2, 3~^~04/01/2013~ -~36033~^~209~^16.02^6^0.11^~1~^~A~^^^2^15.70^16.60^3^15.65^16.38^~2, 3~^~04/01/2013~ -~36033~^~210~^0.10^6^0.00^~1~^~A~^^^2^0.00^0.20^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~211~^0.25^6^0.01^~1~^~A~^^^2^0.00^0.56^2^0.19^0.31^~1, 2, 3~^~04/01/2013~ -~36033~^~212~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~213~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~214~^0.10^6^0.00^~1~^~A~^^^2^0.00^0.20^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~255~^56.74^12^0.35^~1~^~A~^^^2^52.57^59.91^7^55.88^57.59^~2, 3~^~04/01/2013~ -~36033~^~269~^0.45^6^0.01^~1~^~A~^^^2^0.40^0.56^2^0.39^0.51^~2, 3~^~04/01/2013~ -~36033~^~287~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~303~^0.38^12^0.01^~1~^~A~^^^2^0.34^0.50^6^0.35^0.40^~2, 3~^~04/01/2013~ -~36033~^~309~^0.39^12^7.0e-03^~1~^~A~^^^2^0.33^0.49^8^0.37^0.40^~2, 3~^~04/01/2013~ -~36033~^~323~^0.94^6^0.01^~1~^~A~^^^2^0.84^1.02^3^0.89^0.98^~2, 3~^~04/01/2013~ -~36033~^~341~^0.09^6^0.01^~1~^~A~^^^2^0.05^0.12^2^0.04^0.12^~2, 3~^~04/01/2013~ -~36033~^~342~^4.44^6^0.55^~1~^~A~^^^2^1.65^5.87^3^2.45^6.43^~2, 3~^~04/01/2013~ -~36033~^~343~^1.68^6^0.28^~1~^~A~^^^2^0.54^2.35^3^0.79^2.56^~2, 3~^~04/01/2013~ -~36033~^~344~^0.02^6^0.01^~1~^~A~^^^2^0.00^0.05^4^-6.0e-03^0.04^~1, 2, 3~^~04/01/2013~ -~36033~^~345~^0.06^6^0.01^~1~^~A~^^^2^0.00^0.14^4^0.02^0.09^~1, 2, 3~^~04/01/2013~ -~36033~^~346~^0.08^6^0.02^~1~^~A~^^^2^0.00^0.15^3^0.01^0.14^~1, 2, 3~^~04/01/2013~ -~36033~^~347~^0.00^6^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~418~^1.17^6^0.07^~1~^~A~^^^2^0.85^1.30^3^0.92^1.42^~2, 3~^~04/01/2013~ -~36033~^~573~^0.00^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36033~^~578~^0.00^0^^~4~^~BFPN~^~15034~^^^^^^^^^~04/01/2013~ -~36034~^~203~^18.88^24^0.28^~1~^~A~^^^2^16.50^21.60^21^18.29^19.47^~2, 3~^~04/01/2013~ -~36034~^~204~^16.63^24^0.42^~1~^~A~^^^2^12.50^24.17^15^15.73^17.52^~2, 3~^~04/01/2013~ -~36034~^~205~^19.29^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~207~^2.90^24^0.05^~1~^~A~^^^2^2.22^3.82^22^2.78^3.02^~2, 3~^~04/01/2013~ -~36034~^~209~^17.99^12^0.36^~1~^~A~^^^2^14.00^20.20^6^17.07^18.90^~2, 3~^~04/01/2013~ -~36034~^~210~^0.05^12^2.0e-03^~1~^~A~^^^2^0.00^0.10^5^0.04^0.05^~1, 2, 3~^~04/01/2013~ -~36034~^~211~^0.17^12^0.02^~1~^~A~^^^2^0.00^0.38^8^0.12^0.21^~1, 2, 3~^~04/01/2013~ -~36034~^~212~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~213~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~214~^0.03^12^0.01^~1~^~A~^^^2^0.00^0.10^5^-4.0e-03^0.05^~1, 2, 3~^~04/01/2013~ -~36034~^~255~^42.30^24^0.58^~1~^~A~^^^2^33.86^46.50^22^41.07^43.51^~2, 3~^~04/01/2013~ -~36034~^~269~^0.24^12^0.02^~1~^~A~^^^2^0.07^0.38^10^0.17^0.30^~2, 3~^~04/01/2013~ -~36034~^~287~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~303~^0.74^24^0.02^~1~^~A~^^^2^0.55^0.96^22^0.70^0.79^~2, 3~^~04/01/2013~ -~36034~^~309~^0.68^24^0.01^~1~^~A~^^^2^0.58^0.78^22^0.65^0.70^~2, 3~^~04/01/2013~ -~36034~^~323~^1.39^12^0.03^~1~^~A~^^^2^1.13^1.73^6^1.31^1.47^~2, 3~^~04/01/2013~ -~36034~^~341~^0.18^12^0.01^~1~^~A~^^^2^0.10^0.35^8^0.14^0.21^~2, 3~^~04/01/2013~ -~36034~^~342~^7.67^12^0.36^~1~^~A~^^^2^5.51^10.93^9^6.85^8.49^~2, 3~^~04/01/2013~ -~36034~^~343~^3.12^12^0.15^~1~^~A~^^^2^1.76^4.68^10^2.77^3.46^~2, 3~^~04/01/2013~ -~36034~^~344~^0.01^12^6.0e-03^~1~^~A~^^^2^0.00^0.05^10^-2.0e-03^0.02^~1, 2, 3~^~04/01/2013~ -~36034~^~345~^0.13^12^0.03^~1~^~A~^^^2^0.00^0.31^8^0.04^0.20^~1, 2, 3~^~04/01/2013~ -~36034~^~346~^0.07^12^0.01^~1~^~A~^^^2^0.00^0.13^6^0.03^0.10^~1, 2, 3~^~04/01/2013~ -~36034~^~347~^0.00^12^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~418~^0.13^12^8.0e-03^~1~^~A~^^^2^0.10^0.18^9^0.11^0.14^~2, 3~^~04/01/2013~ -~36035~^~203~^0.88^18^0.04^~1~^~A~^^^2^0.47^1.27^16^0.77^0.98^~2, 3~^~04/01/2013~ -~36035~^~204~^11.78^18^0.37^~1~^~A~^^^2^5.49^17.42^14^10.98^12.58^~2, 3~^~04/01/2013~ -~36035~^~205~^12.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~207~^0.95^18^0.07^~1~^~A~^^^2^0.68^1.62^12^0.79^1.10^~2, 3~^~04/01/2013~ -~36035~^~209~^0.07^6^0.04^~1~^~A~^^^1^0.00^0.30^5^-0.04^0.19^~1, 2, 3~^~04/01/2013~ -~36035~^~210~^2.91^8^0.59^~1~^~A~^^^2^1.53^6.72^2^-0.35^6.18^~2, 3~^~04/01/2013~ -~36035~^~211~^3.51^9^0.36^~1~^~A~^^^2^2.13^5.52^5^2.59^4.43^~2, 3~^~04/01/2013~ -~36035~^~212~^2.94^9^0.28^~1~^~A~^^^2^1.89^4.36^6^2.23^3.64^~2, 3~^~04/01/2013~ -~36035~^~213~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~214~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~255~^74.03^18^0.66^~1~^~A~^^^2^68.90^85.06^11^72.56^75.49^~2, 3~^~04/01/2013~ -~36035~^~269~^9.54^8^0.64^~1~^~A~^^^2^7.07^11.77^5^7.91^11.17^~2, 3~^~04/01/2013~ -~36035~^~287~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~303~^0.30^18^0.01^~1~^~A~^^^2^0.20^0.37^14^0.27^0.31^~2, 3~^~04/01/2013~ -~36035~^~309~^0.18^18^6.0e-03^~1~^~A~^^^2^0.14^0.24^16^0.16^0.19^~2, 3~^~04/01/2013~ -~36035~^~323~^0.80^9^0.03^~1~^~A~^^^2^0.45^1.09^6^0.71^0.88^~2, 3~^~04/01/2013~ -~36035~^~341~^0.10^9^0.01^~1~^~A~^^^2^0.05^0.17^7^0.07^0.13^~2, 3~^~04/01/2013~ -~36035~^~342~^6.91^9^0.55^~1~^~A~^^^2^2.66^11.33^7^5.58^8.22^~2, 3~^~04/01/2013~ -~36035~^~343~^2.38^9^0.29^~1~^~A~^^^2^1.00^4.46^6^1.67^3.08^~2, 3~^~04/01/2013~ -~36035~^~344~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~345~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~346~^0.02^9^9.0e-03^~1~^~A~^^^2^0.00^0.08^5^-3.0e-03^0.04^~1, 2, 3~^~04/01/2013~ -~36035~^~347~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36035~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~36036~^~203~^4.89^18^0.06^~1~^~A~^^^2^4.31^5.38^16^4.74^5.02^~2, 3~^~04/01/2013~ -~36036~^~204~^19.28^18^0.69^~1~^~A~^^^2^14.00^24.11^12^17.76^20.79^~2, 3~^~04/01/2013~ -~36036~^~205~^40.72^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~207~^2.21^18^0.09^~1~^~A~^^^2^1.50^2.73^11^2.00^2.42^~2, 3~^~04/01/2013~ -~36036~^~209~^33.29^9^0.29^~1~^~A~^^^2^30.90^34.10^3^32.27^34.30^~2, 3~^~04/01/2013~ -~36036~^~210~^1.17^9^0.08^~1~^~A~^^^2^0.89^1.62^5^0.94^1.38^~2, 3~^~04/01/2013~ -~36036~^~211~^1.25^9^0.03^~1~^~A~^^^2^1.08^1.41^7^1.16^1.33^~2, 3~^~04/01/2013~ -~36036~^~212~^1.14^9^0.03^~1~^~A~^^^2^0.94^1.36^7^1.06^1.22^~2, 3~^~04/01/2013~ -~36036~^~213~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~214~^1.12^9^0.10^~1~^~A~^^^2^0.78^1.56^7^0.87^1.37^~2, 3~^~04/01/2013~ -~36036~^~255~^32.90^18^0.89^~1~^~A~^^^2^24.45^38.20^13^30.96^34.82^~2, 3~^~04/01/2013~ -~36036~^~269~^4.68^9^0.09^~1~^~A~^^^2^4.26^5.21^7^4.45^4.91^~2, 3~^~04/01/2013~ -~36036~^~287~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~303~^0.71^18^0.01^~1~^~A~^^^2^0.61^0.82^15^0.68^0.73^~2, 3~^~04/01/2013~ -~36036~^~309~^0.51^18^8.0e-03^~1~^~A~^^^2^0.40^0.64^15^0.49^0.53^~2, 3~^~04/01/2013~ -~36036~^~323~^1.27^9^0.03^~1~^~A~^^^2^1.13^1.42^6^1.18^1.35^~2, 3~^~04/01/2013~ -~36036~^~341~^0.18^9^0.02^~1~^~A~^^^2^0.00^0.23^6^0.12^0.24^~1, 2, 3~^~04/01/2013~ -~36036~^~342~^8.38^9^0.38^~1~^~A~^^^2^5.98^9.77^6^7.45^9.30^~2, 3~^~04/01/2013~ -~36036~^~343~^3.39^9^0.23^~1~^~A~^^^2^2.07^4.26^6^2.81^3.97^~2, 3~^~04/01/2013~ -~36036~^~344~^0.04^9^2.0e-03^~1~^~A~^^^2^0.03^0.05^5^0.03^0.04^~2, 3~^~04/01/2013~ -~36036~^~345~^0.15^9^0.01^~1~^~A~^^^2^0.06^0.25^6^0.11^0.18^~2, 3~^~04/01/2013~ -~36036~^~346~^0.05^9^8.0e-03^~1~^~A~^^^2^0.00^0.11^5^0.02^0.07^~1, 2, 3~^~04/01/2013~ -~36036~^~347~^0.00^9^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~203~^12.56^6^0.76^~1~^~A~^^^1^10.69^15.20^5^10.59^14.53^~2, 3~^~04/01/2013~ -~36037~^~204~^9.79^6^0.92^~1~^~A~^^^1^7.80^13.00^5^7.41^12.17^~2, 3~^~04/01/2013~ -~36037~^~205~^4.57^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~207~^1.76^6^0.05^~1~^~A~^^^1^1.52^1.95^5^1.61^1.90^~2, 3~^~04/01/2013~ -~36037~^~209~^0.43^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.29^0.57^~2, 3~^~04/01/2013~ -~36037~^~210~^0.22^3^0.03^~1~^~A~^^^1^0.18^0.28^2^0.07^0.35^~1, 2, 3~^~04/01/2013~ -~36037~^~211~^1.07^3^0.04^~1~^~A~^^^1^0.99^1.16^2^0.86^1.28^~2, 3~^~04/01/2013~ -~36037~^~212~^0.98^3^0.08^~1~^~A~^^^1^0.88^1.15^2^0.61^1.34^~2, 3~^~04/01/2013~ -~36037~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~255~^71.31^6^1.44^~1~^~A~^^^1^64.90^74.75^5^67.58^75.02^~2, 3~^~04/01/2013~ -~36037~^~269~^2.27^3^0.11^~1~^~A~^^^1^2.15^2.49^2^1.78^2.75^~2, 3~^~04/01/2013~ -~36037~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~303~^1.46^6^0.13^~1~^~A~^^^1^0.98^1.82^5^1.12^1.80^~2, 3~^~04/01/2013~ -~36037~^~309~^2.23^6^0.30^~1~^~A~^^^1^1.44^3.13^5^1.45^3.00^~2, 3~^~04/01/2013~ -~36037~^~323~^1.15^3^0.17^~1~^~A~^^^1^0.86^1.48^2^0.37^1.91^~2, 3~^~04/01/2013~ -~36037~^~341~^0.07^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.15^0.29^~1, 2, 3~^~04/01/2013~ -~36037~^~342~^0.08^3^0.07^~1~^~A~^^^1^0.00^0.23^2^-0.25^0.40^~1, 2, 3~^~04/01/2013~ -~36037~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~344~^0.02^3^0.02^~1~^~A~^^^1^0.00^0.07^2^-0.07^0.12^~1, 2, 3~^~04/01/2013~ -~36037~^~345~^0.10^3^0.09^~1~^~A~^^^1^0.00^0.29^2^-0.31^0.50^~1, 2, 3~^~04/01/2013~ -~36037~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~418~^1.26^3^0.15^~1~^~A~^^^1^0.97^1.50^2^0.59^1.92^~2, 3~^~04/01/2013~ -~36037~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36037~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36038~^~203~^7.84^6^0.32^~1~^~A~^^^1^6.99^9.25^5^7.01^8.67^~2, 3~^~04/01/2013~ -~36038~^~204~^8.52^6^0.64^~1~^~A~^^^1^6.30^10.49^5^6.86^10.17^~2, 3~^~04/01/2013~ -~36038~^~205~^15.51^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~207~^1.49^6^0.05^~1~^~A~^^^1^1.31^1.71^5^1.33^1.64^~2, 3~^~04/01/2013~ -~36038~^~209~^11.37^3^1.59^~1~^~A~^^^1^9.00^14.40^2^4.50^18.22^~2, 3~^~04/01/2013~ -~36038~^~210~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~36038~^~211~^0.63^3^0.08^~1~^~A~^^^1^0.50^0.80^2^0.25^1.01^~2, 3~^~04/01/2013~ -~36038~^~212~^0.70^3^0.10^~1~^~A~^^^1^0.60^0.90^2^0.27^1.13^~2, 3~^~04/01/2013~ -~36038~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~214~^0.20^3^0.05^~1~^~A~^^^1^0.10^0.30^2^-0.04^0.44^~2, 3~^~04/01/2013~ -~36038~^~255~^66.64^6^0.90^~1~^~A~^^^1^62.73^69.30^5^64.32^68.95^~2, 3~^~04/01/2013~ -~36038~^~269~^2.03^3^0.20^~1~^~A~^^^1^1.70^2.40^2^1.16^2.90^~2, 3~^~04/01/2013~ -~36038~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~303~^1.29^6^0.03^~1~^~A~^^^1^1.16^1.40^5^1.19^1.38^~2, 3~^~04/01/2013~ -~36038~^~309~^1.04^6^0.03^~1~^~A~^^^1^0.93^1.13^5^0.95^1.11^~2, 3~^~04/01/2013~ -~36038~^~323~^0.75^3^0.05^~1~^~A~^^^1^0.67^0.86^2^0.50^0.99^~2, 3~^~04/01/2013~ -~36038~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~342~^0.36^3^0.08^~1~^~A~^^^1^0.26^0.53^2^1.0e-03^0.72^~2, 3~^~04/01/2013~ -~36038~^~343~^0.06^3^0.03^~1~^~A~^^^1^0.00^0.13^2^-0.09^0.22^~1, 2, 3~^~04/01/2013~ -~36038~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.09^~1, 2, 3~^~04/01/2013~ -~36038~^~345~^0.27^3^0.04^~1~^~A~^^^1^0.19^0.31^2^0.09^0.44^~2, 3~^~04/01/2013~ -~36038~^~346~^0.08^3^0.08^~1~^~A~^^^1^0.00^0.24^2^-0.26^0.43^~1, 2, 3~^~04/01/2013~ -~36038~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~418~^0.39^3^0.04^~1~^~A~^^^1^0.31^0.46^2^0.20^0.58^~2, 3~^~04/01/2013~ -~36039~^~203~^2.49^6^0.11^~1~^~A~^^^1^2.18^2.88^5^2.19^2.77^~2, 3~^~04/01/2013~ -~36039~^~204~^8.99^6^0.90^~1~^~A~^^^1^5.60^12.18^5^6.67^11.31^~2, 3~^~04/01/2013~ -~36039~^~205~^26.59^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~207~^2.08^6^0.07^~1~^~A~^^^1^1.77^2.28^5^1.87^2.28^~2, 3~^~04/01/2013~ -~36039~^~209~^23.23^3^1.87^~1~^~A~^^^1^20.70^26.90^2^15.15^31.31^~2, 3~^~04/01/2013~ -~36039~^~210~^0.30^3^0.02^~1~^~A~^^^1^0.27^0.35^2^0.19^0.40^~2, 3~^~04/01/2013~ -~36039~^~211~^0.58^3^0.02^~1~^~A~^^^1^0.54^0.62^2^0.47^0.67^~2, 3~^~04/01/2013~ -~36039~^~212~^0.51^3^0.02^~1~^~A~^^^1^0.48^0.55^2^0.41^0.60^~2, 3~^~04/01/2013~ -~36039~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~255~^59.85^6^1.37^~1~^~A~^^^1^54.68^63.90^5^56.32^63.38^~2, 3~^~04/01/2013~ -~36039~^~269~^1.38^3^0.04^~1~^~A~^^^1^1.31^1.47^2^1.18^1.58^~2, 3~^~04/01/2013~ -~36039~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~303~^0.56^6^0.02^~1~^~A~^^^1^0.50^0.67^5^0.50^0.62^~2, 3~^~04/01/2013~ -~36039~^~309~^0.29^6^0.01^~1~^~A~^^^1^0.25^0.32^5^0.25^0.31^~2, 3~^~04/01/2013~ -~36039~^~323~^0.55^3^0.09^~1~^~A~^^^1^0.43^0.73^2^0.14^0.94^~2, 3~^~04/01/2013~ -~36039~^~341~^0.07^3^9.0e-03^~1~^~A~^^^1^0.06^0.09^2^0.02^0.10^~2, 3~^~04/01/2013~ -~36039~^~342~^5.02^3^0.59^~1~^~A~^^^1^4.02^6.08^2^2.46^7.58^~2, 3~^~04/01/2013~ -~36039~^~343~^1.80^3^0.12^~1~^~A~^^^1^1.62^2.04^2^1.25^2.34^~2, 3~^~04/01/2013~ -~36039~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~345~^0.12^3^0.01^~1~^~A~^^^1^0.09^0.15^2^0.04^0.18^~2, 3~^~04/01/2013~ -~36039~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~203~^6.49^6^0.25^~1~^~A~^^^1^5.56^7.25^5^5.83^7.14^~2, 3~^~04/01/2013~ -~36040~^~204~^11.75^6^0.42^~1~^~A~^^^1^10.00^12.60^5^10.67^12.83^~2, 3~^~04/01/2013~ -~36040~^~205~^15.61^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~207~^1.62^6^0.04^~1~^~A~^^^1^1.46^1.76^5^1.50^1.74^~2, 3~^~04/01/2013~ -~36040~^~209~^12.17^3^0.63^~1~^~A~^^^1^11.10^13.30^2^9.43^14.90^~2, 3~^~04/01/2013~ -~36040~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~213~^2.70^3^0.05^~1~^~A~^^^1^2.60^2.80^2^2.45^2.94^~2, 3~^~04/01/2013~ -~36040~^~214~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~04/01/2013~ -~36040~^~255~^64.53^6^1.50^~1~^~A~^^^1^60.66^70.30^5^60.66^68.39^~2, 3~^~04/01/2013~ -~36040~^~269~^2.83^3^0.08^~1~^~A~^^^1^2.70^3.00^2^2.45^3.21^~2, 3~^~04/01/2013~ -~36040~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~303~^0.57^6^0.03^~1~^~A~^^^1^0.47^0.70^5^0.47^0.67^~2, 3~^~04/01/2013~ -~36040~^~309~^0.83^6^0.03^~1~^~A~^^^1^0.71^0.92^5^0.74^0.91^~2, 3~^~04/01/2013~ -~36040~^~323~^0.73^3^0.04^~1~^~A~^^^1^0.68^0.82^2^0.52^0.93^~2, 3~^~04/01/2013~ -~36040~^~341~^0.09^3^3.0e-03^~1~^~A~^^^1^0.08^0.09^2^0.07^0.09^~2, 3~^~04/01/2013~ -~36040~^~342~^4.21^3^0.13^~1~^~A~^^^1^3.97^4.43^2^3.64^4.78^~2, 3~^~04/01/2013~ -~36040~^~343~^1.39^3^0.04^~1~^~A~^^^1^1.34^1.47^2^1.21^1.56^~2, 3~^~04/01/2013~ -~36040~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~345~^0.17^3^0.08^~1~^~A~^^^1^0.00^0.27^2^-0.19^0.52^~1, 2, 3~^~04/01/2013~ -~36040~^~346~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.06^0.09^~1, 2, 3~^~04/01/2013~ -~36040~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~418~^0.19^3^0.03^~1~^~A~^^^1^0.12^0.23^2^0.03^0.35^~2, 3~^~04/01/2013~ -~36041~^~203~^10.83^12^0.21^~1~^~A~^^^1^9.88^12.62^11^10.35^11.31^~2, 3~^~03/01/2014~ -~36041~^~204~^10.69^12^0.26^~1~^~A~^^^1^9.24^12.20^11^10.10^11.27^~2, 3~^~03/01/2014~ -~36041~^~205~^11.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~207~^2.25^12^0.03^~1~^~A~^^^1^2.04^2.42^11^2.16^2.32^~2, 3~^~03/01/2014~ -~36041~^~209~^6.13^6^0.86^~1~^~A~^^^1^4.10^10.20^5^3.90^8.36^~2, 3~^~03/01/2014~ -~36041~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~211~^1.18^6^0.08^~1~^~A~^^^1^0.88^1.52^5^0.94^1.40^~2, 3~^~03/01/2014~ -~36041~^~212~^1.18^6^0.08^~1~^~A~^^^1^0.87^1.46^5^0.97^1.38^~2, 3~^~03/01/2014~ -~36041~^~213~^0.61^6^0.27^~1~^~A~^^^1^0.00^1.30^5^-0.09^1.31^~1, 2, 3~^~03/01/2014~ -~36041~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~255~^64.87^12^0.41^~1~^~A~^^^1^62.07^67.00^11^63.96^65.78^~2, 3~^~03/01/2014~ -~36041~^~269~^3.15^6^0.21^~1~^~A~^^^1^2.45^3.78^5^2.61^3.69^~2, 3~^~03/01/2014~ -~36041~^~287~^0.18^6^0.01^~1~^~A~^^^1^0.14^0.23^5^0.14^0.21^~2, 3~^~03/01/2014~ -~36041~^~303~^0.79^12^0.02^~1~^~A~^^^1^0.67^0.91^11^0.73^0.84^~2, 3~^~03/01/2014~ -~36041~^~309~^1.32^12^0.02^~1~^~A~^^^1^1.17^1.43^11^1.27^1.37^~2, 3~^~03/01/2014~ -~36041~^~323~^0.91^6^0.03^~1~^~A~^^^1^0.79^1.03^5^0.81^1.00^~2, 3~^~03/01/2014~ -~36041~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~342~^0.14^6^0.03^~1~^~A~^^^1^0.05^0.28^5^0.04^0.22^~2, 3~^~03/01/2014~ -~36041~^~343~^0.01^6^7.0e-03^~1~^~A~^^^1^0.00^0.04^5^-0.01^0.02^~1, 2, 3~^~03/01/2014~ -~36041~^~344~^0.01^6^7.0e-03^~1~^~A~^^^1^0.00^0.04^5^-0.01^0.02^~1, 2, 3~^~03/01/2014~ -~36041~^~345~^0.05^6^0.02^~1~^~A~^^^1^0.00^0.11^5^-0.01^0.10^~1, 2, 3~^~03/01/2014~ -~36041~^~346~^0.04^6^0.04^~1~^~A~^^^1^0.00^0.24^5^-0.06^0.14^~1, 2, 3~^~03/01/2014~ -~36041~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~418~^0.66^6^0.05^~1~^~A~^^^1^0.53^0.90^5^0.51^0.80^~2, 3~^~03/01/2014~ -~36041~^~573~^0.00^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~578~^0.00^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36042~^~203~^11.28^6^0.32^~1~^~A~^^^1^10.37^12.62^5^10.45^12.10^~2, 3~^~03/01/2014~ -~36042~^~204~^10.84^6^0.31^~1~^~A~^^^1^9.72^12.09^5^10.04^11.64^~2, 3~^~03/01/2014~ -~36042~^~205~^10.33^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~207~^2.25^6^0.04^~1~^~A~^^^1^2.11^2.41^5^2.14^2.35^~2, 3~^~03/01/2014~ -~36042~^~209~^4.83^3^0.38^~1~^~A~^^^1^4.10^5.40^2^3.17^6.48^~2, 3~^~03/01/2014~ -~36042~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~211~^1.02^3^0.06^~1~^~A~^^^1^0.88^1.10^2^0.72^1.31^~2, 3~^~03/01/2014~ -~36042~^~212~^1.11^3^0.12^~1~^~A~^^^1^0.87^1.28^2^0.57^1.64^~2, 3~^~03/01/2014~ -~36042~^~213~^1.22^3^0.05^~1~^~A~^^^1^1.12^1.30^2^0.99^1.45^~2, 3~^~03/01/2014~ -~36042~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~255~^65.29^6^0.22^~1~^~A~^^^1^64.42^65.99^5^64.72^65.85^~2, 3~^~03/01/2014~ -~36042~^~269~^3.53^3^0.15^~1~^~A~^^^1^3.26^3.78^2^2.88^4.18^~2, 3~^~03/01/2014~ -~36042~^~287~^0.18^3^0.01^~1~^~A~^^^1^0.15^0.21^2^0.10^0.25^~2, 3~^~03/01/2014~ -~36042~^~303~^0.75^6^0.02^~1~^~A~^^^1^0.67^0.85^5^0.67^0.82^~2, 3~^~03/01/2014~ -~36042~^~309~^1.31^6^0.04^~1~^~A~^^^1^1.17^1.43^5^1.20^1.42^~2, 3~^~03/01/2014~ -~36042~^~323~^0.86^3^0.03^~1~^~A~^^^1^0.79^0.93^2^0.68^1.02^~2, 3~^~03/01/2014~ -~36042~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~342~^0.20^3^0.04^~1~^~A~^^^1^0.14^0.28^2^0.01^0.38^~2, 3~^~03/01/2014~ -~36042~^~343~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~03/01/2014~ -~36042~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~03/01/2014~ -~36042~^~345~^0.04^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.11^0.18^~1, 2, 3~^~03/01/2014~ -~36042~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~418~^0.55^3^0.01^~1~^~A~^^^1^0.53^0.58^2^0.48^0.61^~2, 3~^~03/01/2014~ -~36043~^~203~^10.48^3^0.34^~1~^~A~^^^1^9.88^11.06^2^9.00^11.95^~2, 3~^~03/01/2014~ -~36043~^~204~^11.06^3^0.66^~1~^~A~^^^1^9.90^12.20^2^8.20^13.91^~2, 3~^~03/01/2014~ -~36043~^~205~^12.36^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~207~^2.38^3^0.02^~1~^~A~^^^1^2.35^2.42^2^2.29^2.47^~2, 3~^~03/01/2014~ -~36043~^~209~^7.43^3^1.39^~1~^~A~^^^1^5.80^10.20^2^1.44^13.41^~2, 3~^~03/01/2014~ -~36043~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~211~^1.34^3^0.09^~1~^~A~^^^1^1.21^1.52^2^0.93^1.74^~2, 3~^~03/01/2014~ -~36043~^~212~^1.25^3^0.10^~1~^~A~^^^1^1.10^1.46^2^0.79^1.71^~2, 3~^~03/01/2014~ -~36043~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~255~^63.72^3^0.89^~1~^~A~^^^1^62.07^65.14^2^59.87^67.56^~2, 3~^~03/01/2014~ -~36043~^~269~^2.77^3^0.22^~1~^~A~^^^1^2.45^3.21^2^1.79^3.74^~2, 3~^~03/01/2014~ -~36043~^~287~^0.18^3^0.02^~1~^~A~^^^1^0.14^0.23^2^0.06^0.29^~2, 3~^~03/01/2014~ -~36043~^~303~^0.74^3^0.02^~1~^~A~^^^1^0.69^0.77^2^0.64^0.84^~2, 3~^~03/01/2014~ -~36043~^~309~^1.35^3^0.01^~1~^~A~^^^1^1.34^1.38^2^1.29^1.41^~2, 3~^~03/01/2014~ -~36043~^~323~^0.97^3^0.04^~1~^~A~^^^1^0.88^1.03^2^0.77^1.15^~2, 3~^~03/01/2014~ -~36043~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~342~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.10^2^0.01^0.13^~2, 3~^~03/01/2014~ -~36043~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~345~^0.06^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.08^0.19^~1, 2, 3~^~03/01/2014~ -~36043~^~346~^0.08^3^0.08^~1~^~A~^^^1^0.00^0.24^2^-0.26^0.42^~1, 2, 3~^~03/01/2014~ -~36043~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~418~^0.77^3^0.06^~1~^~A~^^^1^0.70^0.90^2^0.48^1.05^~2, 3~^~03/01/2014~ -~36044~^~203~^3.56^4^0.04^~1~^~A~^^^1^3.50^3.69^3^3.42^3.70^~2, 3~^~03/01/2014~ -~36044~^~204~^4.86^4^0.26^~1~^~A~^^^1^4.28^5.54^3^4.02^5.70^~2, 3~^~03/01/2014~ -~36044~^~205~^34.15^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~207~^2.23^4^0.09^~1~^~A~^^^1^2.00^2.44^3^1.92^2.53^~2, 3~^~03/01/2014~ -~36044~^~209~^28.90^2^^~1~^~A~^^^1^28.70^29.10^1^^^^~03/01/2014~ -~36044~^~210~^0.68^2^^~1~^~A~^^^1^0.55^0.82^1^^^^~03/01/2014~ -~36044~^~211~^0.37^2^^~1~^~A~^^^1^0.33^0.40^1^^^^~03/01/2014~ -~36044~^~212~^0.33^2^^~1~^~A~^^^1^0.32^0.35^1^^^^~03/01/2014~ -~36044~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36044~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36044~^~255~^55.20^4^0.46^~1~^~A~^^^1^53.87^55.90^3^53.73^56.66^~2, 3~^~03/01/2014~ -~36044~^~269~^1.38^2^^~1~^~A~^^^1^1.20^1.57^1^^^^~03/01/2014~ -~36044~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36044~^~303~^1.18^4^0.04^~1~^~A~^^^1^1.04^1.26^3^1.02^1.34^~2, 3~^~03/01/2014~ -~36044~^~309~^0.38^4^0.01^~1~^~A~^^^1^0.35^0.41^3^0.33^0.41^~2, 3~^~03/01/2014~ -~36044~^~323~^0.59^2^^~1~^~A~^^^1^0.52^0.66^1^^^^~03/01/2014~ -~36044~^~341~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~03/01/2014~ -~36044~^~342~^2.82^2^^~1~^~A~^^^1^2.71^2.94^1^^^^~03/01/2014~ -~36044~^~343~^0.91^2^^~1~^~A~^^^1^0.88^0.93^1^^^^~03/01/2014~ -~36044~^~344~^0.14^2^^~1~^~A~^^^1^0.08^0.20^1^^^^~03/01/2014~ -~36044~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36044~^~346~^0.20^2^^~1~^~A~^^^1^0.18^0.23^1^^^^~03/01/2014~ -~36044~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36044~^~418~^0.09^2^^~1~^~A~^^^1^0.08^0.11^1^^^^~03/01/2014~ -~36045~^~203~^7.30^4^0.12^~1~^~A~^^^1^7.00^7.50^3^6.90^7.68^~2, 3~^~03/01/2014~ -~36045~^~204~^5.00^4^0.43^~1~^~A~^^^1^4.31^6.21^3^3.62^6.37^~2, 3~^~03/01/2014~ -~36045~^~205~^17.52^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~207~^2.01^4^0.01^~1~^~A~^^^1^1.99^2.05^3^1.97^2.05^~2, 3~^~03/01/2014~ -~36045~^~209~^10.00^2^^~1~^~A~^^^1^9.90^10.10^1^^^^~03/01/2014~ -~36045~^~210~^0.84^2^^~1~^~A~^^^1^0.81^0.87^1^^^^~03/01/2014~ -~36045~^~211~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~212~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~255~^68.17^4^0.39^~1~^~A~^^^1^66.99^68.67^3^66.91^69.42^~2, 3~^~03/01/2014~ -~36045~^~269~^0.84^2^^~1~^~A~^^^1^0.81^0.87^1^^^^~03/01/2014~ -~36045~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~303~^1.67^4^0.02^~1~^~A~^^^1^1.63^1.73^3^1.59^1.75^~2, 3~^~03/01/2014~ -~36045~^~309~^0.98^4^0.01^~1~^~A~^^^1^0.94^1.01^3^0.92^1.02^~2, 3~^~03/01/2014~ -~36045~^~323~^0.10^2^^~1~^~A~^^^1^0.10^0.11^1^^^^~03/01/2014~ -~36045~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~342~^1.56^2^^~1~^~A~^^^1^1.30^1.82^1^^^^~03/01/2014~ -~36045~^~343~^0.05^2^^~1~^~A~^^^1^0.04^0.06^1^^^^~03/01/2014~ -~36045~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2014~ -~36045~^~418~^0.10^2^^~1~^~A~^^^1^0.09^0.10^1^^^^~03/01/2014~ -~36046~^~203~^3.90^12^0.20^~1~^~A~^^^1^3.19^5.50^11^3.45^4.34^~2, 3~^~04/01/2014~ -~36046~^~204~^1.89^12^0.09^~1~^~A~^^^1^1.44^2.46^11^1.67^2.09^~2, 3~^~04/01/2014~ -~36046~^~205~^17.77^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~207~^0.89^12^0.04^~1~^~A~^^^1^0.71^1.19^11^0.79^0.97^~2, 3~^~04/01/2014~ -~36046~^~209~^12.08^6^0.56^~1~^~A~^^^1^10.10^13.70^5^10.63^13.52^~2, 3~^~04/01/2014~ -~36046~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~211~^0.91^6^0.02^~1~^~A~^^^1^0.85^1.01^5^0.85^0.97^~2, 3~^~04/01/2014~ -~36046~^~212~^0.91^6^0.01^~1~^~A~^^^1^0.84^0.96^5^0.86^0.95^~2, 3~^~04/01/2014~ -~36046~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~255~^75.56^11^0.55^~1~^~A~^^^1^71.87^78.15^10^74.31^76.79^~2, 3~^~04/01/2014~ -~36046~^~269~^1.82^6^0.03^~1~^~A~^^^1^1.69^1.93^5^1.73^1.90^~2, 3~^~04/01/2014~ -~36046~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~303~^0.90^12^0.03^~1~^~A~^^^1^0.66^1.12^11^0.81^0.98^~2, 3~^~04/01/2014~ -~36046~^~309~^0.35^12^0.01^~1~^~A~^^^1^0.30^0.45^11^0.31^0.37^~2, 3~^~04/01/2014~ -~36046~^~323~^0.81^6^0.07^~1~^~A~^^^1^0.63^1.07^5^0.62^1.01^~2, 3~^~04/01/2014~ -~36046~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~342~^0.33^6^0.11^~1~^~A~^^^1^0.05^0.70^5^0.04^0.60^~2, 3~^~04/01/2014~ -~36046~^~343~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.05^5^-4.0e-03^0.05^~1, 2, 3~^~04/01/2014~ -~36046~^~344~^0.02^6^0.01^~1~^~A~^^^1^0.00^0.04^5^-3.0e-03^0.04^~1, 2, 3~^~04/01/2014~ -~36046~^~345~^0.23^6^0.02^~1~^~A~^^^1^0.17^0.32^5^0.16^0.29^~2, 3~^~04/01/2014~ -~36046~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~203~^4.26^6^0.32^~1~^~A~^^^1^3.69^5.50^5^3.41^5.10^~2, 3~^~04/01/2014~ -~36047~^~204~^1.85^6^0.10^~1~^~A~^^^1^1.64^2.17^5^1.59^2.11^~2, 3~^~04/01/2014~ -~36047~^~205~^17.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~207~^0.82^6^0.02^~1~^~A~^^^1^0.71^0.87^5^0.75^0.88^~2, 3~^~04/01/2014~ -~36047~^~209~^11.57^3^0.97^~1~^~A~^^^1^10.10^13.40^2^7.39^15.74^~2, 3~^~04/01/2014~ -~36047~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~211~^0.89^3^0.03^~1~^~A~^^^1^0.85^0.95^2^0.76^1.02^~2, 3~^~04/01/2014~ -~36047~^~212~^0.87^3^0.01^~1~^~A~^^^1^0.84^0.89^2^0.80^0.94^~2, 3~^~04/01/2014~ -~36047~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~255~^75.92^5^0.58^~1~^~A~^^^1^75.02^78.11^4^74.29^77.54^~2, 3~^~04/01/2014~ -~36047~^~269~^1.77^3^0.04^~1~^~A~^^^1^1.69^1.84^2^1.58^1.95^~2, 3~^~04/01/2014~ -~36047~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~303~^0.98^6^0.03^~1~^~A~^^^1^0.88^1.12^5^0.87^1.07^~2, 3~^~04/01/2014~ -~36047~^~309~^0.34^6^0.01^~1~^~A~^^^1^0.30^0.41^5^0.29^0.38^~2, 3~^~04/01/2014~ -~36047~^~323~^0.79^3^0.11^~1~^~A~^^^1^0.63^1.01^2^0.29^1.28^~2, 3~^~04/01/2014~ -~36047~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~342~^0.54^3^0.09^~1~^~A~^^^1^0.36^0.70^2^0.12^0.95^~2, 3~^~04/01/2014~ -~36047~^~343~^0.05^3^3.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.06^~2, 3~^~04/01/2014~ -~36047~^~344~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.03^0.08^~1, 2, 3~^~04/01/2014~ -~36047~^~345~^0.26^3^0.04^~1~^~A~^^^1^0.17^0.32^2^0.05^0.47^~2, 3~^~04/01/2014~ -~36047~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~203~^3.42^3^0.17^~1~^~A~^^^1^3.19^3.75^2^2.68^4.15^~2, 3~^~04/01/2014~ -~36048~^~204~^1.75^3^0.09^~1~^~A~^^^1^1.61^1.92^2^1.36^2.14^~2, 3~^~04/01/2014~ -~36048~^~205~^18.63^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~207~^0.96^3^0.09^~1~^~A~^^^1^0.78^1.08^2^0.56^1.35^~2, 3~^~04/01/2014~ -~36048~^~209~^12.60^3^0.60^~1~^~A~^^^1^11.60^13.70^2^9.98^15.21^~2, 3~^~04/01/2014~ -~36048~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~211~^0.93^3^0.03^~1~^~A~^^^1^0.88^1.01^2^0.76^1.10^~2, 3~^~04/01/2014~ -~36048~^~212~^0.94^3^0.01^~1~^~A~^^^1^0.92^0.96^2^0.89^0.98^~2, 3~^~04/01/2014~ -~36048~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~255~^75.25^3^1.82^~1~^~A~^^^1^71.87^78.15^2^67.38^83.11^~2, 3~^~04/01/2014~ -~36048~^~269~^1.87^3^0.02^~1~^~A~^^^1^1.84^1.93^2^1.75^1.99^~2, 3~^~04/01/2014~ -~36048~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~303~^0.74^3^0.05^~1~^~A~^^^1^0.66^0.83^2^0.52^0.96^~2, 3~^~04/01/2014~ -~36048~^~309~^0.33^3^0.01^~1~^~A~^^^1^0.30^0.36^2^0.26^0.40^~2, 3~^~04/01/2014~ -~36048~^~323~^0.84^3^0.12^~1~^~A~^^^1^0.67^1.07^2^0.31^1.36^~2, 3~^~04/01/2014~ -~36048~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~342~^0.11^3^0.06^~1~^~A~^^^1^0.05^0.23^2^-0.15^0.37^~2, 3~^~04/01/2014~ -~36048~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~344~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2014~ -~36048~^~345~^0.20^3^5.0e-03^~1~^~A~^^^1^0.19^0.21^2^0.17^0.21^~2, 3~^~04/01/2014~ -~36048~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36049~^~203~^11.67^4^0.62^~1~^~A~^^^1^9.94^12.69^3^9.69^13.64^~2, 3~^~05/01/2014~ -~36049~^~204~^17.74^4^0.33^~1~^~A~^^^1^16.89^18.49^3^16.67^18.79^~2, 3~^~05/01/2014~ -~36049~^~205~^16.20^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~207~^2.57^4^0.08^~1~^~A~^^^1^2.37^2.71^3^2.30^2.83^~2, 3~^~05/01/2014~ -~36049~^~209~^12.50^2^^~1~^~A~^^^1^9.60^15.40^1^^^^~05/01/2014~ -~36049~^~210~^0.25^2^^~1~^~A~^^^1^0.18^0.32^1^^^~1~^~05/01/2014~ -~36049~^~211~^0.97^2^^~1~^~A~^^^1^0.92^1.02^1^^^^~05/01/2014~ -~36049~^~212~^0.83^2^^~1~^~A~^^^1^0.75^0.91^1^^^^~05/01/2014~ -~36049~^~213~^0.66^2^^~1~^~A~^^^1^0.18^1.13^1^^^~1~^~05/01/2014~ -~36049~^~214~^0.18^2^^~1~^~A~^^^1^0.18^0.18^^^^~1~^~05/01/2014~ -~36049~^~255~^51.82^4^0.60^~1~^~A~^^^1^50.39^53.18^3^49.88^53.76^~2, 3~^~05/01/2014~ -~36049~^~269~^2.89^2^^~1~^~A~^^^1^2.36^3.43^1^^^^~05/01/2014~ -~36049~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36049~^~303~^0.71^4^0.06^~1~^~A~^^^1^0.56^0.83^3^0.51^0.90^~2, 3~^~05/01/2014~ -~36049~^~309~^1.88^4^0.07^~1~^~A~^^^1^1.68^1.98^3^1.65^2.10^~2, 3~^~05/01/2014~ -~36049~^~323~^0.89^2^^~1~^~A~^^^1^0.84^0.94^1^^^^~05/01/2014~ -~36049~^~341~^0.02^2^^~1~^~A~^^^1^0.00^0.04^1^^^~1~^~05/01/2014~ -~36049~^~342~^1.71^2^^~1~^~A~^^^1^1.68^1.74^1^^^^~05/01/2014~ -~36049~^~343~^0.35^2^^~1~^~A~^^^1^0.31^0.40^1^^^^~05/01/2014~ -~36049~^~344~^0.14^2^^~1~^~A~^^^1^0.13^0.15^1^^^^~05/01/2014~ -~36049~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36049~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36049~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36049~^~418~^0.72^2^^~1~^~A~^^^1^0.63^0.81^1^^^^~05/01/2014~ -~36050~^~203~^11.24^12^0.35^~1~^~A~^^^1^9.19^13.56^11^10.45^12.03^~2, 3~^~05/01/2014~ -~36050~^~204~^18.47^12^0.44^~1~^~A~^^^1^16.20^21.91^11^17.48^19.45^~2, 3~^~05/01/2014~ -~36050~^~205~^15.45^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~207~^2.45^12^0.08^~1~^~A~^^^1^1.94^2.88^11^2.26^2.62^~2, 3~^~05/01/2014~ -~36050~^~209~^10.90^6^0.99^~1~^~A~^^^1^9.10^15.40^5^8.34^13.45^~2, 3~^~05/01/2014~ -~36050~^~210~^0.21^6^0.02^~1~^~A~^^^1^0.18^0.32^5^0.14^0.26^~1, 2, 3~^~05/01/2014~ -~36050~^~211~^0.71^6^0.08^~1~^~A~^^^1^0.53^1.02^5^0.48^0.92^~2, 3~^~05/01/2014~ -~36050~^~212~^0.55^6^0.09^~1~^~A~^^^1^0.34^0.91^5^0.31^0.78^~2, 3~^~05/01/2014~ -~36050~^~213~^0.72^6^0.24^~1~^~A~^^^1^0.18^1.34^5^0.10^1.33^~1, 2, 3~^~05/01/2014~ -~36050~^~214~^0.41^6^0.17^~1~^~A~^^^1^0.18^1.29^5^-0.04^0.86^~1, 2, 3~^~05/01/2014~ -~36050~^~255~^52.38^12^0.82^~1~^~A~^^^1^47.76^56.16^11^50.56^54.20^~2, 3~^~05/01/2014~ -~36050~^~269~^2.60^6^0.24^~1~^~A~^^^1^1.63^3.43^5^1.96^3.22^~2, 3~^~05/01/2014~ -~36050~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~303~^0.66^12^0.02^~1~^~A~^^^1^0.55^0.83^11^0.59^0.72^~2, 3~^~05/01/2014~ -~36050~^~309~^1.83^12^0.06^~1~^~A~^^^1^1.44^2.25^11^1.69^1.96^~2, 3~^~05/01/2014~ -~36050~^~323~^1.28^4^0.30^~1~^~A~^^^1^0.84^2.17^3^0.30^2.25^~2, 3~^~05/01/2014~ -~36050~^~341~^0.05^4^0.01^~1~^~A~^^^1^0.00^0.09^3^-0.01^0.10^~1, 2, 3~^~05/01/2014~ -~36050~^~342~^2.50^4^0.45^~1~^~A~^^^1^1.68^3.37^3^1.04^3.94^~2, 3~^~05/01/2014~ -~36050~^~343~^0.52^4^0.11^~1~^~A~^^^1^0.31^0.84^3^0.15^0.89^~2, 3~^~05/01/2014~ -~36050~^~344~^0.13^4^0.02^~1~^~A~^^^1^0.08^0.18^3^0.06^0.20^~2, 3~^~05/01/2014~ -~36050~^~345~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.05^3^-0.02^0.04^~1, 2, 3~^~05/01/2014~ -~36050~^~346~^0.04^4^0.02^~1~^~A~^^^1^0.00^0.08^3^-0.03^0.10^~1, 2, 3~^~05/01/2014~ -~36050~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~418~^0.86^6^0.06^~1~^~A~^^^1^0.63^1.10^5^0.70^1.02^~2, 3~^~05/01/2014~ -~36051~^~203~^16.87^4^0.48^~1~^~A~^^^1^15.44^17.56^3^15.32^18.42^~2, 3~^~05/01/2014~ -~36051~^~204~^25.50^4^0.65^~1~^~A~^^^1^24.26^26.93^3^23.40^27.59^~2, 3~^~05/01/2014~ -~36051~^~205~^24.25^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~207~^3.06^4^0.01^~1~^~A~^^^1^3.04^3.09^3^3.03^3.09^~2, 3~^~05/01/2014~ -~36051~^~209~^17.15^2^^~1~^~A~^^^1^15.60^18.70^1^^^^~05/01/2014~ -~36051~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36051~^~211~^0.66^2^^~1~^~A~^^^1^0.63^0.70^1^^^^~05/01/2014~ -~36051~^~212~^0.18^2^^~1~^~A~^^^1^0.18^0.18^^^^~1~^~05/01/2014~ -~36051~^~213~^0.18^2^^~1~^~A~^^^1^0.18^0.18^^^^~1~^~05/01/2014~ -~36051~^~214~^0.93^2^^~1~^~A~^^^1^0.90^0.96^1^^^^~05/01/2014~ -~36051~^~255~^30.31^4^0.27^~1~^~A~^^^1^29.56^30.76^3^29.45^31.17^~2, 3~^~05/01/2014~ -~36051~^~269~^2.04^2^^~1~^~A~^^^1^2.03^2.04^1^^^^~05/01/2014~ -~36051~^~287~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~05/01/2014~ -~36051~^~303~^1.52^4^0.06^~1~^~A~^^^1^1.34^1.62^3^1.32^1.71^~2, 3~^~05/01/2014~ -~36051~^~309~^2.32^4^0.08^~1~^~A~^^^1^2.11^2.49^3^2.04^2.59^~2, 3~^~05/01/2014~ -~36051~^~323~^0.68^2^^~1~^~A~^^^1^0.66^0.71^1^^^^~05/01/2014~ -~36051~^~341~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~05/01/2014~ -~36051~^~342~^1.42^2^^~1~^~A~^^^1^0.97^1.86^1^^^^~05/01/2014~ -~36051~^~343~^0.35^2^^~1~^~A~^^^1^0.23^0.48^1^^^^~05/01/2014~ -~36051~^~344~^0.06^2^^~1~^~A~^^^1^0.05^0.08^1^^^^~05/01/2014~ -~36051~^~345~^0.06^2^^~1~^~A~^^^1^0.05^0.07^1^^^^~05/01/2014~ -~36051~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36051~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36051~^~418~^0.82^2^^~1~^~A~^^^1^0.70^0.94^1^^^^~05/01/2014~ -~36052~^~203~^15.93^12^0.39^~1~^~A~^^^1^13.31^17.56^11^15.07^16.79^~2, 3~^~05/01/2014~ -~36052~^~204~^23.08^12^0.67^~1~^~A~^^^1^19.66^26.93^11^21.59^24.57^~2, 3~^~05/01/2014~ -~36052~^~205~^24.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~207~^3.12^12^0.05^~1~^~A~^^^1^2.86^3.47^11^3.00^3.24^~2, 3~^~05/01/2014~ -~36052~^~209~^18.62^6^1.67^~1~^~A~^^^1^14.10^25.40^5^14.31^22.92^~2, 3~^~05/01/2014~ -~36052~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~211~^0.47^6^0.09^~1~^~A~^^^1^0.18^0.70^5^0.22^0.70^~1, 2, 3~^~05/01/2014~ -~36052~^~212~^0.23^6^0.03^~1~^~A~^^^1^0.18^0.36^5^0.15^0.30^~1, 2, 3~^~05/01/2014~ -~36052~^~213~^0.34^6^0.15^~1~^~A~^^^1^0.18^1.12^5^-0.06^0.74^~1, 2, 3~^~05/01/2014~ -~36052~^~214~^1.05^6^0.14^~1~^~A~^^^1^0.78^1.75^5^0.68^1.42^~2, 3~^~05/01/2014~ -~36052~^~255~^33.75^12^1.08^~1~^~A~^^^1^29.56^40.17^11^31.36^36.13^~2, 3~^~05/01/2014~ -~36052~^~269~^2.21^6^0.12^~1~^~A~^^^1^1.92^2.73^5^1.87^2.53^~2, 3~^~05/01/2014~ -~36052~^~287~^0.12^6^0.03^~1~^~A~^^^1^0.07^0.25^5^0.04^0.19^~1, 2, 3~^~05/01/2014~ -~36052~^~303~^1.52^12^0.08^~1~^~A~^^^1^1.00^2.09^11^1.33^1.69^~2, 3~^~05/01/2014~ -~36052~^~309~^2.16^12^0.06^~1~^~A~^^^1^1.71^2.49^11^2.01^2.30^~2, 3~^~05/01/2014~ -~36052~^~323~^0.61^5^0.04^~1~^~A~^^^1^0.50^0.71^4^0.49^0.72^~2, 3~^~05/01/2014~ -~36052~^~341~^0.02^5^0.01^~1~^~A~^^^1^0.00^0.06^4^-0.01^0.06^~1, 2, 3~^~05/01/2014~ -~36052~^~342~^1.26^5^0.24^~1~^~A~^^^1^0.55^1.86^4^0.57^1.94^~2, 3~^~05/01/2014~ -~36052~^~343~^0.38^5^0.09^~1~^~A~^^^1^0.10^0.66^4^0.11^0.65^~2, 3~^~05/01/2014~ -~36052~^~344~^0.05^5^0.01^~1~^~A~^^^1^0.00^0.08^4^0.01^0.09^~1, 2, 3~^~05/01/2014~ -~36052~^~345~^0.06^5^0.01^~1~^~A~^^^1^0.00^0.12^4^6.0e-03^0.11^~1, 2, 3~^~05/01/2014~ -~36052~^~346~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~347~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~418~^0.99^6^0.07^~1~^~A~^^^1^0.70^1.20^5^0.79^1.19^~2, 3~^~05/01/2014~ -~36053~^~203~^7.96^3^0.30^~1~^~A~^^^1^7.37^8.38^2^6.66^9.25^~2, 3~^~05/01/2014~ -~36053~^~204~^6.00^3^0.23^~1~^~A~^^^1^5.68^6.45^2^4.99^6.99^~2, 3~^~05/01/2014~ -~36053~^~205~^17.62^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~207~^1.63^3^0.13^~1~^~A~^^^1^1.36^1.77^2^1.04^2.21^~2, 3~^~05/01/2014~ -~36053~^~209~^11.33^3^0.62^~1~^~A~^^^1^10.10^12.10^2^8.65^14.01^~2, 3~^~05/01/2014~ -~36053~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~211~^1.18^3^0.02^~1~^~A~^^^1^1.14^1.23^2^1.05^1.29^~2, 3~^~05/01/2014~ -~36053~^~212~^1.06^3^0.01^~1~^~A~^^^1^1.03^1.08^2^0.99^1.12^~2, 3~^~05/01/2014~ -~36053~^~213~^1.91^3^0.03^~1~^~A~^^^1^1.84^1.96^2^1.75^2.06^~2, 3~^~05/01/2014~ -~36053~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~255~^66.80^3^0.90^~1~^~A~^^^1^65.66^68.58^2^62.91^70.68^~2, 3~^~05/01/2014~ -~36053~^~269~^4.15^3^0.03^~1~^~A~^^^1^4.08^4.19^2^4.00^4.29^~2, 3~^~05/01/2014~ -~36053~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~303~^0.52^3^0.01^~1~^~A~^^^1^0.49^0.55^2^0.44^0.60^~2, 3~^~05/01/2014~ -~36053~^~309~^0.81^3^0.03^~1~^~A~^^^1^0.75^0.86^2^0.66^0.94^~2, 3~^~05/01/2014~ -~36053~^~323~^0.49^2^^~1~^~A~^^^1^0.40^0.58^1^^^^~05/01/2014~ -~36053~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36053~^~342~^0.11^2^^~1~^~A~^^^1^0.00^0.23^1^^^~1~^~05/01/2014~ -~36053~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36053~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36053~^~345~^0.10^2^^~1~^~A~^^^1^0.00^0.20^1^^^~1~^~05/01/2014~ -~36053~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36053~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36053~^~418~^0.40^3^0.03^~1~^~A~^^^1^0.35^0.47^2^0.25^0.55^~2, 3~^~05/01/2014~ -~36054~^~203~^7.44^6^0.09^~1~^~A~^^^1^7.19^7.69^5^7.20^7.66^~2, 3~^~05/01/2014~ -~36054~^~204~^5.61^6^0.18^~1~^~A~^^^1^5.19^6.33^5^5.12^6.08^~2, 3~^~05/01/2014~ -~36054~^~205~^19.64^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~207~^1.36^6^0.04^~1~^~A~^^^1^1.27^1.57^5^1.24^1.47^~2, 3~^~05/01/2014~ -~36054~^~209~^14.00^3^0.61^~1~^~A~^^^1^13.20^15.20^2^11.37^16.62^~2, 3~^~05/01/2014~ -~36054~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~211~^0.86^3^7.0e-03^~1~^~A~^^^1^0.85^0.87^2^0.83^0.89^~2, 3~^~05/01/2014~ -~36054~^~212~^0.74^3^0.01^~1~^~A~^^^1^0.73^0.77^2^0.68^0.80^~2, 3~^~05/01/2014~ -~36054~^~213~^2.77^3^0.19^~1~^~A~^^^1^2.38^3.02^2^1.92^3.62^~2, 3~^~05/01/2014~ -~36054~^~214~^0.47^3^0.04^~1~^~A~^^^1^0.41^0.56^2^0.28^0.66^~2, 3~^~05/01/2014~ -~36054~^~255~^65.96^6^0.55^~1~^~A~^^^1^64.76^68.39^5^64.52^67.39^~2, 3~^~05/01/2014~ -~36054~^~269~^4.85^3^0.23^~1~^~A~^^^1^4.39^5.18^2^3.83^5.87^~2, 3~^~05/01/2014~ -~36054~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~303~^0.96^6^0.04^~1~^~A~^^^1^0.80^1.10^5^0.84^1.06^~2, 3~^~05/01/2014~ -~36054~^~309~^0.75^6^0.02^~1~^~A~^^^1^0.70^0.84^5^0.69^0.80^~2, 3~^~05/01/2014~ -~36054~^~323~^0.45^2^^~1~^~A~^^^1^0.23^0.66^1^^^^~05/01/2014~ -~36054~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36054~^~342~^0.82^2^^~1~^~A~^^^1^0.38^1.26^1^^^^~05/01/2014~ -~36054~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36054~^~344~^0.03^2^^~1~^~A~^^^1^0.00^0.06^1^^^~1~^~05/01/2014~ -~36054~^~345~^0.15^2^^~1~^~A~^^^1^0.06^0.24^1^^^^~05/01/2014~ -~36054~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36054~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36054~^~418~^0.32^3^0.06^~1~^~A~^^^1^0.24^0.45^2^0.03^0.60^~2, 3~^~05/01/2014~ -~36055~^~203~^7.07^12^0.31^~1~^~A~^^^1^4.63^8.38^11^6.37^7.75^~2, 3~^~05/01/2014~ -~36055~^~204~^5.70^12^0.18^~1~^~A~^^^1^4.56^6.89^11^5.28^6.10^~2, 3~^~05/01/2014~ -~36055~^~205~^18.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~207~^1.45^12^0.04^~1~^~A~^^^1^1.27^1.77^11^1.34^1.55^~2, 3~^~05/01/2014~ -~36055~^~209~^12.67^6^0.71^~1~^~A~^^^1^10.10^15.20^5^10.83^14.49^~2, 3~^~05/01/2014~ -~36055~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~211~^1.02^6^0.07^~1~^~A~^^^1^0.85^1.23^5^0.83^1.20^~2, 3~^~05/01/2014~ -~36055~^~212~^0.90^6^0.07^~1~^~A~^^^1^0.73^1.08^5^0.71^1.08^~2, 3~^~05/01/2014~ -~36055~^~213~^2.34^6^0.21^~1~^~A~^^^1^1.84^3.02^5^1.79^2.88^~2, 3~^~05/01/2014~ -~36055~^~214~^0.24^6^0.10^~1~^~A~^^^1^0.00^0.56^5^-0.04^0.51^~1, 2, 3~^~05/01/2014~ -~36055~^~255~^67.29^12^0.65^~1~^~A~^^^1^64.76^70.80^11^65.85^68.72^~2, 3~^~05/01/2014~ -~36055~^~269~^4.50^6^0.19^~1~^~A~^^^1^4.08^5.18^5^4.00^4.98^~2, 3~^~05/01/2014~ -~36055~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~303~^0.82^12^0.06^~1~^~A~^^^1^0.49^1.10^11^0.67^0.96^~2, 3~^~05/01/2014~ -~36055~^~309~^0.74^12^0.02^~1~^~A~^^^1^0.63^0.86^11^0.69^0.78^~2, 3~^~05/01/2014~ -~36055~^~323~^0.47^4^0.09^~1~^~A~^^^1^0.23^0.66^3^0.16^0.76^~2, 3~^~05/01/2014~ -~36055~^~341~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~342~^0.47^4^0.27^~1~^~A~^^^1^0.00^1.26^3^-0.41^1.34^~1, 2, 3~^~05/01/2014~ -~36055~^~343~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~344~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.06^3^-0.03^0.06^~1, 2, 3~^~05/01/2014~ -~36055~^~345~^0.13^4^0.05^~1~^~A~^^^1^0.00^0.24^3^-0.05^0.30^~1, 2, 3~^~05/01/2014~ -~36055~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~418~^0.36^6^0.03^~1~^~A~^^^1^0.24^0.47^5^0.26^0.46^~2, 3~^~05/01/2014~ -~36056~^~203~^8.99^9^0.59^~1~^~A~^^^1^7.37^12.31^8^7.60^10.36^~2, 3~^~05/01/2014~ -~36056~^~204~^11.99^9^1.06^~1~^~A~^^^1^7.83^17.10^8^9.53^14.44^~2, 3~^~05/01/2014~ -~36056~^~205~^17.97^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~207~^1.96^9^0.16^~1~^~A~^^^1^1.33^2.89^8^1.56^2.34^~2, 3~^~05/01/2014~ -~36056~^~209~^13.86^5^0.98^~1~^~A~^^^1^10.50^16.70^4^11.12^16.60^~2, 3~^~05/01/2014~ -~36056~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~211~^0.46^5^0.12^~1~^~A~^^^1^0.00^0.71^4^0.11^0.81^~1, 2, 3~^~05/01/2014~ -~36056~^~212~^0.35^5^0.06^~1~^~A~^^^1^0.18^0.53^4^0.18^0.52^~1, 2, 3~^~05/01/2014~ -~36056~^~213~^0.41^5^0.22^~1~^~A~^^^1^0.18^1.33^4^-0.22^1.05^~1, 2, 3~^~05/01/2014~ -~36056~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~255~^59.10^9^1.93^~1~^~A~^^^1^50.27^66.79^8^54.64^63.56^~2, 3~^~05/01/2014~ -~36056~^~269~^1.23^5^0.11^~1~^~A~^^^1^0.97^1.51^4^0.92^1.54^~2, 3~^~05/01/2014~ -~36056~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~303~^0.87^9^0.08^~1~^~A~^^^1^0.58^1.35^8^0.68^1.05^~2, 3~^~05/01/2014~ -~36056~^~309~^1.31^9^0.37^~1~^~A~^^^1^0.71^4.28^8^0.44^2.17^~2, 3~^~05/01/2014~ -~36056~^~323~^1.74^4^0.44^~1~^~A~^^^1^0.91^2.51^3^0.33^3.14^~2, 3~^~05/01/2014~ -~36056~^~341~^0.07^4^0.03^~1~^~A~^^^1^0.00^0.18^3^-0.04^0.19^~1, 2, 3~^~05/01/2014~ -~36056~^~342~^3.17^4^0.63^~1~^~A~^^^1^2.19^4.90^3^1.16^5.17^~2, 3~^~05/01/2014~ -~36056~^~343~^0.55^4^0.19^~1~^~A~^^^1^0.09^1.04^3^-0.08^1.18^~2, 3~^~05/01/2014~ -~36056~^~344~^0.14^4^0.02^~1~^~A~^^^1^0.11^0.22^3^0.05^0.22^~2, 3~^~05/01/2014~ -~36056~^~345~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.06^3^-0.03^0.06^~1, 2, 3~^~05/01/2014~ -~36056~^~346~^0.09^4^0.05^~1~^~A~^^^1^0.00^0.25^3^-0.10^0.27^~1, 2, 3~^~05/01/2014~ -~36056~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~418~^0.29^5^0.10^~1~^~A~^^^1^0.08^0.67^4^5.0e-03^0.57^~2, 3~^~05/01/2014~ -~36057~^~203~^19.00^3^0.78^~1~^~A~^^^1^17.56^20.25^2^15.63^22.36^~2, 3~^~05/01/2014~ -~36057~^~204~^10.95^3^0.52^~1~^~A~^^^1^9.90^11.55^2^8.68^13.20^~2, 3~^~05/01/2014~ -~36057~^~205~^7.80^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~207~^2.37^3^0.19^~1~^~A~^^^1^2.01^2.65^2^1.55^3.19^~2, 3~^~05/01/2014~ -~36057~^~209~^4.57^3^0.06^~1~^~A~^^^1^4.50^4.70^2^4.28^4.85^~2, 3~^~05/01/2014~ -~36057~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~211~^1.11^3^0.07^~1~^~A~^^^1^0.97^1.21^2^0.80^1.42^~2, 3~^~05/01/2014~ -~36057~^~212~^0.92^3^6.0e-03^~1~^~A~^^^1^0.91^0.93^2^0.89^0.94^~2, 3~^~05/01/2014~ -~36057~^~213~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~214~^0.58^3^0.08^~1~^~A~^^^1^0.48^0.75^2^0.20^0.95^~2, 3~^~05/01/2014~ -~36057~^~255~^59.88^3^1.47^~1~^~A~^^^1^58.13^62.81^2^53.53^66.22^~2, 3~^~05/01/2014~ -~36057~^~269~^2.89^3^0.11^~1~^~A~^^^1^2.67^3.08^2^2.38^3.39^~2, 3~^~05/01/2014~ -~36057~^~287~^0.10^3^0.01^~1~^~A~^^^1^0.07^0.12^2^0.04^0.16^~1, 2, 3~^~05/01/2014~ -~36057~^~303~^0.78^3^0.09^~1~^~A~^^^1^0.59^0.88^2^0.37^1.19^~2, 3~^~05/01/2014~ -~36057~^~309~^1.16^3^0.04^~1~^~A~^^^1^1.07^1.23^2^0.95^1.36^~2, 3~^~05/01/2014~ -~36057~^~323~^1.89^2^^~1~^~A~^^^1^1.63^2.15^1^^^^~05/01/2014~ -~36057~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36057~^~342~^1.03^2^^~1~^~A~^^^1^0.00^2.06^1^^^~1~^~05/01/2014~ -~36057~^~343~^0.17^2^^~1~^~A~^^^1^0.00^0.33^1^^^~1~^~05/01/2014~ -~36057~^~344~^0.04^2^^~1~^~A~^^^1^0.00^0.08^1^^^~1~^~05/01/2014~ -~36057~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36057~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36057~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36057~^~418~^0.46^3^0.14^~1~^~A~^^^1^0.29^0.74^2^-0.15^1.06^~2, 3~^~05/01/2014~ -~36058~^~203~^15.33^6^0.38^~1~^~A~^^^1^14.31^17.06^5^14.34^16.32^~2, 3~^~05/01/2014~ -~36058~^~204~^11.23^6^0.26^~1~^~A~^^^1^10.04^11.81^5^10.54^11.91^~2, 3~^~05/01/2014~ -~36058~^~205~^12.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~207~^2.54^6^0.06^~1~^~A~^^^1^2.33^2.78^5^2.36^2.70^~2, 3~^~05/01/2014~ -~36058~^~209~^8.47^3^0.03^~1~^~A~^^^1^8.40^8.50^2^8.32^8.61^~2, 3~^~05/01/2014~ -~36058~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~211~^1.01^3^0.06^~1~^~A~^^^1^0.93^1.13^2^0.74^1.27^~2, 3~^~05/01/2014~ -~36058~^~212~^0.72^3^0.06^~1~^~A~^^^1^0.60^0.79^2^0.46^0.97^~2, 3~^~05/01/2014~ -~36058~^~213~^0.51^3^0.32^~1~^~A~^^^1^0.18^1.17^2^-0.90^1.92^~1, 2, 3~^~05/01/2014~ -~36058~^~214~^0.44^3^0.03^~1~^~A~^^^1^0.37^0.50^2^0.27^0.59^~2, 3~^~05/01/2014~ -~36058~^~255~^58.62^6^0.62^~1~^~A~^^^1^56.69^61.29^5^57.01^60.24^~2, 3~^~05/01/2014~ -~36058~^~269~^2.68^3^0.26^~1~^~A~^^^1^2.38^3.20^2^1.55^3.80^~2, 3~^~05/01/2014~ -~36058~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~303~^0.58^6^0.04^~1~^~A~^^^1^0.47^0.78^5^0.46^0.69^~2, 3~^~05/01/2014~ -~36058~^~309~^0.86^6^0.03^~1~^~A~^^^1^0.77^0.97^5^0.77^0.94^~2, 3~^~05/01/2014~ -~36058~^~323~^1.59^2^^~1~^~A~^^^1^0.72^2.47^1^^^^~05/01/2014~ -~36058~^~341~^0.04^2^^~1~^~A~^^^1^0.00^0.08^1^^^~1~^~05/01/2014~ -~36058~^~342~^2.21^2^^~1~^~A~^^^1^1.03^3.38^1^^^^~05/01/2014~ -~36058~^~343~^0.19^2^^~1~^~A~^^^1^0.17^0.20^1^^^^~05/01/2014~ -~36058~^~344~^0.06^2^^~1~^~A~^^^1^0.00^0.11^1^^^~1~^~05/01/2014~ -~36058~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36058~^~346~^0.07^2^^~1~^~A~^^^1^0.00^0.14^1^^^~1~^~05/01/2014~ -~36058~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36058~^~418~^0.34^3^0.04^~1~^~A~^^^1^0.27^0.42^2^0.14^0.52^~2, 3~^~05/01/2014~ -~36059~^~203~^16.17^12^0.61^~1~^~A~^^^1^12.56^20.25^11^14.80^17.52^~2, 3~^~05/01/2014~ -~36059~^~204~^10.64^12^0.33^~1~^~A~^^^1^7.94^11.81^11^9.89^11.38^~2, 3~^~05/01/2014~ -~36059~^~205~^10.92^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~207~^2.39^12^0.09^~1~^~A~^^^1^1.75^2.78^11^2.18^2.59^~2, 3~^~05/01/2014~ -~36059~^~209~^6.52^6^0.87^~1~^~A~^^^1^4.50^8.50^5^4.27^8.76^~2, 3~^~05/01/2014~ -~36059~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~211~^1.06^6^0.04^~1~^~A~^^^1^0.93^1.21^5^0.93^1.18^~2, 3~^~05/01/2014~ -~36059~^~212~^0.82^6^0.05^~1~^~A~^^^1^0.60^0.93^5^0.68^0.95^~2, 3~^~05/01/2014~ -~36059~^~213~^0.35^6^0.16^~1~^~A~^^^1^0.18^1.17^5^-0.07^0.77^~1, 2, 3~^~05/01/2014~ -~36059~^~214~^0.51^6^0.05^~1~^~A~^^^1^0.37^0.75^5^0.37^0.64^~2, 3~^~05/01/2014~ -~36059~^~255~^59.88^12^0.69^~1~^~A~^^^1^56.69^64.98^11^58.35^61.41^~2, 3~^~05/01/2014~ -~36059~^~269~^2.79^6^0.13^~1~^~A~^^^1^2.38^3.20^5^2.43^3.13^~2, 3~^~05/01/2014~ -~36059~^~287~^0.05^6^0.02^~1~^~A~^^^1^0.00^0.12^5^-0.01^0.11^~1, 2, 3~^~05/01/2014~ -~36059~^~303~^0.68^12^0.04^~1~^~A~^^^1^0.47^0.91^11^0.57^0.77^~2, 3~^~05/01/2014~ -~36059~^~309~^0.95^12^0.04^~1~^~A~^^^1^0.77^1.23^11^0.85^1.05^~2, 3~^~05/01/2014~ -~36059~^~323~^1.74^4^0.38^~1~^~A~^^^1^0.72^2.47^3^0.52^2.96^~2, 3~^~05/01/2014~ -~36059~^~341~^0.02^4^0.02^~1~^~A~^^^1^0.00^0.08^3^-0.04^0.08^~1, 2, 3~^~05/01/2014~ -~36059~^~342~^1.62^4^0.72^~1~^~A~^^^1^0.00^3.38^3^-0.68^3.92^~1, 2, 3~^~05/01/2014~ -~36059~^~343~^0.18^4^0.06^~1~^~A~^^^1^0.00^0.33^3^-0.04^0.39^~1, 2, 3~^~05/01/2014~ -~36059~^~344~^0.05^4^0.02^~1~^~A~^^^1^0.00^0.11^3^-0.04^0.13^~1, 2, 3~^~05/01/2014~ -~36059~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~346~^0.04^4^0.03^~1~^~A~^^^1^0.00^0.14^3^-0.07^0.15^~1, 2, 3~^~05/01/2014~ -~36059~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~418~^0.40^6^0.07^~1~^~A~^^^1^0.27^0.74^5^0.21^0.58^~2, 3~^~05/01/2014~ -~36060~^~203~^13.19^4^0.13^~1~^~A~^^^1^13.00^13.56^3^12.76^13.60^~2, 3~^~05/01/2014~ -~36060~^~204~^11.05^4^0.44^~1~^~A~^^^1^9.87^11.91^3^9.62^12.47^~2, 3~^~05/01/2014~ -~36060~^~205~^19.28^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~207~^2.65^4^0.04^~1~^~A~^^^1^2.54^2.74^3^2.51^2.78^~2, 3~^~05/01/2014~ -~36060~^~209~^12.30^2^^~1~^~A~^^^1^9.70^14.90^1^^^^~05/01/2014~ -~36060~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36060~^~211~^0.65^2^^~1~^~A~^^^1^0.59^0.71^1^^^^~05/01/2014~ -~36060~^~212~^0.55^2^^~1~^~A~^^^1^0.46^0.64^1^^^^~05/01/2014~ -~36060~^~213~^0.18^2^^~1~^~A~^^^1^0.18^0.18^^^^~1~^~05/01/2014~ -~36060~^~214~^0.39^2^^~1~^~A~^^^1^0.34^0.43^1^^^^~05/01/2014~ -~36060~^~255~^53.83^4^1.15^~1~^~A~^^^1^51.49^56.83^3^50.16^57.49^~2, 3~^~05/01/2014~ -~36060~^~269~^1.84^2^^~1~^~A~^^^1^1.74^1.95^1^^^^~05/01/2014~ -~36060~^~287~^0.07^2^^~1~^~A~^^^1^0.07^0.07^^^^~1~^~05/01/2014~ -~36060~^~303~^1.94^4^0.07^~1~^~A~^^^1^1.76^2.10^3^1.69^2.19^~2, 3~^~05/01/2014~ -~36060~^~309~^1.97^4^0.09^~1~^~A~^^^1^1.77^2.21^3^1.66^2.27^~2, 3~^~05/01/2014~ -~36060~^~323~^0.44^2^^~1~^~A~^^^1^0.39^0.50^1^^^^~05/01/2014~ -~36060~^~341~^0.03^2^^~1~^~A~^^^1^0.00^0.06^1^^^~1~^~05/01/2014~ -~36060~^~342~^1.16^2^^~1~^~A~^^^1^0.97^1.36^1^^^^~05/01/2014~ -~36060~^~343~^0.27^2^^~1~^~A~^^^1^0.25^0.30^1^^^^~05/01/2014~ -~36060~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36060~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36060~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36060~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2014~ -~36060~^~418~^1.15^2^^~1~^~A~^^^1^1.10^1.20^1^^^^~05/01/2014~ -~36061~^~203~^12.56^11^0.57^~1~^~A~^^^1^9.13^15.19^10^11.27^13.83^~2, 3~^~05/01/2014~ -~36061~^~204~^10.81^11^0.59^~1~^~A~^^^1^6.53^13.61^10^9.49^12.13^~2, 3~^~05/01/2014~ -~36061~^~205~^17.92^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~207~^2.21^11^0.12^~1~^~A~^^^1^1.44^2.74^10^1.93^2.48^~2, 3~^~05/01/2014~ -~36061~^~209~^12.34^5^1.00^~1~^~A~^^^1^9.70^14.90^4^9.56^15.11^~2, 3~^~05/01/2014~ -~36061~^~210~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~211~^0.79^5^0.06^~1~^~A~^^^1^0.59^0.97^4^0.61^0.97^~2, 3~^~05/01/2014~ -~36061~^~212~^0.66^5^0.06^~1~^~A~^^^1^0.46^0.88^4^0.47^0.85^~2, 3~^~05/01/2014~ -~36061~^~213~^0.39^5^0.20^~1~^~A~^^^1^0.18^1.20^4^-0.17^0.95^~1, 2, 3~^~05/01/2014~ -~36061~^~214~^0.45^5^0.04^~1~^~A~^^^1^0.34^0.63^4^0.31^0.58^~2, 3~^~05/01/2014~ -~36061~^~255~^56.50^11^1.14^~1~^~A~^^^1^51.49^63.90^10^53.95^59.05^~2, 3~^~05/01/2014~ -~36061~^~269~^2.39^5^0.26^~1~^~A~^^^1^1.74^3.25^4^1.65^3.13^~2, 3~^~05/01/2014~ -~36061~^~287~^0.10^5^0.02^~1~^~A~^^^1^0.07^0.20^4^0.02^0.16^~1, 2, 3~^~05/01/2014~ -~36061~^~303~^1.85^11^0.07^~1~^~A~^^^1^1.21^2.10^10^1.67^2.01^~2, 3~^~05/01/2014~ -~36061~^~309~^2.15^11^0.16^~1~^~A~^^^1^1.48^3.17^10^1.78^2.50^~2, 3~^~05/01/2014~ -~36061~^~323~^0.82^4^0.43^~1~^~A~^^^1^0.28^2.13^3^-0.56^2.21^~2, 3~^~05/01/2014~ -~36061~^~341~^0.03^4^0.01^~1~^~A~^^^1^0.00^0.07^3^-0.02^0.09^~1, 2, 3~^~05/01/2014~ -~36061~^~342~^1.23^4^0.31^~1~^~A~^^^1^0.55^2.04^3^0.22^2.23^~2, 3~^~05/01/2014~ -~36061~^~343~^0.30^4^0.09^~1~^~A~^^^1^0.09^0.55^3^-5.0e-03^0.59^~2, 3~^~05/01/2014~ -~36061~^~344~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~346~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~418~^1.22^5^0.05^~1~^~A~^^^1^1.10^1.40^4^1.05^1.38^~2, 3~^~05/01/2014~ -~36401~^~203~^12.02^5^1.99^~1~^~A~^^^1^8.56^17.81^4^6.48^17.56^~2, 3~^~05/01/2009~ -~36401~^~204~^5.06^5^0.57^~1~^~A~^^^1^3.01^6.30^4^3.46^6.65^~2, 3~^~05/01/2009~ -~36401~^~205~^20.03^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36401~^~207~^1.77^5^0.14^~1~^~A~^^^1^1.30^2.10^4^1.36^2.16^~2, 3~^~05/01/2009~ -~36401~^~209~^17.76^5^2.24^~1~^~A~^^^1^12.80^23.90^4^11.52^23.99^~2, 3~^~05/01/2009~ -~36401~^~210~^0.13^5^0.05^~1~^~A~^^^1^0.07^0.34^4^-0.02^0.27^~1, 2, 3~^~05/01/2009~ -~36401~^~211~^0.21^5^0.08^~1~^~A~^^^1^0.07^0.47^4^-0.02^0.45^~1, 2, 3~^~05/01/2009~ -~36401~^~212~^0.21^5^0.08^~1~^~A~^^^1^0.07^0.50^4^-0.03^0.45^~1, 2, 3~^~05/01/2009~ -~36401~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~255~^61.12^5^1.15^~1~^~A~^^^1^57.86^64.55^4^57.91^64.32^~2, 3~^~05/01/2009~ -~36401~^~269~^0.55^5^0.20^~1~^~A~^^^1^0.22^1.04^4^-7.0e-03^1.10^~2, 3~^~05/01/2009~ -~36401~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~303~^0.95^5^0.19^~1~^~A~^^^1^0.63^1.61^4^0.40^1.50^~2, 3~^~05/01/2009~ -~36401~^~309~^0.78^5^0.03^~1~^~A~^^^1^0.71^0.87^4^0.70^0.86^~2, 3~^~05/01/2009~ -~36401~^~323~^0.50^4^0.13^~1~^~A~^^^1^0.28^0.87^3^0.08^0.91^~2, 3~^~05/01/2009~ -~36401~^~341~^0.02^4^5.0e-03^~1~^~A~^^^1^0.01^0.03^3^7.0e-03^0.03^~2, 3~^~05/01/2009~ -~36401~^~342~^1.09^4^0.37^~1~^~A~^^^1^0.28^2.05^3^-0.09^2.27^~2, 3~^~05/01/2009~ -~36401~^~343~^0.35^4^0.09^~1~^~A~^^^1^0.10^0.50^3^0.05^0.65^~2, 3~^~05/01/2009~ -~36401~^~344~^0.01^4^0.01^~1~^~A~^^^1^0.00^0.04^3^-0.01^0.04^~1, 2, 3~^~05/01/2009~ -~36401~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~346~^0.10^4^0.01^~1~^~A~^^^1^0.08^0.13^3^0.06^0.13^~2, 3~^~05/01/2009~ -~36401~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~418~^0.16^5^0.01^~1~^~A~^^^1^0.13^0.20^4^0.12^0.20^~2, 3~^~05/01/2009~ -~36403~^~203~^11.31^3^1.23^~1~^~A~^^^1^9.06^13.31^2^6.00^16.61^~2, 3~^~05/01/2009~ -~36403~^~204~^18.37^3^0.49^~1~^~A~^^^1^17.58^19.29^2^16.23^20.50^~2, 3~^~05/01/2009~ -~36403~^~205~^31.19^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36403~^~207~^1.63^3^0.01^~1~^~A~^^^1^1.61^1.65^2^1.58^1.66^~2, 3~^~05/01/2009~ -~36403~^~209~^26.13^3^1.67^~1~^~A~^^^1^23.90^29.40^2^18.94^33.31^~2, 3~^~05/01/2009~ -~36403~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~211~^0.40^3^0.16^~1~^~A~^^^1^0.07^0.61^2^-0.31^1.10^~1, 2, 3~^~05/01/2009~ -~36403~^~212~^0.38^3^0.17^~1~^~A~^^^1^0.07^0.66^2^-0.35^1.11^~1, 2, 3~^~05/01/2009~ -~36403~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~214~^1.06^3^0.52^~1~^~A~^^^1^0.07^1.88^2^-1.21^3.33^~1, 2, 3~^~05/01/2009~ -~36403~^~255~^37.50^3^4.44^~1~^~A~^^^1^30.08^45.44^2^18.38^56.61^~2, 3~^~05/01/2009~ -~36403~^~269~^1.84^3^0.82^~1~^~A~^^^1^0.22^2.90^2^-1.69^5.37^~2, 3~^~05/01/2009~ -~36403~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~303~^2.70^3^0.62^~1~^~A~^^^1^1.57^3.73^2^0.01^5.38^~2, 3~^~05/01/2009~ -~36403~^~309~^1.86^3^0.11^~1~^~A~^^^1^1.73^2.08^2^1.38^2.33^~2, 3~^~05/01/2009~ -~36403~^~323~^0.73^3^0.24^~1~^~A~^^^1^0.26^1.08^2^-0.32^1.78^~2, 3~^~05/01/2009~ -~36403~^~341~^0.07^3^0.02^~1~^~A~^^^1^0.04^0.12^2^-0.04^0.18^~2, 3~^~05/01/2009~ -~36403~^~342~^2.52^3^0.90^~1~^~A~^^^1^0.88^4.02^2^-1.39^6.43^~2, 3~^~05/01/2009~ -~36403~^~343~^1.00^3^0.58^~1~^~A~^^^1^0.22^2.15^2^-1.53^3.52^~2, 3~^~05/01/2009~ -~36403~^~344~^0.07^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.15^0.29^~1, 2, 3~^~05/01/2009~ -~36403~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~346~^0.07^3^0.06^~1~^~A~^^^1^0.00^0.19^2^-0.19^0.33^~1, 2, 3~^~05/01/2009~ -~36403~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~418~^0.76^3^0.05^~1~^~A~^^^1^0.66^0.84^2^0.53^0.98^~2, 3~^~05/01/2009~ -~36403~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36403~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36404~^~203~^3.20^4^0.53^~1~^~A~^^^1^1.81^4.06^3^1.51^4.89^~2, 3~^~06/01/2009~ -~36404~^~204~^3.69^4^0.76^~1~^~A~^^^1^2.46^5.86^3^1.26^6.12^~2, 3~^~06/01/2009~ -~36404~^~205~^24.92^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~207~^0.79^4^0.03^~1~^~A~^^^1^0.68^0.84^3^0.67^0.91^~2, 3~^~06/01/2009~ -~36404~^~209~^8.63^4^0.51^~1~^~A~^^^1^7.50^9.50^3^6.98^10.26^~2, 3~^~06/01/2009~ -~36404~^~210~^10.47^4^2.81^~1~^~A~^^^1^5.70^17.67^3^1.52^19.41^~2, 3~^~06/01/2009~ -~36404~^~211~^0.44^4^0.36^~1~^~A~^^^1^0.07^1.55^3^-0.73^1.61^~1, 2, 3~^~06/01/2009~ -~36404~^~212~^0.73^4^0.39^~1~^~A~^^^1^0.07^1.65^3^-0.52^1.99^~1, 2, 3~^~06/01/2009~ -~36404~^~213~^3.62^4^0.66^~1~^~A~^^^1^1.83^4.71^3^1.49^5.74^~2, 3~^~06/01/2009~ -~36404~^~214~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~255~^67.39^4^1.20^~1~^~A~^^^1^64.30^69.83^3^63.57^71.21^~2, 3~^~06/01/2009~ -~36404~^~269~^15.26^4^2.05^~1~^~A~^^^1^11.62^21.18^3^8.71^21.81^~2, 3~^~06/01/2009~ -~36404~^~287~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~303~^0.23^4^0.06^~1~^~A~^^^1^0.07^0.38^3^0.02^0.42^~1, 2, 3~^~06/01/2009~ -~36404~^~309~^0.50^4^0.08^~1~^~A~^^^1^0.28^0.65^3^0.23^0.76^~2, 3~^~06/01/2009~ -~36404~^~323~^0.21^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~341~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36404~^~342~^1.34^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~343~^0.47^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36404~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36404~^~346~^0.03^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36404~^~418~^0.08^4^2.0e-03^~1~^~A~^^^1^0.07^0.08^3^0.07^0.08^~1, 2, 3~^~06/01/2009~ -~36405~^~203~^4.64^4^0.16^~1~^~A~^^^1^4.37^5.06^3^4.11^5.16^~2, 3~^~06/01/2009~ -~36405~^~204~^3.85^4^1.12^~1~^~A~^^^1^1.45^6.34^3^0.28^7.42^~2, 3~^~06/01/2009~ -~36405~^~205~^24.40^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~207~^1.63^4^0.22^~1~^~A~^^^1^1.03^2.03^3^0.93^2.33^~2, 3~^~06/01/2009~ -~36405~^~209~^18.57^4^3.52^~1~^~A~^^^1^14.40^29.10^3^7.36^29.78^~2, 3~^~06/01/2009~ -~36405~^~210~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~211~^0.40^2^^~1~^~A~^^^1^0.07^0.72^1^^^~1~^~06/01/2009~ -~36405~^~212~^0.46^2^^~1~^~A~^^^1^0.07^0.85^1^^^~1~^~06/01/2009~ -~36405~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~255~^65.47^4^3.96^~1~^~A~^^^1^54.32^72.23^3^52.84^78.08^~2, 3~^~06/01/2009~ -~36405~^~269~^0.86^2^^~1~^~A~^^^1^0.15^1.57^1^^^^~06/01/2009~ -~36405~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~303~^1.57^4^0.25^~1~^~A~^^^1^1.14^2.30^3^0.76^2.37^~2, 3~^~06/01/2009~ -~36405~^~309~^0.74^4^0.06^~1~^~A~^^^1^0.56^0.88^3^0.52^0.95^~2, 3~^~06/01/2009~ -~36405~^~323~^0.47^2^^~1~^~A~^^^1^0.24^0.70^1^^^^~06/01/2009~ -~36405~^~341~^0.03^2^^~1~^~A~^^^1^0.00^0.05^1^^^~1~^~06/01/2009~ -~36405~^~342~^2.26^2^^~1~^~A~^^^1^0.72^3.80^1^^^^~06/01/2009~ -~36405~^~343~^0.56^2^^~1~^~A~^^^1^0.11^1.02^1^^^^~06/01/2009~ -~36405~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36405~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36406~^~203~^3.96^3^0.28^~1~^~A~^^^1^3.44^4.44^2^2.71^5.20^~2, 3~^~06/01/2009~ -~36406~^~204~^3.46^3^0.54^~1~^~A~^^^1^2.39^4.21^2^1.09^5.82^~2, 3~^~06/01/2009~ -~36406~^~205~^23.74^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~207~^1.57^3^0.09^~1~^~A~^^^1^1.39^1.71^2^1.16^1.97^~2, 3~^~06/01/2009~ -~36406~^~209~^19.63^3^0.37^~1~^~A~^^^1^18.90^20.10^2^18.03^21.23^~2, 3~^~06/01/2009~ -~36406~^~210~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~211~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~214~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~255~^67.27^3^0.90^~1~^~A~^^^1^65.52^68.52^2^63.39^71.15^~2, 3~^~06/01/2009~ -~36406~^~269~^0.15^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36406~^~303~^1.22^3^0.30^~1~^~A~^^^1^0.76^1.80^2^-0.08^2.53^~2, 3~^~06/01/2009~ -~36406~^~309~^0.71^3^0.04^~1~^~A~^^^1^0.63^0.78^2^0.51^0.90^~2, 3~^~06/01/2009~ -~36406~^~323~^0.23^2^^~1~^~A~^^^1^0.15^0.32^1^^^^~06/01/2009~ -~36406~^~341~^0.01^2^^~1~^~A~^^^1^0.00^0.03^1^^^~1~^~06/01/2009~ -~36406~^~342~^1.48^2^^~1~^~A~^^^1^0.85^2.11^1^^^^~06/01/2009~ -~36406~^~343~^0.40^2^^~1~^~A~^^^1^0.15^0.65^1^^^^~06/01/2009~ -~36406~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36406~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36406~^~346~^0.08^2^^~1~^~A~^^^1^0.08^0.08^^^^^~06/01/2009~ -~36406~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2009~ -~36407~^~203~^3.50^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~204~^4.98^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~205~^30.75^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~207~^1.90^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~209~^28.40^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~255~^58.87^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~303~^0.29^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~309~^0.74^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~323~^0.68^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~341~^0.06^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~342~^3.03^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~343~^1.01^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~344~^0.05^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~346~^0.19^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36408~^~203~^5.59^6^0.12^~1~^~A~^^^1^5.12^6.00^5^5.26^5.92^~2, 3~^~05/01/2010~ -~36408~^~204~^9.01^6^0.90^~1~^~A~^^^1^5.08^11.33^5^6.69^11.34^~2, 3~^~05/01/2010~ -~36408~^~205~^31.49^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~207~^1.74^6^0.26^~1~^~A~^^^1^1.29^2.95^5^1.05^2.41^~2, 3~^~05/01/2010~ -~36408~^~209~^23.58^6^0.46^~1~^~A~^^^1^21.60^24.80^5^22.37^24.78^~2, 3~^~05/01/2010~ -~36408~^~210~^0.76^6^0.04^~1~^~A~^^^1^0.63^0.91^5^0.64^0.88^~2, 3~^~05/01/2010~ -~36408~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36408~^~212~^0.22^6^0.02^~1~^~A~^^^1^0.19^0.30^5^0.16^0.26^~1, 2, 3~^~05/01/2010~ -~36408~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36408~^~214~^0.32^6^0.13^~1~^~A~^^^1^0.19^0.99^5^-0.02^0.66^~1, 2, 3~^~05/01/2010~ -~36408~^~255~^52.16^6^0.55^~1~^~A~^^^1^50.80^54.26^5^50.73^53.58^~2, 3~^~05/01/2010~ -~36408~^~269~^1.30^6^0.16^~1~^~A~^^^1^1.00^2.09^5^0.88^1.71^~2, 3~^~05/01/2010~ -~36408~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36408~^~303~^1.46^6^0.07^~1~^~A~^^^1^1.27^1.74^5^1.27^1.65^~2, 3~^~05/01/2010~ -~36408~^~309~^0.94^6^0.02^~1~^~A~^^^1^0.88^1.05^5^0.87^1.00^~2, 3~^~05/01/2010~ -~36408~^~323~^0.36^3^0.05^~1~^~A~^^^1^0.25^0.44^2^0.10^0.61^~2, 3~^~05/01/2010~ -~36408~^~341~^0.04^3^1.0e-03^~1~^~A~^^^1^0.04^0.04^2^0.03^0.04^~2, 3~^~05/01/2010~ -~36408~^~342~^4.13^3^0.67^~1~^~A~^^^1^2.87^5.20^2^1.21^7.05^~2, 3~^~05/01/2010~ -~36408~^~343~^0.66^3^0.22^~1~^~A~^^^1^0.28^1.05^2^-0.28^1.61^~2, 3~^~05/01/2010~ -~36408~^~344~^0.11^3^0.02^~1~^~A~^^^1^0.07^0.15^2^9.0e-03^0.20^~2, 3~^~05/01/2010~ -~36408~^~345~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.02^0.05^~1, 2, 3~^~05/01/2010~ -~36408~^~346~^0.27^3^0.03^~1~^~A~^^^1^0.23^0.33^2^0.13^0.40^~2, 3~^~05/01/2010~ -~36408~^~347~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~05/01/2010~ -~36409~^~203~^11.72^6^0.41^~1~^~A~^^^1^10.50^13.12^5^10.65^12.78^~2, 3~^~05/01/2010~ -~36409~^~204~^13.25^6^0.90^~1~^~A~^^^1^10.28^16.43^5^10.93^15.57^~2, 3~^~05/01/2010~ -~36409~^~205~^22.39^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~207~^2.27^6^0.19^~1~^~A~^^^1^1.70^3.14^5^1.76^2.77^~2, 3~^~05/01/2010~ -~36409~^~209~^18.09^6^0.86^~1~^~A~^^^1^15.00^21.00^5^15.86^20.32^~2, 3~^~05/01/2010~ -~36409~^~210~^0.24^6^0.03^~1~^~A~^^^1^0.19^0.41^5^0.14^0.33^~1, 2, 3~^~05/01/2010~ -~36409~^~211~^0.23^6^0.04^~1~^~A~^^^1^0.19^0.46^5^0.11^0.34^~1, 2, 3~^~05/01/2010~ -~36409~^~212~^0.20^6^0.01^~1~^~A~^^^1^0.19^0.28^5^0.16^0.24^~1, 2, 3~^~05/01/2010~ -~36409~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36409~^~214~^0.35^6^0.16^~1~^~A~^^^1^0.19^1.18^5^-0.07^0.77^~1, 2, 3~^~05/01/2010~ -~36409~^~255~^50.36^6^0.98^~1~^~A~^^^1^46.85^53.37^5^47.83^52.89^~2, 3~^~05/01/2010~ -~36409~^~269~^1.20^6^0.20^~1~^~A~^^^1^0.81^2.03^5^0.67^1.73^~2, 3~^~05/01/2010~ -~36409~^~287~^0.18^6^0.06^~1~^~A~^^^1^0.07^0.44^5^5.0e-03^0.35^~1, 2, 3~^~05/01/2010~ -~36409~^~303~^0.56^6^0.01^~1~^~A~^^^1^0.51^0.64^5^0.51^0.61^~2, 3~^~05/01/2010~ -~36409~^~309~^1.87^6^0.07^~1~^~A~^^^1^1.60^2.06^5^1.69^2.05^~2, 3~^~05/01/2010~ -~36409~^~323~^0.44^3^0.06^~1~^~A~^^^1^0.32^0.54^2^0.16^0.71^~2, 3~^~05/01/2010~ -~36409~^~341~^0.01^3^1.0e-03^~1~^~A~^^^1^0.01^0.02^2^8.0e-03^0.01^~2, 3~^~05/01/2010~ -~36409~^~342~^1.47^3^0.24^~1~^~A~^^^1^0.98^1.72^2^0.42^2.50^~2, 3~^~05/01/2010~ -~36409~^~343~^0.14^3^0.05^~1~^~A~^^^1^0.04^0.23^2^-0.10^0.37^~2, 3~^~05/01/2010~ -~36409~^~344~^0.13^3^0.02^~1~^~A~^^^1^0.07^0.17^2^8.0e-03^0.24^~2, 3~^~05/01/2010~ -~36409~^~345~^0.01^3^2.0e-03^~1~^~A~^^^1^0.01^0.01^2^2.0e-03^0.01^~2, 3~^~05/01/2010~ -~36409~^~346~^0.31^3^0.02^~1~^~A~^^^1^0.25^0.35^2^0.18^0.42^~2, 3~^~05/01/2010~ -~36409~^~347~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.04^~1, 2, 3~^~05/01/2010~ -~36409~^~418~^0.45^3^0.10^~1~^~A~^^^1^0.25^0.58^2^0.01^0.87^~2, 3~^~05/01/2010~ -~36409~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36409~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36410~^~203~^11.51^6^0.94^~1~^~A~^^^1^8.44^15.00^5^9.09^13.92^~2, 3~^~05/01/2010~ -~36410~^~204~^10.43^6^1.26^~1~^~A~^^^1^6.66^14.39^5^7.17^13.69^~2, 3~^~05/01/2010~ -~36410~^~205~^23.02^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~207~^1.91^6^0.20^~1~^~A~^^^1^1.39^2.67^5^1.39^2.42^~2, 3~^~05/01/2010~ -~36410~^~209~^18.98^6^0.66^~1~^~A~^^^1^17.00^21.30^5^17.27^20.69^~2, 3~^~05/01/2010~ -~36410~^~210~^0.38^6^0.04^~1~^~A~^^^1^0.19^0.50^5^0.25^0.51^~1, 2, 3~^~05/01/2010~ -~36410~^~211~^0.34^6^0.05^~1~^~A~^^^1^0.19^0.48^5^0.20^0.48^~1, 2, 3~^~05/01/2010~ -~36410~^~212~^0.33^6^0.02^~1~^~A~^^^1^0.26^0.42^5^0.26^0.40^~2, 3~^~05/01/2010~ -~36410~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36410~^~214~^0.39^6^0.14^~1~^~A~^^^1^0.19^1.04^5^0.02^0.75^~1, 2, 3~^~05/01/2010~ -~36410~^~255~^53.12^6^2.35^~1~^~A~^^^1^45.02^59.16^5^47.07^59.17^~2, 3~^~05/01/2010~ -~36410~^~269~^1.45^6^0.13^~1~^~A~^^^1^1.14^2.00^5^1.11^1.78^~2, 3~^~05/01/2010~ -~36410~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36410~^~303~^1.01^6^0.07^~1~^~A~^^^1^0.83^1.31^5^0.81^1.19^~2, 3~^~05/01/2010~ -~36410~^~309~^1.62^6^0.10^~1~^~A~^^^1^1.22^1.91^5^1.35^1.88^~2, 3~^~05/01/2010~ -~36410~^~323~^0.35^3^0.08^~1~^~A~^^^1^0.19^0.48^2^-0.01^0.70^~2, 3~^~05/01/2010~ -~36410~^~341~^0.02^3^1.0e-03^~1~^~A~^^^1^0.01^0.02^2^0.01^0.02^~2, 3~^~05/01/2010~ -~36410~^~342~^1.28^3^0.19^~1~^~A~^^^1^1.03^1.66^2^0.45^2.10^~2, 3~^~05/01/2010~ -~36410~^~343~^0.08^3^0.03^~1~^~A~^^^1^0.03^0.15^2^-0.07^0.23^~2, 3~^~05/01/2010~ -~36410~^~344~^0.08^3^0.01^~1~^~A~^^^1^0.07^0.11^2^0.03^0.13^~2, 3~^~05/01/2010~ -~36410~^~345~^0.01^3^4.0e-03^~1~^~A~^^^1^0.00^0.02^2^-7.0e-03^0.02^~1, 2, 3~^~05/01/2010~ -~36410~^~346~^0.26^3^0.02^~1~^~A~^^^1^0.22^0.32^2^0.13^0.38^~2, 3~^~05/01/2010~ -~36410~^~347~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.04^~1, 2, 3~^~05/01/2010~ -~36410~^~418~^0.28^3^0.05^~1~^~A~^^^1^0.19^0.37^2^0.05^0.50^~2, 3~^~05/01/2010~ -~36410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36410~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36411~^~203~^3.48^6^0.23^~1~^~A~^^^1^2.56^4.25^5^2.86^4.08^~2, 3~^~05/01/2010~ -~36411~^~204~^7.21^6^0.69^~1~^~A~^^^1^5.68^9.81^5^5.42^8.98^~2, 3~^~05/01/2010~ -~36411~^~205~^26.68^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~207~^1.31^6^0.10^~1~^~A~^^^1^0.97^1.55^5^1.03^1.58^~2, 3~^~05/01/2010~ -~36411~^~209~^13.83^6^2.04^~1~^~A~^^^1^6.10^19.50^5^8.57^19.09^~2, 3~^~05/01/2010~ -~36411~^~210~^6.23^6^1.47^~1~^~A~^^^1^3.12^13.29^5^2.44^10.02^~2, 3~^~05/01/2010~ -~36411~^~211~^0.61^6^0.14^~1~^~A~^^^1^0.28^1.21^5^0.23^0.99^~2, 3~^~05/01/2010~ -~36411~^~212~^0.57^6^0.09^~1~^~A~^^^1^0.31^0.90^5^0.34^0.80^~2, 3~^~05/01/2010~ -~36411~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~255~^61.32^6^1.78^~1~^~A~^^^1^54.60^66.47^5^56.74^65.89^~2, 3~^~05/01/2010~ -~36411~^~269~^7.42^6^1.53^~1~^~A~^^^1^3.87^14.45^5^3.47^11.35^~2, 3~^~05/01/2010~ -~36411~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~303~^0.53^6^0.06^~1~^~A~^^^1^0.30^0.79^5^0.35^0.71^~2, 3~^~05/01/2010~ -~36411~^~309~^0.62^6^0.04^~1~^~A~^^^1^0.47^0.74^5^0.51^0.72^~2, 3~^~05/01/2010~ -~36411~^~323~^0.45^3^0.05^~1~^~A~^^^1^0.40^0.55^2^0.24^0.66^~2, 3~^~05/01/2010~ -~36411~^~341~^0.04^3^0.01^~1~^~A~^^^1^0.01^0.06^2^-0.03^0.10^~2, 3~^~05/01/2010~ -~36411~^~342~^2.63^3^0.62^~1~^~A~^^^1^1.45^3.57^2^-0.05^5.31^~2, 3~^~05/01/2010~ -~36411~^~343~^0.55^3^0.28^~1~^~A~^^^1^0.04^1.01^2^-0.66^1.76^~2, 3~^~05/01/2010~ -~36411~^~344~^0.31^3^0.06^~1~^~A~^^^1^0.20^0.41^2^0.05^0.56^~2, 3~^~05/01/2010~ -~36411~^~345~^0.03^3^0.01^~1~^~A~^^^1^0.01^0.05^2^-0.03^0.08^~2, 3~^~05/01/2010~ -~36411~^~346~^0.50^3^0.04^~1~^~A~^^^1^0.40^0.56^2^0.29^0.70^~2, 3~^~05/01/2010~ -~36411~^~347~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.02^0.07^~1, 2, 3~^~05/01/2010~ -~36411~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~01/01/2013~ -~36411~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~36411~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~36412~^~203~^7.35^6^0.59^~1~^~A~^^^1^5.56^9.62^5^5.81^8.89^~2, 3~^~05/01/2010~ -~36412~^~204~^9.04^6^0.81^~1~^~A~^^^1^5.19^10.94^5^6.93^11.14^~2, 3~^~05/01/2010~ -~36412~^~205~^15.75^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~207~^1.82^6^0.13^~1~^~A~^^^1^1.43^2.21^5^1.49^2.16^~2, 3~^~05/01/2010~ -~36412~^~209~^12.53^6^1.47^~1~^~A~^^^1^7.30^16.80^5^8.73^16.33^~2, 3~^~05/01/2010~ -~36412~^~210~^0.24^6^0.03^~1~^~A~^^^1^0.19^0.39^5^0.14^0.34^~1, 2, 3~^~05/01/2010~ -~36412~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~212~^0.21^6^0.02^~1~^~A~^^^1^0.19^0.35^5^0.14^0.28^~1, 2, 3~^~05/01/2010~ -~36412~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~255~^66.03^6^2.67^~1~^~A~^^^1^59.23^76.53^5^59.16^72.89^~2, 3~^~05/01/2010~ -~36412~^~269~^0.46^6^0.05^~1~^~A~^^^1^0.37^0.68^5^0.31^0.60^~2, 3~^~05/01/2010~ -~36412~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~303~^0.87^6^0.08^~1~^~A~^^^1^0.57^1.20^5^0.64^1.09^~2, 3~^~05/01/2010~ -~36412~^~309~^1.20^6^0.08^~1~^~A~^^^1^0.93^1.47^5^0.98^1.40^~2, 3~^~05/01/2010~ -~36412~^~323~^0.53^2^^~1~^~A~^^^1^0.20^0.85^1^^^^~05/01/2010~ -~36412~^~341~^0.03^2^^~1~^~A~^^^1^0.01^0.04^1^^^^~05/01/2010~ -~36412~^~342~^4.13^2^^~1~^~A~^^^1^2.38^5.87^1^^^^~05/01/2010~ -~36412~^~343~^0.37^2^^~1~^~A~^^^1^0.19^0.56^1^^^^~05/01/2010~ -~36412~^~344~^0.06^2^^~1~^~A~^^^1^0.02^0.11^1^^^^~05/01/2010~ -~36412~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~05/01/2010~ -~36412~^~346~^0.13^2^^~1~^~A~^^^1^0.06^0.21^1^^^^~05/01/2010~ -~36412~^~347~^0.07^2^^~1~^~A~^^^1^0.02^0.12^1^^^^~05/01/2010~ -~36412~^~418~^0.11^2^^~1~^~A~^^^1^0.11^0.12^1^^^^~05/01/2010~ -~36412~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36412~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2012~ -~36413~^~203~^5.10^5^0.43^~1~^~A~^^^1^3.94^6.44^4^3.89^6.30^~2, 3~^~05/01/2010~ -~36413~^~204~^2.57^5^0.66^~1~^~A~^^^1^1.46^4.58^4^0.73^4.40^~2, 3~^~05/01/2010~ -~36413~^~205~^14.79^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~207~^1.63^5^0.18^~1~^~A~^^^1^1.13^2.27^4^1.10^2.15^~2, 3~^~05/01/2010~ -~36413~^~209~^7.86^5^0.49^~1~^~A~^^^1^6.90^9.20^4^6.48^9.23^~2, 3~^~05/01/2010~ -~36413~^~210~^0.54^5^0.09^~1~^~A~^^^1^0.19^0.71^4^0.28^0.79^~1, 2, 3~^~05/01/2010~ -~36413~^~211~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~212~^0.35^5^0.09^~1~^~A~^^^1^0.19^0.68^4^0.09^0.60^~1, 2, 3~^~05/01/2010~ -~36413~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~255~^75.91^5^0.92^~1~^~A~^^^1^73.94^78.87^4^73.35^78.46^~2, 3~^~05/01/2010~ -~36413~^~269~^0.89^5^0.04^~1~^~A~^^^1^0.77^1.02^4^0.75^1.02^~2, 3~^~05/01/2010~ -~36413~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~303~^1.76^5^0.07^~1~^~A~^^^1^1.57^1.98^4^1.55^1.96^~2, 3~^~05/01/2010~ -~36413~^~309~^0.67^5^0.04^~1~^~A~^^^1^0.57^0.81^4^0.56^0.78^~2, 3~^~05/01/2010~ -~36413~^~323~^0.07^2^^~1~^~A~^^^1^0.06^0.08^1^^^^~05/01/2010~ -~36413~^~341~^0.01^2^^~1~^~A~^^^1^0.01^0.01^1^^^^~05/01/2010~ -~36413~^~342~^1.78^2^^~1~^~A~^^^1^1.72^1.84^1^^^^~05/01/2010~ -~36413~^~343~^0.14^2^^~1~^~A~^^^1^0.13^0.16^1^^^^~05/01/2010~ -~36413~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^~1~^~05/01/2010~ -~36413~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~36413~^~346~^0.01^2^^~1~^~A~^^^1^0.00^0.01^1^^^^~05/01/2010~ -~36413~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~36413~^~418~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~05/01/2010~ -~36414~^~203~^8.61^6^1.07^~1~^~A~^^^1^5.38^12.69^5^5.85^11.37^~2, 3~^~05/01/2010~ -~36414~^~204~^2.58^6^0.30^~1~^~A~^^^1^1.85^3.54^5^1.78^3.37^~2, 3~^~05/01/2010~ -~36414~^~205~^4.07^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~207~^1.33^6^0.07^~1~^~A~^^^1^1.10^1.55^5^1.13^1.52^~2, 3~^~05/01/2010~ -~36414~^~255~^83.41^6^0.47^~1~^~A~^^^1^82.32^84.85^5^82.19^84.63^~2, 3~^~05/01/2010~ -~36414~^~303~^0.68^6^0.07^~1~^~A~^^^1^0.47^0.94^5^0.49^0.86^~2, 3~^~05/01/2010~ -~36414~^~309~^1.06^6^0.14^~1~^~A~^^^1^0.53^1.41^5^0.68^1.44^~2, 3~^~05/01/2010~ -~36414~^~323~^0.38^3^0.05^~1~^~A~^^^1^0.28^0.47^2^0.14^0.61^~2, 3~^~05/01/2010~ -~36414~^~341~^0.01^3^0.00^~1~^~A~^^^1^0.01^0.01^2^5.0e-03^8.0e-03^~2, 3~^~05/01/2010~ -~36414~^~342~^0.16^3^0.02^~1~^~A~^^^1^0.12^0.19^2^0.06^0.26^~2, 3~^~05/01/2010~ -~36414~^~343~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.05^~1, 2, 3~^~05/01/2010~ -~36414~^~344~^0.04^3^0.01^~1~^~A~^^^1^0.02^0.07^2^-0.02^0.09^~2, 3~^~05/01/2010~ -~36414~^~345~^0.01^3^8.0e-03^~1~^~A~^^^1^0.00^0.03^2^-0.02^0.04^~1, 2, 3~^~05/01/2010~ -~36414~^~346~^0.05^3^0.01^~1~^~A~^^^1^0.02^0.08^2^-0.02^0.12^~2, 3~^~05/01/2010~ -~36414~^~347~^0.01^3^4.0e-03^~1~^~A~^^^1^0.00^0.01^2^-9.0e-03^0.02^~1, 2, 3~^~05/01/2010~ -~36414~^~418~^0.45^3^0.15^~1~^~A~^^^1^0.18^0.71^2^-0.21^1.10^~2, 3~^~05/01/2010~ -~36415~^~203~^5.48^4^1.38^~1~^~A~^^^1^3.13^9.50^3^1.07^9.89^~2, 3~^~05/01/2010~ -~36415~^~204~^5.38^4^1.67^~1~^~A~^^^1^2.58^9.70^3^0.07^10.70^~2, 3~^~05/01/2010~ -~36415~^~205~^37.14^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~207~^1.19^4^0.27^~1~^~A~^^^1^0.60^1.94^3^0.30^2.07^~2, 3~^~05/01/2010~ -~36415~^~210~^0.33^4^0.14^~1~^~A~^^^1^0.19^0.78^3^-0.14^0.80^~1, 2, 3~^~05/01/2010~ -~36415~^~211~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~212~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~214~^0.41^4^0.22^~1~^~A~^^^1^0.19^1.09^3^-0.30^1.13^~1, 2, 3~^~05/01/2010~ -~36415~^~255~^50.80^4^2.26^~1~^~A~^^^1^44.63^55.49^3^43.58^58.00^~2, 3~^~05/01/2010~ -~36415~^~269~^0.87^3^0.50^~1~^~A~^^^1^0.37^1.87^2^-1.28^3.02^~2, 3~^~05/01/2010~ -~36415~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~303~^1.04^4^0.48^~1~^~A~^^^1^0.26^2.31^3^-0.50^2.57^~2, 3~^~05/01/2010~ -~36415~^~309~^0.80^4^0.21^~1~^~A~^^^1^0.32^1.23^3^0.10^1.48^~2, 3~^~05/01/2010~ -~36415~^~323~^0.29^4^0.08^~1~^~A~^^^1^0.10^0.47^3^0.02^0.55^~2, 3~^~05/01/2010~ -~36415~^~341~^0.86^4^0.84^~1~^~A~^^^1^0.01^3.40^3^-1.82^3.55^~2, 3~^~05/01/2010~ -~36415~^~342~^0.63^4^0.30^~1~^~A~^^^1^0.00^1.45^3^-0.34^1.59^~1, 2, 3~^~05/01/2010~ -~36415~^~343~^0.37^4^0.25^~1~^~A~^^^1^0.04^1.13^3^-0.44^1.18^~2, 3~^~05/01/2010~ -~36415~^~344~^0.15^4^0.05^~1~^~A~^^^1^0.08^0.32^3^-0.03^0.32^~2, 3~^~05/01/2010~ -~36415~^~345~^0.08^4^0.07^~1~^~A~^^^1^0.01^0.31^3^-0.15^0.31^~2, 3~^~05/01/2010~ -~36415~^~346~^0.37^4^0.16^~1~^~A~^^^1^0.00^0.78^3^-0.13^0.88^~1, 2, 3~^~05/01/2010~ -~36415~^~347~^0.05^4^8.0e-03^~1~^~A~^^^1^0.04^0.07^3^0.02^0.07^~2, 3~^~05/01/2010~ -~36415~^~418~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36416~^~203~^8.02^3^0.71^~1~^~A~^^^1^6.62^9.00^2^4.93^11.10^~2, 3~^~05/01/2010~ -~36416~^~204~^26.24^3^1.73^~1~^~A~^^^1^22.87^28.67^2^18.75^33.71^~2, 3~^~05/01/2010~ -~36416~^~205~^48.57^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~36416~^~207~^1.87^3^0.55^~1~^~A~^^^1^0.78^2.53^2^-0.49^4.24^~2, 3~^~05/01/2010~ -~36416~^~209~^32.40^3^0.72^~1~^~A~^^^1^31.40^33.80^2^29.29^35.50^~2, 3~^~06/01/2010~ -~36416~^~210~^7.33^3^1.46^~1~^~A~^^^1^4.42^9.15^2^1.00^13.64^~2, 3~^~05/01/2010~ -~36416~^~211~^2.20^3^2.19^~1~^~A~^^^1^0.00^6.59^2^-7.25^11.64^~1, 2, 3~^~05/01/2010~ -~36416~^~212~^2.38^3^2.38^~1~^~A~^^^1^0.00^7.15^2^-7.87^12.63^~1, 2, 3~^~05/01/2010~ -~36416~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36416~^~214~^0.34^3^0.19^~1~^~A~^^^1^0.00^0.67^2^-0.49^1.16^~1, 2, 3~^~05/01/2010~ -~36416~^~255~^15.30^3^5.08^~1~^~A~^^^1^5.31^21.95^2^-6.58^37.18^~2, 3~^~05/01/2010~ -~36416~^~269~^12.24^3^3.29^~1~^~A~^^^1^8.75^18.83^2^-1.93^26.42^~2, 3~^~05/01/2010~ -~36416~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2010~ -~36416~^~303~^1.78^3^0.29^~1~^~A~^^^1^1.44^2.37^2^0.51^3.05^~2, 3~^~05/01/2010~ -~36416~^~309~^0.91^3^0.11^~1~^~A~^^^1^0.71^1.10^2^0.42^1.39^~2, 3~^~05/01/2010~ -~36416~^~323~^0.98^3^0.43^~1~^~A~^^^1^0.10^1.43^2^-0.90^2.85^~2, 3~^~05/01/2010~ -~36416~^~341~^0.11^3^0.06^~1~^~A~^^^1^0.04^0.24^2^-0.16^0.38^~2, 3~^~05/01/2010~ -~36416~^~342~^5.62^3^4.11^~1~^~A~^^^1^0.49^13.76^2^-12.09^23.33^~2, 3~^~05/01/2010~ -~36416~^~343~^2.07^3^1.51^~1~^~A~^^^1^0.42^5.09^2^-4.44^8.57^~2, 3~^~05/01/2010~ -~36416~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.03^0.07^~1, 2, 3~^~05/01/2010~ -~36416~^~345~^0.12^3^0.03^~1~^~A~^^^1^0.05^0.16^2^-0.03^0.27^~2, 3~^~05/01/2010~ -~36416~^~346~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.09^~1, 2, 3~^~05/01/2010~ -~36416~^~347~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.05^~1, 2, 3~^~05/01/2010~ -~36417~^~203~^3.28^12^0.09^~1~^~A~^^^1^2.69^3.69^11^3.08^3.47^~2, 3~^~03/01/2014~ -~36417~^~204~^5.29^12^0.26^~1~^~A~^^^1^3.83^6.84^11^4.69^5.87^~2, 3~^~03/01/2014~ -~36417~^~205~^31.16^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~207~^1.72^12^0.12^~1~^~A~^^^1^1.06^2.44^11^1.45^1.99^~2, 3~^~03/01/2014~ -~36417~^~209~^27.55^6^0.53^~1~^~A~^^^1^25.60^29.10^5^26.18^28.91^~2, 3~^~03/01/2014~ -~36417~^~210~^0.38^6^0.10^~1~^~A~^^^1^0.18^0.82^5^0.10^0.64^~1, 2, 3~^~03/01/2014~ -~36417~^~211~^0.50^6^0.08^~1~^~A~^^^1^0.33^0.80^5^0.29^0.71^~2, 3~^~03/01/2014~ -~36417~^~212~^0.42^6^0.04^~1~^~A~^^^1^0.32^0.64^5^0.29^0.53^~2, 3~^~03/01/2014~ -~36417~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~255~^58.54^12^1.00^~1~^~A~^^^1^53.87^64.71^11^56.34^60.74^~2, 3~^~03/01/2014~ -~36417~^~269~^1.30^6^0.12^~1~^~A~^^^1^0.91^1.68^5^0.97^1.62^~2, 3~^~03/01/2014~ -~36417~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~303~^1.15^12^0.12^~1~^~A~^^^1^0.43^2.16^11^0.86^1.43^~2, 3~^~03/01/2014~ -~36417~^~309~^0.48^12^0.02^~1~^~A~^^^1^0.35^0.63^11^0.42^0.53^~2, 3~^~03/01/2014~ -~36417~^~323~^0.60^6^0.07^~1~^~A~^^^1^0.31^0.86^5^0.41^0.79^~2, 3~^~03/01/2014~ -~36417~^~341~^0.04^6^0.01^~1~^~A~^^^1^0.00^0.07^5^6.0e-03^0.07^~1, 2, 3~^~03/01/2014~ -~36417~^~342~^2.57^6^0.34^~1~^~A~^^^1^1.44^3.74^5^1.68^3.45^~2, 3~^~03/01/2014~ -~36417~^~343~^0.82^6^0.13^~1~^~A~^^^1^0.42^1.31^5^0.47^1.16^~2, 3~^~03/01/2014~ -~36417~^~344~^0.08^6^0.03^~1~^~A~^^^1^0.00^0.20^5^-6.0e-03^0.16^~1, 2, 3~^~03/01/2014~ -~36417~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~346~^0.16^6^0.01^~1~^~A~^^^1^0.09^0.23^5^0.11^0.20^~2, 3~^~03/01/2014~ -~36417~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~418~^0.08^6^7.0e-03^~1~^~A~^^^1^0.06^0.11^5^0.06^0.09^~2, 3~^~03/01/2014~ -~36417~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~203~^6.91^12^0.16^~1~^~A~^^^1^6.00^7.69^11^6.53^7.27^~2, 3~^~03/01/2014~ -~36418~^~204~^6.77^12^1.07^~1~^~A~^^^1^3.14^16.84^11^4.40^9.12^~2, 3~^~03/01/2014~ -~36418~^~205~^16.79^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~207~^1.96^12^0.05^~1~^~A~^^^1^1.75^2.49^11^1.83^2.08^~2, 3~^~03/01/2014~ -~36418~^~209~^9.37^6^0.29^~1~^~A~^^^1^8.10^10.10^5^8.59^10.13^~2, 3~^~03/01/2014~ -~36418~^~210~^0.78^6^0.05^~1~^~A~^^^1^0.57^0.94^5^0.63^0.93^~2, 3~^~03/01/2014~ -~36418~^~211~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~212~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~255~^67.57^12^0.97^~1~^~A~^^^1^60.27^73.51^11^65.42^69.72^~2, 3~^~03/01/2014~ -~36418~^~269~^0.78^6^0.05^~1~^~A~^^^1^0.57^0.94^5^0.63^0.93^~2, 3~^~03/01/2014~ -~36418~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~303~^1.62^12^0.05^~1~^~A~^^^1^1.25^1.90^11^1.50^1.74^~2, 3~^~03/01/2014~ -~36418~^~309~^0.88^12^0.03^~1~^~A~^^^1^0.67^1.01^11^0.80^0.95^~2, 3~^~03/01/2014~ -~36418~^~323~^0.45^6^0.19^~1~^~A~^^^1^0.10^1.29^5^-0.04^0.93^~2, 3~^~03/01/2014~ -~36418~^~341~^0.04^6^0.03^~1~^~A~^^^1^0.00^0.18^5^-0.03^0.12^~1, 2, 3~^~03/01/2014~ -~36418~^~342~^3.68^6^1.38^~1~^~A~^^^1^1.30^9.79^5^0.12^7.22^~2, 3~^~03/01/2014~ -~36418~^~343~^0.81^6^0.44^~1~^~A~^^^1^0.04^2.67^5^-0.33^1.95^~2, 3~^~03/01/2014~ -~36418~^~344~^0.01^6^9.0e-03^~1~^~A~^^^1^0.00^0.05^5^-0.01^0.03^~1, 2, 3~^~03/01/2014~ -~36418~^~345~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~346~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~418~^0.08^6^8.0e-03^~1~^~A~^^^1^0.05^0.10^5^0.05^0.10^~2, 3~^~03/01/2014~ -~36418~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36601~^~203~^8.28^4^1.42^~1~^~A~^^^1^6.31^12.44^3^3.76^12.79^~2, 3~^~10/01/2008~ -~36601~^~204~^11.94^4^0.67^~1~^~A~^^^1^9.97^12.96^3^9.80^14.07^~2, 3~^~10/01/2008~ -~36601~^~205~^27.29^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~207~^1.89^4^0.14^~1~^~A~^^^1^1.58^2.21^3^1.42^2.36^~2, 3~^~10/01/2008~ -~36601~^~209~^19.80^4^1.06^~1~^~A~^^^1^17.10^21.60^3^16.41^23.18^~2, 3~^~10/01/2008~ -~36601~^~210~^0.52^4^0.16^~1~^~A~^^^1^0.22^0.98^3^-0.01^1.05^~2, 3~^~10/01/2008~ -~36601~^~211~^1.40^4^0.33^~1~^~A~^^^1^0.55^2.20^3^0.32^2.47^~2, 3~^~10/01/2008~ -~36601~^~212~^0.73^4^0.12^~1~^~A~^^^1^0.44^0.95^3^0.34^1.12^~2, 3~^~10/01/2008~ -~36601~^~213~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~214~^1.14^4^0.16^~1~^~A~^^^1^0.68^1.38^3^0.62^1.65^~2, 3~^~10/01/2008~ -~36601~^~255~^50.60^4^1.63^~1~^~A~^^^1^47.33^54.78^3^45.40^55.79^~2, 3~^~10/01/2008~ -~36601~^~303~^1.41^4^0.24^~1~^~A~^^^1^0.96^2.10^3^0.63^2.19^~2, 3~^~10/01/2008~ -~36601~^~309~^0.62^4^0.11^~1~^~A~^^^1^0.38^0.81^3^0.27^0.97^~2, 3~^~10/01/2008~ -~36601~^~418~^0.44^4^0.11^~1~^~A~^^^1^0.33^0.77^3^0.08^0.79^~1, 2, 3~^~10/01/2008~ -~36602~^~203~^4.05^16^0.13^~1~^~A~^^^2^3.13^5.19^14^3.76^4.32^~2, 3~^~04/01/2013~ -~36602~^~204~^2.96^16^0.30^~1~^~A~^^^2^1.34^6.44^13^2.29^3.62^~2, 3~^~04/01/2013~ -~36602~^~205~^32.79^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~207~^1.12^16^0.07^~1~^~A~^^^2^0.71^1.49^13^0.96^1.27^~2, 3~^~04/01/2013~ -~36602~^~209~^30.80^4^1.77^~1~^~A~^^^1^27.00^35.30^3^25.16^36.43^~2, 3~^~10/01/2008~ -~36602~^~210~^0.37^7^0.12^~1~^~A~^^^2^0.07^0.96^4^5.0e-03^0.73^~1, 2, 3~^~04/01/2013~ -~36602~^~211~^0.13^7^0.04^~1~^~A~^^^2^0.07^0.34^4^0.01^0.24^~1, 2, 3~^~04/01/2013~ -~36602~^~212~^0.05^7^0.01^~1~^~A~^^^2^0.00^0.20^2^-0.01^0.12^~1, 2, 3~^~04/01/2013~ -~36602~^~213~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~214~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~255~^59.09^16^1.14^~1~^~A~^^^2^52.75^65.21^14^56.63^61.55^~2, 3~^~04/01/2013~ -~36602~^~269~^0.56^7^0.13^~1~^~A~^^^2^0.15^1.03^4^0.17^0.93^~2, 3~^~04/01/2013~ -~36602~^~287~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~303~^0.66^28^0.07^~1~^~A~^^^5^0.18^1.28^4^0.45^0.87^~2~^~04/01/2013~ -~36602~^~309~^0.72^28^0.01^~1~^~A~^^^5^0.60^1.00^4^0.67^0.76^~2~^~04/01/2013~ -~36602~^~323~^0.13^4^0.04^~1~^~A~^^^1^0.07^0.26^3^-5.0e-03^0.27^~2, 3~^~04/01/2013~ -~36602~^~341~^0.03^4^0.01^~1~^~A~^^^1^0.01^0.06^3^-1.0e-03^0.06^~1, 2, 3~^~03/01/2009~ -~36602~^~342~^1.30^4^0.66^~1~^~A~^^^1^0.38^3.22^3^-0.80^3.40^~2, 3~^~04/01/2013~ -~36602~^~343~^0.28^4^0.05^~1~^~A~^^^1^0.20^0.45^3^0.10^0.46^~2, 3~^~04/01/2013~ -~36602~^~344~^0.31^4^0.28^~1~^~A~^^^1^0.01^1.16^3^-0.58^1.21^~1, 2, 3~^~04/01/2013~ -~36602~^~345~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~36602~^~346~^0.16^4^0.07^~1~^~A~^^^1^0.06^0.39^3^-0.08^0.40^~2, 3~^~04/01/2013~ -~36602~^~347~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~03/01/2009~ -~36602~^~418~^0.00^4^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~36602~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~36603~^~203~^7.08^6^0.43^~1~^~A~^^^1^5.87^8.56^5^5.97^8.19^~2, 3~^~07/01/2010~ -~36603~^~204~^5.30^12^0.34^~1~^~A~^^^1^3.62^7.39^11^4.53^6.06^~2, 3~^~07/01/2010~ -~36603~^~205~^7.29^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~207~^1.50^6^0.09^~1~^~A~^^^1^1.10^1.79^5^1.26^1.74^~2, 3~^~07/01/2010~ -~36603~^~209~^1.82^6^0.21^~1~^~A~^^^1^1.30^2.70^5^1.25^2.37^~2, 3~^~07/01/2010~ -~36603~^~210~^1.17^6^0.13^~1~^~A~^^^1^0.84^1.59^5^0.84^1.50^~2, 3~^~07/01/2010~ -~36603~^~211~^0.69^6^0.07^~1~^~A~^^^1^0.38^0.94^5^0.49^0.87^~2, 3~^~07/01/2010~ -~36603~^~212~^0.55^6^0.04^~1~^~A~^^^1^0.43^0.71^5^0.43^0.66^~2, 3~^~07/01/2010~ -~36603~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~255~^78.82^18^0.26^~1~^~A~^^^2^76.80^83.18^5^78.13^79.51^~2, 3~^~07/01/2010~ -~36603~^~269~^2.41^6^0.12^~1~^~A~^^^1^1.85^2.66^5^2.09^2.72^~2, 3~^~07/01/2010~ -~36603~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~303~^1.11^24^0.08^~1~^~A~^^^4^0.73^2.58^16^0.94^1.28^~2, 3~^~07/01/2010~ -~36603~^~309~^1.50^24^0.08^~1~^~A~^^^4^0.84^2.74^6^1.29^1.69^~2, 3~^~07/01/2010~ -~36603~^~323~^0.82^3^0.05^~1~^~A~^^^1^0.72^0.91^2^0.58^1.05^~2, 3~^~07/01/2010~ -~36603~^~341~^0.04^3^9.0e-03^~1~^~A~^^^1^0.02^0.05^2^-3.0e-03^0.07^~2, 3~^~07/01/2010~ -~36603~^~342~^1.79^3^0.32^~1~^~A~^^^1^1.15^2.17^2^0.39^3.18^~2, 3~^~07/01/2010~ -~36603~^~343~^0.65^3^0.17^~1~^~A~^^^1^0.30^0.89^2^-0.11^1.41^~2, 3~^~07/01/2010~ -~36603~^~344~^0.00^3^4.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~07/01/2010~ -~36603~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~346~^0.01^3^1.0e-03^~1~^~A~^^^1^0.00^0.01^2^0.00^0.01^~2, 3~^~07/01/2010~ -~36603~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~418~^0.48^6^0.04^~1~^~A~^^^1^0.34^0.60^5^0.37^0.59^~2, 3~^~07/01/2010~ -~36603~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36603~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36604~^~203~^18.67^6^0.70^~1~^~A~^^^1^17.00^21.88^5^16.85^20.48^~2, 3~^~04/01/2013~ -~36604~^~204~^15.41^6^0.29^~1~^~A~^^^1^14.52^16.68^5^14.64^16.17^~2, 3~^~04/01/2013~ -~36604~^~205~^20.24^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~207~^3.08^6^0.13^~1~^~A~^^^1^2.69^3.58^5^2.73^3.41^~2, 3~^~04/01/2013~ -~36604~^~209~^20.73^3^0.76^~1~^~A~^^^1^19.30^21.90^2^17.45^24.01^~2, 3~^~04/01/2013~ -~36604~^~210~^0.09^3^9.0e-03^~1~^~A~^^^1^0.07^0.10^2^0.05^0.12^~1, 2, 3~^~04/01/2013~ -~36604~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~214~^0.10^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~255~^42.61^6^0.84^~1~^~A~^^^1^40.27^45.00^5^40.44^44.77^~2, 3~^~04/01/2013~ -~36604~^~269~^0.19^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~303~^0.58^6^0.01^~1~^~A~^^^1^0.53^0.63^5^0.53^0.63^~2, 3~^~04/01/2013~ -~36604~^~309~^0.67^6^0.01^~1~^~A~^^^1^0.63^0.73^5^0.63^0.70^~2, 3~^~06/01/2009~ -~36604~^~323~^1.27^3^0.06^~1~^~A~^^^1^1.16^1.40^2^0.97^1.56^~2, 3~^~04/01/2013~ -~36604~^~341~^0.15^3^7.0e-03^~1~^~A~^^^1^0.14^0.16^2^0.12^0.18^~2, 3~^~04/01/2013~ -~36604~^~342~^7.05^3^0.51^~1~^~A~^^^1^6.12^7.89^2^4.83^9.26^~2, 3~^~04/01/2013~ -~36604~^~343~^2.51^3^0.23^~1~^~A~^^^1^2.05^2.85^2^1.47^3.53^~2, 3~^~04/01/2013~ -~36604~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~345~^0.11^3^0.05^~1~^~A~^^^1^0.00^0.17^2^-0.12^0.34^~1, 2, 3~^~04/01/2013~ -~36604~^~346~^0.06^3^8.0e-03^~1~^~A~^^^1^0.05^0.07^2^0.02^0.09^~2, 3~^~04/01/2013~ -~36604~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~418~^0.13^3^0.01^~1~^~A~^^^1^0.11^0.15^2^0.08^0.18^~2, 3~^~04/01/2013~ -~36605~^~203~^12.62^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~204~^16.77^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~205~^21.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~207~^3.13^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~209~^20.00^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~255~^46.08^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~303~^1.53^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~309~^0.80^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~323~^1.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~341~^0.25^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~342~^8.49^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~343~^3.28^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~418~^0.69^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36606~^~203~^22.94^5^0.69^~1~^~A~^^^1^21.13^24.81^4^21.00^24.87^~4~^~06/01/2009~ -~36606~^~204~^17.05^4^0.81^~1~^~A~^^^1^15.12^19.00^3^14.46^19.64^~4~^~06/01/2009~ -~36606~^~205~^5.31^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~207~^2.38^5^0.11^~1~^~A~^^^1^1.99^2.69^4^2.05^2.71^~4~^~06/01/2009~ -~36606~^~255~^52.32^5^1.58^~1~^~A~^^^1^47.15^56.12^4^47.90^56.72^~4~^~06/01/2009~ -~36606~^~303~^0.71^5^0.01^~1~^~A~^^^1^0.68^0.75^4^0.67^0.73^~4~^~06/01/2009~ -~36606~^~309~^0.94^5^0.02^~1~^~A~^^^1^0.88^1.02^4^0.86^1.00^~4~^~06/01/2009~ -~36606~^~418~^3.10^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~203~^3.26^6^0.09^~1~^~A~^^^1^2.95^3.55^5^3.00^3.50^~2, 3~^~04/01/2013~ -~36607~^~204~^13.18^6^0.31^~1~^~A~^^^1^12.00^14.00^5^12.36^13.99^~2, 3~^~04/01/2013~ -~36607~^~205~^30.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~207~^1.37^6^0.03^~1~^~A~^^^1^1.26^1.49^5^1.28^1.45^~2, 3~^~04/01/2013~ -~36607~^~209~^27.60^3^0.52^~1~^~A~^^^1^26.80^28.60^2^25.32^29.87^~2, 3~^~04/01/2013~ -~36607~^~210~^0.28^3^6.0e-03^~1~^~A~^^^1^0.27^0.29^2^0.25^0.30^~2, 3~^~04/01/2013~ -~36607~^~211~^0.33^3^0.07^~1~^~A~^^^1^0.18^0.41^2^0.01^0.63^~1, 2, 3~^~04/01/2013~ -~36607~^~212~^0.25^3^0.03^~1~^~A~^^^1^0.18^0.30^2^0.10^0.40^~1, 2, 3~^~04/01/2013~ -~36607~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~255~^51.32^6^0.57^~1~^~A~^^^1^50.00^53.29^5^49.84^52.78^~2, 3~^~04/01/2013~ -~36607~^~269~^0.86^3^0.10^~1~^~A~^^^1^0.65^0.98^2^0.40^1.32^~2, 3~^~04/01/2013~ -~36607~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~303~^0.69^6^0.02^~1~^~A~^^^1^0.64^0.80^5^0.63^0.75^~2, 3~^~04/01/2013~ -~36607~^~309~^0.42^6^0.01^~1~^~A~^^^1^0.35^0.50^5^0.37^0.46^~2, 3~^~06/01/2009~ -~36607~^~323~^1.34^3^0.06^~1~^~A~^^^1^1.22^1.46^2^1.04^1.64^~2, 3~^~04/01/2013~ -~36607~^~341~^0.12^3^0.02^~1~^~A~^^^1^0.09^0.17^2^0.02^0.22^~2, 3~^~04/01/2013~ -~36607~^~342~^5.84^3^0.33^~1~^~A~^^^1^5.18^6.22^2^4.40^7.28^~2, 3~^~04/01/2013~ -~36607~^~343~^2.25^3^0.31^~1~^~A~^^^1^1.65^2.71^2^0.90^3.59^~2, 3~^~04/01/2013~ -~36607~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.08^~1, 2, 3~^~04/01/2013~ -~36607~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~203~^31.52^6^0.59^~1~^~A~^^^1^29.81^34.19^5^29.98^33.05^~2, 3~^~04/01/2013~ -~36608~^~204~^8.52^6^0.26^~1~^~A~^^^1^7.66^9.57^5^7.85^9.18^~2, 3~^~04/01/2013~ -~36608~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~207~^1.64^6^0.06^~1~^~A~^^^1^1.45^1.85^5^1.48^1.79^~2, 3~^~04/01/2013~ -~36608~^~255~^59.40^6^0.58^~1~^~A~^^^1^56.52^60.21^5^57.90^60.90^~2, 3~^~04/01/2013~ -~36608~^~303~^2.75^6^0.06^~1~^~A~^^^1^2.58^3.03^5^2.57^2.93^~2, 3~^~04/01/2013~ -~36608~^~309~^5.42^6^0.20^~1~^~A~^^^1^4.96^6.04^5^4.88^5.95^~2, 3~^~04/01/2013~ -~36608~^~323~^0.46^3^0.02^~1~^~A~^^^1^0.42^0.49^2^0.37^0.54^~2, 3~^~04/01/2013~ -~36608~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~342~^0.15^3^0.02^~1~^~A~^^^1^0.12^0.20^2^0.03^0.26^~2, 3~^~04/01/2013~ -~36608~^~343~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.06^2^-0.04^0.11^~1, 2, 3~^~04/01/2013~ -~36608~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~418~^3.00^3^0.20^~1~^~A~^^^1^2.80^3.40^2^2.13^3.86^~2, 3~^~04/01/2013~ -~36609~^~203~^6.46^6^0.20^~1~^~A~^^^1^5.75^7.06^5^5.94^6.98^~2, 3~^~04/01/2013~ -~36609~^~204~^11.51^6^0.28^~1~^~A~^^^1^10.35^12.20^5^10.78^12.24^~2, 3~^~04/01/2013~ -~36609~^~205~^15.58^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~207~^1.64^6^0.03^~1~^~A~^^^1^1.52^1.73^5^1.56^1.72^~2, 3~^~04/01/2013~ -~36609~^~209~^11.70^3^1.10^~1~^~A~^^^1^9.50^13.00^2^6.94^16.45^~2, 3~^~04/01/2013~ -~36609~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~213~^2.70^3^0.05^~1~^~A~^^^1^2.60^2.80^2^2.45^2.94^~2, 3~^~04/01/2013~ -~36609~^~214~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~04/01/2013~ -~36609~^~255~^64.80^6^1.49^~1~^~A~^^^1^60.40^70.84^5^60.94^68.64^~2, 3~^~04/01/2013~ -~36609~^~269~^2.83^3^0.08^~1~^~A~^^^1^2.70^3.00^2^2.45^3.21^~2, 3~^~04/01/2013~ -~36609~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~303~^0.55^6^0.05^~1~^~A~^^^1^0.41^0.73^5^0.41^0.68^~2, 3~^~04/01/2013~ -~36609~^~309~^0.83^6^0.03^~1~^~A~^^^1^0.70^0.94^5^0.73^0.92^~2, 3~^~04/01/2013~ -~36609~^~323~^0.75^3^0.03^~1~^~A~^^^1^0.69^0.80^2^0.61^0.87^~2, 3~^~04/01/2013~ -~36609~^~341~^0.09^3^1.0e-03^~1~^~A~^^^1^0.09^0.09^2^0.08^0.09^~2, 3~^~04/01/2013~ -~36609~^~342~^4.33^3^0.10^~1~^~A~^^^1^4.20^4.54^2^3.87^4.78^~2, 3~^~04/01/2013~ -~36609~^~343~^1.43^3^0.04^~1~^~A~^^^1^1.36^1.52^2^1.23^1.62^~2, 3~^~04/01/2013~ -~36609~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~345~^0.16^3^0.07^~1~^~A~^^^1^0.00^0.24^2^-0.17^0.49^~1, 2, 3~^~04/01/2013~ -~36609~^~346~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2013~ -~36609~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~418~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.18^2^0.09^0.21^~2, 3~^~04/01/2013~ -~36610~^~203~^3.41^6^0.13^~1~^~A~^^^1^2.96^3.75^5^3.06^3.75^~2, 3~^~04/01/2013~ -~36610~^~204~^14.13^6^0.49^~1~^~A~^^^1^12.40^15.70^5^12.86^15.39^~2, 3~^~04/01/2013~ -~36610~^~205~^35.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~207~^1.20^6^0.04^~1~^~A~^^^1^1.03^1.37^5^1.08^1.32^~2, 3~^~04/01/2013~ -~36610~^~209~^32.50^3^1.33^~1~^~A~^^^1^30.10^34.70^2^26.77^38.23^~2, 3~^~04/01/2013~ -~36610~^~210~^0.18^3^0.00^~1~^~A~^^^1^0.18^0.18^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~211~^0.41^3^9.0e-03^~1~^~A~^^^1^0.39^0.42^2^0.36^0.44^~2, 3~^~04/01/2013~ -~36610~^~212~^0.26^3^0.00^~1~^~A~^^^1^0.26^0.26^^^^~2, 3~^~04/01/2013~ -~36610~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~255~^46.05^6^1.38^~1~^~A~^^^1^40.90^49.90^5^42.47^49.61^~2, 3~^~04/01/2013~ -~36610~^~269~^0.85^3^9.0e-03^~1~^~A~^^^1^0.83^0.86^2^0.81^0.88^~2, 3~^~04/01/2013~ -~36610~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~303~^0.72^6^0.03^~1~^~A~^^^1^0.60^0.83^5^0.62^0.81^~2, 3~^~04/01/2013~ -~36610~^~309~^0.46^6^0.01^~1~^~A~^^^1^0.43^0.52^5^0.42^0.49^~2, 3~^~04/01/2013~ -~36610~^~323~^0.98^3^0.11^~1~^~A~^^^1^0.79^1.17^2^0.50^1.46^~2, 3~^~04/01/2013~ -~36610~^~341~^0.09^3^3.0e-03^~1~^~A~^^^1^0.09^0.10^2^0.07^0.10^~2, 3~^~04/01/2013~ -~36610~^~342~^5.97^3^0.19^~1~^~A~^^^1^5.72^6.37^2^5.12^6.83^~2, 3~^~04/01/2013~ -~36610~^~343~^2.18^3^0.18^~1~^~A~^^^1^1.89^2.52^2^1.39^2.97^~2, 3~^~04/01/2013~ -~36610~^~344~^0.04^3^0.01^~1~^~A~^^^1^0.03^0.06^2^-6.0e-03^0.08^~2, 3~^~04/01/2013~ -~36610~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~346~^0.06^3^0.01^~1~^~A~^^^1^0.03^0.08^2^-4.0e-03^0.11^~2, 3~^~04/01/2013~ -~36610~^~347~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.03^2^-0.03^0.05^~1, 2, 3~^~04/01/2013~ -~36611~^~203~^13.56^6^0.13^~1~^~A~^^^1^13.17^14.09^5^13.21^13.90^~2, 3~^~04/01/2013~ -~36611~^~204~^17.87^6^0.19^~1~^~A~^^^1^17.30^18.30^5^17.35^18.37^~2, 3~^~04/01/2013~ -~36611~^~205~^27.22^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~207~^3.72^6^0.06^~1~^~A~^^^1^3.50^3.87^5^3.54^3.89^~2, 3~^~04/01/2013~ -~36611~^~209~^21.67^3^0.44^~1~^~A~^^^1^20.80^22.30^2^19.73^23.59^~2, 3~^~04/01/2013~ -~36611~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~211~^0.63^3^0.03^~1~^~A~^^^1^0.60^0.70^2^0.49^0.77^~2, 3~^~04/01/2013~ -~36611~^~212~^0.20^3^0.00^~1~^~A~^^^1^0.20^0.20^^^^~2, 3~^~04/01/2013~ -~36611~^~213~^1.17^3^0.03^~1~^~A~^^^1^1.10^1.20^2^1.02^1.31^~2, 3~^~04/01/2013~ -~36611~^~214~^0.60^3^0.05^~1~^~A~^^^1^0.50^0.70^2^0.35^0.84^~2, 3~^~04/01/2013~ -~36611~^~255~^37.63^6^0.22^~1~^~A~^^^1^36.80^38.30^5^37.06^38.20^~2, 3~^~04/01/2013~ -~36611~^~269~^2.83^3^0.14^~1~^~A~^^^1^2.60^3.10^2^2.20^3.45^~2, 3~^~04/01/2013~ -~36611~^~287~^0.23^3^0.03^~1~^~A~^^^1^0.20^0.30^2^0.09^0.37^~2, 3~^~04/01/2013~ -~36611~^~303~^0.84^6^0.02^~1~^~A~^^^1^0.77^0.93^5^0.78^0.90^~2, 3~^~04/01/2013~ -~36611~^~309~^1.98^6^0.02^~1~^~A~^^^1^1.92^2.08^5^1.91^2.04^~2, 3~^~04/01/2013~ -~36611~^~323~^0.74^3^0.03^~1~^~A~^^^1^0.70^0.81^2^0.58^0.89^~2, 3~^~04/01/2013~ -~36611~^~341~^0.08^3^4.0e-03^~1~^~A~^^^1^0.08^0.09^2^0.06^0.10^~2, 3~^~04/01/2013~ -~36611~^~342~^3.97^3^0.15^~1~^~A~^^^1^3.81^4.27^2^3.32^4.62^~2, 3~^~04/01/2013~ -~36611~^~343~^1.37^3^0.20^~1~^~A~^^^1^1.14^1.78^2^0.49^2.24^~2, 3~^~04/01/2013~ -~36611~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~345~^0.12^3^3.0e-03^~1~^~A~^^^1^0.12^0.13^2^0.10^0.13^~2, 3~^~04/01/2013~ -~36611~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~418~^0.95^3^0.02^~1~^~A~^^^1^0.89^0.98^2^0.82^1.06^~2, 3~^~04/01/2013~ -~36612~^~203~^13.88^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~204~^20.01^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~205~^20.93^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~207~^4.14^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~209~^18.60^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~210~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~211~^0.20^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~212~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~213~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~214~^0.07^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~255~^41.05^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~269~^0.75^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~287~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~303~^1.54^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~309~^0.85^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~323~^2.61^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~341~^0.23^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~342~^7.74^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~343~^2.78^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~344~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~345~^0.06^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~346~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~347~^0.50^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~418~^0.40^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36613~^~203~^5.19^6^0.14^~1~^~A~^^^1^4.86^5.76^5^4.82^5.55^~2, 3~^~04/01/2013~ -~36613~^~204~^4.92^6^0.54^~1~^~A~^^^1^4.10^7.60^5^3.51^6.31^~2, 3~^~04/01/2013~ -~36613~^~205~^21.16^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~207~^1.35^6^0.02^~1~^~A~^^^1^1.27^1.41^5^1.30^1.40^~2, 3~^~04/01/2013~ -~36613~^~209~^14.90^3^0.15^~1~^~A~^^^1^14.70^15.20^2^14.24^15.55^~2, 3~^~04/01/2013~ -~36613~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~213~^4.07^3^0.12^~1~^~A~^^^1^3.90^4.30^2^3.55^4.58^~2, 3~^~04/01/2013~ -~36613~^~214~^0.13^3^0.03^~1~^~A~^^^1^0.10^0.20^2^-0.01^0.27^~2, 3~^~04/01/2013~ -~36613~^~255~^67.38^6^0.57^~1~^~A~^^^1^65.00^68.50^5^65.91^68.85^~2, 3~^~04/01/2013~ -~36613~^~269~^4.20^3^0.11^~1~^~A~^^^1^4.00^4.40^2^3.70^4.69^~2, 3~^~04/01/2013~ -~36613~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~303~^0.79^6^0.02^~1~^~A~^^^1^0.73^0.85^5^0.73^0.84^~2, 3~^~04/01/2013~ -~36613~^~309~^0.58^6^0.03^~1~^~A~^^^1^0.50^0.76^5^0.48^0.68^~2, 3~^~04/01/2013~ -~36613~^~323~^0.53^3^0.02^~1~^~A~^^^1^0.50^0.56^2^0.44^0.62^~2, 3~^~04/01/2013~ -~36613~^~341~^0.01^3^0.01^~1~^~A~^^^1^0.00^0.04^2^-0.04^0.07^~1, 2, 3~^~04/01/2013~ -~36613~^~342~^0.99^3^0.01^~1~^~A~^^^1^0.96^1.01^2^0.91^1.06^~2, 3~^~04/01/2013~ -~36613~^~343~^0.03^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.03^0.10^~1, 2, 3~^~04/01/2013~ -~36613~^~344~^0.05^3^4.0e-03^~1~^~A~^^^1^0.05^0.06^2^0.03^0.07^~2, 3~^~04/01/2013~ -~36613~^~345~^0.29^3^0.14^~1~^~A~^^^1^0.00^0.48^2^-0.34^0.92^~1, 2, 3~^~04/01/2013~ -~36613~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~418~^0.19^3^0.03^~1~^~A~^^^1^0.13^0.23^2^0.05^0.33^~2, 3~^~04/01/2013~ -~36614~^~203~^16.27^6^0.39^~1~^~A~^^^1^15.00^17.40^5^15.26^17.26^~2, 3~^~04/01/2013~ -~36614~^~204~^28.57^6^0.91^~1~^~A~^^^1^25.60^31.30^5^26.22^30.90^~2, 3~^~04/01/2013~ -~36614~^~205~^13.59^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~207~^2.33^6^0.06^~1~^~A~^^^1^2.06^2.51^5^2.15^2.50^~2, 3~^~04/01/2013~ -~36614~^~209~^12.60^3^0.76^~1~^~A~^^^1^11.10^13.60^2^9.31^15.88^~2, 3~^~04/01/2013~ -~36614~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~211~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~212~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~255~^39.25^6^1.44^~1~^~A~^^^1^35.80^44.90^5^35.54^42.95^~2, 3~^~04/01/2013~ -~36614~^~269~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2013~ -~36614~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~303~^1.34^6^0.04^~1~^~A~^^^1^1.17^1.46^5^1.23^1.45^~2, 3~^~04/01/2013~ -~36614~^~309~^0.73^6^0.02^~1~^~A~^^^1^0.65^0.80^5^0.67^0.78^~2, 3~^~04/01/2013~ -~36614~^~323~^1.91^3^0.07^~1~^~A~^^^1^1.83^2.05^2^1.61^2.21^~2, 3~^~04/01/2013~ -~36614~^~341~^0.06^3^0.03^~1~^~A~^^^1^0.00^0.10^2^-0.07^0.19^~1, 2, 3~^~04/01/2013~ -~36614~^~342~^8.29^3^0.99^~1~^~A~^^^1^6.78^10.17^2^4.00^12.58^~2, 3~^~04/01/2013~ -~36614~^~343~^2.48^3^0.63^~1~^~A~^^^1^1.70^3.74^2^-0.26^5.22^~2, 3~^~04/01/2013~ -~36614~^~344~^0.02^3^0.01^~1~^~A~^^^1^0.00^0.05^2^-0.05^0.09^~1, 2, 3~^~04/01/2013~ -~36614~^~345~^0.03^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.09^0.14^~1, 2, 3~^~04/01/2013~ -~36614~^~346~^0.05^3^8.0e-03^~1~^~A~^^^1^0.04^0.06^2^0.01^0.08^~2, 3~^~04/01/2013~ -~36614~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~418~^0.16^3^3.0e-03^~1~^~A~^^^1^0.16^0.17^2^0.14^0.17^~2, 3~^~04/01/2013~ -~36615~^~203~^28.90^6^0.42^~1~^~A~^^^1^27.50^30.25^5^27.81^29.97^~4~^~06/01/2009~ -~36615~^~204~^7.34^6^0.40^~1~^~A~^^^1^6.65^9.28^5^6.30^8.36^~4~^~06/01/2009~ -~36615~^~205~^0.14^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~207~^1.80^6^0.08^~1~^~A~^^^1^1.59^2.09^5^1.59^2.00^~4~^~06/01/2009~ -~36615~^~255~^61.82^6^0.50^~1~^~A~^^^1^60.42^63.69^5^60.52^63.12^~4~^~06/01/2009~ -~36615~^~303~^3.27^6^0.24^~1~^~A~^^^1^2.81^4.39^5^2.65^3.88^~4~^~06/01/2009~ -~36615~^~309~^5.26^6^0.13^~1~^~A~^^^1^5.02^5.92^5^4.91^5.61^~4~^~06/01/2009~ -~36615~^~418~^2.70^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36617~^~203~^11.87^8^0.89^~1~^~A~^^^2^8.56^18.06^2^8.33^15.39^~2, 3~^~05/01/2013~ -~36617~^~204~^13.55^14^1.74^~1~^~A~^^^2^6.48^33.13^3^8.29^18.79^~2, 3~^~05/01/2013~ -~36617~^~205~^20.61^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~207~^1.28^8^0.14^~1~^~A~^^^2^0.90^1.77^5^0.92^1.64^~2, 3~^~05/01/2013~ -~36617~^~209~^10.27^6^0.78^~1~^~A~^^^1^7.30^12.20^5^8.24^12.29^~2, 3~^~07/01/2010~ -~36617~^~210~^5.05^7^1.52^~1~^~A~^^^2^2.82^13.99^5^1.12^8.96^~2, 3~^~05/01/2013~ -~36617~^~211~^1.58^7^0.26^~1~^~A~^^^2^0.50^2.59^5^0.89^2.26^~2, 3~^~05/01/2013~ -~36617~^~212~^1.52^7^0.26^~1~^~A~^^^2^0.35^2.42^5^0.84^2.19^~2, 3~^~05/01/2013~ -~36617~^~213~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36617~^~214~^0.03^7^0.00^~1~^~A~^^^2^0.00^0.20^^^^~1, 2, 3~^~05/01/2013~ -~36617~^~255~^52.69^8^2.95^~1~^~A~^^^2^30.39^64.21^3^42.32^63.05^~2, 3~^~05/01/2013~ -~36617~^~269~^8.18^7^1.69^~1~^~A~^^^2^3.72^17.54^5^3.82^12.53^~2, 3~^~05/01/2013~ -~36617~^~287~^0.00^7^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36617~^~303~^1.22^14^0.14^~1~^~A~^^^2^0.55^2.34^11^0.88^1.54^~2, 3~^~05/01/2013~ -~36617~^~309~^0.51^14^0.07^~1~^~A~^^^2^0.28^1.37^11^0.34^0.67^~2, 3~^~07/01/2010~ -~36617~^~323~^1.28^4^0.27^~1~^~A~^^^2^0.74^1.96^2^0.12^2.44^~2, 3~^~05/01/2013~ -~36617~^~341~^0.11^4^0.03^~1~^~A~^^^2^0.05^0.18^2^-0.01^0.24^~2, 3~^~05/01/2013~ -~36617~^~342~^5.95^4^0.72^~1~^~A~^^^2^3.39^8.01^2^2.84^9.05^~2, 3~^~05/01/2013~ -~36617~^~343~^2.32^4^0.29^~1~^~A~^^^2^1.50^3.54^2^1.05^3.59^~2, 3~^~05/01/2013~ -~36617~^~344~^0.01^4^1.0e-03^~1~^~A~^^^2^0.00^0.01^2^1.0e-03^0.01^~1, 2, 3~^~07/01/2010~ -~36617~^~345~^0.01^4^8.0e-03^~1~^~A~^^^2^0.00^0.04^2^-0.02^0.04^~1, 2, 3~^~05/01/2013~ -~36617~^~346~^0.01^4^2.0e-03^~1~^~A~^^^2^0.00^0.02^2^2.0e-03^0.02^~1, 2, 3~^~07/01/2010~ -~36617~^~347~^0.00^4^0.00^~1~^~A~^^^2^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36617~^~418~^0.11^7^9.0e-03^~1~^~A~^^^2^0.07^0.15^5^0.08^0.13^~1, 2, 3~^~07/01/2010~ -~36617~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36617~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36618~^~203~^12.90^6^1.11^~1~^~A~^^^1^9.88^17.06^5^10.02^15.76^~2, 3~^~07/01/2010~ -~36618~^~204~^16.36^12^1.06^~1~^~A~^^^1^11.22^23.24^11^14.02^18.70^~2, 3~^~07/01/2010~ -~36618~^~205~^23.99^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~207~^1.60^6^0.05^~1~^~A~^^^1^1.47^1.80^5^1.45^1.74^~2, 3~^~07/01/2010~ -~36618~^~209~^11.83^6^0.61^~1~^~A~^^^1^9.60^14.20^5^10.25^13.40^~2, 3~^~07/01/2010~ -~36618~^~210~^10.46^6^1.54^~1~^~A~^^^1^7.56^17.87^5^6.48^14.44^~2, 3~^~07/01/2010~ -~36618~^~211~^0.62^6^0.20^~1~^~A~^^^1^0.29^1.58^5^0.09^1.15^~2, 3~^~07/01/2010~ -~36618~^~212~^0.51^6^0.19^~1~^~A~^^^1^0.19^1.44^5^6.0e-03^1.01^~1, 2, 3~^~07/01/2010~ -~36618~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36618~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36618~^~255~^45.15^6^1.09^~1~^~A~^^^1^40.26^47.66^5^42.33^47.98^~2, 3~^~07/01/2010~ -~36618~^~269~^11.60^6^1.54^~1~^~A~^^^1^8.33^18.40^5^7.63^15.56^~2, 3~^~07/01/2010~ -~36618~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36618~^~303~^1.16^12^0.13^~1~^~A~^^^1^0.52^1.86^11^0.85^1.46^~2, 3~^~07/01/2010~ -~36618~^~309~^1.30^12^0.13^~1~^~A~^^^1^0.91^2.51^11^0.99^1.59^~2, 3~^~07/01/2010~ -~36618~^~323~^1.21^3^0.18^~1~^~A~^^^1^0.86^1.48^2^0.42^1.98^~2, 3~^~07/01/2010~ -~36618~^~341~^0.15^3^0.01^~1~^~A~^^^1^0.13^0.17^2^0.08^0.20^~2, 3~^~07/01/2010~ -~36618~^~342~^6.14^3^0.61^~1~^~A~^^^1^5.35^7.34^2^3.49^8.77^~2, 3~^~07/01/2010~ -~36618~^~343~^2.75^3^0.28^~1~^~A~^^^1^2.43^3.33^2^1.50^3.99^~2, 3~^~07/01/2010~ -~36618~^~344~^0.02^3^2.0e-03^~1~^~A~^^^1^0.02^0.03^2^0.01^0.03^~2, 3~^~07/01/2010~ -~36618~^~345~^0.00^3^4.0e-03^~1~^~A~^^^1^0.00^0.01^2^-0.01^0.02^~1, 2, 3~^~07/01/2010~ -~36618~^~346~^0.02^3^8.0e-03^~1~^~A~^^^1^0.01^0.04^2^-0.01^0.05^~2, 3~^~07/01/2010~ -~36618~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36618~^~418~^0.22^6^0.01^~1~^~A~^^^1^0.19^0.27^5^0.18^0.25^~2, 3~^~07/01/2010~ -~36618~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36618~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~36619~^~203~^9.76^6^0.64^~1~^~A~^^^1^7.25^11.19^5^8.10^11.41^~2, 3~^~07/01/2010~ -~36619~^~204~^6.98^12^0.84^~1~^~A~^^^1^3.23^13.98^11^5.12^8.83^~2, 3~^~07/01/2010~ -~36619~^~205~^6.87^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~207~^1.61^6^0.07^~1~^~A~^^^1^1.40^1.86^5^1.42^1.78^~2, 3~^~07/01/2010~ -~36619~^~209~^2.53^6^0.26^~1~^~A~^^^1^1.50^3.40^5^1.85^3.21^~2, 3~^~07/01/2010~ -~36619~^~210~^1.86^6^0.27^~1~^~A~^^^1^0.98^2.90^5^1.16^2.55^~2, 3~^~07/01/2010~ -~36619~^~211~^0.63^6^0.07^~1~^~A~^^^1^0.39^0.89^5^0.44^0.82^~2, 3~^~07/01/2010~ -~36619~^~212~^0.54^6^0.04^~1~^~A~^^^1^0.33^0.60^5^0.43^0.65^~2, 3~^~07/01/2010~ -~36619~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~255~^74.78^6^0.69^~1~^~A~^^^1^73.46^78.12^5^72.98^76.57^~2, 3~^~07/01/2010~ -~36619~^~269~^3.03^6^0.33^~1~^~A~^^^1^1.95^4.39^5^2.17^3.88^~2, 3~^~07/01/2010~ -~36619~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~303~^0.76^12^0.10^~1~^~A~^^^1^0.37^1.80^11^0.52^0.99^~2, 3~^~07/01/2010~ -~36619~^~309~^0.74^12^0.08^~1~^~A~^^^1^0.29^1.25^11^0.54^0.93^~2, 3~^~07/01/2010~ -~36619~^~323~^1.02^3^0.07^~1~^~A~^^^1^0.90^1.16^2^0.68^1.35^~2, 3~^~07/01/2010~ -~36619~^~341~^0.05^3^2.0e-03^~1~^~A~^^^1^0.04^0.05^2^0.03^0.05^~2, 3~^~07/01/2010~ -~36619~^~342~^1.97^3^0.35^~1~^~A~^^^1^1.39^2.60^2^0.45^3.47^~2, 3~^~07/01/2010~ -~36619~^~343~^0.61^3^0.17^~1~^~A~^^^1^0.29^0.88^2^-0.14^1.36^~2, 3~^~07/01/2010~ -~36619~^~344~^0.00^3^1.0e-03^~1~^~A~^^^1^0.00^0.00^2^-3.0e-03^5.0e-03^~1, 2, 3~^~07/01/2010~ -~36619~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~346~^0.01^3^1.0e-03^~1~^~A~^^^1^0.00^0.01^2^2.0e-03^0.01^~2, 3~^~07/01/2010~ -~36619~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~418~^0.11^6^0.01^~1~^~A~^^^1^0.07^0.15^5^0.08^0.14^~1, 2, 3~^~07/01/2010~ -~36619~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36619~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~36620~^~203~^5.90^6^0.28^~1~^~A~^^^1^5.12^6.75^5^5.15^6.63^~2, 3~^~02/01/2011~ -~36620~^~204~^4.05^12^0.54^~1~^~A~^^^1^0.69^6.67^11^2.85^5.25^~2, 3~^~02/01/2011~ -~36620~^~205~^4.52^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~207~^1.47^6^0.08^~1~^~A~^^^1^1.09^1.72^5^1.24^1.69^~2, 3~^~02/01/2011~ -~36620~^~209~^1.53^6^0.14^~1~^~A~^^^1^1.30^2.20^5^1.17^1.89^~2, 3~^~02/01/2011~ -~36620~^~210~^0.90^6^0.20^~1~^~A~^^^1^0.41^1.87^5^0.37^1.42^~2, 3~^~02/01/2011~ -~36620~^~211~^0.71^6^0.06^~1~^~A~^^^1^0.47^0.87^5^0.55^0.86^~2, 3~^~02/01/2011~ -~36620~^~212~^0.55^6^0.02^~1~^~A~^^^1^0.45^0.63^5^0.48^0.60^~2, 3~^~02/01/2011~ -~36620~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~255~^84.06^6^0.61^~1~^~A~^^^1^81.11^85.32^5^82.47^85.64^~2, 3~^~02/01/2011~ -~36620~^~269~^2.16^6^0.18^~1~^~A~^^^1^1.82^3.01^5^1.69^2.62^~2, 3~^~02/01/2011~ -~36620~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~303~^0.72^12^0.11^~1~^~A~^^^1^0.37^1.79^11^0.46^0.98^~2, 3~^~02/01/2011~ -~36620~^~309~^0.49^12^0.02^~1~^~A~^^^1^0.34^0.57^11^0.43^0.53^~2, 3~^~02/01/2011~ -~36620~^~323~^0.99^3^0.10^~1~^~A~^^^1^0.80^1.16^2^0.55^1.43^~2, 3~^~02/01/2011~ -~36620~^~341~^0.05^3^0.01^~1~^~A~^^^1^0.02^0.09^2^-0.03^0.13^~2, 3~^~02/01/2011~ -~36620~^~342~^1.67^3^0.23^~1~^~A~^^^1^1.21^2.00^2^0.65^2.68^~2, 3~^~02/01/2011~ -~36620~^~343~^0.54^3^0.11^~1~^~A~^^^1^0.36^0.75^2^0.05^1.02^~2, 3~^~02/01/2011~ -~36620~^~344~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.03^~1, 2, 3~^~02/01/2011~ -~36620~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~346~^0.00^3^2.0e-03^~1~^~A~^^^1^0.00^0.01^2^-6.0e-03^0.01^~1, 2, 3~^~02/01/2011~ -~36620~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~418~^0.21^6^0.01^~1~^~A~^^^1^0.18^0.25^5^0.18^0.24^~2, 3~^~02/01/2011~ -~36621~^~203~^10.10^3^0.54^~1~^~A~^^^1^9.50^11.19^2^7.76^12.44^~2, 3~^~02/01/2011~ -~36621~^~204~^12.65^7^1.51^~1~^~A~^^^1^7.86^16.95^6^8.94^16.35^~2, 3~^~02/01/2011~ -~36621~^~205~^23.86^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~207~^1.21^3^0.07^~1~^~A~^^^1^1.10^1.35^2^0.89^1.52^~2, 3~^~02/01/2011~ -~36621~^~209~^11.40^3^0.89^~1~^~A~^^^1^9.80^12.90^2^7.54^15.25^~2, 3~^~02/01/2011~ -~36621~^~210~^5.18^3^2.21^~1~^~A~^^^1^2.64^9.58^2^-4.33^14.68^~2, 3~^~02/01/2011~ -~36621~^~211~^3.26^3^0.21^~1~^~A~^^^1^2.84^3.52^2^2.34^4.17^~2, 3~^~02/01/2011~ -~36621~^~212~^3.03^3^0.25^~1~^~A~^^^1^2.52^3.35^2^1.91^4.14^~2, 3~^~02/01/2011~ -~36621~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~255~^52.17^3^1.49^~1~^~A~^^^1^49.20^53.93^2^45.74^58.60^~2, 3~^~02/01/2011~ -~36621~^~269~^11.47^3^1.74^~1~^~A~^^^1^9.51^14.94^2^3.98^18.95^~2, 3~^~02/01/2011~ -~36621~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~303~^2.12^7^0.50^~1~^~A~^^^1^0.66^4.40^6^0.87^3.36^~2, 3~^~02/01/2011~ -~36621~^~309~^0.42^7^0.05^~1~^~A~^^^1^0.30^0.76^6^0.28^0.56^~2, 3~^~02/01/2011~ -~36621~^~323~^0.82^2^^~1~^~A~^^^1^0.75^0.90^1^^^^~02/01/2011~ -~36621~^~341~^0.15^2^^~1~^~A~^^^1^0.06^0.25^1^^^^~02/01/2011~ -~36621~^~342~^5.92^2^^~1~^~A~^^^1^4.42^7.41^1^^^^~02/01/2011~ -~36621~^~343~^2.39^2^^~1~^~A~^^^1^1.93^2.86^1^^^^~02/01/2011~ -~36621~^~344~^0.01^2^^~1~^~A~^^^1^0.00^0.02^1^^^~1~^~02/01/2011~ -~36621~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2011~ -~36621~^~346~^0.01^2^^~1~^~A~^^^1^0.01^0.01^1^^^^~02/01/2011~ -~36621~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2011~ -~36621~^~418~^0.09^3^0.01^~1~^~A~^^^1^0.06^0.11^2^0.02^0.15^~2, 3~^~02/01/2011~ -~36621~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36621~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2012~ -~36622~^~203~^8.91^6^0.81^~1~^~A~^^^1^6.44^12.50^5^6.80^11.00^~2, 3~^~02/01/2011~ -~36622~^~204~^15.66^12^0.85^~1~^~A~^^^1^10.51^19.01^11^13.77^17.54^~2, 3~^~02/01/2011~ -~36622~^~205~^23.34^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~207~^1.25^6^0.10^~1~^~A~^^^1^0.97^1.66^5^0.97^1.51^~2, 3~^~02/01/2011~ -~36622~^~209~^11.75^6^0.68^~1~^~A~^^^1^9.40^14.00^5^9.97^13.52^~2, 3~^~02/01/2011~ -~36622~^~210~^4.47^6^0.89^~1~^~A~^^^1^2.22^8.37^5^2.18^6.76^~2, 3~^~02/01/2011~ -~36622~^~211~^3.01^6^0.42^~1~^~A~^^^1^1.79^4.52^5^1.91^4.10^~2, 3~^~02/01/2011~ -~36622~^~212~^2.85^6^0.42^~1~^~A~^^^1^1.66^4.42^5^1.75^3.95^~2, 3~^~02/01/2011~ -~36622~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~255~^50.84^6^1.46^~1~^~A~^^^1^48.24^57.67^5^47.08^54.60^~2, 3~^~02/01/2011~ -~36622~^~269~^10.34^6^0.60^~1~^~A~^^^1^8.48^12.25^5^8.78^11.89^~2, 3~^~02/01/2011~ -~36622~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~303~^3.07^12^0.62^~1~^~A~^^^1^0.81^8.42^11^1.69^4.45^~2, 3~^~02/01/2011~ -~36622~^~309~^1.07^12^0.11^~1~^~A~^^^1^0.53^1.78^11^0.81^1.32^~2, 3~^~02/01/2011~ -~36622~^~323~^0.89^3^0.45^~1~^~A~^^^1^0.16^1.72^2^-1.06^2.84^~2, 3~^~02/01/2011~ -~36622~^~341~^0.06^3^0.02^~1~^~A~^^^1^0.02^0.09^2^-0.03^0.15^~2, 3~^~02/01/2011~ -~36622~^~342~^3.27^3^1.37^~1~^~A~^^^1^0.74^5.45^2^-2.62^9.17^~2, 3~^~02/01/2011~ -~36622~^~343~^1.28^3^0.49^~1~^~A~^^^1^0.32^1.98^2^-0.85^3.41^~2, 3~^~02/01/2011~ -~36622~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~346~^0.01^3^5.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.01^0.02^~1, 2, 3~^~02/01/2011~ -~36622~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~418~^0.19^6^0.02^~1~^~A~^^^1^0.14^0.30^5^0.13^0.25^~2, 3~^~02/01/2011~ -~36623~^~203~^6.76^6^0.53^~1~^~A~^^^1^5.62^9.31^5^5.37^8.14^~2, 3~^~02/01/2011~ -~36623~^~204~^2.80^12^0.40^~1~^~A~^^^1^0.99^4.84^11^1.90^3.69^~2, 3~^~02/01/2011~ -~36623~^~205~^8.29^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~207~^1.13^6^0.09^~1~^~A~^^^1^0.74^1.41^5^0.89^1.37^~2, 3~^~02/01/2011~ -~36623~^~209~^3.99^6^1.61^~1~^~A~^^^1^0.74^9.50^5^-0.15^8.13^~1, 2, 3~^~02/01/2011~ -~36623~^~210~^0.60^6^0.10^~1~^~A~^^^1^0.31^0.99^5^0.34^0.86^~2, 3~^~02/01/2011~ -~36623~^~211~^0.65^6^0.07^~1~^~A~^^^1^0.52^1.02^5^0.45^0.84^~2, 3~^~02/01/2011~ -~36623~^~212~^0.49^6^0.06^~1~^~A~^^^1^0.35^0.77^5^0.33^0.64^~2, 3~^~02/01/2011~ -~36623~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~255~^81.01^4^3.22^~1~^~A~^^^1^73.36^86.73^3^70.76^91.26^~2, 3~^~02/01/2011~ -~36623~^~269~^1.74^6^0.16^~1~^~A~^^^1^1.18^2.33^5^1.32^2.16^~2, 3~^~02/01/2011~ -~36623~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~303~^0.67^12^0.15^~1~^~A~^^^1^0.27^1.74^11^0.33^1.00^~2, 3~^~02/01/2011~ -~36623~^~309~^0.32^12^0.04^~1~^~A~^^^1^0.20^0.77^11^0.22^0.42^~1, 2, 3~^~02/01/2011~ -~36623~^~323~^0.43^3^0.18^~1~^~A~^^^1^0.16^0.78^2^-0.37^1.22^~2, 3~^~02/01/2011~ -~36623~^~341~^0.03^3^6.0e-03^~1~^~A~^^^1^0.02^0.04^2^-1.0e-03^0.05^~2, 3~^~02/01/2011~ -~36623~^~342~^0.93^3^0.18^~1~^~A~^^^1^0.56^1.18^2^0.11^1.74^~2, 3~^~02/01/2011~ -~36623~^~343~^0.25^3^0.09^~1~^~A~^^^1^0.08^0.41^2^-0.15^0.66^~2, 3~^~02/01/2011~ -~36623~^~344~^0.01^3^1.0e-03^~1~^~A~^^^1^0.00^0.01^2^2.0e-03^0.01^~2, 3~^~02/01/2011~ -~36623~^~345~^0.00^3^1.0e-03^~1~^~A~^^^1^0.00^0.00^2^-5.0e-03^8.0e-03^~1, 2, 3~^~02/01/2011~ -~36623~^~346~^0.00^3^3.0e-03^~1~^~A~^^^1^0.00^0.01^2^-7.0e-03^0.01^~1, 2, 3~^~02/01/2011~ -~36623~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~418~^0.07^6^0.00^~1~^~A~^^^1^0.07^0.07^^^^~1, 2, 3~^~02/01/2011~ -~36624~^~203~^1.34^10^0.06^~1~^~A~^^^1^1.19^1.75^9^1.18^1.48^~2, 3~^~04/01/2013~ -~36624~^~204~^1.68^10^0.36^~1~^~A~^^^1^0.40^4.15^9^0.86^2.49^~2, 3~^~04/01/2013~ -~36624~^~205~^5.74^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~207~^1.16^10^0.06^~1~^~A~^^^1^0.95^1.62^9^1.00^1.31^~2, 3~^~04/01/2013~ -~36624~^~209~^1.27^3^0.40^~1~^~A~^^^1^0.60^2.00^2^-0.47^3.01^~2, 3~^~04/01/2013~ -~36624~^~210~^1.23^3^0.29^~1~^~A~^^^1^0.70^1.70^2^-0.01^2.48^~2, 3~^~04/01/2013~ -~36624~^~211~^0.70^3^0.05^~1~^~A~^^^1^0.60^0.80^2^0.45^0.94^~2, 3~^~04/01/2013~ -~36624~^~212~^0.70^3^0.05^~1~^~A~^^^1^0.60^0.80^2^0.45^0.94^~2, 3~^~04/01/2013~ -~36624~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~255~^90.08^10^0.60^~1~^~A~^^^1^85.86^92.57^9^88.70^91.46^~2, 3~^~04/01/2013~ -~36624~^~269~^2.63^3^0.37^~1~^~A~^^^1^1.90^3.10^2^1.03^4.23^~2, 3~^~04/01/2013~ -~36624~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~303~^0.42^10^0.04^~1~^~A~^^^1^0.26^0.76^9^0.32^0.52^~2, 3~^~04/01/2013~ -~36624~^~309~^0.19^10^9.0e-03^~1~^~A~^^^1^0.16^0.25^9^0.17^0.21^~2, 3~^~04/01/2013~ -~36624~^~323~^0.50^3^0.11^~1~^~A~^^^1^0.28^0.65^2^7.0e-03^0.99^~2, 3~^~04/01/2013~ -~36624~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~342~^0.86^3^0.22^~1~^~A~^^^1^0.55^1.30^2^-0.11^1.84^~2, 3~^~04/01/2013~ -~36624~^~343~^0.29^3^0.07^~1~^~A~^^^1^0.20^0.43^2^-0.01^0.59^~2, 3~^~04/01/2013~ -~36624~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36624~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~203~^4.77^12^0.15^~1~^~A~^^^1^4.19^5.56^11^4.43^5.10^~2, 3~^~04/01/2013~ -~36625~^~204~^2.35^12^0.17^~1~^~A~^^^1^1.57^3.38^11^1.96^2.73^~2, 3~^~04/01/2013~ -~36625~^~205~^20.16^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~207~^1.39^12^0.05^~1~^~A~^^^1^1.19^1.79^11^1.27^1.50^~2, 3~^~04/01/2013~ -~36625~^~209~^16.73^3^0.81^~1~^~A~^^^1^15.10^17.60^2^13.21^20.24^~2, 3~^~04/01/2013~ -~36625~^~210~^1.63^3^0.27^~1~^~A~^^^1^1.10^2.00^2^0.45^2.80^~2, 3~^~04/01/2013~ -~36625~^~211~^0.37^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.22^0.51^~2, 3~^~04/01/2013~ -~36625~^~212~^0.33^3^0.03^~1~^~A~^^^1^0.30^0.40^2^0.19^0.47^~2, 3~^~04/01/2013~ -~36625~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~214~^0.30^3^0.05^~1~^~A~^^^1^0.20^0.40^2^0.05^0.54^~2, 3~^~04/01/2013~ -~36625~^~255~^71.33^12^0.89^~1~^~A~^^^1^66.19^76.34^11^69.35^73.30^~2, 3~^~04/01/2013~ -~36625~^~269~^2.63^3^0.29^~1~^~A~^^^1^2.10^3.10^2^1.38^3.88^~2, 3~^~04/01/2013~ -~36625~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~303~^1.07^12^0.17^~1~^~A~^^^1^0.50^2.28^11^0.67^1.45^~2, 3~^~04/01/2013~ -~36625~^~309~^0.36^12^0.01^~1~^~A~^^^1^0.30^0.45^11^0.33^0.38^~2, 3~^~04/01/2013~ -~36625~^~323~^0.30^3^0.01^~1~^~A~^^^1^0.29^0.33^2^0.24^0.36^~2, 3~^~04/01/2013~ -~36625~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~342~^0.80^3^0.21^~1~^~A~^^^1^0.47^1.21^2^-0.14^1.74^~2, 3~^~04/01/2013~ -~36625~^~343~^0.30^3^0.08^~1~^~A~^^^1^0.15^0.46^2^-0.08^0.68^~2, 3~^~04/01/2013~ -~36625~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~345~^0.07^3^0.01^~1~^~A~^^^1^0.05^0.08^2^0.02^0.10^~2, 3~^~04/01/2013~ -~36625~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36625~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~203~^8.18^11^0.30^~1~^~A~^^^1^6.62^10.00^10^7.49^8.86^~2, 3~^~04/01/2013~ -~36626~^~204~^4.56^11^0.43^~1~^~A~^^^1^2.20^6.81^10^3.59^5.52^~2, 3~^~04/01/2013~ -~36626~^~205~^5.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~207~^1.65^11^0.14^~1~^~A~^^^1^1.27^2.78^10^1.33^1.96^~2, 3~^~04/01/2013~ -~36626~^~209~^1.63^3^0.16^~1~^~A~^^^1^1.30^1.80^2^0.91^2.35^~2, 3~^~04/01/2013~ -~36626~^~210~^1.97^3^0.23^~1~^~A~^^^1^1.60^2.40^2^0.96^2.97^~2, 3~^~04/01/2013~ -~36626~^~211~^0.47^3^0.03^~1~^~A~^^^1^0.40^0.50^2^0.32^0.61^~2, 3~^~04/01/2013~ -~36626~^~212~^0.50^3^0.00^~1~^~A~^^^1^0.50^0.50^^^^~2, 3~^~04/01/2013~ -~36626~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~255~^80.24^11^0.53^~1~^~A~^^^1^77.57^83.50^10^79.04^81.42^~2, 3~^~04/01/2013~ -~36626~^~269~^2.93^3^0.26^~1~^~A~^^^1^2.50^3.40^2^1.81^4.05^~2, 3~^~04/01/2013~ -~36626~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~303~^0.56^23^0.02^~1~^~A~^^^4^0.32^1.04^3^0.48^0.64^~2~^~04/01/2013~ -~36626~^~309~^0.43^23^0.03^~1~^~A~^^^4^0.29^0.70^3^0.31^0.54^~2~^~04/01/2013~ -~36626~^~323~^0.77^3^0.07^~1~^~A~^^^1^0.64^0.89^2^0.45^1.08^~2, 3~^~04/01/2013~ -~36626~^~341~^0.04^3^0.02^~1~^~A~^^^1^0.00^0.08^2^-0.05^0.13^~1, 2, 3~^~04/01/2013~ -~36626~^~342~^1.54^3^0.31^~1~^~A~^^^1^0.92^1.96^2^0.18^2.89^~2, 3~^~04/01/2013~ -~36626~^~343~^0.53^3^0.11^~1~^~A~^^^1^0.31^0.67^2^0.04^1.02^~2, 3~^~04/01/2013~ -~36626~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~418~^0.07^3^3.0e-03^~1~^~A~^^^1^0.07^0.08^2^0.05^0.08^~2, 3~^~04/01/2013~ -~36626~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36626~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~203~^14.46^9^0.84^~1~^~A~^^^1^11.19^18.56^8^12.52^16.40^~2, 3~^~04/01/2013~ -~36629~^~204~^12.68^9^0.93^~1~^~A~^^^1^8.93^16.53^8^10.53^14.83^~2, 3~^~04/01/2013~ -~36629~^~205~^22.46^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~207~^1.96^9^0.17^~1~^~A~^^^1^1.39^3.14^8^1.56^2.36^~2, 3~^~04/01/2013~ -~36629~^~209~^10.50^3^0.65^~1~^~A~^^^1^9.80^11.80^2^7.70^13.30^~2, 3~^~04/01/2013~ -~36629~^~210~^12.30^3^2.19^~1~^~A~^^^1^8.60^16.20^2^2.85^21.75^~2, 3~^~04/01/2013~ -~36629~^~211~^0.63^3^0.28^~1~^~A~^^^1^0.30^1.20^2^-0.59^1.85^~2, 3~^~04/01/2013~ -~36629~^~212~^0.67^3^0.31^~1~^~A~^^^1^0.30^1.30^2^-0.70^2.03^~2, 3~^~04/01/2013~ -~36629~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~255~^48.43^9^2.13^~1~^~A~^^^1^34.51^56.93^8^43.51^53.34^~2, 3~^~04/01/2013~ -~36629~^~269~^13.60^3^2.72^~1~^~A~^^^1^9.40^18.70^2^1.88^25.31^~2, 3~^~04/01/2013~ -~36629~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~303~^0.94^9^0.10^~1~^~A~^^^1^0.61^1.59^8^0.69^1.19^~2, 3~^~04/01/2013~ -~36629~^~309~^1.13^9^0.09^~1~^~A~^^^1^0.64^1.56^8^0.91^1.34^~2, 3~^~04/01/2013~ -~36629~^~323~^1.07^3^0.02^~1~^~A~^^^1^1.03^1.10^2^0.98^1.15^~2, 3~^~04/01/2013~ -~36629~^~341~^0.09^3^4.0e-03^~1~^~A~^^^1^0.08^0.09^2^0.06^0.10^~2, 3~^~04/01/2013~ -~36629~^~342~^3.96^3^0.24^~1~^~A~^^^1^3.47^4.24^2^2.90^5.01^~2, 3~^~04/01/2013~ -~36629~^~343~^1.70^3^0.09^~1~^~A~^^^1^1.54^1.87^2^1.29^2.10^~2, 3~^~04/01/2013~ -~36629~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~345~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~418~^0.20^3^0.08^~1~^~A~^^^1^0.06^0.36^2^-0.17^0.57^~2, 3~^~04/01/2013~ -~36629~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36629~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~36630~^~203~^5.79^12^0.13^~1~^~A~^^^1^4.81^6.44^11^5.48^6.09^~2, 3~^~04/01/2014~ -~36630~^~204~^3.59^12^0.22^~1~^~A~^^^1^2.36^5.01^11^3.09^4.09^~2, 3~^~04/01/2014~ -~36630~^~205~^16.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~207~^1.06^12^0.03^~1~^~A~^^^1^0.90^1.27^11^0.98^1.13^~2, 3~^~04/01/2014~ -~36630~^~209~^12.15^6^0.39^~1~^~A~^^^1^10.60^13.50^5^11.14^13.15^~2, 3~^~04/01/2014~ -~36630~^~210~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~211~^0.87^6^0.07^~1~^~A~^^^1^0.63^1.14^5^0.67^1.06^~2, 3~^~04/01/2014~ -~36630~^~212~^0.95^6^0.05^~1~^~A~^^^1^0.79^1.08^5^0.80^1.08^~2, 3~^~04/01/2014~ -~36630~^~213~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~214~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~255~^73.16^12^0.48^~1~^~A~^^^1^71.66^77.24^11^72.09^74.21^~2, 3~^~04/01/2014~ -~36630~^~269~^1.82^6^0.12^~1~^~A~^^^1^1.42^2.22^5^1.49^2.13^~2, 3~^~04/01/2014~ -~36630~^~287~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~303~^0.97^12^0.04^~1~^~A~^^^1^0.74^1.20^11^0.88^1.05^~2, 3~^~04/01/2014~ -~36630~^~309~^0.69^12^0.02^~1~^~A~^^^1^0.55^0.83^11^0.63^0.73^~2, 3~^~04/01/2014~ -~36630~^~323~^0.63^6^0.02^~1~^~A~^^^1^0.54^0.73^5^0.55^0.70^~2, 3~^~04/01/2014~ -~36630~^~341~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~342~^0.10^6^0.01^~1~^~A~^^^1^0.05^0.16^5^0.05^0.14^~2, 3~^~04/01/2014~ -~36630~^~343~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~344~^0.03^6^0.01^~1~^~A~^^^1^0.00^0.08^5^-7.0e-03^0.06^~1, 2, 3~^~04/01/2014~ -~36630~^~345~^0.24^6^0.04^~1~^~A~^^^1^0.12^0.39^5^0.12^0.35^~2, 3~^~04/01/2014~ -~36630~^~346~^0.03^6^0.03^~1~^~A~^^^1^0.00^0.20^5^-0.05^0.11^~1, 2, 3~^~04/01/2014~ -~36630~^~347~^0.00^6^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~418~^0.17^6^0.02^~1~^~A~^^^1^0.09^0.25^5^0.11^0.23^~2, 3~^~04/01/2014~ -~36631~^~203~^5.80^6^0.08^~1~^~A~^^^1^5.56^6.19^5^5.58^6.02^~2, 3~^~04/01/2014~ -~36631~^~204~^3.28^6^0.20^~1~^~A~^^^1^2.51^4.03^5^2.76^3.79^~2, 3~^~04/01/2014~ -~36631~^~205~^17.19^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~207~^0.98^6^0.02^~1~^~A~^^^1^0.90^1.08^5^0.91^1.04^~2, 3~^~04/01/2014~ -~36631~^~209~^12.80^3^0.36^~1~^~A~^^^1^12.30^13.50^2^11.24^14.35^~2, 3~^~04/01/2014~ -~36631~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~211~^0.75^3^0.07^~1~^~A~^^^1^0.63^0.90^2^0.40^1.09^~2, 3~^~04/01/2014~ -~36631~^~212~^0.92^3^0.08^~1~^~A~^^^1^0.79^1.08^2^0.56^1.28^~2, 3~^~04/01/2014~ -~36631~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~255~^72.75^6^0.30^~1~^~A~^^^1^71.81^73.79^5^71.98^73.52^~2, 3~^~04/01/2014~ -~36631~^~269~^1.67^3^0.16^~1~^~A~^^^1^1.42^1.98^2^0.96^2.37^~2, 3~^~04/01/2014~ -~36631~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~303~^1.03^6^0.05^~1~^~A~^^^1^0.89^1.20^5^0.88^1.18^~2, 3~^~04/01/2014~ -~36631~^~309~^0.68^6^0.02^~1~^~A~^^^1^0.61^0.75^5^0.62^0.73^~2, 3~^~04/01/2014~ -~36631~^~323~^0.58^3^0.03^~1~^~A~^^^1^0.54^0.64^2^0.45^0.71^~2, 3~^~04/01/2014~ -~36631~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~342~^0.11^3^0.02^~1~^~A~^^^1^0.09^0.16^2^0.01^0.21^~2, 3~^~04/01/2014~ -~36631~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~344~^0.06^3^0.01^~1~^~A~^^^1^0.04^0.08^2^6.0e-03^0.10^~2, 3~^~04/01/2014~ -~36631~^~345~^0.33^3^0.03^~1~^~A~^^^1^0.26^0.39^2^0.16^0.49^~2, 3~^~04/01/2014~ -~36631~^~346~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~418~^0.13^3^0.02^~1~^~A~^^^1^0.09^0.16^2^0.03^0.22^~2, 3~^~04/01/2014~ -~36632~^~203~^5.87^3^0.53^~1~^~A~^^^1^4.81^6.44^2^3.58^8.16^~2, 3~^~04/01/2014~ -~36632~^~204~^3.92^3^0.28^~1~^~A~^^^1^3.43^4.43^2^2.67^5.16^~2, 3~^~04/01/2014~ -~36632~^~205~^15.71^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~207~^1.18^3^0.05^~1~^~A~^^^1^1.07^1.27^2^0.92^1.43^~2, 3~^~04/01/2014~ -~36632~^~209~^11.50^3^0.45^~1~^~A~^^^1^10.60^12.10^2^9.52^13.47^~2, 3~^~04/01/2014~ -~36632~^~210~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~211~^0.99^3^0.09^~1~^~A~^^^1^0.82^1.14^2^0.59^1.39^~2, 3~^~04/01/2014~ -~36632~^~212~^0.97^3^0.08^~1~^~A~^^^1^0.81^1.08^2^0.61^1.32^~2, 3~^~04/01/2014~ -~36632~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~255~^73.32^3^1.11^~1~^~A~^^^1^72.14^75.55^2^68.51^78.12^~2, 3~^~04/01/2014~ -~36632~^~269~^1.96^3^0.17^~1~^~A~^^^1^1.63^2.22^2^1.21^2.70^~2, 3~^~04/01/2014~ -~36632~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~303~^0.89^3^0.08^~1~^~A~^^^1^0.74^1.04^2^0.50^1.26^~2, 3~^~04/01/2014~ -~36632~^~309~^0.70^3^0.03^~1~^~A~^^^1^0.64^0.76^2^0.54^0.85^~2, 3~^~04/01/2014~ -~36632~^~323~^0.68^3^0.03^~1~^~A~^^^1^0.63^0.73^2^0.54^0.80^~2, 3~^~04/01/2014~ -~36632~^~341~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~342~^0.08^3^0.02^~1~^~A~^^^1^0.05^0.14^2^-0.04^0.20^~2, 3~^~04/01/2014~ -~36632~^~343~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~344~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~345~^0.15^3^0.01^~1~^~A~^^^1^0.12^0.17^2^0.08^0.21^~2, 3~^~04/01/2014~ -~36632~^~346~^0.07^3^0.06^~1~^~A~^^^1^0.00^0.20^2^-0.21^0.34^~1, 2, 3~^~04/01/2014~ -~36632~^~347~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~418~^0.21^3^0.02^~1~^~A~^^^1^0.16^0.25^2^0.09^0.32^~2, 3~^~04/01/2014~ -~36633~^~203~^14.33^12^0.85^~1~^~A~^^^1^10.81^19.94^11^12.44^16.21^~2, 3~^~06/01/2015~ -~36633~^~204~^14.25^12^1.20^~1~^~A~^^^1^9.45^25.00^11^11.60^16.90^~2, 3~^~06/01/2015~ -~36633~^~205~^26.88^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~207~^1.74^12^0.13^~1~^~A~^^^1^0.90^2.68^11^1.44^2.04^~2, 3~^~06/01/2015~ -~36633~^~209~^10.70^2^^~1~^~A~^^^1^10.40^11.00^1^^^^~06/01/2015~ -~36633~^~210~^11.79^2^^~1~^~A~^^^1^9.35^14.24^1^^^^~06/01/2015~ -~36633~^~211~^2.18^2^^~1~^~A~^^^1^0.45^3.92^1^^^^~06/01/2015~ -~36633~^~212~^2.01^2^^~1~^~A~^^^1^0.37^3.64^1^^^^~06/01/2015~ -~36633~^~213~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~36633~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~36633~^~255~^42.80^12^2.48^~1~^~A~^^^1^25.78^53.59^11^37.33^48.25^~2, 3~^~06/01/2015~ -~36633~^~269~^15.98^2^^~1~^~A~^^^1^15.06^16.91^1^^^^~06/01/2015~ -~36633~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~06/01/2015~ -~36633~^~303~^1.09^12^0.14^~1~^~A~^^^1^0.49^2.06^11^0.77^1.40^~2, 3~^~06/01/2015~ -~36633~^~309~^0.91^12^0.11^~1~^~A~^^^1^0.40^1.59^11^0.66^1.15^~2, 3~^~06/01/2015~ -~36633~^~323~^1.31^2^^~1~^~A~^^^1^1.28^1.35^1^^^^~07/01/2015~ -~36633~^~341~^0.20^2^^~1~^~A~^^^1^0.17^0.23^1^^^^~07/01/2015~ -~36633~^~342~^6.48^2^^~1~^~A~^^^1^5.16^7.80^1^^^^~07/01/2015~ -~36633~^~343~^2.65^2^^~1~^~A~^^^1^2.21^3.09^1^^^^~07/01/2015~ -~36633~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~36633~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~36633~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~36633~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~07/01/2015~ -~36633~^~418~^0.25^2^^~1~^~A~^^^1^0.24^0.26^1^^^^~06/01/2015~ -~36633~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~36633~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~42040~^~203~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~204~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~205~^66.91^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42040~^~207~^0.69^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~42040~^~255~^32.40^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~269~^46.55^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~42040~^~303~^0.05^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~309~^0.13^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~323~^0.00^0^^~4~^~BFSN~^~19351~^^^^^^^^^~03/01/2003~ -~42040~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2005~ -~42040~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42040~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42055~^~203~^0.45^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~204~^0.04^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~205~^87.38^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~42055~^~207~^10.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~255~^1.84^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~269~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~303~^0.08^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~309~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42055~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42063~^~203~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~204~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~205~^2.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42063~^~207~^1.00^0^^~4~^~O~^^^^^^^^^^~10/01/2001~ -~42063~^~255~^96.90^0^^~4~^^^^^^^^^^^~10/01/2006~ -~42063~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~303~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~309~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42063~^~418~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42063~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42074~^~203~^6.40^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~204~^10.10^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~205~^26.11^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42074~^~207~^1.19^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~255~^56.20^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~269~^8.52^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~42074~^~303~^0.29^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~309~^0.82^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~323~^0.42^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~418~^0.49^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42116~^~203~^1.50^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42116~^~204~^14.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42116~^~205~^7.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42116~^~207~^3.04^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~255~^74.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42116~^~269~^5.65^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~42116~^~303~^0.13^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~309~^0.04^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~323~^2.45^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~418~^0.07^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42116~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~ -~42117~^~203~^25.00^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~204~^32.00^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~205~^1.00^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~207~^4.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42117~^~255~^38.00^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~269~^1.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42117~^~303~^0.70^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~309~^3.00^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~323~^0.28^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~ -~42117~^~418~^0.83^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42117~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42119~^~203~^2.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~204~^0.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~205~^17.54^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42119~^~207~^0.66^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42119~^~255~^78.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~269~^13.28^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42119~^~303~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~309~^0.14^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~323~^0.05^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~42119~^~418~^0.43^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42119~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42120~^~203~^2.40^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~204~^0.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~205~^14.68^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42120~^~207~^0.62^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42120~^~255~^81.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~269~^10.80^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42120~^~303~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~309~^0.14^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~323~^0.03^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~ -~42120~^~418~^0.43^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42120~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42128~^~203~^19.60^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~204~^5.80^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~42128~^~205~^0.93^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~42128~^~207~^1.67^0^^~4~^~NR~^^^^^^^^^^~07/01/2007~ -~42128~^~255~^72.00^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~269~^0.50^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~42128~^~303~^1.35^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~309~^2.36^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~42128~^~323~^0.39^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42128~^~418~^0.26^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42128~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42129~^~203~^11.50^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~204~^19.30^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~205~^2.60^0^^~9~^^^^^^^^^^^~02/01/2009~ -~42129~^~207~^3.20^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~42129~^~255~^63.40^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42129~^~303~^0.66^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~309~^1.50^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42129~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42129~^~418~^1.31^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42129~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42131~^~203~^4.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~204~^1.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~205~^37.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~207~^0.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42131~^~255~^56.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~269~^37.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~42131~^~303~^0.04^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~309~^0.47^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~42131~^~418~^0.55^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42131~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42135~^~203~^3.00^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~204~^13.10^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~205~^23.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42135~^~207~^0.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42135~^~255~^59.70^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~269~^23.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~42135~^~303~^0.10^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~309~^0.10^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~323~^0.50^0^^~4~^~BFFN~^~01073~^^^^^^^^^~01/01/2003~ -~42135~^~418~^0.20^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42135~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42136~^~203~^1.90^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~204~^15.70^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~205~^73.40^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42136~^~207~^2.80^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42136~^~255~^6.20^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~269~^73.40^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~42136~^~303~^0.03^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~309~^0.02^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~323~^0.26^0^^~4~^~BFFN~^~01069~^^^^^^^^^~01/01/2003~ -~42136~^~418~^0.00^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42136~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42137~^~203~^1.20^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~204~^61.40^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42137~^~207~^2.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42137~^~255~^31.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~269~^2.45^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~303~^0.35^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~309~^0.18^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~323~^4.23^0^^~4~^~BFZN~^~04639~^^^^^^^^^~02/01/2009~ -~42137~^~418~^0.12^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42137~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42138~^~203~^0.90^1^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~204~^33.30^1^^~1~^^^^^^^^^^^~03/01/2005~ -~42138~^~205~^6.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42138~^~207~^3.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42138~^~255~^56.00^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~269~^4.20^0^^~4~^~O~^~43598~^^^^^^^^^~12/01/2006~ -~42138~^~303~^0.00^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~309~^0.00^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~323~^6.43^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~42138~^~418~^0.00^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42138~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42139~^~203~^9.60^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~204~^31.20^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~205~^54.10^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~207~^1.90^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42139~^~255~^3.20^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~269~^23.63^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~303~^1.45^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~309~^1.47^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~323~^4.59^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42139~^~418~^0.46^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42139~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42140~^~203~^0.30^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~204~^20.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~205~^6.70^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42140~^~207~^3.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42140~^~255~^70.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~269~^1.94^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42140~^~303~^0.13^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~309~^0.04^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~323~^0.59^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~418~^0.07^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42140~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42141~^~203~^0.80^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~204~^3.50^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~205~^9.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42141~^~207~^0.40^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42141~^~255~^86.20^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~269~^9.10^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~42141~^~303~^0.56^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~309~^0.05^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~323~^0.28^0^^~4~^~BFFN~^~01067~^^^^^^^^^~01/01/2003~ -~42141~^~418~^0.00^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42141~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42148~^~203~^10.16^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~204~^29.32^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~205~^56.89^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~207~^1.75^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~255~^2.00^1^^~4~^^^^^^^^^^^~01/01/2006~ -~42148~^~269~^47.15^1^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~42148~^~303~^1.06^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~309~^1.49^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~323~^1.26^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~418~^0.19^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42150~^~203~^0.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~204~^1.60^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~205~^19.50^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42150~^~207~^0.20^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~42150~^~255~^77.90^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~269~^12.02^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~42150~^~303~^0.00^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~309~^0.28^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42150~^~418~^0.50^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42150~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42151~^~203~^0.00^0^^~8~^^^^^^^^^^^~03/01/2007~ -~42151~^~204~^53.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~205~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~207~^2.30^0^^~4~^~NC~^~42307~^^^^^^^^^~03/01/2007~ -~42151~^~255~^44.70^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~269~^0.00^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42151~^~303~^0.04^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~309~^0.01^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~323~^9.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42151~^~418~^0.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42151~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42153~^~203~^2.10^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~204~^2.70^1^^~1~^^^^^^^^^^^~02/01/1995~ -~42153~^~205~^13.20^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~42153~^~207~^4.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42153~^~255~^77.80^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~269~^3.60^0^^~4~^~BFZN~^~04539~^^^^^^^^^~04/01/2007~ -~42153~^~303~^0.14^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~309~^0.30^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~323~^0.90^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~42153~^~418~^0.11^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42153~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42155~^~203~^28.20^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~204~^21.60^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~205~^0.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~207~^3.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42155~^~255~^46.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~269~^0.56^0^^~4~^~BFNN~^~01025~^^^^^^^^^~01/01/2003~ -~42155~^~303~^0.72^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~309~^3.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~323~^0.19^0^^~4~^~BFFN~^~01025~^^^^^^^^^~01/01/2003~ -~42155~^~418~^0.83^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42157~^~203~^1.40^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~204~^2.70^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~205~^20.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42157~^~207~^1.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42157~^~255~^74.70^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~269~^5.35^0^^~4~^~BFZN~^~04638~^^^^^^^^^~04/01/2007~ -~42157~^~303~^0.25^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~309~^0.18^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~323~^0.67^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~42157~^~418~^0.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42157~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42158~^~203~^1.00^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~204~^8.00^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~205~^16.00^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~207~^2.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~42158~^~255~^73.00^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42158~^~269~^3.28^0^^~4~^~BFZN~^~04640~^^^^^^^^^~04/01/2007~ -~42158~^~303~^0.26^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~309~^0.18^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~323~^4.92^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~42158~^~418~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42158~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42161~^~203~^11.80^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42161~^~204~^14.80^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42161~^~205~^5.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42161~^~207~^3.20^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42161~^~255~^65.00^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42161~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42161~^~303~^1.00^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~309~^1.83^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42161~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42161~^~418~^1.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42161~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42171~^~203~^0.40^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42171~^~204~^13.00^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42171~^~205~^27.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42171~^~207~^2.40^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~ -~42171~^~255~^59.00^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42171~^~269~^25.92^0^^~4~^~BFCN~^^^^^^^^^^~04/01/2007~ -~42171~^~303~^0.40^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~309~^0.18^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~323~^2.86^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42171~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42173~^~203~^22.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~204~^23.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~205~^0.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~207~^2.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~42173~^~255~^50.90^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42173~^~303~^1.62^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~309~^3.17^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~323~^0.39^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42173~^~418~^1.26^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42173~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42178~^~203~^5.95^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~204~^31.79^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~205~^3.06^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~207~^2.87^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~255~^56.33^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~269~^0.85^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~303~^0.27^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~309~^0.40^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~323~^2.40^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42179~^~203~^12.00^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~204~^9.50^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~42179~^~205~^1.60^0^^~9~^^^^^^^^^^^~02/01/2009~ -~42179~^~207~^3.10^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~42179~^~255~^63.80^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~269~^0.85^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~42179~^~303~^1.15^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~309~^1.96^0^^~12~^^^^^^^^^^^~02/01/2009~ -~42179~^~323~^0.18^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42179~^~418~^1.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42179~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42183~^~203~^7.30^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~204~^33.30^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~205~^56.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~42183~^~207~^1.20^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42183~^~255~^2.20^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~269~^53.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42183~^~303~^1.31^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~309~^0.92^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~323~^2.71^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~42183~^~418~^0.33^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42183~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42185~^~203~^4.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~204~^0.80^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~205~^19.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~207~^1.60^0^^~4~^~O~^^^^^^^^^^~03/01/2002~ -~42185~^~255~^73.50^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~269~^12.61^0^^~4~^~O~^^^^^^^^^^~06/01/2005~ -~42185~^~303~^0.04^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~309~^0.49^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~323~^0.08^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42185~^~418~^0.49^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42185~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42186~^~203~^3.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~204~^3.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~205~^21.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42186~^~207~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42186~^~255~^71.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~269~^19.24^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2009~ -~42186~^~303~^0.46^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~309~^0.28^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~323~^0.09^0^^~4~^~BFSN~^~42185~^^^^^^^^^~03/01/2003~ -~42186~^~418~^0.07^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42186~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42187~^~203~^3.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~204~^3.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~205~^21.60^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~207~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42187~^~255~^71.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~269~^19.92^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2009~ -~42187~^~303~^0.46^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~309~^0.28^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~323~^0.09^0^^~4~^~BFSN~^~19293~^^^^^^^^^~03/01/2003~ -~42187~^~418~^0.07^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42187~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42189~^~203~^4.10^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~204~^2.00^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~205~^5.30^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~207~^0.90^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42189~^~255~^87.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~269~^5.30^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42189~^~303~^0.06^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~309~^0.24^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~323~^0.11^0^^~4~^~BFFN~^~01088~^^^^^^^^^~01/01/2003~ -~42189~^~418~^0.37^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42189~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42190~^~203~^13.70^4^^~1~^~A~^^^3^10.90^17.80^^^^~2~^~05/01/2004~ -~42190~^~204~^37.63^4^^~1~^~A~^^^3^33.80^40.10^^^^~2~^~09/01/2015~ -~42190~^~205~^2.36^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~42190~^~207~^2.22^4^^~1~^~A~^^^3^1.90^2.50^^^^~2~^~05/01/2004~ -~42190~^~255~^44.10^4^^~1~^~A~^^^3^41.60^45.90^^^^~2~^~05/01/2004~ -~42190~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42190~^~303~^1.12^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~309~^1.45^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~323~^0.22^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42190~^~418~^1.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42190~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42192~^~203~^1.52^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~204~^1.01^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~205~^25.60^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~207~^3.40^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~42192~^~255~^68.00^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~269~^7.44^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~303~^0.12^1^^~9~^~MC~^^^^^^^^^^~01/01/2008~ -~42192~^~309~^0.21^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~323~^0.04^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~418~^0.26^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42193~^~203~^0.20^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~204~^2.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42193~^~205~^15.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~207~^2.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42193~^~255~^78.70^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~269~^10.30^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~42193~^~303~^0.12^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~309~^0.05^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~323~^0.04^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42193~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42196~^~203~^3.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~204~^17.50^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~205~^71.22^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~207~^1.02^0^^~4~^~FLC~^^^^^^^^^^~01/01/2004~ -~42196~^~255~^7.20^1^^~4~^^^^^^^^^^^~02/01/2006~ -~42196~^~269~^57.81^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~303~^1.20^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~309~^0.89^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~323~^0.39^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~418~^0.04^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~ -~42196~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42200~^~203~^25.56^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~204~^3.25^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~205~^59.87^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42200~^~207~^7.82^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~255~^3.49^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~269~^0.00^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~303~^7.80^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~309~^3.40^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~323~^0.05^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~341~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~342~^0.01^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~343~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~344~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~345~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~346~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~347~^0.00^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~418~^0.00^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~573~^0.00^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~578~^0.00^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42204~^~203~^7.10^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~204~^4.30^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~205~^81.10^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42204~^~207~^1.70^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~255~^5.80^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~269~^0.88^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~303~^1.49^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~309~^3.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~323~^1.24^0^^~4~^~BFSN~^~19051~^^^^^^^^^~03/01/2003~ -~42204~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42204~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42227~^~203~^7.53^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~204~^27.76^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~205~^60.50^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~42227~^~207~^1.69^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~255~^2.52^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~269~^49.22^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~303~^1.73^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~309~^1.86^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~323~^9.52^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~418~^0.22^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42230~^~203~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~204~^20.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~205~^40.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~207~^3.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~42230~^~255~^37.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~269~^38.73^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~42230~^~303~^0.26^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~309~^0.18^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~323~^1.84^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~418~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42230~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~42231~^~203~^0.11^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~204~^99.98^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~205~^0.00^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~207~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~255~^0.12^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~42231~^~303~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~309~^0.07^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~323~^0.47^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~341~^0.55^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~342~^28.76^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~343~^1.65^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~344~^0.87^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~345~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~346~^0.89^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~347~^0.00^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42231~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42235~^~203~^12.40^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~204~^1.00^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~205~^3.20^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~42235~^~207~^0.90^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42235~^~255~^82.50^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~269~^2.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42235~^~303~^0.14^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~309~^0.38^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~323~^0.01^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~42235~^~418~^0.63^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42235~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42236~^~203~^7.10^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42236~^~204~^3.33^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~42236~^~205~^84.70^0^^~8~^^^^^^^^^^^~02/01/2014~ -~42236~^~207~^2.27^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~255~^2.80^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~269~^36.13^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~303~^15.00^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~42236~^~309~^7.94^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42236~^~323~^0.45^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2014~ -~42236~^~418~^5.29^0^^~8~^^^~Y~^^^^^^^^~03/01/2009~ -~42236~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42236~^~578~^5.29^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~42237~^~203~^11.43^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~204~^2.86^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~205~^81.50^0^^~4~^~O~^^^^^^^^^^~04/01/2014~ -~42237~^~207~^1.21^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~42237~^~255~^3.00^0^^~4~^~BFZN~^~08148~^^^^^^^^^~04/01/2014~ -~42237~^~269~^5.71^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~303~^12.86^0^^~8~^~LC~^^~Y~^^^^^^^^~04/01/2014~ -~42237~^~309~^1.72^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~323~^0.98^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~418~^0.00^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42237~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42240~^~203~^7.70^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~204~^7.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~205~^79.60^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~207~^2.32^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~255~^2.90^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42240~^~269~^20.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~303~^33.80^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~309~^0.90^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~323~^1.86^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~42240~^~418~^4.70^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42240~^~578~^4.70^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42256~^~203~^0.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~204~^52.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~205~^16.70^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~42256~^~207~^1.30^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~42256~^~255~^30.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~269~^16.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~42256~^~303~^0.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~309~^0.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~323~^5.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~42256~^~418~^0.00^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42256~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42259~^~203~^9.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~204~^28.10^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~205~^58.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~207~^2.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~42259~^~255~^2.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~269~^0.54^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~42259~^~303~^2.78^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~309~^2.64^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~323~^2.43^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~42259~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42259~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42261~^~203~^9.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~204~^10.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~205~^73.00^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~207~^2.14^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~255~^5.20^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~269~^15.40^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~303~^17.30^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~309~^2.30^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~323~^0.74^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~418~^2.90^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42261~^~578~^2.90^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~203~^7.90^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~204~^7.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~205~^74.30^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~207~^2.14^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~255~^8.50^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~269~^24.10^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~303~^16.40^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~309~^2.20^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~323~^0.57^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~418~^2.70^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~42265~^~578~^2.70^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42266~^~203~^0.30^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~204~^0.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~205~^11.40^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42266~^~207~^0.29^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42266~^~255~^87.90^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~269~^9.60^0^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~42266~^~303~^0.30^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~309~^0.08^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~323~^0.34^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42266~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42266~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42266~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42267~^~203~^0.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~204~^0.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~205~^9.90^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42267~^~207~^0.25^0^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~42267~^~255~^89.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~269~^8.40^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42267~^~303~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~309~^0.07^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~323~^0.29^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42267~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42267~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42267~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42270~^~203~^0.20^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~204~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~205~^13.41^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~42270~^~207~^0.19^0^^~4~^~BFSN~^~14263~^^^^^^^^^~02/01/2003~ -~42270~^~255~^86.20^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~269~^9.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~42270~^~303~^0.11^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~309~^0.02^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~323~^0.02^0^^~4~^~BFSN~^~14263~^^^^^^^^^~02/01/2003~ -~42270~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~09/01/2005~ -~42270~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42270~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42272~^~203~^5.20^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~204~^32.20^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~205~^55.20^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~42272~^~207~^1.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42272~^~255~^6.10^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~269~^34.27^0^^~4~^~O~^^^^^^^^^^~07/01/2008~ -~42272~^~303~^1.75^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~309~^1.17^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~323~^0.30^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~42272~^~418~^0.07^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42272~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42278~^~203~^1.90^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~204~^1.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~205~^12.10^0^^~9~^^^^^^^^^^^~03/01/2005~ -~42278~^~207~^0.43^0^^~4~^~T~^^^^^^^^^^~03/01/2005~ -~42278~^~255~^84.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~269~^2.39^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~42278~^~303~^0.40^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~309~^0.22^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~323~^0.15^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~42278~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42278~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~42279~^~203~^3.40^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~204~^0.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~205~^11.49^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~42279~^~207~^0.51^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~209~^0.68^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~255~^84.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~269~^2.89^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~303~^1.50^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~309~^0.46^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~323~^0.07^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42279~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~42279~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42280~^~203~^15.50^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~204~^2.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~205~^8.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~207~^3.40^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~42280~^~255~^69.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~42280~^~303~^0.91^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~309~^1.93^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~323~^0.20^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~42280~^~418~^0.54^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42280~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~203~^4.60^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~204~^0.50^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~205~^77.30^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~42281~^~207~^2.60^0^^~4~^~NR~^^^^^^^^^^~09/01/2004~ -~42281~^~255~^15.00^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~303~^0.00^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~309~^0.00^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42281~^~418~^0.00^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~42281~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~42283~^~203~^5.00^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~204~^18.20^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~205~^71.40^1^^~4~^^^^^^^^^^^~02/01/2006~ -~42283~^~207~^3.98^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42283~^~255~^1.40^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~269~^5.01^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~303~^0.80^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~309~^0.45^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~323~^2.18^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42283~^~418~^0.00^1^^~4~^^^^^^^^^^^~02/01/2006~ -~42283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42284~^~203~^6.40^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~204~^9.90^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~205~^76.68^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~207~^3.32^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~255~^3.70^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~269~^28.00^0^^~12~^~MA~^^^^^^^^^^~03/01/2007~ -~42284~^~303~^22.50^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~309~^4.00^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~323~^3.90^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~ -~42284~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42284~^~573~^2.45^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~42284~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42285~^~203~^8.70^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~204~^3.00^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~205~^85.98^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~207~^1.32^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~255~^1.00^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~269~^0.72^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~303~^47.60^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~309~^0.00^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~323~^0.65^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2015~ -~42285~^~573~^0.54^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~42285~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42286~^~203~^4.10^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~204~^1.50^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~205~^5.35^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42286~^~207~^1.55^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~255~^87.50^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~269~^1.39^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~303~^0.70^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~309~^0.60^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~323~^0.45^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~42286~^~418~^0.25^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42289~^~203~^0.00^2^^~1~^^^^1^0.00^0.00^^^^^~03/01/2007~ -~42289~^~204~^100.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~205~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~207~^0.00^2^^~1~^^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~255~^0.00^2^^~1~^^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~269~^0.00^0^^~4~^~BFZN~^~04582~^^^^^^^^^~02/01/2003~ -~42289~^~303~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~309~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~323~^14.84^2^^~1~^~A~^^^1^14.75^14.94^1^^^^~03/01/2007~ -~42289~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~342~^35.37^2^^~1~^~A~^^^1^34.18^36.56^1^^^^~03/01/2007~ -~42289~^~343~^1.28^2^^~1~^~A~^^^1^1.05^1.52^1^^^^~03/01/2007~ -~42289~^~344~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~346~^0.13^2^^~1~^~A~^^^1^0.08^0.18^1^^^^~03/01/2007~ -~42289~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~03/01/2007~ -~42289~^~418~^0.00^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42289~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42290~^~203~^3.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~204~^0.18^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~205~^4.85^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~207~^0.77^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42290~^~255~^90.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~269~^4.85^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42290~^~303~^0.04^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~309~^0.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~323~^0.01^0^^~4~^~BFFN~^~01085~^^^^^^^^^~01/01/2003~ -~42290~^~418~^0.38^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42290~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42291~^~203~^24.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~204~^49.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~205~^21.83^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42291~^~207~^3.17^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~42291~^~255~^1.10^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~269~^9.29^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2010~ -~42291~^~303~^1.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~309~^2.78^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~323~^9.05^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~42291~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42291~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42291~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42297~^~203~^9.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~204~^8.80^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~205~^70.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~207~^4.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~42297~^~255~^5.60^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~269~^17.50^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~303~^28.00^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~42297~^~309~^2.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~323~^1.64^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~418~^2.50^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~42297~^~578~^2.50^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~ -~42303~^~203~^24.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~204~^17.60^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~205~^3.50^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~207~^3.70^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42303~^~255~^50.50^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~269~^3.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42303~^~303~^0.41^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~309~^2.81^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~323~^0.15^0^^~4~^~BFFN~^~01030~^^^^^^^^^~01/01/2003~ -~42303~^~418~^1.47^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42303~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42304~^~203~^31.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~204~^0.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~205~^3.50^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~207~^4.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~42304~^~255~^60.20^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~269~^1.48^0^^~4~^~BFNN~^~01026~^^^^^^^^^~01/01/2003~ -~42304~^~303~^0.31^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~309~^3.92^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~323~^0.14^0^^~4~^~BFZN~^~01028~^^^^^^^^^~01/01/2003~ -~42304~^~418~^0.92^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42304~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42307~^~203~^0.90^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~204~^80.70^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~205~^0.60^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~207~^2.00^0^^~4~^~O~^^^^^^^^^^~11/01/2002~ -~42307~^~255~^15.80^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~269~^0.00^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~ -~42307~^~303~^0.09^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~309~^0.02^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~323~^5.00^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~ -~42307~^~418~^0.10^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42307~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42309~^~203~^1.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~204~^50.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~205~^1.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~207~^2.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~42309~^~255~^46.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~269~^0.00^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~ -~42309~^~303~^0.09^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~309~^0.02^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~323~^5.70^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~42309~^~418~^0.10^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42309~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42316~^~203~^0.60^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~204~^0.30^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~205~^5.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42316~^~207~^0.37^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~255~^93.50^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~269~^2.50^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~42316~^~303~^0.20^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~309~^0.20^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~323~^0.59^0^^~4~^~BFSN~^~11131~^^^^^^^^^~04/01/2003~ -~42316~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42316~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~42316~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43004~^~203~^1.00^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~204~^0.80^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~205~^14.14^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43004~^~207~^0.56^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43004~^~255~^83.50^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~269~^10.55^0^^~4~^~O~^^^^^^^^^^~03/01/2009~ -~43004~^~303~^0.30^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~309~^0.12^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~323~^0.07^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43004~^~418~^0.01^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43004~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43006~^~203~^0.40^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~204~^0.30^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~205~^15.48^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43006~^~207~^0.32^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~255~^83.50^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~269~^9.29^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~303~^0.20^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~309~^0.80^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43006~^~418~^0.01^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43006~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43007~^~203~^0.40^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~204~^0.40^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~205~^16.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43007~^~207~^0.30^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~43007~^~255~^82.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~269~^9.41^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~303~^0.30^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~309~^0.19^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~323~^0.15^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43007~^~418~^0.01^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43007~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43008~^~203~^1.60^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~204~^0.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~205~^9.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43008~^~207~^0.30^0^^~4~^~O~^^^^^^^^^^~04/01/2003~ -~43008~^~255~^88.00^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~269~^0.55^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~303~^0.20^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~309~^0.25^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~323~^0.11^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43008~^~418~^0.10^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43008~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43015~^~203~^2.17^2^^~9~^~MC~^^^1^2.11^2.23^1^^^^~12/01/2007~ -~43015~^~204~^57.85^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~205~^3.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~207~^2.40^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43015~^~255~^34.30^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~269~^2.81^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~43015~^~303~^1.08^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~43015~^~309~^0.11^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~323~^4.74^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~418~^0.03^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43016~^~203~^0.85^15^0.01^~1~^~A~^^^1^0.53^1.21^8^0.80^0.89^~2, 3~^~10/01/2016~ -~43016~^~204~^34.53^15^0.29^~1~^~A~^^^1^13.70^49.10^5^33.78^35.27^~2, 3~^~10/01/2016~ -~43016~^~205~^22.40^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~207~^2.37^15^0.01^~1~^~A~^^^1^1.40^2.99^7^2.34^2.40^~2, 3~^~10/01/2016~ -~43016~^~209~^1.08^3^^~1~^~A~^^^1^0.10^1.50^^^^~2, 3~^~10/01/2016~ -~43016~^~210~^10.29^9^0.25^~1~^~A~^^^1^0.00^20.70^2^9.30^11.27^~1, 2, 3~^~10/01/2016~ -~43016~^~211~^5.56^9^0.05^~1~^~A~^^^1^0.30^13.40^4^5.41^5.71^~2, 3~^~10/01/2016~ -~43016~^~212~^5.16^9^0.04^~1~^~A~^^^1^0.40^12.00^3^5.01^5.29^~2, 3~^~10/01/2016~ -~43016~^~213~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~214~^0.22^9^0.01^~1~^~A~^^^1^0.00^0.40^2^0.16^0.27^~1, 2, 3~^~10/01/2016~ -~43016~^~255~^39.85^15^0.09^~1~^~A~^^^1^28.10^55.30^6^39.62^40.07^~2, 3~^~10/01/2016~ -~43016~^~269~^21.23^9^0.25^~1~^~A~^^^1^14.50^25.60^2^20.16^22.29^~2, 3~^~10/01/2016~ -~43016~^~287~^0.00^9^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~303~^0.33^15^0.02^~1~^~A~^^^1^0.18^0.56^7^0.26^0.39^~2, 3~^~10/01/2016~ -~43016~^~309~^0.16^15^8.0e-03^~1~^~A~^^^1^0.10^0.23^8^0.14^0.17^~2, 3~^~10/01/2016~ -~43016~^~323~^3.08^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43016~^~418~^0.09^0^^~4~^~FLA~^^^^^^^^^^~10/01/2016~ -~43016~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43016~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43017~^~203~^1.90^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~204~^43.33^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~43017~^~205~^7.36^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~207~^2.38^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~43017~^~255~^45.03^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~43017~^~269~^6.67^0^^~4~^~FLC~^^^^^^^^^^~07/01/2005~ -~43017~^~303~^0.35^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~309~^0.25^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~323~^4.60^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43017~^~418~^0.26^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43017~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43019~^~203~^0.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~204~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43019~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~43019~^~207~^0.50^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43019~^~255~^95.70^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~269~^3.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~43019~^~303~^0.04^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~309~^0.02^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~323~^2.56^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43019~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43019~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43020~^~203~^5.10^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~204~^7.20^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~205~^2.90^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43020~^~207~^5.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43020~^~255~^79.50^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~269~^2.82^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~43020~^~303~^0.50^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~309~^0.25^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~323~^0.25^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43020~^~418~^0.23^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43020~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43021~^~203~^0.30^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~204~^4.40^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~205~^18.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43021~^~207~^3.50^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43021~^~255~^73.20^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~269~^16.32^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~43021~^~303~^0.18^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~309~^0.11^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~323~^0.71^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~418~^0.03^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43021~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43026~^~203~^0.80^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43026~^~204~^0.00^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43026~^~205~^11.99^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43026~^~207~^0.21^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~43026~^~255~^87.00^0^^~8~^~LC~^^^^^^^^^^~09/01/2015~ -~43026~^~269~^0.01^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43026~^~303~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~309~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43026~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43027~^~203~^0.55^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~204~^0.00^0^^~1~^^^^^^^^^^^~04/01/1985~ -~43027~^~205~^29.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~43027~^~207~^0.32^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~255~^69.53^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~269~^3.39^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~303~^0.15^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~309~^0.07^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~323~^0.33^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~43028~^~203~^0.30^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43028~^~204~^0.30^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43028~^~205~^53.42^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~43028~^~207~^0.18^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~255~^45.80^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~269~^37.81^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~303~^0.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~309~^0.06^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~323~^0.09^0^^~4~^~BFSN~^~19297~^^^^^^^^^~03/01/2003~ -~43028~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43028~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43028~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43031~^~203~^9.50^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~204~^21.00^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~205~^60.67^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43031~^~207~^2.73^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~255~^6.10^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~269~^41.35^0^^~4~^~O~^~19155~^^^^^^^^^~12/01/2006~ -~43031~^~303~^1.70^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~309~^1.87^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~323~^1.10^0^^~4~^~BFZN~^~19155~^^^^^^^^^~03/01/2003~ -~43031~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43031~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43046~^~203~^3.33^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43046~^~204~^1.67^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43046~^~205~^92.39^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43046~^~207~^0.46^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~255~^2.15^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~269~^44.97^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~43046~^~303~^0.59^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~309~^0.42^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~323~^2.77^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~418~^0.01^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43046~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43057~^~203~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~204~^0.20^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~205~^88.10^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~43057~^~207~^0.00^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~255~^11.70^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~269~^70.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43057~^~303~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~309~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~323~^0.00^0^^~4~^~BFSN~^~43058~^^^^^^^^^~03/01/2003~ -~43057~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43057~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43057~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43058~^~203~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~204~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~205~^98.60^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~43058~^~207~^0.00^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~255~^1.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~269~^0.00^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~43058~^~303~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~309~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~323~^0.00^0^^~4~^~BFSN~^~19335~^^^^^^^^^~03/01/2003~ -~43058~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43058~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43059~^~203~^12.39^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~204~^43.27^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~205~^37.68^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~207~^2.67^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~209~^0.44^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~255~^4.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43059~^~269~^14.63^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~303~^1.45^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~309~^2.47^0^^~4~^^^^^^^^^^^~02/01/2015~ -~43059~^~323~^2.61^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~418~^0.85^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43059~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43060~^~203~^0.00^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~204~^0.40^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~205~^94.80^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~43060~^~207~^1.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43060~^~255~^3.50^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43060~^~303~^0.00^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~309~^0.00^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~323~^0.00^0^^~4~^~BFZN~^~19163~^^^^^^^^^~02/01/2003~ -~43060~^~418~^0.00^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43060~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43075~^~203~^0.00^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~204~^0.00^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~205~^2.45^0^^~9~^~MC~^^^^^^^^^^~06/01/2006~ -~43075~^~207~^0.18^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~43075~^~255~^96.44^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~43075~^~269~^2.45^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~43075~^~303~^0.00^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~309~^0.02^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~43075~^~418~^0.00^0^^~7~^^^^^^^^^^^~06/01/2006~ -~43075~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43075~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43098~^~203~^0.82^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~204~^0.16^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~205~^11.98^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43098~^~207~^0.28^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~255~^86.76^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~269~^9.15^0^^~4~^~O~^^^^^^^^^^~05/01/2007~ -~43098~^~303~^0.33^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~309~^0.07^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~323~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43100~^~203~^9.80^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~204~^17.60^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~205~^66.70^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43100~^~207~^1.80^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43100~^~255~^4.10^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~269~^27.52^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43100~^~303~^3.18^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~309~^1.60^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~323~^0.82^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~43100~^~418~^0.00^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~43100~^~573~^0.00^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~43100~^~578~^0.00^0^^~4~^~O~^^^^^^^^^^~02/01/2005~ -~43109~^~203~^8.20^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~204~^3.10^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~205~^69.39^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43109~^~207~^4.31^0^^~4~^~BFSN~^~19047~^^^^^^^^^~03/01/2003~ -~43109~^~255~^15.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~269~^0.25^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~303~^3.92^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~309~^0.94^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~323~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43109~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43109~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43109~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43112~^~203~^5.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~204~^1.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~205~^16.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43112~^~207~^1.60^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43112~^~255~^75.50^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~269~^5.25^0^^~4~^~BFSN~^~16011~^^^^^^^^^~04/01/2007~ -~43112~^~303~^1.86^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~309~^2.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~323~^0.21^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43112~^~418~^0.01^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43112~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43114~^~203~^0.10^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~204~^0.10^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~205~^82.32^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43114~^~207~^5.58^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~255~^11.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~269~^17.44^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~303~^1.81^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~309~^4.24^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~323~^0.51^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~ -~43114~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43114~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43114~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43125~^~203~^1.80^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~204~^3.20^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~205~^2.80^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~207~^0.70^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43125~^~255~^91.50^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~303~^1.96^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~309~^0.49^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43125~^~418~^0.02^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43125~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43128~^~203~^23.64^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~204~^12.73^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~205~^3.64^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~207~^1.15^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~43128~^~255~^58.84^0^^~4~^~O~^^^^^^^^^^~04/01/2007~ -~43128~^~269~^0.00^0^^~8~^~LC~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~303~^3.27^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~309~^0.70^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43128~^~323~^2.68^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43128~^~418~^2.18^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43128~^~578~^2.18^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43130~^~203~^19.61^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~204~^13.73^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~205~^7.70^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43130~^~207~^0.97^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43130~^~255~^58.00^0^^~1~^^^^^^^^^^^~01/01/2005~ -~43130~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~303~^1.41^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~309~^1.20^0^^~1~^^^^^^^^^^^~01/01/2005~ -~43130~^~323~^1.92^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43130~^~418~^2.35^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43130~^~578~^2.35^0^^~4~^~NR~^^^^^^^^^^~01/01/2005~ -~43131~^~203~^17.78^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~204~^11.11^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~205~^4.44^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~207~^1.66^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43131~^~255~^65.01^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43131~^~269~^2.22^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43131~^~303~^1.80^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~309~^1.60^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43131~^~323~^3.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43131~^~418~^4.00^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43131~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43131~^~578~^4.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43132~^~203~^21.00^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~204~^9.00^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~205~^8.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43132~^~207~^4.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43132~^~255~^58.00^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~269~^1.25^0^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43132~^~303~^2.16^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~309~^1.80^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43132~^~323~^1.73^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43132~^~418~^1.50^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43132~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43132~^~578~^1.50^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43134~^~203~^23.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~204~^18.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~205~^9.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43134~^~207~^5.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43134~^~255~^45.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~269~^0.80^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43134~^~303~^2.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~309~^1.40^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~323~^3.45^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43134~^~418~^4.20^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43134~^~578~^4.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43135~^~203~^8.00^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~204~^9.00^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~205~^9.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43135~^~207~^4.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43135~^~255~^70.00^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~269~^1.90^0^^~4~^~BFSN~^~43131~^^^^^^^^^~08/01/2015~ -~43135~^~303~^1.50^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~309~^1.30^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~323~^1.73^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43135~^~418~^3.10^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43135~^~578~^3.10^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43137~^~203~^21.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~204~^9.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~205~^8.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43137~^~207~^4.00^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43137~^~255~^58.00^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~269~^1.20^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43137~^~303~^2.10^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~309~^1.80^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~323~^1.73^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43137~^~418~^2.40^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43137~^~578~^2.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43142~^~203~^1.10^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~204~^0.30^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~205~^5.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43142~^~207~^1.90^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43142~^~255~^91.50^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~269~^2.00^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~43142~^~303~^0.23^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~309~^0.22^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43142~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43142~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43142~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43143~^~203~^1.60^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~205~^5.67^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43143~^~207~^1.23^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43143~^~255~^91.40^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~269~^1.30^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43143~^~303~^0.49^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~309~^0.20^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~323~^0.12^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43143~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43143~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43143~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43144~^~203~^1.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~204~^0.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~205~^5.63^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43144~^~207~^1.07^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43144~^~255~^92.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~269~^1.40^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43144~^~303~^0.70^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~309~^0.30^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~323~^0.02^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43144~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43144~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43144~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43146~^~203~^0.90^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~204~^0.70^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~205~^9.77^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43146~^~207~^1.73^0^^~4~^~O~^~11210~^^^^^^^^^~03/01/2007~ -~43146~^~255~^86.90^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~269~^4.80^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~43146~^~303~^0.77^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~309~^0.23^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~323~^0.03^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43146~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43146~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43146~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43154~^~203~^0.50^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~204~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~205~^6.30^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43154~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43154~^~255~^88.90^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~269~^1.55^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~303~^0.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~309~^0.08^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~323~^0.00^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43154~^~418~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43154~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43155~^~203~^0.07^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2005~ -~43155~^~204~^0.00^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~205~^1.17^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43155~^~207~^0.13^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43155~^~255~^92.23^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~43155~^~269~^1.15^0^^~4~^~BFSN~^~14084~^^^^^^^^^~02/01/2003~ -~43155~^~303~^0.40^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~309~^0.08^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~323~^0.00^0^^~4~^~BFSN~^~14084~^^^^^^^^^~10/01/2004~ -~43155~^~418~^0.00^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43155~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43158~^~203~^0.94^2^^~1~^~A~^^^1^0.12^1.76^1^^^^~02/01/2005~ -~43158~^~204~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~205~^89.11^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43158~^~207~^1.19^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~43158~^~209~^3.91^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~43158~^~255~^8.75^3^0.04^~1~^~A~^^^1^8.67^8.83^2^8.55^8.95^~2, 3~^~02/01/2005~ -~43158~^~269~^85.19^0^^~4~^~O~^^^^^^^^^^~12/01/2006~ -~43158~^~303~^0.04^3^0.03^~1~^~A~^^^1^0.00^0.11^2^-0.12^0.20^~1, 2, 3~^~02/01/2005~ -~43158~^~309~^0.01^3^7.0e-03^~1~^~A~^^^1^0.00^0.02^2^-0.02^0.03^~1, 2, 3~^~02/01/2005~ -~43158~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43158~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43205~^~203~^19.90^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~204~^1.40^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~205~^66.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43205~^~207~^5.10^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43205~^~255~^7.40^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~269~^65.80^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~43205~^~303~^12.82^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~309~^8.55^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~323~^9.37^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~43205~^~418~^1.71^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~573~^9.37^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43205~^~578~^1.00^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~43212~^~203~^32.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~204~^25.90^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~205~^28.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43212~^~207~^5.50^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43212~^~255~^8.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~269~^0.00^0^^~8~^~LC~^~16117~^^^^^^^^^~04/01/2007~ -~43212~^~303~^0.72^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~309~^1.87^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~323~^6.90^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43212~^~418~^1.20^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43212~^~578~^1.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43214~^~203~^2.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~204~^1.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~205~^89.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~207~^3.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43214~^~255~^5.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~269~^5.30^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~43214~^~303~^2.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~309~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~43214~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43214~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43215~^~203~^1.25^4^0.40^~6~^~JA~^^^2^0.73^1.47^1^-3.84^6.33^~4~^~12/01/2007~ -~43215~^~204~^12.42^4^0.06^~6~^~JA~^^^2^5.75^15.25^2^12.09^12.73^~2, 3~^~12/01/2007~ -~43215~^~205~^21.33^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~207~^2.96^2^^~1~^~A~^^^1^2.85^3.08^1^^^^~12/01/2007~ -~43215~^~210~^0.89^2^^~1~^~A~^^^1^0.07^1.70^1^^^~1~^~12/01/2007~ -~43215~^~211~^0.66^2^^~1~^~A~^^^1^0.58^0.73^1^^^^~12/01/2007~ -~43215~^~212~^0.61^2^^~1~^~A~^^^1^0.60^0.62^1^^^^~12/01/2007~ -~43215~^~213~^1.04^2^^~1~^~A~^^^1^0.68^1.40^1^^^^~12/01/2007~ -~43215~^~214~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2007~ -~43215~^~255~^62.04^2^^~1~^~A~^^^1^62.04^62.04^0^^^^~12/01/2007~ -~43215~^~269~^3.77^4^1.05^~6~^~JA~^^^2^3.19^5.15^1^-9.63^17.17^~4~^~12/01/2007~ -~43215~^~287~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~12/01/2007~ -~43215~^~303~^0.69^4^0.36^~6~^~JA~^^^2^0.22^0.90^1^-3.99^5.38^~4~^~12/01/2007~ -~43215~^~309~^0.62^3^0.04^~1~^~A~^^^1^0.55^0.69^2^0.44^0.79^~2, 3~^~02/01/2003~ -~43215~^~323~^1.60^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~418~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~02/01/2003~ -~43215~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43215~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~43216~^~203~^0.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~204~^0.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~205~^100.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~207~^0.00^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2005~ -~43216~^~209~^7.30^0^^~4~^~O~^^^^^^^^^^~05/01/2005~ -~43216~^~255~^0.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~269~^92.70^0^^~4~^~O~^~19351~^^^^^^^^^~10/01/2006~ -~43216~^~303~^0.10^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43216~^~309~^0.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~323~^0.00^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~43216~^~418~^0.00^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43216~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43217~^~203~^1.20^18^0.02^~1~^~A~^^^2^0.94^1.39^9^1.15^1.24^~2, 3~^~04/01/2014~ -~43217~^~204~^0.30^13^0.02^~11~^~JO~^^^2^0.15^0.51^8^0.23^0.35^~2, 3~^~08/01/2014~ -~43217~^~205~^5.31^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43217~^~207~^1.92^18^0.03^~1~^~A~^^^2^1.43^2.43^11^1.85^1.98^~2, 3~^~04/01/2014~ -~43217~^~210~^0.07^8^0.00^~1~^~A~^^^2^0.00^0.27^^^^~1, 2, 3~^~04/01/2014~ -~43217~^~211~^1.82^9^0.07^~1~^~A~^^^2^1.29^2.60^2^1.49^2.13^~2, 3~^~04/01/2014~ -~43217~^~212~^1.67^9^0.08^~1~^~A~^^^2^1.40^2.08^2^1.33^2.01^~2, 3~^~04/01/2014~ -~43217~^~213~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~43217~^~214~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~43217~^~255~^91.28^26^0.11^~11~^~JO~^^^4^86.10^92.61^11^91.03^91.52^~2, 3~^~04/01/2014~ -~43217~^~269~^3.56^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~43217~^~287~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~43217~^~303~^0.96^18^0.10^~1~^~A~^^^2^0.44^2.33^6^0.70^1.21^~2, 3~^~08/01/2014~ -~43217~^~309~^0.22^18^7.0e-03^~1~^~A~^^^2^0.15^0.38^6^0.20^0.24^~2, 3~^~08/01/2014~ -~43217~^~323~^1.44^8^0.04^~1~^~A~^^^2^1.13^1.55^4^1.32^1.54^~2, 3~^~04/01/2014~ -~43217~^~341~^0.02^8^1.0e-03^~1~^~A~^^^2^0.00^0.04^2^0.01^0.02^~2, 3~^~05/01/2011~ -~43217~^~342~^0.10^8^5.0e-03^~1~^~A~^^^2^0.05^0.23^3^0.08^0.11^~2, 3~^~05/01/2011~ -~43217~^~343~^0.00^8^0.00^~1~^~A~^^^2^0.00^0.00^^^^~2, 3~^~05/01/2011~ -~43217~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~ -~43217~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43217~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43218~^~203~^11.20^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~204~^3.30^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~205~^75.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43218~^~207~^2.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43218~^~255~^7.40^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~269~^20.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~43218~^~303~^3.00^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~309~^3.00^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~323~^0.51^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~418~^0.12^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43218~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43241~^~203~^9.50^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43241~^~204~^6.30^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43241~^~205~^73.80^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43241~^~207~^8.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43241~^~255~^1.90^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~269~^23.20^0^^~8~^~LC~^^~Y~^^^^^^^^~07/01/2012~ -~43241~^~303~^2.78^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~309~^1.92^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~323~^1.16^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43241~^~418~^0.29^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43241~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43245~^~203~^7.10^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~204~^5.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43245~^~205~^76.20^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~207~^2.60^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~255~^8.50^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~269~^23.60^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~ -~43245~^~303~^9.82^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~309~^2.73^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~323~^2.32^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~418~^2.73^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~43245~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43245~^~578~^2.73^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2005~ -~43260~^~203~^35.80^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~204~^5.10^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~205~^41.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43260~^~207~^10.70^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43260~^~255~^7.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~269~^39.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43260~^~303~^2.30^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~309~^15.40^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~323~^16.88^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~43260~^~418~^3.10^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~573~^16.88^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43260~^~578~^2.00^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~43261~^~203~^4.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~204~^0.20^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~205~^19.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~207~^1.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43261~^~255~^75.40^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~269~^19.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~43261~^~303~^0.07^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~309~^0.74^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~323~^0.06^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~418~^0.47^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43261~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43268~^~203~^0.90^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~204~^6.00^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~205~^10.60^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~207~^0.20^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43268~^~255~^82.30^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~269~^10.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43268~^~303~^0.01^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~309~^0.01^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~323~^0.05^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43268~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43268~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43269~^~203~^4.30^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~204~^6.00^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~205~^29.64^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~43269~^~207~^0.76^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~255~^59.30^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~269~^20.74^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~43269~^~303~^0.25^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~309~^0.54^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~323~^0.12^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~418~^0.39^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43269~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43273~^~203~^10.90^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~204~^4.20^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~205~^3.00^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~43273~^~207~^1.34^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~255~^80.30^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~269~^0.37^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~303~^0.10^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~309~^0.29^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~323~^0.05^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~418~^0.49^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43273~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43274~^~203~^7.85^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~204~^16.67^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43274~^~205~^6.73^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43274~^~207~^2.03^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~209~^1.35^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~210~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~211~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~212~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~213~^3.30^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~43274~^~214~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~255~^66.72^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~269~^3.30^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43274~^~287~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~303~^0.17^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~309~^0.57^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~323~^0.27^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~341~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~342~^0.02^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~343~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~344~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~345~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~346~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~347~^0.00^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~418~^0.92^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43274~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43275~^~203~^24.60^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43275~^~204~^7.00^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43275~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43275~^~207~^6.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43275~^~255~^58.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~269~^0.59^0^^~4~^~BFNN~^~01042~^^^^^^^^^~02/01/2003~ -~43275~^~303~^0.43^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~309~^3.32^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~323~^0.27^0^^~4~^~BFZN~^~01042~^^^^^^^^^~02/01/2003~ -~43275~^~418~^0.77^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43275~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43276~^~203~^7.10^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~204~^28.60^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~205~^3.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43276~^~207~^2.30^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43276~^~255~^58.50^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43276~^~269~^3.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~43276~^~303~^1.13^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~309~^0.51^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~323~^0.77^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43276~^~418~^0.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43276~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43278~^~203~^16.70^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43278~^~204~^14.00^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43278~^~205~^11.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43278~^~207~^4.60^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43278~^~255~^53.10^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43278~^~269~^7.74^0^^~4~^~BFNN~^~01046~^^^^^^^^^~02/01/2003~ -~43278~^~303~^0.33^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~309~^2.59^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~323~^0.27^0^^~4~^~BFZN~^~01042~^^^^^^^^^~02/01/2003~ -~43278~^~418~^0.40^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43278~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43282~^~203~^25.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~204~^14.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43282~^~207~^0.80^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~43282~^~255~^60.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~303~^4.43^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~309~^3.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~323~^0.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43282~^~418~^0.36^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~43282~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~203~^32.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~204~^12.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43283~^~207~^1.30^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~43283~^~255~^54.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43283~^~303~^1.43^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~309~^1.37^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~323~^0.27^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43283~^~418~^0.72^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~43283~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43285~^~203~^13.10^0^^~1~^^^^^^^^^^^~09/01/2010~ -~43285~^~204~^5.60^0^^~1~^^^^^^^^^^^~09/01/2010~ -~43285~^~205~^7.50^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43285~^~207~^1.10^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43285~^~255~^72.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~269~^7.50^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43285~^~303~^0.23^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~309~^0.14^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~323~^0.84^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43285~^~418~^0.17^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43285~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43287~^~203~^23.90^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~204~^13.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43287~^~207~^1.10^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43287~^~255~^62.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~303~^5.91^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~309~^3.83^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~323~^0.06^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43287~^~418~^0.41^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~43287~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43297~^~203~^11.80^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~204~^62.40^0^^~4~^^^^^^^^^^^~04/01/2003~ -~43297~^~205~^1.40^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~207~^2.60^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~ -~43297~^~255~^21.80^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43297~^~303~^0.50^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~309~^1.15^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~323~^0.36^0^^~4~^~BFSN~^~10123~^^^^^^^^^~01/01/2003~ -~43297~^~418~^0.30^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43297~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43299~^~203~^12.50^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~204~^8.10^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~205~^6.90^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43299~^~207~^1.60^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~255~^70.90^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~269~^1.60^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43299~^~303~^5.60^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~309~^1.72^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~323~^0.60^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43299~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43299~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43299~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43311~^~203~^1.40^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~204~^0.20^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~205~^13.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43311~^~207~^0.50^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~255~^84.30^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~269~^0.59^0^^~4~^~BFSN~^~11367~^^^^^^^^^~02/01/2003~ -~43311~^~303~^1.26^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~309~^0.28^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~323~^0.05^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43311~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43311~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43311~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43312~^~203~^1.40^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~204~^0.20^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~205~^7.31^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43312~^~207~^0.89^0^^~4~^~BFZN~^~11581~^^^^^^^^^~02/01/2003~ -~43312~^~255~^90.20^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~269~^2.41^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43312~^~303~^0.65^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~309~^0.51^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~323~^0.29^0^^~4~^~BFZN~^~11581~^^^^^^^^^~03/01/2007~ -~43312~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43312~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43312~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43325~^~203~^22.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~204~^7.70^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~205~^0.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43325~^~207~^4.00^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43325~^~255~^65.80^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~303~^1.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~309~^2.63^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~323~^0.28^0^^~4~^~BFSN~^~10183~^^^^^^^^^~01/01/2003~ -~43325~^~418~^0.68^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43325~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43326~^~203~^22.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~204~^8.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43326~^~207~^4.00^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~43326~^~255~^65.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43326~^~303~^1.37^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~309~^2.55^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~323~^0.28^0^^~4~^~BFSN~^~10183~^^^^^^^^^~11/01/2006~ -~43326~^~418~^0.69^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43327~^~203~^20.90^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~204~^5.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~205~^1.50^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43327~^~207~^4.40^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43327~^~255~^67.70^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43327~^~303~^1.48^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~309~^2.88^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~323~^0.25^0^^~4~^~BFSN~^~10134~^^^^^^^^^~11/01/2006~ -~43327~^~418~^0.65^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43327~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43329~^~203~^0.90^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43329~^~204~^19.00^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43329~^~205~^23.90^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~43329~^~207~^2.00^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43329~^~255~^54.30^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43329~^~269~^4.34^2^^~1~^~A~^^^^3.29^5.38^^^^^~04/01/2007~ -~43329~^~303~^0.26^4^0.06^~6~^~JA~^^^2^0.20^0.32^1^-0.50^1.02^~2~^~02/01/2003~ -~43329~^~309~^0.18^4^1.0e-03^~6~^~JA~^^^2^0.18^0.18^1^0.17^0.18^~2~^~02/01/2003~ -~43329~^~323~^3.07^3^0.24^~1~^~A~^^^^2.59^3.35^^^^^~02/01/2003~ -~43329~^~418~^0.21^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43329~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43331~^~203~^1.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~204~^35.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~205~^2.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~207~^2.60^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43331~^~255~^58.70^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~269~^2.00^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~ -~43331~^~303~^0.27^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~309~^0.20^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~323~^4.00^0^^~4~^~BFZN~^~04017~^^^^^^^^^~03/01/2003~ -~43331~^~418~^0.09^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43331~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43340~^~203~^41.60^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~204~^29.99^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~205~^3.70^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43340~^~207~^2.51^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43340~^~255~^22.20^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~269~^0.85^0^^~4~^~BFNN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~303~^0.95^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~309~^3.19^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~323~^0.27^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2003~ -~43340~^~418~^1.40^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43340~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43344~^~203~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~204~^0.10^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~205~^37.60^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~43344~^~207~^0.30^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~255~^62.00^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~269~^29.41^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~303~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~309~^0.05^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~323~^0.21^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43344~^~418~^0.00^0^^~7~^^^^^^^^^^^~08/01/1985~ -~43344~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~43345~^~203~^0.25^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~204~^0.16^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~205~^91.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43345~^~207~^7.27^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~255~^1.32^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~269~^0.00^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43345~^~303~^0.08^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~309~^0.01^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43345~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43345~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43346~^~203~^0.50^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~204~^0.00^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~205~^23.17^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43346~^~207~^0.23^0^^~4~^~FLC~^^^^^^^^^^~06/01/2002~ -~43346~^~255~^76.10^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~269~^19.99^0^^~4~^~BFCN~^~19263~^^^^^^^^^~04/01/2005~ -~43346~^~303~^0.47^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~309~^0.02^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43346~^~323~^0.04^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43346~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43346~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43352~^~203~^12.40^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~204~^1.00^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~205~^2.70^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~43352~^~207~^0.40^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43352~^~255~^83.50^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~269~^2.70^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43352~^~303~^0.14^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~309~^0.38^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~323~^0.01^0^^~4~^~BFFN~^~01016~^^^^^^^^^~01/01/2003~ -~43352~^~418~^0.63^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43352~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43355~^~203~^0.30^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~204~^19.20^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~205~^16.00^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~207~^1.80^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~255~^62.70^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~269~^4.20^0^^~4~^~O~^~42138~^^^^^^^^^~04/01/2007~ -~43355~^~303~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~309~^0.11^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~323~^6.43^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~418~^0.06^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43355~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43364~^~203~^7.79^5^0.06^~1~^~A~^^^1^7.59^7.96^4^7.61^7.96^~2, 3~^~05/01/2005~ -~43364~^~204~^23.36^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~205~^65.32^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43364~^~207~^1.44^5^0.12^~1~^~A~^^^1^1.03^1.69^4^1.10^1.78^~2, 3~^~05/01/2005~ -~43364~^~209~^6.75^5^0.19^~1~^~A~^^^1^6.19^7.40^4^6.21^7.29^~2, 3~^~05/01/2005~ -~43364~^~210~^0.85^5^0.02^~1~^~A~^^^1^0.80^0.93^4^0.79^0.91^~2, 3~^~05/01/2005~ -~43364~^~211~^0.07^5^0.00^~1~^~A~^^^1^0.07^0.07^^^^~2, 3~^~05/01/2005~ -~43364~^~212~^0.07^5^0.00^~1~^~A~^^^1^0.07^0.07^^^^~2, 3~^~05/01/2005~ -~43364~^~213~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2005~ -~43364~^~214~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2005~ -~43364~^~255~^2.09^5^0.16^~1~^~A~^^^1^1.79^2.59^4^1.62^2.55^~2, 3~^~05/01/2005~ -~43364~^~269~^1.00^5^0.02^~1~^~A~^^^1^0.95^1.08^4^0.94^1.06^~2, 3~^~05/01/2005~ -~43364~^~287~^0.00^5^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~05/01/2005~ -~43364~^~303~^2.32^5^0.11^~1~^~A~^^^1^2.09^2.70^4^2.00^2.62^~2, 3~^~05/01/2005~ -~43364~^~309~^2.46^5^0.07^~1~^~A~^^^1^2.28^2.74^4^2.24^2.68^~2, 3~^~05/01/2005~ -~43364~^~323~^3.53^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43364~^~418~^0.36^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~43364~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43364~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43365~^~203~^0.60^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~204~^0.10^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~205~^4.59^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43365~^~207~^1.21^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~ -~43365~^~255~^93.50^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~269~^3.28^0^^~9~^~MC~^^^^^^^^^^~05/01/2015~ -~43365~^~303~^0.42^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~309~^0.20^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~323~^0.32^1^^~4~^~O~^^^^^^^^^^~01/01/2004~ -~43365~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43365~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43365~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43366~^~203~^27.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~204~^12.41^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43366~^~207~^0.70^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~43366~^~255~^59.50^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43366~^~303~^1.46^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~309~^2.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~323~^0.17^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43366~^~418~^0.34^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43366~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~203~^27.90^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~204~^9.80^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43367~^~207~^1.10^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~43367~^~255~^61.20^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~ -~43367~^~303~^2.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~309~^4.27^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~323~^0.62^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43367~^~418~^0.36^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43367~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43369~^~203~^0.64^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~204~^0.40^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~205~^10.68^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~207~^0.58^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~255~^87.63^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~269~^8.68^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~43369~^~303~^0.33^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~309~^0.16^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~323~^0.01^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~418~^0.06^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43378~^~203~^37.04^8^0.99^~1~^~A~^^^1^32.44^40.52^7^34.68^39.38^~2, 3~^~02/01/2003~ -~43378~^~204~^41.78^8^0.95^~1~^~A~^^^1^37.91^46.78^7^39.51^44.04^~2, 3~^~02/01/2003~ -~43378~^~205~^1.43^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~207~^7.43^8^0.16^~1~^~A~^^^1^6.67^7.92^7^7.04^7.81^~2, 3~^~02/01/2003~ -~43378~^~255~^12.32^8^0.35^~1~^~A~^^^1^11.18^14.47^7^11.48^13.16^~2, 3~^~02/01/2003~ -~43378~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43378~^~303~^1.44^8^0.08^~1~^~A~^^^1^1.20^1.92^7^1.23^1.64^~2, 3~^~02/01/2003~ -~43378~^~309~^3.50^8^0.08^~1~^~A~^^^1^3.04^3.81^7^3.29^3.70^~2, 3~^~02/01/2003~ -~43378~^~323~^0.31^12^^~1~^~A~^^^1^0.27^0.34^^^^~2, 3~^~02/01/2003~ -~43378~^~341~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~43378~^~342~^0.07^4^^~1~^~A~^^^1^0.06^0.07^^^^~2, 3~^~02/01/2003~ -~43378~^~343~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^~1~^~02/01/2003~ -~43378~^~344~^0.03^8^^~1~^~A~^^^1^0.00^0.06^^^^~2, 3~^~02/01/2003~ -~43378~^~345~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~43378~^~346~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~43378~^~347~^0.00^2^^~1~^~A~^^^1^0.00^0.00^^^^^~02/01/2003~ -~43378~^~418~^1.23^8^0.03^~1~^~A~^^^1^1.07^1.38^7^1.14^1.31^~2, 3~^~02/01/2003~ -~43378~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43378~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43382~^~203~^0.39^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~204~^0.13^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~205~^12.20^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~207~^0.15^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~255~^87.13^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~269~^12.10^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43382~^~303~^0.25^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~309~^0.10^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~323~^1.20^0^^~4~^~BFZN~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~418~^0.00^0^^~7~^^^^^^^^^^^~02/01/2007~ -~43382~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43382~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43384~^~203~^11.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~204~^28.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~205~^2.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~207~^3.10^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~43384~^~255~^54.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43384~^~303~^1.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~309~^2.00^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~323~^0.19^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43384~^~418~^1.41^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43384~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43387~^~203~^1.36^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~204~^0.30^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~205~^2.81^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~43387~^~207~^0.84^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1999~ -~43387~^~255~^94.69^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~269~^0.42^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~303~^1.51^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~309~^0.23^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~323~^1.47^0^^~4~^~BFSN~^~11569~^^^^^^^^^~01/01/2003~ -~43387~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2007~ -~43387~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43387~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43390~^~203~^28.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~204~^9.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43390~^~207~^0.50^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~43390~^~255~^61.70^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~303~^1.79^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~309~^2.96^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~323~^0.34^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43390~^~418~^0.35^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~43390~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43391~^~203~^29.30^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~204~^5.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43391~^~207~^0.80^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~43391~^~255~^64.90^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~303~^1.78^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~309~^3.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~323~^0.33^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~43391~^~418~^0.37^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43391~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43392~^~203~^2.70^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~204~^0.20^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~205~^25.61^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43392~^~207~^1.99^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43392~^~255~^69.50^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~269~^17.16^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43392~^~303~^1.69^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~309~^3.73^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~323~^0.50^0^^~4~^~O~^^^^^^^^^^~02/01/2003~ -~43392~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43392~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43392~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43393~^~203~^10.93^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~204~^2.06^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~205~^80.65^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~207~^3.22^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~43393~^~255~^3.14^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~269~^0.75^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~303~^3.87^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~309~^3.13^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~323~^1.09^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43393~^~418~^0.00^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43393~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43393~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43396~^~203~^10.90^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~204~^1.00^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~205~^3.00^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~207~^1.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43396~^~255~^83.50^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~269~^3.00^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43396~^~303~^0.10^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~309~^0.29^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~323~^0.01^0^^~4~^~BFFN~^~43273~^^^^^^^^^~01/01/2003~ -~43396~^~418~^0.49^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43396~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43398~^~203~^22.20^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~204~^31.19^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~205~^1.60^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~207~^2.21^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43398~^~255~^42.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~269~^0.45^0^^~4~^~BFNN~^~01042~^^^^^^^^^~02/01/2003~ -~43398~^~303~^0.39^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~309~^2.99^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~323~^0.27^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~ -~43398~^~418~^0.70^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43398~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43401~^~203~^1.96^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~204~^29.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43401~^~205~^59.94^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~43401~^~207~^2.84^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~255~^6.16^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~269~^59.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43401~^~303~^0.06^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~309~^0.02^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~323~^0.26^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43401~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43404~^~203~^0.10^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~204~^0.00^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~205~^4.70^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~207~^0.12^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~255~^95.20^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~269~^4.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43404~^~303~^0.06^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~309~^0.02^1^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~43404~^~323~^0.27^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43404~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43405~^~203~^28.40^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~204~^27.40^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~205~^3.40^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43405~^~207~^3.01^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43405~^~255~^37.80^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~269~^1.31^0^^~4~^~BFNN~^~01040~^^^^^^^^^~02/01/2003~ -~43405~^~303~^0.17^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~309~^3.90^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~323~^0.37^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43405~^~418~^1.68^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43405~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43406~^~203~^23.88^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~204~^0.90^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~205~^20.42^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43406~^~207~^13.90^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~209~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~210~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~211~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~212~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~213~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~214~^1.60^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~255~^40.90^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~269~^1.60^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~287~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~303~^4.04^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~309~^4.19^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~323~^0.00^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~418~^0.50^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43406~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43406~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43408~^~203~^0.00^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~204~^0.00^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~205~^11.86^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43408~^~207~^0.24^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~255~^87.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~269~^7.28^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~303~^0.00^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~309~^0.08^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~323~^0.09^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~ -~43408~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43408~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43408~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43410~^~203~^21.28^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~204~^12.77^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~205~^8.51^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43410~^~207~^1.00^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43410~^~255~^56.44^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43410~^~269~^0.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~303~^3.83^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~309~^0.65^0^^~1~^^^^^^^^^^^~02/01/2005~ -~43410~^~323~^1.95^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43410~^~418~^5.11^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43410~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43410~^~578~^5.11^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~ -~43417~^~203~^3.50^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~204~^2.10^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~205~^8.72^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43417~^~207~^0.46^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~255~^85.23^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~269~^1.18^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43417~^~303~^0.50^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~309~^0.87^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~323~^0.37^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~43417~^~418~^0.51^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43417~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43432~^~203~^4.34^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~204~^1.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~205~^11.53^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43432~^~207~^0.43^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~43432~^~255~^81.81^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~269~^0.37^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~303~^0.80^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~309~^0.48^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~323~^0.09^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43432~^~418~^0.23^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43432~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43441~^~203~^10.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~204~^2.80^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~205~^51.87^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~43441~^~207~^2.53^0^^~4~^~RA~^^^^^^^^^^~05/01/2005~ -~43441~^~255~^32.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~269~^0.40^0^^~4~^~RA~^^^^^^^^^^~05/01/2005~ -~43441~^~303~^2.78^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~309~^1.48^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~323~^0.63^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43441~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43441~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43447~^~203~^6.60^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~204~^33.40^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~205~^57.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43447~^~207~^1.60^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~255~^1.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~269~^1.41^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~303~^1.70^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~309~^0.85^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~323~^1.36^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43447~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43447~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43449~^~203~^4.80^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~204~^0.40^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~205~^20.49^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43449~^~207~^1.71^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~255~^72.60^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~269~^7.78^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~303~^0.29^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~309~^1.40^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~323~^0.15^0^^~4~^~BFSN~^~16006~^^^^^^^^^~04/01/2007~ -~43449~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43449~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43449~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43450~^~203~^1.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~204~^1.41^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~205~^24.11^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43450~^~207~^0.50^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~255~^72.57^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~269~^20.61^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~303~^0.28^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~309~^0.27^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~323~^0.06^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~418~^0.14^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43476~^~203~^3.50^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~204~^1.80^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~205~^15.96^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~43476~^~207~^1.24^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2003~ -~43476~^~255~^77.50^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~269~^1.24^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~43476~^~303~^1.06^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~309~^0.31^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~323~^0.31^0^^~4~^~O~^^^^^^^^^^~03/01/2003~ -~43476~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43476~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43476~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43479~^~203~^0.50^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~204~^0.00^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~205~^5.00^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43479~^~207~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~255~^78.40^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~303~^0.10^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~309~^0.02^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43479~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43479~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43479~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43483~^~203~^13.00^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~43483~^~204~^3.40^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~43483~^~205~^80.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~43483~^~207~^1.56^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~255~^2.50^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~269~^0.55^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~303~^2.81^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~309~^1.58^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~323~^0.66^0^^~4~^~BFZN~^~08147~^^^^^^^^^~03/01/2007~ -~43483~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43483~^~573~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43483~^~578~^0.00^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~ -~43495~^~203~^10.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~204~^3.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~205~^78.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~207~^5.53^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2014~ -~43495~^~255~^3.40^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43495~^~269~^22.00^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~303~^2.88^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~309~^2.20^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~323~^0.53^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~418~^3.00^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~43495~^~578~^3.00^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~43497~^~203~^5.50^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~204~^1.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~43497~^~207~^25.10^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43497~^~255~^68.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43497~^~303~^2.27^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~309~^0.42^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~323~^0.02^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43497~^~418~^0.02^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43497~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43506~^~203~^4.40^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~204~^20.20^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~205~^30.90^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~207~^1.19^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~255~^43.10^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~269~^30.00^0^^~4~^~O~^^^^^^^^^^~03/01/2011~ -~43506~^~303~^0.72^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~309~^0.63^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~323~^0.42^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~418~^0.38^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~573~^0.00^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43506~^~578~^0.00^0^^~4~^~BFZN~^~42074~^^^^^^^^^~03/01/2011~ -~43507~^~203~^12.00^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~204~^28.51^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~205~^1.80^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43507~^~207~^0.99^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~43507~^~255~^56.70^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~43507~^~303~^1.43^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~309~^2.17^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~323~^0.17^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~ -~43507~^~418~^1.54^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43507~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43514~^~203~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~2, 3~^~04/01/2005~ -~43514~^~204~^0.00^1^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~43514~^~205~^5.92^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~43514~^~207~^0.06^3^0.01^~1~^~A~^^^1^0.04^0.08^2^5.0e-03^0.10^~2, 3~^~04/01/2005~ -~43514~^~210~^0.70^3^0.01^~1~^~A~^^^1^0.68^0.73^2^0.64^0.76^~2, 3~^~04/01/2005~ -~43514~^~211~^0.47^3^0.02^~1~^~A~^^^1^0.42^0.50^2^0.36^0.57^~2, 3~^~04/01/2005~ -~43514~^~212~^0.34^3^7.0e-03^~1~^~A~^^^1^0.33^0.35^2^0.31^0.37^~2, 3~^~04/01/2005~ -~43514~^~213~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~214~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~255~^94.03^2^^~1~^~A~^^^1^94.01^94.04^1^^^^~04/01/2005~ -~43514~^~269~^1.52^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~43514~^~303~^0.67^3^0.27^~1~^~A~^^^1^0.17^1.10^2^-0.49^1.83^~2, 3~^~04/01/2005~ -~43514~^~309~^0.47^3^0.21^~1~^~A~^^^1^0.07^0.81^2^-0.44^1.39^~1, 2, 3~^~04/01/2005~ -~43514~^~323~^0.00^0^^~4~^~BFSN~^~14429~^^^^^^^^^~02/01/2003~ -~43514~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43523~^~203~^0.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~204~^0.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~205~^16.23^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43523~^~207~^0.37^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~255~^81.80^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~269~^11.74^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43523~^~303~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~309~^0.11^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~323~^0.13^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43523~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43523~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43523~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43528~^~203~^5.16^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~204~^4.52^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~205~^19.88^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~207~^0.60^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43528~^~209~^0.00^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~255~^69.84^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~269~^8.33^0^^~4~^~O~^^^^^^^^^^~06/01/2014~ -~43528~^~303~^1.79^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~309~^1.51^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~323~^1.34^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~43528~^~418~^0.60^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~43528~^~573~^1.34^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43528~^~578~^0.60^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43529~^~203~^6.70^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~204~^2.40^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~205~^86.89^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43529~^~207~^0.81^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~255~^3.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~269~^3.22^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~303~^37.00^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~309~^1.40^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~323~^0.22^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43529~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43529~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43529~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43535~^~203~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~204~^0.10^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~205~^11.20^0^^~9~^^^^^^^^^^^~03/01/2005~ -~43535~^~207~^0.36^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43535~^~255~^88.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~269~^10.50^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~43535~^~303~^0.35^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~309~^0.03^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~323~^0.02^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43535~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43535~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43535~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43536~^~203~^0.90^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~204~^0.18^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~205~^17.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43536~^~207~^0.45^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~255~^80.87^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~269~^11.11^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~43536~^~303~^0.40^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~309~^0.18^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~323~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43536~^~418~^0.43^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43536~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43537~^~203~^0.50^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~204~^0.70^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~205~^17.05^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43537~^~207~^0.35^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~255~^81.40^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~269~^13.62^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~43537~^~303~^0.20^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~309~^0.14^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~323~^0.40^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~43537~^~418~^0.43^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43537~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43539~^~203~^1.10^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~204~^0.52^0^^~4~^~T~^^^^^^^^^^~06/01/2008~ -~43539~^~205~^17.35^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~43539~^~207~^0.33^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~255~^80.70^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~269~^12.20^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~43539~^~303~^0.14^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~309~^0.26^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~323~^0.02^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~43539~^~418~^0.13^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43539~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43541~^~203~^4.72^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~204~^16.98^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~205~^19.78^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~43541~^~207~^1.00^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~255~^57.52^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~ -~43541~^~269~^17.35^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~43541~^~303~^1.02^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~309~^0.64^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~323~^0.46^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~418~^0.18^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43541~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43543~^~203~^1.60^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43543~^~204~^2.00^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43543~^~205~^5.30^0^^~8~^^^^^^^^^^^~05/01/2005~ -~43543~^~207~^1.10^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43543~^~255~^90.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~269~^5.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~43543~^~303~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~309~^0.10^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43543~^~418~^0.00^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43543~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43544~^~203~^6.60^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~204~^0.90^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~205~^88.50^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~43544~^~207~^2.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43544~^~255~^2.00^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~43544~^~269~^1.35^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~303~^9.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~43544~^~309~^3.30^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~43544~^~323~^0.13^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/1989~ -~43544~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~578~^0.00^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~43546~^~203~^1.00^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~204~^0.20^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~205~^21.34^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43546~^~207~^0.76^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~255~^76.70^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~269~^11.36^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~ -~43546~^~303~^0.30^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~309~^0.05^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~323~^0.25^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43546~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43546~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43546~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~43550~^~203~^0.30^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~204~^0.20^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~205~^16.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43550~^~207~^0.29^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~255~^83.10^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~269~^14.66^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43550~^~303~^0.10^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~309~^0.05^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43550~^~418~^0.00^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43550~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43550~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43566~^~203~^8.70^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~204~^15.20^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~205~^73.40^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43566~^~207~^1.85^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~43566~^~255~^1.30^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~269~^0.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~303~^1.63^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~309~^1.15^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~323~^3.53^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43566~^~418~^0.06^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43566~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43570~^~203~^7.12^6^0.06^~1~^~A~^^^1^6.94^7.37^5^6.96^7.28^~2, 3~^~05/01/2012~ -~43570~^~204~^5.46^6^0.26^~1~^~A~^^^1^4.61^6.44^5^4.77^6.14^~2, 3~^~05/01/2012~ -~43570~^~205~^81.19^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~207~^1.22^6^0.01^~1~^~A~^^^1^1.18^1.28^5^1.17^1.26^~2, 3~^~05/01/2012~ -~43570~^~209~^52.93^3^0.24^~1~^~A~^^^1^52.60^53.40^2^51.89^53.96^~2, 3~^~05/01/2012~ -~43570~^~210~^16.67^3^0.24^~1~^~A~^^^1^16.20^17.00^2^15.63^17.70^~2, 3~^~05/01/2012~ -~43570~^~211~^0.90^3^0.00^~1~^~A~^^^1^0.90^0.90^^^^~2, 3~^~05/01/2012~ -~43570~^~212~^0.57^3^0.03^~1~^~A~^^^1^0.50^0.60^2^0.42^0.71^~2, 3~^~05/01/2012~ -~43570~^~213~^0.16^3^0.04^~1~^~A~^^^1^0.07^0.20^2^-0.02^0.33^~1, 2, 3~^~05/01/2012~ -~43570~^~214~^1.50^3^0.05^~1~^~A~^^^1^1.40^1.60^2^1.25^1.74^~2, 3~^~05/01/2012~ -~43570~^~255~^5.00^6^0.27^~1~^~A~^^^1^4.34^6.23^5^4.28^5.71^~2, 3~^~05/01/2012~ -~43570~^~269~^19.79^3^0.29^~1~^~A~^^^1^19.20^20.10^2^18.51^21.06^~2, 3~^~05/01/2012~ -~43570~^~287~^0.00^3^0.00^~1~^~A~^^^1^0.00^0.00^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~303~^34.82^6^2.10^~1~^~A~^^^1^24.80^39.40^5^29.40^40.22^~2, 3~^~05/01/2012~ -~43570~^~309~^5.03^6^0.11^~1~^~A~^^^1^4.78^5.50^5^4.73^5.33^~2, 3~^~05/01/2012~ -~43570~^~323~^1.22^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~341~^0.09^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~342~^1.60^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~343~^0.06^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~344~^0.51^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~345~^0.65^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~346~^0.26^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~347~^0.03^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~418~^9.67^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~43570~^~578~^9.67^0^^~4~^~NR~^^^^^^^^^^~05/01/2012~ -~43572~^~203~^12.60^0^^~9~^^^^^^^^^^^~04/01/2007~ -~43572~^~204~^9.50^0^^~9~^^^^^^^^^^^~04/01/2007~ -~43572~^~205~^73.39^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43572~^~207~^1.71^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~255~^2.80^0^^~9~^^^^^^^^^^^~04/01/2007~ -~43572~^~269~^0.54^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~303~^2.28^0^^~9~^^^^^^^^^^^~04/01/2007~ -~43572~^~309~^3.83^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~323~^5.01^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43572~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2007~ -~43572~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43572~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43585~^~203~^0.50^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~204~^0.20^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~205~^17.18^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43585~^~207~^0.52^0^^~4~^~BFSN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~255~^81.60^0^^~1~^^^^^^^^^^^~05/01/2005~ -~43585~^~269~^14.87^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2007~ -~43585~^~303~^0.17^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~309~^0.08^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~323~^0.79^0^^~4~^~BFNN~^~09096~^^^^^^^^^~03/01/2003~ -~43585~^~418~^0.00^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43585~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43585~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43589~^~203~^28.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~204~^5.10^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~205~^3.40^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~207~^3.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~43589~^~255~^59.60^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~269~^1.33^0^^~4~^~BFNN~^~01040~^^^^^^^^^~02/01/2003~ -~43589~^~303~^0.17^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~309~^3.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~323~^0.07^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~ -~43589~^~418~^1.68^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43589~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43595~^~203~^4.40^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43595~^~204~^7.50^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43595~^~205~^72.80^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43595~^~207~^0.80^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~255~^14.50^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~269~^35.10^0^^~4~^~T~^^^^^^^^^^~03/01/2009~ -~43595~^~303~^4.86^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~309~^4.10^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~323~^0.76^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~43595~^~418~^0.00^0^^~7~^^^^^^^^^^^~04/01/2005~ -~43595~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43595~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43597~^~203~^27.50^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~204~^17.10^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~205~^3.10^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43597~^~207~^2.40^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43597~^~255~^49.90^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~269~^1.23^0^^~4~^~BFNN~^~01026~^^^^^^^^^~02/01/2009~ -~43597~^~303~^0.25^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~309~^3.13^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~323~^0.15^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~ -~43597~^~418~^0.92^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43597~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~43598~^~203~^0.00^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~204~^77.80^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~205~^0.30^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~43598~^~207~^0.40^0^^~4~^~O~^^^^^^^^^^~03/01/2005~ -~43598~^~255~^21.70^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~269~^0.30^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43598~^~303~^0.23^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~309~^0.13^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~323~^11.79^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~ -~43598~^~418~^0.00^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~43598~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~44005~^~203~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~204~^100.00^0^^~1~^^^^^^^^^^^~12/01/2006~ -~44005~^~205~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~207~^0.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~44005~^~255~^0.00^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~303~^0.13^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~309~^0.02^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~323~^14.78^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~418~^0.00^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44005~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44018~^~203~^0.00^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~204~^0.00^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~205~^76.10^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~44018~^~207~^0.00^0^^~4~^~BFSN~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~255~^23.90^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~269~^76.00^0^^~4~^~NR~^~19351~^^^^^^^^^~02/01/2003~ -~44018~^~303~^0.11^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~309~^0.09^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~323~^0.00^0^^~4~^~BFSN~^~19351~^^^^^^^^^~09/01/2004~ -~44018~^~418~^0.00^0^^~7~^^^^^^^^^^^~09/01/2004~ -~44018~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~44018~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~44061~^~203~^5.30^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~204~^2.40^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~205~^78.20^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44061~^~207~^9.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~44061~^~255~^4.20^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~269~^0.70^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~303~^3.11^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~309~^0.41^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~323~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~418~^0.01^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44074~^~203~^0.00^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~204~^0.00^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~205~^15.38^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44074~^~207~^0.22^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~44074~^~255~^84.40^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~269~^15.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44074~^~303~^0.30^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~309~^0.05^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44074~^~418~^0.00^0^^~7~^^^^^^^^^^^~01/01/1986~ -~44074~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44074~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~44110~^~203~^0.30^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~204~^0.03^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~205~^46.10^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~207~^0.08^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~255~^53.00^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~269~^45.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~44110~^~303~^0.18^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~309~^0.03^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~323~^0.00^0^^~4~^~BFSN~^~19300~^^^^^^^^^~02/01/2003~ -~44110~^~418~^0.00^0^^~7~^^^^^^^^^^^~06/01/2005~ -~44110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44158~^~203~^0.41^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~204~^0.20^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~205~^44.38^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44158~^~207~^0.35^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~255~^54.66^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~269~^37.75^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~44158~^~303~^0.80^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~309~^0.10^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~323~^0.23^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~418~^0.00^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~573~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~44158~^~578~^0.00^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~44203~^~203~^0.08^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~204~^0.01^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~205~^71.60^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44203~^~207~^0.07^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~255~^28.24^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~269~^24.53^2^^~8~^~LC~^^^1^9.60^39.45^1^^^^~06/01/2014~ -~44203~^~303~^0.04^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~309~^0.02^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~323~^0.02^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~418~^0.00^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~44203~^~573~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~578~^0.00^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44258~^~203~^10.08^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~44258~^~204~^3.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~205~^74.42^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44258~^~207~^5.70^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~44258~^~255~^6.80^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~269~^0.70^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~303~^3.87^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~309~^1.49^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~323~^0.02^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~418~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44259~^~203~^1.60^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~204~^0.10^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~205~^86.04^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~44259~^~207~^1.86^0^^~4~^~O~^~44260~^^^^^^^^^~05/01/2005~ -~44259~^~255~^10.40^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~269~^2.90^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~44259~^~303~^0.05^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~309~^0.19^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~323~^0.05^0^^~4~^~BFSN~^~44260~^^^^^^^^^~03/01/2003~ -~44259~^~418~^0.00^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44259~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~44260~^~203~^0.81^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~204~^0.90^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~205~^84.66^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~44260~^~207~^6.80^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~44260~^~255~^6.84^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~269~^0.90^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~303~^0.38^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~309~^0.10^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~323~^0.08^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~418~^0.05^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~573~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~578~^0.00^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~48052~^~203~^75.16^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~204~^1.85^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~205~^13.79^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~48052~^~207~^1.00^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~255~^8.20^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~303~^5.20^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~48052~^~309~^0.85^0^^~4~^~BFZN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~323~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~418~^0.00^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~48052~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~48052~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~80200~^~203~^16.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~204~^0.30^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~80200~^~207~^1.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~80200~^~255~^81.90^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~80200~^~303~^1.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~309~^1.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~323~^1.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~80200~^~418~^0.40^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~80200~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~83110~^~203~^18.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~204~^25.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~83110~^~207~^13.40^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~83110~^~255~^43.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~83110~^~303~^1.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~309~^1.10^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~323~^2.38^0^^~4~^~BFSN~^~15046~^^^^^^^^^~02/01/2003~ -~83110~^~418~^12.00^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~83110~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~90240~^~203~^20.54^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~204~^0.84^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~205~^5.41^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~207~^2.97^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~209~^3.69^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~210~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~211~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~212~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~213~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~214~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~255~^70.25^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~269~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~287~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~303~^0.58^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~309~^1.55^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~323~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~341~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~342~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~343~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~344~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~345~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~346~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~347~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~418~^2.15^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~573~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~578~^0.00^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90480~^~203~^0.00^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~204~^0.00^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~205~^73.14^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~ -~90480~^~207~^0.86^0^^~4~^~O~^~19350~^^^^^^^^^~05/01/2012~ -~90480~^~255~^26.00^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~269~^73.20^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~ -~90480~^~303~^3.60^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~309~^0.19^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~323~^0.00^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~418~^0.00^0^^~7~^^^^^^^^^^^~10/01/2006~ -~90480~^~573~^0.00^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90480~^~578~^0.00^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~ -~90560~^~203~^16.10^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~204~^1.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~205~^2.00^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~90560~^~207~^1.30^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~90560~^~255~^79.20^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~90560~^~303~^3.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~309~^1.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~323~^5.00^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~90560~^~418~^0.50^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~90560~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~93600~^~203~^19.80^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~204~^0.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~205~^0.00^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~93600~^~207~^1.20^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~93600~^~255~^78.50^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~269~^0.00^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~93600~^~303~^1.40^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~309~^1.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~323~^0.50^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~93600~^~418~^1.00^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~573~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~93600~^~578~^0.00^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~01001~^~312~^0.000^18^0.000^~1~^~A~^^^7^0.000^0.000^^^^~2, 3~^~03/01/2003~ -~01001~^~315~^0.000^18^0.000^~1~^~A~^^^7^0.000^0.000^^^^~2, 3~^~11/01/2002~ -~01001~^~404~^0.005^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~405~^0.034^9^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~406~^0.042^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~410~^0.110^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01001~^~415~^0.003^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~501~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~502~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~503~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~504~^0.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~505~^0.067^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~506~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~507~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~508~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~509~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~510~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~511~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~512~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~513~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~514~^0.064^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~515~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~516~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~517~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~518~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01001~^~605~^3.278^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~606~^51.368^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~607~^3.226^3^0.120^~1~^~A~^^^1^3.104^3.466^2^2.710^3.741^~2, 3~^~02/01/2004~ -~01001~^~608~^2.007^3^0.038^~1~^~A~^^^1^1.953^2.080^2^1.845^2.170^~2, 3~^~02/01/2004~ -~01001~^~609~^1.190^3^0.016^~1~^~A~^^^1^1.161^1.215^2^1.122^1.257^~2, 3~^~02/01/2004~ -~01001~^~610~^2.529^3^0.033^~1~^~A~^^^1^2.491^2.595^2^2.385^2.672^~2, 3~^~02/01/2004~ -~01001~^~611~^2.587^3^0.046^~1~^~A~^^^1^2.508^2.667^2^2.389^2.784^~2, 3~^~02/01/2004~ -~01001~^~612~^7.436^3^0.020^~1~^~A~^^^1^7.409^7.475^2^7.352^7.521^~2, 3~^~02/01/2004~ -~01001~^~613~^21.697^3^0.270^~1~^~A~^^^1^21.272^22.197^2^20.537^22.857^~2, 3~^~02/01/2004~ -~01001~^~614~^9.999^3^0.096^~1~^~A~^^^1^9.814^10.137^2^9.586^10.412^~2, 3~^~02/01/2004~ -~01001~^~615~^0.138^3^0.002^~1~^~A~^^^1^0.135^0.142^2^0.129^0.146^~2, 3~^~02/01/2004~ -~01001~^~617~^19.961^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01001~^~618~^2.728^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01001~^~619~^0.315^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01001~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~626~^0.961^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01001~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~628~^0.100^3^0.009^~1~^~A~^^^1^0.084^0.114^2^0.063^0.137^~2, 3~^~02/01/2004~ -~01001~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01001~^~645~^21.021^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~646~^3.043^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~653~^0.560^3^0.015^~1~^~A~^^^1^0.530^0.580^2^0.494^0.625^~2, 3~^~02/01/2004~ -~01001~^~663~^2.982^3^0.112^~1~^~A~^^^1^2.763^3.128^2^2.501^3.463^~2, 3~^~02/01/2004~ -~01001~^~666~^0.296^3^0.048^~1~^~A~^^^1^0.201^0.359^2^0.089^0.503^~2, 3~^~02/01/2004~ -~01001~^~670~^0.267^3^0.017^~1~^~A~^^^1^0.241^0.299^2^0.194^0.340^~2, 3~^~02/01/2004~ -~01001~^~673~^0.961^3^0.008^~1~^~A~^^^1^0.946^0.972^2^0.928^0.993^~2, 3~^~02/01/2004~ -~01001~^~674~^16.978^3^0.397^~1~^~A~^^^1^16.206^17.523^2^15.271^18.686^~2, 3~^~02/01/2004~ -~01001~^~675~^2.166^3^0.024^~1~^~A~^^^1^2.126^2.208^2^2.064^2.268^~2, 3~^~02/01/2004~ -~01001~^~693~^2.982^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~695~^0.296^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01001~^~851~^0.315^3^0.013^~1~^~A~^^^1^0.289^0.330^2^0.259^0.371^~2, 3~^~02/01/2004~ -~01002~^~312~^0.010^9^0.001^~1~^~A~^^^1^0.009^0.016^3^0.008^0.012^~1, 2, 3~^~02/01/2015~ -~01002~^~315~^0.001^9^0.000^~1~^~A~^^^1^0.001^0.001^3^0.001^0.001^~1, 2, 3~^~02/01/2015~ -~01002~^~404~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~405~^0.064^6^0.019^~1~^~A~^^^1^0.040^0.150^3^0.001^0.128^~2, 3~^~02/01/2015~ -~01002~^~406~^0.022^6^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~410~^0.097^4^0.000^~1~^~A~^^^1^0.090^0.100^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~415~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^1^0.004^0.012^~2, 3~^~02/01/2015~ -~01002~^~501~^0.012^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~502~^0.038^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~503~^0.051^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~504~^0.083^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~505~^0.067^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~506~^0.021^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~507~^0.008^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~508~^0.041^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~509~^0.041^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~510~^0.057^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~511~^0.031^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~512~^0.023^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~513~^0.029^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~514~^0.064^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~515~^0.178^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~516~^0.018^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~517~^0.082^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~518~^0.046^0^^~1~^~A~^~01002~^^^^^^^^^~11/01/1976~ -~01002~^~605~^2.669^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~606~^45.390^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~607~^1.635^9^0.005^~1~^~A~^^^1^1.592^1.668^3^1.616^1.654^~2, 3~^~02/01/2015~ -~01002~^~608~^1.373^9^0.004^~1~^~A~^^^1^1.344^1.398^5^1.363^1.384^~2, 3~^~02/01/2015~ -~01002~^~609~^0.858^9^0.005^~1~^~A~^^^1^0.830^0.878^6^0.847^0.870^~2, 3~^~02/01/2015~ -~01002~^~610~^2.039^9^0.016^~1~^~A~^^^1^1.934^2.097^6^1.998^2.079^~2, 3~^~02/01/2015~ -~01002~^~611~^2.354^9^0.019^~1~^~A~^^^1^2.249^2.418^4^2.298^2.411^~2, 3~^~02/01/2015~ -~01002~^~612~^7.515^9^0.034^~1~^~A~^^^1^7.322^7.617^1^7.283^7.747^~2, 3~^~02/01/2015~ -~01002~^~613~^20.531^9^0.139^~1~^~A~^^^1^19.678^21.085^2^19.839^21.223^~2, 3~^~02/01/2015~ -~01002~^~614~^7.649^9^0.098^~1~^~A~^^^1^7.305^8.320^3^7.324^7.974^~2, 3~^~02/01/2015~ -~01002~^~615~^0.106^9^0.002^~1~^~A~^^^1^0.100^0.116^5^0.102^0.110^~2, 3~^~02/01/2015~ -~01002~^~617~^17.370^9^0.130^~1~^~AS~^^^1^16.875^18.053^1^16.184^18.555^~2, 3~^~02/01/2015~ -~01002~^~618~^2.713^9^0.045^~1~^~AS~^^^1^2.532^2.929^1^2.369^3.058^~2, 3~^~02/01/2015~ -~01002~^~619~^0.298^9^0.003^~1~^~AS~^^^1^0.259^0.327^6^0.290^0.306^~2, 3~^~02/01/2015~ -~01002~^~620~^0.119^9^0.002^~1~^~A~^^^1^0.110^0.135^6^0.114^0.123^~2, 3~^~02/01/2015~ -~01002~^~621~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~01002~^~624~^0.032^9^0.003^~1~^~A~^^^1^0.000^0.038^5^0.025^0.039^~1, 2, 3~^~02/01/2015~ -~01002~^~625~^0.781^9^0.012^~1~^~A~^^^1^0.708^0.842^5^0.750^0.813^~2, 3~^~02/01/2015~ -~01002~^~626~^1.417^9^0.028^~1~^~AS~^^^1^1.148^1.570^6^1.347^1.486^~2, 3~^~02/01/2015~ -~01002~^~627~^0.003^9^0.002^~1~^~A~^^^1^0.000^0.011^3^-0.002^0.008^~1, 2, 3~^~02/01/2015~ -~01002~^~628~^0.147^9^0.002^~1~^~A~^^^1^0.137^0.160^4^0.141^0.154^~2, 3~^~02/01/2015~ -~01002~^~629~^0.022^9^0.001^~1~^~A~^^^1^0.016^0.026^2^0.018^0.026^~2, 3~^~02/01/2015~ -~01002~^~630~^0.005^9^0.000^~1~^~AS~^^^1^0.003^0.007^1^0.002^0.007^~2, 3~^~02/01/2015~ -~01002~^~631~^0.045^9^0.000^~1~^~A~^^^1^0.042^0.047^2^0.044^0.046^~2, 3~^~02/01/2015~ -~01002~^~645~^19.874^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~646~^3.331^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~652~^0.801^9^0.009^~1~^~A~^^^1^0.762^0.839^2^0.762^0.841^~2, 3~^~02/01/2015~ -~01002~^~653~^0.476^9^0.004^~1~^~A~^^^1^0.457^0.490^2^0.461^0.491^~2, 3~^~02/01/2015~ -~01002~^~654~^0.021^9^0.000^~1~^~A~^^^1^0.018^0.022^6^0.020^0.021^~2, 3~^~02/01/2015~ -~01002~^~662~^0.246^9^0.004^~1~^~A~^^^1^0.226^0.268^4^0.236^0.257^~2, 3~^~02/01/2015~ -~01002~^~663~^1.911^9^0.035^~1~^~A~^^^1^1.795^2.108^1^1.600^2.222^~2, 3~^~02/01/2015~ -~01002~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~665~^0.503^9^0.009^~1~^~A~^^^1^0.473^0.557^1^0.444^0.562^~2, 3~^~02/01/2015~ -~01002~^~670~^0.413^9^0.007^~1~^~A~^^^1^0.388^0.467^5^0.395^0.430^~2, 3~^~02/01/2015~ -~01002~^~671~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.004^6^0.001^0.003^~1, 2, 3~^~02/01/2015~ -~01002~^~672~^0.016^9^0.000^~1~^~A~^^^1^0.015^0.018^5^0.015^0.016^~2, 3~^~02/01/2015~ -~01002~^~673~^1.170^9^0.029^~1~^~A~^^^1^0.908^1.321^6^1.098^1.242^~2, 3~^~02/01/2015~ -~01002~^~674~^15.459^9^0.100^~1~^~A~^^^1^15.080^15.945^1^14.790^16.128^~2, 3~^~02/01/2015~ -~01002~^~675~^1.798^9^0.036^~1~^~A~^^^1^1.663^1.945^2^1.639^1.956^~2, 3~^~02/01/2015~ -~01002~^~676~^0.005^9^0.000^~1~^~A~^^^1^0.003^0.007^1^0.002^0.007^~2, 3~^~02/01/2015~ -~01002~^~685~^0.005^9^0.001^~1~^~A~^^^1^0.002^0.008^4^0.003^0.007^~1, 2, 3~^~02/01/2015~ -~01002~^~687~^0.152^9^0.003^~1~^~A~^^^1^0.140^0.168^3^0.144^0.161^~2, 3~^~02/01/2015~ -~01002~^~689~^0.086^9^0.001^~1~^~AS~^^^1^0.081^0.096^6^0.084^0.088^~2, 3~^~02/01/2015~ -~01002~^~693~^2.157^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~695~^0.511^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01002~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01002~^~851~^0.285^9^0.003^~1~^~A~^^^1^0.248^0.313^6^0.278^0.292^~2, 3~^~02/01/2015~ -~01002~^~852~^0.005^9^0.001^~1~^~A~^^^1^0.004^0.009^3^0.003^0.008^~2, 3~^~02/01/2015~ -~01002~^~853~^0.081^9^0.001^~1~^~A~^^^1^0.076^0.088^4^0.078^0.084^~2, 3~^~02/01/2015~ -~01002~^~856~^0.008^9^0.001^~1~^~A~^^^1^0.000^0.009^5^0.006^0.010^~1, 2, 3~^~02/01/2015~ -~01002~^~858~^0.020^9^0.001^~1~^~A~^^^1^0.017^0.024^2^0.018^0.023^~2, 3~^~02/01/2015~ -~01003~^~312~^0.001^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~315~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~404~^0.001^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~405~^0.005^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~406~^0.003^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~410~^0.010^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~415~^0.001^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~501~^0.004^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~502~^0.013^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~503~^0.017^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~504~^0.027^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~505~^0.022^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~506~^0.007^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~507~^0.003^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~508~^0.014^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~509~^0.014^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~510~^0.019^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~511~^0.010^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~512~^0.008^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~513~^0.010^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~514~^0.021^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~515~^0.059^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~516~^0.006^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~517~^0.027^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~518~^0.015^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01003~^~606~^61.924^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~607~^3.226^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~608~^1.910^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~609~^1.112^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~610~^2.495^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~611~^2.793^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~612~^10.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~613~^26.166^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~614~^12.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~617~^25.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~618~^2.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~619~^1.447^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~626~^2.228^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1995~ -~01003~^~645~^28.732^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01003~^~646~^3.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~312~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~315~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~404~^0.029^11^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~405~^0.382^16^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~406~^1.016^44^0.097^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~410~^1.729^16^0.178^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~415~^0.166^32^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~501~^0.312^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~502~^0.785^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~503~^1.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~504~^1.919^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~505~^1.852^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~506~^0.584^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~507~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~508~^1.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~509~^1.295^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~510~^1.556^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~511~^0.711^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~512~^0.758^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~513~^0.644^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~514~^1.436^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~515~^5.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~516~^0.406^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~517~^2.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~518~^1.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~606~^18.669^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~607~^0.658^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~608~^0.361^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~609~^0.247^10^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~610~^0.601^10^0.035^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~611~^0.491^10^0.074^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~612~^3.301^10^0.102^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~613~^9.153^10^0.296^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~614~^3.235^10^0.152^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~617~^6.622^10^0.175^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~618~^0.536^10^0.056^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~619~^0.264^9^0.030^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~626~^0.816^10^0.103^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01004~^~645~^7.778^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01004~^~646~^0.800^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~312~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~315~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~404~^0.014^6^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~405~^0.351^11^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~406~^0.118^22^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~410~^0.288^17^0.040^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~415~^0.065^34^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~501~^0.324^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~502~^0.882^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~503~^1.137^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~504~^2.244^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~505~^2.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~506~^0.565^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~507~^0.131^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~508~^1.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~509~^1.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~510~^1.472^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~511~^0.874^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~512~^0.823^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~513~^0.670^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~514~^1.588^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~515~^5.515^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~516~^0.437^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~517~^2.575^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~518~^1.289^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~606~^18.764^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~607~^0.914^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~608~^0.373^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~609~^0.299^7^0.011^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~610~^0.585^7^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~611~^0.482^7^0.071^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~612~^3.227^7^0.147^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~613~^8.655^7^0.366^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~614~^3.455^7^0.138^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~617~^7.401^7^0.245^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~618~^0.491^7^0.051^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~619~^0.293^7^0.040^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~626~^0.817^7^0.070^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01005~^~645~^8.598^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01005~^~646~^0.784^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~312~^0.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~315~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~404~^0.070^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~405~^0.520^3^0.191^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~406~^0.380^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~410~^0.690^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~415~^0.235^6^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~501~^0.322^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~502~^0.751^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~503~^1.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~504~^1.929^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~505~^1.851^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~506~^0.592^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~507~^0.114^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~508~^1.158^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~509~^1.200^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~510~^1.340^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~511~^0.735^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~512~^0.716^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~513~^0.859^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~514~^1.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~515~^4.387^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~516~^0.397^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~517~^2.459^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~518~^1.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01006~^~606~^17.410^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~607~^0.564^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~608~^0.323^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~609~^0.297^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~610~^0.673^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~611~^0.504^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~612~^3.065^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~613~^8.246^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~614~^2.880^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~617~^6.563^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~618~^0.513^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~619~^0.313^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01006~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~626~^1.007^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~645~^8.013^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01006~^~646~^0.826^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01007~^~312~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~404~^0.028^11^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~405~^0.488^13^0.036^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~406~^0.630^16^0.084^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~410~^1.364^16^0.493^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~415~^0.227^36^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~501~^0.307^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~502~^0.717^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~503~^0.968^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~504~^1.840^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~505~^1.766^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~506~^0.565^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~507~^0.109^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~508~^1.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~509~^1.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~510~^1.279^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~511~^0.701^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~512~^0.683^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~513~^0.819^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~514~^1.288^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~515~^4.187^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~516~^0.379^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~517~^2.346^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~518~^1.114^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~606~^15.259^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~607~^0.494^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~608~^0.283^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~609~^0.260^7^0.018^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~610~^0.590^7^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~611~^0.442^7^0.063^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~612~^2.686^7^0.086^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~613~^7.227^7^0.341^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~614~^2.524^7^0.166^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~617~^5.752^7^0.302^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~618~^0.450^7^0.041^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~619~^0.274^7^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~626~^0.883^7^0.056^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01007~^~645~^7.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01007~^~646~^0.724^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~312~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~315~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~404~^0.031^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~405~^0.450^3^0.064^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~406~^0.180^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~410~^0.190^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01008~^~415~^0.074^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~501~^0.324^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~502~^0.896^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~503~^1.563^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~504~^2.412^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~505~^2.095^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~506~^0.659^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~507~^0.126^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~508~^1.326^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~509~^1.216^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~510~^1.682^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~511~^0.952^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~512~^0.884^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~513~^0.711^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~514~^1.618^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~515~^6.160^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~516~^0.439^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~517~^2.838^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~518~^1.472^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~606~^18.584^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~607~^0.922^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~608~^0.466^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~609~^0.246^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~610~^0.529^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~611~^0.477^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~612~^2.934^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~613~^8.638^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~614~^3.531^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~617~^6.965^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~618~^0.508^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~619~^0.322^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~626~^0.885^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~645~^8.275^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01008~^~646~^0.830^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01009~^~312~^0.030^39^0.002^~1~^~A~^^^2^0.027^0.035^13^0.026^0.033^~2, 3~^~01/01/2017~ -~01009~^~315~^0.027^39^0.002^~1~^~A~^^^2^0.024^0.029^18^0.023^0.032^~2, 3~^~06/01/2015~ -~01009~^~404~^0.029^28^0.000^~1~^~A~^^^2^0.027^0.029^16^0.028^0.030^~2, 3~^~06/01/2015~ -~01009~^~405~^0.428^27^0.014^~1~^~A~^^^2^0.407^0.463^16^0.398^0.458^~2, 3~^~06/01/2015~ -~01009~^~406~^0.059^28^0.006^~1~^~A~^^^2^0.039^0.062^17^0.046^0.072^~2, 3~^~06/01/2015~ -~01009~^~410~^0.410^25^0.018^~1~^~A~^^^2^0.322^0.481^10^0.371^0.449^~2, 3~^~06/01/2015~ -~01009~^~415~^0.066^28^0.003^~1~^~A~^^^2^0.065^0.075^17^0.061^0.072^~2, 3~^~06/01/2015~ -~01009~^~501~^0.547^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~502~^1.044^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~503~^1.206^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~504~^1.939^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~505~^1.025^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~506~^0.547^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~507~^0.123^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~508~^1.074^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~509~^1.108^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~510~^1.404^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~511~^0.547^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~512~^0.547^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~513~^0.751^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~514~^1.734^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~515~^4.735^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~516~^0.547^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~517~^2.497^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~518~^0.780^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01009~^~606~^18.867^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01009~^~607~^0.634^40^0.005^~1~^~A~^^^2^0.624^0.675^13^0.623^0.645^~2, 3~^~01/01/2017~ -~01009~^~608~^0.539^45^0.004^~1~^~A~^^^2^0.532^0.565^22^0.531^0.547^~2, 3~^~01/01/2017~ -~01009~^~609~^0.337^40^0.004^~1~^~A~^^^2^0.335^0.361^13^0.329^0.345^~2, 3~^~01/01/2017~ -~01009~^~610~^0.820^40^0.008^~1~^~A~^^^2^0.815^0.857^13^0.802^0.838^~2, 3~^~01/01/2017~ -~01009~^~611~^0.935^40^0.009^~1~^~A~^^^2^0.931^0.967^14^0.915^0.954^~2, 3~^~01/01/2017~ -~01009~^~612~^3.005^40^0.028^~1~^~A~^^^2^2.989^3.103^17^2.946^3.065^~2, 3~^~01/01/2017~ -~01009~^~613~^8.625^40^0.053^~1~^~A~^^^2^8.573^8.705^19^8.515^8.735^~2, 3~^~01/01/2017~ -~01009~^~614~^3.394^40^0.044^~1~^~A~^^^2^3.295^3.547^16^3.300^3.487^~2, 3~^~01/01/2017~ -~01009~^~615~^0.048^40^0.001^~1~^~A~^^^2^0.047^0.049^20^0.046^0.050^~2, 3~^~06/01/2015~ -~01009~^~617~^7.403^40^0.062^~1~^~AS~^^^2^7.224^7.700^12^7.269^7.538^~2, 3~^~01/01/2017~ -~01009~^~618~^1.171^40^0.021^~1~^~AS~^^^2^1.137^1.228^14^1.127^1.215^~2, 3~^~01/01/2017~ -~01009~^~619~^0.114^40^0.004^~1~^~AS~^^^2^0.112^0.122^22^0.105^0.122^~2, 3~^~06/01/2015~ -~01009~^~620~^0.053^40^0.001^~1~^~A~^^^2^0.050^0.055^16^0.051^0.055^~2, 3~^~06/01/2015~ -~01009~^~621~^0.001^40^0.000^~1~^~A~^^^2^0.000^0.002^19^0.001^0.002^~2, 3~^~01/01/2017~ -~01009~^~624~^0.015^40^0.000^~1~^~A~^^^2^0.014^0.016^27^0.015^0.016^~2, 3~^~01/01/2017~ -~01009~^~625~^0.296^40^0.005^~1~^~A~^^^2^0.292^0.305^18^0.285^0.306^~2, 3~^~01/01/2017~ -~01009~^~626~^0.504^40^0.006^~1~^~AS~^^^2^0.492^0.506^20^0.492^0.516^~2, 3~^~01/01/2017~ -~01009~^~627~^0.000^40^0.000^~1~^~A~^^^2^0.000^0.001^9^0.000^0.001^~2, 3~^~01/01/2017~ -~01009~^~628~^0.065^40^0.001^~1~^~A~^^^2^0.061^0.065^20^0.063^0.066^~2, 3~^~06/01/2015~ -~01009~^~629~^0.010^40^0.001^~1~^~A~^^^2^0.010^0.010^19^0.009^0.011^~2, 3~^~06/01/2015~ -~01009~^~630~^0.001^40^0.000^~1~^~AS~^^^2^0.001^0.002^16^0.001^0.002^~2, 3~^~01/01/2017~ -~01009~^~631~^0.017^40^0.001^~1~^~A~^^^2^0.017^0.017^19^0.016^0.019^~2, 3~^~06/01/2015~ -~01009~^~645~^9.391^0^^~1~^^^^^^^^^^^~11/01/2016~ -~01009~^~646~^0.942^0^^~1~^^^^^^^^^^^~01/01/2017~ -~01009~^~652~^0.318^40^0.002^~1~^~A~^^^2^0.316^0.322^20^0.313^0.323^~2, 3~^~01/01/2017~ -~01009~^~653~^0.191^40^0.002^~1~^~A~^^^2^0.190^0.195^17^0.187^0.195^~2, 3~^~01/01/2017~ -~01009~^~654~^0.008^40^0.000^~1~^~A~^^^2^0.008^0.009^19^0.008^0.009^~2, 3~^~06/01/2015~ -~01009~^~662~^0.101^40^0.001^~1~^~A~^^^2^0.099^0.104^19^0.099^0.103^~2, 3~^~06/01/2015~ -~01009~^~663~^0.816^40^0.014^~1~^~A~^^^2^0.785^0.866^10^0.784^0.848^~2, 3~^~01/01/2017~ -~01009~^~664~^0.000^40^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~01009~^~665~^0.214^40^0.003^~1~^~A~^^^2^0.208^0.230^14^0.209^0.220^~2, 3~^~01/01/2017~ -~01009~^~670~^0.166^40^0.002^~1~^~A~^^^2^0.159^0.174^13^0.161^0.170^~2, 3~^~01/01/2017~ -~01009~^~671~^0.001^40^0.000^~1~^~A~^^^2^0.000^0.001^13^0.000^0.001^~2, 3~^~06/01/2015~ -~01009~^~672~^0.007^40^0.000^~1~^~A~^^^2^0.007^0.008^20^0.007^0.007^~2, 3~^~05/01/2014~ -~01009~^~673~^0.403^40^0.005^~1~^~A~^^^2^0.388^0.406^20^0.392^0.414^~2, 3~^~01/01/2017~ -~01009~^~674~^6.587^40^0.049^~1~^~A~^^^2^6.439^6.834^12^6.480^6.695^~2, 3~^~01/01/2017~ -~01009~^~675~^0.791^40^0.019^~1~^~A~^^^2^0.770^0.832^15^0.751^0.831^~2, 3~^~01/01/2017~ -~01009~^~676~^0.001^40^0.000^~1~^~A~^^^2^0.001^0.002^16^0.001^0.002^~2, 3~^~01/01/2017~ -~01009~^~685~^0.003^40^0.000^~1~^~A~^^^2^0.001^0.003^22^0.003^0.003^~2, 3~^~06/01/2015~ -~01009~^~687~^0.059^40^0.001^~1~^~A~^^^2^0.059^0.059^16^0.057^0.061^~2, 3~^~01/01/2017~ -~01009~^~689~^0.037^40^0.001^~1~^~AS~^^^2^0.036^0.038^16^0.036^0.038^~2, 3~^~05/01/2014~ -~01009~^~697~^0.000^40^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~01009~^~851~^0.108^40^0.004^~1~^~A~^^^2^0.107^0.117^22^0.100^0.117^~2, 3~^~01/01/2017~ -~01009~^~852~^0.001^40^0.000^~1~^~A~^^^2^0.000^0.002^21^0.000^0.001^~2, 3~^~05/01/2015~ -~01009~^~853~^0.036^40^0.001^~1~^~A~^^^2^0.036^0.037^18^0.035^0.038^~2, 3~^~05/01/2014~ -~01009~^~856~^0.002^40^0.000^~1~^~A~^^^2^0.002^0.003^19^0.001^0.003^~2, 3~^~01/01/2017~ -~01009~^~858~^0.009^40^0.000^~1~^~A~^^^2^0.008^0.009^21^0.008^0.009^~2, 3~^~05/01/2015~ -~01010~^~312~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~315~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~404~^0.046^11^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~405~^0.293^11^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~406~^0.080^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~410~^0.413^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~415~^0.074^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~501~^0.300^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~502~^0.832^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~503~^1.451^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~504~^2.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~505~^1.945^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~506~^0.612^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~507~^0.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~508~^1.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~509~^1.128^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~510~^1.560^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~511~^0.883^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~512~^0.821^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~513~^0.659^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~514~^1.502^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~515~^5.718^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~516~^0.403^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~517~^2.634^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~518~^1.366^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01010~^~606~^19.475^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~607~^0.966^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~608~^0.488^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~609~^0.258^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~610~^0.554^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~611~^0.500^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~612~^3.075^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~613~^9.052^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~614~^3.700^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~617~^7.299^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~618~^0.533^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~619~^0.337^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~626~^0.927^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~645~^8.671^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01010~^~646~^0.870^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01011~^~312~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~315~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~404~^0.015^8^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~405~^0.375^13^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~406~^0.093^9^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~410~^0.210^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~415~^0.079^7^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~501~^0.305^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~502~^0.845^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~503~^1.475^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~504~^2.275^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~505~^1.978^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~506~^0.622^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~507~^0.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~508~^1.251^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~509~^1.147^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~510~^1.586^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~511~^0.898^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~512~^0.834^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~513~^0.670^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~514~^1.527^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~515~^5.813^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~516~^0.410^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~517~^2.678^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~518~^1.389^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~606~^20.218^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~607~^1.041^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~608~^0.259^8^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~609~^0.324^8^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~610~^0.597^8^0.042^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~611~^0.422^8^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~612~^3.831^8^0.149^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~613~^8.232^8^0.361^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~614~^3.630^8^0.277^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~617~^7.813^8^0.335^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~618~^0.676^8^0.071^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~619~^0.277^8^0.049^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~626~^0.979^8^0.050^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01011~^~645~^9.280^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01011~^~646~^0.953^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01012~^~312~^0.029^3^0.011^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~315~^0.002^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~404~^0.027^3^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~405~^0.163^3^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~406~^0.099^3^0.004^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~410~^0.557^3^0.027^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~415~^0.046^3^0.002^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01012~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~502~^0.500^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~503~^0.591^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~504~^1.116^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~505~^0.934^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~506~^0.269^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~507~^0.066^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~508~^0.577^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~509~^0.604^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~510~^0.748^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~511~^0.497^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~512~^0.326^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~513~^0.384^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~514~^0.905^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~515~^2.603^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~516~^0.222^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~517~^1.229^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~518~^0.639^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01012~^~606~^1.718^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~607~^0.109^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~608~^0.025^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~609~^0.023^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~610~^0.064^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~611~^0.070^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~612~^0.263^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~613~^0.778^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~614~^0.345^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~617~^0.714^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~618~^0.105^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~619~^0.017^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~620~^0.000^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~621~^0.000^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~625~^0.017^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~626~^0.047^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~627~^0.000^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01012~^~629~^0.000^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01012~^~631~^0.000^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~645~^0.778^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~646~^0.123^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01012~^~652~^0.029^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01012~^~653~^0.012^0^^~4~^~BFFN~^~01015~^^^^^^^^^~05/01/2008~ -~01013~^~312~^0.040^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~315~^0.003^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~404~^0.033^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~405~^0.142^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~406~^0.150^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~410~^0.181^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~415~^0.068^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~501~^0.118^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~502~^0.471^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~503~^0.624^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~504~^1.091^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~505~^0.859^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~506~^0.320^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~507~^0.099^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~508~^0.572^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~509~^0.566^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~510~^0.657^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~511~^0.485^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~512~^0.353^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~513~^0.551^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~514~^0.719^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~515~^2.300^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~516~^0.231^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~517~^1.230^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~518~^0.596^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~606~^2.311^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~607~^0.123^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~608~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~609~^0.031^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~610~^0.070^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~611~^0.061^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~612~^0.401^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~613~^1.159^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~614~^0.438^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~617~^0.899^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~618~^0.088^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~619~^0.037^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~626~^0.137^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01013~^~645~^1.036^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01013~^~646~^0.124^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~01014~^~312~^0.030^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~315~^0.022^3^0.014^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~404~^0.023^3^0.004^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~405~^0.226^3^0.004^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~406~^0.144^3^0.013^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~410~^0.446^3^0.023^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~415~^0.016^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~501~^0.137^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~502~^0.465^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~503~^0.549^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~504~^1.037^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~505~^0.868^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~506~^0.250^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~507~^0.061^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~508~^0.536^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~509~^0.561^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~510~^0.695^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~511~^0.462^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~512~^0.303^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~513~^0.357^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~514~^0.841^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~515~^2.419^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~516~^0.206^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~517~^1.142^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~518~^0.594^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01014~^~606~^0.169^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~607~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2008~ -~01014~^~608~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2008~ -~01014~^~609~^0.005^7^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01014~^~610~^0.009^7^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01014~^~611~^0.006^7^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01014~^~612~^0.020^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~613~^0.070^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~614~^0.050^3^0.006^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~615~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~617~^0.067^3^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~618~^0.003^3^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~619~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~620~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~621~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~624~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~626~^0.012^7^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01014~^~627~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~628~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~629~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~630~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~631~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~645~^0.079^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~646~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~01014~^~652~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~653~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~654~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~671~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~672~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~687~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~689~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~857~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01014~^~858~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~01015~^~312~^0.033^15^0.003^~1~^~A~^^^1^0.025^0.072^3^0.022^0.043^~2, 3~^~05/01/2014~ -~01015~^~315~^0.015^15^0.000^~1~^~A~^^^1^0.015^0.015^6^0.015^0.015^~2, 3~^~05/01/2014~ -~01015~^~404~^0.020^8^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~05/01/2014~ -~01015~^~405~^0.251^8^0.001^~1~^~A~^^^1^0.190^0.300^3^0.247^0.255^~2, 3~^~05/01/2014~ -~01015~^~406~^0.103^8^0.000^~1~^~A~^^^1^0.060^0.120^^^^~2, 3~^~05/01/2014~ -~01015~^~410~^0.524^5^0.000^~1~^~A~^^^1^0.470^0.580^^^^~2, 3~^~05/01/2014~ -~01015~^~415~^0.057^8^0.000^~1~^~A~^^^1^0.054^0.069^1^0.055^0.059^~2, 3~^~05/01/2014~ -~01015~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~502~^0.470^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~503~^0.556^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~504~^1.049^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~505~^0.878^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~506~^0.253^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~507~^0.062^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~508~^0.543^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~509~^0.568^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~510~^0.703^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~511~^0.467^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~512~^0.306^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~513~^0.409^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01015~^~514~^0.963^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~01015~^~515~^2.446^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~516~^0.209^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~517~^1.155^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~518~^0.601^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01015~^~605~^0.067^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~606~^1.235^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~607~^0.040^15^0.001^~1~^~A~^^^1^0.033^0.051^7^0.037^0.043^~2, 3~^~05/01/2014~ -~01015~^~608~^0.034^15^0.001^~1~^~A~^^^1^0.031^0.042^7^0.033^0.035^~2, 3~^~05/01/2014~ -~01015~^~609~^0.027^15^0.000^~1~^~A~^^^1^0.019^0.085^7^0.026^0.028^~2, 3~^~05/01/2014~ -~01015~^~610~^0.060^15^0.001^~1~^~A~^^^1^0.050^0.077^8^0.057^0.064^~2, 3~^~05/01/2014~ -~01015~^~611~^0.061^15^0.001^~1~^~A~^^^1^0.056^0.074^9^0.059^0.063^~2, 3~^~05/01/2014~ -~01015~^~612~^0.199^15^0.003^~1~^~A~^^^1^0.177^0.236^7^0.192^0.206^~2, 3~^~05/01/2014~ -~01015~^~613~^0.561^15^0.008^~1~^~A~^^^1^0.480^0.670^7^0.543^0.579^~2, 3~^~05/01/2014~ -~01015~^~614~^0.218^15^0.005^~1~^~A~^^^1^0.180^0.297^6^0.206^0.230^~2, 3~^~05/01/2014~ -~01015~^~615~^0.003^15^0.000^~1~^~A~^^^1^0.002^0.004^8^0.003^0.003^~1, 2, 3~^~05/01/2014~ -~01015~^~617~^0.460^15^0.008^~1~^~AS~^^^1^0.400^0.575^6^0.440^0.480^~2, 3~^~05/01/2014~ -~01015~^~618~^0.070^15^0.002^~1~^~AS~^^^1^0.056^0.087^6^0.065^0.074^~2, 3~^~05/01/2014~ -~01015~^~619~^0.007^15^0.000^~1~^~AS~^^^1^0.006^0.009^5^0.007^0.008^~2, 3~^~05/01/2014~ -~01015~^~620~^0.003^15^0.000^~1~^~A~^^^1^0.002^0.005^8^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~01015~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~01015~^~624~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~01015~^~625~^0.020^15^0.000^~1~^~A~^^^1^0.015^0.022^8^0.019^0.020^~2, 3~^~05/01/2014~ -~01015~^~626~^0.030^15^0.000^~1~^~AS~^^^1^0.022^0.034^7^0.029^0.031^~2, 3~^~05/01/2014~ -~01015~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~01015~^~628~^0.003^15^0.000^~1~^~A~^^^1^0.002^0.005^10^0.003^0.003^~1, 2, 3~^~05/01/2014~ -~01015~^~629~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~01015~^~630~^0.000^15^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2008~ -~01015~^~631~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~01015~^~645~^0.516^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~646~^0.083^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~652~^0.021^15^0.000^~1~^~A~^^^1^0.018^0.025^8^0.021^0.022^~2, 3~^~05/01/2014~ -~01015~^~653~^0.010^15^0.000^~1~^~A~^^^1^0.009^0.012^8^0.010^0.011^~2, 3~^~05/01/2014~ -~01015~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~05/01/2008~ -~01015~^~662~^0.005^15^0.000^~1~^~A~^^^1^0.003^0.006^6^0.004^0.005^~2, 3~^~05/01/2014~ -~01015~^~663~^0.050^15^0.001^~1~^~A~^^^1^0.041^0.064^7^0.047^0.053^~2, 3~^~05/01/2014~ -~01015~^~664~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01015~^~665~^0.013^15^0.000^~1~^~A~^^^1^0.010^0.016^6^0.012^0.014^~2, 3~^~05/01/2014~ -~01015~^~670~^0.009^15^0.000^~1~^~A~^^^1^0.007^0.010^7^0.009^0.010^~2, 3~^~05/01/2014~ -~01015~^~671~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~01015~^~672~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.000^~1, 2, 3~^~05/01/2008~ -~01015~^~673~^0.025^15^0.000^~1~^~A~^^^1^0.019^0.029^6^0.024^0.026^~2, 3~^~05/01/2014~ -~01015~^~674~^0.410^15^0.007^~1~^~A~^^^1^0.359^0.511^7^0.393^0.428^~2, 3~^~05/01/2014~ -~01015~^~675~^0.047^15^0.002^~1~^~A~^^^1^0.039^0.065^6^0.043^0.051^~2, 3~^~05/01/2014~ -~01015~^~676~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01015~^~685~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01015~^~687~^0.004^15^0.000^~1~^~A~^^^1^0.000^0.004^9^0.003^0.004^~1, 2, 3~^~05/01/2014~ -~01015~^~689~^0.002^15^0.000^~1~^~AS~^^^1^0.002^0.004^8^0.002^0.003^~2, 3~^~05/01/2014~ -~01015~^~693~^0.054^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01015~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~01015~^~851~^0.007^15^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.008^~2, 3~^~05/01/2014~ -~01015~^~852~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01015~^~853~^0.002^15^0.000^~1~^~A~^^^1^0.002^0.004^8^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~01015~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01015~^~858~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~05/01/2008~ -~01016~^~312~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~315~^0.003^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~404~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~405~^0.165^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~406~^0.128^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~410~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~415~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~501~^0.138^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~502~^0.550^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~503~^0.728^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~504~^1.274^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~505~^1.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~506~^0.373^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~507~^0.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~508~^0.668^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~509~^0.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~510~^0.767^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~511~^0.565^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~512~^0.412^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~513~^0.643^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~514~^0.839^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~515~^2.684^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~516~^0.270^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~517~^1.435^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~518~^0.695^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~606~^0.645^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~607~^0.033^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~608~^0.007^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~609~^0.008^7^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~610~^0.019^7^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~611~^0.016^7^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~612~^0.107^7^0.011^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~613~^0.308^7^0.030^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~614~^0.116^7^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~617~^0.239^7^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~618~^0.022^7^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~619~^0.009^7^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~626~^0.036^7^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01016~^~645~^0.291^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01016~^~646~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01017~^~312~^0.018^12^0.000^~1~^~A~^^^1^0.018^0.019^10^0.018^0.018^~1, 2, 3~^~02/01/2015~ -~01017~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.011^0.011^10^0.011^0.011^~1, 2, 3~^~06/01/2008~ -~01017~^~404~^0.023^6^0.002^~1~^~A~^^^1^0.020^0.030^2^0.016^0.030^~2, 3~^~02/01/2015~ -~01017~^~405~^0.230^6^0.006^~1~^~A~^^^1^0.220^0.250^3^0.211^0.249^~2, 3~^~02/01/2015~ -~01017~^~406~^0.091^6^0.008^~1~^~A~^^^1^0.050^0.120^3^0.062^0.120^~2, 3~^~02/01/2015~ -~01017~^~410~^0.517^4^0.012^~1~^~A~^^^1^0.450^0.580^1^0.439^0.595^~2, 3~^~02/01/2015~ -~01017~^~415~^0.056^6^0.002^~1~^~A~^^^1^0.048^0.067^3^0.049^0.062^~2, 3~^~02/01/2015~ -~01017~^~501~^0.069^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~502~^0.233^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~503~^0.324^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~504~^0.657^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~505~^0.567^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~506~^0.191^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~507~^0.042^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~508~^0.291^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~509~^0.303^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~510~^0.395^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~511~^0.235^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~512~^0.175^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~513~^0.184^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~514~^0.514^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~515~^1.304^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~516~^0.142^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~517~^0.665^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~518~^0.374^0^^~1~^~A~^~01017~^^^^^^^^^~06/01/2008~ -~01017~^~605~^1.173^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~01017~^~606~^20.213^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~607~^0.718^11^0.006^~1~^~A~^^^1^0.677^0.757^9^0.704^0.731^~2, 3~^~02/01/2015~ -~01017~^~608~^0.592^11^0.004^~1~^~A~^^^1^0.562^0.624^6^0.581^0.603^~2, 3~^~02/01/2015~ -~01017~^~609~^0.366^11^0.003^~1~^~A~^^^1^0.345^0.388^6^0.359^0.373^~2, 3~^~02/01/2015~ -~01017~^~610~^0.868^11^0.008^~1~^~A~^^^1^0.810^0.924^8^0.850^0.886^~2, 3~^~02/01/2015~ -~01017~^~611~^1.004^11^0.009^~1~^~A~^^^1^0.933^1.070^8^0.983^1.026^~2, 3~^~02/01/2015~ -~01017~^~612~^3.275^11^0.029^~1~^~A~^^^1^3.073^3.419^9^3.209^3.340^~2, 3~^~02/01/2015~ -~01017~^~613~^9.405^11^0.132^~1~^~A~^^^1^8.668^10.267^8^9.103^9.708^~2, 3~^~02/01/2015~ -~01017~^~614~^3.365^11^0.055^~1~^~A~^^^1^3.131^3.715^7^3.235^3.495^~2, 3~^~02/01/2015~ -~01017~^~615~^0.045^11^0.001^~1~^~A~^^^1^0.041^0.050^6^0.043^0.047^~2, 3~^~02/01/2015~ -~01017~^~617~^7.776^11^0.082^~1~^~AS~^^^1^7.395^8.206^7^7.583^7.969^~2, 3~^~02/01/2015~ -~01017~^~618~^1.212^11^0.014^~1~^~AS~^^^1^1.147^1.308^9^1.180^1.244^~2, 3~^~02/01/2015~ -~01017~^~619~^0.131^11^0.002^~1~^~AS~^^^1^0.117^0.139^9^0.127^0.136^~2, 3~^~02/01/2015~ -~01017~^~620~^0.053^11^0.001^~1~^~A~^^^1^0.049^0.058^8^0.050^0.055^~2, 3~^~02/01/2015~ -~01017~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~02/01/1995~ -~01017~^~624~^0.014^11^0.000^~1~^~A~^^^1^0.013^0.016^6^0.013^0.015^~2, 3~^~02/01/2015~ -~01017~^~625~^0.346^11^0.005^~1~^~A~^^^1^0.313^0.374^9^0.335^0.357^~2, 3~^~02/01/2015~ -~01017~^~626~^0.651^11^0.011^~1~^~AS~^^^1^0.554^0.704^9^0.626^0.675^~2, 3~^~02/01/2015~ -~01017~^~627~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.004^9^0.000^0.002^~1, 2, 3~^~02/01/2015~ -~01017~^~628~^0.064^11^0.001^~1~^~A~^^^1^0.058^0.072^7^0.060^0.067^~2, 3~^~02/01/2015~ -~01017~^~629~^0.010^11^0.000^~1~^~A~^^^1^0.009^0.012^9^0.009^0.011^~2, 3~^~02/01/2015~ -~01017~^~630~^0.002^11^0.000^~1~^~AS~^^^1^0.001^0.003^9^0.002^0.002^~2, 3~^~02/01/2015~ -~01017~^~631~^0.020^11^0.000^~1~^~A~^^^1^0.017^0.022^9^0.019^0.021^~2, 3~^~02/01/2015~ -~01017~^~645~^8.907^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~646~^1.483^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~652~^0.344^11^0.004^~1~^~A~^^^1^0.314^0.369^9^0.335^0.354^~2, 3~^~02/01/2015~ -~01017~^~653~^0.207^11^0.002^~1~^~A~^^^1^0.198^0.224^5^0.201^0.213^~2, 3~^~02/01/2015~ -~01017~^~654~^0.008^11^0.000^~1~^~A~^^^1^0.008^0.009^8^0.008^0.009^~2, 3~^~02/01/2015~ -~01017~^~662~^0.108^11^0.002^~1~^~A~^^^1^0.101^0.123^5^0.103^0.114^~2, 3~^~02/01/2015~ -~01017~^~663~^0.836^11^0.013^~1~^~A~^^^1^0.762^0.917^9^0.807^0.865^~2, 3~^~02/01/2015~ -~01017~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01017~^~665~^0.225^11^0.004^~1~^~A~^^^1^0.203^0.242^8^0.217^0.233^~2, 3~^~02/01/2015~ -~01017~^~670~^0.180^11^0.004^~1~^~A~^^^1^0.158^0.204^9^0.171^0.189^~2, 3~^~02/01/2015~ -~01017~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~01017~^~672~^0.007^11^0.000^~1~^~A~^^^1^0.006^0.008^6^0.006^0.007^~2, 3~^~02/01/2015~ -~01017~^~673~^0.542^11^0.012^~1~^~A~^^^1^0.445^0.593^9^0.516^0.569^~2, 3~^~02/01/2015~ -~01017~^~674~^6.940^11^0.072^~1~^~A~^^^1^6.633^7.326^7^6.769^7.111^~2, 3~^~02/01/2015~ -~01017~^~675~^0.807^11^0.011^~1~^~A~^^^1^0.739^0.872^8^0.781^0.834^~2, 3~^~02/01/2015~ -~01017~^~676~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^9^0.002^0.002^~1, 2, 3~^~02/01/2015~ -~01017~^~685~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^7^0.001^0.003^~1, 2, 3~^~02/01/2015~ -~01017~^~687~^0.068^11^0.001^~1~^~A~^^^1^0.063^0.076^6^0.065^0.070^~2, 3~^~02/01/2015~ -~01017~^~689~^0.039^11^0.001^~1~^~AS~^^^1^0.035^0.044^8^0.037^0.041^~2, 3~^~02/01/2015~ -~01017~^~693~^0.944^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~01017~^~695~^0.229^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01017~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~01017~^~851~^0.125^11^0.002^~1~^~A~^^^1^0.112^0.132^8^0.121^0.129^~2, 3~^~02/01/2015~ -~01017~^~852~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^9^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~01017~^~853~^0.036^11^0.001^~1~^~A~^^^1^0.034^0.040^9^0.035^0.038^~2, 3~^~02/01/2015~ -~01017~^~856~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.005^8^0.004^0.004^~2, 3~^~02/01/2015~ -~01017~^~858~^0.008^11^0.000^~1~^~A~^^^1^0.006^0.010^7^0.007^0.009^~2, 3~^~02/01/2015~ -~01018~^~312~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~315~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~404~^0.037^11^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~405~^0.389^17^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~406~^0.082^16^0.030^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~410~^0.281^15^0.072^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~415~^0.076^29^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~501~^0.352^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01018~^~502~^0.932^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~503~^1.308^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~504~^2.570^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~505~^2.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~506~^0.721^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~507~^0.255^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01018~^~508~^1.434^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~509~^1.457^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~510~^1.810^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~511~^0.964^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~512~^1.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~513~^0.764^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~514~^1.747^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~515~^6.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~516~^0.486^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~517~^3.251^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~518~^1.547^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~606~^18.670^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01018~^~607~^1.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~608~^0.461^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~609~^0.300^7^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~610~^0.589^7^0.061^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~611~^0.496^7^0.124^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~612~^2.943^7^0.127^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~613~^8.067^7^0.287^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~614~^2.983^7^0.113^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~617~^6.911^7^0.298^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~618~^0.418^7^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~619~^0.247^7^0.029^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~626~^0.813^7^0.090^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01018~^~645~^8.125^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01018~^~646~^0.665^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~312~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~315~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~404~^0.154^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~405~^0.844^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~406~^0.991^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~410~^0.967^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~415~^0.424^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~501~^0.200^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~502~^0.637^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~503~^0.803^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~504~^1.395^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~505~^1.219^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~506~^0.368^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~507~^0.083^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~508~^0.675^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~509~^0.668^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~510~^1.065^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~511~^0.470^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~512~^0.397^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~513~^0.639^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~514~^0.779^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~515~^2.421^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~516~^0.097^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~517~^1.378^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~518~^1.169^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01019~^~606~^13.300^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01019~^~607~^0.714^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~608~^0.528^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~609~^0.503^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~610~^1.822^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~611~^1.068^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~612~^2.545^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~613~^4.748^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~614~^1.371^1^^~1~^^^^^^^^^^^~07/01/2017~ -~01019~^~617~^3.975^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~618~^0.326^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~619~^0.265^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~626~^0.385^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01019~^~645~^4.623^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01019~^~646~^0.591^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~312~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~315~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~404~^0.021^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~405~^0.204^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~406~^0.150^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~410~^0.429^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~415~^0.083^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~501~^0.361^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~502~^0.935^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~503~^1.384^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~504~^2.664^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~505~^2.328^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~506~^0.706^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~507~^0.261^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~508~^1.497^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~509~^1.524^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~510~^1.926^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~511~^0.835^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~512~^0.959^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~513~^0.823^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~514~^1.413^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~515~^5.136^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~516~^0.457^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~517~^3.323^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~518~^1.477^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01020~^~606~^19.196^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~607~^0.715^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~608~^0.489^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~609~^0.314^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~610~^0.651^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~611~^0.804^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~612~^2.964^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~613~^8.458^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~614~^2.655^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~617~^7.100^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~618~^0.864^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~619~^0.790^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~626~^0.890^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01020~^~645~^8.687^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01020~^~646~^1.654^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~312~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~315~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~404~^0.315^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~405~^1.382^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~406~^0.813^5^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~410~^3.351^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~415~^0.271^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~501~^0.135^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~502~^0.393^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~503~^0.519^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~504~^0.992^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~505~^0.814^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~506~^0.318^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~507~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~508~^0.540^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~509~^0.541^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~510~^0.765^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~511~^0.330^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~512~^0.293^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~513~^0.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~514~^0.709^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~515~^1.987^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~516~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~517~^1.180^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~518~^0.470^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~606~^19.160^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~607~^0.957^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~608~^0.566^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~609~^0.330^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~610~^0.576^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~611~^0.831^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~612~^3.270^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~613~^8.662^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~614~^3.477^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~617~^6.955^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~618~^0.508^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~619~^0.429^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01021~^~626~^0.534^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~645~^7.879^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01021~^~646~^0.938^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~312~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~315~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~404~^0.030^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~405~^0.334^5^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~406~^0.063^10^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~410~^0.340^15^0.052^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~415~^0.080^20^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~501~^0.352^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~502~^0.930^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~503~^1.306^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~504~^2.564^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~505~^2.654^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~506~^0.719^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~507~^0.254^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01022~^~508~^1.431^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~509~^1.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~510~^1.806^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~511~^0.962^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~512~^1.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~513~^0.762^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~514~^1.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~515~^6.137^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~516~^0.485^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~517~^3.245^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~518~^1.544^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~606~^17.614^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~607~^0.999^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~608~^0.640^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~609~^0.427^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~610~^0.918^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~611~^1.211^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~612~^3.040^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~613~^6.851^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~614~^2.918^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~617~^6.388^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~618~^0.263^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~619~^0.394^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~626~^0.889^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01022~^~645~^7.747^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01022~^~646~^0.657^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~312~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~315~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~404~^0.060^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~405~^0.279^3^0.042^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~406~^0.106^10^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~410~^0.562^6^0.056^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~415~^0.081^46^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~501~^0.421^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~502~^1.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~503~^1.612^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~504~^3.102^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~505~^2.710^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~506~^0.822^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~507~^0.304^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~508~^1.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~509~^1.776^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~510~^2.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~511~^0.972^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~512~^1.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~513~^0.958^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~514~^1.645^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~515~^5.981^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~516~^0.533^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~517~^3.869^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~518~^1.719^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~606~^18.913^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~607~^1.049^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~608~^0.621^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~609~^0.355^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~610~^0.751^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~611~^0.911^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~612~^3.369^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~613~^8.753^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~614~^2.324^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~617~^8.582^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~618~^1.300^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~619~^0.433^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~626~^0.724^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01023~^~645~^10.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01023~^~646~^1.733^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~312~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~404~^0.080^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~405~^0.503^3^0.102^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~406~^0.158^12^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~410~^1.177^16^0.166^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~415~^0.086^23^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~501~^0.289^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~502~^0.739^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~503~^1.219^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~504~^2.093^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~505~^1.675^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~506~^0.619^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~507~^0.110^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01024~^~508~^1.116^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~509~^1.197^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~510~^1.439^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~511~^0.698^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~512~^0.578^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~513~^0.666^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~514~^1.477^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~515~^4.510^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~516~^0.409^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~517~^2.439^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~518~^1.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~606~^16.746^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~607~^0.803^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~608~^0.489^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~609~^0.275^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~610~^0.481^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~611~^0.870^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~612~^2.787^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~613~^7.401^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~614~^3.054^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~617~^7.179^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~618~^0.339^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~619~^0.156^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~626~^1.013^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01024~^~645~^8.606^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01024~^~646~^0.495^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~312~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~315~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~404~^0.015^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~405~^0.390^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~406~^0.093^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~410~^0.210^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~415~^0.079^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~501~^0.315^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~502~^0.871^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~503~^1.519^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~504~^2.344^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~505~^2.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~506~^0.641^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~507~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~508~^1.289^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~509~^1.182^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~510~^1.635^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~511~^0.925^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~512~^0.859^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~513~^0.691^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~514~^1.573^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~515~^5.990^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~516~^0.422^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~517~^2.759^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~518~^1.431^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01025~^~606~^19.066^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~607~^0.982^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~608~^0.244^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~609~^0.306^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~610~^0.563^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~611~^0.398^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~612~^3.613^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~613~^7.763^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~614~^3.423^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~617~^7.368^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~618~^0.637^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~619~^0.261^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01025~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~626~^0.923^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~645~^8.751^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01025~^~646~^0.899^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01026~^~312~^0.011^6^0.011^~1~^~A~^^^1^0.000^0.063^5^-0.016^0.037^~1, 2, 3~^~03/01/2003~ -~01026~^~315~^0.030^6^0.002^~1~^~A~^^^1^0.026^0.037^5^0.026^0.035^~2, 3~^~01/01/2003~ -~01026~^~404~^0.030^6^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~03/01/2003~ -~01026~^~405~^0.283^6^0.002^~1~^~A~^^^1^0.276^0.289^5^0.278^0.289^~2, 3~^~03/01/2003~ -~01026~^~406~^0.104^6^0.010^~1~^~A~^^^1^0.075^0.130^5^0.079^0.128^~2, 3~^~03/01/2003~ -~01026~^~410~^0.141^3^0.004^~1~^~A~^^^1^0.135^0.148^2^0.125^0.157^~2, 3~^~01/01/2003~ -~01026~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2003~ -~01026~^~501~^0.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~502~^0.983^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~503~^1.135^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~504~^1.826^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~505~^0.965^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~506~^0.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~507~^0.115^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~508~^1.011^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~509~^1.043^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~510~^1.322^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~511~^0.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~512~^0.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~513~^0.707^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~514~^1.633^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~515~^4.458^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~516~^0.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~517~^2.351^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~518~^0.735^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01026~^~606~^13.900^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01026~^~607~^0.805^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~608~^0.446^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~609~^0.257^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~610~^0.582^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~611~^0.690^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~612~^2.189^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~613~^5.331^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~614~^2.442^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~617~^5.649^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~618~^0.393^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~619~^0.372^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~626~^0.597^1^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~645~^6.573^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01026~^~646~^0.765^0^^~1~^^^^^^^^^^^~01/01/2003~ -~01027~^~312~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~315~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~404~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~405~^0.270^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~406~^0.094^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~410~^0.071^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~415~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~501~^0.302^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01027~^~502~^0.823^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~503~^1.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~504~^2.106^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~505~^2.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~506~^0.603^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~507~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~508~^1.127^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~509~^1.249^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~510~^1.351^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~511~^0.928^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~512~^0.813^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~513~^0.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~514~^1.564^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~515~^5.055^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~516~^0.413^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~517~^2.224^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~518~^1.259^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~606~^15.561^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~607~^0.844^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~608~^0.177^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~609~^0.203^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~610~^0.412^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~611~^0.255^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~612~^2.683^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~613~^7.491^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~614~^2.880^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~617~^5.925^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~618~^0.566^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~619~^0.212^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~626~^0.822^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01027~^~645~^7.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01027~^~646~^0.778^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~312~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~315~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~404~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~405~^0.303^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~406~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~410~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~415~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~501~^0.339^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01028~^~502~^0.924^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~503~^1.164^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~504~^2.365^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~505~^2.464^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~506~^0.677^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~507~^0.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~508~^1.266^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~509~^1.403^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~510~^1.517^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~511~^1.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~512~^0.913^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~513~^0.741^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~514~^1.757^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~515~^5.677^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~516~^0.464^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~517~^2.498^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~518~^1.415^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~606~^10.114^0^^~1~^^^^^^^^^^^~07/01/2017~ -~01028~^~607~^0.516^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~608~^0.100^5^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~609~^0.117^5^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~610~^0.251^5^0.044^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~611~^0.164^5^0.054^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~612~^1.598^5^0.088^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~613~^4.855^5^0.327^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~614~^1.937^5^0.169^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~617~^3.874^5^0.245^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~618~^0.335^5^0.057^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~619~^0.137^5^0.019^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~626~^0.440^5^0.059^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01028~^~645~^4.510^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01028~^~646~^0.472^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01029~^~312~^0.033^35^0.001^~1~^~A~^^^2^0.030^0.034^23^0.031^0.035^~2, 3~^~06/01/2015~ -~01029~^~315~^0.039^35^0.002^~1~^~A~^^^2^0.037^0.040^18^0.035^0.042^~2, 3~^~06/01/2015~ -~01029~^~404~^0.024^19^0.001^~1~^~A~^^^2^0.021^0.026^8^0.023^0.025^~2, 3~^~06/01/2015~ -~01029~^~405~^0.353^19^0.018^~1~^~A~^^^2^0.332^0.367^8^0.312^0.394^~2, 3~^~06/01/2015~ -~01029~^~406~^0.111^19^0.018^~1~^~A~^^^2^0.061^0.145^8^0.070^0.153^~2, 3~^~06/01/2015~ -~01029~^~410~^0.429^11^0.010^~1~^~A~^^^2^0.337^0.490^9^0.407^0.452^~2, 3~^~06/01/2015~ -~01029~^~415~^0.100^19^0.001^~1~^~A~^^^2^0.089^0.108^8^0.098^0.102^~2, 3~^~06/01/2015~ -~01029~^~501~^0.551^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~502~^1.053^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~503~^1.216^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~504~^1.956^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~505~^1.034^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~506~^0.551^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~507~^0.124^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~508~^1.083^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~509~^1.117^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~510~^1.416^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~511~^0.551^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~512~^0.551^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~513~^0.757^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~514~^1.749^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~515~^4.776^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~516~^0.551^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~517~^2.519^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~518~^0.787^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01029~^~605~^0.720^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01029~^~606~^11.295^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01029~^~607~^0.387^35^0.002^~1~^~A~^^^2^0.368^0.399^19^0.382^0.391^~2, 3~^~06/01/2015~ -~01029~^~608~^0.325^35^0.002^~1~^~A~^^^2^0.299^0.342^19^0.321^0.328^~2, 3~^~06/01/2015~ -~01029~^~609~^0.203^35^0.001^~1~^~A~^^^2^0.185^0.215^18^0.200^0.206^~2, 3~^~06/01/2015~ -~01029~^~610~^0.497^35^0.005^~1~^~A~^^^2^0.463^0.519^18^0.487^0.506^~2, 3~^~06/01/2015~ -~01029~^~611~^0.566^35^0.006^~1~^~A~^^^2^0.526^0.592^18^0.553^0.578^~2, 3~^~06/01/2015~ -~01029~^~612~^1.826^35^0.015^~1~^~A~^^^2^1.748^1.877^19^1.795^1.856^~2, 3~^~06/01/2015~ -~01029~^~613~^5.145^35^0.035^~1~^~A~^^^2^4.964^5.265^19^5.071^5.219^~2, 3~^~06/01/2015~ -~01029~^~614~^2.001^35^0.027^~1~^~A~^^^2^1.893^2.073^18^1.944^2.059^~2, 3~^~06/01/2015~ -~01029~^~615~^0.027^35^0.000^~1~^~A~^^^2^0.025^0.028^18^0.026^0.028^~2, 3~^~05/01/2015~ -~01029~^~617~^4.590^35^0.029^~1~^~AS~^^^2^4.555^4.642^19^4.528^4.651^~2, 3~^~06/01/2015~ -~01029~^~618~^0.731^35^0.006^~1~^~AS~^^^2^0.709^0.765^21^0.718^0.744^~2, 3~^~06/01/2015~ -~01029~^~619~^0.071^35^0.002^~1~^~AS~^^^2^0.064^0.075^17^0.067^0.075^~2, 3~^~06/01/2015~ -~01029~^~620~^0.031^35^0.001^~1~^~A~^^^2^0.031^0.031^17^0.029^0.033^~2, 3~^~05/01/2015~ -~01029~^~621~^0.000^35^0.000^~1~^~A~^^^2^0.000^0.000^33^0.000^0.000^~2, 3~^~02/01/2009~ -~01029~^~624~^0.007^35^0.000^~1~^~A~^^^2^0.007^0.008^21^0.007^0.008^~2, 3~^~06/01/2015~ -~01029~^~625~^0.186^35^0.003^~1~^~A~^^^2^0.184^0.188^18^0.180^0.192^~2, 3~^~06/01/2015~ -~01029~^~626~^0.309^35^0.006^~1~^~AS~^^^2^0.297^0.329^18^0.296^0.323^~2, 3~^~06/01/2015~ -~01029~^~627~^0.000^35^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2, 3~^~02/01/2009~ -~01029~^~628~^0.037^35^0.001^~1~^~A~^^^2^0.036^0.038^31^0.036^0.039^~2, 3~^~06/01/2015~ -~01029~^~629~^0.005^35^0.000^~1~^~A~^^^2^0.005^0.006^17^0.005^0.006^~2, 3~^~06/01/2015~ -~01029~^~630~^0.000^35^0.000^~1~^~AS~^^^2^0.000^0.000^23^0.000^0.000^~2, 3~^~02/01/2009~ -~01029~^~631~^0.010^35^0.000^~1~^~A~^^^2^0.009^0.011^18^0.010^0.011^~2, 3~^~06/01/2015~ -~01029~^~645~^5.741^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01029~^~646~^1.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01029~^~652~^0.193^35^0.002^~1~^~A~^^^2^0.190^0.194^19^0.189^0.196^~2, 3~^~06/01/2015~ -~01029~^~653~^0.115^35^0.001^~1~^~A~^^^2^0.111^0.117^18^0.112^0.117^~2, 3~^~06/01/2015~ -~01029~^~654~^0.005^35^0.000^~1~^~A~^^^2^0.004^0.005^18^0.004^0.005^~2, 3~^~05/01/2014~ -~01029~^~662~^0.060^35^0.003^~1~^~A~^^^2^0.056^0.066^17^0.053^0.067^~2, 3~^~05/01/2015~ -~01029~^~663~^0.522^35^0.007^~1~^~A~^^^2^0.510^0.541^18^0.508^0.536^~2, 3~^~06/01/2015~ -~01029~^~664~^0.000^35^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~01029~^~665~^0.138^35^0.001^~1~^~A~^^^2^0.137^0.138^18^0.135^0.140^~2, 3~^~06/01/2015~ -~01029~^~671~^0.000^35^0.000^~1~^~A~^^^2^0.000^0.000^16^0.000^0.000^~2, 3~^~05/01/2014~ -~01029~^~672~^0.004^35^0.000^~1~^~A~^^^2^0.004^0.005^18^0.004^0.005^~2, 3~^~06/01/2015~ -~01029~^~687~^0.037^35^0.000^~1~^~A~^^^2^0.036^0.037^18^0.036^0.038^~2, 3~^~06/01/2015~ -~01029~^~689~^0.022^35^0.000^~1~^~AS~^^^2^0.021^0.022^18^0.021^0.023^~2, 3~^~06/01/2015~ -~01029~^~693~^0.582^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01029~^~695~^0.138^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01029~^~697~^0.000^35^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~01029~^~858~^0.005^35^0.000^~1~^~A~^^^2^0.005^0.006^18^0.005^0.006^~2, 3~^~05/01/2015~ -~01030~^~312~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~315~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~404~^0.013^6^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~405~^0.320^10^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~406~^0.103^18^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~410~^0.190^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~415~^0.056^15^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~501~^0.327^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~502~^0.888^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~503~^1.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~504~^2.260^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~505~^2.139^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~506~^0.569^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~507~^0.132^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~508~^1.240^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~509~^1.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~510~^1.482^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~511~^0.881^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~512~^0.829^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~513~^0.675^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~514~^1.600^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~515~^5.555^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~516~^0.440^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~517~^2.594^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~518~^1.299^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~606~^19.113^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~607~^1.042^6^0.113^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~608~^0.243^6^0.019^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~609~^0.275^6^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~610~^0.586^6^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~611~^0.367^6^0.021^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~612~^3.072^6^0.085^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~613~^9.218^6^0.219^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~614~^3.569^6^0.091^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~617~^7.338^6^0.182^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~618~^0.431^6^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~619~^0.230^6^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~626~^0.973^6^0.049^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01030~^~645~^8.711^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01030~^~646~^0.661^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01031~^~312~^0.027^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~315~^0.011^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~404~^0.022^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~405~^0.155^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~406~^0.210^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~410~^0.575^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~415~^0.041^11^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01031~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~502~^0.359^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~503~^0.501^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~504~^1.013^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~505~^0.875^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~506~^0.294^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~507~^0.064^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~508~^0.448^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~509~^0.468^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~510~^0.609^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~511~^0.363^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~512~^0.270^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~513~^0.283^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~514~^0.794^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~515~^2.013^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~516~^0.218^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~517~^1.027^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~518~^0.577^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01031~^~521~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~606~^12.790^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~607~^0.609^6^0.067^~1~^^^^^^^^^^^~11/01/1976~ -~01031~^~608~^0.210^6^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01031~^~609~^0.242^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~610~^0.548^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~611~^0.607^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~612~^2.025^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~613~^5.633^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~614~^2.555^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~615~^0.033^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~617~^5.326^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~618~^0.696^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~619~^0.117^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~01031~^~620~^0.039^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~625~^0.161^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~626~^0.297^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~628~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~645~^5.784^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~646~^0.970^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01031~^~652~^0.209^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~653~^0.119^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~685~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01031~^~851~^0.117^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01032~^~312~^0.040^11^0.002^~1~^~A~^^^1^0.029^0.050^6^0.035^0.046^~2, 3~^~05/01/2014~ -~01032~^~315~^0.071^11^0.011^~1~^~A~^^^1^0.037^0.160^5^0.043^0.099^~2, 3~^~05/01/2014~ -~01032~^~404~^0.026^5^0.004^~1~^~A~^^^1^0.010^0.030^2^0.008^0.043^~2, 3~^~05/01/2014~ -~01032~^~405~^0.358^5^0.028^~1~^~A~^^^1^0.270^0.410^3^0.260^0.456^~2, 3~^~05/01/2014~ -~01032~^~406~^0.080^5^0.016^~1~^~A~^^^1^0.030^0.140^3^0.028^0.133^~2, 3~^~05/01/2014~ -~01032~^~410~^0.450^3^0.018^~1~^~A~^^^1^0.420^0.480^1^0.219^0.681^~2, 3~^~05/01/2014~ -~01032~^~415~^0.081^5^0.005^~1~^~A~^^^1^0.065^0.095^2^0.059^0.104^~2, 3~^~05/01/2014~ -~01032~^~501~^0.383^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~502~^1.075^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~503~^1.455^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~504~^2.747^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~505~^2.201^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~506~^0.751^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~507~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~508~^1.538^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~509~^1.720^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~510~^1.865^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~511~^1.157^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~512~^0.806^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~513~^0.859^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~514~^1.975^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~515~^6.425^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~516~^0.560^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~517~^3.415^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~518~^1.694^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01032~^~605~^0.876^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~606~^15.371^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~607~^0.493^11^0.039^~1~^~A~^^^1^0.186^0.661^5^0.392^0.594^~2, 3~^~05/01/2014~ -~01032~^~608~^0.422^11^0.034^~1~^~A~^^^1^0.153^0.561^5^0.335^0.509^~2, 3~^~05/01/2014~ -~01032~^~609~^0.265^11^0.021^~1~^~A~^^^1^0.097^0.347^5^0.212^0.319^~2, 3~^~05/01/2014~ -~01032~^~610~^0.632^11^0.051^~1~^~A~^^^1^0.225^0.824^5^0.503^0.761^~2, 3~^~05/01/2014~ -~01032~^~611~^0.726^11^0.057^~1~^~A~^^^1^0.273^0.947^5^0.580^0.872^~2, 3~^~05/01/2014~ -~01032~^~612~^2.333^11^0.176^~1~^~A~^^^1^0.972^3.093^5^1.882^2.784^~2, 3~^~05/01/2014~ -~01032~^~613~^7.481^11^0.261^~1~^~A~^^^1^5.987^8.571^5^6.812^8.150^~2, 3~^~05/01/2014~ -~01032~^~614~^2.565^11^0.130^~1~^~A~^^^1^1.477^3.183^5^2.238^2.892^~2, 3~^~05/01/2014~ -~01032~^~615~^0.046^11^0.003^~1~^~A~^^^1^0.031^0.067^5^0.038^0.054^~2, 3~^~05/01/2014~ -~01032~^~617~^6.441^11^0.279^~1~^~AS~^^^1^4.763^7.561^5^5.729^7.153^~2, 3~^~05/01/2014~ -~01032~^~618~^1.175^11^0.090^~1~^~AS~^^^1^0.757^1.700^5^0.946^1.405^~2, 3~^~05/01/2014~ -~01032~^~619~^0.106^11^0.006^~1~^~AS~^^^1^0.075^0.148^5^0.091^0.121^~2, 3~^~05/01/2014~ -~01032~^~620~^0.040^11^0.003^~1~^~A~^^^1^0.012^0.054^5^0.032^0.047^~2, 3~^~05/01/2014~ -~01032~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~02/01/1995~ -~01032~^~624~^0.012^11^0.000^~1~^~A~^^^1^0.010^0.014^6^0.010^0.013^~2, 3~^~05/01/2014~ -~01032~^~625~^0.229^11^0.020^~1~^~A~^^^1^0.090^0.322^5^0.178^0.279^~2, 3~^~05/01/2014~ -~01032~^~626~^0.365^11^0.029^~1~^~AS~^^^1^0.161^0.506^5^0.291^0.439^~2, 3~^~05/01/2014~ -~01032~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~02/01/1995~ -~01032~^~628~^0.049^11^0.003^~1~^~A~^^^1^0.031^0.060^6^0.042^0.055^~2, 3~^~05/01/2014~ -~01032~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01032~^~630~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.002^9^0.000^0.001^~2, 3~^~05/01/2014~ -~01032~^~631~^0.015^11^0.001^~1~^~A~^^^1^0.006^0.021^5^0.012^0.018^~2, 3~^~05/01/2014~ -~01032~^~645~^7.130^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~646~^1.386^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~652~^0.240^11^0.019^~1~^~A~^^^1^0.096^0.327^5^0.190^0.289^~2, 3~^~05/01/2014~ -~01032~^~653~^0.148^11^0.011^~1~^~A~^^^1^0.065^0.197^5^0.120^0.176^~2, 3~^~05/01/2014~ -~01032~^~654~^0.009^11^0.001^~1~^~A~^^^1^0.007^0.015^6^0.007^0.011^~2, 3~^~05/01/2014~ -~01032~^~662~^0.078^11^0.007^~1~^~A~^^^1^0.028^0.103^5^0.061^0.095^~2, 3~^~05/01/2014~ -~01032~^~663~^0.626^11^0.041^~1~^~A~^^^1^0.313^0.808^5^0.523^0.729^~2, 3~^~05/01/2014~ -~01032~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~665~^0.169^11^0.013^~1~^~A~^^^1^0.076^0.237^5^0.136^0.202^~2, 3~^~05/01/2014~ -~01032~^~670~^0.136^11^0.010^~1~^~A~^^^1^0.061^0.172^5^0.110^0.162^~2, 3~^~05/01/2014~ -~01032~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~672~^0.006^11^0.001^~1~^~A~^^^1^0.000^0.008^5^0.004^0.007^~1, 2, 3~^~05/01/2014~ -~01032~^~673~^0.287^11^0.022^~1~^~A~^^^1^0.133^0.403^5^0.230^0.345^~2, 3~^~05/01/2014~ -~01032~^~674~^5.815^11^0.294^~1~^~A~^^^1^4.165^7.248^5^5.062^6.567^~2, 3~^~05/01/2014~ -~01032~^~675~^0.870^11^0.108^~1~^~A~^^^1^0.412^1.563^5^0.592^1.147^~2, 3~^~05/01/2014~ -~01032~^~676~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~01032~^~685~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~01032~^~687~^0.045^11^0.003^~1~^~A~^^^1^0.021^0.063^5^0.036^0.054^~2, 3~^~05/01/2014~ -~01032~^~689~^0.027^11^0.002^~1~^~AS~^^^1^0.007^0.039^5^0.021^0.034^~2, 3~^~05/01/2014~ -~01032~^~693~^0.704^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~695~^0.172^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01032~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01032~^~851~^0.102^11^0.006^~1~^~A~^^^1^0.070^0.143^5^0.087^0.117^~2, 3~^~05/01/2014~ -~01032~^~852~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.004^9^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~01032~^~853~^0.026^11^0.002^~1~^~A~^^^1^0.007^0.037^5^0.020^0.031^~2, 3~^~05/01/2014~ -~01032~^~856~^0.003^11^0.000^~1~^~A~^^^1^0.000^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~01032~^~858~^0.007^11^0.001^~1~^~A~^^^1^0.002^0.012^7^0.006^0.009^~1, 2, 3~^~05/01/2014~ -~01033~^~312~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~404~^0.039^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~405~^0.332^4^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~406~^0.271^12^0.047^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~410~^0.453^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~415~^0.091^15^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~501~^0.482^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~502~^1.317^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~503~^1.894^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~504~^3.452^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~505~^3.306^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~506~^0.958^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~507~^0.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~508~^1.922^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~509~^1.995^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~510~^2.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~511~^1.317^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~512~^1.384^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~513~^1.048^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~514~^2.236^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~515~^8.209^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~516~^0.622^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~517~^4.180^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~518~^2.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~606~^14.850^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01033~^~607~^1.299^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~608~^0.487^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~609~^0.260^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~610~^0.648^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~611~^0.873^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~612~^2.911^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~613~^6.966^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~614~^2.301^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~617~^6.656^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~618~^0.272^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~619~^0.297^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~626~^0.394^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01033~^~645~^7.515^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01033~^~646~^0.569^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~312~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~315~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~404~^0.014^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~405~^0.240^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~406~^0.060^10^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~410~^0.210^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~415~^0.053^0^^~4~^~T~^^^^^^^^^^~02/01/2009~ -~01034~^~501~^0.343^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~502~^0.876^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~503~^1.446^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~504~^2.482^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~505~^1.987^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~506~^0.734^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~507~^0.134^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01034~^~508~^1.323^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~509~^1.420^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~510~^1.707^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~511~^0.827^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~512~^0.686^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~513~^0.790^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~514~^1.752^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~515~^5.349^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~516~^0.485^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~517~^2.892^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~518~^1.357^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~606~^16.691^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~607~^1.027^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~608~^0.556^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~609~^0.336^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~610~^0.681^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~611~^0.768^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~612~^2.724^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~613~^6.638^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~614~^3.350^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~617~^8.051^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~618~^0.378^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~619~^0.351^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~626~^0.833^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01034~^~645~^9.338^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01034~^~646~^0.729^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~312~^0.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~315~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~404~^0.019^9^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~405~^0.321^13^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~406~^0.156^18^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~410~^0.476^6^0.154^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~415~^0.073^28^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~501~^0.345^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01035~^~502~^0.982^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~503~^1.091^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~504~^2.297^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~505~^2.646^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~506~^0.686^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~507~^0.116^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~508~^1.287^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~509~^1.520^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~510~^1.640^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~511~^1.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~512~^1.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~513~^0.706^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~514~^1.744^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~515~^6.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~516~^0.433^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~517~^2.766^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~518~^1.471^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~606~^17.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~607~^0.981^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~608~^0.370^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~609~^0.256^10^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~610~^0.482^10^0.034^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~611~^0.355^10^0.061^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~612~^2.748^10^0.084^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~613~^8.159^10^0.190^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~614~^3.063^10^0.121^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~617~^6.164^10^0.174^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~618~^0.494^10^0.050^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~619~^0.275^10^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~626~^0.878^10^0.064^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01035~^~645~^7.393^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01035~^~646~^0.769^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01036~^~312~^0.018^11^0.000^~1~^~A~^^^1^0.018^0.019^5^0.018^0.018^~1, 2, 3~^~01/01/2017~ -~01036~^~315~^0.011^11^0.000^~1~^~A~^^^1^0.011^0.011^3^0.011^0.011^~1, 2, 3~^~01/01/2017~ -~01036~^~404~^0.013^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01036~^~405~^0.298^7^0.012^~1~^~A~^^^1^0.270^0.420^3^0.258^0.337^~2, 3~^~01/01/2017~ -~01036~^~406~^0.137^5^0.007^~1~^~A~^^^1^0.130^0.220^2^0.108^0.166^~2, 3~^~01/01/2017~ -~01036~^~410~^0.461^3^0.000^~1~^~A~^^^1^0.460^0.810^1^0.460^0.463^~2, 3~^~01/01/2017~ -~01036~^~415~^0.097^5^0.006^~1~^~A~^^^1^0.089^0.109^2^0.072^0.123^~2, 3~^~01/01/2017~ -~01036~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2017~ -~01036~^~605~^0.333^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~606~^6.420^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~607~^0.232^11^0.006^~1~^~A~^^^1^0.185^0.300^5^0.217^0.247^~2, 3~^~01/01/2017~ -~01036~^~608~^0.183^11^0.005^~1~^~A~^^^1^0.142^0.242^5^0.171^0.195^~2, 3~^~01/01/2017~ -~01036~^~609~^0.116^11^0.003^~1~^~A~^^^1^0.090^0.152^5^0.108^0.123^~2, 3~^~01/01/2017~ -~01036~^~610~^0.282^11^0.007^~1~^~A~^^^1^0.216^0.369^5^0.264^0.300^~2, 3~^~01/01/2017~ -~01036~^~611~^0.335^11^0.008^~1~^~A~^^^1^0.264^0.430^5^0.316^0.355^~2, 3~^~01/01/2017~ -~01036~^~612~^1.067^11^0.025^~1~^~A~^^^1^0.854^1.342^5^1.004^1.131^~2, 3~^~01/01/2017~ -~01036~^~613~^3.056^11^0.074^~1~^~A~^^^1^2.351^3.810^5^2.867^3.246^~2, 3~^~01/01/2017~ -~01036~^~614~^0.956^11^0.017^~1~^~A~^^^1^0.780^1.166^5^0.913^1.000^~2, 3~^~01/01/2017~ -~01036~^~615~^0.012^11^0.000^~1~^~A~^^^1^0.008^0.016^5^0.011^0.013^~2, 3~^~01/01/2017~ -~01036~^~617~^2.315^11^0.041^~1~^~AS~^^^1^1.892^2.771^5^2.210^2.420^~2, 3~^~01/01/2017~ -~01036~^~618~^0.356^11^0.008^~1~^~AS~^^^1^0.295^0.455^5^0.336^0.377^~2, 3~^~01/01/2017~ -~01036~^~619~^0.043^11^0.001^~1~^~AS~^^^1^0.035^0.054^5^0.040^0.046^~2, 3~^~01/01/2017~ -~01036~^~620~^0.014^11^0.000^~1~^~A~^^^1^0.012^0.017^5^0.013^0.015^~2, 3~^~01/01/2017~ -~01036~^~621~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~01/01/2017~ -~01036~^~624~^0.006^11^0.000^~1~^~A~^^^1^0.005^0.007^5^0.006^0.006^~2, 3~^~01/01/2017~ -~01036~^~625~^0.108^11^0.003^~1~^~A~^^^1^0.085^0.136^5^0.101^0.115^~2, 3~^~01/01/2017~ -~01036~^~626~^0.196^11^0.005^~1~^~AS~^^^1^0.148^0.245^5^0.182^0.209^~2, 3~^~01/01/2017~ -~01036~^~627~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.002^~1, 2, 3~^~01/01/2017~ -~01036~^~628~^0.019^11^0.001^~1~^~A~^^^1^0.016^0.024^5^0.018^0.020^~2, 3~^~01/01/2017~ -~01036~^~629~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.005^~2, 3~^~01/01/2017~ -~01036~^~630~^0.003^11^0.000^~1~^~AS~^^^1^0.001^0.004^5^0.002^0.004^~2, 3~^~01/01/2017~ -~01036~^~631~^0.006^11^0.000^~1~^~A~^^^1^0.004^0.008^5^0.005^0.006^~2, 3~^~01/01/2017~ -~01036~^~645~^2.659^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~646~^0.445^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~652~^0.107^11^0.002^~1~^~A~^^^1^0.087^0.129^5^0.102^0.113^~2, 3~^~01/01/2017~ -~01036~^~653~^0.063^11^0.001^~1~^~A~^^^1^0.053^0.072^5^0.060^0.065^~2, 3~^~01/01/2017~ -~01036~^~654~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~01/01/2017~ -~01036~^~662~^0.030^11^0.001^~1~^~A~^^^1^0.023^0.040^5^0.027^0.032^~2, 3~^~01/01/2017~ -~01036~^~663~^0.238^11^0.003^~1~^~A~^^^1^0.196^0.280^5^0.229^0.246^~2, 3~^~01/01/2017~ -~01036~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~01036~^~665~^0.064^11^0.001^~1~^~A~^^^1^0.052^0.076^5^0.062^0.066^~2, 3~^~01/01/2017~ -~01036~^~670~^0.047^11^0.002^~1~^~A~^^^1^0.042^0.059^5^0.043^0.051^~2, 3~^~01/01/2017~ -~01036~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~01/01/2017~ -~01036~^~672~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~01/01/2017~ -~01036~^~673~^0.166^11^0.004^~1~^~A~^^^1^0.125^0.211^5^0.155^0.177^~2, 3~^~01/01/2017~ -~01036~^~674~^2.077^11^0.038^~1~^~A~^^^1^1.696^2.491^5^1.981^2.174^~2, 3~^~01/01/2017~ -~01036~^~675~^0.246^11^0.006^~1~^~A~^^^1^0.201^0.320^5^0.230^0.261^~2, 3~^~01/01/2017~ -~01036~^~676~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.004^5^0.002^0.004^~1, 2, 3~^~01/01/2017~ -~01036~^~685~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~01/01/2017~ -~01036~^~687~^0.018^11^0.000^~1~^~A~^^^1^0.014^0.023^5^0.017^0.019^~2, 3~^~01/01/2017~ -~01036~^~689~^0.013^11^0.000^~1~^~AS~^^^1^0.012^0.014^5^0.013^0.013^~2, 3~^~01/01/2017~ -~01036~^~693~^0.267^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~695~^0.066^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~01036~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~01036~^~851~^0.039^11^0.001^~1~^~A~^^^1^0.030^0.049^5^0.036^0.042^~2, 3~^~01/01/2017~ -~01036~^~852~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.001^~1, 2, 3~^~01/01/2017~ -~01036~^~853~^0.012^11^0.000^~1~^~A~^^^1^0.010^0.013^5^0.011^0.012^~2, 3~^~01/01/2017~ -~01036~^~856~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~01/01/2017~ -~01036~^~858~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~01/01/2017~ -~01037~^~312~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~315~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~404~^0.021^7^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~405~^0.185^7^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~406~^0.078^6^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~410~^0.242^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01037~^~415~^0.020^6^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~501~^0.127^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01037~^~502~^0.523^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~503~^0.596^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~504~^1.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~505~^1.353^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~506~^0.284^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~507~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~508~^0.562^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~509~^0.596^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~510~^0.700^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~511~^0.639^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~512~^0.464^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~513~^0.505^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~514~^1.007^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~515~^2.474^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~516~^0.298^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~517~^1.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~518~^0.582^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~606~^4.927^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~607~^0.254^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~608~^0.065^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~609~^0.073^6^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~610~^0.151^7^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~611~^0.105^7^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~612~^0.808^7^0.063^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~613~^2.442^7^0.197^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~614~^0.866^7^0.069^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~617~^1.920^7^0.152^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~618~^0.190^7^0.018^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~619~^0.070^6^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~626~^0.277^7^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01037~^~645~^2.314^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01037~^~646~^0.260^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~312~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~404~^0.037^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~405~^0.370^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~406~^0.077^10^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01038~^~410~^0.424^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~415~^0.085^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~501~^0.429^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~502~^1.171^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~503~^1.685^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~504~^3.071^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~505~^2.941^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~506~^0.852^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~507~^0.209^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~508~^1.710^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~509~^1.775^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~510~^2.183^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~511~^1.171^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~512~^1.231^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~513~^0.932^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~514~^1.989^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~515~^7.302^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~516~^0.553^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~517~^3.718^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~518~^1.840^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~606~^17.115^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~607~^1.355^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~608~^0.508^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~609~^0.271^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~610~^0.671^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~611~^0.911^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~612~^3.036^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~613~^7.265^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~614~^2.400^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~617~^6.942^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~618~^0.284^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~619~^0.310^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01038~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~626~^0.411^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~645~^7.838^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01038~^~646~^0.593^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~312~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~315~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~404~^0.040^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~405~^0.586^8^0.071^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~406~^0.734^15^0.078^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~410~^1.731^18^0.183^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~415~^0.124^26^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~501~^0.303^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~502~^0.965^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~503~^1.217^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~504~^2.114^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~505~^1.848^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~506~^0.558^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~507~^0.126^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~508~^1.023^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~509~^1.012^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~510~^1.614^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~511~^0.713^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~512~^0.602^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~513~^0.969^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~514~^1.181^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~515~^3.670^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~516~^0.148^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~517~^2.089^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~518~^1.772^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~606~^19.263^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~607~^0.877^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~608~^0.660^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~609~^0.674^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~610~^2.163^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~611~^1.295^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~612~^3.250^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~613~^6.570^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~614~^3.141^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~617~^7.456^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~618~^0.616^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~619~^0.704^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01039~^~626~^0.730^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~645~^8.474^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01039~^~646~^1.320^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~312~^0.047^12^0.003^~1~^~A~^^^1^0.037^0.076^6^0.039^0.056^~2, 3~^~02/01/2015~ -~01040~^~315~^0.026^12^0.002^~1~^~A~^^^1^0.016^0.034^9^0.023^0.030^~2, 3~^~02/01/2015~ -~01040~^~404~^0.011^6^0.002^~1~^~A~^^^1^0.007^0.020^2^0.001^0.021^~1, 2, 3~^~02/01/2015~ -~01040~^~405~^0.302^6^0.003^~1~^~A~^^^1^0.290^0.320^4^0.293^0.311^~2, 3~^~02/01/2015~ -~01040~^~406~^0.064^6^0.011^~1~^~A~^^^1^0.022^0.120^3^0.026^0.103^~1, 2, 3~^~02/01/2015~ -~01040~^~410~^0.353^4^0.014^~1~^~A~^^^1^0.330^0.380^1^0.170^0.536^~2, 3~^~02/01/2015~ -~01040~^~415~^0.071^6^0.001^~1~^~A~^^^1^0.065^0.077^4^0.067^0.075^~2, 3~^~02/01/2015~ -~01040~^~501~^0.401^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~502~^1.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~503~^1.537^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~504~^2.959^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~505~^2.585^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~506~^0.784^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~507~^0.290^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~508~^1.662^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~509~^1.693^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~510~^2.139^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~511~^0.927^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~512~^1.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~513~^0.914^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~514~^1.569^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01040~^~515~^5.704^0^^~1~^~A~^~01040~^^^^^^^^^~11/01/1976~ -~01040~^~516~^0.508^0^^~1~^~A~^~01040~^^^^^^^^^~11/01/1976~ -~01040~^~517~^3.690^0^^~1~^~A~^~01040~^^^^^^^^^~11/01/1976~ -~01040~^~518~^1.640^0^^~1~^~A~^~01040~^^^^^^^^^~11/01/1976~ -~01040~^~605~^0.987^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~606~^18.227^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~607~^0.681^12^0.011^~1~^~A~^^^1^0.607^0.734^6^0.653^0.710^~2, 3~^~02/01/2015~ -~01040~^~608~^0.542^12^0.007^~1~^~A~^^^1^0.498^0.585^5^0.524^0.561^~2, 3~^~02/01/2015~ -~01040~^~609~^0.327^12^0.004^~1~^~A~^^^1^0.309^0.358^5^0.316^0.337^~2, 3~^~02/01/2015~ -~01040~^~610~^0.768^12^0.009^~1~^~A~^^^1^0.741^0.842^5^0.746^0.789^~2, 3~^~02/01/2015~ -~01040~^~611~^0.875^12^0.010^~1~^~A~^^^1^0.839^0.960^5^0.848^0.901^~2, 3~^~02/01/2015~ -~01040~^~612~^2.919^12^0.030^~1~^~A~^^^1^2.762^3.063^5^2.842^2.996^~2, 3~^~02/01/2015~ -~01040~^~613~^8.358^12^0.037^~1~^~A~^^^1^8.184^8.623^6^8.269^8.446^~2, 3~^~02/01/2015~ -~01040~^~614~^3.196^12^0.058^~1~^~A~^^^1^2.803^3.472^5^3.051^3.341^~2, 3~^~02/01/2015~ -~01040~^~615~^0.044^12^0.001^~1~^~A~^^^1^0.041^0.046^9^0.042^0.045^~2, 3~^~02/01/2015~ -~01040~^~617~^7.060^12^0.133^~1~^~AS~^^^1^6.190^7.641^5^6.719^7.402^~2, 3~^~02/01/2015~ -~01040~^~618~^1.086^12^0.015^~1~^~AS~^^^1^0.988^1.158^5^1.048^1.125^~2, 3~^~02/01/2015~ -~01040~^~619~^0.129^12^0.005^~1~^~AS~^^^1^0.110^0.160^7^0.118^0.139^~2, 3~^~02/01/2015~ -~01040~^~620~^0.046^12^0.001^~1~^~A~^^^1^0.041^0.051^8^0.044^0.049^~2, 3~^~02/01/2015~ -~01040~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01040~^~624~^0.014^12^0.000^~1~^~A~^^^1^0.012^0.017^10^0.014^0.015^~2, 3~^~02/01/2015~ -~01040~^~625~^0.297^12^0.006^~1~^~A~^^^1^0.252^0.315^5^0.282^0.311^~2, 3~^~02/01/2015~ -~01040~^~626~^0.565^12^0.016^~1~^~AS~^^^1^0.464^0.634^7^0.526^0.603^~2, 3~^~02/01/2015~ -~01040~^~627~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.004^9^0.000^0.003^~1, 2, 3~^~02/01/2015~ -~01040~^~628~^0.060^12^0.001^~1~^~A~^^^1^0.056^0.066^9^0.058^0.062^~2, 3~^~02/01/2015~ -~01040~^~629~^0.009^12^0.001^~1~^~A~^^^1^0.008^0.014^6^0.008^0.011^~2, 3~^~01/01/2016~ -~01040~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.003^7^0.002^0.002^~2, 3~^~02/01/2015~ -~01040~^~631~^0.018^12^0.001^~1~^~A~^^^1^0.016^0.022^8^0.017^0.019^~2, 3~^~02/01/2015~ -~01040~^~645~^8.046^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~646~^1.341^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~652~^0.305^12^0.004^~1~^~A~^^^1^0.288^0.320^7^0.296^0.314^~2, 3~^~02/01/2015~ -~01040~^~653~^0.189^12^0.002^~1~^~A~^^^1^0.178^0.195^6^0.186^0.193^~2, 3~^~02/01/2015~ -~01040~^~654~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.010^6^0.008^0.009^~2, 3~^~02/01/2015~ -~01040~^~662~^0.102^12^0.002^~1~^~A~^^^1^0.091^0.108^6^0.098^0.106^~2, 3~^~02/01/2015~ -~01040~^~663~^0.692^12^0.075^~1~^~A~^^^1^0.006^0.831^5^0.499^0.884^~2, 3~^~02/01/2015~ -~01040~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~665~^0.191^12^0.005^~1~^~A~^^^1^0.155^0.207^6^0.179^0.203^~2, 3~^~02/01/2015~ -~01040~^~670~^0.161^12^0.005^~1~^~A~^^^1^0.124^0.183^6^0.149^0.174^~2, 3~^~02/01/2015~ -~01040~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~01040~^~672~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.007^10^0.006^0.007^~2, 3~^~02/01/2015~ -~01040~^~673~^0.463^12^0.016^~1~^~A~^^^1^0.370^0.526^8^0.426^0.499^~2, 3~^~02/01/2015~ -~01040~^~674~^6.369^12^0.082^~1~^~A~^^^1^5.793^6.810^5^6.158^6.580^~2, 3~^~02/01/2015~ -~01040~^~675~^0.734^12^0.007^~1~^~A~^^^1^0.700^0.782^6^0.716^0.751^~2, 3~^~02/01/2015~ -~01040~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^7^0.002^0.002^~1, 2, 3~^~02/01/2015~ -~01040~^~685~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^8^0.001^0.003^~1, 2, 3~^~02/01/2015~ -~01040~^~687~^0.062^12^0.001^~1~^~A~^^^1^0.055^0.068^9^0.060^0.065^~2, 3~^~02/01/2015~ -~01040~^~689~^0.035^12^0.000^~1~^~AS~^^^1^0.031^0.038^9^0.034^0.036^~2, 3~^~02/01/2015~ -~01040~^~693~^0.793^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~695~^0.194^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01040~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01040~^~851~^0.125^12^0.004^~1~^~A~^^^1^0.109^0.154^7^0.115^0.134^~2, 3~^~02/01/2015~ -~01040~^~852~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^8^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~01040~^~853~^0.032^12^0.000^~1~^~A~^^^1^0.029^0.035^10^0.032^0.033^~2, 3~^~02/01/2015~ -~01040~^~856~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^8^0.001^0.003^~1, 2, 3~^~02/01/2015~ -~01040~^~858~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.010^6^0.006^0.008^~2, 3~^~02/01/2015~ -~01041~^~312~^0.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~315~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~404~^0.061^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~405~^0.359^4^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~406~^0.205^4^0.026^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~410~^0.346^4^0.025^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~415~^0.065^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01041~^~501~^0.352^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~502~^0.899^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~503~^1.484^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~504~^2.548^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~505~^2.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~506~^0.754^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~507~^0.138^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01041~^~508~^1.358^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~509~^1.458^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~510~^1.752^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~511~^0.849^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~512~^0.704^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~513~^0.811^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~514~^1.798^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~515~^5.490^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~516~^0.497^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~517~^2.969^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~518~^1.393^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~606~^16.775^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~607~^0.878^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~608~^0.536^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~609~^0.381^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~610~^0.748^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~611~^1.073^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~612~^2.608^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~613~^7.675^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~614~^2.190^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~617~^6.073^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~618~^0.398^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~619~^0.323^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~626~^0.668^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01041~^~645~^7.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01041~^~646~^0.721^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01042~^~312~^0.046^19^0.005^~1~^~A~^^^1^0.025^0.130^9^0.036^0.057^~2, 3~^~05/01/2011~ -~01042~^~315~^0.041^19^0.001^~1~^~A~^^^1^0.018^0.066^16^0.038^0.044^~2, 3~^~05/01/2011~ -~01042~^~404~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~05/01/2011~ -~01042~^~405~^0.234^4^0.003^~1~^~A~^^^1^0.220^0.320^2^0.221^0.247^~2, 3~^~05/01/2011~ -~01042~^~406~^0.076^2^^~1~^~A~^^^1^0.070^0.120^^^^^~05/01/2011~ -~01042~^~410~^0.403^2^^~1~^~A~^^^1^0.400^0.430^^^^^~05/01/2011~ -~01042~^~415~^0.054^2^^~1~^~A~^^^1^0.053^0.059^^^^^~05/01/2011~ -~01042~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~502~^0.772^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~503~^0.938^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~505~^1.516^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~506~^0.475^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~508~^0.939^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~509~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~510~^1.187^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~511~^0.518^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~512~^0.546^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~513~^0.613^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~514~^1.551^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~515~^4.073^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~516~^0.359^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~517~^1.788^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~518~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01042~^~605~^1.144^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~606~^18.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~607~^0.615^5^0.012^~1~^~A~^^^1^0.586^0.632^2^0.557^0.673^~2, 3~^~05/01/2011~ -~01042~^~608~^0.509^5^0.004^~1~^~A~^^^1^0.502^0.518^1^0.454^0.564^~2, 3~^~05/01/2011~ -~01042~^~609~^0.332^5^0.004^~1~^~A~^^^1^0.325^0.352^2^0.313^0.351^~2, 3~^~05/01/2011~ -~01042~^~610~^0.802^5^0.006^~1~^~A~^^^1^0.776^0.815^2^0.777^0.827^~2, 3~^~05/01/2011~ -~01042~^~611~^0.884^5^0.013^~1~^~A~^^^1^0.829^0.912^1^0.783^0.985^~2, 3~^~05/01/2011~ -~01042~^~612~^2.937^5^0.027^~1~^~A~^^^1^2.840^2.982^2^2.818^3.056^~2, 3~^~05/01/2011~ -~01042~^~613~^8.161^5^0.081^~1~^~A~^^^1^8.042^8.299^1^7.148^9.173^~2, 3~^~05/01/2011~ -~01042~^~614~^3.222^5^0.056^~1~^~A~^^^1^3.004^3.422^1^2.672^3.772^~2, 3~^~05/01/2011~ -~01042~^~615~^0.047^5^0.002^~1~^~A~^^^1^0.027^0.063^1^0.019^0.074^~2, 3~^~05/01/2011~ -~01042~^~617~^7.204^5^0.046^~1~^~AS~^^^1^7.014^7.394^1^6.624^7.784^~2, 3~^~05/01/2011~ -~01042~^~618~^1.003^5^0.022^~1~^~AS~^^^1^0.958^1.114^1^0.846^1.160^~2, 3~^~05/01/2011~ -~01042~^~619~^0.138^5^0.003^~1~^~AS~^^^1^0.133^0.159^1^0.095^0.180^~2, 3~^~05/01/2011~ -~01042~^~620~^0.045^5^0.001^~1~^~A~^^^1^0.041^0.047^2^0.040^0.051^~2, 3~^~05/01/2011~ -~01042~^~621~^0.006^5^0.001^~1~^~A~^^^1^0.003^0.009^1^-0.007^0.019^~2, 3~^~05/01/2011~ -~01042~^~624~^0.021^5^0.001^~1~^~A~^^^1^0.019^0.022^2^0.018^0.023^~2, 3~^~05/01/2011~ -~01042~^~625~^0.245^5^0.005^~1~^~A~^^^1^0.222^0.254^1^0.211^0.278^~2, 3~^~05/01/2011~ -~01042~^~626~^0.500^5^0.014^~1~^~AS~^^^1^0.478^0.522^1^0.382^0.618^~2, 3~^~05/01/2011~ -~01042~^~627~^0.007^5^0.000^~1~^~A~^^^1^0.007^0.008^1^0.005^0.010^~2, 3~^~05/01/2011~ -~01042~^~628~^0.224^5^0.006^~1~^~A~^^^1^0.205^0.236^2^0.195^0.254^~2, 3~^~05/01/2011~ -~01042~^~629~^0.012^5^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.014^~2, 3~^~05/01/2011~ -~01042~^~630~^0.001^5^0.001^~1~^~AS~^^^1^0.000^0.003^1^-0.007^0.010^~2, 3~^~05/01/2011~ -~01042~^~631~^0.021^5^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.023^~2, 3~^~05/01/2011~ -~01042~^~645~^8.236^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~646~^1.286^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~652~^0.311^5^0.002^~1~^~A~^^^1^0.308^0.313^1^0.296^0.326^~2, 3~^~05/01/2011~ -~01042~^~653~^0.190^5^0.000^~1~^~A~^^^1^0.189^0.191^^^^~2, 3~^~05/01/2011~ -~01042~^~654~^0.009^5^0.000^~1~^~A~^^^1^0.009^0.010^1^0.007^0.011^~2, 3~^~05/01/2011~ -~01042~^~662~^0.106^5^0.000^~1~^~A~^^^1^0.101^0.108^1^0.102^0.110^~2, 3~^~05/01/2011~ -~01042~^~663~^0.844^5^0.005^~1~^~A~^^^1^0.803^0.887^1^0.779^0.909^~2, 3~^~05/01/2011~ -~01042~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.003^0.004^~1, 2, 3~^~05/01/2011~ -~01042~^~665~^0.194^5^0.006^~1~^~A~^^^1^0.179^0.238^1^0.147^0.242^~2, 3~^~05/01/2011~ -~01042~^~670~^0.018^5^0.001^~1~^~A~^^^1^0.014^0.023^1^0.013^0.024^~2, 3~^~05/01/2011~ -~01042~^~671~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~05/01/2011~ -~01042~^~672~^0.009^5^0.000^~1~^~A~^^^1^0.008^0.009^1^0.006^0.011^~2, 3~^~05/01/2011~ -~01042~^~673~^0.394^5^0.014^~1~^~A~^^^1^0.370^0.419^1^0.272^0.517^~2, 3~^~05/01/2011~ -~01042~^~674~^6.360^5^0.047^~1~^~A~^^^1^6.207^6.528^1^5.823^6.897^~2, 3~^~05/01/2011~ -~01042~^~675~^0.790^5^0.016^~1~^~A~^^^1^0.759^0.879^1^0.668^0.913^~2, 3~^~05/01/2011~ -~01042~^~676~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.011^0.013^~1, 2, 3~^~05/01/2011~ -~01042~^~685~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~687~^0.061^5^0.001^~1~^~A~^^^1^0.060^0.064^2^0.057^0.065^~2, 3~^~05/01/2011~ -~01042~^~689~^0.034^5^0.001^~1~^~AS~^^^1^0.032^0.040^1^0.023^0.046^~2, 3~^~05/01/2011~ -~01042~^~693~^0.950^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~695~^0.194^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01042~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01042~^~851~^0.137^5^0.003^~1~^~A~^^^1^0.133^0.156^1^0.094^0.179^~2, 3~^~05/01/2011~ -~01042~^~853~^0.033^5^0.001^~1~^~A~^^^1^0.030^0.039^1^0.020^0.047^~2, 3~^~05/01/2011~ -~01042~^~858~^0.008^5^0.000^~1~^~A~^^^1^0.007^0.010^1^0.004^0.012^~2, 3~^~05/01/2011~ -~01043~^~312~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~315~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~404~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~405~^0.354^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~406~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~410~^0.485^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~415~^0.071^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~501~^0.323^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~502~^0.718^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~503~^1.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~504~^1.956^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~505~^2.196^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~506~^0.572^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~507~^0.142^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~508~^1.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~509~^1.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~510~^1.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~511~^0.926^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~512~^0.902^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~513~^0.555^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~514~^1.360^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~515~^4.592^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~516~^0.364^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~517~^2.251^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~518~^1.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~606~^19.663^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~607~^1.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~608~^0.355^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~609~^0.374^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~610~^0.641^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~611~^0.483^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~612~^3.206^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~613~^9.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~614~^3.790^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~617~^7.499^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~618~^0.606^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~619~^0.382^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~626~^1.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01043~^~645~^8.937^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01043~^~646~^0.988^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~312~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~315~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~404~^0.014^6^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~405~^0.276^8^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~406~^0.038^7^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~410~^0.260^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~415~^0.036^7^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~501~^0.360^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~502~^0.802^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~503~^1.143^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~504~^2.186^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~505~^2.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~506~^0.640^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~507~^0.159^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~508~^1.256^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~509~^1.353^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~510~^1.481^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~511~^1.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~512~^1.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~513~^0.620^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~514~^1.519^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~515~^5.132^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~516~^0.407^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~517~^2.516^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~518~^1.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~606~^16.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~607~^0.815^5^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~608~^0.489^5^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~609~^0.275^11^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~610~^0.572^12^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~611~^0.566^12^0.072^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~612~^2.792^12^0.058^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~613~^7.188^12^0.210^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~614~^2.602^12^0.085^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~617~^5.896^12^0.122^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~618~^0.342^12^0.033^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~619~^0.280^11^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~626~^0.677^12^0.064^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01044~^~645~^7.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01044~^~646~^0.622^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~312~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~315~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~404~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~405~^0.446^8^0.042^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~406~^0.074^20^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~410~^0.977^32^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~415~^0.141^26^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~501~^0.287^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~502~^0.638^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~503~^0.909^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~504~^1.738^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~505~^1.951^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~506~^0.509^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~507~^0.126^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~508~^0.999^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~509~^1.076^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~510~^1.177^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~511~^0.823^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~512~^0.801^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~513~^0.493^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~514~^1.208^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~515~^4.080^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~516~^0.324^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~517~^2.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~518~^0.949^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~606~^15.355^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~607~^0.793^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~608~^0.470^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~609~^0.358^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~610~^0.591^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~611~^0.728^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~612~^2.513^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~613~^6.807^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~614~^2.805^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~617~^6.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~618~^0.461^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~619~^0.257^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01045~^~626~^0.646^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~645~^7.165^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01045~^~646~^0.719^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01046~^~312~^0.034^10^0.003^~1~^~A~^^^1^0.026^0.062^9^0.027^0.041^~2, 3~^~05/01/2011~ -~01046~^~315~^0.025^10^0.003^~1~^~A~^^^1^0.015^0.048^9^0.018^0.033^~2, 3~^~05/01/2011~ -~01046~^~404~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~05/01/2011~ -~01046~^~405~^0.360^3^0.020^~1~^~A~^^^1^0.340^0.400^2^0.274^0.446^~2, 3~^~05/01/2011~ -~01046~^~406~^0.155^2^^~1~^~A~^^^1^0.130^0.180^1^^^^~05/01/2011~ -~01046~^~410~^0.855^2^^~1~^~A~^^^1^0.760^0.950^1^^^^~05/01/2011~ -~01046~^~415~^0.102^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~501~^0.241^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~502~^0.720^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~503~^0.858^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~504~^1.592^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~505~^1.302^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~506~^0.380^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~507~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~508~^0.829^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~509~^0.833^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~510~^1.010^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~511~^0.613^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~512~^0.448^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~513~^0.518^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~514~^1.191^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~515~^3.495^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~516~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~517~^1.847^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~518~^0.932^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01046~^~605~^0.917^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~606~^15.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~607~^0.515^3^0.029^~1~^~A~^^^1^0.457^0.546^2^0.390^0.641^~2, 3~^~05/01/2011~ -~01046~^~608~^0.444^3^0.002^~1~^~A~^^^1^0.440^0.448^2^0.434^0.454^~2, 3~^~05/01/2011~ -~01046~^~609~^0.276^3^0.011^~1~^~A~^^^1^0.254^0.292^2^0.227^0.325^~2, 3~^~05/01/2011~ -~01046~^~610~^0.664^3^0.027^~1~^~A~^^^1^0.610^0.699^2^0.546^0.781^~2, 3~^~05/01/2011~ -~01046~^~611~^0.743^3^0.039^~1~^~A~^^^1^0.666^0.793^2^0.575^0.912^~2, 3~^~05/01/2011~ -~01046~^~612~^2.473^3^0.127^~1~^~A~^^^1^2.219^2.618^2^1.925^3.020^~2, 3~^~05/01/2011~ -~01046~^~613~^6.837^3^0.380^~1~^~A~^^^1^6.080^7.276^2^5.201^8.473^~2, 3~^~05/01/2011~ -~01046~^~614~^2.601^3^0.134^~1~^~A~^^^1^2.341^2.788^2^2.024^3.178^~2, 3~^~05/01/2011~ -~01046~^~615~^0.039^3^0.003^~1~^~A~^^^1^0.032^0.043^2^0.024^0.053^~2, 3~^~05/01/2011~ -~01046~^~617~^5.947^3^0.345^~1~^~AS~^^^1^5.286^6.450^2^4.462^7.432^~2, 3~^~05/01/2011~ -~01046~^~618~^0.806^3^0.061^~1~^~AS~^^^1^0.707^0.917^2^0.544^1.068^~2, 3~^~05/01/2011~ -~01046~^~619~^0.123^3^0.010^~1~^~AS~^^^1^0.107^0.140^2^0.082^0.164^~2, 3~^~05/01/2011~ -~01046~^~620~^0.036^3^0.004^~1~^~A~^^^1^0.032^0.043^2^0.021^0.051^~2, 3~^~05/01/2011~ -~01046~^~621~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~05/01/2011~ -~01046~^~624~^0.018^3^0.002^~1~^~A~^^^1^0.015^0.021^2^0.010^0.025^~2, 3~^~05/01/2011~ -~01046~^~625~^0.210^3^0.012^~1~^~A~^^^1^0.187^0.225^2^0.160^0.260^~2, 3~^~05/01/2011~ -~01046~^~626~^0.445^3^0.026^~1~^~AS~^^^1^0.394^0.473^2^0.335^0.556^~2, 3~^~05/01/2011~ -~01046~^~627~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~05/01/2011~ -~01046~^~628~^0.190^3^0.013^~1~^~A~^^^1^0.165^0.207^2^0.135^0.244^~2, 3~^~05/01/2011~ -~01046~^~629~^0.008^3^0.004^~1~^~A~^^^1^0.000^0.014^2^-0.010^0.025^~1, 2, 3~^~05/01/2011~ -~01046~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~02/01/1995~ -~01046~^~631~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~05/01/2011~ -~01046~^~645~^6.846^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~646~^1.049^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~652~^0.263^3^0.014^~1~^~A~^^^1^0.235^0.279^2^0.202^0.324^~2, 3~^~05/01/2011~ -~01046~^~653~^0.161^3^0.008^~1~^~A~^^^1^0.145^0.169^2^0.127^0.195^~2, 3~^~05/01/2011~ -~01046~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.004^0.012^~2, 3~^~05/01/2011~ -~01046~^~662~^0.087^3^0.007^~1~^~A~^^^1^0.073^0.098^2^0.055^0.119^~2, 3~^~05/01/2011~ -~01046~^~663~^0.670^3^0.041^~1~^~A~^^^1^0.596^0.737^2^0.494^0.846^~2, 3~^~05/01/2011~ -~01046~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2011~ -~01046~^~665~^0.159^3^0.015^~1~^~A~^^^1^0.129^0.175^2^0.094^0.224^~2, 3~^~05/01/2011~ -~01046~^~670~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2011~ -~01046~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~05/01/2011~ -~01046~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~05/01/2011~ -~01046~^~673~^0.358^3^0.019^~1~^~A~^^^1^0.321^0.379^2^0.278^0.439^~2, 3~^~05/01/2011~ -~01046~^~674~^5.277^3^0.305^~1~^~A~^^^1^4.690^5.713^2^3.966^6.588^~2, 3~^~05/01/2011~ -~01046~^~675~^0.630^3^0.049^~1~^~A~^^^1^0.561^0.724^2^0.420^0.840^~2, 3~^~05/01/2011~ -~01046~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2011~ -~01046~^~687~^0.053^3^0.003^~1~^~A~^^^1^0.047^0.058^2^0.039^0.067^~2, 3~^~05/01/2011~ -~01046~^~689~^0.028^3^0.002^~1~^~AS~^^^1^0.025^0.032^2^0.020^0.037^~2, 3~^~05/01/2011~ -~01046~^~693~^0.758^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~695~^0.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01046~^~696~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.023^0.027^~2, 3~^~02/01/2003~ -~01046~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01046~^~851~^0.121^3^0.009^~1~^~A~^^^1^0.105^0.137^2^0.081^0.160^~2, 3~^~05/01/2011~ -~01046~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2011~ -~01046~^~853~^0.027^3^0.002^~1~^~A~^^^1^0.025^0.030^2^0.020^0.034^~2, 3~^~05/01/2011~ -~01046~^~858~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2011~ -~01047~^~312~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~315~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~404~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~405~^0.400^10^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~406~^0.104^7^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~410~^0.500^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01047~^~415~^0.035^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~501~^0.319^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~502~^0.711^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~503~^1.013^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~504~^1.938^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~505~^2.175^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~506~^0.567^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~507~^0.141^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~508~^1.113^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~509~^1.199^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~510~^1.313^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~511~^0.917^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~512~^0.893^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~513~^0.550^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~514~^1.346^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~515~^4.549^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~516~^0.361^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~517~^2.230^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~518~^1.058^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~606~^15.487^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~607~^0.787^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~608~^0.472^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~609~^0.265^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~610~^0.552^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~611~^0.546^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~612~^2.695^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~613~^6.938^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~614~^2.511^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~617~^5.691^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~618~^0.330^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~619~^0.270^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~626~^0.653^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~645~^6.801^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01047~^~646~^0.600^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01048~^~312~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~404~^0.048^9^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~405~^0.431^11^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~406~^0.131^32^0.011^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~410~^0.686^15^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~415~^0.117^24^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~501~^0.239^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01048~^~502~^0.628^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~503~^0.833^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~504~^1.780^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~505~^1.507^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~506~^0.538^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~507~^0.105^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01048~^~508~^0.931^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~509~^0.890^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~510~^1.366^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~511~^0.545^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~512~^0.509^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~513~^0.602^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~514~^1.103^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~515~^3.475^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~516~^0.311^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~517~^2.320^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~518~^1.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~606~^13.327^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~607~^0.688^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~608~^0.408^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~609~^0.311^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~610~^0.513^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~611~^0.632^4^0.044^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~612~^2.181^4^0.077^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~613~^5.908^4^0.137^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~614~^2.434^4^0.108^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~617~^5.221^4^0.179^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~618~^0.400^4^0.040^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~619~^0.223^3^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~626~^0.560^4^0.044^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01048~^~645~^6.219^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01048~^~646~^0.624^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01049~^~312~^0.009^10^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~315~^0.005^10^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~404~^0.030^6^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~01/01/2015~ -~01049~^~405~^0.194^6^0.014^~1~^~A~^^^1^0.170^0.220^2^0.136^0.251^~2, 3~^~01/01/2015~ -~01049~^~406~^0.109^6^0.000^~1~^~A~^^^1^0.090^0.110^2^0.107^0.111^~2, 3~^~01/01/2015~ -~01049~^~410~^0.539^4^0.019^~1~^~A~^^^1^0.520^0.560^1^0.302^0.775^~2, 3~^~01/01/2015~ -~01049~^~415~^0.050^6^0.001^~1~^~A~^^^1^0.048^0.057^2^0.046^0.055^~2, 3~^~01/01/2015~ -~01049~^~501~^0.073^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~502~^0.139^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~503~^0.160^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~504~^0.258^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~505~^0.136^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~506~^0.073^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~507~^0.016^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~508~^0.143^0^^~1~^~A~^^^^^^^^^^~11/01/1976~ -~01049~^~509~^0.147^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~510~^0.187^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~511~^0.073^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~512~^0.073^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~513~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~514~^0.230^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~515~^0.629^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~516~^0.073^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~517~^0.332^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~518~^0.104^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01049~^~605~^0.464^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~606~^7.032^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~607~^0.247^4^0.006^~1~^~A~^^^1^0.225^0.259^1^0.187^0.306^~2, 3~^~01/01/2015~ -~01049~^~608~^0.202^4^0.002^~1~^~A~^^^1^0.183^0.205^1^0.182^0.222^~2, 3~^~01/01/2015~ -~01049~^~609~^0.127^4^0.001^~1~^~A~^^^1^0.116^0.129^1^0.120^0.135^~2, 3~^~01/01/2015~ -~01049~^~610~^0.303^4^0.001^~1~^~A~^^^1^0.273^0.306^1^0.292^0.313^~2, 3~^~01/01/2015~ -~01049~^~611~^0.351^4^0.001^~1~^~A~^^^1^0.319^0.354^2^0.348^0.354^~2, 3~^~01/01/2015~ -~01049~^~612~^1.148^4^0.004^~1~^~A~^^^1^1.040^1.157^2^1.132^1.164^~2, 3~^~01/01/2015~ -~01049~^~613~^3.207^4^0.020^~1~^~A~^^^1^2.903^3.239^2^3.092^3.322^~2, 3~^~01/01/2015~ -~01049~^~614~^1.221^4^0.068^~1~^~A~^^^1^1.054^1.350^1^0.449^1.992^~2, 3~^~01/01/2015~ -~01049~^~615~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.017^1^-0.002^0.033^~2, 3~^~01/01/2015~ -~01049~^~617~^2.905^4^0.205^~1~^~AS~^^^1^2.431^3.145^1^0.364^5.446^~2, 3~^~01/01/2015~ -~01049~^~618~^0.466^4^0.031^~1~^~AS~^^^1^0.426^0.500^1^0.080^0.852^~2, 3~^~01/01/2015~ -~01049~^~619~^0.041^4^0.001^~1~^~AS~^^^1^0.029^0.043^1^0.025^0.057^~2, 3~^~01/01/2015~ -~01049~^~620~^0.018^4^0.001^~1~^~A~^^^1^0.017^0.021^1^0.002^0.035^~2, 3~^~01/01/2015~ -~01049~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01049~^~624~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^1^-0.001^0.010^~2, 3~^~01/01/2015~ -~01049~^~625~^0.124^4^0.003^~1~^~A~^^^1^0.110^0.128^1^0.082^0.165^~2, 3~^~01/01/2015~ -~01049~^~626~^0.246^4^0.006^~1~^~AS~^^^1^0.215^0.254^1^0.177^0.315^~2, 3~^~01/01/2015~ -~01049~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01049~^~628~^0.020^4^0.001^~1~^~A~^^^1^0.016^0.022^1^0.003^0.038^~2, 3~^~01/01/2015~ -~01049~^~629~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~01049~^~631~^0.006^4^0.000^~1~^~A~^^^1^0.004^0.007^1^0.001^0.012^~2, 3~^~01/01/2015~ -~01049~^~645~^3.320^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~646~^0.554^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~652~^0.126^4^0.004^~1~^~A~^^^1^0.107^0.132^1^0.074^0.179^~2, 3~^~01/01/2015~ -~01049~^~653~^0.076^4^0.005^~1~^~A~^^^1^0.062^0.083^1^0.012^0.141^~2, 3~^~01/01/2015~ -~01049~^~654~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~662~^0.041^4^0.002^~1~^~A~^^^1^0.037^0.043^1^0.018^0.064^~2, 3~^~01/01/2015~ -~01049~^~663~^0.339^4^0.035^~1~^~A~^^^1^0.289^0.378^1^-0.096^0.774^~2, 3~^~01/01/2015~ -~01049~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~665~^0.083^4^0.005^~1~^~A~^^^1^0.073^0.088^1^0.025^0.140^~2, 3~^~01/01/2015~ -~01049~^~670~^0.069^4^0.006^~1~^~A~^^^1^0.061^0.075^1^0.000^0.138^~2, 3~^~01/01/2015~ -~01049~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^1^0.003^0.003^~1, 2, 3~^~01/01/2015~ -~01049~^~673~^0.205^4^0.004^~1~^~A~^^^1^0.178^0.211^1^0.158^0.252^~2, 3~^~01/01/2015~ -~01049~^~674~^2.566^4^0.171^~1~^~A~^^^1^2.142^2.767^1^0.460^4.672^~2, 3~^~01/01/2015~ -~01049~^~675~^0.314^4^0.021^~1~^~A~^^^1^0.292^0.337^1^0.055^0.574^~2, 3~^~01/01/2015~ -~01049~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~687~^0.025^4^0.002^~1~^~A~^^^1^0.020^0.028^1^-0.004^0.055^~2, 3~^~01/01/2015~ -~01049~^~689~^0.014^4^0.000^~1~^~AS~^^^1^0.012^0.014^1^0.013^0.015^~2, 3~^~01/01/2015~ -~01049~^~693~^0.380^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~695~^0.084^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01049~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~851~^0.040^4^0.001^~1~^~A~^^^1^0.027^0.042^1^0.024^0.056^~2, 3~^~01/01/2015~ -~01049~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~853~^0.014^4^0.000^~1~^~A~^^^1^0.012^0.014^1^0.013^0.015^~2, 3~^~01/01/2015~ -~01049~^~856~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~01/01/2015~ -~01049~^~858~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^1^0.002^0.004^~1, 2, 3~^~01/01/2015~ -~01050~^~312~^0.012^3^0.003^~1~^~A~^^^1^0.009^0.018^2^-0.001^0.025^~1, 2, 3~^~01/01/2015~ -~01050~^~315~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~01/01/2015~ -~01050~^~404~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~01/01/2015~ -~01050~^~405~^0.190^3^0.006^~1~^~A~^^^1^0.180^0.200^2^0.165^0.215^~2, 3~^~01/01/2015~ -~01050~^~406~^0.090^3^0.000^~1~^~A~^^^1^0.090^0.090^^^^~2, 3~^~01/01/2015~ -~01050~^~410~^0.440^3^0.006^~1~^~A~^^^1^0.430^0.450^2^0.415^0.465^~2, 3~^~01/01/2015~ -~01050~^~415~^0.044^3^0.001^~1~^~A~^^^1^0.042^0.046^2^0.038^0.049^~2, 3~^~01/01/2015~ -~01050~^~501~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~503~^0.151^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~504~^0.243^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~505~^0.129^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~506~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~507~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~508~^0.135^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~509~^0.139^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~510~^0.176^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~511~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~512~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~513~^0.094^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~514~^0.218^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~515~^0.594^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~516~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~517~^0.313^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~518~^0.098^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01050~^~605~^0.625^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~606~^10.176^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~607~^0.388^2^^~1~^~A~^^^1^0.361^0.414^1^^^^~01/01/2015~ -~01050~^~608~^0.314^2^^~1~^~A~^^^1^0.295^0.333^1^^^^~01/01/2015~ -~01050~^~609~^0.194^2^^~1~^~A~^^^1^0.183^0.206^1^^^^~01/01/2015~ -~01050~^~610~^0.456^2^^~1~^~A~^^^1^0.431^0.481^1^^^^~01/01/2015~ -~01050~^~611~^0.526^2^^~1~^~A~^^^1^0.501^0.551^1^^^^~01/01/2015~ -~01050~^~612~^1.682^2^^~1~^~A~^^^1^1.606^1.758^1^^^^~01/01/2015~ -~01050~^~613~^4.585^2^^~1~^~A~^^^1^4.532^4.639^1^^^^~01/01/2015~ -~01050~^~614~^1.719^2^^~1~^~A~^^^1^1.616^1.823^1^^^^~01/01/2015~ -~01050~^~615~^0.023^2^^~1~^~A~^^^1^0.022^0.024^1^^^^~01/01/2015~ -~01050~^~617~^3.952^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~618~^0.654^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~619~^0.064^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~620~^0.027^2^^~1~^~A~^^^1^0.026^0.029^1^^^^~01/01/2015~ -~01050~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~01050~^~624~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~01/01/2015~ -~01050~^~625~^0.175^2^^~1~^~A~^^^1^0.170^0.179^1^^^^~01/01/2015~ -~01050~^~626~^0.334^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~01050~^~628~^0.030^2^^~1~^~A~^^^1^0.029^0.032^1^^^^~01/01/2015~ -~01050~^~629~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~01/01/2015~ -~01050~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~631~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~01/01/2015~ -~01050~^~645~^4.525^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~646~^0.789^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~652~^0.174^2^^~1~^~A~^^^1^0.169^0.180^1^^^^~01/01/2015~ -~01050~^~653~^0.103^2^^~1~^~A~^^^1^0.099^0.108^1^^^^~01/01/2015~ -~01050~^~654~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2015~ -~01050~^~662~^0.054^2^^~1~^~A~^^^1^0.052^0.056^1^^^^~01/01/2015~ -~01050~^~663~^0.443^2^^~1~^~A~^^^1^0.399^0.487^1^^^^~01/01/2015~ -~01050~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2015~ -~01050~^~665~^0.126^2^^~1~^~A~^^^1^0.122^0.130^1^^^^~01/01/2015~ -~01050~^~670~^0.095^2^^~1~^~A~^^^1^0.088^0.103^1^^^^~01/01/2015~ -~01050~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2015~ -~01050~^~672~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2015~ -~01050~^~673~^0.280^2^^~1~^~A~^^^1^0.274^0.287^1^^^^~01/01/2015~ -~01050~^~674~^3.509^2^^~1~^~A~^^^1^3.327^3.691^1^^^^~01/01/2015~ -~01050~^~675~^0.433^2^^~1~^~A~^^^1^0.384^0.481^1^^^^~01/01/2015~ -~01050~^~676~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2015~ -~01050~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2015~ -~01050~^~687~^0.032^2^^~1~^~A~^^^1^0.031^0.034^1^^^^~01/01/2015~ -~01050~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~01050~^~693~^0.497^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~695~^0.128^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01050~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2015~ -~01050~^~851~^0.062^2^^~1~^~A~^^^1^0.060^0.065^1^^^^~01/01/2015~ -~01050~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2015~ -~01050~^~853~^0.018^2^^~1~^~A~^^^1^0.017^0.020^1^^^^~01/01/2015~ -~01050~^~856~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2015~ -~01050~^~858~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2015~ -~01052~^~312~^0.007^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~315~^0.001^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~404~^0.024^9^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~405~^0.125^8^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~406~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~410~^0.259^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~415~^0.028^8^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~501~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~502~^0.098^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~503~^0.131^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~504~^0.213^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~505~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~506~^0.054^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~507~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~508~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~509~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~510~^0.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~511~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~512~^0.059^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~513~^0.075^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~514~^0.165^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~515~^0.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~516~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~517~^0.210^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~518~^0.118^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~606~^19.337^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~607~^1.083^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~608~^0.302^9^0.028^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~609~^0.309^9^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~610~^0.629^9^0.038^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~611~^0.366^9^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~612~^3.290^9^0.191^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~613~^8.840^9^0.338^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~614~^3.370^9^0.175^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~617~^7.658^9^0.292^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~618~^0.618^9^0.050^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~619~^0.266^9^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~626~^1.010^9^0.042^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01052~^~645~^9.093^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01052~^~646~^0.884^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01053~^~312~^0.011^9^0.001^~1~^~A~^^^1^0.009^0.020^6^0.007^0.014^~1, 2, 3~^~01/01/2015~ -~01053~^~315~^0.006^9^0.000^~1~^~A~^^^1^0.005^0.009^6^0.005^0.007^~1, 2, 3~^~01/01/2015~ -~01053~^~404~^0.020^6^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~01/01/2015~ -~01053~^~405~^0.188^6^0.007^~1~^~A~^^^1^0.130^0.210^4^0.168^0.208^~2, 3~^~01/01/2015~ -~01053~^~406~^0.064^6^0.003^~1~^~A~^^^1^0.050^0.070^3^0.056^0.073^~2, 3~^~01/01/2015~ -~01053~^~410~^0.495^4^0.021^~1~^~A~^^^1^0.430^0.540^2^0.403^0.587^~2, 3~^~01/01/2015~ -~01053~^~415~^0.035^6^0.002^~1~^~A~^^^1^0.030^0.040^3^0.030^0.040^~2, 3~^~01/01/2015~ -~01053~^~501~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~502~^0.126^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~503~^0.146^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~504~^0.234^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~505~^0.124^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~506~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~507~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~508~^0.130^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~509~^0.134^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~510~^0.170^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~511~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~512~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~513~^0.091^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~514~^0.209^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~515~^0.572^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~516~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~517~^0.302^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~518~^0.094^0^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~01053~^~605~^1.236^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~606~^23.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01053~^~607~^0.732^6^0.017^~1~^~A~^^^1^0.674^0.813^3^0.677^0.787^~2, 3~^~01/01/2015~ -~01053~^~608~^0.609^6^0.012^~1~^~A~^^^1^0.572^0.704^3^0.572^0.647^~2, 3~^~01/01/2015~ -~01053~^~609~^0.384^6^0.006^~1~^~A~^^^1^0.367^0.448^4^0.366^0.402^~2, 3~^~01/01/2015~ -~01053~^~610~^0.905^6^0.013^~1~^~A~^^^1^0.870^1.072^4^0.869^0.941^~2, 3~^~01/01/2015~ -~01053~^~611~^1.050^6^0.019^~1~^~A~^^^1^0.996^1.264^4^0.996^1.103^~2, 3~^~01/01/2015~ -~01053~^~612~^3.331^6^0.098^~1~^~A~^^^1^3.034^3.950^3^3.030^3.632^~2, 3~^~01/01/2015~ -~01053~^~613~^9.298^6^0.387^~1~^~A~^^^1^8.086^10.651^3^8.073^10.523^~2, 3~^~01/01/2015~ -~01053~^~614~^3.572^6^0.073^~1~^~A~^^^1^3.377^4.047^3^3.349^3.796^~2, 3~^~01/01/2015~ -~01053~^~615~^0.047^6^0.001^~1~^~A~^^^1^0.043^0.060^4^0.043^0.051^~2, 3~^~01/01/2015~ -~01053~^~617~^7.968^6^0.130^~1~^~AS~^^^1^7.561^8.792^3^7.577^8.359^~2, 3~^~01/01/2015~ -~01053~^~618~^1.294^6^0.024^~1~^~AS~^^^1^1.198^1.497^4^1.227^1.361^~2, 3~^~01/01/2015~ -~01053~^~619~^0.128^6^0.008^~1~^~AS~^^^1^0.100^0.211^4^0.107^0.149^~2, 3~^~01/01/2015~ -~01053~^~620~^0.058^6^0.001^~1~^~A~^^^1^0.051^0.061^4^0.054^0.061^~2, 3~^~01/01/2015~ -~01053~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01053~^~624~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.021^4^0.013^0.018^~2, 3~^~01/01/2015~ -~01053~^~625~^0.344^6^0.018^~1~^~A~^^^1^0.296^0.420^3^0.286^0.401^~2, 3~^~01/01/2015~ -~01053~^~626~^0.656^6^0.038^~1~^~AS~^^^1^0.549^0.744^3^0.537^0.776^~2, 3~^~01/01/2015~ -~01053~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01053~^~628~^0.065^6^0.002^~1~^~A~^^^1^0.060^0.077^3^0.060^0.070^~2, 3~^~01/01/2015~ -~01053~^~629~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.017^4^0.006^0.012^~2, 3~^~01/01/2015~ -~01053~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.007^4^0.002^0.004^~2, 3~^~01/01/2015~ -~01053~^~631~^0.020^6^0.001^~1~^~A~^^^1^0.015^0.030^4^0.016^0.025^~2, 3~^~01/01/2015~ -~01053~^~645~^9.101^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~646~^1.570^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~652~^0.353^6^0.014^~1~^~A~^^^1^0.310^0.422^3^0.311^0.396^~2, 3~^~01/01/2015~ -~01053~^~653~^0.210^6^0.008^~1~^~A~^^^1^0.185^0.249^3^0.185^0.236^~2, 3~^~01/01/2015~ -~01053~^~654~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.013^3^0.007^0.011^~2, 3~^~01/01/2015~ -~01053~^~662~^0.109^6^0.006^~1~^~A~^^^1^0.089^0.131^3^0.090^0.129^~2, 3~^~01/01/2015~ -~01053~^~663~^0.891^6^0.014^~1~^~A~^^^1^0.856^1.103^4^0.851^0.930^~2, 3~^~01/01/2015~ -~01053~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~665~^0.232^6^0.004^~1~^~A~^^^1^0.211^0.249^4^0.221^0.243^~2, 3~^~01/01/2015~ -~01053~^~670~^0.188^6^0.005^~1~^~A~^^^1^0.176^0.227^3^0.173^0.203^~2, 3~^~01/01/2015~ -~01053~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~672~^0.008^6^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~01/01/2015~ -~01053~^~673~^0.547^6^0.032^~1~^~A~^^^1^0.460^0.624^3^0.447^0.648^~2, 3~^~01/01/2015~ -~01053~^~674~^7.078^6^0.131^~1~^~A~^^^1^6.658^7.689^3^6.673^7.482^~2, 3~^~01/01/2015~ -~01053~^~675~^0.874^6^0.021^~1~^~A~^^^1^0.770^1.021^4^0.814^0.933^~2, 3~^~01/01/2015~ -~01053~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.007^4^0.002^0.004^~1, 2, 3~^~01/01/2015~ -~01053~^~685~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.004^~1, 2, 3~^~01/01/2015~ -~01053~^~687~^0.065^6^0.003^~1~^~A~^^^1^0.055^0.075^3^0.054^0.076^~2, 3~^~01/01/2015~ -~01053~^~689~^0.041^6^0.000^~1~^~AS~^^^1^0.039^0.042^3^0.040^0.042^~2, 3~^~01/01/2015~ -~01053~^~693~^1.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~695~^0.236^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~ -~01053~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2015~ -~01053~^~851~^0.122^6^0.007^~1~^~A~^^^1^0.096^0.202^4^0.102^0.142^~2, 3~^~01/01/2015~ -~01053~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^1^0.000^0.004^~1, 2, 3~^~01/01/2015~ -~01053~^~853~^0.039^6^0.000^~1~^~A~^^^1^0.035^0.042^4^0.038^0.040^~2, 3~^~01/01/2015~ -~01053~^~856~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~01/01/2015~ -~01053~^~858~^0.010^6^0.000^~1~^~A~^^^1^0.008^0.011^3^0.009^0.011^~2, 3~^~01/01/2015~ -~01054~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~315~^0.001^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~404~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~405~^0.065^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~406~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~410~^0.305^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~415~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~501~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~502~^0.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~503~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~504~^0.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~505~^0.254^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~506~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~507~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~508~^0.154^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~509~^0.154^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~510~^0.214^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~511~^0.116^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~512~^0.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~513~^0.110^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~514~^0.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~515~^0.670^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~516~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~517~^0.310^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~518~^0.174^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~606~^13.831^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~607~^0.721^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~608~^0.427^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~609~^0.248^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~610~^0.557^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~611~^0.624^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~612~^2.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~613~^5.844^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~614~^2.693^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~617~^5.590^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~618~^0.502^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~619~^0.323^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~626~^0.498^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01054~^~645~^6.418^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01054~^~646~^0.825^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~315~^0.003^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~404~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~405~^0.149^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~406~^0.067^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~410~^0.363^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~415~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~501~^0.041^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~502~^0.133^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~503~^0.178^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~504~^0.288^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~505~^0.233^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~506~^0.074^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~507~^0.027^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~508~^0.142^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~509~^0.142^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~510~^0.197^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~511~^0.106^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~512~^0.080^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~513~^0.101^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~514~^0.223^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~515~^0.616^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~516~^0.063^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~517~^0.285^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~518~^0.160^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01055~^~606~^7.470^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~607~^0.389^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~608~^0.230^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~609~^0.134^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~610~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~611~^0.337^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~612~^1.207^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~613~^3.156^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~614~^1.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~617~^3.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~618~^0.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~619~^0.175^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~626~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01055~^~645~^3.466^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01055~^~646~^0.446^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01056~^~312~^0.018^10^0.000^~1~^~A~^^^1^0.018^0.019^8^0.018^0.018^~1, 2, 3~^~02/01/2015~ -~01056~^~315~^0.015^10^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~02/01/2015~ -~01056~^~404~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~02/01/2015~ -~01056~^~405~^0.168^4^0.004^~1~^~A~^^^1^0.160^0.180^1^0.138^0.198^~2, 3~^~02/01/2015~ -~01056~^~406~^0.093^4^0.001^~1~^~A~^^^1^0.070^0.100^1^0.076^0.110^~2, 3~^~02/01/2015~ -~01056~^~410~^0.472^4^0.026^~1~^~A~^^^1^0.370^0.520^2^0.344^0.600^~2, 3~^~02/01/2015~ -~01056~^~415~^0.041^4^0.002^~1~^~A~^^^1^0.037^0.047^1^0.026^0.055^~2, 3~^~02/01/2015~ -~01056~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~502~^0.142^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~503~^0.163^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~504~^0.322^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~505~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~506~^0.078^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~508~^0.157^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~509~^0.152^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~510~^0.195^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~511~^0.117^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~512~^0.092^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~513~^0.116^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~514~^0.262^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~515~^0.673^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~516~^0.076^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~517~^0.310^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~518~^0.191^0^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~01056~^~605~^0.796^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~606~^10.140^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~607~^0.031^6^0.007^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~608~^0.203^6^0.008^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~609~^0.145^6^0.003^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~610~^0.378^6^0.010^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~611~^0.447^6^0.013^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~612~^1.626^6^0.024^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~613~^5.154^6^0.125^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~614~^1.832^6^0.058^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~615~^0.027^6^0.001^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~617~^4.129^6^0.087^~1~^~AS~^^^1^^^^^^^~02/01/2015~ -~01056~^~618~^0.648^6^0.025^~1~^~AS~^^^1^^^^^^^~02/01/2015~ -~01056~^~619~^0.074^6^0.000^~1~^~AS~^^^1^^^^^^^~02/01/2015~ -~01056~^~620~^0.025^6^0.001^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~621~^0.001^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~624~^0.011^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~625~^0.134^6^0.006^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~626~^0.294^6^0.010^~1~^~AS~^^^1^^^^^^^~02/01/2015~ -~01056~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01056~^~628~^0.029^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~629~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01056~^~631~^0.011^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~645~^4.594^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~646~^0.800^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~652~^0.171^6^0.002^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~653~^0.108^6^0.001^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~654~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~663~^0.666^6^0.029^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~665~^0.130^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~670~^0.081^6^0.002^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~671~^0.001^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~672~^0.008^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~673~^0.294^6^0.010^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~674~^3.463^6^0.058^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~675~^0.438^6^0.027^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~685~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~687~^0.007^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~689~^0.019^6^0.001^~1~^~AS~^^^1^^^^^^^~02/01/2015~ -~01056~^~693~^0.666^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~695~^0.130^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01056~^~697~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~02/01/2009~ -~01056~^~851~^0.068^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~852~^0.001^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~853~^0.018^6^0.001^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~858~^0.001^6^0.000^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01056~^~859~^0.158^6^0.004^~1~^~A~^^^1^^^^^^^~02/01/2015~ -~01057~^~312~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~315~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~404~^0.034^6^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~405~^0.190^7^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~406~^0.105^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~410~^0.417^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~415~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01057~^~501~^0.085^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~502~^0.201^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~503~^0.237^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~504~^0.383^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~505~^0.257^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~506~^0.120^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~507~^0.057^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~508~^0.225^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~509~^0.199^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~510~^0.289^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~511~^0.191^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~512~^0.108^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~513~^0.199^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~514~^0.400^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~515~^0.775^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~516~^0.128^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~517~^0.349^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~518~^0.241^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~ -~01057~^~606~^2.591^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~607~^0.129^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~608~^0.076^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~609~^0.044^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~610~^0.100^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~611~^0.112^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~612~^0.401^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~613~^1.131^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~614~^0.511^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~617~^1.142^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~618~^0.132^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~619~^0.059^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~620~^0.003^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~626~^0.101^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~645~^1.302^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01057~^~646~^0.198^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01058~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~404~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~405~^0.163^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~406~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~410~^0.398^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~415~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~501~^0.045^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~502~^0.147^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~503~^0.197^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~504~^0.318^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~505~^0.258^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~506~^0.082^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~507~^0.030^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~508~^0.157^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~509~^0.157^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~510~^0.217^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~511~^0.118^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~512~^0.088^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~513~^0.112^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~514~^0.247^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~515~^0.681^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~516~^0.069^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~517~^0.315^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~518~^0.177^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01058~^~606~^13.272^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~609~^0.319^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~610~^0.824^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~611~^2.256^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~612~^2.793^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~613~^2.819^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~614~^4.310^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~617~^1.873^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~618~^0.468^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~619~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~626~^0.087^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01058~^~645~^1.958^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01058~^~646~^0.468^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~404~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~405~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~406~^0.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~410~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~415~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~501~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~502~^0.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~503~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~504~^0.326^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~505~^0.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~506~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~507~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~508~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~509~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~510~^0.223^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~511~^0.121^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~512~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~513~^0.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~514~^0.253^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~515~^0.697^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~516~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~517~^0.323^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~518~^0.181^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~606~^0.768^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01059~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01059~^~609~^0.003^9^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~610~^0.004^9^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~611~^0.017^9^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~612~^0.030^9^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~613~^0.490^9^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~614~^0.232^9^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~617~^1.785^9^0.051^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~618~^0.717^9^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~619~^0.027^9^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01059~^~626~^0.001^9^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~645~^1.783^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01059~^~646~^0.750^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~404~^0.030^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~405~^0.123^7^0.019^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~406~^0.087^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~410~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~415~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~501~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~502~^0.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~503~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~504~^0.326^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~505~^0.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~506~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~507~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~508~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~509~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~510~^0.223^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~511~^0.121^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~512~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~513~^0.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~514~^0.253^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~515~^0.697^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~516~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~517~^0.323^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~518~^0.181^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~606~^3.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~609~^0.173^29^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~610~^0.130^29^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~611~^2.047^29^0.074^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~612~^0.399^29^0.026^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~613~^0.191^29^0.018^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~614~^0.148^29^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~617~^0.100^29^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~618~^0.008^29^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~619~^0.000^29^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01060~^~645~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01060~^~646~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01061~^~312~^0.559^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~404~^0.412^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~405~^0.545^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~406~^5.560^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~415~^0.567^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01061~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01061~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01064~^~501~^0.107^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~502~^0.321^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~503~^0.390^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~504~^0.719^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~505~^0.620^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~506~^0.199^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~507~^0.046^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~508~^0.359^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~509~^0.359^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~510~^0.474^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~511~^0.260^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~512~^0.207^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~513~^0.245^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~514~^0.574^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~515~^1.545^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~516~^0.138^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~517~^0.734^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~518~^0.398^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01064~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~606~^1.030^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~645~^0.390^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01064~^~646~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~01065~^~501~^0.120^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~502~^0.361^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~503~^0.438^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~504~^0.808^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~505~^0.696^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~506~^0.223^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~507~^0.052^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~508~^0.404^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~509~^0.404^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~510~^0.533^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~511~^0.292^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~512~^0.232^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~513~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~514~^0.644^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~515~^1.735^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~516~^0.155^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~517~^0.825^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01065~^~518~^0.447^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01067~^~312~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~315~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~404~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~405~^0.000^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~501~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~502~^0.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~503~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~504~^0.085^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~505~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~506~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~507~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~508~^0.055^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~509~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~510~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~511~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~512~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~513~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~514~^0.125^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~515~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~516~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~517~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~518~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~606~^1.937^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~609~^0.005^7^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~610~^0.013^7^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~611~^0.062^7^0.033^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~612~^0.019^7^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~613~^0.884^7^0.106^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~614~^0.976^7^0.056^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~617~^7.559^7^0.243^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~618~^0.022^7^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01067~^~645~^7.551^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01067~^~646~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~312~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~315~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~404~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~405~^0.000^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~501~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~502~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~503~^0.061^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~504~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~505~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~506~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~507~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~508~^0.054^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~509~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~510~^0.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~511~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~512~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~513~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~514~^0.071^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~515~^0.227^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~516~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~517~^0.113^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~518~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~606~^9.304^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~609~^0.349^18^0.046^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~610~^0.277^18^0.039^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~611~^6.614^18^0.318^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~612~^1.001^18^0.092^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~613~^0.432^18^0.052^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~614~^0.597^18^0.092^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~617~^0.106^18^0.036^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~618~^0.003^18^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~619~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~626~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01068~^~645~^0.106^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01068~^~646~^0.003^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01069~^~312~^0.018^12^0.000^~1~^~A~^^^1^0.018^0.019^8^0.018^0.018^~1, 2, 3~^~02/01/2015~ -~01069~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~1, 2, 3~^~02/01/2015~ -~01069~^~404~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/1976~ -~01069~^~405~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~406~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/1976~ -~01069~^~410~^0.117^4^0.004^~1~^~A~^^^1^0.100^0.140^2^0.100^0.135^~2, 3~^~02/01/2015~ -~01069~^~415~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/1976~ -~01069~^~501~^0.066^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~502~^0.203^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~503~^0.294^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~504~^0.473^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~505~^0.385^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~506~^0.145^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~507~^0.021^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~508~^0.257^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~509~^0.274^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~510~^0.343^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~511~^0.190^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~512~^0.142^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~513~^0.150^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~514~^0.339^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~515~^1.088^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~516~^0.096^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~517~^0.540^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~518~^0.295^0^^~1~^~A~^~01069~^^^^^^^^^~11/01/1976~ -~01069~^~605~^5.541^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~606~^19.146^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~607~^0.006^11^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.007^~2, 3~^~02/01/2015~ -~01069~^~608~^0.094^11^0.022^~1~^~A~^^^1^0.000^0.188^4^0.034^0.153^~1, 2, 3~^~02/01/2015~ -~01069~^~609~^1.118^11^0.255^~1~^~A~^^^1^0.002^2.242^4^0.412^1.824^~1, 2, 3~^~02/01/2015~ -~01069~^~610~^0.879^11^0.200^~1~^~A~^^^1^0.004^1.772^4^0.325^1.433^~2, 3~^~02/01/2015~ -~01069~^~611~^6.764^11^1.557^~1~^~A~^^^1^0.004^13.838^4^2.454^11.074^~2, 3~^~02/01/2015~ -~01069~^~612~^2.666^11^0.614^~1~^~A~^^^1^0.029^5.506^4^0.968^4.364^~2, 3~^~02/01/2015~ -~01069~^~613~^3.146^11^0.050^~1~^~A~^^^1^2.786^3.472^6^3.024^3.268^~2, 3~^~02/01/2015~ -~01069~^~614~^4.290^11^0.091^~1~^~A~^^^1^3.514^4.809^9^4.084^4.497^~2, 3~^~02/01/2015~ -~01069~^~615~^0.081^11^0.009^~1~^~A~^^^1^0.040^0.124^4^0.057^0.104^~2, 3~^~02/01/2015~ -~01069~^~617~^9.768^11^2.403^~1~^~AS~^^^1^0.232^21.173^4^3.097^16.440^~2, 3~^~02/01/2015~ -~01069~^~618~^0.382^11^0.087^~1~^~AS~^^^1^0.039^0.838^4^0.141^0.624^~2, 3~^~02/01/2015~ -~01069~^~619~^0.026^11^0.007^~1~^~AS~^^^1^0.000^0.064^4^0.007^0.045^~2, 3~^~02/01/2015~ -~01069~^~620~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/1976~ -~01069~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01069~^~624~^0.052^11^0.011^~1~^~A~^^^1^0.007^0.104^4^0.022^0.082^~2, 3~^~02/01/2015~ -~01069~^~625~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~626~^0.006^11^0.002^~1~^~AS~^^^1^0.000^0.015^4^0.002^0.010^~2, 3~^~02/01/2015~ -~01069~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01069~^~628~^0.019^11^0.005^~1~^~A~^^^1^0.000^0.042^4^0.006^0.033^~1, 2, 3~^~02/01/2015~ -~01069~^~629~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01069~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~01069~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~01069~^~645~^9.796^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~646~^0.408^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~652~^0.007^11^0.000^~1~^~A~^^^1^0.006^0.008^8^0.007^0.008^~2, 3~^~02/01/2015~ -~01069~^~653~^0.020^11^0.003^~1~^~A~^^^1^0.006^0.037^4^0.011^0.030^~2, 3~^~02/01/2015~ -~01069~^~654~^0.022^11^0.003^~1~^~A~^^^1^0.010^0.038^4^0.014^0.030^~2, 3~^~02/01/2015~ -~01069~^~662~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.005^4^0.000^0.003^~1, 2, 3~^~02/01/2015~ -~01069~^~663~^5.357^11^1.339^~1~^~A~^^^1^0.048^11.812^4^1.640^9.074^~2, 3~^~02/01/2015~ -~01069~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~665~^0.179^11^0.045^~1~^~A~^^^1^0.000^0.395^4^0.054^0.304^~1, 2, 3~^~02/01/2015~ -~01069~^~670~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.007^4^0.001^0.005^~1, 2, 3~^~02/01/2015~ -~01069~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~672~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~673~^0.004^11^0.001^~1~^~A~^^^1^0.000^0.010^4^0.001^0.007^~1, 2, 3~^~02/01/2015~ -~01069~^~674~^4.411^11^1.065^~1~^~A~^^^1^0.184^9.415^4^1.455^7.368^~2, 3~^~02/01/2015~ -~01069~^~675~^0.200^11^0.043^~1~^~A~^^^1^0.039^0.436^4^0.081^0.320^~2, 3~^~02/01/2015~ -~01069~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~685~^0.005^11^0.001^~1~^~A~^^^1^0.000^0.012^4^0.001^0.008^~1, 2, 3~^~02/01/2015~ -~01069~^~687~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.006^4^0.001^0.004^~1, 2, 3~^~02/01/2015~ -~01069~^~689~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2015~ -~01069~^~693~^5.359^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~695~^0.182^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~01069~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~851~^0.019^11^0.005^~1~^~A~^^^1^0.000^0.048^4^0.004^0.033^~1, 2, 3~^~02/01/2015~ -~01069~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~853~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01069~^~856~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.006^4^0.001^0.004^~1, 2, 3~^~02/01/2015~ -~01069~^~858~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~01070~^~312~^0.118^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~315~^0.225^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~404~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~405~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~501~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~502~^0.207^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~503~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~504~^0.484^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~505~^0.394^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~506~^0.149^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~507~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~508~^0.263^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~509~^0.280^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~510~^0.351^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~511~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~512~^0.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~513~^0.153^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~514~^0.347^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~515~^1.113^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~516~^0.098^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~517~^0.552^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~518~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~606~^36.723^0^^~1~^^^^^^^^^^^~07/01/1995~ -~01070~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~609~^0.669^3^0.454^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~610~^0.964^3^0.341^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~611~^14.507^3^1.050^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~612~^5.746^3^0.296^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~613~^5.429^3^0.268^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~614~^9.408^3^0.538^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~617~^0.600^3^0.351^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~618~^0.447^3^0.105^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01070~^~645~^0.600^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01070~^~646~^0.447^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~312~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~315~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~404~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~405~^0.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~406~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~410~^0.226^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~415~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~501~^0.072^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~502~^0.157^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~503~^0.198^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~504~^0.318^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~505~^0.204^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~506~^0.093^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~507~^0.018^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~508~^0.175^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~509~^0.182^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~510~^0.230^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~511~^0.104^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~512~^0.092^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~513~^0.114^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~514~^0.262^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~515~^0.758^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~516~^0.080^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~517~^0.391^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~518~^0.155^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01071~^~606~^10.684^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~607~^0.077^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~608~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~609~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~610~^0.302^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~611~^3.704^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~612~^1.682^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~613~^1.993^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~614~^2.650^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~617~^0.754^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~618~^0.166^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~619~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~626~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01071~^~645~^0.843^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01071~^~646~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~312~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~315~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~404~^0.000^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~405~^0.000^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~406~^0.000^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~501~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~502~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~503~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~504~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~505~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~506~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~507~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~508~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~509~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~510~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~511~^0.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~512~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~513~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~514~^0.069^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~515~^0.223^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~516~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~517~^0.110^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~518~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~606~^18.912^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~609~^0.449^3^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~610~^0.642^3^0.060^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~611~^8.014^3^1.076^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~612~^3.246^3^0.431^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~613~^2.408^3^0.201^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~614~^4.166^3^0.680^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~617~^1.929^3^1.457^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~618~^0.241^3^0.192^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01072~^~645~^1.927^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01072~^~646~^0.241^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~312~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~315~^0.058^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~404~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~405~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~501~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~502~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~503~^0.077^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~504~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~505~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~506~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~507~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~508~^0.067^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~509~^0.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~510~^0.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~511~^0.049^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~512~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~513~^0.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~514~^0.088^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~515~^0.284^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~516~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~517~^0.141^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~518~^0.077^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~606~^21.783^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~609~^0.638^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~610~^0.905^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~611~^8.836^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~612~^3.756^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~613~^3.092^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~614~^4.580^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~617~^1.375^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~618~^0.305^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~619~^0.218^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~626~^0.241^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01073~^~645~^1.616^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01073~^~646~^0.523^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~312~^0.058^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~315~^0.110^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~404~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~405~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~501~^0.033^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~502~^0.101^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~503~^0.147^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~504~^0.237^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~505~^0.193^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~506~^0.073^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~507~^0.010^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~508~^0.129^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~509~^0.137^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~510~^0.172^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~511~^0.095^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~512~^0.071^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~513~^0.075^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~514~^0.170^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~515~^0.545^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~516~^0.048^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~517~^0.271^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~518~^0.148^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01074~^~606~^17.791^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~609~^1.028^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~610~^1.006^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~611~^8.138^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~612~^3.364^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~613~^1.981^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~614~^2.244^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~617~^0.589^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~618~^0.056^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01074~^~645~^0.588^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01074~^~646~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~312~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~315~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~404~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~405~^0.088^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~406~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~410~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~415~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~501~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~502~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~503~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~504~^0.173^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~505~^0.141^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~506~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~507~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~508~^0.094^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~509~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~510~^0.125^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~511~^0.069^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~512~^0.052^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~513~^0.055^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~514~^0.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~515~^0.398^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~516~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~517~^0.197^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~518~^0.108^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~606~^3.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01076~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01076~^~609~^0.192^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~610~^0.176^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~611~^1.421^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~612~^0.592^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~613~^0.326^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~614~^0.312^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~617~^0.176^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~618~^0.008^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~619~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01076~^~626~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~645~^0.176^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01076~^~646~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01077~^~312~^0.025^42^0.001^~1~^~A~^^^9^0.000^0.081^11^0.022^0.028^~1, 2, 3~^~11/01/2008~ -~01077~^~315~^0.004^41^0.000^~1~^~A~^^^8^0.000^0.008^^^^~1, 2, 3~^~11/01/2008~ -~01077~^~404~^0.046^24^0.001^~1~^~A~^^^2^0.042^0.048^12^0.044^0.048^~2, 3~^~11/01/2008~ -~01077~^~405~^0.169^23^0.001^~1~^~A~^^^2^0.156^0.196^19^0.165^0.172^~2, 3~^~11/01/2008~ -~01077~^~406~^0.089^24^0.003^~1~^~A~^^^2^0.070^0.122^18^0.083^0.094^~2, 3~^~11/01/2008~ -~01077~^~410~^0.373^8^0.003^~1~^~A~^^^2^0.357^0.384^6^0.367^0.379^~2, 3~^~11/01/2008~ -~01077~^~415~^0.036^24^0.000^~1~^~A~^^^2^0.034^0.039^16^0.035^0.037^~2, 3~^~11/01/2008~ -~01077~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~502~^0.134^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~503~^0.163^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~504~^0.299^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~505~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~506~^0.083^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~507~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~508~^0.163^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~509~^0.159^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~510~^0.206^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~511~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~512~^0.095^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~513~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~514~^0.270^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~515~^0.708^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~516~^0.062^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~517~^0.311^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~518~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01077~^~606~^1.865^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~607~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~608~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~609~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~610~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~611~^0.077^12^0.002^~1~^~A~^^^1^0.075^0.100^11^0.072^0.081^~1, 2, 3~^~03/01/2003~ -~01077~^~612~^0.297^12^0.011^~1~^~A~^^^1^0.194^0.334^11^0.274^0.320^~2, 3~^~03/01/2003~ -~01077~^~613~^0.829^12^0.029^~1~^~A~^^^1^0.534^0.938^11^0.765^0.893^~2, 3~^~03/01/2003~ -~01077~^~614~^0.365^12^0.015^~1~^~A~^^^1^0.220^0.428^11^0.331^0.399^~2, 3~^~03/01/2003~ -~01077~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~617~^0.812^12^0.032^~1~^~A~^^^1^0.501^0.928^11^0.743^0.882^~2, 3~^~03/01/2003~ -~01077~^~618~^0.120^12^0.005^~1~^~A~^^^1^0.075^0.139^11^0.110^0.131^~1, 2, 3~^~03/01/2003~ -~01077~^~619~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~620~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~626~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~01077~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~628~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~630~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~645~^0.812^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~646~^0.195^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01077~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~653~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2002~ -~01077~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2002~ -~01078~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~404~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~405~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~406~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~410~^0.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~415~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~501~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~502~^0.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~503~^0.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~504~^0.321^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~505~^0.260^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~506~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~507~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~508~^0.158^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~509~^0.158^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~510~^0.220^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~511~^0.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~512~^0.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~513~^0.113^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~514~^0.249^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~515~^0.687^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~516~^0.069^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~517~^0.318^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~518~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~606~^2.278^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~607~^0.119^52^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~608~^0.070^68^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~609~^0.041^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~610~^0.092^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~611~^0.103^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~612~^0.368^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~613~^0.963^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~614~^0.444^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~617~^0.921^78^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~618~^0.083^74^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~619~^0.053^65^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~626~^0.082^71^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01078~^~645~^1.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01078~^~646~^0.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01079~^~312~^0.006^30^0.000^~1~^~A~^^^8^0.000^0.015^11^0.005^0.006^~1, 2, 3~^~12/01/2008~ -~01079~^~315~^0.014^30^0.000^~1~^~A~^^^8^0.000^0.037^11^0.014^0.014^~1, 2, 3~^~12/01/2008~ -~01079~^~404~^0.039^13^0.005^~1~^~A~^^^2^0.000^0.074^11^0.028^0.051^~1, 2, 3~^~12/01/2002~ -~01079~^~405~^0.185^13^0.003^~1~^~A~^^^2^0.170^0.210^11^0.178^0.192^~2, 3~^~03/01/2003~ -~01079~^~406~^0.092^12^0.002^~1~^~A~^^^2^0.078^0.106^10^0.088^0.096^~2, 3~^~03/01/2003~ -~01079~^~410~^0.356^5^0.019^~1~^~A~^^^2^0.307^0.418^3^0.295^0.416^~2, 3~^~12/01/2002~ -~01079~^~415~^0.038^13^0.001^~1~^~A~^^^2^0.029^0.045^11^0.036^0.041^~2, 3~^~03/01/2003~ -~01079~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~502~^0.141^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~503~^0.171^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~504~^0.313^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~505~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~506~^0.087^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~508~^0.171^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~510~^0.216^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~511~^0.094^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~512~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~513~^0.112^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~514~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~515~^0.742^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~516~^0.065^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~517~^0.326^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01079~^~518~^0.199^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01079~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01079~^~605~^0.085^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~606~^1.257^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~607~^0.077^5^0.001^~1~^~A~^^^2^0.055^0.151^3^0.072^0.081^~2, 3~^~05/01/2009~ -~01079~^~608~^0.040^4^0.002^~1~^~A~^^^1^0.036^0.045^3^0.034^0.047^~2, 3~^~05/01/2009~ -~01079~^~609~^0.020^5^0.001^~1~^~A~^^^2^0.007^0.027^3^0.017^0.023^~2, 3~^~04/01/2009~ -~01079~^~610~^0.049^5^0.002^~1~^~A~^^^2^0.042^0.056^3^0.044^0.054^~2, 3~^~04/01/2009~ -~01079~^~611~^0.055^5^0.002^~1~^~A~^^^2^0.051^0.059^3^0.050^0.059^~2, 3~^~04/01/2009~ -~01079~^~612~^0.175^5^0.003^~1~^~A~^^^2^0.167^0.183^3^0.167^0.184^~2, 3~^~05/01/2009~ -~01079~^~613~^0.558^5^0.009^~1~^~A~^^^2^0.495^0.607^3^0.530^0.586^~2, 3~^~05/01/2009~ -~01079~^~614~^0.243^5^0.004^~1~^~A~^^^2^0.214^0.260^3^0.231^0.255^~2, 3~^~05/01/2009~ -~01079~^~615~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^3^0.004^0.004^~2, 3~^~04/01/2009~ -~01079~^~617~^0.508^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01079~^~618~^0.062^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01079~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01079~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01079~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01079~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~01079~^~625~^0.015^5^0.001^~1~^~A~^^^2^0.012^0.018^3^0.012^0.017^~2, 3~^~04/01/2009~ -~01079~^~626~^0.027^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01079~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01079~^~628~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.010^^^^~1, 2, 3~^~04/01/2009~ -~01079~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01079~^~630~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~04/01/2009~ -~01079~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01079~^~645~^0.560^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~646~^0.073^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~652~^0.020^5^0.000^~1~^~A~^^^2^0.019^0.021^3^0.019^0.021^~2, 3~^~04/01/2009~ -~01079~^~653~^0.011^5^0.000^~1~^~A~^^^2^0.011^0.012^3^0.011^0.012^~2, 3~^~04/01/2009~ -~01079~^~663~^0.078^4^0.005^~1~^~A~^^^1^0.070^0.091^3^0.063^0.093^~2, 3~^~04/01/2009~ -~01079~^~666~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~04/01/2009~ -~01079~^~673~^0.027^4^0.001^~1~^~A~^^^1^0.024^0.030^3^0.022^0.031^~2, 3~^~04/01/2009~ -~01079~^~674~^0.430^4^0.005^~1~^~A~^^^1^0.416^0.438^3^0.415^0.445^~2, 3~^~05/01/2009~ -~01079~^~675~^0.055^4^0.003^~1~^~A~^^^1^0.047^0.061^3^0.044^0.065^~2, 3~^~04/01/2009~ -~01079~^~687~^0.005^5^0.000^~1~^~A~^^^2^0.004^0.009^3^0.005^0.005^~2, 3~^~04/01/2009~ -~01079~^~689~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~01079~^~693~^0.078^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01079~^~696~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~01079~^~697~^0.004^5^0.000^~1~^~A~^^^2^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2009~ -~01079~^~851~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~04/01/2009~ -~01080~^~312~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~404~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~405~^0.173^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~406~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~410~^0.336^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~501~^0.049^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~502~^0.157^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~503~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~504~^0.341^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~505~^0.276^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~506~^0.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~507~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~508~^0.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~509~^0.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~510~^0.233^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~511~^0.126^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~512~^0.094^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~513~^0.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~514~^0.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~515~^0.729^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~516~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~517~^0.337^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~518~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~606~^1.195^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~607~^0.062^52^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~608~^0.037^68^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~609~^0.021^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~610~^0.048^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~611~^0.054^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~612~^0.193^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~613~^0.505^88^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~614~^0.233^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~617~^0.483^78^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~618~^0.043^74^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~619~^0.028^65^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01080~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~626~^0.043^71^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01080~^~645~^0.555^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01080~^~646~^0.071^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~312~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~404~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~405~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~406~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~410~^0.376^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~415~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~501~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~502~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~503~^0.239^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~504~^0.387^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~505~^0.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~506~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~507~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~508~^0.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~509~^0.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~510~^0.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~511~^0.143^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~512~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~513~^0.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~514~^0.300^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~515~^0.827^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~516~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~517~^0.383^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~518~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~606~^1.232^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~607~^0.064^52^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~608~^0.038^68^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~609~^0.022^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~610~^0.050^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~611~^0.056^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~612~^0.199^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~613~^0.521^88^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~614~^0.240^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~617~^0.498^78^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~618~^0.045^74^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~619~^0.029^65^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01081~^~621~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~626~^0.044^71^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~627~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~628~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~629~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~630~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~631~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~ -~01081~^~645~^0.572^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01081~^~646~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01082~^~312~^0.010^12^0.001^~1~^~A~^^^1^^^^^^^~01/01/2004~ -~01082~^~315~^0.003^12^0.000^~1~^~A~^^^1^^^^^^^~01/01/2004~ -~01082~^~404~^0.020^12^0.002^~1~^~A~^^^1^0.015^0.043^11^0.015^0.026^~1, 2, 3~^~03/01/2003~ -~01082~^~405~^0.185^12^0.005^~1~^~A~^^^1^0.160^0.220^11^0.175^0.195^~2, 3~^~03/01/2003~ -~01082~^~406~^0.093^12^0.003^~1~^~A~^^^1^0.081^0.115^11^0.087^0.098^~2, 3~^~03/01/2003~ -~01082~^~410~^0.361^4^0.014^~1~^~A~^^^1^0.331^0.400^3^0.314^0.407^~2, 3~^~12/01/2002~ -~01082~^~415~^0.037^12^0.001^~1~^~A~^^^1^0.032^0.044^11^0.034^0.040^~2, 3~^~03/01/2003~ -~01082~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~502~^0.143^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~503~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~504~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~505~^0.282^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~506~^0.088^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~508~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~511~^0.096^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~01082~^~512~^0.101^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~514~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~515~^0.756^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~516~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~517~^0.332^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~518~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01082~^~606~^0.633^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~607~^0.024^4^0.002^~1~^~A~^^^1^0.020^0.027^3^0.019^0.029^~2, 3~^~03/01/2003~ -~01082~^~608~^0.018^4^0.002^~1~^~A~^^^1^0.013^0.022^3^0.011^0.024^~2, 3~^~03/01/2003~ -~01082~^~609~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.011^0.014^~2, 3~^~03/01/2003~ -~01082~^~610~^0.027^4^0.001^~1~^~A~^^^1^0.025^0.030^3^0.025^0.030^~2, 3~^~12/01/2002~ -~01082~^~611~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.032^3^0.026^0.033^~2, 3~^~03/01/2003~ -~01082~^~612~^0.091^4^0.002^~1~^~A~^^^1^0.087^0.097^3^0.084^0.098^~2, 3~^~03/01/2003~ -~01082~^~613~^0.287^4^0.001^~1~^~A~^^^1^0.284^0.291^3^0.282^0.292^~2, 3~^~03/01/2003~ -~01082~^~614~^0.126^4^0.004^~1~^~A~^^^1^0.116^0.133^3^0.115^0.137^~2, 3~^~03/01/2003~ -~01082~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2002~ -~01082~^~617~^0.250^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01082~^~618~^0.030^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01082~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01082~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~625~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~12/01/2002~ -~01082~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~01082~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01082~^~645~^0.277^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~646~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01082~^~652~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~2, 3~^~12/01/2002~ -~01082~^~653~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.006^3^0.005^0.006^~2, 3~^~12/01/2002~ -~01082~^~663~^0.037^4^0.003^~1~^~A~^^^1^0.034^0.046^3^0.028^0.046^~2, 3~^~12/01/2002~ -~01082~^~666~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~12/01/2002~ -~01082~^~673~^0.017^4^0.000^~1~^~A~^^^1^0.016^0.017^3^0.016^0.017^~2, 3~^~12/01/2002~ -~01082~^~674~^0.213^4^0.005^~1~^~A~^^^1^0.202^0.222^3^0.197^0.229^~2, 3~^~12/01/2002~ -~01082~^~675~^0.027^4^0.001^~1~^~A~^^^1^0.026^0.028^3^0.025^0.029^~2, 3~^~12/01/2002~ -~01082~^~687~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2002~ -~01082~^~697~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2002~ -~01082~^~851~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~12/01/2002~ -~01083~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~404~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~405~^0.173^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~406~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~410~^0.336^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~501~^0.049^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~502~^0.157^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~503~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~504~^0.341^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~505~^0.276^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~506~^0.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~507~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~508~^0.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~509~^0.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~510~^0.233^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~511~^0.126^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~512~^0.094^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~513~^0.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~514~^0.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~515~^0.729^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~516~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~517~^0.337^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~518~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~606~^0.604^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~607~^0.031^52^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~608~^0.019^68^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~609~^0.011^89^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~610~^0.024^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~611~^0.027^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~612~^0.098^88^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~613~^0.255^88^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~614~^0.118^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~617~^0.244^78^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~618~^0.022^74^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~619~^0.014^65^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01083~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~626~^0.022^71^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~01083~^~645~^0.280^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01083~^~646~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~404~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~405~^0.192^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~406~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~410~^0.373^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~415~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~501~^0.055^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~502~^0.177^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~503~^0.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~504~^0.385^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~505~^0.312^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~506~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~507~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~508~^0.190^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~509~^0.190^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~510~^0.263^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~511~^0.142^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~512~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~513~^0.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~514~^0.298^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~515~^0.823^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~516~^0.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~517~^0.381^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~518~^0.214^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~606~^0.728^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~607~^0.038^52^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~608~^0.022^68^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~609~^0.013^89^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~610~^0.029^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~611~^0.033^89^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~612~^0.118^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~613~^0.308^88^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~614~^0.142^88^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~617~^0.294^78^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~618~^0.026^74^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~619~^0.017^65^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01084~^~626~^0.026^71^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~645~^0.338^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01084~^~646~^0.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01085~^~312~^0.013^24^0.000^~1~^~A~^^^1^0.008^0.015^20^0.013^0.013^~1, 2, 3~^~01/01/2004~ -~01085~^~315~^0.003^12^0.000^~1~^~A~^^^1^^^^^^^~01/01/2004~ -~01085~^~404~^0.045^12^0.004^~1~^~A~^^^1^0.024^0.075^11^0.036^0.054^~2, 3~^~03/01/2003~ -~01085~^~405~^0.182^12^0.004^~1~^~A~^^^1^0.160^0.200^11^0.174^0.190^~2, 3~^~03/01/2003~ -~01085~^~406~^0.094^12^0.004^~1~^~A~^^^1^0.058^0.105^11^0.086^0.103^~2, 3~^~03/01/2003~ -~01085~^~410~^0.357^4^0.005^~1~^~A~^^^1^0.342^0.365^3^0.341^0.374^~2, 3~^~12/01/2002~ -~01085~^~415~^0.037^12^0.001^~1~^~A~^^^1^0.031^0.042^11^0.035^0.039^~2, 3~^~03/01/2003~ -~01085~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~502~^0.144^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~503~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~504~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~505~^0.282^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~506~^0.088^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~507~^0.021^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~508~^0.175^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~510~^0.221^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~511~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~512~^0.102^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~514~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~515~^0.757^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~516~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~517~^0.332^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~518~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01085~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~01085~^~606~^0.056^0^^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~607~^0.004^8^0.001^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~608~^0.000^12^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~609~^0.001^12^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~610~^0.002^12^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~611~^0.001^12^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~612~^0.008^12^0.001^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~613~^0.025^12^0.002^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~614~^0.009^12^0.001^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~617~^0.018^12^0.002^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~618~^0.002^12^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~619~^0.001^11^0.000^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~626~^0.003^12^0.001^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01085~^~645~^0.022^0^^~1~^^^^^^^^^^^~05/01/2011~ -~01085~^~646~^0.003^0^^~1~^^^^^^^^^^^~05/01/2011~ -~01086~^~312~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~404~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~405~^0.175^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~406~^0.091^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~410~^0.339^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~415~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~501~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~502~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~503~^0.216^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~504~^0.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~505~^0.283^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~506~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~507~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~508~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~509~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~510~^0.239^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~511~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~512~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~513~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~514~^0.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~515~^0.748^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~516~^0.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~517~^0.346^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~518~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~606~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~607~^0.013^8^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~608~^0.002^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~609~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~610~^0.005^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~611~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~612~^0.024^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~613~^0.073^12^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~614~^0.026^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~617~^0.053^12^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~618~^0.006^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~619~^0.003^11^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~626~^0.009^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01086~^~645~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01086~^~646~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~312~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~404~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~405~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~406~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~410~^0.376^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~415~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~501~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~502~^0.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~503~^0.240^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~504~^0.388^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~505~^0.314^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~506~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~507~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~508~^0.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~509~^0.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~510~^0.265^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~511~^0.143^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~512~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~513~^0.137^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~514~^0.300^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~515~^0.829^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~516~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~517~^0.384^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~518~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~606~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~607~^0.013^8^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~608~^0.002^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~609~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~610~^0.005^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~611~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~612~^0.024^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~613~^0.073^12^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~614~^0.026^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~617~^0.053^12^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~618~^0.006^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~619~^0.003^11^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01087~^~626~^0.009^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~645~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01087~^~646~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~312~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~404~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~405~^0.154^7^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~406~^0.058^6^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~410~^0.275^3^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~415~^0.034^7^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~501~^0.042^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~502~^0.141^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~503~^0.171^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~504~^0.313^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~505~^0.277^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~506~^0.087^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~507~^0.020^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~508~^0.171^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~509~^0.167^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~510~^0.217^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~511~^0.095^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~512~^0.100^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~513~^0.112^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~514~^0.283^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~515~^0.744^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~516~^0.066^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~517~^0.326^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~518~^0.199^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01088~^~606~^0.660^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01088~^~607~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~608~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~609~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~610~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~611~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~612~^0.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~613~^0.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~614~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~617~^0.221^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~618~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~619~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~626~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01088~^~645~^0.254^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01088~^~646~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~312~^0.010^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~404~^0.020^8^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~405~^0.105^8^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~406~^0.043^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~410~^0.304^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~415~^0.034^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~501~^0.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~502~^0.140^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~503~^0.188^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~504~^0.304^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~505~^0.246^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~506~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~507~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~508~^0.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~509~^0.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~510~^0.207^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~511~^0.112^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~512~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~513~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~514~^0.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~515~^0.649^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~516~^0.066^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~517~^0.300^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~518~^0.169^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~606~^2.154^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~607~^0.112^52^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~608~^0.066^68^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~609~^0.039^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~610~^0.087^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~611~^0.097^89^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~612~^0.348^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~613~^0.910^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~614~^0.419^88^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~617~^0.870^78^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~618~^0.078^74^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~619~^0.050^65^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~626~^0.077^71^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01089~^~645~^0.999^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01089~^~646~^0.128^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~312~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~315~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~404~^0.283^18^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~405~^1.205^23^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~406~^0.646^22^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~410~^2.271^20^0.086^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~415~^0.302^41^0.028^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~501~^0.371^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~502~^1.188^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~503~^1.592^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~504~^2.578^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~505~^2.087^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~506~^0.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~507~^0.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~508~^1.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~509~^1.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~510~^1.762^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~511~^0.953^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~512~^0.714^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~513~^0.908^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~514~^1.997^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~515~^5.512^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~516~^0.557^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~517~^2.549^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~518~^1.432^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~606~^16.742^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~607~^0.866^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~608~^0.240^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~609~^0.269^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~610~^0.596^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~611~^0.614^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~612~^2.820^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~613~^7.522^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~614~^2.853^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~617~^6.192^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~618~^0.460^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~619~^0.204^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~626~^1.196^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01090~^~645~^7.924^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01090~^~646~^0.665^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~312~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~404~^0.415^24^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~405~^1.550^24^0.043^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~406~^0.951^25^0.050^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~410~^3.568^16^0.075^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~415~^0.361^28^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~501~^0.510^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~502~^1.632^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~503~^2.188^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~504~^3.542^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~505~^2.868^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~506~^0.907^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~507~^0.334^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~508~^1.746^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~509~^1.746^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~510~^2.420^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~511~^1.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~512~^0.981^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~513~^1.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~514~^2.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~515~^7.572^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~516~^0.765^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~517~^3.503^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~518~^1.967^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~606~^0.499^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~607~^0.028^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~608~^0.006^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~609~^0.007^5^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~610~^0.018^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~611~^0.014^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~612~^0.083^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~613~^0.235^5^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~614~^0.085^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~617~^0.167^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~618~^0.019^5^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~619~^0.011^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~626~^0.022^5^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01091~^~645~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01091~^~646~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~312~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~404~^0.413^31^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~405~^1.744^31^0.040^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~406~^0.891^29^0.042^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~410~^3.235^34^0.068^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~415~^0.345^31^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~501~^0.495^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~502~^1.584^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~503~^2.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~504~^3.438^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~505~^2.784^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~506~^0.880^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~507~^0.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~508~^1.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~509~^1.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~510~^2.349^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~511~^1.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~512~^0.952^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~513~^1.210^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~514~^2.663^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~515~^7.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~516~^0.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~517~^3.400^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~518~^1.909^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~606~^0.467^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~607~^0.026^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~608~^0.006^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~609~^0.007^5^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~610~^0.017^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~611~^0.013^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~612~^0.078^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~613~^0.220^5^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~614~^0.080^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~617~^0.156^5^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~618~^0.018^5^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~619~^0.011^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~626~^0.021^5^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01092~^~645~^0.187^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01092~^~646~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~315~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~404~^0.163^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~405~^1.642^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~406~^0.665^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~410~^3.312^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~415~^0.298^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~501~^0.501^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~502~^1.603^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~503~^2.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~504~^3.478^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~505~^2.816^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~506~^0.890^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~507~^0.328^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~508~^1.714^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~509~^1.714^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~510~^2.376^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~511~^1.285^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~512~^0.963^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~513~^1.224^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~514~^2.693^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~515~^7.434^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~516~^0.751^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~517~^3.439^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~518~^1.931^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~606~^0.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~607~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~608~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~609~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~610~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~611~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~612~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~613~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~614~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~617~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~618~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~619~^0.003^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01093~^~626~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~645~^0.058^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01093~^~646~^0.007^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~312~^0.111^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~315~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~404~^0.392^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~405~^1.579^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~406~^0.876^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~410~^3.170^3^0.128^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~415~^0.338^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~501~^0.484^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~502~^1.548^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~503~^2.075^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~504~^3.360^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~505~^2.720^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~506~^0.860^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~507~^0.317^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~508~^1.656^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~509~^1.656^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~510~^2.296^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~511~^1.242^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~512~^0.930^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~513~^1.183^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~514~^2.602^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~515~^7.183^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~516~^0.726^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~517~^3.322^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~518~^1.866^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~606~^3.598^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~607~^0.187^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~608~^0.111^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~609~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~610~^0.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~611~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~612~^0.581^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~613~^1.520^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~614~^0.700^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~617~^1.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~618~^0.131^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~619~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~626~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01094~^~645~^1.669^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01094~^~646~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~312~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~404~^0.090^12^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~405~^0.416^13^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~406~^0.210^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~410~^0.750^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~415~^0.051^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~501~^0.112^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~502~^0.357^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~503~^0.479^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~504~^0.775^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~505~^0.627^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~506~^0.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~507~^0.073^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~508~^0.382^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~509~^0.382^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~510~^0.529^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~511~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~512~^0.214^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~513~^0.273^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~514~^0.600^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~515~^1.656^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~516~^0.167^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~517~^0.766^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~518~^0.430^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~606~^5.486^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~607~^0.282^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~608~^0.167^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~609~^0.097^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~610~^0.073^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~611~^0.180^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~612~^0.783^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~613~^2.396^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~614~^1.209^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~617~^2.188^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~618~^0.216^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~619~^0.121^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~626~^0.137^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01095~^~645~^2.427^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01095~^~646~^0.337^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~404~^0.047^42^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~405~^0.316^41^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~406~^0.194^36^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~410~^0.638^5^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~415~^0.050^21^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~501~^0.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~502~^0.307^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~503~^0.412^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~504~^0.667^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~505~^0.540^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~506~^0.171^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~507~^0.063^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~508~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~509~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~510~^0.456^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~511~^0.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~512~^0.185^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~513~^0.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~514~^0.517^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~515~^1.426^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~516~^0.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~517~^0.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~518~^0.370^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~606~^4.591^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~607~^0.195^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~608~^0.134^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~609~^0.054^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~610~^0.110^11^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~611~^0.161^12^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~612~^0.733^12^0.035^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~613~^2.027^12^0.060^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~614~^0.921^12^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~617~^2.101^12^0.049^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~618~^0.167^12^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~619~^0.078^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~626~^0.159^12^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01096~^~645~^2.335^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01096~^~646~^0.245^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~404~^0.045^10^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~405~^0.309^10^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~406~^0.174^10^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~410~^0.738^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~415~^0.055^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~501~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~502~^0.341^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~503~^0.457^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~504~^0.740^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~505~^0.599^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~506~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~507~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~508~^0.364^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~509~^0.364^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~510~^0.505^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~511~^0.273^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~512~^0.205^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~513~^0.260^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~514~^0.573^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~515~^1.581^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~516~^0.160^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~517~^0.731^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~518~^0.411^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~606~^0.121^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~607~^0.005^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~608~^0.004^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~609~^0.001^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~610~^0.003^11^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~611~^0.004^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~612~^0.019^12^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~613~^0.054^12^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~614~^0.024^12^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~617~^0.056^12^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~618~^0.004^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~619~^0.002^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~626~^0.004^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01097~^~645~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01097~^~646~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~312~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~315~^0.077^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~404~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~405~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~406~^0.125^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~410~^0.295^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~415~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~501~^0.041^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~502~^0.135^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~503~^0.164^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~504~^0.300^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~505~^0.265^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~506~^0.083^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~507~^0.019^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~508~^0.164^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~509~^0.160^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~510~^0.208^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~511~^0.091^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~512~^0.096^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~513~^0.107^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~514~^0.271^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~515~^0.712^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~516~^0.063^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~517~^0.313^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~518~^0.191^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~01102~^~606~^2.104^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~607~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~608~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~609~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~610~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~611~^0.088^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~612~^0.315^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~613~^0.889^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~614~^0.466^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~617~^0.872^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~618~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~619~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~626~^0.071^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01102~^~645~^0.990^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01102~^~646~^0.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01103~^~312~^0.075^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~315~^0.062^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~404~^0.045^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~405~^0.183^0^^~4~^~O~^^^^^^^^^^~09/01/2005~ -~01103~^~406~^0.164^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~410~^0.539^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~415~^0.024^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01103~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~502~^0.128^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~503~^0.155^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~504~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~505~^0.250^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~506~^0.078^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~507~^0.018^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~508~^0.155^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~509~^0.151^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~510~^0.196^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~511~^0.085^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~512~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~513~^0.101^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~514~^0.256^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~515~^0.673^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~516~^0.059^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~517~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~518~^0.180^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01103~^~606~^1.177^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01103~^~607~^0.056^0^^~1~^^^^^^^^^^^~03/01/2005~ -~01103~^~608~^0.033^0^^~1~^^^^^^^^^^^~03/01/2005~ -~01103~^~609~^0.020^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~610~^0.045^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~611~^0.045^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~612~^0.170^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~613~^0.515^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~614~^0.270^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~615~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~617~^0.430^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~618~^0.080^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~01103~^~620~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~621~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~625~^0.005^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~626~^0.020^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~627~^0.009^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~628~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~629~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~630~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~631~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~645~^0.455^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01103~^~646~^0.089^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~01103~^~652~^0.015^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~653~^0.009^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~654~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01103~^~851~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~01104~^~312~^0.028^13^0.002^~1~^~A~^^^1^0.027^0.029^9^0.023^0.032^~2, 3~^~07/01/2015~ -~01104~^~315~^0.030^13^0.002^~1~^~A~^^^1^0.029^0.033^9^0.026^0.035^~2, 3~^~07/01/2015~ -~01104~^~404~^0.031^8^0.001^~1~^~A~^^^1^0.030^0.032^5^0.028^0.034^~2, 3~^~07/01/2015~ -~01104~^~405~^0.247^8^0.012^~1~^~A~^^^1^0.215^0.258^5^0.218^0.277^~2, 3~^~07/01/2015~ -~01104~^~406~^0.124^8^0.006^~1~^~A~^^^1^0.123^0.125^5^0.109^0.138^~2, 3~^~07/01/2015~ -~01104~^~410~^0.430^5^0.029^~1~^~A~^^^1^0.410^0.435^3^0.338^0.522^~2, 3~^~07/01/2015~ -~01104~^~415~^0.047^8^0.004^~1~^~A~^^^1^0.047^0.049^5^0.036^0.059^~2, 3~^~07/01/2015~ -~01104~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~502~^0.156^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~503~^0.156^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~504~^0.307^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~505~^0.257^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~506~^0.078^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~507~^0.033^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~508~^0.156^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~509~^0.134^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~510~^0.201^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~511~^0.117^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~512~^0.089^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~513~^0.112^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~514~^0.301^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~515~^0.720^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~516~^0.067^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~517~^0.307^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~518~^0.190^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~01104~^~521~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01104~^~606~^0.616^0^^~1~^^^^^^^^^^^~11/01/2016~ -~01104~^~607~^0.019^13^0.001^~1~^~A~^^^1^0.017^0.020^11^0.018^0.021^~2, 3~^~07/01/2015~ -~01104~^~608~^0.013^13^0.001^~1~^~A~^^^1^0.012^0.013^9^0.012^0.014^~2, 3~^~07/01/2015~ -~01104~^~609~^0.008^13^0.000^~1~^~A~^^^1^0.008^0.008^9^0.008^0.009^~2, 3~^~11/01/1976~ -~01104~^~610~^0.022^13^0.001^~1~^~A~^^^1^0.022^0.023^11^0.021^0.023^~2, 3~^~07/01/2015~ -~01104~^~611~^0.025^13^0.001^~1~^~A~^^^1^0.025^0.026^9^0.024^0.026^~2, 3~^~07/01/2015~ -~01104~^~612~^0.090^13^0.001^~1~^~A~^^^1^0.089^0.094^10^0.088^0.092^~2, 3~^~07/01/2015~ -~01104~^~613~^0.268^13^0.003^~1~^~A~^^^1^0.264^0.280^10^0.261^0.275^~2, 3~^~07/01/2015~ -~01104~^~614~^0.120^13^0.004^~1~^~A~^^^1^0.114^0.122^9^0.112^0.129^~2, 3~^~07/01/2015~ -~01104~^~615~^0.002^13^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~07/01/2015~ -~01104~^~617~^0.248^13^0.005^~1~^~AS~^^^1^0.248^0.249^10^0.237^0.260^~2, 3~^~07/01/2015~ -~01104~^~618~^0.039^13^0.001^~1~^~AS~^^^1^0.035^0.040^10^0.035^0.042^~2, 3~^~07/01/2015~ -~01104~^~619~^0.006^13^0.000^~1~^~AS~^^^1^0.004^0.006^10^0.005^0.007^~2, 3~^~07/01/2015~ -~01104~^~620~^0.002^13^0.000^~1~^~A~^^^1^0.002^0.002^9^0.001^0.002^~2, 3~^~07/01/2015~ -~01104~^~621~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~01104~^~624~^0.001^13^0.000^~1~^~A~^^^1^0.001^0.001^7^0.001^0.001^~2, 3~^~07/01/2015~ -~01104~^~625~^0.009^13^0.000^~1~^~A~^^^1^0.009^0.010^11^0.009^0.010^~2, 3~^~07/01/2015~ -~01104~^~626~^0.015^13^0.000^~1~^~AS~^^^1^0.015^0.015^11^0.014^0.016^~2, 3~^~07/01/2015~ -~01104~^~627~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~2, 3~^~02/01/1995~ -~01104~^~628~^0.003^13^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.004^~2, 3~^~07/01/2015~ -~01104~^~629~^0.001^13^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~2, 3~^~07/01/2015~ -~01104~^~630~^0.000^13^0.000^~1~^~AS~^^^1^0.000^0.000^9^0.000^0.000^~2, 3~^~02/01/1995~ -~01104~^~631~^0.001^13^0.000^~1~^~A~^^^1^0.001^0.001^9^0.001^0.001^~2, 3~^~07/01/2015~ -~01104~^~645~^0.300^0^^~1~^^^^^^^^^^^~11/01/2016~ -~01104~^~646~^0.049^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~ -~01104~^~652~^0.010^13^0.000^~1~^~A~^^^1^0.010^0.010^11^0.009^0.010^~2, 3~^~07/01/2015~ -~01104~^~653~^0.005^13^0.000^~1~^~A~^^^1^0.005^0.006^11^0.005^0.006^~2, 3~^~07/01/2015~ -~01104~^~654~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~2, 3~^~07/01/2015~ -~01104~^~662~^0.003^13^0.000^~1~^~A~^^^1^0.002^0.003^7^0.003^0.004^~2, 3~^~07/01/2015~ -~01104~^~663~^0.027^13^0.002^~1~^~A~^^^1^0.023^0.028^9^0.023^0.030^~2, 3~^~07/01/2015~ -~01104~^~664~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~665~^0.007^13^0.001^~1~^~A~^^^1^0.007^0.007^10^0.005^0.008^~2, 3~^~07/01/2015~ -~01104~^~670~^0.007^13^0.001^~1~^~A~^^^1^0.005^0.007^9^0.005^0.008^~2, 3~^~07/01/2015~ -~01104~^~671~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~672~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^10^0.000^0.001^~2, 3~^~07/01/2015~ -~01104~^~673~^0.012^13^0.000^~1~^~A~^^^1^0.012^0.013^10^0.011^0.013^~2, 3~^~07/01/2015~ -~01104~^~674~^0.221^13^0.004^~1~^~A~^^^1^0.221^0.225^10^0.212^0.231^~2, 3~^~07/01/2015~ -~01104~^~675~^0.025^13^0.001^~1~^~A~^^^1^0.024^0.026^10^0.023^0.027^~2, 3~^~07/01/2015~ -~01104~^~676~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~2, 3~^~07/01/2015~ -~01104~^~685~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~687~^0.002^13^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~2, 3~^~07/01/2015~ -~01104~^~689~^0.001^13^0.000^~1~^~AS~^^^1^0.001^0.001^11^0.001^0.002^~2, 3~^~07/01/2015~ -~01104~^~697~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~851~^0.006^13^0.000^~1~^~A~^^^1^0.004^0.006^10^0.005^0.007^~2, 3~^~07/01/2015~ -~01104~^~852~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~853~^0.001^13^0.000^~1~^~A~^^^1^0.001^0.001^11^0.001^0.002^~2, 3~^~07/01/2015~ -~01104~^~856~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01104~^~858~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01105~^~312~^0.103^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~315~^0.013^0^^~1~^~RPA~^^^^^^^^^^~08/01/2010~ -~01105~^~404~^0.039^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~405~^0.182^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~406~^0.133^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~410~^0.328^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~415~^0.040^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~501~^0.037^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~502~^0.095^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~503~^0.169^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~504~^0.305^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~505~^0.215^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~506~^0.076^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~507~^0.099^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~508~^0.150^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~509~^0.141^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~510~^0.201^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~511~^0.099^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~512~^0.067^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~513~^0.102^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~514~^0.276^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~515~^0.719^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~516~^0.056^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~517~^0.340^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~518~^0.184^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~01105~^~605~^0.078^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~606~^1.431^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01105~^~607~^0.071^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~608~^0.037^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~609~^0.019^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~610~^0.045^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~611~^0.050^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~612~^0.163^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~613~^0.640^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~614~^0.369^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~615~^0.004^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~617~^0.628^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~618~^0.074^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~619~^0.008^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~624~^0.002^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~625~^0.013^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~626~^0.025^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~ -~01105~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~628~^0.002^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~01105~^~645~^0.677^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01105~^~646~^0.084^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01105~^~652~^0.018^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~653~^0.010^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~687~^0.005^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~689~^0.003^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~693~^0.072^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01105~^~695~^0.007^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~ -~01105~^~696~^0.002^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01105~^~697~^0.004^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~ -~01106~^~312~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~315~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~404~^0.048^22^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~405~^0.138^61^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~406~^0.277^21^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~410~^0.310^23^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~415~^0.046^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~501~^0.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~502~^0.163^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~503~^0.207^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~504~^0.314^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~505~^0.290^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~506~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~507~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~508~^0.155^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~509~^0.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~510~^0.240^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~511~^0.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~512~^0.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~513~^0.118^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~514~^0.210^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~515~^0.626^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~516~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~517~^0.368^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~518~^0.181^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~606~^2.667^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~607~^0.128^14^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~608~^0.094^14^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~609~^0.096^15^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~610~^0.260^15^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~611~^0.124^15^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~612~^0.325^17^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~613~^0.911^17^0.043^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~614~^0.441^17^0.037^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~617~^0.977^17^0.047^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~618~^0.109^13^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~619~^0.040^10^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~626~^0.082^7^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01106~^~645~^1.109^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01106~^~646~^0.149^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~312~^0.052^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~315~^0.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~404~^0.014^279^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~405~^0.036^275^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~406~^0.177^271^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~410~^0.223^416^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~415~^0.011^88^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~501~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~502~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~503~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~504~^0.095^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~505~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~506~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~507~^0.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~508~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~509~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~510~^0.063^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~511~^0.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~512~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~513~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~514~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~515~^0.168^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~516~^0.026^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~517~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~518~^0.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~606~^2.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~610~^0.063^16^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~611~^0.256^18^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~612~^0.321^20^0.019^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~613~^0.919^20^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~614~^0.293^20^0.018^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~617~^1.475^20^0.037^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~618~^0.374^20^0.030^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~619~^0.052^15^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~620~^0.026^14^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01107~^~626~^0.129^17^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01107~^~628~^0.040^12^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01107~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01107~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01107~^~645~^1.658^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01107~^~646~^0.497^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~312~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~315~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~404~^0.052^14^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~405~^0.135^26^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~406~^0.091^4^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~410~^0.192^12^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~415~^0.023^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~501~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~502~^0.182^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~503~^0.203^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~504~^0.366^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~505~^0.280^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~506~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~507~^0.048^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~508~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~509~^0.183^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~510~^0.219^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~511~^0.114^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~512~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~513~^0.132^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~514~^0.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~515~^0.477^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~516~^0.080^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01108~^~517~^0.364^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01108~^~518~^0.227^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~606~^4.597^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~607~^0.276^23^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~608~^0.153^23^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~609~^0.071^24^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~610~^0.141^24^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~611~^0.167^24^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~612~^0.703^24^0.022^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~613~^1.999^24^0.057^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~614~^0.682^24^0.031^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~617~^1.566^24^0.053^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~618~^0.070^23^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~619~^0.076^23^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01108~^~626~^0.142^24^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~645~^1.787^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01108~^~646~^0.146^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~312~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~315~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~404~^0.065^9^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~405~^0.355^11^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~406~^0.417^7^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~410~^0.407^5^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~415~^0.060^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~501~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~502~^0.268^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~503~^0.338^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~504~^0.587^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~505~^0.513^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~506~^0.155^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~507~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~508~^0.284^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~509~^0.281^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~510~^0.448^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~511~^0.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~512~^0.167^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~513~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~514~^0.328^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~515~^1.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~516~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~517~^0.580^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~518~^0.492^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~606~^4.603^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~607~^0.204^13^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~608~^0.145^13^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~609~^0.138^13^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~610~^0.400^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~611~^0.239^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~612~^0.660^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~613~^1.622^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~614~^0.899^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~617~^1.558^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~618~^0.181^14^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~619~^0.127^12^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01109~^~626~^0.128^12^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~645~^1.724^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01109~^~646~^0.308^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~312~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~315~^0.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~404~^0.047^7^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~405~^0.222^7^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~406~^0.124^7^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~410~^0.363^6^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~415~^0.025^7^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~501~^0.043^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~502~^0.138^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~503~^0.185^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~504~^0.299^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~505~^0.242^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~506~^0.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~507~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~508~^0.147^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~509~^0.147^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~510~^0.204^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~511~^0.110^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~512~^0.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~513~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~514~^0.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~515~^0.639^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~516~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~517~^0.295^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~518~^0.166^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~606~^1.681^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~607~^0.088^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~608~^0.052^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~609~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~610~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~611~^0.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~612~^0.272^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~613~^0.710^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~614~^0.327^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~617~^0.679^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~618~^0.061^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~619~^0.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~626~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01110~^~645~^0.780^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01110~^~646~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~312~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~315~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~404~^0.030^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~405~^0.195^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~406~^0.146^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~410~^0.368^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01111~^~415~^0.042^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~501~^0.054^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~502~^0.174^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~503~^0.234^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~504~^0.378^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~505~^0.306^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~506~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~507~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~508~^0.186^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~509~^0.186^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~510~^0.258^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~511~^0.140^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~512~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~513~^0.133^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~514~^0.293^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~515~^0.808^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~516~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~517~^0.374^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~518~^0.210^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~606~^1.886^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~607~^0.098^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~608~^0.058^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~609~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~610~^0.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~611~^0.085^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~612~^0.305^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~613~^0.797^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~614~^0.367^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~617~^0.762^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~618~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~619~^0.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~626~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01111~^~645~^0.875^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01111~^~646~^0.113^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~312~^0.003^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~404~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~405~^0.140^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~406~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~410~^0.381^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~415~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~501~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~502~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~503~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~504~^0.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~505~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~506~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~507~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~508~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~509~^0.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~510~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~511~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~512~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~513~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~514~^0.074^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~515~^0.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~516~^0.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~517~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~518~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~606~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~607~^0.004^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~608~^0.001^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~609~^0.001^4^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~610~^0.002^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~611~^0.001^4^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~612~^0.008^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~613~^0.025^4^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~614~^0.010^4^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~617~^0.019^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~618~^0.003^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~619~^0.000^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01112~^~621~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~626~^0.004^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~627~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~628~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~629~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~630~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~631~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01112~^~645~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01112~^~646~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~312~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~315~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~404~^0.622^13^0.072^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~405~^2.060^13^0.130^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~406~^1.160^10^0.195^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~410~^5.632^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~415~^0.620^10^0.051^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~501~^0.241^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~502~^0.590^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~503~^0.581^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~504~^1.116^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~505~^1.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~506~^0.221^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~507~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~508~^0.386^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~509~^0.300^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~510~^0.579^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~511~^0.327^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~512~^0.230^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~513~^0.506^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~514~^1.149^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~515~^2.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~516~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~517~^0.699^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~518~^0.541^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~606~^0.342^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~607~^0.023^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~608~^0.008^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~609~^0.005^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~610~^0.010^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~611~^0.006^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~612~^0.046^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~613~^0.150^4^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~614~^0.060^4^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~617~^0.114^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~618~^0.018^4^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~619~^0.003^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~626~^0.026^4^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01113~^~645~^0.149^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01113~^~646~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~312~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~315~^0.001^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~404~^0.036^19^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~405~^0.158^26^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~406~^0.074^13^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~410~^0.383^8^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~415~^0.031^13^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~501~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~502~^0.054^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~503~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~504~^0.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~505~^0.068^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~506~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~507~^0.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~508~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~509~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~510~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~511~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~512~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~513~^0.039^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~514~^0.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~515~^0.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~516~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~517~^0.052^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~518~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~606~^0.230^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~607~^0.020^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~608~^0.003^4^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~609~^0.003^4^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~610~^0.006^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~611~^0.004^4^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~612~^0.035^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~613~^0.110^4^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~614~^0.033^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~617~^0.084^4^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~618~^0.008^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~619~^0.003^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01114~^~621~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~626~^0.011^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~627~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~628~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~629~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~630~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~631~^0.000^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~ -~01114~^~645~^0.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01114~^~646~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~312~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~315~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~404~^0.519^44^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~405~^2.208^44^0.061^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~406~^1.258^43^0.051^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~410~^5.620^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~415~^0.584^41^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~501~^0.205^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~502~^0.817^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~503~^0.719^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~504~^1.186^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~505~^1.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~506~^0.241^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~507~^0.253^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~508~^0.407^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~509~^0.363^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~510~^0.697^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~511~^0.375^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~512~^0.237^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~513~^0.598^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~514~^1.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~515~^2.248^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~516~^0.280^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~517~^0.786^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~518~^0.622^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~606~^0.684^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~607~^0.059^4^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~608~^0.009^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~609~^0.010^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~610~^0.018^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~611~^0.012^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~612~^0.104^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~613~^0.326^4^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~614~^0.097^4^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~617~^0.251^4^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~618~^0.025^4^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~619~^0.009^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~626~^0.033^4^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01115~^~645~^0.297^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01115~^~646~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~312~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~404~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~405~^0.142^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~406~^0.075^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~410~^0.389^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~415~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~501~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~502~^0.142^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~503~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~504~^0.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~505~^0.311^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~506~^0.102^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~507~^0.032^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01116~^~508~^0.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~509~^0.175^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~510~^0.287^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~511~^0.104^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~512~^0.086^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~513~^0.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~514~^0.275^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~515~^0.679^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~516~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~517~^0.411^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~518~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~606~^2.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~607~^0.096^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~608~^0.066^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~609~^0.042^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~610~^0.093^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~611~^0.111^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~612~^0.343^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~613~^0.886^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~614~^0.317^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~617~^0.743^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~618~^0.065^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~619~^0.027^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~626~^0.071^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01116~^~645~^0.893^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01116~^~646~^0.092^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~312~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~404~^0.044^26^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~405~^0.214^11^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~406~^0.114^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~410~^0.591^9^0.052^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~415~^0.049^10^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~501~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~502~^0.216^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~503~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~504~^0.529^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~505~^0.471^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~506~^0.155^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~507~^0.048^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01117~^~508~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~509~^0.265^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~510~^0.434^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~511~^0.158^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~512~^0.130^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~513~^0.225^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~514~^0.416^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~515~^1.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~516~^0.127^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~517~^0.622^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~518~^0.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~606~^1.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~607~^0.046^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~608~^0.032^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~609~^0.020^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~610~^0.044^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~611~^0.053^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~612~^0.163^3^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~613~^0.422^3^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~614~^0.151^3^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~617~^0.354^3^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~618~^0.031^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~619~^0.013^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~626~^0.034^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01117~^~645~^0.426^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01117~^~646~^0.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~312~^0.015^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~315~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~404~^0.048^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~405~^0.234^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~406~^0.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~410~^0.641^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~415~^0.053^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~501~^0.032^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~502~^0.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~503~^0.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~504~^0.577^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~505~^0.514^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~506~^0.169^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~507~^0.052^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01118~^~508~^0.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~509~^0.289^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~510~^0.474^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~511~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~512~^0.142^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~513~^0.245^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~514~^0.454^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~515~^1.122^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~516~^0.138^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~517~^0.679^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~518~^0.355^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~606~^0.116^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~607~^0.005^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~608~^0.004^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~609~^0.002^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~610~^0.005^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~611~^0.006^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~612~^0.019^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~613~^0.049^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~614~^0.018^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~617~^0.041^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~618~^0.004^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~619~^0.001^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~626~^0.004^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01118~^~645~^0.049^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01118~^~646~^0.005^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~312~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~404~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~405~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~406~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~410~^0.552^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~501~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~502~^0.202^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~503~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~504~^0.497^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~505~^0.442^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~506~^0.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~507~^0.045^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01119~^~508~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~509~^0.249^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~510~^0.408^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~511~^0.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~512~^0.122^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~513~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~514~^0.391^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~515~^0.965^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~516~^0.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~517~^0.584^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~518~^0.305^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~606~^0.806^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~607~^0.037^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~608~^0.025^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~609~^0.016^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~610~^0.036^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~611~^0.043^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~612~^0.132^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~613~^0.341^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~614~^0.122^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~617~^0.286^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~618~^0.025^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~619~^0.010^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~626~^0.027^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01119~^~645~^0.343^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01119~^~646~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~312~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~315~^0.064^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~404~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~405~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~406~^0.086^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~410~^0.446^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~415~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~501~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~502~^0.163^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~503~^0.217^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~504~^0.401^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~505~^0.357^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~506~^0.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~507~^0.036^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01120~^~508~^0.217^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~509~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~510~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~511~^0.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~512~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~513~^0.170^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~514~^0.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~515~^0.779^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~516~^0.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~517~^0.472^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~518~^0.246^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~606~^0.742^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~607~^0.034^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~608~^0.023^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~609~^0.015^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~610~^0.033^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~611~^0.039^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~612~^0.121^3^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~613~^0.313^3^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~614~^0.112^3^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~617~^0.263^3^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~618~^0.023^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~619~^0.010^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~626~^0.025^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01120~^~645~^0.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01120~^~646~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~312~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~315~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~404~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~405~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~406~^0.095^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~410~^0.489^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~415~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~501~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~502~^0.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~503~^0.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~504~^0.440^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~505~^0.392^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~506~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~507~^0.040^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01121~^~508~^0.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~509~^0.221^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~510~^0.362^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~511~^0.132^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~512~^0.108^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~513~^0.187^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~514~^0.347^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~515~^0.856^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~516~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~517~^0.518^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~518~^0.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~606~^0.697^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~607~^0.032^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~608~^0.022^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~609~^0.014^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~610~^0.031^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~611~^0.037^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~612~^0.114^3^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~613~^0.294^3^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~614~^0.105^3^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~617~^0.247^3^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~618~^0.022^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~619~^0.009^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~626~^0.024^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01121~^~645~^0.297^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01121~^~646~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~312~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~315~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~404~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~405~^0.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~406~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~410~^0.544^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~501~^0.027^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~502~^0.200^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~503~^0.265^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~504~^0.490^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~505~^0.436^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~506~^0.143^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~507~^0.044^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01122~^~508~^0.265^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~509~^0.245^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~510~^0.402^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~511~^0.146^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~512~^0.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~513~^0.208^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~514~^0.385^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~515~^0.951^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~516~^0.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~517~^0.576^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~518~^0.301^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~606~^0.909^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~607~^0.042^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~608~^0.029^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~609~^0.018^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~610~^0.040^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~611~^0.048^3^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~612~^0.149^3^0.011^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~613~^0.384^3^0.029^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~614~^0.137^3^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~617~^0.322^3^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~618~^0.028^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~619~^0.012^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01122~^~626~^0.031^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~645~^0.387^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01122~^~646~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01123~^~312~^0.072^6^0.001^~1~^~A~^^^1^0.067^0.075^5^0.069^0.075^~2, 3~^~08/01/2010~ -~01123~^~315~^0.028^6^0.001^~1~^~A~^^^1^0.025^0.031^5^0.025^0.031^~2, 3~^~08/01/2010~ -~01123~^~404~^0.040^6^0.003^~1~^~A~^^^1^0.030^0.050^5^0.033^0.047^~2, 3~^~08/01/2010~ -~01123~^~405~^0.457^6^0.020^~1~^~A~^^^1^0.410^0.520^5^0.405^0.508^~2, 3~^~08/01/2010~ -~01123~^~406~^0.075^6^0.002^~1~^~A~^^^1^0.070^0.080^5^0.069^0.081^~2, 3~^~08/01/2010~ -~01123~^~410~^1.533^6^0.049^~1~^~A~^^^1^1.400^1.700^5^1.406^1.660^~2, 3~^~08/01/2010~ -~01123~^~415~^0.170^6^0.004^~1~^~A~^^^1^0.160^0.185^5^0.160^0.179^~2, 3~^~08/01/2010~ -~01123~^~501~^0.167^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~502~^0.556^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~503~^0.671^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~504~^1.086^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~505~^0.912^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~506~^0.380^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~507~^0.272^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~508~^0.680^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~509~^0.499^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~510~^0.858^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~511~^0.820^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~512~^0.309^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~513~^0.735^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~514~^1.329^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~515~^1.673^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~516~^0.432^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~517~^0.512^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~518~^0.971^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~01123~^~605~^0.038^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~606~^3.126^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~607~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~08/01/2010~ -~01123~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~609~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.004^~1, 2, 3~^~08/01/2010~ -~01123~^~610~^0.006^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.005^0.006^~2, 3~^~08/01/2010~ -~01123~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~08/01/2010~ -~01123~^~612~^0.033^12^0.001^~1~^~A~^^^1^0.029^0.038^11^0.032^0.035^~2, 3~^~08/01/2010~ -~01123~^~613~^2.231^12^0.039^~1~^~A~^^^1^1.995^2.433^11^2.144^2.317^~2, 3~^~08/01/2010~ -~01123~^~614~^0.811^12^0.016^~1~^~A~^^^1^0.706^0.889^11^0.775^0.847^~2, 3~^~08/01/2010~ -~01123~^~615~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.003^~1, 2, 3~^~08/01/2010~ -~01123~^~617~^3.411^12^0.050^~1~^~AS~^^^1^3.056^3.660^11^3.300^3.521^~2, 3~^~08/01/2010~ -~01123~^~618~^1.555^12^0.062^~1~^~AS~^^^1^1.317^2.010^11^1.419^1.691^~2, 3~^~08/01/2010~ -~01123~^~619~^0.048^12^0.002^~1~^~AS~^^^1^0.034^0.059^11^0.043^0.054^~2, 3~^~08/01/2010~ -~01123~^~620~^0.188^12^0.005^~1~^~A~^^^1^0.163^0.211^11^0.177^0.200^~2, 3~^~08/01/2010~ -~01123~^~621~^0.058^12^0.002^~1~^~A~^^^1^0.045^0.070^11^0.054^0.063^~2, 3~^~08/01/2010~ -~01123~^~624~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~08/01/2010~ -~01123~^~625~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.008^11^0.006^0.007^~2, 3~^~08/01/2010~ -~01123~^~626~^0.201^12^0.008^~1~^~AS~^^^1^0.154^0.236^11^0.184^0.218^~2, 3~^~08/01/2010~ -~01123~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~628~^0.027^12^0.001^~1~^~A~^^^1^0.024^0.030^11^0.026^0.028^~2, 3~^~08/01/2010~ -~01123~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.001^~1, 2, 3~^~08/01/2010~ -~01123~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2010~ -~01123~^~631~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.008^11^0.006^0.007^~2, 3~^~08/01/2010~ -~01123~^~645~^3.658^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~646~^1.911^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~652~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.010^11^0.008^0.009^~2, 3~^~08/01/2010~ -~01123~^~653~^0.022^12^0.001^~1~^~A~^^^1^0.016^0.027^11^0.019^0.024^~2, 3~^~08/01/2010~ -~01123~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~662~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.004^~1, 2, 3~^~08/01/2010~ -~01123~^~663~^0.023^12^0.002^~1~^~A~^^^1^0.014^0.030^11^0.019^0.026^~2, 3~^~08/01/2010~ -~01123~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~665~^0.012^12^0.001^~1~^~A~^^^1^0.008^0.015^11^0.011^0.014^~2, 3~^~08/01/2010~ -~01123~^~670~^0.012^12^0.001^~1~^~A~^^^1^0.006^0.016^11^0.010^0.014^~2, 3~^~08/01/2010~ -~01123~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~672~^0.018^12^0.001^~1~^~A~^^^1^0.014^0.026^11^0.016^0.020^~2, 3~^~08/01/2010~ -~01123~^~673~^0.198^12^0.008^~1~^~A~^^^1^0.151^0.233^11^0.180^0.215^~2, 3~^~08/01/2010~ -~01123~^~674~^3.388^12^0.051^~1~^~A~^^^1^3.031^3.630^11^3.276^3.500^~2, 3~^~08/01/2010~ -~01123~^~675~^1.531^12^0.062^~1~^~A~^^^1^1.293^1.988^11^1.393^1.668^~2, 3~^~08/01/2010~ -~01123~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~685~^0.012^12^0.000^~1~^~A~^^^1^0.010^0.014^11^0.012^0.013^~2, 3~^~08/01/2010~ -~01123~^~687~^0.012^12^0.001^~1~^~A~^^^1^0.008^0.017^11^0.011^0.014^~2, 3~^~08/01/2010~ -~01123~^~689~^0.023^12^0.000^~1~^~AS~^^^1^0.022^0.026^11^0.022^0.024^~2, 3~^~08/01/2010~ -~01123~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01123~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~01123~^~851~^0.036^12^0.002^~1~^~A~^^^1^0.023^0.047^11^0.031^0.041^~2, 3~^~08/01/2010~ -~01123~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~08/01/2010~ -~01123~^~853~^0.022^12^0.000^~1~^~A~^^^1^0.020^0.025^11^0.022^0.023^~2, 3~^~08/01/2010~ -~01123~^~858~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.017^11^0.012^0.015^~2, 3~^~08/01/2010~ -~01124~^~312~^0.023^12^0.002^~1~^~A~^^^1^0.019^0.037^11^0.019^0.027^~1, 2, 3~^~03/01/2003~ -~01124~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~01/01/2003~ -~01124~^~404~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~01124~^~405~^0.439^12^0.008^~1~^~A~^^^1^0.375^0.489^11^0.420^0.457^~2, 3~^~03/01/2003~ -~01124~^~406~^0.105^4^0.002^~1~^~A~^^^1^0.099^0.111^3^0.097^0.112^~2, 3~^~03/01/2003~ -~01124~^~410~^0.190^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~415~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~01124~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~502~^0.449^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~503~^0.661^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~504~^1.016^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~505~^0.806^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~506~^0.399^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~507~^0.287^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~508~^0.686^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~509~^0.457^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~510~^0.809^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~511~^0.648^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~512~^0.290^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~513~^0.704^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~514~^1.220^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~515~^1.550^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~516~^0.413^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~517~^0.435^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~518~^0.798^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01124~^~606~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~01124~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~01124~^~645~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~01124~^~646~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~01125~^~312~^0.077^12^0.006^~1~^~A~^^^1^0.047^0.127^11^0.064^0.090^~2, 3~^~03/01/2003~ -~01125~^~315~^0.055^12^0.004^~1~^~A~^^^1^0.043^0.082^11^0.047^0.064^~2, 3~^~01/01/2003~ -~01125~^~404~^0.176^4^0.021^~1~^~A~^^^1^0.131^0.228^3^0.109^0.242^~2, 3~^~03/01/2003~ -~01125~^~405~^0.528^12^0.027^~1~^~A~^^^1^0.327^0.690^11^0.468^0.588^~2, 3~^~03/01/2003~ -~01125~^~406~^0.024^4^0.002^~1~^~A~^^^1^0.022^0.030^3^0.018^0.031^~1, 2, 3~^~03/01/2003~ -~01125~^~410~^2.990^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~415~^0.350^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~01125~^~501~^0.177^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~502~^0.687^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~503~^0.866^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~504~^1.399^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~505~^1.217^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~506~^0.378^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~507~^0.264^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~508~^0.681^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~509~^0.678^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~510~^0.949^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~511~^1.099^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~512~^0.416^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~513~^0.836^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~514~^1.550^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~515~^1.970^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~516~^0.488^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~517~^0.646^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~518~^1.326^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~01125~^~606~^9.551^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01125~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01125~^~609~^0.009^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~610~^0.009^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~611~^0.009^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~612~^0.104^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~613~^6.860^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~614~^2.417^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~615~^0.032^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~617~^10.701^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~618~^3.538^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~619~^0.103^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~620~^0.438^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~621~^0.114^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~624~^0.038^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~625~^0.024^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~626~^0.918^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01125~^~628~^0.086^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~629~^0.011^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~630~^0.009^33^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01125~^~645~^11.738^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~646~^4.204^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~01125~^~652~^0.013^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~653~^0.051^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01125~^~654~^0.009^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01126~^~312~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2015~ -~01126~^~315~^0.078^3^^~1~^~A~^^^1^0.069^0.090^^^^~2~^~04/01/2012~ -~01126~^~404~^0.223^3^^~1~^~A~^^^1^0.170^0.320^^^^~2~^~04/01/2012~ -~01126~^~405~^0.563^3^^~1~^~A~^^^1^0.510^0.610^^^^~2~^~04/01/2012~ -~01126~^~406~^0.031^3^^~1~^~A~^^^1^0.022^0.040^^^^~1, 2~^~04/01/2012~ -~01126~^~410~^3.437^3^^~1~^~A~^^^1^3.110^3.610^^^^~2~^~04/01/2012~ -~01126~^~415~^0.412^15^0.007^~1~^~A~^^^1^0.375^0.455^14^0.397^0.426^~4~^~04/01/2015~ -~01126~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~502~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~503~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~504~^1.351^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~505~^1.182^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~506~^0.375^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~508~^0.689^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~509~^0.682^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~510~^0.908^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~512~^0.399^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~513~^0.811^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~514~^1.503^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~515~^1.942^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~516~^0.476^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~517~^0.615^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~518~^1.301^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01126~^~605~^0.098^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~606~^8.615^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~02/01/1995~ -~01126~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~02/01/1995~ -~01126~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~612~^0.083^15^0.001^~1~^~A~^^^1^0.076^0.089^14^0.080^0.086^~4~^~04/01/2015~ -~01126~^~613~^6.211^15^0.038^~1~^~A~^^^1^5.850^6.440^14^6.128^6.293^~4~^~04/01/2015~ -~01126~^~614~^2.249^15^0.031^~1~^~A~^^^1^2.100^2.430^14^2.181^2.316^~4~^~04/01/2015~ -~01126~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01126~^~617~^9.331^15^0.142^~1~^~AS~^^^1^8.236^10.063^14^9.027^9.635^~4~^~04/01/2015~ -~01126~^~618~^4.009^15^0.175^~1~^~AS~^^^1^3.142^5.142^14^3.635^4.383^~4~^~04/01/2015~ -~01126~^~619~^0.124^15^0.010^~1~^~AS~^^^1^0.083^0.227^14^0.102^0.146^~4~^~04/01/2015~ -~01126~^~620~^0.490^15^0.011^~1~^~A~^^^1^0.410^0.539^14^0.467^0.512^~4~^~04/01/2015~ -~01126~^~621~^0.135^15^0.005^~1~^~A~^^^1^0.112^0.171^14^0.125^0.145^~4~^~04/01/2015~ -~01126~^~624~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~625~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01126~^~626~^0.545^15^0.023^~1~^~A~^^^1^0.400^0.657^14^0.495^0.596^~4~^~04/01/2015~ -~01126~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01126~^~628~^0.058^15^0.001^~1~^~A~^^^1^0.052^0.064^14^0.056^0.060^~4~^~04/01/2015~ -~01126~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01126~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~631~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01126~^~645~^9.956^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~646~^4.827^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~652~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01126~^~653~^0.051^15^0.001^~1~^~A~^^^1^0.045^0.062^14^0.048^0.053^~4~^~04/01/2012~ -~01126~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01126~^~663~^0.069^15^0.005^~1~^~A~^^^1^0.051^0.112^14^0.058^0.081^~4~^~04/01/2015~ -~01126~^~669~^0.029^15^0.003^~1~^~A~^^^1^0.022^0.056^14^0.023^0.035^~1, 4~^~04/01/2015~ -~01126~^~672~^0.047^15^0.002^~1~^~A~^^^1^0.035^0.061^14^0.043^0.051^~4~^~04/01/2015~ -~01126~^~674~^9.261^15^0.144^~1~^~A~^^^1^8.130^10.000^14^8.952^9.571^~4~^~04/01/2015~ -~01126~^~675~^3.980^15^0.174^~1~^~A~^^^1^3.120^5.120^14^3.607^4.353^~4~^~04/01/2015~ -~01126~^~685~^0.031^15^0.002^~1~^~A~^^^1^0.022^0.040^14^0.028^0.035^~1, 4~^~04/01/2015~ -~01126~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01126~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01126~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01126~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01126~^~851~^0.093^15^0.011^~1~^~A~^^^1^0.053^0.190^14^0.070^0.115^~4~^~04/01/2015~ -~01126~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01127~^~312~^0.012^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01127~^~315~^0.080^3^^~1~^~A~^^^1^0.072^0.090^^^^~2~^~04/01/2012~ -~01127~^~404~^0.140^3^^~1~^~A~^^^1^0.120^0.160^^^^~2~^~04/01/2012~ -~01127~^~405~^0.523^3^^~1~^~A~^^^1^0.520^0.530^^^^~2~^~04/01/2012~ -~01127~^~406~^0.037^3^^~1~^~A~^^^1^0.022^0.050^^^^~1, 2~^~04/01/2012~ -~01127~^~410~^3.287^3^^~1~^~A~^^^1^2.760^3.630^^^^~2~^~04/01/2012~ -~01127~^~415~^0.398^3^^~1~^~A~^^^1^0.393^0.406^^^^~2~^~04/01/2012~ -~01127~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~502~^0.627^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~503~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~504~^1.180^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~505~^1.033^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~506~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~507~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~508~^0.607^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~509~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~510~^0.790^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~511~^0.917^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~512~^0.353^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~513~^0.703^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~514~^1.337^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~515~^1.690^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~516~^0.417^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~517~^0.547^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~518~^1.137^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01127~^~605~^0.115^0^^~4~^~BFSN~^~01126~^^^^^^^^^~04/01/2011~ -~01127~^~606~^7.110^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~607~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~608~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~05/01/1996~ -~01127~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~05/01/1996~ -~01127~^~611~^0.003^3^^~1~^~A~^^^1^0.000^0.009^^^^~1, 2~^~04/01/2012~ -~01127~^~612~^0.104^3^^~1~^~A~^^^1^0.066^0.171^^^^~2~^~04/01/2012~ -~01127~^~613~^5.127^3^^~1~^~A~^^^1^4.993^5.270^^^^~2~^~04/01/2012~ -~01127~^~614~^1.822^3^^~1~^~A~^^^1^1.742^1.876^^^^~2~^~04/01/2012~ -~01127~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~617~^8.259^3^^~1~^~A~^^^1^8.039^8.383^^^^~2~^~04/01/2012~ -~01127~^~618~^3.154^3^^~1~^~A~^^^1^2.889^3.320^^^^~2~^~04/01/2012~ -~01127~^~619~^0.112^3^^~1~^~AS~^^^1^0.096^0.134^^^^~2~^~04/01/2012~ -~01127~^~620~^0.400^3^^~1~^~A~^^^1^0.394^0.413^^^^~2~^~04/01/2012~ -~01127~^~621~^0.129^3^^~1~^~A~^^^1^0.116^0.154^^^^~2~^~04/01/2012~ -~01127~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~625~^0.019^3^^~1~^~A~^^^1^0.009^0.028^^^^~2~^~04/01/2012~ -~01127~^~626~^0.527^3^^~1~^~A~^^^1^0.505^0.543^^^^~2~^~04/01/2012~ -~01127~^~627~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01127~^~628~^0.058^3^^~1~^~A~^^^1^0.058^0.058^^^^~2~^~04/01/2012~ -~01127~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2~^~05/01/1996~ -~01127~^~631~^0.013^3^^~1~^~A~^^^1^0.010^0.019^^^^~2~^~04/01/2012~ -~01127~^~645~^8.885^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~646~^3.856^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01127~^~652~^0.013^3^^~1~^~A~^^^1^0.010^0.019^^^^~2~^~04/01/2012~ -~01127~^~653~^0.041^3^^~1~^~A~^^^1^0.038^0.048^^^^~2~^~04/01/2012~ -~01127~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~672~^0.048^3^^~1~^~A~^^^1^0.048^0.048^^^^~2~^~04/01/2012~ -~01127~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~685~^0.029^3^^~1~^~A~^^^1^0.029^0.029^^^^~2~^~04/01/2012~ -~01127~^~687~^0.022^3^^~1~^~A~^^^1^0.000^0.038^^^^~1, 2~^~04/01/2012~ -~01127~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01127~^~851~^0.083^3^^~1~^~A~^^^1^0.067^0.105^^^^~2~^~04/01/2012~ -~01128~^~312~^0.078^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~315~^0.030^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~404~^0.044^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~405~^0.495^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~406~^0.082^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~410~^1.660^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~415~^0.184^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~501~^0.181^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~502~^0.602^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~503~^0.728^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~504~^1.177^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~505~^0.989^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~506~^0.411^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~507~^0.294^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~508~^0.736^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~509~^0.541^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~510~^0.930^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~511~^0.887^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~512~^0.335^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~513~^0.795^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~514~^1.438^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~515~^1.817^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~516~^0.467^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~517~^0.558^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~518~^1.051^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~605~^0.041^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~606~^4.323^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~607~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~609~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~610~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~612~^0.047^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~613~^2.954^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~614~^1.268^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~615~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~617~^5.904^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~618~^2.781^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~619~^0.137^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~620~^0.203^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~621~^0.063^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~624~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~625~^0.007^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~626~^0.228^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01128~^~628~^0.029^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~631~^0.007^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~645~^6.182^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~646~^3.251^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~652~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~653~^0.023^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~672~^0.019^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~687~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~689~^0.025^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01128~^~858~^0.014^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01129~^~312~^0.013^14^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~315~^0.026^14^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~404~^0.066^14^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~405~^0.513^14^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~406~^0.064^14^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~410~^1.398^14^0.028^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~415~^0.121^14^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~01129~^~501~^0.153^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~502~^0.604^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~503~^0.686^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~504~^1.075^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~505~^0.904^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~506~^0.392^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~507~^0.292^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~508~^0.668^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~509~^0.513^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~510~^0.767^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~511~^0.755^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~512~^0.298^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~513~^0.700^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~514~^1.264^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~515~^1.644^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~516~^0.423^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~517~^0.501^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~518~^0.936^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~606~^3.267^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01129~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01129~^~609~^0.003^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~610~^0.003^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~611~^0.003^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~612~^0.035^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~613~^2.349^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~614~^0.828^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~617~^3.725^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~618~^1.188^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~619~^0.035^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~620~^0.149^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~621~^0.038^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~626~^0.310^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01129~^~628~^0.030^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~629~^0.005^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~630~^0.003^37^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01129~^~645~^4.077^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01129~^~646~^1.414^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01130~^~312~^0.063^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~315~^0.024^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~404~^0.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~405~^0.386^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~406~^0.064^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~410~^1.289^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~415~^0.143^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~501~^0.140^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~502~^0.467^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~503~^0.565^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~504~^0.913^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~505~^0.767^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~506~^0.319^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~507~^0.229^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~508~^0.572^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~509~^0.420^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~510~^0.722^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~511~^0.690^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~512~^0.260^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~513~^0.618^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~514~^1.117^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~515~^1.407^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~516~^0.363^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~517~^0.431^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~518~^0.817^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~605~^0.709^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~606~^3.319^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~607~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~609~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~610~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~612~^0.030^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~613~^2.259^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~614~^0.963^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~615~^0.014^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~617~^4.626^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~618~^2.319^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~619~^0.133^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~620~^0.158^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~621~^0.049^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~624~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~625~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~626~^0.171^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01130~^~628~^0.029^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~631~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~645~^4.843^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~646~^2.712^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~652~^0.008^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~653~^0.021^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~654~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01130~^~672~^0.015^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~687~^0.012^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~689~^0.020^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01130~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01130~^~858~^0.011^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01131~^~312~^0.072^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~315~^0.028^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~404~^0.032^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~405~^0.387^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~406~^0.063^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~410~^1.527^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~415~^0.144^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~501~^0.166^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~502~^0.553^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~503~^0.669^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~504~^1.082^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~505~^0.909^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~506~^0.378^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~507~^0.271^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~508~^0.677^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~509~^0.497^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~510~^0.855^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~511~^0.817^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~512~^0.308^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~513~^0.732^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~514~^1.323^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~515~^1.667^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~516~^0.430^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~517~^0.510^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~518~^0.967^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~605~^0.038^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~606~^3.113^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~607~^0.004^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~608~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~609~^0.004^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~610~^0.006^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~611~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~612~^0.033^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~613~^2.222^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~614~^0.808^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~615~^0.003^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~617~^3.397^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~618~^1.549^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~619~^0.048^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~620~^0.188^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~621~^0.058^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~624~^0.004^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~625~^0.007^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~626~^0.200^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~627~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~01131~^~628~^0.027^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~629~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~630~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~631~^0.007^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~645~^3.643^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~646~^1.904^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~652~^0.008^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~653~^0.021^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~654~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~671~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~672~^0.018^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~687~^0.012^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~689~^0.023^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~697~^0.000^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01131~^~858~^0.013^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~ -~01132~^~312~^0.059^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~315~^0.022^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~404~^0.040^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~405~^0.376^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~406~^0.076^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~410~^1.217^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~415~^0.134^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~501~^0.139^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~502~^0.442^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~503~^0.532^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~504~^0.861^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~505~^0.705^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~506~^0.297^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~507~^0.205^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~508~^0.535^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~509~^0.402^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~510~^0.676^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~511~^0.623^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~512~^0.245^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~513~^0.566^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~514~^1.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~515~^1.378^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~516~^0.335^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~517~^0.453^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~518~^0.742^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~605~^0.624^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~606~^3.331^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~607~^0.019^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~608~^0.016^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~609~^0.019^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~610~^0.021^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~611~^0.017^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~612~^0.092^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~613~^2.170^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~614~^0.927^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~615~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~617~^4.250^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~618~^2.067^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~619~^0.134^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~620~^0.139^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~621~^0.043^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~624~^0.008^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~625~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~626~^0.150^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~628~^0.025^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~631~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~645~^4.441^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~646~^2.429^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~652~^0.007^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~653~^0.019^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~654~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~672~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~687~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~689~^0.017^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01132~^~858~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01133~^~312~^0.203^3^^~1~^~A~^^^1^0.160^0.264^^^^~2~^~04/01/2012~ -~01133~^~315~^0.058^3^^~1~^~A~^^^1^0.050^0.062^^^^~2~^~04/01/2012~ -~01133~^~404~^0.183^3^^~1~^~A~^^^1^0.130^0.260^^^^~2~^~04/01/2012~ -~01133~^~405~^1.977^3^^~1~^~A~^^^1^1.890^2.150^^^^~2~^~04/01/2012~ -~01133~^~406~^0.340^3^^~1~^~A~^^^1^0.330^0.350^^^^~2~^~04/01/2012~ -~01133~^~410~^5.550^3^^~1~^~A~^^^1^5.370^5.830^^^^~2~^~04/01/2012~ -~01133~^~415~^0.499^15^0.018^~1~^~A~^^^1^0.322^0.587^14^0.459^0.538^~4~^~04/01/2015~ -~01133~^~501~^0.775^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~502~^2.129^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~503~^2.434^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~504~^4.150^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~505~^3.339^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~506~^1.495^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~507~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~508~^2.530^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~509~^1.981^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~510~^2.991^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~511~^3.071^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~512~^1.202^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~513~^2.706^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~514~^5.020^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~515~^6.388^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~516~^1.623^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~517~^1.832^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~518~^3.773^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01133~^~605~^0.265^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~606~^15.069^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01133~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01133~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01133~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01133~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01133~^~612~^0.144^15^0.003^~1~^~A~^^^1^0.128^0.166^14^0.137^0.150^~4~^~04/01/2015~ -~01133~^~613~^10.811^15^0.167^~1~^~A~^^^1^9.970^12.200^14^10.453^11.170^~4~^~04/01/2015~ -~01133~^~614~^3.974^15^0.058^~1~^~A~^^^1^3.620^4.330^14^3.850^4.098^~4~^~04/01/2015~ -~01133~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01133~^~617~^15.729^15^0.286^~1~^~AS~^^^1^14.168^18.006^14^15.115^16.342^~4~^~04/01/2015~ -~01133~^~618~^7.049^15^0.246^~1~^~AS~^^^1^5.827^9.593^14^6.522^7.575^~4~^~04/01/2015~ -~01133~^~619~^0.247^15^0.011^~1~^~AS~^^^1^0.175^0.302^14^0.224^0.270^~4~^~04/01/2015~ -~01133~^~620~^0.711^15^0.017^~1~^~A~^^^1^0.621^0.868^14^0.675^0.746^~4~^~04/01/2015~ -~01133~^~621~^0.199^15^0.007^~1~^~A~^^^1^0.164^0.238^14^0.184^0.214^~4~^~04/01/2015~ -~01133~^~624~^0.023^15^0.001^~1~^~A~^^^1^0.022^0.033^14^0.021^0.025^~1, 4~^~04/01/2015~ -~01133~^~625~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01133~^~626~^0.877^15^0.047^~1~^~A~^^^1^0.682^1.190^14^0.777^0.977^~4~^~04/01/2015~ -~01133~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01133~^~628~^0.098^15^0.002^~1~^~A~^^^1^0.088^0.115^14^0.094^0.103^~4~^~04/01/2015~ -~01133~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01133~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01133~^~631~^0.024^15^0.001^~1~^~A~^^^1^0.022^0.032^14^0.022^0.026^~1, 4~^~04/01/2015~ -~01133~^~645~^16.726^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~646~^8.314^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~652~^0.025^15^0.001^~1~^~A~^^^1^0.022^0.034^14^0.022^0.027^~1, 4~^~04/01/2015~ -~01133~^~653~^0.092^15^0.003^~1~^~A~^^^1^0.078^0.114^14^0.086^0.099^~4~^~04/01/2015~ -~01133~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01133~^~663~^0.182^15^0.006^~1~^~A~^^^1^0.129^0.218^14^0.169^0.195^~4~^~04/01/2015~ -~01133~^~669~^0.060^15^0.003^~1~^~A~^^^1^0.041^0.081^14^0.055^0.066^~4~^~04/01/2015~ -~01133~^~672~^0.085^15^0.004^~1~^~A~^^^1^0.067^0.128^14^0.076^0.093^~4~^~04/01/2015~ -~01133~^~674~^15.547^15^0.283^~1~^~A~^^^1^14.000^17.800^14^14.939^16.155^~4~^~04/01/2015~ -~01133~^~675~^6.989^15^0.246^~1~^~A~^^^1^5.770^9.540^14^6.460^7.517^~4~^~04/01/2015~ -~01133~^~685~^0.054^15^0.002^~1~^~A~^^^1^0.045^0.064^14^0.051^0.058^~4~^~04/01/2015~ -~01133~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01133~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01133~^~693~^0.182^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~695~^0.083^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01133~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01133~^~851~^0.170^15^0.012^~1~^~A~^^^1^0.100^0.234^14^0.145^0.195^~4~^~04/01/2015~ -~01133~^~856~^0.023^15^0.001^~1~^~A~^^^1^0.022^0.032^14^0.021^0.024^~1, 4~^~04/01/2015~ -~01134~^~312~^0.270^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~315~^0.150^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~404~^0.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~405~^1.232^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~406~^0.259^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~410~^6.710^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~415~^0.420^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~501~^0.771^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~502~^2.366^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~503~^3.014^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~504~^4.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~505~^3.252^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~506~^1.557^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~507~^1.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~508~^2.721^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~509~^2.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~510~^3.468^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~511~^3.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~512~^1.164^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~513~^2.813^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~514~^4.778^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~515~^6.135^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~516~^1.603^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~517~^1.911^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~518~^3.661^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~606~^13.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~611~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01134~^~612~^0.120^42^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~613~^9.703^69^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~614~^3.374^69^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~617~^16.102^69^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~618~^4.881^69^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~619~^0.124^32^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~620~^0.368^47^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~626~^1.463^69^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~645~^17.564^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01134~^~646~^5.713^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~312~^0.230^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~315~^0.070^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~404~^0.035^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~405~^2.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~406~^0.675^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~410~^1.829^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~415~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~501~^1.181^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~502~^3.421^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~503~^4.689^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~504~^6.695^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~505~^4.738^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~506~^2.991^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~507~^1.908^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~508~^4.837^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~509~^3.089^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~510~^5.760^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~511~^4.492^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~512~^1.748^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~513~^4.960^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~514~^6.806^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~515~^10.732^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~516~^2.880^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~517~^2.892^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~518~^5.674^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~606~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~611~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~612~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~613~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~614~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~617~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~618~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01135~^~645~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01135~^~646~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~312~^0.170^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~315~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~404~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~405~^2.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~406~^0.723^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~410~^1.958^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~415~^0.024^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~501~^1.266^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~502~^3.665^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~503~^5.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~504~^7.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~505~^5.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~506~^3.204^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~507~^2.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~508~^5.181^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~509~^3.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~510~^6.170^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~511~^4.812^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~512~^1.872^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~513~^5.313^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~514~^7.291^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~515~^11.496^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~516~^3.085^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~517~^3.098^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~518~^6.078^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~606~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~612~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~613~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~614~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~617~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~618~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~619~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~621~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~628~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~629~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~645~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01136~^~646~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01137~^~312~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2015~ -~01137~^~315~^0.185^3^^~1~^~A~^^^1^0.159^0.198^^^^~2~^~04/01/2012~ -~01137~^~404~^0.387^3^^~1~^~A~^^^1^0.380^0.400^^^^~2~^~04/01/2012~ -~01137~^~405~^1.257^3^^~1~^~A~^^^1^1.150^1.390^^^^~2~^~04/01/2012~ -~01137~^~406~^0.083^3^^~1~^~A~^^^1^0.080^0.090^^^^~2~^~04/01/2012~ -~01137~^~410~^9.063^3^^~1~^~A~^^^1^8.270^9.550^^^^~2~^~04/01/2012~ -~01137~^~415~^0.742^15^0.020^~1~^~A~^^^1^0.479^0.825^14^0.698^0.786^~4~^~04/01/2015~ -~01137~^~501~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~502~^1.545^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~503~^1.701^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~504~^2.908^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~505~^2.469^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~506~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~507~^0.588^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~508~^1.472^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~509~^1.422^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~510~^1.934^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~511~^2.336^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~512~^0.861^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~513~^1.751^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~514~^3.310^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~515~^4.263^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~516~^1.043^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~517~^1.326^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~518~^2.814^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01137~^~605~^0.346^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~606~^20.334^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~612~^0.198^15^0.002^~1~^~A~^^^1^0.178^0.211^14^0.193^0.204^~4~^~04/01/2015~ -~01137~^~613~^14.773^15^0.156^~1~^~A~^^^1^13.800^15.600^14^14.439^15.107^~4~^~04/01/2015~ -~01137~^~614~^5.177^15^0.059^~1~^~A~^^^1^4.720^5.540^14^5.049^5.304^~4~^~04/01/2015~ -~01137~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01137~^~617~^21.855^15^0.459^~1~^~AS~^^^1^18.452^24.184^14^20.870^22.840^~4~^~04/01/2015~ -~01137~^~618~^8.674^15^0.393^~1~^~AS~^^^1^7.039^11.862^14^7.832^9.517^~4~^~04/01/2015~ -~01137~^~619~^0.281^15^0.009^~1~^~AS~^^^1^0.237^0.345^14^0.262^0.300^~4~^~04/01/2015~ -~01137~^~620~^0.978^15^0.015^~1~^~A~^^^1^0.889^1.100^14^0.945^1.011^~4~^~04/01/2015~ -~01137~^~621~^0.253^15^0.010^~1~^~A~^^^1^0.219^0.339^14^0.232^0.273^~4~^~04/01/2015~ -~01137~^~624~^0.028^15^0.002^~1~^~A~^^^1^0.022^0.044^14^0.023^0.032^~1, 4~^~04/01/2015~ -~01137~^~625~^0.034^15^0.001^~1~^~A~^^^1^0.022^0.040^14^0.031^0.037^~1, 4~^~04/01/2015~ -~01137~^~626~^1.345^15^0.050^~1~^~A~^^^1^0.994^1.520^14^1.238^1.451^~4~^~04/01/2015~ -~01137~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01137~^~628~^0.143^15^0.003^~1~^~A~^^^1^0.127^0.165^14^0.136^0.150^~4~^~04/01/2015~ -~01137~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01137~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01137~^~631~^0.029^15^0.002^~1~^~A~^^^1^0.022^0.040^14^0.025^0.033^~1, 4~^~04/01/2015~ -~01137~^~645~^23.377^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~646~^10.320^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~652~^0.036^15^0.001^~1~^~A~^^^1^0.031^0.044^14^0.034^0.038^~4~^~04/01/2015~ -~01137~^~653~^0.122^15^0.004^~1~^~A~^^^1^0.109^0.161^14^0.115^0.130^~4~^~04/01/2015~ -~01137~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01137~^~663~^0.242^15^0.010^~1~^~A~^^^1^0.152^0.287^14^0.220^0.264^~4~^~04/01/2015~ -~01137~^~669~^0.076^15^0.003^~1~^~A~^^^1^0.060^0.097^14^0.070^0.082^~4~^~04/01/2015~ -~01137~^~672~^0.106^15^0.006^~1~^~A~^^^1^0.080^0.158^14^0.094^0.118^~4~^~04/01/2015~ -~01137~^~674~^21.613^15^0.450^~1~^~A~^^^1^18.300^23.900^14^20.647^22.579^~4~^~04/01/2015~ -~01137~^~675~^8.598^15^0.394^~1~^~A~^^^1^6.960^11.800^14^7.753^9.443^~4~^~04/01/2015~ -~01137~^~685~^0.072^15^0.002^~1~^~A~^^^1^0.059^0.084^14^0.067^0.076^~4~^~04/01/2015~ -~01137~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01137~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01137~^~693~^0.242^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~695~^0.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01137~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01137~^~851~^0.181^15^0.009^~1~^~A~^^^1^0.137^0.255^14^0.161^0.200^~4~^~04/01/2015~ -~01137~^~856~^0.028^15^0.002^~1~^~A~^^^1^0.022^0.039^14^0.025^0.032^~1, 4~^~04/01/2015~ -~01138~^~312~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~404~^0.156^7^0.023^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~405~^0.404^7^0.036^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~406~^0.200^5^0.100^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~410~^1.862^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01138~^~415~^0.250^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~501~^0.260^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~502~^0.736^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~503~^0.598^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~504~^1.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~505~^0.951^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~506~^0.576^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~507~^0.285^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~508~^0.840^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~509~^0.613^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~510~^0.885^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~511~^0.765^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~512~^0.320^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~513~^0.631^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~514~^0.777^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~515~^1.789^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~516~^0.422^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~517~^0.480^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~518~^0.963^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~606~^3.681^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~612~^0.054^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~613~^2.996^4^0.122^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~614~^0.632^4^0.075^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~617~^6.084^4^0.239^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~618~^0.558^4^0.168^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~619~^0.102^4^0.068^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~620~^0.319^4^0.058^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~626~^0.441^4^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01138~^~645~^6.525^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01138~^~646~^1.223^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~312~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~404~^0.147^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~405~^0.382^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~406~^0.189^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~410~^1.759^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~415~^0.236^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~501~^0.282^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~502~^0.797^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~503~^0.647^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~504~^1.188^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~505~^1.030^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~506~^0.624^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~507~^0.309^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~508~^0.910^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~509~^0.664^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~510~^0.958^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~511~^0.828^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~512~^0.346^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~513~^0.683^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~514~^0.841^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~515~^1.937^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~516~^0.457^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~517~^0.520^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~518~^1.043^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01139~^~606~^3.595^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~612~^0.050^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~613~^2.849^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~614~^0.696^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~617~^5.353^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~618~^0.680^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~619~^0.554^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~620~^0.279^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~626~^0.394^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01139~^~645~^5.747^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01139~^~646~^1.672^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~312~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~404~^0.130^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~405~^0.790^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~406~^0.150^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~410~^1.761^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~415~^0.150^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~501~^0.209^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~502~^0.641^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~503~^0.816^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~504~^1.146^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~505~^0.881^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~506~^0.421^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~507~^0.311^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~508~^0.737^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~509~^0.543^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~510~^0.940^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~511~^0.835^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~512~^0.315^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~513~^0.762^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~514~^1.294^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~515~^1.662^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~516~^0.434^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~517~^0.518^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~518~^0.992^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01140~^~606~^3.557^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~612~^0.053^6^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~613~^2.666^8^0.076^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~614~^0.838^8^0.053^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~617~^3.851^8^0.156^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~618~^0.940^8^0.081^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~619~^0.044^6^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~620~^0.122^8^0.016^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~626~^0.473^8^0.051^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01140~^~645~^4.324^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01140~^~646~^1.324^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~312~^0.062^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~315~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~404~^0.110^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~405~^0.470^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~406~^0.024^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~410~^1.889^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~415~^0.131^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~501~^0.219^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~502~^0.672^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~503~^0.855^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~504~^1.201^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~505~^0.924^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~506~^0.442^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~507~^0.326^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~508~^0.773^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~509~^0.569^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~510~^0.985^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~511~^0.876^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~512~^0.330^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~513~^0.799^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~514~^1.357^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~515~^1.742^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~516~^0.455^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~517~^0.543^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~518~^1.040^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~606~^3.632^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~611~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01141~^~612~^0.036^3^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~613~^2.719^4^0.075^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~614~^0.877^4^0.053^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~617~^3.899^4^0.137^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~618~^1.166^4^0.121^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~619~^0.079^4^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~620~^0.127^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~626~^0.672^4^0.099^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~645~^4.571^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01141~^~646~^1.658^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~312~^0.207^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~315~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~404~^0.226^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~405~^1.760^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~406~^0.577^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~410~^3.384^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~415~^0.143^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~606~^3.766^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~612~^0.065^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~613~^2.687^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~614~^0.993^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~617~^4.845^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~618~^1.413^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~619~^0.086^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~620~^0.109^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01144~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~626~^0.496^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01144~^~645~^5.341^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01144~^~646~^1.683^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~404~^0.005^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01145~^~405~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~406~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~410~^0.110^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01145~^~415~^0.003^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01145~^~501~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~502~^0.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~503~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~504~^0.083^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~505~^0.067^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~506~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~507~^0.008^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~508~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~509~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~510~^0.057^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~511~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~512~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~513~^0.029^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~514~^0.064^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~515~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~516~^0.018^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~517~^0.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~518~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01145~^~606~^50.489^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~607~^3.226^3^0.120^~1~^~A~^^^1^3.104^3.466^2^2.710^3.741^~2, 3~^~03/01/2003~ -~01145~^~608~^2.007^3^0.038^~1~^~A~^^^1^1.953^2.080^2^1.845^2.170^~2, 3~^~03/01/2003~ -~01145~^~609~^1.190^3^0.016^~1~^~A~^^^1^1.161^1.215^2^1.122^1.257^~2, 3~^~03/01/2003~ -~01145~^~610~^2.529^3^0.033^~1~^~A~^^^1^2.491^2.595^2^2.385^2.672^~2, 3~^~03/01/2003~ -~01145~^~611~^2.587^3^0.046^~1~^~A~^^^1^2.508^2.667^2^2.389^2.784^~2, 3~^~03/01/2003~ -~01145~^~612~^7.436^3^0.020^~1~^~A~^^^1^7.409^7.475^2^7.352^7.521^~2, 3~^~03/01/2003~ -~01145~^~613~^21.697^3^0.270^~1~^~A~^^^1^21.272^22.197^2^20.537^22.857^~2, 3~^~03/01/2003~ -~01145~^~614~^9.999^3^0.096^~1~^~A~^^^1^9.814^10.137^2^9.586^10.412^~2, 3~^~03/01/2003~ -~01145~^~615~^0.138^3^0.002^~1~^~A~^^^1^0.135^0.142^2^0.129^0.146^~2, 3~^~01/01/2003~ -~01145~^~617~^20.400^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~618~^1.830^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~619~^1.180^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~626~^1.820^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~628~^0.100^3^0.009^~1~^~A~^^^1^0.084^0.114^2^0.063^0.137^~2, 3~^~03/01/2003~ -~01145~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~01145~^~645~^23.430^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~646~^3.010^0^^~1~^^^^^^^^^^^~09/01/2015~ -~01145~^~653~^0.560^3^0.015^~1~^~A~^^^1^0.530^0.580^2^0.494^0.625^~2, 3~^~01/01/2003~ -~01145~^~663~^2.982^3^0.112^~1~^~A~^^^1^2.763^3.128^2^2.501^3.463^~2, 3~^~01/01/2003~ -~01145~^~666~^0.296^3^0.048^~1~^~A~^^^1^0.201^0.359^2^0.089^0.503^~2, 3~^~01/01/2003~ -~01145~^~670~^0.267^3^0.017^~1~^~A~^^^1^0.241^0.299^2^0.194^0.340^~2, 3~^~01/01/2003~ -~01145~^~673~^0.961^3^0.008^~1~^~A~^^^1^0.946^0.972^2^0.928^0.993^~2, 3~^~01/01/2003~ -~01145~^~674~^16.978^3^0.397^~1~^~A~^^^1^16.206^17.523^2^15.271^18.686^~2, 3~^~01/01/2003~ -~01145~^~675~^2.166^3^0.024^~1~^~A~^^^1^2.126^2.208^2^2.064^2.268^~2, 3~^~01/01/2003~ -~01145~^~851~^0.315^3^0.013^~1~^~A~^^^1^0.289^0.330^2^0.259^0.371^~2, 3~^~01/01/2003~ -~01146~^~312~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~315~^0.023^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~404~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~405~^0.352^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~406~^0.287^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~410~^0.527^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~415~^0.105^15^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~501~^0.560^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~502~^1.531^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~503~^2.202^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~504~^4.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~505~^3.843^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~506~^1.114^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~507~^0.274^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~508~^2.234^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~509~^2.319^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~510~^2.853^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~511~^1.531^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~512~^1.609^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~513~^1.218^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~514~^2.599^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~515~^9.543^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~516~^0.723^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~517~^4.860^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~518~^2.404^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~606~^17.370^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~607~^1.375^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~608~^0.515^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~609~^0.275^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~610~^0.686^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~611~^0.920^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~612~^3.079^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~613~^7.378^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~614~^2.432^1^^~1~^^^^^^^^^^^~07/01/1995~ -~01146~^~617~^7.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~618~^0.290^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~619~^0.345^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01146~^~621~^0.000^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~626~^0.458^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~627~^0.000^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~628~^0.177^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~629~^0.000^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~630~^0.000^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~631~^0.000^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~ -~01146~^~645~^8.734^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01146~^~646~^0.661^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01151~^~312~^0.013^24^0.000^~1~^~A~^^^1^0.008^0.015^20^0.013^0.013^~1, 2, 3~^~12/01/2008~ -~01151~^~315~^0.003^12^0.000^~1~^~A~^^^1^^^^^^^~12/01/2008~ -~01151~^~404~^0.045^12^0.004^~1~^~A~^^^1^0.024^0.075^11^0.036^0.054^~2, 3~^~12/01/2008~ -~01151~^~405~^0.182^12^0.004^~1~^~A~^^^1^0.160^0.200^11^0.174^0.190^~2, 3~^~12/01/2008~ -~01151~^~406~^0.094^12^0.004^~1~^~A~^^^1^0.058^0.105^11^0.086^0.103^~2, 3~^~12/01/2008~ -~01151~^~410~^0.357^4^0.005^~1~^~A~^^^1^0.342^0.365^3^0.341^0.374^~2, 3~^~12/01/2008~ -~01151~^~415~^0.037^12^0.001^~1~^~A~^^^1^0.031^0.042^11^0.035^0.039^~2, 3~^~12/01/2008~ -~01151~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~502~^0.144^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~503~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~504~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~505~^0.282^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~506~^0.088^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~507~^0.021^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~508~^0.175^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~510~^0.221^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~511~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~512~^0.102^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~514~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~515~^0.757^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~516~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~517~^0.332^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~518~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01151~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01151~^~606~^0.117^0^^~1~^^^^^^^^^^^~04/01/2017~ -~01151~^~607~^0.009^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~608~^0.001^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~609~^0.002^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~610~^0.004^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~611~^0.003^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~612~^0.017^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~613~^0.053^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~614~^0.019^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~617~^0.038^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~618~^0.005^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~619~^0.002^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~626~^0.007^0^^~1~^^^^^^^^^^^~02/01/2017~ -~01151~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~01151~^~645~^0.047^0^^~1~^^^^^^^^^^^~04/01/2017~ -~01151~^~646~^0.007^0^^~1~^^^^^^^^^^^~04/01/2017~ -~01152~^~312~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~315~^0.002^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~404~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~405~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~406~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~410~^0.339^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~415~^0.046^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~501~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~502~^0.161^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~503~^0.216^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~504~^0.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~505~^0.283^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~506~^0.090^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~507~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~508~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~509~^0.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~510~^0.239^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~511~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~512~^0.097^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~513~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~514~^0.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~515~^0.748^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~516~^0.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~517~^0.346^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~518~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~606~^1.232^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~607~^0.013^8^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~608~^0.002^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~609~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~610~^0.005^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~611~^0.003^12^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~612~^0.024^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~613~^0.073^12^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~614~^0.026^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~617~^0.498^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~618~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~619~^0.003^11^0.000^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01152~^~626~^0.009^12^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~645~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01152~^~646~^0.009^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~312~^0.016^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~404~^0.047^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~405~^0.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~406~^0.194^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~410~^0.638^5^0.032^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~415~^0.050^21^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~501~^0.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~502~^0.307^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~503~^0.412^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~504~^0.667^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~505~^0.540^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~506~^0.171^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~507~^0.063^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~508~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~509~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~510~^0.456^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~511~^0.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~512~^0.185^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~513~^0.235^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~514~^0.517^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~515~^1.426^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~516~^0.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~517~^0.660^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~518~^0.370^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~606~^4.591^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~607~^0.195^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~608~^0.134^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~609~^0.054^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~610~^0.110^11^0.017^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~611~^0.161^12^0.015^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~612~^0.733^12^0.035^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~613~^2.027^12^0.060^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~614~^0.921^12^0.027^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~617~^2.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~618~^0.167^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~619~^0.078^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01153~^~626~^0.159^12^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~645~^2.335^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01153~^~646~^0.245^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~312~^0.041^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~315~^0.020^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~404~^0.415^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~405~^1.550^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~406~^0.951^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~410~^3.568^16^0.075^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~415~^0.361^28^0.015^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~501~^0.510^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~502~^1.632^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~503~^2.188^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~504~^3.542^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~505~^2.868^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~506~^0.907^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~507~^0.334^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~508~^1.746^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~509~^1.746^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~510~^2.420^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~511~^1.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~512~^0.981^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~513~^1.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~514~^2.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~515~^7.572^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~516~^0.765^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~517~^3.503^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~518~^1.967^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~606~^0.499^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~607~^0.028^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~608~^0.006^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~609~^0.007^5^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~610~^0.018^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~611~^0.014^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~612~^0.083^5^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~613~^0.235^5^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~614~^0.085^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~617~^0.167^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~618~^0.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~619~^0.011^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~626~^0.022^5^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01154~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~645~^0.200^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01154~^~646~^0.030^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~312~^0.041^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01155~^~315~^0.020^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01155~^~404~^0.413^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~405~^1.744^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~406~^0.891^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~410~^3.230^34^0.068^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~415~^0.345^31^0.007^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~501~^0.495^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~502~^1.584^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~503~^2.124^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~504~^3.438^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~505~^2.784^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~506~^0.880^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~507~^0.325^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~508~^1.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~509~^1.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~510~^2.349^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~511~^1.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~512~^0.952^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~513~^1.210^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~514~^2.663^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~515~^7.350^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~516~^0.743^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~517~^3.400^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~518~^1.909^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~606~^0.470^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~607~^0.026^4^0.005^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~608~^0.006^4^0.001^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~609~^0.007^5^0.001^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~610~^0.017^5^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~611~^0.013^5^0.005^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~612~^0.078^5^0.005^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~613~^0.220^5^0.010^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~614~^0.080^5^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~617~^0.156^5^0.004^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~618~^0.018^5^0.004^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~619~^0.011^5^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01155~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~626~^0.021^5^0.002^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~01155~^~645~^0.190^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01155~^~646~^0.030^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01156~^~312~^0.627^6^0.035^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~315~^0.252^6^0.148^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~404~^0.140^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~405~^1.190^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~406~^2.400^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~410~^0.410^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~415~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~501~^0.321^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~502~^1.139^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~503~^1.263^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~504~^2.631^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~505~^2.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~506~^0.813^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~507~^0.139^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~508~^1.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~509~^1.191^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~510~^2.100^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~511~^0.904^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~512~^0.832^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~513~^0.526^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~514~^1.517^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~515~^5.688^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~516~^0.344^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~517~^3.693^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~518~^1.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~606~^24.609^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~607~^1.784^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~608~^0.782^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~609~^0.961^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~610~^3.432^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~611~^1.572^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~612~^3.609^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~613~^9.312^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~614~^3.158^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~617~^7.272^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~618~^0.845^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~619~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~626~^0.846^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01156~^~645~^8.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01156~^~646~^0.845^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~312~^0.564^9^0.026^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~315~^0.093^9^0.004^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~404~^0.072^14^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~405~^0.676^14^0.049^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~406~^1.148^14^0.126^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~410~^0.190^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~415~^0.060^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~501~^0.227^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~502~^0.805^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~503~^0.893^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~504~^1.861^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~505~^1.549^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~506~^0.575^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~507~^0.098^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~508~^0.859^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~509~^0.842^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~510~^1.485^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~511~^0.639^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~512~^0.589^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~513~^0.372^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~514~^1.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~515~^4.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~516~^0.244^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~517~^2.612^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~518~^0.829^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~606~^20.639^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~607~^1.496^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~608~^0.656^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~609~^0.806^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~610~^2.879^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~611~^1.318^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~612~^3.026^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~613~^7.809^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~614~^2.648^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~617~^6.099^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~618~^0.709^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~619~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~626~^0.709^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01157~^~645~^6.808^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01157~^~646~^0.709^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01158~^~501~^0.115^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~502~^0.345^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~503~^0.419^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~504~^0.772^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~505~^0.665^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~506~^0.213^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~508~^0.386^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~509~^0.386^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~510~^0.509^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~511~^0.279^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~512~^0.222^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~513~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~514~^0.616^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~515~^1.658^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~516~^0.148^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~517~^0.788^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~518~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01158~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~606~^0.870^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~645~^0.320^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01158~^~646~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01159~^~312~^0.732^65^0.041^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~315~^0.100^65^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~404~^0.070^4^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~405~^0.380^4^3.400^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~406~^0.430^4^0.163^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~410~^0.680^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~415~^0.250^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~501~^0.195^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~502~^0.691^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~503~^0.766^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~504~^1.597^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~505~^1.330^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~506~^0.494^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~507~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~508~^0.737^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~509~^0.723^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~510~^1.274^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~511~^0.549^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~512~^0.505^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~513~^0.319^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~514~^0.920^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~515~^3.452^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~516~^0.209^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~517~^2.241^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~518~^0.711^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~606~^14.575^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~607~^1.057^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~608~^0.463^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~609~^0.569^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~610~^2.033^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~611~^0.931^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~612~^2.137^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~613~^5.515^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~614~^1.870^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~617~^4.307^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~618~^0.501^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~619~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~626~^0.501^20^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~01159~^~645~^4.807^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01159~^~646~^0.501^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01160~^~312~^0.121^3^^~1~^~A~^^^1^0.115^0.127^^^^~2~^~04/01/2012~ -~01160~^~315~^0.065^3^^~1~^~A~^^^1^0.056^0.070^^^^~2~^~04/01/2012~ -~01160~^~404~^0.140^3^^~1~^~A~^^^1^0.130^0.160^^^^~2~^~04/01/2012~ -~01160~^~405~^0.427^3^^~1~^~A~^^^1^0.350^0.470^^^^~2~^~04/01/2012~ -~01160~^~406~^0.027^3^^~1~^~A~^^^1^0.022^0.030^^^^~1, 2~^~04/01/2012~ -~01160~^~410~^3.167^3^^~1~^~A~^^^1^3.000^3.300^^^^~2~^~04/01/2012~ -~01160~^~415~^0.402^3^^~1~^~A~^^^1^0.319^0.517^^^^~2~^~04/01/2012~ -~01160~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~502~^0.620^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~503~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~504~^1.187^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~505~^1.033^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~506~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~508~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~509~^0.597^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~510~^0.793^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~511~^0.947^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~512~^0.353^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~513~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~514~^1.333^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~515~^1.697^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~516~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~517~^0.550^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~518~^1.133^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~01160~^~605~^0.116^0^^~4~^~BFSN~^~01126~^^^^^^^^^~04/01/2011~ -~01160~^~606~^7.159^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~607~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~608~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~05/01/1996~ -~01160~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~05/01/1996~ -~01160~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~05/01/1996~ -~01160~^~612~^0.073^3^^~1~^~A~^^^1^0.066^0.076^^^^~2~^~05/01/1996~ -~01160~^~613~^5.184^3^^~1~^~A~^^^1^5.041^5.308^^^^~2~^~04/01/2012~ -~01160~^~614~^1.841^3^^~1~^~A~^^^1^1.838^1.848^^^^~2~^~04/01/2012~ -~01160~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~617~^8.438^3^^~1~^~A~^^^1^8.230^8.776^^^^~2~^~04/01/2012~ -~01160~^~618~^3.068^3^^~1~^~A~^^^1^2.918^3.281^^^^~2~^~04/01/2012~ -~01160~^~619~^0.102^3^^~1~^~AS~^^^1^0.076^0.124^^^^~2~^~04/01/2012~ -~01160~^~620~^0.397^3^^~1~^~A~^^^1^0.374^0.413^^^^~2~^~04/01/2012~ -~01160~^~621~^0.112^3^^~1~^~A~^^^1^0.096^0.125^^^^~2~^~04/01/2012~ -~01160~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~625~^0.016^3^^~1~^~A~^^^1^0.009^0.019^^^^~2~^~04/01/2012~ -~01160~^~626~^0.543^3^^~1~^~A~^^^1^0.524^0.572^^^^~2~^~04/01/2012~ -~01160~^~627~^0.000^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~ -~01160~^~628~^0.064^3^^~1~^~A~^^^1^0.058^0.067^^^^~2~^~05/01/1996~ -~01160~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2~^~05/01/1996~ -~01160~^~631~^0.010^3^^~1~^~A~^^^1^0.010^0.010^^^^~2~^~04/01/2012~ -~01160~^~645~^9.070^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~646~^3.733^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~01160~^~652~^0.013^3^^~1~^~A~^^^1^0.010^0.019^^^^~2~^~04/01/2012~ -~01160~^~653~^0.048^3^^~1~^~A~^^^1^0.048^0.048^^^^~2~^~04/01/2012~ -~01160~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~672~^0.045^3^^~1~^~A~^^^1^0.038^0.048^^^^~2~^~04/01/2012~ -~01160~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~685~^0.019^3^^~1~^~A~^^^1^0.019^0.019^^^^~2~^~04/01/2012~ -~01160~^~687~^0.010^3^^~1~^~A~^^^1^0.000^0.029^^^^~1, 2~^~04/01/2012~ -~01160~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2012~ -~01160~^~851~^0.083^3^^~1~^~A~^^^1^0.057^0.105^^^^~2~^~04/01/2012~ -~01161~^~312~^0.110^4^0.063^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~315~^0.028^4^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~404~^0.026^4^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~405~^0.444^4^0.026^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~406~^0.317^4^0.026^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~410~^0.083^4^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~415~^0.051^4^0.018^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~501~^0.151^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~502~^0.397^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~503~^0.570^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~504~^0.924^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~505~^0.793^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~506~^0.282^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~507~^0.050^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~508~^0.525^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~509~^0.572^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~510~^0.680^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~511~^0.388^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~512~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~513~^0.273^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~514~^0.682^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~515~^2.172^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~516~^0.167^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~517~^1.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~518~^0.532^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~606~^3.711^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~609~^0.012^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~610~^0.012^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~611~^0.048^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~612~^0.049^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~613~^2.369^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~614~^1.222^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~617~^6.243^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~618~^1.664^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~619~^0.074^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01161~^~645~^6.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01161~^~646~^1.738^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01162~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~502~^0.340^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~503~^0.413^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~504~^0.761^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~505~^0.656^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~506~^0.210^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~508~^0.380^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~509~^0.380^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~510~^0.502^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~511~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~512~^0.219^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~513~^0.259^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~514~^0.607^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~515~^1.635^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~516~^0.146^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~517~^0.777^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~518~^0.421^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01162~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~606~^1.020^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~645~^0.390^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01162~^~646~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01164~^~312~^0.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~315~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~404~^0.044^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~405~^0.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~406~^0.204^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~410~^0.233^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~501~^0.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~502~^0.355^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~503~^0.578^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~504~^0.902^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~505~^0.772^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~506~^0.243^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~507~^0.056^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~508~^0.484^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~509~^0.452^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~510~^0.627^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~511~^0.351^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~512~^0.311^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~513~^0.279^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~514~^0.628^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~515~^2.214^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~516~^0.170^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~517~^1.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~518~^0.539^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~606~^8.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~607~^0.385^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~608~^0.199^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~609~^0.106^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~610~^0.230^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~611~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~612~^1.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~613~^3.952^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~614~^1.712^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~617~^4.375^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~618~^1.213^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~619~^0.184^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~626~^0.358^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~01164~^~645~^4.735^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01164~^~646~^1.397^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~312~^0.008^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~315~^0.037^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~404~^0.020^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~405~^0.209^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~406~^0.032^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~410~^0.252^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~415~^0.047^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~501~^0.215^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~502~^0.731^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~503~^1.054^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~504~^2.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~505~^1.452^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~506~^0.541^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~507~^0.084^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~508~^1.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~509~^1.190^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~510~^1.338^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~511~^0.699^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~512~^0.679^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~513~^0.618^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~514~^1.334^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~515~^4.769^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~516~^0.296^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~517~^2.151^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~518~^1.160^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~606~^19.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~607~^0.907^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~608~^0.474^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~609~^0.256^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~610~^0.557^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~611~^0.508^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~612~^3.153^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~613~^9.340^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~614~^3.838^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~617~^7.571^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~618~^0.552^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~619~^0.349^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~626~^0.957^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01165~^~645~^8.528^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01165~^~646~^0.901^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~312~^0.026^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~315~^0.036^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~404~^0.021^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~405~^0.223^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~406~^0.181^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~410~^0.231^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~415~^0.053^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~501~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~502~^0.737^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~503~^1.225^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~504~^2.123^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~505~^1.548^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~506~^0.593^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~507~^0.103^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~508~^1.190^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~509~^1.061^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~510~^1.426^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~511~^0.760^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~512~^0.694^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~513~^0.501^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~514~^1.475^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~515~^5.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~516~^0.246^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~517~^2.403^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~518~^1.169^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~606~^14.850^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01166~^~607~^0.855^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~608~^0.447^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~609~^0.241^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~610~^0.525^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~611~^0.479^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~612~^2.972^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~613~^8.804^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~614~^3.617^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~617~^7.136^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~618~^0.520^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~619~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~626~^0.902^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01166~^~645~^8.038^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01166~^~646~^0.850^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~312~^0.024^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~315~^0.071^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~404~^0.018^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~405~^0.225^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~406~^0.150^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~410~^0.279^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~415~^0.055^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~501~^0.198^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~502~^0.818^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~503~^1.076^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~504~^2.017^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~505~^1.536^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~506~^0.608^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~507~^0.144^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~508~^1.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~509~^1.019^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~510~^1.266^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~511~^0.777^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~512~^0.598^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~513~^0.821^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~514~^1.397^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~515~^4.503^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~516~^0.384^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~517~^2.249^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~518~^1.115^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~606~^18.843^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~607~^0.898^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~608~^0.470^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~609~^0.253^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~610~^0.552^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~611~^0.503^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~612~^3.121^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~613~^9.247^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~614~^3.800^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~617~^7.496^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~618~^0.547^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~619~^0.346^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~626~^0.947^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01167~^~645~^8.443^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01167~^~646~^0.892^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~312~^0.021^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~404~^0.012^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~405~^0.221^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~406~^0.051^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~410~^0.183^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~501~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~502~^0.798^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~503~^1.389^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~504~^2.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~505~^1.866^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~506~^0.588^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~507~^0.111^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~508~^1.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~509~^1.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~510~^1.496^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~511~^0.847^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~512~^0.786^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~513~^0.633^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~514~^1.439^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~515~^5.480^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~516~^0.385^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~517~^2.526^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~518~^1.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~606~^4.342^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~607~^0.222^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~608~^0.063^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~609~^0.072^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~610~^0.137^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~611~^0.101^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~612~^0.889^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~613~^1.984^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~614~^0.873^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~617~^1.851^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~618~^0.156^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~619~^0.067^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~620~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~621~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~626~^0.231^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~627~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~628~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~629~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~630~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~631~^0.000^0^^~4~^^^^^^^^^^^ -~01168~^~645~^2.082^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01168~^~646~^0.222^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~312~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~315~^0.011^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~404~^0.021^26^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~405~^0.375^38^0.013^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~406~^0.086^61^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~410~^0.311^39^0.019^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~415~^0.076^88^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~501~^0.286^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~502~^0.798^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~503~^1.389^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~504~^2.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~505~^1.866^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~506~^0.588^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~507~^0.111^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~508~^1.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~509~^1.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~510~^1.496^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~511~^0.847^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~512~^0.786^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~513~^0.633^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~514~^1.439^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~515~^5.480^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~516~^0.385^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~517~^2.526^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~518~^1.309^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~606~^20.768^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~607~^1.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~608~^0.546^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~609~^0.288^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~610~^0.619^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~611~^0.558^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~612~^3.435^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~613~^10.111^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~614~^4.133^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~617~^8.153^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~618~^0.595^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~619~^0.376^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~620~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~621~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~626~^1.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~627~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~628~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~629~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~630~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~631~^0.000^0^^~1~^^^^^^^^^^^ -~01169~^~645~^9.189^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01169~^~646~^0.972^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01171~^~312~^0.053^2^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~01171~^~315~^0.032^3^^~1~^~A~^^^1^0.024^0.045^^^^~2~^~04/01/2012~ -~01171~^~404~^0.067^3^^~1~^~A~^^^1^0.060^0.070^^^^~2~^~04/01/2012~ -~01171~^~405~^0.523^3^^~1~^~A~^^^1^0.490^0.550^^^^~2~^~04/01/2012~ -~01171~^~406~^0.103^3^^~1~^~A~^^^1^0.090^0.120^^^^~2~^~04/01/2012~ -~01171~^~410~^1.570^3^^~1~^~A~^^^1^1.460^1.670^^^^~2~^~04/01/2012~ -~01171~^~415~^0.188^15^0.004^~1~^~A~^^^1^0.164^0.212^14^0.180^0.196^~4~^~04/01/2015~ -~01171~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~502~^0.555^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~503~^0.661^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~504~^1.110^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~505~^0.929^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~506~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~508~^0.675^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~509~^0.535^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~510~^0.816^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~511~^0.812^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~512~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~513~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~514~^1.302^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~515~^1.649^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~516~^0.432^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~517~^0.497^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~518~^0.983^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01171~^~605~^0.054^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~606~^3.382^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~612~^0.032^15^0.001^~1~^~A~^^^1^0.022^0.037^14^0.030^0.035^~1, 4~^~04/01/2015~ -~01171~^~613~^2.435^15^0.039^~1~^~A~^^^1^2.140^2.690^14^2.352^2.518^~4~^~04/01/2015~ -~01171~^~614~^0.870^15^0.022^~1~^~A~^^^1^0.745^1.000^14^0.823^0.918^~4~^~04/01/2015~ -~01171~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~617~^3.648^15^0.086^~1~^~AS~^^^1^2.972^4.067^14^3.463^3.834^~4~^~04/01/2015~ -~01171~^~618~^1.564^15^0.074^~1~^~AS~^^^1^1.202^2.152^14^1.405^1.723^~4~^~04/01/2015~ -~01171~^~619~^0.054^15^0.004^~1~^~AS~^^^1^0.022^0.086^14^0.045^0.063^~4~^~04/01/2015~ -~01171~^~620~^0.181^15^0.005^~1~^~A~^^^1^0.142^0.212^14^0.170^0.192^~4~^~04/01/2015~ -~01171~^~621~^0.049^15^0.002^~1~^~A~^^^1^0.041^0.070^14^0.044^0.055^~4~^~04/01/2015~ -~01171~^~624~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~625~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~626~^0.213^15^0.011^~1~^~A~^^^1^0.141^0.271^14^0.189^0.236^~4~^~04/01/2015~ -~01171~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01171~^~628~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~05/01/1996~ -~01171~^~631~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~645~^3.905^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~646~^1.892^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~652~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~653~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~663~^0.032^15^0.003^~1~^~A~^^^1^0.022^0.050^14^0.026^0.037^~1, 4~^~04/01/2015~ -~01171~^~669~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~672~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~674~^3.617^15^0.087^~1~^~A~^^^1^2.950^4.030^14^3.430^3.803^~4~^~04/01/2015~ -~01171~^~675~^1.542^15^0.074^~1~^~A~^^^1^1.180^2.130^14^1.383^1.701^~4~^~04/01/2015~ -~01171~^~685~^0.022^15^0.000^~1~^~A~^^^1^0.022^0.022^14^0.022^0.022^~1, 4~^~04/01/2015~ -~01171~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01171~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01171~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01171~^~851~^0.032^15^0.004^~1~^~A~^^^1^0.000^0.064^14^0.023^0.041^~1, 4~^~04/01/2015~ -~01171~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~312~^0.032^3^^~1~^~A~^^^1^0.030^0.034^^^^~2~^~04/01/2012~ -~01172~^~315~^0.007^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01172~^~404~^0.023^3^^~1~^~A~^^^1^0.000^0.070^^^^~1, 2~^~04/01/2012~ -~01172~^~405~^0.423^3^^~1~^~A~^^^1^0.370^0.510^^^^~2~^~04/01/2012~ -~01172~^~406~^0.093^3^^~1~^~A~^^^1^0.090^0.100^^^^~2~^~04/01/2012~ -~01172~^~410~^0.147^3^^~1~^~A~^^^1^0.120^0.170^^^^~2~^~04/01/2012~ -~01172~^~415~^0.005^15^0.000^~1~^~A~^^^1^0.005^0.005^14^0.005^0.005^~1, 4~^~04/01/2015~ -~01172~^~501~^0.176^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~502~^0.453^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~503~^0.559^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~504~^0.936^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~505~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~506~^0.396^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~508~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~509~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~510~^0.730^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~511~^0.625^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~512~^0.263^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~513~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~514~^1.159^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~515~^1.480^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~516~^0.391^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~517~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~518~^0.797^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01172~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~612~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~613~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~614~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~01172~^~618~^0.000^15^0.000^~1~^~AS~^^^1^0.000^0.000^14^0.000^0.000^~4~^~04/01/2015~ -~01172~^~619~^0.000^15^0.000^~1~^~AS~^^^1^0.000^0.000^14^0.000^0.000^~4~^~04/01/2012~ -~01172~^~620~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~624~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~625~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~626~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~628~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~631~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~01172~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~652~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~653~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~669~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~672~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~675~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01172~^~685~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01172~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~851~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2012~ -~01172~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01173~^~312~^0.114^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~315~^0.007^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~404~^0.005^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~405~^2.530^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~406~^0.865^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~410~^0.775^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~415~^0.036^2^^~1~^~A~^^^^^^^^^^~05/01/1996~ -~01173~^~501~^0.999^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~502~^3.685^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~503~^4.581^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~504~^6.838^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~505~^5.515^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~506~^2.790^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~507~^2.102^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~508~^4.736^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~509~^3.153^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~510~^5.164^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~511~^4.412^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~512~^1.830^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~513~^4.684^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~514~^8.253^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~515~^10.770^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~516~^2.842^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~517~^3.153^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~518~^5.593^0^^~1~^^^^^^^^^^^~05/01/1996~ -~01173~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01173~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~ -~01174~^~312~^0.006^30^0.000^~1~^~A~^^^8^0.000^0.015^11^0.005^0.006^~1, 2, 3~^~12/01/2008~ -~01174~^~315~^0.014^30^0.000^~1~^~A~^^^8^0.000^0.037^11^0.014^0.014^~1, 2, 3~^~12/01/2008~ -~01174~^~404~^0.039^13^0.005^~1~^~A~^^^2^0.000^0.074^11^0.028^0.051^~1, 2, 3~^~12/01/2008~ -~01174~^~405~^0.185^13^0.003^~1~^~A~^^^2^0.170^0.210^11^0.178^0.192^~2, 3~^~12/01/2008~ -~01174~^~406~^0.092^12^0.002^~1~^~A~^^^2^0.078^0.106^10^0.088^0.096^~2, 3~^~12/01/2008~ -~01174~^~410~^0.356^5^0.019^~1~^~A~^^^2^0.307^0.418^3^0.295^0.416^~2, 3~^~12/01/2008~ -~01174~^~415~^0.038^13^0.001^~1~^~A~^^^2^0.029^0.045^11^0.036^0.041^~2, 3~^~12/01/2008~ -~01174~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~502~^0.141^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~503~^0.171^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~504~^0.313^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~505~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~506~^0.087^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~508~^0.171^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~510~^0.216^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~511~^0.094^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~512~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~513~^0.112^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~514~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~515~^0.742^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~516~^0.065^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~517~^0.326^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01174~^~518~^0.199^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01174~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~605~^0.085^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~606~^1.257^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~607~^0.077^5^0.001^~1~^~A~^^^2^0.055^0.151^3^0.072^0.081^~2, 3~^~12/01/2008~ -~01174~^~608~^0.040^4^0.002^~1~^~A~^^^1^0.036^0.045^3^0.034^0.047^~2, 3~^~12/01/2008~ -~01174~^~609~^0.020^5^0.001^~1~^~A~^^^2^0.007^0.027^3^0.017^0.023^~2, 3~^~12/01/2008~ -~01174~^~610~^0.049^5^0.002^~1~^~A~^^^2^0.042^0.056^3^0.044^0.054^~2, 3~^~12/01/2008~ -~01174~^~611~^0.055^5^0.002^~1~^~A~^^^2^0.051^0.059^3^0.050^0.059^~2, 3~^~12/01/2008~ -~01174~^~612~^0.175^5^0.003^~1~^~A~^^^2^0.167^0.183^3^0.167^0.184^~2, 3~^~12/01/2008~ -~01174~^~613~^0.558^5^0.009^~1~^~A~^^^2^0.495^0.607^3^0.530^0.586^~2, 3~^~12/01/2008~ -~01174~^~614~^0.243^5^0.004^~1~^~A~^^^2^0.214^0.260^3^0.231^0.255^~2, 3~^~12/01/2008~ -~01174~^~615~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^3^0.004^0.004^~2, 3~^~12/01/2008~ -~01174~^~617~^0.507^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~01174~^~618~^0.062^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01174~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01174~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01174~^~625~^0.014^5^0.001^~1~^~A~^^^2^0.012^0.018^3^0.012^0.017^~2, 3~^~05/01/2011~ -~01174~^~626~^0.027^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~01174~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~628~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.010^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~630~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01174~^~645~^0.560^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~646~^0.073^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~652~^0.020^5^0.000^~1~^~A~^^^2^0.019^0.021^3^0.019^0.021^~2, 3~^~12/01/2008~ -~01174~^~653~^0.011^5^0.000^~1~^~A~^^^2^0.011^0.012^3^0.011^0.012^~2, 3~^~12/01/2008~ -~01174~^~663~^0.078^4^0.005^~1~^~A~^^^1^0.070^0.091^3^0.063^0.093^~2, 3~^~12/01/2008~ -~01174~^~666~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~12/01/2008~ -~01174~^~673~^0.027^4^0.001^~1~^~A~^^^1^0.024^0.030^3^0.022^0.031^~2, 3~^~12/01/2008~ -~01174~^~674~^0.430^4^0.005^~1~^~A~^^^1^0.416^0.438^3^0.415^0.445^~2, 3~^~12/01/2008~ -~01174~^~675~^0.055^4^0.003^~1~^~A~^^^1^0.047^0.061^3^0.044^0.065^~2, 3~^~12/01/2008~ -~01174~^~687~^0.005^5^0.000^~1~^~A~^^^2^0.004^0.009^3^0.005^0.005^~2, 3~^~12/01/2008~ -~01174~^~689~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01174~^~693~^0.078^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~01174~^~696~^0.002^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01174~^~697~^0.004^5^0.000^~1~^~A~^^^2^0.004^0.005^3^0.004^0.005^~2, 3~^~12/01/2008~ -~01174~^~851~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~12/01/2008~ -~01175~^~312~^0.010^12^0.001^~1~^~A~^^^1^^^^^^^~12/01/2008~ -~01175~^~315~^0.003^12^0.000^~1~^~A~^^^1^^^^^^^~12/01/2008~ -~01175~^~404~^0.020^12^0.002^~1~^~A~^^^1^0.015^0.043^11^0.015^0.026^~1, 2, 3~^~12/01/2008~ -~01175~^~405~^0.185^12^0.005^~1~^~A~^^^1^0.160^0.220^11^0.175^0.195^~2, 3~^~12/01/2008~ -~01175~^~406~^0.093^12^0.003^~1~^~A~^^^1^0.081^0.115^11^0.087^0.098^~2, 3~^~12/01/2008~ -~01175~^~410~^0.361^4^0.014^~1~^~A~^^^1^0.331^0.400^3^0.314^0.407^~2, 3~^~12/01/2008~ -~01175~^~415~^0.037^12^0.001^~1~^~A~^^^1^0.032^0.044^11^0.034^0.040^~2, 3~^~12/01/2008~ -~01175~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~502~^0.143^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~503~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~504~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~505~^0.282^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~506~^0.088^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~508~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~511~^0.096^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~01175~^~512~^0.101^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~514~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~515~^0.756^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~516~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~517~^0.332^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~518~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01175~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~606~^0.633^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~607~^0.024^4^0.002^~1~^~A~^^^1^0.020^0.027^3^0.019^0.029^~2, 3~^~12/01/2008~ -~01175~^~608~^0.018^4^0.002^~1~^~A~^^^1^0.013^0.022^3^0.011^0.024^~2, 3~^~12/01/2008~ -~01175~^~609~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.011^0.014^~2, 3~^~12/01/2008~ -~01175~^~610~^0.027^4^0.001^~1~^~A~^^^1^0.025^0.030^3^0.025^0.030^~2, 3~^~12/01/2008~ -~01175~^~611~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.032^3^0.026^0.033^~2, 3~^~12/01/2008~ -~01175~^~612~^0.091^4^0.002^~1~^~A~^^^1^0.087^0.097^3^0.084^0.098^~2, 3~^~12/01/2008~ -~01175~^~613~^0.287^4^0.001^~1~^~A~^^^1^0.284^0.291^3^0.282^0.292^~2, 3~^~12/01/2008~ -~01175~^~614~^0.126^4^0.004^~1~^~A~^^^1^0.116^0.133^3^0.115^0.137^~2, 3~^~12/01/2008~ -~01175~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2008~ -~01175~^~617~^0.250^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01175~^~618~^0.030^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01175~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01175~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~625~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~12/01/2008~ -~01175~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~01175~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01175~^~645~^0.277^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~646~^0.035^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~01175~^~652~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~2, 3~^~12/01/2008~ -~01175~^~653~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.006^3^0.005^0.006^~2, 3~^~12/01/2008~ -~01175~^~663~^0.037^4^0.003^~1~^~A~^^^1^0.034^0.046^3^0.028^0.046^~2, 3~^~12/01/2008~ -~01175~^~666~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~12/01/2008~ -~01175~^~673~^0.017^4^0.000^~1~^~A~^^^1^0.016^0.017^3^0.016^0.017^~2, 3~^~12/01/2008~ -~01175~^~674~^0.213^4^0.005^~1~^~A~^^^1^0.202^0.222^3^0.197^0.229^~2, 3~^~12/01/2008~ -~01175~^~675~^0.027^4^0.001^~1~^~A~^^^1^0.026^0.028^3^0.025^0.029^~2, 3~^~12/01/2008~ -~01175~^~687~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2008~ -~01175~^~697~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~2, 3~^~12/01/2008~ -~01175~^~851~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~12/01/2008~ -~01178~^~312~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~404~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~405~^0.240^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01178~^~406~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~606~^8.700^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~607~^0.460^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~608~^0.270^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~609~^0.150^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~610~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~611~^0.400^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~612~^1.410^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~613~^3.690^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~614~^1.700^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~617~^3.530^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~618~^0.310^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~619~^0.200^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~626~^0.310^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~645~^4.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01178~^~646~^0.500^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~312~^0.016^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~404~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~405~^0.120^0^^~8~^^^^^^^^^^^~02/01/2009~ -~01179~^~406~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~606~^6.600^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~607~^0.340^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~608~^0.200^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~609~^0.110^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~610~^0.260^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~611~^0.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~612~^1.060^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~613~^2.780^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~614~^1.280^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~617~^2.660^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~618~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~619~^0.160^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~626~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~645~^3.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01179~^~646~^0.400^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01180~^~312~^0.016^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~404~^0.040^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~405~^0.150^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~406~^0.070^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~415~^0.020^0^^~4~^^^^^^^^^^^~01/01/2007~ -~01180~^~606~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~607~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~608~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~609~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~610~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~611~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~612~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~613~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~614~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~617~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~618~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~619~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~620~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~621~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~626~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~627~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~628~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~629~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~630~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~631~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~645~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01180~^~646~^0.000^0^^~7~^^^^^^^^^^^~01/01/2007~ -~01184~^~312~^0.079^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~404~^0.034^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~405~^0.162^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~406~^0.086^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~415~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~606~^0.116^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~607~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~608~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~609~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~610~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~611~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~612~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~613~^0.049^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~614~^0.018^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~617~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~618~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~619~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~626~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~645~^0.049^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01184~^~646~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01185~^~312~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~404~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~405~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~406~^0.200^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~415~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~606~^3.110^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~607~^0.162^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~608~^0.096^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~609~^0.056^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~610~^0.126^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~611~^0.140^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~612~^0.502^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~613~^1.303^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~614~^0.606^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~617~^1.256^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~618~^0.113^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~619~^0.073^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~626~^0.112^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~628~^0.076^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~645~^1.446^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01185~^~646~^0.186^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~ -~01186~^~312~^0.036^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~315~^0.017^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~404~^0.040^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~405~^0.265^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~406~^0.230^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~410~^0.840^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~415~^0.050^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~502~^0.616^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~503~^0.858^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~504~^1.737^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~505~^1.501^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~506~^0.505^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~507~^0.111^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~508~^0.769^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~509~^0.802^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~510~^1.045^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~511~^0.622^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~512~^0.464^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~513~^0.486^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~514~^1.361^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~515~^3.450^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~516~^0.374^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~517~^1.760^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~518~^0.990^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~521~^0.030^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~606~^0.644^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~607~^0.056^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~608~^0.029^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~609~^0.041^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~610~^0.035^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~611~^0.025^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~612~^0.083^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~613~^0.242^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~614~^0.115^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~615~^0.001^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~617~^0.233^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~618~^0.042^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~01186~^~620~^0.002^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~621~^0.000^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~624~^0.002^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~625~^0.006^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~626~^0.011^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~628~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~629~^0.000^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~631~^0.001^2^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~01186~^~645~^0.250^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~646~^0.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~01186~^~652~^0.009^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~653~^0.005^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~685~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01186~^~851~^0.006^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~01187~^~312~^0.209^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~404~^0.047^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~405~^0.215^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~406~^0.223^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~415~^0.047^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01187~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~613~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~614~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~617~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~618~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~619~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~645~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01187~^~646~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01188~^~405~^0.240^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01188~^~606~^13.100^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~405~^0.330^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01189~^~606~^6.400^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~405~^0.280^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01190~^~606~^0.700^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~405~^0.350^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01191~^~606~^14.400^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~405~^0.650^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01192~^~606~^7.100^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01193~^~606~^7.600^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01194~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~01199~^~312~^0.016^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~315~^0.002^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~404~^0.056^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~405~^0.237^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~406~^0.124^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~410~^0.459^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~415~^0.062^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~606~^0.841^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~607~^0.045^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~608~^0.027^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~609~^0.016^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~610~^0.035^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~611~^0.039^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~612~^0.141^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~613~^0.368^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~614~^0.170^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~617~^0.352^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~618~^0.032^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~619~^0.020^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~620~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~621~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~626~^0.031^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~627~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~628~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~629~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~630~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~631~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~ -~01199~^~645~^0.384^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01199~^~646~^0.052^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~01200~^~312~^0.019^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~404~^0.148^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~405~^0.619^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~406~^0.364^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~415~^0.123^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~606~^2.869^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~01200~^~607~^0.115^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~608~^0.115^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~609~^0.115^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~610~^0.115^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~611~^0.118^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~612~^0.457^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~613~^1.275^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~614~^0.561^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~617~^1.250^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~618~^0.185^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~619~^0.115^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~620~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~621~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~626~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~627~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~628~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~629~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~630~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~631~^0.000^0^^~4~^~BFFN~^~01077~^^^^^^^^^~04/01/2003~ -~01200~^~645~^1.250^0^^~4~^~NC~^~01077~^^^^^^^^^~06/01/2005~ -~01200~^~646~^0.299^0^^~4~^~NC~^~01077~^^^^^^^^^~06/01/2005~ -~01202~^~312~^0.075^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~315~^0.062^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~404~^0.045^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~405~^0.565^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~406~^0.164^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~410~^0.539^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~415~^0.024^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~501~^0.045^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~502~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~503~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~504~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~505~^0.230^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~507~^0.030^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~508~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~509~^0.120^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~510~^0.180^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~511~^0.105^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~512~^0.080^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~513~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~514~^0.270^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~515~^0.645^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~516~^0.060^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~517~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~518~^0.170^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~01202~^~606~^1.177^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~607~^0.056^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01202~^~608~^0.033^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01202~^~609~^0.020^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~610~^0.045^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~611~^0.045^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~612~^0.170^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~613~^0.515^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~614~^0.270^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~615~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~617~^0.430^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~618~^0.080^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~01202~^~620~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~621~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~625~^0.005^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~626~^0.020^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~627~^0.009^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~628~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~629~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~630~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~631~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~645~^0.455^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~646~^0.089^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~01202~^~652~^0.015^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~653~^0.009^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~654~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01202~^~851~^0.000^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~01203~^~312~^0.080^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~315~^0.065^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~404~^0.041^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~405~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~406~^0.105^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~410~^0.544^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~415~^0.045^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~501~^0.027^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~502~^0.200^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~503~^0.265^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~504~^0.490^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~505~^0.436^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~506~^0.143^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~507~^0.044^0^^~4~^^^^^^^^^^^~02/01/2005~ -~01203~^~508~^0.265^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~509~^0.245^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~510~^0.402^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~511~^0.146^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~512~^0.120^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~513~^0.208^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~514~^0.385^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~515~^0.951^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~516~^0.117^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~517~^0.576^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~518~^0.301^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~606~^0.909^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~607~^0.042^3^0.003^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~608~^0.029^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~609~^0.018^3^0.001^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~610~^0.040^3^0.003^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~611~^0.048^3^0.004^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~612~^0.149^3^0.011^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~613~^0.384^3^0.029^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~614~^0.137^3^0.010^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~617~^0.322^3^0.024^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~618~^0.028^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~619~^0.012^3^0.001^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~01203~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~626~^0.031^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01203~^~645~^0.387^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01203~^~646~^0.040^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01204~^~312~^0.238^6^0.064^~1~^~A~^^^1^0.078^0.510^5^0.073^0.402^~2, 3~^~05/01/2007~ -~01204~^~315~^0.085^6^0.015^~1~^~A~^^^1^0.034^0.130^5^0.047^0.123^~2, 3~^~05/01/2007~ -~01204~^~404~^0.029^3^0.004^~1~^~A~^^^1^0.024^0.037^2^0.011^0.047^~2, 3~^~05/01/2007~ -~01204~^~405~^0.486^3^0.014^~1~^~A~^^^1^0.469^0.514^2^0.425^0.547^~2, 3~^~05/01/2007~ -~01204~^~406~^0.114^3^0.008^~1~^~A~^^^1^0.099^0.127^2^0.079^0.149^~2, 3~^~05/01/2007~ -~01204~^~410~^0.325^2^^~1~^~A~^^^1^0.319^0.330^1^^^^~05/01/2007~ -~01204~^~415~^0.049^3^0.003^~1~^~A~^^^1^0.046^0.055^2^0.037^0.062^~2, 3~^~05/01/2007~ -~01204~^~501~^0.240^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~502~^1.519^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~503~^1.200^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~504~^2.983^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~505~^2.459^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~506~^0.369^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~507~^0.028^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~508~^1.604^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~509~^1.968^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~510~^1.498^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~511~^1.324^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~512~^0.752^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~513~^0.956^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~514~^1.963^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~515~^7.279^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~516~^0.598^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~517~^3.231^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~518~^1.614^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~ -~01204~^~606~^13.317^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~607~^1.054^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~608~^0.395^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~609~^0.211^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~610~^0.526^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~611~^0.709^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~612~^2.362^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~613~^5.653^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~614~^1.868^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~617~^5.402^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~618~^0.221^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~619~^0.241^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~626~^0.320^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~645~^6.098^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01204~^~646~^0.462^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01205~^~312~^0.142^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~315~^0.142^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~404~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~405~^0.024^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~406~^0.091^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~410~^0.010^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~415~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~501~^0.010^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~502~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~503~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~504~^0.042^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~505~^0.034^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~506~^0.007^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~507~^0.008^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~508~^0.033^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~509~^0.026^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~510~^0.041^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~511~^0.039^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~512~^0.012^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~513~^0.032^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~514~^0.068^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~515~^0.103^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~516~^0.031^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~517~^0.029^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~518~^0.030^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~606~^2.635^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~612~^0.040^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~613~^1.955^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~614~^0.636^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~617~^3.976^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~618~^5.905^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~619~^0.364^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~626~^0.026^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01205~^~645~^4.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01205~^~646~^6.269^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~312~^0.135^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~315~^0.140^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~404~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~405~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~406~^0.084^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~410~^0.009^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~415~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~501~^0.010^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~502~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~503~^0.026^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~504~^0.045^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~505~^0.033^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~506~^0.008^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~507~^0.009^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~508~^0.033^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~509~^0.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~510~^0.040^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~511~^0.038^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~512~^0.012^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~513~^0.032^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~514~^0.066^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~515~^0.104^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~516~^0.030^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~517~^0.031^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~518~^0.029^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~606~^19.446^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~01206~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~609~^0.903^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~610~^0.903^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~611~^7.518^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~612~^3.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~613~^2.373^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~614~^4.742^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~617~^0.618^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~618~^0.229^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~01206~^~619~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~645~^0.618^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01206~^~646~^0.229^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~01208~^~312~^0.026^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~315~^0.010^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~404~^0.019^9^0.004^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~405~^0.321^13^0.015^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~406~^0.156^18^0.023^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~410~^0.476^6^0.154^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~415~^0.073^28^0.006^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~501~^0.345^0^^~4~^^^^^^^^^^^~04/01/2007~ -~01208~^~502~^0.982^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~503~^1.091^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~504~^2.297^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~505~^2.646^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~506~^0.686^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~507~^0.116^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~508~^1.287^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~509~^1.520^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~510~^1.640^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~511~^1.022^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~512~^1.115^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~513~^0.706^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~514~^1.744^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~515~^6.235^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~516~^0.433^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~517~^2.766^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~518~^1.471^0^^~1~^^^^^^^^^^^~04/01/2007~ -~01208~^~606~^11.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~607~^0.650^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~608~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~609~^0.170^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~610~^0.320^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~611~^0.230^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~612~^1.820^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~613~^5.400^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~614~^2.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~617~^4.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~618~^0.330^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~619~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~626~^0.580^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~645~^4.890^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01208~^~646~^0.510^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01209~^~312~^0.021^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01209~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~405~^0.300^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~406~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~415~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~606~^11.580^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~607~^0.720^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~608~^0.420^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~609~^0.240^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~610~^0.520^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~611~^0.560^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~612~^1.880^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~613~^5.020^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~614~^2.240^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~617~^4.470^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~618~^0.570^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~619~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~626~^0.300^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~628~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~645~^5.020^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01209~^~646~^0.750^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~01211~^~312~^0.025^42^0.001^~1~^~A~^^^9^0.000^0.081^11^0.022^0.028^~1, 2, 3~^~12/01/2008~ -~01211~^~315~^0.004^41^0.000^~1~^~A~^^^8^0.000^0.008^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~404~^0.046^24^0.001^~1~^~A~^^^2^0.042^0.048^12^0.044^0.048^~2, 3~^~12/01/2008~ -~01211~^~405~^0.169^23^0.001^~1~^~A~^^^2^0.156^0.196^19^0.165^0.172^~2, 3~^~12/01/2008~ -~01211~^~406~^0.089^24^0.003^~1~^~A~^^^2^0.070^0.122^18^0.083^0.094^~2, 3~^~12/01/2008~ -~01211~^~410~^0.373^8^0.003^~1~^~A~^^^2^0.357^0.384^6^0.367^0.379^~2, 3~^~12/01/2008~ -~01211~^~415~^0.036^24^0.000^~1~^~A~^^^2^0.034^0.039^16^0.035^0.037^~2, 3~^~12/01/2008~ -~01211~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~502~^0.134^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~503~^0.163^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~504~^0.299^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~505~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~506~^0.083^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~507~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~508~^0.163^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~509~^0.159^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~510~^0.206^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~511~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~512~^0.095^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~513~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~514~^0.270^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~515~^0.708^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~516~^0.062^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~517~^0.311^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~518~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01211~^~606~^1.865^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~01211~^~607~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~608~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~609~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~610~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~611~^0.077^12^0.002^~1~^~A~^^^1^0.075^0.100^11^0.072^0.081^~1, 2, 3~^~12/01/2008~ -~01211~^~612~^0.297^12^0.011^~1~^~A~^^^1^0.194^0.334^11^0.274^0.320^~2, 3~^~12/01/2008~ -~01211~^~613~^0.829^12^0.029^~1~^~A~^^^1^0.534^0.938^11^0.765^0.893^~2, 3~^~12/01/2008~ -~01211~^~614~^0.365^12^0.015^~1~^~A~^^^1^0.220^0.428^11^0.331^0.399^~2, 3~^~12/01/2008~ -~01211~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~617~^0.812^12^0.032^~1~^~A~^^^1^0.501^0.928^11^0.743^0.882^~2, 3~^~12/01/2008~ -~01211~^~618~^0.120^12^0.005^~1~^~A~^^^1^0.075^0.139^11^0.110^0.131^~1, 2, 3~^~12/01/2008~ -~01211~^~619~^0.075^12^0.000^~1~^~A~^^^1^0.075^0.075^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~620~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~626~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~628~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~630~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~645~^0.812^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~01211~^~646~^0.195^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~ -~01211~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~653~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~01211~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2008~ -~01212~^~312~^0.080^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~315~^0.040^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~404~^0.283^18^0.016^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~405~^1.205^23^0.031^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~406~^0.646^22^0.024^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~410~^2.271^20^0.086^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~415~^0.302^41^0.028^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~501~^0.371^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~502~^1.188^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~503~^1.592^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~504~^2.578^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~505~^2.087^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~506~^0.660^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~507~^0.243^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~508~^1.271^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~509~^1.271^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~510~^1.762^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~511~^0.953^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~512~^0.714^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~513~^0.908^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~514~^1.997^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~515~^5.512^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~516~^0.557^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~517~^2.549^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~518~^1.432^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~606~^16.742^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~607~^0.866^1^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~608~^0.240^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~609~^0.269^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~610~^0.596^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~611~^0.614^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~612~^2.820^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~613~^7.522^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~614~^2.853^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~617~^6.192^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~618~^0.460^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~619~^0.204^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~626~^1.196^2^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~645~^7.924^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01212~^~646~^0.665^0^^~1~^^^^^^^^^^^~02/01/2009~ -~01215~^~312~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~404~^0.070^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~405~^0.480^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~406~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~415~^0.080^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~606~^8.850^0^^~4~^^^^^^^^^^^~07/01/2017~ -~01215~^~607~^0.460^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~608~^0.270^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~609~^0.210^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~610~^0.340^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~611~^0.420^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~612~^1.450^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~613~^3.930^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~614~^1.610^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~617~^3.470^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~618~^0.270^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~619~^0.150^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~626~^0.370^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~645~^4.130^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01215~^~646~^0.410^0^^~4~^^^^^^^^^^^~03/01/2009~ -~01216~^~312~^0.079^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~315~^0.064^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~404~^0.034^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~405~^0.162^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~406~^0.086^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~410~^0.446^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~415~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~501~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~502~^0.163^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~503~^0.217^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~504~^0.401^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~505~^0.357^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~506~^0.117^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~507~^0.036^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01216~^~508~^0.217^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~509~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~510~^0.329^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~511~^0.120^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~512~^0.099^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~513~^0.170^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~514~^0.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~515~^0.779^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~516~^0.096^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~517~^0.472^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~518~^0.246^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~606~^0.742^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~607~^0.034^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~608~^0.023^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~609~^0.015^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~610~^0.033^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~611~^0.039^3^0.003^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~612~^0.121^3^0.009^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~613~^0.313^3^0.024^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~614~^0.112^3^0.008^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~617~^0.263^3^0.020^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~618~^0.023^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~619~^0.010^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~626~^0.025^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01216~^~645~^0.316^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01216~^~646~^0.033^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~312~^0.080^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~315~^0.065^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~404~^0.037^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~405~^0.178^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~406~^0.095^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~410~^0.489^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~415~^0.040^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~501~^0.025^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~502~^0.179^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~503~^0.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~504~^0.440^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~505~^0.392^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~506~^0.129^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~507~^0.040^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01217~^~508~^0.238^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~509~^0.221^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~510~^0.362^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~511~^0.132^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~512~^0.108^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~513~^0.187^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~514~^0.347^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~515~^0.856^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~516~^0.105^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~517~^0.518^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~518~^0.271^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~606~^0.697^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~607~^0.032^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~608~^0.022^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~609~^0.014^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~610~^0.031^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~611~^0.037^3^0.002^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~612~^0.114^3^0.006^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~613~^0.294^3^0.014^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~614~^0.105^3^0.005^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~617~^0.247^3^0.012^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~618~^0.022^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~619~^0.009^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~626~^0.024^3^0.001^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01217~^~645~^0.297^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01217~^~646~^0.031^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01218~^~312~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~315~^0.035^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~404~^0.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~405~^0.180^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~406~^0.100^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~415~^0.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~501~^0.028^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~502~^0.202^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~503~^0.269^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~504~^0.496^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~505~^0.439^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~506~^0.145^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~507~^0.045^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~508~^0.270^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~509~^0.247^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~510~^0.407^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~511~^0.151^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~512~^0.122^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~513~^0.212^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~514~^0.394^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~515~^0.966^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~516~^0.121^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~517~^0.581^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~518~^0.305^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~01218~^~606~^0.119^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~607~^0.009^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~608~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~609~^0.002^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~610~^0.004^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~611~^0.003^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~612~^0.017^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~613~^0.055^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~614~^0.019^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~617~^0.041^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~618~^0.010^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~619~^0.006^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~626~^0.007^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~645~^0.050^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01218~^~646~^0.016^0^^~4~^^^^^^^^^^^~12/01/2006~ -~01219~^~312~^0.080^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~315~^0.065^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~404~^0.041^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~405~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~406~^0.105^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~410~^0.544^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~415~^0.045^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~501~^0.027^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~502~^0.200^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~503~^0.265^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~504~^0.490^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~505~^0.436^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~506~^0.143^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~507~^0.044^0^^~4~^^^^^^^^^^^~02/01/2005~ -~01219~^~508~^0.265^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~509~^0.245^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~510~^0.402^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~511~^0.146^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~512~^0.120^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~513~^0.208^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~514~^0.385^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~515~^0.951^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~516~^0.117^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~517~^0.576^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~518~^0.301^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~606~^0.909^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~607~^0.042^3^0.003^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~608~^0.029^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~609~^0.018^3^0.001^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~610~^0.040^3^0.003^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~611~^0.048^3^0.004^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~612~^0.149^3^0.011^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~613~^0.384^3^0.029^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~614~^0.137^3^0.010^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~617~^0.322^3^0.024^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~618~^0.028^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~619~^0.012^3^0.001^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~01219~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~626~^0.031^3^0.002^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~01219~^~645~^0.387^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01219~^~646~^0.040^0^^~1~^^^^^^^^^^^~02/01/2005~ -~01220~^~312~^0.013^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~315~^0.004^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~404~^0.042^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~405~^0.201^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~406~^0.107^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~410~^0.552^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~415~^0.045^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~501~^0.028^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~502~^0.202^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~503~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~504~^0.497^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~505~^0.442^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~506~^0.145^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~507~^0.045^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01220~^~508~^0.269^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~509~^0.249^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~510~^0.408^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~511~^0.148^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~512~^0.122^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~513~^0.211^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~514~^0.391^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~515~^0.965^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~516~^0.119^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~517~^0.584^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~518~^0.305^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~606~^0.806^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~607~^0.037^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~608~^0.025^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~609~^0.016^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~610~^0.036^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~611~^0.043^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~612~^0.132^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~613~^0.341^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~614~^0.122^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~617~^0.286^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~618~^0.025^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~619~^0.010^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~626~^0.027^3^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~01220~^~645~^0.343^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01220~^~646~^0.036^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01221~^~312~^0.079^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~404~^0.034^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~405~^0.162^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~406~^0.086^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~415~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~606~^0.116^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~607~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~608~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~609~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~610~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~611~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~612~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~613~^0.049^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~614~^0.018^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~617~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~618~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~619~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~626~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~645~^0.049^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01221~^~646~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~ -~01222~^~312~^0.209^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~404~^0.047^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~405~^0.215^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~406~^0.223^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~415~^0.047^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~ -~01222~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~613~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~614~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~617~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~618~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~619~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~645~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01222~^~646~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~ -~01223~^~312~^1.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~404~^0.714^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~405~^0.857^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~406~^10.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~410~^5.714^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~415~^1.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01223~^~606~^1.553^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~613~^0.621^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~614~^0.932^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~617~^11.640^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~618~^1.709^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~619~^0.061^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~628~^0.309^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~630~^0.156^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01223~^~645~^12.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01223~^~646~^1.770^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~312~^1.400^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~404~^1.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~405~^1.200^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~406~^14.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~410~^8.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~415~^1.400^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~01224~^~606~^1.087^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~613~^0.435^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~614~^0.653^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~617~^8.148^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~618~^1.196^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~619~^0.043^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~628~^0.217^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~630~^0.109^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2009~ -~01224~^~645~^8.474^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01224~^~646~^1.239^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~01225~^~312~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~315~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~404~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~05/01/2009~ -~01225~^~405~^0.405^4^0.017^~1~^~A~^^^1^0.380^0.450^3^0.352^0.458^~2, 3~^~05/01/2009~ -~01225~^~406~^0.210^4^0.010^~1~^~A~^^^1^0.200^0.240^3^0.178^0.242^~2, 3~^~05/01/2009~ -~01225~^~410~^0.835^2^^~1~^~A~^^^1^0.830^0.840^1^^^^~05/01/2009~ -~01225~^~415~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~05/01/2009~ -~01225~^~605~^0.364^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~606~^4.534^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~607~^0.176^4^0.003^~1~^~A~^^^1^0.169^0.182^3^0.167^0.186^~2, 3~^~05/01/2009~ -~01225~^~608~^0.135^4^0.004^~1~^~A~^^^1^0.129^0.146^3^0.122^0.147^~2, 3~^~05/01/2009~ -~01225~^~609~^0.082^4^0.004^~1~^~A~^^^1^0.078^0.094^3^0.070^0.095^~2, 3~^~05/01/2009~ -~01225~^~610~^0.207^4^0.011^~1~^~A~^^^1^0.190^0.240^3^0.171^0.243^~2, 3~^~05/01/2009~ -~01225~^~611~^0.211^4^0.013^~1~^~A~^^^1^0.194^0.251^3^0.169^0.254^~2, 3~^~05/01/2009~ -~01225~^~612~^0.750^4^0.023^~1~^~A~^^^1^0.709^0.813^3^0.678^0.822^~2, 3~^~05/01/2009~ -~01225~^~613~^2.007^4^0.041^~1~^~A~^^^1^1.922^2.116^3^1.875^2.139^~2, 3~^~05/01/2009~ -~01225~^~614~^0.805^4^0.007^~1~^~A~^^^1^0.786^0.819^3^0.782^0.828^~2, 3~^~05/01/2009~ -~01225~^~615~^0.013^4^0.001^~1~^~A~^^^1^0.011^0.015^3^0.010^0.016^~2, 3~^~05/01/2009~ -~01225~^~617~^1.895^4^0.039^~1~^~AS~^^^1^1.823^1.968^3^1.771^2.019^~2, 3~^~05/01/2009~ -~01225~^~618~^0.288^4^0.015^~1~^~AS~^^^1^0.255^0.316^3^0.239^0.337^~2, 3~^~05/01/2009~ -~01225~^~619~^0.052^4^0.002^~1~^~AS~^^^1^0.049^0.055^3^0.047^0.057^~2, 3~^~05/01/2009~ -~01225~^~620~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.010^3^0.007^0.011^~2, 3~^~05/01/2009~ -~01225~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~624~^0.005^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~05/01/2009~ -~01225~^~625~^0.068^4^0.003^~1~^~A~^^^1^0.062^0.077^3^0.057^0.079^~2, 3~^~05/01/2009~ -~01225~^~626~^0.163^4^0.003^~1~^~AS~^^^1^0.157^0.171^3^0.153^0.173^~2, 3~^~05/01/2009~ -~01225~^~627~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~05/01/2009~ -~01225~^~628~^0.017^4^0.001^~1~^~A~^^^1^0.015^0.019^3^0.013^0.021^~2, 3~^~05/01/2009~ -~01225~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~05/01/2009~ -~01225~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~01225~^~631~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.007^0.010^~2, 3~^~05/01/2009~ -~01225~^~645~^2.143^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~652~^0.084^4^0.002^~1~^~A~^^^1^0.079^0.088^3^0.077^0.090^~2, 3~^~05/01/2009~ -~01225~^~653~^0.052^4^0.000^~1~^~A~^^^1^0.051^0.053^3^0.051^0.053^~2, 3~^~05/01/2009~ -~01225~^~654~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~05/01/2009~ -~01225~^~662~^0.036^4^0.001^~1~^~A~^^^1^0.035^0.038^3^0.034^0.038^~2, 3~^~05/01/2009~ -~01225~^~663~^0.255^4^0.020^~1~^~A~^^^1^0.205^0.288^3^0.193^0.318^~2, 3~^~05/01/2009~ -~01225~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~665~^0.073^4^0.005^~1~^~A~^^^1^0.064^0.085^3^0.057^0.088^~2, 3~^~05/01/2009~ -~01225~^~670~^0.084^4^0.008^~1~^~A~^^^1^0.066^0.100^3^0.059^0.109^~2, 3~^~05/01/2009~ -~01225~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~672~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~01225~^~673~^0.126^4^0.003^~1~^~A~^^^1^0.121^0.136^3^0.116^0.137^~2, 3~^~05/01/2009~ -~01225~^~674~^1.640^4^0.023^~1~^~A~^^^1^1.580^1.683^3^1.566^1.713^~2, 3~^~05/01/2009~ -~01225~^~675~^0.131^4^0.004^~1~^~A~^^^1^0.123^0.140^3^0.119^0.143^~2, 3~^~05/01/2009~ -~01225~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~685~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.000^0.003^~2, 3~^~05/01/2009~ -~01225~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~689~^0.006^4^0.001^~1~^~AS~^^^1^0.005^0.008^3^0.004^0.008^~2, 3~^~05/01/2009~ -~01225~^~693~^0.292^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~01225~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~01225~^~851~^0.050^4^0.002^~1~^~A~^^^1^0.046^0.054^3^0.043^0.056^~2, 3~^~05/01/2009~ -~01225~^~852~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~01225~^~853~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~05/01/2009~ -~01225~^~858~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~05/01/2009~ -~01226~^~312~^0.022^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~315~^0.006^0^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~404~^0.120^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~405~^0.386^2^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~406~^0.140^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~410~^1.660^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~415~^0.133^1^^~1~^^^^^^^^^^^~11/01/1976~ -~01226~^~501~^0.164^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~502~^0.484^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~503~^0.660^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~504~^0.972^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~505~^0.713^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~506~^0.387^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~507~^0.229^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~508~^0.645^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~509~^0.456^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~510~^0.792^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~511~^0.577^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~512~^0.257^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~513~^0.624^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~514~^0.928^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~515~^1.690^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~516~^0.365^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~517~^0.558^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~518~^0.751^0^^~4~^^^^^^^^^^^~11/01/1976~ -~01226~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~612~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~613~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~614~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~617~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~618~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~619~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01226~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~01227~^~312~^0.027^6^0.003^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~315~^0.018^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~404~^0.038^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~405~^0.230^6^0.017^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~406~^0.083^6^0.014^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~410~^0.398^6^0.013^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~415~^0.091^6^0.008^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~605~^0.877^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~606~^13.718^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~607~^0.507^6^0.023^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~608~^0.399^6^0.017^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~609~^0.253^6^0.008^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~610~^0.585^6^0.020^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~611~^0.662^6^0.023^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~612~^2.179^6^0.078^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~613~^6.095^6^0.154^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~614~^2.593^6^0.051^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~615~^0.038^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~617~^5.744^6^0.084^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~618~^1.006^6^0.031^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~619~^0.119^6^0.007^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~620~^0.037^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~621~^0.002^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~624~^0.013^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~625~^0.167^6^0.010^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~626~^0.411^6^0.022^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~627~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~628~^0.041^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~629~^0.009^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~630~^0.003^6^0.000^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~631~^0.017^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~645~^6.418^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~646~^1.244^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~652~^0.228^6^0.009^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~653~^0.143^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~654~^0.009^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~662~^0.075^6^0.003^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~663~^0.635^6^0.023^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~664~^0.000^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~665~^0.167^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~670~^0.134^6^0.007^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~671~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~672~^0.007^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~673~^0.336^6^0.019^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~674~^5.109^6^0.077^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~675~^0.705^6^0.035^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~676~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~685~^0.009^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~687~^0.046^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~689~^0.030^6^0.001^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01227~^~693~^0.710^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~695~^0.167^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01227~^~697~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~851~^0.110^6^0.007^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~852~^0.002^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~853~^0.028^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01227~^~858~^0.009^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~312~^0.033^6^0.011^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~315~^0.014^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~404~^0.042^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~405~^0.173^6^0.011^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~406~^0.027^6^0.004^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~410~^0.358^6^0.007^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~415~^0.076^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~605~^0.834^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~606~^12.940^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~607~^0.486^6^0.017^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~608~^0.387^6^0.018^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~609~^0.244^6^0.012^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~610~^0.569^6^0.030^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~611~^0.651^6^0.037^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~612~^2.127^6^0.107^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~613~^5.646^6^0.236^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~614~^2.405^6^0.097^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~615~^0.033^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~617~^5.298^6^0.271^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~618~^0.887^6^0.031^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~619~^0.108^6^0.005^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~620~^0.035^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~621~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~624~^0.012^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~625~^0.169^6^0.012^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~626~^0.408^6^0.024^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~627~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~628~^0.038^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~629~^0.008^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~630~^0.003^6^0.000^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~631~^0.015^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~645~^5.966^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~646~^1.106^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~652~^0.222^6^0.012^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~653~^0.136^6^0.006^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~654~^0.008^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~662~^0.073^6^0.004^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~663~^0.601^6^0.029^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~664~^0.000^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~665~^0.160^6^0.007^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~670~^0.135^6^0.008^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~671~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~672~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~673~^0.335^6^0.021^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~674~^4.697^6^0.242^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~675~^0.591^6^0.022^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~676~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~685~^0.009^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~687~^0.044^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~689~^0.027^6^0.001^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01228~^~693~^0.674^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~695~^0.160^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01228~^~697~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~851~^0.099^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~852~^0.002^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~853~^0.025^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01228~^~858~^0.008^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~312~^0.025^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~315~^0.021^6^0.004^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~404~^0.048^6^0.004^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~405~^0.230^6^0.012^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~406~^0.035^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~410~^0.397^6^0.020^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~415~^0.086^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~605~^0.890^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~606~^13.661^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~607~^0.518^6^0.037^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~608~^0.421^6^0.034^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~609~^0.250^6^0.021^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~610~^0.574^6^0.049^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~611~^0.650^6^0.057^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~612~^2.195^6^0.182^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~613~^6.048^6^0.490^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~614~^2.567^6^0.189^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~615~^0.035^6^0.003^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~617~^5.741^6^0.396^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~618~^0.922^6^0.057^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~619~^0.113^6^0.015^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~620~^0.036^6^0.003^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~621~^0.002^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~624~^0.012^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~625~^0.177^6^0.014^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~626~^0.444^6^0.033^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~627~^0.006^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~628~^0.041^6^0.003^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~629~^0.009^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~630~^0.003^6^0.000^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~631~^0.016^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~645~^6.459^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~646~^1.149^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~652~^0.226^6^0.019^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~653~^0.144^6^0.013^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~654~^0.008^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~662~^0.078^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~663~^0.642^6^0.042^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~664~^0.000^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~665~^0.170^6^0.011^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~670~^0.142^6^0.008^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~671~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~672~^0.007^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~673~^0.366^6^0.028^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~674~^5.099^6^0.359^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~675~^0.610^6^0.046^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~676~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~685~^0.009^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~687~^0.049^6^0.005^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~689~^0.028^6^0.002^~1~^~AS~^^^1^^^^^^^~05/01/2010~ -~01229~^~693~^0.719^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~695~^0.170^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~01229~^~697~^0.003^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~851~^0.105^6^0.015^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~852~^0.002^6^0.000^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~853~^0.026^6^0.002^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01229~^~858~^0.008^6^0.001^~1~^~A~^^^1^^^^^^^~05/01/2010~ -~01230~^~312~^0.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~404~^0.047^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~405~^0.172^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~406~^0.090^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~410~^0.380^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~415~^0.036^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~501~^0.041^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~502~^0.137^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~503~^0.166^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~504~^0.304^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~505~^0.269^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~506~^0.084^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~507~^0.020^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~508~^0.166^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~509~^0.162^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~510~^0.210^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~511~^0.092^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~512~^0.097^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~513~^0.108^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~514~^0.275^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~515~^0.721^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~516~^0.064^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~517~^0.317^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~518~^0.193^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~01230~^~606~^1.899^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~607~^0.076^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~608~^0.076^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~609~^0.076^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~610~^0.076^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~611~^0.078^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~612~^0.302^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~613~^0.844^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~614~^0.371^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~617~^0.827^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~618~^0.122^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~619~^0.076^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~645~^0.827^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~646~^0.198^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01230~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~312~^0.013^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~404~^0.042^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~405~^0.201^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~406~^0.107^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~410~^0.552^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~415~^0.045^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~606~^0.752^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~607~^0.037^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~608~^0.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~609~^0.016^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~610~^0.036^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~611~^0.043^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~612~^0.132^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~613~^0.341^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~614~^0.122^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~617~^0.286^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~618~^0.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~619~^0.010^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~626~^0.027^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~645~^0.313^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01231~^~646~^0.035^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01235~^~312~^0.203^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~404~^0.040^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~405~^0.180^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~406~^0.200^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~415~^0.040^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~606~^0.488^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~607~^0.027^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~608~^0.009^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~609~^0.009^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~610~^0.018^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~611~^0.009^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~612~^0.071^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~613~^0.241^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~614~^0.104^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~617~^0.187^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~618~^0.021^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~619~^0.009^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~626~^0.018^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~645~^0.205^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01235~^~646~^0.030^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~312~^0.030^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~315~^0.005^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~404~^0.049^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~405~^0.182^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~406~^0.095^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~410~^0.506^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~415~^0.048^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~501~^0.048^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~502~^0.169^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~503~^0.215^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~504~^0.353^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~505~^0.296^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~506~^0.091^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~507~^0.036^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~508~^0.176^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~509~^0.170^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~510~^0.241^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~511~^0.172^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~512~^0.099^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~513~^0.164^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~514~^0.300^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~515~^0.745^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~516~^0.163^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~517~^0.374^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~518~^0.216^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~606~^7.460^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~607~^0.390^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~608~^0.230^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~609~^0.130^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~610~^0.300^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~611~^0.340^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~612~^1.240^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~613~^3.360^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~614~^1.470^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~617~^3.220^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~618~^0.280^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~619~^0.180^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~626~^0.270^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~645~^3.490^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01236~^~646~^0.460^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~312~^0.076^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~315~^0.078^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~404~^0.062^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~405~^0.261^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~406~^0.175^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~410~^0.479^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~415~^0.043^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~606~^13.202^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~607~^0.180^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~608~^0.151^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~609~^0.622^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~610~^0.588^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~611~^3.488^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~612~^1.827^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~613~^3.761^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~614~^2.501^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~615~^0.084^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~617~^6.226^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~618~^2.974^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~619~^0.283^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~626~^0.161^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01237~^~645~^6.387^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01237~^~646~^3.257^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01238~^~312~^0.254^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~315~^0.381^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~404~^0.111^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~405~^0.146^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~406~^1.566^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~410~^0.209^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~415~^0.028^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~606~^2.317^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~607~^0.001^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~608~^0.006^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~609~^0.070^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~610~^0.056^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~611~^0.416^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~612~^0.167^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~613~^0.984^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~614~^0.617^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~617~^2.634^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~618~^2.119^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~619~^0.147^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~620~^0.003^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~621~^0.001^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~626~^0.026^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~627~^0.001^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~628~^0.001^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~629~^0.002^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~645~^2.661^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01238~^~646~^2.272^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~312~^0.106^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~315~^0.225^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~404~^0.030^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~405~^0.030^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~406~^0.237^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~410~^0.115^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~415~^0.028^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~606~^1.663^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~607~^0.000^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~608~^0.004^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~609~^0.050^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~610~^0.040^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~611~^0.004^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~612~^0.040^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~613~^0.211^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~614~^1.314^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~617~^4.144^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~618~^0.798^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~619~^0.043^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~620~^0.002^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~621~^0.001^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~626~^0.006^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~ -~01239~^~627~^0.000^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~628~^0.000^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~629~^0.001^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~630~^0.000^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~631~^0.000^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~ -~01239~^~645~^4.150^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01239~^~646~^0.847^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~01240~^~312~^0.128^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~315~^0.194^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~404~^0.108^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~405~^0.252^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~406~^0.829^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~410~^0.438^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~415~^0.046^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~606~^11.458^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01240~^~607~^0.281^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~608~^0.197^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~609~^0.148^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~610~^0.235^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~611~^0.254^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~612~^0.948^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~613~^4.933^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~614~^4.204^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~615~^0.080^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~617~^7.140^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~618~^1.408^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~619~^0.249^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~624~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~626~^0.185^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~628~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~645~^7.340^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~646~^1.657^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~653~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01240~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~01241~^~312~^0.090^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~404~^0.039^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~405~^0.052^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~406~^0.555^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~415~^0.010^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~606~^0.821^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~607~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~608~^0.002^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~609~^0.025^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~610~^0.020^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~611~^0.148^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~612~^0.059^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~613~^0.349^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~614~^0.218^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~617~^0.933^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~618~^0.750^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~619~^0.052^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~620~^0.001^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~621~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~626~^0.009^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~627~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~628~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~629~^0.001^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~630~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~631~^0.000^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~645~^0.942^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01241~^~646~^0.805^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~ -~01242~^~312~^0.090^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~404~^0.039^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~405~^0.052^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~406~^0.555^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~415~^0.010^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~606~^0.821^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~607~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~608~^0.002^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~609~^0.025^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~610~^0.020^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~611~^0.148^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~612~^0.059^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~613~^0.349^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~614~^0.218^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~617~^0.933^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~618~^0.750^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~619~^0.052^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~620~^0.001^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~621~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~626~^0.009^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~627~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~628~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~629~^0.001^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~630~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~631~^0.000^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~645~^0.942^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01242~^~646~^0.805^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~ -~01243~^~312~^0.030^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~404~^0.029^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~405~^0.122^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~406~^0.074^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~415~^0.029^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~ -~01243~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01243~^~607~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~608~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~609~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~610~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~611~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~612~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~613~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~614~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~617~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~618~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~619~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~620~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~621~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~626~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~627~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~628~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~629~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~630~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~631~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~645~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01243~^~646~^0.000^0^^~4~^~BFZN~^~19867~^^^^^^^^^~04/01/2011~ -~01244~^~312~^0.103^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~404~^0.023^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~405~^0.129^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~406~^0.126^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~415~^0.023^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~ -~01244~^~606~^0.735^2^^~8~^~LC~^^^1^0.735^0.735^1^^^^~02/01/2017~ -~01244~^~607~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~608~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~609~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~610~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~611~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~612~^0.021^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~613~^0.474^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~614~^0.500^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~617~^0.571^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~618~^0.063^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~619~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~626~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~01244~^~645~^0.581^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01244~^~646~^0.065^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2017~ -~01249~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~502~^0.368^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~503~^0.446^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~504~^0.823^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~505~^0.709^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~506~^0.228^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~507~^0.053^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~508~^0.411^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~509~^0.411^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~510~^0.543^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~511~^0.298^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~512~^0.236^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~513~^0.280^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~514~^0.656^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~515~^1.768^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~516~^0.158^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~517~^0.840^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~518~^0.455^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01249~^~605~^0.080^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~606~^1.100^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~645~^0.420^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01249~^~646~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01250~^~312~^0.220^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~315~^0.097^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~404~^0.165^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~405~^0.187^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~406~^2.201^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~410~^1.100^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~415~^0.220^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~01250~^~606~^0.232^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~607~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~608~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~609~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~610~^0.003^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~611~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~612~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~613~^0.150^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~614~^0.059^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~617~^2.306^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~618~^0.392^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~619~^0.003^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~620~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~621~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~626~^0.003^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~627~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~628~^0.009^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~629~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~630~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~631~^0.000^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~645~^2.318^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01250~^~646~^0.395^0^^~4~^~BFFN~^~04511~^^^^^^^^^~04/01/2011~ -~01251~^~312~^0.025^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~315~^0.022^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~404~^0.023^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~405~^0.318^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~406~^0.114^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~410~^0.249^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~415~^0.061^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~501~^0.355^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~502~^0.869^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~503~^1.356^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~504~^2.170^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~505~^1.655^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~506~^0.600^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~507~^0.117^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~508~^1.200^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~509~^1.122^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~510~^1.511^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~511~^0.785^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~512~^0.735^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~513~^0.650^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~514~^1.570^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~515~^5.403^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~516~^0.403^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~517~^2.580^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~518~^1.198^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~606~^16.070^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~01251~^~607~^0.870^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~608~^0.393^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~609~^0.256^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~610~^0.536^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~611~^0.497^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~612~^2.856^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~613~^7.480^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~614~^3.183^0^^~4~^~RA~^^^^^^^^^^~07/01/2017~ -~01251~^~617~^7.015^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~618~^0.532^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~619~^0.332^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~626~^0.857^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~645~^7.871^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01251~^~646~^0.864^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~01252~^~312~^0.027^16^0.001^~1~^~A~^^^1^0.018^0.036^6^0.024^0.030^~1, 2, 3~^~02/01/2016~ -~01252~^~315~^0.061^16^0.004^~1~^~A~^^^1^0.034^0.105^5^0.050^0.072^~2, 3~^~02/01/2016~ -~01252~^~404~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~05/01/2011~ -~01252~^~405~^0.425^4^0.025^~1~^~A~^^^1^0.290^0.480^1^0.113^0.737^~2, 3~^~06/01/2015~ -~01252~^~406~^0.170^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01252~^~410~^0.463^2^^~1~^~A~^^^1^0.410^0.730^^^^^~06/01/2015~ -~01252~^~415~^0.124^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01252~^~605~^0.817^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~606~^12.931^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~607~^0.442^16^0.005^~1~^~A~^^^1^0.404^0.501^9^0.431^0.453^~2, 3~^~02/01/2016~ -~01252~^~608~^0.366^16^0.004^~1~^~A~^^^1^0.338^0.425^8^0.357^0.376^~2, 3~^~02/01/2016~ -~01252~^~609~^0.241^16^0.002^~1~^~A~^^^1^0.217^0.271^10^0.238^0.245^~2, 3~^~02/01/2016~ -~01252~^~610~^0.574^16^0.006^~1~^~A~^^^1^0.536^0.669^8^0.561^0.587^~2, 3~^~02/01/2016~ -~01252~^~611~^0.680^16^0.008^~1~^~A~^^^1^0.609^0.796^7^0.662^0.698^~2, 3~^~02/01/2016~ -~01252~^~612~^2.095^16^0.023^~1~^~A~^^^1^1.958^2.455^7^2.041^2.149^~2, 3~^~02/01/2016~ -~01252~^~613~^5.899^16^0.069^~1~^~A~^^^1^5.389^6.821^8^5.740^6.058^~2, 3~^~02/01/2016~ -~01252~^~614~^2.235^16^0.030^~1~^~A~^^^1^1.954^2.530^8^2.165^2.306^~2, 3~^~02/01/2016~ -~01252~^~615~^0.029^16^0.000^~1~^~A~^^^1^0.025^0.034^10^0.028^0.030^~2, 3~^~02/01/2016~ -~01252~^~617~^4.993^16^0.055^~1~^~AS~^^^1^4.456^5.534^7^4.864^5.123^~2, 3~^~02/01/2016~ -~01252~^~618~^0.800^16^0.012^~1~^~AS~^^^1^0.694^0.904^8^0.772^0.828^~2, 3~^~02/01/2016~ -~01252~^~619~^0.095^16^0.001^~1~^~AS~^^^1^0.079^0.112^11^0.092^0.097^~2, 3~^~02/01/2016~ -~01252~^~620~^0.030^16^0.000^~1~^~A~^^^1^0.026^0.035^10^0.029^0.031^~2, 3~^~02/01/2016~ -~01252~^~621~^0.002^16^0.000^~1~^~A~^^^1^0.001^0.003^8^0.002^0.002^~1, 2, 3~^~02/01/2016~ -~01252~^~624~^0.013^16^0.000^~1~^~A~^^^1^0.010^0.017^7^0.012^0.014^~2, 3~^~02/01/2016~ -~01252~^~625~^0.200^16^0.003^~1~^~A~^^^1^0.186^0.247^7^0.193^0.207^~2, 3~^~02/01/2016~ -~01252~^~626~^0.376^16^0.004^~1~^~AS~^^^1^0.348^0.449^8^0.367^0.386^~2, 3~^~02/01/2016~ -~01252~^~627~^0.005^16^0.000^~1~^~A~^^^1^0.004^0.007^10^0.005^0.006^~2, 3~^~02/01/2016~ -~01252~^~628~^0.041^16^0.001^~1~^~A~^^^1^0.038^0.050^6^0.040^0.043^~2, 3~^~02/01/2016~ -~01252~^~629~^0.008^16^0.000^~1~^~A~^^^1^0.007^0.010^10^0.008^0.009^~2, 3~^~02/01/2016~ -~01252~^~630~^0.002^16^0.000^~1~^~AS~^^^1^0.001^0.005^5^0.002^0.003^~2, 3~^~02/01/2016~ -~01252~^~631~^0.013^16^0.000^~1~^~A~^^^1^0.012^0.015^11^0.013^0.014^~2, 3~^~02/01/2016~ -~01252~^~645~^5.655^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~646~^0.990^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~652~^0.222^16^0.002^~1~^~A~^^^1^0.204^0.260^8^0.216^0.227^~2, 3~^~02/01/2016~ -~01252~^~653~^0.129^16^0.001^~1~^~A~^^^1^0.118^0.152^8^0.126^0.133^~2, 3~^~02/01/2016~ -~01252~^~654~^0.006^16^0.000^~1~^~A~^^^1^0.005^0.007^9^0.006^0.006^~2, 3~^~02/01/2016~ -~01252~^~662~^0.069^16^0.001^~1~^~A~^^^1^0.058^0.081^7^0.068^0.071^~2, 3~^~02/01/2016~ -~01252~^~663~^0.587^16^0.007^~1~^~A~^^^1^0.474^0.656^6^0.569^0.606^~2, 3~^~02/01/2016~ -~01252~^~664~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~665~^0.158^16^0.003^~1~^~A~^^^1^0.132^0.173^9^0.151^0.164^~2, 3~^~02/01/2016~ -~01252~^~670~^0.112^16^0.002^~1~^~A~^^^1^0.089^0.136^6^0.107^0.117^~2, 3~^~02/01/2016~ -~01252~^~671~^0.001^16^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2016~ -~01252~^~672~^0.005^16^0.000^~1~^~A~^^^1^0.004^0.006^10^0.004^0.005^~2, 3~^~02/01/2016~ -~01252~^~673~^0.307^16^0.003^~1~^~A~^^^1^0.283^0.368^9^0.299^0.315^~2, 3~^~02/01/2016~ -~01252~^~674~^4.406^16^0.049^~1~^~A~^^^1^3.972^4.891^7^4.292^4.520^~2, 3~^~02/01/2016~ -~01252~^~675~^0.530^16^0.009^~1~^~A~^^^1^0.460^0.608^8^0.510^0.551^~2, 3~^~02/01/2016~ -~01252~^~676~^0.002^16^0.000^~1~^~A~^^^1^0.001^0.005^5^0.002^0.003^~1, 2, 3~^~02/01/2016~ -~01252~^~685~^0.003^16^0.000^~1~^~A~^^^1^0.000^0.004^6^0.002^0.003^~1, 2, 3~^~02/01/2016~ -~01252~^~687~^0.041^16^0.001^~1~^~A~^^^1^0.037^0.050^9^0.040^0.042^~2, 3~^~02/01/2016~ -~01252~^~689~^0.024^16^0.000^~1~^~AS~^^^1^0.020^0.028^10^0.023^0.025^~2, 3~^~02/01/2016~ -~01252~^~693~^0.657^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~695~^0.160^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~01252~^~697~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01252~^~851~^0.090^16^0.001^~1~^~A~^^^1^0.075^0.106^8^0.087^0.092^~2, 3~^~02/01/2016~ -~01252~^~852~^0.001^16^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.001^~1, 2, 3~^~02/01/2016~ -~01252~^~853~^0.023^16^0.000^~1~^~A~^^^1^0.020^0.028^9^0.022^0.024^~2, 3~^~02/01/2016~ -~01252~^~856~^0.003^16^0.000^~1~^~A~^^^1^0.002^0.004^8^0.002^0.003^~1, 2, 3~^~02/01/2016~ -~01252~^~858~^0.005^16^0.000^~1~^~A~^^^1^0.004^0.006^8^0.005^0.006^~2, 3~^~02/01/2016~ -~01253~^~312~^0.046^19^0.005^~1~^~A~^^^1^0.025^0.130^9^0.036^0.057^~2, 3~^~05/01/2011~ -~01253~^~315~^0.041^19^0.001^~1~^~A~^^^1^0.018^0.066^16^0.038^0.044^~2, 3~^~05/01/2011~ -~01253~^~404~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~05/01/2011~ -~01253~^~405~^0.234^4^0.003^~1~^~A~^^^1^0.220^0.320^2^0.221^0.247^~2, 3~^~05/01/2011~ -~01253~^~406~^0.076^2^^~1~^~A~^^^1^0.070^0.120^^^^^~05/01/2011~ -~01253~^~410~^0.403^2^^~1~^~A~^^^1^0.400^0.430^^^^^~05/01/2011~ -~01253~^~415~^0.054^2^^~1~^~A~^^^1^0.053^0.059^^^^^~05/01/2011~ -~01253~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~502~^0.772^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~503~^0.938^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~505~^1.516^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~506~^0.475^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~508~^0.939^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~509~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~510~^1.187^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~511~^0.518^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~512~^0.546^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~513~^0.613^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~514~^1.551^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~515~^4.073^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~516~^0.359^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~517~^1.788^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~518~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01253~^~605~^1.144^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~606~^18.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~607~^0.615^5^0.012^~1~^~A~^^^1^0.586^0.632^2^0.557^0.673^~2, 3~^~05/01/2011~ -~01253~^~608~^0.509^5^0.004^~1~^~A~^^^1^0.502^0.518^1^0.454^0.564^~2, 3~^~05/01/2011~ -~01253~^~609~^0.332^5^0.004^~1~^~A~^^^1^0.325^0.352^2^0.313^0.351^~2, 3~^~05/01/2011~ -~01253~^~610~^0.802^5^0.006^~1~^~A~^^^1^0.776^0.815^2^0.777^0.827^~2, 3~^~05/01/2011~ -~01253~^~611~^0.884^5^0.013^~1~^~A~^^^1^0.829^0.912^1^0.783^0.985^~2, 3~^~05/01/2011~ -~01253~^~612~^2.937^5^0.027^~1~^~A~^^^1^2.840^2.982^2^2.818^3.056^~2, 3~^~05/01/2011~ -~01253~^~613~^8.161^5^0.081^~1~^~A~^^^1^8.042^8.299^1^7.148^9.173^~2, 3~^~05/01/2011~ -~01253~^~614~^3.222^5^0.056^~1~^~A~^^^1^3.004^3.422^1^2.672^3.772^~2, 3~^~05/01/2011~ -~01253~^~615~^0.047^5^0.002^~1~^~A~^^^1^0.027^0.063^1^0.019^0.074^~2, 3~^~05/01/2011~ -~01253~^~617~^7.204^5^0.046^~1~^~AS~^^^1^7.014^7.394^1^6.624^7.784^~2, 3~^~05/01/2011~ -~01253~^~618~^1.003^5^0.022^~1~^~AS~^^^1^0.958^1.114^1^0.846^1.160^~2, 3~^~05/01/2011~ -~01253~^~619~^0.138^5^0.003^~1~^~AS~^^^1^0.133^0.159^1^0.095^0.180^~2, 3~^~05/01/2011~ -~01253~^~620~^0.045^5^0.001^~1~^~A~^^^1^0.041^0.047^2^0.040^0.051^~2, 3~^~05/01/2011~ -~01253~^~621~^0.006^5^0.001^~1~^~A~^^^1^0.003^0.009^1^-0.007^0.019^~2, 3~^~05/01/2011~ -~01253~^~624~^0.021^5^0.001^~1~^~A~^^^1^0.019^0.022^2^0.018^0.023^~2, 3~^~05/01/2011~ -~01253~^~625~^0.245^5^0.005^~1~^~A~^^^1^0.222^0.254^1^0.211^0.278^~2, 3~^~05/01/2011~ -~01253~^~626~^0.500^5^0.014^~1~^~AS~^^^1^0.478^0.522^1^0.382^0.618^~2, 3~^~05/01/2011~ -~01253~^~627~^0.007^5^0.000^~1~^~A~^^^1^0.007^0.008^1^0.005^0.010^~2, 3~^~05/01/2011~ -~01253~^~628~^0.224^5^0.006^~1~^~A~^^^1^0.205^0.236^2^0.195^0.254^~2, 3~^~05/01/2011~ -~01253~^~629~^0.012^5^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.014^~2, 3~^~05/01/2011~ -~01253~^~630~^0.001^5^0.001^~1~^~AS~^^^1^0.000^0.003^1^-0.007^0.010^~2, 3~^~05/01/2011~ -~01253~^~631~^0.021^5^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.023^~2, 3~^~05/01/2011~ -~01253~^~645~^8.236^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~646~^1.286^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~652~^0.311^5^0.002^~1~^~A~^^^1^0.308^0.313^1^0.296^0.326^~2, 3~^~05/01/2011~ -~01253~^~653~^0.190^5^0.000^~1~^~A~^^^1^0.189^0.191^^^^~2, 3~^~05/01/2011~ -~01253~^~654~^0.009^5^0.000^~1~^~A~^^^1^0.009^0.010^1^0.007^0.011^~2, 3~^~05/01/2011~ -~01253~^~662~^0.106^5^0.000^~1~^~A~^^^1^0.101^0.108^1^0.102^0.110^~2, 3~^~05/01/2011~ -~01253~^~663~^0.844^5^0.005^~1~^~A~^^^1^0.803^0.887^1^0.779^0.909^~2, 3~^~05/01/2011~ -~01253~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.003^0.004^~1, 2, 3~^~05/01/2011~ -~01253~^~665~^0.194^5^0.006^~1~^~A~^^^1^0.179^0.238^1^0.147^0.242^~2, 3~^~05/01/2011~ -~01253~^~670~^0.018^5^0.001^~1~^~A~^^^1^0.014^0.023^1^0.013^0.024^~2, 3~^~05/01/2011~ -~01253~^~671~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~05/01/2011~ -~01253~^~672~^0.009^5^0.000^~1~^~A~^^^1^0.008^0.009^1^0.006^0.011^~2, 3~^~05/01/2011~ -~01253~^~673~^0.394^5^0.014^~1~^~A~^^^1^0.370^0.419^1^0.272^0.517^~2, 3~^~05/01/2011~ -~01253~^~674~^6.360^5^0.047^~1~^~A~^^^1^6.207^6.528^1^5.823^6.897^~2, 3~^~05/01/2011~ -~01253~^~675~^0.790^5^0.016^~1~^~A~^^^1^0.759^0.879^1^0.668^0.913^~2, 3~^~05/01/2011~ -~01253~^~676~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.011^0.013^~1, 2, 3~^~05/01/2011~ -~01253~^~685~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~687~^0.061^5^0.001^~1~^~A~^^^1^0.060^0.064^2^0.057^0.065^~2, 3~^~05/01/2011~ -~01253~^~689~^0.034^5^0.001^~1~^~AS~^^^1^0.032^0.040^1^0.023^0.046^~2, 3~^~05/01/2011~ -~01253~^~693~^0.950^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~695~^0.194^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01253~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01253~^~851~^0.137^5^0.003^~1~^~A~^^^1^0.133^0.156^1^0.094^0.179^~2, 3~^~05/01/2011~ -~01253~^~852~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.001^0.003^~1, 2, 3~^~05/01/2011~ -~01253~^~853~^0.033^5^0.001^~1~^~A~^^^1^0.030^0.039^1^0.020^0.047^~2, 3~^~05/01/2011~ -~01253~^~858~^0.008^5^0.000^~1~^~A~^^^1^0.007^0.010^1^0.004^0.012^~2, 3~^~05/01/2011~ -~01254~^~312~^0.034^10^0.003^~1~^~A~^^^1^0.026^0.062^9^0.027^0.041^~2, 3~^~05/01/2011~ -~01254~^~315~^0.025^10^0.003^~1~^~A~^^^1^0.015^0.048^9^0.018^0.033^~2, 3~^~05/01/2011~ -~01254~^~404~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~05/01/2011~ -~01254~^~405~^0.360^3^0.020^~1~^~A~^^^1^0.340^0.400^2^0.274^0.446^~2, 3~^~05/01/2011~ -~01254~^~406~^0.155^2^^~1~^~A~^^^1^0.130^0.180^1^^^^~05/01/2011~ -~01254~^~410~^0.855^2^^~1~^~A~^^^1^0.760^0.950^1^^^^~05/01/2011~ -~01254~^~415~^0.102^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~501~^0.241^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~502~^0.720^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~503~^0.858^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~504~^1.592^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~505~^1.302^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~506~^0.380^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~507~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~508~^0.829^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~509~^0.833^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~510~^1.010^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~511~^0.613^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~512~^0.448^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~513~^0.518^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~514~^1.191^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~515~^3.495^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~516~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~517~^1.847^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~518~^0.932^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~01254~^~605~^0.917^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~606~^15.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~607~^0.515^3^0.029^~1~^~A~^^^1^0.457^0.546^2^0.390^0.641^~2, 3~^~05/01/2011~ -~01254~^~608~^0.444^3^0.002^~1~^~A~^^^1^0.440^0.448^2^0.434^0.454^~2, 3~^~05/01/2011~ -~01254~^~609~^0.276^3^0.011^~1~^~A~^^^1^0.254^0.292^2^0.227^0.325^~2, 3~^~05/01/2011~ -~01254~^~610~^0.664^3^0.027^~1~^~A~^^^1^0.610^0.699^2^0.546^0.781^~2, 3~^~05/01/2011~ -~01254~^~611~^0.743^3^0.039^~1~^~A~^^^1^0.666^0.793^2^0.575^0.912^~2, 3~^~05/01/2011~ -~01254~^~612~^2.473^3^0.127^~1~^~A~^^^1^2.219^2.618^2^1.925^3.020^~2, 3~^~05/01/2011~ -~01254~^~613~^6.837^3^0.380^~1~^~A~^^^1^6.080^7.276^2^5.201^8.473^~2, 3~^~05/01/2011~ -~01254~^~614~^2.601^3^0.134^~1~^~A~^^^1^2.341^2.788^2^2.024^3.178^~2, 3~^~05/01/2011~ -~01254~^~615~^0.039^3^0.003^~1~^~A~^^^1^0.032^0.043^2^0.024^0.053^~2, 3~^~05/01/2011~ -~01254~^~617~^5.947^3^0.345^~1~^~AS~^^^1^5.286^6.450^2^4.462^7.432^~2, 3~^~05/01/2011~ -~01254~^~618~^0.806^3^0.061^~1~^~AS~^^^1^0.707^0.917^2^0.544^1.068^~2, 3~^~05/01/2011~ -~01254~^~619~^0.123^3^0.010^~1~^~AS~^^^1^0.107^0.140^2^0.082^0.164^~2, 3~^~05/01/2011~ -~01254~^~620~^0.036^3^0.004^~1~^~A~^^^1^0.032^0.043^2^0.021^0.051^~2, 3~^~05/01/2011~ -~01254~^~621~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~05/01/2011~ -~01254~^~624~^0.018^3^0.002^~1~^~A~^^^1^0.015^0.021^2^0.010^0.025^~2, 3~^~05/01/2011~ -~01254~^~625~^0.210^3^0.012^~1~^~A~^^^1^0.187^0.225^2^0.160^0.260^~2, 3~^~05/01/2011~ -~01254~^~626~^0.445^3^0.026^~1~^~AS~^^^1^0.394^0.473^2^0.335^0.556^~2, 3~^~05/01/2011~ -~01254~^~627~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~05/01/2011~ -~01254~^~628~^0.190^3^0.013^~1~^~A~^^^1^0.165^0.207^2^0.135^0.244^~2, 3~^~05/01/2011~ -~01254~^~629~^0.008^3^0.004^~1~^~A~^^^1^0.000^0.014^2^-0.010^0.025^~1, 2, 3~^~05/01/2011~ -~01254~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~05/01/2011~ -~01254~^~631~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~05/01/2011~ -~01254~^~645~^6.846^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~646~^1.049^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~652~^0.263^3^0.014^~1~^~A~^^^1^0.235^0.279^2^0.202^0.324^~2, 3~^~05/01/2011~ -~01254~^~653~^0.161^3^0.008^~1~^~A~^^^1^0.145^0.169^2^0.127^0.195^~2, 3~^~05/01/2011~ -~01254~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.004^0.012^~2, 3~^~05/01/2011~ -~01254~^~662~^0.087^3^0.007^~1~^~A~^^^1^0.073^0.098^2^0.055^0.119^~2, 3~^~05/01/2011~ -~01254~^~663~^0.670^3^0.041^~1~^~A~^^^1^0.596^0.737^2^0.494^0.846^~2, 3~^~05/01/2011~ -~01254~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2011~ -~01254~^~665~^0.159^3^0.015^~1~^~A~^^^1^0.129^0.175^2^0.094^0.224^~2, 3~^~05/01/2011~ -~01254~^~670~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2011~ -~01254~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~05/01/2011~ -~01254~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~05/01/2011~ -~01254~^~673~^0.358^3^0.019^~1~^~A~^^^1^0.321^0.379^2^0.278^0.439^~2, 3~^~05/01/2011~ -~01254~^~674~^5.277^3^0.305^~1~^~A~^^^1^4.690^5.713^2^3.966^6.588^~2, 3~^~05/01/2011~ -~01254~^~675~^0.630^3^0.049^~1~^~A~^^^1^0.561^0.724^2^0.420^0.840^~2, 3~^~05/01/2011~ -~01254~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2011~ -~01254~^~687~^0.053^3^0.003^~1~^~A~^^^1^0.047^0.058^2^0.039^0.067^~2, 3~^~05/01/2011~ -~01254~^~689~^0.028^3^0.002^~1~^~AS~^^^1^0.025^0.032^2^0.020^0.037^~2, 3~^~05/01/2011~ -~01254~^~693~^0.758^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~695~^0.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~01254~^~696~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.023^0.027^~2, 3~^~05/01/2011~ -~01254~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~01254~^~851~^0.121^3^0.009^~1~^~A~^^^1^0.105^0.137^2^0.081^0.160^~2, 3~^~05/01/2011~ -~01254~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2011~ -~01254~^~853~^0.027^3^0.002^~1~^~A~^^^1^0.025^0.030^2^0.020^0.034^~2, 3~^~05/01/2011~ -~01254~^~858~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2011~ -~01255~^~312~^0.064^3^^~1~^~A~^^^1^0.061^0.067^^^^~2~^~06/01/2011~ -~01255~^~315~^0.033^3^^~1~^~A~^^^1^0.029^0.039^^^^~2~^~06/01/2011~ -~01255~^~404~^0.060^3^^~1~^~A~^^^1^0.060^0.060^^^^~2~^~06/01/2011~ -~01255~^~405~^0.443^3^^~1~^~A~^^^1^0.430^0.460^^^^~2~^~06/01/2011~ -~01255~^~406~^0.077^3^^~1~^~A~^^^1^0.070^0.090^^^^~2~^~06/01/2011~ -~01255~^~410~^1.260^3^^~1~^~A~^^^1^1.080^1.520^^^^~2~^~06/01/2011~ -~01255~^~415~^0.226^3^^~1~^~A~^^^1^0.208^0.242^^^^~2~^~06/01/2011~ -~01255~^~501~^0.226^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~502~^0.483^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~503~^0.560^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~504~^0.940^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~505~^0.793^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~506~^0.303^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~508~^0.577^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~509~^0.463^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~510~^0.673^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~511~^0.700^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~512~^0.273^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~513~^0.607^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~514~^1.113^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~515~^1.417^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~516~^0.363^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~517~^0.420^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~518~^0.850^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~01255~^~605~^0.090^0^^~4~^~T~^^^^^^^^^^~07/01/2011~ -~01255~^~606~^3.178^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~607~^0.004^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~608~^0.000^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~612~^0.039^3^^~1~^~A~^^^1^0.029^0.051^^^^~2~^~06/01/2011~ -~01255~^~613~^2.297^3^^~1~^~A~^^^1^2.182^2.516^^^^~2~^~06/01/2011~ -~01255~^~614~^0.820^3^^~1~^~A~^^^1^0.771^0.890^^^^~2~^~06/01/2011~ -~01255~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~617~^3.697^3^^~1~^~A~^^^1^3.541^3.952^^^^~2~^~06/01/2011~ -~01255~^~618~^1.324^3^^~1~^~A~^^^1^1.244^1.445^^^^~2~^~06/01/2011~ -~01255~^~619~^0.044^3^^~1~^~AS~^^^1^0.037^0.056^^^^~2~^~06/01/2011~ -~01255~^~620~^0.170^3^^~1~^~A~^^^1^0.159^0.182^^^^~2~^~06/01/2011~ -~01255~^~621~^0.046^3^^~1~^~A~^^^1^0.041^0.050^^^^~2~^~06/01/2011~ -~01255~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~625~^0.005^3^^~1~^~A~^^^1^0.000^0.010^^^^~1, 2~^~06/01/2011~ -~01255~^~626~^0.260^3^^~1~^~A~^^^1^0.235^0.305^^^^~2~^~06/01/2011~ -~01255~^~627~^0.000^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~ -~01255~^~628~^0.029^3^^~1~^~A~^^^1^0.027^0.030^^^^~2~^~06/01/2011~ -~01255~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2~^~06/01/2011~ -~01255~^~631~^0.002^3^^~1~^~A~^^^1^0.000^0.006^^^^~1, 2~^~06/01/2011~ -~01255~^~645~^4.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~646~^1.627^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~01255~^~652~^0.004^3^^~1~^~A~^^^1^0.000^0.006^^^^~1, 2~^~06/01/2011~ -~01255~^~653~^0.018^3^^~1~^~A~^^^1^0.018^0.019^^^^~2~^~06/01/2011~ -~01255~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~672~^0.022^3^^~1~^~A~^^^1^0.018^0.029^^^^~2~^~06/01/2011~ -~01255~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~685~^0.011^3^^~1~^~A~^^^1^0.010^0.012^^^^~2~^~06/01/2011~ -~01255~^~687~^0.009^3^^~1~^~A~^^^1^0.000^0.014^^^^~1, 2~^~06/01/2011~ -~01255~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2011~ -~01255~^~851~^0.033^3^^~1~^~A~^^^1^0.025^0.044^^^^~2~^~06/01/2011~ -~01256~^~312~^0.017^18^0.000^~1~^~A~^^^1^0.015^0.018^6^0.016^0.017^~2, 3~^~08/01/2012~ -~01256~^~315~^0.009^18^0.000^~1~^~A~^^^1^0.005^0.015^7^0.008^0.010^~1, 2, 3~^~08/01/2012~ -~01256~^~404~^0.023^9^0.002^~1~^~A~^^^1^0.020^0.030^2^0.016^0.030^~2, 3~^~08/01/2012~ -~01256~^~405~^0.278^9^0.007^~1~^~A~^^^1^0.250^0.300^2^0.251^0.304^~2, 3~^~08/01/2012~ -~01256~^~406~^0.208^9^0.006^~1~^~A~^^^1^0.190^0.230^3^0.190^0.227^~2, 3~^~08/01/2012~ -~01256~^~410~^0.331^6^0.001^~1~^~A~^^^1^0.330^0.340^1^0.316^0.347^~2, 3~^~08/01/2012~ -~01256~^~415~^0.063^9^0.001^~1~^~A~^^^1^0.060^0.070^3^0.061^0.065^~2, 3~^~08/01/2012~ -~01256~^~605~^0.006^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~606~^0.117^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~608~^0.003^9^0.000^~1~^~A~^^^1^0.001^0.003^4^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~01256~^~609~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.005^4^0.004^0.005^~2, 3~^~08/01/2012~ -~01256~^~610~^0.013^9^0.001^~1~^~A~^^^1^0.008^0.016^3^0.011^0.015^~2, 3~^~08/01/2012~ -~01256~^~611~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.008^4^0.006^0.007^~2, 3~^~08/01/2012~ -~01256~^~612~^0.015^9^0.000^~1~^~A~^^^1^0.009^0.019^5^0.014^0.017^~2, 3~^~08/01/2012~ -~01256~^~613~^0.049^9^0.002^~1~^~A~^^^1^0.032^0.059^6^0.045^0.053^~2, 3~^~08/01/2012~ -~01256~^~614~^0.021^9^0.001^~1~^~A~^^^1^0.015^0.024^5^0.019^0.022^~2, 3~^~08/01/2012~ -~01256~^~615~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~01256~^~617~^0.049^9^0.001^~1~^~AS~^^^1^0.031^0.058^5^0.045^0.052^~2, 3~^~08/01/2012~ -~01256~^~618~^0.010^9^0.001^~1~^~AS~^^^1^0.006^0.017^4^0.008^0.013^~2, 3~^~08/01/2012~ -~01256~^~619~^0.001^9^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.001^0.003^~2, 3~^~08/01/2012~ -~01256~^~620~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~01256~^~624~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~625~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~01256~^~626~^0.002^9^0.000^~1~^~AS~^^^1^0.000^0.004^5^0.001^0.004^~2, 3~^~08/01/2012~ -~01256~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~628~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.003^2^0.000^0.004^~1, 2, 3~^~08/01/2012~ -~01256~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~01256~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~645~^0.053^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~646~^0.012^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~652~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^4^0.003^0.004^~1, 2, 3~^~08/01/2012~ -~01256~^~653~^0.003^9^0.000^~1~^~A~^^^1^0.000^0.004^3^0.002^0.004^~1, 2, 3~^~08/01/2012~ -~01256~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~01256~^~663~^0.006^9^0.001^~1~^~A~^^^1^0.003^0.009^2^0.003^0.008^~2, 3~^~08/01/2012~ -~01256~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~665~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~670~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~672~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~673~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.004^4^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~01256~^~674~^0.043^9^0.001^~1~^~A~^^^1^0.028^0.050^4^0.040^0.046^~2, 3~^~08/01/2012~ -~01256~^~675~^0.010^9^0.001^~1~^~A~^^^1^0.006^0.017^4^0.008^0.013^~2, 3~^~08/01/2012~ -~01256~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~687~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~01256~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~01256~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~851~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~01256~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01256~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~01258~^~312~^0.128^3^^~1~^~A~^^^1^0.112^0.138^^^^~2~^~07/01/2012~ -~01258~^~315~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~07/01/2012~ -~01258~^~404~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~07/01/2012~ -~01258~^~405~^3.710^3^^~1~^~A~^^^1^3.600^3.800^^^^~2~^~07/01/2012~ -~01258~^~406~^0.773^3^^~1~^~A~^^^1^0.700^0.860^^^^~2~^~07/01/2012~ -~01258~^~410~^0.670^3^^~1~^~A~^^^1^0.620^0.720^^^^~2~^~07/01/2012~ -~01258~^~415~^0.032^15^0.003^~1~^~A~^^^1^0.016^0.053^14^0.025^0.038^~4~^~04/01/2015~ -~01258~^~501~^1.427^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~502~^3.629^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~503~^4.411^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~504~^7.358^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~505~^5.901^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~506~^2.991^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~507~^2.212^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~508~^5.129^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~509~^3.414^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~510~^5.725^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~511~^4.888^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~512~^2.050^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~513~^5.126^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~514~^9.139^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~515~^11.656^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~516~^3.047^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~517~^3.238^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~518~^6.159^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~01258~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~606~^0.118^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01258~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~612~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~613~^0.082^15^0.012^~1~^~A~^^^1^0.022^0.146^14^0.056^0.109^~1, 4~^~04/01/2015~ -~01258~^~614~^0.036^15^0.004^~1~^~A~^^^1^0.022^0.056^14^0.028^0.044^~1, 4~^~04/01/2015~ -~01258~^~615~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~617~^0.125^15^0.021^~1~^~AS~^^^1^0.022^0.222^14^0.079^0.171^~4~^~04/01/2015~ -~01258~^~618~^0.045^15^0.006^~1~^~AS~^^^1^0.022^0.077^14^0.032^0.057^~4~^~04/01/2015~ -~01258~^~619~^0.000^15^0.000^~1~^~AS~^^^1^0.000^0.000^14^0.000^0.000^~4~^~07/01/2012~ -~01258~^~620~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01258~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~624~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~625~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~626~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01258~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~628~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~629~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~631~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~645~^0.125^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~646~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~652~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~653~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~663~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01258~^~669~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01258~^~672~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~674~^0.125^15^0.021^~1~^~A~^^^1^0.022^0.222^14^0.079^0.171^~1, 4~^~04/01/2015~ -~01258~^~675~^0.045^15^0.006^~1~^~A~^^^1^0.022^0.077^14^0.032^0.057^~1, 4~^~04/01/2015~ -~01258~^~685~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~689~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~01258~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~851~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~07/01/2012~ -~01258~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^14^0.000^0.000^~1, 4~^~04/01/2015~ -~01259~^~312~^0.032^10^0.004^~1~^~A~^^^1^0.025^0.064^9^0.022^0.041^~1, 2, 3~^~05/01/2013~ -~01259~^~315~^0.026^10^0.004^~1~^~A~^^^1^0.015^0.045^9^0.018^0.034^~1, 2, 3~^~05/01/2013~ -~01259~^~404~^0.038^6^0.004^~1~^~A~^^^1^0.030^0.050^5^0.028^0.049^~2, 3~^~05/01/2013~ -~01259~^~405~^0.442^6^0.037^~1~^~A~^^^1^0.310^0.560^5^0.346^0.537^~2, 3~^~05/01/2013~ -~01259~^~406~^0.153^6^0.007^~1~^~A~^^^1^0.130^0.170^5^0.136^0.170^~2, 3~^~05/01/2013~ -~01259~^~410~^0.797^4^0.154^~1~^~A~^^^1^0.520^1.120^3^0.308^1.286^~2, 3~^~05/01/2013~ -~01259~^~415~^0.099^6^0.012^~1~^~A~^^^1^0.072^0.152^5^0.068^0.131^~2, 3~^~05/01/2013~ -~01259~^~605~^0.327^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~606~^5.647^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~607~^0.205^6^0.004^~1~^~A~^^^1^0.195^0.223^5^0.195^0.215^~2, 3~^~05/01/2013~ -~01259~^~608~^0.156^6^0.002^~1~^~A~^^^1^0.149^0.164^5^0.150^0.162^~2, 3~^~05/01/2013~ -~01259~^~609~^0.104^6^0.004^~1~^~A~^^^1^0.092^0.114^5^0.093^0.115^~2, 3~^~05/01/2013~ -~01259~^~610~^0.247^6^0.005^~1~^~A~^^^1^0.231^0.260^5^0.234^0.261^~2, 3~^~05/01/2013~ -~01259~^~611~^0.280^6^0.006^~1~^~A~^^^1^0.264^0.293^5^0.265^0.295^~2, 3~^~05/01/2013~ -~01259~^~612~^0.906^6^0.017^~1~^~A~^^^1^0.839^0.941^5^0.862^0.949^~2, 3~^~05/01/2013~ -~01259~^~613~^2.610^6^0.071^~1~^~A~^^^1^2.351^2.777^5^2.427^2.794^~2, 3~^~05/01/2013~ -~01259~^~614~^0.962^6^0.035^~1~^~A~^^^1^0.862^1.051^5^0.871^1.053^~2, 3~^~05/01/2013~ -~01259~^~615~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.013^0.016^~2, 3~^~05/01/2013~ -~01259~^~617~^2.173^6^0.080^~1~^~AS~^^^1^1.936^2.374^5^1.968^2.378^~2, 3~^~05/01/2013~ -~01259~^~618~^0.331^6^0.013^~1~^~AS~^^^1^0.287^0.362^5^0.297^0.365^~2, 3~^~05/01/2013~ -~01259~^~619~^0.039^6^0.002^~1~^~AS~^^^1^0.033^0.044^5^0.035^0.044^~2, 3~^~05/01/2013~ -~01259~^~620~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.019^5^0.015^0.019^~2, 3~^~05/01/2013~ -~01259~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~05/01/2013~ -~01259~^~625~^0.092^6^0.002^~1~^~A~^^^1^0.084^0.095^5^0.087^0.096^~2, 3~^~05/01/2013~ -~01259~^~626~^0.152^6^0.006^~1~^~AS~^^^1^0.126^0.167^5^0.136^0.168^~2, 3~^~05/01/2013~ -~01259~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~628~^0.019^6^0.001^~1~^~A~^^^1^0.016^0.024^5^0.016^0.022^~2, 3~^~05/01/2013~ -~01259~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~05/01/2013~ -~01259~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2013~ -~01259~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.006^0.007^~2, 3~^~05/01/2013~ -~01259~^~645~^2.458^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~652~^0.098^6^0.003^~1~^~A~^^^1^0.089^0.105^5^0.091^0.105^~2, 3~^~05/01/2013~ -~01259~^~653~^0.057^6^0.001^~1~^~A~^^^1^0.051^0.060^5^0.053^0.061^~2, 3~^~05/01/2013~ -~01259~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2013~ -~01259~^~662~^0.031^6^0.002^~1~^~A~^^^1^0.023^0.036^5^0.026^0.037^~2, 3~^~05/01/2013~ -~01259~^~663~^0.235^6^0.011^~1~^~A~^^^1^0.202^0.269^5^0.206^0.264^~2, 3~^~05/01/2013~ -~01259~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~665~^0.060^6^0.002^~1~^~A~^^^1^0.050^0.068^5^0.054^0.067^~2, 3~^~05/01/2013~ -~01259~^~670~^0.045^6^0.003^~1~^~A~^^^1^0.038^0.055^5^0.038^0.052^~2, 3~^~05/01/2013~ -~01259~^~671~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.001^0.008^~1, 2, 3~^~05/01/2013~ -~01259~^~672~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~05/01/2013~ -~01259~^~673~^0.121^6^0.004^~1~^~A~^^^1^0.103^0.132^5^0.110^0.132^~2, 3~^~05/01/2013~ -~01259~^~674~^1.938^6^0.069^~1~^~A~^^^1^1.728^2.105^5^1.761^2.115^~2, 3~^~05/01/2013~ -~01259~^~675~^0.226^6^0.010^~1~^~A~^^^1^0.198^0.251^5^0.201^0.251^~2, 3~^~05/01/2013~ -~01259~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~687~^0.018^6^0.000^~1~^~A~^^^1^0.016^0.019^5^0.017^0.019^~2, 3~^~05/01/2013~ -~01259~^~689~^0.011^6^0.000^~1~^~AS~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~05/01/2013~ -~01259~^~693~^0.266^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01259~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~851~^0.039^6^0.002^~1~^~A~^^^1^0.031^0.044^5^0.034^0.044^~2, 3~^~05/01/2013~ -~01259~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01259~^~853~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~05/01/2013~ -~01259~^~856~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~05/01/2013~ -~01259~^~858~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 2, 3~^~05/01/2013~ -~01260~^~312~^0.043^5^0.002^~1~^~A~^^^1^0.034^0.052^2^0.033^0.052^~2, 3~^~05/01/2013~ -~01260~^~315~^0.031^5^0.001^~1~^~A~^^^1^0.023^0.034^2^0.027^0.036^~2, 3~^~05/01/2013~ -~01260~^~404~^0.021^4^0.000^~1~^~A~^^^1^0.020^0.030^^^^~2, 3~^~05/01/2013~ -~01260~^~405~^0.397^4^0.002^~1~^~A~^^^1^0.350^0.470^1^0.371^0.424^~2, 3~^~05/01/2013~ -~01260~^~406~^0.145^4^0.000^~1~^~A~^^^1^0.070^0.240^^^^~2, 3~^~05/01/2013~ -~01260~^~410~^0.389^2^^~1~^~A~^^^1^0.340^0.450^^^^^~05/01/2013~ -~01260~^~415~^0.084^4^0.002^~1~^~A~^^^1^0.074^0.094^1^0.063^0.105^~2, 3~^~05/01/2013~ -~01260~^~605~^0.733^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~606~^12.602^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~607~^0.439^4^0.005^~1~^~A~^^^1^0.397^0.466^1^0.371^0.507^~2, 3~^~05/01/2013~ -~01260~^~608~^0.361^4^0.003^~1~^~A~^^^1^0.332^0.378^1^0.322^0.401^~2, 3~^~05/01/2013~ -~01260~^~609~^0.228^4^0.002^~1~^~A~^^^1^0.211^0.239^1^0.207^0.249^~2, 3~^~05/01/2013~ -~01260~^~610~^0.563^4^0.002^~1~^~A~^^^1^0.518^0.597^1^0.532^0.594^~2, 3~^~05/01/2013~ -~01260~^~611~^0.641^4^0.004^~1~^~A~^^^1^0.571^0.692^1^0.591^0.690^~2, 3~^~05/01/2013~ -~01260~^~612~^2.050^4^0.019^~1~^~A~^^^1^1.854^2.170^1^1.814^2.286^~2, 3~^~05/01/2013~ -~01260~^~613~^5.759^4^0.055^~1~^~A~^^^1^5.195^6.082^1^5.063^6.455^~2, 3~^~05/01/2013~ -~01260~^~614~^2.159^4^0.001^~1~^~A~^^^1^2.045^2.322^1^2.151^2.167^~2, 3~^~05/01/2013~ -~01260~^~615~^0.031^4^0.000^~1~^~A~^^^1^0.030^0.034^1^0.026^0.036^~2, 3~^~05/01/2013~ -~01260~^~617~^4.689^4^0.028^~1~^~AS~^^^1^4.640^4.816^1^4.328^5.050^~2, 3~^~05/01/2013~ -~01260~^~618~^0.743^4^0.006^~1~^~AS~^^^1^0.698^0.807^1^0.673^0.813^~2, 3~^~05/01/2013~ -~01260~^~619~^0.064^4^0.002^~1~^~AS~^^^1^0.057^0.067^1^0.043^0.086^~2, 3~^~05/01/2013~ -~01260~^~620~^0.035^4^0.000^~1~^~A~^^^1^0.033^0.038^1^0.032^0.038^~2, 3~^~05/01/2013~ -~01260~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~624~^0.009^4^0.000^~1~^~A~^^^1^0.007^0.009^^^^~2, 3~^~05/01/2013~ -~01260~^~625~^0.201^4^0.003^~1~^~A~^^^1^0.171^0.219^1^0.167^0.235^~2, 3~^~05/01/2013~ -~01260~^~626~^0.327^4^0.005^~1~^~AS~^^^1^0.280^0.353^1^0.267^0.388^~2, 3~^~05/01/2013~ -~01260~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~628~^0.040^4^0.001^~1~^~A~^^^1^0.038^0.045^1^0.027^0.054^~2, 3~^~05/01/2013~ -~01260~^~629~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.008^^^^~2, 3~^~05/01/2013~ -~01260~^~630~^0.002^4^0.001^~1~^~AS~^^^1^0.000^0.007^1^-0.008^0.013^~2, 3~^~05/01/2013~ -~01260~^~631~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.013^1^0.005^0.015^~2, 3~^~05/01/2013~ -~01260~^~645~^5.304^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~646~^0.893^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~652~^0.227^4^0.002^~1~^~A~^^^1^0.189^0.252^1^0.200^0.253^~2, 3~^~05/01/2013~ -~01260~^~653~^0.128^4^0.001^~1~^~A~^^^1^0.113^0.137^1^0.114^0.141^~2, 3~^~05/01/2013~ -~01260~^~654~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.007^1^0.004^0.009^~2, 3~^~05/01/2013~ -~01260~^~662~^0.068^4^0.001^~1~^~A~^^^1^0.060^0.072^1^0.059^0.076^~2, 3~^~05/01/2013~ -~01260~^~663~^0.514^4^0.004^~1~^~A~^^^1^0.481^0.567^1^0.467^0.561^~2, 3~^~05/01/2013~ -~01260~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~665~^0.149^4^0.000^~1~^~A~^^^1^0.142^0.159^1^0.144^0.154^~2, 3~^~05/01/2013~ -~01260~^~670~^0.099^4^0.001^~1~^~A~^^^1^0.093^0.109^1^0.089^0.110^~2, 3~^~05/01/2013~ -~01260~^~671~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^1^0.004^0.009^~2, 3~^~05/01/2013~ -~01260~^~672~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.005^1^-0.009^0.016^~1, 2, 3~^~05/01/2013~ -~01260~^~673~^0.260^4^0.004^~1~^~A~^^^1^0.220^0.281^1^0.207^0.312^~2, 3~^~05/01/2013~ -~01260~^~674~^4.175^4^0.025^~1~^~A~^^^1^4.129^4.249^1^3.861^4.489^~2, 3~^~05/01/2013~ -~01260~^~675~^0.495^4^0.004^~1~^~A~^^^1^0.450^0.539^1^0.440^0.549^~2, 3~^~05/01/2013~ -~01260~^~676~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.007^1^-0.008^0.013^~1, 2, 3~^~05/01/2013~ -~01260~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.005^0.006^~1, 2, 3~^~05/01/2013~ -~01260~^~687~^0.038^4^0.000^~1~^~A~^^^1^0.032^0.043^1^0.035^0.040^~2, 3~^~05/01/2013~ -~01260~^~689~^0.025^4^0.000^~1~^~AS~^^^1^0.023^0.026^1^0.022^0.027^~2, 3~^~05/01/2013~ -~01260~^~693~^0.581^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~695~^0.152^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01260~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~851~^0.061^4^0.001^~1~^~A~^^^1^0.055^0.065^1^0.045^0.077^~2, 3~^~05/01/2013~ -~01260~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~853~^0.025^4^0.000^~1~^~A~^^^1^0.023^0.026^1^0.022^0.027^~2, 3~^~05/01/2013~ -~01260~^~856~^0.003^4^0.000^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~05/01/2013~ -~01260~^~858~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.009^1^0.001^0.011^~2, 3~^~05/01/2013~ -~01263~^~312~^0.217^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~315~^0.212^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~404~^0.033^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~405~^0.124^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~406~^0.186^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~410~^0.096^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~415~^0.038^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~605~^0.168^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~606~^2.349^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01263~^~607~^0.098^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~608~^0.055^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~609~^0.033^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~610~^0.074^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~611~^0.081^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~612~^0.297^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~613~^1.013^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~614~^0.625^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~617~^0.931^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~618~^0.086^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~619~^0.039^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~626~^0.062^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~645~^1.033^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01263~^~646~^0.125^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~312~^0.031^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~404~^0.043^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~405~^0.069^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~406~^0.548^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~410~^0.303^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~415~^0.106^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~606~^17.895^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~01264~^~607~^0.414^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~608~^0.244^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~609~^0.122^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~610~^0.271^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~611~^0.316^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~612~^1.192^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~613~^11.671^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~614~^3.483^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~615~^0.016^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~617~^1.137^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~618~^2.012^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~619~^0.190^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~625~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~626~^0.027^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~645~^1.173^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~646~^2.208^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~652~^0.101^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~653~^0.058^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01264~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~01265~^~312~^0.021^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~404~^0.012^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~405~^0.221^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~406~^0.051^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~415~^0.045^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~605~^0.000^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~606~^0.000^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01265~^~607~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~608~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~609~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~610~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~611~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~612~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~613~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~614~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~617~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~618~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~619~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~620~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~621~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~626~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~627~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~628~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~629~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~630~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~631~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~645~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01265~^~646~^0.000^0^^~4~^~BFFN~^~01168~^^^^^^^^^~05/01/2013~ -~01266~^~312~^0.027^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~404~^0.020^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~405~^0.360^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~406~^0.090^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~415~^0.080^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~ -~01266~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01266~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~01267~^~312~^0.238^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~404~^0.029^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~405~^0.486^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~406~^0.114^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~415~^0.049^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~605~^0.000^0^^~8~^^^^^^^^^^^~05/01/2013~ -~01267~^~606~^17.500^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~01267~^~607~^1.583^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~608~^0.592^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~609~^0.055^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~610~^0.544^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~611~^0.825^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~612~^2.745^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~613~^7.747^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~614~^3.409^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~617~^7.627^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~618~^0.989^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~619~^0.199^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~620~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~621~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~626~^0.521^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~627~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~628~^0.185^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~629~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~630~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~631~^0.000^0^^~4~^~BFFN~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~645~^8.333^0^^~4~^~NC~^~01032~^^^^^^^^^~05/01/2013~ -~01267~^~646~^1.187^0^^~4~^~NC~^~01032~^^^^^^^^^~05/01/2013~ -~01270~^~312~^0.035^18^0.001^~1~^~A~^^^1^0.025^0.045^4^0.032^0.039^~2, 3~^~05/01/2014~ -~01270~^~315~^0.024^18^0.002^~1~^~A~^^^1^0.018^0.058^9^0.020^0.028^~2, 3~^~05/01/2014~ -~01270~^~404~^0.027^9^0.003^~1~^~A~^^^1^0.020^0.030^1^-0.015^0.068^~2, 3~^~05/01/2014~ -~01270~^~405~^0.434^9^0.022^~1~^~A~^^^1^0.330^0.550^2^0.303^0.565^~2, 3~^~05/01/2014~ -~01270~^~406~^0.039^9^0.004^~1~^~A~^^^1^0.030^0.080^3^0.024^0.054^~2, 3~^~05/01/2014~ -~01270~^~410~^0.481^6^0.004^~1~^~A~^^^1^0.460^0.520^2^0.464^0.498^~2, 3~^~05/01/2014~ -~01270~^~415~^0.075^9^0.003^~1~^~A~^^^1^0.068^0.087^1^0.052^0.097^~2, 3~^~05/01/2014~ -~01270~^~501~^0.321^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~502~^1.091^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~503~^1.289^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~504~^2.434^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~505~^2.037^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~506~^0.587^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~507~^0.144^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~508~^1.259^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~509~^1.317^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~510~^1.631^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~511~^1.084^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~512~^0.710^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~513~^0.838^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~514~^1.973^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~515~^5.675^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~516~^0.484^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~517~^2.680^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~518~^1.394^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01270~^~605~^1.179^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~606~^19.368^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~607~^0.675^18^0.009^~1~^~A~^^^1^0.644^0.717^3^0.649^0.702^~2, 3~^~05/01/2014~ -~01270~^~608~^0.565^18^0.013^~1~^~A~^^^1^0.000^0.636^6^0.533^0.598^~1, 2, 3~^~05/01/2014~ -~01270~^~609~^0.361^18^0.006^~1~^~A~^^^1^0.325^0.403^4^0.342^0.379^~2, 3~^~05/01/2014~ -~01270~^~610~^0.857^18^0.015^~1~^~A~^^^1^0.764^0.966^4^0.814^0.900^~2, 3~^~05/01/2014~ -~01270~^~611~^0.967^18^0.013^~1~^~A~^^^1^0.891^1.094^5^0.934^1.000^~2, 3~^~05/01/2014~ -~01270~^~612~^3.103^18^0.035^~1~^~A~^^^1^2.918^3.382^4^3.007^3.199^~2, 3~^~05/01/2014~ -~01270~^~613~^8.705^18^0.091^~1~^~A~^^^1^8.014^9.402^5^8.474^8.935^~2, 3~^~05/01/2014~ -~01270~^~614~^3.547^18^0.116^~1~^~A~^^^1^2.953^4.021^3^3.204^3.890^~2, 3~^~05/01/2014~ -~01270~^~615~^0.049^18^0.001^~1~^~A~^^^1^0.044^0.059^4^0.047^0.051^~2, 3~^~05/01/2014~ -~01270~^~617~^7.509^18^0.098^~1~^~AS~^^^1^6.928^8.396^3^7.215^7.804^~2, 3~^~05/01/2014~ -~01270~^~618~^1.179^18^0.017^~1~^~AS~^^^1^1.046^1.276^4^1.133^1.226^~2, 3~^~05/01/2014~ -~01270~^~619~^0.122^18^0.011^~1~^~AS~^^^1^0.088^0.183^4^0.090^0.154^~2, 3~^~05/01/2014~ -~01270~^~620~^0.050^18^0.001^~1~^~A~^^^1^0.041^0.056^4^0.046^0.055^~2, 3~^~05/01/2014~ -~01270~^~621~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~01270~^~624~^0.014^18^0.001^~1~^~A~^^^1^0.011^0.018^3^0.010^0.017^~2, 3~^~05/01/2014~ -~01270~^~625~^0.305^18^0.009^~1~^~A~^^^1^0.273^0.354^4^0.280^0.330^~2, 3~^~05/01/2014~ -~01270~^~626~^0.492^18^0.017^~1~^~AS~^^^1^0.413^0.605^4^0.445^0.539^~2, 3~^~05/01/2014~ -~01270~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~01270~^~628~^0.061^18^0.001^~1~^~A~^^^1^0.052^0.072^4^0.056^0.065^~2, 3~^~05/01/2014~ -~01270~^~629~^0.010^18^0.001^~1~^~A~^^^1^0.006^0.016^3^0.007^0.014^~2, 3~^~05/01/2014~ -~01270~^~630~^0.001^18^0.000^~1~^~AS~^^^1^0.000^0.003^4^0.000^0.002^~2, 3~^~05/01/2014~ -~01270~^~631~^0.017^18^0.001^~1~^~A~^^^1^0.013^0.024^4^0.014^0.020^~2, 3~^~05/01/2014~ -~01270~^~645~^8.428^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~646~^1.433^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~652~^0.322^18^0.004^~1~^~A~^^^1^0.301^0.390^4^0.310^0.334^~2, 3~^~05/01/2014~ -~01270~^~653~^0.195^18^0.004^~1~^~A~^^^1^0.182^0.231^4^0.184^0.207^~2, 3~^~05/01/2014~ -~01270~^~654~^0.009^18^0.000^~1~^~A~^^^1^0.007^0.011^5^0.008^0.009^~2, 3~^~05/01/2014~ -~01270~^~662~^0.104^18^0.002^~1~^~A~^^^1^0.093^0.124^4^0.098^0.109^~2, 3~^~05/01/2014~ -~01270~^~663~^0.842^18^0.013^~1~^~A~^^^1^0.727^0.917^4^0.806^0.878^~2, 3~^~05/01/2014~ -~01270~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~665~^0.230^18^0.005^~1~^~A~^^^1^0.208^0.273^4^0.215^0.245^~2, 3~^~05/01/2014~ -~01270~^~670~^0.174^18^0.004^~1~^~A~^^^1^0.121^0.198^4^0.162^0.186^~2, 3~^~05/01/2014~ -~01270~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~672~^0.007^18^0.000^~1~^~A~^^^1^0.005^0.008^8^0.007^0.007^~2, 3~^~05/01/2014~ -~01270~^~673~^0.388^18^0.015^~1~^~A~^^^1^0.316^0.492^4^0.346^0.431^~2, 3~^~05/01/2014~ -~01270~^~674~^6.667^18^0.088^~1~^~A~^^^1^6.145^7.479^3^6.406^6.928^~2, 3~^~05/01/2014~ -~01270~^~675~^0.775^18^0.019^~1~^~A~^^^1^0.607^0.862^4^0.724^0.826^~2, 3~^~05/01/2014~ -~01270~^~676~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^4^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~01270~^~685~^0.001^18^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~01270~^~687~^0.059^18^0.003^~1~^~A~^^^1^0.049^0.076^4^0.051^0.067^~2, 3~^~05/01/2014~ -~01270~^~689~^0.037^18^0.001^~1~^~AS~^^^1^0.030^0.043^4^0.034^0.041^~2, 3~^~05/01/2014~ -~01270~^~693~^0.946^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~695~^0.233^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01270~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01270~^~851~^0.117^18^0.011^~1~^~A~^^^1^0.085^0.176^4^0.084^0.150^~2, 3~^~05/01/2014~ -~01270~^~852~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.005^4^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~01270~^~853~^0.036^18^0.001^~1~^~A~^^^1^0.030^0.042^4^0.033^0.038^~2, 3~^~05/01/2014~ -~01270~^~856~^0.003^18^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~05/01/2014~ -~01270~^~858~^0.008^18^0.001^~1~^~A~^^^1^0.006^0.010^4^0.006^0.010^~2, 3~^~05/01/2014~ -~01271~^~312~^0.034^18^0.001^~1~^~A~^^^1^0.025^0.062^6^0.030^0.037^~2, 3~^~05/01/2014~ -~01271~^~315~^0.041^18^0.004^~1~^~A~^^^1^0.027^0.064^6^0.031^0.051^~2, 3~^~05/01/2014~ -~01271~^~404~^0.029^9^0.000^~1~^~A~^^^1^0.010^0.030^3^0.028^0.030^~2, 3~^~05/01/2014~ -~01271~^~405~^0.367^9^0.037^~1~^~A~^^^1^0.270^0.450^2^0.207^0.526^~2, 3~^~05/01/2014~ -~01271~^~406~^0.151^9^0.040^~1~^~A~^^^1^0.090^0.240^2^-0.022^0.323^~2, 3~^~05/01/2014~ -~01271~^~410~^0.508^6^0.013^~1~^~A~^^^1^0.380^0.550^1^0.346^0.670^~2, 3~^~05/01/2014~ -~01271~^~415~^0.111^9^0.001^~1~^~A~^^^1^0.094^0.117^2^0.105^0.116^~2, 3~^~05/01/2014~ -~01271~^~501~^0.312^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~502~^1.063^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~503~^1.256^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~504~^2.372^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~505~^1.985^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~506~^0.572^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~508~^1.227^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~509~^1.283^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~510~^1.589^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~511~^1.056^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~512~^0.692^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~513~^0.816^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~514~^1.923^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~515~^5.530^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~516~^0.472^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~517~^2.612^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~518~^1.358^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~01271~^~605~^0.709^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~606~^11.472^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~607~^0.396^18^0.004^~1~^~A~^^^1^0.372^0.428^6^0.386^0.405^~2, 3~^~05/01/2014~ -~01271~^~608~^0.335^18^0.003^~1~^~A~^^^1^0.318^0.375^6^0.327^0.343^~2, 3~^~05/01/2014~ -~01271~^~609~^0.209^18^0.003^~1~^~A~^^^1^0.196^0.241^6^0.201^0.217^~2, 3~^~05/01/2014~ -~01271~^~610~^0.503^18^0.010^~1~^~A~^^^1^0.461^0.599^6^0.479^0.526^~2, 3~^~05/01/2014~ -~01271~^~611~^0.573^18^0.013^~1~^~A~^^^1^0.521^0.680^6^0.541^0.604^~2, 3~^~05/01/2014~ -~01271~^~612~^1.842^18^0.030^~1~^~A~^^^1^1.741^2.121^6^1.770^1.914^~2, 3~^~05/01/2014~ -~01271~^~613~^5.201^18^0.067^~1~^~A~^^^1^4.926^5.886^6^5.037^5.365^~2, 3~^~05/01/2014~ -~01271~^~614~^2.066^18^0.058^~1~^~A~^^^1^1.844^2.313^6^1.924^2.209^~2, 3~^~05/01/2014~ -~01271~^~615~^0.028^18^0.001^~1~^~A~^^^1^0.023^0.032^6^0.026^0.030^~2, 3~^~05/01/2014~ -~01271~^~617~^4.558^18^0.062^~1~^~AS~^^^1^4.273^4.827^6^4.407^4.710^~2, 3~^~05/01/2014~ -~01271~^~618~^0.706^18^0.013^~1~^~AS~^^^1^0.647^0.744^6^0.675^0.738^~2, 3~^~05/01/2014~ -~01271~^~619~^0.076^18^0.004^~1~^~AS~^^^1^0.060^0.103^6^0.066^0.085^~2, 3~^~05/01/2014~ -~01271~^~620~^0.030^18^0.002^~1~^~A~^^^1^0.022^0.035^6^0.026^0.035^~2, 3~^~05/01/2014~ -~01271~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~01271~^~624~^0.007^18^0.000^~1~^~A~^^^1^0.006^0.008^6^0.007^0.008^~2, 3~^~05/01/2014~ -~01271~^~625~^0.181^18^0.006^~1~^~A~^^^1^0.162^0.228^6^0.167^0.195^~2, 3~^~05/01/2014~ -~01271~^~626~^0.292^18^0.013^~1~^~AS~^^^1^0.215^0.364^6^0.260^0.324^~2, 3~^~05/01/2014~ -~01271~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~628~^0.036^18^0.001^~1~^~A~^^^1^0.032^0.041^6^0.034^0.039^~2, 3~^~05/01/2014~ -~01271~^~629~^0.006^18^0.000^~1~^~A~^^^1^0.005^0.008^6^0.005^0.007^~2, 3~^~05/01/2014~ -~01271~^~630~^0.000^18^0.000^~1~^~AS~^^^1^0.000^0.001^6^0.000^0.000^~2, 3~^~05/01/2014~ -~01271~^~631~^0.011^18^0.000^~1~^~A~^^^1^0.010^0.015^6^0.010^0.012^~2, 3~^~05/01/2014~ -~01271~^~645~^5.104^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~646~^0.861^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~652~^0.192^18^0.003^~1~^~A~^^^1^0.179^0.219^6^0.185^0.199^~2, 3~^~05/01/2014~ -~01271~^~653~^0.116^18^0.002^~1~^~A~^^^1^0.104^0.134^6^0.111^0.120^~2, 3~^~05/01/2014~ -~01271~^~654~^0.005^18^0.000^~1~^~A~^^^1^0.004^0.006^6^0.004^0.005^~2, 3~^~05/01/2014~ -~01271~^~662~^0.054^18^0.007^~1~^~A~^^^1^0.004^0.067^6^0.036^0.072^~2, 3~^~05/01/2014~ -~01271~^~663~^0.515^18^0.014^~1~^~A~^^^1^0.446^0.559^6^0.481^0.549^~2, 3~^~05/01/2014~ -~01271~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~665~^0.138^18^0.002^~1~^~A~^^^1^0.126^0.156^6^0.133^0.143^~2, 3~^~05/01/2014~ -~01271~^~670~^0.097^18^0.002^~1~^~A~^^^1^0.090^0.109^6^0.094^0.101^~2, 3~^~05/01/2014~ -~01271~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~672~^0.005^18^0.000^~1~^~A~^^^1^0.004^0.005^6^0.004^0.005^~2, 3~^~05/01/2014~ -~01271~^~673~^0.238^18^0.008^~1~^~A~^^^1^0.210^0.300^6^0.219^0.257^~2, 3~^~05/01/2014~ -~01271~^~674~^4.043^18^0.050^~1~^~A~^^^1^3.827^4.268^6^3.921^4.166^~2, 3~^~05/01/2014~ -~01271~^~675~^0.471^18^0.012^~1~^~A~^^^1^0.418^0.517^6^0.441^0.501^~2, 3~^~05/01/2014~ -~01271~^~676~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~01271~^~685~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~01271~^~687~^0.037^18^0.001^~1~^~A~^^^1^0.032^0.043^6^0.034^0.039^~2, 3~^~05/01/2014~ -~01271~^~689~^0.022^18^0.001^~1~^~AS~^^^1^0.018^0.026^6^0.019^0.024^~2, 3~^~05/01/2014~ -~01271~^~693~^0.569^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~695~^0.140^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~01271~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~01271~^~851~^0.073^18^0.004^~1~^~A~^^^1^0.058^0.101^6^0.064^0.083^~2, 3~^~05/01/2014~ -~01271~^~852~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.003^6^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~01271~^~853~^0.021^18^0.001^~1~^~A~^^^1^0.018^0.025^6^0.019^0.023^~2, 3~^~05/01/2014~ -~01271~^~856~^0.002^18^0.000^~1~^~A~^^^1^0.002^0.003^6^0.002^0.002^~1, 2, 3~^~05/01/2014~ -~01271~^~858~^0.006^18^0.000^~1~^~A~^^^1^0.004^0.008^6^0.005^0.007^~2, 3~^~05/01/2014~ -~01275~^~312~^0.019^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.017^0.022^~2, 3~^~07/01/2014~ -~01275~^~315~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.008^~2, 3~^~07/01/2014~ -~01275~^~404~^0.028^0^^~4~^~BFSN~^~01256~^^^^^^^^^~07/01/2014~ -~01275~^~405~^0.233^3^0.032^~1~^~A~^^^1^0.180^0.290^2^0.097^0.370^~2, 3~^~07/01/2014~ -~01275~^~406~^0.217^3^0.012^~1~^~A~^^^1^0.200^0.240^2^0.165^0.268^~2, 3~^~07/01/2014~ -~01275~^~410~^0.390^2^^~1~^~A~^^^1^0.390^0.390^^^^^~07/01/2014~ -~01275~^~415~^0.053^3^0.003^~1~^~A~^^^1^0.047^0.057^2^0.040^0.066^~2, 3~^~07/01/2014~ -~01275~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~502~^0.404^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~503~^0.490^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~504~^0.903^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~505~^0.778^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~506~^0.250^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~507~^0.058^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~508~^0.452^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~509~^0.452^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~510~^0.596^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~511~^0.327^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~512~^0.259^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~513~^0.307^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~514~^0.721^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~515~^1.941^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~516~^0.173^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~517~^0.922^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~518~^0.500^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01275~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~606~^0.178^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~607~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~608~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~609~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~610~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~611~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~612~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~613~^0.074^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~614~^0.025^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~617~^0.054^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~618~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~628~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~645~^0.060^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~646~^0.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~653~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~663~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~674~^0.047^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~675~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01275~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01275~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01275~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~851~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01275~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~312~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.021^~2, 3~^~07/01/2014~ -~01276~^~315~^0.034^6^0.001^~1~^~A~^^^1^0.029^0.040^5^0.030^0.037^~2, 3~^~07/01/2014~ -~01276~^~404~^0.036^0^^~4~^~BFSN~^~01256~^^^^^^^^^~07/01/2014~ -~01276~^~405~^0.227^3^0.037^~1~^~A~^^^1^0.180^0.300^2^0.067^0.386^~2, 3~^~07/01/2014~ -~01276~^~406~^0.210^3^0.000^~1~^~A~^^^1^0.210^0.210^^^^~2, 3~^~07/01/2014~ -~01276~^~410~^0.390^2^^~1~^~A~^^^1^0.380^0.400^1^^^^~07/01/2014~ -~01276~^~415~^0.050^3^0.001^~1~^~A~^^^1^0.048^0.051^2^0.046^0.053^~2, 3~^~07/01/2014~ -~01276~^~605~^0.085^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~606~^1.832^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~607~^0.069^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~608~^0.053^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~609~^0.035^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~610~^0.093^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~611~^0.093^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~612~^0.292^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~613~^0.859^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~614~^0.285^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~617~^0.657^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~618~^0.107^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~625~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~626~^0.048^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~631~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~645~^0.745^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~646~^0.131^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~652~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~663~^0.059^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~665~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~670~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~673~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~674~^0.598^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~675~^0.078^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01276~^~693~^0.068^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01276~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~851~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~853~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01276~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01276~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~312~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.020^5^0.015^0.019^~2, 3~^~07/01/2014~ -~01278~^~315~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~2, 3~^~07/01/2014~ -~01278~^~404~^0.033^0^^~4~^~BFSN~^~01256~^^^^^^^^^~07/01/2014~ -~01278~^~405~^0.260^3^0.032^~1~^~A~^^^1^0.210^0.320^2^0.122^0.398^~2, 3~^~07/01/2014~ -~01278~^~406~^0.187^3^0.007^~1~^~A~^^^1^0.180^0.200^2^0.158^0.215^~2, 3~^~07/01/2014~ -~01278~^~410~^0.375^2^^~1~^~A~^^^1^0.360^0.390^1^^^^~07/01/2014~ -~01278~^~415~^0.047^3^0.001^~1~^~A~^^^1^0.045^0.049^2^0.042^0.052^~2, 3~^~07/01/2014~ -~01278~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~606~^0.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~607~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~608~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~610~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~613~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~614~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~617~^0.020^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~618~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~620~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~646~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~674~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~675~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01278~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01278~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01278~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01278~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~312~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.015^0.019^~2, 3~^~07/01/2014~ -~01280~^~315~^0.029^6^0.000^~1~^~A~^^^1^0.027^0.030^5^0.028^0.030^~2, 3~^~07/01/2014~ -~01280~^~404~^0.033^0^^~4~^~BFSN~^~01256~^^^^^^^^^~07/01/2014~ -~01280~^~405~^0.217^3^0.029^~1~^~A~^^^1^0.170^0.270^2^0.092^0.342^~2, 3~^~07/01/2014~ -~01280~^~406~^0.220^3^0.006^~1~^~A~^^^1^0.210^0.230^2^0.195^0.245^~2, 3~^~07/01/2014~ -~01280~^~410~^0.385^2^^~1~^~A~^^^1^0.380^0.390^1^^^^~07/01/2014~ -~01280~^~415~^0.051^3^0.002^~1~^~A~^^^1^0.046^0.053^2^0.041^0.060^~2, 3~^~07/01/2014~ -~01280~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~606~^0.110^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~607~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~608~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~610~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~613~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~614~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~617~^0.022^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~618~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~628~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~645~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~646~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~653~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~674~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~675~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~01280~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~01280~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~01280~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~851~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01280~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~01284~^~312~^0.019^9^0.001^~1~^~A~^^^1^0.015^0.023^7^0.016^0.021^~2, 3~^~05/01/2015~ -~01284~^~315~^0.036^9^0.001^~1~^~A~^^^1^0.029^0.047^7^0.033^0.039^~2, 3~^~05/01/2015~ -~01284~^~404~^0.037^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~405~^0.235^5^0.028^~1~^~A~^^^1^0.180^0.300^2^0.118^0.353^~2, 3~^~05/01/2015~ -~01284~^~406~^0.205^5^0.003^~1~^~A~^^^1^0.180^0.210^1^0.172^0.237^~2, 3~^~05/01/2015~ -~01284~^~410~^0.394^4^0.008^~1~^~A~^^^1^0.380^0.410^1^0.309^0.479^~2, 3~^~05/01/2015~ -~01284~^~415~^0.049^5^0.001^~1~^~A~^^^1^0.047^0.051^3^0.047^0.052^~2, 3~^~05/01/2015~ -~01284~^~501~^0.025^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~502~^0.179^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~503~^0.238^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~504~^0.440^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~505~^0.392^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~506~^0.129^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~507~^0.040^0^^~4~^^^^^^^^^^^~05/01/2015~ -~01284~^~508~^0.238^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~509~^0.221^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~510~^0.362^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~511~^0.132^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~512~^0.108^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~513~^0.187^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~514~^0.347^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~515~^0.856^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~516~^0.105^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~517~^0.518^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~518~^0.271^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01284~^~605~^0.074^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~606~^1.599^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~607~^0.060^2^^~1~^~A~^^^1^0.036^0.069^^^^^~05/01/2015~ -~01284~^~608~^0.046^2^^~1~^~A~^^^1^0.025^0.053^^^^^~05/01/2015~ -~01284~^~609~^0.031^2^^~1~^~A~^^^1^0.018^0.035^^^^^~05/01/2015~ -~01284~^~610~^0.084^2^^~1~^~A~^^^1^0.056^0.093^^^^^~05/01/2015~ -~01284~^~611~^0.081^2^^~1~^~A~^^^1^0.047^0.093^^^^^~05/01/2015~ -~01284~^~612~^0.254^2^^~1~^~A~^^^1^0.144^0.292^^^^^~05/01/2015~ -~01284~^~613~^0.746^2^^~1~^~A~^^^1^0.420^0.859^^^^^~05/01/2015~ -~01284~^~614~^0.250^2^^~1~^~A~^^^1^0.147^0.285^^^^^~05/01/2015~ -~01284~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.004^^^^~1~^~05/01/2015~ -~01284~^~617~^0.573^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~618~^0.092^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.005^^^^^~05/01/2015~ -~01284~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~625~^0.025^2^^~1~^~A~^^^1^0.015^0.028^^^^^~05/01/2015~ -~01284~^~626~^0.042^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~628~^0.005^2^^~1~^~A~^^^1^0.003^0.006^^^^^~05/01/2015~ -~01284~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~631~^0.002^2^^~1~^~A~^^^1^0.000^0.003^^^^~1~^~05/01/2015~ -~01284~^~645~^0.650^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~646~^0.113^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~652~^0.027^2^^~1~^~A~^^^1^0.017^0.031^^^^^~05/01/2015~ -~01284~^~653~^0.017^2^^~1~^~A~^^^1^0.010^0.019^^^^^~05/01/2015~ -~01284~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~662~^0.008^2^^~1~^~A~^^^1^0.005^0.009^^^^^~05/01/2015~ -~01284~^~663~^0.052^2^^~1~^~A~^^^1^0.030^0.059^^^^^~05/01/2015~ -~01284~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~665~^0.014^2^^~1~^~A~^^^1^0.007^0.017^^^^^~05/01/2015~ -~01284~^~670~^0.011^2^^~1~^~A~^^^1^0.007^0.012^^^^^~05/01/2015~ -~01284~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~673~^0.034^2^^~1~^~A~^^^1^0.019^0.039^^^^^~05/01/2015~ -~01284~^~674~^0.522^2^^~1~^~A~^^^1^0.301^0.598^^^^^~05/01/2015~ -~01284~^~675~^0.067^2^^~1~^~A~^^^1^0.036^0.078^^^^^~05/01/2015~ -~01284~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~687~^0.005^2^^~1~^~A~^^^1^0.003^0.006^^^^^~05/01/2015~ -~01284~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01284~^~693~^0.059^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01284~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~851~^0.011^2^^~1~^~A~^^^1^0.006^0.013^^^^^~05/01/2015~ -~01284~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~853~^0.003^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~05/01/2015~ -~01284~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01284~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~01285~^~312~^0.019^16^0.000^~1~^~A~^^^1^0.015^0.028^11^0.018^0.020^~2, 3~^~05/01/2015~ -~01285~^~315~^0.033^16^0.001^~1~^~A~^^^1^0.027^0.045^6^0.030^0.035^~2, 3~^~05/01/2015~ -~01285~^~404~^0.037^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~405~^0.253^10^0.019^~1~^~A~^^^1^0.170^0.340^4^0.196^0.310^~2, 3~^~05/01/2015~ -~01285~^~406~^0.213^10^0.004^~1~^~A~^^^1^0.180^0.230^4^0.202^0.225^~2, 3~^~05/01/2015~ -~01285~^~410~^0.358^6^0.008^~1~^~A~^^^1^0.320^0.390^1^0.282^0.434^~2, 3~^~05/01/2015~ -~01285~^~415~^0.050^10^0.001^~1~^~A~^^^1^0.046^0.053^4^0.047^0.054^~2, 3~^~05/01/2015~ -~01285~^~501~^0.025^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~502~^0.179^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~503~^0.238^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~504~^0.440^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~505~^0.392^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~506~^0.129^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~507~^0.040^0^^~4~^^^^^^^^^^^~05/01/2015~ -~01285~^~508~^0.238^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~509~^0.221^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~510~^0.362^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~511~^0.132^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~512~^0.108^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~513~^0.187^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~514~^0.347^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~515~^0.856^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~516~^0.105^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~517~^0.518^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~518~^0.271^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01285~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~606~^0.105^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~607~^0.007^3^^~1~^~A~^^^1^0.006^0.007^^^^~2, 3~^~05/01/2015~ -~01285~^~608~^0.001^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~609~^0.003^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~610~^0.017^3^^~1~^~A~^^^1^0.017^0.018^^^^~2, 3~^~05/01/2015~ -~01285~^~611~^0.006^3^^~1~^~A~^^^1^0.005^0.007^^^^~2, 3~^~05/01/2015~ -~01285~^~612~^0.010^3^^~1~^~A~^^^1^0.008^0.011^^^^~2, 3~^~05/01/2015~ -~01285~^~613~^0.038^3^^~1~^~A~^^^1^0.036^0.039^^^^~2, 3~^~05/01/2015~ -~01285~^~614~^0.017^3^^~1~^~A~^^^1^0.017^0.018^^^^~2, 3~^~05/01/2015~ -~01285~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~617~^0.025^3^^~1~^~AS~^^^1^0.022^0.041^^^^~2, 3~^~05/01/2015~ -~01285~^~618~^0.010^3^^~1~^~AS~^^^1^0.007^0.029^^^^~2, 3~^~05/01/2015~ -~01285~^~619~^0.003^3^^~1~^~AS~^^^1^0.001^0.015^^^^~2, 3~^~05/01/2015~ -~01285~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~626~^0.001^3^^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~01285~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~628~^0.001^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~01285~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~646~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~652~^0.003^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~653~^0.002^3^^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~663~^0.001^3^^~1~^~A~^^^1^0.000^0.005^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~673~^0.001^3^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~674~^0.024^3^^~1~^~A~^^^1^0.022^0.036^^^^~2, 3~^~05/01/2015~ -~01285~^~675~^0.010^3^^~1~^~A~^^^1^0.007^0.029^^^^~2, 3~^~05/01/2015~ -~01285~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~01285~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01285~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~851~^0.003^3^^~1~^~A~^^^1^0.001^0.015^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01285~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~312~^0.018^15^0.001^~1~^~A~^^^1^0.015^0.022^7^0.017^0.020^~2, 3~^~05/01/2015~ -~01286~^~315~^0.008^15^0.000^~1~^~A~^^^1^0.007^0.011^10^0.008^0.009^~2, 3~^~05/01/2015~ -~01286~^~404~^0.042^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~405~^0.240^8^0.020^~1~^~A~^^^1^0.170^0.320^4^0.183^0.296^~2, 3~^~05/01/2015~ -~01286~^~406~^0.201^8^0.006^~1~^~A~^^^1^0.180^0.240^3^0.179^0.223^~2, 3~^~05/01/2015~ -~01286~^~410~^0.386^5^0.006^~1~^~A~^^^1^0.360^0.400^1^0.315^0.456^~2, 3~^~05/01/2015~ -~01286~^~415~^0.050^8^0.002^~1~^~A~^^^1^0.045^0.057^3^0.044^0.056^~2, 3~^~05/01/2015~ -~01286~^~501~^0.028^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~502~^0.202^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~503~^0.269^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~504~^0.497^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~505~^0.442^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~506~^0.145^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~507~^0.045^0^^~4~^^^^^^^^^^^~05/01/2015~ -~01286~^~508~^0.269^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~509~^0.249^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~510~^0.408^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~511~^0.148^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~512~^0.122^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~513~^0.211^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~514~^0.391^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~515~^0.965^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~516~^0.119^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~517~^0.584^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~518~^0.305^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01286~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~606~^0.133^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~607~^0.008^3^^~1~^~A~^^^1^0.006^0.009^^^^~2, 3~^~05/01/2015~ -~01286~^~608~^0.002^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~609~^0.003^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~610~^0.020^3^^~1~^~A~^^^1^0.017^0.022^^^^~2, 3~^~05/01/2015~ -~01286~^~611~^0.009^3^^~1~^~A~^^^1^0.006^0.012^^^^~2, 3~^~05/01/2015~ -~01286~^~612~^0.016^3^^~1~^~A~^^^1^0.007^0.023^^^^~2, 3~^~05/01/2015~ -~01286~^~613~^0.052^3^^~1~^~A~^^^1^0.025^0.074^^^^~2, 3~^~05/01/2015~ -~01286~^~614~^0.020^3^^~1~^~A~^^^1^0.012^0.025^^^^~2, 3~^~05/01/2015~ -~01286~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~617~^0.036^3^^~1~^~AS~^^^1^0.015^0.054^^^^~2, 3~^~05/01/2015~ -~01286~^~618~^0.009^3^^~1~^~AS~^^^1^0.007^0.010^^^^~2, 3~^~05/01/2015~ -~01286~^~619~^0.001^3^^~1~^~AS~^^^1^0.000^0.001^^^^~2, 3~^~05/01/2015~ -~01286~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~625~^0.001^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~626~^0.002^3^^~1~^~AS~^^^1^0.000^0.003^^^^~2, 3~^~05/01/2015~ -~01286~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~628~^0.001^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~01286~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~645~^0.039^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~646~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~652~^0.003^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~653~^0.001^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~663~^0.004^3^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~673~^0.002^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~674~^0.033^3^^~1~^~A~^^^1^0.015^0.047^^^^~2, 3~^~05/01/2015~ -~01286~^~675~^0.009^3^^~1~^~A~^^^1^0.007^0.010^^^^~2, 3~^~05/01/2015~ -~01286~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~01286~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01286~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~851~^0.001^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01286~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~01287~^~312~^0.021^5^0.002^~1~^~A~^^^1^0.018^0.026^4^0.017^0.025^~2, 3~^~05/01/2015~ -~01287~^~315~^0.007^5^0.001^~1~^~A~^^^1^0.005^0.009^4^0.005^0.009^~1, 2, 3~^~05/01/2015~ -~01287~^~404~^0.044^26^0.002^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~405~^0.233^3^0.023^~1~^~A~^^^1^0.190^0.270^2^0.133^0.334^~2, 3~^~05/01/2015~ -~01287~^~406~^0.197^3^0.003^~1~^~A~^^^1^0.190^0.200^2^0.182^0.211^~2, 3~^~05/01/2015~ -~01287~^~410~^0.470^2^^~1~^~A~^^^1^0.440^0.500^1^^^^~05/01/2015~ -~01287~^~415~^0.055^3^0.001^~1~^~A~^^^1^0.053^0.057^2^0.050^0.061^~2, 3~^~05/01/2015~ -~01287~^~501~^0.030^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~502~^0.216^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~503~^0.286^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~504~^0.529^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~505~^0.471^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~506~^0.155^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~507~^0.048^0^^~4~^^^^^^^^^^^~05/01/2015~ -~01287~^~508~^0.286^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~509~^0.265^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~510~^0.434^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~511~^0.158^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~512~^0.130^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~513~^0.225^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~514~^0.416^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~515~^1.028^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~516~^0.127^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~517~^0.622^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~518~^0.325^0^^~1~^^^^^^^^^^^~05/01/2015~ -~01287~^~605~^0.060^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~606~^1.230^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~607~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~608~^0.035^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~609~^0.024^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~610~^0.067^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~611~^0.062^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~612~^0.194^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~613~^0.570^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~614~^0.195^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~617~^0.427^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~618~^0.065^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~620~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~625~^0.021^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~626~^0.031^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~645~^0.486^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~646~^0.076^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~652~^0.021^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~653~^0.012^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~662~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~663~^0.046^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~665~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~670~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~673~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~674~^0.381^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~675~^0.048^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~01287~^~693~^0.051^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~01287~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~01287~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01287~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~01289~^~312~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~315~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~404~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~07/01/2015~ -~01289~^~405~^0.135^2^^~1~^~A~^^^1^0.120^0.150^1^^^^~07/01/2015~ -~01289~^~406~^0.150^2^^~1~^~A~^^^1^0.130^0.170^1^^^^~07/01/2015~ -~01289~^~410~^0.385^2^^~1~^~A~^^^1^0.380^0.390^1^^^^~07/01/2015~ -~01289~^~415~^0.058^2^^~1~^~A~^^^1^0.056^0.059^1^^^^~07/01/2015~ -~01289~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~606~^0.658^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~607~^0.029^4^0.002^~1~^~A~^^^1^0.026^0.033^3^0.024^0.034^~2, 3~^~07/01/2015~ -~01289~^~608~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.020^3^0.015^0.020^~2, 3~^~07/01/2015~ -~01289~^~609~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.009^3^0.006^0.010^~2, 3~^~07/01/2015~ -~01289~^~610~^0.021^4^0.003^~1~^~A~^^^1^0.014^0.027^3^0.012^0.031^~2, 3~^~07/01/2015~ -~01289~^~611~^0.029^4^0.002^~1~^~A~^^^1^0.025^0.032^3^0.024^0.034^~2, 3~^~07/01/2015~ -~01289~^~612~^0.105^4^0.007^~1~^~A~^^^1^0.090^0.122^3^0.082^0.128^~2, 3~^~07/01/2015~ -~01289~^~613~^0.308^4^0.020^~1~^~A~^^^1^0.266^0.355^3^0.244^0.372^~2, 3~^~07/01/2015~ -~01289~^~614~^0.118^4^0.007^~1~^~A~^^^1^0.104^0.133^3^0.096^0.141^~2, 3~^~07/01/2015~ -~01289~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~07/01/2015~ -~01289~^~617~^0.273^4^0.017^~1~^~AS~^^^1^0.231^0.307^3^0.218^0.327^~2, 3~^~07/01/2015~ -~01289~^~618~^0.042^4^0.002^~1~^~AS~^^^1^0.037^0.046^3^0.036^0.048^~2, 3~^~07/01/2015~ -~01289~^~619~^0.006^4^0.000^~1~^~AS~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~07/01/2015~ -~01289~^~620~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.004^~1, 2, 3~^~07/01/2015~ -~01289~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~625~^0.011^4^0.001^~1~^~A~^^^1^0.009^0.013^3^0.008^0.013^~2, 3~^~07/01/2015~ -~01289~^~626~^0.020^4^0.002^~1~^~AS~^^^1^0.017^0.024^3^0.015^0.026^~2, 3~^~07/01/2015~ -~01289~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~628~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.004^3^0.002^0.005^~1, 2, 3~^~07/01/2015~ -~01289~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~07/01/2015~ -~01289~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01289~^~631~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~07/01/2015~ -~01289~^~645~^0.310^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~646~^0.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~652~^0.013^4^0.001^~1~^~A~^^^1^0.012^0.015^3^0.011^0.015^~2, 3~^~07/01/2015~ -~01289~^~653~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.005^0.008^~2, 3~^~07/01/2015~ -~01289~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~07/01/2015~ -~01289~^~662~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.005^~1, 2, 3~^~07/01/2015~ -~01289~^~663~^0.027^4^0.002^~1~^~A~^^^1^0.021^0.032^3^0.019^0.034^~2, 3~^~07/01/2015~ -~01289~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~665~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~07/01/2015~ -~01289~^~670~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.008^~2, 3~^~07/01/2015~ -~01289~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~673~^0.017^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.013^0.021^~2, 3~^~07/01/2015~ -~01289~^~674~^0.246^4^0.015^~1~^~A~^^^1^0.210^0.278^3^0.198^0.294^~2, 3~^~07/01/2015~ -~01289~^~675~^0.029^4^0.002^~1~^~A~^^^1^0.024^0.031^3^0.024^0.034^~2, 3~^~07/01/2015~ -~01289~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~687~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~07/01/2015~ -~01289~^~689~^0.002^4^0.000^~1~^~AS~^^^1^0.001^0.002^3^0.001^0.002^~2, 3~^~07/01/2015~ -~01289~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01289~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~851~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~07/01/2015~ -~01289~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~853~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~07/01/2015~ -~01289~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01289~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~312~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~315~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~404~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~07/01/2015~ -~01290~^~405~^0.210^2^^~1~^~A~^^^1^0.210^0.210^^^^^~07/01/2015~ -~01290~^~406~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~07/01/2015~ -~01290~^~410~^0.380^2^^~1~^~A~^^^1^0.380^0.380^^^^^~07/01/2015~ -~01290~^~415~^0.060^2^^~1~^~A~^^^1^0.058^0.063^1^^^^~07/01/2015~ -~01290~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~606~^0.533^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~607~^0.024^4^0.001^~1~^~A~^^^1^0.021^0.028^3^0.020^0.029^~2, 3~^~07/01/2015~ -~01290~^~608~^0.013^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.009^0.017^~2, 3~^~07/01/2015~ -~01290~^~609~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~07/01/2015~ -~01290~^~610~^0.018^4^0.005^~1~^~A~^^^1^0.007^0.030^3^0.003^0.033^~2, 3~^~07/01/2015~ -~01290~^~611~^0.023^4^0.002^~1~^~A~^^^1^0.019^0.028^3^0.018^0.029^~2, 3~^~07/01/2015~ -~01290~^~612~^0.084^4^0.006^~1~^~A~^^^1^0.068^0.097^3^0.064^0.103^~2, 3~^~07/01/2015~ -~01290~^~613~^0.253^4^0.020^~1~^~A~^^^1^0.206^0.305^3^0.187^0.318^~2, 3~^~07/01/2015~ -~01290~^~614~^0.095^4^0.008^~1~^~A~^^^1^0.078^0.116^3^0.070^0.120^~2, 3~^~07/01/2015~ -~01290~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~07/01/2015~ -~01290~^~617~^0.231^4^0.021^~1~^~AS~^^^1^0.185^0.287^3^0.163^0.298^~2, 3~^~07/01/2015~ -~01290~^~618~^0.033^4^0.003^~1~^~AS~^^^1^0.027^0.040^3^0.025^0.042^~2, 3~^~07/01/2015~ -~01290~^~619~^0.005^4^0.000^~1~^~AS~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~07/01/2015~ -~01290~^~620~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~07/01/2015~ -~01290~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~625~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.011^3^0.006^0.011^~2, 3~^~07/01/2015~ -~01290~^~626~^0.017^4^0.002^~1~^~AS~^^^1^0.014^0.021^3^0.012^0.022^~2, 3~^~07/01/2015~ -~01290~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~628~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~07/01/2015~ -~01290~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01290~^~631~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~07/01/2015~ -~01290~^~645~^0.262^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~646~^0.041^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~652~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.013^3^0.007^0.013^~2, 3~^~07/01/2015~ -~01290~^~653~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.007^~2, 3~^~07/01/2015~ -~01290~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~662~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~07/01/2015~ -~01290~^~663~^0.022^4^0.002^~1~^~A~^^^1^0.018^0.028^3^0.015^0.029^~2, 3~^~07/01/2015~ -~01290~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~665~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.008^~2, 3~^~07/01/2015~ -~01290~^~670~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.007^~2, 3~^~07/01/2015~ -~01290~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~673~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.018^3^0.010^0.018^~2, 3~^~07/01/2015~ -~01290~^~674~^0.209^4^0.019^~1~^~A~^^^1^0.167^0.259^3^0.148^0.270^~2, 3~^~07/01/2015~ -~01290~^~675~^0.022^4^0.002^~1~^~A~^^^1^0.019^0.027^3^0.017^0.028^~2, 3~^~07/01/2015~ -~01290~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~687~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~07/01/2015~ -~01290~^~689~^0.001^4^0.000^~1~^~AS~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~07/01/2015~ -~01290~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01290~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~851~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~07/01/2015~ -~01290~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~853~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~07/01/2015~ -~01290~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01290~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01291~^~312~^0.016^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~315~^0.006^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~404~^0.047^42^0.002^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~405~^0.316^41^0.006^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~406~^0.194^36^0.010^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~410~^0.638^5^0.032^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~415~^0.050^21^0.002^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~501~^0.096^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~502~^0.307^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~503~^0.412^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~504~^0.667^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~505~^0.540^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~506~^0.171^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~507~^0.063^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~508~^0.329^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~509~^0.329^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~510~^0.456^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~511~^0.247^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~512~^0.185^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~513~^0.235^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~514~^0.517^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~515~^1.426^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~516~^0.144^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~517~^0.660^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~518~^0.370^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01291~^~606~^1.204^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01291~^~607~^0.054^1^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~608~^0.037^1^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~609~^0.015^2^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~610~^0.031^11^0.017^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~611~^0.045^12^0.015^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~612~^0.204^12^0.035^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~613~^0.563^12^0.060^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~614~^0.256^12^0.027^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~617~^0.584^12^0.049^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~618~^0.046^12^0.017^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~619~^0.022^2^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~626~^0.044^12^0.012^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01291~^~645~^0.628^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01291~^~646~^0.068^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01292~^~312~^0.075^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~315~^0.062^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~404~^0.045^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~405~^0.166^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01292~^~406~^0.164^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~410~^0.302^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01292~^~415~^0.024^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~ -~01292~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01292~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~01292~^~607~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~608~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~609~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~610~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~611~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~612~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~613~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~614~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~617~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~618~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~619~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~620~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~621~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~626~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~627~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~628~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~629~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~630~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~631~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~645~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01292~^~646~^0.000^0^^~4~^~BFFN~^~01085~^^^^^^^^^~06/01/2015~ -~01293~^~312~^0.017^18^0.000^~1~^~A~^^^1^0.015^0.018^6^0.016^0.017^~2, 3~^~06/01/2015~ -~01293~^~315~^0.009^18^0.000^~1~^~A~^^^1^0.005^0.015^7^0.008^0.010^~1, 2, 3~^~06/01/2015~ -~01293~^~404~^0.023^9^0.002^~1~^~A~^^^1^0.020^0.030^2^0.016^0.030^~2, 3~^~06/01/2015~ -~01293~^~405~^0.278^9^0.007^~1~^~A~^^^1^0.250^0.300^2^0.251^0.304^~2, 3~^~06/01/2015~ -~01293~^~406~^0.208^9^0.006^~1~^~A~^^^1^0.190^0.230^3^0.190^0.227^~2, 3~^~06/01/2015~ -~01293~^~410~^0.331^6^0.001^~1~^~A~^^^1^0.330^0.340^1^0.316^0.347^~2, 3~^~06/01/2015~ -~01293~^~415~^0.063^9^0.001^~1~^~A~^^^1^0.060^0.070^3^0.061^0.065^~2, 3~^~06/01/2015~ -~01293~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01293~^~606~^2.395^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~608~^0.051^9^0.000^~1~^~A~^^^1^0.001^0.003^4^0.002^0.003^~1, 2, 3~^~08/01/2015~ -~01293~^~609~^0.086^9^0.000^~1~^~A~^^^1^0.003^0.005^4^0.004^0.005^~2, 3~^~08/01/2015~ -~01293~^~610~^0.264^9^0.001^~1~^~A~^^^1^0.008^0.016^3^0.011^0.015^~2, 3~^~08/01/2015~ -~01293~^~611~^0.127^9^0.000^~1~^~A~^^^1^0.004^0.008^4^0.006^0.007^~2, 3~^~08/01/2015~ -~01293~^~612~^0.316^9^0.000^~1~^~A~^^^1^0.009^0.019^5^0.014^0.017^~2, 3~^~08/01/2015~ -~01293~^~613~^1.000^9^0.002^~1~^~A~^^^1^0.032^0.059^6^0.045^0.053^~2, 3~^~08/01/2015~ -~01293~^~614~^0.422^9^0.001^~1~^~A~^^^1^0.015^0.024^5^0.019^0.022^~2, 3~^~08/01/2015~ -~01293~^~615~^0.003^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~08/01/2015~ -~01293~^~617~^0.993^9^0.001^~1~^~AS~^^^1^0.031^0.058^5^0.045^0.052^~2, 3~^~08/01/2015~ -~01293~^~618~^0.209^9^0.001^~1~^~AS~^^^1^0.006^0.017^4^0.008^0.013^~2, 3~^~08/01/2015~ -~01293~^~619~^0.023^9^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.001^0.003^~2, 3~^~08/01/2015~ -~01293~^~620~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~621~^0.004^9^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.001^~1, 2, 3~^~08/01/2015~ -~01293~^~624~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~625~^0.018^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~08/01/2015~ -~01293~^~626~^0.049^9^0.000^~1~^~AS~^^^1^0.000^0.004^5^0.001^0.004^~2, 3~^~08/01/2015~ -~01293~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~628~^0.034^9^0.001^~1~^~A~^^^1^0.000^0.003^2^0.000^0.004^~1, 2, 3~^~08/01/2015~ -~01293~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~01293~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~645~^2.136^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~646~^0.469^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01293~^~652~^0.067^9^0.000^~1~^~A~^^^1^0.002^0.004^4^0.003^0.004^~1, 2, 3~^~08/01/2015~ -~01293~^~653~^0.060^9^0.000^~1~^~A~^^^1^0.000^0.004^3^0.002^0.004^~1, 2, 3~^~08/01/2015~ -~01293~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~662~^0.005^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~08/01/2015~ -~01293~^~663~^0.114^9^0.001^~1~^~A~^^^1^0.003^0.009^2^0.003^0.008^~2, 3~^~08/01/2015~ -~01293~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~665~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~670~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~672~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~673~^0.044^9^0.000^~1~^~A~^^^1^0.000^0.004^4^0.001^0.003^~1, 2, 3~^~08/01/2015~ -~01293~^~674~^0.879^9^0.001^~1~^~A~^^^1^0.028^0.050^4^0.040^0.046^~2, 3~^~08/01/2015~ -~01293~^~675~^0.209^9^0.001^~1~^~A~^^^1^0.006^0.017^4^0.008^0.013^~2, 3~^~08/01/2015~ -~01293~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~687~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~01293~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~851~^0.023^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~08/01/2015~ -~01293~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01293~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01294~^~312~^0.019^9^0.001^~1~^~A~^^^1^0.015^0.023^7^0.016^0.021^~2, 3~^~06/01/2015~ -~01294~^~315~^0.036^9^0.001^~1~^~A~^^^1^0.029^0.047^7^0.033^0.039^~2, 3~^~06/01/2015~ -~01294~^~404~^0.046^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~ -~01294~^~405~^0.235^5^0.028^~1~^~A~^^^1^0.180^0.300^2^0.118^0.353^~2, 3~^~06/01/2015~ -~01294~^~406~^0.205^5^0.003^~1~^~A~^^^1^0.180^0.210^1^0.172^0.237^~2, 3~^~06/01/2015~ -~01294~^~410~^0.394^4^0.008^~1~^~A~^^^1^0.380^0.410^1^0.309^0.479^~2, 3~^~06/01/2015~ -~01294~^~415~^0.049^5^0.001^~1~^~A~^^^1^0.047^0.051^3^0.047^0.052^~2, 3~^~06/01/2015~ -~01294~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01294~^~606~^1.599^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~607~^0.060^2^^~1~^~A~^^^1^0.036^0.069^^^^^~06/01/2015~ -~01294~^~608~^0.046^2^^~1~^~A~^^^1^0.025^0.053^^^^^~06/01/2015~ -~01294~^~609~^0.031^2^^~1~^~A~^^^1^0.018^0.035^^^^^~06/01/2015~ -~01294~^~610~^0.084^2^^~1~^~A~^^^1^0.056^0.093^^^^^~06/01/2015~ -~01294~^~611~^0.081^2^^~1~^~A~^^^1^0.047^0.093^^^^^~06/01/2015~ -~01294~^~612~^0.254^2^^~1~^~A~^^^1^0.144^0.292^^^^^~06/01/2015~ -~01294~^~613~^0.746^2^^~1~^~A~^^^1^0.420^0.859^^^^^~06/01/2015~ -~01294~^~614~^0.250^2^^~1~^~A~^^^1^0.147^0.285^^^^^~06/01/2015~ -~01294~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.004^^^^~1~^~06/01/2015~ -~01294~^~617~^0.573^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~618~^0.092^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.005^^^^^~06/01/2015~ -~01294~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~625~^0.025^2^^~1~^~A~^^^1^0.015^0.028^^^^^~06/01/2015~ -~01294~^~626~^0.042^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~628~^0.005^2^^~1~^~A~^^^1^0.003^0.006^^^^^~06/01/2015~ -~01294~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~631~^0.002^2^^~1~^~A~^^^1^0.000^0.003^^^^~1~^~06/01/2015~ -~01294~^~645~^1.265^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~646~^0.219^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~652~^0.027^2^^~1~^~A~^^^1^0.017^0.031^^^^^~06/01/2015~ -~01294~^~653~^0.017^2^^~1~^~A~^^^1^0.010^0.019^^^^^~06/01/2015~ -~01294~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~662~^0.008^2^^~1~^~A~^^^1^0.005^0.009^^^^^~06/01/2015~ -~01294~^~663~^0.052^2^^~1~^~A~^^^1^0.030^0.059^^^^^~06/01/2015~ -~01294~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~665~^0.014^2^^~1~^~A~^^^1^0.007^0.017^^^^^~06/01/2015~ -~01294~^~670~^0.011^2^^~1~^~A~^^^1^0.007^0.012^^^^^~06/01/2015~ -~01294~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~673~^0.034^2^^~1~^~A~^^^1^0.019^0.039^^^^^~06/01/2015~ -~01294~^~674~^0.522^2^^~1~^~A~^^^1^0.301^0.598^^^^^~06/01/2015~ -~01294~^~675~^0.067^2^^~1~^~A~^^^1^0.036^0.078^^^^^~06/01/2015~ -~01294~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~687~^0.005^2^^~1~^~A~^^^1^0.003^0.006^^^^^~06/01/2015~ -~01294~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~01294~^~693~^0.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01294~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~851~^0.011^2^^~1~^~A~^^^1^0.006^0.013^^^^^~06/01/2015~ -~01294~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~853~^0.003^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~06/01/2015~ -~01294~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01294~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~01295~^~312~^0.013^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~315~^0.004^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~404~^0.042^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~405~^0.200^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01295~^~406~^0.107^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~410~^0.552^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~415~^0.045^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~501~^0.028^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~502~^0.202^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~503~^0.269^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~504~^0.497^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~505~^0.442^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~506~^0.145^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~507~^0.045^0^^~4~^^^^^^^^^^^~06/01/2015~ -~01295~^~508~^0.269^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~509~^0.249^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~510~^0.408^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~511~^0.148^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~512~^0.122^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~513~^0.211^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~514~^0.391^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~515~^0.965^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~516~^0.119^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~517~^0.584^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~518~^0.305^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~607~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~608~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~609~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~610~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~611~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~612~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~613~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~614~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~617~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~618~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~619~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~626~^0.000^3^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2015~ -~01295~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01295~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01297~^~312~^0.018^15^0.001^~1~^~A~^^^1^0.015^0.022^7^0.017^0.020^~2, 3~^~06/01/2015~ -~01297~^~315~^0.008^15^0.000^~1~^~A~^^^1^0.007^0.011^10^0.008^0.009^~2, 3~^~06/01/2015~ -~01297~^~404~^0.038^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~ -~01297~^~405~^0.240^8^0.020^~1~^~A~^^^1^0.170^0.320^4^0.183^0.296^~2, 3~^~06/01/2015~ -~01297~^~406~^0.201^8^0.006^~1~^~A~^^^1^0.180^0.240^3^0.179^0.223^~2, 3~^~06/01/2015~ -~01297~^~410~^0.386^5^0.006^~1~^~A~^^^1^0.360^0.400^1^0.315^0.456^~2, 3~^~06/01/2015~ -~01297~^~415~^0.050^8^0.002^~1~^~A~^^^1^0.045^0.057^3^0.044^0.056^~2, 3~^~06/01/2015~ -~01297~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01297~^~606~^1.465^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~607~^0.083^3^^~1~^~A~^^^1^0.006^0.009^^^^~2, 3~^~08/01/2015~ -~01297~^~608~^0.021^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~609~^0.036^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~610~^0.219^3^^~1~^~A~^^^1^0.017^0.022^^^^~2, 3~^~08/01/2015~ -~01297~^~611~^0.102^3^^~1~^~A~^^^1^0.006^0.012^^^^~2, 3~^~08/01/2015~ -~01297~^~612~^0.177^3^^~1~^~A~^^^1^0.007^0.023^^^^~2, 3~^~08/01/2015~ -~01297~^~613~^0.568^3^^~1~^~A~^^^1^0.025^0.074^^^^~2, 3~^~08/01/2015~ -~01297~^~614~^0.215^3^^~1~^~A~^^^1^0.012^0.025^^^^~2, 3~^~08/01/2015~ -~01297~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~617~^0.398^3^^~1~^~AS~^^^1^0.015^0.054^^^^~2, 3~^~08/01/2015~ -~01297~^~618~^0.094^3^^~1~^~AS~^^^1^0.007^0.010^^^^~2, 3~^~08/01/2015~ -~01297~^~619~^0.005^3^^~1~^~AS~^^^1^0.000^0.001^^^^~2, 3~^~08/01/2015~ -~01297~^~620~^0.004^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~625~^0.011^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~626~^0.016^3^^~1~^~AS~^^^1^0.000^0.003^^^^~2, 3~^~08/01/2015~ -~01297~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~628~^0.005^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~01297~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~645~^0.846^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~646~^0.203^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~652~^0.033^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~653~^0.012^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~663~^0.038^3^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~673~^0.016^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~674~^0.360^3^^~1~^~A~^^^1^0.015^0.047^^^^~2, 3~^~08/01/2015~ -~01297~^~675~^0.094^3^^~1~^~A~^^^1^0.007^0.010^^^^~2, 3~^~08/01/2015~ -~01297~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~01297~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01297~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01297~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~851~^0.005^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~08/01/2015~ -~01297~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01297~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~01298~^~312~^0.006^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~404~^0.028^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~405~^0.125^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~406~^0.049^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~415~^0.028^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01298~^~606~^1.509^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01298~^~607~^0.077^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~608~^0.054^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~609~^0.031^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~610~^0.069^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~611~^0.085^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~612~^0.262^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~613~^0.685^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~614~^0.247^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~617~^0.569^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~618~^0.047^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~619~^0.023^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~620~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~621~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~626~^0.054^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~627~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~628~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~629~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~630~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~631~^0.000^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01298~^~645~^0.685^0^^~4~^~BFFN~^~42187~^^^^^^^^^~09/01/2015~ -~01298~^~646~^0.069^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~ -~01300~^~312~^0.164^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~404~^0.051^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~405~^0.230^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~406~^1.228^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~415~^0.281^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01300~^~606~^15.904^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01300~^~607~^0.347^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~608~^0.255^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~609~^0.713^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~610~^0.807^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~611~^4.150^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~612~^2.625^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~613~^4.674^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~614~^2.333^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~617~^5.918^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~618~^1.721^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~619~^0.159^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~620~^0.000^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~621~^0.000^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~626~^0.238^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~627~^0.000^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~628~^0.052^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~629~^0.000^0^^~4~^~T~^^^^^^^^^^~06/01/2015~ -~01300~^~630~^0.000^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~631~^0.000^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~645~^6.208^0^^~4~^~NC~^~43506~^^^^^^^^^~06/01/2015~ -~01300~^~646~^1.879^0^^~4~^~NC~^~43506~^^^^^^^^^~06/01/2015~ -~01301~^~312~^0.082^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~315~^0.087^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~404~^0.090^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~405~^0.213^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~406~^1.111^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~410~^0.356^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~415~^0.050^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~501~^0.010^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~502~^0.022^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~503~^0.031^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~504~^0.058^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~505~^0.016^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~506~^0.015^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~507~^0.019^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~508~^0.041^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~509~^0.023^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~510~^0.035^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~511~^0.029^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~512~^0.018^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~513~^0.026^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~514~^0.034^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~515~^0.295^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~516~^0.029^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~517~^0.099^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~518~^0.041^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~605~^0.000^0^^~8~^^^^^^^^^^^~06/01/2015~ -~01301~^~606~^2.717^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~608~^0.082^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~609~^0.051^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~610~^0.101^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~611~^0.302^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~612~^0.403^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~613~^1.175^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~614~^0.603^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~617~^1.665^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~618~^0.659^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~619~^0.067^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~620~^0.021^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~626~^0.100^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~628~^0.010^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01301~^~645~^1.775^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01301~^~646~^0.747^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~01302~^~312~^0.020^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~315~^0.007^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~404~^0.045^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~405~^0.206^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~406~^0.113^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~410~^0.402^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~415~^0.038^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~606~^1.813^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01302~^~607~^0.099^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~608~^0.056^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~609~^0.044^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~610~^0.072^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~611~^0.075^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~612~^0.296^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~613~^0.823^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~614~^0.349^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~617~^0.768^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~618~^0.088^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~619~^0.049^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~626~^0.050^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~01302~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~645~^0.819^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01302~^~646~^0.137^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01302~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01302~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~01303~^~312~^0.009^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~404~^0.030^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~405~^0.194^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~406~^0.109^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~415~^0.050^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~605~^0.000^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01303~^~606~^3.276^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~607~^0.119^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~608~^0.097^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~609~^0.061^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~610~^0.146^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~611~^0.169^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~612~^0.553^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~613~^1.544^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~614~^0.588^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~617~^1.398^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~618~^0.224^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~619~^0.020^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~620~^0.009^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~621~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~626~^0.118^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~627~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~628~^0.010^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~629~^0.001^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~630~^0.000^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~631~^0.003^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~ -~01303~^~645~^1.526^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01303~^~646~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01304~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~502~^0.314^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~503~^0.381^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~504~^0.702^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~505~^0.605^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~506~^0.194^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~507~^0.045^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~508~^0.351^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~509~^0.351^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~510~^0.463^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~511~^0.254^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~512~^0.202^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~513~^0.239^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~514~^0.560^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~515~^1.509^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~516~^0.134^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~517~^0.717^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~518~^0.388^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01304~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~606~^1.120^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~645~^0.390^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01304~^~646~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01305~^~312~^0.018^9^0.001^~1~^~A~^^^1^0.016^0.021^8^0.016^0.019^~2, 3~^~07/01/2015~ -~01305~^~315~^0.021^9^0.001^~1~^~A~^^^1^0.017^0.023^8^0.019^0.022^~2, 3~^~07/01/2015~ -~01305~^~404~^0.035^6^0.002^~1~^~A~^^^1^0.030^0.040^5^0.029^0.041^~2, 3~^~07/01/2015~ -~01305~^~405~^0.225^6^0.006^~1~^~A~^^^1^0.210^0.250^5^0.210^0.239^~2, 3~^~07/01/2015~ -~01305~^~406~^0.122^6^0.003^~1~^~A~^^^1^0.110^0.130^5^0.114^0.129^~2, 3~^~07/01/2015~ -~01305~^~410~^0.467^4^0.026^~1~^~A~^^^1^0.420^0.540^3^0.386^0.549^~2, 3~^~07/01/2015~ -~01305~^~415~^0.050^6^0.004^~1~^~A~^^^1^0.041^0.063^5^0.040^0.061^~2, 3~^~07/01/2015~ -~01305~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~01305~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~606~^0.616^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~607~^0.020^9^0.001^~1~^~A~^^^1^0.017^0.025^8^0.018^0.023^~2, 3~^~07/01/2015~ -~01305~^~608~^0.014^9^0.000^~1~^~A~^^^1^0.011^0.015^8^0.013^0.015^~2, 3~^~07/01/2015~ -~01305~^~609~^0.009^9^0.000^~1~^~A~^^^1^0.008^0.011^8^0.009^0.010^~2, 3~^~07/01/2015~ -~01305~^~610~^0.025^9^0.001^~1~^~A~^^^1^0.021^0.030^8^0.023^0.027^~2, 3~^~07/01/2015~ -~01305~^~611~^0.029^9^0.001^~1~^~A~^^^1^0.022^0.033^8^0.026^0.032^~2, 3~^~07/01/2015~ -~01305~^~612~^0.099^9^0.003^~1~^~A~^^^1^0.082^0.109^8^0.091^0.107^~2, 3~^~07/01/2015~ -~01305~^~613~^0.278^9^0.008^~1~^~A~^^^1^0.244^0.332^8^0.259^0.297^~2, 3~^~07/01/2015~ -~01305~^~614~^0.122^9^0.003^~1~^~A~^^^1^0.108^0.136^8^0.114^0.130^~2, 3~^~07/01/2015~ -~01305~^~615~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.003^8^0.002^0.002^~1, 2, 3~^~07/01/2015~ -~01305~^~617~^0.260^9^0.006^~1~^~AS~^^^1^0.244^0.301^8^0.245^0.274^~2, 3~^~07/01/2015~ -~01305~^~618~^0.045^9^0.001^~1~^~AS~^^^1^0.041^0.053^8^0.042^0.048^~2, 3~^~07/01/2015~ -~01305~^~619~^0.005^9^0.000^~1~^~AS~^^^1^0.004^0.007^8^0.004^0.005^~2, 3~^~07/01/2015~ -~01305~^~620~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.004^8^0.002^0.003^~1, 2, 3~^~07/01/2015~ -~01305~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~624~^0.001^9^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~625~^0.010^9^0.000^~1~^~A~^^^1^0.009^0.012^8^0.010^0.011^~2, 3~^~07/01/2015~ -~01305~^~626~^0.014^9^0.001^~1~^~AS~^^^1^0.012^0.018^8^0.013^0.016^~2, 3~^~07/01/2015~ -~01305~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~628~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^8^0.003^0.004^~1, 2, 3~^~07/01/2015~ -~01305~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~07/01/2015~ -~01305~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2015~ -~01305~^~631~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~07/01/2015~ -~01305~^~645~^0.290^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~646~^0.054^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~652~^0.010^9^0.000^~1~^~A~^^^1^0.009^0.012^8^0.010^0.011^~2, 3~^~07/01/2015~ -~01305~^~653~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^8^0.005^0.006^~2, 3~^~07/01/2015~ -~01305~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~07/01/2015~ -~01305~^~662~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^8^0.002^0.003^~1, 2, 3~^~07/01/2015~ -~01305~^~663~^0.026^9^0.001^~1~^~A~^^^1^0.019^0.033^8^0.023^0.029^~2, 3~^~07/01/2015~ -~01305~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~665~^0.007^9^0.000^~1~^~A~^^^1^0.006^0.010^8^0.006^0.008^~2, 3~^~07/01/2015~ -~01305~^~670~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^8^0.005^0.006^~2, 3~^~07/01/2015~ -~01305~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~672~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~673~^0.012^9^0.001^~1~^~A~^^^1^0.010^0.015^8^0.010^0.013^~2, 3~^~07/01/2015~ -~01305~^~674~^0.234^9^0.005^~1~^~A~^^^1^0.222^0.268^8^0.222^0.246^~2, 3~^~07/01/2015~ -~01305~^~675~^0.032^9^0.001^~1~^~A~^^^1^0.026^0.037^8^0.030^0.035^~2, 3~^~07/01/2015~ -~01305~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~687~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~689~^0.002^9^0.000^~1~^~AS~^^^1^0.001^0.002^8^0.001^0.002^~2, 3~^~07/01/2015~ -~01305~^~693~^0.029^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01305~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~851~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^8^0.004^0.005^~2, 3~^~07/01/2015~ -~01305~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~853~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.002^8^0.001^0.002^~1, 2, 3~^~07/01/2015~ -~01305~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~01305~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.000^~1, 2, 3~^~07/01/2015~ -~01306~^~312~^0.360^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~315~^0.677^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~404~^0.182^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~405~^0.200^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~406~^3.528^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~410~^0.297^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~415~^0.093^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~605~^0.000^0^^~8~^^^^^^^^^^^~07/01/2015~ -~01306~^~606~^6.598^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~01306~^~607~^0.090^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~608~^0.051^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~609~^0.030^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~610~^0.068^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~611~^0.075^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~612~^0.286^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~613~^3.315^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~614~^1.612^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~615~^0.244^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~617~^1.031^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~618~^0.423^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~619~^0.010^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~624~^0.516^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~626~^0.006^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~628~^0.020^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~630~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~645~^1.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~646~^0.434^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~01306~^~652~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~653~^0.018^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~654~^0.292^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01306~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~01307~^~501~^0.119^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~502~^0.356^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~503~^0.432^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~504~^0.797^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~505~^0.686^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~506~^0.220^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~507~^0.051^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~508~^0.398^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~509~^0.398^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~510~^0.525^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~511~^0.288^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~512~^0.229^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~513~^0.271^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~514~^0.636^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~515~^1.712^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~516~^0.153^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~517~^0.814^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~518~^0.441^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01307~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~606~^1.030^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~645~^0.380^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01307~^~646~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~501~^0.122^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~502~^0.367^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~503~^0.445^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~504~^0.821^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~505~^0.707^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~506~^0.227^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~507~^0.052^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~508~^0.410^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~509~^0.410^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~510~^0.541^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~511~^0.297^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~512~^0.236^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~513~^0.279^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~514~^0.655^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~515~^1.763^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~516~^0.157^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~517~^0.838^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~518~^0.454^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01308~^~605~^0.170^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~606~^2.460^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~645~^0.870^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01308~^~646~^0.120^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~501~^0.128^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~502~^0.384^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~503~^0.466^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~504~^0.858^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~505~^0.740^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~506~^0.237^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~507~^0.055^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~508~^0.429^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~509~^0.429^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~510~^0.566^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~511~^0.310^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~512~^0.247^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~513~^0.292^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~514~^0.685^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~515~^1.845^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~516~^0.164^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~517~^0.877^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~518~^0.475^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01312~^~605~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~606~^0.090^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01312~^~645~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01312~^~646~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~501~^0.115^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~502~^0.345^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~503~^0.419^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~504~^0.773^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~505~^0.666^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~506~^0.214^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~508~^0.386^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~509~^0.386^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~510~^0.510^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~511~^0.279^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~512~^0.222^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~513~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~514~^0.617^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~515~^1.661^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~516~^0.148^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~517~^0.789^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~518~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01313~^~605~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~606~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01313~^~645~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01313~^~646~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01314~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~502~^0.424^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~503~^0.515^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~504~^0.949^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~505~^0.818^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~506~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~507~^0.061^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~508~^0.475^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~509~^0.475^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~510~^0.626^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~511~^0.343^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~512~^0.273^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~513~^0.323^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~514~^0.758^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~515~^2.040^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~516~^0.182^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~517~^0.970^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~518~^0.525^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01314~^~605~^0.009^2^^~1~^~A~^^^1^0.007^0.010^1^^^~1~^~08/01/2016~ -~01314~^~606~^0.145^2^^~1~^~A~^^^1^0.120^0.170^1^^^^~08/01/2016~ -~01314~^~645~^0.053^2^^~1~^~A~^^^1^0.037^0.070^1^^^~1~^~08/01/2016~ -~01314~^~646~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2016~ -~01316~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~502~^0.340^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~503~^0.413^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~504~^0.762^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~505~^0.656^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~506~^0.211^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~508~^0.381^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~509~^0.381^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~510~^0.502^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~511~^0.276^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~512~^0.219^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~513~^0.259^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~514~^0.608^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~515~^1.637^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~516~^0.146^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~517~^0.778^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~518~^0.421^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01316~^~605~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01316~^~606~^0.130^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~645~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~01316~^~646~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~01319~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~502~^0.331^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~503~^0.402^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~504~^0.741^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~505~^0.639^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~506~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~507~^0.047^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~508~^0.371^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~509~^0.371^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~510~^0.489^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~511~^0.268^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~512~^0.213^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~513~^0.252^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~514~^0.592^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~515~^1.593^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~516~^0.142^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~517~^0.757^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~518~^0.410^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~605~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01319~^~606~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~645~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01319~^~646~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~501~^0.107^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~502~^0.322^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~503~^0.391^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~504~^0.720^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~505~^0.620^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~506~^0.199^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~507~^0.046^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~508~^0.360^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~509~^0.360^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~510~^0.475^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~511~^0.260^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~512~^0.207^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~513~^0.245^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~514~^0.574^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~515~^1.547^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~516~^0.138^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~517~^0.735^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~518~^0.398^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01320~^~605~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~606~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~645~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01320~^~646~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~312~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~404~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~405~^0.280^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~406~^0.213^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~415~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~ -~01321~^~501~^0.108^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~502~^0.324^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~503~^0.393^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~504~^0.725^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~505~^0.625^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~506~^0.201^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~507~^0.046^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~508~^0.362^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~509~^0.362^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~510~^0.478^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~511~^0.262^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~512~^0.208^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~513~^0.247^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~514~^0.578^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~515~^1.558^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~516~^0.139^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~517~^0.740^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~518~^0.401^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~605~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~606~^0.150^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01321~^~607~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~608~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~609~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~610~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~612~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~613~^0.058^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~614~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~617~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~618~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2016~ -~01321~^~645~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01321~^~646~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01322~^~501~^0.112^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~502~^0.335^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~503~^0.407^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~504~^0.751^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~505~^0.647^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~506~^0.208^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~507~^0.048^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~508~^0.375^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~509~^0.375^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~510~^0.495^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~511~^0.272^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~512~^0.216^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~513~^0.256^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~514~^0.599^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~515~^1.613^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~516~^0.144^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~517~^0.767^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~518~^0.415^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~605~^0.010^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~606~^0.190^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~645~^0.060^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~01322~^~646~^0.123^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~01323~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~606~^60.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~01323~^~646~^4.000^0^^~4~^~T~^^^^^^^^^^~12/01/2016~ -~02001~^~312~^0.553^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~315~^2.943^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~404~^0.101^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~405~^0.063^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~406~^2.860^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~415~^0.210^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02001~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02001~^~606~^2.550^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~612~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~613~^0.490^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~614~^1.990^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~617~^0.660^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~618~^2.290^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~619~^0.070^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02001~^~645~^0.660^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02001~^~646~^2.360^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~312~^0.910^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~315~^2.300^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~404~^0.340^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~405~^0.290^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~406~^3.060^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~410~^0.797^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02002~^~415~^0.650^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02002~^~606~^0.586^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02002~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~613~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~617~^9.780^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~618~^3.150^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02002~^~645~^9.780^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02002~^~646~^3.150^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02003~^~312~^2.100^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~315~^9.800^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~405~^1.200^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~406~^4.900^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~410~^0.838^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~415~^1.340^3^0.980^~1~^~A~^^^2^0.360^2.320^1^-11.112^13.792^~2~^~06/01/2010~ -~02003~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~502~^0.760^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~503~^1.060^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~504~^1.850^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~505~^1.150^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~506~^0.320^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~507~^0.190^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~508~^1.250^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~509~^0.750^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~510~^1.450^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~511~^1.230^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~512~^0.450^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~513~^1.180^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~514~^3.020^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~515~^2.570^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~516~^1.250^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~517~^2.700^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~518~^0.530^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~606~^2.157^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~612~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~613~^1.036^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~614~^1.075^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~617~^1.067^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02003~^~618~^0.199^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~619~^0.300^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02003~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~626~^0.171^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2010~ -~02003~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2010~ -~02003~^~645~^1.238^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~646~^0.498^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~674~^1.067^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02003~^~685~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02003~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02003~^~851~^0.296^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02004~^~312~^0.416^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02004~^~315~^8.167^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~404~^0.009^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~405~^0.421^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~406~^2.005^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~415~^1.740^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02004~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02004~^~606~^2.280^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~609~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~610~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~611~^0.530^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~612~^0.210^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~613~^1.270^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~614~^0.160^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~617~^1.500^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~618~^1.240^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~619~^1.050^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~626~^0.140^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~02004~^~645~^1.640^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02004~^~646~^2.290^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~312~^0.910^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~315~^1.300^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~404~^0.383^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~405~^0.379^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~406~^3.606^4^1.486^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~415~^0.360^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02005~^~501~^0.244^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~502~^0.756^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~503~^0.826^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~504~^1.218^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~505~^1.031^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~506~^0.361^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~507~^0.329^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~508~^0.867^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~509~^0.642^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~510~^1.037^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~511~^1.252^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~512~^0.550^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~513~^0.914^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~514~^2.084^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~515~^3.169^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~516~^1.322^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~517~^0.917^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~518~^0.946^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~606~^0.620^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~610~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~611~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~612~^0.040^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~613~^0.400^3^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~614~^0.110^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~617~^7.035^3^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~618~^3.122^3^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~619~^0.150^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~626~^0.090^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02005~^~645~^7.125^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02005~^~646~^3.272^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~312~^0.383^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~315~^28.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~404~^0.198^2^^~1~^^^^^^^^^^^~07/01/2002~ -~02006~^~405~^0.182^5^0.019^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~406~^1.102^5^0.318^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~415~^0.230^2^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~02006~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02006~^~606~^0.680^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~610~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~611~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~612~^0.030^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~613~^0.570^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~614~^0.060^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~617~^0.850^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~618~^0.310^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~619~^0.120^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~626~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~645~^0.870^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02006~^~646~^0.430^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~312~^1.370^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~315~^7.567^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~404~^0.340^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02007~^~405~^0.290^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02007~^~406~^3.060^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02007~^~415~^0.890^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02007~^~606~^2.190^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~610~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~611~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~612~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~613~^1.290^8^0.343^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~614~^0.390^5^0.080^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~617~^15.450^8^0.806^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~618~^3.520^8^0.389^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~619~^0.200^4^0.040^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~626~^0.240^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~628~^0.240^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02007~^~645~^15.930^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02007~^~646~^3.720^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~312~^0.440^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~315~^2.100^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02008~^~404~^0.380^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02008~^~405~^0.680^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02008~^~406~^5.400^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02008~^~415~^0.930^2^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~02008~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02008~^~606~^0.169^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~613~^0.169^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~617~^1.399^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~618~^1.800^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~645~^1.399^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02008~^~646~^1.800^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02009~^~312~^1.000^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~315~^1.700^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~404~^0.250^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~405~^0.940^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~406~^11.600^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~410~^0.888^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~415~^2.094^3^1.576^~1~^~A~^^^2^0.518^3.670^1^-17.931^22.119^~2~^~06/01/2010~ -~02009~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~502~^0.270^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~503~^0.390^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~504~^0.630^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~505~^0.360^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~506~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~508~^0.370^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~509~^0.190^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~510~^0.540^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~511~^0.490^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~512~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~513~^0.450^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~514~^1.690^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~515~^1.590^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~516~^0.600^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~517~^1.250^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~518~^0.230^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~606~^2.462^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~608~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~610~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~611~^0.081^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~612~^0.189^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~613~^1.619^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~614~^0.396^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~615~^0.055^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~617~^3.116^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02009~^~618~^7.473^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~619~^0.533^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02009~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~624~^0.055^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~626~^0.082^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02009~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02009~^~645~^3.211^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~646~^8.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~653~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~674~^3.116^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~685~^0.014^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02009~^~696~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02009~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02009~^~851~^0.519^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02010~^~312~^0.339^5^0.021^~1~^~A~^^^3^0.271^0.384^2^0.249^0.429^~2~^~02/01/2007~ -~02010~^~315~^17.466^5^0.659^~1~^~A~^^^3^16.000^18.700^2^14.632^20.300^~2~^~02/01/2007~ -~02010~^~404~^0.022^5^0.005^~1~^~A~^^^3^0.016^0.031^2^0.001^0.042^~2~^~02/01/2007~ -~02010~^~405~^0.041^5^0.016^~1~^~A~^^^3^0.015^0.088^2^-0.029^0.111^~1, 2~^~05/01/2007~ -~02010~^~406~^1.332^5^0.250^~1~^~A~^^^3^0.877^1.780^2^0.256^2.409^~2~^~02/01/2007~ -~02010~^~410~^0.358^5^0.164^~1~^~A~^^^3^0.111^0.726^2^-0.346^1.062^~2~^~02/01/2007~ -~02010~^~415~^0.158^9^0.063^~1~^~A~^^^4^0.017^0.330^3^-0.041^0.358^~2~^~02/01/2007~ -~02010~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~502~^0.136^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~503~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~504~^0.253^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~505~^0.243^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~506~^0.078^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~507~^0.058^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~508~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~509~^0.136^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~510~^0.224^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~511~^0.166^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~512~^0.117^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~513~^0.166^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~514~^0.438^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~515~^0.370^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~516~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~517~^0.419^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~518~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~02010~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~606~^0.345^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~613~^0.104^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~614~^0.082^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~617~^0.246^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~02010~^~618~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~02010~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~626~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~02010~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~02010~^~645~^0.246^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~646~^0.068^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~653~^0.136^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~674~^0.246^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02010~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~02010~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~02010~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~02011~^~312~^0.368^2^^~1~^~A~^^^2^0.216^0.520^1^^^^~04/01/2011~ -~02011~^~315~^60.127^2^^~1~^~A~^^^2^52.954^67.300^1^^^^~04/01/2011~ -~02011~^~404~^0.158^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~406~^1.560^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~410~^0.509^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~415~^0.391^3^0.199^~1~^~A~^^^2^0.192^0.590^1^-2.138^2.920^~2~^~04/01/2011~ -~02011~^~501~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~502~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~503~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~504~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~505~^0.370^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~506~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~507~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~508~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~509~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~510~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~511~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~512~^0.130^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~514~^0.600^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~515~^0.560^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~516~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~517~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~518~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~605~^0.254^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~606~^3.952^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~ -~02011~^~608~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~609~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~610~^0.131^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~611~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~612~^0.263^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~613~^1.858^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~614~^0.683^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~615~^0.193^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~617~^0.990^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~02011~^~618~^2.657^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~02011~^~619~^0.585^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~02011~^~620~^0.104^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2013~ -~02011~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~624~^0.175^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~626~^0.026^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~02011~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02011~^~628~^0.359^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~629~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~630~^0.018^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~ -~02011~^~631~^0.184^0^^~4~^^^^^^^^^^^~07/01/2013~ -~02011~^~645~^1.393^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~646~^3.606^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~02011~^~652~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~653~^0.044^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~654~^0.491^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~663~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~665~^0.042^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~670~^0.058^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~02011~^~672~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~673~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~674~^0.780^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~675~^2.557^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~676~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~02011~^~689~^0.008^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~02011~^~693~^0.210^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~02011~^~851~^0.585^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~853~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02011~^~858~^0.058^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~02012~^~312~^1.786^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~315~^6.355^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02012~^~404~^1.252^5^0.209^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~405~^1.500^6^0.484^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~406~^10.707^6^1.896^~1~^^^^^^^^^^^~02/01/1995~ -~02012~^~415~^0.610^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02012~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02012~^~606~^0.115^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~613~^0.096^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~614~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~617~^2.216^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~618~^0.328^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~626~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~645~^2.232^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02012~^~646~^0.328^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02013~^~312~^0.975^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~315~^1.900^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~404~^0.239^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~405~^0.290^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~406~^2.130^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~606~^0.990^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~612~^0.020^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~613~^0.810^3^0.310^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~614~^0.110^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~617~^13.480^3^1.818^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~618~^1.750^3^0.447^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~626~^0.100^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~645~^13.580^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02013~^~646~^1.750^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~312~^0.867^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~315~^3.333^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~404~^0.628^3^0.053^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~405~^0.327^6^0.035^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~406~^4.579^3^2.011^~1~^^^^^^^^^^^~01/01/1977~ -~02014~^~415~^0.435^4^0.035^~1~^~A~^^^1^0.400^0.470^1^-0.010^0.880^~4~^~12/01/2001~ -~02014~^~606~^1.535^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~610~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~611~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~612~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~613~^1.137^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~614~^0.344^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~617~^13.618^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~618~^3.103^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~619~^0.176^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~626~^0.212^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~628~^0.212^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02014~^~645~^14.040^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02014~^~646~^3.279^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02015~^~312~^1.200^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~315~^8.300^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~404~^0.176^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~406~^3.260^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~410~^1.070^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~415~^0.105^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~502~^0.350^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~503~^0.630^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~504~^0.890^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~505~^0.700^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~508~^0.580^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~509~^0.400^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~510~^0.750^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~511~^0.890^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~512~^0.290^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~513~^0.550^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~514~^1.790^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~515~^2.270^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~516~^0.790^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~517~^1.240^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~518~^0.390^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02015~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~606~^1.648^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~607~^0.012^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~608~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~609~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~610~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~612~^0.637^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~613~^0.681^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~614~^0.174^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~617~^8.742^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02015~^~618~^2.788^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~619~^0.268^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02015~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~626~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02015~^~628~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~630~^0.014^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02015~^~645~^8.782^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~646~^3.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~674~^8.742^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~685~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02015~^~696~^0.079^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02015~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02015~^~851~^0.255^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02016~^~312~^0.780^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~315~^1.833^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~404~^0.418^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~405~^0.284^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~406~^2.807^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~415~^0.250^2^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~02016~^~502~^0.575^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~503~^0.767^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~504~^0.925^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~505~^1.038^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~506~^0.143^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~508~^0.670^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~510~^1.120^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~511~^1.263^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~512~^0.320^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~606~^0.730^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~611~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~612~^0.010^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~613~^0.580^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~614~^0.100^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~617~^9.360^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~618~^0.960^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~619~^0.150^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~626~^0.050^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02016~^~645~^9.410^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02016~^~646~^1.010^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~312~^0.490^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~315~^3.950^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~404~^0.418^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~405~^0.284^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~406~^2.807^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02017~^~415~^1.710^2^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~02017~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02017~^~606~^0.234^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02018~^~312~^1.067^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~315~^6.533^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~404~^0.408^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~405~^0.353^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~406~^6.050^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~415~^0.470^2^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~02018~^~501~^0.253^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~502~^0.602^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~503~^0.695^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~504~^0.996^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~505~^0.758^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~506~^0.301^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~507~^0.222^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~508~^0.647^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~509~^0.410^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~510~^0.915^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~511~^0.680^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~512~^0.331^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~513~^0.789^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~514~^1.833^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~515~^2.956^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~516~^1.107^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~517~^0.900^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~518~^0.900^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~606~^0.480^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~613~^0.480^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~617~^9.910^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~618~^1.690^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~645~^9.910^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02018~^~646~^1.690^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~312~^1.110^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~315~^1.228^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~404~^0.322^8^0.028^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~405~^0.366^12^0.021^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~406~^1.640^21^0.141^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~415~^0.600^2^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~02019~^~501~^0.391^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~502~^0.898^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~503~^1.241^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~504~^1.757^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~505~^1.684^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~506~^0.338^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~507~^0.369^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~508~^1.089^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~509~^0.764^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~510~^1.102^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~511~^2.465^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~512~^0.668^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~513~^1.020^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~514~^2.708^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~515~^3.988^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~516~^1.306^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~517~^1.198^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~518~^1.215^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02019~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02019~^~606~^1.460^0^^~4~^^^^^^^^^^^~11/01/1994~ -~02020~^~312~^0.533^3^0.073^~1~^~A~^^^2^0.381^0.620^1^-0.390^1.456^~2, 3~^~11/01/2008~ -~02020~^~315~^0.979^3^0.075^~1~^~A~^^^2^0.806^1.100^1^0.030^1.927^~2, 3~^~11/01/2008~ -~02020~^~404~^0.435^3^0.055^~1~^~A~^^^2^0.259^0.621^1^-0.264^1.133^~2, 3~^~11/01/2008~ -~02020~^~405~^0.141^3^0.005^~1~^~A~^^^2^0.090^0.175^1^0.074^0.209^~2, 3~^~11/01/2008~ -~02020~^~406~^0.796^3^0.043^~1~^~A~^^^2^0.693^0.872^1^0.245^1.347^~2, 3~^~11/01/2008~ -~02020~^~410~^0.743^3^0.002^~1~^~A~^^^2^0.585^0.825^1^0.713^0.772^~2, 3~^~11/01/2008~ -~02020~^~415~^1.654^5^0.753^~1~^~A~^^^3^0.333^2.940^2^-1.585^4.893^~2~^~11/01/2008~ -~02020~^~501~^0.121^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~502~^0.374^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~503~^0.414^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~504~^0.728^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~505~^0.768^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~506~^0.111^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~507~^0.253^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~508~^0.525^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~509~^0.445^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~510~^0.667^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~511~^3.365^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~512~^0.263^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~513~^0.485^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~514~^1.890^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~515~^3.658^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~516~^0.525^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~517~^1.354^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~518~^0.505^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~606~^0.249^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~612~^0.015^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~613~^0.101^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~614~^0.105^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~617~^0.106^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~02020~^~618~^0.143^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~02020~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~624~^0.028^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/2008~ -~02020~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/2008~ -~02020~^~645~^0.115^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~646~^0.178^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~671~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~672~^0.022^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~674~^0.106^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02020~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02020~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02020~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02021~^~312~^0.480^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~315~^33.300^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~404~^0.046^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02021~^~405~^0.170^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~406~^9.620^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~410~^0.477^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~415~^0.626^3^0.215^~1~^~A~^^^2^0.411^0.840^1^-2.100^3.351^~2~^~06/01/2010~ -~02021~^~501~^0.152^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~502~^0.289^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~503~^0.341^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~504~^0.513^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~505~^0.241^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~506~^0.089^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~507~^0.099^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~508~^0.311^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~509~^0.243^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~510~^0.411^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~511~^0.708^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~512~^0.199^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~513~^0.272^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~514~^1.387^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~515~^0.790^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~516~^0.497^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~517~^0.334^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~518~^0.250^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~606~^2.599^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~608~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~610~^1.560^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~611~^0.068^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~612~^0.044^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~613~^0.574^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~614~^0.227^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~617~^0.357^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02021~^~618~^0.706^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~619~^0.223^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~02021~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~625~^0.032^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~626~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2010~ -~02021~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~630~^0.037^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2010~ -~02021~^~645~^0.479^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~646~^0.929^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~674~^0.357^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~687~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02021~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~02021~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~02021~^~851~^0.223^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~02022~^~312~^2.467^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~315~^1.500^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~404~^0.312^2^^~1~^^^^^^^^^^^~07/01/2002~ -~02022~^~405~^0.448^5^0.061^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~406~^1.350^5^0.183^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~415~^0.160^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02022~^~606~^9.510^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~612~^0.930^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~613~^7.690^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~614~^0.430^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~617~^10.590^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~618~^4.310^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~619~^0.080^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~626~^0.580^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02022~^~645~^11.170^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02022~^~646~^4.390^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~312~^1.133^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~315~^5.433^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~404~^0.289^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~405~^0.316^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~406~^4.120^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02023~^~415~^1.190^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02023~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02023~^~606~^0.529^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~613~^0.294^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~614~^0.235^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~617~^0.940^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~618~^1.175^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~619~^3.230^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~645~^0.940^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02023~^~646~^4.405^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02024~^~312~^0.645^4^0.129^~11~^~JO~^^^3^0.456^0.900^2^0.091^1.199^~2~^~11/01/2008~ -~02024~^~315~^2.448^4^0.378^~11~^~JO~^^^3^2.000^3.200^2^0.821^4.075^~2~^~11/01/2008~ -~02024~^~404~^0.805^4^0.278^~11~^~JO~^^^3^0.451^1.360^2^-0.389^2.000^~2~^~11/01/2008~ -~02024~^~405~^0.261^4^0.076^~11~^~JO~^^^3^0.180^0.415^2^-0.065^0.586^~2~^~11/01/2008~ -~02024~^~406~^4.733^3^0.813^~1~^~A~^^^2^1.360^7.640^1^-5.601^15.068^~2, 3~^~11/01/2008~ -~02024~^~410~^0.810^3^0.007^~1~^~A~^^^2^0.608^0.921^1^0.725^0.895^~2, 3~^~11/01/2008~ -~02024~^~415~^0.397^5^0.125^~1~^~A~^^^3^0.166^0.596^2^-0.140^0.934^~2~^~11/01/2008~ -~02024~^~501~^0.256^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~502~^0.838^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~503~^1.183^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~504~^2.080^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~505~^1.844^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~506~^0.483^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~507~^0.680^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~508~^1.173^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~509~^0.809^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~510~^1.509^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~511~^1.933^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~512~^0.878^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~513~^1.173^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~514~^2.435^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~515~^5.265^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~516~^1.587^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~517~^2.810^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~518~^0.759^0^^~11~^~JO~^^^^^^^^^^~11/01/2008~ -~02024~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~606~^1.989^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~613~^0.977^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~614~^0.458^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~615~^0.275^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~617~^8.463^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~618~^5.921^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~619~^3.792^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/2008~ -~02024~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~624~^0.175^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~626~^0.062^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/2008~ -~02024~^~628~^3.994^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~630~^9.355^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/2008~ -~02024~^~645~^22.518^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~646~^10.088^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~654~^0.105^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~671~^0.644^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~672~^0.250^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~02024~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~02024~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02024~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~02025~^~312~^1.027^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~315~^2.900^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~404~^0.346^2^^~1~^^^^^^^^^^^~07/01/2002~ -~02025~^~405~^0.057^5^0.049^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~406~^1.299^5^0.143^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~415~^0.160^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02025~^~606~^25.940^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~611~^0.370^3^0.210^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~612~^22.830^3^1.861^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~613~^2.260^3^1.640^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~614~^0.170^3^0.140^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~617~^1.590^3^0.528^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~618~^0.350^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~626~^1.400^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02025~^~645~^3.220^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02025~^~646~^0.350^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02026~^~312~^0.590^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~315~^1.300^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~404~^0.457^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~406~^0.321^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~410~^0.732^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~415~^0.718^5^0.497^~1~^~A~^^^2^0.221^1.340^1^-5.597^7.033^~2~^~03/01/2009~ -~02026~^~501~^0.060^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~502~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~503~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~504~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~505~^0.490^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~506~^0.090^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~507~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~508~^0.280^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~509~^0.130^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~510~^0.170^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~511~^1.950^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~512~^0.160^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~513~^0.180^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~514~^0.660^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~515~^2.090^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~516~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~517~^0.690^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~518~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02026~^~606~^0.219^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~613~^0.109^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~615~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~617~^0.202^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~02026~^~618~^0.254^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~02026~^~620~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~624~^0.052^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~02026~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~02026~^~645~^0.202^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~646~^0.310^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~02026~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~674~^0.202^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02026~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~02026~^~851~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~02027~^~312~^0.633^3^0.031^~1~^~A~^^^2^0.543^0.720^1^0.235^1.032^~2, 3~^~06/01/2009~ -~02027~^~315~^4.990^3^0.117^~1~^~A~^^^2^4.110^6.400^1^3.508^6.472^~2, 3~^~06/01/2009~ -~02027~^~404~^0.177^3^0.003^~1~^~A~^^^2^0.102^0.318^1^0.138^0.216^~2, 3~^~06/01/2009~ -~02027~^~405~^0.528^3^0.000^~1~^~A~^^^2^0.482^0.620^^^^~2, 3~^~06/01/2009~ -~02027~^~406~^4.640^3^0.403^~1~^~A~^^^2^3.970^5.580^1^-0.485^9.765^~2, 3~^~06/01/2009~ -~02027~^~410~^0.921^3^0.043^~1~^~A~^^^2^0.452^1.220^1^0.370^1.471^~2, 3~^~06/01/2009~ -~02027~^~415~^1.044^5^0.655^~1~^~A~^^^3^0.147^2.320^2^-1.776^3.864^~2~^~06/01/2009~ -~02027~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~502~^0.322^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~503~^0.441^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~504~^0.780^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~505~^0.500^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~506~^0.127^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~508~^0.449^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~509~^0.297^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~510~^0.585^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~511~^0.449^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~512~^0.144^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~513~^0.500^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~514~^1.009^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~515~^0.975^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~516~^0.517^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~517~^1.712^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~518~^0.314^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~606~^1.551^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~610~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~611~^0.246^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~612~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~613~^0.792^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~614~^0.505^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~617~^0.712^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~02027~^~618~^0.748^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~619~^0.621^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~02027~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~626~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2009~ -~02027~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2009~ -~02027~^~645~^0.716^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~646~^1.369^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~674~^0.712^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02027~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02027~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02027~^~851~^0.621^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02028~^~312~^0.713^4^0.167^~1~^~A~^^^3^0.420^1.000^2^-0.008^1.433^~2~^~04/01/2010~ -~02028~^~315~^1.590^4^0.268^~1~^~A~^^^3^1.190^2.100^2^0.435^2.745^~2~^~04/01/2010~ -~02028~^~404~^0.330^3^0.046^~1~^~A~^^^2^0.242^0.379^1^-0.250^0.911^~2, 3~^~04/01/2010~ -~02028~^~405~^1.230^3^0.017^~1~^~A~^^^2^1.200^1.270^1^1.019^1.441^~2, 3~^~04/01/2010~ -~02028~^~406~^10.060^3^0.073^~1~^~A~^^^2^9.980^10.200^1^9.128^10.992^~2, 3~^~04/01/2010~ -~02028~^~410~^2.510^3^0.173^~1~^~A~^^^2^1.270^3.390^1^0.307^4.713^~2, 3~^~04/01/2010~ -~02028~^~415~^2.141^5^0.993^~1~^~A~^^^3^0.647^4.020^2^-2.130^6.412^~2~^~04/01/2010~ -~02028~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~502~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~503~^0.570^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~504~^0.920^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~505~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~506~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~508~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~509~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~510~^0.750^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~511~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~512~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~513~^0.640^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~514~^2.850^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~515~^2.260^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~516~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~517~^2.310^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~518~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02028~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2012~ -~02028~^~606~^2.140^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~611~^0.068^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~612~^0.172^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~613~^1.468^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~614~^0.337^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~615~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~617~^1.603^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~02028~^~618~^7.314^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~619~^0.453^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~02028~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~624~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~626~^0.069^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2010~ -~02028~^~628~^0.023^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02028~^~645~^1.695^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~646~^7.766^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~02028~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~674~^1.603^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02028~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2012~ -~02028~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~02028~^~851~^0.453^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~02029~^~312~^0.780^2^^~1~^~A~^^^1^0.750^0.810^1^^^^~06/01/2009~ -~02029~^~315~^9.810^3^0.723^~1~^~A~^^^2^8.730^10.900^1^0.619^19.001^~2, 3~^~06/01/2009~ -~02029~^~404~^0.196^2^^~1~^~A~^^^1^0.176^0.216^1^^^^~06/01/2009~ -~02029~^~405~^2.383^3^0.043^~1~^~A~^^^2^1.600^2.840^1^1.833^2.933^~2, 3~^~06/01/2009~ -~02029~^~406~^9.943^3^0.357^~1~^~A~^^^2^9.230^10.300^1^5.411^14.476^~2, 3~^~06/01/2009~ -~02029~^~410~^1.062^3^0.040^~1~^~A~^^^2^0.745^1.280^1^0.553^1.570^~2, 3~^~06/01/2009~ -~02029~^~415~^0.900^5^0.219^~1~^~A~^^^3^0.465^1.160^2^-0.040^1.840^~2~^~06/01/2009~ -~02029~^~501~^0.475^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~502~^1.193^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~503~^1.546^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~504~^2.794^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~505~^2.098^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~506~^0.596^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~507~^0.298^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~508~^1.712^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~509~^1.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~510~^2.021^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~511~^1.756^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~512~^0.718^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~513~^1.778^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~514~^3.169^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~515~^3.688^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~516~^1.756^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~517~^2.010^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~518~^1.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~02029~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~606~^1.378^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~02029~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~613~^1.223^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~614~^0.058^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~617~^0.761^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~02029~^~618~^1.248^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~02029~^~619~^1.876^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~02029~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~624~^0.028^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~645~^0.761^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~02029~^~646~^3.124^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~02029~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~654~^0.063^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~674~^0.761^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~675~^1.248^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~685~^0.016^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~02029~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~02029~^~851~^1.860^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~02029~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02029~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~ -~02030~^~312~^1.330^6^0.263^~1~^~A~^^^3^0.790^1.850^2^0.198^2.462^~2~^~04/01/2010~ -~02030~^~315~^12.753^6^0.850^~1~^~A~^^^3^3.870^18.600^2^9.096^16.411^~2~^~04/01/2010~ -~02030~^~404~^0.108^6^0.027^~1~^~A~^^^3^0.034^0.158^2^-0.010^0.227^~2~^~04/01/2010~ -~02030~^~405~^0.180^4^0.033^~1~^~A~^^^2^0.120^0.240^1^-0.039^0.399^~2, 3~^~04/01/2010~ -~02030~^~406~^1.143^5^0.175^~1~^~A~^^^3^0.589^1.610^2^0.392^1.894^~2~^~04/01/2010~ -~02030~^~410~^1.399^5^0.053^~1~^~A~^^^3^0.845^1.840^2^1.078^1.720^~2, 3~^~04/01/2010~ -~02030~^~415~^0.291^8^0.049^~1~^~A~^^^4^0.114^0.450^3^0.134^0.448^~2~^~04/01/2010~ -~02030~^~501~^0.058^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~502~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~503~^0.366^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~504~^1.014^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~505~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~506~^0.096^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~507~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~508~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~509~^0.483^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~510~^0.547^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~511~^0.308^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~512~^0.159^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~513~^0.616^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~514~^1.413^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~515~^1.413^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~516~^0.441^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~517~^1.413^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~518~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~02030~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~606~^1.392^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~608~^0.012^2^^~1~^~A~^^^1^0.000^0.029^1^^^~1~^~04/01/2010~ -~02030~^~609~^0.102^2^^~1~^~A~^^^1^0.000^0.249^1^^^~1~^~04/01/2010~ -~02030~^~610~^0.036^2^^~1~^~A~^^^1^0.000^0.089^1^^^~1~^~04/01/2010~ -~02030~^~611~^0.093^2^^~1~^~A~^^^1^0.109^0.118^1^^^^~04/01/2010~ -~02030~^~612~^0.030^2^^~1~^~A~^^^1^0.004^0.069^1^^^~1~^~04/01/2010~ -~02030~^~613~^0.533^2^^~1~^~A~^^^1^0.571^0.736^1^^^^~04/01/2010~ -~02030~^~614~^0.327^2^^~1~^~A~^^^1^0.348^0.454^1^^^^~04/01/2010~ -~02030~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~617~^0.647^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02030~^~618~^0.694^2^^~1~^~A~^^^1^0.670^1.029^1^^^^~04/01/2010~ -~02030~^~619~^0.152^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~02030~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~625~^0.016^2^^~1~^~A~^^^1^0.000^0.038^1^^^~1~^~04/01/2010~ -~02030~^~626~^0.077^2^^~1~^~A~^^^1^0.081^0.107^1^^^^~04/01/2010~ -~02030~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2010~ -~02030~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2010~ -~02030~^~645~^0.739^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~646~^0.998^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~674~^0.647^2^^~1~^~A~^^^1^0.733^0.854^1^^^^~04/01/2010~ -~02030~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~689~^0.152^2^^~1~^~A~^^^1^0.066^0.307^1^^^^~04/01/2010~ -~02030~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~02030~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~02030~^~851~^0.152^2^^~1~^~A~^^^1^0.132^0.241^1^^^^~04/01/2010~ -~02031~^~312~^0.373^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~315~^2.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~404~^0.328^34^0.033^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~405~^0.919^34^0.093^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~406~^8.701^29^0.735^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~415~^2.450^2^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~02031~^~606~^3.260^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~610~^0.030^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~611~^0.030^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~612~^0.090^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~613~^2.360^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~614~^0.490^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~617~^2.510^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~618~^7.710^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~619~^0.660^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~626~^0.240^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02031~^~645~^2.750^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02031~^~646~^8.370^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~312~^0.910^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02032~^~315~^4.300^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~404~^0.022^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~405~^0.126^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~406~^0.212^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02032~^~415~^0.100^2^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~02032~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02032~^~606~^0.626^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02032~^~645~^0.789^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02032~^~646~^0.616^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02033~^~312~^1.627^10^0.114^~1~^~A~^^^4^0.960^2.730^3^1.264^1.989^~2~^~06/01/2008~ -~02033~^~315~^6.707^10^0.320^~1~^~A~^^^4^5.868^7.800^3^5.689^7.725^~2~^~06/01/2008~ -~02033~^~404~^0.854^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~406~^0.896^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~410~^0.324^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~02033~^~415~^0.247^3^0.123^~1~^~A~^^^2^0.124^0.370^1^-1.316^1.810^~2~^~06/01/2008~ -~02033~^~501~^0.184^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~502~^0.686^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~503~^0.819^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~504~^1.321^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~505~^0.952^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~506~^0.502^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~507~^0.297^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~508~^0.758^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~509~^0.727^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~510~^1.095^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~511~^1.945^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~512~^0.471^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~513~^0.839^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~514~^2.365^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~515~^4.299^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~516~^0.952^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~517~^2.754^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~518~^0.952^0^^~11~^~JO~^^^^^^^^^^~06/01/2008~ -~02033~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~606~^4.517^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~608~^0.037^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~612~^0.077^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~613~^3.581^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~614~^0.782^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~615~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~617~^5.864^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~02033~^~618~^28.295^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~619~^0.273^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~ -~02033~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~626~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2008~ -~02033~^~628~^0.078^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2008~ -~02033~^~645~^5.982^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~646~^28.569^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~674~^5.864^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02033~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~02033~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~02033~^~851~^0.273^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~02034~^~312~^0.843^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~315~^6.857^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~404~^0.264^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~405~^0.191^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~406~^2.970^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02034~^~415~^1.320^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02034~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02034~^~606~^3.290^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~609~^0.128^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~610~^0.135^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~611~^0.125^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~612~^1.221^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~613~^1.281^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~614~^0.360^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~617~^1.113^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~618~^0.992^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~619~^0.944^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~626~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~645~^1.206^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02034~^~646~^1.936^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~312~^0.484^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~315~^15.844^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~404~^0.131^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~405~^0.137^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~406~^2.243^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02035~^~415~^0.400^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02035~^~606~^6.530^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02035~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~609~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~610~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~611~^0.152^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~612~^4.635^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~613~^0.871^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~614~^0.738^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~617~^0.764^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~618~^0.715^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~619~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~626~^0.292^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~645~^1.102^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02035~^~646~^0.780^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02036~^~312~^0.550^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~315~^1.867^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~404~^0.514^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~405~^0.428^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1998~ -~02036~^~406~^1.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02036~^~415~^1.740^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02036~^~606~^7.371^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~610~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~611~^0.037^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~612~^0.315^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~613~^4.991^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~614~^0.600^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~615~^0.379^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~617~^2.660^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~618~^1.160^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~619~^1.076^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~624~^0.387^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~625~^0.059^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~626~^0.170^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~628~^0.125^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02036~^~645~^3.014^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~646~^2.339^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~652~^0.131^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~653~^0.094^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02036~^~654~^0.294^1^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~02037~^~312~^0.328^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~315~^28.408^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02037~^~404~^0.115^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~405~^0.267^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~406~^1.460^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02037~^~415~^1.010^2^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~02037~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02037~^~606~^1.586^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~612~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~613~^1.157^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~614~^0.247^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~617~^0.390^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~618~^0.754^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~619~^1.242^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~620~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~626~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~628~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~631~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~645~^0.429^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02037~^~646~^2.067^0^^~4~^^^^^^^^^^^~04/01/1985~ -~02038~^~312~^0.757^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~315~^3.133^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~404~^0.754^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~405~^0.336^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~406~^5.720^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~415~^2.690^2^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~02038~^~606~^7.030^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~609~^0.710^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~610~^0.760^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~611~^0.300^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~612~^0.720^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~613~^3.150^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~614~^1.250^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~617~^1.750^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~618~^0.530^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~619~^1.230^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~626~^0.120^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02038~^~645~^1.870^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02038~^~646~^1.760^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~312~^0.847^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~315~^6.100^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~404~^0.366^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~406~^4.080^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02039~^~415~^1.810^2^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~02039~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02039~^~606~^3.260^0^^~4~^^^^^^^^^^^~01/01/1994~ -~02041~^~312~^0.677^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~315~^7.967^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~404~^0.251^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~405~^1.339^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~406~^8.950^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02041~^~415~^2.410^2^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~02041~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02041~^~606~^1.881^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~610~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~611~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~612~^0.120^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~613~^1.202^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~614~^0.410^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~617~^0.361^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~618~^0.742^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~619~^2.955^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~626~^0.113^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~645~^0.474^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02041~^~646~^3.698^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02042~^~312~^0.860^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~315~^7.867^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~404~^0.513^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~405~^0.399^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~406~^4.940^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~415~^0.550^2^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~02042~^~501~^0.186^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~502~^0.252^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~503~^0.468^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~504~^0.430^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~505~^0.207^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~510~^0.502^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02042~^~606~^2.730^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~609~^0.240^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~610~^0.120^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~611~^0.230^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~612~^0.150^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~613~^1.720^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~614~^0.280^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~617~^0.470^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~618~^0.500^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~619~^0.690^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~02042~^~645~^0.470^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02042~^~646~^1.190^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02043~^~312~^1.300^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~315~^19.800^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~404~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~406~^1.350^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~410~^0.542^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~415~^0.107^3^0.073^~1~^~A~^^^2^0.034^0.180^1^-0.821^1.035^~2~^~06/01/2013~ -~02043~^~501~^0.170^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~502~^0.330^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~503~^0.470^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~504~^0.810^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~505~^0.380^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~506~^0.140^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~508~^0.530^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~509~^0.320^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~510~^0.660^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~511~^0.540^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~512~^0.150^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~513~^0.330^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~514~^1.860^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~515~^1.140^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~516~^0.470^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~517~^0.480^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~518~^0.280^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~02043~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2013~ -~02043~^~605~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~606~^1.838^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~609~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~610~^0.848^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~611~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~612~^0.394^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~613~^0.155^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~614~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~615~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~617~^0.131^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02043~^~618~^0.672^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~619~^0.084^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~02043~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~625~^0.154^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02043~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02043~^~645~^0.449^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~646~^0.756^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~653~^0.335^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~663~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~674~^0.075^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~685~^0.081^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~687~^0.164^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~02043~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~02043~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02043~^~851~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~02044~^~312~^0.385^3^0.095^~1~^~A~^^^2^0.203^0.480^1^-0.822^1.592^~2~^~12/01/2006~ -~02044~^~315~^1.148^3^0.298^~1~^~A~^^^2^0.850^1.580^1^-2.638^4.934^~2~^~12/01/2006~ -~02044~^~404~^0.034^3^0.007^~1~^~A~^^^2^0.008^0.045^1^-0.060^0.127^~2~^~12/01/2006~ -~02044~^~405~^0.076^3^0.003^~1~^~A~^^^2^0.047^0.099^1^0.032^0.121^~2~^~12/01/2006~ -~02044~^~406~^0.902^3^0.023^~1~^~A~^^^2^0.790^1.060^1^0.617^1.188^~2~^~12/01/2006~ -~02044~^~410~^0.209^3^0.029^~1~^~A~^^^2^0.180^0.287^1^-0.162^0.581^~2~^~12/01/2006~ -~02044~^~415~^0.155^3^0.026^~1~^~A~^^^2^0.129^0.181^1^-0.175^0.485^~2~^~12/01/2006~ -~02044~^~501~^0.039^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~502~^0.104^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~503~^0.104^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~504~^0.191^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~505~^0.110^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~506~^0.036^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~507~^0.028^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~508~^0.130^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~509~^0.077^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~510~^0.127^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~511~^0.117^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~512~^0.051^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~513~^0.132^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~514~^0.301^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~515~^0.277^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~516~^0.122^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~517~^0.104^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~518~^0.099^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02044~^~606~^0.041^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~613~^0.036^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~614~^0.005^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~617~^0.088^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~618~^0.073^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~619~^0.316^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/1998~ -~02044~^~645~^0.088^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02044~^~646~^0.389^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~312~^0.146^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~315~^1.264^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~404~^0.058^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~405~^0.296^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~406~^1.570^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~410~^0.397^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~415~^0.185^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~501~^0.014^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~502~^0.068^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~503~^0.195^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~504~^0.159^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~505~^0.246^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~506~^0.011^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~507~^0.017^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~508~^0.065^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~509~^0.096^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~510~^0.154^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~511~^0.142^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~512~^0.071^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~513~^0.227^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~514~^0.343^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~515~^0.290^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~516~^0.169^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~517~^0.248^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~518~^0.158^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02045~^~606~^0.060^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~611~^0.001^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~612~^0.001^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~613~^0.049^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~614~^0.009^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~617~^0.798^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~618~^0.082^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~619~^0.013^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~626~^0.004^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~645~^0.802^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02045~^~646~^0.095^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02046~^~312~^0.074^18^0.001^~1~^~A~^^^3^0.065^0.092^8^0.071^0.077^~2, 3~^~04/01/2014~ -~02046~^~315~^0.422^18^0.010^~1~^~A~^^^3^0.344^0.587^8^0.398^0.447^~2, 3~^~04/01/2014~ -~02046~^~404~^0.177^8^0.003^~1~^~A~^^^2^0.090^0.449^3^0.169^0.185^~2, 3~^~04/01/2014~ -~02046~^~405~^0.070^8^0.001^~1~^~A~^^^2^0.030^0.089^3^0.067^0.074^~2, 3~^~04/01/2014~ -~02046~^~406~^0.565^8^0.005^~1~^~A~^^^2^0.520^0.630^3^0.550^0.580^~2, 3~^~04/01/2014~ -~02046~^~410~^0.254^6^0.007^~1~^~A~^^^2^0.200^0.300^1^0.162^0.346^~2, 3~^~04/01/2014~ -~02046~^~415~^0.070^8^0.001^~1~^~A~^^^2^0.050^0.080^2^0.064^0.076^~2, 3~^~04/01/2014~ -~02046~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~02046~^~502~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~503~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~504~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~505~^0.264^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~506~^0.076^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~507~^0.072^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~508~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~509~^0.134^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~510~^0.189^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~511~^0.252^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~512~^0.119^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~513~^0.164^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~514~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~515~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~516~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~517~^0.355^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~518~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~02046~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~02046~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~606~^0.214^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~607~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~608~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~609~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~610~^0.005^3^^~1~^~A~^^^2^0.000^0.022^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~611~^0.002^3^^~1~^~A~^^^2^0.002^0.004^^^^~2, 3~^~04/01/2014~ -~02046~^~612~^0.004^3^^~1~^~A~^^^2^0.004^0.005^^^^~2, 3~^~04/01/2006~ -~02046~^~613~^0.117^3^^~1~^~A~^^^2^0.132^0.146^^^^~2, 3~^~04/01/2014~ -~02046~^~614~^0.038^3^^~1~^~A~^^^2^0.042^0.052^^^^~2, 3~^~04/01/2014~ -~02046~^~615~^0.020^3^^~1~^~A~^^^2^0.023^0.025^^^^~2, 3~^~04/01/2014~ -~02046~^~617~^0.778^3^^~1~^~AS~^^^2^0.892^0.962^^^^~2, 3~^~04/01/2014~ -~02046~^~618~^0.363^3^^~1~^~AS~^^^2^0.391^0.462^^^^~2, 3~^~04/01/2014~ -~02046~^~619~^0.374^3^^~1~^~AS~^^^2^0.402^0.470^^^^~2, 3~^~04/01/2014~ -~02046~^~620~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~621~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~624~^0.016^3^^~1~^~A~^^^2^0.018^0.019^^^^~2, 3~^~04/01/2014~ -~02046~^~625~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~626~^0.008^3^^~1~^~AS~^^^2^0.008^0.010^^^^~2, 3~^~04/01/2014~ -~02046~^~627~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~628~^0.289^3^^~1~^~A~^^^2^0.335^0.354^^^^~2, 3~^~04/01/2014~ -~02046~^~629~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~630~^1.056^3^^~1~^~AS~^^^2^1.243^1.282^^^^~2, 3~^~04/01/2014~ -~02046~^~631~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~645~^2.182^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~646~^0.774^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~652~^0.002^3^^~1~^~A~^^^2^0.001^0.003^^^^~2, 3~^~04/01/2006~ -~02046~^~653~^0.002^3^^~1~^~A~^^^2^0.002^0.002^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~654~^0.009^3^^~1~^~A~^^^2^0.010^0.011^^^^~2, 3~^~04/01/2014~ -~02046~^~662~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~663~^0.004^3^^~1~^~A~^^^2^0.000^0.011^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~664~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~665~^0.005^3^^~1~^~A~^^^2^0.000^0.009^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~670~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~671~^0.051^3^^~1~^~A~^^^2^0.000^0.086^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~672~^0.010^3^^~1~^~A~^^^2^0.010^0.012^^^^~2, 3~^~04/01/2014~ -~02046~^~673~^0.008^3^^~1~^~A~^^^2^0.008^0.010^^^^~2, 3~^~04/01/2014~ -~02046~^~674~^0.774^3^^~1~^~A~^^^2^0.892^0.958^^^^~2, 3~^~04/01/2014~ -~02046~^~675~^0.358^3^^~1~^~A~^^^2^0.391^0.453^^^^~2, 3~^~04/01/2014~ -~02046~^~676~^1.056^3^^~1~^~A~^^^2^1.243^1.282^^^^~2, 3~^~04/01/2014~ -~02046~^~685~^0.000^3^^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~687~^0.000^3^^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~689~^0.018^3^^~1~^~AS~^^^2^0.000^0.030^^^^~2, 3~^~04/01/2014~ -~02046~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~02046~^~697~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~851~^0.373^3^^~1~^~A~^^^2^0.400^0.470^^^^~2, 3~^~04/01/2014~ -~02046~^~852~^0.018^3^^~1~^~A~^^^2^0.000^0.030^^^^~1, 2, 3~^~04/01/2014~ -~02046~^~853~^0.000^3^^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~02046~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~02046~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~02047~^~312~^0.030^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~315~^0.100^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~404~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~405~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~406~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02047~^~415~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~501~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~502~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~503~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~504~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~505~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~506~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~507~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~508~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~509~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~510~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~511~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~512~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~513~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~514~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~515~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~516~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~517~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~518~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02047~^~606~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~613~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~614~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~617~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~618~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02047~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02047~^~645~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02047~^~646~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~312~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~02/01/2005~ -~02048~^~315~^0.249^3^0.057^~1~^~A~^^^1^0.135^0.310^2^0.003^0.495^~2, 3~^~02/01/2005~ -~02048~^~404~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~405~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~406~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~410~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~415~^0.000^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~501~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~502~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~503~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~504~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~505~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~506~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~507~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~508~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~509~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~510~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~511~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~512~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~513~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~514~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~515~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~516~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~517~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~518~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~02048~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~613~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~614~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~617~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~618~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02048~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~02048~^~645~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02048~^~646~^0.000^0^^~4~^^^^^^^^^^^~01/01/1977~ -~02049~^~312~^0.555^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~315~^1.719^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~404~^0.048^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~405~^0.471^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~406~^1.824^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~410~^0.409^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~415~^0.348^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~501~^0.114^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~502~^0.154^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~503~^0.285^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~504~^0.262^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~505~^0.126^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~510~^0.307^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02049~^~606~^0.467^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~609~^0.041^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~610~^0.021^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~611~^0.039^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~612~^0.026^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~613~^0.293^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~614~^0.047^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~617~^0.081^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~618~^0.085^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~619~^0.447^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~645~^0.081^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02049~^~646~^0.532^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~312~^0.072^4^0.032^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~315~^0.230^4^0.030^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~404~^0.011^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~405~^0.095^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~406~^0.425^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~410~^0.035^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~415~^0.026^2^^~1~^^^^^^^^^^^~01/01/1977~ -~02050~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02050~^~606~^0.010^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~613~^0.005^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~614~^0.001^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~617~^0.008^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~618~^0.003^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~619~^0.001^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~645~^0.010^0^^~4~^^^^^^^^^^^~03/01/1994~ -~02050~^~646~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02051~^~312~^0.023^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~315~^0.482^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~404~^0.008^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~405~^0.071^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~406~^0.318^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~410~^0.026^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~415~^0.019^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02051~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02052~^~312~^0.003^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~315~^0.001^1^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~404~^0.003^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~405~^0.029^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~406~^0.129^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~410~^0.011^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~415~^0.008^0^^~1~^^^^^^^^^^^~01/01/1977~ -~02052~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02052~^~606~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~645~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02052~^~646~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~312~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~1, 2, 3~^~01/01/2005~ -~02053~^~315~^0.055^3^0.035^~1~^~A~^^^1^0.007^0.123^2^-0.095^0.205^~2, 3~^~01/01/2005~ -~02053~^~404~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~405~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~406~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~02053~^~415~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~02053~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~02053~^~606~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~02053~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~02053~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~02053~^~646~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~02054~^~312~^0.374^2^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~315~^0.078^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02054~^~404~^0.018^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~405~^0.139^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~406~^0.652^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~410~^0.027^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02054~^~415~^0.023^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02054~^~606~^0.233^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~613~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~614~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~617~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~618~^0.111^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~619~^0.183^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~620~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~626~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~628~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~631~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/1994~ -~02054~^~645~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02054~^~646~^0.304^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~312~^0.058^2^^~1~^~A~^^^^^^^^^^~05/01/1994~ -~02055~^~315~^0.126^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02055~^~404~^0.008^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~405~^0.024^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~406~^0.386^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~410~^0.093^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~02055~^~415~^0.073^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02055~^~606~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~613~^0.061^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~614~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~617~^0.127^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~618~^0.285^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~619~^0.053^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~626~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~628~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~630~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^ -~02055~^~645~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02055~^~646~^0.339^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~02063~^~312~^0.301^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~315~^0.960^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~404~^0.036^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~405~^0.152^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~406~^0.912^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~410~^0.804^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~415~^0.336^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02063~^~501~^0.051^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~502~^0.136^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~503~^0.136^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~504~^0.249^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~505~^0.143^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~506~^0.047^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~507~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~508~^0.169^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~509~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~510~^0.165^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~511~^0.153^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~512~^0.066^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~513~^0.172^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~514~^0.391^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~515~^0.361^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~516~^0.159^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~517~^0.136^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~518~^0.129^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02063~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02063~^~606~^2.838^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~610~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~611~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~612~^0.121^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~613~^1.921^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~614~^0.231^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~617~^1.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~618~^0.447^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~619~^0.414^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~626~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~628~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~645~^1.160^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02063~^~646~^0.901^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1998~ -~02064~^~312~^0.329^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~315~^1.176^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~404~^0.082^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~405~^0.266^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~406~^1.706^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~410~^0.338^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~415~^0.129^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02064~^~501~^0.058^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~502~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~503~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~504~^0.281^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~505~^0.161^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~506~^0.053^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~507~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~508~^0.191^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~509~^0.113^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~510~^0.187^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~511~^0.173^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~512~^0.075^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~513~^0.195^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~514~^0.443^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~515~^0.409^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~516~^0.180^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~517~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~518~^0.146^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02064~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02064~^~606~^0.246^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~612~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~613~^0.176^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~614~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~617~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~618~^0.069^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~619~^0.435^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~645~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02064~^~646~^0.508^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~312~^0.240^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~315~^1.118^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~404~^0.078^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~405~^0.175^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~406~^0.948^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~410~^0.250^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~415~^0.158^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02065~^~501~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~502~^0.135^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~503~^0.135^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~504~^0.247^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~505~^0.141^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~506~^0.046^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~507~^0.036^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~508~^0.168^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~509~^0.099^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~510~^0.164^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~511~^0.151^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~512~^0.066^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~513~^0.171^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~514~^0.388^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~515~^0.358^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~516~^0.158^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~517~^0.135^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~518~^0.128^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02065~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02065~^~606~^0.191^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~612~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~613~^0.137^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~614~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~617~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~618~^0.054^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~619~^0.338^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~645~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02065~^~646~^0.394^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~02066~^~312~^1.542^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~315~^11.482^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~404~^0.288^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~405~^1.421^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~406~^6.561^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~410~^1.399^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~415~^2.579^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~501~^0.306^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~502~^0.816^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~503~^0.816^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~504~^1.496^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~505~^0.858^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~506~^0.281^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~507~^0.220^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~508~^1.017^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~509~^0.600^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~510~^0.995^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~511~^0.918^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~512~^0.399^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~513~^1.036^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~514~^2.353^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~515~^2.172^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~516~^0.957^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~517~^0.816^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~518~^0.778^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~02066~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~02066~^~606~^1.577^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~612~^0.037^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~613~^1.131^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~614~^0.163^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~617~^0.183^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~618~^0.446^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~619~^2.792^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~626~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~645~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02066~^~646~^3.257^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~02068~^~312~^0.010^3^0.002^~1~^~A~^^^1^0.008^0.014^2^0.001^0.019^~2, 3~^~03/01/2006~ -~02068~^~315~^0.046^4^0.006^~1~^~A~^^^2^0.021^0.079^1^-0.030^0.122^~2~^~03/01/2006~ -~02068~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~02068~^~606~^0.000^1^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~02069~^~312~^0.026^3^0.007^~1~^~A~^^^1^0.015^0.040^2^-0.005^0.058^~2, 3~^~02/01/2006~ -~02069~^~315~^0.131^3^0.015^~1~^~A~^^^1^0.104^0.155^2^0.067^0.194^~2, 3~^~02/01/2006~ -~02069~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~02069~^~606~^0.000^1^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~02074~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02074~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02075~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~02076~^~646~^5.556^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~03000~^~312~^0.187^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~315~^1.748^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~404~^0.411^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~405~^0.100^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~406~^0.478^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~410~^0.588^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~415~^0.073^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~501~^0.105^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~502~^0.164^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~503~^0.216^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~504~^0.432^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~505~^0.242^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~506~^0.107^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~507~^0.179^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~508~^0.287^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~509~^0.208^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~510~^0.307^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~511~^0.420^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~512~^0.131^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~513~^0.278^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~514~^0.515^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~515~^1.198^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~516~^0.305^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~517~^0.311^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~518~^0.282^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~521~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~605~^0.013^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~606~^2.721^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~611~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~612~^0.011^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~613~^1.532^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~614~^1.156^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~615~^0.005^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~617~^2.420^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~618~^2.860^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~619~^0.455^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~620~^0.004^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~624~^0.007^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~626~^0.023^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~628~^0.003^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~645~^2.447^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~646~^3.319^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~03000~^~671~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03000~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03001~^~312~^0.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~315~^0.062^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~405~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~406~^0.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~410~^0.052^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~415~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~501~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~502~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~503~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~504~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~505~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~506~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~507~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~508~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~509~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~510~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~511~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~512~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~513~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~514~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~515~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~516~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~517~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~518~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03001~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03002~^~312~^0.148^2^^~1~^~A~^^^1^0.148^0.148^^^^~1~^~03/01/2007~ -~03002~^~315~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~03/01/2007~ -~03002~^~404~^0.013^25^0.003^~6~^~JA~^^^2^0.010^0.017^1^-0.028^0.055^~4~^~03/01/2007~ -~03002~^~405~^0.135^26^0.008^~6~^~JA~^^^2^0.127^0.142^1^0.039^0.230^~4~^~03/01/2007~ -~03002~^~406~^2.495^26^0.355^~6~^~JA~^^^2^2.140^2.849^1^-2.010^6.999^~4~^~03/01/2007~ -~03002~^~410~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~415~^0.039^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~606~^1.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03002~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03002~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03002~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~612~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~613~^0.530^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~614~^0.540^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~617~^0.860^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~618~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~619~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~621~^0.000^0^^~4~^~T~^^^^^^^^^^~03/01/2007~ -~03002~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03002~^~645~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03002~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03002~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~653~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03002~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03002~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03003~^~312~^0.148^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~315~^0.037^2^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~404~^0.013^25^0.003^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~405~^0.135^26^0.008^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~406~^2.495^26^0.355^~6~^~JA~^^^^^^^^^^~03/01/2007~ -~03003~^~410~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~415~^0.039^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~606~^1.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03003~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03003~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~612~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~613~^0.530^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~614~^0.540^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~617~^0.860^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~618~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~619~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~621~^0.000^0^^~4~^~T~^^^^^^^^^^~03/01/2007~ -~03003~^~624~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~628~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~645~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03003~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~653~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~671~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~697~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~857~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03003~^~858~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03005~^~404~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~405~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~406~^2.850^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~410~^0.155^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~415~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03005~^~606~^1.063^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03005~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03005~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03005~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~612~^0.131^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~613~^0.575^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~614~^0.314^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~617~^0.898^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~618~^0.104^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~619~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~620~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~626~^0.105^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~627~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~645~^1.054^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03005~^~646~^0.157^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03005~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~653~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~687~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~03005~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03005~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~03007~^~312~^0.072^3^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~404~^0.146^12^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~405~^0.203^12^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~406~^2.269^11^0.044^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~410~^0.272^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03007~^~415~^0.205^15^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~501~^0.136^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~502~^0.617^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~503~^0.680^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~504~^1.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~505~^1.158^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~506~^0.398^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~507~^0.154^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~508~^0.570^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~509~^0.510^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~510~^0.702^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~511~^0.948^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~512~^0.447^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~513~^0.879^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~514~^1.310^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~515~^2.133^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~516~^0.760^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~517~^0.747^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~518~^0.541^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~606~^2.400^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~610~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~611~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~612~^0.080^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~613~^1.530^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~614~^0.720^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~617~^3.270^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~618~^0.690^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~619~^0.030^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~626~^0.230^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~628~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03007~^~645~^3.580^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03007~^~646~^0.780^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~312~^0.065^4^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~404~^0.139^19^0.009^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~405~^0.154^19^0.006^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~406~^2.633^18^0.045^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~410~^0.510^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~415~^0.252^5^0.023^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~501~^0.138^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~502~^0.603^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~503~^0.661^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~504~^1.111^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~505~^1.180^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~506~^0.355^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~507~^0.171^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~508~^0.530^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~509~^0.466^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~510~^0.716^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~511~^0.940^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~512~^0.472^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~513~^0.838^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~514~^1.326^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~515~^2.089^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~516~^0.796^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~517~^0.645^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~518~^0.503^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03008~^~606~^1.267^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~610~^0.000^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~611~^0.007^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~612~^0.046^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~613~^0.797^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~614~^0.385^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~617~^1.646^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~618~^0.464^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~619~^0.020^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~620~^0.026^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~626~^0.105^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~628~^0.039^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~645~^1.803^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03008~^~646~^0.510^1^^~1~^^^^^^^^^^^~05/01/2007~ -~03009~^~312~^0.068^0^^~4~^^^^^^^^^^^~03/01/2007~ -~03009~^~404~^0.142^4^0.009^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~405~^0.194^4^0.014^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~406~^2.840^3^0.113^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~410~^0.531^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~415~^0.200^5^0.013^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~501~^0.149^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~502~^0.656^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~503~^0.718^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~504~^1.208^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~505~^1.283^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~506~^0.386^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~507~^0.186^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~508~^0.576^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~509~^0.506^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~510~^0.779^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~511~^1.022^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~512~^0.514^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~513~^0.911^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~514~^1.442^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~515~^2.271^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~516~^0.866^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~517~^0.702^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~518~^0.547^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~606~^1.271^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~610~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~611~^0.010^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~612~^0.083^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~613~^1.445^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~614~^0.702^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~617~^2.928^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~618~^0.829^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~619~^0.030^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~620~^0.051^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~626~^0.181^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~628~^0.070^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~645~^1.804^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03009~^~646~^0.516^1^^~1~^^^^^^^^^^^~03/01/2007~ -~03010~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03010~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03010~^~404~^0.020^2^^~6~^~JA~^^^2^0.019^0.021^1^^^^~03/01/2007~ -~03010~^~405~^0.174^2^^~6~^~JA~^^^2^0.148^0.200^1^^^^~03/01/2007~ -~03010~^~406~^2.908^2^^~6~^~JA~^^^2^2.890^2.925^1^^^^~03/01/2007~ -~03010~^~410~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~415~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~606~^1.650^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03010~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~03010~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~03010~^~609~^0.000^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03010~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~612~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~613~^0.720^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~614~^0.680^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~617~^1.170^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~618~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~619~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03010~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~645~^1.270^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03010~^~646~^0.310^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03010~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~687~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03010~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03010~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03011~^~312~^0.057^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~404~^0.019^24^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~405~^0.191^21^0.010^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~406~^3.193^22^0.087^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~410~^0.424^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~415~^0.183^4^0.017^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~501~^0.151^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~502~^0.693^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~503~^0.714^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~504~^1.200^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~505~^1.349^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~506~^0.476^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~507~^0.209^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~508~^0.598^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~509~^0.532^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~510~^0.770^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~511~^0.996^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~512~^0.384^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~513~^0.953^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~514~^1.429^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~515~^2.328^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~516~^0.885^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~517~^0.851^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~518~^0.583^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~606~^2.560^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~609~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~610~^0.010^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~611~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~612~^0.120^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~613~^1.140^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~614~^1.090^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~617~^1.960^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~618~^0.150^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~619~^0.060^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~620~^0.010^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~626~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~628~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03011~^~645~^2.060^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03011~^~646~^0.220^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~312~^0.045^25^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~404~^0.014^28^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~405~^0.152^28^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~406~^3.255^30^0.049^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~410~^0.680^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~415~^0.200^14^0.009^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~501~^0.156^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~502~^0.615^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~503~^0.645^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~504~^1.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~505~^1.144^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~506~^0.367^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~507~^0.180^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~508~^0.558^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~509~^0.439^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~510~^0.689^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~511~^0.957^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~512~^0.415^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~513~^0.871^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~514~^1.269^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~515~^1.982^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~516~^0.913^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~517~^0.707^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~518~^0.498^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03012~^~606~^2.030^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~611~^0.000^1^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~612~^0.050^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~613~^1.480^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~614~^0.420^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~617~^3.250^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~618~^1.850^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~619~^0.040^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~620~^0.030^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~626~^0.290^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~628~^0.020^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~03012~^~645~^3.560^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03012~^~646~^1.920^1^^~1~^^^^^^^^^^^~02/01/2007~ -~03013~^~312~^0.045^3^0.006^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~404~^0.014^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~405~^0.163^19^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~406~^3.420^19^0.070^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~410~^0.726^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~415~^0.188^4^0.024^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~501~^0.167^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~502~^0.660^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~503~^0.693^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~504~^1.136^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~505~^1.228^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~506~^0.394^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~507~^0.193^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~508~^0.599^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~509~^0.471^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~510~^0.740^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~511~^1.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~512~^0.445^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~513~^0.936^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~514~^1.362^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~515~^2.128^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~516~^0.981^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~517~^0.759^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~518~^0.535^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~606~^2.470^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~611~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~612~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~613~^1.800^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~614~^0.500^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~617~^3.950^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~618~^2.250^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~619~^0.050^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~620~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~626~^0.350^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~628~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03013~^~645~^4.330^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03013~^~646~^2.330^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~312~^0.045^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~404~^0.017^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~405~^0.197^7^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~406~^2.005^7^0.064^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~410~^0.726^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03014~^~415~^0.103^5^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~501~^0.117^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~502~^0.572^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~503~^0.729^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~504~^1.142^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~505~^1.160^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~506~^0.323^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~507~^0.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~508~^0.673^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~509~^0.497^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~510~^0.764^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~511~^1.003^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~512~^0.462^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~513~^0.792^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~514~^1.263^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~515~^2.201^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~516~^0.811^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~517~^0.902^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~518~^0.534^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03014~^~606~^4.094^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~611~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~612~^0.133^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~613~^3.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~614~^0.813^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~617~^5.277^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~618~^2.764^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~619~^0.111^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~626~^0.887^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~645~^6.267^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03014~^~646~^2.986^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03015~^~312~^0.148^3^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~315~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2007~ -~03015~^~404~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^~1~^~03/01/2007~ -~03015~^~405~^0.163^2^^~1~^~A~^^^1^0.161^0.165^1^^^^~03/01/2007~ -~03015~^~406~^2.610^2^^~1~^~A~^^^1^2.430^2.790^1^^^^~03/01/2007~ -~03015~^~410~^0.410^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03015~^~415~^0.029^2^^~1~^~A~^^^1^0.025^0.034^1^^^^~03/01/2007~ -~03015~^~501~^0.149^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~502~^0.633^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~503~^0.717^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~504~^1.138^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~505~^1.184^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~506~^0.443^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~507~^0.174^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~508~^0.590^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~509~^0.503^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~510~^0.727^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~511~^0.909^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~512~^0.366^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~513~^0.905^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~514~^1.426^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~515~^2.267^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~516~^0.941^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~517~^0.704^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~518~^0.562^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03015~^~606~^1.641^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03015~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~03015~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~03015~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~612~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~613~^0.770^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~614~^0.330^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~617~^1.520^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~618~^1.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~619~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~626~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~631~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~645~^2.384^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03015~^~646~^1.741^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03015~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03015~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03015~^~858~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~312~^0.148^3^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~315~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2007~ -~03016~^~404~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^~1~^~03/01/2007~ -~03016~^~405~^0.163^2^^~1~^~A~^^^1^0.161^0.165^1^^^^~03/01/2007~ -~03016~^~406~^2.610^2^^~1~^~A~^^^1^2.430^2.790^1^^^^~03/01/2007~ -~03016~^~410~^0.410^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03016~^~415~^0.029^2^^~1~^~A~^^^1^0.025^0.034^1^^^^~03/01/2007~ -~03016~^~606~^1.641^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03016~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~03016~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~ -~03016~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~612~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~613~^0.770^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~614~^0.330^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~617~^1.520^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~618~^1.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~619~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~626~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~631~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~645~^2.384^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03016~^~646~^1.741^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03016~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03016~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03016~^~858~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03017~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~404~^0.008^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~ -~03017~^~405~^0.181^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~406~^1.940^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~410~^0.381^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~415~^0.023^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~03017~^~501~^0.101^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~502~^0.546^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~503~^0.629^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~504~^1.071^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~505~^1.176^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~506~^0.304^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~507~^0.122^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~508~^0.610^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~509~^0.483^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~510~^0.651^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~511~^0.883^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~512~^0.367^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~513~^0.704^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~514~^1.272^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~515~^2.196^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~516~^0.682^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~517~^0.651^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~518~^0.505^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03017~^~606~^4.143^0^^~4~^^^^^^^^^^^~05/01/2010~ -~03017~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~611~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~612~^0.102^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~613~^2.539^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~614~^1.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~617~^3.798^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~618~^3.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~619~^0.163^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~620~^0.284^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~621~^0.061^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~626~^0.772^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~628~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~630~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~631~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03017~^~645~^4.671^0^^~4~^^^^^^^^^^^~05/01/2010~ -~03017~^~646~^3.615^0^^~4~^^^^^^^^^^^~05/01/2010~ -~03019~^~312~^0.242^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~315~^0.700^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~404~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~405~^0.046^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~406~^0.334^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~410~^0.142^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~415~^0.201^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~501~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~502~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~503~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~504~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~505~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~506~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~507~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~508~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~509~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~510~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~511~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~512~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~513~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~514~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~515~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~516~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~517~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~518~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~ -~03019~^~606~^0.364^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~612~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~613~^0.304^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~614~^0.046^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~617~^0.088^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~618~^0.549^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~619~^0.115^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03019~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03019~^~645~^0.092^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03019~^~646~^0.664^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~03021~^~312~^0.068^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~404~^0.059^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~405~^0.172^13^0.012^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~406~^1.481^13^0.056^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~410~^0.481^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03021~^~415~^0.080^4^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~501~^0.092^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~502~^0.581^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~503~^0.667^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~504~^1.042^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~505~^1.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~506~^0.309^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~507~^0.073^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~508~^0.607^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~509~^0.521^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~510~^0.691^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~511~^0.871^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~512~^0.461^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~513~^0.785^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~514~^1.126^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~515~^2.023^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~516~^0.682^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~517~^0.759^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~518~^0.495^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~606~^5.820^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~610~^0.010^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~611~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~612~^0.250^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~613~^3.570^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~614~^1.780^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~617~^5.890^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~618~^1.460^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~619~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~620~^0.060^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~626~^0.460^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~628~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03021~^~645~^6.480^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03021~^~646~^1.590^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03022~^~312~^0.033^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~315~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~404~^0.020^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~405~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~406~^0.255^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~410~^0.086^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~415~^0.057^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~501~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~502~^0.045^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~503~^0.048^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~504~^0.083^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~505~^0.083^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~506~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~507~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~508~^0.042^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~509~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~510~^0.055^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~511~^0.065^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~512~^0.035^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~513~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~514~^0.149^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~515~^0.166^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~516~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~517~^0.043^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~518~^0.042^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03022~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03022~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~312~^0.213^5^0.002^~1~^~A~^^^1^0.208^0.218^4^0.207^0.218^~2, 3~^~02/01/2015~ -~03023~^~315~^1.646^5^0.009^~1~^~A~^^^1^1.630^1.680^4^1.620^1.672^~2, 3~^~02/01/2015~ -~03023~^~404~^1.563^3^0.079^~1~^~A~^^^1^1.470^1.720^2^1.224^1.902^~2, 3~^~02/01/2015~ -~03023~^~405~^2.267^3^0.067^~1~^~A~^^^1^2.200^2.400^2^1.980^2.554^~2, 3~^~02/01/2015~ -~03023~^~406~^28.767^3^0.674^~1~^~A~^^^1^27.500^29.800^2^25.866^31.667^~2, 3~^~02/01/2015~ -~03023~^~410~^0.635^2^^~1~^~A~^^^1^0.570^0.700^1^^^^~02/01/2015~ -~03023~^~415~^1.800^3^0.231^~1~^~A~^^^1^1.400^2.200^2^0.806^2.794^~2, 3~^~02/01/2015~ -~03023~^~501~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~502~^0.156^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~503~^0.183^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~504~^0.368^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~505~^0.156^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~506~^0.104^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~507~^0.087^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~508~^0.248^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~509~^0.205^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~510~^0.256^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~511~^0.357^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~512~^0.121^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~513~^0.239^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~514~^0.404^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~515~^1.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~516~^0.209^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~517~^0.360^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~518~^0.239^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03023~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~606~^0.143^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~607~^0.002^3^0.002^~1~^~A~^^^1^^^2^-0.005^0.009^~1, 2, 3~^~02/01/2015~ -~03023~^~608~^0.002^3^0.001^~1~^~A~^^^1^^^2^-0.002^0.005^~1, 2, 3~^~02/01/2015~ -~03023~^~609~^0.002^3^0.001^~1~^~A~^^^1^^^2^-0.002^0.006^~1, 2, 3~^~02/01/2015~ -~03023~^~610~^0.000^3^0.000^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~02/01/2015~ -~03023~^~612~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~02/01/2015~ -~03023~^~613~^0.115^3^0.004^~1~^~A~^^^1^0.110^0.123^2^0.097^0.132^~2, 3~^~02/01/2015~ -~03023~^~614~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~02/01/2015~ -~03023~^~615~^0.001^3^0.001^~1~^~A~^^^1^^^2^-0.001^0.003^~1, 2, 3~^~02/01/2015~ -~03023~^~617~^0.151^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~618~^0.252^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~03023~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~624~^0.001^3^0.000^~1~^~A~^^^1^^^2^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~03023~^~625~^0.000^3^0.000^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~628~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~02/01/2015~ -~03023~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~645~^0.306^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~646~^0.527^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~02/01/2015~ -~03023~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~654~^0.001^3^0.000^~1~^~A~^^^1^^^2^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~03023~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~673~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~03023~^~674~^0.151^3^0.003^~1~^~A~^^^1^0.147^0.157^2^0.138^0.164^~2, 3~^~02/01/2015~ -~03023~^~675~^0.252^3^0.008^~1~^~A~^^^1^0.243^0.269^2^0.217^0.288^~2, 3~^~02/01/2015~ -~03023~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~03023~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03023~^~697~^0.000^3^0.000^~1~^~A~^^^1^^^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~851~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~02/01/2015~ -~03023~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03023~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~03024~^~312~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~ -~03024~^~315~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~404~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~405~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03024~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~312~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~315~^0.089^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~404~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~405~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~406~^0.250^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~410~^0.093^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~415~^0.059^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03025~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03025~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03025~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~03026~^~312~^0.035^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~315~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~404~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~405~^0.027^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~406~^0.138^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~410~^0.076^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~415~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~501~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~502~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~503~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~504~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~505~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~506~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~507~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~508~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~509~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~510~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~511~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~512~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~513~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~514~^0.084^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~515~^0.029^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~516~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~517~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~518~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03026~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03041~^~312~^0.029^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03041~^~404~^0.049^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~405~^0.040^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~406~^0.574^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03041~^~410~^0.208^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03041~^~415~^0.047^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~312~^0.030^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~404~^0.039^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~405~^0.036^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~406~^0.490^3^0.009^~1~^^^^^^^^^^^~12/01/1978~ -~03042~^~410~^0.214^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03042~^~415~^0.048^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03043~^~312~^0.097^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03043~^~404~^0.072^3^0.009^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~405~^0.089^3^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~406~^1.353^3^0.050^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~415~^0.071^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~501~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~502~^0.163^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~503~^0.206^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~504~^0.324^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~505~^0.297^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~506~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~507~^0.048^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~508~^0.182^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~509~^0.132^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~510~^0.231^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~511~^0.253^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~512~^0.102^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~513~^0.265^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~514~^0.353^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~515~^0.889^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~516~^0.279^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~517~^0.326^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03043~^~518~^0.120^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03044~^~312~^0.050^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~315~^0.130^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~404~^0.038^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~405~^0.043^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~406~^0.715^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~410~^0.140^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~415~^0.056^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03044~^~606~^0.486^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~612~^0.031^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~613~^0.292^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~614~^0.140^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~617~^0.533^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~618~^0.170^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~619~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~620~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~626~^0.041^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~645~^0.594^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03044~^~646~^0.193^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03045~^~312~^0.039^3^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~404~^0.048^20^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~405~^0.055^19^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~406~^0.751^19^0.019^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~415~^0.047^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~501~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~502~^0.090^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~503~^0.118^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~504~^0.198^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~505~^0.149^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~506~^0.039^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~507~^0.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~508~^0.112^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~509~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~510~^0.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~511~^0.133^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~512~^0.064^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~513~^0.128^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~514~^0.198^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~515~^0.619^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~516~^0.126^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~517~^0.201^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~518~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03045~^~606~^0.411^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~612~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~613~^0.241^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~614~^0.119^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~617~^0.392^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~618~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~619~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~620~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~626~^0.038^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~645~^0.447^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03045~^~646~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03046~^~312~^0.040^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~404~^0.120^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~405~^0.140^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~406~^1.650^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~415~^0.090^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~606~^0.960^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~607~^0.051^0^^~12~^^^^^^^^^^^~03/01/2005~ -~03046~^~608~^0.019^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~609~^0.012^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~610~^0.026^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~611~^0.028^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~612~^0.134^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~613~^0.494^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~614~^0.158^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~617~^0.509^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~618~^0.424^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~619~^0.035^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~620~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~621~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~626~^0.039^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~645~^0.570^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03046~^~646~^0.480^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03047~^~312~^0.050^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~315~^0.120^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~404~^0.035^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~405~^0.035^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~406~^0.616^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~410~^0.101^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~415~^0.036^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03047~^~606~^0.937^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~611~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~612~^0.066^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~613~^0.522^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~614~^0.303^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~617~^0.822^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~618~^0.112^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~619~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~620~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03047~^~626~^0.083^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~628~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~645~^0.941^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03047~^~646~^0.141^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03048~^~312~^0.041^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~404~^0.040^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~405~^0.090^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~406~^0.790^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~415~^0.050^0^^~12~^^^^^^^^^^^~02/01/2009~ -~03048~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~606~^1.530^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~607~^0.074^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~608~^0.038^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~609~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~610~^0.043^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~611~^0.038^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~612~^0.237^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~613~^0.727^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~614~^0.289^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~617~^0.591^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~618~^0.131^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~619~^0.035^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~626~^0.071^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~645~^0.700^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~646~^0.170^0^^~4~^^^^^^^^^^^~02/01/2009~ -~03048~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03048~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03049~^~312~^0.054^3^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~404~^0.016^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~405~^0.069^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~406~^1.343^3^0.017^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~415~^0.139^3^0.021^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~501~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~502~^0.200^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~503~^0.245^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~504~^0.392^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~505~^0.376^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~506~^0.123^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~507~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~508~^0.197^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~509~^0.161^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~510~^0.275^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~511~^0.338^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~512~^0.128^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~513~^0.339^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~514~^0.464^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~515~^0.870^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~516~^0.364^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~517~^0.306^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03049~^~518~^0.179^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03050~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~315~^0.120^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~404~^0.048^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~405~^0.068^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~406~^0.967^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~410~^0.086^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~415~^0.064^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03050~^~606~^0.543^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~607~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~608~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~609~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~610~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~611~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~612~^0.044^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~613~^0.306^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~614~^0.142^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~617~^0.451^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~618~^0.165^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~619~^0.019^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~620~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03050~^~626~^0.030^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~628~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~645~^0.497^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03050~^~646~^0.185^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03051~^~312~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~404~^0.062^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~405~^0.101^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~406~^1.558^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~415~^0.083^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~501~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~502~^0.197^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~503~^0.268^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~504~^0.413^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~505~^0.313^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~506~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~507~^0.066^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~508~^0.241^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~509~^0.184^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~510~^0.286^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~511~^0.284^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~512~^0.141^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~513~^0.269^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~514~^0.470^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~515~^1.297^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~516~^0.254^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~517~^0.442^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03051~^~518~^0.202^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03053~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^~1~^~04/01/2007~ -~03053~^~315~^0.180^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03053~^~404~^0.008^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03053~^~405~^0.048^1^^~6~^~JA~^^^2^0.048^0.049^1^^^^~04/01/2007~ -~03053~^~406~^0.789^1^^~6~^~JA~^^^2^0.751^0.827^1^^^^~04/01/2007~ -~03053~^~410~^0.099^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03053~^~415~^0.063^1^^~6~^~JA~^^^2^0.053^0.072^1^^^^~04/01/2007~ -~03053~^~501~^0.020^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~502~^0.097^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~503~^0.111^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~504~^0.193^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~505~^0.184^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~506~^0.061^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~507~^0.033^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~508~^0.103^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~509~^0.086^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~510~^0.127^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~511~^0.164^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~512~^0.074^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~513~^0.146^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~514~^0.252^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~515~^0.396^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~516~^0.138^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~517~^0.115^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~518~^0.103^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~521~^0.020^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~03053~^~606~^0.870^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2009~ -~03053~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2009~ -~03053~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~612~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~613~^0.470^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~614~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~617~^0.710^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~03053~^~618~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~619~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~625~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~03053~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~645~^0.820^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~646~^0.190^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03053~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~653~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03053~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~03053~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03053~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~03054~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^~1~^~03/01/2007~ -~03054~^~315~^0.106^2^^~1~^~A~^^^1^0.093^0.120^1^^^^~03/01/2007~ -~03054~^~404~^0.008^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03054~^~405~^0.048^1^^~6~^~JA~^^^2^0.048^0.049^1^^^^~03/01/2007~ -~03054~^~406~^0.789^1^^~6~^~JA~^^^2^0.751^0.827^1^^^^~03/01/2007~ -~03054~^~410~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03054~^~415~^0.063^1^^~6~^~JA~^^^2^0.053^0.072^1^^^^~03/01/2007~ -~03054~^~501~^0.020^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~502~^0.089^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~503~^0.099^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~504~^0.170^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~505~^0.164^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~506~^0.052^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~507~^0.030^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~508~^0.097^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~509~^0.078^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~510~^0.115^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~511~^0.144^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~512~^0.066^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~513~^0.133^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~514~^0.277^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~515~^0.442^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~516~^0.119^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~517~^0.102^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~518~^0.095^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~521~^0.016^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~03054~^~606~^1.367^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03054~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~03054~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~ -~03054~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~612~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~613~^0.470^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~614~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~617~^0.710^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~618~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~619~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~625~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~645~^1.289^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03054~^~646~^0.298^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~03054~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~653~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~03054~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03054~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~03055~^~312~^0.036^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~315~^0.006^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~404~^0.030^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~405~^0.060^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~406~^0.700^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~410~^0.259^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~415~^0.083^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~606~^2.840^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~611~^0.051^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~612~^0.214^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~613~^1.463^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~614~^1.112^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~617~^2.778^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~618~^0.747^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~619~^0.149^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~620~^0.004^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~626~^0.321^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~628~^0.022^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03055~^~645~^3.120^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03055~^~646~^0.900^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03067~^~312~^0.029^3^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~404~^0.021^20^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~405~^0.032^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~406~^0.554^21^0.015^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~410~^0.159^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~415~^0.044^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~501~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~502~^0.077^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~503~^0.095^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~504~^0.155^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~505~^0.154^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~506~^0.031^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~507~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~508~^0.083^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~509~^0.066^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~510~^0.102^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~511~^0.141^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~512~^0.048^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~513~^0.120^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~514~^0.209^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~515~^0.418^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~516~^0.105^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~517~^0.115^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~518~^0.077^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03067~^~606~^0.696^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~610~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~611~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~612~^0.064^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~613~^0.358^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~614~^0.221^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~617~^0.626^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~618~^0.122^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~619~^0.026^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~620~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~626~^0.047^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~645~^0.690^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03067~^~646~^0.154^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03068~^~312~^0.048^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~315~^0.198^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~404~^0.055^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~405~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~406~^1.510^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~410~^0.330^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~415~^0.070^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~606~^0.341^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~607~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~608~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~609~^0.002^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~610~^0.002^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~611~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~612~^0.006^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~613~^0.237^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~614~^0.068^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~617~^1.171^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~618~^0.565^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~619~^0.147^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~620~^0.006^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~621~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~626~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~627~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~628~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~629~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~630~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~631~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~645~^1.814^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03068~^~646~^1.070^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~312~^0.048^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~315~^0.198^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~404~^0.056^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~405~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~406~^1.510^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~410~^0.330^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~415~^0.070^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~606~^0.341^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~607~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~608~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~609~^0.002^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~610~^0.002^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~611~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~612~^0.006^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~613~^0.237^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~614~^0.068^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~617~^1.171^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~618~^0.565^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~619~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~620~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~621~^0.002^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~626~^0.026^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~627~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~628~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~629~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~630~^0.000^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~631~^0.001^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~645~^1.814^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03069~^~646~^1.070^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03070~^~312~^0.279^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~404~^0.017^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~405~^0.032^3^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~406~^0.293^3^0.020^~1~^^^^^^^^^^^~12/01/1978~ -~03070~^~415~^0.037^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03070~^~606~^0.278^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~612~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~613~^0.200^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~614~^0.068^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~617~^0.404^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~618~^0.792^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~619~^0.103^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~620~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~621~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~626~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~628~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~645~^0.425^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03070~^~646~^0.900^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03072~^~312~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~404~^0.031^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~405~^0.074^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~406~^1.153^3^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~415~^0.046^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~501~^0.057^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~502~^0.221^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~503~^0.257^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~504~^0.405^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~505~^0.410^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~506~^0.112^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~507~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~508~^0.213^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~509~^0.172^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~510~^0.292^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~511~^0.331^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~512~^0.128^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~513~^0.298^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~514~^0.471^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~515~^0.898^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~516~^0.295^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~517~^0.354^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~518~^0.209^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~606~^1.100^11^0.090^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~609~^0.000^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~610~^0.010^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~611~^0.010^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~612~^0.050^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~613~^0.740^11^0.060^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~614~^0.220^11^0.020^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~617~^1.540^11^0.140^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~618~^0.730^11^0.070^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~619~^0.030^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~620~^0.020^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~626~^0.140^11^0.020^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~628~^0.010^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03072~^~645~^1.700^11^0.160^~1~^^^^^^^^^^^~12/01/1978~ -~03072~^~646~^0.770^11^0.070^~1~^^^^^^^^^^^~12/01/1978~ -~03073~^~312~^0.070^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~315~^0.150^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~404~^0.032^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~405~^0.052^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~406~^0.720^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~410~^0.107^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~415~^0.072^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03073~^~606~^0.496^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~612~^0.014^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~613~^0.359^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~614~^0.098^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~617~^0.596^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~618~^0.334^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~619~^0.021^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~620~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~621~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~626~^0.088^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~628~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~645~^0.712^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03073~^~646~^0.374^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03075~^~312~^0.054^9^0.002^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~404~^0.032^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~405~^0.049^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~406~^0.407^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~410~^0.190^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03075~^~415~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~312~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~404~^0.042^4^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~405~^0.037^4^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~406~^0.675^4^0.106^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~410~^0.204^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03076~^~415~^0.023^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03077~^~312~^0.110^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~315~^0.390^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~404~^0.060^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~405~^0.050^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~406~^0.560^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~410~^0.178^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~415~^0.110^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~03077~^~606~^1.230^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~607~^0.062^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~608~^0.037^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~609~^0.021^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~610~^0.048^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~611~^0.054^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~612~^0.194^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~613~^0.534^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~614~^0.235^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~617~^0.507^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~618~^0.110^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~619~^0.034^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~626~^0.044^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~645~^0.580^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03077~^~646~^0.144^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~03079~^~312~^0.022^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03079~^~404~^0.018^4^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~405~^0.044^4^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~406~^0.250^4^0.050^~1~^^^^^^^^^^^~12/01/1978~ -~03079~^~410~^0.186^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03079~^~415~^0.016^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~312~^0.026^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03081~^~404~^0.024^4^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~405~^0.040^4^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~406~^0.299^4^0.034^~1~^^^^^^^^^^^~12/01/1978~ -~03081~^~410~^0.217^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03081~^~415~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03082~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~315~^0.130^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~404~^0.022^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~405~^0.040^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~406~^0.648^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~410~^0.177^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~415~^0.052^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03082~^~606~^0.338^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~612~^0.011^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~613~^0.223^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~614~^0.074^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~617~^0.380^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~618~^0.272^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~619~^0.020^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~620~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~626~^0.051^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~628~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~645~^0.446^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03082~^~646~^0.308^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~315~^0.120^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~404~^0.033^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~405~^0.044^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~406~^0.692^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~410~^0.200^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~415~^0.052^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03083~^~606~^0.239^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~613~^0.157^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~614~^0.052^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~617~^0.261^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~618~^0.203^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~619~^0.016^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~620~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~626~^0.032^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~645~^0.304^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03083~^~646~^0.233^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~312~^0.090^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~315~^0.140^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~405~^0.024^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~406~^0.466^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~410~^0.224^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~415~^0.044^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03084~^~606~^0.236^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~613~^0.149^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~614~^0.053^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~617~^0.247^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~618~^0.207^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~619~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~620~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~626~^0.034^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~645~^0.294^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03084~^~646~^0.241^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~312~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~315~^0.060^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~404~^0.022^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~405~^0.032^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~406~^0.539^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~410~^0.162^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~415~^0.052^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03085~^~606~^0.485^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~612~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~613~^0.336^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~614~^0.102^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~617~^0.576^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~618~^0.355^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~619~^0.021^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~620~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~621~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~626~^0.085^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~628~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~645~^0.687^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03085~^~646~^0.391^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~312~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~315~^0.090^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~404~^0.038^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~405~^0.076^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~406~^0.516^0^^~12~^~MA~^^^^^^^^^^~02/01/2009~ -~03089~^~410~^0.176^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~415~^0.036^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03089~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~606~^1.291^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~607~^0.063^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~608~^0.031^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~609~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~610~^0.036^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~611~^0.033^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~612~^0.200^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~613~^0.609^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~614~^0.242^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~617~^0.491^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~618~^0.075^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~619~^0.028^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~626~^0.061^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~645~^0.581^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~646~^0.103^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03089~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03089~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~ -~03090~^~312~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~404~^0.056^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~405~^0.064^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~406~^0.545^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~415~^0.016^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~501~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~502~^0.078^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~503~^0.130^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~504~^0.234^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~505~^0.148^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~506~^0.090^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~507~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~508~^0.132^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~509~^0.123^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~510~^0.147^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~511~^0.102^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~512~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~513~^0.085^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~514~^0.167^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~515~^0.665^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~516~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~517~^0.293^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~518~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03090~^~606~^1.175^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~607~^0.057^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~608~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~609~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~610~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~611~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~612~^0.181^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~613~^0.557^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~614~^0.221^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~617~^0.453^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~618~^0.105^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~619~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~626~^0.055^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~645~^0.534^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03090~^~646~^0.132^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03091~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^~1~^~04/01/2007~ -~03091~^~315~^0.265^2^^~1~^~A~^^^1^0.200^0.330^1^^^^~04/01/2007~ -~03091~^~404~^0.026^28^0.001^~6~^~JA~^^^2^0.024^0.028^2^0.021^0.031^~4~^~04/01/2007~ -~03091~^~405~^0.079^30^0.003^~6~^~JA~^^^2^0.075^0.085^2^0.065^0.092^~4~^~04/01/2007~ -~03091~^~406~^0.361^26^0.019^~6~^~JA~^^^2^0.339^0.399^2^0.280^0.443^~4~^~04/01/2007~ -~03091~^~410~^0.041^2^^~1~^~A~^^^1^0.041^0.041^^^^~1~^~04/01/2007~ -~03091~^~415~^0.038^12^0.001^~6~^~JA~^^^2^0.037^0.040^2^0.035^0.041^~4~^~04/01/2007~ -~03091~^~501~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~502~^0.055^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~503~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~504~^0.085^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~505~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~506~^0.019^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~507~^0.011^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~508~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~509~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~510~^0.071^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~511~^0.072^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~512~^0.036^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~513~^0.060^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~514~^0.254^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~515~^0.171^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~516~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~517~^0.066^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~518~^0.069^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03091~^~606~^0.039^1^^~11~^~JO~^^^2^0.020^0.023^^^^^~04/01/2007~ -~03091~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~03091~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~03091~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~613~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03091~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~618~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03091~^~619~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03091~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~646~^0.116^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03091~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03091~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03092~^~312~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~404~^0.021^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~405~^0.102^13^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~406~^0.321^13^0.011^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~410~^0.151^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~415~^0.035^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~501~^0.014^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~502~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~503~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~504~^0.078^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~505~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~506~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~507~^0.010^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~508~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~509~^0.042^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~510~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~511~^0.066^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~512~^0.033^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~513~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~514~^0.234^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~515~^0.157^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~516~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~517~^0.061^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~518~^0.063^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03092~^~606~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~613~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~617~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~618~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~619~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~645~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03092~^~646~^0.052^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03093~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~315~^0.080^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~405~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~406~^0.230^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03093~^~410~^0.051^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1996~ -~03093~^~415~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03093~^~606~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~613~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~614~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~617~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~618~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~619~^0.062^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~645~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03093~^~646~^0.102^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03096~^~312~^0.040^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~315~^0.280^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~404~^0.040^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~405~^0.110^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~406~^0.460^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~410~^0.286^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~415~^0.080^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03096~^~606~^1.117^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~607~^0.056^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~608~^0.033^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~609~^0.019^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~610~^0.044^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~611~^0.049^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~612~^0.175^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~613~^0.486^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~614~^0.214^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~617~^0.474^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~618~^0.088^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~619~^0.043^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~626~^0.040^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~645~^0.539^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03096~^~646~^0.132^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03098~^~312~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~404~^0.011^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~405~^0.043^14^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~406~^0.132^10^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~410~^0.100^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03098~^~415~^0.024^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~501~^0.012^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~502~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~503~^0.038^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~504~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~505~^0.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~506~^0.010^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~507~^0.007^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~508~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~509~^0.035^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~510~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~511~^0.030^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~512~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~513~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~514~^0.086^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~515~^0.292^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~516~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~517~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~518~^0.043^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03098~^~606~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~617~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~618~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~619~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~645~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03098~^~646~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~312~^0.041^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~404~^0.023^32^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~405~^0.040^28^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~406~^0.463^30^0.031^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~410~^0.240^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~415~^0.073^20^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~501~^0.011^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~502~^0.022^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~503~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~504~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~505~^0.020^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~506~^0.009^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~507~^0.006^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~508~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~509~^0.019^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~510~^0.030^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~511~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~512~^0.012^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~513~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~514~^0.123^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~515~^0.218^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~516~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~517~^0.020^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~518~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03099~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~613~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~617~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~618~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~619~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~645~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03099~^~646~^0.047^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~312~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~404~^0.024^23^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~405~^0.041^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~406~^0.497^22^0.031^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~410~^0.278^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~415~^0.080^11^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~501~^0.011^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~502~^0.023^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~503~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~504~^0.033^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~505~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~506~^0.009^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~507~^0.006^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~508~^0.025^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~509~^0.020^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~510~^0.031^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~511~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~512~^0.013^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~513~^0.041^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~514~^0.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~515~^0.225^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~516~^0.022^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~517~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~518~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03100~^~606~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~613~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~617~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~618~^0.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~645~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03100~^~646~^0.093^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03104~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^1^^^~1~^~03/01/2007~ -~03104~^~315~^0.083^2^^~1~^~A~^^^1^0.037^0.130^1^^^~1~^~03/01/2007~ -~03104~^~404~^0.029^2^^~1~^~A~^^^1^0.021^0.037^1^^^^~03/01/2007~ -~03104~^~405~^0.048^2^^~6~^~JA~^^^2^0.035^0.056^2^^^^~03/01/2007~ -~03104~^~406~^0.683^2^^~1~^~A~^^^1^0.540^0.826^1^^^^~03/01/2007~ -~03104~^~410~^0.212^5^^~6~^~JA~^^^2^0.182^0.220^^^^~2, 3~^~03/01/2007~ -~03104~^~415~^0.070^1^^~6~^~JA~^^^2^0.055^0.092^2^^^^~03/01/2007~ -~03104~^~606~^0.020^1^^~11~^~JO~^^^2^0.020^0.041^^^^^~03/01/2007~ -~03104~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03104~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03104~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03104~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~617~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03104~^~618~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03104~^~619~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03104~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03104~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03104~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^1^^^~1~^~03/01/2007~ -~03105~^~315~^0.083^2^^~1~^~A~^^^1^0.037^0.130^1^^^~1~^~03/01/2007~ -~03105~^~404~^0.029^2^^~1~^~A~^^^1^0.021^0.037^1^^^^~03/01/2007~ -~03105~^~405~^0.048^2^^~6~^~JA~^^^2^0.035^0.056^2^^^^~03/01/2007~ -~03105~^~406~^0.683^2^^~1~^~A~^^^1^0.540^0.826^1^^^^~03/01/2007~ -~03105~^~410~^0.212^5^^~6~^~JA~^^^2^0.182^0.220^^^^~2, 3~^~03/01/2007~ -~03105~^~415~^0.070^1^^~6~^~JA~^^^2^0.055^0.092^2^^^^~03/01/2007~ -~03105~^~606~^0.020^1^^~11~^~JO~^^^2^0.020^0.041^^^^^~03/01/2007~ -~03105~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03105~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03105~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03105~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~617~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03105~^~618~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03105~^~619~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03105~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03105~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03105~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03108~^~312~^0.081^17^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~404~^0.028^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~405~^0.033^21^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~406~^0.358^19^0.025^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~410~^0.390^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~415~^0.093^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~501~^0.022^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~502~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~503~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~504~^0.078^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~505~^0.044^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~506~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~507~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~508~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~509~^0.041^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~510~^0.073^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~511~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~512~^0.026^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~513~^0.061^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~514~^0.199^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~515~^0.118^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~516~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~517~^0.055^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~518~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03108~^~606~^0.021^0^^~4~^^^^^^^^^^^~03/01/1992~ -~03108~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~613~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~617~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~618~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~619~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~645~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03108~^~646~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~312~^0.100^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~404~^0.026^14^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~405~^0.034^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~406~^0.384^14^0.016^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~410~^0.408^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~415~^0.113^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~501~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~502~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~503~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~504~^0.076^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~505~^0.043^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~506~^0.023^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~507~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~508~^0.061^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~509~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~510~^0.071^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~511~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~512~^0.025^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~513~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~514~^0.195^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~515~^0.115^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~516~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~517~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~518~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03109~^~606~^0.021^0^^~4~^^^^^^^^^^^~03/01/1992~ -~03109~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~613~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~617~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~618~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~619~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~645~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03109~^~646~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03112~^~312~^0.070^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~315~^0.070^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03112~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~405~^0.010^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~406~^0.350^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~410~^0.305^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03112~^~415~^0.070^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~ -~03112~^~606~^0.015^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~613~^0.009^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~617~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~618~^0.019^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~619~^0.006^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~626~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~645~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03112~^~646~^0.025^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~ -~03113~^~312~^0.418^6^0.003^~1~^~A~^^^1^0.408^0.426^5^0.410^0.426^~2, 3~^~01/01/2016~ -~03113~^~315~^3.958^6^0.045^~1~^~A~^^^1^3.830^4.160^5^3.842^4.075^~2, 3~^~01/01/2016~ -~03113~^~404~^1.393^3^0.009^~1~^~A~^^^1^1.380^1.410^2^1.355^1.431^~2, 3~^~01/01/2016~ -~03113~^~405~^1.633^3^0.033^~1~^~A~^^^1^1.600^1.700^2^1.490^1.777^~2, 3~^~01/01/2016~ -~03113~^~406~^21.733^3^2.285^~1~^~A~^^^1^19.300^26.300^2^11.902^31.565^~2, 3~^~01/01/2016~ -~03113~^~410~^0.985^2^^~1~^~A~^^^1^0.970^1.000^1^^^^~01/01/2016~ -~03113~^~415~^0.843^3^0.023^~1~^~A~^^^1^0.820^0.890^2^0.743^0.944^~2, 3~^~01/01/2016~ -~03113~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2016~ -~03113~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~606~^0.844^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~01/01/2016~ -~03113~^~612~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.009^0.020^~2, 3~^~01/01/2016~ -~03113~^~613~^0.745^3^0.017^~1~^~A~^^^1^0.712^0.766^2^0.673^0.818^~2, 3~^~01/01/2016~ -~03113~^~614~^0.066^3^0.002^~1~^~A~^^^1^0.062^0.069^2^0.057^0.076^~2, 3~^~01/01/2016~ -~03113~^~615~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~01/01/2016~ -~03113~^~617~^1.535^3^0.036^~1~^~AS~^^^1^1.480^1.602^2^1.381^1.688^~2, 3~^~01/01/2016~ -~03113~^~618~^1.733^3^0.037^~1~^~AS~^^^1^1.663^1.789^2^1.574^1.892^~2, 3~^~01/01/2016~ -~03113~^~619~^0.060^3^0.002^~1~^~AS~^^^1^0.056^0.064^2^0.050^0.070^~2, 3~^~01/01/2016~ -~03113~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~624~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~01/01/2016~ -~03113~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~626~^0.009^3^0.000^~1~^~AS~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~01/01/2016~ -~03113~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~628~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~2, 3~^~01/01/2016~ -~03113~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~630~^0.003^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~01/01/2016~ -~03113~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~645~^2.588^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~646~^2.969^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2016~ -~03113~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~01/01/2016~ -~03113~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~665~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~671~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~01/01/2016~ -~03113~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2016~ -~03113~^~673~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~01/01/2016~ -~03113~^~674~^1.535^3^0.036^~1~^~A~^^^1^1.480^1.602^2^1.381^1.688^~2, 3~^~01/01/2016~ -~03113~^~675~^1.731^3^0.037^~1~^~A~^^^1^1.661^1.787^2^1.572^1.890^~2, 3~^~01/01/2016~ -~03113~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2016~ -~03113~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2016~ -~03113~^~687~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~01/01/2016~ -~03113~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2016~ -~03113~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~03113~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~851~^0.060^3^0.002^~1~^~A~^^^1^0.056^0.063^2^0.051^0.069^~2, 3~^~01/01/2016~ -~03113~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03113~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2016~ -~03114~^~312~^0.100^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~315~^0.120^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~404~^0.060^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~405~^0.060^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~406~^0.560^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~410~^0.314^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~415~^0.110^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03114~^~606~^0.095^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~613~^0.088^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~614~^0.006^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~617~^0.166^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~618~^0.262^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~619~^0.019^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~645~^0.166^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03114~^~646~^0.280^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03115~^~312~^0.031^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~315~^0.034^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~404~^0.040^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~405~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~406~^0.087^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~410~^0.119^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~415~^0.041^0^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03115~^~606~^0.020^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~613~^0.014^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~614~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~617~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~618~^0.025^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~619~^0.005^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~645~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03115~^~646~^0.030^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~03116~^~312~^0.038^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~404~^0.012^34^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~405~^0.028^34^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~406~^0.061^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~410~^0.110^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~415~^0.031^35^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03116~^~606~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~613~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~618~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~619~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~645~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03116~^~646~^0.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~312~^0.035^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~404~^0.012^37^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~405~^0.027^34^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~406~^0.063^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~410~^0.100^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~415~^0.030^31^^~1~^^^^^^^^^^^~12/01/1978~ -~03117~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03117~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03117~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03117~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03118~^~312~^0.034^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~404~^0.008^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~405~^0.013^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~406~^0.195^16^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~410~^0.130^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~415~^0.030^8^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03118~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03118~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03118~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03118~^~646~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~03119~^~312~^0.034^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~404~^0.013^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~405~^0.047^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~406~^0.512^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~410~^0.290^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~415~^0.041^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~501~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~502~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~503~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~504~^0.140^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~505~^0.081^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~506~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~507~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~508~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~509~^0.067^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~510~^0.077^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~511~^0.060^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~512~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~513~^0.070^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~514~^0.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~515~^0.275^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~516~^0.036^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~517~^0.161^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~518~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03119~^~606~^0.076^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~613~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~617~^0.115^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~618~^0.171^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~619~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~645~^0.116^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03119~^~646~^0.176^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~312~^0.038^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~404~^0.013^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~405~^0.048^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~406~^0.504^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~410~^0.327^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~415~^0.041^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~501~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~502~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~503~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~504~^0.141^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~505~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~506~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~507~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~508~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~509~^0.068^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~510~^0.078^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~511~^0.060^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~512~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~513~^0.071^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~514~^0.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~515~^0.276^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~516~^0.036^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~517~^0.161^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~518~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03120~^~606~^0.074^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~613~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~617~^0.115^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~618~^0.173^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~619~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~645~^0.116^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03120~^~646~^0.178^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03121~^~312~^0.061^26^0.017^~6~^~JA~^^^2^0.030^0.090^2^-0.014^0.136^~1, 4~^~03/01/2007~ -~03121~^~315~^0.218^19^0.028^~1~^~A~^^^1^0.190^0.247^1^-0.143^0.580^~4~^~03/01/2007~ -~03121~^~404~^0.087^45^0.006^~6~^~JA~^^^2^0.081^0.093^1^0.011^0.163^~4~^~03/01/2007~ -~03121~^~405~^0.065^41^0.004^~6~^~JA~^^^2^0.061^0.069^1^0.015^0.114^~4~^~03/01/2007~ -~03121~^~406~^1.119^45^0.101^~6~^~JA~^^^2^1.018^1.220^1^-0.164^2.402^~4~^~03/01/2007~ -~03121~^~410~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~415~^0.016^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~606~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03121~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03121~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~613~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~617~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~618~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~619~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03121~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~645~^0.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~646~^0.200^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03121~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03121~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03122~^~312~^0.080^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~315~^0.150^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03122~^~404~^0.100^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~405~^0.060^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~406~^0.850^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~410~^0.345^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1996~ -~03122~^~415~^0.060^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03122~^~606~^0.140^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~613~^0.128^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~614~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~617~^0.071^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~618~^0.301^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~619~^0.071^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~645~^0.070^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03122~^~646~^0.370^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03127~^~312~^0.060^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~404~^0.015^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~405~^0.104^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~406~^0.216^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~415~^0.075^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~501~^0.036^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~502~^0.101^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~503~^0.112^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~504~^0.221^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~505~^0.148^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~506~^0.055^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~507~^0.031^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~508~^0.096^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~509~^0.115^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~510~^0.151^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~511~^0.152^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~512~^0.064^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~513~^0.117^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~514~^0.203^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~515~^0.421^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~516~^0.097^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~517~^0.207^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~518~^0.103^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03127~^~606~^0.702^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~607~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~608~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~609~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~610~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~611~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~612~^0.112^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~613~^0.310^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~614~^0.130^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~617~^0.291^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~618~^0.060^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~619~^0.071^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~626~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~645~^0.332^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03127~^~646~^0.133^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~312~^0.036^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03128~^~404~^0.008^28^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~405~^0.013^29^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~406~^0.196^29^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~410~^0.138^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~415~^0.028^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03128~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03128~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03128~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03128~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03129~^~312~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~404~^0.012^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~405~^0.031^23^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~406~^0.183^24^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~410~^0.150^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~415~^0.115^8^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03129~^~606~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~613~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~617~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~618~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~619~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03129~^~645~^0.010^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03129~^~646~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03130~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^~1~^~03/01/2007~ -~03130~^~315~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~03/01/2007~ -~03130~^~404~^0.015^2^^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~03130~^~405~^0.077^2^^~1~^~A~^^^1^0.075^0.079^1^^^^~03/01/2007~ -~03130~^~406~^1.640^2^^~1~^~A~^^^1^1.620^1.660^1^^^^~03/01/2007~ -~03130~^~410~^0.083^2^^~1~^~A~^^^1^0.072^0.094^1^^^^~03/01/2007~ -~03130~^~415~^0.018^10^0.003^~6~^~JA~^^^2^0.015^0.043^1^-0.016^0.052^~1, 2, 3~^~03/01/2007~ -~03130~^~606~^0.020^1^^~11~^~JO~^^^2^0.020^0.020^^^^^~03/01/2007~ -~03130~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03130~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03130~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03130~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03130~^~618~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03130~^~619~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03130~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03130~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03130~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03130~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03131~^~312~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^~1~^~04/01/2007~ -~03131~^~315~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~04/01/2007~ -~03131~^~404~^0.015^2^^~1~^~A~^^^1^^^^^^^~04/01/2007~ -~03131~^~405~^0.077^2^^~1~^~A~^^^1^0.075^0.079^1^^^^~04/01/2007~ -~03131~^~406~^1.640^2^^~1~^~A~^^^1^1.620^1.660^1^^^^~04/01/2007~ -~03131~^~410~^0.083^2^^~1~^~A~^^^1^0.072^0.094^1^^^^~04/01/2007~ -~03131~^~415~^0.018^10^0.003^~6~^~JA~^^^2^0.015^0.043^1^-0.016^0.052^~1, 2, 3~^~04/01/2007~ -~03131~^~606~^0.020^1^^~11~^~JO~^^^2^0.020^0.020^^^^^~04/01/2007~ -~03131~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03131~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03131~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03131~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~03131~^~618~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03131~^~619~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~03131~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~03131~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03131~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~03132~^~312~^0.065^16^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~404~^0.013^21^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~405~^0.028^21^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~406~^0.189^22^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~410~^0.090^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~415~^0.008^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03132~^~606~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~613~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~617~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~618~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~645~^0.042^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03132~^~646~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~312~^0.080^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~404~^0.014^24^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~405~^0.030^23^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~406~^0.188^23^0.010^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~410~^0.095^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~415~^0.010^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03133~^~606~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~613~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~617~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~618~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~645~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03133~^~646~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~312~^0.037^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~404~^0.008^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~405~^0.028^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~406~^0.213^16^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~410~^0.110^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~415~^0.024^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03134~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03134~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03134~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03134~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03135~^~312~^0.038^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~404~^0.006^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~405~^0.030^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~406~^0.206^15^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~410~^0.114^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~415~^0.029^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03135~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03135~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03135~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03135~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03136~^~312~^0.061^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~404~^0.022^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~405~^0.075^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~406~^0.525^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~410~^0.140^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~415~^0.081^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03136~^~606~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~613~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~617~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~618~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~645~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03136~^~646~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~312~^0.062^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03137~^~404~^0.022^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~405~^0.083^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~406~^0.526^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~410~^0.141^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~415~^0.086^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03137~^~606~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~613~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~617~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~618~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~645~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03137~^~646~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03139~^~312~^0.164^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~404~^0.020^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~405~^0.210^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~406~^0.720^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~415~^0.110^0^^~12~^^^^^^^^^^^~04/01/2005~ -~03139~^~606~^0.020^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~613~^0.013^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~614~^0.003^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~617~^0.130^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~618~^0.044^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~626~^0.002^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~645~^0.130^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03139~^~646~^0.040^0^^~4~^^^^^^^^^^^~04/01/2005~ -~03140~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~405~^0.020^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~406~^0.200^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~ -~03140~^~410~^0.100^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~415~^0.080^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~606~^0.039^0^^~4~^~O~^^^^^^^^^^~02/01/2007~ -~03140~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~613~^0.031^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~617~^0.032^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~618~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~619~^0.022^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~626~^0.028^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~03140~^~645~^0.060^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03140~^~646~^0.030^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~03141~^~312~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~315~^0.030^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~404~^0.010^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~405~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~406~^0.130^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03141~^~415~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03141~^~606~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03141~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~613~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03141~^~614~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~617~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03141~^~618~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03141~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03141~^~645~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03141~^~646~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03142~^~312~^0.041^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03142~^~404~^0.014^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~405~^0.029^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~406~^0.140^16^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~410~^0.119^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03142~^~415~^0.030^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03142~^~606~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~613~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~617~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~618~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~619~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~645~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03142~^~646~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~312~^0.044^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03143~^~404~^0.014^18^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~405~^0.030^17^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~406~^0.145^18^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~410~^0.125^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03143~^~415~^0.030^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03143~^~606~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~613~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~617~^0.030^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~618~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~619~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~645~^0.030^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03143~^~646~^0.051^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~312~^0.045^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~404~^0.010^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~405~^0.030^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~406~^0.140^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03144~^~410~^0.131^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~415~^0.037^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03144~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03144~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03144~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03144~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03145~^~312~^0.046^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~404~^0.010^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~405~^0.030^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~406~^0.140^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03145~^~410~^0.130^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~415~^0.039^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03145~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03145~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03145~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03145~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03147~^~312~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03147~^~315~^0.100^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03147~^~404~^0.010^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~405~^0.031^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~406~^0.163^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~ -~03147~^~410~^0.135^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03147~^~415~^0.100^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03147~^~606~^0.040^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~613~^0.034^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~614~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~617~^0.009^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~618~^0.040^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~619~^0.011^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~626~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~645~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03147~^~646~^0.050^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03150~^~312~^0.035^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03150~^~404~^0.021^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~405~^0.026^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~406~^0.078^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~410~^0.101^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03150~^~415~^0.039^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03150~^~606~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~613~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~618~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~619~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~645~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03150~^~646~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~312~^0.036^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03151~^~404~^0.022^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~405~^0.027^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~406~^0.079^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~410~^0.104^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03151~^~415~^0.039^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03151~^~606~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~613~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~618~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~645~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03151~^~646~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~312~^0.054^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03152~^~404~^0.014^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~405~^0.028^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~406~^0.106^13^0.006^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~410~^0.090^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~415~^0.034^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03152~^~606~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~613~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~618~^0.051^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~645~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03152~^~646~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~312~^0.053^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03153~^~404~^0.012^19^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~405~^0.029^19^0.010^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~406~^0.104^19^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~410~^0.088^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~415~^0.034^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03153~^~606~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~613~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~618~^0.051^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~645~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03153~^~646~^0.063^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03154~^~312~^0.090^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~315~^0.060^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~404~^0.010^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~405~^0.020^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~406~^0.100^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~410~^0.103^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~415~^0.050^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03154~^~606~^0.041^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~613~^0.035^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~614~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~617~^0.008^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~618~^0.066^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~619~^0.013^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~645~^0.008^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03154~^~646~^0.079^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03156~^~312~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~404~^0.015^14^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~405~^0.019^15^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~406~^0.182^14^0.018^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~410~^0.148^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03156~^~415~^0.092^6^0.006^~1~^^^^^^^^^^^~12/01/1978~ -~03156~^~606~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~613~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~617~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~618~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~619~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~645~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03156~^~646~^0.020^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03157~^~312~^0.039^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~404~^0.019^29^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~405~^0.019^29^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~406~^0.168^29^0.016^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~410~^0.143^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03157~^~415~^0.082^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03157~^~606~^0.000^0^^~7~^^^^^^^^^^^~05/01/2007~ -~03157~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~613~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~614~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~617~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~618~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~619~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~03157~^~645~^0.000^0^^~7~^^^^^^^^^^^~05/01/2007~ -~03157~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~03158~^~312~^0.140^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~404~^0.021^20^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~405~^0.028^17^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~406~^0.207^16^0.015^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~410~^0.089^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03158~^~415~^0.016^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03158~^~606~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~613~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~617~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~618~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~619~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~645~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03158~^~646~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~312~^0.105^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~404~^0.024^12^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~405~^0.023^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~406~^0.183^11^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~410~^0.095^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03159~^~415~^0.013^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03159~^~606~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~613~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~617~^0.030^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~618~^0.043^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~619~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~645~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03159~^~646~^0.058^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03160~^~404~^0.010^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~405~^0.022^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~406~^0.263^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03160~^~415~^0.014^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03161~^~312~^0.030^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~315~^0.050^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~404~^0.010^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03161~^~405~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~406~^0.470^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~410~^0.170^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~415~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03161~^~606~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~613~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~617~^0.053^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~618~^0.068^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~619~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~626~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03161~^~645~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03161~^~646~^0.078^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03162~^~312~^0.044^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~404~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~405~^0.028^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~406~^0.108^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03162~^~410~^0.280^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03162~^~415~^0.023^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03163~^~312~^0.080^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~315~^0.082^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~404~^0.010^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~405~^0.030^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~406~^0.550^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~410~^0.145^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~415~^0.290^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03163~^~606~^0.106^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~613~^0.075^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~614~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~617~^0.021^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~618~^0.063^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~619~^0.022^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~626~^0.006^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~645~^0.028^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03163~^~646~^0.085^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03164~^~312~^0.056^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~404~^0.017^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~405~^0.034^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~406~^0.120^7^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~410~^0.163^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03164~^~415~^0.037^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03164~^~606~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~617~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~618~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~619~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~645~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03164~^~646~^0.073^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~312~^0.057^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~404~^0.018^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~405~^0.043^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~406~^0.103^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~410~^0.164^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03165~^~415~^0.042^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03165~^~606~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~617~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~618~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~619~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~645~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03165~^~646~^0.073^0^^~4~^^^^^^^^^^^~05/01/2003~ -~03166~^~312~^0.040^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03166~^~404~^0.007^22^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~405~^0.016^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~406~^0.083^19^^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~410~^0.116^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03166~^~415~^0.029^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03166~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~618~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~645~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03166~^~646~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03167~^~312~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~315~^0.080^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~404~^0.010^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~405~^0.010^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03167~^~406~^0.140^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~410~^0.125^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1996~ -~03167~^~415~^0.060^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03167~^~606~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~613~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~617~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~618~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~619~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~03167~^~645~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03167~^~646~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~03168~^~312~^0.037^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03168~^~404~^0.008^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~405~^0.011^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~406~^0.213^6^0.006^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~410~^0.082^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03168~^~415~^0.022^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03168~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~618~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~645~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03168~^~646~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~312~^0.062^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~404~^0.005^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~405~^0.002^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~406~^0.301^4^0.012^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~410~^0.181^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03171~^~415~^0.035^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03171~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~617~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~618~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~645~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03171~^~646~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~312~^0.046^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03172~^~404~^0.045^25^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~405~^0.028^25^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~406~^0.239^25^0.013^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~410~^0.137^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03172~^~415~^0.054^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03172~^~606~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~613~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~617~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~618~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~619~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~626~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03172~^~645~^0.050^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03172~^~646~^0.060^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03173~^~312~^0.040^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03173~^~404~^0.038^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~405~^0.028^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~406~^0.185^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03173~^~410~^0.120^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03173~^~415~^0.038^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~312~^0.044^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03174~^~404~^0.043^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~405~^0.027^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~406~^0.263^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~410~^0.134^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03174~^~415~^0.062^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03174~^~606~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~613~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~617~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~618~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~645~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03174~^~646~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~312~^0.084^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03175~^~404~^0.058^4^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~405~^0.028^4^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~406~^0.267^4^0.023^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~410~^0.096^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03175~^~415~^0.056^4^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03175~^~606~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~613~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~617~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~618~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~645~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03175~^~646~^0.020^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03176~^~312~^0.042^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03176~^~404~^0.051^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~405~^0.042^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~406~^0.180^13^0.011^~1~^^^^^^^^^^^~12/01/1978~ -~03176~^~410~^0.148^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03176~^~415~^0.054^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~312~^0.044^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~404~^0.050^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~405~^0.023^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~406~^0.194^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~410~^0.059^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03177~^~415~^0.062^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03177~^~606~^0.010^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03177~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~613~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~617~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~618~^0.017^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~619~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~645~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03177~^~646~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03178~^~312~^0.046^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03178~^~404~^0.044^18^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~405~^0.120^18^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~406~^0.396^18^0.036^~1~^^^^^^^^^^^~12/01/1978~ -~03178~^~410~^0.137^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03178~^~415~^0.061^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~312~^0.040^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03179~^~404~^0.023^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~405~^0.014^12^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~406~^0.123^13^^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~410~^0.115^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03179~^~415~^0.043^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03179~^~606~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~613~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~617~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~618~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~619~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~645~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03179~^~646~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~312~^0.467^5^^~1~^^^^^^^^^^^~12/01/1978~ -~03181~^~404~^0.892^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~405~^1.070^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~406~^14.280^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~410~^4.920^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~415~^0.714^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03181~^~606~^0.894^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03181~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~611~^0.002^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~612~^0.007^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~613~^0.602^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~614~^0.283^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~617~^1.226^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~618~^3.543^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~619~^0.316^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~626~^0.220^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~628~^0.004^0^^~4~^^^^^^^^^^^~07/01/2013~ -~03181~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03181~^~645~^1.450^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03181~^~646~^3.859^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~03184~^~312~^0.620^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~315~^2.520^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03184~^~404~^0.330^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~405~^1.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~406~^13.330^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~410~^0.953^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~415~^0.660^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03184~^~606~^0.639^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~609~^0.016^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~613~^0.497^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~614~^0.087^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~617~^1.216^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~618~^1.606^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~619~^0.257^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~620~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~626~^0.021^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~628~^0.026^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~630~^0.009^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~645~^1.277^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03184~^~646~^1.866^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03185~^~312~^0.334^5^^~1~^^^^^^^^^^^~03/01/2003~ -~03185~^~404~^1.166^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~405~^1.333^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~406~^15.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~410~^1.074^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03185~^~415~^1.166^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03185~^~501~^0.158^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~502~^0.400^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~503~^0.477^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~504~^1.041^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~505~^0.404^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~506~^0.240^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~507~^0.346^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~508~^0.672^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~509~^0.491^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~510~^0.653^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~511~^0.703^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~512~^0.286^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~513~^0.583^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~514~^0.726^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~515~^3.184^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~516~^0.551^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~517~^1.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~518~^0.570^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03185~^~606~^0.769^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03185~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~609~^0.006^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~611~^0.009^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~612~^0.007^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~613~^0.654^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~614~^0.046^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~617~^1.192^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~618~^1.616^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~619~^0.040^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~620~^0.001^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~626~^0.010^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03185~^~645~^1.206^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03185~^~646~^1.697^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~312~^0.256^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03186~^~404~^3.780^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~405~^3.560^4^0.110^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~406~^20.560^4^0.390^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~415~^0.408^6^0.031^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~501~^0.126^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~502~^0.363^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~503~^0.430^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~504~^0.956^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~505~^0.460^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~506~^0.218^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~507~^0.205^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~508~^0.546^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~509~^0.439^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~510~^0.604^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~511~^0.505^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~512~^0.319^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~513~^0.437^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~514~^0.783^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~515~^2.478^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~516~^0.369^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~517~^0.863^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~518~^0.505^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03186~^~606~^0.846^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~609~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~611~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~612~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~613~^0.706^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~614~^0.049^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~617~^1.203^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~618~^1.639^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~619~^0.054^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~620~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~626~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~645~^1.223^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03186~^~646~^1.734^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~312~^0.055^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03187~^~404~^0.126^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~405~^0.156^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~406~^2.020^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~410~^0.195^0^^~4~^~NR~^^^^^^^^^^~12/01/1978~ -~03187~^~415~^0.101^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03187~^~501~^0.013^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~502~^0.035^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~503~^0.044^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~504~^0.088^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~505~^0.036^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~506~^0.025^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~507~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~508~^0.063^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~509~^0.044^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~510~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~511~^0.067^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~512~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~513~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~514~^0.083^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~515~^0.310^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~516~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~517~^0.086^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~518~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03187~^~606~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03187~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~609~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~613~^0.076^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~614~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~617~^0.133^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~618~^0.181^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~619~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~645~^0.135^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03187~^~646~^0.191^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~312~^0.055^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03188~^~404~^0.126^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~405~^0.156^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~406~^2.020^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~410~^0.195^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03188~^~415~^0.101^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03188~^~501~^0.013^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~502~^0.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~503~^0.043^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~504~^0.086^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~505~^0.035^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~506~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~507~^0.026^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~508~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~509~^0.043^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~510~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~511~^0.065^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~512~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~513~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~514~^0.081^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~515~^0.302^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~516~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~517~^0.084^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~518~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03188~^~606~^0.072^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~609~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~613~^0.060^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~617~^0.106^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~618~^0.145^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~645~^0.108^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03188~^~646~^0.152^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03189~^~312~^0.419^15^0.003^~1~^~A~^^^1^0.386^0.478^6^0.413^0.426^~2, 3~^~04/01/2015~ -~03189~^~315~^3.894^15^0.040^~1~^~A~^^^1^3.180^4.440^7^3.799^3.989^~2, 3~^~04/01/2016~ -~03189~^~404~^1.431^8^0.011^~1~^~A~^^^1^1.380^1.680^3^1.392^1.470^~2, 3~^~04/01/2016~ -~03189~^~405~^1.586^8^0.027^~1~^~A~^^^1^1.300^1.700^2^1.472^1.700^~2, 3~^~04/01/2016~ -~03189~^~406~^21.348^8^1.851^~1~^~A~^^^1^18.700^26.300^2^13.388^29.308^~2, 3~^~04/01/2016~ -~03189~^~410~^1.871^5^0.023^~1~^~A~^^^1^0.970^7.800^2^1.755^1.988^~2, 3~^~04/01/2016~ -~03189~^~415~^0.853^8^0.019^~1~^~A~^^^1^0.820^0.960^2^0.777^0.930^~2, 3~^~04/01/2016~ -~03189~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2016~ -~03189~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~606~^0.841^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~611~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~04/01/2015~ -~03189~^~612~^0.014^8^0.001^~1~^~A~^^^1^0.012^0.017^2^0.010^0.019^~2, 3~^~04/01/2015~ -~03189~^~613~^0.742^8^0.014^~1~^~A~^^^1^0.627^0.838^3^0.691^0.794^~2, 3~^~04/01/2016~ -~03189~^~614~^0.066^8^0.002^~1~^~A~^^^1^0.054^0.072^2^0.059^0.073^~2, 3~^~04/01/2015~ -~03189~^~615~^0.006^8^0.000^~1~^~A~^^^1^0.005^0.007^2^0.005^0.007^~2, 3~^~04/01/2015~ -~03189~^~617~^1.518^8^0.032^~1~^~AS~^^^1^1.210^1.735^3^1.413^1.624^~2, 3~^~04/01/2016~ -~03189~^~618~^1.690^8^0.032^~1~^~AS~^^^1^1.328^1.806^3^1.580^1.801^~2, 3~^~04/01/2016~ -~03189~^~619~^0.057^8^0.002^~1~^~AS~^^^1^0.035^0.064^2^0.050^0.065^~2, 3~^~04/01/2015~ -~03189~^~620~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03189~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~624~^0.003^8^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.002^0.007^~1, 2, 3~^~04/01/2015~ -~03189~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~626~^0.008^8^0.000^~1~^~AS~^^^1^0.007^0.009^2^0.007^0.009^~2, 3~^~04/01/2015~ -~03189~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~628~^0.031^8^0.001^~1~^~A~^^^1^0.025^0.039^3^0.028^0.033^~2, 3~^~04/01/2015~ -~03189~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~630~^0.002^8^0.000^~1~^~AS~^^^1^0.000^0.007^3^0.001^0.003^~2, 3~^~04/01/2015~ -~03189~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~645~^1.564^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03189~^~646~^1.748^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~03189~^~652~^0.002^8^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~653~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~04/01/2015~ -~03189~^~654~^0.004^8^0.000^~1~^~A~^^^1^0.003^0.006^2^0.004^0.004^~2, 3~^~04/01/2015~ -~03189~^~662~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~663~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.005^1^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~03189~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~665~^0.002^8^0.000^~1~^~A~^^^1^0.000^0.003^2^0.002^0.002^~1, 2, 3~^~04/01/2015~ -~03189~^~670~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~671~^0.004^8^0.000^~1~^~A~^^^1^0.003^0.010^3^0.003^0.005^~2, 3~^~04/01/2015~ -~03189~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~03/01/2007~ -~03189~^~673~^0.008^8^0.000^~1~^~A~^^^1^0.007^0.009^2^0.007^0.009^~2, 3~^~04/01/2015~ -~03189~^~674~^1.518^8^0.032^~1~^~A~^^^1^1.210^1.735^3^1.412^1.624^~2, 3~^~04/01/2016~ -~03189~^~675~^1.688^8^0.032^~1~^~A~^^^1^1.326^1.806^3^1.578^1.799^~2, 3~^~04/01/2016~ -~03189~^~676~^0.002^8^0.000^~1~^~A~^^^1^0.000^0.007^3^0.001^0.003^~1, 2, 3~^~04/01/2015~ -~03189~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2015~ -~03189~^~687~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~04/01/2015~ -~03189~^~689~^0.000^8^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~03189~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03189~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03189~^~851~^0.057^8^0.002^~1~^~A~^^^1^0.035^0.063^2^0.050^0.064^~2, 3~^~04/01/2015~ -~03189~^~852~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~853~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03189~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03189~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~03190~^~312~^0.391^0^^~4~^^^^^^^^^^^~03/01/2003~ -~03190~^~404~^0.833^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~405~^1.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~406~^13.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~415~^0.660^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03190~^~501~^0.157^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~502~^0.417^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~503~^0.501^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~504~^0.978^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~505~^0.558^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~506~^0.266^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~507~^0.272^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~508~^0.624^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~509~^0.497^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~510~^0.699^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~511~^0.711^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~512~^0.362^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~513~^0.491^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~514~^0.986^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~515~^2.603^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~516~^0.505^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~517~^0.807^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~518~^0.582^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03190~^~606~^1.267^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~608~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~609~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~610~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~611~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~612~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~613~^0.972^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~614~^0.097^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~617~^1.384^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~618~^1.970^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~619~^0.166^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~626~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~645~^1.429^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03190~^~646~^2.186^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~312~^0.073^3^0.005^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~404~^0.111^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~405~^0.133^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~406~^1.770^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~410~^0.227^0^^~8~^^^^^^^^^^^~04/01/2016~ -~03191~^~415~^0.089^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03191~^~501~^0.017^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~502~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~503~^0.049^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~504~^0.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~505~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~506~^0.030^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~507~^0.029^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~508~^0.066^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~509~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~510~^0.068^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~511~^0.093^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~512~^0.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~513~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~514~^0.111^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~515~^0.287^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~516~^0.070^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~517~^0.064^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~518~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03191~^~606~^0.125^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~613~^0.105^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~617~^0.215^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~618~^0.242^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~619~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~645~^0.216^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03191~^~646~^0.253^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~312~^0.075^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03192~^~404~^0.111^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~405~^0.133^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~406~^1.770^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~410~^0.227^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03192~^~415~^0.089^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03192~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~502~^0.046^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~503~^0.049^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~504~^0.100^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~505~^0.054^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~508~^0.067^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~509~^0.052^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~511~^0.094^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~512~^0.034^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~514~^0.113^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~515~^0.291^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~516~^0.071^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~517~^0.065^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~518~^0.063^0^^~1~^^^^^^^^^^^~08/01/2004~ -~03192~^~606~^0.126^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~613~^0.106^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~617~^0.215^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~618~^0.242^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~619~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~645~^0.216^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03192~^~646~^0.253^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03193~^~312~^0.529^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~404~^2.771^13^0.061^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~405~^2.842^13^0.030^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~406~^36.292^13^0.808^~1~^^^^^^^^^^^~12/01/1978~ -~03193~^~410~^1.540^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03193~^~415~^0.154^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03194~^~312~^0.231^14^0.006^~1~^~A~^^^1^0.211^0.341^4^0.214^0.248^~2, 3~^~04/01/2015~ -~03194~^~315~^1.402^14^0.012^~1~^~A~^^^1^1.120^2.890^5^1.370^1.433^~2, 3~^~04/01/2015~ -~03194~^~404~^1.195^9^0.022^~1~^~A~^^^1^0.890^1.440^2^1.110^1.280^~2, 3~^~04/01/2015~ -~03194~^~405~^1.459^9^0.028^~1~^~A~^^^1^0.550^1.600^3^1.356^1.562^~2, 3~^~04/01/2015~ -~03194~^~406~^23.006^9^2.053^~1~^~A~^^^1^15.300^26.500^2^14.209^31.804^~2, 3~^~04/01/2015~ -~03194~^~410~^1.601^5^0.079^~1~^~A~^^^1^0.600^7.400^1^0.615^2.587^~2, 3~^~04/01/2015~ -~03194~^~415~^0.885^9^0.016^~1~^~A~^^^1^0.590^0.980^3^0.838^0.932^~2, 3~^~04/01/2015~ -~03194~^~501~^0.094^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~502~^0.316^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~503~^0.290^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~504~^0.559^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~505~^0.304^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~506~^0.185^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~507~^0.169^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~508~^0.364^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~509~^0.324^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~510~^0.446^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~511~^0.646^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~512~^0.193^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~513~^0.425^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~514~^0.696^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~515~^1.291^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~516~^0.366^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~517~^0.316^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~518~^0.342^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03194~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~03194~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~606~^0.234^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~612~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^1^0.000^0.018^~2, 3~^~04/01/2015~ -~03194~^~613~^0.178^6^0.010^~1~^~A~^^^1^0.162^0.360^1^0.061^0.296^~2, 3~^~04/01/2015~ -~03194~^~614~^0.032^6^0.000^~1~^~A~^^^1^0.023^0.035^1^0.027^0.037^~2, 3~^~04/01/2015~ -~03194~^~615~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.011^1^0.004^0.004^~2, 3~^~04/01/2015~ -~03194~^~617~^0.207^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~618~^0.363^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^1^-0.002^0.007^~1, 2, 3~^~04/01/2015~ -~03194~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~628~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.008^1^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~03194~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~645~^0.420^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~646~^0.784^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^1^0.001^0.003^~1, 2, 3~^~04/01/2015~ -~03194~^~654~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.011^1^0.000^0.009^~2, 3~^~04/01/2015~ -~03194~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~663~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^1^0.000^0.002^~1, 2, 3~^~04/01/2015~ -~03194~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~673~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.003^1^0.000^0.002^~1, 2, 3~^~04/01/2015~ -~03194~^~674~^0.207^6^0.009^~1~^~A~^^^1^0.181^0.563^1^0.110^0.305^~2, 3~^~04/01/2015~ -~03194~^~675~^0.363^6^0.024^~1~^~A~^^^1^0.216^0.526^1^0.064^0.662^~2, 3~^~04/01/2015~ -~03194~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~03194~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~03194~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~851~^0.029^6^0.002^~1~^~A~^^^1^0.004^0.037^1^-0.002^0.060^~2, 3~^~04/01/2015~ -~03194~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03194~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~03195~^~312~^0.051^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03195~^~404~^0.260^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~405~^0.422^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~406~^4.017^18^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~415~^0.234^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~501~^0.012^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~502~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~503~^0.048^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~504~^0.116^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~505~^0.068^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~506~^0.020^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~507~^0.014^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~508~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~509~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~510~^0.068^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~511~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~512~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~513~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~514~^0.076^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~515~^0.236^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~516~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~517~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~518~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03195~^~606~^0.114^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~613~^0.096^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~617~^0.101^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~618~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~619~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~626~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~645~^0.104^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03195~^~646~^0.102^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03197~^~312~^0.022^3^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~404~^0.009^8^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~405~^0.044^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~406~^0.049^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~410~^0.878^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03197~^~415~^0.021^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~501~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~502~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~503~^0.100^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~504~^0.172^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~505~^0.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~506~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~507~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~508~^0.092^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~509~^0.084^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~510~^0.122^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~511~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~512~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~513~^0.084^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~514~^0.149^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~515~^0.421^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~516~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~517~^0.161^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~518~^0.118^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~606~^0.610^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~612~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~613~^0.440^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~614~^0.150^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~617~^0.730^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~618~^0.260^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~619~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~620~^0.030^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~626~^0.050^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~628~^0.000^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03197~^~645~^0.790^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03197~^~646~^0.300^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~312~^0.022^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~404~^0.008^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~405~^0.045^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~406~^0.048^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~410~^0.878^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03198~^~415~^0.020^7^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~501~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~502~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~503~^0.100^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~504~^0.172^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~505~^0.127^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~506~^0.051^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~507~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~508~^0.092^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~509~^0.084^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~510~^0.122^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~511~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~512~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~513~^0.084^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~514~^0.149^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~515~^0.421^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~516~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~517~^0.161^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~518~^0.118^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~606~^0.610^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~612~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~613~^0.440^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~614~^0.150^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~617~^0.740^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~618~^0.260^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~619~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~620~^0.030^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~626~^0.050^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~628~^0.000^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03198~^~645~^0.790^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03198~^~646~^0.300^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~312~^0.025^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~404~^0.010^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~405~^0.050^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~406~^0.056^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~410~^1.003^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~415~^0.024^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03199~^~606~^0.490^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~612~^0.010^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~613~^0.350^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~614~^0.120^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~617~^0.570^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~618~^0.290^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~619~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~620~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~626~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~628~^0.000^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~645~^0.610^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03199~^~646~^0.330^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~312~^0.020^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~404~^0.050^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~405~^0.077^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~406~^0.266^16^0.008^~1~^^^^^^^^^^^~12/01/1978~ -~03201~^~410~^1.105^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~415~^0.026^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03201~^~606~^1.640^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~610~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~611~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~612~^0.042^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~613~^1.104^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~614~^0.483^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~617~^2.038^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~618~^0.546^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~619~^0.051^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~620~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~626~^0.168^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~645~^2.207^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03201~^~646~^0.641^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03205~^~312~^0.340^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~315~^2.800^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~404~^0.750^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~405~^0.860^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~406~^9.600^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~415~^0.380^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~606~^1.572^0^^~4~^^^^^^^^^^^~06/01/1996~ -~03205~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~611~^0.023^0^^~12~^~MA~^^^^^^^^^^~02/01/1995~ -~03205~^~612~^0.015^0^^~12~^~MA~^^^^^^^^^^~02/01/1995~ -~03205~^~613~^1.335^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~614~^0.199^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~617~^2.995^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~618~^2.197^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~619~^0.093^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~626~^0.013^0^^~12~^~MA~^^^^^^^^^^~02/01/1995~ -~03205~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03205~^~645~^3.008^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03205~^~646~^2.290^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03206~^~312~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~315~^0.220^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~404~^0.440^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~405~^0.420^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~406~^3.600^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~410~^0.389^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~415~^0.210^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~606~^2.700^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~ -~03206~^~607~^0.015^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~608~^0.009^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~609~^0.005^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~610~^0.012^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~612~^0.061^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~613~^1.738^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~614~^0.840^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~617~^4.798^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~618~^4.020^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~619~^0.300^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~626~^0.051^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~645~^4.865^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03206~^~646~^4.334^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~ -~03209~^~312~^0.130^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~315~^0.770^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~404~^0.350^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~405~^0.330^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~406~^4.050^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~410~^0.466^0^^~4~^~FLM~^^^^^^^^^^~01/01/1999~ -~03209~^~415~^0.120^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~ -~03209~^~606~^1.966^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~612~^0.011^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~613~^0.800^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~614~^0.816^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~617~^15.579^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~618~^0.966^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~619~^0.056^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~624~^0.188^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~626~^0.019^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~628~^0.181^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~645~^15.779^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~646~^1.022^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03209~^~652~^0.150^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03211~^~312~^0.964^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03211~^~404~^3.790^5^0.210^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~405~^4.330^5^0.268^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~406~^23.830^5^1.288^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~415~^0.351^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03211~^~606~^0.960^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~612~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~613~^0.716^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~614~^0.220^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~617~^1.207^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~618~^3.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~619~^0.403^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~626~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~628~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~645~^1.231^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03211~^~646~^3.429^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~312~^0.254^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03212~^~404~^3.970^4^0.335^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~405~^3.800^4^0.110^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~406~^23.320^4^0.500^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~415~^0.686^3^0.037^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~501~^0.154^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~502~^0.444^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~503~^0.464^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~504~^0.821^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~505~^0.452^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~506~^0.229^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~507~^0.184^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~508~^0.400^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~509~^0.368^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~510~^0.547^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~511~^0.603^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~512~^0.273^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~513~^0.496^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~514~^0.857^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~515~^1.523^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~516~^0.364^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~517~^0.418^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~518~^0.467^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03212~^~606~^0.978^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~610~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~612~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~613~^0.790^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~614~^0.098^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~617~^0.955^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~618~^1.288^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~619~^0.214^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~626~^0.026^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~628~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~645~^0.986^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03212~^~646~^1.503^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03213~^~312~^0.074^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03213~^~315~^0.348^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~404~^1.459^4^0.000^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~405~^3.229^4^0.000^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~406~^15.966^5^0.797^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~410~^0.529^0^^~4~^^^^^^^^^^^~07/01/2009~ -~03213~^~415~^5.899^11^0.286^~1~^^^^^^^^^^^~07/01/2009~ -~03213~^~605~^0.020^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~606~^2.352^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~607~^0.081^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~608~^0.022^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~609~^0.025^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~610~^0.055^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~611~^0.057^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~612~^0.267^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~613~^1.142^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~614~^0.595^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~615~^0.027^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~617~^5.851^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~618~^2.847^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~619~^0.031^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~624~^0.077^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~626~^0.119^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~628~^0.019^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~645~^5.990^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~646~^2.878^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03213~^~653~^0.003^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03214~^~312~^0.074^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03214~^~404~^0.499^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~405~^0.429^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~406~^5.739^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~410~^0.531^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03214~^~415~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03214~^~606~^1.048^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~612~^0.011^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~613~^0.447^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~614~^0.415^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~617~^7.821^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~618~^0.560^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~619~^0.032^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~624~^0.094^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~628~^0.091^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~645~^7.922^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~646~^0.591^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03214~^~652~^0.075^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~ -~03215~^~312~^0.145^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~404~^0.463^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~405~^0.357^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~406~^3.560^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~410~^0.540^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03215~^~415~^0.083^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03215~^~605~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/2013~ -~03215~^~606~^0.400^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~613~^0.379^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~614~^0.029^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~617~^0.234^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~618~^0.998^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~619~^0.056^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~626~^0.004^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03215~^~645~^0.238^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03215~^~646~^1.054^0^^~4~^^^^^^^^^^^~08/01/2013~ -~03216~^~312~^0.201^4^0.011^~1~^~A~^^^1^0.181^0.230^3^0.167^0.236^~2, 3~^~01/01/2017~ -~03216~^~315~^1.305^4^0.016^~1~^~A~^^^1^1.280^1.350^3^1.255^1.354^~2, 3~^~01/01/2017~ -~03216~^~404~^0.323^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.285^0.361^~2, 3~^~01/01/2017~ -~03216~^~405~^0.387^3^0.009^~1~^~A~^^^1^0.370^0.400^2^0.349^0.425^~2, 3~^~01/01/2017~ -~03216~^~406~^3.647^3^0.360^~1~^~A~^^^1^2.930^4.060^2^2.099^5.194^~2, 3~^~01/01/2017~ -~03216~^~410~^0.680^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~03216~^~415~^0.160^3^0.006^~1~^~A~^^^1^0.150^0.170^2^0.135^0.185^~2, 3~^~01/01/2017~ -~03216~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~606~^0.810^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~607~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~01/01/2017~ -~03216~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~609~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2017~ -~03216~^~610~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~01/01/2017~ -~03216~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~01/01/2017~ -~03216~^~612~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~01/01/2017~ -~03216~^~613~^0.446^3^0.001^~1~^~A~^^^1^0.444^0.448^2^0.441^0.451^~2, 3~^~01/01/2017~ -~03216~^~614~^0.208^3^0.002^~1~^~A~^^^1^0.205^0.212^2^0.199^0.217^~2, 3~^~01/01/2017~ -~03216~^~615~^0.062^3^0.000^~1~^~A~^^^1^0.062^0.062^^^^~2, 3~^~01/01/2017~ -~03216~^~617~^6.386^3^0.026^~1~^~AS~^^^1^6.337^6.427^2^6.273^6.498^~2, 3~^~01/01/2017~ -~03216~^~618~^1.327^3^0.007^~1~^~AS~^^^1^1.313^1.338^2^1.295^1.359^~2, 3~^~01/01/2017~ -~03216~^~619~^0.213^3^0.003^~1~^~AS~^^^1^0.207^0.218^2^0.199^0.227^~2, 3~^~01/01/2017~ -~03216~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~624~^0.032^3^0.000^~1~^~A~^^^1^0.031^0.032^2^0.030^0.033^~2, 3~^~01/01/2017~ -~03216~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~626~^0.014^3^0.000^~1~^~AS~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~01/01/2017~ -~03216~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~628~^0.137^3^0.000^~1~^~A~^^^1^0.137^0.138^2^0.136^0.139^~2, 3~^~01/01/2017~ -~03216~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~01/01/2017~ -~03216~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~01/01/2017~ -~03216~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~645~^6.559^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~646~^1.550^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~01/01/2017~ -~03216~^~653~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~01/01/2017~ -~03216~^~654~^0.026^3^0.000^~1~^~A~^^^1^0.025^0.026^2^0.024^0.027^~2, 3~^~01/01/2017~ -~03216~^~663~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~01/01/2017~ -~03216~^~664~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2017~ -~03216~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~01/01/2017~ -~03216~^~670~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~01/01/2017~ -~03216~^~671~^0.013^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~01/01/2017~ -~03216~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~01/01/2017~ -~03216~^~673~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~01/01/2017~ -~03216~^~674~^6.375^3^0.026^~1~^~A~^^^1^6.326^6.415^2^6.263^6.487^~2, 3~^~01/01/2017~ -~03216~^~675~^1.315^3^0.007^~1~^~A~^^^1^1.302^1.324^2^1.286^1.343^~2, 3~^~01/01/2017~ -~03216~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~01/01/2017~ -~03216~^~685~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.017^~2, 3~^~01/01/2017~ -~03216~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~03216~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~03216~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~851~^0.201^3^0.002^~1~^~A~^^^1^0.197^0.204^2^0.192^0.211^~2, 3~^~01/01/2017~ -~03216~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03216~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~03217~^~312~^0.145^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03217~^~404~^0.208^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~405~^0.239^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~406~^1.319^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~410~^0.537^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03217~^~415~^0.082^3^^~1~^^^^^^^^^^^~12/01/1978~ -~03217~^~605~^0.012^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~606~^2.525^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~607~^0.100^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~608~^0.059^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~609~^0.035^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~610~^0.077^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~611~^0.088^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~612~^0.314^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~613~^1.194^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~614~^0.590^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~615~^0.017^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~617~^4.104^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~618~^2.007^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~619~^0.065^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~620~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~624~^0.047^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~626~^0.129^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~628~^0.012^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~645~^4.244^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~646~^2.073^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~653~^0.005^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03217~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~03220~^~312~^0.059^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03220~^~404~^0.011^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~405~^0.013^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~406~^0.048^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~415~^0.011^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03220~^~606~^0.190^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~607~^0.014^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~608~^0.003^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~609~^0.003^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~610~^0.010^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~611~^0.010^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~612~^0.031^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~613~^0.086^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~614~^0.031^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~617~^0.073^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~618~^0.007^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~619~^0.003^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~620~^0.000^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~626~^0.007^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~628~^0.000^2^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2003~ -~03220~^~645~^0.080^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03220~^~646~^0.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03221~^~312~^0.030^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~315~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~404~^0.010^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~405~^0.012^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~406~^0.048^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03221~^~410~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~415~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~501~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~502~^0.007^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~503~^0.008^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~504~^0.012^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~505~^0.013^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~506~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~507~^0.003^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~508~^0.006^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~509~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~510~^0.009^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~511~^0.006^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~512~^0.003^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~513~^0.007^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~514~^0.035^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~515~^0.021^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~516~^0.008^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~517~^0.007^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~518~^0.008^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~ -~03221~^~606~^0.025^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~613~^0.021^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~614~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~617~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~618~^0.038^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~619~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~645~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03221~^~646~^0.045^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03222~^~312~^0.010^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~315~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~404~^0.010^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~405~^0.010^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~406~^0.060^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03222~^~410~^0.043^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03222~^~415~^0.020^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~ -~03222~^~606~^0.020^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~613~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~614~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~617~^0.024^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~618~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~619~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~645~^0.020^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03222~^~646~^0.030^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03224~^~312~^0.050^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03224~^~404~^0.008^5^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~405~^0.011^5^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~406~^0.038^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~415~^0.011^6^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03224~^~606~^0.087^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~613~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~614~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~617~^0.098^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~618~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~619~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~620~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~621~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~626~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~645~^0.105^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03224~^~646~^0.053^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~312~^0.051^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03225~^~404~^0.007^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~405~^0.011^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~406~^0.038^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~415~^0.012^6^^~1~^^^^^^^^^^^~12/01/1978~ -~03225~^~606~^0.058^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~613~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~614~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~617~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~618~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~619~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~620~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~621~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~645~^0.070^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03225~^~646~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~312~^0.050^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03226~^~404~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~405~^0.057^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~406~^0.119^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~410~^0.251^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03226~^~415~^0.027^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~502~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~503~^0.057^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~504~^0.113^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~505~^0.090^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~506~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~508~^0.042^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~509~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~510~^0.070^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~511~^0.085^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~512~^0.031^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~513~^0.044^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~514~^0.132^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~515~^0.225^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~516~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~517~^0.118^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~518~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03226~^~606~^0.545^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~607~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~608~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~609~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~610~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~611~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~612~^0.088^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~613~^0.233^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~614~^0.104^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~617~^0.225^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~618~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~619~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~626~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~645~^0.257^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03226~^~646~^0.038^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~312~^0.190^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~404~^0.009^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~405~^0.014^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~406~^0.259^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~415~^0.007^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03227~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03227~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03227~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03227~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03228~^~312~^0.196^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03228~^~404~^0.010^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~405~^0.015^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~406~^0.259^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~415~^0.007^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03228~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03228~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03228~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03228~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03229~^~312~^0.178^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03229~^~404~^0.006^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~405~^0.036^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~406~^0.343^13^0.025^~1~^^^^^^^^^^^~12/01/1978~ -~03229~^~415~^0.006^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~312~^0.177^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03230~^~404~^0.007^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~405~^0.030^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~406~^0.272^13^0.032^~1~^^^^^^^^^^^~12/01/1978~ -~03230~^~415~^0.006^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03233~^~312~^0.023^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03233~^~404~^0.038^16^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~405~^0.046^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~406~^0.107^16^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~410~^0.192^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03233~^~415~^0.040^3^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03233~^~606~^0.099^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~607~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~613~^0.067^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~614~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~617~^0.098^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~618~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~619~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~620~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~621~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~626~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~645~^0.109^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03233~^~646~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~312~^0.030^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~404~^0.016^38^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~405~^0.009^38^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~406~^0.143^10^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~410~^0.104^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03235~^~415~^0.037^29^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03235~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03235~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03235~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03235~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03236~^~312~^0.030^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~404~^0.021^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~405~^0.012^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~406~^0.144^10^0.007^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~410~^0.100^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03236~^~415~^0.033^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03236~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03236~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03236~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03236~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~03238~^~312~^0.028^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~404~^0.011^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~405~^0.031^13^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~406~^0.080^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03238~^~410~^0.094^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03238~^~415~^0.031^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03245~^~312~^0.050^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~404~^0.012^36^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~405~^0.080^36^0.004^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~406~^0.040^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~410~^0.250^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~415~^0.020^18^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~502~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~503~^0.075^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~504~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~505~^0.114^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~506~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~508~^0.073^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~509~^0.059^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~510~^0.088^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~511~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~512~^0.041^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~513~^0.050^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~514~^0.130^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~515~^0.291^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~516~^0.033^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~517~^0.098^0^^~1~^^^^^^^^^^^~10/01/2002~ -~03245~^~518~^0.082^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~606~^1.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~607~^0.050^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~608~^0.020^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~609~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~610~^0.030^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~611~^0.040^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~612~^0.110^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~613~^0.520^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~614~^0.190^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~617~^0.620^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~618~^0.130^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~619~^0.010^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~620~^0.020^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03245~^~626~^0.050^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03245~^~628~^0.000^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03245~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03245~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~03245~^~645~^0.680^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03245~^~646~^0.160^2^^~1~^^^^^^^^^^^~12/01/1978~ -~03246~^~312~^0.010^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~404~^0.012^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~405~^0.054^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~406~^0.076^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~410~^0.232^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~415~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03246~^~606~^0.325^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~607~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~609~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~610~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~612~^0.009^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~613~^0.222^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~614~^0.078^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~617~^0.331^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~618~^0.108^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~619~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~620~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~621~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~626~^0.030^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~628~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~645~^0.364^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03246~^~646~^0.128^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03265~^~312~^0.078^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03265~^~404~^0.007^27^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~405~^0.021^10^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~406~^0.109^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~410~^0.075^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03265~^~415~^0.034^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03265~^~606~^0.040^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03265~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~613~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~617~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~618~^0.049^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~645~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03265~^~646~^0.059^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03267~^~312~^0.020^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~315~^0.090^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~404~^0.010^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~405~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~406~^0.100^0^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~410~^0.056^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~415~^0.050^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03267~^~606~^0.020^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~613~^0.016^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~617~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~618~^0.025^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~619~^0.006^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~645~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03267~^~646~^0.029^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~312~^0.010^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~315~^0.290^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~404~^0.020^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~405~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~406~^0.080^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~410~^0.060^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~415~^0.030^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~ -~03269~^~606~^0.018^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~613~^0.014^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~617~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~618~^0.027^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~619~^0.006^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~645~^0.005^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03269~^~646~^0.032^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~ -~03274~^~312~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~315~^0.110^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~404~^0.025^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~405~^0.046^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~406~^0.628^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~410~^0.127^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~415~^0.046^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~606~^0.302^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03274~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~612~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~613~^0.191^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~614~^0.071^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~617~^0.340^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~618~^0.238^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~619~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~620~^0.009^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~626~^0.047^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~628~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~645~^0.402^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03274~^~646~^0.269^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03278~^~312~^0.044^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03278~^~404~^0.015^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~405~^0.031^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~406~^0.502^13^0.035^~1~^^^^^^^^^^^~12/01/1978~ -~03278~^~410~^0.277^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03278~^~415~^0.075^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03279~^~312~^0.036^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03279~^~315~^0.144^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~404~^0.014^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03279~^~405~^0.042^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~406~^0.566^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~410~^0.348^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~415~^0.114^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03279~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~03280~^~312~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~404~^0.015^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~405~^0.020^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~406~^0.218^14^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~410~^0.173^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~415~^0.139^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03280~^~606~^0.076^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~613~^0.052^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~617~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~618~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~619~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~626~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~645~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03280~^~646~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~312~^0.041^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~404~^0.029^9^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~405~^0.032^8^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~406~^0.665^11^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~410~^0.259^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~415~^0.081^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~501~^0.015^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~502~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~503~^0.056^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~504~^0.091^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~505~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~506~^0.021^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~507~^0.028^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~508~^0.055^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~509~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~510~^0.069^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~511~^0.093^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~512~^0.031^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~513~^0.062^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~514~^0.165^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~515~^0.369^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~516~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~517~^0.110^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~518~^0.054^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03282~^~606~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~611~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~613~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~617~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~618~^0.153^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~619~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~645~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03282~^~646~^0.186^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~312~^0.070^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~404~^0.061^17^0.003^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~405~^0.069^17^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~406~^0.779^17^0.028^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~410~^0.260^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03283~^~415~^0.100^4^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~501~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~502~^0.073^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~503~^0.086^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~504~^0.143^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~505~^0.116^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~506~^0.043^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~507~^0.020^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~508~^0.088^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~509~^0.095^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~510~^0.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~511~^0.196^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~512~^0.045^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~513~^0.107^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~514~^0.192^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~515~^0.293^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~516~^0.079^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~517~^0.122^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~518~^0.077^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03283~^~606~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~613~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~617~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~618~^0.053^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~619~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~645~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03283~^~646~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~03286~^~312~^0.040^1^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~404~^0.022^11^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~405~^0.025^13^0.000^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~406~^0.327^8^0.013^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~410~^0.250^4^0.139^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~415~^0.055^7^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~501~^0.013^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~502~^0.038^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~503~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~504~^0.077^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~505~^0.040^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~506~^0.018^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~507~^0.024^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~508~^0.047^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~509~^0.044^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~510~^0.058^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~511~^0.079^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~512~^0.026^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~513~^0.052^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~514~^0.139^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~515~^0.310^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~516~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~517~^0.092^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~518~^0.046^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03286~^~606~^0.089^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~611~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~613~^0.074^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~617~^0.116^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~618~^0.181^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~619~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~645~^0.118^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03286~^~646~^0.194^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~312~^0.032^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~404~^0.028^18^0.001^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~405~^0.036^19^0.001^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~406~^0.582^18^0.018^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~410~^0.230^4^0.025^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~415~^0.031^6^0.002^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~501~^0.027^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~502~^0.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~503~^0.138^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~504~^0.208^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~505~^0.185^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~506~^0.053^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~507~^0.029^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~508~^0.117^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~509~^0.093^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~510~^0.132^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~511~^0.157^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~512~^0.074^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~513~^0.149^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~514~^0.220^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~515~^0.517^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~516~^0.153^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~517~^0.186^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~518~^0.098^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03287~^~606~^0.766^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~610~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~611~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~612~^0.058^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~613~^0.455^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~614~^0.211^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~617~^0.720^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~618~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~619~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~620~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~626~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~628~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~645~^0.838^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03287~^~646~^0.094^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03289~^~312~^0.040^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~315~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~404~^0.060^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~405~^0.060^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~ -~03289~^~406~^0.730^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~410~^0.097^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03289~^~415~^0.070^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~606~^0.250^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~610~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~612~^0.012^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~613~^0.162^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~614~^0.079^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~617~^0.346^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~618~^0.100^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~619~^0.006^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~620~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~626~^0.028^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03289~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~628~^0.004^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~645~^0.360^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03289~^~646~^0.111^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03290~^~312~^0.054^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~ -~03290~^~315~^0.140^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~405~^0.060^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~406~^0.930^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~415~^0.100^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~ -~03290~^~606~^0.960^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~610~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~612~^0.068^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~613~^0.546^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~614~^0.285^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~617~^0.923^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~618~^0.067^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~619~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~620~^0.009^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~626~^0.090^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~645~^1.060^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03290~^~646~^0.130^0^^~4~^~FLM~^^^^^^^^^^~02/01/1995~ -~03293~^~312~^0.054^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~404~^0.040^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~405~^0.050^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~406~^0.800^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~415~^0.130^0^^~9~^^^^^^^^^^^~03/01/2005~ -~03293~^~606~^0.060^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~613~^0.046^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~614~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~617~^0.116^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~618~^0.058^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~619~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~626~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~645~^0.120^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03293~^~646~^0.070^0^^~4~^^^^^^^^^^^~03/01/2005~ -~03296~^~312~^0.100^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~315~^0.230^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~404~^0.070^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~405~^0.070^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~406~^2.110^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~410~^0.264^0^^~4~^~FLM~^^^^^^^^^^~06/01/1996~ -~03296~^~415~^0.130^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~ -~03296~^~606~^0.500^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~03296~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~612~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~613~^0.310^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~614~^0.078^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~617~^0.497^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~618~^0.299^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~619~^0.010^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~03296~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~626~^0.058^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~03296~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1995~ -~03296~^~645~^0.555^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~03296~^~646~^0.309^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~03297~^~312~^0.040^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~315~^0.030^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~405~^0.057^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~406~^0.577^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~410~^0.098^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~415~^0.083^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~ -~03297~^~606~^0.347^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~612~^0.012^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~613~^0.226^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~614~^0.078^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~617~^0.350^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~618~^0.304^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~619~^0.027^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~620~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~626~^0.047^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~628~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~631~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~645~^0.411^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03297~^~646~^0.350^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~ -~03298~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~315~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~404~^0.019^2^^~1~^~A~^^^1^0.018^0.021^1^^^^~03/01/2007~ -~03298~^~405~^0.098^2^^~1~^~A~^^^1^0.084^0.113^1^^^^~03/01/2007~ -~03298~^~406~^0.964^2^^~1~^~A~^^^1^0.963^0.965^1^^^^~03/01/2007~ -~03298~^~410~^0.273^2^^~1~^~A~^^^1^0.238^0.308^1^^^^~03/01/2007~ -~03298~^~415~^0.052^2^^~1~^~A~^^^1^0.047^0.057^1^^^^~03/01/2007~ -~03298~^~606~^0.510^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~607~^0.000^0^^~4~^~O~^^^^^^^^^^~03/01/2007~ -~03298~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~03298~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~613~^0.410^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~614~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~617~^0.650^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~618~^0.320^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~619~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~626~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~03298~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~645~^0.770^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~646~^0.430^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~03298~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03298~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~03301~^~312~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~315~^0.087^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~404~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~405~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~406~^0.060^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~410~^0.220^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~415~^0.022^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~502~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~503~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~504~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~505~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~506~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~508~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~509~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~510~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~511~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~512~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~513~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~514~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~515~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~516~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~517~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~518~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~03301~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~613~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~614~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~617~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~618~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~619~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~645~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03301~^~646~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~312~^0.092^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~315~^0.077^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~404~^0.113^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~405~^0.817^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~406~^3.301^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~410~^1.470^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~415~^0.168^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~501~^0.155^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~502~^0.368^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~503~^0.710^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~504~^1.377^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~505~^1.060^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~506~^0.312^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~507~^0.387^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~508~^0.622^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~509~^0.542^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~510~^0.818^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~511~^0.374^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~512~^0.317^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~513~^0.403^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~514~^1.132^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~515~^2.881^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~516~^0.241^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~517~^1.325^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~518~^0.762^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~606~^2.236^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~607~^0.086^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~608~^0.062^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~609~^0.043^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~610~^0.095^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~611~^0.103^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~612~^0.321^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~613~^1.031^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~614~^0.439^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~615~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~617~^0.873^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~618~^0.139^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~619~^0.055^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~625~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~626~^0.060^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~645~^0.968^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~646~^0.194^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~652~^0.031^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~653~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~687~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~697~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03302~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~03303~^~312~^0.081^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~315~^0.153^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~404~^0.020^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~405~^0.040^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~406~^1.040^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~410~^0.329^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~415~^0.137^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~606~^0.572^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~612~^0.016^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~613~^0.437^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~614~^0.118^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~617~^0.803^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~618~^0.487^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~619~^0.024^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~620~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~626~^0.095^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~628~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~ -~03303~^~645~^0.980^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03303~^~646~^0.480^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~ -~03376~^~312~^0.059^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~315~^0.012^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~404~^0.062^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~405~^0.109^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~406~^0.780^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~410~^0.390^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~415~^0.047^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~606~^1.720^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~609~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~610~^0.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~611~^0.360^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~612~^0.160^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~613~^0.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~614~^0.150^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~617~^1.390^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~618~^0.620^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~619~^0.059^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~620~^0.027^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~621~^0.013^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~626~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~645~^1.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03376~^~646~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~312~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~315~^0.075^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~404~^0.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~405~^0.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~406~^5.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~415~^0.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~606~^11.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~609~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~610~^0.320^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~611~^2.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~612~^1.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~613~^5.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~614~^1.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~617~^9.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~618~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~619~^0.360^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~620~^0.170^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~621~^0.170^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~645~^9.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03381~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~312~^0.094^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~315~^0.005^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~404~^0.156^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~405~^0.230^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~406~^3.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~410~^0.940^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~415~^0.117^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~606~^1.780^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~609~^1.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~610~^0.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~613~^0.170^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~614~^0.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~617~^1.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~618~^0.630^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~619~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~620~^0.027^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~621~^0.013^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~645~^1.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03382~^~646~^0.820^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~312~^0.116^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~315~^0.006^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~404~^0.193^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~405~^0.290^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~406~^3.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~410~^1.160^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~415~^0.145^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~606~^2.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~609~^1.340^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~610~^0.510^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~612~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~613~^0.210^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~614~^0.110^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~617~^1.340^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~618~^0.780^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~619~^0.087^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~620~^0.033^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~621~^0.016^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~624~^0.020^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~645~^1.350^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03384~^~646~^1.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~312~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~315~^0.076^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~404~^0.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~405~^0.710^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~406~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~415~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~606~^11.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~609~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~610~^0.320^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~611~^2.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~612~^1.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~613~^5.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~614~^1.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~617~^9.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~619~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~620~^0.173^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~621~^0.087^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~645~^9.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03385~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~312~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~315~^0.076^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~404~^0.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~405~^0.710^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~406~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~415~^0.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~606~^11.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~609~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~610~^0.320^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~611~^2.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~612~^1.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~613~^5.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~614~^1.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~617~^9.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~618~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~619~^0.370^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~620~^0.173^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~621~^0.086^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~645~^9.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03386~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~404~^0.052^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~405~^0.092^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~618~^0.510^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~619~^0.047^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03387~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03388~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~404~^0.052^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~405~^0.092^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~618~^0.560^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~619~^0.053^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03388~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03389~^~312~^0.360^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~315~^0.240^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~404~^0.530^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~405~^0.860^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~406~^7.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~410~^3.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~415~^0.740^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~606~^8.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~609~^0.340^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~610~^0.250^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~611~^1.870^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~612~^0.820^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~613~^4.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~614~^0.780^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~615~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~617~^7.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~619~^0.270^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~620~^0.163^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~621~^0.082^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~624~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~626~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~628~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~645~^7.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03389~^~646~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~315~^0.016^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~606~^2.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~609~^1.420^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~610~^0.540^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~613~^0.160^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~614~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~617~^0.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~618~^0.620^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~619~^0.079^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~645~^0.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03390~^~646~^0.820^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~312~^0.059^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~315~^0.020^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~404~^0.062^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~405~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~406~^0.780^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~410~^0.390^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~415~^0.047^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~606~^2.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~609~^1.670^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~610~^0.640^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~611~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~612~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~613~^0.180^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~614~^0.080^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~617~^0.590^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~618~^0.730^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~619~^0.094^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~620~^0.027^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~621~^0.013^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~645~^0.590^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03391~^~646~^0.990^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03392~^~312~^370.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~315~^124.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~404~^0.400^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~405~^0.450^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~406~^5.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~415~^0.300^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~606~^10.300^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~609~^6.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~610~^2.300^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~612~^0.030^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~613~^1.200^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~614~^0.620^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~615~^0.060^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~617~^8.800^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~618~^4.300^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~619~^0.400^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~620~^0.169^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~621~^0.085^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~624~^0.100^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~645~^8.800^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03392~^~646~^5.500^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~404~^0.052^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~405~^0.092^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~618~^0.520^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~619~^0.049^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03393~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03681~^~312~^0.057^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~315~^0.004^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~404~^0.242^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~405~^0.353^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~406~^2.707^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~410~^0.384^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~415~^0.060^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~501~^0.060^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03681~^~502~^0.157^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~503~^0.180^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~504~^0.300^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~505~^0.154^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~506~^0.083^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~507~^0.034^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~508~^0.181^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~509~^0.167^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~510~^0.218^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~511~^0.109^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~512~^0.086^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~513~^0.124^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~514~^0.262^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~515~^0.820^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~516~^0.099^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~517~^0.415^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~518~^0.132^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~606~^1.760^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~607~^0.069^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~608~^0.069^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~609~^0.069^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~610~^0.069^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~611~^0.071^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~612~^0.275^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~613~^0.788^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~614~^0.348^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~617~^0.794^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~618~^0.229^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~619~^0.080^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~626~^0.007^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~645~^0.802^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~646~^0.309^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~ -~03681~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03681~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~ -~03682~^~312~^0.217^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03682~^~404~^0.470^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~405~^0.579^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~406~^5.668^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~410~^0.465^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03682~^~415~^0.113^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~501~^0.129^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~502~^0.364^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~503~^0.454^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~504~^0.752^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~505~^0.607^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~506~^0.169^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~507~^0.144^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~508~^0.443^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~509~^0.363^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~510~^0.488^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~511~^0.558^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~512~^0.241^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~514~^0.934^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~515~^1.791^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~516~^0.333^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~517~^0.608^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03682~^~518~^0.465^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~312~^0.059^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~404~^0.308^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~405~^0.448^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~406~^3.880^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~410~^0.450^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~415~^0.053^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~501~^0.064^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~502~^0.190^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~503~^0.244^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~504~^0.440^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~505~^0.166^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~506~^0.091^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~507~^0.052^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~508~^0.202^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~509~^0.186^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~510~^0.239^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~511~^0.142^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~512~^0.097^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~513~^0.153^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~514~^0.286^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~515~^1.099^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03685~^~516~^0.126^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~517~^0.412^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~518~^0.155^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~606~^1.745^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~607~^0.066^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~608~^0.066^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~609~^0.067^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~610~^0.066^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~611~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~612~^0.265^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~613~^0.810^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~614~^0.330^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~617~^0.854^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~618~^0.284^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~619~^0.071^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~626~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~645~^0.855^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~646~^0.359^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03685~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~312~^0.053^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~404~^0.315^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~405~^0.437^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~406~^1.605^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~410~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~415~^0.065^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~501~^0.080^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~502~^0.161^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~503~^0.187^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~504~^0.314^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~505~^0.169^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~506~^0.088^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~507~^0.036^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~508~^0.180^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~509~^0.175^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~510~^0.227^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~511~^0.122^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~512~^0.095^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~513~^0.130^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~514~^0.289^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~515~^0.783^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~516~^0.106^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~517~^0.370^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~518~^0.141^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~606~^1.808^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~607~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~608~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~609~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~610~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~611~^0.072^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~612~^0.276^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~613~^0.840^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~614~^0.344^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~617~^0.856^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~618~^0.260^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~619~^0.081^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~626~^0.003^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~645~^0.859^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~646~^0.342^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03686~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03689~^~312~^0.094^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03689~^~404~^0.506^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~405~^0.563^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~406~^5.981^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~410~^0.514^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03689~^~415~^0.060^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~501~^0.067^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~502~^0.201^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~503~^0.256^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~504~^0.445^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~505~^0.311^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~506~^0.112^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~507~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~508~^0.222^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~509~^0.223^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~510~^0.310^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~511~^0.269^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~512~^0.113^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~513~^0.203^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~514~^0.398^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~515~^1.102^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~516~^0.177^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~517~^0.381^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~518~^0.261^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03689~^~606~^2.258^0^^~4~^^^^^^^^^^^~01/01/1994~ -~03690~^~312~^0.053^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~404~^0.315^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~405~^0.437^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~406~^1.605^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~410~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~415~^0.104^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03690~^~501~^0.080^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~502~^0.161^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~503~^0.187^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~504~^0.314^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~505~^0.309^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03690~^~506~^0.088^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~507~^0.036^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~508~^0.180^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~509~^0.214^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03690~^~510~^0.227^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~511~^0.122^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~512~^0.095^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~513~^0.130^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~514~^0.289^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~515~^0.783^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~516~^0.106^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~517~^0.370^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~518~^0.141^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~606~^1.820^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~607~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~608~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~609~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~610~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~611~^0.072^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~612~^0.276^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~613~^0.840^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~614~^0.344^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~617~^0.856^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~618~^0.260^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~619~^0.081^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~626~^0.003^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~645~^0.859^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~646~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03690~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03693~^~312~^0.095^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~404~^0.487^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~405~^0.602^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~406~^6.034^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03693~^~410~^0.514^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03693~^~415~^0.060^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03694~^~312~^0.048^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~404~^0.243^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~405~^0.324^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~406~^2.449^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~410~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~415~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~501~^0.075^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~502~^0.153^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~503~^0.171^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~504~^0.282^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~505~^0.150^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~506~^0.082^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~507~^0.028^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~508~^0.160^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~509~^0.162^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~510~^0.208^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~511~^0.117^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~512~^0.082^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~513~^0.125^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~514~^0.267^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~515~^0.684^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~516~^0.095^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~517~^0.333^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~518~^0.122^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~606~^1.793^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~607~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~608~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~609~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~610~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~611~^0.071^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~612~^0.275^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~613~^0.824^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~614~^0.347^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~617~^0.844^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~618~^0.247^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~619~^0.085^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~645~^0.846^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~646~^0.333^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03694~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03696~^~312~^0.063^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03696~^~404~^0.476^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~405~^0.608^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~406~^6.083^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03696~^~415~^0.115^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~312~^0.064^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~404~^0.447^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~405~^0.583^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~406~^6.260^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03704~^~410~^0.443^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03704~^~415~^0.067^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03711~^~312~^0.166^0^^~4~^^^^^^^^^^^~12/01/1978~ -~03711~^~404~^0.655^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~405~^0.847^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~406~^3.987^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03711~^~415~^0.092^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03712~^~312~^0.042^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~315~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~404~^0.684^0^^~1~^^^^^^^^^^^~12/01/1978~ -~03712~^~405~^0.444^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~406~^1.849^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~410~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~415~^0.085^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~501~^0.079^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~502~^0.163^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~503~^0.184^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~504~^0.302^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~505~^0.161^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~506~^0.085^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~507~^0.029^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~508~^0.163^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~509~^0.165^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~510~^0.215^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~511~^0.113^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~512~^0.088^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~513~^0.131^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~514~^0.280^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~515~^0.702^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~516~^0.095^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~517~^0.341^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~518~^0.132^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~606~^1.798^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~607~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~608~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~609~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~610~^0.069^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~611~^0.071^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~612~^0.276^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~613~^0.826^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~614~^0.345^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~617~^0.823^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~618~^0.209^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~619~^0.085^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~645~^0.826^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~646~^0.294^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03712~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~03801~^~312~^0.100^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03801~^~404~^0.127^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~405~^0.178^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~406~^1.330^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~415~^0.095^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03801~^~606~^2.970^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03801~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~608~^0.008^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03801~^~609~^0.100^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~610~^0.080^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~611~^0.603^0^^~4~^~T~^^^^^^^^^^~03/01/2003~ -~03801~^~612~^0.270^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~613~^1.500^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~614~^0.230^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~617~^2.060^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~618~^1.300^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~619~^0.120^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~620~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~621~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~626~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~628~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~630~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~645~^2.060^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03801~^~646~^1.420^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~312~^0.410^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~404~^0.512^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~405~^0.717^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~406~^5.380^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~415~^0.384^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03802~^~606~^11.660^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~608~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~609~^0.410^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~610~^0.330^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~611~^2.660^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~612~^1.110^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~613~^6.180^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~614~^0.970^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~617~^8.500^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~618~^5.370^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~619~^0.510^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~620~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~621~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~626~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~628~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~630~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~645~^8.500^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03802~^~646~^5.880^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03805~^~312~^0.390^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~404~^0.410^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~405~^0.720^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~406~^5.200^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~415~^0.310^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~606~^11.500^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~609~^0.430^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~610~^0.320^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~611~^2.500^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~612~^1.110^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~613~^5.900^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~614~^1.080^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~617~^10.300^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~618~^4.700^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~619~^0.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~626~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03805~^~645~^10.300^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03805~^~646~^5.200^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03808~^~312~^0.390^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~404~^0.410^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~405~^0.720^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~406~^5.200^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~415~^0.310^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03808~^~606~^11.221^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~607~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~608~^0.030^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~609~^0.424^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~610~^0.316^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~611~^2.467^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~612~^1.095^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~613~^5.823^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~614~^1.066^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~617~^9.869^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~618~^4.540^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~619~^0.444^0^^~4~^~NR~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~620~^0.168^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~621~^0.089^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~626~^0.030^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~627~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~628~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~629~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~630~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~631~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~645~^9.899^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2007~ -~03808~^~646~^5.240^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2007~ -~03812~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~404~^0.053^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~405~^0.092^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~615~^0.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~618~^0.530^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~619~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~626~^0.019^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03812~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03812~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03815~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~405~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~410~^0.330^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~ -~03815~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03815~^~606~^1.453^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03815~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03815~^~608~^0.009^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~609~^0.057^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~610~^0.038^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~611~^0.311^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~612~^0.142^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~613~^0.745^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~614~^0.142^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~617~^1.255^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~618~^0.585^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~619~^0.057^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~620~^0.019^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~621~^0.009^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03815~^~626~^0.009^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03815~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03815~^~645~^1.255^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03815~^~646~^0.670^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~312~^0.098^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~404~^0.105^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~405~^0.184^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~406~^1.313^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~415~^0.079^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~606~^3.078^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~608~^0.019^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~609~^0.121^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~610~^0.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~611~^0.666^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~612~^0.301^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~613~^1.578^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~614~^0.301^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~617~^2.659^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~618~^1.239^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~619~^0.121^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~620~^0.041^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~621~^0.019^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~626~^0.019^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03818~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03818~^~645~^2.659^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03818~^~646~^1.419^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~404~^0.400^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~405~^0.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~406~^5.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~415~^0.300^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~606~^16.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~609~^10.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~610~^4.100^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03821~^~611~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~612~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~613~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~614~^0.420^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~617~^3.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~618~^4.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~619~^0.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~620~^0.170^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~621~^0.085^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~624~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~626~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~628~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03821~^~645~^3.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03821~^~646~^6.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~312~^0.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~404~^0.053^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~405~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~415~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~606~^2.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03822~^~608~^0.018^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03822~^~609~^1.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~610~^0.540^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~611~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~612~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03822~^~613~^0.160^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~614~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~617~^0.520^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~618~^0.620^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~619~^0.063^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~621~^0.011^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03822~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03822~^~645~^0.520^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03822~^~646~^0.810^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03823~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~405~^0.059^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~ -~03823~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03823~^~606~^1.443^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~608~^0.009^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~609~^0.057^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~610~^0.038^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~611~^0.311^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~612~^0.141^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~613~^0.745^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~614~^0.132^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~617~^1.292^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~618~^0.594^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~619~^0.057^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~626~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~645~^1.292^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03823~^~646~^0.651^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03825~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~405~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~606~^1.453^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~608~^0.009^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~609~^0.057^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~610~^0.038^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~611~^0.311^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~612~^0.142^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~613~^0.745^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~614~^0.142^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~617~^1.255^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~618~^0.585^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~619~^0.057^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~620~^0.019^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03825~^~621~^0.009^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~626~^0.009^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03825~^~645~^1.255^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03825~^~646~^0.670^0^^~4~^~NR~^^^^^^^^^^~11/01/2005~ -~03832~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~ -~03832~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~618~^0.520^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~619~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~626~^0.009^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03832~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03832~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03832~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03837~^~312~^0.462^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03837~^~315~^0.026^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~404~^0.514^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~405~^0.770^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~406~^5.392^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~410~^2.311^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~415~^0.308^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03837~^~606~^12.214^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~608~^0.069^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~609~^0.769^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~610~^0.618^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~611~^4.843^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~612~^1.974^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~613~^3.105^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~614~^0.835^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~617~^5.157^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~618~^10.456^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~619~^0.379^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~626~^0.028^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~628~^0.057^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~645~^5.242^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03837~^~646~^10.835^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03838~^~312~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~315~^0.126^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~404~^0.400^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~405~^0.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03838~^~406~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~415~^0.300^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03838~^~606~^11.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~609~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~610~^0.320^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~611~^2.400^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03838~^~612~^1.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~613~^5.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~614~^1.070^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03838~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~617~^9.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~618~^4.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~619~^0.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~620~^0.172^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~621~^0.086^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03838~^~645~^9.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03838~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03841~^~312~^0.049^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~315~^0.016^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03841~^~404~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~405~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~406~^0.887^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03841~^~410~^0.493^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03841~^~415~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~606~^1.166^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~608~^0.009^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~609~^0.090^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03841~^~610~^0.062^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~611~^0.450^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~612~^0.177^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~613~^0.262^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~614~^0.116^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~617~^1.361^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~618~^0.752^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~619~^0.086^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~626~^0.002^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~628~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~645~^1.371^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03841~^~646~^0.838^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03842~^~312~^0.096^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~315~^0.032^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03842~^~404~^0.077^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~405~^0.115^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03842~^~406~^1.725^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~410~^0.958^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~415~^0.077^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03842~^~606~^2.262^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~608~^0.017^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~609~^0.174^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~610~^0.120^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~611~^0.874^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~612~^0.343^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~613~^0.509^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~614~^0.225^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~617~^2.641^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~618~^1.458^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~619~^0.166^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~626~^0.005^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~628~^0.015^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~645~^2.660^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03842~^~646~^1.625^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03843~^~312~^0.386^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~315~^0.129^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~404~^0.309^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~405~^0.463^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~406~^6.943^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~410~^3.857^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~415~^0.309^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03843~^~606~^9.167^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~608~^0.067^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~609~^0.707^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~610~^0.487^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~611~^3.541^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~612~^1.389^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~613~^2.064^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~614~^0.913^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~617~^10.701^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~618~^5.910^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~619~^0.674^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~626~^0.019^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~628~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~645~^10.778^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03843~^~646~^6.584^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03844~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~404~^0.053^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~405~^0.059^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03844~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~618~^0.560^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~619~^0.053^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~626~^0.017^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~03844~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03844~^~645~^1.207^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03844~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03845~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~405~^0.059^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~618~^0.560^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~619~^0.052^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~620~^0.019^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03845~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~626~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03845~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~03845~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03845~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03845~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03846~^~312~^0.049^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~315~^0.006^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~404~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~405~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~406~^0.885^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03846~^~410~^0.491^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03846~^~415~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~606~^1.838^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~608~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~609~^0.931^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~610~^0.689^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~611~^0.023^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~612~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~613~^0.137^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~614~^0.052^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~617~^0.287^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~618~^1.055^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~619~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~626~^0.003^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~628~^0.003^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~645~^0.294^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03846~^~646~^1.113^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03849~^~312~^0.450^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~315~^0.074^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03849~^~404~^0.890^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~405~^0.990^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03849~^~406~^5.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~410~^4.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~415~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~606~^10.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~609~^3.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~610~^1.720^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~611~^1.720^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~612~^0.680^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~613~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~614~^0.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~617~^8.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~618~^4.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~619~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~620~^0.168^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03849~^~621~^0.084^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03849~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~627~^0.000^0^^~4~^~BFFN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~628~^0.040^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~ -~03849~^~629~^0.000^0^^~4~^~BFFN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~630~^0.000^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~ -~03849~^~631~^0.000^0^^~4~^~BFFN~^~03808~^^^^^^^^^~04/01/2011~ -~03849~^~645~^8.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03849~^~646~^5.402^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03851~^~312~^0.115^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~315~^0.006^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03851~^~404~^0.127^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~405~^0.191^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~406~^1.339^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03851~^~410~^0.574^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03851~^~415~^0.076^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03851~^~606~^2.401^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~608~^0.014^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~609~^0.214^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~610~^0.152^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~611~^0.943^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~612~^0.355^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~613~^0.500^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~614~^0.223^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~617~^2.533^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~618~^1.405^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~619~^0.150^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~626~^0.005^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~628~^0.013^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~645~^2.551^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03851~^~646~^1.555^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03852~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03852~^~315~^0.127^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~404~^0.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~405~^0.460^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~406~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~415~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~606~^11.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03852~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~609~^0.430^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~610~^0.320^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~611~^2.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~612~^1.050^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~613~^5.900^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~03852~^~614~^1.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~617~^9.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~618~^4.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~619~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~620~^0.173^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~621~^0.086^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03852~^~645~^9.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03852~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03853~^~312~^0.473^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~315~^0.026^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03853~^~404~^0.526^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~405~^0.789^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~406~^5.522^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~410~^2.367^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~415~^0.316^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03853~^~606~^9.873^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~608~^0.059^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~609~^0.879^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~610~^0.626^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~611~^3.876^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~612~^1.459^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~613~^2.056^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~614~^0.916^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~617~^10.419^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~618~^5.778^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~619~^0.618^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~626~^0.019^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~628~^0.054^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~645~^10.491^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03853~^~646~^6.396^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03854~^~312~^0.049^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~404~^0.052^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~405~^0.059^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~406~^0.650^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~415~^0.039^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~606~^1.430^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~03854~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~609~^0.050^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~611~^0.300^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~612~^0.130^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~613~^0.750^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~617~^1.160^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~618~^0.560^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~619~^0.052^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~620~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~03854~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~03854~^~645~^1.170^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03854~^~646~^0.630^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~ -~03857~^~312~^0.049^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~404~^0.052^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~405~^0.059^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~406~^0.660^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~ -~03857~^~415~^0.039^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~606~^1.480^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~607~^0.000^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~608~^0.010^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~609~^0.060^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~610~^0.040^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~611~^0.310^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~612~^0.140^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~613~^0.770^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~614~^0.130^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~617~^1.190^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~618~^0.560^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~619~^0.052^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~620~^0.022^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~621~^0.011^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03857~^~626~^0.010^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~627~^0.000^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~628~^0.010^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~629~^0.000^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~630~^0.000^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~631~^0.000^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~ -~03857~^~645~^1.211^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~ -~03857~^~646~^0.671^0^^~9~^~MC~^~03823~^^^^^^^^^~04/01/2006~ -~03859~^~312~^0.051^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~404~^0.039^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~405~^0.060^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~406~^0.864^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~415~^0.038^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~606~^1.400^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~607~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~608~^0.004^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~609~^0.050^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~610~^0.039^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~611~^0.308^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~612~^0.128^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~613~^0.744^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~614~^0.128^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~617~^1.080^0^^~4~^~NR~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~618~^0.603^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~619~^0.064^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~620~^0.019^0^^~4~^~NR~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~621~^0.009^0^^~4~^~NR~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~626~^0.006^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~627~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~628~^0.051^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~629~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~630~^0.051^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~ -~03859~^~631~^0.000^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~ -~03859~^~645~^1.189^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~ -~03859~^~646~^0.695^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~ -~03860~^~312~^0.095^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~315~^0.239^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03860~^~404~^0.258^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~405~^0.201^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~406~^1.614^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~410~^0.955^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03860~^~415~^0.248^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03860~^~606~^1.256^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~609~^0.503^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~610~^0.349^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~611~^0.013^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~612~^0.009^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~613~^0.260^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~614~^0.122^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~617~^1.921^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~618~^0.975^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~619~^0.092^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~626~^0.004^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~628~^0.011^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03860~^~645~^1.936^0^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03860~^~646~^1.068^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03861~^~312~^0.360^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~315~^0.240^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~404~^0.380^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~405~^0.430^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~406~^4.700^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~415~^0.280^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~606~^8.905^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~607~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~608~^0.023^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~609~^0.334^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~610~^0.250^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~611~^1.944^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~612~^0.863^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~613~^4.589^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~614~^0.902^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~617~^7.800^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~618~^3.600^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~619~^0.373^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~620~^0.161^0^^~12~^~MA~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~621~^0.081^0^^~12~^~MA~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~626~^0.020^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~627~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~628~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~629~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~630~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~631~^0.000^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~645~^7.800^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03861~^~646~^4.200^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~ -~03864~^~312~^0.050^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~315~^0.033^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~404~^0.052^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~405~^0.059^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~406~^0.660^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~410~^0.330^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~415~^0.040^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~ -~03864~^~606~^1.242^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~607~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~608~^0.009^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~609~^0.049^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~610~^0.039^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~611~^0.262^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~612~^0.116^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~613~^0.640^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~614~^0.116^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~617~^1.077^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~618~^0.495^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~619~^0.049^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~620~^0.019^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~621~^0.009^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~626~^0.009^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~627~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~628~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~629~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~630~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~631~^0.000^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~645~^1.078^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03864~^~646~^0.573^0^^~9~^~MC~^~03930~^^^^^^^^^~03/01/2006~ -~03867~^~312~^0.401^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~404~^0.301^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~405~^0.471^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~406~^6.764^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~415~^0.301^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~606~^11.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~609~^0.400^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~610~^0.302^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~611~^2.400^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~612~^1.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~613~^5.800^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~614~^1.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~617~^7.900^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~618~^4.700^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~619~^0.500^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~620~^0.175^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03867~^~621~^0.090^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~ -~03867~^~626~^0.050^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~630~^0.010^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~645~^8.100^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03867~^~646~^6.000^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~ -~03870~^~312~^0.106^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~315~^0.144^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~404~^0.256^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~405~^0.200^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~406~^0.960^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~410~^0.960^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~415~^0.248^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~ -~03870~^~606~^1.256^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~609~^0.503^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~610~^0.349^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~611~^0.013^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~612~^0.009^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~613~^0.260^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~614~^0.122^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~617~^1.921^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~618~^0.975^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~619~^0.092^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~626~^0.004^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~628~^0.011^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03870~^~645~^1.936^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03870~^~646~^1.067^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~03928~^~312~^0.601^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~404~^0.301^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~405~^0.471^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~406~^6.513^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~415~^0.301^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~ -~03928~^~606~^11.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~609~^0.400^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~610~^0.302^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~ -~03928~^~611~^2.400^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~612~^1.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03928~^~613~^5.800^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~614~^1.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~617~^7.900^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~618~^4.700^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~619~^0.500^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~620~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~621~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~626~^0.050^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~628~^0.040^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~630~^0.010^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03928~^~645~^8.100^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03928~^~646~^6.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~ -~03929~^~312~^0.360^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~315~^0.240^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~404~^0.380^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~405~^0.430^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~406~^4.700^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~03929~^~415~^0.280^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~606~^8.905^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~03929~^~607~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~608~^0.020^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~609~^0.330^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~610~^0.250^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~611~^1.910^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~612~^0.860^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~613~^4.600^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~614~^0.860^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~617~^7.800^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~618~^3.600^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~619~^0.340^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~620~^0.160^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~621~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~626~^0.020^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~627~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~628~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~629~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~630~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~631~^0.000^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~ -~03929~^~645~^7.800^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03929~^~646~^4.200^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~315~^0.033^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~404~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~405~^0.059^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~410~^0.330^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~606~^1.243^0^^~9~^~MC~^^^^^^^^^^~07/01/2004~ -~03930~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~03930~^~608~^0.003^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~609~^0.049^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~610~^0.039^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~611~^0.262^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~612~^0.117^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~613~^0.641^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~614~^0.117^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~617~^1.078^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~618~^0.495^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~619~^0.049^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~03930~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~626~^0.003^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~03930~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/1998~ -~03930~^~645~^1.078^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03930~^~646~^0.544^0^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~03934~^~312~^0.051^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~315~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~404~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~405~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~406~^0.444^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~410~^0.323^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~415~^0.060^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~501~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~502~^0.052^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~503~^0.059^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~504~^0.114^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~505~^0.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~506~^0.033^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~507~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~508~^0.053^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~509~^0.056^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~510~^0.074^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~511~^0.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~512~^0.038^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~513~^0.065^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~514~^0.135^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~515~^0.210^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~516~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~517~^0.118^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~518~^0.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~606~^0.053^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~613~^0.045^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~614~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~617~^0.071^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~618~^0.117^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~619~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~645~^0.071^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03934~^~646~^0.123^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~03935~^~312~^0.049^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~315~^0.006^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03935~^~404~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~405~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~406~^0.885^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03935~^~410~^0.491^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03935~^~415~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~606~^1.838^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~608~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~609~^0.931^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~610~^0.689^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~611~^0.023^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~612~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~613~^0.137^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~614~^0.052^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~617~^0.287^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~618~^1.055^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~619~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~620~^0.018^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~03935~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~07/01/2006~ -~03935~^~626~^0.003^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~628~^0.003^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~645~^0.294^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03935~^~646~^1.126^0^^~12~^~MA~^^^^^^^^^^~03/01/2006~ -~03936~^~312~^0.046^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~404~^0.070^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~405~^0.100^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~406~^0.490^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03936~^~415~^0.040^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03936~^~606~^1.600^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~608~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~609~^0.090^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~610~^0.070^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~611~^0.480^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~612~^0.230^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~613~^0.470^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~614~^0.250^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~617~^1.340^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~618~^0.450^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~619~^0.050^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~620~^0.022^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03936~^~621~^0.011^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03936~^~626~^0.040^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~628~^0.010^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~630~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~645~^1.400^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03936~^~646~^0.500^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03937~^~312~^0.092^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~404~^0.130^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~405~^0.200^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~406~^0.990^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~415~^0.080^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03937~^~606~^3.200^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~609~^0.180^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~610~^0.140^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~611~^0.960^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~612~^0.460^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~613~^0.940^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~614~^0.500^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~617~^2.680^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~618~^0.900^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~619~^0.100^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~620~^0.044^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03937~^~621~^0.022^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03937~^~626~^0.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~628~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~645~^2.800^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03937~^~646~^1.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03938~^~312~^0.370^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~404~^0.530^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~405~^0.790^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~406~^3.940^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~415~^0.330^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03938~^~606~^12.761^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03938~^~607~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~608~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~609~^0.731^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~610~^0.563^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~611~^3.872^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~612~^1.817^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~613~^3.783^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~614~^1.995^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~617~^10.736^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~618~^3.585^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~619~^0.365^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~620~^0.181^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03938~^~621~^0.103^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03938~^~626~^0.336^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~627~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~628~^0.059^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~629~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~630~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~631~^0.000^0^^~12~^^^^^^^^^^^~04/01/2003~ -~03938~^~645~^11.131^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03938~^~646~^3.951^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~03939~^~312~^0.046^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~404~^0.070^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~405~^0.100^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~406~^0.490^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03939~^~415~^0.040^0^^~12~^^^^^^^^^^^~04/01/1985~ -~03939~^~606~^1.600^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~608~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~609~^0.090^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~610~^0.070^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~611~^0.480^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~612~^0.230^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~613~^0.470^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~614~^0.250^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~617~^1.340^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~618~^0.450^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~619~^0.050^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~620~^0.022^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03939~^~621~^0.011^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03939~^~626~^0.040^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~628~^0.010^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~630~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~645~^1.400^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03939~^~646~^0.500^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03940~^~312~^0.092^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~404~^0.140^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~405~^0.200^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~406~^0.980^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~415~^0.080^0^^~4~^^^^^^^^^^^~06/01/1994~ -~03940~^~606~^3.200^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~609~^0.180^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~610~^0.140^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~611~^0.960^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~612~^0.460^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~613~^0.940^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~614~^0.500^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~617~^2.680^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~618~^0.900^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~619~^0.100^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~620~^0.045^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03940~^~621~^0.022^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03940~^~626~^0.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~628~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~645~^2.800^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03940~^~646~^1.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~03941~^~312~^0.355^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~404~^0.500^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~405~^0.760^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~406~^3.780^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~415~^0.320^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03941~^~606~^12.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~03941~^~607~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~608~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~609~^0.710^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~610~^0.540^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~611~^3.750^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~612~^1.770^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~613~^3.670^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~614~^1.930^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~617~^10.410^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~618~^3.480^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~619~^0.350^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~620~^0.183^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03941~^~621~^0.091^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03941~^~626~^0.320^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~627~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~628~^0.050^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~629~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~630~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~631~^0.000^0^^~12~^^^^^^^^^^^~02/01/1995~ -~03941~^~645~^10.780^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~03941~^~646~^3.830^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~03942~^~312~^0.051^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~404~^0.055^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~405~^0.096^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~406~^0.684^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~415~^0.041^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~606~^1.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~ -~03942~^~608~^0.009^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~609~^0.057^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~610~^0.038^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~611~^0.311^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~612~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~613~^0.745^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~614~^0.120^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~617~^1.120^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~618~^0.510^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~619~^0.046^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~620~^0.023^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~621~^0.012^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~03942~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~626~^0.009^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~ -~03942~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03942~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~03942~^~645~^1.120^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03942~^~646~^0.620^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~312~^0.382^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~404~^0.408^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~405~^0.713^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~406~^5.088^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~410~^2.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~415~^0.306^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03943~^~606~^10.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03943~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~609~^0.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~610~^0.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~611~^2.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~612~^0.980^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~613~^5.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~614~^0.930^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~617~^8.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~618~^3.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~619~^0.350^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~620~^0.169^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~621~^0.085^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03943~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03943~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03943~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~03943~^~645~^8.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03943~^~646~^4.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03944~^~312~^0.082^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~315~^0.006^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~404~^0.151^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~405~^0.102^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~406~^1.336^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~410~^0.548^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03944~^~415~^0.068^0^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~03944~^~606~^2.447^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03944~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~608~^0.013^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~609~^1.039^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~610~^0.576^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~611~^0.333^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~612~^0.144^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~613~^0.232^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~614~^0.110^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~617~^0.387^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~618~^0.729^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~619~^0.081^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~620~^0.022^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03944~^~621~^0.012^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~03944~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03944~^~645~^0.387^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03944~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03945~^~312~^0.618^0^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~03945~^~315~^51.499^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~404~^1.133^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~405~^0.773^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~406~^10.043^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~410~^4.120^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~415~^0.515^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~606~^9.871^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03945~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03945~^~608~^0.059^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~609~^0.879^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~610~^0.626^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~611~^3.876^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~612~^1.459^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~613~^2.056^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~614~^0.916^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~617~^10.419^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~618~^5.778^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~619~^0.618^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~620~^0.174^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~621~^0.090^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03945~^~626~^0.019^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03945~^~628~^0.054^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03945~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03945~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03945~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03945~^~645~^10.492^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03945~^~646~^6.660^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03946~^~312~^0.060^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~315~^0.003^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~404~^0.069^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~405~^0.104^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~406~^0.726^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~410~^0.311^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~415~^0.042^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03946~^~606~^2.430^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03946~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~608~^0.012^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~609~^1.032^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~610~^0.572^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~611~^0.331^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~612~^0.143^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~613~^0.230^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~614~^0.109^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~617~^0.384^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~618~^0.724^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~619~^0.080^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~620~^0.017^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03946~^~645~^0.384^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03946~^~646~^0.832^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~312~^0.062^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~315~^0.006^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~404~^0.129^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~405~^0.279^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~406~^1.351^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~410~^0.579^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~415~^0.077^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03947~^~606~^4.522^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~607~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~608~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~609~^1.921^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~610~^1.065^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~611~^0.615^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03947~^~612~^0.267^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03947~^~613~^0.429^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03947~^~614~^0.203^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03947~^~617~^0.715^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03947~^~618~^1.348^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~619~^0.149^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~620~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~621~^0.020^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~626~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~627~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~628~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~629~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~630~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~631~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~645~^0.715^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03947~^~646~^1.548^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03948~^~312~^0.451^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~315~^0.023^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~404~^0.519^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~405~^0.782^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~406~^5.462^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~410~^2.330^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~415~^0.316^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03948~^~606~^18.305^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03948~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~608~^0.093^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~609~^7.774^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~610~^4.312^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~611~^2.491^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~612~^1.079^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~613~^1.735^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~614~^0.820^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~617~^2.894^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~618~^5.457^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~619~^0.605^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~620~^0.130^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~621~^0.079^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03948~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03948~^~645~^2.894^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03948~^~646~^6.270^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~03949~^~312~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~315~^0.003^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03949~^~404~^0.066^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~405~^0.099^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03949~^~406~^0.690^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03949~^~410~^0.296^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03949~^~415~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~606~^1.237^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~608~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~609~^0.110^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~610~^0.078^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~611~^0.486^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~612~^0.183^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~613~^0.258^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~614~^0.115^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~617~^1.305^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~618~^0.724^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~619~^0.077^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~620~^0.023^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03949~^~621~^0.012^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~03949~^~626~^0.002^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~628~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~645~^1.314^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03949~^~646~^0.801^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03950~^~312~^0.473^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~315~^0.026^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03950~^~404~^0.526^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~405~^0.789^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~406~^5.522^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~410~^2.367^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~415~^0.316^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03950~^~606~^9.873^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~608~^0.059^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~609~^0.879^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~610~^0.626^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~611~^3.876^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~612~^1.459^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~613~^2.056^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~614~^0.916^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~617~^10.419^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~618~^5.778^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~619~^0.618^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~620~^0.187^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03950~^~621~^0.096^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03950~^~626~^0.019^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~628~^0.054^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~645~^10.491^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03950~^~646~^6.396^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~312~^0.115^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~315~^0.006^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03951~^~404~^0.127^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~405~^0.191^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~406~^1.339^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03951~^~410~^0.574^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03951~^~415~^0.076^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03951~^~606~^2.401^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~608~^0.014^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~609~^0.214^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~610~^0.152^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~611~^0.943^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~612~^0.355^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~613~^0.500^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~614~^0.223^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~617~^2.533^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~618~^1.405^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~619~^0.150^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~620~^0.046^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03951~^~621~^0.023^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~03951~^~626~^0.005^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~628~^0.013^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~645~^2.551^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03951~^~646~^1.555^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~312~^0.096^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~315~^0.032^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03952~^~404~^0.077^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~405~^0.115^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~ -~03952~^~406~^1.725^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~410~^0.958^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~415~^0.077^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03952~^~606~^2.262^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~608~^0.017^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~609~^0.174^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~610~^0.120^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~611~^0.874^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~612~^0.343^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~613~^0.509^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~614~^0.225^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~617~^2.641^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~618~^1.458^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~619~^0.166^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~620~^0.046^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03952~^~621~^0.023^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03952~^~626~^0.005^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~628~^0.015^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~645~^2.660^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03952~^~646~^1.625^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~03953~^~312~^0.049^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~315~^0.016^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~ -~03953~^~404~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~405~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~406~^0.887^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03953~^~410~^0.493^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03953~^~415~^0.039^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~606~^1.166^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~608~^0.009^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~609~^0.090^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03953~^~610~^0.062^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~611~^0.450^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~612~^0.177^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~613~^0.262^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~614~^0.116^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~617~^1.361^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~618~^0.752^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~619~^0.086^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~620~^0.023^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03953~^~621~^0.012^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03953~^~626~^0.002^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~628~^0.007^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~645~^1.371^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03953~^~646~^0.838^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~ -~03954~^~312~^0.386^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~315~^0.129^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~404~^0.309^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~405~^0.463^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~406~^6.943^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~410~^3.857^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~415~^0.309^0^^~4~^~T~^^^^^^^^^^~03/01/2004~ -~03954~^~606~^9.167^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~608~^0.067^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~609~^0.707^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~610~^0.487^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~611~^3.541^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~612~^1.389^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~613~^2.064^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~614~^0.913^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~617~^10.701^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~618~^5.910^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~619~^0.674^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~620~^0.187^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03954~^~621~^0.096^0^^~12~^~MA~^^^^^^^^^^~04/01/2007~ -~03954~^~626~^0.019^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~628~^0.059^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~645~^10.778^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03954~^~646~^6.584^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~03955~^~312~^0.065^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~315~^0.011^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~404~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~405~^0.144^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~406~^0.720^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~410~^0.610^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~415~^0.048^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~606~^1.578^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~607~^0.000^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~608~^0.010^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~609~^0.585^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~610~^0.240^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~611~^0.270^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~612~^0.110^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~613~^0.228^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~614~^0.121^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~617~^1.290^0^^~12~^~MA~^~03849~^^^^^^^^^~10/01/2016~ -~03955~^~618~^0.673^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~619~^0.062^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~620~^0.024^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~621~^0.012^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~03955~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03955~^~626~^0.000^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~ -~03955~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~03955~^~645~^1.330^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03955~^~646~^0.862^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~ -~03956~^~312~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~315~^0.101^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~404~^0.047^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~405~^0.129^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~406~^0.119^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~410~^0.354^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~415~^0.034^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~606~^1.840^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~607~^0.083^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~608~^0.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~609~^0.036^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~610~^0.081^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~611~^0.097^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~612~^0.322^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~613~^0.866^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~614~^0.296^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~617~^0.782^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~618~^0.147^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~619~^0.117^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~620~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~621~^0.040^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~626~^0.090^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~627~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~628~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~629~^0.038^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~630~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~631~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~645~^0.916^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~646~^0.367^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03956~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03957~^~312~^0.382^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~404~^0.305^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~405~^0.458^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~406~^6.870^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~410~^3.817^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~415~^0.305^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~03957~^~606~^14.282^0^^~4~^~NC~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~607~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~608~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~609~^7.231^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~610~^5.351^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~611~^0.179^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~612~^0.054^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~613~^1.064^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~614~^0.404^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~617~^2.229^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~618~^8.194^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~619~^0.458^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~620~^0.140^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~621~^0.085^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~626~^0.023^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~627~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~628~^0.023^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~629~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~630~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~631~^0.000^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~645~^2.276^0^^~4~^~NC~^~03935~^^^^^^^^^~05/01/2007~ -~03957~^~646~^8.877^0^^~4~^~NC~^~03935~^^^^^^^^^~05/01/2007~ -~03959~^~312~^0.060^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~315~^0.056^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~404~^0.030^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~405~^0.020^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~406~^0.419^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~410~^0.194^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~415~^0.089^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~501~^0.015^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~502~^0.038^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~503~^0.050^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~504~^0.077^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~505~^0.072^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~506~^0.021^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~507~^0.010^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~508~^0.051^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~509~^0.041^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~510~^0.063^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~511~^0.051^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~512~^0.029^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~513~^0.034^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~514~^0.169^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~515~^0.218^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~516~^0.028^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~517~^0.070^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~518~^0.053^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~605~^0.000^1^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~606~^0.875^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~607~^0.049^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~608~^0.029^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~609~^0.017^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~610~^0.036^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~611~^0.036^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~612~^0.128^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~613~^0.390^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~614~^0.168^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~615~^0.002^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~617~^0.336^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~618~^0.075^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~619~^0.017^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~626~^0.026^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~645~^0.370^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~646~^0.092^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~653~^0.006^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~03959~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~ -~03959~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03959~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~03960~^~312~^0.053^0^^~12~^^^^^^^^^^^~06/01/1994~ -~03960~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~406~^0.693^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~03960~^~415~^0.050^0^^~9~^~MC~^^^^^^^^^^~12/01/2008~ -~03960~^~606~^1.470^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~609~^0.050^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~611~^0.340^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~613~^0.780^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~614~^0.120^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~617~^1.080^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~618~^0.634^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~619~^0.071^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~620~^0.023^0^^~4~^~NR~^^^^^^^^^^~12/01/2008~ -~03960~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~645~^1.080^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03960~^~646~^0.740^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~312~^0.053^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~406~^0.693^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~415~^0.050^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~ -~03961~^~606~^1.470^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~609~^0.050^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~611~^0.340^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~613~^0.780^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~614~^0.120^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~617~^1.080^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~618~^0.634^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~619~^0.071^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~620~^0.023^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~12/01/2008~ -~03961~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~645~^1.080^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03961~^~646~^0.740^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~ -~03963~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~404~^0.053^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~406~^0.660^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~410~^0.330^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~606~^1.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~ -~03963~^~608~^0.010^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~609~^0.060^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~610~^0.040^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~611~^0.320^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~612~^0.140^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~613~^0.800^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~614~^0.140^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~618~^0.530^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~619~^0.047^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~620~^0.020^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~621~^0.010^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~626~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~ -~03963~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03963~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03964~^~312~^0.082^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~315~^0.461^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~404~^0.921^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~405~^1.053^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~406~^11.842^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~410~^0.345^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~415~^1.105^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~03964~^~605~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~606~^0.453^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~612~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~613~^0.288^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~614~^0.110^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~615~^0.031^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~617~^3.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~618~^1.083^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~619~^0.458^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~624~^0.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~626~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~628~^0.063^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~645~^3.107^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~646~^1.541^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~03964~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03964~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~03965~^~312~^0.031^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~315~^0.064^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~404~^0.048^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~405~^0.120^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~406~^0.119^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~410~^0.333^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~415~^0.036^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~606~^1.582^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~607~^0.075^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~608~^0.052^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~609~^0.033^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~610~^0.073^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~611~^0.087^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~612~^0.269^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~613~^0.730^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~614~^0.263^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~615~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~617~^0.683^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~618~^0.146^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~619~^0.259^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~626~^0.056^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~645~^0.740^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~646~^0.405^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~671~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03965~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~03966~^~312~^0.106^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~404~^0.079^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~405~^0.125^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~406~^1.784^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~415~^0.080^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~606~^2.897^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~ -~03966~^~608~^0.008^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~609~^0.113^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~610~^0.079^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~611~^0.635^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~612~^0.264^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~613~^1.534^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~614~^0.264^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~617~^2.090^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~618~^1.240^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~619~^0.132^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~620~^0.040^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~621~^0.019^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~628~^0.105^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~630~^0.003^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~645~^2.198^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03966~^~646~^1.431^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~ -~03967~^~312~^0.370^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~315~^0.074^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~404~^0.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~405~^0.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~406~^5.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~415~^0.300^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~03967~^~606~^10.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~609~^0.420^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~610~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~611~^2.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~612~^1.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~613~^5.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~614~^0.960^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~617~^8.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~618~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~619~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~620~^0.169^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~621~^0.084^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~627~^0.138^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~628~^0.040^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~ -~03967~^~629~^0.000^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~630~^0.000^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~631~^0.000^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~ -~03967~^~645~^8.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03967~^~646~^4.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03968~^~312~^0.051^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~404~^0.055^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~405~^0.096^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~406~^0.684^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~415~^0.041^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~03968~^~606~^1.550^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03968~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~608~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~609~^0.050^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~610~^0.040^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~611~^0.330^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~612~^0.150^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~613~^0.800^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~614~^0.150^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~615~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~617~^1.370^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~618~^0.620^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~619~^0.060^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~620~^0.020^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~621~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~624~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~626~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~627~^0.020^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~628~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~630~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~03968~^~645~^1.380^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03968~^~646~^0.730^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~03980~^~312~^0.380^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~315~^0.077^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~404~^0.410^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~405~^0.710^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~406~^5.100^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~410~^2.600^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~415~^0.310^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~606~^11.300^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~607~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~608~^0.040^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~609~^0.430^0^^~4~^~NR~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~610~^0.320^0^^~4~^~NR~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~611~^2.469^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~612~^1.050^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~613~^5.900^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~614~^1.080^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~617~^9.200^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~618~^4.400^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~619~^0.370^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~620~^0.171^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03980~^~621~^0.086^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~ -~03980~^~626~^0.040^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~627~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~628~^0.077^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~629~^0.000^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~630~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~631~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~04/01/2011~ -~03980~^~645~^9.500^0^^~12~^~MA~^~03963~^^^^^^^^^~10/01/2016~ -~03980~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03982~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~315~^0.033^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~404~^0.053^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~405~^0.059^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~406~^0.657^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~410~^0.328^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03982~^~606~^0.855^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03982~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~608~^0.068^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~609~^0.027^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~610~^0.020^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~611~^0.169^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~612~^0.075^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~613~^0.421^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~614~^0.075^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~617~^0.706^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~618~^0.326^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~619~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~620~^0.014^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~621~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~626~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~628~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~630~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03982~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03982~^~645~^0.727^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03982~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03983~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~315~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~404~^0.053^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~405~^0.059^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~406~^0.657^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~410~^0.328^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03983~^~606~^1.592^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03983~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~608~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~609~^0.063^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~610~^0.042^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~611~^0.344^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~612~^0.153^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~613~^0.824^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~614~^0.156^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~618~^0.647^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~619~^0.063^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~03983~^~620~^0.021^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~621~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~626~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~628~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~630~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03983~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03983~^~646~^0.741^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~03984~^~312~^0.079^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~315~^0.004^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~404~^0.131^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~405~^0.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~406~^2.623^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~410~^0.790^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~415~^0.098^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03984~^~606~^1.510^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~609~^0.920^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~610~^0.350^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~611~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~612~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~613~^0.150^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~614~^0.060^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~615~^0.000^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~617~^0.920^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~618~^0.530^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~619~^0.059^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~624~^0.000^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~628~^0.000^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~630~^0.000^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03984~^~645~^0.920^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03984~^~646~^0.680^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03985~^~312~^0.094^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~315~^0.005^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~404~^0.156^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~405~^0.230^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03985~^~406~^2.623^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03985~^~410~^0.940^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~415~^0.117^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~606~^1.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~609~^1.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~610~^0.410^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~611~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~612~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~613~^0.170^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~614~^0.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~617~^1.090^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~618~^0.630^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~619~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~620~^0.027^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~621~^0.013^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~628~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~630~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~645~^1.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03985~^~646~^0.820^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~ -~03986~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~315~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~404~^0.052^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~406~^0.660^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~410~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03986~^~606~^1.480^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~608~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~609~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~610~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~611~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~612~^0.140^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~613~^0.770^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~614~^0.130^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~615~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~617~^1.190^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~618~^0.560^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~619~^0.052^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~620~^0.022^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~621~^0.011^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~624~^0.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~626~^0.007^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~628~^0.007^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~630~^0.007^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~645~^1.200^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03986~^~646~^0.650^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~03987~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~315~^0.033^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~404~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~405~^0.062^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~410~^0.328^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03987~^~606~^1.399^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~608~^0.004^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~609~^0.050^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~610~^0.039^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~611~^0.307^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~612~^0.128^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~613~^0.743^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~614~^0.128^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~617~^1.079^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~618~^0.602^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~619~^0.064^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~620~^0.019^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~621~^0.009^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~626~^0.006^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~628~^0.051^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~630~^0.051^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03987~^~645~^1.187^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03987~^~646~^0.694^0^^~4~^~BFFN~^~03859~^^^^^^^^^~02/01/2013~ -~03988~^~312~^0.080^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~410~^0.295^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~415~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03988~^~606~^1.443^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~608~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~609~^0.057^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~610~^0.038^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~611~^0.306^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~612~^0.134^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~613~^0.764^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~614~^0.134^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~617~^1.233^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~618~^0.573^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~619~^0.065^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~620~^0.019^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~621~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~626~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~628~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~629~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~630~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03988~^~645~^1.252^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03988~^~646~^0.667^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~312~^0.052^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~410~^0.295^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~415~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03989~^~606~^0.975^0^^~4~^~NC~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~607~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~608~^0.006^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~609~^0.039^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~610~^0.026^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~611~^0.207^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~612~^0.090^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~613~^0.517^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~614~^0.090^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~617~^0.833^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~618~^0.387^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~619~^0.044^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~620~^0.013^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~621~^0.006^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~626~^0.007^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~627~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~628~^0.006^0^^~4~^~BFFN~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~629~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~630~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~631~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03989~^~645~^0.846^0^^~4~^~NC~^~03963~^^^^^^^^^~05/01/2013~ -~03989~^~646~^0.451^0^^~4~^~NC~^~03963~^^^^^^^^^~05/01/2013~ -~03990~^~312~^0.080^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~410~^0.295^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~415~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03990~^~606~^1.443^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~608~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~609~^0.057^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~610~^0.038^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~611~^0.306^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~612~^0.134^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~613~^0.764^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~614~^0.134^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~617~^1.233^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~618~^0.573^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~619~^0.065^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~620~^0.019^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~621~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~626~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~628~^0.010^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~629~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~630~^0.000^0^^~4~^~BFFN~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03990~^~645~^1.252^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03990~^~646~^0.667^0^^~4~^~NC~^~03963~^^^^^^^^^~02/01/2013~ -~03991~^~312~^0.059^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~315~^0.003^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~405~^0.098^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~410~^0.295^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03991~^~606~^1.018^0^^~4~^~NC~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~03991~^~608~^0.007^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~609~^0.040^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~610~^0.027^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~611~^0.217^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~612~^0.100^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~613~^0.527^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~614~^0.101^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~617~^0.891^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~618~^0.415^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~619~^0.040^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~620~^0.013^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~621~^0.007^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~626~^0.007^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~627~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~02/01/2013~ -~03991~^~628~^0.007^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~629~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~02/01/2013~ -~03991~^~630~^0.007^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~631~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~02/01/2013~ -~03991~^~645~^0.911^0^^~4~^~NC~^~03986~^^^^^^^^^~05/01/2013~ -~03991~^~646~^0.476^0^^~4~^~NC~^~03986~^^^^^^^^^~05/01/2013~ -~03992~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~315~^0.016^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~404~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~405~^0.059^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~406~^0.885^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~410~^0.492^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~03992~^~606~^1.477^0^^~4~^~NC~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~607~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~608~^0.009^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~609~^0.058^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~610~^0.039^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~611~^0.318^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~612~^0.145^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~613~^0.762^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~614~^0.145^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~617~^1.284^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~618~^0.598^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~619~^0.058^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~620~^0.019^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~621~^0.009^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~626~^0.009^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~627~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~628~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~629~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~630~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~631~^0.000^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~645~^1.293^0^^~4~^~NC~^~03857~^^^^^^^^^~02/01/2013~ -~03992~^~646~^0.685^0^^~4~^~NC~^~03857~^^^^^^^^^~02/01/2013~ -~03993~^~312~^0.059^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~315~^0.003^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~404~^0.066^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~405~^0.098^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~406~^0.689^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~410~^0.295^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03993~^~606~^2.300^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~03993~^~607~^0.000^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~608~^0.012^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~609~^0.977^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~610~^0.542^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~611~^0.313^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~612~^0.136^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~613~^0.218^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~614~^0.103^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~617~^0.364^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~618~^0.686^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~619~^0.076^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~620~^0.021^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~621~^0.011^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~626~^0.000^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~627~^0.000^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~628~^0.000^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~630~^0.000^0^^~4~^~BFFN~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~ -~03993~^~645~^0.364^0^^~4~^~NC~^~03944~^^^^^^^^^~03/01/2013~ -~03993~^~646~^0.793^0^^~4~^~NC~^~03944~^^^^^^^^^~03/01/2013~ -~03994~^~312~^0.087^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~315~^0.300^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~404~^0.035^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~405~^0.080^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~406~^0.728^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~410~^0.368^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~415~^0.395^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~501~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~502~^0.031^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~503~^0.030^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~504~^0.073^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~505~^0.054^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~506~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~507~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~508~^0.053^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~509~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~510~^0.050^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~511~^0.053^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~512~^0.083^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~513~^0.043^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~514~^0.136^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~515~^0.165^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~516~^0.041^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~517~^0.031^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~518~^0.043^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~606~^0.121^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~612~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~613~^0.110^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~614~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~617~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~618~^0.053^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~619~^0.031^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03994~^~645~^0.036^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03994~^~646~^0.084^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~03995~^~312~^0.094^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~315~^0.351^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~404~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~405~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~406~^0.623^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~410~^0.295^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~415~^0.257^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~501~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~502~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~503~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~504~^0.049^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~505~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~506~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~507~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~508~^0.035^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~509~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~510~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~511~^0.036^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~512~^0.053^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~513~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~514~^0.088^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~515~^0.110^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~516~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~517~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~518~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03995~^~606~^0.081^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~613~^0.073^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~614~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~617~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~618~^0.079^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~619~^0.044^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~626~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~645~^0.036^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03995~^~646~^0.123^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~312~^0.225^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~315~^2.459^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~404~^1.166^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~405~^1.330^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~406~^15.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~ -~03996~^~410~^0.916^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~415~^1.166^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~03996~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~606~^1.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~611~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~612~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~613~^0.912^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~614~^0.126^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~617~^1.272^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~618~^2.364^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~619~^0.232^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~626~^0.019^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~645~^1.291^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03996~^~646~^2.596^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~312~^0.156^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~315~^0.732^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~404~^0.174^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~405~^0.037^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~406~^2.896^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~410~^0.623^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~415~^0.571^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~501~^0.089^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~502~^0.234^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~503~^0.259^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~504~^0.438^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~505~^0.295^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~506~^0.121^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~507~^0.085^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~508~^0.303^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~509~^0.259^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~510~^0.337^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~511~^0.426^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~512~^0.151^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~513~^0.315^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~514~^0.816^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~515~^0.974^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~516~^0.250^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~517~^0.261^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~518~^0.261^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~606~^0.238^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~611~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~612~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~613~^0.200^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~614~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~617~^0.220^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~618~^0.206^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~619~^0.050^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~626~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~645~^0.224^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~646~^0.255^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03997~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~312~^0.160^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~315~^0.312^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~404~^0.169^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~405~^0.099^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~406~^1.291^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~410~^0.493^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~415~^0.258^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~03998~^~606~^4.669^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~607~^0.126^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~608~^0.064^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~609~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~610~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~611~^0.065^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~612~^0.401^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~613~^2.608^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~614~^0.969^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~615~^0.135^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~617~^14.194^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~618~^6.344^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~619~^1.354^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~624~^0.067^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~626~^0.165^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~628~^0.265^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~645~^14.682^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~646~^7.698^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03998~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~03999~^~312~^0.463^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~315~^0.026^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~404~^0.514^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~405~^0.771^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~406~^5.396^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~410~^2.313^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~415~^0.308^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~03999~^~606~^18.025^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~607~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~608~^0.092^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~609~^7.655^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~610~^4.246^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~611~^2.452^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~612~^1.063^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~613~^1.708^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~614~^0.808^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~617~^2.849^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~618~^5.373^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~619~^0.595^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~620~^0.164^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~621~^0.085^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~626~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~627~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~628~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~629~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~630~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~631~^0.000^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~645~^2.849^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~03999~^~646~^6.218^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~ -~04001~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04001~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04001~^~606~^49.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~611~^0.900^5^0.508^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~612~^3.700^14^0.421^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~613~^24.900^15^0.819^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~614~^18.900^15^0.927^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~617~^36.000^15^1.275^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~618~^3.100^15^0.511^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~619~^0.600^9^0.160^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~626~^4.200^15^0.551^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~628~^0.300^4^0.107^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~645~^41.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04001~^~646~^4.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04002~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04002~^~606~^39.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~610~^0.100^18^0.014^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~611~^0.200^22^0.087^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~612~^1.300^33^0.068^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~613~^23.800^38^0.295^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~614~^13.500^38^0.435^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~617~^41.200^38^0.532^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~618~^10.200^38^0.243^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~619~^1.000^29^0.107^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~626~^2.700^36^0.270^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~628~^1.000^7^0.210^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~645~^45.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04002~^~646~^11.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04011~^~606~^5.000^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04013~^~312~^0.019^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~404~^0.008^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~405~^0.000^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~406~^0.010^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~415~^0.002^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~ -~04013~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04013~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~04014~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~04015~^~312~^0.058^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~315~^0.063^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~404~^0.029^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~405~^0.046^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~406~^0.594^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~410~^0.400^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04015~^~415~^0.097^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~605~^0.170^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~606~^2.390^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~ -~04015~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~612~^0.021^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~613~^1.731^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~614~^0.636^0^^~4~^~FLC~^^^^^^^^^^~12/01/2007~ -~04015~^~617~^5.824^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~618~^13.089^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~619~^1.741^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~626~^0.053^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~628~^0.051^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~645~^5.928^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04015~^~646~^14.830^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~ -~04016~^~312~^0.000^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~ -~04016~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~501~^0.047^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~502~^0.049^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~503~^0.047^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~504~^0.082^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~505~^0.142^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~506~^0.029^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~507~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~508~^0.086^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~509~^0.102^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~510~^0.068^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~511~^0.399^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~512~^0.031^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~513~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~514~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~515~^0.461^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~516~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~517~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~518~^0.000^0^^~4~^^^^^^^^^^^~04/01/2004~ -~04016~^~606~^6.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~613~^4.200^6^0.466^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~614~^1.900^6^0.230^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~617~^11.900^6^1.343^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~618~^23.200^6^2.518^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~619~^2.000^6^0.312^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04016~^~645~^11.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04016~^~646~^25.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04017~^~312~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~315~^0.040^6^0.025^~1~^~A~^^^1^0.000^0.120^5^-0.025^0.105^~1, 2, 3~^~02/01/2003~ -~04017~^~404~^1.445^3^1.213^~1~^~A~^^^1^0.017^3.858^2^-3.775^6.665^~2, 3~^~02/01/2003~ -~04017~^~405~^0.058^3^0.002^~1~^~A~^^^1^0.055^0.061^2^0.050^0.065^~2, 3~^~02/01/2003~ -~04017~^~406~^0.418^3^0.015^~1~^~A~^^^1^0.388^0.434^2^0.354^0.482^~2, 3~^~02/01/2003~ -~04017~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04017~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04017~^~501~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~502~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~503~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~504~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~505~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~506~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~508~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~509~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~510~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~511~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~512~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~513~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~514~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~515~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~516~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~517~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~518~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04017~^~606~^5.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04017~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~613~^3.516^4^0.087^~1~^~A~^^^1^3.267^3.670^3^3.240^3.791^~2, 3~^~02/01/2003~ -~04017~^~614~^1.341^4^0.029^~1~^~A~^^^1^1.264^1.405^3^1.248^1.433^~2, 3~^~02/01/2003~ -~04017~^~615~^0.122^4^0.004^~1~^~A~^^^1^0.117^0.132^3^0.110^0.133^~2, 3~^~02/01/2003~ -~04017~^~617~^7.727^4^0.344^~1~^~A~^^^1^7.092^8.696^3^6.633^8.821^~2, 3~^~02/01/2003~ -~04017~^~618~^15.869^4^0.348^~1~^~A~^^^1^14.881^16.396^3^14.762^16.976^~2, 3~^~02/01/2003~ -~04017~^~619~^2.351^4^0.063^~1~^~A~^^^1^2.178^2.449^3^2.152^2.550^~2, 3~^~02/01/2003~ -~04017~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~624~^0.114^4^0.002^~1~^~A~^^^1^0.110^0.119^3^0.108^0.120^~2, 3~^~02/01/2003~ -~04017~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~628~^0.154^4^0.004^~1~^~A~^^^1^0.147^0.166^3^0.141^0.167^~2, 3~^~02/01/2003~ -~04017~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~645~^7.881^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04017~^~646~^18.220^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04017~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04017~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04018~^~312~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~315~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~404~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~405~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~05/01/2014~ -~04018~^~406~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~410~^0.085^2^^~1~^~A~^^^1^0.080^0.090^1^^^^~05/01/2014~ -~04018~^~415~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2014~ -~04018~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~502~^0.029^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~503~^0.033^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~504~^0.056^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~505~^0.045^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~506~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~507~^0.014^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~508~^0.034^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~509~^0.027^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~510~^0.040^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~511~^0.041^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~512~^0.016^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~513~^0.036^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~514~^0.068^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~515~^0.086^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~516~^0.022^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~517~^0.025^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~518~^0.051^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~04018~^~605~^0.078^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~606~^3.396^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~612~^0.018^6^0.000^~1~^~A~^^^1^0.017^0.019^5^0.017^0.019^~2, 3~^~05/01/2014~ -~04018~^~613~^2.202^6^0.018^~1~^~A~^^^1^2.138^2.249^5^2.157^2.247^~2, 3~^~05/01/2014~ -~04018~^~614~^0.986^6^0.011^~1~^~A~^^^1^0.947^1.024^5^0.958^1.014^~2, 3~^~05/01/2014~ -~04018~^~615~^0.072^6^0.001^~1~^~A~^^^1^0.069^0.075^5^0.070^0.074^~2, 3~^~05/01/2014~ -~04018~^~617~^4.917^6^0.055^~1~^~AS~^^^1^4.726^5.093^5^4.776^5.059^~2, 3~^~05/01/2014~ -~04018~^~618~^10.739^6^0.099^~1~^~AS~^^^1^10.404^11.090^5^10.485^10.993^~2, 3~^~05/01/2014~ -~04018~^~619~^1.422^6^0.016^~1~^~AS~^^^1^1.366^1.480^5^1.382^1.463^~2, 3~^~05/01/2014~ -~04018~^~620~^0.018^6^0.000^~1~^~A~^^^1^0.017^0.018^5^0.017^0.018^~2, 3~^~05/01/2014~ -~04018~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~624~^0.069^6^0.001^~1~^~A~^^^1^0.066^0.071^5^0.067^0.071^~2, 3~^~05/01/2014~ -~04018~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~626~^0.025^6^0.000^~1~^~AS~^^^1^0.024^0.025^5^0.024^0.025^~2, 3~^~05/01/2014~ -~04018~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~628~^0.067^6^0.001^~1~^~A~^^^1^0.064^0.070^5^0.065^0.069^~2, 3~^~05/01/2014~ -~04018~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~630~^0.033^6^0.000^~1~^~AS~^^^1^0.033^0.035^5^0.033^0.034^~2, 3~^~05/01/2014~ -~04018~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/1979~ -~04018~^~645~^5.053^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~646~^12.187^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~05/01/2014~ -~04018~^~653~^0.020^6^0.000^~1~^~A~^^^1^0.019^0.020^5^0.019^0.020^~2, 3~^~05/01/2014~ -~04018~^~654~^0.026^6^0.000^~1~^~A~^^^1^0.025^0.026^5^0.025^0.026^~2, 3~^~05/01/2014~ -~04018~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~663~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.008^~2, 3~^~05/01/2014~ -~04018~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~665~^0.070^6^0.003^~1~^~A~^^^1^0.063^0.079^5^0.064^0.077^~2, 3~^~05/01/2014~ -~04018~^~670~^0.015^6^0.000^~1~^~A~^^^1^0.014^0.016^5^0.014^0.016^~2, 3~^~05/01/2014~ -~04018~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~672~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~05/01/2014~ -~04018~^~673~^0.025^6^0.000^~1~^~A~^^^1^0.024^0.025^5^0.024^0.025^~2, 3~^~05/01/2014~ -~04018~^~674~^4.910^6^0.055^~1~^~A~^^^1^4.719^5.084^5^4.769^5.051^~2, 3~^~05/01/2014~ -~04018~^~675~^10.653^6^0.100^~1~^~A~^^^1^10.309^11.013^5^10.396^10.911^~2, 3~^~05/01/2014~ -~04018~^~676~^0.033^6^0.000^~1~^~A~^^^1^0.033^0.035^5^0.033^0.034^~2, 3~^~05/01/2014~ -~04018~^~685~^0.064^6^0.002^~1~^~A~^^^1^0.057^0.071^5^0.058^0.070^~2, 3~^~05/01/2014~ -~04018~^~687~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.011^5^0.010^0.011^~2, 3~^~05/01/2014~ -~04018~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~04018~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~695~^0.070^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~04018~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~851~^1.358^6^0.017^~1~^~A~^^^1^1.295^1.422^5^1.314^1.402^~2, 3~^~05/01/2014~ -~04018~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04018~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~04020~^~312~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~315~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~404~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~405~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~406~^0.467^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04020~^~415~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04020~^~501~^0.003^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~502~^0.014^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~503~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~504~^0.015^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~505~^0.017^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~506~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~507~^0.003^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~508~^0.016^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~509~^0.007^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~510~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~511~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~512~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~513~^0.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~514~^0.093^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~515~^0.254^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~516~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~517~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~04020~^~518~^0.015^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04020~^~606~^0.842^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~613~^0.611^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~614~^0.231^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~617~^4.407^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~618~^2.956^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~619~^0.896^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~628~^0.111^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~04020~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~04020~^~645~^4.518^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04020~^~646~^3.852^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04021~^~312~^0.019^10^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~315~^0.029^10^0.000^~1~^~A~^^^1^0.027^0.031^5^0.028^0.030^~2, 3~^~05/01/2012~ -~04021~^~404~^0.012^6^0.002^~1~^~A~^^^1^0.010^0.020^2^0.004^0.019^~2, 3~^~05/01/2012~ -~04021~^~405~^0.008^6^0.001^~1~^~A~^^^1^0.000^0.020^2^0.004^0.011^~1, 2, 3~^~05/01/2012~ -~04021~^~406~^0.094^6^0.002^~1~^~A~^^^1^0.070^0.120^4^0.088^0.101^~2, 3~^~05/01/2012~ -~04021~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04021~^~415~^0.055^6^0.002^~1~^~A~^^^1^0.051^0.063^2^0.049^0.061^~2, 3~^~05/01/2012~ -~04021~^~501~^0.006^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~502~^0.012^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~503~^0.016^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~504~^0.024^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~505~^0.018^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~506~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~507~^0.006^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~508~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~509~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~510~^0.017^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~511~^0.051^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~512~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~513~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~514~^0.032^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~515~^0.068^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~516~^0.015^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~517~^0.011^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~518~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~04021~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~606~^0.833^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~612~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.007^4^0.004^0.006^~2, 3~^~05/01/2012~ -~04021~^~613~^0.559^6^0.003^~1~^~A~^^^1^0.276^0.818^3^0.547^0.571^~2, 3~^~05/01/2012~ -~04021~^~614~^0.215^6^0.001^~1~^~A~^^^1^0.115^0.305^3^0.210^0.219^~2, 3~^~05/01/2012~ -~04021~^~615~^0.021^6^0.000^~1~^~A~^^^1^0.017^0.024^3^0.020^0.022^~2, 3~^~05/01/2012~ -~04021~^~617~^1.680^6^0.046^~1~^~AS~^^^1^1.302^1.892^2^1.482^1.878^~2, 3~^~05/01/2012~ -~04021~^~618~^2.775^6^0.016^~1~^~AS~^^^1^1.323^4.082^2^2.709^2.840^~2, 3~^~05/01/2012~ -~04021~^~619~^0.458^6^0.007^~1~^~AS~^^^1^0.272^0.616^2^0.430^0.486^~2, 3~^~05/01/2012~ -~04021~^~620~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.000^0.003^~1, 2, 3~^~05/01/2012~ -~04021~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~624~^0.018^6^0.001^~1~^~A~^^^1^0.010^0.026^4^0.017^0.020^~2, 3~^~05/01/2012~ -~04021~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~626~^0.007^6^0.000^~1~^~AS~^^^1^0.006^0.008^2^0.007^0.008^~2, 3~^~05/01/2012~ -~04021~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~628~^0.034^6^0.001^~1~^~A~^^^1^0.028^0.038^2^0.028^0.040^~2, 3~^~05/01/2012~ -~04021~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.003^~2, 3~^~05/01/2012~ -~04021~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04021~^~645~^1.725^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~646~^3.236^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.001^0.004^~1, 2, 3~^~05/01/2012~ -~04021~^~653~^0.005^6^0.000^~1~^~A~^^^1^0.002^0.008^4^0.004^0.006^~1, 2, 3~^~05/01/2012~ -~04021~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.004^0.009^4^0.005^0.008^~2, 3~^~05/01/2012~ -~04021~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~663~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.001^0.004^~1, 2, 3~^~05/01/2012~ -~04021~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~665~^0.015^6^0.001^~1~^~A~^^^1^0.005^0.025^2^0.013^0.017^~2, 3~^~05/01/2012~ -~04021~^~670~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.003^~1, 2, 3~^~05/01/2012~ -~04021~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^3^0.001^0.003^~1, 2, 3~^~05/01/2012~ -~04021~^~673~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^2^0.007^0.008^~2, 3~^~05/01/2012~ -~04021~^~674~^1.678^6^0.046^~1~^~A~^^^1^1.302^1.888^2^1.480^1.876^~2, 3~^~05/01/2012~ -~04021~^~675~^2.758^6^0.017^~1~^~A~^^^1^1.317^4.053^2^2.690^2.825^~2, 3~^~05/01/2012~ -~04021~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.003^~1, 2, 3~^~05/01/2012~ -~04021~^~685~^0.017^6^0.000^~1~^~A~^^^1^0.011^0.022^3^0.015^0.019^~2, 3~^~05/01/2012~ -~04021~^~687~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^2^0.003^0.004^~1, 2, 3~^~05/01/2012~ -~04021~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~04021~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04021~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~851~^0.441^6^0.007^~1~^~A~^^^1^0.261^0.594^2^0.414^0.467^~2, 3~^~05/01/2012~ -~04021~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04021~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04022~^~312~^0.010^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04022~^~404~^0.007^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~405~^0.013^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~406~^0.002^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~410~^0.135^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~415~^0.009^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~501~^0.007^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~502~^0.027^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~503~^0.029^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~504~^0.043^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~505~^0.034^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~506~^0.013^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~507~^0.009^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~508~^0.022^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~509~^0.022^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~510~^0.030^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~511~^0.035^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~512~^0.012^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~513~^0.025^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~514~^0.042^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~515~^0.061^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~516~^0.015^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~517~^0.021^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~518~^0.041^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04022~^~606~^0.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~613~^0.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~614~^0.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~617~^0.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~618~^2.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~619~^0.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~645~^0.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04022~^~646~^2.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04023~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04023~^~315~^0.120^3^0.006^~1~^~A~^^^1^0.110^0.130^2^0.095^0.145^~2, 3~^~02/01/2003~ -~04023~^~404~^0.049^2^^~1~^~A~^^^1^0.017^0.080^1^^^^~02/01/2003~ -~04023~^~405~^0.043^2^^~1~^~A~^^^1^0.042^0.043^1^^^^~02/01/2003~ -~04023~^~406~^0.437^2^^~1~^~A~^^^1^0.436^0.438^1^^^^~02/01/2003~ -~04023~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04023~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04023~^~501~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~502~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~503~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~504~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~505~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~506~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~507~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~508~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~509~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~510~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~511~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~512~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~513~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~514~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~515~^0.135^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~516~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~517~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~518~^0.000^0^^~6~^~JA~^^^^^^^^^^~12/01/2007~ -~04023~^~606~^0.746^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~613~^0.524^2^^~1~^~A~^^^1^0.446^0.601^1^^^^~02/01/2003~ -~04023~^~614~^0.223^2^^~1~^~A~^^^1^0.191^0.254^1^^^^~02/01/2003~ -~04023~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~617~^6.285^2^^~1~^~A~^^^1^5.588^6.982^1^^^^~02/01/2003~ -~04023~^~618~^1.955^2^^~1~^~A~^^^1^1.915^1.994^1^^^^~02/01/2003~ -~04023~^~619~^0.737^2^^~1~^~A~^^^1^0.684^0.790^1^^^^~02/01/2003~ -~04023~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~628~^0.183^2^^~1~^~A~^^^1^0.148^0.217^1^^^^~02/01/2003~ -~04023~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~645~^6.468^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~646~^2.692^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04023~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04023~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04023~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04025~^~312~^0.019^12^0.000^~1~^~A~^^^1^0.019^0.024^5^0.018^0.019^~1, 2, 3~^~04/01/2012~ -~04025~^~315~^0.007^12^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~404~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~05/01/2012~ -~04025~^~405~^0.019^6^0.001^~1~^~A~^^^1^0.015^0.020^2^0.013^0.024^~1, 2, 3~^~04/01/2012~ -~04025~^~406~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~410~^0.172^4^0.019^~1~^~A~^^^1^0.140^0.200^1^-0.061^0.406^~2, 3~^~04/01/2012~ -~04025~^~415~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.012^2^0.002^0.014^~1, 2, 3~^~04/01/2012~ -~04025~^~501~^0.017^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~502~^0.055^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~503~^0.065^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~504~^0.095^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~505~^0.072^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~506~^0.035^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~507~^0.023^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~508~^0.057^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~509~^0.046^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~510~^0.074^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~511~^0.072^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~512~^0.026^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~513~^0.061^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~514~^0.094^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~515~^0.143^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~516~^0.037^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~517~^0.044^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~518~^0.088^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04025~^~605~^0.187^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~606~^11.703^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~612~^0.055^12^0.001^~1~^~A~^^^1^0.051^0.071^10^0.053^0.057^~2, 3~^~04/01/2012~ -~04025~^~613~^7.909^12^0.028^~1~^~A~^^^1^7.761^8.159^6^7.841^7.976^~2, 3~^~04/01/2012~ -~04025~^~614~^3.099^12^0.023^~1~^~A~^^^1^2.878^3.586^7^3.044^3.154^~2, 3~^~04/01/2012~ -~04025~^~615~^0.232^12^0.001^~1~^~A~^^^1^0.215^0.280^10^0.229^0.235^~2, 3~^~04/01/2012~ -~04025~^~617~^16.455^12^0.073^~1~^~AS~^^^1^15.862^17.758^6^16.275^16.634^~2, 3~^~04/01/2012~ -~04025~^~618~^39.146^12^0.139^~1~^~AS~^^^1^38.101^39.876^6^38.809^39.484^~2, 3~^~04/01/2012~ -~04025~^~619~^5.456^12^0.009^~1~^~AS~^^^1^4.699^5.745^8^5.436^5.477^~2, 3~^~04/01/2012~ -~04025~^~620~^0.050^12^0.001^~1~^~A~^^^1^0.026^0.064^6^0.046^0.053^~2, 3~^~04/01/2012~ -~04025~^~621~^0.005^12^0.001^~1~^~A~^^^1^0.000^0.010^5^0.003^0.007^~1, 2, 3~^~04/01/2012~ -~04025~^~624~^0.240^12^0.003^~1~^~A~^^^1^0.217^0.286^8^0.233^0.246^~2, 3~^~04/01/2012~ -~04025~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04025~^~626~^0.088^12^0.001^~1~^~AS~^^^1^0.084^0.093^6^0.086^0.090^~2, 3~^~04/01/2012~ -~04025~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~628~^0.238^12^0.011^~1~^~A~^^^1^0.179^0.341^10^0.213^0.263^~2, 3~^~04/01/2012~ -~04025~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~04025~^~630~^0.022^12^0.001^~1~^~AS~^^^1^0.016^0.031^6^0.020^0.023^~2, 3~^~04/01/2012~ -~04025~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~645~^16.843^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~646~^44.690^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~652~^0.013^12^0.000^~1~^~A~^^^1^0.013^0.015^9^0.013^0.014^~2, 3~^~04/01/2012~ -~04025~^~653~^0.071^12^0.000^~1~^~A~^^^1^0.068^0.073^7^0.070^0.072^~2, 3~^~04/01/2012~ -~04025~^~654~^0.084^12^0.001^~1~^~A~^^^1^0.074^0.105^7^0.082^0.087^~2, 3~^~04/01/2012~ -~04025~^~662~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.004^6^0.001^0.004^~1, 2, 3~^~04/01/2012~ -~04025~^~663~^0.026^12^0.001^~1~^~A~^^^1^0.023^0.032^6^0.025^0.028^~2, 3~^~04/01/2012~ -~04025~^~664~^0.009^12^0.000^~1~^~A~^^^1^0.006^0.015^6^0.009^0.010^~2, 3~^~04/01/2012~ -~04025~^~665~^0.149^12^0.003^~1~^~A~^^^1^0.109^0.250^8^0.143^0.155^~2, 3~^~04/01/2012~ -~04025~^~670~^0.056^12^0.004^~1~^~A~^^^1^0.044^0.075^7^0.047^0.064^~2, 3~^~04/01/2012~ -~04025~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~672~^0.030^12^0.000^~1~^~A~^^^1^0.027^0.035^9^0.029^0.031^~2, 3~^~04/01/2012~ -~04025~^~673~^0.085^12^0.001^~1~^~A~^^^1^0.083^0.089^7^0.084^0.087^~2, 3~^~04/01/2012~ -~04025~^~674~^16.428^12^0.073^~1~^~A~^^^1^15.838^17.726^6^16.249^16.607^~2, 3~^~04/01/2012~ -~04025~^~675~^38.942^12^0.138^~1~^~A~^^^1^37.821^39.685^6^38.607^39.277^~2, 3~^~04/01/2012~ -~04025~^~676~^0.012^12^0.000^~1~^~A~^^^1^0.010^0.016^6^0.011^0.013^~2, 3~^~04/01/2012~ -~04025~^~685~^0.125^12^0.003^~1~^~A~^^^1^0.092^0.195^6^0.119^0.132^~2, 3~^~04/01/2012~ -~04025~^~687~^0.041^12^0.000^~1~^~A~^^^1^0.040^0.042^5^0.040^0.041^~2, 3~^~04/01/2012~ -~04025~^~689~^0.002^12^0.001^~1~^~AS~^^^1^0.000^0.006^5^0.000^0.004^~2, 3~^~04/01/2012~ -~04025~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~695~^0.149^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04025~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~851~^5.331^12^0.010^~1~^~A~^^^1^4.512^5.639^7^5.308^5.353^~2, 3~^~04/01/2012~ -~04025~^~852~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.006^5^0.000^0.004^~1, 2, 3~^~04/01/2012~ -~04025~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04025~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04026~^~404~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~406~^0.005^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~410~^0.297^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~415~^0.577^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~501~^0.017^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~502~^0.055^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~503~^0.065^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~504~^0.095^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~505~^0.072^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~506~^0.035^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~507~^0.023^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~508~^0.057^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~509~^0.046^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~510~^0.074^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~511~^0.072^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~512~^0.026^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~513~^0.061^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~514~^0.094^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~515~^0.143^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~516~^0.037^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~517~^0.044^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~518~^0.088^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~606~^8.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~611~^0.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~612~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~613~^6.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~614~^2.400^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~617~^13.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~618~^52.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~619~^3.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04026~^~645~^13.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04026~^~646~^55.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~312~^0.010^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04027~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04027~^~606~^3.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~612~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~613~^2.400^3^0.651^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~614~^0.900^3^0.252^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~617~^4.500^3^1.146^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~618~^9.000^3^2.351^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~619~^1.600^3^0.414^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~626~^0.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~645~^4.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04027~^~646~^10.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~312~^0.010^0^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~04028~^~315~^0.001^0^^~4~^~RA~^^^^^^^^^^~10/01/1995~ -~04028~^~404~^0.024^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~405~^0.097^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~406~^0.054^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~410~^0.194^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~415~^0.021^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~501~^0.030^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~502~^0.095^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~503~^0.127^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~504~^0.206^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~505~^0.166^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~506~^0.053^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~507~^0.019^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~508~^0.101^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~509~^0.101^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~510~^0.141^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~511~^0.076^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~512~^0.057^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~513~^0.072^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~514~^0.159^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~515~^0.439^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~516~^0.049^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~517~^0.203^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~518~^0.114^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~606~^2.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~611~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~612~^0.400^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~613~^1.200^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~614~^1.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~617~^1.700^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~618~^0.200^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~619~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04028~^~645~^1.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04028~^~646~^0.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~312~^0.001^0^^~4~^^^^^^^^^^^~04/01/1986~ -~04029~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04029~^~606~^7.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~611~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~612~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~613~^5.500^3^0.533^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~614~^2.000^3^0.191^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~617~^10.500^3^0.594^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~618~^23.000^3^1.560^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~619~^4.600^3^0.362^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~645~^10.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04029~^~646~^27.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~312~^0.010^0^^~4~^^^^^^^^^^^~07/01/1987~ -~04030~^~404~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~405~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~406~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~04030~^~501~^0.013^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~502~^0.049^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~503~^0.052^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~504~^0.077^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~505~^0.061^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~506~^0.023^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~507~^0.016^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~508~^0.039^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~509~^0.039^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~510~^0.055^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~511~^0.062^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~512~^0.022^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~513~^0.045^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~514~^0.075^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~515~^0.110^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~516~^0.027^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~517~^0.037^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~518~^0.075^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04030~^~606~^5.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~613~^3.900^8^0.202^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~614~^1.200^8^0.080^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~617~^7.400^8^0.364^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~618~^18.100^8^0.848^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~619~^1.900^8^0.188^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~645~^7.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04030~^~646~^20.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04031~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04031~^~606~^25.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~612~^0.400^11^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~613~^14.100^19^0.470^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~614~^10.600^19^0.359^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~617~^44.500^19^1.002^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~618~^24.500^19^1.106^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~619~^1.600^17^0.189^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~645~^44.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04031~^~646~^26.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04034~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04034~^~606~^14.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~612~^0.100^13^0.030^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~613~^9.800^40^0.171^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~614~^5.000^40^0.352^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~617~^42.500^43^0.645^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~618~^34.900^43^0.704^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~619~^2.600^39^0.158^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~626~^0.400^8^0.143^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~645~^43.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04034~^~646~^37.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~606~^19.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~612~^0.700^28^0.131^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~613~^16.900^31^0.368^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~614~^1.600^29^0.087^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~617~^39.100^38^0.449^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~618~^33.400^38^0.403^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~619~^1.600^34^0.159^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~626~^0.200^9^0.039^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04037~^~645~^39.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04037~^~646~^35.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04038~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04038~^~606~^18.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~612~^0.100^7^0.041^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~613~^16.600^13^0.307^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~614~^0.500^12^0.047^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~617~^14.600^13^0.467^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~618~^54.800^13^0.322^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~619~^6.900^13^0.360^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~626~^0.500^13^0.087^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~645~^15.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04038~^~646~^61.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04042~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04042~^~606~^16.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~612~^0.100^4^0.092^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~613~^9.500^15^0.233^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~614~^2.200^15^0.165^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~615~^1.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~617~^44.800^15^1.835^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~618~^32.000^15^1.744^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~624~^2.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~626~^0.100^4^0.072^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~628~^1.300^14^0.097^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~645~^46.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~646~^32.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04042~^~654~^0.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04044~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04044~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04044~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04044~^~605~^0.533^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04044~^~606~^15.650^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04044~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~613~^10.455^3^0.094^~1~^~A~^^^1^10.289^10.613^2^10.052^10.858^~2, 3~^~03/01/2007~ -~04044~^~614~^4.435^3^0.113^~1~^~A~^^^1^4.303^4.659^2^3.950^4.920^~2, 3~^~03/01/2007~ -~04044~^~615~^0.361^3^0.007^~1~^~A~^^^1^0.348^0.373^2^0.330^0.393^~2, 3~^~03/01/2007~ -~04044~^~617~^22.550^3^0.175^~1~^~AS~^^^1^22.286^22.880^2^21.799^23.301^~2, 3~^~03/01/2007~ -~04044~^~618~^50.952^3^0.190^~1~^~AS~^^^1^50.571^51.153^2^50.132^51.771^~2, 3~^~03/01/2007~ -~04044~^~619~^6.789^69^^~6~^~JA~^^^1^6.255^6.800^^^^~2~^~04/01/2007~ -~04044~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~624~^0.366^3^0.015^~1~^~A~^^^1^0.343^0.393^2^0.303^0.429^~2, 3~^~03/01/2007~ -~04044~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~628~^0.233^3^0.014^~1~^~A~^^^1^0.212^0.259^2^0.174^0.293^~2, 3~^~03/01/2007~ -~04044~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~04044~^~645~^22.783^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04044~^~646~^57.740^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04044~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~653~^0.034^3^0.034^~1~^~A~^^^1^0.000^0.101^2^-0.111^0.179^~1, 2, 3~^~03/01/2007~ -~04044~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~669~^0.533^3^0.144^~1~^~A~^^^1^0.378^0.822^2^-0.088^1.155^~2, 3~^~03/01/2007~ -~04044~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~674~^22.550^3^0.175^~1~^~A~^^^1^22.286^22.880^2^21.799^23.301^~2, 3~^~03/01/2007~ -~04044~^~675~^50.418^3^0.335^~1~^~A~^^^1^49.749^50.753^2^48.978^51.858^~2, 3~^~03/01/2007~ -~04044~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04044~^~695~^0.533^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04044~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04044~^~851~^6.789^3^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04047~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~404~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~405~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~406~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~410~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~415~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04047~^~501~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~502~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~503~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~504~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~505~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~506~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~507~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~508~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~509~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~510~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~511~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~512~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~513~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~514~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~515~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~516~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~517~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~518~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~04047~^~605~^0.028^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~606~^82.475^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~607~^0.009^6^0.006^~1~^~A~^^^1^0.000^0.031^5^-0.006^0.023^~1, 2, 3~^~03/01/2015~ -~04047~^~608~^0.477^6^0.059^~1~^~A~^^^1^0.254^0.647^5^0.325^0.629^~2, 3~^~03/01/2015~ -~04047~^~609~^6.802^6^0.097^~1~^~A~^^^1^6.590^7.210^5^6.553^7.052^~2, 3~^~03/01/2015~ -~04047~^~610~^5.390^6^0.042^~1~^~A~^^^1^5.258^5.560^5^5.282^5.499^~2, 3~^~03/01/2015~ -~04047~^~611~^41.840^6^0.232^~1~^~A~^^^1^41.126^42.395^5^41.244^42.435^~2, 3~^~03/01/2015~ -~04047~^~612~^16.653^6^0.099^~1~^~A~^^^1^16.299^17.029^5^16.400^16.907^~2, 3~^~03/01/2015~ -~04047~^~613~^8.636^6^0.159^~1~^~A~^^^1^8.363^9.406^5^8.228^9.045^~2, 3~^~03/01/2015~ -~04047~^~614~^2.516^6^0.023^~1~^~A~^^^1^2.458^2.611^5^2.458^2.574^~2, 3~^~03/01/2015~ -~04047~^~615~^0.076^6^0.003^~1~^~A~^^^1^0.067^0.089^5^0.068^0.085^~2, 3~^~03/01/2015~ -~04047~^~617~^6.274^6^0.168^~1~^~AS~^^^1^5.751^6.974^5^5.841^6.707^~2, 3~^~03/01/2015~ -~04047~^~618~^1.683^6^0.073^~1~^~AS~^^^1^1.419^1.865^5^1.495^1.870^~2, 3~^~03/01/2015~ -~04047~^~619~^0.019^6^0.005^~1~^~AS~^^^1^0.000^0.035^5^0.007^0.032^~2, 3~^~03/01/2015~ -~04047~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~04047~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~04047~^~624~^0.019^6^0.001^~1~^~A~^^^1^0.015^0.024^5^0.015^0.023^~2, 3~^~03/01/2015~ -~04047~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~626~^0.016^6^0.001^~1~^~AS~^^^1^0.014^0.020^5^0.014^0.019^~2, 3~^~03/01/2015~ -~04047~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~04047~^~628~^0.041^6^0.002^~1~^~A~^^^1^0.035^0.047^5^0.036^0.046^~2, 3~^~03/01/2015~ -~04047~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~04047~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~04047~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~04047~^~645~^6.332^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~646~^1.702^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~652~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.018^5^0.013^0.016^~2, 3~^~03/01/2015~ -~04047~^~653~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.008^0.011^~2, 3~^~03/01/2015~ -~04047~^~654~^0.031^6^0.001^~1~^~A~^^^1^0.027^0.036^5^0.028^0.034^~2, 3~^~03/01/2015~ -~04047~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~663~^0.021^6^0.011^~1~^~A~^^^1^0.000^0.068^5^-0.006^0.048^~1, 2, 3~^~03/01/2015~ -~04047~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~665~^0.007^6^0.002^~1~^~A~^^^1^0.000^0.012^5^0.001^0.013^~1, 2, 3~^~03/01/2015~ -~04047~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~673~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.020^5^0.014^0.019^~2, 3~^~03/01/2015~ -~04047~^~674~^6.253^6^0.171^~1~^~A~^^^1^5.683^6.943^5^5.814^6.693^~2, 3~^~03/01/2015~ -~04047~^~675~^1.676^6^0.072^~1~^~A~^^^1^1.408^1.853^5^1.490^1.861^~2, 3~^~03/01/2015~ -~04047~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2015~ -~04047~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~04047~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~851~^0.019^6^0.005^~1~^~A~^^^1^0.000^0.035^5^0.007^0.032^~1, 2, 3~^~03/01/2015~ -~04047~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04047~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~04053~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04053~^~606~^13.808^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~613~^11.290^4^0.583^~1~^~A~^^^1^9.833^12.502^3^9.554^13.264^~2, 3~^~03/01/2005~ -~04053~^~614~^1.953^4^0.024^~1~^~A~^^^1^1.925^2.037^3^1.895^2.051^~2, 3~^~03/01/2005~ -~04053~^~615~^0.414^4^0.003^~1~^~A~^^^1^0.411^0.425^3^0.409^0.427^~2, 3~^~03/01/2005~ -~04053~^~617~^71.269^4^1.689^~1~^~A~^^^1^68.417^76.171^3^66.640^77.392^~2, 3~^~03/01/2005~ -~04053~^~618~^9.762^4^0.720^~1~^~A~^^^1^7.937^11.313^3^7.574^12.155^~2, 3~^~03/01/2005~ -~04053~^~619~^0.761^4^0.040^~1~^~A~^^^1^0.701^0.884^3^0.642^0.896^~2, 3~^~03/01/2005~ -~04053~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~624~^0.129^4^0.003^~1~^~A~^^^1^0.125^0.138^3^0.121^0.139^~2, 3~^~03/01/2005~ -~04053~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~626~^1.255^4^0.140^~1~^~A~^^^1^0.894^1.534^3^0.822^1.715^~2, 3~^~03/01/2005~ -~04053~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~628~^0.311^4^0.017^~1~^~A~^^^1^0.274^0.351^3^0.262^0.367^~2, 3~^~03/01/2005~ -~04053~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~645~^72.961^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~646~^10.523^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~04053~^~653~^0.022^3^0.023^~1~^~A~^^^1^0.000^0.068^2^-0.075^0.120^~1, 2, 3~^~03/01/2005~ -~04053~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~04053~^~687~^0.125^4^0.014^~1~^~A~^^^1^0.104^0.165^3^0.082^0.170^~2, 3~^~03/01/2005~ -~04055~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1986~ -~04055~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04055~^~606~^49.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~611~^0.100^12^0.038^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~612~^1.000^15^0.090^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~613~^43.500^15^0.464^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~614~^4.300^15^0.352^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~617~^36.600^15^0.635^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~618~^9.100^15^0.419^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~619~^0.200^9^0.046^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~626~^0.300^7^0.071^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~628~^0.100^4^0.072^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~645~^37.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04055~^~646~^9.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04058~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04058~^~606~^14.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~613~^8.900^37^0.378^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~614~^4.800^37^0.220^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~617~^39.300^38^0.659^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~618~^41.300^38^0.677^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~619~^0.300^23^0.058^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~626~^0.200^32^0.035^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~628~^0.200^11^0.047^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~645~^39.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04058~^~646~^41.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~606~^10.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~613~^5.400^45^0.082^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~614~^3.500^45^0.093^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~617~^45.300^45^0.777^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~618~^39.800^45^0.751^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~619~^0.200^20^0.024^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~626~^0.200^27^0.016^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04060~^~645~^45.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04060~^~646~^40.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~404~^0.010^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~405~^0.037^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~406~^0.023^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~410~^0.084^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~415~^0.009^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~501~^0.012^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~502~^0.039^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~503~^0.052^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~504~^0.084^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~505~^0.068^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~506~^0.021^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~507~^0.008^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~508~^0.041^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~509~^0.041^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~510~^0.057^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~511~^0.031^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~512~^0.023^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~513~^0.029^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~514~^0.065^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~515~^0.179^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~516~^0.018^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~517~^0.083^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~518~^0.046^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~606~^16.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~612~^0.200^4^0.080^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~613~^9.600^4^0.615^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~614~^6.900^4^0.103^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~617~^39.100^4^1.521^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~618~^19.400^4^1.179^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~619~^1.500^4^0.420^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~626~^0.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04073~^~645~^39.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04073~^~646~^20.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04114~^~312~^0.019^12^0.000^~1~^~A~^^^1^0.019^0.024^5^0.018^0.020^~1, 2, 3~^~05/01/2012~ -~04114~^~315~^0.031^12^0.001^~1~^~A~^^^1^0.027^0.038^6^0.029^0.033^~2, 3~^~05/01/2012~ -~04114~^~404~^0.020^6^0.002^~1~^~A~^^^1^0.010^0.030^4^0.013^0.027^~2, 3~^~05/01/2012~ -~04114~^~405~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~406~^0.131^6^0.003^~1~^~A~^^^1^0.100^0.170^2^0.118^0.144^~2, 3~^~05/01/2012~ -~04114~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04114~^~415~^0.064^6^0.001^~1~^~A~^^^1^0.057^0.071^4^0.062^0.066^~2, 3~^~05/01/2012~ -~04114~^~501~^0.005^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~502~^0.011^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~503~^0.015^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~504~^0.023^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~505~^0.013^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~506~^0.008^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~507~^0.004^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~508~^0.011^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~509~^0.005^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~510~^0.016^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~511~^0.038^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~512~^0.007^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~513~^0.008^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~514~^0.029^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~515~^0.049^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~516~^0.012^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~517~^0.006^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~518~^0.011^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~ -~04114~^~605~^0.067^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~606~^2.948^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~02/01/2003~ -~04114~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~609~^0.102^6^0.001^~1~^~A~^^^1^0.000^0.200^2^0.096^0.108^~1, 2, 3~^~05/01/2012~ -~04114~^~610~^0.093^6^0.002^~1~^~A~^^^1^0.000^0.184^2^0.086^0.100^~1, 2, 3~^~05/01/2012~ -~04114~^~611~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~05/01/2012~ -~04114~^~612~^0.013^6^0.000^~1~^~A~^^^1^0.011^0.015^2^0.012^0.015^~2, 3~^~05/01/2012~ -~04114~^~613~^1.849^6^0.008^~1~^~A~^^^1^1.414^2.230^2^1.819^1.879^~2, 3~^~05/01/2012~ -~04114~^~614~^0.720^6^0.005^~1~^~A~^^^1^0.588^0.835^3^0.705^0.734^~2, 3~^~05/01/2012~ -~04114~^~615~^0.068^6^0.001^~1~^~A~^^^1^0.061^0.076^3^0.065^0.071^~2, 3~^~05/01/2012~ -~04114~^~617~^5.484^6^0.044^~1~^~AS~^^^1^4.723^6.426^2^5.312^5.656^~2, 3~^~05/01/2012~ -~04114~^~618~^9.243^6^0.045^~1~^~AS~^^^1^7.011^11.209^3^9.079^9.406^~2, 3~^~05/01/2012~ -~04114~^~619~^1.489^6^0.009^~1~^~AS~^^^1^1.314^1.630^2^1.453^1.526^~2, 3~^~05/01/2012~ -~04114~^~620~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.009^4^0.006^0.008^~2, 3~^~05/01/2012~ -~04114~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~624~^0.061^6^0.001^~1~^~A~^^^1^0.055^0.067^4^0.058^0.064^~2, 3~^~05/01/2012~ -~04114~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~626~^0.022^6^0.001^~1~^~AS~^^^1^0.019^0.026^2^0.019^0.024^~2, 3~^~05/01/2012~ -~04114~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~628~^0.113^6^0.002^~1~^~A~^^^1^0.080^0.146^4^0.108^0.119^~2, 3~^~05/01/2012~ -~04114~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~630~^0.009^6^0.002^~1~^~AS~^^^1^0.003^0.014^4^0.005^0.014^~2, 3~^~05/01/2012~ -~04114~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~645~^5.638^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~646~^10.748^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^3^0.002^0.005^~1, 2, 3~^~05/01/2012~ -~04114~^~653~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.023^3^0.014^0.019^~2, 3~^~05/01/2012~ -~04114~^~654~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.025^4^0.018^0.025^~2, 3~^~05/01/2012~ -~04114~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~663~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^4^0.006^0.010^~2, 3~^~05/01/2012~ -~04114~^~664~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.007^3^0.003^0.006^~2, 3~^~05/01/2012~ -~04114~^~665~^0.055^6^0.002^~1~^~A~^^^1^0.038^0.066^3^0.048^0.061^~2, 3~^~05/01/2012~ -~04114~^~670~^0.011^6^0.001^~1~^~A~^^^1^0.005^0.021^2^0.007^0.016^~2, 3~^~05/01/2012~ -~04114~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^4^0.008^0.010^~2, 3~^~05/01/2012~ -~04114~^~673~^0.022^6^0.001^~1~^~A~^^^1^0.019^0.026^2^0.019^0.024^~2, 3~^~05/01/2012~ -~04114~^~674~^5.476^6^0.044^~1~^~A~^^^1^4.714^6.419^2^5.303^5.650^~2, 3~^~05/01/2012~ -~04114~^~675~^9.177^6^0.046^~1~^~A~^^^1^6.956^11.132^3^9.014^9.340^~2, 3~^~05/01/2012~ -~04114~^~676~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.008^3^0.000^0.008^~1, 2, 3~^~05/01/2012~ -~04114~^~685~^0.055^6^0.002^~1~^~A~^^^1^0.049^0.061^2^0.047^0.063^~2, 3~^~05/01/2012~ -~04114~^~687~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.008^0.011^~2, 3~^~05/01/2012~ -~04114~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~04114~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~04114~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04114~^~851~^1.434^6^0.011^~1~^~A~^^^1^1.253^1.576^2^1.390^1.478^~2, 3~^~05/01/2012~ -~04114~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04114~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~04120~^~312~^0.020^17^0.001^~1~^~A~^^^1^0.018^0.034^16^0.017^0.022^~1, 2, 3~^~10/01/2016~ -~04120~^~315~^0.038^17^0.002^~1~^~A~^^^1^0.015^0.054^16^0.032^0.043^~1, 2, 3~^~10/01/2016~ -~04120~^~404~^0.038^6^0.003^~1~^~A~^^^1^0.030^0.050^5^0.030^0.046^~2, 3~^~10/01/2016~ -~04120~^~405~^0.063^6^0.021^~1~^~A~^^^1^0.020^0.140^5^0.008^0.118^~2, 3~^~10/01/2016~ -~04120~^~406~^0.234^6^0.059^~1~^~A~^^^1^0.022^0.390^5^0.082^0.385^~1, 2, 3~^~10/01/2016~ -~04120~^~415~^0.043^6^0.004^~1~^~A~^^^1^0.037^0.060^5^0.032^0.053^~1, 2, 3~^~10/01/2016~ -~04120~^~605~^0.081^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~606~^6.093^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~607~^0.016^9^0.000^~1~^~A~^^^1^0.014^0.017^8^0.015^0.017^~2, 3~^~10/01/2016~ -~04120~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~609~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.003^8^0.002^0.003^~1, 2, 3~^~10/01/2016~ -~04120~^~610~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.003^8^0.002^0.003^~1, 2, 3~^~10/01/2016~ -~04120~^~611~^0.004^9^0.001^~1~^~A~^^^1^0.001^0.006^8^0.002^0.005^~1, 2, 3~^~10/01/2016~ -~04120~^~612~^0.029^9^0.001^~1~^~A~^^^1^0.024^0.034^8^0.026^0.032^~2, 3~^~10/01/2016~ -~04120~^~613~^4.079^9^0.102^~1~^~A~^^^1^3.672^4.483^8^3.844^4.314^~2, 3~^~10/01/2016~ -~04120~^~614~^1.624^9^0.071^~1~^~A~^^^1^1.355^1.842^8^1.461^1.787^~2, 3~^~10/01/2016~ -~04120~^~615~^0.124^9^0.005^~1~^~A~^^^1^0.107^0.140^8^0.113^0.134^~2, 3~^~10/01/2016~ -~04120~^~617~^8.619^9^0.222^~1~^~AS~^^^1^7.822^9.440^8^8.107^9.131^~2, 3~^~10/01/2016~ -~04120~^~618~^20.041^9^0.557^~1~^~AS~^^^1^17.792^21.970^8^18.756^21.326^~2, 3~^~10/01/2016~ -~04120~^~619~^2.880^9^0.084^~1~^~AS~^^^1^2.513^3.144^8^2.687^3.073^~2, 3~^~10/01/2016~ -~04120~^~620~^0.014^9^0.001^~1~^~A~^^^1^0.005^0.017^8^0.011^0.016^~2, 3~^~10/01/2016~ -~04120~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~624~^0.127^9^0.005^~1~^~A~^^^1^0.111^0.142^8^0.116^0.137^~2, 3~^~10/01/2016~ -~04120~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~626~^0.031^9^0.001^~1~^~AS~^^^1^0.026^0.037^8^0.028^0.034^~2, 3~^~10/01/2016~ -~04120~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~628~^0.190^9^0.008^~1~^~A~^^^1^0.164^0.235^8^0.172^0.209^~2, 3~^~10/01/2016~ -~04120~^~629~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^8^0.000^0.001^~1, 2, 3~^~10/01/2016~ -~04120~^~630~^0.049^9^0.010^~1~^~AS~^^^1^0.014^0.086^8^0.025^0.072^~2, 3~^~10/01/2016~ -~04120~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04120~^~645~^8.910^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~646~^22.952^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~652~^0.006^9^0.000^~1~^~A~^^^1^0.005^0.007^8^0.006^0.007^~2, 3~^~10/01/2016~ -~04120~^~653~^0.034^9^0.001^~1~^~A~^^^1^0.030^0.040^8^0.032^0.037^~2, 3~^~10/01/2016~ -~04120~^~654~^0.046^9^0.002^~1~^~A~^^^1^0.041^0.051^8^0.042^0.049^~2, 3~^~10/01/2016~ -~04120~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~04120~^~663~^0.017^9^0.000^~1~^~A~^^^1^0.014^0.018^8^0.016^0.017^~2, 3~^~10/01/2016~ -~04120~^~664~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.011^8^-0.002^0.004^~1, 2, 3~^~10/01/2016~ -~04120~^~665~^0.063^9^0.008^~1~^~A~^^^1^0.044^0.114^8^0.046^0.081^~2, 3~^~10/01/2016~ -~04120~^~670~^0.024^9^0.001^~1~^~A~^^^1^0.021^0.028^8^0.022^0.026^~2, 3~^~10/01/2016~ -~04120~^~671~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.006^8^0.001^0.004^~1, 2, 3~^~10/01/2016~ -~04120~^~672~^0.016^9^0.000^~1~^~A~^^^1^0.015^0.017^8^0.015^0.016^~2, 3~^~10/01/2016~ -~04120~^~673~^0.031^9^0.001^~1~^~A~^^^1^0.026^0.037^8^0.028^0.034^~2, 3~^~10/01/2016~ -~04120~^~674~^8.603^9^0.222^~1~^~A~^^^1^7.808^9.423^8^8.091^9.114^~2, 3~^~10/01/2016~ -~04120~^~675~^19.954^9^0.553^~1~^~A~^^^1^17.725^21.868^8^18.679^21.228^~2, 3~^~10/01/2016~ -~04120~^~676~^0.047^9^0.010^~1~^~A~^^^1^0.014^0.086^8^0.024^0.071^~2, 3~^~10/01/2016~ -~04120~^~685~^0.098^9^0.009^~1~^~A~^^^1^0.062^0.148^8^0.076^0.120^~2, 3~^~10/01/2016~ -~04120~^~687~^0.018^9^0.001^~1~^~A~^^^1^0.016^0.020^8^0.017^0.020^~2, 3~^~10/01/2016~ -~04120~^~689~^0.001^9^0.001^~1~^~AS~^^^1^0.000^0.006^8^-0.001^0.002^~2, 3~^~10/01/2016~ -~04120~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~04120~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~04120~^~851~^2.782^9^0.076^~1~^~A~^^^1^2.451^3.019^8^2.608^2.956^~2, 3~^~10/01/2016~ -~04120~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~10/01/2016~ -~04120~^~853~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.006^8^-0.001^0.002^~1, 2, 3~^~10/01/2016~ -~04120~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~04120~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~04128~^~312~^0.009^5^0.000^~1~^~A~^^^1^0.009^0.011^4^0.008^0.011^~1, 2, 3~^~12/01/2016~ -~04128~^~315~^0.005^5^0.000^~1~^~A~^^^1^0.005^0.005^4^0.005^0.005^~1, 2, 3~^~12/01/2016~ -~04128~^~404~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~04128~^~405~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~04128~^~406~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~04128~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~04128~^~415~^0.384^2^^~1~^~A~^^^1^0.007^0.760^1^^^~1~^~12/01/2016~ -~04128~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~606~^8.656^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~607~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.014^3^-0.006^0.019^~1, 2, 3~^~12/01/2016~ -~04128~^~608~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.006^~1, 2, 3~^~12/01/2016~ -~04128~^~609~^0.047^9^0.002^~6~^~JA~^^^2^0.012^0.084^4^0.041^0.053^~2, 3~^~12/01/2016~ -~04128~^~610~^0.073^10^0.014^~6~^~JA~^^^2^0.019^0.186^5^0.037^0.110^~2, 3~^~12/01/2016~ -~04128~^~611~^0.692^11^0.092^~6~^~JA~^^^2^0.062^1.120^6^0.467^0.918^~2, 3~^~12/01/2016~ -~04128~^~612~^0.318^12^0.026^~6~^~JA~^^^2^0.147^0.441^7^0.257^0.379^~2, 3~^~12/01/2016~ -~04128~^~613~^5.752^12^0.344^~6~^~JA~^^^2^4.246^9.714^7^4.943^6.561^~2, 3~^~12/01/2016~ -~04128~^~614~^1.528^12^0.070^~6~^~JA~^^^2^1.026^1.903^7^1.364^1.691^~2, 3~^~12/01/2016~ -~04128~^~615~^0.137^12^0.006^~6~^~JA~^^^2^0.112^0.192^8^0.124^0.150^~2, 3~^~12/01/2016~ -~04128~^~617~^10.946^12^0.968^~1~^~AS~^^^2^7.714^20.083^7^8.668^13.223^~2, 3~^~12/01/2016~ -~04128~^~618~^13.781^12^0.822^~1~^~AS~^^^2^6.462^16.987^7^11.852^15.711^~2, 3~^~12/01/2016~ -~04128~^~619~^2.290^12^0.041^~1~^~AS~^^^2^2.011^2.602^10^2.197^2.382^~2, 3~^~12/01/2016~ -~04128~^~620~^0.013^8^0.000^~6~^~JA~^^^2^0.012^0.015^6^0.012^0.014^~2, 3~^~12/01/2016~ -~04128~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~624~^0.102^12^0.003^~6~^~JA~^^^2^0.080^0.116^9^0.095^0.109^~2, 3~^~12/01/2016~ -~04128~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~626~^0.040^12^0.004^~6~^~JA~^^^2^0.029^0.085^7^0.030^0.050^~2, 3~^~12/01/2016~ -~04128~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~628~^0.182^12^0.026^~6~^~JA~^^^2^0.075^0.374^7^0.121^0.242^~2, 3~^~12/01/2016~ -~04128~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~630~^0.015^4^0.001^~1~^~AS~^^^1^0.014^0.017^3^0.013^0.017^~2, 3~^~12/01/2016~ -~04128~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~645~^11.192^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~646~^16.090^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~652~^0.011^12^0.001^~6~^~JA~^^^2^0.008^0.014^8^0.009^0.012^~2, 3~^~12/01/2016~ -~04128~^~653~^0.031^12^0.001^~6~^~JA~^^^2^0.021^0.038^8^0.028^0.035^~2, 3~^~12/01/2016~ -~04128~^~654~^0.044^12^0.001^~6~^~JA~^^^2^0.040^0.050^10^0.042^0.046^~2, 3~^~12/01/2016~ -~04128~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~663~^0.028^12^0.007^~6~^~JA~^^^2^0.011^0.098^7^0.012^0.044^~2, 3~^~12/01/2016~ -~04128~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~665~^0.052^12^0.002^~6~^~JA~^^^2^0.037^0.064^8^0.046^0.057^~2, 3~^~12/01/2016~ -~04128~^~670~^0.018^12^0.001^~6~^~JA~^^^2^0.012^0.023^8^0.016^0.021^~2, 3~^~12/01/2016~ -~04128~^~671~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.012^0.014^~2, 3~^~12/01/2016~ -~04128~^~672~^0.012^11^0.001^~6~^~JA~^^^2^0.007^0.015^6^0.011^0.013^~2, 3~^~12/01/2016~ -~04128~^~673~^0.038^4^0.001^~1~^~A~^^^1^0.036^0.041^3^0.035^0.042^~2, 3~^~12/01/2016~ -~04128~^~674~^10.918^12^0.967^~6~^~JA~^^^2^7.701^20.058^7^8.645^13.191^~2, 3~^~12/01/2016~ -~04128~^~675~^13.711^12^0.821^~6~^~JA~^^^2^6.402^16.900^7^11.786^15.637^~2, 3~^~12/01/2016~ -~04128~^~676~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.013^0.017^~2, 3~^~12/01/2016~ -~04128~^~685~^0.089^12^0.006^~6~^~JA~^^^2^0.051^0.131^8^0.075^0.104^~2, 3~^~12/01/2016~ -~04128~^~687~^0.017^11^0.000^~6~^~JA~^^^2^0.013^0.019^8^0.016^0.018^~2, 3~^~12/01/2016~ -~04128~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2016~ -~04128~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~04128~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~851~^2.200^12^0.038^~6~^~JA~^^^2^1.960^2.503^10^2.116^2.284^~2, 3~^~12/01/2016~ -~04128~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04128~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~04128~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~04128~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04133~^~404~^0.010^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~405~^0.020^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~406~^0.130^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~606~^12.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~612~^0.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~613~^9.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~614~^2.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~617~^20.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~618~^31.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~619~^1.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~626~^0.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04133~^~645~^20.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04133~^~646~^33.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04135~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04135~^~606~^9.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~612~^0.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~613~^7.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~614~^1.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~617~^14.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~618~^22.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~619~^1.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~626~^0.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~645~^14.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04135~^~646~^24.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04141~^~312~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04141~^~315~^0.021^5^0.021^~1~^~A~^^^1^0.000^0.103^4^-0.036^0.077^~1, 2, 3~^~02/01/2003~ -~04141~^~404~^0.019^2^^~1~^~A~^^^1^0.015^0.023^1^^^^~02/01/2003~ -~04141~^~405~^0.053^2^^~1~^~A~^^^1^0.036^0.070^1^^^^~02/01/2003~ -~04141~^~406~^0.188^2^^~1~^~A~^^^1^0.184^0.192^1^^^^~02/01/2003~ -~04141~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04141~^~606~^5.648^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~613~^4.937^2^^~1~^~A~^^^1^4.524^5.350^1^^^^~02/01/2003~ -~04141~^~614~^0.420^2^^~1~^~A~^^^1^0.243^0.597^1^^^^~02/01/2003~ -~04141~^~615~^0.133^2^^~1~^~A~^^^1^0.115^0.151^1^^^^~02/01/2003~ -~04141~^~617~^8.284^2^^~1~^~A~^^^1^7.457^9.111^1^^^^~02/01/2003~ -~04141~^~618~^18.292^2^^~1~^~A~^^^1^16.989^19.595^1^^^^~02/01/2003~ -~04141~^~619~^2.737^2^^~1~^~A~^^^1^2.609^2.864^1^^^^~02/01/2003~ -~04141~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~624~^0.158^2^^~1~^~A~^^^1^0.147^0.168^1^^^^~02/01/2003~ -~04141~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~628~^0.149^2^^~1~^~A~^^^1^0.137^0.160^1^^^^~02/01/2003~ -~04141~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~645~^8.433^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~646~^21.029^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04141~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04141~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04142~^~312~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~315~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~404~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~405~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~406~^0.467^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~410~^0.026^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~04142~^~415~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~606~^1.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~613~^0.798^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~614~^0.301^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~617~^5.753^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~618~^3.859^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~619~^1.170^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~628~^0.145^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04142~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04142~^~645~^5.898^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04142~^~646~^5.029^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~312~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~315~^0.017^6^0.017^~1~^~A~^^^1^0.000^0.100^5^-0.026^0.060^~1, 2, 3~^~02/01/2003~ -~04143~^~404~^0.013^3^0.002^~1~^~A~^^^1^0.010^0.016^2^0.005^0.020^~2, 3~^~02/01/2003~ -~04143~^~405~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.012^0.030^~2, 3~^~02/01/2003~ -~04143~^~406~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04143~^~415~^0.060^2^^~1~^~A~^^^1^0.052^0.067^1^^^^~02/01/2003~ -~04143~^~606~^4.474^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~613~^3.298^3^0.144^~1~^~A~^^^1^3.089^3.575^2^2.677^3.919^~2, 3~^~02/01/2003~ -~04143~^~614~^0.953^3^0.246^~1~^~A~^^^1^0.462^1.215^2^-0.104^2.010^~2, 3~^~02/01/2003~ -~04143~^~615~^0.073^3^0.036^~1~^~A~^^^1^0.000^0.111^2^-0.084^0.229^~1, 2, 3~^~02/01/2003~ -~04143~^~617~^6.315^3^0.130^~1~^~A~^^^1^6.180^6.576^2^5.754^6.876^~2, 3~^~02/01/2003~ -~04143~^~618~^11.527^3^1.332^~1~^~A~^^^1^8.865^12.948^2^5.795^17.259^~2, 3~^~02/01/2003~ -~04143~^~619~^1.413^3^0.356^~1~^~A~^^^1^0.705^1.825^2^-0.117^2.944^~2, 3~^~02/01/2003~ -~04143~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~624~^0.150^3^0.019^~1~^~A~^^^1^0.130^0.189^2^0.067^0.234^~2, 3~^~02/01/2003~ -~04143~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~645~^6.315^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~646~^12.941^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04143~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04143~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04144~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04144~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~405~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04144~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04144~^~606~^0.451^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~613~^0.318^2^^~1~^~A~^^^1^0.313^0.323^1^^^^~02/01/2003~ -~04144~^~614~^0.133^2^^~1~^~A~^^^1^0.127^0.139^1^^^^~02/01/2003~ -~04144~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~617~^2.190^2^^~1~^~A~^^^1^2.107^2.272^1^^^^~02/01/2003~ -~04144~^~618~^1.338^2^^~1~^~A~^^^1^1.303^1.372^1^^^^~02/01/2003~ -~04144~^~619~^0.366^2^^~1~^~A~^^^1^0.356^0.376^1^^^^~02/01/2003~ -~04144~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~645~^2.190^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~646~^1.704^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04144~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04144~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~04145~^~404~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~405~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~406~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~606~^11.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~617~^22.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~618~^37.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04145~^~619~^4.200^0^^~1~^^^^^^^^^^^~07/01/1995~ -~04145~^~626~^0.100^0^^~1~^^^^^^^^^^^~07/01/1995~ -~04145~^~628~^0.100^0^^~1~^^^^^^^^^^^~07/01/1995~ -~04145~^~645~^22.700^0^^~1~^^^^^^^^^^^~07/01/1995~ -~04145~^~646~^37.100^0^^~1~^^^^^^^^^^^~07/01/1995~ -~04146~^~404~^0.010^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~405~^0.020^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~406~^0.130^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04146~^~606~^18.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04367~^~312~^0.121^3^0.069^~1~^~A~^^^1^0.003^0.240^2^-0.174^0.416^~2, 3~^~03/01/2003~ -~04367~^~315~^0.024^3^0.003^~1~^~A~^^^1^0.017^0.029^2^0.009^0.038^~2, 3~^~03/01/2003~ -~04367~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~405~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~406~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~410~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~04367~^~415~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~613~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~614~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~617~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~618~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~619~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~626~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~630~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2003~ -~04367~^~645~^0.141^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~646~^0.062^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~04367~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04367~^~687~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~04501~^~312~^0.000^0^^~4~^^^^^^^^^^^ -~04501~^~315~^0.000^0^^~4~^^^^^^^^^^^ -~04501~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04501~^~606~^59.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~611~^0.000^49^0.003^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~612~^0.100^141^0.007^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~613~^25.400^154^0.120^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~614~^33.200^154^0.101^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~617~^32.600^154^0.121^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~618~^2.800^154^0.048^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~619~^0.100^117^0.009^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~626~^0.200^108^0.019^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~628~^0.000^21^0.010^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~645~^32.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04501~^~646~^3.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04502~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~405~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04502~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04502~^~606~^25.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~612~^0.800^115^0.016^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~613~^22.700^121^0.198^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~614~^2.300^121^0.044^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~617~^17.000^124^0.259^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~618~^51.500^123^0.357^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~619~^0.200^59^0.030^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~620~^0.100^48^0.015^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~626~^0.800^120^0.031^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~645~^17.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04502~^~646~^51.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04506~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04506~^~606~^10.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~613~^5.900^177^0.049^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~614~^4.500^177^0.102^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~617~^19.500^177^0.425^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~618~^65.700^177^0.456^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~645~^19.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04506~^~646~^65.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04510~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04510~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04510~^~606~^6.203^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~609~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~610~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~611~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~612~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~613~^4.288^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~614~^1.915^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~617~^14.355^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~618~^74.623^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~619~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~626~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~645~^14.355^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04510~^~646~^74.623^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04511~^~315~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04511~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04511~^~605~^0.096^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~606~^7.541^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~607~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~608~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~609~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~610~^0.093^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~611~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~612~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~613~^4.860^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~614~^1.915^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~615~^0.384^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~617~^74.837^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04511~^~618~^12.724^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04511~^~619~^0.096^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04511~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~624~^0.289^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04511~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~628~^0.288^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~10/01/1999~ -~04511~^~645~^75.221^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~646~^12.820^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~663~^0.096^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~673~^0.095^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~674~^74.742^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~675~^12.724^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04511~^~693~^0.096^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04511~^~851~^0.096^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04513~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04513~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04513~^~404~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~405~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~406~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~410~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~415~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~501~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~502~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~503~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~504~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~505~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~506~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~507~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~508~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~509~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~510~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~511~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~512~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~513~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~514~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~515~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~516~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~517~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~518~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~606~^81.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~608~^0.200^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~609~^3.300^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~610~^3.700^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~611~^47.000^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~612~^16.400^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~613~^8.100^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~614~^2.800^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~617~^11.400^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~618~^1.600^14^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04513~^~645~^11.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04513~^~646~^1.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~606~^13.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~613~^10.600^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~614~^2.900^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~617~^19.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~618~^62.400^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04514~^~645~^19.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04514~^~646~^62.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~606~^19.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~612~^0.200^4^0.039^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~613~^15.000^5^1.325^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~614~^4.400^5^0.393^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~617~^21.900^5^2.867^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~618~^50.800^5^3.818^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~619~^2.300^4^0.237^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~626~^0.500^4^0.090^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04515~^~645~^22.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04515~^~646~^53.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~606~^21.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~611~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~612~^0.100^3^0.033^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~613~^17.500^3^0.794^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~614~^3.100^3^0.197^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~617~^49.900^3^1.547^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~618~^22.200^3^1.993^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~619~^0.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~626~^0.500^3^0.196^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~628~^1.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04516~^~645~^51.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04516~^~646~^23.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~606~^9.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~612~^0.100^10^0.016^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~613~^6.700^19^0.140^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~614~^2.700^19^0.191^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~617~^15.800^19^0.581^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~618~^69.600^19^0.693^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~619~^0.100^13^0.061^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~626~^0.300^3^0.160^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04517~^~645~^16.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04517~^~646~^69.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04518~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04518~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04518~^~606~^12.948^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04518~^~607~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~608~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~609~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~610~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~611~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~612~^0.024^2^^~6~^~JA~^^^2^0.000^0.047^1^^^^~04/01/2004~ -~04518~^~613~^10.579^2^^~6~^~JA~^^^2^10.258^10.900^1^^^^~04/01/2004~ -~04518~^~614~^1.848^2^^~6~^~JA~^^^2^1.800^1.896^1^^^^~04/01/2004~ -~04518~^~615~^0.431^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~617~^27.333^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04518~^~618~^53.515^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04518~^~619~^1.161^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04518~^~620~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~621~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04518~^~626~^0.114^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04518~^~627~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~628~^0.129^1^^~6~^~JA~^^^2^0.000^0.259^1^^^^~04/01/2004~ -~04518~^~629~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~630~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~631~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~04/01/2004~ -~04518~^~645~^27.576^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04518~^~646~^54.677^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04518~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04518~^~653~^0.067^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04518~^~666~^0.286^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~673~^0.114^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~674~^27.333^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~675~^53.230^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~851~^1.161^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04518~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04528~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04528~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04528~^~606~^9.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~613~^7.000^33^0.286^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~614~^2.000^34^0.136^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~617~^22.200^34^1.264^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~618~^52.900^34^1.208^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~619~^10.400^32^0.576^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~626~^0.100^11^0.027^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~628~^0.400^6^0.268^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~645~^22.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04528~^~646~^63.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04529~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04529~^~606~^8.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~612~^0.000^23^0.006^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~613~^6.500^91^0.074^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~614~^1.700^90^0.077^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~617~^69.400^91^0.426^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~618~^17.400^91^0.394^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~626~^0.600^89^0.025^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~645~^69.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04529~^~646~^17.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~606~^6.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~613~^5.800^54^0.117^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~614~^0.500^53^0.057^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~617~^58.500^54^0.763^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~618~^29.300^54^0.688^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~626~^1.500^51^0.071^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04530~^~645~^60.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04530~^~646~^29.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04531~^~404~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~405~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~406~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~410~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~415~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~606~^15.005^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~612~^0.101^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~613~^11.984^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~614~^2.920^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~617~^10.574^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~618~^40.182^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~619~^5.136^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~626~^0.403^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~628~^0.000^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04531~^~645~^10.977^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04531~^~646~^45.318^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~606~^7.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~611~^0.000^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~612~^0.100^12^0.042^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~613~^5.200^111^0.055^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~614~^2.000^110^0.054^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~617~^77.800^111^0.299^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~618~^10.100^111^0.318^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~619~^0.000^101^0.006^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~626~^0.200^104^0.010^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~628~^0.000^96^0.003^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04532~^~645~^78.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04532~^~646~^10.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~606~^81.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~608~^0.200^3^0.130^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~609~^6.000^6^0.282^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~610~^5.500^6^0.380^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~611~^43.500^6^0.730^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~612~^15.000^6^0.368^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~613~^8.200^6^0.183^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~614~^2.800^6^0.197^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~617~^11.400^6^0.526^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~618~^1.600^6^0.284^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~626~^0.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04534~^~645~^11.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04534~^~646~^1.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~606~^46.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~609~^0.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~610~^0.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~611~^1.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~612~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~613~^4.400^4^0.456^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~614~^38.800^4^1.591^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~617~^43.500^4^1.375^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~618~^4.900^4^0.547^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~619~^0.300^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~626~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~628~^0.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~630~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04536~^~645~^44.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04536~^~646~^5.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~312~^0.009^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~315~^0.006^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~404~^0.010^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~405~^0.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~406~^0.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04539~^~410~^0.388^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04539~^~415~^0.037^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04539~^~605~^1.340^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~606~^8.275^2^^~9~^~MC~^^^1^8.160^8.390^1^^^^~12/01/2007~ -~04539~^~607~^0.017^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~608~^0.008^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~609~^0.006^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~610~^0.014^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~612~^0.084^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~613~^5.319^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~614~^2.437^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~617~^13.112^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~618~^24.317^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~619~^3.196^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~620~^0.010^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~621~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~626~^0.045^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~628~^0.113^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~645~^13.279^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04539~^~646~^27.545^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~04541~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~606~^53.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~612~^0.900^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~613~^9.600^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~614~^32.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~617~^38.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~618~^3.800^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04541~^~645~^38.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04541~^~646~^3.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04542~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04542~^~606~^29.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~611~^0.100^14^0.016^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~612~^0.900^62^0.048^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~613~^21.600^70^0.381^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~614~^6.000^70^0.186^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~617~^37.300^70^0.499^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~618~^19.500^70^0.617^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~619~^1.000^56^0.075^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~620~^0.100^5^0.038^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~626~^5.700^70^0.187^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~628~^1.100^12^0.305^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~645~^44.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04542~^~646~^20.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04543~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04543~^~606~^18.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~612~^0.300^8^0.059^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~613~^14.000^11^0.644^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~614~^3.700^11^0.262^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~617~^29.300^16^1.206^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~618~^45.300^16^0.888^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~619~^2.800^16^0.398^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~626~^0.200^7^0.046^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~645~^29.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04543~^~646~^48.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~312~^0.000^0^^~7~^^^^^^^^^^^ -~04544~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04544~^~606~^40.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~610~^0.100^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~611~^0.100^10^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~612~^1.600^13^0.132^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~613~^23.000^20^0.247^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~614~^15.200^20^0.746^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~617~^40.900^20^0.793^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~618~^9.700^20^0.476^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~619~^1.100^12^0.131^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~04544~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~626~^3.100^14^0.226^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~645~^44.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04544~^~646~^10.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04545~^~315~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04545~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~606~^13.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~613~^7.100^4^0.189^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~614~^5.500^4^0.321^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~617~^46.000^4^0.115^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~618~^35.300^4^0.366^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~619~^0.900^3^0.102^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04545~^~645~^46.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04545~^~646~^36.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04546~^~315~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/1995~ -~04546~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~606~^22.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~613~^10.400^7^0.386^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~614~^11.600^7^1.595^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~617~^33.000^7^3.373^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~618~^36.700^7^2.189^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~619~^4.000^7^0.641^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04546~^~645~^33.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04546~^~646~^40.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04548~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04548~^~606~^27.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~611~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~612~^0.400^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~613~^18.000^3^1.629^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~614~^8.800^3^2.903^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~617~^54.200^3^1.609^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~618~^13.100^3^1.124^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~619~^1.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~645~^54.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04548~^~646~^14.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~606~^35.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~611~^0.200^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~612~^1.200^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~613~^19.200^3^1.198^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~614~^14.600^3^0.240^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~617~^38.000^3^1.934^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~618~^18.100^3^0.683^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~619~^1.000^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~626~^1.400^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~628~^0.600^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04549~^~645~^40.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04549~^~646~^19.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~606~^44.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~612~^3.400^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~613~^24.500^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~614~^17.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~617~^34.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~618~^8.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~619~^0.500^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~626~^4.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04550~^~645~^38.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04550~^~646~^8.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04551~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04551~^~606~^91.300^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~609~^4.300^3^0.625^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~610~^4.300^3^0.634^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~611~^35.800^3^3.295^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~612~^14.400^3^1.421^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~613~^10.700^3^0.599^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~614~^21.900^3^5.376^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~617~^2.200^3^0.316^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~618~^1.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~645~^2.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04551~^~646~^1.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~04554~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04554~^~606~^25.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~612~^0.500^6^0.158^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~613~^13.000^22^0.401^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~614~^12.100^22^0.445^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~617~^58.000^22^1.046^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~618~^11.400^22^1.028^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~619~^0.600^10^0.171^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~645~^58.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04554~^~646~^12.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~606~^47.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~613~^40.600^4^1.813^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~614~^6.900^4^0.767^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~617~^40.600^4^1.714^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~618~^7.500^4^2.186^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04556~^~645~^40.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04556~^~646~^7.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~606~^25.020^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~609~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~610~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~611~^0.400^3^0.262^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~612~^0.240^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~613~^14.040^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~614~^10.740^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~617~^42.220^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~618~^25.160^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~619~^1.480^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~626~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~628~^0.190^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04559~^~645~^42.510^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04559~^~646~^26.640^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~606~^21.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~613~^10.900^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~614~^10.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~617~^73.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~618~^0.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~619~^0.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04560~^~645~^73.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04560~^~646~^0.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~606~^65.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~611~^1.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~612~^0.900^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~613~^36.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~614~^26.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~617~^29.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~618~^0.500^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04570~^~645~^29.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04570~^~646~^0.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~606~^90.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~611~^3.100^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~612~^82.600^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~613~^4.300^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~614~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~617~^4.800^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~618~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04572~^~645~^4.800^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04572~^~646~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~606~^85.200^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~611~^12.200^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~612~^63.400^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~613~^8.600^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~614~^1.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~617~^6.700^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~618~^2.900^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04573~^~645~^6.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04573~^~646~^2.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~312~^0.000^0^^~7~^^^^^^^^^^^~01/01/1994~ -~04575~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~606~^29.400^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~611~^0.000^3^0.031^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~612~^0.900^32^0.058^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~613~^20.600^32^0.520^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~614~^6.200^32^0.349^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~617~^35.900^32^0.750^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~618~^21.200^32^0.660^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~619~^1.400^32^0.079^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~620~^0.300^11^0.031^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~626~^6.000^32^0.297^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04575~^~645~^42.900^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04575~^~646~^23.100^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~501~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~502~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~503~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~504~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~505~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~506~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~507~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~508~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~509~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~510~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~511~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~512~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~513~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~514~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~515~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~516~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~517~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~518~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~606~^27.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~611~^0.000^6^0.032^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~612~^0.500^21^0.060^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~613~^20.700^21^0.492^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~614~^6.100^21^0.168^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~617~^53.500^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~618~^9.800^21^0.536^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~619~^0.500^6^0.326^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~620~^0.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~626~^2.800^21^0.257^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~628~^0.100^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04576~^~645~^56.700^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04576~^~646~^11.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04581~^~606~^11.560^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~613~^10.900^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~614~^0.660^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~617~^67.889^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~618~^12.530^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~619~^0.957^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~626~^2.665^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~645~^70.554^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04581~^~646~^13.486^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04582~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04582~^~605~^0.395^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04582~^~606~^7.365^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04582~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~613~^4.298^4^0.021^~1~^~A~^^^1^4.245^4.346^3^4.231^4.365^~2, 3~^~03/01/2007~ -~04582~^~614~^2.087^4^0.014^~1~^~A~^^^1^2.060^2.125^3^2.044^2.131^~2, 3~^~03/01/2007~ -~04582~^~615~^0.650^4^0.004^~1~^~A~^^^1^0.642^0.661^3^0.637^0.664^~2, 3~^~03/01/2007~ -~04582~^~617~^61.744^4^0.338^~1~^~AS~^^^1^61.076^62.427^3^60.667^62.821^~2, 3~^~03/01/2007~ -~04582~^~618~^19.005^4^0.144^~1~^~AS~^^^1^18.628^19.271^3^18.546^19.464^~2, 3~^~03/01/2007~ -~04582~^~619~^9.137^49^^~6~^~JA~^^^1^6.034^9.300^^^^~2~^~04/01/2007~ -~04582~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~624~^0.330^4^0.002^~1~^~A~^^^1^0.325^0.334^3^0.324^0.336^~2, 3~^~03/01/2007~ -~04582~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~626~^0.214^4^0.001^~1~^~A~^^^1^0.212^0.215^3^0.212^0.216^~2, 3~^~03/01/2007~ -~04582~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~628~^1.317^4^0.015^~1~^~A~^^^1^1.276^1.340^3^1.270^1.365^~2, 3~^~03/01/2007~ -~04582~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~04582~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~04582~^~645~^63.276^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04582~^~646~^28.142^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04582~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~663~^0.030^4^0.030^~1~^~A~^^^1^0.000^0.120^3^-0.065^0.125^~1, 2, 3~^~03/01/2007~ -~04582~^~669~^0.365^4^0.073^~1~^~A~^^^1^0.200^0.538^3^0.134^0.596^~2, 3~^~03/01/2007~ -~04582~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~674~^61.714^4^0.354^~1~^~A~^^^1^61.076^62.427^3^60.588^62.840^~2, 3~^~03/01/2007~ -~04582~^~675~^18.640^4^0.147^~1~^~A~^^^1^18.212^18.879^3^18.173^19.108^~2, 3~^~03/01/2007~ -~04582~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~04582~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04582~^~695~^0.365^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04582~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04582~^~851~^9.137^4^^~1~^~A~^^^1^^^^^^~2, 3~^~04/01/2007~ -~04583~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04583~^~606~^11.582^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~612~^1.388^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~613~^3.750^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~614~^1.119^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~617~^11.607^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~618~^15.332^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~619~^5.899^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~626~^0.216^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~628~^6.190^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~630~^41.175^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~645~^59.187^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04583~^~646~^21.230^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04584~^~606~^9.859^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~04584~^~607~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~608~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~609~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~610~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~611~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~612~^0.057^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~613~^3.682^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~614~^4.320^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~617~^82.630^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~618~^3.606^7^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~619~^0.192^6^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~620~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~621~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~624~^1.000^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~626~^0.095^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~627~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~628~^0.964^6^^~1~^^^^^^^^^^^~06/01/1979~ -~04584~^~629~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~630~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~631~^0.000^0^^~4~^~BFZN~^~04642~^^^^^^^^^~06/01/2009~ -~04584~^~645~^83.689^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~04584~^~646~^3.798^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~04584~^~652~^0.800^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04585~^~312~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~315~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~404~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~405~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~406~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~410~^0.041^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~415~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~605~^14.950^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~606~^14.198^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~612~^0.404^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~613~^7.936^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~614~^5.219^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~615~^0.257^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~617~^30.068^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~04585~^~618~^21.533^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~04585~^~619~^2.638^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~04585~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~624~^0.223^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~626~^0.097^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~04585~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~628~^0.091^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~04585~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~645~^30.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~646~^24.170^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~652~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~653~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~654~^0.014^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~663~^14.279^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~666~^0.672^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~673~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~674~^15.789^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~675~^20.861^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04585~^~687~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04585~^~693~^14.279^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~695~^0.672^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~04585~^~851~^2.638^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04586~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04586~^~606~^20.001^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~613~^9.666^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~614~^10.335^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~617~^36.555^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~618~^35.790^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~619~^2.201^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~645~^36.555^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04586~^~646~^37.991^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04587~^~606~^28.843^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~612~^0.450^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~613~^23.392^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~614~^5.001^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~617~^29.353^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~618~^33.984^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~619~^3.190^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~626~^0.230^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~645~^29.583^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04587~^~646~^37.174^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04588~^~606~^19.620^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~611~^0.390^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~612~^0.240^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~613~^16.670^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~614~^1.050^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~617~^34.900^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~618~^39.080^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~619~^1.790^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~626~^0.200^238^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~645~^35.110^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04588~^~646~^40.870^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04589~^~606~^22.608^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~612~^3.568^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~613~^10.630^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~614~^2.799^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~617~^20.653^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~618~^0.935^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~619~^0.935^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~620~^0.935^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~621~^10.968^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~626~^8.309^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~627~^0.935^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~628~^10.422^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~629~^6.898^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~630~^7.328^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~631~^0.935^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~645~^46.711^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04589~^~646~^22.541^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04590~^~606~^21.290^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~611~^0.157^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~612~^7.186^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~613~^11.704^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~614~^0.818^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~617~^11.955^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~618~^1.149^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~619~^0.763^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~620~^0.289^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~621~^4.206^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~626~^9.642^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~627~^2.305^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~628~^13.625^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~629~^6.273^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~630~^20.613^17^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~631~^0.619^17^0.000^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~645~^56.564^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04590~^~646~^15.604^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04591~^~606~^30.427^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~612~^7.958^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~613~^15.146^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~614~^3.775^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~617~^14.527^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~618~^2.154^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~619~^1.490^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~620~^1.169^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~621~^8.562^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~626~^10.482^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~627~^2.739^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~628~^1.332^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~629~^13.168^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~630~^0.352^4^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~631~^4.915^4^0.000^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~645~^26.694^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04591~^~646~^34.197^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04592~^~606~^95.600^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~612~^9.057^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~613~^35.221^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~614~^21.133^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~645~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04592~^~646~^0.000^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04593~^~606~^19.872^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~612~^3.280^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~613~^9.840^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~614~^4.245^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~617~^16.978^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~618~^1.543^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~619~^1.061^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~620~^0.675^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~621~^18.232^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~626~^4.823^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~627~^2.798^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~628~^3.859^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~629~^13.023^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~630~^3.376^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~631~^2.991^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~645~^29.037^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04593~^~646~^40.324^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04594~^~606~^29.892^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~611~^0.103^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~612~^6.525^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~613~^16.646^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~614~^3.887^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~617~^14.752^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~618~^2.014^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~619~^1.327^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~620~^1.756^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~621~^10.656^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~626~^7.514^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~627~^3.025^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~628~^5.986^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~629~^10.137^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~630~^5.589^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~631~^1.973^2^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~645~^33.841^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04594~^~646~^31.867^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~312~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~315~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~410~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/1979~ -~04595~^~606~^30.423^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~609~^0.101^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~610~^0.101^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~611~^0.403^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~612~^0.403^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~613~^19.442^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~614~^9.973^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~617~^50.973^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~618~^13.600^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~619~^0.604^1^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~645~^50.973^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04595~^~646~^14.204^0^^~1~^^^^^^^^^^^~06/01/1979~ -~04600~^~312~^0.002^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~404~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~405~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~406~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~606~^7.238^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~607~^0.026^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~608~^0.015^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~609~^0.009^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~610~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~611~^0.023^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~612~^0.130^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~613~^4.458^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~614~^2.538^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~617~^18.408^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~618~^12.025^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~619~^0.549^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~620~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~621~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~626~^0.018^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~627~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~628~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~629~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~631~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~04600~^~645~^18.438^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04600~^~646~^12.573^0^^~4~^^^^^^^^^^^~02/01/2009~ -~04601~^~312~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~405~^0.070^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~406~^0.020^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~415~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04601~^~606~^34.321^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~607~^1.788^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~608~^1.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~609~^0.619^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~610~^1.380^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~611~^1.550^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~612~^5.547^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~613~^14.499^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~614~^6.682^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~617~^13.867^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~618~^1.244^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~619~^0.802^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~620~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~621~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~626~^1.237^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~627~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~628~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~629~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~630~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~631~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04601~^~645~^15.927^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04601~^~646~^2.046^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~312~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~405~^0.070^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~406~^0.020^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~415~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~04602~^~606~^34.321^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~607~^1.788^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~608~^1.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~609~^0.619^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~610~^1.380^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~611~^1.550^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~612~^5.547^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~613~^14.499^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~614~^6.682^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~617~^13.867^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~618~^1.244^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~619~^0.802^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~620~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~621~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~626~^1.237^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~627~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~628~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~629~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~630~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~631~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~04602~^~645~^15.927^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04602~^~646~^2.046^0^^~4~^^^^^^^^^^^~03/01/2009~ -~04609~^~312~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~404~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~405~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~406~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~410~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~415~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~606~^39.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~610~^0.100^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~611~^0.199^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~612~^1.294^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~613~^23.681^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~614~^13.432^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~617~^40.994^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~618~^10.149^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~619~^0.995^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~626~^2.686^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~628~^0.995^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~645~^44.874^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04609~^~646~^11.144^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~04610~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~404~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~405~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~406~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~410~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~415~^0.009^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04610~^~605~^14.890^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~606~^15.189^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04610~^~612~^0.046^10^0.002^~1~^~A~^^^1^0.034^0.056^9^0.042^0.051^~2, 3~^~03/01/2009~ -~04610~^~613~^8.431^10^0.087^~1~^~A~^^^1^8.119^9.017^9^8.240^8.634^~2, 3~^~03/01/2009~ -~04610~^~614~^6.173^10^0.190^~1~^~A~^^^1^5.041^6.701^9^5.746^6.608^~2, 3~^~03/01/2009~ -~04610~^~615~^0.261^10^0.006^~1~^~A~^^^1^0.247^0.307^9^0.249^0.274^~2, 3~^~03/01/2009~ -~04610~^~617~^38.675^10^0.915^~1~^~AS~^^^1^35.603^44.681^9^36.606^40.744^~2, 3~^~03/01/2007~ -~04610~^~618~^22.252^10^0.842^~1~^~AS~^^^1^17.988^25.626^9^20.348^24.156^~2, 3~^~03/01/2007~ -~04610~^~619~^2.040^10^0.330^~1~^~AS~^^^1^0.480^2.985^9^1.294^2.786^~2, 3~^~03/01/2007~ -~04610~^~620~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~624~^0.109^9^0.036^~1~^~A~^^^1^0.000^0.247^8^0.025^0.193^~1, 2, 3~^~03/01/2009~ -~04610~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~626~^0.045^10^0.002^~1~^~AS~^^^1^0.037^0.054^9^0.041^0.049^~2, 3~^~03/01/2007~ -~04610~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~628~^0.133^10^0.008^~1~^~A~^^^1^0.095^0.170^9^0.115^0.151^~2, 3~^~03/01/2007~ -~04610~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~630~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~04610~^~631~^0.006^9^0.003^~1~^~A~^^^1^0.000^0.026^8^-0.002^0.014^~1, 2, 3~^~03/01/2007~ -~04610~^~645~^38.877^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~646~^24.302^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~652~^0.015^10^0.001^~1~^~A~^^^1^0.011^0.021^9^0.013^0.018^~2, 3~^~03/01/2009~ -~04610~^~653~^0.068^10^0.002^~1~^~A~^^^1^0.056^0.073^9^0.064^0.072^~2, 3~^~03/01/2009~ -~04610~^~654~^0.085^10^0.004^~1~^~A~^^^1^0.073^0.108^9^0.076^0.094^~2, 3~^~03/01/2009~ -~04610~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~665~^0.703^10^0.096^~1~^~A~^^^1^0.377^1.347^9^0.487^0.920^~2, 3~^~03/01/2007~ -~04610~^~670~^0.027^10^0.003^~1~^~A~^^^1^0.000^0.035^9^0.019^0.034^~1, 2, 3~^~03/01/2007~ -~04610~^~671~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.012^9^-0.002^0.004^~1, 2, 3~^~03/01/2007~ -~04610~^~672~^0.004^10^0.001^~1~^~A~^^^1^0.000^0.010^9^0.001^0.007^~1, 2, 3~^~03/01/2007~ -~04610~^~676~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~685~^0.083^10^0.018^~1~^~A~^^^1^0.000^0.148^9^0.043^0.123^~1, 2, 3~^~03/01/2007~ -~04610~^~687~^0.023^10^0.002^~1~^~A~^^^1^0.013^0.028^9^0.020^0.027^~2, 3~^~03/01/2007~ -~04610~^~689~^0.001^10^0.001^~1~^~AS~^^^1^0.000^0.008^9^-0.001^0.003^~2, 3~^~03/01/2007~ -~04610~^~693~^14.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~695~^0.703^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04610~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~851~^1.957^10^0.313^~1~^~A~^^^1^0.466^2.876^9^1.249^2.666^~2, 3~^~03/01/2007~ -~04610~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04610~^~853~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.008^9^-0.001^0.003^~1, 2, 3~^~03/01/2007~ -~04610~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~04611~^~315~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~04611~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04611~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~04611~^~406~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~04611~^~410~^0.085^2^^~1~^~A~^^^1^0.070^0.100^1^^^^~03/01/2007~ -~04611~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~04611~^~605~^5.827^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~606~^14.224^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~609~^0.015^10^0.005^~1~^~A~^^^1^0.000^0.062^1^-0.032^0.061^~1, 2, 3~^~03/01/2007~ -~04611~^~610~^0.023^10^0.004^~1~^~A~^^^1^0.000^0.080^4^0.012^0.034^~1, 2, 3~^~03/01/2007~ -~04611~^~611~^0.433^10^0.040^~1~^~A~^^^1^0.000^1.268^1^0.117^0.749^~1, 2, 3~^~03/01/2007~ -~04611~^~612~^0.240^10^0.014^~1~^~A~^^^1^0.052^0.649^2^0.178^0.303^~2, 3~^~03/01/2007~ -~04611~^~613~^7.075^10^0.053^~1~^~A~^^^1^4.009^8.589^3^6.917^7.233^~2, 3~^~03/01/2007~ -~04611~^~614~^5.808^10^0.140^~1~^~A~^^^1^1.714^10.887^2^5.005^6.612^~2, 3~^~03/01/2007~ -~04611~^~615~^0.356^10^0.005^~1~^~A~^^^1^0.239^0.500^2^0.338^0.374^~2, 3~^~03/01/2007~ -~04611~^~617~^35.541^10^0.742^~1~^~AS~^^^1^18.610^48.263^1^29.112^41.969^~2, 3~^~03/01/2007~ -~04611~^~618~^21.656^10^0.880^~1~^~AS~^^^1^11.177^33.620^1^11.500^31.812^~2, 3~^~03/01/2007~ -~04611~^~619~^5.031^10^0.236^~1~^~AS~^^^1^2.555^7.099^2^3.641^6.421^~2, 3~^~03/01/2007~ -~04611~^~620~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~621~^0.003^10^0.001^~1~^~A~^^^1^0.000^0.011^4^0.001^0.005^~1, 2, 3~^~03/01/2007~ -~04611~^~624~^0.105^10^0.035^~1~^~A~^^^1^0.000^0.255^2^-0.116^0.326^~1, 2, 3~^~03/01/2007~ -~04611~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~626~^0.088^10^0.001^~1~^~AS~^^^1^0.048^0.146^3^0.084^0.091^~2, 3~^~03/01/2007~ -~04611~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~628~^0.682^10^0.042^~1~^~A~^^^1^0.226^1.426^2^0.466^0.897^~2, 3~^~03/01/2007~ -~04611~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~630~^0.026^10^0.008^~1~^~AS~^^^1^0.000^0.102^1^-0.069^0.120^~2, 3~^~03/01/2007~ -~04611~^~631~^0.005^10^0.002^~1~^~A~^^^1^0.000^0.015^3^0.001^0.010^~1, 2, 3~^~03/01/2007~ -~04611~^~645~^36.435^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~646~^26.741^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~652~^0.020^10^0.002^~1~^~A~^^^1^0.014^0.031^3^0.015^0.025^~2, 3~^~03/01/2007~ -~04611~^~653~^0.062^10^0.001^~1~^~A~^^^1^0.045^0.082^3^0.059^0.064^~2, 3~^~03/01/2007~ -~04611~^~654~^0.087^10^0.002^~1~^~A~^^^1^0.068^0.110^2^0.078^0.095^~2, 3~^~03/01/2007~ -~04611~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~663~^5.248^10^0.559^~1~^~A~^^^1^0.059^11.613^2^1.980^8.516^~2, 3~^~03/01/2007~ -~04611~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~665~^0.579^10^0.190^~1~^~A~^^^1^0.168^1.896^1^-1.689^2.847^~2, 3~^~03/01/2007~ -~04611~^~670~^0.040^10^0.003^~1~^~A~^^^1^0.019^0.049^2^0.018^0.061^~2, 3~^~03/01/2007~ -~04611~^~671~^0.061^10^0.001^~1~^~A~^^^1^0.000^0.136^2^0.055^0.066^~1, 2, 3~^~03/01/2007~ -~04611~^~672~^0.024^10^0.003^~1~^~A~^^^1^0.000^0.054^1^0.003^0.046^~1, 2, 3~^~03/01/2007~ -~04611~^~673~^0.088^10^0.001^~1~^~A~^^^1^0.048^0.146^3^0.084^0.091^~2, 3~^~03/01/2007~ -~04611~^~674~^30.293^10^0.247^~1~^~A~^^^1^16.900^44.452^2^29.014^31.571^~2, 3~^~03/01/2007~ -~04611~^~675~^21.038^10^1.064^~1~^~A~^^^1^10.656^33.092^1^8.379^33.697^~2, 3~^~03/01/2007~ -~04611~^~676~^0.026^10^0.008^~1~^~A~^^^1^0.000^0.102^1^-0.069^0.120^~1, 2, 3~^~03/01/2007~ -~04611~^~685~^0.354^10^0.039^~1~^~A~^^^1^0.158^0.766^2^0.166^0.542^~2, 3~^~03/01/2007~ -~04611~^~687~^0.038^10^0.000^~1~^~A~^^^1^0.029^0.054^2^0.036^0.040^~2, 3~^~03/01/2007~ -~04611~^~689~^0.021^10^0.002^~1~^~AS~^^^1^0.000^0.043^2^0.013^0.028^~2, 3~^~03/01/2007~ -~04611~^~693~^5.248^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~695~^0.579^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04611~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~851~^4.677^10^0.274^~1~^~A~^^^1^2.116^6.575^2^3.060^6.294^~2, 3~^~03/01/2007~ -~04611~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04611~^~853~^0.021^10^0.002^~1~^~A~^^^1^0.000^0.043^2^0.013^0.028^~1, 2, 3~^~03/01/2007~ -~04611~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~312~^0.008^6^0.008^~1~^~A~^^^1^0.000^0.050^5^-0.013^0.030^~1, 2, 3~^~03/01/2007~ -~04612~^~315~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~404~^0.007^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~405~^0.026^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~406~^0.016^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~410~^0.059^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~415~^0.006^0^^~1~^^^^^^^^^^^~03/01/2003~ -~04612~^~605~^12.731^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~606~^10.884^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~612~^0.041^4^0.003^~1~^~A~^^^1^0.036^0.048^3^0.032^0.049^~2, 3~^~03/01/2007~ -~04612~^~613~^6.250^4^0.032^~1~^~A~^^^1^6.181^6.312^3^6.149^6.351^~2, 3~^~03/01/2007~ -~04612~^~614~^4.146^4^0.116^~1~^~A~^^^1^3.831^4.363^3^3.778^4.514^~2, 3~^~03/01/2007~ -~04612~^~615~^0.184^4^0.004^~1~^~A~^^^1^0.178^0.195^3^0.172^0.197^~2, 3~^~03/01/2007~ -~04612~^~617~^29.503^4^0.796^~1~^~AS~^^^1^28.235^31.721^3^26.969^32.037^~2, 3~^~03/01/2007~ -~04612~^~618~^14.919^4^0.432^~1~^~AS~^^^1^13.939^15.985^3^13.546^16.293^~2, 3~^~03/01/2007~ -~04612~^~619~^1.799^4^0.115^~1~^~AS~^^^1^1.512^2.074^3^1.433^2.164^~2, 3~^~03/01/2007~ -~04612~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~624~^0.139^4^0.047^~1~^~A~^^^1^0.000^0.192^3^-0.009^0.288^~1, 2, 3~^~03/01/2007~ -~04612~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~626~^0.034^4^0.001^~1~^~AS~^^^1^0.032^0.037^3^0.030^0.037^~2, 3~^~03/01/2007~ -~04612~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~628~^0.104^4^0.036^~1~^~A~^^^1^0.031^0.205^3^-0.012^0.220^~2, 3~^~03/01/2007~ -~04612~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~04612~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~645~^29.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~646~^16.718^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~652~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.001^0.023^~1, 2, 3~^~03/01/2007~ -~04612~^~653~^0.053^4^0.003^~1~^~A~^^^1^0.047^0.058^3^0.045^0.061^~2, 3~^~03/01/2007~ -~04612~^~654~^0.060^4^0.004^~1~^~A~^^^1^0.055^0.071^3^0.048^0.072^~2, 3~^~03/01/2007~ -~04612~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~663~^11.919^4^0.817^~1~^~A~^^^1^10.294^14.151^3^9.320^14.518^~2, 3~^~03/01/2007~ -~04612~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~665~^0.811^4^0.092^~1~^~A~^^^1^0.673^1.084^3^0.517^1.106^~2, 3~^~03/01/2007~ -~04612~^~670~^0.035^4^0.005^~1~^~A~^^^1^0.023^0.046^3^0.020^0.050^~2, 3~^~03/01/2007~ -~04612~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~673~^0.034^4^0.001^~1~^~A~^^^1^0.032^0.037^3^0.030^0.037^~2, 3~^~03/01/2007~ -~04612~^~674~^17.584^4^0.160^~1~^~A~^^^1^17.166^17.941^3^17.074^18.093^~2, 3~^~03/01/2007~ -~04612~^~675~^14.073^4^0.516^~1~^~A~^^^1^12.809^15.279^3^12.433^15.714^~2, 3~^~03/01/2007~ -~04612~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~685~^0.050^4^0.017^~1~^~A~^^^1^0.000^0.077^3^-0.005^0.106^~1, 2, 3~^~03/01/2007~ -~04612~^~687~^0.023^4^0.003^~1~^~A~^^^1^0.019^0.031^3^0.015^0.032^~2, 3~^~03/01/2007~ -~04612~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~04612~^~693~^11.919^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~695~^0.811^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04612~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~851~^1.748^4^0.104^~1~^~A~^^^1^1.512^2.018^3^1.418^2.079^~2, 3~^~03/01/2007~ -~04612~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04612~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~404~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~405~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~406~^0.016^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~ -~04613~^~410~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~04613~^~415~^3.750^4^0.710^~1~^~A~^^^1^2.700^5.800^3^1.490^6.010^~2, 3~^~03/01/2007~ -~04613~^~605~^3.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04613~^~606~^12.086^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~607~^0.014^16^0.006^~1~^~A~^^^1^0.000^0.059^15^0.001^0.026^~1, 2, 3~^~03/01/2007~ -~04613~^~608~^0.006^16^0.003^~1~^~A~^^^1^0.000^0.027^15^0.000^0.012^~1, 2, 3~^~03/01/2007~ -~04613~^~609~^0.009^15^0.004^~1~^~A~^^^1^0.000^0.042^14^0.001^0.017^~1, 2, 3~^~03/01/2007~ -~04613~^~610~^0.072^15^0.011^~1~^~A~^^^1^0.000^0.126^14^0.049^0.096^~1, 2, 3~^~03/01/2007~ -~04613~^~611~^0.200^15^0.079^~1~^~A~^^^1^0.000^0.700^14^0.031^0.369^~1, 2, 3~^~03/01/2007~ -~04613~^~612~^0.164^16^0.039^~1~^~A~^^^1^0.021^0.443^15^0.081^0.248^~2, 3~^~03/01/2007~ -~04613~^~613~^6.359^16^0.107^~1~^~A~^^^1^5.765^7.326^15^6.130^6.588^~2, 3~^~03/01/2007~ -~04613~^~614~^4.756^16^0.434^~1~^~A~^^^1^2.311^7.031^15^3.830^5.682^~2, 3~^~03/01/2007~ -~04613~^~615~^0.211^16^0.003^~1~^~A~^^^1^0.189^0.237^15^0.205^0.217^~2, 3~^~03/01/2007~ -~04613~^~617~^19.066^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~618~^23.736^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~619~^2.715^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~620~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~624~^0.156^16^0.018^~1~^~A~^^^1^0.000^0.212^15^0.118^0.194^~1, 2, 3~^~03/01/2007~ -~04613~^~625~^0.002^16^0.001^~1~^~A~^^^1^0.000^0.011^15^0.000^0.003^~1, 2, 3~^~03/01/2007~ -~04613~^~626~^0.054^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~627~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~628~^0.194^16^0.013^~1~^~A~^^^1^0.080^0.248^15^0.166^0.222^~2, 3~^~03/01/2007~ -~04613~^~629~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~631~^0.005^15^0.002^~1~^~A~^^^1^0.000^0.018^14^0.000^0.009^~1, 2, 3~^~03/01/2007~ -~04613~^~645~^19.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~646~^26.477^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04613~^~652~^0.014^16^0.002^~1~^~A~^^^1^0.000^0.025^15^0.011^0.018^~1, 2, 3~^~03/01/2007~ -~04613~^~653~^0.052^16^0.003^~1~^~A~^^^1^0.037^0.076^15^0.046^0.059^~2, 3~^~03/01/2007~ -~04613~^~654~^0.072^16^0.002^~1~^~A~^^^1^0.065^0.083^15^0.069^0.075^~2, 3~^~03/01/2007~ -~04613~^~662~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~663~^3.384^16^0.857^~1~^~A~^^^1^0.060^9.223^15^1.558^5.209^~2, 3~^~03/01/2007~ -~04613~^~664~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~665~^0.280^16^0.034^~1~^~A~^^^1^0.139^0.516^15^0.207^0.352^~2, 3~^~03/01/2007~ -~04613~^~670~^0.033^16^0.002^~1~^~A~^^^1^0.016^0.055^15^0.028^0.039^~2, 3~^~03/01/2007~ -~04613~^~671~^0.008^15^0.004^~1~^~A~^^^1^0.000^0.034^14^0.000^0.016^~1, 2, 3~^~03/01/2007~ -~04613~^~672~^0.016^16^0.003^~1~^~A~^^^1^0.000^0.056^15^0.009^0.023^~1, 2, 3~^~03/01/2007~ -~04613~^~673~^0.054^16^0.001^~1~^~A~^^^1^0.045^0.061^15^0.052^0.056^~2, 3~^~03/01/2007~ -~04613~^~674~^15.683^16^0.491^~1~^~A~^^^1^13.498^19.055^15^14.636^16.729^~2, 3~^~03/01/2007~ -~04613~^~675~^23.423^16^0.616^~1~^~A~^^^1^20.027^27.048^15^22.111^24.735^~2, 3~^~03/01/2007~ -~04613~^~676~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~685~^0.046^16^0.012^~1~^~A~^^^1^0.000^0.113^15^0.020^0.072^~1, 2, 3~^~03/01/2007~ -~04613~^~687~^0.024^16^0.001^~1~^~A~^^^1^0.016^0.029^15^0.021^0.026^~2, 3~^~03/01/2007~ -~04613~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~04613~^~693~^3.384^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04613~^~695~^0.280^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04613~^~697~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04613~^~851~^2.669^16^0.264^~1~^~A~^^^1^0.996^3.812^15^2.106^3.231^~2, 3~^~03/01/2007~ -~04613~^~852~^0.002^16^0.001^~1~^~A~^^^1^0.000^0.011^15^0.000^0.004^~1, 2, 3~^~03/01/2007~ -~04613~^~853~^0.004^16^0.001^~1~^~A~^^^1^0.000^0.014^15^0.001^0.007^~1, 2, 3~^~03/01/2007~ -~04613~^~858~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04614~^~312~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~404~^0.007^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~405~^0.026^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~406~^0.016^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~410~^0.030^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~415~^0.006^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~605~^7.374^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04614~^~606~^10.042^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~612~^0.049^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~613~^5.813^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~614~^3.622^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~615~^0.190^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~617~^20.190^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~618~^21.612^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~619~^2.645^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~624~^0.220^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~626~^0.048^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~628~^0.078^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~645~^20.316^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~646~^24.686^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~653~^0.064^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~654~^0.084^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~662~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~663~^6.885^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~666~^0.489^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~672~^0.429^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~673~^0.048^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~674~^13.305^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~675~^21.123^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~693~^6.885^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04614~^~851~^2.645^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~04615~^~312~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~315~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04615~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04615~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~04615~^~410~^0.680^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04615~^~415~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~04615~^~605~^13.164^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~606~^24.980^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~607~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~608~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~609~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~610~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~611~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~612~^0.167^7^0.007^~1~^~A~^^^2^0.121^0.197^5^0.149^0.184^~2, 3~^~04/01/2006~ -~04615~^~613~^12.460^7^0.341^~1~^~A~^^^2^11.527^13.693^5^11.582^13.337^~2, 3~^~04/01/2006~ -~04615~^~614~^11.412^7^0.149^~1~^~A~^^^2^9.947^12.180^5^11.028^11.795^~2, 3~^~04/01/2006~ -~04615~^~615~^0.428^7^0.005^~1~^~A~^^^2^0.254^0.484^5^0.414^0.442^~2, 3~^~04/01/2006~ -~04615~^~617~^41.076^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04615~^~618~^26.213^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04615~^~619~^1.883^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04615~^~620~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~621~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~624~^0.367^7^0.011^~1~^~A~^^^2^0.295^0.501^5^0.338^0.395^~2, 3~^~04/01/2006~ -~04615~^~625~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~626~^0.021^7^0.011^~6~^~JA~^^^2^0.000^0.075^5^-0.006^0.049^~1, 2, 3~^~04/01/2006~ -~04615~^~627~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~628~^0.088^7^0.038^~1~^~A~^^^2^0.000^0.277^5^-0.010^0.187^~1, 2, 3~^~04/01/2006~ -~04615~^~629~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~630~^0.000^7^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~631~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~645~^41.186^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~646~^28.097^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~653~^0.095^7^0.026^~1~^~A~^^^2^0.000^0.151^5^0.029^0.162^~1, 2, 3~^~04/01/2006~ -~04615~^~654~^0.052^7^0.018^~1~^~A~^^^2^0.000^0.161^5^0.005^0.098^~1, 2, 3~^~04/01/2006~ -~04615~^~663~^10.767^7^1.005^~1~^~A~^^^2^0.535^15.646^5^8.184^13.351^~2, 3~^~04/01/2006~ -~04615~^~666~^2.397^7^0.218^~1~^~A~^^^2^0.066^3.391^5^1.837^2.956^~2, 3~^~04/01/2006~ -~04615~^~670~^0.057^6^0.027^~1~^~A~^^^1^0.000^0.151^5^-0.012^0.126^~1, 2, 3~^~04/01/2006~ -~04615~^~671~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~04615~^~674~^30.309^7^0.703^~1~^~A~^^^2^27.073^35.958^5^28.501^32.116^~2, 3~^~04/01/2006~ -~04615~^~675~^23.760^7^1.182^~1~^~A~^^^2^18.453^31.567^5^20.721^26.799^~2, 3~^~04/01/2006~ -~04615~^~693~^10.767^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~695~^2.397^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04615~^~851~^1.883^7^0.207^~1~^~A~^^^2^1.183^2.438^5^1.352^2.415^~2, 3~^~04/01/2006~ -~04617~^~312~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~404~^0.010^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~405~^0.037^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~406~^0.023^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~415~^0.009^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~605~^14.890^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~606~^15.189^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~607~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~608~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~609~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~610~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~611~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~612~^0.046^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~613~^8.431^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~614~^6.173^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~617~^38.675^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~618~^22.252^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~619~^2.040^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~620~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~621~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~626~^0.045^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~627~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~628~^0.133^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~629~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~630~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~631~^0.006^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~645~^38.877^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~646~^24.302^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~662~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~663~^14.187^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~673~^0.045^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~674~^24.488^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04617~^~675~^21.522^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04618~^~312~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~404~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~405~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~406~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~415~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~606~^14.224^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~607~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~608~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~609~^0.015^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~610~^0.023^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~611~^0.433^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~612~^0.240^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~613~^7.075^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~614~^5.808^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~617~^35.541^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~618~^21.656^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~619~^5.031^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~620~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~621~^0.003^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~626~^0.088^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~627~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~628~^0.682^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~629~^0.000^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~ -~04618~^~630~^0.026^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~631~^0.005^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~645~^36.435^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04618~^~646~^26.741^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~ -~04620~^~312~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~404~^0.007^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~405~^0.026^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~406~^0.016^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~415~^3.750^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~606~^12.086^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~607~^0.014^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~608~^0.006^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~609~^0.009^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~610~^0.072^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~611~^0.200^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~612~^0.164^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~613~^6.359^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~614~^4.756^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~617~^19.066^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~618~^23.736^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~619~^2.715^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~620~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~621~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~626~^0.054^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~627~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~628~^0.194^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~629~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04620~^~630~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~631~^0.005^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~645~^19.348^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04620~^~646~^26.477^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~ -~04624~^~312~^0.008^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~404~^0.010^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~405~^0.040^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~406~^0.030^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~415~^0.010^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~606~^0.416^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~607~^0.003^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~609~^0.001^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~610~^0.001^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~611~^0.001^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~612~^0.005^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~613~^0.343^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~614~^0.060^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~617~^0.737^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~618~^1.742^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~619~^0.001^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~645~^0.740^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04624~^~646~^1.764^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~04626~^~312~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~404~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~405~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~406~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~415~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~606~^13.300^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~613~^9.800^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~614~^3.500^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~617~^39.200^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~618~^12.600^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~619~^1.400^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~626~^0.700^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~645~^39.900^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04626~^~646~^14.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~312~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~404~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~405~^0.060^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~406~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~415~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~606~^7.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~613~^5.950^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~614~^1.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~617~^9.450^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~618~^15.040^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~619~^1.750^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~626~^0.350^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~645~^9.800^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04627~^~646~^16.800^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~04628~^~404~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2001~ -~04628~^~405~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2002~ -~04628~^~406~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~03/01/2002~ -~04628~^~410~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2002~ -~04628~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2002~ -~04628~^~605~^14.890^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~606~^15.189^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~612~^0.046^10^0.002^~1~^~A~^^^1^0.034^0.056^9^0.042^0.051^~2, 3~^~03/01/2007~ -~04628~^~613~^8.431^10^0.087^~1~^~A~^^^1^8.119^9.017^9^8.240^8.634^~2, 3~^~03/01/2007~ -~04628~^~614~^6.173^10^0.190^~1~^~A~^^^1^5.041^6.701^9^5.746^6.608^~2, 3~^~03/01/2007~ -~04628~^~615~^0.261^10^0.006^~1~^~A~^^^1^0.247^0.307^9^0.249^0.274^~2, 3~^~03/01/2007~ -~04628~^~617~^38.675^10^0.915^~1~^~AS~^^^1^35.603^44.681^9^36.606^40.744^~2, 3~^~03/01/2007~ -~04628~^~618~^22.252^10^0.842^~1~^~AS~^^^1^17.988^25.626^9^20.348^24.156^~2, 3~^~03/01/2007~ -~04628~^~619~^2.040^10^0.330^~1~^~AS~^^^1^0.480^2.985^9^1.294^2.786^~2, 3~^~03/01/2007~ -~04628~^~620~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~624~^0.109^9^0.036^~1~^~A~^^^1^0.000^0.247^8^0.025^0.193^~1, 2, 3~^~03/01/2007~ -~04628~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~626~^0.045^10^0.002^~1~^~AS~^^^1^0.037^0.054^9^0.041^0.049^~2, 3~^~03/01/2007~ -~04628~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~628~^0.133^10^0.008^~1~^~A~^^^1^0.095^0.170^9^0.115^0.151^~2, 3~^~03/01/2007~ -~04628~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~630~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~04628~^~631~^0.006^9^0.003^~1~^~A~^^^1^0.000^0.026^8^-0.002^0.014^~1, 2, 3~^~03/01/2007~ -~04628~^~645~^38.877^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~646~^24.302^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~652~^0.016^10^0.001^~1~^~A~^^^1^0.011^0.021^9^0.013^0.018^~2, 3~^~03/01/2007~ -~04628~^~653~^0.068^10^0.002^~1~^~A~^^^1^0.056^0.073^9^0.064^0.072^~2, 3~^~03/01/2007~ -~04628~^~654~^0.085^10^0.004^~1~^~A~^^^1^0.073^0.108^9^0.076^0.094^~2, 3~^~03/01/2007~ -~04628~^~662~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~663~^14.187^10^0.901^~1~^~A~^^^1^10.644^17.919^9^12.148^16.225^~2, 3~^~03/01/2007~ -~04628~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~665~^0.703^10^0.096^~1~^~A~^^^1^0.377^1.347^9^0.487^0.920^~2, 3~^~03/01/2007~ -~04628~^~670~^0.027^10^0.003^~1~^~A~^^^1^0.000^0.035^9^0.019^0.034^~1, 2, 3~^~03/01/2007~ -~04628~^~671~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.012^9^-0.002^0.004^~1, 2, 3~^~03/01/2007~ -~04628~^~672~^0.004^10^0.001^~1~^~A~^^^1^0.000^0.010^9^0.001^0.007^~1, 2, 3~^~03/01/2007~ -~04628~^~673~^0.045^10^0.002^~1~^~A~^^^1^0.037^0.054^9^0.041^0.049^~2, 3~^~03/01/2007~ -~04628~^~674~^24.488^10^1.033^~1~^~A~^^^1^19.962^30.235^9^22.152^26.825^~2, 3~^~03/01/2007~ -~04628~^~675~^21.522^10^0.919^~1~^~A~^^^1^16.613^25.089^9^19.444^23.600^~2, 3~^~03/01/2007~ -~04628~^~676~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~685~^0.083^10^0.018^~1~^~A~^^^1^0.000^0.148^9^0.043^0.123^~1, 2, 3~^~03/01/2007~ -~04628~^~687~^0.023^10^0.002^~1~^~A~^^^1^0.013^0.028^9^0.020^0.027^~2, 3~^~03/01/2007~ -~04628~^~689~^0.001^10^0.001^~1~^~AS~^^^1^0.000^0.008^9^-0.001^0.003^~2, 3~^~03/01/2007~ -~04628~^~693~^14.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~695~^0.703^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04628~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~851~^1.957^10^0.313^~1~^~A~^^^1^0.466^2.876^9^1.249^2.666^~2, 3~^~03/01/2007~ -~04628~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04628~^~853~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.008^9^-0.001^0.003^~1, 2, 3~^~03/01/2007~ -~04628~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~315~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2001~ -~04629~^~404~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2001~ -~04629~^~405~^0.025^5^0.004^~1~^~A~^^^1^0.023^0.030^1^-0.022^0.073^~4~^~02/01/2001~ -~04629~^~410~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^1^0.001^0.001^~4~^~02/01/2001~ -~04629~^~415~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2001~ -~04629~^~605~^14.786^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~606~^13.631^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~607~^0.012^14^0.006^~1~^~A~^^^1^0.000^0.057^13^-0.002^0.025^~1, 2, 3~^~03/01/2007~ -~04629~^~608~^0.006^14^0.003^~1~^~A~^^^1^0.000^0.028^13^-0.001^0.012^~1, 2, 3~^~03/01/2007~ -~04629~^~609~^0.013^14^0.007^~1~^~A~^^^1^0.000^0.090^13^-0.002^0.028^~1, 2, 3~^~03/01/2007~ -~04629~^~610~^0.043^12^0.019^~1~^~A~^^^1^0.000^0.161^11^0.002^0.084^~1, 2, 3~^~03/01/2007~ -~04629~^~611~^0.011^12^0.005^~1~^~A~^^^1^0.000^0.040^11^-0.001^0.022^~1, 2, 3~^~03/01/2007~ -~04629~^~612~^0.072^14^0.014^~1~^~A~^^^1^0.035^0.168^13^0.043^0.102^~2, 3~^~03/01/2007~ -~04629~^~613~^7.311^14^0.047^~1~^~A~^^^1^7.036^7.569^13^7.210^7.411^~2, 3~^~03/01/2007~ -~04629~^~614~^5.615^14^0.089^~1~^~A~^^^1^5.074^6.323^13^5.423^5.808^~2, 3~^~03/01/2007~ -~04629~^~615~^0.229^14^0.003^~1~^~A~^^^1^0.215^0.246^13^0.223^0.235^~2, 3~^~03/01/2007~ -~04629~^~617~^33.233^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04629~^~618~^18.106^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04629~^~619~^2.133^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04629~^~620~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~621~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~624~^0.163^14^0.029^~1~^~A~^^^1^0.000^0.261^13^0.101^0.225^~1, 2, 3~^~03/01/2007~ -~04629~^~625~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~626~^0.043^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04629~^~627~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~628~^0.169^14^0.020^~1~^~A~^^^1^0.033^0.294^13^0.126^0.211^~2, 3~^~03/01/2007~ -~04629~^~629~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~631~^0.002^14^0.001^~1~^~A~^^^1^0.000^0.012^13^-0.001^0.004^~1, 2, 3~^~03/01/2007~ -~04629~^~645~^33.468^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~646~^20.248^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~652~^0.017^14^0.001^~1~^~A~^^^1^0.009^0.026^13^0.013^0.020^~2, 3~^~03/01/2007~ -~04629~^~653~^0.064^14^0.002^~1~^~A~^^^1^0.057^0.077^13^0.061^0.068^~2, 3~^~03/01/2007~ -~04629~^~654~^0.075^14^0.002^~1~^~A~^^^1^0.067^0.093^13^0.071^0.079^~2, 3~^~03/01/2007~ -~04629~^~662~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~663~^14.007^14^0.481^~1~^~A~^^^1^9.904^16.406^13^12.967^15.047^~2, 3~^~03/01/2007~ -~04629~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~665~^0.778^14^0.118^~1~^~A~^^^1^0.363^1.571^13^0.524^1.033^~2, 3~^~03/01/2007~ -~04629~^~670~^0.047^14^0.005^~1~^~A~^^^1^0.026^0.092^13^0.036^0.059^~2, 3~^~03/01/2007~ -~04629~^~671~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~672~^0.004^14^0.002^~1~^~A~^^^1^0.000^0.016^13^0.001^0.008^~1, 2, 3~^~03/01/2007~ -~04629~^~673~^0.043^14^0.002^~1~^~A~^^^1^0.033^0.060^13^0.038^0.048^~2, 3~^~03/01/2007~ -~04629~^~674~^19.226^14^0.937^~1~^~A~^^^1^15.873^26.402^13^17.201^21.251^~2, 3~^~03/01/2007~ -~04629~^~675~^17.280^14^0.787^~1~^~A~^^^1^11.860^19.955^13^15.580^18.981^~2, 3~^~03/01/2007~ -~04629~^~676~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~685~^0.060^14^0.017^~1~^~A~^^^1^0.000^0.213^13^0.024^0.096^~1, 2, 3~^~03/01/2007~ -~04629~^~687~^0.023^14^0.001^~1~^~A~^^^1^0.018^0.029^13^0.021^0.025^~2, 3~^~03/01/2007~ -~04629~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04629~^~693~^14.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~695~^0.778^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04629~^~697~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~851~^2.073^14^0.120^~1~^~A~^^^1^1.427^2.588^13^1.814^2.332^~2, 3~^~03/01/2007~ -~04629~^~852~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04629~^~853~^0.003^14^0.001^~1~^~A~^^^1^0.000^0.015^13^0.000^0.006^~1, 2, 3~^~03/01/2007~ -~04629~^~858~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04630~^~312~^0.009^18^0.000^~1~^~A~^^^1^0.009^0.009^17^0.009^0.009^~1, 2, 3~^~11/01/2016~ -~04630~^~315~^0.005^18^0.000^~1~^~A~^^^1^0.005^0.006^17^0.005^0.005^~1, 2, 3~^~11/01/2016~ -~04630~^~404~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~405~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~406~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~410~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~415~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~605~^0.562^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~606~^11.055^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~607~^0.006^9^0.003^~1~^~A~^^^1^0.000^0.017^8^0.001^0.012^~1, 2, 3~^~11/01/2016~ -~04630~^~608~^0.014^9^0.002^~1~^~A~^^^1^0.003^0.021^8^0.010^0.018^~2, 3~^~11/01/2016~ -~04630~^~609~^0.170^10^0.018^~6~^~JA~^^^2^0.097^0.242^8^0.128^0.213^~2, 3~^~11/01/2016~ -~04630~^~610~^0.148^11^0.015^~6~^~JA~^^^2^0.059^0.218^9^0.112^0.183^~2, 3~^~11/01/2016~ -~04630~^~611~^2.024^10^0.192^~6~^~JA~^^^2^1.247^2.724^8^1.581^2.466^~2, 3~^~11/01/2016~ -~04630~^~612~^0.607^13^0.061^~6~^~JA~^^^2^0.038^1.006^10^0.472^0.742^~2, 3~^~11/01/2016~ -~04630~^~613~^6.285^13^0.312^~6~^~JA~^^^2^4.327^7.823^8^5.556^7.013^~2, 3~^~11/01/2016~ -~04630~^~614~^1.979^13^0.109^~6~^~JA~^^^2^1.453^3.098^5^1.701^2.256^~2, 3~^~11/01/2016~ -~04630~^~615~^0.136^13^0.004^~6~^~JA~^^^2^0.111^0.162^10^0.127^0.144^~2, 3~^~11/01/2016~ -~04630~^~617~^10.132^13^0.402^~1~^~AS~^^^2^7.914^14.283^6^9.133^11.131^~2, 3~^~11/01/2016~ -~04630~^~618~^18.457^13^0.329^~1~^~AS~^^^2^15.858^22.037^11^17.732^19.182^~2, 3~^~11/01/2016~ -~04630~^~619~^2.490^13^0.043^~1~^~AS~^^^2^2.218^2.816^11^2.395^2.586^~2, 3~^~11/01/2016~ -~04630~^~620~^0.016^10^0.000^~6~^~JA~^^^2^0.015^0.018^8^0.015^0.017^~2, 3~^~11/01/2016~ -~04630~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~624~^0.123^13^0.003^~6~^~JA~^^^2^0.103^0.154^9^0.116^0.130^~2, 3~^~11/01/2016~ -~04630~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~626~^0.034^13^0.001^~6~^~JA~^^^2^0.026^0.039^9^0.032^0.037^~2, 3~^~11/01/2016~ -~04630~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~628~^0.155^13^0.004^~6~^~JA~^^^2^0.096^0.205^8^0.145^0.165^~2, 3~^~11/01/2016~ -~04630~^~629~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.006^8^0.000^0.004^~1, 2, 3~^~11/01/2016~ -~04630~^~630~^0.015^9^0.000^~1~^~AS~^^^1^0.013^0.017^8^0.014^0.016^~2, 3~^~11/01/2016~ -~04630~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~645~^10.351^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~646~^20.974^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~652~^0.011^13^0.001^~6~^~JA~^^^2^0.009^0.014^8^0.010^0.012^~2, 3~^~11/01/2016~ -~04630~^~653~^0.039^13^0.001^~6~^~JA~^^^2^0.033^0.048^10^0.036^0.042^~2, 3~^~11/01/2016~ -~04630~^~654~^0.049^13^0.001^~6~^~JA~^^^2^0.043^0.057^11^0.047^0.051^~2, 3~^~11/01/2016~ -~04630~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~663~^0.475^13^0.234^~6~^~JA~^^^2^0.020^2.765^3^-0.268^1.219^~2, 3~^~11/01/2016~ -~04630~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~665~^0.087^13^0.010^~6~^~JA~^^^2^0.052^0.197^3^0.056^0.117^~2, 3~^~11/01/2016~ -~04630~^~670~^0.027^13^0.001^~6~^~JA~^^^2^0.020^0.035^10^0.026^0.029^~2, 3~^~11/01/2016~ -~04630~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2002~ -~04630~^~672~^0.013^13^0.000^~6~^~JA~^^^2^0.011^0.015^11^0.012^0.013^~2, 3~^~11/01/2016~ -~04630~^~673~^0.033^9^0.002^~1~^~A~^^^1^0.026^0.039^8^0.029^0.037^~2, 3~^~11/01/2016~ -~04630~^~674~^9.657^13^0.240^~6~^~JA~^^^2^7.892^11.518^11^9.128^10.186^~2, 3~^~11/01/2016~ -~04630~^~675~^18.343^13^0.329^~6~^~JA~^^^2^15.786^21.940^11^17.620^19.067^~2, 3~^~11/01/2016~ -~04630~^~676~^0.015^9^0.000^~1~^~A~^^^1^0.013^0.017^8^0.014^0.016^~2, 3~^~11/01/2016~ -~04630~^~685~^0.104^13^0.003^~6~^~JA~^^^2^0.079^0.127^11^0.096^0.112^~2, 3~^~11/01/2016~ -~04630~^~687~^0.019^13^0.001^~6~^~JA~^^^2^0.014^0.024^11^0.018^0.021^~2, 3~^~11/01/2016~ -~04630~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2002~ -~04630~^~693~^0.475^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~695~^0.087^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~04630~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~851~^2.386^13^0.042^~6~^~JA~^^^2^2.134^2.715^11^2.293^2.479^~2, 3~^~11/01/2016~ -~04630~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04630~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2016~ -~04631~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~315~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~404~^1.011^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~04631~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~04631~^~406~^0.883^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~04631~^~410~^0.271^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~04631~^~415~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~04631~^~605~^0.168^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~606~^2.128^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2002~ -~04631~^~611~^0.009^2^^~1~^~A~^^^1^0.002^0.004^1^^^^~04/01/2002~ -~04631~^~612~^0.028^2^^~1~^~A~^^^1^0.008^0.014^1^^^^~04/01/2002~ -~04631~^~613~^0.953^2^^~1~^~A~^^^1^0.278^0.460^1^^^^~04/01/2002~ -~04631~^~614~^1.126^2^^~1~^~A~^^^1^0.334^0.538^1^^^^~04/01/2002~ -~04631~^~615~^0.012^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~04/01/2002~ -~04631~^~617~^0.178^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~04631~^~618~^0.376^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~04631~^~619~^0.046^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~ -~04631~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2002~ -~04631~^~645~^0.356^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~646~^0.422^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~663~^0.168^2^^~1~^~A~^^^1^0.048^0.082^1^^^^~04/01/2002~ -~04631~^~674~^0.010^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~04/01/2002~ -~04631~^~675~^0.376^2^^~1~^~A~^^^1^0.110^0.181^1^^^^~04/01/2002~ -~04631~^~693~^0.168^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~04631~^~851~^0.046^2^^~1~^~A~^^^1^0.013^0.022^1^^^^~04/01/2002~ -~04633~^~312~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~404~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~405~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~406~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~415~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~606~^2.870^0^^~1~^^^^^^^^^^^~12/01/2006~ -~04633~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~613~^2.030^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~614~^0.840^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~617~^7.450^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~618~^7.840^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~619~^0.160^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~628~^0.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~645~^7.480^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04633~^~646~^8.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~04634~^~312~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~404~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~405~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~406~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~415~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~606~^2.870^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~607~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~608~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~609~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~610~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~611~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~612~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~613~^2.030^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~614~^0.840^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~617~^7.450^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~618~^7.840^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~619~^0.160^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~620~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~621~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~626~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~627~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~628~^0.040^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~629~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~630~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~631~^0.000^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~645~^7.480^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04634~^~646~^8.040^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~ -~04635~^~312~^0.178^3^0.136^~1~^~A~^^^1^0.027^0.450^2^-0.408^0.764^~2, 3~^~02/01/2003~ -~04635~^~315~^0.021^3^0.006^~1~^~A~^^^1^0.010^0.032^2^-0.007^0.049^~2, 3~^~02/01/2003~ -~04635~^~404~^0.236^2^^~1~^~A~^^^1^0.019^0.452^1^^^^~02/01/2003~ -~04635~^~405~^0.049^2^^~1~^~A~^^^1^0.038^0.059^1^^^^~02/01/2003~ -~04635~^~406~^0.261^2^^~1~^~A~^^^1^0.252^0.270^1^^^^~02/01/2003~ -~04635~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04635~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04635~^~606~^0.198^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~613~^0.129^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~614~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~617~^0.285^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~618~^0.538^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~619~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~626~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~628~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~630~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04635~^~645~^0.342^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~646~^0.630^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~04635~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04635~^~687~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~312~^0.116^3^0.036^~1~^~A~^^^1^0.049^0.170^2^-0.037^0.269^~2, 3~^~02/01/2003~ -~04636~^~315~^0.032^3^0.012^~1~^~A~^^^1^0.012^0.052^2^-0.018^0.082^~2, 3~^~02/01/2003~ -~04636~^~404~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~405~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~406~^0.135^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04636~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04636~^~606~^0.295^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~610~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~02/01/2003~ -~04636~^~611~^0.010^2^^~1~^~A~^^^1^0.004^0.015^1^^^^~02/01/2003~ -~04636~^~612~^0.038^2^^~1~^~A~^^^1^0.014^0.062^1^^^^~02/01/2003~ -~04636~^~613~^0.151^2^^~1~^~A~^^^1^0.093^0.208^1^^^^~02/01/2003~ -~04636~^~614~^0.071^2^^~1~^~A~^^^1^0.041^0.101^1^^^^~02/01/2003~ -~04636~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~617~^0.210^2^^~1~^~A~^^^1^0.160^0.260^1^^^^~02/01/2003~ -~04636~^~618~^0.163^2^^~1~^~A~^^^1^0.065^0.261^1^^^^~02/01/2003~ -~04636~^~619~^0.027^2^^~1~^~A~^^^1^0.013^0.041^1^^^^~02/01/2003~ -~04636~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~624~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~02/01/2003~ -~04636~^~625~^0.005^2^^~1~^~A~^^^1^0.002^0.007^1^^^^~02/01/2003~ -~04636~^~626~^0.009^2^^~1~^~A~^^^1^0.004^0.013^1^^^^~02/01/2003~ -~04636~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~630~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^^~02/01/2003~ -~04636~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~04636~^~645~^0.235^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~646~^0.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~04636~^~652~^0.005^2^^~1~^~A~^^^1^0.002^0.008^1^^^^~02/01/2003~ -~04636~^~653~^0.004^2^^~1~^~A~^^^1^0.002^0.006^1^^^^~02/01/2003~ -~04636~^~687~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~02/01/2003~ -~04636~^~689~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04636~^~696~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~04638~^~312~^0.195^3^0.137^~1~^~A~^^^1^0.056^0.470^2^-0.396^0.786^~2, 3~^~02/01/2003~ -~04638~^~315~^0.111^3^0.048^~1~^~A~^^^1^0.062^0.208^2^-0.098^0.320^~2, 3~^~02/01/2003~ -~04638~^~404~^0.030^3^0.004^~1~^~A~^^^1^0.021^0.036^2^0.010^0.049^~2, 3~^~02/01/2003~ -~04638~^~405~^0.025^3^0.018^~1~^~A~^^^1^0.007^0.060^2^-0.050^0.100^~1, 2, 3~^~02/01/2003~ -~04638~^~406~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~02/01/2003~ -~04638~^~410~^0.771^3^0.058^~1~^~A~^^^1^0.689^0.882^2^0.522^1.019^~2, 3~^~02/01/2003~ -~04638~^~415~^0.024^3^0.000^~1~^~A~^^^1^0.023^0.024^2^0.022^0.025^~2, 3~^~02/01/2003~ -~04638~^~606~^0.447^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04638~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~612~^0.037^3^0.032^~1~^~A~^^^1^0.027^0.125^2^-0.074^0.198^~2, 3~^~05/01/2011~ -~04638~^~613~^0.243^3^0.098^~1~^~A~^^^1^0.258^0.595^2^-0.009^0.835^~2, 3~^~05/01/2011~ -~04638~^~614~^0.152^3^0.120^~1~^~A~^^^1^0.105^0.494^2^-0.258^0.773^~2, 3~^~05/01/2011~ -~04638~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~05/01/2011~ -~04638~^~617~^0.370^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04638~^~618~^0.622^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04638~^~619~^0.076^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04638~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~624~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.013^2^-0.009^0.023^~1, 2, 3~^~05/01/2011~ -~04638~^~626~^0.006^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04638~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~628~^0.008^3^0.005^~1~^~A~^^^1^0.005^0.023^2^-0.009^0.035^~2, 3~^~05/01/2011~ -~04638~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~630~^0.004^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.023^0.037^~1, 2, 3~^~05/01/2011~ -~04638~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~645~^0.388^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04638~^~646~^0.698^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04638~^~653~^0.006^3^0.003^~1~^~A~^^^1^0.006^0.015^2^-0.002^0.021^~2, 3~^~05/01/2011~ -~04638~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~663~^0.011^3^0.011^~1~^~A~^^^1^0.008^0.040^2^-0.026^0.064^~2, 3~^~05/01/2011~ -~04638~^~666~^0.010^3^0.006^~1~^~A~^^^1^0.010^0.029^2^-0.007^0.042^~2, 3~^~05/01/2011~ -~04638~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~04638~^~673~^0.006^3^0.005^~1~^~A~^^^1^0.004^0.019^2^-0.009^0.030^~2, 3~^~05/01/2011~ -~04638~^~674~^0.359^3^0.087^~1~^~A~^^^1^0.438^0.725^2^0.234^0.983^~2, 3~^~05/01/2011~ -~04638~^~675~^0.611^3^0.198^~1~^~A~^^^1^0.793^1.430^2^0.185^1.890^~2, 3~^~05/01/2011~ -~04638~^~851~^0.076^3^0.019^~1~^~A~^^^1^0.099^0.165^2^0.046^0.212^~2, 3~^~05/01/2011~ -~04639~^~312~^0.019^18^0.000^~1~^~A~^^^1^0.019^0.027^5^0.018^0.020^~1, 2, 3~^~07/01/2013~ -~04639~^~315~^0.033^18^0.001^~1~^~A~^^^1^0.015^0.048^8^0.030^0.035^~1, 2, 3~^~07/01/2013~ -~04639~^~404~^0.015^9^0.001^~1~^~A~^^^1^0.010^0.020^2^0.010^0.020^~2, 3~^~07/01/2013~ -~04639~^~405~^0.087^9^0.004^~1~^~A~^^^1^0.074^0.110^3^0.076^0.098^~2, 3~^~07/01/2013~ -~04639~^~406~^0.054^9^0.003^~1~^~A~^^^1^0.030^0.070^2^0.040^0.067^~2, 3~^~07/01/2013~ -~04639~^~410~^0.272^6^0.011^~1~^~A~^^^1^0.250^0.320^1^0.158^0.386^~2, 3~^~07/01/2015~ -~04639~^~415~^0.030^9^0.002^~1~^~A~^^^1^0.022^0.040^2^0.022^0.038^~2, 3~^~07/01/2013~ -~04639~^~521~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~04639~^~605~^0.182^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04639~^~606~^6.964^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~04639~^~607~^0.006^9^0.005^~1~^~A~^^^1^0.000^0.047^2^-0.016^0.029^~1, 2, 3~^~07/01/2013~ -~04639~^~608~^0.004^9^0.004^~1~^~A~^^^1^0.000^0.036^2^-0.014^0.023^~1, 2, 3~^~07/01/2013~ -~04639~^~609~^0.037^9^0.003^~1~^~A~^^^1^0.000^0.059^2^0.027^0.047^~1, 2, 3~^~07/01/2015~ -~04639~^~610~^0.036^9^0.006^~1~^~A~^^^1^0.007^0.059^2^0.010^0.062^~2, 3~^~07/01/2013~ -~04639~^~611~^0.013^9^0.007^~1~^~A~^^^1^0.003^0.064^2^-0.016^0.043^~2, 3~^~07/01/2013~ -~04639~^~612~^0.067^9^0.022^~1~^~A~^^^1^0.032^0.225^2^-0.027^0.161^~2, 3~^~07/01/2015~ -~04639~^~613~^4.619^9^0.050^~1~^~A~^^^1^3.963^5.063^4^4.472^4.765^~2, 3~^~07/01/2015~ -~04639~^~614~^1.836^9^0.047^~1~^~A~^^^1^1.663^2.069^3^1.692^1.981^~2, 3~^~07/01/2015~ -~04639~^~615~^0.135^9^0.003^~1~^~A~^^^1^0.127^0.148^4^0.127^0.143^~2, 3~^~07/01/2013~ -~04639~^~617~^8.949^9^0.112^~1~^~AS~^^^1^7.907^9.499^4^8.641^9.258^~2, 3~^~07/01/2015~ -~04639~^~618~^22.324^9^0.167^~1~^~AS~^^^1^19.639^23.745^4^21.865^22.784^~2, 3~^~07/01/2015~ -~04639~^~619~^3.415^9^0.046^~1~^~AS~^^^1^2.860^3.748^4^3.284^3.546^~2, 3~^~07/01/2015~ -~04639~^~620~^0.030^9^0.001^~1~^~A~^^^1^0.025^0.036^3^0.027^0.033^~2, 3~^~07/01/2013~ -~04639~^~621~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^2^0.001^0.007^~1, 2, 3~^~07/01/2013~ -~04639~^~624~^0.133^9^0.002^~1~^~A~^^^1^0.124^0.145^4^0.127^0.139^~2, 3~^~07/01/2013~ -~04639~^~626~^0.056^9^0.004^~1~^~AS~^^^1^0.042^0.089^2^0.037^0.075^~2, 3~^~07/01/2015~ -~04639~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~628~^0.123^9^0.009^~1~^~A~^^^1^0.093^0.180^2^0.088^0.157^~2, 3~^~07/01/2015~ -~04639~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~630~^0.048^9^0.001^~1~^~AS~^^^1^0.012^0.090^4^0.044^0.052^~2, 3~^~07/01/2015~ -~04639~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~645~^9.202^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04639~^~646~^25.796^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04639~^~652~^0.013^9^0.002^~1~^~A~^^^1^0.009^0.030^2^0.003^0.023^~2, 3~^~07/01/2013~ -~04639~^~653~^0.050^9^0.002^~1~^~A~^^^1^0.039^0.063^3^0.043^0.056^~2, 3~^~07/01/2015~ -~04639~^~654~^0.049^9^0.001^~1~^~A~^^^1^0.045^0.056^4^0.046^0.053^~2, 3~^~07/01/2013~ -~04639~^~662~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.007^3^-0.001^0.004^~1, 2, 3~^~07/01/2013~ -~04639~^~663~^0.025^9^0.004^~1~^~A~^^^1^0.016^0.054^2^0.008^0.042^~2, 3~^~07/01/2015~ -~04639~^~664~^0.012^9^0.001^~1~^~A~^^^1^0.009^0.019^2^0.008^0.017^~2, 3~^~07/01/2013~ -~04639~^~665~^0.143^9^0.015^~1~^~A~^^^1^0.112^0.249^2^0.081^0.206^~2, 3~^~07/01/2015~ -~04639~^~670~^0.028^9^0.002^~1~^~A~^^^1^0.018^0.046^3^0.023^0.033^~2, 3~^~07/01/2015~ -~04639~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~04639~^~672~^0.019^9^0.000^~1~^~A~^^^1^0.017^0.021^4^0.019^0.020^~2, 3~^~07/01/2013~ -~04639~^~673~^0.054^9^0.004^~1~^~A~^^^1^0.042^0.082^2^0.038^0.070^~2, 3~^~07/01/2015~ -~04639~^~674~^8.925^9^0.111^~1~^~A~^^^1^7.890^9.455^4^8.620^9.229^~2, 3~^~07/01/2015~ -~04639~^~675~^22.153^9^0.157^~1~^~A~^^^1^19.496^23.456^4^21.725^22.582^~2, 3~^~07/01/2015~ -~04639~^~676~^0.036^9^0.001^~1~^~A~^^^1^0.000^0.077^4^0.033^0.039^~1, 2, 3~^~07/01/2013~ -~04639~^~685~^0.139^9^0.018^~1~^~A~^^^1^0.098^0.255^2^0.064^0.213^~2, 3~^~07/01/2015~ -~04639~^~687~^0.026^9^0.000^~1~^~A~^^^1^0.021^0.028^4^0.024^0.027^~2, 3~^~07/01/2013~ -~04639~^~689~^0.004^9^0.001^~1~^~AS~^^^1^0.000^0.009^4^0.001^0.007^~2, 3~^~07/01/2013~ -~04639~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04639~^~695~^0.143^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04639~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~851~^3.276^9^0.035^~1~^~A~^^^1^2.734^3.615^4^3.178^3.375^~2, 3~^~07/01/2015~ -~04639~^~852~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^4^-0.001^0.002^~1, 2, 3~^~07/01/2013~ -~04639~^~853~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~07/01/2013~ -~04639~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~04639~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~04640~^~312~^0.162^3^0.011^~1~^~A~^^^1^0.140^0.175^2^0.115^0.209^~2, 3~^~02/01/2003~ -~04640~^~315~^0.053^3^0.006^~1~^~A~^^^1^0.043^0.064^2^0.026^0.079^~2, 3~^~02/01/2003~ -~04640~^~404~^0.022^3^0.012^~1~^~A~^^^1^0.009^0.047^2^-0.031^0.075^~2, 3~^~02/01/2003~ -~04640~^~405~^0.027^3^0.013^~1~^~A~^^^1^0.011^0.052^2^-0.028^0.082^~2, 3~^~02/01/2003~ -~04640~^~406~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~04640~^~410~^0.861^3^0.033^~1~^~A~^^^1^0.807^0.919^2^0.721^1.001^~2, 3~^~02/01/2003~ -~04640~^~415~^0.029^3^0.008^~1~^~A~^^^1^0.016^0.043^2^-0.004^0.063^~2, 3~^~02/01/2003~ -~04640~^~605~^0.059^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~606~^1.250^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~612~^0.013^2^^~1~^~A~^^^1^0.013^0.014^1^^^^~12/01/2007~ -~04640~^~613~^0.793^2^^~1~^~A~^^^1^0.729^0.857^1^^^^~12/01/2007~ -~04640~^~614~^0.377^2^^~1~^~A~^^^1^0.314^0.440^1^^^^~12/01/2007~ -~04640~^~615~^0.034^2^^~1~^~A~^^^1^0.027^0.042^1^^^^~12/01/2007~ -~04640~^~617~^2.725^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~04640~^~618~^3.685^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~04640~^~619~^0.527^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~04640~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~624~^0.028^2^^~1~^~A~^^^1^0.028^0.029^1^^^^~12/01/2007~ -~04640~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~626~^0.013^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~04640~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~628~^0.057^2^^~1~^~A~^^^1^0.052^0.061^1^^^^~12/01/2007~ -~04640~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~645~^2.794^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~646~^4.213^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~653~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~12/01/2007~ -~04640~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~666~^0.059^2^^~1~^~A~^^^1^0.057^0.062^1^^^^~12/01/2007~ -~04640~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~04640~^~673~^0.013^2^^~1~^~A~^^^1^0.010^0.015^1^^^^~12/01/2007~ -~04640~^~674~^2.725^2^^~1~^~A~^^^1^1.817^3.633^1^^^^~12/01/2007~ -~04640~^~675~^3.626^2^^~1~^~A~^^^1^3.191^4.061^1^^^^~12/01/2007~ -~04640~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~04640~^~851~^0.527^2^^~1~^~A~^^^1^0.518^0.537^1^^^^~12/01/2007~ -~04641~^~312~^0.019^12^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~315~^0.007^12^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~404~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^^^^~1, 2, 3~^~05/01/2012~ -~04641~^~405~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~406~^0.010^6^0.001^~1~^~A~^^^1^0.000^0.040^2^0.006^0.013^~1, 2, 3~^~04/01/2012~ -~04641~^~410~^0.058^4^0.013^~1~^~A~^^^1^0.037^0.080^1^-0.074^0.189^~1, 2, 3~^~04/01/2012~ -~04641~^~415~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.007^2^0.001^0.002^~1, 2, 3~^~04/01/2012~ -~04641~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~502~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~503~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~504~^0.032^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~505~^0.027^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~506~^0.011^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~508~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~509~^0.015^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~510~^0.025^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~511~^0.024^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~512~^0.009^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~513~^0.022^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~514~^0.039^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~515~^0.049^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~516~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~517~^0.015^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~518~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~04641~^~605~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~606~^3.446^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~612~^0.016^12^0.001^~1~^~A~^^^1^0.000^0.023^6^0.014^0.019^~1, 2, 3~^~04/01/2012~ -~04641~^~613~^2.336^12^0.026^~1~^~A~^^^1^2.081^2.904^5^2.270^2.403^~2, 3~^~04/01/2012~ -~04641~^~614~^0.911^12^0.012^~1~^~A~^^^1^0.767^1.251^5^0.881^0.940^~2, 3~^~04/01/2012~ -~04641~^~615~^0.065^12^0.001^~1~^~A~^^^1^0.053^0.092^5^0.062^0.069^~2, 3~^~04/01/2012~ -~04641~^~617~^4.881^12^0.050^~1~^~AS~^^^1^4.232^6.447^6^4.757^5.005^~2, 3~^~04/01/2012~ -~04641~^~618~^11.409^12^0.126^~1~^~AS~^^^1^10.242^14.081^5^11.093^11.725^~2, 3~^~04/01/2012~ -~04641~^~619~^1.554^12^0.024^~1~^~AS~^^^1^1.461^1.729^5^1.493^1.615^~2, 3~^~04/01/2012~ -~04641~^~620~^0.017^12^0.000^~1~^~A~^^^1^0.014^0.024^5^0.016^0.019^~2, 3~^~04/01/2012~ -~04641~^~621~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.006^6^0.001^0.004^~1, 2, 3~^~04/01/2012~ -~04641~^~624~^0.069^12^0.001^~1~^~A~^^^1^0.057^0.094^5^0.066^0.071^~2, 3~^~04/01/2012~ -~04641~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~626~^0.027^12^0.000^~1~^~AS~^^^1^0.023^0.034^5^0.026^0.028^~2, 3~^~04/01/2012~ -~04641~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~628~^0.076^12^0.003^~1~^~A~^^^1^0.048^0.140^10^0.069^0.083^~2, 3~^~04/01/2012~ -~04641~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~630~^0.015^12^0.001^~1~^~AS~^^^1^0.000^0.051^8^0.012^0.018^~2, 3~^~04/01/2012~ -~04641~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~645~^5.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~646~^12.993^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.006^7^0.005^0.005^~2, 3~^~04/01/2012~ -~04641~^~653~^0.020^12^0.000^~1~^~A~^^^1^0.018^0.026^7^0.019^0.021^~2, 3~^~04/01/2012~ -~04641~^~654~^0.024^12^0.000^~1~^~A~^^^1^0.019^0.036^6^0.023^0.025^~2, 3~^~04/01/2012~ -~04641~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2012~ -~04641~^~663~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.013^10^0.009^0.010^~2, 3~^~04/01/2012~ -~04641~^~664~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.007^8^0.001^0.003^~1, 2, 3~^~04/01/2012~ -~04641~^~665~^0.044^12^0.001^~1~^~A~^^^1^0.030^0.085^8^0.042^0.046^~2, 3~^~04/01/2012~ -~04641~^~670~^0.014^12^0.001^~1~^~A~^^^1^0.010^0.024^7^0.013^0.016^~2, 3~^~04/01/2012~ -~04641~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~04641~^~672~^0.010^12^0.001^~1~^~A~^^^1^0.007^0.015^6^0.009^0.012^~2, 3~^~04/01/2012~ -~04641~^~673~^0.027^12^0.000^~1~^~A~^^^1^0.023^0.033^5^0.026^0.028^~2, 3~^~04/01/2012~ -~04641~^~674~^4.871^12^0.050^~1~^~A~^^^1^4.223^6.435^6^4.747^4.995^~2, 3~^~04/01/2012~ -~04641~^~675~^11.351^12^0.125^~1~^~A~^^^1^10.200^13.986^5^11.036^11.666^~2, 3~^~04/01/2012~ -~04641~^~676~^0.013^12^0.001^~1~^~A~^^^1^0.000^0.047^8^0.011^0.015^~1, 2, 3~^~04/01/2012~ -~04641~^~685~^0.036^12^0.001^~1~^~A~^^^1^0.026^0.069^10^0.034^0.038^~2, 3~^~04/01/2012~ -~04641~^~687~^0.011^12^0.000^~1~^~A~^^^1^0.010^0.016^10^0.011^0.012^~2, 3~^~04/01/2012~ -~04641~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~04641~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~04641~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~851~^1.518^12^0.023^~1~^~A~^^^1^1.434^1.670^5^1.458^1.578^~2, 3~^~04/01/2012~ -~04641~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04641~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~04642~^~404~^0.000^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~405~^0.000^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~406~^0.000^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~410~^0.000^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~415~^0.000^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~ -~04642~^~605~^0.219^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~606~^9.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~612~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~613~^4.219^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~614~^3.564^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~615~^0.297^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~617~^57.029^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~04642~^~618~^28.924^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~04642~^~619~^0.037^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~04642~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~624~^0.836^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~ -~04642~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~628~^0.211^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~645~^57.334^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~646~^28.962^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~653~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~666~^0.219^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~673~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~674~^57.029^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~675~^28.705^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04642~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~695~^0.219^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~04642~^~851~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04642~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~312~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~315~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~404~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~405~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~406~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~410~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~415~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04643~^~605~^1.618^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~606~^7.615^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~611~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~612~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~613~^4.134^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~614~^2.249^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~615~^0.727^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~617~^60.754^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04643~^~618~^17.915^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04643~^~619~^6.397^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04643~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~624~^0.317^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~626~^0.218^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04643~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~628~^1.122^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~645~^62.093^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~646~^25.588^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04643~^~653~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~654~^0.200^0^^~4~^~BFZN~^~04582~^^^^^^^^^~12/01/2006~ -~04643~^~663~^0.162^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~666~^0.181^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~673~^0.218^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~674~^60.592^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~675~^17.734^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~695~^1.457^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04643~^~851~^6.397^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04643~^~856~^1.276^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~312~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~315~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~404~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~405~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~406~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~410~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~415~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~ -~04644~^~605~^1.771^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~606~^7.758^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~611~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~612~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~613~^4.191^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~614~^2.306^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~615~^0.727^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~617~^59.782^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04644~^~618~^18.762^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04644~^~619~^7.635^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04644~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~624~^0.336^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~626~^0.284^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04644~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~628~^1.083^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~645~^61.150^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~646~^26.397^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04644~^~653~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~663~^0.286^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~666~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~673~^0.284^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~674~^59.496^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~675~^18.572^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~693~^0.286^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~695~^1.485^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04644~^~851~^6.340^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04644~^~856~^1.295^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~312~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~315~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~404~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~405~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~406~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~410~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~415~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~ -~04645~^~605~^27.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~606~^10.117^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~612~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~613~^5.101^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~614~^3.831^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~615~^0.641^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~617~^70.081^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04645~^~618~^12.543^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04645~^~619~^1.495^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04645~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~624~^0.355^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~626~^0.218^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~04645~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~628~^0.777^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04645~^~645~^71.075^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~646~^14.038^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~652~^0.047^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~653~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~663~^22.789^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~666~^3.762^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~673~^0.218^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~674~^47.292^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~675~^8.781^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~693~^22.789^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~695~^4.228^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04645~^~851~^1.028^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04645~^~856~^0.466^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~312~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~315~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~404~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~405~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~406~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~410~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~415~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~501~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~502~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~503~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~504~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~505~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~506~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~507~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~508~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~509~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~510~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~511~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~512~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~513~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~514~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~515~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~516~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~517~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~518~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04646~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~606~^86.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~607~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~608~^0.750^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~609~^8.212^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~610~^5.594^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~611~^43.749^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~612~^16.760^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~613~^8.400^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~614~^2.478^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~617~^5.935^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04646~^~618~^1.657^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04646~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04646~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04646~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~645~^5.935^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~646~^1.657^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~666~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~674~^5.935^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~675~^1.657^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04646~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04646~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04646~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04648~^~605~^13.555^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~606~^17.683^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~612~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~613~^10.543^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~614~^6.175^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~615~^0.364^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~617~^41.633^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04648~^~618~^33.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04648~^~619~^1.942^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04648~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~624~^0.365^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04648~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~628~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~645~^41.929^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~646~^35.638^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04648~^~653~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~663~^10.013^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~666~^2.867^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~673~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~674~^31.620^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~675~^30.153^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~693~^10.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~695~^3.543^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04648~^~851~^1.942^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04648~^~856~^0.676^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04649~^~605~^12.574^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~606~^18.358^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~612~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~613~^10.714^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~614~^6.709^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~615~^0.354^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~617~^38.603^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04649~^~618~^34.829^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04649~^~619~^2.485^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04649~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~624~^0.355^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~626~^0.104^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04649~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~628~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~645~^38.870^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~646~^38.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04649~^~653~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~663~^9.289^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~666~^2.591^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~673~^0.104^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~674~^29.315^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~675~^32.239^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~693~^9.289^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~695~^3.285^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04649~^~851~^2.485^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04649~^~856~^0.695^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~312~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~404~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~405~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~406~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~410~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~415~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~501~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~502~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~503~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~504~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~505~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~506~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~507~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~508~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~509~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~510~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~511~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~512~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~513~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~514~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~515~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~516~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~517~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~518~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~ -~04650~^~605~^0.124^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~606~^15.340^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~612~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~613~^10.410^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~614~^4.041^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~615~^0.335^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~617~^21.541^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04650~^~618~^51.296^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04650~^~619~^6.912^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04650~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~624~^0.355^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~626~^0.123^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04650~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~628~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~645~^21.701^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~646~^58.208^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~653~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04650~^~666~^0.124^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~673~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~674~^21.541^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~675~^51.172^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~695~^0.124^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04650~^~851~^6.912^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04650~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04651~^~605~^12.927^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~606~^18.101^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~612~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~613~^10.970^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~614~^6.156^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~615~^0.402^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~617~^39.928^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04651~^~618~^34.563^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04651~^~619~^1.733^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04651~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~624~^0.403^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~626~^0.104^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04651~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~628~^0.230^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~645~^40.262^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~646~^36.847^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04651~^~653~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~663~^9.603^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~666~^2.771^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~673~^0.104^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~674~^30.324^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~675~^31.791^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~693~^9.603^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~695~^3.324^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04651~^~851~^1.733^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04651~^~856~^0.552^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04652~^~605~^34.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~606~^24.750^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~612~^0.104^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~613~^11.178^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~614~^12.589^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~615~^0.354^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~617~^61.125^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04652~^~618~^8.591^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04652~^~619~^0.209^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04652~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~624~^0.365^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~626~^0.085^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04652~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~628~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~645~^61.248^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~646~^9.295^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04652~^~653~^0.124^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~663~^29.638^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~666~^4.029^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~673~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~674~^31.487^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~675~^4.562^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~693~^29.638^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~695~^4.524^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04652~^~851~^0.209^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04652~^~856~^0.495^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04653~^~605~^10.755^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~606~^15.341^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~612~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~613~^10.154^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~614~^4.346^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~615~^0.325^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~617~^34.535^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04653~^~618~^40.953^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04653~^~619~^3.837^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04653~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~624~^0.336^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04653~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~645~^34.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~646~^45.228^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04653~^~653~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~663~^8.308^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~666~^2.010^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~673~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~674~^26.228^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~675~^38.944^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~693~^8.308^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~695~^2.447^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04653~^~851~^3.837^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04653~^~856~^0.438^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~312~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~404~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~405~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~406~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~410~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~415~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~501~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~502~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~503~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~504~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~505~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~506~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~507~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~508~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~509~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~510~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~511~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~512~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~513~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~514~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~515~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~516~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~517~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~518~^0.000^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~ -~04654~^~605~^30.809^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~606~^25.883^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~611~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~612~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~613~^13.017^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~614~^11.770^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~615~^0.354^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~617~^59.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04654~^~618~^9.610^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04654~^~619~^0.162^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04654~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~624~^0.365^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~626~^0.076^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04654~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~628~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~645~^59.133^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~646~^10.305^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04654~^~653~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~663~^27.285^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~666~^2.991^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~673~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~674~^31.734^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~675~^6.619^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~693~^27.285^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~695~^3.524^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04654~^~851~^0.162^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04654~^~856~^0.533^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04655~^~312~^0.000^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~404~^0.000^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~405~^0.000^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~406~^0.000^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~415~^0.000^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~ -~04655~^~605~^19.068^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~606~^22.869^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~611~^0.033^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04655~^~612~^0.147^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~613~^9.296^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~614~^12.754^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~615~^0.265^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~617~^37.189^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04655~^~618~^6.755^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04655~^~619~^0.757^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04655~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~624~^0.239^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~626~^0.054^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04655~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04655~^~645~^37.243^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~646~^7.512^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~652~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~653~^0.101^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~663~^17.539^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~666~^1.265^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~673~^0.054^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~674~^19.650^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~675~^5.491^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~693~^17.539^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~695~^1.528^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04655~^~851~^0.493^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04655~^~856~^0.264^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04656~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04656~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~606~^87.558^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~607~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~608~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~609~^2.493^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~610~^3.109^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~611~^53.428^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~612~^18.921^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~613~^7.472^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~614~^1.866^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~615~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~617~^5.406^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04656~^~618~^0.834^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04656~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~645~^5.406^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~646~^0.834^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04656~^~674~^5.406^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~675~^0.834^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04656~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04656~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04657~^~605~^0.257^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~606~^93.701^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~607~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~608~^0.321^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~609~^3.873^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~610~^3.125^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~611~^42.515^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~612~^14.782^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~613~^8.173^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~614~^20.585^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~615~^0.258^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~617~^0.257^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04657~^~618~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04657~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~645~^0.257^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~663~^0.257^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04657~^~674~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~675~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04657~^~693~^0.257^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04657~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04658~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~606~^92.614^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~607~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~608~^0.258^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~609~^3.260^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~610~^3.157^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~611~^48.445^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~612~^16.205^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~613~^7.696^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~614~^13.477^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~615~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~617~^1.271^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04658~^~618~^0.037^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04658~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~645~^1.271^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~646~^0.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~674~^1.271^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04658~^~675~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04658~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04658~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~404~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~405~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~406~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~410~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~415~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~501~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~502~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~503~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~504~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~505~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~506~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~507~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~508~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~509~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~510~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~511~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~512~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~513~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~514~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~515~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~516~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~517~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~518~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04659~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~606~^86.503^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~607~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~608~^0.752^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~609~^7.889^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~610~^5.596^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~611~^44.482^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~612~^16.659^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~613~^8.182^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~614~^2.843^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~615~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~617~^5.681^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04659~^~618~^1.450^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04659~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~645~^5.681^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~646~^1.450^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04659~^~674~^5.681^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~675~^1.450^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04659~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04659~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04660~^~605~^3.680^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~606~^88.965^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~607~^0.073^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~608~^0.325^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~609~^3.895^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~610~^3.322^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~611~^45.314^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~612~^13.916^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~613~^7.353^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~614~^14.561^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~615~^0.207^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~617~^4.934^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04660~^~618~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04660~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~645~^4.934^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~663~^3.680^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~674~^1.254^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04660~^~675~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04660~^~693~^3.680^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04660~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~404~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~405~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~406~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~410~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~415~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~501~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~502~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~503~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~504~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~505~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~506~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~507~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~508~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~509~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~510~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~511~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~512~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~513~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~514~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~515~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~516~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~517~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~518~^0.000^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~ -~04661~^~605~^0.267^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~606~^93.536^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~607~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~608~^0.634^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~609~^7.574^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~610~^5.539^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~611~^44.216^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~612~^16.411^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~613~^8.561^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~614~^10.397^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~615~^0.144^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~617~^0.267^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04661~^~618~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04661~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~645~^0.267^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~663~^0.267^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04661~^~674~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~675~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04661~^~693~^0.267^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04661~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04662~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~606~^71.444^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~607~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~608~^0.236^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~609~^2.682^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~610~^1.999^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~611~^23.231^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~612~^7.423^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~613~^29.450^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~614~^6.080^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~615~^0.300^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~617~^19.702^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04662~^~618~^3.247^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04662~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~645~^19.702^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~646~^3.247^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04662~^~674~^19.702^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~675~^3.247^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04662~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04662~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~404~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~405~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~406~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~410~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~415~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~501~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~502~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~503~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~504~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~505~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~506~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~507~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~508~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~509~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~510~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~511~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~512~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~513~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~514~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~515~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~516~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~517~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~518~^0.000^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~ -~04663~^~605~^4.658^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~606~^88.209^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~607~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~608~^0.318^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~609~^3.760^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~610~^3.291^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~611~^44.702^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~612~^14.094^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~613~^7.664^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~614~^14.319^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~617~^5.705^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04663~^~618~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04663~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~645~^5.705^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~663~^4.658^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~674~^1.047^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04663~^~675~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04663~^~693~^4.658^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04663~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~312~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~404~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~405~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~406~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~410~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~415~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~501~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~502~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~503~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~504~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~505~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~506~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~507~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~508~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~509~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~510~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~511~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~512~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~513~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~514~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~515~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~516~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~517~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~518~^0.000^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~ -~04664~^~605~^31.228^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~606~^28.421^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~611~^0.056^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~612~^0.254^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~613~^15.833^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~614~^11.503^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~615~^0.354^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~617~^59.477^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04664~^~618~^6.610^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04664~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04664~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~624~^0.279^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~626~^0.104^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~04664~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~628~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~645~^59.715^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~646~^7.095^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~653~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~663~^28.343^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~666~^2.400^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~673~^0.104^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~674~^31.134^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~675~^4.210^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04664~^~693~^28.343^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~695~^2.886^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~04664~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~04664~^~856~^0.486^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~04665~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~404~^0.022^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~405~^0.081^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~406~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~410~^0.187^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~415~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~04665~^~605~^24.747^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~606~^20.442^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~611~^0.052^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~612~^0.121^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~613~^9.604^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~614~^9.959^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~615~^0.284^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~617~^46.631^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~04665~^~618~^8.478^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~04665~^~619~^0.786^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~04665~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~624~^0.277^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~626~^0.061^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~04665~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~645~^46.692^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~646~^9.265^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~652~^0.038^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04665~^~653~^0.107^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~663~^21.554^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~666~^2.719^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~673~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~674~^25.077^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~675~^5.759^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~693~^21.554^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~695~^3.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~04665~^~851~^0.313^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04665~^~856~^0.473^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~312~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~404~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~405~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~406~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~410~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~415~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04666~^~605~^13.784^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~606~^17.416^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~612~^0.075^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~613~^10.439^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~614~^6.090^1^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~04666~^~615~^0.392^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~617~^40.490^0^^~1~^~AS~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~618~^33.715^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04666~^~619~^2.323^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04666~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~624~^0.288^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~626~^0.133^0^^~1~^~AS~^~04554~^^^^^^^^^~05/01/2010~ -~04666~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~628~^0.201^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~645~^40.824^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~646~^36.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~652~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04666~^~653~^0.095^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~663~^9.746^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~666~^3.343^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~673~^0.133^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~674~^30.744^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~675~^30.372^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~693~^9.746^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~695~^4.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04666~^~851~^1.628^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04666~^~856~^0.695^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~312~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~404~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~405~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~406~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~410~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~415~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~501~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~502~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~503~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~504~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~505~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~506~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~507~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~508~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~509~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~510~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~511~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~512~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~513~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~514~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~515~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~516~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~517~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~518~^0.000^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~ -~04667~^~605~^42.851^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~606~^18.788^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~612~^0.094^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~613~^10.638^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~614~^7.281^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~615~^0.316^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~617~^70.967^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04667~^~618~^5.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04667~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04667~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~624~^0.346^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~626~^0.057^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04667~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~645~^71.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~646~^5.400^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~653~^0.114^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~663~^40.118^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~666~^2.333^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~673~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~674~^30.848^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~675~^2.667^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04667~^~693~^40.118^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~695~^2.733^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04667~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04667~^~856~^0.400^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~404~^0.012^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~405~^0.000^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~406~^0.003^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~410~^0.000^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~415~^0.000^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~ -~04668~^~605~^20.578^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~606~^16.321^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~611~^0.179^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~612~^0.106^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~613~^8.912^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~614~^6.465^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~615~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~617~^37.323^0^^~1~^~AS~^^^^^^^^^^~01/01/2008~ -~04668~^~618~^19.665^0^^~1~^~AS~^^^^^^^^^^~01/01/2008~ -~04668~^~619~^2.757^0^^~1~^~AS~^^^^^^^^^^~01/01/2008~ -~04668~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~624~^0.269^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~626~^0.053^0^^~1~^~AS~^^^^^^^^^^~01/01/2008~ -~04668~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~628~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~645~^37.460^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~646~^22.422^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~652~^0.038^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~04668~^~653~^0.091^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~663~^18.970^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~666~^1.265^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~673~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~674~^18.353^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~675~^18.400^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~693~^18.970^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~695~^1.608^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~04668~^~851~^2.414^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04668~^~856~^0.343^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04669~^~312~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~404~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~405~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~406~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~410~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~415~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~501~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~502~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~503~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~504~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~505~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~506~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~507~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~508~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~509~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~510~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~511~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~512~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~513~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~514~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~515~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~516~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~517~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~518~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~ -~04669~^~605~^0.678^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~606~^15.251^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~612~^0.041^3^0.025^~1~^~A~^^^1^0.000^0.085^2^-0.065^0.146^~1, 4~^~04/01/2004~ -~04669~^~613~^10.657^3^0.095^~1~^~A~^^^1^10.514^10.837^2^10.248^11.065^~4~^~04/01/2004~ -~04669~^~614~^4.003^3^0.161^~1~^~A~^^^1^3.707^4.260^2^3.311^4.694^~4~^~04/01/2004~ -~04669~^~615~^0.242^3^0.103^~1~^~A~^^^1^0.037^0.354^2^-0.199^0.683^~1, 4~^~04/01/2004~ -~04669~^~617~^22.571^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04669~^~618~^50.299^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04669~^~619~^7.034^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~04669~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~624~^0.262^3^0.113^~1~^~A~^^^1^0.037^0.394^2^-0.224^0.748^~1, 4~^~04/01/2004~ -~04669~^~626~^0.025^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~ -~04669~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~628~^0.131^3^0.047^~1~^~A~^^^1^0.037^0.182^2^-0.071^0.332^~1, 4~^~04/01/2004~ -~04669~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~645~^22.727^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~646~^57.333^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~653~^0.047^3^0.031^~1~^~A~^^^1^0.000^0.105^2^-0.084^0.179^~1, 4~^~04/01/2004~ -~04669~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2004~ -~04669~^~666~^0.181^3^0.143^~1~^~A~^^^1^0.037^0.468^2^-0.436^0.798^~1, 4~^~04/01/2004~ -~04669~^~673~^0.025^3^0.012^~1~^~A~^^^1^0.000^0.037^2^-0.029^0.078^~1, 4~^~04/01/2004~ -~04669~^~674~^22.571^3^0.484^~1~^~A~^^^1^21.826^23.480^2^20.487^24.656^~4~^~04/01/2004~ -~04669~^~675~^50.118^3^0.539^~1~^~A~^^^1^49.430^51.182^2^47.797^52.439^~4~^~04/01/2004~ -~04669~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~695~^0.678^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~04669~^~851~^6.537^3^0.314^~1~^~A~^^^1^5.921^6.950^2^5.187^7.887^~4~^~04/01/2004~ -~04669~^~856~^0.497^3^0.209^~1~^~A~^^^1^0.200^0.902^2^-0.404^1.399^~4~^~04/01/2004~ -~04673~^~605~^0.425^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~606~^16.690^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~609~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~01/01/2009~ -~04673~^~610~^0.064^2^^~1~^~A~^^^1^0.060^0.068^1^^^^~01/01/2009~ -~04673~^~611~^0.071^2^^~1~^~A~^^^1^0.067^0.075^1^^^^~01/01/2009~ -~04673~^~612~^0.293^2^^~1~^~A~^^^1^0.281^0.306^1^^^^~01/01/2009~ -~04673~^~613~^13.550^2^^~1~^~A~^^^1^13.544^13.557^1^^^^~01/01/2009~ -~04673~^~614~^2.241^2^^~1~^~A~^^^1^2.204^2.279^1^^^^~01/01/2009~ -~04673~^~615~^0.233^2^^~1~^~A~^^^1^0.229^0.237^1^^^^~01/01/2009~ -~04673~^~617~^25.912^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~618~^14.238^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~619~^3.555^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~624~^0.114^2^^~1~^~A~^^^1^0.113^0.116^1^^^^~01/01/2009~ -~04673~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~626~^0.085^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~628~^0.147^2^^~1~^~A~^^^1^0.135^0.158^1^^^^~01/01/2009~ -~04673~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~645~^26.207^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~646~^17.822^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~652~^0.017^2^^~1~^~A~^^^1^0.017^0.017^^^^^~01/01/2009~ -~04673~^~653~^0.041^2^^~1~^~A~^^^1^0.041^0.042^1^^^^~01/01/2009~ -~04673~^~654~^0.063^2^^~1~^~A~^^^1^0.057^0.068^1^^^^~01/01/2009~ -~04673~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~663~^0.162^2^^~1~^~A~^^^1^0.111^0.213^1^^^^~01/01/2009~ -~04673~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~665~^0.263^2^^~1~^~A~^^^1^0.225^0.301^1^^^^~01/01/2009~ -~04673~^~670~^0.027^2^^~1~^~A~^^^1^0.025^0.028^1^^^^~01/01/2009~ -~04673~^~671~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^^~01/01/2009~ -~04673~^~672~^0.017^2^^~1~^~A~^^^1^0.015^0.019^1^^^^~01/01/2009~ -~04673~^~673~^0.085^2^^~1~^~A~^^^1^0.085^0.085^^^^^~01/01/2009~ -~04673~^~674~^25.750^2^^~1~^~A~^^^1^25.322^26.178^1^^^^~01/01/2009~ -~04673~^~675~^13.949^2^^~1~^~A~^^^1^13.899^13.998^1^^^^~01/01/2009~ -~04673~^~676~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~01/01/2009~ -~04673~^~685~^0.171^2^^~1~^~A~^^^1^0.156^0.185^1^^^^~01/01/2009~ -~04673~^~687~^0.022^2^^~1~^~A~^^^1^0.020^0.024^1^^^^~01/01/2009~ -~04673~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04673~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~695~^0.263^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04673~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~851~^3.385^2^^~1~^~A~^^^1^3.345^3.424^1^^^^~01/01/2009~ -~04673~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04673~^~853~^0.012^2^^~1~^~A~^^^1^0.011^0.014^1^^^^~01/01/2009~ -~04673~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04674~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~605~^0.611^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~606~^10.087^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~607~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.004^0.005^~1, 2, 3~^~03/01/2007~ -~04674~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~609~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.004^0.005^~1, 2, 3~^~03/01/2007~ -~04674~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~611~^0.077^3^0.006^~1~^~A~^^^1^0.065^0.087^2^0.050^0.105^~2, 3~^~03/01/2007~ -~04674~^~612~^0.188^3^0.002^~1~^~A~^^^1^0.184^0.193^2^0.177^0.198^~2, 3~^~03/01/2007~ -~04674~^~613~^8.043^3^0.178^~1~^~A~^^^1^7.688^8.235^2^7.279^8.807^~2, 3~^~03/01/2007~ -~04674~^~614~^1.499^3^0.046^~1~^~A~^^^1^1.410^1.565^2^1.300^1.698^~2, 3~^~03/01/2007~ -~04674~^~615~^0.146^3^0.019^~1~^~A~^^^1^0.108^0.168^2^0.064^0.228^~2, 3~^~03/01/2007~ -~04674~^~617~^13.494^3^0.349^~1~^~AS~^^^1^12.797^13.879^2^11.992^14.996^~2, 3~^~03/01/2007~ -~04674~^~618~^8.318^3^0.319^~1~^~AS~^^^1^7.774^8.880^2^6.944^9.692^~2, 3~^~03/01/2007~ -~04674~^~619~^1.304^3^0.087^~1~^~AS~^^^1^1.175^1.469^2^0.930^1.678^~2, 3~^~03/01/2007~ -~04674~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~624~^0.080^3^0.005^~1~^~A~^^^1^0.070^0.088^2^0.057^0.103^~2, 3~^~03/01/2007~ -~04674~^~626~^0.063^3^0.006^~1~^~AS~^^^1^0.050^0.069^2^0.036^0.089^~2, 3~^~03/01/2007~ -~04674~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~628~^0.122^3^0.002^~1~^~A~^^^1^0.118^0.124^2^0.113^0.130^~2, 3~^~03/01/2007~ -~04674~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~630~^0.007^3^0.007^~1~^~AS~^^^1^0.000^0.021^2^-0.023^0.037^~2, 3~^~03/01/2007~ -~04674~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04674~^~645~^13.699^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~646~^9.651^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~652~^0.009^3^0.004^~1~^~A~^^^1^0.005^0.017^2^-0.009^0.026^~1, 2, 3~^~03/01/2007~ -~04674~^~653~^0.035^3^0.002^~1~^~A~^^^1^0.032^0.038^2^0.027^0.042^~2, 3~^~03/01/2007~ -~04674~^~654~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~04674~^~663~^0.281^3^0.043^~1~^~A~^^^1^0.234^0.366^2^0.098^0.464^~2, 3~^~03/01/2007~ -~04674~^~666~^0.143^3^0.019^~1~^~A~^^^1^0.115^0.179^2^0.062^0.224^~2, 3~^~03/01/2007~ -~04674~^~672~^0.029^3^0.006^~1~^~A~^^^1^0.017^0.035^2^0.004^0.054^~2, 3~^~03/01/2007~ -~04674~^~673~^0.063^3^0.006^~1~^~A~^^^1^0.050^0.069^2^0.036^0.089^~2, 3~^~03/01/2007~ -~04674~^~674~^13.213^3^0.330^~1~^~A~^^^1^12.554^13.572^2^11.793^14.633^~2, 3~^~03/01/2007~ -~04674~^~675~^8.175^3^0.307^~1~^~A~^^^1^7.638^8.701^2^6.855^9.495^~2, 3~^~03/01/2007~ -~04674~^~676~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.023^0.037^~1, 2, 3~^~03/01/2007~ -~04674~^~687~^0.014^3^0.005^~1~^~A~^^^1^0.005^0.021^2^-0.006^0.033^~1, 2, 3~^~03/01/2007~ -~04674~^~693~^0.281^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~695~^0.330^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04674~^~851~^1.116^3^0.076^~1~^~A~^^^1^1.023^1.267^2^0.790^1.443^~2, 3~^~03/01/2007~ -~04674~^~856~^0.187^3^0.018^~1~^~A~^^^1^0.152^0.208^2^0.110^0.265^~2, 3~^~03/01/2007~ -~04675~^~605~^2.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~606~^2.220^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~645~^7.600^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04675~^~646~^3.980^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~605~^0.040^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~606~^0.310^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~645~^0.470^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04676~^~646~^1.180^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~04677~^~605~^0.377^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~606~^19.830^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~609~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 2, 3~^~01/01/2009~ -~04677~^~610~^0.104^3^0.013^~1~^~A~^^^1^0.080^0.122^2^0.050^0.158^~2, 3~^~01/01/2009~ -~04677~^~611~^0.093^3^0.005^~1~^~A~^^^1^0.085^0.102^2^0.071^0.114^~2, 3~^~01/01/2009~ -~04677~^~612~^0.665^3^0.003^~1~^~A~^^^1^0.661^0.672^2^0.650^0.680^~2, 3~^~01/01/2009~ -~04677~^~613~^15.959^3^0.194^~1~^~A~^^^1^15.718^16.343^2^15.125^16.794^~2, 3~^~01/01/2009~ -~04677~^~614~^2.441^3^0.019^~1~^~A~^^^1^2.414^2.478^2^2.359^2.523^~2, 3~^~01/01/2009~ -~04677~^~615~^0.245^3^0.006^~1~^~A~^^^1^0.234^0.251^2^0.221^0.269^~2, 3~^~01/01/2009~ -~04677~^~617~^24.451^3^0.359^~1~^~AS~^^^1^24.063^25.168^2^22.908^25.995^~2, 3~^~01/01/2009~ -~04677~^~618~^15.201^3^0.182^~1~^~AS~^^^1^14.984^15.562^2^14.418^15.983^~2, 3~^~01/01/2009~ -~04677~^~619~^2.432^3^0.109^~1~^~AS~^^^1^2.300^2.647^2^1.964^2.899^~2, 3~^~01/01/2009~ -~04677~^~620~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.028^2^0.012^0.034^~2, 3~^~01/01/2009~ -~04677~^~621~^0.322^3^0.005^~1~^~A~^^^1^0.316^0.333^2^0.299^0.345^~2, 3~^~01/01/2009~ -~04677~^~624~^0.120^3^0.004^~1~^~A~^^^1^0.112^0.124^2^0.103^0.136^~2, 3~^~01/01/2009~ -~04677~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~626~^0.471^3^0.006^~1~^~AS~^^^1^0.462^0.481^2^0.447^0.495^~2, 3~^~01/01/2009~ -~04677~^~627~^0.089^3^0.008^~1~^~A~^^^1^0.073^0.097^2^0.055^0.123^~2, 3~^~01/01/2009~ -~04677~^~628~^0.357^3^0.041^~1~^~A~^^^1^0.276^0.401^2^0.182^0.531^~2, 3~^~01/01/2009~ -~04677~^~629~^0.314^3^0.013^~1~^~A~^^^1^0.293^0.338^2^0.258^0.370^~2, 3~^~01/01/2009~ -~04677~^~630~^0.014^3^0.001^~1~^~AS~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~01/01/2009~ -~04677~^~631~^0.059^3^0.005^~1~^~A~^^^1^0.049^0.065^2^0.037^0.081^~2, 3~^~01/01/2009~ -~04677~^~645~^25.334^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~646~^18.484^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~652~^0.045^3^0.002^~1~^~A~^^^1^0.042^0.047^2^0.038^0.052^~2, 3~^~01/01/2009~ -~04677~^~653~^0.064^3^0.004^~1~^~A~^^^1^0.057^0.068^2^0.049^0.079^~2, 3~^~01/01/2009~ -~04677~^~654~^0.089^3^0.016^~1~^~A~^^^1^0.071^0.122^2^0.019^0.160^~2, 3~^~01/01/2009~ -~04677~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~663~^0.124^3^0.011^~1~^~A~^^^1^0.110^0.146^2^0.076^0.172^~2, 3~^~01/01/2009~ -~04677~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~665~^0.253^3^0.023^~1~^~A~^^^1^0.219^0.298^2^0.153^0.354^~2, 3~^~01/01/2009~ -~04677~^~670~^0.030^3^0.009^~1~^~A~^^^1^0.012^0.040^2^-0.009^0.070^~2, 3~^~01/01/2009~ -~04677~^~671~^0.011^3^0.011^~1~^~A~^^^1^0.000^0.034^2^-0.037^0.060^~1, 2, 3~^~01/01/2009~ -~04677~^~672~^0.021^3^0.005^~1~^~A~^^^1^0.011^0.027^2^-0.001^0.044^~2, 3~^~01/01/2009~ -~04677~^~673~^0.471^3^0.006^~1~^~A~^^^1^0.462^0.481^2^0.447^0.495^~2, 3~^~01/01/2009~ -~04677~^~674~^24.327^3^0.365^~1~^~A~^^^1^23.947^25.058^2^22.755^25.900^~2, 3~^~01/01/2009~ -~04677~^~675~^14.917^3^0.207^~1~^~A~^^^1^14.702^15.331^2^14.026^15.808^~2, 3~^~01/01/2009~ -~04677~^~676~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~01/01/2009~ -~04677~^~685~^0.046^3^0.039^~1~^~A~^^^1^0.005^0.124^2^-0.122^0.214^~2, 3~^~01/01/2009~ -~04677~^~687~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.034^~2, 3~^~01/01/2009~ -~04677~^~689~^0.017^3^0.002^~1~^~AS~^^^1^0.014^0.021^2^0.007^0.026^~2, 3~^~01/01/2009~ -~04677~^~693~^0.124^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~695~^0.253^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04677~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04677~^~851~^2.386^3^0.070^~1~^~A~^^^1^2.291^2.523^2^2.083^2.688^~2, 3~^~01/01/2009~ -~04677~^~852~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.006^0.017^~1, 2, 3~^~01/01/2009~ -~04677~^~853~^0.011^3^0.005^~1~^~A~^^^1^0.005^0.021^2^-0.010^0.032^~2, 3~^~01/01/2009~ -~04677~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~04678~^~404~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~405~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~406~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~04678~^~605~^0.767^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~606~^6.511^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~04678~^~612~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~613~^3.437^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~614~^1.918^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~615~^0.674^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~617~^69.970^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~04678~^~618~^14.501^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~04678~^~619~^2.597^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~04678~^~624~^0.290^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~626~^0.286^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~04678~^~628~^1.348^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~630~^0.241^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~645~^71.991^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~646~^17.098^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~654~^0.145^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~663~^0.077^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~665~^0.163^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~671~^0.145^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~673~^0.286^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~674~^69.893^175^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~675~^14.339^175^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~693~^0.077^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~695~^0.690^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~04678~^~851~^2.070^175^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04678~^~856~^0.527^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~04679~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~04679~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~04679~^~606~^5.025^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04679~^~607~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~608~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~609~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~610~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~611~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~612~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~613~^3.382^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~614~^1.642^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~617~^48.587^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~618~^14.955^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~619~^7.190^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~620~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~621~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~626~^0.168^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~627~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~628~^1.037^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~629~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~630~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~631~^0.000^0^^~4~^~BFFN~^~04582~^^^^^^^^^~05/01/2013~ -~04679~^~645~^49.792^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04679~^~646~^22.145^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04683~^~605~^3.265^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~606~^16.688^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~607~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~609~^0.016^7^0.003^~1~^~A~^^^1^0.005^0.033^6^0.009^0.024^~2, 3~^~03/01/2007~ -~04683~^~610~^0.082^7^0.004^~1~^~A~^^^1^0.069^0.099^6^0.072^0.092^~2, 3~^~03/01/2007~ -~04683~^~611~^0.064^7^0.020^~1~^~A~^^^1^0.006^0.114^6^0.015^0.112^~2, 3~^~03/01/2007~ -~04683~^~612~^0.237^7^0.063^~1~^~A~^^^1^0.050^0.385^6^0.082^0.392^~2, 3~^~03/01/2007~ -~04683~^~613~^12.268^7^1.833^~1~^~A~^^^1^6.990^16.818^6^7.782^16.753^~2, 3~^~03/01/2007~ -~04683~^~614~^3.458^7^0.427^~1~^~A~^^^1^2.489^5.008^6^2.412^4.503^~2, 3~^~03/01/2007~ -~04683~^~615~^0.246^7^0.008^~1~^~A~^^^1^0.217^0.269^6^0.226^0.266^~2, 3~^~03/01/2007~ -~04683~^~617~^24.299^7^0.481^~1~^~AS~^^^1^22.930^26.210^6^23.121^25.476^~2, 3~^~03/01/2007~ -~04683~^~618~^20.820^7^2.228^~1~^~AS~^^^1^15.385^27.182^6^15.367^26.273^~2, 3~^~03/01/2007~ -~04683~^~619~^2.939^7^0.242^~1~^~AS~^^^1^2.326^3.816^6^2.347^3.531^~2, 3~^~03/01/2007~ -~04683~^~620~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~624~^0.169^7^0.019^~1~^~A~^^^1^0.126^0.230^6^0.121^0.216^~2, 3~^~03/01/2007~ -~04683~^~625~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~626~^0.078^7^0.009^~1~^~AS~^^^1^0.050^0.100^6^0.055^0.101^~2, 3~^~03/01/2007~ -~04683~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~628~^0.340^7^0.036^~1~^~A~^^^1^0.191^0.436^6^0.253^0.427^~2, 3~^~03/01/2007~ -~04683~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~630~^0.003^7^0.001^~1~^~AS~^^^1^0.000^0.008^6^-0.001^0.006^~2, 3~^~03/01/2007~ -~04683~^~631~^0.004^7^0.002^~1~^~A~^^^1^0.000^0.009^6^0.000^0.008^~1, 2, 3~^~03/01/2007~ -~04683~^~645~^24.748^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~646~^23.794^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~652~^0.018^7^0.002^~1~^~A~^^^1^0.012^0.023^6^0.014^0.023^~2, 3~^~03/01/2007~ -~04683~^~653~^0.060^7^0.002^~1~^~A~^^^1^0.054^0.069^6^0.054^0.066^~2, 3~^~03/01/2007~ -~04683~^~654~^0.071^7^0.003^~1~^~A~^^^1^0.064^0.082^6^0.065^0.078^~2, 3~^~03/01/2007~ -~04683~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~663~^2.914^7^1.335^~1~^~A~^^^1^0.092^7.029^6^-0.352^6.180^~2, 3~^~03/01/2007~ -~04683~^~664~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~665~^0.351^7^0.035^~1~^~A~^^^1^0.278^0.523^6^0.266^0.435^~2, 3~^~03/01/2007~ -~04683~^~670~^0.037^7^0.003^~1~^~A~^^^1^0.025^0.049^6^0.031^0.044^~2, 3~^~03/01/2007~ -~04683~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~672~^0.017^7^0.001^~1~^~A~^^^1^0.015^0.020^6^0.015^0.019^~2, 3~^~03/01/2007~ -~04683~^~673~^0.078^7^0.009^~1~^~A~^^^1^0.050^0.100^6^0.055^0.101^~2, 3~^~03/01/2007~ -~04683~^~674~^21.385^7^1.777^~1~^~A~^^^1^16.000^26.108^6^17.038^25.731^~2, 3~^~03/01/2007~ -~04683~^~675~^20.432^7^2.202^~1~^~A~^^^1^15.051^26.830^6^15.044^25.820^~2, 3~^~03/01/2007~ -~04683~^~676~^0.003^7^0.001^~1~^~A~^^^1^0.000^0.008^6^-0.001^0.006^~1, 2, 3~^~03/01/2007~ -~04683~^~685~^0.014^7^0.004^~1~^~A~^^^1^0.000^0.024^6^0.005^0.023^~1, 2, 3~^~03/01/2007~ -~04683~^~687~^0.029^7^0.001^~1~^~A~^^^1^0.026^0.031^6^0.027^0.031^~2, 3~^~03/01/2007~ -~04683~^~689~^0.014^7^0.002^~1~^~AS~^^^1^0.010^0.020^6^0.010^0.017^~2, 3~^~03/01/2007~ -~04683~^~693~^2.914^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~695~^0.351^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04683~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~851~^2.925^7^0.245^~1~^~A~^^^1^2.302^3.816^6^2.325^3.525^~2, 3~^~03/01/2007~ -~04683~^~852~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04683~^~853~^0.014^7^0.002^~1~^~A~^^^1^0.010^0.020^6^0.010^0.017^~2, 3~^~03/01/2007~ -~04683~^~858~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~605~^0.303^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~606~^11.648^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~609~^0.015^4^0.004^~1~^~A~^^^1^0.006^0.025^3^0.002^0.028^~2, 3~^~03/01/2007~ -~04684~^~610~^0.046^4^0.012^~1~^~A~^^^1^0.026^0.080^3^0.009^0.083^~2, 3~^~03/01/2007~ -~04684~^~611~^1.183^4^0.052^~1~^~A~^^^1^1.037^1.268^3^1.016^1.350^~2, 3~^~03/01/2007~ -~04684~^~612~^0.572^4^0.031^~1~^~A~^^^1^0.505^0.649^3^0.474^0.670^~2, 3~^~03/01/2007~ -~04684~^~613~^7.362^4^0.085^~1~^~A~^^^1^7.112^7.498^3^7.090^7.633^~2, 3~^~03/01/2007~ -~04684~^~614~^1.812^4^0.051^~1~^~A~^^^1^1.714^1.939^3^1.650^1.975^~2, 3~^~03/01/2007~ -~04684~^~615~^0.434^4^0.008^~1~^~A~^^^1^0.422^0.456^3^0.408^0.459^~2, 3~^~03/01/2007~ -~04684~^~617~^43.641^4^0.294^~1~^~AS~^^^1^43.212^44.511^3^42.704^44.578^~2, 3~^~03/01/2007~ -~04684~^~618~^14.489^4^0.080^~1~^~AS~^^^1^14.391^14.729^3^14.234^14.745^~2, 3~^~03/01/2007~ -~04684~^~619~^6.766^4^0.189^~1~^~AS~^^^1^6.439^7.099^3^6.166^7.367^~2, 3~^~03/01/2007~ -~04684~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~621~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.006^0.011^~1, 2, 3~^~03/01/2007~ -~04684~^~624~^0.059^4^0.059^~1~^~A~^^^1^0.000^0.236^3^-0.129^0.247^~1, 2, 3~^~03/01/2007~ -~04684~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~626~^0.142^4^0.002^~1~^~AS~^^^1^0.138^0.146^3^0.136^0.148^~2, 3~^~03/01/2007~ -~04684~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~628~^1.263^4^0.056^~1~^~A~^^^1^1.190^1.426^3^1.086^1.439^~2, 3~^~03/01/2007~ -~04684~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~630~^0.033^4^0.003^~1~^~AS~^^^1^0.026^0.040^3^0.023^0.043^~2, 3~^~03/01/2007~ -~04684~^~631~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.016^~1, 2, 3~^~03/01/2007~ -~04684~^~645~^45.262^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~646~^21.344^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~652~^0.021^4^0.004^~1~^~A~^^^1^0.014^0.031^3^0.009^0.032^~2, 3~^~03/01/2007~ -~04684~^~653~^0.047^4^0.001^~1~^~A~^^^1^0.046^0.050^3^0.044^0.050^~2, 3~^~03/01/2007~ -~04684~^~654~^0.098^4^0.002^~1~^~A~^^^1^0.095^0.103^3^0.092^0.104^~2, 3~^~03/01/2007~ -~04684~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~663~^0.085^4^0.010^~1~^~A~^^^1^0.059^0.102^3^0.054^0.115^~2, 3~^~03/01/2007~ -~04684~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~665~^0.219^4^0.042^~1~^~A~^^^1^0.168^0.345^3^0.084^0.353^~2, 3~^~03/01/2007~ -~04684~^~670~^0.040^4^0.001^~1~^~A~^^^1^0.037^0.042^3^0.037^0.043^~2, 3~^~03/01/2007~ -~04684~^~671~^0.131^4^0.003^~1~^~A~^^^1^0.123^0.136^3^0.121^0.140^~2, 3~^~03/01/2007~ -~04684~^~672~^0.041^4^0.004^~1~^~A~^^^1^0.033^0.054^3^0.027^0.056^~2, 3~^~03/01/2007~ -~04684~^~673~^0.142^4^0.002^~1~^~A~^^^1^0.138^0.146^3^0.136^0.148^~2, 3~^~03/01/2007~ -~04684~^~674~^43.556^4^0.302^~1~^~A~^^^1^43.130^44.452^3^42.594^44.518^~2, 3~^~03/01/2007~ -~04684~^~675~^14.231^4^0.096^~1~^~A~^^^1^14.045^14.500^3^13.925^14.536^~2, 3~^~03/01/2007~ -~04684~^~676~^0.033^4^0.003^~1~^~A~^^^1^0.026^0.040^3^0.023^0.043^~2, 3~^~03/01/2007~ -~04684~^~685~^0.590^4^0.059^~1~^~A~^^^1^0.524^0.766^3^0.403^0.777^~2, 3~^~03/01/2007~ -~04684~^~687~^0.053^4^0.000^~1~^~A~^^^1^0.052^0.054^3^0.052^0.055^~2, 3~^~03/01/2007~ -~04684~^~689~^0.039^4^0.002^~1~^~AS~^^^1^0.033^0.043^3^0.032^0.046^~2, 3~^~03/01/2007~ -~04684~^~693~^0.085^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~695~^0.219^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04684~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~851~^6.176^4^0.230^~1~^~A~^^^1^5.673^6.575^3^5.444^6.908^~2, 3~^~03/01/2007~ -~04684~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04684~^~853~^0.039^4^0.002^~1~^~A~^^^1^0.033^0.043^3^0.032^0.046^~2, 3~^~03/01/2007~ -~04684~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~04685~^~605~^1.762^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~606~^4.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~612~^0.063^3^^~1~^~A~^^^1^0.057^0.066^^^^~2~^~03/01/2007~ -~04685~^~613~^2.983^3^^~1~^~A~^^^1^2.930^3.062^^^^~2~^~03/01/2007~ -~04685~^~614~^1.153^3^^~1~^~A~^^^1^1.144^1.163^^^^~2~^~03/01/2007~ -~04685~^~615~^0.360^3^^~1~^~A~^^^1^0.239^0.593^^^^~2~^~03/01/2007~ -~04685~^~617~^36.266^3^^~1~^~AS~^^^1^36.164^36.346^^^^~2~^~03/01/2007~ -~04685~^~618~^45.938^3^^~1~^~AS~^^^1^45.601^46.448^^^^~2~^~03/01/2007~ -~04685~^~619~^7.432^3^^~1~^~AS~^^^1^6.969^7.730^^^^~2~^~03/01/2007~ -~04685~^~624~^0.070^3^^~1~^~A~^^^1^0.000^0.125^^^^~1, 2~^~03/01/2007~ -~04685~^~626~^0.133^3^^~1~^~AS~^^^1^0.133^0.133^^^^~2~^~03/01/2007~ -~04685~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~628~^0.476^3^^~1~^~A~^^^1^0.441^0.499^^^^~2~^~03/01/2007~ -~04685~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~630~^0.141^3^^~1~^~AS~^^^1^0.106^0.163^^^^~2~^~03/01/2007~ -~04685~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~645~^37.016^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~646~^53.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~653~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~666~^0.569^3^^~1~^~A~^^^1^0.526^0.619^^^^~2~^~03/01/2007~ -~04685~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~673~^0.133^3^^~1~^~A~^^^1^0.133^0.133^^^^~2~^~03/01/2007~ -~04685~^~674~^36.266^3^^~1~^~A~^^^1^36.164^36.346^^^^~2~^~03/01/2007~ -~04685~^~675~^45.369^3^^~1~^~A~^^^1^45.039^45.829^^^^~2~^~03/01/2007~ -~04685~^~676~^0.141^3^^~1~^~A~^^^1^0.106^0.163^^^^~2~^~03/01/2007~ -~04685~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2007~ -~04685~^~695~^1.762^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~04685~^~851~^6.239^3^^~1~^~A~^^^1^6.217^6.274^^^^~2~^~03/01/2007~ -~04685~^~856~^1.193^3^^~1~^~A~^^^1^0.743^1.457^^^^~2~^~03/01/2007~ -~04686~^~312~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~315~^0.144^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~404~^0.070^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~405~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~406~^0.118^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~410~^0.071^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~415~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~605~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~606~^0.833^2^^~8~^~LC~^^^2^0.000^1.667^1^^^^~03/01/2007~ -~04686~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~613~^0.490^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~614~^0.208^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~615~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~617~^4.999^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~618~^2.220^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~619~^0.916^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~626~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~628~^0.207^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~630~^0.300^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~645~^5.573^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~646~^3.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~654~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~671~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~672~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04686~^~689~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~04687~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~404~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~605~^2.214^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~606~^4.770^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~607~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~608~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~609~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~610~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~611~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~612~^0.036^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~613~^2.736^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~614~^1.670^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~615~^0.150^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~617~^18.525^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~618~^9.724^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~619~^2.187^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~620~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~621~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~624~^0.138^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~626~^0.074^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~627~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~628~^0.269^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~629~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~630~^0.024^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~04687~^~631~^0.000^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~645~^18.932^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~646~^11.948^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~652~^0.002^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~653~^0.036^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~654~^0.003^2^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~04687~^~663~^1.836^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~665~^0.167^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~672~^0.037^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~673~^0.074^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~674~^16.689^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~675~^9.557^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~676~^0.024^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~687~^0.041^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~693~^1.836^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~695~^0.378^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~04687~^~851~^1.976^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04687~^~856~^0.211^2^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~04688~^~605~^0.139^9^0.013^~9~^~MC~^^^1^0.090^0.220^8^0.109^0.169^~4~^~12/01/2007~ -~04688~^~606~^1.643^9^0.112^~9~^~MC~^^^1^1.100^2.090^8^1.385^1.902^~4~^~12/01/2007~ -~04689~^~312~^0.016^2^^~1~^~A~^^^1^0.016^0.016^^^^~1~^~01/01/2009~ -~04689~^~315~^0.013^2^^~1~^~A~^^^1^0.011^0.015^1^^^~1~^~01/01/2009~ -~04689~^~404~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~01/01/2009~ -~04689~^~405~^0.030^2^^~1~^~A~^^^1^0.020^0.040^1^^^^~01/01/2009~ -~04689~^~406~^0.028^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~04689~^~410~^0.270^2^^~1~^~A~^^^1^0.260^0.280^1^^^^~01/01/2009~ -~04689~^~415~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~01/01/2009~ -~04689~^~605~^0.149^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~606~^3.288^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~612~^0.022^2^^~1~^~A~^^^1^0.022^0.023^1^^^^~01/01/2009~ -~04689~^~613~^2.044^2^^~1~^~A~^^^1^2.025^2.063^1^^^^~01/01/2009~ -~04689~^~614~^0.863^2^^~1~^~A~^^^1^0.846^0.881^1^^^^~01/01/2009~ -~04689~^~615~^0.167^2^^~1~^~A~^^^1^0.167^0.167^^^^^~01/01/2009~ -~04689~^~617~^15.970^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~618~^8.511^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~619~^3.188^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~620~^0.022^2^^~1~^~A~^^^1^0.021^0.023^1^^^^~01/01/2009~ -~04689~^~621~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^~1~^~01/01/2009~ -~04689~^~624~^0.102^2^^~1~^~A~^^^1^0.098^0.107^1^^^^~01/01/2009~ -~04689~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~626~^0.081^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~628~^0.533^2^^~1~^~A~^^^1^0.497^0.569^1^^^^~01/01/2009~ -~04689~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~630~^0.034^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~645~^16.662^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~646~^11.776^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~652~^0.011^2^^~1~^~A~^^^1^0.009^0.013^1^^^^~01/01/2009~ -~04689~^~653~^0.034^2^^~1~^~A~^^^1^0.034^0.034^^^^^~01/01/2009~ -~04689~^~654~^0.043^2^^~1~^~A~^^^1^0.043^0.044^1^^^^~01/01/2009~ -~04689~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~663~^0.047^2^^~1~^~A~^^^1^0.045^0.049^1^^^^~01/01/2009~ -~04689~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~665~^0.102^2^^~1~^~A~^^^1^0.089^0.115^1^^^^~01/01/2009~ -~04689~^~670~^0.028^2^^~1~^~A~^^^1^0.024^0.033^1^^^^~01/01/2009~ -~04689~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~672~^0.024^2^^~1~^~A~^^^1^0.022^0.026^1^^^^~01/01/2009~ -~04689~^~673~^0.081^2^^~1~^~A~^^^1^0.080^0.083^1^^^^~01/01/2009~ -~04689~^~674~^15.923^2^^~1~^~A~^^^1^15.512^16.335^1^^^^~01/01/2009~ -~04689~^~675~^8.381^2^^~1~^~A~^^^1^8.234^8.528^1^^^^~01/01/2009~ -~04689~^~676~^0.034^2^^~1~^~A~^^^1^0.033^0.035^1^^^^~01/01/2009~ -~04689~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~687~^0.043^2^^~1~^~A~^^^1^0.042^0.044^1^^^^~01/01/2009~ -~04689~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~04689~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~695~^0.102^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~04689~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~851~^3.188^2^^~1~^~A~^^^1^3.103^3.274^1^^^^~01/01/2009~ -~04689~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04689~^~853~^0.020^2^^~1~^~A~^^^1^0.019^0.022^1^^^^~01/01/2009~ -~04689~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~04690~^~312~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~315~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~404~^0.011^3^0.006^~1~^~A~^^^1^0.000^0.020^2^-0.015^0.036^~1, 2, 3~^~03/01/2009~ -~04690~^~405~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.015^0.025^~1, 2, 3~^~03/01/2009~ -~04690~^~406~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~410~^0.696^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~04690~^~415~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~605~^1.687^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~606~^8.637^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~607~^0.003^13^0.002^~1~^~A~^^^2^0.000^0.031^3^-0.004^0.011^~1, 2, 3~^~03/01/2009~ -~04690~^~608~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.004^3^-0.001^0.001^~1, 2, 3~^~03/01/2009~ -~04690~^~609~^0.002^13^0.001^~1~^~A~^^^2^0.000^0.011^6^-0.001^0.004^~1, 2, 3~^~03/01/2009~ -~04690~^~610~^0.018^13^0.007^~1~^~A~^^^2^0.000^0.103^3^-0.003^0.039^~1, 2, 3~^~03/01/2009~ -~04690~^~611~^0.031^13^0.010^~1~^~A~^^^2^0.000^0.087^11^0.009^0.053^~1, 2, 3~^~03/01/2009~ -~04690~^~612~^0.117^13^0.018^~1~^~A~^^^2^0.033^0.202^8^0.077^0.158^~2, 3~^~03/01/2009~ -~04690~^~613~^6.183^13^0.526^~1~^~A~^^^2^2.797^9.057^8^4.974^7.393^~2, 3~^~03/01/2009~ -~04690~^~614~^1.975^13^0.167^~1~^~A~^^^2^1.334^3.168^8^1.589^2.360^~2, 3~^~03/01/2009~ -~04690~^~615~^0.140^13^0.013^~1~^~A~^^^2^0.067^0.263^8^0.111^0.169^~2, 3~^~03/01/2009~ -~04690~^~617~^13.731^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~618~^10.740^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~619~^1.969^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~620~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~621~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~624~^0.103^13^0.008^~1~^~A~^^^2^0.057^0.162^8^0.086^0.121^~2, 3~^~03/01/2009~ -~04690~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~626~^0.052^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~627~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~628~^0.139^13^0.025^~1~^~A~^^^2^0.051^0.306^11^0.082^0.195^~2, 3~^~03/01/2009~ -~04690~^~629~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~630~^0.008^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~631~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~645~^13.958^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~646~^12.735^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~652~^0.006^13^0.001^~1~^~A~^^^2^0.000^0.017^10^0.003^0.010^~1, 2, 3~^~03/01/2009~ -~04690~^~653~^0.036^13^0.001^~1~^~A~^^^2^0.022^0.048^11^0.033^0.039^~2, 3~^~03/01/2009~ -~04690~^~654~^0.022^7^0.001^~1~^~A~^^^2^0.000^0.041^5^0.019^0.025^~1, 2, 3~^~03/01/2009~ -~04690~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~663~^1.173^13^0.245^~1~^~A~^^^2^0.071^2.760^8^0.609^1.737^~2, 3~^~03/01/2009~ -~04690~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~665~^0.186^4^0.004^~1~^~A~^^^1^0.182^0.198^3^0.174^0.199^~2, 3~^~03/01/2009~ -~04690~^~666~^0.170^9^0.011^~1~^~A~^^^1^0.115^0.215^8^0.146^0.195^~2, 3~^~03/01/2009~ -~04690~^~670~^0.012^4^0.005^~1~^~A~^^^1^0.000^0.023^3^-0.004^0.028^~1, 2, 3~^~03/01/2009~ -~04690~^~671~^0.008^4^0.005^~1~^~A~^^^1^0.000^0.021^3^-0.008^0.025^~1, 2, 3~^~03/01/2009~ -~04690~^~672~^0.021^13^0.003^~1~^~A~^^^2^0.000^0.052^9^0.014^0.028^~1, 2, 3~^~03/01/2009~ -~04690~^~673~^0.052^13^0.006^~1~^~A~^^^2^0.031^0.101^8^0.040^0.065^~2, 3~^~03/01/2009~ -~04690~^~674~^12.558^13^1.005^~1~^~A~^^^2^7.708^19.664^8^10.241^14.875^~2, 3~^~03/01/2009~ -~04690~^~675~^10.371^13^0.670^~1~^~A~^^^2^7.351^14.927^8^8.838^11.904^~2, 3~^~03/01/2009~ -~04690~^~676~^0.008^13^0.003^~1~^~A~^^^2^0.000^0.030^10^0.002^0.015^~1, 2, 3~^~03/01/2009~ -~04690~^~685~^0.058^4^0.025^~1~^~A~^^^1^0.013^0.103^3^-0.022^0.137^~2, 3~^~03/01/2009~ -~04690~^~687~^0.020^13^0.004^~1~^~A~^^^2^0.005^0.067^8^0.010^0.030^~1, 2, 3~^~03/01/2009~ -~04690~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~04690~^~693~^1.173^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~695~^0.514^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~04690~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~851~^1.754^13^0.109^~1~^~A~^^^2^1.023^2.317^8^1.504^2.003^~2, 3~^~03/01/2009~ -~04690~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04690~^~853~^0.006^4^0.003^~1~^~A~^^^1^0.000^0.012^3^-0.005^0.016^~1, 2, 3~^~03/01/2009~ -~04690~^~856~^0.157^9^0.029^~1~^~A~^^^1^0.084^0.355^8^0.090^0.224^~2, 3~^~03/01/2009~ -~04690~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~312~^0.000^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~404~^0.010^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~405~^0.037^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~406~^0.023^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~415~^0.009^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~ -~04691~^~605~^14.890^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~606~^15.189^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~612~^0.046^10^0.002^~1~^~A~^^^1^0.034^0.056^9^0.042^0.051^~2, 3~^~03/01/2009~ -~04691~^~613~^8.437^10^0.087^~1~^~A~^^^1^8.119^9.017^9^8.240^8.634^~2, 3~^~03/01/2009~ -~04691~^~614~^6.177^10^0.190^~1~^~A~^^^1^5.041^6.701^9^5.746^6.608^~2, 3~^~03/01/2009~ -~04691~^~615~^0.261^10^0.006^~1~^~A~^^^1^0.247^0.307^9^0.249^0.274^~2, 3~^~03/01/2009~ -~04691~^~617~^38.675^10^0.915^~1~^~AS~^^^1^35.603^44.681^9^36.606^40.744^~2, 3~^~03/01/2009~ -~04691~^~618~^22.252^10^0.842^~1~^~AS~^^^1^17.988^25.626^9^20.348^24.156^~2, 3~^~03/01/2009~ -~04691~^~619~^2.040^10^0.330^~1~^~AS~^^^1^0.480^2.985^9^1.294^2.786^~2, 3~^~03/01/2009~ -~04691~^~620~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~624~^0.109^9^0.036^~1~^~A~^^^1^0.000^0.247^8^0.025^0.193^~1, 2, 3~^~03/01/2009~ -~04691~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~626~^0.045^10^0.002^~1~^~AS~^^^1^0.037^0.054^9^0.041^0.049^~2, 3~^~03/01/2009~ -~04691~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~628~^0.133^10^0.008^~1~^~A~^^^1^0.095^0.170^9^0.115^0.151^~2, 3~^~03/01/2009~ -~04691~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~630~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~04691~^~631~^0.006^9^0.003^~1~^~A~^^^1^0.000^0.026^8^-0.002^0.014^~1, 2, 3~^~03/01/2009~ -~04691~^~645~^38.877^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~646~^24.302^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~652~^0.016^10^0.001^~1~^~A~^^^1^0.011^0.021^9^0.013^0.018^~2, 3~^~03/01/2009~ -~04691~^~653~^0.068^10^0.002^~1~^~A~^^^1^0.056^0.073^9^0.064^0.072^~2, 3~^~03/01/2009~ -~04691~^~654~^0.085^10^0.004^~1~^~A~^^^1^0.073^0.108^9^0.076^0.094^~2, 3~^~03/01/2009~ -~04691~^~662~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~663~^14.187^10^0.901^~1~^~A~^^^1^10.644^17.919^9^12.148^16.225^~2, 3~^~03/01/2009~ -~04691~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~665~^0.703^10^0.096^~1~^~A~^^^1^0.377^1.347^9^0.487^0.920^~2, 3~^~03/01/2009~ -~04691~^~670~^0.027^10^0.003^~1~^~A~^^^1^0.000^0.035^9^0.019^0.034^~1, 2, 3~^~03/01/2009~ -~04691~^~671~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.012^9^-0.002^0.004^~1, 2, 3~^~03/01/2009~ -~04691~^~672~^0.004^10^0.001^~1~^~A~^^^1^0.000^0.010^9^0.001^0.007^~1, 2, 3~^~03/01/2009~ -~04691~^~673~^0.045^10^0.002^~1~^~A~^^^1^0.037^0.054^9^0.041^0.049^~2, 3~^~03/01/2009~ -~04691~^~674~^24.488^10^1.033^~1~^~A~^^^1^19.962^30.235^9^22.152^26.825^~2, 3~^~03/01/2009~ -~04691~^~675~^21.522^10^0.919^~1~^~A~^^^1^16.613^25.089^9^19.444^23.600^~2, 3~^~03/01/2009~ -~04691~^~676~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~685~^0.083^10^0.018^~1~^~A~^^^1^0.000^0.148^9^0.043^0.123^~1, 2, 3~^~03/01/2009~ -~04691~^~687~^0.023^10^0.002^~1~^~A~^^^1^0.013^0.028^9^0.020^0.027^~2, 3~^~03/01/2009~ -~04691~^~689~^0.001^10^0.001^~1~^~AS~^^^1^0.000^0.008^9^-0.001^0.003^~2, 3~^~03/01/2009~ -~04691~^~693~^14.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~695~^0.703^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04691~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~851~^1.957^10^0.313^~1~^~A~^^^1^0.466^2.876^9^1.249^2.666^~2, 3~^~03/01/2009~ -~04691~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04691~^~853~^0.001^10^0.001^~1~^~A~^^^1^0.000^0.008^9^-0.001^0.003^~1, 2, 3~^~03/01/2009~ -~04691~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2009~ -~04692~^~315~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2009~ -~04692~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~04692~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2009~ -~04692~^~406~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2009~ -~04692~^~410~^0.085^2^^~1~^~A~^^^1^0.070^0.100^1^^^^~03/01/2009~ -~04692~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2009~ -~04692~^~605~^5.827^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~606~^14.224^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~609~^0.015^10^0.005^~1~^~A~^^^1^0.000^0.062^1^-0.032^0.061^~1, 2, 3~^~03/01/2009~ -~04692~^~610~^0.023^10^0.004^~1~^~A~^^^1^0.000^0.080^4^0.012^0.034^~1, 2, 3~^~03/01/2009~ -~04692~^~611~^0.433^10^0.040^~1~^~A~^^^1^0.000^1.268^1^0.117^0.749^~1, 2, 3~^~03/01/2009~ -~04692~^~612~^0.240^10^0.014^~1~^~A~^^^1^0.052^0.649^2^0.178^0.303^~2, 3~^~03/01/2009~ -~04692~^~613~^7.075^10^0.053^~1~^~A~^^^1^4.009^8.589^3^6.917^7.233^~2, 3~^~03/01/2009~ -~04692~^~614~^5.808^10^0.140^~1~^~A~^^^1^1.714^10.887^2^5.005^6.612^~2, 3~^~03/01/2009~ -~04692~^~615~^0.356^10^0.005^~1~^~A~^^^1^0.239^0.500^2^0.338^0.374^~2, 3~^~03/01/2009~ -~04692~^~617~^35.541^10^0.742^~1~^~AS~^^^1^18.610^48.263^1^29.112^41.969^~2, 3~^~03/01/2009~ -~04692~^~618~^21.656^10^0.880^~1~^~AS~^^^1^11.177^33.620^1^11.500^31.812^~2, 3~^~03/01/2009~ -~04692~^~619~^5.031^10^0.236^~1~^~AS~^^^1^2.555^7.099^2^3.641^6.421^~2, 3~^~03/01/2009~ -~04692~^~620~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~621~^0.003^10^0.001^~1~^~A~^^^1^0.000^0.011^4^0.001^0.005^~1, 2, 3~^~03/01/2009~ -~04692~^~624~^0.105^10^0.035^~1~^~A~^^^1^0.000^0.255^2^-0.116^0.326^~1, 2, 3~^~03/01/2009~ -~04692~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~626~^0.088^10^0.001^~1~^~AS~^^^1^0.048^0.146^3^0.084^0.091^~2, 3~^~03/01/2009~ -~04692~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~628~^0.682^10^0.042^~1~^~A~^^^1^0.226^1.426^2^0.466^0.897^~2, 3~^~03/01/2009~ -~04692~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~630~^0.026^10^0.008^~1~^~AS~^^^1^0.000^0.102^1^-0.069^0.120^~2, 3~^~03/01/2009~ -~04692~^~631~^0.005^10^0.002^~1~^~A~^^^1^0.000^0.015^3^0.001^0.010^~1, 2, 3~^~03/01/2009~ -~04692~^~645~^36.435^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~646~^26.741^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~652~^0.020^10^0.002^~1~^~A~^^^1^0.014^0.031^3^0.015^0.025^~2, 3~^~03/01/2009~ -~04692~^~653~^0.062^10^0.001^~1~^~A~^^^1^0.045^0.082^3^0.059^0.064^~2, 3~^~03/01/2009~ -~04692~^~654~^0.087^10^0.002^~1~^~A~^^^1^0.068^0.110^2^0.078^0.095^~2, 3~^~03/01/2009~ -~04692~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~663~^5.248^10^0.559^~1~^~A~^^^1^0.059^11.613^2^1.980^8.516^~2, 3~^~03/01/2009~ -~04692~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~665~^0.579^10^0.190^~1~^~A~^^^1^0.168^1.896^1^-1.689^2.847^~2, 3~^~03/01/2009~ -~04692~^~670~^0.040^10^0.003^~1~^~A~^^^1^0.019^0.049^2^0.018^0.061^~2, 3~^~03/01/2009~ -~04692~^~671~^0.061^10^0.001^~1~^~A~^^^1^0.000^0.136^2^0.055^0.066^~1, 2, 3~^~03/01/2009~ -~04692~^~672~^0.024^10^0.003^~1~^~A~^^^1^0.000^0.054^1^0.003^0.046^~1, 2, 3~^~03/01/2009~ -~04692~^~673~^0.088^10^0.001^~1~^~A~^^^1^0.048^0.146^3^0.084^0.091^~2, 3~^~03/01/2009~ -~04692~^~674~^30.293^10^0.247^~1~^~A~^^^1^16.900^44.452^2^29.014^31.571^~2, 3~^~03/01/2009~ -~04692~^~675~^21.038^10^1.064^~1~^~A~^^^1^10.656^33.092^1^8.379^33.697^~2, 3~^~03/01/2009~ -~04692~^~676~^0.026^10^0.008^~1~^~A~^^^1^0.000^0.102^1^-0.069^0.120^~1, 2, 3~^~03/01/2009~ -~04692~^~685~^0.354^10^0.039^~1~^~A~^^^1^0.158^0.766^2^0.166^0.542^~2, 3~^~03/01/2009~ -~04692~^~687~^0.038^10^0.000^~1~^~A~^^^1^0.029^0.054^2^0.036^0.040^~2, 3~^~03/01/2009~ -~04692~^~689~^0.021^10^0.002^~1~^~AS~^^^1^0.000^0.043^2^0.013^0.028^~2, 3~^~03/01/2009~ -~04692~^~693~^5.248^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~695~^0.579^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04692~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~851~^4.677^10^0.274^~1~^~A~^^^1^2.116^6.575^2^3.060^6.294^~2, 3~^~03/01/2009~ -~04692~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04692~^~853~^0.021^10^0.002^~1~^~A~^^^1^0.000^0.043^2^0.013^0.028^~1, 2, 3~^~03/01/2009~ -~04692~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~312~^0.008^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~404~^0.007^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~405~^0.026^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~406~^0.016^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~415~^0.006^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~ -~04693~^~605~^12.731^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~606~^10.884^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~612~^0.041^4^0.003^~1~^~A~^^^1^0.036^0.048^3^0.032^0.049^~2, 3~^~03/01/2009~ -~04693~^~613~^6.250^4^0.032^~1~^~A~^^^1^6.181^6.312^3^6.149^6.351^~2, 3~^~03/01/2009~ -~04693~^~614~^4.146^4^0.116^~1~^~A~^^^1^3.831^4.363^3^3.778^4.514^~2, 3~^~03/01/2009~ -~04693~^~615~^0.184^4^0.004^~1~^~A~^^^1^0.178^0.195^3^0.172^0.197^~2, 3~^~03/01/2009~ -~04693~^~617~^29.503^4^0.796^~1~^~AS~^^^1^28.235^31.721^3^26.969^32.037^~2, 3~^~03/01/2009~ -~04693~^~618~^14.919^4^0.432^~1~^~AS~^^^1^13.939^15.985^3^13.546^16.293^~2, 3~^~03/01/2009~ -~04693~^~619~^1.799^4^0.115^~1~^~AS~^^^1^1.512^2.074^3^1.433^2.164^~2, 3~^~03/01/2009~ -~04693~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~624~^0.139^4^0.047^~1~^~A~^^^1^0.000^0.192^3^-0.009^0.288^~1, 2, 3~^~03/01/2009~ -~04693~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~626~^0.034^4^0.001^~1~^~AS~^^^1^0.032^0.037^3^0.030^0.037^~2, 3~^~03/01/2009~ -~04693~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~628~^0.104^4^0.036^~1~^~A~^^^1^0.031^0.205^3^-0.012^0.220^~2, 3~^~03/01/2009~ -~04693~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~04693~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~645~^29.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~646~^16.718^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~652~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.001^0.023^~1, 2, 3~^~03/01/2009~ -~04693~^~653~^0.053^4^0.003^~1~^~A~^^^1^0.047^0.058^3^0.045^0.061^~2, 3~^~03/01/2009~ -~04693~^~654~^0.060^4^0.004^~1~^~A~^^^1^0.055^0.071^3^0.048^0.072^~2, 3~^~03/01/2009~ -~04693~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~663~^11.919^4^0.817^~1~^~A~^^^1^10.294^14.151^3^9.320^14.518^~2, 3~^~03/01/2009~ -~04693~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~665~^0.811^4^0.092^~1~^~A~^^^1^0.673^1.084^3^0.517^1.106^~2, 3~^~03/01/2009~ -~04693~^~670~^0.035^4^0.005^~1~^~A~^^^1^0.023^0.046^3^0.020^0.050^~2, 3~^~03/01/2009~ -~04693~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~673~^0.034^4^0.001^~1~^~A~^^^1^0.032^0.037^3^0.030^0.037^~2, 3~^~03/01/2009~ -~04693~^~674~^17.584^4^0.160^~1~^~A~^^^1^17.166^17.941^3^17.074^18.093^~2, 3~^~03/01/2009~ -~04693~^~675~^14.073^4^0.516^~1~^~A~^^^1^12.809^15.279^3^12.433^15.714^~2, 3~^~03/01/2009~ -~04693~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~685~^0.050^4^0.017^~1~^~A~^^^1^0.000^0.077^3^-0.005^0.106^~1, 2, 3~^~03/01/2009~ -~04693~^~687~^0.023^4^0.003^~1~^~A~^^^1^0.019^0.031^3^0.015^0.032^~2, 3~^~03/01/2009~ -~04693~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~04693~^~693~^11.919^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~695~^0.811^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04693~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~851~^1.748^4^0.104^~1~^~A~^^^1^1.512^2.018^3^1.418^2.079^~2, 3~^~03/01/2009~ -~04693~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04693~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~312~^0.000^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~404~^0.007^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~405~^0.026^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~406~^0.016^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~ -~04694~^~415~^3.750^4^0.710^~1~^~A~^^^1^2.700^5.800^3^1.490^6.010^~2, 3~^~03/01/2009~ -~04694~^~605~^3.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~606~^12.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~607~^0.014^16^0.006^~1~^~A~^^^1^0.000^0.059^15^0.001^0.026^~1, 2, 3~^~03/01/2009~ -~04694~^~608~^0.006^16^0.003^~1~^~A~^^^1^0.000^0.027^15^0.000^0.012^~1, 2, 3~^~03/01/2009~ -~04694~^~609~^0.009^15^0.004^~1~^~A~^^^1^0.000^0.042^14^0.001^0.017^~1, 2, 3~^~03/01/2009~ -~04694~^~610~^0.072^15^0.011^~1~^~A~^^^1^0.000^0.126^14^0.049^0.096^~1, 2, 3~^~03/01/2009~ -~04694~^~611~^0.200^15^0.079^~1~^~A~^^^1^0.000^0.700^14^0.031^0.369^~1, 2, 3~^~03/01/2009~ -~04694~^~612~^0.164^16^0.039^~1~^~A~^^^1^0.021^0.443^15^0.081^0.248^~2, 3~^~03/01/2009~ -~04694~^~613~^6.359^16^0.107^~1~^~A~^^^1^5.765^7.326^15^6.130^6.588^~2, 3~^~03/01/2009~ -~04694~^~614~^4.756^16^0.434^~1~^~A~^^^1^2.311^7.031^15^3.830^5.682^~2, 3~^~03/01/2009~ -~04694~^~615~^0.211^16^0.003^~1~^~A~^^^1^0.189^0.237^15^0.205^0.217^~2, 3~^~03/01/2009~ -~04694~^~617~^19.066^16^0.571^~1~^~AS~^^^1^16.734^23.072^15^17.849^20.284^~2, 3~^~03/01/2009~ -~04694~^~618~^23.736^16^0.620^~1~^~AS~^^^1^20.401^27.561^15^22.414^25.059^~2, 3~^~03/01/2009~ -~04694~^~619~^2.715^16^0.263^~1~^~AS~^^^1^1.084^3.910^15^2.155^3.274^~2, 3~^~03/01/2009~ -~04694~^~620~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~624~^0.156^16^0.018^~1~^~A~^^^1^0.000^0.212^15^0.118^0.194^~1, 2, 3~^~03/01/2009~ -~04694~^~625~^0.002^16^0.001^~1~^~A~^^^1^0.000^0.011^15^0.000^0.003^~1, 2, 3~^~03/01/2009~ -~04694~^~626~^0.054^16^0.001^~1~^~AS~^^^1^0.045^0.061^15^0.052^0.056^~2, 3~^~03/01/2009~ -~04694~^~627~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~628~^0.194^16^0.013^~1~^~A~^^^1^0.080^0.248^15^0.166^0.222^~2, 3~^~03/01/2009~ -~04694~^~629~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~630~^0.000^16^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~04694~^~631~^0.005^15^0.002^~1~^~A~^^^1^0.000^0.018^14^0.000^0.009^~1, 2, 3~^~03/01/2009~ -~04694~^~645~^19.347^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~646~^26.477^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~652~^0.014^16^0.002^~1~^~A~^^^1^0.000^0.025^15^0.011^0.018^~1, 2, 3~^~03/01/2009~ -~04694~^~653~^0.052^16^0.003^~1~^~A~^^^1^0.037^0.076^15^0.046^0.059^~2, 3~^~03/01/2009~ -~04694~^~654~^0.072^16^0.002^~1~^~A~^^^1^0.065^0.083^15^0.069^0.075^~2, 3~^~03/01/2009~ -~04694~^~662~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~663~^3.384^16^0.857^~1~^~A~^^^1^0.060^9.223^15^1.558^5.209^~2, 3~^~03/01/2009~ -~04694~^~664~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~665~^0.280^16^0.034^~1~^~A~^^^1^0.139^0.516^15^0.207^0.352^~2, 3~^~03/01/2009~ -~04694~^~670~^0.033^16^0.002^~1~^~A~^^^1^0.016^0.055^15^0.028^0.039^~2, 3~^~03/01/2009~ -~04694~^~671~^0.008^15^0.004^~1~^~A~^^^1^0.000^0.034^14^0.000^0.016^~1, 2, 3~^~03/01/2009~ -~04694~^~672~^0.016^16^0.003^~1~^~A~^^^1^0.000^0.056^15^0.009^0.023^~1, 2, 3~^~03/01/2009~ -~04694~^~673~^0.054^16^0.001^~1~^~A~^^^1^0.045^0.061^15^0.052^0.056^~2, 3~^~03/01/2009~ -~04694~^~674~^15.683^16^0.491^~1~^~A~^^^1^13.498^19.055^15^14.636^16.729^~2, 3~^~03/01/2009~ -~04694~^~675~^23.423^16^0.616^~1~^~A~^^^1^20.027^27.048^15^22.111^24.735^~2, 3~^~03/01/2009~ -~04694~^~676~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~685~^0.046^16^0.012^~1~^~A~^^^1^0.000^0.113^15^0.020^0.072^~1, 2, 3~^~03/01/2009~ -~04694~^~687~^0.024^16^0.001^~1~^~A~^^^1^0.016^0.029^15^0.021^0.026^~2, 3~^~03/01/2009~ -~04694~^~689~^0.006^16^0.002^~1~^~AS~^^^1^0.000^0.021^15^0.002^0.010^~2, 3~^~03/01/2009~ -~04694~^~693~^3.384^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~695~^0.280^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~04694~^~697~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04694~^~851~^2.669^16^0.264^~1~^~A~^^^1^0.996^3.812^15^2.106^3.231^~2, 3~^~03/01/2009~ -~04694~^~852~^0.002^16^0.001^~1~^~A~^^^1^0.000^0.011^15^0.000^0.004^~1, 2, 3~^~03/01/2009~ -~04694~^~853~^0.004^16^0.001^~1~^~A~^^^1^0.000^0.014^15^0.001^0.007^~1, 2, 3~^~03/01/2009~ -~04694~^~858~^0.000^16^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~04695~^~312~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~404~^0.007^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~405~^0.026^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~406~^0.016^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~415~^0.006^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~605~^7.374^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~606~^10.042^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~607~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~608~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~609~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~610~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~611~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~612~^0.049^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~613~^5.813^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~614~^3.622^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~617~^20.190^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~618~^21.612^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~619~^2.645^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~620~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~621~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~626~^0.048^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~627~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~628~^0.078^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~629~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~630~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~631~^0.000^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~645~^20.316^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04695~^~646~^24.686^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~ -~04696~^~312~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~404~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~405~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~406~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~415~^0.009^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~606~^15.189^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~612~^0.046^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~613~^8.431^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~614~^6.173^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~617~^38.675^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~618~^22.252^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~619~^2.040^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~626~^0.045^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~628~^0.133^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~631~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~645~^38.877^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~646~^24.302^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~662~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~663~^14.187^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~673~^0.045^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~674~^24.488^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04696~^~675~^21.522^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~ -~04697~^~312~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~404~^0.007^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~405~^0.026^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~406~^0.016^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~415~^3.750^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~606~^12.086^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~607~^0.014^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~608~^0.006^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~609~^0.009^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~610~^0.072^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~611~^0.200^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~612~^0.164^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~613~^6.359^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~614~^4.756^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~617~^19.066^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~618~^23.736^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~619~^2.715^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~620~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~621~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~626~^0.054^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~627~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~628~^0.194^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~629~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~630~^0.000^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~631~^0.005^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~645~^19.348^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04697~^~646~^26.477^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~ -~04698~^~312~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~404~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~405~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~406~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~415~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~605~^0.957^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~606~^6.787^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~607~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~608~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~609~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~610~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~611~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~612~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~613~^3.621^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~614~^2.010^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~615~^0.673^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~617~^71.775^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04698~^~618~^13.394^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04698~^~619~^2.391^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04698~^~620~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~621~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~624~^0.289^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~626~^0.191^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04698~^~627~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~628~^0.673^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~629~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~630~^0.096^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~631~^0.000^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~ -~04698~^~645~^72.734^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~646~^15.785^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~654~^0.193^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~663~^0.287^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~665~^0.478^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~673~^0.191^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~674~^71.488^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~675~^12.915^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~693~^0.287^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~695~^0.670^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04698~^~851~^2.200^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04698~^~856~^0.191^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~312~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~404~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~405~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~406~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~415~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~605~^0.670^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~606~^15.084^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~607~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~608~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~609~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~610~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~611~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~612~^0.095^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~613~^9.815^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~614~^4.308^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~615~^0.384^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~617~^21.245^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04699~^~618~^55.967^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04699~^~619~^2.965^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~04699~^~620~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~621~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~624~^0.386^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~626~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~627~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~628~^0.192^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~629~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~630~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~631~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~ -~04699~^~645~^21.438^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~646~^58.932^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~654~^0.097^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~663~^0.096^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~665~^0.287^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~674~^21.150^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~675~^55.680^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~693~^0.096^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~695~^0.574^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~04699~^~851~^2.678^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04699~^~856~^0.287^1^^~12~^~MA~^^^^^^^^^^~05/01/2010~ -~04700~^~312~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~404~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~405~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~406~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~415~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~605~^0.306^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~606~^14.853^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~607~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~608~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~609~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~610~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~611~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~612~^0.095^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~613~^10.187^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~614~^3.638^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~615~^0.288^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~617~^28.490^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04700~^~618~^50.906^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04700~^~619~^1.243^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04700~^~620~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~621~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~624~^0.366^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04700~^~627~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~628~^0.233^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~629~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~630~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~631~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04700~^~645~^28.876^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~646~^52.149^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~653~^0.096^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~654~^0.184^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~663~^0.067^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~665~^0.057^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~673~^0.095^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~674~^28.423^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~675~^50.849^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~687~^0.057^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~693~^0.067^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~695~^0.239^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04700~^~851~^1.062^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04700~^~856~^0.182^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~312~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~404~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~405~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~406~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~415~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~605~^1.148^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~606~^93.966^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~607~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~608~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~609~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~610~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~611~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~612~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~613~^10.005^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~614~^83.094^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~615~^0.384^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~617~^1.148^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04701~^~618~^0.191^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04701~^~619~^0.191^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04701~^~620~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~621~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~624~^0.386^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~626~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~627~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~628~^0.192^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~629~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~630~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~631~^0.000^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~ -~04701~^~645~^1.341^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~646~^0.383^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~654~^0.097^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~663~^0.861^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~665~^0.191^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~674~^0.287^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~693~^0.861^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~695~^0.287^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04701~^~851~^0.096^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04701~^~856~^0.096^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~312~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~404~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~405~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~406~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~415~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~605~^0.670^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04702~^~606~^93.608^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04702~^~607~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~608~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~609~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~610~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~611~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~612~^0.758^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~613~^22.965^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~614~^69.596^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~617~^0.957^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04702~^~618~^0.287^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04702~^~619~^0.200^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~620~^0.100^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~621~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~624~^0.193^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~626~^0.572^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~04702~^~627~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~628~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~629~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~630~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~631~^0.000^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~ -~04702~^~645~^1.529^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04702~^~646~^0.587^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04702~^~654~^0.097^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~663~^0.670^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~673~^0.572^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~674~^0.287^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~675~^0.287^1^^~12~^~MA~^^^^^^^^^^~06/01/2010~ -~04702~^~693~^0.670^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~04703~^~312~^0.018^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~315~^0.066^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~404~^0.039^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~405~^0.023^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~406~^0.061^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~410~^0.115^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~415~^0.017^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~606~^5.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~612~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~613~^3.391^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~614~^1.368^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~615~^0.115^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~617~^11.115^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~618~^20.121^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~619~^2.697^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~620~^0.012^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~621~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~624~^0.110^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~625~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~626~^0.062^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~628~^0.137^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~630~^0.131^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~645~^11.458^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~646~^22.839^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~671~^0.009^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04703~^~689~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~312~^0.035^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~315~^0.131^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~404~^0.024^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~405~^0.058^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~406~^0.047^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~410~^0.108^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~415~^0.022^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~605~^0.144^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~606~^6.061^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~607~^0.156^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~608~^0.093^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~609~^0.046^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~610~^0.102^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~611~^0.119^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~612~^0.400^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~613~^3.449^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~614~^1.465^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~615~^0.084^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~617~^7.980^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~618~^15.297^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~619~^1.989^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~620~^0.010^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~624~^0.079^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~625~^0.044^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~626~^0.092^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~628~^0.078^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~645~^8.207^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~646~^17.326^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04704~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~ -~04705~^~312~^0.019^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~315~^0.040^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~404~^0.031^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~405~^0.009^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~406~^0.029^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~410~^0.027^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~415~^0.040^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~606~^0.096^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~607~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~608~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~610~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~611~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~612~^0.015^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~613~^0.041^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~614~^0.020^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~617~^0.039^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~618~^0.007^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~619~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~645~^0.045^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~646~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04705~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~312~^0.040^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~315~^0.115^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~404~^0.043^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~405~^0.021^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~406~^0.151^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~410~^0.074^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~415~^0.053^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~606~^0.349^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~607~^0.017^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~608~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~609~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~610~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~611~^0.013^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~612~^0.045^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~613~^0.157^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~614~^0.068^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~615~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~617~^0.336^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~618~^0.174^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~619~^0.100^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~625~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~626~^0.009^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~628~^0.103^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~630~^0.239^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~645~^0.708^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~646~^0.287^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~654~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~671~^0.016^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~672~^0.006^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04706~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~ -~04707~^~312~^0.067^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~315~^0.141^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~605~^0.184^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~606~^9.047^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~612~^0.057^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~613~^5.058^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~614~^3.443^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~615~^0.145^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~617~^20.457^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~618~^15.782^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~619~^48.930^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~624~^0.146^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~626~^0.057^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~630~^0.029^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~645~^20.634^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~646~^64.876^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~652~^0.024^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~653~^0.057^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~654~^0.099^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~663~^0.088^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~664~^0.011^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~665~^0.085^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~670~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~671~^0.050^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~672~^0.034^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~673~^0.057^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~674~^20.369^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~675~^15.679^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~676~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~687~^0.041^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~689~^0.103^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~04707~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~04707~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~04707~^~851~^48.930^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~852~^0.077^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~853~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04707~^~858~^0.015^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~04708~^~312~^0.019^12^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~315~^0.007^12^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~404~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~405~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~406~^0.010^6^0.001^~1~^~A~^^^1^0.000^0.040^2^0.006^0.013^~1, 2, 3~^~05/01/2013~ -~04708~^~410~^0.058^4^0.013^~1~^~A~^^^1^0.037^0.080^1^-0.074^0.189^~1, 2, 3~^~05/01/2013~ -~04708~^~415~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.007^2^0.001^0.002^~1, 2, 3~^~05/01/2013~ -~04708~^~605~^0.000^0^^~8~^^^^^^^^^^^~05/01/2013~ -~04708~^~606~^5.370^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~612~^0.016^12^0.001^~1~^~A~^^^1^0.000^0.023^6^0.014^0.019^~1, 2, 3~^~05/01/2013~ -~04708~^~613~^4.377^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~614~^0.793^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~615~^0.065^12^0.001^~1~^~A~^^^1^0.053^0.092^5^0.062^0.069^~2, 3~^~05/01/2013~ -~04708~^~617~^28.953^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~618~^3.689^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~619~^0.317^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~624~^0.069^12^0.001^~1~^~A~^^^1^0.057^0.094^5^0.066^0.071^~2, 3~^~05/01/2013~ -~04708~^~626~^0.464^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~628~^0.125^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~04708~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~645~^29.542^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~646~^4.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~04708~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.006^7^0.005^0.005^~2, 3~^~05/01/2013~ -~04708~^~653~^0.020^12^0.000^~1~^~A~^^^1^0.018^0.026^7^0.019^0.021^~2, 3~^~05/01/2013~ -~04708~^~654~^0.024^12^0.000^~1~^~A~^^^1^0.019^0.036^6^0.023^0.025^~2, 3~^~05/01/2013~ -~04708~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~04708~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2013~ -~04709~^~312~^0.015^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~404~^0.010^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~405~^0.030^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~406~^0.004^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~415~^0.009^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~606~^1.484^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~607~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~608~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~609~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~610~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~611~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~612~^0.008^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~613~^1.019^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~614~^0.457^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~617~^2.276^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~618~^4.972^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~619~^0.659^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~620~^0.008^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~621~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~626~^0.011^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~627~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~628~^0.031^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~629~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~630~^0.015^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~631~^0.000^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~ -~04709~^~645~^2.335^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~04709~^~646~^5.638^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05000~^~312~^0.041^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05000~^~404~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~405~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~406~^9.634^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~415~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05000~^~501~^0.302^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~502~^0.682^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~503~^1.229^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~504~^2.356^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~505~^2.804^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~506~^0.833^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~507~^0.300^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~508~^1.152^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~509~^0.955^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~510~^1.279^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~511~^1.791^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~512~^1.027^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~513~^1.388^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~514~^1.654^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~515~^3.168^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~516~^1.187^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~517~^1.050^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~518~^0.929^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05000~^~521~^0.067^4^0.003^~1~^~A~^^^1^0.062^0.073^3^0.058^0.076^~2, 3~^~05/01/2012~ -~05000~^~606~^0.863^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~612~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~613~^0.690^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~614~^0.150^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~617~^1.194^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~618~^0.451^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~619~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~620~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~626~^0.238^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05000~^~628~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~645~^1.444^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05000~^~646~^0.490^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05001~^~312~^0.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~315~^0.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~404~^0.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~405~^0.186^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~406~^6.639^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~410~^1.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~501~^0.203^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~502~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~503~^0.906^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~504~^1.336^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~505~^1.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~506~^0.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~507~^0.246^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~508~^0.718^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~509~^0.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~510~^0.893^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~511~^1.162^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~512~^0.526^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~513~^1.068^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~514~^1.641^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~515~^2.676^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~516~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~517~^0.914^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~518~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~606~^4.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05001~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05001~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05001~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05001~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~613~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~614~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~617~^5.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~618~^2.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~626~^0.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05001~^~628~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05001~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~645~^6.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05001~^~646~^3.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~312~^0.089^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~315~^0.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~404~^0.113^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~405~^0.248^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~406~^7.083^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~410~^1.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~501~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~502~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~503~^1.137^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~504~^1.682^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~505~^1.777^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~506~^0.596^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~507~^0.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~508~^0.918^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~509~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~510~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~511~^1.407^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~512~^0.654^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~513~^1.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~514~^1.986^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~515~^3.639^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~516~^1.406^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~517~^1.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~518~^0.853^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~606~^4.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05002~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~613~^3.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~614~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~617~^6.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~618~^3.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~619~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~626~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05002~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~645~^7.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05002~^~646~^4.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~312~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~315~^0.047^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~404~^0.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~405~^0.278^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~406~^8.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~410~^1.283^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~415~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~501~^0.323^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~502~^1.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~503~^1.435^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~504~^2.103^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~505~^2.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~506~^0.757^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~507~^0.383^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~508~^1.133^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~509~^0.927^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~510~^1.401^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~511~^1.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~512~^0.831^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~513~^1.622^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~514~^2.536^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~515~^4.306^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~516~^1.756^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~517~^1.395^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~518~^1.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~606~^4.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05003~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~613~^2.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~614~^1.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~617~^5.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~618~^3.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~626~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~628~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05003~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~645~^5.990^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05003~^~646~^3.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~312~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~315~^0.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~404~^0.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~405~^0.224^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~406~^7.908^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~410~^1.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~415~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~501~^0.298^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~502~^1.111^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~503~^1.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~504~^1.955^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~505~^2.158^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~506~^0.707^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~507~^0.358^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~508~^1.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~509~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~510~^1.306^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~511~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~512~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~513~^1.552^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~514~^2.395^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~515~^3.917^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~516~^1.745^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~517~^1.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~518~^0.961^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~606~^3.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05004~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05004~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05004~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~613~^2.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~614~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~617~^4.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~618~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~626~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05004~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~645~^5.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05004~^~646~^2.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~312~^0.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~315~^0.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~404~^0.048^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~405~^0.201^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~406~^5.389^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~410~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~415~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~501~^0.273^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~502~^1.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~503~^1.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~504~^1.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~505~^1.976^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~506~^0.648^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~507~^0.327^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~508~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~509~^0.788^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~510~^1.195^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~511~^1.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~512~^0.708^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~513~^1.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~514~^2.191^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~515~^3.585^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~516~^1.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~517~^1.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~518~^0.878^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~606~^3.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05005~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~613~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~614~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~617~^3.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~618~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~626~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05005~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~645~^4.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05005~^~646~^2.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~312~^0.048^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~315~^0.019^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~404~^0.060^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~405~^0.120^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~406~^6.801^16^0.219^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~410~^0.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~502~^0.767^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~503~^0.924^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~504~^1.350^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~505~^1.509^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~506~^0.493^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~507~^0.249^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~508~^0.721^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~509~^0.597^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~510~^0.902^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~511~^1.169^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~512~^0.544^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~513~^1.089^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~514~^1.659^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~515~^2.714^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~516~^1.223^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~517~^0.911^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~518~^0.657^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05006~^~605~^0.097^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05006~^~606~^4.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05006~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05006~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05006~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~613~^3.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~614~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~617~^5.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~618~^2.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~626~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05006~^~628~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~645~^6.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05006~^~646~^3.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~312~^0.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~315~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~404~^0.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~405~^0.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~406~^7.043^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~410~^0.889^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~415~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~501~^0.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~502~^0.922^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~503~^1.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~504~^1.653^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~505~^1.765^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~506~^0.591^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~507~^0.311^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~508~^0.899^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~509~^0.732^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~510~^1.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~511~^1.378^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~512~^0.655^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~513~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~514~^1.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~515~^3.605^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~516~^1.378^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~517~^1.178^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~518~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~606~^4.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05007~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05007~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05007~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~613~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~614~^1.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~617~^6.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~618~^3.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~619~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~626~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05007~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~645~^7.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05007~^~646~^4.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~312~^0.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~315~^0.034^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~404~^0.087^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~405~^0.193^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~406~^8.992^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~410~^1.079^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~501~^0.323^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~502~^1.181^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~503~^1.439^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~504~^2.092^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~505~^2.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~506~^0.762^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~507~^0.382^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~508~^1.121^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~509~^0.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~510~^1.392^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~511~^1.766^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~512~^0.845^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~513~^1.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~514~^2.526^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~515~^4.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~516~^1.744^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~517~^1.374^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~518~^1.012^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~606~^4.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05008~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05008~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~613~^2.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~614~^0.990^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~617~^5.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~618~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~626~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05008~^~628~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~645~^5.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05008~^~646~^3.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~312~^0.066^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~315~^0.020^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~404~^0.063^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~405~^0.168^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~406~^8.487^8^0.485^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~410~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~415~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~501~^0.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~502~^1.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~503~^1.362^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~504~^1.986^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~505~^2.223^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~506~^0.726^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~507~^0.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~508~^1.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~509~^0.879^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~510~^1.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~511~^1.711^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~512~^0.802^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~513~^1.591^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~514~^2.434^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~515~^3.991^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~516~^1.764^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~517~^1.322^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~518~^0.963^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~606~^3.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05009~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05009~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05009~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~613~^2.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~614~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~617~^4.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~618~^2.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~626~^0.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05009~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~645~^5.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05009~^~646~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~312~^0.057^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~315~^0.019^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~404~^0.046^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~405~^0.148^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~406~^5.594^8^0.215^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~410~^0.667^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~415~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~501~^0.276^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~502~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~503~^1.233^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~504~^1.797^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~505~^2.011^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~506~^0.657^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~507~^0.329^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~508~^0.959^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~509~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~510~^1.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~511~^1.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~512~^0.726^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~513~^1.436^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~514~^2.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~515~^3.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~516~^1.583^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~517~^1.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~518~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~606~^3.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~613~^2.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~614~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~617~^4.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~618~^2.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~626~^0.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05010~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~645~^4.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05010~^~646~^2.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~312~^0.053^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~315~^0.019^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~404~^0.073^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~405~^0.142^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~406~^8.239^16^0.276^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~410~^1.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~415~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~501~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~502~^0.904^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~503~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~504~^1.605^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~505~^1.818^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~506~^0.592^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~507~^0.274^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~508~^0.849^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~509~^0.722^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~510~^1.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~511~^1.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~512~^0.664^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~513~^1.167^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~514~^1.907^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~515~^3.204^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~516~^1.051^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~517~^0.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~518~^0.736^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~606~^0.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~613~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~614~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~617~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~618~^0.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~626~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05011~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~645~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05011~^~646~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~312~^0.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~315~^0.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~404~^0.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~405~^0.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~406~^9.663^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~410~^1.166^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~415~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~501~^0.358^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~502~^1.289^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~503~^1.612^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~504~^2.294^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~505~^2.583^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~506~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~507~^0.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~508~^1.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~509~^1.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~510~^1.516^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~511~^1.839^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~512~^0.947^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~513~^1.663^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~514~^2.714^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~515~^4.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~516~^1.499^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~517~^1.277^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~518~^1.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~606~^2.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05012~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05012~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05012~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~613~^1.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~614~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~617~^2.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~618~^1.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~626~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05012~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~645~^3.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05012~^~646~^2.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~312~^0.067^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~315~^0.019^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~404~^0.069^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~405~^0.178^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~406~^9.173^8^0.528^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~410~^1.104^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~415~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~501~^0.338^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~502~^1.222^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~503~^1.528^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~504~^2.171^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~505~^2.458^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~506~^0.801^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~507~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~508~^1.148^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~509~^0.977^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~510~^1.435^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~511~^1.745^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~512~^0.898^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~513~^1.578^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~514~^2.578^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~515~^4.333^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~516~^1.421^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~517~^1.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~518~^0.995^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~606~^2.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~613~^1.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~614~^0.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~617~^2.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~618~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~626~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05013~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~645~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05013~^~646~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~312~^0.061^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~315~^0.019^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~404~^0.049^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~405~^0.163^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~406~^6.117^8^0.241^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~410~^0.746^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~415~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~501~^0.319^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~502~^1.153^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~503~^1.441^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~504~^2.048^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~505~^2.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~506~^0.755^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~507~^0.349^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~508~^1.083^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~509~^0.921^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~510~^1.353^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~511~^1.646^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~512~^0.847^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~513~^1.489^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~514~^2.432^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~515~^4.087^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~516~^1.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~517~^1.122^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~518~^0.939^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~606~^1.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05014~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05014~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05014~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~613~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~614~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~617~^2.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~618~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~626~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05014~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~645~^2.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05014~^~646~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~312~^0.041^24^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~315~^0.019^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~404~^0.033^16^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~405~^0.069^16^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~406~^3.987^16^0.255^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~410~^0.692^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~415~^0.090^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~501~^0.107^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~502~^0.476^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~503~^0.429^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~504~^0.783^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~505~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~506~^0.267^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~507~^0.222^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~508~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~509~^0.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~510~^0.561^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~511~^1.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~512~^0.256^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~513~^1.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~514~^1.192^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~515~^1.657^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~516~^2.127^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~517~^1.244^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~518~^0.542^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~605~^0.349^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2002~ -~05015~^~606~^9.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~611~^0.030^15^0.014^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~612~^0.270^17^0.046^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~613~^6.950^33^0.239^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~614~^1.600^33^0.092^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~617~^11.070^33^0.304^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~618~^6.220^33^0.234^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~619~^0.260^27^0.034^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~620~^0.090^10^0.026^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~621~^0.030^3^0.029^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~626~^1.910^33^0.111^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05015~^~628~^0.420^8^0.119^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~629~^0.020^6^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~631~^0.010^3^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~645~^13.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05015~^~646~^6.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~312~^0.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~315~^0.108^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~404~^0.174^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~405~^0.178^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~406~^3.342^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~410~^0.453^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~415~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~501~^0.106^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~502~^0.363^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~503~^0.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~504~^0.681^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~505~^0.509^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~506~^0.205^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~507~^0.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~508~^0.422^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~509~^0.277^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~510~^0.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~511~^0.668^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~512~^0.211^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~513~^0.661^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~514~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~515~^2.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~516~^1.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~517~^1.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~518~^0.493^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~606~^7.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05016~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~612~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~613~^5.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~614~^2.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~617~^11.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~618~^6.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~619~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~620~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~626~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~628~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05016~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~645~^12.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05016~^~646~^6.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~312~^0.079^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~315~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~404~^0.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~405~^0.165^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~406~^5.818^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~410~^0.674^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~415~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~501~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~502~^0.674^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~503~^0.629^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~504~^1.144^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~505~^1.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~506~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~507~^0.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~508~^0.672^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~509~^0.445^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~510~^0.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~511~^1.425^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~512~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~513~^1.488^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~514~^1.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~515~^2.705^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~516~^2.888^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~517~^1.822^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~518~^0.797^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~606~^11.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05017~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~612~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~613~^8.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~614~^2.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~617~^15.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~618~^8.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~619~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~626~^1.990^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~628~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05017~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~645~^18.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05017~^~646~^9.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~312~^0.064^16^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~315~^0.022^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~404~^0.036^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~405~^0.127^8^0.013^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~406~^5.581^8^0.371^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~410~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~415~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~501~^0.163^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~502~^0.727^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~503~^0.655^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~504~^1.196^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~505~^1.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~506~^0.407^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~507~^0.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~508~^0.687^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~509~^0.463^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~510~^0.857^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~511~^1.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~512~^0.391^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~513~^1.652^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~514~^1.821^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~515~^2.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~516~^3.248^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~517~^1.899^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~518~^0.828^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~606~^11.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05018~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05018~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05018~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~612~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~613~^8.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~614~^2.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~617~^13.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~618~^7.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~619~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~626~^2.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05018~^~628~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~645~^17.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05018~^~646~^8.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~312~^0.046^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~404~^0.034^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~405~^0.094^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~406~^3.756^8^0.235^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~410~^0.391^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~415~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~501~^0.122^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~502~^0.543^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~503~^0.489^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~504~^0.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~505~^0.908^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~506~^0.304^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~507~^0.253^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~508~^0.514^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~509~^0.346^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~510~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~511~^1.174^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~512~^0.292^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~513~^1.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~514~^1.361^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~515~^1.892^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~516~^2.428^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~517~^1.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~518~^0.618^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~606~^9.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05019~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~612~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~613~^7.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~614~^1.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~617~^11.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~618~^6.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~619~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~626~^1.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~628~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05019~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~645~^13.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05019~^~646~^6.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~312~^0.243^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~315~^0.149^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~404~^0.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~405~^0.987^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~406~^6.662^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~410~^3.208^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~415~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~501~^0.204^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~502~^0.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~503~^0.897^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~504~^1.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~505~^1.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~506~^0.447^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~507~^0.238^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~508~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~509~^0.587^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~510~^0.955^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~511~^1.194^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~512~^0.417^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~513~^0.877^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~514~^1.675^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~515~^2.712^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~516~^0.985^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~517~^0.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~518~^0.782^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~606~^1.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05020~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05020~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05020~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~613~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~614~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~617~^0.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~618~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~620~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~626~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05020~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~645~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05020~^~646~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~312~^0.422^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~315~^0.222^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~404~^0.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~405~^1.524^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~406~^10.987^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~410~^4.453^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~415~^0.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~501~^0.373^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~502~^1.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~503~^1.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~504~^2.601^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~505~^2.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~506~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~507~^0.437^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~508~^1.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~509~^1.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~510~^1.737^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~511~^2.159^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~512~^0.759^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~513~^1.587^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~514~^3.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~515~^5.055^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~516~^1.783^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~517~^1.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~518~^1.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~606~^3.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05021~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~613~^2.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~614~^1.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~617~^4.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~618~^2.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~620~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~626~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05021~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~645~^4.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05021~^~646~^3.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05022~^~312~^0.331^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~315~^0.199^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~404~^0.143^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~405~^1.052^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~406~^6.625^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~410~^3.274^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~415~^0.397^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~501~^0.109^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~502~^0.449^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~503~^0.504^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~504~^0.937^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~505~^0.825^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~506~^0.268^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~507~^0.168^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~508~^0.510^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~509~^0.404^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~510~^0.618^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~511~^0.677^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~512~^0.314^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~513~^0.615^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~514~^0.987^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~515~^1.296^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~516~^0.526^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~517~^0.450^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~518~^0.455^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~521~^0.019^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~605~^0.103^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~606~^1.322^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~610~^0.001^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~611~^0.000^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~612~^0.007^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~613~^0.745^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~614~^0.553^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~615~^0.003^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~617~^0.847^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~618~^0.484^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~619~^0.012^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~620~^0.297^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~621~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~624~^0.010^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~625~^0.000^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~626~^0.100^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05022~^~628~^0.015^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~629~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~630~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~631~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~645~^0.962^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~646~^0.812^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~ -~05022~^~652~^0.001^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~653~^0.002^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~672~^0.019^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~675~^0.316^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~ -~05022~^~685~^0.006^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05022~^~687~^0.000^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~689~^0.001^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~697~^0.000^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~ -~05022~^~851~^0.009^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~ -~05023~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~315~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~404~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~405~^0.231^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~406~^3.680^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~410~^0.631^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~415~^0.112^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~605~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~606~^0.529^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~612~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~613~^0.347^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~614~^0.165^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~617~^0.430^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~618~^0.246^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~619~^0.003^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05023~^~620~^0.086^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~626~^0.073^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05023~^~645~^0.512^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~646~^0.357^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~672~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05023~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05023~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~312~^0.161^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~315~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~404~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~406~^3.120^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~410~^0.468^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~415~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~605~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~606~^0.670^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~05024~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~613~^0.408^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~614~^0.238^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~617~^0.443^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~618~^0.223^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~05024~^~620~^0.104^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~626~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05024~^~645~^0.528^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~646~^0.353^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~672~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~689~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05024~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~05024~^~851~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05025~^~312~^0.346^11^0.026^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~315~^0.089^8^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~404~^0.152^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~405~^0.728^8^0.161^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~406~^4.883^3^0.349^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~410~^2.559^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~415~^0.360^6^0.020^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~501~^0.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~502~^0.704^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~503~^0.833^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~504~^1.355^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~505~^1.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~506~^0.376^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~507~^0.211^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~508~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~509~^0.557^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~510~^0.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~511~^0.997^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~512~^0.408^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~513~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~514~^1.512^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~515~^2.308^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~516~^0.863^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~517~^0.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~518~^0.627^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~606~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05025~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~612~^0.060^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~613~^1.450^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~614~^0.780^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~617~^1.980^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~618~^1.910^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~620~^0.720^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~626~^0.390^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05025~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~645~^2.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05025~^~646~^2.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~312~^0.502^8^0.013^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~315~^0.107^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~405~^0.741^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~406~^2.803^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~410~^2.654^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~501~^0.338^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~502~^1.196^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~503~^1.415^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~504~^2.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~505~^2.214^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~506~^0.638^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~507~^0.359^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~508~^1.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~509~^0.946^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~510~^1.496^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~511~^1.694^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~512~^0.693^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~513~^1.665^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~514~^2.569^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~515~^3.921^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~516~^1.466^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~517~^1.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~518~^1.065^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~606~^2.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05026~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~613~^1.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~614~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~617~^1.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~618~^1.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~620~^0.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~626~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05026~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~645~^2.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05026~^~646~^2.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05027~^~312~^0.492^4^0.102^~1~^~A~^^^1^0.373^0.798^3^0.166^0.817^~2, 3~^~02/01/2003~ -~05027~^~315~^0.255^4^0.014^~1~^~A~^^^1^0.236^0.298^3^0.209^0.301^~2, 3~^~02/01/2003~ -~05027~^~404~^0.305^4^0.006^~1~^~A~^^^1^0.290^0.315^3^0.287^0.324^~2, 3~^~02/01/2003~ -~05027~^~405~^1.778^4^0.128^~1~^~A~^^^1^1.420^2.030^3^1.370^2.185^~2, 3~^~02/01/2003~ -~05027~^~406~^9.728^4^0.333^~1~^~A~^^^1^8.770^10.300^3^8.667^10.788^~2, 3~^~02/01/2003~ -~05027~^~410~^6.233^4^0.327^~1~^~A~^^^1^5.530^6.960^3^5.192^7.273^~2, 3~^~02/01/2003~ -~05027~^~415~^0.853^4^0.036^~1~^~A~^^^1^0.756^0.930^3^0.738^0.968^~2, 3~^~02/01/2003~ -~05027~^~501~^0.176^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~502~^0.725^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~503~^0.813^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~504~^1.512^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~505~^1.332^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~506~^0.432^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~507~^0.272^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~508~^0.824^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~509~^0.653^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~510~^0.998^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~511~^1.093^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~512~^0.507^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~513~^0.993^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~514~^1.593^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~515~^2.093^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~516~^0.849^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~517~^0.726^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~518~^0.735^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05027~^~521~^0.043^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05027~^~605~^0.065^4^0.022^~1~^~A~^^^1^0.000^0.090^3^-0.004^0.134^~1, 2, 3~^~02/01/2003~ -~05027~^~606~^1.563^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05027~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05027~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2005~ -~05027~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~612~^0.012^4^0.004^~1~^~A~^^^1^0.007^0.023^3^0.000^0.024^~2, 3~^~02/01/2003~ -~05027~^~613~^0.883^4^0.214^~1~^~A~^^^1^0.591^1.508^3^0.201^1.564^~2, 3~^~02/01/2003~ -~05027~^~614~^0.659^4^0.099^~1~^~A~^^^1^0.533^0.951^3^0.345^0.973^~2, 3~^~02/01/2003~ -~05027~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~617~^1.127^4^0.330^~1~^~A~^^^1^0.653^2.070^3^0.077^2.177^~2, 3~^~02/01/2003~ -~05027~^~618~^0.475^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~05027~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~05027~^~620~^0.326^4^0.020^~1~^~A~^^^1^0.284^0.380^3^0.263^0.390^~2, 3~^~02/01/2003~ -~05027~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~624~^0.007^4^0.002^~1~^~A~^^^1^0.000^0.009^3^0.000^0.013^~1, 2, 3~^~02/01/2003~ -~05027~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~626~^0.106^4^0.026^~1~^~A~^^^1^0.070^0.180^3^0.024^0.188^~2, 3~^~02/01/2003~ -~05027~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~628~^0.016^4^0.003^~1~^~A~^^^1^0.010^0.024^3^0.006^0.026^~2, 3~^~02/01/2003~ -~05027~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05027~^~645~^1.249^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05027~^~646~^1.306^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~05027~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~653~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~02/01/2003~ -~05027~^~672~^0.005^4^0.005^~1~^~A~^^^1^0.000^0.021^3^-0.011^0.022^~1, 2, 3~^~02/01/2003~ -~05027~^~675~^0.475^4^0.028^~1~^~A~^^^1^0.412^0.547^3^0.385^0.565^~2, 3~^~02/01/2003~ -~05027~^~685~^0.006^4^0.002^~1~^~A~^^^1^0.000^0.009^3^0.000^0.012^~1, 2, 3~^~02/01/2003~ -~05027~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05027~^~851~^0.006^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.001^0.013^~1, 2, 3~^~02/01/2003~ -~05028~^~312~^0.496^4^0.041^~1~^~A~^^^1^0.394^0.569^3^0.367^0.624^~2, 3~^~02/01/2003~ -~05028~^~315~^0.359^4^0.017^~1~^~A~^^^1^0.324^0.397^3^0.303^0.414^~2, 3~^~02/01/2003~ -~05028~^~404~^0.291^4^0.004^~1~^~A~^^^1^0.282^0.298^3^0.279^0.302^~2, 3~^~02/01/2003~ -~05028~^~405~^1.993^4^0.059^~1~^~A~^^^1^1.860^2.120^3^1.804^2.181^~2, 3~^~02/01/2003~ -~05028~^~406~^11.045^4^0.522^~1~^~A~^^^1^9.680^12.200^3^9.385^12.705^~2, 3~^~02/01/2003~ -~05028~^~410~^6.668^4^0.185^~1~^~A~^^^1^6.320^7.190^3^6.079^7.256^~2, 3~^~02/01/2003~ -~05028~^~415~^0.755^4^0.052^~1~^~A~^^^1^0.661^0.904^3^0.589^0.922^~2, 3~^~02/01/2003~ -~05028~^~501~^0.248^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~502~^1.021^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~503~^1.144^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~504~^2.128^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~505~^1.875^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~506~^0.608^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~507~^0.383^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~508~^1.160^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~509~^0.919^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~510~^1.405^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~511~^1.539^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~512~^0.714^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~513~^1.398^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~514~^2.243^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~515~^2.946^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~516~^1.195^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~518~^1.035^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05028~^~521~^0.043^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05028~^~605~^0.090^4^0.032^~1~^~A~^^^1^0.000^0.150^3^-0.011^0.191^~1, 2, 3~^~02/01/2003~ -~05028~^~606~^2.060^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05028~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05028~^~610~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~02/01/2003~ -~05028~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~612~^0.013^4^0.005^~1~^~A~^^^1^0.000^0.022^3^-0.002^0.028^~1, 2, 3~^~02/01/2003~ -~05028~^~613~^1.107^4^0.158^~1~^~A~^^^1^0.763^1.513^3^0.606^1.608^~2, 3~^~02/01/2003~ -~05028~^~614~^0.923^4^0.102^~1~^~A~^^^1^0.713^1.198^3^0.599^1.247^~2, 3~^~02/01/2003~ -~05028~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~617~^1.276^4^0.164^~1~^~A~^^^1^0.930^1.706^3^0.753^1.798^~2, 3~^~02/01/2003~ -~05028~^~618~^0.719^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~05028~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~05028~^~620~^0.508^4^0.052^~1~^~A~^^^1^0.420^0.656^3^0.344^0.672^~2, 3~^~02/01/2003~ -~05028~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~624~^0.014^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.010^0.018^~2, 3~^~02/01/2003~ -~05028~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~626~^0.120^4^0.015^~1~^~A~^^^1^0.085^0.156^3^0.073^0.167^~2, 3~^~02/01/2003~ -~05028~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~628~^0.021^4^0.001^~1~^~A~^^^1^0.018^0.025^3^0.016^0.026^~2, 3~^~02/01/2003~ -~05028~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05028~^~645~^1.416^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~646~^1.988^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05028~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~672~^0.019^4^0.011^~1~^~A~^^^1^0.000^0.039^3^-0.016^0.053^~1, 2, 3~^~02/01/2003~ -~05028~^~675~^0.719^4^0.048^~1~^~A~^^^1^0.646^0.850^3^0.567^0.871^~2, 3~^~02/01/2003~ -~05028~^~685~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.017^3^-0.001^0.023^~1, 2, 3~^~02/01/2003~ -~05028~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05028~^~851~^0.012^4^0.000^~1~^~A~^^^1^0.011^0.013^3^0.011^0.013^~2, 3~^~02/01/2003~ -~05029~^~312~^0.040^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~315~^0.018^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~404~^0.059^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~405~^0.086^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~406~^8.908^16^0.351^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~410~^0.794^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~415~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~501~^0.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~502~^0.839^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~503~^1.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~504~^1.477^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~505~^1.654^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~506~^0.541^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~507~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~508~^0.788^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~509~^0.655^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~510~^0.985^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~511~^1.268^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~512~^0.597^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~513~^1.177^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~514~^1.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~515~^2.967^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~516~^1.291^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~517~^0.973^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~518~^0.714^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~606~^3.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05029~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05029~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05029~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05029~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~613~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~614~^0.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~617~^3.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~618~^2.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~620~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~626~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05029~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05029~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~645~^4.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05029~^~646~^2.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~312~^0.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~315~^0.055^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~404~^0.113^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~405~^0.147^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~406~^9.156^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~410~^0.794^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~415~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~501~^0.268^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~502~^0.963^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~503~^1.171^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~504~^1.723^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~505~^1.841^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~506~^0.616^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~507~^0.326^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~508~^0.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~509~^0.762^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~510~^1.147^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~511~^1.445^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~512~^0.682^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~513~^1.334^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~514~^2.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~515~^3.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~516~^1.466^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~517~^1.238^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~518~^0.869^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~606~^4.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05030~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~613~^2.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~614~^1.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~617~^5.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~618~^3.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~626~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05030~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~645~^6.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05030~^~646~^3.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~315~^0.026^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~404~^0.076^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~405~^0.133^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~406~^12.035^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~410~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~415~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~501~^0.344^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~502~^1.262^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~503~^1.537^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~504~^2.231^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~505~^2.487^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~506~^0.815^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~507~^0.405^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~508~^1.192^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~509~^0.991^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~510~^1.485^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~511~^1.888^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~512~^0.904^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~513~^1.745^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~514~^2.703^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~515~^4.534^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~516~^1.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~517~^1.447^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~518~^1.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~606~^3.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05031~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05031~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05031~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~613~^2.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~614~^0.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~617~^4.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~618~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~626~^0.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05031~^~628~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~645~^4.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05031~^~646~^2.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~312~^0.053^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~404~^0.060^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~405~^0.118^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~406~^11.134^8^0.611^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~410~^0.926^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~415~^0.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~501~^0.326^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~502~^1.202^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~503~^1.458^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~504~^2.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~505~^2.374^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~506~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~507~^0.385^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~508~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~509~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~510~^1.412^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~511~^1.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~512~^0.858^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~513~^1.679^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~514~^2.587^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~515~^4.254^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~516~^1.823^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~517~^1.381^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~518~^1.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~606~^3.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05032~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~613~^2.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~614~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~617~^3.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~618~^1.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~626~^0.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05032~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~645~^4.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05032~^~646~^2.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~312~^0.044^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~404~^0.041^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~405~^0.112^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~406~^6.935^8^0.274^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~410~^0.535^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~415~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~501~^0.294^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~502~^1.084^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~503~^1.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~504~^1.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~505~^2.142^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~506~^0.699^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~507~^0.347^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~508~^1.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~509~^0.848^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~510~^1.273^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~511~^1.629^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~512~^0.774^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~513~^1.509^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~514~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~515~^3.835^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~516~^1.629^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~517~^1.238^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~518~^0.919^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~606~^2.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05033~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05033~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05033~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~613~^2.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~614~^0.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~617~^3.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~618~^1.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~626~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05033~^~628~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~645~^3.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05033~^~646~^2.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~312~^0.054^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~315~^0.019^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~404~^0.061^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~405~^0.146^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~406~^5.211^16^0.178^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~410~^0.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~415~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~501~^0.185^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~502~^0.687^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~503~^0.824^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~504~^1.207^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~505~^1.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~506~^0.441^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~507~^0.224^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~508~^0.646^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~509~^0.533^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~510~^0.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~511~^1.053^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~512~^0.485^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~513~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~514~^1.488^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~515~^2.429^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~516~^1.126^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~517~^0.831^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~518~^0.591^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~606~^5.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05034~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05034~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05034~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05034~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~612~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~613~^3.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~614~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~617~^6.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~618~^3.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~619~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~626~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05034~^~628~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05034~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~645~^7.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05034~^~646~^3.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~312~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~315~^0.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~404~^0.117^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~405~^0.218^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~406~^5.607^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~410~^0.953^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~415~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~501~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~502~^0.895^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~503~^1.094^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~504~^1.605^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~505~^1.713^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~506~^0.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~507~^0.302^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~508~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~509~^0.711^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~510~^1.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~511~^1.333^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~512~^0.637^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~513~^1.226^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~514~^1.889^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~515~^3.506^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~516~^1.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~517~^1.136^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~518~^0.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~606~^4.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05035~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~613~^3.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~614~^1.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~617~^6.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~618~^3.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~619~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~626~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05035~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~645~^7.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05035~^~646~^4.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~312~^0.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~315~^0.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~404~^0.095^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~406~^6.842^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~410~^1.157^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~501~^0.308^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~502~^1.123^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~503~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~504~^1.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~505~^2.202^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~506~^0.725^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~507~^0.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~508~^1.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~509~^0.884^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~510~^1.326^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~511~^1.681^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~512~^0.804^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~513~^1.553^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~514~^2.401^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~515~^4.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~516~^1.662^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~517~^1.323^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~518~^0.968^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~606~^4.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05036~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~613~^3.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~614~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~617~^5.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~618~^3.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~619~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~626~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~05036~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05036~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~645~^6.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05036~^~646~^3.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~312~^0.077^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~315~^0.021^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~404~^0.066^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~405~^0.207^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~406~^6.359^8^0.395^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~410~^1.111^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~415~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~501~^0.289^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~502~^1.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~503~^1.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~504~^1.883^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~505~^2.105^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~506~^0.688^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~507~^0.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~508~^1.007^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~509~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~510~^1.258^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~511~^1.634^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~512~^0.759^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~513~^1.523^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~514~^2.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~515~^3.787^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~516~^1.718^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~517~^1.277^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~518~^0.918^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~606~^4.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05037~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~613~^3.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~614~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~617~^5.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~618~^3.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~626~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~628~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05037~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~645~^6.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05037~^~646~^3.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~312~^0.068^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~404~^0.050^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~405~^0.177^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~406~^4.513^8^0.190^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~410~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~415~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~501~^0.261^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~502~^0.969^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~503~^1.167^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~504~^1.705^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~505~^1.906^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~506~^0.623^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~507~^0.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~508~^0.911^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~509~^0.754^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~510~^1.139^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~511~^1.477^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~512~^0.687^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~513~^1.376^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~514~^2.095^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~515~^3.428^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~516~^1.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~517~^1.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~518~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~606~^4.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05038~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~613~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~614~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~617~^4.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~618~^2.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~626~^0.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~628~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05038~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~645~^5.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05038~^~646~^3.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~312~^0.040^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~315~^0.018^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~404~^0.068^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~405~^0.092^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~406~^10.604^16^0.443^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~410~^0.822^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~415~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~501~^0.271^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~502~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~503~^1.225^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~504~^1.741^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~505~^1.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~506~^0.642^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~507~^0.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~508~^0.921^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~509~^0.783^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~510~^1.151^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~511~^1.399^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~512~^0.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~513~^1.266^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~514~^2.068^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~515~^3.474^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~516~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~517~^0.954^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~518~^0.798^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~606~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05039~^~611~^0.000^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~612~^0.010^27^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~613~^0.280^27^0.015^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~614~^0.130^27^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~617~^0.340^27^0.019^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~618~^0.220^27^0.013^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~619~^0.010^15^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~620~^0.060^26^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~621~^0.020^12^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~626~^0.040^27^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05039~^~628~^0.010^4^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~629~^0.010^13^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05039~^~631~^0.010^13^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~645~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05039~^~646~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~312~^0.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~404~^0.073^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~405~^0.126^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~406~^13.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~410~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~415~^0.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~501~^0.383^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~502~^1.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~503~^1.732^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~504~^2.463^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~505~^2.784^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~506~^0.908^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~507~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~508~^1.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~509~^1.108^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~510~^1.628^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~511~^1.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~512~^1.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~513~^1.789^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~514~^2.922^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~515~^4.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~516~^1.611^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~517~^1.354^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~518~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~606~^1.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05040~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~613~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~614~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~617~^1.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~618~^0.990^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~626~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05040~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~645~^1.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05040~^~646~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~312~^0.050^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~315~^0.017^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~404~^0.065^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~405~^0.116^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~406~^12.421^8^0.681^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~410~^0.972^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~415~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~501~^0.361^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~502~^1.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~503~^1.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~504~^2.319^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~505~^2.626^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~506~^0.855^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~507~^0.396^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~508~^1.226^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~509~^1.043^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~510~^1.533^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~511~^1.864^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~512~^0.959^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~513~^1.686^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~514~^2.754^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~515~^4.629^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~516~^1.518^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~517~^1.271^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~518~^1.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~606~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05041~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05041~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05041~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~613~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~614~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~617~^1.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~618~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~626~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05041~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~645~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05041~^~646~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~312~^0.044^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~404~^0.042^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~405~^0.117^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~406~^7.790^8^0.311^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~410~^0.573^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~501~^0.337^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~502~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~503~^1.525^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~504~^2.167^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~505~^2.454^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~506~^0.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~507~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~508~^1.146^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~509~^0.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~510~^1.433^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~511~^1.742^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~512~^0.896^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~513~^1.576^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~514~^2.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~515~^4.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~516~^1.419^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~517~^1.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~518~^0.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~606~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~613~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~614~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~617~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~618~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~626~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05042~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~645~^1.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05042~^~646~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~312~^0.063^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~315~^0.021^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~404~^0.077^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~405~^0.184^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~406~^6.246^16^0.204^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~410~^1.249^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~501~^0.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~502~^0.848^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~503~^1.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~504~^1.507^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~505~^1.706^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~506~^0.556^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~507~^0.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~508~^0.797^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~509~^0.678^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~510~^0.996^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~511~^1.211^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~512~^0.623^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~513~^1.096^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~514~^1.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~515~^3.007^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~516~^0.986^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~517~^0.826^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~518~^0.691^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~606~^1.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05043~^~611~^0.020^17^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~612~^0.030^24^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~613~^0.740^24^0.033^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~614~^0.290^24^0.018^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~617~^1.110^24^0.053^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~618~^0.820^24^0.038^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~619~^0.040^18^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~620~^0.100^16^0.019^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~621~^0.040^9^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~626~^0.200^24^0.013^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05043~^~628~^0.010^6^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~629~^0.010^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05043~^~631~^0.020^9^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~645~^1.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05043~^~646~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~312~^0.089^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~315~^0.033^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~404~^0.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~405~^0.249^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~406~^7.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~410~^1.261^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~415~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~501~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~502~^1.221^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~503~^1.528^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~504~^2.176^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~505~^2.441^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~506~^0.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~507~^0.375^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~508~^1.156^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~509~^0.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~510~^1.438^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~511~^1.742^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~512~^0.897^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~513~^1.575^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~514~^2.568^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~515~^4.425^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~516~^1.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~517~^1.222^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~518~^1.006^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~606~^3.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05044~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~613~^2.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~614~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~617~^3.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~618~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~619~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~621~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~626~^0.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05044~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~645~^4.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05044~^~646~^2.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~312~^0.080^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~315~^0.021^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~404~^0.073^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~405~^0.227^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~406~^6.548^8^0.415^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~410~^1.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~415~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~501~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~502~^1.156^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~503~^1.445^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~504~^2.053^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~505~^2.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~506~^0.757^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~507~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~508~^1.086^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~509~^0.924^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~510~^1.357^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~511~^1.651^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~512~^0.849^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~513~^1.493^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~514~^2.439^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~515~^4.098^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~516~^1.344^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~517~^1.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~518~^0.941^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~606~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05045~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05045~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05045~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~613~^1.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~614~^0.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~617~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~618~^1.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~626~^0.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05045~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~645~^3.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05045~^~646~^2.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~312~^0.075^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~315~^0.020^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~404~^0.055^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~405~^0.202^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~406~^4.737^8^0.213^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~410~^0.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~415~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~501~^0.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~502~^1.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~503~^1.371^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~504~^1.949^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~505~^2.206^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~506~^0.719^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~507~^0.332^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~508~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~509~^0.877^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~510~^1.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~511~^1.566^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~512~^0.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~513~^1.417^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~514~^2.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~515~^3.889^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~516~^1.276^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~517~^1.068^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~518~^0.893^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~606~^2.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05046~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05046~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05046~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~613~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~614~^0.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~617~^2.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~618~^1.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~626~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05046~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~645~^3.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05046~^~646~^2.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~312~^0.029^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~315~^0.014^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~404~^0.021^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~405~^0.059^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~406~^2.041^16^0.147^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~410~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~415~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~502~^0.133^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~503~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~504~^0.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~505~^0.223^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~506~^0.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~507~^0.062^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~509~^0.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~510~^0.157^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~511~^0.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~512~^0.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~513~^0.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~514~^0.334^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~515~^0.464^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~516~^0.595^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~517~^0.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~518~^0.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~605~^0.748^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2002~ -~05047~^~606~^20.250^0^^~1~^^^^^^^^^^^~03/01/2003~ -~05047~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~611~^0.040^14^0.011^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~612~^0.600^62^0.034^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~613~^14.650^70^0.330^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~614~^4.080^70^0.139^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~617~^25.290^70^0.488^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~618~^13.260^70^0.459^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~619~^0.700^56^0.053^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~620~^0.040^5^0.026^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~621~^0.000^2^^~1~^^^^^^^^^^^~04/01/2002~ -~05047~^~626~^3.860^70^0.138^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05047~^~628~^0.730^12^0.210^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05047~^~631~^0.000^2^^~1~^^^^^^^^^^^~04/01/2002~ -~05047~^~645~^30.300^0^^~1~^^^^^^^^^^^~03/01/2003~ -~05047~^~646~^14.200^0^^~1~^^^^^^^^^^^~03/01/2003~ -~05048~^~312~^0.047^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~315~^0.018^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~404~^0.051^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~405~^0.116^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~406~^4.835^16^0.226^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~410~^0.819^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~415~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~501~^0.151^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~502~^0.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~503~^0.667^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~504~^0.995^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~505~^1.102^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~506~^0.361^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~507~^0.194^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~508~^0.536^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~509~^0.434^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~510~^0.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~511~^0.909^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~512~^0.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~513~^0.863^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~514~^1.253^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~515~^2.012^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~516~^1.091^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~517~^0.767^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~518~^0.506^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~606~^8.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05048~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~612~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~613~^6.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~614~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~617~^10.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~618~^5.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~619~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~626~^1.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05048~^~628~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05048~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~645~^12.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05048~^~646~^6.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~312~^0.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~315~^0.062^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~404~^0.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~405~^0.213^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~406~^5.837^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~410~^0.899^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~415~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~501~^0.251^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~502~^0.896^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~503~^1.092^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~504~^1.609^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~505~^1.707^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~506~^0.573^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~507~^0.306^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~508~^0.878^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~509~^0.711^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~510~^1.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~511~^1.343^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~512~^0.635^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~513~^1.239^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~514~^1.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~515~^3.542^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~516~^1.359^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~517~^1.169^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~518~^0.816^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~606~^5.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05049~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~612~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~613~^3.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~614~^1.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~617~^8.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~618~^4.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~619~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~626~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~628~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05049~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~645~^8.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05049~^~646~^5.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~312~^0.091^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~315~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~404~^0.107^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~405~^0.236^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~406~^7.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~410~^1.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~415~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~501~^0.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~502~^1.142^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~503~^1.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~504~^2.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~505~^2.221^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~506~^0.735^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~507~^0.378^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~508~^1.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~509~^0.899^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~510~^1.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~511~^1.715^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~512~^0.815^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~513~^1.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~514~^2.438^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~515~^4.284^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~516~^1.725^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~517~^1.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~518~^0.997^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~606~^5.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05050~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~613~^3.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~614~^1.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~617~^7.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~618~^4.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~619~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~626~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~628~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05050~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~645~^8.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05050~^~646~^4.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~312~^0.076^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~315~^0.022^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~404~^0.061^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~405~^0.195^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~406~^6.718^8^0.361^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~410~^1.012^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~415~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~501~^0.282^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~502~^1.059^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~503~^1.253^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~504~^1.854^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~505~^2.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~506~^0.675^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~507~^0.354^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~508~^0.996^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~509~^0.813^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~510~^1.244^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~511~^1.661^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~512~^0.738^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~513~^1.567^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~514~^2.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~515~^3.741^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~516~^1.904^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~517~^1.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~518~^0.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~606~^5.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05051~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05051~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05051~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~612~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~613~^4.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~614~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~617~^6.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~618~^4.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~621~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~626~^1.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05051~^~628~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~645~^8.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05051~^~646~^4.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~312~^0.063^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~315~^0.020^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~404~^0.043^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~405~^0.151^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~406~^4.343^8^0.309^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~410~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~415~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~501~^0.241^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~502~^0.905^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~503~^1.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~504~^1.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~505~^1.763^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~506~^0.577^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~507~^0.302^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~508~^0.852^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~509~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~510~^1.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~511~^1.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~512~^0.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~513~^1.338^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~514~^1.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~515~^3.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~516~^1.619^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~517~^1.162^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~518~^0.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~606~^5.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~613~^3.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~614~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~617~^5.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~618~^3.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~621~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~626~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05052~^~628~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~645~^7.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05052~^~646~^4.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~312~^0.060^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~315~^0.021^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~404~^0.074^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~405~^0.164^16^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~406~^6.672^16^0.315^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~410~^1.224^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~501~^0.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~502~^0.826^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~503~^1.033^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~504~^1.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~505~^1.661^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~506~^0.541^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~507~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~508~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~509~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~510~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~511~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~512~^0.607^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~513~^1.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~514~^1.743^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~515~^2.929^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~516~^0.961^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~517~^0.804^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~518~^0.673^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~606~^1.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05053~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05053~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05053~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~611~^0.030^17^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~612~^0.040^24^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~613~^1.010^24^0.050^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~614~^0.400^24^0.027^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~617~^1.530^24^0.079^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~618~^1.130^24^0.057^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~619~^0.050^18^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~620~^0.140^16^0.026^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~621~^0.060^9^0.016^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~626~^0.270^24^0.019^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05053~^~628~^0.010^6^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~629~^0.020^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~631~^0.030^9^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~645~^1.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05053~^~646~^1.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~312~^0.095^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~315~^0.047^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~404~^0.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~405~^0.253^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~406~^7.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~410~^1.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~501~^0.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~502~^1.258^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~503~^1.577^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~504~^2.251^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~505~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~506~^0.823^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~507~^0.392^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~508~^1.202^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~509~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~510~^1.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~511~^1.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~512~^0.924^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~513~^1.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~514~^2.638^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~515~^4.672^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~516~^1.464^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~517~^1.299^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~518~^1.049^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~606~^4.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05054~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~613~^2.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~614~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~617~^4.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~618~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~620~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~626~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~628~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05054~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~645~^5.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05054~^~646~^3.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~312~^0.081^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~315~^0.022^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~404~^0.068^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~405~^0.217^8^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~406~^7.069^8^0.367^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~410~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~501~^0.329^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~502~^1.191^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~503~^1.488^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~504~^2.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~505~^2.395^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~506~^0.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~507~^0.361^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~508~^1.118^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~509~^0.952^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~510~^1.398^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~511~^1.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~512~^0.875^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~513~^1.538^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~514~^2.512^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~515~^4.221^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~516~^1.385^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~517~^1.159^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~518~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~606~^3.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~05055~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~05055~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~05055~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~613~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~614~^0.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~617~^4.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~618~^2.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~619~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~620~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~626~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~05055~^~628~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~645~^4.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05055~^~646~^3.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~312~^0.071^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~315~^0.020^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~404~^0.047^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~405~^0.173^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~406~^4.556^8^0.388^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~410~^0.836^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~415~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~501~^0.296^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~502~^1.069^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~503~^1.336^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~504~^1.899^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~505~^2.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~506~^0.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~507~^0.324^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~508~^1.004^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~509~^0.854^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~510~^1.255^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~511~^1.526^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~512~^0.786^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~513~^1.381^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~514~^2.255^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~515~^3.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~516~^1.243^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~517~^1.041^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~518~^0.871^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~606~^3.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05056~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05056~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05056~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~613~^2.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~614~^0.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~617~^3.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~618~^2.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~626~^0.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05056~^~628~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~645~^4.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05056~^~646~^2.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~312~^0.039^24^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~315~^0.018^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~404~^0.063^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~405~^0.085^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~406~^9.908^16^0.427^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~410~^0.804^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~415~^0.530^11^0.019^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~501~^0.237^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~502~^0.869^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~503~^1.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~504~^1.534^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~505~^1.725^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~506~^0.563^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~507~^0.274^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~508~^0.816^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~509~^0.684^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~510~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~511~^1.289^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~512~^0.625^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~513~^1.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~514~^1.859^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~515~^3.076^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~516~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~517~^0.954^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~518~^0.729^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~605~^0.105^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~ -~05057~^~606~^2.660^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05057~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05057~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~613~^1.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~614~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~617~^3.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~618~^1.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~620~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~626~^0.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05057~^~628~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05057~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05057~^~645~^3.820^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05057~^~646~^1.960^0^^~1~^^^^^^^^^^^~09/01/2002~ -~05058~^~312~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~315~^0.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~404~^0.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~405~^0.146^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~406~^10.523^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~410~^0.823^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~415~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~501~^0.285^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~502~^1.022^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~503~^1.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~504~^1.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~505~^1.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~506~^0.657^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~507~^0.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~508~^0.991^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~509~^0.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~510~^1.216^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~511~^1.515^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~512~^0.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~513~^1.391^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~514~^2.158^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~515~^3.942^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~516~^1.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~517~^1.255^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~518~^0.908^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~606~^3.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05058~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05058~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05058~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~613~^2.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~614~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~617~^4.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~618~^2.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~620~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~626~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05058~^~628~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~645~^5.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05058~^~646~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~312~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~315~^0.026^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~404~^0.082^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~405~^0.131^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~406~^13.742^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~410~^1.001^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~415~^0.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~501~^0.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~502~^1.327^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~503~^1.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~504~^2.353^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~505~^2.634^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~506~^0.862^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~507~^0.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~508~^1.253^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~509~^1.049^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~510~^1.562^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~511~^1.954^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~512~^0.959^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~513~^1.792^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~514~^2.828^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~515~^4.763^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~516~^1.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~517~^1.446^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~518~^1.114^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~606~^2.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05059~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~613~^1.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~614~^0.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~617~^3.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~618~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~626~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05059~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~645~^3.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05059~^~646~^1.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~312~^0.050^17^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~404~^0.066^9^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~405~^0.119^9^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~406~^12.710^9^0.574^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~410~^0.936^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~415~^0.560^11^0.018^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~501~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~502~^1.244^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~503~^1.525^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~504~^2.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~505~^2.473^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~506~^0.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~507~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~508~^1.169^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~509~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~510~^1.461^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~511~^1.837^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~512~^0.897^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~513~^1.688^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~514~^2.657^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~515~^4.404^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~516~^1.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~517~^1.347^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~518~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~606~^2.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05060~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05060~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05060~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~613~^1.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~614~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~617~^2.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~618~^1.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~626~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2005~ -~05060~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~645~^3.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05060~^~646~^1.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~312~^0.044^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~404~^0.041^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~405~^0.115^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~406~^7.807^8^0.308^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~410~^0.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~415~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~501~^0.312^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~502~^1.143^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~503~^1.401^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~504~^2.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~505~^2.272^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~506~^0.741^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~507~^0.359^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~508~^1.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~509~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~510~^1.342^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~511~^1.689^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~512~^0.824^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~513~^1.552^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~514~^2.441^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~515~^4.046^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~516~^1.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~517~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~518~^0.956^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~606~^2.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~613~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~614~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~617~^2.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~618~^1.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~620~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~626~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05061~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~645~^2.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05061~^~646~^1.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05062~^~312~^0.037^6^0.003^~1~^~A~^^^1^0.025^0.049^5^0.028^0.045^~1, 2, 3~^~04/01/2013~ -~05062~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~1, 2, 3~^~04/01/2013~ -~05062~^~404~^0.094^3^0.011^~1~^~A~^^^1^0.073^0.112^2^0.046^0.143^~2, 3~^~04/01/2013~ -~05062~^~405~^0.177^3^0.012^~1~^~A~^^^1^0.160^0.200^2^0.125^0.228^~2, 3~^~04/01/2013~ -~05062~^~406~^9.600^3^0.656^~1~^~A~^^^1^8.300^10.400^2^6.779^12.421^~2, 3~^~04/01/2013~ -~05062~^~410~^1.495^2^^~1~^~A~^^^1^1.330^1.660^1^^^^~04/01/2013~ -~05062~^~415~^0.811^3^0.045^~1~^~A~^^^1^0.763^0.901^2^0.616^1.005^~2, 3~^~04/01/2013~ -~05062~^~501~^0.283^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~502~^1.009^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~503~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~504~^1.861^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~505~^2.163^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~506~^0.585^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~507~^0.236^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~508~^0.908^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~509~^0.810^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~510~^1.165^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~511~^1.521^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~512~^0.839^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~513~^1.313^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~514~^2.116^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~515~^3.333^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~516~^0.996^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~517~^0.715^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~518~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05062~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~606~^0.563^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~610~^0.017^6^0.002^~1~^~A~^^^1^0.010^0.020^5^0.013^0.021^~2, 3~^~04/01/2013~ -~05062~^~611~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.008^5^0.002^0.007^~1, 2, 3~^~04/01/2013~ -~05062~^~612~^0.011^6^0.001^~1~^~A~^^^1^0.006^0.014^5^0.008^0.014^~2, 3~^~04/01/2013~ -~05062~^~613~^0.393^6^0.048^~1~^~A~^^^1^0.225^0.552^5^0.271^0.515^~2, 3~^~04/01/2013~ -~05062~^~614~^0.129^6^0.013^~1~^~A~^^^1^0.086^0.171^5^0.096^0.163^~2, 3~^~04/01/2013~ -~05062~^~615~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~05062~^~617~^0.590^6^0.069^~1~^~AS~^^^1^0.328^0.813^5^0.413^0.767^~2, 3~^~04/01/2013~ -~05062~^~618~^0.319^6^0.036^~1~^~AS~^^^1^0.189^0.436^5^0.226^0.411^~2, 3~^~04/01/2013~ -~05062~^~619~^0.013^6^0.001^~1~^~AS~^^^1^0.010^0.017^5^0.011^0.016^~2, 3~^~04/01/2013~ -~05062~^~620~^0.048^6^0.003^~1~^~A~^^^1^0.042^0.059^5^0.040^0.056^~2, 3~^~04/01/2013~ -~05062~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2013~ -~05062~^~624~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05062~^~625~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 2, 3~^~04/01/2009~ -~05062~^~626~^0.083^6^0.012^~1~^~AS~^^^1^0.039^0.120^5^0.054^0.113^~2, 3~^~04/01/2013~ -~05062~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~628~^0.010^6^0.001^~1~^~A~^^^1^0.005^0.013^5^0.007^0.013^~2, 3~^~04/01/2013~ -~05062~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2013~ -~05062~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~05062~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.005^0.007^~2, 3~^~04/01/2013~ -~05062~^~645~^0.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~646~^0.424^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~05062~^~653~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~05062~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~663~^0.006^6^0.001^~1~^~A~^^^1^0.001^0.009^5^0.003^0.009^~1, 2, 3~^~04/01/2009~ -~05062~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~665~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~05062~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~05062~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~672~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~04/01/2013~ -~05062~^~673~^0.083^6^0.012^~1~^~A~^^^1^0.039^0.120^5^0.054^0.113^~2, 3~^~04/01/2013~ -~05062~^~674~^0.583^6^0.068^~1~^~A~^^^1^0.327^0.807^5^0.408^0.759^~2, 3~^~04/01/2013~ -~05062~^~675~^0.317^6^0.036^~1~^~A~^^^1^0.189^0.434^5^0.225^0.410^~2, 3~^~04/01/2013~ -~05062~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~687~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.005^~1, 2, 3~^~04/01/2013~ -~05062~^~689~^0.012^6^0.001^~1~^~AS~^^^1^0.009^0.014^5^0.010^0.014^~2, 3~^~04/01/2013~ -~05062~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05062~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~851~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.017^5^0.011^0.016^~2, 3~^~04/01/2013~ -~05062~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05062~^~853~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.010^0.014^~2, 3~^~04/01/2013~ -~05062~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05062~^~858~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.016^5^0.011^0.016^~2, 3~^~04/01/2013~ -~05063~^~312~^0.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~404~^0.079^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~405~^0.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~406~^14.782^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~410~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~415~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~501~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~502~^1.412^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~503~^1.765^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~504~^2.509^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~505~^2.836^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~506~^0.925^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~507~^0.428^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~508~^1.328^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~509~^1.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~510~^1.659^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~511~^2.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~512~^1.037^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~513~^1.823^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~514~^2.976^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~515~^5.024^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~516~^1.641^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~517~^1.381^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~518~^1.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~606~^1.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~613~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~614~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~617~^1.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~618~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~626~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05063~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~645~^1.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05063~^~646~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~312~^0.049^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~315~^0.017^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~404~^0.070^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~405~^0.114^8^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~406~^13.712^8^0.701^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~410~^0.965^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~415~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~501~^0.362^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~502~^1.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~503~^1.638^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~504~^2.328^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~505~^2.635^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~506~^0.859^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~507~^0.397^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~508~^1.231^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~509~^1.047^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~510~^1.539^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~511~^1.871^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~512~^0.963^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~513~^1.692^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~514~^2.764^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~515~^4.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~516~^1.524^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~517~^1.275^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~518~^1.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~606~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~613~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~614~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~617~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~618~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~620~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~626~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05064~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~645~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05064~^~646~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~312~^0.043^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~404~^0.042^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~405~^0.119^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~406~^8.469^8^0.316^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~410~^0.573^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~501~^0.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~502~^1.224^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~503~^1.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~504~^2.175^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~505~^2.462^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~506~^0.802^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~507~^0.371^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~508~^1.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~509~^0.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~510~^1.437^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~511~^1.748^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~512~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~513~^1.581^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~514~^2.583^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~515~^4.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~516~^1.424^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~517~^1.192^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~518~^0.997^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~606~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05065~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05065~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05065~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~613~^0.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~614~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~617~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~618~^0.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~620~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~626~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05065~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~645~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05065~^~646~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05066~^~312~^0.062^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~404~^0.083^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~405~^0.195^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~406~^4.841^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~410~^1.034^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~415~^0.345^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~501~^0.196^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~502~^0.835^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~503~^0.838^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~504~^1.501^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~505~^1.657^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~506~^0.502^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~507~^0.207^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~508~^0.710^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~509~^0.661^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~510~^0.862^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~511~^1.264^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~512~^0.527^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~513~^1.094^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~514~^1.747^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~515~^2.902^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~516~^0.936^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~517~^0.776^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~518~^0.749^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~605~^0.047^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05066~^~606~^2.459^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05066~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~612~^0.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~613~^1.884^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~614~^0.485^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~617~^3.116^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~618~^1.695^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~619~^0.088^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~620~^0.099^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~626~^0.535^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~627~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~628~^0.041^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~645~^3.719^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05066~^~646~^1.965^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05066~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~653~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~663~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~665~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~670~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~672~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05066~^~673~^0.531^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~674~^3.086^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~675~^1.671^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~685~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~687~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~689~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~693~^0.034^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05066~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05066~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~851~^0.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05066~^~853~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05066~^~858~^0.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05067~^~312~^0.076^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~315~^0.052^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~404~^0.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~405~^0.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~406~^5.096^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~410~^1.007^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~415~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~501~^0.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~502~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~503~^1.108^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~504~^1.618^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~505~^1.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~506~^0.581^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~507~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~508~^0.877^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~509~^0.719^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~510~^1.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~511~^1.336^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~512~^0.646^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~513~^1.226^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~514~^1.905^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~515~^3.496^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~516~^1.287^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~517~^1.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~518~^0.803^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~606~^4.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05067~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~613~^2.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~614~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~617~^5.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~618~^3.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~619~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~626~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~628~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05067~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~645~^6.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05067~^~646~^3.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~312~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~315~^0.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~404~^0.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~405~^0.225^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~406~^6.037^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~410~^1.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~501~^0.307^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~502~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~503~^1.371^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~504~^1.983^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~505~^2.214^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~506~^0.725^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~507~^0.356^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~508~^1.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~509~^0.882^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~510~^1.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~511~^1.663^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~512~^0.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~513~^1.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~514~^2.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~515~^4.027^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~516~^1.592^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~517~^1.255^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~518~^0.948^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~606~^3.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05068~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~613~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~614~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~617~^4.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~618~^2.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~626~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05068~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~645~^5.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05068~^~646~^3.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05069~^~312~^0.071^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~404~^0.093^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~405~^0.203^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~406~^5.403^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~410~^1.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~415~^0.383^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~501~^0.251^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~502~^1.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~503~^1.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~504~^1.931^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~505~^2.131^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~506~^0.645^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~508~^0.914^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~509~^0.851^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~510~^1.110^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~511~^1.632^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~512~^0.679^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~513~^1.415^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~514~^2.250^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~515~^3.737^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~516~^1.230^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~517~^1.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~518~^0.966^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~605~^0.055^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~606~^2.740^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~608~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~612~^0.055^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~613~^2.091^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~614~^0.545^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~617~^3.454^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~618~^1.802^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~619~^0.086^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~620~^0.104^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~626~^0.619^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~628~^0.050^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~645~^4.155^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~646~^2.083^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~652~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~653~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~662~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~663~^0.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~665~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~670~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~672~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~673~^0.613^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~674~^3.421^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~675~^1.775^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~685~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~687~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~689~^0.027^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05069~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05069~^~851~^0.080^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~853~^0.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05069~^~858~^0.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05070~^~312~^0.071^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~404~^0.050^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~405~^0.190^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~406~^4.204^8^0.216^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~410~^0.858^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~415~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~501~^0.286^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~502~^1.051^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~503~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~504~^1.855^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~505~^2.082^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~506~^0.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~507~^0.335^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~508~^0.988^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~509~^0.824^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~510~^1.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~511~^1.573^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~512~^0.753^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~513~^1.454^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~514~^2.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~515~^3.722^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~516~^1.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~517~^1.184^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~518~^0.888^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~606~^2.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05070~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05070~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05070~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~613~^2.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~614~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~617~^3.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~618~^2.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~626~^0.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05070~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~645~^4.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05070~^~646~^2.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05071~^~312~^0.066^6^0.003^~1~^~A~^^^2^0.061^0.076^2^0.052^0.080^~2, 3~^~02/01/2013~ -~05071~^~315~^0.014^6^0.000^~1~^~A~^^^2^0.006^0.019^4^0.013^0.015^~2, 3~^~02/01/2013~ -~05071~^~404~^0.090^5^0.008^~1~^~A~^^^2^0.060^0.100^3^0.066^0.114^~2, 3~^~02/01/2013~ -~05071~^~405~^0.220^5^0.004^~1~^~A~^^^2^0.180^0.350^3^0.208^0.232^~2, 3~^~02/01/2013~ -~05071~^~406~^5.198^5^0.139^~1~^~A~^^^2^4.980^5.710^3^4.756^5.640^~2, 3~^~02/01/2013~ -~05071~^~410~^1.100^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05071~^~415~^0.381^5^0.003^~1~^~A~^^^2^0.358^0.439^3^0.371^0.390^~2, 3~^~02/01/2013~ -~05071~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~502~^0.918^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~503~^0.927^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~504~^1.654^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~505~^1.831^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~506~^0.555^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~507~^0.227^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~508~^0.775^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~509~^0.729^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~510~^0.943^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~511~^1.355^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~512~^0.579^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~513~^1.162^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~514~^1.908^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~515~^3.179^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~516~^0.890^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~517~^0.783^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~518~^0.812^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05071~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~606~^0.949^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~607~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05071~^~608~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05071~^~609~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~05071~^~610~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.008^^^^~1, 2, 3~^~02/01/2013~ -~05071~^~611~^0.003^5^0.000^~1~^~A~^^^2^0.001^0.006^3^0.002^0.004^~1, 2, 3~^~02/01/2013~ -~05071~^~612~^0.017^5^0.001^~1~^~A~^^^2^0.013^0.020^3^0.013^0.021^~2, 3~^~04/01/2011~ -~05071~^~613~^0.689^5^0.030^~1~^~A~^^^2^0.575^0.736^3^0.594^0.784^~2, 3~^~02/01/2013~ -~05071~^~614~^0.220^5^0.010^~1~^~A~^^^2^0.181^0.239^3^0.189^0.252^~2, 3~^~02/01/2013~ -~05071~^~615~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05071~^~617~^1.106^5^0.047^~1~^~AS~^^^2^0.936^1.207^3^0.957^1.256^~2, 3~^~04/01/2011~ -~05071~^~618~^0.662^5^0.046^~1~^~AS~^^^2^0.520^0.792^3^0.516^0.808^~2, 3~^~02/01/2013~ -~05071~^~619~^0.032^5^0.003^~1~^~AS~^^^2^0.023^0.043^3^0.022^0.043^~2, 3~^~02/01/2013~ -~05071~^~620~^0.093^5^0.002^~1~^~A~^^^2^0.087^0.099^3^0.088^0.099^~2, 3~^~02/01/2013~ -~05071~^~621~^0.007^5^0.001^~1~^~A~^^^2^0.005^0.009^3^0.004^0.009^~2, 3~^~04/01/2011~ -~05071~^~624~^0.006^5^0.000^~1~^~A~^^^2^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2011~ -~05071~^~625~^0.006^5^0.000^~1~^~A~^^^2^0.005^0.006^3^0.005^0.006^~2, 3~^~04/01/2011~ -~05071~^~626~^0.199^5^0.008^~1~^~AS~^^^2^0.181^0.221^3^0.174^0.224^~2, 3~^~02/01/2013~ -~05071~^~627~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~02/01/2013~ -~05071~^~628~^0.014^5^0.001^~1~^~A~^^^2^0.011^0.019^3^0.012^0.017^~2, 3~^~02/01/2013~ -~05071~^~629~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~05071~^~630~^0.000^5^0.000^~1~^~AS~^^^2^0.000^0.000^^^^~2, 3~^~04/01/2011~ -~05071~^~631~^0.009^5^0.001^~1~^~A~^^^2^0.007^0.011^3^0.007^0.012^~2, 3~^~04/01/2011~ -~05071~^~645~^1.330^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~646~^0.854^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~652~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05071~^~653~^0.004^5^0.000^~1~^~A~^^^2^0.002^0.005^3^0.002^0.005^~1, 2, 3~^~02/01/2013~ -~05071~^~654~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.000^0.001^~1, 2, 3~^~02/01/2013~ -~05071~^~662~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~05071~^~663~^0.012^5^0.001^~1~^~A~^^^2^0.007^0.018^3^0.008^0.016^~2, 3~^~02/01/2013~ -~05071~^~664~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05071~^~665~^0.005^5^0.000^~1~^~A~^^^2^0.003^0.007^3^0.004^0.006^~2, 3~^~02/01/2013~ -~05071~^~670~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.005^3^0.002^0.005^~1, 2, 3~^~02/01/2013~ -~05071~^~671~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.006^^^^~1, 2, 3~^~02/01/2013~ -~05071~^~672~^0.008^5^0.001^~1~^~A~^^^2^0.006^0.009^3^0.006^0.010^~2, 3~^~04/01/2011~ -~05071~^~673~^0.197^5^0.008^~1~^~A~^^^2^0.179^0.219^3^0.172^0.222^~2, 3~^~02/01/2013~ -~05071~^~674~^1.094^5^0.046^~1~^~A~^^^2^0.929^1.193^3^0.948^1.241^~2, 3~^~02/01/2013~ -~05071~^~675~^0.654^5^0.045^~1~^~A~^^^2^0.514^0.784^3^0.509^0.799^~2, 3~^~02/01/2013~ -~05071~^~676~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05071~^~685~^0.005^5^0.000^~1~^~A~^^^2^0.000^0.008^3^0.004^0.007^~1, 2, 3~^~02/01/2013~ -~05071~^~687~^0.003^5^0.001^~1~^~A~^^^2^0.001^0.004^3^0.001^0.005^~1, 2, 3~^~04/01/2011~ -~05071~^~689~^0.016^5^0.000^~1~^~AS~^^^2^0.014^0.021^3^0.015^0.018^~2, 3~^~02/01/2013~ -~05071~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05071~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05071~^~851~^0.027^5^0.003^~1~^~A~^^^2^0.017^0.037^3^0.016^0.038^~2, 3~^~02/01/2013~ -~05071~^~852~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~05071~^~853~^0.016^5^0.000^~1~^~A~^^^2^0.014^0.021^3^0.015^0.017^~2, 3~^~02/01/2013~ -~05071~^~858~^0.023^5^0.001^~1~^~A~^^^2^0.021^0.024^3^0.021^0.024^~2, 3~^~04/01/2011~ -~05072~^~312~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~405~^0.236^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~406~^6.146^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~410~^1.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~415~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~501~^0.335^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~502~^1.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~503~^1.511^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~504~^2.148^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~505~^2.431^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~506~^0.792^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~507~^0.366^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~508~^1.135^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~509~^0.966^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~510~^1.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~511~^1.727^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~512~^0.888^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~513~^1.561^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~514~^2.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~515~^4.286^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~516~^1.406^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~517~^1.177^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~518~^0.985^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~606~^2.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~05072~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~05072~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~05072~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05072~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~613~^1.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~614~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~617~^2.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~618~^1.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~626~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~05072~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05072~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~645~^2.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05072~^~646~^1.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05073~^~312~^0.074^6^0.002^~1~^~A~^^^2^0.065^0.094^1^0.061^0.087^~2, 3~^~02/01/2013~ -~05073~^~315~^0.014^6^0.001^~1~^~A~^^^2^0.007^0.019^3^0.012^0.016^~2, 3~^~02/01/2013~ -~05073~^~404~^0.098^5^0.002^~1~^~A~^^^2^0.090^0.120^3^0.092^0.104^~2, 3~^~02/01/2013~ -~05073~^~405~^0.222^5^0.004^~1~^~A~^^^2^0.170^0.380^3^0.210^0.234^~2, 3~^~02/01/2013~ -~05073~^~406~^5.598^5^0.104^~1~^~A~^^^2^5.270^5.900^3^5.266^5.930^~2, 3~^~02/01/2013~ -~05073~^~410~^1.100^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05073~^~415~^0.407^5^0.009^~1~^~A~^^^2^0.389^0.434^3^0.379^0.434^~2, 3~^~02/01/2013~ -~05073~^~501~^0.273^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~502~^1.146^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~503~^1.157^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~504~^2.065^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~505~^2.286^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~506~^0.693^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~508~^0.968^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~509~^0.911^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~510~^1.178^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~511~^1.692^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~512~^0.723^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~513~^1.451^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~514~^2.383^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~515~^3.970^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~516~^1.111^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~517~^0.978^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~518~^1.014^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05073~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~606~^1.505^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~607~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05073~^~608~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~02/01/2013~ -~05073~^~609~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.001^0.003^~1, 2, 3~^~02/01/2013~ -~05073~^~610~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.008^^^^~1, 2, 3~^~02/01/2013~ -~05073~^~611~^0.004^5^0.001^~1~^~A~^^^2^0.002^0.007^3^0.002^0.006^~1, 2, 3~^~02/01/2013~ -~05073~^~612~^0.029^5^0.001^~1~^~A~^^^2^0.023^0.040^3^0.025^0.032^~2, 3~^~02/01/2013~ -~05073~^~613~^1.110^5^0.022^~1~^~A~^^^2^0.968^1.400^3^1.039^1.181^~2, 3~^~02/01/2013~ -~05073~^~614~^0.334^5^0.007^~1~^~A~^^^2^0.295^0.419^3^0.312^0.356^~2, 3~^~02/01/2013~ -~05073~^~615~^0.004^5^0.000^~1~^~A~^^^2^0.003^0.008^3^0.004^0.005^~2, 3~^~02/01/2013~ -~05073~^~617~^1.809^5^0.053^~1~^~AS~^^^2^1.532^2.234^3^1.640^1.978^~2, 3~^~02/01/2013~ -~05073~^~618~^0.980^5^0.024^~1~^~AS~^^^2^0.866^1.196^3^0.903^1.056^~2, 3~^~02/01/2013~ -~05073~^~619~^0.047^5^0.002^~1~^~AS~^^^2^0.039^0.052^3^0.040^0.054^~2, 3~^~02/01/2013~ -~05073~^~620~^0.098^5^0.002^~1~^~A~^^^2^0.085^0.132^3^0.092^0.105^~2, 3~^~02/01/2013~ -~05073~^~621~^0.007^5^0.000^~1~^~A~^^^2^0.005^0.011^3^0.006^0.008^~2, 3~^~02/01/2013~ -~05073~^~624~^0.007^5^0.001^~1~^~A~^^^2^0.005^0.011^3^0.006^0.009^~2, 3~^~02/01/2013~ -~05073~^~625~^0.010^5^0.001^~1~^~A~^^^2^0.008^0.014^3^0.009^0.012^~2, 3~^~02/01/2013~ -~05073~^~626~^0.330^5^0.020^~1~^~AS~^^^2^0.241^0.402^3^0.267^0.393^~2, 3~^~02/01/2013~ -~05073~^~627~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05073~^~628~^0.023^5^0.001^~1~^~A~^^^2^0.018^0.039^3^0.022^0.025^~2, 3~^~02/01/2013~ -~05073~^~629~^0.004^5^0.000^~1~^~A~^^^2^0.003^0.005^3^0.002^0.005^~2, 3~^~04/01/2011~ -~05073~^~630~^0.001^5^0.000^~1~^~AS~^^^2^0.000^0.003^3^0.000^0.001^~2, 3~^~02/01/2013~ -~05073~^~631~^0.010^5^0.001^~1~^~A~^^^2^0.007^0.014^3^0.008^0.012^~2, 3~^~02/01/2013~ -~05073~^~645~^2.181^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~646~^1.202^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~652~^0.005^5^0.000^~1~^~A~^^^2^0.004^0.007^3^0.004^0.006^~2, 3~^~02/01/2013~ -~05073~^~653~^0.006^5^0.001^~1~^~A~^^^2^0.004^0.009^3^0.005^0.008^~2, 3~^~04/01/2011~ -~05073~^~654~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05073~^~662~^0.004^5^0.001^~1~^~A~^^^2^0.003^0.006^3^0.002^0.006^~2, 3~^~04/01/2011~ -~05073~^~663~^0.018^5^0.002^~1~^~A~^^^2^0.013^0.026^3^0.013^0.023^~2, 3~^~02/01/2013~ -~05073~^~664~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05073~^~665~^0.008^5^0.001^~1~^~A~^^^2^0.006^0.012^3^0.006^0.010^~2, 3~^~02/01/2013~ -~05073~^~670~^0.005^5^0.000^~1~^~A~^^^2^0.003^0.006^3^0.003^0.006^~2, 3~^~02/01/2013~ -~05073~^~671~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.006^3^0.001^0.003^~1, 2, 3~^~02/01/2013~ -~05073~^~672~^0.010^5^0.001^~1~^~A~^^^2^0.008^0.014^3^0.008^0.013^~2, 3~^~02/01/2013~ -~05073~^~673~^0.327^5^0.020^~1~^~A~^^^2^0.238^0.399^3^0.264^0.389^~2, 3~^~02/01/2013~ -~05073~^~674~^1.791^5^0.052^~1~^~A~^^^2^1.517^2.208^3^1.625^1.957^~2, 3~^~02/01/2013~ -~05073~^~675~^0.967^5^0.024^~1~^~A~^^^2^0.855^1.178^3^0.891^1.044^~2, 3~^~02/01/2013~ -~05073~^~676~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.000^0.001^~1, 2, 3~^~02/01/2013~ -~05073~^~685~^0.007^5^0.000^~1~^~A~^^^2^0.001^0.009^3^0.006^0.008^~1, 2, 3~^~02/01/2013~ -~05073~^~687~^0.005^5^0.001^~1~^~A~^^^2^0.003^0.006^3^0.003^0.006^~2, 3~^~02/01/2013~ -~05073~^~689~^0.021^5^0.001^~1~^~AS~^^^2^0.017^0.034^3^0.019^0.023^~2, 3~^~02/01/2013~ -~05073~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05073~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05073~^~851~^0.040^5^0.002^~1~^~A~^^^2^0.030^0.051^3^0.033^0.047^~2, 3~^~02/01/2013~ -~05073~^~852~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05073~^~853~^0.021^5^0.001^~1~^~A~^^^2^0.017^0.031^3^0.019^0.022^~2, 3~^~02/01/2013~ -~05073~^~858~^0.025^5^0.001^~1~^~A~^^^2^0.021^0.037^3^0.023^0.028^~2, 3~^~02/01/2013~ -~05074~^~312~^0.077^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~404~^0.054^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~405~^0.213^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~406~^4.300^8^0.256^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~410~^0.961^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~415~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~501~^0.321^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~502~^1.162^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~503~^1.452^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~504~^2.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~505~^2.337^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~506~^0.761^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~507~^0.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~508~^1.091^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~509~^0.929^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~510~^1.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~511~^1.659^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~512~^0.854^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~513~^1.501^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~514~^2.451^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~515~^4.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~516~^1.351^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~517~^1.131^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~518~^0.946^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~606~^1.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05074~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05074~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~05074~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~613~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~614~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~617~^1.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~618~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~626~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05074~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~645~^1.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05074~^~646~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05075~^~312~^0.054^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~404~^0.073^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~405~^0.141^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~406~^4.733^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~410~^0.994^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~415~^0.318^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~501~^0.171^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~502~^0.729^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~503~^0.742^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~504~^1.306^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~505~^1.438^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~506~^0.439^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~507~^0.189^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~508~^0.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~509~^0.574^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~510~^0.768^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~511~^1.136^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~512~^0.466^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~513~^1.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~514~^1.544^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~515~^2.550^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~516~^0.981^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~517~^0.761^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~518~^0.663^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~605~^0.060^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~606~^4.366^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~607~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~610~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~612~^0.099^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~613~^3.325^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~614~^0.844^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~617~^5.543^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~618~^2.987^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~619~^0.155^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~620~^0.103^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~621~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~625~^0.023^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~626~^0.923^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~627~^0.002^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~628~^0.095^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~630~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~645~^6.619^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~646~^3.352^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05075~^~652~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~672~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~687~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~689~^0.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05075~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05075~^~858~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05076~^~312~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~315~^0.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~404~^0.116^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~405~^0.221^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~406~^5.433^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~410~^0.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~415~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~501~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~502~^0.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~503~^1.095^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~504~^1.603^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~505~^1.718^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~506~^0.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~507~^0.298^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~508~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~509~^0.711^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~510~^1.065^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~511~^1.326^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~512~^0.638^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~513~^1.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~514~^1.885^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~515~^3.479^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~516~^1.287^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~517~^1.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~518~^0.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~606~^4.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05076~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~613~^2.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~614~^1.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~617~^5.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~618~^3.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~619~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~626~^0.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05076~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~645~^6.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05076~^~646~^3.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~312~^0.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~315~^0.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~404~^0.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~406~^6.546^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~410~^1.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~501~^0.304^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~502~^1.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~503~^1.357^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~504~^1.969^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~505~^2.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~506~^0.718^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~507~^0.357^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~508~^1.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~509~^0.875^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~510~^1.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~511~^1.659^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~512~^0.797^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~513~^1.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~514~^2.377^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~515~^4.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~516~^1.621^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~517~^1.278^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~518~^0.948^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~606~^3.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05077~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~613~^2.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~614~^0.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~617~^4.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~618~^2.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~626~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~628~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05077~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~645~^5.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05077~^~646~^3.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05078~^~312~^0.061^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~315~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~404~^0.090^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~405~^0.187^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~406~^6.034^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~410~^1.191^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~415~^0.413^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~501~^0.270^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~502~^1.114^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~503~^1.149^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~504~^2.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~505~^2.215^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~506~^0.678^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~507~^0.287^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~508~^0.955^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~509~^0.881^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~510~^1.166^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~511~^1.657^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~512~^0.712^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~513~^1.441^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~514~^2.331^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~515~^3.868^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~516~^1.198^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~517~^1.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~518~^0.984^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~605~^0.032^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~606~^2.446^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~608~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~612~^0.053^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~613~^1.830^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~614~^0.507^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~617~^2.963^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~618~^1.593^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~619~^0.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~620~^0.095^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~626~^0.519^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~628~^0.049^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~629~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~645~^3.564^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~646~^1.855^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~653~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~663~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05078~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~670~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~672~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~673~^0.362^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~674~^2.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~675~^1.037^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~685~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~687~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~689~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~693~^0.023^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~695~^0.009^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05078~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05078~^~851~^0.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~853~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05078~^~858~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05079~^~312~^0.071^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~404~^0.054^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~405~^0.191^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~406~^4.590^8^0.199^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~410~^0.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~501~^0.271^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~502~^1.002^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~503~^1.216^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~504~^1.766^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~505~^1.979^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~506~^0.646^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~507~^0.321^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~508~^0.942^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~509~^0.784^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~510~^1.177^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~511~^1.507^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~512~^0.715^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~513~^1.397^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~514~^2.155^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~515~^3.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~516~^1.511^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~517~^1.147^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~518~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~606~^3.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05079~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05079~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05079~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~613~^2.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~614~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~617~^4.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~618~^2.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~626~^0.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05079~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~645~^5.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05079~^~646~^2.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05080~^~312~^0.060^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~404~^0.087^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~405~^0.179^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~406~^5.578^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~410~^1.170^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~415~^0.406^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~501~^0.217^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~502~^0.895^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~503~^0.926^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~504~^1.610^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~505~^1.786^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~506~^0.546^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~507~^0.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~508~^0.765^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~509~^0.711^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~510~^0.933^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~511~^1.316^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~512~^0.574^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~513~^1.135^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~514~^1.863^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~515~^3.107^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~516~^0.886^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~517~^0.774^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~518~^0.785^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~605~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~606~^1.050^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~612~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05080~^~613~^0.757^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~614~^0.250^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~617~^1.205^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~618~^0.753^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~619~^0.036^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~620~^0.098^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~621~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~625~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~626~^0.211^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~628~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~645~^1.440^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05080~^~646~^0.962^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05080~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~653~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~662~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~663~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~665~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~670~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~672~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~673~^0.178^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~674~^1.022^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~675~^0.616^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05080~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~685~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~687~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~693~^0.011^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05080~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~851~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05080~^~858~^0.019^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05081~^~312~^0.086^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~315~^0.025^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~404~^0.083^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~405~^0.247^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~406~^6.688^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~410~^1.301^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~415~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~501~^0.332^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~502~^1.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~503~^1.497^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~504~^2.129^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~505~^2.405^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~506~^0.784^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~507~^0.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~508~^1.127^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~509~^0.958^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~510~^1.407^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~511~^1.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~512~^0.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~513~^1.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~514~^2.525^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~515~^4.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~516~^1.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~517~^1.174^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~518~^0.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~606~^2.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05081~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~613~^1.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~614~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~617~^2.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~618~^1.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~626~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05081~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~645~^3.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05081~^~646~^2.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05082~^~312~^0.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~315~^0.019^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~404~^0.091^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~405~^0.189^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~406~^6.053^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~410~^1.209^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~415~^0.425^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~501~^0.274^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~502~^1.130^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~503~^1.172^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~504~^2.032^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~505~^2.256^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~506~^0.690^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~507~^0.286^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~508~^0.967^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~509~^0.899^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~510~^1.181^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~511~^1.661^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~512~^0.727^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~513~^1.434^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~514~^2.353^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~515~^3.924^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~516~^1.121^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~517~^0.980^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~518~^0.991^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~605~^0.033^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~606~^2.108^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05082~^~607~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~608~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~609~^0.002^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05082~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~612~^0.043^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~613~^1.568^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~614~^0.451^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~617~^2.546^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~618~^1.359^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~619~^0.068^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~620~^0.095^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~626~^0.448^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~628~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05082~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~645~^3.052^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05082~^~646~^1.605^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~ -~05082~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~653~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~663~^0.020^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~670~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~672~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~673~^0.372^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~674~^2.083^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~675~^1.066^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~ -~05082~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~685~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~687~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~689~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~693~^0.024^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~695~^0.009^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05082~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~851~^0.044^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~853~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05082~^~858~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05083~^~312~^0.077^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~404~^0.059^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~405~^0.216^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~406~^4.798^8^0.224^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~410~^0.913^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~415~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~501~^0.307^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~502~^1.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~503~^1.387^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~504~^1.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~505~^2.231^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~506~^0.727^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~507~^0.336^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~508~^1.042^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~509~^0.887^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~510~^1.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~511~^1.584^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~512~^0.815^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~513~^1.433^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~514~^2.341^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~515~^3.933^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~516~^1.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~517~^1.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~518~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~606~^2.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05083~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05083~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05083~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~613~^1.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~614~^0.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~617~^2.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~618~^1.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~626~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05083~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~645~^2.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05083~^~646~^1.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~312~^0.080^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~315~^0.033^8^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~404~^0.047^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~405~^0.191^8^0.011^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~406~^3.608^8^0.170^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~410~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~415~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~501~^0.137^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~502~^0.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~503~^0.588^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~504~^0.933^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~505~^1.005^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~506~^0.332^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~507~^0.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~508~^0.514^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~509~^0.392^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~510~^0.641^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~511~^0.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~512~^0.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~513~^0.967^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~514~^1.256^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~515~^1.916^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~516~^1.521^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~517~^0.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~518~^0.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~606~^7.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05084~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~612~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~613~^5.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~614~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~617~^8.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~618~^5.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~619~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~620~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~621~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~626~^1.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05084~^~628~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~645~^10.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05084~^~646~^5.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~312~^0.113^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~315~^0.065^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~405~^0.237^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~406~^4.528^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~410~^0.839^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~415~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~501~^0.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~502~^0.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~503~^0.925^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~504~^1.403^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~505~^1.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~506~^0.495^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~507~^0.286^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~508~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~509~^0.609^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~510~^0.944^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~511~^1.263^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~512~^0.539^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~513~^1.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~514~^1.713^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~515~^3.104^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~516~^1.555^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~517~^1.203^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~518~^0.753^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~606~^6.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05085~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~613~^4.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~614~^1.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~617~^8.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~618~^5.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~619~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~626~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~628~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05085~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~645~^9.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05085~^~646~^5.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~312~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~315~^0.052^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~404~^0.078^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~405~^0.259^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~406~^5.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~410~^0.982^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~415~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~501~^0.256^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~502~^0.962^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~503~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~504~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~505~^1.829^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~506~^0.606^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~507~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~508~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~509~^0.733^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~510~^1.138^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~511~^1.553^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~512~^0.658^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~513~^1.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~514~^2.116^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~515~^3.556^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~516~^1.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~517~^1.398^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~518~^0.883^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~606~^6.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05086~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~612~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~613~^4.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~614~^1.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~617~^8.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~618~^4.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~619~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~626~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~628~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05086~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~645~^9.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05086~^~646~^5.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~312~^0.097^8^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~315~^0.046^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~404~^0.040^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~405~^0.248^8^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~406~^3.319^8^0.251^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~410~^0.525^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~415~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~501~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~502~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~503~^0.872^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~504~^1.342^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~505~^1.466^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~506~^0.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~507~^0.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~508~^0.731^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~509~^0.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~510~^0.913^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~511~^1.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~512~^0.515^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~513~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~514~^1.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~515~^2.735^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~516~^1.837^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~517~^1.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~518~^0.724^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~606~^5.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05087~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05087~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05087~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~613~^3.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~614~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~617~^5.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~618~^3.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~626~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05087~^~628~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~645~^7.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05087~^~646~^3.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~312~^0.109^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~315~^0.035^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~404~^0.054^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~405~^0.228^8^0.017^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~406~^4.119^8^0.231^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~410~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~415~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~501~^0.205^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~502~^0.741^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~503~^0.926^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~504~^1.316^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~505~^1.491^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~506~^0.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~507~^0.225^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~508~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~509~^0.592^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~510~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~511~^1.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~512~^0.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~513~^0.957^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~514~^1.563^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~515~^2.627^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~516~^0.862^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~517~^0.721^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~518~^0.604^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~606~^2.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05088~^~611~^0.040^17^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~612~^0.050^24^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~613~^1.500^24^0.065^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~614~^0.590^24^0.037^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~617~^2.270^24^0.104^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~618~^1.670^24^0.074^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~619~^0.070^18^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~620~^0.210^16^0.038^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~621~^0.080^9^0.024^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~626~^0.400^24^0.027^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~628~^0.020^6^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~629~^0.020^8^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05088~^~631~^0.040^9^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~645~^2.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05088~^~646~^2.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~312~^0.161^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~315~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~405~^0.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~406~^5.027^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~410~^1.165^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~501~^0.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~502~^1.132^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~503~^1.417^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~504~^2.016^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~505~^2.267^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~506~^0.742^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~507~^0.346^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~508~^1.069^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~509~^0.907^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~510~^1.333^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~511~^1.616^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~512~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~513~^1.461^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~514~^2.383^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~515~^4.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~516~^1.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~517~^1.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~518~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~606~^3.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05089~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~613~^1.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~614~^1.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~617~^4.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~618~^2.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~626~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05089~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~645~^4.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05089~^~646~^3.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~312~^0.129^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~315~^0.048^8^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~404~^0.046^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~405~^0.283^8^0.015^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~406~^3.956^8^0.380^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~410~^0.671^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~415~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~501~^0.287^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~502~^1.037^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~503~^1.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~504~^1.843^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~505~^2.086^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~506~^0.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~507~^0.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~508~^0.974^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~509~^0.829^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~510~^1.218^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~511~^1.481^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~512~^0.762^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~513~^1.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~514~^2.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~515~^3.678^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~516~^1.206^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~517~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~518~^0.845^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~606~^2.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05090~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05090~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05090~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~613~^1.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~614~^0.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~617~^2.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~618~^1.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~620~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~621~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~626~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05090~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~645~^2.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05090~^~646~^2.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05091~^~312~^0.054^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~404~^0.073^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~405~^0.145^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~406~^4.625^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~410~^0.190^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~415~^0.347^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~501~^0.167^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~502~^0.735^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~503~^0.731^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~504~^1.318^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~505~^1.448^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~506~^0.438^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~507~^0.183^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~508~^0.632^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~509~^0.579^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~510~^0.764^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~511~^1.157^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~512~^0.465^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~513~^1.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~514~^1.554^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~515~^2.571^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~516~^1.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~517~^0.773^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~518~^0.675^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~605~^0.085^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05091~^~606~^4.524^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05091~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~612~^0.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~613~^3.511^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~614~^0.850^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~617~^5.832^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~618~^3.096^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~619~^0.162^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~620~^0.104^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~624~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~625~^0.033^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~626~^0.980^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~627~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~628~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~630~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~645~^6.940^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05091~^~646~^3.467^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05091~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~653~^0.019^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~663~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~665~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~670~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~672~^0.021^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~673~^0.973^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~674~^5.779^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~675~^3.050^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~685~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~687~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~689~^0.035^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~693~^0.060^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05091~^~695~^0.025^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05091~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~851~^0.144^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05091~^~853~^0.034^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05091~^~858~^0.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05092~^~312~^0.082^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~315~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~404~^0.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~405~^0.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~406~^5.715^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~410~^0.982^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~415~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~501~^0.248^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~502~^0.886^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~503~^1.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~504~^1.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~505~^1.699^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~506~^0.568^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~507~^0.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~508~^0.864^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~509~^0.705^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~510~^1.056^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~511~^1.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~512~^0.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~513~^1.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~514~^1.869^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~515~^3.465^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~516~^1.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~517~^1.114^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~518~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~606~^4.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05092~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~613~^2.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~614~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~617~^6.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~618~^3.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~619~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~626~^0.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~628~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05092~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~645~^6.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05092~^~646~^3.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~312~^0.089^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~315~^0.036^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~404~^0.094^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~405~^0.243^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~406~^6.946^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~410~^1.185^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~501~^0.302^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~502~^1.105^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~503~^1.346^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~504~^1.958^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~505~^2.169^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~506~^0.713^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~507~^0.358^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~508~^1.051^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~509~^0.869^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~510~^1.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~511~^1.656^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~512~^0.791^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~513~^1.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~514~^2.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~515~^4.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~516~^1.643^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~517~^1.295^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~518~^0.949^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~606~^4.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05093~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~613~^2.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~614~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~617~^4.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~618~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~626~^0.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05093~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~645~^5.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05093~^~646~^3.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05094~^~312~^0.063^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~404~^0.088^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~405~^0.190^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~406~^5.789^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~410~^1.227^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~415~^0.414^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~501~^0.243^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~502~^1.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~503~^1.052^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~504~^1.891^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~505~^2.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~506~^0.630^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~507~^0.261^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~508~^0.900^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~509~^0.832^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~510~^1.091^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~511~^1.628^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~512~^0.666^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~513~^1.420^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~514~^2.215^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~515~^3.673^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~516~^1.318^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~517~^1.047^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~518~^0.957^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~605~^0.081^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05094~^~606~^4.111^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05094~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~608~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~612~^0.083^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~613~^3.181^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~614~^0.784^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~617~^5.223^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~618~^2.669^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~619~^0.130^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~620~^0.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~624~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~626~^0.912^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~627~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~628~^0.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~630~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~645~^6.257^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05094~^~646~^2.993^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05094~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~653~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~663~^0.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~665~^0.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~670~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~673~^0.905^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~674~^5.175^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~675~^2.626^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~685~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~687~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~689~^0.032^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~693~^0.055^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05094~^~695~^0.026^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05094~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~851~^0.120^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05094~^~853~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05094~^~858~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05095~^~312~^0.070^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~315~^0.019^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~404~^0.057^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~405~^0.191^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~406~^4.894^8^0.229^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~410~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~415~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~501~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~502~^0.962^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~503~^1.164^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~504~^1.695^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~505~^1.898^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~506~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~507~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~508~^0.905^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~509~^0.751^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~510~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~511~^1.456^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~512~^0.685^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~513~^1.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~514~^2.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~515~^3.405^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~516~^1.487^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~517~^1.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~518~^0.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~606~^4.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05095~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05095~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05095~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~613~^3.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~614~^0.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~617~^4.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~618~^2.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~626~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~05095~^~628~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~645~^5.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05095~^~646~^3.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05096~^~312~^0.062^6^0.003^~1~^~A~^^^2^0.049^0.079^3^0.054^0.070^~2, 3~^~02/01/2013~ -~05096~^~315~^0.013^6^0.001^~1~^~A~^^^2^0.005^0.019^4^0.011^0.015^~2, 3~^~02/01/2013~ -~05096~^~404~^0.088^5^0.006^~1~^~A~^^^2^0.080^0.110^3^0.070^0.106^~2, 3~^~02/01/2013~ -~05096~^~405~^0.196^5^0.009^~1~^~A~^^^2^0.150^0.270^3^0.168^0.224^~2, 3~^~02/01/2013~ -~05096~^~406~^5.557^5^0.085^~1~^~A~^^^2^5.390^5.840^3^5.286^5.828^~2, 3~^~02/01/2013~ -~05096~^~415~^0.451^5^0.014^~1~^~A~^^^2^0.415^0.495^3^0.405^0.497^~2, 3~^~02/01/2013~ -~05096~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~502~^0.930^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~503~^0.939^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~504~^1.675^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~505~^1.855^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~508~^0.785^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~509~^0.739^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~510~^0.956^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~511~^1.372^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~512~^0.587^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~513~^1.177^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~514~^1.933^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~515~^3.221^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~516~^0.902^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~517~^0.793^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~518~^0.823^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05096~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~606~^1.097^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~607~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~02/01/2013~ -~05096~^~608~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~609~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~610~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.008^^^^~1, 2, 3~^~02/01/2013~ -~05096~^~611~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^3^0.002^0.003^~1, 2, 3~^~02/01/2013~ -~05096~^~612~^0.020^5^0.001^~1~^~A~^^^2^0.016^0.025^3^0.017^0.022^~2, 3~^~02/01/2013~ -~05096~^~613~^0.798^5^0.013^~1~^~A~^^^2^0.714^0.996^3^0.756^0.840^~2, 3~^~02/01/2013~ -~05096~^~614~^0.252^5^0.005^~1~^~A~^^^2^0.228^0.303^3^0.237^0.267^~2, 3~^~02/01/2013~ -~05096~^~615~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.005^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05096~^~617~^1.257^5^0.019^~1~^~AS~^^^2^1.142^1.498^3^1.197^1.318^~2, 3~^~02/01/2013~ -~05096~^~618~^0.748^5^0.044^~1~^~AS~^^^2^0.613^0.855^3^0.608^0.888^~2, 3~^~02/01/2013~ -~05096~^~619~^0.036^5^0.003^~1~^~AS~^^^2^0.026^0.045^3^0.026^0.046^~2, 3~^~02/01/2013~ -~05096~^~620~^0.090^5^0.002^~1~^~A~^^^2^0.082^0.098^3^0.085^0.095^~2, 3~^~02/01/2013~ -~05096~^~621~^0.007^5^0.000^~1~^~A~^^^2^0.006^0.008^3^0.006^0.008^~2, 3~^~04/01/2011~ -~05096~^~624~^0.008^5^0.001^~1~^~A~^^^2^0.007^0.011^3^0.006^0.011^~2, 3~^~04/01/2011~ -~05096~^~625~^0.007^5^0.000^~1~^~A~^^^2^0.005^0.008^3^0.005^0.008^~2, 3~^~02/01/2013~ -~05096~^~626~^0.212^5^0.009^~1~^~AS~^^^2^0.171^0.246^3^0.183^0.240^~2, 3~^~02/01/2013~ -~05096~^~627~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~05096~^~628~^0.017^5^0.000^~1~^~A~^^^2^0.013^0.026^3^0.015^0.018^~2, 3~^~02/01/2013~ -~05096~^~629~^0.002^5^0.000^~1~^~A~^^^2^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~02/01/2013~ -~05096~^~630~^0.001^5^0.000^~1~^~AS~^^^2^0.000^0.003^^^^~2, 3~^~02/01/2013~ -~05096~^~631~^0.008^5^0.001^~1~^~A~^^^2^0.007^0.010^3^0.006^0.011^~2, 3~^~04/01/2011~ -~05096~^~645~^1.497^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~646~^0.940^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~652~^0.003^5^0.000^~1~^~A~^^^2^0.003^0.004^^^^~2, 3~^~04/01/2011~ -~05096~^~653~^0.004^5^0.000^~1~^~A~^^^2^0.003^0.006^3^0.003^0.005^~2, 3~^~04/01/2011~ -~05096~^~654~^0.002^5^0.001^~1~^~A~^^^2^0.000^0.004^3^0.000^0.004^~1, 2, 3~^~02/01/2013~ -~05096~^~662~^0.002^5^0.000^~1~^~A~^^^2^0.002^0.002^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~663~^0.012^5^0.001^~1~^~A~^^^2^0.009^0.017^3^0.010^0.014^~2, 3~^~02/01/2013~ -~05096~^~664~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~665~^0.006^5^0.000^~1~^~A~^^^2^0.004^0.011^3^0.005^0.007^~2, 3~^~02/01/2013~ -~05096~^~670~^0.006^5^0.002^~1~^~A~^^^2^0.003^0.013^3^0.000^0.012^~2, 3~^~02/01/2013~ -~05096~^~671~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.005^^^^~1, 2, 3~^~02/01/2013~ -~05096~^~672~^0.008^5^0.001^~1~^~A~^^^2^0.006^0.010^3^0.006^0.010^~2, 3~^~04/01/2011~ -~05096~^~673~^0.210^5^0.009^~1~^~A~^^^2^0.169^0.244^3^0.181^0.238^~2, 3~^~02/01/2013~ -~05096~^~674~^1.245^5^0.020^~1~^~A~^^^2^1.130^1.481^3^1.183^1.307^~2, 3~^~02/01/2013~ -~05096~^~675~^0.736^5^0.045^~1~^~A~^^^2^0.596^0.847^3^0.592^0.880^~2, 3~^~02/01/2013~ -~05096~^~676~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05096~^~685~^0.006^5^0.000^~1~^~A~^^^2^0.001^0.007^^^^~1, 2, 3~^~02/01/2013~ -~05096~^~687~^0.003^5^0.001^~1~^~A~^^^2^0.000^0.004^3^0.001^0.005^~1, 2, 3~^~04/01/2011~ -~05096~^~689~^0.018^5^0.000^~1~^~AS~^^^2^0.016^0.025^3^0.017^0.020^~2, 3~^~02/01/2013~ -~05096~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05096~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~851~^0.030^5^0.003^~1~^~A~^^^2^0.019^0.038^3^0.020^0.040^~2, 3~^~02/01/2013~ -~05096~^~852~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~04/01/2011~ -~05096~^~853~^0.018^5^0.000^~1~^~A~^^^2^0.016^0.023^3^0.017^0.019^~2, 3~^~02/01/2013~ -~05096~^~858~^0.021^5^0.001^~1~^~A~^^^2^0.019^0.024^3^0.018^0.024^~2, 3~^~04/01/2011~ -~05097~^~312~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~315~^0.027^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~404~^0.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~405~^0.255^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~406~^7.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~410~^1.285^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~415~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~501~^0.329^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~502~^1.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~503~^1.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~504~^2.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~505~^2.384^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~506~^0.778^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~507~^0.362^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~508~^1.121^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~509~^0.951^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~510~^1.397^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~511~^1.697^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~512~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~513~^1.534^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~514~^2.504^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~515~^4.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~516~^1.382^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~517~^1.172^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~518~^0.973^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~606~^2.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05097~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~613~^1.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~614~^0.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~617~^3.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~618~^2.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~626~^0.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05097~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~645~^3.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05097~^~646~^2.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05098~^~312~^0.067^6^0.002^~1~^~A~^^^2^0.047^0.100^4^0.061^0.074^~2, 3~^~02/01/2013~ -~05098~^~315~^0.016^6^0.001^~1~^~A~^^^2^0.007^0.022^4^0.014^0.018^~2, 3~^~02/01/2013~ -~05098~^~404~^0.096^5^0.002^~1~^~A~^^^2^0.090^0.100^3^0.089^0.103^~2, 3~^~02/01/2013~ -~05098~^~405~^0.218^5^0.002^~1~^~A~^^^2^0.180^0.340^3^0.212^0.224^~2, 3~^~02/01/2013~ -~05098~^~406~^6.208^5^0.152^~1~^~A~^^^2^5.650^6.490^3^5.724^6.692^~2, 3~^~02/01/2013~ -~05098~^~410~^1.300^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05098~^~415~^0.462^5^0.008^~1~^~A~^^^2^0.429^0.479^3^0.436^0.488^~2, 3~^~02/01/2013~ -~05098~^~501~^0.279^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~502~^1.171^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~503~^1.183^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~504~^2.110^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~505~^2.336^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~506~^0.708^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~508~^0.989^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~509~^0.931^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~510~^1.204^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~511~^1.729^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~512~^0.739^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~513~^1.483^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~514~^2.435^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~515~^4.056^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~516~^1.135^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~517~^0.999^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~518~^1.036^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05098~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~606~^2.311^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~607~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05098~^~608~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~02/01/2013~ -~05098~^~609~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.002^3^0.001^0.002^~1, 2, 3~^~02/01/2013~ -~05098~^~610~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.006^^^^~1, 2, 3~^~02/01/2013~ -~05098~^~611~^0.004^5^0.000^~1~^~A~^^^2^0.003^0.006^3^0.003^0.006^~2, 3~^~04/01/2011~ -~05098~^~612~^0.044^5^0.001^~1~^~A~^^^2^0.042^0.047^3^0.042^0.046^~2, 3~^~02/01/2013~ -~05098~^~613~^1.750^5^0.033^~1~^~A~^^^2^1.637^1.816^3^1.645^1.856^~2, 3~^~02/01/2013~ -~05098~^~614~^0.477^5^0.002^~1~^~A~^^^2^0.462^0.529^3^0.473^0.482^~2, 3~^~02/01/2013~ -~05098~^~615~^0.005^5^0.000^~1~^~A~^^^2^0.004^0.009^3^0.005^0.006^~2, 3~^~02/01/2013~ -~05098~^~617~^2.815^5^0.075^~1~^~AS~^^^2^2.582^3.006^3^2.575^3.055^~2, 3~^~02/01/2013~ -~05098~^~618~^1.460^5^0.044^~1~^~AS~^^^2^1.328^1.651^3^1.321^1.598^~2, 3~^~02/01/2013~ -~05098~^~619~^0.073^5^0.003^~1~^~AS~^^^2^0.067^0.084^3^0.063^0.083^~2, 3~^~04/01/2011~ -~05098~^~620~^0.087^5^0.001^~1~^~A~^^^2^0.075^0.121^3^0.083^0.091^~2, 3~^~02/01/2013~ -~05098~^~621~^0.005^5^0.000^~1~^~A~^^^2^0.003^0.007^3^0.004^0.006^~2, 3~^~02/01/2013~ -~05098~^~624~^0.008^5^0.001^~1~^~A~^^^2^0.006^0.009^3^0.006^0.010^~2, 3~^~04/01/2011~ -~05098~^~625~^0.015^5^0.001^~1~^~A~^^^2^0.013^0.017^3^0.013^0.018^~2, 3~^~02/01/2013~ -~05098~^~626~^0.485^5^0.029^~1~^~AS~^^^2^0.397^0.566^3^0.392^0.579^~2, 3~^~02/01/2013~ -~05098~^~627~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~05098~^~628~^0.034^5^0.001^~1~^~A~^^^2^0.028^0.054^3^0.032^0.037^~2, 3~^~02/01/2013~ -~05098~^~629~^0.005^5^0.000^~1~^~A~^^^2^0.005^0.005^^^^~2, 3~^~04/01/2011~ -~05098~^~630~^0.001^5^0.000^~1~^~AS~^^^2^0.000^0.003^3^0.000^0.002^~2, 3~^~04/01/2011~ -~05098~^~631~^0.008^5^0.001^~1~^~A~^^^2^0.006^0.012^3^0.007^0.010^~2, 3~^~02/01/2013~ -~05098~^~645~^3.361^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~646~^1.695^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~652~^0.007^5^0.000^~1~^~A~^^^2^0.006^0.007^3^0.006^0.007^~2, 3~^~04/01/2011~ -~05098~^~653~^0.009^5^0.001^~1~^~A~^^^2^0.007^0.010^3^0.007^0.011^~2, 3~^~04/01/2011~ -~05098~^~654~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.005^^^^~1, 2, 3~^~02/01/2013~ -~05098~^~662~^0.004^5^0.001^~1~^~A~^^^2^0.002^0.005^3^0.002^0.005^~1, 2, 3~^~04/01/2011~ -~05098~^~663~^0.027^5^0.001^~1~^~A~^^^2^0.022^0.031^3^0.022^0.032^~2, 3~^~04/01/2011~ -~05098~^~664~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05098~^~665~^0.013^5^0.000^~1~^~A~^^^2^0.012^0.017^3^0.013^0.014^~2, 3~^~04/01/2011~ -~05098~^~670~^0.008^5^0.001^~1~^~A~^^^2^0.007^0.010^3^0.006^0.010^~2, 3~^~04/01/2011~ -~05098~^~671~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.004^3^0.001^0.003^~1, 2, 3~^~02/01/2013~ -~05098~^~672~^0.011^5^0.001^~1~^~A~^^^2^0.009^0.016^3^0.010^0.013^~2, 3~^~02/01/2013~ -~05098~^~673~^0.482^5^0.030^~1~^~A~^^^2^0.393^0.564^3^0.388^0.576^~2, 3~^~02/01/2013~ -~05098~^~674~^2.788^5^0.076^~1~^~A~^^^2^2.554^2.984^3^2.545^3.031^~2, 3~^~02/01/2013~ -~05098~^~675~^1.438^5^0.044^~1~^~A~^^^2^1.305^1.627^3^1.298^1.579^~2, 3~^~02/01/2013~ -~05098~^~676~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^3^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~05098~^~685~^0.012^5^0.001^~1~^~A~^^^2^0.002^0.017^3^0.009^0.014^~1, 2, 3~^~02/01/2013~ -~05098~^~687~^0.007^5^0.001^~1~^~A~^^^2^0.005^0.009^3^0.005^0.009^~2, 3~^~04/01/2011~ -~05098~^~689~^0.023^5^0.000^~1~^~AS~^^^2^0.020^0.033^3^0.022^0.024^~2, 3~^~02/01/2013~ -~05098~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05098~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05098~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05098~^~851~^0.061^5^0.004^~1~^~A~^^^2^0.050^0.073^3^0.050^0.073^~2, 3~^~02/01/2013~ -~05098~^~852~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05098~^~853~^0.022^5^0.000^~1~^~A~^^^2^0.020^0.030^3^0.022^0.023^~2, 3~^~02/01/2013~ -~05098~^~858~^0.021^5^0.000^~1~^~A~^^^2^0.018^0.032^3^0.020^0.023^~2, 3~^~02/01/2013~ -~05099~^~312~^0.077^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~315~^0.020^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~404~^0.063^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~405~^0.218^8^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~406~^5.200^8^0.256^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~410~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~415~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~501~^0.292^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~502~^1.056^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~503~^1.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~504~^1.876^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~505~^2.123^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~506~^0.692^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~507~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~508~^0.992^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~509~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~510~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~511~^1.508^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~512~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~513~^1.364^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~514~^2.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~515~^3.743^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~516~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~517~^1.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~518~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~606~^2.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05099~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05099~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05099~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~613~^1.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~614~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~617~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~618~^1.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~626~^0.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05099~^~628~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~645~^3.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05099~^~646~^2.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05100~^~312~^0.034^6^0.002^~1~^~A~^^^1^0.030^0.041^5^0.030^0.039^~2, 3~^~04/01/2013~ -~05100~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~404~^0.054^3^0.002^~1~^~A~^^^1^0.051^0.058^2^0.043^0.064^~2, 3~^~04/01/2013~ -~05100~^~405~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.117^~2, 3~^~04/01/2013~ -~05100~^~406~^5.697^3^0.593^~1~^~A~^^^1^4.750^6.790^2^3.143^8.250^~2, 3~^~04/01/2013~ -~05100~^~410~^0.640^2^^~1~^~A~^^^1^0.550^0.730^1^^^^~04/01/2013~ -~05100~^~415~^0.528^3^0.007^~1~^~A~^^^1^0.516^0.541^2^0.496^0.559^~2, 3~^~04/01/2013~ -~05100~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~502~^0.786^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~503~^0.859^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~504~^1.449^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~505~^1.685^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~506~^0.456^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~507~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~508~^0.707^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~509~^0.631^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~510~^0.907^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~511~^1.185^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~512~^0.653^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~513~^1.023^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~514~^1.648^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~515~^2.595^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~516~^0.775^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~517~^0.557^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~518~^0.668^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05100~^~605~^0.061^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~606~^3.535^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~610~^0.005^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~09/01/2015~ -~05100~^~611~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.011^5^0.004^0.009^~2, 3~^~09/01/2015~ -~05100~^~612~^0.069^6^0.002^~1~^~A~^^^1^0.074^0.087^5^0.073^0.085^~2, 3~^~09/01/2015~ -~05100~^~613~^2.748^6^0.072^~1~^~A~^^^1^2.944^3.459^5^2.970^3.342^~2, 3~^~09/01/2015~ -~05100~^~614~^0.660^6^0.021^~1~^~A~^^^1^0.694^0.842^5^0.705^0.812^~2, 3~^~09/01/2015~ -~05100~^~615~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~09/01/2015~ -~05100~^~617~^4.546^6^0.119^~1~^~AS~^^^1^4.781^5.690^5^4.914^5.528^~2, 3~^~09/01/2015~ -~05100~^~618~^2.226^6^0.093^~1~^~AS~^^^1^2.276^2.945^5^2.317^2.797^~2, 3~^~09/01/2015~ -~05100~^~619~^0.113^6^0.008^~1~^~AS~^^^1^0.104^0.157^5^0.109^0.152^~2, 3~^~09/01/2015~ -~05100~^~620~^0.072^6^0.002^~1~^~A~^^^1^0.076^0.089^5^0.077^0.087^~2, 3~^~09/01/2015~ -~05100~^~621~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~04/01/2013~ -~05100~^~624~^0.011^6^0.000^~1~^~A~^^^1^0.012^0.014^5^0.012^0.014^~2, 3~^~09/01/2015~ -~05100~^~625~^0.026^6^0.001^~1~^~A~^^^1^0.028^0.032^5^0.028^0.031^~2, 3~^~09/01/2015~ -~05100~^~626~^0.768^6^0.013^~1~^~AS~^^^1^0.842^0.934^5^0.849^0.915^~2, 3~^~09/01/2015~ -~05100~^~627~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2013~ -~05100~^~628~^0.072^6^0.002^~1~^~A~^^^1^0.075^0.089^5^0.078^0.088^~2, 3~^~09/01/2015~ -~05100~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~09/01/2015~ -~05100~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2013~ -~05100~^~631~^0.009^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~09/01/2015~ -~05100~^~645~^5.422^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~646~^2.498^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~652~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^5^0.009^0.011^~2, 3~^~09/01/2015~ -~05100~^~653~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.018^5^0.015^0.019^~2, 3~^~09/01/2015~ -~05100~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~09/01/2015~ -~05100~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~09/01/2015~ -~05100~^~663~^0.041^6^0.003^~1~^~A~^^^1^0.039^0.059^5^0.040^0.055^~2, 3~^~09/01/2015~ -~05100~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~665~^0.015^6^0.001^~1~^~A~^^^1^0.016^0.019^5^0.016^0.019^~2, 3~^~09/01/2015~ -~05100~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.019^5^0.011^0.018^~2, 3~^~09/01/2015~ -~05100~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~672~^0.016^6^0.001^~1~^~A~^^^1^0.017^0.020^5^0.017^0.020^~2, 3~^~09/01/2015~ -~05100~^~673~^0.764^6^0.013^~1~^~A~^^^1^0.837^0.928^5^0.845^0.909^~2, 3~^~09/01/2015~ -~05100~^~674~^4.504^6^0.119^~1~^~A~^^^1^4.736^5.640^5^4.869^5.478^~2, 3~^~09/01/2015~ -~05100~^~675~^2.199^6^0.093^~1~^~A~^^^1^2.247^2.909^5^2.287^2.764^~2, 3~^~09/01/2015~ -~05100~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~05100~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~05100~^~687~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.012^~2, 3~^~09/01/2015~ -~05100~^~689~^0.030^6^0.002^~1~^~AS~^^^1^0.029^0.038^5^0.030^0.038^~2, 3~^~09/01/2015~ -~05100~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~05100~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~851~^0.112^6^0.008^~1~^~A~^^^1^0.103^0.153^5^0.107^0.150^~2, 3~^~09/01/2015~ -~05100~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~05100~^~853~^0.029^6^0.001^~1~^~A~^^^1^0.029^0.038^5^0.029^0.037^~2, 3~^~09/01/2015~ -~05100~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05100~^~858~^0.020^6^0.001^~1~^~A~^^^1^0.020^0.025^5^0.020^0.025^~2, 3~^~09/01/2015~ -~05101~^~312~^0.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~315~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~404~^0.106^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~405~^0.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~406~^5.265^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~410~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~415~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~501~^0.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~502~^0.795^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~503~^0.941^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~504~^1.421^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~505~^1.474^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~506~^0.499^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~507~^0.287^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~508~^0.785^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~509~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~510~^0.953^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~511~^1.247^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~512~^0.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~513~^1.173^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~514~^1.703^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~515~^3.202^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~516~^1.465^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~517~^1.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~518~^0.759^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~606~^5.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05101~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~612~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~613~^3.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~614~^1.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~617~^8.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~618~^4.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~619~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~626~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05101~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~645~^8.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05101~^~646~^5.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~312~^0.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~315~^0.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~404~^0.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~405~^0.137^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~406~^6.697^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~410~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~501~^0.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~502~^1.056^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~503~^1.239^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~504~^1.851^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~505~^2.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~506~^0.669^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~507~^0.363^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~508~^1.002^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~509~^0.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~510~^1.245^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~511~^1.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~512~^0.729^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~513~^1.595^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~514~^2.315^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~515~^3.818^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~516~^2.013^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~517~^1.448^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~518~^0.947^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~606~^6.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05102~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~612~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~613~^4.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~614~^1.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~617~^7.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~618~^4.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~619~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~626~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~628~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05102~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~645~^8.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05102~^~646~^4.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05103~^~312~^0.041^6^0.002^~1~^~A~^^^1^0.035^0.048^5^0.035^0.047^~2, 3~^~04/01/2013~ -~05103~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~04/01/2013~ -~05103~^~404~^0.065^3^0.004^~1~^~A~^^^1^0.060^0.074^2^0.047^0.084^~2, 3~^~04/01/2013~ -~05103~^~405~^0.153^3^0.028^~1~^~A~^^^1^0.120^0.210^2^0.031^0.276^~2, 3~^~04/01/2013~ -~05103~^~406~^6.320^3^0.404^~1~^~A~^^^1^5.820^7.120^2^4.581^8.059^~2, 3~^~04/01/2013~ -~05103~^~410~^0.860^2^^~1~^~A~^^^1^0.830^0.890^1^^^^~04/01/2013~ -~05103~^~415~^0.558^3^0.013^~1~^~A~^^^1^0.533^0.576^2^0.502^0.613^~2, 3~^~04/01/2013~ -~05103~^~501~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~502~^1.067^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~503~^1.167^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~504~^1.968^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~505~^2.287^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~506~^0.619^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~507~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~508~^0.960^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~509~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~510~^1.231^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~511~^1.609^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~512~^0.887^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~513~^1.389^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~514~^2.238^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~515~^3.524^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~516~^1.053^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~517~^0.756^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~518~^0.907^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05103~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~606~^4.976^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05103~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05103~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05103~^~610~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.008^~2, 3~^~04/01/2013~ -~05103~^~611~^0.008^6^0.001^~1~^~A~^^^1^0.004^0.012^5^0.005^0.011^~2, 3~^~04/01/2013~ -~05103~^~612~^0.098^6^0.004^~1~^~A~^^^1^0.085^0.110^5^0.087^0.109^~2, 3~^~04/01/2013~ -~05103~^~613~^3.883^6^0.105^~1~^~A~^^^1^3.608^4.212^5^3.612^4.154^~2, 3~^~04/01/2013~ -~05103~^~614~^0.927^6^0.030^~1~^~A~^^^1^0.847^1.019^5^0.850^1.004^~2, 3~^~04/01/2013~ -~05103~^~615~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.012^~2, 3~^~04/01/2013~ -~05103~^~617~^6.436^6^0.173^~1~^~AS~^^^1^5.936^6.891^5^5.990^6.882^~2, 3~^~04/01/2013~ -~05103~^~618~^3.216^6^0.120^~1~^~AS~^^^1^2.844^3.719^5^2.908^3.524^~2, 3~^~04/01/2013~ -~05103~^~619~^0.165^6^0.009^~1~^~AS~^^^1^0.139^0.199^5^0.141^0.189^~2, 3~^~04/01/2013~ -~05103~^~620~^0.098^6^0.003^~1~^~A~^^^1^0.090^0.111^5^0.090^0.106^~2, 3~^~04/01/2013~ -~05103~^~621~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.003^0.008^~1, 2, 3~^~04/01/2013~ -~05103~^~624~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.012^5^0.011^0.012^~2, 3~^~04/01/2013~ -~05103~^~625~^0.037^6^0.001^~1~^~A~^^^1^0.033^0.040^5^0.034^0.040^~2, 3~^~04/01/2013~ -~05103~^~626~^1.115^6^0.023^~1~^~AS~^^^1^1.053^1.182^5^1.056^1.174^~2, 3~^~04/01/2013~ -~05103~^~627~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05103~^~628~^0.101^6^0.001^~1~^~A~^^^1^0.097^0.104^5^0.098^0.104^~2, 3~^~04/01/2013~ -~05103~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05103~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2013~ -~05103~^~631~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~2, 3~^~04/01/2013~ -~05103~^~645~^7.706^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~646~^3.590^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~652~^0.010^6^0.002^~1~^~A~^^^1^0.000^0.014^5^0.005^0.016^~1, 2, 3~^~04/01/2013~ -~05103~^~653~^0.018^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.015^0.021^~2, 3~^~04/01/2013~ -~05103~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~05103~^~662~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.009^5^0.006^0.009^~2, 3~^~04/01/2013~ -~05103~^~663~^0.055^6^0.004^~1~^~A~^^^1^0.043^0.070^5^0.044^0.067^~2, 3~^~04/01/2013~ -~05103~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05103~^~665~^0.021^6^0.001^~1~^~A~^^^1^0.018^0.027^5^0.018^0.024^~2, 3~^~04/01/2013~ -~05103~^~670~^0.018^6^0.002^~1~^~A~^^^1^0.012^0.022^5^0.014^0.022^~2, 3~^~04/01/2013~ -~05103~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05103~^~672~^0.022^6^0.001^~1~^~A~^^^1^0.020^0.024^5^0.021^0.024^~2, 3~^~04/01/2013~ -~05103~^~673~^1.108^6^0.023^~1~^~A~^^^1^1.044^1.174^5^1.049^1.167^~2, 3~^~04/01/2013~ -~05103~^~674~^6.381^6^0.170^~1~^~A~^^^1^5.892^6.821^5^5.943^6.819^~2, 3~^~04/01/2013~ -~05103~^~675~^3.177^6^0.120^~1~^~A~^^^1^2.801^3.680^5^2.870^3.484^~2, 3~^~04/01/2013~ -~05103~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~05103~^~685~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05103~^~687~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.017^5^0.011^0.016^~2, 3~^~04/01/2013~ -~05103~^~689~^0.036^6^0.001^~1~^~AS~^^^1^0.033^0.042^5^0.033^0.040^~2, 3~^~04/01/2013~ -~05103~^~693~^0.063^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05103~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05103~^~851~^0.163^6^0.009^~1~^~A~^^^1^0.138^0.194^5^0.141^0.186^~2, 3~^~04/01/2013~ -~05103~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~05103~^~853~^0.035^6^0.001^~1~^~A~^^^1^0.033^0.041^5^0.032^0.038^~2, 3~^~04/01/2013~ -~05103~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05103~^~858~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.023^0.027^~2, 3~^~04/01/2013~ -~05104~^~312~^0.046^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~315~^0.018^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~404~^0.040^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~405~^0.103^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~406~^4.621^8^0.268^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~410~^0.504^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~415~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~501~^0.245^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~502~^0.925^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~503~^1.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~504~^1.616^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~505~^1.791^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~506~^0.587^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~507~^0.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~508~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~509~^0.706^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~510~^1.087^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~511~^1.469^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~512~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~513~^1.394^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~514~^2.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~515~^3.266^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~516~^1.746^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~517~^1.233^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~518~^0.819^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~606~^4.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~613~^3.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~614~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~617~^5.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~618~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~620~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~626~^0.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05104~^~628~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~645~^6.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05104~^~646~^3.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~312~^0.041^24^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~315~^0.018^24^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~404~^0.059^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~405~^0.101^16^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~406~^7.359^16^0.382^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~410~^0.836^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~415~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~501~^0.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~502~^0.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~503~^1.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~504~^1.649^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~505~^1.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~506~^0.608^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~507~^0.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~508~^0.872^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~509~^0.742^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~510~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~511~^1.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~512~^0.682^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~513~^1.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~514~^1.958^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~515~^3.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~516~^1.079^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~517~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~518~^0.756^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~605~^0.070^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2002~ -~05105~^~606~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05105~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05105~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05105~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05105~^~611~^0.010^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~612~^0.030^27^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~613~^0.600^27^0.022^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~614~^0.290^27^0.015^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~617~^0.730^27^0.028^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~618~^0.470^27^0.020^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~619~^0.020^15^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~620~^0.120^26^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~621~^0.050^12^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~626~^0.080^27^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05105~^~628~^0.010^4^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~629~^0.010^13^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05105~^~631~^0.030^13^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~645~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05105~^~646~^0.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~312~^0.053^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~315~^0.016^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~405~^0.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~406~^7.239^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~410~^0.989^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~415~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~501~^0.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~502~^1.274^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~503~^1.592^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~504~^2.262^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~505~^2.562^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~506~^0.835^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~507~^0.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~508~^1.196^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~509~^1.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~510~^1.496^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~511~^1.819^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~512~^0.936^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~513~^1.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~514~^2.687^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~515~^4.516^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~516~^1.481^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~517~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~518~^1.038^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~606~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05106~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~613~^1.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~614~^0.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~617~^2.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~618~^1.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~626~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05106~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~645~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05106~^~646~^2.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~312~^0.054^16^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~315~^0.016^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~404~^0.047^8^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~405~^0.129^8^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~406~^7.312^8^0.694^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~410~^0.999^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~415~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~501~^0.356^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~502~^1.286^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~503~^1.608^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~504~^2.285^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~505~^2.588^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~506~^0.843^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~507~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~508~^1.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~509~^1.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~510~^1.511^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~511~^1.837^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~512~^0.945^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~513~^1.662^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~514~^2.714^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~515~^4.561^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~516~^1.496^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~517~^1.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~518~^1.048^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~606~^2.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05107~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05107~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05107~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~613~^1.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~614~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~617~^2.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~618~^1.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~626~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05107~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~645~^2.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05107~^~646~^1.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~312~^0.047^16^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~315~^0.017^16^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~404~^0.044^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~405~^0.110^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~406~^5.200^8^0.375^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~410~^0.571^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~501~^0.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~502~^1.148^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~503~^1.435^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~504~^2.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~505~^2.309^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~506~^0.752^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~507~^0.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~508~^1.078^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~509~^0.917^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~510~^1.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~511~^1.639^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~512~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~513~^1.483^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~514~^2.422^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~515~^4.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~516~^1.335^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~517~^1.117^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~518~^0.935^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~606~^2.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~613~^1.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~614~^0.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~617~^1.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~618~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~621~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~626~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05108~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~645~^2.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05108~^~646~^1.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~312~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~315~^0.027^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~405~^0.171^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~406~^6.427^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~410~^1.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~501~^0.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~502~^0.709^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~503~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~504~^1.245^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~505~^1.369^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~506~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~507~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~508~^0.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~509~^0.547^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~510~^0.831^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~511~^1.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~512~^0.489^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~513~^0.993^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~514~^1.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~515~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~516~^1.136^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~517~^0.853^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~518~^0.617^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~606~^4.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05109~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~612~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~613~^3.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~614~^0.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~617~^5.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~618~^2.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~626~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~628~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05109~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~645~^6.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05109~^~646~^3.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~312~^0.071^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~315~^0.027^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~404~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~405~^0.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~406~^7.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~410~^1.003^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~501~^0.265^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~502~^0.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~503~^1.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~504~^1.746^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~505~^1.925^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~506~^0.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~507~^0.321^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~508~^0.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~509~^0.767^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~510~^1.166^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~511~^1.517^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~512~^0.688^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~513~^1.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~514~^2.144^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~515~^3.506^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~516~^1.578^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~517~^1.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~518~^0.862^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~606~^3.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05110~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~613~^2.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~614~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~617~^4.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~618~^2.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~626~^0.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05110~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~645~^5.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05110~^~646~^2.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05111~^~312~^0.443^3^0.023^~1~^~A~^^^1^0.397^0.470^2^0.343^0.543^~4~^~04/01/2014~ -~05111~^~315~^0.050^3^0.004^~1~^~A~^^^1^0.044^0.056^2^0.035^0.066^~4~^~04/01/2014~ -~05111~^~404~^0.284^3^0.022^~1~^~A~^^^1^0.254^0.326^2^0.192^0.377^~4~^~04/01/2014~ -~05111~^~405~^1.523^3^0.052^~1~^~A~^^^1^1.430^1.610^2^1.299^1.747^~4~^~04/01/2014~ -~05111~^~406~^6.560^3^0.306^~1~^~A~^^^1^6.080^7.130^2^5.241^7.879^~4~^~04/01/2014~ -~05111~^~415~^1.077^3^0.067^~1~^~A~^^^1^1.010^1.210^2^0.790^1.364^~4~^~04/01/2014~ -~05111~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~606~^0.609^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~612~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.011^2^0.000^0.015^~4~^~04/01/2014~ -~05111~^~613~^0.382^3^0.099^~1~^~A~^^^1^0.205^0.548^2^-0.045^0.809^~4~^~04/01/2014~ -~05111~^~614~^0.207^3^0.051^~1~^~A~^^^1^0.112^0.285^2^-0.011^0.425^~4~^~04/01/2014~ -~05111~^~615~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 4~^~04/01/2014~ -~05111~^~617~^0.752^3^0.202^~1~^~AS~^^^1^0.389^1.086^2^-0.116^1.620^~4~^~04/01/2014~ -~05111~^~618~^0.227^3^0.045^~1~^~AS~^^^1^0.138^0.277^2^0.035^0.419^~4~^~04/01/2014~ -~05111~^~619~^0.033^3^0.007^~1~^~AS~^^^1^0.020^0.045^2^0.001^0.064^~4~^~04/01/2014~ -~05111~^~620~^0.062^3^0.018^~1~^~A~^^^1^0.043^0.097^2^-0.014^0.138^~4~^~04/01/2014~ -~05111~^~621~^0.006^3^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.006^0.019^~4~^~04/01/2014~ -~05111~^~624~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 4~^~04/01/2014~ -~05111~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~626~^0.059^3^0.016^~1~^~AS~^^^1^0.033^0.087^2^-0.009^0.126^~4~^~04/01/2014~ -~05111~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~628~^0.006^3^0.002^~1~^~A~^^^1^0.003^0.009^2^-0.001^0.014^~4~^~04/01/2014~ -~05111~^~629~^0.004^3^0.002^~1~^~A~^^^1^0.001^0.008^2^-0.006^0.013^~1, 4~^~04/01/2014~ -~05111~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^2^0.000^0.000^~4~^~04/01/2014~ -~05111~^~631~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.009^2^-0.006^0.014^~1, 4~^~04/01/2014~ -~05111~^~645~^0.817^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~646~^0.347^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~652~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 4~^~04/01/2014~ -~05111~^~653~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 4~^~04/01/2014~ -~05111~^~654~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~04/01/2014~ -~05111~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~663~^0.007^3^0.003^~1~^~A~^^^1^0.004^0.013^2^-0.005^0.020^~4~^~04/01/2014~ -~05111~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~665~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~04/01/2014~ -~05111~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~04/01/2014~ -~05111~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 4~^~04/01/2014~ -~05111~^~673~^0.059^3^0.016^~1~^~A~^^^1^0.033^0.087^2^-0.009^0.126^~4~^~04/01/2014~ -~05111~^~674~^0.745^3^0.199^~1~^~A~^^^1^0.385^1.073^2^-0.112^1.602^~4~^~04/01/2014~ -~05111~^~675~^0.226^3^0.044^~1~^~A~^^^1^0.138^0.277^2^0.036^0.415^~4~^~04/01/2014~ -~05111~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~04/01/2014~ -~05111~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~4~^~04/01/2014~ -~05111~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05111~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~851~^0.033^3^0.007^~1~^~A~^^^1^0.020^0.045^2^0.001^0.064^~4~^~04/01/2014~ -~05111~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 4~^~04/01/2014~ -~05111~^~853~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 4~^~04/01/2014~ -~05111~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2014~ -~05111~^~858~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.009^2^-0.003^0.013^~4~^~04/01/2014~ -~05112~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~315~^0.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~404~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~405~^0.143^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~406~^7.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~410~^0.918^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~501~^0.266^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~502~^0.989^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~503~^1.191^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~504~^1.739^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~505~^1.945^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~506~^0.636^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~507~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~508~^0.929^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~509~^0.769^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~510~^1.162^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~511~^1.506^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~512~^0.701^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~513~^1.403^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~514~^2.137^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~515~^3.497^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~516~^1.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~517~^1.173^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~518~^0.847^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~606~^3.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05112~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~613~^2.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~614~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~617~^4.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~618~^2.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~619~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~626~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~628~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05112~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~645~^5.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05112~^~646~^2.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~312~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~315~^0.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~404~^0.069^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~405~^0.134^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~406~^7.875^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~410~^1.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~415~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~501~^0.237^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~502~^0.859^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~503~^1.073^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~504~^1.526^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~505~^1.727^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~506~^0.563^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~507~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~508~^0.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~509~^0.686^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~510~^1.008^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~511~^1.226^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~512~^0.631^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~513~^1.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~514~^1.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~515~^3.045^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~516~^0.998^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~517~^0.836^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~518~^0.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~606~^0.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05113~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~613~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~614~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~617~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~618~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~626~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05113~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05113~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~645~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05113~^~646~^0.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~312~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~404~^0.062^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~405~^0.147^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~406~^7.881^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~410~^0.972^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~501~^0.292^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~502~^1.056^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~503~^1.321^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~504~^1.877^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~505~^2.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~506~^0.693^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~507~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~508~^0.993^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~509~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~510~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~511~^1.509^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~512~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~513~^1.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~514~^2.229^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~515~^3.745^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~516~^1.229^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~517~^1.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~518~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~606~^1.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05114~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~613~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~614~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~617~^2.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~618~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~626~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05114~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~645~^2.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05114~^~646~^1.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~312~^0.218^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~315~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~404~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~405~^0.818^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~406~^6.208^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~410~^2.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~415~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~501~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~502~^0.825^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~503~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~504~^1.424^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~505~^1.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~506~^0.457^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~507~^0.241^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~508~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~509~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~510~^0.943^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~511~^1.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~512~^0.415^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~513~^0.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~514~^1.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~515~^2.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~516~^0.991^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~517~^0.927^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~518~^0.795^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~606~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05115~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~613~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~614~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~617~^1.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~618~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~620~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~626~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05115~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~645~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05115~^~646~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~312~^0.236^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~315~^0.147^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~405~^0.808^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~406~^4.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~410~^2.512^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~415~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~501~^0.295^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~502~^1.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~503~^1.333^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~504~^2.102^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~505~^1.945^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~506~^0.674^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~507~^0.355^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~508~^1.195^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~509~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~510~^1.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~511~^1.809^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~512~^0.612^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~513~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~514~^2.503^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~515~^4.146^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~516~^1.463^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~517~^1.368^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~518~^1.172^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~606~^1.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05116~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~613~^0.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~614~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~617~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~618~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~620~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~626~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05116~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~645~^1.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05116~^~646~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~312~^0.038^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~404~^0.066^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~405~^0.089^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~406~^10.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~410~^0.854^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~415~^0.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~501~^0.259^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~502~^0.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~503~^1.172^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~504~^1.666^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~505~^1.886^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~506~^0.614^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~507~^0.284^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~508~^0.881^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~509~^0.749^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~510~^1.101^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~511~^1.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~512~^0.689^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~513~^1.211^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~514~^1.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~515~^3.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~516~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~517~^0.913^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~518~^0.764^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~606~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05117~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~612~^0.010^5^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~613~^0.260^5^0.091^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~614~^0.100^5^0.034^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~617~^0.400^5^0.136^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~618~^0.240^5^0.079^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~619~^0.010^5^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~620~^0.080^5^0.030^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~621~^0.020^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~626~^0.070^5^0.025^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05117~^~628~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05117~^~631~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~645~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05117~^~646~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~312~^0.042^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~315~^0.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~404~^0.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~405~^0.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~406~^10.469^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~410~^0.907^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~415~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~501~^0.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~502~^1.146^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~503~^1.433^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~504~^2.036^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~505~^2.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~506~^0.751^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~507~^0.347^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~508~^1.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~509~^0.916^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~510~^1.346^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~511~^1.637^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~512~^0.842^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~513~^1.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~514~^2.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~515~^4.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~516~^1.333^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~517~^1.116^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~518~^0.933^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~606~^1.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05118~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05118~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05118~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~613~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~614~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~617~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~618~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~626~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05118~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~645~^1.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05118~^~646~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~312~^0.059^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~404~^0.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~405~^0.173^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~406~^5.878^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~410~^1.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~415~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~501~^0.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~502~^0.791^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~503~^0.989^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~504~^1.406^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~505~^1.592^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~506~^0.519^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~507~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~508~^0.744^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~509~^0.633^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~510~^0.929^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~511~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~512~^0.582^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~513~^1.022^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~514~^1.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~515~^2.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~516~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~517~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~518~^0.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~606~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05119~^~611~^0.020^17^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~612~^0.020^24^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~613~^0.620^24^0.056^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~614~^0.240^24^0.025^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~617~^0.930^24^0.086^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~618~^0.690^24^0.063^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~619~^0.030^18^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~620~^0.090^16^0.018^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~621~^0.030^9^0.011^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~626~^0.160^24^0.017^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05119~^~628~^0.010^6^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~629~^0.010^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05119~^~631~^0.020^9^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~645~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05119~^~646~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~312~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~315~^0.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~404~^0.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~405~^0.192^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~406~^5.736^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~410~^1.026^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~415~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~501~^0.272^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~502~^0.982^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~503~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~504~^1.745^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~505~^1.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~506~^0.644^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~507~^0.298^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~508~^0.923^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~509~^0.785^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~510~^1.153^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~511~^1.402^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~512~^0.722^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~513~^1.269^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~514~^2.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~515~^3.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~516~^1.142^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~517~^0.956^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~518~^0.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~606~^2.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05120~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~613~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~614~^0.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~617~^2.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~618~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~620~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~626~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~628~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05120~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~645~^3.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05120~^~646~^2.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~312~^0.092^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~315~^0.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~404~^0.111^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~405~^0.251^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~406~^6.383^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~410~^1.129^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~415~^0.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~501~^0.195^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~502~^0.728^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~503~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~504~^1.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~505~^1.407^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~506~^0.461^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~507~^0.234^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~508~^0.688^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~509~^0.563^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~510~^0.855^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~511~^1.104^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~512~^0.502^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~513~^1.006^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~514~^1.566^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~515~^2.563^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~516~^1.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~517~^0.856^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~518~^0.631^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~606~^5.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05121~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05121~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05121~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05121~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~612~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~613~^3.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~614~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~617~^6.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~618~^3.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~619~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~620~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~626~^1.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05121~^~628~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05121~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~645~^7.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05121~^~646~^4.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05122~^~312~^0.079^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~315~^0.034^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~404~^0.054^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~ -~05122~^~405~^0.221^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~406~^5.677^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~410~^0.878^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~415~^0.234^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~501~^0.262^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~502~^0.974^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~503~^1.174^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~504~^1.727^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~505~^1.915^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~506~^0.625^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~507~^0.316^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~508~^0.923^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~509~^0.764^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~510~^1.152^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~511~^1.475^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~512~^0.693^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~513~^1.370^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~514~^2.102^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~515~^3.423^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~516~^1.497^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~517~^1.130^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~518~^0.836^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~521~^0.002^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~605~^0.008^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~606~^3.324^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~607~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~608~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~609~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~610~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~611~^0.018^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~612~^0.092^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~613~^2.422^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~614~^0.697^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~615~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~617~^3.809^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~618~^2.227^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~619~^0.102^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~620~^0.116^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~621~^0.037^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~624~^0.001^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~625~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~626~^0.633^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~627~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~628~^0.112^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~629~^0.009^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~630~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~631~^0.018^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~645~^4.609^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~646~^2.584^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~ -~05122~^~652~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~653~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~672~^0.002^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~687~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~689~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05122~^~697~^0.000^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~ -~05123~^~312~^0.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~315~^0.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~404~^0.114^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~405~^0.167^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~406~^6.262^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~410~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~501~^0.196^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~502~^0.726^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~503~^0.877^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~504~^1.278^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~505~^1.431^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~506~^0.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~507~^0.234^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~508~^0.682^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~509~^0.566^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~510~^0.853^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~511~^1.099^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~512~^0.517^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~513~^1.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~514~^1.565^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~515~^2.568^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~516~^1.126^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~517~^0.846^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~518~^0.619^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~606~^5.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05123~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~612~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~613~^4.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~614~^1.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~617~^6.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~618~^3.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~626~^1.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05123~^~628~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05123~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~645~^8.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05123~^~646~^4.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~312~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~404~^0.094^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~406~^5.798^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~410~^0.753^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~415~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~501~^0.301^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~502~^1.113^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~503~^1.348^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~504~^1.961^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~505~^2.197^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~506~^0.717^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~507~^0.357^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~508~^1.046^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~509~^0.869^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~510~^1.307^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~511~^1.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~512~^0.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~513~^1.559^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~514~^2.397^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~515~^3.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~516~^1.702^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~517~^1.286^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~518~^0.946^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~606~^5.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05124~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~613~^3.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~614~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~617~^5.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~618~^3.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~619~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~620~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~621~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~626~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~628~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05124~^~631~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~645~^7.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05124~^~646~^4.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~312~^0.089^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~315~^0.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~404~^0.149^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~405~^0.207^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~406~^7.477^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~410~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~415~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~501~^0.248^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~502~^0.898^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~503~^1.122^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~504~^1.595^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~505~^1.806^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~506~^0.588^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~507~^0.272^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~508~^0.844^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~509~^0.718^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~510~^1.054^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~511~^1.282^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~512~^0.660^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~513~^1.160^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~514~^1.895^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~515~^3.184^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~516~^1.044^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~517~^0.874^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~518~^0.731^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05125~^~606~^1.570^0^^~1~^^^^^^^^^^^~08/01/2002~ -~05125~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05125~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05125~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05125~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05125~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~613~^1.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~614~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~617~^1.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~618~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~620~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~621~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~626~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05125~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05125~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~645~^1.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05125~^~646~^1.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~312~^0.116^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~315~^0.022^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~404~^0.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~405~^0.277^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~406~^6.408^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~410~^0.861^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~415~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~501~^0.356^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~502~^1.285^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~503~^1.606^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~504~^2.283^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~505~^2.585^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~506~^0.842^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~507~^0.389^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~508~^1.207^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~509~^1.027^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~510~^1.509^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~511~^1.835^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~512~^0.944^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~513~^1.660^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~514~^2.711^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~515~^4.556^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~516~^1.494^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~517~^1.251^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~518~^1.046^0^^~1~^^^^^^^^^^^~07/01/2002~ -~05126~^~606~^3.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05126~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~612~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~613~^2.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~614~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~617~^3.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~618~^2.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~620~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~621~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~626~^0.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~ -~05126~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05126~^~631~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~645~^4.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05126~^~646~^2.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~312~^0.275^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~315~^0.151^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~404~^0.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~405~^1.106^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~406~^8.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~410~^3.275^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~415~^0.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~501~^0.203^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~502~^0.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~503~^0.896^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~504~^1.425^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~505~^1.306^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~506~^0.448^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~507~^0.238^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~508~^0.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~509~^0.586^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~510~^0.949^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~511~^1.198^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~512~^0.416^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~513~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~514~^1.676^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~515~^2.729^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~516~^0.983^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~517~^0.912^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~518~^0.782^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~606~^2.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05127~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~613~^1.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~614~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~617~^2.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~618~^1.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~620~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~626~^0.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05127~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~645~^2.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05127~^~646~^2.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~312~^0.299^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~315~^0.177^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~404~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~405~^1.047^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~406~^4.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~410~^2.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~501~^0.291^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~502~^1.167^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~503~^1.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~504~^2.046^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~505~^1.875^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~506~^0.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~507~^0.342^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~508~^1.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~509~^0.842^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~510~^1.363^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~511~^1.724^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~512~^0.596^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~513~^1.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~514~^2.408^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~515~^3.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~516~^1.414^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~517~^1.311^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~518~^1.125^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~606~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05128~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~613~^1.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~614~^0.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~617~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~618~^1.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~620~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~626~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05128~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~645~^2.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05128~^~646~^1.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~315~^0.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~404~^0.132^6^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~405~^0.123^8^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~406~^9.915^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~410~^0.887^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~415~^0.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~501~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~502~^0.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~503~^1.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~504~^1.733^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~505~^1.962^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~506~^0.639^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~507~^0.296^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~508~^0.916^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~509~^0.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~510~^1.145^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~511~^1.393^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~512~^0.717^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~513~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~514~^2.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~515~^3.459^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~516~^1.134^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~517~^0.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~518~^0.794^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~606~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05129~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~612~^0.020^5^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~613~^0.670^5^0.182^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~614~^0.260^5^0.067^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~617~^1.020^5^0.269^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~618~^0.610^5^0.156^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~619~^0.030^5^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~620~^0.210^5^0.063^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~621~^0.060^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~626~^0.170^5^0.053^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05129~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05129~^~631~^0.020^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~645~^1.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05129~^~646~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~312~^0.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~404~^0.094^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~405~^0.196^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~406~^8.538^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~410~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~415~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~501~^0.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~502~^1.396^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~503~^1.744^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~504~^2.479^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~505~^2.807^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~506~^0.914^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~507~^0.423^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~508~^1.311^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~509~^1.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~510~^1.639^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~511~^1.993^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~512~^1.025^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~513~^1.803^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~514~^2.944^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~515~^4.948^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~516~^1.623^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~517~^1.359^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~518~^1.136^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~606~^1.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05130~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~613~^1.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~614~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~617~^2.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~618~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~620~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~621~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~626~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05130~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~645~^2.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05130~^~646~^1.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~312~^0.107^43^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~404~^0.163^6^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~405~^0.279^6^0.018^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~406~^5.405^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~410~^1.262^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~501~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~502~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~503~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~504~^1.478^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~505~^1.674^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~506~^0.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~507~^0.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~508~^0.782^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~509~^0.665^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~510~^0.977^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~511~^1.188^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~512~^0.611^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~513~^1.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~514~^1.756^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~515~^2.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~516~^0.968^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~517~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~518~^0.678^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~606~^2.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05131~^~611~^0.040^17^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~612~^0.050^24^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~613~^1.390^24^0.074^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~614~^0.550^24^0.038^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~617~^2.100^24^0.117^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~618~^1.550^24^0.084^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~619~^0.070^18^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~620~^0.190^16^0.036^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~621~^0.080^9^0.023^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~626~^0.370^24^0.027^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05131~^~628~^0.020^6^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~629~^0.020^8^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05131~^~631~^0.040^9^0.011^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~645~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05131~^~646~^2.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~312~^0.144^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~315~^0.023^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~405~^0.347^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~406~^4.556^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~410~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~415~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~501~^0.329^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~502~^1.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~503~^1.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~504~^2.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~505~^2.391^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~506~^0.779^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~507~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~508~^1.117^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~509~^0.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~510~^1.396^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~511~^1.698^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~512~^0.874^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~513~^1.536^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~514~^2.508^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~515~^4.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~516~^1.382^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~517~^1.157^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~518~^0.968^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~606~^4.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05132~^~611~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~613~^2.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~614~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~617~^4.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~618~^2.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~619~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~620~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~621~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~626~^0.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~628~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~629~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05132~^~631~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~645~^5.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05132~^~646~^3.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~312~^0.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~315~^0.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~404~^0.065^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~405~^0.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~406~^7.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~410~^1.101^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~415~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~501~^0.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~502~^0.776^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~503~^0.934^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~504~^1.369^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~505~^1.514^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~506~^0.495^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~507~^0.248^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~508~^0.733^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~509~^0.603^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~510~^0.913^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~511~^1.172^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~512~^0.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~513~^1.079^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~514~^1.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~515~^2.733^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~516~^1.189^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~517~^0.902^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~518~^0.666^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~606~^4.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05133~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~613~^3.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~614~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~617~^5.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~618~^3.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~619~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~626~^0.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~628~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05133~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~645~^7.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05133~^~646~^3.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~312~^0.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~315~^0.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~405~^0.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~406~^8.415^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~410~^1.184^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~501~^0.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~502~^1.178^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~503~^1.419^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~504~^2.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~505~^2.302^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~506~^0.753^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~507~^0.377^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~508~^1.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~509~^0.916^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~510~^1.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~511~^1.777^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~512~^0.828^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~513~^1.637^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~514~^2.534^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~515~^4.151^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~516~^1.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~517~^1.366^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~518~^1.009^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~606~^3.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05134~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~613~^2.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~614~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~617~^3.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~618~^2.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~626~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~628~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05134~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~645~^4.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05134~^~646~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~312~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~404~^0.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~405~^0.127^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~406~^7.273^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~410~^0.965^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~415~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~501~^0.213^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~502~^0.786^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~503~^0.954^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~504~^1.386^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~505~^1.553^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~506~^0.507^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~507~^0.251^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~508~^0.739^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~509~^0.615^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~510~^0.923^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~511~^1.181^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~512~^0.562^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~513~^1.094^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~514~^1.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~515~^2.781^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~516~^1.181^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~517~^0.897^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~518~^0.666^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~606~^4.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05135~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~613~^3.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~614~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~617~^6.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~618~^3.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~619~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~620~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~626~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~05135~^~628~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05135~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~645~^7.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05135~^~646~^3.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~312~^0.069^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~405~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~406~^8.947^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~410~^1.104^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~415~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~501~^0.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~502~^1.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~503~^1.455^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~504~^2.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~505~^2.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~506~^0.774^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~507~^0.384^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~508~^1.128^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~509~^0.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~510~^1.409^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~511~^1.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~512~^0.857^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~513~^1.674^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~514~^2.582^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~515~^4.246^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~516~^1.815^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~517~^1.376^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~518~^1.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~606~^3.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05136~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~613~^2.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~614~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~617~^3.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~618~^2.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~626~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05136~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~645~^4.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05136~^~646~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~312~^0.268^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~315~^0.163^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~404~^0.097^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~405~^1.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~406~^6.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~410~^3.618^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~415~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~501~^0.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~502~^0.826^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~503~^0.927^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~504~^1.496^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~505~^1.346^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~506~^0.452^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~507~^0.243^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~508~^0.841^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~509~^0.609^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~510~^1.007^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~511~^1.203^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~512~^0.437^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~513~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~514~^1.718^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~515~^2.703^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~516~^1.016^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~517~^0.926^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~518~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~606~^1.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05137~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~613~^0.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~614~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~617~^1.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~618~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~620~^0.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~626~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05137~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~645~^1.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05137~^~646~^1.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~312~^0.294^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~315~^0.192^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~404~^0.095^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~405~^1.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~406~^4.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~410~^3.296^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~415~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~501~^0.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~502~^1.193^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~503~^1.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~504~^2.158^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~505~^1.942^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~506~^0.654^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~507~^0.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~508~^1.215^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~509~^0.878^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~510~^1.453^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~511~^1.738^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~512~^0.631^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~513~^1.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~514~^2.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~515~^3.907^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~516~^1.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~517~^1.338^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~518~^1.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~606~^1.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05138~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~613~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~614~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~617~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~618~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~620~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~626~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05138~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~645~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05138~^~646~^1.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~312~^0.236^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~315~^0.017^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~404~^0.197^20^0.014^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~405~^0.210^20^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~406~^3.934^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~410~^0.951^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~415~^0.190^20^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~501~^0.144^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~502~^0.471^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~503~^0.537^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~504~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~505~^0.912^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~506~^0.291^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~507~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~508~^0.459^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~509~^0.395^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~510~^0.573^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~511~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~512~^0.283^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~513~^0.777^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~514~^1.102^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~515~^1.709^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~516~^0.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~517~^0.686^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~518~^0.488^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~606~^13.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05139~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05139~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05139~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~611~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~612~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~613~^9.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~614~^3.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~617~^16.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~618~^4.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~619~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~626~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05139~^~628~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05139~^~645~^18.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05139~^~646~^5.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~312~^0.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05140~^~404~^0.174^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~405~^0.269^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~406~^4.825^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~410~^1.098^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~501~^0.232^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~502~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~503~^0.872^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~504~^1.465^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~505~^1.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~506~^0.475^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~507~^0.299^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~508~^0.752^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~509~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~510~^0.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~511~^1.284^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~512~^0.462^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~513~^1.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~514~^1.814^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~515~^2.798^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~516~^1.624^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~517~^1.172^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~518~^0.804^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~606~^9.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~612~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~613~^6.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~614~^2.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~617~^11.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~618~^3.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~619~^0.290^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~626~^1.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05140~^~628~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~645~^12.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05140~^~646~^3.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~312~^0.253^282^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05141~^~404~^0.360^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~405~^0.450^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~406~^5.300^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~410~^1.600^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~415~^0.340^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~501~^0.254^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~502~^0.781^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~503~^0.939^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~504~^1.544^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~505~^1.564^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~506~^0.494^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~507~^0.281^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~508~^0.766^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~509~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~510~^0.956^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~511~^1.166^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~512~^0.483^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~513~^1.158^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~514~^1.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~515~^2.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~516~^1.024^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~517~^0.898^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~518~^0.787^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~606~^2.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~611~^0.030^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~612~^0.020^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~613~^1.220^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~614~^0.770^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~617~^1.320^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~618~^0.670^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~619~^0.080^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~626~^0.220^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05141~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~645~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05141~^~646~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~312~^0.231^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05142~^~404~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~405~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~406~^5.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~410~^1.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~415~^0.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~501~^0.327^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~502~^1.003^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~503~^1.206^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~504~^1.983^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~505~^2.009^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~506~^0.635^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~507~^0.361^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~508~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~509~^0.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~510~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~511~^1.499^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~512~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~513~^1.487^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~514~^2.299^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~515~^3.673^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~516~^1.315^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~517~^1.153^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~518~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05142~^~606~^3.951^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05142~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05142~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05142~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05142~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~611~^0.042^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~612~^0.052^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~613~^2.537^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~614~^1.321^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~617~^3.369^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~618~^1.341^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~619~^0.146^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~626~^0.447^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05142~^~628~^0.042^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05142~^~645~^3.858^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05142~^~646~^1.487^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05143~^~312~^5.962^290^0.171^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~315~^0.258^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~404~^0.562^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~405~^0.892^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~406~^6.500^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~410~^6.184^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~415~^0.760^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~501~^0.264^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~502~^0.833^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~503~^0.995^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~504~^1.691^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~505~^1.418^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~506~^0.444^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~507~^0.252^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~508~^0.932^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~509~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~510~^1.181^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~511~^1.148^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~512~^0.498^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~513~^1.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~514~^1.781^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~515~^2.428^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~516~^1.088^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~517~^0.929^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~518~^0.806^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~606~^1.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~612~^0.010^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~613~^0.800^4^0.100^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~614~^0.630^4^0.090^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~617~^0.650^4^0.152^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~618~^0.370^4^0.092^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~619~^0.000^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~620~^0.260^4^0.130^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~626~^0.050^4^0.021^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05143~^~645~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05143~^~646~^0.630^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~312~^0.312^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~404~^0.351^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~405~^0.269^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~406~^3.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~410~^0.701^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~415~^0.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~501~^0.237^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~502~^0.738^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~503~^0.878^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~504~^1.449^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~505~^1.468^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~506~^0.465^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~507~^0.269^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~508~^0.723^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~509~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~510~^0.902^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~511~^1.124^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~512~^0.454^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~513~^1.119^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~514~^1.698^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~515~^2.697^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~516~^1.066^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~517~^0.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~518~^0.748^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~606~^5.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05144~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05144~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05144~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~613~^3.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~614~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~617~^6.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~618~^1.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~619~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~626~^0.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05144~^~628~^0.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05144~^~645~^6.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05144~^~646~^2.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~312~^0.330^16^0.024^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~404~^0.416^17^0.038^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~405~^0.310^17^0.027^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~406~^3.444^17^0.217^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~410~^0.770^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~415~^0.630^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~501~^0.276^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~502~^0.848^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~503~^1.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~504~^1.677^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~505~^1.699^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~506~^0.537^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~507~^0.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~508~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~509~^0.756^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~510~^1.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~511~^1.267^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~512~^0.524^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~513~^1.258^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~514~^1.944^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~515~^3.106^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~516~^1.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~517~^0.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~518~^0.854^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~606~^1.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~611~^0.030^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~612~^0.020^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~613~^0.690^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~614~^0.410^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~617~^1.030^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~618~^0.510^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~626~^0.170^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05145~^~645~^1.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05145~^~646~^0.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~312~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~315~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~404~^0.085^10^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~405~^0.245^10^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~406~^3.608^13^0.673^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~410~^1.294^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~415~^0.390^11^0.011^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~501~^0.207^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~502~^0.708^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~503~^0.746^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~504~^1.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~505~^1.254^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~506~^0.383^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~507~^0.247^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~508~^0.665^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~509~^0.508^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~510~^0.777^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~511~^0.987^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~512~^0.442^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~513~^0.977^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~514~^1.426^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~515~^2.358^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~516~^1.005^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~517~^0.766^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~518~^0.632^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~606~^9.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05146~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05146~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05146~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~612~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~613~^6.950^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~614~^2.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~617~^16.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~618~^3.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~619~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~626~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05146~^~628~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05146~^~645~^17.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05146~^~646~^3.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~312~^0.264^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~315~^0.023^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~405~^0.323^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~406~^4.168^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~410~^1.530^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~415~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~501~^0.332^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~502~^1.123^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~503~^1.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~504~^2.109^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~505~^1.988^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~506~^0.608^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~507~^0.390^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05147~^~508~^1.055^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~509~^0.805^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~510~^1.232^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~511~^1.566^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~512~^0.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~513~^1.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~514~^2.262^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~515~^3.739^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~516~^1.594^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~517~^1.216^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~518~^1.002^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~606~^6.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05147~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05147~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05147~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~612~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~613~^4.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~614~^1.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~617~^9.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~618~^2.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~626~^0.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05147~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~645~^10.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05147~^~646~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~312~^0.306^19^0.032^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~315~^0.024^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~404~^0.129^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~405~^0.377^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~406~^4.278^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~410~^1.973^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~415~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~501~^0.317^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~502~^0.972^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~503~^1.168^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~504~^1.922^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~505~^1.947^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~506~^0.615^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~507~^0.349^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~508~^0.954^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~509~^0.866^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~510~^1.190^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~511~^1.452^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~512~^0.601^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~513~^1.441^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~514~^2.228^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~515~^3.560^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~516~^1.274^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~517~^1.117^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~518~^0.979^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~606~^2.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~613~^1.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~614~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~617~^1.580^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~618~^0.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~626~^0.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05148~^~645~^1.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05148~^~646~^0.900^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~312~^0.276^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~315~^0.024^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~404~^0.092^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~405~^0.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~406~^4.081^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~410~^1.834^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~415~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~501~^0.403^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~502~^1.238^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~503~^1.488^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~504~^2.447^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~505~^2.480^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~506~^0.783^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~507~^0.445^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~508~^1.214^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~509~^1.103^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~510~^1.516^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~511~^1.849^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~512~^0.765^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~513~^1.835^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~514~^2.837^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~515~^4.533^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~516~^1.622^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~517~^1.423^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~518~^1.247^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~606~^4.560^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~613~^2.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~614~^1.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~617~^3.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~618~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~626~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05149~^~645~^4.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05149~^~646~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~312~^7.522^19^1.323^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~315~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~404~^0.562^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~405~^0.892^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~406~^6.500^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~410~^6.184^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~415~^0.760^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~501~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~502~^0.728^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~503~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~504~^1.477^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~505~^1.239^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~506~^0.388^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~507~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~508~^0.815^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~509~^0.576^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~510~^1.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~511~^1.003^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~512~^0.435^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~513~^0.951^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~514~^1.556^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~515~^2.121^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~516~^0.951^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~517~^0.812^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~518~^0.705^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~606~^1.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~613~^0.800^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~614~^0.760^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~617~^0.740^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~618~^0.180^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~620~^0.070^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~626~^0.060^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~628~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05150~^~645~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05150~^~646~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05151~^~312~^0.043^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~315~^0.018^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~404~^0.059^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~405~^0.102^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~406~^7.667^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~410~^0.879^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~415~^0.380^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~501~^0.259^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~502~^0.963^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~503~^1.156^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~504~^1.693^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~505~^1.891^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~506~^0.618^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~507~^0.314^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~508~^0.906^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~509~^0.748^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~510~^1.132^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~511~^1.476^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~512~^0.681^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~513~^1.378^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~514~^2.087^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~515~^3.407^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~516~^1.572^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~517~^1.162^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~518~^0.829^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~606~^1.770^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1996~ -~05151~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1996~ -~05151~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1996~ -~05151~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~611~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~612~^0.050^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~613~^1.300^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~614~^0.370^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~617~^2.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~618~^1.190^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~619~^0.050^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~620~^0.070^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~621~^0.030^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~626~^0.340^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1996~ -~05151~^~628~^0.060^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~629~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~631~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~645~^2.430^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05151~^~646~^1.410^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~312~^0.044^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~315~^0.018^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~404~^0.067^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~405~^0.112^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~406~^8.782^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~410~^0.936^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~415~^0.470^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~501~^0.241^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~502~^0.872^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~503~^1.090^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~504~^1.549^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~505~^1.754^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~506~^0.571^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~507~^0.264^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~508~^0.819^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~509~^0.697^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~510~^1.024^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~511~^1.245^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~512~^0.641^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~513~^1.126^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~514~^1.840^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~515~^3.092^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~516~^1.014^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~517~^0.849^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~518~^0.710^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~606~^0.640^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~611~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~612~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~613~^0.420^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~614~^0.180^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~617~^0.570^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~618~^0.400^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~619~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~620~^0.070^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~621~^0.030^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~626~^0.090^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~628~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~629~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~631~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~645~^0.680^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05152~^~646~^0.590^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~404~^0.072^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~405~^0.143^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~406~^6.426^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~410~^0.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~415~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~501~^0.304^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~502~^1.108^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~503~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~504~^1.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~505~^2.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~506~^0.643^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~507~^0.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~508~^0.876^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~509~^0.724^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~510~^1.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~511~^1.412^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~512~^0.864^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~513~^1.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~514~^2.186^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~515~^3.309^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~516~^1.231^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~517~^0.939^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~518~^0.972^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~606~^2.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05153~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05153~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05153~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~611~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~613~^2.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~614~^0.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~617~^3.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~618~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~626~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~05153~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05153~^~645~^4.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05153~^~646~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~312~^0.069^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~315~^0.016^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~405~^0.153^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~406~^6.759^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~410~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~415~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~501~^0.328^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~502~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~503~^1.324^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~504~^1.995^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~505~^2.157^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~506~^0.686^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~507~^0.309^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~508~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~509~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~510~^1.305^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~511~^1.433^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~512~^0.939^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~513~^1.422^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~514~^2.285^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~515~^3.484^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~516~^1.044^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~517~^0.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~518~^1.014^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~606~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~611~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~613~^0.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~614~^0.360^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~617~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~618~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~626~^0.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05154~^~645~^1.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05154~^~646~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~312~^0.046^14^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~315~^0.015^7^0.001^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~404~^0.081^7^0.042^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~405~^0.119^7^0.039^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~406~^8.554^7^0.410^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~410~^0.960^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~415~^0.740^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~501~^0.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~502~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~503~^1.369^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~504~^2.063^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~505~^2.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~506~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~507~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~508~^0.951^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~509~^0.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~510~^1.349^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~511~^1.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~512~^0.971^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~513~^1.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~514~^2.363^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~515~^3.603^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~516~^1.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~517~^0.889^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~518~^1.049^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~606~^1.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~611~^0.040^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~612~^0.030^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~613~^0.670^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~614~^0.320^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~617~^0.860^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~618~^0.480^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~626~^0.180^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05155~^~645~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05155~^~646~^0.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~312~^0.108^14^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~315~^0.020^8^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~404~^0.070^6^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~405~^0.210^6^0.029^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~406~^3.700^6^0.245^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~410~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~415~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~501~^0.309^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~502~^1.112^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~503~^1.247^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~504~^1.879^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~505~^2.032^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~506~^0.646^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~507~^0.291^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~508~^0.867^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~509~^0.728^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~510~^1.229^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~511~^1.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~512~^0.884^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~513~^1.339^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~514~^2.153^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~515~^3.282^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~516~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~517~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~518~^0.955^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~606~^1.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~611~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~613~^0.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~614~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~617~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~618~^0.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~626~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05156~^~645~^1.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05156~^~646~^0.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~312~^0.507^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~404~^0.244^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~405~^0.260^5^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~406~^7.538^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~410~^0.772^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~415~^0.600^5^0.041^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~501~^0.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~502~^0.945^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~503~^1.013^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~504~^1.613^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~505~^1.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~506~^0.591^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~507~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~508~^0.826^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~509~^0.849^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~510~^1.033^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~511~^1.279^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~512~^0.696^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~513~^1.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~514~^1.652^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~515~^2.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~516~^1.542^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~517~^0.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~518~^0.937^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~606~^3.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~05157~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~05157~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~05157~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~611~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~613~^2.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~614~^0.880^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~617~^3.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~618~^2.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~619~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~626~^0.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~05157~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05157~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~645~^4.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05157~^~646~^2.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~312~^0.594^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~404~^0.283^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~405~^0.285^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~406~^8.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~410~^0.787^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~415~^0.530^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~501~^0.341^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~502~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~503~^1.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~504~^1.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~505~^1.905^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~506~^0.689^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~507~^0.380^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~508~^0.944^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~509~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~510~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~511~^1.379^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~512~^0.825^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~513~^1.341^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~514~^1.814^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~515~^2.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~516~^1.442^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~517~^0.797^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~518~^1.062^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~606~^1.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~613~^0.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~614~^0.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~617~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~618~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~626~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05158~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~645~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05158~^~646~^1.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~312~^0.433^3^0.069^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~315~^0.018^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~404~^0.240^3^0.078^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~405~^0.243^3^0.053^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~406~^8.200^3^1.193^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~410~^0.787^3^0.026^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~415~^0.530^3^0.038^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~501~^0.354^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~502~^1.131^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~503~^1.233^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~504~^1.938^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~505~^1.977^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~506~^0.716^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~507~^0.394^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~508~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~509~^1.048^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~510~^1.225^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~511~^1.432^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~512~^0.857^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~513~^1.392^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~514~^1.883^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~515~^2.928^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~516~^1.497^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~517~^0.828^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~518~^1.103^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~606~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~611~^0.020^3^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~612~^0.020^19^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~613~^0.520^19^0.052^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~614~^0.300^19^0.033^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~617~^0.670^19^0.067^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~618~^0.620^19^0.069^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~619~^0.020^19^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~620~^0.080^16^0.023^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~626~^0.160^19^0.016^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~628~^0.000^16^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~629~^0.010^9^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05159~^~631~^0.020^16^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~645~^0.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05159~^~646~^0.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~312~^0.437^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~404~^0.212^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~405~^0.224^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~406~^6.046^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~410~^0.760^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~415~^0.410^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~501~^0.268^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~502~^0.884^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~503~^0.943^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~504~^1.506^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~505~^1.537^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~506~^0.552^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~507~^0.320^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~508~^0.773^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~509~^0.789^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~510~^0.967^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~511~^1.210^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~512~^0.647^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~513~^1.194^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~514~^1.557^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~515~^2.378^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~516~^1.491^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~517~^0.839^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~518~^0.878^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~606~^8.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~613~^4.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~614~^2.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~617~^6.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~618~^2.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~619~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~620~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~626~^3.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05160~^~631~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~645~^9.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05160~^~646~^3.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~312~^0.594^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~404~^0.283^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~405~^0.285^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~406~^6.860^23^0.259^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~410~^0.787^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~415~^0.530^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~501~^0.274^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~502~^0.876^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~503~^0.955^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~504~^1.501^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~505~^1.532^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~506~^0.554^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~507~^0.305^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~508~^0.759^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~509~^0.812^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~510~^0.949^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~511~^1.109^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~512~^0.664^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~513~^1.078^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~514~^1.459^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~515~^2.268^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~516~^1.159^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~517~^0.641^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~518~^0.854^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~606~^1.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~612~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~613~^1.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~614~^0.930^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~617~^2.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~618~^1.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~619~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~620~^0.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~626~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05161~^~631~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~645~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05161~^~646~^1.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~312~^0.433^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~315~^0.018^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~404~^0.240^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~405~^0.243^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~406~^7.322^23^0.278^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~410~^0.787^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~415~^0.530^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~501~^0.341^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~502~^1.090^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~503~^1.187^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~504~^1.866^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~505~^1.905^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~506~^0.689^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~507~^0.380^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~508~^0.944^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~509~^1.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~510~^1.180^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~511~^1.379^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~512~^0.825^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~513~^1.341^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~514~^1.814^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~515~^2.820^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~516~^1.442^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~517~^0.797^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~518~^1.062^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~606~^1.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~613~^0.620^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~614~^0.560^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~617~^1.430^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~618~^0.620^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~619~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~620~^0.140^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~621~^0.020^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~626~^0.180^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~629~^0.010^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05162~^~631~^0.060^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~645~^1.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05162~^~646~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05165~^~312~^0.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~404~^0.048^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~405~^0.185^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~406~^7.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~410~^0.811^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~415~^0.599^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~501~^0.223^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~502~^0.768^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~503~^0.608^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~504~^1.471^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~505~^1.746^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~506~^0.554^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~507~^0.202^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~508~^0.688^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~509~^0.627^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~510~^0.686^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~511~^1.233^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~512~^0.573^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~513~^1.188^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~514~^1.705^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~515~^2.889^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~516~^1.036^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~517~^1.220^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~518~^0.848^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~521~^0.144^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~605~^0.062^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~606~^1.461^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~611~^0.020^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~612~^0.052^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~613~^0.985^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~614~^0.365^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~617~^1.608^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~618~^1.307^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~619~^0.079^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~620~^0.042^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~621~^0.003^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~626~^0.176^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~628~^0.024^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~630~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~631~^0.004^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~645~^1.826^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~646~^1.466^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~653~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~663~^0.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~665~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~670~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~672~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~673~^0.145^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~674~^1.295^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~675~^1.075^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~687~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~693~^0.048^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05165~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~851~^0.066^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05165~^~858~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~312~^0.093^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~ -~05166~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~404~^0.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~405~^0.281^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~406~^9.573^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~410~^0.948^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~415~^0.616^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~501~^0.291^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~502~^1.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~503~^0.796^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~504~^1.925^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~505~^2.282^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~506~^0.724^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~507~^0.265^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~508~^0.903^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~509~^0.819^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~510~^0.902^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~511~^1.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~512~^0.749^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~513~^1.576^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~514~^2.235^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~515~^3.787^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~516~^1.427^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~517~^1.635^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~518~^1.114^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~605~^0.101^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~606~^2.155^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~611~^0.025^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~612~^0.076^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~613~^1.446^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~614~^0.559^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~617~^2.336^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~618~^1.873^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~619~^0.108^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~620~^0.076^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~626~^0.253^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~628~^0.035^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~629~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~645~^2.647^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~646~^2.119^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~652~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~653~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~663~^0.076^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05166~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~665~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~670~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~672~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~673~^0.248^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~674~^2.260^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05166~^~675~^1.841^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~693~^0.081^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05166~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~851~^0.105^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05166~^~858~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~404~^0.050^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~405~^0.192^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~406~^8.100^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~410~^0.844^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~415~^0.652^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~501~^0.241^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~502~^0.822^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~503~^0.649^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~504~^1.569^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~505~^1.868^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~506~^0.592^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~507~^0.214^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~508~^0.730^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~509~^0.672^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~510~^0.724^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~511~^1.282^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~512~^0.614^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~513~^1.224^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~514~^1.810^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~515~^3.070^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~516~^0.966^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~517~^1.223^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~518~^0.897^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~521~^0.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~605~^0.007^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~606~^0.459^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~610~^0.003^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~612~^0.013^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~613~^0.290^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~614~^0.135^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~617~^0.422^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~618~^0.339^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~619~^0.017^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~620~^0.031^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~621~^0.002^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~624~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~626~^0.043^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~628~^0.006^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~631~^0.003^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~645~^0.477^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~646~^0.411^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~652~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~653~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~662~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~663~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~665~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~670~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~673~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~674~^0.128^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~675~^0.111^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~687~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~689~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~693~^0.005^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05167~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~851~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~853~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05167~^~858~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~312~^0.091^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~404~^0.047^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~405~^0.280^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~406~^9.500^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~410~^0.951^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~415~^0.643^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~501~^0.310^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~502~^1.055^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~503~^0.833^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~504~^2.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~505~^2.398^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~506~^0.760^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~508~^0.937^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~509~^0.863^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~510~^0.929^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~511~^1.645^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~512~^0.788^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~513~^1.571^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~514~^2.323^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~515~^3.941^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~516~^1.240^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~517~^1.570^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~518~^1.151^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~605~^0.049^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~606~^1.132^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~611~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~612~^0.037^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~613~^0.730^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~614~^0.325^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~617~^1.123^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~618~^0.877^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~619~^0.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~620~^0.063^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~625~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~626~^0.114^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~628~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~629~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~631~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~645~^1.264^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~646~^1.032^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~653~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~662~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~663~^0.038^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~665~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~670~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~672~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~673~^0.112^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~674~^1.085^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~675~^0.864^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~687~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~693~^0.040^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05168~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~851~^0.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05168~^~858~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05169~^~312~^0.053^2^^~1~^~A~^^^1^0.049^0.058^1^^^^~08/01/2012~ -~05169~^~315~^0.012^2^^~1~^~A~^^^1^0.012^0.012^1^^^^~08/01/1979~ -~05169~^~404~^0.021^2^^~1~^~A~^^^1^0.016^0.026^1^^^^~08/01/2012~ -~05169~^~405~^0.110^2^^~1~^~A~^^^1^0.100^0.120^1^^^^~08/01/2012~ -~05169~^~406~^3.905^2^^~1~^~A~^^^1^3.700^4.110^1^^^^~08/01/2012~ -~05169~^~410~^0.495^2^^~1~^~A~^^^^0.480^0.510^^^^^~08/01/2012~ -~05169~^~415~^0.166^2^^~1~^~A~^^^1^0.164^0.169^1^^^^~08/01/2012~ -~05169~^~501~^0.065^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~502~^0.293^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~503~^0.250^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~504~^0.608^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~505~^0.673^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~506~^0.217^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~507~^0.098^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~508~^0.326^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~509~^0.228^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~510~^0.358^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~511~^0.814^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~512~^0.217^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~513~^0.880^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~514~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~515~^1.303^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~516~^1.683^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~517~^1.205^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~518~^0.423^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~521~^0.890^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05169~^~605~^0.557^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~606~^10.430^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~607~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05169~^~608~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05169~^~609~^0.004^2^^~1~^~A~^^^^0.004^0.004^^^^^~08/01/2012~ -~05169~^~610~^0.018^2^^~1~^~A~^^^^0.015^0.021^^^^^~08/01/2012~ -~05169~^~611~^0.139^2^^~1~^~A~^^^^0.121^0.158^^^^^~08/01/2012~ -~05169~^~612~^0.405^2^^~1~^~A~^^^^0.338^0.473^^^^^~08/01/2012~ -~05169~^~613~^7.214^2^^~1~^~A~^^^^6.008^8.421^^^^^~08/01/2012~ -~05169~^~614~^2.429^2^^~1~^~A~^^^^1.893^2.965^^^^^~08/01/2012~ -~05169~^~615~^0.037^2^^~1~^~A~^^^^0.027^0.047^^^^^~08/01/2012~ -~05169~^~617~^12.227^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~618~^9.976^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~619~^0.632^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~620~^0.139^2^^~1~^~A~^^^^0.131^0.147^^^^^~08/01/2012~ -~05169~^~621~^0.009^2^^~1~^~A~^^^^0.009^0.009^^^^^~08/01/2012~ -~05169~^~624~^0.016^2^^~1~^~A~^^^^0.008^0.023^^^^^~08/01/2012~ -~05169~^~625~^0.061^2^^~1~^~A~^^^^0.058^0.065^^^^^~08/01/2012~ -~05169~^~626~^1.365^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~627~^0.004^2^^~1~^~A~^^^^0.003^0.005^^^^^~08/01/2012~ -~05169~^~628~^0.185^2^^~1~^~A~^^^^0.156^0.214^^^^^~08/01/2012~ -~05169~^~629~^0.012^2^^~1~^~A~^^^^0.009^0.015^^^^^~08/01/2012~ -~05169~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~631~^0.018^2^^~1~^~A~^^^^0.016^0.020^^^^^~08/01/2012~ -~05169~^~645~^13.908^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~646~^10.922^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~652~^0.060^2^^~1~^~A~^^^^0.050^0.070^^^^^~08/01/2012~ -~05169~^~653~^0.102^2^^~1~^~A~^^^^0.080^0.125^^^^^~08/01/2012~ -~05169~^~654~^0.005^2^^~1~^~A~^^^^0.003^0.007^^^^^~08/01/2012~ -~05169~^~662~^0.026^2^^~1~^~A~^^^^0.023^0.029^^^^^~08/01/2012~ -~05169~^~663~^0.407^2^^~1~^~A~^^^^0.316^0.497^^^^^~08/01/2012~ -~05169~^~664~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05169~^~665~^0.125^2^^~1~^~A~^^^^0.100^0.150^^^^^~08/01/2012~ -~05169~^~670~^0.080^2^^~1~^~A~^^^^0.074^0.086^^^^^~08/01/2012~ -~05169~^~671~^0.002^2^^~1~^~A~^^^^0.000^0.005^^^^^~08/01/2012~ -~05169~^~672~^0.059^2^^~1~^~A~^^^^0.050^0.068^^^^^~08/01/2012~ -~05169~^~673~^1.340^2^^~1~^~A~^^^^1.281^1.398^^^^^~08/01/2012~ -~05169~^~674~^11.820^2^^~1~^~A~^^^^10.085^13.556^^^^^~08/01/2012~ -~05169~^~675~^9.771^2^^~1~^~A~^^^^8.412^11.131^^^^^~08/01/2012~ -~05169~^~676~^0.005^2^^~1~^~A~^^^^0.005^0.006^^^^^~08/01/2012~ -~05169~^~685~^0.021^2^^~1~^~A~^^^^0.018^0.024^^^^^~08/01/2012~ -~05169~^~687~^0.061^2^^~1~^~A~^^^^0.052^0.070^^^^^~08/01/2012~ -~05169~^~689~^0.041^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05169~^~693~^0.432^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~695~^0.125^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05169~^~697~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05169~^~851~^0.611^2^^~1~^~A~^^^^0.529^0.694^^^^^~08/01/2012~ -~05169~^~852~^0.005^2^^~1~^~A~^^^^0.005^0.006^^^^^~08/01/2012~ -~05169~^~853~^0.035^2^^~1~^~A~^^^^0.031^0.040^^^^^~08/01/2012~ -~05169~^~858~^0.028^2^^~1~^~A~^^^^0.027^0.030^^^^^~08/01/2012~ -~05170~^~312~^0.110^2^^~1~^~A~^^^1^0.092^0.127^1^^^^~08/01/2012~ -~05170~^~315~^0.017^2^^~1~^~A~^^^1^0.016^0.018^1^^^^~08/01/2012~ -~05170~^~404~^0.029^2^^~1~^~A~^^^1^0.021^0.037^1^^^^~08/01/2012~ -~05170~^~405~^0.290^2^^~1~^~A~^^^1^0.250^0.330^1^^^^~08/01/2012~ -~05170~^~406~^10.235^2^^~1~^~A~^^^1^9.370^11.100^1^^^^~08/01/2012~ -~05170~^~410~^0.920^2^^~1~^~A~^^^^0.870^0.970^^^^^~08/01/2012~ -~05170~^~415~^0.375^2^^~1~^~A~^^^1^0.356^0.394^1^^^^~08/01/2012~ -~05170~^~501~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~502~^0.541^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~503~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~504~^1.123^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~505~^1.243^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~506~^0.401^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~508~^0.602^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~509~^0.421^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~510~^0.662^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~511~^1.504^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~512~^0.401^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~513~^1.624^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~514~^1.444^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~515~^2.406^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~516~^3.108^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~517~^2.226^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~518~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05170~^~605~^0.568^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~606~^11.356^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~607~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05170~^~608~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05170~^~609~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05170~^~610~^0.011^2^^~1~^~A~^^^^0.000^0.022^^^^^~08/01/2012~ -~05170~^~611~^0.138^2^^~1~^~A~^^^^0.133^0.144^^^^^~08/01/2012~ -~05170~^~612~^0.423^2^^~1~^~A~^^^^0.397^0.450^^^^^~08/01/2012~ -~05170~^~613~^7.883^2^^~1~^~A~^^^^7.418^8.348^^^^^~08/01/2012~ -~05170~^~614~^2.664^2^^~1~^~A~^^^^2.371^2.957^^^^^~08/01/2012~ -~05170~^~615~^0.040^2^^~1~^~A~^^^^0.034^0.046^^^^^~08/01/2012~ -~05170~^~617~^13.248^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~618~^10.833^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~619~^0.677^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~620~^0.191^2^^~1~^~A~^^^^0.179^0.204^^^^^~08/01/2012~ -~05170~^~621~^0.010^2^^~1~^~A~^^^^0.010^0.011^^^^^~08/01/2012~ -~05170~^~624~^0.017^2^^~1~^~A~^^^^0.009^0.025^^^^^~08/01/2012~ -~05170~^~625~^0.064^2^^~1~^~A~^^^^0.062^0.067^^^^^~08/01/2012~ -~05170~^~626~^1.507^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~627~^0.004^2^^~1~^~A~^^^^0.004^0.005^^^^^~08/01/2012~ -~05170~^~628~^0.202^2^^~1~^~A~^^^^0.193^0.212^^^^^~08/01/2012~ -~05170~^~629~^0.010^2^^~1~^~A~^^^^0.009^0.011^^^^^~08/01/2012~ -~05170~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~631~^0.023^2^^~1~^~A~^^^^0.022^0.024^^^^^~08/01/2012~ -~05170~^~645~^15.094^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~646~^11.903^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~652~^0.064^2^^~1~^~A~^^^^0.059^0.068^^^^^~08/01/2012~ -~05170~^~653~^0.109^2^^~1~^~A~^^^^0.097^0.121^^^^^~08/01/2012~ -~05170~^~654~^0.006^2^^~1~^~A~^^^^0.004^0.009^^^^^~08/01/2012~ -~05170~^~662~^0.028^2^^~1~^~A~^^^^0.027^0.029^^^^^~08/01/2012~ -~05170~^~663~^0.415^2^^~1~^~A~^^^^0.368^0.462^^^^^~08/01/2012~ -~05170~^~664~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05170~^~665~^0.125^2^^~1~^~A~^^^^0.124^0.127^^^^^~08/01/2012~ -~05170~^~670~^0.076^2^^~1~^~A~^^^^0.075^0.077^^^^^~08/01/2012~ -~05170~^~671~^0.004^2^^~1~^~A~^^^^0.000^0.009^^^^^~08/01/2012~ -~05170~^~672~^0.062^2^^~1~^~A~^^^^0.059^0.064^^^^^~08/01/2012~ -~05170~^~673~^1.479^2^^~1~^~A~^^^^1.405^1.553^^^^^~08/01/2012~ -~05170~^~674~^12.833^2^^~1~^~A~^^^^12.307^13.359^^^^^~08/01/2012~ -~05170~^~675~^10.632^2^^~1~^~A~^^^^10.185^11.079^^^^^~08/01/2012~ -~05170~^~676~^0.006^2^^~1~^~A~^^^^0.006^0.006^^^^^~08/01/2012~ -~05170~^~685~^0.020^2^^~1~^~A~^^^^0.019^0.021^^^^^~08/01/2012~ -~05170~^~687~^0.062^2^^~1~^~A~^^^^0.061^0.063^^^^^~08/01/2012~ -~05170~^~689~^0.049^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05170~^~693~^0.443^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~695~^0.125^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05170~^~697~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05170~^~851~^0.657^2^^~1~^~A~^^^^0.628^0.687^^^^^~08/01/2012~ -~05170~^~852~^0.005^2^^~1~^~A~^^^^0.004^0.006^^^^^~08/01/2012~ -~05170~^~853~^0.044^2^^~1~^~A~^^^^0.043^0.045^^^^^~08/01/2012~ -~05170~^~858~^0.039^2^^~1~^~A~^^^^0.037^0.042^^^^^~08/01/2012~ -~05171~^~312~^0.577^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~315~^0.190^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~404~^0.149^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~405~^1.393^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~406~^8.694^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~410~^3.889^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~415~^0.654^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~501~^0.199^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~502~^0.662^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~503~^0.520^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~504~^1.313^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~505~^1.381^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~506~^0.462^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~507~^0.213^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~508~^0.674^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~509~^0.579^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~510~^0.644^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~511~^1.069^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~512~^0.399^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~513~^1.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~514~^1.424^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~515~^2.388^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~516~^0.988^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~517~^1.110^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~518~^0.785^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~521~^0.245^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~605~^0.046^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~606~^1.452^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~612~^0.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~613~^0.779^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~614~^0.584^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~617~^0.919^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~618~^1.033^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~619~^0.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~620~^0.251^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~621~^0.025^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~624~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~625~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~626~^0.064^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~628~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~631~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~645~^1.016^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~646~^1.425^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~654~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~662~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~663~^0.033^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~665~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~670~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~671~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~672~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~673~^0.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~674~^0.886^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~675~^1.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~687~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~693~^0.034^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05171~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~851~^0.042^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05171~^~858~^0.025^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~312~^0.692^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~315~^0.202^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~404~^0.171^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~405~^1.543^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~406~^8.647^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~410~^2.332^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~415~^0.546^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~501~^0.267^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~502~^0.885^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~503~^0.696^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~504~^1.756^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~505~^1.847^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~506~^0.618^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~507~^0.284^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~508~^0.901^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~509~^0.774^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~510~^0.862^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~511~^1.430^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~512~^0.534^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~513~^1.347^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~514~^1.905^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~515~^3.194^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~516~^1.322^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~517~^1.485^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~518~^1.050^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~605~^0.045^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~606~^1.725^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~611~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~612~^0.032^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~613~^0.892^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~614~^0.744^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~617~^0.951^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~618~^1.084^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~619~^0.033^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~620~^0.306^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~621~^0.027^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~626~^0.063^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~627~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~628~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~629~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~631~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~645~^1.041^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~646~^1.537^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~662~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~663~^0.033^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~665~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~670~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~673~^0.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~674~^0.918^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~675~^1.071^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~693~^0.035^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05172~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~05172~^~851~^0.032^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05172~^~858~^0.027^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05173~^~312~^0.220^4^0.033^~1~^~A~^^^1^0.157^0.310^3^0.114^0.326^~2, 3~^~08/01/2012~ -~05173~^~315~^0.085^4^0.006^~1~^~A~^^^1^0.074^0.101^3^0.066^0.104^~2, 3~^~08/01/2012~ -~05173~^~404~^0.061^3^0.004^~1~^~A~^^^1^0.053^0.065^2^0.044^0.078^~2, 3~^~08/01/2012~ -~05173~^~405~^0.327^3^0.013^~1~^~A~^^^1^0.300^0.340^2^0.269^0.384^~2, 3~^~08/01/2012~ -~05173~^~406~^6.233^3^0.084^~1~^~A~^^^1^6.140^6.400^2^5.874^6.593^~2, 3~^~08/01/2012~ -~05173~^~410~^0.914^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05173~^~415~^0.198^3^0.013^~1~^~A~^^^1^0.174^0.216^2^0.144^0.252^~2, 3~^~08/01/2012~ -~05173~^~501~^0.208^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~502~^0.692^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~503~^0.544^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~504~^1.373^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~505~^1.444^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~506~^0.483^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~507~^0.222^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~508~^0.704^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~509~^0.605^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~510~^0.674^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~511~^1.118^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~512~^0.418^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~513~^1.053^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~514~^1.489^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~515~^2.497^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~516~^1.034^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~517~^1.161^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~518~^0.821^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~521~^0.580^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05173~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~606~^0.929^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05173~^~610~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~08/01/2012~ -~05173~^~611~^0.006^2^^~1~^~A~^^^1^0.003^0.008^1^^^^~08/01/2012~ -~05173~^~612~^0.021^2^^~1~^~A~^^^1^0.012^0.030^1^^^^~08/01/2012~ -~05173~^~613~^0.579^2^^~1~^~A~^^^1^0.406^0.753^1^^^^~08/01/2012~ -~05173~^~614~^0.284^2^^~1~^~A~^^^1^0.236^0.332^1^^^^~08/01/2012~ -~05173~^~615~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~08/01/2012~ -~05173~^~617~^0.720^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~618~^0.530^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~620~^0.096^2^^~1~^~A~^^^1^0.088^0.105^1^^^^~08/01/2012~ -~05173~^~621~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~08/01/2012~ -~05173~^~624~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~08/01/2012~ -~05173~^~625~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~08/01/2012~ -~05173~^~626~^0.058^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~628~^0.011^2^^~1~^~A~^^^1^0.008^0.013^1^^^^~08/01/2012~ -~05173~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~631~^0.009^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~08/01/2012~ -~05173~^~645~^0.795^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~646~^0.708^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~652~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~08/01/2012~ -~05173~^~653~^0.008^2^^~1~^~A~^^^1^0.007^0.010^1^^^^~08/01/2012~ -~05173~^~654~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~08/01/2012~ -~05173~^~662~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~08/01/2012~ -~05173~^~663~^0.023^2^^~1~^~A~^^^1^0.016^0.031^1^^^^~08/01/2012~ -~05173~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~665~^0.006^2^^~1~^~A~^^^1^0.005^0.008^1^^^^~08/01/2012~ -~05173~^~670~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~08/01/2012~ -~05173~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~672~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~08/01/2012~ -~05173~^~673~^0.057^2^^~1~^~A~^^^1^0.025^0.089^1^^^^~08/01/2012~ -~05173~^~674~^0.697^2^^~1~^~A~^^^1^0.430^0.964^1^^^^~08/01/2012~ -~05173~^~675~^0.523^2^^~1~^~A~^^^1^0.349^0.697^1^^^^~08/01/2012~ -~05173~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~08/01/2012~ -~05173~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~08/01/2012~ -~05173~^~687~^0.003^2^^~1~^~A~^^^1^0.001^0.004^1^^^~1~^~08/01/2012~ -~05173~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05173~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05173~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~851~^0.023^2^^~1~^~A~^^^1^0.013^0.032^1^^^^~08/01/2012~ -~05173~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05173~^~853~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~08/01/2012~ -~05173~^~858~^0.028^2^^~1~^~A~^^^1^0.028^0.028^^^^^~08/01/2012~ -~05174~^~312~^0.274^4^0.022^~1~^~A~^^^1^0.232^0.335^3^0.204^0.344^~2, 3~^~08/01/2012~ -~05174~^~315~^0.098^4^0.007^~1~^~A~^^^1^0.086^0.118^3^0.075^0.120^~2, 3~^~08/01/2012~ -~05174~^~404~^0.057^3^0.008^~1~^~A~^^^1^0.044^0.070^2^0.025^0.090^~1, 2, 3~^~08/01/2012~ -~05174~^~405~^0.357^3^0.007^~1~^~A~^^^1^0.350^0.370^2^0.328^0.385^~2, 3~^~08/01/2012~ -~05174~^~406~^6.450^3^0.190^~1~^~A~^^^1^6.250^6.830^2^5.632^7.268^~2, 3~^~08/01/2012~ -~05174~^~410~^0.525^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05174~^~415~^0.175^3^0.005^~1~^~A~^^^1^0.165^0.181^2^0.153^0.197^~2, 3~^~08/01/2012~ -~05174~^~501~^0.237^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~502~^0.785^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~504~^1.558^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~505~^1.639^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~506~^0.548^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~507~^0.252^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~508~^0.799^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~509~^0.687^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~510~^0.764^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~511~^1.269^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~512~^0.474^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~513~^1.195^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~514~^1.690^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~515~^2.834^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~516~^1.173^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~517~^1.317^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~518~^0.931^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05174~^~605~^0.026^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~606~^1.059^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~610~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~08/01/2012~ -~05174~^~611~^0.020^2^^~1~^~A~^^^1^0.018^0.023^1^^^^~08/01/2012~ -~05174~^~612~^0.033^2^^~1~^~A~^^^1^0.029^0.037^1^^^^~08/01/2012~ -~05174~^~613~^0.657^2^^~1~^~A~^^^1^0.583^0.731^1^^^^~08/01/2012~ -~05174~^~614~^0.317^2^^~1~^~A~^^^1^0.299^0.336^1^^^^~08/01/2012~ -~05174~^~615~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~08/01/2012~ -~05174~^~617~^0.734^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~618~^0.559^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~620~^0.115^2^^~1~^~A~^^^1^0.115^0.116^1^^^^~08/01/2012~ -~05174~^~621~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~08/01/2012~ -~05174~^~624~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~08/01/2012~ -~05174~^~625~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~08/01/2012~ -~05174~^~626~^0.056^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~628~^0.010^2^^~1~^~A~^^^1^0.007^0.013^1^^^^~02/01/2003~ -~05174~^~629~^0.004^2^^~1~^~A~^^^1^0.002^0.006^1^^^~1~^~08/01/2012~ -~05174~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~631~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~08/01/2012~ -~05174~^~645~^1.598^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05174~^~646~^1.359^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05174~^~652~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~08/01/2012~ -~05174~^~653~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~08/01/2012~ -~05174~^~654~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~08/01/2012~ -~05174~^~662~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~08/01/2012~ -~05174~^~663~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~08/01/2012~ -~05174~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~665~^0.004^2^^~1~^~A~^^^1^0.002^0.006^1^^^~1~^~08/01/2012~ -~05174~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~672~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~08/01/2012~ -~05174~^~673~^0.055^2^^~1~^~A~^^^1^0.041^0.068^1^^^^~08/01/2012~ -~05174~^~674~^0.713^2^^~1~^~A~^^^1^0.630^0.796^1^^^^~08/01/2012~ -~05174~^~675~^0.555^2^^~1~^~A~^^^1^0.513^0.596^1^^^^~08/01/2012~ -~05174~^~676~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~08/01/2012~ -~05174~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05174~^~687~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~08/01/2012~ -~05174~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05174~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05174~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05174~^~851~^0.023^2^^~1~^~A~^^^1^0.022^0.025^1^^^^~08/01/2012~ -~05174~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05174~^~853~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~08/01/2012~ -~05174~^~858~^0.032^2^^~1~^~A~^^^1^0.031^0.033^1^^^^~08/01/2012~ -~05175~^~312~^0.488^4^0.034^~1~^~A~^^^1^0.411^0.575^3^0.380^0.597^~2, 3~^~08/01/2012~ -~05175~^~315~^0.102^4^0.003^~1~^~A~^^^1^0.096^0.109^3^0.093^0.111^~2, 3~^~08/01/2012~ -~05175~^~404~^0.165^2^^~1~^~A~^^^1^0.165^0.166^1^^^^~08/01/2012~ -~05175~^~405~^1.130^2^^~1~^~A~^^^1^1.100^1.160^1^^^^~08/01/2012~ -~05175~^~406~^6.440^2^^~1~^~A~^^^1^6.150^6.730^1^^^^~08/01/2012~ -~05175~^~410~^3.120^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05175~^~415~^0.479^2^^~1~^~A~^^^1^0.477^0.481^1^^^^~08/01/2012~ -~05175~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~502~^0.604^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~503~^0.475^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~504~^1.198^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~505~^1.260^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~506~^0.421^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~507~^0.194^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~508~^0.615^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~509~^0.528^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~510~^0.588^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~511~^0.976^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~512~^0.365^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~513~^0.919^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~514~^1.300^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~515~^2.179^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~516~^0.902^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~517~^1.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~518~^0.716^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05175~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~606~^1.923^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05175~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05175~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05175~^~610~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~08/01/2012~ -~05175~^~611~^0.024^2^^~1~^~A~^^^1^0.008^0.039^1^^^^~08/01/2012~ -~05175~^~612~^0.060^2^^~1~^~A~^^^1^0.042^0.079^1^^^^~08/01/2012~ -~05175~^~613~^1.197^2^^~1~^~A~^^^1^0.685^1.709^1^^^^~08/01/2012~ -~05175~^~614~^0.580^2^^~1~^~A~^^^1^0.403^0.757^1^^^^~08/01/2012~ -~05175~^~615~^0.011^2^^~1~^~A~^^^1^0.008^0.013^1^^^^~08/01/2012~ -~05175~^~617~^1.853^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~618~^1.792^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~619~^0.097^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~620~^0.205^2^^~1~^~A~^^^1^0.194^0.217^1^^^^~08/01/2012~ -~05175~^~621~^0.006^2^^~1~^~A~^^^1^0.004^0.009^1^^^^~08/01/2012~ -~05175~^~624~^0.012^2^^~1~^~A~^^^1^0.011^0.013^1^^^^~08/01/2012~ -~05175~^~625~^0.007^2^^~1~^~A~^^^1^0.003^0.011^1^^^^~08/01/2012~ -~05175~^~626~^0.142^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~627~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~08/01/2012~ -~05175~^~628~^0.029^2^^~1~^~A~^^^1^0.012^0.046^1^^^^~08/01/2012~ -~05175~^~629~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~08/01/2012~ -~05175~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~631~^0.008^2^^~1~^~A~^^^1^0.006^0.011^1^^^^~08/01/2012~ -~05175~^~645~^2.045^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~646~^2.153^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~652~^0.010^2^^~1~^~A~^^^1^0.006^0.014^1^^^^~08/01/2012~ -~05175~^~653~^0.018^2^^~1~^~A~^^^1^0.009^0.027^1^^^^~08/01/2012~ -~05175~^~654~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~08/01/2012~ -~05175~^~662~^0.005^2^^~1~^~A~^^^1^0.002^0.007^1^^^~1~^~08/01/2012~ -~05175~^~663~^0.056^2^^~1~^~A~^^^1^0.026^0.086^1^^^^~08/01/2012~ -~05175~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05175~^~665~^0.023^2^^~1~^~A~^^^1^0.011^0.036^1^^^^~08/01/2012~ -~05175~^~670~^0.007^2^^~1~^~A~^^^1^0.000^0.013^1^^^~1~^~08/01/2012~ -~05175~^~671~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~08/01/2012~ -~05175~^~672~^0.015^2^^~1~^~A~^^^1^0.009^0.021^1^^^^~08/01/2012~ -~05175~^~673~^0.137^2^^~1~^~A~^^^1^0.060^0.215^1^^^^~08/01/2012~ -~05175~^~674~^1.797^2^^~1~^~A~^^^1^0.843^2.751^1^^^^~08/01/2012~ -~05175~^~675~^1.762^2^^~1~^~A~^^^1^0.896^2.629^1^^^^~08/01/2012~ -~05175~^~676~^0.002^2^^~1~^~A~^^^1^0.001^0.003^1^^^~1~^~08/01/2012~ -~05175~^~685~^0.004^2^^~1~^~A~^^^1^0.000^0.007^1^^^~1~^~08/01/2012~ -~05175~^~687~^0.008^2^^~1~^~A~^^^1^0.003^0.013^1^^^^~08/01/2012~ -~05175~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05175~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05175~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05175~^~851~^0.093^2^^~1~^~A~^^^1^0.038^0.149^1^^^^~08/01/2012~ -~05175~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~08/01/2012~ -~05175~^~853~^0.009^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~08/01/2012~ -~05175~^~858~^0.016^2^^~1~^~A~^^^1^0.015^0.018^1^^^^~08/01/2012~ -~05176~^~312~^0.825^4^0.028^~1~^~A~^^^1^0.746^0.869^3^0.737^0.913^~2, 3~^~08/01/2012~ -~05176~^~315~^0.121^4^0.008^~1~^~A~^^^1^0.110^0.143^3^0.097^0.145^~2, 3~^~08/01/2012~ -~05176~^~404~^0.236^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~405~^1.540^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~406~^7.760^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~415~^0.608^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~501~^0.271^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~502~^0.899^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~503~^0.707^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~504~^1.785^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~505~^1.877^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~506~^0.628^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~508~^0.916^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~509~^0.787^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~510~^0.876^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~511~^1.454^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~512~^0.543^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~513~^1.369^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~514~^1.936^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~515~^3.246^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~516~^1.344^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~517~^1.509^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~518~^1.067^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05176~^~605~^0.061^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05176~^~606~^1.898^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05176~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~610~^0.004^2^^~1~^~A~^^^1^0.000^0.007^1^^^~1~^~08/01/2012~ -~05176~^~611~^0.054^2^^~1~^~A~^^^1^0.039^0.068^1^^^^~10/01/2013~ -~05176~^~612~^0.064^2^^~1~^~A~^^^1^0.053^0.076^1^^^^~10/01/2013~ -~05176~^~613~^1.117^2^^~1~^~A~^^^1^1.037^1.197^1^^^^~10/01/2013~ -~05176~^~614~^0.625^2^^~1~^~A~^^^1^0.621^0.629^1^^^^~10/01/2013~ -~05176~^~615~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~08/01/2012~ -~05176~^~617~^1.519^0^^~1~^~AS~^^^^^^^^^^~10/01/2013~ -~05176~^~618~^1.412^0^^~1~^~AS~^^^^^^^^^^~10/01/2013~ -~05176~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~10/01/2013~ -~05176~^~620~^0.305^2^^~1~^~A~^^^1^0.273^0.338^1^^^^~10/01/2013~ -~05176~^~621~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~08/01/2012~ -~05176~^~624~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~08/01/2012~ -~05176~^~625~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~10/01/2013~ -~05176~^~626~^0.112^0^^~1~^~AS~^^^^^^^^^^~10/01/2013~ -~05176~^~627~^0.009^2^^~1~^~A~^^^1^0.000^0.017^1^^^~1~^~08/01/2012~ -~05176~^~628~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~10/01/2013~ -~05176~^~629~^0.009^2^^~1~^~A~^^^1^0.003^0.014^1^^^^~08/01/2012~ -~05176~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05176~^~631~^0.007^2^^~1~^~A~^^^1^0.006^0.009^1^^^^~10/01/2013~ -~05176~^~645~^1.668^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05176~^~646~^1.832^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05176~^~652~^0.009^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~10/01/2013~ -~05176~^~653~^0.016^2^^~1~^~A~^^^1^0.016^0.016^^^^^~10/01/2013~ -~05176~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~662~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~08/01/2012~ -~05176~^~663~^0.043^2^^~1~^~A~^^^1^0.039^0.047^1^^^^~10/01/2013~ -~05176~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~665~^0.016^2^^~1~^~A~^^^1^0.014^0.017^1^^^^~10/01/2013~ -~05176~^~670~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~10/01/2013~ -~05176~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~672~^0.009^2^^~1~^~A~^^^1^0.004^0.015^1^^^^~10/01/2013~ -~05176~^~673~^0.109^2^^~1~^~A~^^^1^0.088^0.130^1^^^^~10/01/2013~ -~05176~^~674~^1.476^2^^~1~^~A~^^^1^1.327^1.625^1^^^^~10/01/2013~ -~05176~^~675~^1.390^2^^~1~^~A~^^^1^1.333^1.447^1^^^^~10/01/2013~ -~05176~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~08/01/2012~ -~05176~^~687~^0.011^2^^~1~^~A~^^^1^0.006^0.016^1^^^^~10/01/2013~ -~05176~^~689~^0.008^0^^~1~^~AS~^^^^^^^^^^~10/01/2013~ -~05176~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05176~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~ -~05176~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~05176~^~851~^0.049^2^^~1~^~A~^^^1^0.046^0.052^1^^^^~10/01/2013~ -~05176~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05176~^~853~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~10/01/2013~ -~05176~^~858~^0.016^2^^~1~^~A~^^^1^0.014^0.017^1^^^^~10/01/2013~ -~05177~^~312~^0.863^4^0.073^~1~^~A~^^^1^0.652^0.989^3^0.631^1.096^~2, 3~^~08/01/2012~ -~05177~^~315~^0.296^4^0.021^~1~^~A~^^^1^0.242^0.335^3^0.230^0.362^~2, 3~^~08/01/2012~ -~05177~^~404~^0.206^3^0.008^~1~^~A~^^^1^0.192^0.221^2^0.170^0.242^~2, 3~^~08/01/2012~ -~05177~^~405~^2.247^3^0.033^~1~^~A~^^^1^2.200^2.310^2^2.106^2.388^~2, 3~^~08/01/2012~ -~05177~^~406~^11.233^3^0.088^~1~^~A~^^^1^11.100^11.400^2^10.854^11.613^~2, 3~^~08/01/2012~ -~05177~^~410~^6.280^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05177~^~415~^1.040^3^0.012^~1~^~A~^^^1^1.020^1.060^2^0.990^1.090^~2, 3~^~08/01/2012~ -~05177~^~501~^0.199^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~502~^0.660^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~503~^0.519^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~504~^1.310^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~505~^1.378^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~506~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~507~^0.212^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~508~^0.672^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~509~^0.578^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~510~^0.643^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~511~^1.067^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~512~^0.398^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~513~^1.005^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~514~^1.421^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~515~^2.382^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~516~^0.986^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~517~^1.107^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~518~^0.783^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~521~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05177~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~606~^1.664^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05177~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05177~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05177~^~610~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.006^~1, 2, 3~^~08/01/2012~ -~05177~^~611~^0.008^4^0.002^~1~^~A~^^^1^0.004^0.014^3^0.002^0.015^~2, 3~^~08/01/2012~ -~05177~^~612~^0.017^4^0.001^~1~^~A~^^^1^0.013^0.020^3^0.012^0.022^~2, 3~^~08/01/2012~ -~05177~^~613~^0.777^4^0.087^~1~^~A~^^^1^0.652^1.032^3^0.501^1.053^~2, 3~^~08/01/2012~ -~05177~^~614~^0.799^4^0.053^~1~^~A~^^^1^0.733^0.957^3^0.631^0.967^~2, 3~^~08/01/2012~ -~05177~^~615~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~08/01/2012~ -~05177~^~617~^0.736^4^0.149^~1~^~AS~^^^1^0.502^1.164^3^0.262^1.210^~2, 3~^~08/01/2012~ -~05177~^~618~^1.129^4^0.160^~1~^~AS~^^^1^0.912^1.601^3^0.619^1.639^~2, 3~^~08/01/2012~ -~05177~^~619~^0.039^4^0.010^~1~^~AS~^^^1^0.024^0.067^3^0.009^0.070^~2, 3~^~08/01/2012~ -~05177~^~620~^0.378^4^0.002^~1~^~A~^^^1^0.374^0.383^3^0.372^0.385^~2, 3~^~08/01/2012~ -~05177~^~621~^0.045^4^0.004^~1~^~A~^^^1^0.038^0.052^3^0.033^0.057^~2, 3~^~08/01/2012~ -~05177~^~624~^0.023^4^0.003^~1~^~A~^^^1^0.016^0.028^3^0.013^0.033^~2, 3~^~08/01/2012~ -~05177~^~625~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~08/01/2012~ -~05177~^~626~^0.040^4^0.008^~1~^~AS~^^^1^0.023^0.056^3^0.014^0.067^~2, 3~^~08/01/2012~ -~05177~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~05177~^~628~^0.022^4^0.005^~1~^~A~^^^1^0.014^0.034^3^0.007^0.037^~2, 3~^~08/01/2012~ -~05177~^~629~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.011^3^0.006^0.011^~2, 3~^~08/01/2012~ -~05177~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.003^~2, 3~^~08/01/2012~ -~05177~^~631~^0.021^4^0.002^~1~^~A~^^^1^0.017^0.025^3^0.016^0.026^~2, 3~^~08/01/2012~ -~05177~^~645~^0.817^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~646~^1.684^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~652~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.007^~2, 3~^~08/01/2012~ -~05177~^~653~^0.014^4^0.002^~1~^~A~^^^1^0.011^0.021^3^0.007^0.021^~2, 3~^~08/01/2012~ -~05177~^~654~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.012^~2, 3~^~08/01/2012~ -~05177~^~662~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.003^3^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~05177~^~663~^0.031^4^0.006^~1~^~A~^^^1^0.024^0.049^3^0.012^0.050^~2, 3~^~08/01/2012~ -~05177~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05177~^~665~^0.012^4^0.004^~1~^~A~^^^1^0.006^0.022^3^0.001^0.023^~2, 3~^~08/01/2012~ -~05177~^~670~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~08/01/2012~ -~05177~^~671~^0.013^4^0.006^~1~^~A~^^^1^0.000^0.027^3^-0.005^0.031^~1, 2, 3~^~08/01/2012~ -~05177~^~672~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.018^3^0.013^0.018^~2, 3~^~08/01/2012~ -~05177~^~673~^0.039^4^0.008^~1~^~A~^^^1^0.022^0.055^3^0.013^0.064^~2, 3~^~08/01/2012~ -~05177~^~674~^0.705^4^0.143^~1~^~A~^^^1^0.478^1.115^3^0.250^1.161^~2, 3~^~08/01/2012~ -~05177~^~675~^1.115^4^0.156^~1~^~A~^^^1^0.904^1.575^3^0.618^1.612^~2, 3~^~08/01/2012~ -~05177~^~676~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~05177~^~685~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~08/01/2012~ -~05177~^~687~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.000^0.005^~1, 2, 3~^~08/01/2012~ -~05177~^~689~^0.021^4^0.003^~1~^~AS~^^^1^0.014^0.027^3^0.011^0.030^~2, 3~^~08/01/2012~ -~05177~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05177~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05177~^~851~^0.038^4^0.009^~1~^~A~^^^1^0.024^0.064^3^0.009^0.067^~2, 3~^~08/01/2012~ -~05177~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05177~^~853~^0.021^4^0.003^~1~^~A~^^^1^0.014^0.027^3^0.011^0.030^~2, 3~^~08/01/2012~ -~05177~^~858~^0.026^4^0.002^~1~^~A~^^^1^0.022^0.032^3^0.019^0.033^~2, 3~^~08/01/2012~ -~05178~^~312~^1.046^4^0.027^~1~^~A~^^^1^1.005^1.126^3^0.960^1.133^~2, 3~^~08/01/2012~ -~05178~^~315~^0.331^4^0.014^~1~^~A~^^^1^0.306^0.359^3^0.288^0.375^~2, 3~^~08/01/2012~ -~05178~^~404~^0.256^3^0.019^~1~^~A~^^^1^0.223^0.287^2^0.176^0.336^~2, 3~^~08/01/2012~ -~05178~^~405~^2.687^3^0.078^~1~^~A~^^^1^2.530^2.770^2^2.349^3.024^~2, 3~^~08/01/2012~ -~05178~^~406~^11.090^3^0.712^~1~^~A~^^^1^9.670^11.900^2^8.025^14.155^~2, 3~^~08/01/2012~ -~05178~^~410~^4.350^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~05178~^~415~^0.882^3^0.017^~1~^~A~^^^1^0.856^0.915^2^0.807^0.957^~2, 3~^~08/01/2012~ -~05178~^~501~^0.294^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~502~^0.976^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~503~^0.767^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~504~^1.937^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~505~^2.037^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~506~^0.681^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~508~^0.994^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~509~^0.854^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~510~^0.950^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~511~^1.577^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~512~^0.589^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~513~^1.486^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~514~^2.101^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~515~^3.523^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~516~^1.458^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~517~^1.638^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~518~^1.158^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05178~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~606~^2.304^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05178~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05178~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05178~^~610~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~08/01/2012~ -~05178~^~611~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.003^0.009^~2, 3~^~08/01/2012~ -~05178~^~612~^0.019^4^0.001^~1~^~A~^^^1^0.017^0.023^3^0.014^0.023^~2, 3~^~08/01/2012~ -~05178~^~613~^1.037^4^0.016^~1~^~A~^^^1^1.001^1.069^3^0.985^1.088^~2, 3~^~08/01/2012~ -~05178~^~614~^1.198^4^0.021^~1~^~A~^^^1^1.154^1.244^3^1.131^1.265^~2, 3~^~08/01/2012~ -~05178~^~615~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~08/01/2012~ -~05178~^~617~^0.952^4^0.026^~1~^~AS~^^^1^0.903^1.000^3^0.871^1.034^~2, 3~^~08/01/2012~ -~05178~^~618~^1.471^4^0.037^~1~^~AS~^^^1^1.418^1.577^3^1.352^1.589^~2, 3~^~08/01/2012~ -~05178~^~619~^0.035^4^0.002^~1~^~AS~^^^1^0.032^0.042^3^0.028^0.042^~2, 3~^~08/01/2012~ -~05178~^~620~^0.489^4^0.021^~1~^~A~^^^1^0.463^0.551^3^0.423^0.555^~2, 3~^~08/01/2012~ -~05178~^~621~^0.053^4^0.003^~1~^~A~^^^1^0.044^0.058^3^0.043^0.063^~2, 3~^~08/01/2012~ -~05178~^~624~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.003^0.010^~1, 2, 3~^~08/01/2012~ -~05178~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~05178~^~626~^0.053^4^0.005^~1~^~AS~^^^1^0.043^0.066^3^0.036^0.069^~2, 3~^~08/01/2012~ -~05178~^~627~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.024^3^-0.009^0.033^~1, 2, 3~^~08/01/2012~ -~05178~^~628~^0.030^4^0.001^~1~^~A~^^^1^0.028^0.031^3^0.028^0.032^~2, 3~^~08/01/2012~ -~05178~^~629~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.018^3^0.014^0.019^~2, 3~^~08/01/2012~ -~05178~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^-0.001^0.001^~2, 3~^~08/01/2012~ -~05178~^~631~^0.024^4^0.001^~1~^~A~^^^1^0.022^0.027^3^0.020^0.028^~2, 3~^~08/01/2012~ -~05178~^~645~^1.038^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~646~^2.167^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~652~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~08/01/2012~ -~05178~^~653~^0.021^4^0.000^~1~^~A~^^^1^0.021^0.021^^^^~2, 3~^~08/01/2012~ -~05178~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~05178~^~662~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~05178~^~663~^0.041^4^0.002^~1~^~A~^^^1^0.037^0.046^3^0.036^0.047^~2, 3~^~08/01/2012~ -~05178~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05178~^~665~^0.015^4^0.002^~1~^~A~^^^1^0.010^0.020^3^0.008^0.022^~2, 3~^~08/01/2012~ -~05178~^~670~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~05178~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05178~^~672~^0.011^4^0.004^~1~^~A~^^^1^0.003^0.019^3^-0.003^0.025^~2, 3~^~08/01/2012~ -~05178~^~673~^0.052^4^0.005^~1~^~A~^^^1^0.043^0.064^3^0.036^0.067^~2, 3~^~08/01/2012~ -~05178~^~674~^0.911^4^0.025^~1~^~A~^^^1^0.861^0.959^3^0.833^0.989^~2, 3~^~08/01/2012~ -~05178~^~675~^1.453^4^0.035^~1~^~A~^^^1^1.399^1.553^3^1.340^1.566^~2, 3~^~08/01/2012~ -~05178~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~05178~^~685~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~08/01/2012~ -~05178~^~687~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.005^~1, 2, 3~^~08/01/2012~ -~05178~^~689~^0.024^4^0.003^~1~^~AS~^^^1^0.021^0.032^3^0.016^0.032^~2, 3~^~08/01/2012~ -~05178~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05178~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05178~^~851~^0.033^4^0.002^~1~^~A~^^^1^0.030^0.040^3^0.026^0.040^~2, 3~^~08/01/2012~ -~05178~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~05178~^~853~^0.024^4^0.002^~1~^~A~^^^1^0.021^0.031^3^0.016^0.031^~2, 3~^~08/01/2012~ -~05178~^~858~^0.028^4^0.002^~1~^~A~^^^1^0.024^0.032^3^0.022^0.033^~2, 3~^~08/01/2012~ -~05179~^~312~^0.142^3^0.012^~1~^~A~^^^1^0.119^0.161^2^0.089^0.196^~4~^~08/01/2012~ -~05179~^~315~^0.056^3^0.002^~1~^~A~^^^1^0.052^0.059^2^0.048^0.064^~4~^~08/01/2012~ -~05179~^~404~^0.051^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~405~^0.211^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~406~^4.924^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~410~^0.801^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~415~^0.364^0^^~4~^~BFPN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~501~^0.176^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~502~^0.600^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~503~^0.473^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~504~^1.144^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~505~^1.363^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~506~^0.432^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~507~^0.156^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~508~^0.532^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~509~^0.490^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~510~^0.528^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~511~^0.935^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~512~^0.448^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~513~^0.893^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~514~^1.320^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~515~^2.239^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~516~^0.705^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~517~^0.892^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~518~^0.654^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05179~^~606~^1.647^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~610~^0.005^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~611~^0.025^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~612~^0.058^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~613~^1.057^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~614~^0.458^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~617~^1.614^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~618~^1.263^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~619~^0.066^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~620~^0.088^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~621~^0.005^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~626~^0.166^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05179~^~628~^0.024^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~629~^0.002^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~630~^0.000^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~631~^0.008^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~645~^1.824^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05179~^~646~^1.478^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05180~^~312~^0.158^3^0.012^~1~^~A~^^^1^0.138^0.177^2^0.109^0.208^~4~^~08/01/2012~ -~05180~^~315~^0.053^3^0.001^~1~^~A~^^^1^0.051^0.054^2^0.049^0.057^~4~^~08/01/2012~ -~05180~^~404~^0.048^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~405~^0.288^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~406~^5.880^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~410~^0.874^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~415~^0.375^0^^~4~^~BFPN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~501~^0.239^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~502~^0.816^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~503~^0.644^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~504~^1.558^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~505~^1.855^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~506~^0.588^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~507~^0.212^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~508~^0.725^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~509~^0.668^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~510~^0.719^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~511~^1.273^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~512~^0.609^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~513~^1.215^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~514~^1.797^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~515~^3.048^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~516~^0.959^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~517~^1.214^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~518~^0.891^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05180~^~606~^2.216^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05180~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05180~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05180~^~610~^0.008^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~611~^0.025^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~612~^0.075^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~613~^1.444^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~614~^0.619^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~617~^2.246^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~618~^1.760^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~619~^0.092^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~620~^0.107^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~621~^0.006^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~626~^0.229^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~05180~^~628~^0.032^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~629~^0.015^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~630~^0.000^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~631~^0.009^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~645~^2.527^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05180~^~646~^2.038^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~ -~05181~^~312~^0.067^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~404~^0.038^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~405~^0.139^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~406~^8.968^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~410~^0.730^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~415~^0.711^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~501~^0.222^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~502~^0.769^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~503~^0.610^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~504~^1.476^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~505~^1.749^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~506~^0.555^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~507~^0.203^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~508~^0.693^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~509~^0.627^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~510~^0.693^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~511~^1.256^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~512~^0.574^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~513~^1.216^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~514~^1.716^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~515~^2.906^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~516~^1.116^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~517~^1.267^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~518~^0.856^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~521~^0.234^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~605~^0.100^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~606~^1.899^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~611~^0.025^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~612~^0.068^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~613~^1.294^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~614~^0.464^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~617~^2.140^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~618~^1.752^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~619~^0.108^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~626~^0.236^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~628~^0.032^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~629~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~631~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~645~^2.431^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~646~^1.952^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~653~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~663~^0.073^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~665~^0.023^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~670~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~672~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~673~^0.232^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~674~^2.067^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~675~^1.717^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~687~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~693~^0.077^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~695~^0.023^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05181~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~851~^0.105^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05181~^~858~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~312~^0.068^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~404~^0.035^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~405~^0.213^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~406~^11.608^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~410~^0.902^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~415~^0.767^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~501~^0.302^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~502~^1.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~503~^0.826^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~504~^1.998^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~505~^2.370^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~506~^0.751^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~507~^0.275^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~508~^0.937^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~509~^0.850^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~510~^0.935^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~511~^1.687^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~512~^0.778^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~513~^1.629^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~514~^2.319^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~515~^3.929^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~516~^1.457^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~517~^1.684^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~518~^1.155^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~605~^0.075^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~606~^1.603^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~611~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~612~^0.056^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~613~^1.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~614~^0.414^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~617~^1.747^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~618~^1.407^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~619~^0.082^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~620~^0.058^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~626~^0.192^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~628~^0.027^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~631~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~645~^1.984^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~646~^1.596^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~653~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~663~^0.057^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~670~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~673~^0.188^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~674~^1.690^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~675~^1.384^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~687~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~693~^0.060^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05182~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~851~^0.080^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05182~^~858~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~312~^0.085^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~404~^0.055^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~405~^0.229^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~406~^5.378^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~410~^0.857^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~415~^0.391^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~501~^0.198^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~502~^0.688^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~503~^0.546^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~504~^1.321^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~505~^1.564^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~506~^0.496^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~507~^0.183^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~508~^0.622^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~509~^0.560^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~510~^0.623^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~511~^1.136^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~512~^0.513^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~513~^1.102^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~514~^1.539^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~515~^2.605^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~516~^1.046^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~517~^1.160^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~518~^0.769^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~521~^0.158^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~605~^0.099^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~606~^2.413^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~610~^0.005^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~611~^0.033^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~612~^0.092^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~613~^1.641^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~614~^0.587^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~617~^2.721^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~618~^2.202^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~619~^0.135^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~620~^0.055^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~621~^0.003^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~626~^0.299^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~628~^0.041^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~629~^0.003^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~630~^0.001^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~631~^0.006^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~645~^3.091^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~646~^2.443^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~653~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~663~^0.072^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~665~^0.022^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~670~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~672~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~673~^0.238^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~674~^2.098^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~675~^1.735^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~687~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~693~^0.077^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~695~^0.022^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05183~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~851~^0.109^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05183~^~858~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~312~^0.125^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~404~^0.057^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~405~^0.365^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~406~^7.103^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~410~^1.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~415~^0.430^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~501~^0.275^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~502~^0.952^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~503~^0.755^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~504~^1.827^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~505~^2.164^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~506~^0.686^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~507~^0.252^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~508~^0.859^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~509~^0.776^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~510~^0.859^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~511~^1.561^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~512~^0.710^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~513~^1.513^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~514~^2.125^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~515~^3.599^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~516~^1.409^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~517~^1.583^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~518~^1.061^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~605~^0.137^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~606~^2.930^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~611~^0.034^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~612~^0.104^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~613~^1.966^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~614~^0.759^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~617~^3.175^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~618~^2.541^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~619~^0.146^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~620~^0.099^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~625~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~626~^0.342^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~628~^0.047^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~629~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~645~^3.594^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~646~^2.867^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~652~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~653~^0.028^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~663~^0.102^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~665~^0.028^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~673~^0.335^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~674~^3.072^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~675~^2.496^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~685~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~687~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~693~^0.109^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~695~^0.028^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05184~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~851~^0.141^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~853~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05184~^~858~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05185~^~312~^0.070^4^0.003^~1~^~A~^^^1^0.064^0.076^3^0.061^0.080^~2, 3~^~08/01/2012~ -~05185~^~315~^0.011^4^0.000^~1~^~A~^^^1^0.010^0.012^3^0.009^0.012^~2, 3~^~08/01/2012~ -~05185~^~404~^0.042^2^^~1~^~A~^^^1^0.035^0.048^1^^^^~08/01/2012~ -~05185~^~405~^0.145^2^^~1~^~A~^^^1^0.130^0.160^1^^^^~08/01/2012~ -~05185~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~08/01/2012~ -~05185~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~08/01/2012~ -~05185~^~415~^0.813^2^^~1~^~A~^^^1^0.792^0.835^1^^^^~08/01/2012~ -~05185~^~501~^0.252^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~502~^0.859^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~503~^0.678^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~505~^1.952^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~506~^0.619^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~508~^0.763^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~510~^0.756^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~511~^1.340^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~512~^0.641^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~514~^1.892^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~515~^3.209^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~516~^1.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~517~^1.278^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~518~^0.937^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05185~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~606~^0.289^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~610~^0.004^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~08/01/2012~ -~05185~^~611~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~08/01/2012~ -~05185~^~612~^0.004^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~08/01/2012~ -~05185~^~613~^0.177^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~08/01/2012~ -~05185~^~614~^0.093^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~08/01/2012~ -~05185~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~08/01/2012~ -~05185~^~617~^0.235^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~08/01/2012~ -~05185~^~618~^0.200^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~08/01/2012~ -~05185~^~619~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~08/01/2012~ -~05185~^~620~^0.028^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~08/01/2012~ -~05185~^~621~^0.002^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~08/01/2012~ -~05185~^~624~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~08/01/2012~ -~05185~^~625~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~08/01/2012~ -~05185~^~626~^0.023^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~08/01/2012~ -~05185~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~628~^0.003^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~08/01/2012~ -~05185~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~631~^0.003^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~08/01/2012~ -~05185~^~645~^0.264^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~652~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~08/01/2012~ -~05185~^~653~^0.003^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~08/01/2012~ -~05185~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~663~^0.010^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~08/01/2012~ -~05185~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~665~^0.003^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~08/01/2012~ -~05185~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~08/01/2012~ -~05185~^~671~^0.001^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~08/01/2012~ -~05185~^~672~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~08/01/2012~ -~05185~^~673~^0.023^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~08/01/2012~ -~05185~^~674~^0.226^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~08/01/2012~ -~05185~^~675~^0.196^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~08/01/2012~ -~05185~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~687~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~08/01/2012~ -~05185~^~689~^0.005^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~08/01/2012~ -~05185~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05185~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~851~^0.009^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~08/01/2012~ -~05185~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05185~^~853~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~08/01/2012~ -~05185~^~858~^0.009^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~08/01/2012~ -~05186~^~312~^0.063^4^0.001^~1~^~A~^^^1^0.060^0.067^3^0.059^0.068^~2, 3~^~08/01/2012~ -~05186~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~08/01/2012~ -~05186~^~404~^0.035^2^^~1~^~A~^^^1^0.021^0.050^1^^^^~08/01/2012~ -~05186~^~405~^0.205^2^^~1~^~A~^^^1^0.200^0.210^1^^^^~08/01/2012~ -~05186~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~08/01/2012~ -~05186~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~08/01/2012~ -~05186~^~415~^0.807^2^^~1~^~A~^^^1^0.788^0.827^1^^^^~08/01/2012~ -~05186~^~501~^0.321^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~502~^1.094^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~503~^0.864^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~504~^2.088^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~505~^2.486^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~506~^0.788^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~508~^0.972^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~509~^0.895^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~510~^0.963^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~511~^1.706^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~512~^0.817^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~513~^1.629^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~514~^2.409^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~516~^1.286^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~517~^1.628^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~518~^1.194^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05186~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~08/01/2012~ -~05186~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~08/01/2012~ -~05186~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~08/01/2012~ -~05186~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~08/01/2012~ -~05186~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~08/01/2012~ -~05186~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~08/01/2012~ -~05186~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~08/01/2012~ -~05186~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~08/01/2012~ -~05186~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~08/01/2012~ -~05186~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~08/01/2012~ -~05186~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~08/01/2012~ -~05186~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~08/01/2012~ -~05186~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~08/01/2012~ -~05186~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~08/01/2012~ -~05186~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~08/01/2012~ -~05186~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~08/01/2012~ -~05186~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~08/01/2012~ -~05186~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~08/01/2012~ -~05186~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~08/01/2012~ -~05186~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~08/01/2012~ -~05186~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~08/01/2012~ -~05186~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~08/01/2012~ -~05186~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~08/01/2012~ -~05186~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~08/01/2012~ -~05186~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~08/01/2012~ -~05186~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~08/01/2012~ -~05186~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~08/01/2012~ -~05186~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~08/01/2012~ -~05186~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~08/01/2012~ -~05186~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~08/01/2012~ -~05186~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05186~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~08/01/2012~ -~05186~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05186~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~08/01/2012~ -~05186~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~08/01/2012~ -~05187~^~312~^0.092^4^0.016^~1~^~A~^^^1^0.047^0.118^3^0.041^0.142^~4~^~08/01/2012~ -~05187~^~315~^0.014^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.010^0.019^~4~^~08/01/2012~ -~05187~^~404~^0.062^8^0.004^~1~^~A~^^^^0.048^0.083^^^^^~08/01/2012~ -~05187~^~405~^0.255^8^0.007^~1~^~A~^^^^0.230^0.300^^^^^~08/01/2012~ -~05187~^~406~^5.696^8^0.129^~1~^~A~^^^^5.080^6.200^^^^^~08/01/2012~ -~05187~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~08/01/2012~ -~05187~^~415~^0.440^8^0.013^~1~^~A~^^^^0.403^0.516^^^^^~08/01/2012~ -~05187~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~502~^0.773^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~503~^0.610^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~504~^1.475^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~505~^1.756^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~506~^0.556^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~508~^0.686^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~509~^0.632^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~510~^0.680^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~511~^1.205^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~512~^0.577^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~513~^1.151^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~514~^1.702^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~515~^2.886^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~516~^0.908^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~518~^0.843^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05187~^~606~^0.683^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~610~^0.002^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~611~^0.010^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~612~^0.024^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~613~^0.438^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~614~^0.190^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~617~^0.669^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~618~^0.524^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~619~^0.028^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~620~^0.036^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~621~^0.002^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~626~^0.069^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~ -~05187~^~628~^0.010^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~629~^0.001^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~630~^0.000^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~631~^0.003^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~645~^0.756^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05187~^~646~^0.613^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~ -~05188~^~312~^0.127^4^0.018^~1~^~A~^^^1^0.075^0.154^3^0.070^0.183^~2, 3~^~08/01/2012~ -~05188~^~315~^0.016^4^0.000^~1~^~A~^^^1^0.016^0.017^3^0.016^0.017^~2, 3~^~08/01/2012~ -~05188~^~404~^0.060^2^^~1~^~A~^^^1^0.058^0.063^1^^^^~08/01/2012~ -~05188~^~405~^0.375^2^^~1~^~A~^^^1^0.370^0.380^1^^^^~08/01/2012~ -~05188~^~406~^6.685^2^^~1~^~A~^^^1^6.270^7.100^1^^^^~08/01/2012~ -~05188~^~410~^1.015^2^^~1~^~A~^^^^0.930^1.100^^^^^~08/01/2012~ -~05188~^~415~^0.438^10^0.008^~1~^~A~^^^1^0.435^0.451^7^0.419^0.456^~2, 3~^~08/01/2012~ -~05188~^~501~^0.295^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~502~^1.007^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~503~^0.794^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~504~^1.921^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~505~^2.287^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~506~^0.725^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~508~^0.893^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~509~^0.823^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~510~^0.886^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~511~^1.569^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~512~^0.751^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~513~^1.498^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~514~^2.216^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~515~^3.758^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~516~^1.182^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~517~^1.497^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~518~^1.098^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05188~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~610~^0.006^6^0.001^~1~^~A~^^^^0.000^0.009^^^^^~08/01/2012~ -~05188~^~611~^0.021^6^0.005^~1~^~A~^^^^0.003^0.040^^^^^~03/01/2009~ -~05188~^~612~^0.061^6^0.006^~1~^~A~^^^^0.046^0.087^^^^^~08/01/2012~ -~05188~^~613~^1.178^6^0.040^~1~^~A~^^^^1.017^1.304^^^^^~08/01/2012~ -~05188~^~614~^0.505^6^0.015^~1~^~A~^^^^0.469^0.573^^^^^~08/01/2012~ -~05188~^~615~^0.006^6^0.000^~1~^~A~^^^^0.005^0.008^^^^^~08/01/2012~ -~05188~^~617~^1.832^6^0.051^~1~^~AS~^^^^1.689^2.051^^^^^~08/01/2012~ -~05188~^~618~^1.436^6^0.080^~1~^~AS~^^^^1.217^1.671^^^^^~08/01/2012~ -~05188~^~619~^0.075^6^0.007^~1~^~AS~^^^^0.049^0.094^^^^^~08/01/2012~ -~05188~^~620~^0.087^6^0.002^~1~^~A~^^^^0.080^0.093^^^^^~08/01/2012~ -~05188~^~621~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~08/01/2012~ -~05188~^~624~^0.003^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~08/01/2012~ -~05188~^~625~^0.008^6^0.001^~1~^~A~^^^^0.006^0.011^^^^^~08/01/2012~ -~05188~^~626~^0.187^6^0.019^~1~^~AS~^^^^0.112^0.219^^^^^~08/01/2012~ -~05188~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~628~^0.026^6^0.001^~1~^~A~^^^^0.024^0.029^^^^^~08/01/2012~ -~05188~^~629~^0.012^6^0.002^~1~^~A~^^^^0.006^0.018^^^^^~08/01/2012~ -~05188~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~08/01/2012~ -~05188~^~631~^0.008^6^0.000^~1~^~A~^^^^0.007^0.009^^^^^~08/01/2012~ -~05188~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~652~^0.011^6^0.001^~1~^~A~^^^^0.009^0.013^^^^^~08/01/2012~ -~05188~^~653~^0.017^6^0.002^~1~^~A~^^^^0.013^0.024^^^^^~08/01/2012~ -~05188~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~662~^0.004^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~08/01/2012~ -~05188~^~663~^0.061^6^0.008^~1~^~A~^^^^0.033^0.091^^^^^~08/01/2012~ -~05188~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~665~^0.015^6^0.001^~1~^~A~^^^^0.011^0.019^^^^^~08/01/2012~ -~05188~^~670~^0.010^6^0.002^~1~^~A~^^^^0.004^0.017^^^^^~08/01/2012~ -~05188~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~672~^0.012^6^0.001^~1~^~A~^^^^0.009^0.015^^^^^~08/01/2012~ -~05188~^~673~^0.182^6^0.018^~1~^~A~^^^^0.109^0.214^^^^^~08/01/2012~ -~05188~^~674~^1.771^6^0.047^~1~^~A~^^^^1.616^1.960^^^^^~08/01/2012~ -~05188~^~675~^1.411^6^0.079^~1~^~A~^^^^1.202^1.648^^^^^~08/01/2012~ -~05188~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~08/01/2012~ -~05188~^~685~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~08/01/2012~ -~05188~^~687~^0.008^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~08/01/2012~ -~05188~^~689~^0.009^6^0.000^~1~^~AS~^^^^0.008^0.010^^^^^~08/01/2012~ -~05188~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05188~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~851~^0.072^6^0.007^~1~^~A~^^^^0.048^0.090^^^^^~08/01/2012~ -~05188~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~08/01/2012~ -~05188~^~853~^0.009^6^0.000^~1~^~A~^^^^0.008^0.010^^^^^~08/01/2012~ -~05188~^~858~^0.017^6^0.001^~1~^~A~^^^^0.014^0.019^^^^^~08/01/2012~ -~05190~^~312~^0.142^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~315~^0.023^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~404~^0.054^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~405~^0.224^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~406~^3.446^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~410~^1.073^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~415~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~501~^0.288^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~502~^1.145^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~503~^1.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~504~^2.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~505~^2.356^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~506~^0.731^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~507~^0.304^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~508~^1.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~509~^0.978^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~510~^1.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~511~^1.887^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~512~^0.778^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~513~^1.729^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~514~^2.549^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~515~^4.171^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~516~^1.794^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~517~^1.329^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~518~^1.166^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~606~^4.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~612~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~613~^2.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~614~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~617~^4.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~618~^3.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~619~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~620~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~626~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05190~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~645~^5.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05190~^~646~^3.700^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~312~^0.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~315~^0.018^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~404~^0.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~405~^0.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~406~^5.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~410~^0.621^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~415~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~501~^0.242^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~502~^0.957^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~503~^1.099^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~504~^1.704^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~505~^1.996^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~506~^0.616^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~507~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~508~^0.857^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~509~^0.832^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~510~^1.141^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~511~^1.541^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~512~^0.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~513~^1.392^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~514~^2.111^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~515~^3.497^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~516~^1.299^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~517~^1.011^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~518~^0.966^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~606~^1.910^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05191~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~613~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~614~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~617~^2.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~618~^1.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~619~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~626~^0.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05191~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~645~^2.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05191~^~646~^1.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~404~^0.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~405~^0.131^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~406~^6.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~410~^0.634^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~415~^0.480^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~501~^0.318^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~502~^1.257^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~503~^1.447^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~504~^2.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~505~^2.626^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~506~^0.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~507~^0.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~508~^1.126^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~509~^1.096^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~510~^1.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~511~^2.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~512~^0.868^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~513~^1.822^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~514~^2.771^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~515~^4.597^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~516~^1.677^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~517~^1.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~518~^1.268^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~606~^2.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05192~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~613~^1.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~614~^0.500^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~617~^1.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~618~^1.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~620~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~626~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05192~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~645~^2.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05192~^~646~^1.800^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~312~^0.142^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~315~^0.022^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~405~^0.211^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~406~^2.947^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~410~^1.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~415~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~501~^0.219^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~502~^0.861^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~503~^0.998^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~504~^1.537^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~505~^1.809^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~506~^0.557^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~507~^0.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~508~^0.769^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~509~^0.757^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~510~^1.028^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~511~^1.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~512~^0.598^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~513~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~514~^1.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~515~^3.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~516~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~517~^0.861^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~518~^0.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~606~^2.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05193~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~613~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~614~^0.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~617~^1.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~618~^1.540^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~626~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05193~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~645~^2.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05193~^~646~^1.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~312~^0.154^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~315~^0.023^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~405~^0.241^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~406~^3.561^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~410~^1.205^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~415~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~501~^0.311^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~502~^1.225^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~503~^1.417^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~504~^2.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~505~^2.571^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~506~^0.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~507~^0.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~508~^1.096^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~509~^1.074^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~510~^1.463^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~511~^1.956^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~512~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~513~^1.756^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~514~^2.695^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~515~^4.486^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~516~^1.559^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~517~^1.242^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~518~^1.233^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~606~^3.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05194~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05194~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05194~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~612~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~613~^1.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~614~^0.820^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~617~^2.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~618~^2.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~619~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~620~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~621~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~626~^0.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05194~^~628~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~630~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~645~^2.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05194~^~646~^2.720^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~312~^0.077^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~405~^0.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~406~^4.425^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~410~^0.554^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~415~^0.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~501~^0.217^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~502~^0.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~503~^0.975^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~504~^1.531^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~505~^1.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~506~^0.551^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~507~^0.234^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~508~^0.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~509~^0.734^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~510~^1.031^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~511~^1.438^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~512~^0.585^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~513~^1.325^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~514~^1.934^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~515~^3.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~516~^1.425^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~517~^1.039^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~518~^0.885^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~606~^3.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05195~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~613~^2.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~614~^0.670^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~617~^4.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~618~^2.520^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~620~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~626~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05195~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~645~^4.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05195~^~646~^2.860^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~312~^0.056^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~405~^0.134^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~406~^5.732^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~410~^0.584^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~415~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~501~^0.295^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~502~^1.175^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~503~^1.327^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~504~^2.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~505~^2.412^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~506~^0.749^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~507~^0.315^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~508~^1.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~509~^1.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~510~^1.401^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~511~^1.946^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~512~^0.796^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~513~^1.789^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~514~^2.622^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~515~^4.279^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~516~^1.894^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~517~^1.391^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~518~^1.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~606~^3.390^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05196~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05196~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05196~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~613~^2.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~614~^0.740^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~617~^3.760^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~618~^2.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~619~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~620~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~626~^0.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05196~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~645~^4.660^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05196~^~646~^2.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~312~^0.146^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~315~^0.024^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~404~^0.043^6^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~405~^0.183^6^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~406~^4.922^6^0.096^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~410~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~415~^0.420^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~501~^0.311^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~502~^1.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~503~^1.408^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~504~^2.186^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~505~^2.555^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~506~^0.790^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~507~^0.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~508~^1.103^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~509~^1.064^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~510~^1.467^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~511~^1.995^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~512~^0.844^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~513~^1.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~514~^2.721^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~515~^4.491^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~516~^1.746^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~517~^1.337^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~518~^1.245^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~606~^1.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~613~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~614~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~617~^1.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~618~^1.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~620~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~626~^0.330^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05200~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~645~^1.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05200~^~646~^1.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05215~^~312~^0.092^4^0.016^~1~^~A~^^^^0.047^0.118^^^^^~01/01/2013~ -~05215~^~315~^0.014^4^0.001^~1~^~A~^^^^0.010^0.016^^^^^~01/01/2013~ -~05215~^~404~^0.062^8^0.004^~1~^~A~^^^^0.048^0.083^^^^^~01/01/2013~ -~05215~^~405~^0.255^8^0.007^~1~^~A~^^^^0.230^0.300^^^^^~01/01/2013~ -~05215~^~406~^5.696^8^0.129^~1~^~A~^^^^5.080^6.200^^^^^~01/01/2013~ -~05215~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~01/01/2013~ -~05215~^~415~^0.440^8^0.013^~1~^~A~^^^^0.403^0.516^^^^^~01/01/2013~ -~05215~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~502~^0.773^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~503~^0.610^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~504~^1.475^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~505~^1.756^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~506~^0.556^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~508~^0.686^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~509~^0.632^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~510~^0.680^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~511~^1.205^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~512~^0.577^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~513~^1.151^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~514~^1.702^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~515~^2.886^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~516~^0.908^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~518~^0.843^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05215~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05215~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05216~^~312~^0.127^4^0.018^~1~^~A~^^^^0.075^0.154^^^^^~01/01/2013~ -~05216~^~315~^0.016^4^0.000^~1~^~A~^^^^0.016^0.017^^^^^~01/01/2013~ -~05216~^~404~^0.060^2^^~1~^~A~^^^^0.058^0.063^^^^^~01/01/2013~ -~05216~^~405~^0.375^2^^~1~^~A~^^^^0.370^0.380^^^^^~01/01/2013~ -~05216~^~406~^6.685^2^^~1~^~A~^^^^6.270^7.100^^^^^~01/01/2013~ -~05216~^~410~^1.015^2^^~1~^~A~^^^^0.930^1.100^^^^^~01/01/2013~ -~05216~^~415~^0.438^10^0.008^~1~^~A~^^^^0.435^0.451^^^^^~01/01/2013~ -~05216~^~501~^0.295^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~502~^1.007^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~503~^0.794^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~504~^1.921^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~505~^2.287^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~506~^0.725^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~508~^0.893^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~509~^0.823^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~510~^0.886^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~511~^1.569^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~512~^0.751^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~513~^1.498^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~514~^2.216^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~515~^3.758^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~516~^1.182^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~517~^1.497^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~518~^1.098^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05216~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~610~^0.006^6^0.001^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05216~^~611~^0.021^6^0.005^~1~^~A~^^^^0.003^0.040^^^^^~01/01/2013~ -~05216~^~612~^0.061^6^0.006^~1~^~A~^^^^0.046^0.087^^^^^~01/01/2013~ -~05216~^~613~^1.178^6^0.040^~1~^~A~^^^^1.017^1.304^^^^^~01/01/2013~ -~05216~^~614~^0.505^6^0.015^~1~^~A~^^^^0.469^0.573^^^^^~01/01/2013~ -~05216~^~615~^0.006^6^0.000^~1~^~A~^^^^0.005^0.008^^^^^~01/01/2013~ -~05216~^~617~^1.832^6^0.051^~1~^~AS~^^^^1.689^2.051^^^^^~01/01/2013~ -~05216~^~618~^1.436^6^0.080^~1~^~AS~^^^^1.217^1.671^^^^^~01/01/2013~ -~05216~^~619~^0.075^6^0.007^~1~^~AS~^^^^0.049^0.094^^^^^~01/01/2013~ -~05216~^~620~^0.087^6^0.002^~1~^~A~^^^^0.080^0.093^^^^^~01/01/2013~ -~05216~^~621~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05216~^~624~^0.003^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05216~^~625~^0.008^6^0.001^~1~^~A~^^^^0.006^0.011^^^^^~01/01/2013~ -~05216~^~626~^0.187^6^0.019^~1~^~AS~^^^^0.112^0.219^^^^^~01/01/2013~ -~05216~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~628~^0.026^6^0.001^~1~^~A~^^^^0.024^0.029^^^^^~01/01/2013~ -~05216~^~629~^0.012^6^0.002^~1~^~A~^^^^0.006^0.018^^^^^~01/01/2013~ -~05216~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05216~^~631~^0.008^6^0.000^~1~^~A~^^^^0.007^0.009^^^^^~01/01/2013~ -~05216~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~652~^0.011^6^0.001^~1~^~A~^^^^0.009^0.013^^^^^~01/01/2013~ -~05216~^~653~^0.017^6^0.002^~1~^~A~^^^^0.013^0.024^^^^^~01/01/2013~ -~05216~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~662~^0.004^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05216~^~663~^0.061^6^0.008^~1~^~A~^^^^0.033^0.091^^^^^~01/01/2013~ -~05216~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~665~^0.015^6^0.001^~1~^~A~^^^^0.011^0.019^^^^^~01/01/2013~ -~05216~^~670~^0.010^6^0.002^~1~^~A~^^^^0.004^0.017^^^^^~01/01/2013~ -~05216~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~672~^0.012^6^0.001^~1~^~A~^^^^0.009^0.015^^^^^~01/01/2013~ -~05216~^~673~^0.182^6^0.018^~1~^~A~^^^^0.109^0.214^^^^^~01/01/2013~ -~05216~^~674~^1.771^6^0.047^~1~^~A~^^^^1.616^1.960^^^^^~01/01/2013~ -~05216~^~675~^1.411^6^0.079^~1~^~A~^^^^1.202^1.648^^^^^~01/01/2013~ -~05216~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05216~^~685~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05216~^~687~^0.008^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05216~^~689~^0.009^6^0.000^~1~^~AS~^^^^0.008^0.010^^^^^~01/01/2013~ -~05216~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05216~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~851~^0.072^6^0.007^~1~^~A~^^^^0.048^0.090^^^^^~01/01/2013~ -~05216~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05216~^~853~^0.009^6^0.000^~1~^~A~^^^^0.008^0.010^^^^^~01/01/2013~ -~05216~^~858~^0.017^6^0.001^~1~^~A~^^^^0.014^0.019^^^^^~01/01/2013~ -~05219~^~312~^0.070^4^0.003^~1~^~A~^^^^0.064^0.076^^^^^~01/01/2013~ -~05219~^~315~^0.011^4^0.000^~1~^~A~^^^^0.010^0.012^^^^^~01/01/2013~ -~05219~^~404~^0.042^2^^~1~^~A~^^^^0.035^0.048^^^^^~01/01/2013~ -~05219~^~405~^0.145^2^^~1~^~A~^^^^0.130^0.160^^^^^~01/01/2013~ -~05219~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~01/01/2013~ -~05219~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~01/01/2013~ -~05219~^~415~^0.813^2^^~1~^~A~^^^^0.792^0.835^^^^^~01/01/2013~ -~05219~^~501~^0.252^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~502~^0.859^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~503~^0.678^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~505~^1.952^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~506~^0.619^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~508~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~510~^0.756^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~511~^1.340^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~512~^0.641^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~514~^1.892^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~515~^3.209^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~516~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~517~^1.278^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~518~^0.937^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05219~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~05219~^~606~^0.289^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~610~^0.004^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~01/01/2013~ -~05219~^~611~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05219~^~612~^0.004^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~01/01/2013~ -~05219~^~613~^0.177^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~01/01/2013~ -~05219~^~614~^0.093^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~01/01/2013~ -~05219~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05219~^~617~^0.235^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~01/01/2013~ -~05219~^~618~^0.200^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~01/01/2013~ -~05219~^~619~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~01/01/2013~ -~05219~^~620~^0.028^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~01/01/2013~ -~05219~^~621~^0.002^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05219~^~624~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05219~^~625~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05219~^~626~^0.023^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~01/01/2013~ -~05219~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~628~^0.003^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~01/01/2013~ -~05219~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~08/01/1979~ -~05219~^~631~^0.003^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05219~^~645~^0.264^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~652~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05219~^~653~^0.003^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05219~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~663~^0.010^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~01/01/2013~ -~05219~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~665~^0.003^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05219~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05219~^~671~^0.001^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05219~^~672~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05219~^~673~^0.023^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~01/01/2013~ -~05219~^~674~^0.226^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~01/01/2013~ -~05219~^~675~^0.196^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~01/01/2013~ -~05219~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~687~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05219~^~689~^0.005^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~01/01/2013~ -~05219~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05219~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~851~^0.009^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~01/01/2013~ -~05219~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05219~^~853~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05219~^~858~^0.009^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~01/01/2013~ -~05220~^~312~^0.063^4^0.001^~1~^~A~^^^^0.060^0.067^^^^^~01/01/2013~ -~05220~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05220~^~404~^0.035^2^^~1~^~A~^^^^0.021^0.050^^^^^~01/01/2013~ -~05220~^~405~^0.205^2^^~1~^~A~^^^^0.200^0.210^^^^^~01/01/2013~ -~05220~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05220~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05220~^~415~^0.807^2^^~1~^~A~^^^^0.788^0.827^^^^^~01/01/2013~ -~05220~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~503~^0.773^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~504~^1.869^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~505~^2.225^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~506~^0.705^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~508~^0.869^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~509~^0.801^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~510~^0.862^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~511~^1.527^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~512~^0.731^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~513~^1.458^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~514~^2.156^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~515~^3.657^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~516~^1.151^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~517~^1.457^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~518~^1.068^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05220~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05220~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05220~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05220~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05220~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05220~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05220~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05220~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05220~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05220~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05220~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05220~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05220~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05220~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05220~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05220~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05220~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~08/01/1979~ -~05220~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05220~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05220~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05220~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05220~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05220~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05220~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05220~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05220~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05220~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05220~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05220~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05220~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05220~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05220~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05220~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05220~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05220~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05220~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05227~^~312~^0.070^4^0.003^~1~^~A~^^^^0.064^0.076^^^^^~01/01/2013~ -~05227~^~315~^0.011^4^0.000^~1~^~A~^^^^0.010^0.012^^^^^~01/01/2013~ -~05227~^~404~^0.042^2^^~1~^~A~^^^^0.035^0.048^^^^^~01/01/2013~ -~05227~^~405~^0.145^2^^~1~^~A~^^^^0.130^0.160^^^^^~01/01/2013~ -~05227~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~01/01/2013~ -~05227~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~01/01/2013~ -~05227~^~415~^0.813^2^^~1~^~A~^^^^0.792^0.835^^^^^~01/01/2013~ -~05227~^~501~^0.252^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~502~^0.859^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~503~^0.678^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~505~^1.952^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~506~^0.619^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~508~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~510~^0.756^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~511~^1.340^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~512~^0.641^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~514~^1.892^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~515~^3.209^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~516~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~517~^1.278^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~518~^0.937^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05227~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~606~^0.289^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05227~^~610~^0.004^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~01/01/2013~ -~05227~^~611~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05227~^~612~^0.004^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~01/01/2013~ -~05227~^~613~^0.177^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~01/01/2013~ -~05227~^~614~^0.093^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~01/01/2013~ -~05227~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05227~^~617~^0.235^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~01/01/2013~ -~05227~^~618~^0.200^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~08/01/1979~ -~05227~^~619~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~01/01/2013~ -~05227~^~620~^0.028^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~01/01/2013~ -~05227~^~621~^0.002^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05227~^~624~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05227~^~625~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05227~^~626~^0.023^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~01/01/2013~ -~05227~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~628~^0.003^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~01/01/2013~ -~05227~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~631~^0.003^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05227~^~645~^0.264^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~652~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05227~^~653~^0.003^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05227~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~663~^0.010^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~01/01/2013~ -~05227~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~665~^0.003^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05227~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05227~^~671~^0.001^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05227~^~672~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05227~^~673~^0.023^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~01/01/2013~ -~05227~^~674~^0.226^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~01/01/2013~ -~05227~^~675~^0.196^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~01/01/2013~ -~05227~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~687~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05227~^~689~^0.005^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~01/01/2013~ -~05227~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05227~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~851~^0.009^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~01/01/2013~ -~05227~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05227~^~853~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05227~^~858~^0.009^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~01/01/2013~ -~05228~^~312~^0.063^4^0.001^~1~^~A~^^^^0.060^0.067^^^^^~01/01/2013~ -~05228~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05228~^~404~^0.035^2^^~1~^~A~^^^^0.021^0.050^^^^^~01/01/2013~ -~05228~^~405~^0.205^2^^~1~^~A~^^^^0.200^0.210^^^^^~01/01/2013~ -~05228~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05228~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05228~^~415~^0.807^2^^~1~^~A~^^^^0.788^0.827^^^^^~01/01/2013~ -~05228~^~501~^0.321^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~502~^1.094^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~503~^0.864^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~504~^2.088^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~505~^2.486^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~506~^0.788^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~508~^0.972^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~509~^0.895^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~510~^0.963^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~511~^1.706^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~512~^0.817^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~513~^1.629^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~514~^2.409^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~516~^1.286^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~517~^1.628^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~518~^1.194^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05228~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05228~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05228~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05228~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05228~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05228~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05228~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05228~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05228~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05228~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05228~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05228~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05228~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05228~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05228~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05228~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05228~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05228~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05228~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05228~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05228~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05228~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05228~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05228~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05228~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05228~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05228~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05228~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05228~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05228~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05228~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05228~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05228~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05228~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05228~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05236~^~312~^0.078^3^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~315~^0.022^3^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~404~^0.021^15^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~405~^0.133^15^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~406~^2.801^15^0.115^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~410~^0.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~415~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~501~^0.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~502~^0.679^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~503~^0.612^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~504~^1.118^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~505~^1.136^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~506~^0.381^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~507~^0.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~508~^0.642^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~509~^0.432^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~510~^0.801^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~511~^1.468^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~512~^0.365^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~513~^1.544^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~514~^1.702^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~515~^2.366^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~516~^3.036^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~517~^1.775^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~518~^0.773^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~606~^11.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05236~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~612~^0.340^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~613~^8.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~614~^2.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~617~^15.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~618~^9.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~619~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~626~^3.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05236~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~645~^18.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05236~^~646~^10.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~312~^0.046^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05277~^~315~^0.015^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05277~^~404~^0.015^12^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~405~^0.129^15^0.008^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~406~^6.329^14^0.257^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~410~^0.850^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~415~^0.350^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~501~^0.243^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~502~^0.895^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~503~^1.085^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~504~^1.578^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~505~^1.764^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~506~^0.574^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~507~^0.297^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~508~^0.842^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~509~^0.699^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~510~^1.052^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~511~^1.355^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~512~^0.636^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~513~^1.258^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~514~^1.926^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~515~^3.173^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~516~^1.389^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~517~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~518~^0.762^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~606~^2.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05277~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05277~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05277~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~613~^1.620^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~614~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~617~^2.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~618~^1.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~620~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~626~^0.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05277~^~628~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~645~^3.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05277~^~646~^1.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~312~^0.400^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~315~^0.120^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~404~^0.088^5^0.007^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~405~^0.299^5^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~406~^2.510^5^0.056^~1~^^^^^^^^^^^~08/01/1979~ -~05282~^~410~^1.200^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~415~^0.060^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~501~^0.161^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~502~^0.507^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~503~^0.606^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~504~^1.029^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~505~^0.863^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~506~^0.270^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~507~^0.153^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~508~^0.567^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~509~^0.401^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~510~^0.719^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~511~^0.699^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~512~^0.303^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~513~^0.662^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~514~^1.083^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~515~^1.477^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~516~^0.662^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~517~^0.565^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~518~^0.491^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~606~^14.450^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~611~^0.030^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~612~^0.290^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~613~^9.450^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~614~^4.580^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~617~^24.040^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~618~^0.570^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~619~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~620~^0.250^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~626~^1.400^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~628~^0.130^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~645~^25.610^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05282~^~646~^0.840^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~312~^0.074^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~315~^0.017^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~404~^0.014^9^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~405~^0.171^9^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~406~^6.622^9^0.326^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~410~^0.686^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~415~^0.330^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05284~^~501~^0.261^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~502~^1.029^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~503~^1.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~504~^1.833^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~505~^2.143^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~506~^0.661^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~507~^0.266^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~508~^0.922^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~509~^0.895^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~510~^1.228^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~511~^1.663^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~512~^0.708^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~513~^1.503^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~514~^2.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~515~^3.765^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~516~^1.422^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~517~^1.096^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~518~^1.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~606~^2.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05284~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05284~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05284~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~612~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~613~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~614~^0.490^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~617~^1.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~618~^1.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~619~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~620~^0.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~621~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~626~^0.370^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~05284~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~645~^2.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05284~^~646~^1.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~312~^0.063^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~315~^0.013^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~404~^0.040^6^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~405~^0.110^6^0.010^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~406~^4.800^6^0.161^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~410~^0.589^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~415~^0.280^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~501~^0.206^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~502~^0.813^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~503~^0.934^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~504~^1.447^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~505~^1.693^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~506~^0.522^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~507~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~508~^0.729^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~509~^0.707^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~510~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~511~^1.313^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~512~^0.559^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~513~^1.187^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~514~^1.793^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~515~^2.974^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~516~^1.123^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~517~^0.866^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~518~^0.821^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~606~^1.750^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~612~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~613~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~614~^0.430^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~617~^1.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~618~^1.270^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~620~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~626~^0.320^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05285~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~645~^1.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05285~^~646~^1.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~312~^0.022^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~315~^0.005^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~404~^0.024^4^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~405~^0.127^4^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~406~^1.799^4^0.122^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~410~^0.213^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~415~^0.100^4^0.002^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~501~^0.067^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~502~^0.262^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~503~^0.306^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~504~^0.469^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~505~^0.554^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~506~^0.170^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~507~^0.061^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~508~^0.233^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~509~^0.232^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~510~^0.312^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~511~^0.410^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~512~^0.183^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~513~^0.364^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~514~^0.571^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~515~^0.960^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~516~^0.292^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~517~^0.245^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~518~^0.262^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~606~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~611~^0.000^4^0.000^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~612~^0.030^4^0.009^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~613~^0.540^4^0.143^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~614~^0.270^4^0.080^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~617~^0.860^4^0.229^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~618~^0.440^4^0.121^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~619~^0.030^4^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~626~^0.110^4^0.030^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05286~^~645~^0.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05286~^~646~^0.470^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~312~^0.041^5^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~315~^0.015^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~404~^0.053^17^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~405~^0.133^17^0.006^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~406~^9.067^3^1.020^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~410~^0.489^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~415~^0.320^2^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~501~^0.246^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~502~^0.967^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~503~^1.116^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~504~^1.725^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~505~^2.022^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~506~^0.623^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~507~^0.245^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~508~^0.867^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~509~^0.845^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~510~^1.155^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~511~^1.554^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~512~^0.668^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~513~^1.401^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~514~^2.130^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~515~^3.542^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~516~^1.287^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~517~^1.007^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~518~^0.976^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~606~^0.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~613~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~614~^0.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~617~^0.920^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~618~^0.680^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~620~^0.080^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~626~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05293~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~645~^1.140^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05293~^~646~^0.840^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~312~^0.139^1^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~315~^0.015^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~404~^0.083^6^0.004^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~405~^0.255^6^0.018^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~406~^2.409^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~410~^0.812^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~415~^0.230^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~501~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~502~^0.824^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~503~^0.954^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~504~^1.471^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~505~^1.727^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~506~^0.532^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~507~^0.205^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~508~^0.737^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~509~^0.722^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~510~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~511~^1.317^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~512~^0.571^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~513~^1.183^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~514~^1.811^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~515~^3.019^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~516~^1.057^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~517~^0.838^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~518~^0.830^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~606~^2.650^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~612~^0.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~613~^1.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~614~^0.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~617~^2.060^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~618~^1.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~619~^0.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~620~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~621~^0.040^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~626~^0.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05294~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~631~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~645~^2.530^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05294~^~646~^2.350^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~312~^0.088^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~315~^0.017^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~404~^0.040^6^0.003^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~405~^0.120^6^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~406~^4.400^6^0.129^~1~^^^^^^^^^^^~08/01/1979~ -~05295~^~410~^0.733^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~415~^0.380^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~501~^0.200^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~502~^0.782^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~503~^0.915^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~504~^1.402^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~505~^1.657^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~506~^0.509^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~507~^0.183^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~508~^0.698^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~509~^0.695^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~510~^0.934^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~511~^1.227^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~512~^0.549^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~513~^1.089^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~514~^1.708^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~515~^2.870^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~516~^0.872^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~517~^0.731^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~518~^0.782^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~606~^0.730^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~611~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~612~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~613~^0.370^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~617~^0.380^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~618~^0.490^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~619~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~620~^0.090^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~621~^0.020^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~626~^0.070^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~628~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~630~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~631~^0.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~645~^0.470^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05295~^~646~^0.640^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~312~^0.073^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~315~^0.083^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~404~^0.100^11^0.005^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~405~^0.180^11^0.012^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~406~^2.100^11^0.171^~1~^^^^^^^^^^^~08/01/1979~ -~05300~^~410~^0.533^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~415~^0.200^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~501~^0.170^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~502~^0.606^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~503~^0.726^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~504~^1.134^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~505~^1.168^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~506~^0.387^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~507~^0.178^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~508~^0.604^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~509~^0.549^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~510~^0.751^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~511~^0.923^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~512~^0.421^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~513~^0.808^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~514~^1.256^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~515~^2.831^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~516~^0.668^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~517~^0.798^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~518~^0.679^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~606~^4.380^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~612~^0.060^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~613~^2.480^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~614~^1.720^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~617~^6.830^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~618~^4.010^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~619~^0.240^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~620~^0.090^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~626~^0.080^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~645~^6.920^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05300~^~646~^4.390^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~312~^0.065^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~315~^0.019^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~404~^0.050^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~405~^0.129^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~406~^4.630^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~410~^0.824^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~415~^0.190^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~501~^0.091^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~502~^0.509^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~503~^0.403^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~504~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~505~^0.965^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~506~^0.303^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~507~^0.115^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~508~^0.452^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~509~^0.344^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~510~^0.472^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~511~^0.786^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~512~^0.319^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~513~^0.795^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~514~^1.165^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~515~^1.818^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~516~^0.903^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~517~^0.609^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~518~^0.536^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~606~^7.450^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~612~^0.260^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~613~^5.270^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~614~^1.820^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~617~^9.870^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~618~^4.480^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~619~^0.340^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~620~^0.100^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~621~^0.020^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~626~^0.550^7^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~629~^0.020^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05301~^~631~^0.000^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~645~^10.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05301~^~646~^4.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~312~^0.069^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~315~^0.020^3^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~404~^0.071^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~405~^0.175^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~406~^6.246^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~410~^1.202^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~415~^0.320^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~501~^0.110^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~502~^0.642^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~503~^0.499^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~504~^1.132^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~505~^1.194^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~506~^0.389^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~507~^0.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~508~^0.545^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~509~^0.485^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~510~^0.565^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~511~^0.918^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~512~^0.362^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~513~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~514~^1.426^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~515~^2.282^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~516~^0.931^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~517~^0.715^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~518~^0.671^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~606~^4.710^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~612~^0.120^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~613~^3.570^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~614~^1.020^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~617~^6.700^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~618~^2.070^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~619~^0.210^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~626~^0.710^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05302~^~645~^7.410^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05302~^~646~^2.280^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~312~^0.065^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~315~^0.019^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~404~^0.096^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~405~^0.140^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~406~^5.254^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~410~^0.772^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~415~^0.280^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~501~^0.118^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~502~^0.692^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~503~^0.570^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~504~^1.220^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~505~^1.314^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~506~^0.398^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~508~^0.584^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~509~^0.485^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~510~^0.584^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~511~^0.996^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~512~^0.525^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~513~^0.958^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~514~^1.594^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~515~^2.440^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~516~^0.864^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~517~^0.666^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~518~^0.716^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~606~^4.730^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~612~^0.150^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~613~^3.530^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~614~^0.980^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~617~^8.360^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~618~^4.110^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~619~^0.240^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~620~^0.100^8^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~626~^0.860^12^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05303~^~645~^9.300^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05303~^~646~^4.550^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~312~^0.093^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~315~^0.015^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~404~^0.048^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~405~^0.134^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~406~^1.969^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~410~^0.673^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~415~^0.210^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~501~^0.106^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~502~^0.636^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~503~^0.502^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~504~^1.082^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~505~^1.152^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~506~^0.374^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~507~^0.098^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~508~^0.551^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~509~^0.472^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~510~^0.544^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~511~^0.867^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~512~^0.504^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~513~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~514~^1.352^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~515~^2.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~516~^0.778^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~517~^0.648^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~518~^0.621^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~606~^5.310^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~611~^0.130^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~612~^0.270^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~613~^3.260^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~614~^1.650^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~617~^4.770^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~618~^4.180^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~619~^0.330^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~626~^0.250^4^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1979~ -~05304~^~645~^5.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05304~^~646~^4.510^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05305~^~312~^0.096^12^0.009^~1~^~A~^^^1^0.049^0.156^11^0.075^0.117^~1, 2, 3~^~04/01/2010~ -~05305~^~315~^0.008^12^0.001^~1~^~A~^^^1^0.005^0.011^11^0.007^0.009^~2, 3~^~04/01/2010~ -~05305~^~404~^0.066^12^0.003^~1~^~A~^^^1^0.050^0.080^11^0.060^0.072^~2, 3~^~04/01/2010~ -~05305~^~405~^0.156^12^0.012^~1~^~A~^^^1^0.100^0.210^11^0.130^0.182^~2, 3~^~04/01/2010~ -~05305~^~406~^6.733^12^0.671^~1~^~A~^^^1^4.320^10.800^11^5.256^8.210^~2, 3~^~04/01/2010~ -~05305~^~410~^0.993^3^0.064^~1~^~A~^^^1^0.880^1.100^2^0.720^1.267^~2, 3~^~04/01/2010~ -~05305~^~415~^0.564^3^0.152^~1~^~A~^^^1^0.350^0.857^2^-0.088^1.216^~2, 3~^~04/01/2010~ -~05305~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~502~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~503~^0.880^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~504~^1.622^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~505~^1.757^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~506~^0.578^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~508~^0.765^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~509~^0.696^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~510~^0.910^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~511~^1.426^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~512~^0.582^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~513~^1.223^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~514~^1.897^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~515~^3.144^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~516~^1.075^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~517~^0.869^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~518~^0.835^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05305~^~521~^0.163^3^0.037^~1~^~A~^^^1^0.090^0.200^2^0.006^0.321^~2, 3~^~04/01/2010~ -~05305~^~605~^0.103^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~606~^2.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~607~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.002^0.003^~1, 2, 3~^~07/01/2010~ -~05305~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05305~^~610~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.003^0.004^~2, 3~^~04/01/2010~ -~05305~^~611~^0.010^12^0.002^~1~^~A~^^^1^0.001^0.018^11^0.005^0.014^~1, 2, 3~^~04/01/2010~ -~05305~^~612~^0.067^12^0.014^~1~^~A~^^^1^0.008^0.134^11^0.036^0.097^~2, 3~^~04/01/2010~ -~05305~^~613~^1.353^12^0.249^~1~^~A~^^^1^0.260^2.605^11^0.804^1.902^~2, 3~^~04/01/2010~ -~05305~^~614~^0.546^12^0.095^~1~^~A~^^^1^0.129^1.008^11^0.338^0.754^~2, 3~^~04/01/2010~ -~05305~^~615~^0.007^12^0.001^~1~^~A~^^^1^0.001^0.013^11^0.004^0.010^~1, 2, 3~^~04/01/2010~ -~05305~^~617~^2.345^12^0.451^~1~^~AS~^^^1^0.379^4.523^11^1.352^3.338^~2, 3~^~04/01/2010~ -~05305~^~618~^1.932^12^0.337^~1~^~AS~^^^1^0.370^3.487^11^1.191^2.673^~2, 3~^~04/01/2010~ -~05305~^~619~^0.108^12^0.019^~1~^~AS~^^^1^0.018^0.187^11^0.066^0.151^~2, 3~^~04/01/2010~ -~05305~^~620~^0.098^12^0.005^~1~^~A~^^^1^0.064^0.121^11^0.086^0.109^~2, 3~^~04/01/2010~ -~05305~^~621~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.010^11^0.007^0.008^~2, 3~^~04/01/2010~ -~05305~^~624~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05305~^~625~^0.011^12^0.002^~1~^~A~^^^1^0.002^0.021^11^0.007^0.015^~1, 2, 3~^~04/01/2010~ -~05305~^~626~^0.230^12^0.045^~1~^~AS~^^^1^0.031^0.462^11^0.130^0.329^~2, 3~^~04/01/2010~ -~05305~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~05305~^~628~^0.027^12^0.005^~1~^~A~^^^1^0.003^0.054^11^0.015^0.039^~2, 3~^~04/01/2010~ -~05305~^~629~^0.006^12^0.001^~1~^~A~^^^1^0.001^0.016^11^0.003^0.009^~1, 2, 3~^~04/01/2010~ -~05305~^~630~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.001^0.002^~2, 3~^~04/01/2010~ -~05305~^~631~^0.010^12^0.001^~1~^~A~^^^1^0.007^0.012^11^0.008^0.011^~2, 3~^~04/01/2010~ -~05305~^~645~^2.635^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~646~^2.205^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~652~^0.010^12^0.002^~1~^~A~^^^1^0.001^0.020^11^0.006^0.015^~1, 2, 3~^~04/01/2010~ -~05305~^~653~^0.020^12^0.004^~1~^~A~^^^1^0.003^0.040^11^0.011^0.029^~2, 3~^~04/01/2010~ -~05305~^~654~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~05305~^~662~^0.005^12^0.001^~1~^~A~^^^1^0.001^0.011^11^0.003^0.008^~1, 2, 3~^~04/01/2010~ -~05305~^~663~^0.073^12^0.015^~1~^~A~^^^1^0.010^0.151^11^0.040^0.106^~2, 3~^~04/01/2010~ -~05305~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~665~^0.025^12^0.005^~1~^~A~^^^1^0.002^0.041^11^0.014^0.035^~1, 2, 3~^~04/01/2010~ -~05305~^~670~^0.013^12^0.003^~1~^~A~^^^1^0.001^0.027^11^0.007^0.019^~1, 2, 3~^~04/01/2010~ -~05305~^~671~^0.006^12^0.002^~1~^~A~^^^1^0.000^0.018^11^0.002^0.010^~1, 2, 3~^~04/01/2010~ -~05305~^~672~^0.014^12^0.002^~1~^~A~^^^1^0.004^0.027^11^0.009^0.019^~2, 3~^~04/01/2010~ -~05305~^~673~^0.224^12^0.044^~1~^~A~^^^1^0.030^0.451^11^0.127^0.322^~2, 3~^~04/01/2010~ -~05305~^~674~^2.272^12^0.436^~1~^~A~^^^1^0.369^4.382^11^1.312^3.233^~2, 3~^~04/01/2010~ -~05305~^~675~^1.894^12^0.329^~1~^~A~^^^1^0.364^3.422^11^1.169^2.619^~2, 3~^~04/01/2010~ -~05305~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05305~^~685~^0.006^12^0.001^~1~^~A~^^^1^0.001^0.011^11^0.003^0.008^~1, 2, 3~^~04/01/2010~ -~05305~^~687~^0.015^12^0.002^~1~^~A~^^^1^0.007^0.026^11^0.010^0.020^~2, 3~^~04/01/2010~ -~05305~^~689~^0.010^12^0.001^~1~^~AS~^^^1^0.004^0.014^11^0.007^0.012^~2, 3~^~04/01/2010~ -~05305~^~693~^0.078^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05305~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~851~^0.103^12^0.018^~1~^~A~^^^1^0.017^0.176^11^0.063^0.143^~2, 3~^~04/01/2010~ -~05305~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05305~^~853~^0.009^12^0.001^~1~^~A~^^^1^0.004^0.013^11^0.006^0.011^~2, 3~^~04/01/2010~ -~05305~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05305~^~858~^0.018^12^0.001^~1~^~A~^^^1^0.013^0.021^11^0.016^0.020^~2, 3~^~04/01/2010~ -~05306~^~312~^0.151^24^0.015^~1~^~A~^^^1^0.050^0.278^23^0.120^0.181^~2, 3~^~04/01/2010~ -~05306~^~315~^0.011^24^0.001^~1~^~A~^^^1^0.005^0.018^23^0.009^0.012^~2, 3~^~04/01/2010~ -~05306~^~404~^0.077^24^0.002^~1~^~A~^^^1^0.060^0.100^23^0.072^0.082^~2, 3~^~04/01/2010~ -~05306~^~405~^0.211^24^0.012^~1~^~A~^^^1^0.110^0.330^23^0.185^0.237^~2, 3~^~04/01/2010~ -~05306~^~406~^8.724^24^0.506^~1~^~A~^^^1^5.440^14.300^23^7.677^9.771^~2, 3~^~04/01/2010~ -~05306~^~410~^1.193^6^0.089^~1~^~A~^^^1^0.900^1.400^5^0.965^1.422^~2, 3~^~04/01/2010~ -~05306~^~415~^0.633^6^0.117^~1~^~A~^^^1^0.383^1.080^5^0.332^0.935^~2, 3~^~04/01/2010~ -~05306~^~501~^0.312^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~502~^1.258^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~503~^1.227^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~504~^2.262^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~506~^0.806^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~507~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~508~^1.068^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~509~^0.971^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~510~^1.270^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~511~^1.990^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~512~^0.811^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~513~^1.706^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~514~^2.647^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~516~^1.500^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~517~^1.213^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~518~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~521~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05306~^~605~^0.134^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~606~^2.669^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~607~^0.003^24^0.000^~1~^~A~^^^1^0.002^0.004^23^0.003^0.003^~1, 2, 3~^~04/01/2010~ -~05306~^~608~^0.001^24^0.000^~1~^~A~^^^1^0.000^0.003^23^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~05306~^~609~^0.002^24^0.000^~1~^~A~^^^1^0.000^0.005^23^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05306~^~610~^0.004^24^0.000^~1~^~A~^^^1^0.002^0.007^23^0.004^0.005^~1, 2, 3~^~04/01/2010~ -~05306~^~611~^0.014^24^0.002^~1~^~A~^^^1^0.002^0.039^23^0.010^0.018^~1, 2, 3~^~04/01/2010~ -~05306~^~612~^0.088^24^0.012^~1~^~A~^^^1^0.014^0.184^23^0.063^0.113^~2, 3~^~04/01/2010~ -~05306~^~613~^1.775^24^0.217^~1~^~A~^^^1^0.389^3.393^23^1.327^2.224^~2, 3~^~04/01/2010~ -~05306~^~614~^0.729^24^0.084^~1~^~A~^^^1^0.205^1.397^23^0.554^0.903^~2, 3~^~04/01/2010~ -~05306~^~615~^0.009^24^0.001^~1~^~A~^^^1^0.001^0.019^23^0.007^0.012^~1, 2, 3~^~04/01/2010~ -~05306~^~617~^3.080^24^0.392^~1~^~AS~^^^1^0.578^6.161^23^2.268^3.891^~2, 3~^~04/01/2010~ -~05306~^~618~^2.556^24^0.296^~1~^~AS~^^^1^0.490^4.647^23^1.943^3.169^~2, 3~^~04/01/2010~ -~05306~^~619~^0.144^24^0.017^~1~^~AS~^^^1^0.026^0.240^23^0.110^0.178^~2, 3~^~04/01/2010~ -~05306~^~620~^0.127^24^0.008^~1~^~A~^^^1^0.072^0.188^23^0.112^0.143^~2, 3~^~04/01/2010~ -~05306~^~621~^0.009^24^0.001^~1~^~A~^^^1^0.006^0.016^23^0.008^0.010^~2, 3~^~04/01/2010~ -~05306~^~624~^0.003^24^0.000^~1~^~A~^^^1^0.001^0.006^23^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05306~^~625~^0.014^24^0.002^~1~^~A~^^^1^0.002^0.027^23^0.010^0.018^~1, 2, 3~^~04/01/2010~ -~05306~^~626~^0.298^24^0.039^~1~^~AS~^^^1^0.043^0.566^23^0.217^0.378^~2, 3~^~04/01/2010~ -~05306~^~627~^0.001^24^0.000^~1~^~A~^^^1^0.000^0.002^23^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~05306~^~628~^0.037^24^0.005^~1~^~A~^^^1^0.007^0.077^23^0.027^0.047^~2, 3~^~04/01/2010~ -~05306~^~629~^0.010^24^0.002^~1~^~A~^^^1^0.002^0.030^23^0.005^0.014^~1, 2, 3~^~04/01/2010~ -~05306~^~630~^0.002^24^0.000^~1~^~AS~^^^1^0.000^0.003^23^0.001^0.002^~2, 3~^~04/01/2010~ -~05306~^~631~^0.012^24^0.001^~1~^~A~^^^1^0.008^0.018^23^0.011^0.014^~2, 3~^~04/01/2010~ -~05306~^~645~^3.458^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~646~^2.917^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~652~^0.013^24^0.002^~1~^~A~^^^1^0.003^0.028^23^0.010^0.017^~2, 3~^~04/01/2010~ -~05306~^~653~^0.027^24^0.004^~1~^~A~^^^1^0.005^0.057^23^0.019^0.034^~2, 3~^~04/01/2010~ -~05306~^~654~^0.001^24^0.000^~1~^~A~^^^1^0.000^0.003^23^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05306~^~662~^0.007^24^0.001^~1~^~A~^^^1^0.001^0.014^23^0.005^0.009^~1, 2, 3~^~04/01/2010~ -~05306~^~663~^0.095^24^0.013^~1~^~A~^^^1^0.015^0.210^23^0.068^0.123^~2, 3~^~04/01/2010~ -~05306~^~664~^0.000^24^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05306~^~665~^0.031^24^0.004^~1~^~A~^^^1^0.004^0.054^23^0.023^0.040^~2, 3~^~04/01/2010~ -~05306~^~670~^0.017^24^0.002^~1~^~A~^^^1^0.001^0.032^23^0.012^0.022^~1, 2, 3~^~04/01/2010~ -~05306~^~671~^0.008^24^0.002^~1~^~A~^^^1^0.000^0.036^23^0.003^0.013^~1, 2, 3~^~04/01/2010~ -~05306~^~672~^0.019^24^0.002^~1~^~A~^^^1^0.005^0.039^23^0.014^0.023^~2, 3~^~04/01/2010~ -~05306~^~673~^0.290^24^0.038^~1~^~A~^^^1^0.041^0.552^23^0.212^0.369^~2, 3~^~04/01/2010~ -~05306~^~674~^2.984^24^0.379^~1~^~A~^^^1^0.560^5.951^23^2.200^3.769^~2, 3~^~04/01/2010~ -~05306~^~675~^2.508^24^0.290^~1~^~A~^^^1^0.484^4.562^23^1.907^3.108^~2, 3~^~04/01/2010~ -~05306~^~676~^0.002^24^0.000^~1~^~A~^^^1^0.000^0.003^23^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05306~^~685~^0.008^24^0.001^~1~^~A~^^^1^0.001^0.014^23^0.006^0.010^~1, 2, 3~^~04/01/2010~ -~05306~^~687~^0.020^24^0.002^~1~^~A~^^^1^0.008^0.036^23^0.016^0.024^~2, 3~^~04/01/2010~ -~05306~^~689~^0.013^24^0.001^~1~^~AS~^^^1^0.004^0.019^23^0.010^0.015^~2, 3~^~04/01/2010~ -~05306~^~693~^0.103^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05306~^~697~^0.000^24^0.000^~1~^~A~^^^1^0.000^0.001^23^0.000^0.000^~1, 2, 3~^~04/01/2010~ -~05306~^~851~^0.136^24^0.016^~1~^~A~^^^1^0.024^0.226^23^0.104^0.169^~2, 3~^~04/01/2010~ -~05306~^~852~^0.001^24^0.000^~1~^~A~^^^1^0.000^0.003^23^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05306~^~853~^0.011^24^0.001^~1~^~A~^^^1^0.004^0.017^23^0.009^0.014^~2, 3~^~04/01/2010~ -~05306~^~856~^0.000^24^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05306~^~858~^0.024^24^0.001^~1~^~A~^^^1^0.015^0.034^23^0.021^0.026^~2, 3~^~04/01/2010~ -~05307~^~312~^0.049^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~315~^0.016^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~404~^0.073^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~405~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~406~^5.675^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~410~^0.609^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~415~^0.295^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~501~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~502~^0.705^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~503~^0.847^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~504~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~505~^1.385^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~506~^0.453^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~507~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~508~^0.663^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~509~^0.548^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~510~^0.828^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~511~^1.078^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~512~^0.499^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~513~^1.006^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~514~^1.526^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~515~^2.493^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~516~^1.141^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~517~^0.846^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~518~^0.606^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~606~^3.890^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~612~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~613~^2.970^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~614~^0.780^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~617~^5.110^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~618~^2.460^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~619~^0.120^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~626~^0.960^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05307~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~645~^6.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05307~^~646~^2.770^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~312~^0.061^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~315~^0.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~404~^0.067^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~405~^0.199^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~406~^5.897^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~410~^0.593^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~415~^0.307^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~501~^0.247^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~502~^0.916^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~503~^1.100^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~504~^1.610^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~505~^1.799^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~506~^0.588^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~507~^0.298^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~508~^0.861^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~509~^0.711^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~510~^1.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~511~^1.400^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~512~^0.648^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~513~^1.306^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~514~^1.981^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~515~^3.238^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~516~^1.482^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~517~^1.098^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~518~^0.787^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~606~^5.050^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05308~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05308~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05308~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05308~^~611~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~612~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~613~^3.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~614~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~617~^6.640^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~618~^3.200^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~619~^0.160^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~620~^0.190^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~626~^1.250^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05308~^~628~^0.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~629~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05308~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~645~^8.000^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05308~^~646~^3.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~312~^0.053^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~404~^0.092^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~405~^0.216^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~406~^6.744^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~410~^0.636^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~415~^0.385^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~501~^0.234^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~502~^0.846^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~503~^1.058^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~504~^1.504^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~505~^1.702^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~506~^0.555^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~507~^0.256^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~508~^0.795^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~509~^0.676^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~510~^0.994^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~511~^1.209^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~512~^0.622^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~513~^1.093^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~514~^1.786^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~515~^3.001^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~516~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~517~^0.824^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~518~^0.689^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~606~^0.850^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~613~^0.590^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~614~^0.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~617~^0.870^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~618~^0.600^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~620~^0.150^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~626~^0.180^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05309~^~631~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~645~^1.070^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05309~^~646~^0.810^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~312~^0.059^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~315~^0.015^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~404~^0.075^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~405~^0.227^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~406~^6.273^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~410~^0.555^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~415~^0.358^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~501~^0.272^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~502~^0.984^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~503~^1.230^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~504~^1.748^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~505~^1.980^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~506~^0.645^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~507~^0.298^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~508~^0.925^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~509~^0.787^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~510~^1.156^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~511~^1.405^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~512~^0.723^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~513~^1.271^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~514~^2.076^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~515~^3.489^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~516~^1.144^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~517~^0.958^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~518~^0.801^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~606~^0.990^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05310~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05310~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05310~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05310~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~612~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~613~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~614~^0.260^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~617~^1.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~618~^0.690^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~620~^0.170^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~621~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~626~^0.210^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05310~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~629~^0.010^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~05310~^~631~^0.020^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~645~^1.240^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05310~^~646~^0.940^0^^~1~^^^^^^^^^^^~08/01/1979~ -~05311~^~312~^0.050^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~404~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~405~^0.100^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~406~^2.400^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~415~^0.190^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05311~^~606~^2.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~611~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~612~^0.063^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~613~^1.713^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~614~^0.465^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~617~^2.730^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~618~^1.597^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~619~^0.074^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~620~^0.074^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~621~^0.211^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~626~^0.465^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05311~^~628~^0.084^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~629~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~631~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~645~^3.279^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05311~^~646~^1.978^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05312~^~312~^0.039^3^0.039^~1~^~A~^^^1^0.000^0.116^2^-0.128^0.205^~1, 2, 3~^~04/01/2004~ -~05312~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~404~^0.074^3^0.004^~1~^~A~^^^1^0.067^0.081^2^0.056^0.092^~2, 3~^~04/01/2004~ -~05312~^~405~^0.242^3^0.058^~1~^~A~^^^1^0.143^0.344^2^-0.007^0.492^~2, 3~^~04/01/2004~ -~05312~^~406~^5.500^3^0.236^~1~^~A~^^^1^5.150^5.950^2^4.483^6.517^~2, 3~^~04/01/2004~ -~05312~^~410~^0.545^3^0.023^~1~^~A~^^^1^0.507^0.586^2^0.447^0.643^~2, 3~^~04/01/2004~ -~05312~^~415~^0.142^3^0.016^~1~^~A~^^^1^0.113^0.167^2^0.074^0.210^~2, 3~^~04/01/2004~ -~05312~^~501~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~502~^0.743^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~503~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~504~^1.278^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~505~^1.352^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~506~^0.414^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~507~^0.184^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~508~^0.726^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~509~^0.493^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~510~^0.809^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~511~^1.188^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~512~^0.462^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~513~^1.082^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~514~^1.644^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~515~^2.527^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~516~^1.268^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~517~^0.906^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~518~^0.708^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05312~^~521~^0.511^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~05312~^~606~^3.321^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05312~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05312~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~612~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~2, 3~^~04/01/2004~ -~05312~^~613~^2.637^3^0.149^~1~^~A~^^^1^2.340^2.800^2^1.997^3.276^~2, 3~^~04/01/2004~ -~05312~^~614~^0.607^3^0.022^~1~^~A~^^^1^0.580^0.650^2^0.513^0.701^~2, 3~^~04/01/2004~ -~05312~^~615~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~617~^4.737^3^0.259^~1~^~A~^^^1^4.220^5.020^2^3.623^5.850^~2, 3~^~04/01/2004~ -~05312~^~618~^2.073^3^0.156^~1~^~A~^^^1^1.870^2.380^2^1.402^2.745^~2, 3~^~04/01/2004~ -~05312~^~619~^0.117^3^0.007^~1~^~A~^^^1^0.110^0.130^2^0.088^0.145^~2, 3~^~04/01/2004~ -~05312~^~620~^0.077^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.062^0.091^~2, 3~^~04/01/2004~ -~05312~^~621~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~04/01/2004~ -~05312~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~625~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~04/01/2004~ -~05312~^~626~^0.960^3^0.061^~1~^~A~^^^1^0.840^1.040^2^0.697^1.223^~2, 3~^~04/01/2004~ -~05312~^~627~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~04/01/2004~ -~05312~^~628~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~04/01/2004~ -~05312~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~631~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~04/01/2004~ -~05312~^~645~^5.766^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05312~^~646~^2.359^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~05312~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~653~^0.007^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.008^0.021^~1, 2, 3~^~04/01/2004~ -~05312~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~672~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~04/01/2004~ -~05312~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05312~^~689~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~04/01/2004~ -~05312~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~312~^0.049^3^0.049^~1~^~A~^^^1^0.000^0.147^2^-0.162^0.260^~1, 2, 3~^~04/01/2004~ -~05313~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~404~^0.081^3^0.005^~1~^~A~^^^1^0.076^0.092^2^0.058^0.105^~2, 3~^~04/01/2004~ -~05313~^~405~^0.296^3^0.055^~1~^~A~^^^1^0.238^0.405^2^0.060^0.531^~2, 3~^~04/01/2004~ -~05313~^~406~^7.100^3^0.717^~1~^~A~^^^1^5.990^8.440^2^4.017^10.183^~2, 3~^~04/01/2004~ -~05313~^~410~^0.711^3^0.074^~1~^~A~^^^1^0.588^0.844^2^0.392^1.029^~2, 3~^~04/01/2004~ -~05313~^~415~^0.210^3^0.028^~1~^~A~^^^1^0.162^0.260^2^0.088^0.331^~2, 3~^~04/01/2004~ -~05313~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~502~^0.958^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~503~^0.960^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~504~^1.646^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~505~^1.742^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~506~^0.533^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~507~^0.238^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~508~^0.935^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~509~^0.635^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~510~^1.043^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~511~^1.530^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~512~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~513~^1.394^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~514~^2.117^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~515~^3.256^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~516~^1.633^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~517~^1.167^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~518~^0.912^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05313~^~521~^0.658^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~05313~^~606~^3.655^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05313~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05313~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~612~^0.067^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.052^0.081^~2, 3~^~04/01/2004~ -~05313~^~613~^2.883^3^0.156^~1~^~A~^^^1^2.590^3.120^2^2.214^3.553^~2, 3~^~04/01/2004~ -~05313~^~614~^0.680^3^0.026^~1~^~A~^^^1^0.640^0.730^2^0.566^0.794^~2, 3~^~04/01/2004~ -~05313~^~615~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~1, 2, 3~^~04/01/2004~ -~05313~^~617~^5.163^3^0.291^~1~^~A~^^^1^4.590^5.540^2^3.910^6.417^~2, 3~^~04/01/2004~ -~05313~^~618~^2.250^3^0.131^~1~^~A~^^^1^2.040^2.490^2^1.687^2.813^~2, 3~^~04/01/2004~ -~05313~^~619~^0.130^3^0.006^~1~^~A~^^^1^0.120^0.140^2^0.105^0.155^~2, 3~^~04/01/2004~ -~05313~^~620~^0.093^3^0.014^~1~^~A~^^^1^0.070^0.120^2^0.031^0.156^~2, 3~^~04/01/2004~ -~05313~^~621~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~04/01/2004~ -~05313~^~624~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.020^2^-0.022^0.035^~1, 2, 3~^~04/01/2004~ -~05313~^~625~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~04/01/2004~ -~05313~^~626~^1.057^3^0.085^~1~^~A~^^^1^0.900^1.190^2^0.693^1.420^~2, 3~^~04/01/2004~ -~05313~^~627~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~04/01/2004~ -~05313~^~628~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~04/01/2004~ -~05313~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~631~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2004~ -~05313~^~645~^6.297^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05313~^~646~^2.599^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05313~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~653~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~04/01/2004~ -~05313~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~672~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~04/01/2004~ -~05313~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05313~^~689~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2004~ -~05313~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~05314~^~312~^0.029^6^0.000^~1~^~A~^^^1^0.026^0.030^5^0.027^0.030^~2, 3~^~04/01/2013~ -~05314~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~1, 2, 3~^~04/01/2013~ -~05314~^~404~^0.068^3^0.011^~1~^~A~^^^1^0.049^0.087^2^0.022^0.114^~2, 3~^~04/01/2013~ -~05314~^~405~^0.127^3^0.027^~1~^~A~^^^1^0.100^0.180^2^0.012^0.241^~2, 3~^~04/01/2013~ -~05314~^~406~^7.583^3^0.872^~1~^~A~^^^1^6.000^9.010^2^3.830^11.337^~2, 3~^~04/01/2013~ -~05314~^~410~^1.230^2^^~1~^~A~^^^1^0.920^1.540^1^^^^~04/01/2013~ -~05314~^~415~^0.761^3^0.042^~1~^~A~^^^1^0.696^0.839^2^0.581^0.941^~2, 3~^~04/01/2013~ -~05314~^~501~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~502~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~503~^0.969^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~504~^1.634^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~505~^1.899^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~506~^0.514^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~507~^0.207^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~508~^0.797^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~510~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~511~^1.335^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~512~^0.736^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~513~^1.153^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~514~^1.858^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~515~^2.925^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~516~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~517~^0.627^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~518~^0.753^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~05314~^~605~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~606~^0.545^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~610~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.020^5^0.012^0.019^~2, 3~^~04/01/2013~ -~05314~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.005^~2, 3~^~04/01/2013~ -~05314~^~612~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.013^~2, 3~^~04/01/2013~ -~05314~^~613~^0.383^6^0.027^~1~^~A~^^^1^0.318^0.460^5^0.313^0.453^~2, 3~^~04/01/2013~ -~05314~^~614~^0.122^6^0.007^~1~^~A~^^^1^0.103^0.150^5^0.103^0.141^~2, 3~^~04/01/2013~ -~05314~^~615~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~05314~^~617~^0.575^6^0.036^~1~^~AS~^^^1^0.473^0.665^5^0.482^0.667^~2, 3~^~04/01/2013~ -~05314~^~618~^0.291^6^0.020^~1~^~AS~^^^1^0.245^0.370^5^0.241^0.341^~2, 3~^~04/01/2013~ -~05314~^~619~^0.011^6^0.001^~1~^~AS~^^^1^0.010^0.013^5^0.010^0.013^~2, 3~^~04/01/2013~ -~05314~^~620~^0.044^6^0.002^~1~^~A~^^^1^0.038^0.051^5^0.037^0.050^~2, 3~^~04/01/2013~ -~05314~^~621~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.001^0.006^~1, 2, 3~^~04/01/2009~ -~05314~^~624~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~05314~^~625~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~05314~^~626~^0.085^6^0.008^~1~^~AS~^^^1^0.066^0.106^5^0.065^0.105^~2, 3~^~04/01/2013~ -~05314~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~628~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.008^0.013^~2, 3~^~04/01/2013~ -~05314~^~629~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 2, 3~^~04/01/2009~ -~05314~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~05314~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.005^0.007^~2, 3~^~04/01/2013~ -~05314~^~645~^0.673^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~05314~^~646~^0.384^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~05314~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05314~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~05314~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~663~^0.006^6^0.001^~1~^~A~^^^1^0.003^0.010^5^0.004^0.009^~2, 3~^~04/01/2013~ -~05314~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2013~ -~05314~^~673~^0.085^6^0.008^~1~^~A~^^^1^0.066^0.106^5^0.065^0.105^~2, 3~^~04/01/2013~ -~05314~^~674~^0.569^6^0.035^~1~^~A~^^^1^0.470^0.658^5^0.477^0.660^~2, 3~^~04/01/2013~ -~05314~^~675~^0.291^6^0.020^~1~^~A~^^^1^0.245^0.370^5^0.241^0.341^~2, 3~^~04/01/2013~ -~05314~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~689~^0.010^6^0.001^~1~^~AS~^^^1^0.006^0.012^5^0.007^0.012^~2, 3~^~04/01/2013~ -~05314~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05314~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~851~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.013^5^0.010^0.013^~2, 3~^~04/01/2013~ -~05314~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~05314~^~853~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.012^5^0.007^0.012^~2, 3~^~04/01/2013~ -~05314~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05314~^~858~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.015^5^0.010^0.014^~2, 3~^~04/01/2009~ -~05315~^~406~^7.855^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~501~^0.337^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~502~^1.039^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~503~^1.247^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~504~^2.050^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~505~^2.078^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~506~^0.655^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~507~^0.372^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~508~^1.019^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~509~^0.925^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~510~^1.270^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~511~^1.548^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~512~^0.643^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~513~^1.537^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~514~^2.379^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~515~^3.798^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~516~^1.360^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~517~^1.192^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~518~^1.047^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~606~^2.922^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~612~^0.060^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~613~^2.259^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~614~^0.603^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~617~^4.939^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~618~^1.496^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~619~^0.070^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~620~^0.066^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~626~^0.420^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~628~^0.059^2^^~1~^~A~^^^^^^^^^^~05/01/1997~ -~05315~^~645~^5.428^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05315~^~646~^1.632^0^^~1~^^^^^^^^^^^~05/01/1997~ -~05316~^~406~^10.350^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~501~^0.380^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~502~^1.170^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~503~^1.404^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~504~^2.310^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~505~^2.340^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~506~^0.737^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~507~^0.420^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~508~^1.148^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~509~^1.042^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~510~^1.431^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~511~^1.744^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~512~^0.724^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~513~^1.731^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~514~^2.681^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~515~^4.279^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~516~^1.532^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~517~^1.342^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~518~^1.179^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~606~^0.578^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~612~^0.011^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~613~^0.415^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~614~^0.153^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~617~^0.792^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~618~^0.302^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~619~^0.012^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~620~^0.064^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~626~^0.066^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~628~^0.010^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05316~^~645~^0.871^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05316~^~646~^0.378^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~406~^5.770^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~501~^0.368^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~502~^1.134^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~503~^1.361^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~504~^2.238^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~505~^2.268^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~506~^0.715^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~507~^0.407^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~508~^1.113^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~509~^1.010^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~510~^1.387^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~511~^1.691^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~512~^0.702^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~513~^1.678^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~514~^2.598^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~515~^4.147^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~516~^1.485^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~517~^1.301^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~518~^1.143^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~606~^2.975^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~612~^0.069^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~613~^2.300^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~614~^0.606^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~617~^5.109^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~618~^1.748^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~619~^0.083^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~620~^0.065^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~626~^0.440^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~628~^0.058^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05317~^~645~^5.617^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05317~^~646~^1.896^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~406~^5.330^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~501~^0.400^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~502~^1.234^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~503~^1.481^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~504~^2.435^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~505~^2.468^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~506~^0.778^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~507~^0.442^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~508~^1.211^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~509~^1.099^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~510~^1.509^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~511~^1.839^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~512~^0.764^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~513~^1.825^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~514~^2.826^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~515~^4.512^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~516~^1.616^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~517~^1.415^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~518~^1.243^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~606~^1.339^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~612~^0.029^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~613~^1.021^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~614~^0.289^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~617~^2.387^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~618~^0.817^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~619~^0.039^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~620~^0.054^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~626~^0.216^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~628~^0.024^2^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~05318~^~645~^2.637^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05318~^~646~^0.909^0^^~1~^^^^^^^^^^^~06/01/1997~ -~05319~^~312~^0.089^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05319~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05319~^~405~^0.229^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05319~^~406~^5.745^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05319~^~415~^0.184^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05319~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~502~^0.903^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~503~^1.188^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~504~^2.191^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~505~^2.517^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~506~^0.772^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~508~^1.018^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~509~^0.862^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~510~^1.309^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~511~^1.782^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~512~^0.758^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~513~^1.480^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~514~^2.485^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~515~^4.052^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~516~^1.307^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~517~^1.495^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~518~^1.234^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05319~^~521~^0.239^4^0.013^~1~^~A~^^^1^0.208^0.265^3^0.199^0.280^~2, 3~^~05/01/2012~ -~05319~^~606~^1.573^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05319~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~612~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~613~^1.262^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~614~^0.278^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~617~^2.302^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~618~^0.935^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~619~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~626~^0.507^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05319~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05319~^~645~^2.827^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05319~^~646~^1.029^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05320~^~312~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~315~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~404~^0.117^10^0.050^~1~^~A~^^^1^0.051^0.562^9^0.005^0.229^~4~^~04/01/2004~ -~05320~^~405~^0.260^10^0.018^~1~^~A~^^^1^0.209^0.394^9^0.221^0.300^~4~^~04/01/2004~ -~05320~^~406~^6.030^10^0.197^~1~^~A~^^^1^5.090^7.050^9^5.585^6.475^~4~^~04/01/2004~ -~05320~^~410~^0.603^6^0.039^~1~^~A~^^^1^0.491^0.740^5^0.503^0.703^~4~^~04/01/2004~ -~05320~^~415~^0.183^10^0.021^~1~^~A~^^^1^0.124^0.317^9^0.136^0.230^~4~^~04/01/2004~ -~05320~^~501~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~502~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~503~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~504~^1.444^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~505~^1.529^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~506~^0.468^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~508~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~509~^0.558^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~510~^0.915^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~511~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~513~^1.224^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~514~^1.858^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~515~^2.857^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~516~^1.433^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~517~^1.024^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~518~^0.801^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~05320~^~521~^0.578^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2005~ -~05320~^~606~^3.966^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05320~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~05320~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~610~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~612~^0.078^10^0.003^~1~^~A~^^^1^0.060^0.090^9^0.071^0.085^~4~^~04/01/2004~ -~05320~^~613~^3.146^10^0.101^~1~^~A~^^^1^2.410^3.550^9^2.916^3.376^~4~^~04/01/2004~ -~05320~^~614~^0.717^10^0.020^~1~^~A~^^^1^0.600^0.800^9^0.671^0.763^~4~^~04/01/2004~ -~05320~^~615~^0.011^10^0.002^~1~^~A~^^^1^0.007^0.020^9^0.007^0.014^~1, 4~^~04/01/2004~ -~05320~^~617~^5.527^10^0.188^~1~^~A~^^^1^4.200^6.520^9^5.103^5.951^~4~^~04/01/2004~ -~05320~^~618~^2.492^10^0.095^~1~^~A~^^^1^1.850^2.820^9^2.276^2.708^~4~^~04/01/2004~ -~05320~^~619~^0.143^10^0.006^~1~^~A~^^^1^0.110^0.160^9^0.130^0.156^~4~^~04/01/2004~ -~05320~^~620~^0.088^10^0.003^~1~^~A~^^^1^0.070^0.110^9^0.081^0.095^~4~^~04/01/2004~ -~05320~^~621~^0.011^10^0.001^~1~^~A~^^^1^0.007^0.020^9^0.008^0.013^~1, 4~^~04/01/2004~ -~05320~^~624~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~625~^0.030^10^0.001^~1~^~A~^^^1^0.020^0.040^9^0.027^0.033^~4~^~04/01/2004~ -~05320~^~626~^1.126^10^0.055^~1~^~A~^^^1^0.860^1.530^9^1.000^1.251^~4~^~04/01/2004~ -~05320~^~627~^0.027^10^0.002^~1~^~A~^^^1^0.020^0.030^9^0.023^0.030^~4~^~04/01/2004~ -~05320~^~628~^0.054^10^0.002^~1~^~A~^^^1^0.040^0.060^9^0.049^0.059^~4~^~04/01/2004~ -~05320~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~630~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~631~^0.027^10^0.002^~1~^~A~^^^1^0.020^0.030^9^0.023^0.030^~4~^~04/01/2004~ -~05320~^~645~^6.737^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05320~^~646~^2.838^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~05320~^~652~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~653~^0.014^10^0.002^~1~^~A~^^^1^0.010^0.020^9^0.010^0.018^~4~^~04/01/2004~ -~05320~^~654~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~672~^0.021^10^0.001^~1~^~A~^^^1^0.020^0.030^9^0.019^0.023^~4~^~04/01/2004~ -~05320~^~687~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05320~^~689~^0.030^10^0.000^~1~^~A~^^^1^0.030^0.030^9^0.030^0.030^~4~^~04/01/2004~ -~05320~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~04/01/2004~ -~05323~^~312~^0.207^6^0.103^~1~^~A~^^^1^0.077^0.723^5^-0.058^0.473^~2, 3~^~02/01/2007~ -~05323~^~315~^0.254^6^0.020^~1~^~A~^^^1^0.189^0.325^5^0.204^0.305^~2, 3~^~02/01/2007~ -~05323~^~404~^0.073^6^0.005^~1~^~A~^^^1^0.049^0.083^5^0.060^0.086^~2, 3~^~02/01/2007~ -~05323~^~405~^0.054^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~406~^6.630^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~ -~05323~^~410~^1.081^3^0.010^~1~^~A~^^^1^1.065^1.100^2^1.036^1.125^~2, 3~^~02/01/2007~ -~05323~^~415~^0.155^3^0.030^~1~^~A~^^^1^0.100^0.203^2^0.026^0.284^~2, 3~^~02/01/2007~ -~05323~^~501~^0.178^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~502~^0.542^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~503~^0.586^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~504~^0.991^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~505~^0.961^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~506~^0.292^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~508~^0.510^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~509~^0.322^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~510~^0.641^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~511~^0.782^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~512~^0.423^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~513~^0.702^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~514~^1.157^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~515~^2.181^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~516~^0.615^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~517~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~518~^0.523^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~521~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05323~^~606~^4.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~613~^3.219^3^0.073^~1~^~A~^^^1^3.093^3.346^2^2.904^3.533^~2, 3~^~02/01/2007~ -~05323~^~614~^0.794^3^0.075^~1~^~A~^^^1^0.671^0.931^2^0.470^1.119^~2, 3~^~02/01/2007~ -~05323~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~617~^8.288^3^0.359^~1~^~A~^^^1^7.673^8.918^2^6.742^9.835^~2, 3~^~02/01/2007~ -~05323~^~618~^5.049^3^0.237^~1~^~A~^^^1^4.717^5.509^2^4.027^6.071^~2, 3~^~02/01/2007~ -~05323~^~619~^0.155^3^0.023^~1~^~A~^^^1^0.124^0.199^2^0.057^0.252^~2, 3~^~02/01/2007~ -~05323~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~626~^0.691^3^0.003^~1~^~A~^^^1^0.687^0.697^2^0.679^0.704^~2, 3~^~02/01/2007~ -~05323~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~645~^8.980^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~646~^5.204^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05323~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05323~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~05324~^~312~^0.090^2^^~1~^~A~^^^1^0.087^0.092^1^^^^~02/01/2007~ -~05324~^~315~^0.260^2^^~1~^~A~^^^1^0.218^0.301^1^^^^~02/01/2007~ -~05324~^~404~^0.083^2^^~1~^~A~^^^1^0.083^0.083^^^^^~02/01/2007~ -~05324~^~405~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~406~^4.764^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~ -~05324~^~410~^1.090^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~415~^0.183^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~502~^0.556^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~503~^0.606^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~504~^1.006^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~505~^0.972^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~506~^0.302^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~507~^0.167^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~508~^0.516^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~509~^0.321^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~510~^0.649^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~511~^0.842^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~512~^0.421^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~513~^0.728^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~514~^1.187^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~515~^2.223^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~516~^0.647^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~517~^0.683^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~518~^0.535^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~05324~^~606~^3.662^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~613~^3.001^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~614~^0.661^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~617~^7.651^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~618~^4.680^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~619~^0.125^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~626~^0.686^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05324~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~645~^8.337^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~646~^4.805^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05324~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05324~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~05326~^~312~^0.316^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~315~^0.235^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~404~^0.324^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~405~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~406~^6.514^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~410~^0.994^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~415~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~501~^0.202^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~502~^0.612^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~503~^0.667^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~504~^1.108^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~505~^1.070^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~506~^0.332^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~507~^0.184^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~508~^0.568^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~509~^0.354^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~510~^0.714^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~511~^0.927^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~512~^0.464^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~513~^0.802^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~514~^1.307^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~515~^2.447^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~516~^0.713^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~517~^0.751^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~518~^0.589^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~521~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05326~^~606~^3.200^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~612~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~613~^2.640^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~614~^0.560^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~617~^5.160^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~618~^2.690^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~619~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~624~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~626~^0.550^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~628~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~645~^5.710^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~646~^2.790^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~05326~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~653~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05326~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~05327~^~312~^0.205^3^0.059^~1~^~A~^^^1^0.113^0.314^2^-0.048^0.457^~2, 3~^~02/01/2007~ -~05327~^~315~^0.229^3^0.032^~1~^~A~^^^1^0.187^0.291^2^0.093^0.365^~2, 3~^~02/01/2007~ -~05327~^~404~^0.211^3^0.045^~1~^~A~^^^1^0.122^0.264^2^0.018^0.404^~2, 3~^~02/01/2007~ -~05327~^~405~^0.091^3^0.005^~1~^~A~^^^1^0.081^0.097^2^0.070^0.112^~2, 3~^~02/01/2007~ -~05327~^~406~^5.710^3^0.427^~1~^~A~^^^1^4.858^6.198^2^3.871^7.548^~2, 3~^~02/01/2007~ -~05327~^~410~^0.855^3^0.042^~1~^~A~^^^1^0.781^0.928^2^0.673^1.038^~2, 3~^~02/01/2007~ -~05327~^~415~^0.041^3^0.004^~1~^~A~^^^1^0.037^0.050^2^0.023^0.060^~2, 3~^~02/01/2007~ -~05327~^~501~^0.184^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~502~^0.557^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~503~^0.603^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~504~^1.019^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~505~^0.988^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~507~^0.167^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~508~^0.525^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~509~^0.331^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~510~^0.659^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~511~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~512~^0.435^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~513~^0.722^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~514~^1.189^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~515~^2.242^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~516~^0.632^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~517~^0.675^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~518~^0.538^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~05327~^~521~^0.075^2^^~1~^~A~^^^1^0.075^0.076^1^^^^~02/01/2007~ -~05327~^~606~^3.260^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05327~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~613~^2.650^3^0.314^~1~^~A~^^^1^2.250^3.270^2^1.298^4.002^~2, 3~^~02/01/2007~ -~05327~^~614~^0.610^3^0.087^~1~^~A~^^^1^0.460^0.760^2^0.237^0.982^~2, 3~^~02/01/2007~ -~05327~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~617~^5.933^3^0.787^~1~^~A~^^^1^4.400^7.010^2^2.546^9.321^~2, 3~^~02/01/2007~ -~05327~^~618~^3.197^3^0.407^~1~^~A~^^^1^2.500^3.910^2^1.445^4.948^~2, 3~^~02/01/2007~ -~05327~^~619~^0.143^3^0.043^~1~^~A~^^^1^0.100^0.230^2^-0.043^0.330^~2, 3~^~02/01/2007~ -~05327~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~626~^0.510^3^0.017^~1~^~A~^^^1^0.480^0.540^2^0.435^0.585^~2, 3~^~02/01/2007~ -~05327~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~628~^0.037^3^0.037^~1~^~A~^^^1^0.000^0.110^2^-0.121^0.194^~2, 3~^~02/01/2007~ -~05327~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~645~^6.480^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05327~^~646~^3.340^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~05327~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05327~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2007~ -~05332~^~312~^0.065^4^0.010^~1~^~A~^^^1^0.050^0.092^3^0.034^0.097^~4~^~04/01/2007~ -~05332~^~315~^0.016^4^0.002^~1~^~A~^^^1^0.012^0.020^3^0.010^0.021^~4~^~04/01/2007~ -~05332~^~404~^0.109^4^0.008^~1~^~A~^^^1^0.086^0.123^3^0.083^0.135^~4~^~04/01/2007~ -~05332~^~405~^0.241^4^0.013^~1~^~A~^^^1^0.227^0.279^3^0.200^0.281^~4~^~04/01/2007~ -~05332~^~406~^5.575^4^0.223^~1~^~A~^^^1^5.310^6.240^3^4.864^6.286^~4~^~04/01/2007~ -~05332~^~410~^1.092^4^0.026^~1~^~A~^^^1^1.020^1.140^3^1.009^1.176^~4~^~04/01/2007~ -~05332~^~415~^0.512^4^0.017^~1~^~A~^^^1^0.470^0.542^3^0.459^0.566^~4~^~04/01/2007~ -~05332~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~502~^0.727^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~503~^0.794^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~504~^1.361^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~505~^1.509^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~506~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~507~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~508~^0.683^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~509~^0.604^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~510~^0.826^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~511~^1.128^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~512~^0.529^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~513~^0.991^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~514~^1.616^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~515~^2.611^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~516~^0.838^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~517~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~518~^0.731^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~05332~^~521~^0.094^2^^~1~^~A~^^^1^0.090^0.099^1^^^^~04/01/2007~ -~05332~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~606~^2.301^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05332~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05332~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~612~^0.041^4^0.001^~1~^~A~^^^1^0.040^0.042^3^0.040^0.043^~4~^~05/01/2007~ -~05332~^~613~^1.791^4^0.051^~1~^~A~^^^1^1.661^1.875^3^1.628^1.955^~4~^~05/01/2007~ -~05332~^~614~^0.456^4^0.010^~1~^~A~^^^1^0.431^0.474^3^0.426^0.486^~4~^~05/01/2007~ -~05332~^~615~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^3^0.005^0.005^~1, 4~^~05/01/2007~ -~05332~^~617~^3.035^4^0.107^~1~^~AS~^^^1^2.785^3.258^3^2.695^3.374^~4~^~05/01/2007~ -~05332~^~618~^1.324^4^0.078^~1~^~AS~^^^1^1.164^1.481^3^1.100^1.598^~4~^~05/01/2007~ -~05332~^~619~^0.071^4^0.003^~1~^~AS~^^^1^0.063^0.078^3^0.062^0.083^~4~^~05/01/2007~ -~05332~^~620~^0.074^4^0.003^~1~^~A~^^^1^0.068^0.081^3^0.066^0.083^~4~^~05/01/2007~ -~05332~^~621~^0.023^0^^~4~^~BFSN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~625~^0.016^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.013^0.018^~4~^~05/01/2007~ -~05332~^~626~^0.536^4^0.019^~1~^~A~^^^1^0.492^0.569^3^0.476^0.596^~4~^~05/01/2007~ -~05332~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05332~^~628~^0.025^4^0.001^~1~^~A~^^^1^0.022^0.027^3^0.021^0.028^~4~^~05/01/2007~ -~05332~^~629~^0.008^0^^~4~^~BFSN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~630~^0.000^0^^~4~^~BFSN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~631~^0.008^0^^~4~^~BFSN~^~05006~^^^^^^^^^~05/01/2007~ -~05332~^~645~^3.611^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~646~^1.508^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~653~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^3^0.007^0.007^~4~^~05/01/2007~ -~05332~^~663~^0.042^4^0.002^~1~^~A~^^^1^0.037^0.047^3^0.035^0.050^~4~^~05/01/2007~ -~05332~^~669~^0.022^4^0.001^~1~^~A~^^^1^0.019^0.025^3^0.018^0.026^~4~^~05/01/2007~ -~05332~^~672~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.012^3^0.010^0.012^~4~^~05/01/2007~ -~05332~^~674~^2.992^4^0.104^~1~^~A~^^^1^2.748^3.211^3^2.661^3.324^~4~^~05/01/2007~ -~05332~^~675~^1.303^4^0.077^~1~^~A~^^^1^1.145^1.456^3^1.082^1.572^~4~^~05/01/2007~ -~05332~^~685~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.013^0.016^~4~^~05/01/2007~ -~05332~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~05332~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05332~^~851~^0.057^4^0.003^~1~^~A~^^^1^0.050^0.063^3^0.049^0.068^~4~^~05/01/2007~ -~05333~^~312~^0.062^4^0.003^~1~^~A~^^^1^0.058^0.071^3^0.053^0.072^~4~^~05/01/2007~ -~05333~^~315~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.018^3^0.014^0.018^~4~^~05/01/2007~ -~05333~^~404~^0.121^4^0.010^~1~^~A~^^^1^0.100^0.148^3^0.089^0.153^~4~^~05/01/2007~ -~05333~^~405~^0.302^4^0.005^~1~^~A~^^^1^0.292^0.314^3^0.288^0.317^~4~^~05/01/2007~ -~05333~^~406~^7.107^4^0.117^~1~^~A~^^^1^6.840^7.400^3^6.736^7.479^~4~^~05/01/2007~ -~05333~^~410~^1.327^4^0.038^~1~^~A~^^^1^1.220^1.380^3^1.207^1.447^~4~^~05/01/2007~ -~05333~^~415~^0.538^4^0.024^~1~^~A~^^^1^0.492^0.586^3^0.463^0.613^~4~^~05/01/2007~ -~05333~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~502~^0.970^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~503~^1.060^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~504~^1.816^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~505~^2.014^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~506~^0.596^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~507~^0.251^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~508~^0.912^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~509~^0.806^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~510~^1.102^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~511~^1.505^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~513~^1.323^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~514~^2.156^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~515~^3.484^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~516~^1.118^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~517~^0.878^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~518~^0.976^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~05333~^~521~^0.126^0^^~1~^~A~^~05332~^^^^^^^^^~03/01/2017~ -~05333~^~605~^0.087^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~606~^3.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~612~^0.056^4^0.001^~1~^~A~^^^1^0.055^0.058^3^0.054^0.058^~4~^~05/01/2007~ -~05333~^~613~^2.414^4^0.033^~1~^~A~^^^1^2.340^2.495^3^2.309^2.519^~4~^~05/01/2007~ -~05333~^~614~^0.621^4^0.007^~1~^~A~^^^1^0.612^0.641^3^0.600^0.642^~4~^~05/01/2007~ -~05333~^~615~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.008^3^0.008^0.008^~4~^~05/01/2007~ -~05333~^~617~^4.099^4^0.071^~1~^~AS~^^^1^3.955^4.243^3^3.873^4.326^~4~^~05/01/2007~ -~05333~^~618~^1.818^4^0.061^~1~^~AS~^^^1^1.725^1.965^3^1.661^2.046^~4~^~05/01/2007~ -~05333~^~619~^0.100^4^0.001^~1~^~AS~^^^1^0.099^0.105^3^0.098^0.106^~4~^~05/01/2007~ -~05333~^~620~^0.106^4^0.002^~1~^~A~^^^1^0.104^0.114^3^0.102^0.115^~4~^~05/01/2007~ -~05333~^~621~^0.031^0^^~4~^~BFFN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~625~^0.021^4^0.001^~1~^~A~^^^1^0.020^0.022^3^0.019^0.023^~4~^~05/01/2007~ -~05333~^~626~^0.725^4^0.016^~1~^~A~^^^1^0.690^0.759^3^0.674^0.775^~4~^~05/01/2007~ -~05333~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~ -~05333~^~628~^0.033^4^0.001^~1~^~A~^^^1^0.032^0.036^3^0.030^0.036^~4~^~05/01/2007~ -~05333~^~629~^0.008^0^^~4~^~BFFN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~630~^0.000^0^^~4~^~BFFN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~631~^0.016^0^^~4~^~BFFN~^~05009~^^^^^^^^^~05/01/2007~ -~05333~^~645~^4.879^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~646~^2.080^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~652~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 4~^~05/01/2007~ -~05333~^~653~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.010^3^0.008^0.010^~4~^~05/01/2007~ -~05333~^~663~^0.056^4^0.002^~1~^~A~^^^1^0.052^0.059^3^0.050^0.062^~4~^~05/01/2007~ -~05333~^~669~^0.031^4^0.000^~1~^~A~^^^1^0.031^0.032^3^0.030^0.032^~4~^~05/01/2007~ -~05333~^~672~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.014^0.017^~4~^~05/01/2007~ -~05333~^~674~^4.043^4^0.069^~1~^~A~^^^1^3.903^4.184^3^3.823^4.264^~4~^~05/01/2007~ -~05333~^~675~^1.787^4^0.061^~1~^~A~^^^1^1.693^1.934^3^1.630^2.015^~4~^~05/01/2007~ -~05333~^~685~^0.020^4^0.000^~1~^~A~^^^1^0.019^0.021^3^0.019^0.021^~4~^~05/01/2007~ -~05333~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~05333~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~05/01/2007~ -~05333~^~851~^0.081^4^0.001^~1~^~A~^^^1^0.079^0.085^3^0.078^0.086^~4~^~05/01/2007~ -~05334~^~312~^0.084^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05334~^~404~^0.055^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~405~^0.234^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~406~^5.441^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~415~^0.176^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05334~^~501~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~502~^0.740^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~503~^0.964^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~504~^1.736^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~505~^1.974^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~506~^0.611^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~507~^0.213^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~508~^0.787^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~509~^0.658^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~510~^1.050^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~511~^1.410^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~512~^0.629^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~513~^1.151^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~514~^1.983^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~515~^3.224^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~516~^0.973^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~517~^1.101^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~518~^0.962^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05334~^~521~^0.117^4^0.004^~1~^~A~^^^1^0.109^0.125^3^0.103^0.131^~2, 3~^~05/01/2012~ -~05334~^~606~^2.777^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~611~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~612~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~613~^2.219^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~614~^0.483^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~617~^3.902^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~618~^1.490^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~619~^0.089^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~626~^0.783^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05334~^~628~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~645~^4.727^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05334~^~646~^1.621^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05335~^~312~^0.102^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~404~^0.060^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~405~^0.200^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~406~^0.400^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~415~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~05335~^~606~^3.920^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05335~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05335~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~611~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~612~^0.115^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~613~^2.908^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~614~^0.785^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~617~^4.530^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~618~^2.570^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~619~^0.108^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~621~^0.043^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~626~^0.742^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~05335~^~628~^0.158^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~629~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~631~^0.022^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~645~^5.500^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05335~^~646~^2.980^0^^~4~^^^^^^^^^^^~03/01/2009~ -~05339~^~312~^0.066^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05339~^~404~^0.092^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~405~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~406~^7.676^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~415~^0.184^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05339~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~502~^0.737^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~503~^1.269^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~504~^2.139^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~505~^2.221^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~506~^0.809^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~507~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~508~^1.064^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~509~^0.829^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~510~^1.433^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~511~^1.689^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~512~^0.747^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~513~^1.525^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~514~^2.528^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~515~^3.981^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~516~^1.402^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~517~^1.730^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~518~^0.686^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05339~^~606~^2.134^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05339~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~612~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~613~^1.697^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~614~^0.392^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~617~^3.005^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~618~^1.167^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~619~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~626~^0.582^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05339~^~628~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2013~ -~05339~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05339~^~645~^3.610^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05339~^~646~^1.266^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05341~^~312~^0.079^4^0.006^~1~^~A~^^^1^0.063^0.088^3^0.061^0.097^~2, 3~^~06/01/2007~ -~05341~^~315~^0.024^4^0.003^~1~^~A~^^^1^0.020^0.033^3^0.015^0.034^~2, 3~^~06/01/2007~ -~05341~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~406~^6.000^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~06/01/2007~ -~05341~^~501~^0.271^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~502~^0.758^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~503~^1.232^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~504~^2.080^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~505~^2.182^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~506~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~508~^1.040^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~509~^0.769^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~510~^1.391^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~511~^1.617^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~512~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~513~^1.458^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~514~^2.453^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~515~^3.935^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~516~^1.323^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~517~^1.210^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~518~^0.735^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~521~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05341~^~605~^0.146^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~606~^3.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~612~^0.066^4^0.007^~1~^~A~^^^1^0.047^0.077^3^0.044^0.087^~2, 3~^~06/01/2007~ -~05341~^~613~^2.362^4^0.215^~1~^~A~^^^1^1.870^2.900^3^1.679^3.046^~2, 3~^~06/01/2007~ -~05341~^~614~^0.558^4^0.044^~1~^~A~^^^1^0.432^0.624^3^0.417^0.698^~2, 3~^~06/01/2007~ -~05341~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~617~^4.083^4^0.355^~1~^~AS~^^^1^3.407^5.059^3^2.955^5.212^~2, 3~^~06/01/2007~ -~05341~^~618~^1.562^4^0.164^~1~^~AS~^^^1^1.286^2.027^3^1.040^2.085^~2, 3~^~06/01/2007~ -~05341~^~619~^0.092^4^0.010^~1~^~AS~^^^1^0.080^0.121^3^0.061^0.123^~2, 3~^~06/01/2007~ -~05341~^~620~^0.032^4^0.005^~1~^~A~^^^1^0.024^0.045^3^0.017^0.047^~2, 3~^~06/01/2007~ -~05341~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~625~^0.025^4^0.003^~1~^~A~^^^1^0.021^0.035^3^0.015^0.035^~2, 3~^~06/01/2007~ -~05341~^~626~^0.759^4^0.084^~1~^~A~^^^1^0.639^1.009^3^0.490^1.028^~2, 3~^~06/01/2007~ -~05341~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~05341~^~628~^0.031^4^0.003^~1~^~A~^^^1^0.025^0.037^3^0.022^0.039^~2, 3~^~06/01/2007~ -~05341~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2007~ -~05341~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~645~^4.898^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~646~^1.701^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~652~^0.008^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.001^0.016^~1, 2, 3~^~06/01/2007~ -~05341~^~653~^0.013^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.009^0.017^~2, 3~^~06/01/2007~ -~05341~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~663~^0.096^4^0.006^~1~^~A~^^^1^0.086^0.114^3^0.076^0.116^~2, 3~^~06/01/2007~ -~05341~^~669~^0.050^4^0.004^~1~^~A~^^^1^0.040^0.058^3^0.037^0.063^~2, 3~^~06/01/2007~ -~05341~^~672~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.013^0.016^~2, 3~^~06/01/2007~ -~05341~^~674~^3.987^4^0.348^~1~^~A~^^^1^3.319^4.945^3^2.878^5.096^~2, 3~^~06/01/2007~ -~05341~^~675~^1.513^4^0.161^~1~^~A~^^^1^1.239^1.968^3^1.001^2.024^~2, 3~^~06/01/2007~ -~05341~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~685~^0.020^4^0.003^~1~^~A~^^^1^0.017^0.028^3^0.011^0.028^~2, 3~^~06/01/2007~ -~05341~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~693~^0.096^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~05341~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~05341~^~851~^0.073^4^0.007^~1~^~A~^^^1^0.063^0.093^3^0.050^0.096^~2, 3~^~06/01/2007~ -~05342~^~312~^0.043^6^0.003^~1~^~A~^^^1^0.031^0.049^5^0.036^0.049^~2, 3~^~05/01/2014~ -~05342~^~315~^0.009^6^0.004^~1~^~A~^^^1^0.000^0.020^5^-0.001^0.020^~1, 2, 3~^~05/01/2014~ -~05342~^~404~^0.045^3^0.023^~1~^~A~^^^1^0.000^0.074^2^-0.053^0.144^~1, 2, 3~^~05/01/2014~ -~05342~^~405~^0.207^3^0.009^~1~^~A~^^^1^0.190^0.220^2^0.169^0.245^~2, 3~^~05/01/2014~ -~05342~^~406~^9.233^3^0.587^~1~^~A~^^^1^8.060^9.830^2^6.709^11.758^~2, 3~^~05/01/2014~ -~05342~^~410~^1.350^2^^~1~^~A~^^^1^1.300^1.400^1^^^^~05/01/2014~ -~05342~^~415~^0.240^3^0.010^~1~^~A~^^^1^0.220^0.250^2^0.197^0.283^~2, 3~^~05/01/2014~ -~05342~^~501~^0.313^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~502~^0.707^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~503~^1.274^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~504~^2.442^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~505~^2.907^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~506~^0.864^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~507~^0.311^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~508~^1.195^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~509~^0.990^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~510~^1.326^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~511~^1.857^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~512~^1.064^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~513~^1.439^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~514~^1.715^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~515~^3.285^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~516~^1.231^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~517~^1.088^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~518~^0.963^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~05342~^~521~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~06/01/2007~ -~05342~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~606~^0.775^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~607~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.009^~1, 2, 3~^~05/01/2014~ -~05342~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~610~^0.016^6^0.003^~1~^~A~^^^1^0.000^0.021^5^0.007^0.024^~1, 2, 3~^~05/01/2014~ -~05342~^~611~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 2, 3~^~05/01/2014~ -~05342~^~612~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.016^5^0.010^0.015^~2, 3~^~05/01/2014~ -~05342~^~613~^0.546^6^0.027^~1~^~A~^^^1^0.451^0.651^5^0.476^0.615^~2, 3~^~05/01/2014~ -~05342~^~614~^0.185^6^0.006^~1~^~A~^^^1^0.166^0.201^5^0.170^0.200^~2, 3~^~05/01/2014~ -~05342~^~615~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~05342~^~617~^0.830^6^0.042^~1~^~AS~^^^1^0.676^0.996^5^0.723^0.937^~2, 3~^~05/01/2014~ -~05342~^~618~^0.421^6^0.031^~1~^~AS~^^^1^0.303^0.519^5^0.341^0.502^~2, 3~^~05/01/2014~ -~05342~^~619~^0.015^6^0.001^~1~^~AS~^^^1^0.010^0.018^5^0.012^0.018^~2, 3~^~05/01/2014~ -~05342~^~620~^0.058^6^0.002^~1~^~A~^^^1^0.051^0.064^5^0.053^0.063^~2, 3~^~05/01/2014~ -~05342~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~05/01/2014~ -~05342~^~624~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^5^-0.001^0.004^~1, 2, 3~^~05/01/2014~ -~05342~^~625~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 2, 3~^~06/01/2007~ -~05342~^~626~^0.116^6^0.009^~1~^~AS~^^^1^0.094^0.152^5^0.094^0.139^~2, 3~^~05/01/2014~ -~05342~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~628~^0.015^6^0.001^~1~^~A~^^^1^0.010^0.017^5^0.012^0.018^~2, 3~^~05/01/2014~ -~05342~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2008~ -~05342~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.002^~2, 3~^~05/01/2014~ -~05342~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2014~ -~05342~^~645~^0.967^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~646~^0.545^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~05342~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~05342~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2008~ -~05342~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~05342~^~663~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.010^5^0.004^0.009^~2, 3~^~05/01/2014~ -~05342~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~05342~^~670~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~671~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~05342~^~672~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.006^0.010^~2, 3~^~05/01/2014~ -~05342~^~673~^0.116^6^0.009^~1~^~A~^^^1^0.093^0.152^5^0.093^0.139^~2, 3~^~05/01/2014~ -~05342~^~674~^0.823^6^0.041^~1~^~A~^^^1^0.672^0.988^5^0.718^0.929^~2, 3~^~05/01/2014~ -~05342~^~675~^0.417^6^0.031^~1~^~A~^^^1^0.299^0.514^5^0.337^0.497^~2, 3~^~05/01/2014~ -~05342~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~05342~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~687~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~689~^0.018^6^0.001^~1~^~AS~^^^1^0.016^0.022^5^0.016^0.021^~2, 3~^~05/01/2014~ -~05342~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~05342~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05342~^~851~^0.015^6^0.001^~1~^~A~^^^1^0.010^0.018^5^0.012^0.018^~2, 3~^~05/01/2014~ -~05342~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~05342~^~853~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.020^5^0.015^0.019^~2, 3~^~05/01/2014~ -~05342~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~05342~^~858~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.017^5^0.014^0.016^~2, 3~^~05/01/2014~ -~05343~^~312~^0.092^12^0.005^~1~^~A~^^^1^0.074^0.133^11^0.081^0.103^~2, 3~^~03/01/2008~ -~05343~^~315~^0.023^12^0.001^~1~^~A~^^^1^0.017^0.032^11^0.020^0.025^~2, 3~^~03/01/2008~ -~05343~^~404~^0.067^12^0.009^~1~^~A~^^^1^0.015^0.120^11^0.048^0.086^~1, 2, 3~^~03/01/2008~ -~05343~^~405~^0.237^12^0.030^~1~^~A~^^^1^0.070^0.370^11^0.170^0.304^~2, 3~^~03/01/2008~ -~05343~^~406~^5.958^12^0.248^~1~^~A~^^^1^5.000^8.100^11^5.411^6.505^~2, 3~^~03/01/2008~ -~05343~^~410~^1.333^12^0.029^~1~^~A~^^^1^1.200^1.500^11^1.269^1.397^~2, 3~^~03/01/2008~ -~05343~^~415~^0.190^12^0.010^~1~^~A~^^^1^0.110^0.235^11^0.168^0.213^~2, 3~^~03/01/2008~ -~05343~^~501~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~502~^0.937^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~503~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~504~^2.272^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~505~^2.611^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~506~^0.801^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~508~^1.056^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~509~^0.894^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~510~^1.358^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~511~^1.849^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~512~^0.787^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~513~^1.535^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~514~^2.578^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~515~^4.203^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~516~^1.355^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~517~^1.551^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~518~^1.280^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05343~^~521~^0.126^4^0.056^~1~^~A~^^^1^0.040^0.290^3^-0.052^0.304^~2, 3~^~03/01/2008~ -~05343~^~605~^0.077^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~606~^1.594^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~612~^0.033^12^0.002^~1~^~A~^^^1^0.027^0.050^11^0.029^0.037^~2, 3~^~03/01/2008~ -~05343~^~613~^1.272^12^0.090^~1~^~A~^^^1^0.846^1.972^11^1.075^1.469^~2, 3~^~03/01/2008~ -~05343~^~614~^0.280^12^0.017^~1~^~A~^^^1^0.209^0.406^11^0.243^0.317^~2, 3~^~03/01/2008~ -~05343~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~617~^2.319^12^0.159^~1~^~AS~^^^1^1.523^3.489^11^1.969^2.669^~2, 3~^~03/01/2008~ -~05343~^~618~^0.942^12^0.075^~1~^~AS~^^^1^0.616^1.540^11^0.777^1.107^~2, 3~^~03/01/2008~ -~05343~^~619~^0.057^12^0.005^~1~^~AS~^^^1^0.031^0.082^11^0.046^0.067^~2, 3~^~03/01/2008~ -~05343~^~620~^0.038^12^0.004^~1~^~A~^^^1^0.023^0.068^11^0.029^0.046^~2, 3~^~03/01/2008~ -~05343~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~625~^0.007^12^0.002^~1~^~A~^^^1^0.000^0.018^11^0.003^0.012^~1, 2, 3~^~03/01/2008~ -~05343~^~626~^0.510^12^0.037^~1~^~A~^^^1^0.289^0.754^11^0.428^0.592^~2, 3~^~03/01/2008~ -~05343~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05343~^~628~^0.018^12^0.001^~1~^~A~^^^1^0.012^0.025^11^0.015^0.020^~2, 3~^~03/01/2008~ -~05343~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~05343~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~645~^2.855^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~646~^1.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~652~^0.009^12^0.003^~1~^~A~^^^1^0.000^0.024^11^0.003^0.015^~1, 2, 3~^~03/01/2008~ -~05343~^~653~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.000^0.001^~1, 2, 3~^~03/01/2008~ -~05343~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~663~^0.053^12^0.006^~1~^~A~^^^1^0.032^0.085^11^0.039^0.066^~2, 3~^~03/01/2008~ -~05343~^~669~^0.024^12^0.002^~1~^~A~^^^1^0.015^0.038^11^0.019^0.029^~2, 3~^~03/01/2008~ -~05343~^~672~^0.005^12^0.002^~1~^~A~^^^1^0.000^0.013^11^0.001^0.008^~1, 2, 3~^~03/01/2008~ -~05343~^~674~^2.267^12^0.156^~1~^~A~^^^1^1.489^3.407^11^1.923^2.610^~2, 3~^~03/01/2008~ -~05343~^~675~^0.918^12^0.073^~1~^~A~^^^1^0.597^1.507^11^0.756^1.080^~1, 2, 3~^~03/01/2008~ -~05343~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~685~^0.011^12^0.001^~1~^~A~^^^1^0.000^0.017^11^0.008^0.014^~1, 2, 3~^~03/01/2008~ -~05343~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~693~^0.053^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05343~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05343~^~851~^0.045^12^0.004^~1~^~A~^^^1^0.029^0.066^11^0.037^0.053^~2, 3~^~03/01/2008~ -~05344~^~312~^0.045^12^0.003^~1~^~A~^^^1^0.033^0.073^11^0.038^0.052^~2, 3~^~03/01/2008~ -~05344~^~315~^0.029^12^0.004^~1~^~A~^^^1^0.015^0.056^11^0.019^0.038^~2, 3~^~03/01/2008~ -~05344~^~404~^0.036^12^0.007^~1~^~A~^^^1^0.015^0.080^11^0.020^0.053^~1, 2, 3~^~03/01/2008~ -~05344~^~405~^0.121^12^0.019^~1~^~A~^^^1^0.020^0.240^11^0.080^0.162^~2, 3~^~03/01/2008~ -~05344~^~406~^5.737^12^0.288^~1~^~A~^^^1^4.200^7.800^11^5.102^6.372^~2, 3~^~03/01/2008~ -~05344~^~410~^1.200^12^0.039^~1~^~A~^^^1^1.000^1.400^11^1.114^1.286^~2, 3~^~03/01/2008~ -~05344~^~415~^0.138^12^0.010^~1~^~A~^^^1^0.080^0.180^11^0.117^0.159^~2, 3~^~03/01/2008~ -~05344~^~501~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~502~^0.436^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~503~^0.539^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~504~^1.087^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~505~^1.138^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~506~^0.555^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~507~^0.186^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~508~^0.389^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~509~^0.359^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~510~^0.640^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~511~^1.069^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~512~^0.673^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~513~^1.226^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~514~^1.353^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~515~^2.181^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~516~^2.095^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~517~^1.654^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~518~^0.668^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05344~^~521~^0.619^4^0.032^~1~^~A~^^^1^0.530^0.680^3^0.518^0.720^~2, 3~^~03/01/2008~ -~05344~^~605~^0.456^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~606~^9.994^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~611~^0.004^12^0.004^~1~^~A~^^^1^0.000^0.043^11^-0.004^0.011^~1, 2, 3~^~03/01/2008~ -~05344~^~612~^0.204^12^0.007^~1~^~A~^^^1^0.177^0.236^11^0.190^0.219^~2, 3~^~03/01/2008~ -~05344~^~613~^8.012^12^0.229^~1~^~A~^^^1^6.823^9.410^11^7.509^8.516^~2, 3~^~03/01/2008~ -~05344~^~614~^1.709^12^0.048^~1~^~A~^^^1^1.410^1.951^11^1.602^1.815^~2, 3~^~03/01/2008~ -~05344~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~617~^13.871^12^0.362^~1~^~AS~^^^1^12.030^15.912^11^13.076^14.667^~2, 3~^~03/01/2008~ -~05344~^~618~^5.029^12^0.183^~1~^~AS~^^^1^4.168^5.923^11^4.626^5.433^~2, 3~^~03/01/2008~ -~05344~^~619~^0.295^12^0.017^~1~^~AS~^^^1^0.227^0.383^11^0.258^0.331^~2, 3~^~03/01/2008~ -~05344~^~620~^0.059^12^0.005^~1~^~A~^^^1^0.040^0.085^11^0.048^0.070^~2, 3~^~03/01/2008~ -~05344~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~625~^0.041^12^0.012^~1~^~A~^^^1^0.000^0.091^11^0.014^0.068^~1, 2, 3~^~03/01/2008~ -~05344~^~626~^2.782^12^0.104^~1~^~A~^^^1^2.151^3.372^11^2.553^3.012^~2, 3~^~03/01/2008~ -~05344~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05344~^~628~^0.099^12^0.003^~1~^~A~^^^1^0.080^0.116^11^0.092^0.106^~2, 3~^~03/01/2008~ -~05344~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2008~ -~05344~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~645~^16.793^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~646~^5.423^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~652~^0.050^12^0.014^~1~^~A~^^^1^0.000^0.108^11^0.019^0.080^~1, 2, 3~^~03/01/2008~ -~05344~^~653~^0.015^12^0.006^~1~^~A~^^^1^0.000^0.040^11^0.003^0.028^~1, 2, 3~^~03/01/2008~ -~05344~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~663~^0.318^12^0.029^~1~^~A~^^^1^0.212^0.513^11^0.255^0.382^~2, 3~^~03/01/2008~ -~05344~^~669~^0.138^12^0.009^~1~^~A~^^^1^0.097^0.194^11^0.118^0.158^~2, 3~^~03/01/2008~ -~05344~^~672~^0.040^12^0.002^~1~^~A~^^^1^0.020^0.051^11^0.034^0.045^~1, 2, 3~^~03/01/2008~ -~05344~^~674~^13.553^12^0.364^~1~^~A~^^^1^11.765^15.700^11^12.752^14.354^~2, 3~^~03/01/2008~ -~05344~^~675~^4.891^12^0.184^~1~^~A~^^^1^4.000^5.826^11^4.487^5.296^~2, 3~^~03/01/2008~ -~05344~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~685~^0.062^12^0.004^~1~^~A~^^^1^0.044^0.083^11^0.054^0.070^~2, 3~^~03/01/2008~ -~05344~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~693~^0.318^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~695~^0.138^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05344~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~05344~^~851~^0.233^12^0.014^~1~^~A~^^^1^0.171^0.300^11^0.202^0.263^~2, 3~^~03/01/2008~ -~05345~^~312~^0.084^12^0.006^~1~^~A~^^^1^0.062^0.146^11^0.071^0.098^~2, 3~^~03/01/2008~ -~05345~^~315~^0.018^12^0.001^~1~^~A~^^^1^0.013^0.032^11^0.015^0.021^~2, 3~^~03/01/2008~ -~05345~^~404~^0.055^12^0.011^~1~^~A~^^^1^0.015^0.120^11^0.030^0.080^~1, 2, 3~^~03/01/2008~ -~05345~^~405~^0.233^12^0.024^~1~^~A~^^^1^0.100^0.330^11^0.180^0.287^~2, 3~^~03/01/2008~ -~05345~^~406~^5.433^12^0.188^~1~^~A~^^^1^4.400^6.500^11^5.019^5.848^~2, 3~^~03/01/2008~ -~05345~^~410~^1.262^12^0.047^~1~^~A~^^^1^1.000^1.600^11^1.160^1.365^~2, 3~^~03/01/2008~ -~05345~^~415~^0.176^12^0.007^~1~^~A~^^^1^0.120^0.200^11^0.160^0.192^~2, 3~^~03/01/2008~ -~05345~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~502~^0.838^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~503~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~504~^1.966^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~505~^2.236^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~506~^0.693^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~507~^0.241^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~508~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~509~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~510~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~511~^1.597^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~512~^0.713^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~513~^1.304^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~514~^2.246^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~515~^3.652^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~516~^1.103^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~517~^1.247^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~518~^1.090^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05345~^~521~^0.025^4^0.003^~1~^~A~^^^1^0.019^0.030^3^0.015^0.034^~2, 3~^~03/01/2008~ -~05345~^~605~^0.131^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~606~^2.866^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~05345~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~611~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.011^11^-0.001^0.003^~1, 2, 3~^~03/01/2008~ -~05345~^~612~^0.058^12^0.001^~1~^~A~^^^1^0.047^0.064^11^0.054^0.061^~2, 3~^~03/01/2008~ -~05345~^~613~^2.290^12^0.085^~1~^~A~^^^1^1.610^2.686^11^2.103^2.477^~2, 3~^~03/01/2008~ -~05345~^~614~^0.499^12^0.015^~1~^~A~^^^1^0.393^0.579^11^0.467^0.530^~2, 3~^~03/01/2008~ -~05345~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~617~^4.027^12^0.153^~1~^~AS~^^^1^2.812^4.747^11^3.690^4.363^~2, 3~^~03/01/2008~ -~05345~^~618~^1.538^12^0.072^~1~^~AS~^^^1^1.066^1.840^11^1.379^1.697^~2, 3~^~03/01/2008~ -~05345~^~619~^0.092^12^0.005^~1~^~AS~^^^1^0.064^0.122^11^0.080^0.103^~2, 3~^~03/01/2008~ -~05345~^~620~^0.032^12^0.002^~1~^~A~^^^1^0.020^0.047^11^0.027^0.037^~2, 3~^~03/01/2008~ -~05345~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~625~^0.014^12^0.003^~1~^~A~^^^1^0.000^0.027^11^0.007^0.021^~1, 2, 3~^~03/01/2008~ -~05345~^~626~^0.808^12^0.040^~1~^~A~^^^1^0.484^0.912^11^0.720^0.896^~2, 3~^~03/01/2008~ -~05345~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05345~^~628~^0.030^12^0.001^~1~^~A~^^^1^0.022^0.035^11^0.028^0.032^~2, 3~^~03/01/2008~ -~05345~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~05345~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~645~^4.878^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~646~^1.673^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~652~^0.014^12^0.004^~1~^~A~^^^1^0.000^0.029^11^0.005^0.022^~1, 2, 3~^~03/01/2008~ -~05345~^~653~^0.005^12^0.002^~1~^~A~^^^1^0.000^0.012^11^0.002^0.009^~1, 2, 3~^~03/01/2008~ -~05345~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~663~^0.089^12^0.009^~1~^~A~^^^1^0.059^0.139^11^0.070^0.108^~2, 3~^~03/01/2008~ -~05345~^~669~^0.041^12^0.004^~1~^~A~^^^1^0.026^0.064^11^0.034^0.049^~2, 3~^~03/01/2008~ -~05345~^~672~^0.012^12^0.000^~1~^~A~^^^1^0.010^0.014^11^0.011^0.013^~2, 3~^~03/01/2008~ -~05345~^~674~^3.937^12^0.151^~1~^~A~^^^1^2.753^4.688^11^3.605^4.269^~2, 3~^~03/01/2008~ -~05345~^~675~^1.497^12^0.070^~1~^~A~^^^1^1.039^1.799^11^1.342^1.651^~2, 3~^~03/01/2008~ -~05345~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~685~^0.020^12^0.001^~1~^~A~^^^1^0.013^0.026^11^0.017^0.022^~2, 3~^~03/01/2008~ -~05345~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~693~^0.089^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05345~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05345~^~851~^0.072^12^0.004^~1~^~A~^^^1^0.051^0.100^11^0.062^0.082^~2, 3~^~03/01/2008~ -~05346~^~312~^0.066^4^0.014^~1~^~A~^^^1^0.039^0.093^3^0.023^0.110^~2, 3~^~03/01/2008~ -~05346~^~315~^0.023^4^0.004^~1~^~A~^^^1^0.016^0.035^3^0.009^0.036^~2, 3~^~03/01/2008~ -~05346~^~404~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~405~^0.135^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~406~^7.500^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~410~^1.300^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~415~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~501~^0.299^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~502~^0.769^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~503~^1.324^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~504~^2.232^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~505~^2.318^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~506~^0.844^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~508~^1.111^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~509~^0.865^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~510~^1.495^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~511~^1.762^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~512~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~513~^1.591^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~514~^2.638^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~515~^4.155^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~516~^1.463^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~517~^1.805^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~518~^0.716^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~05346~^~521~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~05346~^~605~^0.104^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~606~^2.223^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~612~^0.047^4^0.009^~1~^~A~^^^1^0.026^0.067^3^0.019^0.076^~2, 3~^~03/01/2008~ -~05346~^~613~^1.761^4^0.410^~1~^~A~^^^1^0.890^2.735^3^0.455^3.067^~2, 3~^~03/01/2008~ -~05346~^~614~^0.407^4^0.093^~1~^~A~^^^1^0.215^0.647^3^0.112^0.702^~2, 3~^~03/01/2008~ -~05346~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~617~^3.119^4^0.740^~1~^~AS~^^^1^1.548^4.840^3^0.764^5.473^~2, 3~^~03/01/2008~ -~05346~^~618~^1.211^4^0.291^~1~^~AS~^^^1^0.575^1.846^3^0.285^2.138^~2, 3~^~03/01/2008~ -~05346~^~619~^0.074^4^0.019^~1~^~AS~^^^1^0.034^0.117^3^0.015^0.134^~2, 3~^~03/01/2008~ -~05346~^~620~^0.029^4^0.007^~1~^~A~^^^1^0.012^0.045^3^0.006^0.052^~2, 3~^~03/01/2008~ -~05346~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~625~^0.019^4^0.005^~1~^~A~^^^1^0.009^0.028^3^0.004^0.035^~2, 3~^~03/01/2008~ -~05346~^~626~^0.604^4^0.156^~1~^~A~^^^1^0.274^0.918^3^0.106^1.102^~2, 3~^~03/01/2008~ -~05346~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~05346~^~628~^0.024^4^0.006^~1~^~A~^^^1^0.012^0.037^3^0.006^0.042^~2, 3~^~03/01/2008~ -~05346~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~05346~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~645~^3.766^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~646~^1.323^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~652~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~03/01/2008~ -~05346~^~653~^0.006^4^0.003^~1~^~A~^^^1^0.000^0.012^3^-0.005^0.016^~1, 2, 3~^~03/01/2008~ -~05346~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~663~^0.071^4^0.018^~1~^~A~^^^1^0.034^0.114^3^0.015^0.127^~2, 3~^~03/01/2008~ -~05346~^~669~^0.033^4^0.008^~1~^~A~^^^1^0.016^0.051^3^0.007^0.059^~2, 3~^~03/01/2008~ -~05346~^~672~^0.009^4^0.004^~1~^~A~^^^1^0.000^0.017^3^-0.003^0.021^~1, 2, 3~^~03/01/2008~ -~05346~^~674~^3.048^4^0.722^~1~^~A~^^^1^1.514^4.726^3^0.749^5.346^~2, 3~^~03/01/2008~ -~05346~^~675~^1.178^4^0.283^~1~^~A~^^^1^0.559^1.795^3^0.277^2.079^~2, 3~^~03/01/2008~ -~05346~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~685~^0.015^4^0.004^~1~^~A~^^^1^0.007^0.024^3^0.002^0.028^~2, 3~^~03/01/2008~ -~05346~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~693~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~05346~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~05346~^~851~^0.059^4^0.015^~1~^~A~^^^1^0.027^0.093^3^0.012^0.106^~2, 3~^~03/01/2008~ -~05347~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~315~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~404~^0.068^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~405~^0.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~406~^5.928^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~410~^1.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~415~^0.139^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~501~^0.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~502~^0.669^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~503~^1.042^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~504~^1.808^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~505~^1.895^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~506~^0.718^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~507~^0.256^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~508~^0.861^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~509~^0.656^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~510~^1.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~511~^1.466^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~512~^0.710^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~513~^1.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~514~^2.152^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~515~^3.453^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~516~^1.534^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~517~^1.332^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~518~^0.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~521~^0.257^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~605~^0.231^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~606~^4.924^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~612~^0.104^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~613~^3.913^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~614~^0.874^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~617~^6.769^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~618~^2.514^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~619~^0.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~620~^0.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~625~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~626~^1.314^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~628~^0.049^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~645~^8.162^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~646~^2.723^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05347~^~652~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~653~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~672~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05347~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~312~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~404~^0.078^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~405~^0.133^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~406~^9.397^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~410~^1.408^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~415~^0.299^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~501~^0.318^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~502~^0.743^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~503~^1.303^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~504~^2.507^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~505~^2.963^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~506~^0.910^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~507~^0.326^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~508~^1.206^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~509~^1.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~510~^1.368^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~511~^1.940^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~512~^1.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~513~^1.559^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~514~^1.842^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~515~^3.472^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~516~^1.478^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~517~^1.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~518~^1.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~521~^0.092^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~605~^0.099^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~606~^2.114^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~612~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~613~^1.694^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~614~^0.364^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~617~^2.932^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~618~^1.078^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~619~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~620~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~626~^0.587^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~628~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~645~^3.548^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~646~^1.166^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05348~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~653~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~672~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05348~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~312~^0.084^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~315~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~404~^0.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~405~^0.218^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~406~^5.921^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~410~^1.311^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~415~^0.181^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~501~^0.243^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~502~^0.852^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~503~^1.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~504~^2.071^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~505~^2.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~506~^0.759^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~507~^0.271^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~508~^0.943^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~509~^0.804^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~510~^1.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~511~^1.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~512~^0.767^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~513~^1.483^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~514~^2.370^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~515~^3.860^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~516~^1.481^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~517~^1.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~518~^1.176^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~521~^0.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~605~^0.141^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~606~^3.020^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~612~^0.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~613~^2.415^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~614~^0.523^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~617~^4.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~618~^1.636^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~619~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~620~^0.041^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~626~^0.896^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~628~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~645~^5.220^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~646~^1.785^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05349~^~652~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~653~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05349~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~312~^0.077^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~315~^0.020^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~404~^0.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~405~^0.213^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~406~^5.487^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~410~^1.251^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~415~^0.169^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~501~^0.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~502~^0.767^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~503~^0.995^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~504~^1.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~505~^2.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~506~^0.668^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~507~^0.232^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~508~^0.803^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~509~^0.677^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~510~^1.093^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~511~^1.504^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~512~^0.706^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~513~^1.290^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~514~^2.089^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~515~^3.392^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~516~^1.277^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~517~^1.318^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~518~^1.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~521~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~605~^0.188^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~606~^4.123^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~612~^0.083^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~613~^3.299^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~614~^0.712^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~617~^5.763^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~618~^2.154^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~619~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~625~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~626~^1.156^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~628~^0.042^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~645~^6.979^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~646~^2.334^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05351~^~652~^0.020^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~653~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~672~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05351~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~312~^0.059^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~315~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~404~^0.072^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~405~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~406~^6.912^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~410~^1.267^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~415~^0.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~501~^0.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~502~^0.658^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~503~^1.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~504~^1.851^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~505~^1.924^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~506~^0.748^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~507~^0.254^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~508~^0.870^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~509~^0.696^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~510~^1.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~511~^1.531^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~512~^0.744^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~513~^1.470^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~514~^2.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~515~^3.497^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~516~^1.674^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~517~^1.755^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~518~^0.700^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~521~^0.320^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~605~^0.221^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~606~^4.814^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~612~^0.100^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~613~^3.845^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~614~^0.841^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~617~^6.704^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~618~^2.484^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~619~^0.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~620~^0.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~626~^1.330^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~628~^0.049^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~645~^8.109^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~646~^2.690^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~05352~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~653~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~672~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05352~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~05356~^~312~^0.043^12^0.004^~1~^~A~^^^1^0.028^0.073^11^0.035^0.051^~2, 3~^~05/01/2012~ -~05356~^~315~^0.027^12^0.003^~1~^~A~^^^1^0.017^0.052^11^0.020^0.034^~2, 3~^~05/01/2012~ -~05356~^~404~^0.054^12^0.004^~1~^~A~^^^1^0.039^0.076^11^0.046^0.062^~2, 3~^~05/01/2012~ -~05356~^~405~^0.199^12^0.012^~1~^~A~^^^1^0.158^0.269^11^0.174^0.225^~2, 3~^~05/01/2012~ -~05356~^~406~^7.082^12^0.783^~1~^~A~^^^1^4.190^13.500^11^5.357^8.806^~2, 3~^~05/01/2012~ -~05356~^~410~^0.857^12^0.073^~1~^~A~^^^1^0.319^1.260^11^0.697^1.017^~2, 3~^~05/01/2012~ -~05356~^~415~^0.259^12^0.013^~1~^~A~^^^1^0.203^0.362^11^0.229^0.288^~2, 3~^~05/01/2012~ -~05356~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~502~^0.273^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~503~^0.338^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~504~^0.681^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~505~^0.713^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~506~^0.348^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~507~^0.117^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~508~^0.244^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~509~^0.225^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~510~^0.401^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~511~^0.670^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~512~^0.422^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~513~^0.768^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~514~^0.848^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~515~^1.367^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~516~^1.313^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~517~^1.037^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~518~^0.418^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~05356~^~605~^0.438^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~606~^9.333^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~612~^0.188^12^0.009^~1~^~A~^^^1^0.139^0.243^11^0.168^0.207^~2, 3~^~05/01/2012~ -~05356~^~613~^7.477^12^0.283^~1~^~A~^^^1^5.748^9.202^11^6.853^8.100^~2, 3~^~05/01/2012~ -~05356~^~614~^1.643^12^0.066^~1~^~A~^^^1^1.354^2.151^11^1.497^1.789^~2, 3~^~05/01/2012~ -~05356~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~617~^12.026^12^0.373^~1~^~AS~^^^1^9.806^13.962^11^11.205^12.848^~2, 3~^~05/01/2012~ -~05356~^~618~^3.739^12^0.079^~1~^~AS~^^^1^3.123^4.158^11^3.565^3.914^~2, 3~^~05/01/2012~ -~05356~^~619~^0.183^12^0.009^~1~^~AS~^^^1^0.124^0.249^11^0.163^0.203^~2, 3~^~05/01/2012~ -~05356~^~620~^0.035^12^0.003^~1~^~A~^^^1^0.022^0.056^11^0.029^0.042^~1, 2, 3~^~05/01/2012~ -~05356~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~625~^0.071^12^0.004^~1~^~A~^^^1^0.044^0.094^11^0.063^0.080^~2, 3~^~05/01/2012~ -~05356~^~626~^2.284^12^0.127^~1~^~A~^^^1^1.366^2.965^11^2.005^2.563^~2, 3~^~05/01/2012~ -~05356~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~05356~^~628~^0.083^12^0.003^~1~^~A~^^^1^0.067^0.096^11^0.077^0.089^~2, 3~^~05/01/2012~ -~05356~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~05356~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~645~^14.464^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~646~^4.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~653~^0.026^12^0.001^~1~^~A~^^^1^0.022^0.031^11^0.023^0.029^~1, 2, 3~^~05/01/2012~ -~05356~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~663~^0.328^12^0.030^~1~^~A~^^^1^0.216^0.560^11^0.262^0.394^~2, 3~^~05/01/2012~ -~05356~^~669~^0.110^12^0.009^~1~^~A~^^^1^0.082^0.187^11^0.091^0.129^~2, 3~^~05/01/2012~ -~05356~^~672~^0.060^12^0.005^~1~^~A~^^^1^0.038^0.109^11^0.049^0.072^~2, 3~^~05/01/2012~ -~05356~^~674~^11.698^12^0.382^~1~^~A~^^^1^9.246^13.582^11^10.858^12.538^~2, 3~^~05/01/2012~ -~05356~^~675~^3.629^12^0.076^~1~^~A~^^^1^3.041^4.059^11^3.461^3.797^~2, 3~^~05/01/2012~ -~05356~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~685~^0.037^12^0.003^~1~^~A~^^^1^0.022^0.054^11^0.031^0.043^~1, 2, 3~^~05/01/2012~ -~05356~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~693~^0.328^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~695~^0.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~05356~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~05356~^~851~^0.146^12^0.009^~1~^~A~^^^1^0.094^0.227^11^0.125^0.167^~2, 3~^~05/01/2012~ -~05357~^~312~^0.061^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~404~^0.065^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~405~^0.185^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~406~^5.621^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~410~^0.201^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~415~^0.153^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~501~^0.175^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~502~^0.506^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~503~^0.799^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~504~^1.375^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~505~^1.441^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~506~^0.537^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~507~^0.192^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~508~^0.665^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~509~^0.502^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~510~^0.906^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~511~^1.101^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~512~^0.521^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~513~^1.032^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~514~^1.632^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~515~^2.618^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~516~^1.080^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~517~^0.949^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~518~^0.527^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~605~^0.103^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~606~^4.953^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~612~^0.104^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~613~^3.925^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~614~^0.898^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~617~^6.574^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~618~^2.314^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~619~^0.128^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~620~^0.038^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~626~^1.233^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05357~^~628~^0.048^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~645~^7.895^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~646~^2.507^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~ -~05357~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~653~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~663~^0.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05357~^~669~^0.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05357~^~672~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~674~^2.741^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~675~^0.850^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~ -~05357~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05357~^~685~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05357~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05357~^~851~^0.034^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05358~^~312~^0.041^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~404~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~405~^0.139^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~406~^9.303^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~410~^0.111^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~415~^0.307^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~501~^0.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~502~^0.629^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~503~^1.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~504~^2.138^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~505~^2.533^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~506~^0.770^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~508~^1.034^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~509~^0.861^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~510~^1.165^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~511~^1.646^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~512~^0.948^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~513~^1.308^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~514~^1.550^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~515~^2.935^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~516~^1.204^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~517~^1.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~518~^0.862^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~521~^0.059^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~605~^0.057^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~606~^1.958^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~612~^0.040^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~613~^1.571^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~614~^0.344^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~617~^2.599^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~618~^0.878^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~619~^0.048^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~620~^0.012^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~625~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~626~^0.504^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~628~^0.019^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~645~^3.131^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~646~^0.945^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05358~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~653~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~672~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05358~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~312~^0.082^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~404~^0.063^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~405~^0.224^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~406~^5.966^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~410~^0.142^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~415~^0.196^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~501~^0.229^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~502~^0.799^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~503~^1.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~504~^1.941^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~505~^2.219^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~506~^0.702^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~507~^0.251^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~508~^0.890^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~509~^0.757^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~510~^1.159^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~511~^1.599^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~512~^0.703^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~513~^1.362^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~514~^2.215^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~515~^3.609^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~516~^1.308^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~517~^1.420^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~518~^1.099^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~521~^0.200^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~605~^0.072^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~606~^2.855^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~612~^0.058^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~613~^2.289^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~614~^0.504^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~617~^3.909^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~618~^1.399^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~619~^0.077^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~620~^0.037^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~626~^0.800^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~628~^0.029^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~645~^4.750^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~646~^1.523^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05359~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~653~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~672~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05359~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~312~^0.077^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~404~^0.055^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~405~^0.227^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~406~^5.732^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~410~^0.152^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~415~^0.191^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~501~^0.173^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~502~^0.657^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~503~^0.853^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~504~^1.549^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~505~^1.750^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~506~^0.565^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~507~^0.196^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~508~^0.690^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~509~^0.581^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~510~^0.935^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~511~^1.278^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~512~^0.592^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~513~^1.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~514~^1.782^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~515~^2.894^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~516~^1.034^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~517~^1.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~518~^0.865^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~521~^0.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~605~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~606~^3.927^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~611~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~612~^0.079^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~613~^3.153^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~614~^0.689^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~617~^5.346^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~618~^1.890^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~619~^0.105^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~620~^0.032^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~626~^1.050^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~628~^0.039^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~645~^6.446^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~646~^2.038^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05361~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~653~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05361~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~312~^0.057^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~404~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~405~^0.161^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~406~^7.454^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~410~^0.321^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~415~^0.212^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~501~^0.205^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~502~^0.563^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~503~^0.920^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~504~^1.593^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~505~^1.656^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~506~^0.636^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~508~^0.757^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~509~^0.603^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~510~^1.046^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~511~^1.307^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~512~^0.625^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~513~^1.242^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~514~^1.899^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~515~^3.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~516~^1.369^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~517~^1.470^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~518~^0.586^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~605~^0.164^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~606~^4.627^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~612~^0.094^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~613~^3.700^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~614~^0.823^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~617~^6.098^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~618~^2.020^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~619~^0.106^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~620~^0.028^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~626~^1.164^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~628~^0.043^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~645~^7.332^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~646~^2.177^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~05362~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~653~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~672~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05362~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~05363~^~312~^0.058^2^^~1~^~A~^^^1^0.056^0.059^1^^^^~04/01/2014~ -~05363~^~315~^0.016^2^^~1~^~A~^^^1^0.015^0.017^1^^^^~04/01/2014~ -~05363~^~404~^0.042^2^^~1~^~A~^^^1^0.040^0.045^1^^^^~04/01/2014~ -~05363~^~405~^0.280^2^^~1~^~A~^^^1^0.270^0.290^1^^^^~04/01/2014~ -~05363~^~406~^11.600^2^^~1~^~A~^^^1^11.200^12.000^1^^^^~04/01/2014~ -~05363~^~415~^1.275^2^^~1~^~A~^^^1^1.230^1.320^1^^^^~04/01/2014~ -~05363~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~606~^0.130^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~612~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~04/01/2014~ -~05363~^~613~^0.068^2^^~1~^~A~^^^1^0.068^0.069^1^^^^~04/01/2014~ -~05363~^~614~^0.056^2^^~1~^~A~^^^1^0.055^0.057^1^^^^~04/01/2014~ -~05363~^~615~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2014~ -~05363~^~617~^0.040^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~618~^0.071^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~620~^0.030^2^^~1~^~A~^^^1^0.029^0.031^1^^^^~04/01/2014~ -~05363~^~621~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~04/01/2014~ -~05363~^~624~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~04/01/2014~ -~05363~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~04/01/2014~ -~05363~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~631~^0.008^2^^~1~^~A~^^^1^0.006^0.011^1^^^^~04/01/2014~ -~05363~^~645~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~646~^0.132^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~652~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2014~ -~05363~^~653~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~04/01/2014~ -~05363~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~672~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2014~ -~05363~^~673~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~04/01/2014~ -~05363~^~674~^0.040^2^^~1~^~A~^^^1^0.040^0.041^1^^^^~04/01/2014~ -~05363~^~675~^0.071^2^^~1~^~A~^^^1^0.066^0.077^1^^^^~04/01/2014~ -~05363~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~05363~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~05363~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~851~^0.008^2^^~1~^~A~^^^1^0.008^0.008^1^^^^~04/01/2014~ -~05363~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~853~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2014~ -~05363~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2014~ -~05363~^~858~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2014~ -~05621~^~312~^0.199^6^0.024^~1~^~A~^^^1^0.112^0.284^5^0.138^0.259^~4~^~07/01/2001~ -~05621~^~315~^0.027^6^0.002^~1~^~A~^^^1^0.020^0.033^5^0.022^0.032^~4~^~07/01/2001~ -~05621~^~404~^0.270^6^0.007^~1~^~A~^^^1^0.240^0.290^5^0.252^0.288^~4~^~07/01/2001~ -~05621~^~405~^0.457^6^0.018^~1~^~A~^^^1^0.390^0.510^5^0.410^0.503^~4~^~07/01/2001~ -~05621~^~406~^7.485^6^0.470^~1~^~A~^^^1^6.390^9.090^5^6.276^8.694^~4~^~07/01/2001~ -~05621~^~410~^2.740^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~415~^0.642^6^0.021^~1~^~A~^^^1^0.596^0.719^5^0.589^0.695^~4~^~07/01/2001~ -~05621~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~502~^0.653^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~503~^0.740^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~504~^1.257^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~505~^1.340^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~506~^0.432^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~507~^0.164^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~508~^0.650^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~509~^0.486^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~510~^0.758^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~511~^1.025^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~512~^0.499^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~513~^0.885^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~514~^1.981^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~515~^2.223^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~516~^0.717^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~517~^0.923^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~518~^0.542^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05621~^~521~^0.149^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05621~^~606~^1.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05621~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~612~^0.012^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~613~^0.656^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~614~^0.346^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~615~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~617~^1.464^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~618~^0.417^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~619~^0.022^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~620~^0.112^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~624~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~626~^0.131^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~628~^0.012^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~645~^1.607^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05621~^~646~^0.557^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05621~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~653~^0.005^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~672~^0.007^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~687~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05621~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~10/01/2001~ -~05622~^~312~^0.238^6^0.012^~1~^~A~^^^1^0.201^0.277^5^0.209^0.268^~4~^~07/01/2001~ -~05622~^~315~^0.030^6^0.001^~1~^~A~^^^1^0.025^0.033^5^0.026^0.033^~4~^~07/01/2001~ -~05622~^~404~^0.318^6^0.009^~1~^~A~^^^1^0.290^0.360^5^0.294^0.343^~4~^~07/01/2001~ -~05622~^~405~^0.545^6^0.019^~1~^~A~^^^1^0.490^0.610^5^0.495^0.595^~4~^~07/01/2001~ -~05622~^~406~^8.925^6^0.400^~1~^~A~^^^1^7.630^10.200^5^7.897^9.953^~4~^~07/01/2001~ -~05622~^~410~^3.080^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05622~^~415~^0.833^6^0.022^~1~^~A~^^^1^0.749^0.894^5^0.776^0.891^~4~^~07/01/2001~ -~05622~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~502~^0.815^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~503~^0.924^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~504~^1.570^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~505~^1.673^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~506~^0.539^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~507~^0.205^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~508~^0.811^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~509~^0.607^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~510~^0.947^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~511~^1.280^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~512~^0.623^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~513~^1.105^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~514~^2.474^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~515~^2.776^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~516~^0.895^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~517~^1.152^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~518~^0.676^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05622~^~521~^0.186^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05622~^~605~^0.153^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2002~ -~05622~^~606~^1.242^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05622~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~612~^0.015^3^0.007^~1~^~A~^^^1^0.006^0.028^2^-0.014^0.045^~4~^~01/01/2002~ -~05622~^~613~^0.797^3^0.348^~1~^~A~^^^1^0.276^1.458^2^-0.702^2.295^~4~^~01/01/2002~ -~05622~^~614~^0.421^3^0.124^~1~^~A~^^^1^0.247^0.661^2^-0.112^0.954^~4~^~01/01/2002~ -~05622~^~615~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.008^~1, 4~^~01/01/2002~ -~05622~^~617~^1.779^3^0.682^~1~^~A~^^^1^0.648^3.005^2^-1.156^4.714^~4~^~01/01/2002~ -~05622~^~618~^0.507^3^0.070^~1~^~A~^^^1^0.403^0.641^2^0.204^0.810^~4~^~01/01/2002~ -~05622~^~619~^0.026^3^0.011^~1~^~A~^^^1^0.011^0.048^2^-0.021^0.074^~4~^~01/01/2002~ -~05622~^~620~^0.136^3^0.014^~1~^~A~^^^1^0.117^0.163^2^0.076^0.196^~4~^~01/01/2002~ -~05622~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~624~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 4~^~01/01/2002~ -~05622~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~626~^0.159^3^0.079^~1~^~A~^^^1^0.035^0.305^2^-0.180^0.497^~4~^~01/01/2002~ -~05622~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~628~^0.014^3^0.003^~1~^~A~^^^1^0.009^0.019^2^0.001^0.028^~4~^~01/01/2002~ -~05622~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05622~^~645~^1.953^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05622~^~646~^0.677^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05622~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~653~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~4~^~01/01/2002~ -~05622~^~672~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.001^0.015^~4~^~01/01/2002~ -~05622~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~687~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 4~^~01/01/2002~ -~05622~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05622~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~10/01/2001~ -~05623~^~312~^0.211^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~315~^0.029^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~404~^0.267^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~405~^0.451^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~406~^7.397^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~410~^2.708^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~415~^0.634^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~501~^0.149^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~502~^0.645^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~503~^0.731^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~504~^1.242^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~505~^1.324^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~506~^0.427^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~507~^0.163^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~508~^0.642^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~509~^0.480^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~510~^0.749^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~511~^1.013^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~512~^0.493^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~513~^0.875^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~514~^1.958^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~515~^2.197^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~516~^0.708^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~517~^0.912^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~518~^0.535^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05623~^~521~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05623~^~606~^0.201^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05623~^~610~^0.000^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~611~^0.000^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~612~^0.002^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~613~^0.130^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~614~^0.069^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~615~^0.000^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~617~^0.290^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~618~^0.083^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~619~^0.004^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~620~^0.022^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~625~^0.000^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~626~^0.026^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~628~^0.002^0^^~4~^~BFFN~^~05621~^^^^^^^^^~01/01/2002~ -~05623~^~645~^0.319^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05623~^~646~^0.109^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~312~^0.232^3^0.009^~1~^~A~^^^1^0.220^0.250^2^0.192^0.272^~4~^~11/01/2001~ -~05624~^~315~^0.026^3^0.003^~1~^~A~^^^1^0.022^0.032^2^0.014^0.039^~4~^~11/01/2001~ -~05624~^~404~^0.350^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~405~^0.599^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~406~^9.814^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~410~^3.387^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~415~^0.916^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~501~^0.207^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~502~^0.896^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~503~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~504~^1.726^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~505~^1.840^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~506~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~508~^0.892^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~509~^0.667^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~510~^1.041^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~511~^1.407^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~512~^0.685^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~513~^1.216^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~514~^2.720^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~515~^3.053^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~516~^0.984^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~517~^1.267^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~518~^0.744^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~521~^0.205^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05624~^~606~^0.583^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~612~^0.007^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~613~^0.374^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~614~^0.198^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~615~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~617~^0.835^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~618~^0.238^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~619~^0.012^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~620~^0.064^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~624~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~626~^0.074^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~628~^0.007^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~645~^0.917^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~646~^0.318^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05624~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~653~^0.003^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~672~^0.004^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~687~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05624~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05625~^~312~^0.205^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~315~^0.028^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~404~^0.245^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~405~^0.414^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~406~^6.786^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~410~^2.484^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~415~^0.582^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~ -~05625~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~502~^0.638^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~503~^0.723^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~504~^1.228^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~505~^1.309^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~506~^0.422^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~507~^0.161^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~508~^0.635^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~509~^0.475^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~510~^0.741^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~511~^1.001^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~512~^0.487^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~513~^0.865^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~514~^1.936^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~515~^2.172^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~516~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~517~^0.902^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~518~^0.529^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05625~^~521~^0.146^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05625~^~606~^0.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~612~^0.002^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~613~^0.120^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~614~^0.064^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~615~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~617~^0.269^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~618~^0.077^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~619~^0.004^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~620~^0.021^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~624~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~626~^0.024^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~628~^0.002^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~645~^0.295^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~646~^0.102^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05625~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~653~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~672~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~687~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05625~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05626~^~312~^0.211^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~315~^0.029^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~404~^0.360^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~405~^0.458^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~406~^7.504^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~410~^2.747^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~415~^0.643^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05626~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~502~^0.654^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~503~^0.742^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~504~^1.260^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~505~^1.343^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~506~^0.433^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~507~^0.165^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~508~^0.651^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~509~^0.487^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~510~^0.760^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~511~^1.027^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~512~^0.500^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~513~^0.887^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~514~^1.986^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~515~^2.228^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~516~^0.719^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~517~^0.925^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~518~^0.543^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05626~^~521~^0.149^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05626~^~606~^0.448^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05626~^~612~^0.008^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~613~^0.322^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~614~^0.104^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~615~^0.003^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~617~^0.474^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~618~^0.278^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~619~^0.026^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~620~^0.014^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~621~^0.005^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~624~^0.001^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~625~^0.003^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~626~^0.029^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~628~^0.007^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~629~^0.004^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~630~^0.001^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~645~^0.516^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05626~^~646~^0.329^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05626~^~652~^0.003^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~653~^0.005^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~654~^0.003^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~672~^0.001^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05626~^~687~^0.003^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05627~^~312~^0.285^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~315~^0.036^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~404~^0.430^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~405~^0.645^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~406~^10.569^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~410~^3.647^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~415~^0.987^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05627~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~502~^0.965^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~503~^1.094^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~504~^1.859^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~505~^1.981^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~506~^0.638^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~507~^0.243^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~508~^0.961^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~509~^0.718^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~510~^1.121^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~511~^1.516^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~512~^0.737^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~513~^1.309^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~514~^2.930^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~515~^3.287^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~516~^1.060^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~517~^1.364^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~518~^0.801^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~521~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05627~^~606~^0.870^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05627~^~612~^0.015^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~613~^0.595^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~614~^0.218^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~615~^0.008^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~617~^0.928^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~618~^0.503^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~619~^0.044^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~620~^0.039^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~621~^0.015^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~624~^0.005^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~625~^0.005^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~626~^0.117^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~628~^0.023^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~629~^0.010^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~630~^0.000^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~645~^1.079^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05627~^~646~^0.613^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05627~^~652~^0.003^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~653~^0.013^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~654~^0.013^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~672~^0.003^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05627~^~687~^0.005^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~312~^0.205^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~315~^0.028^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~404~^0.420^14^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~405~^0.446^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~406~^7.304^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~410~^2.674^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~415~^0.626^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~ -~05628~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~502~^0.637^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~503~^0.722^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~504~^1.226^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~505~^1.307^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~506~^0.421^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~507~^0.160^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~508~^0.634^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~509~^0.474^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~510~^0.740^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~511~^1.000^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~512~^0.486^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~513~^0.864^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~514~^1.933^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~515~^2.169^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~516~^0.699^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~517~^0.900^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~518~^0.528^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05628~^~521~^0.145^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05628~^~606~^0.386^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05628~^~612~^0.006^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~613~^0.277^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~614~^0.095^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~615~^0.000^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~617~^0.468^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~618~^0.214^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~619~^0.019^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~620~^0.015^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~621~^0.005^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~624~^0.000^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~625~^0.002^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~626~^0.056^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~628~^0.005^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~629~^0.002^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~630~^0.000^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~645~^0.532^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05628~^~646~^0.256^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~05628~^~652~^0.002^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~653~^0.002^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~654~^0.002^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~672~^0.001^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05628~^~687~^0.001^14^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~05629~^~312~^0.272^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~315~^0.034^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~404~^0.410^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~405~^0.621^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~406~^10.164^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~410~^3.508^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~415~^0.949^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~ -~05629~^~501~^0.214^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~502~^0.928^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~503~^1.052^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~504~^1.788^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~505~^1.905^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~506~^0.614^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~507~^0.234^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~508~^0.924^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~509~^0.691^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~510~^1.078^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~511~^1.457^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~512~^0.709^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~513~^1.259^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~514~^2.817^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~515~^3.161^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~516~^1.019^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~518~^0.770^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~521~^0.212^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05629~^~606~^0.654^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05629~^~612~^0.008^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~613~^0.446^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~614~^0.169^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~615~^0.006^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~617~^0.742^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~618~^0.337^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~619~^0.027^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~620~^0.027^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~621~^0.012^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~624~^0.004^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~625~^0.004^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~626~^0.090^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~628~^0.019^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~629~^0.004^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~630~^0.000^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~645~^0.859^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05629~^~646~^0.408^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05629~^~652~^0.006^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~653~^0.010^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~654~^0.006^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~672~^0.002^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05629~^~687~^0.004^5^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~312~^0.199^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~315~^0.025^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~404~^0.258^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~405~^0.442^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~406~^7.245^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~410~^2.500^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~415~^0.676^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~501~^0.153^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~502~^0.662^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~503~^0.750^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~504~^1.274^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~505~^1.358^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~506~^0.438^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~507~^0.167^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~508~^0.659^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~509~^0.492^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~510~^0.769^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~511~^1.039^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~512~^0.505^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~513~^0.897^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~514~^2.008^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~515~^2.253^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~516~^0.727^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~517~^0.935^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~518~^0.549^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05630~^~521~^0.151^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05630~^~606~^0.122^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05630~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~612~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~613~^0.078^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~614~^0.041^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~615~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~617~^0.174^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~618~^0.050^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~619~^0.003^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~620~^0.013^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~624~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~626~^0.016^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~628~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~645~^0.202^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05630~^~646~^0.070^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05630~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~653~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~672~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~687~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05630~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05631~^~312~^0.194^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~315~^0.027^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~404~^0.271^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~405~^0.458^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~406~^7.499^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~410~^2.745^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~415~^0.643^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~ -~05631~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~502~^0.654^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~503~^0.741^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~504~^1.259^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~505~^1.342^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~506~^0.433^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~507~^0.165^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~508~^0.651^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~509~^0.487^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~510~^0.760^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~511~^1.027^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~512~^0.499^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~513~^0.887^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~514~^1.985^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~515~^2.227^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~516~^0.718^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~517~^0.924^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~518~^0.543^0^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~05631~^~521~^0.149^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05631~^~606~^1.231^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~612~^0.015^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~613~^0.790^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~614~^0.417^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~615~^0.002^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~617~^1.764^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~618~^0.503^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~619~^0.026^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~620~^0.135^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~624~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~626~^0.157^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~628~^0.014^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~645~^1.937^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~646~^0.671^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05631~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~653~^0.006^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~672~^0.008^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~687~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05631~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~01/01/2002~ -~05632~^~312~^0.280^3^0.044^~1~^~A~^^^1^0.200^0.352^2^0.090^0.470^~4~^~11/01/2001~ -~05632~^~315~^0.031^3^0.001^~1~^~A~^^^1^0.028^0.033^2^0.024^0.037^~4~^~11/01/2001~ -~05632~^~404~^0.325^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~405~^0.557^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~406~^9.124^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~410~^3.149^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~415~^0.852^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~502~^0.833^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~503~^0.945^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~504~^1.605^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~505~^1.711^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~506~^0.551^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~507~^0.210^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~508~^0.829^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~509~^0.620^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~510~^0.968^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~511~^1.308^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~512~^0.636^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~513~^1.130^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~514~^2.529^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~515~^2.838^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~516~^0.915^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~517~^1.178^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~518~^0.691^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~05632~^~521~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~05632~^~606~^0.794^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~609~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~610~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~611~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~612~^0.010^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~613~^0.509^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~614~^0.269^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~615~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~617~^1.137^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~618~^0.324^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~619~^0.017^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~620~^0.087^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~624~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~625~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~626~^0.101^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~628~^0.009^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~645~^1.249^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~646~^0.433^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~05632~^~652~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~653~^0.004^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~672~^0.005^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~685~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~687~^0.001^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~689~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05632~^~697~^0.000^0^^~4~^~BFFN~^~05622~^^^^^^^^^~11/01/2001~ -~05641~^~312~^0.128^6^0.004^~1~^~A~^^^1^0.112^0.142^5^0.117^0.139^~4~^~07/01/2001~ -~05641~^~315~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.014^0.019^~4~^~07/01/2001~ -~05641~^~404~^0.182^6^0.010^~1~^~A~^^^1^0.150^0.220^5^0.156^0.208^~4~^~07/01/2001~ -~05641~^~405~^0.267^6^0.019^~1~^~A~^^^1^0.210^0.320^5^0.218^0.315^~4~^~07/01/2001~ -~05641~^~406~^4.377^6^0.197^~1~^~A~^^^1^3.860^5.250^5^3.870^4.883^~4~^~07/01/2001~ -~05641~^~410~^1.080^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~415~^0.475^6^0.023^~1~^~A~^^^1^0.381^0.542^5^0.417^0.533^~4~^~07/01/2001~ -~05641~^~501~^0.180^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~502~^0.887^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~503~^0.961^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~504~^1.643^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~505~^1.785^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~506~^0.565^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~508~^0.834^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~509~^0.657^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~510~^0.998^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~511~^1.383^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~512~^0.508^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~513~^1.297^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~514~^1.891^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~515~^3.099^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~516~^1.351^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~517~^1.054^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~518~^0.809^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05641~^~521~^0.361^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05641~^~606~^2.177^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05641~^~609~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~610~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~611~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~612~^0.050^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~613~^1.648^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~614~^0.477^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~615~^0.002^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~617~^2.195^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~618~^0.777^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~619~^0.056^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~620~^0.070^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~624~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~625~^0.002^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~626~^0.421^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~628~^0.030^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~645~^2.654^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05641~^~646~^0.910^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05641~^~672~^0.007^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~685~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~687~^0.006^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~689~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05641~^~697~^0.000^0^^~4~^~BFFN~^~05642~^^^^^^^^^~07/01/2001~ -~05642~^~312~^0.136^6^0.013^~1~^~A~^^^1^0.102^0.194^5^0.101^0.170^~4~^~07/01/2001~ -~05642~^~315~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.019^5^0.015^0.018^~4~^~07/01/2001~ -~05642~^~404~^0.213^6^0.014^~1~^~A~^^^1^0.170^0.260^5^0.177^0.249^~4~^~07/01/2001~ -~05642~^~405~^0.268^6^0.012^~1~^~A~^^^1^0.250^0.330^5^0.236^0.300^~4~^~07/01/2001~ -~05642~^~406~^6.557^6^0.365^~1~^~A~^^^1^5.350^7.310^5^5.619^7.495^~4~^~07/01/2001~ -~05642~^~410~^1.210^1^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~415~^0.501^6^0.023^~1~^~A~^^^1^0.423^0.586^5^0.442^0.559^~4~^~07/01/2001~ -~05642~^~501~^0.233^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~502~^1.147^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~503~^1.242^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~504~^2.125^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~505~^2.309^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~506~^0.731^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~507~^0.269^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~508~^1.079^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~509~^0.850^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~510~^1.291^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~511~^1.788^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~512~^0.657^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~513~^1.678^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~514~^2.446^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~515~^4.009^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~516~^1.748^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~517~^1.363^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~518~^1.046^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05642~^~521~^0.467^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~05642~^~605~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2002~ -~05642~^~606~^1.793^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~05642~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05642~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05642~^~612~^0.040^3^0.007^~1~^~A~^^^1^0.027^0.047^2^0.011^0.070^~4~^~07/01/2001~ -~05642~^~613~^1.339^3^0.253^~1~^~A~^^^1^0.833^1.601^2^0.250^2.427^~4~^~07/01/2001~ -~05642~^~614~^0.388^3^0.068^~1~^~A~^^^1^0.254^0.469^2^0.097^0.678^~4~^~07/01/2001~ -~05642~^~615~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.008^~1, 4~^~07/01/2001~ -~05642~^~617~^1.783^3^0.346^~1~^~A~^^^1^1.101^2.220^2^0.295^3.271^~4~^~07/01/2001~ -~05642~^~618~^0.631^3^0.127^~1~^~A~^^^1^0.411^0.851^2^0.085^1.178^~4~^~07/01/2001~ -~05642~^~619~^0.045^3^0.008^~1~^~A~^^^1^0.031^0.057^2^0.012^0.079^~4~^~07/01/2001~ -~05642~^~620~^0.057^3^0.015^~1~^~A~^^^1^0.038^0.086^2^-0.007^0.121^~4~^~07/01/2001~ -~05642~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05642~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 4~^~07/01/2001~ -~05642~^~626~^0.342^3^0.059^~1~^~A~^^^1^0.226^0.419^2^0.088^0.596^~4~^~07/01/2001~ -~05642~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~628~^0.024^3^0.004^~1~^~A~^^^1^0.015^0.029^2^0.005^0.044^~4~^~07/01/2001~ -~05642~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~ -~05642~^~645~^2.156^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~646~^0.739^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~05642~^~652~^0.012^3^0.003^~1~^~A~^^^1^0.009^0.019^2^-0.002^0.027^~4~^~07/01/2001~ -~05642~^~653~^0.012^3^0.004^~1~^~A~^^^1^0.008^0.019^2^-0.003^0.027^~4~^~07/01/2001~ -~05642~^~672~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.018^~1, 4~^~07/01/2001~ -~05642~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05642~^~687~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.017^~1, 4~^~07/01/2001~ -~05642~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05642~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2001~ -~05643~^~312~^0.136^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~315~^0.017^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~404~^0.196^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~405~^0.288^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~406~^4.722^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~410~^1.165^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~415~^0.513^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05643~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~502~^0.957^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~503~^1.036^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~504~^1.772^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~505~^1.926^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~506~^0.610^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~507~^0.224^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~508~^0.900^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~509~^0.709^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~510~^1.077^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~511~^1.492^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~512~^0.548^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~513~^1.399^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~514~^2.040^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~515~^3.343^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~516~^1.458^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~517~^1.137^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~518~^0.873^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~521~^0.389^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05643~^~606~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05643~^~612~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~613~^0.690^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~614~^0.230^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~617~^0.730^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~618~^0.330^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~619~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~620~^0.140^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~626~^0.220^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05643~^~645~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05643~^~646~^0.500^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~312~^0.141^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~404~^0.201^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~405~^0.295^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~406~^4.847^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~410~^1.196^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~415~^0.526^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05644~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~502~^0.982^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~503~^1.064^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~504~^1.819^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~505~^1.977^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~506~^0.626^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~508~^0.924^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~509~^0.728^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~510~^1.106^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~511~^1.531^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~512~^0.562^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~513~^1.437^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~514~^2.094^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~515~^3.432^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~516~^1.497^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~517~^1.167^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~518~^0.896^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~521~^0.400^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05644~^~606~^0.600^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~612~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~613~^0.400^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~614~^0.190^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~617~^0.480^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~618~^0.220^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~619~^0.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~620~^0.140^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~626~^0.120^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05644~^~645~^0.600^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05644~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05645~^~312~^0.148^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~315~^0.018^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~404~^0.237^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~405~^0.298^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~406~^7.274^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~410~^1.342^0^^~4~^~BFPN~^~05642~^^^^^^^^^~01/01/2002~ -~05645~^~415~^0.555^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05645~^~501~^0.259^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~502~^1.272^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~503~^1.378^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~504~^2.357^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~505~^2.562^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~506~^0.811^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~507~^0.298^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~508~^1.197^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~509~^0.943^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~510~^1.433^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~511~^1.984^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~512~^0.729^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~513~^1.861^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~514~^2.713^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~515~^4.447^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~516~^1.939^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~517~^1.512^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~518~^1.161^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~521~^0.518^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05645~^~606~^0.700^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~612~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~613~^0.440^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~614~^0.250^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~617~^0.540^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~618~^0.180^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~619~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~620~^0.130^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~626~^0.130^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05645~^~645~^0.670^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05645~^~646~^0.320^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~ -~05646~^~312~^0.145^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~315~^0.019^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~404~^0.213^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~405~^0.312^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~406~^5.129^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~410~^1.266^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~415~^0.557^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05646~^~501~^0.211^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~502~^1.039^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~503~^1.126^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~504~^1.925^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~505~^2.092^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~506~^0.662^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~507~^0.243^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~508~^0.978^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~509~^0.770^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~510~^1.170^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~511~^1.620^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~512~^0.595^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~513~^1.520^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~514~^2.216^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~515~^3.632^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~516~^1.584^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~517~^1.235^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~518~^0.948^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05646~^~521~^0.423^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05646~^~606~^0.923^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~611~^0.001^6^0.001^~1~^~A~^^^1^0.001^0.002^1^-0.006^0.008^~4~^~07/01/2001~ -~05646~^~612~^0.030^9^0.000^~1~^~A~^^^1^0.029^0.030^2^0.029^0.031^~4~^~07/01/2001~ -~05646~^~613~^0.712^9^0.045^~1~^~A~^^^1^0.633^0.790^2^0.517^0.907^~4~^~07/01/2001~ -~05646~^~614~^0.162^9^0.051^~1~^~A~^^^1^0.090^0.260^2^-0.056^0.380^~4~^~07/01/2001~ -~05646~^~617~^0.884^9^0.007^~1~^~A~^^^1^0.870^0.895^2^0.852^0.916^~4~^~07/01/2001~ -~05646~^~618~^0.461^9^0.026^~1~^~A~^^^1^0.410^0.498^2^0.347^0.575^~4~^~07/01/2001~ -~05646~^~619~^0.052^9^0.011^~1~^~A~^^^1^0.030^0.065^2^0.004^0.099^~4~^~07/01/2001~ -~05646~^~620~^0.065^9^0.047^~1~^~A~^^^1^0.014^0.160^2^-0.139^0.269^~4~^~07/01/2001~ -~05646~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^1^0.000^0.000^~4~^~07/01/2001~ -~05646~^~624~^0.004^6^0.004^~1~^~A~^^^1^0.000^0.007^1^-0.041^0.048^~4~^~07/01/2001~ -~05646~^~625~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.006^1^-0.013^0.023^~4~^~07/01/2001~ -~05646~^~626~^0.270^9^0.019^~1~^~A~^^^1^0.244^0.306^2^0.190^0.350^~4~^~07/01/2001~ -~05646~^~628~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.011^1^-0.004^0.024^~4~^~07/01/2001~ -~05646~^~629~^0.011^6^0.006^~1~^~A~^^^1^0.005^0.016^1^-0.059^0.081^~4~^~07/01/2001~ -~05646~^~645~^1.179^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~646~^0.591^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05646~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^1^0.004^0.007^~4~^~07/01/2001~ -~05646~^~653~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.010^1^-0.005^0.023^~4~^~07/01/2001~ -~05646~^~672~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.003^1^-0.020^0.023^~4~^~07/01/2001~ -~05646~^~687~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.010^1^0.001^0.019^~4~^~07/01/2001~ -~05647~^~312~^0.153^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~315~^0.019^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~404~^0.240^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~405~^0.301^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~406~^7.364^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~410~^1.359^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~415~^0.562^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05647~^~501~^0.262^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~502~^1.288^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~503~^1.395^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~504~^2.386^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~505~^2.593^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~506~^0.821^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~507~^0.302^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~508~^1.212^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~509~^0.955^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~510~^1.450^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~511~^2.009^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~512~^0.738^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~513~^1.884^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~514~^2.747^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~515~^4.502^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~516~^1.963^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~517~^1.531^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~518~^1.175^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~521~^0.524^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05647~^~606~^1.710^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~612~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~613~^1.230^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~614~^0.440^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~617~^1.360^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~618~^0.540^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~619~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~620~^0.160^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~626~^0.380^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05647~^~645~^1.740^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05647~^~646~^0.740^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~312~^0.142^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~404~^0.205^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~405~^0.302^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~406~^4.949^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~410~^1.221^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~415~^0.537^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05648~^~501~^0.204^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~502~^1.003^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~503~^1.086^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~504~^1.857^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~505~^2.019^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~506~^0.639^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~508~^0.944^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~509~^0.743^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~510~^1.129^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~511~^1.563^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~512~^0.574^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~513~^1.467^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~514~^2.138^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~515~^3.504^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~516~^1.528^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~517~^1.192^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~518~^0.915^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~521~^0.408^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05648~^~606~^0.610^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~612~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~613~^0.420^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~614~^0.180^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~617~^0.470^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~618~^0.260^3^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~05648~^~619~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~620~^0.160^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~626~^0.120^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05648~^~645~^0.590^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05648~^~646~^0.430^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~312~^0.147^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~315~^0.019^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~404~^0.210^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~405~^0.308^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~406~^5.058^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~410~^1.248^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~415~^0.549^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05649~^~501~^0.208^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~502~^1.025^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~503~^1.110^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~504~^1.898^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~505~^2.063^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~506~^0.653^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~508~^0.964^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~509~^0.760^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~510~^1.154^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~511~^1.598^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~512~^0.587^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~513~^1.499^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~514~^2.185^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~515~^3.581^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~516~^1.562^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~517~^1.218^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~518~^0.935^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05649~^~521~^0.417^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05649~^~606~^0.771^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~611~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.009^0.011^~4~^~07/01/2001~ -~05649~^~612~^0.026^9^0.007^~1~^~A~^^^1^0.019^0.040^2^-0.005^0.056^~4~^~07/01/2001~ -~05649~^~613~^0.556^9^0.188^~1~^~A~^^^1^0.332^0.930^2^-0.255^1.366^~4~^~07/01/2001~ -~05649~^~614~^0.178^9^0.051^~1~^~A~^^^1^0.121^0.280^2^-0.041^0.398^~4~^~07/01/2001~ -~05649~^~617~^0.697^9^0.154^~1~^~A~^^^1^0.501^1.000^2^0.036^1.358^~4~^~07/01/2001~ -~05649~^~618~^0.348^9^0.057^~1~^~A~^^^1^0.276^0.460^2^0.105^0.592^~4~^~07/01/2001~ -~05649~^~619~^0.044^9^0.007^~1~^~A~^^^1^0.030^0.051^2^0.014^0.074^~4~^~07/01/2001~ -~05649~^~620~^0.060^9^0.045^~1~^~A~^^^1^0.013^0.150^2^-0.134^0.254^~4~^~07/01/2001~ -~05649~^~621~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.001^1^-0.007^0.008^~4~^~07/01/2001~ -~05649~^~624~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.005^1^-0.028^0.033^~4~^~07/01/2001~ -~05649~^~625~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.005^1^-0.009^0.017^~4~^~07/01/2001~ -~05649~^~626~^0.162^9^0.079^~1~^~A~^^^1^0.072^0.320^2^-0.179^0.503^~4~^~07/01/2001~ -~05649~^~628~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.011^1^-0.003^0.024^~4~^~07/01/2001~ -~05649~^~629~^0.008^6^0.005^~1~^~A~^^^1^0.004^0.013^1^-0.051^0.068^~4~^~07/01/2001~ -~05649~^~645~^0.874^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~646~^0.462^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05649~^~652~^0.006^6^0.001^~1~^~A~^^^1^0.006^0.007^1^-0.001^0.013^~4~^~07/01/2001~ -~05649~^~653~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.003^1^-0.020^0.023^~4~^~07/01/2001~ -~05649~^~672~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.001^1^-0.007^0.008^~4~^~07/01/2001~ -~05649~^~687~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.011^0.013^~4~^~07/01/2001~ -~05650~^~312~^0.154^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~315~^0.019^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~404~^0.233^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~405~^0.293^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~406~^7.158^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~410~^1.321^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~415~^0.546^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05650~^~501~^0.255^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~502~^1.252^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~503~^1.356^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~504~^2.320^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~505~^2.521^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~506~^0.798^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~507~^0.293^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~508~^1.178^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~509~^0.928^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~510~^1.410^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~511~^1.952^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~512~^0.717^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~513~^1.832^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~514~^2.670^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~515~^4.377^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~516~^1.908^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~517~^1.488^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~518~^1.142^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~521~^0.509^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05650~^~606~^1.430^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~612~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~613~^1.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~614~^0.380^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~617~^1.280^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~618~^0.340^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~619~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~620~^0.070^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~626~^0.310^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05650~^~645~^1.590^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05650~^~646~^0.440^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05651~^~312~^0.131^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~315~^0.017^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~404~^0.194^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~405~^0.284^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~406~^4.665^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~410~^1.151^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~415~^0.507^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05651~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~502~^0.945^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~503~^1.024^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~504~^1.751^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~505~^1.903^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~506~^0.602^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~507~^0.221^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~508~^0.889^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~509~^0.701^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~510~^1.064^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~511~^1.474^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~512~^0.541^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~513~^1.383^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~514~^2.016^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~515~^3.303^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~516~^1.440^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~517~^1.123^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~518~^0.862^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~521~^0.385^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05651~^~606~^1.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05651~^~612~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~613~^0.920^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~614~^0.260^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~617~^0.920^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~618~^0.430^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~619~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~620~^0.140^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~626~^0.330^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05651~^~645~^1.250^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05651~^~646~^0.610^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~05652~^~312~^0.180^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~315~^0.023^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05652~^~404~^0.235^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~405~^0.296^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~406~^7.224^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~410~^1.333^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~415~^0.551^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05652~^~501~^0.257^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~502~^1.264^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~503~^1.369^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~504~^2.341^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~505~^2.544^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~506~^0.805^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~508~^1.189^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~509~^0.937^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~510~^1.423^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~511~^1.970^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~512~^0.724^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~513~^1.849^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~514~^2.695^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~515~^4.416^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~516~^1.926^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~517~^1.502^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~518~^1.153^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~521~^0.514^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05652~^~606~^1.690^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~612~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~613~^1.090^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~614~^0.570^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~617~^1.210^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~618~^0.360^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~619~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~620~^0.120^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~626~^0.240^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05652~^~645~^1.450^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05652~^~646~^0.510^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~312~^0.139^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~404~^0.198^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~405~^0.290^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~406~^4.761^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~410~^1.175^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~415~^0.517^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05653~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~502~^0.965^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~503~^1.045^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~504~^1.787^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~505~^1.942^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~506~^0.615^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~508~^0.908^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~509~^0.715^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~510~^1.086^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~511~^1.504^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~512~^0.552^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~513~^1.411^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~514~^2.057^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~515~^3.371^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~516~^1.470^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~517~^1.146^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~518~^0.880^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~521~^0.392^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05653~^~606~^0.810^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~612~^0.010^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~613~^0.550^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~614~^0.250^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~617~^0.680^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~618~^0.330^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~619~^0.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~620~^0.170^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~626~^0.170^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05653~^~645~^0.850^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05653~^~646~^0.520^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~312~^0.141^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~404~^0.198^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~405~^0.291^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~406~^4.778^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~410~^1.179^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~415~^0.519^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05654~^~501~^0.197^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~502~^0.968^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~503~^1.049^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~504~^1.793^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~505~^1.949^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~506~^0.617^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~507~^0.227^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~508~^0.911^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~509~^0.718^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~510~^1.090^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~511~^1.509^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~512~^0.554^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~513~^1.416^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~514~^2.064^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~515~^3.383^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~516~^1.475^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~517~^1.151^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~518~^0.883^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~521~^0.394^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05654~^~606~^1.170^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~612~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~613~^0.810^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~614~^0.320^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~617~^0.990^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~618~^0.480^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~619~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~620~^0.230^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~626~^0.240^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05654~^~645~^1.230^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05654~^~646~^0.750^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~312~^0.137^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~404~^0.196^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~405~^0.288^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~406~^4.730^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~410~^1.167^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~415~^0.514^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05655~^~501~^0.195^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~502~^0.958^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~503~^1.038^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~504~^1.775^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~505~^1.929^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~506~^0.611^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~507~^0.224^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~508~^0.902^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~510~^1.079^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~511~^1.494^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~512~^0.549^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~513~^1.402^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~514~^2.044^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~515~^3.349^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~516~^1.461^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~517~^1.139^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~518~^0.874^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~521~^0.390^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05655~^~606~^0.860^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~612~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~613~^0.640^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~614~^0.190^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~617~^0.580^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~618~^0.290^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~619~^0.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~620~^0.140^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~626~^0.210^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05655~^~645~^0.790^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05655~^~646~^0.450^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~312~^0.152^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~315~^0.019^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~404~^0.232^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~405~^0.292^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~406~^7.143^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~410~^1.318^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~415~^0.545^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05656~^~501~^0.254^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~502~^1.250^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~503~^1.354^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~504~^2.315^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~505~^2.516^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~506~^0.796^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~507~^0.293^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~508~^1.176^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~509~^0.927^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~510~^1.407^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~511~^1.948^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~512~^0.716^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~513~^1.828^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~514~^2.665^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~515~^4.367^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~516~^1.904^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~517~^1.485^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~518~^1.140^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~521~^0.508^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05656~^~606~^1.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~612~^0.040^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~613~^0.680^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~614~^0.280^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~617~^0.760^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~618~^0.300^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~619~^0.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~620~^0.120^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~626~^0.210^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05656~^~645~^0.970^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05656~^~646~^0.440^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~312~^0.137^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~315~^0.018^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~404~^0.195^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~405~^0.286^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~406~^4.691^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~410~^1.158^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~415~^0.509^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~ -~05657~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~502~^0.951^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~503~^1.030^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~504~^1.761^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~505~^1.914^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~506~^0.606^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~508~^0.894^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~509~^0.705^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~510~^1.070^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~511~^1.482^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~512~^0.544^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~513~^1.390^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~514~^2.027^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~515~^3.322^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~516~^1.448^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~517~^1.130^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~05657~^~518~^0.867^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~521~^0.387^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~05657~^~606~^1.200^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~612~^0.060^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~613~^0.930^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~614~^0.210^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~617~^0.730^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~618~^0.380^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~619~^0.050^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~620~^0.150^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~626~^0.330^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05657~^~645~^1.060^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05657~^~646~^0.580^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~05658~^~312~^0.148^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~315~^0.018^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~404~^0.229^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~405~^0.289^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~406~^7.051^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~410~^1.301^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~415~^0.538^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~ -~05658~^~501~^0.251^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~502~^1.233^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~503~^1.336^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~504~^2.285^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~505~^2.483^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~506~^0.786^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~508~^1.161^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~509~^0.914^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~510~^1.389^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~511~^1.923^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~513~^1.804^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~514~^2.630^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~515~^4.311^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~516~^1.880^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~517~^1.466^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~518~^1.125^0^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~521~^0.502^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~05658~^~605~^0.128^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2002~ -~05658~^~606~^1.320^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~612~^0.030^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~613~^0.920^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~614~^0.370^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~617~^1.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~618~^0.280^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~619~^0.020^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~620~^0.080^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~626~^0.250^3^^~1~^~A~^^^^^^^^^^~07/01/2001~ -~05658~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~05658~^~645~^1.270^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05658~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~05661~^~312~^0.535^4^0.035^~1~^~A~^^^1^0.478^0.637^3^0.423^0.648^~2, 3~^~02/01/2003~ -~05661~^~315~^0.375^4^0.006^~1~^~A~^^^1^0.362^0.389^3^0.356^0.394^~2, 3~^~02/01/2003~ -~05661~^~404~^0.292^4^0.008^~1~^~A~^^^1^0.276^0.312^3^0.267^0.317^~2, 3~^~02/01/2003~ -~05661~^~405~^2.313^4^0.037^~1~^~A~^^^1^2.220^2.390^3^2.195^2.430^~2, 3~^~02/01/2003~ -~05661~^~406~^13.925^4^0.448^~1~^~A~^^^1^13.300^15.200^3^12.500^15.350^~2, 3~^~02/01/2003~ -~05661~^~410~^8.315^4^0.364^~1~^~A~^^^1^7.280^8.840^3^7.156^9.474^~2, 3~^~02/01/2003~ -~05661~^~415~^0.840^4^0.043^~1~^~A~^^^1^0.714^0.903^3^0.703^0.976^~2, 3~^~02/01/2003~ -~05661~^~501~^0.261^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~502~^1.076^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~503~^1.206^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~504~^2.243^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~505~^1.976^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~506~^0.641^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~507~^0.404^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~508~^1.223^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~509~^0.969^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~510~^1.481^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~511~^1.622^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~512~^0.752^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~513~^1.473^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~514~^2.363^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~515~^3.105^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~516~^1.260^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~517~^1.077^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~518~^1.090^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~521~^0.043^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~05661~^~605~^0.098^4^0.033^~1~^~A~^^^1^0.000^0.130^3^-0.006^0.201^~1, 2, 3~^~02/01/2003~ -~05661~^~606~^2.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~05661~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~610~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~02/01/2003~ -~05661~^~611~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~02/01/2003~ -~05661~^~612~^0.014^4^0.001^~1~^~A~^^^1^0.010^0.017^3^0.009^0.018^~1, 2, 3~^~02/01/2003~ -~05661~^~613~^1.088^4^0.101^~1~^~A~^^^1^0.809^1.269^3^0.767^1.409^~2, 3~^~02/01/2003~ -~05661~^~614~^0.911^4^0.046^~1~^~A~^^^1^0.786^1.001^3^0.766^1.057^~2, 3~^~02/01/2003~ -~05661~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~617~^1.246^4^0.122^~1~^~A~^^^1^0.988^1.575^3^0.859^1.633^~2, 3~^~02/01/2003~ -~05661~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~05661~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~05661~^~620~^0.508^4^0.038^~1~^~A~^^^1^0.433^0.611^3^0.386^0.629^~2, 3~^~02/01/2003~ -~05661~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~624~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.012^0.017^~2, 3~^~02/01/2003~ -~05661~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~626~^0.120^4^0.013^~1~^~A~^^^1^0.090^0.153^3^0.079^0.161^~2, 3~^~02/01/2003~ -~05661~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~628~^0.021^4^0.001^~1~^~A~^^^1^0.019^0.025^3^0.016^0.025^~2, 3~^~02/01/2003~ -~05661~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~05661~^~645~^1.387^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~646~^1.265^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~05661~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~672~^0.018^4^0.010^~1~^~A~^^^1^0.000^0.036^3^-0.015^0.050^~1, 2, 3~^~02/01/2003~ -~05661~^~675~^0.714^4^0.021^~1~^~A~^^^1^0.670^0.764^3^0.646^0.782^~2, 3~^~02/01/2003~ -~05661~^~685~^0.014^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.010^0.018^~2, 3~^~02/01/2003~ -~05661~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~05661~^~851~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.010^0.014^~2, 3~^~02/01/2003~ -~05662~^~312~^0.058^4^0.003^~1~^~A~^^^1^0.049^0.064^3^0.048^0.069^~1, 2, 3~^~04/01/2010~ -~05662~^~315~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05662~^~404~^0.062^4^0.005^~1~^~A~^^^1^0.050^0.070^3^0.047^0.078^~2, 3~^~04/01/2010~ -~05662~^~405~^0.105^4^0.003^~1~^~A~^^^1^0.100^0.110^3^0.096^0.114^~2, 3~^~04/01/2010~ -~05662~^~406~^9.708^4^0.610^~1~^~A~^^^1^7.960^10.800^3^7.765^11.650^~2, 3~^~04/01/2010~ -~05662~^~410~^0.880^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~415~^0.857^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~501~^0.267^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~502~^1.078^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~503~^1.052^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~504~^1.939^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~505~^2.101^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~506~^0.691^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~507~^0.248^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~508~^0.915^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~509~^0.832^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~510~^1.088^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~511~^1.705^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~512~^0.695^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~513~^1.462^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~514~^2.268^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~515~^3.759^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~516~^1.285^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~517~^1.039^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~518~^0.998^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05662~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~606~^0.487^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05662~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~610~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05662~^~611~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.003^3^0.000^0.004^~1, 2, 3~^~04/01/2010~ -~05662~^~612~^0.011^4^0.001^~1~^~A~^^^1^0.008^0.012^3^0.008^0.014^~2, 3~^~04/01/2010~ -~05662~^~613~^0.303^4^0.021^~1~^~A~^^^1^0.260^0.348^3^0.237^0.368^~2, 3~^~04/01/2010~ -~05662~^~614~^0.158^4^0.011^~1~^~A~^^^1^0.129^0.178^3^0.124^0.191^~2, 3~^~04/01/2010~ -~05662~^~615~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05662~^~617~^0.462^4^0.048^~1~^~AS~^^^1^0.379^0.596^3^0.311^0.614^~2, 3~^~04/01/2010~ -~05662~^~618~^0.457^4^0.048^~1~^~AS~^^^1^0.370^0.574^3^0.305^0.609^~2, 3~^~04/01/2010~ -~05662~^~619~^0.023^4^0.003^~1~^~AS~^^^1^0.018^0.031^3^0.015^0.032^~2, 3~^~04/01/2010~ -~05662~^~620~^0.075^4^0.004^~1~^~A~^^^1^0.064^0.079^3^0.063^0.086^~2, 3~^~04/01/2010~ -~05662~^~621~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~04/01/2010~ -~05662~^~624~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05662~^~625~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2010~ -~05662~^~626~^0.036^4^0.002^~1~^~AS~^^^1^0.031^0.039^3^0.030^0.041^~2, 3~^~04/01/2010~ -~05662~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~628~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.007^3^0.002^0.007^~2, 3~^~04/01/2010~ -~05662~^~629~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05662~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~05662~^~631~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~04/01/2010~ -~05662~^~645~^0.512^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~646~^0.594^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05662~^~653~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~04/01/2010~ -~05662~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~662~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~663~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.009^0.016^~2, 3~^~04/01/2010~ -~05662~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~665~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.001^0.006^~1, 2, 3~^~04/01/2010~ -~05662~^~670~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05662~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~672~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05662~^~673~^0.035^4^0.002^~1~^~A~^^^1^0.030^0.038^3^0.029^0.040^~2, 3~^~04/01/2010~ -~05662~^~674~^0.450^4^0.047^~1~^~A~^^^1^0.369^0.583^3^0.300^0.601^~2, 3~^~04/01/2010~ -~05662~^~675~^0.452^4^0.047^~1~^~A~^^^1^0.364^0.567^3^0.301^0.602^~2, 3~^~04/01/2010~ -~05662~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~685~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~687~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2010~ -~05662~^~689~^0.004^4^0.000^~1~^~AS~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2010~ -~05662~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05662~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~851~^0.022^4^0.003^~1~^~A~^^^1^0.017^0.030^3^0.014^0.031^~2, 3~^~04/01/2010~ -~05662~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~853~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2010~ -~05662~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05662~^~858~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.016^3^0.013^0.017^~2, 3~^~04/01/2010~ -~05663~^~312~^0.067^4^0.006^~1~^~A~^^^1^0.051^0.078^3^0.049^0.086^~2, 3~^~04/01/2010~ -~05663~^~315~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05663~^~404~^0.082^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.067^0.098^~2, 3~^~04/01/2010~ -~05663~^~405~^0.135^4^0.009^~1~^~A~^^^1^0.110^0.150^3^0.107^0.163^~2, 3~^~04/01/2010~ -~05663~^~406~^12.550^4^0.608^~1~^~A~^^^1^11.500^14.300^3^10.616^14.484^~2, 3~^~04/01/2010~ -~05663~^~410~^0.960^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~415~^1.080^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~501~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~502~^1.452^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~503~^1.418^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~504~^2.613^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~505~^2.832^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~506~^0.931^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~507~^0.334^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~508~^1.233^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~509~^1.122^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~510~^1.467^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~511~^2.298^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~512~^0.937^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~513~^1.971^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~514~^3.057^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~515~^5.067^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~516~^1.732^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~517~^1.401^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~518~^1.345^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05663~^~521~^0.264^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~05663~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~606~^0.717^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05663~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~609~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05663~^~610~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.004^3^0.001^0.005^~1, 2, 3~^~04/01/2010~ -~05663~^~611~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~05663~^~612~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.019^3^0.013^0.019^~2, 3~^~04/01/2010~ -~05663~^~613~^0.445^4^0.018^~1~^~A~^^^1^0.417^0.498^3^0.387^0.502^~2, 3~^~04/01/2010~ -~05663~^~614~^0.234^4^0.008^~1~^~A~^^^1^0.218^0.257^3^0.207^0.260^~2, 3~^~04/01/2010~ -~05663~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05663~^~617~^0.682^4^0.054^~1~^~AS~^^^1^0.618^0.842^3^0.512^0.853^~2, 3~^~04/01/2010~ -~05663~^~618~^0.668^4^0.054^~1~^~AS~^^^1^0.559^0.817^3^0.496^0.840^~2, 3~^~04/01/2010~ -~05663~^~619~^0.036^4^0.003^~1~^~AS~^^^1^0.030^0.045^3^0.026^0.047^~2, 3~^~04/01/2010~ -~05663~^~620~^0.090^4^0.005^~1~^~A~^^^1^0.079^0.102^3^0.074^0.106^~2, 3~^~04/01/2010~ -~05663~^~621~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~04/01/2010~ -~05663~^~624~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.000^0.003^~1, 2, 3~^~04/01/2010~ -~05663~^~625~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05663~^~626~^0.048^4^0.003^~1~^~AS~^^^1^0.044^0.056^3^0.040^0.057^~2, 3~^~04/01/2010~ -~05663~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~628~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~04/01/2010~ -~05663~^~629~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05663~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~05663~^~631~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~2, 3~^~04/01/2010~ -~05663~^~645~^0.751^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~646~^0.843^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05663~^~653~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05663~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2010~ -~05663~^~662~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05663~^~663~^0.018^4^0.001^~1~^~A~^^^1^0.015^0.021^3^0.014^0.022^~2, 3~^~04/01/2010~ -~05663~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~665~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.007^~2, 3~^~04/01/2010~ -~05663~^~670~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2010~ -~05663~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~672~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05663~^~673~^0.047^4^0.002^~1~^~A~^^^1^0.043^0.054^3^0.039^0.055^~2, 3~^~04/01/2010~ -~05663~^~674~^0.665^4^0.054^~1~^~A~^^^1^0.600^0.824^3^0.494^0.835^~2, 3~^~04/01/2010~ -~05663~^~675~^0.660^4^0.053^~1~^~A~^^^1^0.553^0.808^3^0.490^0.830^~2, 3~^~04/01/2010~ -~05663~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~685~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~687~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.011^~2, 3~^~04/01/2010~ -~05663~^~689~^0.005^4^0.000^~1~^~AS~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05663~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05663~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~851~^0.034^4^0.003^~1~^~A~^^^1^0.028^0.043^3^0.024^0.045^~2, 3~^~04/01/2010~ -~05663~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2010~ -~05663~^~853~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2010~ -~05663~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05663~^~858~^0.018^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.015^0.022^~2, 3~^~04/01/2010~ -~05664~^~312~^0.061^4^0.006^~1~^~A~^^^1^0.050^0.077^3^0.042^0.079^~2, 3~^~04/01/2010~ -~05664~^~315~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05664~^~404~^0.067^4^0.005^~1~^~A~^^^1^0.060^0.080^3^0.052^0.083^~2, 3~^~04/01/2010~ -~05664~^~405~^0.145^4^0.019^~1~^~A~^^^1^0.120^0.200^3^0.086^0.204^~2, 3~^~04/01/2010~ -~05664~^~406~^10.707^4^0.736^~1~^~A~^^^1^8.830^12.300^3^8.364^13.051^~2, 3~^~04/01/2010~ -~05664~^~410~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~415~^0.908^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~501~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~502~^1.330^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~503~^1.299^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~504~^2.394^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~505~^2.594^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~506~^0.853^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~507~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~508~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~509~^1.027^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~510~^1.344^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~511~^2.105^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~512~^0.859^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~513~^1.805^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~514~^2.800^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~515~^4.641^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~516~^1.587^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~517~^1.283^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~518~^1.232^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05664~^~521~^0.242^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~05664~^~605~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~606~^0.673^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~607~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05664~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~609~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~610~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~05664~^~611~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.001^0.005^~1, 2, 3~^~04/01/2010~ -~05664~^~612~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.014^0.016^~2, 3~^~04/01/2010~ -~05664~^~613~^0.421^4^0.020^~1~^~A~^^^1^0.389^0.478^3^0.356^0.486^~2, 3~^~04/01/2010~ -~05664~^~614~^0.217^4^0.008^~1~^~A~^^^1^0.205^0.242^3^0.190^0.244^~2, 3~^~04/01/2010~ -~05664~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05664~^~617~^0.643^4^0.028^~1~^~AS~^^^1^0.578^0.695^3^0.554^0.733^~2, 3~^~04/01/2010~ -~05664~^~618~^0.604^4^0.060^~1~^~AS~^^^1^0.490^0.768^3^0.412^0.796^~2, 3~^~04/01/2010~ -~05664~^~619~^0.032^4^0.004^~1~^~AS~^^^1^0.026^0.041^3^0.020^0.043^~2, 3~^~04/01/2010~ -~05664~^~620~^0.079^4^0.004^~1~^~A~^^^1^0.072^0.086^3^0.068^0.090^~2, 3~^~04/01/2010~ -~05664~^~621~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05664~^~624~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05664~^~625~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2010~ -~05664~^~626~^0.051^4^0.003^~1~^~AS~^^^1^0.043^0.058^3^0.041^0.061^~2, 3~^~04/01/2010~ -~05664~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~628~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~04/01/2010~ -~05664~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~04/01/2010~ -~05664~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~05664~^~631~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~04/01/2010~ -~05664~^~645~^0.713^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~646~^0.759^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05664~^~653~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05664~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~662~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~663~^0.016^4^0.000^~1~^~A~^^^1^0.016^0.018^3^0.015^0.018^~2, 3~^~04/01/2010~ -~05664~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~665~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05664~^~670~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05664~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~672~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05664~^~673~^0.049^4^0.003^~1~^~A~^^^1^0.041^0.056^3^0.039^0.059^~2, 3~^~04/01/2010~ -~05664~^~674~^0.627^4^0.028^~1~^~A~^^^1^0.560^0.679^3^0.537^0.717^~2, 3~^~04/01/2010~ -~05664~^~675~^0.598^4^0.061^~1~^~A~^^^1^0.484^0.762^3^0.406^0.791^~2, 3~^~04/01/2010~ -~05664~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~685~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05664~^~687~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.007^0.010^~2, 3~^~04/01/2010~ -~05664~^~689~^0.004^4^0.000^~1~^~AS~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05664~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05664~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~851~^0.030^4^0.003^~1~^~A~^^^1^0.024^0.039^3^0.019^0.041^~2, 3~^~04/01/2010~ -~05664~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~853~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05664~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05664~^~858~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.017^3^0.014^0.018^~2, 3~^~04/01/2010~ -~05665~^~312~^0.107^4^0.010^~1~^~A~^^^1^0.081^0.125^3^0.076^0.137^~2, 3~^~04/01/2010~ -~05665~^~315~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~04/01/2010~ -~05665~^~404~^0.067^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.059^0.076^~2, 3~^~04/01/2010~ -~05665~^~405~^0.185^4^0.012^~1~^~A~^^^1^0.160^0.210^3^0.147^0.223^~2, 3~^~04/01/2010~ -~05665~^~406~^5.417^4^0.094^~1~^~A~^^^1^5.200^5.580^3^5.118^5.717^~2, 3~^~04/01/2010~ -~05665~^~410~^1.000^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~415~^0.350^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~501~^0.213^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~502~^0.859^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~503~^0.838^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~504~^1.545^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~505~^1.675^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~506~^0.551^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~507~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~508~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~509~^0.663^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~510~^0.868^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~511~^1.359^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~512~^0.554^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~513~^1.166^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~514~^1.808^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~515~^2.997^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~516~^1.024^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~517~^0.828^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~518~^0.795^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~521~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05665~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~606~^2.170^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~607~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.001^0.005^~1, 2, 3~^~04/01/2010~ -~05665~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~609~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~04/01/2010~ -~05665~^~610~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~04/01/2010~ -~05665~^~611~^0.010^4^0.002^~1~^~A~^^^1^0.006^0.016^3^0.004^0.017^~2, 3~^~04/01/2010~ -~05665~^~612~^0.068^4^0.001^~1~^~A~^^^1^0.066^0.069^3^0.066^0.070^~2, 3~^~04/01/2010~ -~05665~^~613~^1.477^4^0.056^~1~^~A~^^^1^1.381^1.628^3^1.300^1.654^~2, 3~^~04/01/2010~ -~05665~^~614~^0.566^4^0.009^~1~^~A~^^^1^0.542^0.587^3^0.536^0.595^~2, 3~^~04/01/2010~ -~05665~^~615~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~04/01/2010~ -~05665~^~617~^2.508^4^0.068^~1~^~AS~^^^1^2.423^2.709^3^2.293^2.724^~2, 3~^~04/01/2010~ -~05665~^~618~^2.231^4^0.026^~1~^~AS~^^^1^2.178^2.286^3^2.150^2.313^~2, 3~^~04/01/2010~ -~05665~^~619~^0.127^4^0.002^~1~^~AS~^^^1^0.121^0.130^3^0.120^0.133^~2, 3~^~04/01/2010~ -~05665~^~620~^0.108^4^0.005^~1~^~A~^^^1^0.097^0.121^3^0.092^0.125^~2, 3~^~04/01/2010~ -~05665~^~621~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~04/01/2010~ -~05665~^~624~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05665~^~625~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.014^3^0.010^0.015^~2, 3~^~04/01/2010~ -~05665~^~626~^0.271^4^0.030^~1~^~AS~^^^1^0.231^0.360^3^0.176^0.366^~2, 3~^~04/01/2010~ -~05665~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~628~^0.029^4^0.001^~1~^~A~^^^1^0.028^0.032^3^0.026^0.032^~2, 3~^~04/01/2010~ -~05665~^~629~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.003^0.008^~2, 3~^~04/01/2010~ -~05665~^~630~^0.001^4^0.000^~1~^~AS~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~04/01/2010~ -~05665~^~631~^0.010^4^0.001^~1~^~A~^^^1^0.009^0.011^3^0.008^0.012^~2, 3~^~04/01/2010~ -~05665~^~645~^2.843^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~646~^2.537^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~652~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.012^~2, 3~^~04/01/2010~ -~05665~^~653~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.021^3^0.018^0.023^~2, 3~^~04/01/2010~ -~05665~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~662~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05665~^~663~^0.074^4^0.004^~1~^~A~^^^1^0.063^0.084^3^0.060^0.087^~2, 3~^~04/01/2010~ -~05665~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~665~^0.032^4^0.003^~1~^~A~^^^1^0.027^0.041^3^0.023^0.042^~2, 3~^~04/01/2010~ -~05665~^~670~^0.013^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.012^0.015^~2, 3~^~04/01/2010~ -~05665~^~671~^0.006^4^0.002^~1~^~A~^^^1^0.003^0.011^3^0.000^0.012^~2, 3~^~04/01/2010~ -~05665~^~672~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.013^0.016^~2, 3~^~04/01/2010~ -~05665~^~673~^0.265^4^0.030^~1~^~A~^^^1^0.225^0.355^3^0.170^0.361^~2, 3~^~04/01/2010~ -~05665~^~674~^2.435^4^0.071^~1~^~A~^^^1^2.348^2.646^3^2.208^2.662^~2, 3~^~04/01/2010~ -~05665~^~675~^2.185^4^0.027^~1~^~A~^^^1^2.124^2.240^3^2.100^2.271^~2, 3~^~04/01/2010~ -~05665~^~676~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05665~^~685~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2010~ -~05665~^~687~^0.014^4^0.001^~1~^~A~^^^1^0.013^0.016^3^0.012^0.017^~2, 3~^~04/01/2010~ -~05665~^~689~^0.011^4^0.001^~1~^~AS~^^^1^0.010^0.013^3^0.009^0.013^~2, 3~^~04/01/2010~ -~05665~^~693~^0.079^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05665~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~851~^0.121^4^0.002^~1~^~A~^^^1^0.116^0.124^3^0.115^0.126^~2, 3~^~04/01/2010~ -~05665~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05665~^~853~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.011^~2, 3~^~04/01/2010~ -~05665~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05665~^~858~^0.020^4^0.001^~1~^~A~^^^1^0.017^0.021^3^0.017^0.023^~2, 3~^~04/01/2010~ -~05666~^~312~^0.166^4^0.010^~1~^~A~^^^1^0.142^0.185^3^0.135^0.198^~2, 3~^~04/01/2010~ -~05666~^~315~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.008^0.011^~2, 3~^~04/01/2010~ -~05666~^~404~^0.088^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.067^0.108^~2, 3~^~04/01/2010~ -~05666~^~405~^0.262^4^0.029^~1~^~A~^^^1^0.190^0.330^3^0.171^0.354^~2, 3~^~04/01/2010~ -~05666~^~406~^8.095^4^0.488^~1~^~A~^^^1^7.220^9.070^3^6.541^9.649^~2, 3~^~04/01/2010~ -~05666~^~410~^1.400^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~415~^0.497^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~501~^0.308^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~502~^1.244^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~503~^1.214^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~504~^2.237^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~505~^2.425^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~506~^0.797^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~508~^1.056^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~509~^0.960^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~510~^1.256^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~511~^1.968^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~512~^0.803^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~513~^1.687^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~514~^2.617^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~515~^4.338^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~516~^1.483^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~517~^1.199^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~518~^1.151^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05666~^~521~^0.226^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~05666~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~606~^2.966^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05666~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~609~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05666~^~610~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05666~^~611~^0.015^4^0.003^~1~^~A~^^^1^0.008^0.021^3^0.007^0.024^~2, 3~^~04/01/2010~ -~05666~^~612~^0.093^4^0.003^~1~^~A~^^^1^0.086^0.099^3^0.085^0.102^~2, 3~^~04/01/2010~ -~05666~^~613~^2.018^4^0.045^~1~^~A~^^^1^1.901^2.123^3^1.874^2.163^~2, 3~^~04/01/2010~ -~05666~^~614~^0.774^4^0.021^~1~^~A~^^^1^0.713^0.805^3^0.706^0.842^~2, 3~^~04/01/2010~ -~05666~^~615~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~04/01/2010~ -~05666~^~617~^3.433^4^0.048^~1~^~AS~^^^1^3.328^3.553^3^3.280^3.587^~2, 3~^~04/01/2010~ -~05666~^~618~^3.113^4^0.060^~1~^~AS~^^^1^3.038^3.294^3^2.920^3.306^~2, 3~^~04/01/2010~ -~05666~^~619~^0.184^4^0.002^~1~^~AS~^^^1^0.178^0.187^3^0.177^0.191^~2, 3~^~04/01/2010~ -~05666~^~620~^0.165^4^0.007^~1~^~A~^^^1^0.147^0.178^3^0.144^0.186^~2, 3~^~04/01/2010~ -~05666~^~621~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.012^3^0.010^0.013^~2, 3~^~04/01/2010~ -~05666~^~624~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05666~^~625~^0.017^4^0.001^~1~^~A~^^^1^0.015^0.019^3^0.014^0.020^~2, 3~^~04/01/2010~ -~05666~^~626~^0.380^4^0.032^~1~^~AS~^^^1^0.331^0.473^3^0.277^0.483^~2, 3~^~04/01/2010~ -~05666~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~628~^0.041^4^0.000^~1~^~A~^^^1^0.040^0.041^3^0.040^0.042^~2, 3~^~04/01/2010~ -~05666~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05666~^~630~^0.002^4^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2010~ -~05666~^~631~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.012^0.019^~2, 3~^~04/01/2010~ -~05666~^~645~^3.895^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~646~^3.562^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~652~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.013^0.015^~2, 3~^~04/01/2010~ -~05666~^~653~^0.027^4^0.002^~1~^~A~^^^1^0.023^0.030^3^0.022^0.032^~2, 3~^~04/01/2010~ -~05666~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05666~^~662~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~04/01/2010~ -~05666~^~663~^0.099^4^0.006^~1~^~A~^^^1^0.084^0.112^3^0.080^0.117^~2, 3~^~04/01/2010~ -~05666~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~665~^0.038^4^0.002^~1~^~A~^^^1^0.034^0.041^3^0.033^0.043^~2, 3~^~04/01/2010~ -~05666~^~670~^0.020^4^0.001^~1~^~A~^^^1^0.019^0.022^3^0.018^0.022^~2, 3~^~04/01/2010~ -~05666~^~671~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05666~^~672~^0.020^4^0.001^~1~^~A~^^^1^0.019^0.021^3^0.018^0.022^~2, 3~^~04/01/2010~ -~05666~^~673~^0.372^4^0.032^~1~^~A~^^^1^0.324^0.466^3^0.270^0.475^~2, 3~^~04/01/2010~ -~05666~^~674~^3.335^4^0.054^~1~^~A~^^^1^3.216^3.469^3^3.164^3.506^~2, 3~^~04/01/2010~ -~05666~^~675~^3.054^4^0.060^~1~^~A~^^^1^2.975^3.234^3^2.863^3.246^~2, 3~^~04/01/2010~ -~05666~^~676~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~685~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.010^3^0.008^0.010^~2, 3~^~04/01/2010~ -~05666~^~687~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.017^0.022^~2, 3~^~04/01/2010~ -~05666~^~689~^0.016^4^0.000^~1~^~AS~^^^1^0.016^0.017^3^0.016^0.017^~2, 3~^~04/01/2010~ -~05666~^~693~^0.106^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05666~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~851~^0.175^4^0.002^~1~^~A~^^^1^0.168^0.178^3^0.167^0.183^~2, 3~^~04/01/2010~ -~05666~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~853~^0.014^4^0.000^~1~^~A~^^^1^0.014^0.015^3^0.014^0.015^~2, 3~^~04/01/2010~ -~05666~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05666~^~858~^0.031^4^0.000^~1~^~A~^^^1^0.030^0.032^3^0.030^0.032^~2, 3~^~04/01/2010~ -~05667~^~312~^0.161^4^0.005^~1~^~A~^^^1^0.148^0.173^3^0.144^0.178^~2, 3~^~04/01/2010~ -~05667~^~315~^0.011^4^0.002^~1~^~A~^^^1^0.008^0.018^3^0.004^0.018^~2, 3~^~04/01/2010~ -~05667~^~404~^0.080^4^0.000^~1~^~A~^^^1^0.080^0.080^^^^~2, 3~^~04/01/2010~ -~05667~^~405~^0.232^4^0.018^~1~^~A~^^^1^0.190^0.280^3^0.174^0.291^~2, 3~^~04/01/2010~ -~05667~^~406~^6.640^4^0.282^~1~^~A~^^^1^5.930^7.150^3^5.743^7.537^~2, 3~^~04/01/2010~ -~05667~^~410~^1.300^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~415~^0.471^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~501~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~502~^1.189^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~503~^1.160^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~504~^2.139^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~505~^2.318^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~506~^0.762^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~508~^1.010^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~509~^0.918^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~510~^1.201^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~511~^1.881^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~512~^0.767^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~513~^1.613^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~514~^2.502^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~515~^4.147^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~516~^1.418^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~517~^1.146^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~518~^1.101^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05667~^~521~^0.216^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~05667~^~605~^0.143^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~606~^2.958^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~05667~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~609~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05667~^~610~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05667~^~611~^0.015^4^0.004^~1~^~A~^^^1^0.008^0.025^3^0.004^0.027^~2, 3~^~04/01/2010~ -~05667~^~612~^0.093^4^0.003^~1~^~A~^^^1^0.085^0.102^3^0.082^0.104^~2, 3~^~04/01/2010~ -~05667~^~613~^2.012^4^0.037^~1~^~A~^^^1^1.924^2.102^3^1.894^2.131^~2, 3~^~04/01/2010~ -~05667~^~614~^0.773^4^0.025^~1~^~A~^^^1^0.709^0.830^3^0.692^0.855^~2, 3~^~04/01/2010~ -~05667~^~615~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.010^3^0.008^0.010^~2, 3~^~04/01/2010~ -~05667~^~617~^3.414^4^0.062^~1~^~AS~^^^1^3.298^3.545^3^3.217^3.611^~2, 3~^~04/01/2010~ -~05667~^~618~^3.096^4^0.075^~1~^~AS~^^^1^2.925^3.246^3^2.858^3.335^~2, 3~^~04/01/2010~ -~05667~^~619~^0.183^4^0.006^~1~^~AS~^^^1^0.175^0.200^3^0.165^0.201^~2, 3~^~04/01/2010~ -~05667~^~620~^0.167^4^0.007^~1~^~A~^^^1^0.156^0.188^3^0.144^0.190^~2, 3~^~04/01/2010~ -~05667~^~621~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.014^~2, 3~^~04/01/2010~ -~05667~^~624~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~04/01/2010~ -~05667~^~625~^0.017^4^0.001^~1~^~A~^^^1^0.016^0.019^3^0.015^0.019^~2, 3~^~04/01/2010~ -~05667~^~626~^0.379^4^0.030^~1~^~AS~^^^1^0.339^0.468^3^0.283^0.474^~2, 3~^~04/01/2010~ -~05667~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~628~^0.040^4^0.001^~1~^~A~^^^1^0.038^0.043^3^0.037^0.044^~2, 3~^~04/01/2010~ -~05667~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05667~^~630~^0.002^4^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2010~ -~05667~^~631~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.018^3^0.012^0.019^~2, 3~^~04/01/2010~ -~05667~^~645~^3.875^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~646~^3.545^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~652~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.015^3^0.012^0.016^~2, 3~^~04/01/2010~ -~05667~^~653~^0.027^4^0.002^~1~^~A~^^^1^0.023^0.030^3^0.023^0.032^~2, 3~^~04/01/2010~ -~05667~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~05667~^~662~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.009^~2, 3~^~04/01/2010~ -~05667~^~663~^0.097^4^0.007^~1~^~A~^^^1^0.082^0.117^3^0.074^0.120^~2, 3~^~04/01/2010~ -~05667~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~665~^0.038^4^0.005^~1~^~A~^^^1^0.032^0.052^3^0.024^0.053^~2, 3~^~04/01/2010~ -~05667~^~670~^0.019^4^0.001^~1~^~A~^^^1^0.018^0.021^3^0.017^0.021^~2, 3~^~04/01/2010~ -~05667~^~671~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.000^0.004^~1, 2, 3~^~04/01/2010~ -~05667~^~672~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.017^0.022^~2, 3~^~04/01/2010~ -~05667~^~673~^0.371^4^0.030^~1~^~A~^^^1^0.332^0.462^3^0.274^0.468^~2, 3~^~04/01/2010~ -~05667~^~674~^3.317^4^0.060^~1~^~A~^^^1^3.203^3.428^3^3.126^3.507^~2, 3~^~04/01/2010~ -~05667~^~675~^3.039^4^0.071^~1~^~A~^^^1^2.875^3.173^3^2.813^3.265^~2, 3~^~04/01/2010~ -~05667~^~676~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~685~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~04/01/2010~ -~05667~^~687~^0.020^4^0.001^~1~^~A~^^^1^0.017^0.022^3^0.016^0.024^~2, 3~^~04/01/2010~ -~05667~^~689~^0.016^4^0.001^~1~^~AS~^^^1^0.015^0.018^3^0.014^0.018^~2, 3~^~04/01/2010~ -~05667~^~693~^0.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05667~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~851~^0.174^4^0.005^~1~^~A~^^^1^0.165^0.189^3^0.157^0.191^~2, 3~^~04/01/2010~ -~05667~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05667~^~853~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.016^3^0.013^0.016^~2, 3~^~04/01/2010~ -~05667~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05667~^~858~^0.031^4^0.001^~1~^~A~^^^1^0.029^0.034^3^0.027^0.035^~2, 3~^~04/01/2010~ -~05668~^~312~^0.123^4^0.011^~1~^~A~^^^1^0.106^0.156^3^0.087^0.159^~2, 3~^~04/01/2010~ -~05668~^~315~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.008^0.011^~2, 3~^~04/01/2010~ -~05668~^~404~^0.067^4^0.006^~1~^~A~^^^1^0.050^0.080^3^0.048^0.087^~2, 3~^~04/01/2010~ -~05668~^~405~^0.177^4^0.007^~1~^~A~^^^1^0.160^0.190^3^0.154^0.201^~2, 3~^~04/01/2010~ -~05668~^~406~^5.075^4^0.362^~1~^~A~^^^1^4.320^5.980^3^3.924^6.226^~2, 3~^~04/01/2010~ -~05668~^~410~^1.100^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~415~^0.485^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~502~^0.776^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~503~^0.757^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~504~^1.396^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~505~^1.512^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~506~^0.497^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~508~^0.659^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~509~^0.599^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~510~^0.783^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~511~^1.227^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~512~^0.501^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~513~^1.053^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~514~^1.633^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~515~^2.706^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~516~^0.925^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~517~^0.748^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~518~^0.718^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~521~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05668~^~605~^0.181^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~606~^3.414^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2010~ -~05668~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~609~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.005^~1, 2, 3~^~04/01/2010~ -~05668~^~610~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05668~^~611~^0.017^4^0.000^~1~^~A~^^^1^0.016^0.018^3^0.016^0.018^~2, 3~^~04/01/2010~ -~05668~^~612~^0.122^4^0.007^~1~^~A~^^^1^0.108^0.134^3^0.099^0.144^~2, 3~^~04/01/2010~ -~05668~^~613~^2.280^4^0.147^~1~^~A~^^^1^1.972^2.605^3^1.813^2.746^~2, 3~^~04/01/2010~ -~05668~^~614~^0.914^4^0.054^~1~^~A~^^^1^0.795^1.008^3^0.742^1.086^~2, 3~^~04/01/2010~ -~05668~^~615~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.014^~2, 3~^~04/01/2010~ -~05668~^~617~^4.065^4^0.238^~1~^~AS~^^^1^3.632^4.523^3^3.308^4.822^~2, 3~^~04/01/2010~ -~05668~^~618~^3.108^4^0.165^~1~^~AS~^^^1^2.791^3.487^3^2.583^3.633^~2, 3~^~04/01/2010~ -~05668~^~619~^0.175^4^0.007^~1~^~AS~^^^1^0.160^0.187^3^0.154^0.197^~2, 3~^~04/01/2010~ -~05668~^~620~^0.110^4^0.001^~1~^~A~^^^1^0.109^0.112^3^0.107^0.112^~2, 3~^~04/01/2010~ -~05668~^~621~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.007^0.011^~2, 3~^~04/01/2010~ -~05668~^~624~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~04/01/2010~ -~05668~^~625~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.014^0.021^~2, 3~^~04/01/2010~ -~05668~^~626~^0.382^4^0.028^~1~^~AS~^^^1^0.337^0.462^3^0.292^0.473^~2, 3~^~04/01/2010~ -~05668~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~628~^0.048^4^0.003^~1~^~A~^^^1^0.042^0.054^3^0.040^0.057^~2, 3~^~04/01/2010~ -~05668~^~629~^0.012^4^0.002^~1~^~A~^^^1^0.007^0.016^3^0.005^0.018^~2, 3~^~04/01/2010~ -~05668~^~630~^0.002^4^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2010~ -~05668~^~631~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.012^3^0.010^0.012^~2, 3~^~04/01/2010~ -~05668~^~645~^4.551^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~646~^3.485^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~652~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.020^3^0.015^0.021^~2, 3~^~04/01/2010~ -~05668~^~653~^0.037^4^0.002^~1~^~A~^^^1^0.034^0.040^3^0.032^0.042^~2, 3~^~04/01/2010~ -~05668~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05668~^~662~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.008^0.011^~2, 3~^~04/01/2010~ -~05668~^~663~^0.133^4^0.008^~1~^~A~^^^1^0.115^0.151^3^0.107^0.159^~2, 3~^~04/01/2010~ -~05668~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~665~^0.038^4^0.001^~1~^~A~^^^1^0.035^0.040^3^0.034^0.042^~2, 3~^~04/01/2010~ -~05668~^~670~^0.024^4^0.001^~1~^~A~^^^1^0.022^0.027^3^0.020^0.028^~2, 3~^~04/01/2010~ -~05668~^~671~^0.012^4^0.003^~1~^~A~^^^1^0.006^0.018^3^0.003^0.020^~2, 3~^~04/01/2010~ -~05668~^~672~^0.023^4^0.002^~1~^~A~^^^1^0.020^0.027^3^0.018^0.028^~2, 3~^~04/01/2010~ -~05668~^~673~^0.373^4^0.028^~1~^~A~^^^1^0.327^0.451^3^0.283^0.462^~2, 3~^~04/01/2010~ -~05668~^~674~^3.932^4^0.231^~1~^~A~^^^1^3.517^4.382^3^3.198^4.666^~2, 3~^~04/01/2010~ -~05668~^~675~^3.046^4^0.163^~1~^~A~^^^1^2.734^3.422^3^2.528^3.564^~2, 3~^~04/01/2010~ -~05668~^~676~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~685~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.012^~2, 3~^~04/01/2010~ -~05668~^~687~^0.024^4^0.001^~1~^~A~^^^1^0.021^0.026^3^0.020^0.028^~2, 3~^~04/01/2010~ -~05668~^~689~^0.014^4^0.000^~1~^~AS~^^^1^0.013^0.014^3^0.013^0.015^~2, 3~^~04/01/2010~ -~05668~^~693~^0.143^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05668~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~851~^0.165^4^0.006^~1~^~A~^^^1^0.150^0.176^3^0.145^0.186^~2, 3~^~04/01/2010~ -~05668~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05668~^~853~^0.012^4^0.000^~1~^~A~^^^1^0.011^0.013^3^0.011^0.013^~2, 3~^~04/01/2010~ -~05668~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05668~^~858~^0.020^4^0.000^~1~^~A~^^^1^0.019^0.021^3^0.018^0.021^~2, 3~^~04/01/2010~ -~05669~^~312~^0.194^4^0.018^~1~^~A~^^^1^0.162^0.232^3^0.138^0.250^~2, 3~^~04/01/2010~ -~05669~^~315~^0.015^4^0.002^~1~^~A~^^^1^0.010^0.017^3^0.010^0.020^~2, 3~^~04/01/2010~ -~05669~^~404~^0.080^4^0.007^~1~^~A~^^^1^0.070^0.100^3^0.057^0.102^~2, 3~^~04/01/2010~ -~05669~^~405~^0.260^4^0.011^~1~^~A~^^^1^0.230^0.280^3^0.226^0.294^~2, 3~^~04/01/2010~ -~05669~^~406~^7.720^4^0.801^~1~^~A~^^^1^6.650^10.100^3^5.172^10.268^~2, 3~^~04/01/2010~ -~05669~^~410~^1.400^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~415~^0.462^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~501~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~502~^1.154^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~503~^1.126^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~504~^2.076^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~505~^2.250^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~506~^0.740^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~507~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~508~^0.980^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~509~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~510~^1.166^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~511~^1.826^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~512~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~513~^1.566^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~514~^2.429^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~515~^4.026^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~516~^1.376^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~517~^1.113^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~518~^1.069^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05669~^~521~^0.210^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~05669~^~605~^0.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~606~^4.572^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~607~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~04/01/2010~ -~05669~^~608~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05669~^~609~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.005^3^0.000^0.007^~1, 2, 3~^~04/01/2010~ -~05669~^~610~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~04/01/2010~ -~05669~^~611~^0.027^4^0.004^~1~^~A~^^^1^0.021^0.039^3^0.013^0.040^~2, 3~^~04/01/2010~ -~05669~^~612~^0.163^4^0.010^~1~^~A~^^^1^0.136^0.184^3^0.131^0.195^~2, 3~^~04/01/2010~ -~05669~^~613~^3.028^4^0.246^~1~^~A~^^^1^2.304^3.393^3^2.243^3.812^~2, 3~^~04/01/2010~ -~05669~^~614~^1.244^4^0.091^~1~^~A~^^^1^0.981^1.397^3^0.955^1.533^~2, 3~^~04/01/2010~ -~05669~^~615~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.019^3^0.014^0.020^~2, 3~^~04/01/2010~ -~05669~^~617~^5.421^4^0.358^~1~^~AS~^^^1^4.446^6.161^3^4.281^6.561^~2, 3~^~04/01/2010~ -~05669~^~618~^4.135^4^0.242^~1~^~AS~^^^1^3.642^4.647^3^3.367^4.904^~2, 3~^~04/01/2010~ -~05669~^~619~^0.227^4^0.008^~1~^~AS~^^^1^0.205^0.240^3^0.202^0.251^~2, 3~^~04/01/2010~ -~05669~^~620~^0.137^4^0.010^~1~^~A~^^^1^0.109^0.159^3^0.104^0.171^~2, 3~^~04/01/2010~ -~05669~^~621~^0.010^4^0.002^~1~^~A~^^^1^0.008^0.016^3^0.004^0.016^~2, 3~^~04/01/2010~ -~05669~^~624~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.006^3^0.003^0.006^~2, 3~^~04/01/2010~ -~05669~^~625~^0.023^4^0.002^~1~^~A~^^^1^0.019^0.027^3^0.017^0.029^~2, 3~^~04/01/2010~ -~05669~^~626~^0.485^4^0.046^~1~^~AS~^^^1^0.362^0.566^3^0.341^0.630^~2, 3~^~04/01/2010~ -~05669~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~05669~^~628~^0.066^4^0.004^~1~^~A~^^^1^0.057^0.077^3^0.053^0.080^~2, 3~^~04/01/2010~ -~05669~^~629~^0.020^4^0.006^~1~^~A~^^^1^0.005^0.030^3^0.002^0.039^~2, 3~^~04/01/2010~ -~05669~^~630~^0.003^4^0.000^~1~^~AS~^^^1^0.002^0.003^3^0.002^0.003^~2, 3~^~04/01/2010~ -~05669~^~631~^0.013^4^0.002^~1~^~A~^^^1^0.011^0.018^3^0.009^0.018^~2, 3~^~04/01/2010~ -~05669~^~645~^6.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~646~^4.624^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~652~^0.025^4^0.002^~1~^~A~^^^1^0.021^0.028^3^0.020^0.030^~2, 3~^~04/01/2010~ -~05669~^~653~^0.050^4^0.003^~1~^~A~^^^1^0.044^0.057^3^0.041^0.058^~2, 3~^~04/01/2010~ -~05669~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05669~^~662~^0.013^4^0.001^~1~^~A~^^^1^0.011^0.014^3^0.010^0.015^~2, 3~^~04/01/2010~ -~05669~^~663~^0.179^4^0.012^~1~^~A~^^^1^0.157^0.210^3^0.142^0.216^~2, 3~^~04/01/2010~ -~05669~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05669~^~665~^0.051^4^0.003^~1~^~A~^^^1^0.043^0.054^3^0.042^0.059^~2, 3~^~04/01/2010~ -~05669~^~670~^0.030^4^0.001^~1~^~A~^^^1^0.028^0.032^3^0.027^0.033^~2, 3~^~04/01/2010~ -~05669~^~671~^0.020^4^0.007^~1~^~A~^^^1^0.002^0.031^3^-0.001^0.041^~1, 2, 3~^~04/01/2010~ -~05669~^~672~^0.032^4^0.003^~1~^~A~^^^1^0.026^0.039^3^0.022^0.042^~2, 3~^~04/01/2010~ -~05669~^~673~^0.473^4^0.045^~1~^~A~^^^1^0.350^0.552^3^0.329^0.616^~2, 3~^~04/01/2010~ -~05669~^~674~^5.242^4^0.348^~1~^~A~^^^1^4.289^5.951^3^4.134^6.349^~2, 3~^~04/01/2010~ -~05669~^~675~^4.054^4^0.240^~1~^~A~^^^1^3.569^4.562^3^3.290^4.818^~2, 3~^~04/01/2010~ -~05669~^~676~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2010~ -~05669~^~685~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.011^0.014^~2, 3~^~04/01/2010~ -~05669~^~687~^0.032^4^0.002^~1~^~A~^^^1^0.028^0.036^3^0.026^0.038^~2, 3~^~04/01/2010~ -~05669~^~689~^0.018^4^0.001^~1~^~AS~^^^1^0.016^0.019^3^0.016^0.020^~2, 3~^~04/01/2010~ -~05669~^~693~^0.192^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05669~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05669~^~851~^0.214^4^0.007^~1~^~A~^^^1^0.193^0.226^3^0.191^0.237^~2, 3~^~04/01/2010~ -~05669~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05669~^~853~^0.016^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.013^0.018^~2, 3~^~04/01/2010~ -~05669~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05669~^~858~^0.024^4^0.002^~1~^~A~^^^1^0.019^0.027^3^0.019^0.030^~2, 3~^~04/01/2010~ -~05670~^~312~^0.256^4^0.009^~1~^~A~^^^1^0.238^0.278^3^0.228^0.284^~2, 3~^~04/01/2010~ -~05670~^~315~^0.016^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.014^0.018^~2, 3~^~04/01/2010~ -~05670~^~404~^0.067^4^0.005^~1~^~A~^^^1^0.060^0.080^3^0.052^0.083^~2, 3~^~04/01/2010~ -~05670~^~405~^0.232^4^0.009^~1~^~A~^^^1^0.210^0.250^3^0.205^0.260^~2, 3~^~04/01/2010~ -~05670~^~406~^6.632^4^0.586^~1~^~A~^^^1^5.440^8.220^3^4.767^8.498^~2, 3~^~04/01/2010~ -~05670~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~415~^0.383^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~501~^0.296^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~502~^1.192^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~503~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~504~^2.145^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~505~^2.324^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~506~^0.764^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~507~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~508~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~509~^0.921^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~510~^1.204^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~511~^1.886^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~512~^0.769^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~513~^1.618^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~514~^2.509^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~515~^4.159^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~516~^1.422^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~518~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~05670~^~521~^0.216^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~05670~^~605~^0.224^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~606~^4.127^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~607~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~04/01/2010~ -~05670~^~608~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^0.000^0.004^~1, 2, 3~^~04/01/2010~ -~05670~^~609~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.000^0.006^~1, 2, 3~^~04/01/2010~ -~05670~^~610~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2010~ -~05670~^~611~^0.021^4^0.002^~1~^~A~^^^1^0.018^0.027^3^0.015^0.028^~2, 3~^~04/01/2010~ -~05670~^~612~^0.146^4^0.006^~1~^~A~^^^1^0.131^0.162^3^0.126^0.167^~2, 3~^~04/01/2010~ -~05670~^~613~^2.729^4^0.170^~1~^~A~^^^1^2.239^3.022^3^2.189^3.268^~2, 3~^~04/01/2010~ -~05670~^~614~^1.129^4^0.065^~1~^~A~^^^1^0.956^1.260^3^0.923^1.334^~2, 3~^~04/01/2010~ -~05670~^~615~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.013^0.017^~2, 3~^~04/01/2010~ -~05670~^~617~^4.884^4^0.239^~1~^~AS~^^^1^4.281^5.449^3^4.123^5.646^~2, 3~^~04/01/2010~ -~05670~^~618~^3.719^4^0.164^~1~^~AS~^^^1^3.377^4.069^3^3.197^4.241^~2, 3~^~04/01/2010~ -~05670~^~619~^0.203^4^0.007^~1~^~AS~^^^1^0.183^0.216^3^0.180^0.225^~2, 3~^~04/01/2010~ -~05670~^~620~^0.126^4^0.012^~1~^~A~^^^1^0.101^0.158^3^0.089^0.164^~2, 3~^~04/01/2010~ -~05670~^~621~^0.009^4^0.002^~1~^~A~^^^1^0.006^0.015^3^0.003^0.015^~2, 3~^~04/01/2010~ -~05670~^~624~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2010~ -~05670~^~625~^0.021^4^0.001^~1~^~A~^^^1^0.018^0.023^3^0.017^0.025^~2, 3~^~04/01/2010~ -~05670~^~626~^0.442^4^0.031^~1~^~AS~^^^1^0.353^0.495^3^0.342^0.542^~2, 3~^~04/01/2010~ -~05670~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~05670~^~628~^0.060^4^0.003^~1~^~A~^^^1^0.054^0.069^3^0.049^0.071^~2, 3~^~04/01/2010~ -~05670~^~629~^0.021^4^0.006^~1~^~A~^^^1^0.005^0.029^3^0.003^0.040^~2, 3~^~04/01/2010~ -~05670~^~630~^0.003^4^0.000^~1~^~AS~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05670~^~631~^0.013^4^0.002^~1~^~A~^^^1^0.010^0.018^3^0.007^0.018^~2, 3~^~04/01/2010~ -~05670~^~645~^5.462^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~646~^4.167^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~652~^0.022^4^0.001^~1~^~A~^^^1^0.020^0.025^3^0.019^0.026^~2, 3~^~04/01/2010~ -~05670~^~653~^0.045^4^0.002^~1~^~A~^^^1^0.042^0.051^3^0.038^0.051^~2, 3~^~04/01/2010~ -~05670~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2010~ -~05670~^~662~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.012^3^0.010^0.012^~2, 3~^~04/01/2010~ -~05670~^~663~^0.163^4^0.008^~1~^~A~^^^1^0.151^0.187^3^0.138^0.189^~2, 3~^~04/01/2010~ -~05670~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05670~^~665~^0.049^4^0.001^~1~^~A~^^^1^0.047^0.052^3^0.046^0.053^~2, 3~^~04/01/2010~ -~05670~^~670~^0.030^4^0.000^~1~^~A~^^^1^0.029^0.031^3^0.029^0.031^~2, 3~^~04/01/2010~ -~05670~^~671~^0.022^4^0.007^~1~^~A~^^^1^0.002^0.036^3^-0.001^0.046^~1, 2, 3~^~04/01/2010~ -~05670~^~672~^0.030^4^0.003^~1~^~A~^^^1^0.025^0.036^3^0.021^0.039^~2, 3~^~04/01/2010~ -~05670~^~673~^0.431^4^0.031^~1~^~A~^^^1^0.342^0.483^3^0.332^0.529^~2, 3~^~04/01/2010~ -~05670~^~674~^4.721^4^0.232^~1~^~A~^^^1^4.130^5.262^3^3.982^5.460^~2, 3~^~04/01/2010~ -~05670~^~675~^3.640^4^0.165^~1~^~A~^^^1^3.294^3.989^3^3.115^4.164^~2, 3~^~04/01/2010~ -~05670~^~676~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~05670~^~685~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.012^3^0.010^0.013^~2, 3~^~04/01/2010~ -~05670~^~687~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.033^3^0.025^0.033^~2, 3~^~04/01/2010~ -~05670~^~689~^0.017^4^0.001^~1~^~AS~^^^1^0.015^0.018^3^0.015^0.019^~2, 3~^~04/01/2010~ -~05670~^~693~^0.175^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~05670~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2010~ -~05670~^~851~^0.191^4^0.007^~1~^~A~^^^1^0.173^0.205^3^0.170^0.213^~2, 3~^~04/01/2010~ -~05670~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~05670~^~853~^0.014^4^0.000^~1~^~A~^^^1^0.014^0.015^3^0.014^0.015^~2, 3~^~04/01/2010~ -~05670~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~05670~^~858~^0.022^4^0.002^~1~^~A~^^^1^0.018^0.028^3^0.015^0.029^~2, 3~^~04/01/2010~ -~05671~^~312~^0.063^5^0.004^~1~^~A~^^^1^0.049^0.071^4^0.052^0.073^~2, 3~^~04/01/2011~ -~05671~^~315~^0.018^5^0.001^~1~^~A~^^^1^0.014^0.021^4^0.015^0.021^~2, 3~^~04/01/2011~ -~05671~^~404~^0.088^5^0.002^~1~^~A~^^^1^0.080^0.090^4^0.082^0.094^~2, 3~^~04/01/2011~ -~05671~^~405~^0.180^5^0.005^~1~^~A~^^^1^0.160^0.190^4^0.165^0.195^~2, 3~^~04/01/2011~ -~05671~^~406~^5.046^5^0.058^~1~^~A~^^^1^4.890^5.240^4^4.885^5.207^~2, 3~^~04/01/2011~ -~05671~^~410~^1.100^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~415~^0.372^5^0.020^~1~^~A~^^^1^0.310^0.426^4^0.317^0.427^~2, 3~^~04/01/2011~ -~05671~^~501~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~502~^1.132^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~503~^1.143^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~504~^2.039^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~505~^2.258^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~506~^0.685^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~508~^0.956^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~509~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~510~^1.163^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~511~^1.671^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~512~^0.714^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~513~^1.433^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~514~^2.353^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~515~^3.921^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~516~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~517~^0.966^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~518~^1.002^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05671~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~606~^1.601^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~607~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~608~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~05671~^~609~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.003^4^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~05671~^~610~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~611~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05671~^~612~^0.030^5^0.001^~1~^~A~^^^1^0.025^0.032^4^0.026^0.033^~2, 3~^~04/01/2011~ -~05671~^~613~^1.197^5^0.036^~1~^~A~^^^1^1.087^1.299^4^1.098^1.296^~2, 3~^~04/01/2011~ -~05671~^~614~^0.346^5^0.009^~1~^~A~^^^1^0.324^0.367^4^0.322^0.370^~2, 3~^~04/01/2011~ -~05671~^~615~^0.004^5^0.000^~1~^~A~^^^1^0.003^0.005^4^0.003^0.005^~2, 3~^~04/01/2011~ -~05671~^~617~^1.961^5^0.066^~1~^~AS~^^^1^1.737^2.130^4^1.779^2.143^~2, 3~^~04/01/2011~ -~05671~^~618~^1.068^5^0.069^~1~^~AS~^^^1^0.955^1.312^4^0.877^1.260^~2, 3~^~04/01/2011~ -~05671~^~619~^0.055^5^0.005^~1~^~AS~^^^1^0.046^0.069^4^0.042^0.068^~2, 3~^~04/01/2011~ -~05671~^~620~^0.088^5^0.002^~1~^~A~^^^1^0.083^0.094^4^0.083^0.094^~2, 3~^~04/01/2011~ -~05671~^~621~^0.005^5^0.001^~1~^~A~^^^1^0.001^0.006^4^0.002^0.007^~1, 2, 3~^~04/01/2011~ -~05671~^~624~^0.007^5^0.000^~1~^~A~^^^1^0.006^0.008^4^0.006^0.008^~2, 3~^~04/01/2011~ -~05671~^~625~^0.012^5^0.001^~1~^~A~^^^1^0.009^0.014^4^0.009^0.014^~2, 3~^~04/01/2011~ -~05671~^~626~^0.374^5^0.024^~1~^~AS~^^^1^0.324^0.445^4^0.306^0.441^~2, 3~^~04/01/2011~ -~05671~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~628~^0.023^5^0.001^~1~^~A~^^^1^0.018^0.025^4^0.019^0.026^~2, 3~^~04/01/2011~ -~05671~^~629~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2011~ -~05671~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2011~ -~05671~^~631~^0.008^5^0.000^~1~^~A~^^^1^0.008^0.009^4^0.008^0.009^~2, 3~^~04/01/2011~ -~05671~^~645~^2.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~646~^1.280^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~652~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2011~ -~05671~^~653~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^4^0.005^0.007^~2, 3~^~04/01/2011~ -~05671~^~654~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~662~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05671~^~663~^0.018^5^0.001^~1~^~A~^^^1^0.015^0.021^4^0.015^0.022^~2, 3~^~04/01/2011~ -~05671~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~665~^0.008^5^0.001^~1~^~A~^^^1^0.007^0.011^4^0.006^0.011^~2, 3~^~04/01/2011~ -~05671~^~670~^0.006^5^0.001^~1~^~A~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~04/01/2011~ -~05671~^~671~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~05671~^~672~^0.010^5^0.001^~1~^~A~^^^1^0.009^0.013^4^0.008^0.012^~2, 3~^~04/01/2011~ -~05671~^~673~^0.371^5^0.024^~1~^~A~^^^1^0.322^0.441^4^0.305^0.437^~2, 3~^~04/01/2011~ -~05671~^~674~^1.942^5^0.065^~1~^~A~^^^1^1.722^2.109^4^1.762^2.122^~2, 3~^~04/01/2011~ -~05671~^~675~^1.054^5^0.068^~1~^~A~^^^1^0.944^1.296^4^0.865^1.244^~2, 3~^~04/01/2011~ -~05671~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~685~^0.010^5^0.001^~1~^~A~^^^1^0.009^0.012^4^0.009^0.012^~2, 3~^~04/01/2011~ -~05671~^~687~^0.003^5^0.001^~1~^~A~^^^1^0.002^0.005^4^0.002^0.005^~1, 2, 3~^~04/01/2011~ -~05671~^~689~^0.019^5^0.000^~1~^~AS~^^^1^0.018^0.020^4^0.018^0.020^~2, 3~^~04/01/2011~ -~05671~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05671~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~851~^0.045^5^0.004^~1~^~A~^^^1^0.035^0.059^4^0.032^0.057^~2, 3~^~04/01/2011~ -~05671~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05671~^~853~^0.019^5^0.000^~1~^~A~^^^1^0.018^0.020^4^0.018^0.020^~2, 3~^~04/01/2011~ -~05671~^~858~^0.022^5^0.001^~1~^~A~^^^1^0.020^0.024^4^0.020^0.024^~2, 3~^~04/01/2011~ -~05672~^~312~^0.049^4^0.008^~1~^~A~^^^1^0.032^0.063^3^0.024^0.075^~2, 3~^~04/01/2011~ -~05672~^~315~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.020^3^0.014^0.021^~2, 3~^~04/01/2011~ -~05672~^~404~^0.087^4^0.005^~1~^~A~^^^1^0.080^0.100^3^0.072^0.103^~2, 3~^~04/01/2011~ -~05672~^~405~^0.182^4^0.002^~1~^~A~^^^1^0.180^0.190^3^0.175^0.190^~2, 3~^~04/01/2011~ -~05672~^~406~^5.742^4^0.141^~1~^~A~^^^1^5.330^5.970^3^5.293^6.192^~2, 3~^~04/01/2011~ -~05672~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~415~^0.436^4^0.019^~1~^~A~^^^1^0.392^0.471^3^0.376^0.496^~2, 3~^~04/01/2011~ -~05672~^~501~^0.225^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~502~^1.034^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~503~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~504~^1.845^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~505~^2.012^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~506~^0.606^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~507~^0.259^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~508~^0.903^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~509~^0.809^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~510~^1.087^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~511~^1.725^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~512~^0.656^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~513~^1.542^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~514~^2.220^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~515~^3.651^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~516~^1.803^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~517~^1.283^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~518~^0.983^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05672~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~606~^2.346^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~607~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~608~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~609~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~05672~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~611~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.006^3^0.001^0.006^~1, 2, 3~^~04/01/2011~ -~05672~^~612~^0.045^4^0.003^~1~^~A~^^^1^0.041^0.054^3^0.035^0.055^~2, 3~^~04/01/2011~ -~05672~^~613~^1.781^4^0.070^~1~^~A~^^^1^1.639^1.968^3^1.560^2.003^~2, 3~^~04/01/2011~ -~05672~^~614~^0.483^4^0.012^~1~^~A~^^^1^0.471^0.519^3^0.445^0.521^~2, 3~^~04/01/2011~ -~05672~^~615~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2011~ -~05672~^~617~^2.879^4^0.136^~1~^~AS~^^^1^2.582^3.236^3^2.445^3.312^~2, 3~^~04/01/2011~ -~05672~^~618~^1.341^4^0.077^~1~^~AS~^^^1^1.178^1.500^3^1.097^1.586^~2, 3~^~04/01/2011~ -~05672~^~619~^0.064^4^0.006^~1~^~AS~^^^1^0.051^0.074^3^0.046^0.081^~2, 3~^~04/01/2011~ -~05672~^~620~^0.080^4^0.001^~1~^~A~^^^1^0.079^0.082^3^0.078^0.082^~2, 3~^~04/01/2011~ -~05672~^~621~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.006^~2, 3~^~04/01/2011~ -~05672~^~624~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.006^0.010^~2, 3~^~04/01/2011~ -~05672~^~625~^0.016^4^0.001^~1~^~A~^^^1^0.013^0.019^3^0.012^0.020^~2, 3~^~04/01/2011~ -~05672~^~626~^0.506^4^0.044^~1~^~AS~^^^1^0.384^0.593^3^0.366^0.646^~2, 3~^~04/01/2011~ -~05672~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~05672~^~628~^0.032^4^0.002^~1~^~A~^^^1^0.029^0.036^3^0.027^0.038^~2, 3~^~04/01/2011~ -~05672~^~629~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.010^~2, 3~^~04/01/2011~ -~05672~^~630~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.002^3^0.000^0.003^~2, 3~^~04/01/2011~ -~05672~^~631~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~04/01/2011~ -~05672~^~645~^3.449^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~646~^1.556^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~652~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.004^0.008^~2, 3~^~04/01/2011~ -~05672~^~653~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.010^~2, 3~^~04/01/2011~ -~05672~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~662~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.004^3^0.002^0.005^~1, 2, 3~^~04/01/2011~ -~05672~^~663~^0.029^4^0.003^~1~^~A~^^^1^0.024^0.038^3^0.019^0.039^~2, 3~^~04/01/2011~ -~05672~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~665~^0.013^4^0.002^~1~^~A~^^^1^0.011^0.018^3^0.009^0.018^~2, 3~^~04/01/2011~ -~05672~^~670~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.011^3^0.005^0.012^~2, 3~^~04/01/2011~ -~05672~^~671~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~04/01/2011~ -~05672~^~672~^0.010^4^0.001^~1~^~A~^^^1^0.010^0.012^3^0.009^0.012^~2, 3~^~04/01/2011~ -~05672~^~673~^0.502^4^0.044^~1~^~A~^^^1^0.382^0.589^3^0.364^0.641^~2, 3~^~04/01/2011~ -~05672~^~674~^2.850^4^0.134^~1~^~A~^^^1^2.554^3.198^3^2.423^3.276^~2, 3~^~04/01/2011~ -~05672~^~675~^1.319^4^0.075^~1~^~A~^^^1^1.161^1.480^3^1.079^1.560^~2, 3~^~04/01/2011~ -~05672~^~676~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~04/01/2011~ -~05672~^~685~^0.012^4^0.000^~1~^~A~^^^1^0.011^0.013^3^0.011^0.014^~2, 3~^~04/01/2011~ -~05672~^~687~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.009^3^0.005^0.010^~2, 3~^~04/01/2011~ -~05672~^~689~^0.020^4^0.001^~1~^~AS~^^^1^0.019^0.022^3^0.018^0.022^~2, 3~^~04/01/2011~ -~05672~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05672~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05672~^~851~^0.051^4^0.006^~1~^~A~^^^1^0.038^0.063^3^0.033^0.070^~2, 3~^~04/01/2011~ -~05672~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2011~ -~05672~^~853~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.017^0.022^~2, 3~^~04/01/2011~ -~05672~^~858~^0.019^4^0.000^~1~^~A~^^^1^0.018^0.020^3^0.017^0.020^~2, 3~^~04/01/2011~ -~05673~^~312~^0.040^4^0.001^~1~^~A~^^^1^0.039^0.043^3^0.037^0.044^~2, 3~^~04/01/2011~ -~05673~^~315~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.019^3^0.016^0.020^~2, 3~^~04/01/2011~ -~05673~^~404~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~04/01/2011~ -~05673~^~405~^0.055^4^0.003^~1~^~A~^^^1^0.050^0.060^3^0.046^0.064^~2, 3~^~04/01/2011~ -~05673~^~406~^3.400^4^0.070^~1~^~A~^^^1^3.190^3.480^3^3.177^3.623^~2, 3~^~04/01/2011~ -~05673~^~410~^0.790^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~415~^0.179^4^0.007^~1~^~A~^^^1^0.167^0.200^3^0.155^0.202^~2, 3~^~04/01/2011~ -~05673~^~501~^0.072^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~502~^0.463^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~503~^0.414^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~504~^0.805^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~505~^0.835^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~506~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~507~^0.121^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~508~^0.444^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~509~^0.345^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~510~^0.520^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~511~^1.040^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~512~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~513~^1.002^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~514~^1.090^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~515~^1.731^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~516~^1.880^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~517~^1.113^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~518~^0.532^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05673~^~605~^0.225^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~606~^11.914^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~607~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~609~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~04/01/2011~ -~05673~^~610~^0.005^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~04/01/2011~ -~05673~^~611~^0.022^4^0.005^~1~^~A~^^^1^0.014^0.033^3^0.008^0.037^~2, 3~^~04/01/2011~ -~05673~^~612~^0.247^4^0.015^~1~^~A~^^^1^0.213^0.280^3^0.200^0.295^~2, 3~^~04/01/2011~ -~05673~^~613~^9.391^4^0.247^~1~^~A~^^^1^8.723^9.818^3^8.604^10.178^~2, 3~^~04/01/2011~ -~05673~^~614~^2.121^4^0.062^~1~^~A~^^^1^1.957^2.240^3^1.925^2.318^~2, 3~^~04/01/2011~ -~05673~^~615~^0.028^4^0.001^~1~^~A~^^^1^0.026^0.030^3^0.025^0.031^~2, 3~^~04/01/2011~ -~05673~^~617~^15.597^4^0.470^~1~^~AS~^^^1^14.440^16.496^3^14.100^17.094^~2, 3~^~04/01/2011~ -~05673~^~618~^7.912^4^0.513^~1~^~AS~^^^1^7.024^9.384^3^6.281^9.544^~2, 3~^~04/01/2011~ -~05673~^~619~^0.381^4^0.038^~1~^~AS~^^^1^0.317^0.483^3^0.259^0.502^~2, 3~^~04/01/2011~ -~05673~^~620~^0.134^4^0.004^~1~^~A~^^^1^0.127^0.146^3^0.121^0.147^~2, 3~^~04/01/2011~ -~05673~^~621~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~04/01/2011~ -~05673~^~624~^0.023^4^0.002^~1~^~A~^^^1^0.019^0.028^3^0.017^0.029^~2, 3~^~04/01/2011~ -~05673~^~625~^0.089^4^0.005^~1~^~A~^^^1^0.081^0.099^3^0.074^0.105^~2, 3~^~04/01/2011~ -~05673~^~626~^2.720^4^0.179^~1~^~AS~^^^1^2.265^3.074^3^2.149^3.292^~2, 3~^~04/01/2011~ -~05673~^~627~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.006^0.011^~2, 3~^~04/01/2011~ -~05673~^~628~^0.247^4^0.010^~1~^~A~^^^1^0.221^0.268^3^0.216^0.278^~2, 3~^~04/01/2011~ -~05673~^~629~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~04/01/2011~ -~05673~^~630~^0.005^4^0.000^~1~^~AS~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2011~ -~05673~^~631~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.013^0.015^~2, 3~^~04/01/2011~ -~05673~^~645~^18.697^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~646~^8.615^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~652~^0.029^4^0.003^~1~^~A~^^^1^0.023^0.034^3^0.021^0.037^~2, 3~^~04/01/2011~ -~05673~^~653~^0.038^4^0.013^~1~^~A~^^^1^0.001^0.058^3^-0.004^0.081^~1, 2, 3~^~04/01/2011~ -~05673~^~654~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05673~^~662~^0.019^4^0.002^~1~^~A~^^^1^0.016^0.025^3^0.013^0.026^~2, 3~^~04/01/2011~ -~05673~^~663~^0.138^4^0.018^~1~^~A~^^^1^0.106^0.175^3^0.082^0.195^~2, 3~^~04/01/2011~ -~05673~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~665~^0.067^4^0.005^~1~^~A~^^^1^0.057^0.079^3^0.051^0.084^~2, 3~^~04/01/2011~ -~05673~^~670~^0.055^4^0.004^~1~^~A~^^^1^0.046^0.064^3^0.043^0.066^~2, 3~^~04/01/2011~ -~05673~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~672~^0.048^4^0.002^~1~^~A~^^^1^0.043^0.052^3^0.042^0.054^~2, 3~^~04/01/2011~ -~05673~^~673~^2.701^4^0.179^~1~^~A~^^^1^2.246^3.057^3^2.131^3.271^~2, 3~^~04/01/2011~ -~05673~^~674~^15.459^4^0.468^~1~^~A~^^^1^14.330^16.390^3^13.970^16.947^~2, 3~^~04/01/2011~ -~05673~^~675~^7.790^4^0.507^~1~^~A~^^^1^6.921^9.250^3^6.177^9.404^~2, 3~^~04/01/2011~ -~05673~^~676~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2011~ -~05673~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~687~^0.038^4^0.004^~1~^~A~^^^1^0.031^0.047^3^0.026^0.051^~2, 3~^~04/01/2011~ -~05673~^~689~^0.068^4^0.002^~1~^~AS~^^^1^0.063^0.072^3^0.062^0.075^~2, 3~^~04/01/2011~ -~05673~^~693~^0.157^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~695~^0.067^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05673~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05673~^~851~^0.381^4^0.038^~1~^~A~^^^1^0.317^0.483^3^0.259^0.502^~2, 3~^~04/01/2011~ -~05673~^~852~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~04/01/2011~ -~05673~^~853~^0.066^4^0.002^~1~^~A~^^^1^0.061^0.070^3^0.060^0.072^~2, 3~^~04/01/2011~ -~05673~^~858~^0.031^4^0.001^~1~^~A~^^^1^0.028^0.035^3^0.026^0.036^~2, 3~^~04/01/2011~ -~05674~^~312~^0.038^4^0.004^~1~^~A~^^^1^0.030^0.048^3^0.026^0.050^~2, 3~^~04/01/2011~ -~05674~^~315~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.016^3^0.012^0.017^~2, 3~^~04/01/2011~ -~05674~^~404~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~04/01/2011~ -~05674~^~405~^0.032^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.025^0.040^~2, 3~^~04/01/2011~ -~05674~^~406~^2.565^4^0.065^~1~^~A~^^^1^2.420^2.730^3^2.358^2.772^~2, 3~^~04/01/2011~ -~05674~^~410~^0.610^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~415~^0.116^4^0.004^~1~^~A~^^^1^0.106^0.127^3^0.103^0.130^~2, 3~^~04/01/2011~ -~05674~^~501~^0.047^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~502~^0.304^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~503~^0.271^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~504~^0.528^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~505~^0.548^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~507~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~508~^0.291^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~509~^0.226^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~510~^0.341^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~511~^0.682^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~512~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~513~^0.657^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~514~^0.714^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~515~^1.135^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~516~^1.232^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~517~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~518~^0.348^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05674~^~605~^0.229^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~606~^12.102^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~607~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05674~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05674~^~609~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2011~ -~05674~^~610~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.005^0.006^~2, 3~^~04/01/2011~ -~05674~^~611~^0.021^4^0.004^~1~^~A~^^^1^0.012^0.031^3^0.007^0.035^~2, 3~^~04/01/2011~ -~05674~^~612~^0.253^4^0.012^~1~^~A~^^^1^0.219^0.277^3^0.214^0.292^~2, 3~^~04/01/2011~ -~05674~^~613~^9.510^4^0.352^~1~^~A~^^^1^8.833^10.500^3^8.390^10.631^~2, 3~^~04/01/2011~ -~05674~^~614~^2.171^4^0.035^~1~^~A~^^^1^2.072^2.234^3^2.060^2.282^~2, 3~^~04/01/2011~ -~05674~^~615~^0.029^4^0.000^~1~^~A~^^^1^0.028^0.030^3^0.028^0.030^~2, 3~^~04/01/2011~ -~05674~^~617~^15.947^4^0.784^~1~^~AS~^^^1^14.395^18.130^3^13.452^18.442^~2, 3~^~04/01/2011~ -~05674~^~618~^8.288^4^0.343^~1~^~AS~^^^1^7.793^9.303^3^7.197^9.380^~2, 3~^~04/01/2011~ -~05674~^~619~^0.441^4^0.052^~1~^~AS~^^^1^0.343^0.565^3^0.277^0.605^~2, 3~^~04/01/2011~ -~05674~^~620~^0.133^4^0.005^~1~^~A~^^^1^0.124^0.142^3^0.119^0.148^~2, 3~^~04/01/2011~ -~05674~^~621~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~04/01/2011~ -~05674~^~624~^0.025^4^0.002^~1~^~A~^^^1^0.022^0.028^3^0.020^0.030^~2, 3~^~04/01/2011~ -~05674~^~625~^0.091^4^0.005^~1~^~A~^^^1^0.083^0.105^3^0.076^0.107^~2, 3~^~04/01/2011~ -~05674~^~626~^2.678^4^0.276^~1~^~AS~^^^1^1.988^3.338^3^1.801^3.556^~2, 3~^~04/01/2011~ -~05674~^~627~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.010^~2, 3~^~04/01/2011~ -~05674~^~628~^0.214^4^0.033^~1~^~A~^^^1^0.159^0.294^3^0.108^0.320^~2, 3~^~04/01/2011~ -~05674~^~629~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~04/01/2011~ -~05674~^~630~^0.005^4^0.000^~1~^~AS~^^^1^0.005^0.006^3^0.005^0.006^~2, 3~^~04/01/2011~ -~05674~^~631~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.016^3^0.012^0.017^~2, 3~^~04/01/2011~ -~05674~^~645~^18.975^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~646~^9.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~652~^0.027^4^0.003^~1~^~A~^^^1^0.022^0.034^3^0.019^0.036^~2, 3~^~04/01/2011~ -~05674~^~653~^0.051^4^0.003^~1~^~A~^^^1^0.046^0.057^3^0.042^0.060^~2, 3~^~04/01/2011~ -~05674~^~654~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.005^~2, 3~^~04/01/2011~ -~05674~^~662~^0.018^4^0.003^~1~^~A~^^^1^0.011^0.025^3^0.009^0.028^~2, 3~^~04/01/2011~ -~05674~^~663~^0.143^4^0.013^~1~^~A~^^^1^0.112^0.173^3^0.102^0.183^~2, 3~^~04/01/2011~ -~05674~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05674~^~665~^0.068^4^0.004^~1~^~A~^^^1^0.056^0.076^3^0.054^0.082^~2, 3~^~04/01/2011~ -~05674~^~670~^0.056^4^0.003^~1~^~A~^^^1^0.050^0.063^3^0.046^0.066^~2, 3~^~04/01/2011~ -~05674~^~671~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~05674~^~672~^0.051^4^0.003^~1~^~A~^^^1^0.047^0.059^3^0.042^0.060^~2, 3~^~04/01/2011~ -~05674~^~673~^2.660^4^0.274^~1~^~A~^^^1^1.977^3.318^3^1.788^3.532^~2, 3~^~04/01/2011~ -~05674~^~674~^15.804^4^0.787^~1~^~A~^^^1^14.245^17.994^3^13.299^18.309^~2, 3~^~04/01/2011~ -~05674~^~675~^8.165^4^0.343^~1~^~A~^^^1^7.658^9.179^3^7.072^9.257^~2, 3~^~04/01/2011~ -~05674~^~676~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.005^0.006^~2, 3~^~04/01/2011~ -~05674~^~685~^0.044^4^0.025^~1~^~A~^^^1^0.000^0.091^3^-0.037^0.125^~1, 2, 3~^~04/01/2011~ -~05674~^~687~^0.039^4^0.003^~1~^~A~^^^1^0.031^0.046^3^0.029^0.049^~2, 3~^~04/01/2011~ -~05674~^~689~^0.072^4^0.001^~1~^~AS~^^^1^0.070^0.075^3^0.069^0.075^~2, 3~^~04/01/2011~ -~05674~^~693~^0.161^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05674~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05674~^~851~^0.397^4^0.030^~1~^~A~^^^1^0.343^0.480^3^0.303^0.491^~2, 3~^~04/01/2011~ -~05674~^~852~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05674~^~853~^0.069^4^0.001^~1~^~A~^^^1^0.066^0.073^3^0.064^0.074^~2, 3~^~04/01/2011~ -~05674~^~858~^0.030^4^0.001^~1~^~A~^^^1^0.028^0.033^3^0.027^0.033^~2, 3~^~04/01/2011~ -~05675~^~312~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.051^3^0.037^0.054^~2, 3~^~04/01/2011~ -~05675~^~315~^0.020^4^0.000^~1~^~A~^^^1^0.019^0.021^3^0.018^0.021^~2, 3~^~04/01/2011~ -~05675~^~404~^0.052^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.045^0.060^~2, 3~^~04/01/2011~ -~05675~^~405~^0.062^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.055^0.070^~2, 3~^~04/01/2011~ -~05675~^~406~^3.917^4^0.089^~1~^~A~^^^1^3.750^4.160^3^3.635^4.200^~2, 3~^~04/01/2011~ -~05675~^~410~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~415~^0.197^4^0.006^~1~^~A~^^^1^0.183^0.209^3^0.177^0.217^~2, 3~^~04/01/2011~ -~05675~^~501~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~502~^0.525^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~503~^0.469^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~504~^0.913^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~505~^0.947^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~506~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~507~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~508~^0.504^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~509~^0.392^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~510~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~511~^1.180^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~512~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~513~^1.137^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~514~^1.236^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~515~^1.964^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~516~^2.132^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~517~^1.262^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~518~^0.603^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~05675~^~605~^0.246^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~606~^12.146^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~607~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2011~ -~05675~^~608~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2011~ -~05675~^~609~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.006^~2, 3~^~04/01/2011~ -~05675~^~610~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.006^0.007^~2, 3~^~04/01/2011~ -~05675~^~611~^0.023^4^0.005^~1~^~A~^^^1^0.013^0.036^3^0.007^0.040^~2, 3~^~04/01/2011~ -~05675~^~612~^0.257^4^0.017^~1~^~A~^^^1^0.220^0.300^3^0.205^0.310^~2, 3~^~04/01/2011~ -~05675~^~613~^9.564^4^0.560^~1~^~A~^^^1^8.385^10.684^3^7.781^11.348^~2, 3~^~04/01/2011~ -~05675~^~614~^2.151^4^0.121^~1~^~A~^^^1^1.942^2.433^3^1.767^2.535^~2, 3~^~04/01/2011~ -~05675~^~615~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.031^3^0.025^0.033^~2, 3~^~04/01/2011~ -~05675~^~617~^15.975^4^1.028^~1~^~AS~^^^1^13.573^18.072^3^12.704^19.246^~2, 3~^~04/01/2011~ -~05675~^~618~^8.065^4^0.393^~1~^~AS~^^^1^7.002^8.747^3^6.816^9.314^~2, 3~^~04/01/2011~ -~05675~^~619~^0.385^4^0.034^~1~^~AS~^^^1^0.326^0.459^3^0.276^0.495^~2, 3~^~04/01/2011~ -~05675~^~620~^0.143^4^0.006^~1~^~A~^^^1^0.134^0.161^3^0.124^0.163^~2, 3~^~04/01/2011~ -~05675~^~621~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~04/01/2011~ -~05675~^~624~^0.024^4^0.002^~1~^~A~^^^1^0.018^0.029^3^0.017^0.032^~2, 3~^~04/01/2011~ -~05675~^~625~^0.094^4^0.006^~1~^~A~^^^1^0.078^0.107^3^0.074^0.114^~2, 3~^~04/01/2011~ -~05675~^~626~^2.817^4^0.275^~1~^~AS~^^^1^2.094^3.424^3^1.943^3.692^~2, 3~^~04/01/2011~ -~05675~^~627~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.011^~2, 3~^~04/01/2011~ -~05675~^~628~^0.253^4^0.016^~1~^~A~^^^1^0.220^0.291^3^0.202^0.305^~2, 3~^~04/01/2011~ -~05675~^~629~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.007^0.009^~2, 3~^~04/01/2011~ -~05675~^~630~^0.005^4^0.000^~1~^~AS~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2011~ -~05675~^~631~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.014^0.017^~2, 3~^~04/01/2011~ -~05675~^~645~^19.185^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~646~^8.787^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~652~^0.031^4^0.003^~1~^~A~^^^1^0.024^0.038^3^0.022^0.040^~2, 3~^~04/01/2011~ -~05675~^~653~^0.050^4^0.005^~1~^~A~^^^1^0.041^0.065^3^0.034^0.067^~2, 3~^~04/01/2011~ -~05675~^~654~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~05675~^~662~^0.020^4^0.002^~1~^~A~^^^1^0.018^0.027^3^0.014^0.027^~2, 3~^~04/01/2011~ -~05675~^~663~^0.144^4^0.017^~1~^~A~^^^1^0.119^0.194^3^0.089^0.199^~2, 3~^~04/01/2011~ -~05675~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05675~^~665~^0.081^4^0.005^~1~^~A~^^^1^0.072^0.094^3^0.065^0.098^~2, 3~^~04/01/2011~ -~05675~^~670~^0.056^4^0.006^~1~^~A~^^^1^0.046^0.074^3^0.036^0.077^~2, 3~^~04/01/2011~ -~05675~^~671~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~04/01/2011~ -~05675~^~672~^0.048^4^0.001^~1~^~A~^^^1^0.044^0.050^3^0.044^0.053^~2, 3~^~04/01/2011~ -~05675~^~673~^2.797^4^0.274^~1~^~A~^^^1^2.076^3.405^3^1.924^3.670^~2, 3~^~04/01/2011~ -~05675~^~674~^15.830^4^1.025^~1~^~A~^^^1^13.432^17.953^3^12.569^19.092^~2, 3~^~04/01/2011~ -~05675~^~675~^7.927^4^0.391^~1~^~A~^^^1^6.868^8.627^3^6.682^9.172^~2, 3~^~04/01/2011~ -~05675~^~676~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~04/01/2011~ -~05675~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05675~^~687~^0.040^4^0.004^~1~^~A~^^^1^0.032^0.049^3^0.028^0.051^~2, 3~^~04/01/2011~ -~05675~^~689~^0.071^4^0.003^~1~^~AS~^^^1^0.065^0.079^3^0.060^0.082^~2, 3~^~04/01/2011~ -~05675~^~693~^0.165^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~05675~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~05675~^~851~^0.385^4^0.034^~1~^~A~^^^1^0.326^0.459^3^0.276^0.495^~2, 3~^~04/01/2011~ -~05675~^~852~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.001^0.005^~1, 2, 3~^~04/01/2011~ -~05675~^~853~^0.068^4^0.003^~1~^~A~^^^1^0.062^0.076^3^0.058^0.078^~2, 3~^~04/01/2011~ -~05675~^~858~^0.032^4^0.002^~1~^~A~^^^1^0.029^0.038^3^0.026^0.039^~2, 3~^~04/01/2011~ -~05676~^~312~^0.060^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~315~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~404~^0.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~405~^0.164^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~406~^4.832^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~410~^1.060^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~415~^0.347^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~501~^0.244^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~502~^1.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~503~^1.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~504~^1.879^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~505~^2.073^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~506~^0.628^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~507~^0.259^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~508~^0.890^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~509~^0.828^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~510~^1.080^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~511~^1.589^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~512~^0.660^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~513~^1.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~514~^2.189^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~515~^3.637^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~516~^1.199^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~517~^0.985^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~518~^0.941^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~605~^0.055^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~606~^2.939^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~608~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~612~^0.058^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~613~^2.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~614~^0.576^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~617~^3.731^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~618~^1.957^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~619~^0.097^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~620~^0.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~625~^0.022^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~626~^0.678^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~628~^0.052^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~645~^4.493^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~646~^2.232^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~652~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~653~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~663~^0.034^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~665~^0.016^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~670~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~672~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~673~^0.673^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~674~^3.697^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~675~^1.929^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~685~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~687~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~689~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05676~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~851~^0.088^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~853~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05676~^~858~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~312~^0.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~315~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~404~^0.080^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~405~^0.157^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~406~^5.276^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~410~^1.118^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~415~^0.385^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~501~^0.195^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~502~^0.920^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~503~^0.894^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~504~^1.638^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~505~^1.777^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~506~^0.535^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~507~^0.232^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~508~^0.811^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~509~^0.716^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~510~^0.974^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~511~^1.589^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~512~^0.585^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~513~^1.434^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~514~^1.994^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~515~^3.268^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~516~^1.819^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~517~^1.249^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~518~^0.893^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~605~^0.082^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~606~^4.253^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~608~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~609~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~612~^0.085^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~613~^3.298^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~614~^0.810^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~617~^5.414^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~618~^2.651^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~619~^0.127^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~620~^0.091^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~624~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~626~^0.947^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~627~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~628~^0.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~629~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~630~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~645~^6.488^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~646~^2.963^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~653~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~663~^0.051^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~665~^0.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~671~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~673~^0.941^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~674~^5.363^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~675~^2.609^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~685~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~687~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~689~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~693~^0.057^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~695~^0.024^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~05677~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~851~^0.117^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~853~^0.029^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05677~^~858~^0.021^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~05678~^~312~^0.061^4^0.004^~1~^~A~^^^2^0.050^0.075^2^0.043^0.080^~2, 3~^~02/01/2013~ -~05678~^~315~^0.010^4^0.001^~1~^~A~^^^2^0.007^0.016^2^0.008^0.012^~2, 3~^~02/01/2013~ -~05678~^~404~^0.098^3^0.006^~1~^~A~^^^2^0.090^0.110^1^0.026^0.169^~2, 3~^~02/01/2013~ -~05678~^~405~^0.243^3^0.027^~1~^~A~^^^2^0.170^0.320^1^-0.096^0.582^~2, 3~^~02/01/2013~ -~05678~^~406~^4.940^3^0.043^~1~^~A~^^^2^4.810^5.070^1^4.389^5.491^~2, 3~^~02/01/2013~ -~05678~^~410~^1.200^2^^~1~^~A~^^^1^1.100^1.300^1^^^^~02/01/2013~ -~05678~^~415~^0.385^3^0.003^~1~^~A~^^^2^0.348^0.408^1^0.352^0.419^~2, 3~^~02/01/2013~ -~05678~^~501~^0.198^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~502~^0.828^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~503~^0.836^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~504~^1.492^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~505~^1.652^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~506~^0.501^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~507~^0.204^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~508~^0.700^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~509~^0.658^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~510~^0.851^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~511~^1.222^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~513~^1.049^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~514~^1.722^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~515~^2.868^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~516~^0.803^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~517~^0.706^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~518~^0.733^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05678~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05678~^~606~^0.954^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~607~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05678~^~608~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05678~^~609~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05678~^~610~^0.005^3^0.001^~1~^~A~^^^2^0.000^0.009^1^-0.005^0.015^~1, 2, 3~^~02/01/2013~ -~05678~^~611~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.005^1^0.000^0.008^~2, 3~^~02/01/2013~ -~05678~^~612~^0.018^3^0.001^~1~^~A~^^^2^0.017^0.020^1^0.004^0.033^~2, 3~^~06/01/2011~ -~05678~^~613~^0.682^3^0.043^~1~^~A~^^^2^0.608^0.736^1^0.138^1.227^~2, 3~^~02/01/2013~ -~05678~^~614~^0.222^3^0.012^~1~^~A~^^^2^0.209^0.245^1^0.070^0.375^~2, 3~^~02/01/2013~ -~05678~^~615~^0.003^3^0.000^~1~^~A~^^^2^0.002^0.004^^^^~1, 2, 3~^~02/01/2013~ -~05678~^~617~^1.069^3^0.075^~1~^~AS~^^^2^0.926^1.150^1^0.121^2.018^~2, 3~^~02/01/2013~ -~05678~^~618~^0.618^3^0.010^~1~^~AS~^^^2^0.580^0.664^1^0.493^0.743^~2, 3~^~02/01/2013~ -~05678~^~619~^0.028^3^0.000^~1~^~AS~^^^2^0.024^0.036^1^0.026^0.030^~2, 3~^~02/01/2013~ -~05678~^~620~^0.087^3^0.004^~1~^~A~^^^2^0.080^0.091^1^0.038^0.136^~2, 3~^~02/01/2013~ -~05678~^~621~^0.006^3^0.001^~1~^~A~^^^2^0.005^0.008^1^-0.007^0.019^~2, 3~^~02/01/2013~ -~05678~^~624~^0.009^3^0.004^~1~^~A~^^^2^0.005^0.016^1^-0.036^0.054^~2, 3~^~02/01/2013~ -~05678~^~625~^0.006^3^0.001^~1~^~A~^^^2^0.005^0.007^1^-0.001^0.013^~2, 3~^~02/01/2013~ -~05678~^~626~^0.191^3^0.020^~1~^~AS~^^^2^0.139^0.233^1^-0.068^0.449^~2, 3~^~02/01/2013~ -~05678~^~627~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05678~^~628~^0.018^3^0.001^~1~^~A~^^^2^0.015^0.021^1^0.008^0.029^~2, 3~^~02/01/2013~ -~05678~^~629~^0.003^3^0.000^~1~^~A~^^^2^0.002^0.004^1^0.001^0.005^~1, 2, 3~^~02/01/2013~ -~05678~^~630~^0.000^3^0.000^~1~^~AS~^^^2^0.000^0.001^1^-0.004^0.005^~2, 3~^~06/01/2011~ -~05678~^~631~^0.008^3^0.001^~1~^~A~^^^2^0.007^0.010^1^-0.004^0.021^~2, 3~^~06/01/2011~ -~05678~^~645~^1.290^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~646~^0.802^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05678~^~652~^0.003^3^0.000^~1~^~A~^^^2^0.002^0.004^1^0.001^0.005^~1, 2, 3~^~02/01/2013~ -~05678~^~653~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.004^^^^~2, 3~^~02/01/2013~ -~05678~^~654~^0.002^3^0.000^~1~^~A~^^^2^0.001^0.003^1^0.000^0.004^~1, 2, 3~^~02/01/2013~ -~05678~^~662~^0.001^3^0.000^~1~^~A~^^^2^0.000^0.002^1^-0.003^0.005^~1, 2, 3~^~02/01/2013~ -~05678~^~663~^0.014^3^0.000^~1~^~A~^^^2^0.013^0.014^1^0.013^0.014^~2, 3~^~02/01/2013~ -~05678~^~664~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05678~^~665~^0.006^3^0.000^~1~^~A~^^^2^0.006^0.007^1^0.000^0.013^~2, 3~^~06/01/2011~ -~05678~^~670~^0.003^3^0.000^~1~^~A~^^^2^0.003^0.004^^^^~2, 3~^~02/01/2013~ -~05678~^~671~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.004^1^0.000^0.005^~1, 2, 3~^~02/01/2013~ -~05678~^~672~^0.009^3^0.001^~1~^~A~^^^2^0.008^0.011^1^0.001^0.018^~2, 3~^~02/01/2013~ -~05678~^~673~^0.190^3^0.020^~1~^~A~^^^2^0.139^0.231^1^-0.065^0.444^~2, 3~^~02/01/2013~ -~05678~^~674~^1.056^3^0.075^~1~^~A~^^^2^0.912^1.136^1^0.107^2.004^~2, 3~^~02/01/2013~ -~05678~^~675~^0.608^3^0.009^~1~^~A~^^^2^0.571^0.654^1^0.489^0.727^~2, 3~^~02/01/2013~ -~05678~^~676~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.004^0.005^~1, 2, 3~^~06/01/2011~ -~05678~^~685~^0.002^3^0.000^~1~^~A~^^^2^0.000^0.007^^^^~1, 2, 3~^~02/01/2013~ -~05678~^~687~^0.003^3^0.000^~1~^~A~^^^2^0.003^0.003^^^^~2, 3~^~06/01/2011~ -~05678~^~689~^0.018^3^0.001^~1~^~AS~^^^2^0.015^0.021^1^0.003^0.033^~2, 3~^~02/01/2013~ -~05678~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05678~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05678~^~697~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05678~^~851~^0.025^3^0.000^~1~^~A~^^^2^0.024^0.029^1^0.023^0.028^~2, 3~^~02/01/2013~ -~05678~^~852~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.004^0.005^~1, 2, 3~^~06/01/2011~ -~05678~^~853~^0.018^3^0.001^~1~^~A~^^^2^0.015^0.020^1^0.007^0.028^~2, 3~^~02/01/2013~ -~05678~^~858~^0.024^3^0.000^~1~^~A~^^^2^0.021^0.026^^^^~2, 3~^~02/01/2013~ -~05679~^~312~^0.080^4^0.005^~1~^~A~^^^2^0.053^0.100^2^0.061^0.100^~2, 3~^~02/01/2013~ -~05679~^~315~^0.009^4^0.000^~1~^~A~^^^2^0.007^0.013^2^0.008^0.011^~2, 3~^~02/01/2013~ -~05679~^~404~^0.102^3^0.002^~1~^~A~^^^2^0.090^0.110^1^0.081^0.123^~2, 3~^~02/01/2013~ -~05679~^~405~^0.297^3^0.023^~1~^~A~^^^2^0.180^0.390^1^0.000^0.593^~2, 3~^~02/01/2013~ -~05679~^~406~^5.913^3^0.097^~1~^~A~^^^2^5.330^6.350^1^4.685^7.142^~2, 3~^~02/01/2013~ -~05679~^~410~^1.300^2^^~1~^~A~^^^1^1.300^1.300^^^^^~02/01/2013~ -~05679~^~415~^0.413^3^0.003^~1~^~A~^^^2^0.386^0.431^1^0.371^0.455^~2, 3~^~02/01/2013~ -~05679~^~501~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~502~^1.198^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~503~^1.210^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~504~^2.159^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~505~^2.390^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~506~^0.725^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~508~^1.012^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~509~^0.952^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~510~^1.232^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~511~^1.769^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~512~^0.756^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~513~^1.518^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~514~^2.492^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~515~^4.151^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~516~^1.162^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~518~^1.060^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05679~^~605~^0.028^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~606~^1.438^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~607~^0.001^3^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~608~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~609~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~610~^0.005^3^0.000^~1~^~A~^^^2^0.000^0.007^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~611~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.004^^^^~2, 3~^~02/01/2013~ -~05679~^~612~^0.027^3^0.001^~1~^~A~^^^2^0.024^0.030^1^0.015^0.039^~2, 3~^~02/01/2013~ -~05679~^~613~^1.058^3^0.021^~1~^~A~^^^2^1.008^1.115^1^0.792^1.325^~2, 3~^~02/01/2013~ -~05679~^~614~^0.321^3^0.000^~1~^~A~^^^2^0.280^0.342^1^0.316^0.326^~2, 3~^~02/01/2013~ -~05679~^~615~^0.004^3^0.000^~1~^~A~^^^2^0.002^0.006^1^0.000^0.009^~1, 2, 3~^~02/01/2013~ -~05679~^~617~^1.677^3^0.032^~1~^~AS~^^^2^1.638^1.733^1^1.275^2.079^~2, 3~^~02/01/2013~ -~05679~^~618~^0.965^3^0.000^~1~^~AS~^^^2^0.885^1.005^1^0.961^0.968^~2, 3~^~02/01/2013~ -~05679~^~619~^0.044^3^0.001^~1~^~AS~^^^2^0.041^0.048^1^0.036^0.052^~2, 3~^~02/01/2013~ -~05679~^~620~^0.109^3^0.002^~1~^~A~^^^2^0.082^0.125^1^0.087^0.131^~2, 3~^~02/01/2013~ -~05679~^~621~^0.006^3^0.000^~1~^~A~^^^2^0.005^0.007^1^0.002^0.010^~2, 3~^~02/01/2013~ -~05679~^~624~^0.007^3^0.002^~1~^~A~^^^2^0.004^0.009^1^-0.014^0.027^~2, 3~^~06/01/2011~ -~05679~^~625~^0.010^3^0.000^~1~^~A~^^^2^0.009^0.010^1^0.005^0.014^~2, 3~^~06/01/2011~ -~05679~^~626~^0.307^3^0.019^~1~^~AS~^^^2^0.261^0.343^1^0.070^0.544^~2, 3~^~02/01/2013~ -~05679~^~627~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05679~^~628~^0.028^3^0.001^~1~^~A~^^^2^0.019^0.034^1^0.015^0.041^~2, 3~^~02/01/2013~ -~05679~^~629~^0.003^3^0.000^~1~^~A~^^^2^0.003^0.003^^^^~2, 3~^~06/01/2011~ -~05679~^~630~^0.002^3^0.000^~1~^~AS~^^^2^0.000^0.003^1^-0.003^0.006^~2, 3~^~02/01/2013~ -~05679~^~631~^0.010^3^0.001^~1~^~A~^^^2^0.008^0.012^1^0.001^0.019^~2, 3~^~02/01/2013~ -~05679~^~645~^2.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~646~^1.203^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~652~^0.004^3^0.000^~1~^~A~^^^2^0.004^0.005^1^0.000^0.008^~2, 3~^~06/01/2011~ -~05679~^~653~^0.004^3^0.002^~1~^~A~^^^2^0.000^0.007^1^-0.026^0.034^~1, 2, 3~^~02/01/2013~ -~05679~^~654~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.005^1^-0.001^0.007^~1, 2, 3~^~02/01/2013~ -~05679~^~662~^0.002^3^0.000^~1~^~A~^^^2^0.002^0.002^^^^~1, 2, 3~^~06/01/2011~ -~05679~^~663~^0.017^3^0.000^~1~^~A~^^^2^0.017^0.018^^^^~2, 3~^~02/01/2013~ -~05679~^~664~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05679~^~665~^0.009^3^0.000^~1~^~A~^^^2^0.007^0.010^^^^~2, 3~^~02/01/2013~ -~05679~^~670~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.004^1^-0.001^0.008^~2, 3~^~06/01/2011~ -~05679~^~671~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.005^1^-0.001^0.007^~1, 2, 3~^~02/01/2013~ -~05679~^~672~^0.012^3^0.001^~1~^~A~^^^2^0.008^0.015^1^-0.001^0.024^~2, 3~^~02/01/2013~ -~05679~^~673~^0.305^3^0.019^~1~^~A~^^^2^0.259^0.341^1^0.068^0.542^~2, 3~^~02/01/2013~ -~05679~^~674~^1.660^3^0.032^~1~^~A~^^^2^1.621^1.716^1^1.258^2.062^~2, 3~^~02/01/2013~ -~05679~^~675~^0.952^3^0.001^~1~^~A~^^^2^0.874^0.992^1^0.944^0.960^~2, 3~^~02/01/2013~ -~05679~^~676~^0.002^3^0.000^~1~^~A~^^^2^0.000^0.003^1^-0.003^0.006^~1, 2, 3~^~02/01/2013~ -~05679~^~685~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.010^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~687~^0.004^3^0.000^~1~^~A~^^^2^0.004^0.004^^^^~2, 3~^~06/01/2011~ -~05679~^~689~^0.025^3^0.003^~1~^~AS~^^^2^0.017^0.034^1^-0.013^0.063^~2, 3~^~02/01/2013~ -~05679~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05679~^~697~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2011~ -~05679~^~851~^0.041^3^0.001^~1~^~A~^^^2^0.038^0.043^1^0.032^0.049^~2, 3~^~02/01/2013~ -~05679~^~852~^0.001^3^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~02/01/2013~ -~05679~^~853~^0.024^3^0.003^~1~^~A~^^^2^0.017^0.032^1^-0.014^0.062^~2, 3~^~02/01/2013~ -~05679~^~858~^0.030^3^0.003^~1~^~A~^^^2^0.021^0.038^1^-0.004^0.063^~2, 3~^~02/01/2013~ -~05680~^~312~^0.049^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~315~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~406~^5.070^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~415~^0.310^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~501~^0.259^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~502~^1.087^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~503~^1.098^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~504~^1.959^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~505~^2.169^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~506~^0.658^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~508~^0.918^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~509~^0.864^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~510~^1.117^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~511~^1.605^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~512~^0.686^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~513~^1.377^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~514~^2.260^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~515~^3.766^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~516~^1.054^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~517~^0.927^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~518~^0.962^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~605~^0.035^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~606~^1.730^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~607~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~608~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~612~^0.032^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~613~^1.299^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~614~^0.367^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~617~^2.130^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~618~^1.132^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~619~^0.062^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~620~^0.086^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~625~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~626~^0.445^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~628~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~629~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~631~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~645~^2.620^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~646~^1.349^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~653~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~662~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~663~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~665~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~670~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~672~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~673~^0.441^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~674~^2.109^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~675~^1.115^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~685~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~05680~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~05680~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2011~ -~05680~^~853~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05680~^~858~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~05681~^~312~^0.052^2^^~1~^~A~^^^1^0.052^0.052^1^^^^~07/01/2011~ -~05681~^~315~^0.017^2^^~1~^~A~^^^1^0.016^0.017^1^^^^~07/01/2011~ -~05681~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~405~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~406~^6.330^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~415~^0.308^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~502~^1.088^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~503~^1.099^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~504~^1.960^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~505~^2.170^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~506~^0.658^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~507~^0.269^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~508~^0.919^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~509~^0.865^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~510~^1.118^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~511~^1.606^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~512~^0.686^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~513~^1.378^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~514~^2.262^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~515~^3.768^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~516~^1.055^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~517~^0.928^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~518~^0.963^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~605~^0.035^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~606~^2.040^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~607~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~608~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~612~^0.038^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~613~^1.546^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~614~^0.421^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~617~^2.516^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~618~^1.156^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~620~^0.067^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~621~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~625~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~626~^0.457^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~628~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~629~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~631~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~645~^3.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~646~^1.346^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~653~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~662~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~663~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~665~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~670~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~671~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~673~^0.455^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~674~^2.490^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~675~^1.140^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~685~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05681~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05681~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~851~^0.045^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05681~^~853~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05681~^~858~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~312~^0.053^5^0.005^~1~^~A~^^^2^0.038^0.065^3^0.038^0.067^~2, 3~^~02/01/2013~ -~05682~^~315~^0.009^5^0.000^~1~^~A~^^^2^0.004^0.017^2^0.008^0.010^~2, 3~^~02/01/2013~ -~05682~^~404~^0.087^3^0.003^~1~^~A~^^^2^0.070^0.100^1^0.048^0.126^~2, 3~^~02/01/2013~ -~05682~^~405~^0.230^3^0.023^~1~^~A~^^^2^0.180^0.290^1^-0.067^0.526^~2, 3~^~02/01/2013~ -~05682~^~406~^5.300^3^0.063^~1~^~A~^^^2^5.170^5.460^1^4.495^6.105^~2, 3~^~02/01/2013~ -~05682~^~410~^1.250^2^^~1~^~A~^^^1^1.200^1.300^1^^^^~02/01/2013~ -~05682~^~415~^0.433^3^0.003^~1~^~A~^^^2^0.393^0.458^1^0.391^0.475^~2, 3~^~02/01/2013~ -~05682~^~501~^0.208^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~502~^0.870^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~503~^0.878^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~504~^1.567^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~505~^1.735^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~506~^0.526^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~507~^0.215^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~508~^0.735^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~509~^0.691^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~510~^0.894^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~511~^1.284^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~512~^0.549^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~513~^1.102^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~514~^1.809^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~515~^3.013^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~516~^0.843^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~517~^0.742^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~518~^0.770^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05682~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~606~^0.899^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~607~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~608~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~609~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~610~^0.004^3^0.000^~1~^~A~^^^2^0.000^0.006^1^-0.001^0.008^~1, 2, 3~^~02/01/2013~ -~05682~^~611~^0.002^3^0.000^~1~^~A~^^^2^0.002^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~612~^0.016^3^0.002^~1~^~A~^^^2^0.013^0.019^1^-0.009^0.041^~2, 3~^~02/01/2013~ -~05682~^~613~^0.654^3^0.072^~1~^~A~^^^2^0.502^0.744^1^-0.257^1.565^~2, 3~^~02/01/2013~ -~05682~^~614~^0.206^3^0.022^~1~^~A~^^^2^0.162^0.229^1^-0.073^0.486^~2, 3~^~02/01/2013~ -~05682~^~615~^0.003^3^0.000^~1~^~A~^^^2^0.002^0.004^1^-0.001^0.007^~1, 2, 3~^~02/01/2013~ -~05682~^~617~^1.024^3^0.117^~1~^~AS~^^^2^0.761^1.199^1^-0.466^2.515^~2, 3~^~02/01/2013~ -~05682~^~618~^0.608^3^0.069^~1~^~AS~^^^2^0.452^0.712^1^-0.269^1.484^~2, 3~^~02/01/2013~ -~05682~^~619~^0.029^3^0.003^~1~^~AS~^^^2^0.019^0.039^1^-0.010^0.067^~2, 3~^~02/01/2013~ -~05682~^~620~^0.074^3^0.003^~1~^~A~^^^2^0.065^0.083^1^0.040^0.107^~2, 3~^~02/01/2013~ -~05682~^~621~^0.006^3^0.001^~1~^~A~^^^2^0.005^0.008^1^-0.002^0.015^~2, 3~^~02/01/2013~ -~05682~^~624~^0.005^3^0.000^~1~^~A~^^^2^0.004^0.006^1^0.001^0.009^~2, 3~^~02/01/2013~ -~05682~^~625~^0.005^3^0.001^~1~^~A~^^^2^0.004^0.006^1^-0.003^0.014^~2, 3~^~02/01/2013~ -~05682~^~626~^0.172^3^0.016^~1~^~AS~^^^2^0.120^0.227^1^-0.036^0.379^~2, 3~^~02/01/2013~ -~05682~^~627~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~628~^0.018^3^0.001^~1~^~A~^^^2^0.016^0.021^1^0.001^0.034^~2, 3~^~02/01/2013~ -~05682~^~629~^0.002^3^0.000^~1~^~A~^^^2^0.002^0.002^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~630~^0.000^3^0.000^~1~^~AS~^^^2^0.000^0.001^1^-0.004^0.005^~2, 3~^~07/01/2011~ -~05682~^~631~^0.008^3^0.000^~1~^~A~^^^2^0.007^0.010^1^0.004^0.013^~2, 3~^~02/01/2013~ -~05682~^~645~^1.222^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~646~^0.767^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~652~^0.003^3^0.000^~1~^~A~^^^2^0.002^0.003^1^-0.002^0.007^~1, 2, 3~^~07/01/2011~ -~05682~^~653~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.004^1^-0.001^0.008^~2, 3~^~07/01/2011~ -~05682~^~654~^0.001^3^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~662~^0.001^3^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.007^0.010^~1, 2, 3~^~02/01/2013~ -~05682~^~663~^0.011^3^0.001^~1~^~A~^^^2^0.008^0.012^1^-0.006^0.028^~2, 3~^~02/01/2013~ -~05682~^~664~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~665~^0.005^3^0.000^~1~^~A~^^^2^0.004^0.005^1^0.001^0.008^~2, 3~^~07/01/2011~ -~05682~^~670~^0.005^3^0.000^~1~^~A~^^^2^0.002^0.010^1^0.001^0.009^~1, 2, 3~^~02/01/2013~ -~05682~^~671~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~672~^0.007^3^0.000^~1~^~A~^^^2^0.007^0.008^1^0.003^0.012^~2, 3~^~07/01/2011~ -~05682~^~673~^0.171^3^0.016^~1~^~A~^^^2^0.120^0.225^1^-0.028^0.370^~2, 3~^~02/01/2013~ -~05682~^~674~^1.014^3^0.116^~1~^~A~^^^2^0.753^1.187^1^-0.460^2.487^~2, 3~^~02/01/2013~ -~05682~^~675~^0.598^3^0.068^~1~^~A~^^^2^0.446^0.697^1^-0.270^1.466^~2, 3~^~02/01/2013~ -~05682~^~676~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.004^0.005^~1, 2, 3~^~07/01/2011~ -~05682~^~685~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.008^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~687~^0.002^3^0.000^~1~^~A~^^^2^0.002^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05682~^~689~^0.015^3^0.001^~1~^~AS~^^^2^0.013^0.016^1^0.002^0.028^~2, 3~^~02/01/2013~ -~05682~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05682~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05682~^~697~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~851~^0.026^3^0.003^~1~^~A~^^^2^0.019^0.031^1^-0.013^0.065^~2, 3~^~02/01/2013~ -~05682~^~852~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05682~^~853~^0.015^3^0.001^~1~^~A~^^^2^0.013^0.016^1^0.002^0.028^~2, 3~^~02/01/2013~ -~05682~^~858~^0.019^3^0.002^~1~^~A~^^^2^0.015^0.021^1^-0.007^0.044^~2, 3~^~02/01/2013~ -~05683~^~312~^0.074^5^0.003^~1~^~A~^^^2^0.054^0.091^3^0.064^0.084^~2, 3~^~02/01/2013~ -~05683~^~315~^0.011^5^0.000^~1~^~A~^^^2^0.007^0.015^2^0.009^0.012^~2, 3~^~02/01/2013~ -~05683~^~404~^0.091^3^0.002^~1~^~A~^^^2^0.080^0.100^1^0.061^0.121^~2, 3~^~02/01/2013~ -~05683~^~405~^0.272^3^0.005^~1~^~A~^^^2^0.180^0.325^1^0.208^0.335^~2, 3~^~02/01/2013~ -~05683~^~406~^6.343^3^0.097^~1~^~A~^^^2^6.220^6.550^1^5.115^7.572^~2, 3~^~02/01/2013~ -~05683~^~410~^1.400^2^^~1~^~A~^^^1^1.300^1.500^1^^^^~02/01/2013~ -~05683~^~415~^0.444^3^0.008^~1~^~A~^^^2^0.420^0.468^1^0.347^0.542^~2, 3~^~02/01/2013~ -~05683~^~501~^0.268^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~502~^1.125^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~503~^1.136^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~504~^2.027^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~505~^2.244^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~506~^0.680^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~508~^0.950^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~509~^0.894^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~510~^1.156^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~511~^1.661^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~512~^0.710^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~513~^1.425^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~514~^2.339^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~515~^3.897^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~516~^1.091^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~517~^0.960^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~518~^0.996^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05683~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05683~^~606~^2.405^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~607~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2013~ -~05683~^~608~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05683~^~609~^0.001^3^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~02/01/2013~ -~05683~^~610~^0.004^3^0.000^~1~^~A~^^^2^0.000^0.006^^^^~1, 2, 3~^~02/01/2013~ -~05683~^~611~^0.005^3^0.001^~1~^~A~^^^2^0.004^0.006^1^-0.004^0.013^~2, 3~^~02/01/2013~ -~05683~^~612~^0.047^3^0.001^~1~^~A~^^^2^0.046^0.048^1^0.038^0.055^~2, 3~^~02/01/2013~ -~05683~^~613~^1.815^3^0.015^~1~^~A~^^^2^1.776^1.848^1^1.628^2.001^~2, 3~^~02/01/2013~ -~05683~^~614~^0.500^3^0.000^~1~^~A~^^^2^0.472^0.514^1^0.496^0.503^~2, 3~^~02/01/2013~ -~05683~^~615~^0.007^3^0.000^~1~^~A~^^^2^0.004^0.009^1^0.003^0.011^~2, 3~^~02/01/2013~ -~05683~^~617~^2.901^3^0.058^~1~^~AS~^^^2^2.764^3.002^1^2.168^3.634^~2, 3~^~02/01/2013~ -~05683~^~618~^1.595^3^0.048^~1~^~AS~^^^2^1.456^1.737^1^0.985^2.205^~2, 3~^~02/01/2013~ -~05683~^~619~^0.076^3^0.003^~1~^~AS~^^^2^0.069^0.081^1^0.038^0.114^~2, 3~^~02/01/2013~ -~05683~^~620~^0.101^3^0.000^~1~^~A~^^^2^0.076^0.114^1^0.096^0.106^~2, 3~^~02/01/2013~ -~05683~^~621~^0.006^3^0.000^~1~^~A~^^^2^0.004^0.007^1^0.001^0.010^~2, 3~^~02/01/2013~ -~05683~^~624~^0.008^3^0.000^~1~^~A~^^^2^0.007^0.008^1^0.003^0.012^~2, 3~^~07/01/2011~ -~05683~^~625~^0.016^3^0.000^~1~^~A~^^^2^0.014^0.018^1^0.012^0.019^~2, 3~^~02/01/2013~ -~05683~^~626~^0.490^3^0.004^~1~^~AS~^^^2^0.432^0.594^1^0.443^0.537^~2, 3~^~02/01/2013~ -~05683~^~627~^0.002^3^0.001^~1~^~A~^^^2^0.001^0.004^1^-0.006^0.011^~1, 2, 3~^~02/01/2013~ -~05683~^~628~^0.045^3^0.001^~1~^~A~^^^2^0.033^0.053^1^0.028^0.062^~2, 3~^~02/01/2013~ -~05683~^~629~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.004^1^-0.001^0.008^~2, 3~^~07/01/2011~ -~05683~^~630~^0.002^3^0.000^~1~^~AS~^^^2^0.001^0.003^^^^~2, 3~^~02/01/2013~ -~05683~^~631~^0.010^3^0.000^~1~^~A~^^^2^0.008^0.011^1^0.005^0.014^~2, 3~^~02/01/2013~ -~05683~^~645~^3.463^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~646~^1.863^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~652~^0.007^3^0.000^~1~^~A~^^^2^0.007^0.008^1^0.003^0.012^~2, 3~^~07/01/2011~ -~05683~^~653~^0.009^3^0.000^~1~^~A~^^^2^0.008^0.010^^^^~2, 3~^~02/01/2013~ -~05683~^~654~^0.003^3^0.000^~1~^~A~^^^2^0.000^0.005^1^-0.001^0.007^~1, 2, 3~^~02/01/2013~ -~05683~^~662~^0.004^3^0.000^~1~^~A~^^^2^0.003^0.005^1^0.000^0.008^~2, 3~^~02/01/2013~ -~05683~^~663~^0.029^3^0.001^~1~^~A~^^^2^0.027^0.031^1^0.016^0.041^~2, 3~^~02/01/2013~ -~05683~^~664~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05683~^~665~^0.013^3^0.000^~1~^~A~^^^2^0.012^0.014^1^0.009^0.017^~2, 3~^~02/01/2013~ -~05683~^~670~^0.006^3^0.001^~1~^~A~^^^2^0.004^0.008^1^-0.002^0.014^~2, 3~^~02/01/2013~ -~05683~^~671~^0.003^3^0.000^~1~^~A~^^^2^0.001^0.004^1^-0.002^0.007^~1, 2, 3~^~02/01/2013~ -~05683~^~672~^0.014^3^0.000^~1~^~A~^^^2^0.010^0.017^1^0.010^0.019^~2, 3~^~02/01/2013~ -~05683~^~673~^0.486^3^0.003^~1~^~A~^^^2^0.429^0.589^1^0.443^0.528^~2, 3~^~02/01/2013~ -~05683~^~674~^2.872^3^0.059^~1~^~A~^^^2^2.733^2.975^1^2.127^3.617^~2, 3~^~02/01/2013~ -~05683~^~675~^1.576^3^0.048^~1~^~A~^^^2^1.434^1.720^1^0.962^2.190^~2, 3~^~02/01/2013~ -~05683~^~676~^0.002^3^0.000^~1~^~A~^^^2^0.001^0.003^^^^~1, 2, 3~^~02/01/2013~ -~05683~^~685~^0.007^3^0.000^~1~^~A~^^^2^0.000^0.019^1^0.002^0.011^~1, 2, 3~^~02/01/2013~ -~05683~^~687~^0.007^3^0.000^~1~^~A~^^^2^0.006^0.007^1^0.002^0.011^~2, 3~^~07/01/2011~ -~05683~^~689~^0.029^3^0.001^~1~^~AS~^^^2^0.022^0.034^1^0.017^0.041^~2, 3~^~02/01/2013~ -~05683~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~05683~^~697~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~05683~^~851~^0.069^3^0.003^~1~^~A~^^^2^0.062^0.077^1^0.035^0.103^~2, 3~^~02/01/2013~ -~05683~^~852~^0.002^3^0.000^~1~^~A~^^^2^0.000^0.004^1^-0.002^0.007^~1, 2, 3~^~02/01/2013~ -~05683~^~853~^0.027^3^0.001^~1~^~A~^^^2^0.022^0.030^1^0.019^0.035^~2, 3~^~02/01/2013~ -~05683~^~858~^0.026^3^0.000^~1~^~A~^^^2^0.018^0.030^^^^~2, 3~^~02/01/2013~ -~05684~^~312~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~406~^3.300^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~415~^0.144^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~501~^0.061^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~502~^0.389^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~503~^0.347^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~504~^0.676^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~505~^0.701^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~506~^0.207^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~507~^0.102^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~508~^0.373^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~509~^0.290^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~510~^0.437^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~511~^0.873^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~512~^0.252^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~513~^0.841^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~514~^0.915^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~515~^1.453^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~516~^1.578^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~517~^0.934^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~518~^0.446^0^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~605~^0.245^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~606~^10.605^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~607~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~609~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~611~^0.021^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~612~^0.215^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~613~^8.382^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~614~^1.858^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~615~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~617~^14.143^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~618~^7.328^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~619~^0.375^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~620~^0.121^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~625~^0.084^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~626~^2.694^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~627~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~628~^0.241^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~629~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~631~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~645~^17.201^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~646~^7.994^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~652~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~653~^0.042^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~662~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~663~^0.135^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~665~^0.093^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~670~^0.052^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~672~^0.042^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~673~^2.677^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~674~^14.008^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~675~^7.183^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~687~^0.034^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~689~^0.061^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05684~^~693~^0.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~695~^0.093^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05684~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~851~^0.375^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05684~^~853~^0.059^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05684~^~858~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~312~^0.030^4^0.001^~1~^~A~^^^2^0.017^0.038^2^0.024^0.036^~2, 3~^~02/01/2013~ -~05685~^~315~^0.006^4^0.000^~1~^~A~^^^2^0.004^0.010^2^0.005^0.007^~2, 3~^~02/01/2013~ -~05685~^~404~^0.035^2^^~1~^~A~^^^2^0.030^0.041^^^^~1~^~02/01/2013~ -~05685~^~405~^0.060^2^^~1~^~A~^^^2^0.040^0.080^^^^^~02/01/2013~ -~05685~^~406~^2.655^2^^~1~^~A~^^^2^2.530^2.780^^^^^~02/01/2013~ -~05685~^~415~^0.113^2^^~1~^~A~^^^2^0.107^0.119^^^^^~02/01/2013~ -~05685~^~501~^0.055^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~502~^0.352^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~503~^0.315^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~504~^0.612^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~505~^0.635^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~507~^0.092^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~508~^0.338^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~509~^0.263^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~510~^0.396^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~511~^0.791^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~512~^0.228^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~513~^0.763^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~514~^0.829^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~515~^1.317^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~516~^1.430^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~517~^0.846^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~518~^0.404^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~05685~^~605~^0.231^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~606~^10.565^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~607~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~609~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~611~^0.021^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~612~^0.217^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~613~^8.338^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~614~^1.856^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~615~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~617~^14.117^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~618~^7.421^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~619~^0.481^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~620~^0.116^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~625~^0.084^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~626~^2.704^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~627~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~628~^0.156^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~629~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~631~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~645~^17.099^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~646~^8.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~652~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~653~^0.043^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~662~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~663~^0.139^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~665~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~670~^0.047^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~672~^0.046^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~673~^2.685^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~674~^13.978^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~675~^7.301^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~685~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~687~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~689~^0.065^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05685~^~693~^0.158^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~05685~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~851~^0.381^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05685~^~853~^0.063^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05685~^~858~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~312~^0.068^4^0.004^~1~^~A~^^^2^0.060^0.076^2^0.052^0.084^~2, 3~^~02/01/2013~ -~05686~^~315~^0.013^4^0.000^~1~^~A~^^^2^0.009^0.022^2^0.012^0.014^~2, 3~^~02/01/2013~ -~05686~^~404~^0.057^2^^~1~^~A~^^^2^0.050^0.064^^^^^~02/01/2013~ -~05686~^~405~^0.125^2^^~1~^~A~^^^2^0.060^0.190^^^^^~02/01/2013~ -~05686~^~406~^4.045^2^^~1~^~A~^^^2^3.680^4.410^^^^^~02/01/2013~ -~05686~^~415~^0.185^2^^~1~^~A~^^^2^0.159^0.211^^^^^~02/01/2013~ -~05686~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~502~^0.644^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~503~^0.575^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~504~^1.119^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~505~^1.161^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~506~^0.343^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~507~^0.169^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~508~^0.618^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~509~^0.480^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~510~^0.723^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~511~^1.447^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~512~^0.417^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~513~^1.394^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~514~^1.515^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~515~^2.407^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~516~^2.614^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~517~^1.547^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~518~^0.739^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~605~^0.270^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05686~^~606~^11.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05686~^~607~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~609~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~610~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~611~^0.044^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~612~^0.239^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~613~^8.612^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~614~^1.958^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~615~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~617~^14.472^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~618~^8.251^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~619~^0.462^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~620~^0.141^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~624~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~625~^0.087^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~626~^2.641^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~627~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~628~^0.256^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~05686~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~645~^17.500^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05686~^~646~^9.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05686~^~652~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~653~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~662~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~663~^0.164^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~665~^0.086^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~670~^0.052^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~672~^0.049^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~673~^2.621^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~674~^14.308^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~675~^8.112^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~676~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~687~^0.038^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~689~^0.064^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05686~^~693~^0.184^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05686~^~695~^0.086^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05686~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2011~ -~05686~^~851~^0.462^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05686~^~853~^0.061^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~05686~^~858~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2011~ -~05687~^~312~^0.046^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~404~^0.076^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~405~^0.144^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~406~^4.832^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~415~^0.288^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~501~^0.233^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~502~^0.993^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~503~^0.997^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~504~^1.786^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~505~^1.971^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~506~^0.597^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~507~^0.246^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~508~^0.845^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~509~^0.787^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~510~^1.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~511~^1.506^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~512~^0.628^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~513~^1.305^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~514~^2.080^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~515~^3.455^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~516~^1.125^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~517~^0.928^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~518~^0.893^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~605~^0.063^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~606~^2.923^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~608~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~612~^0.057^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~613~^2.251^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~614~^0.567^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~617~^3.745^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~618~^1.965^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~619~^0.104^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~620~^0.091^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~625~^0.023^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~626~^0.747^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~628~^0.054^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~645~^4.580^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~646~^2.242^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~652~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~653~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~662~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~663~^0.036^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~665~^0.021^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~670~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~672~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~673~^0.742^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~674~^3.708^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~675~^1.931^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~685~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~687~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~689~^0.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~693~^0.042^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~695~^0.021^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05687~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~851~^0.094^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~853~^0.025^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05687~^~858~^0.023^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~312~^0.057^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~404~^0.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~405~^0.217^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~406~^4.612^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~410~^1.028^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~415~^0.346^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~501~^0.177^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~502~^0.760^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~503~^0.761^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~504~^1.366^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~505~^1.506^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~506~^0.456^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~507~^0.188^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~508~^0.648^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~509~^0.601^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~510~^0.786^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~511~^1.160^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~512~^0.480^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~513~^1.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~514~^1.593^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~515~^2.646^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~516~^0.893^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~517~^0.726^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~518~^0.686^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~605~^0.051^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~606~^2.334^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~612~^0.047^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~613~^1.782^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~614~^0.457^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~617~^2.943^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~618~^1.595^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~619~^0.093^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~620~^0.091^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~624~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~626~^0.552^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~627~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~628~^0.038^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~645~^3.561^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~646~^1.864^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~653~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~663~^0.032^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~665~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~670~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~672~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~673~^0.548^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~674~^2.911^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~675~^1.569^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~685~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~687~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~689~^0.025^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~693~^0.035^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05688~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05688~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05688~^~851~^0.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~853~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05688~^~858~^0.025^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~404~^0.096^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~405~^0.276^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~406~^5.684^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~410~^1.141^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~415~^0.385^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~501~^0.251^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~502~^1.052^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~503~^1.062^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~504~^1.894^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~505~^2.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~506~^0.636^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~507~^0.260^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~508~^0.888^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~509~^0.836^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~510~^1.081^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~511~^1.552^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~512~^0.663^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~513~^1.332^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~514~^2.186^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~515~^3.642^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~516~^1.019^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~517~^0.897^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~518~^0.930^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~605~^0.059^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~606~^2.656^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~611~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~612~^0.054^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~613~^2.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~614~^0.530^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~617~^3.354^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~618~^1.868^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~619~^0.096^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~620~^0.113^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~626~^0.613^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~628~^0.058^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~630~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~645~^4.058^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~646~^2.177^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~653~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~663~^0.037^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~665~^0.019^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~670~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~672~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~673~^0.608^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~674~^3.318^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~675~^1.840^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~687~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~689~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~693~^0.041^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~695~^0.019^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05689~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05689~^~851~^0.093^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~853~^0.029^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05689~^~858~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05690~^~312~^0.047^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~404~^0.074^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~405~^0.119^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~406~^5.679^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~415~^0.273^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~501~^0.217^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~502~^0.938^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~503~^0.937^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~504~^1.684^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~505~^1.854^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~506~^0.561^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~507~^0.233^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~508~^0.802^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~509~^0.741^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~510~^0.972^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~511~^1.448^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~512~^0.593^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~513~^1.262^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~514~^1.972^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~515~^3.271^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~516~^1.167^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~517~^0.929^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~518~^0.852^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~605~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~606~^3.881^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~608~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~612~^0.076^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~613~^3.015^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~614~^0.730^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~617~^5.015^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~618~^2.482^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~619~^0.125^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~620~^0.079^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~625~^0.029^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~626~^0.938^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~627~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~628~^0.074^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~645~^6.073^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~646~^2.775^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~663~^0.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~665~^0.025^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~671~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~673~^0.933^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~674~^4.965^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~675~^2.439^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~685~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~689~^0.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~693~^0.055^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~695~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~ -~05690~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~851~^0.116^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~853~^0.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05690~^~858~^0.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~312~^0.046^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~404~^0.071^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~405~^0.176^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~406~^4.458^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~410~^0.852^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~415~^0.331^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~501~^0.159^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~502~^0.705^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~503~^0.699^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~504~^1.263^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~505~^1.385^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~506~^0.418^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~507~^0.176^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~508~^0.609^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~509~^0.555^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~510~^0.735^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~511~^1.127^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~512~^0.447^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~513~^0.994^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~514~^1.497^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~515~^2.473^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~516~^1.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~517~^0.775^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~518~^0.654^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~605~^0.085^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~606~^3.975^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~612~^0.080^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~613~^3.100^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~614~^0.731^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~617~^5.191^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~618~^2.776^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~619~^0.173^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~620~^0.087^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~626~^0.978^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~627~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~628~^0.062^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~630~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~645~^6.275^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~646~^3.131^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~663~^0.052^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~665~^0.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~672~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~673~^0.971^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~674~^5.140^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~675~^2.731^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~685~^0.034^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~689~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~693~^0.058^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~695~^0.026^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05691~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~851~^0.139^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05691~^~853~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05691~^~858~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~312~^0.073^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~404~^0.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~405~^0.243^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~406~^5.898^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~410~^1.128^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~415~^0.394^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~502~^0.907^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~503~^0.916^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~504~^1.634^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~505~^1.809^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~506~^0.548^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~507~^0.224^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~508~^0.766^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~509~^0.721^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~510~^0.932^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~511~^1.339^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~512~^0.572^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~513~^1.148^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~514~^1.886^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~515~^3.141^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~516~^0.879^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~517~^0.774^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~518~^0.803^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~605~^0.091^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~ -~05692~^~606~^4.145^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05692~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~612~^0.086^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~613~^3.190^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~614~^0.795^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~617~^5.317^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~618~^2.903^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~619~^0.152^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~620~^0.109^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~624~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~626~^0.938^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~627~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~628~^0.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~630~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~645~^6.392^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05692~^~646~^3.275^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05692~^~652~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~653~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~672~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~687~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~689~^0.036^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05692~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~ -~05692~^~858~^0.027^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~05693~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~ -~05693~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~405~^0.181^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~406~^5.175^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~415~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~05693~^~501~^0.207^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~502~^0.578^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~503~^0.940^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~504~^1.587^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~505~^1.664^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~506~^0.595^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~507~^0.216^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~508~^0.793^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~509~^0.586^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~510~^1.061^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~511~^1.233^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~512~^0.552^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~513~^1.112^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~514~^1.871^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~515~^3.001^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~516~^1.009^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~517~^0.923^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~518~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~05693~^~606~^3.613^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~612~^0.079^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~613~^2.838^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~614~^0.670^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~617~^4.906^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~618~^1.877^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~619~^0.111^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~620~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~626~^0.912^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~05693~^~628~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~645~^5.885^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05693~^~646~^2.044^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~ -~05694~^~312~^0.106^6^0.009^~1~^~A~^^^1^0.087^0.142^5^0.083^0.129^~2, 3~^~08/01/2012~ -~05694~^~315~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~2, 3~^~08/01/2012~ -~05694~^~404~^0.060^6^0.003^~1~^~A~^^^1^0.048^0.069^5^0.052^0.068^~2, 3~^~08/01/2012~ -~05694~^~405~^0.247^6^0.004^~1~^~A~^^^1^0.230^0.260^5^0.236^0.257^~2, 3~^~08/01/2012~ -~05694~^~406~^5.745^6^0.162^~1~^~A~^^^1^5.080^6.200^5^5.328^6.162^~2, 3~^~08/01/2012~ -~05694~^~410~^0.935^2^^~1~^~A~^^^1^0.890^0.980^1^^^^~08/01/2012~ -~05694~^~415~^0.425^6^0.007^~1~^~A~^^^1^0.403^0.449^5^0.406^0.443^~2, 3~^~08/01/2012~ -~05694~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~504~^1.335^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~508~^0.621^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~509~^0.572^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~510~^0.616^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~513~^1.041^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~514~^1.540^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~515~^2.613^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~516~^0.822^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~521~^0.150^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05694~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~606~^1.124^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~610~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 2, 3~^~08/01/2012~ -~05694~^~611~^0.017^6^0.005^~1~^~A~^^^1^0.003^0.038^5^0.004^0.030^~2, 3~^~08/01/2012~ -~05694~^~612~^0.039^6^0.007^~1~^~A~^^^1^0.020^0.069^5^0.021^0.057^~2, 3~^~08/01/2012~ -~05694~^~613~^0.721^6^0.107^~1~^~A~^^^1^0.485^1.096^5^0.445^0.997^~2, 3~^~08/01/2012~ -~05694~^~614~^0.313^6^0.035^~1~^~A~^^^1^0.229^0.464^5^0.222^0.403^~2, 3~^~08/01/2012~ -~05694~^~615~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~05694~^~617~^1.101^6^0.168^~1~^~AS~^^^1^0.685^1.683^5^0.669^1.533^~2, 3~^~08/01/2012~ -~05694~^~618~^0.862^6^0.103^~1~^~AS~^^^1^0.627^1.260^5^0.598^1.125^~2, 3~^~08/01/2012~ -~05694~^~619~^0.045^6^0.005^~1~^~AS~^^^1^0.032^0.061^5^0.034^0.057^~2, 3~^~08/01/2012~ -~05694~^~620~^0.060^6^0.004^~1~^~A~^^^1^0.047^0.073^5^0.050^0.070^~2, 3~^~08/01/2012~ -~05694~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.005^~1, 2, 3~^~08/01/2012~ -~05694~^~624~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.007^5^0.004^0.007^~2, 3~^~08/01/2012~ -~05694~^~625~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.009^5^0.003^0.007^~2, 3~^~08/01/2012~ -~05694~^~626~^0.113^6^0.025^~1~^~AS~^^^1^0.049^0.210^5^0.049^0.178^~2, 3~^~08/01/2012~ -~05694~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~628~^0.016^6^0.002^~1~^~A~^^^1^0.010^0.023^5^0.011^0.022^~2, 3~^~08/01/2012~ -~05694~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~05694~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~08/01/2012~ -~05694~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.007^~2, 3~^~08/01/2012~ -~05694~^~645~^1.244^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~646~^1.009^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~652~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.004^0.008^~2, 3~^~08/01/2012~ -~05694~^~653~^0.011^6^0.001^~1~^~A~^^^1^0.007^0.017^5^0.007^0.015^~2, 3~^~08/01/2012~ -~05694~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~08/01/2012~ -~05694~^~662~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.002^0.004^~1, 2, 3~^~08/01/2012~ -~05694~^~663~^0.039^6^0.005^~1~^~A~^^^1^0.021^0.058^5^0.026^0.052^~2, 3~^~08/01/2012~ -~05694~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~665~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.015^5^0.007^0.014^~2, 3~^~08/01/2012~ -~05694~^~670~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.006^~2, 3~^~08/01/2012~ -~05694~^~671~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.001^0.007^~1, 2, 3~^~08/01/2012~ -~05694~^~672~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.006^0.009^~2, 3~^~08/01/2012~ -~05694~^~673~^0.110^6^0.025^~1~^~A~^^^1^0.048^0.207^5^0.046^0.174^~2, 3~^~08/01/2012~ -~05694~^~674~^1.062^6^0.165^~1~^~A~^^^1^0.664^1.625^5^0.639^1.485^~2, 3~^~08/01/2012~ -~05694~^~675~^0.847^6^0.101^~1~^~A~^^^1^0.617^1.241^5^0.587^1.107^~2, 3~^~08/01/2012~ -~05694~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~05694~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~05694~^~687~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~08/01/2012~ -~05694~^~689~^0.009^6^0.001^~1~^~AS~^^^1^0.006^0.012^5^0.006^0.012^~2, 3~^~08/01/2012~ -~05694~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05694~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~851~^0.044^6^0.005^~1~^~A~^^^1^0.031^0.059^5^0.032^0.055^~2, 3~^~08/01/2012~ -~05694~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05694~^~853~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.012^5^0.006^0.012^~2, 3~^~08/01/2012~ -~05694~^~858~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.019^5^0.011^0.018^~2, 3~^~08/01/2012~ -~05695~^~312~^0.128^6^0.008^~1~^~A~^^^1^0.115^0.168^5^0.107^0.149^~2, 3~^~08/01/2012~ -~05695~^~315~^0.017^6^0.001^~1~^~A~^^^1^0.012^0.020^5^0.014^0.020^~2, 3~^~08/01/2012~ -~05695~^~404~^0.056^6^0.005^~1~^~A~^^^1^0.044^0.076^5^0.044^0.068^~2, 3~^~08/01/2012~ -~05695~^~405~^0.335^6^0.021^~1~^~A~^^^1^0.260^0.410^5^0.280^0.390^~2, 3~^~08/01/2012~ -~05695~^~406~^6.827^6^0.285^~1~^~A~^^^1^6.180^8.090^5^6.094^7.561^~2, 3~^~08/01/2012~ -~05695~^~410~^1.015^2^^~1~^~A~^^^1^0.930^1.100^1^^^^~08/01/2012~ -~05695~^~415~^0.435^8^0.010^~1~^~A~^^^^0.384^0.483^^^^^~08/01/2012~ -~05695~^~501~^0.278^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~502~^0.948^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~503~^0.748^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~504~^1.809^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~505~^2.154^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~506~^0.682^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~508~^0.842^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~509~^0.775^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~510~^0.834^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~511~^1.478^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~512~^0.708^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~513~^1.411^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~514~^2.087^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~515~^3.540^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~516~^1.114^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~517~^1.410^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~518~^1.034^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05695~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~610~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.009^5^0.003^0.009^~1, 2, 3~^~08/01/2012~ -~05695~^~611~^0.021^6^0.005^~1~^~A~^^^1^0.003^0.040^5^0.007^0.034^~2, 3~^~08/01/2012~ -~05695~^~612~^0.061^6^0.006^~1~^~A~^^^1^0.046^0.087^5^0.047^0.076^~2, 3~^~08/01/2012~ -~05695~^~613~^1.178^6^0.040^~1~^~A~^^^1^1.017^1.304^5^1.075^1.281^~2, 3~^~08/01/2012~ -~05695~^~614~^0.505^6^0.015^~1~^~A~^^^1^0.469^0.573^5^0.466^0.544^~2, 3~^~08/01/2012~ -~05695~^~615~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~08/01/2012~ -~05695~^~617~^1.832^6^0.051^~1~^~AS~^^^1^1.689^2.051^5^1.701^1.962^~2, 3~^~08/01/2012~ -~05695~^~618~^1.436^6^0.080^~1~^~AS~^^^1^1.217^1.671^5^1.230^1.641^~2, 3~^~08/01/2012~ -~05695~^~619~^0.075^6^0.007^~1~^~AS~^^^1^0.049^0.094^5^0.056^0.094^~2, 3~^~08/01/2012~ -~05695~^~620~^0.087^6^0.002^~1~^~A~^^^1^0.080^0.093^5^0.081^0.093^~2, 3~^~08/01/2012~ -~05695~^~621~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.003^0.007^~2, 3~^~08/01/2012~ -~05695~^~624~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~05695~^~625~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.006^0.010^~2, 3~^~08/01/2012~ -~05695~^~626~^0.187^6^0.019^~1~^~AS~^^^1^0.112^0.219^5^0.139^0.235^~2, 3~^~08/01/2012~ -~05695~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~628~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.029^5^0.024^0.028^~2, 3~^~08/01/2012~ -~05695~^~629~^0.012^6^0.002^~1~^~A~^^^1^0.006^0.018^5^0.006^0.017^~2, 3~^~08/01/2012~ -~05695~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~08/01/2012~ -~05695~^~631~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.008^~2, 3~^~08/01/2012~ -~05695~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~652~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.012^~2, 3~^~08/01/2012~ -~05695~^~653~^0.017^6^0.002^~1~^~A~^^^1^0.013^0.024^5^0.013^0.021^~2, 3~^~08/01/2012~ -~05695~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~08/01/2012~ -~05695~^~663~^0.061^6^0.008^~1~^~A~^^^1^0.033^0.091^5^0.040^0.082^~2, 3~^~08/01/2012~ -~05695~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~665~^0.015^6^0.001^~1~^~A~^^^1^0.011^0.019^5^0.011^0.018^~2, 3~^~08/01/2012~ -~05695~^~670~^0.010^6^0.002^~1~^~A~^^^1^0.004^0.017^5^0.005^0.014^~2, 3~^~08/01/2012~ -~05695~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~672~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.010^0.014^~2, 3~^~08/01/2012~ -~05695~^~673~^0.182^6^0.018^~1~^~A~^^^1^0.109^0.214^5^0.135^0.230^~2, 3~^~08/01/2012~ -~05695~^~674~^1.771^6^0.047^~1~^~A~^^^1^1.616^1.960^5^1.651^1.891^~2, 3~^~08/01/2012~ -~05695~^~675~^1.411^6^0.079^~1~^~A~^^^1^1.202^1.648^5^1.209^1.613^~2, 3~^~08/01/2012~ -~05695~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~05695~^~685~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~05695~^~687~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.012^5^0.006^0.010^~2, 3~^~08/01/2012~ -~05695~^~689~^0.009^6^0.000^~1~^~AS~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~08/01/2012~ -~05695~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05695~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~851~^0.072^6^0.007^~1~^~A~^^^1^0.048^0.090^5^0.055^0.090^~2, 3~^~08/01/2012~ -~05695~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05695~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~08/01/2012~ -~05695~^~858~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.019^5^0.015^0.018^~2, 3~^~08/01/2012~ -~05696~^~312~^0.052^6^0.002^~1~^~A~^^^1^0.045^0.059^5^0.046^0.058^~2, 3~^~08/01/2012~ -~05696~^~315~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~08/01/2012~ -~05696~^~404~^0.033^6^0.005^~1~^~A~^^^1^0.020^0.051^5^0.021^0.045^~2, 3~^~08/01/2012~ -~05696~^~405~^0.145^6^0.012^~1~^~A~^^^1^0.110^0.180^5^0.115^0.175^~2, 3~^~08/01/2012~ -~05696~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~08/01/2012~ -~05696~^~410~^0.775^2^^~1~^~A~^^^1^0.720^0.830^1^^^^~08/01/2012~ -~05696~^~415~^0.775^6^0.021^~1~^~A~^^^1^0.731^0.861^5^0.722^0.829^~2, 3~^~08/01/2012~ -~05696~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~502~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~504~^1.493^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~505~^1.777^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~506~^0.563^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~507~^0.203^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~508~^0.694^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~509~^0.640^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~510~^0.688^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~511~^1.219^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~512~^0.584^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~513~^1.164^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~514~^1.722^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~515~^2.921^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~517~^1.163^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~518~^0.853^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05696~^~521~^0.110^2^^~1~^~A~^^^1^0.110^0.110^^^^^~08/01/2012~ -~05696~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~606~^0.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~610~^0.007^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~07/01/2015~ -~05696~^~611~^0.006^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~07/01/2015~ -~05696~^~612~^0.008^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.001^0.009^~1, 2, 3~^~07/01/2015~ -~05696~^~613~^0.328^6^0.022^~1~^~A~^^^1^0.132^0.267^5^0.121^0.233^~2, 3~^~07/01/2015~ -~05696~^~614~^0.172^6^0.008^~1~^~A~^^^1^0.075^0.115^5^0.073^0.112^~2, 3~^~07/01/2015~ -~05696~^~615~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2015~ -~05696~^~617~^0.437^6^0.035^~1~^~AS~^^^1^0.166^0.386^5^0.146^0.324^~2, 3~^~07/01/2015~ -~05696~^~618~^0.371^6^0.022^~1~^~AS~^^^1^0.137^0.284^5^0.142^0.257^~2, 3~^~07/01/2015~ -~05696~^~619~^0.017^6^0.001^~1~^~AS~^^^1^0.006^0.015^5^0.006^0.012^~2, 3~^~07/01/2015~ -~05696~^~620~^0.051^6^0.003^~1~^~A~^^^1^0.021^0.039^5^0.021^0.035^~2, 3~^~07/01/2015~ -~05696~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~07/01/2015~ -~05696~^~624~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~07/01/2015~ -~05696~^~625~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~07/01/2015~ -~05696~^~626~^0.042^6^0.006^~1~^~AS~^^^1^0.010^0.051^5^0.007^0.038^~2, 3~^~07/01/2015~ -~05696~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~628~^0.006^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.001^0.005^~1, 2, 3~^~07/01/2015~ -~05696~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~05696~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.001^0.004^~1, 2, 3~^~07/01/2015~ -~05696~^~645~^0.491^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~646~^0.479^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~07/01/2015~ -~05696~^~653~^0.005^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~07/01/2015~ -~05696~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~663~^0.018^6^0.001^~1~^~A~^^^1^0.007^0.012^5^0.008^0.011^~2, 3~^~07/01/2015~ -~05696~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~665~^0.006^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.005^~1, 2, 3~^~07/01/2015~ -~05696~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~08/01/2012~ -~05696~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^-0.001^0.004^~1, 2, 3~^~07/01/2015~ -~05696~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~07/01/2015~ -~05696~^~673~^0.042^6^0.006^~1~^~A~^^^1^0.010^0.051^5^0.007^0.038^~2, 3~^~07/01/2015~ -~05696~^~674~^0.419^6^0.034^~1~^~A~^^^1^0.155^0.374^5^0.138^0.313^~2, 3~^~07/01/2015~ -~05696~^~675~^0.364^6^0.022^~1~^~A~^^^1^0.133^0.281^5^0.139^0.254^~2, 3~^~07/01/2015~ -~05696~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~687~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~07/01/2015~ -~05696~^~689~^0.009^6^0.001^~1~^~AS~^^^1^0.003^0.007^5^0.004^0.006^~2, 3~^~07/01/2015~ -~05696~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05696~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~851~^0.017^6^0.001^~1~^~A~^^^1^0.006^0.015^5^0.006^0.012^~2, 3~^~07/01/2015~ -~05696~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05696~^~853~^0.009^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.004^0.006^~2, 3~^~07/01/2015~ -~05696~^~858~^0.016^6^0.001^~1~^~A~^^^1^0.006^0.013^5^0.006^0.011^~2, 3~^~07/01/2015~ -~05697~^~312~^0.062^6^0.002^~1~^~A~^^^1^0.055^0.070^5^0.056^0.068^~2, 3~^~08/01/2012~ -~05697~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~08/01/2012~ -~05697~^~404~^0.038^6^0.006^~1~^~A~^^^1^0.025^0.061^5^0.023^0.052^~2, 3~^~08/01/2012~ -~05697~^~405~^0.208^6^0.014^~1~^~A~^^^1^0.170^0.240^5^0.174^0.243^~2, 3~^~08/01/2012~ -~05697~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~08/01/2012~ -~05697~^~410~^0.900^2^^~1~^~A~^^^1^0.800^1.000^1^^^^~08/01/2012~ -~05697~^~415~^0.697^6^0.034^~1~^~A~^^^1^0.594^0.816^5^0.609^0.784^~2, 3~^~08/01/2012~ -~05697~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~503~^0.773^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~504~^1.869^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~505~^2.225^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~506~^0.705^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~508~^0.869^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~509~^0.801^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~510~^0.862^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~511~^1.527^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~512~^0.731^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~513~^1.458^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~514~^2.156^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~515~^3.657^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~516~^1.151^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~517~^1.457^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~518~^1.068^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05697~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~610~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.001^0.008^~1, 2, 3~^~08/01/2012~ -~05697~^~611~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.012^5^0.000^0.010^~1, 2, 3~^~08/01/2012~ -~05697~^~612~^0.018^6^0.002^~1~^~A~^^^1^0.013^0.028^5^0.012^0.023^~2, 3~^~08/01/2012~ -~05697~^~613~^0.372^6^0.020^~1~^~A~^^^1^0.286^0.433^5^0.320^0.424^~2, 3~^~08/01/2012~ -~05697~^~614~^0.181^6^0.009^~1~^~A~^^^1^0.156^0.209^5^0.157^0.205^~2, 3~^~08/01/2012~ -~05697~^~615~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~05697~^~617~^0.556^6^0.035^~1~^~AS~^^^1^0.438^0.685^5^0.466^0.647^~2, 3~^~08/01/2012~ -~05697~^~618~^0.431^6^0.029^~1~^~AS~^^^1^0.354^0.521^5^0.356^0.505^~2, 3~^~08/01/2012~ -~05697~^~619~^0.020^6^0.003^~1~^~AS~^^^1^0.013^0.029^5^0.014^0.027^~2, 3~^~08/01/2012~ -~05697~^~620~^0.044^6^0.001^~1~^~A~^^^1^0.039^0.048^5^0.040^0.047^~2, 3~^~08/01/2012~ -~05697~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~08/01/2012~ -~05697~^~624~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~05697~^~625~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~08/01/2012~ -~05697~^~626~^0.056^6^0.007^~1~^~AS~^^^1^0.031^0.075^5^0.038^0.073^~2, 3~^~08/01/2012~ -~05697~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~628~^0.008^6^0.001^~1~^~A~^^^1^0.004^0.011^5^0.006^0.011^~2, 3~^~08/01/2012~ -~05697~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.008^5^0.002^0.007^~1, 2, 3~^~08/01/2012~ -~05697~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~05697~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.005^~2, 3~^~08/01/2012~ -~05697~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~08/01/2012~ -~05697~^~653~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.003^0.007^~2, 3~^~08/01/2012~ -~05697~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~662~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~05697~^~663~^0.020^6^0.003^~1~^~A~^^^1^0.012^0.032^5^0.013^0.027^~2, 3~^~08/01/2012~ -~05697~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~665~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.006^5^0.002^0.005^~1, 2, 3~^~08/01/2012~ -~05697~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~05697~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~672~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.004^0.008^~2, 3~^~08/01/2012~ -~05697~^~673~^0.055^6^0.007^~1~^~A~^^^1^0.031^0.073^5^0.038^0.072^~2, 3~^~08/01/2012~ -~05697~^~674~^0.536^6^0.033^~1~^~A~^^^1^0.418^0.653^5^0.450^0.622^~2, 3~^~08/01/2012~ -~05697~^~675~^0.426^6^0.028^~1~^~A~^^^1^0.353^0.517^5^0.353^0.499^~2, 3~^~08/01/2012~ -~05697~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~05697~^~687~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.003^0.006^~1, 2, 3~^~08/01/2012~ -~05697~^~689~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~05697~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05697~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~851~^0.020^6^0.002^~1~^~A~^^^1^0.013^0.028^5^0.014^0.026^~2, 3~^~08/01/2012~ -~05697~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~05697~^~853~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~05697~^~858~^0.010^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.009^0.011^~2, 3~^~08/01/2012~ -~05698~^~312~^0.046^2^^~1~^~A~^^^1^0.039^0.052^1^^^^~08/01/2012~ -~05698~^~315~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~08/01/2012~ -~05698~^~404~^0.016^2^^~1~^~A~^^^1^0.014^0.018^1^^^^~08/01/2012~ -~05698~^~405~^0.095^2^^~1~^~A~^^^1^0.080^0.110^1^^^^~08/01/2012~ -~05698~^~406~^3.260^2^^~1~^~A~^^^1^2.860^3.660^1^^^^~08/01/2012~ -~05698~^~410~^0.495^2^^~1~^~A~^^^1^0.480^0.510^1^^^^~08/01/2012~ -~05698~^~415~^0.160^2^^~1~^~A~^^^1^0.141^0.179^1^^^^~08/01/2012~ -~05698~^~501~^0.062^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~502~^0.278^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~503~^0.237^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~504~^0.576^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~505~^0.638^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~506~^0.206^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~507~^0.093^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~508~^0.309^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~509~^0.216^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~510~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~511~^0.772^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~512~^0.206^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~513~^0.834^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~514~^0.741^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~515~^1.235^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~516~^1.595^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~517~^1.143^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~518~^0.401^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~521~^0.890^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05698~^~605~^0.557^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~606~^10.430^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05698~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05698~^~609~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~08/01/2012~ -~05698~^~610~^0.018^2^^~1~^~A~^^^1^0.015^0.021^1^^^^~08/01/2012~ -~05698~^~611~^0.139^2^^~1~^~A~^^^1^0.121^0.158^1^^^^~08/01/2012~ -~05698~^~612~^0.405^2^^~1~^~A~^^^1^0.338^0.473^1^^^^~08/01/2012~ -~05698~^~613~^7.214^2^^~1~^~A~^^^1^6.008^8.421^1^^^^~08/01/2012~ -~05698~^~614~^2.429^2^^~1~^~A~^^^1^1.893^2.965^1^^^^~08/01/2012~ -~05698~^~615~^0.037^2^^~1~^~A~^^^1^0.027^0.047^1^^^^~08/01/2012~ -~05698~^~617~^12.227^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~618~^9.976^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~619~^0.632^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~620~^0.139^2^^~1~^~A~^^^1^0.131^0.147^1^^^^~08/01/2012~ -~05698~^~621~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~08/01/2012~ -~05698~^~624~^0.016^2^^~1~^~A~^^^1^0.008^0.023^1^^^^~08/01/2012~ -~05698~^~625~^0.061^2^^~1~^~A~^^^1^0.058^0.065^1^^^^~08/01/2012~ -~05698~^~626~^1.365^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~627~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~08/01/2012~ -~05698~^~628~^0.185^2^^~1~^~A~^^^1^0.156^0.214^1^^^^~08/01/2012~ -~05698~^~629~^0.012^2^^~1~^~A~^^^1^0.009^0.015^1^^^^~08/01/2012~ -~05698~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~631~^0.018^2^^~1~^~A~^^^1^0.016^0.020^1^^^^~08/01/2012~ -~05698~^~645~^13.908^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05698~^~646~^10.860^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05698~^~652~^0.060^2^^~1~^~A~^^^1^0.050^0.070^1^^^^~08/01/2012~ -~05698~^~653~^0.102^2^^~1~^~A~^^^1^0.080^0.125^1^^^^~08/01/2012~ -~05698~^~654~^0.005^2^^~1~^~A~^^^1^0.003^0.007^1^^^^~08/01/2012~ -~05698~^~662~^0.026^2^^~1~^~A~^^^1^0.023^0.029^1^^^^~08/01/2012~ -~05698~^~663~^0.407^2^^~1~^~A~^^^1^0.316^0.497^1^^^^~08/01/2012~ -~05698~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05698~^~665~^0.125^2^^~1~^~A~^^^1^0.100^0.150^1^^^^~08/01/2012~ -~05698~^~670~^0.080^2^^~1~^~A~^^^1^0.074^0.086^1^^^^~08/01/2012~ -~05698~^~671~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~08/01/2012~ -~05698~^~672~^0.059^2^^~1~^~A~^^^1^0.050^0.068^1^^^^~08/01/2012~ -~05698~^~673~^1.340^2^^~1~^~A~^^^1^1.281^1.398^1^^^^~08/01/2012~ -~05698~^~674~^11.820^2^^~1~^~A~^^^1^10.085^13.556^1^^^^~08/01/2012~ -~05698~^~675~^9.771^2^^~1~^~A~^^^1^8.412^11.131^1^^^^~08/01/2012~ -~05698~^~676~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~08/01/2012~ -~05698~^~685~^0.021^2^^~1~^~A~^^^1^0.018^0.024^1^^^^~08/01/2012~ -~05698~^~687~^0.061^2^^~1~^~A~^^^1^0.052^0.070^1^^^^~08/01/2012~ -~05698~^~689~^0.041^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05698~^~693~^0.432^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~695~^0.125^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05698~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05698~^~851~^0.611^2^^~1~^~A~^^^1^0.529^0.694^1^^^^~08/01/2012~ -~05698~^~852~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~08/01/2012~ -~05698~^~853~^0.035^2^^~1~^~A~^^^1^0.031^0.040^1^^^^~08/01/2012~ -~05698~^~858~^0.028^2^^~1~^~A~^^^1^0.027^0.030^1^^^^~08/01/2012~ -~05699~^~312~^0.068^2^^~1~^~A~^^^1^0.067^0.069^1^^^^~08/01/2012~ -~05699~^~315~^0.025^2^^~1~^~A~^^^1^0.023^0.027^1^^^^~08/01/2012~ -~05699~^~404~^0.024^2^^~1~^~A~^^^1^0.019^0.029^1^^^^~08/01/2012~ -~05699~^~405~^0.235^2^^~1~^~A~^^^1^0.210^0.260^1^^^^~08/01/2012~ -~05699~^~406~^7.295^2^^~1~^~A~^^^1^6.010^8.580^1^^^^~08/01/2012~ -~05699~^~410~^0.920^2^^~1~^~A~^^^1^0.870^0.970^1^^^^~08/01/2012~ -~05699~^~415~^0.290^2^^~1~^~A~^^^1^0.284^0.296^1^^^^~08/01/2012~ -~05699~^~501~^0.111^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~502~^0.501^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~503~^0.427^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~504~^1.039^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~505~^1.151^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~506~^0.371^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~507~^0.167^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~508~^0.557^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~509~^0.390^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~510~^0.612^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~511~^1.392^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~512~^0.371^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~513~^1.503^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~514~^1.336^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~515~^2.227^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~516~^2.876^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~517~^2.060^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~518~^0.724^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~05699~^~605~^0.568^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~606~^11.356^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05699~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05699~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05699~^~610~^0.011^2^^~1~^~A~^^^1^0.000^0.022^1^^^~1~^~08/01/2012~ -~05699~^~611~^0.138^2^^~1~^~A~^^^1^0.133^0.144^1^^^^~08/01/2012~ -~05699~^~612~^0.423^2^^~1~^~A~^^^1^0.397^0.450^1^^^^~08/01/2012~ -~05699~^~613~^7.883^2^^~1~^~A~^^^1^7.418^8.348^1^^^^~08/01/2012~ -~05699~^~614~^2.664^2^^~1~^~A~^^^1^2.371^2.957^1^^^^~08/01/2012~ -~05699~^~615~^0.040^2^^~1~^~A~^^^1^0.034^0.046^1^^^^~08/01/2012~ -~05699~^~617~^13.248^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~618~^10.833^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~619~^0.677^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~620~^0.191^2^^~1~^~A~^^^1^0.179^0.204^1^^^^~08/01/2012~ -~05699~^~621~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~08/01/2012~ -~05699~^~624~^0.017^2^^~1~^~A~^^^1^0.009^0.025^1^^^^~08/01/2012~ -~05699~^~625~^0.064^2^^~1~^~A~^^^1^0.062^0.067^1^^^^~08/01/2012~ -~05699~^~626~^1.507^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~627~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~08/01/2012~ -~05699~^~628~^0.202^2^^~1~^~A~^^^1^0.193^0.212^1^^^^~08/01/2012~ -~05699~^~629~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~08/01/2012~ -~05699~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~631~^0.023^2^^~1~^~A~^^^1^0.022^0.024^1^^^^~08/01/2012~ -~05699~^~645~^15.094^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~646~^11.903^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~652~^0.064^2^^~1~^~A~^^^1^0.059^0.068^1^^^^~08/01/2012~ -~05699~^~653~^0.109^2^^~1~^~A~^^^1^0.097^0.121^1^^^^~08/01/2012~ -~05699~^~654~^0.006^2^^~1~^~A~^^^1^0.004^0.009^1^^^^~08/01/2012~ -~05699~^~662~^0.028^2^^~1~^~A~^^^1^0.027^0.029^1^^^^~08/01/2012~ -~05699~^~663~^0.415^2^^~1~^~A~^^^1^0.368^0.462^1^^^^~08/01/2012~ -~05699~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05699~^~665~^0.125^2^^~1~^~A~^^^1^0.124^0.127^1^^^^~08/01/2012~ -~05699~^~670~^0.076^2^^~1~^~A~^^^1^0.075^0.077^1^^^^~08/01/2012~ -~05699~^~671~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~08/01/2012~ -~05699~^~672~^0.062^2^^~1~^~A~^^^1^0.059^0.064^1^^^^~08/01/2012~ -~05699~^~673~^1.479^2^^~1~^~A~^^^1^1.405^1.553^1^^^^~08/01/2012~ -~05699~^~674~^12.833^2^^~1~^~A~^^^1^12.307^13.359^1^^^^~08/01/2012~ -~05699~^~675~^10.632^2^^~1~^~A~^^^1^10.185^11.079^1^^^^~08/01/2012~ -~05699~^~676~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~08/01/2012~ -~05699~^~685~^0.020^2^^~1~^~A~^^^1^0.019^0.021^1^^^^~08/01/2012~ -~05699~^~687~^0.062^2^^~1~^~A~^^^1^0.061^0.063^1^^^^~08/01/2012~ -~05699~^~689~^0.049^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~05699~^~693~^0.443^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~695~^0.125^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~05699~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~05699~^~851~^0.657^2^^~1~^~A~^^^1^0.628^0.687^1^^^^~08/01/2012~ -~05699~^~852~^0.005^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~08/01/2012~ -~05699~^~853~^0.044^2^^~1~^~A~^^^1^0.043^0.045^1^^^^~08/01/2012~ -~05699~^~858~^0.039^2^^~1~^~A~^^^1^0.037^0.042^1^^^^~08/01/2012~ -~05700~^~312~^0.094^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~404~^0.051^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~405~^0.216^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~406~^5.235^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~410~^0.845^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~415~^0.370^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~501~^0.176^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~502~^0.613^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~503~^0.488^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~504~^1.180^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~505~^1.395^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~506~^0.443^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~507~^0.164^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~508~^0.557^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~509~^0.499^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~510~^0.559^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~511~^1.025^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~512~^0.457^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~513~^0.999^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~514~^1.377^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~515~^2.330^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~516~^0.981^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~517~^1.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~518~^0.689^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~521~^0.302^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05700~^~606~^2.600^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05700~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~612~^0.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~613~^1.760^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~614~^0.640^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~617~^3.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2016~ -~05700~^~618~^3.441^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~619~^0.209^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~620~^0.096^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~626~^0.424^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~628~^0.059^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~645~^4.400^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05700~^~646~^3.810^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05700~^~652~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~653~^0.026^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~662~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~663~^0.131^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~665~^0.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~670~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~671~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~672~^0.023^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~673~^0.416^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~674~^3.747^0^^~1~^~PAK~^^^^^^^^^^~03/01/2016~ -~05700~^~675~^3.373^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~685~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~687~^0.019^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~689~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~693~^0.140^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05700~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~05700~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~851~^0.202^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05700~^~853~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05700~^~858~^0.022^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05701~^~312~^0.119^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~315~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~404~^0.052^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~405~^0.321^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~406~^6.893^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~410~^1.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~415~^0.415^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~501~^0.255^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~502~^0.885^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~503~^0.703^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~504~^1.701^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~505~^2.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~506~^0.639^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~507~^0.235^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~508~^0.802^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~509~^0.721^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~510~^0.803^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~511~^1.466^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~512~^0.660^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~513~^1.424^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~514~^1.982^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~515~^3.356^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~516~^1.361^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~517~^1.501^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~518~^0.991^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~605~^0.148^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~606~^3.145^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~612~^0.112^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~613~^2.117^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~614~^0.807^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~617~^3.431^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~618~^2.752^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~619~^0.160^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~620~^0.102^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~626~^0.372^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~628~^0.051^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~629~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~645~^3.887^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~646~^3.097^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~653~^0.030^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~662~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~663~^0.110^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~665~^0.030^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~670~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~672~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~673~^0.364^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~674~^3.321^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~675~^2.703^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~685~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~687~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~689~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~693~^0.118^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~695~^0.030^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05701~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~851~^0.154^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05701~^~858~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~312~^0.051^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~404~^0.030^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~405~^0.137^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~406~^8.832^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~410~^0.729^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~415~^0.675^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~501~^0.202^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~502~^0.700^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~503~^0.555^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~504~^1.342^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~505~^1.591^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~506~^0.505^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~507~^0.185^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~508~^0.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~509~^0.570^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~510~^0.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~511~^1.146^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~512~^0.522^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~513~^1.110^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~514~^1.561^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~515~^2.645^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~516~^1.030^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~517~^1.160^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~518~^0.779^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~521~^0.238^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~605~^0.132^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05702~^~606~^1.350^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05702~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~612~^0.048^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~613~^0.921^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~614~^0.329^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~617~^2.818^0^^~1~^~PAK~^^^^^^^^^^~03/01/2016~ -~05702~^~618~^2.350^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~619~^0.145^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~620~^0.060^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~625~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~626~^0.311^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~628~^0.042^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~631~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~645~^3.200^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05702~^~646~^2.600^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05702~^~652~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~663~^0.096^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~665~^0.031^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~670~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~672~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~673~^0.304^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~674~^2.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2016~ -~05702~^~675~^2.302^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~687~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~693~^0.101^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05702~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05702~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~851~^0.141^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05702~^~853~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05702~^~858~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05703~^~312~^0.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~404~^0.036^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~405~^0.211^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~406~^11.336^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~410~^0.902^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~415~^0.659^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~501~^0.271^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~502~^0.935^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~503~^0.741^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~504~^1.792^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~505~^2.125^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~506~^0.674^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~507~^0.246^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~508~^0.840^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~509~^0.763^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~510~^0.839^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~511~^1.514^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~512~^0.698^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~513~^1.462^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~514~^2.080^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~515~^3.524^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~516~^1.311^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~517~^1.513^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~518~^1.036^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~605~^0.075^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~606~^1.593^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~611~^0.017^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~612~^0.056^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~613~^1.070^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~614~^0.412^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~617~^1.736^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~618~^1.397^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~619~^0.081^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~620~^0.057^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~626~^0.190^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~628~^0.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~631~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~645~^1.971^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~646~^1.585^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~653~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~663~^0.057^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~670~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~673~^0.187^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~674~^1.679^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~675~^1.374^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~687~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~693~^0.060^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05703~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~851~^0.079^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05703~^~858~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~312~^0.068^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~404~^0.041^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~405~^0.175^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~406~^8.690^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~410~^0.822^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~415~^0.672^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~501~^0.222^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~502~^0.758^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~503~^0.598^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~504~^1.446^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~505~^1.722^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~506~^0.546^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~507~^0.197^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~508~^0.673^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~509~^0.620^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~510~^0.667^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~511~^1.181^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~512~^0.566^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~513~^1.128^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~514~^1.668^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~515~^2.830^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~516~^0.890^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~517~^1.127^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~518~^0.827^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~521~^0.122^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~605~^0.025^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~606~^0.535^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~612~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~613~^0.338^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~614~^0.158^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~617~^0.491^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~618~^0.395^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~619~^0.020^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~626~^0.050^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~631~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~645~^0.736^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~646~^0.630^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~653~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~662~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~663~^0.018^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~665~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~670~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~672~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~673~^0.049^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~674~^0.473^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~675~^0.388^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~687~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~693~^0.019^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~695~^0.005^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05704~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~851~^0.019^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05704~^~858~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~312~^0.089^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~404~^0.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~405~^0.261^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~406~^9.721^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~410~^0.947^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~415~^0.589^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~501~^0.283^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~502~^0.967^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~503~^0.763^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~504~^1.844^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~505~^2.196^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~506~^0.696^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~507~^0.251^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~508~^0.858^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~509~^0.790^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~510~^0.851^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~511~^1.507^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~512~^0.721^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~513~^1.439^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~514~^2.128^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~515~^3.609^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~516~^1.135^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~517~^1.437^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~518~^1.054^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~605~^0.047^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~606~^1.093^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~612~^0.036^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~613~^0.704^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~614~^0.315^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~617~^1.082^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~618~^0.845^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~619~^0.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~620~^0.062^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~625~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~626~^0.110^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~628~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~629~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~631~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~645~^1.218^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~646~^0.996^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~653~^0.010^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~662~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~663~^0.037^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~665~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~670~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~672~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~673~^0.107^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~674~^1.045^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~675~^0.832^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~687~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05705~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~851~^0.042^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05705~^~858~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~404~^0.039^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~405~^0.170^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~406~^7.246^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~410~^0.777^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~415~^0.540^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~501~^0.190^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~502~^0.659^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~503~^0.524^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~504~^1.267^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~505~^1.499^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~506~^0.476^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~507~^0.175^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~508~^0.597^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~509~^0.537^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~510~^0.598^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~511~^1.091^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~512~^0.492^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~513~^1.060^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~514~^1.476^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~515~^2.499^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~516~^1.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~517~^1.118^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~518~^0.738^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~521~^0.270^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~605~^0.163^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05706~^~606~^1.700^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05706~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~612~^0.063^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~613~^1.155^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~614~^0.416^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~617~^3.436^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~618~^3.164^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~619~^0.194^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~620~^0.083^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~626~^0.378^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~628~^0.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~645~^3.900^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05706~^~646~^3.500^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05706~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~653~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~663~^0.116^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~665~^0.040^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~670~^0.023^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~672~^0.021^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~673~^0.370^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~674~^3.320^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~675~^3.101^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~685~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~687~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~689~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~693~^0.123^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05706~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05706~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~851~^0.188^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05706~^~853~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05706~^~858~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05707~^~312~^0.087^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~404~^0.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~405~^0.257^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~406~^9.436^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~410~^0.944^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~415~^0.554^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~501~^0.263^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~502~^0.912^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~503~^0.723^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~504~^1.749^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~505~^2.073^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~506~^0.657^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~507~^0.241^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~508~^0.822^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~509~^0.743^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~510~^0.823^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~511~^1.493^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~512~^0.680^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~513~^1.446^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~514~^2.035^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~515~^3.446^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~516~^1.340^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~517~^1.511^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~518~^1.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~605~^0.108^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~606~^2.301^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~611~^0.026^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~612~^0.082^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~613~^1.549^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~614~^0.591^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~617~^2.514^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~618~^2.021^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~619~^0.118^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~626~^0.274^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~628~^0.038^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~629~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~645~^2.851^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~646~^2.280^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~652~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~653~^0.022^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~663~^0.081^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~665~^0.022^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~670~^0.013^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~672~^0.015^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~673~^0.269^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~674~^2.433^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~675~^1.986^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~689~^0.012^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~693~^0.087^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~695~^0.022^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~ -~05707~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~851~^0.114^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~853~^0.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05707~^~858~^0.016^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~05708~^~312~^0.043^3^0.006^~1~^~A~^^^1^0.032^0.050^2^0.018^0.068^~2, 3~^~01/01/2013~ -~05708~^~315~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.010^~2, 3~^~01/01/2013~ -~05708~^~404~^0.049^2^^~1~^~A~^^^1^0.029^0.070^1^^^^~01/01/2013~ -~05708~^~405~^0.155^2^^~1~^~A~^^^1^0.150^0.160^1^^^^~01/01/2013~ -~05708~^~406~^10.000^2^^~1~^~A~^^^1^9.700^10.300^1^^^^~01/01/2013~ -~05708~^~410~^0.950^2^^~1~^~A~^^^1^0.900^1.000^1^^^^~01/01/2013~ -~05708~^~415~^0.840^2^^~1~^~A~^^^1^0.806^0.874^1^^^^~01/01/2013~ -~05708~^~501~^0.257^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~502~^0.987^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~503~^0.822^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~504~^1.778^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~505~^2.087^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~506~^0.617^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~507~^0.206^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~508~^0.791^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~509~^0.761^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~510~^0.874^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~511~^1.429^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~512~^0.709^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~513~^1.305^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~514~^2.046^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~515~^3.228^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~516~^0.976^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~517~^1.028^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~518~^0.915^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~521~^0.080^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05708~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05708~^~606~^0.600^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05708~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~609~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2014~ -~05708~^~610~^0.004^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2014~ -~05708~^~611~^0.004^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2014~ -~05708~^~612~^0.006^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~06/01/2014~ -~05708~^~613~^0.335^2^^~1~^~A~^^^1^0.121^0.152^1^^^^~06/01/2014~ -~05708~^~614~^0.226^2^^~1~^~A~^^^1^0.091^0.093^1^^^^~06/01/2014~ -~05708~^~615~^0.004^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2014~ -~05708~^~617~^1.640^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~618~^1.146^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~619~^0.037^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~620~^0.347^2^^~1~^~A~^^^1^0.039^0.053^1^^^^~03/01/2017~ -~05708~^~621~^0.030^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~03/01/2017~ -~05708~^~624~^0.010^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~06/01/2014~ -~05708~^~625~^0.006^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~03/01/2017~ -~05708~^~626~^0.145^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~628~^0.020^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2017~ -~05708~^~629~^0.011^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~03/01/2017~ -~05708~^~630~^0.048^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~631~^0.034^2^^~1~^~A~^^^1^0.003^0.006^1^^^^~03/01/2017~ -~05708~^~645~^3.710^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05708~^~646~^2.903^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05708~^~652~^0.004^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2014~ -~05708~^~653~^0.006^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2014~ -~05708~^~654~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2014~ -~05708~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~663~^0.073^2^^~1~^~A~^^^1^0.007^0.007^^^^^~03/01/2017~ -~05708~^~664~^0.044^2^^~1~^~A~^^^1^0.000^0.008^1^^^~1~^~03/01/2017~ -~05708~^~665~^0.011^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~03/01/2017~ -~05708~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~671~^0.006^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~03/01/2017~ -~05708~^~672~^0.023^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~03/01/2017~ -~05708~^~673~^0.145^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~03/01/2017~ -~05708~^~674~^1.568^2^^~1~^~A~^^^1^0.138^0.165^1^^^^~03/01/2017~ -~05708~^~675~^1.134^2^^~1~^~A~^^^1^0.147^0.154^1^^^^~03/01/2017~ -~05708~^~676~^0.006^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~03/01/2017~ -~05708~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~687~^0.010^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~03/01/2017~ -~05708~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~03/01/2017~ -~05708~^~693~^0.117^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05708~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~05708~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~851~^0.037^2^^~1~^~A~^^^1^0.005^0.005^^^^^~03/01/2017~ -~05708~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05708~^~853~^0.011^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~03/01/2017~ -~05708~^~858~^0.071^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~03/01/2017~ -~05709~^~312~^0.057^3^0.004^~1~^~A~^^^1^0.050^0.063^2^0.041^0.074^~2, 3~^~01/01/2013~ -~05709~^~315~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~01/01/2013~ -~05709~^~404~^0.045^2^^~1~^~A~^^^1^0.026^0.063^1^^^^~01/01/2013~ -~05709~^~405~^0.195^2^^~1~^~A~^^^1^0.190^0.200^1^^^^~01/01/2013~ -~05709~^~406~^11.500^2^^~1~^~A~^^^1^11.200^11.800^1^^^^~01/01/2013~ -~05709~^~410~^0.965^2^^~1~^~A~^^^1^0.830^1.100^1^^^^~01/01/2013~ -~05709~^~415~^0.734^2^^~1~^~A~^^^1^0.631^0.838^1^^^^~01/01/2013~ -~05709~^~501~^0.327^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~502~^1.254^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~503~^1.045^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~504~^2.260^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~505~^2.652^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~506~^0.784^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~507~^0.261^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~508~^1.006^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~509~^0.967^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~510~^1.110^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~511~^1.816^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~512~^0.901^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~513~^1.659^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~514~^2.600^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~515~^4.102^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~516~^1.241^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~517~^1.306^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~518~^1.163^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05709~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~606~^0.428^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~607~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~01/01/2013~ -~05709~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~609~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05709~^~610~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05709~^~611~^0.005^2^^~1~^~A~^^^1^0.002^0.008^1^^^~1~^~01/01/2013~ -~05709~^~612~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~01/01/2013~ -~05709~^~613~^0.238^2^^~1~^~A~^^^1^0.238^0.238^^^^^~01/01/2013~ -~05709~^~614~^0.152^2^^~1~^~A~^^^1^0.151^0.154^1^^^^~01/01/2013~ -~05709~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05709~^~617~^0.298^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~618~^0.273^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~620~^0.060^2^^~1~^~A~^^^1^0.053^0.068^1^^^^~01/01/2013~ -~05709~^~621~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~01/01/2013~ -~05709~^~624~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05709~^~625~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05709~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~628~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2013~ -~05709~^~629~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05709~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~631~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~01/01/2013~ -~05709~^~645~^0.670^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05709~^~646~^0.668^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~05709~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05709~^~653~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05709~^~654~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05709~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~663~^0.012^2^^~1~^~A~^^^1^0.011^0.013^1^^^^~01/01/2013~ -~05709~^~664~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~01/01/2013~ -~05709~^~665~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05709~^~670~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05709~^~671~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05709~^~672~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05709~^~673~^0.028^2^^~1~^~A~^^^1^0.026^0.030^1^^^^~01/01/2013~ -~05709~^~674~^0.286^2^^~1~^~A~^^^1^0.256^0.316^1^^^^~01/01/2013~ -~05709~^~675~^0.268^2^^~1~^~A~^^^1^0.228^0.309^1^^^^~01/01/2013~ -~05709~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.003^1^^^~1~^~01/01/2013~ -~05709~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05709~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05709~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~851~^0.011^2^^~1~^~A~^^^1^0.008^0.014^1^^^^~01/01/2013~ -~05709~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05709~^~853~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~01/01/2013~ -~05709~^~858~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^^~01/01/2013~ -~05710~^~312~^0.054^3^0.004^~1~^~A~^^^1^0.047^0.060^2^0.038^0.070^~2, 3~^~01/01/2013~ -~05710~^~315~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.005^0.006^~2, 3~^~01/01/2013~ -~05710~^~404~^0.052^2^^~1~^~A~^^^1^0.050^0.055^1^^^^~01/01/2013~ -~05710~^~405~^0.165^2^^~1~^~A~^^^1^0.160^0.170^1^^^^~01/01/2013~ -~05710~^~406~^10.295^2^^~1~^~A~^^^1^9.590^11.000^1^^^^~01/01/2013~ -~05710~^~410~^1.050^2^^~1~^~A~^^^1^1.000^1.100^1^^^^~01/01/2013~ -~05710~^~415~^0.814^2^^~1~^~A~^^^1^0.784^0.845^1^^^^~01/01/2013~ -~05710~^~501~^0.288^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~502~^1.016^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~503~^0.837^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~504~^1.932^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~505~^2.406^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~506~^0.651^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~507~^0.224^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~508~^0.845^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~509~^0.801^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~510~^0.879^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~511~^1.485^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~512~^0.715^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~513~^1.408^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~514~^2.203^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~515~^3.581^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~516~^1.090^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~517~^1.127^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~518~^0.988^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~521~^0.070^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05710~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~606~^0.344^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~607~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~01/01/2013~ -~05710~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~612~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~01/01/2013~ -~05710~^~613~^0.200^2^^~1~^~A~^^^1^0.174^0.226^1^^^^~01/01/2013~ -~05710~^~614~^0.122^2^^~1~^~A~^^^1^0.107^0.136^1^^^^~01/01/2013~ -~05710~^~615~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05710~^~617~^0.260^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~618~^0.262^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~620~^0.049^2^^~1~^~A~^^^1^0.044^0.055^1^^^^~01/01/2013~ -~05710~^~621~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05710~^~624~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~01/01/2013~ -~05710~^~625~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05710~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~628~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05710~^~629~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~01/01/2013~ -~05710~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~631~^0.005^2^^~1~^~A~^^^1^0.002^0.007^1^^^~1~^~01/01/2013~ -~05710~^~645~^0.562^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05710~^~646~^0.639^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05710~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05710~^~653~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05710~^~654~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05710~^~662~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05710~^~663~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~01/01/2013~ -~05710~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~665~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05710~^~670~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05710~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~672~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05710~^~673~^0.017^2^^~1~^~A~^^^1^0.014^0.020^1^^^^~01/01/2013~ -~05710~^~674~^0.251^2^^~1~^~A~^^^1^0.210^0.293^1^^^^~01/01/2013~ -~05710~^~675~^0.257^2^^~1~^~A~^^^1^0.212^0.303^1^^^^~01/01/2013~ -~05710~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05710~^~685~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05710~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05710~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05710~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05710~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~851~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~01/01/2013~ -~05710~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05710~^~853~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~01/01/2013~ -~05710~^~858~^0.011^2^^~1~^~A~^^^1^0.010^0.012^1^^^^~01/01/2013~ -~05711~^~312~^0.060^3^0.002^~1~^~A~^^^1^0.056^0.063^2^0.050^0.069^~2, 3~^~01/01/2013~ -~05711~^~315~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~01/01/2013~ -~05711~^~404~^0.043^2^^~1~^~A~^^^1^0.042^0.044^1^^^^~01/01/2013~ -~05711~^~405~^0.190^2^^~1~^~A~^^^1^0.190^0.190^^^^^~01/01/2013~ -~05711~^~406~^11.750^2^^~1~^~A~^^^1^11.300^12.200^1^^^^~01/01/2013~ -~05711~^~410~^1.035^2^^~1~^~A~^^^1^0.970^1.100^1^^^^~01/01/2013~ -~05711~^~415~^0.830^2^^~1~^~A~^^^1^0.797^0.864^1^^^^~01/01/2013~ -~05711~^~501~^0.364^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~502~^1.285^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~503~^1.058^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~504~^2.442^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~505~^3.042^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~506~^0.823^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~508~^1.068^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~509~^1.013^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~510~^1.112^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~511~^1.878^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~512~^0.904^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~513~^1.781^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~514~^2.786^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~515~^4.528^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~516~^1.378^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~517~^1.425^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~518~^1.249^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05711~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05711~^~606~^0.660^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05711~^~607~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~01/01/2013~ -~05711~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05711~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2014~ -~05711~^~610~^0.002^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~06/01/2014~ -~05711~^~611~^0.002^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~06/01/2014~ -~05711~^~612~^0.018^2^^~1~^~A~^^^1^0.016^0.030^1^^^^~06/01/2014~ -~05711~^~613~^0.402^2^^~1~^~A~^^^1^0.383^0.647^1^^^^~06/01/2014~ -~05711~^~614~^0.214^2^^~1~^~A~^^^1^0.211^0.336^1^^^^~06/01/2014~ -~05711~^~615~^0.003^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~06/01/2014~ -~05711~^~617~^0.580^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05711~^~618~^0.548^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05711~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05711~^~620~^0.054^2^^~1~^~A~^^^1^0.054^0.082^1^^^^~06/01/2014~ -~05711~^~621~^0.005^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~06/01/2014~ -~05711~^~624~^0.004^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~06/01/2014~ -~05711~^~625~^0.003^2^^~1~^~A~^^^1^0.002^0.006^1^^^~1~^~06/01/2014~ -~05711~^~626~^0.044^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05711~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05711~^~628~^0.010^2^^~1~^~A~^^^1^0.011^0.015^1^^^^~06/01/2014~ -~05711~^~629~^0.001^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2014~ -~05711~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05711~^~631~^0.007^2^^~1~^~A~^^^1^0.007^0.010^1^^^^~06/01/2014~ -~05711~^~645~^0.640^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05711~^~646~^0.670^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05711~^~652~^0.004^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~06/01/2014~ -~05711~^~653~^0.007^2^^~1~^~A~^^^1^0.006^0.011^1^^^^~06/01/2014~ -~05711~^~654~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05711~^~662~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05711~^~663~^0.018^2^^~1~^~A~^^^1^0.018^0.028^1^^^^~06/01/2014~ -~05711~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05711~^~665~^0.005^2^^~1~^~A~^^^1^0.004^0.009^1^^^^~06/01/2014~ -~05711~^~670~^0.002^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2014~ -~05711~^~671~^0.002^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2014~ -~05711~^~672~^0.006^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~06/01/2014~ -~05711~^~673~^0.042^2^^~1~^~A~^^^1^0.037^0.073^1^^^^~06/01/2014~ -~05711~^~674~^0.562^2^^~1~^~A~^^^1^0.534^0.934^1^^^^~06/01/2014~ -~05711~^~675~^0.540^2^^~1~^~A~^^^1^0.472^0.889^1^^^^~06/01/2014~ -~05711~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05711~^~685~^0.002^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2014~ -~05711~^~687~^0.003^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~06/01/2014~ -~05711~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05711~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05711~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05711~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05711~^~851~^0.034^2^^~1~^~A~^^^1^0.029^0.057^1^^^^~06/01/2014~ -~05711~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05711~^~853~^0.006^2^^~1~^~A~^^^1^0.006^0.009^1^^^^~06/01/2014~ -~05711~^~858~^0.013^2^^~1~^~A~^^^1^0.013^0.020^1^^^^~06/01/2014~ -~05712~^~312~^0.047^4^0.002^~1~^~A~^^^1^0.045^0.052^3^0.041^0.053^~2, 3~^~01/01/2013~ -~05712~^~315~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.003^0.006^~2, 3~^~01/01/2013~ -~05712~^~404~^0.038^3^0.003^~1~^~A~^^^1^0.033^0.042^2^0.027^0.049^~2, 3~^~01/01/2013~ -~05712~^~405~^0.127^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.098^0.155^~2, 3~^~01/01/2013~ -~05712~^~406~^6.377^3^0.884^~1~^~A~^^^1^4.620^7.420^2^2.575^10.178^~2, 3~^~01/01/2013~ -~05712~^~410~^0.680^2^^~1~^~A~^^^1^0.640^0.720^1^^^^~01/01/2013~ -~05712~^~415~^0.705^3^0.023^~1~^~A~^^^1^0.661^0.741^2^0.604^0.805^~2, 3~^~01/01/2013~ -~05712~^~501~^0.277^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~503~^0.806^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~504~^1.861^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~505~^2.317^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~506~^0.627^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~507~^0.215^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~508~^0.814^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~509~^0.772^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~510~^0.847^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~511~^1.431^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~512~^0.689^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~513~^1.356^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~514~^2.122^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~515~^3.449^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~516~^1.050^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~517~^1.086^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~518~^0.952^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05712~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~606~^0.458^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~607~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05712~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05712~^~609~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05712~^~610~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~01/01/2013~ -~05712~^~611~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05712~^~612~^0.011^2^^~1~^~A~^^^1^0.010^0.012^1^^^^~01/01/2013~ -~05712~^~613~^0.282^2^^~1~^~A~^^^1^0.263^0.301^1^^^^~01/01/2013~ -~05712~^~614~^0.141^2^^~1~^~A~^^^1^0.123^0.160^1^^^^~01/01/2013~ -~05712~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05712~^~617~^0.410^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~618~^0.361^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~620~^0.056^2^^~1~^~A~^^^1^0.049^0.063^1^^^^~01/01/2013~ -~05712~^~621~^0.005^2^^~1~^~A~^^^1^0.003^0.006^1^^^^~01/01/2013~ -~05712~^~624~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05712~^~625~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05712~^~626~^0.052^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05712~^~628~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~01/01/2013~ -~05712~^~629~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05712~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~631~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~01/01/2013~ -~05712~^~645~^0.478^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~646~^0.472^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~01/01/2013~ -~05712~^~653~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~01/01/2013~ -~05712~^~654~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~01/01/2013~ -~05712~^~662~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~01/01/2013~ -~05712~^~663~^0.012^2^^~1~^~A~^^^1^0.010^0.014^1^^^^~01/01/2013~ -~05712~^~664~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~01/01/2013~ -~05712~^~665~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05712~^~670~^0.002^2^^~1~^~A~^^^1^0.001^0.003^1^^^~1~^~01/01/2013~ -~05712~^~671~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05712~^~672~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~01/01/2013~ -~05712~^~673~^0.051^2^^~1~^~A~^^^1^0.049^0.054^1^^^^~01/01/2013~ -~05712~^~674~^0.398^2^^~1~^~A~^^^1^0.371^0.425^1^^^^~01/01/2013~ -~05712~^~675~^0.354^2^^~1~^~A~^^^1^0.319^0.390^1^^^^~01/01/2013~ -~05712~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05712~^~685~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~01/01/2013~ -~05712~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~01/01/2013~ -~05712~^~689~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05712~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05712~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05712~^~851~^0.019^2^^~1~^~A~^^^1^0.016^0.022^1^^^^~01/01/2013~ -~05712~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05712~^~853~^0.004^2^^~1~^~A~^^^1^0.000^0.007^1^^^~1~^~01/01/2013~ -~05712~^~858~^0.014^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~01/01/2013~ -~05713~^~312~^0.059^4^0.007^~1~^~A~^^^1^0.049^0.080^3^0.035^0.082^~2, 3~^~01/01/2013~ -~05713~^~315~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~01/01/2013~ -~05713~^~404~^0.039^3^0.004^~1~^~A~^^^1^0.032^0.045^2^0.023^0.055^~2, 3~^~01/01/2013~ -~05713~^~405~^0.180^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.114^0.246^~2, 3~^~01/01/2013~ -~05713~^~406~^8.470^3^0.328^~1~^~A~^^^1^7.870^9.000^2^7.058^9.882^~2, 3~^~01/01/2013~ -~05713~^~410~^0.735^2^^~1~^~A~^^^1^0.700^0.770^1^^^^~01/01/2013~ -~05713~^~415~^0.654^3^0.030^~1~^~A~^^^1^0.598^0.700^2^0.525^0.782^~2, 3~^~01/01/2013~ -~05713~^~501~^0.372^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~502~^1.313^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~503~^1.082^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~504~^2.497^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~505~^3.110^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~506~^0.842^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~508~^1.092^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~509~^1.036^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~510~^1.136^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~511~^1.920^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~512~^0.925^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~513~^1.820^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~514~^2.848^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~515~^4.629^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~516~^1.409^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~517~^1.457^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~518~^1.277^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05713~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~606~^1.357^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~607~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05713~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05713~^~609~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05713~^~610~^0.005^2^^~1~^~A~^^^1^0.003^0.006^1^^^^~01/01/2013~ -~05713~^~611~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~01/01/2013~ -~05713~^~612~^0.040^2^^~1~^~A~^^^1^0.034^0.045^1^^^^~01/01/2013~ -~05713~^~613~^0.904^2^^~1~^~A~^^^1^0.730^1.079^1^^^^~01/01/2013~ -~05713~^~614~^0.365^2^^~1~^~A~^^^1^0.317^0.413^1^^^^~01/01/2013~ -~05713~^~615~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~01/01/2013~ -~05713~^~617~^1.435^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~618~^1.214^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~619~^0.071^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~620~^0.086^2^^~1~^~A~^^^1^0.082^0.091^1^^^^~01/01/2013~ -~05713~^~621~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~01/01/2013~ -~05713~^~624~^0.006^2^^~1~^~A~^^^1^0.004^0.008^1^^^^~01/01/2013~ -~05713~^~625~^0.011^2^^~1~^~A~^^^1^0.010^0.013^1^^^^~01/01/2013~ -~05713~^~626~^0.195^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05713~^~628~^0.022^2^^~1~^~A~^^^1^0.019^0.026^1^^^^~01/01/2013~ -~05713~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~01/01/2013~ -~05713~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~631~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~01/01/2013~ -~05713~^~645~^1.680^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~646~^1.426^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~652~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~01/01/2013~ -~05713~^~653~^0.012^2^^~1~^~A~^^^1^0.011^0.014^1^^^^~01/01/2013~ -~05713~^~654~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2013~ -~05713~^~662~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05713~^~663~^0.036^2^^~1~^~A~^^^1^0.034^0.038^1^^^^~01/01/2013~ -~05713~^~664~^0.005^2^^~1~^~A~^^^1^0.000^0.011^1^^^~1~^~01/01/2013~ -~05713~^~665~^0.011^2^^~1~^~A~^^^1^0.008^0.015^1^^^^~01/01/2013~ -~05713~^~670~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~01/01/2013~ -~05713~^~671~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05713~^~672~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~01/01/2013~ -~05713~^~673~^0.191^2^^~1~^~A~^^^1^0.157^0.225^1^^^^~01/01/2013~ -~05713~^~674~^1.400^2^^~1~^~A~^^^1^1.138^1.661^1^^^^~01/01/2013~ -~05713~^~675~^1.196^2^^~1~^~A~^^^1^0.980^1.412^1^^^^~01/01/2013~ -~05713~^~676~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~01/01/2013~ -~05713~^~685~^0.003^2^^~1~^~A~^^^1^0.001^0.004^1^^^~1~^~01/01/2013~ -~05713~^~687~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~01/01/2013~ -~05713~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05713~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05713~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05713~^~851~^0.069^2^^~1~^~A~^^^1^0.061^0.077^1^^^^~01/01/2013~ -~05713~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2013~ -~05713~^~853~^0.005^2^^~1~^~A~^^^1^0.000^0.011^1^^^~1~^~01/01/2013~ -~05713~^~858~^0.020^2^^~1~^~A~^^^1^0.020^0.021^1^^^^~01/01/2013~ -~05714~^~312~^0.041^2^^~1~^~A~^^^1^0.040^0.042^1^^^^~01/01/2013~ -~05714~^~315~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~01/01/2013~ -~05714~^~404~^0.026^2^^~1~^~A~^^^1^0.025^0.027^1^^^^~01/01/2013~ -~05714~^~405~^0.080^2^^~1~^~A~^^^1^0.080^0.080^^^^^~01/01/2013~ -~05714~^~406~^2.745^2^^~1~^~A~^^^1^2.700^2.790^1^^^^~01/01/2013~ -~05714~^~410~^0.590^2^^~1~^~A~^^^1^0.570^0.610^1^^^^~01/01/2013~ -~05714~^~415~^0.114^2^^~1~^~A~^^^1^0.100^0.128^1^^^^~01/01/2013~ -~05714~^~501~^0.055^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~502~^0.345^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~503~^0.259^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~504~^0.609^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~505~^0.748^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~506~^0.195^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~507~^0.089^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~508~^0.339^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~509~^0.220^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~510~^0.354^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~511~^0.898^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~512~^0.190^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~513~^0.964^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~514~^0.814^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~515~^1.353^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~516~^2.032^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~517~^1.342^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~518~^0.414^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05714~^~521~^1.130^2^^~1~^~A~^^^1^1.030^1.230^1^^^^~01/01/2013~ -~05714~^~605~^0.469^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~606~^10.216^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05714~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05714~^~609~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~05714~^~610~^0.015^2^^~1~^~A~^^^1^0.012^0.018^1^^^^~01/01/2013~ -~05714~^~611~^0.100^2^^~1~^~A~^^^1^0.055^0.146^1^^^^~01/01/2013~ -~05714~^~612~^0.359^2^^~1~^~A~^^^1^0.283^0.435^1^^^^~01/01/2013~ -~05714~^~613~^7.269^2^^~1~^~A~^^^1^5.471^9.068^1^^^^~01/01/2013~ -~05714~^~614~^2.261^2^^~1~^~A~^^^1^1.772^2.750^1^^^^~01/01/2013~ -~05714~^~615~^0.041^2^^~1~^~A~^^^1^0.029^0.053^1^^^^~01/01/2013~ -~05714~^~617~^12.063^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~618~^9.907^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~619~^0.702^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~620~^0.146^2^^~1~^~A~^^^1^0.127^0.166^1^^^^~01/01/2013~ -~05714~^~621~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~01/01/2013~ -~05714~^~624~^0.017^2^^~1~^~A~^^^1^0.011^0.024^1^^^^~01/01/2013~ -~05714~^~625~^0.077^2^^~1~^~A~^^^1^0.073^0.081^1^^^^~01/01/2013~ -~05714~^~626~^1.552^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~627~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~01/01/2013~ -~05714~^~628~^0.176^2^^~1~^~A~^^^1^0.148^0.205^1^^^^~01/01/2013~ -~05714~^~629~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~01/01/2013~ -~05714~^~630~^0.020^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~631~^0.017^2^^~1~^~A~^^^1^0.016^0.019^1^^^^~01/01/2013~ -~05714~^~645~^13.952^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~646~^10.910^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~652~^0.053^2^^~1~^~A~^^^1^0.046^0.060^1^^^^~01/01/2013~ -~05714~^~653~^0.091^2^^~1~^~A~^^^1^0.082^0.100^1^^^^~01/01/2013~ -~05714~^~654~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~01/01/2013~ -~05714~^~662~^0.027^2^^~1~^~A~^^^1^0.025^0.028^1^^^^~01/01/2013~ -~05714~^~663~^0.317^2^^~1~^~A~^^^1^0.269^0.366^1^^^^~01/01/2013~ -~05714~^~664~^0.016^2^^~1~^~A~^^^1^0.000^0.032^1^^^~1~^~01/01/2013~ -~05714~^~665~^0.109^2^^~1~^~A~^^^1^0.105^0.113^1^^^^~01/01/2013~ -~05714~^~670~^0.081^2^^~1~^~A~^^^1^0.070^0.092^1^^^^~01/01/2013~ -~05714~^~671~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~01/01/2013~ -~05714~^~672~^0.054^2^^~1~^~A~^^^1^0.047^0.061^1^^^^~01/01/2013~ -~05714~^~673~^1.525^2^^~1~^~A~^^^1^1.136^1.914^1^^^^~01/01/2013~ -~05714~^~674~^11.746^2^^~1~^~A~^^^1^9.293^14.199^1^^^^~01/01/2013~ -~05714~^~675~^9.718^2^^~1~^~A~^^^1^8.210^11.225^1^^^^~01/01/2013~ -~05714~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~01/01/2013~ -~05714~^~685~^0.021^2^^~1~^~A~^^^1^0.019^0.024^1^^^^~01/01/2013~ -~05714~^~687~^0.058^2^^~1~^~A~^^^1^0.056^0.060^1^^^^~01/01/2013~ -~05714~^~689~^0.028^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05714~^~693~^0.360^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~695~^0.109^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05714~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05714~^~851~^0.681^2^^~1~^~A~^^^1^0.610^0.752^1^^^^~01/01/2013~ -~05714~^~852~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~01/01/2013~ -~05714~^~853~^0.023^2^^~1~^~A~^^^1^0.000^0.046^1^^^~1~^~01/01/2013~ -~05714~^~858~^0.030^2^^~1~^~A~^^^1^0.028^0.033^1^^^^~01/01/2013~ -~05715~^~312~^0.057^2^^~1~^~A~^^^1^0.047^0.067^1^^^^~01/01/2013~ -~05715~^~315~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~01/01/2013~ -~05715~^~404~^0.046^2^^~1~^~A~^^^1^0.037^0.055^1^^^^~01/01/2013~ -~05715~^~405~^0.235^2^^~1~^~A~^^^1^0.230^0.240^1^^^^~01/01/2013~ -~05715~^~406~^5.400^2^^~1~^~A~^^^1^5.230^5.570^1^^^^~01/01/2013~ -~05715~^~410~^0.980^2^^~1~^~A~^^^1^0.960^1.000^1^^^^~01/01/2013~ -~05715~^~415~^0.287^2^^~1~^~A~^^^1^0.286^0.287^1^^^^~01/01/2013~ -~05715~^~501~^0.094^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~502~^0.591^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~503~^0.444^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~504~^1.043^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~505~^1.282^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~506~^0.333^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~508~^0.581^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~509~^0.376^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~510~^0.606^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~511~^1.538^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~512~^0.325^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~513~^1.650^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~514~^1.394^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~515~^2.317^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~516~^3.480^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~517~^2.298^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~518~^0.709^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05715~^~605~^0.459^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~606~^10.184^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~607~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~01/01/2013~ -~05715~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05715~^~609~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2013~ -~05715~^~610~^0.016^2^^~1~^~A~^^^1^0.014^0.018^1^^^^~01/01/2013~ -~05715~^~611~^0.105^2^^~1~^~A~^^^1^0.065^0.146^1^^^^~01/01/2013~ -~05715~^~612~^0.359^2^^~1~^~A~^^^1^0.322^0.397^1^^^^~01/01/2013~ -~05715~^~613~^7.191^2^^~1~^~A~^^^1^6.334^8.049^1^^^^~01/01/2013~ -~05715~^~614~^2.296^2^^~1~^~A~^^^1^2.214^2.378^1^^^^~01/01/2013~ -~05715~^~615~^0.036^2^^~1~^~A~^^^1^0.036^0.037^1^^^^~01/01/2013~ -~05715~^~617~^11.881^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~618~^9.756^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~619~^0.690^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~620~^0.175^2^^~1~^~A~^^^1^0.172^0.177^1^^^^~01/01/2013~ -~05715~^~621~^0.012^2^^~1~^~A~^^^1^0.010^0.014^1^^^^~01/01/2013~ -~05715~^~624~^0.020^2^^~1~^~A~^^^1^0.014^0.026^1^^^^~01/01/2013~ -~05715~^~625~^0.075^2^^~1~^~A~^^^1^0.071^0.079^1^^^^~01/01/2013~ -~05715~^~626~^1.497^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~627~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~01/01/2013~ -~05715~^~628~^0.177^2^^~1~^~A~^^^1^0.169^0.185^1^^^^~01/01/2013~ -~05715~^~629~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~01/01/2013~ -~05715~^~630~^0.023^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~631~^0.027^2^^~1~^~A~^^^1^0.021^0.034^1^^^^~01/01/2013~ -~05715~^~645~^13.718^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~646~^10.794^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~652~^0.052^2^^~1~^~A~^^^1^0.051^0.054^1^^^^~01/01/2013~ -~05715~^~653~^0.091^2^^~1~^~A~^^^1^0.087^0.096^1^^^^~01/01/2013~ -~05715~^~654~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~01/01/2013~ -~05715~^~662~^0.026^2^^~1~^~A~^^^1^0.024^0.029^1^^^^~01/01/2013~ -~05715~^~663~^0.318^2^^~1~^~A~^^^1^0.305^0.331^1^^^^~01/01/2013~ -~05715~^~664~^0.018^2^^~1~^~A~^^^1^0.000^0.036^1^^^~1~^~01/01/2013~ -~05715~^~665~^0.097^2^^~1~^~A~^^^1^0.083^0.111^1^^^^~01/01/2013~ -~05715~^~670~^0.081^2^^~1~^~A~^^^1^0.076^0.087^1^^^^~01/01/2013~ -~05715~^~671~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~01/01/2013~ -~05715~^~672~^0.055^2^^~1~^~A~^^^1^0.054^0.056^1^^^^~01/01/2013~ -~05715~^~673~^1.471^2^^~1~^~A~^^^1^1.103^1.839^1^^^^~01/01/2013~ -~05715~^~674~^11.563^2^^~1~^~A~^^^1^10.231^12.895^1^^^^~01/01/2013~ -~05715~^~675~^9.578^2^^~1~^~A~^^^1^9.192^9.964^1^^^^~01/01/2013~ -~05715~^~676~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~01/01/2013~ -~05715~^~685~^0.022^2^^~1~^~A~^^^1^0.016^0.027^1^^^^~01/01/2013~ -~05715~^~687~^0.057^2^^~1~^~A~^^^1^0.057^0.058^1^^^^~01/01/2013~ -~05715~^~689~^0.027^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~05715~^~693~^0.362^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~695~^0.097^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05715~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2013~ -~05715~^~851~^0.669^2^^~1~^~A~^^^1^0.657^0.680^1^^^^~01/01/2013~ -~05715~^~852~^0.005^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~01/01/2013~ -~05715~^~853~^0.022^2^^~1~^~A~^^^1^0.000^0.043^1^^^~1~^~01/01/2013~ -~05715~^~858~^0.036^2^^~1~^~A~^^^1^0.034^0.037^1^^^^~01/01/2013~ -~05716~^~312~^0.082^6^0.001^~1~^~A~^^^1^0.077^0.087^5^0.079^0.086^~2, 3~^~01/01/2013~ -~05716~^~315~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~01/01/2013~ -~05716~^~404~^0.051^3^0.004^~1~^~A~^^^1^0.046^0.060^2^0.033^0.070^~2, 3~^~01/01/2013~ -~05716~^~405~^0.300^3^0.025^~1~^~A~^^^1^0.270^0.350^2^0.192^0.408^~2, 3~^~01/01/2013~ -~05716~^~406~^5.003^3^0.110^~1~^~A~^^^1^4.820^5.200^2^4.531^5.476^~2, 3~^~01/01/2013~ -~05716~^~410~^1.100^2^^~1~^~A~^^^1^1.100^1.100^^^^^~01/01/2013~ -~05716~^~415~^0.361^3^0.008^~1~^~A~^^^1^0.349^0.375^2^0.328^0.394^~2, 3~^~01/01/2013~ -~05716~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~502~^0.745^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~503~^0.588^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~504~^1.422^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~505~^1.693^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~506~^0.536^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~507~^0.194^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~508~^0.661^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~509~^0.609^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~510~^0.656^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~511~^1.162^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~512~^0.556^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~513~^1.109^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~514~^1.641^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~515~^2.782^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~516~^0.875^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~517~^1.108^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~518~^0.813^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~521~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05716~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~606~^1.073^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~01/01/2013~ -~05716~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05716~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05716~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~01/01/2013~ -~05716~^~611~^0.007^3^0.004^~1~^~A~^^^1^0.003^0.014^2^-0.008^0.022^~2, 3~^~01/01/2013~ -~05716~^~612~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.033^2^0.026^0.036^~2, 3~^~01/01/2013~ -~05716~^~613~^0.697^3^0.009^~1~^~A~^^^1^0.685^0.714^2^0.659^0.735^~2, 3~^~01/01/2013~ -~05716~^~614~^0.309^3^0.012^~1~^~A~^^^1^0.292^0.333^2^0.255^0.362^~2, 3~^~01/01/2013~ -~05716~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~01/01/2013~ -~05716~^~617~^1.011^3^0.050^~1~^~AS~^^^1^0.922^1.095^2^0.796^1.227^~2, 3~^~01/01/2013~ -~05716~^~618~^0.863^3^0.074^~1~^~AS~^^^1^0.765^1.008^2^0.546^1.181^~2, 3~^~01/01/2013~ -~05716~^~619~^0.050^3^0.007^~1~^~AS~^^^1^0.041^0.064^2^0.020^0.080^~2, 3~^~01/01/2013~ -~05716~^~620~^0.103^3^0.006^~1~^~A~^^^1^0.091^0.113^2^0.075^0.131^~2, 3~^~01/01/2013~ -~05716~^~621~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~01/01/2013~ -~05716~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~01/01/2013~ -~05716~^~625~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.006^0.017^~1, 2, 3~^~01/01/2013~ -~05716~^~626~^0.120^3^0.007^~1~^~AS~^^^1^0.111^0.133^2^0.091^0.148^~2, 3~^~01/01/2013~ -~05716~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05716~^~628~^0.016^3^0.002^~1~^~A~^^^1^0.013^0.019^2^0.008^0.023^~2, 3~^~01/01/2013~ -~05716~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~01/01/2013~ -~05716~^~630~^0.004^3^0.003^~1~^~AS~^^^1^0.001^0.009^2^-0.008^0.015^~2, 3~^~01/01/2013~ -~05716~^~631~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~01/01/2013~ -~05716~^~645~^1.163^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~646~^1.072^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~652~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.006^0.010^~1, 2, 3~^~01/01/2013~ -~05716~^~653~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~01/01/2013~ -~05716~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2013~ -~05716~^~662~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 2, 3~^~01/01/2013~ -~05716~^~663~^0.026^3^0.001^~1~^~A~^^^1^0.023^0.028^2^0.019^0.032^~2, 3~^~01/01/2013~ -~05716~^~664~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~01/01/2013~ -~05716~^~665~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.011^2^0.001^0.016^~2, 3~^~01/01/2013~ -~05716~^~670~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~01/01/2013~ -~05716~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~01/01/2013~ -~05716~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~01/01/2013~ -~05716~^~673~^0.118^3^0.006^~1~^~A~^^^1^0.108^0.130^2^0.090^0.145^~2, 3~^~01/01/2013~ -~05716~^~674~^0.986^3^0.050^~1~^~A~^^^1^0.896^1.067^2^0.773^1.199^~2, 3~^~01/01/2013~ -~05716~^~675~^0.850^3^0.072^~1~^~A~^^^1^0.754^0.992^2^0.538^1.162^~2, 3~^~01/01/2013~ -~05716~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2013~ -~05716~^~685~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~01/01/2013~ -~05716~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~01/01/2013~ -~05716~^~689~^0.007^3^0.003^~1~^~AS~^^^1^0.000^0.011^2^-0.008^0.022^~2, 3~^~01/01/2013~ -~05716~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05716~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05716~^~851~^0.048^3^0.007^~1~^~A~^^^1^0.039^0.061^2^0.020^0.077^~2, 3~^~01/01/2013~ -~05716~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2013~ -~05716~^~853~^0.007^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.008^0.021^~1, 2, 3~^~01/01/2013~ -~05716~^~858~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.029^~2, 3~^~01/01/2013~ -~05717~^~312~^0.083^5^0.003^~1~^~A~^^^1^0.073^0.090^4^0.076^0.090^~2, 3~^~01/01/2013~ -~05717~^~315~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^4^0.005^0.007^~2, 3~^~01/01/2013~ -~05717~^~404~^0.059^3^0.018^~1~^~A~^^^1^0.040^0.095^2^-0.019^0.136^~2, 3~^~01/01/2013~ -~05717~^~405~^0.307^3^0.017^~1~^~A~^^^1^0.290^0.340^2^0.235^0.378^~2, 3~^~01/01/2013~ -~05717~^~406~^6.183^3^0.342^~1~^~A~^^^1^5.620^6.800^2^4.713^7.654^~2, 3~^~01/01/2013~ -~05717~^~410~^1.300^2^^~1~^~A~^^^1^1.200^1.400^1^^^^~01/01/2013~ -~05717~^~415~^0.482^3^0.014^~1~^~A~^^^1^0.464^0.510^2^0.420^0.543^~2, 3~^~01/01/2013~ -~05717~^~501~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~502~^0.897^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~503~^0.739^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~504~^1.705^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~505~^2.123^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~506~^0.575^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~507~^0.197^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~508~^0.746^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~509~^0.707^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~510~^0.776^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~511~^1.311^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~512~^0.631^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~513~^1.243^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~514~^1.945^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~515~^3.161^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~516~^0.962^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~517~^0.995^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~518~^0.872^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05717~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~606~^0.782^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~01/01/2013~ -~05717~^~611~^0.007^3^0.004^~1~^~A~^^^1^0.003^0.016^2^-0.011^0.026^~2, 3~^~01/01/2013~ -~05717~^~612~^0.022^3^0.005^~1~^~A~^^^1^0.012^0.031^2^-0.002^0.045^~2, 3~^~01/01/2013~ -~05717~^~613~^0.495^3^0.096^~1~^~A~^^^1^0.302^0.593^2^0.080^0.909^~2, 3~^~01/01/2013~ -~05717~^~614~^0.233^3^0.042^~1~^~A~^^^1^0.153^0.292^2^0.054^0.412^~2, 3~^~01/01/2013~ -~05717~^~615~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~01/01/2013~ -~05717~^~617~^0.640^3^0.130^~1~^~AS~^^^1^0.380^0.778^2^0.080^1.199^~2, 3~^~01/01/2013~ -~05717~^~618~^0.570^3^0.098^~1~^~AS~^^^1^0.377^0.699^2^0.147^0.993^~2, 3~^~01/01/2013~ -~05717~^~619~^0.030^3^0.006^~1~^~AS~^^^1^0.019^0.039^2^0.005^0.055^~2, 3~^~01/01/2013~ -~05717~^~620~^0.080^3^0.013^~1~^~A~^^^1^0.057^0.102^2^0.024^0.136^~2, 3~^~01/01/2013~ -~05717~^~621~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~01/01/2013~ -~05717~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~2, 3~^~01/01/2013~ -~05717~^~625~^0.005^3^0.002^~1~^~A~^^^1^0.002^0.008^2^-0.003^0.012^~1, 2, 3~^~01/01/2013~ -~05717~^~626~^0.084^3^0.022^~1~^~AS~^^^1^0.041^0.108^2^-0.009^0.178^~2, 3~^~01/01/2013~ -~05717~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~628~^0.011^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.016^~2, 3~^~01/01/2013~ -~05717~^~629~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~01/01/2013~ -~05717~^~630~^0.005^3^0.003^~1~^~AS~^^^1^0.000^0.009^2^-0.006^0.017^~2, 3~^~01/01/2013~ -~05717~^~631~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.010^2^0.001^0.014^~2, 3~^~01/01/2013~ -~05717~^~645~^0.749^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~646~^0.722^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~01/01/2013~ -~05717~^~653~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~01/01/2013~ -~05717~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2013~ -~05717~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~01/01/2013~ -~05717~^~663~^0.018^3^0.004^~1~^~A~^^^1^0.011^0.026^2^-0.001^0.037^~2, 3~^~01/01/2013~ -~05717~^~664~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.006^0.017^~1, 2, 3~^~01/01/2013~ -~05717~^~665~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.000^0.013^~2, 3~^~01/01/2013~ -~05717~^~670~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.006^2^-0.003^0.010^~1, 2, 3~^~01/01/2013~ -~05717~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 2, 3~^~01/01/2013~ -~05717~^~672~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~01/01/2013~ -~05717~^~673~^0.084^3^0.021^~1~^~A~^^^1^0.041^0.106^2^-0.008^0.175^~2, 3~^~01/01/2013~ -~05717~^~674~^0.621^3^0.126^~1~^~A~^^^1^0.369^0.760^2^0.077^1.165^~2, 3~^~01/01/2013~ -~05717~^~675~^0.560^3^0.097^~1~^~A~^^^1^0.370^0.688^2^0.143^0.976^~2, 3~^~01/01/2013~ -~05717~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~01/01/2013~ -~05717~^~687~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~01/01/2013~ -~05717~^~689~^0.004^3^0.004^~1~^~AS~^^^1^0.000^0.012^2^-0.013^0.021^~2, 3~^~01/01/2013~ -~05717~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05717~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~851~^0.029^3^0.006^~1~^~A~^^^1^0.017^0.039^2^0.001^0.057^~2, 3~^~01/01/2013~ -~05717~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05717~^~853~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~01/01/2013~ -~05717~^~858~^0.017^3^0.003^~1~^~A~^^^1^0.012^0.022^2^0.005^0.029^~2, 3~^~01/01/2013~ -~05718~^~312~^0.062^6^0.002^~1~^~A~^^^^0.055^0.070^^^^^~01/01/2013~ -~05718~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05718~^~404~^0.038^6^0.006^~1~^~A~^^^^0.025^0.061^^^^^~01/01/2013~ -~05718~^~405~^0.208^6^0.014^~1~^~A~^^^^0.170^0.240^^^^^~01/01/2013~ -~05718~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05718~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05718~^~415~^0.697^6^0.034^~1~^~A~^^^^0.594^0.816^^^^^~01/01/2013~ -~05718~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~502~^0.782^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~504~^1.493^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~505~^1.777^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~506~^0.563^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~507~^0.203^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~508~^0.694^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~509~^0.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~510~^0.688^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~511~^1.219^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~512~^0.584^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~513~^1.164^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~514~^1.722^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~515~^2.921^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~517~^1.163^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~518~^0.853^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05718~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05718~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05718~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05718~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05718~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05718~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05718~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05718~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05718~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05718~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05718~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05718~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05718~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05718~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05718~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05718~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05718~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05718~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05718~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05718~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05718~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05718~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05718~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05718~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05718~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05718~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05718~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05718~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05718~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05718~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05718~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05718~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05718~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05718~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05718~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05719~^~312~^0.106^6^0.009^~1~^~A~^^^^0.087^0.142^^^^^~01/01/2013~ -~05719~^~315~^0.010^6^0.000^~1~^~A~^^^^0.009^0.011^^^^^~01/01/2013~ -~05719~^~404~^0.060^6^0.003^~1~^~A~^^^^0.048^0.069^^^^^~01/01/2013~ -~05719~^~405~^0.247^6^0.004^~1~^~A~^^^^0.230^0.260^^^^^~01/01/2013~ -~05719~^~406~^5.745^6^0.162^~1~^~A~^^^^5.080^6.200^^^^^~01/01/2013~ -~05719~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~01/01/2013~ -~05719~^~415~^0.425^6^0.007^~1~^~A~^^^^0.403^0.449^^^^^~01/01/2013~ -~05719~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~504~^1.335^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~508~^0.621^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~509~^0.572^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~510~^0.616^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~513~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~514~^1.540^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~515~^2.613^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~516~^0.822^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~521~^0.150^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05719~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~606~^1.124^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~610~^0.003^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05719~^~611~^0.017^6^0.005^~1~^~A~^^^^0.003^0.038^^^^^~01/01/2013~ -~05719~^~612~^0.039^6^0.007^~1~^~A~^^^^0.020^0.069^^^^^~01/01/2013~ -~05719~^~613~^0.721^6^0.107^~1~^~A~^^^^0.485^1.096^^^^^~01/01/2013~ -~05719~^~614~^0.313^6^0.035^~1~^~A~^^^^0.229^0.464^^^^^~01/01/2013~ -~05719~^~615~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05719~^~617~^1.101^6^0.168^~1~^~AS~^^^^0.685^1.683^^^^^~01/01/2013~ -~05719~^~618~^0.862^6^0.103^~1~^~AS~^^^^0.627^1.260^^^^^~01/01/2013~ -~05719~^~619~^0.045^6^0.005^~1~^~AS~^^^^0.032^0.061^^^^^~01/01/2013~ -~05719~^~620~^0.060^6^0.004^~1~^~A~^^^^0.047^0.073^^^^^~01/01/2013~ -~05719~^~621~^0.004^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05719~^~624~^0.005^6^0.001^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05719~^~625~^0.005^6^0.001^~1~^~A~^^^^0.003^0.009^^^^^~01/01/2013~ -~05719~^~626~^0.113^6^0.025^~1~^~AS~^^^^0.049^0.210^^^^^~01/01/2013~ -~05719~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~628~^0.016^6^0.002^~1~^~A~^^^^0.010^0.023^^^^^~01/01/2013~ -~05719~^~629~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05719~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05719~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05719~^~645~^1.244^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~646~^1.009^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~652~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05719~^~653~^0.011^6^0.001^~1~^~A~^^^^0.007^0.017^^^^^~01/01/2013~ -~05719~^~654~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05719~^~662~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05719~^~663~^0.039^6^0.005^~1~^~A~^^^^0.021^0.058^^^^^~01/01/2013~ -~05719~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~665~^0.010^6^0.001^~1~^~A~^^^^0.007^0.015^^^^^~01/01/2013~ -~05719~^~670~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05719~^~671~^0.003^6^0.002^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05719~^~672~^0.007^6^0.000^~1~^~A~^^^^0.006^0.009^^^^^~01/01/2013~ -~05719~^~673~^0.110^6^0.025^~1~^~A~^^^^0.048^0.207^^^^^~01/01/2013~ -~05719~^~674~^1.062^6^0.165^~1~^~A~^^^^0.664^1.625^^^^^~01/01/2013~ -~05719~^~675~^0.847^6^0.101^~1~^~A~^^^^0.617^1.241^^^^^~01/01/2013~ -~05719~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05719~^~685~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05719~^~687~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05719~^~689~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.012^^^^^~01/01/2013~ -~05719~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05719~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~851~^0.044^6^0.005^~1~^~A~^^^^0.031^0.059^^^^^~01/01/2013~ -~05719~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05719~^~853~^0.009^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05719~^~858~^0.014^6^0.001^~1~^~A~^^^^0.010^0.019^^^^^~01/01/2013~ -~05720~^~312~^0.062^6^0.002^~1~^~A~^^^^0.055^0.070^^^^^~01/01/2013~ -~05720~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05720~^~404~^0.038^6^0.006^~1~^~A~^^^^0.025^0.061^^^^^~01/01/2013~ -~05720~^~405~^0.208^6^0.014^~1~^~A~^^^^0.170^0.240^^^^^~01/01/2013~ -~05720~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05720~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05720~^~415~^0.697^6^0.034^~1~^~A~^^^^0.594^0.816^^^^^~01/01/2013~ -~05720~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~504~^1.335^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~508~^0.621^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~509~^0.572^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~510~^0.616^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~513~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~514~^1.540^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~515~^2.613^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~516~^0.822^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05720~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05720~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05720~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05720~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05720~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05720~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05720~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05720~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05720~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05720~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05720~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05720~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05720~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05720~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05720~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05720~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05720~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05720~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05720~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05720~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05720~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05720~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05720~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05720~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05720~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05720~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05720~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05720~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05720~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05720~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05720~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05720~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05720~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05720~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05720~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05721~^~312~^0.052^6^0.002^~1~^~A~^^^^0.045^0.059^^^^^~01/01/2013~ -~05721~^~315~^0.007^6^0.000^~1~^~A~^^^^0.006^0.008^^^^^~01/01/2013~ -~05721~^~404~^0.033^6^0.005^~1~^~A~^^^^0.020^0.051^^^^^~01/01/2013~ -~05721~^~405~^0.145^6^0.012^~1~^~A~^^^^0.110^0.180^^^^^~01/01/2013~ -~05721~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~01/01/2013~ -~05721~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~01/01/2013~ -~05721~^~415~^0.775^6^0.021^~1~^~A~^^^^0.731^0.861^^^^^~01/01/2013~ -~05721~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~502~^0.782^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~504~^1.493^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~505~^1.777^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~506~^0.563^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~507~^0.203^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~508~^0.694^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~509~^0.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~510~^0.688^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~511~^1.219^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~512~^0.584^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~513~^1.164^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~514~^1.722^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~515~^2.921^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~517~^1.163^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~518~^0.853^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05721~^~521~^0.110^2^^~1~^~A~^^^^0.110^0.110^^^^^~01/01/2013~ -~05721~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~606~^0.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~610~^0.007^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~07/01/2015~ -~05721~^~611~^0.006^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~07/01/2015~ -~05721~^~612~^0.008^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~07/01/2015~ -~05721~^~613~^0.328^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~07/01/2015~ -~05721~^~614~^0.172^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~07/01/2015~ -~05721~^~615~^0.003^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~07/01/2015~ -~05721~^~617~^0.437^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~07/01/2015~ -~05721~^~618~^0.371^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~07/01/2015~ -~05721~^~619~^0.017^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~07/01/2015~ -~05721~^~620~^0.051^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~07/01/2015~ -~05721~^~621~^0.004^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~07/01/2015~ -~05721~^~624~^0.004^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~07/01/2015~ -~05721~^~625~^0.002^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~07/01/2015~ -~05721~^~626~^0.042^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~07/01/2015~ -~05721~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~628~^0.006^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~07/01/2015~ -~05721~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~631~^0.005^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~07/01/2015~ -~05721~^~645~^0.491^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~646~^0.479^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~652~^0.004^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~07/01/2015~ -~05721~^~653~^0.005^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~07/01/2015~ -~05721~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~663~^0.018^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~07/01/2015~ -~05721~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~665~^0.006^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~07/01/2015~ -~05721~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05721~^~671~^0.002^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~07/01/2015~ -~05721~^~672~^0.005^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~07/01/2015~ -~05721~^~673~^0.042^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~07/01/2015~ -~05721~^~674~^0.419^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~07/01/2015~ -~05721~^~675~^0.364^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~07/01/2015~ -~05721~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~687~^0.002^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~07/01/2015~ -~05721~^~689~^0.009^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~07/01/2015~ -~05721~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05721~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~851~^0.017^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~07/01/2015~ -~05721~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05721~^~853~^0.009^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~07/01/2015~ -~05721~^~858~^0.016^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~07/01/2015~ -~05722~^~312~^0.094^5^0.010^~1~^~A~^^^1^0.075^0.131^4^0.066^0.123^~2, 3~^~01/01/2013~ -~05722~^~315~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^4^0.005^0.007^~2, 3~^~01/01/2013~ -~05722~^~404~^0.050^3^0.005^~1~^~A~^^^1^0.043^0.059^2^0.029^0.070^~2, 3~^~01/01/2013~ -~05722~^~405~^0.323^3^0.017^~1~^~A~^^^1^0.290^0.340^2^0.251^0.395^~2, 3~^~01/01/2013~ -~05722~^~406~^6.903^3^0.120^~1~^~A~^^^1^6.680^7.090^2^6.388^7.419^~2, 3~^~01/01/2013~ -~05722~^~410~^1.200^2^^~1~^~A~^^^1^1.200^1.200^^^^^~01/01/2013~ -~05722~^~415~^0.484^3^0.009^~1~^~A~^^^1^0.468^0.497^2^0.447^0.521^~2, 3~^~01/01/2013~ -~05722~^~501~^0.310^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~502~^1.094^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~503~^0.902^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~504~^2.081^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~505~^2.591^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~506~^0.701^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~507~^0.241^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~508~^0.910^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~509~^0.863^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~510~^0.947^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~511~^1.600^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~512~^0.770^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~513~^1.517^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~514~^2.373^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~515~^3.857^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~516~^1.174^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~517~^1.214^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~518~^1.064^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~521~^0.180^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05722~^~605~^0.089^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05722~^~606~^2.020^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05722~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~01/01/2013~ -~05722~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05722~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2013~ -~05722~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~06/01/2014~ -~05722~^~611~^0.019^3^0.014^~1~^~A~^^^1^0.005^0.048^2^-0.038^0.079^~2, 3~^~06/01/2014~ -~05722~^~612~^0.061^3^0.012^~1~^~A~^^^1^0.050^0.090^2^0.016^0.118^~2, 3~^~06/01/2014~ -~05722~^~613~^1.354^3^0.150^~1~^~A~^^^1^1.204^1.702^2^0.850^2.139^~2, 3~^~06/01/2014~ -~05722~^~614~^0.534^3^0.028^~1~^~A~^^^1^0.540^0.638^2^0.467^0.711^~2, 3~^~06/01/2014~ -~05722~^~615~^0.009^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~06/01/2014~ -~05722~^~617~^1.991^3^0.238^~1~^~AS~^^^1^1.686^2.414^2^1.138^3.185^~2, 3~^~06/01/2014~ -~05722~^~618~^1.660^3^0.106^~1~^~AS~^^^1^1.621^1.970^2^1.373^2.282^~2, 3~^~06/01/2014~ -~05722~^~619~^0.098^3^0.011^~1~^~AS~^^^1^0.091^0.128^2^0.061^0.154^~2, 3~^~06/01/2014~ -~05722~^~620~^0.110^3^0.014^~1~^~A~^^^1^0.094^0.138^2^0.062^0.182^~2, 3~^~06/01/2014~ -~05722~^~621~^0.006^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~06/01/2014~ -~05722~^~624~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.012^2^-0.001^0.017^~2, 3~^~06/01/2014~ -~05722~^~625~^0.014^3^0.003^~1~^~A~^^^1^0.009^0.018^2^0.002^0.027^~2, 3~^~06/01/2014~ -~05722~^~626~^0.255^3^0.067^~1~^~AS~^^^1^0.144^0.356^2^-0.011^0.565^~2, 3~^~06/01/2014~ -~05722~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2013~ -~05722~^~628~^0.030^3^0.002^~1~^~A~^^^1^0.029^0.037^2^0.023^0.043^~2, 3~^~06/01/2014~ -~05722~^~629~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~01/01/2013~ -~05722~^~630~^0.011^3^0.006^~1~^~AS~^^^1^0.001^0.019^2^-0.012^0.036^~2, 3~^~06/01/2014~ -~05722~^~631~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~06/01/2014~ -~05722~^~645~^2.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05722~^~646~^1.920^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05722~^~652~^0.009^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~06/01/2014~ -~05722~^~653~^0.016^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.016^0.020^~2, 3~^~06/01/2014~ -~05722~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~01/01/2013~ -~05722~^~662~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~01/01/2013~ -~05722~^~663~^0.053^3^0.007^~1~^~A~^^^1^0.050^0.072^2^0.028^0.088^~2, 3~^~06/01/2014~ -~05722~^~664~^0.009^3^0.005^~1~^~A~^^^1^0.000^0.017^2^-0.012^0.033^~1, 2, 3~^~06/01/2014~ -~05722~^~665~^0.022^3^0.004^~1~^~A~^^^1^0.018^0.032^2^0.006^0.042^~2, 3~^~06/01/2014~ -~05722~^~670~^0.011^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.003^0.022^~2, 3~^~06/01/2014~ -~05722~^~671~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~2, 3~^~01/01/2013~ -~05722~^~672~^0.013^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~06/01/2014~ -~05722~^~673~^0.250^3^0.067^~1~^~A~^^^1^0.140^0.351^2^-0.014^0.559^~2, 3~^~06/01/2014~ -~05722~^~674~^1.938^3^0.234^~1~^~A~^^^1^1.636^2.362^2^1.096^3.111^~2, 3~^~06/01/2014~ -~05722~^~675~^1.627^3^0.108^~1~^~A~^^^1^1.579^1.935^2^1.325^2.256^~2, 3~^~06/01/2014~ -~05722~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~01/01/2013~ -~05722~^~685~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.007^~1, 2, 3~^~01/01/2013~ -~05722~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~06/01/2014~ -~05722~^~689~^0.008^3^0.005^~1~^~AS~^^^1^0.002^0.019^2^-0.014^0.031^~2, 3~^~06/01/2014~ -~05722~^~693~^0.067^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05722~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05722~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05722~^~851~^0.095^3^0.012^~1~^~A~^^^1^0.087^0.127^2^0.054^0.155^~2, 3~^~06/01/2014~ -~05722~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.005^2^-0.002^0.008^~1, 2, 3~^~06/01/2014~ -~05722~^~853~^0.005^3^0.006^~1~^~A~^^^1^0.000^0.018^2^-0.020^0.032^~1, 2, 3~^~06/01/2014~ -~05722~^~858~^0.024^3^0.003^~1~^~A~^^^1^0.021^0.030^2^0.014^0.040^~2, 3~^~06/01/2014~ -~05723~^~312~^0.112^6^0.003^~1~^~A~^^^1^0.101^0.121^5^0.104^0.120^~2, 3~^~01/01/2013~ -~05723~^~315~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.006^0.008^~2, 3~^~01/01/2013~ -~05723~^~404~^0.065^3^0.008^~1~^~A~^^^1^0.050^0.079^2^0.029^0.101^~2, 3~^~01/01/2013~ -~05723~^~405~^0.353^3^0.012^~1~^~A~^^^1^0.330^0.370^2^0.302^0.405^~2, 3~^~01/01/2013~ -~05723~^~406~^5.593^3^0.038^~1~^~A~^^^1^5.550^5.670^2^5.428^5.759^~2, 3~^~01/01/2013~ -~05723~^~410~^1.150^2^^~1~^~A~^^^1^1.100^1.200^1^^^^~01/01/2013~ -~05723~^~415~^0.410^3^0.008^~1~^~A~^^^1^0.394^0.419^2^0.375^0.444^~2, 3~^~01/01/2013~ -~05723~^~501~^0.353^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~502~^1.246^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~503~^1.026^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~504~^2.368^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~505~^2.949^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~506~^0.798^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~508~^1.036^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~509~^0.982^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~510~^1.078^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~511~^1.821^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~512~^0.877^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~513~^1.726^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~514~^2.701^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~515~^4.390^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~516~^1.336^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~517~^1.382^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~518~^1.211^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05723~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05723~^~606~^1.707^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05723~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~01/01/2013~ -~05723~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05723~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~01/01/2013~ -~05723~^~610~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~01/01/2013~ -~05723~^~611~^0.012^3^0.007^~1~^~A~^^^1^0.005^0.026^2^-0.018^0.042^~2, 3~^~01/01/2013~ -~05723~^~612~^0.050^3^0.003^~1~^~A~^^^1^0.045^0.057^2^0.036^0.066^~2, 3~^~06/01/2014~ -~05723~^~613~^1.118^3^0.054^~1~^~A~^^^1^1.055^1.242^2^0.908^1.376^~2, 3~^~06/01/2014~ -~05723~^~614~^0.479^3^0.014^~1~^~A~^^^1^0.471^0.517^2^0.429^0.550^~2, 3~^~06/01/2014~ -~05723~^~615~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~01/01/2013~ -~05723~^~617~^2.269^3^0.117^~1~^~AS~^^^1^1.564^1.919^2^1.182^2.188^~2, 3~^~06/01/2014~ -~05723~^~618~^1.807^3^0.062^~1~^~AS~^^^1^1.282^1.477^2^1.138^1.674^~2, 3~^~06/01/2014~ -~05723~^~619~^0.106^3^0.004^~1~^~AS~^^^1^0.079^0.090^2^0.067^0.098^~2, 3~^~06/01/2014~ -~05723~^~620~^0.188^3^0.002^~1~^~A~^^^1^0.143^0.149^2^0.139^0.154^~2, 3~^~06/01/2014~ -~05723~^~621~^0.013^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~06/01/2014~ -~05723~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~01/01/2013~ -~05723~^~625~^0.018^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~06/01/2014~ -~05723~^~626~^0.290^3^0.027^~1~^~AS~^^^1^0.162^0.251^2^0.098^0.332^~2, 3~^~06/01/2014~ -~05723~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2013~ -~05723~^~628~^0.034^3^0.002^~1~^~A~^^^1^0.022^0.029^2^0.017^0.034^~2, 3~^~06/01/2014~ -~05723~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~01/01/2013~ -~05723~^~630~^0.009^3^0.005^~1~^~AS~^^^1^0.001^0.017^2^-0.015^0.029^~2, 3~^~06/01/2014~ -~05723~^~631~^0.017^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~2, 3~^~06/01/2014~ -~05723~^~645~^2.630^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05723~^~646~^2.187^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05723~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~06/01/2014~ -~05723~^~653~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.017^~2, 3~^~01/01/2013~ -~05723~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~01/01/2013~ -~05723~^~662~^0.005^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~06/01/2014~ -~05723~^~663~^0.055^3^0.002^~1~^~A~^^^1^0.038^0.043^2^0.034^0.048^~2, 3~^~06/01/2014~ -~05723~^~664~^0.007^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 2, 3~^~06/01/2014~ -~05723~^~665~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.018^2^0.002^0.024^~2, 3~^~06/01/2014~ -~05723~^~670~^0.014^3^0.001^~1~^~A~^^^1^0.008^0.013^2^0.004^0.017^~2, 3~^~06/01/2014~ -~05723~^~671~^0.007^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2014~ -~05723~^~672~^0.017^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~06/01/2014~ -~05723~^~673~^0.286^3^0.026^~1~^~A~^^^1^0.160^0.246^2^0.098^0.325^~2, 3~^~06/01/2014~ -~05723~^~674~^2.214^3^0.117^~1~^~A~^^^1^1.521^1.877^2^1.143^2.145^~2, 3~^~06/01/2014~ -~05723~^~675~^1.777^3^0.062^~1~^~A~^^^1^1.259^1.448^2^1.116^1.649^~2, 3~^~06/01/2014~ -~05723~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2014~ -~05723~^~685~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~01/01/2013~ -~05723~^~687~^0.011^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~06/01/2014~ -~05723~^~689~^0.015^3^0.004^~1~^~AS~^^^1^0.003^0.016^2^-0.007^0.029^~2, 3~^~06/01/2014~ -~05723~^~693~^0.067^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05723~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~05723~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~01/01/2013~ -~05723~^~851~^0.103^3^0.004^~1~^~A~^^^1^0.075^0.087^2^0.065^0.095^~2, 3~^~06/01/2014~ -~05723~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~01/01/2013~ -~05723~^~853~^0.012^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.011^0.030^~1, 2, 3~^~06/01/2014~ -~05723~^~858~^0.038^3^0.001^~1~^~A~^^^1^0.028^0.030^2^0.027^0.032^~2, 3~^~06/01/2014~ -~05724~^~312~^0.106^6^0.009^~1~^~A~^^^^0.087^0.142^^^^^~01/01/2013~ -~05724~^~315~^0.010^6^0.000^~1~^~A~^^^^0.009^0.011^^^^^~01/01/2013~ -~05724~^~404~^0.060^6^0.003^~1~^~A~^^^^0.048^0.069^^^^^~01/01/2013~ -~05724~^~405~^0.247^6^0.004^~1~^~A~^^^^0.230^0.260^^^^^~01/01/2013~ -~05724~^~406~^5.745^6^0.162^~1~^~A~^^^^5.080^6.200^^^^^~01/01/2013~ -~05724~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~01/01/2013~ -~05724~^~415~^0.425^6^0.007^~1~^~A~^^^^0.403^0.449^^^^^~01/01/2013~ -~05724~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~504~^1.335^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~508~^0.621^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~509~^0.572^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~510~^0.616^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~513~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~514~^1.540^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~515~^2.613^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~516~^0.822^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~521~^0.150^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05724~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~606~^1.124^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~610~^0.003^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05724~^~611~^0.017^6^0.005^~1~^~A~^^^^0.003^0.038^^^^^~01/01/2013~ -~05724~^~612~^0.039^6^0.007^~1~^~A~^^^^0.020^0.069^^^^^~01/01/2013~ -~05724~^~613~^0.721^6^0.107^~1~^~A~^^^^0.485^1.096^^^^^~01/01/2013~ -~05724~^~614~^0.313^6^0.035^~1~^~A~^^^^0.229^0.464^^^^^~01/01/2013~ -~05724~^~615~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05724~^~617~^1.101^6^0.168^~1~^~AS~^^^^0.685^1.683^^^^^~01/01/2013~ -~05724~^~618~^0.862^6^0.103^~1~^~AS~^^^^0.627^1.260^^^^^~01/01/2013~ -~05724~^~619~^0.045^6^0.005^~1~^~AS~^^^^0.032^0.061^^^^^~01/01/2013~ -~05724~^~620~^0.060^6^0.004^~1~^~A~^^^^0.047^0.073^^^^^~01/01/2013~ -~05724~^~621~^0.004^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05724~^~624~^0.005^6^0.001^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05724~^~625~^0.005^6^0.001^~1~^~A~^^^^0.003^0.009^^^^^~01/01/2013~ -~05724~^~626~^0.113^6^0.025^~1~^~AS~^^^^0.049^0.210^^^^^~01/01/2013~ -~05724~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~628~^0.016^6^0.002^~1~^~A~^^^^0.010^0.023^^^^^~01/01/2013~ -~05724~^~629~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05724~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05724~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05724~^~645~^1.244^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~646~^1.009^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~652~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05724~^~653~^0.011^6^0.001^~1~^~A~^^^^0.007^0.017^^^^^~01/01/2013~ -~05724~^~654~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05724~^~662~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05724~^~663~^0.039^6^0.005^~1~^~A~^^^^0.021^0.058^^^^^~01/01/2013~ -~05724~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~665~^0.010^6^0.001^~1~^~A~^^^^0.007^0.015^^^^^~01/01/2013~ -~05724~^~670~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05724~^~671~^0.003^6^0.002^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05724~^~672~^0.007^6^0.000^~1~^~A~^^^^0.006^0.009^^^^^~01/01/2013~ -~05724~^~673~^0.110^6^0.025^~1~^~A~^^^^0.048^0.207^^^^^~01/01/2013~ -~05724~^~674~^1.062^6^0.165^~1~^~A~^^^^0.664^1.625^^^^^~01/01/2013~ -~05724~^~675~^0.847^6^0.101^~1~^~A~^^^^0.617^1.241^^^^^~01/01/2013~ -~05724~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05724~^~685~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05724~^~687~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05724~^~689~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.012^^^^^~01/01/2013~ -~05724~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05724~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~851~^0.044^6^0.005^~1~^~A~^^^^0.031^0.059^^^^^~01/01/2013~ -~05724~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05724~^~853~^0.009^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05724~^~858~^0.014^6^0.001^~1~^~A~^^^^0.010^0.019^^^^^~01/01/2013~ -~05725~^~312~^0.128^6^0.008^~1~^~A~^^^^0.115^0.168^^^^^~01/01/2013~ -~05725~^~315~^0.017^6^0.001^~1~^~A~^^^^0.012^0.020^^^^^~01/01/2013~ -~05725~^~404~^0.056^6^0.005^~1~^~A~^^^^0.044^0.076^^^^^~01/01/2013~ -~05725~^~405~^0.335^6^0.021^~1~^~A~^^^^0.260^0.410^^^^^~01/01/2013~ -~05725~^~406~^6.827^6^0.285^~1~^~A~^^^^6.180^8.090^^^^^~01/01/2013~ -~05725~^~410~^1.015^2^^~1~^~A~^^^^0.930^1.100^^^^^~01/01/2013~ -~05725~^~415~^0.435^8^0.010^~1~^~A~^^^^0.384^0.483^^^^^~01/01/2013~ -~05725~^~501~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~502~^0.948^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~503~^0.748^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~504~^1.809^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~505~^2.154^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~506~^0.682^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~508~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~509~^0.775^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~510~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~511~^1.478^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~512~^0.708^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~513~^1.411^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~514~^2.087^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~515~^3.540^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~516~^1.114^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~517~^1.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~518~^1.034^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05725~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~610~^0.006^6^0.001^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05725~^~611~^0.021^6^0.005^~1~^~A~^^^^0.003^0.040^^^^^~01/01/2013~ -~05725~^~612~^0.061^6^0.006^~1~^~A~^^^^0.046^0.087^^^^^~01/01/2013~ -~05725~^~613~^1.178^6^0.040^~1~^~A~^^^^1.017^1.304^^^^^~01/01/2013~ -~05725~^~614~^0.505^6^0.015^~1~^~A~^^^^0.469^0.573^^^^^~01/01/2013~ -~05725~^~615~^0.006^6^0.000^~1~^~A~^^^^0.005^0.008^^^^^~01/01/2013~ -~05725~^~617~^1.832^6^0.051^~1~^~AS~^^^^1.689^2.051^^^^^~01/01/2013~ -~05725~^~618~^1.436^6^0.080^~1~^~AS~^^^^1.217^1.671^^^^^~01/01/2013~ -~05725~^~619~^0.075^6^0.007^~1~^~AS~^^^^0.049^0.094^^^^^~01/01/2013~ -~05725~^~620~^0.087^6^0.002^~1~^~A~^^^^0.080^0.093^^^^^~01/01/2013~ -~05725~^~621~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05725~^~624~^0.003^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05725~^~625~^0.008^6^0.001^~1~^~A~^^^^0.006^0.011^^^^^~01/01/2013~ -~05725~^~626~^0.187^6^0.019^~1~^~AS~^^^^0.112^0.219^^^^^~01/01/2013~ -~05725~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~628~^0.026^6^0.001^~1~^~A~^^^^0.024^0.029^^^^^~01/01/2013~ -~05725~^~629~^0.012^6^0.002^~1~^~A~^^^^0.006^0.018^^^^^~01/01/2013~ -~05725~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05725~^~631~^0.008^6^0.000^~1~^~A~^^^^0.007^0.009^^^^^~01/01/2013~ -~05725~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~652~^0.011^6^0.001^~1~^~A~^^^^0.009^0.013^^^^^~01/01/2013~ -~05725~^~653~^0.017^6^0.002^~1~^~A~^^^^0.013^0.024^^^^^~01/01/2013~ -~05725~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~662~^0.004^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05725~^~663~^0.061^6^0.008^~1~^~A~^^^^0.033^0.091^^^^^~01/01/2013~ -~05725~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~665~^0.015^6^0.001^~1~^~A~^^^^0.011^0.019^^^^^~01/01/2013~ -~05725~^~670~^0.010^6^0.002^~1~^~A~^^^^0.004^0.017^^^^^~01/01/2013~ -~05725~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~672~^0.012^6^0.001^~1~^~A~^^^^0.009^0.015^^^^^~01/01/2013~ -~05725~^~673~^0.182^6^0.018^~1~^~A~^^^^0.109^0.214^^^^^~01/01/2013~ -~05725~^~674~^1.771^6^0.047^~1~^~A~^^^^1.616^1.960^^^^^~01/01/2013~ -~05725~^~675~^1.411^6^0.079^~1~^~A~^^^^1.202^1.648^^^^^~01/01/2013~ -~05725~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05725~^~685~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05725~^~687~^0.008^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05725~^~689~^0.009^6^0.000^~1~^~AS~^^^^0.008^0.010^^^^^~01/01/2013~ -~05725~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05725~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~851~^0.072^6^0.007^~1~^~A~^^^^0.048^0.090^^^^^~01/01/2013~ -~05725~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05725~^~853~^0.009^6^0.000^~1~^~A~^^^^0.008^0.010^^^^^~01/01/2013~ -~05725~^~858~^0.017^6^0.001^~1~^~A~^^^^0.014^0.019^^^^^~01/01/2013~ -~05726~^~312~^0.106^6^0.009^~1~^~A~^^^^0.087^0.142^^^^^~01/01/2013~ -~05726~^~315~^0.010^6^0.000^~1~^~A~^^^^0.009^0.011^^^^^~01/01/2013~ -~05726~^~404~^0.060^6^0.003^~1~^~A~^^^^0.048^0.069^^^^^~01/01/2013~ -~05726~^~405~^0.247^6^0.004^~1~^~A~^^^^0.230^0.260^^^^^~01/01/2013~ -~05726~^~406~^5.745^6^0.162^~1~^~A~^^^^5.080^6.200^^^^^~01/01/2013~ -~05726~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~01/01/2013~ -~05726~^~415~^0.425^6^0.007^~1~^~A~^^^^0.403^0.449^^^^^~01/01/2013~ -~05726~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~504~^1.335^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~508~^0.621^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~509~^0.572^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~510~^0.616^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~512~^0.522^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~513~^1.041^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~514~^1.540^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~515~^2.613^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~516~^0.822^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~05726~^~521~^0.150^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05726~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~606~^1.124^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~610~^0.003^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05726~^~611~^0.017^6^0.005^~1~^~A~^^^^0.003^0.038^^^^^~01/01/2013~ -~05726~^~612~^0.039^6^0.007^~1~^~A~^^^^0.020^0.069^^^^^~01/01/2013~ -~05726~^~613~^0.721^6^0.107^~1~^~A~^^^^0.485^1.096^^^^^~01/01/2013~ -~05726~^~614~^0.313^6^0.035^~1~^~A~^^^^0.229^0.464^^^^^~01/01/2013~ -~05726~^~615~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05726~^~617~^1.101^6^0.168^~1~^~AS~^^^^0.685^1.683^^^^^~01/01/2013~ -~05726~^~618~^0.862^6^0.103^~1~^~AS~^^^^0.627^1.260^^^^^~01/01/2013~ -~05726~^~619~^0.045^6^0.005^~1~^~AS~^^^^0.032^0.061^^^^^~01/01/2013~ -~05726~^~620~^0.060^6^0.004^~1~^~A~^^^^0.047^0.073^^^^^~01/01/2013~ -~05726~^~621~^0.004^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05726~^~624~^0.005^6^0.001^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05726~^~625~^0.005^6^0.001^~1~^~A~^^^^0.003^0.009^^^^^~01/01/2013~ -~05726~^~626~^0.113^6^0.025^~1~^~AS~^^^^0.049^0.210^^^^^~01/01/2013~ -~05726~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~628~^0.016^6^0.002^~1~^~A~^^^^0.010^0.023^^^^^~01/01/2013~ -~05726~^~629~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05726~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05726~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.007^^^^^~01/01/2013~ -~05726~^~645~^1.244^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~646~^1.009^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~652~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05726~^~653~^0.011^6^0.001^~1~^~A~^^^^0.007^0.017^^^^^~01/01/2013~ -~05726~^~654~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05726~^~662~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05726~^~663~^0.039^6^0.005^~1~^~A~^^^^0.021^0.058^^^^^~01/01/2013~ -~05726~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~665~^0.010^6^0.001^~1~^~A~^^^^0.007^0.015^^^^^~01/01/2013~ -~05726~^~670~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05726~^~671~^0.003^6^0.002^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05726~^~672~^0.007^6^0.000^~1~^~A~^^^^0.006^0.009^^^^^~01/01/2013~ -~05726~^~673~^0.110^6^0.025^~1~^~A~^^^^0.048^0.207^^^^^~01/01/2013~ -~05726~^~674~^1.062^6^0.165^~1~^~A~^^^^0.664^1.625^^^^^~01/01/2013~ -~05726~^~675~^0.847^6^0.101^~1~^~A~^^^^0.617^1.241^^^^^~01/01/2013~ -~05726~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05726~^~685~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05726~^~687~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05726~^~689~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.012^^^^^~01/01/2013~ -~05726~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05726~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~851~^0.044^6^0.005^~1~^~A~^^^^0.031^0.059^^^^^~01/01/2013~ -~05726~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05726~^~853~^0.009^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05726~^~858~^0.014^6^0.001^~1~^~A~^^^^0.010^0.019^^^^^~01/01/2013~ -~05727~^~312~^0.043^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~404~^0.045^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~405~^0.148^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~406~^9.171^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~410~^0.894^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~415~^0.756^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~501~^0.233^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~502~^0.900^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~503~^0.750^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~504~^1.630^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~505~^1.908^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~506~^0.566^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~507~^0.192^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~508~^0.732^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~509~^0.694^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~510~^0.808^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~511~^1.348^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~512~^0.647^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~513~^1.247^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~514~^1.885^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~515~^2.983^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~516~^1.053^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~517~^1.042^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~518~^0.852^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~521~^0.180^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~605~^0.129^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05727~^~606~^1.240^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05727~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~612~^0.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~613~^0.834^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~614~^0.314^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~617~^2.673^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~618~^2.193^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~619~^0.132^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~620~^0.093^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~626~^0.293^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~628~^0.041^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~630~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~645~^3.040^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05727~^~646~^2.470^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05727~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~653~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~663~^0.091^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~664~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~665~^0.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~670~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~672~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~673~^0.288^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~674~^2.582^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~675~^2.150^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~687~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~693~^0.103^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05727~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05727~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~851~^0.128^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05727~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05727~^~858~^0.019^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05728~^~312~^0.128^6^0.008^~1~^~A~^^^^0.115^0.168^^^^^~01/01/2013~ -~05728~^~315~^0.017^6^0.001^~1~^~A~^^^^0.012^0.020^^^^^~01/01/2013~ -~05728~^~404~^0.056^6^0.005^~1~^~A~^^^^0.044^0.076^^^^^~01/01/2013~ -~05728~^~405~^0.335^6^0.021^~1~^~A~^^^^0.260^0.410^^^^^~01/01/2013~ -~05728~^~406~^6.827^6^0.285^~1~^~A~^^^^6.180^8.090^^^^^~01/01/2013~ -~05728~^~410~^1.015^2^^~1~^~A~^^^^0.930^1.100^^^^^~01/01/2013~ -~05728~^~415~^0.435^8^0.010^~1~^~A~^^^^0.384^0.483^^^^^~01/01/2013~ -~05728~^~501~^0.278^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~502~^0.948^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~503~^0.748^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~504~^1.809^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~505~^2.154^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~506~^0.682^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~508~^0.842^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~509~^0.775^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~510~^0.834^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~511~^1.478^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~512~^0.708^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~513~^1.411^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~514~^2.087^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~515~^3.540^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~516~^1.114^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~517~^1.410^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~518~^1.034^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05728~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~610~^0.006^6^0.001^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05728~^~611~^0.021^6^0.005^~1~^~A~^^^^0.003^0.040^^^^^~01/01/2013~ -~05728~^~612~^0.061^6^0.006^~1~^~A~^^^^0.046^0.087^^^^^~01/01/2013~ -~05728~^~613~^1.178^6^0.040^~1~^~A~^^^^1.017^1.304^^^^^~01/01/2013~ -~05728~^~614~^0.505^6^0.015^~1~^~A~^^^^0.469^0.573^^^^^~01/01/2013~ -~05728~^~615~^0.006^6^0.000^~1~^~A~^^^^0.005^0.008^^^^^~01/01/2013~ -~05728~^~617~^1.832^6^0.051^~1~^~AS~^^^^1.689^2.051^^^^^~01/01/2013~ -~05728~^~618~^1.436^6^0.080^~1~^~AS~^^^^1.217^1.671^^^^^~01/01/2013~ -~05728~^~619~^0.075^6^0.007^~1~^~AS~^^^^0.049^0.094^^^^^~01/01/2013~ -~05728~^~620~^0.087^6^0.002^~1~^~A~^^^^0.080^0.093^^^^^~01/01/2013~ -~05728~^~621~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05728~^~624~^0.003^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05728~^~625~^0.008^6^0.001^~1~^~A~^^^^0.006^0.011^^^^^~01/01/2013~ -~05728~^~626~^0.187^6^0.019^~1~^~AS~^^^^0.112^0.219^^^^^~01/01/2013~ -~05728~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~628~^0.026^6^0.001^~1~^~A~^^^^0.024^0.029^^^^^~01/01/2013~ -~05728~^~629~^0.012^6^0.002^~1~^~A~^^^^0.006^0.018^^^^^~01/01/2013~ -~05728~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05728~^~631~^0.008^6^0.000^~1~^~A~^^^^0.007^0.009^^^^^~01/01/2013~ -~05728~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~652~^0.011^6^0.001^~1~^~A~^^^^0.009^0.013^^^^^~01/01/2013~ -~05728~^~653~^0.017^6^0.002^~1~^~A~^^^^0.013^0.024^^^^^~01/01/2013~ -~05728~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~662~^0.004^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05728~^~663~^0.061^6^0.008^~1~^~A~^^^^0.033^0.091^^^^^~01/01/2013~ -~05728~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~665~^0.015^6^0.001^~1~^~A~^^^^0.011^0.019^^^^^~01/01/2013~ -~05728~^~670~^0.010^6^0.002^~1~^~A~^^^^0.004^0.017^^^^^~01/01/2013~ -~05728~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~672~^0.012^6^0.001^~1~^~A~^^^^0.009^0.015^^^^^~01/01/2013~ -~05728~^~673~^0.182^6^0.018^~1~^~A~^^^^0.109^0.214^^^^^~01/01/2013~ -~05728~^~674~^1.771^6^0.047^~1~^~A~^^^^1.616^1.960^^^^^~01/01/2013~ -~05728~^~675~^1.411^6^0.079^~1~^~A~^^^^1.202^1.648^^^^^~01/01/2013~ -~05728~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05728~^~685~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05728~^~687~^0.008^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05728~^~689~^0.009^6^0.000^~1~^~AS~^^^^0.008^0.010^^^^^~01/01/2013~ -~05728~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05728~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~851~^0.072^6^0.007^~1~^~A~^^^^0.048^0.090^^^^^~01/01/2013~ -~05728~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05728~^~853~^0.009^6^0.000^~1~^~A~^^^^0.008^0.010^^^^^~01/01/2013~ -~05728~^~858~^0.017^6^0.001^~1~^~A~^^^^0.014^0.019^^^^^~01/01/2013~ -~05729~^~312~^0.052^6^0.002^~1~^~A~^^^^0.045^0.059^^^^^~01/01/2013~ -~05729~^~315~^0.007^6^0.000^~1~^~A~^^^^0.006^0.008^^^^^~01/01/2013~ -~05729~^~404~^0.033^6^0.005^~1~^~A~^^^^0.020^0.051^^^^^~01/01/2013~ -~05729~^~405~^0.145^6^0.012^~1~^~A~^^^^0.110^0.180^^^^^~01/01/2013~ -~05729~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~01/01/2013~ -~05729~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~01/01/2013~ -~05729~^~415~^0.775^6^0.021^~1~^~A~^^^^0.731^0.861^^^^^~01/01/2013~ -~05729~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~502~^0.782^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~504~^1.493^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~505~^1.777^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~506~^0.563^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~507~^0.203^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~508~^0.694^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~509~^0.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~510~^0.688^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~511~^1.219^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~512~^0.584^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~513~^1.164^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~514~^1.722^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~515~^2.921^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~517~^1.163^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~518~^0.853^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05729~^~521~^0.110^2^^~1~^~A~^^^^0.110^0.110^^^^^~01/01/2013~ -~05729~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~606~^0.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~610~^0.007^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~07/01/2015~ -~05729~^~611~^0.006^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~07/01/2015~ -~05729~^~612~^0.008^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~07/01/2015~ -~05729~^~613~^0.328^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~07/01/2015~ -~05729~^~614~^0.172^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~07/01/2015~ -~05729~^~615~^0.003^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~07/01/2015~ -~05729~^~617~^0.437^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~07/01/2015~ -~05729~^~618~^0.371^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~07/01/2015~ -~05729~^~619~^0.017^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~07/01/2015~ -~05729~^~620~^0.051^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~07/01/2015~ -~05729~^~621~^0.004^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~07/01/2015~ -~05729~^~624~^0.004^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~07/01/2015~ -~05729~^~625~^0.002^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~07/01/2015~ -~05729~^~626~^0.042^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~07/01/2015~ -~05729~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~628~^0.006^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~07/01/2015~ -~05729~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~631~^0.005^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~07/01/2015~ -~05729~^~645~^0.491^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~646~^0.479^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~652~^0.004^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~07/01/2015~ -~05729~^~653~^0.005^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~07/01/2015~ -~05729~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~663~^0.018^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~07/01/2015~ -~05729~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~665~^0.006^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~07/01/2015~ -~05729~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05729~^~671~^0.002^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~07/01/2015~ -~05729~^~672~^0.005^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~07/01/2015~ -~05729~^~673~^0.042^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~07/01/2015~ -~05729~^~674~^0.419^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~07/01/2015~ -~05729~^~675~^0.364^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~07/01/2015~ -~05729~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~687~^0.002^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~07/01/2015~ -~05729~^~689~^0.009^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~07/01/2015~ -~05729~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05729~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~851~^0.017^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~07/01/2015~ -~05729~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05729~^~853~^0.009^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~07/01/2015~ -~05729~^~858~^0.016^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~07/01/2015~ -~05730~^~312~^0.062^6^0.002^~1~^~A~^^^^0.055^0.070^^^^^~01/01/2013~ -~05730~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05730~^~404~^0.038^6^0.006^~1~^~A~^^^^0.025^0.061^^^^^~01/01/2013~ -~05730~^~405~^0.208^6^0.014^~1~^~A~^^^^0.170^0.240^^^^^~01/01/2013~ -~05730~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05730~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05730~^~415~^0.697^6^0.034^~1~^~A~^^^^0.594^0.816^^^^^~01/01/2013~ -~05730~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~503~^0.773^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~504~^1.869^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~505~^2.225^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~506~^0.705^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~508~^0.869^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~509~^0.801^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~510~^0.862^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~511~^1.527^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~512~^0.731^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~513~^1.458^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~514~^2.156^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~515~^3.657^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~516~^1.151^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~517~^1.457^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~518~^1.068^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05730~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05730~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05730~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05730~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05730~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05730~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05730~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05730~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05730~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05730~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05730~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05730~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05730~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05730~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05730~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05730~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05730~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05730~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05730~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05730~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05730~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05730~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05730~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05730~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05730~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05730~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05730~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05730~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05730~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05730~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05730~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05730~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05730~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05730~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05730~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05732~^~312~^0.054^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~404~^0.048^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~405~^0.157^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~406~^9.400^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~410~^0.972^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~415~^0.724^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~501~^0.257^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~502~^0.915^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~503~^0.755^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~504~^1.746^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~505~^2.163^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~506~^0.590^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~507~^0.206^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~508~^0.772^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~509~^0.721^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~510~^0.806^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~511~^1.391^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~512~^0.646^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~513~^1.334^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~514~^2.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~515~^3.262^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~516~^1.173^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~517~^1.138^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~518~^0.909^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~521~^0.185^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~605~^0.089^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~606~^1.756^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~607~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~611~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~612~^0.064^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~613~^1.182^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~614~^0.445^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~617~^1.936^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~618~^1.622^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~619~^0.103^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~620~^0.062^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~625~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~626~^0.206^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~628~^0.029^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~631~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~645~^2.191^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~646~^1.834^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05732~^~652~^0.011^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~653~^0.017^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~672~^0.011^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~687~^0.010^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05732~^~858~^0.013^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~312~^0.064^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~404~^0.042^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~405~^0.199^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~406~^11.614^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~410~^1.025^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~415~^0.789^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~501~^0.342^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~502~^1.218^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~503~^1.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~504~^2.324^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~505~^2.880^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~506~^0.785^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~507~^0.273^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~508~^1.026^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~509~^0.960^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~510~^1.071^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~511~^1.844^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~512~^0.859^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~513~^1.767^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~514~^2.665^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~515~^4.337^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~516~^1.533^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~517~^1.497^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~518~^1.207^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~605~^0.080^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05733~^~606~^1.657^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05733~^~607~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~611~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~612~^0.055^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~613~^1.090^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~614~^0.452^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~617~^1.745^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~618~^1.493^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~619~^0.096^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~626~^0.173^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~628~^0.028^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~629~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~645~^1.962^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05733~^~646~^1.708^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05733~^~652~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~672~^0.012^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~687~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05733~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05733~^~858~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05734~^~312~^0.049^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~404~^0.033^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~405~^0.121^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~406~^5.610^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~410~^0.623^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~415~^0.538^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~501~^0.211^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~502~^0.766^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~503~^0.634^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~504~^1.472^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~505~^1.807^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~506~^0.500^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~507~^0.179^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~508~^0.662^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~509~^0.603^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~510~^0.695^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~511~^1.240^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~512~^0.543^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~513~^1.209^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~514~^1.707^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~515~^2.784^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~516~^1.246^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~517~^1.123^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~518~^0.788^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~521~^0.276^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~605~^0.187^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~606~^3.549^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~611~^0.045^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~612~^0.133^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~613~^2.431^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~614~^0.851^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~617~^4.073^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~618~^3.342^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~619~^0.210^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~620~^0.082^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~625~^0.021^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~626~^0.459^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~628~^0.063^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~630~^0.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~645~^4.641^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~646~^3.712^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~652~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~653~^0.034^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~662~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~663~^0.134^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~664~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~665~^0.042^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~670~^0.026^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~672~^0.021^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~673~^0.451^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~674~^3.939^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~675~^3.274^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~685~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~687~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~689~^0.015^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~693~^0.145^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~695~^0.042^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05734~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~851~^0.203^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~853~^0.013^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05734~^~858~^0.018^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~312~^0.070^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~404~^0.037^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~405~^0.205^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~406~^8.876^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~410~^0.777^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~415~^0.590^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~501~^0.314^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~502~^1.136^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~503~^0.939^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~504~^2.181^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~505~^2.680^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~507~^0.264^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~508~^0.979^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~509~^0.894^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~510~^1.027^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~511~^1.824^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~512~^0.804^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~513~^1.775^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~514~^2.525^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~515~^4.118^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~516~^1.799^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~517~^1.634^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~518~^1.163^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~605~^0.175^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~606~^3.656^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~612~^0.128^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~613~^2.510^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~614~^0.894^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~617~^4.152^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~618~^3.426^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~619~^0.211^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~620~^0.111^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~625~^0.024^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~626~^0.497^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~628~^0.064^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~630~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~645~^4.765^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~646~^3.836^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~652~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~653~^0.035^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~662~^0.010^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~663~^0.123^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~664~^0.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~665~^0.038^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~670~^0.022^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~672~^0.022^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~673~^0.487^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~674~^4.029^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~675~^3.366^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~676~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~685~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~687~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~689~^0.016^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~693~^0.137^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~695~^0.038^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05735~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~851~^0.204^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05735~^~858~^0.025^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~404~^0.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~405~^0.280^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~406~^4.800^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~410~^1.054^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~415~^0.339^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~501~^0.204^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~502~^0.709^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~503~^0.559^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~504~^1.349^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~505~^1.608^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~506~^0.506^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~507~^0.184^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~508~^0.633^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~509~^0.574^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~510~^0.629^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~511~^1.138^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~512~^0.523^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~513~^1.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~514~^1.566^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~515~^2.654^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~516~^0.979^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~517~^1.129^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~518~^0.777^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~521~^0.220^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~605~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~606~^1.896^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~612~^0.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~613~^1.288^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~614~^0.484^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~617~^2.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~618~^1.677^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~619~^0.109^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~620~^0.107^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~626~^0.249^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~628~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~630~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~645~^2.314^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~646~^1.958^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~05736~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~672~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~687~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05736~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05736~^~858~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~312~^0.107^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~404~^0.063^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~405~^0.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~406~^5.574^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~410~^1.133^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~415~^0.398^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~501~^0.327^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~502~^1.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~503~^0.968^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~504~^2.236^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~505~^2.782^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~506~^0.752^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~507~^0.262^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~508~^0.990^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~509~^0.922^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~510~^1.031^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~511~^1.793^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~512~^0.822^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~513~^1.719^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~514~^2.570^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~515~^4.183^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~516~^1.550^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~517~^1.473^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~518~^1.161^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~605~^0.091^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~05737~^~606~^2.307^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~05737~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~611~^0.019^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~612~^0.073^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~613~^1.557^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~614~^0.597^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~617~^2.920^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~618~^2.369^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~619~^0.152^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~620~^0.158^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~621~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~626~^0.371^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~628~^0.044^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~630~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~631~^0.015^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~645~^3.378^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~05737~^~646~^2.754^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~05737~^~652~^0.012^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~653~^0.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~671~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~05737~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~687~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05737~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05737~^~858~^0.032^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~05738~^~312~^0.070^4^0.003^~1~^~A~^^^^0.064^0.076^^^^^~01/01/2013~ -~05738~^~315~^0.011^4^0.000^~1~^~A~^^^^0.010^0.012^^^^^~01/01/2013~ -~05738~^~404~^0.042^2^^~1~^~A~^^^^0.035^0.048^^^^^~01/01/2013~ -~05738~^~405~^0.145^2^^~1~^~A~^^^^0.130^0.160^^^^^~01/01/2013~ -~05738~^~406~^9.924^8^0.222^~1~^~A~^^^^9.230^11.100^^^^^~01/01/2013~ -~05738~^~410~^0.775^2^^~1~^~A~^^^^0.720^0.830^^^^^~01/01/2013~ -~05738~^~415~^0.813^2^^~1~^~A~^^^^0.792^0.835^^^^^~01/01/2013~ -~05738~^~501~^0.252^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~502~^0.859^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~503~^0.678^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~505~^1.952^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~506~^0.619^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~508~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~510~^0.756^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~511~^1.340^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~512~^0.641^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~514~^1.892^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~515~^3.209^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~516~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~517~^1.278^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~518~^0.937^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05738~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~606~^0.289^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~610~^0.004^6^0.000^~1~^~A~^^^^0.003^0.004^^^^^~01/01/2013~ -~05738~^~611~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05738~^~612~^0.004^6^0.002^~1~^~A~^^^^0.000^0.011^^^^^~01/01/2013~ -~05738~^~613~^0.177^6^0.022^~1~^~A~^^^^0.132^0.267^^^^^~01/01/2013~ -~05738~^~614~^0.093^6^0.008^~1~^~A~^^^^0.075^0.115^^^^^~01/01/2013~ -~05738~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.002^^^^^~01/01/2013~ -~05738~^~617~^0.235^6^0.035^~1~^~AS~^^^^0.166^0.386^^^^^~01/01/2013~ -~05738~^~618~^0.200^6^0.022^~1~^~AS~^^^^0.137^0.284^^^^^~01/01/2013~ -~05738~^~619~^0.009^6^0.001^~1~^~AS~^^^^0.006^0.015^^^^^~01/01/2013~ -~05738~^~620~^0.028^6^0.003^~1~^~A~^^^^0.021^0.039^^^^^~01/01/2013~ -~05738~^~621~^0.002^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05738~^~624~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05738~^~625~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05738~^~626~^0.023^6^0.006^~1~^~AS~^^^^0.010^0.051^^^^^~01/01/2013~ -~05738~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~628~^0.003^6^0.001^~1~^~A~^^^^0.001^0.007^^^^^~01/01/2013~ -~05738~^~629~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~631~^0.003^6^0.000^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05738~^~645~^0.264^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~652~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05738~^~653~^0.003^6^0.000^~1~^~A~^^^^0.002^0.003^^^^^~01/01/2013~ -~05738~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~662~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~663~^0.010^6^0.001^~1~^~A~^^^^0.007^0.012^^^^^~01/01/2013~ -~05738~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~665~^0.003^6^0.000^~1~^~A~^^^^0.002^0.005^^^^^~01/01/2013~ -~05738~^~670~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05738~^~671~^0.001^6^0.001^~1~^~A~^^^^0.000^0.005^^^^^~01/01/2013~ -~05738~^~672~^0.003^6^0.000^~1~^~A~^^^^0.002^0.004^^^^^~01/01/2013~ -~05738~^~673~^0.023^6^0.006^~1~^~A~^^^^0.010^0.051^^^^^~01/01/2013~ -~05738~^~674~^0.226^6^0.034^~1~^~A~^^^^0.155^0.374^^^^^~01/01/2013~ -~05738~^~675~^0.196^6^0.022^~1~^~A~^^^^0.133^0.281^^^^^~01/01/2013~ -~05738~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~685~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~687~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05738~^~689~^0.005^6^0.001^~1~^~AS~^^^^0.003^0.007^^^^^~01/01/2013~ -~05738~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05738~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~851~^0.009^6^0.001^~1~^~A~^^^^0.006^0.015^^^^^~01/01/2013~ -~05738~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05738~^~853~^0.005^6^0.001^~1~^~A~^^^^0.003^0.007^^^^^~01/01/2013~ -~05738~^~858~^0.009^6^0.001^~1~^~A~^^^^0.006^0.013^^^^^~01/01/2013~ -~05739~^~312~^0.063^4^0.001^~1~^~A~^^^^0.060^0.067^^^^^~01/01/2013~ -~05739~^~315~^0.011^10^0.001^~1~^~A~^^^^0.010^0.014^^^^^~01/01/2013~ -~05739~^~404~^0.035^2^^~1~^~A~^^^^0.021^0.050^^^^^~01/01/2013~ -~05739~^~405~^0.205^2^^~1~^~A~^^^^0.200^0.210^^^^^~01/01/2013~ -~05739~^~406~^11.750^8^0.237^~1~^~A~^^^^10.700^13.000^^^^^~01/01/2013~ -~05739~^~410~^0.900^2^^~1~^~A~^^^^0.800^1.000^^^^^~01/01/2013~ -~05739~^~415~^0.807^2^^~1~^~A~^^^^0.788^0.827^^^^^~01/01/2013~ -~05739~^~501~^0.321^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~502~^1.094^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~503~^0.864^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~504~^2.088^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~505~^2.486^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~506~^0.788^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~508~^0.972^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~509~^0.895^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~510~^0.963^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~511~^1.706^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~512~^0.817^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~513~^1.629^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~514~^2.409^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~516~^1.286^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~517~^1.628^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~518~^1.194^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05739~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~606~^0.593^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~610~^0.004^6^0.001^~1~^~A~^^^^0.000^0.008^^^^^~01/01/2013~ -~05739~^~611~^0.005^6^0.002^~1~^~A~^^^^0.000^0.012^^^^^~01/01/2013~ -~05739~^~612~^0.018^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05739~^~613~^0.372^6^0.020^~1~^~A~^^^^0.286^0.433^^^^^~01/01/2013~ -~05739~^~614~^0.181^6^0.009^~1~^~A~^^^^0.156^0.209^^^^^~01/01/2013~ -~05739~^~615~^0.002^6^0.000^~1~^~A~^^^^0.001^0.003^^^^^~01/01/2013~ -~05739~^~617~^0.556^6^0.035^~1~^~AS~^^^^0.438^0.685^^^^^~01/01/2013~ -~05739~^~618~^0.431^6^0.029^~1~^~AS~^^^^0.354^0.521^^^^^~01/01/2013~ -~05739~^~619~^0.020^6^0.003^~1~^~AS~^^^^0.013^0.029^^^^^~01/01/2013~ -~05739~^~620~^0.044^6^0.001^~1~^~A~^^^^0.039^0.048^^^^^~01/01/2013~ -~05739~^~621~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05739~^~624~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05739~^~625~^0.002^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05739~^~626~^0.056^6^0.007^~1~^~AS~^^^^0.031^0.075^^^^^~01/01/2013~ -~05739~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~628~^0.008^6^0.001^~1~^~A~^^^^0.004^0.011^^^^^~01/01/2013~ -~05739~^~629~^0.004^6^0.001^~1~^~A~^^^^0.002^0.008^^^^^~01/01/2013~ -~05739~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~631~^0.005^6^0.000^~1~^~A~^^^^0.004^0.006^^^^^~01/01/2013~ -~05739~^~645~^0.626^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~652~^0.004^6^0.000^~1~^~A~^^^^0.003^0.005^^^^^~01/01/2013~ -~05739~^~653~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05739~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~662~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05739~^~663~^0.020^6^0.003^~1~^~A~^^^^0.012^0.032^^^^^~01/01/2013~ -~05739~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~665~^0.003^6^0.001^~1~^~A~^^^^0.001^0.006^^^^^~01/01/2013~ -~05739~^~670~^0.001^6^0.000^~1~^~A~^^^^0.000^0.003^^^^^~01/01/2013~ -~05739~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~672~^0.006^6^0.001^~1~^~A~^^^^0.004^0.009^^^^^~01/01/2013~ -~05739~^~673~^0.055^6^0.007^~1~^~A~^^^^0.031^0.073^^^^^~01/01/2013~ -~05739~^~674~^0.536^6^0.033^~1~^~A~^^^^0.418^0.653^^^^^~01/01/2013~ -~05739~^~675~^0.426^6^0.028^~1~^~A~^^^^0.353^0.517^^^^^~01/01/2013~ -~05739~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~685~^0.001^6^0.000^~1~^~A~^^^^0.000^0.002^^^^^~01/01/2013~ -~05739~^~687~^0.004^6^0.001^~1~^~A~^^^^0.002^0.006^^^^^~01/01/2013~ -~05739~^~689~^0.005^6^0.000^~1~^~AS~^^^^0.003^0.006^^^^^~01/01/2013~ -~05739~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05739~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~851~^0.020^6^0.002^~1~^~A~^^^^0.013^0.028^^^^^~01/01/2013~ -~05739~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05739~^~853~^0.005^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05739~^~858~^0.010^6^0.000^~1~^~A~^^^^0.008^0.011^^^^^~01/01/2013~ -~05740~^~312~^0.092^4^0.016^~1~^~A~^^^^0.047^0.118^^^^^~01/01/2013~ -~05740~^~315~^0.014^4^0.001^~1~^~A~^^^^0.010^0.016^^^^^~01/01/2013~ -~05740~^~404~^0.062^8^0.004^~1~^~A~^^^^0.048^0.083^^^^^~01/01/2013~ -~05740~^~405~^0.255^8^0.007^~1~^~A~^^^^0.230^0.300^^^^^~01/01/2013~ -~05740~^~406~^5.696^8^0.129^~1~^~A~^^^^5.080^6.200^^^^^~01/01/2013~ -~05740~^~410~^0.935^2^^~1~^~A~^^^^0.890^0.980^^^^^~01/01/2013~ -~05740~^~415~^0.440^8^0.013^~1~^~A~^^^^0.403^0.516^^^^^~01/01/2013~ -~05740~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~502~^0.773^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~503~^0.610^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~504~^1.475^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~505~^1.756^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~506~^0.556^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~508~^0.686^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~509~^0.632^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~510~^0.680^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~511~^1.205^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~512~^0.577^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~513~^1.151^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~514~^1.702^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~515~^2.886^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~516~^0.908^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~518~^0.843^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05740~^~606~^0.683^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~610~^0.002^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~611~^0.010^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~612~^0.024^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~613~^0.438^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~614~^0.190^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~617~^0.669^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~618~^0.524^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~619~^0.028^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~620~^0.036^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~621~^0.002^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~626~^0.069^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~ -~05740~^~628~^0.010^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~629~^0.001^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~630~^0.000^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~631~^0.003^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~645~^0.756^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05740~^~646~^0.613^0^^~4~^~BFFN~^~05694~^^^^^^^^^~01/01/2013~ -~05741~^~312~^0.127^4^0.018^~1~^~A~^^^^0.075^0.154^^^^^~01/01/2013~ -~05741~^~315~^0.016^4^0.000^~1~^~A~^^^^0.016^0.017^^^^^~01/01/2013~ -~05741~^~404~^0.060^2^^~1~^~A~^^^^0.058^0.063^^^^^~01/01/2013~ -~05741~^~405~^0.375^2^^~1~^~A~^^^^0.370^0.380^^^^^~01/01/2013~ -~05741~^~406~^6.685^2^^~1~^~A~^^^^6.270^7.100^^^^^~01/01/2013~ -~05741~^~410~^1.015^2^^~1~^~A~^^^^0.930^1.100^^^^^~01/01/2013~ -~05741~^~415~^0.438^10^0.008^~1~^~A~^^^^0.435^0.451^^^^^~01/01/2013~ -~05741~^~501~^0.295^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~502~^1.007^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~503~^0.794^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~504~^1.921^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~505~^2.287^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~506~^0.725^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~508~^0.893^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~509~^0.823^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~510~^0.886^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~511~^1.569^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~512~^0.751^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~513~^1.498^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~514~^2.216^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~515~^3.758^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~516~^1.182^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~517~^1.497^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~518~^1.098^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~05741~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~606~^1.807^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~607~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~608~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~609~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~610~^0.006^6^0.001^~1~^~A~^^^^0.000^0.009^^^^^~01/01/2013~ -~05741~^~611~^0.021^6^0.005^~1~^~A~^^^^0.003^0.040^^^^^~01/01/2013~ -~05741~^~612~^0.061^6^0.006^~1~^~A~^^^^0.046^0.087^^^^^~01/01/2013~ -~05741~^~613~^1.178^6^0.040^~1~^~A~^^^^1.017^1.304^^^^^~01/01/2013~ -~05741~^~614~^0.505^6^0.015^~1~^~A~^^^^0.469^0.573^^^^^~01/01/2013~ -~05741~^~615~^0.006^6^0.000^~1~^~A~^^^^0.005^0.008^^^^^~01/01/2013~ -~05741~^~617~^1.832^6^0.051^~1~^~AS~^^^^1.689^2.051^^^^^~01/01/2013~ -~05741~^~618~^1.436^6^0.080^~1~^~AS~^^^^1.217^1.671^^^^^~01/01/2013~ -~05741~^~619~^0.075^6^0.007^~1~^~AS~^^^^0.049^0.094^^^^^~01/01/2013~ -~05741~^~620~^0.087^6^0.002^~1~^~A~^^^^0.080^0.093^^^^^~01/01/2013~ -~05741~^~621~^0.005^6^0.001^~1~^~A~^^^^0.004^0.008^^^^^~01/01/2013~ -~05741~^~624~^0.003^6^0.001^~1~^~A~^^^^0.000^0.004^^^^^~01/01/2013~ -~05741~^~625~^0.008^6^0.001^~1~^~A~^^^^0.006^0.011^^^^^~01/01/2013~ -~05741~^~626~^0.187^6^0.019^~1~^~AS~^^^^0.112^0.219^^^^^~01/01/2013~ -~05741~^~627~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~628~^0.026^6^0.001^~1~^~A~^^^^0.024^0.029^^^^^~01/01/2013~ -~05741~^~629~^0.012^6^0.002^~1~^~A~^^^^0.006^0.018^^^^^~01/01/2013~ -~05741~^~630~^0.000^6^0.000^~1~^~AS~^^^^0.000^0.001^^^^^~01/01/2013~ -~05741~^~631~^0.008^6^0.000^~1~^~A~^^^^0.007^0.009^^^^^~01/01/2013~ -~05741~^~645~^2.061^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~646~^1.662^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~652~^0.011^6^0.001^~1~^~A~^^^^0.009^0.013^^^^^~01/01/2013~ -~05741~^~653~^0.017^6^0.002^~1~^~A~^^^^0.013^0.024^^^^^~01/01/2013~ -~05741~^~654~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~662~^0.004^6^0.000^~1~^~A~^^^^0.003^0.006^^^^^~01/01/2013~ -~05741~^~663~^0.061^6^0.008^~1~^~A~^^^^0.033^0.091^^^^^~01/01/2013~ -~05741~^~664~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~665~^0.015^6^0.001^~1~^~A~^^^^0.011^0.019^^^^^~01/01/2013~ -~05741~^~670~^0.010^6^0.002^~1~^~A~^^^^0.004^0.017^^^^^~01/01/2013~ -~05741~^~671~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~672~^0.012^6^0.001^~1~^~A~^^^^0.009^0.015^^^^^~01/01/2013~ -~05741~^~673~^0.182^6^0.018^~1~^~A~^^^^0.109^0.214^^^^^~01/01/2013~ -~05741~^~674~^1.771^6^0.047^~1~^~A~^^^^1.616^1.960^^^^^~01/01/2013~ -~05741~^~675~^1.411^6^0.079^~1~^~A~^^^^1.202^1.648^^^^^~01/01/2013~ -~05741~^~676~^0.000^6^0.000^~1~^~A~^^^^0.000^0.001^^^^^~01/01/2013~ -~05741~^~685~^0.003^6^0.001^~1~^~A~^^^^0.001^0.004^^^^^~01/01/2013~ -~05741~^~687~^0.008^6^0.001^~1~^~A~^^^^0.006^0.012^^^^^~01/01/2013~ -~05741~^~689~^0.009^6^0.000^~1~^~AS~^^^^0.008^0.010^^^^^~01/01/2013~ -~05741~^~693~^0.065^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~05741~^~697~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~851~^0.072^6^0.007^~1~^~A~^^^^0.048^0.090^^^^^~01/01/2013~ -~05741~^~852~^0.000^6^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2013~ -~05741~^~853~^0.009^6^0.000^~1~^~A~^^^^0.008^0.010^^^^^~01/01/2013~ -~05741~^~858~^0.017^6^0.001^~1~^~A~^^^^0.014^0.019^^^^^~01/01/2013~ -~05742~^~312~^0.076^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~404~^0.053^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~405~^0.268^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~406~^5.599^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~410~^1.179^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~415~^0.419^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~501~^0.220^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~502~^0.803^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~503~^0.657^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~504~^1.519^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~505~^1.890^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~506~^0.510^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~507~^0.179^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~508~^0.677^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~509~^0.624^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~510~^0.704^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~511~^1.241^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~512~^0.556^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~513~^1.196^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~514~^1.753^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~515~^2.854^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~516~^1.144^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~517~^1.054^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~518~^0.794^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~521~^0.192^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~605~^0.106^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~606~^2.386^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~612~^0.079^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~613~^1.646^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~614~^0.578^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~617~^2.582^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~618~^2.157^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~619~^0.144^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~620~^0.092^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~626~^0.334^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~628~^0.039^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~629~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~630~^0.008^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~645~^2.994^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~646~^2.454^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~652~^0.012^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~653~^0.020^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~663~^0.069^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~664~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~665~^0.024^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~670~^0.017^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~672~^0.014^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~673~^0.329^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~674~^2.512^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~675~^2.116^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~693~^0.081^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~695~^0.024^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05742~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~851~^0.140^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05742~^~858~^0.019^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~312~^0.089^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~404~^0.047^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~405~^0.297^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~406~^6.446^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~410~^1.133^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~415~^0.444^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~501~^0.282^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~502~^1.012^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~503~^0.831^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~504~^1.919^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~505~^2.389^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~506~^0.646^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~507~^0.224^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~508~^0.847^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~509~^0.792^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~510~^0.882^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~511~^1.523^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~512~^0.707^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~513~^1.456^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~514~^2.202^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~515~^3.582^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~516~^1.268^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~517~^1.228^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~518~^0.993^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~521~^0.284^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~605~^0.138^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05743~^~606~^2.960^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05743~^~607~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~611~^0.028^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~612~^0.094^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~613~^2.029^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~614~^0.736^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~617~^3.101^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~618~^2.604^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~619~^0.166^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~620~^0.119^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~626~^0.398^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~628~^0.047^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~629~^0.004^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~630~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~645~^3.593^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05743~^~646~^2.949^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05743~^~652~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~653~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~671~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~672~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~687~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05743~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05743~^~858~^0.026^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~312~^0.085^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~404~^0.045^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~405~^0.194^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~406~^4.887^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~410~^0.783^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~415~^0.333^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~501~^0.156^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~502~^0.554^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~503~^0.443^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~504~^1.073^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~505~^1.261^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~506~^0.401^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~507~^0.151^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~508~^0.513^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~509~^0.449^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~510~^0.520^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~511~^0.981^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~512~^0.413^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~513~^0.970^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~514~^1.264^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~515~^2.137^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~516~^1.089^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~517~^1.076^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~518~^0.638^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~521~^0.406^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~605~^0.287^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05744~^~606~^2.730^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05744~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~612~^0.104^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~613~^1.865^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~614~^0.657^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~617~^6.260^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~618~^5.068^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~619~^0.314^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~620~^0.110^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~626~^0.691^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~627~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~628~^0.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~629~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~645~^7.110^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05744~^~646~^5.570^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~05744~^~652~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~653~^0.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~662~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~663~^0.210^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~665~^0.063^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~670~^0.039^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~671~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~672~^0.032^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~673~^0.677^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~674~^6.049^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~675~^4.966^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~676~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~685~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~687~^0.030^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~05744~^~693~^0.224^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05744~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05744~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~851~^0.303^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05744~^~853~^0.023^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05744~^~858~^0.024^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~05745~^~312~^0.063^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~404~^0.034^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~405~^0.215^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~406~^10.669^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~410~^0.905^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~415~^0.598^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~501~^0.182^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~502~^0.652^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~503~^0.522^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~504~^1.263^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~505~^1.483^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~506~^0.472^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~507~^0.178^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~508~^0.606^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~509~^0.528^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~510~^0.615^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~511~^1.164^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~512~^0.486^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~513~^1.154^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~514~^1.491^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~515~^2.519^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~516~^1.321^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~517~^1.288^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~518~^0.754^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~605~^0.156^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~606~^3.205^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~612~^0.116^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~613~^2.195^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~614~^0.784^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~617~^3.637^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~618~^2.956^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~619~^0.180^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~620~^0.080^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~626~^0.408^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~627~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~645~^4.138^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~646~^3.289^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~653~^0.030^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~663~^0.116^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~665~^0.033^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~670~^0.019^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~672~^0.019^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~673~^0.400^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~674~^3.521^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~675~^2.903^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~685~^0.005^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~687~^0.018^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~689~^0.015^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~693~^0.123^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~695~^0.033^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~ -~05745~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~851~^0.175^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05745~^~858~^0.017^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~ -~05746~^~312~^0.044^6^0.003^~1~^~A~^^^1^0.032^0.053^5^0.036^0.052^~2, 3~^~04/01/2013~ -~05746~^~315~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.010^0.014^~1, 2, 3~^~04/01/2013~ -~05746~^~404~^0.098^3^0.011^~1~^~A~^^^1^0.080^0.118^2^0.050^0.145^~2, 3~^~04/01/2013~ -~05746~^~405~^0.187^3^0.028^~1~^~A~^^^1^0.130^0.220^2^0.064^0.309^~2, 3~^~04/01/2013~ -~05746~^~406~^9.450^3^0.603^~1~^~A~^^^1^8.410^10.500^2^6.854^12.046^~2, 3~^~04/01/2013~ -~05746~^~410~^1.585^2^^~1~^~A~^^^1^1.530^1.640^1^^^^~04/01/2013~ -~05746~^~415~^0.921^3^0.036^~1~^~A~^^^1^0.866^0.989^2^0.765^1.076^~2, 3~^~04/01/2013~ -~05746~^~501~^0.404^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~502~^1.438^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~503~^1.573^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~504~^2.652^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~505~^3.083^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~506~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~508~^1.294^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~509~^1.155^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~510~^1.660^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~511~^2.168^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~512~^1.195^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~513~^1.872^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~514~^3.015^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~515~^4.749^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~516~^1.419^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~517~^1.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~518~^1.222^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05746~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~606~^1.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~610~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.017^5^0.013^0.016^~2, 3~^~04/01/2013~ -~05746~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~04/01/2013~ -~05746~^~612~^0.019^6^0.002^~1~^~A~^^^1^0.012^0.024^5^0.014^0.024^~2, 3~^~04/01/2013~ -~05746~^~613~^0.746^6^0.066^~1~^~A~^^^1^0.543^0.967^5^0.575^0.916^~2, 3~^~04/01/2013~ -~05746~^~614~^0.211^6^0.045^~1~^~A~^^^1^0.000^0.301^5^0.096^0.326^~1, 2, 3~^~04/01/2013~ -~05746~^~615~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~05746~^~617~^1.096^6^0.102^~1~^~AS~^^^1^0.789^1.417^5^0.833^1.359^~2, 3~^~04/01/2013~ -~05746~^~618~^0.601^6^0.040^~1~^~AS~^^^1^0.467^0.755^5^0.499^0.703^~2, 3~^~04/01/2013~ -~05746~^~619~^0.026^6^0.001^~1~^~AS~^^^1^0.023^0.032^5^0.022^0.030^~2, 3~^~04/01/2013~ -~05746~^~620~^0.086^6^0.004^~1~^~A~^^^1^0.075^0.104^5^0.075^0.097^~2, 3~^~04/01/2013~ -~05746~^~621~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2013~ -~05746~^~624~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.007^5^0.003^0.006^~2, 3~^~04/01/2013~ -~05746~^~625~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~04/01/2013~ -~05746~^~626~^0.155^6^0.020^~1~^~AS~^^^1^0.101^0.217^5^0.104^0.206^~2, 3~^~04/01/2013~ -~05746~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~628~^0.018^6^0.002^~1~^~A~^^^1^0.013^0.023^5^0.014^0.022^~2, 3~^~04/01/2013~ -~05746~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05746~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~05746~^~631~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.012^~2, 3~^~04/01/2013~ -~05746~^~645~^1.275^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~646~^0.791^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05746~^~653~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.002^0.006^~1, 2, 3~^~04/01/2013~ -~05746~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~663~^0.011^6^0.002^~1~^~A~^^^1^0.004^0.018^5^0.006^0.016^~2, 3~^~04/01/2013~ -~05746~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~665~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~05746~^~670~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~05746~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~672~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.013^~2, 3~^~04/01/2013~ -~05746~^~673~^0.155^6^0.020^~1~^~A~^^^1^0.101^0.217^5^0.104^0.206^~2, 3~^~04/01/2013~ -~05746~^~674~^1.085^6^0.101^~1~^~A~^^^1^0.785^1.405^5^0.824^1.345^~2, 3~^~04/01/2013~ -~05746~^~675~^0.598^6^0.039^~1~^~A~^^^1^0.465^0.750^5^0.497^0.699^~2, 3~^~04/01/2013~ -~05746~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~687~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^5^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05746~^~689~^0.022^6^0.001^~1~^~AS~^^^1^0.019^0.026^5^0.019^0.025^~2, 3~^~04/01/2013~ -~05746~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05746~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~851~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.032^5^0.022^0.030^~2, 3~^~04/01/2013~ -~05746~^~852~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~05746~^~853~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.026^5^0.019^0.024^~2, 3~^~04/01/2013~ -~05746~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05746~^~858~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.029^5^0.019^0.027^~2, 3~^~04/01/2013~ -~05747~^~312~^0.042^6^0.004^~1~^~A~^^^1^0.032^0.058^5^0.032^0.051^~2, 3~^~04/01/2013~ -~05747~^~315~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.017^5^0.009^0.014^~1, 2, 3~^~04/01/2013~ -~05747~^~404~^0.107^3^0.019^~1~^~A~^^^1^0.072^0.135^2^0.026^0.187^~2, 3~^~04/01/2013~ -~05747~^~405~^0.213^3^0.009^~1~^~A~^^^1^0.200^0.230^2^0.175^0.251^~2, 3~^~04/01/2013~ -~05747~^~406~^12.133^3^1.233^~1~^~A~^^^1^9.700^13.700^2^6.827^17.440^~2, 3~^~04/01/2013~ -~05747~^~410~^1.710^2^^~1~^~A~^^^1^1.620^1.800^1^^^^~04/01/2013~ -~05747~^~415~^1.157^3^0.092^~1~^~A~^^^1^1.000^1.320^2^0.759^1.554^~2, 3~^~04/01/2013~ -~05747~^~501~^0.385^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~502~^1.370^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~503~^1.498^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~504~^2.527^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~505~^2.936^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~506~^0.794^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~507~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~508~^1.233^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~509~^1.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~510~^1.581^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~511~^2.065^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~512~^1.138^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~513~^1.783^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~514~^2.872^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~515~^4.524^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~516~^1.352^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~517~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~518~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05747~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~606~^0.992^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~610~^0.014^6^0.002^~1~^~A~^^^1^0.010^0.019^5^0.010^0.018^~2, 3~^~04/01/2013~ -~05747~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~04/01/2013~ -~05747~^~612~^0.019^6^0.003^~1~^~A~^^^1^0.009^0.029^5^0.011^0.027^~2, 3~^~04/01/2013~ -~05747~^~613~^0.704^6^0.079^~1~^~A~^^^1^0.456^0.953^5^0.500^0.907^~2, 3~^~04/01/2013~ -~05747~^~614~^0.236^6^0.019^~1~^~A~^^^1^0.174^0.300^5^0.187^0.284^~2, 3~^~04/01/2013~ -~05747~^~615~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~05747~^~617~^1.041^6^0.129^~1~^~AS~^^^1^0.659^1.390^5^0.710^1.371^~2, 3~^~04/01/2013~ -~05747~^~618~^0.581^6^0.060^~1~^~AS~^^^1^0.389^0.813^5^0.426^0.736^~2, 3~^~04/01/2013~ -~05747~^~619~^0.024^6^0.002^~1~^~AS~^^^1^0.017^0.029^5^0.019^0.028^~2, 3~^~04/01/2013~ -~05747~^~620~^0.085^6^0.004^~1~^~A~^^^1^0.076^0.103^5^0.074^0.096^~2, 3~^~04/01/2013~ -~05747~^~621~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2013~ -~05747~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05747~^~625~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.008^5^0.003^0.007^~2, 3~^~04/01/2013~ -~05747~^~626~^0.147^6^0.021^~1~^~AS~^^^1^0.084^0.200^5^0.093^0.201^~2, 3~^~04/01/2013~ -~05747~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~628~^0.017^6^0.002^~1~^~A~^^^1^0.011^0.025^5^0.012^0.023^~2, 3~^~04/01/2013~ -~05747~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.006^~2, 3~^~04/01/2013~ -~05747~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~05747~^~631~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.008^0.011^~2, 3~^~04/01/2013~ -~05747~^~645~^1.212^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~646~^0.764^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~652~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.004^0.007^~2, 3~^~04/01/2013~ -~05747~^~653~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.006^~2, 3~^~04/01/2013~ -~05747~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~663~^0.009^6^0.001^~1~^~A~^^^1^0.003^0.013^5^0.006^0.013^~2, 3~^~04/01/2013~ -~05747~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~665~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~05747~^~670~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~05747~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~672~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~04/01/2013~ -~05747~^~673~^0.147^6^0.021^~1~^~A~^^^1^0.084^0.200^5^0.093^0.201^~2, 3~^~04/01/2013~ -~05747~^~674~^1.031^6^0.127^~1~^~A~^^^1^0.656^1.377^5^0.704^1.359^~2, 3~^~04/01/2013~ -~05747~^~675~^0.579^6^0.060^~1~^~A~^^^1^0.389^0.813^5^0.425^0.733^~2, 3~^~04/01/2013~ -~05747~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~687~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^5^-0.001^0.005^~1, 2, 3~^~04/01/2013~ -~05747~^~689~^0.020^6^0.000^~1~^~AS~^^^1^0.019^0.021^5^0.019^0.021^~2, 3~^~04/01/2013~ -~05747~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05747~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~851~^0.024^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.019^0.028^~2, 3~^~04/01/2013~ -~05747~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~853~^0.020^6^0.000^~1~^~A~^^^1^0.019^0.021^5^0.019^0.021^~2, 3~^~04/01/2013~ -~05747~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05747~^~858~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.026^5^0.019^0.025^~2, 3~^~04/01/2013~ -~05748~^~312~^0.034^6^0.002^~1~^~A~^^^1^0.029^0.040^5^0.029^0.038^~2, 3~^~04/01/2013~ -~05748~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~1, 2, 3~^~04/01/2013~ -~05748~^~404~^0.075^3^0.015^~1~^~A~^^^1^0.053^0.103^2^0.011^0.139^~2, 3~^~04/01/2013~ -~05748~^~405~^0.167^3^0.019^~1~^~A~^^^1^0.130^0.190^2^0.087^0.247^~2, 3~^~04/01/2013~ -~05748~^~406~^9.173^3^0.771^~1~^~A~^^^1^7.750^10.400^2^5.855^12.492^~2, 3~^~04/01/2013~ -~05748~^~410~^1.250^2^^~1~^~A~^^^1^1.060^1.440^1^^^^~04/01/2013~ -~05748~^~415~^0.962^3^0.098^~1~^~A~^^^1^0.767^1.080^2^0.539^1.385^~2, 3~^~04/01/2013~ -~05748~^~501~^0.356^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~502~^1.266^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~503~^1.385^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~504~^2.336^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~505~^2.715^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~506~^0.734^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~508~^1.140^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~509~^1.017^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~510~^1.462^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~511~^1.909^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~512~^1.053^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~513~^1.648^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~514~^2.656^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~515~^4.183^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~516~^1.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~517~^0.897^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~518~^1.077^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05748~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~606~^1.193^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~610~^0.012^6^0.003^~1~^~A~^^^1^0.000^0.018^5^0.005^0.020^~1, 2, 3~^~04/01/2013~ -~05748~^~611~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.006^5^0.002^0.007^~1, 2, 3~^~04/01/2013~ -~05748~^~612~^0.021^6^0.002^~1~^~A~^^^1^0.017^0.026^5^0.017^0.025^~2, 3~^~04/01/2013~ -~05748~^~613~^0.872^6^0.087^~1~^~A~^^^1^0.672^1.149^5^0.648^1.096^~2, 3~^~04/01/2013~ -~05748~^~614~^0.268^6^0.020^~1~^~A~^^^1^0.210^0.333^5^0.215^0.320^~2, 3~^~04/01/2013~ -~05748~^~615~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05748~^~617~^1.345^6^0.146^~1~^~AS~^^^1^1.005^1.846^5^0.969^1.721^~2, 3~^~04/01/2013~ -~05748~^~618~^0.625^6^0.036^~1~^~AS~^^^1^0.515^0.741^5^0.533^0.717^~2, 3~^~04/01/2013~ -~05748~^~619~^0.024^6^0.001^~1~^~AS~^^^1^0.021^0.029^5^0.020^0.028^~2, 3~^~04/01/2013~ -~05748~^~620~^0.076^6^0.001^~1~^~A~^^^1^0.074^0.080^5^0.074^0.078^~2, 3~^~04/01/2013~ -~05748~^~621~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.005^0.009^~2, 3~^~04/01/2013~ -~05748~^~624~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~04/01/2013~ -~05748~^~625~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.005^0.008^~2, 3~^~04/01/2013~ -~05748~^~626~^0.200^6^0.027^~1~^~AS~^^^1^0.133^0.297^5^0.130^0.271^~2, 3~^~04/01/2013~ -~05748~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~628~^0.022^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.017^0.027^~2, 3~^~04/01/2013~ -~05748~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.003^0.004^~1, 2, 3~^~04/01/2013~ -~05748~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~05748~^~631~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.007^0.011^~2, 3~^~04/01/2013~ -~05748~^~645~^1.576^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~646~^0.793^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~652~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.002^0.007^~1, 2, 3~^~04/01/2013~ -~05748~^~653~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05748~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~05748~^~663~^0.011^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.009^0.013^~2, 3~^~04/01/2013~ -~05748~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~665~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.006^5^0.000^0.005^~1, 2, 3~^~04/01/2013~ -~05748~^~670~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~05748~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.008^0.009^~2, 3~^~04/01/2013~ -~05748~^~673~^0.200^6^0.027^~1~^~A~^^^1^0.133^0.295^5^0.130^0.270^~2, 3~^~04/01/2013~ -~05748~^~674~^1.334^6^0.146^~1~^~A~^^^1^0.997^1.833^5^0.959^1.709^~2, 3~^~04/01/2013~ -~05748~^~675~^0.620^6^0.035^~1~^~A~^^^1^0.515^0.733^5^0.531^0.709^~2, 3~^~04/01/2013~ -~05748~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~687~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.003^0.006^~1, 2, 3~^~04/01/2013~ -~05748~^~689~^0.020^6^0.001^~1~^~AS~^^^1^0.017^0.023^5^0.018^0.023^~2, 3~^~04/01/2013~ -~05748~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~05748~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~851~^0.024^6^0.001^~1~^~A~^^^1^0.021^0.029^5^0.020^0.028^~2, 3~^~04/01/2013~ -~05748~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~853~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.018^0.023^~2, 3~^~04/01/2013~ -~05748~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05748~^~858~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.022^5^0.018^0.022^~2, 3~^~04/01/2013~ -~05749~^~312~^0.034^6^0.001^~1~^~A~^^^1^0.029^0.039^5^0.031^0.038^~2, 3~^~04/01/2013~ -~05749~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~1, 2, 3~^~04/01/2013~ -~05749~^~404~^0.079^3^0.018^~1~^~A~^^^1^0.059^0.114^2^0.004^0.155^~2, 3~^~04/01/2013~ -~05749~^~405~^0.227^3^0.009^~1~^~A~^^^1^0.210^0.240^2^0.189^0.265^~2, 3~^~04/01/2013~ -~05749~^~406~^11.067^3^0.677^~1~^~A~^^^1^10.200^12.400^2^8.156^13.978^~2, 3~^~04/01/2013~ -~05749~^~410~^1.485^2^^~1~^~A~^^^1^1.260^1.710^1^^^^~04/01/2013~ -~05749~^~415~^0.984^3^0.029^~1~^~A~^^^1^0.941^1.040^2^0.857^1.110^~2, 3~^~04/01/2013~ -~05749~^~501~^0.372^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~502~^1.323^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~503~^1.447^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~504~^2.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~505~^2.836^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~506~^0.767^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~507~^0.309^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~508~^1.191^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~509~^1.062^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~510~^1.527^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~511~^1.995^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~512~^1.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~513~^1.722^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~514~^2.774^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~515~^4.370^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~516~^1.306^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~517~^0.937^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~518~^1.125^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~05749~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~606~^1.012^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~610~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.020^5^0.013^0.020^~2, 3~^~07/01/2015~ -~05749~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~04/01/2013~ -~05749~^~612~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.025^5^0.018^0.024^~2, 3~^~07/01/2015~ -~05749~^~613~^0.737^6^0.040^~1~^~A~^^^1^0.673^0.964^5^0.731^0.936^~2, 3~^~07/01/2015~ -~05749~^~614~^0.225^6^0.010^~1~^~A~^^^1^0.223^0.296^5^0.228^0.279^~2, 3~^~07/01/2015~ -~05749~^~615~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05749~^~617~^1.128^6^0.068^~1~^~AS~^^^1^1.006^1.495^5^1.100^1.449^~2, 3~^~07/01/2015~ -~05749~^~618~^0.567^6^0.023^~1~^~AS~^^^1^0.534^0.689^5^0.574^0.691^~2, 3~^~07/01/2015~ -~05749~^~619~^0.022^6^0.001^~1~^~AS~^^^1^0.021^0.028^5^0.022^0.027^~2, 3~^~07/01/2015~ -~05749~^~620~^0.069^6^0.003^~1~^~A~^^^1^0.065^0.090^5^0.069^0.086^~2, 3~^~07/01/2015~ -~05749~^~621~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.006^0.010^~2, 3~^~07/01/2015~ -~05749~^~624~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.002^0.007^~1, 2, 3~^~04/01/2013~ -~05749~^~625~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~07/01/2015~ -~05749~^~626~^0.172^6^0.012^~1~^~AS~^^^1^0.147^0.227^5^0.164^0.226^~2, 3~^~07/01/2015~ -~05749~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~628~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.025^5^0.018^0.025^~2, 3~^~07/01/2015~ -~05749~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.003^0.005^~1, 2, 3~^~07/01/2015~ -~05749~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~05749~^~631~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.009^0.010^~2, 3~^~07/01/2015~ -~05749~^~645~^1.325^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~646~^0.713^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~652~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.005^~1, 2, 3~^~07/01/2015~ -~05749~^~653~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~05749~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~663~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.015^5^0.010^0.014^~2, 3~^~07/01/2015~ -~05749~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~665~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.005^5^0.002^0.005^~1, 2, 3~^~07/01/2015~ -~05749~^~670~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~05749~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.009^0.011^~2, 3~^~07/01/2015~ -~05749~^~673~^0.172^6^0.012^~1~^~A~^^^1^0.147^0.227^5^0.164^0.226^~2, 3~^~07/01/2015~ -~05749~^~674~^1.117^6^0.068^~1~^~A~^^^1^0.994^1.485^5^1.088^1.438^~2, 3~^~07/01/2015~ -~05749~^~675~^0.561^6^0.023^~1~^~A~^^^1^0.530^0.682^5^0.569^0.685^~2, 3~^~07/01/2015~ -~05749~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~689~^0.018^6^0.001^~1~^~AS~^^^1^0.017^0.024^5^0.018^0.024^~2, 3~^~07/01/2015~ -~05749~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~05749~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~851~^0.022^6^0.001^~1~^~A~^^^1^0.021^0.028^5^0.022^0.027^~2, 3~^~07/01/2015~ -~05749~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~853~^0.018^6^0.001^~1~^~A~^^^1^0.017^0.024^5^0.018^0.024^~2, 3~^~07/01/2015~ -~05749~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~05749~^~858~^0.018^6^0.001^~1~^~A~^^^1^0.017^0.026^5^0.017^0.024^~2, 3~^~07/01/2015~ -~06001~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~404~^0.043^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~405~^0.062^10^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~406~^0.620^10^0.033^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~410~^0.110^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06001~^~415~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~501~^0.023^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~502~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~503~^0.077^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~504~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~505~^0.089^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~506~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~507~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~508~^0.076^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~509~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~510~^0.091^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~511~^0.068^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~512~^0.039^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~513~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~514~^0.137^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~515~^0.466^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~516~^0.054^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~517~^0.164^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~518~^0.084^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~606~^0.820^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~607~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~608~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~610~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~611~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~612~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~613~^0.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~614~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~617~^0.690^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~618~^1.420^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~626~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06001~^~645~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06001~^~646~^1.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~312~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~315~^0.500^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~404~^0.042^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~405~^0.039^10^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~406~^0.410^10^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~410~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06002~^~415~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~606~^0.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~613~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~614~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~617~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~618~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~619~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~645~^0.480^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~646~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06002~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06002~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06004~^~312~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~315~^0.500^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~404~^0.065^13^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~405~^0.025^13^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~406~^0.421^13^0.012^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~410~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06004~^~415~^0.031^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~501~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~502~^0.243^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~503~^0.287^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~504~^0.484^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~505~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~506~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~507~^0.065^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~508~^0.328^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~509~^0.176^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~510~^0.323^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~511~^0.308^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~512~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~513~^0.293^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~514~^0.658^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~515~^1.083^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~516~^0.284^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~517~^0.265^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~518~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~606~^1.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~607~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~608~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~609~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~610~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~611~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~612~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~613~^0.700^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~614~^0.280^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~617~^1.520^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~618~^1.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~619~^0.330^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~620~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~621~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~626~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~627~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~628~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~629~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~630~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~631~^0.000^0^^~1~^^^^^^^^^^^ -~06004~^~645~^1.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06004~^~646~^1.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~312~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~315~^0.600^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~404~^0.083^10^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~405~^0.049^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~406~^0.780^10^0.020^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~410~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06006~^~415~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~501~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~502~^0.314^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~503~^0.371^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~504~^0.626^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~505~^0.518^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~506~^0.096^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~507~^0.084^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~508~^0.424^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~509~^0.227^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~510~^0.418^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~511~^0.399^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~512~^0.198^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~513~^0.379^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~514~^0.851^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~515~^1.401^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~516~^0.367^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~517~^0.343^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~518~^0.376^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~606~^1.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~612~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~613~^1.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~614~^0.450^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~617~^1.930^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~618~^0.950^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~619~^0.270^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~626~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~645~^2.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06006~^~646~^1.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~312~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~315~^0.290^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~404~^0.060^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~405~^0.060^10^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~406~^0.700^10^0.042^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~410~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~415~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06007~^~606~^1.370^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~612~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~613~^0.830^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~614~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~617~^1.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~618~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~626~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~628~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~645~^1.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06007~^~646~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~312~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~315~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~404~^0.002^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~405~^0.021^10^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~406~^0.780^10^0.020^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06008~^~606~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~613~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~614~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~617~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~618~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06008~^~645~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06008~^~646~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~312~^0.110^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~315~^0.218^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~404~^0.055^28^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~405~^0.047^28^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~406~^0.849^28^0.011^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~410~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06009~^~415~^0.030^4^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~501~^0.037^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~502~^0.123^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~503~^0.149^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~504~^0.251^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~505~^0.209^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~506~^0.072^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~507~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~508~^0.155^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~509~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~510~^0.166^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~511~^0.158^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~512~^0.089^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~513~^0.177^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~514~^0.282^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~515~^1.063^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~516~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~517~^0.248^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~518~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~606~^0.910^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~612~^0.050^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~613~^0.500^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~614~^0.310^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~617~^0.870^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~618~^0.330^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~619~^0.050^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~626~^0.070^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06009~^~645~^0.990^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06009~^~646~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~312~^0.113^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~404~^0.023^14^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~405~^0.039^14^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~406~^0.265^14^0.012^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~410~^0.920^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06010~^~415~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~501~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~502~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~503~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~504~^0.099^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~505~^0.059^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~506~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~507~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~508~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~509~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~510~^0.071^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~511~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~512~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~513~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~514~^0.092^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~515~^0.306^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~516~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~517~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~518~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~606~^1.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~607~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~608~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~609~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~610~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~611~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~612~^0.160^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~613~^0.460^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~614~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~617~^0.950^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~618~^1.940^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~619~^0.060^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~626~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06010~^~645~^1.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06010~^~646~^2.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~404~^0.013^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~405~^0.105^10^0.008^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~406~^0.310^10^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~410~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06011~^~415~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06011~^~606~^2.450^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~607~^0.128^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~608~^0.064^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~609~^0.035^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~610~^0.074^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~611~^0.064^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~612~^0.405^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~613~^1.191^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~614~^0.489^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~617~^0.958^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~618~^0.069^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~619~^0.044^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~626~^0.123^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06011~^~645~^1.082^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06011~^~646~^0.114^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06013~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~404~^0.006^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~405~^0.046^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~406~^2.230^10^0.117^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~410~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06013~^~415~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~606~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~613~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~614~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~617~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~618~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06013~^~645~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06013~^~646~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~315~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~404~^0.034^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~405~^0.069^10^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~406~^1.760^10^0.072^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~410~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06015~^~415~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~501~^0.049^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~502~^0.174^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~503~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~504~^0.368^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~505~^0.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~506~^0.097^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~507~^0.065^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~508~^0.201^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~509~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~510~^0.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~511~^0.263^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~512~^0.124^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~513~^0.311^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~514~^0.433^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~515~^1.372^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~516~^0.372^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~517~^0.333^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~518~^0.171^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~606~^0.790^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~613~^0.570^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~614~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~617~^0.990^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~618~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~626~^0.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~628~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06015~^~645~^1.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06015~^~646~^0.550^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~312~^0.128^6^0.029^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~315~^0.068^6^0.014^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~404~^0.013^3^0.003^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~405~^0.046^3^0.005^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~406~^0.392^3^0.015^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~410~^0.192^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~415~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~501~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~502~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~503~^0.136^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~504~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~505~^0.171^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~506~^0.064^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~507~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~508~^0.122^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~509~^0.094^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~510~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~511~^0.133^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~512~^0.073^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~513~^0.118^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~514~^0.193^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~515~^0.621^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~516~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~517~^0.205^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~518~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06016~^~606~^1.697^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~06016~^~607~^0.030^1^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~608~^0.040^1^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~609~^0.010^1^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~610~^0.009^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~611~^0.018^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~612~^0.086^3^0.017^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~613~^1.103^3^0.235^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~614~^0.300^3^0.059^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~615~^0.008^3^0.002^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~617~^1.557^3^0.427^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~618~^1.001^3^0.396^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~619~^0.035^3^0.011^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~624~^0.011^3^0.001^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~625~^0.026^3^0.014^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~626~^0.306^3^0.114^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~628~^0.035^3^0.002^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~630~^0.032^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~06016~^~645~^2.056^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~06016~^~646~^1.063^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~06016~^~652~^0.024^3^0.012^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~653~^0.026^3^0.018^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~654~^0.023^3^0.007^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~672~^0.010^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~687~^0.065^3^0.047^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06016~^~689~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~696~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06016~^~697~^0.035^3^0.019^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06017~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~404~^0.200^1^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~405~^0.300^1^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~406~^0.530^10^0.021^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~410~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06017~^~415~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~501~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~502~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~503~^0.079^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~504~^0.134^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~505~^0.129^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~506~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~507~^0.014^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~508~^0.077^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~509~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~510~^0.093^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~511~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~512~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~513~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~514~^0.177^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~515~^0.529^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~516~^0.132^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~517~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~518~^0.072^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~606~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~612~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~613~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~614~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~617~^0.460^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~618~^0.250^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~619~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~626~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~645~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06017~^~646~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06018~^~312~^0.028^10^0.003^~1~^~A~^^^1^0.025^0.051^9^0.022^0.034^~4~^~02/01/2011~ -~06018~^~315~^0.056^10^0.002^~1~^~A~^^^1^0.047^0.064^9^0.052^0.060^~4~^~02/01/2011~ -~06018~^~404~^0.018^10^0.002^~1~^~A~^^^1^0.015^0.030^9^0.014^0.021^~1, 4~^~02/01/2011~ -~06018~^~405~^0.020^10^0.002^~1~^~A~^^^1^0.015^0.030^9^0.015^0.025^~1, 4~^~02/01/2011~ -~06018~^~406~^1.196^10^0.076^~1~^~A~^^^1^0.840^1.480^9^1.024^1.368^~4~^~02/01/2011~ -~06018~^~410~^0.094^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~415~^0.050^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~605~^0.001^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~606~^0.627^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~612~^0.027^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~613~^0.463^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~614~^0.126^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~617~^0.251^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~618~^0.153^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~619~^0.011^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~620~^0.003^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~626~^0.036^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~628~^0.009^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06018~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~645~^0.298^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06018~^~646~^0.172^0^^~4~^~FLC~^^^^^^^^^^~08/01/2013~ -~06019~^~312~^0.027^12^0.001^~1~^~A~^^^1^0.025^0.033^5^0.024^0.030^~1, 2, 3~^~03/01/2014~ -~06019~^~315~^0.098^12^0.002^~1~^~A~^^^1^0.072^0.106^6^0.094^0.102^~2, 3~^~03/01/2014~ -~06019~^~404~^0.079^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~405~^0.070^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~406~^1.222^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~410~^0.107^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~415~^0.042^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~ -~06019~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~606~^0.389^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~612~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^2^0.007^0.009^~2, 3~^~03/01/2014~ -~06019~^~613~^0.303^6^0.008^~1~^~A~^^^1^0.293^0.320^2^0.270^0.337^~2, 3~^~03/01/2014~ -~06019~^~614~^0.074^6^0.002^~1~^~A~^^^1^0.070^0.078^2^0.065^0.083^~2, 3~^~03/01/2014~ -~06019~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~617~^0.466^6^0.013^~1~^~AS~^^^1^0.441^0.495^2^0.409^0.523^~2, 3~^~03/01/2014~ -~06019~^~618~^0.311^6^0.009^~1~^~AS~^^^1^0.288^0.350^2^0.273^0.349^~2, 3~^~03/01/2014~ -~06019~^~619~^0.014^6^0.000^~1~^~AS~^^^1^0.013^0.017^2^0.013^0.015^~2, 3~^~03/01/2014~ -~06019~^~620~^0.008^6^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~04/01/2004~ -~06019~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~625~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~626~^0.059^6^0.002^~1~^~AS~^^^1^0.056^0.064^2^0.051^0.068^~2, 3~^~03/01/2014~ -~06019~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~628~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~03/01/2014~ -~06019~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~06019~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~645~^0.536^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~646~^0.339^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2004~ -~06019~^~653~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.004^~1, 2, 3~^~03/01/2014~ -~06019~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2014~ -~06019~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~663~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~03/01/2014~ -~06019~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~665~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~06019~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.002^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~673~^0.059^6^0.002^~1~^~A~^^^1^0.056^0.064^2^0.051^0.068^~2, 3~^~03/01/2014~ -~06019~^~674~^0.461^6^0.013^~1~^~A~^^^1^0.436^0.490^2^0.405^0.516^~2, 3~^~03/01/2014~ -~06019~^~675~^0.309^6^0.008^~1~^~A~^^^1^0.287^0.348^2^0.273^0.346^~2, 3~^~03/01/2014~ -~06019~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06019~^~689~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2004~ -~06019~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06019~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~851~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.017^2^0.013^0.015^~2, 3~^~03/01/2014~ -~06019~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~853~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06019~^~858~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~03/01/2014~ -~06022~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~404~^0.010^10^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~405~^0.041^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~406~^1.710^10^0.051^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~410~^0.150^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06022~^~606~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~613~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~614~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~617~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~618~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~626~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~628~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06022~^~645~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06022~^~646~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~312~^0.096^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~404~^0.014^13^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~405~^0.020^13^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~406~^0.918^13^0.093^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~410~^0.140^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06023~^~415~^0.020^13^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~606~^0.370^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~612~^0.010^3^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~613~^0.290^3^0.039^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~614~^0.070^3^0.009^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~617~^0.680^3^0.086^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~618~^0.320^3^0.043^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~619~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~626~^0.060^3^0.012^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06023~^~645~^0.740^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06023~^~646~^0.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06024~^~312~^0.023^10^0.001^~1~^~A~^^^1^0.019^0.027^9^0.021^0.026^~1, 2, 3~^~04/01/2013~ -~06024~^~315~^0.056^10^0.004^~1~^~A~^^^1^0.035^0.069^9^0.047^0.065^~2, 3~^~04/01/2013~ -~06024~^~404~^0.017^7^0.002^~1~^~A~^^^1^0.010^0.020^6^0.013^0.022^~2, 3~^~02/01/1980~ -~06024~^~405~^0.098^7^0.011^~1~^~A~^^^1^0.071^0.140^6^0.071^0.125^~2, 3~^~04/01/2013~ -~06024~^~406~^0.906^7^0.052^~1~^~A~^^^1^0.730^1.100^6^0.779^1.032^~2, 3~^~04/01/2013~ -~06024~^~410~^0.212^4^0.020^~1~^~A~^^^1^0.170^0.260^3^0.148^0.277^~2, 3~^~04/01/2013~ -~06024~^~415~^0.072^7^0.006^~1~^~A~^^^1^0.063^0.105^6^0.059^0.086^~2, 3~^~04/01/2013~ -~06024~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~502~^0.057^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~503~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~504~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~505~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~507~^0.023^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~508~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~509~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~510~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~511~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~512~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~513~^0.094^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~514~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~515~^0.314^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~516~^0.077^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~517~^0.083^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~518~^0.073^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~06024~^~521~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~606~^0.121^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1980~ -~06024~^~612~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~06024~^~613~^0.094^6^0.014^~1~^~A~^^^1^0.050^0.140^5^0.057^0.131^~2, 3~^~04/01/2013~ -~06024~^~614~^0.024^6^0.003^~1~^~A~^^^1^0.015^0.033^5^0.017^0.031^~2, 3~^~04/01/2013~ -~06024~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~06024~^~617~^0.143^6^0.019^~1~^~AS~^^^1^0.092^0.202^5^0.094^0.192^~2, 3~^~04/01/2013~ -~06024~^~618~^0.120^6^0.015^~1~^~AS~^^^1^0.085^0.158^5^0.082^0.159^~2, 3~^~04/01/2013~ -~06024~^~619~^0.010^6^0.001^~1~^~AS~^^^1^0.006^0.014^5^0.006^0.014^~2, 3~^~04/01/2013~ -~06024~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2013~ -~06024~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~626~^0.015^6^0.005^~1~^~AS~^^^1^0.003^0.031^5^0.003^0.028^~2, 3~^~04/01/2013~ -~06024~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~628~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~06024~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~645~^0.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~646~^0.134^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~652~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~06024~^~653~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~663~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~06024~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~673~^0.015^6^0.005^~1~^~A~^^^1^0.003^0.031^5^0.003^0.028^~2, 3~^~04/01/2013~ -~06024~^~674~^0.143^6^0.019^~1~^~A~^^^1^0.092^0.202^5^0.093^0.192^~2, 3~^~04/01/2013~ -~06024~^~675~^0.120^6^0.015^~1~^~A~^^^1^0.085^0.158^5^0.082^0.159^~2, 3~^~04/01/2013~ -~06024~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~06024~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06024~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~851~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.014^5^0.006^0.014^~2, 3~^~04/01/2013~ -~06024~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06024~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06025~^~312~^0.099^5^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~404~^0.036^14^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~405~^0.046^14^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~406~^1.004^14^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~410~^0.140^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06025~^~415~^0.039^14^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~501~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~502~^0.092^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~503~^0.111^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~504~^0.188^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~505~^0.181^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~506~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~507~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~508~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~509~^0.077^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~510~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~511~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~512~^0.065^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~513~^0.168^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~514~^0.248^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~515~^0.741^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~516~^0.185^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~517~^0.169^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~518~^0.101^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~606~^0.690^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~613~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~614~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~617~^0.870^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~618~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~626~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~628~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06025~^~645~^1.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06025~^~646~^0.490^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~312~^0.300^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~315~^0.800^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~404~^0.045^14^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~405~^0.058^14^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~406~^0.813^14^0.027^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~410~^0.221^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~415~^0.120^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06026~^~605~^0.069^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~606~^1.242^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~611~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~612~^0.096^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~613~^0.716^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~614~^0.375^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~615~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~617~^0.891^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~618~^0.083^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~619~^0.010^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~625~^0.017^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~626~^0.083^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~628~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~645~^1.013^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~646~^0.095^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06026~^~652~^0.014^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~653~^0.032^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~687~^0.016^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06026~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06027~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~315~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~404~^0.024^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~405~^0.026^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~406~^0.770^10^0.015^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06027~^~415~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~606~^0.880^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~607~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~608~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~610~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~611~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~612~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~613~^0.370^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~614~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~617~^0.350^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~618~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06027~^~645~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06027~^~646~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~404~^0.024^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~405~^0.032^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~406~^0.650^10^0.031^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~410~^0.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~415~^0.080^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~606~^0.305^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~612~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~613~^0.244^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~614~^0.051^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~617~^0.295^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~618~^0.956^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~619~^0.071^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~626~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~645~^0.305^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06028~^~646~^1.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06030~^~312~^0.239^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~315~^0.165^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~404~^0.125^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~405~^0.165^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~406~^1.550^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~410~^0.231^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~415~^0.104^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06030~^~605~^0.013^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~606~^0.959^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~611~^0.003^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~612~^0.010^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~613~^0.770^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~614~^0.138^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~615~^0.029^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~618~^0.898^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~619~^0.023^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~620~^0.006^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~621~^0.011^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~627~^0.002^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~629~^0.010^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~631~^0.008^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~646~^0.959^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06030~^~653~^0.004^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~06032~^~312~^0.002^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~315~^0.019^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~404~^0.017^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~405~^0.023^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~406~^0.580^10^0.051^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~410~^0.039^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~415~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06032~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~09/01/2006~ -~06032~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06032~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~ -~06037~^~312~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06037~^~315~^0.120^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06037~^~404~^0.070^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~405~^0.045^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~406~^0.545^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~410~^0.140^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~415~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~606~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~613~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~614~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~617~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~618~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~645~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06037~^~646~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~315~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~404~^0.023^11^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~405~^0.049^11^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~406~^0.491^11^0.016^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~410~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06039~^~606~^0.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~607~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~610~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~611~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~612~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~613~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~614~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~617~^0.350^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~618~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06039~^~645~^0.380^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06039~^~646~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~404~^0.044^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~405~^0.036^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~406~^0.770^10^0.034^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~410~^0.280^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06040~^~415~^0.080^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~501~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~502~^0.085^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~503~^0.106^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~504~^0.192^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~505~^0.149^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~506~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~507~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~508~^0.125^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~509~^0.069^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~510~^0.146^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~511~^0.161^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~512~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~513~^0.202^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~514~^0.299^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~515~^0.996^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~516~^0.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~517~^0.265^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~518~^0.118^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~606~^0.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~607~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~608~^0.000^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~609~^0.000^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~610~^0.000^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~611~^0.000^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~612~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~613~^0.250^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~614~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~617~^0.540^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~618~^0.790^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~619~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~620~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~621~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~626~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~627~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~628~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~629~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~630~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~631~^0.000^0^^~1~^^^^^^^^^^^ -~06040~^~645~^0.560^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06040~^~646~^0.910^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~312~^0.160^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~405~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~406~^0.700^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~415~^0.140^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06042~^~606~^0.350^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~613~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~614~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~617~^0.800^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~618~^0.540^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~645~^0.800^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06042~^~646~^0.570^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06043~^~312~^0.022^12^0.001^~1~^~A~^^^1^0.019^0.030^11^0.019^0.025^~1, 2, 3~^~07/01/2012~ -~06043~^~315~^0.037^12^0.004^~1~^~A~^^^1^0.020^0.058^11^0.029^0.045^~2, 3~^~07/01/2012~ -~06043~^~404~^0.012^6^0.002^~1~^~A~^^^1^0.010^0.020^5^0.007^0.016^~2, 3~^~07/01/2012~ -~06043~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~07/01/2012~ -~06043~^~406~^0.345^6^0.014^~1~^~A~^^^1^0.280^0.380^5^0.309^0.380^~2, 3~^~07/01/2012~ -~06043~^~410~^0.148^4^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~415~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.018^5^0.012^0.018^~2, 3~^~07/01/2012~ -~06043~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~502~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~503~^0.019^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~504~^0.058^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~505~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~506~^0.019^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~508~^0.039^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~509~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~510~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~511~^0.049^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~512~^0.019^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~513~^0.039^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~514~^0.078^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~515~^0.516^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~516~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~517~^0.058^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~518~^0.049^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06043~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2012~ -~06043~^~605~^0.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~606~^0.964^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~607~^0.007^6^0.004^~1~^~A~^^^1^0.000^0.026^5^-0.003^0.018^~1, 2, 3~^~07/01/2012~ -~06043~^~608~^0.004^6^0.003^~1~^~A~^^^1^0.000^0.018^5^-0.003^0.011^~1, 2, 3~^~07/01/2012~ -~06043~^~609~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.002^0.008^~1, 2, 3~^~07/01/2012~ -~06043~^~610~^0.008^6^0.005^~1~^~A~^^^1^0.000^0.032^5^-0.006^0.021^~1, 2, 3~^~07/01/2012~ -~06043~^~611~^0.007^6^0.005^~1~^~A~^^^1^0.000^0.029^5^-0.005^0.019^~1, 2, 3~^~07/01/2012~ -~06043~^~612~^0.036^6^0.012^~1~^~A~^^^1^0.016^0.098^5^0.004^0.068^~2, 3~^~07/01/2012~ -~06043~^~613~^0.609^6^0.035^~1~^~A~^^^1^0.513^0.725^5^0.519^0.698^~2, 3~^~07/01/2012~ -~06043~^~614~^0.238^6^0.012^~1~^~A~^^^1^0.203^0.272^5^0.208^0.269^~2, 3~^~07/01/2012~ -~06043~^~615~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.023^5^0.013^0.020^~2, 3~^~07/01/2012~ -~06043~^~617~^1.175^6^0.054^~1~^~AS~^^^1^1.003^1.381^5^1.035^1.315^~2, 3~^~07/01/2012~ -~06043~^~618~^2.558^6^0.145^~1~^~AS~^^^1^2.210^3.060^5^2.185^2.931^~2, 3~^~07/01/2012~ -~06043~^~619~^0.340^6^0.020^~1~^~AS~^^^1^0.298^0.414^5^0.290^0.391^~2, 3~^~07/01/2012~ -~06043~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2004~ -~06043~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~06043~^~624~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.014^0.020^~2, 3~^~04/01/2004~ -~06043~^~625~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.000^0.006^~1, 2, 3~^~07/01/2012~ -~06043~^~626~^0.010^6^0.002^~1~^~AS~^^^1^0.007^0.022^5^0.004^0.016^~2, 3~^~07/01/2012~ -~06043~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~06043~^~628~^0.028^6^0.005^~1~^~A~^^^1^0.018^0.049^5^0.016^0.040^~2, 3~^~07/01/2012~ -~06043~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~06043~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^-0.001^0.001^~2, 3~^~07/01/2012~ -~06043~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~06043~^~645~^1.219^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~646~^2.901^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~652~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.011^5^0.003^0.008^~2, 3~^~07/01/2012~ -~06043~^~653~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~2, 3~^~07/01/2012~ -~06043~^~654~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~2, 3~^~07/01/2012~ -~06043~^~662~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~06043~^~663~^0.010^6^0.003^~1~^~A~^^^1^0.006^0.023^5^0.003^0.017^~2, 3~^~07/01/2012~ -~06043~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~06043~^~665~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.016^5^0.009^0.016^~2, 3~^~07/01/2012~ -~06043~^~670~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.008^5^0.001^0.006^~1, 2, 3~^~07/01/2012~ -~06043~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~07/01/2012~ -~06043~^~673~^0.010^6^0.002^~1~^~A~^^^1^0.007^0.019^5^0.005^0.015^~2, 3~^~07/01/2012~ -~06043~^~674~^1.165^6^0.054^~1~^~A~^^^1^0.996^1.374^5^1.025^1.304^~2, 3~^~07/01/2012~ -~06043~^~675~^2.542^6^0.145^~1~^~A~^^^1^2.188^3.041^5^2.169^2.916^~2, 3~^~07/01/2012~ -~06043~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~06043~^~685~^0.011^6^0.003^~1~^~A~^^^1^0.000^0.018^5^0.004^0.018^~1, 2, 3~^~07/01/2012~ -~06043~^~687~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~07/01/2012~ -~06043~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2012~ -~06043~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06043~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~851~^0.329^6^0.019^~1~^~A~^^^1^0.289^0.399^5^0.281^0.376^~2, 3~^~07/01/2012~ -~06043~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06043~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06044~^~312~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~404~^0.028^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~405~^0.076^10^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~406~^0.960^10^0.027^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~410~^0.190^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06044~^~415~^0.030^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~606~^1.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~608~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~609~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~610~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~611~^0.030^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~612~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~613~^0.650^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~614~^0.370^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~617~^1.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~618~^0.540^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~619~^0.080^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~626~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06044~^~645~^1.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06044~^~646~^0.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~404~^0.027^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~405~^0.020^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~406~^0.490^10^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~410~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06045~^~415~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~606~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~613~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~614~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~617~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~618~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06045~^~645~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06045~^~646~^0.530^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~312~^0.110^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~315~^0.200^0^^~4~^^^^^^^^^^^~06/01/2009~ -~06046~^~404~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~405~^0.060^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~406~^0.400^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~410~^0.240^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06046~^~606~^1.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~607~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~610~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~611~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~612~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~613~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~614~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~617~^1.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~618~^1.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~619~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06046~^~645~^1.670^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06046~^~646~^1.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~312~^1.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~404~^0.017^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~405~^0.029^10^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~406~^0.190^10^0.010^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06048~^~415~^0.010^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~606~^2.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~607~^0.120^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~608~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~609~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~610~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~611~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~612~^0.340^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~613~^0.770^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~614~^0.370^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~617~^0.660^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~618~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~619~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~626~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~645~^0.740^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06048~^~646~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~312~^0.288^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~315~^0.500^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~404~^0.082^14^0.005^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~405~^0.052^14^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~406~^0.943^14^0.050^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06049~^~415~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~501~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~502~^0.231^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~503~^0.226^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~504~^0.473^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~505~^0.388^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~506~^0.079^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~507~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~508~^0.287^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~509~^0.191^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~510~^0.336^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~511~^0.538^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~512~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~513~^0.282^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~514~^0.669^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~515~^1.231^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~516~^0.261^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~517~^0.337^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~518~^0.264^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~606~^1.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~607~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~608~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~610~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~611~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~612~^0.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~613~^0.480^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~614~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~617~^0.710^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~618~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06049~^~645~^0.760^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06049~^~646~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~315~^0.250^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~404~^0.048^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~405~^0.039^10^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~406~^1.050^10^0.022^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~415~^0.090^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06050~^~501~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~502~^0.163^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~503~^0.195^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~504~^0.319^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~505~^0.312^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~506~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~507~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~508~^0.204^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~509~^0.143^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~510~^0.219^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~511~^0.316^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~512~^0.097^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~513~^0.216^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~514~^0.471^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~515~^0.783^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~516~^0.223^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~517~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~518~^0.199^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~606~^0.660^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~607~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~612~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~613~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~614~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~617~^0.630^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~618~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06050~^~645~^0.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06050~^~646~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~312~^0.275^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~315~^0.500^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~404~^0.110^15^0.003^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~405~^0.056^15^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~406~^1.098^15^0.033^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06051~^~415~^0.050^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~501~^0.076^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~502~^0.271^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~503~^0.324^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~504~^0.529^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~505~^0.518^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~506~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~507~^0.099^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~508~^0.339^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~509~^0.238^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~510~^0.365^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~511~^0.524^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~512~^0.161^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~513~^0.359^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~514~^0.782^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~515~^1.302^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~516~^0.371^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~517~^0.349^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~518~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~606~^1.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~607~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~610~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~611~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~612~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~613~^0.710^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~614~^0.380^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~617~^1.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~618~^0.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~645~^1.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06051~^~646~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~312~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~404~^0.028^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~405~^0.029^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~406~^0.430^10^0.015^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~410~^0.700^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06053~^~415~^0.030^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~501~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~502~^0.049^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~503~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~504~^0.094^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~505~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~506~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~507~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~508~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~509~^0.049^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~510~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~511~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~512~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~513~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~514~^0.203^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~515~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~516~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~517~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~518~^0.067^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~606~^0.970^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~607~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~608~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~609~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~610~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~611~^0.040^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~612~^0.140^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~613~^0.420^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~614~^0.150^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~617~^0.390^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~618~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~619~^0.030^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~626~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~06053~^~645~^0.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06053~^~646~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~315~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~404~^0.015^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~405~^0.022^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~406~^0.340^10^0.022^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~410~^0.110^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~415~^0.030^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06056~^~606~^2.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~607~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~608~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~609~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~610~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~611~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~612~^0.420^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~613~^1.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~614~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~617~^1.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~618~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~619~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~626~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~645~^1.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06056~^~646~^0.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~404~^0.067^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~405~^0.071^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~406~^1.490^10^0.028^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~410~^0.150^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06061~^~415~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~501~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~502~^0.114^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~503~^0.137^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~504~^0.231^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~505~^0.193^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~506~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~507~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~508~^0.143^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~509~^0.092^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~510~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~511~^0.145^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~512~^0.082^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~513~^0.164^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~514~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~515~^0.980^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~516~^0.166^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~517~^0.229^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~518~^0.127^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~606~^1.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~612~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~613~^0.700^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~614~^0.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~617~^1.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~618~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~619~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~626~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~645~^1.380^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06061~^~646~^0.540^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06062~^~312~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.033^5^0.024^0.031^~1, 2, 3~^~03/01/2014~ -~06062~^~315~^0.100^6^0.002^~1~^~A~^^^1^0.095^0.106^5^0.096^0.105^~2, 3~^~03/01/2014~ -~06062~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~606~^0.388^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~612~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~03/01/2014~ -~06062~^~613~^0.303^3^0.009^~1~^~A~^^^1^0.293^0.320^2^0.265^0.340^~2, 3~^~03/01/2014~ -~06062~^~614~^0.074^3^0.002^~1~^~A~^^^1^0.070^0.078^2^0.064^0.084^~2, 3~^~03/01/2014~ -~06062~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~617~^0.464^3^0.015^~1~^~AS~^^^1^0.441^0.492^2^0.400^0.529^~2, 3~^~03/01/2014~ -~06062~^~618~^0.307^3^0.010^~1~^~AS~^^^1^0.288^0.322^2^0.264^0.350^~2, 3~^~03/01/2014~ -~06062~^~619~^0.014^3^0.000^~1~^~AS~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~03/01/2014~ -~06062~^~620~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~03/01/2014~ -~06062~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~626~^0.060^3^0.002^~1~^~AS~^^^1^0.057^0.064^2^0.050^0.069^~2, 3~^~03/01/2014~ -~06062~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~628~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~03/01/2014~ -~06062~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~06062~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~645~^0.534^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~646~^0.335^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~653~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2014~ -~06062~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~663~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~03/01/2014~ -~06062~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~665~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~06062~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~673~^0.060^3^0.002^~1~^~A~^^^1^0.057^0.064^2^0.050^0.069^~2, 3~^~03/01/2014~ -~06062~^~674~^0.459^3^0.015^~1~^~A~^^^1^0.436^0.486^2^0.396^0.522^~2, 3~^~03/01/2014~ -~06062~^~675~^0.305^3^0.010^~1~^~A~^^^1^0.287^0.319^2^0.264^0.346^~2, 3~^~03/01/2014~ -~06062~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~06062~^~689~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~03/01/2014~ -~06062~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~06062~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~851~^0.014^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~03/01/2014~ -~06062~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~06062~^~858~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2014~ -~06063~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~404~^0.048^13^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~405~^0.039^13^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~406~^0.822^13^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06063~^~415~^0.060^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~606~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~612~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~613~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~614~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~617~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~618~^0.870^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~619~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06063~^~645~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06063~^~646~^1.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~315~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~404~^0.015^10^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~405~^0.045^10^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~406~^1.520^10^0.057^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~410~^0.390^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06064~^~415~^0.130^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~501~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~502~^0.171^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~503~^0.218^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~504~^0.331^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~505~^0.343^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~506~^0.091^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~507~^0.045^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~508~^0.177^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~509~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~510~^0.234^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~511~^0.225^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~512~^0.101^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~513~^0.267^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~514~^0.424^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~515~^0.775^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~516~^0.252^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~517~^0.198^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~518~^0.151^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~606~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~613~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~614~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~617~^0.650^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~618~^0.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~626~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~645~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06064~^~646~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06067~^~312~^0.040^14^0.003^~1~^~A~^^^1^0.029^0.060^7^0.033^0.047^~2, 3~^~02/01/2013~ -~06067~^~315~^0.087^14^0.003^~1~^~A~^^^1^0.073^0.097^3^0.077^0.097^~2, 3~^~02/01/2013~ -~06067~^~404~^0.029^6^0.000^~1~^~A~^^^1^0.020^0.040^^^^~2, 3~^~02/01/2013~ -~06067~^~405~^0.043^6^0.001^~1~^~A~^^^1^0.015^0.067^4^0.040^0.046^~1, 2, 3~^~02/01/2013~ -~06067~^~406~^0.542^6^0.015^~1~^~A~^^^1^0.400^0.670^4^0.500^0.584^~2, 3~^~02/01/2013~ -~06067~^~410~^0.172^5^0.003^~1~^~A~^^^1^0.150^0.200^2^0.158^0.186^~2, 3~^~02/01/2013~ -~06067~^~415~^0.065^6^0.001^~1~^~A~^^^1^0.059^0.070^2^0.060^0.071^~2, 3~^~02/01/2013~ -~06067~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~06067~^~606~^0.045^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06067~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~613~^0.035^0^^~1~^^^^^^^^^^^~02/01/2013~ -~06067~^~614~^0.010^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~617~^0.151^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~618~^0.124^0^^~1~^^^^^^^^^^^~02/01/2013~ -~06067~^~619~^0.008^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06067~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06067~^~645~^0.152^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06067~^~646~^0.133^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06068~^~312~^0.100^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~315~^0.375^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~404~^0.044^21^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~405~^0.037^21^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~406~^0.747^24^0.029^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~410~^0.280^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06068~^~415~^0.045^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~501~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~502~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~503~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~504~^0.121^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~505~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~506~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~507~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~508~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~509~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~510~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~511~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~512~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~513~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~514~^0.162^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~515~^0.364^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~516~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~517~^0.121^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~518~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~606~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~613~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~614~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~617~^0.670^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~618~^0.550^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06068~^~645~^0.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06068~^~646~^0.590^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~312~^0.100^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~315~^0.100^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~404~^0.024^30^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~405~^0.063^30^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~406~^1.127^30^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~410~^0.180^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06070~^~415~^0.055^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~501~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~502~^0.194^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~503~^0.247^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~504~^0.374^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~505~^0.387^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~506~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~507~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~508~^0.201^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~509~^0.147^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~510~^0.265^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~511~^0.254^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~512~^0.115^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~513~^0.302^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~514~^0.479^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~515~^0.875^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~516~^0.285^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~517~^0.224^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~518~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06070~^~606~^0.554^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~611~^0.010^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~612~^0.042^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~613~^0.277^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~614~^0.209^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~617~^0.402^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~618~^0.037^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~619~^0.005^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~621~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~626~^0.047^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~628~^0.005^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~629~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~645~^0.465^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06070~^~646~^0.047^0^^~1~^^^^^^^^^^^~11/01/2006~ -~06071~^~312~^0.145^4^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~315~^0.250^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~404~^0.029^28^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~405~^0.039^28^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~406~^0.823^27^0.022^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~410~^0.280^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06071~^~415~^0.060^4^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~501~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~502~^0.139^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~503~^0.168^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~504~^0.285^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~505~^0.274^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~506~^0.075^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~507~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~508~^0.163^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~509~^0.116^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~510~^0.197^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~511~^0.208^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~512~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~513~^0.253^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~514~^0.375^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~515~^1.121^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~516~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~517~^0.255^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~518~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~606~^0.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~612~^0.030^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~613~^0.370^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~614~^0.230^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~617~^0.560^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~618~^0.080^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~619~^0.010^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~626~^0.060^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06071~^~645~^0.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06071~^~646~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~312~^0.125^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~315~^0.275^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~404~^0.042^23^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~405~^0.037^23^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~406~^0.789^23^0.025^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~410~^0.280^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06072~^~415~^0.046^3^0.000^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~501~^0.017^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~502~^0.059^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~503~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~504~^0.134^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~505~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~506~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~507~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~508~^0.087^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~509~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~510~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~511~^0.112^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~512~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~513~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~514~^0.207^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~515~^0.692^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~516~^0.223^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~517~^0.184^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~518~^0.082^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~606~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~612~^0.010^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~613~^0.210^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~614~^0.110^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~617~^0.420^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~618~^0.550^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~619~^0.090^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~626~^0.020^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06072~^~645~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06072~^~646~^0.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~312~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~315~^0.459^3^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~404~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~405~^0.243^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~406~^4.467^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~410~^0.300^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~415~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~606~^4.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~611~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~612~^0.332^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~613~^2.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~614~^1.688^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~617~^3.215^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~618~^0.281^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~619~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~626~^0.372^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~628~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06075~^~645~^3.616^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06075~^~646~^0.332^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~312~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~315~^0.386^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~404~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~405~^0.240^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~406~^3.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~410~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~415~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06076~^~606~^1.990^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~611~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~612~^0.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~613~^1.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~614~^0.760^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~617~^1.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~618~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~626~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06076~^~645~^1.670^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06076~^~646~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~312~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~315~^0.150^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~404~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~405~^0.430^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~406~^2.460^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~410~^0.600^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06080~^~606~^3.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~613~^2.560^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~614~^0.660^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~617~^4.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~618~^4.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~619~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~620~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~626~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~628~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06080~^~645~^5.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06080~^~646~^4.480^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~312~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~315~^0.377^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~404~^0.190^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~405~^0.380^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~406~^3.900^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~410~^0.600^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06081~^~606~^1.200^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~06081~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~612~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~613~^0.930^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~614~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~617~^1.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~618~^1.570^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~619~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~626~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~628~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06081~^~645~^1.920^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~06081~^~646~^1.620^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~06094~^~312~^0.353^4^0.061^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~315~^0.665^4^0.041^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~404~^0.279^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~405~^0.274^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~406~^1.472^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~410~^0.854^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~415~^0.582^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06094~^~606~^0.089^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06094~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~612~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~613~^0.060^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~614~^0.005^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~615~^0.012^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~617~^0.056^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~618~^0.147^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~619~^0.012^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~620~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~624~^0.012^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~630~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~06094~^~645~^0.067^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06094~^~646~^0.164^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~06094~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~06094~^~653~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~06094~^~672~^0.006^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~687~^0.012^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06094~^~696~^0.001^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~06094~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06101~^~312~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~315~^0.800^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~404~^5.180^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~405~^0.450^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~406~^2.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~410~^0.700^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06101~^~606~^6.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~612~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~613~^3.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~614~^2.560^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~617~^10.730^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~618~^5.910^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~619~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06101~^~645~^10.730^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06101~^~646~^6.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~315~^0.000^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~404~^0.030^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~405~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~406~^1.270^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~410~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~415~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06112~^~606~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~613~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~617~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~618~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06112~^~645~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06112~^~646~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~315~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~405~^0.060^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~406~^0.900^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06114~^~606~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~613~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~614~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~617~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~618~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~645~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06114~^~646~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06115~^~312~^0.120^3^0.004^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06115~^~315~^0.268^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~404~^0.472^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~405~^0.324^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~406~^4.087^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~410~^0.157^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~415~^0.174^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06115~^~606~^2.026^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06115~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~612~^0.128^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~613~^1.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~614~^0.768^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~617~^1.989^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~618~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~619~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~626~^0.110^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~628~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~645~^4.683^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06115~^~646~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06116~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~404~^0.032^5^0.005^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~405~^0.036^5^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~406~^0.660^5^0.075^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~410~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~415~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~606~^1.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~612~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~613~^0.591^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~614~^0.451^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~617~^0.852^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~618~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~626~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06116~^~645~^0.962^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06116~^~646~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06118~^~312~^0.190^3^0.007^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~315~^0.412^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~405~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~406~^3.700^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~410~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~415~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06118~^~606~^3.319^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06118~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~612~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~613~^1.711^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~614~^1.233^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~617~^4.092^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~618~^0.363^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~619~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~626~^0.264^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~628~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~645~^4.452^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06118~^~646~^0.405^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06119~^~312~^0.019^12^0.001^~1~^~A~^^^1^0.018^0.025^5^0.017^0.021^~1, 2, 3~^~02/01/2015~ -~06119~^~315~^0.015^12^0.001^~1~^~A~^^^1^0.011^0.031^9^0.013^0.018^~1, 2, 3~^~02/01/2015~ -~06119~^~404~^0.024^6^0.007^~1~^~A~^^^1^0.010^0.040^2^-0.006^0.053^~2, 3~^~02/01/2015~ -~06119~^~405~^0.053^6^0.006^~1~^~A~^^^1^0.040^0.070^2^0.029^0.078^~2, 3~^~02/01/2015~ -~06119~^~406~^0.285^6^0.007^~1~^~A~^^^1^0.260^0.310^3^0.260^0.310^~2, 3~^~02/01/2015~ -~06119~^~410~^0.143^4^0.007^~1~^~A~^^^1^0.120^0.170^1^0.056^0.230^~2, 3~^~02/01/2015~ -~06119~^~415~^0.025^6^0.000^~1~^~A~^^^1^0.018^0.028^3^0.024^0.026^~2, 3~^~02/01/2015~ -~06119~^~605~^0.011^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~606~^0.639^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~611~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^5^0.002^0.002^~1, 2, 3~^~02/01/2015~ -~06119~^~612~^0.015^12^0.001^~1~^~A~^^^1^0.007^0.026^6^0.012^0.017^~2, 3~^~02/01/2015~ -~06119~^~613~^0.489^12^0.037^~1~^~A~^^^1^0.190^0.927^6^0.399^0.579^~2, 3~^~02/01/2015~ -~06119~^~614~^0.126^12^0.009^~1~^~A~^^^1^0.057^0.230^6^0.104^0.147^~2, 3~^~02/01/2015~ -~06119~^~615~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~06119~^~617~^0.893^12^0.060^~1~^~AS~^^^1^0.319^1.464^7^0.749^1.036^~2, 3~^~02/01/2015~ -~06119~^~618~^0.378^12^0.028^~1~^~AS~^^^1^0.130^0.675^7^0.311^0.445^~2, 3~^~02/01/2015~ -~06119~^~619~^0.020^12^0.001^~1~^~AS~^^^1^0.006^0.030^7^0.017^0.023^~2, 3~^~02/01/2015~ -~06119~^~620~^0.004^12^0.000^~1~^~A~^^^1^0.000^0.008^8^0.003^0.005^~1, 2, 3~^~02/01/2015~ -~06119~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~06119~^~625~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.007^7^0.003^0.004^~1, 2, 3~^~02/01/2015~ -~06119~^~626~^0.116^12^0.009^~1~^~AS~^^^1^0.040^0.227^6^0.094^0.139^~2, 3~^~02/01/2015~ -~06119~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~628~^0.013^12^0.001^~1~^~A~^^^1^0.002^0.020^8^0.010^0.015^~1, 2, 3~^~02/01/2015~ -~06119~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~06119~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~06119~^~645~^1.027^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~646~^0.407^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~652~^0.003^12^0.000^~1~^~A~^^^1^0.003^0.005^9^0.003^0.004^~2, 3~^~02/01/2015~ -~06119~^~653~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.005^10^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~06119~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~02/01/2015~ -~06119~^~663~^0.009^12^0.001^~1~^~A~^^^1^0.003^0.025^9^0.006^0.012^~2, 3~^~02/01/2015~ -~06119~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~665~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~06119~^~670~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~02/01/2015~ -~06119~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^5^0.001^0.003^~1, 2, 3~^~02/01/2015~ -~06119~^~673~^0.116^12^0.009^~1~^~A~^^^1^0.040^0.225^6^0.094^0.139^~2, 3~^~02/01/2015~ -~06119~^~674~^0.883^12^0.060^~1~^~A~^^^1^0.294^1.450^7^0.740^1.026^~2, 3~^~02/01/2015~ -~06119~^~675~^0.377^12^0.028^~1~^~A~^^^1^0.130^0.670^7^0.310^0.443^~2, 3~^~02/01/2015~ -~06119~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~687~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~06119~^~689~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.005^8^0.002^0.003^~2, 3~^~02/01/2015~ -~06119~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06119~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~851~^0.020^12^0.001^~1~^~A~^^^1^0.006^0.030^7^0.017^0.023^~2, 3~^~02/01/2015~ -~06119~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~853~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^8^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~06119~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06119~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~06120~^~312~^0.112^3^0.002^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~315~^0.219^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~404~^0.249^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~405~^0.634^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06120~^~406~^4.018^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~410~^1.286^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~415~^0.202^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06120~^~606~^2.920^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06120~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~612~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~613~^2.231^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~614~^0.561^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~617~^0.400^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~618~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~626~^0.666^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~628~^0.051^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~630~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~645~^4.648^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06120~^~646~^1.877^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06121~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~315~^0.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~404~^0.033^7^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~405~^0.063^7^0.006^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~406~^0.671^7^0.052^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~410~^1.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06121~^~415~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~606~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~613~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~614~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~617~^1.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~618~^0.950^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~619~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~645~^1.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06121~^~646~^1.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~312~^0.535^3^0.020^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~315~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~404~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~405~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~406~^3.700^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06122~^~606~^2.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~609~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~611~^0.480^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~612~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~613~^0.830^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~614~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~617~^1.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~618~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~626~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~06122~^~645~^1.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06122~^~646~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~312~^0.170^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~315~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~404~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~405~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~406~^3.700^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06123~^~606~^1.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~609~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~611~^0.470^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~612~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~613~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~614~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~617~^0.720^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~618~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~626~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~628~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~645~^0.900^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06123~^~646~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06124~^~312~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~315~^0.311^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~404~^0.160^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~405~^0.283^2^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~06124~^~406~^2.270^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~410~^0.326^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~415~^0.086^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~ -~06124~^~606~^4.290^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~612~^0.267^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~613~^2.130^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~614~^1.563^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~617~^3.571^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~618~^0.418^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~619~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~626~^0.217^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~628~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~645~^3.881^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06124~^~646~^0.454^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~06125~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~315~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~405~^0.080^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~406~^1.300^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06125~^~606~^0.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~613~^0.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~614~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~617~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~618~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~620~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~626~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06125~^~645~^0.900^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06125~^~646~^0.490^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06126~^~312~^0.133^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~315~^0.219^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~404~^0.211^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~405~^0.450^2^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~06126~^~406~^2.770^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~410~^1.012^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~415~^0.204^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~606~^1.975^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06126~^~607~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~608~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~609~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~610~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~611~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~612~^0.129^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~613~^1.203^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~614~^0.494^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~617~^2.327^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~618~^1.973^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~619~^0.209^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~626~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~627~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~628~^0.034^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~06126~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~630~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~645~^2.575^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06126~^~646~^2.196^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06127~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~315~^0.400^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~404~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~405~^0.432^2^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~406~^3.700^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06127~^~606~^2.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~609~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~611~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~612~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~613~^1.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~614~^0.850^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~617~^3.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~618~^1.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~619~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~626~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~645~^3.150^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06127~^~646~^1.620^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06128~^~312~^0.286^4^0.125^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~315~^0.468^4^0.019^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~404~^0.575^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~405~^0.381^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~406~^4.880^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~410~^0.895^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~415~^0.236^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~501~^0.146^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~502~^0.610^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~503~^0.687^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~504~^1.157^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~505~^0.805^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~506~^0.264^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~507~^0.165^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~508~^0.726^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~509~^0.473^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~510~^0.764^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~511~^0.880^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~512~^0.400^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~513~^0.750^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~514~^1.112^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~515~^3.884^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~516~^0.666^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~517~^1.312^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~518~^0.740^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~606~^1.969^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06128~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~610~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~611~^0.025^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~612~^0.110^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~613~^1.350^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~614~^0.400^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~617~^1.928^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~618~^1.295^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~619~^0.050^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~620~^0.035^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~621~^0.004^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~625~^0.020^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~626~^0.235^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~628~^0.030^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~630~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~631~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~ -~06128~^~645~^2.268^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06128~^~646~^1.398^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~06128~^~652~^0.020^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~653~^0.020^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~672~^0.010^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~687~^0.035^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06128~^~696~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06128~^~697~^0.010^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06142~^~312~^0.165^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~315~^0.191^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~404~^0.284^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~405~^0.212^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~406~^2.918^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~410~^0.597^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06142~^~415~^0.364^2^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~06147~^~312~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~315~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~404~^0.020^5^0.004^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~405~^0.060^5^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~406~^0.900^5^0.040^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~410~^0.190^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~415~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06147~^~606~^1.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~612~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~613~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~614~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~617~^0.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~618~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~626~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~645~^1.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06147~^~646~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~312~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06149~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~404~^0.020^5^0.005^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~405~^0.090^5^0.005^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~406~^1.300^5^0.048^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~415~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06149~^~606~^1.246^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06149~^~607~^0.007^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~608~^0.007^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~610~^0.007^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~611~^0.007^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~612~^0.047^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~613~^0.839^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~614~^0.333^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~617~^1.959^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~618~^1.166^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~619~^0.060^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06149~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06149~^~626~^0.140^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06149~^~628~^0.027^0^^~1~^^^^^^^^^^^~05/01/2013~ -~06149~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06149~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06149~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06149~^~645~^2.125^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06149~^~646~^1.226^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~06150~^~312~^0.072^27^0.001^~1~^~A~^^^1^0.015^0.102^12^0.069^0.075^~1, 2, 3~^~07/01/2012~ -~06150~^~315~^0.126^27^0.002^~1~^~A~^^^1^0.068^0.195^14^0.122^0.129^~2, 3~^~07/01/2012~ -~06150~^~404~^0.023^15^0.002^~1~^~A~^^^1^0.015^0.040^5^0.017^0.028^~1, 2, 3~^~04/01/2015~ -~06150~^~405~^0.056^15^0.003^~1~^~A~^^^1^0.015^0.080^3^0.048^0.065^~1, 2, 3~^~04/01/2015~ -~06150~^~406~^0.597^15^0.023^~1~^~A~^^^1^0.160^0.810^2^0.504^0.689^~2, 3~^~07/01/2012~ -~06150~^~410~^0.164^9^0.003^~1~^~A~^^^1^0.050^0.220^2^0.152^0.176^~1, 2, 3~^~07/01/2012~ -~06150~^~415~^0.075^15^0.001^~1~^~A~^^^1^0.015^0.100^3^0.070^0.081^~1, 2, 3~^~07/01/2012~ -~06150~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~06150~^~606~^0.045^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~607~^0.002^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~612~^0.002^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~613~^0.025^3^^~1~^~A~^^^1^0.019^0.072^^^^~2, 3~^~07/01/2012~ -~06150~^~614~^0.008^3^^~1~^~A~^^^1^0.005^0.025^^^^~2, 3~^~07/01/2012~ -~06150~^~615~^0.002^3^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~617~^0.045^3^^~1~^~AS~^^^1^0.014^0.160^^^^~2, 3~^~07/01/2012~ -~06150~^~618~^0.080^3^^~1~^~AS~^^^1^0.041^0.317^^^^~2, 3~^~07/01/2012~ -~06150~^~619~^0.021^3^^~1~^~AS~^^^1^0.009^0.063^^^^~2, 3~^~07/01/2012~ -~06150~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~624~^0.001^3^^~1~^~A~^^^1^0.001^0.003^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~626~^0.000^3^^~1~^~AS~^^^1^0.000^0.001^^^^~2, 3~^~07/01/2012~ -~06150~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~628~^0.012^3^^~1~^~A~^^^1^0.003^0.024^^^^~2, 3~^~07/01/2012~ -~06150~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~630~^0.023^3^^~1~^~AS~^^^1^0.005^0.048^^^^~2, 3~^~07/01/2012~ -~06150~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~645~^0.082^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~646~^0.101^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~652~^0.001^3^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~653~^0.003^3^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~654~^0.001^3^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~663~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~671~^0.001^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~672~^0.001^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~673~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~674~^0.045^3^^~1~^~A~^^^1^0.014^0.160^^^^~2, 3~^~07/01/2012~ -~06150~^~675~^0.080^3^^~1~^~A~^^^1^0.041^0.316^^^^~2, 3~^~07/01/2012~ -~06150~^~676~^0.023^3^^~1~^~A~^^^1^0.005^0.048^^^^~2, 3~^~07/01/2012~ -~06150~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2012~ -~06150~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06150~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~851~^0.021^3^^~1~^~A~^^^1^0.009^0.062^^^^~2, 3~^~07/01/2012~ -~06150~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06150~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06151~^~312~^0.078^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~315~^0.114^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~404~^0.018^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~405~^0.084^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~406~^1.014^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~410~^0.059^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~415~^0.078^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06151~^~606~^0.153^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~612~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~613~^0.111^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~614~^0.038^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~617~^0.236^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~618~^0.516^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~619~^0.069^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~645~^0.240^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06151~^~646~^0.588^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~312~^0.137^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~315~^0.221^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~404~^0.061^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~405~^0.053^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~406~^1.421^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~410~^0.374^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~415~^0.136^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~605~^0.000^1^^~8~^~LC~^^^1^0.000^0.000^^^^^~05/01/2014~ -~06152~^~606~^0.460^3^^~12~^~MA~^^^^^^^^^^~03/01/1996~ -~06152~^~607~^0.032^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~608~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~609~^0.006^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~610~^0.016^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~611~^0.021^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~612~^0.071^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~613~^0.216^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~614~^0.067^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~617~^0.434^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~618~^0.082^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~619~^0.014^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~645~^0.461^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06152~^~646~^0.099^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06158~^~312~^0.100^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~315~^0.200^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~404~^0.051^13^0.001^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~405~^0.055^13^0.002^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~406~^0.894^13^0.023^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06158~^~415~^0.070^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~501~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~502~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~503~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~504~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~505~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~506~^0.023^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~507~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~508~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~509~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~510~^0.068^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~511~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~512~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~513~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~514~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~515~^0.605^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~516~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~517~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~518~^0.069^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~606~^0.420^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~613~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~614~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~617~^0.510^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~618~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~619~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~645~^0.530^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06158~^~646~^0.870^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06159~^~312~^0.050^6^0.002^~1~^~A~^^^1^0.044^0.055^5^0.046^0.054^~2, 3~^~02/01/2011~ -~06159~^~315~^0.138^6^0.002^~1~^~A~^^^1^0.132^0.143^5^0.132^0.143^~2, 3~^~02/01/2011~ -~06159~^~404~^0.042^6^0.007^~1~^~A~^^^1^0.020^0.060^5^0.024^0.060^~2, 3~^~02/01/2011~ -~06159~^~405~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~02/01/2011~ -~06159~^~406~^0.858^6^0.013^~1~^~A~^^^1^0.810^0.900^5^0.825^0.892^~2, 3~^~02/01/2011~ -~06159~^~415~^0.086^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06159~^~606~^0.115^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06159~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~11/01/2006~ -~06159~^~612~^0.011^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~613~^0.080^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~614~^0.023^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~617~^0.079^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~618~^0.132^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~619~^0.025^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~626~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~06159~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~628~^0.028^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~630~^0.016^2^^~1~^~A~^^^1^^^^^^^~02/01/2011~ -~06159~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2011~ -~06159~^~645~^0.136^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06159~^~646~^0.157^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~06164~^~312~^0.066^12^0.002^~1~^~A~^^^1^0.055^0.077^7^0.062^0.070^~2, 3~^~04/01/2015~ -~06164~^~315~^0.112^12^0.002^~1~^~A~^^^1^0.105^0.125^9^0.108^0.116^~2, 3~^~04/01/2015~ -~06164~^~404~^0.033^6^0.000^~1~^~A~^^^1^0.030^0.040^^^^~2, 3~^~04/01/2015~ -~06164~^~405~^0.032^3^0.007^~1~^~A~^^^^^^^^^^~02/01/1980~ -~06164~^~406~^1.091^6^0.024^~1~^~A~^^^1^1.000^1.240^2^1.003^1.178^~2, 3~^~04/01/2015~ -~06164~^~410~^0.199^4^0.005^~1~^~A~^^^1^0.190^0.220^2^0.178^0.220^~2, 3~^~04/01/2015~ -~06164~^~415~^0.172^6^0.003^~1~^~A~^^^1^0.162^0.191^2^0.161^0.183^~2, 3~^~04/01/2015~ -~06164~^~606~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~613~^0.016^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~614~^0.004^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~617~^0.017^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~618~^0.074^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~619~^0.004^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~06164~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1998~ -~06164~^~645~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06164~^~646~^0.078^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06166~^~312~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~315~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~404~^0.069^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~405~^0.185^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~406~^0.402^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~410~^0.326^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~415~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~501~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~502~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~503~^0.186^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~504~^0.300^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~505~^0.243^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~506~^0.077^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~507~^0.028^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~508~^0.148^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~509~^0.148^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~510~^0.205^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~511~^0.111^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~512~^0.083^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~513~^0.105^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~514~^0.233^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~515~^0.642^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~516~^0.065^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~517~^0.297^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~518~^0.166^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~606~^2.854^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~607~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~608~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~610~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~611~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~612~^0.209^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~613~^1.555^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~614~^0.869^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~617~^4.375^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~618~^2.713^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~619~^0.148^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~626~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06166~^~645~^4.420^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06166~^~646~^2.862^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~312~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~315~^0.067^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~404~^0.088^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~405~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~406~^0.589^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~410~^0.315^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~415~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~501~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~502~^0.129^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~503~^0.173^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~504~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~505~^0.227^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~506~^0.071^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~507~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~508~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~509~^0.138^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~510~^0.191^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~511~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~512~^0.078^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~513~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~514~^0.217^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~515~^0.598^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~516~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~517~^0.276^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~518~^0.155^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~606~^3.416^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~607~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~608~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~609~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~610~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~611~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~612~^0.202^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~613~^1.919^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~614~^1.093^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~617~^5.809^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~618~^3.722^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~619~^0.192^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~626~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~06167~^~645~^5.851^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06167~^~646~^3.914^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~312~^0.028^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~315~^0.049^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~404~^0.036^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~405~^0.082^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~406~^0.254^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~410~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~415~^0.157^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~501~^0.007^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~502~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~503~^0.017^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~504~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~505~^0.023^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~506~^0.006^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~507~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~508~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~509~^0.011^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~510~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~511~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~512~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~513~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~514~^0.073^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~515~^0.067^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~516~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~517~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~518~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~606~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~612~^0.001^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~613~^0.044^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~614~^0.007^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~617~^0.029^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~618~^0.195^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~619~^0.001^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~626~^0.001^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~645~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06168~^~646~^0.196^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~312~^0.075^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~315~^0.107^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~404~^0.032^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~405~^0.084^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~406~^0.178^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~410~^0.110^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~415~^0.154^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~501~^0.017^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~502~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~503~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~504~^0.068^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~505~^0.057^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~506~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~507~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~508~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~509~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~510~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~511~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~512~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~513~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~514~^0.185^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~515~^0.171^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~516~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~517~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~518~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~606~^0.106^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~612~^0.002^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~613~^0.090^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~614~^0.014^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~617~^0.058^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~618~^0.398^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~619~^0.003^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~626~^0.002^1^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~06169~^~645~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06169~^~646~^0.401^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06170~^~312~^0.050^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~404~^0.033^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~405~^0.091^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~406~^0.872^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~415~^0.055^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~606~^0.035^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~612~^0.001^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~613~^0.020^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~614~^0.013^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~617~^0.039^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~618~^0.004^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~619~^0.000^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~626~^0.003^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~628~^0.001^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06170~^~645~^0.043^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06170~^~646~^0.005^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~312~^0.054^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~404~^0.035^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~405~^0.085^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~406~^1.584^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~415~^0.061^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~606~^0.321^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~612~^0.008^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~613~^0.252^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~614~^0.056^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~617~^0.484^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~618~^0.204^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~619~^0.009^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~626~^0.089^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~628~^0.004^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06172~^~645~^0.582^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06172~^~646~^0.213^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06174~^~312~^0.058^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~315~^0.052^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~404~^0.033^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~405~^0.076^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~406~^1.186^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~410~^0.329^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~415~^0.037^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~606~^0.203^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~607~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~608~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~609~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~610~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~611~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~612~^0.015^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~613~^0.138^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~614~^0.035^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~617~^0.148^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~618~^0.009^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~619~^0.006^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~620~^0.011^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~621~^0.049^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~626~^0.073^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~627~^0.003^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~628~^0.006^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~629~^0.035^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~631~^0.017^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~645~^0.236^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06174~^~646~^0.138^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~312~^0.128^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~315~^0.254^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~404~^0.004^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~405~^0.217^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~406~^1.170^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~410~^0.068^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~415~^0.062^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~606~^0.568^5^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~607~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~608~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~609~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~610~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~611~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~612~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~613~^0.368^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~614~^0.170^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~617~^0.963^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~618~^1.524^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~619~^0.175^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~620~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~621~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~626~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~628~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~629~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~631~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~645~^0.963^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06175~^~646~^1.698^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~312~^0.147^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06176~^~315~^0.053^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~ -~06176~^~404~^0.010^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~405~^0.124^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~406~^1.474^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~410~^0.016^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~415~^0.016^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~606~^0.043^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~607~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~608~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~609~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~610~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~611~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~612~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~613~^0.029^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~614~^0.010^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~617~^0.067^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~618~^0.062^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~619~^0.002^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~620~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~621~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~626~^0.005^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~628~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~629~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~631~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~645~^0.073^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06176~^~646~^0.066^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06177~^~312~^0.083^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~404~^0.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~405~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~406~^0.640^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~415~^0.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~606~^0.140^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~607~^0.007^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~608~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~609~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~610~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~611~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~612~^0.009^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~613~^0.086^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~614~^0.025^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~617~^0.230^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~618~^0.216^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~619~^0.033^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~626~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~645~^0.280^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06177~^~646~^0.250^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06179~^~312~^0.050^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~315~^0.233^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~404~^0.012^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~405~^0.057^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~406~^2.313^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~410~^0.118^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~415~^0.396^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06179~^~606~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~613~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~617~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~618~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~621~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~626~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~645~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06179~^~646~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~312~^0.108^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~315~^0.024^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~404~^0.027^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~405~^0.039^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~406~^0.493^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~410~^0.130^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~415~^0.026^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~06180~^~606~^0.501^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~612~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~613~^0.341^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~614~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~617~^0.365^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~618~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~621~^0.121^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~626~^0.180^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~627~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~629~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~631~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~645~^0.583^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06180~^~646~^0.341^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06182~^~312~^0.220^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~315~^0.059^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~404~^0.042^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~405~^0.192^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~406~^0.170^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~415~^0.040^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~606~^0.530^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~607~^0.017^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~608~^0.010^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~609~^0.006^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~610~^0.014^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~611~^0.017^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~612~^0.056^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~613~^0.288^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~614~^0.103^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~617~^0.421^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~618~^0.530^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~619~^0.036^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~626~^0.014^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~645~^0.440^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06182~^~646~^0.560^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~312~^0.035^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~315~^0.062^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~404~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~405~^0.014^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~406~^0.686^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~410~^0.012^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~415~^0.006^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06183~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~607~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~608~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~609~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~610~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~611~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~612~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~613~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~614~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~617~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~618~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~619~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~620~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~621~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~626~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~627~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~628~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~629~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~630~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~631~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~645~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06183~^~646~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~06188~^~312~^0.009^9^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~315~^0.005^9^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~404~^0.016^3^0.004^~1~^~A~^^^1^0.007^0.020^2^-0.002^0.034^~1, 2, 3~^~04/01/2015~ -~06188~^~405~^0.073^3^0.023^~1~^~A~^^^1^0.050^0.120^2^-0.027^0.174^~2, 3~^~04/01/2015~ -~06188~^~406~^0.410^3^0.107^~1~^~A~^^^1^0.230^0.600^2^-0.050^0.870^~2, 3~^~04/01/2015~ -~06188~^~410~^0.065^2^^~1~^~A~^^^1^0.050^0.080^1^^^^~04/01/2015~ -~06188~^~415~^0.075^3^0.037^~1~^~A~^^^1^0.010^0.139^2^-0.086^0.235^~2, 3~^~04/01/2015~ -~06188~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~606~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~610~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.006^~2, 3~^~04/01/2015~ -~06188~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~612~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2015~ -~06188~^~613~^0.023^4^0.012^~1~^~A~^^^1^0.011^0.060^3^-0.015^0.062^~2, 3~^~04/01/2015~ -~06188~^~614~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.013^3^0.007^0.014^~2, 3~^~04/01/2015~ -~06188~^~615~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~06188~^~617~^0.023^4^0.014^~1~^~AS~^^^1^0.008^0.065^3^-0.020^0.068^~2, 3~^~04/01/2015~ -~06188~^~618~^0.004^4^0.003^~1~^~AS~^^^1^0.002^0.012^3^-0.003^0.012^~2, 3~^~04/01/2015~ -~06188~^~619~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^-0.001^0.001^~2, 3~^~04/01/2015~ -~06188~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~625~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~04/01/2015~ -~06188~^~626~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~06188~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~06188~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~646~^0.005^0^^~4~^~NC~^^^^^^^^^^~05/01/1995~ -~06188~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~663~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.007^3^-0.002^0.008^~1, 2, 3~^~04/01/2015~ -~06188~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~665~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~673~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~674~^0.020^4^0.012^~1~^~A~^^^1^0.007^0.058^3^-0.019^0.060^~2, 3~^~04/01/2015~ -~06188~^~675~^0.004^4^0.003^~1~^~A~^^^1^0.002^0.012^3^-0.003^0.012^~1, 2, 3~^~04/01/2015~ -~06188~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~06188~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06188~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2015~ -~06188~^~851~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2015~ -~06188~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06188~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~06189~^~312~^0.100^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~404~^0.030^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~405~^0.070^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~406~^1.270^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~415~^0.100^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06189~^~606~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~611~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~612~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~613~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~614~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~617~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~618~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~619~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~626~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~645~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06189~^~646~^0.000^0^^~4~^^^^^^^^^^^~11/01/2006~ -~06190~^~312~^0.082^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~315~^0.228^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~404~^0.056^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~405~^0.029^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~406~^0.324^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~410~^0.128^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~415~^0.046^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~606~^0.252^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~612~^0.007^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~613~^0.166^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~614~^0.078^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~617~^0.400^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~618~^0.229^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~619~^0.040^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~626~^0.015^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~645~^0.415^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06190~^~646~^0.269^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06192~^~312~^0.110^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~315~^0.200^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~404~^0.070^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~405~^0.029^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~406~^0.457^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~410~^0.237^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~415~^0.073^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~606~^0.300^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~ -~06192~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~610~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~611~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~612~^0.012^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~613~^0.191^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~614~^0.090^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~617~^0.345^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~618~^0.147^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~619~^0.021^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~626~^0.024^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~645~^0.370^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06192~^~646~^0.168^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~ -~06193~^~312~^0.100^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~315~^0.198^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~404~^0.083^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~405~^0.038^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~406~^0.695^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~410~^0.250^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~415~^0.048^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~606~^0.294^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~06193~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~611~^0.100^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~613~^0.129^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~614~^0.057^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~617~^0.257^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~618~^0.115^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~619~^0.019^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~626~^0.023^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~645~^0.282^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06193~^~646~^0.135^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~ -~06194~^~312~^0.015^15^0.003^~1~^~A~^^^1^0.009^0.048^5^0.007^0.023^~1, 2, 3~^~04/01/2013~ -~06194~^~315~^0.015^15^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~404~^0.021^8^0.001^~1~^~A~^^^1^0.020^0.030^2^0.016^0.026^~2, 3~^~04/01/2013~ -~06194~^~405~^0.059^8^0.003^~1~^~A~^^^1^0.015^0.120^2^0.049^0.070^~1, 2, 3~^~04/01/2013~ -~06194~^~406~^0.219^8^0.014^~1~^~A~^^^1^0.022^0.350^3^0.168^0.270^~1, 2, 3~^~04/01/2013~ -~06194~^~410~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~415~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06194~^~606~^0.013^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~613~^0.009^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~614~^0.003^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~617~^0.016^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~618~^0.008^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/2006~ -~06194~^~645~^0.019^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06194~^~646~^0.009^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~06201~^~312~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~315~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~404~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~405~^0.111^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~406~^0.355^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~410~^0.210^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06201~^~415~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~501~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~502~^0.105^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~503~^0.137^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~504~^0.225^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~505~^0.174^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~506~^0.058^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~507~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~508~^0.117^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~509~^0.109^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~510~^0.155^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~511~^0.093^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~512~^0.064^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~513~^0.093^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~514~^0.193^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~515~^0.576^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~516~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~517~^0.241^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~518~^0.131^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~606~^1.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~607~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~608~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~610~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~611~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~612~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~613~^0.570^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~614~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~617~^0.760^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~618~^0.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~626~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06201~^~645~^0.840^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06201~^~646~^0.900^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06208~^~312~^0.040^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~405~^0.017^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~406~^0.346^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~415~^0.042^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~606~^1.636^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~607~^0.065^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~608~^0.037^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~609~^0.021^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~610~^0.047^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~611~^0.051^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~612~^0.205^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~613~^0.795^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~614~^0.367^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~617~^1.507^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~618~^0.871^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~619~^0.092^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~620~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~626~^0.065^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~645~^1.605^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06208~^~646~^0.974^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06210~^~312~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~315~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~404~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~405~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~406~^0.176^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~410~^0.610^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06210~^~415~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~501~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~502~^0.097^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~503~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~504~^0.209^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~505~^0.159^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~506~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~507~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~508~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~509~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~510~^0.145^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~511~^0.083^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~512~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~513~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~514~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~515~^0.495^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~516~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~517~^0.213^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~518~^0.119^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~606~^1.590^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~607~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~608~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~611~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~612~^0.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~613~^0.670^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~614~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~617~^0.900^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~618~^1.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~619~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06210~^~645~^0.990^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06210~^~646~^1.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~312~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~315~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~404~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~405~^0.133^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~406~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~410~^0.190^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06211~^~415~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~501~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~502~^0.148^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~503~^0.226^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~504~^0.361^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~505~^0.279^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~506~^0.087^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~507~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~508~^0.189^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~509~^0.177^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~510~^0.259^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~511~^0.123^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~512~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~513~^0.125^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~514~^0.274^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~515~^1.002^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~516~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~517~^0.383^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~518~^0.187^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~606~^3.630^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~607~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~608~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~609~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~610~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~611~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~612~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~613~^1.650^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~614~^0.690^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~617~^1.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~618~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~619~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~626~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06211~^~645~^1.630^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06211~^~646~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~312~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~315~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~404~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~405~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~406~^0.372^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~410~^0.230^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06216~^~415~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~501~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~502~^0.126^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~503~^0.167^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~504~^0.265^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~505~^0.215^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~506~^0.073^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~507~^0.035^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~508~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~509~^0.126^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~510~^0.179^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~511~^0.126^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~512~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~513~^0.116^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~514~^0.221^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~515~^0.655^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~516~^0.089^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~517~^0.261^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~518~^0.149^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~606~^1.870^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~607~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~608~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~610~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~611~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~612~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~613~^0.960^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~614~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~617~^1.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~618~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~619~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~626~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06216~^~645~^1.800^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06216~^~646~^0.660^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06217~^~312~^0.232^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~315~^0.250^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~404~^0.109^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~405~^0.092^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~406~^1.540^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~410~^0.346^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~415~^0.167^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~606~^0.147^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~613~^0.114^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~614~^0.030^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~617~^0.201^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~618~^0.380^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~619~^0.023^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~626~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~645~^0.203^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06217~^~646~^0.403^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~06230~^~312~^0.118^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~315~^0.087^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~404~^0.081^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~405~^0.176^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~406~^0.794^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~410~^0.296^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~415~^0.070^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06230~^~606~^1.094^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06230~^~607~^0.040^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~608~^0.021^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~609~^0.011^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~610~^0.026^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~611~^0.030^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~612~^0.097^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~613~^0.671^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~614~^0.196^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~617~^0.249^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~618~^0.476^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~619~^0.018^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~620~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~621~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~626~^0.017^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~627~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~628~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~629~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~631~^0.004^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06230~^~645~^0.268^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06230~^~646~^0.513^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06230~^~689~^0.002^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06243~^~312~^0.013^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~315~^0.025^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~404~^0.026^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~405~^0.104^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~406~^0.214^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~410~^0.255^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~415~^0.027^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~501~^0.027^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~502~^0.087^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~503~^0.098^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~504~^0.190^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~505~^0.157^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~506~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~507~^0.015^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~508~^0.107^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~509~^0.101^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~510~^0.126^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~511~^0.072^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~512~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~513~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~514~^0.184^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~515~^0.633^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~516~^0.048^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~517~^0.197^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~518~^0.127^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~521~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~605~^0.055^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06243~^~606~^1.116^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~607~^0.043^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~608~^0.023^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~609~^0.012^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~610~^0.029^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~611~^0.032^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~612~^0.108^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~613~^0.583^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~614~^0.241^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~615~^0.010^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~617~^0.829^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~618~^1.264^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~619~^0.168^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~624~^0.009^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~625~^0.009^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~626~^0.019^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~628~^0.014^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06243~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06243~^~645~^0.877^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~646~^1.435^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06243~^~652~^0.013^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~653~^0.009^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~687~^0.004^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~689~^0.002^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06243~^~697~^0.002^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06246~^~312~^0.060^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~404~^0.039^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~405~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~406~^0.244^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~410~^0.280^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~415~^0.030^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06246~^~606~^1.630^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~607~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~608~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~610~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~611~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~612~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~613~^0.740^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~614~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~617~^1.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~618~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~619~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06246~^~645~^1.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06246~^~646~^0.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~312~^0.655^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~315~^0.151^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~404~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~405~^0.095^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~406~^0.137^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06248~^~415~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~606~^2.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~607~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~608~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~609~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~610~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~611~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~612~^0.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~613~^0.830^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~614~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~617~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~618~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~645~^0.850^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06248~^~646~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~312~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~315~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~404~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~405~^0.105^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~406~^0.528^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~410~^0.220^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06249~^~415~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~501~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~502~^0.191^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~503~^0.213^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~504~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~505~^0.327^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~506~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~507~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~508~^0.225^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~509~^0.176^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~510~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~511~^0.336^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~512~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~513~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~514~^0.467^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~515~^0.969^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~516~^0.169^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~517~^0.328^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~518~^0.223^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~606~^1.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~607~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~608~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~611~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~612~^0.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~613~^0.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~614~^0.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~617~^0.770^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~618~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06249~^~645~^0.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06249~^~646~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~312~^0.106^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~315~^0.153^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~404~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~405~^0.095^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~406~^0.259^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~410~^0.680^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06253~^~415~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~501~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~502~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~503~^0.129^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~504~^0.207^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~505~^0.162^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~506~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~507~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~508~^0.112^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~509~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~510~^0.146^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~511~^0.089^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~512~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~513~^0.078^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~514~^0.226^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~515~^0.507^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~516~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~517~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~518~^0.122^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~606~^1.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~607~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~608~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~609~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~610~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~611~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~612~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~613~^0.650^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~614~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~617~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~618~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~626~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06253~^~645~^0.700^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06253~^~646~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06256~^~312~^0.051^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~315~^0.152^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~404~^0.028^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~405~^0.107^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~406~^0.211^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06256~^~410~^0.237^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~415~^0.034^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06256~^~606~^1.930^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~607~^0.104^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~608~^0.060^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~609~^0.035^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~610~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~611~^0.088^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~612~^0.299^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~613~^0.829^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~614~^0.374^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~617~^0.760^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~618~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~619~^0.036^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~626~^0.062^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~628~^0.001^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~06256~^~645~^1.147^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06256~^~646~^0.155^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~06264~^~312~^0.019^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~315~^0.031^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~404~^0.068^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~405~^0.208^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~406~^0.319^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~410~^0.392^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~415~^0.037^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~605~^0.098^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~606~^1.600^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~607~^0.101^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~608~^0.061^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~609~^0.037^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~610~^0.078^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~611~^0.079^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~612~^0.231^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~613~^0.683^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~614~^0.309^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~615~^0.004^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~617~^0.621^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~618~^0.100^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~619~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~626~^0.032^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~628~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~645~^0.656^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~646~^0.112^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~653~^0.017^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~663~^0.089^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~666~^0.009^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~670~^0.008^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~673~^0.029^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~674~^0.509^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~675~^0.065^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~693~^0.089^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~695~^0.009^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06264~^~851~^0.009^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~312~^0.100^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~315~^0.247^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~404~^0.042^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~405~^0.063^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~406~^1.178^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~410~^0.057^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~415~^0.087^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~605~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~606~^0.144^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~608~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~609~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~610~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~611~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~612~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~613~^0.113^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~614~^0.026^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~617~^0.212^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~618~^0.107^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~619~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~626~^0.038^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~628~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~645~^0.253^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06285~^~646~^0.117^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~06307~^~312~^0.091^6^0.002^~1~^~A~^^^1^0.086^0.102^5^0.085^0.097^~4~^~07/01/2012~ -~06307~^~315~^0.126^6^0.002^~1~^~A~^^^1^0.118^0.131^5^0.121^0.131^~4~^~07/01/2012~ -~06307~^~404~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~4~^~07/01/2012~ -~06307~^~405~^0.050^3^0.006^~1~^~A~^^^1^0.040^0.060^2^0.025^0.075^~4~^~07/01/2012~ -~06307~^~406~^0.520^3^0.055^~1~^~A~^^^1^0.460^0.630^2^0.283^0.757^~4~^~07/01/2012~ -~06307~^~410~^0.165^2^^~1~^~A~^^^1^0.160^0.170^1^^^^~07/01/2012~ -~06307~^~415~^0.083^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.069^0.098^~4~^~07/01/2012~ -~06307~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~606~^0.038^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~607~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~613~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~617~^0.044^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~618~^0.060^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~624~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~628~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~630~^0.030^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~645~^0.092^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~646~^0.082^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~671~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~672~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~674~^0.044^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~675~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~676~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~06307~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06307~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~851~^0.021^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06307~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06307~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06314~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~606~^0.400^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~645~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06314~^~646~^0.180^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~606~^0.170^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~645~^0.230^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06315~^~646~^0.130^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~606~^0.050^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~645~^0.070^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06316~^~646~^0.080^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~06338~^~312~^0.024^6^0.002^~1~^~A~^^^1^0.019^0.030^5^0.018^0.030^~1, 2, 3~^~07/01/2012~ -~06338~^~315~^0.036^6^0.002^~1~^~A~^^^1^0.030^0.043^5^0.031^0.041^~2, 3~^~07/01/2012~ -~06338~^~404~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~07/01/2012~ -~06338~^~405~^0.017^2^^~1~^~A~^^^1^0.015^0.020^1^^^~1~^~07/01/2012~ -~06338~^~406~^0.363^3^0.009^~1~^~A~^^^1^0.350^0.380^2^0.325^0.401^~2, 3~^~07/01/2012~ -~06338~^~410~^0.148^2^^~1~^~A~^^^1^0.148^0.148^^^^~1~^~07/01/2012~ -~06338~^~415~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~07/01/2012~ -~06338~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~502~^0.028^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~503~^0.018^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~504~^0.056^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~505~^0.028^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~506~^0.018^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~508~^0.037^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~509~^0.028^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~510~^0.028^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~511~^0.046^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~512~^0.018^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~513~^0.037^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~514~^0.074^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~515~^0.492^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~516~^0.028^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~517~^0.056^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~518~^0.046^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~06338~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~06338~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~606~^0.951^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~607~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~07/01/2012~ -~06338~^~608~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~07/01/2012~ -~06338~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~07/01/2012~ -~06338~^~610~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~07/01/2012~ -~06338~^~611~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~07/01/2012~ -~06338~^~612~^0.026^3^0.001^~1~^~A~^^^1^0.024^0.029^2^0.020^0.033^~2, 3~^~07/01/2012~ -~06338~^~613~^0.618^3^0.023^~1~^~A~^^^1^0.599^0.677^2^0.534^0.732^~2, 3~^~07/01/2012~ -~06338~^~614~^0.242^3^0.012^~1~^~A~^^^1^0.232^0.272^2^0.195^0.301^~2, 3~^~07/01/2012~ -~06338~^~615~^0.019^3^0.002^~1~^~A~^^^1^0.017^0.023^2^0.010^0.028^~2, 3~^~07/01/2012~ -~06338~^~617~^1.236^3^0.058^~1~^~AS~^^^1^1.198^1.381^2^1.018^1.514^~2, 3~^~07/01/2012~ -~06338~^~618~^2.788^3^0.125^~1~^~AS~^^^1^2.629^3.060^2^2.318^3.393^~2, 3~^~07/01/2012~ -~06338~^~619~^0.365^3^0.028^~1~^~AS~^^^1^0.320^0.414^2^0.253^0.494^~2, 3~^~07/01/2012~ -~06338~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~624~^0.018^3^0.002^~1~^~A~^^^1^0.017^0.022^2^0.012^0.026^~2, 3~^~07/01/2012~ -~06338~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2012~ -~06338~^~626~^0.009^3^0.000^~1~^~AS~^^^1^0.009^0.009^^^^~2, 3~^~07/01/2012~ -~06338~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~628~^0.033^3^0.008^~1~^~A~^^^1^0.023^0.049^2^0.001^0.067^~2, 3~^~07/01/2012~ -~06338~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~07/01/2012~ -~06338~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~645~^1.284^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~646~^3.155^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~652~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~07/01/2012~ -~06338~^~653~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~07/01/2012~ -~06338~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~07/01/2012~ -~06338~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~663~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~07/01/2012~ -~06338~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~06338~^~665~^0.013^3^0.002^~1~^~A~^^^1^0.009^0.016^2^0.004^0.023^~2, 3~^~07/01/2012~ -~06338~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2012~ -~06338~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2012~ -~06338~^~673~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~07/01/2012~ -~06338~^~674~^1.229^3^0.058^~1~^~A~^^^1^1.192^1.374^2^1.010^1.507^~2, 3~^~07/01/2012~ -~06338~^~675~^2.772^3^0.125^~1~^~A~^^^1^2.612^3.041^2^2.304^3.375^~2, 3~^~05/01/2013~ -~06338~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~06338~^~685~^0.011^3^0.006^~1~^~A~^^^1^0.000^0.018^2^-0.013^0.035^~1, 2, 3~^~07/01/2012~ -~06338~^~687~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~07/01/2012~ -~06338~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2012~ -~06338~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~06338~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~851~^0.354^3^0.023^~1~^~A~^^^1^0.320^0.399^2^0.264^0.462^~2, 3~^~07/01/2012~ -~06338~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06338~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~06358~^~312~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~315~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~404~^0.045^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~405~^0.107^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~406~^0.499^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06358~^~415~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~501~^0.032^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~502~^0.099^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~503~^0.128^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~504~^0.207^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~505~^0.163^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~506~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~507~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~508~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~509~^0.101^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~510~^0.142^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~511~^0.084^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~512~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~513~^0.081^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~514~^0.201^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~515~^0.646^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~516~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~517~^0.211^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~518~^0.123^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~606~^1.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~607~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~608~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~610~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~611~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~612~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~613~^0.560^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~614~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~617~^0.680^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~618~^0.420^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~619~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~626~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~645~^0.750^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06358~^~646~^0.490^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06359~^~312~^0.027^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~315~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~404~^0.041^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~405~^0.103^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~406~^0.461^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~415~^0.061^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~501~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~502~^0.093^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~503~^0.111^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~504~^0.200^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~505~^0.162^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~506~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~507~^0.021^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~508~^0.116^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~509~^0.103^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~510~^0.138^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~511~^0.072^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~512~^0.066^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~513~^0.079^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~514~^0.208^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~515~^0.682^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~516~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~517~^0.220^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~518~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~606~^0.707^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~607~^0.040^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~608~^0.021^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~609~^0.011^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~610~^0.025^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~611~^0.028^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06359~^~612~^0.096^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~613~^0.328^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~614~^0.137^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~617~^0.301^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~618~^0.095^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~619~^0.016^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~626~^0.020^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~628~^0.014^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~630~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06359~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~645~^0.356^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06359~^~646~^0.113^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06377~^~312~^0.050^6^0.002^~1~^~A~^^^1^0.044^0.055^5^0.046^0.054^~4~^~02/01/2011~ -~06377~^~315~^0.138^6^0.002^~1~^~A~^^^1^0.132^0.143^5^0.132^0.143^~4~^~02/01/2011~ -~06377~^~404~^0.042^6^0.007^~1~^~A~^^^1^0.020^0.060^5^0.024^0.060^~4~^~02/01/2011~ -~06377~^~405~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^5^0.015^0.015^~1, 4~^~02/01/2011~ -~06377~^~406~^0.858^6^0.013^~1~^~A~^^^1^0.810^0.900^5^0.825^0.892^~4~^~02/01/2011~ -~06377~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~06377~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~06377~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06377~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~ -~06395~^~312~^0.025^6^0.000^~1~^~A~^^^1^0.025^0.025^5^0.025^0.025^~4~^~02/01/2011~ -~06395~^~315~^0.058^6^0.003^~1~^~A~^^^1^0.047^0.064^5^0.051^0.065^~4~^~02/01/2011~ -~06395~^~404~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.020^5^0.014^0.020^~1, 4~^~02/01/2011~ -~06395~^~405~^0.023^6^0.003^~1~^~A~^^^1^0.015^0.030^5^0.015^0.031^~1, 4~^~02/01/2011~ -~06395~^~406~^1.352^6^0.064^~1~^~A~^^^1^1.040^1.480^5^1.187^1.517^~4~^~02/01/2011~ -~06395~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06395~^~606~^0.408^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06401~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~315~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~404~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~405~^0.032^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~406~^0.319^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~410~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06401~^~415~^0.005^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~501~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~502~^0.032^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~503~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~504~^0.067^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~505~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~506~^0.017^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~507~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~508~^0.039^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~509~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~510~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~511~^0.035^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~512~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~513~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~514~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~515~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~516~^0.028^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~517~^0.084^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~518~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~606~^0.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~607~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~610~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~612~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~613~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~614~^0.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~617~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~618~^0.730^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06401~^~645~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06401~^~646~^0.760^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06402~^~312~^0.155^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~315~^0.250^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06402~^~404~^0.021^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~405~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~406~^0.205^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~410~^0.080^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~415~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~605~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~606~^0.170^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~610~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~612~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~613~^0.105^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~614~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~615~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~617~^0.225^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~618~^0.155^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~619~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~624~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~625~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~626~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~645~^0.240^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~646~^0.205^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~652~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~653~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~654~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~672~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~689~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06402~^~697~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~312~^0.152^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~315~^0.245^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06404~^~404~^0.032^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~405~^0.012^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~406~^0.206^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~410~^0.034^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~415~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~606~^0.558^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~610~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~611~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~612~^0.024^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~613~^0.343^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~614~^0.137^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~617~^0.744^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~618~^0.499^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~619~^0.162^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~626~^0.034^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~645~^0.793^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06404~^~646~^0.666^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06406~^~312~^0.158^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~315~^0.315^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~404~^0.044^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~405~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~406~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~410~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06406~^~415~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~501~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~502~^0.165^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~503~^0.195^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~504~^0.329^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~505~^0.272^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~506~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~507~^0.044^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~508~^0.223^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~509~^0.119^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~510~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~511~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~512~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~513~^0.199^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~514~^0.447^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~515~^0.736^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~516~^0.193^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~517~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~518~^0.198^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~606~^0.850^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~612~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~613~^0.560^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~614~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~617~^1.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~618~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~619~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~626~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~645~^1.090^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06406~^~646~^0.660^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06409~^~312~^0.060^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~315~^0.109^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06409~^~404~^0.028^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~405~^0.024^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~406~^0.425^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~410~^0.080^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~415~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~606~^0.455^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~612~^0.025^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~613~^0.250^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~614~^0.155^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~617~^0.435^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~618~^0.165^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~619~^0.025^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~626~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~645~^0.495^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06409~^~646~^0.195^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06410~^~312~^0.058^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~315~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~404~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~405~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~406~^0.136^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~410~^0.460^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06410~^~415~^0.005^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~501~^0.008^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~502~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~503~^0.032^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~504~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~505~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~506~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~507~^0.008^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~508~^0.032^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~509~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~510~^0.037^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~511~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~512~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~513~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~514~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~515~^0.157^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~516~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~517~^0.057^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~518~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~606~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~607~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~610~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~612~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~613~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~614~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~617~^0.490^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~618~^1.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06410~^~645~^0.530^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06410~^~646~^1.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~312~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~315~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~404~^0.007^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~405~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~406~^0.161^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~410~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06411~^~415~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~501~^0.029^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~502~^0.077^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~503~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~504~^0.207^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~505~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~506~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~507~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~508~^0.113^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~509~^0.101^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~510~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~511~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~512~^0.059^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~513~^0.071^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~514~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~515~^0.676^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~516~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~517~^0.231^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~518~^0.101^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~606~^2.700^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~607~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~608~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~609~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~610~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~611~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~612~^0.430^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~613~^1.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~614~^0.510^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~617~^1.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~618~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~619~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~626~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~645~^1.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06411~^~646~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~315~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~404~^0.004^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~405~^0.029^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~406~^1.372^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06413~^~415~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~606~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~613~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~614~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~617~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~618~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~628~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06413~^~645~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06413~^~646~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06415~^~312~^0.063^6^0.003^~1~^~A~^^^1^0.051^0.068^5^0.055^0.071^~2, 3~^~05/01/2015~ -~06415~^~315~^0.096^6^0.003^~1~^~A~^^^1^0.087^0.104^5^0.088^0.103^~2, 3~^~05/01/2015~ -~06415~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~05/01/2015~ -~06415~^~405~^0.085^3^0.004^~1~^~A~^^^1^0.081^0.094^2^0.067^0.104^~2, 3~^~05/01/2015~ -~06415~^~406~^1.047^3^0.012^~1~^~A~^^^1^1.030^1.070^2^0.995^1.098^~2, 3~^~05/01/2015~ -~06415~^~410~^0.210^2^^~1~^~A~^^^1^0.170^0.250^1^^^^~05/01/2015~ -~06415~^~415~^0.094^3^0.000^~1~^~A~^^^1^0.093^0.094^2^0.092^0.095^~2, 3~^~05/01/2015~ -~06415~^~605~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~606~^0.377^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~610~^0.004^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2015~ -~06415~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~612~^0.023^3^0.002^~1~^~A~^^^1^0.025^0.032^2^0.020^0.037^~2, 3~^~05/01/2015~ -~06415~^~613~^0.225^3^0.017^~1~^~A~^^^1^0.249^0.308^2^0.199^0.350^~2, 3~^~05/01/2015~ -~06415~^~614~^0.107^3^0.010^~1~^~A~^^^1^0.110^0.144^2^0.085^0.176^~2, 3~^~05/01/2015~ -~06415~^~615~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~06415~^~617~^0.336^3^0.031^~1~^~AS~^^^1^0.366^0.470^2^0.278^0.544^~2, 3~^~05/01/2015~ -~06415~^~618~^0.116^3^0.012^~1~^~AS~^^^1^0.125^0.165^2^0.091^0.193^~2, 3~^~05/01/2015~ -~06415~^~619~^0.009^3^0.001^~1~^~AS~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~05/01/2015~ -~06415~^~620~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~06415~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~624~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~06415~^~625~^0.007^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.005^0.013^~2, 3~^~05/01/2015~ -~06415~^~626~^0.027^3^0.002^~1~^~AS~^^^1^0.031^0.037^2^0.025^0.041^~2, 3~^~05/01/2015~ -~06415~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~628~^0.003^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2015~ -~06415~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~06415~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~06415~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~645~^0.381^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~646~^0.137^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~06415~^~653~^0.008^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2015~ -~06415~^~654~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~06415~^~663~^0.032^3^0.004^~1~^~A~^^^1^0.031^0.044^2^0.021^0.057^~2, 3~^~05/01/2015~ -~06415~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~05/01/2015~ -~06415~^~670~^0.004^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~06415~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~673~^0.025^3^0.002^~1~^~A~^^^1^0.028^0.034^2^0.022^0.038^~2, 3~^~05/01/2015~ -~06415~^~674~^0.304^3^0.028^~1~^~A~^^^1^0.335^0.427^2^0.251^0.493^~2, 3~^~05/01/2015~ -~06415~^~675~^0.106^3^0.011^~1~^~A~^^^1^0.114^0.151^2^0.082^0.177^~2, 3~^~05/01/2015~ -~06415~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~687~^0.007^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~05/01/2015~ -~06415~^~689~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~05/01/2015~ -~06415~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06415~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~851~^0.009^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~05/01/2015~ -~06415~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~06415~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~06415~^~858~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~06416~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~315~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~404~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~405~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~406~^0.336^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~410~^0.080^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06416~^~415~^0.007^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~501~^0.017^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~502~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~503~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~504~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~505~^0.088^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~506~^0.033^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~507~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~508~^0.063^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~509~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~510~^0.071^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~511~^0.068^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~512~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~513~^0.061^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~514~^0.099^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~515~^0.319^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~516~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~517~^0.105^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~518~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~606~^0.850^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~607~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~612~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~613~^0.540^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~614~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~617~^1.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~618~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~619~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~626~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06416~^~645~^1.340^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06416~^~646~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~315~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~404~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~405~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~406~^0.272^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~410~^0.080^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06417~^~415~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~501~^0.009^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~502~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~503~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~504~^0.069^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~505~^0.066^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~506~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~507~^0.007^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~508~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~509~^0.028^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~510~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~511~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~512~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~513~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~514~^0.091^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~515~^0.272^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~516~^0.068^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~517~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~518~^0.037^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~606~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~613~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~614~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~617~^0.240^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~618~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06417~^~645~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06417~^~646~^0.140^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06419~^~312~^0.018^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~315~^0.048^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06419~^~404~^0.039^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~405~^0.034^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~406~^0.598^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~410~^0.053^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~415~^0.021^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~605~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~606~^0.191^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~612~^0.004^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~613~^0.149^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~614~^0.036^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~617~^0.228^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~618~^0.152^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~619~^0.007^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~620~^0.004^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~626~^0.029^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~628~^0.004^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06419~^~645~^0.262^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06419~^~646~^0.166^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06423~^~312~^0.053^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~315~^0.150^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06423~^~404~^0.007^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~405~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~406~^0.459^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~410~^0.070^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~415~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~606~^0.185^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~613~^0.145^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~614~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~617~^0.340^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~618~^0.160^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~619~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~626~^0.030^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~645~^0.370^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06423~^~646~^0.170^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~312~^0.152^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~315~^0.392^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06426~^~404~^0.022^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~405~^0.028^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~406~^0.398^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~410~^0.108^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~415~^0.059^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~605~^0.034^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~606~^0.608^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~611~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~612~^0.047^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~613~^0.351^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~614~^0.184^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~615~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~617~^0.436^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~618~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~619~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~620~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~624~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~625~^0.008^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~626~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~628~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~645~^0.496^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~646~^0.046^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~652~^0.007^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~653~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~654~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~672~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~687~^0.008^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~689~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~696~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06426~^~697~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~312~^0.054^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~315~^0.147^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06428~^~404~^0.012^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~405~^0.016^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~406~^0.318^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~410~^0.073^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~415~^0.039^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~606~^0.149^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~613~^0.119^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~614~^0.025^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~617~^0.144^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~618~^0.468^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~619~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~626~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~645~^0.149^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06428~^~646~^0.503^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~312~^0.122^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~315~^0.081^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~404~^0.061^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~405~^0.081^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~406~^0.759^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~410~^0.113^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~415~^0.051^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~605~^0.006^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~606~^0.468^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~610~^0.001^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~611~^0.002^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~613~^0.377^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~614~^0.068^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~615~^0.014^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~618~^0.439^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~619~^0.011^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~620~^0.003^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~621~^0.005^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~624~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~627~^0.001^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~629~^0.005^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~631~^0.004^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~646~^0.469^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06430~^~652~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06430~^~653~^0.002^0^^~6~^~RPI~^^^^^^^^^^~07/01/2007~ -~06431~^~312~^0.033^6^0.003^~1~^~A~^^^1^0.025^0.045^5^0.026^0.041^~4~^~02/01/2011~ -~06431~^~315~^0.069^6^0.004^~1~^~A~^^^1^0.051^0.079^5^0.058^0.080^~4~^~02/01/2011~ -~06431~^~404~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^5^0.015^0.015^~1, 4~^~02/01/2011~ -~06431~^~405~^0.015^6^0.000^~1~^~A~^^^1^0.015^0.015^5^0.015^0.015^~1, 4~^~02/01/2011~ -~06431~^~406~^0.470^6^0.045^~1~^~A~^^^1^0.330^0.590^5^0.355^0.585^~4~^~02/01/2011~ -~06431~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~06432~^~312~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~315~^0.152^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~404~^0.009^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~405~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~406~^0.295^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06432~^~415~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~606~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~613~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~617~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~618~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~645~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06432~^~646~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06434~^~312~^0.027^5^0.001^~1~^~A~^^^1^0.025^0.031^4^0.024^0.030^~4~^~02/01/2011~ -~06434~^~315~^0.070^5^0.001^~1~^~A~^^^1^0.067^0.073^4^0.067^0.073^~4~^~02/01/2011~ -~06434~^~404~^0.015^5^0.000^~1~^~A~^^^1^0.015^0.015^4^0.015^0.015^~1, 4~^~02/01/2011~ -~06434~^~405~^0.016^5^0.001^~1~^~A~^^^1^0.015^0.020^4^0.013^0.019^~1, 4~^~02/01/2011~ -~06434~^~406~^1.002^5^0.039^~1~^~A~^^^1^0.870^1.110^4^0.893^1.111^~4~^~02/01/2011~ -~06434~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06434~^~606~^0.408^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~ -~06440~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~315~^0.152^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~404~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~405~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~406~^0.391^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~410~^0.140^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06440~^~415~^0.041^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~501~^0.013^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~502~^0.043^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~503~^0.054^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~504~^0.098^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~505~^0.076^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~506~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~507~^0.014^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~508~^0.064^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~509~^0.035^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~510~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~511~^0.082^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~512~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~513~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~514~^0.152^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~515~^0.506^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~516~^0.163^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~517~^0.135^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~518~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~606~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~613~^0.130^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~614~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~617~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~618~^0.400^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~619~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06440~^~645~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06440~^~646~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~315~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~404~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~405~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~406~^0.360^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~410~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~415~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06442~^~606~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~613~^0.110^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~614~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~617~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~618~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~626~^0.000^0^^~1~^^^^^^^^^^^~07/01/1995~ -~06442~^~645~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06442~^~646~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06443~^~312~^0.016^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~315~^0.018^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06443~^~404~^0.006^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~405~^0.008^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~406~^0.169^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~410~^0.072^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~415~^0.007^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~606~^0.472^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~607~^0.004^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~608~^0.002^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~609~^0.001^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~610~^0.004^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~611~^0.003^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~612~^0.018^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~613~^0.298^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~614~^0.117^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~617~^0.575^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~618~^1.252^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~619~^0.167^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~626~^0.005^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~628~^0.014^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06443~^~645~^0.597^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~646~^1.420^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~ -~06443~^~671~^0.000^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~ -~06444~^~312~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~315~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~404~^0.014^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~405~^0.039^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~406~^0.494^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~410~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~415~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~606~^0.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~612~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~613~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~614~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~617~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~618~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~626~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~645~^0.580^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06444~^~646~^0.320^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~312~^0.060^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~404~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~405~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~406~^0.206^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~410~^0.120^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06446~^~606~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~607~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~612~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~613~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~614~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~617~^0.840^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~618~^0.550^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~645~^0.860^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06446~^~646~^0.600^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~312~^0.661^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~315~^0.152^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~404~^0.009^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~405~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~406~^0.097^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~410~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06448~^~415~^0.005^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~606~^1.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~607~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~608~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~609~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~610~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~611~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~612~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~613~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~614~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~617~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~618~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~645~^0.380^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06448~^~646~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06449~^~312~^0.146^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~315~^0.245^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06449~^~404~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~405~^0.025^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~406~^0.462^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~410~^0.049^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~415~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~606~^0.524^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~607~^0.024^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~608~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~609~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~610~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~611~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~612~^0.073^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~613~^0.235^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~614~^0.117^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~617~^0.348^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~618~^0.127^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~619~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~626~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~645~^0.372^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06449~^~646~^0.142^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06451~^~312~^0.146^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~315~^0.265^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~404~^0.058^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~405~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~406~^0.583^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06451~^~415~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~501~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~502~^0.144^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~503~^0.172^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~504~^0.281^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~505~^0.275^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~506~^0.055^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~507~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~508~^0.180^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~509~^0.126^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~510~^0.194^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~511~^0.278^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~512~^0.085^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~513~^0.191^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~514~^0.415^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~515~^0.691^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~516~^0.197^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~517~^0.185^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~518~^0.175^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~606~^0.700^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~607~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~608~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~610~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~612~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~613~^0.370^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~614~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~617~^0.660^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~618~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~626~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~645~^0.710^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06451~^~646~^0.250^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~312~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~315~^0.154^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~404~^0.014^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~405~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~406~^0.221^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~410~^0.340^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06453~^~415~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~501~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~502~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~503~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~504~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~505~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~506~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~507~^0.011^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~508~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~509~^0.025^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~510~^0.038^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~511~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~512~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~513~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~514~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~515~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~516~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~517~^0.053^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~518~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~606~^0.500^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~607~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~608~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~609~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~610~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~611~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~612~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~613~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~614~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~617~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~618~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06453~^~645~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06453~^~646~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06456~^~312~^0.055^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~315~^0.150^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~404~^0.008^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~405~^0.011^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~406~^0.170^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~410~^0.055^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~415~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~606~^1.290^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~607~^0.065^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~608~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~609~^0.025^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~610~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~611~^0.060^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~612~^0.210^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~613~^0.545^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~614~^0.250^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~617~^0.520^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~618~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~619~^0.030^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~626~^0.045^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~645~^0.595^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06456~^~646~^0.075^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~312~^0.055^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~315~^0.100^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06461~^~404~^0.034^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~405~^0.036^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~406~^0.745^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~410~^0.075^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~415~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~606~^0.635^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~612~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~613~^0.350^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~614~^0.215^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~617~^0.605^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~618~^0.230^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~619~^0.035^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~626~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~645~^0.690^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06461~^~646~^0.270^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~312~^0.055^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~315~^0.150^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06463~^~404~^0.024^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~405~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~406~^0.411^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~410~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~415~^0.030^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~606~^0.200^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~608~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~611~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~612~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~613~^0.110^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~614~^0.050^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~617~^0.230^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~618~^0.435^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~619~^0.090^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~626~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~645~^0.235^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06463~^~646~^0.525^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06465~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~315~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~404~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~405~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~406~^0.572^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~410~^0.070^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06465~^~415~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~501~^0.015^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~502~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~503~^0.062^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~504~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~505~^0.087^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~506~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~507~^0.019^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~508~^0.064^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~509~^0.042^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~510~^0.069^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~511~^0.065^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~512~^0.037^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~513~^0.074^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~514~^0.117^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~515~^0.442^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~516~^0.075^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~517~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~518~^0.058^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~606~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~613~^0.170^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~614~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~617~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~618~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~626~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06465~^~645~^0.330^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06465~^~646~^0.200^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~312~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~315~^0.102^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~404~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~405~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~406~^0.417^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~410~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06466~^~415~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~501~^0.011^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~502~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~503~^0.048^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~504~^0.082^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~505~^0.079^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~506~^0.022^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~507~^0.009^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~508~^0.047^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~509~^0.034^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~510~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~511~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~512~^0.028^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~513~^0.073^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~514~^0.108^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~515~^0.322^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~516~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~517~^0.073^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~518~^0.044^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~606~^0.370^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~613~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~614~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~617~^0.460^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~618~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~619~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~626~^0.070^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06466~^~645~^0.550^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06466~^~646~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06468~^~312~^0.055^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~315~^0.188^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06468~^~404~^0.022^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~405~^0.019^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~406~^0.374^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~410~^0.140^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~415~^0.023^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~606~^0.120^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~613~^0.080^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~614~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~617~^0.335^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~618~^0.275^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~619~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~626~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~645~^0.340^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06468~^~646~^0.295^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~312~^0.077^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~315~^0.125^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06471~^~404~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~405~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~406~^0.412^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~410~^0.140^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~415~^0.030^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~606~^0.340^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~612~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~613~^0.185^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~614~^0.115^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~617~^0.280^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~618~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~619~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~626~^0.030^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~645~^0.320^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06471~^~646~^0.045^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~312~^0.067^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~315~^0.138^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06472~^~404~^0.021^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~405~^0.019^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~406~^0.395^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~410~^0.140^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~415~^0.023^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~606~^0.180^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~613~^0.105^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~614~^0.055^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~617~^0.210^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~618~^0.275^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~619~^0.045^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~626~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~645~^0.225^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06472~^~646~^0.320^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~315~^0.006^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06475~^~404~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~405~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~406~^0.049^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~410~^0.004^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~415~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~606~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~611~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~612~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~613~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~614~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~617~^0.029^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~618~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~626~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~645~^0.033^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06475~^~646~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~315~^0.006^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06476~^~404~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~405~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~406~^0.049^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~410~^0.004^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~415~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~606~^0.040^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~611~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~612~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~613~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~614~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~617~^0.029^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~618~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~626~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~645~^0.033^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06476~^~646~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~315~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~404~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~405~^0.007^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~406~^0.041^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~410~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~415~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~606~^0.057^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~613~^0.043^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~614~^0.011^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~617~^0.077^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~618~^0.072^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~619~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~626~^0.010^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~628~^0.002^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~645~^0.089^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06480~^~646~^0.074^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06481~^~312~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~315~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~404~^0.005^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~405~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~406~^0.103^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~410~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~415~^0.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06481~^~606~^0.030^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~613~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~614~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~617~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~618~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~645~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06481~^~646~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~315~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~404~^0.040^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~405~^0.078^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~406~^1.000^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~410~^0.300^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06483~^~606~^1.300^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~610~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~611~^0.520^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~612~^0.210^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~613~^0.290^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~614~^0.190^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~617~^0.410^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~618~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~626~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~06483~^~645~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06483~^~646~^0.160^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06494~^~312~^0.025^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~315~^0.029^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~404~^0.012^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~405~^0.012^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~406~^0.063^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~410~^0.036^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~415~^0.025^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~606~^0.004^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~612~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~613~^0.003^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~614~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~615~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~617~^0.002^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~618~^0.006^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~619~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~645~^0.003^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~646~^0.007^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~653~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~672~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~687~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06494~^~696~^0.000^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~ -~06494~^~697~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~ -~06498~^~312~^0.034^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~315~^0.036^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~404~^0.105^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~405~^0.175^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~406~^0.926^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~410~^0.183^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~415~^0.058^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~606~^0.286^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~607~^0.015^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~608~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~609~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~610~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~611~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~612~^0.046^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~613~^0.123^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~614~^0.055^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~617~^0.207^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~618~^0.047^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~619~^0.016^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~626~^0.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~645~^0.237^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06498~^~646~^0.063^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~ -~06528~^~312~^0.014^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~315~^0.032^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~404~^0.081^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~405~^0.030^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~406~^0.431^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~410~^0.042^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~415~^0.010^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~ -~06528~^~606~^0.122^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~613~^0.090^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~614~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~617~^0.186^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~618~^0.142^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~620~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~626~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~645~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06528~^~646~^0.155^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~06547~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~315~^0.200^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~404~^0.016^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~405~^0.023^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~406~^0.391^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~410~^0.090^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06547~^~606~^0.610^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~612~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~613~^0.310^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~614~^0.230^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~617~^0.440^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~618~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~626~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~645~^0.510^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06547~^~646~^0.050^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~312~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~315~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~404~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~405~^0.046^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~406~^0.668^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~410~^0.100^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06549~^~606~^0.980^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~607~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~611~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~612~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~613~^0.640^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~614~^0.260^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~617~^1.510^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~618~^0.900^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~619~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~626~^0.100^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~628~^0.020^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~645~^1.650^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06549~^~646~^0.950^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~312~^0.052^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~315~^0.104^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~404~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~405~^0.029^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~406~^0.465^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~410~^0.050^0^^~4~^^^^^^^^^^^~02/01/1980~ -~06558~^~415~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~501~^0.009^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~502~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~503~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~504~^0.051^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~505~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~506~^0.012^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~507~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~508~^0.031^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~509~^0.024^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~510~^0.035^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~511~^0.027^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~512~^0.018^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~513~^0.026^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~514~^0.080^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~515~^0.315^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~516~^0.021^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~517~^0.056^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~518~^0.036^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~606~^0.220^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~612~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~613~^0.120^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~614~^0.040^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~617~^0.270^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~618~^0.390^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~619~^0.060^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~626~^0.010^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~645~^0.280^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06558~^~646~^0.450^0^^~1~^^^^^^^^^^^~02/01/1980~ -~06559~^~312~^0.029^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~315~^0.067^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~ -~06559~^~404~^0.020^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~405~^0.007^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~406~^0.420^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~415~^0.042^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~606~^0.056^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~612~^0.006^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~613~^0.039^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~614~^0.011^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~617~^0.039^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~618~^0.064^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~619~^0.012^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~626~^0.007^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~628~^0.013^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~630~^0.008^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06559~^~645~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06559~^~646~^0.077^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~ -~06583~^~312~^0.126^24^0.004^~1~^~A~^^^1^0.100^0.150^5^0.116^0.135^~2, 3~^~04/01/2013~ -~06583~^~315~^0.630^24^0.021^~1~^~A~^^^1^0.486^0.815^6^0.577^0.684^~2, 3~^~04/01/2013~ -~06583~^~404~^0.448^12^0.037^~1~^~A~^^^1^0.310^0.630^2^0.308^0.588^~2, 3~^~04/01/2013~ -~06583~^~405~^0.255^12^0.014^~1~^~A~^^^1^0.210^0.310^2^0.199^0.312^~2, 3~^~04/01/2013~ -~06583~^~406~^5.401^12^0.337^~1~^~A~^^^1^4.620^6.650^2^4.027^6.775^~2, 3~^~04/01/2013~ -~06583~^~410~^0.438^8^0.014^~1~^~A~^^^1^0.410^0.500^2^0.370^0.507^~2, 3~^~04/01/2013~ -~06583~^~415~^0.038^12^0.001^~1~^~A~^^^1^0.037^0.070^2^0.035^0.042^~1, 2, 3~^~04/01/2013~ -~06583~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~606~^8.117^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~609~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.011^6^0.003^0.005^~2, 3~^~04/01/2013~ -~06583~^~610~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.017^6^0.009^0.011^~2, 3~^~04/01/2013~ -~06583~^~611~^0.050^12^0.003^~1~^~A~^^^1^0.038^0.115^6^0.042^0.058^~2, 3~^~04/01/2013~ -~06583~^~612~^0.175^12^0.004^~1~^~A~^^^1^0.159^0.206^3^0.162^0.188^~2, 3~^~04/01/2013~ -~06583~^~613~^7.053^12^0.145^~1~^~A~^^^1^6.590^7.491^2^6.484^7.622^~2, 3~^~04/01/2013~ -~06583~^~614~^0.711^12^0.014^~1~^~A~^^^1^0.664^0.766^3^0.660^0.761^~2, 3~^~04/01/2013~ -~06583~^~615~^0.059^12^0.001^~1~^~A~^^^1^0.054^0.062^2^0.053^0.064^~2, 3~^~04/01/2013~ -~06583~^~617~^6.091^12^0.146^~1~^~AS~^^^1^5.638^6.521^2^5.531^6.651^~2, 3~^~04/01/2013~ -~06583~^~618~^2.128^12^0.028^~1~^~AS~^^^1^2.016^2.221^3^2.030^2.225^~2, 3~^~04/01/2013~ -~06583~^~619~^0.062^12^0.001^~1~^~AS~^^^1^0.058^0.066^3^0.057^0.067^~2, 3~^~04/01/2013~ -~06583~^~620~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.008^3^0.003^0.005^~2, 3~^~04/01/2013~ -~06583~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~624~^0.013^12^0.000^~1~^~A~^^^1^0.012^0.016^3^0.012^0.014^~2, 3~^~04/01/2013~ -~06583~^~625~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06583~^~626~^0.027^12^0.001^~1~^~AS~^^^1^0.024^0.037^2^0.024^0.031^~2, 3~^~04/01/2013~ -~06583~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.004^2^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~06583~^~628~^0.031^12^0.001^~1~^~A~^^^1^0.028^0.037^4^0.029^0.033^~2, 3~^~04/01/2013~ -~06583~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~630~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.004^2^-0.001^0.003^~2, 3~^~04/01/2013~ -~06583~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~645~^6.156^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~646~^2.198^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~652~^0.010^12^0.000^~1~^~A~^^^1^0.009^0.011^4^0.009^0.011^~2, 3~^~04/01/2013~ -~06583~^~653~^0.017^12^0.001^~1~^~A~^^^1^0.015^0.019^2^0.015^0.020^~2, 3~^~04/01/2013~ -~06583~^~654~^0.015^12^0.000^~1~^~A~^^^1^0.014^0.016^3^0.015^0.016^~2, 3~^~04/01/2013~ -~06583~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~663~^0.020^12^0.001^~1~^~A~^^^1^0.016^0.032^5^0.018^0.022^~2, 3~^~04/01/2013~ -~06583~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~665~^0.045^12^0.005^~1~^~A~^^^1^0.030^0.062^3^0.029^0.061^~2, 3~^~04/01/2013~ -~06583~^~670~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.008^3^0.006^0.007^~2, 3~^~04/01/2013~ -~06583~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06583~^~673~^0.027^12^0.001^~1~^~A~^^^1^0.024^0.037^2^0.024^0.031^~2, 3~^~04/01/2013~ -~06583~^~674~^6.072^12^0.145^~1~^~A~^^^1^5.621^6.489^2^5.510^6.633^~2, 3~^~04/01/2013~ -~06583~^~675~^2.076^12^0.028^~1~^~A~^^^1^1.975^2.163^3^1.977^2.176^~2, 3~^~04/01/2013~ -~06583~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~06583~^~685~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~06583~^~687~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^3^0.004^0.006^~2, 3~^~04/01/2013~ -~06583~^~689~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.006^3^0.001^0.003^~2, 3~^~04/01/2013~ -~06583~^~693~^0.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06583~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~851~^0.056^12^0.001^~1~^~A~^^^1^0.053^0.061^3^0.053^0.059^~2, 3~^~04/01/2013~ -~06583~^~852~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06583~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.003^3^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~06583~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06583~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.005^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06584~^~312~^0.030^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~ -~06584~^~404~^0.020^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~405~^0.040^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~406~^0.248^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~415~^0.064^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~606~^1.600^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~607~^0.016^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~608~^0.007^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~609~^0.004^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~610~^0.008^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~611~^0.010^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~612~^0.060^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~613~^0.975^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~614~^0.510^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~617~^1.979^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~618~^1.535^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~619~^0.165^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~626~^0.017^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~628~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~630~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~645~^2.000^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06584~^~646~^1.700^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~ -~06611~^~312~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~05/01/2015~ -~06611~^~315~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~05/01/2015~ -~06611~^~404~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~05/01/2015~ -~06611~^~405~^0.085^2^^~1~^~A~^^^1^0.050^0.120^1^^^^~05/01/2015~ -~06611~^~406~^0.500^2^^~1~^~A~^^^1^0.400^0.600^1^^^^~05/01/2015~ -~06611~^~410~^0.050^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06611~^~415~^0.107^2^^~1~^~A~^^^1^0.075^0.139^1^^^^~05/01/2015~ -~06611~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~606~^0.030^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~610~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~05/01/2015~ -~06611~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~612~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~05/01/2015~ -~06611~^~613~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~05/01/2015~ -~06611~^~614~^0.010^2^^~1~^~A~^^^1^0.009^0.012^1^^^^~05/01/2015~ -~06611~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~617~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~618~^0.002^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~625~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~05/01/2015~ -~06611~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~646~^0.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~05/01/2015~ -~06611~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~663~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~05/01/2015~ -~06611~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~673~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~674~^0.008^2^^~1~^~A~^^^1^0.007^0.010^1^^^^~05/01/2015~ -~06611~^~675~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~05/01/2015~ -~06611~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06611~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06611~^~697~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~05/01/2015~ -~06611~^~851~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06611~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~06615~^~312~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~315~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~05/01/2015~ -~06615~^~405~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2015~ -~06615~^~406~^0.110^3^0.010^~1~^~A~^^^1^0.100^0.130^2^0.067^0.153^~2, 3~^~05/01/2015~ -~06615~^~410~^0.060^2^^~1~^~A~^^^1^0.030^0.090^1^^^~1~^~05/01/2015~ -~06615~^~415~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^~1~^~05/01/2015~ -~06615~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~606~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~613~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~614~^0.011^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~617~^0.006^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~618~^0.004^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~646~^0.004^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~674~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~675~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~06615~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~ -~06615~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~06615~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06615~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~06618~^~312~^0.063^2^^~1~^~A~^^^1^0.061^0.065^1^^^^~04/01/2013~ -~06618~^~315~^0.500^2^^~1~^~A~^^^1^0.498^0.503^1^^^^~04/01/2013~ -~06618~^~404~^0.070^2^^~1~^~A~^^^1^0.070^0.070^^^^^~04/01/2013~ -~06618~^~405~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~04/01/2013~ -~06618~^~406~^1.355^2^^~1~^~A~^^^1^1.340^1.370^1^^^^~04/01/2013~ -~06618~^~410~^0.130^2^^~1~^~A~^^^1^0.120^0.140^1^^^^~04/01/2013~ -~06618~^~415~^0.085^2^^~1~^~A~^^^1^0.080^0.090^1^^^^~04/01/2013~ -~06618~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~606~^3.530^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~607~^0.013^2^^~1~^~A~^^^1^0.000^0.028^1^^^~1~^~04/01/2013~ -~06618~^~608~^0.021^2^^~1~^~A~^^^1^0.021^0.025^1^^^^~04/01/2013~ -~06618~^~609~^0.260^2^^~1~^~A~^^^1^0.258^0.307^1^^^^~04/01/2013~ -~06618~^~610~^0.216^2^^~1~^~A~^^^1^0.215^0.255^1^^^^~04/01/2013~ -~06618~^~611~^1.504^2^^~1~^~A~^^^1^1.496^1.777^1^^^^~04/01/2013~ -~06618~^~612~^0.554^2^^~1~^~A~^^^1^0.550^0.657^1^^^^~04/01/2013~ -~06618~^~613~^0.611^2^^~1~^~A~^^^1^0.632^0.699^1^^^^~04/01/2013~ -~06618~^~614~^0.199^2^^~1~^~A~^^^1^0.204^0.230^1^^^^~04/01/2013~ -~06618~^~615~^0.045^2^^~1~^~A~^^^1^0.048^0.051^1^^^^~04/01/2013~ -~06618~^~617~^1.329^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~618~^1.127^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~624~^0.066^2^^~1~^~A~^^^1^0.070^0.074^1^^^^~04/01/2013~ -~06618~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~628~^0.021^2^^~1~^~A~^^^1^0.022^0.024^1^^^^~04/01/2013~ -~06618~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~645~^1.355^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~646~^1.135^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~04/01/2013~ -~06618~^~653~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~06618~^~654~^0.035^2^^~1~^~A~^^^1^0.038^0.039^1^^^^~04/01/2013~ -~06618~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~665~^0.002^2^^~1~^~A~^^^1^0.001^0.003^1^^^~1~^~04/01/2013~ -~06618~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~673~^0.003^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2013~ -~06618~^~674~^1.329^2^^~1~^~A~^^^1^1.399^1.495^1^^^^~04/01/2013~ -~06618~^~675~^1.125^2^^~1~^~A~^^^1^1.206^1.244^1^^^^~04/01/2013~ -~06618~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~687~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2013~ -~06618~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~06618~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06618~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~851~^0.007^2^^~1~^~A~^^^1^0.008^0.008^^^^^~04/01/2013~ -~06618~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06618~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~06619~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06619~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~605~^0.177^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06620~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06621~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06622~^~606~^0.180^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06623~^~606~^0.180^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06624~^~606~^0.350^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06625~^~606~^0.350^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~ -~06626~^~312~^0.080^3^0.006^~1~^~A~^^^1^0.069^0.087^2^0.056^0.105^~2, 3~^~02/01/2015~ -~06626~^~315~^0.586^3^0.007^~1~^~A~^^^1^0.574^0.599^2^0.555^0.617^~2, 3~^~02/01/2015~ -~06626~^~404~^0.170^3^0.006^~1~^~A~^^^1^0.160^0.180^2^0.145^0.195^~2, 3~^~02/01/2015~ -~06626~^~405~^0.717^3^0.012^~1~^~A~^^^1^0.700^0.740^2^0.665^0.768^~2, 3~^~02/01/2015~ -~06626~^~406~^0.523^3^0.023^~1~^~A~^^^1^0.480^0.560^2^0.423^0.624^~2, 3~^~02/01/2015~ -~06626~^~410~^1.700^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06626~^~415~^0.133^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.104^0.162^~2, 3~^~02/01/2015~ -~06626~^~605~^0.398^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~606~^7.070^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~607~^0.123^2^^~1~^~A~^^^1^0.122^0.123^1^^^^~02/01/2015~ -~06626~^~608~^0.099^2^^~1~^~A~^^^1^0.099^0.099^^^^^~02/01/2015~ -~06626~^~609~^0.060^2^^~1~^~A~^^^1^0.060^0.061^1^^^^~02/01/2015~ -~06626~^~610~^0.153^2^^~1~^~A~^^^1^0.153^0.154^1^^^^~02/01/2015~ -~06626~^~611~^0.178^2^^~1~^~A~^^^1^0.176^0.181^1^^^^~02/01/2015~ -~06626~^~612~^0.579^2^^~1~^~A~^^^1^0.574^0.583^1^^^^~02/01/2015~ -~06626~^~613~^4.168^2^^~1~^~A~^^^1^4.036^4.300^1^^^^~02/01/2015~ -~06626~^~614~^1.326^2^^~1~^~A~^^^1^1.293^1.359^1^^^^~02/01/2015~ -~06626~^~615~^0.166^2^^~1~^~A~^^^1^0.164^0.168^1^^^^~02/01/2015~ -~06626~^~617~^21.437^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~618~^4.880^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~619~^1.534^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~620~^0.095^2^^~1~^~A~^^^1^0.094^0.096^1^^^^~02/01/2015~ -~06626~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06626~^~624~^0.066^2^^~1~^~A~^^^1^0.064^0.068^1^^^^~02/01/2015~ -~06626~^~625~^0.058^2^^~1~^~A~^^^1^0.058^0.059^1^^^^~02/01/2015~ -~06626~^~626~^0.310^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06626~^~628~^0.288^2^^~1~^~A~^^^1^0.285^0.292^1^^^^~02/01/2015~ -~06626~^~629~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~02/01/2015~ -~06626~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~631~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~02/01/2015~ -~06626~^~645~^22.155^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~646~^6.546^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~652~^0.065^2^^~1~^~A~^^^1^0.065^0.066^1^^^^~02/01/2015~ -~06626~^~653~^0.052^2^^~1~^~A~^^^1^0.052^0.053^1^^^^~02/01/2015~ -~06626~^~654~^0.035^2^^~1~^~A~^^^1^0.034^0.035^1^^^^~02/01/2015~ -~06626~^~662~^0.018^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~02/01/2015~ -~06626~^~663~^0.116^2^^~1~^~A~^^^1^0.116^0.117^1^^^^~02/01/2015~ -~06626~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06626~^~665~^0.056^2^^~1~^~A~^^^1^0.052^0.059^1^^^^~02/01/2015~ -~06626~^~670~^0.041^2^^~1~^~A~^^^1^0.040^0.042^1^^^^~02/01/2015~ -~06626~^~671~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2015~ -~06626~^~672~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2015~ -~06626~^~673~^0.291^2^^~1~^~A~^^^1^0.285^0.298^1^^^^~02/01/2015~ -~06626~^~674~^21.320^2^^~1~^~A~^^^1^21.158^21.483^1^^^^~02/01/2015~ -~06626~^~675~^4.783^2^^~1~^~A~^^^1^4.489^5.078^1^^^^~02/01/2015~ -~06626~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~02/01/2015~ -~06626~^~685~^0.058^2^^~1~^~A~^^^1^0.054^0.061^1^^^^~02/01/2015~ -~06626~^~687~^0.036^2^^~1~^~A~^^^1^0.036^0.037^1^^^^~02/01/2015~ -~06626~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06626~^~693~^0.135^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~695~^0.263^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06626~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06626~^~851~^1.268^2^^~1~^~A~^^^1^1.265^1.272^1^^^^~02/01/2015~ -~06626~^~852~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~02/01/2015~ -~06626~^~853~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~02/01/2015~ -~06626~^~856~^0.208^2^^~1~^~A~^^^1^0.206^0.210^1^^^^~02/01/2015~ -~06626~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06627~^~312~^0.145^12^0.032^~1~^~A~^^^1^0.072^0.446^11^0.073^0.216^~2, 3~^~02/01/2015~ -~06627~^~315~^0.633^12^0.091^~1~^~A~^^^1^0.314^1.240^11^0.433^0.833^~2, 3~^~02/01/2015~ -~06627~^~404~^0.093^6^0.002^~1~^~A~^^^1^0.090^0.100^5^0.088^0.099^~2, 3~^~02/01/2015~ -~06627~^~405~^0.307^6^0.016^~1~^~A~^^^1^0.260^0.360^5^0.265^0.348^~2, 3~^~02/01/2015~ -~06627~^~406~^0.738^6^0.065^~1~^~A~^^^1^0.560^0.940^5^0.570^0.906^~2, 3~^~02/01/2015~ -~06627~^~410~^0.255^4^0.018^~1~^~A~^^^1^0.210^0.290^3^0.196^0.314^~2, 3~^~02/01/2015~ -~06627~^~415~^0.178^6^0.040^~1~^~A~^^^1^0.070^0.280^5^0.075^0.282^~2, 3~^~02/01/2015~ -~06627~^~605~^0.194^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~606~^7.362^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~607~^0.054^4^0.006^~1~^~A~^^^1^0.039^0.068^3^0.034^0.074^~2, 3~^~02/01/2015~ -~06627~^~608~^0.043^4^0.005^~1~^~A~^^^1^0.032^0.054^3^0.028^0.058^~2, 3~^~02/01/2015~ -~06627~^~609~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.036^3^0.016^0.038^~2, 3~^~02/01/2015~ -~06627~^~610~^0.065^4^0.007^~1~^~A~^^^1^0.049^0.081^3^0.043^0.086^~2, 3~^~02/01/2015~ -~06627~^~611~^0.075^4^0.008^~1~^~A~^^^1^0.058^0.094^3^0.051^0.099^~2, 3~^~02/01/2015~ -~06627~^~612~^0.262^4^0.025^~1~^~A~^^^1^0.209^0.328^3^0.181^0.343^~2, 3~^~02/01/2015~ -~06627~^~613~^5.058^4^0.437^~1~^~A~^^^1^4.241^6.222^3^3.667^6.449^~2, 3~^~02/01/2015~ -~06627~^~614~^1.425^4^0.086^~1~^~A~^^^1^1.217^1.624^3^1.151^1.700^~2, 3~^~02/01/2015~ -~06627~^~615~^0.158^4^0.025^~1~^~A~^^^1^0.108^0.212^3^0.079^0.237^~2, 3~^~02/01/2015~ -~06627~^~617~^18.731^4^5.264^~1~^~AS~^^^1^9.300^29.344^3^1.980^35.483^~2, 3~^~02/01/2015~ -~06627~^~618~^11.804^4^2.454^~1~^~AS~^^^1^7.018^16.638^3^3.996^19.613^~2, 3~^~02/01/2015~ -~06627~^~619~^1.865^4^0.309^~1~^~AS~^^^1^1.248^2.471^3^0.880^2.850^~2, 3~^~02/01/2015~ -~06627~^~620~^0.050^4^0.029^~1~^~A~^^^1^0.000^0.100^3^-0.042^0.141^~1, 2, 3~^~02/01/2015~ -~06627~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~624~^0.083^4^0.009^~1~^~A~^^^1^0.065^0.106^3^0.055^0.112^~2, 3~^~02/01/2015~ -~06627~^~625~^0.025^4^0.003^~1~^~A~^^^1^0.019^0.032^3^0.016^0.034^~2, 3~^~02/01/2015~ -~06627~^~626~^0.329^4^0.111^~1~^~AS~^^^1^0.140^0.586^3^-0.025^0.682^~2, 3~^~02/01/2015~ -~06627~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~628~^0.213^4^0.025^~1~^~A~^^^1^0.164^0.268^3^0.135^0.292^~2, 3~^~02/01/2015~ -~06627~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~02/01/2015~ -~06627~^~630~^0.009^4^0.003^~1~^~AS~^^^1^0.003^0.015^3^-0.001^0.019^~2, 3~^~02/01/2015~ -~06627~^~631~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~02/01/2015~ -~06627~^~645~^19.351^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~646~^13.740^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~652~^0.030^4^0.003^~1~^~A~^^^1^0.024^0.037^3^0.021^0.040^~2, 3~^~02/01/2015~ -~06627~^~653~^0.045^4^0.001^~1~^~A~^^^1^0.042^0.048^3^0.041^0.049^~2, 3~^~02/01/2015~ -~06627~^~654~^0.036^4^0.003^~1~^~A~^^^1^0.029^0.041^3^0.028^0.044^~2, 3~^~02/01/2015~ -~06627~^~662~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~02/01/2015~ -~06627~^~663~^0.077^4^0.009^~1~^~A~^^^1^0.053^0.090^3^0.049^0.105^~2, 3~^~02/01/2015~ -~06627~^~664~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~02/01/2015~ -~06627~^~665~^0.054^4^0.011^~1~^~A~^^^1^0.034^0.078^3^0.018^0.090^~2, 3~^~02/01/2015~ -~06627~^~670~^0.028^4^0.001^~1~^~A~^^^1^0.026^0.030^3^0.025^0.030^~2, 3~^~02/01/2015~ -~06627~^~671~^0.009^4^0.005^~1~^~A~^^^1^0.000^0.019^3^-0.008^0.026^~1, 2, 3~^~02/01/2015~ -~06627~^~672~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.018^3^0.012^0.019^~2, 3~^~02/01/2015~ -~06627~^~673~^0.321^4^0.110^~1~^~A~^^^1^0.134^0.577^3^-0.031^0.672^~2, 3~^~02/01/2015~ -~06627~^~674~^18.654^4^5.260^~1~^~A~^^^1^9.247^29.254^3^1.915^35.394^~2, 3~^~02/01/2015~ -~06627~^~675~^11.722^4^2.442^~1~^~A~^^^1^6.955^16.530^3^3.952^19.493^~2, 3~^~02/01/2015~ -~06627~^~676~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.015^3^-0.006^0.021^~1, 2, 3~^~02/01/2015~ -~06627~^~685~^0.065^4^0.022^~1~^~A~^^^1^0.023^0.106^3^-0.005^0.134^~2, 3~^~02/01/2015~ -~06627~^~687~^0.035^4^0.007^~1~^~A~^^^1^0.023^0.051^3^0.013^0.057^~2, 3~^~02/01/2015~ -~06627~^~689~^0.004^4^0.001^~1~^~AS~^^^1^0.001^0.007^3^-0.001^0.008^~2, 3~^~02/01/2015~ -~06627~^~693~^0.087^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~695~^0.107^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06627~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06627~^~851~^1.747^4^0.318^~1~^~A~^^^1^1.125^2.365^3^0.737^2.758^~2, 3~^~02/01/2015~ -~06627~^~852~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~02/01/2015~ -~06627~^~853~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.005^~1, 2, 3~^~02/01/2015~ -~06627~^~856~^0.053^4^0.031^~1~^~A~^^^1^0.000^0.112^3^-0.045^0.151^~1, 2, 3~^~02/01/2015~ -~06627~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06628~^~312~^0.080^3^0.006^~1~^~A~^^^1^0.069^0.087^2^0.056^0.105^~2, 3~^~02/01/2015~ -~06628~^~315~^0.586^3^0.007^~1~^~A~^^^1^0.574^0.599^2^0.555^0.617^~2, 3~^~02/01/2015~ -~06628~^~404~^0.170^3^0.006^~1~^~A~^^^1^0.160^0.180^2^0.145^0.195^~2, 3~^~02/01/2015~ -~06628~^~405~^0.717^3^0.012^~1~^~A~^^^1^0.700^0.740^2^0.665^0.768^~2, 3~^~02/01/2015~ -~06628~^~406~^0.523^3^0.023^~1~^~A~^^^1^0.480^0.560^2^0.423^0.624^~2, 3~^~02/01/2015~ -~06628~^~410~^1.700^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06628~^~415~^0.133^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.104^0.162^~2, 3~^~02/01/2015~ -~06628~^~605~^0.398^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~606~^7.070^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~607~^0.123^2^^~1~^~A~^^^1^0.122^0.123^1^^^^~02/01/2015~ -~06628~^~608~^0.099^2^^~1~^~A~^^^1^0.099^0.099^^^^^~02/01/2015~ -~06628~^~609~^0.060^2^^~1~^~A~^^^1^0.060^0.061^1^^^^~02/01/2015~ -~06628~^~610~^0.153^2^^~1~^~A~^^^1^0.153^0.154^1^^^^~02/01/2015~ -~06628~^~611~^0.178^2^^~1~^~A~^^^1^0.176^0.181^1^^^^~02/01/2015~ -~06628~^~612~^0.579^2^^~1~^~A~^^^1^0.574^0.583^1^^^^~02/01/2015~ -~06628~^~613~^4.168^2^^~1~^~A~^^^1^4.036^4.300^1^^^^~02/01/2015~ -~06628~^~614~^1.326^2^^~1~^~A~^^^1^1.293^1.359^1^^^^~02/01/2015~ -~06628~^~615~^0.166^2^^~1~^~A~^^^1^0.164^0.168^1^^^^~02/01/2015~ -~06628~^~617~^21.437^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~618~^4.880^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~619~^1.534^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~620~^0.095^2^^~1~^~A~^^^1^0.094^0.096^1^^^^~02/01/2015~ -~06628~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06628~^~624~^0.066^2^^~1~^~A~^^^1^0.064^0.068^1^^^^~02/01/2015~ -~06628~^~625~^0.058^2^^~1~^~A~^^^1^0.058^0.059^1^^^^~02/01/2015~ -~06628~^~626~^0.310^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06628~^~628~^0.288^2^^~1~^~A~^^^1^0.285^0.292^1^^^^~02/01/2015~ -~06628~^~629~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~02/01/2015~ -~06628~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~631~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~02/01/2015~ -~06628~^~645~^22.155^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~646~^6.546^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~652~^0.065^2^^~1~^~A~^^^1^0.065^0.066^1^^^^~02/01/2015~ -~06628~^~653~^0.052^2^^~1~^~A~^^^1^0.052^0.053^1^^^^~02/01/2015~ -~06628~^~654~^0.035^2^^~1~^~A~^^^1^0.034^0.035^1^^^^~02/01/2015~ -~06628~^~662~^0.018^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~02/01/2015~ -~06628~^~663~^0.116^2^^~1~^~A~^^^1^0.116^0.117^1^^^^~02/01/2015~ -~06628~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06628~^~665~^0.056^2^^~1~^~A~^^^1^0.052^0.059^1^^^^~02/01/2015~ -~06628~^~670~^0.041^2^^~1~^~A~^^^1^0.040^0.042^1^^^^~02/01/2015~ -~06628~^~671~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2015~ -~06628~^~672~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2015~ -~06628~^~673~^0.291^2^^~1~^~A~^^^1^0.285^0.298^1^^^^~02/01/2015~ -~06628~^~674~^21.320^2^^~1~^~A~^^^1^21.158^21.483^1^^^^~02/01/2015~ -~06628~^~675~^4.783^2^^~1~^~A~^^^1^4.489^5.078^1^^^^~02/01/2015~ -~06628~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~02/01/2015~ -~06628~^~685~^0.058^2^^~1~^~A~^^^1^0.054^0.061^1^^^^~02/01/2015~ -~06628~^~687~^0.036^2^^~1~^~A~^^^1^0.036^0.037^1^^^^~02/01/2015~ -~06628~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06628~^~693~^0.135^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~695~^0.263^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06628~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06628~^~851~^1.268^2^^~1~^~A~^^^1^1.265^1.272^1^^^^~02/01/2015~ -~06628~^~852~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~02/01/2015~ -~06628~^~853~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~02/01/2015~ -~06628~^~856~^0.208^2^^~1~^~A~^^^1^0.206^0.210^1^^^^~02/01/2015~ -~06628~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~312~^0.079^6^0.003^~1~^~A~^^^1^0.072^0.090^5^0.072^0.085^~2, 3~^~02/01/2015~ -~06629~^~315~^0.370^6^0.028^~1~^~A~^^^1^0.314^0.488^5^0.297^0.443^~2, 3~^~02/01/2015~ -~06629~^~404~^0.097^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.082^0.111^~2, 3~^~02/01/2015~ -~06629~^~405~^0.273^3^0.009^~1~^~A~^^^1^0.260^0.290^2^0.235^0.311^~2, 3~^~02/01/2015~ -~06629~^~406~^0.877^3^0.041^~1~^~A~^^^1^0.800^0.940^2^0.700^1.053^~2, 3~^~02/01/2015~ -~06629~^~410~^0.285^2^^~1~^~A~^^^1^0.280^0.290^1^^^^~02/01/2015~ -~06629~^~415~^0.267^3^0.009^~1~^~A~^^^1^0.250^0.280^2^0.229^0.305^~2, 3~^~02/01/2015~ -~06629~^~605~^0.155^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~606~^6.718^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~607~^0.045^2^^~1~^~A~^^^1^0.039^0.050^1^^^^~02/01/2015~ -~06629~^~608~^0.036^2^^~1~^~A~^^^1^0.032^0.039^1^^^^~02/01/2015~ -~06629~^~609~^0.022^2^^~1~^~A~^^^1^0.020^0.024^1^^^^~02/01/2015~ -~06629~^~610~^0.055^2^^~1~^~A~^^^1^0.049^0.061^1^^^^~02/01/2015~ -~06629~^~611~^0.063^2^^~1~^~A~^^^1^0.058^0.069^1^^^^~02/01/2015~ -~06629~^~612~^0.224^2^^~1~^~A~^^^1^0.209^0.240^1^^^^~02/01/2015~ -~06629~^~613~^4.401^2^^~1~^~A~^^^1^4.241^4.561^1^^^^~02/01/2015~ -~06629~^~614~^1.556^2^^~1~^~A~^^^1^1.488^1.624^1^^^^~02/01/2015~ -~06629~^~615~^0.116^2^^~1~^~A~^^^1^0.108^0.124^1^^^^~02/01/2015~ -~06629~^~617~^9.686^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~618~^16.011^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~619~^2.395^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~624~^0.097^2^^~1~^~A~^^^1^0.088^0.106^1^^^^~02/01/2015~ -~06629~^~625~^0.020^2^^~1~^~A~^^^1^0.019^0.022^1^^^^~02/01/2015~ -~06629~^~626~^0.143^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~628~^0.172^2^^~1~^~A~^^^1^0.164^0.180^1^^^^~02/01/2015~ -~06629~^~629~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~02/01/2015~ -~06629~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~645~^10.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~646~^18.425^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~652~^0.026^2^^~1~^~A~^^^1^0.024^0.027^1^^^^~02/01/2015~ -~06629~^~653~^0.044^2^^~1~^~A~^^^1^0.044^0.045^1^^^^~02/01/2015~ -~06629~^~654~^0.033^2^^~1~^~A~^^^1^0.029^0.038^1^^^^~02/01/2015~ -~06629~^~662~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~02/01/2015~ -~06629~^~663~^0.071^2^^~1~^~A~^^^1^0.053^0.090^1^^^^~02/01/2015~ -~06629~^~664~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~02/01/2015~ -~06629~^~665~^0.073^2^^~1~^~A~^^^1^0.069^0.078^1^^^^~02/01/2015~ -~06629~^~670~^0.029^2^^~1~^~A~^^^1^0.028^0.030^1^^^^~02/01/2015~ -~06629~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~672~^0.014^2^^~1~^~A~^^^1^0.013^0.014^1^^^^~02/01/2015~ -~06629~^~673~^0.136^2^^~1~^~A~^^^1^0.134^0.139^1^^^^~02/01/2015~ -~06629~^~674~^9.614^2^^~1~^~A~^^^1^9.247^9.982^1^^^^~02/01/2015~ -~06629~^~675~^15.908^2^^~1~^~A~^^^1^15.287^16.530^1^^^^~02/01/2015~ -~06629~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~685~^0.102^2^^~1~^~A~^^^1^0.099^0.106^1^^^^~02/01/2015~ -~06629~^~687~^0.024^2^^~1~^~A~^^^1^0.023^0.024^1^^^^~02/01/2015~ -~06629~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06629~^~693~^0.082^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06629~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~851~^2.293^2^^~1~^~A~^^^1^2.220^2.365^1^^^^~02/01/2015~ -~06629~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~02/01/2015~ -~06629~^~853~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~02/01/2015~ -~06629~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06629~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~312~^0.118^3^0.002^~1~^~A~^^^1^0.114^0.120^2^0.110^0.126^~2, 3~^~02/01/2015~ -~06630~^~315~^0.765^3^0.027^~1~^~A~^^^1^0.711^0.794^2^0.649^0.880^~2, 3~^~02/01/2015~ -~06630~^~404~^0.090^3^0.000^~1~^~A~^^^1^0.090^0.090^^^^~2, 3~^~02/01/2015~ -~06630~^~405~^0.340^3^0.012^~1~^~A~^^^1^0.320^0.360^2^0.290^0.390^~2, 3~^~02/01/2015~ -~06630~^~406~^0.600^3^0.023^~1~^~A~^^^1^0.560^0.640^2^0.501^0.699^~2, 3~^~02/01/2015~ -~06630~^~410~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06630~^~415~^0.090^3^0.015^~1~^~A~^^^1^0.070^0.120^2^0.024^0.156^~2, 3~^~02/01/2015~ -~06630~^~605~^0.232^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~606~^8.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~607~^0.064^2^^~1~^~A~^^^1^0.060^0.068^1^^^^~02/01/2015~ -~06630~^~608~^0.050^2^^~1~^~A~^^^1^0.047^0.054^1^^^^~02/01/2015~ -~06630~^~609~^0.032^2^^~1~^~A~^^^1^0.028^0.036^1^^^^~02/01/2015~ -~06630~^~610~^0.075^2^^~1~^~A~^^^1^0.069^0.081^1^^^^~02/01/2015~ -~06630~^~611~^0.086^2^^~1~^~A~^^^1^0.079^0.094^1^^^^~02/01/2015~ -~06630~^~612~^0.301^2^^~1~^~A~^^^1^0.273^0.328^1^^^^~02/01/2015~ -~06630~^~613~^5.716^2^^~1~^~A~^^^1^5.209^6.222^1^^^^~02/01/2015~ -~06630~^~614~^1.295^2^^~1~^~A~^^^1^1.217^1.373^1^^^^~02/01/2015~ -~06630~^~615~^0.200^2^^~1~^~A~^^^1^0.188^0.212^1^^^^~02/01/2015~ -~06630~^~617~^27.777^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~618~^7.598^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~619~^1.335^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~620~^0.099^2^^~1~^~A~^^^1^0.099^0.100^1^^^^~02/01/2015~ -~06630~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~624~^0.070^2^^~1~^~A~^^^1^0.065^0.075^1^^^^~02/01/2015~ -~06630~^~625~^0.030^2^^~1~^~A~^^^1^0.027^0.032^1^^^^~02/01/2015~ -~06630~^~626~^0.514^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~628~^0.254^2^^~1~^~A~^^^1^0.241^0.268^1^^^^~02/01/2015~ -~06630~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~630~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~631~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2015~ -~06630~^~645~^28.654^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~646~^9.056^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~652~^0.035^2^^~1~^~A~^^^1^0.033^0.037^1^^^^~02/01/2015~ -~06630~^~653~^0.045^2^^~1~^~A~^^^1^0.042^0.048^1^^^^~02/01/2015~ -~06630~^~654~^0.038^2^^~1~^~A~^^^1^0.036^0.041^1^^^^~02/01/2015~ -~06630~^~662~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~02/01/2015~ -~06630~^~663~^0.083^2^^~1~^~A~^^^1^0.075^0.090^1^^^^~02/01/2015~ -~06630~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~665~^0.035^2^^~1~^~A~^^^1^0.034^0.036^1^^^^~02/01/2015~ -~06630~^~670~^0.027^2^^~1~^~A~^^^1^0.026^0.027^1^^^^~02/01/2015~ -~06630~^~671~^0.018^2^^~1~^~A~^^^1^0.017^0.019^1^^^^~02/01/2015~ -~06630~^~672~^0.017^2^^~1~^~A~^^^1^0.016^0.018^1^^^^~02/01/2015~ -~06630~^~673~^0.505^2^^~1~^~A~^^^1^0.434^0.577^1^^^^~02/01/2015~ -~06630~^~674~^27.694^2^^~1~^~A~^^^1^26.135^29.254^1^^^^~02/01/2015~ -~06630~^~675~^7.536^2^^~1~^~A~^^^1^6.955^8.118^1^^^^~02/01/2015~ -~06630~^~676~^0.014^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~02/01/2015~ -~06630~^~685~^0.027^2^^~1~^~A~^^^1^0.023^0.031^1^^^^~02/01/2015~ -~06630~^~687~^0.046^2^^~1~^~A~^^^1^0.042^0.051^1^^^^~02/01/2015~ -~06630~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~06630~^~693~^0.091^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~695~^0.141^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06630~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06630~^~851~^1.202^2^^~1~^~A~^^^1^1.125^1.280^1^^^^~02/01/2015~ -~06630~^~852~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~02/01/2015~ -~06630~^~853~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~02/01/2015~ -~06630~^~856~^0.106^2^^~1~^~A~^^^1^0.100^0.112^1^^^^~02/01/2015~ -~06630~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~06631~^~312~^0.060^9^0.003^~1~^~A~^^^1^0.050^0.081^8^0.052^0.068^~2, 3~^~02/01/2015~ -~06631~^~315~^0.146^9^0.015^~1~^~A~^^^1^0.100^0.218^8^0.112^0.181^~2, 3~^~02/01/2015~ -~06631~^~404~^0.077^6^0.009^~1~^~A~^^^1^0.060^0.110^5^0.053^0.100^~2, 3~^~02/01/2015~ -~06631~^~405~^0.222^6^0.011^~1~^~A~^^^1^0.200^0.270^5^0.194^0.249^~2, 3~^~02/01/2015~ -~06631~^~406~^1.248^6^0.086^~1~^~A~^^^1^0.950^1.480^5^1.026^1.470^~2, 3~^~02/01/2015~ -~06631~^~410~^0.380^4^0.009^~1~^~A~^^^1^0.360^0.400^3^0.351^0.409^~2, 3~^~02/01/2015~ -~06631~^~415~^0.455^4^0.012^~1~^~A~^^^1^0.420^0.470^3^0.417^0.493^~2, 3~^~02/01/2015~ -~06632~^~312~^0.058^3^0.001^~1~^~A~^^^1^0.057^0.060^2^0.054^0.063^~2, 3~^~02/01/2015~ -~06632~^~315~^0.182^3^0.009^~1~^~A~^^^1^0.165^0.194^2^0.144^0.220^~2, 3~^~02/01/2015~ -~06632~^~404~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~02/01/2015~ -~06632~^~405~^0.245^2^^~1~^~A~^^^1^0.220^0.270^1^^^^~02/01/2015~ -~06632~^~406~^1.125^2^^~1~^~A~^^^1^1.100^1.150^1^^^^~02/01/2015~ -~06632~^~410~^0.365^2^^~1~^~A~^^^1^0.360^0.370^1^^^^~02/01/2015~ -~06632~^~415~^0.470^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~06633~^~312~^0.062^5^0.006^~1~^~A~^^^1^0.050^0.081^4^0.046^0.079^~2, 3~^~02/01/2015~ -~06633~^~315~^0.111^5^0.004^~1~^~A~^^^1^0.100^0.127^4^0.098^0.123^~2, 3~^~02/01/2015~ -~06633~^~404~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^^^^~2, 3~^~02/01/2015~ -~06633~^~405~^0.213^3^0.009^~1~^~A~^^^1^0.200^0.230^2^0.175^0.251^~2, 3~^~02/01/2015~ -~06633~^~406~^1.430^3^0.026^~1~^~A~^^^1^1.390^1.480^2^1.316^1.544^~2, 3~^~02/01/2015~ -~06633~^~410~^0.395^2^^~1~^~A~^^^1^0.390^0.400^1^^^^~02/01/2015~ -~06633~^~415~^0.465^2^^~1~^~A~^^^1^0.460^0.470^1^^^^~02/01/2015~ -~06700~^~312~^0.009^10^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~315~^0.006^10^0.001^~1~^~A~^^^1^0.005^0.012^9^0.005^0.008^~1, 2, 3~^~04/01/2015~ -~06700~^~404~^0.023^6^0.003^~1~^~A~^^^1^0.020^0.040^5^0.015^0.032^~2, 3~^~04/01/2015~ -~06700~^~405~^0.022^6^0.004^~1~^~A~^^^1^0.015^0.040^5^0.010^0.033^~1, 2, 3~^~04/01/2015~ -~06700~^~406~^0.110^6^0.010^~1~^~A~^^^1^0.070^0.130^5^0.084^0.136^~2, 3~^~04/01/2015~ -~06700~^~410~^0.060^4^0.017^~1~^~A~^^^1^0.030^0.090^3^0.004^0.115^~1, 2, 3~^~04/01/2015~ -~06700~^~415~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2015~ -~06700~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~610~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~04/01/2015~ -~06700~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~612~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2015~ -~06700~^~613~^0.012^2^^~1~^~A~^^^1^0.011^0.014^1^^^^~04/01/2015~ -~06700~^~614~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~04/01/2015~ -~06700~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~617~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~618~^0.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~646~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~652~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2015~ -~06700~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~673~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~674~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~04/01/2015~ -~06700~^~675~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2015~ -~06700~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~06700~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06700~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~851~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06700~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~06720~^~312~^0.085^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~315~^0.052^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~404~^0.211^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~405~^0.678^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~406~^2.399^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~410~^1.499^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~415~^0.182^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~ -~06720~^~606~^8.440^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06720~^~607~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~608~^0.127^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~609~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~610~^0.245^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~611~^0.332^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~612~^1.179^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~613~^3.858^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~614~^2.096^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~617~^6.497^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~618~^0.825^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~619~^0.134^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06720~^~626~^0.196^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06720~^~628~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06720~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06720~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~06720~^~645~^6.868^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06720~^~646~^0.983^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~06725~^~606~^1.750^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~645~^1.270^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06725~^~646~^1.900^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~606~^0.601^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~645~^0.747^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06731~^~646~^0.446^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~606~^0.221^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~645~^0.223^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06742~^~646~^0.112^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~06749~^~312~^0.026^10^0.001^~1~^~A~^^^1^0.025^0.027^1^0.013^0.039^~4~^~02/01/2011~ -~06749~^~315~^0.067^10^0.008^~1~^~A~^^^1^0.056^0.070^1^-0.032^0.166^~4~^~02/01/2013~ -~06749~^~404~^0.015^10^0.000^~1~^~A~^^^1^0.015^0.015^1^0.015^0.015^~1, 4~^~02/01/2011~ -~06749~^~405~^0.016^15^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~1, 4~^~02/01/2013~ -~06749~^~406~^0.978^10^0.062^~1~^~A~^^^1^0.894^1.002^1^0.192^1.765^~4~^~02/01/2013~ -~06749~^~415~^0.126^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~606~^0.407^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~611~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~612~^0.030^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~613~^0.242^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~614~^0.133^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~617~^0.271^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~618~^0.300^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~619~^0.022^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~620~^0.013^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~626~^0.024^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~631~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~ -~06749~^~645~^0.296^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06749~^~646~^0.342^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~06930~^~312~^0.018^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~315~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~404~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~405~^0.114^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~406~^0.024^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~410~^0.125^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~415~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~606~^6.010^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~ -~06930~^~607~^0.265^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~608~^0.134^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~609~^0.071^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~610~^0.152^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~611~^0.137^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~612~^0.857^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~613~^3.167^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~614~^1.195^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~617~^3.437^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~618~^2.369^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~619~^0.230^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~626~^0.264^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~645~^3.823^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06930~^~646~^2.599^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~ -~06931~^~312~^0.082^36^0.002^~1~^~A~^^^1^0.039^0.103^17^0.078^0.087^~2, 3~^~04/01/2015~ -~06931~^~315~^0.127^36^0.002^~1~^~A~^^^1^0.094^0.188^21^0.123^0.132^~2, 3~^~04/01/2015~ -~06931~^~404~^0.024^5^0.002^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~405~^0.061^6^0.005^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~406~^3.917^5^1.255^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~410~^0.076^6^0.008^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~415~^0.173^6^0.023^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~06931~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~606~^0.218^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~607~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.004^9^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~06931~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~609~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.002^5^0.002^0.002^~2, 3~^~01/01/2011~ -~06931~^~610~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.004^9^0.003^0.003^~2, 3~^~01/01/2011~ -~06931~^~611~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.002^9^0.001^0.002^~2, 3~^~04/01/2015~ -~06931~^~612~^0.003^18^0.000^~1~^~A~^^^1^0.001^0.005^6^0.002^0.003^~2, 3~^~04/01/2015~ -~06931~^~613~^0.141^18^0.002^~1~^~A~^^^1^0.045^0.200^7^0.137^0.146^~2, 3~^~04/01/2015~ -~06931~^~614~^0.053^18^0.001^~1~^~A~^^^1^0.014^0.076^8^0.051^0.054^~2, 3~^~04/01/2015~ -~06931~^~615~^0.004^18^0.000^~1~^~A~^^^1^0.001^0.007^5^0.004^0.005^~2, 3~^~04/01/2015~ -~06931~^~617~^0.288^18^0.005^~1~^~AS~^^^1^0.058^0.651^9^0.278^0.298^~2, 3~^~04/01/2015~ -~06931~^~618~^0.591^18^0.009^~1~^~AS~^^^1^0.157^0.852^6^0.569^0.612^~2, 3~^~04/01/2015~ -~06931~^~619~^0.082^18^0.002^~1~^~AS~^^^1^0.025^0.115^8^0.078^0.085^~2, 3~^~04/01/2015~ -~06931~^~620~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~04/01/2015~ -~06931~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~624~^0.004^18^0.000^~1~^~A~^^^1^0.001^0.007^7^0.003^0.005^~2, 3~^~01/01/2011~ -~06931~^~625~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~626~^0.003^18^0.000^~1~^~AS~^^^1^0.000^0.004^5^0.003^0.003^~2, 3~^~01/01/2011~ -~06931~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~628~^0.006^18^0.000^~1~^~A~^^^1^0.002^0.016^7^0.006^0.007^~2, 3~^~04/01/2015~ -~06931~^~629~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~630~^0.000^18^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.001^~2, 3~^~01/01/2011~ -~06931~^~631~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~645~^0.298^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~646~^0.673^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~652~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~01/01/2011~ -~06931~^~653~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2015~ -~06931~^~654~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.003^8^0.002^0.002^~2, 3~^~01/01/2011~ -~06931~^~662~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~663~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.001^~1, 2, 3~^~01/01/2011~ -~06931~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~01/01/2011~ -~06931~^~665~^0.006^18^0.000^~1~^~A~^^^1^0.001^0.010^6^0.005^0.007^~2, 3~^~04/01/2015~ -~06931~^~670~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~01/01/2011~ -~06931~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~01/01/2011~ -~06931~^~672~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~673~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.004^5^0.003^0.003^~1, 2, 3~^~01/01/2011~ -~06931~^~674~^0.287^18^0.004^~1~^~A~^^^1^0.058^0.650^9^0.277^0.297^~2, 3~^~04/01/2015~ -~06931~^~675~^0.584^18^0.009^~1~^~A~^^^1^0.155^0.841^6^0.562^0.605^~2, 3~^~04/01/2015~ -~06931~^~676~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~01/01/2011~ -~06931~^~685~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~687~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.001^~1, 2, 3~^~01/01/2011~ -~06931~^~689~^0.000^18^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~06931~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~06931~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~06931~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~851~^0.082^18^0.002^~1~^~A~^^^1^0.025^0.115^8^0.078^0.085^~2, 3~^~04/01/2015~ -~06931~^~852~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~853~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~06931~^~858~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~01/01/2011~ -~06955~^~312~^0.034^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~315~^0.055^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~404~^0.005^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~405~^0.022^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~406~^0.637^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~410~^0.040^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~415~^0.012^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~606~^0.500^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06955~^~607~^0.015^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~608~^0.009^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~609~^0.005^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~610~^0.011^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~612~^0.051^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~613~^0.267^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~614~^0.115^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~617~^0.369^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~618~^0.232^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~619~^0.017^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~620~^0.006^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~626~^0.028^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~631~^0.001^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~ -~06955~^~645~^0.400^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06955~^~646~^0.400^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~ -~06956~^~312~^0.159^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~404~^0.039^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~405~^0.063^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~406~^1.032^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~415~^0.086^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~606~^0.155^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~607~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~608~^0.005^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~609~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~610~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~611~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~612~^0.013^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~613~^0.089^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~614~^0.025^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~617~^0.087^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~618~^0.146^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~619~^0.028^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~620~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~621~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~626~^0.015^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~627~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~628~^0.031^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~629~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~630~^0.018^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~631~^0.000^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~645~^0.179^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06956~^~646~^0.189^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~ -~06957~^~312~^0.149^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~315~^0.202^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~404~^0.236^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~405~^0.473^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~406~^2.261^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~410~^1.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~415~^0.282^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06957~^~606~^5.866^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~611~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~612~^0.401^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~613~^3.024^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~614~^2.179^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~617~^5.045^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~618~^0.448^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~619~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~626~^0.326^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~628~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~645~^5.488^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06957~^~646~^0.499^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~312~^0.146^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~315~^0.154^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~404~^0.187^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~405~^0.514^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~406~^1.075^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~410~^1.218^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~415~^0.138^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06958~^~606~^4.880^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~611~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~612~^0.451^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~613~^4.031^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~614~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~617~^3.102^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~618~^0.870^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~619~^0.068^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~626~^0.389^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~628~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~645~^3.659^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06958~^~646~^0.938^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~312~^0.169^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~315~^0.186^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~404~^0.130^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~405~^0.264^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~406~^1.181^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~410~^0.630^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~415~^0.205^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06959~^~606~^4.931^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~607~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~608~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~609~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~610~^0.049^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~611~^0.072^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~612~^0.322^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~613~^3.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~614~^1.234^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~617~^4.744^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~618~^4.023^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~619~^0.426^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~626~^0.349^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~627~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~628~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~630~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~645~^5.250^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06959~^~646~^4.478^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~06960~^~312~^0.064^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~315~^0.056^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~404~^0.156^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~405~^0.054^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~406~^2.070^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~410~^1.044^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~415~^0.134^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~606~^13.180^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~06960~^~607~^0.692^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~608~^0.289^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~609~^0.158^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~610~^0.381^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~611~^0.492^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~612~^1.692^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~613~^6.418^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~614~^2.680^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~617~^13.006^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~618~^7.845^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~619~^0.745^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~626~^0.399^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~645~^13.669^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06960~^~646~^8.610^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~06961~^~312~^0.087^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~404~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~405~^0.090^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~406~^0.600^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06961~^~415~^0.140^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~606~^0.080^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~612~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~613~^0.065^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~614~^0.013^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~617~^0.403^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~618~^0.069^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~619~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~626~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~628~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~645~^0.411^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06961~^~646~^0.074^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~312~^0.087^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~404~^0.030^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~405~^0.030^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~406~^0.700^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06962~^~415~^0.140^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~606~^0.013^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~613~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~614~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~617~^0.067^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~618~^0.012^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~619~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~626~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~645~^0.068^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06962~^~646~^0.012^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06963~^~312~^0.051^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~404~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~405~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~406~^1.370^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~415~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~606~^0.133^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06963~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~612~^0.022^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~613~^0.089^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~614~^0.022^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~617~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~618~^0.006^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~619~^0.006^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~620~^0.019^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~621~^0.101^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~626~^0.026^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~628~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~629~^0.095^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~630~^0.008^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~631~^0.018^0^^~4~^^^^^^^^^^^~03/01/2009~ -~06963~^~645~^0.108^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06963~^~646~^0.245^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~06964~^~312~^0.083^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~315~^0.058^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~404~^0.019^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~405~^0.031^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~406~^0.505^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~415~^0.042^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~606~^0.076^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~607~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~608~^0.002^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~609~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~610~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~611~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~612~^0.006^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~613~^0.044^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~614~^0.012^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~617~^0.043^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~618~^0.071^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~619~^0.014^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~620~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~621~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~626~^0.007^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~627~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~628~^0.015^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~629~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~630~^0.009^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~631~^0.000^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~645~^0.088^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06964~^~646~^0.093^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~ -~06965~^~312~^0.146^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~404~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~405~^0.025^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~406~^0.462^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~415~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~606~^0.524^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~607~^0.024^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~608~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~609~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~610~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~611~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~612~^0.073^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~613~^0.235^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~614~^0.117^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~617~^0.348^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~618~^0.127^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~619~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~626~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~645~^0.372^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06965~^~646~^0.142^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~ -~06966~^~312~^0.064^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~315~^0.051^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~404~^0.055^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~405~^0.045^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~406~^0.540^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~410~^0.074^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~415~^0.020^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~605~^0.003^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~606~^0.262^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~611~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~613~^0.196^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~614~^0.053^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~615~^0.003^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~617~^0.340^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~618~^0.240^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~619~^0.018^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~620~^0.004^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~624~^0.002^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~625~^0.002^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~626~^0.052^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~628~^0.008^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~630~^0.004^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~645~^0.418^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~646~^0.264^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06966~^~652~^0.001^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~653~^0.002^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~654~^0.001^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~672~^0.002^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~687~^0.008^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~689~^0.001^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06966~^~697~^0.004^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~ -~06967~^~312~^0.121^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~315~^0.125^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~404~^0.055^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~405~^0.046^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~406~^0.770^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~410~^0.173^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~415~^0.084^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~606~^0.074^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~612~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~613~^0.057^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~614~^0.015^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~617~^0.101^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~618~^0.190^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~619~^0.012^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~626~^0.001^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~645~^0.102^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06967~^~646~^0.202^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~ -~06968~^~312~^0.051^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~404~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~405~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~406~^0.300^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~415~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~606~^1.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~608~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~609~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~610~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~611~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~612~^0.070^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~613~^0.724^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~614~^0.131^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~617~^0.664^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~618~^1.719^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~619~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~626~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~645~^0.704^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06968~^~646~^1.739^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~312~^0.250^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~404~^0.110^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~405~^0.220^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~406~^4.270^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~415~^0.160^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~606~^0.613^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~607~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~608~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~609~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~610~^0.006^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~611~^0.019^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~612~^0.015^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~613~^0.349^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~614~^0.082^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~617~^1.141^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~618~^0.966^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~619~^0.054^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~626~^0.009^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~628~^0.032^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~645~^1.185^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06969~^~646~^1.025^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~312~^0.051^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~405~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~406~^1.370^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~415~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~606~^0.179^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~612~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~613~^0.137^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~614~^0.032^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~617~^0.232^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~618~^0.116^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~619~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~626~^0.032^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~628~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~645~^0.274^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06970~^~646~^0.126^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~312~^0.200^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~404~^0.070^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~405~^0.130^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~406~^0.700^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06971~^~606~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~06971~^~645~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06971~^~646~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~312~^0.130^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~404~^0.090^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~405~^0.070^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~406~^1.600^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~06972~^~415~^0.160^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~06972~^~606~^0.045^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~611~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~612~^0.006^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~613~^0.027^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~614~^0.009^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~617~^0.036^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~618~^0.142^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~619~^0.012^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~626~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~645~^0.038^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06972~^~646~^0.154^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~312~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~404~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~405~^0.070^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~406~^1.370^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~415~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~606~^0.597^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~612~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~613~^0.438^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~614~^0.119^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~617~^0.746^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~618~^0.388^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~619~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~626~^0.119^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~628~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~645~^0.895^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06974~^~646~^0.418^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06976~^~312~^0.081^36^0.003^~1~^~A~^^^1^0.039^0.103^35^0.075^0.087^~4~^~05/01/2011~ -~06976~^~315~^0.137^36^0.004^~1~^~A~^^^1^0.094^0.188^35^0.129^0.146^~4~^~05/01/2011~ -~06976~^~404~^0.024^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~405~^0.061^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~406~^3.917^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~415~^0.173^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~ -~06976~^~606~^0.170^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~06976~^~607~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^17^0.001^0.003^~1, 4~^~05/01/2011~ -~06976~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~609~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.002^17^0.002^0.002^~4~^~05/01/2011~ -~06976~^~610~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.004^17^0.003^0.003^~4~^~05/01/2011~ -~06976~^~611~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.002^17^0.001^0.002^~4~^~05/01/2011~ -~06976~^~612~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.005^17^0.002^0.003^~4~^~05/01/2011~ -~06976~^~613~^0.107^18^0.015^~1~^~A~^^^1^0.045^0.200^17^0.074^0.140^~4~^~05/01/2011~ -~06976~^~614~^0.039^18^0.006^~1~^~A~^^^1^0.014^0.076^17^0.027^0.052^~4~^~05/01/2011~ -~06976~^~615~^0.005^18^0.001^~1~^~A~^^^1^0.001^0.007^17^0.004^0.006^~4~^~05/01/2011~ -~06976~^~617~^0.365^18^0.051^~1~^~AS~^^^1^0.058^0.651^17^0.257^0.473^~4~^~05/01/2011~ -~06976~^~618~^0.429^18^0.070^~1~^~AS~^^^1^0.157^0.852^17^0.281^0.577^~4~^~05/01/2011~ -~06976~^~619~^0.079^18^0.008^~1~^~AS~^^^1^0.025^0.115^17^0.062^0.095^~4~^~05/01/2011~ -~06976~^~620~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^17^0.000^0.001^~1, 4~^~05/01/2011~ -~06976~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~624~^0.004^18^0.000^~1~^~A~^^^1^0.001^0.007^17^0.003^0.004^~4~^~05/01/2011~ -~06976~^~625~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~626~^0.003^18^0.000^~1~^~AS~^^^1^0.000^0.004^17^0.002^0.003^~4~^~05/01/2011~ -~06976~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~628~^0.008^18^0.001^~1~^~A~^^^1^0.002^0.016^17^0.006^0.011^~4~^~05/01/2011~ -~06976~^~629~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~630~^0.000^18^0.000^~1~^~AS~^^^1^0.000^0.002^17^0.000^0.000^~4~^~05/01/2011~ -~06976~^~631~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06976~^~645~^0.377^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~06976~^~646~^0.508^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~06976~^~654~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.003^17^0.002^0.002^~4~^~05/01/2011~ -~06976~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^17^0.000^0.000^~1, 4~^~05/01/2011~ -~06977~^~312~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~404~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~405~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~406~^0.660^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~415~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~606~^1.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~610~^0.007^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~611~^0.008^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~612~^0.076^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~613~^0.583^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~614~^0.288^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~617~^0.917^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~618~^0.063^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~619~^0.026^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~620~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~626~^0.102^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~628~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~645~^1.068^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06977~^~646~^0.095^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~312~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~404~^0.040^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~405~^0.110^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06978~^~406~^1.130^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~415~^0.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~606~^1.621^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~608~^0.009^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~609~^0.116^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~610~^0.094^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~611~^0.692^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~612~^0.281^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~613~^0.295^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~614~^0.132^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~617~^0.367^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~618~^0.062^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~619~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~620~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~626~^0.025^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~645~^0.394^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06978~^~646~^0.068^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~312~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~404~^0.040^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~405~^0.090^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~406~^0.100^1^^~1~^^^^^^^^^^^~05/01/2005~ -~06980~^~415~^0.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~606~^2.324^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~607~^0.082^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~608~^0.048^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~609~^0.028^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~610~^0.066^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~611~^0.073^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~612~^0.307^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~613~^1.123^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~614~^0.541^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~617~^1.388^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~618~^0.193^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~619~^0.047^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~620~^0.006^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~626~^0.127^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~645~^1.556^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06980~^~646~^0.246^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~404~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~405~^0.430^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~406~^2.460^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~415~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~606~^3.433^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~612~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~613~^2.563^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~614~^0.661^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~617~^4.645^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~618~^4.324^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~619~^0.130^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~620~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~626~^0.561^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~628~^0.110^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~645~^5.365^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06981~^~646~^4.485^0^^~4~^^^^^^^^^^^~05/01/2005~ -~06982~^~312~^0.122^12^0.002^~1~^~A~^^^1^0.110^0.150^8^0.118^0.126^~2, 3~^~04/01/2013~ -~06982~^~315~^0.644^12^0.013^~1~^~A~^^^1^0.550^0.815^7^0.613^0.675^~2, 3~^~04/01/2013~ -~06982~^~404~^0.479^6^0.022^~1~^~A~^^^1^0.420^0.630^4^0.415^0.542^~2, 3~^~04/01/2013~ -~06982~^~405~^0.258^6^0.005^~1~^~A~^^^1^0.240^0.290^2^0.240^0.277^~2, 3~^~04/01/2013~ -~06982~^~406~^5.139^6^0.127^~1~^~A~^^^1^4.720^5.790^2^4.645^5.634^~2, 3~^~04/01/2013~ -~06982~^~410~^0.448^4^0.021^~1~^~A~^^^1^0.420^0.500^1^0.312^0.585^~2, 3~^~04/01/2013~ -~06982~^~415~^0.037^6^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~605~^0.069^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~606~^8.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~609~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.011^4^0.003^0.008^~2, 3~^~04/01/2013~ -~06982~^~610~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.017^4^0.008^0.015^~2, 3~^~04/01/2013~ -~06982~^~611~^0.055^6^0.007^~1~^~A~^^^1^0.038^0.115^4^0.035^0.076^~2, 3~^~04/01/2013~ -~06982~^~612~^0.178^6^0.005^~1~^~A~^^^1^0.165^0.206^3^0.163^0.193^~2, 3~^~04/01/2013~ -~06982~^~613~^7.071^6^0.094^~1~^~A~^^^1^6.853^7.491^3^6.748^7.393^~2, 3~^~04/01/2013~ -~06982~^~614~^0.721^6^0.014^~1~^~A~^^^1^0.694^0.766^2^0.671^0.771^~2, 3~^~04/01/2013~ -~06982~^~615~^0.059^6^0.001^~1~^~A~^^^1^0.056^0.062^2^0.054^0.065^~2, 3~^~04/01/2013~ -~06982~^~617~^6.124^6^0.106^~1~^~AS~^^^1^5.906^6.521^2^5.736^6.511^~2, 3~^~04/01/2013~ -~06982~^~618~^2.121^6^0.030^~1~^~AS~^^^1^2.053^2.186^2^1.996^2.247^~2, 3~^~04/01/2013~ -~06982~^~619~^0.062^6^0.001^~1~^~AS~^^^1^0.059^0.065^2^0.056^0.067^~2, 3~^~04/01/2013~ -~06982~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.005^~2, 3~^~04/01/2013~ -~06982~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~624~^0.013^6^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.018^~2, 3~^~04/01/2013~ -~06982~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~06982~^~626~^0.027^6^0.000^~1~^~AS~^^^1^0.026^0.028^3^0.026^0.028^~2, 3~^~04/01/2013~ -~06982~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~628~^0.032^6^0.001^~1~^~A~^^^1^0.028^0.037^3^0.027^0.036^~2, 3~^~04/01/2013~ -~06982~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.004^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~06982~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~645~^6.189^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~646~^2.191^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~652~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.008^0.012^~2, 3~^~04/01/2013~ -~06982~^~653~^0.018^6^0.000^~1~^~A~^^^1^0.017^0.019^2^0.017^0.019^~2, 3~^~04/01/2013~ -~06982~^~654~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~04/01/2013~ -~06982~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~663~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.032^3^0.017^0.029^~2, 3~^~04/01/2013~ -~06982~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~665~^0.046^6^0.006^~1~^~A~^^^1^0.032^0.058^2^0.022^0.069^~2, 3~^~04/01/2013~ -~06982~^~670~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^2^0.005^0.007^~2, 3~^~04/01/2013~ -~06982~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~672~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~06982~^~673~^0.027^6^0.000^~1~^~A~^^^1^0.026^0.028^3^0.026^0.028^~2, 3~^~04/01/2013~ -~06982~^~674~^6.100^6^0.104^~1~^~A~^^^1^5.887^6.489^2^5.719^6.482^~2, 3~^~04/01/2013~ -~06982~^~675~^2.070^6^0.026^~1~^~A~^^^1^2.013^2.128^2^1.960^2.180^~2, 3~^~04/01/2013~ -~06982~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06982~^~685~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.007^3^0.006^0.007^~2, 3~^~04/01/2013~ -~06982~^~687~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.007^2^0.005^0.007^~2, 3~^~04/01/2013~ -~06982~^~689~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.006^3^-0.001^0.005^~2, 3~^~04/01/2013~ -~06982~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06982~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~851~^0.055^6^0.001^~1~^~A~^^^1^0.053^0.059^3^0.051^0.059^~2, 3~^~04/01/2013~ -~06982~^~852~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2013~ -~06982~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~06982~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06982~^~858~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.007^~1, 2, 3~^~04/01/2013~ -~06983~^~312~^0.128^12^0.006^~1~^~A~^^^1^0.100^0.150^5^0.113^0.142^~2, 3~^~04/01/2013~ -~06983~^~315~^0.625^12^0.031^~1~^~A~^^^1^0.486^0.785^5^0.544^0.705^~2, 3~^~04/01/2013~ -~06983~^~404~^0.433^6^0.054^~1~^~A~^^^1^0.310^0.620^2^0.215^0.651^~2, 3~^~04/01/2013~ -~06983~^~405~^0.254^6^0.020^~1~^~A~^^^1^0.210^0.310^2^0.168^0.339^~2, 3~^~04/01/2013~ -~06983~^~406~^5.536^6^0.499^~1~^~A~^^^1^4.620^6.650^2^3.449^7.623^~2, 3~^~04/01/2013~ -~06983~^~410~^0.434^4^0.018^~1~^~A~^^^1^0.410^0.480^1^0.226^0.641^~2, 3~^~04/01/2013~ -~06983~^~415~^0.039^6^0.001^~1~^~A~^^^1^0.037^0.070^2^0.034^0.045^~1, 2, 3~^~04/01/2013~ -~06983~^~605~^0.063^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~606~^8.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~609~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.003^0.005^~2, 3~^~04/01/2013~ -~06983~^~610~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.011^3^0.007^0.011^~2, 3~^~04/01/2013~ -~06983~^~611~^0.047^6^0.003^~1~^~A~^^^1^0.040^0.056^2^0.034^0.061^~2, 3~^~04/01/2013~ -~06983~^~612~^0.174^6^0.006^~1~^~A~^^^1^0.159^0.181^2^0.150^0.197^~2, 3~^~04/01/2013~ -~06983~^~613~^7.042^6^0.212^~1~^~A~^^^1^6.590^7.439^2^6.142^7.942^~2, 3~^~04/01/2013~ -~06983~^~614~^0.705^6^0.020^~1~^~A~^^^1^0.664^0.739^2^0.621^0.789^~2, 3~^~04/01/2013~ -~06983~^~615~^0.058^6^0.002^~1~^~A~^^^1^0.054^0.062^2^0.049^0.067^~2, 3~^~04/01/2013~ -~06983~^~617~^6.074^6^0.211^~1~^~AS~^^^1^5.638^6.438^2^5.174^6.973^~2, 3~^~04/01/2013~ -~06983~^~618~^2.130^6^0.039^~1~^~AS~^^^1^2.016^2.221^2^1.965^2.296^~2, 3~^~04/01/2013~ -~06983~^~619~^0.062^6^0.002^~1~^~AS~^^^1^0.058^0.066^2^0.054^0.071^~2, 3~^~04/01/2013~ -~06983~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.008^3^0.003^0.005^~2, 3~^~04/01/2013~ -~06983~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~624~^0.013^6^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2013~ -~06983~^~625~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~06983~^~626~^0.028^6^0.001^~1~^~AS~^^^1^0.024^0.037^2^0.022^0.033^~2, 3~^~04/01/2013~ -~06983~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~06983~^~628~^0.030^6^0.001^~1~^~A~^^^1^0.029^0.035^2^0.027^0.034^~2, 3~^~04/01/2013~ -~06983~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.001^0.004^~2, 3~^~04/01/2013~ -~06983~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~645~^6.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~646~^2.201^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~652~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.009^0.011^~2, 3~^~04/01/2013~ -~06983~^~653~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.019^2^0.013^0.022^~2, 3~^~04/01/2013~ -~06983~^~654~^0.015^6^0.000^~1~^~A~^^^1^0.014^0.016^2^0.014^0.017^~2, 3~^~04/01/2013~ -~06983~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~663~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.029^3^0.015^0.021^~2, 3~^~04/01/2013~ -~06983~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~665~^0.045^6^0.007^~1~^~A~^^^1^0.030^0.062^2^0.017^0.072^~2, 3~^~04/01/2013~ -~06983~^~670~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^2^0.005^0.007^~2, 3~^~04/01/2013~ -~06983~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~06983~^~673~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.037^2^0.022^0.033^~2, 3~^~04/01/2013~ -~06983~^~674~^6.056^6^0.211^~1~^~A~^^^1^5.621^6.422^2^5.156^6.955^~2, 3~^~04/01/2013~ -~06983~^~675~^2.079^6^0.039^~1~^~A~^^^1^1.975^2.163^2^1.914^2.245^~2, 3~^~04/01/2013~ -~06983~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~06983~^~685~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.007^2^0.004^0.009^~2, 3~^~04/01/2013~ -~06983~^~687~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~06983~^~689~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.005^2^0.002^0.003^~2, 3~^~04/01/2013~ -~06983~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~06983~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~851~^0.056^6^0.001^~1~^~A~^^^1^0.053^0.061^2^0.050^0.062^~2, 3~^~04/01/2013~ -~06983~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~06983~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~06983~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06983~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~06985~^~312~^0.019^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~315~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~404~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~405~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~406~^0.172^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~410~^0.086^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~415~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~502~^0.029^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~503~^0.031^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~504~^0.060^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~505~^0.048^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~508~^0.034^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~510~^0.038^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~511~^0.055^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~513~^0.062^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~514~^0.067^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~515~^0.437^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~516~^0.097^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~517~^0.081^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~518~^0.041^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~521~^0.036^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~06985~^~606~^0.400^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06985~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~612~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~613~^0.224^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~614~^0.134^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~615~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~617~^0.384^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~618~^0.042^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~619~^0.003^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~626~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~645~^0.432^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06985~^~646~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~06985~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~687~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06985~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~06985~^~851~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~06999~^~312~^0.018^6^0.000^~1~^~A~^^^1^0.018^0.018^5^0.018^0.018^~1, 2, 3~^~02/01/2015~ -~06999~^~315~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.031^5^0.018^0.027^~2, 3~^~02/01/2015~ -~06999~^~404~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~02/01/2015~ -~06999~^~405~^0.047^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.032^0.061^~2, 3~^~02/01/2015~ -~06999~^~406~^0.297^3^0.009^~1~^~A~^^^1^0.280^0.310^2^0.259^0.335^~2, 3~^~02/01/2015~ -~06999~^~410~^0.170^2^^~1~^~A~^^^1^0.170^0.170^^^^^~02/01/2015~ -~06999~^~415~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.015^0.025^~2, 3~^~02/01/2015~ -~06999~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~606~^0.603^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~611~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~06999~^~612~^0.014^6^0.003^~1~^~A~^^^1^0.007^0.026^5^0.007^0.021^~2, 3~^~02/01/2015~ -~06999~^~613~^0.463^6^0.109^~1~^~A~^^^1^0.190^0.927^5^0.183^0.744^~2, 3~^~02/01/2015~ -~06999~^~614~^0.117^6^0.026^~1~^~A~^^^1^0.057^0.230^5^0.050^0.185^~2, 3~^~02/01/2015~ -~06999~^~615~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~06999~^~617~^0.737^6^0.172^~1~^~AS~^^^1^0.319^1.464^5^0.294^1.180^~2, 3~^~02/01/2015~ -~06999~^~618~^0.337^6^0.081^~1~^~AS~^^^1^0.130^0.675^5^0.130^0.545^~2, 3~^~02/01/2015~ -~06999~^~619~^0.015^6^0.004^~1~^~AS~^^^1^0.006^0.030^5^0.006^0.024^~2, 3~^~02/01/2015~ -~06999~^~620~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.001^0.007^~1, 2, 3~^~02/01/2015~ -~06999~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~625~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.001^0.006^~1, 2, 3~^~02/01/2015~ -~06999~^~626~^0.111^6^0.028^~1~^~AS~^^^1^0.040^0.227^5^0.040^0.182^~2, 3~^~02/01/2015~ -~06999~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~628~^0.009^6^0.003^~1~^~A~^^^1^0.002^0.020^5^0.002^0.016^~1, 2, 3~^~02/01/2015~ -~06999~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2015~ -~06999~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~645~^0.862^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~646~^0.361^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~02/01/2015~ -~06999~^~653~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.001^0.004^~1, 2, 3~^~02/01/2015~ -~06999~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~02/01/2015~ -~06999~^~663~^0.011^6^0.003^~1~^~A~^^^1^0.003^0.025^5^0.003^0.019^~2, 3~^~02/01/2015~ -~06999~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~665~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~06999~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~02/01/2015~ -~06999~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~672~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~02/01/2015~ -~06999~^~673~^0.111^6^0.027^~1~^~A~^^^1^0.040^0.225^5^0.040^0.181^~2, 3~^~02/01/2015~ -~06999~^~674~^0.726^6^0.173^~1~^~A~^^^1^0.294^1.450^5^0.283^1.170^~2, 3~^~02/01/2015~ -~06999~^~675~^0.336^6^0.080^~1~^~A~^^^1^0.130^0.670^5^0.131^0.542^~2, 3~^~02/01/2015~ -~06999~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~687~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~02/01/2015~ -~06999~^~689~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.005^5^0.000^0.004^~2, 3~^~02/01/2015~ -~06999~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~06999~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~851~^0.015^6^0.004^~1~^~A~^^^1^0.006^0.030^5^0.006^0.024^~2, 3~^~02/01/2015~ -~06999~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~853~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.004^~1, 2, 3~^~02/01/2015~ -~06999~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~06999~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~02/01/2015~ -~07001~^~312~^0.070^5^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~315~^0.040^5^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~404~^0.360^5^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~405~^0.248^5^0.013^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~406~^2.266^5^0.197^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~410~^1.570^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~415~^0.260^5^0.030^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~501~^0.171^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~502~^0.684^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~503~^0.732^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~504~^1.283^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~505~^1.319^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~506~^0.395^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~507~^0.196^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~508~^0.640^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~509~^0.539^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~510~^0.795^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~511~^0.972^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~512~^0.517^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~513~^0.886^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~514~^1.399^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~515~^2.522^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~516~^0.837^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~517~^0.914^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~518~^0.677^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~606~^3.170^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~610~^0.040^5^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~611~^0.020^5^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~612~^0.140^5^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~613~^1.890^5^0.246^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~614~^1.090^5^0.134^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~617~^3.800^5^0.491^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~618~^0.720^5^0.056^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~619~^0.090^5^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~626~^0.350^5^0.033^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07001~^~645~^4.140^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07001~^~646~^0.810^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07002~^~312~^0.103^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~315~^0.155^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~404~^0.246^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~405~^0.173^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~406~^2.975^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~410~^0.297^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~415~^0.230^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~606~^8.438^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~610~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~611~^0.024^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~612~^0.691^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~613~^4.961^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~614~^2.669^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~617~^9.191^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~618~^1.837^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~619~^0.154^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~620~^0.065^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~626~^0.683^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~628~^0.171^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~630~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~ -~07002~^~645~^10.105^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07002~^~646~^2.080^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~07003~^~312~^0.050^5^0.018^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~315~^0.032^3^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~404~^0.554^5^0.034^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~405~^0.192^5^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~406~^3.254^5^0.307^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~410~^0.490^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~415~^0.350^5^0.083^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~501~^0.112^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~502~^0.565^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~503~^0.485^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~504~^0.943^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~505~^1.032^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~506~^0.355^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~507~^0.107^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~508~^0.451^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~509~^0.403^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~510~^0.510^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~511~^0.809^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~512~^0.419^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~513~^0.770^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~514~^1.198^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~515~^2.141^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~516~^0.781^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~517~^0.640^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~518~^0.569^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~606~^6.280^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~610~^0.090^4^0.017^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~611~^0.090^4^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~612~^0.270^5^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~613~^3.890^5^0.180^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~614~^1.940^5^0.080^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~617~^8.210^5^0.429^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~618~^1.940^5^0.106^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~619~^0.420^5^0.059^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~626~^0.770^5^0.045^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07003~^~645~^8.980^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07003~^~646~^2.360^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07004~^~312~^0.080^3^0.021^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~315~^0.041^3^0.012^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~404~^0.380^3^0.023^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~405~^0.213^3^0.009^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~406~^3.110^3^0.274^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~410~^0.690^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~415~^0.200^3^0.013^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~501~^0.107^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~502~^0.465^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~503~^0.485^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~504~^0.810^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~505~^0.903^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~506~^0.364^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~507~^0.105^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~508~^0.405^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~509~^0.386^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~510~^0.464^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~511~^0.765^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~512~^0.395^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~513~^0.774^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~514~^1.136^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~515~^1.994^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~516~^0.857^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~517~^0.673^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~518~^0.510^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07004~^~606~^6.080^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~607~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~608~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~609~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~610~^0.020^3^0.003^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~611~^0.010^3^0.000^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~612~^0.220^3^0.017^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~613~^3.690^3^0.107^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~614~^2.140^3^0.019^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~617~^7.340^3^0.185^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~618~^1.400^3^0.052^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~619~^0.180^3^0.005^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~620~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~621~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~626~^0.660^3^0.053^~1~^^^^^^^^^^^~07/01/2002~ -~07004~^~627~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~628~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~629~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~630~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~631~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07004~^~645~^8.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07004~^~646~^1.580^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07005~^~312~^0.040^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~315~^0.010^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~404~^0.070^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~405~^0.130^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~406~^1.200^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~410~^0.600^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~501~^0.180^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~502~^0.570^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~503~^0.320^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~504~^1.390^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~505~^1.050^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~506~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~507~^0.180^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~508~^0.820^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~509~^0.340^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~510~^1.020^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~511~^0.680^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~512~^0.710^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~513~^1.050^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~514~^1.350^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~515~^2.120^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~516~^0.910^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~517~^1.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~518~^0.680^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07005~^~606~^13.400^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~608~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~609~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~610~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~611~^0.030^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~612~^0.620^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~613~^8.300^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~614~^4.410^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~617~^15.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~618~^3.200^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~619~^0.260^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~626~^0.880^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~645~^15.900^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07005~^~646~^3.460^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07006~^~312~^0.100^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~315~^0.171^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~404~^0.193^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~405~^0.233^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~406~^5.616^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~410~^0.891^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~415~^0.378^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~501~^0.153^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~502~^0.613^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~503~^0.677^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~504~^1.107^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~505~^1.166^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~506~^0.333^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~507~^0.161^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~508~^0.556^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~509~^0.452^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~510~^0.767^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~511~^0.820^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~512~^0.513^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~513~^0.813^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~514~^1.214^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~515~^2.176^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~516~^0.690^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~517~^0.576^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~518~^0.534^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~606~^10.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07006~^~607~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~608~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~609~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~610~^0.031^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~611~^0.061^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~612~^0.485^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~613~^6.099^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~614~^3.562^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~617~^12.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~618~^2.084^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~619~^0.184^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~620~^0.060^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~626~^0.929^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~628~^0.196^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~ -~07006~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~ -~07006~^~645~^13.138^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07006~^~646~^2.328^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07007~^~312~^0.053^11^0.001^~1~^~A~^^^1^0.025^0.078^5^0.051^0.056^~2, 3~^~04/01/2012~ -~07007~^~315~^0.040^11^0.000^~1~^~A~^^^1^0.011^0.055^5^0.040^0.041^~1, 2, 3~^~04/01/2012~ -~07007~^~404~^0.030^6^0.000^~1~^~A~^^^1^0.019^0.037^^^^~2, 3~^~05/01/2012~ -~07007~^~405~^0.065^6^0.000^~1~^~A~^^^1^0.050^0.080^^^^~2, 3~^~04/01/2012~ -~07007~^~406~^2.321^6^0.007^~1~^~A~^^^1^2.090^2.480^2^2.292^2.349^~2, 3~^~04/01/2012~ -~07007~^~410~^0.385^4^0.002^~1~^~A~^^^1^0.320^0.420^1^0.364^0.406^~2, 3~^~04/01/2012~ -~07007~^~415~^0.157^6^0.001^~1~^~A~^^^1^0.121^0.182^2^0.155^0.160^~2, 3~^~04/01/2012~ -~07007~^~501~^0.122^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~502~^0.514^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~503~^0.508^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~504~^0.940^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~505~^1.045^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~506~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~507~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~508~^0.437^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~509~^0.406^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~510~^0.545^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~511~^0.743^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~512~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~513~^0.676^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~514~^1.063^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~515~^1.783^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~516~^0.537^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~517~^0.489^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~518~^0.449^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07007~^~521~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~ -~07007~^~605~^1.370^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~606~^10.487^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~607~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.002^~1, 2, 3~^~05/01/2012~ -~07007~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~04/01/2012~ -~07007~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.000^0.002^~1, 2, 3~^~05/01/2012~ -~07007~^~610~^0.031^6^0.000^~1~^~A~^^^1^0.023^0.045^2^0.029^0.032^~2, 3~^~04/01/2012~ -~07007~^~611~^0.020^6^0.000^~1~^~A~^^^1^0.017^0.025^2^0.019^0.021^~2, 3~^~04/01/2012~ -~07007~^~612~^0.820^6^0.021^~1~^~A~^^^1^0.691^1.166^2^0.730^0.909^~2, 3~^~04/01/2012~ -~07007~^~613~^5.887^6^0.059^~1~^~A~^^^1^5.394^6.820^2^5.633^6.142^~2, 3~^~04/01/2012~ -~07007~^~614~^3.293^6^0.037^~1~^~A~^^^1^2.943^3.623^2^3.135^3.451^~2, 3~^~04/01/2012~ -~07007~^~615~^0.026^6^0.000^~1~^~A~^^^1^0.023^0.027^2^0.025^0.028^~2, 3~^~04/01/2012~ -~07007~^~617~^10.429^6^0.123^~1~^~AS~^^^1^9.422^12.627^2^9.898^10.960^~2, 3~^~04/01/2012~ -~07007~^~618~^0.981^6^0.010^~1~^~AS~^^^1^0.887^1.097^2^0.940^1.022^~2, 3~^~04/01/2012~ -~07007~^~619~^0.101^6^0.001^~1~^~AS~^^^1^0.066^0.132^2^0.098^0.104^~2, 3~^~04/01/2012~ -~07007~^~620~^0.033^6^0.000^~1~^~A~^^^1^0.029^0.038^2^0.032^0.034^~2, 3~^~04/01/2012~ -~07007~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~07007~^~624~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.008^2^0.004^0.007^~2, 3~^~04/01/2012~ -~07007~^~625~^0.246^6^0.003^~1~^~A~^^^1^0.201^0.306^2^0.232^0.260^~2, 3~^~04/01/2012~ -~07007~^~626~^1.109^6^0.013^~1~^~AS~^^^1^0.974^1.244^2^1.054^1.164^~2, 3~^~04/01/2012~ -~07007~^~627~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^^^^~2, 3~^~04/01/2012~ -~07007~^~628~^0.107^6^0.001^~1~^~A~^^^1^0.071^0.124^2^0.104^0.109^~2, 3~^~04/01/2012~ -~07007~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.006^2^0.004^0.004^~1, 2, 3~^~04/01/2012~ -~07007~^~630~^0.087^6^0.001^~1~^~AS~^^^1^0.000^0.157^2^0.084^0.089^~2, 3~^~04/01/2012~ -~07007~^~631~^0.013^6^0.000^~1~^~A~^^^1^0.008^0.016^2^0.013^0.014^~2, 3~^~04/01/2012~ -~07007~^~645~^12.198^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~646~^1.182^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~652~^0.122^6^0.001^~1~^~A~^^^1^0.103^0.150^2^0.116^0.127^~2, 3~^~04/01/2012~ -~07007~^~653~^0.278^6^0.003^~1~^~A~^^^1^0.232^0.342^2^0.264^0.292^~2, 3~^~04/01/2012~ -~07007~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.001^0.003^~1, 2, 3~^~04/01/2012~ -~07007~^~662~^0.078^6^0.000^~1~^~A~^^^1^0.073^0.083^2^0.076^0.080^~2, 3~^~04/01/2012~ -~07007~^~663~^1.130^6^0.035^~1~^~A~^^^1^0.774^1.775^2^0.978^1.283^~2, 3~^~04/01/2012~ -~07007~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~07007~^~665~^0.161^6^0.003^~1~^~A~^^^1^0.109^0.193^2^0.150^0.172^~2, 3~^~04/01/2012~ -~07007~^~670~^0.160^6^0.002^~1~^~A~^^^1^0.135^0.214^2^0.152^0.167^~2, 3~^~04/01/2012~ -~07007~^~671~^0.005^6^0.000^~1~^~A~^^^1^0.000^0.011^2^0.004^0.007^~1, 2, 3~^~04/01/2012~ -~07007~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^2^0.009^0.009^~2, 3~^~04/01/2012~ -~07007~^~673~^1.031^6^0.012^~1~^~A~^^^1^0.898^1.165^2^0.978^1.084^~2, 3~^~04/01/2012~ -~07007~^~674~^9.299^6^0.108^~1~^~A~^^^1^8.493^11.003^2^8.835^9.763^~2, 3~^~04/01/2012~ -~07007~^~675~^0.660^6^0.007^~1~^~A~^^^1^0.585^0.760^2^0.632^0.689^~2, 3~^~04/01/2012~ -~07007~^~676~^0.087^6^0.001^~1~^~A~^^^1^0.000^0.157^2^0.084^0.089^~1, 2, 3~^~04/01/2012~ -~07007~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.009^2^0.002^0.006^~1, 2, 3~^~04/01/2012~ -~07007~^~687~^0.211^6^0.003^~1~^~A~^^^1^0.188^0.266^2^0.200^0.222^~2, 3~^~04/01/2012~ -~07007~^~689~^0.027^6^0.000^~1~^~AS~^^^1^0.023^0.032^2^0.026^0.028^~2, 3~^~04/01/2012~ -~07007~^~693~^1.208^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~695~^0.161^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~07007~^~697~^0.004^6^0.004^~1~^~A~^^^1^0.000^0.047^2^-0.013^0.021^~1, 2, 3~^~04/01/2012~ -~07007~^~851~^0.096^6^0.001^~1~^~A~^^^1^0.061^0.130^2^0.094^0.099^~2, 3~^~04/01/2012~ -~07007~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.006^2^0.004^0.005^~1, 2, 3~^~04/01/2012~ -~07007~^~853~^0.023^6^0.000^~1~^~A~^^^1^0.019^0.027^2^0.022^0.024^~2, 3~^~04/01/2012~ -~07007~^~858~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.012^2^0.008^0.010^~2, 3~^~04/01/2012~ -~07008~^~312~^0.052^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~315~^0.018^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~404~^0.217^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~405~^0.185^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~406~^2.521^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~410~^0.415^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~415~^0.297^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~ -~07008~^~501~^0.214^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~502~^0.770^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~503~^0.809^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~504~^1.385^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~505~^1.499^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~506~^0.445^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~507~^0.209^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~508~^0.689^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~509~^0.606^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~510~^0.927^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~511~^1.030^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~512~^0.646^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~513~^0.966^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~514~^1.550^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~515~^2.718^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~516~^0.805^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~517~^0.782^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~518~^0.714^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07008~^~606~^9.301^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~610~^0.012^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~612~^0.323^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~613~^5.986^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~614~^2.964^0^^~9~^~MC~^^^^^^^^^^~01/01/2004~ -~07008~^~617~^9.712^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~618~^1.015^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~619~^0.055^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~620~^0.050^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~626~^0.598^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~628~^0.186^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~630~^0.031^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~ -~07008~^~645~^10.526^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07008~^~646~^1.120^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~07010~^~312~^0.080^4^0.013^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~315~^0.036^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~404~^0.523^3^0.009^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~405~^0.157^3^0.020^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~406~^3.900^3^0.156^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~410~^0.720^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~415~^0.270^3^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~501~^0.149^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~502~^0.641^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~503~^0.663^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~504~^1.168^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~505~^1.204^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~506~^0.412^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~507~^0.171^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~508~^0.585^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~509~^0.482^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~510~^0.737^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~511~^1.004^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~512~^0.482^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~513~^0.979^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~514~^1.403^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~515~^2.296^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~516~^1.077^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~517~^0.773^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~518~^0.634^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07010~^~606~^6.839^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07010~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~610~^0.020^3^0.003^~1~^^^^^^^^^^^~03/01/2009~ -~07010~^~611~^0.020^3^0.003^~1~^^^^^^^^^^^~03/01/2009~ -~07010~^~612~^0.239^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~613~^4.304^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~614~^2.256^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~617~^9.016^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~618~^1.829^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~619~^0.278^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~626~^0.716^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07010~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07010~^~645~^9.732^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07010~^~646~^2.107^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07011~^~312~^0.072^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~315~^0.051^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~404~^0.049^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~405~^0.095^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~406~^2.607^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~410~^0.466^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~415~^0.243^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~501~^0.129^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~502~^0.498^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~503~^0.569^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~504~^0.890^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~505~^1.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~506~^0.318^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~507~^0.137^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~508~^0.457^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~509~^0.431^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~510~^0.596^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~511~^0.835^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~512~^0.341^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~513~^0.741^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~514~^1.102^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~515~^1.915^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~516~^0.754^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~517~^0.596^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~518~^0.514^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~605~^0.123^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~606~^4.355^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07011~^~611~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~612~^0.133^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~613~^3.247^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~614~^0.962^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~617~^5.747^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~618~^3.557^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~619~^0.200^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~620~^0.073^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~621~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~626~^0.950^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~628~^0.134^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07011~^~630~^0.006^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~631~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07011~^~645~^6.836^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07011~^~646~^3.854^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07013~^~312~^0.104^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~315~^0.014^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~404~^0.459^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~405~^0.307^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~406~^4.795^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~410~^0.666^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~415~^0.327^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~501~^0.347^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~502~^1.249^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~503~^1.281^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~504~^2.195^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~505~^2.460^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~506~^0.724^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~507~^0.349^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~508~^1.092^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~509~^0.953^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~510~^1.484^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~511~^1.700^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~512~^1.093^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~513~^1.594^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~514~^2.537^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~515~^4.282^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~516~^1.299^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~517~^1.099^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~518~^1.130^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~606~^9.998^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07013~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~610~^0.013^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~611~^0.013^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~612~^0.335^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~613~^6.207^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~614~^3.429^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~617~^13.561^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~618~^2.419^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~619~^0.099^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~620~^0.114^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~626~^0.866^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~628~^0.265^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07013~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~07013~^~645~^14.692^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07013~^~646~^2.632^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~07014~^~312~^0.240^25^0.015^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~315~^0.155^23^0.004^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~404~^0.249^25^0.009^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~405~^1.525^26^0.039^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~406~^8.368^26^0.306^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~410~^3.380^14^0.274^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~415~^0.330^20^0.019^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~501~^0.145^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~502~^0.534^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~503~^0.484^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~504~^1.032^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~505~^0.909^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~506~^0.311^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~507~^0.248^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~508~^0.553^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~509~^0.430^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~510~^0.616^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~511~^0.767^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~512~^0.320^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~513~^0.762^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~514~^1.125^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~515~^1.631^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~516~^0.886^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~517~^0.767^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~518~^0.588^2^^~1~^^^^^^^^^^^~03/01/2003~ -~07014~^~606~^9.307^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07014~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~610~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~611~^0.111^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~612~^0.333^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~613~^5.763^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~614~^3.048^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~617~^11.706^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~618~^2.852^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~619~^0.342^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~626~^1.025^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07014~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2004~ -~07014~^~645~^12.731^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07014~^~646~^3.193^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07015~^~312~^0.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~315~^0.040^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~404~^0.250^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~405~^0.230^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~406~^3.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~410~^0.060^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~415~^0.130^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~501~^0.130^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~502~^0.600^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~503~^0.610^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~504~^1.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~505~^1.140^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~506~^0.370^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~507~^0.160^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~508~^0.540^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~509~^0.440^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~510~^0.680^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~511~^0.950^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~512~^0.440^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~513~^0.930^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~514~^1.290^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~515~^2.110^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~516~^1.030^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~517~^0.740^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~518~^0.590^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~606~^9.930^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~608~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~609~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~610~^0.040^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~611~^0.020^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~612~^0.350^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~613~^6.110^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~614~^3.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~617~^12.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~618~^2.540^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~619~^0.290^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~626~^1.040^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~645~^13.340^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07015~^~646~^2.830^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07016~^~312~^0.070^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~315~^0.030^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~404~^0.250^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~405~^0.160^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~406~^2.900^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~410~^0.760^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~415~^0.130^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~501~^0.150^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~502~^0.540^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~503~^0.620^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~504~^1.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~505~^1.160^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~506~^0.360^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~507~^0.150^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~508~^0.560^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~509~^0.520^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~510~^0.690^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~511~^0.840^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~512~^0.470^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~513~^0.830^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~514~^1.240^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~515~^2.350^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~516~^0.910^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~517~^0.970^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~518~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~07016~^~606~^10.470^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~608~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~609~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~610~^0.090^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~611~^0.100^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~612~^0.560^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~613~^6.390^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~614~^3.330^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~617~^12.500^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07016~^~618~^2.620^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~619~^0.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~626~^1.140^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07016~^~645~^13.640^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07016~^~646~^3.020^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~07018~^~312~^0.040^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~315~^0.012^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~404~^0.009^13^0.003^~1~^^^^^^^^^^^~06/01/2002~ -~07018~^~405~^0.114^13^0.007^~1~^^^^^^^^^^^~06/01/2002~ -~07018~^~406~^2.748^13^0.133^~1~^^^^^^^^^^^~06/01/2002~ -~07018~^~410~^0.430^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~415~^0.150^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~501~^0.197^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~502~^0.730^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~503~^0.879^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~504~^1.286^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~505~^1.438^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~506~^0.469^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~507~^0.237^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~508~^0.687^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~509~^0.568^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~510~^0.859^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~511~^1.117^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~512~^0.517^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~513~^1.037^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~514~^1.580^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~515~^2.586^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~516~^1.166^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~517~^0.868^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~518~^0.626^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~07018~^~606~^3.230^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~607~^0.000^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07018~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~612~^0.100^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~613~^2.410^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~614~^0.720^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~617~^4.060^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~618~^2.230^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~619~^0.120^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~626~^0.630^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~628~^0.110^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07018~^~645~^4.800^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07018~^~646~^2.350^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07019~^~312~^0.084^3^0.007^~1~^~A~^^^1^0.072^0.110^1^0.001^0.167^~2, 3~^~10/01/2016~ -~07019~^~315~^0.093^3^0.020^~1~^~A~^^^1^0.070^0.157^1^-0.166^0.352^~2, 3~^~10/01/2016~ -~07019~^~404~^0.207^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07019~^~405~^0.310^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07019~^~406~^5.470^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07019~^~415~^0.313^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~ -~07019~^~521~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07019~^~605~^0.123^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~606~^8.595^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~607~^0.006^3^0.000^~1~^~A~^^^1^0.004^0.008^1^0.003^0.009^~2, 3~^~10/01/2016~ -~07019~^~608~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.002^0.004^~1, 2, 3~^~10/01/2016~ -~07019~^~609~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^1^-0.001^0.005^~1, 2, 3~^~10/01/2016~ -~07019~^~610~^0.017^3^0.002^~1~^~A~^^^1^0.013^0.021^1^-0.008^0.042^~2, 3~^~10/01/2016~ -~07019~^~611~^0.021^3^0.001^~1~^~A~^^^1^0.021^0.023^1^0.015^0.028^~2, 3~^~10/01/2016~ -~07019~^~612~^0.319^3^0.014^~1~^~A~^^^1^0.289^0.344^1^0.144^0.493^~2, 3~^~10/01/2016~ -~07019~^~613~^5.367^3^0.397^~1~^~A~^^^1^4.284^5.873^1^0.319^10.415^~2, 3~^~10/01/2016~ -~07019~^~614~^2.709^3^0.172^~1~^~A~^^^1^2.252^2.939^1^0.527^4.891^~2, 3~^~10/01/2016~ -~07019~^~615~^0.057^3^0.001^~1~^~A~^^^1^0.048^0.064^1^0.048^0.066^~2, 3~^~10/01/2016~ -~07019~^~617~^9.786^3^0.775^~1~^~AS~^^^1^8.040^11.140^1^-0.061^19.633^~2, 3~^~10/01/2016~ -~07019~^~618~^3.758^3^0.341^~1~^~AS~^^^1^2.953^4.316^1^-0.572^8.088^~2, 3~^~10/01/2016~ -~07019~^~619~^0.161^3^0.019^~1~^~AS~^^^1^0.128^0.205^1^-0.084^0.406^~2, 3~^~10/01/2016~ -~07019~^~620~^0.095^3^0.001^~1~^~A~^^^1^0.088^0.104^1^0.082^0.108^~2, 3~^~10/01/2016~ -~07019~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.005^1^-0.003^0.010^~2, 3~^~10/01/2016~ -~07019~^~624~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.014^1^0.009^0.015^~2, 3~^~10/01/2016~ -~07019~^~625~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.008^1^0.004^0.010^~2, 3~^~10/01/2016~ -~07019~^~626~^0.508^3^0.038^~1~^~AS~^^^1^0.417^0.570^1^0.022^0.994^~2, 3~^~10/01/2016~ -~07019~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/1980~ -~07019~^~628~^0.242^3^0.004^~1~^~A~^^^1^0.210^0.266^1^0.188^0.296^~2, 3~^~10/01/2016~ -~07019~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~10/01/2016~ -~07019~^~630~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.008^1^0.004^0.010^~2, 3~^~10/01/2016~ -~07019~^~631~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~2, 3~^~10/01/2016~ -~07019~^~645~^10.603^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~646~^4.296^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~652~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.014^1^0.010^0.016^~2, 3~^~10/01/2016~ -~07019~^~653~^0.067^3^0.003^~1~^~A~^^^1^0.064^0.075^1^0.032^0.102^~2, 3~^~10/01/2016~ -~07019~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.006^1^0.001^0.008^~2, 3~^~10/01/2016~ -~07019~^~662~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.009^1^-0.007^0.018^~2, 3~^~10/01/2016~ -~07019~^~663~^0.094^3^0.012^~1~^~A~^^^1^0.076^0.135^1^-0.052^0.240^~2, 3~^~10/01/2016~ -~07019~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07019~^~665~^0.023^3^0.002^~1~^~A~^^^1^0.020^0.031^1^-0.002^0.049^~2, 3~^~10/01/2016~ -~07019~^~670~^0.031^3^0.000^~1~^~A~^^^1^0.026^0.035^^^^~2, 3~^~10/01/2016~ -~07019~^~671~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.004^1^0.000^0.006^~1, 2, 3~^~10/01/2016~ -~07019~^~672~^0.171^3^0.013^~1~^~A~^^^1^0.128^0.187^1^0.003^0.339^~2, 3~^~10/01/2016~ -~07019~^~673~^0.502^3^0.039^~1~^~A~^^^1^0.408^0.565^1^0.003^1.001^~2, 3~^~10/01/2016~ -~07019~^~674~^9.692^3^0.786^~1~^~A~^^^1^7.905^11.051^1^-0.301^19.686^~2, 3~^~10/01/2016~ -~07019~^~675~^3.704^3^0.343^~1~^~A~^^^1^2.887^4.258^1^-0.651^8.059^~2, 3~^~10/01/2016~ -~07019~^~676~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.008^1^0.004^0.010^~2, 3~^~10/01/2016~ -~07019~^~685~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.006^1^0.001^0.008^~2, 3~^~10/01/2016~ -~07019~^~687~^0.050^3^0.003^~1~^~A~^^^1^0.046^0.060^1^0.008^0.091^~2, 3~^~10/01/2016~ -~07019~^~689~^0.052^3^0.004^~1~^~AS~^^^1^0.043^0.060^1^-0.002^0.105^~2, 3~^~10/01/2016~ -~07019~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07019~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07019~^~851~^0.156^3^0.019^~1~^~A~^^^1^0.123^0.199^1^-0.085^0.398^~2, 3~^~10/01/2016~ -~07019~^~852~^0.022^3^0.003^~1~^~A~^^^1^0.017^0.027^1^-0.010^0.054^~2, 3~^~10/01/2016~ -~07019~^~853~^0.030^3^0.002^~1~^~A~^^^1^0.026^0.033^1^0.008^0.052^~2, 3~^~10/01/2016~ -~07019~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07019~^~858~^0.034^3^0.000^~1~^~A~^^^1^0.033^0.035^^^^~2, 3~^~10/01/2016~ -~07020~^~312~^0.060^14^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~315~^0.031^4^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~404~^0.000^14^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~405~^0.110^14^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~406~^1.760^14^0.158^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~410~^0.190^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~415~^0.120^14^0.021^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~501~^0.165^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~502~^0.894^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~503~^0.861^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~504~^1.584^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~505~^1.759^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~506~^0.506^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~507~^0.238^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~508~^0.810^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~509~^0.616^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~510~^0.993^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~511~^1.587^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~512~^0.601^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~513~^1.576^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~514~^1.950^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~515~^3.167^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~516~^2.170^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~517~^1.503^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~518~^0.916^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~606~^2.600^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~607~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~608~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~609~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~610~^0.020^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~611~^0.030^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~612~^0.170^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~613~^1.260^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~614~^0.990^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~617~^2.280^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~618~^0.240^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~619~^0.080^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~620~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~621~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~626~^0.400^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~627~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~628~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~629~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~630~^0.000^14^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~631~^0.000^14^0.000^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~645~^2.680^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07020~^~646~^0.320^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07021~^~312~^0.069^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~315~^0.039^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~404~^0.134^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~405~^0.134^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~406~^3.384^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~410~^0.494^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~415~^0.236^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~501~^0.172^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~502~^0.760^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~503~^0.853^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~504~^1.415^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~505~^1.541^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~506~^0.475^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~507~^0.238^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~508~^0.718^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~509~^0.595^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~510~^0.918^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~511~^1.175^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~512~^0.603^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~513~^1.076^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~514~^1.654^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~515~^2.753^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~516~^1.062^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~517~^0.837^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~518~^0.709^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~521~^0.090^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07021~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2008~ -~07021~^~606~^8.806^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07021~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~610~^0.069^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~611~^0.068^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~07021~^~612~^0.658^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~613~^5.556^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~614~^2.455^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~617~^9.897^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~618~^2.231^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~619~^0.642^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~620~^0.073^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~07021~^~621~^0.015^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~07021~^~626~^1.144^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07021~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~628~^0.091^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~07021~^~629~^0.004^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~631~^0.008^0^^~4~^~FLA~^^^^^^^^^^~06/01/2008~ -~07021~^~645~^11.132^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07021~^~646~^2.972^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07022~^~312~^0.044^17^0.002^~1~^~A~^^^1^0.025^0.071^9^0.040^0.048^~2, 3~^~03/01/2016~ -~07022~^~315~^0.029^17^0.001^~1~^~A~^^^1^0.011^0.060^11^0.027^0.032^~1, 2, 3~^~03/01/2016~ -~07022~^~404~^0.032^9^0.000^~1~^~A~^^^1^0.027^0.042^3^0.031^0.033^~2, 3~^~03/01/2016~ -~07022~^~405~^0.151^9^0.006^~1~^~A~^^^1^0.110^0.210^4^0.134^0.168^~2, 3~^~03/01/2016~ -~07022~^~406~^2.218^9^0.024^~1~^~A~^^^1^2.030^2.520^6^2.160^2.276^~2, 3~^~03/01/2016~ -~07022~^~410~^0.258^6^0.019^~1~^~A~^^^1^0.230^0.380^1^0.040^0.476^~2, 3~^~03/01/2016~ -~07022~^~415~^0.127^9^0.001^~1~^~A~^^^1^0.109^0.153^5^0.124^0.130^~2, 3~^~03/01/2016~ -~07022~^~605~^1.660^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~606~^11.460^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~607~^0.004^17^0.001^~1~^~A~^^^1^0.000^0.008^12^0.003^0.006^~1, 2, 3~^~03/01/2016~ -~07022~^~608~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.001^13^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~07022~^~609~^0.005^17^0.000^~1~^~A~^^^1^0.002^0.014^12^0.005^0.005^~1, 2, 3~^~03/01/2016~ -~07022~^~610~^0.015^17^0.000^~1~^~A~^^^1^0.011^0.020^11^0.014^0.016^~2, 3~^~03/01/2016~ -~07022~^~611~^0.019^17^0.000^~1~^~A~^^^1^0.017^0.021^8^0.018^0.019^~2, 3~^~03/01/2016~ -~07022~^~612~^0.846^17^0.006^~1~^~A~^^^1^0.763^0.911^11^0.833^0.859^~2, 3~^~03/01/2016~ -~07022~^~613~^6.338^17^0.039^~1~^~A~^^^1^5.989^6.755^10^6.252^6.424^~2, 3~^~03/01/2016~ -~07022~^~614~^3.694^17^0.032^~1~^~A~^^^1^3.209^4.013^12^3.624^3.764^~2, 3~^~03/01/2016~ -~07022~^~615~^0.029^17^0.000^~1~^~A~^^^1^0.024^0.034^13^0.028^0.030^~2, 3~^~03/01/2016~ -~07022~^~617~^11.804^17^0.070^~1~^~AS~^^^1^10.831^13.257^11^11.648^11.959^~2, 3~^~03/01/2016~ -~07022~^~618~^0.926^17^0.008^~1~^~AS~^^^1^0.823^1.051^10^0.907^0.945^~2, 3~^~03/01/2016~ -~07022~^~619~^0.082^17^0.001^~1~^~AS~^^^1^0.054^0.122^8^0.081^0.084^~2, 3~^~03/01/2016~ -~07022~^~620~^0.028^17^0.000^~1~^~A~^^^1^0.024^0.035^14^0.027^0.029^~2, 3~^~03/01/2016~ -~07022~^~621~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~07022~^~624~^0.007^17^0.000^~1~^~A~^^^1^0.005^0.010^11^0.007^0.008^~2, 3~^~03/01/2016~ -~07022~^~625~^0.263^17^0.003^~1~^~A~^^^1^0.238^0.298^11^0.257^0.270^~2, 3~^~03/01/2016~ -~07022~^~626~^1.055^17^0.017^~1~^~AS~^^^1^0.876^1.255^11^1.018^1.093^~2, 3~^~03/01/2016~ -~07022~^~627~^0.003^17^0.000^~1~^~A~^^^1^0.001^0.005^10^0.003^0.004^~1, 2, 3~^~03/01/2016~ -~07022~^~628~^0.113^17^0.001^~1~^~A~^^^1^0.097^0.147^10^0.111^0.115^~2, 3~^~03/01/2016~ -~07022~^~629~^0.004^17^0.000^~1~^~A~^^^1^0.002^0.005^10^0.003^0.004^~1, 2, 3~^~03/01/2016~ -~07022~^~630~^0.055^17^0.001^~1~^~AS~^^^1^0.001^0.149^10^0.054^0.057^~2, 3~^~03/01/2016~ -~07022~^~631~^0.013^17^0.000^~1~^~A~^^^1^0.011^0.016^7^0.013^0.014^~2, 3~^~03/01/2016~ -~07022~^~645~^13.552^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~646~^1.098^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~652~^0.140^17^0.001^~1~^~A~^^^1^0.123^0.152^6^0.136^0.144^~2, 3~^~03/01/2016~ -~07022~^~653~^0.359^17^0.005^~1~^~A~^^^1^0.312^0.407^6^0.348^0.371^~2, 3~^~03/01/2016~ -~07022~^~654~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.004^12^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07022~^~662~^0.087^17^0.002^~1~^~A~^^^1^0.076^0.098^9^0.083^0.091^~2, 3~^~03/01/2016~ -~07022~^~663~^1.441^17^0.033^~1~^~A~^^^1^0.842^1.928^6^1.361^1.521^~2, 3~^~03/01/2016~ -~07022~^~664~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~665~^0.130^17^0.002^~1~^~A~^^^1^0.107^0.157^11^0.125^0.136^~2, 3~^~03/01/2016~ -~07022~^~670~^0.173^17^0.002^~1~^~A~^^^1^0.137^0.199^12^0.169^0.177^~2, 3~^~03/01/2016~ -~07022~^~671~^0.004^17^0.000^~1~^~A~^^^1^0.000^0.011^9^0.004^0.004^~1, 2, 3~^~03/01/2016~ -~07022~^~672~^0.008^17^0.000^~1~^~A~^^^1^0.005^0.010^14^0.007^0.009^~2, 3~^~03/01/2016~ -~07022~^~673~^0.968^17^0.019^~1~^~A~^^^1^0.782^1.171^12^0.927^1.009^~2, 3~^~03/01/2016~ -~07022~^~674~^10.363^17^0.071^~1~^~A~^^^1^9.639^11.651^10^10.206^10.520^~2, 3~^~03/01/2016~ -~07022~^~675~^0.623^17^0.006^~1~^~A~^^^1^0.568^0.723^11^0.611^0.635^~2, 3~^~03/01/2016~ -~07022~^~676~^0.055^17^0.001^~1~^~A~^^^1^0.001^0.149^10^0.054^0.057^~1, 2, 3~^~03/01/2016~ -~07022~^~685~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.008^10^0.005^0.006^~2, 3~^~03/01/2016~ -~07022~^~687~^0.257^17^0.003^~1~^~A~^^^1^0.240^0.303^5^0.251^0.263^~2, 3~^~03/01/2016~ -~07022~^~689~^0.023^17^0.000^~1~^~AS~^^^1^0.019^0.027^12^0.022^0.024^~2, 3~^~03/01/2016~ -~07022~^~693~^1.528^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~695~^0.132^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07022~^~697~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07022~^~851~^0.075^17^0.001^~1~^~A~^^^1^0.045^0.114^9^0.073^0.076^~2, 3~^~03/01/2016~ -~07022~^~852~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.004^6^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07022~^~853~^0.020^17^0.000^~1~^~A~^^^1^0.017^0.025^9^0.020^0.021^~2, 3~^~03/01/2016~ -~07022~^~856~^0.002^17^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.002^~1, 2, 3~^~03/01/2016~ -~07022~^~858~^0.008^17^0.000^~1~^~A~^^^1^0.006^0.010^11^0.007^0.008^~2, 3~^~03/01/2016~ -~07024~^~312~^0.078^3^0.005^~1~^~A~^^^1^0.067^0.084^2^0.054^0.101^~2, 3~^~03/01/2007~ -~07024~^~315~^0.059^3^0.009^~1~^~A~^^^1^0.040^0.070^2^0.018^0.099^~2, 3~^~03/01/2007~ -~07024~^~404~^0.057^3^0.008^~1~^~A~^^^1^0.047^0.073^2^0.023^0.091^~2, 3~^~03/01/2007~ -~07024~^~405~^0.257^3^0.026^~1~^~A~^^^1^0.207^0.296^2^0.144^0.370^~2, 3~^~03/01/2007~ -~07024~^~406~^4.687^3^0.504^~1~^~A~^^^1^3.680^5.220^2^2.520^6.853^~2, 3~^~03/01/2007~ -~07024~^~410~^1.060^3^0.123^~1~^~A~^^^1^0.869^1.290^2^0.530^1.589^~2, 3~^~03/01/2007~ -~07024~^~415~^0.323^3^0.045^~1~^~A~^^^1^0.255^0.407^2^0.130^0.515^~2, 3~^~03/01/2007~ -~07024~^~501~^0.103^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~502~^0.577^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~503~^0.457^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~504~^1.024^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~505~^1.095^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~506~^0.343^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~507~^0.130^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~508~^0.513^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~509~^0.391^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~510~^0.536^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~511~^0.892^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~512~^0.362^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~513~^0.902^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~514~^1.322^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~515~^2.063^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~516~^1.024^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~517~^0.691^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~518~^0.608^0^^~4~^^^^^^^^^^^~07/01/2002~ -~07024~^~521~^0.142^3^0.011^~1~^~A~^^^1^0.125^0.163^2^0.094^0.190^~2, 3~^~03/01/2007~ -~07024~^~605~^0.149^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~606~^3.856^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07024~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07024~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~07024~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~611~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.021^0.033^~1, 2, 3~^~03/01/2007~ -~07024~^~612~^0.083^3^0.027^~1~^~A~^^^1^0.050^0.136^2^-0.032^0.198^~2, 3~^~03/01/2007~ -~07024~^~613~^2.954^3^0.432^~1~^~A~^^^1^2.243^3.735^2^1.095^4.813^~2, 3~^~03/01/2007~ -~07024~^~614~^0.773^3^0.087^~1~^~A~^^^1^0.625^0.925^2^0.400^1.145^~2, 3~^~03/01/2007~ -~07024~^~615~^0.008^3^0.004^~1~^~A~^^^1^0.000^0.013^2^-0.010^0.026^~1, 2, 3~^~03/01/2007~ -~07024~^~617~^4.999^3^0.811^~1~^~AS~^^^1^3.827^6.556^2^1.509^8.488^~2, 3~^~03/01/2007~ -~07024~^~618~^3.422^3^0.357^~1~^~AS~^^^1^2.721^3.895^2^1.884^4.960^~2, 3~^~03/01/2007~ -~07024~^~619~^0.356^3^0.088^~1~^~AS~^^^1^0.189^0.487^2^-0.022^0.734^~2, 3~^~03/01/2007~ -~07024~^~620~^0.054^3^0.009^~1~^~A~^^^1^0.044^0.071^2^0.016^0.091^~2, 3~^~03/01/2007~ -~07024~^~621~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~03/01/2007~ -~07024~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~625~^0.026^3^0.010^~1~^~A~^^^1^0.014^0.046^2^-0.017^0.069^~2, 3~^~03/01/2007~ -~07024~^~626~^0.722^3^0.218^~1~^~A~^^^1^0.433^1.149^2^-0.216^1.660^~2, 3~^~03/01/2007~ -~07024~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~07024~^~628~^0.068^3^0.012^~1~^~A~^^^1^0.046^0.089^2^0.015^0.122^~2, 3~^~03/01/2007~ -~07024~^~629~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~03/01/2007~ -~07024~^~630~^0.118^3^0.046^~1~^~AS~^^^1^0.055^0.208^2^-0.082^0.317^~2, 3~^~03/01/2007~ -~07024~^~631~^0.009^3^0.005^~1~^~A~^^^1^0.000^0.016^2^-0.011^0.029^~1, 2, 3~^~03/01/2007~ -~07024~^~645~^5.932^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~646~^3.873^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~652~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~03/01/2007~ -~07024~^~653~^0.019^3^0.005^~1~^~A~^^^1^0.013^0.030^2^-0.005^0.043^~2, 3~^~03/01/2007~ -~07024~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~663~^0.097^3^0.048^~1~^~A~^^^1^0.047^0.193^2^-0.109^0.303^~2, 3~^~03/01/2007~ -~07024~^~669~^0.051^3^0.021^~1~^~A~^^^1^0.026^0.092^2^-0.037^0.140^~2, 3~^~03/01/2007~ -~07024~^~672~^0.027^3^0.003^~1~^~A~^^^1^0.023^0.033^2^0.013^0.040^~2, 3~^~03/01/2007~ -~07024~^~674~^4.901^3^0.766^~1~^~A~^^^1^3.775^6.363^2^1.607^8.196^~2, 3~^~03/01/2007~ -~07024~^~675~^3.370^3^0.378^~1~^~A~^^^1^2.629^3.869^2^1.744^4.996^~2, 3~^~03/01/2007~ -~07024~^~676~^0.118^3^0.046^~1~^~A~^^^1^0.055^0.208^2^-0.082^0.317^~2, 3~^~03/01/2007~ -~07024~^~685~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.032^2^0.025^0.035^~2, 3~^~03/01/2007~ -~07024~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~693~^0.097^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07024~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07024~^~851~^0.326^3^0.089^~1~^~A~^^^1^0.157^0.459^2^-0.057^0.708^~2, 3~^~03/01/2007~ -~07025~^~312~^0.071^3^0.004^~1~^~A~^^^1^0.064^0.079^2^0.052^0.090^~2, 3~^~03/01/2007~ -~07025~^~315~^0.033^3^0.009^~1~^~A~^^^1^0.023^0.052^2^-0.007^0.074^~2, 3~^~03/01/2007~ -~07025~^~404~^0.036^3^0.011^~1~^~A~^^^1^0.021^0.058^2^-0.012^0.084^~2, 3~^~03/01/2007~ -~07025~^~405~^0.181^3^0.006^~1~^~A~^^^1^0.169^0.188^2^0.155^0.206^~2, 3~^~03/01/2007~ -~07025~^~406~^3.680^3^0.072^~1~^~A~^^^1^3.550^3.800^2^3.369^3.991^~2, 3~^~03/01/2007~ -~07025~^~410~^0.560^3^0.018^~1~^~A~^^^1^0.524^0.583^2^0.481^0.639^~2, 3~^~03/01/2007~ -~07025~^~415~^0.143^3^0.005^~1~^~A~^^^1^0.137^0.153^2^0.122^0.164^~2, 3~^~03/01/2007~ -~07025~^~501~^0.114^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~502~^0.683^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~503~^0.539^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~504~^1.163^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~505~^1.238^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~506~^0.402^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~507~^0.105^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~508~^0.592^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~509~^0.507^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~510~^0.585^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~511~^0.932^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~512~^0.542^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~513~^0.935^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~514~^1.453^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~515~^2.397^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~516~^0.836^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~517~^0.697^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~518~^0.667^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~521~^0.118^3^0.013^~1~^~A~^^^1^0.102^0.144^2^0.061^0.175^~2, 3~^~03/01/2007~ -~07025~^~605~^0.789^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~606~^4.028^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07025~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07025~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~07025~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07025~^~611~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.023^0.037^~1, 2, 3~^~03/01/2007~ -~07025~^~612~^0.140^3^0.011^~1~^~A~^^^1^0.119^0.156^2^0.093^0.188^~2, 3~^~03/01/2007~ -~07025~^~613~^2.697^3^0.082^~1~^~A~^^^1^2.611^2.861^2^2.345^3.050^~2, 3~^~03/01/2007~ -~07025~^~614~^1.108^3^0.047^~1~^~A~^^^1^1.040^1.198^2^0.905^1.310^~2, 3~^~03/01/2007~ -~07025~^~615~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.023^0.037^~1, 2, 3~^~03/01/2007~ -~07025~^~617~^5.313^3^0.308^~1~^~AS~^^^1^4.705^5.706^2^3.986^6.639^~2, 3~^~03/01/2007~ -~07025~^~618~^3.702^3^0.465^~1~^~AS~^^^1^2.818^4.397^2^1.699^5.704^~2, 3~^~03/01/2007~ -~07025~^~619~^0.193^3^0.056^~1~^~AS~^^^1^0.082^0.249^2^-0.046^0.433^~2, 3~^~03/01/2007~ -~07025~^~620~^0.032^3^0.016^~1~^~A~^^^1^0.000^0.055^2^-0.039^0.103^~1, 2, 3~^~03/01/2007~ -~07025~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07025~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~625~^0.014^3^0.007^~1~^~A~^^^1^0.000^0.023^2^-0.017^0.045^~1, 2, 3~^~03/01/2007~ -~07025~^~626~^0.330^3^0.010^~1~^~A~^^^1^0.311^0.342^2^0.288^0.372^~2, 3~^~03/01/2007~ -~07025~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07025~^~628~^0.049^3^0.009^~1~^~A~^^^1^0.038^0.067^2^0.010^0.088^~2, 3~^~03/01/2007~ -~07025~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07025~^~630~^0.030^3^0.030^~1~^~AS~^^^1^0.000^0.089^2^-0.098^0.157^~2, 3~^~03/01/2007~ -~07025~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07025~^~645~^5.736^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~646~^3.949^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~652~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.021^0.027^~2, 3~^~03/01/2007~ -~07025~^~653~^0.045^3^0.001^~1~^~A~^^^1^0.042^0.046^2^0.039^0.051^~2, 3~^~03/01/2007~ -~07025~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~663~^0.581^3^0.082^~1~^~A~^^^1^0.418^0.674^2^0.229^0.933^~2, 3~^~03/01/2007~ -~07025~^~669~^0.208^3^0.004^~1~^~A~^^^1^0.199^0.212^2^0.189^0.226^~2, 3~^~03/01/2007~ -~07025~^~672~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.017^0.028^~2, 3~^~03/01/2007~ -~07025~^~674~^4.732^3^0.227^~1~^~A~^^^1^4.287^5.032^2^3.756^5.708^~2, 3~^~03/01/2007~ -~07025~^~675~^3.494^3^0.461^~1~^~A~^^^1^2.619^4.185^2^1.509^5.479^~2, 3~^~03/01/2007~ -~07025~^~676~^0.030^3^0.030^~1~^~A~^^^1^0.000^0.089^2^-0.098^0.157^~1, 2, 3~^~03/01/2007~ -~07025~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~693~^0.581^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~695~^0.208^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07025~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07025~^~851~^0.193^3^0.056^~1~^~A~^^^1^0.082^0.249^2^-0.046^0.433^~2, 3~^~03/01/2007~ -~07026~^~312~^0.050^4^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~315~^0.025^3^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~404~^0.535^4^0.018^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~405~^0.165^4^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~406~^3.200^4^0.210^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~410~^0.280^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07026~^~415~^0.320^4^0.060^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~501~^0.182^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~502~^0.717^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~503~^0.691^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~504~^1.249^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~505~^1.380^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~506~^0.419^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~507~^0.190^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~508~^0.622^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~509~^0.527^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~510~^0.719^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~511~^0.997^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~512~^0.637^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~513~^0.917^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~514~^1.485^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~515~^2.371^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~516~^0.786^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~517~^0.683^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~518~^0.627^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07026~^~606~^6.291^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07026~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~610~^0.030^4^0.004^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~611~^0.010^4^0.006^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~612~^0.240^4^0.024^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~613~^4.020^4^0.221^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~614~^1.990^4^0.128^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~617~^8.491^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07026~^~618~^1.860^4^0.113^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~619~^0.200^4^0.032^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~626~^0.670^4^0.047^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07026~^~645~^9.161^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07026~^~646~^2.060^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~ -~07027~^~312~^0.060^5^0.015^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~404~^0.632^5^0.111^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~405~^0.204^5^0.009^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~406~^3.880^5^0.230^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~415~^0.350^5^0.014^~1~^^^^^^^^^^^~05/01/2004~ -~07027~^~606~^6.100^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07027~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~610~^0.030^5^0.028^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~611~^0.020^5^0.018^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~612~^0.230^5^0.024^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~613~^3.640^5^0.099^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~614~^1.810^5^0.068^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~617~^7.530^5^0.315^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~618~^1.810^5^0.082^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~619~^0.300^5^0.061^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~626~^0.670^5^0.053^~1~^^^^^^^^^^^~07/01/2017~ -~07027~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07027~^~645~^8.200^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07027~^~646~^2.110^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~07028~^~312~^0.050^18^0.001^~1~^~A~^^^1^0.041^0.062^11^0.048^0.053^~2, 3~^~03/01/2016~ -~07028~^~315~^0.014^18^0.002^~1~^~A~^^^1^0.011^0.040^5^0.009^0.019^~1, 2, 3~^~03/01/2016~ -~07028~^~404~^0.336^3^0.025^~1~^~A~^^^1^0.286^0.361^2^0.228^0.444^~2, 3~^~04/01/2013~ -~07028~^~405~^0.266^3^0.009^~1~^~A~^^^1^0.254^0.283^2^0.229^0.303^~2, 3~^~04/01/2013~ -~07028~^~406~^5.697^3^0.506^~1~^~A~^^^1^4.910^6.640^2^3.522^7.872^~2, 3~^~04/01/2013~ -~07028~^~410~^0.697^3^0.023^~1~^~A~^^^1^0.663^0.741^2^0.598^0.796^~2, 3~^~05/01/2014~ -~07028~^~415~^0.394^3^0.028^~1~^~A~^^^1^0.348^0.444^2^0.274^0.514^~2, 3~^~04/01/2013~ -~07028~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~606~^1.227^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~607~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~609~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2007~ -~07028~^~610~^0.004^18^0.000^~1~^~A~^^^1^0.002^0.006^9^0.003^0.004^~1, 2, 3~^~03/01/2016~ -~07028~^~611~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.005^9^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07028~^~612~^0.046^18^0.003^~1~^~A~^^^1^0.033^0.078^8^0.040^0.052^~2, 3~^~03/01/2016~ -~07028~^~613~^0.776^18^0.043^~1~^~A~^^^1^0.564^1.315^8^0.675^0.877^~2, 3~^~03/01/2016~ -~07028~^~614~^0.380^18^0.024^~1~^~A~^^^1^0.285^0.684^7^0.323^0.436^~2, 3~^~03/01/2016~ -~07028~^~615~^0.006^18^0.000^~1~^~A~^^^1^0.004^0.011^7^0.005^0.006^~2, 3~^~03/01/2016~ -~07028~^~617~^1.483^18^0.078^~1~^~AS~^^^1^1.020^2.455^8^1.301^1.665^~2, 3~^~03/01/2016~ -~07028~^~618~^0.507^18^0.026^~1~^~AS~^^^1^0.319^0.776^9^0.448^0.565^~2, 3~^~03/01/2016~ -~07028~^~619~^0.016^18^0.001^~1~^~AS~^^^1^0.009^0.031^9^0.013^0.019^~2, 3~^~03/01/2016~ -~07028~^~620~^0.054^18^0.001^~1~^~A~^^^1^0.046^0.060^11^0.053^0.056^~2, 3~^~03/01/2016~ -~07028~^~621~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.003^6^0.002^0.002^~1, 2, 3~^~03/01/2016~ -~07028~^~624~^0.002^18^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07028~^~625~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~626~^0.096^18^0.004^~1~^~AS~^^^1^0.066^0.145^9^0.086^0.106^~2, 3~^~03/01/2016~ -~07028~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~07028~^~628~^0.029^18^0.002^~1~^~A~^^^1^0.020^0.049^8^0.025^0.033^~2, 3~^~03/01/2016~ -~07028~^~629~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~07028~^~630~^0.001^18^0.000^~1~^~AS~^^^1^0.000^0.002^6^0.001^0.001^~2, 3~^~03/01/2016~ -~07028~^~631~^0.005^18^0.000^~1~^~A~^^^1^0.004^0.006^12^0.005^0.005^~2, 3~^~03/01/2016~ -~07028~^~645~^1.618^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~646~^0.626^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~652~^0.002^18^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07028~^~653~^0.009^18^0.000^~1~^~A~^^^1^0.006^0.014^9^0.008^0.010^~2, 3~^~03/01/2016~ -~07028~^~654~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~07028~^~662~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~07028~^~663~^0.010^18^0.001^~1~^~A~^^^1^0.008^0.017^7^0.009^0.012^~2, 3~^~03/01/2016~ -~07028~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~665~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.005^10^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07028~^~670~^0.004^18^0.000^~1~^~A~^^^1^0.003^0.006^7^0.003^0.005^~2, 3~^~03/01/2016~ -~07028~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~672~^0.020^18^0.001^~1~^~A~^^^1^0.011^0.031^10^0.017^0.022^~2, 3~^~03/01/2016~ -~07028~^~673~^0.095^18^0.004^~1~^~A~^^^1^0.065^0.144^9^0.085^0.105^~2, 3~^~03/01/2016~ -~07028~^~674~^1.473^18^0.078^~1~^~A~^^^1^1.011^2.438^8^1.292^1.653^~2, 3~^~03/01/2016~ -~07028~^~675~^0.500^18^0.025^~1~^~A~^^^1^0.315^0.765^9^0.443^0.557^~2, 3~^~03/01/2016~ -~07028~^~676~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^6^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~07028~^~685~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~07028~^~687~^0.007^18^0.000^~1~^~A~^^^1^0.005^0.012^10^0.006^0.008^~2, 3~^~03/01/2016~ -~07028~^~689~^0.011^18^0.000^~1~^~AS~^^^1^0.009^0.014^9^0.010^0.011^~2, 3~^~03/01/2016~ -~07028~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07028~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~07028~^~851~^0.015^18^0.001^~1~^~A~^^^1^0.008^0.030^8^0.013^0.018^~2, 3~^~03/01/2016~ -~07028~^~852~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.004^8^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07028~^~853~^0.008^18^0.000^~1~^~A~^^^1^0.007^0.010^10^0.008^0.009^~2, 3~^~03/01/2016~ -~07028~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07028~^~858~^0.010^18^0.000^~1~^~A~^^^1^0.008^0.013^8^0.010^0.011^~2, 3~^~03/01/2016~ -~07029~^~312~^0.089^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~315~^0.557^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~404~^0.626^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~405~^0.178^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~406~^2.904^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~410~^0.435^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~415~^0.329^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~501~^0.155^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~502~^0.558^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~503~^0.573^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~504~^0.986^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~505~^1.110^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~506~^0.319^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~507~^0.160^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~508~^0.497^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~509~^0.422^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~510~^0.670^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~511~^0.837^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~512~^0.477^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~513~^0.731^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~514~^1.146^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~515~^1.934^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~516~^0.681^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~517~^0.547^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~518~^0.518^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~521~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07029~^~606~^0.500^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~07029~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~610~^0.005^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~611~^0.011^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~612~^0.109^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~613~^1.842^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~614~^0.969^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~617~^4.006^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~618~^0.691^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~619~^0.060^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~620~^0.038^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~626~^0.274^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~628~^0.075^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~07029~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~ -~07029~^~645~^4.354^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07029~^~646~^0.789^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07030~^~312~^0.080^4^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~315~^0.031^3^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~404~^0.712^4^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~405~^0.190^4^0.021^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~406~^4.162^4^0.216^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~410~^0.180^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~415~^0.260^4^0.032^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~501~^0.156^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~502~^0.734^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~503~^0.700^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~504~^1.258^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~505~^1.364^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~506~^0.456^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~507~^0.190^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~508~^0.641^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~509~^0.536^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~510~^0.747^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~511~^1.023^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~512~^0.604^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~513~^0.948^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~514~^1.500^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~515~^2.338^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~516~^0.883^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~517~^0.713^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~518~^0.677^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07030~^~606~^7.181^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07030~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~610~^0.040^4^0.023^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~611~^0.030^4^0.012^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~612~^0.280^4^0.044^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~613~^4.421^4^0.385^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~614~^2.410^4^0.198^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~617~^8.851^4^0.772^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~618~^2.160^4^0.156^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~619~^0.310^4^0.023^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~626~^0.730^4^0.055^~1~^^^^^^^^^^^~03/01/2009~ -~07030~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07030~^~645~^9.581^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07030~^~646~^2.470^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07031~^~312~^0.070^4^0.016^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~315~^0.013^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07031~^~404~^0.435^4^0.075^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~405~^0.120^4^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~406~^2.095^4^0.096^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~410~^0.310^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~415~^0.150^4^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~501~^0.089^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~502~^0.409^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~503~^0.403^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~504~^0.725^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~505~^0.772^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~506~^0.228^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~507~^0.051^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~508~^0.354^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~509~^0.278^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~510~^0.448^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~511~^0.593^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~512~^0.350^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~513~^0.536^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~514~^0.856^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~515~^1.349^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~516~^0.486^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~517~^0.401^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~518~^0.376^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07031~^~606~^5.049^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07031~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~610~^0.020^3^0.000^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~611~^0.010^3^0.000^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~612~^0.159^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~613~^3.187^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~614~^1.673^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~617~^6.703^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~618~^2.360^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~619~^0.329^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~626~^0.468^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07031~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07031~^~645~^7.171^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07031~^~646~^2.689^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07032~^~312~^0.080^8^0.009^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~404~^0.601^8^0.031^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~405~^0.187^8^0.012^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~406~^3.452^8^0.230^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~410~^0.520^5^0.111^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~415~^0.260^8^0.019^~1~^^^^^^^^^^^~05/01/2004~ -~07032~^~501~^0.207^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~502~^0.719^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~503~^0.754^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~504~^1.353^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~505~^1.508^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~506~^0.439^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~507~^0.235^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~508~^0.691^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~509~^0.560^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~510~^0.802^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~511~^1.119^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~512~^0.677^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~513~^0.911^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~514~^1.552^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~515~^2.626^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~516~^0.748^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~517~^0.787^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~518~^0.672^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~606~^6.966^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07032~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~610~^0.074^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~611~^0.074^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~612~^0.390^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~613~^4.239^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~614~^2.189^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~617~^7.922^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~618~^1.772^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~619~^0.250^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~626~^0.668^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07032~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~07032~^~645~^8.590^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07032~^~646~^2.022^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07033~^~312~^0.090^4^0.049^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~315~^0.036^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~404~^0.318^4^0.013^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~405~^0.220^4^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~406~^2.153^4^0.226^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~410~^0.590^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~415~^0.130^4^0.013^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~501~^0.372^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~502~^0.683^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~503~^0.775^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~504~^1.504^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~505~^1.476^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~506~^0.475^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~507~^0.255^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~508~^0.771^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~509~^0.666^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~510~^1.014^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~511~^0.892^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~512~^0.597^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~513~^0.802^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~514~^1.378^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~515~^2.887^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~516~^0.587^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~517~^1.356^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~518~^0.806^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~606~^8.620^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~610~^0.280^4^0.037^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~611~^0.360^4^0.047^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~612~^1.110^4^0.068^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~613~^4.490^4^0.017^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~614~^2.110^4^0.182^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~617~^6.310^4^0.286^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~618~^1.230^4^0.116^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~619~^0.150^4^0.041^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~626~^0.770^4^0.049^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07033~^~645~^7.080^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07033~^~646~^1.380^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07034~^~312~^0.122^4^0.027^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~404~^0.023^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~405~^0.115^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~406~^0.440^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07034~^~415~^0.190^4^0.104^~1~^^^^^^^^^^^~05/01/2004~ -~07034~^~606~^3.402^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07034~^~607~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~608~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~609~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~610~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~611~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~612~^0.187^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~613~^2.130^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~614~^1.051^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~617~^5.027^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~618~^1.003^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~619~^0.131^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~620~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~621~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~626~^0.574^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07034~^~627~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~628~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~629~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~630~^0.000^4^^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~631~^0.000^4^0.000^~1~^^^^^^^^^^^~03/01/2009~ -~07034~^~645~^5.601^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07034~^~646~^1.134^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07036~^~312~^0.064^5^0.006^~1~^~A~^^^1^0.052^0.078^2^0.037^0.090^~2, 3~^~11/01/2016~ -~07036~^~315~^0.032^5^0.007^~1~^~A~^^^1^0.017^0.043^2^0.005^0.060^~1, 2, 3~^~11/01/2016~ -~07036~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07036~^~406~^5.800^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07036~^~521~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~07036~^~605~^0.115^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~606~^8.615^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~607~^0.006^5^0.001^~1~^~A~^^^1^0.004^0.008^2^0.003^0.009^~2, 3~^~11/01/2016~ -~07036~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07036~^~609~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.003^~1, 2, 3~^~10/01/2016~ -~07036~^~610~^0.014^5^0.002^~1~^~A~^^^1^0.012^0.019^2^0.007^0.022^~2, 3~^~11/01/2016~ -~07036~^~611~^0.016^5^0.001^~1~^~A~^^^1^0.014^0.020^2^0.011^0.022^~2, 3~^~10/01/2016~ -~07036~^~612~^0.310^5^0.024^~1~^~A~^^^1^0.268^0.377^2^0.207^0.413^~2, 3~^~11/01/2016~ -~07036~^~613~^5.373^5^0.359^~1~^~A~^^^1^4.682^6.323^2^3.837^6.908^~2, 3~^~11/01/2016~ -~07036~^~614~^2.738^5^0.175^~1~^~A~^^^1^2.387^3.201^2^1.987^3.489^~2, 3~^~11/01/2016~ -~07036~^~615~^0.061^5^0.003^~1~^~A~^^^1^0.051^0.069^2^0.048^0.075^~2, 3~^~11/01/2016~ -~07036~^~617~^10.132^5^0.679^~1~^~AS~^^^1^8.667^11.887^2^7.266^12.998^~2, 3~^~11/01/2016~ -~07036~^~618~^3.820^5^0.253^~1~^~AS~^^^1^3.456^4.458^2^2.800^4.841^~2, 3~^~11/01/2016~ -~07036~^~619~^0.158^5^0.018^~1~^~AS~^^^1^0.118^0.197^2^0.086^0.230^~2, 3~^~11/01/2016~ -~07036~^~620~^0.093^5^0.001^~1~^~A~^^^1^0.087^0.097^1^0.083^0.102^~2, 3~^~11/01/2016~ -~07036~^~621~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~11/01/2016~ -~07036~^~624~^0.011^5^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.014^~2, 3~^~11/01/2016~ -~07036~^~625~^0.006^5^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.008^~2, 3~^~11/01/2016~ -~07036~^~626~^0.541^5^0.045^~1~^~AS~^^^1^0.463^0.657^2^0.350^0.731^~2, 3~^~11/01/2016~ -~07036~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07036~^~628~^0.282^5^0.018^~1~^~A~^^^1^0.250^0.329^2^0.204^0.361^~2, 3~^~11/01/2016~ -~07036~^~629~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~1, 2, 3~^~10/01/2016~ -~07036~^~630~^0.010^5^0.001^~1~^~AS~^^^1^0.008^0.013^2^0.005^0.015^~2, 3~^~10/01/2016~ -~07036~^~631~^0.021^5^0.003^~1~^~A~^^^1^0.015^0.030^2^0.007^0.035^~2, 3~^~11/01/2016~ -~07036~^~645~^11.024^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~646~^4.386^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~652~^0.012^5^0.001^~1~^~A~^^^1^0.010^0.016^2^0.006^0.018^~2, 3~^~10/01/2016~ -~07036~^~653~^0.068^5^0.009^~1~^~A~^^^1^0.055^0.093^2^0.030^0.106^~2, 3~^~11/01/2016~ -~07036~^~654~^0.004^5^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~11/01/2016~ -~07036~^~662~^0.007^5^0.001^~1~^~A~^^^1^0.004^0.010^2^0.001^0.013^~2, 3~^~10/01/2016~ -~07036~^~663~^0.085^5^0.013^~1~^~A~^^^1^0.061^0.116^2^0.030^0.139^~2, 3~^~11/01/2016~ -~07036~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07036~^~665~^0.023^5^0.004^~1~^~A~^^^1^0.018^0.032^2^0.008^0.038^~2, 3~^~10/01/2016~ -~07036~^~670~^0.028^5^0.003^~1~^~A~^^^1^0.024^0.037^2^0.014^0.042^~2, 3~^~10/01/2016~ -~07036~^~671~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.004^3^0.001^0.005^~1, 2, 3~^~10/01/2016~ -~07036~^~672~^0.192^5^0.007^~1~^~A~^^^1^0.179^0.211^2^0.160^0.223^~2, 3~^~11/01/2016~ -~07036~^~673~^0.534^5^0.044^~1~^~A~^^^1^0.457^0.647^2^0.347^0.720^~2, 3~^~11/01/2016~ -~07036~^~674~^10.047^5^0.672^~1~^~A~^^^1^8.594^11.771^2^7.210^12.885^~2, 3~^~11/01/2016~ -~07036~^~675~^3.769^5^0.247^~1~^~A~^^^1^3.414^4.389^2^2.778^4.761^~2, 3~^~11/01/2016~ -~07036~^~676~^0.010^5^0.001^~1~^~A~^^^1^0.008^0.013^2^0.005^0.015^~2, 3~^~10/01/2016~ -~07036~^~685~^0.005^5^0.001^~1~^~A~^^^1^0.003^0.008^2^0.000^0.010^~2, 3~^~11/01/2016~ -~07036~^~687~^0.051^5^0.007^~1~^~A~^^^1^0.041^0.071^2^0.020^0.082^~2, 3~^~11/01/2016~ -~07036~^~689~^0.057^5^0.004^~1~^~AS~^^^1^0.050^0.069^2^0.039^0.075^~2, 3~^~11/01/2016~ -~07036~^~693~^0.091^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07036~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07036~^~851~^0.152^5^0.017^~1~^~A~^^^1^0.115^0.191^2^0.084^0.221^~2, 3~^~11/01/2016~ -~07036~^~852~^0.027^5^0.004^~1~^~A~^^^1^0.020^0.038^2^0.008^0.045^~2, 3~^~11/01/2016~ -~07036~^~853~^0.031^5^0.000^~1~^~A~^^^1^0.029^0.031^1^0.028^0.033^~2, 3~^~11/01/2016~ -~07036~^~856~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2016~ -~07036~^~858~^0.038^5^0.001^~1~^~A~^^^1^0.035^0.040^2^0.036^0.040^~2, 3~^~11/01/2016~ -~07038~^~312~^0.060^5^0.011^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~315~^0.021^0^^~4~^^^^^^^^^^^~06/01/2002~ -~07038~^~404~^0.342^5^0.015^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~405~^0.140^5^0.006^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~406~^2.734^5^0.117^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~410~^0.320^1^^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~415~^0.170^5^0.012^~1~^^^^^^^^^^^~06/01/2002~ -~07038~^~501~^0.138^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~502~^0.432^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~503~^0.639^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~504~^0.874^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~505~^1.010^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~506~^0.276^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~507~^0.225^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~508~^0.501^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~509~^0.490^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~510~^0.639^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~511~^0.942^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~512~^0.314^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~513~^0.848^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~514~^1.218^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~515~^1.618^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~516~^1.039^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~517~^0.687^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~518~^0.530^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~ -~07038~^~606~^10.210^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~610~^0.110^5^0.055^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~611~^0.090^5^0.052^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~612~^0.580^5^0.069^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~613~^5.970^5^0.270^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~614~^3.460^5^0.086^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~617~^11.530^5^0.700^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~618~^2.480^5^0.223^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~619~^0.440^5^0.085^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~626~^1.280^5^0.042^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2002~ -~07038~^~645~^12.810^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07038~^~646~^2.920^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~312~^0.073^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~315~^0.022^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~404~^0.101^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~405~^0.165^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~406~^3.223^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~410~^0.320^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~415~^0.391^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07039~^~606~^2.794^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~607~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~608~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~609~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~610~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~611~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~612~^0.333^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~613~^1.172^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~614~^1.289^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~617~^4.029^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~618~^0.246^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~619~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~620~^0.011^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~621~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~626~^0.363^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~627~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~628~^0.044^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~629~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~630~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~631~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~04/01/2003~ -~07039~^~645~^4.436^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07039~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~07040~^~312~^0.383^6^0.060^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~315~^0.200^6^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~404~^0.212^6^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~405~^2.227^6^0.078^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~406~^11.768^6^1.510^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~410~^3.536^5^0.068^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~415~^0.470^6^0.084^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~501~^0.206^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~502~^0.651^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~503~^0.631^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~504~^1.331^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~505~^1.178^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~506~^0.342^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~507~^0.328^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~508~^0.716^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~509~^0.466^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~510~^0.806^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~511~^0.828^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~512~^0.393^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~513~^0.930^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~514~^1.350^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~515~^1.834^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~516~^0.935^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~517~^0.716^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~518~^0.690^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~606~^8.960^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~607~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~608~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~609~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~610~^0.050^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~611~^0.040^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~612~^0.320^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~613~^5.510^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~614~^3.040^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~617~^11.320^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~618~^3.090^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~619~^0.330^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~620~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~621~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~626~^0.940^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~627~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~628~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~629~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~630~^0.000^7^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~631~^0.000^7^0.000^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~645~^12.260^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07040~^~646~^3.420^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~312~^0.240^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~315~^0.155^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~404~^0.272^5^0.023^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~405~^1.030^5^0.139^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~406~^4.300^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~410~^2.950^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~415~^0.190^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~501~^0.151^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~502~^0.671^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~503~^0.653^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~504~^1.139^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~505~^1.155^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~506~^0.285^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~507~^0.149^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~508~^0.617^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~509~^0.362^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~510~^0.857^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~511~^0.812^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~512~^0.448^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~513~^0.830^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~514~^1.164^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~515~^2.195^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~516~^1.096^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~517~^0.850^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~518~^0.694^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~606~^10.600^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~610~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~611~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~612~^0.430^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~613~^6.850^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~614~^3.310^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~617~^12.050^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~618~^2.450^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~619~^0.140^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~620~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~621~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~626~^1.060^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~627~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~628~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~629~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~630~^0.000^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~645~^13.340^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07041~^~646~^2.600^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07043~^~312~^0.086^15^0.004^~1~^~A~^^^1^0.061^0.115^6^0.076^0.096^~2, 3~^~04/01/2014~ -~07043~^~315~^0.015^15^0.000^~1~^~A~^^^1^0.015^0.021^5^0.015^0.016^~1, 2, 3~^~03/01/2007~ -~07043~^~404~^0.043^9^0.001^~1~^~A~^^^1^0.034^0.050^4^0.040^0.045^~2, 3~^~04/01/2014~ -~07043~^~405~^0.213^9^0.003^~1~^~A~^^^1^0.200^0.240^2^0.202^0.224^~2, 3~^~04/01/2014~ -~07043~^~406~^5.581^9^0.095^~1~^~A~^^^1^5.040^6.090^3^5.268^5.894^~2, 3~^~04/01/2014~ -~07043~^~410~^0.566^6^0.009^~1~^~A~^^^1^0.500^0.640^2^0.519^0.614^~2, 3~^~04/01/2014~ -~07043~^~415~^0.460^9^0.010^~1~^~A~^^^1^0.375^0.556^2^0.420^0.499^~2, 3~^~04/01/2014~ -~07043~^~521~^0.127^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~07043~^~605~^0.148^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~606~^1.318^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~607~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~608~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~609~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07043~^~610~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~07043~^~611~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~07043~^~612~^0.085^15^0.004^~1~^~A~^^^1^0.025^0.116^11^0.077^0.093^~2, 3~^~04/01/2014~ -~07043~^~613~^0.748^15^0.031^~1~^~A~^^^1^0.307^1.019^8^0.677^0.819^~2, 3~^~04/01/2014~ -~07043~^~614~^0.429^15^0.017^~1~^~A~^^^1^0.207^0.586^8^0.390^0.469^~2, 3~^~04/01/2014~ -~07043~^~615~^0.004^15^0.000^~1~^~A~^^^1^0.002^0.005^8^0.003^0.004^~1, 2, 3~^~04/01/2014~ -~07043~^~617~^1.333^15^0.052^~1~^~AS~^^^1^0.489^1.718^9^1.216^1.450^~2, 3~^~04/01/2014~ -~07043~^~618~^0.178^15^0.006^~1~^~AS~^^^1^0.098^0.237^9^0.165^0.192^~2, 3~^~04/01/2014~ -~07043~^~619~^0.018^15^0.001^~1~^~AS~^^^1^0.011^0.028^11^0.017^0.020^~2, 3~^~04/01/2014~ -~07043~^~620~^0.037^15^0.000^~1~^~A~^^^1^0.032^0.042^10^0.035^0.038^~2, 3~^~04/01/2014~ -~07043~^~621~^0.001^15^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.001^~1, 2, 3~^~04/01/2014~ -~07043~^~624~^0.002^15^0.000^~1~^~A~^^^1^0.001^0.003^5^0.002^0.002^~1, 2, 3~^~04/01/2014~ -~07043~^~625~^0.026^15^0.001^~1~^~A~^^^1^0.006^0.040^10^0.023^0.028^~2, 3~^~04/01/2014~ -~07043~^~626~^0.124^15^0.005^~1~^~AS~^^^1^0.044^0.164^12^0.112^0.135^~2, 3~^~04/01/2014~ -~07043~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~05/01/2004~ -~07043~^~628~^0.011^15^0.000^~1~^~A~^^^1^0.004^0.015^11^0.010^0.012^~2, 3~^~04/01/2014~ -~07043~^~629~^0.007^15^0.000^~1~^~A~^^^1^0.005^0.008^10^0.006^0.007^~2, 3~^~04/01/2014~ -~07043~^~630~^0.000^15^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~07043~^~631~^0.012^15^0.000^~1~^~A~^^^1^0.009^0.015^9^0.011^0.013^~2, 3~^~04/01/2014~ -~07043~^~645~^1.521^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~646~^0.270^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~652~^0.014^15^0.001^~1~^~A~^^^1^0.005^0.020^9^0.013^0.015^~2, 3~^~04/01/2014~ -~07043~^~653~^0.036^15^0.001^~1~^~A~^^^1^0.013^0.051^9^0.033^0.039^~2, 3~^~04/01/2014~ -~07043~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~03/01/2009~ -~07043~^~662~^0.013^15^0.000^~1~^~A~^^^1^0.007^0.018^11^0.012^0.014^~2, 3~^~04/01/2014~ -~07043~^~663~^0.116^15^0.006^~1~^~A~^^^1^0.026^0.176^10^0.103^0.129^~2, 3~^~04/01/2014~ -~07043~^~664~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~665~^0.019^15^0.001^~1~^~A~^^^1^0.007^0.030^11^0.016^0.022^~2, 3~^~04/01/2014~ -~07043~^~670~^0.020^15^0.001^~1~^~A~^^^1^0.006^0.028^11^0.018^0.022^~2, 3~^~04/01/2014~ -~07043~^~671~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~672~^0.002^15^0.000^~1~^~A~^^^1^0.001^0.002^6^0.002^0.002^~1, 2, 3~^~04/01/2014~ -~07043~^~673~^0.111^15^0.005^~1~^~A~^^^1^0.036^0.149^12^0.100^0.121^~2, 3~^~04/01/2014~ -~07043~^~674~^1.217^15^0.050^~1~^~A~^^^1^0.463^1.542^9^1.105^1.328^~2, 3~^~04/01/2014~ -~07043~^~675~^0.140^15^0.004^~1~^~A~^^^1^0.085^0.194^8^0.129^0.150^~2, 3~^~04/01/2014~ -~07043~^~676~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~07043~^~685~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.001^4^0.001^0.001^~1, 2, 3~^~04/01/2014~ -~07043~^~687~^0.028^15^0.001^~1~^~A~^^^1^0.009^0.038^11^0.026^0.030^~2, 3~^~04/01/2014~ -~07043~^~689~^0.011^15^0.000^~1~^~AS~^^^1^0.008^0.017^5^0.010^0.012^~2, 3~^~04/01/2014~ -~07043~^~693~^0.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~07043~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~07043~^~851~^0.017^15^0.001^~1~^~A~^^^1^0.011^0.026^10^0.016^0.019^~2, 3~^~04/01/2014~ -~07043~^~852~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~07043~^~853~^0.011^15^0.000^~1~^~A~^^^1^0.008^0.017^5^0.010^0.012^~2, 3~^~04/01/2014~ -~07043~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~04/01/2014~ -~07043~^~858~^0.003^15^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~04/01/2014~ -~07045~^~312~^0.037^8^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~315~^0.024^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~404~^0.367^8^0.031^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~405~^0.194^8^0.023^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~406~^3.126^8^0.236^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~410~^0.473^3^0.089^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~415~^0.210^8^0.016^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~501~^0.122^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~502~^0.487^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~503~^0.571^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~504~^0.952^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~505~^0.931^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~506~^0.333^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~507~^0.214^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~508~^0.491^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~509~^0.383^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~510~^0.653^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~511~^0.867^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~512~^0.357^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~513~^0.877^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~514~^1.148^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~515~^1.837^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~516~^1.080^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~517~^0.679^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~518~^0.497^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~606~^10.790^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~607~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~608~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~609~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~610~^0.080^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~611~^0.060^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~612~^0.370^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~613~^6.680^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~614~^3.590^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~617~^13.140^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~618~^3.080^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~619~^0.470^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~620~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~621~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~626~^1.140^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~627~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~628~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~629~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~630~^0.000^8^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~631~^0.000^8^0.000^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~645~^14.290^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07045~^~646~^3.560^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07046~^~312~^0.057^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~315~^0.018^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~404~^0.130^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~405~^0.320^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~406~^0.110^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~ -~07046~^~410~^0.166^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~415~^0.128^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~501~^0.194^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~502~^0.759^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~503~^0.888^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~504~^1.360^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~505~^1.609^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~506~^0.495^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~507~^0.178^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~508~^0.678^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~509~^0.675^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~510~^0.907^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~511~^1.191^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~512~^0.533^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~513~^1.057^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~514~^1.658^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~515~^2.786^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~516~^0.847^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~517~^0.711^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~518~^0.759^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~521~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~ -~07046~^~605~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~606~^0.197^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~07046~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~612~^0.005^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~613~^0.144^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~614~^0.047^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~617~^0.216^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~618~^0.159^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~619~^0.010^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~620~^0.010^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~621~^0.002^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~626~^0.045^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~07046~^~631~^0.002^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~ -~07046~^~645~^0.261^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~07046~^~646~^0.184^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~07050~^~312~^0.060^4^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~315~^0.030^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~404~^0.119^27^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~405~^0.153^27^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~406~^2.673^6^0.185^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~410~^0.440^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07050~^~415~^0.130^4^0.030^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~501~^0.152^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~502~^0.633^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~503~^0.708^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~504~^1.213^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~505~^1.262^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~506~^0.394^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~508~^0.598^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~509~^0.530^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~510~^0.735^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~511~^1.025^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~512~^0.520^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~513~^1.149^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~514~^1.580^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~515~^2.619^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~516~^1.318^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~517~^1.099^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~518~^0.664^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~606~^9.510^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~610~^0.120^4^0.032^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~611~^0.070^4^0.024^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~612~^0.510^4^0.045^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~613~^5.430^4^0.437^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~614~^3.230^4^0.204^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~617~^10.240^4^0.768^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~618~^2.910^4^0.165^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~619~^0.220^4^0.031^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~626~^1.140^4^0.064^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~645~^11.380^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07050~^~646~^3.120^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~312~^0.050^4^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~315~^0.035^3^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~404~^0.295^4^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~405~^0.260^4^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~406~^1.835^4^0.096^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~410~^0.770^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~415~^0.230^4^0.058^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~501~^0.104^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~502~^0.472^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~503~^0.421^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~504~^0.870^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~505~^0.809^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~506~^0.301^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~507~^0.144^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~508~^0.419^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~509~^0.383^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~510~^0.508^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~511~^0.583^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~512~^0.292^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~513~^0.618^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~514~^0.951^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~515~^1.919^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~516~^0.680^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~517~^0.830^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~518~^0.517^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~606~^5.850^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~607~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~608~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~609~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~610~^0.010^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~611~^0.010^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~612~^0.270^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~613~^3.540^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~614~^2.020^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~617~^7.210^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~618~^1.820^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~619~^0.110^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~620~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~621~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~626~^0.660^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~627~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~628~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~629~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~630~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~631~^0.000^4^0.000^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~645~^7.870^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07051~^~646~^1.930^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07052~^~312~^0.050^1^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~315~^0.013^0^^~4~^^^^^^^^^^^~01/01/2008~ -~07052~^~404~^0.055^2^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~405~^0.250^2^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~406~^3.527^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~410~^0.580^0^^~4~^^^^^^^^^^^~01/01/2008~ -~07052~^~415~^0.270^0^^~4~^^^^^^^^^^^~01/01/2008~ -~07052~^~501~^0.203^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~502~^0.798^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~503~^0.918^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~504~^1.421^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~505~^1.662^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~506~^0.512^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~507~^0.206^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~508~^0.715^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~509~^0.694^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~510~^0.952^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~511~^1.290^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~512~^0.549^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~513~^1.166^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~514~^1.761^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~515~^2.920^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~516~^1.103^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~517~^0.850^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~518~^0.806^0^^~1~^^^^^^^^^^^~01/01/2008~ -~07052~^~606~^1.395^2^^~1~^~A~^^^1^1.190^1.600^1^^^^~08/01/2013~ -~07052~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~612~^0.040^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~613~^1.110^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~614~^0.450^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~617~^1.660^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~618~^1.320^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~619~^0.070^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~620~^0.120^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~621~^0.020^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~626~^0.340^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07052~^~630~^0.010^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~631~^0.020^0^^~1~^^^^^^^^^^^~05/01/2013~ -~07052~^~645~^1.930^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~07052~^~646~^1.420^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~07053~^~312~^0.180^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~315~^0.162^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~404~^0.052^5^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~405~^1.401^5^0.032^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~406~^7.517^5^0.065^~1~^^^^^^^^^^^~09/01/1980~ -~07053~^~410~^2.620^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~415~^0.260^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~501~^0.195^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~502~^0.601^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~503~^0.735^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~504~^1.196^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~505~^0.953^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~506~^0.340^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~507~^0.218^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~508~^0.694^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~509~^0.490^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~510~^0.863^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~511~^0.816^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~512~^0.347^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~513~^0.763^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~514~^1.251^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~515~^1.942^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~516~^0.693^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~517~^0.700^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~518~^0.687^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~606~^4.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~612~^0.090^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~613~^2.790^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~614~^1.020^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~617~^4.510^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~618~^2.160^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~619~^0.100^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~620~^0.100^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~626~^0.620^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~645~^5.280^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07053~^~646~^2.460^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~312~^0.400^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~315~^0.120^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~404~^0.088^5^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~405~^0.299^5^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~406~^2.510^5^0.056^~1~^^^^^^^^^^^~09/01/1980~ -~07054~^~410~^1.200^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~415~^0.060^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~501~^0.161^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~502~^0.507^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~503~^0.606^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~504~^1.029^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~505~^0.863^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~506~^0.270^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~507~^0.153^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~508~^0.567^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~509~^0.401^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~510~^0.719^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~511~^0.699^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~512~^0.303^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~513~^0.662^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~514~^1.083^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~515~^1.477^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~516~^0.662^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~517~^0.565^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~518~^0.491^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~606~^14.450^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~611~^0.030^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~612~^0.290^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~613~^9.450^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~614~^4.580^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~617~^24.040^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~618~^0.570^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~619~^0.010^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~620~^0.250^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~626~^1.400^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~628~^0.130^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~645~^25.610^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07054~^~646~^0.840^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~312~^0.400^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~315~^0.120^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~404~^0.030^10^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~405~^0.600^10^0.063^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~406~^3.300^10^0.190^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~410~^1.200^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~415~^0.060^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~501~^0.157^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~502~^0.568^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~503~^0.554^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~504~^1.050^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~505~^0.838^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~506~^0.284^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~507~^0.170^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~508~^0.582^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~509~^0.454^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~510~^0.768^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~511~^0.895^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~512~^0.298^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~513~^0.952^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~514~^1.163^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~515~^1.904^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~516~^1.363^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~517~^0.995^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~518~^0.595^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07055~^~606~^9.570^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~612~^0.390^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~613~^6.090^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~614~^2.960^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~617~^11.410^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~618~^2.750^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~619~^0.210^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~626~^0.950^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~645~^12.360^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07055~^~646~^3.160^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07056~^~312~^0.120^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~315~^0.060^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~404~^0.380^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~405~^0.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~406~^3.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~410~^0.530^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~415~^0.270^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~606~^2.280^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07056~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~608~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~609~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~610~^0.030^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~611~^0.010^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~612~^0.090^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~613~^1.360^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~614~^0.790^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~617~^2.720^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~618~^0.430^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~619~^0.070^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~626~^0.280^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~07056~^~645~^3.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07056~^~646~^0.500^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~07057~^~312~^0.091^6^0.003^~1~^~A~^^^1^0.083^0.100^5^0.084^0.099^~2, 3~^~04/01/2015~ -~07057~^~315~^1.074^6^0.061^~1~^~A~^^^1^0.873^1.300^5^0.917^1.231^~2, 3~^~04/01/2015~ -~07057~^~404~^0.271^3^0.004^~1~^~A~^^^1^0.263^0.278^2^0.252^0.289^~2, 3~^~04/01/2015~ -~07057~^~405~^0.257^3^0.009^~1~^~A~^^^1^0.240^0.270^2^0.219^0.295^~2, 3~^~04/01/2015~ -~07057~^~406~^4.987^3^0.053^~1~^~A~^^^1^4.880^5.040^2^4.757^5.216^~2, 3~^~04/01/2015~ -~07057~^~410~^0.930^2^^~1~^~A~^^^1^0.910^0.950^1^^^^~04/01/2015~ -~07057~^~415~^0.362^2^^~1~^~A~^^^1^0.356^0.368^1^^^^~04/01/2015~ -~07057~^~501~^0.230^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~502~^0.869^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~503~^0.901^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~504~^1.575^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~505~^1.652^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~506~^0.511^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~507~^0.228^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~508~^0.778^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~509~^0.661^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~510~^0.987^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~511~^1.298^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~512~^0.688^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~513~^1.178^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~514~^1.825^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~515~^3.009^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~516~^1.073^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~517~^0.862^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~518~^0.771^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~07057~^~521~^0.382^3^0.054^~1~^~A~^^^1^0.274^0.437^2^0.150^0.613^~2, 3~^~03/01/2007~ -~07057~^~605~^1.527^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~606~^17.708^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~607~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 2, 3~^~04/01/2015~ -~07057~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2015~ -~07057~^~609~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~07057~^~610~^0.028^6^0.002^~1~^~A~^^^1^0.020^0.035^5^0.023^0.034^~2, 3~^~04/01/2015~ -~07057~^~611~^0.034^6^0.001^~1~^~A~^^^1^0.031^0.037^5^0.032^0.037^~2, 3~^~04/01/2015~ -~07057~^~612~^1.029^6^0.030^~1~^~A~^^^1^0.925^1.142^5^0.951^1.108^~2, 3~^~04/01/2015~ -~07057~^~613~^10.316^6^0.188^~1~^~A~^^^1^9.537^10.745^5^9.834^10.799^~2, 3~^~04/01/2015~ -~07057~^~614~^5.749^6^0.135^~1~^~A~^^^1^5.239^6.136^5^5.402^6.095^~2, 3~^~04/01/2015~ -~07057~^~615~^0.063^6^0.001^~1~^~A~^^^1^0.060^0.066^5^0.061^0.065^~2, 3~^~04/01/2015~ -~07057~^~617~^18.690^6^0.273^~1~^~AS~^^^1^17.806^19.401^5^17.987^19.393^~2, 3~^~04/01/2015~ -~07057~^~618~^3.910^6^0.081^~1~^~AS~^^^1^3.583^4.153^5^3.701^4.120^~2, 3~^~04/01/2015~ -~07057~^~619~^0.168^6^0.003^~1~^~AS~^^^1^0.156^0.173^5^0.161^0.174^~2, 3~^~04/01/2015~ -~07057~^~620~^0.113^6^0.001^~1~^~A~^^^1^0.109^0.116^5^0.110^0.116^~2, 3~^~04/01/2015~ -~07057~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~07057~^~624~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.002^0.005^~1, 2, 3~^~04/01/2015~ -~07057~^~625~^0.218^6^0.007^~1~^~A~^^^1^0.196^0.235^5^0.200^0.235^~2, 3~^~04/01/2015~ -~07057~^~626~^1.367^6^0.018^~1~^~AS~^^^1^1.310^1.411^5^1.320^1.414^~2, 3~^~04/01/2015~ -~07057~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~07057~^~628~^0.255^6^0.002^~1~^~A~^^^1^0.250^0.261^5^0.251^0.259^~2, 3~^~04/01/2015~ -~07057~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2015~ -~07057~^~630~^0.004^6^0.000^~1~^~AS~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~07057~^~631~^0.020^6^0.000^~1~^~A~^^^1^0.018^0.021^5^0.018^0.021^~2, 3~^~04/01/2015~ -~07057~^~645~^20.770^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~646~^4.458^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~652~^0.127^6^0.007^~1~^~A~^^^1^0.107^0.157^5^0.108^0.146^~2, 3~^~04/01/2015~ -~07057~^~653~^0.348^6^0.019^~1~^~A~^^^1^0.304^0.423^5^0.298^0.397^~2, 3~^~04/01/2015~ -~07057~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2015~ -~07057~^~662~^0.065^6^0.002^~1~^~A~^^^1^0.056^0.071^5^0.058^0.071^~2, 3~^~04/01/2015~ -~07057~^~663~^1.336^6^0.128^~1~^~A~^^^1^1.022^1.800^5^1.006^1.665^~2, 3~^~04/01/2015~ -~07057~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~07057~^~665~^0.124^6^0.004^~1~^~A~^^^1^0.108^0.133^5^0.115^0.134^~2, 3~^~04/01/2015~ -~07057~^~670~^0.180^6^0.008^~1~^~A~^^^1^0.160^0.207^5^0.160^0.200^~2, 3~^~04/01/2015~ -~07057~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2015~ -~07057~^~672~^0.136^6^0.003^~1~^~A~^^^1^0.129^0.147^5^0.129^0.143^~2, 3~^~04/01/2015~ -~07057~^~673~^1.303^6^0.016^~1~^~A~^^^1^1.250^1.343^5^1.260^1.345^~2, 3~^~04/01/2015~ -~07057~^~674~^17.354^6^0.179^~1~^~A~^^^1^16.784^17.732^5^16.894^17.815^~2, 3~^~04/01/2015~ -~07057~^~675~^3.605^6^0.080^~1~^~A~^^^1^3.315^3.864^5^3.400^3.811^~2, 3~^~04/01/2015~ -~07057~^~676~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~07057~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~07057~^~687~^0.235^6^0.009^~1~^~A~^^^1^0.214^0.271^5^0.213^0.258^~2, 3~^~04/01/2015~ -~07057~^~689~^0.065^6^0.002^~1~^~AS~^^^1^0.059^0.072^5^0.059^0.070^~2, 3~^~04/01/2015~ -~07057~^~693~^1.400^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~695~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07057~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07057~^~851~^0.164^6^0.002^~1~^~A~^^^1^0.153^0.169^5^0.158^0.170^~2, 3~^~04/01/2015~ -~07057~^~852~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.019^5^0.016^0.019^~2, 3~^~04/01/2015~ -~07057~^~853~^0.040^6^0.001^~1~^~A~^^^1^0.038^0.042^5^0.039^0.042^~2, 3~^~04/01/2015~ -~07057~^~856~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2015~ -~07057~^~858~^0.037^6^0.001^~1~^~A~^^^1^0.035^0.039^5^0.036^0.039^~2, 3~^~04/01/2015~ -~07058~^~312~^0.105^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~315~^0.111^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~404~^0.392^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~405~^0.115^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~406~^2.486^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~410~^0.443^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~415~^0.418^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~501~^0.111^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~502~^0.415^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~503~^0.447^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~504~^0.748^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~505~^0.797^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~506~^0.258^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~507~^0.136^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~508~^0.392^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~509~^0.328^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~510~^0.479^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~511~^0.857^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~512~^0.309^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~513~^0.616^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~514~^0.923^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~515~^1.734^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~516~^0.696^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~517~^0.532^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~518~^0.420^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~606~^5.287^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07058~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~610~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07058~^~611~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07058~^~612~^0.204^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~613~^3.465^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~614~^1.498^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~615~^0.041^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~617~^6.343^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~618~^2.686^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~619~^0.117^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~626~^0.628^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~628~^0.088^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07058~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07058~^~645~^7.060^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07058~^~646~^2.804^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07058~^~653~^0.082^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07059~^~312~^0.090^6^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~315~^0.049^5^0.002^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~404~^0.502^6^0.027^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~405~^0.148^6^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~406~^3.443^6^0.088^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~410~^0.450^3^0.021^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~415~^0.190^6^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~501~^0.138^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~502~^0.591^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~503~^0.611^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~504~^1.076^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~505~^1.110^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~506~^0.379^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~507~^0.157^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~508~^0.539^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~509~^0.444^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~510~^0.679^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~511~^0.925^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~512~^0.444^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~513~^0.902^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~514~^1.293^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~515~^2.117^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~516~^0.992^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~517~^0.712^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~518~^0.584^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~606~^10.330^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~610~^0.070^6^0.034^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~611~^0.070^6^0.050^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~612~^0.400^6^0.053^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~613~^6.400^6^0.113^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~614~^3.380^6^0.085^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~617~^12.580^6^0.269^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~618~^2.790^6^0.063^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~619~^0.290^6^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~626~^0.950^6^0.021^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07059~^~645~^13.520^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07059~^~646~^3.080^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~312~^0.100^4^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~315~^0.041^4^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~404~^0.707^4^0.039^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~405~^0.297^4^0.024^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~406~^3.482^4^0.315^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~410~^0.515^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~415~^0.310^4^0.027^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~501~^0.215^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~502~^0.879^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~503~^0.815^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~504~^1.517^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~505~^1.653^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~506~^0.468^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~507~^0.153^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~508~^0.718^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~509~^0.644^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~510~^0.894^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~511~^1.170^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~512~^0.656^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~513~^1.073^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~514~^1.741^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~515~^2.941^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~516~^0.929^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~517~^0.912^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~518~^0.826^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~606~^1.580^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~607~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~608~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~609~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~610~^0.020^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~611~^0.010^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~612~^0.060^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~613~^0.970^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~614~^0.520^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~617~^2.150^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~618~^0.460^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~619~^0.050^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~620~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~621~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~626~^0.180^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~627~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~628~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~629~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~630~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~631~^0.000^4^0.000^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~645~^2.330^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07060~^~646~^0.510^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~312~^0.090^3^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~315~^0.066^3^0.009^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~404~^0.550^3^0.096^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~405~^0.170^3^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~406~^3.123^3^0.039^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~410~^0.470^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~415~^0.180^3^0.023^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~501~^0.171^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~502~^0.604^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~503~^0.637^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~504~^1.122^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~505~^1.178^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~506~^0.357^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~507~^0.205^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~508~^0.573^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~509~^0.447^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~510~^0.666^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~511~^0.910^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~512~^0.533^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~513~^0.759^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~514~^1.278^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~515~^2.294^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~516~^0.628^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~517~^0.675^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~518~^0.569^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~606~^7.950^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~610~^0.030^3^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~611~^0.010^3^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~612~^0.260^3^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~613~^4.970^3^0.133^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~614~^2.690^3^0.156^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~617~^9.680^3^0.195^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~618~^2.320^3^0.031^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~619~^0.260^3^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~626~^0.670^3^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07061~^~645~^10.340^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07061~^~646~^2.580^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~312~^0.070^5^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~315~^0.028^4^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~404~^0.374^5^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~405~^0.242^5^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~406~^2.306^5^0.187^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~410~^0.680^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~415~^0.300^5^0.075^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~501~^0.143^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~502~^0.656^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~503~^0.582^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~504~^1.146^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~505~^1.193^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~506~^0.377^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~507~^0.162^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~508~^0.537^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~509~^0.458^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~510~^0.642^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~511~^0.888^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~512~^0.437^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~513~^0.890^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~514~^1.318^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~515~^2.253^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~516~^0.972^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~517~^0.859^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~518~^0.656^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~606~^6.070^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~610~^0.080^4^0.026^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~611~^0.050^4^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~612~^0.290^5^0.016^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~613~^3.570^5^0.119^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~614~^2.080^5^0.062^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~617~^7.000^5^0.303^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~618~^1.680^5^0.025^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~619~^0.210^5^0.035^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~626~^0.680^5^0.038^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07062~^~645~^7.680^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07062~^~646~^1.890^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07063~^~312~^0.057^14^0.002^~1~^~A~^^^1^0.045^0.081^9^0.052^0.062^~2, 3~^~08/01/2015~ -~07063~^~315~^0.017^14^0.002^~1~^~A~^^^1^0.011^0.046^4^0.012^0.023^~1, 2, 3~^~08/01/2015~ -~07063~^~404~^0.223^8^0.016^~1~^~A~^^^1^0.120^0.300^4^0.177^0.269^~2, 3~^~08/01/2015~ -~07063~^~405~^0.147^8^0.007^~1~^~A~^^^1^0.120^0.180^3^0.123^0.171^~2, 3~^~04/01/2013~ -~07063~^~406~^5.418^8^0.083^~1~^~A~^^^1^5.080^6.150^2^5.101^5.734^~2, 3~^~08/01/2015~ -~07063~^~410~^0.690^5^0.028^~1~^~A~^^^1^0.570^0.830^1^0.367^1.012^~2, 3~^~08/01/2015~ -~07063~^~415~^0.174^8^0.003^~1~^~A~^^^1^0.160^0.200^3^0.162^0.186^~2, 3~^~08/01/2015~ -~07063~^~501~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~502~^0.577^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~503~^0.627^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~504~^1.201^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~505~^1.126^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~506~^0.381^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~507~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~508~^0.578^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~509~^0.468^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~510~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~511~^1.014^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~512~^0.484^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~513~^0.984^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~514~^1.398^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~515~^2.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~516~^1.064^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~517~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~518~^0.673^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07063~^~521~^0.305^0^^~4~^~BFPN~^~07970~^^^^^^^^^~08/01/2015~ -~07063~^~605~^0.101^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07063~^~606~^7.570^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~609~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~07063~^~610~^0.022^8^0.001^~1~^~A~^^^1^0.018^0.026^3^0.018^0.025^~2, 3~^~04/01/2013~ -~07063~^~611~^0.018^8^0.000^~1~^~A~^^^1^0.014^0.019^2^0.016^0.019^~2, 3~^~04/01/2013~ -~07063~^~612~^0.275^8^0.009^~1~^~A~^^^1^0.233^0.308^5^0.251^0.300^~2, 3~^~08/01/2015~ -~07063~^~613~^4.736^8^0.184^~1~^~A~^^^1^3.946^5.431^5^4.259^5.214^~2, 3~^~08/01/2015~ -~07063~^~614~^2.374^8^0.097^~1~^~A~^^^1^2.004^2.629^4^2.112^2.636^~2, 3~^~08/01/2015~ -~07063~^~615~^0.056^8^0.003^~1~^~A~^^^1^0.046^0.069^3^0.046^0.067^~2, 3~^~08/01/2015~ -~07063~^~617~^9.039^8^0.408^~1~^~AS~^^^1^7.537^10.959^5^7.989^10.089^~2, 3~^~08/01/2015~ -~07063~^~618~^3.859^8^0.110^~1~^~AS~^^^1^2.110^4.452^1^3.140^4.579^~2, 3~^~08/01/2015~ -~07063~^~619~^0.129^8^0.008^~1~^~AS~^^^1^0.070^0.189^5^0.108^0.149^~2, 3~^~08/01/2015~ -~07063~^~620~^0.107^8^0.002^~1~^~A~^^^1^0.095^0.116^3^0.100^0.113^~2, 3~^~04/01/2013~ -~07063~^~621~^0.003^8^0.001^~1~^~A~^^^1^0.000^0.005^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~07063~^~624~^0.008^8^0.001^~1~^~A~^^^1^0.005^0.013^4^0.006^0.011^~2, 3~^~04/01/2013~ -~07063~^~625~^0.005^8^0.000^~1~^~A~^^^1^0.003^0.008^5^0.004^0.006^~2, 3~^~04/01/2013~ -~07063~^~626~^0.468^8^0.023^~1~^~AS~^^^1^0.371^0.578^5^0.406^0.529^~2, 3~^~08/01/2015~ -~07063~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~628~^0.275^8^0.015^~1~^~A~^^^1^0.232^0.333^3^0.229^0.320^~2, 3~^~08/01/2015~ -~07063~^~629~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.004^5^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07063~^~630~^0.006^8^0.001^~1~^~AS~^^^1^0.004^0.007^3^0.004^0.007^~2, 3~^~04/01/2013~ -~07063~^~631~^0.021^8^0.001^~1~^~A~^^^1^0.018^0.028^3^0.019^0.023^~2, 3~^~04/01/2013~ -~07063~^~645~^9.844^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~646~^4.432^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~652~^0.013^8^0.000^~1~^~A~^^^1^0.009^0.015^2^0.011^0.015^~2, 3~^~04/01/2013~ -~07063~^~653~^0.065^8^0.003^~1~^~A~^^^1^0.047^0.084^3^0.055^0.076^~2, 3~^~08/01/2015~ -~07063~^~654~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07063~^~662~^0.007^8^0.001^~1~^~A~^^^1^0.003^0.012^4^0.004^0.010^~2, 3~^~04/01/2013~ -~07063~^~663~^0.072^8^0.006^~1~^~A~^^^1^0.053^0.103^3^0.053^0.092^~2, 3~^~08/01/2015~ -~07063~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~665~^0.022^8^0.002^~1~^~A~^^^1^0.015^0.032^4^0.017^0.028^~2, 3~^~08/01/2015~ -~07063~^~670~^0.029^8^0.002^~1~^~A~^^^1^0.025^0.041^4^0.025^0.033^~2, 3~^~04/01/2013~ -~07063~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~07063~^~672~^0.206^8^0.005^~1~^~A~^^^1^0.124^0.244^3^0.192^0.220^~2, 3~^~08/01/2015~ -~07063~^~673~^0.461^8^0.023^~1~^~A~^^^1^0.362^0.566^4^0.400^0.521^~2, 3~^~08/01/2015~ -~07063~^~674~^8.967^8^0.405^~1~^~A~^^^1^7.460^10.865^5^7.925^10.008^~2, 3~^~08/01/2015~ -~07063~^~675~^3.808^8^0.110^~1~^~A~^^^1^2.068^4.390^2^3.120^4.495^~2, 3~^~08/01/2015~ -~07063~^~676~^0.006^8^0.001^~1~^~A~^^^1^0.004^0.007^3^0.004^0.007^~2, 3~^~04/01/2013~ -~07063~^~685~^0.005^8^0.001^~1~^~A~^^^1^0.004^0.008^4^0.004^0.006^~2, 3~^~04/01/2013~ -~07063~^~687~^0.052^8^0.003^~1~^~A~^^^1^0.040^0.072^3^0.041^0.062^~2, 3~^~08/01/2015~ -~07063~^~689~^0.059^8^0.002^~1~^~AS~^^^1^0.039^0.076^5^0.055^0.064^~2, 3~^~08/01/2015~ -~07063~^~693~^0.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~07063~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~07063~^~851~^0.123^8^0.008^~1~^~A~^^^1^0.065^0.181^5^0.103^0.144^~2, 3~^~08/01/2015~ -~07063~^~852~^0.025^8^0.001^~1~^~A~^^^1^0.015^0.038^4^0.021^0.029^~2, 3~^~04/01/2013~ -~07063~^~853~^0.034^8^0.001^~1~^~A~^^^1^0.024^0.038^3^0.032^0.037^~2, 3~^~08/01/2015~ -~07063~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07063~^~858~^0.044^8^0.001^~1~^~A~^^^1^0.036^0.051^3^0.039^0.049^~2, 3~^~08/01/2015~ -~07064~^~312~^0.071^15^0.004^~1~^~A~^^^1^0.054^0.126^7^0.061^0.081^~2, 3~^~04/01/2013~ -~07064~^~315~^0.022^15^0.003^~1~^~A~^^^1^0.011^0.067^8^0.015^0.028^~1, 2, 3~^~04/01/2013~ -~07064~^~404~^0.256^9^0.021^~1~^~A~^^^1^0.100^0.340^5^0.201^0.311^~2, 3~^~04/01/2013~ -~07064~^~405~^0.176^9^0.016^~1~^~A~^^^1^0.140^0.240^2^0.114^0.237^~2, 3~^~04/01/2013~ -~07064~^~406~^6.119^9^0.154^~1~^~A~^^^1^5.560^7.430^5^5.711^6.526^~2, 3~^~04/01/2013~ -~07064~^~410~^0.805^6^0.023^~1~^~A~^^^1^0.720^0.980^1^0.646^0.964^~2, 3~^~04/01/2013~ -~07064~^~415~^0.195^9^0.007^~1~^~A~^^^1^0.170^0.220^3^0.173^0.218^~2, 3~^~04/01/2013~ -~07064~^~501~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~502~^0.615^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~503~^0.738^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~504~^1.361^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~505~^1.239^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~506~^0.426^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~507~^0.237^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~508~^0.662^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~509~^0.520^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~510~^0.876^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~511~^1.151^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~512~^0.536^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~513~^1.147^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~514~^1.574^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~515~^2.821^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~516~^1.264^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~517~^1.245^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~518~^0.765^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07064~^~521~^0.427^0^^~1~^~A~^~07969~^^^^^^^^^~04/01/2013~ -~07064~^~605~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~606~^8.826^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~609~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.005^4^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~07064~^~610~^0.024^9^0.000^~1~^~A~^^^1^0.019^0.026^4^0.022^0.025^~2, 3~^~04/01/2013~ -~07064~^~611~^0.020^9^0.000^~1~^~A~^^^1^0.017^0.025^3^0.019^0.021^~2, 3~^~04/01/2013~ -~07064~^~612~^0.322^9^0.007^~1~^~A~^^^1^0.282^0.391^4^0.303^0.340^~2, 3~^~04/01/2013~ -~07064~^~613~^5.545^9^0.129^~1~^~A~^^^1^4.798^6.713^3^5.151^5.939^~2, 3~^~04/01/2013~ -~07064~^~614~^2.749^9^0.071^~1~^~A~^^^1^2.386^3.391^4^2.547^2.950^~2, 3~^~04/01/2013~ -~07064~^~615~^0.067^9^0.003^~1~^~A~^^^1^0.052^0.087^3^0.056^0.078^~2, 3~^~04/01/2013~ -~07064~^~617~^10.578^9^0.277^~1~^~AS~^^^1^8.908^12.828^3^9.580^11.577^~2, 3~^~04/01/2013~ -~07064~^~618~^4.446^9^0.190^~1~^~AS~^^^1^3.089^6.504^4^3.892^5.000^~2, 3~^~04/01/2013~ -~07064~^~619~^0.146^9^0.012^~1~^~AS~^^^1^0.103^0.273^2^0.097^0.194^~2, 3~^~04/01/2013~ -~07064~^~620~^0.123^9^0.004^~1~^~A~^^^1^0.107^0.150^3^0.109^0.137^~2, 3~^~04/01/2013~ -~07064~^~621~^0.003^9^0.000^~1~^~A~^^^1^0.000^0.005^4^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~07064~^~624~^0.009^9^0.001^~1~^~A~^^^1^0.007^0.014^5^0.007^0.011^~2, 3~^~04/01/2013~ -~07064~^~625~^0.006^9^0.001^~1~^~A~^^^1^0.004^0.010^3^0.003^0.009^~2, 3~^~04/01/2013~ -~07064~^~626~^0.557^9^0.017^~1~^~AS~^^^1^0.461^0.697^4^0.510^0.604^~2, 3~^~04/01/2013~ -~07064~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~07064~^~628~^0.334^9^0.019^~1~^~A~^^^1^0.242^0.469^3^0.273^0.394^~2, 3~^~04/01/2013~ -~07064~^~629~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.004^3^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~07064~^~630~^0.006^9^0.001^~1~^~AS~^^^1^0.004^0.009^2^0.004^0.008^~2, 3~^~04/01/2013~ -~07064~^~631~^0.025^9^0.002^~1~^~A~^^^1^0.018^0.042^4^0.019^0.030^~2, 3~^~04/01/2013~ -~07064~^~645~^11.541^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~646~^5.115^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~652~^0.015^9^0.001^~1~^~A~^^^1^0.012^0.020^4^0.013^0.017^~2, 3~^~04/01/2013~ -~07064~^~653~^0.072^9^0.004^~1~^~A~^^^1^0.055^0.091^4^0.063^0.082^~2, 3~^~04/01/2013~ -~07064~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~07064~^~662~^0.008^9^0.001^~1~^~A~^^^1^0.006^0.011^4^0.006^0.010^~2, 3~^~04/01/2013~ -~07064~^~663~^0.084^9^0.006^~1~^~A~^^^1^0.066^0.122^4^0.067^0.101^~2, 3~^~04/01/2013~ -~07064~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07064~^~665~^0.027^9^0.003^~1~^~A~^^^1^0.018^0.053^3^0.019^0.035^~2, 3~^~04/01/2013~ -~07064~^~670~^0.033^9^0.002^~1~^~A~^^^1^0.026^0.047^6^0.028^0.039^~2, 3~^~04/01/2013~ -~07064~^~671~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~07064~^~672~^0.247^9^0.013^~1~^~A~^^^1^0.185^0.360^5^0.214^0.280^~2, 3~^~04/01/2013~ -~07064~^~673~^0.549^9^0.017^~1~^~A~^^^1^0.454^0.690^4^0.502^0.596^~2, 3~^~04/01/2013~ -~07064~^~674~^10.494^9^0.274^~1~^~A~^^^1^8.842^12.758^3^9.515^11.473^~2, 3~^~04/01/2013~ -~07064~^~675~^4.385^9^0.188^~1~^~A~^^^1^3.028^6.409^4^3.838^4.933^~2, 3~^~04/01/2013~ -~07064~^~676~^0.006^9^0.001^~1~^~A~^^^1^0.004^0.009^2^0.004^0.008^~2, 3~^~04/01/2013~ -~07064~^~685~^0.006^9^0.001^~1~^~A~^^^1^0.004^0.012^4^0.005^0.008^~2, 3~^~04/01/2013~ -~07064~^~687~^0.058^9^0.003^~1~^~A~^^^1^0.042^0.082^5^0.049^0.067^~2, 3~^~04/01/2013~ -~07064~^~689~^0.069^9^0.004^~1~^~AS~^^^1^0.055^0.106^4^0.059^0.079^~2, 3~^~04/01/2013~ -~07064~^~693~^0.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07064~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~07064~^~851~^0.139^9^0.011^~1~^~A~^^^1^0.097^0.261^2^0.092^0.186^~2, 3~^~04/01/2013~ -~07064~^~852~^0.030^9^0.002^~1~^~A~^^^1^0.022^0.054^2^0.022^0.037^~2, 3~^~04/01/2013~ -~07064~^~853~^0.039^9^0.002^~1~^~A~^^^1^0.033^0.052^4^0.034^0.044^~2, 3~^~04/01/2013~ -~07064~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~07064~^~858~^0.051^9^0.002^~1~^~A~^^^1^0.043^0.059^2^0.042^0.061^~2, 3~^~04/01/2013~ -~07065~^~312~^0.040^6^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~315~^0.037^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07065~^~404~^0.357^6^0.020^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~405~^0.147^6^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~406~^3.367^6^0.126^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~410~^0.480^6^0.038^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~415~^0.050^6^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~501~^0.132^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~502~^0.554^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~503~^0.530^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~504~^0.974^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~505~^1.088^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~506~^0.328^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~507~^0.139^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~508~^0.478^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~509~^0.405^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~510~^0.592^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~511~^0.850^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~512~^0.412^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~513~^0.812^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~514~^1.182^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~515~^1.995^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~516~^0.898^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~517~^0.654^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~518~^0.532^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~606~^12.960^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~610~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~611~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~612~^0.600^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~613~^8.310^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~614~^3.870^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~617~^15.800^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~618~^3.460^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~619~^0.320^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~620~^0.120^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~626~^1.350^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~645~^17.180^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07065~^~646~^3.900^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07066~^~312~^0.149^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~315~^0.221^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~404~^0.066^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~405~^0.151^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~406~^2.137^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~410~^0.722^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~415~^0.234^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~501~^0.193^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~502~^0.728^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~503~^0.829^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~504~^1.314^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~505~^1.437^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~506~^0.427^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~507~^0.207^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~508~^0.706^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~509~^0.628^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~510~^0.874^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~511~^1.234^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~512~^0.488^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~513~^1.058^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~514~^1.709^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~515~^2.796^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~516~^1.120^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~517~^0.884^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~518~^0.784^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~606~^2.871^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~611~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~612~^0.078^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~613~^1.906^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~614~^0.643^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~617~^3.131^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~618~^2.227^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~619~^0.142^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~620~^0.110^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~621~^0.024^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~626~^0.658^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~628~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~630~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~631~^0.016^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~645~^3.876^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~646~^2.541^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~ -~07066~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07066~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~ -~07067~^~312~^0.030^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~315~^0.009^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~404~^0.024^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~405~^0.071^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~406~^1.669^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~410~^0.270^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~415~^0.110^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~501~^0.130^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~502~^0.497^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~503~^0.584^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~504~^0.880^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~505~^1.010^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~506~^0.320^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~507~^0.141^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~508~^0.455^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~509~^0.412^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~510~^0.589^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~511~^0.779^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~512~^0.347^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~513~^0.713^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~514~^1.085^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~515~^1.789^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~516~^0.722^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~517~^0.551^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~518~^0.466^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~606~^3.450^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~612~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~613~^2.960^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~614~^0.440^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~617~^2.710^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~618~^5.970^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~619~^0.050^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~626~^0.250^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07067~^~645~^3.250^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07067~^~646~^6.220^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~312~^0.190^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~07068~^~315~^0.046^6^0.005^~1~^^^^^^^^^^^~09/01/2002~ -~07068~^~404~^0.103^24^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~405~^0.189^28^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~406~^3.238^28^0.071^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~410~^0.950^7^0.098^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~415~^0.180^28^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07068~^~501~^0.137^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~502~^0.568^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~503~^0.650^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~504~^1.104^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~505~^1.152^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~506~^0.349^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~507~^0.192^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~508~^0.541^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~509~^0.491^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~510~^0.662^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~511~^0.929^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~512~^0.479^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~513~^1.083^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~514~^1.472^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~515~^2.449^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~516~^1.256^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~517~^1.083^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~518~^0.606^0^^~1~^^^^^^^^^^^~03/01/2003~ -~07068~^~606~^9.865^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~610~^0.066^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~611~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2007~ -~07068~^~612~^0.565^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~613~^5.371^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~614~^3.863^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~617~^9.611^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~618~^0.660^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~619~^0.377^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~626~^1.036^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~07068~^~645~^10.648^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07068~^~646~^1.036^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07069~^~312~^0.357^3^0.187^~1~^~A~^^^1^0.161^0.731^2^-0.447^1.162^~2, 3~^~03/01/2007~ -~07069~^~315~^0.978^3^0.375^~1~^~A~^^^1^0.355^1.650^2^-0.634^2.590^~2, 3~^~03/01/2007~ -~07069~^~404~^0.367^3^0.045^~1~^~A~^^^1^0.281^0.433^2^0.173^0.561^~2, 3~^~03/01/2007~ -~07069~^~405~^0.357^3^0.012^~1~^~A~^^^1^0.344^0.380^2^0.306^0.407^~2, 3~^~03/01/2007~ -~07069~^~406~^6.053^3^0.267^~1~^~A~^^^1^5.680^6.570^2^4.905^7.201^~2, 3~^~03/01/2007~ -~07069~^~410~^1.201^3^0.126^~1~^~A~^^^1^0.984^1.420^2^0.660^1.743^~2, 3~^~03/01/2007~ -~07069~^~415~^0.459^3^0.040^~1~^~A~^^^1^0.382^0.517^2^0.286^0.631^~2, 3~^~03/01/2007~ -~07069~^~501~^0.114^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~502~^0.521^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~503~^0.675^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~504~^0.929^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~505~^1.107^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~506~^0.301^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~507~^0.196^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~508~^0.481^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~509~^0.552^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~510~^0.668^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~511~^0.855^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~512~^0.359^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~513~^0.880^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~514~^1.285^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~515~^1.929^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~516~^1.189^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~517~^0.831^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~518~^0.537^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~521~^0.318^3^0.058^~1~^~A~^^^1^0.239^0.430^2^0.069^0.566^~2, 3~^~03/01/2007~ -~07069~^~605~^0.586^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~606~^9.316^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07069~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07069~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07069~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~612~^0.466^3^0.059^~1~^~A~^^^1^0.388^0.581^2^0.214^0.718^~2, 3~^~03/01/2007~ -~07069~^~613~^5.619^3^0.664^~1~^~A~^^^1^4.319^6.506^2^2.761^8.476^~2, 3~^~03/01/2007~ -~07069~^~614~^3.008^3^0.330^~1~^~A~^^^1^2.354^3.404^2^1.590^4.426^~2, 3~^~03/01/2007~ -~07069~^~615~^0.038^3^0.004^~1~^~A~^^^1^0.030^0.044^2^0.020^0.057^~2, 3~^~03/01/2007~ -~07069~^~617~^10.219^3^1.346^~1~^~AS~^^^1^7.617^12.120^2^4.426^16.011^~2, 3~^~03/01/2007~ -~07069~^~618~^2.256^3^0.494^~1~^~AS~^^^1^1.346^3.046^2^0.129^4.384^~2, 3~^~03/01/2007~ -~07069~^~619~^0.126^3^0.018^~1~^~AS~^^^1^0.095^0.157^2^0.049^0.203^~2, 3~^~03/01/2007~ -~07069~^~620~^0.062^3^0.013^~1~^~A~^^^1^0.037^0.078^2^0.007^0.117^~2, 3~^~03/01/2007~ -~07069~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07069~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~625~^0.082^3^0.022^~1~^~A~^^^1^0.041^0.115^2^-0.012^0.176^~2, 3~^~03/01/2007~ -~07069~^~626~^0.690^3^0.091^~1~^~A~^^^1^0.583^0.872^2^0.297^1.083^~2, 3~^~03/01/2007~ -~07069~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07069~^~628~^0.137^3^0.025^~1~^~A~^^^1^0.087^0.169^2^0.028^0.245^~2, 3~^~03/01/2007~ -~07069~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07069~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~07069~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07069~^~645~^11.127^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~646~^2.529^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~652~^0.051^3^0.009^~1~^~A~^^^1^0.035^0.066^2^0.013^0.089^~2, 3~^~03/01/2007~ -~07069~^~653~^0.133^3^0.016^~1~^~A~^^^1^0.112^0.164^2^0.066^0.201^~2, 3~^~03/01/2007~ -~07069~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~663~^0.434^3^0.086^~1~^~A~^^^1^0.338^0.606^2^0.062^0.805^~2, 3~^~03/01/2007~ -~07069~^~669~^0.152^3^0.022^~1~^~A~^^^1^0.117^0.194^2^0.056^0.249^~2, 3~^~03/01/2007~ -~07069~^~672~^0.084^3^0.020^~1~^~A~^^^1^0.047^0.115^2^-0.002^0.170^~2, 3~^~03/01/2007~ -~07069~^~674~^9.785^3^1.283^~1~^~A~^^^1^7.279^11.514^2^4.266^15.304^~2, 3~^~03/01/2007~ -~07069~^~675~^2.104^3^0.501^~1~^~A~^^^1^1.200^2.929^2^-0.050^4.258^~2, 3~^~03/01/2007~ -~07069~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~693~^0.434^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~695~^0.152^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07069~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2009~ -~07069~^~851~^0.126^3^0.018^~1~^~A~^^^1^0.095^0.157^2^0.049^0.203^~2, 3~^~03/01/2007~ -~07070~^~312~^0.190^4^0.065^~12~^~MA~^^^^^^^^^^~01/01/2004~ -~07070~^~315~^0.020^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~07070~^~404~^0.426^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~405~^0.303^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~406~^3.979^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~410~^1.074^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~07070~^~415~^0.427^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~ -~07070~^~501~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~502~^0.681^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~503~^0.796^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~504~^1.219^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~505~^1.442^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~506~^0.443^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~508~^0.607^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~509~^0.605^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~510~^0.813^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~511~^1.067^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~512~^0.477^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~513~^0.947^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~514~^1.486^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~515~^2.497^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~516~^0.759^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~517~^0.637^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07070~^~521~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07070~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~ -~07070~^~606~^2.783^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~07070~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~07070~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~07070~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~611~^0.017^4^0.009^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~612~^0.121^4^0.013^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~613~^1.988^4^0.086^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~614~^0.657^4^0.013^~1~^~A~^^^^^^^^^^~01/01/2004~ -~07070~^~617~^2.878^4^0.073^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~618~^2.291^4^0.164^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~619~^0.052^4^0.035^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~620~^0.087^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~621~^0.022^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~626~^0.268^4^0.013^~1~^~A~^^^^^^^^^^~10/01/2002~ -~07070~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~07070~^~628~^0.026^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~07070~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~631~^0.014^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~ -~07070~^~645~^3.172^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07070~^~646~^2.466^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~07071~^~312~^0.160^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~315~^0.070^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~404~^0.930^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~405~^0.330^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~406~^5.600^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~410~^1.060^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07071~^~415~^0.550^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~501~^0.253^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~502~^1.012^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~503~^1.084^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~504~^1.625^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~505~^1.878^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~506~^0.470^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~507~^0.289^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~508~^0.940^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~509~^0.686^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~510~^1.120^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~511~^1.373^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~512~^0.614^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~513~^1.336^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~514~^2.095^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~515~^3.829^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~516~^1.553^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~517~^1.336^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~518~^0.903^1^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~606~^11.890^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~610~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~611~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~612~^0.520^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~613~^7.640^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~614~^3.560^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~617~^14.670^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~618~^3.270^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~619~^0.280^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~620~^0.160^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~626~^1.220^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~645~^16.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07071~^~646~^3.740^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07072~^~312~^0.096^12^0.004^~1~^~A~^^^1^0.061^0.123^4^0.083^0.108^~2, 3~^~05/01/2013~ -~07072~^~315~^0.948^12^0.031^~1~^~A~^^^1^0.054^1.600^2^0.822^1.073^~2, 3~^~05/01/2014~ -~07072~^~404~^0.386^6^0.008^~1~^~A~^^^1^0.299^0.472^3^0.360^0.412^~2, 3~^~05/01/2014~ -~07072~^~405~^0.196^6^0.001^~1~^~A~^^^1^0.180^0.220^3^0.192^0.201^~2, 3~^~05/01/2014~ -~07072~^~406~^6.105^6^0.047^~1~^~A~^^^1^5.810^6.470^3^5.957^6.253^~2, 3~^~05/01/2014~ -~07072~^~410~^1.011^4^0.013^~1~^~A~^^^1^0.950^1.200^2^0.957^1.065^~2, 3~^~05/01/2014~ -~07072~^~415~^0.441^6^0.007^~1~^~A~^^^1^0.400^0.501^3^0.420^0.463^~2, 3~^~05/01/2014~ -~07072~^~501~^0.251^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07072~^~502~^0.926^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~503~^0.998^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~504~^1.734^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~505~^1.874^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~506~^0.577^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~507~^0.238^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~07072~^~508~^0.875^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~509~^0.835^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~510~^1.066^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~511~^1.357^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~512~^0.857^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~513~^1.207^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~514~^1.971^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~515~^3.218^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~516~^0.952^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~517~^0.852^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~518~^0.880^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~521~^0.074^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07072~^~605~^0.480^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~606~^11.418^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.001^~1, 2, 3~^~05/01/2009~ -~07072~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~07072~^~609~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.004^~1, 2, 3~^~04/01/2012~ -~07072~^~610~^0.048^6^0.002^~1~^~A~^^^1^0.043^0.060^3^0.041^0.056^~2, 3~^~05/01/2013~ -~07072~^~611~^0.026^6^0.000^~1~^~A~^^^1^0.024^0.028^3^0.025^0.028^~2, 3~^~05/01/2013~ -~07072~^~612~^0.517^6^0.007^~1~^~A~^^^1^0.406^0.639^3^0.495^0.538^~2, 3~^~05/01/2014~ -~07072~^~613~^7.046^6^0.116^~1~^~A~^^^1^6.780^7.696^3^6.678^7.413^~2, 3~^~05/01/2014~ -~07072~^~614~^3.531^6^0.056^~1~^~A~^^^1^3.164^3.879^3^3.351^3.711^~2, 3~^~05/01/2014~ -~07072~^~615~^0.052^6^0.001^~1~^~A~^^^1^0.045^0.061^3^0.049^0.054^~2, 3~^~05/01/2014~ -~07072~^~617~^13.433^6^0.197^~1~^~AS~^^^1^12.731^14.856^3^12.806^14.060^~2, 3~^~05/01/2014~ -~07072~^~618~^4.264^6^0.126^~1~^~AS~^^^1^3.149^5.353^3^3.862^4.665^~2, 3~^~05/01/2014~ -~07072~^~619~^0.181^6^0.006^~1~^~AS~^^^1^0.138^0.234^3^0.161^0.200^~2, 3~^~05/01/2014~ -~07072~^~620~^0.136^6^0.002^~1~^~A~^^^1^0.119^0.156^3^0.132^0.141^~2, 3~^~05/01/2014~ -~07072~^~621~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.011^3^0.005^0.008^~2, 3~^~05/01/2014~ -~07072~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.004^~2, 3~^~04/01/2012~ -~07072~^~625~^0.053^6^0.000^~1~^~A~^^^1^0.010^0.115^3^0.052^0.054^~2, 3~^~05/01/2014~ -~07072~^~626~^0.843^6^0.011^~1~^~AS~^^^1^0.757^0.940^3^0.810^0.877^~2, 3~^~05/01/2014~ -~07072~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2013~ -~07072~^~628~^0.243^6^0.005^~1~^~A~^^^1^0.194^0.288^3^0.227^0.259^~2, 3~^~05/01/2014~ -~07072~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.004^~2, 3~^~05/01/2013~ -~07072~^~630~^0.023^6^0.000^~1~^~AS~^^^1^0.004^0.064^3^0.023^0.024^~2, 3~^~05/01/2014~ -~07072~^~631~^0.021^6^0.001^~1~^~A~^^^1^0.018^0.026^3^0.019^0.023^~2, 3~^~05/01/2013~ -~07072~^~645~^14.717^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~646~^4.895^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~652~^0.043^6^0.001^~1~^~A~^^^1^0.018^0.073^3^0.041^0.045^~2, 3~^~05/01/2014~ -~07072~^~653~^0.147^6^0.002^~1~^~A~^^^1^0.100^0.204^3^0.140^0.154^~2, 3~^~05/01/2014~ -~07072~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2012~ -~07072~^~662~^0.023^6^0.001^~1~^~A~^^^1^0.007^0.042^3^0.021^0.025^~2, 3~^~05/01/2014~ -~07072~^~663~^0.393^6^0.004^~1~^~A~^^^1^0.113^0.746^3^0.381^0.406^~2, 3~^~05/01/2014~ -~07072~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~665~^0.064^6^0.001^~1~^~A~^^^1^0.035^0.098^3^0.060^0.069^~2, 3~^~05/01/2014~ -~07072~^~670~^0.086^6^0.002^~1~^~A~^^^1^0.055^0.124^3^0.081^0.091^~2, 3~^~05/01/2014~ -~07072~^~671~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.005^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~672~^0.174^6^0.005^~1~^~A~^^^1^0.121^0.230^3^0.158^0.190^~2, 3~^~05/01/2014~ -~07072~^~673~^0.821^6^0.011^~1~^~A~^^^1^0.750^0.898^3^0.786^0.855^~2, 3~^~05/01/2014~ -~07072~^~674~^13.039^6^0.198^~1~^~A~^^^1^12.000^14.734^3^12.409^13.670^~2, 3~^~05/01/2014~ -~07072~^~675~^4.113^6^0.124^~1~^~A~^^^1^2.927^5.241^3^3.717^4.509^~2, 3~^~05/01/2014~ -~07072~^~676~^0.023^6^0.000^~1~^~A~^^^1^0.004^0.064^3^0.023^0.024^~2, 3~^~05/01/2014~ -~07072~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^3^0.002^0.004^~1, 2, 3~^~04/01/2012~ -~07072~^~687~^0.121^6^0.002^~1~^~A~^^^1^0.091^0.156^3^0.114^0.128^~2, 3~^~05/01/2014~ -~07072~^~689~^0.062^6^0.001^~1~^~AS~^^^1^0.052^0.073^3^0.058^0.065^~2, 3~^~05/01/2014~ -~07072~^~693~^0.416^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~695~^0.064^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07072~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2012~ -~07072~^~851~^0.178^6^0.006^~1~^~A~^^^1^0.133^0.232^3^0.157^0.198^~2, 3~^~05/01/2014~ -~07072~^~852~^0.023^6^0.001^~1~^~A~^^^1^0.016^0.031^3^0.021^0.025^~2, 3~^~05/01/2014~ -~07072~^~853~^0.038^6^0.001^~1~^~A~^^^1^0.034^0.043^3^0.036^0.040^~2, 3~^~04/01/2012~ -~07072~^~858~^0.043^6^0.001^~1~^~A~^^^1^0.037^0.052^3^0.040^0.046^~2, 3~^~05/01/2014~ -~07073~^~312~^0.130^5^0.041^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~315~^0.026^4^0.002^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~404~^0.172^5^0.013^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~405~^0.134^5^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~406~^1.730^5^0.066^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~410~^0.430^3^0.027^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~415~^0.120^5^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07073~^~501~^0.082^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~502~^0.334^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~503~^0.334^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~504~^0.600^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~505~^0.663^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~506~^0.196^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~507~^0.106^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~508~^0.301^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~509~^0.235^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~510~^0.356^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~511~^0.530^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~512~^0.279^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~513~^0.467^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~514~^0.720^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~515~^1.140^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~516~^0.441^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~517~^0.349^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~518~^0.305^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07073~^~606~^5.977^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07073~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~610~^0.050^2^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~611~^0.050^2^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~612~^0.289^5^0.027^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~613~^3.573^5^0.099^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~614~^2.016^5^0.076^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~617~^6.876^5^0.168^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~618~^2.185^5^0.068^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~619~^0.379^5^0.086^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~626~^0.709^5^0.059^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07073~^~645~^7.584^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07073~^~646~^2.565^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07074~^~312~^0.176^3^0.097^~1~^~A~^^^1^0.042^0.365^2^-0.243^0.594^~2, 3~^~03/01/2007~ -~07074~^~315~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~404~^0.212^3^0.016^~1~^~A~^^^1^0.192^0.244^2^0.142^0.282^~2, 3~^~03/01/2007~ -~07074~^~405~^0.180^3^0.016^~1~^~A~^^^1^0.148^0.198^2^0.111^0.248^~2, 3~^~03/01/2007~ -~07074~^~406~^2.807^3^0.072^~1~^~A~^^^1^2.680^2.930^2^2.496^3.117^~2, 3~^~03/01/2007~ -~07074~^~410~^0.536^3^0.043^~1~^~A~^^^1^0.472^0.618^2^0.351^0.721^~2, 3~^~03/01/2007~ -~07074~^~415~^0.179^3^0.012^~1~^~A~^^^1^0.157^0.199^2^0.127^0.231^~2, 3~^~03/01/2007~ -~07074~^~501~^0.216^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~502~^0.929^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~503~^0.951^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~504~^1.692^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~505~^1.745^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~506~^0.596^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~507~^0.248^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~508~^0.848^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~509~^0.699^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~510~^1.068^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~511~^1.454^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~512~^0.699^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~513~^1.419^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~514~^2.033^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~515~^3.327^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~516~^1.561^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~517~^1.121^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~518~^0.919^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~521~^0.210^3^0.018^~1~^~A~^^^1^0.175^0.228^2^0.135^0.285^~2, 3~^~03/01/2007~ -~07074~^~605~^0.231^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~606~^9.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07074~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~07074~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~612~^0.340^3^0.002^~1~^~A~^^^1^0.336^0.343^2^0.331^0.348^~2, 3~^~03/01/2007~ -~07074~^~613~^5.804^3^0.071^~1~^~A~^^^1^5.689^5.933^2^5.500^6.109^~2, 3~^~03/01/2007~ -~07074~^~614~^3.045^3^0.082^~1~^~A~^^^1^2.922^3.199^2^2.694^3.395^~2, 3~^~03/01/2007~ -~07074~^~615~^0.046^3^0.001^~1~^~A~^^^1^0.044^0.047^2^0.042^0.049^~2, 3~^~03/01/2007~ -~07074~^~617~^10.460^3^0.071^~1~^~AS~^^^1^10.387^10.602^2^10.154^10.765^~2, 3~^~03/01/2007~ -~07074~^~618~^3.258^3^0.054^~1~^~AS~^^^1^3.176^3.360^2^3.026^3.491^~2, 3~^~03/01/2007~ -~07074~^~619~^0.169^3^0.005^~1~^~AS~^^^1^0.159^0.177^2^0.146^0.193^~2, 3~^~03/01/2007~ -~07074~^~620~^0.064^3^0.000^~1~^~A~^^^1^0.064^0.065^2^0.063^0.066^~2, 3~^~03/01/2007~ -~07074~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~626~^0.565^3^0.007^~1~^~A~^^^1^0.556^0.579^2^0.534^0.596^~2, 3~^~03/01/2007~ -~07074~^~627~^0.000^4^^~1~^^^^^^^^^^^~09/01/1980~ -~07074~^~628~^0.187^3^0.004^~1~^~A~^^^1^0.180^0.192^2^0.171^0.203^~2, 3~^~03/01/2007~ -~07074~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2007~ -~07074~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~07074~^~645~^11.212^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~646~^3.626^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~653~^0.079^3^0.001^~1~^~A~^^^1^0.078^0.081^2^0.076^0.083^~2, 3~^~03/01/2007~ -~07074~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~663~^0.158^3^0.020^~1~^~A~^^^1^0.133^0.198^2^0.070^0.245^~2, 3~^~03/01/2007~ -~07074~^~669~^0.073^3^0.010^~1~^~A~^^^1^0.063^0.092^2^0.032^0.114^~2, 3~^~03/01/2007~ -~07074~^~672~^0.134^3^0.001^~1~^~A~^^^1^0.132^0.136^2^0.129^0.139^~2, 3~^~03/01/2007~ -~07074~^~674~^10.302^3^0.085^~1~^~A~^^^1^10.189^10.469^2^9.936^10.668^~2, 3~^~03/01/2007~ -~07074~^~675~^3.185^3^0.045^~1~^~A~^^^1^3.112^3.268^2^2.990^3.380^~2, 3~^~03/01/2007~ -~07074~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~693~^0.158^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~07074~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~07074~^~851~^0.169^3^0.005^~1~^~A~^^^1^0.159^0.177^2^0.146^0.193^~2, 3~^~03/01/2007~ -~07075~^~312~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~315~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~404~^0.192^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~405~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~406~^2.940^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~410~^0.525^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~415~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~606~^9.769^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~612~^0.399^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~613~^6.119^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~614~^3.088^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~615~^0.046^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~617~^11.262^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~618~^3.481^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~619~^0.207^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~07075~^~620~^0.088^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~626~^0.744^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~628~^0.232^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07075~^~645~^12.238^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~646~^3.927^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~653~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~672~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07075~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07075~^~851~^0.207^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07077~^~312~^0.090^7^0.010^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~315~^0.038^7^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~404~^0.193^52^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~405~^0.214^52^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~406~^2.845^52^0.057^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~410~^0.610^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~415~^0.180^52^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~501~^0.135^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~502~^0.552^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~503~^0.605^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~504~^1.044^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~505~^1.043^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~506~^0.344^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~507~^0.151^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~508~^0.520^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~509~^0.451^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~510~^0.660^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~511~^0.813^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~512~^0.414^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~513~^0.826^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~514~^1.213^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~515~^2.135^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~516~^0.894^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~517~^0.814^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~518~^0.570^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~606~^9.720^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~610~^0.090^7^0.025^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~611~^0.060^7^0.017^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~612~^0.360^7^0.022^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~613~^5.920^7^0.104^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~614~^3.280^7^0.080^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~617~^11.660^7^0.220^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~618~^2.630^7^0.085^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~619~^0.390^7^0.099^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~626~^0.980^7^0.065^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07077~^~645~^12.640^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07077~^~646~^3.020^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07078~^~312~^0.150^14^0.015^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~404~^0.150^7^0.008^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~405~^0.330^7^0.011^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~406~^4.310^7^0.302^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~415~^0.260^7^0.008^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~606~^11.510^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07078~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~610~^0.110^7^0.039^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~611~^0.080^7^0.020^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~612~^0.800^7^0.051^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~613~^6.350^7^0.251^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~614~^4.170^7^0.161^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~617~^11.210^7^0.503^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~618~^0.990^7^0.185^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~619~^0.210^7^0.035^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~626~^1.760^7^0.114^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~07078~^~645~^12.970^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07078~^~646~^1.200^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~07081~^~312~^0.024^18^0.002^~1~^~A~^^^1^0.018^0.033^7^0.021^0.028^~1, 2, 3~^~05/01/2014~ -~07081~^~315~^0.016^18^0.002^~1~^~A~^^^1^0.011^0.041^6^0.012^0.020^~1, 2, 3~^~03/01/2016~ -~07081~^~404~^0.038^0^^~4~^~BFPN~^~05664~^^^^^^^^^~05/01/2013~ -~07081~^~405~^0.145^3^0.011^~1~^~A~^^^1^0.130^0.166^2^0.099^0.191^~2, 3~^~05/01/2013~ -~07081~^~406~^7.150^3^0.556^~1~^~A~^^^1^6.310^8.200^2^4.759^9.540^~2, 3~^~05/01/2013~ -~07081~^~410~^0.320^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~07081~^~415~^0.410^3^0.013^~1~^~A~^^^1^0.386^0.431^2^0.354^0.466^~2, 3~^~05/01/2013~ -~07081~^~605~^0.029^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~606~^0.906^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~607~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^8^0.001^0.003^~1, 2, 3~^~03/01/2016~ -~07081~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~609~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~07081~^~610~^0.003^18^0.001^~1~^~A~^^^1^0.000^0.007^7^0.001^0.004^~1, 2, 3~^~03/01/2016~ -~07081~^~611~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.005^8^0.002^0.004^~1, 2, 3~^~03/01/2016~ -~07081~^~612~^0.027^18^0.004^~1~^~A~^^^1^0.008^0.051^7^0.018^0.036^~2, 3~^~03/01/2016~ -~07081~^~613~^0.619^18^0.086^~1~^~A~^^^1^0.193^1.194^7^0.414^0.825^~2, 3~^~03/01/2016~ -~07081~^~614~^0.235^18^0.028^~1~^~A~^^^1^0.109^0.417^7^0.169^0.301^~2, 3~^~03/01/2016~ -~07081~^~615~^0.003^18^0.000^~1~^~A~^^^1^0.001^0.005^7^0.002^0.004^~1, 2, 3~^~03/01/2016~ -~07081~^~617~^1.009^18^0.150^~1~^~AS~^^^1^0.243^1.976^7^0.650^1.369^~2, 3~^~03/01/2016~ -~07081~^~618~^0.884^18^0.134^~1~^~AS~^^^1^0.283^1.729^7^0.564^1.203^~2, 3~^~03/01/2016~ -~07081~^~619~^0.051^18^0.008^~1~^~AS~^^^1^0.016^0.122^8^0.031^0.070^~2, 3~^~03/01/2016~ -~07081~^~620~^0.054^18^0.001^~1~^~A~^^^1^0.046^0.066^8^0.051^0.057^~2, 3~^~03/01/2016~ -~07081~^~621~^0.005^18^0.000^~1~^~A~^^^1^0.004^0.009^7^0.004^0.005^~2, 3~^~03/01/2016~ -~07081~^~624~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^7^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~07081~^~625~^0.005^18^0.001^~1~^~A~^^^1^0.001^0.010^8^0.003^0.007^~1, 2, 3~^~03/01/2016~ -~07081~^~626~^0.111^18^0.018^~1~^~AS~^^^1^0.014^0.237^7^0.069^0.153^~2, 3~^~03/01/2016~ -~07081~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~09/01/1980~ -~07081~^~628~^0.015^18^0.002^~1~^~A~^^^1^0.003^0.031^6^0.009^0.020^~2, 3~^~03/01/2016~ -~07081~^~629~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.004^8^0.002^0.003^~1, 2, 3~^~03/01/2016~ -~07081~^~630~^0.000^18^0.000^~1~^~AS~^^^1^0.000^0.001^8^0.000^0.001^~2, 3~^~03/01/2009~ -~07081~^~631~^0.006^18^0.000^~1~^~A~^^^1^0.005^0.008^10^0.005^0.006^~2, 3~^~03/01/2016~ -~07081~^~645~^1.145^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~646~^1.024^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~652~^0.005^18^0.001^~1~^~A~^^^1^0.002^0.008^7^0.003^0.006^~1, 2, 3~^~03/01/2016~ -~07081~^~653~^0.008^18^0.001^~1~^~A~^^^1^0.003^0.014^7^0.005^0.010^~2, 3~^~03/01/2016~ -~07081~^~654~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~03/01/2009~ -~07081~^~662~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^8^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~07081~^~663~^0.021^18^0.003^~1~^~A~^^^1^0.009^0.039^6^0.013^0.028^~2, 3~^~03/01/2016~ -~07081~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~665~^0.007^18^0.001^~1~^~A~^^^1^0.000^0.016^6^0.004^0.009^~1, 2, 3~^~03/01/2016~ -~07081~^~670~^0.004^18^0.001^~1~^~A~^^^1^0.000^0.008^7^0.002^0.005^~1, 2, 3~^~03/01/2016~ -~07081~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~07081~^~672~^0.006^18^0.001^~1~^~A~^^^1^0.003^0.011^6^0.004^0.008^~2, 3~^~03/01/2016~ -~07081~^~673~^0.109^18^0.017^~1~^~A~^^^1^0.014^0.234^7^0.068^0.151^~2, 3~^~03/01/2016~ -~07081~^~674~^0.989^18^0.147^~1~^~A~^^^1^0.234^1.938^7^0.637^1.341^~2, 3~^~03/01/2016~ -~07081~^~675~^0.874^18^0.132^~1~^~A~^^^1^0.282^1.712^7^0.558^1.190^~2, 3~^~03/01/2016~ -~07081~^~676~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~03/01/2009~ -~07081~^~685~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.001^~1, 2, 3~^~03/01/2016~ -~07081~^~687~^0.004^18^0.001^~1~^~A~^^^1^0.001^0.009^7^0.003^0.006^~1, 2, 3~^~03/01/2016~ -~07081~^~689~^0.006^18^0.000^~1~^~AS~^^^1^0.002^0.009^7^0.005^0.007^~2, 3~^~03/01/2016~ -~07081~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~07081~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2009~ -~07081~^~851~^0.050^18^0.008^~1~^~A~^^^1^0.016^0.120^8^0.031^0.069^~2, 3~^~03/01/2016~ -~07081~^~852~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~03/01/2016~ -~07081~^~853~^0.005^18^0.000^~1~^~A~^^^1^0.002^0.008^7^0.004^0.006^~1, 2, 3~^~03/01/2016~ -~07081~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2016~ -~07081~^~858~^0.011^18^0.000^~1~^~A~^^^1^0.010^0.013^10^0.010^0.011^~2, 3~^~03/01/2016~ -~07083~^~312~^0.030^3^0.007^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~404~^0.087^3^0.017^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~405~^0.107^3^0.012^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~406~^1.613^3^0.155^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~410~^0.350^0^^~4~^^^^^^^^^^^~02/01/2007~ -~07083~^~415~^0.120^3^0.027^~1~^^^^^^^^^^^~05/01/2004~ -~07083~^~501~^0.109^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~502~^0.357^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~503~^0.557^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~504~^0.797^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~505~^0.791^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~506~^0.265^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~507~^0.175^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~508~^0.425^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~509~^0.341^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~510~^0.573^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~511~^0.707^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~512~^0.273^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~513~^0.651^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~514~^1.005^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~515~^1.304^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~516~^1.013^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~517~^0.606^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~518~^0.432^1^^~1~^^^^^^^^^^^~02/01/2007~ -~07083~^~606~^7.125^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07083~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~610~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~611~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~612~^0.453^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~613~^4.177^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~614~^2.457^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~617~^8.461^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~618~^0.990^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~619~^0.299^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~626~^1.167^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~07083~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~07083~^~645~^9.628^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07083~^~646~^1.290^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~07088~^~312~^0.100^4^0.008^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~315~^0.037^3^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~404~^0.080^4^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~405~^0.182^4^0.016^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~406~^4.165^4^0.165^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~410~^0.490^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~415~^0.270^4^0.025^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~501~^0.152^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~502~^0.779^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~503~^0.761^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~504~^1.388^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~505~^1.516^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~506~^0.449^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~507~^0.220^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~508~^0.696^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~509~^0.562^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~510~^0.853^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~511~^1.255^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~512~^0.538^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~513~^1.228^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~514~^1.650^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~515~^2.679^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~516~^1.379^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~517~^1.011^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~518~^0.758^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07088~^~606~^4.080^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~610~^0.020^4^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~611~^0.020^4^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~612~^0.280^4^0.009^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~613~^2.400^4^0.075^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~614~^1.360^4^0.059^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~617~^4.200^4^0.257^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~618~^0.380^4^0.020^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~619~^0.110^4^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~626~^0.620^4^0.051^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~645~^4.820^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07088~^~646~^0.490^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07089~^~312~^0.074^11^0.004^~1~^~A~^^^1^0.060^0.098^6^0.064^0.084^~2, 3~^~10/01/2016~ -~07089~^~315~^0.036^11^0.004^~1~^~A~^^^1^0.021^0.057^5^0.026^0.046^~2, 3~^~10/01/2016~ -~07089~^~404~^0.346^5^0.045^~1~^~A~^^^1^0.212^0.418^1^-0.165^0.857^~2, 3~^~10/01/2016~ -~07089~^~405~^0.263^4^0.001^~1~^~A~^^^1^0.220^0.270^2^0.257^0.268^~2, 3~^~10/01/2016~ -~07089~^~406~^6.279^4^0.102^~1~^~A~^^^1^4.730^6.500^2^5.840^6.718^~2, 3~^~10/01/2016~ -~07089~^~410~^0.838^3^0.005^~1~^~A~^^^1^0.720^0.860^1^0.776^0.899^~2, 3~^~10/01/2016~ -~07089~^~415~^0.371^4^0.005^~1~^~A~^^^1^0.275^0.391^1^0.337^0.406^~2, 3~^~10/01/2016~ -~07089~^~605~^0.096^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~606~^9.028^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~607~^0.006^11^0.000^~1~^~A~^^^1^0.005^0.007^6^0.006^0.006^~2, 3~^~10/01/2016~ -~07089~^~608~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~10/01/2016~ -~07089~^~609~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.003^~1, 2, 3~^~10/01/2016~ -~07089~^~610~^0.017^11^0.001^~1~^~A~^^^1^0.013^0.021^5^0.014^0.020^~2, 3~^~10/01/2016~ -~07089~^~611~^0.017^11^0.001^~1~^~A~^^^1^0.012^0.021^5^0.014^0.019^~2, 3~^~10/01/2016~ -~07089~^~612~^0.330^11^0.019^~1~^~A~^^^1^0.251^0.412^5^0.281^0.379^~2, 3~^~10/01/2016~ -~07089~^~613~^5.638^11^0.311^~1~^~A~^^^1^4.237^6.879^5^4.847^6.430^~2, 3~^~10/01/2016~ -~07089~^~614~^2.861^11^0.162^~1~^~A~^^^1^2.073^3.463^5^2.451^3.271^~2, 3~^~10/01/2016~ -~07089~^~615~^0.063^11^0.004^~1~^~A~^^^1^0.042^0.081^5^0.051^0.074^~2, 3~^~10/01/2016~ -~07089~^~617~^10.685^11^0.599^~1~^~AS~^^^1^8.042^13.242^5^9.161^12.208^~2, 3~^~10/01/2016~ -~07089~^~618~^4.267^11^0.289^~1~^~AS~^^^1^2.792^5.132^5^3.527^5.008^~2, 3~^~10/01/2016~ -~07089~^~619~^0.184^11^0.016^~1~^~AS~^^^1^0.109^0.226^5^0.142^0.225^~2, 3~^~10/01/2016~ -~07089~^~620~^0.122^11^0.005^~1~^~A~^^^1^0.104^0.150^6^0.110^0.135^~2, 3~^~10/01/2016~ -~07089~^~621~^0.004^11^0.001^~1~^~A~^^^1^0.002^0.008^5^0.003^0.006^~1, 2, 3~^~10/01/2016~ -~07089~^~624~^0.010^11^0.001^~1~^~A~^^^1^0.008^0.012^6^0.008^0.011^~2, 3~^~10/01/2016~ -~07089~^~625~^0.005^11^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.007^~1, 2, 3~^~10/01/2016~ -~07089~^~626~^0.579^11^0.032^~1~^~AS~^^^1^0.487^0.746^5^0.497^0.661^~2, 3~^~10/01/2016~ -~07089~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~07089~^~628~^0.286^11^0.021^~1~^~A~^^^1^0.186^0.370^5^0.233^0.339^~2, 3~^~10/01/2016~ -~07089~^~629~^0.007^11^0.004^~1~^~A~^^^1^0.002^0.034^5^-0.003^0.018^~1, 2, 3~^~10/01/2016~ -~07089~^~630~^0.009^11^0.001^~1~^~AS~^^^1^0.006^0.012^5^0.007^0.010^~2, 3~^~10/01/2016~ -~07089~^~631~^0.024^11^0.002^~1~^~A~^^^1^0.016^0.034^6^0.019^0.029^~2, 3~^~10/01/2016~ -~07089~^~645~^11.622^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~646~^4.928^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~652~^0.013^11^0.001^~1~^~A~^^^1^0.010^0.018^5^0.010^0.015^~2, 3~^~10/01/2016~ -~07089~^~653~^0.069^11^0.005^~1~^~A~^^^1^0.056^0.098^5^0.056^0.083^~2, 3~^~10/01/2016~ -~07089~^~654~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^7^0.002^0.002^~1, 2, 3~^~10/01/2016~ -~07089~^~662~^0.007^11^0.001^~1~^~A~^^^1^0.003^0.011^6^0.005^0.009^~2, 3~^~10/01/2016~ -~07089~^~663~^0.069^11^0.014^~1~^~A~^^^1^0.000^0.122^5^0.034^0.105^~1, 2, 3~^~10/01/2016~ -~07089~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07089~^~665~^0.020^11^0.002^~1~^~A~^^^1^0.014^0.029^5^0.015^0.025^~2, 3~^~10/01/2016~ -~07089~^~670~^0.030^11^0.002^~1~^~A~^^^1^0.021^0.041^5^0.024^0.035^~2, 3~^~10/01/2016~ -~07089~^~671~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^6^0.001^0.002^~1, 2, 3~^~10/01/2016~ -~07089~^~672~^0.210^11^0.015^~1~^~A~^^^1^0.125^0.255^5^0.172^0.247^~2, 3~^~10/01/2016~ -~07089~^~673~^0.572^11^0.032^~1~^~A~^^^1^0.479^0.735^5^0.492^0.653^~2, 3~^~10/01/2016~ -~07089~^~674~^10.615^11^0.589^~1~^~A~^^^1^7.982^13.120^5^9.117^12.114^~2, 3~^~10/01/2016~ -~07089~^~675~^4.217^11^0.286^~1~^~A~^^^1^2.749^5.062^5^3.485^4.950^~2, 3~^~10/01/2016~ -~07089~^~676~^0.009^11^0.001^~1~^~A~^^^1^0.006^0.012^5^0.007^0.010^~2, 3~^~10/01/2016~ -~07089~^~685~^0.005^11^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.006^~2, 3~^~10/01/2016~ -~07089~^~687~^0.058^11^0.004^~1~^~A~^^^1^0.045^0.082^5^0.046^0.069^~2, 3~^~10/01/2016~ -~07089~^~689~^0.062^11^0.004^~1~^~AS~^^^1^0.040^0.075^5^0.051^0.074^~2, 3~^~10/01/2016~ -~07089~^~693~^0.076^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07089~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07089~^~851~^0.179^11^0.016^~1~^~A~^^^1^0.106^0.221^5^0.139^0.220^~2, 3~^~10/01/2016~ -~07089~^~852~^0.028^11^0.003^~1~^~A~^^^1^0.015^0.043^5^0.020^0.036^~2, 3~^~10/01/2016~ -~07089~^~853~^0.035^11^0.002^~1~^~A~^^^1^0.025^0.041^5^0.030^0.040^~2, 3~^~10/01/2016~ -~07089~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07089~^~858~^0.044^11^0.003^~1~^~A~^^^1^0.032^0.057^5^0.036^0.052^~2, 3~^~10/01/2016~ -~07090~^~312~^0.080^6^0.011^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~315~^0.042^4^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~404~^0.217^6^0.004^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~405~^0.195^6^0.009^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~406~^3.527^6^0.202^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~410~^0.370^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~415~^0.200^6^0.018^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~501~^0.162^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~502~^0.664^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~503~^0.785^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~504~^1.280^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~505~^1.447^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~506~^0.352^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~507~^0.281^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~508~^0.623^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~509~^0.613^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~510~^0.871^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~511~^1.130^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~512~^0.495^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~513~^0.984^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~514~^1.602^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~515~^2.161^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~516~^1.203^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~517~^0.891^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~518~^0.645^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~606~^7.620^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~610~^0.020^6^0.007^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~611~^0.020^6^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~612~^0.300^6^0.009^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~613~^4.630^6^0.151^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~614~^2.650^6^0.076^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~617~^9.110^6^0.311^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~618~^1.770^6^0.067^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~619~^0.280^6^0.032^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~626~^0.830^6^0.018^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1980~ -~07090~^~645~^9.930^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07090~^~646~^2.050^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~312~^0.100^6^0.020^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~315~^0.036^5^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~404~^0.640^6^0.023^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~405~^0.248^6^0.005^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~406~^3.478^6^0.278^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~410~^0.680^2^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~415~^0.360^6^0.095^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~501~^0.193^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~502~^0.757^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~503~^0.761^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~504~^1.363^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~505~^1.511^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~506~^0.446^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~507~^0.246^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~508~^0.684^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~509~^0.533^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~510~^0.803^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~511~^1.201^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~512~^0.652^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~513~^1.039^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~514~^1.639^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~515~^2.585^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~516~^0.946^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~517~^0.761^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~518~^0.686^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~606~^2.560^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~610~^0.010^6^0.003^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~611~^0.010^6^0.002^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~612~^0.100^6^0.006^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~613~^1.620^6^0.029^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~614~^0.830^6^0.015^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~617~^3.330^6^0.060^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~618~^0.640^6^0.033^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~619~^0.090^6^0.014^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~626~^0.300^6^0.012^~1~^^^^^^^^^^^~09/01/1980~ -~07091~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~07091~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~07091~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~07091~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~07091~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~07091~^~645~^3.640^0^^~1~^^^^^^^^^^^~12/01/1987~ -~07091~^~646~^0.720^0^^~1~^^^^^^^^^^^~12/01/1987~ -~07201~^~312~^0.110^30^0.011^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~404~^0.050^11^0.003^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~405~^0.110^11^0.006^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~406~^2.420^11^0.069^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~410~^0.280^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~415~^0.170^11^0.009^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07201~^~606~^12.850^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07201~^~611~^0.020^28^0.004^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~612~^0.980^28^0.028^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~613~^7.510^28^0.076^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~614~^4.340^28^0.083^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~617~^13.580^28^0.119^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~618~^0.860^28^0.042^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~619~^0.250^28^0.021^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~626~^1.630^28^0.055^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07201~^~645~^15.210^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07201~^~646~^1.110^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07207~^~312~^0.500^16^0.078^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~315~^0.148^8^0.009^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~404~^0.230^9^0.007^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~405~^1.600^9^0.063^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~406~^9.190^9^0.593^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~410~^3.450^8^0.481^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~415~^0.330^9^0.023^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07207~^~606~^10.940^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07207~^~611~^0.040^16^0.010^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~612~^0.420^16^0.020^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~613~^6.990^16^0.115^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~614~^3.490^16^0.113^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~617~^14.270^16^0.235^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07207~^~618~^3.370^16^0.085^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~619~^0.360^16^0.058^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~626~^1.210^16^0.060^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07207~^~645~^15.480^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~07207~^~646~^3.730^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07209~^~312~^0.170^4^0.025^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07209~^~606~^0.394^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~611~^0.000^4^0.000^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07209~^~612~^0.006^4^0.003^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~613~^0.285^4^0.024^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~614~^0.103^4^0.006^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~617~^0.473^4^0.024^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~618~^0.200^4^0.006^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~619~^0.018^4^0.009^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~626~^0.091^4^0.012^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~645~^0.564^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07209~^~646~^0.218^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~312~^0.240^6^0.069^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07212~^~606~^4.056^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07212~^~611~^0.018^7^0.004^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~612~^0.166^7^0.018^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~613~^2.698^7^0.080^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~614~^1.173^7^0.042^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~617~^5.451^7^0.143^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~618~^1.210^7^0.453^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~619~^0.065^7^0.007^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~626~^0.379^7^0.018^~1~^~A~^^^^^^^^^^~03/01/1997~ -~07212~^~645~^5.829^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07212~^~646~^1.275^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~07230~^~312~^0.190^14^0.045^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~315~^0.039^6^0.004^~12~^~MA~^^^^^^^^^^~03/01/1997~ -~07230~^~404~^0.570^6^0.029^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~405~^0.260^6^0.016^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~406~^5.050^6^0.163^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~410~^1.060^3^0.017^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~415~^0.440^6^0.086^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07230~^~606~^11.085^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07230~^~611~^0.085^13^0.041^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~612~^0.554^13^0.060^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~613~^6.923^13^0.138^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~614~^3.523^13^0.117^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~617~^13.715^13^0.263^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~618~^2.593^13^0.146^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~619~^0.263^13^0.052^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~626~^1.296^13^0.097^~1~^~A~^^^^^^^^^^~08/01/2002~ -~07230~^~645~^15.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07230~^~646~^2.856^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~07236~^~312~^0.300^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~ -~07236~^~606~^11.160^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~611~^0.080^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~612~^0.590^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~613~^7.080^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~614~^3.410^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~617~^12.420^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~618~^2.620^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~619~^0.170^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~626~^0.770^1^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~645~^13.190^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07236~^~646~^2.790^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~312~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~315~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~404~^0.034^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~405~^0.100^30^0.002^~12~^~MA~^^^^^^^^^^~05/01/2002~ -~07241~^~406~^2.292^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~410~^0.220^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~415~^0.072^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~606~^12.460^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~611~^0.030^30^0.005^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~612~^0.946^31^0.054^~1~^~A~^^^2^0.892^1.000^1^0.260^1.632^~2~^~05/01/2002~ -~07241~^~613~^6.785^31^0.326^~1~^~A~^^^2^6.459^7.110^1^2.649^10.920^~2~^~05/01/2002~ -~07241~^~614~^3.997^31^0.323^~1~^~A~^^^2^3.674^4.320^1^-0.107^8.101^~2~^~05/01/2002~ -~07241~^~618~^0.951^31^0.100^~1~^~A~^^^2^0.851^1.050^1^-0.314^2.215^~2~^~05/01/2002~ -~07241~^~619~^0.239^31^0.072^~1~^~A~^^^2^0.167^0.310^1^-0.670^1.147^~2~^~05/01/2002~ -~07241~^~625~^0.331^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~628~^0.222^1^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07241~^~645~^14.740^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~646~^1.360^0^^~1~^~A~^^^^^^^^^^~07/01/1996~ -~07241~^~652~^0.162^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~07241~^~653~^0.421^1^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~07254~^~312~^0.068^18^0.003^~1~^~A~^^^1^0.051^0.093^8^0.060^0.075^~2, 3~^~07/01/2014~ -~07254~^~315~^0.019^18^0.001^~1~^~A~^^^1^0.011^0.023^10^0.018^0.021^~1, 2, 3~^~07/01/2014~ -~07254~^~404~^0.030^9^0.001^~1~^~A~^^^1^0.023^0.053^3^0.027^0.034^~2, 3~^~07/01/2014~ -~07254~^~405~^0.237^9^0.007^~1~^~A~^^^1^0.190^0.290^3^0.215^0.260^~2, 3~^~07/01/2014~ -~07254~^~406~^4.032^9^0.059^~1~^~A~^^^1^3.640^4.920^3^3.827^4.237^~2, 3~^~07/01/2014~ -~07254~^~410~^0.675^7^0.010^~1~^~A~^^^1^0.610^0.780^1^0.582^0.769^~2, 3~^~07/01/2014~ -~07254~^~415~^0.244^9^0.005^~1~^~A~^^^1^0.222^0.293^2^0.222^0.267^~2, 3~^~07/01/2014~ -~07254~^~521~^0.326^3^^~1~^~A~^^^1^0.280^0.360^^^^~2, 3~^~07/01/2014~ -~07254~^~605~^0.184^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~606~^4.520^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~607~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~07254~^~608~^0.001^18^0.001^~1~^~A~^^^1^0.000^0.006^5^0.000^0.003^~1, 2, 3~^~07/01/2014~ -~07254~^~609~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~07254~^~610~^0.004^18^0.000^~1~^~A~^^^1^0.003^0.011^6^0.003^0.006^~2, 3~^~07/01/2014~ -~07254~^~611~^0.026^18^0.001^~1~^~A~^^^1^0.012^0.042^9^0.023^0.029^~2, 3~^~07/01/2014~ -~07254~^~612~^0.145^18^0.003^~1~^~A~^^^1^0.124^0.171^5^0.138^0.153^~2, 3~^~07/01/2014~ -~07254~^~613~^3.093^18^0.046^~1~^~A~^^^1^2.629^3.306^9^2.988^3.197^~2, 3~^~07/01/2014~ -~07254~^~614~^1.157^18^0.017^~1~^~A~^^^1^0.982^1.262^7^1.117^1.197^~2, 3~^~07/01/2014~ -~07254~^~615~^0.018^18^0.000^~1~^~A~^^^1^0.013^0.021^8^0.017^0.019^~2, 3~^~07/01/2014~ -~07254~^~617~^5.594^18^0.092^~1~^~AS~^^^1^4.693^6.568^8^5.382^5.806^~2, 3~^~07/01/2014~ -~07254~^~618~^4.254^18^0.132^~1~^~AS~^^^1^3.273^5.262^6^3.927^4.581^~2, 3~^~07/01/2014~ -~07254~^~619~^0.251^18^0.010^~1~^~AS~^^^1^0.172^0.301^6^0.227^0.275^~2, 3~^~07/01/2014~ -~07254~^~620~^0.107^18^0.004^~1~^~A~^^^1^0.069^0.134^5^0.098^0.116^~2, 3~^~07/01/2014~ -~07254~^~621~^0.007^18^0.000^~1~^~A~^^^1^0.004^0.013^6^0.006^0.009^~2, 3~^~07/01/2014~ -~07254~^~624~^0.007^18^0.000^~1~^~A~^^^1^0.003^0.009^11^0.007^0.008^~2, 3~^~07/01/2014~ -~07254~^~625~^0.021^18^0.001^~1~^~A~^^^1^0.018^0.034^5^0.019^0.023^~2, 3~^~07/01/2014~ -~07254~^~626~^0.496^18^0.014^~1~^~AS~^^^1^0.401^0.621^6^0.462^0.530^~2, 3~^~07/01/2014~ -~07254~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~07/01/2014~ -~07254~^~628~^0.086^18^0.001^~1~^~A~^^^1^0.068^0.094^7^0.082^0.089^~2, 3~^~07/01/2014~ -~07254~^~629~^0.006^18^0.003^~1~^~A~^^^1^0.000^0.033^4^-0.003^0.014^~1, 2, 3~^~07/01/2014~ -~07254~^~630~^0.003^18^0.000^~1~^~AS~^^^1^0.001^0.005^11^0.003^0.003^~2, 3~^~07/01/2014~ -~07254~^~631~^0.010^18^0.000^~1~^~A~^^^1^0.007^0.014^6^0.009^0.011^~2, 3~^~07/01/2014~ -~07254~^~645~^6.223^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~646~^4.699^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~652~^0.023^18^0.001^~1~^~A~^^^1^0.020^0.026^5^0.022^0.024^~2, 3~^~07/01/2014~ -~07254~^~653~^0.040^18^0.001^~1~^~A~^^^1^0.035^0.048^6^0.038^0.043^~2, 3~^~07/01/2014~ -~07254~^~654~^0.003^18^0.000^~1~^~A~^^^1^0.001^0.004^4^0.003^0.003^~1, 2, 3~^~07/01/2014~ -~07254~^~662~^0.011^18^0.000^~1~^~A~^^^1^0.009^0.015^4^0.009^0.012^~2, 3~^~07/01/2014~ -~07254~^~663~^0.138^18^0.004^~1~^~A~^^^1^0.098^0.170^5^0.128^0.149^~2, 3~^~07/01/2014~ -~07254~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~665~^0.036^18^0.001^~1~^~A~^^^1^0.026^0.044^6^0.034^0.037^~2, 3~^~07/01/2014~ -~07254~^~670~^0.022^18^0.001^~1~^~A~^^^1^0.015^0.031^7^0.020^0.023^~2, 3~^~07/01/2014~ -~07254~^~671~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~07254~^~672~^0.027^18^0.000^~1~^~A~^^^1^0.022^0.031^10^0.025^0.028^~2, 3~^~07/01/2014~ -~07254~^~673~^0.485^18^0.014^~1~^~A~^^^1^0.392^0.606^6^0.452^0.519^~2, 3~^~07/01/2014~ -~07254~^~674~^5.456^18^0.091^~1~^~A~^^^1^4.574^6.440^8^5.246^5.666^~2, 3~^~07/01/2014~ -~07254~^~675~^4.197^18^0.131^~1~^~A~^^^1^3.228^5.208^6^3.872^4.522^~2, 3~^~07/01/2014~ -~07254~^~676~^0.003^18^0.000^~1~^~A~^^^1^0.001^0.005^11^0.003^0.003^~1, 2, 3~^~07/01/2014~ -~07254~^~685~^0.010^18^0.000^~1~^~A~^^^1^0.004^0.014^7^0.009^0.011^~2, 3~^~07/01/2014~ -~07254~^~687~^0.023^18^0.001^~1~^~A~^^^1^0.019^0.030^6^0.021^0.024^~2, 3~^~07/01/2014~ -~07254~^~689~^0.016^18^0.000^~1~^~AS~^^^1^0.012^0.021^7^0.015^0.017^~2, 3~^~07/01/2014~ -~07254~^~693~^0.149^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~695~^0.036^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07254~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~851~^0.241^18^0.009^~1~^~A~^^^1^0.165^0.290^6^0.218^0.264^~2, 3~^~07/01/2014~ -~07254~^~852~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.004^5^0.003^0.003^~1, 2, 3~^~07/01/2014~ -~07254~^~853~^0.013^18^0.000^~1~^~A~^^^1^0.009^0.019^8^0.012^0.014^~2, 3~^~07/01/2014~ -~07254~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07254~^~858~^0.020^18^0.001^~1~^~A~^^^1^0.013^0.027^6^0.019^0.021^~2, 3~^~07/01/2014~ -~07278~^~312~^0.200^7^0.000^~1~^~A~^^^2^0.200^0.200^^^^~2~^~06/01/2002~ -~07278~^~606~^3.520^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07278~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~07278~^~612~^0.124^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~613~^2.378^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~614~^1.018^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~617~^4.218^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~618~^3.026^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~619~^0.294^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~626~^0.432^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~07278~^~645~^4.650^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07278~^~646~^3.320^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07900~^~312~^0.134^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~404~^0.130^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~405~^0.080^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~406~^1.550^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~410~^0.165^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~415~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~606~^0.850^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07900~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~610~^0.001^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~611~^0.003^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~612~^0.037^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~613~^0.540^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~614~^0.269^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~617~^0.914^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~618~^0.283^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~619~^0.017^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~620~^0.024^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~621~^0.003^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~626~^0.099^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~628~^0.012^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~630~^0.001^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~631~^0.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07900~^~645~^1.026^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07900~^~646~^0.329^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07905~^~312~^0.117^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~ -~07905~^~404~^0.162^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~405~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~406~^3.466^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~415~^0.181^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~ -~07905~^~606~^0.500^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~ -~07905~^~645~^0.740^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07905~^~646~^0.350^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07906~^~312~^0.046^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~ -~07906~^~404~^0.264^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07906~^~405~^0.179^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07906~^~406~^3.175^0^^~8~^~LC~^^^^^^^^^^~04/01/2009~ -~07906~^~415~^0.283^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~ -~07906~^~606~^8.873^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~610~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~611~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~612~^0.311^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~613~^5.839^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~614~^2.632^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~617~^11.172^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~618~^2.436^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~619~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~626~^1.168^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2009~ -~07906~^~645~^12.340^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07906~^~646~^2.666^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~312~^0.051^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07908~^~404~^0.317^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~405~^0.176^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~406~^3.530^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07908~^~415~^0.218^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07908~^~606~^9.987^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~610~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~611~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~612~^0.354^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~613~^6.211^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~614~^3.374^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~617~^12.434^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~618~^1.891^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~619~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~620~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~626~^0.852^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~628~^0.219^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07908~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07908~^~645~^13.505^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07908~^~646~^2.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~312~^0.100^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~07909~^~404~^0.180^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07909~^~405~^0.210^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07909~^~406~^3.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~ -~07909~^~415~^0.283^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~ -~07909~^~606~^4.514^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~610~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~07909~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~612~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~613~^2.920^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~614~^1.410^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~617~^6.570^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~618~^1.350^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~619~^0.120^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~626~^0.450^1^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~07909~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2004~ -~07909~^~645~^7.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07909~^~646~^1.470^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~07910~^~312~^0.081^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~315~^0.049^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~404~^0.054^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~405~^0.192^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~406~^5.430^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~410~^0.958^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~415~^0.307^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~501~^0.142^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~502~^0.611^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~503~^0.689^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~504~^1.113^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~505~^1.153^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~506~^0.327^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~507~^0.158^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~508~^0.564^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~509~^0.446^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~510~^0.773^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~511~^0.823^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~512~^0.508^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~513~^0.832^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~514~^1.207^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~515~^2.213^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~516~^0.719^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~517~^0.584^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~518~^0.524^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07910~^~606~^14.940^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~607~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~608~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~609~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~610~^0.014^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~611~^0.028^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~612~^0.392^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~613~^2.266^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~614~^4.828^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~617~^3.427^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~618~^0.587^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~619~^0.070^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~620~^0.126^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~621~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~626~^0.448^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~627~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~628~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~629~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~630~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~631~^0.000^0^^~4~^~BFSN~^~17106~^^^^^^^^^~07/01/2002~ -~07910~^~645~^13.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07910~^~646~^1.614^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07911~^~312~^0.240^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~315~^0.155^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~404~^0.272^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~405~^1.030^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~406~^4.300^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~410~^2.950^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~415~^0.190^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~501~^0.151^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~502~^0.671^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~503~^0.653^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~504~^1.139^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~505~^1.155^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~506~^0.285^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~507~^0.149^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~508~^0.617^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~509~^0.362^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~510~^0.857^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~511~^0.812^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~512~^0.448^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~513~^0.830^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~514~^1.164^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~515~^2.195^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~516~^1.096^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~517~^0.850^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~518~^0.694^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~ -~07911~^~606~^9.925^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~07911~^~607~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~608~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~609~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~610~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~611~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~612~^0.403^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~613~^6.420^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~614~^3.102^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~617~^11.293^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~618~^2.296^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~619~^0.131^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~620~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~621~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~626~^0.993^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~627~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~628~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~629~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~630~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~631~^0.000^0^^~4~^~BFZN~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~645~^12.286^0^^~4~^~NC~^~07041~^^^^^^^^^~07/01/2004~ -~07911~^~646~^2.427^0^^~4~^~NC~^~07041~^^^^^^^^^~07/01/2004~ -~07912~^~312~^0.101^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~404~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~405~^0.230^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~406~^4.200^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~415~^0.150^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~606~^6.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~607~^6.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07912~^~617~^5.080^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~618~^0.360^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~619~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~620~^0.027^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~626~^0.493^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~628~^0.013^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~645~^5.587^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07912~^~646~^0.427^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07913~^~312~^0.088^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~315~^0.057^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~404~^0.738^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~405~^0.336^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~406~^4.803^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~410~^0.860^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~415~^0.489^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~501~^0.114^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~502~^0.521^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~503~^0.675^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~504~^0.929^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~505~^1.107^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~506~^0.301^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~507~^0.196^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~508~^0.481^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~509~^0.552^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~510~^0.668^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~511~^0.855^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~512~^0.359^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~513~^0.880^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~514~^1.285^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~515~^1.929^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~516~^1.189^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~517~^0.831^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~518~^0.537^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~606~^10.580^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~607~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~608~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~609~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~610~^0.100^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~611~^0.070^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~612~^0.470^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~613~^4.530^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~614~^3.480^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~617~^8.300^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~618~^1.610^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~619~^0.410^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~620~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~621~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~626~^0.890^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~627~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~628~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~629~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~630~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~631~^0.000^0^^~4~^~BFZN~^~07069~^^^^^^^^^~07/01/2002~ -~07913~^~645~^13.320^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07913~^~646~^3.067^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07914~^~312~^0.040^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~315~^0.007^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~404~^0.172^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~405~^0.125^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~406~^1.736^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~410~^0.277^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~415~^0.187^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~501~^0.111^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~502~^0.417^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~503~^0.438^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~504~^0.760^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~505~^0.802^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~506~^0.242^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~507~^0.109^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~508~^0.377^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~509~^0.329^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~510~^0.489^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~511~^0.576^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~512~^0.333^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~513~^0.544^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~514~^0.851^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~515~^1.470^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~516~^0.482^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~517~^0.449^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~518~^0.382^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~606~^3.257^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~610~^0.024^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~611~^0.017^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~612~^0.220^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~613~^1.986^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~614~^1.009^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~617~^3.233^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~618~^0.376^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~619~^0.095^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~620~^0.023^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~626~^0.371^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~628~^0.025^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~645~^3.629^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07914~^~646~^0.493^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07915~^~312~^0.090^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~315~^0.049^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~404~^0.502^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~405~^0.148^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~406~^3.443^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~410~^0.450^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~415~^0.190^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~501~^0.138^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~502~^0.591^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~503~^0.611^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~504~^1.076^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~505~^1.110^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~506~^0.379^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~507~^0.157^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~508~^0.539^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~509~^0.444^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~510~^0.679^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~511~^0.925^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~512~^0.444^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~513~^0.902^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~514~^1.293^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~515~^2.117^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~516~^0.992^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~517~^0.712^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~518~^0.584^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~ -~07915~^~606~^8.010^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~645~^9.700^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07915~^~646~^0.790^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07916~^~312~^0.060^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~315~^0.037^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~404~^0.260^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~405~^0.170^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~406~^3.227^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~410~^0.440^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~415~^0.170^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~501~^0.107^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~502~^0.465^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~503~^0.485^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~504~^0.810^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~505~^0.903^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~506~^0.364^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~507~^0.105^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~508~^0.405^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~509~^0.386^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~510~^0.464^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~511~^0.765^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~512~^0.395^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~513~^0.774^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~514~^1.136^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~515~^1.994^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~516~^0.857^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~517~^0.673^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~518~^0.510^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~ -~07916~^~606~^9.207^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07916~^~607~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~608~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~609~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~610~^0.043^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~611~^0.035^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~612~^0.355^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~613~^5.696^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~614~^3.078^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~617~^11.322^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~618~^2.497^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~619~^0.329^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~620~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~621~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~626~^0.980^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~627~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~628~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~629~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~630~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~631~^0.000^0^^~4~^~BFZN~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~645~^12.302^0^^~4~^~NC~^~07075~^^^^^^^^^~07/01/2003~ -~07916~^~646~^2.826^0^^~4~^~NC~^~07075~^^^^^^^^^~07/01/2003~ -~07917~^~312~^0.070^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~315~^0.032^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~404~^0.249^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~405~^0.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~406~^2.900^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~410~^0.760^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~415~^0.130^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~501~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~502~^0.540^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~503~^0.620^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~504~^1.100^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~505~^1.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~506~^0.360^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~507~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~508~^0.560^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~509~^0.520^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~510~^0.690^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~511~^0.840^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~512~^0.470^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~513~^0.830^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~514~^1.240^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~515~^2.350^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~516~^0.910^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~517~^0.970^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~518~^0.600^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07917~^~606~^9.482^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~ -~07917~^~607~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~608~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~609~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~610~^0.082^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~611~^0.091^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~612~^0.507^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~613~^5.787^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~614~^3.016^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~617~^11.325^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~618~^2.373^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~619~^0.362^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~620~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~621~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~626~^1.032^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~627~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~628~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~629~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~630~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~631~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~645~^12.357^0^^~4~^~NC~^~07016~^^^^^^^^^~07/01/2003~ -~07917~^~646~^2.735^0^^~4~^~NC~^~07016~^^^^^^^^^~07/01/2003~ -~07918~^~312~^0.070^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~315~^0.032^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~404~^0.249^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~405~^0.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~406~^2.900^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~410~^0.760^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~415~^0.130^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~501~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~502~^0.540^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~503~^0.620^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~504~^1.100^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~505~^1.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~506~^0.360^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~507~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~508~^0.560^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~509~^0.520^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~510~^0.690^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~511~^0.840^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~512~^0.470^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~513~^0.830^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~514~^1.240^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~515~^2.350^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~516~^0.910^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~517~^0.970^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~518~^0.600^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~606~^10.470^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~07918~^~607~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~608~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~609~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~610~^0.090^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~611~^0.100^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~612~^0.560^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~613~^6.390^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~614~^3.330^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~617~^12.505^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~618~^2.620^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~619~^0.400^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~620~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~621~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~626~^1.140^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~627~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~628~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~629~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~630~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~631~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07918~^~645~^13.680^0^^~4~^~BFZN~^~07016~^^^^^^^^^~08/01/2002~ -~07918~^~646~^3.020^0^^~4~^~BFZN~^~07016~^^^^^^^^^~08/01/2002~ -~07919~^~312~^0.072^8^0.000^~1~^~A~^^^1^0.057^0.080^2^0.071^0.072^~2, 3~^~10/01/2016~ -~07919~^~315~^0.078^8^0.000^~1~^~A~^^^1^0.011^0.130^1^0.078^0.079^~1, 2, 3~^~10/01/2016~ -~07919~^~404~^0.039^5^0.000^~1~^~A~^^^1^0.034^0.057^^^^~2, 3~^~10/01/2016~ -~07919~^~405~^0.299^5^0.005^~1~^~A~^^^1^0.280^0.330^1^0.241^0.357^~2, 3~^~10/01/2016~ -~07919~^~406~^4.433^5^0.045^~1~^~A~^^^1^4.160^5.810^1^3.866^5.001^~2, 3~^~10/01/2016~ -~07919~^~410~^0.808^4^0.003^~1~^~A~^^^1^0.760^1.130^1^0.768^0.847^~2, 3~^~10/01/2016~ -~07919~^~415~^0.259^5^0.014^~1~^~A~^^^1^0.225^0.481^1^0.078^0.439^~2, 3~^~10/01/2016~ -~07919~^~521~^0.200^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07919~^~605~^0.127^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~606~^2.821^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~607~^0.003^8^0.000^~1~^~A~^^^1^0.001^0.004^1^0.002^0.004^~1, 2, 3~^~10/01/2016~ -~07919~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~609~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^2^0.001^0.001^~1, 2, 3~^~10/01/2016~ -~07919~^~610~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.004^2^0.002^0.002^~1, 2, 3~^~10/01/2016~ -~07919~^~611~^0.005^8^0.000^~1~^~A~^^^1^0.003^0.031^2^0.005^0.006^~2, 3~^~10/01/2016~ -~07919~^~612~^0.097^8^0.000^~1~^~A~^^^1^0.048^0.105^3^0.096^0.098^~2, 3~^~10/01/2016~ -~07919~^~613~^1.923^8^0.005^~1~^~A~^^^1^1.270^2.444^2^1.905^1.941^~2, 3~^~10/01/2016~ -~07919~^~614~^0.726^8^0.002^~1~^~A~^^^1^0.466^0.816^3^0.719^0.733^~2, 3~^~10/01/2016~ -~07919~^~615~^0.011^8^0.000^~1~^~A~^^^1^0.009^0.012^2^0.011^0.011^~2, 3~^~10/01/2016~ -~07919~^~617~^3.209^8^0.008^~1~^~AS~^^^1^2.171^4.193^2^3.178^3.239^~2, 3~^~10/01/2016~ -~07919~^~618~^2.648^8^0.008^~1~^~AS~^^^1^2.281^4.105^3^2.619^2.678^~2, 3~^~10/01/2016~ -~07919~^~619~^0.184^8^0.001^~1~^~AS~^^^1^0.143^0.301^3^0.182^0.186^~2, 3~^~10/01/2016~ -~07919~^~620~^0.094^8^0.000^~1~^~A~^^^1^0.057^0.110^3^0.094^0.095^~2, 3~^~10/01/2016~ -~07919~^~621~^0.008^8^0.000^~1~^~A~^^^1^0.005^0.012^^^^~2, 3~^~10/01/2016~ -~07919~^~624~^0.005^8^0.000^~1~^~A~^^^1^0.004^0.006^1^0.004^0.005^~2, 3~^~10/01/2016~ -~07919~^~625~^0.020^8^0.000^~1~^~A~^^^1^0.008^0.024^1^0.019^0.021^~2, 3~^~10/01/2016~ -~07919~^~626~^0.313^8^0.001^~1~^~AS~^^^1^0.111^0.480^2^0.310^0.316^~2, 3~^~10/01/2016~ -~07919~^~627~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~628~^0.057^8^0.000^~1~^~A~^^^1^0.036^0.067^1^0.056^0.058^~2, 3~^~10/01/2016~ -~07919~^~629~^0.003^8^0.000^~1~^~A~^^^1^0.002^0.006^2^0.003^0.004^~1, 2, 3~^~10/01/2016~ -~07919~^~630~^0.039^8^0.000^~1~^~AS~^^^1^0.002^0.074^3^0.038^0.039^~2, 3~^~10/01/2016~ -~07919~^~631~^0.010^8^0.000^~1~^~A~^^^1^0.006^0.012^2^0.010^0.010^~2, 3~^~10/01/2016~ -~07919~^~645~^3.660^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~646~^3.003^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~652~^0.015^8^0.000^~1~^~A~^^^1^0.009^0.016^1^0.015^0.016^~2, 3~^~10/01/2016~ -~07919~^~653~^0.029^8^0.000^~1~^~A~^^^1^0.017^0.034^2^0.029^0.030^~2, 3~^~10/01/2016~ -~07919~^~654~^0.003^8^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~662~^0.004^8^0.000^~1~^~A~^^^1^0.001^0.006^2^0.004^0.004^~1, 2, 3~^~10/01/2016~ -~07919~^~663~^0.104^8^0.001^~1~^~A~^^^1^0.040^0.133^3^0.102^0.106^~2, 3~^~10/01/2016~ -~07919~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~665~^0.019^8^0.000^~1~^~A~^^^1^0.012^0.029^2^0.019^0.020^~2, 3~^~10/01/2016~ -~07919~^~670~^0.016^8^0.000^~1~^~A~^^^1^0.009^0.039^3^0.016^0.017^~2, 3~^~10/01/2016~ -~07919~^~671~^0.006^8^0.000^~1~^~A~^^^1^0.004^0.008^1^0.006^0.007^~2, 3~^~10/01/2016~ -~07919~^~672~^0.018^8^0.000^~1~^~A~^^^1^0.010^0.022^2^0.017^0.018^~2, 3~^~10/01/2016~ -~07919~^~673~^0.309^8^0.001^~1~^~A~^^^1^0.110^0.478^2^0.306^0.312^~2, 3~^~10/01/2016~ -~07919~^~674~^3.105^8^0.007^~1~^~A~^^^1^2.109^4.098^2^3.076^3.133^~2, 3~^~10/01/2016~ -~07919~^~675~^2.613^8^0.008^~1~^~A~^^^1^2.245^4.079^3^2.583^2.643^~2, 3~^~10/01/2016~ -~07919~^~676~^0.039^8^0.000^~1~^~A~^^^1^0.002^0.074^3^0.038^0.039^~1, 2, 3~^~10/01/2016~ -~07919~^~685~^0.004^8^0.000^~1~^~A~^^^1^0.002^0.007^1^0.004^0.004^~1, 2, 3~^~10/01/2016~ -~07919~^~687~^0.016^8^0.000^~1~^~A~^^^1^0.007^0.021^2^0.016^0.017^~2, 3~^~10/01/2016~ -~07919~^~689~^0.016^8^0.000^~1~^~AS~^^^1^0.008^0.020^2^0.016^0.016^~2, 3~^~10/01/2016~ -~07919~^~693~^0.108^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~07919~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~851~^0.180^8^0.001^~1~^~A~^^^1^0.137^0.298^3^0.178^0.182^~2, 3~^~10/01/2016~ -~07919~^~852~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.003^2^0.002^0.002^~1, 2, 3~^~10/01/2016~ -~07919~^~853~^0.014^8^0.000^~1~^~A~^^^1^0.007^0.018^2^0.013^0.014^~2, 3~^~10/01/2016~ -~07919~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07919~^~858~^0.018^8^0.000^~1~^~A~^^^1^0.011^0.023^1^0.018^0.019^~2, 3~^~10/01/2016~ -~07920~^~312~^0.070^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~315~^0.032^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~404~^0.249^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~405~^0.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~406~^2.900^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~410~^0.760^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~415~^0.130^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~501~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~502~^0.540^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~503~^0.620^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~504~^1.100^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~505~^1.160^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~506~^0.360^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~507~^0.150^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~508~^0.560^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~509~^0.520^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~510~^0.690^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~511~^0.840^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~512~^0.470^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~513~^0.830^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~514~^1.240^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~515~^2.350^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~516~^0.910^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~517~^0.970^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~518~^0.600^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~607~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~608~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~609~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~610~^0.090^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~611~^0.100^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~612~^0.560^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~613~^6.390^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~614~^3.330^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~617~^12.505^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~618~^2.620^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~619~^0.400^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~620~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~621~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~626~^1.140^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~627~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~628~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~629~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~630~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~631~^0.000^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~ -~07920~^~645~^13.680^0^^~4~^~BFZN~^~07016~^^^^^^^^^~08/01/2002~ -~07920~^~646~^3.020^0^^~4~^~BFZN~^~07016~^^^^^^^^^~08/01/2002~ -~07921~^~312~^0.080^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~315~^0.038^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~404~^0.600^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~405~^0.285^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~406~^4.867^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~410~^1.060^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~415~^0.500^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~501~^0.210^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~502~^0.959^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~503~^0.971^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~504~^1.732^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~505~^1.824^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~506~^0.593^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~507~^0.262^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~508~^0.868^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~509~^0.710^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~510~^1.083^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~511~^1.516^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~512~^0.699^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~513~^1.480^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~514~^2.073^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~515~^3.383^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~516~^1.641^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~517~^1.188^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~518~^0.942^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~606~^16.000^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~607~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~608~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~609~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~610~^0.060^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~611~^0.040^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~612~^0.510^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~613~^7.600^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~614~^4.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~617~^15.400^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~618~^2.870^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~619~^0.330^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~620~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~621~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~626~^1.690^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~627~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~628~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~629~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~630~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~631~^0.000^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~ -~07921~^~645~^21.900^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07921~^~646~^4.300^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07922~^~312~^0.080^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~315~^0.041^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~404~^0.380^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~405~^0.213^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~406~^3.110^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~410~^0.690^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~415~^0.200^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~501~^0.107^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~502~^0.465^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~503~^0.485^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~504~^0.810^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~505~^0.903^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~506~^0.364^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~507~^0.105^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~508~^0.405^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~509~^0.386^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~510~^0.464^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~511~^0.765^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~512~^0.395^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~513~^0.774^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~514~^1.136^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~515~^1.994^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~516~^0.857^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~517~^0.673^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~518~^0.510^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~606~^6.080^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~607~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~608~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~609~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~610~^0.020^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~611~^0.010^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~612~^0.220^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~613~^3.690^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~614~^2.140^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~617~^7.340^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~618~^1.400^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~619~^0.180^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~620~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~621~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~626~^0.660^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~627~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~628~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~629~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~630~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~631~^0.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~645~^8.000^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07922~^~646~^1.580^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~ -~07923~^~312~^0.050^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~404~^0.067^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~405~^0.133^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~406~^7.551^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~410~^0.964^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07923~^~415~^0.385^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07924~^~312~^0.063^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~315~^0.015^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~404~^0.090^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~405~^0.166^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~406~^1.847^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~410~^0.413^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~415~^0.213^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~501~^0.145^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~502~^0.565^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~503~^0.613^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~504~^1.044^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~505~^1.092^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~506~^0.334^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~507~^0.155^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~508~^0.519^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~509~^0.448^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~510~^0.661^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~511~^0.855^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~512~^0.426^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~513~^0.804^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~514~^1.184^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~515~^2.036^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~516~^0.814^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~517~^0.770^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~518~^0.562^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~607~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~608~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~609~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~610~^0.036^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~611~^0.031^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~612~^0.352^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~613~^2.875^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~614~^1.493^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~617~^6.330^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~618~^0.640^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~619~^0.186^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~620~^0.018^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~621~^0.001^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~626~^0.795^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~627~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~628~^0.040^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~629~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~630~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~631~^0.000^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~645~^7.165^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07924~^~646~^0.846^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~ -~07925~^~312~^0.079^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~315~^0.013^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~404~^0.095^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~405~^0.170^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~406~^5.065^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~410~^0.300^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~415~^0.180^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~501~^0.157^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~502~^0.651^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~503~^0.745^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~504~^1.266^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~505~^1.322^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~506~^0.400^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~507~^0.221^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~508~^0.621^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~509~^0.563^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~510~^0.759^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~511~^1.065^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~512~^0.549^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~513~^1.242^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~514~^1.689^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~515~^2.809^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~516~^1.440^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~517~^1.242^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~518~^0.695^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~ -~07925~^~606~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~645~^0.560^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07925~^~646~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~312~^0.160^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~315~^0.070^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~404~^0.930^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~405~^0.330^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~406~^5.600^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~410~^1.060^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~415~^0.550^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~501~^0.253^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~502~^1.012^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~503~^1.084^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~504~^1.625^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~505~^1.878^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~506~^0.470^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~507~^0.289^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~508~^0.940^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~509~^0.686^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~510~^1.120^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~511~^1.373^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~512~^0.614^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~513~^1.336^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~514~^2.095^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~515~^3.829^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~516~^1.553^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~517~^1.336^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~518~^0.903^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~606~^13.100^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~607~^0.000^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~608~^0.000^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~609~^0.000^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~610~^0.000^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~611~^0.000^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~612~^0.520^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~613~^7.640^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~614~^3.560^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~ -~07926~^~645~^18.200^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07926~^~646~^3.600^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07927~^~312~^0.111^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~315~^0.066^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~404~^0.071^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~405~^0.173^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~406~^3.675^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~410~^0.797^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~415~^0.381^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~501~^0.209^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~502~^0.817^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~503~^0.945^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~504~^1.467^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~505~^1.692^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~506~^0.523^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~507~^0.204^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~508~^0.738^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~509~^0.717^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~510~^0.984^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~511~^1.293^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~512~^0.560^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~513~^1.171^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~514~^1.788^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~515~^3.018^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~516~^1.095^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~517~^0.906^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~518~^0.832^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~606~^3.401^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07927~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~611~^0.017^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~612~^0.102^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~613~^2.418^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~614~^0.861^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~617~^1.985^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~618~^1.371^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~619~^0.085^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~620~^0.085^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~621~^0.015^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~626~^0.379^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~628~^0.008^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~630~^0.008^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~631~^0.015^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~ -~07927~^~645~^2.380^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07927~^~646~^1.572^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07928~^~312~^0.063^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~315~^0.015^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~404~^0.090^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~405~^0.166^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~406~^1.847^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~410~^0.413^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~415~^0.213^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~501~^0.145^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~502~^0.565^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~503~^0.613^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~504~^1.044^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~505~^1.092^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~506~^0.334^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~507~^0.155^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~508~^0.519^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~509~^0.448^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~510~^0.661^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~511~^0.855^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~512~^0.426^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~513~^0.804^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~514~^1.184^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~515~^2.036^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~516~^0.814^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~517~^0.770^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~518~^0.562^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~606~^4.800^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07928~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~610~^0.036^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~611~^0.031^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~612~^0.352^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~613~^2.875^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~614~^1.493^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~617~^6.330^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~618~^0.640^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~619~^0.186^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~620~^0.018^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~621~^0.001^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~626~^0.795^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~628~^0.040^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~645~^7.165^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07928~^~646~^0.846^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~ -~07929~^~312~^0.111^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~404~^0.071^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~405~^0.173^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~406~^3.675^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~415~^0.381^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~501~^0.171^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~502~^0.669^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~503~^0.783^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~504~^1.199^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~505~^1.418^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~506~^0.436^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~507~^0.157^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~508~^0.597^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~509~^0.595^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~510~^0.800^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~511~^1.050^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~512~^0.470^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~513~^0.932^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~514~^1.462^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~515~^2.456^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~516~^0.746^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~517~^0.626^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~518~^0.669^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07929~^~606~^3.401^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~07929~^~607~^0.001^0^^~4~^~BFFN~^~07927~^^^^^^^^^~03/01/2009~ -~07929~^~608~^0.000^0^^~4~^~BFFN~^~07927~^^^^^^^^^~03/01/2009~ -~07929~^~609~^0.000^0^^~4~^~BFFN~^~07927~^^^^^^^^^~03/01/2009~ -~07929~^~610~^0.001^0^^~4~^~BFFN~^~07927~^^^^^^^^^~03/01/2009~ -~07929~^~611~^0.017^0^^~4~^~BFFN~^~07927~^^^^^^^^^~06/01/2015~ -~07929~^~612~^0.102^0^^~4~^~BFFN~^~07927~^^^^^^^^^~06/01/2015~ -~07929~^~613~^2.418^0^^~4~^~BFFN~^~07927~^^^^^^^^^~06/01/2015~ -~07929~^~614~^0.861^0^^~4~^~BFFN~^~07927~^^^^^^^^^~06/01/2015~ -~07929~^~617~^1.985^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~618~^1.371^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~619~^0.085^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~620~^0.085^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~621~^0.015^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~626~^0.379^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~627~^0.000^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~628~^0.008^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~629~^0.000^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~630~^0.008^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~631~^0.015^0^^~4~^~BFFN~^~07927~^^^^^^^^^~05/01/2007~ -~07929~^~645~^2.380^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07929~^~646~^1.572^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07930~^~606~^7.900^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~ -~07931~^~312~^0.103^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~315~^0.155^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~404~^0.246^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~405~^0.173^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~406~^2.975^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~410~^0.297^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~415~^0.230^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~501~^0.174^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~502~^0.668^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~503~^0.682^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~504~^1.202^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~505~^1.300^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~506~^0.387^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~507~^0.178^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~508~^0.598^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~509~^0.507^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~510~^0.769^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~511~^0.979^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~512~^0.537^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~513~^0.917^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~514~^1.385^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~515~^2.286^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~516~^0.880^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~517~^0.702^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~518~^0.602^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~ -~07931~^~606~^8.438^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~610~^0.012^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~611~^0.024^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~612~^0.691^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~613~^4.961^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~614~^2.669^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~617~^9.191^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~618~^1.837^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~619~^0.154^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~620~^0.065^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~626~^0.683^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~628~^0.171^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~630~^0.028^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~645~^10.105^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07931~^~646~^2.080^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~ -~07932~^~312~^0.230^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~315~^0.034^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~404~^0.014^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~405~^0.023^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~406~^2.742^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~410~^0.193^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~415~^0.120^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~502~^0.686^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~503~^0.812^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~504~^1.201^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~505~^1.335^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~506~^0.437^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~508~^0.645^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~509~^0.527^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~510~^0.806^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~511~^1.076^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~512~^0.478^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~513~^1.015^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~514~^1.499^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~515~^2.424^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~516~^1.234^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~517~^0.884^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~518~^0.601^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07932~^~606~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07932~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~612~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~613~^0.110^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~614~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~617~^0.140^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~618~^0.060^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~626~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07932~^~645~^0.160^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07932~^~646~^0.060^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~ -~07933~^~312~^0.034^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~315~^0.043^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~404~^0.018^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~405~^0.029^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~406~^3.428^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~410~^0.241^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~415~^0.150^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~502~^0.686^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~503~^0.812^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~504~^1.201^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~505~^1.335^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~506~^0.437^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~508~^0.645^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~509~^0.527^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~510~^0.806^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~511~^1.076^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~512~^0.478^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~513~^1.015^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~514~^1.499^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~515~^2.424^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~516~^1.234^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~517~^0.884^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~518~^0.601^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~07933~^~606~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07933~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~612~^0.004^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~613~^0.089^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~614~^0.032^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~617~^0.103^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~618~^0.060^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~619~^0.003^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~620~^0.006^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~626~^0.015^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~628~^0.003^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~631~^0.001^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~645~^0.121^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07933~^~646~^0.073^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~ -~07934~^~606~^6.230^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~645~^8.270^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07934~^~646~^2.330^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~312~^0.069^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~315~^0.017^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~404~^0.043^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~405~^0.062^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~406~^6.536^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~410~^0.565^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~415~^0.298^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~501~^0.160^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~502~^0.597^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~503~^0.711^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~504~^1.048^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~505~^1.167^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~506~^0.382^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~507~^0.198^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~508~^0.562^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~509~^0.461^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~510~^0.702^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~511~^0.928^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~512~^0.419^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~513~^0.873^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~514~^1.301^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~515~^2.112^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~516~^1.034^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~517~^0.750^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~518~^0.520^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~606~^2.480^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07935~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~611~^0.008^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~612~^0.074^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~613~^1.874^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~614~^0.460^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~617~^2.333^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~618~^1.325^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~619~^0.057^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~620~^0.038^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~621~^0.015^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~626~^0.397^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~628~^0.085^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~629~^0.014^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~631~^0.007^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~645~^2.816^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07935~^~646~^1.456^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~ -~07936~^~312~^0.082^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~315~^0.155^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~404~^0.159^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~405~^0.097^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~406~^3.072^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~410~^0.340^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~415~^0.163^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~501~^0.101^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~502~^0.357^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~503~^0.419^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~504~^0.714^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~505~^0.664^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~506~^0.217^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~507~^0.151^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~508~^0.402^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~509~^0.303^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~510~^0.470^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~511~^0.629^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~512~^0.236^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~513~^0.507^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~514~^0.766^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~515~^2.109^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~516~^0.461^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~517~^0.610^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~518~^0.430^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~606~^5.460^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~610~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~611~^0.031^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~612~^0.188^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~613~^3.312^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~614~^1.905^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~617~^6.900^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~618~^2.786^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~619~^0.219^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~620~^0.037^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~621~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~626~^0.517^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~628~^0.124^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~631~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~07936~^~645~^7.548^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07936~^~646~^3.051^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07937~^~312~^0.093^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~315~^0.265^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~404~^0.152^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~405~^0.150^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~406~^3.310^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~410~^0.360^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~415~^0.388^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~501~^0.126^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~502~^0.509^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~503~^0.540^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~504~^0.937^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~505~^1.024^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~506~^0.298^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~507~^0.135^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~508~^0.474^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~509~^0.388^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~510~^0.614^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~511~^0.908^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~512~^0.361^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~513~^0.724^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~514~^1.143^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~515~^1.889^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~516~^0.664^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~517~^0.522^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~518~^0.493^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~606~^11.700^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07937~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~610~^0.060^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~611~^0.073^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~612~^0.645^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~613~^7.090^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~614~^3.800^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~617~^11.497^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~618~^2.171^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~619~^0.288^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~620~^0.046^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~621~^0.004^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~626~^1.146^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~628~^0.144^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~631~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~645~^12.789^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07937~^~646~^2.512^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~07938~^~312~^0.041^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~315~^0.028^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~404~^0.402^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~405~^0.101^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~406~^2.276^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~410~^0.238^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~415~^0.231^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~ -~07938~^~606~^0.870^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07938~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2008~ -~07938~^~612~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~613~^0.582^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~614~^0.248^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~617~^1.166^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~618~^0.223^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~619~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~626~^0.074^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~07938~^~645~^1.240^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07938~^~646~^0.230^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~07939~^~312~^0.074^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~315~^0.016^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~404~^0.593^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~405~^0.179^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~406~^2.773^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~410~^0.509^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~415~^0.322^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~501~^0.150^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~502~^0.561^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~503~^0.571^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~504~^1.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~505~^1.122^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~506~^0.320^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~507~^0.155^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~508~^0.503^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~509~^0.423^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~510~^0.678^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~511~^0.814^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~512~^0.470^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~513~^0.747^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~514~^1.142^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~515~^1.916^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~516~^0.739^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~517~^0.602^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~518~^0.526^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~606~^8.719^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~612~^0.204^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~613~^5.437^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~614~^2.986^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~617~^10.130^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~618~^1.955^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~619~^0.151^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~620~^0.045^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~626~^0.406^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~628~^0.279^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2002~ -~07939~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~07939~^~645~^10.890^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07939~^~646~^2.233^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~ -~07940~^~312~^0.110^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~315~^0.277^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~404~^0.237^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~405~^0.249^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~406~^2.840^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~410~^0.528^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~415~^0.329^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~501~^0.144^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~502~^0.444^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~503~^0.541^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~504~^0.904^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~505~^0.722^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~506~^0.266^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~507~^0.178^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~508~^0.497^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~509~^0.380^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~510~^0.591^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~511~^0.638^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~512~^0.323^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~513~^0.516^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~514~^0.876^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~515~^2.481^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~516~^0.510^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~517~^0.828^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~518~^0.505^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~606~^5.614^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~607~^0.002^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~610~^0.022^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~611~^0.025^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~612~^0.273^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~613~^3.595^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~614~^1.635^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~617~^6.764^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~618~^1.463^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~619~^0.143^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~620~^0.030^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~621~^0.003^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~626~^0.709^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~628~^0.115^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~631~^0.002^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~ -~07940~^~645~^7.614^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07940~^~646~^1.657^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~312~^0.080^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~315~^0.038^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~404~^0.600^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~405~^0.285^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~406~^4.867^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~410~^1.060^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~415~^0.500^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~501~^0.210^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~502~^0.959^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~503~^0.971^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~504~^1.732^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~505~^1.824^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~506~^0.593^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~507~^0.262^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~508~^0.868^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~509~^0.710^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~510~^1.083^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~511~^1.516^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~512~^0.699^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~513~^1.480^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~514~^2.073^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~515~^3.383^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~516~^1.641^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~517~^1.188^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~518~^0.942^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~ -~07941~^~606~^9.750^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~645~^13.200^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07941~^~646~^2.290^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~312~^0.400^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~315~^0.120^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~404~^0.030^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~405~^0.600^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~406~^3.300^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~410~^1.200^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~415~^0.060^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~501~^0.157^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~502~^0.568^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~503~^0.554^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~504~^1.050^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~505~^0.838^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~506~^0.284^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~507~^0.170^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~508~^0.582^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~509~^0.454^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~510~^0.768^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~511~^0.895^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~512~^0.298^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~513~^0.952^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~514~^1.163^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~515~^1.904^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~516~^1.363^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~517~^0.995^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~518~^0.595^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~606~^10.100^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~607~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~608~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~609~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~610~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~611~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~612~^0.390^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~613~^6.090^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~614~^2.960^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~617~^11.410^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~618~^2.750^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~619~^0.210^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~620~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~621~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~626~^0.950^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~627~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~628~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~629~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~630~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~631~^0.000^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~ -~07942~^~645~^13.600^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07942~^~646~^3.420^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~606~^0.220^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~645~^0.250^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07943~^~646~^0.190^1^^~1~^~A~^^^^^^^^^^~01/01/2002~ -~07944~^~312~^0.039^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~315~^0.020^0^^~4~^~BFZN~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~404~^0.033^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~405~^0.114^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~406~^5.159^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~410~^0.584^0^^~4~^~BFZN~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~415~^0.294^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~ -~07944~^~501~^0.154^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~502~^0.600^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~503~^0.702^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~504~^1.076^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~505~^1.272^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~506~^0.391^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~507~^0.141^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~508~^0.536^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~509~^0.534^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~510~^0.717^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~511~^0.942^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~512~^0.421^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~513~^0.836^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~514~^1.311^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~515~^2.203^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~516~^0.670^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~517~^0.562^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~518~^0.600^0^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~07944~^~606~^0.118^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~07944~^~607~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~608~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~609~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~610~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~611~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~612~^0.003^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~613~^0.086^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~614~^0.028^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~617~^0.487^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~618~^0.322^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~619~^0.021^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~620~^0.021^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~621~^0.004^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~626~^0.102^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~627~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~628~^0.001^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~629~^0.000^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~630~^0.001^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~631~^0.003^0^^~4~^~BFZN~^~05196~^^^^^^^^^~05/01/2005~ -~07944~^~645~^0.591^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~07944~^~646~^0.370^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~07945~^~312~^0.047^12^0.005^~1~^~A~^^^1^0.027^0.083^11^0.035^0.058^~2, 3~^~04/01/2011~ -~07945~^~315~^0.017^12^0.001^~1~^~A~^^^1^0.015^0.022^11^0.015^0.019^~2, 3~^~04/01/2011~ -~07945~^~404~^0.017^12^0.001^~1~^~A~^^^1^0.015^0.020^11^0.015^0.019^~1, 2, 3~^~04/01/2011~ -~07945~^~405~^0.050^12^0.004^~1~^~A~^^^1^0.030^0.070^11^0.041^0.059^~2, 3~^~04/01/2011~ -~07945~^~406~^1.827^12^0.086^~1~^~A~^^^1^1.390^2.180^11^1.637^2.016^~2, 3~^~04/01/2011~ -~07945~^~415~^0.193^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~501~^0.126^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~502~^0.540^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~503~^0.604^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~504~^1.033^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~505~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~506~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~507~^0.126^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~508~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~509~^0.428^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~510~^0.632^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~511~^0.787^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~512~^0.377^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~513~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~514~^1.165^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~515~^1.873^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~516~^0.556^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~517~^0.494^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~518~^0.469^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~07945~^~606~^11.593^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~607~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~608~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~609~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~610~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~611~^0.044^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~612~^0.937^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~613~^3.295^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~614~^3.625^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~617~^11.330^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~618~^0.693^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~619~^0.084^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~620~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~621~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~626~^1.021^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~627~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~628~^0.122^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~629~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~630~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~631~^0.000^0^^~4~^~BFFN~^~07022~^^^^^^^^^~07/01/2002~ -~07945~^~645~^12.722^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07945~^~646~^0.808^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~ -~07949~^~312~^0.151^3^0.025^~1~^~A~^^^1^0.105^0.191^2^0.043^0.259^~2, 3~^~07/01/2002~ -~07949~^~315~^0.051^3^0.007^~1~^~A~^^^1^0.043^0.065^2^0.021^0.081^~2, 3~^~07/01/2002~ -~07949~^~404~^0.055^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~405~^0.120^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~406~^2.654^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~410~^0.309^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~415~^0.165^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~502~^0.452^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~503~^0.505^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~504~^0.864^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~505~^0.917^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~506~^0.277^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~507~^0.105^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~508~^0.424^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~509~^0.358^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~510~^0.529^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~511~^0.659^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~512~^0.315^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~513~^0.591^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~514~^0.974^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~515~^1.567^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~516~^0.465^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~517~^0.413^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~518~^0.392^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07949~^~606~^7.220^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07949~^~607~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~608~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~609~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~610~^0.068^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~611~^0.034^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~612~^0.235^2^^~1~^~A~^^^1^0.212^0.258^1^^^^~07/01/2002~ -~07949~^~613~^4.990^2^^~1~^~A~^^^1^4.563^5.416^1^^^^~07/01/2002~ -~07949~^~614~^1.894^2^^~1~^~A~^^^1^1.645^2.142^1^^^^~07/01/2002~ -~07949~^~617~^9.304^2^^~1~^~A~^^^1^8.489^10.119^1^^^^~07/01/2002~ -~07949~^~618~^3.734^2^^~1~^~A~^^^1^3.092^4.376^1^^^^~07/01/2002~ -~07949~^~619~^0.128^2^^~1~^~A~^^^1^0.103^0.152^1^^^^~07/01/2002~ -~07949~^~620~^0.101^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~07949~^~621~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~626~^1.159^2^^~1~^~A~^^^1^1.133^1.184^1^^^^~07/01/2002~ -~07949~^~627~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~628~^0.179^2^^~1~^~A~^^^1^0.163^0.195^1^^^^~07/01/2002~ -~07949~^~629~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~630~^0.101^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~07949~^~631~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07949~^~645~^10.743^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07949~^~646~^3.963^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07950~^~312~^0.097^2^^~1~^~A~^^^1^0.096^0.097^1^^^^~07/01/2002~ -~07950~^~315~^0.045^2^^~1~^~A~^^^1^0.042^0.048^1^^^^~07/01/2002~ -~07950~^~404~^0.055^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~405~^0.121^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~406~^2.665^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~410~^0.310^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~415~^0.166^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~501~^0.111^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~502~^0.474^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~503~^0.530^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~504~^0.907^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~505~^0.963^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~506~^0.291^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~508~^0.445^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~509~^0.376^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~510~^0.555^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~511~^0.691^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~512~^0.331^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~513~^0.620^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~514~^1.023^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~515~^1.645^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~516~^0.488^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~517~^0.434^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~518~^0.412^0^^~1~^~A~^^^^^^^^^^~07/01/2002~ -~07950~^~606~^7.666^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07950~^~607~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~608~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~609~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~610~^0.072^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~611~^0.036^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~612~^0.268^2^^~1~^~A~^^^1^0.250^0.285^1^^^^~07/01/2002~ -~07950~^~613~^5.227^2^^~1~^~A~^^^1^5.083^5.370^1^^^^~07/01/2002~ -~07950~^~614~^2.064^2^^~1~^~A~^^^1^1.935^2.193^1^^^^~07/01/2002~ -~07950~^~617~^9.973^2^^~1~^~A~^^^1^9.627^10.319^1^^^^~07/01/2002~ -~07950~^~618~^4.154^2^^~1~^~A~^^^1^3.911^4.397^1^^^^~07/01/2002~ -~07950~^~619~^0.146^2^^~1~^~A~^^^1^0.134^0.157^1^^^^~07/01/2002~ -~07950~^~620~^0.104^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~07950~^~621~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~626~^1.120^2^^~1~^~A~^^^1^1.094^1.146^1^^^^~07/01/2002~ -~07950~^~627~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~628~^0.190^2^^~1~^~A~^^^1^0.186^0.194^1^^^^~07/01/2002~ -~07950~^~629~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~630~^0.103^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~07950~^~631~^0.000^0^^~4~^~BFFN~^~07007~^^^^^^^^^~07/01/2002~ -~07950~^~645~^11.386^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07950~^~646~^4.404^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~07951~^~312~^0.212^3^^~1~^~A~^^^1^0.129^0.314^^^^~2~^~10/01/2002~ -~07951~^~404~^0.116^4^^~6~^~JA~^^^2^0.070^0.190^^^^~2~^~03/01/2003~ -~07951~^~405~^0.287^4^^~6~^~JA~^^^2^0.090^0.570^^^^~2~^~03/01/2003~ -~07951~^~406~^2.273^4^^~6~^~JA~^^^2^1.800^3.060^^^^~2~^~03/01/2003~ -~07951~^~415~^0.120^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~606~^4.732^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~610~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~611~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~612~^0.167^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~613~^2.993^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~614~^1.549^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~617~^5.660^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~618~^1.349^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~619~^0.259^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~620~^0.056^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~626~^0.394^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~628~^0.102^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~07951~^~645~^6.156^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07951~^~646~^1.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~07952~^~312~^0.060^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~315~^0.044^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~404~^0.042^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~405~^0.132^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~406~^3.320^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~410~^0.696^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~415~^0.180^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~605~^0.430^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~606~^7.990^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~609~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~610~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~612~^0.251^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~613~^5.335^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~614~^2.292^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~615~^0.041^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~617~^9.444^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~618~^4.186^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~620~^0.102^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~625~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~626~^0.921^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~628~^0.190^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07952~^~645~^10.555^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~646~^4.672^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~652~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~653~^0.072^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~672~^0.101^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~685~^0.032^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07952~^~851~^0.252^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07953~^~312~^0.085^14^0.011^~1~^~A~^^^1^0.053^0.157^5^0.057^0.112^~2, 3~^~05/01/2014~ -~07953~^~315~^0.065^14^0.003^~1~^~A~^^^1^0.042^0.080^9^0.057^0.072^~2, 3~^~05/01/2014~ -~07953~^~404~^0.243^9^0.009^~1~^~A~^^^1^0.200^0.330^3^0.216^0.270^~2, 3~^~05/01/2014~ -~07953~^~405~^0.180^9^0.003^~1~^~A~^^^1^0.160^0.200^4^0.170^0.189^~2, 3~^~05/01/2014~ -~07953~^~406~^4.328^9^0.118^~1~^~A~^^^1^3.880^5.430^3^3.955^4.702^~2, 3~^~05/01/2014~ -~07953~^~410~^0.644^5^0.024^~1~^~A~^^^1^0.560^0.910^1^0.437^0.851^~2, 3~^~05/01/2014~ -~07953~^~415~^0.137^9^0.008^~1~^~A~^^^1^0.110^0.180^2^0.103^0.171^~2, 3~^~05/01/2014~ -~07953~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~502~^0.501^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~503~^0.602^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~504~^1.110^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~505~^1.011^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~506~^0.348^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~507~^0.193^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~508~^0.540^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~509~^0.424^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~510~^0.714^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~511~^0.939^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~512~^0.437^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~513~^0.936^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~514~^1.284^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~515~^2.301^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~516~^1.031^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~517~^1.016^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~518~^0.624^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07953~^~521~^0.360^0^^~4~^~BFPN~^~07969~^^^^^^^^^~08/01/2015~ -~07953~^~605~^0.209^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~606~^13.557^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~609~^0.004^9^0.000^~1~^~A~^^^1^0.000^0.005^5^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~07953~^~610~^0.038^9^0.001^~1~^~A~^^^1^0.029^0.043^4^0.037^0.040^~2, 3~^~04/01/2013~ -~07953~^~611~^0.034^9^0.000^~1~^~A~^^^1^0.025^0.036^5^0.033^0.035^~2, 3~^~05/01/2014~ -~07953~^~612~^0.506^9^0.006^~1~^~A~^^^1^0.392^0.538^4^0.489^0.523^~2, 3~^~05/01/2014~ -~07953~^~613~^8.496^9^0.111^~1~^~A~^^^1^6.681^9.114^4^8.184^8.809^~2, 3~^~05/01/2014~ -~07953~^~614~^4.228^9^0.053^~1~^~A~^^^1^3.394^4.734^3^4.059^4.396^~2, 3~^~05/01/2014~ -~07953~^~615~^0.077^9^0.001^~1~^~A~^^^1^0.073^0.082^3^0.072^0.081^~2, 3~^~04/01/2013~ -~07953~^~617~^15.199^9^0.188^~1~^~AS~^^^1^12.332^16.139^4^14.655^15.742^~2, 3~^~05/01/2014~ -~07953~^~618~^7.107^9^0.093^~1~^~AS~^^^1^5.344^7.640^4^6.848^7.367^~2, 3~^~05/01/2014~ -~07953~^~619~^0.299^9^0.009^~1~^~AS~^^^1^0.218^0.345^3^0.270^0.328^~2, 3~^~05/01/2014~ -~07953~^~620~^0.142^9^0.001^~1~^~A~^^^1^0.132^0.152^4^0.139^0.146^~2, 3~^~04/01/2013~ -~07953~^~621~^0.008^9^0.000^~1~^~A~^^^1^0.004^0.013^2^0.006^0.009^~2, 3~^~04/01/2013~ -~07953~^~624~^0.011^9^0.001^~1~^~A~^^^1^0.009^0.016^4^0.010^0.013^~2, 3~^~04/01/2013~ -~07953~^~625~^0.012^9^0.001^~1~^~A~^^^1^0.010^0.017^4^0.010^0.014^~2, 3~^~04/01/2013~ -~07953~^~626~^0.787^9^0.011^~1~^~AS~^^^1^0.650^0.871^3^0.753^0.822^~2, 3~^~05/01/2014~ -~07953~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~628~^0.337^9^0.003^~1~^~A~^^^1^0.319^0.360^5^0.329^0.345^~2, 3~^~05/01/2014~ -~07953~^~629~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.004^2^0.004^0.004^~2, 3~^~04/01/2013~ -~07953~^~630~^0.005^9^0.000^~1~^~AS~^^^1^0.005^0.007^3^0.005^0.006^~2, 3~^~05/01/2014~ -~07953~^~631~^0.027^9^0.001^~1~^~A~^^^1^0.025^0.031^4^0.025^0.028^~2, 3~^~04/01/2013~ -~07953~^~645~^16.448^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~646~^8.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~652~^0.025^9^0.000^~1~^~A~^^^1^0.018^0.027^5^0.023^0.026^~2, 3~^~05/01/2014~ -~07953~^~653~^0.136^9^0.002^~1~^~A~^^^1^0.091^0.148^5^0.130^0.142^~2, 3~^~05/01/2014~ -~07953~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~662~^0.011^9^0.001^~1~^~A~^^^1^0.008^0.017^4^0.009^0.013^~2, 3~^~05/01/2014~ -~07953~^~663~^0.145^9^0.009^~1~^~A~^^^1^0.111^0.180^3^0.116^0.175^~2, 3~^~05/01/2014~ -~07953~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07953~^~665~^0.051^9^0.002^~1~^~A~^^^1^0.041^0.063^3^0.044^0.058^~2, 3~^~05/01/2014~ -~07953~^~670~^0.056^9^0.003^~1~^~A~^^^1^0.045^0.072^3^0.047^0.065^~2, 3~^~04/01/2013~ -~07953~^~671~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~07953~^~672~^0.301^9^0.005^~1~^~A~^^^1^0.262^0.322^3^0.284^0.319^~2, 3~^~05/01/2014~ -~07953~^~673~^0.776^9^0.011^~1~^~A~^^^1^0.639^0.854^3^0.742^0.810^~2, 3~^~05/01/2014~ -~07953~^~674~^15.053^9^0.191^~1~^~A~^^^1^12.221^15.967^4^14.511^15.595^~2, 3~^~05/01/2014~ -~07953~^~675~^7.001^9^0.095^~1~^~A~^^^1^5.251^7.542^4^6.728^7.273^~2, 3~^~05/01/2014~ -~07953~^~676~^0.005^9^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.006^~2, 3~^~05/01/2014~ -~07953~^~685~^0.009^9^0.001^~1~^~A~^^^1^0.006^0.013^2^0.004^0.015^~2, 3~^~04/01/2013~ -~07953~^~687~^0.106^9^0.002^~1~^~A~^^^1^0.069^0.116^5^0.101^0.112^~2, 3~^~05/01/2014~ -~07953~^~689~^0.093^9^0.002^~1~^~AS~^^^1^0.082^0.101^3^0.088^0.098^~2, 3~^~05/01/2014~ -~07953~^~693~^0.156^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07953~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~07953~^~851~^0.288^9^0.008^~1~^~A~^^^1^0.208^0.333^4^0.265^0.312^~2, 3~^~05/01/2014~ -~07953~^~852~^0.043^9^0.001^~1~^~A~^^^1^0.038^0.048^3^0.039^0.048^~2, 3~^~04/01/2013~ -~07953~^~853~^0.050^9^0.001^~1~^~A~^^^1^0.044^0.053^3^0.047^0.052^~2, 3~^~05/01/2014~ -~07953~^~856~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~07953~^~858~^0.054^9^0.001^~1~^~A~^^^1^0.050^0.056^4^0.053^0.056^~2, 3~^~04/01/2013~ -~07954~^~312~^0.069^6^0.002^~1~^~A~^^^1^0.048^0.094^4^0.063^0.075^~2, 3~^~11/01/2016~ -~07954~^~315~^0.137^6^0.006^~1~^~A~^^^1^0.019^0.273^4^0.119^0.155^~2, 3~^~11/01/2016~ -~07954~^~404~^0.053^5^0.008^~1~^~A~^^^1^0.035^0.088^2^0.017^0.090^~2, 3~^~11/01/2016~ -~07954~^~405~^0.131^5^0.015^~1~^~A~^^^1^0.100^0.170^2^0.063^0.199^~2, 3~^~11/01/2016~ -~07954~^~406~^2.407^5^0.129^~1~^~A~^^^1^2.140^2.970^2^1.931^2.882^~2, 3~^~11/01/2016~ -~07954~^~410~^0.322^4^0.063^~1~^~A~^^^1^0.220^0.470^1^-0.451^1.095^~2, 3~^~11/01/2016~ -~07954~^~415~^0.151^5^0.010^~1~^~A~^^^1^0.137^0.176^1^0.067^0.235^~2, 3~^~11/01/2016~ -~07954~^~521~^0.290^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~07954~^~605~^1.179^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~606~^11.298^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~607~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^1^-0.008^0.016^~1, 2, 3~^~10/01/2016~ -~07954~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07954~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~07954~^~610~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.009^3^-0.001^0.005^~1, 2, 3~^~11/01/2016~ -~07954~^~611~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.026^4^0.013^0.021^~2, 3~^~11/01/2016~ -~07954~^~612~^0.792^6^0.074^~1~^~A~^^^1^0.358^0.933^4^0.582^1.002^~2, 3~^~11/01/2016~ -~07954~^~613~^6.590^6^0.264^~1~^~A~^^^1^5.878^7.121^1^4.345^8.836^~2, 3~^~11/01/2016~ -~07954~^~614~^3.486^6^0.146^~1~^~A~^^^1^2.973^3.791^2^2.901^4.070^~2, 3~^~11/01/2016~ -~07954~^~615~^0.026^6^0.003^~1~^~A~^^^1^0.021^0.049^3^0.015^0.036^~2, 3~^~11/01/2016~ -~07954~^~617~^11.891^6^0.587^~1~^~AS~^^^1^10.446^12.734^1^6.695^17.086^~2, 3~^~11/01/2016~ -~07954~^~618~^1.577^6^0.520^~1~^~AS~^^^1^0.883^5.330^3^-0.073^3.227^~2, 3~^~11/01/2016~ -~07954~^~619~^0.090^6^0.026^~1~^~AS~^^^1^0.058^0.273^3^0.006^0.173^~2, 3~^~11/01/2016~ -~07954~^~620~^0.042^6^0.009^~1~^~A~^^^1^0.027^0.108^3^0.014^0.070^~2, 3~^~11/01/2016~ -~07954~^~621~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.009^3^0.000^0.005^~1, 2, 3~^~11/01/2016~ -~07954~^~624~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.006^1^0.001^0.008^~2, 3~^~10/01/2016~ -~07954~^~625~^0.254^6^0.041^~1~^~A~^^^1^0.018^0.339^4^0.135^0.373^~2, 3~^~11/01/2016~ -~07954~^~626~^1.138^6^0.098^~1~^~AS~^^^1^0.716^1.412^4^0.866^1.410^~2, 3~^~11/01/2016~ -~07954~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~10/01/2016~ -~07954~^~628~^0.109^6^0.016^~1~^~A~^^^1^0.085^0.215^3^0.060^0.158^~2, 3~^~11/01/2016~ -~07954~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.002^~1, 2, 3~^~10/01/2016~ -~07954~^~630~^0.023^6^0.006^~1~^~AS~^^^1^0.002^0.055^1^-0.054^0.100^~2, 3~^~11/01/2016~ -~07954~^~631~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.016^3^0.006^0.012^~2, 3~^~11/01/2016~ -~07954~^~645~^13.623^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~646~^1.795^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~652~^0.108^6^0.014^~1~^~A~^^^1^0.021^0.127^4^0.069^0.148^~2, 3~^~11/01/2016~ -~07954~^~653~^0.265^6^0.029^~1~^~A~^^^1^0.078^0.314^4^0.182^0.348^~2, 3~^~11/01/2016~ -~07954~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.002^0.004^~1, 2, 3~^~10/01/2016~ -~07954~^~662~^0.064^6^0.009^~1~^~A~^^^1^0.007^0.078^3^0.037^0.091^~2, 3~^~11/01/2016~ -~07954~^~663~^1.016^6^0.151^~1~^~A~^^^1^0.141^1.430^3^0.537^1.496^~2, 3~^~11/01/2016~ -~07954~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~07954~^~665~^0.097^6^0.012^~1~^~A~^^^1^0.033^0.129^4^0.061^0.132^~2, 3~^~11/01/2016~ -~07954~^~670~^0.132^6^0.013^~1~^~A~^^^1^0.044^0.153^4^0.092^0.171^~2, 3~^~11/01/2016~ -~07954~^~671~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.005^4^0.001^0.004^~1, 2, 3~^~11/01/2016~ -~07954~^~672~^0.027^6^0.018^~1~^~A~^^^1^0.008^0.152^3^-0.030^0.083^~2, 3~^~11/01/2016~ -~07954~^~673~^1.074^6^0.089^~1~^~A~^^^1^0.709^1.334^4^0.824^1.325^~2, 3~^~11/01/2016~ -~07954~^~674~^10.874^6^0.566^~1~^~A~^^^1^9.431^11.692^1^3.818^17.931^~2, 3~^~11/01/2016~ -~07954~^~675~^1.349^6^0.541^~1~^~A~^^^1^0.651^5.253^3^-0.371^3.068^~2, 3~^~11/01/2016~ -~07954~^~676~^0.023^6^0.006^~1~^~A~^^^1^0.002^0.055^1^-0.054^0.100^~1, 2, 3~^~11/01/2016~ -~07954~^~685~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.008^4^0.001^0.005^~1, 2, 3~^~11/01/2016~ -~07954~^~687~^0.205^6^0.026^~1~^~A~^^^1^0.063^0.247^4^0.134^0.277^~2, 3~^~11/01/2016~ -~07954~^~689~^0.031^6^0.002^~1~^~AS~^^^1^0.023^0.050^4^0.023^0.038^~2, 3~^~11/01/2016~ -~07954~^~693~^1.080^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~695~^0.099^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~07954~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~07954~^~851~^0.084^6^0.026^~1~^~A~^^^1^0.052^0.264^3^0.001^0.166^~2, 3~^~11/01/2016~ -~07954~^~852~^0.004^6^0.002^~1~^~A~^^^1^0.002^0.020^3^-0.003^0.012^~1, 2, 3~^~11/01/2016~ -~07954~^~853~^0.026^6^0.001^~1~^~A~^^^1^0.020^0.034^2^0.021^0.031^~2, 3~^~11/01/2016~ -~07954~^~856~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.003^3^0.002^0.003^~1, 2, 3~^~11/01/2016~ -~07954~^~858~^0.014^6^0.002^~1~^~A~^^^1^0.009^0.032^3^0.006^0.021^~2, 3~^~11/01/2016~ -~07955~^~312~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~315~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~404~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~405~^0.234^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~406~^4.600^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~410~^1.020^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~415~^0.431^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~501~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~502~^0.711^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~503~^0.777^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~504~^1.316^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~505~^1.472^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~506~^0.415^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~507~^0.204^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~508~^0.670^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~509~^0.575^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~510~^0.802^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~512~^0.468^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~513~^1.025^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~514~^1.572^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~515~^2.762^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~516~^0.935^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~517~^0.737^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~518~^0.729^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~521~^0.188^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~605~^0.350^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~606~^1.963^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~612~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~613~^1.304^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~614~^0.555^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~617~^2.375^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~618~^2.119^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~619~^0.143^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~07955~^~620~^0.108^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~625~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~626~^0.212^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~628~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07955~^~645~^2.624^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~646~^2.386^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~652~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~672~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07955~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07955~^~851~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~312~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~404~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~406~^3.600^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~410~^0.515^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~415~^0.313^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~501~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~502~^0.805^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~503~^0.864^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~504~^1.492^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~505~^1.607^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~506~^0.408^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~507~^0.208^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~508~^0.752^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~509~^0.579^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~510~^0.989^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~511~^1.209^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~512~^0.653^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~513~^1.257^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~514~^1.768^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~515~^2.986^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~516~^1.280^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~517~^0.921^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~518~^0.770^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~521~^0.283^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~605~^1.440^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~606~^10.905^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~613~^6.325^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~614~^3.260^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~617~^11.202^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~618~^0.568^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~07956~^~620~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~625~^0.255^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~628~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07956~^~645~^12.639^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~646~^0.663^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~07956~^~652~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~685~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07956~^~697~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07956~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~312~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~315~^0.239^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~404~^0.089^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~405~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~406~^2.730^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~410~^0.490^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~415~^0.124^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~501~^0.089^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~502~^0.475^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~503~^0.523^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~504~^0.912^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~505~^0.914^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~506~^0.226^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~507~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~508~^0.493^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~509~^0.371^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~510~^0.593^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~511~^0.804^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~512~^0.362^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~513~^0.718^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~514~^1.177^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~515~^1.942^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~516~^0.786^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~517~^0.613^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~518~^0.545^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~521~^0.182^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~605~^0.328^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~606~^9.881^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~612~^0.356^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~613~^6.364^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~614~^3.019^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~615~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~617~^12.005^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~618~^4.057^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~619~^0.201^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~07957~^~620~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~626~^0.836^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~628~^0.213^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07957~^~645~^13.054^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~646~^4.504^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~653~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~672~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07957~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07957~^~851~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~312~^0.145^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~315~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~404~^0.084^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~405~^0.255^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~406~^5.720^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~410~^1.080^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~415~^0.322^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~501~^0.185^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~502~^0.892^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~503~^0.993^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~504~^1.676^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~505~^1.884^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~506~^0.533^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~507~^0.230^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~508~^0.866^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~509~^0.744^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~510~^1.037^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~511~^1.444^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~512~^0.577^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~513~^1.346^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~514~^2.009^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~515~^3.558^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~516~^1.299^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~517~^0.992^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~518~^0.922^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~521~^0.226^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~605~^0.430^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~606~^2.266^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~612~^0.081^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~613~^1.491^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~614~^0.635^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~617~^2.697^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~618~^2.384^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~619~^0.173^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~07958~^~620~^0.131^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~625~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~626~^0.250^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~628~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07958~^~645~^2.990^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~646~^2.706^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~652~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~653~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~672~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~685~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07958~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07958~^~851~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07959~^~312~^0.064^3^0.013^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~315~^0.043^3^0.011^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~404~^0.074^3^0.017^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~405~^0.135^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~406~^3.463^3^0.319^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~410~^0.721^3^0.032^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~415~^0.227^3^0.042^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~605~^0.237^3^0.121^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~606~^6.997^3^0.443^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~609~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~610~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~611~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~612~^0.249^3^0.031^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~613~^4.742^3^0.209^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~614~^1.892^3^0.197^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~615~^0.027^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~617~^8.507^3^0.419^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~618~^3.112^3^0.263^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~620~^0.090^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~624~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~625~^0.036^3^0.001^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~626~^1.002^3^0.048^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~628~^0.152^3^0.022^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07959~^~645~^9.698^3^0.396^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~646~^3.475^3^0.289^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~652~^0.023^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~653~^0.071^3^0.010^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~672~^0.085^3^0.017^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~685~^0.021^3^0.011^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~689~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~697~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07959~^~851~^0.168^3^0.017^~1~^~A~^^^1^^^^^^^~03/01/2003~ -~07960~^~312~^0.039^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~315~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~404~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~405~^0.129^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~406~^3.680^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~410~^0.776^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~415~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~501~^0.081^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~502~^0.401^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~503~^0.465^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~504~^0.775^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~505~^0.824^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~506~^0.216^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~507~^0.108^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~508~^0.413^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~509~^0.323^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~510~^0.527^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~511~^0.672^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~512~^0.315^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~513~^0.657^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~514~^0.923^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~515~^1.548^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~516~^0.704^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~517~^0.505^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~518~^0.397^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~521~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~605~^0.283^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~606~^9.863^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~612~^0.321^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~613~^6.584^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~614~^2.829^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~615~^0.047^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~617~^11.825^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~618~^3.872^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~619~^0.238^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~07960~^~620~^0.107^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~626~^1.114^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~628~^0.233^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~07960~^~645~^13.172^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~646~^4.348^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~653~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~672~^0.131^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~685~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07960~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~07960~^~851~^0.205^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~07961~^~312~^0.020^11^0.001^~1~^~A~^^^1^0.019^0.028^7^0.017^0.022^~1, 2, 3~^~05/01/2013~ -~07961~^~315~^0.018^11^0.001^~1~^~A~^^^1^0.011^0.029^3^0.016^0.021^~1, 2, 3~^~05/01/2013~ -~07961~^~404~^0.048^6^0.001^~1~^~A~^^^1^0.040^0.060^2^0.042^0.054^~2, 3~^~05/01/2013~ -~07961~^~405~^0.071^6^0.000^~1~^~A~^^^1^0.060^0.080^^^^~2, 3~^~05/01/2013~ -~07961~^~406~^9.055^6^0.050^~1~^~A~^^^1^7.550^9.390^2^8.839^9.271^~2, 3~^~05/01/2013~ -~07961~^~410~^0.976^6^0.006^~1~^~A~^^^1^0.930^1.000^2^0.950^1.002^~2, 3~^~05/01/2013~ -~07961~^~415~^0.445^6^0.004^~1~^~A~^^^1^0.334^0.516^2^0.426^0.464^~2, 3~^~05/01/2013~ -~07961~^~501~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~502~^0.817^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~503~^0.825^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~504~^1.473^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~505~^1.630^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~506~^0.494^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~507~^0.202^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~508~^0.690^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~509~^0.650^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~510~^0.840^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~511~^1.206^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~512~^0.516^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~513~^1.035^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~514~^1.699^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~515~^2.831^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~516~^0.792^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~517~^0.697^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~518~^0.723^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~07961~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~606~^0.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~607~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^2^0.001^0.004^~1, 2, 3~^~05/01/2013~ -~07961~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~609~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.006^^^^~1, 2, 3~^~05/01/2013~ -~07961~^~610~^0.024^6^0.004^~1~^~A~^^^1^0.011^0.038^2^0.008^0.039^~2, 3~^~05/01/2012~ -~07961~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2013~ -~07961~^~612~^0.010^6^0.000^~1~^~A~^^^1^0.004^0.021^2^0.008^0.012^~2, 3~^~05/01/2013~ -~07961~^~613~^0.397^6^0.016^~1~^~A~^^^1^0.147^0.871^2^0.330^0.464^~2, 3~^~05/01/2013~ -~07961~^~614~^0.124^6^0.004^~1~^~A~^^^1^0.065^0.241^2^0.109^0.139^~2, 3~^~05/01/2013~ -~07961~^~615~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~05/01/2012~ -~07961~^~617~^0.628^6^0.028^~1~^~AS~^^^1^0.206^1.432^2^0.509^0.747^~2, 3~^~05/01/2013~ -~07961~^~618~^0.355^6^0.009^~1~^~AS~^^^1^0.144^0.850^2^0.317^0.393^~2, 3~^~05/01/2013~ -~07961~^~619~^0.016^6^0.000^~1~^~AS~^^^1^0.004^0.050^2^0.014^0.018^~2, 3~^~05/01/2013~ -~07961~^~620~^0.047^6^0.000^~1~^~A~^^^1^0.041^0.049^^^^~2, 3~^~05/01/2013~ -~07961~^~621~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2012~ -~07961~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~625~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.006^2^0.002^0.004^~1, 2, 3~^~05/01/2013~ -~07961~^~626~^0.088^6^0.004^~1~^~AS~^^^1^0.023^0.204^2^0.069^0.108^~2, 3~^~05/01/2013~ -~07961~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~628~^0.016^6^0.007^~1~^~A~^^^1^0.002^0.051^2^-0.015^0.048^~1, 2, 3~^~05/01/2012~ -~07961~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~07961~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^^^^~2, 3~^~05/01/2013~ -~07961~^~645~^0.740^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~646~^0.452^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~05/01/2013~ -~07961~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~05/01/2013~ -~07961~^~663~^0.006^6^0.000^~1~^~A~^^^1^0.003^0.014^^^^~2, 3~^~05/01/2013~ -~07961~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~665~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^2^0.000^0.002^~1, 2, 3~^~05/01/2013~ -~07961~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~05/01/2013~ -~07961~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^^^^~2, 3~^~05/01/2013~ -~07961~^~673~^0.088^6^0.004^~1~^~A~^^^1^0.023^0.203^2^0.069^0.107^~2, 3~^~05/01/2013~ -~07961~^~674~^0.622^6^0.028^~1~^~A~^^^1^0.203^1.420^2^0.503^0.741^~2, 3~^~05/01/2013~ -~07961~^~675~^0.354^6^0.009^~1~^~A~^^^1^0.144^0.846^2^0.317^0.391^~2, 3~^~05/01/2013~ -~07961~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~687~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.008^2^0.001^0.007^~2, 3~^~05/01/2013~ -~07961~^~689~^0.009^6^0.000^~1~^~AS~^^^1^0.007^0.012^2^0.008^0.009^~2, 3~^~05/01/2013~ -~07961~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~07961~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~851~^0.016^6^0.000^~1~^~A~^^^1^0.004^0.050^2^0.014^0.018^~2, 3~^~05/01/2013~ -~07961~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~07961~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.012^2^0.008^0.009^~2, 3~^~05/01/2013~ -~07961~^~858~^0.012^6^0.000^~1~^~A~^^^1^0.010^0.013^2^0.012^0.013^~2, 3~^~05/01/2012~ -~07962~^~312~^0.042^18^0.002^~1~^~A~^^^1^0.031^0.052^6^0.038^0.046^~2, 3~^~09/01/2015~ -~07962~^~315~^0.017^18^0.001^~1~^~A~^^^1^0.011^0.025^5^0.015^0.020^~1, 2, 3~^~03/01/2013~ -~07962~^~404~^0.047^9^0.004^~1~^~A~^^^1^0.034^0.063^2^0.031^0.062^~2, 3~^~03/01/2013~ -~07962~^~405~^0.145^9^0.003^~1~^~A~^^^1^0.120^0.160^4^0.137^0.154^~2, 3~^~03/01/2013~ -~07962~^~406~^2.813^9^0.054^~1~^~A~^^^1^2.490^3.320^3^2.641^2.986^~2, 3~^~09/01/2015~ -~07962~^~410~^0.554^6^0.016^~1~^~A~^^^1^0.430^0.720^2^0.490^0.617^~2, 3~^~09/01/2015~ -~07962~^~415~^0.063^9^0.004^~1~^~A~^^^1^0.050^0.080^3^0.050^0.077^~2, 3~^~03/01/2013~ -~07962~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~502~^0.350^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~503~^0.400^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~504~^0.736^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~505~^0.718^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~506~^0.235^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~507~^0.129^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~508~^0.359^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~509~^0.285^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~510~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~511~^0.631^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~512~^0.281^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~513~^0.612^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~514~^0.861^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~515~^1.427^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~516~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~517~^0.692^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~518~^0.405^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07962~^~521~^0.228^2^^~1~^~A~^^^1^0.200^0.260^^^^^~09/01/2015~ -~07962~^~605~^0.210^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~606~^7.583^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~609~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~03/01/2013~ -~07962~^~610~^0.020^9^0.000^~1~^~A~^^^1^0.019^0.026^3^0.020^0.021^~2, 3~^~03/01/2013~ -~07962~^~611~^0.023^9^0.001^~1~^~A~^^^1^0.016^0.046^4^0.021^0.025^~2, 3~^~09/01/2015~ -~07962~^~612~^0.262^9^0.014^~1~^~A~^^^1^0.196^0.401^2^0.205^0.318^~2, 3~^~09/01/2015~ -~07962~^~613~^5.062^9^0.053^~1~^~A~^^^1^4.705^5.886^4^4.917^5.207^~2, 3~^~09/01/2015~ -~07962~^~614~^2.069^9^0.050^~1~^~A~^^^1^1.776^2.774^2^1.867^2.270^~2, 3~^~09/01/2015~ -~07962~^~615~^0.033^9^0.002^~1~^~A~^^^1^0.027^0.044^2^0.026^0.040^~2, 3~^~03/01/2013~ -~07962~^~617~^8.924^9^0.075^~1~^~AS~^^^1^8.401^10.671^5^8.735^9.112^~2, 3~^~09/01/2015~ -~07962~^~618~^4.820^9^0.197^~1~^~AS~^^^1^4.033^5.980^2^4.041^5.600^~2, 3~^~09/01/2015~ -~07962~^~619~^0.245^9^0.004^~1~^~AS~^^^1^0.217^0.313^2^0.229^0.261^~2, 3~^~09/01/2015~ -~07962~^~620~^0.108^9^0.004^~1~^~A~^^^1^0.093^0.122^2^0.092^0.124^~2, 3~^~03/01/2013~ -~07962~^~621~^0.007^9^0.000^~1~^~A~^^^1^0.005^0.009^3^0.006^0.009^~2, 3~^~03/01/2013~ -~07962~^~624~^0.011^9^0.001^~1~^~A~^^^1^0.008^0.017^4^0.009^0.013^~2, 3~^~03/01/2013~ -~07962~^~625~^0.033^9^0.005^~1~^~A~^^^1^0.022^0.048^2^0.013^0.052^~2, 3~^~09/01/2015~ -~07962~^~626~^0.738^9^0.030^~1~^~AS~^^^1^0.596^0.892^2^0.624^0.852^~2, 3~^~09/01/2015~ -~07962~^~627~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.001^0.005^~1, 2, 3~^~03/01/2013~ -~07962~^~628~^0.169^9^0.001^~1~^~A~^^^1^0.163^0.197^4^0.166^0.173^~2, 3~^~03/01/2013~ -~07962~^~629~^0.004^9^0.001^~1~^~A~^^^1^0.003^0.006^2^0.002^0.007^~2, 3~^~03/01/2013~ -~07962~^~630~^0.010^9^0.005^~1~^~AS~^^^1^0.003^0.030^2^-0.013^0.033^~2, 3~^~03/01/2013~ -~07962~^~631~^0.016^9^0.000^~1~^~A~^^^1^0.014^0.019^3^0.015^0.016^~2, 3~^~03/01/2013~ -~07962~^~645~^9.929^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~646~^5.386^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~652~^0.025^9^0.003^~1~^~A~^^^1^0.015^0.042^2^0.013^0.036^~2, 3~^~09/01/2015~ -~07962~^~653~^0.074^9^0.005^~1~^~A~^^^1^0.050^0.128^2^0.054^0.094^~2, 3~^~09/01/2015~ -~07962~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~03/01/2013~ -~07962~^~662~^0.012^9^0.001^~1~^~A~^^^1^0.008^0.024^2^0.007^0.017^~2, 3~^~03/01/2013~ -~07962~^~663~^0.156^9^0.023^~1~^~A~^^^1^0.078^0.408^3^0.078^0.233^~2, 3~^~09/01/2015~ -~07962~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~03/01/2013~ -~07962~^~665~^0.041^9^0.004^~1~^~A~^^^1^0.025^0.061^2^0.026^0.056^~2, 3~^~03/01/2013~ -~07962~^~670~^0.038^9^0.002^~1~^~A~^^^1^0.027^0.060^2^0.029^0.046^~2, 3~^~09/01/2015~ -~07962~^~671~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~07962~^~672~^0.104^9^0.006^~1~^~A~^^^1^0.081^0.140^2^0.078^0.129^~2, 3~^~09/01/2015~ -~07962~^~673~^0.726^9^0.030^~1~^~A~^^^1^0.575^0.883^2^0.611^0.840^~2, 3~^~09/01/2015~ -~07962~^~674~^8.768^9^0.084^~1~^~A~^^^1^8.210^10.263^4^8.531^9.005^~2, 3~^~09/01/2015~ -~07962~^~675~^4.742^9^0.200^~1~^~A~^^^1^3.950^5.872^2^3.950^5.533^~2, 3~^~09/01/2015~ -~07962~^~676~^0.009^9^0.006^~1~^~A~^^^1^0.003^0.030^2^-0.015^0.033^~2, 3~^~03/01/2013~ -~07962~^~685~^0.007^9^0.001^~1~^~A~^^^1^0.005^0.012^3^0.005^0.009^~2, 3~^~03/01/2013~ -~07962~^~687~^0.055^9^0.004^~1~^~A~^^^1^0.038^0.094^2^0.039^0.070^~2, 3~^~03/01/2013~ -~07962~^~689~^0.046^9^0.002^~1~^~AS~^^^1^0.039^0.054^2^0.037^0.055^~2, 3~^~03/01/2013~ -~07962~^~693~^0.168^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~07962~^~695~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07962~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07962~^~851~^0.237^9^0.004^~1~^~A~^^^1^0.209^0.301^2^0.220^0.254^~2, 3~^~09/01/2015~ -~07962~^~852~^0.014^9^0.001^~1~^~A~^^^1^0.009^0.020^2^0.012^0.017^~2, 3~^~03/01/2013~ -~07962~^~853~^0.031^9^0.002^~1~^~A~^^^1^0.027^0.038^2^0.025^0.038^~2, 3~^~03/01/2013~ -~07962~^~856~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~07962~^~858~^0.031^9^0.001^~1~^~A~^^^1^0.028^0.037^3^0.028^0.035^~2, 3~^~03/01/2013~ -~07963~^~312~^0.040^18^0.001^~1~^~A~^^^1^0.031^0.063^10^0.038^0.043^~2, 3~^~03/01/2013~ -~07963~^~315~^0.020^18^0.001^~1~^~A~^^^1^0.016^0.027^6^0.017^0.023^~2, 3~^~03/01/2013~ -~07963~^~404~^0.044^9^0.003^~1~^~A~^^^1^0.032^0.061^2^0.030^0.059^~2, 3~^~03/01/2013~ -~07963~^~405~^0.145^9^0.008^~1~^~A~^^^1^0.110^0.190^2^0.115^0.174^~2, 3~^~03/01/2013~ -~07963~^~406~^2.672^9^0.046^~1~^~A~^^^1^2.440^3.170^4^2.539^2.805^~2, 3~^~03/01/2013~ -~07963~^~410~^0.551^6^0.014^~1~^~A~^^^1^0.480^0.730^2^0.464^0.639^~2, 3~^~04/01/2013~ -~07963~^~415~^0.067^9^0.003^~1~^~A~^^^1^0.050^0.080^5^0.060^0.074^~2, 3~^~03/01/2013~ -~07963~^~501~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~502~^0.370^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~503~^0.423^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~504~^0.779^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~505~^0.759^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~506~^0.248^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~507~^0.136^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~508~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~509~^0.301^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~510~^0.481^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~511~^0.667^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~512~^0.297^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~513~^0.648^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~514~^0.911^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~515~^1.509^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~516~^0.693^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~517~^0.731^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~518~^0.428^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~521~^0.241^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07963~^~605~^0.237^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~606~^8.216^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~609~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.003^4^0.002^0.003^~1, 2, 3~^~03/01/2013~ -~07963~^~610~^0.019^9^0.001^~1~^~A~^^^1^0.014^0.024^2^0.014^0.024^~2, 3~^~03/01/2013~ -~07963~^~611~^0.026^9^0.001^~1~^~A~^^^1^0.016^0.052^3^0.022^0.030^~2, 3~^~03/01/2013~ -~07963~^~612~^0.282^9^0.017^~1~^~A~^^^1^0.203^0.403^2^0.209^0.355^~2, 3~^~03/01/2013~ -~07963~^~613~^5.500^9^0.127^~1~^~A~^^^1^5.099^6.055^3^5.061^5.940^~2, 3~^~03/01/2013~ -~07963~^~614~^2.232^9^0.087^~1~^~A~^^^1^1.833^2.904^2^1.874^2.591^~2, 3~^~03/01/2013~ -~07963~^~615~^0.035^9^0.001^~1~^~A~^^^1^0.030^0.047^2^0.029^0.041^~2, 3~^~03/01/2013~ -~07963~^~617~^9.662^9^0.183^~1~^~AS~^^^1^8.946^10.953^3^9.060^10.264^~2, 3~^~03/01/2013~ -~07963~^~618~^5.113^9^0.119^~1~^~AS~^^^1^4.625^5.854^2^4.639^5.587^~2, 3~^~03/01/2013~ -~07963~^~619~^0.262^9^0.008^~1~^~AS~^^^1^0.219^0.327^2^0.232^0.292^~2, 3~^~03/01/2013~ -~07963~^~620~^0.114^9^0.002^~1~^~A~^^^1^0.103^0.125^2^0.105^0.122^~2, 3~^~03/01/2013~ -~07963~^~621~^0.007^9^0.000^~1~^~A~^^^1^0.006^0.008^4^0.007^0.008^~2, 3~^~03/01/2013~ -~07963~^~624~^0.012^9^0.000^~1~^~A~^^^1^0.007^0.016^5^0.011^0.013^~2, 3~^~03/01/2013~ -~07963~^~625~^0.035^9^0.005^~1~^~A~^^^1^0.021^0.048^2^0.015^0.055^~2, 3~^~03/01/2013~ -~07963~^~626~^0.812^9^0.013^~1~^~AS~^^^1^0.624^1.005^4^0.778^0.846^~2, 3~^~03/01/2013~ -~07963~^~627~^0.003^9^0.000^~1~^~A~^^^1^0.000^0.005^2^0.001^0.005^~1, 2, 3~^~03/01/2013~ -~07963~^~628~^0.182^9^0.002^~1~^~A~^^^1^0.174^0.195^2^0.173^0.191^~2, 3~^~03/01/2013~ -~07963~^~629~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.005^2^0.003^0.005^~2, 3~^~03/01/2013~ -~07963~^~630~^0.010^9^0.005^~1~^~AS~^^^1^0.003^0.030^2^-0.013^0.033^~2, 3~^~03/01/2013~ -~07963~^~631~^0.017^9^0.000^~1~^~A~^^^1^0.014^0.021^4^0.016^0.018^~2, 3~^~03/01/2013~ -~07963~^~645~^10.759^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~646~^5.713^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~652~^0.026^9^0.002^~1~^~A~^^^1^0.016^0.040^2^0.016^0.036^~2, 3~^~03/01/2013~ -~07963~^~653~^0.079^9^0.006^~1~^~A~^^^1^0.051^0.131^2^0.054^0.104^~2, 3~^~03/01/2013~ -~07963~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.003^~1, 2, 3~^~03/01/2013~ -~07963~^~662~^0.014^9^0.002^~1~^~A~^^^1^0.007^0.026^2^0.006^0.022^~2, 3~^~03/01/2013~ -~07963~^~663~^0.176^9^0.027^~1~^~A~^^^1^0.080^0.405^2^0.072^0.280^~2, 3~^~03/01/2013~ -~07963~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~03/01/2013~ -~07963~^~665~^0.046^9^0.002^~1~^~A~^^^1^0.035^0.066^2^0.036^0.055^~2, 3~^~03/01/2013~ -~07963~^~670~^0.042^9^0.004^~1~^~A~^^^1^0.026^0.064^2^0.027^0.057^~2, 3~^~03/01/2013~ -~07963~^~671~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~07963~^~672~^0.109^9^0.003^~1~^~A~^^^1^0.086^0.146^3^0.099^0.119^~2, 3~^~03/01/2013~ -~07963~^~673~^0.798^9^0.014^~1~^~A~^^^1^0.602^0.995^4^0.760^0.835^~2, 3~^~03/01/2013~ -~07963~^~674~^9.486^9^0.179^~1~^~A~^^^1^8.866^10.548^3^8.891^10.080^~2, 3~^~03/01/2013~ -~07963~^~675~^5.025^9^0.119^~1~^~A~^^^1^4.531^5.737^2^4.551^5.498^~2, 3~^~03/01/2013~ -~07963~^~676~^0.010^9^0.005^~1~^~A~^^^1^0.003^0.030^2^-0.013^0.033^~2, 3~^~03/01/2013~ -~07963~^~685~^0.008^9^0.001^~1~^~A~^^^1^0.005^0.014^4^0.006^0.010^~2, 3~^~03/01/2013~ -~07963~^~687~^0.058^9^0.004^~1~^~A~^^^1^0.037^0.096^2^0.039^0.076^~2, 3~^~03/01/2013~ -~07963~^~689~^0.049^9^0.001^~1~^~AS~^^^1^0.044^0.054^2^0.044^0.054^~2, 3~^~03/01/2013~ -~07963~^~693~^0.191^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07963~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07963~^~851~^0.254^9^0.007^~1~^~A~^^^1^0.214^0.313^2^0.226^0.281^~2, 3~^~03/01/2013~ -~07963~^~852~^0.016^9^0.000^~1~^~A~^^^1^0.011^0.021^5^0.015^0.016^~2, 3~^~03/01/2013~ -~07963~^~853~^0.033^9^0.001^~1~^~A~^^^1^0.028^0.039^2^0.028^0.039^~2, 3~^~03/01/2013~ -~07963~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2013~ -~07963~^~858~^0.033^9^0.001^~1~^~A~^^^1^0.031^0.035^3^0.030^0.035^~2, 3~^~03/01/2013~ -~07964~^~312~^0.043^18^0.001^~1~^~A~^^^1^0.033^0.058^6^0.039^0.046^~2, 3~^~03/01/2013~ -~07964~^~315~^0.020^18^0.001^~1~^~A~^^^1^0.016^0.025^6^0.018^0.022^~2, 3~^~03/01/2013~ -~07964~^~404~^0.049^9^0.004^~1~^~A~^^^1^0.035^0.066^2^0.031^0.066^~2, 3~^~03/01/2013~ -~07964~^~405~^0.154^9^0.005^~1~^~A~^^^1^0.130^0.180^2^0.132^0.176^~2, 3~^~03/01/2013~ -~07964~^~406~^3.058^9^0.051^~1~^~A~^^^1^2.790^3.550^3^2.886^3.230^~2, 3~^~03/01/2013~ -~07964~^~410~^0.581^6^0.014^~1~^~A~^^^1^0.490^0.750^2^0.501^0.662^~2, 3~^~03/01/2013~ -~07964~^~415~^0.057^9^0.002^~1~^~A~^^^1^0.050^0.070^4^0.050^0.064^~2, 3~^~03/01/2013~ -~07964~^~501~^0.116^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~502~^0.383^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~503~^0.438^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~504~^0.806^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~505~^0.786^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~506~^0.257^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~507~^0.141^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~508~^0.393^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~509~^0.312^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~510~^0.498^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~511~^0.691^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~512~^0.307^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~513~^0.671^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~514~^0.943^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~515~^1.563^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~516~^0.718^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~517~^0.757^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~518~^0.444^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~07964~^~521~^0.249^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~07964~^~605~^0.237^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~606~^8.218^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~609~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.005^3^0.000^0.005^~1, 2, 3~^~03/01/2013~ -~07964~^~610~^0.021^9^0.000^~1~^~A~^^^1^0.018^0.025^3^0.019^0.022^~2, 3~^~03/01/2013~ -~07964~^~611~^0.027^9^0.001^~1~^~A~^^^1^0.017^0.054^4^0.023^0.030^~2, 3~^~03/01/2013~ -~07964~^~612~^0.284^9^0.016^~1~^~A~^^^1^0.211^0.423^2^0.216^0.352^~2, 3~^~03/01/2013~ -~07964~^~613~^5.491^9^0.050^~1~^~A~^^^1^5.135^6.335^6^5.366^5.617^~2, 3~^~03/01/2013~ -~07964~^~614~^2.235^9^0.077^~1~^~A~^^^1^1.869^2.983^2^1.914^2.556^~2, 3~^~03/01/2013~ -~07964~^~615~^0.037^9^0.001^~1~^~A~^^^1^0.032^0.049^3^0.034^0.040^~2, 3~^~03/01/2013~ -~07964~^~617~^9.643^9^0.090^~1~^~AS~^^^1^8.993^11.560^6^9.421^9.866^~2, 3~^~03/01/2013~ -~07964~^~618~^5.266^9^0.197^~1~^~AS~^^^1^4.542^6.050^2^4.458^6.075^~2, 3~^~03/01/2013~ -~07964~^~619~^0.264^9^0.005^~1~^~AS~^^^1^0.225^0.328^2^0.242^0.287^~2, 3~^~03/01/2013~ -~07964~^~620~^0.120^9^0.004^~1~^~A~^^^1^0.110^0.129^2^0.104^0.135^~2, 3~^~03/01/2013~ -~07964~^~621~^0.008^9^0.000^~1~^~A~^^^1^0.005^0.011^3^0.007^0.009^~2, 3~^~03/01/2013~ -~07964~^~624~^0.012^9^0.001^~1~^~A~^^^1^0.008^0.017^4^0.010^0.014^~2, 3~^~03/01/2013~ -~07964~^~625~^0.034^9^0.004^~1~^~A~^^^1^0.023^0.048^2^0.016^0.051^~2, 3~^~03/01/2013~ -~07964~^~626~^0.794^9^0.040^~1~^~AS~^^^1^0.644^1.016^2^0.643^0.946^~2, 3~^~03/01/2013~ -~07964~^~627~^0.003^9^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.004^~1, 2, 3~^~03/01/2013~ -~07964~^~628~^0.181^9^0.001^~1~^~A~^^^1^0.174^0.208^5^0.178^0.185^~2, 3~^~03/01/2013~ -~07964~^~629~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.008^4^0.003^0.005^~2, 3~^~03/01/2013~ -~07964~^~630~^0.010^9^0.006^~1~^~AS~^^^1^0.003^0.032^2^-0.014^0.035^~2, 3~^~03/01/2013~ -~07964~^~631~^0.017^9^0.000^~1~^~A~^^^1^0.016^0.020^2^0.016^0.018^~2, 3~^~03/01/2013~ -~07964~^~645~^10.723^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~646~^5.882^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~652~^0.027^9^0.002^~1~^~A~^^^1^0.017^0.044^2^0.018^0.035^~2, 3~^~03/01/2013~ -~07964~^~653~^0.080^9^0.006^~1~^~A~^^^1^0.053^0.138^2^0.056^0.104^~2, 3~^~03/01/2013~ -~07964~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.005^3^0.001^0.004^~1, 2, 3~^~03/01/2013~ -~07964~^~662~^0.013^9^0.001^~1~^~A~^^^1^0.007^0.024^2^0.007^0.019^~2, 3~^~03/01/2013~ -~07964~^~663~^0.174^9^0.023^~1~^~A~^^^1^0.085^0.461^3^0.094^0.254^~2, 3~^~03/01/2013~ -~07964~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~665~^0.049^9^0.003^~1~^~A~^^^1^0.037^0.069^3^0.037^0.060^~2, 3~^~03/01/2013~ -~07964~^~670~^0.043^9^0.003^~1~^~A~^^^1^0.030^0.064^2^0.030^0.055^~2, 3~^~03/01/2013~ -~07964~^~671~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.004^~1, 2, 3~^~03/01/2013~ -~07964~^~672~^0.113^9^0.003^~1~^~A~^^^1^0.092^0.147^3^0.100^0.125^~2, 3~^~03/01/2013~ -~07964~^~673~^0.781^9^0.040^~1~^~A~^^^1^0.621^1.004^2^0.627^0.936^~2, 3~^~03/01/2013~ -~07964~^~674~^9.469^9^0.075^~1~^~A~^^^1^8.878^11.099^6^9.285^9.653^~2, 3~^~03/01/2013~ -~07964~^~675~^5.175^9^0.199^~1~^~A~^^^1^4.442^5.933^2^4.357^5.993^~2, 3~^~03/01/2013~ -~07964~^~676~^0.010^9^0.006^~1~^~A~^^^1^0.003^0.032^2^-0.014^0.035^~2, 3~^~03/01/2013~ -~07964~^~685~^0.008^9^0.001^~1~^~A~^^^1^0.005^0.012^3^0.006^0.010^~2, 3~^~03/01/2013~ -~07964~^~687~^0.059^9^0.004^~1~^~A~^^^1^0.040^0.099^2^0.041^0.078^~2, 3~^~03/01/2013~ -~07964~^~689~^0.050^9^0.002^~1~^~AS~^^^1^0.045^0.059^2^0.040^0.060^~2, 3~^~03/01/2013~ -~07964~^~693~^0.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~07964~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~07964~^~851~^0.255^9^0.005^~1~^~A~^^^1^0.218^0.317^2^0.234^0.277^~2, 3~^~03/01/2013~ -~07964~^~852~^0.015^9^0.000^~1~^~A~^^^1^0.011^0.020^5^0.015^0.016^~2, 3~^~03/01/2013~ -~07964~^~853~^0.034^9^0.002^~1~^~A~^^^1^0.029^0.044^2^0.024^0.045^~2, 3~^~03/01/2013~ -~07964~^~856~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~07964~^~858~^0.035^9^0.000^~1~^~A~^^^1^0.033^0.039^3^0.033^0.036^~2, 3~^~03/01/2013~ -~07965~^~312~^0.088^4^0.011^~1~^~A~^^^1^0.076^0.120^3^0.054^0.122^~2, 3~^~04/01/2013~ -~07965~^~315~^0.042^4^0.008^~1~^~A~^^^1^0.029^0.066^3^0.016^0.068^~2, 3~^~04/01/2013~ -~07965~^~404~^0.310^4^0.017^~1~^~A~^^^1^0.270^0.350^3^0.256^0.363^~2, 3~^~04/01/2013~ -~07965~^~405~^0.170^4^0.004^~1~^~A~^^^1^0.160^0.180^3^0.157^0.183^~2, 3~^~04/01/2013~ -~07965~^~406~^6.187^4^0.110^~1~^~A~^^^1^5.950^6.440^3^5.838^6.537^~2, 3~^~04/01/2013~ -~07965~^~410~^0.830^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~415~^0.270^4^0.011^~1~^~A~^^^1^0.240^0.290^3^0.236^0.304^~2, 3~^~04/01/2013~ -~07965~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~502~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~503~^0.652^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~504~^1.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~505~^1.172^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~506~^0.396^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~507~^0.217^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~508~^0.602^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~509~^0.487^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~510~^0.758^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~511~^1.055^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~512~^0.503^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~513~^1.024^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~514~^1.455^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~515~^2.508^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~516~^1.108^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~517~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~518~^0.701^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07965~^~521~^0.333^0^^~1~^~A~^~07970~^^^^^^^^^~04/01/2013~ -~07965~^~605~^0.064^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~606~^4.368^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~610~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.014^3^0.013^0.014^~2, 3~^~04/01/2013~ -~07965~^~611~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.013^~2, 3~^~04/01/2013~ -~07965~^~612~^0.155^4^0.005^~1~^~A~^^^1^0.139^0.162^3^0.138^0.172^~2, 3~^~04/01/2013~ -~07965~^~613~^2.752^4^0.100^~1~^~A~^^^1^2.457^2.876^3^2.435^3.069^~2, 3~^~04/01/2013~ -~07965~^~614~^1.352^4^0.050^~1~^~A~^^^1^1.205^1.431^3^1.193^1.512^~2, 3~^~04/01/2013~ -~07965~^~615~^0.032^4^0.002^~1~^~A~^^^1^0.029^0.037^3^0.027^0.038^~2, 3~^~04/01/2013~ -~07965~^~617~^5.413^4^0.233^~1~^~AS~^^^1^4.724^5.716^3^4.673^6.154^~2, 3~^~04/01/2013~ -~07965~^~618~^2.617^4^0.096^~1~^~AS~^^^1^2.420^2.837^3^2.311^2.923^~2, 3~^~04/01/2013~ -~07965~^~619~^0.083^4^0.004^~1~^~AS~^^^1^0.072^0.092^3^0.070^0.097^~2, 3~^~04/01/2013~ -~07965~^~620~^0.087^4^0.004^~1~^~A~^^^1^0.079^0.097^3^0.073^0.101^~2, 3~^~04/01/2013~ -~07965~^~621~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~07965~^~624~^0.005^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~04/01/2013~ -~07965~^~625~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~07965~^~626~^0.268^4^0.013^~1~^~AS~^^^1^0.233^0.293^3^0.228^0.308^~2, 3~^~04/01/2013~ -~07965~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07965~^~628~^0.171^4^0.008^~1~^~A~^^^1^0.156^0.192^3^0.147^0.196^~2, 3~^~04/01/2013~ -~07965~^~629~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~07965~^~630~^0.004^4^0.000^~1~^~AS~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2013~ -~07965~^~631~^0.015^4^0.001^~1~^~A~^^^1^0.012^0.019^3^0.011^0.020^~2, 3~^~04/01/2013~ -~07965~^~645~^5.890^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~646~^3.025^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~652~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.011^3^0.006^0.011^~2, 3~^~04/01/2013~ -~07965~^~653~^0.037^4^0.002^~1~^~A~^^^1^0.032^0.041^3^0.031^0.043^~2, 3~^~04/01/2013~ -~07965~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~07965~^~662~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2013~ -~07965~^~663~^0.046^4^0.004^~1~^~A~^^^1^0.036^0.052^3^0.035^0.057^~2, 3~^~04/01/2013~ -~07965~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~665~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.012^0.014^~2, 3~^~04/01/2013~ -~07965~^~670~^0.018^4^0.001^~1~^~A~^^^1^0.015^0.021^3^0.013^0.022^~2, 3~^~04/01/2013~ -~07965~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~672~^0.143^4^0.006^~1~^~A~^^^1^0.133^0.160^3^0.123^0.163^~2, 3~^~04/01/2013~ -~07965~^~673~^0.263^4^0.013^~1~^~A~^^^1^0.229^0.289^3^0.223^0.303^~2, 3~^~04/01/2013~ -~07965~^~674~^5.367^4^0.229^~1~^~A~^^^1^4.688^5.667^3^4.638^6.096^~2, 3~^~04/01/2013~ -~07965~^~675~^2.586^4^0.096^~1~^~A~^^^1^2.393^2.805^3^2.282^2.891^~2, 3~^~04/01/2013~ -~07965~^~676~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2013~ -~07965~^~685~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.007^3^0.001^0.007^~2, 3~^~04/01/2013~ -~07965~^~687~^0.031^4^0.001^~1~^~A~^^^1^0.027^0.034^3^0.026^0.036^~2, 3~^~04/01/2013~ -~07965~^~689~^0.041^4^0.002^~1~^~AS~^^^1^0.035^0.046^3^0.033^0.048^~2, 3~^~04/01/2013~ -~07965~^~693~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07965~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07965~^~851~^0.078^4^0.005^~1~^~A~^^^1^0.065^0.086^3^0.064^0.093^~2, 3~^~04/01/2013~ -~07965~^~852~^0.016^4^0.001^~1~^~A~^^^1^0.013^0.020^3^0.011^0.021^~2, 3~^~04/01/2013~ -~07965~^~853~^0.025^4^0.001^~1~^~A~^^^1^0.022^0.026^3^0.022^0.028^~2, 3~^~04/01/2013~ -~07965~^~856~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~07965~^~858~^0.033^4^0.001^~1~^~A~^^^1^0.030^0.035^3^0.029^0.037^~2, 3~^~04/01/2013~ -~07966~^~312~^0.088^4^0.007^~1~^~A~^^^1^0.073^0.106^3^0.066^0.109^~2, 3~^~04/01/2013~ -~07966~^~315~^0.052^4^0.012^~1~^~A~^^^1^0.039^0.088^3^0.015^0.090^~2, 3~^~04/01/2013~ -~07966~^~404~^0.377^4^0.032^~1~^~A~^^^1^0.300^0.440^3^0.275^0.480^~2, 3~^~04/01/2013~ -~07966~^~405~^0.210^4^0.004^~1~^~A~^^^1^0.200^0.220^3^0.197^0.223^~2, 3~^~04/01/2013~ -~07966~^~406~^7.737^4^0.158^~1~^~A~^^^1^7.500^8.200^3^7.235^8.240^~2, 3~^~04/01/2013~ -~07966~^~410~^0.960^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~415~^0.282^4^0.025^~1~^~A~^^^1^0.240^0.350^3^0.203^0.362^~2, 3~^~04/01/2013~ -~07966~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~502~^0.694^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~503~^0.833^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~504~^1.537^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~505~^1.399^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~506~^0.481^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~507~^0.267^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~508~^0.748^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~509~^0.588^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~510~^0.989^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~511~^1.301^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~512~^0.605^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~513~^1.296^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~514~^1.778^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~515~^3.187^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~516~^1.428^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~517~^1.407^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~518~^0.865^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07966~^~521~^0.483^0^^~1~^~A~^~07969~^^^^^^^^^~04/01/2013~ -~07966~^~605~^0.091^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~606~^6.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~609~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~07966~^~610~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.017^3^0.014^0.017^~2, 3~^~04/01/2013~ -~07966~^~611~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.012^0.017^~2, 3~^~04/01/2013~ -~07966~^~612~^0.213^4^0.008^~1~^~A~^^^1^0.194^0.234^3^0.187^0.240^~2, 3~^~04/01/2013~ -~07966~^~613~^3.794^4^0.138^~1~^~A~^^^1^3.487^4.148^3^3.356^4.232^~2, 3~^~04/01/2013~ -~07966~^~614~^1.873^4^0.086^~1~^~A~^^^1^1.687^2.099^3^1.600^2.146^~2, 3~^~04/01/2013~ -~07966~^~615~^0.047^4^0.004^~1~^~A~^^^1^0.038^0.056^3^0.035^0.059^~2, 3~^~04/01/2013~ -~07966~^~617~^7.363^4^0.249^~1~^~AS~^^^1^6.848^8.044^3^6.570^8.156^~2, 3~^~04/01/2013~ -~07966~^~618~^3.628^4^0.122^~1~^~AS~^^^1^3.386^3.929^3^3.239^4.018^~2, 3~^~04/01/2013~ -~07966~^~619~^0.112^4^0.005^~1~^~AS~^^^1^0.101^0.124^3^0.097^0.127^~2, 3~^~04/01/2013~ -~07966~^~620~^0.122^4^0.004^~1~^~A~^^^1^0.117^0.132^3^0.111^0.133^~2, 3~^~04/01/2013~ -~07966~^~621~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~04/01/2013~ -~07966~^~624~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~04/01/2013~ -~07966~^~625~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~04/01/2013~ -~07966~^~626~^0.370^4^0.008^~1~^~AS~^^^1^0.358^0.393^3^0.346^0.395^~2, 3~^~04/01/2013~ -~07966~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07966~^~628~^0.236^4^0.011^~1~^~A~^^^1^0.207^0.263^3^0.199^0.272^~2, 3~^~04/01/2013~ -~07966~^~629~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~07966~^~630~^0.005^4^0.000^~1~^~AS~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2013~ -~07966~^~631~^0.022^4^0.001^~1~^~A~^^^1^0.021^0.024^3^0.020^0.024^~2, 3~^~04/01/2013~ -~07966~^~645~^8.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~646~^4.192^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~652~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.014^~2, 3~^~04/01/2013~ -~07966~^~653~^0.053^4^0.003^~1~^~A~^^^1^0.048^0.061^3^0.044^0.062^~2, 3~^~04/01/2013~ -~07966~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~07966~^~662~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.008^3^0.005^0.008^~2, 3~^~04/01/2013~ -~07966~^~663~^0.061^4^0.005^~1~^~A~^^^1^0.053^0.075^3^0.045^0.077^~2, 3~^~04/01/2013~ -~07966~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~665~^0.022^4^0.003^~1~^~A~^^^1^0.019^0.030^3^0.014^0.030^~2, 3~^~04/01/2013~ -~07966~^~670~^0.024^4^0.001^~1~^~A~^^^1^0.020^0.027^3^0.019^0.029^~2, 3~^~04/01/2013~ -~07966~^~671~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07966~^~672~^0.198^4^0.007^~1~^~A~^^^1^0.181^0.210^3^0.176^0.219^~2, 3~^~04/01/2013~ -~07966~^~673~^0.364^4^0.007^~1~^~A~^^^1^0.352^0.385^3^0.341^0.387^~2, 3~^~04/01/2013~ -~07966~^~674~^7.302^4^0.245^~1~^~A~^^^1^6.795^7.969^3^6.524^8.080^~2, 3~^~04/01/2013~ -~07966~^~675~^3.582^4^0.125^~1~^~A~^^^1^3.340^3.886^3^3.185^3.978^~2, 3~^~04/01/2013~ -~07966~^~676~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2013~ -~07966~^~685~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2013~ -~07966~^~687~^0.041^4^0.001^~1~^~A~^^^1^0.038^0.045^3^0.037^0.046^~2, 3~^~04/01/2013~ -~07966~^~689~^0.057^4^0.002^~1~^~AS~^^^1^0.054^0.061^3^0.052^0.062^~2, 3~^~04/01/2013~ -~07966~^~693~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07966~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07966~^~851~^0.107^4^0.004^~1~^~A~^^^1^0.097^0.118^3^0.094^0.121^~2, 3~^~04/01/2013~ -~07966~^~852~^0.022^4^0.001^~1~^~A~^^^1^0.021^0.024^3^0.020^0.025^~2, 3~^~04/01/2013~ -~07966~^~853~^0.034^4^0.001^~1~^~A~^^^1^0.032^0.037^3^0.031^0.038^~2, 3~^~04/01/2013~ -~07966~^~856~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~07966~^~858~^0.046^4^0.003^~1~^~A~^^^1^0.040^0.052^3^0.038^0.054^~2, 3~^~04/01/2013~ -~07967~^~312~^0.069^14^0.003^~1~^~A~^^^1^0.048^0.090^10^0.061^0.076^~2, 3~^~04/01/2013~ -~07967~^~315~^0.053^14^0.002^~1~^~A~^^^1^0.040^0.070^7^0.048^0.058^~2, 3~^~04/01/2013~ -~07967~^~404~^0.241^9^0.007^~1~^~A~^^^1^0.190^0.310^6^0.223^0.260^~2, 3~^~04/01/2013~ -~07967~^~405~^0.178^9^0.009^~1~^~A~^^^1^0.130^0.240^4^0.153^0.203^~2, 3~^~04/01/2013~ -~07967~^~406~^3.984^9^0.113^~1~^~A~^^^1^3.390^4.620^4^3.670^4.298^~2, 3~^~04/01/2013~ -~07967~^~410~^0.570^5^0.008^~1~^~A~^^^1^0.500^0.740^2^0.527^0.614^~2, 3~^~04/01/2013~ -~07967~^~415~^0.143^9^0.007^~1~^~A~^^^1^0.110^0.180^4^0.123^0.163^~2, 3~^~04/01/2013~ -~07967~^~501~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~502~^0.483^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~503~^0.524^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~504~^1.005^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~505~^0.942^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~506~^0.319^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~507~^0.175^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~508~^0.484^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~509~^0.391^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~510~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~511~^0.848^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~512~^0.405^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~513~^0.824^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~514~^1.170^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~515~^2.016^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~516~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~517~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~518~^0.563^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07967~^~521~^0.276^0^^~4~^~BFPN~^~07968~^^^^^^^^^~08/01/2015~ -~07967~^~605~^0.184^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~606~^12.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~609~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.006^3^0.003^0.005^~2, 3~^~04/01/2013~ -~07967~^~610~^0.035^9^0.001^~1~^~A~^^^1^0.029^0.039^4^0.032^0.038^~2, 3~^~04/01/2013~ -~07967~^~611~^0.030^9^0.001^~1~^~A~^^^1^0.025^0.033^5^0.028^0.032^~2, 3~^~04/01/2013~ -~07967~^~612~^0.451^9^0.011^~1~^~A~^^^1^0.393^0.501^3^0.417^0.486^~2, 3~^~04/01/2013~ -~07967~^~613~^7.594^9^0.193^~1~^~A~^^^1^6.758^8.440^4^7.041^8.148^~2, 3~^~04/01/2013~ -~07967~^~614~^3.793^9^0.100^~1~^~A~^^^1^3.493^4.359^3^3.488^4.098^~2, 3~^~04/01/2013~ -~07967~^~615~^0.068^9^0.002^~1~^~A~^^^1^0.062^0.073^4^0.063^0.073^~2, 3~^~04/01/2013~ -~07967~^~617~^13.613^9^0.340^~1~^~AS~^^^1^12.230^14.960^3^12.604^14.623^~2, 3~^~04/01/2013~ -~07967~^~618~^6.109^9^0.194^~1~^~AS~^^^1^5.260^7.186^4^5.588^6.631^~2, 3~^~04/01/2013~ -~07967~^~619~^0.255^9^0.010^~1~^~AS~^^^1^0.211^0.301^2^0.215^0.295^~2, 3~^~04/01/2013~ -~07967~^~620~^0.127^9^0.001^~1~^~A~^^^1^0.119^0.134^4^0.123^0.131^~2, 3~^~04/01/2013~ -~07967~^~621~^0.007^9^0.000^~1~^~A~^^^1^0.004^0.010^4^0.006^0.008^~2, 3~^~04/01/2013~ -~07967~^~624~^0.010^9^0.001^~1~^~A~^^^1^0.007^0.014^5^0.009^0.012^~2, 3~^~04/01/2013~ -~07967~^~625~^0.009^9^0.000^~1~^~A~^^^1^0.005^0.011^5^0.008^0.010^~2, 3~^~04/01/2013~ -~07967~^~626~^0.712^9^0.022^~1~^~AS~^^^1^0.622^0.809^3^0.634^0.790^~2, 3~^~04/01/2013~ -~07967~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~628~^0.302^9^0.008^~1~^~A~^^^1^0.262^0.330^4^0.279^0.325^~2, 3~^~04/01/2013~ -~07967~^~629~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~07967~^~630~^0.005^9^0.000^~1~^~AS~^^^1^0.004^0.006^6^0.004^0.005^~2, 3~^~04/01/2013~ -~07967~^~631~^0.024^9^0.001^~1~^~A~^^^1^0.021^0.030^3^0.023^0.026^~2, 3~^~04/01/2013~ -~07967~^~645~^14.736^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~646~^6.916^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~652~^0.022^9^0.001^~1~^~A~^^^1^0.018^0.025^4^0.019^0.024^~2, 3~^~04/01/2013~ -~07967~^~653~^0.119^9^0.003^~1~^~A~^^^1^0.097^0.136^4^0.111^0.128^~2, 3~^~04/01/2013~ -~07967~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.003^3^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~07967~^~662~^0.010^9^0.001^~1~^~A~^^^1^0.009^0.017^2^0.007^0.014^~2, 3~^~04/01/2013~ -~07967~^~663~^0.130^9^0.005^~1~^~A~^^^1^0.109^0.168^2^0.110^0.151^~2, 3~^~04/01/2013~ -~07967~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~665~^0.043^9^0.002^~1~^~A~^^^1^0.037^0.056^3^0.034^0.051^~2, 3~^~04/01/2013~ -~07967~^~670~^0.052^9^0.002^~1~^~A~^^^1^0.044^0.063^3^0.045^0.059^~2, 3~^~04/01/2013~ -~07967~^~671~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^4^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~07967~^~672~^0.259^9^0.007^~1~^~A~^^^1^0.223^0.304^4^0.239^0.279^~2, 3~^~04/01/2013~ -~07967~^~673~^0.701^9^0.021^~1~^~A~^^^1^0.613^0.792^3^0.625^0.778^~2, 3~^~04/01/2013~ -~07967~^~674~^13.483^9^0.336^~1~^~A~^^^1^12.115^14.792^4^12.490^14.476^~2, 3~^~04/01/2013~ -~07967~^~675~^6.015^9^0.191^~1~^~A~^^^1^5.177^7.091^4^5.503^6.527^~2, 3~^~04/01/2013~ -~07967~^~676~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.006^6^0.004^0.005^~2, 3~^~04/01/2013~ -~07967~^~685~^0.006^9^0.001^~1~^~A~^^^1^0.000^0.009^3^0.003^0.009^~1, 2, 3~^~04/01/2013~ -~07967~^~687~^0.094^9^0.003^~1~^~A~^^^1^0.077^0.107^3^0.085^0.103^~2, 3~^~04/01/2013~ -~07967~^~689~^0.081^9^0.003^~1~^~AS~^^^1^0.068^0.091^2^0.071^0.091^~2, 3~^~04/01/2013~ -~07967~^~693~^0.141^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07967~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07967~^~851~^0.247^9^0.011^~1~^~A~^^^1^0.204^0.300^2^0.203^0.291^~2, 3~^~04/01/2013~ -~07967~^~852~^0.038^9^0.001^~1~^~A~^^^1^0.031^0.042^3^0.033^0.042^~2, 3~^~04/01/2013~ -~07967~^~853~^0.043^9^0.001^~1~^~A~^^^1^0.037^0.049^2^0.038^0.048^~2, 3~^~04/01/2013~ -~07967~^~856~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~07967~^~858~^0.047^9^0.001^~1~^~A~^^^1^0.042^0.052^4^0.044^0.050^~2, 3~^~04/01/2013~ -~07968~^~312~^0.056^15^0.001^~1~^~A~^^^1^0.050^0.066^14^0.054^0.059^~2, 3~^~04/01/2013~ -~07968~^~315~^0.057^15^0.004^~1~^~A~^^^1^0.040^0.084^14^0.049^0.065^~2, 3~^~04/01/2013~ -~07968~^~404~^0.150^9^0.007^~1~^~A~^^^1^0.110^0.170^8^0.135^0.165^~2, 3~^~04/01/2013~ -~07968~^~405~^0.212^9^0.020^~1~^~A~^^^1^0.160^0.330^8^0.166^0.259^~2, 3~^~04/01/2013~ -~07968~^~406~^3.727^9^0.155^~1~^~A~^^^1^3.300^4.710^8^3.369^4.084^~2, 3~^~04/01/2013~ -~07968~^~410~^0.643^3^0.020^~1~^~A~^^^1^0.610^0.680^2^0.556^0.731^~2, 3~^~04/01/2013~ -~07968~^~415~^0.097^9^0.006^~1~^~A~^^^1^0.070^0.120^8^0.083^0.110^~2, 3~^~04/01/2013~ -~07968~^~501~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~502~^0.413^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~503~^0.496^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~504~^0.914^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~505~^0.832^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~506~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~508~^0.445^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~509~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~510~^0.588^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~511~^0.773^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~513~^0.771^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~514~^1.058^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~515~^1.895^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~516~^0.849^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~517~^0.837^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~518~^0.514^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07968~^~521~^0.117^0^^~4~^~BFPN~^~10975~^^^^^^^^^~08/01/2015~ -~07968~^~605~^0.275^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~606~^9.894^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~609~^0.003^10^0.001^~1~^~A~^^^1^0.000^0.006^9^0.002^0.005^~1, 2, 3~^~04/01/2013~ -~07968~^~610~^0.030^10^0.002^~1~^~A~^^^1^0.023^0.037^9^0.026^0.033^~2, 3~^~04/01/2013~ -~07968~^~611~^0.026^10^0.001^~1~^~A~^^^1^0.018^0.030^9^0.023^0.029^~2, 3~^~04/01/2013~ -~07968~^~612~^0.393^10^0.019^~1~^~A~^^^1^0.298^0.475^9^0.349^0.437^~2, 3~^~04/01/2013~ -~07968~^~613~^6.236^10^0.230^~1~^~A~^^^1^5.243^7.268^9^5.716^6.755^~2, 3~^~04/01/2013~ -~07968~^~614~^2.996^10^0.139^~1~^~A~^^^1^2.349^3.589^9^2.682^3.310^~2, 3~^~04/01/2013~ -~07968~^~615~^0.052^10^0.003^~1~^~A~^^^1^0.039^0.067^9^0.044^0.060^~2, 3~^~04/01/2013~ -~07968~^~617~^11.389^10^0.466^~1~^~AS~^^^1^9.077^13.322^9^10.335^12.444^~2, 3~^~04/01/2013~ -~07968~^~618~^4.728^10^0.221^~1~^~AS~^^^1^3.769^5.874^9^4.228^5.228^~2, 3~^~04/01/2013~ -~07968~^~619~^0.253^10^0.010^~1~^~AS~^^^1^0.201^0.300^9^0.229^0.276^~2, 3~^~04/01/2013~ -~07968~^~620~^0.109^10^0.002^~1~^~A~^^^1^0.100^0.119^9^0.104^0.114^~2, 3~^~04/01/2013~ -~07968~^~621~^0.007^10^0.001^~1~^~A~^^^1^0.004^0.015^9^0.005^0.010^~2, 3~^~04/01/2013~ -~07968~^~624~^0.012^10^0.001^~1~^~A~^^^1^0.007^0.015^9^0.010^0.013^~2, 3~^~04/01/2013~ -~07968~^~625~^0.037^10^0.007^~1~^~A~^^^1^0.012^0.092^9^0.022^0.053^~2, 3~^~04/01/2013~ -~07968~^~626~^0.711^10^0.027^~1~^~AS~^^^1^0.520^0.856^9^0.650^0.773^~2, 3~^~04/01/2013~ -~07968~^~627~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~07968~^~628~^0.248^10^0.016^~1~^~A~^^^1^0.169^0.311^9^0.211^0.284^~2, 3~^~04/01/2013~ -~07968~^~629~^0.004^10^0.001^~1~^~A~^^^1^0.002^0.009^9^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~07968~^~630~^0.080^10^0.011^~1~^~AS~^^^1^0.003^0.116^9^0.055^0.105^~2, 3~^~04/01/2013~ -~07968~^~631~^0.019^10^0.001^~1~^~A~^^^1^0.016^0.022^9^0.018^0.021^~2, 3~^~04/01/2013~ -~07968~^~645~^12.564^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~646~^5.383^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~652~^0.031^10^0.003^~1~^~A~^^^1^0.020^0.057^9^0.024^0.038^~2, 3~^~04/01/2013~ -~07968~^~653~^0.113^10^0.007^~1~^~A~^^^1^0.080^0.161^9^0.097^0.129^~2, 3~^~04/01/2013~ -~07968~^~654~^0.003^10^0.000^~1~^~A~^^^1^0.001^0.005^9^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~07968~^~662~^0.016^10^0.002^~1~^~A~^^^1^0.010^0.034^9^0.011^0.021^~2, 3~^~04/01/2013~ -~07968~^~663~^0.212^10^0.026^~1~^~A~^^^1^0.123^0.420^9^0.154^0.270^~2, 3~^~04/01/2013~ -~07968~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~665~^0.046^10^0.003^~1~^~A~^^^1^0.036^0.067^9^0.040^0.053^~2, 3~^~04/01/2013~ -~07968~^~670~^0.056^10^0.003^~1~^~A~^^^1^0.040^0.076^9^0.049^0.063^~2, 3~^~04/01/2013~ -~07968~^~671~^0.006^10^0.001^~1~^~A~^^^1^0.000^0.010^9^0.004^0.009^~1, 2, 3~^~04/01/2013~ -~07968~^~672~^0.165^10^0.016^~1~^~A~^^^1^0.113^0.235^9^0.129^0.201^~2, 3~^~04/01/2013~ -~07968~^~673~^0.695^10^0.027^~1~^~A~^^^1^0.506^0.844^9^0.633^0.757^~2, 3~^~04/01/2013~ -~07968~^~674~^11.177^10^0.474^~1~^~A~^^^1^8.845^13.129^9^10.106^12.248^~2, 3~^~04/01/2013~ -~07968~^~675~^4.625^10^0.222^~1~^~A~^^^1^3.664^5.766^9^4.124^5.127^~2, 3~^~04/01/2013~ -~07968~^~676~^0.080^10^0.011^~1~^~A~^^^1^0.003^0.116^9^0.055^0.105^~2, 3~^~04/01/2013~ -~07968~^~685~^0.007^10^0.001^~1~^~A~^^^1^0.004^0.009^9^0.005^0.008^~2, 3~^~04/01/2013~ -~07968~^~687~^0.091^10^0.004^~1~^~A~^^^1^0.070^0.120^9^0.081^0.101^~2, 3~^~04/01/2013~ -~07968~^~689~^0.058^10^0.003^~1~^~AS~^^^1^0.042^0.072^9^0.050^0.066^~2, 3~^~04/01/2013~ -~07968~^~693~^0.228^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~695~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07968~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07968~^~851~^0.246^10^0.010^~1~^~A~^^^1^0.195^0.294^9^0.223^0.269^~2, 3~^~04/01/2013~ -~07968~^~852~^0.025^10^0.002^~1~^~A~^^^1^0.017^0.038^9^0.020^0.031^~2, 3~^~04/01/2013~ -~07968~^~853~^0.033^10^0.001^~1~^~A~^^^1^0.025^0.037^9^0.030^0.036^~2, 3~^~04/01/2013~ -~07968~^~856~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~07968~^~858~^0.036^10^0.002^~1~^~A~^^^1^0.029^0.043^9^0.033^0.039^~2, 3~^~04/01/2013~ -~07969~^~312~^0.059^15^0.002^~1~^~A~^^^1^0.049^0.086^14^0.054^0.064^~2, 3~^~04/01/2013~ -~07969~^~315~^0.054^15^0.003^~1~^~A~^^^1^0.034^0.071^14^0.047^0.060^~2, 3~^~04/01/2013~ -~07969~^~404~^0.146^9^0.011^~1~^~A~^^^1^0.100^0.200^8^0.121^0.170^~2, 3~^~04/01/2013~ -~07969~^~405~^0.209^9^0.016^~1~^~A~^^^1^0.140^0.290^8^0.171^0.246^~2, 3~^~04/01/2013~ -~07969~^~406~^3.694^9^0.142^~1~^~A~^^^1^2.990^4.300^8^3.368^4.021^~2, 3~^~04/01/2013~ -~07969~^~410~^0.633^3^0.015^~1~^~A~^^^1^0.610^0.660^2^0.571^0.696^~2, 3~^~04/01/2013~ -~07969~^~415~^0.095^9^0.006^~1~^~A~^^^1^0.070^0.120^8^0.082^0.109^~2, 3~^~04/01/2013~ -~07969~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~502~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~503~^0.492^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~504~^0.907^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~505~^0.826^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~506~^0.284^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~508~^0.442^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~509~^0.347^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~510~^0.584^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~511~^0.767^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~512~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~513~^0.765^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~514~^1.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~515~^1.881^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~516~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~517~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~518~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07969~^~521~^0.116^0^^~1~^~A~^~10975~^^^^^^^^^~04/01/2013~ -~07969~^~605~^0.297^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~606~^9.487^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~607~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~609~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.005^10^0.003^0.004^~1, 2, 3~^~04/01/2013~ -~07969~^~610~^0.028^11^0.001^~1~^~A~^^^1^0.020^0.034^10^0.025^0.031^~2, 3~^~04/01/2013~ -~07969~^~611~^0.024^11^0.001^~1~^~A~^^^1^0.017^0.028^10^0.022^0.027^~2, 3~^~04/01/2013~ -~07969~^~612~^0.385^11^0.023^~1~^~A~^^^1^0.276^0.531^10^0.334^0.437^~2, 3~^~04/01/2013~ -~07969~^~613~^5.937^11^0.236^~1~^~A~^^^1^4.932^7.302^10^5.411^6.462^~2, 3~^~04/01/2013~ -~07969~^~614~^2.900^11^0.133^~1~^~A~^^^1^2.300^3.611^10^2.603^3.197^~2, 3~^~04/01/2013~ -~07969~^~615~^0.049^11^0.003^~1~^~A~^^^1^0.038^0.065^10^0.042^0.055^~2, 3~^~04/01/2013~ -~07969~^~617~^10.701^11^0.489^~1~^~AS~^^^1^8.492^13.361^10^9.612^11.791^~2, 3~^~04/01/2013~ -~07969~^~618~^4.787^11^0.205^~1~^~AS~^^^1^3.630^5.542^10^4.329^5.244^~2, 3~^~04/01/2013~ -~07969~^~619~^0.288^11^0.019^~1~^~AS~^^^1^0.219^0.416^10^0.245^0.330^~2, 3~^~04/01/2013~ -~07969~^~620~^0.110^11^0.004^~1~^~A~^^^1^0.089^0.129^10^0.102^0.119^~2, 3~^~04/01/2013~ -~07969~^~621~^0.007^11^0.001^~1~^~A~^^^1^0.005^0.013^10^0.006^0.009^~2, 3~^~04/01/2013~ -~07969~^~624~^0.012^11^0.001^~1~^~A~^^^1^0.007^0.015^10^0.009^0.014^~2, 3~^~04/01/2013~ -~07969~^~625~^0.041^11^0.008^~1~^~A~^^^1^0.013^0.112^10^0.023^0.060^~2, 3~^~04/01/2013~ -~07969~^~626~^0.664^11^0.026^~1~^~AS~^^^1^0.490^0.790^10^0.606^0.723^~2, 3~^~04/01/2013~ -~07969~^~627~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~07969~^~628~^0.223^11^0.016^~1~^~A~^^^1^0.155^0.303^10^0.189^0.258^~2, 3~^~04/01/2013~ -~07969~^~629~^0.004^11^0.001^~1~^~A~^^^1^0.002^0.009^10^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~07969~^~630~^0.066^11^0.012^~1~^~AS~^^^1^0.003^0.113^10^0.040^0.092^~2, 3~^~04/01/2013~ -~07969~^~631~^0.020^11^0.001^~1~^~A~^^^1^0.016^0.024^10^0.019^0.022^~2, 3~^~04/01/2013~ -~07969~^~645~^11.790^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~646~^5.458^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~652~^0.033^11^0.004^~1~^~A~^^^1^0.020^0.063^10^0.024^0.041^~2, 3~^~04/01/2013~ -~07969~^~653~^0.114^11^0.008^~1~^~A~^^^1^0.085^0.180^10^0.096^0.131^~2, 3~^~04/01/2013~ -~07969~^~654~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.005^10^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~07969~^~662~^0.018^11^0.003^~1~^~A~^^^1^0.010^0.039^10^0.012^0.024^~2, 3~^~04/01/2013~ -~07969~^~663~^0.229^11^0.031^~1~^~A~^^^1^0.113^0.485^10^0.159^0.299^~2, 3~^~04/01/2013~ -~07969~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~665~^0.050^11^0.004^~1~^~A~^^^1^0.034^0.082^10^0.041^0.059^~2, 3~^~04/01/2013~ -~07969~^~670~^0.056^11^0.005^~1~^~A~^^^1^0.039^0.087^10^0.045^0.066^~2, 3~^~04/01/2013~ -~07969~^~671~^0.004^11^0.001^~1~^~A~^^^1^0.000^0.009^10^0.002^0.007^~1, 2, 3~^~04/01/2013~ -~07969~^~672~^0.150^11^0.014^~1~^~A~^^^1^0.106^0.222^10^0.119^0.180^~2, 3~^~04/01/2013~ -~07969~^~673~^0.647^11^0.025^~1~^~A~^^^1^0.478^0.763^10^0.591^0.702^~2, 3~^~04/01/2013~ -~07969~^~674~^10.472^11^0.490^~1~^~A~^^^1^8.278^13.172^10^9.380^11.564^~2, 3~^~04/01/2013~ -~07969~^~675~^4.681^11^0.211^~1~^~A~^^^1^3.502^5.464^10^4.211^5.152^~2, 3~^~04/01/2013~ -~07969~^~676~^0.066^11^0.012^~1~^~A~^^^1^0.003^0.113^10^0.040^0.092^~2, 3~^~04/01/2013~ -~07969~^~685~^0.006^11^0.001^~1~^~A~^^^1^0.004^0.009^10^0.005^0.008^~2, 3~^~04/01/2013~ -~07969~^~687~^0.089^11^0.006^~1~^~A~^^^1^0.066^0.132^10^0.077^0.102^~2, 3~^~04/01/2013~ -~07969~^~689~^0.054^11^0.004^~1~^~AS~^^^1^0.042^0.072^10^0.046^0.062^~2, 3~^~04/01/2013~ -~07969~^~693~^0.247^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~07969~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07969~^~851~^0.281^11^0.020^~1~^~A~^^^1^0.210^0.412^10^0.237^0.325^~2, 3~^~04/01/2013~ -~07969~^~852~^0.023^11^0.002^~1~^~A~^^^1^0.015^0.035^10^0.018^0.028^~2, 3~^~04/01/2013~ -~07969~^~853~^0.031^11^0.001^~1~^~A~^^^1^0.025^0.038^10^0.028^0.034^~2, 3~^~04/01/2013~ -~07969~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~07969~^~858~^0.034^11^0.002^~1~^~A~^^^1^0.026^0.041^10^0.030^0.037^~2, 3~^~04/01/2013~ -~07970~^~312~^0.066^15^0.006^~1~^~A~^^^1^0.047^0.125^7^0.052^0.080^~2, 3~^~04/01/2013~ -~07970~^~315~^0.054^15^0.002^~1~^~A~^^^1^0.037^0.064^7^0.050^0.058^~2, 3~^~05/01/2014~ -~07970~^~404~^0.150^9^0.002^~1~^~A~^^^1^0.057^0.190^1^0.128^0.172^~2, 3~^~05/01/2014~ -~07970~^~405~^0.156^9^0.004^~1~^~A~^^^1^0.130^0.250^2^0.139^0.173^~2, 3~^~05/01/2014~ -~07970~^~406~^3.148^9^0.179^~1~^~A~^^^1^2.590^4.030^2^2.380^3.916^~2, 3~^~05/01/2014~ -~07970~^~410~^0.590^3^0.000^~1~^~A~^^^1^0.580^0.650^^^^~2, 3~^~05/01/2014~ -~07970~^~415~^0.100^9^0.009^~1~^~A~^^^1^0.070^0.130^2^0.062^0.139^~2, 3~^~04/01/2013~ -~07970~^~501~^0.109^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~502~^0.402^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~503~^0.436^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~504~^0.836^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~505~^0.784^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~506~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~507~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~508~^0.403^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~509~^0.326^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~510~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~511~^0.705^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~512~^0.337^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~513~^0.685^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~514~^0.973^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~515~^1.677^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~516~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~517~^0.734^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~518~^0.469^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~07970~^~521~^0.261^4^^~1~^~A~^^^1^0.150^0.270^^^^~2, 3~^~05/01/2014~ -~07970~^~605~^0.228^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~606~^9.684^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~609~^0.004^11^0.000^~1~^~A~^^^1^0.000^0.004^2^0.003^0.005^~1, 2, 3~^~05/01/2014~ -~07970~^~610~^0.029^11^0.001^~1~^~A~^^^1^0.014^0.033^3^0.028^0.031^~2, 3~^~05/01/2014~ -~07970~^~611~^0.028^11^0.004^~1~^~A~^^^1^0.016^0.114^2^0.015^0.042^~2, 3~^~05/01/2014~ -~07970~^~612~^0.384^11^0.017^~1~^~A~^^^1^0.207^0.475^2^0.320^0.448^~2, 3~^~05/01/2014~ -~07970~^~613~^6.071^11^0.247^~1~^~A~^^^1^4.566^6.878^2^5.038^7.104^~2, 3~^~05/01/2014~ -~07970~^~614~^2.967^11^0.137^~1~^~A~^^^1^1.801^3.409^2^2.392^3.542^~2, 3~^~05/01/2014~ -~07970~^~615~^0.054^11^0.002^~1~^~A~^^^1^0.028^0.063^2^0.044^0.064^~2, 3~^~05/01/2014~ -~07970~^~617~^11.091^11^0.418^~1~^~AS~^^^1^7.960^12.563^2^9.451^12.731^~2, 3~^~05/01/2014~ -~07970~^~618~^4.646^11^0.156^~1~^~AS~^^^1^3.418^5.341^3^4.184^5.109^~2, 3~^~05/01/2014~ -~07970~^~619~^0.248^11^0.015^~1~^~AS~^^^1^0.163^0.313^3^0.201^0.296^~2, 3~^~05/01/2014~ -~07970~^~620~^0.101^11^0.002^~1~^~A~^^^1^0.081^0.117^5^0.096^0.106^~2, 3~^~05/01/2014~ -~07970~^~621~^0.007^11^0.001^~1~^~A~^^^1^0.003^0.015^4^0.005^0.009^~2, 3~^~05/01/2014~ -~07970~^~624~^0.012^11^0.001^~1~^~A~^^^1^0.005^0.014^3^0.010^0.015^~2, 3~^~05/01/2014~ -~07970~^~625~^0.028^11^0.003^~1~^~A~^^^1^0.012^0.092^3^0.017^0.038^~2, 3~^~05/01/2014~ -~07970~^~626~^0.632^11^0.023^~1~^~AS~^^^1^0.500^0.789^3^0.554^0.711^~2, 3~^~05/01/2014~ -~07970~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.004^1^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~07970~^~628~^0.250^11^0.007^~1~^~A~^^^1^0.151^0.280^2^0.222^0.277^~2, 3~^~05/01/2014~ -~07970~^~629~^0.004^11^0.001^~1~^~A~^^^1^0.002^0.010^3^0.001^0.006^~1, 2, 3~^~04/01/2013~ -~07970~^~630~^0.093^11^0.002^~1~^~AS~^^^1^0.004^0.104^4^0.086^0.100^~2, 3~^~05/01/2014~ -~07970~^~631~^0.020^11^0.001^~1~^~A~^^^1^0.015^0.026^3^0.018^0.023^~2, 3~^~05/01/2014~ -~07970~^~645~^12.186^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~646~^5.300^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~652~^0.026^11^0.001^~1~^~A~^^^1^0.020^0.051^4^0.022^0.030^~2, 3~^~05/01/2014~ -~07970~^~653~^0.106^11^0.006^~1~^~A~^^^1^0.058^0.156^3^0.089^0.124^~2, 3~^~05/01/2014~ -~07970~^~654~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2013~ -~07970~^~662~^0.013^11^0.002^~1~^~A~^^^1^0.007^0.029^4^0.009^0.017^~2, 3~^~05/01/2014~ -~07970~^~663~^0.179^11^0.015^~1~^~A~^^^1^0.117^0.384^4^0.137^0.220^~2, 3~^~05/01/2014~ -~07970~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~665~^0.036^11^0.002^~1~^~A~^^^1^0.029^0.063^3^0.029^0.043^~2, 3~^~05/01/2014~ -~07970~^~670~^0.050^11^0.002^~1~^~A~^^^1^0.031^0.079^5^0.044^0.056^~2, 3~^~05/01/2014~ -~07970~^~671~^0.007^11^0.000^~1~^~A~^^^1^0.000^0.008^4^0.006^0.008^~1, 2, 3~^~05/01/2014~ -~07970~^~672~^0.175^11^0.007^~1~^~A~^^^1^0.100^0.222^4^0.156^0.194^~2, 3~^~05/01/2014~ -~07970~^~673~^0.620^11^0.022^~1~^~A~^^^1^0.485^0.778^3^0.544^0.695^~2, 3~^~05/01/2014~ -~07970~^~674~^10.913^11^0.410^~1~^~A~^^^1^7.838^12.371^2^9.308^12.517^~2, 3~^~05/01/2014~ -~07970~^~675~^4.561^11^0.156^~1~^~A~^^^1^3.276^5.247^4^4.103^5.018^~2, 3~^~05/01/2014~ -~07970~^~676~^0.093^11^0.002^~1~^~A~^^^1^0.004^0.104^4^0.086^0.100^~2, 3~^~05/01/2014~ -~07970~^~685~^0.006^11^0.001^~1~^~A~^^^1^0.004^0.009^2^0.003^0.008^~2, 3~^~04/01/2013~ -~07970~^~687~^0.085^11^0.004^~1~^~A~^^^1^0.043^0.124^4^0.073^0.097^~2, 3~^~05/01/2014~ -~07970~^~689~^0.059^11^0.002^~1~^~AS~^^^1^0.040^0.075^3^0.051^0.067^~2, 3~^~05/01/2014~ -~07970~^~693~^0.191^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07970~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07970~^~851~^0.242^11^0.015^~1~^~A~^^^1^0.156^0.305^3^0.192^0.292^~2, 3~^~05/01/2014~ -~07970~^~852~^0.027^11^0.002^~1~^~A~^^^1^0.015^0.035^2^0.020^0.035^~2, 3~^~05/01/2014~ -~07970~^~853~^0.031^11^0.001^~1~^~A~^^^1^0.025^0.043^4^0.029^0.033^~2, 3~^~04/01/2013~ -~07970~^~856~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~07970~^~858~^0.036^11^0.001^~1~^~A~^^^1^0.028^0.042^4^0.034^0.037^~2, 3~^~05/01/2014~ -~07971~^~312~^0.035^18^0.001^~1~^~A~^^^1^0.025^0.043^5^0.033^0.036^~1, 2, 3~^~04/01/2013~ -~07971~^~315~^0.038^18^0.002^~1~^~A~^^^1^0.011^0.058^1^0.023^0.052^~1, 2, 3~^~05/01/2014~ -~07971~^~404~^0.047^9^0.001^~1~^~A~^^^1^0.030^0.061^4^0.044^0.050^~2, 3~^~05/01/2014~ -~07971~^~405~^0.158^9^0.001^~1~^~A~^^^1^0.110^0.230^3^0.154^0.163^~2, 3~^~05/01/2014~ -~07971~^~406~^3.187^9^0.048^~1~^~A~^^^1^2.530^3.730^3^3.039^3.335^~2, 3~^~05/01/2014~ -~07971~^~410~^0.771^6^0.021^~1~^~A~^^^1^0.610^0.980^1^0.566^0.975^~2, 3~^~05/01/2014~ -~07971~^~415~^0.193^9^0.004^~1~^~A~^^^1^0.154^0.260^3^0.180^0.206^~2, 3~^~05/01/2014~ -~07971~^~501~^0.112^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~502~^0.372^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~503~^0.425^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~504~^0.782^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~505~^0.762^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~506~^0.249^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~507~^0.137^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~508~^0.381^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~509~^0.303^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~510~^0.483^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~511~^0.670^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~512~^0.298^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~513~^0.650^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~514~^0.914^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~515~^1.515^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~516~^0.696^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~517~^0.734^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~518~^0.430^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~521~^0.246^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~07971~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~606~^7.389^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~607~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~609~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~610~^0.020^18^0.001^~1~^~A~^^^1^0.014^0.026^1^0.016^0.025^~2, 3~^~05/01/2014~ -~07971~^~611~^0.017^18^0.001^~1~^~A~^^^1^0.010^0.027^2^0.014^0.020^~2, 3~^~05/01/2014~ -~07971~^~612~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~613~^5.255^18^0.031^~1~^~A~^^^1^4.496^6.181^8^5.185^5.326^~2, 3~^~05/01/2014~ -~07971~^~614~^1.967^18^0.019^~1~^~A~^^^1^1.344^2.463^7^1.921^2.014^~2, 3~^~05/01/2014~ -~07971~^~615~^0.030^18^0.001^~1~^~A~^^^1^0.019^0.042^2^0.027^0.033^~2, 3~^~05/01/2014~ -~07971~^~617~^8.977^18^0.047^~1~^~AS~^^^1^7.505^10.646^9^8.871^9.083^~2, 3~^~05/01/2014~ -~07971~^~618~^4.086^18^0.070^~1~^~AS~^^^1^3.289^5.228^2^3.738^4.434^~2, 3~^~05/01/2014~ -~07971~^~619~^0.208^18^0.007^~1~^~AS~^^^1^0.131^0.246^1^0.134^0.282^~2, 3~^~05/01/2014~ -~07971~^~620~^0.100^18^0.001^~1~^~A~^^^1^0.081^0.124^4^0.098^0.102^~2, 3~^~05/01/2014~ -~07971~^~621~^0.006^18^0.000^~1~^~A~^^^1^0.005^0.007^1^0.004^0.007^~2, 3~^~04/01/2013~ -~07971~^~624~^0.012^18^0.001^~1~^~A~^^^1^0.010^0.016^1^0.007^0.018^~2, 3~^~05/01/2014~ -~07971~^~625~^0.033^18^0.002^~1~^~A~^^^1^0.002^0.050^2^0.023^0.043^~1, 2, 3~^~05/01/2014~ -~07971~^~626~^0.925^18^0.019^~1~^~AS~^^^1^0.847^1.039^1^0.703^1.147^~2, 3~^~05/01/2014~ -~07971~^~627~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.005^2^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~07971~^~628~^0.192^18^0.003^~1~^~A~^^^1^0.140^0.241^1^0.164^0.220^~2, 3~^~05/01/2014~ -~07971~^~629~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.004^10^0.003^0.004^~1, 2, 3~^~04/01/2013~ -~07971~^~630~^0.089^18^0.002^~1~^~AS~^^^1^0.003^0.142^1^0.071^0.106^~2, 3~^~05/01/2014~ -~07971~^~631~^0.014^18^0.001^~1~^~A~^^^1^0.010^0.017^1^0.009^0.019^~2, 3~^~04/01/2013~ -~07971~^~645~^10.269^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~646~^4.590^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~652~^0.022^18^0.001^~1~^~A~^^^1^0.014^0.029^1^0.018^0.026^~2, 3~^~05/01/2014~ -~07971~^~653~^0.063^18^0.001^~1~^~A~^^^1^0.026^0.079^2^0.058^0.068^~2, 3~^~04/01/2013~ -~07971~^~654~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.003^9^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~07971~^~662~^0.011^18^0.000^~1~^~A~^^^1^0.004^0.016^2^0.010^0.012^~2, 3~^~05/01/2014~ -~07971~^~663~^0.137^18^0.005^~1~^~A~^^^1^0.049^0.209^1^0.102^0.172^~2, 3~^~05/01/2014~ -~07971~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~665~^0.035^18^0.001^~1~^~A~^^^1^0.022^0.043^2^0.031^0.039^~2, 3~^~05/01/2014~ -~07971~^~670~^0.029^18^0.001^~1~^~A~^^^1^0.012^0.037^1^0.022^0.036^~2, 3~^~05/01/2014~ -~07971~^~671~^0.005^18^0.002^~1~^~A~^^^1^0.000^0.009^1^-0.013^0.022^~1, 2, 3~^~05/01/2014~ -~07971~^~672~^0.090^18^0.004^~1~^~A~^^^1^0.051^0.144^1^0.051^0.129^~2, 3~^~05/01/2014~ -~07971~^~673~^0.914^18^0.020^~1~^~A~^^^1^0.837^1.024^1^0.690^1.139^~2, 3~^~05/01/2014~ -~07971~^~674~^8.839^18^0.048^~1~^~A~^^^1^7.455^10.562^8^8.729^8.950^~2, 3~^~05/01/2014~ -~07971~^~675~^4.022^18^0.071^~1~^~A~^^^1^3.219^5.194^2^3.656^4.387^~2, 3~^~05/01/2014~ -~07971~^~676~^0.089^18^0.002^~1~^~A~^^^1^0.003^0.142^1^0.071^0.106^~2, 3~^~05/01/2014~ -~07971~^~685~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.005^1^0.000^0.007^~1, 2, 3~^~04/01/2013~ -~07971~^~687~^0.049^18^0.000^~1~^~A~^^^1^0.022^0.063^10^0.048^0.050^~2, 3~^~05/01/2014~ -~07971~^~689~^0.046^18^0.001^~1~^~AS~^^^1^0.036^0.055^1^0.035^0.056^~2, 3~^~05/01/2014~ -~07971~^~693~^0.148^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~07971~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~07971~^~851~^0.205^18^0.007^~1~^~A~^^^1^0.129^0.241^1^0.135^0.274^~2, 3~^~05/01/2014~ -~07971~^~852~^0.011^18^0.001^~1~^~A~^^^1^0.005^0.017^1^0.001^0.021^~2, 3~^~05/01/2014~ -~07971~^~853~^0.035^18^0.000^~1~^~A~^^^1^0.029^0.044^2^0.034^0.036^~2, 3~^~05/01/2014~ -~07971~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~07971~^~858~^0.031^18^0.000^~1~^~A~^^^1^0.023^0.039^8^0.031^0.032^~2, 3~^~05/01/2014~ -~07972~^~312~^0.123^15^0.005^~1~^~A~^^^1^0.056^0.228^7^0.110^0.136^~2, 3~^~06/01/2014~ -~07972~^~315~^0.282^15^0.010^~1~^~A~^^^1^0.126^0.447^6^0.256^0.307^~2, 3~^~06/01/2014~ -~07972~^~404~^0.136^6^0.019^~1~^~A~^^^1^0.104^0.183^1^-0.103^0.376^~2, 3~^~06/01/2014~ -~07972~^~405~^0.230^6^0.015^~1~^~A~^^^1^0.210^0.270^1^0.067^0.393^~2, 3~^~06/01/2014~ -~07972~^~406~^3.108^6^0.155^~1~^~A~^^^1^2.590^3.800^1^1.449^4.767^~2, 3~^~06/01/2014~ -~07972~^~410~^0.924^4^0.009^~1~^~A~^^^1^0.640^1.000^1^0.811^1.037^~2, 3~^~06/01/2014~ -~07972~^~415~^0.202^6^0.011^~1~^~A~^^^1^0.176^0.230^1^0.079^0.326^~2, 3~^~06/01/2014~ -~07972~^~605~^0.577^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~606~^7.627^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~607~^0.006^15^0.000^~1~^~A~^^^1^0.003^0.012^9^0.006^0.007^~2, 3~^~06/01/2014~ -~07972~^~608~^0.003^15^0.000^~1~^~A~^^^1^0.000^0.008^5^0.002^0.004^~1, 2, 3~^~06/01/2014~ -~07972~^~609~^0.005^15^0.000^~1~^~A~^^^1^0.002^0.008^7^0.004^0.005^~1, 2, 3~^~06/01/2014~ -~07972~^~610~^0.025^15^0.001^~1~^~A~^^^1^0.012^0.041^9^0.023^0.027^~2, 3~^~06/01/2014~ -~07972~^~611~^0.022^15^0.001^~1~^~A~^^^1^0.013^0.035^7^0.020^0.024^~2, 3~^~06/01/2014~ -~07972~^~612~^0.381^15^0.025^~1~^~A~^^^1^0.122^0.617^6^0.320^0.442^~2, 3~^~06/01/2014~ -~07972~^~613~^4.608^15^0.134^~1~^~A~^^^1^2.764^6.136^6^4.285^4.932^~2, 3~^~06/01/2014~ -~07972~^~614~^2.359^15^0.126^~1~^~A~^^^1^0.749^3.269^6^2.052^2.665^~2, 3~^~06/01/2014~ -~07972~^~615~^0.032^15^0.001^~1~^~A~^^^1^0.018^0.038^7^0.030^0.034^~2, 3~^~06/01/2014~ -~07972~^~617~^8.265^15^0.272^~1~^~AS~^^^1^4.211^10.785^6^7.604^8.925^~2, 3~^~06/01/2014~ -~07972~^~618~^2.965^15^0.162^~1~^~AS~^^^1^1.759^5.402^6^2.573^3.357^~2, 3~^~06/01/2014~ -~07972~^~619~^0.168^15^0.009^~1~^~AS~^^^1^0.107^0.266^7^0.148^0.189^~2, 3~^~06/01/2014~ -~07972~^~620~^0.066^15^0.002^~1~^~A~^^^1^0.041^0.099^7^0.060^0.071^~2, 3~^~06/01/2014~ -~07972~^~621~^0.004^15^0.000^~1~^~A~^^^1^0.002^0.006^8^0.003^0.004^~1, 2, 3~^~06/01/2014~ -~07972~^~624~^0.009^15^0.000^~1~^~A~^^^1^0.005^0.013^6^0.008^0.010^~2, 3~^~06/01/2014~ -~07972~^~625~^0.083^15^0.006^~1~^~A~^^^1^0.017^0.157^6^0.068^0.099^~2, 3~^~06/01/2014~ -~07972~^~626~^0.626^15^0.021^~1~^~AS~^^^1^0.368^0.918^7^0.576^0.676^~2, 3~^~06/01/2014~ -~07972~^~627~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~628~^0.126^15^0.004^~1~^~A~^^^1^0.055^0.217^6^0.116^0.135^~2, 3~^~06/01/2014~ -~07972~^~629~^0.005^15^0.000^~1~^~A~^^^1^0.002^0.010^7^0.004^0.006^~1, 2, 3~^~06/01/2014~ -~07972~^~630~^0.003^15^0.002^~1~^~AS~^^^1^0.001^0.034^6^0.000^0.007^~2, 3~^~06/01/2014~ -~07972~^~631~^0.013^15^0.000^~1~^~A~^^^1^0.010^0.020^8^0.013^0.014^~2, 3~^~06/01/2014~ -~07972~^~645~^9.188^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~646~^3.346^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~652~^0.049^15^0.004^~1~^~A~^^^1^0.018^0.092^7^0.040^0.058^~2, 3~^~06/01/2014~ -~07972~^~653~^0.125^15^0.011^~1~^~A~^^^1^0.033^0.255^7^0.098^0.152^~2, 3~^~06/01/2014~ -~07972~^~654~^0.003^15^0.000^~1~^~A~^^^1^0.001^0.006^7^0.002^0.003^~1, 2, 3~^~06/01/2014~ -~07972~^~662~^0.033^15^0.003^~1~^~A~^^^1^0.008^0.057^6^0.027^0.039^~2, 3~^~06/01/2014~ -~07972~^~663~^0.463^15^0.046^~1~^~A~^^^1^0.108^0.946^6^0.350^0.575^~2, 3~^~06/01/2014~ -~07972~^~664~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~665~^0.081^15^0.003^~1~^~A~^^^1^0.043^0.122^6^0.073^0.090^~2, 3~^~06/01/2014~ -~07972~^~670~^0.069^15^0.005^~1~^~A~^^^1^0.030^0.111^7^0.058^0.080^~2, 3~^~06/01/2014~ -~07972~^~671~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~672~^0.070^15^0.003^~1~^~A~^^^1^0.018^0.154^7^0.063^0.077^~2, 3~^~06/01/2014~ -~07972~^~673~^0.594^15^0.021^~1~^~A~^^^1^0.360^0.903^7^0.545^0.642^~2, 3~^~06/01/2014~ -~07972~^~674~^7.802^15^0.238^~1~^~A~^^^1^4.103^10.622^6^7.221^8.383^~2, 3~^~06/01/2014~ -~07972~^~675~^2.815^15^0.167^~1~^~A~^^^1^1.612^5.326^6^2.410^3.220^~2, 3~^~06/01/2014~ -~07972~^~676~^0.003^15^0.002^~1~^~A~^^^1^0.001^0.034^6^0.000^0.007^~1, 2, 3~^~06/01/2014~ -~07972~^~685~^0.005^15^0.000^~1~^~A~^^^1^0.003^0.009^8^0.004^0.006^~2, 3~^~06/01/2014~ -~07972~^~687~^0.085^15^0.007^~1~^~A~^^^1^0.021^0.173^7^0.068^0.102^~2, 3~^~06/01/2014~ -~07972~^~689~^0.034^15^0.001^~1~^~AS~^^^1^0.012^0.064^7^0.032^0.037^~2, 3~^~06/01/2014~ -~07972~^~693~^0.496^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~07972~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~851~^0.163^15^0.008^~1~^~A~^^^1^0.104^0.257^7^0.143^0.183^~2, 3~^~06/01/2014~ -~07972~^~852~^0.012^15^0.001^~1~^~A~^^^1^0.002^0.026^7^0.011^0.013^~1, 2, 3~^~06/01/2014~ -~07972~^~853~^0.022^15^0.001^~1~^~A~^^^1^0.010^0.039^7^0.021^0.024^~2, 3~^~06/01/2014~ -~07972~^~856~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~07972~^~858~^0.020^15^0.000^~1~^~A~^^^1^0.013^0.034^5^0.019^0.021^~2, 3~^~06/01/2014~ -~07973~^~312~^0.118^18^0.003^~1~^~A~^^^1^0.097^0.153^9^0.111^0.125^~2, 3~^~07/01/2014~ -~07973~^~315~^0.034^18^0.002^~1~^~A~^^^1^0.022^0.048^9^0.031^0.038^~1, 2, 3~^~07/01/2014~ -~07973~^~404~^0.049^9^0.001^~1~^~A~^^^1^0.045^0.074^3^0.045^0.053^~2, 3~^~07/01/2014~ -~07973~^~405~^0.398^9^0.022^~1~^~A~^^^1^0.300^0.460^3^0.318^0.478^~2, 3~^~07/01/2014~ -~07973~^~406~^8.102^9^0.375^~1~^~A~^^^1^6.620^9.070^3^6.989^9.216^~2, 3~^~07/01/2014~ -~07973~^~410~^0.988^6^0.005^~1~^~A~^^^1^0.590^1.100^1^0.925^1.051^~2, 3~^~07/01/2014~ -~07973~^~415~^0.374^9^0.009^~1~^~A~^^^1^0.348^0.486^4^0.350^0.398^~2, 3~^~07/01/2014~ -~07973~^~605~^0.287^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~606~^6.933^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~607~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~07973~^~608~^0.005^18^0.001^~1~^~A~^^^1^0.000^0.015^6^0.003^0.007^~1, 2, 3~^~07/01/2014~ -~07973~^~609~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^6^0.000^0.002^~1, 2, 3~^~07/01/2014~ -~07973~^~610~^0.006^18^0.000^~1~^~A~^^^1^0.004^0.007^9^0.006^0.007^~2, 3~^~07/01/2014~ -~07973~^~611~^0.041^18^0.002^~1~^~A~^^^1^0.016^0.065^8^0.037^0.046^~2, 3~^~07/01/2014~ -~07973~^~612~^0.222^18^0.003^~1~^~A~^^^1^0.188^0.240^10^0.215^0.229^~2, 3~^~07/01/2014~ -~07973~^~613~^4.715^18^0.068^~1~^~A~^^^1^3.627^5.499^10^4.564^4.867^~2, 3~^~07/01/2014~ -~07973~^~614~^1.797^18^0.026^~1~^~A~^^^1^1.416^2.023^10^1.739^1.855^~2, 3~^~07/01/2014~ -~07973~^~615~^0.029^18^0.001^~1~^~A~^^^1^0.019^0.035^8^0.028^0.030^~2, 3~^~07/01/2014~ -~07973~^~617~^8.425^18^0.146^~1~^~AS~^^^1^6.125^9.798^10^8.100^8.749^~2, 3~^~07/01/2014~ -~07973~^~618~^6.189^18^0.131^~1~^~AS~^^^1^5.019^8.634^8^5.888^6.490^~2, 3~^~07/01/2014~ -~07973~^~619~^0.354^18^0.008^~1~^~AS~^^^1^0.252^0.489^10^0.337^0.372^~2, 3~^~07/01/2014~ -~07973~^~620~^0.175^18^0.006^~1~^~A~^^^1^0.095^0.241^6^0.160^0.190^~2, 3~^~07/01/2014~ -~07973~^~621~^0.012^18^0.001^~1~^~A~^^^1^0.007^0.028^5^0.010^0.013^~2, 3~^~07/01/2014~ -~07973~^~624~^0.012^18^0.000^~1~^~A~^^^1^0.005^0.015^7^0.011^0.013^~2, 3~^~07/01/2014~ -~07973~^~625~^0.034^18^0.001^~1~^~A~^^^1^0.023^0.053^9^0.033^0.036^~2, 3~^~07/01/2014~ -~07973~^~626~^0.751^18^0.011^~1~^~AS~^^^1^0.535^0.878^10^0.726^0.777^~2, 3~^~07/01/2014~ -~07973~^~627~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~07973~^~628~^0.128^18^0.002^~1~^~A~^^^1^0.098^0.150^10^0.124^0.132^~2, 3~^~07/01/2014~ -~07973~^~629~^0.024^18^0.009^~1~^~A~^^^1^0.000^0.084^4^-0.001^0.049^~1, 2, 3~^~07/01/2014~ -~07973~^~630~^0.005^18^0.000^~1~^~AS~^^^1^0.002^0.008^7^0.004^0.006^~2, 3~^~07/01/2014~ -~07973~^~631~^0.017^18^0.001^~1~^~A~^^^1^0.008^0.021^8^0.015^0.018^~2, 3~^~07/01/2014~ -~07973~^~645~^9.382^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~646~^6.871^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~652~^0.035^18^0.001^~1~^~A~^^^1^0.026^0.041^10^0.034^0.036^~2, 3~^~07/01/2014~ -~07973~^~653~^0.064^18^0.001^~1~^~A~^^^1^0.047^0.074^8^0.061^0.067^~2, 3~^~07/01/2014~ -~07973~^~654~^0.005^18^0.000^~1~^~A~^^^1^0.002^0.006^7^0.004^0.005^~1, 2, 3~^~07/01/2014~ -~07973~^~662~^0.016^18^0.001^~1~^~A~^^^1^0.012^0.026^6^0.015^0.017^~2, 3~^~07/01/2014~ -~07973~^~663~^0.214^18^0.004^~1~^~A~^^^1^0.158^0.240^11^0.206^0.223^~2, 3~^~07/01/2014~ -~07973~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07973~^~665~^0.056^18^0.001^~1~^~A~^^^1^0.044^0.070^8^0.054^0.058^~2, 3~^~07/01/2014~ -~07973~^~670~^0.034^18^0.001^~1~^~A~^^^1^0.025^0.047^9^0.032^0.036^~2, 3~^~07/01/2014~ -~07973~^~671~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^5^0.001^0.003^~1, 2, 3~^~07/01/2014~ -~07973~^~672~^0.042^18^0.001^~1~^~A~^^^1^0.030^0.058^7^0.039^0.045^~2, 3~^~07/01/2014~ -~07973~^~673~^0.735^18^0.011^~1~^~A~^^^1^0.523^0.852^10^0.711^0.760^~2, 3~^~07/01/2014~ -~07973~^~674~^8.210^18^0.143^~1~^~A~^^^1^5.949^9.595^10^7.892^8.528^~2, 3~^~07/01/2014~ -~07973~^~675~^6.100^18^0.130^~1~^~A~^^^1^4.943^8.552^8^5.800^6.400^~2, 3~^~07/01/2014~ -~07973~^~676~^0.005^18^0.000^~1~^~A~^^^1^0.002^0.008^7^0.004^0.006^~1, 2, 3~^~07/01/2014~ -~07973~^~685~^0.015^18^0.000^~1~^~A~^^^1^0.008^0.021^10^0.014^0.016^~2, 3~^~07/01/2014~ -~07973~^~687~^0.037^18^0.001^~1~^~A~^^^1^0.025^0.048^5^0.034^0.039^~2, 3~^~07/01/2014~ -~07973~^~689~^0.025^18^0.001^~1~^~AS~^^^1^0.015^0.037^7^0.023^0.028^~2, 3~^~07/01/2014~ -~07973~^~693~^0.231^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~695~^0.056^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~07973~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07973~^~851~^0.339^18^0.008^~1~^~A~^^^1^0.242^0.468^10^0.323^0.356^~2, 3~^~07/01/2014~ -~07973~^~852~^0.005^18^0.000^~1~^~A~^^^1^0.003^0.007^11^0.005^0.005^~2, 3~^~07/01/2014~ -~07973~^~853~^0.020^18^0.001^~1~^~A~^^^1^0.012^0.030^6^0.018^0.022^~2, 3~^~07/01/2014~ -~07973~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~07973~^~858~^0.032^18^0.001^~1~^~A~^^^1^0.018^0.046^5^0.029^0.035^~2, 3~^~07/01/2014~ -~07974~^~312~^0.063^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~315~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~404~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~405~^0.183^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~406~^6.222^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~410~^0.616^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~415~^0.401^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~501~^0.189^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~502~^0.653^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~503~^0.517^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~504~^1.251^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~505~^1.483^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~506~^0.470^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~507~^0.172^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~508~^0.587^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~509~^0.532^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~510~^0.586^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~511~^1.060^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~512~^0.487^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~513~^1.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~514~^1.453^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~515~^2.462^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~516~^0.927^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~517~^1.063^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~518~^0.724^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~07974~^~606~^6.667^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~610~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~611~^0.042^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~612~^0.131^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~613~^4.214^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~614~^1.800^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~615~^0.274^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~617~^8.242^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~618~^3.104^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~619~^1.103^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~620~^0.037^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~624~^0.138^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~625~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~626~^0.149^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~628~^0.168^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~629~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~631~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~645~^8.571^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~646~^4.275^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~07974~^~652~^0.022^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~653~^0.035^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~672~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~687~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~689~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07974~^~858~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~07976~^~312~^0.449^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~315~^0.576^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~404~^0.396^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~405~^0.469^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~406~^12.857^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~410~^0.708^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~415~^0.536^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~501~^0.176^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~502~^0.648^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~503~^0.628^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~504~^1.092^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~505~^1.136^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~506~^0.337^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~507~^0.214^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~508~^0.546^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~509~^0.469^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~510~^0.689^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~511~^0.922^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~512~^0.393^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~513~^0.790^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~514~^1.703^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~515~^2.268^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~516~^0.635^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~517~^0.618^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~518~^0.614^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~605~^0.018^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~606~^0.893^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~ -~07976~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~612~^0.017^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~613~^0.672^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~614~^0.188^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~615~^0.002^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~617~^1.510^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~618~^1.339^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~619~^0.092^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~620~^0.050^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~621~^0.003^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~625~^0.008^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~626~^0.251^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~628~^0.022^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~631~^0.005^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~645~^1.797^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~646~^1.526^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~652~^0.002^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~653~^0.003^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~671~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~672~^0.007^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~687~^0.003^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~689~^0.014^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07976~^~858~^0.013^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~ -~07977~^~312~^0.245^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~315~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~404~^0.558^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~405~^0.194^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~406~^6.147^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~410~^0.802^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~415~^0.415^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~501~^0.174^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~502~^0.828^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~503~^0.836^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~504~^1.483^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~505~^1.564^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~506~^0.443^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~507~^0.208^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~508~^0.741^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~509~^0.601^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~510~^0.937^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~511~^1.185^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~512~^0.806^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~513~^1.091^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~514~^1.615^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~515~^2.650^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~516~^0.967^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~517~^0.795^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~518~^0.725^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~521~^0.120^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~605~^0.019^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~606~^1.786^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~612~^0.064^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~613~^1.127^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~614~^0.554^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~615~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~617~^0.562^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~618~^0.152^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~619~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~620~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~626~^0.038^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~628~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~645~^0.609^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~646~^0.187^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~653~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~672~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07977~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~312~^0.047^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~404~^0.301^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~405~^0.138^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~406~^2.410^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~415~^0.192^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~501~^0.135^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~502~^0.488^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~503~^0.506^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~504~^0.869^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~505~^0.967^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~506~^0.287^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~507~^0.134^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~508~^0.434^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~509~^0.387^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~510~^0.576^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~511~^0.675^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~512~^0.432^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~513~^0.626^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~514~^1.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~515~^1.678^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~516~^0.506^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~517~^0.434^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~518~^0.446^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~521~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~606~^8.235^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~07978~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~610~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~611~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~612~^0.319^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~613~^5.104^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~614~^2.624^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~615~^0.032^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~617~^9.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~618~^3.070^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~619~^0.130^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~620~^0.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~621~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~625~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~626~^0.515^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~628~^0.166^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~631~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~645~^9.722^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~646~^3.401^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~07978~^~652~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~653~^0.061^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~672~^0.107^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~689~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07978~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~07979~^~312~^0.069^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~315~^0.013^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~404~^0.417^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~405~^0.403^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~406~^5.674^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~410~^0.552^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~415~^0.288^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~501~^0.116^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~502~^0.727^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~503~^0.800^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~504~^1.439^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~505~^1.550^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~506~^0.480^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~507~^0.192^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~508~^0.713^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~509~^0.582^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~510~^0.882^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~511~^1.196^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~512~^0.600^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~513~^1.136^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~514~^1.662^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~515~^2.767^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~516~^1.169^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~517~^0.925^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~518~^0.743^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~521~^0.003^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~605~^0.718^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~606~^10.714^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~611~^0.016^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~612~^0.559^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~613~^6.513^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~614~^3.319^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~615~^0.019^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~617~^3.033^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~618~^1.316^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~619~^0.053^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~620~^0.087^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~625~^0.178^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~626~^0.881^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~628~^0.108^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~631~^0.003^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~645~^4.378^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~646~^1.484^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~652~^0.084^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~653~^0.199^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~672~^0.007^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~687~^0.178^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~689~^0.007^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~07979~^~858~^0.006^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08002~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~405~^1.400^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~406~^16.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~410~^0.756^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08002~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08002~^~606~^1.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~611~^0.019^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~612~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~613~^0.930^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~614~^0.064^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~617~^1.493^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~618~^1.723^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~619~^0.077^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~626~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08002~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08002~^~645~^1.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08002~^~646~^1.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08010~^~312~^0.111^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~315~^0.747^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~404~^1.614^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~405~^1.822^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~406~^21.465^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~410~^0.145^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~415~^2.138^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08010~^~605~^0.020^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~606~^3.346^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~608~^0.021^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~609~^0.257^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~610~^0.205^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~611~^1.533^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~612~^0.578^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~613~^0.603^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~614~^0.125^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~615~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~617~^0.636^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~618~^0.721^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~619~^0.026^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~645~^0.639^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~646~^0.747^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08010~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08010~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08010~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08011~^~312~^0.119^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~404~^1.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~405~^1.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~406~^20.750^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~415~^2.140^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08011~^~605~^0.020^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~606~^3.080^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08011~^~608~^0.018^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~609~^0.228^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~610~^0.182^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~611~^1.360^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~612~^0.513^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~613~^0.630^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~614~^0.121^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~617~^0.627^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~618~^0.723^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~619~^0.027^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08011~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08011~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08011~^~645~^0.630^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08011~^~646~^0.750^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~312~^0.111^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~404~^1.530^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08012~^~405~^1.732^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08012~^~406~^20.360^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~ -~08012~^~415~^2.038^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08012~^~605~^0.018^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~606~^3.920^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~608~^0.016^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~609~^0.199^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~610~^0.159^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~611~^1.202^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~612~^0.477^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~613~^1.174^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~614~^0.345^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~615~^0.090^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~617~^2.583^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~618~^2.126^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~619~^0.022^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~624~^0.196^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08012~^~626~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~628~^0.056^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08012~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08012~^~645~^2.641^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~646~^2.148^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08012~^~654~^0.063^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08013~^~312~^0.387^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~315~^3.563^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~404~^1.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~405~^0.100^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~406~^17.900^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~415~^1.790^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~606~^1.600^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~611~^0.027^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~612~^0.014^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~613~^1.270^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~614~^0.117^3^0.001^~1~^~A~^^^1^0.115^0.119^2^0.112^0.123^~2, 3~^~04/01/2017~ -~08013~^~617~^2.278^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~618~^2.190^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~619~^0.068^3^0.001^~1~^~AS~^^^1^0.067^0.070^2^0.065^0.072^~2, 3~^~04/01/2017~ -~08013~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~626~^0.012^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~628~^0.045^3^0.001^~1~^~A~^^^1^0.044^0.046^2^0.042^0.048^~2, 3~^~04/01/2017~ -~08013~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~ -~08013~^~645~^2.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08013~^~646~^2.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~ -~08015~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~405~^1.500^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~406~^17.200^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08015~^~605~^0.100^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08015~^~606~^3.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08015~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~609~^0.144^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~610~^0.144^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~611~^1.200^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~612~^0.489^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~613~^0.728^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~614~^0.889^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~617~^0.198^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~618~^0.085^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~619~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08015~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~626~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08015~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08015~^~645~^0.200^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08015~^~646~^0.100^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08018~^~312~^0.117^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~315~^0.359^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~404~^0.506^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08018~^~405~^1.730^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~ -~08018~^~406~^20.389^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08018~^~410~^0.266^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~415~^2.038^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08018~^~605~^0.010^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~606~^2.030^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~608~^0.013^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~609~^0.160^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~610~^0.128^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~611~^0.951^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~612~^0.359^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~613~^0.330^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~614~^0.081^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~617~^0.772^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~618~^1.195^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~619~^0.035^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08018~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08018~^~645~^0.776^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08018~^~646~^1.230^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08025~^~312~^0.149^3^0.000^~1~^~A~^^^1^0.149^0.149^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~315~^1.100^3^0.000^~1~^~A~^^^1^1.100^1.100^^^^~2, 3~^~04/01/2005~ -~08025~^~404~^2.050^3^0.117^~1~^~A~^^^1^1.820^2.200^2^1.548^2.552^~2, 3~^~04/01/2005~ -~08025~^~405~^1.288^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~406~^28.967^3^0.176^~1~^~A~^^^1^28.700^29.300^2^28.208^29.725^~2, 3~^~04/01/2005~ -~08025~^~410~^0.317^3^0.005^~1~^~A~^^^1^0.312^0.326^2^0.297^0.337^~2, 3~^~04/01/2005~ -~08025~^~415~^1.937^3^0.088^~1~^~A~^^^1^1.800^2.100^2^1.560^2.314^~2, 3~^~04/01/2005~ -~08025~^~501~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~502~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~503~^0.301^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~504~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~505~^0.171^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~506~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~507~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~508~^0.402^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~509~^0.241^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~510~^0.437^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~511~^0.538^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~512~^0.166^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~513~^0.422^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~514~^1.115^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~515~^1.381^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~516~^0.326^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~517~^0.412^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~518~^0.367^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08025~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08025~^~606~^0.360^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08025~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08025~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08025~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~612~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~04/01/2005~ -~08025~^~613~^0.273^3^0.003^~1~^~A~^^^1^0.270^0.280^2^0.259^0.288^~2, 3~^~04/01/2005~ -~08025~^~614~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~04/01/2005~ -~08025~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~617~^0.243^3^0.003^~1~^~A~^^^1^0.240^0.250^2^0.229^0.258^~2, 3~^~04/01/2005~ -~08025~^~618~^0.293^3^0.003^~1~^~A~^^^1^0.290^0.300^2^0.279^0.308^~2, 3~^~04/01/2005~ -~08025~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~645~^0.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08025~^~646~^0.293^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08025~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08025~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08029~^~312~^0.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08029~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~405~^1.400^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~406~^16.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08029~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08029~^~606~^0.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08029~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~613~^0.363^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~614~^0.021^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~617~^0.288^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~618~^1.111^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~619~^0.087^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~620~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~626~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~628~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08029~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08029~^~645~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08029~^~646~^1.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08034~^~312~^0.140^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~404~^1.390^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~405~^1.570^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~406~^18.520^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~415~^1.850^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08034~^~605~^0.090^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~606~^3.600^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08034~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~609~^0.155^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~610~^0.155^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~611~^1.294^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~612~^0.527^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~613~^0.655^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~614~^0.812^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~617~^0.159^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08034~^~618~^0.084^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08034~^~619~^0.016^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08034~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~626~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08034~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08034~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08034~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08034~^~645~^0.160^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08034~^~646~^0.120^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08037~^~312~^0.647^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~315~^3.996^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~404~^0.548^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~405~^0.354^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~406~^2.739^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~410~^0.752^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~415~^0.370^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~501~^0.186^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~502~^0.479^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~503~^0.546^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~504~^0.977^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~505~^0.631^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~506~^0.225^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~507~^0.302^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~508~^0.668^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~509~^0.379^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~510~^0.698^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~511~^1.279^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~512~^0.349^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~513~^0.694^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~514~^1.396^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~515~^3.111^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~516~^0.812^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~517~^0.658^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~518~^0.668^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~521~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~605~^0.023^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~606~^3.957^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~608~^0.015^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~609~^0.169^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~610~^0.132^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~611~^0.993^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~612~^0.374^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~613~^1.593^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~614~^0.525^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~615~^0.053^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~617~^10.803^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~618~^7.194^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~619~^0.611^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~624~^0.063^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~626~^0.059^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~627~^0.002^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~628~^0.083^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~629~^0.002^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~630~^0.004^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~08037~^~645~^10.951^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~646~^7.809^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~ -~08037~^~654~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08037~^~858~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~08038~^~312~^0.340^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~315~^3.236^12^0.063^~1~^~A~^^^1^2.810^3.700^11^3.098^3.374^~2, 3~^~04/01/2007~ -~08038~^~404~^0.650^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08038~^~405~^0.120^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08038~^~406~^8.620^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08038~^~410~^0.872^4^0.016^~1~^~A~^^^1^0.840^0.900^3^0.822^0.923^~2, 3~^~04/01/2007~ -~08038~^~415~^0.860^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08038~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08038~^~606~^0.340^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08038~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~613~^0.309^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~614~^0.014^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~617~^0.189^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~618~^0.720^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~619~^0.061^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~628~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2013~ -~08038~^~645~^0.210^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~646~^0.780^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08038~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~857~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08038~^~858~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08039~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08039~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~405~^1.500^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~406~^17.200^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08039~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~606~^0.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~613~^0.417^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~614~^0.058^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~617~^1.476^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~618~^1.372^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~619~^0.128^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~628~^0.018^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~630~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08039~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08039~^~645~^1.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08039~^~646~^1.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08046~^~312~^0.130^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~404~^1.170^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~405~^1.330^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~406~^15.620^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~415~^1.560^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2015~ -~08046~^~605~^0.010^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~606~^1.290^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08046~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~611~^0.018^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~612~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08046~^~613~^1.083^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~614~^0.104^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~617~^0.598^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08046~^~618~^0.875^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~08046~^~619~^0.035^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08046~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08046~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08046~^~645~^0.600^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08046~^~646~^0.910^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08047~^~312~^0.091^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~315~^0.412^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~404~^1.268^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~405~^1.425^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~406~^16.842^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~410~^0.560^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08047~^~415~^1.672^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08047~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08047~^~606~^1.584^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~608~^0.009^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08047~^~609~^0.116^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~610~^0.093^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~611~^0.691^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~612~^0.261^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~613~^0.332^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~614~^0.073^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~617~^0.639^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~618~^1.085^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~619~^0.032^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08047~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08047~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08047~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08047~^~645~^0.644^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08047~^~646~^1.117^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08049~^~312~^0.277^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~315~^2.333^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~404~^1.280^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~405~^1.490^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~406~^17.180^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~410~^0.717^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~415~^1.800^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08049~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08049~^~606~^0.830^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08049~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2011~ -~08049~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~612~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~613~^0.755^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~614~^0.055^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~617~^1.472^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~618~^1.358^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08049~^~619~^0.062^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08049~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~626~^0.007^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08049~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2011~ -~08049~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08049~^~645~^1.480^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08049~^~646~^1.420^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08054~^~312~^0.312^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~404~^0.411^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~405~^0.289^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~406~^2.308^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~415~^0.231^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08054~^~605~^0.130^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08054~^~606~^1.240^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08054~^~607~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~611~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~613~^0.891^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~614~^0.222^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~615~^0.050^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~617~^6.458^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~618~^2.145^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~619~^0.535^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08054~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08054~^~624~^0.025^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~626~^0.025^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08054~^~628~^0.116^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08054~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08054~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08054~^~645~^6.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08054~^~646~^2.680^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08054~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08054~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08059~^~312~^0.069^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~315~^0.326^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~404~^1.529^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08059~^~405~^1.732^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08059~^~406~^20.382^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08059~^~415~^2.037^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08059~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08059~^~606~^4.442^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~608~^0.030^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~609~^0.369^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~610~^0.295^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~611~^2.197^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~612~^0.828^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~613~^0.556^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~614~^0.158^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~617~^0.692^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~618~^0.831^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~619~^0.023^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~626~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08059~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08059~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08059~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08059~^~645~^0.695^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08059~^~646~^0.854^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08061~^~312~^0.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08061~^~315~^3.210^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08061~^~404~^0.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~405~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~406~^8.500^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~410~^0.206^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08061~^~415~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08061~^~501~^0.116^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~502~^0.206^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~503~^0.206^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~504~^0.413^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~505~^0.157^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~506~^0.083^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~507~^0.149^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~508~^0.305^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~509~^0.083^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~510~^0.289^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~511~^0.347^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~512~^0.149^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~513~^0.272^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~514~^0.388^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~515~^1.634^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~516~^0.297^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~517~^0.561^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~518~^0.297^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08061~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2013~ -~08061~^~606~^0.296^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08061~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08061~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08061~^~609~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~610~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~611~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~612~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~613~^0.273^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~615~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~617~^0.341^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~618~^0.735^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~619~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~08061~^~620~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~621~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~624~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~625~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~626~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~627~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~08061~^~629~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~630~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~631~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~645~^0.349^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08061~^~646~^0.796^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08061~^~652~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~653~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~654~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~672~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~687~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~689~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08061~^~697~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08066~^~312~^0.239^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~404~^0.441^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08066~^~405~^0.265^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08066~^~406~^3.525^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08066~^~415~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08066~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~606~^0.325^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08066~^~607~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~608~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~609~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~610~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~611~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~612~^0.007^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08066~^~613~^0.296^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~614~^0.022^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~617~^0.178^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~618~^0.285^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~ -~08066~^~619~^0.060^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08066~^~620~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~621~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~626~^0.002^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~ -~08066~^~627~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~628~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~629~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~630~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~631~^0.000^0^^~4~^~BFSN~^~20444~^~N~^^^^^^^^~07/01/2003~ -~08066~^~645~^0.180^0^^~9~^~MC~^^^^^^^^^^~07/01/2003~ -~08066~^~646~^0.345^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08073~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~404~^1.400^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~405~^1.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~406~^18.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~415~^1.900^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2013~ -~08073~^~606~^0.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08073~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~613~^0.191^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~614~^0.009^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~617~^0.579^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~618~^0.562^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~619~^0.038^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08073~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~628~^0.021^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08073~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08073~^~645~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~646~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08073~^~653~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~08074~^~312~^0.429^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~315~^2.700^3^0.058^~1~^~A~^^^1^2.600^2.800^2^2.452^2.948^~2, 3~^~04/01/2005~ -~08074~^~404~^1.339^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~405~^1.518^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~406~^17.857^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~410~^0.393^3^0.009^~1~^~A~^^^1^0.381^0.410^2^0.356^0.430^~2, 3~^~04/01/2005~ -~08074~^~415~^1.786^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08074~^~501~^0.148^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~502~^0.413^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~503~^0.444^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~504~^0.851^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~505~^0.368^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~506~^0.148^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~507~^0.256^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~508~^0.652^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~509~^0.266^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~510~^0.603^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~511~^0.685^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~512~^0.235^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~513~^0.573^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~514~^1.475^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~515~^2.352^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~516~^0.552^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~517~^0.763^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~518~^0.540^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~606~^0.926^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~ -~08074~^~607~^0.000^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2007~ -~08074~^~608~^0.000^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2007~ -~08074~^~609~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~610~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~611~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~612~^0.015^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~02/01/2014~ -~08074~^~613~^0.844^3^0.028^~1~^~A~^^^1^0.900^0.990^2^0.811^1.056^~2, 3~^~02/01/2014~ -~08074~^~614~^0.066^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~02/01/2014~ -~08074~^~615~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~617~^1.718^3^0.050^~1~^~A~^^^1^1.630^1.780^2^1.465^1.895^~2, 3~^~02/01/2014~ -~08074~^~618~^1.719^3^0.061^~1~^~A~^^^1^1.720^1.920^2^1.537^2.063^~2, 3~^~02/01/2014~ -~08074~^~619~^0.060^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~02/01/2014~ -~08074~^~620~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~621~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~624~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~625~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~626~^0.000^2^^~1~^~A~^^~N~^1^0.000^0.000^^^^~1~^~04/01/2005~ -~08074~^~627~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~628~^0.041^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~02/01/2014~ -~08074~^~629~^0.006^3^0.007^~1~^~A~^^^1^0.000^0.020^2^-0.022^0.035^~1, 2, 3~^~02/01/2014~ -~08074~^~630~^0.028^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~02/01/2014~ -~08074~^~631~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~645~^1.786^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~646~^1.786^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08074~^~652~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~653~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~654~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~671~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~672~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~687~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~689~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~697~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~857~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08074~^~858~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08081~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08081~^~404~^0.600^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~405~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~406~^8.500^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~410~^0.826^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~415~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08081~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~606~^0.400^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~613~^0.336^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~614~^0.037^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~617~^1.127^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~618~^1.125^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~619~^0.073^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~620~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~626~^0.065^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~628~^0.006^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08081~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~ -~08081~^~645~^1.200^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08081~^~646~^1.200^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08083~^~312~^0.058^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~404~^2.420^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~405~^2.740^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~406~^32.250^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~415~^3.230^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08083~^~605~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08083~^~606~^0.093^1^^~12~^~MA~^^^^^^^^^^~03/01/2013~ -~08083~^~607~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~608~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~609~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~610~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2013~ -~08083~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2013~ -~08083~^~613~^0.077^0^^~4~^~FLA~^^^^^^^^^^~03/01/2013~ -~08083~^~614~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/2013~ -~08083~^~617~^0.084^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08083~^~618~^0.153^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08083~^~619~^0.005^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08083~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~626~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08083~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08083~^~645~^0.084^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~646~^0.157^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08083~^~696~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2015~ -~08084~^~312~^0.620^9^0.110^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~315~^19.956^4^0.282^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~404~^1.670^10^0.069^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~405~^0.820^10^0.025^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~406~^5.590^12^0.224^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~410~^1.387^9^0.184^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~415~^0.978^12^0.072^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~501~^0.398^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~502~^1.218^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~503~^1.066^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~504~^1.976^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~505~^1.847^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~506~^0.574^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~507~^0.576^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~508~^1.168^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~509~^0.885^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~510~^1.507^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~511~^2.348^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~512~^0.810^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~513~^1.858^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~514~^2.604^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~515~^5.026^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~516~^1.791^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~517~^1.549^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~518~^1.386^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~606~^1.830^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~612~^0.010^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~613~^1.750^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~614~^0.060^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~617~^1.470^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~618~^5.820^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~619~^0.800^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~626~^0.040^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08084~^~645~^1.500^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08084~^~646~^6.620^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08085~^~312~^0.720^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~315~^15.880^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~404~^1.340^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~405~^0.690^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~406~^4.730^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~410~^1.100^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~415~^0.500^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~606~^1.360^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~611~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~612~^0.010^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08085~^~613~^1.310^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~614~^0.039^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~617~^1.011^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~618~^4.293^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~619~^0.547^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~626~^0.027^0^^~4~^~FLM~^^^^^^^^^^~07/01/2014~ -~08085~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08085~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~12/01/2002~ -~08085~^~645~^1.040^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08085~^~646~^4.840^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08090~^~312~^0.030^6^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~315~^0.145^6^0.017^~1~^~A~^^^1^0.063^0.170^5^0.101^0.190^~2, 3~^~11/01/2008~ -~08090~^~404~^1.271^6^0.471^~1~^~A~^^^1^0.441^3.090^5^0.060^2.481^~2, 3~^~05/01/2009~ -~08090~^~405~^0.339^6^0.023^~1~^~A~^^^1^0.283^0.448^5^0.279^0.399^~2, 3~^~05/01/2009~ -~08090~^~406~^4.465^6^0.226^~1~^~A~^^^1^3.930^5.480^5^3.885^5.045^~2, 3~^~05/01/2009~ -~08090~^~410~^0.253^6^0.011^~1~^~A~^^^1^0.219^0.290^5^0.224^0.281^~2, 3~^~11/01/2008~ -~08090~^~415~^0.233^6^0.038^~1~^~A~^^^1^0.064^0.315^5^0.136^0.330^~2, 3~^~11/01/2008~ -~08090~^~501~^0.057^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~502~^0.277^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~503~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~504~^1.154^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~505~^0.156^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~506~^0.182^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~507~^0.172^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~508~^0.444^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~509~^0.175^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~510~^0.383^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~511~^0.282^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~512~^0.234^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~513~^0.670^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~514~^0.508^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~515~^1.716^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~516~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~517~^0.883^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~518~^0.375^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08090~^~606~^0.340^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08090~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08090~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~612~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~613~^0.307^6^0.016^~1~^~A~^^^1^0.230^0.340^5^0.266^0.347^~2, 3~^~11/01/2008~ -~08090~^~614~^0.033^6^0.003^~1~^~A~^^^1^0.020^0.040^5^0.025^0.042^~2, 3~^~11/01/2008~ -~08090~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~617~^0.315^6^0.034^~1~^~A~^^^1^0.160^0.400^5^0.227^0.402^~2, 3~^~11/01/2008~ -~08090~^~618~^0.847^6^0.074^~1~^~A~^^^1^0.490^1.000^5^0.657^1.036^~2, 3~^~11/01/2008~ -~08090~^~619~^0.028^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.024^0.033^~2, 3~^~11/01/2008~ -~08090~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~626~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~628~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~630~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~645~^0.315^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08090~^~646~^0.875^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08090~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~653~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08090~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~312~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~315~^0.037^12^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~404~^0.086^12^0.008^~1~^~A~^^^1^0.049^0.148^8^0.067^0.105^~2, 3~^~05/01/2009~ -~08091~^~405~^0.058^12^0.003^~1~^~A~^^^1^0.038^0.079^8^0.051^0.066^~2, 3~^~05/01/2009~ -~08091~^~406~^0.799^12^0.068^~1~^~A~^^^1^0.333^1.250^9^0.645^0.954^~2, 3~^~05/01/2009~ -~08091~^~410~^0.046^12^0.001^~1~^~A~^^^1^0.038^0.053^10^0.043^0.049^~2, 3~^~11/01/2008~ -~08091~^~415~^0.046^12^0.005^~1~^~A~^^^1^0.016^0.075^7^0.034^0.057^~1, 2, 3~^~11/01/2008~ -~08091~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~502~^0.053^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~503~^0.056^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~504~^0.211^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~505~^0.033^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~507~^0.033^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~508~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~509~^0.066^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~510~^0.079^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~511~^0.065^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~512~^0.050^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~513~^0.127^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~514~^0.098^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~515~^0.326^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~516~^0.048^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~517~^0.154^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~518~^0.076^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~08091~^~606~^0.066^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08091~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08091~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~612~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~613~^0.062^12^0.003^~1~^~A~^^^1^0.040^0.080^8^0.053^0.070^~2, 3~^~11/01/2008~ -~08091~^~614~^0.004^12^0.002^~1~^~A~^^^1^0.000^0.010^10^0.001^0.008^~1, 2, 3~^~11/01/2008~ -~08091~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~617~^0.064^12^0.006^~1~^~A~^^^1^0.030^0.100^8^0.051^0.077^~2, 3~^~11/01/2008~ -~08091~^~618~^0.165^12^0.013^~1~^~A~^^^1^0.080^0.240^9^0.136^0.194^~2, 3~^~11/01/2008~ -~08091~^~619~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~620~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~626~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~628~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~630~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~645~^0.064^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08091~^~646~^0.165^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08091~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~653~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~672~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08091~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08092~^~312~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~315~^0.205^4^0.019^~1~^~A~^^^1^0.170^0.260^3^0.143^0.267^~2, 3~^~12/01/2008~ -~08092~^~404~^1.946^4^0.664^~1~^~A~^^^1^0.832^3.540^3^-0.165^4.058^~2, 3~^~12/01/2008~ -~08092~^~405~^0.697^4^0.007^~1~^~A~^^^1^0.686^0.717^3^0.675^0.719^~2, 3~^~12/01/2008~ -~08092~^~406~^9.002^4^0.259^~1~^~A~^^^1^8.410^9.670^3^8.179^9.826^~2, 3~^~12/01/2008~ -~08092~^~410~^0.242^4^0.005^~1~^~A~^^^1^0.233^0.254^3^0.227^0.257^~2, 3~^~12/01/2008~ -~08092~^~415~^0.140^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08092~^~606~^0.362^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08092~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~08092~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~ -~08092~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~613~^0.322^4^0.013^~1~^~A~^^^1^0.300^0.360^3^0.281^0.364^~2, 3~^~12/01/2008~ -~08092~^~614~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~12/01/2008~ -~08092~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~617~^0.395^4^0.021^~1~^~A~^^^1^0.350^0.430^3^0.329^0.461^~2, 3~^~12/01/2008~ -~08092~^~618~^0.937^4^0.048^~1~^~A~^^^1^0.840^1.050^3^0.786^1.089^~2, 3~^~12/01/2008~ -~08092~^~619~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~12/01/2008~ -~08092~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~645~^0.395^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08092~^~646~^0.967^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08092~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08092~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~312~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~315~^0.049^8^0.005^~1~^~A~^^^1^0.037^0.069^5^0.036^0.063^~1, 2, 3~^~12/01/2008~ -~08093~^~404~^0.143^8^0.013^~1~^~A~^^^1^0.089^0.190^4^0.106^0.180^~2, 3~^~05/01/2009~ -~08093~^~405~^0.135^8^0.003^~1~^~A~^^^1^0.117^0.160^5^0.128^0.142^~2, 3~^~05/01/2009~ -~08093~^~406~^1.672^8^0.040^~1~^~A~^^^1^1.430^1.850^4^1.562^1.783^~2, 3~^~05/01/2009~ -~08093~^~410~^0.052^8^0.004^~1~^~A~^^^1^0.033^0.064^5^0.041^0.062^~1, 2, 3~^~12/01/2008~ -~08093~^~415~^0.028^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~ -~08093~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~502~^0.052^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~503~^0.058^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~504~^0.228^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~505~^0.031^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~507~^0.034^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~508~^0.087^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~509~^0.054^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~510~^0.077^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~511~^0.060^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~512~^0.048^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~513~^0.131^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~514~^0.097^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~515~^0.337^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~516~^0.052^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~517~^0.179^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~518~^0.070^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~08093~^~606~^0.076^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08093~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~612~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~613~^0.067^8^0.002^~1~^~A~^^^1^0.050^0.080^6^0.063^0.072^~2, 3~^~12/01/2008~ -~08093~^~614~^0.009^8^0.003^~1~^~A~^^^1^0.000^0.030^4^0.001^0.016^~1, 2, 3~^~12/01/2008~ -~08093~^~615~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~617~^0.081^8^0.003^~1~^~A~^^^1^0.060^0.110^4^0.074^0.089^~2, 3~^~12/01/2008~ -~08093~^~618~^0.191^8^0.004^~1~^~A~^^^1^0.150^0.240^6^0.181^0.202^~2, 3~^~12/01/2008~ -~08093~^~619~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~620~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~626~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~628~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~630~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~645~^0.081^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08093~^~646~^0.191^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08093~^~652~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~653~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~654~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~687~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08093~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08094~^~312~^0.031^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~315~^0.136^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~404~^0.740^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~405~^0.670^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~406~^7.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08094~^~410~^0.277^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~415~^0.170^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~606~^1.330^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~607~^0.050^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~608~^0.025^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~609~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~610~^0.029^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~611~^0.026^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~612~^0.161^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~613~^0.726^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~614~^0.253^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~617~^2.660^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~618~^0.981^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~619~^0.068^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~626~^0.150^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08094~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08094~^~645~^2.880^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08094~^~646~^1.050^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08096~^~404~^0.780^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~405~^0.710^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~406~^8.370^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08096~^~415~^0.140^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08096~^~606~^0.240^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~ -~08096~^~645~^0.400^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08096~^~646~^0.870^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08100~^~312~^0.244^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~315~^1.033^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~404~^0.510^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~405~^0.130^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~406~^7.460^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~08100~^~410~^0.550^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08100~^~415~^0.195^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08100~^~501~^0.092^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~502~^0.314^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~503~^0.332^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~504~^0.520^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~505~^0.265^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~506~^0.187^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~507~^0.107^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~508~^0.267^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~509~^0.351^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~510~^0.407^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~511~^0.513^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~512~^0.189^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~513~^0.259^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~514~^0.576^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~515~^1.004^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~516~^0.362^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~517~^0.263^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~518~^0.284^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08100~^~606~^0.136^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~613~^0.122^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~614~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~617~^0.154^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~618~^0.111^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~619~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~645~^0.156^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08100~^~646~^0.134^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08102~^~312~^0.206^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~404~^0.500^0^^~5~^^^^^^^^^^^~10/01/2008~ -~08102~^~405~^0.200^0^^~5~^^^^^^^^^^^~10/01/2008~ -~08102~^~406~^4.200^0^^~5~^^^^^^^^^^^~10/01/2008~ -~08102~^~410~^0.518^4^0.017^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~415~^0.108^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08102~^~501~^0.145^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~502~^0.330^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~503~^0.461^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~504~^0.796^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~505~^0.271^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~506~^0.196^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~507~^0.237^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~508~^0.568^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~509~^0.334^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~510~^0.510^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~511~^0.455^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~512~^0.242^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~513~^0.367^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~514~^0.495^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~515~^3.903^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~516~^0.406^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~517~^1.285^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~518~^0.593^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08102~^~606~^0.238^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~613~^0.223^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~614~^0.014^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~617~^0.200^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~618~^0.741^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~619~^0.088^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~645~^0.205^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08102~^~646~^0.829^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~08103~^~312~^0.040^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~315~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~404~^0.055^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~405~^0.025^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~406~^0.520^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~410~^0.071^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~415~^0.013^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~501~^0.020^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~502~^0.045^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~503~^0.063^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~504~^0.110^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~505~^0.037^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~506~^0.027^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~507~^0.033^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~508~^0.078^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~509~^0.046^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~510~^0.070^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~511~^0.063^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~512~^0.033^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~513~^0.050^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~514~^0.068^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~515~^0.537^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~516~^0.056^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~517~^0.177^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~518~^0.082^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~606~^0.033^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~612~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~613~^0.031^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~614~^0.002^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~617~^0.028^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~618~^0.102^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~619~^0.012^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~626~^0.001^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~645~^0.028^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08103~^~646~^0.114^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08104~^~312~^0.203^11^0.004^~1~^~A~^^^1^0.176^0.221^10^0.194^0.212^~2, 3~^~10/01/2008~ -~08104~^~315~^1.298^11^0.043^~1~^~A~^^^1^1.040^1.510^10^1.201^1.395^~2, 3~^~10/01/2008~ -~08104~^~404~^1.009^11^0.135^~1~^~A~^^^1^0.650^1.740^10^0.707^1.311^~2, 3~^~10/01/2008~ -~08104~^~405~^0.563^11^0.090^~1~^~A~^^^1^0.260^1.030^10^0.362^0.763^~2, 3~^~10/01/2008~ -~08104~^~406~^13.700^11^3.372^~1~^~A~^^^1^5.200^32.100^10^6.186^21.214^~2, 3~^~10/01/2008~ -~08104~^~410~^0.607^11^0.014^~1~^~A~^^^1^0.520^0.680^10^0.576^0.638^~2, 3~^~10/01/2008~ -~08104~^~415~^0.463^10^0.253^~1~^~A~^^^1^0.080^2.300^9^-0.110^1.036^~2, 3~^~10/01/2008~ -~08104~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~502~^0.217^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~503~^0.418^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~504~^0.851^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~505~^0.295^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~506~^0.185^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~507~^0.164^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~508~^0.565^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~509~^0.171^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~510~^0.519^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~511~^0.460^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~512~^0.254^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~513~^0.371^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~514~^0.537^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~515~^4.115^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~516~^0.457^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~517~^1.811^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~518~^0.602^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~08104~^~521~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~606~^0.232^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~609~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~610~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~612~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.011^10^0.001^0.005^~2, 3~^~10/01/2008~ -~08104~^~613~^0.202^11^0.007^~1~^~A~^^^1^0.170^0.265^10^0.185^0.219^~2, 3~^~10/01/2008~ -~08104~^~614~^0.018^11^0.004^~1~^~A~^^^1^0.012^0.056^10^0.010^0.027^~2, 3~^~10/01/2008~ -~08104~^~615~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.002^~1, 2, 3~^~10/01/2008~ -~08104~^~617~^0.141^11^0.010^~1~^~AS~^^^1^0.116^0.235^10^0.120^0.163^~2, 3~^~10/01/2008~ -~08104~^~618~^0.590^11^0.009^~1~^~AS~^^^1^0.529^0.650^10^0.570^0.611^~2, 3~^~10/01/2008~ -~08104~^~619~^0.036^11^0.001^~1~^~AS~^^^1^0.031^0.039^10^0.034^0.037^~2, 3~^~10/01/2008~ -~08104~^~620~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~10/01/2008~ -~08104~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~624~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.003^~2, 3~^~10/01/2008~ -~08104~^~625~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~08104~^~626~^0.002^11^0.001^~1~^~AS~^^^1^0.000^0.009^10^0.000^0.003^~2, 3~^~10/01/2008~ -~08104~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~628~^0.006^11^0.000^~1~^~A~^^^1^0.005^0.007^10^0.006^0.006^~2, 3~^~10/01/2008~ -~08104~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.001^10^0.000^0.001^~2, 3~^~10/01/2008~ -~08104~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~645~^0.150^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~646~^0.627^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~652~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.001^0.002^~2, 3~^~10/01/2008~ -~08104~^~653~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.002^~1, 2, 3~^~10/01/2008~ -~08104~^~654~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.003^~2, 3~^~10/01/2008~ -~08104~^~663~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.015^10^-0.001^0.005^~1, 2, 3~^~10/01/2008~ -~08104~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~665~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~08104~^~670~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~672~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~08104~^~673~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.009^10^0.000^0.003^~1, 2, 3~^~10/01/2008~ -~08104~^~674~^0.139^11^0.008^~1~^~A~^^^1^0.116^0.220^10^0.121^0.158^~2, 3~^~10/01/2008~ -~08104~^~675~^0.590^11^0.009^~1~^~A~^^^1^0.529^0.650^10^0.569^0.611^~2, 3~^~10/01/2008~ -~08104~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~08104~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~687~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~08104~^~689~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2008~ -~08104~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~08104~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~851~^0.036^11^0.001^~1~^~A~^^^1^0.031^0.039^10^0.034^0.037^~2, 3~^~10/01/2008~ -~08104~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~853~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08104~^~858~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~08105~^~312~^0.041^26^0.002^~1~^~A~^^^1^0.027^0.081^25^0.037^0.045^~2, 3~^~11/01/2008~ -~08105~^~315~^0.196^26^0.009^~1~^~A~^^^1^0.095^0.280^25^0.178^0.214^~2, 3~^~11/01/2008~ -~08105~^~404~^0.126^26^0.013^~1~^~A~^^^1^0.040^0.260^25^0.099^0.153^~2, 3~^~11/01/2008~ -~08105~^~405~^0.065^26^0.009^~1~^~A~^^^1^0.020^0.180^25^0.046^0.084^~2, 3~^~11/01/2008~ -~08105~^~406~^1.493^25^0.227^~1~^~A~^^^1^0.340^3.900^24^1.025^1.961^~2, 3~^~11/01/2008~ -~08105~^~410~^0.256^26^0.018^~1~^~A~^^^1^0.150^0.540^25^0.218^0.293^~2, 3~^~11/01/2008~ -~08105~^~415~^0.096^26^0.020^~1~^~A~^^^1^0.020^0.300^25^0.053^0.138^~1, 2, 3~^~11/01/2008~ -~08105~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~502~^0.051^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~503~^0.077^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~504~^0.151^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~505~^0.092^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~506~^0.038^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~507~^0.042^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~508~^0.107^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~509~^0.071^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~510~^0.103^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~511~^0.074^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~512~^0.041^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~513~^0.082^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~514~^0.107^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~515~^0.755^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~516~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~517~^0.350^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~518~^0.115^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08105~^~521~^0.000^21^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~606~^0.066^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~607~^0.000^23^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~608~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~609~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~610~^0.000^24^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~611~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.002^24^0.000^0.001^~1, 2, 3~^~11/01/2008~ -~08105~^~612~^0.001^25^0.000^~1~^~A~^^^1^0.000^0.003^24^0.000^0.001^~1, 2, 3~^~11/01/2008~ -~08105~^~613~^0.056^25^0.002^~1~^~A~^^^1^0.035^0.072^24^0.053^0.059^~2, 3~^~11/01/2008~ -~08105~^~614~^0.008^25^0.001^~1~^~A~^^^1^0.004^0.017^24^0.007^0.009^~2, 3~^~11/01/2008~ -~08105~^~615~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~617~^0.036^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08105~^~618~^0.119^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08105~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08105~^~620~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.001^24^0.000^0.000^~1, 2, 3~^~11/01/2008~ -~08105~^~621~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~624~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.001^24^0.000^0.000^~1, 2, 3~^~11/01/2008~ -~08105~^~625~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~08105~^~627~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~628~^0.001^25^0.000^~1~^~A~^^^1^0.000^0.008^24^0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08105~^~629~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~630~^0.000^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~ -~08105~^~631~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~645~^0.038^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~646~^0.126^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~652~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.001^24^0.000^0.000^~1, 2, 3~^~11/01/2008~ -~08105~^~653~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.001^24^0.000^0.000^~1, 2, 3~^~11/01/2008~ -~08105~^~654~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~663~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~664~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~665~^0.030^25^0.011^~1~^~A~^^^1^0.000^0.136^24^0.008^0.053^~1, 2, 3~^~11/01/2008~ -~08105~^~670~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~671~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.002^24^0.000^0.001^~1, 2, 3~^~11/01/2008~ -~08105~^~672~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~673~^0.001^25^0.000^~1~^~A~^^^1^0.000^0.005^24^0.000^0.001^~1, 2, 3~^~11/01/2008~ -~08105~^~674~^0.036^25^0.002^~1~^~A~^^^1^0.019^0.068^24^0.032^0.040^~2, 3~^~11/01/2008~ -~08105~^~675~^0.089^25^0.011^~1~^~A~^^^1^0.000^0.149^24^0.067^0.111^~1, 2, 3~^~11/01/2008~ -~08105~^~676~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~685~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~687~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~689~^0.000^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~ -~08105~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08105~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08105~^~697~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~851~^0.007^25^0.000^~1~^~A~^^^1^0.000^0.009^24^0.006^0.007^~1, 2, 3~^~11/01/2008~ -~08105~^~852~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~853~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08105~^~858~^0.000^25^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08106~^~312~^0.216^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~404~^1.339^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~405~^1.214^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~406~^17.857^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~410~^0.474^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08106~^~415~^1.786^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~ -~08106~^~501~^0.145^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~502~^0.332^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~503~^0.460^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~504~^0.800^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~505~^0.272^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~506~^0.196^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~507~^0.238^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~508~^0.571^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~509~^0.335^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~510~^0.513^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~511~^0.457^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~512~^0.242^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~513~^0.369^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~514~^0.498^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~515~^3.928^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~516~^0.408^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~517~^1.289^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~518~^0.596^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08106~^~606~^0.222^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~613~^0.208^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~614~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~617~^0.188^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~618~^0.692^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~619~^0.082^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~645~^0.192^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08106~^~646~^0.774^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~08107~^~312~^0.043^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~315~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~404~^0.232^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~405~^0.210^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~406~^3.093^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~410~^0.082^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~415~^0.309^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~501~^0.025^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~502~^0.058^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~503~^0.080^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~504~^0.139^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~505~^0.047^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~506~^0.034^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~507~^0.041^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~508~^0.099^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~509~^0.058^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~510~^0.089^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~511~^0.079^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~512~^0.042^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~513~^0.064^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~514~^0.087^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~515~^0.683^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~516~^0.071^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~517~^0.224^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~518~^0.104^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08107~^~606~^0.038^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~613~^0.036^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~614~^0.002^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~617~^0.032^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~618~^0.120^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~619~^0.014^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~ -~08107~^~645~^0.033^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08107~^~646~^0.134^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~ -~08116~^~312~^0.105^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~404~^1.070^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~405~^0.730^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~406~^14.280^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~415~^1.130^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08116~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~03/01/2015~ -~08116~^~606~^0.080^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~613~^0.069^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~614~^0.008^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~617~^0.048^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~618~^0.227^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~619~^0.023^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08116~^~645~^0.050^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08116~^~646~^0.250^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08120~^~312~^0.391^4^0.008^~1~^~A~^^^1^0.370^0.409^3^0.365^0.417^~2, 3~^~10/01/2006~ -~08120~^~315~^3.630^5^0.001^~1~^^^^^^^^^^^~11/01/2006~ -~08120~^~404~^0.460^4^0.034^~1~^~A~^^^1^0.360^0.510^3^0.351^0.569^~2, 3~^~10/01/2006~ -~08120~^~405~^0.155^4^0.058^~1~^~A~^^^1^0.090^0.330^3^-0.031^0.341^~2, 3~^~10/01/2006~ -~08120~^~406~^1.125^4^0.048^~1~^~A~^^^1^1.000^1.200^3^0.973^1.277^~2, 3~^~10/01/2006~ -~08120~^~410~^1.120^4^0.066^~1~^~A~^^^1^0.980^1.300^3^0.909^1.331^~2, 3~^~10/01/2006~ -~08120~^~415~^0.100^4^0.004^~1~^~A~^^^1^0.090^0.110^3^0.087^0.113^~2, 3~^~10/01/2006~ -~08120~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~502~^0.382^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~503~^0.503^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~504~^0.980^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~505~^0.637^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~506~^0.207^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~507~^0.455^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~508~^0.665^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~509~^0.395^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~510~^0.688^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~511~^0.850^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~512~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~513~^0.563^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~514~^1.217^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~515~^2.830^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~516~^0.642^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~517~^0.451^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~518~^0.705^0^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~08120~^~606~^1.110^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~611~^0.020^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~612~^0.010^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~613~^0.940^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~614~^0.060^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~617~^1.970^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~618~^2.200^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~619~^0.100^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~626~^0.010^238^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~08120~^~645~^1.980^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08120~^~646~^2.300^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08121~^~312~^0.074^8^0.003^~1~^~A~^^^1^0.065^0.086^7^0.068^0.081^~2, 3~^~11/01/2006~ -~08121~^~315~^0.580^8^0.099^~1~^~A~^^^1^0.130^0.815^7^0.345^0.815^~2, 3~^~11/01/2006~ -~08121~^~404~^0.076^8^0.025^~1~^~A~^^^1^0.015^0.190^7^0.016^0.135^~1, 2, 3~^~11/01/2006~ -~08121~^~405~^0.016^8^0.006^~1~^~A~^^^1^0.000^0.050^7^0.002^0.030^~1, 2, 3~^~11/01/2006~ -~08121~^~406~^0.225^8^0.016^~1~^~A~^^^1^0.200^0.300^7^0.186^0.264^~2, 3~^~11/01/2006~ -~08121~^~410~^0.311^8^0.019^~1~^~A~^^^1^0.270^0.430^7^0.267^0.355^~2, 3~^~11/01/2006~ -~08121~^~415~^0.005^8^0.003^~1~^~A~^^^1^0.000^0.020^7^-0.003^0.013^~1, 2, 3~^~11/01/2006~ -~08121~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~502~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~503~^0.116^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~504~^0.216^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~505~^0.135^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~506~^0.046^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~507~^0.097^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~508~^0.142^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~509~^0.101^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~511~^0.167^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~512~^0.054^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~513~^0.124^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~514~^0.302^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~515~^0.623^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~516~^0.147^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~517~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~518~^0.151^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~08121~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~606~^0.310^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~607~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~608~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~609~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~610~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~611~^0.000^238^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~613~^0.280^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~614~^0.021^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~617~^0.422^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~08121~^~618~^0.541^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~08121~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~08121~^~620~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~621~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~625~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~12/01/2006~ -~08121~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~08121~^~627~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~629~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~630~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~631~^0.000^0^^~1~^^^~N~^^^^^^^^~12/01/2006~ -~08121~^~645~^0.435^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~646~^0.559^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~652~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~12/01/2006~ -~08121~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~663~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~12/01/2006~ -~08121~^~666~^0.001^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~674~^0.422^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~675~^0.540^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08121~^~687~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~12/01/2006~ -~08121~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~12/01/2006~ -~08121~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~08121~^~851~^0.018^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~312~^0.360^4^0.012^~1~^~A~^^^1^0.340^0.390^3^0.321^0.399^~2, 3~^~08/01/2012~ -~08122~^~315~^3.385^4^0.019^~1~^~A~^^^1^3.330^3.420^3^3.323^3.447^~2, 3~^~08/01/2012~ -~08122~^~404~^0.445^2^^~1~^~A~^^^1^0.430^0.460^1^^^^~08/01/2012~ -~08122~^~405~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~08/01/2012~ -~08122~^~406~^1.035^2^^~1~^~A~^^^1^1.000^1.070^1^^^^~08/01/2012~ -~08122~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~415~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~08/01/2012~ -~08122~^~501~^0.180^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~502~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~503~^0.495^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~504~^0.960^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~505~^0.675^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~506~^0.215^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~507~^0.435^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~508~^0.660^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~509~^0.380^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~510~^0.705^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~511~^0.839^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~512~^0.285^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~513~^0.555^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~514~^1.166^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~515~^2.730^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~516~^0.631^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~517~^0.389^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~518~^0.629^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~606~^1.346^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~613~^1.200^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~614~^0.110^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~617~^2.258^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~618~^2.448^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~619~^0.072^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~624~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~08122~^~626~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~628~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~645~^2.325^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~646~^2.533^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~08122~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08122~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~662~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~663~^0.008^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~664~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~665~^0.008^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~670~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~671~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~673~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~674~^2.250^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~675~^2.440^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~685~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~687~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08122~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08122~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08122~^~697~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~851~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~852~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08122~^~853~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08122~^~858~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~08/01/2012~ -~08123~^~312~^0.066^4^0.007^~1~^~A~^^^1^0.048^0.079^3^0.045^0.087^~2, 3~^~12/01/2006~ -~08123~^~315~^0.558^4^0.052^~1~^~A~^^^1^0.419^0.670^3^0.393^0.723^~2, 3~^~12/01/2006~ -~08123~^~404~^0.260^4^0.011^~1~^~A~^^^1^0.230^0.280^3^0.226^0.294^~2, 3~^~12/01/2006~ -~08123~^~405~^0.215^4^0.062^~1~^~A~^^^1^0.060^0.350^3^0.017^0.413^~2, 3~^~12/01/2006~ -~08123~^~406~^3.025^4^0.138^~1~^~A~^^^1^2.700^3.300^3^2.587^3.463^~2, 3~^~12/01/2006~ -~08123~^~410~^0.317^4^0.043^~1~^~A~^^^1^0.240^0.430^3^0.180^0.455^~2, 3~^~12/01/2006~ -~08123~^~415~^0.290^4^0.009^~1~^~A~^^^1^0.270^0.310^3^0.261^0.319^~2, 3~^~12/01/2006~ -~08123~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~502~^0.083^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~503~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~504~^0.200^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~505~^0.135^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~506~^0.040^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~507~^0.086^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~508~^0.130^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~509~^0.085^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~510~^0.151^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~511~^0.177^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~512~^0.057^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~513~^0.120^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~514~^0.272^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~515~^0.578^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~516~^0.140^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~517~^0.101^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~518~^0.137^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~08123~^~605~^0.003^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~606~^0.226^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~612~^0.002^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~613~^0.202^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~614~^0.018^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~615~^0.002^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~617~^0.379^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~618~^0.411^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~619~^0.012^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~626~^0.002^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~628~^0.008^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~630~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~645~^0.391^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~646~^0.426^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~653~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08123~^~687~^0.000^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08124~^~404~^0.730^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~405~^1.040^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~406~^12.210^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~415~^0.980^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08124~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08124~^~606~^0.880^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~645~^1.640^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08124~^~646~^1.360^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08128~^~312~^0.302^5^0.007^~1~^~A~^^^1^0.200^0.360^3^0.280^0.323^~2, 3~^~08/01/2012~ -~08128~^~315~^2.580^5^0.043^~1~^~A~^^^1^2.090^2.960^3^2.444^2.716^~2, 3~^~08/01/2012~ -~08128~^~404~^0.748^2^^~11~^~JO~^^~Y~^2^0.717^0.820^^^^^~08/01/2012~ -~08128~^~405~^0.749^2^^~11~^~JO~^^~Y~^2^0.600^0.813^^^^^~08/01/2012~ -~08128~^~406~^9.107^2^^~11~^~JO~^^~Y~^2^8.890^9.200^^^^^~08/01/2012~ -~08128~^~410~^0.883^2^^~1~^~A~^^^1^0.750^0.940^^^^^~08/01/2012~ -~08128~^~415~^0.882^2^^~11~^~JO~^^~Y~^2^0.862^0.930^^^^^~08/01/2012~ -~08128~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~606~^0.768^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~612~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~08/01/2012~ -~08128~^~613~^0.684^2^^~1~^~A~^^^1^0.600^0.720^^^^^~08/01/2012~ -~08128~^~614~^0.057^2^^~1~^~A~^^^1^0.050^0.060^^^^^~08/01/2012~ -~08128~^~615~^0.006^2^^~1~^~A~^^^1^0.005^0.006^^^^^~08/01/2012~ -~08128~^~617~^1.447^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~618~^1.636^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~624~^0.004^2^^~1~^~A~^^^1^0.003^0.004^^^^^~08/01/2012~ -~08128~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~628~^0.027^2^^~1~^~A~^^^1^0.020^0.030^^^^^~08/01/2012~ -~08128~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~645~^1.487^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~646~^1.696^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2012~ -~08128~^~653~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2012~ -~08128~^~654~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~08/01/2012~ -~08128~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~663~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~08/01/2012~ -~08128~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~665~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2012~ -~08128~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.001^^^^~1~^~08/01/2012~ -~08128~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~672~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~08/01/2012~ -~08128~^~673~^0.009^2^^~1~^~A~^^^1^0.008^0.010^^^^^~08/01/2012~ -~08128~^~674~^1.446^2^^~1~^~A~^^^1^1.250^1.530^^^^^~08/01/2012~ -~08128~^~675~^1.634^2^^~1~^~A~^^^1^1.480^1.700^^^^^~08/01/2012~ -~08128~^~676~^0.003^2^^~1~^~A~^^^1^0.002^0.004^^^^~1~^~08/01/2012~ -~08128~^~685~^0.002^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~08/01/2012~ -~08128~^~687~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~08/01/2012~ -~08128~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08128~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08128~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~851~^0.054^2^^~1~^~A~^^^1^0.040^0.060^^^^^~08/01/2012~ -~08128~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08128~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2012~ -~08129~^~312~^0.082^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~315~^0.643^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~404~^0.168^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~405~^0.177^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~406~^2.155^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~410~^0.220^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~415~^0.220^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~605~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~606~^0.191^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~611~^0.000^0^^~4~^~RP~^^~N~^^^^^^^^~08/01/2012~ -~08129~^~612~^0.003^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~613~^0.170^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~614~^0.014^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~617~^0.360^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~618~^0.408^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~619~^0.014^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~625~^0.000^0^^~4~^~RP~^^~N~^^^^^^^^~08/01/2012~ -~08129~^~626~^0.002^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~628~^0.007^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~630~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08129~^~645~^0.371^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08129~^~646~^0.422^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08130~^~312~^0.235^6^0.006^~1~^~A~^^^1^0.222^0.262^5^0.220^0.249^~2, 3~^~04/01/2014~ -~08130~^~315~^2.247^6^0.015^~1~^~A~^^^1^2.190^2.290^5^2.209^2.284^~2, 3~^~04/01/2014~ -~08130~^~404~^0.523^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2015~ -~08130~^~405~^0.907^3^0.003^~1~^~A~^^^1^0.900^0.910^2^0.892^0.921^~2, 3~^~04/01/2014~ -~08130~^~406~^10.667^3^0.176^~1~^~A~^^^1^10.400^11.000^2^9.908^11.426^~2, 3~^~04/01/2014~ -~08130~^~410~^0.735^2^^~1~^~A~^^^1^0.500^0.970^1^^^^~04/01/2014~ -~08130~^~415~^1.200^3^0.100^~1~^~A~^^^1^1.100^1.400^2^0.770^1.630^~2, 3~^~04/01/2014~ -~08130~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~606~^0.793^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~609~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~04/01/2014~ -~08130~^~610~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~04/01/2014~ -~08130~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~612~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2014~ -~08130~^~613~^0.688^3^0.020^~1~^~A~^^^1^0.659^0.727^2^0.601^0.775^~2, 3~^~04/01/2014~ -~08130~^~614~^0.071^3^0.005^~1~^~A~^^^1^0.064^0.080^2^0.051^0.091^~2, 3~^~04/01/2014~ -~08130~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2014~ -~08130~^~617~^1.403^3^0.074^~1~^~AS~^^^1^1.327^1.551^2^1.086^1.721^~2, 3~^~04/01/2014~ -~08130~^~618~^1.570^3^0.060^~1~^~AS~^^^1^1.497^1.689^2^1.311^1.828^~2, 3~^~04/01/2014~ -~08130~^~619~^0.051^3^0.001^~1~^~AS~^^^1^0.050^0.053^2^0.047^0.055^~2, 3~^~04/01/2014~ -~08130~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2014~ -~08130~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~626~^0.008^3^0.001^~1~^~AS~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~04/01/2014~ -~08130~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~628~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.035^2^0.026^0.038^~2, 3~^~04/01/2014~ -~08130~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2014~ -~08130~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~645~^1.454^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~646~^1.622^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~08130~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2014~ -~08130~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~08130~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~665~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~08130~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~671~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~04/01/2014~ -~08130~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~08130~^~673~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~04/01/2014~ -~08130~^~674~^1.403^3^0.074^~1~^~A~^^^1^1.327^1.551^2^1.085^1.721^~2, 3~^~04/01/2014~ -~08130~^~675~^1.568^3^0.060^~1~^~A~^^^1^1.496^1.687^2^1.310^1.826^~2, 3~^~04/01/2014~ -~08130~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~08130~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2014~ -~08130~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~08130~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08130~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~851~^0.050^3^0.001^~1~^~A~^^^1^0.049^0.053^2^0.044^0.056^~2, 3~^~04/01/2014~ -~08130~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08130~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08133~^~312~^0.074^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~315~^0.466^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~404~^0.179^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~405~^0.152^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~406~^2.343^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~410~^0.188^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~415~^0.253^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~605~^0.008^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~606~^0.150^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~611~^0.000^0^^~4~^~RP~^^~N~^^^^^^^^~08/01/2012~ -~08133~^~612~^0.003^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~613~^0.132^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~614~^0.012^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~615~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~617~^0.275^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~618~^0.289^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~619~^0.009^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~624~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~626~^0.002^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~628~^0.005^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~630~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~645~^0.283^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~646~^0.299^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~653~^0.001^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~ -~08133~^~672~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~687~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~689~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08133~^~697~^0.000^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~ -~08138~^~312~^0.202^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08138~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~08138~^~606~^0.719^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08138~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~612~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~613~^0.609^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~614~^0.039^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~617~^1.413^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~618~^1.244^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~619~^0.056^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~626~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08138~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08138~^~645~^1.420^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08138~^~646~^1.300^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08142~^~312~^0.330^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~315~^5.262^2^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~404~^0.070^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~405~^0.140^6^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~406~^3.520^6^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~410~^0.271^6^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~415~^0.120^8^^~1~^^^^^^^^^^^~07/01/1982~ -~08142~^~606~^0.430^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~613~^0.423^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~614~^0.012^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~617~^0.411^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~618~^1.353^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~619~^0.109^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~645~^0.410^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08142~^~646~^1.460^0^^~4~^^^^^^^^^^^~02/01/1994~ -~08143~^~312~^0.052^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~315~^0.822^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~404~^0.010^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~405~^0.020^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~406~^0.550^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~410~^0.042^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~415~^0.019^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08143~^~606~^0.075^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~613~^0.073^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~617~^0.071^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~618~^0.234^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~619~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~645~^0.071^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08143~^~646~^0.252^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~312~^0.458^26^0.018^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~315~^3.200^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~404~^0.400^16^0.023^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~405~^0.300^16^0.043^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~406~^4.900^16^0.183^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~410~^0.915^10^0.014^~1~^^^^^^^^^^^~07/01/1982~ -~08144~^~415~^0.391^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08144~^~606~^0.300^0^^~4~^^^^^^^^^^^~11/01/1986~ -~08144~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~613~^0.292^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~614~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~617~^0.283^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~618~^0.933^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~619~^0.075^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~645~^0.283^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08144~^~646~^1.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~08145~^~312~^0.083^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~404~^0.070^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~405~^0.050^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~406~^0.890^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~415~^0.073^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~606~^0.060^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~607~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~608~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~609~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~610~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~611~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~612~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~613~^0.058^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~614~^0.002^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~617~^0.057^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~618~^0.187^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~619~^0.015^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~ -~08145~^~620~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~621~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~626~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~627~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~628~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~629~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~630~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~631~^0.000^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~ -~08145~^~645~^0.057^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08145~^~646~^0.202^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08146~^~312~^0.453^0^^~4~^~BFSY~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~404~^0.639^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08146~^~405~^0.397^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08146~^~406~^5.286^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08146~^~415~^0.130^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/1996~ -~08146~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~606~^0.413^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~607~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~608~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~609~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~610~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~611~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~12/01/2002~ -~08146~^~612~^0.004^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~613~^0.312^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~614~^0.015^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~617~^0.261^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~618~^0.803^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~619~^0.040^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~620~^0.002^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~621~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~626~^0.073^0^^~4~^~BFSN~^~20071~^^^^^^^^^~01/01/2011~ -~08146~^~627~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~628~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~629~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~630~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~631~^0.000^0^^~4~^~BFSN~^~20071~^^^^^^^^^~02/01/2002~ -~08146~^~645~^0.313^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08146~^~646~^1.073^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08147~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~315~^2.520^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~404~^0.280^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~405~^0.090^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~406~^6.260^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~410~^0.308^6^0.308^~6~^~JA~^^^2^0.000^0.615^1^-3.600^4.215^~1, 4~^~04/01/2004~ -~08147~^~415~^0.170^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~501~^0.140^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~502~^0.310^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~503~^0.340^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~504~^0.680^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~505~^0.320^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~506~^0.170^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~507~^0.240^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~508~^0.460^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~509~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~510~^0.450^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~511~^0.450^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~512~^0.230^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~513~^0.390^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~514~^0.530^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~515~^2.990^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~516~^0.430^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~517~^0.970^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~518~^0.490^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08147~^~605~^0.000^5^^~12~^~MA~^^^1^0.000^0.000^0^^^~1, 4~^~04/01/2004~ -~08147~^~606~^0.410^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~607~^0.000^0^^~4~^~FLC~^^~N~^^^^^^^^~04/01/2004~ -~08147~^~608~^0.000^0^^~4~^~FLC~^^~N~^^^^^^^^~04/01/2004~ -~08147~^~609~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~610~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~611~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~612~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~613~^0.392^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~614~^0.018^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~615~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~617~^0.274^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~618~^1.143^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~619~^0.077^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~620~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~621~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~624~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~625~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~626~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~627~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~08147~^~629~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~630~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~631~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~645~^0.290^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~646~^1.220^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~08147~^~652~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~653~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~654~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~672~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~687~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~689~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08147~^~697~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08148~^~312~^0.334^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~404~^0.290^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~405~^0.090^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~406~^5.640^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~410~^0.801^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~415~^0.140^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~606~^0.400^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~609~^0.023^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~611~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~613~^0.353^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~614~^0.020^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~617~^0.283^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~618~^1.234^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~619~^0.063^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~620~^0.003^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~626~^0.015^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08148~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~08148~^~645~^0.300^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08148~^~646~^1.300^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08156~^~312~^0.169^10^0.004^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~315~^1.500^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~404~^2.600^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08156~^~405~^1.800^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08156~^~406~^35.300^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08156~^~410~^0.320^4^0.028^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~415~^0.075^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~501~^0.094^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~502~^0.318^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~503~^0.336^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~504~^0.526^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~505~^0.268^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~506~^0.189^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~507~^0.108^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~508~^0.270^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~509~^0.355^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~510~^0.411^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~511~^0.519^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~512~^0.191^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~513~^0.261^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~514~^0.583^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~515~^1.015^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~516~^0.366^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~517~^0.266^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~518~^0.287^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08156~^~606~^0.130^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08157~^~312~^0.409^10^0.013^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~315~^1.755^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08157~^~404~^2.600^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08157~^~405~^1.800^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08157~^~406~^35.300^0^^~5~^^^^^^^^^^^~07/01/1982~ -~08157~^~410~^0.518^4^0.022^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~415~^0.170^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~501~^0.226^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~502~^0.450^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~503~^0.626^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~504~^1.064^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~505~^0.405^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~506~^0.257^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~507~^0.289^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~508~^0.762^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~509~^0.445^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~510~^0.702^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~511~^0.712^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~512~^0.380^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~513~^0.548^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~514~^0.823^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~515~^4.972^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~516~^0.576^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~517~^1.537^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~518~^0.808^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08157~^~606~^0.200^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08160~^~312~^0.075^4^0.003^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~315~^0.106^4^0.005^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~404~^0.130^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~405~^0.040^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~406~^1.200^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~410~^0.485^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08160~^~415~^0.147^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~501~^0.062^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~502~^0.330^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~503~^0.314^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~504~^1.076^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~505~^0.247^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~506~^0.184^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~507~^0.158^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~508~^0.431^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~509~^0.357^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~510~^0.444^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~511~^0.437^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~512~^0.268^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~513~^0.656^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~514~^0.610^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~515~^1.647^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~516~^0.360^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~517~^0.765^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~518~^0.417^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08160~^~606~^0.155^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~613~^0.135^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~614~^0.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~617~^0.296^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~618~^0.502^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~619~^0.015^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~626~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~645~^0.300^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08160~^~646~^0.516^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~08161~^~312~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~315~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08161~^~404~^0.086^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~405~^0.058^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~406~^0.799^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~410~^0.046^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08161~^~415~^0.046^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~501~^0.010^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~502~^0.053^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~503~^0.056^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~504~^0.211^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~505~^0.033^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~506~^0.037^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~507~^0.033^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~508~^0.090^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~509~^0.066^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~510~^0.079^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~511~^0.065^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~512~^0.050^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~513~^0.127^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~514~^0.098^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~515~^0.326^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~516~^0.048^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~517~^0.154^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~518~^0.076^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~606~^0.066^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~607~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~608~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~609~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~610~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~611~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~612~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~613~^0.062^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~614~^0.004^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~617~^0.064^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~618~^0.165^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~619~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~620~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~621~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~626~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~627~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~628~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~629~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~630~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~631~^0.000^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~ -~08161~^~645~^0.064^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08161~^~646~^0.165^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~ -~08164~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~315~^0.037^4^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~404~^0.103^4^0.006^~1~^~A~^^^1^0.093^0.113^1^0.066^0.140^~2, 3~^~12/01/2008~ -~08164~^~405~^0.058^4^0.004^~1~^~A~^^^1^0.051^0.064^2^0.037^0.079^~2, 3~^~12/01/2008~ -~08164~^~406~^0.762^4^0.024^~1~^~A~^^^1^0.698^0.809^2^0.629^0.895^~2, 3~^~12/01/2008~ -~08164~^~410~^0.041^4^0.000^~1~^~A~^^^1^0.041^0.041^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~415~^0.035^4^0.007^~1~^~A~^^^1^0.016^0.048^2^-0.006^0.076^~1, 2, 3~^~12/01/2008~ -~08164~^~501~^0.010^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~502~^0.054^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~503~^0.051^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~504~^0.175^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~505~^0.040^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~506~^0.030^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~507~^0.026^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~508~^0.070^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~509~^0.058^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~510~^0.072^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~511~^0.071^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~512~^0.044^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~513~^0.107^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~514~^0.099^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~515~^0.268^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~516~^0.059^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~517~^0.125^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~518~^0.068^0^^~1~^^^^^^^^^^^~12/01/2008~ -~08164~^~606~^0.060^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~ -~08164~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~613~^0.055^4^0.005^~1~^~A~^^^1^0.050^0.070^1^-0.009^0.119^~2, 3~^~12/01/2008~ -~08164~^~614~^0.005^4^0.004^~1~^~A~^^^1^0.000^0.010^2^-0.010^0.020^~1, 2, 3~^~12/01/2008~ -~08164~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~617~^0.062^4^0.017^~1~^~A~^^^1^0.040^0.100^2^-0.041^0.166^~2, 3~^~12/01/2008~ -~08164~^~618~^0.130^4^0.022^~1~^~A~^^^1^0.100^0.180^2^-0.008^0.268^~2, 3~^~12/01/2008~ -~08164~^~619~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~645~^0.062^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~646~^0.130^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~08164~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08164~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~08165~^~312~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~315~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08165~^~404~^0.103^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~405~^0.058^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~406~^0.762^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~410~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~ -~08165~^~415~^0.035^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~501~^0.010^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~502~^0.054^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~503~^0.051^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~504~^0.175^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~505~^0.040^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~506~^0.030^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~507~^0.026^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~508~^0.070^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~509~^0.058^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~510~^0.072^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~511~^0.071^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~512~^0.044^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~513~^0.107^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~514~^0.099^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~515~^0.268^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~516~^0.059^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~517~^0.125^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~518~^0.068^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~606~^0.060^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~607~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~608~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~609~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~610~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~611~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~612~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~613~^0.055^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~614~^0.005^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~617~^0.062^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~618~^0.130^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~619~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~620~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~621~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~626~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~627~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~628~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~629~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~630~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~631~^0.000^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~ -~08165~^~645~^0.062^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08165~^~646~^0.130^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~ -~08168~^~312~^0.034^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~315~^0.144^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~404~^0.071^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~405~^0.018^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~406~^1.039^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~ -~08168~^~410~^0.076^0^^~4~^^^^^^^^^^^~07/01/1982~ -~08168~^~415~^0.027^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08168~^~501~^0.013^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~502~^0.044^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~503~^0.015^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~504~^0.073^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~505~^0.037^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~506~^0.026^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~507~^0.015^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~508~^0.037^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~509~^0.049^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~510~^0.057^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~511~^0.072^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~512~^0.026^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~513~^0.036^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~514~^0.080^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~515~^0.140^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~516~^0.050^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~517~^0.037^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~518~^0.040^0^^~1~^^^^^^^^^^^~12/01/2003~ -~08168~^~606~^0.020^0^^~4~^^^^^^^^^^^~01/01/1994~ -~08168~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~612~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~613~^0.025^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~614~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~617~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~618~^0.022^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~619~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~645~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08168~^~646~^0.027^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~08169~^~312~^0.041^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~315~^0.001^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~404~^0.070^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~405~^0.028^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~406~^0.585^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~410~^0.072^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~415~^0.015^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~501~^0.020^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~502~^0.046^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~503~^0.064^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~504~^0.111^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~505~^0.038^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~506~^0.027^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~507~^0.033^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~508~^0.079^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~509~^0.047^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~510~^0.071^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~511~^0.063^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~512~^0.034^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~513~^0.051^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~514~^0.069^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~515~^0.544^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~516~^0.057^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~517~^0.179^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~518~^0.083^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~606~^0.033^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~612~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~613~^0.031^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~614~^0.002^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~617~^0.028^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~618~^0.103^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~619~^0.012^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~626~^0.001^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~645~^0.029^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08169~^~646~^0.115^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~ -~08172~^~312~^0.079^20^0.009^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~315~^0.693^10^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~404~^0.060^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~405~^0.100^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~406~^0.700^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~410~^0.416^12^0.045^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~415~^0.058^2^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~501~^0.136^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~502~^0.280^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~503~^0.409^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~504~^0.724^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~505~^0.203^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~506~^0.165^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~507~^0.299^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~508~^0.514^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~509~^0.278^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~510~^0.451^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~511~^0.390^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~512~^0.215^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~513~^0.311^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~514~^0.433^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~515~^3.817^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~516~^0.335^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~517~^1.165^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~518~^0.499^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~606~^0.080^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~612~^0.000^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~613~^0.070^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~614~^0.010^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~617~^0.060^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~618~^0.200^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~619~^0.020^1^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~08172~^~645~^0.060^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08172~^~646~^0.220^0^^~1~^^^^^^^^^^^~07/01/1982~ -~08173~^~312~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~315~^0.196^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~404~^0.126^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~405~^0.065^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~406~^1.493^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~410~^0.256^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~415~^0.096^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~501~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~502~^0.051^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~503~^0.076^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~504~^0.150^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~505~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~506~^0.037^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~507~^0.042^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~508~^0.106^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~509~^0.070^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~510~^0.102^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~511~^0.074^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~512~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~513~^0.081^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~514~^0.106^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~515~^0.751^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~516~^0.086^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~517~^0.344^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~518~^0.114^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~605~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~606~^0.066^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~607~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~608~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~609~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~610~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~612~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~613~^0.056^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~614~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~615~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~617~^0.036^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~618~^0.119^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~619~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~621~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~624~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~626~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~627~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~628~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~629~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~630~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~631~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~645~^0.038^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~646~^0.126^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~654~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~663~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~664~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~665~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~670~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~671~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~672~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~673~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~674~^0.036^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~675~^0.089^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~676~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~685~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~689~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~693~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~695~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~851~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~ -~08173~^~852~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~853~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08173~^~858~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~ -~08177~^~312~^0.079^0^^~1~^^^^^^^^^^^~03/01/2005~ -~08177~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~405~^1.120^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~406~^20.310^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~410~^0.416^0^^~1~^^^^^^^^^^^~03/01/2005~ -~08177~^~415~^2.050^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08177~^~606~^0.310^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~645~^0.180^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08177~^~646~^0.200^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08180~^~312~^0.074^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~315~^0.580^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~404~^0.076^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~405~^0.016^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~406~^0.225^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~410~^0.311^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~415~^0.005^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~605~^0.001^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~606~^0.310^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~607~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~608~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~609~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~610~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~611~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~612~^0.005^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~613~^0.280^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~614~^0.021^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~617~^0.422^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~618~^0.541^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~619~^0.018^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~620~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~621~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~626~^0.003^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~627~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~628~^0.010^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~629~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~630~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~631~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~645~^0.435^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~646~^0.559^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~666~^0.001^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08180~^~693~^0.000^0^^~4~^~BFZN~^~08121~^~N~^^^^^^^^~03/01/2007~ -~08180~^~695~^0.001^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~ -~08182~^~312~^0.057^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~315~^0.817^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~404~^0.011^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~405~^0.022^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~406~^0.546^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~410~^0.042^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~415~^0.019^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~606~^0.091^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~613~^0.089^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~614~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~617~^0.067^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~618~^0.222^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~619~^0.018^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~645~^0.067^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08182~^~646~^0.240^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~312~^0.083^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~315~^0.583^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~404~^0.070^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~405~^0.050^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~406~^0.890^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~410~^0.167^0^^~1~^^^^^^^^^^^~03/01/2007~ -~08183~^~415~^0.073^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~606~^0.060^0^^~4~^^^^^^^^^^^~03/01/2007~ -~08183~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~613~^0.058^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~617~^0.057^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~618~^0.187^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~619~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~645~^0.057^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08183~^~646~^0.202^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~ -~08191~^~312~^0.173^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~315~^4.198^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~404~^0.720^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~405~^0.820^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~406~^9.620^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~410~^0.883^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~415~^0.960^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~ -~08191~^~606~^0.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08191~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~609~^0.006^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~613~^0.261^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~614~^0.017^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~617~^0.262^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~618~^0.860^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~619~^0.063^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~620~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~626~^0.009^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~645~^0.271^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08191~^~646~^0.925^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~404~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~405~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~406~^9.100^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~415~^0.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08192~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08192~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~08192~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~611~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~613~^0.448^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~614~^0.095^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~617~^2.866^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~618~^1.358^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~619~^0.141^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08192~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~626~^0.014^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~628~^0.018^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~630~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08192~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08192~^~645~^2.900^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08192~^~646~^1.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08200~^~312~^0.361^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~404~^0.340^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~405~^0.180^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~406~^3.980^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~415~^0.280^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2014~ -~08200~^~606~^0.450^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2014~ -~08200~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~611~^0.005^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~613~^0.398^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~614~^0.021^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~617~^0.582^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~618~^1.039^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~619~^0.091^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~626~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~628~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08200~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/1995~ -~08200~^~645~^0.600^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08200~^~646~^1.130^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08204~^~312~^0.240^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~315~^0.246^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~404~^1.323^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~405~^1.499^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~406~^17.637^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~410~^0.101^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~415~^1.764^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~ -~08204~^~606~^0.961^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~613~^0.494^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~614~^0.458^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~617~^2.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~618~^0.225^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~619~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~645~^2.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08204~^~646~^0.231^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08206~^~312~^0.319^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08206~^~605~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~606~^2.570^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08206~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~608~^0.018^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~609~^0.186^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~610~^0.132^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~611~^1.049^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~612~^0.394^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~613~^0.458^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~614~^0.323^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~617~^0.886^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~618~^0.543^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~619~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~626~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08206~^~645~^0.887^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08206~^~646~^0.555^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08210~^~404~^1.370^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~405~^1.550^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~406~^18.220^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~415~^1.830^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08210~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08210~^~606~^0.770^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~645~^1.370^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08210~^~646~^1.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08211~^~312~^0.090^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~404~^1.049^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~405~^0.572^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~406~^4.334^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~415~^0.321^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~ -~08211~^~605~^0.041^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~606~^5.709^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~608~^0.036^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~609~^0.456^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~610~^0.365^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~611~^2.715^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~612~^1.025^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~613~^0.845^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~614~^0.253^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~617~^0.699^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~618~^0.686^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~619~^0.035^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~ -~08211~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08211~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~08211~^~645~^0.704^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08211~^~646~^0.722^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~08214~^~312~^0.474^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~315~^3.041^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~404~^0.683^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~ -~08214~^~405~^0.850^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~406~^9.570^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~415~^0.880^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08214~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~606~^0.873^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~611~^0.015^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~612~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~613~^0.744^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~614~^0.047^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~617~^1.583^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~618~^1.452^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~619~^0.068^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~626~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08214~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08214~^~645~^1.594^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08214~^~646~^1.523^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08215~^~312~^0.459^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~404~^0.750^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~405~^0.840^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~406~^9.510^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~415~^0.880^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08215~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08215~^~606~^0.880^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08215~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2011~ -~08215~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~611~^0.016^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~613~^0.805^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~614~^0.051^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~617~^1.583^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~618~^1.480^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~619~^0.070^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08215~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08215~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~626~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~ -~08215~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2002~ -~08215~^~645~^1.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08215~^~646~^1.550^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~312~^0.317^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~ -~08216~^~315~^3.850^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08216~^~404~^0.720^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~ -~08216~^~405~^0.820^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~ -~08216~^~406~^9.780^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~410~^0.850^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~08216~^~415~^0.890^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08216~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~606~^0.910^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08216~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~609~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~611~^0.015^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~612~^0.010^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~613~^0.773^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~614~^0.054^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~617~^1.559^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~618~^1.954^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~619~^0.086^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08216~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~626~^0.011^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~ -~08216~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~ -~08216~^~645~^1.580^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08216~^~646~^2.040^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08218~^~312~^0.318^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~315~^2.521^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~404~^0.379^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~405~^0.260^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~406~^2.120^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~410~^0.820^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~415~^0.229^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~605~^0.001^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08218~^~606~^1.120^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~607~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~611~^0.007^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~612~^0.008^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~613~^0.833^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~614~^0.195^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~615~^0.048^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~617~^5.740^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~618~^1.880^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~619~^0.510^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2011~ -~08218~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~624~^0.025^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08218~^~626~^0.030^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~628~^0.100^0^^~4~^~FLM~^^^^^^^^^^~03/01/2014~ -~08218~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~645~^5.870^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~646~^2.390^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08218~^~654~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2011~ -~08218~^~672~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08218~^~689~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~ -~08220~^~312~^0.265^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~315~^1.554^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~404~^0.368^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~405~^0.201^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~406~^2.371^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~410~^0.682^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~415~^0.248^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~606~^0.970^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~607~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~608~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~609~^0.040^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~610~^0.032^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~611~^0.257^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~612~^0.107^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~613~^0.400^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~614~^0.102^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~617~^2.478^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~618~^1.301^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~619~^0.137^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2003~ -~08220~^~626~^0.047^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2003~ -~08220~^~628~^0.022^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~ -~08220~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2003~ -~08220~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~ -~08220~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2003~ -~08220~^~645~^2.548^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08220~^~646~^1.438^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08221~^~404~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~405~^0.690^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~406~^8.450^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08221~^~415~^0.130^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~ -~08221~^~605~^1.320^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~606~^2.580^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~645~^0.940^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08221~^~646~^0.490^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08225~^~312~^0.279^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~315~^2.380^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~404~^0.943^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~405~^1.068^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~406~^12.568^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~410~^0.752^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~415~^1.257^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08225~^~606~^1.308^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~609~^0.039^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~610~^0.042^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~611~^0.402^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~612~^0.178^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~613~^0.414^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~614~^0.204^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~617~^2.082^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~618~^1.275^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~619~^0.060^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~626~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08225~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~ -~08225~^~645~^2.092^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08225~^~646~^1.335^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~312~^0.364^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~315~^2.224^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~404~^0.892^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~405~^1.017^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~406~^11.968^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~410~^0.675^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~415~^1.197^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~606~^1.070^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1996~ -~08228~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/1996~ -~08228~^~611~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~612~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~613~^0.859^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~614~^0.137^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~617~^1.879^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~618~^2.783^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~619~^0.456^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~625~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~ -~08228~^~626~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~628~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~08228~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/1996~ -~08228~^~645~^1.903^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08228~^~646~^3.240^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08231~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~315~^5.700^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~404~^0.970^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~405~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~406~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~410~^0.850^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~415~^0.110^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~606~^1.430^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~645~^2.610^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08231~^~646~^3.030^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~ -~08236~^~312~^0.041^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~315~^0.679^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~404~^0.115^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~405~^0.036^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~406~^0.096^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~410~^0.101^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~415~^0.013^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~606~^0.170^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~612~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~613~^0.140^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~614~^0.009^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~617~^0.300^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~618~^0.334^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~619~^0.015^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~645~^0.310^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08236~^~646~^0.360^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08240~^~312~^0.041^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~315~^0.678^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~404~^0.115^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~405~^0.036^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~406~^0.095^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~410~^0.101^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~415~^0.013^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~606~^0.170^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~612~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~613~^0.140^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~614~^0.009^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~617~^0.299^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~618~^0.334^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~619~^0.015^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~645~^0.310^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08240~^~646~^0.360^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08249~^~312~^0.086^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~315~^0.482^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08249~^~404~^0.053^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~405~^0.024^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~406~^0.656^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~410~^0.092^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~415~^0.044^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~606~^0.096^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08249~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~609~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~611~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~612~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~613~^0.066^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~614~^0.003^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~617~^0.101^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~618~^0.175^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~619~^0.015^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~626~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~628~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~ -~08249~^~645~^0.105^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08249~^~646~^0.235^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08252~^~312~^0.086^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~315~^0.481^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08252~^~404~^0.053^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~405~^0.024^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~406~^0.655^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~410~^0.092^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~415~^0.044^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~606~^0.095^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08252~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~609~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~611~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~612~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~613~^0.066^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~614~^0.003^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~617~^0.101^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~618~^0.175^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~619~^0.015^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~626~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~628~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~ -~08252~^~645~^0.105^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08252~^~646~^0.235^0^^~4~^~RA~^^^^^^^^^^~05/01/1996~ -~08290~^~312~^0.478^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~315~^3.229^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~404~^0.529^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~405~^0.600^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~406~^7.055^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~ -~08290~^~410~^0.733^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~415~^0.705^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~08290~^~606~^0.261^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~609~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~611~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~613~^0.224^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~614~^0.014^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~617~^0.241^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~618~^0.574^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~619~^0.035^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~620~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~08290~^~645~^0.244^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08290~^~646~^0.610^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~08305~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2003~ -~08305~^~405~^1.400^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~406~^16.700^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08305~^~605~^0.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~606~^0.900^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~611~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~613~^0.684^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~614~^0.182^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~617~^1.685^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~618~^1.605^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~619~^0.093^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~626~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08305~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~08305~^~645~^1.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08305~^~646~^1.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08314~^~404~^0.610^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08314~^~405~^0.360^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08314~^~406~^5.320^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08314~^~415~^0.150^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08314~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08314~^~606~^0.160^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~645~^0.290^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08314~^~646~^0.510^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~404~^0.610^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08316~^~405~^0.360^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08316~^~406~^5.320^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08316~^~415~^0.150^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08316~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08316~^~606~^0.150^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~645~^0.300^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08316~^~646~^0.520^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08346~^~312~^0.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~ -~08346~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~ -~08346~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08346~^~605~^0.480^1^^~12~^~MA~^^^^^^^^^^~12/01/2014~ -~08346~^~606~^2.240^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~ -~08346~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~608~^0.014^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~609~^0.177^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~610~^0.141^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~611~^1.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~612~^0.397^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~613~^0.356^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~614~^0.100^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~617~^1.465^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~618~^0.675^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~619~^0.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~620~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~621~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~627~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~ -~08346~^~629~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~630~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~631~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~12/01/2014~ -~08346~^~645~^1.470^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08346~^~646~^0.690^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08347~^~312~^0.120^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08347~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08347~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08347~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08347~^~606~^1.214^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~611~^0.006^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~612~^0.009^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~613~^0.722^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~614~^0.427^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~617~^1.271^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~618~^0.949^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~619~^0.032^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08347~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08347~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08347~^~645~^1.274^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08347~^~646~^0.996^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08348~^~312~^0.242^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~08348~^~404~^1.130^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~405~^1.280^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~406~^15.140^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~415~^1.510^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08348~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2015~ -~08348~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~645~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08348~^~646~^0.340^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08349~^~312~^0.064^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~404~^1.160^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~405~^1.330^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~406~^15.630^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~415~^1.550^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08349~^~605~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~606~^0.687^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08349~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~611~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~613~^0.569^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~614~^0.090^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~617~^1.456^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~618~^0.947^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~619~^0.029^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~626~^0.010^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~630~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08349~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08349~^~645~^1.470^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08349~^~646~^0.976^1^^~12~^~MA~^^^^^^^^^^~02/01/2005~ -~08349~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08351~^~404~^0.180^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~405~^0.070^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~406~^2.700^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~415~^0.120^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08351~^~606~^1.450^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~645~^3.110^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08351~^~646~^2.250^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~404~^0.550^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~405~^0.320^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~406~^1.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~415~^0.130^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08352~^~606~^0.890^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08352~^~645~^1.650^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08352~^~646~^1.820^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08353~^~404~^0.420^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~405~^0.110^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~406~^1.890^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~415~^0.130^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08353~^~606~^0.820^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~645~^1.490^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08353~^~646~^1.460^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~404~^0.160^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~405~^0.050^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~406~^1.120^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~415~^0.060^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08354~^~606~^0.280^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08354~^~645~^0.330^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08354~^~646~^0.690^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~404~^0.150^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~405~^0.050^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~406~^1.060^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~415~^0.040^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08355~^~606~^0.310^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08355~^~645~^0.320^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08355~^~646~^0.660^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08363~^~312~^1.090^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~315~^17.380^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~404~^1.100^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~405~^0.450^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~406~^20.620^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~410~^2.930^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~415~^0.680^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~ -~08363~^~606~^0.770^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~645~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08363~^~646~^2.720^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08365~^~404~^0.226^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~405~^0.105^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~406~^5.240^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~415~^0.256^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08365~^~606~^0.405^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~645~^0.304^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08365~^~646~^1.216^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08366~^~312~^0.620^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~315~^19.080^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~404~^1.970^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~405~^0.780^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~406~^5.580^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~410~^1.400^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~415~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~606~^1.660^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~645~^1.250^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08366~^~646~^5.980^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~ -~08402~^~312~^0.370^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~315~^4.300^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~404~^0.540^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~405~^0.120^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~406~^0.820^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~410~^0.710^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~415~^0.100^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~ -~08402~^~606~^1.110^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~607~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~608~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~609~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~610~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~611~^0.020^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~612~^0.010^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~613~^0.940^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~614~^0.060^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~617~^1.970^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~618~^2.200^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~619~^0.100^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~620~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~621~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~626~^0.010^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~627~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~628~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~629~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~630~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~631~^0.000^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~645~^1.980^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08402~^~646~^2.300^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~ -~08409~^~312~^0.120^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~404~^1.210^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~405~^1.370^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~406~^16.120^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~415~^1.610^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08409~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~01/01/2015~ -~08409~^~606~^0.107^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08409~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~613~^0.088^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~614~^0.016^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~617~^0.171^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~618~^0.421^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~619~^0.014^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2015~ -~08409~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08409~^~645~^0.171^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08409~^~646~^0.435^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08410~^~312~^0.345^4^0.010^~1~^~A~^^^1^0.320^0.360^3^0.315^0.375^~2, 3~^~08/01/2012~ -~08410~^~315~^2.790^4^0.061^~1~^~A~^^^1^2.680^2.960^3^2.596^2.984^~2, 3~^~08/01/2012~ -~08410~^~404~^0.717^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~405~^0.813^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~406~^9.200^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~410~^0.940^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~415~^0.862^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~ -~08410~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~606~^0.808^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~613~^0.720^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~614~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~617~^1.530^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~618~^1.702^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~619~^0.062^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~626~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~628~^0.030^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~645~^1.575^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~646~^1.767^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~653~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~665~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~673~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~674~^1.530^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~675~^1.700^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~685~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~687~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08410~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08410~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~851~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08410~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08410~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08411~^~404~^0.660^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~405~^0.750^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~406~^8.790^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~415~^0.880^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08411~^~605~^0.780^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~606~^2.420^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~645~^1.690^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08411~^~646~^1.400^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~404~^0.980^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~405~^1.000^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~406~^11.310^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~415~^1.140^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08417~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2014~ -~08417~^~606~^0.900^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~645~^1.730^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08417~^~646~^1.430^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08435~^~312~^0.752^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~315~^3.610^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~404~^0.679^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~08435~^~405~^0.127^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~08435~^~406~^4.803^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~08435~^~410~^0.621^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~415~^0.956^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~08435~^~606~^0.946^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~08435~^~607~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~07/01/2012~ -~08435~^~608~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~07/01/2012~ -~08435~^~609~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~610~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~611~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~612~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~613~^0.681^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~614~^0.229^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~615~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~617~^1.391^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~618~^1.685^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~619~^4.302^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~620~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~621~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~624~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~625~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~626~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~627~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~629~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~630~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~631~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~645~^1.419^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~08435~^~646~^5.987^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~08435~^~652~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~653~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~654~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~08435~^~672~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~687~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~689~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08435~^~697~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~01/01/2003~ -~08436~^~312~^0.318^4^0.005^~1~^~A~^^^1^0.310^0.330^3^0.302^0.333^~2, 3~^~08/01/2012~ -~08436~^~315~^2.043^4^0.073^~1~^~A~^^^1^1.850^2.200^3^1.810^2.275^~2, 3~^~08/01/2012~ -~08436~^~404~^0.790^2^^~1~^~A~^^~Y~^1^0.790^0.790^^^^^~08/01/2012~ -~08436~^~405~^0.670^2^^~1~^~A~^^~Y~^1^0.660^0.680^1^^^^~08/01/2012~ -~08436~^~406~^10.470^2^^~1~^~A~^^~Y~^1^9.940^11.000^1^^^^~08/01/2012~ -~08436~^~410~^0.830^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~415~^1.110^2^^~1~^~A~^^~Y~^1^0.930^1.290^1^^^^~08/01/2012~ -~08436~^~605~^0.040^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~606~^0.605^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~613~^0.530^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~614~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~617~^1.160^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~618~^1.210^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~619~^0.042^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~620~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~626~^0.007^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~645~^1.191^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~646~^1.254^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~653~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~663~^0.030^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~665~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~672~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~673~^0.007^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~674~^1.130^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~675~^1.200^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~676~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~685~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~687~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~08436~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~08436~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~851~^0.040^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~08436~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08436~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~08444~^~404~^0.850^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~405~^0.740^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~406~^8.970^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08444~^~415~^0.150^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~605~^0.050^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~606~^0.230^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~645~^0.410^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08444~^~646~^0.730^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~404~^0.760^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08449~^~405~^0.690^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2003~ -~08449~^~406~^8.140^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08449~^~415~^0.160^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~605~^1.150^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08449~^~606~^1.080^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~645~^2.290^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08449~^~646~^1.110^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08450~^~404~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~405~^0.680^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~406~^8.270^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08450~^~415~^0.180^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~605~^0.930^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08450~^~606~^1.060^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~645~^2.260^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08450~^~646~^1.050^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~404~^0.540^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~405~^0.123^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08451~^~406~^0.823^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08451~^~415~^0.100^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~05/01/2011~ -~08451~^~606~^0.960^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~645~^1.980^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08451~^~646~^2.140^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~08452~^~404~^0.480^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~405~^0.140^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~406~^5.100^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~415~^0.440^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~05/01/2011~ -~08452~^~606~^0.419^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~645~^0.309^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08452~^~646~^1.176^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~08476~^~404~^1.293^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~405~^1.466^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~406~^17.241^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~415~^1.724^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08476~^~606~^0.585^0^^~12~^~MA~^^^^^^^^^^~04/01/2015~ -~08476~^~645~^0.495^0^^~12~^~MA~^^^^^^^^^^~04/01/2015~ -~08476~^~646~^0.585^0^^~12~^~MA~^^^^^^^^^^~04/01/2015~ -~08478~^~312~^0.296^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~08478~^~315~^0.852^3^0.042^~1~^~A~^^^1^0.772^0.912^2^0.673^1.032^~2, 3~^~04/01/2007~ -~08478~^~404~^1.740^3^0.035^~1~^~A~^^^1^1.700^1.810^2^1.589^1.891^~2, 3~^~06/01/2007~ -~08478~^~405~^2.167^3^0.033^~1~^~A~^^^1^2.100^2.200^2^2.023^2.310^~2, 3~^~06/01/2007~ -~08478~^~406~^25.167^3^0.491^~1~^~A~^^^1^24.300^26.000^2^23.054^27.279^~2, 3~^~06/01/2007~ -~08478~^~410~^0.317^3^0.009^~1~^~A~^^^1^0.300^0.330^2^0.279^0.355^~2, 3~^~04/01/2007~ -~08478~^~415~^2.067^3^0.088^~1~^~A~^^^1^1.900^2.200^2^1.687^2.446^~2, 3~^~06/01/2007~ -~08478~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~502~^0.174^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~503~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~504~^0.429^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~505~^0.051^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~506~^0.092^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~507~^0.051^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~508~^0.317^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~509~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~510~^0.245^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~511~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~512~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~513~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~514~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~515~^2.198^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~516~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~517~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~518~^0.307^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~605~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~606~^0.161^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~607~^0.000^0^^~4~^~FLA~^^~N~^^^^^^^^~04/01/2007~ -~08478~^~608~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~609~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~610~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~611~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~613~^0.124^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~614~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~617~^0.215^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~08478~^~618~^0.328^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~08478~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~08478~^~620~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~621~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~625~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~08478~^~627~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~629~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~630~^0.000^0^^~1~^~AS~^^~N~^^^^^^^^~04/01/2007~ -~08478~^~631~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~645~^0.220^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~646~^0.349^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~654~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~662~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~663~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~664~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~665~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~670~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~671~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~672~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~673~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~674~^0.190^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~675~^0.324^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~676~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~685~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~687~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~689~^0.000^0^^~1~^~AS~^^~N~^^^^^^^^~04/01/2007~ -~08478~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~08478~^~697~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~851~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~08478~^~852~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~853~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08478~^~858~^0.000^1^^~1~^~A~^^~N~^^^^^^^~1~^~04/01/2007~ -~08481~^~404~^1.580^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~405~^1.650^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~406~^18.970^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~415~^2.050^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08481~^~606~^1.500^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~645~^3.140^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08481~^~646~^3.770^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08484~^~312~^0.508^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~08484~^~404~^0.630^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~405~^0.720^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08484~^~406~^8.470^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08484~^~415~^0.850^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08484~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~03/01/2015~ -~08484~^~606~^0.424^1^^~12~^~MA~^^^^^^^^^^~03/01/2015~ -~08484~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~613~^0.394^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~614~^0.023^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~617~^0.331^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~618~^0.846^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~619~^0.062^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~620~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08484~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~625~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2015~ -~08484~^~626~^0.017^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~628~^0.008^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~ -~08484~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2005~ -~08484~^~645~^0.357^1^^~12~^~MA~^^^^^^^^^^~03/01/2015~ -~08484~^~646~^0.908^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~ -~08487~^~404~^1.500^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~405~^1.600^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~406~^19.640^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~415~^1.960^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08487~^~606~^1.660^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~645~^3.520^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08487~^~646~^4.130^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~404~^1.220^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~405~^1.070^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~406~^19.770^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~415~^2.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~606~^0.070^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~645~^0.050^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08488~^~646~^0.210^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~404~^1.050^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~405~^0.930^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~406~^17.120^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~415~^1.740^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08489~^~606~^0.090^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~645~^0.050^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08489~^~646~^0.200^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08491~^~404~^0.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~405~^0.100^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~406~^1.330^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~415~^0.010^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08491~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~08491~^~606~^0.550^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~08491~^~645~^1.050^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~08491~^~646~^1.100^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~08493~^~404~^1.130^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~405~^1.280^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~406~^15.140^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08493~^~415~^1.510^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08493~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~01/01/2015~ -~08493~^~606~^0.730^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08493~^~645~^0.550^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08493~^~646~^0.670^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08494~^~312~^0.133^0^^~8~^~LC~^^^^^^^^^^~01/01/2015~ -~08494~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08494~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~01/01/2015~ -~08494~^~606~^1.850^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~613~^1.275^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~614~^0.410^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~617~^3.824^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~618~^3.049^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~619~^1.081^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08494~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~626~^0.016^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~628~^0.080^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08494~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~08494~^~645~^3.920^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08494~^~646~^4.130^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08495~^~312~^0.162^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~405~^1.480^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~406~^17.230^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~415~^1.720^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08495~^~605~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~606~^2.580^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08495~^~607~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~608~^0.021^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~609~^0.217^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~610~^0.154^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~611~^1.226^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~612~^0.461^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~613~^0.356^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~614~^0.138^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08495~^~617~^0.249^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~618~^0.185^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~619~^0.025^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08495~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~626~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~ -~08495~^~645~^0.250^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08495~^~646~^0.210^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08500~^~312~^0.364^0^^~8~^~LC~^^^^^^^^^^~01/01/2015~ -~08500~^~404~^0.680^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~405~^0.760^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~406~^9.090^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~415~^0.910^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08500~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~01/01/2015~ -~08500~^~606~^0.228^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~611~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08500~^~613~^0.218^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~614~^0.011^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08500~^~617~^0.769^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~618~^0.675^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~619~^0.045^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~ -~08500~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~628~^0.028^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2013~ -~08500~^~645~^0.797^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~ -~08500~^~646~^0.721^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08500~^~689~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2015~ -~08501~^~312~^0.128^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~315~^0.631^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~404~^1.460^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~405~^2.510^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~406~^26.500^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~410~^0.587^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~415~^2.740^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~ -~08501~^~605~^0.140^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~606~^0.640^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~612~^0.007^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~613~^0.377^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~614~^0.194^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~615~^0.015^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~617~^2.107^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~618~^0.253^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~619~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~624~^0.043^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~ -~08501~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~628~^0.007^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~08501~^~645~^2.120^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08501~^~646~^0.258^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~ -~08504~^~312~^0.345^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08504~^~315~^3.467^3^0.067^~1~^~A~^^^1^3.400^3.600^2^3.180^3.753^~2, 3~^~03/01/2005~ -~08504~^~404~^4.713^3^1.322^~1~^~A~^^~Y~^1^2.100^6.370^2^-0.976^10.402^~2, 3~^~01/01/2007~ -~08504~^~405~^7.290^3^0.172^~1~^~A~^^~Y~^1^7.070^7.630^2^6.548^8.032^~2, 3~^~01/01/2007~ -~08504~^~406~^90.567^3^0.784^~1~^~A~^^~Y~^1^89.000^91.400^2^87.194^93.939^~2, 3~^~01/01/2007~ -~08504~^~410~^29.800^3^0.458^~1~^~A~^^~Y~^1^28.900^30.400^2^27.828^31.772^~2, 3~^~03/01/2005~ -~08504~^~415~^6.800^3^0.172^~1~^~A~^^~Y~^1^6.580^7.140^2^6.058^7.542^~2, 3~^~01/01/2007~ -~08504~^~501~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~502~^0.370^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~503~^0.343^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~504~^0.677^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~505~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~506~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~508~^0.457^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~509~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~510~^0.467^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~511~^0.393^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~512~^0.237^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~513~^0.447^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~514~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~515~^2.836^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~516~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~517~^1.043^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~518~^0.483^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08504~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~08504~^~606~^0.433^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~08504~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~08504~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~613~^0.410^3^0.012^~1~^~A~^^^1^0.390^0.430^2^0.360^0.460^~2, 3~^~03/01/2005~ -~08504~^~614~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~03/01/2005~ -~08504~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~617~^0.423^3^0.009^~1~^~A~^^^1^0.410^0.440^2^0.385^0.461^~2, 3~^~03/01/2005~ -~08504~^~618~^1.297^3^0.032^~1~^~A~^^^1^1.260^1.360^2^1.160^1.434^~2, 3~^~03/01/2005~ -~08504~^~619~^0.087^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.072^0.101^~2, 3~^~03/01/2005~ -~08504~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~08504~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~628~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2005~ -~08504~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~645~^0.443^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08504~^~646~^1.383^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08504~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08504~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~312~^0.073^3^0.003^~1~^~A~^^^1^0.066^0.077^2^0.058^0.087^~2, 3~^~03/01/2005~ -~08505~^~315~^0.223^3^0.003^~1~^~A~^^^1^0.219^0.229^2^0.209^0.236^~2, 3~^~03/01/2005~ -~08505~^~404~^1.520^3^0.078^~1~^~A~^^~Y~^1^1.370^1.630^2^1.186^1.854^~2, 3~^~05/01/2009~ -~08505~^~405~^1.697^3^0.137^~1~^~A~^^~Y~^1^1.440^1.910^2^1.106^2.288^~2, 3~^~05/01/2009~ -~08505~^~406~^21.833^3^0.203^~1~^~A~^^~Y~^1^21.500^22.200^2^20.961^22.706^~2, 3~^~05/01/2009~ -~08505~^~410~^0.117^3^0.005^~1~^~A~^^^1^0.111^0.127^2^0.094^0.139^~2, 3~^~03/01/2005~ -~08505~^~415~^2.230^3^0.032^~1~^~A~^^~Y~^1^2.180^2.290^2^2.092^2.368^~2, 3~^~05/01/2009~ -~08505~^~501~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~502~^0.243^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~503~^0.253^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~504~^1.036^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~505~^0.053^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~506~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~507~^0.087^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~508~^0.403^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~509~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~510~^0.297^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~511~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~512~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~514~^0.666^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~515~^1.563^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~516~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~517~^0.933^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~518~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08505~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08505~^~606~^0.193^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~08505~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~613~^0.173^3^0.007^~1~^~A~^^^1^0.160^0.180^2^0.144^0.202^~2, 3~^~03/01/2005~ -~08505~^~614~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2005~ -~08505~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~617~^0.133^3^0.012^~1~^~A~^^^1^0.110^0.150^2^0.081^0.185^~2, 3~^~03/01/2005~ -~08505~^~618~^0.327^3^0.013^~1~^~A~^^^1^0.300^0.340^2^0.269^0.384^~2, 3~^~03/01/2005~ -~08505~^~619~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2005~ -~08505~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~645~^0.133^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08505~^~646~^0.347^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~08505~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08505~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08506~^~312~^0.075^3^0.004^~1~^~A~^^^1^0.067^0.082^2^0.056^0.094^~2, 3~^~03/01/2005~ -~08506~^~315~^0.095^3^0.002^~1~^~A~^^^1^0.092^0.100^2^0.085^0.106^~2, 3~^~03/01/2005~ -~08506~^~404~^4.483^3^0.077^~1~^~A~^^~Y~^1^4.370^4.630^2^4.152^4.814^~2, 3~^~01/01/2007~ -~08506~^~405~^1.740^3^0.307^~1~^~A~^^~Y~^1^1.370^2.350^2^0.418^3.062^~2, 3~^~01/01/2007~ -~08506~^~406~^21.033^3^0.338^~1~^~A~^^~Y~^1^20.600^21.700^2^19.578^22.489^~2, 3~^~01/01/2007~ -~08506~^~410~^0.099^3^0.005^~1~^~A~^^^1^0.091^0.108^2^0.077^0.120^~2, 3~^~03/01/2005~ -~08506~^~415~^1.907^3^0.101^~1~^~A~^^~Y~^1^1.760^2.100^2^1.473^2.341^~2, 3~^~01/01/2007~ -~08506~^~501~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~502~^0.233^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~503~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~504~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~505~^0.043^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~506~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~508~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~510~^0.303^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~511~^0.133^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~512~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~513~^0.580^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~514~^0.643^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~515~^1.520^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~516~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~517~^0.936^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~518~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08506~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08506~^~606~^0.227^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~08506~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~613~^0.177^3^0.003^~1~^~A~^^^1^0.170^0.180^2^0.162^0.191^~2, 3~^~03/01/2005~ -~08506~^~614~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~03/01/2005~ -~08506~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~617~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~2, 3~^~03/01/2005~ -~08506~^~618~^0.277^3^0.003^~1~^~A~^^^1^0.270^0.280^2^0.262^0.291^~2, 3~^~03/01/2005~ -~08506~^~619~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~03/01/2005~ -~08506~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~08506~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~645~^0.107^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~08506~^~646~^0.293^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~08506~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08506~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~08507~^~312~^0.131^3^0.008^~1~^~A~^^^1^0.120^0.146^2^0.098^0.164^~2, 3~^~03/01/2005~ -~08507~^~315~^0.653^3^0.035^~1~^~A~^^^1^0.597^0.717^2^0.502^0.803^~2, 3~^~03/01/2005~ -~08507~^~404~^1.810^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~405~^2.052^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~406~^24.138^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~410~^0.230^3^0.002^~1~^~A~^^~N~^1^0.227^0.235^2^0.220^0.241^~2, 3~^~03/01/2005~ -~08507~^~415~^2.414^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~ -~08507~^~501~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~502~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~503~^0.263^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~504~^0.799^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~505~^0.134^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~506~^0.134^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~507~^0.113^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~508~^0.374^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~509~^0.186^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~510~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~511~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~512~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~513~^0.466^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~514~^0.878^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~515~^1.394^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~516~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~517~^0.569^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~518~^0.304^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~08507~^~605~^0.000^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~ -~08507~^~606~^0.263^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~08507~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~613~^0.233^3^0.007^~1~^~A~^^^1^0.220^0.240^2^0.205^0.262^~2, 3~^~03/01/2005~ -~08507~^~614~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~03/01/2005~ -~08507~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~617~^0.193^3^0.003^~1~^~A~^^^1^0.190^0.200^2^0.179^0.208^~2, 3~^~03/01/2005~ -~08507~^~618~^0.337^3^0.012^~1~^~A~^^^1^0.320^0.360^2^0.285^0.388^~2, 3~^~03/01/2005~ -~08507~^~619~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~03/01/2005~ -~08507~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~645~^0.193^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08507~^~646~^0.350^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~08507~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08507~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~08510~^~312~^0.049^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~315~^0.206^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~404~^0.615^2^^~8~^~LC~^^^1^0.577^0.652^1^^^^~02/01/2009~ -~08510~^~405~^0.696^2^^~8~^~LC~^^^1^0.654^0.739^1^^^^~02/01/2009~ -~08510~^~406~^8.194^2^^~8~^~LC~^^^1^7.692^8.696^1^^^^~02/01/2009~ -~08510~^~410~^0.495^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~415~^0.819^2^^~8~^~LC~^^^1^0.769^0.870^1^^^^~08/01/2015~ -~08510~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~606~^9.114^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~607~^0.045^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~608~^0.050^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~609~^0.325^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~610~^0.244^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~611~^2.720^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~612~^0.977^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~613~^3.839^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~614~^0.881^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~617~^1.177^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~618~^0.230^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~619~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~626~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~08510~^~645~^1.186^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08510~^~646~^0.239^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~08511~^~404~^0.140^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08511~^~405~^0.100^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08511~^~406~^1.870^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08511~^~415~^0.150^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~ -~08511~^~605~^0.000^0^^~4~^~BFZN~^~08116~^~N~^^^^^^^^~03/01/2015~ -~08511~^~606~^0.010^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~645~^0.010^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08511~^~646~^0.020^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~404~^0.150^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~405~^0.150^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~406~^2.650^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~415~^0.270^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~606~^0.030^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~645~^0.010^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08512~^~646~^0.020^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08544~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~404~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~405~^0.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~406~^10.400^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~415~^1.000^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08544~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~608~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~609~^0.011^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~610~^0.009^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~611~^0.068^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~612~^0.027^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~08544~^~613~^0.571^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~614~^0.098^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~617~^2.955^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~618~^1.627^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~619~^0.072^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08544~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~626~^0.022^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~628~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~630~^0.002^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~08544~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~645~^3.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08544~^~646~^1.700^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~08544~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~653~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~ -~08544~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~857~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08544~^~858~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08546~^~312~^0.185^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~315~^1.407^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~404~^0.682^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~405~^0.773^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~406~^9.091^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~410~^0.064^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~415~^0.909^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~08546~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~617~^6.477^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~618~^1.967^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~619~^0.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~626~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~628~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~645~^6.567^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~646~^2.049^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08546~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~08549~^~404~^1.381^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~405~^1.565^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~406~^18.416^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~415~^1.842^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~606~^0.770^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~08549~^~645~^1.401^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08549~^~646~^1.335^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~312~^0.151^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~404~^1.635^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~405~^1.846^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~406~^21.736^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~410~^0.370^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~08550~^~415~^2.179^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~ -~08550~^~605~^0.019^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~606~^3.081^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~608~^0.017^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~609~^0.211^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~610~^0.169^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~611~^1.268^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~612~^0.479^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~613~^0.772^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~614~^0.122^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~617~^0.624^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~618~^0.720^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~619~^0.031^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~645~^0.627^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~646~^0.751^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08550~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08550~^~858~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~08554~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~404~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~405~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~406~^9.600^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~415~^1.000^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~ -~08554~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~606~^1.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~611~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~613~^0.764^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~614~^0.156^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~617~^4.356^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~618~^2.415^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~619~^0.185^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2007~ -~08554~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~626~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~628~^0.031^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~630~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~08554~^~645~^4.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~646~^2.600^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08554~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08554~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08571~^~312~^0.080^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~315~^0.120^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~404~^0.120^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~405~^0.010^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~406~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~410~^0.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~415~^0.030^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2008~ -~08571~^~606~^2.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~611~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~612~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~613~^1.940^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~614~^0.692^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~617~^3.982^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~618~^6.930^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~08571~^~619~^1.612^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~ -~08571~^~620~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2015~ -~08571~^~626~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2015~ -~08571~^~628~^0.023^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2015~ -~08571~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~ -~08571~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2015~ -~08571~^~645~^4.020^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~646~^8.550^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~675~^6.930^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08571~^~851~^1.612^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~ -~08573~^~312~^0.206^4^0.005^~1~^~A~^^^1^0.195^0.220^3^0.189^0.223^~2, 3~^~11/01/2008~ -~08573~^~315~^1.367^4^0.053^~1~^~A~^^^1^1.260^1.510^3^1.197^1.537^~2, 3~^~11/01/2008~ -~08573~^~404~^0.760^4^0.021^~1~^~A~^^^1^0.710^0.800^3^0.692^0.828^~2, 3~^~11/01/2008~ -~08573~^~405~^0.417^4^0.058^~1~^~A~^^^1^0.350^0.590^3^0.234^0.601^~2, 3~^~11/01/2008~ -~08573~^~406~^8.475^4^1.376^~1~^~A~^^^1^5.800^12.200^3^4.097^12.853^~2, 3~^~11/01/2008~ -~08573~^~410~^0.620^4^0.018^~1~^~A~^^^1^0.580^0.660^3^0.562^0.678^~2, 3~^~11/01/2008~ -~08573~^~415~^0.090^4^0.007^~1~^~A~^^^1^0.080^0.110^3^0.067^0.112^~2, 3~^~11/01/2008~ -~08573~^~501~^0.077^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~502~^0.240^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~503~^0.407^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~504~^0.830^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~505~^0.271^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~506~^0.187^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~508~^0.565^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~509~^0.178^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~510~^0.512^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~511~^0.485^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~513~^0.375^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~514~^0.540^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~515~^4.134^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~516~^0.465^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~517~^1.892^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~518~^0.650^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08573~^~521~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~605~^0.006^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~606~^0.253^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~607~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~608~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~609~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~610~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~611~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~612~^0.004^4^0.002^~1~^~A~^^^1^0.002^0.011^3^-0.002^0.011^~2, 3~^~11/01/2008~ -~08573~^~613~^0.212^4^0.018^~1~^~A~^^^1^0.192^0.265^3^0.157^0.268^~2, 3~^~11/01/2008~ -~08573~^~614~^0.026^4^0.010^~1~^~A~^^^1^0.016^0.056^3^-0.005^0.058^~2, 3~^~11/01/2008~ -~08573~^~615~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~11/01/2008~ -~08573~^~617~^0.163^4^0.024^~1~^~AS~^^^1^0.135^0.235^3^0.087^0.239^~2, 3~^~11/01/2008~ -~08573~^~618~^0.591^4^0.005^~1~^~AS~^^^1^0.585^0.605^3^0.576^0.606^~2, 3~^~11/01/2008~ -~08573~^~619~^0.037^4^0.001^~1~^~AS~^^^1^0.034^0.038^3^0.034^0.040^~2, 3~^~11/01/2008~ -~08573~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~11/01/2008~ -~08573~^~621~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~624~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~11/01/2008~ -~08573~^~625~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08573~^~626~^0.004^4^0.002^~1~^~AS~^^^1^0.001^0.009^3^-0.002^0.009^~2, 3~^~11/01/2008~ -~08573~^~627~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~628~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~11/01/2008~ -~08573~^~629~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~630~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.001^~2, 3~^~11/01/2008~ -~08573~^~631~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~645~^0.175^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~646~^0.630^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~2, 3~^~11/01/2008~ -~08573~^~653~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.000^0.004^~2, 3~^~11/01/2008~ -~08573~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~11/01/2008~ -~08573~^~663~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.015^3^-0.005^0.016^~1, 2, 3~^~11/01/2008~ -~08573~^~664~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~665~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08573~^~670~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~671~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~672~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~2, 3~^~11/01/2008~ -~08573~^~673~^0.004^4^0.002^~1~^~A~^^^1^0.001^0.009^3^-0.002^0.009^~2, 3~^~11/01/2008~ -~08573~^~674~^0.158^4^0.021^~1~^~A~^^^1^0.134^0.220^3^0.092^0.224^~2, 3~^~11/01/2008~ -~08573~^~675~^0.590^4^0.005^~1~^~A~^^^1^0.585^0.605^3^0.575^0.606^~2, 3~^~11/01/2008~ -~08573~^~676~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~11/01/2008~ -~08573~^~685~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~687~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08573~^~689~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08573~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08573~^~697~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~851~^0.037^4^0.001^~1~^~A~^^^1^0.034^0.038^3^0.034^0.040^~2, 3~^~11/01/2008~ -~08573~^~852~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~853~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08573~^~858~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~312~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.039^2^0.028^0.043^~2, 3~^~11/01/2008~ -~08574~^~315~^0.188^3^0.012^~1~^~A~^^^1^0.172^0.211^2^0.137^0.239^~2, 3~^~11/01/2008~ -~08574~^~404~^0.093^3^0.020^~1~^~A~^^^1^0.060^0.130^2^0.006^0.180^~2, 3~^~11/01/2008~ -~08574~^~405~^0.067^3^0.037^~1~^~A~^^^1^0.020^0.140^2^-0.093^0.226^~2, 3~^~11/01/2008~ -~08574~^~406~^0.803^3^0.033^~1~^~A~^^^1^0.770^0.870^2^0.660^0.947^~2, 3~^~11/01/2008~ -~08574~^~410~^0.267^3^0.032^~1~^~A~^^^1^0.210^0.320^2^0.130^0.403^~2, 3~^~11/01/2008~ -~08574~^~415~^0.031^3^0.006^~1~^~A~^^^1^0.020^0.037^2^0.007^0.056^~1, 2, 3~^~11/01/2008~ -~08574~^~501~^0.014^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~502~^0.038^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~503~^0.055^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~504~^0.111^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~505~^0.057^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~507~^0.028^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~508~^0.072^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~509~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~510~^0.076^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~511~^0.062^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~512~^0.031^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~513~^0.065^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~514~^0.079^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~515~^0.573^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~516~^0.070^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~517~^0.351^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~518~^0.091^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08574~^~521~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~605~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08574~^~606~^0.051^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~607~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~608~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~609~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~610~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~611~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~612~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~613~^0.045^3^0.004^~1~^~A~^^^1^0.046^0.059^2^0.036^0.068^~2, 3~^~11/01/2008~ -~08574~^~614~^0.006^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.003^0.011^~2, 3~^~11/01/2008~ -~08574~^~615~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~617~^0.028^3^0.004^~1~^~AS~^^^1^0.026^0.039^2^0.017^0.049^~2, 3~^~11/01/2008~ -~08574~^~618~^0.096^3^0.010^~1~^~AS~^^^1^0.093^0.128^2^0.068^0.155^~2, 3~^~11/01/2008~ -~08574~^~619~^0.006^3^0.001^~1~^~AS~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~11/01/2008~ -~08574~^~620~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~621~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~624~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~625~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~626~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~11/01/2008~ -~08574~^~627~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~628~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08574~^~629~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~630~^0.000^3^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08574~^~631~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~646~^0.102^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08574~^~652~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~653~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~654~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~663~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~664~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~665~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~670~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~671~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~672~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~673~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~11/01/2008~ -~08574~^~674~^0.028^3^0.004^~1~^~A~^^^1^0.026^0.039^2^0.017^0.049^~2, 3~^~11/01/2008~ -~08574~^~675~^0.096^3^0.010^~1~^~A~^^^1^0.093^0.128^2^0.068^0.155^~2, 3~^~11/01/2008~ -~08574~^~676~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~685~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~687~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~689~^0.000^3^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08574~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08574~^~695~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08574~^~697~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~851~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~11/01/2008~ -~08574~^~852~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~853~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08574~^~858~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~312~^0.052^4^0.010^~1~^~A~^^^1^0.038^0.081^3^0.021^0.083^~2, 3~^~11/01/2008~ -~08575~^~315~^0.226^4^0.013^~1~^~A~^^^1^0.211^0.264^3^0.185^0.266^~2, 3~^~11/01/2008~ -~08575~^~404~^0.087^4^0.016^~1~^~A~^^^1^0.060^0.120^3^0.036^0.138^~2, 3~^~11/01/2008~ -~08575~^~405~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.036^0.054^~2, 3~^~11/01/2008~ -~08575~^~406~^0.715^4^0.130^~1~^~A~^^^1^0.340^0.930^3^0.302^1.128^~2, 3~^~11/01/2008~ -~08575~^~410~^0.312^4^0.053^~1~^~A~^^^1^0.160^0.400^3^0.145^0.480^~2, 3~^~11/01/2008~ -~08575~^~415~^0.033^4^0.004^~1~^~A~^^^1^0.020^0.037^3^0.019^0.046^~1, 2, 3~^~11/01/2008~ -~08575~^~501~^0.018^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~502~^0.050^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~503~^0.072^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~504~^0.144^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~505~^0.074^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~506~^0.038^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~507~^0.037^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~508~^0.094^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~509~^0.079^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~510~^0.098^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~511~^0.081^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~512~^0.040^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~513~^0.085^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~514~^0.103^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~515~^0.747^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~516~^0.091^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~517~^0.457^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~518~^0.119^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08575~^~521~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~605~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08575~^~606~^0.099^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~607~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~608~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~609~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~610~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~611~^0.002^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~11/01/2008~ -~08575~^~612~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~11/01/2008~ -~08575~^~613~^0.080^4^0.002^~1~^~A~^^^1^0.059^0.066^3^0.057^0.067^~2, 3~^~11/01/2008~ -~08575~^~614~^0.015^4^0.002^~1~^~A~^^^1^0.010^0.017^3^0.006^0.017^~2, 3~^~11/01/2008~ -~08575~^~615~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~617~^0.056^4^0.002^~1~^~AS~^^^1^0.039^0.049^3^0.037^0.050^~2, 3~^~11/01/2008~ -~08575~^~618~^0.166^4^0.003^~1~^~AS~^^^1^0.124^0.137^3^0.120^0.138^~2, 3~^~11/01/2008~ -~08575~^~619~^0.010^4^0.000^~1~^~AS~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~11/01/2008~ -~08575~^~620~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~621~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~624~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~625~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~626~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.003^3^-0.002^0.003^~2, 3~^~11/01/2008~ -~08575~^~627~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~628~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08575~^~629~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~630~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08575~^~631~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~645~^0.058^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~646~^0.176^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08575~^~652~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~653~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~654~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~663~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~664~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~665~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~670~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~671~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~672~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~673~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~11/01/2008~ -~08575~^~674~^0.056^4^0.002^~1~^~A~^^^1^0.039^0.049^3^0.037^0.050^~2, 3~^~11/01/2008~ -~08575~^~675~^0.166^4^0.003^~1~^~A~^^^1^0.124^0.137^3^0.120^0.138^~2, 3~^~11/01/2008~ -~08575~^~676~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~685~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~687~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~689~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08575~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08575~^~695~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08575~^~697~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~851~^0.010^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~11/01/2008~ -~08575~^~852~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~853~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08575~^~858~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~312~^0.211^4^0.005^~1~^~A~^^^1^0.200^0.221^3^0.196^0.226^~2, 3~^~11/01/2008~ -~08576~^~315~^1.347^4^0.046^~1~^~A~^^^1^1.250^1.460^3^1.201^1.494^~2, 3~^~11/01/2008~ -~08576~^~404~^0.740^4^0.052^~1~^~A~^^^1^0.650^0.890^3^0.574^0.906^~2, 3~^~11/01/2008~ -~08576~^~405~^0.375^4^0.052^~1~^~A~^^^1^0.260^0.490^3^0.209^0.541^~2, 3~^~11/01/2008~ -~08576~^~406~^6.075^4^0.528^~1~^~A~^^^1^5.200^7.600^3^4.394^7.756^~2, 3~^~11/01/2008~ -~08576~^~410~^0.620^4^0.023^~1~^~A~^^^1^0.570^0.680^3^0.548^0.692^~2, 3~^~11/01/2008~ -~08576~^~415~^0.092^4^0.009^~1~^~A~^^^1^0.080^0.120^3^0.062^0.123^~2, 3~^~11/01/2008~ -~08576~^~501~^0.115^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~502~^0.212^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~503~^0.412^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~504~^0.850^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~505~^0.355^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~506~^0.180^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~509~^0.162^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~510~^0.512^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~511~^0.450^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~512~^0.250^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~513~^0.367^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~514~^0.522^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~515~^4.005^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~516~^0.455^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~517~^1.564^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~518~^0.580^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08576~^~521~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~605~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08576~^~606~^0.295^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~607~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~608~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~609~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~610~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~611~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~612~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~2, 3~^~11/01/2008~ -~08576~^~613~^0.265^4^0.004^~1~^~A~^^^1^0.186^0.202^3^0.183^0.206^~2, 3~^~11/01/2008~ -~08576~^~614~^0.018^4^0.000^~1~^~A~^^^1^0.013^0.014^3^0.012^0.014^~2, 3~^~11/01/2008~ -~08576~^~615~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~11/01/2008~ -~08576~^~617~^0.174^4^0.003^~1~^~AS~^^^1^0.121^0.135^3^0.117^0.137^~2, 3~^~11/01/2008~ -~08576~^~618~^0.801^4^0.011^~1~^~AS~^^^1^0.562^0.607^3^0.551^0.623^~2, 3~^~11/01/2008~ -~08576~^~619~^0.048^4^0.000^~1~^~AS~^^^1^0.034^0.036^3^0.034^0.037^~2, 3~^~11/01/2008~ -~08576~^~620~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~621~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~624~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~11/01/2008~ -~08576~^~625~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~626~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.002^~2, 3~^~11/01/2008~ -~08576~^~627~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~628~^0.009^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~11/01/2008~ -~08576~^~629~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^-0.001^0.001^~2, 3~^~11/01/2008~ -~08576~^~631~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~645~^0.183^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~646~^0.849^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08576~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~2, 3~^~11/01/2008~ -~08576~^~653~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~11/01/2008~ -~08576~^~654~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~11/01/2008~ -~08576~^~663~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~664~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~665~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~670~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~671~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~11/01/2008~ -~08576~^~673~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~11/01/2008~ -~08576~^~674~^0.174^4^0.003^~1~^~A~^^^1^0.121^0.135^3^0.117^0.137^~2, 3~^~11/01/2008~ -~08576~^~675~^0.801^4^0.011^~1~^~A~^^^1^0.562^0.607^3^0.551^0.623^~2, 3~^~11/01/2008~ -~08576~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~11/01/2008~ -~08576~^~685~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~687~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~689~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08576~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08576~^~695~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08576~^~697~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~851~^0.048^4^0.000^~1~^~A~^^^1^0.034^0.036^3^0.034^0.037^~2, 3~^~11/01/2008~ -~08576~^~852~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~853~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08576~^~858~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~312~^0.042^4^0.002^~1~^~A~^^^1^0.038^0.048^3^0.035^0.050^~2, 3~^~11/01/2008~ -~08577~^~315~^0.227^4^0.018^~1~^~A~^^^1^0.208^0.280^3^0.171^0.283^~2, 3~^~11/01/2008~ -~08577~^~404~^0.055^4^0.010^~1~^~A~^^^1^0.040^0.080^3^0.024^0.085^~2, 3~^~11/01/2008~ -~08577~^~405~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~11/01/2008~ -~08577~^~406~^0.842^4^0.066^~1~^~A~^^^1^0.680^1.000^3^0.632^1.053^~2, 3~^~11/01/2008~ -~08577~^~410~^0.192^4^0.017^~1~^~A~^^^1^0.150^0.230^3^0.140^0.245^~2, 3~^~11/01/2008~ -~08577~^~415~^0.033^4^0.004^~1~^~A~^^^1^0.020^0.037^3^0.019^0.046^~1, 2, 3~^~11/01/2008~ -~08577~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~502~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~503~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~504~^0.115^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~505~^0.023^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~506~^0.035^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~507~^0.037^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~508~^0.088^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~509~^0.050^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~510~^0.093^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~511~^0.047^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~512~^0.032^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~513~^0.075^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~514~^0.095^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~515~^0.612^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~516~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~517~^0.368^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~518~^0.090^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08577~^~521~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~605~^0.201^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~606~^0.106^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~607~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~608~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~609~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~610~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~611~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~612~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~11/01/2008~ -~08577~^~613~^0.093^4^0.002^~1~^~A~^^^1^0.053^0.062^3^0.049^0.063^~2, 3~^~11/01/2008~ -~08577~^~614~^0.011^4^0.001^~1~^~A~^^^1^0.005^0.010^3^0.004^0.010^~2, 3~^~11/01/2008~ -~08577~^~615~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~617~^0.058^4^0.005^~1~^~AS~^^^1^0.030^0.051^3^0.019^0.052^~2, 3~^~11/01/2008~ -~08577~^~618~^0.201^4^0.002^~1~^~AS~^^^1^0.116^0.127^3^0.114^0.129^~2, 3~^~11/01/2008~ -~08577~^~619~^0.009^4^0.002^~1~^~AS~^^^1^0.000^0.008^3^0.000^0.011^~2, 3~^~11/01/2008~ -~08577~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~11/01/2008~ -~08577~^~621~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~11/01/2008~ -~08577~^~625~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~626~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~11/01/2008~ -~08577~^~627~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~628~^0.005^4^0.001^~1~^~A~^^^1^0.001^0.007^3^-0.002^0.007^~2, 3~^~11/01/2008~ -~08577~^~629~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~630~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08577~^~631~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~645~^0.064^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~646~^0.210^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~652~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~653~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~654~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~663~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~664~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~665~^0.201^4^0.002^~1~^~A~^^^1^0.116^0.127^3^0.114^0.129^~2, 3~^~11/01/2008~ -~08577~^~670~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~671~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~672~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~673~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08577~^~674~^0.058^4^0.005^~1~^~A~^^^1^0.030^0.051^3^0.019^0.052^~2, 3~^~11/01/2008~ -~08577~^~675~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~676~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~685~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~687~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~689~^0.000^4^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08577~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08577~^~695~^0.201^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08577~^~697~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~851~^0.009^4^0.002^~1~^~A~^^^1^0.000^0.008^3^0.000^0.011^~1, 2, 3~^~11/01/2008~ -~08577~^~852~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~853~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08577~^~858~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~312~^0.044^4^0.003^~1~^~A~^^^1^0.039^0.051^3^0.036^0.053^~2, 3~^~11/01/2008~ -~08578~^~315~^0.236^4^0.007^~1~^~A~^^^1^0.222^0.254^3^0.213^0.258^~2, 3~^~11/01/2008~ -~08578~^~404~^0.097^4^0.010^~1~^~A~^^^1^0.080^0.120^3^0.065^0.130^~2, 3~^~11/01/2008~ -~08578~^~405~^0.037^4^0.005^~1~^~A~^^^1^0.030^0.050^3^0.022^0.053^~2, 3~^~11/01/2008~ -~08578~^~406~^0.820^4^0.063^~1~^~A~^^^1^0.640^0.930^3^0.618^1.022^~2, 3~^~11/01/2008~ -~08578~^~410~^0.240^4^0.037^~1~^~A~^^^1^0.190^0.350^3^0.122^0.358^~2, 3~^~11/01/2008~ -~08578~^~415~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~11/01/2008~ -~08578~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~502~^0.075^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~503~^0.132^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~504~^0.244^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~505~^0.082^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~507~^0.052^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~508~^0.182^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~510~^0.167^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~511~^0.099^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~512~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~513~^0.132^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~514~^0.167^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~515~^1.169^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~516~^0.134^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~517~^0.439^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~518~^0.167^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~08578~^~521~^0.000^4^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~605~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08578~^~606~^0.094^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~607~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~608~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~609~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~610~^0.000^2^^~1~^~A~^^~N~^1^0.000^0.000^^^^~1~^~11/01/2008~ -~08578~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08578~^~612~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~11/01/2008~ -~08578~^~613~^0.083^3^0.002^~1~^~A~^^^1^0.059^0.065^2^0.053^0.069^~2, 3~^~11/01/2008~ -~08578~^~614~^0.008^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~11/01/2008~ -~08578~^~615~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~617~^0.046^3^0.001^~1~^~AS~^^^1^0.032^0.036^2^0.029^0.039^~2, 3~^~11/01/2008~ -~08578~^~618~^0.183^3^0.008^~1~^~AS~^^^1^0.122^0.149^2^0.100^0.168^~2, 3~^~11/01/2008~ -~08578~^~619~^0.011^3^0.001^~1~^~AS~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~11/01/2008~ -~08578~^~620~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~621~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08578~^~625~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~626~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~11/01/2008~ -~08578~^~627~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~628~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~11/01/2008~ -~08578~^~629~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~630~^0.000^3^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08578~^~631~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~645~^0.049^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~646~^0.194^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~ -~08578~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08578~^~653~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~654~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~663~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~664~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~665~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~670~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~11/01/2008~ -~08578~^~672~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~673~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2008~ -~08578~^~674~^0.046^3^0.001^~1~^~A~^^^1^0.032^0.036^2^0.029^0.039^~2, 3~^~11/01/2008~ -~08578~^~675~^0.183^3^0.008^~1~^~A~^^^1^0.122^0.149^2^0.100^0.168^~2, 3~^~11/01/2008~ -~08578~^~676~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~685~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~687~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~689~^0.000^3^0.000^~1~^~AS~^^~N~^1^0.000^0.000^^^^~2, 3~^~11/01/2008~ -~08578~^~693~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08578~^~695~^0.000^0^^~4~^~NC~^^~N~^^^^^^^^~11/01/2008~ -~08578~^~697~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~851~^0.011^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~11/01/2008~ -~08578~^~852~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~853~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08578~^~858~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2008~ -~08580~^~312~^0.610^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~315~^1.600^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~404~^1.930^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~405~^0.610^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~406~^27.000^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~410~^1.100^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~415~^0.690^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~502~^0.715^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~503~^0.945^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~504~^2.410^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~505~^1.465^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~506~^0.440^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~507~^0.145^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~508~^1.300^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~509~^0.740^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~510~^1.150^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~511~^1.745^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~512~^0.675^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~513~^1.320^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~514~^2.585^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~515~^4.785^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~516~^1.070^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~517~^1.045^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~518~^1.380^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~08580~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~08625~^~404~^1.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~405~^1.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~406~^20.560^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~415~^2.120^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08625~^~605~^0.018^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~606~^3.115^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~645~^1.359^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08625~^~646~^0.805^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~404~^0.340^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~405~^0.260^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~406~^1.980^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~415~^0.193^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08627~^~605~^0.110^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~606~^1.130^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~645~^6.390^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08627~^~646~^3.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08628~^~404~^1.346^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~405~^1.526^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~406~^17.871^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~415~^1.795^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~ -~08628~^~606~^0.765^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~645~^1.353^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08628~^~646~^1.302^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~404~^1.798^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~405~^2.036^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~406~^23.961^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~415~^2.395^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~605~^0.013^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~606~^2.291^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~645~^0.593^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08629~^~646~^0.764^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~ -~08632~^~404~^0.687^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08632~^~405~^0.850^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~406~^9.580^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~415~^0.880^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08632~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~606~^0.874^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08632~^~645~^1.595^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08632~^~646~^1.524^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~ -~08633~^~312~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~404~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~405~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~406~^8.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~415~^0.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08633~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2012~ -~08633~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~613~^0.476^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~614~^0.078^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~617~^2.465^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~618~^1.551^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~619~^0.149^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~626~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~628~^0.025^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~630~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~08633~^~645~^2.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~646~^1.700^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08633~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08633~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08639~^~404~^0.900^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~405~^1.170^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~ -~08639~^~406~^13.630^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~415~^1.370^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~ -~08639~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08639~^~606~^1.160^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~645~^2.190^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08639~^~646~^1.830^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~ -~08640~^~404~^0.730^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~405~^0.140^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~406~^0.780^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~415~^0.120^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~ -~08640~^~606~^1.110^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~645~^1.980^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08640~^~646~^2.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~404~^1.447^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~405~^0.617^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~406~^9.085^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~415~^0.980^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~605~^0.493^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~606~^2.091^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~645~^2.304^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08641~^~646~^1.760^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08642~^~404~^1.065^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~405~^1.207^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~406~^14.195^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~415~^1.420^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~ -~08642~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~08642~^~606~^1.026^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~645~^1.957^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08642~^~646~^1.638^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~ -~08655~^~312~^0.140^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~405~^1.500^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~406~^17.200^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08655~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08655~^~606~^0.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~613~^0.562^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08655~^~614~^0.130^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08655~^~617~^2.678^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08655~^~618~^1.611^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~619~^0.089^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~626~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08655~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~628~^0.015^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~08655~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~630~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~08655~^~645~^2.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~08655~^~646~^1.700^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08656~^~312~^0.090^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~315~^0.180^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~404~^0.130^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~405~^0.010^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~406~^0.220^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~410~^0.070^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~415~^0.030^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~606~^0.620^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~613~^0.499^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~614~^0.098^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~615~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~617~^0.880^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~618~^1.503^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~619~^1.505^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~620~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~624~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~626~^0.005^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~628~^0.010^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~645~^0.900^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~646~^3.010^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08656~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~653~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~654~^0.002^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~671~^0.004^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~857~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08656~^~858~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~ -~08657~^~312~^0.301^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~404~^0.111^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~405~^0.068^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~406~^1.900^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~415~^0.243^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~08657~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~617~^2.214^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~618~^1.025^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~619~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~626~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~628~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~645~^2.237^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08657~^~646~^1.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~08662~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~404~^1.200^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~405~^1.400^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~406~^16.100^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~ -~08662~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~645~^2.500^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08662~^~646~^1.500^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~08665~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~404~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~405~^1.400^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~406~^16.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~415~^1.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~08665~^~605~^0.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~645~^2.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08665~^~646~^1.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~08672~^~404~^1.000^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08672~^~405~^1.120^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08672~^~406~^13.320^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08672~^~415~^1.330^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~ -~08672~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~08672~^~606~^1.600^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~08672~^~645~^1.600^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~08672~^~646~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08673~^~404~^1.100^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~405~^0.990^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~406~^14.060^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~415~^1.330^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08673~^~606~^0.400^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~ -~08673~^~645~^0.200^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~ -~08673~^~646~^0.850^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08674~^~606~^0.500^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08674~^~645~^1.660^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08674~^~646~^0.920^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~404~^2.090^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~405~^1.990^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~406~^23.510^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~415~^2.690^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~ -~08675~^~606~^0.620^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~645~^2.250^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08675~^~646~^1.350^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~404~^1.250^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~405~^1.410^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~406~^16.670^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~415~^1.660^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~ -~08676~^~606~^0.630^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~645~^1.110^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08676~^~646~^1.320^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~08680~^~312~^0.240^12^0.005^~1~^~A~^^^1^0.222^0.289^10^0.228^0.251^~2, 3~^~04/01/2014~ -~08680~^~315~^2.297^12^0.026^~1~^~A~^^^1^2.190^2.550^6^2.232^2.361^~2, 3~^~04/01/2014~ -~08680~^~404~^1.069^6^0.063^~1~^~A~^^^1^0.860^1.530^2^0.825^1.314^~2, 3~^~04/01/2014~ -~08680~^~405~^1.002^6^0.042^~1~^~A~^^^1^0.900^1.300^2^0.821^1.184^~2, 3~^~04/01/2014~ -~08680~^~406~^11.739^6^0.765^~1~^~A~^^^1^10.400^16.300^2^8.548^14.931^~2, 3~^~04/01/2014~ -~08680~^~410~^0.616^4^0.132^~1~^~A~^^^1^0.430^0.970^1^-0.962^2.194^~2, 3~^~04/01/2014~ -~08680~^~415~^1.464^6^0.061^~1~^~A~^^^1^1.100^1.900^3^1.261^1.668^~2, 3~^~04/01/2014~ -~08680~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~606~^0.778^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~609~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.007^2^-0.004^0.007^~1, 2, 3~^~04/01/2014~ -~08680~^~610~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.010^2^-0.006^0.010^~1, 2, 3~^~04/01/2014~ -~08680~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~612~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^3^0.011^0.013^~2, 3~^~04/01/2014~ -~08680~^~613~^0.679^6^0.023^~1~^~A~^^^1^0.611^0.760^3^0.607^0.752^~2, 3~^~04/01/2014~ -~08680~^~614~^0.068^6^0.005^~1~^~A~^^^1^0.052^0.080^4^0.054^0.081^~2, 3~^~04/01/2014~ -~08680~^~615~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^3^0.004^0.007^~2, 3~^~04/01/2014~ -~08680~^~617~^1.383^6^0.063^~1~^~AS~^^^1^1.224^1.570^4^1.207^1.559^~2, 3~^~04/01/2014~ -~08680~^~618~^1.548^6^0.037^~1~^~AS~^^^1^1.472^1.689^3^1.425^1.671^~2, 3~^~04/01/2014~ -~08680~^~619~^0.051^6^0.001^~1~^~AS~^^^1^0.048^0.053^4^0.049^0.053^~2, 3~^~04/01/2014~ -~08680~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~08680~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~626~^0.008^6^0.000^~1~^~AS~^^^1^0.007^0.009^3^0.007^0.009^~2, 3~^~04/01/2014~ -~08680~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~628~^0.032^6^0.001^~1~^~A~^^^1^0.028^0.035^4^0.028^0.035^~2, 3~^~04/01/2014~ -~08680~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^4^0.002^0.003^~2, 3~^~04/01/2014~ -~08680~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~645~^1.432^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~646~^1.600^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~08680~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~08680~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.003^0.005^~2, 3~^~04/01/2014~ -~08680~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~663~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~08680~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~08680~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~671~^0.006^6^0.001^~1~^~A~^^^1^0.002^0.009^3^0.003^0.010^~1, 2, 3~^~04/01/2014~ -~08680~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~08680~^~673~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^3^0.007^0.009^~2, 3~^~04/01/2014~ -~08680~^~674~^1.382^6^0.063^~1~^~A~^^^1^1.224^1.569^4^1.207^1.558^~2, 3~^~04/01/2014~ -~08680~^~675~^1.547^6^0.037^~1~^~A~^^^1^1.471^1.687^3^1.424^1.669^~2, 3~^~04/01/2014~ -~08680~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~08680~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~08680~^~687~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~08680~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~08680~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~851~^0.050^6^0.001^~1~^~A~^^^1^0.047^0.053^4^0.047^0.053^~2, 3~^~04/01/2014~ -~08680~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08680~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~08685~^~404~^2.378^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~405~^1.348^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~406~^15.855^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~415~^1.586^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08685~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08685~^~606~^0.839^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~645~^2.689^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08685~^~646~^1.465^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~404~^1.018^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~405~^0.935^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~406~^10.446^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~415~^1.056^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08686~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08686~^~606~^1.157^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~645~^2.196^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08686~^~646~^1.852^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~404~^0.735^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~405~^0.865^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~406~^10.177^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~415~^1.018^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08687~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08687~^~606~^1.188^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~645~^2.185^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08687~^~646~^1.807^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~404~^0.762^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~405~^1.058^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~406~^12.448^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~415~^1.241^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08688~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08688~^~606~^0.926^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~645~^1.713^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08688~^~646~^1.416^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~404~^0.352^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~405~^0.115^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~406~^1.557^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~415~^0.127^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~605~^0.026^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~606~^1.648^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~645~^3.742^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08689~^~646~^2.863^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~404~^0.269^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~405~^0.090^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~406~^1.089^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~415~^0.148^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~605~^0.039^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~606~^1.301^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~645~^1.964^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08690~^~646~^6.282^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~404~^0.378^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~405~^0.215^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~406~^1.687^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~415~^0.158^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~606~^1.041^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~645~^1.363^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08691~^~646~^1.340^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~404~^0.293^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~405~^0.188^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~406~^1.870^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~415~^0.121^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08692~^~606~^1.114^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~645~^5.242^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08692~^~646~^2.641^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~404~^0.334^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~405~^0.250^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~406~^1.330^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~415~^0.231^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~605~^0.017^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~606~^1.387^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~645~^5.695^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08693~^~646~^3.147^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~404~^0.741^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~405~^0.870^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~406~^10.871^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~415~^1.025^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~ -~08694~^~605~^0.000^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~ -~08694~^~606~^1.207^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~645~^2.224^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08694~^~646~^1.839^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~ -~08709~^~404~^0.210^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~405~^0.110^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~406~^5.440^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~415~^0.280^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~605~^0.000^0^^~4~^~BFZN~^^~N~^^^^^^^^~01/01/2015~ -~08709~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~645~^0.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~08709~^~646~^1.120^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~ -~09001~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09001~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~410~^0.309^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~415~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09001~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09001~^~606~^0.068^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~613~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~614~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~617~^0.081^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~618~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~619~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~645~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09001~^~646~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09002~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09002~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~410~^0.205^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~415~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09002~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09002~^~606~^0.068^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~613~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~614~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~617~^0.081^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~618~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~619~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~645~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09002~^~646~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09003~^~312~^0.027^13^0.001^~1~^~A~^^^2^0.019^0.035^2^0.021^0.034^~2~^~06/01/2003~ -~09003~^~315~^0.035^26^0.002^~1~^~A~^^^4^0.026^0.057^4^0.030^0.040^~1, 2~^~06/01/2003~ -~09003~^~404~^0.017^23^0.002^~1~^~A~^^^3^0.007^0.030^4^0.011^0.023^~1, 2~^~06/01/2003~ -~09003~^~405~^0.026^20^0.004^~1~^~A~^^^2^0.015^0.049^2^0.010^0.042^~1, 2~^~06/01/2003~ -~09003~^~406~^0.091^13^0.006^~1~^~A~^^^2^0.070^0.130^1^0.010^0.172^~2~^~06/01/2003~ -~09003~^~410~^0.061^23^0.012^~1~^~A~^^^3^0.030^0.128^3^0.022^0.099^~1, 2~^~06/01/2003~ -~09003~^~415~^0.041^23^0.001^~1~^~A~^^^3^0.028^0.056^3^0.038^0.044^~2~^~06/01/2003~ -~09003~^~501~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~502~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~504~^0.013^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~505~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~506~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~508~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~509~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~511~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~512~^0.005^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~513~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~514~^0.070^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~515~^0.025^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~516~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~517~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~518~^0.010^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09003~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09003~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09003~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~611~^0.000^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~612~^0.001^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~613~^0.024^4^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~614~^0.003^4^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~617~^0.007^4^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~618~^0.043^4^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~619~^0.009^4^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~626~^0.000^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09003~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09003~^~646~^0.051^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~312~^0.031^164^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~315~^0.038^4^0.005^~1~^~A~^^^1^0.029^0.065^2^0.014^0.062^~1, 2, 3~^~09/01/2002~ -~09004~^~404~^0.019^4^0.002^~1~^~A~^^^1^0.016^0.022^1^-0.009^0.046^~2, 3~^~09/01/2002~ -~09004~^~405~^0.028^4^0.008^~1~^~A~^^^1^0.015^0.038^1^-0.068^0.123^~2, 3~^~09/01/2002~ -~09004~^~406~^0.091^6^0.018^~1~^^^^^^^^^^^~08/01/1982~ -~09004~^~410~^0.071^4^0.005^~1~^~A~^^^1^0.058^0.089^1^0.020^0.121^~2, 3~^~09/01/2002~ -~09004~^~415~^0.037^4^0.004^~1~^~A~^^^1^0.029^0.045^1^-0.007^0.082^~2, 3~^~09/01/2002~ -~09004~^~501~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~502~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~504~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~505~^0.013^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~506~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~508~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~509~^0.001^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~511~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~512~^0.005^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~513~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~514~^0.074^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~515~^0.026^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~516~^0.009^0^^~4~^~BFPN~^~09003~^^^^^^^^^~09/01/2002~ -~09004~^~517~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~518~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2002~ -~09004~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09004~^~606~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~613~^0.017^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~617~^0.005^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~618~^0.031^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~619~^0.007^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09004~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09004~^~646~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09005~^~312~^0.035^6^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~315~^0.118^6^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~404~^0.016^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~405~^0.012^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~406~^0.095^6^0.029^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~410~^0.046^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~415~^0.044^6^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09005~^~606~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~613~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~618~^0.086^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09005~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09005~^~646~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~312~^0.046^6^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~315~^0.142^6^0.021^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~404~^0.017^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~405~^0.011^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~406~^0.061^6^0.017^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~410~^0.046^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~415~^0.046^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~501~^0.003^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~502~^0.010^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~503~^0.011^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~504~^0.017^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~505~^0.018^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~506~^0.003^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~507~^0.004^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~508~^0.008^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~509~^0.005^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~510~^0.013^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~511~^0.009^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~512~^0.004^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~513~^0.010^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~514~^0.049^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~515~^0.029^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~516~^0.011^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~517~^0.010^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~518~^0.011^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09006~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09006~^~606~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~618~^0.101^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~619~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09006~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09006~^~646~^0.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~312~^0.051^6^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~315~^0.165^6^0.021^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~404~^0.009^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~405~^0.010^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~406~^0.081^6^0.028^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~410~^0.032^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~415~^0.044^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~504~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~513~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~514~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~515~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~516~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~517~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09008~^~606~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~613~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~618~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09008~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09008~^~646~^0.126^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~312~^0.271^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~315~^0.128^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~404~^0.046^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~405~^0.130^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~406~^0.680^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~410~^0.432^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~415~^0.280^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~502~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~503~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~504~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~505~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~508~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~509~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~510~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~513~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~514~^0.230^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~515~^0.137^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~517~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~518~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~606~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~613~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~618~^0.141^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09009~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09009~^~646~^0.171^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~315~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~404~^0.008^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~405~^0.029^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~406~^0.140^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~410~^0.080^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~415~^0.054^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~503~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~505~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~512~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~513~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~514~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~515~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~516~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~517~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~613~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09010~^~646~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~312~^0.191^37^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~315~^0.090^19^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~404~^0.000^17^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~405~^0.159^18^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~406~^0.927^18^0.096^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~410~^0.245^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09011~^~415~^0.125^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~503~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~504~^0.057^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~505~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~510~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~511~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~514~^0.162^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~515~^0.097^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~518~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~613~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~618~^0.077^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09011~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09011~^~646~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~315~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~404~^0.006^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~405~^0.019^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~406~^0.129^3^0.032^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~410~^0.057^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~415~^0.050^3^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~504~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~505~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~508~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~510~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~511~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~513~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~514~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~515~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~516~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~517~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09012~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09012~^~646~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~312~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~404~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~405~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~406~^0.121^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~410~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~415~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~504~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~505~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~508~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~513~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~514~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~515~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~516~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~517~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~518~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09013~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~312~^0.058^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~315~^0.169^6^0.031^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~404~^0.013^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~405~^0.011^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~406~^0.042^6^0.011^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~410~^0.054^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~415~^0.034^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~503~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~505~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~512~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~513~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~514~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~515~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~516~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~517~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09014~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09014~^~646~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~312~^0.065^6^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~315~^0.146^6^0.016^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~404~^0.014^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~405~^0.011^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~406~^0.043^6^0.014^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~410~^0.057^6^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~415~^0.032^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~503~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~504~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~505~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~513~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~514~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~515~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~516~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~517~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~518~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09015~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09015~^~646~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~312~^0.012^14^0.000^~1~^~A~^^^6^0.008^0.024^7^0.012^0.013^~1, 2, 3~^~05/01/2008~ -~09016~^~315~^0.074^59^0.006^~1~^~A~^^^17^0.020^0.255^19^0.062^0.087^~1, 2, 3~^~05/01/2008~ -~09016~^~404~^0.021^9^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~405~^0.017^5^0.011^~1~^^^^^^^^^^^~08/01/1982~ -~09016~^~406~^0.073^4^0.003^~1~^~A~^^^1^0.067^0.082^3^0.063^0.084^~2, 3~^~05/01/2008~ -~09016~^~410~^0.049^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09016~^~415~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09016~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09016~^~606~^0.022^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~613~^0.018^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~617~^0.005^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~618~^0.033^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~619~^0.007^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~645~^0.006^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09016~^~646~^0.039^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09017~^~312~^0.050^4^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~315~^0.225^4^0.047^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~404~^0.011^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~405~^0.054^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~406~^0.135^3^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~410~^0.223^3^0.061^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~415~^0.116^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09017~^~606~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~613~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~618~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09017~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09017~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~312~^0.014^4^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~315~^0.063^4^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~404~^0.003^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~405~^0.015^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~406~^0.038^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~410~^0.063^3^0.017^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~415~^0.033^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09018~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09018~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09018~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~312~^0.027^11^0.001^~1~^~A~^^^4^0.019^0.030^3^0.022^0.031^~1, 2~^~06/01/2008~ -~09019~^~315~^0.025^11^0.004^~1~^~A~^^^4^0.017^0.037^3^0.012^0.038^~1, 2~^~06/01/2008~ -~09019~^~404~^0.026^3^0.002^~1~^~A~^^^1^0.024^0.029^2^0.020^0.033^~2, 3~^~06/01/2008~ -~09019~^~405~^0.030^3^0.001^~1~^~A~^^^1^0.027^0.031^2^0.024^0.035^~2, 3~^~06/01/2008~ -~09019~^~406~^0.084^3^0.010^~1~^~A~^^^1^0.072^0.104^2^0.041^0.127^~2, 3~^~06/01/2008~ -~09019~^~410~^0.041^3^0.000^~1~^~A~^^^1^0.041^0.041^^^^~1, 2, 3~^~06/01/2008~ -~09019~^~415~^0.027^3^0.011^~1~^~A~^^^1^0.016^0.048^2^-0.019^0.072^~1, 2, 3~^~06/01/2008~ -~09019~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~502~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~503~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~505~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~511~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~514~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~517~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09019~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09019~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~618~^0.012^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09019~^~646~^0.014^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09020~^~312~^0.032^51^0.002^~1~^~A~^^^15^0.022^0.062^14^0.028^0.036^~1, 2~^~06/01/2008~ -~09020~^~315~^0.030^32^0.006^~1~^~A~^^^14^0.020^0.123^13^0.017^0.044^~1, 2~^~06/01/2008~ -~09020~^~404~^0.017^8^0.007^~1~^~A~^^^2^0.009^0.025^1^-0.073^0.107^~2~^~06/01/2008~ -~09020~^~405~^0.022^8^0.012^~1~^~A~^^^2^0.010^0.038^1^-0.136^0.181^~2~^~06/01/2008~ -~09020~^~406~^0.072^8^0.010^~1~^~A~^^^2^0.025^0.095^1^-0.052^0.197^~2~^~06/01/2008~ -~09020~^~410~^0.044^8^0.004^~1~^~A~^^^2^0.041^0.055^1^-0.005^0.094^~1, 2~^~06/01/2008~ -~09020~^~415~^0.027^8^0.004^~1~^~A~^^^2^0.019^0.037^1^-0.018^0.071^~2~^~06/01/2008~ -~09020~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~504~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~513~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~514~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~515~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~516~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~517~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09020~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09020~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09020~^~646~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~312~^0.078^21^0.006^~1~^~A~^^^8^0.046^0.172^6^0.063^0.094^~1, 2, 3~^~01/01/2003~ -~09021~^~315~^0.077^21^0.002^~1~^~A~^^^8^0.057^0.104^10^0.073^0.082^~1, 2, 3~^~01/01/2003~ -~09021~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~410~^0.240^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~415~^0.054^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~501~^0.015^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~502~^0.047^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~503~^0.041^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~504~^0.077^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~505~^0.097^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~506~^0.006^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~507~^0.003^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~508~^0.052^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~509~^0.029^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~510~^0.047^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~511~^0.045^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~512~^0.027^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~513~^0.068^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~514~^0.314^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~515~^0.157^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~516~^0.040^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~517~^0.101^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~518~^0.083^12^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09021~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~613~^0.024^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~614~^0.003^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~617~^0.170^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~618~^0.077^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09021~^~645~^0.170^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09021~^~646~^0.077^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~312~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~315~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~404~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~406~^0.395^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~501~^0.013^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~502~^0.026^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~503~^0.022^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~504~^0.042^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~505~^0.049^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~506~^0.004^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~507~^0.002^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~508~^0.030^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~509~^0.017^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~510~^0.026^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~511~^0.028^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~512~^0.012^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~513~^0.035^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~514~^0.163^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~515~^0.072^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~516~^0.022^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~517~^0.043^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~518~^0.041^24^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09022~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~617~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09022~^~645~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09022~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~312~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~315~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~405~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~406~^0.437^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~503~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~504~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~505~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~510~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~511~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~515~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~516~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~517~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~518~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09023~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~613~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~618~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09023~^~646~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~312~^0.054^6^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~315~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~404~^0.018^6^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~405~^0.019^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~406~^0.344^3^0.028^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~410~^0.092^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09024~^~415~^0.054^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09024~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~502~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~503~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~504~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~505~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~509~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~510~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~513~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~514~^0.145^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~515~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~517~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09024~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~613~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09024~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09024~^~646~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~312~^0.040^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~315~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~406~^0.600^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~503~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~508~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~509~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~511~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~513~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~514~^0.137^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~515~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09025~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~617~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~645~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09025~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~312~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~315~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~404~^0.016^36^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~405~^0.020^31^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~406~^0.304^31^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~502~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~504~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~505~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~513~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~514~^0.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~515~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09026~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09026~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09026~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~312~^0.078^58^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~315~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~404~^0.020^138^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~405~^0.022^133^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~406~^0.376^134^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~502~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~504~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~505~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~513~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~514~^0.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~515~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09027~^~606~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~617~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09027~^~645~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09027~^~646~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~312~^0.065^32^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~315~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~404~^0.019^62^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~405~^0.023^66^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~406~^0.416^59^0.019^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~504~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~505~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~508~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~511~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~514~^0.117^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~515~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~518~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09028~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09028~^~646~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~312~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~315~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~404~^0.016^4^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~405~^0.022^4^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~406~^0.340^4^0.030^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~410~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~415~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~503~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~504~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~505~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~509~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~510~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~514~^0.126^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~515~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~516~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~517~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09029~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~613~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~618~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09029~^~646~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~312~^0.576^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~315~^0.369^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~404~^0.043^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~405~^0.148^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~406~^3.580^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~410~^1.067^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~415~^0.520^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~501~^0.087^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~502~^0.176^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~503~^0.151^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~504~^0.288^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~505~^0.339^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~508~^0.203^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~509~^0.114^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~511~^0.190^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~512~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~513~^0.241^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~514~^1.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~515~^0.495^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~516~^0.151^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~517~^0.293^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~518~^0.281^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~606~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~613~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~617~^0.268^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~618~^0.121^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~645~^0.268^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09030~^~646~^0.121^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~312~^0.227^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~315~^0.145^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~404~^0.013^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~405~^0.067^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~406~^1.630^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~410~^0.468^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~415~^0.161^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~503~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~504~^0.113^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~505~^0.134^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~508~^0.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~509~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~510~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~511~^0.075^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~513~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~514~^0.442^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~515~^0.195^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~516~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~517~^0.116^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~617~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~645~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09031~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09032~^~312~^0.343^3^0.055^~1~^~A~^^^1^0.233^0.405^2^0.105^0.581^~2, 3~^~05/01/2002~ -~09032~^~315~^0.235^3^0.032^~1~^~A~^^^1^0.173^0.282^2^0.096^0.374^~2, 3~^~05/01/2002~ -~09032~^~404~^0.015^3^0.004^~1~^~A~^^^1^0.010^0.023^2^-0.002^0.032^~2, 3~^~05/01/2002~ -~09032~^~405~^0.074^3^0.001^~1~^~A~^^^1^0.073^0.076^2^0.071^0.078^~2, 3~^~05/01/2002~ -~09032~^~406~^2.589^3^0.019^~1~^~A~^^^1^2.558^2.622^2^2.509^2.668^~2, 3~^~05/01/2002~ -~09032~^~410~^0.516^2^^~1~^~A~^^^1^0.515^0.516^1^^^^~05/01/2002~ -~09032~^~415~^0.143^3^0.006^~1~^~A~^^^1^0.136^0.155^2^0.118^0.169^~2, 3~^~05/01/2002~ -~09032~^~501~^0.016^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~502~^0.073^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~503~^0.063^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~504~^0.105^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~505~^0.083^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~506~^0.015^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~507~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~508~^0.062^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~509~^0.039^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~510~^0.078^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~511~^0.066^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~512~^0.047^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~513~^0.110^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~514~^0.937^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~515~^0.188^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~516~^0.070^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~517~^0.821^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~518~^0.087^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~09032~^~606~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~613~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~614~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~617~^0.074^3^0.000^~1~^~A~^^^1^0.074^0.074^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~618~^0.074^3^0.000^~1~^~A~^^^1^0.074^0.074^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~645~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~646~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09032~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09032~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2002~ -~09033~^~312~^0.121^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~315~^0.083^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~404~^0.005^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~405~^0.026^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~406~^0.915^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~410~^0.211^3^0.035^~1~^^^^^^^^^^^~12/01/2006~ -~09033~^~415~^0.051^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~501~^0.006^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~502~^0.026^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~503~^0.022^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~504~^0.037^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~505~^0.029^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~506~^0.005^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~507~^0.007^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~508~^0.022^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~509~^0.014^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~510~^0.028^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~511~^0.023^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~512~^0.017^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~513~^0.039^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~514~^0.331^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~515~^0.066^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~516~^0.025^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~517~^0.290^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~518~^0.031^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2003~ -~09033~^~606~^0.006^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~607~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~608~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~609~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~610~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~611~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~612~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~613~^0.006^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~614~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~617~^0.026^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~618~^0.026^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~619~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~620~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~621~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~626~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~627~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~628~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~629~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~630~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~631~^0.000^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~645~^0.026^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09033~^~646~^0.026^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~ -~09034~^~312~^0.138^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~315~^0.088^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~404~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~405~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~406~^0.853^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~410~^0.191^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~415~^0.103^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~502~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~503~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~504~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~505~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~508~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~510~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~511~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~513~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~514~^0.269^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~515~^0.119^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~516~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~518~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~617~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~645~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09034~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~312~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~315~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~410~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~415~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~503~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~505~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~509~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~510~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~511~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~515~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~516~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~517~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~518~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09035~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~617~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~09035~^~645~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09035~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09036~^~312~^0.019^4^0.000^~1~^~A~^^^1^0.018^0.025^2^0.018^0.019^~1, 2, 3~^~12/01/2016~ -~09036~^~315~^0.018^4^0.001^~1~^~A~^^^1^0.017^0.021^2^0.015^0.022^~2, 3~^~12/01/2016~ -~09036~^~404~^0.060^2^^~1~^~A~^^^1^0.060^0.060^^^^^~12/01/2016~ -~09036~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~12/01/2016~ -~09036~^~406~^0.150^2^^~1~^~A~^^^1^0.150^0.150^^^^^~12/01/2016~ -~09036~^~410~^0.040^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09036~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~12/01/2016~ -~09036~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~09036~^~606~^0.033^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09036~^~607~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~608~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~609~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~610~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~611~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~612~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~613~^0.029^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~614~^0.004^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~617~^0.186^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~618~^0.087^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~619~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~620~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~621~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~626~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~627~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~628~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~629~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~630~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~631~^0.000^0^^~4~^~BFFN~^~09357~^^^^^^^^^~12/01/2016~ -~09036~^~645~^0.186^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09036~^~646~^0.087^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09037~^~312~^0.190^17^0.039^~1~^~A~^^^5^0.090^0.380^2^0.033^0.348^~2~^~03/01/2003~ -~09037~^~315~^0.142^17^0.007^~1~^~A~^^^5^0.070^0.190^2^0.116^0.167^~2~^~03/01/2003~ -~09037~^~404~^0.067^16^0.002^~1~^~A~^^^4^0.011^0.100^2^0.056^0.078^~2~^~03/01/2003~ -~09037~^~405~^0.130^16^0.008^~1~^~A~^^^4^0.037^0.180^2^0.094^0.167^~2~^~03/01/2003~ -~09037~^~406~^1.738^16^0.081^~1~^~A~^^^4^0.357^2.510^2^1.391^2.085^~2~^~03/01/2003~ -~09037~^~410~^1.389^16^0.301^~1~^~A~^^^4^0.612^2.710^2^0.093^2.685^~2~^~03/01/2003~ -~09037~^~415~^0.257^15^0.046^~1~^~A~^^^4^0.070^0.452^2^0.058^0.456^~2~^~03/01/2003~ -~09037~^~501~^0.025^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~502~^0.073^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~503~^0.084^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~504~^0.143^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~505~^0.132^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~506~^0.038^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~507~^0.027^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~508~^0.097^0^^~4~^~BFPN~^~09038~^^^^^^^^^~08/01/2010~ -~09037~^~509~^0.049^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~510~^0.107^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~511~^0.088^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~512~^0.049^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~513~^0.109^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~514~^0.236^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~515~^0.287^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~516~^0.104^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~517~^0.098^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~518~^0.114^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09037~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~09037~^~606~^2.126^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09037~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09037~^~609~^0.001^7^0.001^~1~^~A~^^^2^0.000^0.007^2^-0.003^0.006^~1, 2, 3~^~03/01/2003~ -~09037~^~610~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~611~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~612~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~613~^2.075^8^0.104^~1~^~A~^^^2^1.730^2.542^6^1.820^2.330^~2, 3~^~03/01/2003~ -~09037~^~614~^0.049^8^0.005^~1~^~A~^^^2^0.007^0.082^5^0.037^0.062^~1, 2, 3~^~03/01/2003~ -~09037~^~615~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~617~^9.066^8^0.474^~1~^~A~^^^2^7.440^10.890^6^7.901^10.230^~2, 3~^~03/01/2003~ -~09037~^~618~^1.674^8^0.063^~1~^~A~^^^2^1.442^1.969^4^1.490^1.859^~2, 3~^~03/01/2003~ -~09037~^~619~^0.125^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09037~^~620~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~624~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~625~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~626~^0.698^8^0.039^~1~^~A~^^^2^0.500^0.881^5^0.600^0.797^~2, 3~^~03/01/2003~ -~09037~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~628~^0.025^8^0.002^~1~^~A~^^^2^0.020^0.033^6^0.021^0.029^~2, 3~^~03/01/2003~ -~09037~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~645~^9.799^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~646~^1.816^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09037~^~652~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~653~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~672~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~685~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~687~^0.010^8^0.001^~1~^~A~^^^2^0.000^0.016^3^0.005^0.015^~1, 2, 3~^~03/01/2003~ -~09037~^~689~^0.016^8^0.002^~1~^~A~^^^2^0.000^0.040^3^0.009^0.024^~1, 2, 3~^~03/01/2003~ -~09037~^~697~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09037~^~851~^0.111^4^0.007^~1~^~A~^^^1^0.096^0.128^3^0.089^0.132^~2, 3~^~03/01/2003~ -~09038~^~312~^0.170^12^0.044^~1~^~A~^^^3^0.090^0.380^2^-0.020^0.361^~2~^~03/01/2003~ -~09038~^~315~^0.149^12^0.007^~1~^~A~^^^3^0.106^0.190^2^0.118^0.181^~2~^~03/01/2003~ -~09038~^~404~^0.075^12^0.003^~1~^~A~^^^3^0.052^0.100^2^0.062^0.087^~2~^~03/01/2003~ -~09038~^~405~^0.143^12^0.010^~1~^~A~^^^3^0.119^0.180^2^0.100^0.185^~2~^~03/01/2003~ -~09038~^~406~^1.912^12^0.094^~1~^~A~^^^3^1.460^2.510^2^1.508^2.316^~2~^~03/01/2003~ -~09038~^~410~^1.463^12^0.350^~1~^~A~^^^3^0.930^2.710^2^-0.044^2.971^~2~^~03/01/2003~ -~09038~^~415~^0.287^11^0.054^~1~^~A~^^^3^0.196^0.452^2^0.055^0.518^~2~^~03/01/2003~ -~09038~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~502~^0.072^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~503~^0.083^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~504~^0.141^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~505~^0.129^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~507~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~508~^0.095^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09038~^~509~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~510~^0.105^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~511~^0.087^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~512~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~513~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~514~^0.232^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~515~^0.282^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~516~^0.102^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~517~^0.096^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~518~^0.112^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~09038~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~09038~^~606~^2.126^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~609~^0.001^7^0.001^~1~^~A~^^^2^0.000^0.007^2^-0.003^0.006^~1, 2, 3~^~03/01/2003~ -~09038~^~610~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~611~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~612~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~613~^2.075^8^0.104^~1~^~A~^^^2^1.730^2.542^6^1.820^2.330^~2, 3~^~03/01/2003~ -~09038~^~614~^0.049^8^0.005^~1~^~A~^^^2^0.007^0.082^5^0.037^0.062^~1, 2, 3~^~03/01/2003~ -~09038~^~615~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~617~^9.066^8^0.474^~1~^~A~^^^2^7.440^10.890^6^7.901^10.230^~2, 3~^~03/01/2003~ -~09038~^~618~^1.674^8^0.063^~1~^~A~^^^2^1.442^1.969^4^1.490^1.859^~2, 3~^~03/01/2003~ -~09038~^~619~^0.125^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09038~^~620~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~624~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~625~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~626~^0.698^8^0.039^~1~^~A~^^^2^0.500^0.881^5^0.600^0.797^~2, 3~^~03/01/2003~ -~09038~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~628~^0.025^8^0.002^~1~^~A~^^^2^0.020^0.033^6^0.021^0.029^~2, 3~^~03/01/2003~ -~09038~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~645~^9.799^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~646~^1.816^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09038~^~652~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~653~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~672~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~685~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~687~^0.010^8^0.001^~1~^~A~^^^2^0.000^0.016^3^0.005^0.015^~1, 2, 3~^~03/01/2003~ -~09038~^~689~^0.016^8^0.002^~1~^~A~^^^2^0.000^0.040^3^0.009^0.024^~1, 2, 3~^~03/01/2003~ -~09038~^~697~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~09038~^~851~^0.111^4^0.007^~1~^~A~^^^1^0.096^0.128^3^0.089^0.132^~2, 3~^~03/01/2003~ -~09039~^~312~^0.311^5^0.048^~1~^~A~^^^2^0.150^0.359^1^-0.302^0.924^~2~^~06/01/2003~ -~09039~^~315~^0.095^5^0.012^~1~^~A~^^^2^0.070^0.107^1^-0.061^0.250^~2~^~06/01/2003~ -~09039~^~404~^0.021^4^0.005^~1~^~A~^^^1^0.011^0.032^3^0.004^0.038^~4~^~06/01/2003~ -~09039~^~405~^0.053^4^0.010^~1~^~A~^^^1^0.037^0.084^3^0.020^0.087^~4~^~06/01/2003~ -~09039~^~406~^0.672^4^0.182^~1~^~A~^^^1^0.357^1.134^3^0.094^1.250^~4~^~06/01/2003~ -~09039~^~410~^0.931^4^0.155^~1~^~A~^^^1^0.612^1.356^3^0.436^1.425^~4~^~06/01/2003~ -~09039~^~415~^0.078^4^0.004^~1~^~A~^^^1^0.070^0.088^3^0.064^0.092^~4~^~06/01/2003~ -~09039~^~501~^0.028^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~502~^0.082^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~503~^0.094^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~504~^0.160^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~505~^0.147^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~506~^0.042^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~507~^0.031^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~508~^0.108^0^^~4~^~BFPN~^~09038~^^^^^^^^^~08/01/2010~ -~09039~^~509~^0.054^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~510~^0.120^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~511~^0.099^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~512~^0.055^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~513~^0.121^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~514~^0.264^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~515~^0.321^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~516~^0.116^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~517~^0.110^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~518~^0.128^0^^~4~^~BFPN~^~09038~^^^^^^^^^~06/01/2003~ -~09039~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~09039~^~606~^1.960^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~613~^1.905^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~614~^0.055^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~617~^4.689^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~618~^1.580^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~619~^0.096^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~626~^0.825^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09039~^~645~^5.513^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09039~^~646~^1.676^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09040~^~312~^0.078^45^0.011^~1~^~A~^^^14^0.025^0.186^1^-0.052^0.209^~1, 2~^~12/01/2002~ -~09040~^~315~^0.270^45^0.007^~1~^~A~^^^14^0.116^0.829^10^0.254^0.285^~1, 2~^~12/01/2002~ -~09040~^~404~^0.031^12^0.006^~1~^~A~^^^3^0.010^0.051^1^-0.040^0.101^~2~^~12/01/2002~ -~09040~^~405~^0.073^12^0.008^~1~^~A~^^^3^0.050^0.115^1^-0.027^0.173^~2~^~12/01/2002~ -~09040~^~406~^0.665^12^0.002^~1~^~A~^^^3^0.544^0.749^1^0.639^0.692^~2~^~12/01/2002~ -~09040~^~410~^0.334^12^0.010^~1~^~A~^^^3^0.270^0.553^1^0.209^0.460^~2~^~12/01/2002~ -~09040~^~415~^0.367^12^0.010^~1~^~A~^^^3^0.302^0.420^1^0.242^0.493^~2~^~12/01/2002~ -~09040~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~502~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~503~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~504~^0.068^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~505~^0.050^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~508~^0.049^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~510~^0.047^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~511~^0.049^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~512~^0.077^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~513~^0.040^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~514~^0.124^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~515~^0.152^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~516~^0.038^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~517~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~518~^0.040^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09040~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09040~^~606~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~610~^0.001^4^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~611~^0.002^4^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~612~^0.002^4^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~613~^0.102^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~614~^0.005^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~617~^0.022^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~618~^0.046^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~619~^0.027^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~626~^0.010^5^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09040~^~645~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09040~^~646~^0.073^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09041~^~312~^0.391^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~315~^0.574^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~404~^0.180^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~405~^0.240^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~406~^2.800^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~415~^0.440^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09041~^~502~^0.171^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~503~^0.167^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~504~^0.359^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~505~^0.162^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~506~^0.074^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~507~^0.063^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~508~^0.201^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~509~^0.121^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~510~^0.282^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~511~^0.176^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~512~^0.333^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~513~^0.222^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~514~^0.503^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~515~^0.399^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~516~^0.190^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~517~^0.229^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~518~^0.226^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~606~^0.698^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~610~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~611~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~612~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~613~^0.473^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~614~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~617~^0.102^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~618~^0.211^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~619~^0.126^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~626~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09041~^~645~^0.153^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09041~^~646~^0.337^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09042~^~312~^0.165^5^0.030^~1~^~A~^^^2^0.038^0.259^2^0.044^0.286^~2, 3~^~02/01/2003~ -~09042~^~315~^0.646^5^0.230^~1~^~A~^^^2^0.230^1.440^2^-0.296^1.587^~2, 3~^~02/01/2003~ -~09042~^~404~^0.020^5^0.000^~1~^~A~^^^2^0.015^0.028^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~405~^0.026^5^0.000^~1~^~A~^^^2^0.020^0.036^^^^~1, 2, 3~^~02/01/2003~ -~09042~^~406~^0.646^4^0.028^~1~^~A~^^^2^0.495^0.742^1^0.288^1.004^~2, 3~^~02/01/2003~ -~09042~^~410~^0.276^5^0.025^~1~^~A~^^^2^0.217^0.347^3^0.195^0.357^~2, 3~^~02/01/2003~ -~09042~^~415~^0.030^5^0.001^~1~^~A~^^^2^0.024^0.036^2^0.025^0.036^~1, 2, 3~^~02/01/2003~ -~09042~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09042~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~607~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~608~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~609~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~610~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~611~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~612~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~613~^0.012^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~614~^0.003^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~617~^0.044^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~618~^0.186^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~619~^0.094^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~620~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~621~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~626~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~627~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~628~^0.004^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~629~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~630~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~631~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09042~^~645~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09042~^~646~^0.280^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09043~^~312~^0.114^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~404~^0.012^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~405~^0.018^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~406~^0.446^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~415~^0.021^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~ -~09043~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09043~^~606~^0.018^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~607~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~608~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~609~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~610~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~611~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~612~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~613~^0.014^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~614~^0.003^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~617~^0.054^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~618~^0.229^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~619~^0.115^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~620~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~621~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~626~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~627~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~628~^0.004^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~629~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~630~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~631~^0.000^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~645~^0.058^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09043~^~646~^0.344^0^^~4~^~BFFN~^~09302~^^^^^^^^^~02/01/2003~ -~09044~^~312~^0.229^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~404~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~405~^0.101^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~406~^0.867^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~415~^0.101^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~09044~^~606~^0.146^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~612~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~613~^0.103^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~614~^0.035^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~617~^0.175^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~618~^0.102^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~619~^0.092^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~626~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~645~^0.177^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09044~^~646~^0.194^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09046~^~312~^0.133^3^0.033^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~315~^0.697^3^0.195^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~404~^0.027^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~405~^0.039^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~406~^0.287^3^0.058^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~410~^0.151^3^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~415~^0.036^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09046~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09046~^~606~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~613~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~617~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~618~^0.053^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~619~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~645~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09046~^~646~^0.080^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09048~^~312~^0.120^3^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~315~^1.223^3^0.429^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~404~^0.029^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~405~^0.046^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~406~^1.207^3^0.163^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~410~^0.151^3^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~415~^0.061^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09048~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09048~^~606~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~613~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~617~^0.038^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~618~^0.163^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~619~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~628~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~645~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09048~^~646~^0.245^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09050~^~312~^0.057^12^0.014^~1~^~A~^^^3^0.015^0.088^1^-0.118^0.232^~1, 2~^~09/01/2002~ -~09050~^~315~^0.336^8^0.028^~1~^~A~^^^2^0.157^0.429^3^0.251^0.421^~2, 3~^~09/01/2002~ -~09050~^~404~^0.037^12^0.006^~1~^~A~^^^3^0.022^0.069^1^-0.034^0.109^~1, 2~^~09/01/2002~ -~09050~^~405~^0.041^12^0.000^~1~^~A~^^^3^0.020^0.060^1^0.040^0.043^~1, 2~^~09/01/2002~ -~09050~^~406~^0.418^12^0.089^~1~^~A~^^^3^0.220^0.867^1^-0.718^1.554^~2~^~09/01/2002~ -~09050~^~410~^0.124^12^0.008^~1~^~A~^^^3^0.058^0.157^1^0.026^0.222^~2~^~09/01/2002~ -~09050~^~415~^0.052^12^0.000^~1~^~A~^^^3^0.024^0.080^1^0.048^0.056^~1, 2~^~09/01/2002~ -~09050~^~501~^0.003^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~502~^0.020^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~503~^0.023^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~504~^0.044^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~505~^0.013^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~506~^0.012^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~507~^0.008^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~508~^0.026^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~509~^0.009^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~510~^0.031^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~511~^0.037^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~512~^0.011^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~513~^0.031^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~514~^0.057^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~515~^0.091^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~516~^0.031^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~517~^0.028^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~518~^0.022^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~09050~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09050~^~606~^0.028^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~607~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~608~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~609~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~610~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~611~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~612~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~613~^0.017^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~614~^0.005^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~617~^0.047^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~618~^0.088^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~619~^0.058^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~620~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~621~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~626~^0.002^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~627~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~628~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~629~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~630~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~631~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~645~^0.047^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09050~^~646~^0.146^0^^~4~^~BFFN~^~09084~^^^^^^^^^~09/01/2002~ -~09052~^~312~^0.053^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~315~^0.203^3^0.019^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~404~^0.034^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~405~^0.053^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~406~^0.113^3^0.022^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~410~^0.089^3^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~415~^0.036^3^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~503~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~505~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~510~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~511~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~513~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~514~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~515~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~516~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09052~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09052~^~606~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~617~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~618~^0.086^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~619~^0.058^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~645~^0.047^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09052~^~646~^0.144^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09053~^~315~^2.870^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~405~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~09053~^~406~^0.610^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~415~^0.020^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~606~^0.030^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~645~^0.020^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09053~^~646~^0.090^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09054~^~312~^0.033^3^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~315~^0.147^3^0.087^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~404~^0.032^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~405~^0.037^3^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~406~^0.520^3^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~410~^0.125^3^0.024^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~415~^0.059^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~502~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~508~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~510~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~511~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~513~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~514~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~515~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~516~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~517~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~518~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09054~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09054~^~606~^0.053^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~613~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~614~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~617~^0.087^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~618~^0.167^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~619~^0.112^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~645~^0.091^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09054~^~646~^0.279^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~312~^0.039^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~315~^0.262^3^0.107^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~404~^0.020^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~405~^0.052^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~406~^0.253^3^0.050^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~410~^0.125^0^^~1~^^^^^^^^^^^~12/01/2002~ -~09055~^~415~^0.059^0^^~1~^^^^^^^^^^^~12/01/2002~ -~09055~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~502~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~504~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~510~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~511~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~513~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~514~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~515~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~517~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~518~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09055~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09055~^~606~^0.011^0^^~4~^^^^^^^^^^^~12/01/2002~ -~09055~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~613~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~617~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~618~^0.034^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~619~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~645~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09055~^~646~^0.057^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~312~^0.070^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~315~^0.250^3^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~404~^0.026^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~405~^0.029^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~406~^0.230^3^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~410~^0.131^3^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~415~^0.038^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09056~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09056~^~606~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~613~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~617~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~618~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~619~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~645~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09056~^~646~^0.068^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~312~^0.080^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~315~^0.547^3^0.057^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~404~^0.053^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~405~^0.037^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~406~^0.767^3^0.045^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~410~^0.250^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~415~^0.056^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09057~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09057~^~606~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~613~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~617~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~618~^0.098^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~619~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~628~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~645~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09057~^~646~^0.148^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~312~^0.084^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~315~^0.060^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~404~^0.110^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~410~^0.457^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~415~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09059~^~502~^0.052^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~503~^0.064^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~504~^0.065^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~505~^0.037^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~506~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~507~^0.009^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~508~^0.026^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~509~^0.019^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~510~^0.047^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09059~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09059~^~606~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~613~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~614~^0.017^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~617~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~618~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~619~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~645~^0.034^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09059~^~646~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09060~^~312~^0.137^5^0.033^~1~^~A~^^^2^0.026^0.200^4^0.046^0.228^~4~^~09/01/2003~ -~09060~^~315~^0.037^5^0.002^~1~^~A~^^^2^0.030^0.040^4^0.031^0.043^~4~^~09/01/2003~ -~09060~^~404~^0.014^4^0.004^~1~^~A~^^^1^0.009^0.027^3^0.001^0.028^~4~^~09/01/2003~ -~09060~^~405~^0.016^4^0.003^~1~^~A~^^^1^0.008^0.021^3^0.007^0.025^~4~^~09/01/2003~ -~09060~^~406~^0.367^4^0.078^~1~^~A~^^^1^0.196^0.529^3^0.117^0.616^~4~^~09/01/2003~ -~09060~^~410~^0.391^4^0.040^~1~^~A~^^^1^0.320^0.462^3^0.263^0.519^~4~^~09/01/2003~ -~09060~^~415~^0.017^4^0.006^~1~^~A~^^^1^0.005^0.029^3^-0.003^0.036^~4~^~09/01/2003~ -~09060~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~502~^0.044^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~503~^0.044^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~504~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~505~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~506~^0.021^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~508~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~509~^0.044^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~510~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~511~^0.021^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~512~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~513~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~514~^0.098^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~515~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~516~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~517~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~518~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09060~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09060~^~606~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~613~^0.011^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~614~^0.008^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~617~^0.030^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~618~^0.157^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~619~^0.027^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09060~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09060~^~646~^0.184^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09061~^~312~^0.210^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09061~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09062~^~312~^0.069^6^0.011^~1~^~A~^^^3^0.030^0.090^2^0.022^0.115^~2~^~06/01/2009~ -~09062~^~315~^0.093^6^0.012^~1~^~A~^^^3^0.070^0.126^2^0.043^0.144^~2~^~06/01/2009~ -~09062~^~404~^0.101^6^0.027^~1~^~A~^^^3^0.047^0.140^2^-0.014^0.217^~2~^~06/01/2009~ -~09062~^~405~^0.131^6^0.011^~1~^~A~^^^3^0.113^0.180^2^0.082^0.180^~2~^~06/01/2009~ -~09062~^~406~^0.644^6^0.143^~1~^~A~^^^3^0.226^0.930^2^0.028^1.259^~2~^~06/01/2009~ -~09062~^~410~^0.345^6^0.110^~1~^~A~^^^3^0.194^0.700^2^-0.131^0.820^~2~^~06/01/2009~ -~09062~^~415~^0.257^6^0.103^~1~^~A~^^^3^0.051^0.373^2^-0.187^0.701^~2~^~06/01/2009~ -~09062~^~501~^0.031^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~502~^0.052^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~503~^0.042^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~504~^0.063^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~505~^0.042^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~506~^0.021^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~508~^0.042^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~509~^0.031^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~510~^0.063^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~511~^0.031^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~512~^0.021^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~513~^0.063^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~514~^0.105^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~515~^0.199^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~516~^0.052^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~517~^0.157^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~518~^0.063^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~09062~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~606~^0.233^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~610~^0.045^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~612~^0.012^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~613~^0.104^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~614~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~617~^0.021^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~618~^0.028^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~619~^0.159^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~645~^0.055^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~646~^0.188^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~654~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~673~^0.028^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~674~^0.021^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~675~^0.028^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~ -~09062~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~09062~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~851~^0.159^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~09062~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09062~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~09063~^~312~^0.104^347^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~315~^0.112^347^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~404~^0.030^330^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~405~^0.040^330^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~410~^0.143^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~415~^0.044^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09063~^~606~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~613~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~614~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~617~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~618~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~619~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09063~^~645~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09063~^~646~^0.090^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~312~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~315~^0.076^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~404~^0.017^5^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~405~^0.041^5^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~406~^0.177^5^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~415~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09064~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~617~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09064~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09064~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~312~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~315~^0.073^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~406~^0.170^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~415~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09065~^~606~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~619~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~645~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09065~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~312~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~315~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~406~^0.168^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~415~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09066~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~619~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09066~^~645~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09066~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~315~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~405~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~406~^0.163^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~415~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09067~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~619~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~645~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09067~^~646~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~312~^0.090^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~315~^0.057^3^0.022^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~404~^0.044^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~405~^0.034^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~406~^0.137^3^0.052^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~410~^0.178^3^0.048^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~415~^0.067^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09068~^~606~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~607~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~608~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~609~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~610~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~611~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~613~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~614~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~617~^0.119^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~618~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~619~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~620~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~621~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~627~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~628~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~629~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~631~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~09068~^~645~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09068~^~646~^0.132^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09070~^~312~^0.060^65^0.001^~1~^~A~^^^20^0.013^0.170^16^0.059^0.062^~1, 2~^~10/01/2002~ -~09070~^~315~^0.070^65^0.001^~1~^~A~^^^20^0.040^0.192^16^0.069^0.071^~1, 2~^~10/01/2002~ -~09070~^~404~^0.027^8^0.004^~1~^~A~^^^2^0.020^0.035^2^0.008^0.046^~4~^~10/01/2002~ -~09070~^~405~^0.033^8^0.004^~1~^~A~^^^2^0.018^0.050^1^0.008^0.058^~1, 2, 3~^~10/01/2002~ -~09070~^~406~^0.154^8^0.006^~1~^~A~^^^2^0.145^0.165^2^0.129^0.179^~4~^~10/01/2002~ -~09070~^~410~^0.199^8^0.017^~1~^~A~^^^2^0.165^0.217^2^0.126^0.272^~4~^~10/01/2002~ -~09070~^~415~^0.049^8^0.004^~1~^~A~^^^2^0.043^0.057^2^0.032^0.066^~4~^~10/01/2002~ -~09070~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~502~^0.022^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~503~^0.020^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~504~^0.030^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~505~^0.032^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~508~^0.024^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~510~^0.024^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~511~^0.018^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~513~^0.026^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~514~^0.569^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~515~^0.083^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~516~^0.023^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~517~^0.039^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~518~^0.030^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09070~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09070~^~606~^0.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~612~^0.001^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~613~^0.027^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~614~^0.009^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~617~^0.047^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~618~^0.027^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~619~^0.026^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~626~^0.001^1^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09070~^~645~^0.047^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09070~^~646~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09071~^~312~^0.075^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~315~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~404~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~405~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~406~^0.410^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~410~^0.127^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09071~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09071~^~606~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~617~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09071~^~645~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09071~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~312~^0.073^6^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~315~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~404~^0.018^4^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~405~^0.024^5^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~406~^0.406^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~410~^0.127^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09072~^~415~^0.030^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09072~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09072~^~606~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~618~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09072~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09072~^~646~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~312~^0.145^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~315~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~404~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~405~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~406~^0.403^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~410~^0.127^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09073~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09073~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~617~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09073~^~645~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09073~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~312~^0.142^82^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~315~^0.048^3^0.003^~1~^~A~^^^2^0.040^0.050^1^0.016^0.079^~2~^~05/01/2008~ -~09074~^~404~^0.021^124^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~405~^0.040^124^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~406~^0.396^136^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~410~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09074~^~415~^0.022^9^0.004^~1~^~A~^^^3^0.010^0.032^2^0.006^0.037^~1, 2~^~05/01/2008~ -~09074~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09074~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~617~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09074~^~645~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09074~^~646~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~312~^0.139^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~315~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~404~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~406~^0.388^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~410~^0.127^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09075~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09075~^~606~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~617~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~645~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09075~^~646~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~312~^0.067^3^0.011^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~315~^0.115^3^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~502~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~505~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~508~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~511~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~513~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~514~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~515~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~517~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~518~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09077~^~606~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~613~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~618~^0.073^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09077~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09078~^~312~^0.056^5^0.005^~1~^~A~^^^2^0.051^0.067^1^-0.008^0.120^~2~^~05/01/2015~ -~09078~^~315~^0.267^5^0.094^~1~^~A~^^^2^0.173^0.433^1^-0.923^1.456^~2~^~05/01/2015~ -~09078~^~404~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.008^0.015^~2, 3~^~08/01/2002~ -~09078~^~405~^0.020^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.009^0.031^~1, 2, 3~^~08/01/2002~ -~09078~^~406~^0.101^4^0.003^~1~^~A~^^^1^0.097^0.110^3^0.092^0.111^~2, 3~^~08/01/2002~ -~09078~^~410~^0.295^4^0.030^~1~^~A~^^^1^0.250^0.380^3^0.201^0.389^~2, 3~^~08/01/2002~ -~09078~^~415~^0.057^4^0.013^~1~^~A~^^^1^0.036^0.093^3^0.016^0.099^~2, 3~^~08/01/2002~ -~09078~^~501~^0.003^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~502~^0.028^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~503~^0.033^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~504~^0.053^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~505~^0.039^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~506~^0.003^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~507~^0.003^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~508~^0.036^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~509~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~510~^0.045^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~511~^0.056^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~512~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~513~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~514~^0.188^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~515~^0.146^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~516~^0.048^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~517~^0.031^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~518~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2002~ -~09078~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09078~^~606~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~09078~^~607~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~608~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~609~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~610~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~611~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~612~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~613~^0.006^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~614~^0.002^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~617~^0.018^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~618~^0.033^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~619~^0.022^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~620~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~621~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~626~^0.001^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~627~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~628~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~629~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~630~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~631~^0.000^0^^~4~^~BFFN~^~09084~^^^^^^^^^~08/01/2002~ -~09078~^~645~^0.018^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~09078~^~646~^0.055^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~ -~09079~^~312~^0.063^4^0.017^~1~^~A~^^^2^0.019^0.080^1^-0.153^0.279^~2~^~06/01/2015~ -~09079~^~315~^0.180^2^^~1~^~A~^^^1^0.179^0.180^1^^^^~06/01/2015~ -~09079~^~404~^0.013^3^0.006^~1~^~A~^^^2^0.007^0.030^1^-0.061^0.086^~1, 2~^~06/01/2015~ -~09079~^~405~^0.028^2^^~1~^~A~^^^2^0.016^0.040^1^^^^~06/01/2015~ -~09079~^~406~^0.548^3^0.443^~1~^~A~^^^2^0.080^0.990^1^-5.075^6.170^~2~^~06/01/2015~ -~09079~^~415~^0.038^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~ -~09079~^~605~^0.003^6^0.003^~1~^~A~^^^1^0.000^0.020^5^-0.005^0.012^~1, 4~^~06/01/2015~ -~09079~^~606~^0.088^6^0.005^~1~^~A~^^^2^0.058^0.192^1^0.023^0.154^~1, 2~^~06/01/2015~ -~09079~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2007~ -~09079~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2007~ -~09079~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~613~^0.034^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~614~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~617~^0.277^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~618~^0.159^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09079~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09079~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~626~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~628~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~630~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~645~^0.298^5^0.010^~1~^~A~^^^1^0.266^0.322^4^0.270^0.327^~4~^~06/01/2015~ -~09079~^~646~^0.182^5^0.006^~1~^~A~^^^1^0.162^0.196^4^0.165^0.199^~4~^~06/01/2015~ -~09079~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~654~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~675~^0.159^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09079~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~851~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09079~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09079~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09081~^~312~^0.026^2^^~1~^~A~^^^1^0.017^0.035^1^^^~1~^~06/01/2015~ -~09081~^~315~^0.073^2^^~1~^~A~^^^1^0.060^0.085^1^^^^~06/01/2015~ -~09081~^~404~^0.015^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09081~^~405~^0.021^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09081~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09081~^~415~^0.014^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09081~^~605~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~06/01/2015~ -~09081~^~606~^0.007^2^^~1~^~A~^^^1^0.007^0.007^1^^^~1~^~06/01/2015~ -~09081~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~613~^0.005^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~614~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~617~^0.007^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~618~^0.019^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~619~^0.012^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~09081~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/1995~ -~09081~^~645~^0.007^2^^~1~^~A~^^^1^0.007^0.007^1^^^~1~^~06/01/2015~ -~09081~^~646~^0.031^2^^~1~^~A~^^^1^0.028^0.034^1^^^^~06/01/2015~ -~09082~^~312~^0.040^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09082~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09082~^~606~^0.012^0^^~1~^^^^^^^^^^^~11/01/1994~ -~09083~^~312~^0.086^4^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~315~^0.256^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~410~^0.398^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~415~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09083~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~617~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~618~^0.107^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~619~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~645~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09083~^~646~^0.179^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~312~^0.107^5^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~315~^0.186^5^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~410~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~415~^0.070^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09084~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~613~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~614~^0.003^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~617~^0.028^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~618~^0.053^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~619~^0.035^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09084~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09084~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~312~^0.298^6^0.021^~1~^~A~^^^1^0.200^0.340^5^0.244^0.352^~2, 3~^~07/01/2017~ -~09085~^~315~^0.345^6^0.033^~1~^~A~^^^1^0.280^0.480^5^0.261^0.429^~2, 3~^~07/01/2017~ -~09085~^~404~^0.160^25^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~405~^0.142^25^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~406~^1.615^25^0.135^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~415~^0.296^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09085~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~606~^0.085^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~607~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.005^0.009^~2, 3~^~07/01/2017~ -~09085~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~610~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~611~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~612~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~07/01/2017~ -~09085~^~613~^0.050^6^0.004^~1~^~A~^^^1^0.040^0.063^5^0.040^0.061^~2, 3~^~07/01/2017~ -~09085~^~614~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.009^0.012^~2, 3~^~07/01/2017~ -~09085~^~615~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~07/01/2017~ -~09085~^~617~^0.021^6^0.002^~1~^~AS~^^^1^0.014^0.027^5^0.014^0.027^~2, 3~^~07/01/2017~ -~09085~^~618~^0.035^6^0.004^~1~^~AS~^^^1^0.026^0.049^5^0.026^0.045^~2, 3~^~07/01/2017~ -~09085~^~619~^0.012^6^0.001^~1~^~AS~^^^1^0.009^0.016^5^0.009^0.015^~2, 3~^~07/01/2017~ -~09085~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~07/01/2017~ -~09085~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~626~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.002^~2, 3~^~07/01/2017~ -~09085~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~628~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~09085~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09085~^~645~^0.021^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~646~^0.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~653~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.003^0.004^~1, 2, 3~^~07/01/2017~ -~09085~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09085~^~663~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09085~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09085~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~673~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09085~^~674~^0.020^6^0.002^~1~^~A~^^^1^0.014^0.027^5^0.015^0.026^~2, 3~^~07/01/2017~ -~09085~^~675~^0.035^6^0.004^~1~^~A~^^^1^0.026^0.048^5^0.026^0.044^~2, 3~^~07/01/2017~ -~09085~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2017~ -~09085~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09085~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~851~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.016^5^0.009^0.015^~2, 3~^~07/01/2017~ -~09085~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09085~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09086~^~404~^0.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~410~^0.135^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~415~^0.221^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~501~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~505~^0.037^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~506~^0.004^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09086~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09086~^~606~^0.231^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1999~ -~09087~^~312~^0.206^13^0.031^~1~^~A~^^^3^0.090^0.315^2^0.073^0.340^~2~^~10/01/2002~ -~09087~^~315~^0.262^13^0.023^~1~^~A~^^^3^0.180^0.332^2^0.163^0.360^~2~^~10/01/2002~ -~09087~^~404~^0.052^13^0.012^~1~^~A~^^^3^0.036^0.098^2^0.001^0.103^~2~^~10/01/2002~ -~09087~^~405~^0.066^13^0.027^~1~^~A~^^^3^0.015^0.130^2^-0.049^0.181^~1, 2~^~10/01/2002~ -~09087~^~406~^1.274^13^0.026^~1~^~A~^^^3^1.120^1.430^2^1.160^1.387^~2~^~10/01/2002~ -~09087~^~410~^0.589^13^0.043^~1~^~A~^^^3^0.454^0.710^2^0.406^0.773^~2~^~10/01/2002~ -~09087~^~415~^0.165^13^0.041^~1~^~A~^^^3^0.082^0.255^2^-0.009^0.340^~2~^~10/01/2002~ -~09087~^~501~^0.012^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~502~^0.043^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~503~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~504~^0.084^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~505~^0.066^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~506~^0.022^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~507~^0.067^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~508~^0.050^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~509~^0.015^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~510~^0.071^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~511~^0.136^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~512~^0.032^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~513~^0.083^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~514~^0.213^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~515~^0.359^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~517~^0.130^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~518~^0.057^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09087~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09087~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~609~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~10/01/2002~ -~09087~^~610~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~10/01/2002~ -~09087~^~611~^0.001^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~10/01/2002~ -~09087~^~612~^0.001^2^^~1~^~A~^^^1^0.001^0.001^1^^^~1~^~10/01/2002~ -~09087~^~613~^0.017^2^^~1~^~A~^^^1^0.011^0.023^1^^^^~10/01/2002~ -~09087~^~614~^0.011^2^^~1~^~A~^^^1^0.008^0.014^1^^^^~10/01/2002~ -~09087~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~617~^0.035^2^^~1~^~A~^^^1^0.027^0.044^1^^^^~10/01/2002~ -~09087~^~618~^0.016^2^^~1~^~A~^^^1^0.011^0.022^1^^^^~10/01/2002~ -~09087~^~619~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~10/01/2002~ -~09087~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~626~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~10/01/2002~ -~09087~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09087~^~645~^0.036^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~646~^0.019^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~09087~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~653~^0.001^2^^~1~^~A~^^^1^0.001^0.001^1^^^~1~^~10/01/2002~ -~09087~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~10/01/2002~ -~09087~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09087~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09088~^~312~^0.061^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09088~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~410~^0.140^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~415~^0.230^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~501~^0.013^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~502~^0.027^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~503~^0.027^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~504~^0.060^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~505~^0.026^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~506~^0.014^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~507~^0.015^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~508~^0.040^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~509~^0.051^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~510~^0.033^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~511~^0.047^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~512~^0.015^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~513~^0.030^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~514~^0.058^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~515~^0.096^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~516~^0.036^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~517~^0.025^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~518~^0.032^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09088~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09088~^~606~^0.023^0^^~1~^^^^^^^^^^^~04/01/1985~ -~09088~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~614~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~617~^0.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~618~^0.162^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~619~^0.085^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09088~^~645~^0.080^0^^~1~^^^^^^^^^^^~04/01/1985~ -~09088~^~646~^0.247^0^^~1~^^^^^^^^^^^~04/01/1985~ -~09089~^~312~^0.070^16^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~315~^0.128^16^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~410~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~415~^0.113^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~501~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~502~^0.024^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~503~^0.023^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~504~^0.033^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~505~^0.030^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~506~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~507~^0.012^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~508~^0.018^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~509~^0.032^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~510~^0.028^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~511~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~512~^0.011^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~513~^0.045^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~514~^0.176^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~515~^0.072^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~516~^0.025^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~517~^0.049^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~518~^0.037^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09089~^~606~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~613~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~617~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~618~^0.144^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09089~^~645~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09089~^~646~^0.144^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~312~^0.110^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~315~^0.088^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~404~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~405~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~406~^0.445^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~415~^0.070^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09090~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~510~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~513~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~514~^0.094^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~515~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~517~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09090~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~618~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09090~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09090~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~312~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~315~^0.086^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~404~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~405~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~406~^0.437^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~415~^0.070^0^^~4~^^^^^^^^^^^~10/01/1986~ -~09091~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~510~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~513~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~514~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~515~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~516~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~517~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09091~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~618~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09091~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09091~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~312~^0.106^18^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~315~^0.084^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~404~^0.022^18^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~405~^0.037^18^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~406~^0.428^18^0.020^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~415~^0.070^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09092~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~502~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~510~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~513~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~514~^0.090^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~515~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~516~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09092~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~618~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09092~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09092~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~312~^0.103^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~315~^0.083^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~404~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~405~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~406~^0.419^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~502~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~503~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~504~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~510~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~513~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~514~^0.088^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~515~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~516~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09093~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09093~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09094~^~312~^0.287^8^0.010^~1~^~A~^^^2^0.238^0.320^5^0.262^0.312^~2, 3~^~12/01/2002~ -~09094~^~315~^0.510^8^0.035^~1~^~A~^^^2^0.374^0.700^5^0.419^0.600^~2, 3~^~12/01/2002~ -~09094~^~404~^0.085^8^0.006^~1~^~A~^^^2^0.050^0.123^5^0.069^0.100^~2, 3~^~12/01/2002~ -~09094~^~405~^0.082^8^0.004^~1~^~A~^^^2^0.050^0.106^5^0.073^0.092^~2, 3~^~12/01/2002~ -~09094~^~406~^0.619^8^0.022^~1~^~A~^^^2^0.531^0.714^4^0.561^0.676^~2, 3~^~12/01/2002~ -~09094~^~410~^0.434^8^0.022^~1~^~A~^^^2^0.350^0.531^6^0.380^0.488^~2, 3~^~12/01/2002~ -~09094~^~415~^0.106^8^0.009^~1~^~A~^^^2^0.073^0.176^3^0.079^0.132^~2, 3~^~12/01/2002~ -~09094~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~502~^0.085^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~503~^0.089^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~504~^0.128^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~505~^0.088^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~507~^0.036^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~508~^0.076^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~509~^0.041^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~510~^0.122^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~511~^0.077^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~512~^0.037^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~513~^0.134^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~514~^0.645^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~515~^0.295^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~516~^0.108^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~517~^0.610^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~518~^0.128^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09094~^~606~^0.144^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~612~^0.006^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~613~^0.110^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~614~^0.029^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~617~^0.158^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~618~^0.345^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~619~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~626~^0.001^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~645~^0.159^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09094~^~646~^0.345^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09095~^~312~^0.124^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~315~^0.220^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~ -~09095~^~404~^0.011^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~405~^0.110^3^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~406~^0.640^3^0.047^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~410~^0.127^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~415~^0.133^3^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09095~^~501~^0.009^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~502~^0.037^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~503~^0.038^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~504~^0.055^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~505~^0.038^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~506~^0.015^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~507~^0.016^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~508~^0.033^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~509~^0.018^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~510~^0.053^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~511~^0.033^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~512~^0.016^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~513~^0.058^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~514~^0.279^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~515~^0.127^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~516~^0.047^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~517~^0.263^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~518~^0.055^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2002~ -~09095~^~606~^0.062^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~613~^0.047^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~614~^0.013^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~617~^0.068^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~618~^0.149^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~619~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~645~^0.068^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09095~^~646~^0.149^0^^~1~^^^^^^^^^^^~12/01/2006~ -~09096~^~312~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~315~^0.150^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09096~^~404~^0.016^10^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~405~^0.011^10^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~406~^0.363^13^0.022^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~410~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~415~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09096~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09096~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09096~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~312~^0.062^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~315~^0.146^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09097~^~404~^0.012^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~405~^0.016^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~406~^0.403^3^0.033^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~410~^0.062^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09097~^~415~^0.051^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09097~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09097~^~606~^0.001^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09097~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09097~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~618~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09097~^~645~^0.002^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09097~^~646~^0.004^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09098~^~312~^0.100^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~315~^0.147^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09098~^~404~^0.030^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~405~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~410~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~415~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09098~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~618~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09098~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~312~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~315~^0.147^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09099~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~405~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~406~^0.380^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~410~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~415~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09099~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09099~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09099~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~312~^0.069^47^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~315~^0.144^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09100~^~404~^0.018^105^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~405~^0.019^108^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~406~^0.374^129^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~410~^0.060^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~415~^0.050^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09100~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09100~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09100~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~315~^0.142^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09101~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~405~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~406~^0.368^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~410~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~415~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09101~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09101~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~315~^0.151^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09102~^~404~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~405~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~406~^0.374^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09102~^~415~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09102~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~618~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09102~^~646~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~312~^0.050^6^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~315~^0.151^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09103~^~404~^0.011^4^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~405~^0.014^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~406~^0.356^3^0.050^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09103~^~415~^0.027^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09103~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09103~^~606~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09103~^~646~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~315~^0.148^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09104~^~404~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~406~^0.365^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09104~^~415~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09104~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~613~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~617~^0.012^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~618~^0.024^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~619~^0.003^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09104~^~646~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~312~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~315~^0.143^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09106~^~404~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~406~^0.353^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09106~^~415~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09106~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09106~^~646~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~312~^0.070^5^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~315~^0.144^4^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~410~^0.286^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~415~^0.080^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09107~^~606~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~617~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~618~^0.271^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~619~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09107~^~645~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09107~^~646~^0.317^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~312~^0.217^3^0.028^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~315~^0.177^3^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~404~^0.020^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~405~^0.053^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~406~^0.153^3^0.043^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~410~^0.138^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~415~^0.012^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09109~^~606~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~618~^0.094^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09109~^~645~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09109~^~646~^0.110^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09110~^~502~^0.358^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~503~^0.261^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~504~^0.456^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~505~^0.233^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~506~^0.087^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~507~^0.144^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~508~^0.271^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~509~^0.222^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~510~^0.316^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~511~^0.722^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~512~^0.157^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~513~^0.698^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~514~^1.711^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~515~^1.431^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~516~^0.304^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~517~^1.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~518~^0.498^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09110~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09111~^~312~^0.047^49^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~315~^0.012^48^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~404~^0.036^49^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~406~^0.250^49^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~410~^0.283^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~415~^0.042^33^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~502~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~503~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~504~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~508~^0.038^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~509~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~511~^0.070^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~512~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~513~^0.020^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~514~^0.111^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~515~^0.160^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~517~^0.051^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09111~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09111~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09111~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09111~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09112~^~312~^0.032^5^0.005^~1~^~A~^^^2^0.023^0.037^1^-0.030^0.094^~2~^~01/01/2003~ -~09112~^~315~^0.022^9^0.005^~1~^~A~^^^3^0.014^0.037^2^0.001^0.044^~1, 2~^~01/01/2003~ -~09112~^~404~^0.043^8^0.002^~1~^~A~^^^2^0.032^0.060^6^0.039^0.047^~2, 3~^~01/01/2003~ -~09112~^~405~^0.031^8^0.002^~1~^~A~^^^2^0.016^0.054^3^0.025^0.038^~1, 2, 3~^~01/01/2003~ -~09112~^~406~^0.204^8^0.018^~1~^~A~^^^2^0.164^0.320^5^0.156^0.251^~1, 2, 3~^~01/01/2003~ -~09112~^~410~^0.262^8^0.017^~1~^~A~^^^2^0.170^0.388^4^0.216^0.307^~2, 3~^~01/01/2003~ -~09112~^~415~^0.053^8^0.006^~1~^~A~^^^2^0.040^0.083^3^0.035^0.071^~2, 3~^~01/01/2003~ -~09112~^~501~^0.008^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~502~^0.013^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~503~^0.008^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~505~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~508~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09112~^~509~^0.008^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~510~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~511~^0.087^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~512~^0.008^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~513~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~514~^0.138^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~515~^0.197^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~516~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~517~^0.063^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~518~^0.028^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09112~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09112~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~09112~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09112~^~646~^0.036^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09113~^~312~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~404~^0.034^22^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~406~^0.191^22^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~410~^0.283^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~415~^0.042^14^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~501~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~502~^0.009^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~503~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~504~^0.009^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~505~^0.012^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~506~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~507~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~508~^0.030^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~509~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~510~^0.010^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~511~^0.056^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~512~^0.005^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~513~^0.016^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~514~^0.089^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~515~^0.128^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~516~^0.010^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~517~^0.041^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~518~^0.018^0^^~1~^^^^^^^^^^^~09/01/2003~ -~09113~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09113~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09113~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09114~^~312~^0.044^16^0.003^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~315~^0.010^16^0.001^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~404~^0.040^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~405~^0.020^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~406~^0.200^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~410~^0.283^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~415~^0.042^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~504~^0.010^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~505~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~508~^0.033^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~509~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~510~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~511~^0.062^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~512~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~513~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~514~^0.098^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~515~^0.141^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~517~^0.045^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~518~^0.020^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09114~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09114~^~606~^0.014^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~613~^0.012^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~614~^0.001^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~617~^0.012^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~618~^0.019^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~619~^0.005^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~645~^0.013^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09114~^~646~^0.024^0^^~1~^^^^^^^^^^^~01/01/2003~ -~09116~^~312~^0.050^33^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~315~^0.013^32^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~404~^0.037^27^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~406~^0.269^27^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~410~^0.283^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~415~^0.043^19^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~502~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~503~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~504~^0.013^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~505~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~508~^0.041^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~509~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~510~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~511~^0.078^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~512~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~513~^0.022^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~514~^0.123^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~515~^0.176^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~516~^0.013^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~517~^0.056^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~518~^0.025^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09116~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09116~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09116~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09116~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~312~^0.032^17^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~315~^0.020^16^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~404~^0.037^27^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~406~^0.269^27^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~410~^0.283^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~415~^0.043^19^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~502~^0.015^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~503~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~504~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~505~^0.022^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~508~^0.053^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~510~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~511~^0.099^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~512~^0.009^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~513~^0.028^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~514~^0.157^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~515~^0.225^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~516~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~517~^0.072^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~518~^0.032^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09117~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09117~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09117~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~312~^0.056^16^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~315~^0.011^16^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~410~^0.283^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~415~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~502~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~503~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~504~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~508~^0.038^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~509~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~511~^0.070^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~512~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~513~^0.020^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~514~^0.111^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~515~^0.160^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~517~^0.051^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09118~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09118~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09118~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~315~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~404~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~405~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~406~^0.249^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~415~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~502~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~504~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~505~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~508~^0.035^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~509~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~510~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~511~^0.065^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~512~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~514~^0.103^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~515~^0.148^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~517~^0.048^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~518~^0.021^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~09119~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09119~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09119~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09119~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~312~^0.037^4^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~315~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~404~^0.029^4^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~405~^0.018^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~406~^0.249^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09120~^~410~^0.120^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09120~^~415~^0.020^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09120~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~502~^0.012^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~503~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~504~^0.013^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~505~^0.017^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~508~^0.042^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~509~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~510~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~511~^0.079^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~512~^0.007^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~513~^0.022^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~514~^0.125^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~515~^0.179^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~516~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~517~^0.057^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~518~^0.025^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09120~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09120~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09120~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09120~^~646~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~312~^0.066^14^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~315~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~404~^0.038^14^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~405~^0.020^14^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~406~^0.243^14^0.014^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~415~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~502~^0.010^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~504~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~505~^0.014^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~508~^0.034^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~509~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~510~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~511~^0.063^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~512~^0.006^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~514~^0.100^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~515~^0.143^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~517~^0.046^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~518~^0.020^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~09121~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09121~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09121~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09121~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09123~^~312~^0.032^11^0.000^~1~^~A~^^^2^0.028^0.033^8^0.031^0.032^~2, 3~^~10/01/2016~ -~09123~^~315~^0.019^11^0.000^~1~^~A~^^^2^0.015^0.022^5^0.018^0.020^~2, 3~^~10/01/2016~ -~09123~^~404~^0.064^4^0.005^~1~^~A~^^^1^0.050^0.070^1^0.030^0.099^~2, 3~^~10/01/2016~ -~09123~^~405~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~08/01/1982~ -~09123~^~406~^0.260^6^0.003^~1~^~A~^^^1^0.230^0.270^3^0.249^0.271^~2, 3~^~10/01/2016~ -~09123~^~410~^0.280^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09123~^~415~^0.037^4^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~10/01/2016~ -~09123~^~606~^0.082^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09123~^~607~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~608~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~609~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~610~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~611~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~612~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~613~^0.076^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~614~^0.006^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~617~^0.082^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~618~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~619~^0.038^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~620~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~621~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~626~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09123~^~627~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~628~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~629~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~630~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~631~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~09123~^~645~^0.093^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09123~^~646~^0.175^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09124~^~312~^0.048^16^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~404~^0.040^17^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~405~^0.023^17^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~406~^0.319^16^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~410~^0.130^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~415~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09124~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09124~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09124~^~646~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~312~^0.118^3^0.024^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~315~^0.070^3^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~404~^0.145^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~405~^0.078^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~406~^0.772^3^0.072^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~410~^0.672^3^0.016^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~415~^0.154^3^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09125~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~613~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~617~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~618~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~09125~^~645~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09125~^~646~^0.113^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~312~^0.033^3^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~315~^0.020^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~404~^0.041^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~405~^0.022^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~406~^0.217^3^0.020^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~410~^0.189^3^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~415~^0.044^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09126~^~606~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~613~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~618~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09126~^~645~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09126~^~646~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09127~^~312~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.029^5^0.024^0.028^~2, 3~^~10/01/2016~ -~09127~^~315~^0.019^6^0.000^~1~^~A~^^^1^0.017^0.020^5^0.017^0.020^~2, 3~^~10/01/2016~ -~09127~^~404~^0.038^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~09127~^~405~^0.030^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09127~^~406~^0.200^3^0.000^~1~^~A~^^^1^0.200^0.200^^^^~2, 3~^~10/01/2016~ -~09127~^~410~^0.270^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09127~^~415~^0.044^0^^~4~^~BFSN~^~09112~^^^^^^^^^~03/01/2015~ -~09127~^~606~^0.173^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~613~^0.148^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~614~^0.012^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~617~^0.148^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~618~^0.234^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~619~^0.062^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~626~^0.012^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09127~^~645~^0.160^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09127~^~646~^0.296^0^^~4~^~BFZN~^~09404~^^^^^^^^^~11/01/2016~ -~09128~^~312~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~410~^0.189^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09128~^~415~^0.044^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09128~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09128~^~606~^0.014^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~613~^0.012^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~614~^0.001^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~617~^0.012^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~618~^0.019^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~619~^0.005^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~626~^0.001^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09128~^~645~^0.013^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09128~^~646~^0.024^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09129~^~312~^0.119^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~315~^1.973^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~09129~^~405~^1.500^2^^~13~^~AI~^^^1^1.200^1.800^1^^^^~06/01/2013~ -~09129~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09130~^~312~^0.018^14^0.004^~1~^~A~^^^5^0.010^0.038^4^0.008^0.029^~1, 2~^~06/01/2008~ -~09130~^~315~^0.239^14^0.024^~1~^~A~^^^5^0.081^0.432^4^0.172^0.307^~2~^~06/01/2008~ -~09130~^~404~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09130~^~406~^0.133^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~410~^0.048^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~415~^0.032^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09130~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09130~^~606~^0.025^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~607~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~608~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~609~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~610~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~611~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~612~^0.001^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~613~^0.021^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~614~^0.003^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~617~^0.003^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~618~^0.017^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~619~^0.005^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~620~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~621~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~626~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~627~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~628~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~629~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~630~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~631~^0.000^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~ -~09130~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09130~^~646~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~09131~^~312~^0.040^4^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~315~^0.718^4^0.103^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~404~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~405~^0.057^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~410~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~415~^0.110^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~501~^0.003^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~502~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~503~^0.005^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~504~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~505~^0.014^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~506~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~507~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~508~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~509~^0.011^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~510~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~511~^0.046^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~512~^0.023^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~513~^0.026^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~514~^0.077^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~515~^0.131^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~516~^0.019^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~517~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~518~^0.030^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09131~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~613~^0.098^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09131~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09131~^~646~^0.102^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09132~^~312~^0.127^36^0.016^~1~^~A~^^^11^0.039^0.243^10^0.091^0.164^~1, 2~^~01/01/2003~ -~09132~^~315~^0.071^36^0.002^~1~^~A~^^^11^0.035^0.116^10^0.066^0.077^~1, 2~^~01/01/2003~ -~09132~^~404~^0.069^8^0.002^~1~^~A~^^^1^0.059^0.082^7^0.063^0.074^~2, 3~^~01/01/2003~ -~09132~^~405~^0.070^8^0.007^~1~^~A~^^^1^0.049^0.108^7^0.053^0.087^~2, 3~^~01/01/2003~ -~09132~^~406~^0.188^8^0.016^~1~^~A~^^^1^0.164^0.264^7^0.151^0.226^~1, 2, 3~^~01/01/2003~ -~09132~^~410~^0.050^4^0.005^~1~^~A~^^^1^0.041^0.062^3^0.033^0.067^~1, 2, 3~^~01/01/2003~ -~09132~^~415~^0.086^8^0.009^~1~^~A~^^^1^0.050^0.124^7^0.065^0.106^~2, 3~^~01/01/2003~ -~09132~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~502~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~503~^0.011^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~504~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~505~^0.027^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~506~^0.009^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~508~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~509~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~510~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~511~^0.130^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~513~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~514~^0.038^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~515~^0.081^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~516~^0.016^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~517~^0.080^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09132~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09132~^~606~^0.054^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~613~^0.046^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~614~^0.006^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~617~^0.007^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~618~^0.037^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~619~^0.011^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09132~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09132~^~646~^0.048^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09133~^~312~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~315~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~404~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~406~^0.130^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~410~^0.041^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09133~^~415~^0.065^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09133~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~502~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~503~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~509~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~510~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~512~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~514~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~515~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~516~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09133~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09133~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09133~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~312~^0.054^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~315~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~404~^0.030^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~405~^0.022^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~406~^0.125^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~410~^0.041^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09134~^~415~^0.065^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09134~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~503~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~506~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~511~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~512~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~514~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~515~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~516~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~517~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~518~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09134~^~606~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~613~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09134~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09134~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~312~^0.018^14^0.004^~1~^~A~^^^5^0.010^0.038^4^0.008^0.029^~1, 2~^~06/01/2008~ -~09135~^~315~^0.239^14^0.024^~1~^~A~^^^5^0.081^0.432^4^0.172^0.307^~2~^~06/01/2008~ -~09135~^~404~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09135~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09135~^~406~^0.133^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09135~^~410~^0.048^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09135~^~415~^0.032^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09135~^~502~^0.016^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~503~^0.007^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~504~^0.012^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~505~^0.010^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~506~^0.001^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~508~^0.012^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~509~^0.003^17^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~510~^0.010^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~511~^0.047^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~512~^0.007^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~513~^0.086^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~514~^0.022^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~515~^0.110^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~516~^0.012^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~517~^0.016^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~518~^0.013^18^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09135~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~613~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~614~^0.003^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~617~^0.003^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~618~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~619~^0.005^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09135~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09135~^~646~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~404~^0.110^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~406~^2.800^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09138~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09139~^~312~^0.230^2^^~1~^~A~^^^1^0.200^0.260^1^^^^~09/01/2003~ -~09139~^~315~^0.150^2^^~1~^~A~^^^1^0.130^0.170^1^^^^~09/01/2003~ -~09139~^~404~^0.067^2^^~1~^~A~^^^1^0.061^0.072^1^^^^~09/01/2003~ -~09139~^~405~^0.040^2^^~1~^~A~^^^1^0.030^0.049^1^^^^~09/01/2003~ -~09139~^~406~^1.084^2^^~1~^~A~^^^1^1.066^1.102^1^^^^~09/01/2003~ -~09139~^~410~^0.451^2^^~1~^~A~^^^1^0.438^0.464^1^^^^~09/01/2003~ -~09139~^~415~^0.110^2^^~1~^~A~^^^1^0.106^0.113^1^^^^~09/01/2003~ -~09139~^~501~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~502~^0.096^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~503~^0.093^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~504~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~505~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~506~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~508~^0.006^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~509~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~510~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~511~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~512~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~513~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~514~^0.162^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~515~^0.333^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~516~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~517~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~518~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~09139~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09139~^~606~^0.272^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~612~^0.019^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~613~^0.228^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~614~^0.025^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~617~^0.082^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~618~^0.288^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~619~^0.112^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~626~^0.005^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09139~^~645~^0.087^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09139~^~646~^0.401^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09140~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~503~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~508~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~509~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~510~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~511~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~513~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~514~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~515~^0.076^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~517~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~518~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09140~^~606~^0.172^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~612~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~613~^0.144^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~614~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~617~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~618~^0.182^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~645~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09140~^~646~^0.253^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~312~^0.077^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~315~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~404~^0.026^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~405~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~406~^0.420^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~415~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09143~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~502~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~504~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~505~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~508~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~511~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~513~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~515~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~517~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09143~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~613~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~618~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09143~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09143~^~646~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09144~^~312~^0.076^2^^~1~^~A~^^^1^0.062^0.089^1^^^^~01/01/2010~ -~09144~^~315~^0.043^2^^~1~^~A~^^^1^0.033^0.053^1^^^^~01/01/2010~ -~09144~^~404~^0.105^2^^~1~^~A~^^^1^0.080^0.130^1^^^^~01/01/2010~ -~09144~^~405~^0.055^2^^~1~^~A~^^^1^0.040^0.070^1^^^^~01/01/2010~ -~09144~^~406~^0.920^2^^~1~^~A~^^^1^0.690^1.150^1^^^^~01/01/2010~ -~09144~^~410~^0.235^2^^~1~^~A~^^^1^0.200^0.270^1^^^^~01/01/2010~ -~09144~^~415~^0.329^2^^~1~^~A~^^^1^0.230^0.428^1^^^^~01/01/2010~ -~09144~^~501~^0.034^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~502~^0.086^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~503~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~504~^0.103^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~505~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~507~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~508~^0.052^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~509~^0.103^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~510~^0.086^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~511~^0.138^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~512~^0.034^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~513~^0.086^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~514~^0.172^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~515~^0.189^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~516~^0.086^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~517~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~518~^0.103^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~09144~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09144~^~606~^0.195^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09144~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~610~^0.028^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~613~^0.131^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~614~^0.011^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~617~^0.127^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09144~^~618~^0.015^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09144~^~619~^0.079^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09144~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~626~^0.024^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09144~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~09144~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~645~^0.155^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~646~^0.094^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09144~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~673~^0.024^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~674~^0.127^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~675~^0.015^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~09144~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09144~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09144~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~851~^0.079^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09144~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09144~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~09145~^~404~^0.006^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~405~^0.012^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~406~^0.260^4^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~415~^0.038^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09145~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09146~^~312~^0.073^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~315~^0.084^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~415~^0.081^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09146~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09147~^~312~^0.233^5^0.033^~1~^~A~^^^1^0.147^0.347^4^0.142^0.323^~2, 3~^~07/01/2015~ -~09147~^~315~^31.067^5^3.678^~1~^~A~^^^1^19.412^42.301^4^20.854^41.280^~2, 3~^~07/01/2015~ -~09147~^~404~^0.047^5^0.007^~1~^~A~^^^1^0.032^0.074^4^0.026^0.067^~2, 3~^~07/01/2015~ -~09147~^~405~^0.053^5^0.006^~1~^~A~^^^1^0.039^0.071^4^0.036^0.069^~2, 3~^~07/01/2015~ -~09148~^~312~^0.130^21^0.007^~1~^~A~^^^4^0.077^0.182^3^0.108^0.153^~2~^~01/01/2003~ -~09148~^~315~^0.098^17^0.011^~1~^~A~^^^3^0.069^0.160^2^0.052^0.145^~2~^~01/01/2003~ -~09148~^~404~^0.027^2^^~1~^~A~^^^1^0.015^0.038^1^^^~1~^~01/01/2003~ -~09148~^~405~^0.025^18^0.003^~1~^~A~^^^3^0.020^0.034^2^0.014^0.037^~2~^~01/01/2003~ -~09148~^~406~^0.341^18^0.032^~1~^~A~^^^3^0.251^0.444^2^0.204^0.479^~2~^~01/01/2003~ -~09148~^~410~^0.183^18^0.025^~1~^~A~^^^3^0.131^0.280^2^0.077^0.290^~2~^~01/01/2003~ -~09148~^~415~^0.063^18^0.002^~1~^~A~^^^3^0.055^0.080^2^0.054^0.072^~2~^~01/01/2003~ -~09148~^~501~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~502~^0.047^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~503~^0.051^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~504~^0.066^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~505~^0.061^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~506~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~508~^0.044^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~509~^0.034^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~510~^0.057^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~511~^0.081^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~512~^0.027^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~513~^0.053^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~514~^0.126^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~515~^0.184^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~516~^0.060^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~517~^0.044^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~518~^0.053^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09148~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09148~^~606~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~613~^0.017^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~614~^0.012^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~617~^0.047^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~618~^0.246^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~619~^0.042^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2009~ -~09148~^~645~^0.047^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09148~^~646~^0.287^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~09149~^~312~^0.095^2^^~1~^~A~^^^1^0.040^0.150^^^^^~02/01/2003~ -~09149~^~315~^0.135^2^^~1~^~A~^^^1^0.090^0.180^^^^^~08/01/2002~ -~09149~^~404~^0.037^2^^~1~^~A~^^^1^0.018^0.055^^^^^~02/01/2003~ -~09149~^~405~^0.090^2^^~1~^~A~^^^1^0.062^0.118^^^^^~02/01/2003~ -~09149~^~406~^0.429^2^^~1~^~A~^^^1^0.338^0.520^^^^^~02/01/2003~ -~09149~^~410~^0.208^2^^~1~^~A~^^^1^0.195^0.221^^^^^~08/01/2002~ -~09149~^~415~^0.036^2^^~1~^~A~^^^1^0.035^0.037^^^^^~02/01/2003~ -~09149~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09149~^~606~^0.103^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~607~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~608~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~609~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~610~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~611~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~612~^0.004^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~613~^0.090^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~614~^0.004^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~617~^0.137^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~618~^0.124^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~619~^0.047^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~620~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~621~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~626~^0.021^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~627~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~628~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~629~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~630~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~631~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~08/01/2002~ -~09149~^~645~^0.154^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09149~^~646~^0.171^0^^~4~^~BFFN~^~09206~^^^^^^^^^~02/01/2003~ -~09150~^~312~^0.037^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~315~^0.030^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09150~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~410~^0.190^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~415~^0.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09150~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~618~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09150~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09150~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09152~^~312~^0.016^6^0.003^~1~^~A~^^^2^0.013^0.020^1^-0.021^0.052^~2~^~11/01/2009~ -~09152~^~315~^0.012^6^0.005^~1~^~A~^^^2^0.004^0.019^1^-0.054^0.079^~1, 2~^~11/01/2009~ -~09152~^~404~^0.024^6^0.006^~1~^~A~^^^2^0.015^0.030^1^-0.047^0.096^~1, 2~^~11/01/2009~ -~09152~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~11/01/2009~ -~09152~^~406~^0.091^6^0.006^~1~^~A~^^^2^0.070^0.100^1^0.012^0.171^~2~^~11/01/2009~ -~09152~^~410~^0.131^6^0.016^~1~^~A~^^^2^0.110^0.150^1^-0.075^0.338^~2~^~11/01/2009~ -~09152~^~415~^0.046^6^0.006^~1~^~A~^^^2^0.038^0.054^1^-0.034^0.125^~2~^~11/01/2009~ -~09152~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~606~^0.040^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09152~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~610~^0.020^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~613~^0.012^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~614~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~617~^0.004^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~618~^0.012^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~646~^0.021^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~674~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~675~^0.012^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2009~ -~09152~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~09152~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09152~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09152~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~ -~09153~^~312~^0.018^18^0.001^~1~^~A~^^^1^0.009^0.026^13^0.016^0.020^~1, 2, 3~^~03/01/2015~ -~09153~^~315~^0.016^18^0.000^~1~^~A~^^^1^0.011^0.021^9^0.015^0.017^~2, 3~^~03/01/2015~ -~09153~^~404~^0.021^9^0.001^~1~^~A~^^^1^0.020^0.030^2^0.016^0.026^~2, 3~^~03/01/2015~ -~09153~^~405~^0.017^9^0.001^~1~^~A~^^^1^0.015^0.020^4^0.014^0.019^~1, 2, 3~^~03/01/2015~ -~09153~^~406~^0.180^9^0.013^~1~^~A~^^^1^0.130^0.240^4^0.145^0.214^~2, 3~^~03/01/2015~ -~09153~^~410~^0.080^6^0.004^~1~^~A~^^^1^0.060^0.100^2^0.063^0.098^~2, 3~^~03/01/2015~ -~09153~^~415~^0.037^9^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2015~ -~09153~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~613~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~617~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~618~^0.011^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~09153~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09153~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~674~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~675~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09153~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09153~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09153~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09153~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09156~^~312~^0.092^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09156~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~410~^0.319^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~415~^0.172^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09156~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~618~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09156~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09156~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~312~^0.065^1^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~315~^0.008^0^^~4~^^^^^^^^^^^~05/01/2004~ -~09159~^~404~^0.030^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~405~^0.020^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~406~^0.200^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~410~^0.217^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~415~^0.043^0^^~4~^^^^^^^^^^^~05/01/2004~ -~09159~^~501~^0.003^10^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~505~^0.014^10^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~506~^0.002^6^^~1~^^^^^^^^^^^~08/01/1982~ -~09159~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09159~^~606~^0.022^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~613~^0.020^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~614~^0.001^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~617~^0.016^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~618~^0.036^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~619~^0.019^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~626~^0.003^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~09159~^~645~^0.019^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09159~^~646~^0.055^0^^~1~^^^^^^^^^^^~05/01/2004~ -~09160~^~312~^0.027^4^0.001^~1~^~A~^^^1^0.025^0.030^3^0.023^0.030^~2, 3~^~04/01/2004~ -~09160~^~315~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.014^0.021^~2, 3~^~04/01/2004~ -~09160~^~404~^0.025^4^0.001^~1~^~A~^^^1^0.023^0.027^3^0.022^0.028^~2, 3~^~04/01/2004~ -~09160~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2004~ -~09160~^~406~^0.142^4^0.009^~1~^~A~^^^1^0.125^0.163^3^0.114^0.170^~2, 3~^~04/01/2004~ -~09160~^~410~^0.123^4^0.006^~1~^~A~^^^1^0.112^0.141^3^0.103^0.144^~2, 3~^~04/01/2004~ -~09160~^~415~^0.038^4^0.001^~1~^~A~^^^1^0.035^0.039^3^0.034^0.041^~2, 3~^~04/01/2004~ -~09160~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~502~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~503~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~504~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~510~^0.011^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~511~^0.015^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~512~^0.002^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~513~^0.024^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~514~^0.114^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~515~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~517~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~518~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~09160~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09160~^~606~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~613~^0.008^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~617~^0.007^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~618~^0.015^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~619~^0.008^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~626~^0.002^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09160~^~645~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09160~^~646~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09161~^~312~^0.030^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~315~^0.008^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~404~^0.033^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~405~^0.003^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~406~^0.163^3^0.035^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~410~^0.066^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~415~^0.027^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09161~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~618~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09161~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09161~^~646~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09163~^~312~^0.160^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~404~^0.092^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~405~^0.127^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~406~^1.154^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~415~^0.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~09163~^~606~^0.200^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~613~^0.116^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~614~^0.068^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~617~^0.400^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~618~^1.137^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~619~^0.163^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09163~^~645~^0.405^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~09163~^~646~^1.300^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~09164~^~312~^0.148^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~315~^0.055^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~404~^0.011^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~405~^0.065^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~406~^0.603^3^0.147^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~415~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09164~^~501~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~505~^0.041^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~506~^0.009^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09164~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09164~^~606~^0.099^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~613~^0.070^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~614~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~617~^0.119^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~618~^0.067^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~619~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~645~^0.120^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09164~^~646~^0.132^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~312~^0.631^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~315~^0.234^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~404~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~405~^0.570^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~406~^3.100^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~415~^0.090^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09165~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~505~^0.187^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09165~^~606~^0.270^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~612~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~613~^0.190^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~614~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~617~^0.324^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~618~^0.184^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~619~^0.178^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~645~^0.328^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09165~^~646~^0.361^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~312~^0.117^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~315~^1.247^3^0.027^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~404~^0.050^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~405~^0.034^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~406~^0.840^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~410~^0.244^3^0.024^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~415~^0.065^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09167~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09167~^~606~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~613~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~617~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~618~^0.117^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~619~^0.059^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~628~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09167~^~645~^0.030^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09167~^~646~^0.176^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09172~^~312~^0.169^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~315~^0.052^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~404~^0.031^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~405~^0.140^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~502~^0.034^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~503~^0.026^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~504~^0.054^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~505~^0.046^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~506~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~508~^0.030^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~509~^0.025^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~510~^0.058^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~511~^0.035^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~512~^0.012^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~513~^0.157^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~514~^0.126^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~515~^0.209^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~516~^0.042^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~517~^0.042^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~518~^0.048^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09172~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09173~^~312~^0.807^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~315~^0.248^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~405~^0.500^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~406~^1.000^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~502~^0.128^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~504~^0.202^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~505~^0.172^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~506~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~509~^0.094^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~510~^0.217^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~511~^0.131^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~512~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~513~^0.585^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~514~^0.469^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~515~^0.780^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~516~^0.158^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09173~^~518~^0.180^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~312~^0.040^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~315~^0.148^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~404~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~405~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~406~^0.180^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~415~^0.100^0^^~4~^^^^^^^^^^^~10/01/1986~ -~09174~^~501~^0.005^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~502~^0.015^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~503~^0.015^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~504~^0.026^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~505~^0.023^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~506~^0.004^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~507~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~508~^0.014^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~509~^0.013^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~510~^0.021^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~511~^0.014^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~512~^0.007^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~513~^0.024^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~514~^0.058^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~515~^0.061^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~516~^0.020^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~517~^0.027^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~518~^0.020^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09174~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~611~^0.001^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~612~^0.001^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~613~^0.032^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~614~^0.004^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~617~^0.008^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~618~^0.077^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~619~^0.013^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09174~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09174~^~646~^0.091^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~410~^0.103^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~415~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09175~^~501~^0.005^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~505~^0.037^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~506~^0.006^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09175~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09175~^~606~^0.136^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~613~^0.042^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~614~^0.094^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~617~^0.205^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~618~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~645~^0.205^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09175~^~646~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09176~^~312~^0.111^8^0.052^~1~^~A~^^^3^0.045^0.320^2^-0.113^0.335^~2~^~06/01/2010~ -~09176~^~315~^0.063^8^0.010^~1~^~A~^^^3^0.031^0.120^2^0.021^0.104^~2~^~06/01/2010~ -~09176~^~404~^0.028^7^0.002^~1~^~A~^^^2^0.014^0.041^1^0.008^0.049^~2~^~06/01/2010~ -~09176~^~405~^0.038^7^0.008^~1~^~A~^^^2^0.020^0.072^1^-0.061^0.136^~2~^~06/01/2010~ -~09176~^~406~^0.669^7^0.308^~1~^~A~^^^2^0.198^1.310^1^-3.244^4.582^~2~^~06/01/2010~ -~09176~^~410~^0.197^7^0.026^~1~^~A~^^^2^0.161^0.240^1^-0.137^0.531^~2~^~06/01/2010~ -~09176~^~415~^0.119^7^0.001^~1~^~A~^^^2^0.053^0.164^1^0.112^0.125^~2~^~06/01/2010~ -~09176~^~501~^0.013^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~502~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~503~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~504~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~505~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~506~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~508~^0.027^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~509~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~510~^0.042^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~511~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~512~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~513~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~514~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~515~^0.096^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~516~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~517~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~518~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~ -~09176~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09176~^~606~^0.092^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~611~^0.001^15^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~612~^0.013^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~613~^0.072^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~614~^0.004^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~617~^0.075^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~618~^0.019^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~619~^0.051^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~626~^0.067^19^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09176~^~645~^0.140^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09176~^~646~^0.071^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09177~^~312~^0.069^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~315~^0.102^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~404~^0.054^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~405~^0.054^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~406~^0.286^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~410~^0.032^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~415~^0.018^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09177~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09178~^~312~^0.300^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~315~^10.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~404~^0.062^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~405~^0.085^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~406~^2.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~415~^0.334^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~09178~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~09178~^~606~^0.287^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~607~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~608~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~609~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~610~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~611~^0.004^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~612~^0.039^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~613~^0.226^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~614~^0.013^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~617~^0.235^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~618~^0.061^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~619~^0.161^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~620~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~621~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~626~^0.209^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~627~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~628~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~629~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~630~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~631~^0.000^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~645~^0.439^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09178~^~646~^0.222^0^^~4~^~BFSN~^~09176~^^^^^^^^^~02/01/2015~ -~09181~^~312~^0.041^54^0.009^~1~^~A~^^^15^0.000^0.204^14^0.023^0.059^~1, 2~^~12/01/2002~ -~09181~^~315~^0.041^54^0.002^~1~^~A~^^^15^0.000^0.066^14^0.036^0.045^~1, 2~^~12/01/2002~ -~09181~^~404~^0.041^13^0.009^~1~^~A~^^^3^0.020^0.080^2^0.004^0.078^~1, 2~^~12/01/2002~ -~09181~^~405~^0.019^4^^~1~^~A~^^^1^0.015^0.020^^^^~1, 2~^~12/01/2002~ -~09181~^~406~^0.734^18^0.040^~1~^~A~^^^3^0.528^0.890^2^0.562^0.905^~2~^~12/01/2002~ -~09181~^~410~^0.105^13^0.020^~1~^~A~^^^3^0.042^0.157^2^0.019^0.190^~1, 2~^~12/01/2002~ -~09181~^~415~^0.072^14^0.028^~1~^~A~^^^2^0.028^0.120^1^-0.279^0.423^~2~^~12/01/2002~ -~09181~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~502~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~503~^0.021^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~504~^0.029^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~505~^0.030^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~508~^0.023^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~510~^0.033^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~511~^0.029^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~513~^0.095^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~514~^0.136^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~515~^0.209^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~516~^0.026^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~517~^0.019^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~518~^0.042^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09181~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09181~^~606~^0.051^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~611~^0.001^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~612~^0.001^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~613~^0.043^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~614~^0.005^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~617~^0.003^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~618~^0.035^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~619~^0.046^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09181~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09181~^~646~^0.081^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09183~^~312~^0.060^2^^~1~^~A~^^^1^0.040^0.080^^^^^~01/01/2003~ -~09183~^~315~^0.035^2^^~1~^~A~^^^1^0.030^0.040^^^^^~01/01/2003~ -~09183~^~404~^0.015^2^^~1~^~A~^^^1^0.014^0.015^^^^^~01/01/2003~ -~09183~^~405~^0.031^2^^~1~^~A~^^^1^0.028^0.033^^^^^~01/01/2003~ -~09183~^~406~^0.232^2^^~1~^~A~^^^1^0.219^0.245^^^^^~01/01/2003~ -~09183~^~410~^0.084^2^^~1~^~A~^^^1^0.074^0.094^^^^^~01/01/2003~ -~09183~^~415~^0.163^2^^~1~^~A~^^^1^0.141^0.185^^^^^~01/01/2003~ -~09183~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09183~^~606~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~613~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~618~^0.017^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~619~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~645~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09183~^~646~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09184~^~312~^0.024^19^0.003^~1~^~A~^^^4^0.016^0.051^3^0.014^0.034^~2~^~01/01/2003~ -~09184~^~315~^0.027^19^0.002^~1~^~A~^^^4^0.020^0.037^3^0.020^0.034^~2~^~01/01/2003~ -~09184~^~404~^0.038^14^0.013^~1~^~A~^^^2^0.010^0.060^1^-0.124^0.200^~2~^~01/01/2003~ -~09184~^~405~^0.012^8^0.002^~1~^~A~^^^2^0.010^0.015^1^-0.019^0.044^~1, 2~^~01/01/2003~ -~09184~^~406~^0.418^18^0.061^~1~^~A~^^^3^0.260^0.590^2^0.154^0.682^~2~^~01/01/2003~ -~09184~^~410~^0.155^8^0.068^~1~^~A~^^^2^0.050^0.370^1^-0.703^1.013^~2~^~01/01/2003~ -~09184~^~415~^0.088^18^0.012^~1~^~A~^^^3^0.052^0.120^2^0.036^0.140^~2~^~01/01/2003~ -~09184~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~502~^0.013^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~503~^0.013^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~504~^0.016^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~505~^0.018^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~507~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~508~^0.015^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~509~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~510~^0.018^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~511~^0.014^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~512~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~513~^0.044^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~514~^0.088^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~515~^0.153^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~516~^0.016^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~518~^0.023^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09184~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09184~^~606~^0.038^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~611~^0.002^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~612~^0.002^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~613~^0.032^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~614~^0.003^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~617~^0.003^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~618~^0.026^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~619~^0.033^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09184~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09184~^~646~^0.059^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09185~^~312~^0.060^3^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~315~^0.040^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~404~^0.166^3^0.132^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~405~^0.022^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~406~^0.640^3^0.052^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~410~^0.163^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~415~^0.106^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09185~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09185~^~606~^0.064^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~613~^0.052^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~617~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~618~^0.042^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~619~^0.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~645~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09185~^~646~^0.098^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~312~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~404~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~405~^0.101^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~406~^0.620^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09190~^~415~^0.050^0^^~1~^^^^^^^^^^^~04/01/1985~ -~09190~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09190~^~606~^0.027^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~613~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~614~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~617~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~618~^0.206^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~619~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~645~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09190~^~646~^0.207^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09191~^~312~^0.086^8^0.031^~1~^~A~^^^3^0.021^0.175^2^-0.048^0.220^~2~^~12/01/2002~ -~09191~^~315~^0.054^8^0.009^~1~^~A~^^^3^0.037^0.066^2^0.017^0.092^~1, 2~^~12/01/2002~ -~09191~^~404~^0.034^8^0.002^~1~^~A~^^^2^0.027^0.049^3^0.026^0.041^~1, 2, 3~^~12/01/2002~ -~09191~^~405~^0.027^8^0.001^~1~^~A~^^^2^0.020^0.030^3^0.022^0.031^~1, 2, 3~^~12/01/2002~ -~09191~^~406~^1.125^8^0.042^~1~^~A~^^^2^0.812^1.390^6^1.021^1.229^~2, 3~^~12/01/2002~ -~09191~^~410~^0.185^8^0.007^~1~^~A~^^^2^0.123^0.259^5^0.168^0.203^~2, 3~^~12/01/2002~ -~09191~^~415~^0.025^8^0.000^~1~^~A~^^^2^0.012^0.036^3^0.023^0.026^~1, 2, 3~^~12/01/2002~ -~09191~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~503~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~504~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~507~^0.005^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~508~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09191~^~509~^0.007^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~511~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~512~^0.008^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~513~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~514~^0.568^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~515~^0.034^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~517~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~518~^0.018^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09191~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09191~^~606~^0.025^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~613~^0.023^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~614~^0.002^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~617~^0.086^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~618~^0.111^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~619~^0.002^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~626~^0.002^0^^~4~^^^^^^^^^^^~08/01/2010~ -~09191~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2006~ -~09191~^~645~^0.088^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09191~^~646~^0.113^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09192~^~404~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~405~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~406~^0.270^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09192~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09193~^~312~^0.251^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~315~^0.020^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~404~^0.003^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~405~^0.000^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~406~^0.037^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~410~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~415~^0.009^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~502~^0.026^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~503~^0.031^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~504~^0.050^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~505~^0.032^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~506~^0.012^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~508~^0.029^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~509~^0.023^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~510~^0.038^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~511~^0.067^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~512~^0.023^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~513~^0.043^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~514~^0.092^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~515~^0.093^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~516~^0.049^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~517~^0.040^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~518~^0.031^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09193~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09193~^~606~^2.279^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09193~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09193~^~609~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~610~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~611~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~612~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~613~^1.730^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~614~^0.318^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~615~^0.055^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~617~^7.470^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~618~^0.629^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09193~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/1994~ -~09193~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~624~^0.015^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~625~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~626~^0.150^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09193~^~628~^0.032^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~645~^7.652^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~646~^0.629^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09193~^~652~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~653~^0.150^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~654~^0.011^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~672~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~687~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~697~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09193~^~855~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~ -~09194~^~312~^0.226^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~315~^0.020^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~404~^0.003^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~405~^0.000^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~406~^0.022^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~410~^0.015^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09194~^~415~^0.012^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~503~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~505~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~508~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~510~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~511~^0.078^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~512~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~513~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~514~^0.107^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~515~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~517~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09194~^~606~^0.909^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~613~^0.758^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~614~^0.152^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~617~^4.995^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~618~^0.544^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~619~^0.041^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~626~^0.055^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~628~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~09194~^~645~^5.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09194~^~646~^0.586^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09195~^~312~^0.120^2^^~1~^~A~^^^1^0.109^0.131^1^^^^~02/01/2003~ -~09195~^~404~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~02/01/2003~ -~09195~^~405~^0.007^2^^~1~^~A~^^^1^0.007^0.007^1^^^~1~^~02/01/2003~ -~09195~^~406~^0.237^2^^~1~^~A~^^^1^0.144^0.330^1^^^^~02/01/2003~ -~09195~^~410~^0.023^2^^~1~^~A~^^^1^0.016^0.030^1^^^^~02/01/2003~ -~09195~^~415~^0.031^2^^~1~^~A~^^^1^0.024^0.037^1^^^^~02/01/2003~ -~09195~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09195~^~606~^2.029^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~607~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~608~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~609~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~610~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~611~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~612~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~613~^1.691^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~614~^0.338^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~617~^11.144^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~618~^1.215^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~619~^0.092^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~620~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~621~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~626~^0.123^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~627~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~628~^0.046^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~629~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~630~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~631~^0.000^0^^~4~^~BFFN~^~09193~^^^^^^^^^~02/01/2003~ -~09195~^~645~^11.314^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09195~^~646~^1.307^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09200~^~312~^0.045^64^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~315~^0.025^64^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~404~^0.087^148^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~406~^0.282^145^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~415~^0.060^100^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~501~^0.009^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~502~^0.015^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~503~^0.025^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~504~^0.023^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~505~^0.047^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~506~^0.020^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~507~^0.010^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~508~^0.031^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~509~^0.016^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~510~^0.040^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~511~^0.065^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~512~^0.018^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~513~^0.050^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~514~^0.114^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~515~^0.094^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~516~^0.094^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~517~^0.046^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~518~^0.032^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09200~^~606~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09200~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09200~^~646~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~312~^0.037^16^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~315~^0.023^16^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~404~^0.087^78^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~406~^0.274^75^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~415~^0.063^54^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~504~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~505~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~506~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~508~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~510~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~511~^0.073^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~513~^0.056^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~514~^0.127^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~515~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~517~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09201~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~617~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~618~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~645~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09201~^~646~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09202~^~312~^0.039^4^0.003^~1~^~A~^^^1^0.030^0.044^3^0.029^0.049^~2, 3~^~01/01/2003~ -~09202~^~315~^0.029^8^0.001^~1~^~A~^^^2^0.017^0.041^6^0.026^0.032^~1, 2, 3~^~01/01/2003~ -~09202~^~404~^0.068^8^0.003^~1~^~A~^^^2^0.027^0.116^4^0.059^0.078^~2, 3~^~01/01/2003~ -~09202~^~405~^0.051^8^0.004^~1~^~A~^^^2^0.034^0.064^4^0.040^0.061^~2, 3~^~01/01/2003~ -~09202~^~406~^0.425^8^0.013^~1~^~A~^^^2^0.353^0.469^4^0.390^0.461^~2, 3~^~01/01/2003~ -~09202~^~410~^0.261^8^0.020^~1~^~A~^^^2^0.190^0.383^3^0.200^0.322^~2, 3~^~01/01/2003~ -~09202~^~415~^0.079^8^0.006^~1~^~A~^^^2^0.054^0.129^3^0.061^0.096^~2, 3~^~01/01/2003~ -~09202~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~502~^0.018^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~503~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~504~^0.029^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~505~^0.038^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~506~^0.009^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~508~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09202~^~509~^0.013^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~510~^0.026^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~511~^0.115^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~512~^0.013^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~513~^0.032^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~514~^0.139^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~515~^0.247^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~516~^0.023^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~517~^0.181^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~518~^0.037^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09202~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09202~^~606~^0.017^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~613~^0.017^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09202~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09202~^~646~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09203~^~312~^0.039^32^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~315~^0.024^32^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~415~^0.051^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~502~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~503~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~505~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~510~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~511~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~514~^0.085^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~515~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~516~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~517~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09203~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~617~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09203~^~645~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09203~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~312~^0.057^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09205~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~410~^0.330^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~415~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~502~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~504~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~505~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~506~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~508~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~510~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~511~^0.090^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~512~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~513~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~514~^0.158^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~515~^0.131^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~516~^0.131^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~517~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~518~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09205~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~617~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~618~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09205~^~645~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09205~^~646~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~315~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~404~^0.090^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~410~^0.190^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~504~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~505~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~511~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~513~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~514~^0.075^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~515~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~516~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~517~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~518~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09206~^~606~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~612~^0.001^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~613~^0.021^16^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~614~^0.001^10^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~617~^0.032^16^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~618~^0.029^16^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~619~^0.011^16^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~626~^0.005^16^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09206~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09206~^~646~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~312~^0.022^3^0.008^~1~^~A~^^^1^0.010^0.036^2^-0.011^0.055^~1, 2, 3~^~05/01/2008~ -~09207~^~315~^0.021^3^0.002^~1~^~A~^^^1^0.017^0.024^2^0.012^0.030^~2, 3~^~05/01/2008~ -~09207~^~404~^0.039^3^0.003^~1~^~A~^^^1^0.034^0.043^2^0.027^0.050^~2, 3~^~05/01/2008~ -~09207~^~405~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.015^0.027^~2, 3~^~05/01/2008~ -~09207~^~406~^0.201^3^0.007^~1~^~A~^^^1^0.187^0.209^2^0.171^0.231^~2, 3~^~05/01/2008~ -~09207~^~410~^0.180^3^0.006^~1~^~A~^^^1^0.170^0.190^2^0.155^0.205^~2, 3~^~05/01/2008~ -~09207~^~415~^0.031^3^0.000^~1~^~A~^^^1^0.031^0.032^2^0.030^0.033^~2, 3~^~05/01/2008~ -~09207~^~501~^0.002^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~502~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~503~^0.007^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~504~^0.013^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~505~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~506~^0.003^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~507~^0.005^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~508~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~509~^0.003^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~510~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~511~^0.046^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~512~^0.003^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~513~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~514~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~515~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~516~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~517~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~518~^0.013^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2008~ -~09207~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09207~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09207~^~645~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09207~^~646~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09209~^~312~^0.042^32^0.007^~1~^~A~^^^6^0.025^0.103^5^0.024^0.059^~1, 2~^~03/01/2009~ -~09209~^~315~^0.023^32^0.002^~1~^~A~^^^6^0.000^0.034^5^0.018^0.027^~1, 2~^~03/01/2009~ -~09209~^~404~^0.046^6^0.004^~1~^~A~^^^1^0.036^0.062^5^0.036^0.056^~2, 3~^~03/01/2009~ -~09209~^~405~^0.039^6^0.002^~1~^~A~^^^1^0.031^0.045^5^0.034^0.044^~2, 3~^~03/01/2009~ -~09209~^~406~^0.280^3^0.050^~1~^^^^^^^^^^^~08/01/1982~ -~09209~^~410~^0.195^3^0.002^~1~^~A~^^^1^0.190^0.197^2^0.185^0.205^~2, 3~^~03/01/2009~ -~09209~^~415~^0.076^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.090^~2, 3~^~03/01/2009~ -~09209~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~503~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~505~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~509~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~512~^0.003^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~514~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~515~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~517~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09209~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09209~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~613~^0.014^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~614~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~617~^0.018^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~618~^0.023^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~619~^0.007^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~626~^0.003^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09209~^~645~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09209~^~646~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~312~^0.042^32^0.007^~1~^~A~^^^6^0.025^0.103^5^0.024^0.059^~1, 2~^~03/01/2009~ -~09210~^~315~^0.023^32^0.002^~1~^~A~^^^6^0.000^0.034^5^0.018^0.027^~1, 2~^~03/01/2009~ -~09210~^~404~^0.046^6^0.004^~1~^~A~^^^1^0.036^0.062^5^0.036^0.056^~2, 3~^~03/01/2009~ -~09210~^~405~^0.039^6^0.002^~1~^~A~^^^1^0.031^0.045^5^0.034^0.044^~2, 3~^~03/01/2009~ -~09210~^~406~^0.280^3^0.050^~1~^^^^^^^^^^^~05/01/2006~ -~09210~^~410~^0.195^3^0.002^~1~^~A~^^^1^0.190^0.197^2^0.185^0.205^~2, 3~^~03/01/2009~ -~09210~^~415~^0.076^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.090^~2, 3~^~03/01/2009~ -~09210~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~503~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~505~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~509~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~512~^0.003^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~514~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~515~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~517~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09210~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09210~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09210~^~614~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09210~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09210~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09210~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09210~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09210~^~645~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09210~^~646~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~312~^0.042^32^0.007^~1~^~A~^^^6^0.025^0.103^5^0.024^0.059^~1, 2~^~03/01/2009~ -~09211~^~315~^0.023^32^0.002^~1~^~A~^^^6^0.000^0.034^5^0.018^0.027^~1, 2~^~03/01/2009~ -~09211~^~404~^0.046^6^0.004^~1~^~A~^^^1^0.036^0.062^5^0.036^0.056^~2, 3~^~03/01/2009~ -~09211~^~405~^0.039^6^0.002^~1~^~A~^^^1^0.031^0.045^5^0.034^0.044^~2, 3~^~03/01/2009~ -~09211~^~406~^0.280^3^0.050^~1~^^^^^^^^^^^~03/01/2009~ -~09211~^~410~^0.195^3^0.002^~1~^~A~^^^1^0.190^0.197^2^0.185^0.205^~2, 3~^~03/01/2009~ -~09211~^~415~^0.076^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.090^~2, 3~^~03/01/2009~ -~09211~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~503~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~505~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~509~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~512~^0.003^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~514~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~515~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~517~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~09211~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09211~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~613~^0.014^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~614~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~617~^0.018^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~618~^0.023^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~619~^0.007^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~626~^0.003^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~09211~^~645~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09211~^~646~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09212~^~312~^0.021^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~404~^0.069^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~405~^0.044^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~406~^0.273^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~415~^0.065^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~605~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~606~^0.015^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~607~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~608~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~609~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~610~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~611~^0.001^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~612~^0.001^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~613~^0.011^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~614~^0.002^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~617~^0.011^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~618~^0.012^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~619~^0.004^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~626~^0.002^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09212~^~645~^0.012^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~646~^0.016^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~ -~09212~^~671~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~ -~09213~^~312~^0.059^14^0.009^~1~^~A~^^^1^0.024^0.153^11^0.041^0.078^~2, 3~^~06/01/2014~ -~09213~^~315~^0.116^14^0.031^~1~^~A~^^^1^0.075^0.395^6^0.041^0.191^~2, 3~^~06/01/2014~ -~09213~^~404~^0.275^6^0.014^~1~^~A~^^^1^0.230^0.290^2^0.216^0.334^~2, 3~^~06/01/2014~ -~09213~^~405~^0.175^6^0.017^~1~^~A~^^^1^0.140^0.230^2^0.110^0.240^~2, 3~^~06/01/2014~ -~09213~^~406~^1.093^6^0.029^~1~^~A~^^^1^1.020^1.160^2^0.973^1.214^~2, 3~^~06/01/2014~ -~09213~^~410~^0.732^4^0.006^~1~^~A~^^^1^0.710^0.800^1^0.652^0.811^~2, 3~^~06/01/2014~ -~09213~^~415~^0.260^6^0.013^~1~^~A~^^^1^0.190^0.290^4^0.222^0.297^~2, 3~^~06/01/2014~ -~09213~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~502~^0.040^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~504~^0.053^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~505~^0.062^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~508~^0.043^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~509~^0.023^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~510~^0.046^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~511~^0.309^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~512~^0.020^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~513~^0.069^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~514~^0.437^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~515~^0.146^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~516~^0.043^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~517~^0.376^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~518~^0.079^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~606~^0.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~613~^0.044^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~614~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~617~^0.044^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~618~^0.046^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~626~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~645~^0.050^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~646~^0.063^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~673~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~674~^0.044^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~675~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09213~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09213~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~851~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09213~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09213~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09214~^~312~^0.059^14^0.009^~1~^~A~^^^1^0.024^0.153^11^0.041^0.078^~2, 3~^~05/01/2014~ -~09214~^~315~^0.116^14^0.031^~1~^~A~^^^1^0.075^0.395^6^0.041^0.191^~2, 3~^~05/01/2014~ -~09214~^~404~^0.275^6^0.014^~1~^~A~^^^1^0.230^0.290^2^0.216^0.334^~2, 3~^~05/01/2014~ -~09214~^~405~^0.175^6^0.017^~1~^~A~^^^1^0.140^0.230^2^0.110^0.240^~2, 3~^~05/01/2014~ -~09214~^~406~^1.093^6^0.029^~1~^~A~^^^1^1.020^1.160^2^0.973^1.214^~2, 3~^~05/01/2014~ -~09214~^~410~^0.732^4^0.006^~1~^~A~^^^1^0.710^0.800^1^0.652^0.811^~2, 3~^~05/01/2014~ -~09214~^~415~^0.260^6^0.013^~1~^~A~^^^1^0.190^0.290^4^0.222^0.297^~2, 3~^~05/01/2014~ -~09214~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~502~^0.040^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~504~^0.053^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~505~^0.062^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~508~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~509~^0.023^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~510~^0.046^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~511~^0.309^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~512~^0.020^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~513~^0.069^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~514~^0.437^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~515~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~516~^0.043^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~517~^0.376^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~518~^0.079^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~606~^0.059^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~613~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~614~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~617~^0.044^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~618~^0.046^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~626~^0.006^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~09214~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09214~^~645~^0.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~646~^0.063^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~673~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~674~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~675~^0.046^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~09214~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~09214~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~851~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09214~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09214~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09215~^~312~^0.021^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~404~^0.069^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~405~^0.044^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~406~^0.273^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~415~^0.065^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~605~^0.000^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~606~^0.015^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~607~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~608~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~609~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~610~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~611~^0.001^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~612~^0.001^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~613~^0.011^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~614~^0.002^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~617~^0.011^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~618~^0.012^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~619~^0.004^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~626~^0.002^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~09215~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/1995~ -~09215~^~645~^0.012^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09215~^~646~^0.016^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~09216~^~312~^0.092^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09216~^~404~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~410~^0.490^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~415~^0.176^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09216~^~606~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~617~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09216~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09216~^~646~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~312~^0.076^14^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~315~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~404~^0.056^14^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~405~^0.030^14^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~406~^0.336^14^0.020^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~410~^0.140^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~415~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09217~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~617~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09217~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09217~^~646~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09218~^~312~^0.042^9^0.001^~1~^~A~^^^2^0.032^0.058^1^0.033^0.051^~2~^~12/01/2003~ -~09218~^~315~^0.039^9^0.004^~1~^~A~^^^2^0.030^0.052^1^-0.012^0.090^~2~^~12/01/2003~ -~09218~^~404~^0.058^9^0.008^~1~^~A~^^^2^0.040^0.080^1^-0.042^0.158^~2~^~12/01/2003~ -~09218~^~405~^0.036^9^0.003^~1~^~A~^^^2^0.020^0.050^1^-0.006^0.078^~2~^~12/01/2003~ -~09218~^~406~^0.376^9^0.011^~1~^~A~^^^2^0.310^0.459^1^0.241^0.510^~2~^~12/01/2003~ -~09218~^~410~^0.216^9^0.009^~1~^~A~^^^2^0.140^0.290^1^0.105^0.327^~2~^~12/01/2003~ -~09218~^~415~^0.078^9^0.003^~1~^~A~^^^2^0.054^0.093^1^0.034^0.122^~2~^~12/01/2003~ -~09218~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~502~^0.016^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~503~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~504~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~505~^0.032^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~508~^0.018^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~509~^0.015^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~510~^0.021^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~511~^0.068^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~512~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~513~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~514~^0.129^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~515~^0.061^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~516~^0.019^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~517~^0.074^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~518~^0.033^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~09218~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09218~^~606~^0.039^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~612~^0.002^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~613~^0.035^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~617~^0.053^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~618~^0.048^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~619~^0.018^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~626~^0.007^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~645~^0.060^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09218~^~646~^0.065^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09219~^~312~^0.033^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~315~^0.032^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~404~^0.082^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~405~^0.029^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~406~^0.445^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~410~^0.125^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~415~^0.042^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09219~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~503~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~504~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~505~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~511~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~514~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~515~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~516~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~517~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09219~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~618~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09219~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09219~^~646~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~312~^0.044^33^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~315~^0.032^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09220~^~404~^0.053^33^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~405~^0.044^33^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~406~^0.445^33^0.019^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~410~^0.125^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09220~^~415~^0.042^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09220~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~504~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~505~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~508~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~511~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~513~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~514~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~515~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~518~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09220~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09220~^~645~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09220~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~312~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~315~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~410~^0.125^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09221~^~415~^0.042^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09221~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~502~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~503~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~508~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~511~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~513~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~514~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~515~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~516~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09221~^~606~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~617~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09221~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09221~^~646~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09226~^~312~^0.045^70^0.012^~1~^~A~^^^4^0.025^0.140^3^0.006^0.084^~2~^~07/01/2010~ -~09226~^~315~^0.040^70^0.016^~1~^~A~^^^4^0.010^0.088^3^-0.012^0.091^~2~^~07/01/2010~ -~09226~^~404~^0.023^9^0.006^~1~^~A~^^^2^0.015^0.030^1^-0.054^0.099^~1, 2~^~07/01/2010~ -~09226~^~405~^0.027^9^0.005^~1~^~A~^^^2^0.015^0.039^1^-0.042^0.096^~1, 2~^~07/01/2010~ -~09226~^~406~^0.357^9^0.027^~1~^~A~^^^2^0.260^0.490^1^0.018^0.695^~2~^~07/01/2010~ -~09226~^~410~^0.191^9^0.052^~1~^~A~^^^2^0.130^0.380^1^-0.475^0.857^~2~^~07/01/2010~ -~09226~^~415~^0.038^9^0.012^~1~^~A~^^^2^0.026^0.056^1^-0.109^0.185^~2~^~07/01/2010~ -~09226~^~501~^0.008^6^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~502~^0.011^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~503~^0.008^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~504~^0.016^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~505~^0.025^7^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~506~^0.002^5^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~508~^0.009^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~509~^0.005^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~510~^0.010^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~511~^0.010^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~512~^0.005^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~513~^0.014^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~514~^0.049^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~515~^0.033^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~516~^0.018^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~517~^0.010^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~518~^0.015^1^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09226~^~606~^0.081^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~609~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~610~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~611~^0.002^2^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~612~^0.013^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~613~^0.060^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~614~^0.004^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~617~^0.034^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~618~^0.011^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~619~^0.047^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~626~^0.038^3^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/2002~ -~09226~^~645~^0.072^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09226~^~646~^0.058^0^^~1~^^^^^^^^^^^~08/01/2010~ -~09228~^~312~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^~1~^~04/01/2010~ -~09228~^~315~^0.010^2^^~1~^~A~^^^1^0.006^0.014^1^^^~1~^~04/01/2010~ -~09228~^~404~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~04/01/2010~ -~09228~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~04/01/2010~ -~09228~^~406~^0.060^2^^~1~^~A~^^^1^0.050^0.070^1^^^^~04/01/2010~ -~09228~^~410~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~415~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~04/01/2010~ -~09228~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~606~^0.268^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~610~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~613~^0.077^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~614~^0.031^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~617~^0.070^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~618~^0.083^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~645~^0.076^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~646~^0.096^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~674~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~675~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~09228~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~09228~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~851~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~09228~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09228~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~09229~^~312~^0.013^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~315~^0.013^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~404~^0.006^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~405~^0.004^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~406~^0.150^3^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~410~^0.054^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~415~^0.009^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09229~^~606~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~612~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~619~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~626~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09229~^~645~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09229~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09231~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09231~^~405~^0.130^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~406~^1.500^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09231~^~415~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09231~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09231~^~606~^0.059^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~613~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~614~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~617~^0.086^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~618~^0.410^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~619~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~645~^0.086^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09231~^~646~^0.411^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~312~^0.053^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09232~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09232~^~405~^0.131^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~406~^1.460^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09232~^~415~^0.050^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09232~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09232~^~606~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~613~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~617~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~618~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~645~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09232~^~646~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~312~^0.050^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09233~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09233~^~405~^0.101^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~406~^2.240^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09233~^~415~^0.060^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09233~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09233~^~606~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~613~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~617~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~618~^0.105^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~645~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09233~^~646~^0.106^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09236~^~312~^0.068^32^0.007^~1~^~A~^^^12^0.021^0.165^11^0.054^0.083^~2~^~12/01/2002~ -~09236~^~315~^0.061^28^0.003^~1~^~A~^^^11^0.040^0.086^10^0.055^0.067^~2~^~12/01/2002~ -~09236~^~404~^0.024^8^0.005^~1~^~A~^^^2^0.015^0.028^1^-0.034^0.082^~1, 2~^~12/01/2002~ -~09236~^~405~^0.031^8^0.004^~1~^~A~^^^2^0.020^0.040^1^-0.019^0.082^~1, 2~^~12/01/2002~ -~09236~^~406~^0.806^8^0.004^~1~^~A~^^^2^0.680^0.999^1^0.762^0.851^~2~^~12/01/2002~ -~09236~^~410~^0.153^8^0.046^~1~^~A~^^^2^0.093^0.215^1^-0.429^0.735^~2~^~12/01/2002~ -~09236~^~415~^0.025^8^0.010^~1~^~A~^^^2^0.014^0.036^1^-0.105^0.156^~1, 2~^~12/01/2002~ -~09236~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~502~^0.016^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~503~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~504~^0.027^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~505~^0.030^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~507~^0.012^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~508~^0.019^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~510~^0.022^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~511~^0.018^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~512~^0.013^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~513~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~514~^0.418^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~515~^0.056^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~516~^0.021^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~517~^0.018^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~518~^0.032^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09236~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09236~^~606~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~613~^0.017^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~614~^0.002^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~617~^0.065^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~618~^0.084^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~619~^0.002^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~626~^0.002^1^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09236~^~645~^0.067^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09236~^~646~^0.086^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09237~^~312~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~315~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~404~^0.009^12^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~405~^0.019^12^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~406~^0.521^16^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~410~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~505~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~510~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~511~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~513~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~514~^0.073^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~515~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~516~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~517~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09237~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09237~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09237~^~646~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~312~^0.050^14^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~315~^0.048^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09238~^~404~^0.008^6^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~405~^0.017^12^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~406~^0.582^6^0.034^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~410~^0.050^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09238~^~415~^0.019^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09238~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~503~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~504~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~505~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~511~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~514~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~515~^0.096^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~517~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~518~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09238~^~606~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~618~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09238~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09238~^~646~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~312~^0.050^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~315~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~406~^0.800^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~410~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~502~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~504~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~505~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~511~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~512~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~513~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~514~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~515~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~518~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09239~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~617~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09239~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~312~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~315~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~404~^0.009^13^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~405~^0.025^19^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~406~^0.593^19^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~410~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~505~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~510~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~511~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~514~^0.075^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~515~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~517~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09240~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09240~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09240~^~646~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~312~^0.051^178^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~315~^0.045^54^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~404~^0.011^273^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~405~^0.024^278^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~406~^0.614^323^0.010^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~410~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~504~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~510~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~514~^0.076^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~515~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~517~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09241~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~618~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09241~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09241~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~312~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~315~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~404~^0.011^14^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~405~^0.021^14^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~406~^0.520^14^0.021^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~410~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~504~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~508~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~513~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~514~^0.078^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~515~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~517~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~518~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09242~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09242~^~646~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~312~^0.098^19^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~404~^0.011^19^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~405~^0.035^19^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~406~^0.537^19^0.030^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~410~^0.050^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09243~^~415~^0.019^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09243~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~502~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~504~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~505~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~510~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~511~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~514~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~515~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09243~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~617~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09243~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09243~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~312~^0.493^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~315~^0.413^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~404~^0.039^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~405~^0.110^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~406~^4.825^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~410~^0.522^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~415~^0.159^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~502~^0.192^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~503~^0.141^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~504~^0.277^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~505~^0.157^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~506~^0.118^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~507~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~508~^0.154^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~509~^0.128^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~510~^0.267^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~511~^0.124^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~512~^0.091^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~513~^0.292^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~514~^0.817^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~515~^0.743^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~516~^0.171^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~517~^0.206^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~518~^0.226^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~606~^0.111^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~613~^0.097^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~617~^0.369^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~618~^0.486^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~619~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~620~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~626~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~645~^0.377^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09244~^~646~^0.498^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~312~^0.202^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~315~^0.170^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~404~^0.008^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~405~^0.060^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~406~^2.030^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~410~^0.356^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~415~^0.054^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~502~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~504~^0.114^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~508~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~509~^0.052^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~510~^0.109^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~511~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~513~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~514~^0.335^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~515~^0.305^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~516~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~517~^0.084^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~518~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~613~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~617~^0.151^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~618~^0.199^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~645~^0.154^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09245~^~646~^0.204^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~312~^0.364^24^0.025^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~315~^0.305^3^0.027^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~404~^0.002^21^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~405~^0.212^21^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~406~^4.375^21^0.072^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~410~^0.564^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09246~^~415~^0.067^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~502~^0.141^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~503~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~504~^0.204^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~505~^0.116^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~506~^0.087^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~509~^0.094^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~510~^0.197^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~511~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~512~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~513~^0.215^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~514~^0.602^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~515~^0.548^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~516~^0.126^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~517~^0.152^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~518~^0.167^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~606~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~613~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~617~^0.272^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~618~^0.358^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~620~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~626~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09246~^~645~^0.278^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09246~^~646~^0.367^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~312~^0.117^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~315~^0.098^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~404~^0.005^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~405~^0.021^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~406~^1.519^3^0.038^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~410~^0.181^3^0.015^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~415~^0.038^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~502~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~504~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~505~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~510~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~511~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~513~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~514~^0.193^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~515~^0.176^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~516~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~517~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~518~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~617~^0.087^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~618~^0.115^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09247~^~645~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09247~^~646~^0.118^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~312~^0.107^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~315~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~404~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~405~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~406~^1.388^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~410~^0.165^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~415~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~502~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~504~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~505~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~508~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~509~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~510~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~511~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~514~^0.176^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~515~^0.160^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~517~^0.044^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~518~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~606~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~617~^0.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09248~^~645~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09248~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~312~^0.024^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~315~^0.029^3^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~404~^0.013^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~405~^0.035^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~406~^0.653^3^0.084^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~410~^0.132^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~415~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~503~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~505~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~511~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~514~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~515~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~517~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~518~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09250~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~617~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~618~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09250~^~645~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09250~^~646~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09251~^~312~^0.018^5^0.000^~1~^~A~^^^1^0.018^0.018^4^0.018^0.018^~1, 2, 3~^~12/01/2016~ -~09251~^~315~^0.011^5^0.000^~1~^~A~^^^1^0.011^0.011^4^0.011^0.011^~1, 2, 3~^~12/01/2016~ -~09251~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~406~^0.090^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~607~^0.009^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~609~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~613~^0.010^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~614~^0.005^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~617~^0.004^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09251~^~618~^0.005^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09251~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09251~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~09251~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~09251~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~09251~^~645~^0.004^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~646~^0.008^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~674~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~675~^0.005^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09251~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09251~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~851~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09251~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09251~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09252~^~312~^0.082^57^0.006^~1~^~A~^^^14^0.052^0.129^2^0.053^0.112^~1, 4~^~05/01/2003~ -~09252~^~315~^0.048^60^0.003^~1~^~A~^^^14^0.036^0.074^2^0.039^0.058^~1, 4~^~08/01/2012~ -~09252~^~404~^0.012^16^0.001^~1~^~A~^^^2^0.007^0.018^3^0.008^0.016^~1, 2, 3~^~12/01/2002~ -~09252~^~405~^0.026^16^0.002^~1~^~A~^^^2^0.015^0.049^2^0.018^0.034^~1, 2, 3~^~08/01/2012~ -~09252~^~406~^0.161^16^0.005^~1~^~A~^^^2^0.097^0.180^3^0.144^0.178^~1, 2, 3~^~08/01/2012~ -~09252~^~410~^0.049^14^0.004^~1~^~A~^^^2^0.030^0.080^3^0.038^0.059^~1, 2, 3~^~08/01/2012~ -~09252~^~415~^0.029^16^0.001^~1~^~A~^^^2^0.016^0.043^2^0.024^0.035^~1, 2, 3~^~08/01/2012~ -~09252~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~502~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~503~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~504~^0.019^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~505~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~510~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~511~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~512~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~513~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~514~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~515~^0.030^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~516~^0.013^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~517~^0.021^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~518~^0.015^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09252~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~09252~^~606~^0.022^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~612~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~613~^0.017^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~614~^0.003^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~617~^0.081^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~618~^0.093^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~619~^0.001^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~621~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~626~^0.002^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~628~^0.001^1^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~629~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~09252~^~645~^0.084^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09252~^~646~^0.094^0^^~1~^^^^^^^^^^^~08/01/2012~ -~09253~^~312~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~315~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~404~^0.008^12^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~405~^0.010^12^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~406~^0.054^12^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~410~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~415~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~502~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~503~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~504~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~510~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~514~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~515~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~516~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09253~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09253~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09253~^~646~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~312~^0.053^6^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~315~^0.034^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09254~^~404~^0.011^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~405~^0.011^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~406~^0.200^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~410~^0.022^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09254~^~415~^0.014^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09254~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~505~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~512~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~513~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~514~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~515~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~516~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~517~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~518~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09254~^~606~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09254~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09254~^~646~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~312~^0.070^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~315~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~404~^0.010^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~405~^0.020^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~406~^0.400^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~410~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~415~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~503~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~504~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~511~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~513~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~514~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~515~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~516~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~517~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09255~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09255~^~646~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~312~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~315~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~404~^0.010^17^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~405~^0.016^25^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~406~^0.154^18^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~410~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~415~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~502~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~503~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~510~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~514~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~515~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09256~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09256~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09256~^~646~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~312~^0.049^56^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~315~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~404~^0.010^97^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~405~^0.022^109^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~406~^0.242^90^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~410~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~415~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~502~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~503~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~510~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~513~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~514~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~515~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09257~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09257~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09257~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~312~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~315~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~404~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~405~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~406~^0.238^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~410~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~415~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~502~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~503~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~505~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~510~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~514~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~515~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09258~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~645~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09258~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~312~^0.371^19^0.011^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~315~^0.327^3^0.038^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~404~^0.008^16^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~405~^0.145^16^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~406~^1.372^16^0.086^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~410~^0.153^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09259~^~415~^0.072^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09259~^~502~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~505~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~506~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~508~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~510~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~511~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~514~^0.368^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~515~^0.135^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~516~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~517~^0.051^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~518~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~617~^0.128^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~618~^0.146^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09259~^~645~^0.132^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09259~^~646~^0.148^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~312~^0.180^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~315~^0.159^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~404~^0.004^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~405~^0.020^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~406~^0.351^3^0.014^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~410~^0.074^3^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~415~^0.035^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~502~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~504~^0.046^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~505~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~510~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~511~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~513~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~514~^0.178^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~515~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~617~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~618~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09260~^~645~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09260~^~646~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~312~^0.171^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~315~^0.151^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~404~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~405~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~406~^0.333^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~410~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~415~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~504~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~509~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~510~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~511~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~513~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~514~^0.169^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~515~^0.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~516~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~517~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~617~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~618~^0.067^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09261~^~645~^0.061^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09261~^~646~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~312~^0.067^21^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~315~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~404~^0.002^47^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~405~^0.013^47^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~406~^0.128^47^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~410~^0.022^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09262~^~415~^0.014^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09262~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09262~^~606~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~618~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09262~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09262~^~646~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~312~^0.113^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~315~^0.355^3^0.109^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~415~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09263~^~501~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~502~^0.030^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~503~^0.025^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~504~^0.042^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~505~^0.033^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~506~^0.005^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~507~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~508~^0.026^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~509~^0.016^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~510~^0.030^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~511~^0.025^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~512~^0.012^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~513~^0.029^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~514~^0.057^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~515~^0.076^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~516~^0.025^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~517~^0.022^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~518~^0.022^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09263~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09263~^~606~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~617~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~618~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~645~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09263~^~646~^0.043^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09264~^~312~^0.442^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~315~^1.390^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~405~^0.029^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~406~^0.180^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~502~^0.071^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~503~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~504~^0.101^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~505~^0.078^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~508~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~509~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~510~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~511~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~512~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~514~^0.136^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~515~^0.179^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~516~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09264~^~518~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~502~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~505~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~510~^0.042^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~511~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~513~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~514~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~515~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~516~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09265~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09266~^~312~^0.110^22^0.017^~1~^~A~^^^4^0.039^0.193^1^-0.082^0.302^~1, 2~^~01/01/2007~ -~09266~^~315~^0.927^22^0.248^~1~^~A~^^^4^0.124^4.170^1^-0.820^2.675^~2~^~01/01/2007~ -~09266~^~404~^0.079^18^0.011^~1~^~A~^^^3^0.061^0.112^1^-0.057^0.215^~2~^~01/01/2007~ -~09266~^~405~^0.032^18^0.007^~1~^~A~^^^3^0.010^0.052^2^-0.013^0.078^~1, 2~^~01/01/2007~ -~09266~^~406~^0.500^14^0.229^~1~^~A~^^^3^0.170^1.490^1^-1.730^2.730^~2~^~01/01/2007~ -~09266~^~410~^0.213^18^0.050^~1~^~A~^^^3^0.050^0.454^1^-0.381^0.806^~2~^~01/01/2007~ -~09266~^~415~^0.112^18^0.006^~1~^~A~^^^3^0.082^0.151^1^0.046^0.178^~2~^~01/01/2007~ -~09266~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~502~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~503~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~504~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~505~^0.026^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~507~^0.014^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~508~^0.021^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~510~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~511~^0.019^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~512~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~513~^0.033^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~514~^0.121^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~515~^0.079^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~516~^0.024^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~517~^0.017^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~518~^0.035^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~09266~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09266~^~606~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~613~^0.005^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~614~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~617~^0.012^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~618~^0.023^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~619~^0.017^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~626~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09266~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09266~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~09267~^~312~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~315~^1.121^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~404~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~405~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~406~^0.298^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~501~^0.006^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~502~^0.011^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~503~^0.011^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~504~^0.017^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~505~^0.020^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~506~^0.011^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~507~^0.001^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~508~^0.011^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~509~^0.010^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~510~^0.014^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~511~^0.015^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~512~^0.009^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~513~^0.022^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~514~^0.099^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~515~^0.050^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~516~^0.017^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~517~^0.011^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~518~^0.023^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09267~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09267~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09267~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~312~^0.086^84^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~315~^1.121^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09268~^~404~^0.095^98^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~405~^0.019^89^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~406~^0.284^86^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~410~^0.100^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09268~^~415~^0.074^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09268~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~504~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~505~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~511~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~514~^0.095^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~515~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~517~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~518~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09268~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~619~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09268~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09268~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~312~^0.103^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~315~^1.097^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~404~^0.091^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~406~^0.292^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~503~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~504~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~509~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~513~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~514~^0.082^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~515~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~517~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09269~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09269~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09269~^~646~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~312~^0.101^110^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~315~^1.080^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~404~^0.090^183^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~405~^0.025^185^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~406~^0.287^185^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~503~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~504~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~513~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~514~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~515~^0.041^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~517~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~518~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09270~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09270~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09270~^~646~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~312~^0.099^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~315~^1.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~404~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~406~^0.282^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~503~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~504~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~512~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~513~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~514~^0.079^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~515~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~517~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~518~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09271~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09271~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~312~^0.099^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~315~^1.062^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~415~^0.075^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~504~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~505~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~508~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~509~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~510~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~511~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~513~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~514~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~515~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~516~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~517~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09272~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09272~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09272~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09273~^~312~^0.069^20^0.041^~1~^~A~^^^2^0.028^0.130^1^-0.446^0.583^~2~^~04/01/2005~ -~09273~^~315~^0.504^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~404~^0.058^28^0.005^~1~^~A~^^^3^0.044^0.082^2^0.035^0.081^~2~^~04/01/2005~ -~09273~^~405~^0.021^28^0.005^~1~^~A~^^^3^0.012^0.040^2^-0.002^0.045^~1, 2~^~04/01/2005~ -~09273~^~406~^0.199^28^0.074^~1~^~A~^^^3^0.018^0.400^2^-0.119^0.517^~2~^~04/01/2005~ -~09273~^~410~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09273~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09273~^~606~^0.008^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~613~^0.005^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~614~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~617~^0.012^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~618~^0.024^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~619~^0.018^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~626~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~645~^0.014^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09273~^~646~^0.042^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09274~^~312~^0.313^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~315~^3.439^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~404~^0.230^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~410~^0.430^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~415~^0.255^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09274~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09274~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09274~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~312~^0.045^51^0.002^~1~^~A~^^^15^0.000^0.070^14^0.040^0.050^~1, 2~^~12/01/2009~ -~09275~^~315~^1.049^51^0.063^~1~^~A~^^^15^0.405^1.730^14^0.914^1.185^~2~^~12/01/2009~ -~09275~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~410~^0.125^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09275~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~618~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09275~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09275~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09276~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09277~^~312~^0.074^4^0.004^~6~^~JA~^^^2^0.053^0.081^2^0.058^0.090^~2, 3~^~11/01/2016~ -~09277~^~315~^0.144^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~404~^0.062^4^0.003^~6~^~JA~^^^2^0.052^0.090^2^0.049^0.074^~2, 3~^~11/01/2016~ -~09277~^~405~^0.076^4^0.010^~6~^~JA~^^^2^0.054^0.140^2^0.034^0.117^~2, 3~^~11/01/2016~ -~09277~^~406~^0.672^4^0.006^~6~^~JA~^^^2^0.630^0.686^2^0.646^0.698^~2, 3~^~11/01/2016~ -~09277~^~410~^0.300^4^0.006^~6~^~JA~^^^2^0.260^0.420^2^0.274^0.326^~2, 3~^~11/01/2016~ -~09277~^~415~^0.242^4^0.003^~6~^~JA~^^^2^0.070^0.299^2^0.229^0.255^~2, 3~^~11/01/2016~ -~09277~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~607~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~608~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~609~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~610~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~611~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~612~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~613~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~614~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~617~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~618~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~619~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~620~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~621~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~626~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~627~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~628~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~629~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~630~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~631~^0.000^0^^~4~^~BFFN~^~09278~^^^^^^^^^~11/01/2016~ -~09277~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~674~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~675~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09277~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09277~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~851~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09277~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09277~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~312~^0.044^3^0.015^~1~^~A~^^^1^0.029^0.075^2^-0.020^0.109^~2, 3~^~11/01/2016~ -~09278~^~315~^0.165^3^0.023^~1~^~A~^^^1^0.135^0.211^2^0.065^0.265^~2, 3~^~11/01/2016~ -~09278~^~404~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~11/01/2016~ -~09278~^~405~^0.130^2^^~1~^~A~^^^1^0.120^0.140^1^^^^~11/01/2016~ -~09278~^~406~^0.685^2^^~1~^~A~^^^1^0.620^0.750^1^^^^~11/01/2016~ -~09278~^~410~^0.530^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~415~^0.210^2^^~1~^~A~^^^1^0.140^0.280^1^^^^~11/01/2016~ -~09278~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~502~^0.053^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~503~^0.042^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~504~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~505~^0.074^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/1982~ -~09278~^~507~^0.021^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~508~^0.053^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~509~^0.031^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~510~^0.042^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~511~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~512~^0.126^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~513~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~514~^0.115^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~515~^0.105^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~516~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~517~^0.074^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~518~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~613~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~614~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~617~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~618~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~663~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~674~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~675~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09278~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09278~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~851~^0.000^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09278~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09278~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09279~^~312~^0.057^44^0.005^~1~^~A~^^^13^0.015^0.151^12^0.047^0.068^~1, 2~^~12/01/2002~ -~09279~^~315~^0.052^44^0.003^~1~^~A~^^^13^0.018^0.094^12^0.044^0.059^~1, 2~^~12/01/2002~ -~09279~^~404~^0.028^8^0.004^~1~^~A~^^^2^0.015^0.053^3^0.015^0.042^~1, 2, 3~^~12/01/2002~ -~09279~^~405~^0.026^8^0.001^~1~^~A~^^^2^0.015^0.036^3^0.024^0.029^~1, 2, 3~^~12/01/2002~ -~09279~^~406~^0.417^8^0.027^~1~^~A~^^^2^0.301^0.550^6^0.350^0.484^~2, 3~^~12/01/2002~ -~09279~^~410~^0.135^8^0.009^~1~^~A~^^^2^0.082^0.207^5^0.112^0.159^~2, 3~^~12/01/2002~ -~09279~^~415~^0.029^8^0.000^~1~^~A~^^^2^0.021^0.036^3^0.028^0.030^~1, 2, 3~^~12/01/2002~ -~09279~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~502~^0.010^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~508~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~509~^0.008^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~510~^0.016^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~511~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~512~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~513~^0.028^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~514~^0.352^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~515~^0.035^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~516~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~517~^0.027^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~518~^0.023^0^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~09279~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09279~^~606~^0.017^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~613~^0.014^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~614~^0.003^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~617~^0.132^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~618~^0.044^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~626~^0.002^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~09279~^~645~^0.134^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09279~^~646~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~09281~^~312~^0.039^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~315~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~404~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~405~^0.041^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~406~^0.370^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~410~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~415~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~513~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~514~^0.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~515~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~518~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09281~^~606~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09281~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09281~^~646~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~312~^0.054^6^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~315~^0.033^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09282~^~404~^0.023^6^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~405~^0.059^6^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~406~^0.473^3^0.065^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09282~^~415~^0.027^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09282~^~502~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~504~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~508~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~513~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~514~^0.162^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~515~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~516~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~518~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09282~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~618~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09282~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09282~^~646~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~312~^0.038^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~315~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~406~^0.297^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~410~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~415~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~513~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~514~^0.116^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~517~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09283~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~617~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09283~^~645~^0.069^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09283~^~646~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~312~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~315~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~404~^0.016^7^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~405~^0.038^7^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~406~^0.291^8^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~410~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~415~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~502~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~513~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~514~^0.114^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~517~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09284~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~617~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09284~^~645~^0.066^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09284~^~646~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~312~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~315~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~405~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~406~^0.285^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~410~^0.072^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~415~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~513~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~514~^0.113^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~516~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~517~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~518~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09285~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~617~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~618~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~645~^0.065^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09285~^~646~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09286~^~312~^0.158^3^0.036^~1~^~A~^^^1^0.087^0.206^2^0.002^0.313^~4~^~03/01/2008~ -~09286~^~315~^0.119^3^0.014^~1~^~A~^^^1^0.095^0.145^2^0.056^0.181^~4~^~03/01/2008~ -~09286~^~404~^0.067^3^0.007^~1~^~A~^^^1^0.060^0.080^2^0.038^0.095^~4~^~03/01/2008~ -~09286~^~405~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.068^~4~^~03/01/2008~ -~09286~^~406~^0.293^3^0.007^~1~^~A~^^^1^0.280^0.300^2^0.265^0.322^~4~^~03/01/2008~ -~09286~^~410~^0.377^3^0.012^~1~^~A~^^^1^0.360^0.400^2^0.325^0.428^~4~^~03/01/2008~ -~09286~^~415~^0.075^3^0.003^~1~^~A~^^^1^0.071^0.080^2^0.063^0.086^~4~^~03/01/2008~ -~09286~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09286~^~606~^0.120^3^0.039^~1~^~A~^^^1^0.065^0.195^2^-0.046^0.287^~4~^~03/01/2008~ -~09286~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~611~^0.006^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~612~^0.006^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~613~^0.070^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~614~^0.038^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~617~^0.077^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~618~^0.079^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~619~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~626~^0.012^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~628~^0.004^0^^~4~^^^^^^^^^^^~07/01/2012~ -~09286~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09286~^~645~^0.093^3^0.019^~1~^~A~^^^1^0.055^0.113^2^0.011^0.175^~4~^~03/01/2008~ -~09286~^~646~^0.079^3^0.013^~1~^~A~^^^1^0.064^0.104^2^0.025^0.133^~4~^~03/01/2008~ -~09287~^~312~^0.080^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09287~^~404~^0.014^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~406~^0.460^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09287~^~415~^0.060^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09287~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09287~^~606~^0.067^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~613~^0.052^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~614~^0.010^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~617~^0.072^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~618~^0.186^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~619~^0.023^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~626~^0.002^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~628~^0.001^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~645~^0.075^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09287~^~646~^0.213^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09288~^~312~^0.118^20^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~315~^0.098^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~404~^0.034^20^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~405~^0.122^21^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~406~^0.866^21^0.036^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~410~^0.100^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09288~^~415~^0.203^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09288~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09288~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~617~^0.128^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~618~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~645~^0.130^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09288~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~312~^0.611^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~315~^0.312^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~404~^0.118^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~405~^0.165^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~406~^2.995^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~410~^0.418^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~415~^0.745^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~606~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~613~^0.048^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~617~^0.477^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~618~^0.159^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~626~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~645~^0.483^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09289~^~646~^0.159^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~312~^0.204^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~315~^0.104^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~404~^0.046^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~405~^0.030^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~406~^0.985^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~410~^0.108^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~415~^0.191^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~617~^0.159^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~618~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~645~^0.161^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09290~^~646~^0.053^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09291~^~312~^0.281^42^0.011^~1~^~A~^^^13^0.129^0.374^12^0.257^0.304^~2~^~10/01/2002~ -~09291~^~315~^0.299^42^0.011^~1~^~A~^^^13^0.221^0.588^12^0.275^0.323^~2~^~10/01/2002~ -~09291~^~404~^0.051^8^0.003^~1~^~A~^^^2^0.044^0.067^3^0.043^0.060^~2, 3~^~10/01/2002~ -~09291~^~405~^0.186^8^0.020^~1~^~A~^^^2^0.015^0.390^4^0.128^0.244^~1, 2, 3~^~10/01/2002~ -~09291~^~406~^1.882^8^0.044^~1~^~A~^^^2^1.590^2.230^4^1.754^2.010^~2, 3~^~10/01/2002~ -~09291~^~410~^0.422^8^0.013^~1~^~A~^^^2^0.290^0.555^6^0.389^0.455^~2, 3~^~10/01/2002~ -~09291~^~415~^0.205^6^0.009^~1~^~A~^^^2^0.121^0.372^2^0.150^0.260^~2, 3~^~10/01/2002~ -~09291~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~502~^0.049^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~503~^0.041^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~504~^0.066^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~505~^0.050^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~506~^0.016^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~508~^0.052^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09291~^~509~^0.021^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~510~^0.056^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~511~^0.037^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~512~^0.027^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~513~^0.066^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~514~^0.801^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~515~^0.114^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~516~^0.047^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~517~^0.130^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~518~^0.059^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~09291~^~606~^0.088^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09291~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09291~^~609~^0.007^4^0.007^~1~^~A~^^^2^0.000^0.028^1^-0.082^0.096^~1, 2, 3~^~10/01/2002~ -~09291~^~610~^0.005^4^0.004^~1~^~A~^^^2^0.000^0.018^1^-0.052^0.061^~1, 2, 3~^~10/01/2002~ -~09291~^~611~^0.001^4^0.000^~1~^~A~^^^2^0.000^0.002^1^-0.002^0.004^~1, 2, 3~^~10/01/2002~ -~09291~^~612~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.003^0.003^~1, 2, 3~^~10/01/2002~ -~09291~^~613~^0.030^4^0.003^~1~^~A~^^^2^0.023^0.040^1^0.010^0.050^~2, 3~^~10/01/2002~ -~09291~^~614~^0.044^4^0.001^~1~^~A~^^^2^0.009^0.078^1^0.038^0.050^~1, 2, 3~^~10/01/2002~ -~09291~^~615~^0.001^4^0.000^~1~^~A~^^^2^0.000^0.002^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~617~^0.014^4^0.003^~1~^~A~^^^2^0.009^0.020^2^-0.001^0.028^~2, 3~^~10/01/2002~ -~09291~^~618~^0.044^4^0.005^~1~^~A~^^^2^0.037^0.060^1^-0.010^0.099^~2, 3~^~10/01/2002~ -~09291~^~619~^0.017^4^0.000^~1~^~A~^^^2^0.014^0.020^1^0.014^0.020^~2, 3~^~10/01/2002~ -~09291~^~620~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~624~^0.001^4^0.000^~1~^~A~^^^2^0.000^0.001^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~625~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~626~^0.039^4^0.000^~1~^~A~^^^2^0.001^0.078^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~628~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~09291~^~645~^0.053^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~646~^0.062^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09291~^~652~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~653~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~672~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~09291~^~687~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~689~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09291~^~697~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09292~^~312~^0.123^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~315~^0.131^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~ -~09292~^~404~^0.024^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~405~^0.100^3^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~406~^0.723^3^0.039^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~410~^0.107^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~415~^0.218^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09292~^~606~^0.010^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~613~^0.008^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~617~^0.079^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~618~^0.026^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~645~^0.080^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09292~^~646~^0.026^0^^~1~^^^^^^^^^^^~05/01/2007~ -~09293~^~312~^0.180^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~315~^0.092^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~404~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~405~^0.093^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~406~^0.675^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~415~^0.203^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~617~^0.140^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09293~^~645~^0.142^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09293~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~312~^0.068^17^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~315~^0.151^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~404~^0.016^42^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~405~^0.070^43^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~406~^0.785^30^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~410~^0.107^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09294~^~415~^0.218^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09294~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09294~^~606~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~613~^0.002^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~617~^0.021^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~618~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09294~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09294~^~646~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~312~^0.048^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~315~^0.017^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~405~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~406~^0.220^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~415~^0.036^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09295~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09296~^~312~^0.130^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~410~^0.081^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09296~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~613~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~617~^0.036^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~618~^0.049^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09296~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09296~^~646~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~312~^0.228^6^0.015^~1~^~A~^^^1^0.200^0.300^5^0.190^0.267^~2, 3~^~07/01/2017~ -~09297~^~315~^0.226^6^0.020^~1~^~A~^^^1^0.185^0.300^5^0.175^0.277^~1, 2, 3~^~07/01/2017~ -~09297~^~404~^0.008^26^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~405~^0.191^26^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~406~^1.142^26^0.082^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~415~^0.323^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09297~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~606~^0.065^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~607~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~2, 3~^~07/01/2017~ -~09297~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09297~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~611~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~07/01/2017~ -~09297~^~612~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~07/01/2017~ -~09297~^~613~^0.037^6^0.004^~1~^~A~^^^1^0.022^0.051^5^0.026^0.049^~2, 3~^~07/01/2017~ -~09297~^~614~^0.008^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.005^0.010^~2, 3~^~07/01/2017~ -~09297~^~615~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09297~^~617~^0.014^6^0.003^~1~^~AS~^^^1^0.007^0.022^5^0.008^0.021^~2, 3~^~07/01/2017~ -~09297~^~618~^0.038^6^0.004^~1~^~AS~^^^1^0.024^0.052^5^0.027^0.050^~2, 3~^~07/01/2017~ -~09297~^~619~^0.019^6^0.002^~1~^~AS~^^^1^0.012^0.026^5^0.014^0.024^~2, 3~^~07/01/2017~ -~09297~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~07/01/2017~ -~09297~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~626~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~02/01/1995~ -~09297~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~628~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~09297~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~09297~^~645~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~646~^0.057^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~652~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09297~^~653~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09297~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09297~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~663~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~673~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09297~^~674~^0.014^6^0.003^~1~^~A~^^^1^0.007^0.022^5^0.008^0.021^~2, 3~^~07/01/2017~ -~09297~^~675~^0.038^6^0.004^~1~^~A~^^^1^0.024^0.052^5^0.027^0.050^~2, 3~^~07/01/2017~ -~09297~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2017~ -~09297~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09297~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~851~^0.019^6^0.002^~1~^~A~^^^1^0.012^0.026^5^0.014^0.024^~2, 3~^~07/01/2017~ -~09297~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09297~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~312~^0.272^12^0.014^~1~^~A~^^^1^0.200^0.430^7^0.238^0.305^~2, 3~^~07/01/2017~ -~09298~^~315~^0.281^12^0.007^~1~^~A~^^^1^0.185^0.320^9^0.266^0.296^~1, 2, 3~^~07/01/2017~ -~09298~^~404~^0.106^8^0.004^~1~^~A~^^^2^0.076^0.133^5^0.095^0.116^~2, 3~^~10/01/2002~ -~09298~^~405~^0.125^8^0.012^~1~^~A~^^^2^0.015^0.297^3^0.086^0.164^~1, 2, 3~^~10/01/2002~ -~09298~^~406~^0.766^8^0.065^~1~^~A~^^^2^0.490^1.335^3^0.569^0.962^~2, 3~^~10/01/2002~ -~09298~^~415~^0.174^8^0.006^~1~^~A~^^^2^0.102^0.258^3^0.156^0.191^~2, 3~^~10/01/2002~ -~09298~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~606~^0.094^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~607~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.009^7^0.007^0.008^~2, 3~^~07/01/2017~ -~09298~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^6^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09298~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~611~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~07/01/2017~ -~09298~^~612~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^6^0.003^0.005^~1, 2, 3~^~07/01/2017~ -~09298~^~613~^0.056^12^0.006^~1~^~A~^^^1^0.031^0.098^7^0.042^0.070^~2, 3~^~07/01/2017~ -~09298~^~614~^0.013^12^0.001^~1~^~A~^^^1^0.009^0.021^6^0.010^0.016^~2, 3~^~07/01/2017~ -~09298~^~615~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^6^0.002^0.004^~1, 2, 3~^~07/01/2017~ -~09298~^~617~^0.023^12^0.005^~1~^~AS~^^^1^0.008^0.106^9^0.012^0.035^~2, 3~^~07/01/2017~ -~09298~^~618~^0.039^12^0.006^~1~^~AS~^^^1^0.018^0.085^6^0.024^0.054^~2, 3~^~07/01/2017~ -~09298~^~619~^0.014^12^0.002^~1~^~AS~^^^1^0.006^0.026^6^0.009^0.019^~2, 3~^~07/01/2017~ -~09298~^~620~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~624~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.008^6^0.002^0.005^~1, 2, 3~^~07/01/2017~ -~09298~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~10/01/2002~ -~09298~^~626~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.009^10^0.000^0.002^~2, 3~^~07/01/2017~ -~09298~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~628~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.000^~1, 2, 3~^~10/01/2002~ -~09298~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2017~ -~09298~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~645~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~646~^0.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~652~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^6^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09298~^~653~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.002^~1, 2, 3~^~07/01/2017~ -~09298~^~654~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.006^9^0.001^0.003^~1, 2, 3~^~07/01/2017~ -~09298~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~663~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.005^6^-0.001^0.003^~1, 2, 3~^~07/01/2017~ -~09298~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~665~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.001^~1, 2, 3~^~07/01/2017~ -~09298~^~670~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~672~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~673~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.009^10^0.000^0.002^~1, 2, 3~^~07/01/2017~ -~09298~^~674~^0.022^12^0.005^~1~^~A~^^^1^0.008^0.102^9^0.012^0.033^~2, 3~^~07/01/2017~ -~09298~^~675~^0.039^12^0.006^~1~^~A~^^^1^0.018^0.084^6^0.024^0.053^~2, 3~^~07/01/2017~ -~09298~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2002~ -~09298~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~09298~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2002~ -~09298~^~851~^0.014^12^0.002^~1~^~A~^^^1^0.006^0.026^6^0.009^0.019^~2, 3~^~07/01/2017~ -~09298~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09298~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2017~ -~09299~^~312~^0.302^34^0.017^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~315~^0.267^16^0.016^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~404~^0.112^18^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~405~^0.182^18^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~406~^1.114^18^0.089^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~410~^0.045^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09299~^~415~^0.188^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09299~^~606~^0.178^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~613~^0.153^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~614~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~618~^0.122^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~619~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09299~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09299~^~646~^0.159^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09301~^~312~^0.066^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~315~^0.343^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~404~^0.013^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~405~^0.022^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~406~^1.352^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~410~^0.018^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~415~^0.020^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09301~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09302~^~312~^0.090^12^0.019^~1~^~A~^^^4^0.032^0.156^3^0.030^0.149^~1, 2~^~12/01/2002~ -~09302~^~315~^0.670^11^0.152^~1~^~A~^^^4^0.320^1.810^3^0.185^1.155^~2~^~12/01/2002~ -~09302~^~404~^0.032^12^0.008^~1~^~A~^^^4^0.012^0.063^3^0.006^0.057^~1, 2~^~05/01/2003~ -~09302~^~405~^0.038^12^0.007^~1~^~A~^^^4^0.020^0.060^3^0.016^0.061^~1, 2~^~12/01/2002~ -~09302~^~406~^0.598^12^0.057^~1~^~A~^^^4^0.403^0.920^3^0.417^0.779^~2~^~12/01/2002~ -~09302~^~410~^0.329^12^0.034^~1~^~A~^^^4^0.201^0.484^3^0.220^0.438^~2~^~12/01/2002~ -~09302~^~415~^0.055^12^0.007^~1~^~A~^^^4^0.036^0.074^3^0.032^0.078^~1, 2~^~12/01/2002~ -~09302~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09302~^~606~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~613~^0.016^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~614~^0.004^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~617~^0.059^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~618~^0.249^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~619~^0.126^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~628~^0.005^2^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~09302~^~645~^0.064^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09302~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09304~^~312~^0.057^3^0.018^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~315~^0.233^3^0.055^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~404~^0.020^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~405~^0.031^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~406~^0.443^3^0.058^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~410~^0.245^3^0.014^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~415~^0.042^3^0.005^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09304~^~606~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~613~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09304~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09304~^~646~^0.068^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~312~^0.105^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~315~^0.650^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~404~^0.019^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~405~^0.045^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~406~^0.230^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~410~^0.150^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~415~^0.034^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09306~^~606~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~618~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09306~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09306~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~312~^0.021^32^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~315~^0.196^32^0.031^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~410~^0.085^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~415~^0.024^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09307~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09307~^~606~^0.053^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~613~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~617~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~618~^0.099^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~645~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09307~^~646~^0.099^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~312~^0.023^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~315~^0.097^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~404~^0.031^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~405~^0.029^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~406~^0.203^3^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~410~^0.065^3^0.018^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~415~^0.025^3^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09309~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09309~^~606~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~613~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~617~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~618~^0.054^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~645~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09309~^~646~^0.054^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~312~^0.027^3^0.007^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~315~^0.073^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~404~^0.018^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~405~^0.023^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~410~^0.050^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~415~^0.020^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09310~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09310~^~606~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~613~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~617~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~618~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~645~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09310~^~646~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09311~^~404~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~406~^0.310^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09311~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09312~^~312~^0.016^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~315~^0.029^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09312~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09313~^~312~^0.086^0^^~4~^^^^^^^^^^^~09/01/1986~ -~09313~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09313~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~410~^0.252^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~415~^0.037^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~501~^0.005^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~502~^0.012^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~503~^0.015^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~504~^0.024^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~505~^0.039^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~506~^0.003^3^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~508~^0.013^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~509~^0.014^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~510~^0.016^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~511~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~512~^0.016^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~513~^0.014^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~514~^0.032^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~515~^0.038^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~516~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~517~^0.036^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~518~^0.018^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09313~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09313~^~606~^0.194^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~613~^0.100^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~614~^0.094^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~617~^0.521^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~618~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~645~^0.521^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09313~^~646~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09314~^~312~^0.213^5^0.202^~1~^~A~^^^2^0.007^0.420^1^-2.352^2.778^~1, 2~^~08/01/2010~ -~09314~^~315~^0.204^19^0.067^~1~^~A~^^^3^0.106^0.512^2^-0.087^0.494^~2~^~08/01/2010~ -~09314~^~404~^0.013^5^0.004^~1~^~A~^^^2^0.008^0.020^1^-0.035^0.061^~1, 2~^~08/01/2010~ -~09314~^~405~^0.116^5^0.078^~1~^~A~^^^2^0.015^0.203^1^-0.870^1.102^~1, 2~^~08/01/2010~ -~09314~^~406~^1.432^5^0.908^~1~^~A~^^^2^0.411^2.900^1^-10.109^12.972^~2~^~08/01/2010~ -~09314~^~410~^0.397^5^0.007^~1~^~A~^^^2^0.330^0.420^1^0.314^0.479^~2~^~08/01/2010~ -~09314~^~415~^0.720^5^0.359^~1~^~A~^^^2^0.347^1.870^1^-3.845^5.284^~2~^~08/01/2010~ -~09314~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~502~^0.085^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~503~^0.061^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~504~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~505~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~506~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~507~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~508~^0.061^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~509~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~510~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~511~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~513~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~514~^0.147^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~515~^0.147^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~516~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~517~^0.085^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~518~^0.195^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~606~^0.169^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~610~^0.015^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~612~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~613~^0.102^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~617~^0.095^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~618~^0.011^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~619~^0.082^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~645~^0.102^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~646~^0.097^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~673~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~674~^0.095^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~675~^0.011^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~09314~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~09314~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~851~^0.082^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~09314~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09314~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2010~ -~09315~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09315~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~410~^0.253^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~415~^0.059^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~501~^0.011^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~505~^0.060^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~506~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09315~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09315~^~606~^0.051^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~613~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~614~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~617~^0.085^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~618~^0.069^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~645~^0.090^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09315~^~646~^0.069^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09316~^~312~^0.048^70^0.004^~1~^~A~^^^20^0.013^0.145^19^0.040^0.056^~1, 2~^~04/01/2003~ -~09316~^~315~^0.386^73^0.018^~1~^~A~^^^21^0.160^0.740^20^0.348^0.424^~2~^~02/01/2003~ -~09316~^~404~^0.024^12^0.003^~1~^~A~^^^3^0.007^0.044^2^0.012^0.036^~1, 2~^~04/01/2003~ -~09316~^~405~^0.022^12^0.008^~1~^~A~^^^3^0.007^0.050^2^-0.012^0.057^~1, 2~^~04/01/2003~ -~09316~^~406~^0.386^12^0.037^~1~^~A~^^^3^0.247^0.530^2^0.226^0.545^~2~^~04/01/2003~ -~09316~^~410~^0.125^12^0.003^~1~^~A~^^^3^0.071^0.146^2^0.112^0.138^~1, 2~^~02/01/2003~ -~09316~^~415~^0.047^12^0.012^~1~^~A~^^^3^0.030^0.080^2^-0.006^0.100^~1, 2~^~04/01/2003~ -~09316~^~501~^0.008^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~502~^0.020^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~503~^0.016^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~504~^0.034^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~505~^0.026^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~506~^0.002^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~507~^0.006^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~508~^0.019^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~509~^0.022^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~510~^0.019^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~511~^0.028^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~512~^0.012^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~513~^0.033^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~514~^0.149^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~515~^0.098^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~516~^0.026^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~517~^0.020^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~518~^0.025^0^^~1~^~DA~^~09318~^^^^^^^^^~03/01/2003~ -~09316~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09316~^~606~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~613~^0.012^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~614~^0.003^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~617~^0.042^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~618~^0.090^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~619~^0.065^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~626~^0.001^2^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~09316~^~645~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09316~^~646~^0.155^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~09317~^~312~^0.063^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~315~^0.200^3^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~404~^0.021^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~405~^0.034^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~406~^0.057^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~410~^0.179^3^0.035^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~415~^0.049^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~503~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~504~^0.029^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~505~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~508~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~510~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~513~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~514~^0.127^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~515~^0.083^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~517~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09317~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~619~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09317~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09317~^~646~^0.129^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~312~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~315~^0.290^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~404~^0.022^5^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~405~^0.037^6^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~406~^0.462^6^0.082^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~410~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~415~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~504~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~505~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~508~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~509~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~511~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~514~^0.096^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~515~^0.063^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~516~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~517~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~518~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09318~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~613~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~617~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09318~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09318~^~646~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~312~^0.020^10^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~315~^0.250^10^0.016^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~404~^0.016^18^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~405~^0.051^18^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~406~^0.401^18^0.047^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~410~^0.108^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~415~^0.030^5^0.006^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~502~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~504~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~505~^0.022^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~508~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~510~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~511~^0.023^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~514~^0.120^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~515~^0.078^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~516~^0.021^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09320~^~606~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~619~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09320~^~645~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09320~^~646~^0.064^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09321~^~404~^0.110^7^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~405~^0.113^7^0.014^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~406~^0.883^7^0.082^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~410~^0.226^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~415~^0.200^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~501~^0.010^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~505~^0.055^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~506~^0.007^4^^~1~^^^^^^^^^^^~08/01/1982~ -~09321~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09321~^~606~^0.048^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~613~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~614~^0.020^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~617~^0.114^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~618~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~645~^0.114^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09321~^~646~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09322~^~312~^0.086^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09322~^~404~^0.428^6^0.199^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~405~^0.152^5^0.029^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~406~^1.938^5^0.330^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~410~^0.143^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~415~^0.066^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~501~^0.018^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~505~^0.139^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~506~^0.014^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09322~^~606~^0.272^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~612~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~613~^0.168^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~614~^0.060^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~617~^0.181^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~618~^0.059^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09322~^~645~^0.181^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09322~^~646~^0.059^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~312~^0.080^26^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~404~^0.054^26^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~405~^0.045^26^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~406~^0.562^26^0.023^~1~^^^^^^^^^^^~08/01/1982~ -~09325~^~415~^0.120^0^^~4~^^^^^^^^^^^~04/01/1985~ -~09325~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09325~^~606~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~613~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~617~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~618~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~619~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~645~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09325~^~646~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~09326~^~312~^0.042^42^0.008^~1~^~A~^^^13^0.006^0.166^12^0.024^0.060^~1, 2~^~03/01/2003~ -~09326~^~315~^0.038^45^0.002^~1~^~A~^^^14^0.000^0.080^13^0.033^0.042^~1, 2~^~03/01/2003~ -~09326~^~404~^0.033^11^0.003^~1~^~A~^^^3^0.023^0.046^2^0.021^0.045^~1, 2~^~03/01/2003~ -~09326~^~405~^0.021^11^0.007^~1~^~A~^^^3^0.010^0.036^2^-0.010^0.052^~1, 2~^~03/01/2003~ -~09326~^~406~^0.178^11^0.008^~1~^~A~^^^3^0.110^0.210^2^0.142^0.215^~2~^~03/01/2003~ -~09326~^~410~^0.221^11^0.014^~1~^~A~^^^3^0.154^0.328^2^0.161^0.281^~2~^~03/01/2003~ -~09326~^~415~^0.045^11^0.009^~1~^~A~^^^3^0.033^0.065^2^0.004^0.086^~1, 2~^~03/01/2003~ -~09326~^~501~^0.007^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~502~^0.027^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~503~^0.019^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~504~^0.018^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~505~^0.062^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~506~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~507~^0.002^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~508~^0.015^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~509~^0.012^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~510~^0.016^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~511~^0.059^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~512~^0.006^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~513~^0.017^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~514~^0.039^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~515~^0.063^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~516~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~517~^0.024^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~518~^0.016^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09326~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09326~^~606~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~610~^0.001^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~611~^0.001^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~613~^0.008^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~614~^0.006^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~617~^0.037^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~618~^0.050^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2006~ -~09326~^~645~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09326~^~646~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~09328~^~312~^0.143^1^^~1~^~A~^^^^0.143^0.143^^^^^~03/01/2003~ -~09328~^~315~^0.012^1^^~1~^~A~^^^^0.012^0.012^^^^^~03/01/2003~ -~09328~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~09328~^~405~^0.000^1^^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2003~ -~09328~^~406~^0.004^1^^~1~^~A~^^^^0.004^0.004^^^^^~03/01/2003~ -~09328~^~410~^0.054^1^^~1~^~A~^^^^0.054^0.054^^^^^~03/01/2003~ -~09328~^~415~^0.005^1^^~1~^~A~^^^^0.005^0.005^^^^^~03/01/2003~ -~09328~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09328~^~606~^0.039^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~607~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~608~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~609~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~610~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~611~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~612~^0.001^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~613~^0.029^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~614~^0.010^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~617~^0.049^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~618~^0.028^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~619~^0.027^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~620~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~621~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~626~^0.001^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~627~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~628~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~629~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~630~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~631~^0.000^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~645~^0.049^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09328~^~646~^0.055^0^^~4~^~BFFN~^~09070~^^^^^^^^^~03/01/2003~ -~09334~^~312~^0.036^5^0.019^~1~^~A~^^^2^0.010^0.100^1^-0.203^0.275^~2~^~07/01/2010~ -~09334~^~315~^0.084^5^0.001^~1~^~A~^^^2^0.061^0.098^1^0.073^0.095^~2~^~07/01/2010~ -~09334~^~404~^0.006^5^0.003^~1~^~A~^^^2^0.003^0.009^1^-0.029^0.041^~1, 2~^~07/01/2010~ -~09334~^~405~^0.018^5^0.015^~1~^~A~^^^2^0.003^0.036^1^-0.170^0.205^~1, 2~^~07/01/2010~ -~09334~^~406~^0.295^5^0.005^~1~^~A~^^^2^0.230^0.350^1^0.228^0.361^~2~^~07/01/2010~ -~09334~^~410~^0.233^5^0.004^~1~^~A~^^^2^0.220^0.250^1^0.181^0.284^~2~^~07/01/2010~ -~09334~^~415~^0.067^5^0.016^~1~^~A~^^^2^0.043^0.086^1^-0.138^0.271^~2~^~07/01/2010~ -~09334~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~502~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~503~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~504~^0.028^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~505~^0.038^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~508~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~510~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~511~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~512~^0.009^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~513~^0.038^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~514~^0.075^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~515~^0.132^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~516~^0.028^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~517~^0.019^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~518~^0.028^0^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09334~^~606~^0.104^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~607~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~610~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09334~^~611~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09334~^~612~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09334~^~613~^0.075^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~614~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~615~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~ -~09334~^~617~^0.056^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09334~^~618~^0.107^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09334~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~09334~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~09334~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~09334~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~645~^0.056^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~646~^0.136^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~09334~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~674~^0.056^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~675~^0.107^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~09334~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09334~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~09334~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~851~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~09334~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09334~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09340~^~312~^0.050^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~315~^0.060^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~404~^0.009^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~405~^0.010^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~406~^0.219^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~410~^0.070^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~415~^0.022^2^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~502~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~503~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~505~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~509~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~510~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~511~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~513~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~514~^0.098^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~515~^0.036^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~517~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~518~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09340~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~613~^0.010^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~617~^0.047^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~618~^0.054^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~619~^0.001^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~628~^0.001^1^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~09340~^~645~^0.049^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09340~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09351~^~312~^0.086^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~404~^0.019^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~405~^0.021^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~406~^0.374^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~415~^0.051^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~ -~09351~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09351~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~613~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~614~^0.004^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~617~^0.018^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~618~^0.037^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~619~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09351~^~645~^0.018^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09351~^~646~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~09352~^~312~^0.053^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~ -~09352~^~315~^0.440^3^0.047^~1~^~A~^^^1^0.370^0.530^2^0.237^0.643^~2, 3~^~04/01/2008~ -~09352~^~404~^0.046^3^0.011^~1~^~A~^^^1^0.030^0.068^2^-0.002^0.095^~2, 3~^~04/01/2008~ -~09352~^~405~^0.132^3^0.008^~1~^~A~^^^1^0.116^0.140^2^0.098^0.165^~2, 3~^~04/01/2008~ -~09352~^~406~^0.363^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09352~^~410~^0.041^3^0.000^~1~^~A~^^^1^0.041^0.041^^^^~1, 2, 3~^~04/01/2008~ -~09352~^~415~^0.049^2^^~1~^~A~^^^1^0.049^0.049^1^^^^~04/01/2008~ -~09352~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09352~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~607~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~608~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~609~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~610~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~611~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~612~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~613~^0.022^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~614~^0.006^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~617~^0.060^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~618~^0.114^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~619~^0.075^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~620~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~621~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~626~^0.002^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~627~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~628~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~629~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~630~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~631~^0.000^0^^~4~^~BFZN~^~09050~^^^^^^^^^~04/01/2009~ -~09352~^~645~^0.062^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09352~^~646~^0.190^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09353~^~315~^2.300^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~404~^0.033^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~405~^0.313^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~406~^0.469^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~410~^0.041^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~09353~^~415~^0.035^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~09353~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09354~^~312~^0.107^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~404~^0.102^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~405~^0.021^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~406~^0.284^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~415~^0.075^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~ -~09354~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09354~^~606~^0.008^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~613~^0.006^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~617~^0.012^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~618~^0.023^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~619~^0.017^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~645~^0.014^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09354~^~646~^0.040^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09357~^~312~^0.097^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~404~^0.021^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~405~^0.024^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~406~^0.376^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~415~^0.055^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~ -~09357~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09357~^~606~^0.007^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~612~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~613~^0.007^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~614~^0.001^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~617~^0.045^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~618~^0.021^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~619~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~645~^0.045^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09357~^~646~^0.021^0^^~4~^^^^^^^^^^^~01/01/2007~ -~09362~^~315~^0.059^2^^~1~^~A~^^^1^0.051^0.068^1^^^^~04/01/2008~ -~09362~^~404~^0.025^2^^~1~^~A~^^^1^0.021^0.028^1^^^^~04/01/2008~ -~09362~^~405~^0.065^2^^~1~^~A~^^^1^0.057^0.073^1^^^^~04/01/2008~ -~09362~^~406~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~09362~^~410~^0.041^2^^~1~^~A~^^^1^0.041^0.041^^^^~1~^~04/01/2008~ -~09362~^~415~^0.047^2^^~1~^~A~^^^1^0.044^0.051^1^^^^~04/01/2008~ -~09362~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09367~^~312~^0.176^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~315~^0.048^0^^~4~^~BD~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~404~^0.022^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~405~^0.043^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~406~^0.396^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~ -~09367~^~410~^0.060^0^^~4~^~BD~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~415~^0.022^0^^~4~^~BD~^~09074~^^^^^^^^^~06/01/2008~ -~09367~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09367~^~606~^0.041^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~612~^0.001^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~613~^0.029^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~614~^0.010^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~617~^0.049^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~618~^0.028^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~619~^0.026^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~645~^0.049^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09367~^~646~^0.055^0^^~4~^^^^^^^^^^^~06/01/2008~ -~09370~^~312~^0.063^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~ -~09370~^~404~^0.020^3^0.006^~1~^~A~^^^1^0.015^0.032^2^-0.003^0.044^~1, 2, 3~^~11/01/2009~ -~09370~^~405~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~11/01/2009~ -~09370~^~406~^0.625^3^0.017^~1~^~A~^^^1^0.594^0.651^2^0.553^0.697^~2, 3~^~11/01/2009~ -~09370~^~410~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.021^0.027^~2, 3~^~11/01/2009~ -~09370~^~415~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~11/01/2009~ -~09370~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~503~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~504~^0.016^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~505~^0.017^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~509~^0.008^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~511~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~512~^0.007^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~513~^0.016^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~514~^0.238^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~515~^0.032^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~517~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~518~^0.018^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~09370~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09370~^~606~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09370~^~607~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~608~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~609~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~610~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~611~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~612~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~613~^0.013^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~614~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~617~^0.047^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~618~^0.066^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~619~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~620~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~621~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~626~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~627~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~628~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~629~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~630~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~631~^0.000^0^^~4~^~BFFN~^~09370~^^^^^^^^^~01/01/2010~ -~09370~^~645~^0.047^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09370~^~646~^0.066^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~09374~^~312~^0.061^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~404~^0.011^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~405~^0.024^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~406~^0.242^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~415~^0.014^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~ -~09374~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09374~^~606~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~613~^0.008^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~614~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~617~^0.036^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~618~^0.041^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~626~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~645~^0.037^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09374~^~646~^0.041^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~312~^0.046^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~404~^0.017^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~405~^0.041^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~406~^0.291^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~415~^0.028^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~ -~09379~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09379~^~606~^0.011^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~613~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~614~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~617~^0.089^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~618~^0.030^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~626~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~645~^0.090^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09379~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~312~^0.041^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~404~^0.088^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~405~^0.031^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~406~^0.445^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~415~^0.043^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~ -~09383~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09383~^~606~^0.004^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~613~^0.004^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~617~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~618~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~619~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~626~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~645~^0.007^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09383~^~646~^0.007^0^^~4~^^^^^^^^^^^~03/01/2007~ -~09400~^~312~^0.012^14^0.000^~1~^~A~^^^6^0.008^0.024^7^0.012^0.013^~1, 2, 3~^~05/01/2008~ -~09400~^~315~^0.074^59^0.006^~1~^~A~^^^17^0.020^0.255^19^0.062^0.087^~1, 2, 3~^~05/01/2008~ -~09400~^~404~^0.021^9^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09400~^~405~^0.017^5^0.011^~1~^^^^^^^^^^^~08/01/1982~ -~09400~^~406~^0.073^4^0.003^~1~^~A~^^^1^0.067^0.082^3^0.063^0.084^~2, 3~^~05/01/2008~ -~09400~^~410~^0.049^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09400~^~415~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~09400~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09400~^~606~^0.022^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~607~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~608~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~609~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~610~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~611~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~613~^0.018^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~617~^0.005^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~618~^0.033^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~619~^0.007^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~620~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~621~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~626~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~627~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~628~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~629~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~630~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~631~^0.000^0^^~4~^~BFZN~^~09016~^^^^^^^^^~05/01/2008~ -~09400~^~645~^0.006^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09400~^~646~^0.039^0^^~1~^^^^^^^^^^^~05/01/2008~ -~09401~^~312~^0.027^11^0.001^~1~^~A~^^^4^0.019^0.030^3^0.022^0.031^~1, 2~^~06/01/2008~ -~09401~^~315~^0.025^11^0.004^~1~^~A~^^^4^0.017^0.037^3^0.012^0.038^~1, 2~^~06/01/2008~ -~09401~^~404~^0.026^3^0.002^~1~^~A~^^^1^0.024^0.029^2^0.020^0.033^~2, 3~^~06/01/2008~ -~09401~^~405~^0.030^3^0.001^~1~^~A~^^^1^0.027^0.031^2^0.024^0.035^~2, 3~^~06/01/2008~ -~09401~^~406~^0.084^3^0.010^~1~^~A~^^^1^0.072^0.104^2^0.041^0.127^~2, 3~^~06/01/2008~ -~09401~^~410~^0.041^3^0.000^~1~^~A~^^^1^0.041^0.041^^^^~1, 2, 3~^~06/01/2008~ -~09401~^~415~^0.027^3^0.011^~1~^~A~^^^1^0.016^0.048^2^-0.019^0.072^~1, 2, 3~^~06/01/2008~ -~09401~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~502~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~503~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~505~^0.010^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~511~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~514~^0.028^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~516~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~517~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09401~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09401~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~613~^0.007^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~618~^0.012^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09401~^~646~^0.014^0^^~1~^^^^^^^^^^^~08/01/2008~ -~09402~^~312~^0.043^31^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~315~^0.075^10^0.016^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~404~^0.013^36^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~405~^0.028^51^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~406~^0.188^31^0.028^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~410~^0.052^9^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~415~^0.026^7^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~502~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~503~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~504~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~505~^0.011^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~508~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~510~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~511~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~513~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~514~^0.032^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~515~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~516~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~517~^0.006^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~518~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09402~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09402~^~646~^0.054^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~312~^0.033^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~315~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~410~^0.189^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09404~^~415~^0.044^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09404~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09404~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09404~^~646~^0.024^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09407~^~312~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.018^2^0.018^0.019^~1, 2, 3~^~12/01/2016~ -~09407~^~315~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.007^0.021^~1, 2, 3~^~12/01/2016~ -~09407~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~406~^0.200^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~410~^0.050^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~606~^0.224^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~607~^0.026^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~609~^0.026^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~610~^0.026^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~611~^0.019^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~612~^0.013^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~613~^0.077^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~614~^0.031^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~617~^0.031^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~618~^0.045^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~645~^0.063^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~646~^0.204^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~652~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~674~^0.031^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~675~^0.045^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09407~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09407~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~851~^0.057^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09407~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09407~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09408~^~312~^0.067^21^0.004^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~315~^0.030^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~404~^0.002^47^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~405~^0.013^47^0.000^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~406~^0.128^47^0.012^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~410~^0.022^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09408~^~415~^0.014^0^^~4~^^^^^^^^^^^~08/01/1982~ -~09408~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09408~^~606~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~618~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09408~^~646~^0.003^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09409~^~312~^0.069^20^0.041^~1~^~A~^^^2^0.028^0.130^1^-0.446^0.583^~2~^~04/01/2005~ -~09409~^~315~^0.504^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~404~^0.058^28^0.005^~1~^~A~^^^3^0.044^0.082^2^0.035^0.081^~2~^~04/01/2005~ -~09409~^~405~^0.021^28^0.005^~1~^~A~^^^3^0.012^0.040^2^-0.002^0.045^~1, 2~^~04/01/2005~ -~09409~^~406~^0.199^28^0.074^~1~^~A~^^^3^0.018^0.400^2^-0.119^0.517^~2~^~04/01/2005~ -~09409~^~410~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~09409~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09409~^~606~^0.008^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~09409~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~613~^0.005^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~614~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~617~^0.012^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~618~^0.024^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~619~^0.018^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~626~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~645~^0.014^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09409~^~646~^0.042^0^^~1~^^^^^^^^^^^~02/01/2007~ -~09410~^~312~^0.050^4^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~315~^0.225^4^0.047^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~404~^0.011^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~405~^0.054^3^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~406~^0.135^3^0.008^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~410~^0.223^3^0.061^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~415~^0.116^3^0.009^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09410~^~606~^0.060^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~613~^0.050^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~618~^0.089^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09410~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~312~^0.014^4^0.003^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~315~^0.063^4^0.013^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~404~^0.003^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~405~^0.015^3^0.001^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~406~^0.038^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~410~^0.063^3^0.017^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~415~^0.033^3^0.002^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09411~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09411~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1982~ -~09412~^~312~^0.078^4^0.007^~1~^~A~^^^2^0.040^0.105^1^0.008^0.148^~2, 3~^~08/01/2012~ -~09412~^~315~^0.037^4^0.001^~1~^~A~^^^2^0.034^0.038^1^0.024^0.049^~1, 2, 3~^~08/01/2012~ -~09412~^~404~^0.012^4^0.001^~1~^~A~^^^2^0.007^0.017^2^0.007^0.017^~1, 2, 3~^~08/01/2012~ -~09412~^~405~^0.026^4^0.002^~1~^~A~^^^2^0.015^0.038^2^0.014^0.038^~1, 2, 3~^~08/01/2012~ -~09412~^~406~^0.164^4^0.008^~1~^~A~^^^2^0.150^0.180^1^0.069^0.260^~1, 2, 3~^~08/01/2012~ -~09412~^~410~^0.042^4^0.004^~1~^~A~^^^2^0.030^0.056^2^0.020^0.063^~1, 2, 3~^~08/01/2012~ -~09412~^~415~^0.026^4^0.003^~1~^~A~^^^2^0.016^0.034^2^0.010^0.043^~1, 2, 3~^~08/01/2012~ -~09412~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~502~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~503~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~504~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~505~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~510~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~511~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~512~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~513~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~514~^0.111^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~515~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~516~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~517~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~518~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09412~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09413~^~312~^0.070^4^0.002^~1~^~A~^^^2^0.062^0.075^1^0.045^0.096^~1, 2, 3~^~08/01/2012~ -~09413~^~315~^0.056^3^0.000^~1~^~A~^^^2^0.047^0.074^1^0.052^0.061^~2, 3~^~08/01/2012~ -~09413~^~404~^0.012^4^0.003^~1~^~A~^^^2^0.007^0.018^2^-0.002^0.027^~1, 2, 3~^~08/01/2012~ -~09413~^~405~^0.028^4^0.005^~1~^~A~^^^2^0.015^0.049^1^-0.018^0.075^~1, 2, 3~^~08/01/2012~ -~09413~^~406~^0.162^4^0.005^~1~^~A~^^^2^0.150^0.170^1^0.098^0.226^~1, 2, 3~^~08/01/2012~ -~09413~^~410~^0.053^3^0.007^~1~^~A~^^^2^0.030^0.079^1^-0.033^0.139^~1, 2, 3~^~08/01/2012~ -~09413~^~415~^0.039^4^0.002^~1~^~A~^^^2^0.035^0.043^2^0.032^0.047^~2, 3~^~08/01/2012~ -~09413~^~501~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~502~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~503~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~504~^0.017^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~505~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~508~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~509~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~510~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~511~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~512~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~513~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~514~^0.094^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~515~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~517~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~518~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09413~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09414~^~312~^0.104^4^0.008^~1~^~A~^^^2^0.072^0.144^2^0.056^0.153^~2, 3~^~08/01/2012~ -~09414~^~315~^0.047^4^0.002^~1~^~A~^^^2^0.037^0.053^1^0.026^0.067^~1, 2, 3~^~08/01/2012~ -~09414~^~404~^0.012^4^0.001^~1~^~A~^^^2^0.007^0.016^2^0.006^0.018^~1, 2, 3~^~08/01/2012~ -~09414~^~405~^0.023^4^0.001^~1~^~A~^^^2^0.015^0.033^1^0.010^0.035^~1, 2, 3~^~08/01/2012~ -~09414~^~406~^0.152^4^0.015^~1~^~A~^^^2^0.110^0.170^1^-0.039^0.343^~1, 2, 3~^~08/01/2012~ -~09414~^~410~^0.057^3^0.010^~1~^~A~^^^2^0.041^0.080^1^-0.070^0.184^~1, 2, 3~^~08/01/2012~ -~09414~^~415~^0.021^4^0.001^~1~^~A~^^^2^0.016^0.028^1^0.005^0.037^~1, 2, 3~^~08/01/2012~ -~09414~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~502~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~503~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~504~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~505~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~508~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~510~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~511~^0.010^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~512~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~513~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~514~^0.101^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~515~^0.029^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~517~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~518~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09414~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09415~^~312~^0.077^4^0.014^~1~^~A~^^^2^0.048^0.128^1^-0.079^0.232^~1, 2, 3~^~08/01/2012~ -~09415~^~315~^0.048^4^0.005^~1~^~A~^^^2^0.037^0.057^1^0.008^0.087^~1, 2, 3~^~08/01/2012~ -~09415~^~404~^0.010^4^0.001^~1~^~A~^^^2^0.008^0.013^1^-0.002^0.023^~1, 2, 3~^~08/01/2012~ -~09415~^~405~^0.022^4^0.000^~1~^~A~^^^2^0.015^0.029^1^0.018^0.026^~1, 2, 3~^~08/01/2012~ -~09415~^~406~^0.151^4^0.021^~1~^~A~^^^2^0.097^0.180^1^-0.112^0.415^~1, 2, 3~^~08/01/2012~ -~09415~^~410~^0.043^4^0.008^~1~^~A~^^^2^0.030^0.060^1^-0.053^0.139^~1, 2, 3~^~08/01/2012~ -~09415~^~415~^0.026^4^0.003^~1~^~A~^^^2^0.016^0.038^2^0.008^0.044^~2, 3~^~08/01/2012~ -~09415~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~502~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~503~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~504~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~505~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~506~^0.003^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~508~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~510~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~511~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~512~^0.002^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~513~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~514~^0.124^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~515~^0.036^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~516~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~517~^0.025^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~518~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09415~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09416~^~312~^0.032^6^0.000^~1~^~A~^^^2^0.031^0.033^4^0.032^0.033^~2, 3~^~10/01/2016~ -~09416~^~315~^0.019^6^0.000^~1~^~A~^^^2^0.015^0.022^4^0.018^0.021^~2, 3~^~10/01/2016~ -~09416~^~404~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~10/01/2016~ -~09416~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09416~^~406~^0.263^3^0.003^~1~^~A~^^^1^0.260^0.270^2^0.249^0.278^~2, 3~^~10/01/2016~ -~09416~^~410~^0.280^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09416~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~10/01/2016~ -~09420~^~312~^0.050^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~315~^0.078^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~404~^0.033^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~405~^0.036^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~406~^0.677^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~410~^0.072^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~415~^0.044^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~09420~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09421~^~312~^0.362^2^^~1~^~A~^^^2^0.353^0.371^^^^^~04/01/2003~ -~09421~^~315~^0.296^2^^~1~^~A~^^^2^0.281^0.311^^^^^~04/01/2003~ -~09421~^~404~^0.050^2^^~1~^~A~^^^2^0.047^0.053^^^^^~04/01/2003~ -~09421~^~405~^0.060^2^^~1~^~A~^^^2^0.060^0.060^^^^^~04/01/2003~ -~09421~^~406~^1.610^2^^~1~^~A~^^^2^1.450^1.770^^^^^~04/01/2003~ -~09421~^~410~^0.805^2^^~1~^~A~^^^2^0.760^0.850^^^^^~04/01/2003~ -~09421~^~415~^0.249^2^^~1~^~A~^^^2^0.231^0.266^^^^^~04/01/2003~ -~09421~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~502~^0.042^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~503~^0.045^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~504~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~505~^0.054^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~506~^0.017^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~507~^0.046^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~508~^0.048^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~509~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~510~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~511~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~512~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~513~^0.078^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~514~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~515~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~516~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~517~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~518~^0.062^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~09421~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09422~^~312~^0.207^2^^~1~^~A~^^^1^0.177^0.237^^^^^~08/01/2002~ -~09422~^~315~^0.325^2^^~1~^~A~^^^1^0.312^0.337^^^^^~08/01/2002~ -~09422~^~404~^0.374^2^^~1~^~A~^^^1^0.353^0.394^^^^^~08/01/2002~ -~09422~^~405~^0.200^2^^~1~^~A~^^^1^0.179^0.221^^^^^~08/01/2002~ -~09422~^~406~^1.074^2^^~1~^~A~^^^1^0.860^1.287^^^^^~08/01/2002~ -~09422~^~410~^0.230^2^^~1~^~A~^^^1^0.221^0.239^^^^^~08/01/2002~ -~09422~^~415~^0.316^2^^~1~^~A~^^^1^0.171^0.460^^^^^~08/01/2002~ -~09422~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09423~^~404~^0.040^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~406~^2.500^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~410~^0.430^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~ -~09423~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09423~^~606~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1999~ -~09426~^~312~^0.029^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~315~^0.111^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~09426~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09426~^~606~^0.010^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~613~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~614~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~617~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~618~^0.013^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~619~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09426~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~645~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~09426~^~646~^0.020^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~ -~09427~^~312~^0.057^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~315~^0.182^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09427~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09427~^~606~^0.014^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~312~^1.060^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~315~^0.155^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09428~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09428~^~606~^0.245^1^^~1~^~A~^^^^^^^^^^~11/01/2000~ -~09429~^~312~^0.081^12^0.013^~1~^~A~^^^3^0.039^0.161^2^0.025^0.136^~1, 2~^~06/01/2003~ -~09429~^~315~^1.593^12^0.473^~1~^~A~^^^3^0.680^4.170^2^-0.441^3.627^~2~^~06/01/2003~ -~09429~^~404~^0.078^10^0.002^~1~^~A~^^^2^0.068^0.090^1^0.055^0.100^~2~^~06/01/2003~ -~09429~^~405~^0.029^10^0.016^~1~^~A~^^^2^0.010^0.052^1^-0.177^0.235^~1, 2~^~06/01/2003~ -~09429~^~406~^0.470^6^0.283^~1~^~A~^^^2^0.170^1.020^1^-3.125^4.066^~2~^~06/01/2003~ -~09429~^~410~^0.193^10^0.032^~1~^~A~^^^2^0.127^0.242^1^-0.208^0.595^~2~^~06/01/2003~ -~09429~^~415~^0.106^10^0.003^~1~^~A~^^^2^0.082^0.130^1^0.068^0.143^~2~^~06/01/2003~ -~09429~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09430~^~312~^0.113^10^0.009^~1~^~A~^^^2^0.069^0.193^5^0.091^0.135^~2, 3~^~05/01/2003~ -~09430~^~315~^0.818^10^0.152^~1~^~A~^^^2^0.124^1.700^7^0.457^1.179^~2, 3~^~05/01/2003~ -~09430~^~404~^0.080^8^0.004^~1~^~A~^^^2^0.061^0.112^4^0.068^0.092^~2, 3~^~05/01/2003~ -~09430~^~405~^0.033^8^0.002^~1~^~A~^^^2^0.020^0.046^6^0.028^0.038^~2, 3~^~05/01/2003~ -~09430~^~406~^0.507^8^0.156^~1~^~A~^^^2^0.190^1.490^3^0.012^1.003^~2, 3~^~05/01/2003~ -~09430~^~410~^0.217^8^0.054^~1~^~A~^^^2^0.050^0.454^5^0.081^0.354^~2, 3~^~05/01/2003~ -~09430~^~415~^0.114^8^0.007^~1~^~A~^^^2^0.086^0.151^6^0.096^0.131^~2, 3~^~05/01/2003~ -~09430~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09433~^~312~^0.043^5^0.003^~1~^~A~^^^2^0.034^0.054^3^0.032^0.053^~2, 3~^~05/01/2005~ -~09433~^~315~^0.023^4^0.001^~1~^~A~^^^1^0.021^0.025^3^0.020^0.026^~2, 3~^~03/01/2005~ -~09433~^~404~^0.086^5^0.004^~1~^~A~^^^2^0.073^0.095^3^0.074^0.099^~2, 3~^~05/01/2005~ -~09433~^~405~^0.030^5^0.003^~1~^~A~^^^2^0.007^0.045^3^0.020^0.040^~1, 2, 3~^~05/01/2005~ -~09433~^~406~^0.636^5^0.137^~1~^~A~^^^2^0.292^1.240^3^0.201^1.070^~2, 3~^~05/01/2005~ -~09433~^~410~^0.151^5^0.002^~1~^~A~^^^2^0.100^0.172^3^0.143^0.158^~2, 3~^~05/01/2005~ -~09433~^~415~^0.075^5^0.002^~1~^~A~^^^2^0.068^0.080^3^0.070^0.079^~2, 3~^~05/01/2005~ -~09433~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09434~^~312~^0.010^2^^~1~^~A~^^^1^0.007^0.013^1^^^^~04/01/2006~ -~09434~^~315~^0.010^2^^~1~^~A~^^^1^0.007^0.013^1^^^^~04/01/2006~ -~09434~^~404~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~04/01/2006~ -~09434~^~405~^0.011^2^^~1~^~A~^^^1^0.003^0.020^1^^^~1~^~04/01/2006~ -~09434~^~406~^0.120^2^^~1~^~A~^^^1^0.070^0.170^1^^^^~04/01/2006~ -~09434~^~410~^0.070^2^^~1~^~A~^^^1^0.050^0.090^1^^^^~04/01/2006~ -~09434~^~415~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^~1~^~04/01/2006~ -~09434~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09434~^~606~^0.029^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~607~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~608~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~609~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~610~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~611~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~612~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~613~^0.023^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~614~^0.006^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~617~^0.048^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~618~^0.039^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~619~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~620~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~621~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~626~^0.002^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~627~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~628~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~629~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~630~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~631~^0.000^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~645~^0.051^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09434~^~646~^0.039^0^^~4~^~BFFN~^~09315~^^^^^^^^^~03/01/2007~ -~09435~^~312~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~315~^0.058^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~404~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~405~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~09435~^~406~^0.170^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~410~^0.080^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09435~^~415~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~09435~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~09435~^~606~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2014~ -~09435~^~645~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2014~ -~09435~^~646~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2014~ -~09436~^~312~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^^~06/01/2006~ -~09436~^~315~^0.028^2^^~1~^~A~^^^1^0.027^0.028^1^^^^~06/01/2006~ -~09436~^~404~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~06/01/2006~ -~09436~^~405~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~06/01/2006~ -~09436~^~406~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~06/01/2006~ -~09436~^~410~^0.070^2^^~1~^~A~^^^1^0.070^0.070^^^^^~06/01/2006~ -~09436~^~415~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~06/01/2006~ -~09436~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09436~^~606~^0.014^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~607~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~608~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~609~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~610~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~611~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~612~^0.002^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~613~^0.011^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~614~^0.001^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~617~^0.012^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~618~^0.003^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~619~^0.008^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~620~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~621~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~626~^0.010^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~627~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~628~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~629~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~630~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~631~^0.000^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~645~^0.022^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09436~^~646~^0.011^0^^~4~^~BFFN~^~09176~^^^^^^^^^~03/01/2007~ -~09437~^~312~^0.014^2^^~1~^~A~^^^1^0.011^0.017^1^^^^~04/01/2006~ -~09437~^~315~^0.020^2^^~1~^~A~^^^1^0.015^0.026^1^^^^~04/01/2006~ -~09437~^~404~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~04/01/2006~ -~09437~^~405~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~04/01/2006~ -~09437~^~406~^0.070^2^^~1~^~A~^^^1^0.050^0.090^1^^^^~04/01/2006~ -~09437~^~410~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~04/01/2006~ -~09437~^~415~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^~1~^~04/01/2006~ -~09437~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09442~^~312~^0.021^3^0.006^~1~^~A~^^^1^0.010^0.031^2^-0.006^0.048^~1, 2, 3~^~06/01/2008~ -~09442~^~315~^0.095^3^0.023^~1~^~A~^^^1^0.049^0.119^2^-0.004^0.193^~2, 3~^~06/01/2008~ -~09442~^~404~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~405~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~06/01/2008~ -~09442~^~406~^0.233^3^0.017^~1~^~A~^^^1^0.200^0.250^2^0.162^0.305^~2, 3~^~06/01/2008~ -~09442~^~410~^0.285^2^^~1~^~A~^^^1^0.240^0.330^1^^^^~06/01/2008~ -~09442~^~415~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~06/01/2008~ -~09442~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09442~^~606~^0.077^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~607~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~608~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~609~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~610~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~611~^0.004^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~612~^0.004^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~613~^0.044^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~614~^0.024^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~617~^0.049^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~618~^0.050^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~619~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~620~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~621~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~626~^0.008^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~627~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~628~^0.003^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~629~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~630~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~631~^0.000^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~645~^0.059^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09442~^~646~^0.050^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~ -~09443~^~312~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^~1~^~06/01/2008~ -~09443~^~315~^0.041^2^^~1~^~A~^^^1^0.038^0.045^1^^^^~06/01/2008~ -~09443~^~404~^0.006^2^^~1~^~A~^^^1^0.004^0.009^1^^^~1~^~06/01/2008~ -~09443~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~06/01/2008~ -~09443~^~406~^0.087^2^^~1~^~A~^^^1^0.072^0.101^1^^^^~06/01/2008~ -~09443~^~410~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^~1~^~06/01/2008~ -~09443~^~415~^0.021^2^^~1~^~A~^^^1^0.017^0.025^1^^^^~06/01/2008~ -~09443~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09443~^~606~^0.023^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~612~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~613~^0.019^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~614~^0.003^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~617~^0.004^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~618~^0.027^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~619~^0.006^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~645~^0.005^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09443~^~646~^0.032^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~ -~09444~^~312~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~315~^0.086^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~404~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09444~^~406~^0.094^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~ -~09444~^~415~^0.018^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~09444~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09444~^~606~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~607~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~608~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~609~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~610~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~611~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~612~^0.001^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~613~^0.018^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~614~^0.002^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~617~^0.005^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~618~^0.033^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~619~^0.007^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~620~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~621~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~626~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~627~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~628~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~629~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~630~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~631~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~ -~09444~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09444~^~646~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~09446~^~312~^0.183^3^0.021^~1~^~A~^^^2^0.120^0.289^1^-0.087^0.453^~2~^~07/01/2009~ -~09446~^~315~^0.188^3^0.049^~1~^~A~^^^2^0.139^0.306^1^-0.438^0.815^~2~^~07/01/2009~ -~09446~^~404~^0.047^2^^~1~^~A~^^^1^0.045^0.048^1^^^^~07/01/2009~ -~09446~^~405~^0.102^2^^~1~^~A~^^^1^0.086^0.117^1^^^^~07/01/2009~ -~09446~^~406~^0.818^3^0.118^~1~^~A~^^^2^0.700^0.979^1^-0.682^2.318^~2~^~07/01/2009~ -~09446~^~410~^0.388^2^^~1~^~A~^^^1^0.329^0.446^1^^^^~07/01/2009~ -~09446~^~415~^0.264^2^^~1~^~A~^^^1^0.256^0.271^1^^^^~07/01/2009~ -~09446~^~605~^0.159^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~606~^3.690^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~610~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~612~^0.127^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~613~^2.269^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~614~^1.196^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~617~^4.078^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~618~^2.348^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~619~^0.215^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~620~^0.021^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~626~^0.189^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~628~^0.080^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~629~^0.001^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~631~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~645~^4.353^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~646~^2.697^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~653~^0.036^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~662~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~663~^0.113^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~665~^0.043^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~670~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~672~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~673~^0.186^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~674~^3.965^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~675~^2.278^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~676~^0.001^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~09446~^~693~^0.116^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09446~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09446~^~851~^0.212^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~852~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~853~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09446~^~858~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~312~^0.116^3^0.016^~1~^~A~^^^1^0.099^0.147^2^0.049^0.183^~2, 3~^~07/01/2009~ -~09447~^~315~^0.280^3^0.028^~1~^~A~^^^1^0.227^0.321^2^0.160^0.399^~2, 3~^~07/01/2009~ -~09447~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~406~^0.837^4^0.058^~1~^~A~^^^1^0.770^1.010^3^0.654^1.021^~2, 3~^~07/01/2009~ -~09447~^~410~^0.600^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~415~^0.290^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~09447~^~605~^0.111^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~606~^1.816^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2009~ -~09447~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~09447~^~610~^0.011^3^0.002^~1~^~A~^^^1^0.007^0.013^2^0.003^0.019^~2, 3~^~07/01/2009~ -~09447~^~611~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~2, 3~^~07/01/2009~ -~09447~^~612~^0.047^3^0.035^~1~^~A~^^^1^0.005^0.116^2^-0.102^0.196^~2, 3~^~07/01/2009~ -~09447~^~613~^1.211^3^0.433^~1~^~A~^^^1^0.551^2.026^2^-0.651^3.073^~2, 3~^~07/01/2009~ -~09447~^~614~^0.489^3^0.264^~1~^~A~^^^1^0.188^1.016^2^-0.648^1.626^~2, 3~^~07/01/2009~ -~09447~^~615~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~07/01/2009~ -~09447~^~617~^2.207^3^0.736^~1~^~AS~^^^1^1.379^3.675^2^-0.961^5.374^~2, 3~^~07/01/2009~ -~09447~^~618~^2.017^3^0.207^~1~^~AS~^^^1^1.604^2.246^2^1.127^2.907^~2, 3~^~07/01/2009~ -~09447~^~619~^0.219^3^0.053^~1~^~AS~^^^1^0.138^0.320^2^-0.011^0.449^~2, 3~^~07/01/2009~ -~09447~^~620~^0.005^3^0.004^~1~^~A~^^^1^0.000^0.014^2^-0.013^0.024^~1, 2, 3~^~07/01/2009~ -~09447~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2009~ -~09447~^~624~^0.010^3^0.004^~1~^~A~^^^1^0.003^0.016^2^-0.006^0.026^~2, 3~^~07/01/2009~ -~09447~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2009~ -~09447~^~626~^0.076^3^0.058^~1~^~AS~^^^1^0.007^0.191^2^-0.173^0.325^~2, 3~^~07/01/2009~ -~09447~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~628~^0.033^3^0.020^~1~^~A~^^^1^0.012^0.072^2^-0.051^0.117^~2, 3~^~07/01/2009~ -~09447~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~07/01/2009~ -~09447~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~07/01/2009~ -~09447~^~631~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~07/01/2009~ -~09447~^~645~^2.319^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~646~^2.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~652~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.007^2^-0.003^0.011^~2, 3~^~07/01/2009~ -~09447~^~653~^0.015^3^0.009^~1~^~A~^^^1^0.005^0.033^2^-0.024^0.054^~2, 3~^~07/01/2009~ -~09447~^~654~^0.005^3^0.002^~1~^~A~^^^1^0.002^0.007^2^-0.002^0.013^~2, 3~^~07/01/2009~ -~09447~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~07/01/2009~ -~09447~^~663~^0.076^3^0.033^~1~^~A~^^^1^0.010^0.117^2^-0.067^0.218^~2, 3~^~07/01/2009~ -~09447~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~665~^0.034^3^0.006^~1~^~A~^^^1^0.023^0.045^2^0.007^0.062^~2, 3~^~07/01/2009~ -~09447~^~670~^0.011^3^0.004^~1~^~A~^^^1^0.006^0.020^2^-0.007^0.030^~2, 3~^~07/01/2009~ -~09447~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~07/01/2009~ -~09447~^~672~^0.022^3^0.018^~1~^~A~^^^1^0.002^0.057^2^-0.055^0.098^~2, 3~^~07/01/2009~ -~09447~^~673~^0.075^3^0.057^~1~^~A~^^^1^0.007^0.187^2^-0.169^0.318^~2, 3~^~07/01/2009~ -~09447~^~674~^2.131^3^0.727^~1~^~A~^^^1^1.262^3.575^2^-0.997^5.259^~2, 3~^~07/01/2009~ -~09447~^~675~^1.971^3^0.211^~1~^~A~^^^1^1.549^2.193^2^1.062^2.880^~2, 3~^~07/01/2009~ -~09447~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2009~ -~09447~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~07/01/2009~ -~09447~^~687~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2009~ -~09447~^~689~^0.005^3^0.005^~1~^~AS~^^^1^0.000^0.016^2^-0.018^0.028^~2, 3~^~07/01/2009~ -~09447~^~693~^0.077^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~09447~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~09447~^~851~^0.218^3^0.054^~1~^~A~^^^1^0.135^0.319^2^-0.014^0.450^~2, 3~^~07/01/2009~ -~09447~^~852~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~07/01/2009~ -~09447~^~853~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~07/01/2009~ -~09447~^~858~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~2, 3~^~07/01/2009~ -~09448~^~312~^0.053^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~315~^0.172^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~404~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~406~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~09448~^~415~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~09448~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09449~^~312~^0.041^5^0.002^~1~^~A~^^^1^0.034^0.047^4^0.034^0.048^~2, 3~^~07/01/2010~ -~09449~^~315~^0.248^5^0.030^~1~^~A~^^^1^0.197^0.321^4^0.165^0.330^~2, 3~^~07/01/2010~ -~09449~^~404~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~07/01/2010~ -~09449~^~405~^0.018^3^0.002^~1~^~A~^^^1^0.014^0.020^2^0.009^0.026^~1, 2, 3~^~07/01/2010~ -~09449~^~406~^0.290^3^0.012^~1~^~A~^^^1^0.270^0.310^2^0.240^0.340^~2, 3~^~07/01/2010~ -~09449~^~410~^0.180^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.114^0.246^~2, 3~^~07/01/2010~ -~09449~^~415~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.016^0.027^~2, 3~^~07/01/2010~ -~09449~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09450~^~312~^0.028^3^0.009^~1~^~A~^^^1^0.010^0.038^2^-0.012^0.068^~1, 2, 3~^~04/01/2010~ -~09450~^~315~^0.067^3^0.010^~1~^~A~^^^1^0.048^0.081^2^0.025^0.109^~2, 3~^~04/01/2010~ -~09450~^~404~^0.045^2^^~1~^~A~^^^1^0.030^0.060^1^^^^~04/01/2010~ -~09450~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2010~ -~09450~^~406~^1.450^2^^~1~^~A~^^^1^1.450^1.450^^^^^~04/01/2010~ -~09450~^~410~^0.220^2^^~1~^~A~^^^1^0.170^0.270^1^^^^~04/01/2010~ -~09450~^~415~^0.107^2^^~1~^~A~^^^1^0.086^0.127^1^^^^~04/01/2010~ -~09450~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09451~^~312~^0.020^2^^~1~^~A~^^^1^0.017^0.023^1^^^^~07/01/2009~ -~09451~^~315~^0.039^2^^~1~^~A~^^^1^0.025^0.053^1^^^^~07/01/2009~ -~09451~^~404~^0.025^2^^~1~^~A~^^^1^0.020^0.029^1^^^^~07/01/2009~ -~09451~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^1^^^^~07/01/2009~ -~09451~^~406~^0.565^2^^~1~^~A~^^^1^0.561^0.568^1^^^^~07/01/2009~ -~09451~^~410~^0.183^2^^~1~^~A~^^^1^0.181^0.184^1^^^^~07/01/2009~ -~09451~^~415~^0.063^2^^~1~^~A~^^^1^0.056^0.069^1^^^^~07/01/2009~ -~09451~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09452~^~312~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~315~^0.378^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~404~^0.040^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~405~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~406~^0.173^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~415~^0.061^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09452~^~606~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~613~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~614~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~617~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~618~^0.019^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~619~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~645~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09452~^~646~^0.024^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~09500~^~312~^0.027^3^0.000^~1~^~A~^^^2^0.024^0.029^^^^~2, 3~^~08/01/2012~ -~09500~^~315~^0.034^5^0.003^~1~^~A~^^^3^0.026^0.050^1^0.004^0.064^~1, 2, 3~^~08/01/2012~ -~09500~^~404~^0.015^4^0.002^~1~^~A~^^^2^0.010^0.022^2^0.006^0.024^~2, 3~^~08/01/2012~ -~09500~^~405~^0.025^4^0.002^~1~^~A~^^^2^0.015^0.035^2^0.017^0.033^~1, 2, 3~^~08/01/2012~ -~09500~^~406~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~08/01/2012~ -~09500~^~410~^0.051^4^0.003^~1~^~A~^^^2^0.030^0.078^1^0.012^0.090^~1, 2, 3~^~08/01/2012~ -~09500~^~415~^0.034^4^0.002^~1~^~A~^^^2^0.028^0.037^1^0.017^0.051^~2, 3~^~08/01/2012~ -~09500~^~501~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~502~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~504~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~505~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~506~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~508~^0.007^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~509~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~511~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~512~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~513~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~514~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~515~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~516~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~517~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~518~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09500~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09501~^~312~^0.030^3^0.000^~1~^~A~^^^2^0.027^0.035^1^0.026^0.034^~2, 3~^~08/01/2012~ -~09501~^~315~^0.035^5^0.001^~1~^~A~^^^3^0.030^0.038^1^0.029^0.042^~1, 2, 3~^~08/01/2012~ -~09501~^~404~^0.018^4^0.001^~1~^~A~^^^2^0.010^0.026^2^0.012^0.024^~2, 3~^~08/01/2012~ -~09501~^~405~^0.026^4^0.002^~1~^~A~^^^2^0.015^0.038^2^0.018^0.035^~1, 2, 3~^~08/01/2012~ -~09501~^~406~^0.094^2^^~1~^~A~^^^1^0.090^0.099^1^^^^~08/01/2012~ -~09501~^~410~^0.074^4^0.005^~1~^~A~^^^2^0.030^0.128^1^0.010^0.137^~1, 2, 3~^~08/01/2012~ -~09501~^~415~^0.051^4^0.003^~1~^~A~^^^2^0.045^0.056^1^0.018^0.083^~2, 3~^~08/01/2012~ -~09501~^~501~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~502~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~503~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~504~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~505~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~506~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~507~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~508~^0.007^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~509~^0.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~511~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~512~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~513~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~514~^0.075^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~515~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~516~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~517~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~518~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~09501~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09502~^~312~^0.031^3^0.002^~1~^~A~^^^2^0.029^0.034^1^0.010^0.053^~2, 3~^~08/01/2012~ -~09502~^~315~^0.044^5^0.005^~1~^~A~^^^3^0.033^0.057^2^0.021^0.066^~1, 2, 3~^~08/01/2012~ -~09502~^~404~^0.019^4^0.002^~1~^~A~^^^2^0.010^0.027^2^0.011^0.026^~2, 3~^~08/01/2012~ -~09502~^~405~^0.025^4^0.003^~1~^~A~^^^2^0.015^0.039^1^0.001^0.049^~1, 2, 3~^~08/01/2012~ -~09502~^~406~^0.126^2^^~1~^~A~^^^1^0.122^0.130^1^^^^~08/01/2012~ -~09502~^~410~^0.056^4^0.002^~1~^~A~^^^2^0.030^0.087^1^0.032^0.081^~1, 2, 3~^~08/01/2012~ -~09502~^~415~^0.037^4^0.003^~1~^~A~^^^2^0.030^0.046^2^0.022^0.051^~2, 3~^~08/01/2012~ -~09502~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09503~^~312~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~08/01/2012~ -~09503~^~315~^0.037^4^0.001^~1~^~A~^^^2^0.034^0.039^1^0.021^0.052^~1, 2, 3~^~08/01/2012~ -~09503~^~404~^0.017^4^0.002^~1~^~A~^^^2^0.010^0.022^1^-0.001^0.036^~2, 3~^~08/01/2012~ -~09503~^~405~^0.029^4^0.004^~1~^~A~^^^2^0.015^0.049^1^-0.005^0.064^~1, 2, 3~^~08/01/2012~ -~09503~^~406~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~08/01/2012~ -~09503~^~410~^0.055^4^0.001^~1~^~A~^^^2^0.030^0.084^1^0.038^0.073^~1, 2, 3~^~08/01/2012~ -~09503~^~415~^0.049^4^0.002^~1~^~A~^^^2^0.046^0.052^2^0.040^0.058^~2, 3~^~08/01/2012~ -~09503~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09504~^~312~^0.025^2^^~1~^~A~^^^1^0.021^0.029^1^^^^~08/01/2012~ -~09504~^~315~^0.031^4^0.001^~1~^~A~^^^2^0.026^0.037^1^0.026^0.036^~1, 2, 3~^~08/01/2012~ -~09504~^~404~^0.013^4^0.001^~1~^~A~^^^2^0.007^0.019^2^0.006^0.019^~1, 2, 3~^~08/01/2012~ -~09504~^~405~^0.026^4^0.001^~1~^~A~^^^2^0.015^0.035^1^0.011^0.040^~1, 2, 3~^~08/01/2012~ -~09504~^~406~^0.070^2^^~1~^~A~^^^1^0.070^0.070^^^^^~08/01/2012~ -~09504~^~410~^0.051^4^0.002^~1~^~A~^^^2^0.030^0.076^1^0.026^0.076^~1, 2, 3~^~08/01/2012~ -~09504~^~415~^0.045^4^0.005^~1~^~A~^^^2^0.037^0.055^1^-0.008^0.098^~2, 3~^~08/01/2012~ -~09504~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09506~^~312~^0.042^32^0.007^~1~^~A~^^^6^0.025^0.103^5^0.024^0.059^~1, 2~^~03/01/2014~ -~09506~^~315~^0.023^32^0.002^~1~^~A~^^^6^0.000^0.034^5^0.018^0.027^~1, 2~^~03/01/2014~ -~09506~^~404~^0.046^6^0.004^~1~^~A~^^^1^0.036^0.062^5^0.036^0.056^~2, 3~^~03/01/2014~ -~09506~^~405~^0.039^6^0.002^~1~^~A~^^^1^0.031^0.045^5^0.034^0.044^~2, 3~^~03/01/2014~ -~09506~^~406~^0.280^3^0.050^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~410~^0.195^3^0.002^~1~^~A~^^^1^0.190^0.197^2^0.185^0.205^~2, 3~^~03/01/2014~ -~09506~^~415~^0.076^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.090^~2, 3~^~03/01/2014~ -~09506~^~501~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~502~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~503~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~504~^0.015^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~505~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~507~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~508~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~509~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~510~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~512~^0.003^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~513~^0.018^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~514~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~515~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~516~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~517~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~518~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~09506~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09506~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~613~^0.014^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~614~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~617~^0.018^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~618~^0.023^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~619~^0.007^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~626~^0.003^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2014~ -~09506~^~645~^0.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09506~^~646~^0.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~09507~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09507~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~312~^0.053^2^^~1~^~A~^^^1^0.053^0.054^1^^^^~06/01/2015~ -~09508~^~315~^0.215^2^^~1~^~A~^^^1^0.194^0.236^1^^^^~06/01/2015~ -~09508~^~404~^0.070^2^^~1~^~A~^^^1^0.070^0.070^^^^^~06/01/2015~ -~09508~^~405~^0.090^2^^~1~^~A~^^^1^0.070^0.110^1^^^^~06/01/2015~ -~09508~^~406~^0.290^2^^~1~^~A~^^^1^0.290^0.290^^^^^~06/01/2015~ -~09508~^~415~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~06/01/2015~ -~09508~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09508~^~606~^0.053^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~611~^0.001^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~612~^0.004^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~613~^0.045^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~614~^0.004^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~617~^0.026^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~618~^0.047^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~619~^0.026^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~626~^0.014^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~09508~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09508~^~646~^0.073^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09510~^~312~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~315~^0.504^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~404~^0.058^9^0.009^~1~^~A~^^^2^0.044^0.082^1^-0.058^0.174^~2~^~04/01/2014~ -~09510~^~405~^0.016^9^0.001^~1~^~A~^^^2^0.012^0.022^1^0.003^0.029^~1, 2~^~04/01/2014~ -~09510~^~406~^0.141^9^0.080^~1~^~A~^^^2^0.018^0.221^1^-0.873^1.155^~2~^~04/01/2014~ -~09510~^~410~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09510~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09510~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~406~^8.333^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~410~^4.167^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09511~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09512~^~312~^0.018^14^0.004^~1~^~A~^^^5^0.010^0.038^4^0.008^0.029^~1, 2~^~04/01/2014~ -~09512~^~315~^0.239^14^0.024^~1~^~A~^^^5^0.081^0.432^4^0.172^0.307^~2~^~04/01/2014~ -~09512~^~404~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~09512~^~406~^0.133^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~410~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~415~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~09512~^~502~^0.016^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~503~^0.007^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~504~^0.012^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~505~^0.010^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~506~^0.001^3^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~508~^0.012^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~509~^0.003^17^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~510~^0.010^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~511~^0.047^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~512~^0.007^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~513~^0.086^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~514~^0.022^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~515~^0.110^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~516~^0.012^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~517~^0.016^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~518~^0.013^18^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~09512~^~606~^0.025^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~612~^0.001^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~613~^0.021^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~614~^0.003^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~617~^0.003^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~618~^0.017^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~619~^0.005^1^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~645~^0.003^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09512~^~646~^0.022^0^^~1~^^^^^^^^^^^~04/01/2014~ -~09513~^~312~^0.040^2^^~1~^~A~^^^1^0.038^0.042^1^^^^~06/01/2015~ -~09513~^~315~^0.076^2^^~1~^~A~^^^1^0.073^0.079^1^^^^~06/01/2015~ -~09513~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~09513~^~405~^0.085^2^^~1~^~A~^^^1^0.080^0.090^1^^^^~06/01/2015~ -~09513~^~406~^0.455^2^^~1~^~A~^^^1^0.440^0.470^1^^^^~06/01/2015~ -~09513~^~415~^0.026^2^^~1~^~A~^^^1^0.015^0.037^1^^^~1~^~06/01/2015~ -~09513~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~606~^0.105^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~608~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~613~^0.061^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~614~^0.018^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~617~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~618~^0.093^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~624~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~626~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~646~^0.112^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~663~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~673~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~674~^0.026^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~675~^0.093^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09513~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09513~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~851~^0.019^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09513~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09513~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09514~^~415~^0.400^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~606~^0.003^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~645~^0.002^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09514~^~646~^0.011^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~09515~^~312~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.051^2^0.043^0.055^~2, 3~^~06/01/2015~ -~09515~^~315~^1.357^3^0.026^~1~^~A~^^^1^1.310^1.400^2^1.245^1.469^~2, 3~^~06/01/2015~ -~09515~^~404~^0.060^2^^~1~^~A~^^^1^0.060^0.060^^^^^~06/01/2015~ -~09515~^~405~^0.080^3^0.006^~1~^~A~^^^1^0.070^0.090^2^0.055^0.105^~2, 3~^~06/01/2015~ -~09515~^~406~^0.333^3^0.009^~1~^~A~^^^1^0.320^0.350^2^0.295^0.371^~2, 3~^~06/01/2015~ -~09515~^~415~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~06/01/2015~ -~09515~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~606~^0.068^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~608~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~613~^0.037^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~617~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~618~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~626~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~645~^0.034^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09515~^~646~^0.034^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09515~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~663~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~673~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~674~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~675~^0.015^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09515~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09515~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~851~^0.019^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09515~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09515~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~312~^0.038^3^0.000^~1~^~A~^^^1^0.038^0.039^2^0.036^0.040^~2, 3~^~06/01/2015~ -~09516~^~315~^0.194^3^0.008^~1~^~A~^^^1^0.184^0.209^2^0.161^0.227^~2, 3~^~06/01/2015~ -~09516~^~404~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~06/01/2015~ -~09516~^~405~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~06/01/2015~ -~09516~^~406~^0.287^3^0.003^~1~^~A~^^^1^0.280^0.290^2^0.272^0.301^~2, 3~^~06/01/2015~ -~09516~^~410~^0.092^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~415~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~06/01/2015~ -~09516~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09516~^~606~^0.055^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09516~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~608~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~613~^0.024^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~617~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09516~^~618~^0.014^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09516~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09516~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09516~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09516~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09516~^~646~^0.048^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09516~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09516~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~663~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09516~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~674~^0.009^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~675~^0.014^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09516~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09516~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09516~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~851~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09516~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09516~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09517~^~312~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~315~^0.035^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~404~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~09517~^~406~^0.067^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~410~^0.049^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~415~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~09517~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~09517~^~606~^0.029^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~607~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~608~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~609~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~610~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~611~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~612~^0.002^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~613~^0.023^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~614~^0.003^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~617~^0.006^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~618~^0.043^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~619~^0.009^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~620~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~621~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~626~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~627~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~628~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~629~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~630~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~631~^0.000^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~645~^0.008^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09517~^~646~^0.051^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~ -~09518~^~312~^0.090^11^0.016^~1~^~A~^^^1^0.047^0.194^2^0.032^0.147^~2, 3~^~05/01/2014~ -~09518~^~315~^0.610^11^0.147^~1~^~A~^^^1^0.261^1.820^8^0.272^0.947^~2, 3~^~12/01/2016~ -~09518~^~404~^0.089^3^0.006^~1~^~A~^^^1^0.080^0.120^1^0.017^0.162^~2, 3~^~12/01/2016~ -~09518~^~405~^0.100^3^0.000^~1~^~A~^^^1^0.100^0.100^^^^~2, 3~^~12/01/2016~ -~09518~^~406~^0.675^3^0.030^~1~^~A~^^^1^0.490^0.740^1^0.289^1.061^~2, 3~^~12/01/2016~ -~09518~^~410~^0.402^3^0.002^~1~^~A~^^^1^0.320^0.450^1^0.378^0.427^~2, 3~^~12/01/2016~ -~09518~^~415~^0.062^3^0.002^~1~^~A~^^^1^0.060^0.070^1^0.037^0.086^~2, 3~^~12/01/2016~ -~09518~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~606~^0.064^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~607~^0.008^3^0.001^~1~^~A~^^^1^0.005^0.009^1^-0.002^0.018^~2, 3~^~12/01/2016~ -~09518~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~609~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^^^^~2, 3~^~12/01/2016~ -~09518~^~610~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~12/01/2016~ -~09518~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.005^1^-0.001^0.008^~2, 3~^~12/01/2016~ -~09518~^~612~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^1^0.000^0.005^~1, 2, 3~^~12/01/2016~ -~09518~^~613~^0.025^3^0.001^~1~^~A~^^^1^0.015^0.029^1^0.012^0.037^~2, 3~^~12/01/2016~ -~09518~^~614~^0.008^3^0.000^~1~^~A~^^^1^0.006^0.009^1^0.003^0.013^~2, 3~^~12/01/2016~ -~09518~^~615~^0.004^3^0.000^~1~^~A~^^^1^0.002^0.005^1^0.002^0.006^~1, 2, 3~^~12/01/2016~ -~09518~^~617~^0.023^3^0.002^~1~^~AS~^^^1^0.019^0.036^1^-0.006^0.052^~2, 3~^~12/01/2016~ -~09518~^~618~^0.015^3^0.000^~1~^~AS~^^^1^0.011^0.017^1^0.012^0.018^~2, 3~^~12/01/2016~ -~09518~^~619~^0.019^3^0.000^~1~^~AS~^^^1^0.016^0.021^1^0.015^0.024^~2, 3~^~12/01/2016~ -~09518~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~626~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^1^0.000^0.005^~2, 3~^~12/01/2016~ -~09518~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~09518~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~09518~^~645~^0.025^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~646~^0.034^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^1^-0.001^0.004^~1, 2, 3~^~12/01/2016~ -~09518~^~653~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.007^0.008^~1, 2, 3~^~12/01/2016~ -~09518~^~654~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.005^0.009^~1, 2, 3~^~12/01/2016~ -~09518~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~673~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^1^0.000^0.005^~1, 2, 3~^~12/01/2016~ -~09518~^~674~^0.023^3^0.002^~1~^~A~^^^1^0.019^0.036^1^-0.006^0.052^~2, 3~^~12/01/2016~ -~09518~^~675~^0.015^3^0.000^~1~^~A~^^^1^0.011^0.017^1^0.012^0.018^~2, 3~^~12/01/2016~ -~09518~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2016~ -~09518~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09518~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~851~^0.019^3^0.000^~1~^~A~^^^1^0.016^0.021^1^0.015^0.024^~2, 3~^~12/01/2016~ -~09518~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09518~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~09519~^~312~^0.025^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~315~^0.058^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~404~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~405~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~406~^0.170^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~ -~09519~^~415~^0.009^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~09519~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~09519~^~606~^0.023^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~607~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~608~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~609~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~610~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~611~^0.001^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~612~^0.004^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~613~^0.017^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~614~^0.001^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~617~^0.009^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~618~^0.003^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~619~^0.014^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~620~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~621~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~626~^0.011^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~627~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~628~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~629~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~630~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~631~^0.000^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~645~^0.020^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09519~^~646~^0.017^0^^~4~^~BFFN~^~09229~^^^^^^^^^~12/01/2014~ -~09520~^~312~^0.151^10^0.010^~1~^~A~^^^1^0.085^0.181^9^0.129^0.174^~4~^~03/01/2015~ -~09520~^~315~^0.048^10^0.004^~1~^~A~^^^1^0.027^0.063^9^0.039^0.056^~4~^~03/01/2015~ -~09520~^~404~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~405~^0.074^10^0.002^~1~^~A~^^^1^0.070^0.080^9^0.070^0.078^~4~^~03/01/2015~ -~09520~^~406~^0.231^10^0.016^~1~^~A~^^^1^0.140^0.300^9^0.195^0.267^~4~^~03/01/2015~ -~09520~^~410~^0.120^5^0.049^~1~^~A~^^^1^0.000^0.200^4^-0.016^0.256^~1, 4~^~03/01/2015~ -~09520~^~415~^0.079^10^0.005^~1~^~A~^^^1^0.050^0.110^9^0.068^0.090^~4~^~03/01/2015~ -~09520~^~606~^0.065^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~607~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2015~ -~09520~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2015~ -~09520~^~609~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~4~^~03/01/2015~ -~09520~^~610~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^4^0.000^0.003^~4~^~03/01/2015~ -~09520~^~611~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.004^4^0.001^0.005^~4~^~03/01/2015~ -~09520~^~612~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.002^0.005^~4~^~03/01/2015~ -~09520~^~613~^0.048^5^0.004^~1~^~A~^^^1^0.034^0.055^4^0.038^0.059^~4~^~03/01/2015~ -~09520~^~614~^0.006^5^0.001^~1~^~A~^^^1^0.004^0.009^4^0.004^0.008^~4~^~03/01/2015~ -~09520~^~615~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^4^0.001^0.001^~4~^~03/01/2015~ -~09520~^~617~^0.014^5^0.002^~1~^~AS~^^^1^0.006^0.018^4^0.008^0.021^~4~^~03/01/2015~ -~09520~^~618~^0.060^5^0.004^~1~^~AS~^^^1^0.047^0.070^4^0.047^0.072^~4~^~03/01/2015~ -~09520~^~619~^0.043^5^0.002^~1~^~AS~^^^1^0.036^0.047^4^0.038^0.048^~4~^~03/01/2015~ -~09520~^~620~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^4^0.000^0.000^~4~^~03/01/2015~ -~09520~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~624~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~625~^0.005^5^0.002^~1~^~A~^^^1^0.000^0.008^4^0.000^0.009^~1, 4~^~03/01/2015~ -~09520~^~626~^0.004^5^0.000^~1~^~AS~^^^1^0.003^0.004^4^0.003^0.004^~4~^~03/01/2015~ -~09520~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~628~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2015~ -~09520~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~630~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~645~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~646~^0.111^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09520~^~652~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~653~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2015~ -~09520~^~654~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~670~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.003^4^0.000^0.003^~4~^~03/01/2015~ -~09520~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2015~ -~09520~^~673~^0.004^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~4~^~03/01/2015~ -~09520~^~674~^0.014^5^0.002^~1~^~A~^^^1^0.006^0.018^4^0.008^0.021^~4~^~03/01/2015~ -~09520~^~675~^0.058^5^0.005^~1~^~A~^^^1^0.046^0.069^4^0.046^0.071^~4~^~03/01/2015~ -~09520~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~689~^0.008^5^0.001^~1~^~AS~^^^1^0.003^0.011^4^0.004^0.012^~4~^~03/01/2015~ -~09520~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~851~^0.043^5^0.002^~1~^~A~^^^1^0.036^0.047^4^0.038^0.048^~4~^~03/01/2015~ -~09520~^~852~^0.008^5^0.001^~1~^~A~^^^1^0.003^0.009^4^0.004^0.011^~4~^~03/01/2015~ -~09520~^~853~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^-0.001^0.002^~1, 4~^~03/01/2015~ -~09520~^~855~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~857~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09520~^~858~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2015~ -~09522~^~312~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~315~^0.067^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09522~^~404~^0.005^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~405~^0.015^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~406~^0.094^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~415~^0.018^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~606~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~607~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~608~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~609~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~610~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~611~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~612~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~613~^0.001^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~614~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~617~^0.001^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~618~^0.001^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~619~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~620~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~621~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~626~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~627~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~628~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~629~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~630~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~631~^0.000^0^^~4~^~BFZN~^~09444~^^^^^^^^^~03/01/2015~ -~09522~^~645~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09522~^~646~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09523~^~312~^0.020^5^0.002^~1~^~A~^^^1^0.016^0.026^4^0.015^0.024^~2, 3~^~03/01/2015~ -~09523~^~315~^0.017^5^0.001^~1~^~A~^^^1^0.014^0.018^4^0.014^0.019^~2, 3~^~03/01/2015~ -~09523~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2015~ -~09523~^~405~^0.017^3^0.002^~1~^~A~^^^1^0.015^0.020^2^0.009^0.024^~1, 2, 3~^~03/01/2015~ -~09523~^~406~^0.197^3^0.026^~1~^~A~^^^1^0.150^0.240^2^0.085^0.309^~2, 3~^~03/01/2015~ -~09523~^~410~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09523~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2015~ -~09524~^~312~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.021^~2, 3~^~03/01/2015~ -~09524~^~315~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.017^5^0.015^0.017^~2, 3~^~03/01/2015~ -~09524~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2015~ -~09524~^~405~^0.017^3^0.002^~1~^~A~^^^1^0.015^0.020^2^0.009^0.024^~1, 2, 3~^~03/01/2015~ -~09524~^~406~^0.180^3^0.012^~1~^~A~^^^1^0.160^0.200^2^0.130^0.230^~2, 3~^~03/01/2015~ -~09524~^~410~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~03/01/2015~ -~09524~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~03/01/2015~ -~09524~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~613~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~617~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~618~^0.011^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~674~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~675~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~09524~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~09524~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~851~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2015~ -~09524~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09524~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~ -~09525~^~312~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~315~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09525~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~606~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~645~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09525~^~646~^0.034^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~312~^0.035^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~315~^0.085^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09526~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~606~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~645~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09526~^~646~^0.028^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09528~^~605~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~09528~^~606~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~645~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09528~^~646~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~09530~^~312~^0.040^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~315~^0.180^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~ -~09530~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~09530~^~405~^0.050^2^^~1~^~A~^^^1^0.040^0.060^1^^^^~06/01/2015~ -~09530~^~406~^0.285^2^^~1~^~A~^^^1^0.280^0.290^1^^^^~06/01/2015~ -~09530~^~410~^0.210^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~09530~^~415~^0.065^2^^~1~^~A~^^^1^0.050^0.080^1^^^^~06/01/2015~ -~09530~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~606~^0.059^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09530~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~608~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~613~^0.023^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~614~^0.012^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~617~^0.012^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09530~^~618~^0.014^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09530~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09530~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09530~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09530~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09530~^~646~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09530~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09530~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09530~^~674~^0.012^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~675~^0.014^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09530~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09530~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~851~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09530~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09530~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~312~^0.040^3^0.002^~1~^~A~^^^1^0.036^0.042^2^0.033^0.047^~2, 3~^~06/01/2015~ -~09531~^~315~^0.180^3^0.007^~1~^~A~^^^1^0.166^0.189^2^0.149^0.211^~2, 3~^~06/01/2015~ -~09531~^~404~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~06/01/2015~ -~09531~^~405~^0.057^3^0.012^~1~^~A~^^^1^0.040^0.080^2^0.005^0.108^~2, 3~^~06/01/2015~ -~09531~^~406~^0.310^3^0.023^~1~^~A~^^^1^0.270^0.350^2^0.211^0.409^~2, 3~^~06/01/2015~ -~09531~^~415~^0.115^2^^~1~^~A~^^^1^0.080^0.150^1^^^^~06/01/2015~ -~09531~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09531~^~606~^0.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09531~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~608~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~613~^0.026^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~617~^0.015^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09531~^~618~^0.016^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09531~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09531~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~ -~09531~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09531~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~645~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09531~^~646~^0.029^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09531~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~663~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~ -~09531~^~674~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~675~^0.016^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~09531~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~ -~09531~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~09531~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~851~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2016~ -~09531~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09531~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~09542~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~315~^0.109^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~404~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~406~^0.550^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~410~^0.530^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~606~^0.121^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~607~^0.008^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~613~^0.058^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~614~^0.039^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~617~^0.016^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~618~^0.025^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~624~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~645~^0.019^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~646~^0.031^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~663~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~674~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~675~^0.025^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~ -~09542~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~09542~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~851~^0.006^1^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~09542~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09542~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~ -~09543~^~312~^0.080^3^0.009^~1~^~A~^^^1^0.067^0.098^2^0.041^0.119^~2, 3~^~11/01/2016~ -~09543~^~315~^0.109^3^0.005^~1~^~A~^^^1^0.101^0.118^2^0.087^0.130^~2, 3~^~11/01/2016~ -~09543~^~404~^0.050^2^^~1~^~A~^^^1^0.040^0.060^1^^^^~11/01/2016~ -~09543~^~405~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~11/01/2016~ -~09543~^~406~^0.390^2^^~1~^~A~^^^1^0.350^0.430^1^^^^~11/01/2016~ -~09543~^~410~^0.380^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~415~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~11/01/2016~ -~09543~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~502~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~503~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~504~^0.040^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~505~^0.050^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~508~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~509~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~510~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~511~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~512~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~513~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~514~^0.090^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~515~^0.080^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~517~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~518~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~606~^0.072^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~607~^0.008^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~611~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~613~^0.044^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~617~^0.012^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~618~^0.052^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~624~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~646~^0.078^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~663~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~674~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~675~^0.052^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~ -~09543~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~09543~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~851~^0.026^1^^~1~^~A~^^^^^^^^^^~11/01/2016~ -~09543~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09543~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~ -~09544~^~404~^0.030^6^^~12~^~MA~^^^1^0.000^0.090^^^^~2~^~11/01/2016~ -~09544~^~405~^0.074^8^^~12~^~MA~^^^1^0.000^0.140^^^^~2~^~11/01/2016~ -~09544~^~406~^19.983^6^^~12~^~MA~^^^1^3.400^53.244^^^^~2~^~11/01/2016~ -~09544~^~415~^2.414^6^^~12~^~MA~^^^1^0.661^3.516^^^^~2~^~11/01/2016~ -~09544~^~605~^0.009^8^^~12~^~MA~^^^1^0.000^0.050^^^^~2~^~11/01/2016~ -~09544~^~606~^0.244^8^^~12~^~MA~^^^1^0.110^0.480^^^^~2~^~11/01/2016~ -~09544~^~619~^0.098^8^^~12~^~MA~^^^1^0.053^0.236^^^^~2~^~11/01/2016~ -~09544~^~621~^0.000^6^^~12~^~MA~^^^1^0.000^0.000^^^^~2~^~11/01/2016~ -~09544~^~629~^0.000^6^^~12~^~MA~^^^1^0.000^0.000^^^^~2~^~11/01/2016~ -~09544~^~631~^0.000^6^^~12~^~MA~^^^1^0.000^0.000^^^^~2~^~11/01/2016~ -~09544~^~645~^0.169^8^^~12~^~MA~^^^1^0.020^0.420^^^^~2~^~11/01/2016~ -~09544~^~646~^0.163^8^^~12~^~MA~^^^1^0.080^0.390^^^^~2~^~11/01/2016~ -~09544~^~851~^0.098^8^^~12~^~MA~^^^1^0.053^0.236^^^^~2~^~11/01/2016~ -~09546~^~312~^0.042^2^^~1~^~A~^^^1^0.018^0.066^1^^^~1~^~12/01/2016~ -~09546~^~315~^0.060^2^^~1~^~A~^^^1^0.047^0.074^1^^^^~12/01/2016~ -~09546~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09546~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~312~^0.068^4^0.011^~1~^~A~^^^1^0.050^0.100^3^0.032^0.105^~2, 3~^~12/01/2016~ -~09552~^~315~^0.343^4^0.051^~1~^~A~^^^1^0.206^0.451^3^0.181^0.504^~2, 3~^~12/01/2016~ -~09552~^~404~^0.090^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~406~^0.490^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~410~^0.310^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~606~^0.064^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~607~^0.009^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~609~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~613~^0.032^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~617~^0.016^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~618~^0.043^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~619~^0.047^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~624~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~645~^0.016^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~646~^0.090^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09552~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~654~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~674~^0.016^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~675~^0.043^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09552~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~851~^0.047^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09552~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09552~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~312~^0.086^8^0.007^~1~^~A~^^^1^0.041^0.113^4^0.068^0.104^~2, 3~^~12/01/2016~ -~09553~^~315~^0.676^8^0.059^~1~^~A~^^^1^0.437^1.350^5^0.525^0.826^~2, 3~^~12/01/2016~ -~09553~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~406~^0.460^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~410~^0.310^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~606~^0.062^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~607~^0.010^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~613~^0.018^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~617~^0.026^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~618~^0.030^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~624~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~645~^0.027^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~646~^0.058^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09553~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~654~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~674~^0.026^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~675~^0.030^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09553~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~851~^0.028^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09553~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09553~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~312~^0.138^4^0.008^~1~^~A~^^^1^0.057^0.150^1^0.037^0.239^~2, 3~^~12/01/2016~ -~09554~^~315~^4.670^4^0.643^~1~^~A~^^^1^2.670^11.300^1^-2.612^11.952^~2, 3~^~12/01/2016~ -~09554~^~404~^0.250^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~405~^0.340^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~406~^3.890^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~410~^2.700^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~415~^0.250^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~606~^0.056^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~607~^0.009^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~612~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~613~^0.017^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~614~^0.013^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~617~^0.027^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~618~^0.009^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~628~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~646~^0.012^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~09554~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~673~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~674~^0.027^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~675~^0.009^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~ -~09554~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~851~^0.003^1^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~09554~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~09554~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~ -~10000~^~312~^0.045^4^0.001^~1~^~A~^^^1^0.042^0.047^3^0.042^0.049^~2, 3~^~05/01/2007~ -~10000~^~315~^0.007^4^0.001^~1~^~A~^^^1^0.006^0.010^3^0.004^0.010^~1, 2, 3~^~05/01/2007~ -~10000~^~404~^0.246^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~405~^0.139^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~406~^3.930^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~410~^0.513^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~415~^0.234^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~502~^0.451^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~503~^0.495^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~504~^0.857^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~505~^0.933^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~506~^0.277^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~507~^0.116^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~508~^0.423^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~509~^0.383^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~510~^0.525^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~511~^0.669^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~512~^0.434^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~514~^0.984^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~515~^1.605^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~516~^0.453^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~517~^0.407^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~518~^0.435^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10000~^~521~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10000~^~605~^0.656^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~606~^21.382^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~607~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~608~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~609~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~610~^0.044^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~611~^0.044^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~612~^0.745^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~613~^12.889^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~614~^7.289^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~617~^23.268^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~618~^7.624^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~619~^0.380^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~620~^0.138^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~621~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~624~^0.005^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~625~^0.013^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~626~^1.115^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~627~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~628~^0.416^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~629~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~630~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~631~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~645~^24.900^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~646~^8.490^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~652~^0.036^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~653~^0.224^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~663~^0.445^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~669~^0.211^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~672~^0.297^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~674~^22.822^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~675~^7.413^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~685~^0.018^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~687~^0.088^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~689~^0.051^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~693~^0.445^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~697~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10000~^~851~^0.362^0^^~4~^~BFFN~^~10007~^^^^^^^^^~05/01/2007~ -~10001~^~312~^0.055^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~404~^0.595^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~405~^0.207^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~406~^3.846^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~410~^0.526^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~415~^0.284^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~501~^0.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~502~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~503~^0.616^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~504~^1.088^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~505~^1.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~506~^0.347^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~507~^0.169^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~508~^0.547^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~509~^0.454^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~510~^0.737^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~511~^0.911^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~512~^0.509^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~513~^0.832^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~514~^1.249^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~515~^2.062^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~516~^0.868^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~517~^0.672^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~518~^0.574^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~606~^12.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10001~^~610~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~611~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~612~^0.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~613~^7.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~614~^4.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~617~^14.660^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~618~^3.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~619~^0.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~620~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~626~^0.990^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~628~^0.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~645~^15.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10001~^~646~^3.800^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10002~^~312~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~404~^0.642^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~405~^0.254^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~406~^5.573^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~410~^0.936^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~415~^0.644^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~501~^0.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~502~^0.957^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~503~^1.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~504~^1.773^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~505~^1.947^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~506~^0.577^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~507~^0.253^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~508~^0.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~509~^0.785^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~510~^1.121^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~511~^1.382^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~512~^0.894^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~513~^1.242^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10002~^~514~^2.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~515~^3.364^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~516~^0.971^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~517~^0.855^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~518~^0.904^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~521~^0.037^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~605~^0.024^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~606~^1.625^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~611~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~612~^0.058^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~613~^1.027^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~614~^0.525^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10002~^~617~^1.904^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~618~^0.440^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~619~^0.020^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~620~^0.049^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~626~^0.127^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~628~^0.031^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~645~^2.063^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~646~^0.519^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~653~^0.008^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10002~^~672~^0.010^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~689~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10002~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~312~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~404~^0.622^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~405~^0.255^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~406~^4.730^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~410~^0.899^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~415~^0.504^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~501~^0.205^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~502~^0.816^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~503~^0.863^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~504~^1.498^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~505~^1.657^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~506~^0.485^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~507~^0.218^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~508~^0.744^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~509~^0.654^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~510~^0.963^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~511~^1.190^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~512~^0.742^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~513~^1.073^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~514~^1.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~515~^2.841^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~516~^0.915^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~517~^0.774^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~518~^0.771^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~521~^0.024^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~605~^0.034^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~606~^4.918^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~610~^0.007^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~611~^0.011^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~612~^0.179^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~613~^3.141^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~614~^1.693^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10003~^~617~^5.820^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~618~^1.506^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~619~^0.091^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~620~^0.116^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~626~^0.377^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~628~^0.102^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~645~^6.102^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~646~^1.726^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~652~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~653~^0.015^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~663~^0.036^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~669~^0.020^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~672~^0.023^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~674~^2.188^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~675~^0.701^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~689~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~693~^0.022^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10003~^~851~^0.026^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10004~^~312~^0.018^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~315~^0.002^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~404~^0.084^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~405~^0.051^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~406~^0.985^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~410~^0.115^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~415~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~501~^0.037^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~502~^0.133^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~503~^0.137^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~504~^0.234^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~505~^0.263^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~506~^0.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~507~^0.037^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~508~^0.117^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~509~^0.102^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~510~^0.158^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~511~^0.182^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~512~^0.117^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~513~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~514~^0.271^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~515~^0.457^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~516~^0.139^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~517~^0.117^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~518~^0.121^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~606~^32.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10004~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10004~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~610~^0.060^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~611~^0.190^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~612~^1.120^242^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~613~^19.450^245^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~614~^11.390^245^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~617~^38.480^245^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~618~^9.500^245^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~619~^0.740^27^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~620~^0.110^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~626~^2.750^241^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~628~^0.720^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10004~^~645~^41.950^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10004~^~646~^10.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~312~^0.052^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~315~^0.006^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~404~^0.396^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~405~^0.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~406~^4.647^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~410~^0.256^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~415~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~606~^19.330^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~610~^0.040^7^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~611~^0.060^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~612~^0.700^315^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~613~^11.920^316^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~614~^6.490^318^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~617~^22.770^316^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~618~^5.030^316^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~619~^0.480^67^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~620~^0.140^29^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~626~^1.500^314^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~628~^0.430^7^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10005~^~645~^24.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10005~^~646~^5.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10006~^~312~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~315~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10006~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~406~^2.630^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~410~^0.430^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~415~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~502~^0.407^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~503~^0.438^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~504~^0.761^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~505~^0.823^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~506~^0.254^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~507~^0.104^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~508~^0.384^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~509~^0.366^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~510~^0.468^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~511~^0.596^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~512~^0.376^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~513~^0.530^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~514~^0.865^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~515~^1.413^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~516~^0.418^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~517~^0.374^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~518~^0.386^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~521~^0.032^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~605~^0.600^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~606~^21.979^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10006~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~610~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~611~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~612~^0.829^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~613~^13.600^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~614~^7.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~615~^0.119^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~617~^26.268^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10006~^~618~^11.832^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10006~^~619~^0.588^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10006~^~620~^0.184^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~621~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~625~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~626~^1.280^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~628~^0.477^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10006~^~631~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~645~^28.041^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~646~^13.186^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~652~^0.043^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~653~^0.218^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~10006~^~663~^0.468^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~665~^0.132^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~672~^0.445^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~674~^25.800^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~675~^11.700^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~685~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~689~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10006~^~693~^0.468^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10006~^~695~^0.132^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10006~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10006~^~851~^0.564^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~312~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~315~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10007~^~404~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~406~^3.120^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~410~^0.510^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~415~^0.192^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~501~^0.084^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~502~^0.311^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~503~^0.334^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~504~^0.581^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~505~^0.628^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~506~^0.194^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~507~^0.080^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~508~^0.293^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~509~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~510~^0.357^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~511~^0.455^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~512~^0.287^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~513~^0.405^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~514~^0.661^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~515~^1.079^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~516~^0.319^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~517~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~521~^0.025^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~605~^0.475^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~606~^23.856^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10007~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10007~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~610~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~611~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~612~^0.893^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~613~^14.900^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~614~^7.560^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~615~^0.121^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10007~^~617~^27.085^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10007~^~618~^10.390^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10007~^~619~^0.438^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~10007~^~620~^0.177^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~621~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~625~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~626~^1.390^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~628~^0.499^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~10007~^~631~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~645~^28.987^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~646~^11.538^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~652~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~653~^0.234^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~10007~^~663~^0.385^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~665~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~672~^0.418^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~674~^26.700^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~675~^10.300^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~685~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~689~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10007~^~693~^0.385^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~695~^0.090^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10007~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~10007~^~851~^0.416^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10008~^~312~^0.065^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~315~^0.023^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~404~^0.736^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~405~^0.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~406~^4.574^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~410~^0.685^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~415~^0.401^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~501~^0.208^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~502~^0.776^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~503~^0.787^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~504~^1.376^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~505~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~506~^0.444^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~507~^0.216^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~508~^0.689^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~509~^0.583^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~510~^0.931^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~511~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~512~^0.659^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~513~^1.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~514~^1.584^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~515~^2.636^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~516~^0.992^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~517~^0.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~518~^0.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~606~^6.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~612~^0.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~613~^4.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~614~^2.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~617~^7.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~618~^1.690^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~619~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~620~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~626~^0.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~628~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~645~^8.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10008~^~646~^2.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~312~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~315~^0.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~404~^0.635^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~405~^0.313^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~406~^4.574^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~410~^0.617^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~415~^0.402^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~501~^0.324^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~502~^1.198^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~503~^1.218^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~504~^2.122^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~505~^2.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~506~^0.687^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~507~^0.333^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~508~^1.062^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~509~^0.903^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~510~^1.437^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~511~^1.717^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~512~^1.022^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~513~^1.585^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~514~^2.445^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~515~^4.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~516~^1.493^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~517~^1.198^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~518~^1.108^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~606~^6.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10009~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10009~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~612~^0.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~613~^4.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~614~^2.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~617~^7.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~618~^1.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~619~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~626~^0.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~628~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10009~^~645~^7.880^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10009~^~646~^1.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~312~^0.075^51^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~315~^0.029^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~404~^0.875^47^0.027^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~405~^0.228^46^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~406~^5.338^34^0.140^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~410~^0.805^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~415~^0.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~501~^0.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~502~^0.935^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~503~^0.959^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~504~^1.643^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~505~^1.842^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~506~^0.542^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~507~^0.261^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~508~^0.818^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~509~^0.714^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~510~^1.111^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~511~^1.273^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~512~^0.818^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~513~^1.193^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~514~^1.900^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~515~^3.206^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~516~^0.972^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~517~^0.823^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~518~^0.846^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~606~^1.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10010~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10010~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~610~^0.010^73^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~611~^0.010^75^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~612~^0.070^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~613~^1.190^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~614~^0.580^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~617~^2.220^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~618~^0.470^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~619~^0.020^190^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~620~^0.070^315^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~626~^0.170^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~628~^0.040^71^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10010~^~645~^2.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10010~^~646~^0.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~312~^0.108^12^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~315~^0.037^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~404~^0.690^12^0.056^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~405~^0.349^12^0.019^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~406~^4.935^12^0.251^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~410~^0.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~415~^0.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~501~^0.374^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~502~^1.343^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~503~^1.377^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~504~^2.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~505~^2.645^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~506~^0.779^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~507~^0.375^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~508~^1.174^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~509~^1.025^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~510~^1.595^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~511~^1.828^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~512~^1.175^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~513~^1.713^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~514~^2.728^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~515~^4.604^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~516~^1.396^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~517~^1.181^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~518~^1.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~606~^3.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10011~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10011~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~610~^0.020^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~611~^0.010^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~612~^0.110^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~613~^2.080^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~614~^1.040^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~617~^4.090^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~618~^0.770^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~619~^0.020^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~620~^0.060^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~626~^0.300^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~628~^0.060^28^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10011~^~645~^4.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10011~^~646~^0.850^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10012~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10012~^~404~^0.498^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~405~^0.309^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~406~^5.623^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~410~^0.630^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~415~^0.506^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~501~^0.241^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~502~^0.892^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~503~^0.960^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~504~^1.669^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~505~^1.803^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~506~^0.556^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~507~^0.229^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~508~^0.842^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~509~^0.803^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~510~^1.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~511~^1.306^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~512~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~513~^1.161^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~514~^1.896^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~515~^3.097^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~516~^0.916^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~517~^0.820^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~518~^0.847^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~521~^0.071^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~605~^0.091^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~606~^3.526^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~612~^0.132^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~613~^2.186^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~614~^1.142^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~617~^4.157^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~618~^1.901^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~619~^0.085^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~620~^0.081^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~626~^0.212^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~628~^0.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~631~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~645~^4.445^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~646~^2.156^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~653~^0.034^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~663~^0.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~665~^0.016^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~672~^0.070^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~674~^4.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~675~^1.885^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~693~^0.074^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10012~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~851~^0.082^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10012~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10013~^~312~^0.112^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~404~^0.489^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~405~^0.379^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~406~^7.444^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~410~^0.859^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~415~^0.501^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~501~^0.322^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~502~^1.189^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~503~^1.280^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~504~^2.225^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~505~^2.404^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~506~^0.741^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~507~^0.305^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~508~^1.123^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~509~^1.071^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~510~^1.367^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~511~^1.742^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~512~^1.100^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~513~^1.548^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~514~^2.529^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~515~^4.130^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~516~^1.222^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~517~^1.093^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~518~^1.129^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~521~^0.094^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~605~^0.087^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~606~^3.369^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10013~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~612~^0.120^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~613~^2.100^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~614~^1.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~617~^4.041^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~618~^1.941^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~619~^0.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~620~^0.090^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~626~^0.209^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10013~^~628~^0.070^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10013~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10013~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~645~^4.322^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~646~^2.198^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~653~^0.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~663~^0.073^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~665~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~672~^0.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~674~^3.968^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~675~^1.927^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~693~^0.073^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10013~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~851~^0.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10013~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10014~^~312~^0.080^6^0.005^~1~^~A~^^^1^0.065^0.097^5^0.069^0.092^~2, 3~^~01/01/2011~ -~10014~^~315~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.011^5^0.010^0.010^~2, 3~^~04/01/2006~ -~10014~^~404~^0.545^6^0.070^~1~^~A~^^^1^0.370^0.820^5^0.364^0.726^~2, 3~^~01/01/2011~ -~10014~^~405~^0.340^6^0.033^~1~^~A~^^^1^0.220^0.420^5^0.255^0.425^~2, 3~^~01/01/2011~ -~10014~^~406~^6.042^6^0.296^~1~^~A~^^^1^5.220^7.070^5^5.282^6.801^~2, 3~^~01/01/2011~ -~10014~^~410~^0.658^6^0.072^~1~^~A~^^^1^0.470^0.930^5^0.474^0.843^~2, 3~^~01/01/2011~ -~10014~^~415~^0.557^6^0.038^~1~^~A~^^^1^0.486^0.742^5^0.458^0.655^~2, 3~^~01/01/2011~ -~10014~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~502~^0.959^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~503~^1.033^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~504~^1.795^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~505~^1.940^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~506~^0.598^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~508~^0.906^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~509~^0.864^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~510~^1.103^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~511~^1.406^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~512~^0.887^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~513~^1.249^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~514~^2.040^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~515~^3.332^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~516~^0.986^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~517~^0.882^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~518~^0.911^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~521~^0.076^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10014~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~606~^0.947^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10014~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10014~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~612~^0.035^6^0.004^~1~^~A~^^^1^0.018^0.046^5^0.025^0.045^~2, 3~^~01/01/2011~ -~10014~^~613~^0.591^6^0.054^~1~^~A~^^^1^0.390^0.771^5^0.451^0.730^~2, 3~^~01/01/2011~ -~10014~^~614~^0.314^6^0.023^~1~^~A~^^^1^0.227^0.380^5^0.254^0.374^~2, 3~^~01/01/2011~ -~10014~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~617~^1.067^6^0.079^~1~^~AS~^^^1^0.716^1.243^5^0.863^1.271^~2, 3~^~01/01/2011~ -~10014~^~618~^0.513^6^0.053^~1~^~AS~^^^1^0.320^0.622^5^0.378^0.648^~2, 3~^~01/01/2011~ -~10014~^~619~^0.015^6^0.003^~1~^~AS~^^^1^0.000^0.020^5^0.007^0.022^~2, 3~^~01/01/2011~ -~10014~^~620~^0.067^6^0.003^~1~^~A~^^^1^0.060^0.078^5^0.060^0.074^~2, 3~^~01/01/2011~ -~10014~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~626~^0.063^6^0.006^~1~^~A~^^^1^0.045^0.080^5^0.047^0.078^~2, 3~^~01/01/2011~ -~10014~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~628~^0.018^6^0.002^~1~^~A~^^^1^0.011^0.026^5^0.012^0.024^~2, 3~^~01/01/2011~ -~10014~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10014~^~631~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.003^0.007^~1, 2, 3~^~01/01/2011~ -~10014~^~645~^1.148^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~646~^0.615^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~653~^0.008^6^0.003^~1~^~A~^^^1^0.000^0.016^5^0.001^0.015^~1, 2, 3~^~01/01/2011~ -~10014~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~663~^0.019^6^0.004^~1~^~A~^^^1^0.010^0.034^5^0.010^0.029^~2, 3~^~01/01/2011~ -~10014~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~672~^0.018^6^0.002^~1~^~A~^^^1^0.011^0.022^5^0.013^0.023^~2, 3~^~01/01/2011~ -~10014~^~674~^1.048^6^0.078^~1~^~A~^^^1^0.706^1.230^5^0.847^1.248^~2, 3~^~01/01/2011~ -~10014~^~675~^0.513^6^0.053^~1~^~A~^^^1^0.320^0.622^5^0.378^0.648^~2, 3~^~01/01/2011~ -~10014~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10014~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10014~^~851~^0.015^6^0.003^~1~^~A~^^^1^0.000^0.020^5^0.007^0.022^~1, 2, 3~^~01/01/2011~ -~10014~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2011~ -~10015~^~312~^0.116^6^0.007^~1~^~A~^^^1^0.092^0.133^5^0.098^0.134^~2, 3~^~01/01/2011~ -~10015~^~315~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.020^5^0.016^0.019^~2, 3~^~01/01/2011~ -~10015~^~404~^0.523^6^0.064^~1~^~A~^^^1^0.410^0.830^5^0.359^0.688^~2, 3~^~01/01/2011~ -~10015~^~405~^0.408^6^0.033^~1~^~A~^^^1^0.310^0.510^5^0.323^0.493^~2, 3~^~01/01/2011~ -~10015~^~406~^7.940^6^0.614^~1~^~A~^^^1^6.770^10.200^5^6.362^9.518^~2, 3~^~01/01/2011~ -~10015~^~410~^0.903^6^0.066^~1~^~A~^^^1^0.760^1.200^5^0.735^1.072^~2, 3~^~01/01/2011~ -~10015~^~415~^0.538^6^0.037^~1~^~A~^^^1^0.415^0.626^5^0.443^0.632^~2, 3~^~01/01/2011~ -~10015~^~501~^0.344^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~502~^1.269^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~503~^1.367^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~504~^2.376^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~505~^2.567^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~506~^0.791^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~507~^0.325^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~508~^1.199^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~509~^1.144^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~510~^1.460^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~511~^1.860^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~512~^1.174^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~513~^1.653^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~514~^2.700^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~515~^4.410^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~516~^1.305^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~517~^1.167^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~518~^1.205^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~521~^0.101^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10015~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~606~^1.451^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10015~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~612~^0.047^6^0.008^~1~^~A~^^^1^0.025^0.075^5^0.027^0.066^~2, 3~^~01/01/2011~ -~10015~^~613~^0.915^6^0.127^~1~^~A~^^^1^0.555^1.420^5^0.588^1.243^~2, 3~^~01/01/2011~ -~10015~^~614~^0.476^6^0.059^~1~^~A~^^^1^0.313^0.729^5^0.324^0.627^~2, 3~^~01/01/2011~ -~10015~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~617~^1.751^6^0.255^~1~^~AS~^^^1^0.989^2.704^5^1.095^2.407^~2, 3~^~01/01/2011~ -~10015~^~618~^0.922^6^0.109^~1~^~AS~^^^1^0.561^1.211^5^0.641^1.202^~2, 3~^~01/01/2011~ -~10015~^~619~^0.029^6^0.004^~1~^~AS~^^^1^0.011^0.041^5^0.018^0.041^~2, 3~^~01/01/2011~ -~10015~^~620~^0.080^6^0.005^~1~^~A~^^^1^0.069^0.099^5^0.068^0.092^~2, 3~^~01/01/2011~ -~10015~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~626~^0.098^6^0.018^~1~^~A~^^^1^0.045^0.164^5^0.053^0.144^~2, 3~^~01/01/2011~ -~10015~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~628~^0.028^6^0.005^~1~^~A~^^^1^0.014^0.048^5^0.016^0.041^~2, 3~^~01/01/2011~ -~10015~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10015~^~631~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.001^0.011^~1, 2, 3~^~01/01/2011~ -~10015~^~645~^1.878^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~646~^1.066^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~653~^0.014^6^0.003^~1~^~A~^^^1^0.000^0.021^5^0.006^0.022^~1, 2, 3~^~01/01/2011~ -~10015~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~663~^0.033^6^0.009^~1~^~A~^^^1^0.000^0.059^5^0.010^0.055^~1, 2, 3~^~01/01/2011~ -~10015~^~665~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.003^0.007^~1, 2, 3~^~01/01/2011~ -~10015~^~672~^0.031^6^0.004^~1~^~A~^^^1^0.019^0.045^5^0.019^0.042^~2, 3~^~01/01/2011~ -~10015~^~674~^1.719^6^0.254^~1~^~A~^^^1^0.972^2.670^5^1.065^2.373^~2, 3~^~01/01/2011~ -~10015~^~675~^0.920^6^0.108^~1~^~A~^^^1^0.561^1.200^5^0.642^1.198^~2, 3~^~01/01/2011~ -~10015~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10015~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10015~^~851~^0.029^6^0.004^~1~^~A~^^^1^0.011^0.041^5^0.018^0.041^~2, 3~^~01/01/2011~ -~10015~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2011~ -~10016~^~312~^0.131^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~404~^0.470^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~405~^0.307^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~406~^5.750^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~410~^0.594^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~415~^0.475^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~501~^0.237^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~502~^0.874^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~503~^0.941^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~504~^1.636^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~505~^1.768^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~506~^0.545^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~507~^0.224^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~508~^0.826^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~509~^0.787^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~510~^1.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~511~^1.281^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~512~^0.808^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~513~^1.138^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~514~^1.859^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~515~^3.036^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~516~^0.898^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~517~^0.804^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~518~^0.830^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~521~^0.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~605~^0.095^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~606~^3.942^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~612~^0.144^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~613~^2.452^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~614~^1.272^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~617~^4.736^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~618~^2.130^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~619~^0.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~620~^0.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~626~^0.243^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~628~^0.085^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~645~^5.067^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~646~^2.412^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~653~^0.036^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~663~^0.076^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~665~^0.019^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~672~^0.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~674~^4.660^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~675~^2.111^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~693~^0.076^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~695~^0.019^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10016~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~851~^0.093^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10016~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~312~^0.119^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~404~^0.411^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~405~^0.352^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~406~^7.457^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~410~^0.830^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~415~^0.442^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~501~^0.309^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~502~^1.142^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~503~^1.229^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~504~^2.137^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~505~^2.309^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~506~^0.712^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~507~^0.293^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~508~^1.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~509~^1.029^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~510~^1.313^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~511~^1.673^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~512~^1.056^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~513~^1.487^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~514~^2.429^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~515~^3.967^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~516~^1.174^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~517~^1.050^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~518~^1.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~521~^0.091^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~605~^0.093^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~606~^4.609^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~612~^0.165^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~613~^2.873^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~614~^1.484^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~615~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~617~^5.436^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~618~^2.160^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~619~^0.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~620~^0.091^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~626~^0.285^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~628~^0.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~645~^5.819^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~646~^2.440^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~653~^0.047^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~663~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~672~^0.083^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~674~^5.358^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~675~^2.145^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~693~^0.078^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10017~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~851~^0.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10017~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10018~^~312~^0.142^6^0.005^~1~^~A~^^^1^0.125^0.154^5^0.128^0.156^~2, 3~^~01/01/2011~ -~10018~^~315~^0.026^6^0.015^~1~^~A~^^^1^0.010^0.100^5^-0.013^0.064^~2, 3~^~01/01/2011~ -~10018~^~404~^0.522^6^0.075^~1~^~A~^^^1^0.350^0.820^5^0.330^0.713^~2, 3~^~01/01/2011~ -~10018~^~405~^0.343^6^0.022^~1~^~A~^^^1^0.280^0.430^5^0.286^0.401^~2, 3~^~01/01/2011~ -~10018~^~406~^6.273^6^0.420^~1~^~A~^^^1^5.230^8.250^5^5.193^7.354^~2, 3~^~01/01/2011~ -~10018~^~410~^0.622^6^0.060^~1~^~A~^^^1^0.480^0.880^5^0.467^0.777^~2, 3~^~01/01/2011~ -~10018~^~415~^0.531^6^0.033^~1~^~A~^^^1^0.423^0.630^5^0.447^0.615^~2, 3~^~01/01/2011~ -~10018~^~501~^0.258^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~502~^0.952^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~503~^1.025^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~504~^1.782^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~505~^1.926^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~506~^0.594^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~507~^0.244^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~508~^0.900^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~509~^0.858^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~510~^1.095^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~511~^1.395^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~512~^0.881^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~513~^1.240^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~514~^2.026^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~515~^3.308^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~516~^0.979^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10018~^~517~^0.876^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~518~^0.904^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~521~^0.076^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10018~^~605~^0.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~606~^0.917^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10018~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~612~^0.029^6^0.002^~1~^~A~^^^1^0.022^0.039^5^0.022^0.035^~2, 3~^~01/01/2011~ -~10018~^~613~^0.583^6^0.038^~1~^~A~^^^1^0.463^0.742^5^0.485^0.681^~2, 3~^~01/01/2011~ -~10018~^~614~^0.299^6^0.022^~1~^~A~^^^1^0.236^0.380^5^0.242^0.357^~2, 3~^~01/01/2011~ -~10018~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~617~^1.125^6^0.093^~1~^~AS~^^^1^0.869^1.476^5^0.885^1.365^~2, 3~^~01/01/2011~ -~10018~^~618~^0.503^6^0.054^~1~^~AS~^^^1^0.261^0.621^5^0.363^0.642^~2, 3~^~01/01/2011~ -~10018~^~619~^0.014^6^0.003^~1~^~AS~^^^1^0.000^0.019^5^0.007^0.022^~2, 3~^~01/01/2011~ -~10018~^~620~^0.067^6^0.004^~1~^~A~^^^1^0.051^0.080^5^0.056^0.077^~2, 3~^~01/01/2011~ -~10018~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~626~^0.069^6^0.008^~1~^~A~^^^1^0.040^0.094^5^0.049^0.089^~2, 3~^~01/01/2011~ -~10018~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~628~^0.020^6^0.002^~1~^~A~^^^1^0.014^0.025^5^0.015^0.024^~2, 3~^~01/01/2011~ -~10018~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10018~^~631~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.002^0.009^~1, 2, 3~^~01/01/2011~ -~10018~^~645~^1.214^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~646~^0.605^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~653~^0.006^6^0.004^~1~^~A~^^^1^0.000^0.022^5^-0.004^0.015^~1, 2, 3~^~01/01/2011~ -~10018~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~663~^0.011^6^0.004^~1~^~A~^^^1^0.000^0.026^5^0.000^0.021^~1, 2, 3~^~01/01/2011~ -~10018~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~672~^0.018^6^0.002^~1~^~A~^^^1^0.010^0.025^5^0.013^0.023^~2, 3~^~01/01/2011~ -~10018~^~674~^1.114^6^0.092^~1~^~A~^^^1^0.856^1.460^5^0.878^1.350^~2, 3~^~01/01/2011~ -~10018~^~675~^0.503^6^0.054^~1~^~A~^^^1^0.261^0.621^5^0.363^0.642^~2, 3~^~01/01/2011~ -~10018~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10018~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10018~^~851~^0.014^6^0.003^~1~^~A~^^^1^0.000^0.019^5^0.007^0.022^~1, 2, 3~^~01/01/2011~ -~10018~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~312~^0.123^6^0.004^~1~^~A~^^^1^0.112^0.140^5^0.112^0.133^~2, 3~^~01/01/2011~ -~10019~^~315~^0.019^6^0.002^~1~^~A~^^^1^0.012^0.023^5^0.015^0.023^~2, 3~^~01/01/2011~ -~10019~^~404~^0.440^6^0.051^~1~^~A~^^^1^0.280^0.650^5^0.309^0.571^~2, 3~^~01/01/2011~ -~10019~^~405~^0.373^6^0.021^~1~^~A~^^^1^0.300^0.430^5^0.319^0.428^~2, 3~^~01/01/2011~ -~10019~^~406~^8.082^6^0.550^~1~^~A~^^^1^6.080^9.800^5^6.667^9.496^~2, 3~^~01/01/2011~ -~10019~^~410~^0.877^6^0.069^~1~^~A~^^^1^0.590^1.050^5^0.699^1.055^~2, 3~^~01/01/2011~ -~10019~^~415~^0.478^6^0.046^~1~^~A~^^^1^0.340^0.629^5^0.359^0.596^~2, 3~^~01/01/2011~ -~10019~^~501~^0.341^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~502~^1.262^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~503~^1.358^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~504~^2.361^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~505~^2.551^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~506~^0.786^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~507~^0.323^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~508~^1.192^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~509~^1.137^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~510~^1.451^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~511~^1.849^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~512~^1.167^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~513~^1.643^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10019~^~514~^2.683^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~515~^4.383^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~516~^1.297^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~517~^1.160^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~518~^1.198^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10019~^~605~^0.038^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~606~^1.837^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10019~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~610~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.005^~1, 2, 3~^~01/01/2011~ -~10019~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~612~^0.060^6^0.009^~1~^~A~^^^1^0.040^0.088^5^0.037^0.082^~2, 3~^~01/01/2011~ -~10019~^~613~^1.140^6^0.129^~1~^~A~^^^1^0.804^1.550^5^0.809^1.471^~2, 3~^~01/01/2011~ -~10019~^~614~^0.608^6^0.067^~1~^~A~^^^1^0.442^0.804^5^0.436^0.781^~2, 3~^~01/01/2011~ -~10019~^~615~^0.006^6^0.003^~1~^~A~^^^1^0.000^0.015^5^-0.001^0.013^~1, 2, 3~^~01/01/2011~ -~10019~^~617~^2.317^6^0.246^~1~^~AS~^^^1^1.622^3.130^5^1.684^2.950^~2, 3~^~01/01/2011~ -~10019~^~618~^0.975^6^0.145^~1~^~AS~^^^1^0.542^1.524^5^0.602^1.348^~2, 3~^~01/01/2011~ -~10019~^~619~^0.034^6^0.006^~1~^~AS~^^^1^0.013^0.051^5^0.019^0.048^~2, 3~^~01/01/2011~ -~10019~^~620~^0.078^6^0.005^~1~^~A~^^^1^0.064^0.093^5^0.066^0.090^~2, 3~^~01/01/2011~ -~10019~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~626~^0.126^6^0.023^~1~^~A~^^^1^0.073^0.210^5^0.066^0.185^~2, 3~^~01/01/2011~ -~10019~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~628~^0.039^6^0.004^~1~^~A~^^^1^0.026^0.054^5^0.028^0.050^~2, 3~^~01/01/2011~ -~10019~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10019~^~631~^0.008^6^0.002^~1~^~A~^^^1^0.000^0.011^5^0.004^0.013^~1, 2, 3~^~01/01/2011~ -~10019~^~645~^2.482^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~646~^1.130^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~652~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.010^5^-0.003^0.006^~1, 2, 3~^~01/01/2011~ -~10019~^~653~^0.020^6^0.003^~1~^~A~^^^1^0.011^0.032^5^0.011^0.028^~2, 3~^~01/01/2011~ -~10019~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~663~^0.034^6^0.013^~1~^~A~^^^1^0.000^0.092^5^0.000^0.068^~1, 2, 3~^~01/01/2011~ -~10019~^~665~^0.004^6^0.003^~1~^~A~^^^1^0.000^0.014^5^-0.003^0.011^~1, 2, 3~^~01/01/2011~ -~10019~^~672~^0.035^6^0.004^~1~^~A~^^^1^0.025^0.046^5^0.026^0.044^~2, 3~^~01/01/2011~ -~10019~^~674~^2.283^6^0.252^~1~^~A~^^^1^1.600^3.130^5^1.635^2.932^~2, 3~^~01/01/2011~ -~10019~^~675~^0.971^6^0.143^~1~^~A~^^^1^0.542^1.510^5^0.603^1.339^~2, 3~^~01/01/2011~ -~10019~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10019~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10019~^~851~^0.034^6^0.006^~1~^~A~^^^1^0.013^0.051^5^0.019^0.048^~2, 3~^~01/01/2011~ -~10019~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10020~^~312~^0.056^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~404~^0.901^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~405~^0.248^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~406~^4.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~410~^0.723^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~415~^0.472^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~501~^0.244^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~502~^0.891^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~503~^0.910^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~504~^1.572^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~505~^1.766^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~506~^0.514^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~507~^0.248^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~508~^0.785^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~509~^0.676^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~510~^1.064^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~511~^1.245^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~512~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~513~^1.158^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~514~^1.814^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~515~^3.044^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~516~^1.019^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~517~^0.838^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~518~^0.815^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~606~^4.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10020~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10020~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~612~^0.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~613~^2.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~614~^1.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~617~^5.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~618~^1.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~626~^0.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~628~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10020~^~645~^5.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10020~^~646~^1.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~312~^0.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~404~^0.632^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~405~^0.254^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~406~^4.419^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~410~^0.648^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~415~^0.366^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~501~^0.336^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~502~^1.229^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~503~^1.254^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~504~^2.168^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~505~^2.436^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~506~^0.708^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~507~^0.343^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~508~^1.082^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~509~^0.931^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~510~^1.467^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~511~^1.719^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~512~^1.061^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~513~^1.598^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~514~^2.501^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~515~^4.195^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~516~^1.413^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~517~^1.159^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~518~^1.124^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~606~^5.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10021~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10021~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~612~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~613~^3.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~614~^1.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~617~^5.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~618~^1.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~626~^0.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~628~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10021~^~645~^6.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10021~^~646~^1.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~312~^0.073^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~315~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~404~^0.877^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~405~^0.321^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~406~^5.037^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~410~^0.698^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~415~^0.464^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~501~^0.338^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~502~^1.234^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~503~^1.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~504~^2.177^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~505~^2.446^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~506~^0.712^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~507~^0.344^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~508~^1.086^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~509~^0.936^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~510~^1.473^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~511~^1.723^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~512~^1.067^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~513~^1.603^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~514~^2.512^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~515~^4.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~516~^1.409^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~517~^1.158^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~518~^1.128^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~606~^5.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10022~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10022~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~612~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~613~^3.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~614~^1.710^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~617~^5.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~618~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~620~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~626~^0.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~628~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10022~^~645~^6.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10022~^~646~^1.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~312~^0.056^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~404~^0.988^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~405~^0.313^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~406~^5.572^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~410~^0.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~415~^0.516^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~501~^0.341^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~502~^1.232^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~503~^1.261^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~504~^2.168^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~505~^2.432^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~506~^0.713^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~507~^0.344^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~508~^1.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~509~^0.938^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~510~^1.466^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~511~^1.693^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~512~^1.073^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~513~^1.582^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~514~^2.504^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~515~^4.218^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~516~^1.327^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~517~^1.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~518~^1.119^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~606~^5.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10023~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10023~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~612~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~613~^3.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~614~^1.750^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~617~^5.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~618~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~619~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~620~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~626~^0.460^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~628~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10023~^~645~^6.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10023~^~646~^1.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~312~^0.062^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~404~^0.989^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~405~^0.267^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~406~^4.915^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~410~^0.781^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~415~^0.527^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~501~^0.272^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~502~^0.978^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~503~^1.003^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~504~^1.719^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~505~^1.927^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~506~^0.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~507~^0.273^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~508~^0.855^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~509~^0.747^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~510~^1.162^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~511~^1.332^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~512~^0.856^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~513~^1.248^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~514~^1.987^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~515~^3.354^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~516~^1.017^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~517~^0.861^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~518~^0.885^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~606~^1.950^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10024~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10024~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~612~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~613~^1.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~614~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~617~^2.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~618~^0.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~626~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~628~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10024~^~645~^2.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10024~^~646~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~312~^0.079^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~315~^0.013^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~404~^0.659^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~405~^0.267^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~406~^4.588^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~410~^0.677^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~415~^0.387^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~501~^0.363^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~502~^1.305^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~503~^1.338^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~504~^2.292^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~505~^2.569^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~506~^0.756^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~507~^0.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~508~^1.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~509~^0.995^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~510~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~511~^1.776^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~512~^1.141^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~513~^1.664^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~514~^2.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~515~^4.472^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~516~^1.357^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~517~^1.148^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~518~^1.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~606~^3.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10025~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10025~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~612~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~613~^2.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~614~^1.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~617~^3.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~618~^0.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~626~^0.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~628~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10025~^~645~^4.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10025~^~646~^0.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~312~^0.075^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~315~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~404~^0.923^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~405~^0.338^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~406~^5.243^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~410~^0.729^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~415~^0.492^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~501~^0.363^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~502~^1.305^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~503~^1.338^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~504~^2.292^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~505~^2.569^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~506~^0.756^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~507~^0.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~508~^1.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~509~^0.995^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~510~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~511~^1.776^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~512~^1.141^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~513~^1.664^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~514~^2.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~515~^4.472^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~516~^1.357^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~517~^1.148^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~518~^1.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~606~^3.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10026~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10026~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~612~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~613~^2.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~614~^1.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~617~^4.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~618~^0.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~626~^0.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~628~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10026~^~645~^4.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10026~^~646~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~312~^0.059^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~315~^0.016^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~404~^1.017^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~405~^0.329^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~406~^5.893^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~410~^0.782^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~415~^0.552^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~501~^0.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~502~^1.307^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~503~^1.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~504~^2.297^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~505~^2.574^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~506~^0.758^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~507~^0.365^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~508~^1.143^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~509~^0.997^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~510~^1.553^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~511~^1.779^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~512~^1.143^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~513~^1.668^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~514~^2.655^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~515~^4.481^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~516~^1.359^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~517~^1.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~518~^1.182^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~606~^3.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10027~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10027~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~612~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~613~^2.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~614~^1.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~617~^3.880^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~618~^0.660^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~626~^0.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~628~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10027~^~645~^4.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10027~^~646~^0.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10028~^~312~^0.082^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~404~^0.499^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~405~^0.314^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~406~^6.704^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~410~^1.046^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~415~^0.427^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~501~^0.228^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~502~^0.841^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~503~^0.905^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~504~^1.574^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~505~^1.700^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~506~^0.524^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~507~^0.216^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~508~^0.794^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~509~^0.758^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~510~^0.967^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~511~^1.232^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~512~^0.778^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~513~^1.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~514~^1.788^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~515~^2.921^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~516~^0.864^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~517~^0.773^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~518~^0.798^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~521~^0.067^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~605~^0.080^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~606~^4.270^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~610~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~612~^0.153^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~613~^2.609^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~614~^1.419^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~615~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~617~^4.584^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~618~^1.699^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~619~^0.079^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~624~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~626~^0.248^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~628~^0.080^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~645~^4.913^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~646~^1.941^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~653~^0.039^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~663~^0.061^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~665~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~672~^0.067^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~674~^4.523^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~675~^1.687^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~693~^0.061^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~695~^0.019^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10028~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~851~^0.070^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10028~^~856~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~312~^0.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~404~^0.486^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~405~^0.316^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~406~^7.381^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~410~^0.944^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~415~^0.488^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~501~^0.316^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~502~^1.167^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~503~^1.257^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~504~^2.185^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~505~^2.361^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~506~^0.728^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~507~^0.299^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~508~^1.103^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~509~^1.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~510~^1.343^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~511~^1.710^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~512~^1.080^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~513~^1.520^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~514~^2.483^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~515~^4.055^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~516~^1.200^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~517~^1.073^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~518~^1.108^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~521~^0.093^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~605~^0.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~606~^4.487^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~610~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~611~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~612~^0.158^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~613~^2.734^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~614~^1.501^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~615~^0.022^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~617~^4.725^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~618~^1.692^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~619~^0.075^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~620~^0.094^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~626~^0.258^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~628~^0.083^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~631~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~645~^5.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~646~^1.948^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~652~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~653~^0.039^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~663~^0.053^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~665~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~672~^0.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~674~^4.672^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~675~^0.878^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10029~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~689~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~693~^0.053^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~851~^0.066^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10029~^~856~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~312~^0.105^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~404~^0.490^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~405~^0.313^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~406~^7.927^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~410~^1.104^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~415~^0.489^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~501~^0.282^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~502~^1.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~503~^1.123^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~504~^1.952^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~505~^2.109^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~506~^0.650^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~508~^0.985^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~509~^0.940^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~510~^1.200^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~511~^1.528^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~512~^0.965^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~513~^1.359^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~514~^2.219^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~515~^3.623^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~516~^1.072^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~517~^0.959^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~518~^0.991^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~521~^0.083^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~605~^0.066^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~606~^4.339^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~610~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~611~^0.010^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~612~^0.153^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~613~^2.643^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~614~^1.453^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~615~^0.021^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~617~^4.559^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~618~^1.650^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~619~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~620~^0.086^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~626~^0.246^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~628~^0.080^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~631~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~645~^4.887^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~646~^1.894^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~652~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~653~^0.023^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~663~^0.052^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~665~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~672~^0.065^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~674~^4.507^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~675~^0.922^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10030~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~689~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~693~^0.052^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~851~^0.065^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10030~^~856~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~312~^0.094^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~404~^0.482^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~405~^0.379^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~406~^6.705^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~410~^1.331^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~415~^0.436^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~501~^0.289^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~502~^1.068^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~503~^1.150^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~504~^1.999^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~505~^2.160^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~506~^0.666^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~508~^1.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~509~^0.962^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~510~^1.229^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~511~^1.565^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~512~^0.988^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~513~^1.391^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~514~^2.272^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~515~^3.711^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~516~^1.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~517~^0.982^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~518~^1.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~521~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~605~^0.112^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~606~^5.900^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~610~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~612~^0.208^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~613~^3.594^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~614~^1.973^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~615~^0.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~617~^6.245^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~618~^2.194^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~619~^0.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~620~^0.065^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~625~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~626~^0.324^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~628~^0.112^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~645~^6.684^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~646~^2.465^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~652~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~653~^0.055^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~663~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~665~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~672~^0.088^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~674~^6.160^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~675~^2.176^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~693~^0.085^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~695~^0.027^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10031~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~851~^0.083^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10031~^~856~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10032~^~312~^0.081^12^0.005^~1~^~A~^^^1^0.051^0.104^11^0.071^0.091^~2, 3~^~04/01/2010~ -~10032~^~315~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.012^11^0.008^0.010^~2, 3~^~04/01/2010~ -~10032~^~404~^0.540^12^0.026^~1~^~A~^^^1^0.382^0.708^11^0.483^0.596^~2, 3~^~04/01/2010~ -~10032~^~405~^0.338^12^0.012^~1~^~A~^^^1^0.290^0.440^11^0.313^0.364^~2, 3~^~04/01/2010~ -~10032~^~406~^7.113^12^0.439^~1~^~A~^^^1^4.520^9.760^11^6.147^8.078^~2, 3~^~04/01/2010~ -~10032~^~410~^1.115^6^0.095^~1~^~A~^^^1^0.879^1.470^5^0.869^1.360^~2, 3~^~04/01/2010~ -~10032~^~415~^0.466^6^0.026^~1~^~A~^^^1^0.389^0.583^5^0.399^0.534^~2, 3~^~04/01/2010~ -~10032~^~501~^0.253^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~502~^0.933^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~503~^1.005^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~504~^1.746^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~505~^1.887^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~506~^0.582^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~507~^0.239^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~508~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~509~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~510~^1.073^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~511~^1.367^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~512~^0.863^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~513~^1.215^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~514~^1.985^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~515~^3.241^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~516~^0.959^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~517~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~518~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~521~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10032~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~606~^1.974^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~ -~10032~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~1, 2, 3~^~04/01/2010~ -~10032~^~610~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.004^0.007^~2, 3~^~04/01/2010~ -~10032~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2010~ -~10032~^~612~^0.069^6^0.006^~1~^~A~^^^1^0.052^0.088^5^0.055^0.084^~2, 3~^~04/01/2010~ -~10032~^~613~^1.208^6^0.101^~1~^~A~^^^1^0.869^1.530^5^0.949^1.467^~2, 3~^~04/01/2010~ -~10032~^~614~^0.656^6^0.053^~1~^~A~^^^1^0.473^0.807^5^0.520^0.792^~2, 3~^~04/01/2010~ -~10032~^~615~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.007^0.011^~2, 3~^~04/01/2010~ -~10032~^~617~^2.133^6^0.192^~1~^~AS~^^^1^1.443^2.753^5^1.640^2.626^~2, 3~^~04/01/2010~ -~10032~^~618~^0.673^6^0.033^~1~^~AS~^^^1^0.577^0.767^5^0.587^0.759^~2, 3~^~04/01/2010~ -~10032~^~619~^0.028^6^0.002^~1~^~AS~^^^1^0.023^0.035^5^0.023^0.034^~2, 3~^~04/01/2010~ -~10032~^~620~^0.067^6^0.002^~1~^~A~^^^1^0.059^0.075^5^0.062^0.072^~2, 3~^~04/01/2010~ -~10032~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~10032~^~624~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10032~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~10032~^~626~^0.132^6^0.014^~1~^~A~^^^1^0.095^0.187^5^0.095^0.169^~2, 3~^~04/01/2010~ -~10032~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~10032~^~628~^0.036^6^0.003^~1~^~A~^^^1^0.025^0.044^5^0.029^0.043^~2, 3~^~04/01/2010~ -~10032~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2010~ -~10032~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2010~ -~10032~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2010~ -~10032~^~645~^2.301^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~646~^0.805^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2010~ -~10032~^~653~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.018^5^0.012^0.017^~2, 3~^~04/01/2010~ -~10032~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~10032~^~663~^0.018^6^0.003^~1~^~A~^^^1^0.013^0.030^5^0.010^0.026^~2, 3~^~04/01/2010~ -~10032~^~665~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10032~^~672~^0.026^6^0.001^~1~^~A~^^^1^0.021^0.030^5^0.022^0.030^~2, 3~^~04/01/2010~ -~10032~^~674~^2.115^6^0.191^~1~^~A~^^^1^1.430^2.740^5^1.624^2.606^~2, 3~^~04/01/2010~ -~10032~^~675~^0.673^6^0.033^~1~^~A~^^^1^0.577^0.767^5^0.587^0.758^~2, 3~^~04/01/2010~ -~10032~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~10032~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2010~ -~10032~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~10032~^~689~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~10032~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10032~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~10032~^~851~^0.025^6^0.002^~1~^~A~^^^1^0.021^0.030^5^0.021^0.029^~2, 3~^~04/01/2010~ -~10032~^~856~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10033~^~312~^0.097^12^0.010^~1~^~A~^^^1^0.004^0.126^11^0.075^0.118^~2, 3~^~03/01/2010~ -~10033~^~315~^0.012^12^0.000^~1~^~A~^^^1^0.010^0.016^11^0.011^0.013^~2, 3~^~03/01/2010~ -~10033~^~404~^0.507^12^0.025^~1~^~A~^^^1^0.363^0.660^11^0.451^0.563^~2, 3~^~03/01/2010~ -~10033~^~405~^0.332^12^0.013^~1~^~A~^^^1^0.260^0.400^11^0.303^0.360^~2, 3~^~03/01/2010~ -~10033~^~406~^7.604^12^0.313^~1~^~A~^^^1^5.450^9.810^11^6.915^8.293^~2, 3~^~03/01/2010~ -~10033~^~410~^0.968^6^0.059^~1~^~A~^^^1^0.796^1.170^5^0.817^1.118^~2, 3~^~03/01/2010~ -~10033~^~415~^0.515^6^0.037^~1~^~A~^^^1^0.415^0.628^5^0.421^0.609^~2, 3~^~03/01/2010~ -~10033~^~501~^0.333^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~502~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~503~^1.327^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~504~^2.306^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~505~^2.492^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~506~^0.768^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~507~^0.316^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~508~^1.164^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~509~^1.110^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~510~^1.417^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~511~^1.805^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~512~^1.140^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~513~^1.605^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~514~^2.621^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~515~^4.280^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~516~^1.266^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~517~^1.133^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~518~^1.170^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10033~^~521~^0.098^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~10033~^~605~^0.026^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~606~^2.590^0^^~4~^~NC~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~610~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~611~^0.007^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~612~^0.091^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~613~^1.586^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~614~^0.861^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~615~^0.012^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~617~^2.799^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~618~^0.884^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~619~^0.037^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~620~^0.088^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~626~^0.173^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~628~^0.047^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~645~^5.819^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2013~ -~10033~^~646~^1.093^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2013~ -~10033~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~653~^0.019^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~663~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~672~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~674~^2.776^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~693~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~851~^0.033^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10033~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~312~^0.105^12^0.004^~1~^~A~^^^1^0.084^0.119^11^0.097^0.113^~2, 3~^~03/01/2010~ -~10034~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.010^0.013^11^0.010^0.012^~2, 3~^~03/01/2010~ -~10034~^~404~^0.513^12^0.031^~1~^~A~^^^1^0.352^0.659^11^0.446^0.580^~2, 3~^~03/01/2010~ -~10034~^~405~^0.329^12^0.013^~1~^~A~^^^1^0.260^0.420^11^0.301^0.357^~2, 3~^~03/01/2010~ -~10034~^~406~^8.218^12^0.298^~1~^~A~^^^1^5.910^10.300^11^7.561^8.874^~2, 3~^~03/01/2010~ -~10034~^~410~^1.145^6^0.080^~1~^~A~^^^1^0.934^1.330^5^0.939^1.351^~2, 3~^~03/01/2010~ -~10034~^~415~^0.517^6^0.024^~1~^~A~^^^1^0.435^0.605^5^0.456^0.577^~2, 3~^~03/01/2010~ -~10034~^~501~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~502~^1.099^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~503~^1.183^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~504~^2.057^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~505~^2.223^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~506~^0.685^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~507~^0.282^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~508~^1.038^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~509~^0.990^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~510~^1.264^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~511~^1.610^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~512~^1.017^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~513~^1.432^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~514~^2.338^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~515~^3.818^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~516~^1.130^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~517~^1.011^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~518~^1.044^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~10034~^~521~^0.087^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10034~^~605~^0.023^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~606~^2.322^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~610~^0.007^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~611~^0.006^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~612~^0.082^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~613~^1.421^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~614~^0.772^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~615~^0.011^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~617~^2.510^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~618~^0.792^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~619~^0.033^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~620~^0.079^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~626~^0.155^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~628~^0.042^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~631~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~645~^2.707^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~646~^0.947^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~663~^0.021^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~672~^0.031^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~674~^2.488^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~693~^0.021^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~851~^0.029^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10034~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10035~^~312~^0.093^12^0.002^~1~^~A~^^^1^0.080^0.102^11^0.089^0.097^~2, 3~^~04/01/2010~ -~10035~^~315~^0.018^12^0.007^~1~^~A~^^^1^0.009^0.090^11^0.003^0.032^~2, 3~^~04/01/2010~ -~10035~^~404~^0.505^12^0.039^~1~^~A~^^^1^0.311^0.848^11^0.420^0.591^~2, 3~^~04/01/2010~ -~10035~^~405~^0.403^12^0.019^~1~^~A~^^^1^0.310^0.540^11^0.362^0.445^~2, 3~^~04/01/2010~ -~10035~^~406~^6.882^12^0.242^~1~^~A~^^^1^5.270^7.940^11^6.350^7.413^~2, 3~^~04/01/2010~ -~10035~^~410~^1.398^6^0.086^~1~^~A~^^^1^1.080^1.670^5^1.178^1.618^~2, 3~^~04/01/2010~ -~10035~^~415~^0.460^6^0.021^~1~^~A~^^^1^0.388^0.519^5^0.407^0.513^~2, 3~^~04/01/2010~ -~10035~^~501~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~502~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~503~^1.217^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~504~^2.115^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~505~^2.285^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~506~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~507~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~508~^1.068^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~509~^1.018^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~510~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~511~^1.656^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~512~^1.045^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~513~^1.472^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~514~^2.404^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~515~^3.926^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~516~^1.161^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~517~^1.039^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~518~^1.073^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~521~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10035~^~605~^0.071^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~606~^3.934^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10035~^~609~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2010~ -~10035~^~610~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.013^~2, 3~^~04/01/2010~ -~10035~^~611~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.007^0.010^~2, 3~^~04/01/2010~ -~10035~^~612~^0.139^6^0.009^~1~^~A~^^^1^0.117^0.170^5^0.116^0.162^~2, 3~^~04/01/2010~ -~10035~^~613~^2.403^6^0.144^~1~^~A~^^^1^2.040^2.910^5^2.032^2.775^~2, 3~^~04/01/2010~ -~10035~^~614~^1.308^6^0.094^~1~^~A~^^^1^1.090^1.670^5^1.068^1.549^~2, 3~^~04/01/2010~ -~10035~^~615~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.015^0.020^~2, 3~^~04/01/2010~ -~10035~^~617~^4.257^6^0.256^~1~^~AS~^^^1^3.621^5.181^5^3.599^4.916^~2, 3~^~04/01/2010~ -~10035~^~618~^1.345^6^0.109^~1~^~AS~^^^1^0.936^1.644^5^1.065^1.625^~2, 3~^~04/01/2010~ -~10035~^~619~^0.056^6^0.005^~1~^~AS~^^^1^0.037^0.068^5^0.044^0.068^~2, 3~^~04/01/2010~ -~10035~^~620~^0.055^6^0.002^~1~^~A~^^^1^0.047^0.061^5^0.050^0.060^~2, 3~^~04/01/2010~ -~10035~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~624~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.002^~2, 3~^~04/01/2010~ -~10035~^~625~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.002^~2, 3~^~04/01/2010~ -~10035~^~626~^0.237^6^0.017^~1~^~A~^^^1^0.174^0.281^5^0.192^0.281^~2, 3~^~04/01/2010~ -~10035~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~628~^0.076^6^0.005^~1~^~A~^^^1^0.064^0.094^5^0.064^0.087^~2, 3~^~04/01/2010~ -~10035~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~10035~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~04/01/2010~ -~10035~^~645~^4.572^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~646~^1.524^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~652~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.005^0.008^~2, 3~^~04/01/2010~ -~10035~^~653~^0.034^6^0.004^~1~^~A~^^^1^0.023^0.048^5^0.025^0.044^~2, 3~^~04/01/2010~ -~10035~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^5^0.002^0.002^~2, 3~^~04/01/2010~ -~10035~^~663~^0.056^6^0.012^~1~^~A~^^^1^0.018^0.091^5^0.025^0.086^~2, 3~^~04/01/2010~ -~10035~^~665~^0.011^6^0.003^~1~^~A~^^^1^0.001^0.018^5^0.004^0.018^~1, 2, 3~^~04/01/2010~ -~10035~^~672~^0.054^6^0.003^~1~^~A~^^^1^0.042^0.066^5^0.046^0.063^~2, 3~^~04/01/2010~ -~10035~^~674~^4.202^6^0.253^~1~^~A~^^^1^3.530^5.100^5^3.551^4.852^~2, 3~^~04/01/2010~ -~10035~^~675~^1.334^6^0.107^~1~^~A~^^^1^0.935^1.630^5^1.060^1.608^~2, 3~^~04/01/2010~ -~10035~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~685~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2010~ -~10035~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~689~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.006^0.009^~2, 3~^~04/01/2010~ -~10035~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10035~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10035~^~851~^0.048^6^0.004^~1~^~A~^^^1^0.032^0.059^5^0.038^0.059^~2, 3~^~04/01/2010~ -~10035~^~856~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2010~ -~10036~^~312~^0.063^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~404~^0.485^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~405~^0.189^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~406~^6.619^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~410~^0.704^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~415~^0.697^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~501~^0.218^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~502~^0.930^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~503~^1.019^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~504~^1.764^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~505~^1.921^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~506~^0.570^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~507~^0.239^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~508~^0.871^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~509~^0.788^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~510~^1.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~511~^1.378^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~512~^0.895^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~513~^1.216^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~514~^2.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~515~^3.306^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~516~^0.933^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~517~^0.837^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~518~^0.895^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~521~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10036~^~605~^0.092^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10036~^~606~^2.993^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~610~^0.006^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~611~^0.004^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~612~^0.106^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~613~^1.834^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~614~^0.997^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10036~^~617~^3.329^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~618~^1.052^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~619~^0.048^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~620~^0.046^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~626~^0.160^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~628~^0.056^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~645~^3.548^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~646~^1.190^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~652~^0.003^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~653~^0.028^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~663~^0.063^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~669~^0.030^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~672~^0.039^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~674~^3.266^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~675~^1.023^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~687~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~689~^0.005^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~693~^0.063^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10036~^~695~^0.021^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10036~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10036~^~851~^0.046^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10037~^~312~^0.104^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~315~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~404~^0.518^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~405~^0.336^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~406~^7.868^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~410~^1.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~415~^0.519^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~501~^0.336^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~502~^1.240^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~503~^1.336^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~504~^2.322^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~505~^2.509^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~506~^0.773^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~507~^0.318^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~508~^1.172^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~509~^1.118^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~510~^1.427^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~511~^1.818^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~512~^1.147^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~513~^1.616^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~514~^2.639^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~515~^4.309^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~516~^1.275^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~517~^1.141^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~518~^1.178^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~521~^0.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~605~^0.076^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~606~^4.934^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~610~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~611~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~612~^0.174^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~613~^3.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~614~^1.652^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~615~^0.024^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~617~^5.184^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~618~^1.877^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~619~^0.083^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~620~^0.098^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~626~^0.280^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~628~^0.091^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~645~^5.557^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~646~^2.155^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~652~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~653~^0.043^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~663~^0.059^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~672~^0.074^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~674~^5.125^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~675~^1.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10037~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~689~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~693~^0.059^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~695~^0.017^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~851~^0.074^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10037~^~856~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10038~^~312~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~404~^0.599^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~405~^0.234^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~406~^8.147^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~410~^0.658^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~415~^0.669^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~501~^0.270^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~502~^1.150^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~503~^1.260^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~504~^2.182^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~505~^2.375^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~506~^0.705^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~507~^0.296^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~508~^1.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~509~^0.975^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~510~^1.338^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~511~^1.704^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~512~^1.106^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~513~^1.503^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~514~^2.505^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~515~^4.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~516~^1.154^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~517~^1.035^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~518~^1.107^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~521~^0.066^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~605~^0.107^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~606~^3.518^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~612~^0.125^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~613~^2.168^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~614~^1.164^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~617~^3.958^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~618~^1.184^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~619~^0.052^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~626~^0.187^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~628~^0.064^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10038~^~645~^4.220^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~646~^1.359^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~653~^0.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~663~^0.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~669~^0.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~672~^0.043^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~674~^3.884^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~675~^1.151^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~687~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10038~^~693~^0.074^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~695~^0.033^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10038~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10038~^~851~^0.051^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10039~^~312~^0.103^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~315~^0.018^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~404~^0.536^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~405~^0.422^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~406~^7.420^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~410~^1.478^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~415~^0.485^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~501~^0.321^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~502~^1.188^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~503~^1.279^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~504~^2.223^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~505~^2.402^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~507~^0.305^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~508~^1.122^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~509~^1.070^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~510~^1.366^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~511~^1.740^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~512~^1.099^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~513~^1.547^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~514~^2.527^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~515~^4.126^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~516~^1.221^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~517~^1.092^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~518~^1.128^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~521~^0.094^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~605~^0.093^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~606~^4.859^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~610~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~612~^0.173^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~613~^2.975^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~614~^1.614^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~617~^5.120^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~618~^1.848^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~619~^0.076^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~620~^0.062^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~626~^0.270^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~628~^0.086^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~645~^5.478^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~646~^2.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~653~^0.045^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~663~^0.067^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~665~^0.020^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~672~^0.072^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~674~^5.053^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~675~^1.828^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~693~^0.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~695~^0.025^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10039~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~851~^0.071^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10039~^~856~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10040~^~312~^0.066^12^0.003^~1~^~A~^^^1^0.046^0.082^11^0.059^0.072^~2, 3~^~02/01/2007~ -~10040~^~315~^0.008^12^0.000^~1~^~A~^^^1^0.006^0.010^11^0.007^0.009^~1, 2, 3~^~02/01/2007~ -~10040~^~404~^0.510^0^^~4~^~BFYN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~405~^0.198^0^^~4~^~BFYN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~406~^6.934^0^^~4~^~BFYN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~410~^0.732^0^^~4~^~BFPN~^~10066~^^^^^^^^^~02/01/2007~ -~10040~^~415~^0.742^0^^~4~^~BFPN~^~10066~^^^^^^^^^~02/01/2007~ -~10040~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~502~^0.987^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~503~^1.082^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~504~^1.873^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~505~^2.039^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~506~^0.606^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~508~^0.924^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~509~^0.837^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~510~^1.149^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~511~^1.463^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~512~^0.950^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~513~^1.291^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~514~^2.151^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~515~^3.510^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~516~^0.991^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~517~^0.889^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~518~^0.951^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10040~^~521~^0.056^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10040~^~605~^0.033^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~606~^1.098^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~607~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~608~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~609~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~610~^0.002^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~611~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~612~^0.040^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~613~^0.688^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~614~^0.355^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~617~^1.265^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~618~^0.353^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~619~^0.014^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~620~^0.037^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~621~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~624~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~625~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~626~^0.059^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~627~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~628~^0.019^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~629~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~630~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~631~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~645~^1.346^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~646~^0.415^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~652~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~653~^0.009^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~663~^0.023^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~669~^0.010^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~672~^0.012^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~674~^1.242^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~675~^0.343^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~685~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~687~^0.002^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~689~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~693~^0.023^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~697~^0.000^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10040~^~851~^0.014^0^^~4~^~BFFN~^~10042~^^^^^^^^^~02/01/2007~ -~10041~^~312~^0.103^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~315~^0.013^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~404~^0.547^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~405~^0.358^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~406~^8.197^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~410~^1.043^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~415~^0.555^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10041~^~501~^0.359^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~502~^1.328^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~503~^1.430^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~504~^2.486^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~505~^2.686^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~506~^0.828^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~507~^0.341^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~508~^1.255^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~509~^1.197^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~510~^1.528^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~511~^1.946^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~512~^1.229^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~513~^1.730^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~514~^2.825^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~515~^4.614^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~516~^1.365^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~517~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~518~^1.261^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~521~^0.105^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10041~^~605~^0.027^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~606~^2.671^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~610~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~611~^0.007^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~612~^0.094^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~613~^1.635^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~614~^0.887^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~615~^0.012^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~617~^2.886^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~618~^0.911^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~619~^0.038^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~620~^0.090^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~626~^0.179^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~628~^0.049^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~645~^3.114^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~646~^1.089^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~653~^0.019^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~663~^0.025^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~672~^0.035^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~674~^2.862^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~693~^0.025^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~851~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10041~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10042~^~312~^0.081^12^0.005^~1~^~A~^^^1^0.062^0.121^11^0.070^0.091^~2, 3~^~02/01/2007~ -~10042~^~315~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.014^11^0.008^0.010^~1, 2, 3~^~02/01/2007~ -~10042~^~404~^0.624^4^0.053^~1~^~A~^^^1^0.526^0.775^3^0.455^0.793^~2, 3~^~02/01/2007~ -~10042~^~405~^0.243^4^0.052^~1~^~A~^^^1^0.179^0.397^3^0.077^0.408^~2, 3~^~02/01/2007~ -~10042~^~406~^8.485^4^0.290^~1~^~A~^^^1^7.970^9.050^3^7.562^9.408^~2, 3~^~02/01/2007~ -~10042~^~410~^0.672^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2007~ -~10042~^~415~^0.701^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2007~ -~10042~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~502~^1.201^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~503~^1.317^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~504~^2.279^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~505~^2.482^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~506~^0.737^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~507~^0.309^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~508~^1.125^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~509~^1.018^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~510~^1.398^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~511~^1.780^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~512~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~513~^1.571^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~514~^2.618^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~515~^4.272^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~516~^1.206^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~517~^1.082^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~518~^1.157^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10042~^~521~^0.069^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10042~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~606~^2.156^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~610~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.010^~1, 2, 3~^~02/01/2007~ -~10042~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~612~^0.078^4^0.010^~1~^~A~^^^1^0.050^0.091^3^0.048^0.109^~2, 3~^~02/01/2007~ -~10042~^~613~^1.351^4^0.161^~1~^~A~^^^1^0.872^1.562^3^0.837^1.865^~2, 3~^~02/01/2007~ -~10042~^~614~^0.697^4^0.086^~1~^~A~^^^1^0.447^0.823^3^0.424^0.970^~2, 3~^~02/01/2007~ -~10042~^~615~^0.008^4^0.003^~1~^~A~^^^1^0.000^0.012^3^-0.001^0.017^~1, 2, 3~^~02/01/2007~ -~10042~^~617~^2.485^4^0.283^~1~^~AS~^^^1^1.645^2.861^3^1.585^3.386^~2, 3~^~02/01/2007~ -~10042~^~618~^0.693^4^0.054^~1~^~AS~^^^1^0.578^0.810^3^0.522^0.864^~2, 3~^~02/01/2007~ -~10042~^~619~^0.027^4^0.003^~1~^~AS~^^^1^0.019^0.031^3^0.018^0.036^~2, 3~^~02/01/2007~ -~10042~^~620~^0.072^4^0.003^~1~^~A~^^^1^0.064^0.075^3^0.063^0.080^~2, 3~^~02/01/2007~ -~10042~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~626~^0.116^4^0.043^~1~^~A~^^^1^0.000^0.183^3^-0.020^0.253^~1, 2, 3~^~02/01/2007~ -~10042~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~628~^0.037^4^0.004^~1~^~A~^^^1^0.026^0.045^3^0.024^0.050^~2, 3~^~02/01/2007~ -~10042~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10042~^~645~^2.643^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~646~^0.816^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~653~^0.018^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.014^0.022^~2, 3~^~02/01/2007~ -~10042~^~663~^0.045^4^0.007^~1~^~A~^^^1^0.032^0.066^3^0.022^0.069^~2, 3~^~02/01/2007~ -~10042~^~669~^0.019^4^0.002^~1~^~A~^^^1^0.015^0.023^3^0.013^0.025^~2, 3~^~02/01/2007~ -~10042~^~672~^0.023^4^0.002^~1~^~A~^^^1^0.019^0.026^3^0.018^0.029^~2, 3~^~02/01/2007~ -~10042~^~674~^2.440^4^0.279^~1~^~A~^^^1^1.613^2.814^3^1.552^3.328^~2, 3~^~02/01/2007~ -~10042~^~675~^0.674^4^0.053^~1~^~A~^^^1^0.563^0.787^3^0.506^0.842^~2, 3~^~02/01/2007~ -~10042~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~687~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.009^0.017^~1, 2, 3~^~02/01/2007~ -~10042~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~693~^0.045^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10042~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10042~^~851~^0.027^4^0.003^~1~^~A~^^^1^0.019^0.031^3^0.018^0.036^~2, 3~^~02/01/2007~ -~10043~^~312~^0.102^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~315~^0.020^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~404~^0.562^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~405~^0.449^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~406~^7.655^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~410~^1.555^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~415~^0.512^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10043~^~501~^0.340^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~502~^1.257^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~503~^1.353^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~504~^2.353^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~505~^2.542^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~506~^0.783^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~507~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~508~^1.188^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~509~^1.133^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~510~^1.446^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~511~^1.842^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~512~^1.163^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~513~^1.637^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~514~^2.674^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~515~^4.367^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~516~^1.292^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~517~^1.156^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~518~^1.194^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10043~^~605~^0.053^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~606~^2.932^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10043~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~610~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^5^0.008^0.013^~2, 3~^~05/01/2010~ -~10043~^~611~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~1, 2, 3~^~05/01/2010~ -~10043~^~612~^0.105^6^0.008^~1~^~A~^^^1^0.081^0.129^5^0.084^0.126^~2, 3~^~05/01/2010~ -~10043~^~613~^1.810^6^0.126^~1~^~A~^^^1^1.390^2.180^5^1.486^2.134^~2, 3~^~05/01/2010~ -~10043~^~614~^0.962^6^0.070^~1~^~A~^^^1^0.726^1.200^5^0.781^1.143^~2, 3~^~05/01/2010~ -~10043~^~615~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.015^~2, 3~^~05/01/2010~ -~10043~^~617~^3.166^6^0.197^~1~^~AS~^^^1^2.474^3.917^5^2.659^3.673^~2, 3~^~05/01/2010~ -~10043~^~618~^1.027^6^0.026^~1~^~AS~^^^1^0.954^1.132^5^0.960^1.093^~2, 3~^~05/01/2010~ -~10043~^~619~^0.037^6^0.001^~1~^~AS~^^^1^0.034^0.040^5^0.035^0.039^~2, 3~^~05/01/2010~ -~10043~^~620~^0.052^6^0.001^~1~^~A~^^^1^0.048^0.057^5^0.048^0.055^~2, 3~^~05/01/2010~ -~10043~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~626~^0.183^6^0.017^~1~^~A~^^^1^0.130^0.234^5^0.140^0.226^~2, 3~^~05/01/2010~ -~10043~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~628~^0.050^6^0.003^~1~^~A~^^^1^0.041^0.063^5^0.041^0.058^~2, 3~^~05/01/2010~ -~10043~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2010~ -~10043~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.006^0.009^~1, 2, 3~^~05/01/2010~ -~10043~^~645~^3.398^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~646~^1.162^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~653~^0.025^6^0.002^~1~^~A~^^^1^0.020^0.032^5^0.020^0.030^~2, 3~^~05/01/2010~ -~10043~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~663~^0.039^6^0.006^~1~^~A~^^^1^0.028^0.067^5^0.023^0.055^~2, 3~^~05/01/2010~ -~10043~^~665~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.020^5^0.010^0.017^~2, 3~^~05/01/2010~ -~10043~^~672~^0.039^6^0.002^~1~^~A~^^^1^0.036^0.046^5^0.035^0.043^~2, 3~^~05/01/2010~ -~10043~^~674~^3.127^6^0.193^~1~^~A~^^^1^2.440^3.850^5^2.630^3.623^~2, 3~^~05/01/2010~ -~10043~^~675~^1.013^6^0.027^~1~^~A~^^^1^0.934^1.120^5^0.944^1.082^~2, 3~^~05/01/2010~ -~10043~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10043~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10043~^~851~^0.037^6^0.001^~1~^~A~^^^1^0.034^0.040^5^0.035^0.039^~2, 3~^~05/01/2010~ -~10043~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10044~^~312~^0.065^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~404~^0.456^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~405~^0.177^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~406~^6.331^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~410~^0.693^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~415~^0.682^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~501~^0.214^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~502~^0.911^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~503~^0.998^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~504~^1.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~505~^1.881^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~506~^0.559^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~507~^0.234^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~508~^0.853^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~509~^0.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~510~^1.060^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~511~^1.350^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~512~^0.876^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~513~^1.191^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~514~^1.984^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~515~^3.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~516~^0.914^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~517~^0.820^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~518~^0.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~521~^0.052^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10044~^~605~^0.069^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10044~^~606~^2.365^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~610~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~611~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~612~^0.084^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~613~^1.453^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~614~^0.789^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10044~^~617~^2.568^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~618~^0.884^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~619~^0.040^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~620~^0.035^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10044~^~626~^0.142^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~628~^0.043^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~645~^2.756^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~646~^0.964^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~652~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~653~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~663~^0.043^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~669~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~672~^0.033^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~674~^2.524^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~675~^0.858^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~689~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10044~^~693~^0.043^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10044~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10044~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10044~^~851~^0.039^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10045~^~312~^0.101^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~315~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~404~^0.492^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~405~^0.318^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~406~^7.505^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~410~^0.962^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~415~^0.491^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~501~^0.317^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~502~^1.173^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~503~^1.262^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~504~^2.194^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~505~^2.371^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~506~^0.731^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~507~^0.301^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~508~^1.108^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~509~^1.056^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~510~^1.349^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~511~^1.718^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~512~^1.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~513~^1.527^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~514~^2.494^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~515~^4.073^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~516~^1.205^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~517~^1.078^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~518~^1.113^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~521~^0.093^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~605~^0.088^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~606~^5.435^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~610~^0.014^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~611~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~612~^0.192^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~613~^3.308^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~614~^1.822^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~615~^0.026^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~617~^5.686^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~618~^2.099^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~619~^0.094^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~620~^0.096^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~625~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~626~^0.300^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~628~^0.101^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~631~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~645~^6.088^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~646~^2.397^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~652~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~653~^0.049^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~663~^0.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~665~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~672~^0.083^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~674~^5.618^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~675~^1.331^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10045~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~689~^0.010^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~693~^0.067^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~851~^0.083^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10045~^~856~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10046~^~312~^0.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~404~^0.541^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~405~^0.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~406~^7.478^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~410~^0.632^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~415~^0.637^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~501~^0.257^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~502~^1.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~503~^1.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~504~^2.080^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~505~^2.265^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~506~^0.673^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~507~^0.282^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~508~^1.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~509~^0.929^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~510~^1.276^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~511~^1.625^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~512~^1.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~513~^1.433^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~514~^2.389^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~515~^3.898^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~516~^1.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~517~^0.987^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~518~^1.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~521~^0.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~605~^0.120^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~606~^4.486^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~612~^0.159^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~613~^2.761^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~614~^1.487^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~615~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~617~^5.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~618~^1.396^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~619~^0.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~620~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~626~^0.294^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~628~^0.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10046~^~645~^5.410^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~646~^1.593^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~653~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~663~^0.080^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~669~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~672~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~674~^4.941^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~675~^1.356^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~687~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10046~^~693~^0.080^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~695~^0.040^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10046~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10046~^~851~^0.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10047~^~312~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~404~^0.522^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~405~^0.295^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~406~^9.490^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~410~^1.478^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~415~^0.485^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~501~^0.321^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~502~^1.187^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~503~^1.278^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~504~^2.221^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~505~^2.400^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~507~^0.304^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~508~^1.121^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~509~^1.069^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~510~^1.365^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~511~^1.739^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~512~^1.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~513~^1.546^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~514~^2.524^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~515~^4.122^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~516~^1.220^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~517~^1.091^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~518~^1.127^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~521~^0.094^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~605~^0.100^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~606~^5.442^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~610~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~612~^0.192^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~613~^3.331^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~614~^1.805^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~617~^5.786^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~618~^2.206^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~619~^0.090^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~620~^0.067^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~626~^0.296^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~628~^0.099^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~645~^6.183^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~646~^2.474^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~652~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~653~^0.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~663~^0.073^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~665~^0.019^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~672~^0.088^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~674~^5.713^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~675~^2.187^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~693~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~695~^0.027^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10047~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~851~^0.082^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10047~^~856~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10048~^~312~^0.068^12^0.005^~1~^~A~^^^1^0.050^0.117^11^0.057^0.079^~2, 3~^~03/01/2007~ -~10048~^~315~^0.009^12^0.002^~1~^~A~^^^1^0.006^0.032^11^0.004^0.014^~1, 2, 3~^~03/01/2007~ -~10048~^~404~^0.484^0^^~4~^~BFYN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~405~^0.186^0^^~4~^~BFYN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~406~^6.685^0^^~4~^~BFYN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~410~^0.725^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~415~^0.735^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10048~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~502~^0.978^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~503~^1.072^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~504~^1.856^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~505~^2.021^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~506~^0.600^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~507~^0.251^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~508~^0.916^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~509~^0.829^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~510~^1.139^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~511~^1.450^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~512~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~514~^2.132^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~515~^3.479^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~516~^0.982^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~517~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~518~^0.942^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10048~^~521~^0.056^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~10048~^~606~^1.617^0^^~4~^~BFFN~^~10050~^^^^^^^^^~07/01/2010~ -~10048~^~607~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~608~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~609~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~610~^0.003^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~611~^0.002^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~612~^0.058^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~613~^1.010^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~614~^0.525^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~617~^1.846^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2009~ -~10048~^~618~^0.449^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2009~ -~10048~^~619~^0.018^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2009~ -~10048~^~620~^0.039^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~621~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~624~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~625~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~626~^0.122^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~627~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~628~^0.029^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~629~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~630~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~631~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~645~^1.999^0^^~4~^~BFFN~^~10050~^^^^^^^^^~07/01/2010~ -~10048~^~646~^0.524^0^^~4~^~BFFN~^~10050~^^^^^^^^^~07/01/2010~ -~10048~^~652~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~653~^0.013^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~663~^0.025^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~669~^0.013^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~672~^0.016^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~674~^1.821^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~675~^0.436^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~685~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~687~^0.002^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~689~^0.001^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~697~^0.000^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10048~^~851~^0.018^0^^~4~^~BFFN~^~10050~^^^^^^^^^~03/01/2007~ -~10049~^~312~^0.099^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~315~^0.012^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~404~^0.526^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~405~^0.344^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~406~^7.880^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~410~^1.003^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~415~^0.533^0^^~4~^~BFPN~^~10033~^^^^^^^^^~05/01/2010~ -~10049~^~501~^0.346^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~502~^1.277^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~503~^1.375^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~504~^2.390^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~505~^2.582^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~506~^0.796^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~507~^0.327^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~508~^1.206^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~509~^1.150^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~510~^1.469^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~511~^1.871^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~512~^1.181^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~513~^1.663^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~514~^2.716^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~515~^4.435^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~516~^1.312^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~517~^1.174^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~518~^1.213^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10049~^~521~^0.101^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~10049~^~605~^0.043^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~606~^2.389^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~10049~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~610~^0.007^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~611~^0.006^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~612~^0.084^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~613~^1.463^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~614~^0.794^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~615~^0.011^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~617~^4.975^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~618~^0.872^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~619~^0.037^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~620~^0.087^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~626~^0.308^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~628~^0.083^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~645~^5.368^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~646~^1.009^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~653~^0.017^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~06/01/2010~ -~10049~^~663~^0.042^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~672~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~674~^4.934^0^^~4~^~BFYN~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~693~^0.042^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~695~^0.001^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2015~ -~10049~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~851~^0.032^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10049~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10050~^~312~^0.088^12^0.010^~1~^~A~^^^1^0.050^0.155^11^0.066^0.110^~2, 3~^~03/01/2007~ -~10050~^~315~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.009^11^0.006^0.007^~1, 2, 3~^~03/01/2007~ -~10050~^~404~^0.569^4^0.057^~1~^~A~^^^1^0.458^0.723^3^0.388^0.750^~2, 3~^~03/01/2007~ -~10050~^~405~^0.219^4^0.039^~1~^~A~^^^1^0.158^0.332^3^0.096^0.342^~2, 3~^~03/01/2007~ -~10050~^~406~^7.855^4^0.354^~1~^~A~^^^1^7.300^8.790^3^6.727^8.983^~2, 3~^~03/01/2007~ -~10050~^~410~^0.648^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10050~^~415~^0.675^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10050~^~501~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~502~^1.158^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~503~^1.269^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~504~^2.197^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~505~^2.392^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~506~^0.710^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~507~^0.298^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~508~^1.084^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~509~^0.981^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~510~^1.348^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~511~^1.716^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~512~^1.114^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~513~^1.514^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~514~^2.523^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~515~^4.117^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~516~^1.162^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~517~^1.043^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~518~^1.115^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10050~^~521~^0.066^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10050~^~605~^0.067^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~606~^2.816^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10050~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10050~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~610~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.015^~1, 2, 3~^~03/01/2007~ -~10050~^~611~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.006^0.011^~1, 2, 3~^~03/01/2007~ -~10050~^~612~^0.101^4^0.026^~1~^~A~^^^1^0.051^0.172^3^0.020^0.183^~2, 3~^~03/01/2007~ -~10050~^~613~^1.760^4^0.427^~1~^~A~^^^1^0.907^2.931^3^0.401^3.118^~2, 3~^~03/01/2007~ -~10050~^~614~^0.914^4^0.231^~1~^~A~^^^1^0.466^1.558^3^0.179^1.649^~2, 3~^~03/01/2007~ -~10050~^~615~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.021^3^-0.003^0.025^~1, 2, 3~^~03/01/2007~ -~10050~^~617~^3.216^4^0.755^~1~^~AS~^^^1^1.757^5.315^3^0.814^5.618^~2, 3~^~03/01/2007~ -~10050~^~618~^0.783^4^0.178^~1~^~AS~^^^1^0.571^1.314^3^0.215^1.351^~2, 3~^~03/01/2007~ -~10050~^~619~^0.031^4^0.009^~1~^~AS~^^^1^0.019^0.056^3^0.004^0.059^~2, 3~^~03/01/2007~ -~10050~^~620~^0.068^4^0.002^~1~^~A~^^^1^0.065^0.074^3^0.061^0.075^~2, 3~^~03/01/2007~ -~10050~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~626~^0.212^4^0.045^~1~^~A~^^^1^0.112^0.323^3^0.068^0.356^~2, 3~^~03/01/2007~ -~10050~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~628~^0.050^4^0.013^~1~^~A~^^^1^0.027^0.088^3^0.008^0.092^~2, 3~^~03/01/2007~ -~10050~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10050~^~645~^3.482^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~646~^0.913^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~653~^0.022^4^0.005^~1~^~A~^^^1^0.014^0.038^3^0.005^0.039^~2, 3~^~03/01/2007~ -~10050~^~663~^0.044^4^0.013^~1~^~A~^^^1^0.028^0.083^3^0.002^0.085^~2, 3~^~03/01/2007~ -~10050~^~669~^0.023^4^0.005^~1~^~A~^^^1^0.014^0.038^3^0.006^0.040^~2, 3~^~03/01/2007~ -~10050~^~672~^0.029^4^0.007^~1~^~A~^^^1^0.020^0.050^3^0.006^0.051^~2, 3~^~03/01/2007~ -~10050~^~674~^3.172^4^0.742^~1~^~A~^^^1^1.729^5.232^3^0.810^5.534^~2, 3~^~03/01/2007~ -~10050~^~675~^0.760^4^0.173^~1~^~A~^^^1^0.555^1.276^3^0.208^1.311^~2, 3~^~03/01/2007~ -~10050~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~687~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.017^3^-0.009^0.018^~1, 2, 3~^~03/01/2007~ -~10050~^~689~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 2, 3~^~03/01/2007~ -~10050~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10050~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10050~^~851~^0.031^4^0.009^~1~^~A~^^^1^0.019^0.056^3^0.004^0.059^~2, 3~^~03/01/2007~ -~10051~^~312~^0.082^6^0.002^~1~^~A~^^^1^0.074^0.090^5^0.076^0.088^~2, 3~^~05/01/2010~ -~10051~^~315~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~05/01/2010~ -~10051~^~404~^0.552^6^0.042^~1~^~A~^^^1^0.398^0.675^5^0.444^0.660^~2, 3~^~05/01/2010~ -~10051~^~405~^0.312^6^0.021^~1~^~A~^^^1^0.260^0.400^5^0.258^0.365^~2, 3~^~05/01/2010~ -~10051~^~406~^10.003^6^0.651^~1~^~A~^^^1^8.380^12.100^5^8.331^11.675^~2, 3~^~05/01/2010~ -~10051~^~410~^1.569^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10051~^~415~^0.516^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10051~^~501~^0.343^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~502~^1.268^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~503~^1.365^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~504~^2.372^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~505~^2.564^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~506~^0.790^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~507~^0.325^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~508~^1.198^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~509~^1.142^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~510~^1.458^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~511~^1.857^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~512~^1.172^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~513~^1.651^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~514~^2.696^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~515~^4.403^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~516~^1.303^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~517~^1.165^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~518~^1.204^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~521~^0.101^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10051~^~605~^0.054^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~606~^3.254^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10051~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~610~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^5^0.007^0.012^~2, 3~^~05/01/2010~ -~10051~^~611~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.011^5^0.005^0.010^~1, 2, 3~^~05/01/2010~ -~10051~^~612~^0.115^6^0.011^~1~^~A~^^^1^0.080^0.151^5^0.087^0.143^~2, 3~^~05/01/2010~ -~10051~^~613~^2.008^6^0.168^~1~^~A~^^^1^1.470^2.530^5^1.577^2.439^~2, 3~^~05/01/2010~ -~10051~^~614~^1.065^6^0.099^~1~^~A~^^^1^0.755^1.380^5^0.811^1.318^~2, 3~^~05/01/2010~ -~10051~^~615~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.018^5^0.011^0.017^~2, 3~^~05/01/2010~ -~10051~^~617~^3.576^6^0.263^~1~^~AS~^^^1^2.717^4.317^5^2.898^4.253^~2, 3~^~05/01/2010~ -~10051~^~618~^1.286^6^0.096^~1~^~AS~^^^1^0.994^1.593^5^1.040^1.531^~2, 3~^~05/01/2010~ -~10051~^~619~^0.046^6^0.004^~1~^~AS~^^^1^0.032^0.055^5^0.036^0.057^~2, 3~^~05/01/2010~ -~10051~^~620~^0.056^6^0.003^~1~^~A~^^^1^0.045^0.064^5^0.048^0.064^~2, 3~^~05/01/2010~ -~10051~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~626~^0.197^6^0.012^~1~^~A~^^^1^0.162^0.243^5^0.165^0.229^~2, 3~^~05/01/2010~ -~10051~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~628~^0.058^6^0.006^~1~^~A~^^^1^0.039^0.072^5^0.043^0.072^~2, 3~^~05/01/2010~ -~10051~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2010~ -~10051~^~631~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.007^0.010^~1, 2, 3~^~05/01/2010~ -~10051~^~645~^3.830^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~646~^1.453^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~1, 2, 3~^~05/01/2010~ -~10051~^~653~^0.030^6^0.003^~1~^~A~^^^1^0.020^0.042^5^0.021^0.038^~2, 3~^~05/01/2010~ -~10051~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~663~^0.041^6^0.006^~1~^~A~^^^1^0.027^0.061^5^0.026^0.055^~2, 3~^~05/01/2010~ -~10051~^~665~^0.011^6^0.001^~1~^~A~^^^1^0.007^0.014^5^0.009^0.014^~2, 3~^~05/01/2010~ -~10051~^~672~^0.051^6^0.004^~1~^~A~^^^1^0.038^0.062^5^0.040^0.062^~2, 3~^~05/01/2010~ -~10051~^~674~^3.535^6^0.262^~1~^~A~^^^1^2.690^4.280^5^2.862^4.208^~2, 3~^~05/01/2010~ -~10051~^~675~^1.274^6^0.095^~1~^~A~^^^1^0.985^1.580^5^1.029^1.519^~2, 3~^~05/01/2010~ -~10051~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~689~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~1, 2, 3~^~05/01/2010~ -~10051~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10051~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10051~^~851~^0.044^6^0.004^~1~^~A~^^^1^0.032^0.055^5^0.034^0.054^~2, 3~^~05/01/2010~ -~10051~^~856~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.002^0.007^~1, 2, 3~^~05/01/2010~ -~10052~^~312~^0.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~404~^0.492^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~405~^0.277^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~406~^6.093^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~410~^0.839^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~415~^0.756^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~502~^0.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~503~^1.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~504~^1.745^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~505~^1.899^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~506~^0.564^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~507~^0.236^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~508~^0.861^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~509~^0.779^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~510~^1.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~511~^1.363^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~512~^0.885^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~513~^1.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~514~^2.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~515~^3.269^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~516~^0.923^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~517~^0.828^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~518~^0.885^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~521~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10052~^~605~^0.058^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~606~^2.978^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10052~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~610~^0.007^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~611~^0.005^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~612~^0.106^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~613~^1.835^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~614~^0.985^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10052~^~617~^3.342^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~618~^1.015^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~619~^0.047^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~620~^0.043^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~626~^0.186^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~628~^0.052^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~645~^6.922^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10052~^~646~^2.209^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10052~^~652~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~653~^0.028^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~663~^0.055^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~669~^0.028^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~672~^0.038^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~674~^3.287^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~675~^0.987^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~689~^0.005^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10052~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~695~^0.019^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10052~^~851~^0.046^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10053~^~312~^0.085^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~315~^0.013^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~404~^0.633^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~405~^0.264^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~406~^7.537^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~410~^0.966^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~415~^0.507^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~501~^0.343^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~502~^1.267^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~503~^1.364^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~504~^2.371^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~505~^2.562^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~506~^0.790^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~507~^0.325^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~508~^1.197^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~509~^1.142^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~510~^1.457^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~511~^1.857^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~512~^1.172^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~513~^1.650^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~514~^2.695^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~515~^4.402^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~516~^1.302^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~517~^1.165^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~518~^1.203^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~521~^0.101^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~605~^0.078^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~606~^4.294^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10053~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~612~^0.158^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~613~^2.671^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~614~^1.382^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~615~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~617~^4.823^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~618~^1.893^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~619~^0.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~620~^0.095^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~626~^0.272^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~628~^0.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~631~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~645~^5.180^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~646~^2.160^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~653~^0.042^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~663~^0.067^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~665~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~672~^0.072^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~674~^4.756^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~675~^1.881^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~693~^0.067^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10053~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~851~^0.075^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10053~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~312~^0.120^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~315~^0.012^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~404~^0.695^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~405~^0.278^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~406~^8.414^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~410~^1.254^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~415~^0.562^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~501~^0.321^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~502~^1.185^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~503~^1.276^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~504~^2.219^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~505~^2.397^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~506~^0.739^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~507~^0.304^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~508~^1.120^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~509~^1.068^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~510~^1.363^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~511~^1.737^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~512~^1.096^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~513~^1.544^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~514~^2.521^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~515~^4.118^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~516~^1.218^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~517~^1.090^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~518~^1.126^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~521~^0.094^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~605~^0.050^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~606~^4.045^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~610~^0.006^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~612~^0.153^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~613~^2.517^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~614~^1.306^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~617~^4.508^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~618~^1.673^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~619~^0.062^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~620~^0.094^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~621~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~626~^0.257^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~628~^0.075^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~631~^0.009^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~645~^4.842^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~646~^1.908^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~653~^0.025^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~663~^0.040^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~672~^0.044^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~674~^2.806^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~675~^1.083^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~693~^0.040^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~695~^0.009^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10054~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10054~^~851~^0.044^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10055~^~312~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~404~^0.639^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~405~^0.360^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~406~^7.865^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~410~^1.037^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~415~^0.750^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~501~^0.280^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~502~^1.196^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~503~^1.311^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~504~^2.269^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~505~^2.471^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~506~^0.734^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~507~^0.307^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~508~^1.120^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~509~^1.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~510~^1.392^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~511~^1.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~512~^1.151^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~513~^1.564^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~514~^2.606^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~515~^4.253^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~516~^1.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~517~^1.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~518~^1.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~521~^0.068^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~605~^0.103^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~606~^4.113^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~612~^0.147^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~613~^2.553^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~614~^1.338^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~617~^4.688^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~618~^1.304^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~619~^0.059^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~620~^0.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~626~^0.282^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~628~^0.065^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10055~^~645~^5.042^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~646~^1.499^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~653~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~663~^0.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~669~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~672~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~674~^4.620^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~675~^1.269^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~687~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10055~^~693~^0.068^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~695~^0.034^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10055~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10055~^~851~^0.058^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10056~^~312~^0.092^12^0.008^~1~^~A~^^^1^0.064^0.171^11^0.074^0.110^~2, 3~^~03/01/2007~ -~10056~^~315~^0.013^12^0.002^~1~^~A~^^^1^0.008^0.028^11^0.009^0.016^~2, 3~^~03/01/2007~ -~10056~^~404~^0.517^0^^~4~^~BFYN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~405~^0.292^0^^~4~^~BFYN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~406~^6.344^0^^~4~^~BFYN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~410~^0.875^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~415~^0.803^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10056~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~502~^0.972^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~503~^1.065^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~504~^1.844^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~505~^2.008^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~506~^0.596^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~508~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~509~^0.824^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~510~^1.131^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~511~^1.440^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~512~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~513~^1.271^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~514~^2.118^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~515~^3.456^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~516~^0.975^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~517~^0.875^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~518~^0.936^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10056~^~521~^0.056^0^^~1~^~A~^^^^^^^^^^~09/01/2010~ -~10056~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~10056~^~608~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~609~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~610~^0.003^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~611~^0.001^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~612~^0.044^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~613~^0.770^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~614~^0.387^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~617~^1.426^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2009~ -~10056~^~618~^0.362^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2009~ -~10056~^~619~^0.016^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2009~ -~10056~^~620~^0.034^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~621~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~624~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~625~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~626~^0.094^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~627~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~628~^0.017^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~629~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~630~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~631~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~645~^1.537^0^^~4~^~BFFN~^~10059~^^^^^^^^^~09/01/2010~ -~10056~^~646~^0.424^0^^~4~^~BFFN~^~10059~^^^^^^^^^~09/01/2010~ -~10056~^~652~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~653~^0.010^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~663~^0.018^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~669~^0.009^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~672~^0.013^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~674~^1.409^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~675~^0.353^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~685~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~687~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~689~^0.001^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~697~^0.000^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10056~^~851~^0.016^0^^~4~^~BFFN~^~10059~^^^^^^^^^~03/01/2007~ -~10057~^~312~^0.085^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~315~^0.014^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~404~^0.676^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~405~^0.271^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~406~^7.982^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~410~^1.011^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~415~^0.538^0^^~4~^~BFPN~^~10215~^^^^^^^^^~01/01/2011~ -~10057~^~501~^0.369^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~502~^1.363^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~503~^1.468^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~504~^2.552^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~505~^2.757^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~506~^0.850^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~507~^0.350^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~508~^1.288^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~509~^1.228^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~510~^1.568^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~511~^1.998^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~512~^1.261^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~513~^1.776^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~514~^2.900^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~515~^4.736^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~516~^1.401^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~517~^1.253^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~518~^1.295^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10057~^~521~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10057~^~605~^0.038^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~606~^2.327^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10057~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~610~^0.006^6^0.002^~1~^~A~^^^1^0.000^0.009^5^0.001^0.010^~1, 2, 3~^~01/01/2011~ -~10057~^~611~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.002^0.007^~1, 2, 3~^~01/01/2011~ -~10057~^~612~^0.085^6^0.008^~1~^~A~^^^1^0.057^0.106^5^0.065^0.104^~2, 3~^~01/01/2011~ -~10057~^~613~^1.441^6^0.120^~1~^~A~^^^1^0.965^1.720^5^1.134^1.748^~2, 3~^~01/01/2011~ -~10057~^~614~^0.760^6^0.074^~1~^~A~^^^1^0.475^0.973^5^0.570^0.951^~2, 3~^~01/01/2011~ -~10057~^~615~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^5^0.008^0.012^~2, 3~^~01/01/2011~ -~10057~^~617~^2.583^6^0.197^~1~^~AS~^^^1^1.753^3.072^5^2.076^3.090^~2, 3~^~01/01/2011~ -~10057~^~618~^1.038^6^0.122^~1~^~AS~^^^1^0.607^1.387^5^0.724^1.352^~2, 3~^~01/01/2011~ -~10057~^~619~^0.040^6^0.008^~1~^~AS~^^^1^0.019^0.072^5^0.019^0.061^~2, 3~^~01/01/2011~ -~10057~^~620~^0.087^6^0.003^~1~^~A~^^^1^0.082^0.095^5^0.081^0.094^~2, 3~^~01/01/2011~ -~10057~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~626~^0.160^6^0.011^~1~^~A~^^^1^0.125^0.202^5^0.133^0.187^~2, 3~^~01/01/2011~ -~10057~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~628~^0.042^6^0.004^~1~^~A~^^^1^0.026^0.052^5^0.032^0.052^~2, 3~^~01/01/2011~ -~10057~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10057~^~631~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.009^0.014^~2, 3~^~01/01/2011~ -~10057~^~645~^2.785^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~646~^1.217^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~653~^0.023^6^0.002^~1~^~A~^^^1^0.015^0.028^5^0.018^0.028^~2, 3~^~01/01/2011~ -~10057~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~663~^0.035^6^0.007^~1~^~A~^^^1^0.020^0.066^5^0.017^0.053^~2, 3~^~01/01/2011~ -~10057~^~665~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.014^5^-0.003^0.010^~1, 2, 3~^~01/01/2011~ -~10057~^~672~^0.037^6^0.005^~1~^~A~^^^1^0.019^0.051^5^0.025^0.050^~2, 3~^~01/01/2011~ -~10057~^~674~^2.548^6^0.192^~1~^~A~^^^1^1.730^3.030^5^2.054^3.043^~2, 3~^~01/01/2011~ -~10057~^~675~^1.035^6^0.120^~1~^~A~^^^1^0.607^1.380^5^0.725^1.344^~2, 3~^~01/01/2011~ -~10057~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~689~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.008^~1, 2, 3~^~01/01/2011~ -~10057~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10057~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10057~^~851~^0.040^6^0.008^~1~^~A~^^^1^0.019^0.072^5^0.019^0.061^~2, 3~^~01/01/2011~ -~10057~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10058~^~312~^0.123^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~315~^0.013^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~404~^0.752^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10058~^~405~^0.287^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10058~^~406~^9.035^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~ -~10058~^~410~^1.342^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~415~^0.606^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10058~^~501~^0.349^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~502~^1.288^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~503~^1.387^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~504~^2.411^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~505~^2.605^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~506~^0.803^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~507~^0.330^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~508~^1.217^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~509~^1.161^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~510~^1.482^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~511~^1.887^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~512~^1.191^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~513~^1.678^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~514~^2.740^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~515~^4.475^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~516~^1.324^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~517~^1.184^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~518~^1.223^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10058~^~606~^1.718^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10058~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10058~^~609~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~610~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~611~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~612~^0.066^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~613~^1.063^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~614~^0.572^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~617~^1.857^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~618~^0.650^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~619~^0.018^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~620~^0.084^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~621~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~626~^0.124^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~627~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~628~^0.026^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~629~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~630~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~631~^0.005^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~645~^2.007^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10058~^~646~^0.777^0^^~4~^~BFYN~^^^^^^^^^^~01/01/2011~ -~10059~^~312~^0.121^12^0.015^~1~^~A~^^^1^0.073^0.262^11^0.087^0.155^~2, 3~^~01/01/2007~ -~10059~^~315~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.016^11^0.008^0.012^~1, 2, 3~^~01/01/2007~ -~10059~^~404~^0.665^4^0.034^~1~^~A~^^^1^0.571^0.728^3^0.558^0.772^~2, 3~^~01/01/2007~ -~10059~^~405~^0.376^4^0.031^~1~^~A~^^^1^0.303^0.451^3^0.279^0.474^~2, 3~^~01/01/2007~ -~10059~^~406~^8.165^4^0.629^~1~^~A~^^^1^6.690^9.350^3^6.163^10.167^~2, 3~^~01/01/2007~ -~10059~^~410~^1.075^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10059~^~415~^0.785^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10059~^~501~^0.292^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~502~^1.247^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~503~^1.367^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~504~^2.367^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~505~^2.577^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~506~^0.765^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~507~^0.321^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~508~^1.168^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~509~^1.057^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~510~^1.452^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~511~^1.849^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~512~^1.200^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~513~^1.631^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~514~^2.718^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~515~^4.435^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~516~^1.252^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~517~^1.123^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~518~^1.201^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~10059~^~521~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10059~^~605~^0.063^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~606~^2.871^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~10059~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~610~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.010^3^0.005^0.011^~2, 3~^~01/01/2007~ -~10059~^~611~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 2, 3~^~01/01/2007~ -~10059~^~612~^0.104^4^0.011^~1~^~A~^^^1^0.081^0.135^3^0.068^0.140^~2, 3~^~01/01/2007~ -~10059~^~613~^1.810^4^0.135^~1~^~A~^^^1^1.469^2.128^3^1.380^2.239^~2, 3~^~01/01/2007~ -~10059~^~614~^0.910^4^0.054^~1~^~A~^^^1^0.786^1.042^3^0.739^1.082^~2, 3~^~01/01/2007~ -~10059~^~615~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.014^3^0.010^0.015^~2, 3~^~01/01/2007~ -~10059~^~617~^3.351^4^0.217^~1~^~AS~^^^1^2.742^3.771^3^2.659^4.042^~2, 3~^~01/01/2007~ -~10059~^~618~^0.850^4^0.039^~1~^~AS~^^^1^0.798^0.964^3^0.727^0.973^~2, 3~^~01/01/2007~ -~10059~^~619~^0.037^4^0.005^~1~^~AS~^^^1^0.027^0.048^3^0.020^0.053^~2, 3~^~01/01/2007~ -~10059~^~620~^0.079^4^0.004^~1~^~A~^^^1^0.071^0.089^3^0.065^0.093^~2, 3~^~01/01/2007~ -~10059~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~626~^0.222^4^0.024^~1~^~A~^^^1^0.163^0.281^3^0.145^0.298^~2, 3~^~01/01/2007~ -~10059~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~628~^0.040^4^0.013^~1~^~A~^^^1^0.000^0.054^3^-0.002^0.082^~1, 2, 3~^~01/01/2007~ -~10059~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10059~^~645~^3.612^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~646~^0.997^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~653~^0.024^4^0.002^~1~^~A~^^^1^0.019^0.029^3^0.018^0.031^~2, 3~^~01/01/2007~ -~10059~^~663~^0.041^4^0.003^~1~^~A~^^^1^0.035^0.046^3^0.033^0.050^~2, 3~^~01/01/2007~ -~10059~^~669~^0.022^4^0.003^~1~^~A~^^^1^0.016^0.030^3^0.012^0.032^~2, 3~^~01/01/2007~ -~10059~^~672~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.031^3^0.026^0.032^~2, 3~^~01/01/2007~ -~10059~^~674~^3.309^4^0.215^~1~^~A~^^^1^2.707^3.725^3^2.625^3.994^~2, 3~^~01/01/2007~ -~10059~^~675~^0.829^4^0.036^~1~^~A~^^^1^0.782^0.934^3^0.714^0.943^~2, 3~^~01/01/2007~ -~10059~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~689~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.006^3^-0.003^0.006^~1, 2, 3~^~01/01/2007~ -~10059~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~10059~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~10059~^~851~^0.037^4^0.005^~1~^~A~^^^1^0.027^0.048^3^0.020^0.053^~2, 3~^~01/01/2007~ -~10060~^~312~^0.090^12^0.005^~1~^~A~^^^1^0.058^0.124^11^0.079^0.101^~2, 3~^~02/01/2007~ -~10060~^~315~^0.015^12^0.001^~1~^~A~^^^1^0.009^0.024^11^0.012^0.017^~2, 3~^~02/01/2007~ -~10060~^~404~^0.998^12^0.093^~1~^~A~^^^1^0.602^1.869^11^0.792^1.203^~2, 3~^~02/01/2007~ -~10060~^~405~^0.342^12^0.027^~1~^~A~^^^1^0.233^0.510^11^0.283^0.401^~2, 3~^~02/01/2007~ -~10060~^~406~^6.684^12^0.330^~1~^~A~^^^1^4.100^8.360^11^5.957^7.411^~2, 3~^~02/01/2007~ -~10060~^~410~^0.846^4^0.061^~1~^~A~^^^1^0.717^1.010^3^0.651^1.041^~2, 3~^~02/01/2007~ -~10060~^~415~^0.777^4^0.041^~1~^~A~^^^1^0.678^0.847^3^0.647^0.906^~2, 3~^~02/01/2007~ -~10060~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~502~^0.940^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~503~^1.031^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~504~^1.784^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~505~^1.943^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~506~^0.577^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~507~^0.242^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~508~^0.881^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~509~^0.797^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~510~^1.095^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~511~^1.394^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~512~^0.905^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~513~^1.230^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~514~^2.049^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~515~^3.344^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~516~^0.944^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~517~^0.847^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~518~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10060~^~521~^0.054^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~10060~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~606~^0.698^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10060~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10060~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~612~^0.022^12^0.002^~1~^~A~^^^1^0.015^0.038^11^0.018^0.026^~2, 3~^~02/01/2007~ -~10060~^~613~^0.432^12^0.030^~1~^~A~^^^1^0.285^0.704^11^0.365^0.499^~2, 3~^~02/01/2007~ -~10060~^~614~^0.241^12^0.015^~1~^~A~^^^1^0.161^0.356^11^0.208^0.274^~2, 3~^~02/01/2007~ -~10060~^~615~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~617~^0.732^12^0.058^~1~^~AS~^^^1^0.495^1.283^11^0.604^0.860^~2, 3~^~02/01/2007~ -~10060~^~618~^0.300^12^0.019^~1~^~AS~^^^1^0.191^0.476^11^0.257^0.342^~2, 3~^~02/01/2007~ -~10060~^~619~^0.008^12^0.001^~1~^~AS~^^^1^0.000^0.014^11^0.005^0.010^~2, 3~^~02/01/2007~ -~10060~^~620~^0.052^12^0.002^~1~^~A~^^^1^0.041^0.069^11^0.047^0.057^~2, 3~^~02/01/2007~ -~10060~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~626~^0.049^12^0.005^~1~^~A~^^^1^0.031^0.091^11^0.039^0.059^~2, 3~^~02/01/2007~ -~10060~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~628~^0.011^12^0.001^~1~^~A~^^^1^0.008^0.018^11^0.010^0.013^~2, 3~^~02/01/2007~ -~10060~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10060~^~645~^0.792^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~646~^0.367^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~653~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.010^11^0.001^0.006^~1, 2, 3~^~02/01/2007~ -~10060~^~663~^0.013^12^0.002^~1~^~A~^^^1^0.000^0.022^11^0.008^0.017^~1, 2, 3~^~02/01/2007~ -~10060~^~669~^0.008^12^0.002^~1~^~A~^^^1^0.000^0.015^11^0.004^0.011^~1, 2, 3~^~02/01/2007~ -~10060~^~672~^0.007^12^0.001^~1~^~A~^^^1^0.000^0.014^11^0.005^0.010^~1, 2, 3~^~02/01/2007~ -~10060~^~674~^0.719^12^0.057^~1~^~A~^^^1^0.495^1.263^11^0.593^0.844^~2, 3~^~02/01/2007~ -~10060~^~675~^0.292^12^0.019^~1~^~A~^^^1^0.184^0.467^11^0.250^0.334^~2, 3~^~02/01/2007~ -~10060~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10060~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10060~^~851~^0.008^12^0.001^~1~^~A~^^^1^0.000^0.014^11^0.005^0.010^~1, 2, 3~^~02/01/2007~ -~10061~^~312~^0.111^12^0.004^~1~^~A~^^^1^0.090^0.129^11^0.103^0.119^~2, 3~^~02/01/2007~ -~10061~^~315~^0.013^12^0.000^~1~^~A~^^^1^0.010^0.015^11^0.012^0.014^~2, 3~^~02/01/2007~ -~10061~^~404~^0.950^12^0.064^~1~^~A~^^^1^0.689^1.461^11^0.809^1.090^~2, 3~^~02/01/2007~ -~10061~^~405~^0.387^12^0.028^~1~^~A~^^^1^0.249^0.549^11^0.326^0.448^~2, 3~^~02/01/2007~ -~10061~^~406~^7.432^12^0.349^~1~^~A~^^^1^5.950^9.030^11^6.665^8.200^~2, 3~^~02/01/2007~ -~10061~^~410~^1.012^4^0.055^~1~^~A~^^^1^0.892^1.140^3^0.838^1.187^~2, 3~^~02/01/2007~ -~10061~^~415~^0.739^4^0.039^~1~^~A~^^^1^0.671^0.809^3^0.616^0.863^~2, 3~^~02/01/2007~ -~10061~^~501~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~502~^1.175^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~503~^1.288^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~504~^2.229^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~505~^2.427^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~506~^0.721^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~507~^0.302^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~508~^1.100^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~509~^0.996^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~510~^1.367^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~511~^1.741^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~512~^1.130^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~513~^1.536^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~514~^2.560^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~515~^4.177^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~516~^1.179^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~517~^1.058^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~518~^1.131^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10061~^~521~^0.067^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~10061~^~605~^0.033^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~606~^1.198^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10061~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10061~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~610~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~612~^0.039^12^0.004^~1~^~A~^^^1^0.024^0.065^11^0.031^0.048^~2, 3~^~02/01/2007~ -~10061~^~613~^0.735^12^0.062^~1~^~A~^^^1^0.455^1.169^11^0.598^0.872^~2, 3~^~02/01/2007~ -~10061~^~614~^0.411^12^0.033^~1~^~A~^^^1^0.260^0.660^11^0.338^0.483^~2, 3~^~02/01/2007~ -~10061~^~615~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.008^11^-0.001^0.003^~1, 2, 3~^~02/01/2007~ -~10061~^~617~^1.234^12^0.108^~1~^~AS~^^^1^0.685^1.964^11^0.995^1.472^~2, 3~^~02/01/2007~ -~10061~^~618~^0.423^12^0.027^~1~^~AS~^^^1^0.332^0.639^11^0.363^0.483^~2, 3~^~02/01/2007~ -~10061~^~619~^0.013^12^0.001^~1~^~AS~^^^1^0.008^0.019^11^0.011^0.015^~2, 3~^~02/01/2007~ -~10061~^~620~^0.057^12^0.005^~1~^~A~^^^1^0.030^0.088^11^0.045^0.068^~2, 3~^~02/01/2007~ -~10061~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~626~^0.080^12^0.008^~1~^~A~^^^1^0.049^0.144^11^0.062^0.099^~2, 3~^~02/01/2007~ -~10061~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~628~^0.020^12^0.002^~1~^~A~^^^1^0.011^0.031^11^0.016^0.023^~2, 3~^~02/01/2007~ -~10061~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10061~^~645~^1.334^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~646~^0.506^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~653~^0.011^12^0.001^~1~^~A~^^^1^0.008^0.018^11^0.009^0.013^~2, 3~^~02/01/2007~ -~10061~^~663~^0.021^12^0.003^~1~^~A~^^^1^0.000^0.039^11^0.014^0.028^~1, 2, 3~^~02/01/2007~ -~10061~^~669~^0.012^12^0.002^~1~^~A~^^^1^0.000^0.023^11^0.008^0.017^~1, 2, 3~^~02/01/2007~ -~10061~^~672~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.017^11^0.011^0.015^~2, 3~^~02/01/2007~ -~10061~^~674~^1.213^12^0.109^~1~^~A~^^^1^0.672^1.939^11^0.974^1.451^~2, 3~^~02/01/2007~ -~10061~^~675~^0.411^12^0.028^~1~^~A~^^^1^0.315^0.631^11^0.350^0.473^~2, 3~^~02/01/2007~ -~10061~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10061~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10061~^~851~^0.013^12^0.001^~1~^~A~^^^1^0.008^0.019^11^0.011^0.015^~2, 3~^~02/01/2007~ -~10062~^~312~^0.056^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~404~^0.667^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~405~^0.185^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~406~^7.988^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~410~^0.727^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~415~^0.726^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~501~^0.227^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~502~^0.968^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~503~^1.060^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~504~^1.836^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~505~^1.999^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~506~^0.594^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~507~^0.249^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~508~^0.906^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~509~^0.820^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~510~^1.126^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~511~^1.434^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~512~^0.931^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~513~^1.265^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~514~^2.108^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~515~^3.441^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~516~^0.971^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~517~^0.871^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~518~^0.932^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~521~^0.055^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~605~^0.064^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~606~^2.450^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~612~^0.088^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~613~^1.523^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~614~^0.805^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~617~^2.771^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~618~^0.763^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~619~^0.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~620~^0.051^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~626~^0.166^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~628~^0.047^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~645~^2.985^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~646~^0.878^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~653~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~663~^0.044^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~669~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~672~^0.027^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~674~^2.727^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~675~^0.743^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~689~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~693~^0.044^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10062~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10062~^~851~^0.032^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10063~^~312~^0.089^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~404~^0.526^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~405~^0.238^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~406~^9.905^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~410~^1.030^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~415~^0.537^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~501~^0.348^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~502~^1.284^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~503~^1.383^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~504~^2.403^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~505~^2.597^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~506~^0.800^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~507~^0.329^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~508~^1.213^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~509~^1.157^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~510~^1.477^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~511~^1.881^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~512~^1.188^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~513~^1.672^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~514~^2.731^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~515~^4.460^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~516~^1.320^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~517~^1.181^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~518~^1.219^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~521~^0.102^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~605~^0.048^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~606~^3.218^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~612~^0.114^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~613~^1.961^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~614~^1.078^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~617~^3.375^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~618~^1.135^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~619~^0.048^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~620~^0.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~626~^0.191^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~628~^0.058^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~631~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~645~^3.625^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~646~^1.290^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~653~^0.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~663~^0.038^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~665~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~672~^0.044^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~674~^3.337^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~675~^1.129^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~693~^0.038^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~695~^0.010^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10063~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~851~^0.044^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10063~^~856~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10064~^~312~^0.081^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~404~^0.636^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~405~^0.190^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~406~^8.242^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~410~^0.680^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~415~^0.696^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~501~^0.280^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~502~^1.195^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~503~^1.310^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~504~^2.268^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~505~^2.469^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~506~^0.733^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~507~^0.307^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~508~^1.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~509~^1.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~510~^1.391^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~511~^1.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~512~^1.150^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~513~^1.563^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~514~^2.604^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~515~^4.250^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~516~^1.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~517~^1.076^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~518~^1.151^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~521~^0.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~605~^0.086^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~606~^3.164^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~612~^0.115^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~613~^1.969^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~614~^1.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~617~^3.611^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~618~^0.907^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~619~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~620~^0.064^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~626~^0.224^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~628~^0.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10064~^~645~^3.904^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~646~^1.048^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~653~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~663~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~669~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~672~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~674~^3.555^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~675~^0.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10064~^~687~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~689~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~693~^0.056^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~695~^0.030^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10064~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10064~^~851~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~312~^0.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~404~^0.547^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~405~^0.232^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~406~^7.104^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~410~^0.674^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~415~^0.692^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~501~^0.278^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~502~^1.188^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~503~^1.302^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~504~^2.253^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~505~^2.453^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~506~^0.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~507~^0.305^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~508~^1.112^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~509~^1.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~510~^1.382^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~511~^1.760^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~512~^1.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~513~^1.553^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~514~^2.587^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~515~^4.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~516~^1.192^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~517~^1.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~518~^1.144^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~521~^0.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~605~^0.079^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~606~^2.839^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~612~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~613~^1.756^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~614~^0.937^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~617~^3.263^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~618~^0.871^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~619~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~620~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~626~^0.191^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10065~^~645~^3.517^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~646~^0.999^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~653~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~663~^0.051^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~669~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~672~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~674~^3.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~675~^0.843^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~687~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10065~^~693~^0.051^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~695~^0.028^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10065~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10065~^~851~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10066~^~312~^0.057^12^0.004^~1~^~A~^^^1^0.036^0.084^11^0.047^0.067^~2, 3~^~02/01/2007~ -~10066~^~315~^0.008^12^0.001^~1~^~A~^^^1^0.006^0.016^11^0.006^0.010^~1, 2, 3~^~02/01/2007~ -~10066~^~404~^0.693^12^0.055^~1~^~A~^^^1^0.475^1.230^11^0.572^0.814^~2, 3~^~02/01/2007~ -~10066~^~405~^0.190^12^0.011^~1~^~A~^^^1^0.146^0.274^11^0.167^0.214^~2, 3~^~02/01/2007~ -~10066~^~406~^8.265^12^0.504^~1~^~A~^^^1^5.600^10.300^11^7.155^9.374^~2, 3~^~02/01/2007~ -~10066~^~410~^0.746^4^0.059^~1~^~A~^^^1^0.615^0.870^3^0.557^0.935^~2, 3~^~02/01/2007~ -~10066~^~415~^0.756^4^0.038^~1~^~A~^^^1^0.708^0.868^3^0.636^0.876^~2, 3~^~02/01/2007~ -~10066~^~501~^0.236^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~502~^1.006^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~503~^1.103^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~504~^1.910^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~505~^2.079^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~506~^0.617^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~507~^0.259^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~508~^0.942^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~509~^0.853^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~510~^1.171^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~511~^1.491^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~512~^0.968^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~513~^1.316^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~514~^2.193^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~515~^3.578^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~516~^1.010^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~517~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~518~^0.969^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10066~^~521~^0.058^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10066~^~605~^0.024^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~606~^1.208^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10066~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10066~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~610~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.009^11^-0.001^0.002^~1, 2, 3~^~02/01/2007~ -~10066~^~611~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.008^11^-0.001^0.002^~1, 2, 3~^~02/01/2007~ -~10066~^~612~^0.044^12^0.009^~1~^~A~^^^1^0.011^0.137^11^0.024^0.065^~2, 3~^~02/01/2007~ -~10066~^~613~^0.772^12^0.152^~1~^~A~^^^1^0.280^2.297^11^0.439^1.106^~2, 3~^~02/01/2007~ -~10066~^~614~^0.384^12^0.078^~1~^~A~^^^1^0.149^1.185^11^0.212^0.557^~2, 3~^~02/01/2007~ -~10066~^~615~^0.002^12^0.002^~1~^~A~^^^1^0.000^0.018^11^-0.001^0.006^~1, 2, 3~^~02/01/2007~ -~10066~^~617~^1.421^12^0.265^~1~^~AS~^^^1^0.488^4.053^11^0.836^2.005^~2, 3~^~02/01/2007~ -~10066~^~618~^0.300^12^0.047^~1~^~AS~^^^1^0.126^0.732^11^0.196^0.404^~2, 3~^~02/01/2007~ -~10066~^~619~^0.011^12^0.002^~1~^~AS~^^^1^0.000^0.028^11^0.006^0.016^~2, 3~^~02/01/2007~ -~10066~^~620~^0.045^12^0.002^~1~^~A~^^^1^0.034^0.060^11^0.041^0.050^~2, 3~^~02/01/2007~ -~10066~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~626~^0.102^12^0.017^~1~^~A~^^^1^0.032^0.259^11^0.065^0.138^~2, 3~^~02/01/2007~ -~10066~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~628~^0.023^12^0.005^~1~^~A~^^^1^0.007^0.076^11^0.012^0.035^~2, 3~^~02/01/2007~ -~10066~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10066~^~645~^1.546^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~646~^0.366^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~653~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.013^11^0.001^0.007^~1, 2, 3~^~02/01/2007~ -~10066~^~663~^0.017^12^0.004^~1~^~A~^^^1^0.000^0.045^11^0.008^0.027^~1, 2, 3~^~02/01/2007~ -~10066~^~669~^0.007^12^0.002^~1~^~A~^^^1^0.000^0.020^11^0.002^0.012^~1, 2, 3~^~02/01/2007~ -~10066~^~672~^0.009^12^0.003^~1~^~A~^^^1^0.000^0.036^11^0.003^0.016^~1, 2, 3~^~02/01/2007~ -~10066~^~674~^1.403^12^0.263^~1~^~A~^^^1^0.481^4.009^11^0.825^1.982^~2, 3~^~02/01/2007~ -~10066~^~675~^0.293^12^0.045^~1~^~A~^^^1^0.126^0.713^11^0.194^0.393^~2, 3~^~02/01/2007~ -~10066~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10066~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10066~^~851~^0.011^12^0.002^~1~^~A~^^^1^0.000^0.028^11^0.006^0.016^~1, 2, 3~^~02/01/2007~ -~10067~^~312~^0.087^6^0.008^~1~^~A~^^^1^0.074^0.127^5^0.066^0.108^~2, 3~^~04/01/2010~ -~10067~^~315~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^5^0.008^0.012^~2, 3~^~04/01/2010~ -~10067~^~404~^0.545^6^0.043^~1~^~A~^^^1^0.413^0.681^5^0.435^0.655^~2, 3~^~04/01/2010~ -~10067~^~405~^0.245^6^0.010^~1~^~A~^^^1^0.210^0.270^5^0.219^0.271^~2, 3~^~04/01/2010~ -~10067~^~406~^10.263^6^0.351^~1~^~A~^^^1^9.530^11.500^5^9.362^11.165^~2, 3~^~04/01/2010~ -~10067~^~410~^1.054^0^^~4~^~BFPN~^~10033~^^^^^^^^^~04/01/2010~ -~10067~^~415~^0.561^0^^~4~^~BFPN~^~10033~^^^^^^^^^~04/01/2010~ -~10067~^~501~^0.363^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~502~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~503~^1.446^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~504~^2.513^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~505~^2.716^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~506~^0.837^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~507~^0.344^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~508~^1.269^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~509~^1.210^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~510~^1.545^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~511~^1.968^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~512~^1.242^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~513~^1.749^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~514~^2.856^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~515~^4.665^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~516~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~517~^1.235^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~518~^1.275^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10067~^~521~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10067~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~606~^1.657^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10067~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10067~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.001^~1, 2, 3~^~04/01/2010~ -~10067~^~610~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.005^~2, 3~^~04/01/2010~ -~10067~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2010~ -~10067~^~612~^0.059^6^0.002^~1~^~A~^^^1^0.050^0.066^5^0.053^0.065^~2, 3~^~04/01/2010~ -~10067~^~613~^1.015^6^0.029^~1~^~A~^^^1^0.933^1.100^5^0.942^1.088^~2, 3~^~04/01/2010~ -~10067~^~614~^0.552^6^0.017^~1~^~A~^^^1^0.489^0.586^5^0.508^0.595^~2, 3~^~04/01/2010~ -~10067~^~615~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~04/01/2010~ -~10067~^~617~^1.785^6^0.065^~1~^~AS~^^^1^1.625^2.064^5^1.618^1.952^~2, 3~^~04/01/2010~ -~10067~^~618~^0.468^6^0.022^~1~^~AS~^^^1^0.408^0.538^5^0.411^0.525^~2, 3~^~04/01/2010~ -~10067~^~619~^0.017^6^0.001^~1~^~AS~^^^1^0.014^0.019^5^0.016^0.019^~2, 3~^~04/01/2010~ -~10067~^~620~^0.044^6^0.002^~1~^~A~^^^1^0.037^0.051^5^0.039^0.049^~2, 3~^~04/01/2010~ -~10067~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~626~^0.120^6^0.008^~1~^~A~^^^1^0.099^0.147^5^0.100^0.140^~2, 3~^~04/01/2010~ -~10067~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~628~^0.029^6^0.001^~1~^~A~^^^1^0.025^0.035^5^0.025^0.033^~2, 3~^~04/01/2010~ -~10067~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~10067~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2010~ -~10067~^~645~^1.934^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~646~^0.551^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.002^~2, 3~^~04/01/2010~ -~10067~^~653~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.009^0.013^~2, 3~^~04/01/2010~ -~10067~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~663~^0.015^6^0.004^~1~^~A~^^^1^0.003^0.031^5^0.005^0.024^~2, 3~^~04/01/2010~ -~10067~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~672~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.021^5^0.016^0.019^~2, 3~^~04/01/2010~ -~10067~^~674~^1.770^6^0.065^~1~^~A~^^^1^1.610^2.050^5^1.602^1.938^~2, 3~^~04/01/2010~ -~10067~^~675~^0.468^6^0.022^~1~^~A~^^^1^0.408^0.538^5^0.411^0.525^~2, 3~^~04/01/2010~ -~10067~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~10067~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10067~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10067~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10067~^~851~^0.016^6^0.001^~1~^~A~^^^1^0.013^0.019^5^0.014^0.019^~2, 3~^~04/01/2010~ -~10067~^~856~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10068~^~312~^0.083^12^0.012^~1~^~A~^^^1^0.052^0.185^11^0.057^0.109^~2, 3~^~02/01/2007~ -~10068~^~315~^0.007^12^0.001^~1~^~A~^^^1^0.006^0.013^11^0.006^0.009^~1, 2, 3~^~02/01/2007~ -~10068~^~404~^0.658^12^0.058^~1~^~A~^^^1^0.480^1.219^11^0.531^0.785^~2, 3~^~02/01/2007~ -~10068~^~405~^0.195^12^0.019^~1~^~A~^^^1^0.136^0.371^11^0.152^0.237^~2, 3~^~02/01/2007~ -~10068~^~406~^8.512^12^0.551^~1~^~A~^^^1^5.360^10.900^11^7.300^9.725^~2, 3~^~02/01/2007~ -~10068~^~410~^0.692^4^0.032^~1~^~A~^^^1^0.652^0.785^3^0.592^0.793^~2, 3~^~02/01/2007~ -~10068~^~415~^0.722^4^0.033^~1~^~A~^^^1^0.656^0.789^3^0.616^0.829^~2, 3~^~02/01/2007~ -~10068~^~501~^0.290^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~502~^1.238^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~503~^1.357^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~504~^2.349^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~505~^2.558^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~506~^0.759^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~507~^0.318^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~508~^1.159^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~509~^1.049^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~510~^1.441^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~511~^1.835^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~512~^1.191^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~513~^1.619^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~514~^2.698^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~515~^4.402^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~516~^1.243^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~517~^1.115^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~518~^1.192^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10068~^~521~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10068~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~606~^2.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~610~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.011^11^0.000^0.006^~1, 2, 3~^~02/01/2007~ -~10068~^~611~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.009^11^0.000^0.004^~1, 2, 3~^~02/01/2007~ -~10068~^~612~^0.077^12^0.010^~1~^~A~^^^1^0.039^0.141^11^0.056^0.098^~2, 3~^~02/01/2007~ -~10068~^~613~^1.317^12^0.153^~1~^~A~^^^1^0.740^2.305^11^0.980^1.655^~2, 3~^~02/01/2007~ -~10068~^~614~^0.658^12^0.079^~1~^~A~^^^1^0.369^1.169^11^0.484^0.832^~2, 3~^~02/01/2007~ -~10068~^~615~^0.009^12^0.002^~1~^~A~^^^1^0.000^0.018^11^0.006^0.013^~1, 2, 3~^~02/01/2007~ -~10068~^~617~^2.437^12^0.268^~1~^~AS~^^^1^1.459^4.081^11^1.848^3.026^~2, 3~^~02/01/2007~ -~10068~^~618~^0.508^12^0.051^~1~^~AS~^^^1^0.303^0.862^11^0.396^0.619^~2, 3~^~02/01/2007~ -~10068~^~619~^0.020^12^0.002^~1~^~AS~^^^1^0.010^0.036^11^0.015^0.025^~2, 3~^~02/01/2007~ -~10068~^~620~^0.059^12^0.003^~1~^~A~^^^1^0.042^0.076^11^0.052^0.066^~2, 3~^~02/01/2007~ -~10068~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~626~^0.171^12^0.020^~1~^~A~^^^1^0.084^0.275^11^0.127^0.214^~2, 3~^~02/01/2007~ -~10068~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~628~^0.040^12^0.005^~1~^~A~^^^1^0.021^0.078^11^0.029^0.052^~2, 3~^~02/01/2007~ -~10068~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10068~^~645~^2.651^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~646~^0.605^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~652~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~653~^0.011^12^0.001^~1~^~A~^^^1^0.000^0.017^11^0.008^0.014^~1, 2, 3~^~02/01/2007~ -~10068~^~663~^0.033^12^0.007^~1~^~A~^^^1^0.010^0.083^11^0.017^0.049^~2, 3~^~02/01/2007~ -~10068~^~669~^0.019^12^0.005^~1~^~A~^^^1^0.000^0.047^11^0.008^0.030^~1, 2, 3~^~02/01/2007~ -~10068~^~672~^0.019^12^0.002^~1~^~A~^^^1^0.011^0.039^11^0.013^0.024^~2, 3~^~02/01/2007~ -~10068~^~674~^2.405^12^0.267^~1~^~A~^^^1^1.448^4.031^11^1.817^2.992^~2, 3~^~02/01/2007~ -~10068~^~675~^0.488^12^0.047^~1~^~A~^^^1^0.303^0.828^11^0.385^0.591^~2, 3~^~02/01/2007~ -~10068~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~687~^0.003^12^0.002^~1~^~A~^^^1^0.000^0.018^11^-0.001^0.007^~1, 2, 3~^~02/01/2007~ -~10068~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10068~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10068~^~851~^0.020^12^0.002^~1~^~A~^^^1^0.010^0.036^11^0.015^0.025^~2, 3~^~02/01/2007~ -~10069~^~312~^0.079^12^0.005^~1~^~A~^^^1^0.063^0.104^11^0.069^0.089^~2, 3~^~03/01/2007~ -~10069~^~315~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.010^11^0.006^0.008^~1, 2, 3~^~03/01/2007~ -~10069~^~404~^0.561^4^0.043^~1~^~A~^^^1^0.495^0.686^3^0.425^0.697^~2, 3~^~03/01/2007~ -~10069~^~405~^0.237^4^0.019^~1~^~A~^^^1^0.204^0.277^3^0.176^0.299^~2, 3~^~03/01/2007~ -~10069~^~406~^7.277^4^0.371^~1~^~A~^^^1^6.400^8.210^3^6.097^8.458^~2, 3~^~03/01/2007~ -~10069~^~410~^0.684^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~415~^0.713^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~ -~10069~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~502~^1.223^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~503~^1.340^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~504~^2.320^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~505~^2.525^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~506~^0.750^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~508~^1.145^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~509~^1.036^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~510~^1.423^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~511~^1.812^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~512~^1.176^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~513~^1.598^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~514~^2.664^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~515~^4.347^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~516~^1.227^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~517~^1.101^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~518~^1.177^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10069~^~521~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10069~^~605~^0.051^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~606~^1.927^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10069~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~610~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~03/01/2007~ -~10069~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~612~^0.069^4^0.007^~1~^~A~^^^1^0.057^0.088^3^0.048^0.090^~2, 3~^~03/01/2007~ -~10069~^~613~^1.208^4^0.136^~1~^~A~^^^1^0.959^1.581^3^0.776^1.641^~2, 3~^~03/01/2007~ -~10069~^~614~^0.625^4^0.064^~1~^~A~^^^1^0.516^0.799^3^0.420^0.830^~2, 3~^~03/01/2007~ -~10069~^~615~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.013^3^0.006^0.013^~2, 3~^~03/01/2007~ -~10069~^~617~^2.279^4^0.305^~1~^~AS~^^^1^1.707^3.126^3^1.308^3.250^~2, 3~^~03/01/2007~ -~10069~^~618~^0.539^4^0.083^~1~^~AS~^^^1^0.410^0.778^3^0.274^0.805^~2, 3~^~03/01/2007~ -~10069~^~619~^0.020^4^0.004^~1~^~AS~^^^1^0.014^0.031^3^0.008^0.032^~2, 3~^~03/01/2007~ -~10069~^~620~^0.052^4^0.001^~1~^~A~^^^1^0.050^0.054^3^0.050^0.055^~2, 3~^~03/01/2007~ -~10069~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~626~^0.145^4^0.015^~1~^~A~^^^1^0.120^0.186^3^0.099^0.191^~2, 3~^~03/01/2007~ -~10069~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~628~^0.038^4^0.006^~1~^~A~^^^1^0.028^0.053^3^0.020^0.056^~2, 3~^~03/01/2007~ -~10069~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10069~^~645~^2.464^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~646~^0.631^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~653~^0.013^4^0.002^~1~^~A~^^^1^0.010^0.018^3^0.007^0.019^~2, 3~^~03/01/2007~ -~10069~^~663~^0.032^4^0.011^~1~^~A~^^^1^0.015^0.064^3^-0.004^0.068^~2, 3~^~03/01/2007~ -~10069~^~669~^0.019^4^0.004^~1~^~A~^^^1^0.014^0.030^3^0.007^0.031^~2, 3~^~03/01/2007~ -~10069~^~672~^0.019^4^0.003^~1~^~A~^^^1^0.014^0.028^3^0.010^0.029^~2, 3~^~03/01/2007~ -~10069~^~674~^2.247^4^0.295^~1~^~A~^^^1^1.692^3.062^3^1.308^3.186^~2, 3~^~03/01/2007~ -~10069~^~675~^0.520^4^0.080^~1~^~A~^^^1^0.395^0.748^3^0.267^0.774^~2, 3~^~03/01/2007~ -~10069~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~687~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 2, 3~^~03/01/2007~ -~10069~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10069~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10069~^~851~^0.020^4^0.004^~1~^~A~^^^1^0.014^0.031^3^0.008^0.032^~2, 3~^~03/01/2007~ -~10070~^~312~^0.084^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~404~^0.767^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~405~^0.275^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~406~^3.833^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~410~^0.719^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~415~^0.348^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~501~^0.208^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~502~^0.768^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~503~^0.781^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~504~^1.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~505~^1.531^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~506~^0.441^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~507~^0.214^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~508~^0.681^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~509~^0.579^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~510~^0.921^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~511~^1.098^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~512~^0.656^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~513~^1.015^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~514~^1.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~515~^2.614^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~516~^0.952^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~517~^0.765^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~518~^0.709^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~606~^6.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10070~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10070~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~612~^0.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~613~^3.880^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~614~^2.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~617~^7.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~618~^1.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~619~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~620~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~626~^0.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~628~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10070~^~645~^8.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10070~^~646~^1.920^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~312~^0.113^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~315~^0.022^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~404~^0.581^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~405~^0.329^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~406~^3.991^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~410~^0.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~415~^0.288^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~501~^0.278^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~502~^1.036^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~503~^1.051^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~504~^1.837^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~505~^2.071^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~506~^0.593^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~507~^0.288^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~508~^0.921^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~509~^0.778^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~510~^1.244^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~511~^1.498^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~512~^0.879^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~513~^1.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~514~^2.114^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~515~^3.518^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~516~^1.333^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~517~^1.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~518~^0.961^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~606~^7.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10071~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10071~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~612~^0.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~613~^4.830^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~614~^2.590^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~617~^8.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~618~^1.820^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~619~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~626~^0.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~628~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10071~^~645~^9.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10071~^~646~^2.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~312~^0.097^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~404~^0.884^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~405~^0.314^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~406~^4.275^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~410~^0.822^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~415~^0.415^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~501~^0.248^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~502~^0.893^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~503~^0.915^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~504~^1.568^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~505~^1.758^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~506~^0.518^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~507~^0.249^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~508~^0.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~509~^0.681^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~510~^1.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~511~^1.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~512~^0.781^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~513~^1.139^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~514~^1.813^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~515~^3.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~516~^0.928^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~517~^0.785^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~518~^0.807^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~606~^2.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~612~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~613~^1.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~614~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~617~^2.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~618~^0.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~619~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~620~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~626~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~628~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~645~^3.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10072~^~646~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~312~^0.124^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~315~^0.026^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~404~^0.628^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~405~^0.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~406~^4.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~410~^0.651^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~415~^0.317^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~501~^0.322^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~502~^1.157^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~503~^1.186^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~504~^2.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~505~^2.278^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~506~^0.671^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~507~^0.323^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~508~^1.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~509~^0.883^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~510~^1.374^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~511~^1.575^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~512~^1.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~513~^1.476^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~514~^2.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~515~^3.965^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~516~^1.203^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~517~^1.018^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~518~^1.046^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~606~^4.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10073~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10073~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~612~^0.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~613~^2.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~614~^1.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~617~^5.590^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~618~^1.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~626~^0.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~628~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10073~^~645~^6.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10073~^~646~^1.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10074~^~312~^0.072^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~404~^0.585^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~405~^0.246^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~406~^4.518^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~410~^1.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~415~^0.440^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~501~^0.223^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~502~^0.823^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~503~^0.886^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~504~^1.540^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~505~^1.664^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~506~^0.513^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~507~^0.211^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~508~^0.777^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~509~^0.741^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~510~^0.946^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~511~^1.205^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~512~^0.761^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~513~^1.071^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~514~^1.750^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~515~^2.858^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~516~^0.845^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~517~^0.756^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~518~^0.781^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~521~^0.065^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~605~^0.123^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~606~^4.140^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~612~^0.154^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~613~^2.581^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~614~^1.329^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~617~^5.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~618~^2.182^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~619~^0.102^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~620~^0.084^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~626~^0.262^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~628~^0.088^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~631~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~645~^5.367^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~646~^2.474^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~653~^0.039^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~663~^0.103^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~665~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~672~^0.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~674~^4.911^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~675~^2.162^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~693~^0.103^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10074~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~851~^0.098^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10074~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~312~^0.107^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~404~^0.439^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~405~^0.322^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~406~^5.308^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~410~^1.197^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~415~^0.346^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~501~^0.296^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~502~^1.094^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~503~^1.178^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~504~^2.048^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~505~^2.213^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~506~^0.682^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~508~^1.034^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~509~^0.986^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~510~^1.259^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~511~^1.603^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~512~^1.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~513~^1.425^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~514~^2.327^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~515~^3.801^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~516~^1.125^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~517~^1.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~518~^1.039^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~521~^0.087^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~605~^0.181^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~606~^4.854^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10075~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10075~^~612~^0.175^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~613~^3.032^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~614~^1.549^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~617~^5.768^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~618~^2.450^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~619~^0.110^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~620~^0.095^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~626~^0.302^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10075~^~628~^0.101^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10075~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10075~^~631~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~645~^6.173^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~646~^2.783^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~652~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~653~^0.049^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~663~^0.154^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~665~^0.027^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~672~^0.095^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~674~^5.614^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~675~^2.423^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~689~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~693~^0.154^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~695~^0.027^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10075~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~851~^0.108^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10075~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10076~^~312~^0.111^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~315~^0.033^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~404~^0.522^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~405~^0.302^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~406~^3.918^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~410~^0.532^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~415~^0.348^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~501~^0.273^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~502~^1.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~503~^1.042^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~504~^1.838^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~505~^2.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~506~^0.587^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~507~^0.286^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~508~^0.924^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~509~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~510~^1.246^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~511~^1.531^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~512~^0.864^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~513~^1.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~514~^2.112^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~515~^3.492^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~516~^1.439^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~517~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~518~^0.969^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~606~^8.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~612~^0.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~613~^5.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~614~^2.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~617~^9.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~618~^2.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~619~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~620~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~626~^0.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~628~^0.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~645~^10.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10076~^~646~^2.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10077~^~312~^0.073^6^0.003^~1~^~A~^^^1^0.065^0.080^5^0.067^0.079^~2, 3~^~01/01/2011~ -~10077~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.012^5^0.011^0.012^~2, 3~^~01/01/2011~ -~10077~^~404~^0.655^6^0.218^~1~^~A~^^^1^0.290^1.720^5^0.095^1.215^~2, 3~^~01/01/2011~ -~10077~^~405~^0.272^6^0.018^~1~^~A~^^^1^0.220^0.330^5^0.225^0.319^~2, 3~^~01/01/2011~ -~10077~^~406~^4.828^6^0.279^~1~^~A~^^^1^3.770^5.900^5^4.111^5.546^~2, 3~^~01/01/2011~ -~10077~^~410~^1.113^6^0.114^~1~^~A~^^^1^0.880^1.640^5^0.821^1.405^~2, 3~^~01/01/2011~ -~10077~^~415~^0.489^6^0.037^~1~^~A~^^^1^0.432^0.670^5^0.393^0.585^~2, 3~^~01/01/2011~ -~10077~^~501~^0.241^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~502~^0.891^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~503~^0.959^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~504~^1.668^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~505~^1.802^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~506~^0.555^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~508~^0.842^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~509~^0.803^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~510~^1.025^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~511~^1.306^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~512~^0.824^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~513~^1.161^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~514~^1.895^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~515~^3.095^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~516~^0.916^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~517~^0.819^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~518~^0.846^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~521~^0.071^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10077~^~605~^0.045^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~606~^1.206^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10077~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~612~^0.043^6^0.004^~1~^~A~^^^1^0.025^0.055^5^0.032^0.054^~2, 3~^~01/01/2011~ -~10077~^~613~^0.769^6^0.066^~1~^~A~^^^1^0.475^0.940^5^0.599^0.939^~2, 3~^~01/01/2011~ -~10077~^~614~^0.385^6^0.029^~1~^~A~^^^1^0.256^0.448^5^0.311^0.459^~2, 3~^~01/01/2011~ -~10077~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~617~^1.520^6^0.130^~1~^~AS~^^^1^0.967^1.869^5^1.185^1.854^~2, 3~^~01/01/2011~ -~10077~^~618~^0.595^6^0.052^~1~^~AS~^^^1^0.473^0.794^5^0.462^0.727^~2, 3~^~01/01/2011~ -~10077~^~619~^0.022^6^0.004^~1~^~AS~^^^1^0.010^0.036^5^0.012^0.031^~2, 3~^~01/01/2011~ -~10077~^~620~^0.067^6^0.003^~1~^~A~^^^1^0.058^0.079^5^0.059^0.075^~2, 3~^~01/01/2011~ -~10077~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~626~^0.094^6^0.013^~1~^~A~^^^1^0.045^0.128^5^0.062^0.127^~2, 3~^~01/01/2011~ -~10077~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~628~^0.024^6^0.003^~1~^~A~^^^1^0.013^0.031^5^0.017^0.031^~2, 3~^~01/01/2011~ -~10077~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10077~^~631~^0.007^6^0.002^~1~^~A~^^^1^0.000^0.010^5^0.001^0.012^~1, 2, 3~^~01/01/2011~ -~10077~^~645~^1.638^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~646~^0.712^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~653~^0.009^6^0.002^~1~^~A~^^^1^0.000^0.016^5^0.004^0.015^~1, 2, 3~^~01/01/2011~ -~10077~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~663~^0.043^6^0.005^~1~^~A~^^^1^0.024^0.052^5^0.032^0.055^~2, 3~^~01/01/2011~ -~10077~^~665~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.008^5^-0.002^0.005^~1, 2, 3~^~01/01/2011~ -~10077~^~672~^0.022^6^0.002^~1~^~A~^^^1^0.018^0.027^5^0.018^0.026^~2, 3~^~01/01/2011~ -~10077~^~674~^1.476^6^0.132^~1~^~A~^^^1^0.918^1.820^5^1.138^1.815^~2, 3~^~01/01/2011~ -~10077~^~675~^0.593^6^0.051^~1~^~A~^^^1^0.473^0.786^5^0.463^0.723^~2, 3~^~01/01/2011~ -~10077~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~693~^0.043^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10077~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10077~^~851~^0.022^6^0.004^~1~^~A~^^^1^0.010^0.036^5^0.012^0.031^~2, 3~^~01/01/2011~ -~10077~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~312~^0.109^6^0.006^~1~^~A~^^^1^0.093^0.131^5^0.094^0.124^~2, 3~^~01/01/2011~ -~10078~^~315~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.028^5^0.020^0.027^~2, 3~^~01/01/2011~ -~10078~^~404~^0.463^6^0.051^~1~^~A~^^^1^0.340^0.650^5^0.331^0.595^~2, 3~^~01/01/2011~ -~10078~^~405~^0.335^6^0.024^~1~^~A~^^^1^0.260^0.400^5^0.272^0.398^~2, 3~^~01/01/2011~ -~10078~^~406~^5.538^6^0.232^~1~^~A~^^^1^4.970^6.240^5^4.942^6.135^~2, 3~^~01/01/2011~ -~10078~^~410~^1.270^6^0.098^~1~^~A~^^^1^0.870^1.620^5^1.019^1.521^~2, 3~^~01/01/2011~ -~10078~^~415~^0.362^6^0.025^~1~^~A~^^^1^0.298^0.423^5^0.297^0.427^~2, 3~^~01/01/2011~ -~10078~^~501~^0.319^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~502~^1.177^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~503~^1.267^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~504~^2.203^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~505~^2.380^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~506~^0.734^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~507~^0.302^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~508~^1.112^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~509~^1.060^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~510~^1.354^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~511~^1.724^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~512~^1.089^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~513~^1.533^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~514~^2.503^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~515~^4.088^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~516~^1.209^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~517~^1.082^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~518~^1.118^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~521~^0.093^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10078~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~606~^2.850^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10078~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10078~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10078~^~610~^0.004^6^0.003^~1~^~A~^^^1^0.000^0.013^5^-0.003^0.011^~1, 2, 3~^~01/01/2011~ -~10078~^~611~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.009^5^0.001^0.010^~1, 2, 3~^~01/01/2011~ -~10078~^~612~^0.100^6^0.013^~1~^~A~^^^1^0.056^0.142^5^0.066^0.133^~2, 3~^~01/01/2011~ -~10078~^~613~^1.780^6^0.220^~1~^~A~^^^1^1.110^2.610^5^1.216^2.344^~2, 3~^~01/01/2011~ -~10078~^~614~^0.915^6^0.109^~1~^~A~^^^1^0.632^1.270^5^0.635^1.195^~2, 3~^~01/01/2011~ -~10078~^~615~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.018^5^0.011^0.018^~2, 3~^~01/01/2011~ -~10078~^~617~^3.520^6^0.478^~1~^~AS~^^^1^2.161^5.395^5^2.291^4.748^~2, 3~^~01/01/2011~ -~10078~^~618~^1.613^6^0.150^~1~^~AS~^^^1^1.242^2.123^5^1.228^1.997^~2, 3~^~01/01/2011~ -~10078~^~619~^0.076^6^0.007^~1~^~AS~^^^1^0.056^0.097^5^0.057^0.094^~2, 3~^~01/01/2011~ -~10078~^~620~^0.086^6^0.006^~1~^~A~^^^1^0.069^0.103^5^0.072^0.100^~2, 3~^~01/01/2011~ -~10078~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10078~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~626~^0.188^6^0.035^~1~^~A~^^^1^0.095^0.306^5^0.099^0.276^~2, 3~^~01/01/2011~ -~10078~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10078~^~628~^0.059^6^0.008^~1~^~A~^^^1^0.037^0.085^5^0.039^0.079^~2, 3~^~01/01/2011~ -~10078~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10078~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~10078~^~631~^0.013^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.012^0.014^~2, 3~^~01/01/2011~ -~10078~^~645~^3.767^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~646~^1.859^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~652~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.002^0.007^~1, 2, 3~^~01/01/2011~ -~10078~^~653~^0.029^6^0.003^~1~^~A~^^^1^0.019^0.037^5^0.021^0.037^~2, 3~^~01/01/2011~ -~10078~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~663~^0.130^6^0.013^~1~^~A~^^^1^0.091^0.182^5^0.097^0.162^~2, 3~^~01/01/2011~ -~10078~^~665~^0.021^6^0.005^~1~^~A~^^^1^0.012^0.043^5^0.009^0.033^~2, 3~^~01/01/2011~ -~10078~^~672~^0.061^6^0.006^~1~^~A~^^^1^0.046^0.080^5^0.046^0.076^~2, 3~^~01/01/2011~ -~10078~^~674~^3.390^6^0.473^~1~^~A~^^^1^2.070^5.270^5^2.175^4.605^~2, 3~^~01/01/2011~ -~10078~^~675~^1.592^6^0.147^~1~^~A~^^^1^1.230^2.080^5^1.214^1.969^~2, 3~^~01/01/2011~ -~10078~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~689~^0.011^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.008^0.013^~2, 3~^~01/01/2011~ -~10078~^~693~^0.130^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10078~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10078~^~851~^0.076^6^0.007^~1~^~A~^^^1^0.056^0.097^5^0.057^0.094^~2, 3~^~01/01/2011~ -~10078~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10079~^~312~^0.128^12^0.008^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~315~^0.041^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~404~^0.578^12^0.049^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~405~^0.357^12^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~406~^4.314^12^0.135^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~410~^0.592^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~415~^0.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~501~^0.339^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~502~^1.218^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~503~^1.249^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~504~^2.141^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~505~^2.399^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~506~^0.706^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~507~^0.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~508~^1.065^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~509~^0.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~510~^1.447^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~511~^1.659^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~512~^1.066^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~513~^1.554^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~514~^2.475^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~515~^4.176^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~516~^1.267^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~517~^1.072^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~518~^1.102^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~606~^4.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~610~^0.000^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~611~^0.000^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~612~^0.140^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~613~^2.700^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~614~^1.360^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~617~^5.440^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~618~^1.040^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~619~^0.030^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~620~^0.080^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~626~^0.350^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~628~^0.130^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~645~^5.980^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10079~^~646~^1.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10080~^~312~^0.096^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~404~^0.520^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~405~^0.353^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~406~^4.239^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~410~^1.447^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~415~^0.486^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~501~^0.183^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~502~^0.782^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~503~^0.857^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~504~^1.484^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~505~^1.615^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~506~^0.480^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~507~^0.201^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~508~^0.732^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~509~^0.663^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~510~^0.910^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~511~^1.159^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~512~^0.752^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~513~^1.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~514~^1.704^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~515~^2.781^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~516~^0.785^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~517~^0.704^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~518~^0.753^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~521~^0.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~605~^0.115^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~606~^4.348^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~612~^0.149^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~613~^2.647^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~614~^1.474^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~617~^4.861^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~618~^1.401^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~619~^0.063^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~624~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~626~^0.261^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~628~^0.082^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10080~^~645~^5.206^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~646~^1.597^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~653~^0.038^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~663~^0.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~669~^0.040^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~672~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~674~^4.786^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~675~^1.361^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~687~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10080~^~693~^0.074^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~695~^0.040^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10080~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10080~^~851~^0.061^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~312~^0.129^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~404~^0.501^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~405~^0.365^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~406~^3.872^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~410~^1.290^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~415~^0.448^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~501~^0.264^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~502~^1.126^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~503~^1.234^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~504~^2.136^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~505~^2.325^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~506~^0.691^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~507~^0.289^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~508~^1.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~509~^0.954^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~510~^1.310^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~511~^1.668^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~512~^1.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~513~^1.472^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~514~^2.453^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~515~^4.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~516~^1.130^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~517~^1.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~518~^1.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~521~^0.064^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~605~^0.154^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~606~^6.584^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2009~ -~10081~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~610~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~611~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~612~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~613~^3.990^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~614~^2.248^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~615~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~617~^7.443^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~618~^1.811^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~619~^0.079^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~620~^0.099^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~624~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~626~^0.408^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~628~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10081~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~645~^7.987^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~646~^2.072^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~653~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~663~^0.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~669~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~672~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~674~^7.345^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~675~^1.754^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~687~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10081~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10081~^~693~^0.098^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~695~^0.056^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10081~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~ -~10081~^~851~^0.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10082~^~312~^0.058^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~315~^0.003^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~404~^0.695^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~405~^0.397^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~406~^4.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~410~^0.727^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~415~^0.277^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~501~^0.325^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~502~^1.168^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~503~^1.198^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~504~^2.052^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~505~^2.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~506~^0.677^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~507~^0.326^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~508~^1.021^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~509~^0.891^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~510~^1.388^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~511~^1.590^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~512~^1.022^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~513~^1.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~514~^2.373^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~515~^4.004^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~516~^1.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~517~^1.028^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~518~^1.057^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~606~^5.950^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~10082~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2005~ -~10082~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~612~^0.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~613~^3.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~614~^1.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~617~^6.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~618~^1.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~619~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~626~^0.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~628~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10082~^~645~^7.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10082~^~646~^1.460^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~312~^0.114^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~404~^0.638^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~405~^0.355^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~406~^4.061^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~410~^0.665^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~415~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~501~^0.283^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~502~^1.039^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~503~^1.059^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~504~^1.836^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~505~^2.064^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~506~^0.598^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~507~^0.289^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~508~^0.917^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~509~^0.785^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~510~^1.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~511~^1.467^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~512~^0.893^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~513~^1.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~514~^2.117^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~515~^3.542^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~516~^1.232^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~517~^1.002^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~518~^0.954^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~606~^6.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10083~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10083~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~612~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~613~^4.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~614~^2.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~617~^7.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~618~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~619~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~620~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~626~^0.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~628~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10083~^~645~^8.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10083~^~646~^1.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10084~^~312~^0.102^12^0.004^~1~^~A~^^^1^0.084^0.121^11^0.094^0.111^~2, 3~^~02/01/2007~ -~10084~^~315~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.022^11^0.011^0.015^~2, 3~^~02/01/2007~ -~10084~^~404~^0.558^12^0.035^~1~^~A~^^^1^0.405^0.822^11^0.480^0.636^~2, 3~^~02/01/2007~ -~10084~^~405~^0.384^12^0.020^~1~^~A~^^^1^0.286^0.499^11^0.341^0.428^~2, 3~^~02/01/2007~ -~10084~^~406~^4.387^12^0.239^~1~^~A~^^^1^3.460^5.790^11^3.860^4.913^~2, 3~^~02/01/2007~ -~10084~^~410~^1.567^4^0.113^~1~^~A~^^^1^1.390^1.870^3^1.208^1.927^~2, 3~^~02/01/2007~ -~10084~^~415~^0.521^4^0.028^~1~^~A~^^^1^0.439^0.565^3^0.432^0.610^~2, 3~^~02/01/2007~ -~10084~^~501~^0.197^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~502~^0.841^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~503~^0.922^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~504~^1.596^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~505~^1.737^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~506~^0.516^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~507~^0.216^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~508~^0.787^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~509~^0.713^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~510~^0.979^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~511~^1.246^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~512~^0.809^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~513~^1.100^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~514~^1.832^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~515~^2.990^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~516~^0.844^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~517~^0.757^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~518~^0.810^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10084~^~521~^0.048^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~10084~^~605~^0.038^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~606~^1.998^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10084~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10084~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~610~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.000^0.004^~1, 2, 3~^~02/01/2007~ -~10084~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~612~^0.067^12^0.004^~1~^~A~^^^1^0.043^0.087^11^0.057^0.076^~2, 3~^~02/01/2007~ -~10084~^~613~^1.224^12^0.076^~1~^~A~^^^1^0.798^1.602^11^1.058^1.391^~2, 3~^~02/01/2007~ -~10084~^~614~^0.680^12^0.044^~1~^~A~^^^1^0.474^0.880^11^0.582^0.777^~2, 3~^~02/01/2007~ -~10084~^~615~^0.010^12^0.001^~1~^~A~^^^1^0.007^0.013^11^0.008^0.011^~2, 3~^~02/01/2007~ -~10084~^~617~^2.308^12^0.130^~1~^~AS~^^^1^1.562^2.907^11^2.021^2.594^~2, 3~^~02/01/2007~ -~10084~^~618~^0.517^12^0.030^~1~^~AS~^^^1^0.417^0.722^11^0.450^0.583^~2, 3~^~02/01/2007~ -~10084~^~619~^0.019^12^0.001^~1~^~AS~^^^1^0.012^0.027^11^0.016^0.022^~2, 3~^~02/01/2007~ -~10084~^~620~^0.065^12^0.002^~1~^~A~^^^1^0.048^0.074^11^0.059^0.070^~2, 3~^~02/01/2007~ -~10084~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~624~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.007^11^-0.001^0.002^~1, 2, 3~^~02/01/2007~ -~10084~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~626~^0.139^12^0.010^~1~^~A~^^^1^0.088^0.199^11^0.117^0.160^~2, 3~^~02/01/2007~ -~10084~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~628~^0.037^12^0.002^~1~^~A~^^^1^0.026^0.049^11^0.032^0.041^~2, 3~^~02/01/2007~ -~10084~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10084~^~645~^2.484^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~646~^0.620^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~652~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.014^11^-0.001^0.004^~1, 2, 3~^~02/01/2007~ -~10084~^~653~^0.014^12^0.001^~1~^~A~^^^1^0.010^0.019^11^0.012^0.016^~2, 3~^~02/01/2007~ -~10084~^~663~^0.023^12^0.002^~1~^~A~^^^1^0.013^0.034^11^0.019^0.028^~2, 3~^~02/01/2007~ -~10084~^~669~^0.015^12^0.002^~1~^~A~^^^1^0.000^0.021^11^0.011^0.019^~1, 2, 3~^~02/01/2007~ -~10084~^~672~^0.019^12^0.002^~1~^~A~^^^1^0.012^0.031^11^0.015^0.023^~2, 3~^~02/01/2007~ -~10084~^~674~^2.284^12^0.131^~1~^~A~^^^1^1.539^2.886^11^1.997^2.572^~2, 3~^~02/01/2007~ -~10084~^~675~^0.502^12^0.030^~1~^~A~^^^1^0.403^0.705^11^0.437^0.567^~2, 3~^~02/01/2007~ -~10084~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~687~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.010^11^-0.001^0.003^~1, 2, 3~^~02/01/2007~ -~10084~^~689~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10084~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10084~^~851~^0.019^12^0.001^~1~^~A~^^^1^0.012^0.027^11^0.016^0.022^~2, 3~^~02/01/2007~ -~10085~^~312~^0.137^12^0.003^~1~^~A~^^^1^0.117^0.153^11^0.130^0.144^~2, 3~^~02/01/2007~ -~10085~^~315~^0.013^12^0.000^~1~^~A~^^^1^0.010^0.017^11^0.012^0.014^~2, 3~^~02/01/2007~ -~10085~^~404~^0.526^12^0.031^~1~^~A~^^^1^0.356^0.702^11^0.457^0.594^~2, 3~^~02/01/2007~ -~10085~^~405~^0.388^12^0.021^~1~^~A~^^^1^0.292^0.497^11^0.342^0.435^~2, 3~^~02/01/2007~ -~10085~^~406~^3.935^12^0.235^~1~^~A~^^^1^2.810^5.230^11^3.418^4.452^~2, 3~^~02/01/2007~ -~10085~^~410~^1.367^4^0.132^~1~^~A~^^^1^1.170^1.750^3^0.948^1.787^~2, 3~^~02/01/2007~ -~10085~^~415~^0.470^4^0.021^~1~^~A~^^^1^0.425^0.523^3^0.404^0.537^~2, 3~^~02/01/2007~ -~10085~^~501~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~502~^1.193^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~503~^1.308^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~504~^2.264^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~505~^2.465^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~506~^0.732^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~507~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~508~^1.117^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~509~^1.011^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~510~^1.389^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~511~^1.768^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~512~^1.148^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~513~^1.560^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~514~^2.600^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~515~^4.243^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~516~^1.197^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~517~^1.074^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~518~^1.149^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10085~^~521~^0.068^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~10085~^~605~^0.102^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~606~^5.023^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10085~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10085~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~610~^0.014^12^0.001^~1~^~A~^^^1^0.009^0.021^11^0.012^0.017^~2, 3~^~02/01/2007~ -~10085~^~611~^0.011^12^0.001^~1~^~A~^^^1^0.007^0.017^11^0.009^0.013^~2, 3~^~02/01/2007~ -~10085~^~612~^0.168^12^0.014^~1~^~A~^^^1^0.106^0.247^11^0.138^0.199^~2, 3~^~02/01/2007~ -~10085~^~613~^3.051^12^0.243^~1~^~A~^^^1^2.005^4.492^11^2.516^3.586^~2, 3~^~02/01/2007~ -~10085~^~614~^1.716^12^0.146^~1~^~A~^^^1^1.103^2.622^11^1.394^2.038^~2, 3~^~02/01/2007~ -~10085~^~615~^0.024^12^0.002^~1~^~A~^^^1^0.015^0.036^11^0.020^0.028^~2, 3~^~02/01/2007~ -~10085~^~617~^5.770^12^0.436^~1~^~AS~^^^1^3.886^8.472^11^4.810^6.729^~2, 3~^~02/01/2007~ -~10085~^~618~^1.204^12^0.076^~1~^~AS~^^^1^0.906^1.584^11^1.038^1.370^~2, 3~^~02/01/2007~ -~10085~^~619~^0.048^12^0.003^~1~^~AS~^^^1^0.032^0.065^11^0.041^0.054^~2, 3~^~02/01/2007~ -~10085~^~620~^0.094^12^0.006^~1~^~A~^^^1^0.058^0.121^11^0.081^0.107^~2, 3~^~02/01/2007~ -~10085~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~624~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~626~^0.333^12^0.028^~1~^~A~^^^1^0.208^0.540^11^0.272^0.394^~2, 3~^~02/01/2007~ -~10085~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~628~^0.097^12^0.007^~1~^~A~^^^1^0.061^0.135^11^0.081^0.112^~2, 3~^~02/01/2007~ -~10085~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~10085~^~645~^6.199^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~646~^1.402^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~652~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.000^0.004^~1, 2, 3~^~02/01/2007~ -~10085~^~653~^0.037^12^0.003^~1~^~A~^^^1^0.022^0.055^11^0.031^0.044^~2, 3~^~02/01/2007~ -~10085~^~663~^0.062^12^0.008^~1~^~A~^^^1^0.028^0.117^11^0.045^0.079^~2, 3~^~02/01/2007~ -~10085~^~669~^0.040^12^0.004^~1~^~A~^^^1^0.016^0.063^11^0.031^0.050^~2, 3~^~02/01/2007~ -~10085~^~672~^0.049^12^0.003^~1~^~A~^^^1^0.033^0.066^11^0.042^0.055^~2, 3~^~02/01/2007~ -~10085~^~674~^5.708^12^0.434^~1~^~A~^^^1^3.835^8.406^11^4.753^6.663^~2, 3~^~02/01/2007~ -~10085~^~675~^1.164^12^0.073^~1~^~A~^^^1^0.858^1.533^11^1.004^1.324^~2, 3~^~02/01/2007~ -~10085~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~689~^0.007^12^0.001^~1~^~A~^^^1^0.000^0.011^11^0.005^0.009^~1, 2, 3~^~02/01/2007~ -~10085~^~693~^0.062^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~10085~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~10085~^~851~^0.048^12^0.003^~1~^~A~^^^1^0.032^0.065^11^0.041^0.054^~2, 3~^~02/01/2007~ -~10086~^~312~^0.059^5^0.020^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~315~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~404~^0.750^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~405~^0.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~406~^4.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~410~^0.816^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~415~^0.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~501~^0.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~502~^1.221^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~503~^1.252^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~504~^2.145^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~505~^2.405^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~506~^0.708^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~507~^0.341^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~508~^1.067^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~509~^0.932^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~510~^1.451^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~511~^1.662^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~512~^1.068^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~513~^1.558^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~514~^2.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~515~^4.186^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~516~^1.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~517~^1.074^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~518~^1.105^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~606~^4.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10086~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10086~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~610~^0.010^19^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~611~^0.010^19^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~612~^0.140^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~613~^2.730^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~614~^1.470^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~617~^5.060^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~618~^0.920^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~619~^0.040^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~620~^0.060^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~626~^0.370^30^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~628~^0.150^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10086~^~645~^5.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10086~^~646~^1.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~312~^0.121^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~315~^0.015^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~404~^1.116^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~405~^0.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~406~^4.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~410~^1.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~415~^0.437^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~501~^0.308^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~502~^1.106^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~503~^1.134^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~504~^1.943^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~505~^2.178^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~506~^0.641^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~507~^0.309^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~508~^0.967^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~509~^0.844^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~510~^1.314^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~511~^1.505^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~512~^0.967^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~513~^1.411^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~514~^2.246^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~515~^3.791^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~516~^1.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~517~^0.973^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~518~^1.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~606~^5.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10087~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10087~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~612~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~613~^3.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~614~^1.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~617~^5.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~618~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~619~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~620~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~626~^0.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~628~^0.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10087~^~645~^6.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10087~^~646~^1.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10088~^~312~^0.080^12^0.003^~1~^~A~^^^1^0.066^0.094^11^0.074^0.086^~2, 3~^~03/01/2007~ -~10088~^~315~^0.010^12^0.003^~1~^~A~^^^1^0.000^0.035^11^0.004^0.015^~1, 2, 3~^~03/01/2007~ -~10088~^~404~^0.319^0^^~4~^~BFYN~^~10940~^^^^^^^^^~03/01/2007~ -~10088~^~405~^0.251^0^^~4~^~BFYN~^~10940~^^^^^^^^^~03/01/2007~ -~10088~^~406~^4.662^0^^~4~^~BFYN~^~10940~^^^^^^^^^~03/01/2007~ -~10088~^~410~^0.625^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~415~^0.574^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~502~^0.695^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~503~^0.761^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~504~^1.318^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~505~^1.435^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~506~^0.426^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~508~^0.650^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~509~^0.589^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~510~^0.809^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~511~^1.030^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~512~^0.668^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~513~^0.908^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~514~^1.514^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~515~^2.470^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~516~^0.697^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~517~^0.626^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~518~^0.669^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10088~^~521~^0.040^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10088~^~605~^0.222^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10088~^~606~^7.529^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~607~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~608~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~609~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~610~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~611~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~612~^0.236^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~613~^4.661^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~614~^2.596^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~617~^7.889^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~618~^3.230^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~619~^0.081^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~620~^0.563^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~621~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~624~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~625~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~626~^0.530^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~627~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~628~^0.123^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~629~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~630~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~631~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~645~^8.542^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~646~^3.953^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2009~ -~10088~^~652~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~653~^0.037^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~663~^0.138^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~669~^0.084^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~672~^0.079^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~674~^7.751^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~675~^3.146^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~685~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~687~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~689~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~693~^0.138^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10088~^~695~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10088~^~697~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10088~^~851~^0.081^0^^~4~^~BFFN~^~10060~^^^^^^^^^~03/01/2007~ -~10089~^~312~^0.142^6^0.008^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~315~^0.014^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~404~^0.408^6^0.035^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~405~^0.382^6^0.015^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~406~^5.475^6^0.359^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~410~^0.750^3^0.087^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~415~^0.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~501~^0.369^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~502~^1.327^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~503~^1.361^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~504~^2.332^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~505~^2.613^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~506~^0.769^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~507~^0.371^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~508~^1.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~509~^1.013^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~510~^1.577^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~511~^1.806^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~512~^1.161^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~513~^1.693^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~514~^2.695^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~515~^4.549^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~516~^1.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~517~^1.167^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~518~^1.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~606~^11.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10089~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10089~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~610~^0.010^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~611~^0.010^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~612~^0.360^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~613~^6.800^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~614~^3.820^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~617~^12.520^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~618~^2.510^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~619~^0.110^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~620~^0.110^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~626~^0.720^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~628~^0.240^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10089~^~645~^13.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10089~^~646~^2.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10093~^~312~^0.078^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~404~^0.672^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~405~^0.311^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~406~^6.503^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~410~^0.725^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~415~^0.577^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~501~^0.319^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~502~^1.246^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~503~^1.322^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~504~^2.278^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~505~^2.514^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~506~^0.743^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~507~^0.334^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~508~^1.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~509~^1.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~510~^1.464^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~511~^1.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~512~^1.145^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~513~^1.609^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~514~^2.624^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~515~^4.351^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~516~^1.272^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~517~^1.109^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~518~^1.164^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~521~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~605~^0.032^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~606~^3.092^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~612~^0.107^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~613~^1.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~614~^1.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~617~^3.561^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~618~^0.738^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~619~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~620~^0.064^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~626~^0.249^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~628~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~645~^3.908^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~646~^0.863^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~653~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~663~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~669~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~672~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~674~^1.439^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~675~^0.356^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~687~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~693~^0.021^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10093~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10093~^~851~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10094~^~312~^0.048^6^0.000^~1~^~A~^^^1^0.046^0.049^5^0.047^0.049^~2, 3~^~05/01/2014~ -~10094~^~315~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~404~^0.690^3^0.086^~1~^~A~^^^1^0.585^0.861^2^0.320^1.061^~2, 3~^~05/01/2014~ -~10094~^~405~^0.203^3^0.003^~1~^~A~^^^1^0.200^0.210^2^0.189^0.217^~2, 3~^~05/01/2014~ -~10094~^~406~^8.210^3^0.505^~1~^~A~^^^1^7.290^9.030^2^6.038^10.382^~2, 3~^~05/01/2014~ -~10094~^~410~^0.700^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~415~^0.363^3^0.023^~1~^~A~^^^1^0.340^0.410^2^0.263^0.464^~2, 3~^~05/01/2014~ -~10094~^~501~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~502~^1.044^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~503~^1.125^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~504~^1.955^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~505~^2.112^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~506~^0.651^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~508~^0.987^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~509~^0.941^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~510~^1.201^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~511~^1.530^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~512~^0.966^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~513~^1.360^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~514~^2.222^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~515~^3.628^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~516~^1.073^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~517~^0.960^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~518~^0.992^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~10094~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~606~^0.801^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~610~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.002^0.008^~1, 2, 3~^~05/01/2014~ -~10094~^~611~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~10094~^~612~^0.030^6^0.004^~1~^~A~^^^1^0.018^0.045^5^0.021^0.040^~2, 3~^~05/01/2014~ -~10094~^~613~^0.500^6^0.060^~1~^~A~^^^1^0.312^0.732^5^0.346^0.654^~2, 3~^~05/01/2014~ -~10094~^~614~^0.251^6^0.028^~1~^~A~^^^1^0.158^0.353^5^0.178^0.323^~2, 3~^~05/01/2014~ -~10094~^~615~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 2, 3~^~05/01/2014~ -~10094~^~617~^0.876^6^0.118^~1~^~AS~^^^1^0.534^1.321^5^0.573^1.179^~2, 3~^~05/01/2014~ -~10094~^~618~^0.231^6^0.013^~1~^~AS~^^^1^0.175^0.272^5^0.196^0.265^~2, 3~^~05/01/2014~ -~10094~^~619~^0.007^6^0.000^~1~^~AS~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~05/01/2014~ -~10094~^~620~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.032^5^0.025^0.031^~2, 3~^~05/01/2014~ -~10094~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~624~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~10094~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~626~^0.062^6^0.009^~1~^~AS~^^^1^0.039^0.098^5^0.039^0.085^~2, 3~^~05/01/2014~ -~10094~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~628~^0.015^6^0.002^~1~^~A~^^^1^0.009^0.024^5^0.010^0.021^~2, 3~^~05/01/2014~ -~10094~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~05/01/2014~ -~10094~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~10094~^~645~^0.958^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~646~^0.287^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~652~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~10094~^~653~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.006^~2, 3~^~05/01/2014~ -~10094~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~663~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~05/01/2014~ -~10094~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~665~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~10094~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~10094~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~10094~^~672~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.007^0.009^~2, 3~^~05/01/2014~ -~10094~^~673~^0.062^6^0.009^~1~^~A~^^^1^0.039^0.098^5^0.039^0.085^~2, 3~^~05/01/2014~ -~10094~^~674~^0.869^6^0.118^~1~^~A~^^^1^0.528^1.313^5^0.567^1.172^~2, 3~^~05/01/2014~ -~10094~^~675~^0.228^6^0.013^~1~^~A~^^^1^0.173^0.269^5^0.194^0.262^~2, 3~^~05/01/2014~ -~10094~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~10094~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~687~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~10094~^~689~^0.006^6^0.000^~1~^~AS~^^^1^0.005^0.007^5^0.005^0.006^~2, 3~^~05/01/2014~ -~10094~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10094~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~851~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~05/01/2014~ -~10094~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~10094~^~853~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2014~ -~10094~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10094~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2014~ -~10096~^~312~^0.240^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~315~^0.094^16^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~404~^0.155^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~405~^0.275^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~406~^4.275^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~410~^2.800^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~415~^0.190^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~501~^0.132^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~502~^0.480^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~503~^0.475^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~504~^0.896^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~505~^0.808^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~506~^0.204^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~508~^0.523^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~509~^0.431^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~510~^0.586^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~511~^0.538^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~512~^0.276^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~514~^1.028^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~515~^1.202^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~516~^0.493^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~606~^2.079^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~612~^0.040^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~613~^1.029^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~614~^0.999^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~617~^1.069^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~618~^0.090^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~619~^0.120^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~620~^0.470^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~621~^0.450^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~626~^0.120^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~631~^0.220^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~645~^1.659^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10096~^~646~^1.429^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~312~^0.263^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~315~^0.085^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~404~^0.078^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~405~^0.223^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~406~^3.330^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~410~^1.823^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~415~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~501~^0.155^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~502~^0.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~503~^0.561^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~504~^1.058^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~505~^0.954^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~506~^0.241^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~507~^0.214^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~508~^0.618^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~509~^0.509^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~510~^0.691^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~511~^0.635^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~512~^0.326^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~513~^0.660^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~514~^1.214^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~515~^1.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~516~^0.583^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~517~^0.660^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~518~^0.641^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~606~^2.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~612~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~613~^1.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~614~^1.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~617~^1.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~618~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~619~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~620~^0.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~621~^0.460^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~626~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10097~^~631~^0.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~645~^1.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10097~^~646~^1.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10098~^~312~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~315~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~405~^0.091^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~406~^0.215^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~410~^0.227^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~415~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~606~^7.619^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10098~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~612~^0.232^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~613~^4.057^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~614~^3.152^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~615~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~617~^4.994^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~618~^0.799^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~10098~^~620~^0.095^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~626~^0.263^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~628~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10098~^~645~^5.367^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10098~^~646~^0.996^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10098~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~653~^0.133^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~672~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10098~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10098~^~851~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~312~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~315~^0.089^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~404~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~405~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~406~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~410~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~606~^9.520^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~609~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~612~^0.289^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~613~^5.132^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~614~^3.885^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~615~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~617~^6.572^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~618~^0.980^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~10099~^~620~^0.146^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~626~^0.368^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~628~^0.133^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10099~^~645~^7.073^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~646~^1.217^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~653~^0.156^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~672~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10099~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10099~^~851~^0.033^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10100~^~312~^0.006^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~315~^0.012^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~404~^0.080^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~405~^0.110^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~406~^0.780^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~410~^0.068^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~415~^0.020^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~501~^0.043^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~502~^0.629^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~503~^0.492^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~504~^1.167^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~505~^1.052^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~506~^0.133^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~507~^0.200^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~508~^0.718^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~509~^0.402^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~510~^0.830^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~511~^1.861^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~512~^0.269^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~513~^2.220^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~514~^1.660^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~515~^2.805^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~516~^4.400^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~517~^2.848^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~518~^0.941^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10100~^~606~^5.390^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~611~^0.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~612~^0.200^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~613~^3.380^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~614~^1.800^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~617~^6.430^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~618~^1.410^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~619~^0.130^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~620~^0.070^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~626~^0.430^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~645~^6.860^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10100~^~646~^1.610^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~312~^0.006^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~315~^0.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~404~^0.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~405~^0.070^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~406~^0.560^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~410~^0.037^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~415~^0.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~501~^0.031^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~502~^0.477^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~503~^0.365^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~504~^0.875^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~505~^0.732^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~506~^0.128^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~507~^0.142^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~508~^0.510^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~509~^0.319^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~510~^0.638^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~511~^1.276^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~512~^0.191^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~513~^1.531^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~514~^1.179^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~515~^2.008^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~516~^3.142^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~517~^1.914^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~518~^0.684^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10101~^~606~^3.860^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~611~^0.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~612~^0.140^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~613~^2.420^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~614~^1.290^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~617~^4.600^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~618~^1.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~619~^0.090^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~620~^0.050^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~626~^0.310^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~645~^4.910^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10101~^~646~^1.150^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10102~^~312~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~404~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~405~^0.106^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~406~^1.130^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~410~^0.303^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~415~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~606~^3.570^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~612~^0.154^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~613~^2.464^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~614~^0.905^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~615~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~617~^5.682^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~618~^0.930^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~10102~^~620~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~626~^0.493^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~628~^0.114^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10102~^~645~^6.289^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~646~^1.092^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~653~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~672~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~689~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10102~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10102~^~851~^0.043^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10103~^~312~^0.408^7^0.042^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~315~^0.063^4^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~404~^0.613^17^0.069^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~405~^1.185^15^0.076^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~406~^6.765^6^0.439^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~410~^2.515^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~415~^0.390^3^0.015^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~501~^0.199^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~502~^0.757^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~503~^0.831^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~504~^1.558^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~505~^1.428^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~506~^0.442^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~507~^0.309^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10103~^~508~^0.762^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~509~^0.591^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~510~^0.914^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~511~^1.160^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~512~^0.439^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~513~^1.108^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~514~^1.563^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~515~^2.770^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~516~^0.939^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~517~^0.795^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~518~^0.812^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~606~^1.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10103~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~610~^0.000^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~611~^0.010^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~612~^0.080^4^0.047^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~613~^0.590^5^0.100^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~614~^0.450^5^0.080^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~617~^0.900^5^0.227^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~618~^0.770^5^0.205^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~619~^0.080^3^0.084^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~620~^0.270^4^0.091^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~626~^0.100^5^0.031^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~628~^0.018^2^^~1~^^^^^^^^^^^~02/01/1995~ -~10103~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~645~^1.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10103~^~646~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~312~^0.508^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~315~^0.073^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~404~^0.555^5^0.039^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~405~^1.702^5^0.093^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~406~^6.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~410~^2.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~415~^0.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~501~^0.272^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~502~^1.035^11^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~503~^1.137^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~504~^2.130^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~505~^1.952^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~506~^0.604^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~507~^0.423^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~508~^1.042^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~509~^0.808^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~510~^1.250^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~511~^1.586^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~512~^0.600^9^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~513~^1.514^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~514~^2.137^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~515~^3.787^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~516~^1.284^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~517~^1.087^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~518~^1.110^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~606~^1.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~612~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~613~^0.690^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~614~^0.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~617~^1.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~618~^0.890^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~619~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~620~^0.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~626~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~628~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10104~^~645~^1.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10104~^~646~^1.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~312~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~315~^0.005^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~404~^0.386^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~405~^0.236^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~406~^4.535^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~410~^0.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~415~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~501~^0.021^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~502~^0.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~503~^0.168^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~504~^0.446^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~505~^0.528^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~506~^0.095^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~507~^0.056^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~508~^0.239^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~509~^0.104^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~510~^0.305^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~511~^0.659^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~512~^0.072^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~513~^0.378^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~514~^0.592^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~515~^0.991^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~516~^0.291^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~517~^0.242^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~518~^0.262^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~606~^25.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10105~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~610~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~611~^0.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~612~^0.880^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~613~^15.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~614~^8.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~617~^30.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~618~^7.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~619~^0.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~626~^2.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~628~^0.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10105~^~645~^32.890^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10105~^~646~^8.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~312~^0.622^447^0.014^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~315~^0.123^3^0.014^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~404~^0.340^9^0.033^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~405~^1.697^8^0.159^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~406~^8.207^12^0.281^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~410~^3.130^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~415~^0.440^5^0.036^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~501~^0.213^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~502~^0.682^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~503~^0.879^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~504~^1.477^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~505~^1.185^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~506~^0.353^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~507~^0.361^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~508~^0.777^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~509~^0.592^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~510~^0.948^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~511~^1.011^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~512~^0.395^5^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~513~^1.035^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~514~^1.546^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~515~^1.964^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~516~^1.043^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~517~^1.019^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~518~^0.872^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~606~^1.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~610~^0.000^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~611~^0.010^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~612~^0.040^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~613~^0.580^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~614~^0.410^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~617~^0.970^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~618~^0.170^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~619~^0.010^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~620~^0.080^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~626~^0.090^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~628~^0.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10106~^~645~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10106~^~646~^0.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~312~^0.683^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~315~^0.149^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~404~^0.396^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~405~^1.586^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~406~^5.785^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~410~^2.873^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~415~^0.460^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~501~^0.329^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~502~^1.053^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~503~^1.357^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~504~^2.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~505~^1.829^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~506~^0.545^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~507~^0.557^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~508~^1.199^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~509~^0.914^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~510~^1.463^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~511~^1.561^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~512~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~513~^1.597^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~514~^2.386^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~515~^3.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~516~^1.609^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~517~^1.573^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~518~^1.345^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~606~^1.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~612~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~613~^0.850^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~614~^0.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~617~^1.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~618~^0.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~620~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~626~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~628~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10107~^~645~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10107~^~646~^0.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~312~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~315~^0.001^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~404~^0.106^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~405~^0.065^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~406~^1.249^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~410~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~415~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~501~^0.006^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~502~^0.058^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~503~^0.046^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~504~^0.123^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~505~^0.146^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~506~^0.026^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~507~^0.015^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~508~^0.066^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~509~^0.029^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~510~^0.084^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~511~^0.182^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~512~^0.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~513~^0.104^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~514~^0.163^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~515~^0.273^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~516~^0.080^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~517~^0.067^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~518~^0.072^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~606~^45.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~612~^1.370^21^0.037^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~613~^26.770^22^0.371^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~614~^17.090^22^0.375^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~617~^35.250^22^0.301^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~618~^6.340^22^0.269^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~619~^0.940^21^0.029^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~626~^1.970^22^0.116^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10109~^~645~^37.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10109~^~646~^7.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~312~^0.677^446^0.026^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~315~^0.344^6^0.015^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~404~^0.283^24^0.014^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~405~^3.005^26^0.102^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~406~^15.301^31^0.467^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~410~^6.650^6^0.198^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~415~^0.690^8^0.031^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~501~^0.301^7^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~502~^0.910^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~503~^1.085^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~504~^1.906^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~505~^1.649^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~506~^0.530^14^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~507~^0.404^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~508~^1.047^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~509~^0.729^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~510~^1.321^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~511~^1.317^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~512~^0.582^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~513~^1.276^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~514~^1.937^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~515~^2.782^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~516~^1.239^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~517~^1.146^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~518~^1.157^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~606~^1.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~610~^0.000^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~611~^0.000^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~612~^0.020^42^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~613~^0.440^59^0.017^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~614~^0.700^59^0.026^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~617~^0.460^59^0.021^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~618~^0.350^59^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~619~^0.030^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~620~^0.440^57^0.021^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~621~^0.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~626~^0.030^43^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~628~^0.000^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~631~^0.030^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~645~^0.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10110~^~646~^0.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~312~^0.634^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~315~^0.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~404~^0.258^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~405~^2.196^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~406~^8.435^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10111~^~410~^4.774^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~415~^0.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~501~^0.366^7^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~502~^1.107^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~503~^1.320^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~504~^2.319^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~505~^2.007^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~506~^0.645^14^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~507~^0.491^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~508~^1.274^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~509~^0.887^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~510~^1.607^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~511~^1.603^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~512~^0.708^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~513~^1.553^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~514~^2.356^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~515~^3.385^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~516~^1.507^8^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~517~^1.395^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~518~^1.407^6^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~606~^1.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~612~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~613~^0.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~614~^0.840^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~617~^0.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~618~^0.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~620~^0.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~621~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~626~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~630~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~631~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~645~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10111~^~646~^1.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~312~^0.083^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~315~^0.017^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~404~^0.085^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~405~^0.430^7^0.046^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~406~^3.345^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~410~^0.900^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~415~^0.100^4^0.029^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~501~^0.124^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~502~^0.496^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~503~^0.563^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~504~^1.093^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~505~^1.027^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~506~^0.228^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~507~^0.221^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~508~^0.586^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~509~^0.398^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~510~^0.838^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~511~^0.732^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~512~^0.356^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~513~^0.890^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~514~^1.266^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~515~^1.464^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~516~^1.027^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~517~^0.901^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~518~^0.621^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~606~^0.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~610~^0.000^3^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~611~^0.000^3^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~612~^0.020^4^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~613~^0.630^4^0.100^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~614~^0.290^4^0.046^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~617~^0.560^4^0.090^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~618~^0.120^4^0.018^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~619~^0.000^4^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~620~^0.180^4^0.032^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~621~^0.010^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~626~^0.050^4^0.009^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~628~^0.010^4^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~629~^0.010^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10112~^~631~^0.030^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~645~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10112~^~646~^0.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~312~^0.080^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~315~^0.015^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~404~^0.079^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~405~^0.322^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~406~^1.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~410~^0.663^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~415~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~501~^0.146^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~502~^0.584^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~503~^0.664^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~504~^1.288^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~505~^1.211^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~506~^0.268^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~507~^0.261^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~508~^0.691^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~509~^0.470^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~510~^0.988^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~511~^0.863^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~512~^0.420^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~513~^1.049^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~514~^1.493^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~515~^1.726^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~516~^1.211^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~517~^1.062^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~518~^0.732^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10113~^~606~^1.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~612~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~613~^0.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~614~^0.330^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~617~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~618~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~619~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~620~^0.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~621~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~626~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~629~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~631~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~645~^0.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10113~^~646~^0.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~312~^0.082^8^0.000^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~315~^0.011^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~404~^0.697^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~405~^0.201^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~406~^3.171^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~410~^0.590^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~415~^0.370^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~501~^0.202^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~502~^0.617^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~503~^0.689^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~504~^1.099^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~505~^1.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~506~^0.313^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~507~^0.169^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~508~^0.648^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~509~^0.518^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~510~^0.913^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~511~^1.074^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~512~^0.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~513~^0.874^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~514~^1.152^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~515~^1.983^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~516~^0.862^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~517~^0.718^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~518~^0.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~606~^9.820^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~612~^0.220^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~613~^6.130^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~614~^3.370^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~617~^11.410^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~618~^2.140^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~619~^0.160^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~620~^0.050^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~626~^0.440^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~628~^0.320^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10114~^~645~^12.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10114~^~646~^2.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~312~^0.090^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~315~^0.157^5^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~404~^0.105^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~405~^0.460^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~406~^3.450^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~410~^4.555^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~415~^0.460^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~501~^0.407^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~502~^0.835^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~503~^0.974^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~504~^1.387^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~505~^1.280^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~506~^0.306^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~507~^0.238^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~508~^0.796^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~509~^0.778^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~510~^1.001^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~511~^1.069^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~512~^0.359^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~513~^0.950^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~514~^1.782^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~515~^1.530^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~516~^1.132^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10115~^~517~^0.950^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~518~^0.742^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~606~^4.580^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~612~^0.110^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~613~^2.450^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~614~^1.720^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~617~^3.810^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~618~^1.450^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~619~^0.090^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~620~^0.570^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~626~^0.790^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~645~^4.600^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10115~^~646~^2.480^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~312~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~315~^0.198^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~404~^0.092^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~405~^0.658^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~406~^3.206^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~410~^4.741^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~415~^0.440^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~501~^0.625^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~502~^1.281^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~503~^1.496^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~504~^2.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~505~^1.965^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~506~^0.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~507~^0.365^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~508~^1.222^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~509~^1.195^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~510~^1.537^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~511~^1.642^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~512~^0.552^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~513~^1.459^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~514~^2.736^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~515~^2.348^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~516~^1.737^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10116~^~517~^1.459^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~518~^1.140^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~606~^3.730^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~612~^0.090^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~613~^2.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~614~^1.400^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~617~^3.110^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~618~^1.180^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~619~^0.080^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~620~^0.470^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~626~^0.650^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~645~^3.750^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10116~^~646~^2.030^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~312~^0.131^15^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~315~^0.072^16^0.008^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~404~^0.130^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~405~^0.300^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~406~^5.867^3^1.567^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~410~^1.055^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~415~^0.060^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~501~^0.183^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~502~^0.714^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~503~^0.797^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~504~^1.460^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~505~^1.334^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~506~^0.331^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~507~^0.229^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~508~^0.763^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~509~^0.500^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~510~^0.971^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~511~^0.974^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~512~^0.426^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~513~^1.154^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~514~^1.571^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~515~^2.051^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~516~^1.143^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~517~^0.995^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~518~^0.780^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~606~^0.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~611~^0.010^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~612~^0.060^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~613~^0.460^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~614~^0.330^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~617~^0.590^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~618~^0.190^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~626~^0.100^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10117~^~645~^0.690^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10117~^~646~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~312~^0.133^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~315~^0.045^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~404~^0.139^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~405~^0.258^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~406~^5.938^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~410~^0.892^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~415~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~501~^0.289^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~502~^1.128^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~503~^1.259^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~504~^2.306^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~505~^2.107^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~506~^0.523^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~507~^0.361^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~508~^1.205^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~509~^0.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~510~^1.534^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~511~^1.539^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~512~^0.672^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~513~^1.822^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~514~^2.482^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~515~^3.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~516~^1.805^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~517~^1.571^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~518~^1.232^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~606~^1.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~612~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~613~^0.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~614~^0.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~617~^0.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~618~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~626~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10118~^~645~^0.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10118~^~646~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10119~^~312~^0.169^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~315~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~404~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~406~^2.480^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~410~^1.220^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~415~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~605~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~606~^4.025^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~612~^0.125^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~613~^2.264^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~614~^1.591^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~617~^3.320^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~618~^0.724^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~10119~^~620~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~626~^0.202^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~628~^0.068^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10119~^~645~^3.590^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~646~^0.892^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~653~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~672~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10119~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10119~^~851~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10120~^~312~^0.105^12^0.004^~1~^~A~^^^1^0.075^0.133^11^0.095^0.115^~2, 3~^~04/01/2010~ -~10120~^~315~^0.012^12^0.000^~1~^~A~^^^1^0.009^0.016^11^0.010^0.013^~2, 3~^~04/01/2010~ -~10120~^~404~^0.506^12^0.017^~1~^~A~^^^1^0.434^0.611^11^0.468^0.544^~2, 3~^~04/01/2010~ -~10120~^~405~^0.353^12^0.015^~1~^~A~^^^1^0.290^0.460^11^0.321^0.384^~2, 3~^~04/01/2010~ -~10120~^~406~^8.628^12^0.458^~1~^~A~^^^1^6.170^11.100^11^7.620^9.637^~2, 3~^~04/01/2010~ -~10120~^~410~^1.212^6^0.098^~1~^~A~^^^1^0.879^1.450^5^0.960^1.463^~2, 3~^~04/01/2010~ -~10120~^~415~^0.501^6^0.011^~1~^~A~^^^1^0.460^0.539^5^0.473^0.529^~2, 3~^~04/01/2010~ -~10120~^~501~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~502~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~503~^1.217^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~504~^2.115^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~505~^2.285^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~506~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~507~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~508~^1.068^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~509~^1.018^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~510~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~511~^1.656^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~512~^1.045^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~513~^1.472^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~514~^2.404^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~515~^3.926^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~516~^1.161^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~517~^1.039^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~518~^1.073^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10120~^~521~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~10120~^~605~^0.025^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~606~^2.557^0^^~4~^~NC~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~610~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~611~^0.006^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~612~^0.090^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~613~^1.565^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~614~^0.850^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~615~^0.012^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~617~^2.763^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~618~^0.872^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~619~^0.037^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~620~^0.087^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~626~^0.171^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~628~^0.046^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~645~^5.744^0^^~4~^~NC~^~10032~^^^^^^^^^~08/01/2013~ -~10120~^~646~^1.079^0^^~4~^~NC~^~10032~^^^^^^^^^~08/01/2013~ -~10120~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~653~^0.019^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~663~^0.023^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~672~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~674~^2.740^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~693~^0.023^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~851~^0.032^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10120~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~04/01/2010~ -~10121~^~312~^0.070^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~315~^0.011^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~404~^0.490^4^0.167^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~405~^0.485^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~406~^5.300^3^0.409^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~410~^0.641^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~415~^0.240^3^0.047^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~501~^0.188^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~502~^0.689^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~503~^0.743^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~504~^1.307^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~505~^1.333^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~506~^0.365^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~507~^0.235^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~508~^0.675^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~509~^0.496^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~510~^0.848^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~511~^1.007^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~512~^0.409^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~513~^0.861^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~514~^1.515^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~515~^2.052^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~516~^1.205^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~517~^0.861^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~518~^0.678^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~606~^5.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~ -~10121~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~610~^0.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~611~^0.090^3^0.048^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~612~^0.310^3^0.077^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~613~^3.820^3^0.150^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~614~^1.730^3^0.523^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~617~^7.300^3^0.316^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~618~^1.700^3^0.277^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~619~^0.080^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~626~^0.640^3^0.113^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10121~^~645~^8.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10121~^~646~^1.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~312~^0.110^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~315~^0.010^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~404~^0.317^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~405~^0.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~406~^5.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~410~^0.507^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10122~^~415~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~501~^0.278^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~502~^1.018^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~503~^1.099^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~504~^1.932^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~505~^1.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~506~^0.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~508~^0.999^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~510~^1.253^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~511~^1.488^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~512~^0.605^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~514~^2.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~515~^3.035^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~516~^1.781^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~606~^6.449^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~611~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~612~^0.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~613~^4.129^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~614~^1.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~617~^7.889^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~618~^1.840^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~626~^0.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~628~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~645~^8.759^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10122~^~646~^1.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10123~^~312~^0.046^18^0.002^~1~^~A~^^^1^0.033^0.078^13^0.041^0.051^~2, 3~^~03/01/2016~ -~10123~^~315~^0.012^18^0.001^~1~^~A~^^^1^0.011^0.021^6^0.010^0.014^~1, 2, 3~^~03/01/2016~ -~10123~^~404~^0.276^9^0.010^~1~^~A~^^^1^0.239^0.354^3^0.245^0.307^~2, 3~^~05/01/2012~ -~10123~^~405~^0.081^9^0.005^~1~^~A~^^^1^0.060^0.110^5^0.067^0.095^~2, 3~^~05/01/2012~ -~10123~^~406~^4.022^9^0.162^~1~^~A~^^^1^3.410^4.780^4^3.572^4.473^~2, 3~^~05/01/2012~ -~10123~^~410~^0.555^6^0.047^~1~^~A~^^^1^0.450^0.700^2^0.369^0.741^~2, 3~^~05/01/2012~ -~10123~^~415~^0.266^9^0.012^~1~^~A~^^^1^0.208^0.348^5^0.235^0.297^~2, 3~^~05/01/2012~ -~10123~^~605~^0.147^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~606~^12.615^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~607~^0.005^18^0.000^~1~^~A~^^^1^0.004^0.008^9^0.004^0.006^~2, 3~^~03/01/2016~ -~10123~^~608~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~10123~^~609~^0.004^18^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~03/01/2016~ -~10123~^~610~^0.033^18^0.002^~1~^~A~^^^1^0.025^0.044^12^0.030^0.036^~2, 3~^~03/01/2016~ -~10123~^~611~^0.028^18^0.001^~1~^~A~^^^1^0.017^0.038^11^0.025^0.031^~2, 3~^~03/01/2016~ -~10123~^~612~^0.466^18^0.023^~1~^~A~^^^1^0.307^0.659^11^0.415^0.518^~2, 3~^~03/01/2016~ -~10123~^~613~^7.936^18^0.452^~1~^~A~^^^1^5.736^12.847^9^6.910^8.962^~2, 3~^~03/01/2016~ -~10123~^~614~^3.950^18^0.236^~1~^~A~^^^1^3.090^6.612^8^3.403^4.498^~2, 3~^~03/01/2016~ -~10123~^~615~^0.070^18^0.005^~1~^~A~^^^1^0.048^0.122^8^0.059^0.081^~2, 3~^~03/01/2016~ -~10123~^~617~^14.706^18^0.810^~1~^~AS~^^^1^10.449^22.708^11^12.915^16.497^~2, 3~^~03/01/2016~ -~10123~^~618~^5.078^18^0.294^~1~^~AS~^^^1^2.700^7.648^14^4.446^5.711^~2, 3~^~03/01/2016~ -~10123~^~619~^0.221^18^0.014^~1~^~AS~^^^1^0.107^0.327^13^0.190^0.253^~2, 3~^~03/01/2016~ -~10123~^~620~^0.111^18^0.003^~1~^~A~^^^1^0.080^0.132^14^0.105^0.118^~2, 3~^~03/01/2016~ -~10123~^~621~^0.005^18^0.001^~1~^~A~^^^1^0.003^0.010^10^0.004^0.007^~2, 3~^~05/01/2012~ -~10123~^~624~^0.009^18^0.001^~1~^~A~^^^1^0.003^0.022^8^0.006^0.012^~2, 3~^~03/01/2016~ -~10123~^~625~^0.008^18^0.001^~1~^~A~^^^1^0.005^0.015^8^0.007^0.010^~2, 3~^~03/01/2016~ -~10123~^~626~^0.824^18^0.043^~1~^~AS~^^^1^0.572^1.146^12^0.729^0.918^~2, 3~^~03/01/2016~ -~10123~^~627~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2016~ -~10123~^~628~^0.288^18^0.018^~1~^~A~^^^1^0.189^0.454^11^0.248^0.328^~2, 3~^~03/01/2016~ -~10123~^~629~^0.004^18^0.000^~1~^~A~^^^1^0.001^0.011^9^0.003^0.004^~1, 2, 3~^~05/01/2012~ -~10123~^~630~^0.010^18^0.001^~1~^~AS~^^^1^0.007^0.013^11^0.008^0.011^~2, 3~^~03/01/2016~ -~10123~^~631~^0.020^18^0.001^~1~^~A~^^^1^0.014^0.025^12^0.018^0.022^~2, 3~^~03/01/2016~ -~10123~^~645~^15.922^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~646~^5.757^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~652~^0.016^18^0.001^~1~^~A~^^^1^0.010^0.025^12^0.014^0.019^~2, 3~^~03/01/2016~ -~10123~^~653~^0.094^18^0.007^~1~^~A~^^^1^0.063^0.161^10^0.079^0.109^~2, 3~^~03/01/2016~ -~10123~^~654~^0.002^18^0.000^~1~^~A~^^^1^0.001^0.003^8^0.001^0.002^~1, 2, 3~^~05/01/2012~ -~10123~^~662~^0.007^18^0.001^~1~^~A~^^^1^0.003^0.016^9^0.005^0.009^~2, 3~^~03/01/2016~ -~10123~^~663~^0.105^18^0.008^~1~^~A~^^^1^0.000^0.151^12^0.088^0.123^~1, 2, 3~^~03/01/2016~ -~10123~^~664~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10123~^~665~^0.034^18^0.002^~1~^~A~^^^1^0.019^0.049^9^0.028^0.040^~2, 3~^~03/01/2016~ -~10123~^~670~^0.046^18^0.004^~1~^~A~^^^1^0.019^0.073^11^0.038^0.054^~2, 3~^~03/01/2016~ -~10123~^~671~^0.001^18^0.000^~1~^~A~^^^1^0.001^0.002^13^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~10123~^~672~^0.209^18^0.012^~1~^~A~^^^1^0.119^0.339^15^0.183^0.235^~2, 3~^~03/01/2016~ -~10123~^~673~^0.816^18^0.043^~1~^~A~^^^1^0.568^1.141^12^0.723^0.910^~2, 3~^~03/01/2016~ -~10123~^~674~^14.600^18^0.806^~1~^~A~^^^1^10.362^22.591^11^12.817^16.384^~2, 3~^~03/01/2016~ -~10123~^~675~^4.999^18^0.291^~1~^~A~^^^1^2.646^7.548^14^4.374^5.623^~2, 3~^~03/01/2016~ -~10123~^~676~^0.010^18^0.001^~1~^~A~^^^1^0.007^0.013^11^0.008^0.011^~2, 3~^~03/01/2016~ -~10123~^~685~^0.004^18^0.001^~1~^~A~^^^1^0.001^0.012^12^0.003^0.005^~1, 2, 3~^~03/01/2016~ -~10123~^~687~^0.086^18^0.007^~1~^~A~^^^1^0.057^0.153^10^0.070^0.101^~2, 3~^~03/01/2016~ -~10123~^~689~^0.065^18^0.004^~1~^~AS~^^^1^0.041^0.089^13^0.057^0.073^~2, 3~^~03/01/2016~ -~10123~^~693~^0.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~10123~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10123~^~851~^0.217^18^0.014^~1~^~A~^^^1^0.104^0.318^13^0.186^0.247^~2, 3~^~03/01/2016~ -~10123~^~852~^0.029^18^0.002^~1~^~A~^^^1^0.016^0.044^15^0.025^0.032^~2, 3~^~03/01/2016~ -~10123~^~853~^0.036^18^0.002^~1~^~A~^^^1^0.025^0.051^12^0.032^0.041^~2, 3~^~03/01/2016~ -~10123~^~856~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~03/01/2016~ -~10123~^~858~^0.039^18^0.002^~1~^~A~^^^1^0.029^0.052^11^0.035^0.043^~2, 3~^~03/01/2016~ -~10128~^~312~^0.063^6^0.008^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~315~^0.030^3^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~404~^0.475^6^0.026^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~405~^0.180^6^0.021^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~406~^3.650^6^0.214^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~410~^0.476^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~415~^0.210^5^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~501~^0.113^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~502~^0.451^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~503~^0.477^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~504~^0.817^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~505~^0.871^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~506~^0.259^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~507~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~508~^0.453^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~509~^0.342^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~510~^0.565^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~511~^0.717^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~512~^0.338^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~513~^0.657^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~514~^0.969^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~515~^1.611^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~516~^0.839^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~517~^0.623^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~518~^0.441^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~606~^12.910^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~610~^0.210^4^0.084^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~611~^0.210^4^0.095^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~612~^0.720^4^0.118^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~613~^7.520^4^0.280^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~614~^4.270^4^0.291^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~617~^14.950^4^0.724^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~618~^4.660^4^0.460^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~619~^0.900^4^0.258^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~626~^1.840^4^0.095^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10128~^~645~^16.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10128~^~646~^5.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10130~^~312~^0.053^5^0.007^~1~^~A~^^^1^0.041^0.076^2^0.021^0.085^~2, 3~^~05/01/2015~ -~10130~^~315~^0.015^5^0.001^~1~^~A~^^^1^0.011^0.024^1^-0.003^0.033^~1, 2, 3~^~05/01/2015~ -~10130~^~404~^0.511^3^^~1~^~A~^^^1^0.420^0.610^^^^~2, 3~^~05/01/2015~ -~10130~^~405~^0.141^3^^~1~^~A~^^^1^0.130^0.160^^^^~2, 3~^~05/01/2015~ -~10130~^~406~^7.227^3^^~1~^~A~^^^1^6.390^8.240^^^^~2, 3~^~05/01/2015~ -~10130~^~410~^0.610^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~415~^0.241^3^^~1~^~A~^^^1^0.220^0.260^^^^~2, 3~^~05/01/2015~ -~10130~^~501~^0.241^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~502~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~503~^0.958^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~504~^1.666^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~505~^1.800^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~506~^0.555^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~508~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~509~^0.802^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~510~^1.024^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~511~^1.304^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~512~^0.823^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~513~^1.159^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~514~^1.893^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~515~^3.092^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~516~^0.915^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~517~^0.818^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~518~^0.845^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10130~^~521~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~10130~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10130~^~606~^0.900^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~10130~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10130~^~610~^0.009^3^^~1~^~A~^^^1^0.007^0.011^^^^~2, 3~^~04/01/2013~ -~10130~^~611~^0.004^3^^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~04/01/2013~ -~10130~^~612~^0.031^3^^~1~^~A~^^^1^0.026^0.039^^^^~2, 3~^~05/01/2015~ -~10130~^~613~^0.558^3^^~1~^~A~^^^1^0.472^0.697^^^^~2, 3~^~05/01/2015~ -~10130~^~614~^0.282^3^^~1~^~A~^^^1^0.235^0.359^^^^~2, 3~^~05/01/2015~ -~10130~^~615~^0.005^3^^~1~^~A~^^^1^0.003^0.007^^^^~2, 3~^~04/01/2013~ -~10130~^~617~^0.996^3^^~1~^~AS~^^^1^0.818^1.289^^^^~2, 3~^~05/01/2015~ -~10130~^~618~^0.370^3^^~1~^~AS~^^^1^0.207^0.525^^^^~2, 3~^~05/01/2015~ -~10130~^~619~^0.012^3^^~1~^~AS~^^^1^0.007^0.015^^^^~2, 3~^~04/01/2013~ -~10130~^~620~^0.049^3^^~1~^~A~^^^1^0.046^0.058^^^^~2, 3~^~04/01/2013~ -~10130~^~621~^0.001^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~624~^0.002^3^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~626~^0.066^3^^~1~^~AS~^^^1^0.059^0.076^^^^~2, 3~^~05/01/2015~ -~10130~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10130~^~628~^0.022^3^^~1~^~A~^^^1^0.016^0.028^^^^~2, 3~^~04/01/2013~ -~10130~^~629~^0.001^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~630~^0.001^3^^~1~^~AS~^^^1^0.000^0.004^^^^~2, 3~^~04/01/2013~ -~10130~^~631~^0.004^3^^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~04/01/2013~ -~10130~^~645~^1.090^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~10130~^~646~^0.467^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~10130~^~652~^0.002^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~653~^0.007^3^^~1~^~A~^^^1^0.005^0.009^^^^~2, 3~^~04/01/2013~ -~10130~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~663~^0.006^3^^~1~^~A~^^^1^0.006^0.007^^^^~2, 3~^~04/01/2013~ -~10130~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~665~^0.001^3^^~1~^~A~^^^1^0.000^0.005^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~670~^0.003^3^^~1~^~A~^^^1^0.001^0.005^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~672~^0.013^3^^~1~^~A~^^^1^0.006^0.018^^^^~2, 3~^~04/01/2013~ -~10130~^~673~^0.066^3^^~1~^~A~^^^1^0.059^0.076^^^^~2, 3~^~05/01/2015~ -~10130~^~674~^0.990^3^^~1~^~A~^^^1^0.812^1.283^^^^~2, 3~^~05/01/2015~ -~10130~^~675~^0.366^3^^~1~^~A~^^^1^0.206^0.520^^^^~2, 3~^~05/01/2015~ -~10130~^~676~^0.001^3^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~687~^0.005^3^^~1~^~A~^^^1^0.004^0.006^^^^~2, 3~^~04/01/2013~ -~10130~^~689~^0.010^3^^~1~^~AS~^^^1^0.009^0.011^^^^~2, 3~^~04/01/2013~ -~10130~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10130~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10130~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~851~^0.012^3^^~1~^~A~^^^1^0.007^0.015^^^^~2, 3~^~04/01/2013~ -~10130~^~852~^0.003^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~853~^0.007^3^^~1~^~A~^^^1^0.006^0.007^^^^~2, 3~^~04/01/2013~ -~10130~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10130~^~858~^0.008^3^^~1~^~A~^^^1^0.007^0.010^^^^~2, 3~^~04/01/2013~ -~10132~^~312~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~404~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~406~^0.220^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~410~^0.262^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~415~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~501~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~502~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~503~^0.198^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~504~^0.512^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~505~^0.500^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~506~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~507~^0.102^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~508~^0.337^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~509~^0.186^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~510~^0.291^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~511~^0.872^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~512~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~513~^0.953^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~514~^0.837^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~515~^1.279^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~516~^2.034^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~517~^1.220^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~518~^0.465^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10132~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~606~^2.945^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10132~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~612~^0.121^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~613~^2.075^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~614~^0.704^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~617~^5.196^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10132~^~618~^0.668^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10132~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10132~^~620~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~624~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~626~^0.386^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~628~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10132~^~645~^5.677^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~646~^0.784^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~663~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~669~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~672~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~674~^5.161^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~675~^0.638^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10132~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10132~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10132~^~851~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10134~^~312~^0.079^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~315~^0.054^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~404~^0.754^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~405~^0.202^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~406~^4.023^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~410~^0.403^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~415~^0.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~501~^0.251^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~502~^0.931^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~503~^0.918^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~504~^1.661^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~505~^1.775^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~506~^0.553^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~507~^0.315^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~508~^0.904^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~509~^0.687^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~510~^0.908^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~511~^1.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~512~^0.750^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~513~^1.236^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~514~^1.983^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~515~^3.413^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~516~^1.088^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~517~^0.894^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~518~^0.857^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~606~^1.810^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10134~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10134~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~612~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~613~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~614~^0.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~617~^2.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~618~^0.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~619~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~626~^0.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~645~^2.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10134~^~646~^0.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~312~^0.145^5^0.016^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~315~^0.041^4^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~404~^0.730^3^0.046^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~405~^0.330^3^0.035^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~406~^6.150^3^1.126^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~410~^0.720^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~415~^0.310^3^0.052^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~501~^0.238^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~502~^0.882^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~503~^0.870^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~504~^1.574^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~505~^1.682^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~506~^0.524^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~507~^0.298^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~508~^0.857^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~509~^0.651^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~510~^0.860^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~511~^1.289^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~512~^0.711^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~513~^1.171^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~514~^1.879^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~515~^3.234^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~516~^1.032^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~517~^0.847^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~518~^0.813^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~606~^3.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10136~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10136~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~610~^0.030^3^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~611~^0.020^3^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~612~^0.150^3^0.018^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~613~^1.860^3^0.114^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~614~^1.050^3^0.076^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~617~^4.000^3^0.234^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~618~^1.170^3^0.076^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~619~^0.240^3^0.082^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~626~^0.450^3^0.057^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~645~^4.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10136~^~646~^1.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~312~^0.084^20^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~315~^0.025^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~404~^0.836^21^0.026^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~405~^0.230^21^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~406~^5.302^21^0.227^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~410~^0.492^6^0.092^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~415~^0.450^21^0.035^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~501~^0.210^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~502~^0.826^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~503~^0.796^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~504~^1.438^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~505~^1.589^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~506~^0.482^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~507~^0.219^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~508~^0.713^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~509~^0.607^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~510~^0.829^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~511~^1.145^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~512~^0.731^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~513~^1.056^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~514~^1.707^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~515~^2.731^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~516~^0.905^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~517~^0.787^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~518~^0.719^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~606~^1.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10137~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10137~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~610~^0.010^3^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~611~^0.010^3^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~612~^0.060^4^0.009^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~613~^0.960^4^0.050^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~614~^0.470^4^0.041^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~617~^2.040^4^0.120^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~618~^0.360^4^0.018^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~619~^0.030^4^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~626~^0.170^4^0.019^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~645~^2.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10137~^~646~^0.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~312~^0.050^4^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~315~^0.024^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~404~^1.035^4^0.023^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~405~^0.247^4^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~406~^4.892^4^0.084^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~410~^0.570^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~415~^0.450^4^0.048^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~501~^0.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~502~^0.944^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~503~^0.911^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~504~^1.645^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~505~^1.818^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~506~^0.552^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~507~^0.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~508~^0.816^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~509~^0.694^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~510~^0.948^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~511~^1.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~512~^0.836^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~513~^1.208^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~514~^1.953^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~515~^3.124^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~516~^1.036^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~517~^0.900^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~518~^0.823^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~606~^1.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~612~^0.050^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~613~^1.070^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~614~^0.480^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~617~^2.300^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~618~^0.390^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~619~^0.050^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~626~^0.190^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~645~^2.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10138~^~646~^0.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~312~^0.130^4^0.020^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~315~^0.029^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~404~^0.820^4^0.045^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~405~^0.260^4^0.015^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~406~^5.300^4^0.885^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~410~^0.730^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~415~^0.300^4^0.025^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~501~^0.233^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~502~^0.916^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~503~^0.883^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~504~^1.596^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~505~^1.764^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~506~^0.535^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~507~^0.243^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~508~^0.791^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~509~^0.673^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~510~^0.920^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~511~^1.271^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~512~^0.811^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~513~^1.172^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~514~^1.895^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~515~^3.031^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~516~^1.005^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~517~^0.874^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~518~^0.798^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~606~^5.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~610~^0.030^4^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~611~^0.020^4^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~612~^0.160^4^0.027^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~613~^3.190^4^0.590^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~614~^1.650^4^0.315^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~617~^6.610^4^1.116^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~618~^1.620^4^0.279^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~619~^0.160^4^0.068^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~626~^0.470^4^0.073^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10140~^~645~^7.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10140~^~646~^1.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~312~^0.108^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~315~^0.048^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~404~^0.567^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~405~^0.242^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~406~^3.881^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~410~^0.402^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~415~^0.420^0^^~4~^^^^^^^^^^^~04/01/2006~ -~10141~^~501~^0.334^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~502~^1.237^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~503~^1.219^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~504~^2.206^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~505~^2.357^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~506~^0.734^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~507~^0.418^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~508~^1.201^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~509~^0.912^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~510~^1.205^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~511~^1.806^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~512~^0.996^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~513~^1.641^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~514~^2.633^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~515~^4.532^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~516~^1.446^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~517~^1.188^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~518~^1.139^0^^~1~^^^^^^^^^^^~04/01/2006~ -~10141~^~606~^2.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10141~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~10141~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~610~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~612~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~613~^1.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~614~^0.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~617~^3.501^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~618~^0.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~620~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~626~^0.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10141~^~645~^3.821^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10141~^~646~^0.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~312~^0.074^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~315~^0.031^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~404~^0.845^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~405~^0.205^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~406~^4.809^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~410~^0.498^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~415~^0.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~501~^0.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~502~^0.897^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~503~^0.884^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~504~^1.601^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~505~^1.710^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~506~^0.532^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~507~^0.303^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~508~^0.871^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~509~^0.662^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~510~^0.875^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~511~^1.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~512~^0.723^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~513~^1.191^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~514~^1.910^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~515~^3.289^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~516~^1.049^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~517~^0.862^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~518~^0.826^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~606~^4.572^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~611~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~612~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~613~^2.861^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~614~^1.471^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~617~^5.612^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~618~^0.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~619~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~626~^0.420^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~645~^6.092^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10142~^~646~^1.411^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~312~^0.070^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~315~^0.023^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~404~^0.460^5^0.052^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~405~^0.154^5^0.026^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~406~^3.014^5^0.258^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~410~^0.302^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~415~^0.160^3^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~501~^0.149^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~502~^0.569^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~503~^0.558^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~504~^1.010^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~505~^1.086^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~506~^0.337^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~507~^0.172^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~508~^0.542^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~509~^0.419^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~510~^0.556^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~511~^0.824^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~512~^0.466^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~513~^0.751^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~514~^1.205^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~515~^2.051^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~516~^0.658^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~517~^0.546^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~518~^0.519^12^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~606~^10.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~611~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~612~^0.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~613~^6.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~614~^3.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~617~^12.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~618~^2.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~619~^0.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~620~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~626~^0.890^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10146~^~645~^13.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10146~^~646~^3.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~312~^0.080^46^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~315~^0.037^11^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~404~^0.800^46^0.015^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~405~^0.200^46^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~406~^5.080^46^0.093^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~410~^0.620^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~415~^0.370^46^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~501~^0.235^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~502~^0.870^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~503~^0.858^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~504~^1.552^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~505~^1.658^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~506~^0.516^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~507~^0.295^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~508~^0.845^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~509~^0.641^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~510~^0.848^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~511~^1.270^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~512~^0.701^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~513~^1.154^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~514~^1.852^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~515~^3.189^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~516~^1.017^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~517~^0.836^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~518~^0.801^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~606~^1.440^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~610~^0.020^11^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~611~^0.020^11^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~612~^0.080^11^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~613~^0.840^11^0.038^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~614~^0.470^11^0.024^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~617~^1.770^11^0.074^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~618~^0.430^11^0.030^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~619~^0.040^11^0.009^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~626~^0.190^11^0.012^~1~^^^^^^^^^^^~12/01/1992~ -~10149~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~645~^1.960^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10149~^~646~^0.470^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~312~^0.071^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~315~^0.028^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~404~^0.777^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~405~^0.189^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~406~^4.463^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~410~^0.467^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~415~^0.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~501~^0.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~502~^0.806^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~503~^0.787^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~504~^1.455^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~505~^1.565^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~506~^0.473^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~507~^0.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~508~^0.791^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~509~^0.584^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~510~^0.807^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~511~^1.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~512~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~513~^1.014^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~514~^1.627^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~515~^2.801^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~516~^0.893^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~517~^0.733^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~518~^0.703^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~606~^6.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10150~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10150~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~610~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~611~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~612~^0.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~613~^4.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~614~^2.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~617~^8.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~618~^1.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~619~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~620~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~626~^0.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10150~^~645~^8.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10150~^~646~^1.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~312~^0.079^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~315~^0.035^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~404~^0.932^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~405~^0.226^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~406~^5.252^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~410~^0.538^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~415~^0.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~501~^0.268^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~502~^0.992^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~503~^0.978^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~504~^1.771^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~505~^1.892^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~506~^0.589^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~507~^0.336^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~508~^0.964^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~509~^0.732^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~510~^0.967^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~511~^1.449^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~512~^0.800^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~513~^1.317^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~514~^2.113^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~515~^3.638^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~516~^1.160^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~517~^0.953^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~518~^0.914^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~606~^1.920^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10152~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10152~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~610~^0.020^30^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~611~^0.020^28^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~612~^0.070^109^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~613~^1.210^109^0.027^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~614~^0.590^109^0.014^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~617~^2.400^109^0.054^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~618~^0.520^109^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~619~^0.060^36^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~620~^0.070^25^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~626~^0.220^109^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~645~^2.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10152~^~646~^0.660^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~312~^0.087^21^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~315~^0.016^21^0.001^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~404~^0.680^5^0.072^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~405~^0.254^5^0.020^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~406~^5.020^5^0.200^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~410~^0.498^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~415~^0.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~501~^0.300^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~502~^1.114^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~503~^1.098^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~504~^1.988^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~505~^2.124^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~506~^0.661^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~507~^0.377^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~508~^1.082^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~509~^0.822^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~510~^1.086^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~511~^1.627^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~512~^0.898^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~513~^1.479^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~514~^2.372^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~515~^4.084^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~516~^1.302^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~517~^1.070^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~518~^1.026^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~606~^1.840^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10153~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10153~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~610~^0.020^30^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~611~^0.020^28^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~612~^0.070^109^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~613~^1.170^109^0.020^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~614~^0.560^109^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~617~^2.320^109^0.039^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~618~^0.500^109^0.014^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~619~^0.060^36^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~620~^0.070^25^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~626~^0.210^109^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~645~^2.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10153~^~646~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10163~^~312~^0.059^6^0.002^~1~^~A~^^^1^0.052^0.063^5^0.054^0.064^~2, 3~^~05/01/2014~ -~10163~^~315~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~404~^0.608^3^0.042^~1~^~A~^^^1^0.533^0.679^2^0.427^0.790^~2, 3~^~05/01/2014~ -~10163~^~405~^0.240^3^0.006^~1~^~A~^^^1^0.230^0.250^2^0.215^0.265^~2, 3~^~05/01/2014~ -~10163~^~406~^9.303^3^0.452^~1~^~A~^^^1^8.750^10.200^2^7.357^11.250^~2, 3~^~05/01/2014~ -~10163~^~410~^0.835^2^^~1~^~A~^^^1^0.810^0.860^1^^^^~05/01/2014~ -~10163~^~415~^0.383^3^0.003^~1~^~A~^^^1^0.380^0.390^2^0.369^0.398^~2, 3~^~05/01/2014~ -~10163~^~501~^0.316^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~502~^1.348^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~503~^1.477^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~504~^2.557^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~505~^2.784^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~506~^0.827^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~507~^0.346^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~508~^1.262^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~509~^1.142^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~510~^1.569^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~511~^1.998^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~512~^1.297^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~513~^1.762^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~514~^2.937^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~515~^4.793^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~516~^1.353^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~517~^1.214^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~518~^1.298^0^^~1~^~A~^~10040~^^^^^^^^^~05/01/2014~ -~10163~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~606~^1.658^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~610~^0.020^6^0.001^~1~^~A~^^^1^0.016^0.023^5^0.017^0.023^~2, 3~^~05/01/2014~ -~10163~^~611~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~05/01/2014~ -~10163~^~612~^0.061^6^0.006^~1~^~A~^^^1^0.041^0.080^5^0.045^0.076^~2, 3~^~05/01/2014~ -~10163~^~613~^1.027^6^0.086^~1~^~A~^^^1^0.754^1.330^5^0.807^1.248^~2, 3~^~05/01/2014~ -~10163~^~614~^0.519^6^0.045^~1~^~A~^^^1^0.394^0.683^5^0.404^0.633^~2, 3~^~05/01/2014~ -~10163~^~615~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~05/01/2014~ -~10163~^~617~^1.836^6^0.167^~1~^~AS~^^^1^1.250^2.323^5^1.407^2.265^~2, 3~^~05/01/2014~ -~10163~^~618~^0.497^6^0.038^~1~^~AS~^^^1^0.441^0.684^5^0.399^0.594^~2, 3~^~05/01/2014~ -~10163~^~619~^0.015^6^0.002^~1~^~AS~^^^1^0.010^0.026^5^0.009^0.021^~2, 3~^~05/01/2014~ -~10163~^~620~^0.053^6^0.003^~1~^~A~^^^1^0.044^0.065^5^0.044^0.061^~2, 3~^~05/01/2014~ -~10163~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~10163~^~624~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~10163~^~625~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~10163~^~626~^0.127^6^0.014^~1~^~AS~^^^1^0.076^0.170^5^0.090^0.163^~2, 3~^~05/01/2014~ -~10163~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~628~^0.031^6^0.003^~1~^~A~^^^1^0.022^0.037^5^0.024^0.037^~2, 3~^~05/01/2014~ -~10163~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~10163~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~05/01/2014~ -~10163~^~645~^2.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~646~^0.606^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~05/01/2014~ -~10163~^~653~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.008^0.012^~2, 3~^~05/01/2014~ -~10163~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~662~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~10163~^~663~^0.012^6^0.002^~1~^~A~^^^1^0.007^0.018^5^0.008^0.016^~2, 3~^~05/01/2014~ -~10163~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~10163~^~670~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~10163~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~672~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.020^~2, 3~^~05/01/2014~ -~10163~^~673~^0.126^6^0.014^~1~^~A~^^^1^0.076^0.167^5^0.090^0.162^~2, 3~^~05/01/2014~ -~10163~^~674~^1.824^6^0.166^~1~^~A~^^^1^1.241^2.311^5^1.397^2.251^~2, 3~^~05/01/2014~ -~10163~^~675~^0.492^6^0.038^~1~^~A~^^^1^0.438^0.678^5^0.396^0.589^~2, 3~^~05/01/2014~ -~10163~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~10163~^~687~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.011^5^0.006^0.011^~2, 3~^~05/01/2014~ -~10163~^~689~^0.011^6^0.001^~1~^~AS~^^^1^0.009^0.013^5^0.010^0.012^~2, 3~^~05/01/2014~ -~10163~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~10163~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~851~^0.015^6^0.002^~1~^~A~^^^1^0.010^0.025^5^0.009^0.020^~2, 3~^~05/01/2014~ -~10163~^~852~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~10163~^~853~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~05/01/2014~ -~10163~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~10163~^~858~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~05/01/2014~ -~10164~^~312~^0.054^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~404~^0.615^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~405~^0.203^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~406~^7.413^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~410~^0.670^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~415~^0.336^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~501~^0.252^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~502~^0.929^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~503~^1.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~504~^1.740^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~505~^1.880^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~506~^0.579^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~507~^0.238^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~508~^0.878^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~509~^0.837^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~510~^1.069^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~511~^1.362^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~512~^0.860^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~513~^1.211^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~514~^1.977^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~515~^3.229^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~516~^0.955^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~517~^0.855^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~518~^0.883^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~521~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~605~^0.081^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~606~^4.413^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~610~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~612~^0.165^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~613~^2.755^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~614~^1.396^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~617~^4.981^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~618~^1.822^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~619~^0.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~620~^0.051^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~626~^0.270^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~628~^0.091^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~645~^5.349^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~646~^2.050^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~652~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~653~^0.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~662~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~663~^0.066^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~670~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~672~^0.072^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~673~^0.052^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~674~^4.915^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~675~^1.806^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~693~^0.066^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10164~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~851~^0.071^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~853~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10164~^~858~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10165~^~312~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~315~^0.005^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~404~^0.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~405~^0.061^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~406~^1.620^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~410~^0.205^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~415~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~501~^0.017^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~502~^0.166^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~503~^0.133^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~504~^0.353^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~505~^0.419^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~506~^0.075^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~507~^0.044^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~508~^0.189^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~509~^0.082^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~510~^0.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~511~^0.522^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~512~^0.057^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~513~^0.283^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~514~^0.417^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~515~^0.693^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~516~^0.361^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~517~^0.268^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~518~^0.190^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10165~^~606~^29.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10165~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10165~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~611~^0.160^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~612~^1.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~613~^17.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~614~^10.330^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~617~^34.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~618~^8.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~619~^0.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~626~^2.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~645~^37.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10165~^~646~^9.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~312~^0.044^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~315~^0.005^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~404~^0.241^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~405~^0.068^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~406~^1.820^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~410~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~415~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~501~^0.018^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~502~^0.187^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~503~^0.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~504~^0.396^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~505~^0.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~506~^0.084^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~507~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~508~^0.212^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~509~^0.092^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~510~^0.271^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~511~^0.586^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~512~^0.064^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~513~^0.318^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~514~^0.469^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~515~^0.780^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~516~^0.406^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~517~^0.302^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~518~^0.214^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10166~^~606~^22.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10166~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10166~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~611~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~612~^0.820^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~613~^13.990^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~614~^7.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~617~^27.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~618~^5.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~619~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~620~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~626~^1.810^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~645~^29.470^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10166~^~646~^6.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~312~^0.069^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~315~^0.007^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~404~^0.287^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~405~^0.091^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~406~^2.228^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~410~^0.293^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~415~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~501~^0.025^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~502~^0.251^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~503~^0.201^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~504~^0.534^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~505~^0.633^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~506~^0.113^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~507~^0.067^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~508~^0.286^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~509~^0.124^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~510~^0.365^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~511~^0.789^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~512~^0.086^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~513~^0.428^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~514~^0.631^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~515~^1.049^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~516~^0.546^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~517~^0.406^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~518~^0.287^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~606~^22.690^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~611~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~612~^0.820^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~613~^14.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~614~^7.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~617~^27.460^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~618~^5.770^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~619~^0.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~620~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~626~^1.830^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10167~^~645~^29.690^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10167~^~646~^6.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~312~^0.113^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~315~^0.024^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~404~^0.612^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~405~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~406~^4.127^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~410~^0.559^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~415~^0.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~501~^0.227^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~502~^0.885^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~503~^0.861^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~504~^1.602^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~505~^1.728^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~506~^0.516^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~507~^0.294^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~508~^0.871^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~509~^0.637^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~510~^0.894^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~511~^1.403^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~512~^0.683^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~513~^1.088^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~514~^1.746^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~515~^3.005^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~516~^0.958^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~517~^0.787^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~518~^0.755^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~606~^7.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10168~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10168~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~610~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~611~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~612~^0.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~613~^4.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~614~^2.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~617~^9.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~618~^1.980^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~619~^0.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~620~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~626~^0.670^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~645~^10.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10168~^~646~^2.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~312~^0.128^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~315~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~404~^0.727^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~405~^0.226^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~406~^4.798^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~410~^0.654^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~415~^0.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~501~^0.299^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~502~^1.109^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~503~^1.094^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~504~^1.980^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~505~^2.115^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~506~^0.659^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~507~^0.375^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~508~^1.078^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~509~^0.818^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~510~^1.082^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~511~^1.620^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~512~^0.894^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~513~^1.473^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~514~^2.363^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~515~^4.067^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~516~^1.297^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~517~^1.066^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~518~^1.022^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~606~^2.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10169~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10169~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~610~^0.030^30^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~611~^0.020^28^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~612~^0.090^109^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~613~^1.490^109^0.021^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~614~^0.720^109^0.011^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~617~^2.960^109^0.042^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~618~^0.640^109^0.016^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~619~^0.080^36^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~620~^0.090^25^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~626~^0.270^109^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~645~^3.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10169~^~646~^0.810^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~312~^0.090^4^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~315~^0.033^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~404~^0.540^4^0.050^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~405~^0.220^4^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~406~^2.720^4^0.150^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~410~^0.710^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~415~^0.260^4^0.020^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~501~^0.198^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~502~^0.733^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~503~^0.722^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~504~^1.307^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~505~^1.397^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~506~^0.435^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~507~^0.248^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~508~^0.712^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~509~^0.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~510~^0.714^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~511~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~512~^0.590^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~513~^0.972^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~514~^1.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~515~^2.685^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~516~^0.856^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~517~^0.704^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~518~^0.675^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~606~^7.939^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~610~^0.040^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~611~^0.030^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~612~^0.269^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~613~^4.748^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~614~^2.853^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~617~^9.026^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~618~^2.015^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~619~^0.319^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~626~^0.728^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~645~^9.755^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10170~^~646~^2.334^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~312~^0.076^4^0.012^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~315~^0.023^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~404~^0.460^4^0.016^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~405~^0.285^4^0.027^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~406~^2.377^4^0.143^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~410~^0.770^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~415~^0.210^4^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~501~^0.207^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~502~^0.768^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~503~^0.757^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~504~^1.371^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~505~^1.465^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~506~^0.456^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~507~^0.260^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~508~^0.746^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~509~^0.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~510~^0.749^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~511~^1.122^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~512~^0.619^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~513~^1.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~514~^1.636^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~515~^2.817^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~516~^0.898^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~517~^0.738^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~518~^0.708^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~606~^8.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~610~^0.050^4^0.009^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~611~^0.040^4^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~612~^0.250^4^0.034^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~613~^5.120^4^0.348^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~614~^2.930^4^0.180^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~617~^10.150^4^0.748^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~618~^2.150^4^0.217^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~619~^0.360^4^0.069^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~626~^0.880^4^0.065^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~645~^11.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10171~^~646~^2.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10173~^~312~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~404~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~405~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~406~^0.585^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~410~^0.240^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~415~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~606~^4.343^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~612~^0.189^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~613~^3.019^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~614~^1.094^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~617~^7.232^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~618~^1.319^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~619~^0.064^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~10173~^~620~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~626~^0.612^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~628~^0.161^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10173~^~645~^8.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~646~^1.540^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~653~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~672~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10173~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10173~^~851~^0.064^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10174~^~312~^0.084^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~315~^0.011^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~404~^0.210^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~405~^0.110^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~406~^2.060^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~410~^0.673^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~415~^0.370^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~501~^0.089^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~502~^0.550^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~503~^0.408^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~504~^0.905^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~505~^1.012^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~506~^0.320^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~507~^0.230^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~508~^0.479^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~509~^0.320^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~510~^0.515^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~511~^1.189^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~512~^0.302^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~513~^1.278^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~514~^1.384^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~515~^2.130^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~516~^2.361^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~517~^1.509^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~518~^0.692^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~606~^11.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~612~^0.530^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~613~^7.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~614~^3.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~617~^14.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~618~^3.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~619~^0.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~620~^0.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~626~^1.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10174~^~645~^15.800^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10174~^~646~^3.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~312~^0.067^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~315~^0.006^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~404~^0.070^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~405~^0.070^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~406~^1.120^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~410~^0.423^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~415~^0.270^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~501~^0.102^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~502~^0.595^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~503~^0.391^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~504~^0.952^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~505~^1.020^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~506~^0.306^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~507~^0.220^0^^~4~^^^^^^^^^^^~12/01/1992~ -~10175~^~508~^0.510^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~509~^0.340^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~510~^0.510^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~511~^1.173^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~512~^0.306^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~513~^1.258^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~514~^1.428^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~515~^2.193^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~516~^2.261^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~517~^1.428^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~518~^0.731^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~606~^12.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~612~^0.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~613~^8.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~614~^3.750^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~617~^15.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~618~^3.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~619~^0.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~620~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~626~^1.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~645~^16.890^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10175~^~646~^3.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10176~^~312~^0.118^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~315~^0.013^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~404~^0.567^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~405~^0.395^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~406~^9.667^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~410~^1.357^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~415~^0.562^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10176~^~501~^0.352^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~502~^1.300^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~503~^1.400^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~504~^2.433^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~505~^2.629^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~506~^0.810^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~507~^0.333^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~508~^1.228^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~509~^1.171^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~510~^1.495^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~511~^1.905^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~512~^1.202^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~513~^1.693^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~514~^2.765^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~515~^4.516^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~516~^1.336^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~517~^1.195^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~518~^1.234^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~521~^0.103^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10176~^~605~^0.026^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~606~^2.597^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~610~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~611~^0.007^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~612~^0.091^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~613~^1.590^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~614~^0.863^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~615~^0.012^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~617~^2.807^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~618~^0.886^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~619~^0.037^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~620~^0.088^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~626~^0.174^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~628~^0.047^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~645~^3.028^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~646~^1.059^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~653~^0.019^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~663~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~672~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~674~^2.783^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~693~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~851~^0.033^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10176~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~312~^0.105^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~315~^0.012^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~404~^0.553^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~405~^0.385^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~406~^9.432^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~410~^1.324^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~415~^0.548^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~ -~10177~^~501~^0.343^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~502~^1.268^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~503~^1.366^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~504~^2.374^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~505~^2.565^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~506~^0.790^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~507~^0.325^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~508~^1.198^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~509~^1.143^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~510~^1.459^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~511~^1.858^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~512~^1.173^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~513~^1.652^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~514~^2.698^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~515~^4.406^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~516~^1.303^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~517~^1.166^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~518~^1.204^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10177~^~521~^0.101^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~10177~^~605~^0.025^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~606~^2.563^0^^~4~^~NC~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~607~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~608~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~609~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~610~^0.008^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~611~^0.006^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~612~^0.090^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~613~^1.569^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~614~^0.852^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~615~^0.012^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~617~^2.770^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~618~^1.200^0^^~1~^^^^^^^^^^^~05/01/2010~ -~10177~^~619~^0.037^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~620~^0.087^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~621~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~624~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~625~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~626~^0.172^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~627~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~628~^0.047^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~629~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~630~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~631~^0.009^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~645~^5.759^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2013~ -~10177~^~646~^1.408^0^^~4~^~NC~^~10032~^^^^^^^^^~07/01/2013~ -~10177~^~652~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~653~^0.019^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~654~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~663~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~672~^0.034^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~674~^2.747^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~676~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~685~^0.003^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~687~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~689~^0.004^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~693~^0.024^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~695~^0.002^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~697~^0.000^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~851~^0.033^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10177~^~856~^0.001^0^^~4~^~BFYN~^~10032~^^^^^^^^^~05/01/2010~ -~10178~^~312~^0.105^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~404~^0.485^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~405~^0.335^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~406~^8.311^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~410~^1.166^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~415~^0.476^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~501~^0.290^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~502~^1.073^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~503~^1.155^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~504~^2.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~505~^2.170^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~506~^0.669^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~507~^0.275^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~508~^1.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~509~^0.967^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~510~^1.234^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~511~^1.572^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~512~^0.992^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~513~^1.398^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~514~^2.282^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~515~^3.727^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~516~^1.103^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~517~^0.987^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~518~^1.019^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~521~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10178~^~605~^0.119^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10178~^~606~^4.266^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10178~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~610~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~611~^0.010^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~612~^0.150^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~613~^2.599^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~614~^1.427^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~615~^0.020^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~617~^8.827^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~618~^2.547^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~619~^0.113^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~620~^0.140^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~625~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~626~^0.482^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~628~^0.155^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~631~^0.017^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~645~^9.466^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10178~^~646~^2.830^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10178~^~652~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~653~^0.037^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~663~^0.099^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~665~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10178~^~672~^0.100^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~674~^8.728^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~675~^1.342^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10178~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~685~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2013~ -~10178~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~689~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10178~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10178~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10178~^~851~^0.100^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10178~^~856~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10179~^~312~^0.118^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~315~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~404~^0.536^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~405~^0.369^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~406~^9.186^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~410~^1.288^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~415~^0.525^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~501~^0.329^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~502~^1.215^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~503~^1.308^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~504~^2.274^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~505~^2.457^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~506~^0.757^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~507~^0.312^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~508~^1.148^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~509~^1.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~510~^1.398^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~511~^1.781^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~512~^1.124^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~513~^1.583^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~514~^2.585^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~515~^4.221^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~516~^1.249^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~517~^1.117^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~518~^1.154^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~521~^0.096^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~605~^0.075^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~606~^4.867^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~610~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~611~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~612~^0.171^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~613~^2.964^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~614~^1.629^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~615~^0.023^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~617~^5.111^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~618~^1.854^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~619~^0.082^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~620~^0.095^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~626~^0.275^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~628~^0.090^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~645~^5.478^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~646~^2.127^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~652~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~653~^0.043^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~663~^0.058^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~672~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~674~^5.053^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~675~^1.051^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10179~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~689~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~693~^0.058^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~851~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10179~^~856~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~312~^0.106^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~315~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~404~^0.521^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~405~^0.358^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~406~^8.931^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~410~^1.252^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~415~^0.510^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~501~^0.319^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~502~^1.179^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~503~^1.269^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~504~^2.207^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~505~^2.384^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~506~^0.735^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~507~^0.302^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~508~^1.114^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~509~^1.062^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~510~^1.356^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~511~^1.727^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~512~^1.090^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~513~^1.536^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~514~^2.508^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~515~^4.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~516~^1.212^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~517~^1.084^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~518~^1.120^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~521~^0.094^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~605~^0.079^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~606~^5.056^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~610~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~611~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~612~^0.178^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~613~^3.079^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~614~^1.694^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~615~^0.024^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~617~^5.302^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~618~^2.226^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~619~^0.086^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~620~^0.095^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~624~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~625~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~626~^0.283^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~628~^0.094^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~645~^5.680^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~646~^2.218^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~652~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~653~^0.045^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~654~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~663~^0.061^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~665~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~672~^0.077^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~674~^5.240^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~675~^1.152^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10180~^~676~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~689~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~693~^0.061^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~695~^0.018^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~851~^0.076^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10180~^~856~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10181~^~312~^0.094^6^0.007^~1~^~A~^^^1^0.075^0.127^5^0.075^0.113^~2, 3~^~04/01/2010~ -~10181~^~315~^0.011^6^0.002^~1~^~A~^^^1^0.008^0.020^5^0.006^0.015^~2, 3~^~04/01/2010~ -~10181~^~404~^0.657^6^0.037^~1~^~A~^^^1^0.565^0.809^5^0.563^0.751^~2, 3~^~04/01/2010~ -~10181~^~405~^0.233^6^0.025^~1~^~A~^^^1^0.130^0.300^5^0.169^0.298^~2, 3~^~04/01/2010~ -~10181~^~406~^10.850^6^0.570^~1~^~A~^^^1^9.500^13.400^5^9.384^12.316^~2, 3~^~04/01/2010~ -~10181~^~410~^1.399^0^^~4~^~BFPN~^~10120~^^^^^^^^^~04/01/2010~ -~10181~^~415~^0.579^0^^~4~^~BFPN~^~10120~^^^^^^^^^~04/01/2010~ -~10181~^~501~^0.362^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~502~^1.339^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~503~^1.442^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~504~^2.507^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~505~^2.709^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~506~^0.835^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~507~^0.343^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~508~^1.265^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~509~^1.207^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~510~^1.541^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~511~^1.963^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~512~^1.239^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~513~^1.745^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~514~^2.849^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~515~^4.653^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~516~^1.377^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~517~^1.231^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~518~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10181~^~521~^0.106^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~10181~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~606~^1.784^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10181~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10181~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~1, 2, 3~^~04/01/2010~ -~10181~^~610~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~04/01/2010~ -~10181~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~04/01/2010~ -~10181~^~612~^0.065^6^0.006^~1~^~A~^^^1^0.041^0.084^5^0.049^0.082^~2, 3~^~04/01/2010~ -~10181~^~613~^1.110^6^0.100^~1~^~A~^^^1^0.760^1.390^5^0.854^1.365^~2, 3~^~04/01/2010~ -~10181~^~614~^0.576^6^0.044^~1~^~A~^^^1^0.408^0.709^5^0.464^0.688^~2, 3~^~04/01/2010~ -~10181~^~615~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.007^0.010^~2, 3~^~04/01/2010~ -~10181~^~617~^1.950^6^0.177^~1~^~AS~^^^1^1.369^2.524^5^1.495^2.405^~2, 3~^~04/01/2010~ -~10181~^~618~^0.568^6^0.051^~1~^~AS~^^^1^0.432^0.800^5^0.437^0.698^~2, 3~^~04/01/2010~ -~10181~^~619~^0.022^6^0.003^~1~^~AS~^^^1^0.016^0.033^5^0.015^0.029^~2, 3~^~04/01/2010~ -~10181~^~620~^0.060^6^0.001^~1~^~A~^^^1^0.057^0.064^5^0.057^0.063^~2, 3~^~04/01/2010~ -~10181~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~625~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~1, 2, 3~^~04/01/2010~ -~10181~^~626~^0.131^6^0.013^~1~^~A~^^^1^0.101^0.174^5^0.097^0.164^~2, 3~^~04/01/2010~ -~10181~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~628~^0.032^6^0.003^~1~^~A~^^^1^0.021^0.042^5^0.024^0.040^~2, 3~^~04/01/2010~ -~10181~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~10181~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2010~ -~10181~^~645~^2.113^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~646~^0.679^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^5^0.002^0.002^~2, 3~^~04/01/2010~ -~10181~^~653~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.009^0.013^~2, 3~^~04/01/2010~ -~10181~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~1, 2, 3~^~04/01/2010~ -~10181~^~663~^0.017^6^0.002^~1~^~A~^^^1^0.009^0.025^5^0.010^0.023^~2, 3~^~04/01/2010~ -~10181~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~672~^0.022^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.017^0.026^~2, 3~^~04/01/2010~ -~10181~^~674~^1.933^6^0.176^~1~^~A~^^^1^1.360^2.510^5^1.480^2.386^~2, 3~^~04/01/2010~ -~10181~^~675~^0.568^6^0.051^~1~^~A~^^^1^0.432^0.800^5^0.437^0.698^~2, 3~^~04/01/2010~ -~10181~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2010~ -~10181~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~689~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.004^~1, 2, 3~^~04/01/2010~ -~10181~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10181~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10181~^~851~^0.021^6^0.003^~1~^~A~^^^1^0.014^0.033^5^0.014^0.028^~2, 3~^~04/01/2010~ -~10181~^~856~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~10182~^~312~^0.089^26^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~315~^0.032^9^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~404~^0.889^28^0.033^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~405~^0.240^27^0.009^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~406~^5.090^27^0.178^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~410~^0.454^10^0.071^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~415~^0.380^27^0.023^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~501~^0.219^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~502~^0.811^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~503~^0.800^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~504~^1.448^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~505~^1.547^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~506~^0.482^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~507~^0.274^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~508~^0.788^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~509~^0.598^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~510~^0.791^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~511~^1.186^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~512~^0.653^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~513~^1.077^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~514~^1.729^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~515~^2.975^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~516~^0.949^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~517~^0.779^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~518~^0.747^10^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~606~^2.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10182~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10182~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~610~^0.020^20^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~611~^0.020^18^0.003^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~612~^0.120^22^0.008^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~613~^1.700^22^0.107^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~614~^0.860^22^0.051^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~617~^3.600^22^0.238^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~618~^0.810^22^0.048^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~619~^0.120^22^0.016^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~626~^0.340^22^0.016^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~645~^3.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10182~^~646~^0.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~312~^0.119^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~315~^0.046^6^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~404~^0.739^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~405~^0.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~406~^5.324^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~410~^0.597^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~415~^0.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~501~^0.243^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~502~^0.901^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~503~^0.888^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~504~^1.607^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~505~^1.718^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~506~^0.535^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~507~^0.304^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~508~^0.875^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~509~^0.664^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~510~^0.878^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~511~^1.316^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~512~^0.726^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~513~^1.196^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~514~^1.919^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~515~^3.303^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~516~^1.053^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~517~^0.865^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~518~^0.830^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~606~^2.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10183~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10183~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~610~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~612~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~613~^1.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~614~^0.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~617~^3.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~618~^0.900^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~619~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~626~^0.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~645~^3.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10183~^~646~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~312~^0.078^31^0.006^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~315~^0.024^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~404~^0.879^32^0.046^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~405~^0.230^32^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~406~^4.585^32^0.152^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~410~^0.458^14^0.066^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~415~^0.460^32^0.038^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~501~^0.204^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~502~^0.802^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~503~^0.773^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~504~^1.397^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~505~^1.543^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~506~^0.468^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~507~^0.212^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~508~^0.693^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~509~^0.589^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~510~^0.805^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~511~^1.112^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~512~^0.710^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~513~^1.026^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~514~^1.658^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~515~^2.653^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~516~^0.879^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~517~^0.764^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~518~^0.698^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~606~^2.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~610~^0.020^4^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~611~^0.010^7^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~612~^0.050^8^0.012^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~613~^1.600^8^0.102^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~614~^0.760^8^0.045^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~617~^3.280^8^0.179^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~618~^0.680^8^0.053^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~619~^0.080^8^0.012^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~626~^0.290^8^0.039^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~645~^3.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10184~^~646~^0.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~312~^0.078^8^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~315~^0.026^3^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~404~^0.961^8^0.022^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~405~^0.251^8^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~406~^5.032^8^0.309^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~410~^0.625^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~415~^0.400^8^0.033^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~501~^0.237^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~502~^0.934^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~503~^0.901^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~504~^1.628^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~505~^1.799^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~506~^0.546^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~507~^0.247^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~508~^0.807^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~509~^0.686^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~510~^0.938^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~511~^1.296^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~512~^0.827^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~513~^1.195^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~514~^1.933^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~515~^3.092^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~516~^1.025^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~517~^0.891^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~518~^0.814^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~606~^2.810^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~610~^0.030^4^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~611~^0.020^4^0.013^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~612~^0.090^6^0.010^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~613~^1.800^6^0.203^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~614~^0.880^6^0.109^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~617~^3.780^6^0.384^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~618~^0.810^6^0.098^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~619~^0.090^6^0.024^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~626~^0.280^6^0.027^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~645~^4.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10185~^~646~^0.900^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10186~^~312~^0.095^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~404~^0.635^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~405~^0.229^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~406~^10.523^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~410~^1.359^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~415~^0.558^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~501~^0.349^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~502~^1.291^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~503~^1.390^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~504~^2.417^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~505~^2.612^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~506~^0.805^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~507~^0.331^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~508~^1.220^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~509~^1.163^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~510~^1.485^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~511~^1.892^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~512~^1.194^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~513~^1.682^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~514~^2.747^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~515~^4.486^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~516~^1.327^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~517~^1.187^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~518~^1.226^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~521~^0.102^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~605~^0.044^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~606~^3.058^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~612~^0.110^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~613~^1.881^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~614~^1.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~617~^3.245^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~618~^1.109^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~619~^0.047^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~620~^0.065^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~626~^0.188^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~628~^0.056^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~645~^3.491^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~646~^1.278^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~653~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~663~^0.036^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~665~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~672~^0.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~674~^3.210^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~675~^1.104^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~693~^0.036^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10186~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~851~^0.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10186~^~856~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10187~^~312~^0.064^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~404~^0.841^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~405~^0.254^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~406~^4.504^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~410~^0.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~415~^0.445^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~501~^0.234^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~502~^0.855^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~503~^0.873^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~504~^1.509^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~505~^1.696^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~506~^0.493^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~507~^0.238^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~508~^0.753^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~509~^0.648^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~510~^1.021^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~511~^1.197^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~512~^0.738^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~513~^1.112^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~514~^1.741^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~515~^2.921^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~516~^0.983^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~517~^0.807^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~518~^0.783^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~606~^5.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~612~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~613~^3.280^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~614~^1.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~617~^6.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~618~^1.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~626~^0.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~628~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~645~^6.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10187~^~646~^1.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10188~^~312~^0.090^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~404~^0.611^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~405~^0.290^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~406~^6.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~410~^0.844^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~415~^0.542^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~501~^0.293^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~502~^1.186^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~503~^1.271^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~504~^2.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~505~^2.418^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~506~^0.713^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~507~^0.313^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~508~^1.089^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~509~^0.971^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~510~^1.392^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~511~^1.725^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~512~^1.103^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~513~^1.547^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~514~^2.529^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~515~^4.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~516~^1.242^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~517~^1.082^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~518~^1.123^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~521~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~605~^0.081^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~606~^4.893^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~612~^0.170^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~613~^3.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~614~^1.615^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~617~^5.507^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~618~^1.325^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~619~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~620~^0.079^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~626~^0.343^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~628~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~645~^5.976^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~646~^1.519^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~653~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~663~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~669~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~672~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~674~^3.466^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~675~^0.907^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~687~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~693~^0.053^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~695~^0.028^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10188~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10188~^~851~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10189~^~312~^0.064^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~404~^0.550^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~405~^0.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~406~^8.403^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~410~^0.788^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~415~^0.355^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~501~^0.282^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~502~^1.197^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~503~^1.311^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~504~^2.270^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~505~^2.470^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~506~^0.735^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~507~^0.308^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~508~^1.121^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~509~^1.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~510~^1.392^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~511~^1.773^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~512~^1.150^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~513~^1.564^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~514~^2.605^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~515~^4.252^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~516~^1.202^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~517~^1.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~518~^1.152^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~521~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~605~^0.081^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~606~^4.890^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~610~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~611~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~612~^0.182^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~613~^3.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~614~^1.544^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~615~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~617~^5.513^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~618~^1.937^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~619~^0.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~620~^0.071^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~626~^0.311^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~628~^0.099^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~645~^5.932^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~646~^2.198^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~652~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~653~^0.043^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~662~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~663~^0.066^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~670~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~672~^0.076^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~673~^0.108^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~674~^5.446^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~675~^1.920^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~687~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~689~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~693~^0.067^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~ -~10189~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~851~^0.073^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10189~^~858~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~10192~^~312~^0.091^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~404~^0.457^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~405~^0.305^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~406~^6.776^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~410~^0.818^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~415~^0.422^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~501~^0.221^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~502~^0.818^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~503~^0.880^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~504~^1.530^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~505~^1.654^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~506~^0.510^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~507~^0.210^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~508~^0.773^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~509~^0.737^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~510~^0.940^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~511~^1.198^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~512~^0.756^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~513~^1.065^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~514~^1.739^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~515~^2.840^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~516~^0.840^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~517~^0.752^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~518~^0.776^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~521~^0.065^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~605~^0.141^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~606~^5.783^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~610~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~611~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~612~^0.210^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~613~^3.549^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~614~^1.903^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~615~^0.026^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~617~^6.410^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~618~^2.368^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~619~^0.110^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~620~^0.080^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~626~^0.342^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~628~^0.107^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~631~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~645~^6.861^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~646~^2.676^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~652~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~653~^0.055^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~663~^0.101^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~665~^0.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~672~^0.092^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~674~^6.309^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~675~^2.341^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~693~^0.101^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~695~^0.039^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10192~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~851~^0.098^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10192~^~856~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~312~^0.107^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~404~^0.460^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~405~^0.331^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~406~^7.636^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~410~^1.260^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~415~^0.413^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~501~^0.274^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~502~^1.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~503~^1.089^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~504~^1.894^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~505~^2.046^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~506~^0.631^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~507~^0.259^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~508~^0.956^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~509~^0.912^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~510~^1.164^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~511~^1.483^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~512~^0.936^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~513~^1.318^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~514~^2.152^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~515~^3.515^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~516~^1.040^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~517~^0.930^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~518~^0.961^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~521~^0.080^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~605~^0.188^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~606~^7.800^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~610~^0.022^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~612~^0.281^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~613~^4.775^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~614~^2.580^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~615~^0.035^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~617~^8.695^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~618~^3.141^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~619~^0.147^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~620~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~626~^0.447^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~628~^0.147^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~631~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~645~^9.290^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~646~^3.529^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~652~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~653~^0.075^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~663~^0.137^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~665~^0.036^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~672~^0.124^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~674~^8.558^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~675~^3.105^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~689~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~693~^0.137^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~695~^0.052^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~ -~10193~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~851~^0.131^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10193~^~856~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~ -~10194~^~312~^0.054^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~315~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~404~^0.779^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~405~^0.247^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~406~^4.638^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~410~^0.703^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~415~^0.417^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~501~^0.245^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~502~^0.897^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~503~^0.916^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~504~^1.584^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~505~^1.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~506~^0.517^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~507~^0.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~508~^0.791^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~509~^0.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~510~^1.072^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~511~^1.258^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~512~^0.774^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~513~^1.169^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~514~^1.827^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~515~^3.063^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~516~^1.038^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~517~^0.850^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~518~^0.822^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~606~^4.860^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10194~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~611~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~612~^0.170^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~613~^3.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~614~^1.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~617~^5.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~618~^1.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~619~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~620~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~626~^0.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~628~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~645~^6.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10194~^~646~^1.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~312~^0.071^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~315~^0.009^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~404~^0.525^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~405~^0.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~406~^4.311^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~410~^0.605^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~415~^0.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~501~^0.322^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~502~^1.182^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~503~^1.205^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~504~^2.089^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~505~^2.349^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~506~^0.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~507~^0.329^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~508~^1.044^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~509~^0.894^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~510~^1.414^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~511~^1.669^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~512~^1.016^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~513~^1.547^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~514~^2.408^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~515~^4.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~516~^1.402^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~517~^1.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~518~^1.086^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~606~^6.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~612~^0.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~613~^3.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~614~^2.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~617~^6.550^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~618~^1.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~620~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~626~^0.500^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~628~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~645~^7.210^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10195~^~646~^1.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~312~^0.068^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~315~^0.018^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~404~^0.834^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~405~^0.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~406~^4.945^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~410~^0.701^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~415~^0.371^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~501~^0.339^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~502~^1.243^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~503~^1.267^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~504~^2.196^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~505~^2.469^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~506~^0.715^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~507~^0.346^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~508~^1.097^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~509~^0.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~510~^1.486^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~511~^1.752^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~512~^1.069^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~513~^1.625^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~514~^2.532^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~515~^4.239^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~516~^1.467^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~517~^1.195^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~518~^1.141^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~606~^5.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~612~^0.200^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~613~^3.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~614~^1.880^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~617~^6.330^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~618~^1.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~619~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~620~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~626~^0.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~628~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~645~^7.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10196~^~646~^1.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~312~^0.067^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~315~^0.007^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~404~^0.708^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~405~^0.313^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~406~^4.805^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~410~^0.723^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~415~^0.357^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~501~^0.314^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~502~^1.158^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~503~^1.179^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~504~^2.048^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~505~^2.304^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~506~^0.665^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~507~^0.322^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~508~^1.024^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~509~^0.874^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~510~^1.386^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~511~^1.644^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~512~^0.992^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~513~^1.522^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~514~^2.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~515~^3.944^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~516~^1.402^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~517~^1.133^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~518~^1.066^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~606~^6.720^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10197~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10197~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10197~^~612~^0.230^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~613~^4.150^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~614~^2.200^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~617~^7.250^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~618~^1.870^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~619~^0.120^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~620~^0.050^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~626~^0.530^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~628~^0.140^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10197~^~645~^7.960^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10197~^~646~^2.080^0^^~1~^^^^^^^^^^^~07/01/2003~ -~10198~^~312~^0.016^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~315~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~404~^0.604^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~405~^0.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~406~^5.044^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~410~^0.531^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~415~^0.363^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~501~^0.343^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~502~^1.232^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~503~^1.264^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~504~^2.166^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~505~^2.427^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~506~^0.715^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~507~^0.344^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~508~^1.077^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~509~^0.940^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~510~^1.464^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~511~^1.678^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~512~^1.078^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~513~^1.572^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~514~^2.503^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~515~^4.225^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~516~^1.282^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~517~^1.084^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~518~^1.115^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~606~^5.350^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~612~^0.180^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~613~^3.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~614~^1.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~617~^6.000^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~618~^1.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~619~^0.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~620~^0.080^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~626~^0.480^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~628~^0.130^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~645~^6.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10198~^~646~^1.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~312~^0.058^60^0.002^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~315~^0.010^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~404~^0.856^49^0.032^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~405~^0.268^52^0.007^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~406~^5.036^11^0.299^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~410~^0.766^4^0.082^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~415~^0.470^4^0.033^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~501~^0.277^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~502~^0.995^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~503~^1.021^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~504~^1.749^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~505~^1.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~506~^0.577^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~507~^0.278^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~508~^0.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~509~^0.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~510~^1.183^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~511~^1.355^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~512~^0.871^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~513~^1.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~514~^2.022^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~515~^3.413^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~516~^1.035^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~517~^0.876^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~518~^0.900^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~606~^2.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10199~^~610~^0.010^73^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~611~^0.010^75^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~612~^0.080^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~613~^1.430^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~614~^0.700^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~617~^2.660^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~618~^0.560^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~619~^0.030^190^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~620~^0.080^315^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~626~^0.200^378^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~628~^0.050^71^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~645~^2.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10199~^~646~^0.700^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~312~^0.074^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~315~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~404~^0.549^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~405~^0.258^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~406~^4.519^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~410~^0.638^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~415~^0.331^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~501~^0.355^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~502~^1.276^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~503~^1.309^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~504~^2.242^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~505~^2.513^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~506~^0.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~507~^0.356^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~508~^1.116^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~509~^0.974^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~510~^1.516^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~511~^1.737^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~512~^1.116^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~513~^1.628^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~514~^2.592^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~515~^4.375^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~516~^1.327^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~517~^1.123^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~518~^1.154^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~606~^3.960^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10200~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10200~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~612~^0.140^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~613~^2.450^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~614~^1.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~617~^4.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~618~^0.660^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~626~^0.360^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~628~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~10200~^~645~^4.850^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10200~^~646~^0.730^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~312~^0.070^17^0.005^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~315~^0.020^2^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~404~^0.894^12^0.084^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~405~^0.323^12^0.019^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~406~^5.231^11^0.188^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~410~^0.746^6^0.025^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~415~^0.400^4^0.038^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~501~^0.374^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~502~^1.345^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~503~^1.379^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~504~^2.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~505~^2.649^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~506~^0.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~507~^0.376^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~508~^1.176^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~509~^1.026^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~510~^1.598^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~511~^1.831^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~512~^1.177^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~513~^1.716^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~514~^2.732^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~515~^4.612^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~516~^1.399^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~517~^1.183^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~518~^1.217^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~606~^3.570^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~610~^0.010^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~611~^0.010^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~612~^0.130^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~613~^2.230^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~614~^1.140^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~617~^4.120^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~618~^0.540^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~619~^0.010^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~620~^0.040^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~626~^0.350^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~628~^0.090^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~645~^4.600^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10201~^~646~^0.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~312~^0.069^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~315~^0.007^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~404~^0.761^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~405~^0.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~406~^5.115^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~410~^0.778^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~415~^0.388^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~501~^0.352^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~502~^1.264^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~503~^1.296^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~504~^2.221^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~505~^2.489^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~506~^0.733^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~507~^0.353^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~508~^1.105^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~509~^0.964^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~510~^1.502^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~511~^1.721^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~512~^1.106^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~513~^1.612^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~514~^2.567^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~515~^4.333^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~516~^1.314^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~517~^1.112^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~518~^1.143^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~606~^4.300^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10202~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10202~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~612~^0.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~613~^2.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~614~^1.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~617~^4.830^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~618~^1.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~619~^0.110^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~626~^0.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~628~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10202~^~645~^5.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10202~^~646~^1.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~312~^0.012^5^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~404~^0.639^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~405~^0.312^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~406~^5.355^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~410~^0.581^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~415~^0.400^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~501~^0.366^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~502~^1.316^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~503~^1.349^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~504~^2.312^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~505~^2.591^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~506~^0.763^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~507~^0.367^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~508~^1.150^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~509~^1.004^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~510~^1.563^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~511~^1.791^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~512~^1.151^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~513~^1.678^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~514~^2.672^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~515~^4.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~516~^1.368^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~517~^1.157^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~518~^1.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~606~^3.540^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~610~^0.010^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~611~^0.010^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~612~^0.120^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~613~^2.200^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~614~^1.120^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~617~^4.020^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~618~^0.730^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~619~^0.020^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~620~^0.060^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~626~^0.330^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~628~^0.090^15^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~645~^4.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10203~^~646~^0.850^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10204~^~312~^0.078^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~404~^0.375^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~405~^0.253^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~406~^3.082^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~410~^1.609^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~415~^0.539^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~501~^0.204^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~502~^0.868^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~503~^0.952^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~504~^1.648^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~505~^1.794^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~506~^0.533^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~507~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~508~^0.813^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~509~^0.736^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~510~^1.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~511~^1.287^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~512~^0.836^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~513~^1.135^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~514~^1.892^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~515~^3.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~516~^0.872^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~517~^0.782^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~518~^0.836^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10204~^~521~^0.050^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10204~^~605~^0.067^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10204~^~606~^2.370^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~610~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~611~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~612~^0.084^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~613~^1.453^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~614~^0.792^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10204~^~617~^2.575^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~618~^0.888^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~619~^0.042^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~620~^0.031^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~624~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~626~^0.141^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~628~^0.044^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~645~^2.762^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~646~^0.966^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10204~^~652~^0.003^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~653~^0.021^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~663~^0.041^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~669~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~672~^0.034^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~674~^2.533^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~675~^0.862^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~685~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~689~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10204~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10204~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10204~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10204~^~851~^0.040^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10205~^~312~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~404~^0.461^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~405~^0.283^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~406~^5.548^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~410~^1.363^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~415~^0.472^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~501~^0.279^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~502~^1.189^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~503~^1.303^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~504~^2.257^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~505~^2.457^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~506~^0.730^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~507~^0.306^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~508~^1.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~509~^1.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~510~^1.384^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~511~^1.763^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~512~^1.144^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~513~^1.555^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~514~^2.591^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~515~^4.229^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~516~^1.194^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~517~^1.071^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~518~^1.145^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~521~^0.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~605~^0.153^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~606~^6.302^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~610~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~612~^0.224^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~613~^3.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~614~^2.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~615~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~617~^7.108^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~618~^1.873^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~619~^0.087^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~620~^0.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~626~^0.418^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~628~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10205~^~645~^7.654^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~646~^2.138^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~653~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~663~^0.099^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~669~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~672~^0.071^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~674~^7.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~675~^1.820^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~687~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10205~^~693~^0.099^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~695~^0.054^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~10205~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10205~^~851~^0.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~ -~10206~^~312~^0.057^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~315~^0.003^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10206~^~404~^0.820^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~405~^0.329^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~406~^4.196^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~410~^0.726^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~415~^0.419^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~501~^0.275^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~502~^0.992^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~503~^1.019^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~504~^1.747^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~505~^1.955^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~506~^0.577^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~508~^0.869^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~509~^0.761^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~510~^1.177^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~511~^1.354^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~512~^0.870^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~513~^1.266^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~514~^2.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~515~^3.402^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~516~^1.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~517~^0.874^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~518~^0.899^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~521~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~605~^0.048^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~606~^10.689^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~610~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~612~^0.387^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~613~^6.512^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~614~^3.532^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~617~^11.671^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~618~^2.649^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~619~^0.098^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~620~^0.090^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~626~^0.797^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~628~^0.248^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~631~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~645~^12.825^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~646~^2.972^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10206~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~653~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~672~^0.042^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10206~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10207~^~312~^0.083^12^0.003^~1~^~A~^^^1^0.066^0.105^11^0.076^0.089^~2, 3~^~03/01/2007~ -~10207~^~315~^0.012^12^0.001^~1~^~A~^^^1^0.009^0.024^11^0.009^0.014^~2, 3~^~03/01/2007~ -~10207~^~404~^0.394^0^^~4~^~BFYN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~405~^0.271^0^^~4~^~BFYN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~406~^3.097^0^^~4~^~BFYN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~410~^1.737^0^^~4~^~BFPN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~415~^0.577^0^^~4~^~BFPN~^~10084~^^^^^^^^^~03/01/2007~ -~10207~^~501~^0.218^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~502~^0.932^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~503~^1.021^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~504~^1.768^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~505~^1.925^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~506~^0.572^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~507~^0.239^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~508~^0.872^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~509~^0.790^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~510~^1.085^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~511~^1.381^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~512~^0.896^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~513~^1.218^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~514~^2.030^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~515~^3.314^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~516~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~517~^0.839^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~518~^0.897^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10207~^~521~^0.053^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~10207~^~606~^2.012^0^^~4~^~BFFN~^~10208~^^^^^^^^^~07/01/2010~ -~10207~^~607~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~608~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~609~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~610~^0.005^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~611~^0.004^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~612~^0.072^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~613~^1.246^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~614~^0.659^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~617~^2.296^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~618~^0.559^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~619~^0.025^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~620~^0.036^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~621~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~624~^0.001^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~625~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~626~^0.143^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~627~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~628~^0.036^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~629~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~630~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~631~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~645~^2.477^0^^~4~^~BFFN~^~10208~^^^^^^^^^~07/01/2010~ -~10207~^~646~^0.645^0^^~4~^~BFFN~^~10208~^^^^^^^^^~07/01/2010~ -~10207~^~652~^0.001^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~653~^0.016^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~663~^0.028^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~669~^0.016^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~672~^0.021^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~674~^2.267^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~675~^0.543^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~685~^0.001^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~687~^0.002^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~689~^0.003^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10207~^~697~^0.000^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2009~ -~10207~^~851~^0.025^0^^~4~^~BFFN~^~10208~^^^^^^^^^~03/01/2007~ -~10208~^~312~^0.105^12^0.005^~1~^~A~^^^1^0.071^0.137^11^0.094^0.116^~2, 3~^~03/01/2007~ -~10208~^~315~^0.011^12^0.001^~1~^~A~^^^1^0.006^0.015^11^0.010^0.013^~1, 2, 3~^~03/01/2007~ -~10208~^~404~^0.477^4^0.027^~1~^~A~^^^1^0.417^0.550^3^0.390^0.564^~2, 3~^~03/01/2007~ -~10208~^~405~^0.296^4^0.004^~1~^~A~^^^1^0.284^0.304^3^0.282^0.310^~2, 3~^~03/01/2007~ -~10208~^~406~^5.715^4^0.340^~1~^~A~^^^1^5.090^6.660^3^4.632^6.798^~2, 3~^~03/01/2007~ -~10208~^~410~^1.427^0^^~4~^~BFPN~^~10085~^^^^^^^^^~03/01/2007~ -~10208~^~415~^0.491^0^^~4~^~BFPN~^~10085~^^^^^^^^^~03/01/2007~ -~10208~^~501~^0.292^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~502~^1.245^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~503~^1.365^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~504~^2.363^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~505~^2.573^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~506~^0.764^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~507~^0.320^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~508~^1.166^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~509~^1.056^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~510~^1.450^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~511~^1.846^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~512~^1.198^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~513~^1.628^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~514~^2.714^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~515~^4.429^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~516~^1.250^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~517~^1.122^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~518~^1.199^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10208~^~521~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10208~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~606~^5.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10208~^~610~^0.012^4^0.004^~1~^~A~^^^1^0.000^0.021^3^-0.002^0.027^~1, 2, 3~^~03/01/2007~ -~10208~^~611~^0.010^4^0.003^~1~^~A~^^^1^0.000^0.016^3^-0.001^0.021^~1, 2, 3~^~03/01/2007~ -~10208~^~612~^0.181^4^0.036^~1~^~A~^^^1^0.085^0.252^3^0.068^0.295^~2, 3~^~03/01/2007~ -~10208~^~613~^3.150^4^0.612^~1~^~A~^^^1^1.432^4.295^3^1.203^5.096^~2, 3~^~03/01/2007~ -~10208~^~614~^1.665^4^0.302^~1~^~A~^^^1^0.805^2.206^3^0.704^2.625^~2, 3~^~03/01/2007~ -~10208~^~615~^0.023^4^0.004^~1~^~A~^^^1^0.011^0.031^3^0.009^0.037^~2, 3~^~03/01/2007~ -~10208~^~617~^5.802^4^1.163^~1~^~AS~^^^1^2.618^8.123^3^2.102^9.502^~2, 3~^~03/01/2007~ -~10208~^~618~^1.413^4^0.161^~1~^~AS~^^^1^0.992^1.770^3^0.901^1.926^~2, 3~^~03/01/2007~ -~10208~^~619~^0.064^4^0.009^~1~^~AS~^^^1^0.040^0.085^3^0.034^0.093^~2, 3~^~03/01/2007~ -~10208~^~620~^0.092^4^0.007^~1~^~A~^^^1^0.074^0.109^3^0.069^0.116^~2, 3~^~03/01/2007~ -~10208~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~624~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.006^0.011^~1, 2, 3~^~03/01/2007~ -~10208~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10208~^~626~^0.361^4^0.082^~1~^~A~^^^1^0.137^0.525^3^0.100^0.623^~2, 3~^~03/01/2007~ -~10208~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~628~^0.092^4^0.018^~1~^~A~^^^1^0.043^0.128^3^0.034^0.151^~2, 3~^~03/01/2007~ -~10208~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10208~^~645~^6.260^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~646~^1.629^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~652~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 2, 3~^~03/01/2007~ -~10208~^~653~^0.040^4^0.007^~1~^~A~^^^1^0.025^0.058^3^0.018^0.062^~2, 3~^~03/01/2007~ -~10208~^~663~^0.071^4^0.009^~1~^~A~^^^1^0.056^0.097^3^0.043^0.100^~2, 3~^~03/01/2007~ -~10208~^~669~^0.041^4^0.008^~1~^~A~^^^1^0.028^0.057^3^0.017^0.066^~2, 3~^~03/01/2007~ -~10208~^~672~^0.053^4^0.008^~1~^~A~^^^1^0.032^0.068^3^0.029^0.077^~2, 3~^~03/01/2007~ -~10208~^~674~^5.731^4^1.158^~1~^~A~^^^1^2.549^8.026^3^2.044^9.417^~2, 3~^~03/01/2007~ -~10208~^~675~^1.372^4^0.156^~1~^~A~^^^1^0.964^1.718^3^0.877^1.867^~2, 3~^~03/01/2007~ -~10208~^~685~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~03/01/2007~ -~10208~^~687~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.018^3^-0.010^0.019^~1, 2, 3~^~03/01/2007~ -~10208~^~689~^0.007^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.001^0.015^~1, 2, 3~^~03/01/2007~ -~10208~^~693~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10208~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~10208~^~851~^0.062^4^0.008^~1~^~A~^^^1^0.040^0.078^3^0.037^0.088^~2, 3~^~03/01/2007~ -~10209~^~312~^0.107^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~315~^0.021^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~404~^0.574^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~405~^0.458^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~406~^7.820^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~410~^1.589^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~415~^0.523^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~501~^0.348^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~502~^1.284^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~503~^1.383^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~504~^2.403^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~505~^2.597^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~506~^0.800^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~508~^1.213^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~509~^1.157^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~510~^1.477^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~511~^1.881^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~512~^1.188^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~513~^1.672^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~514~^2.731^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~515~^4.461^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~516~^1.320^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~517~^1.181^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~518~^1.219^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10209~^~606~^3.766^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10209~^~609~^0.002^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~610~^0.010^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~611~^0.008^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~612~^0.133^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~613~^2.301^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~614~^1.252^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~617~^4.075^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~618~^1.287^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~619~^0.053^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~620~^0.053^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~621~^0.000^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~626~^0.227^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~627~^0.000^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~628~^0.072^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~629~^0.000^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~630~^0.000^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~631~^0.006^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~645~^4.376^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10209~^~646~^1.458^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~ -~10210~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~404~^0.600^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~405~^0.252^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~406~^7.239^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~410~^0.721^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~415~^0.600^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~501~^0.268^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~502~^0.989^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~503~^1.065^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~504~^1.851^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~505~^2.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~506~^0.617^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~507~^0.254^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~508~^0.935^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~509~^0.891^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~510~^1.138^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~511~^1.449^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~512~^0.915^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~513~^1.288^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~514~^2.104^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~515~^3.436^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~516~^1.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~517~^0.910^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~518~^0.939^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~521~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~605~^0.021^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~606~^1.393^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~612~^0.052^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~613~^0.867^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~614~^0.456^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~617~^1.595^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~618~^0.600^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~619~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~620~^0.060^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10210~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~626~^0.100^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~628~^0.026^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~631~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~645~^1.722^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~646~^0.708^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~653~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~663~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~665~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~672~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~674~^1.577^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~675~^0.597^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~693~^0.018^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10210~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~851~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10210~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~312~^0.083^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~ -~10211~^~404~^0.656^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~405~^0.265^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~406~^7.760^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~410~^0.985^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~415~^0.523^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~501~^0.338^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~502~^1.249^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~503~^1.345^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~504~^2.338^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~505~^2.526^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~506~^0.779^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~507~^0.320^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~508~^1.180^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~509~^1.126^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~510~^1.437^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~511~^1.830^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~512~^1.156^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~513~^1.627^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~514~^2.657^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~515~^4.340^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~516~^1.284^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~517~^1.149^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~518~^1.186^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~521~^0.099^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~605~^0.008^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~606~^1.870^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~611~^0.003^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~612~^0.068^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~613~^1.160^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~614~^0.607^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~617~^2.086^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~618~^0.830^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~619~^0.033^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~620~^0.059^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~626~^0.125^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~628~^0.035^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~631~^0.008^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~645~^2.246^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~646~^0.963^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~652~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~653~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~663~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~665~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~672~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~674~^0.422^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~675~^0.163^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~693~^0.006^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~695~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10211~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10211~^~851~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~312~^0.085^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~404~^0.653^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~405~^0.290^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~406~^8.654^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~410~^1.295^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~415~^0.584^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~501~^0.336^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~502~^1.240^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~503~^1.335^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~504~^2.320^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~505~^2.507^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~506~^0.773^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~507~^0.318^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~508~^1.171^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~509~^1.117^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~510~^1.426^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~511~^1.816^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~512~^1.147^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~513~^1.615^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~514~^2.637^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~515~^4.306^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~516~^1.274^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~517~^1.140^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~518~^1.177^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~521~^0.098^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~605~^0.019^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~606~^1.785^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10212~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~612~^0.068^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~613~^1.107^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~614~^0.587^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~617~^1.953^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~618~^0.701^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~619~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~620~^0.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10212~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~626~^0.123^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10212~^~628~^0.029^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10212~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10212~^~631~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~645~^2.106^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~646~^0.822^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~653~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~663~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~665~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~672~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~674~^1.936^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~675~^0.699^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~693~^0.017^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10212~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~851~^0.022^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10212~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~312~^0.109^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~315~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~404~^0.705^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~405~^0.327^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~406~^8.055^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~410~^1.616^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~415~^0.533^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~501~^0.353^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~502~^1.303^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~503~^1.402^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~504~^2.438^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~505~^2.634^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~506~^0.812^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~507~^0.334^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~508~^1.231^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~509~^1.174^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~510~^1.498^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~511~^1.909^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~512~^1.205^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~513~^1.697^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~514~^2.771^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~515~^4.525^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~516~^1.339^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~517~^1.198^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~518~^1.237^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~521~^0.103^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~605~^0.040^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~606~^2.528^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10213~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~612~^0.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~613~^1.579^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~614~^0.812^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~617~^2.849^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~618~^1.043^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~619~^0.037^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~620~^0.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~626~^0.172^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10213~^~628~^0.047^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10213~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/1995~ -~10213~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~645~^3.068^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~646~^1.198^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~652~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~653~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~663~^0.036^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~665~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~672~^0.038^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~674~^2.813^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~675~^1.039^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~693~^0.036^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10213~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~851~^0.037^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10213~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10214~^~312~^0.069^12^0.004^~1~^~A~^^^1^0.046^0.084^11^0.059^0.079^~2, 3~^~12/01/1992~ -~10214~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.010^0.013^11^0.011^0.012^~2, 3~^~02/01/2011~ -~10214~^~404~^0.610^12^0.033^~1~^~A~^^^1^0.450^0.780^11^0.537^0.683^~2, 3~^~02/01/2011~ -~10214~^~405~^0.256^12^0.011^~1~^~A~^^^1^0.180^0.330^11^0.231^0.280^~2, 3~^~02/01/2011~ -~10214~^~406~^7.348^12^0.265^~1~^~A~^^^1^5.590^8.530^11^6.765^7.932^~2, 3~^~02/01/2011~ -~10214~^~410~^0.728^4^0.027^~1~^~A~^^^1^0.670^0.800^3^0.642^0.813^~2, 3~^~02/01/2011~ -~10214~^~415~^0.611^4^0.024^~1~^~A~^^^1^0.563^0.678^3^0.533^0.688^~2, 3~^~02/01/2011~ -~10214~^~501~^0.271^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~502~^1.003^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~503~^1.080^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~504~^1.877^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~505~^2.028^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~506~^0.625^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~507~^0.257^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~508~^0.948^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~509~^0.904^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~510~^1.154^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~511~^1.470^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~512~^0.928^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~513~^1.306^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~514~^2.133^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~515~^3.484^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~516~^1.031^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~517~^0.922^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~518~^0.952^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~521~^0.080^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10214~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~606~^0.906^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10214~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10214~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10214~^~612~^0.033^6^0.003^~1~^~A~^^^1^0.025^0.042^5^0.026^0.040^~2, 3~^~02/01/2011~ -~10214~^~613~^0.566^6^0.046^~1~^~A~^^^1^0.420^0.710^5^0.449^0.684^~2, 3~^~02/01/2011~ -~10214~^~614~^0.300^6^0.024^~1~^~A~^^^1^0.227^0.384^5^0.239^0.360^~2, 3~^~02/01/2011~ -~10214~^~615~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~617~^1.011^6^0.080^~1~^~AS~^^^1^0.710^1.212^5^0.805^1.217^~2, 3~^~02/01/2011~ -~10214~^~618~^0.335^6^0.036^~1~^~AS~^^^1^0.268^0.502^5^0.243^0.426^~2, 3~^~02/01/2011~ -~10214~^~619~^0.008^6^0.002^~1~^~AS~^^^1^0.000^0.016^5^0.002^0.013^~2, 3~^~02/01/2011~ -~10214~^~620~^0.058^6^0.001^~1~^~A~^^^1^0.055^0.060^5^0.055^0.060^~2, 3~^~02/01/2011~ -~10214~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~626~^0.072^6^0.005^~1~^~A~^^^1^0.055^0.082^5^0.060^0.084^~2, 3~^~02/01/2011~ -~10214~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~628~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.019^5^0.013^0.019^~2, 3~^~02/01/2011~ -~10214~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2011~ -~10214~^~631~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.007^5^-0.002^0.004^~1, 2, 3~^~02/01/2011~ -~10214~^~645~^1.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~646~^0.413^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~652~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.007^~1, 2, 3~^~02/01/2011~ -~10214~^~653~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.001^0.009^~1, 2, 3~^~02/01/2011~ -~10214~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~663~^0.007^6^0.002^~1~^~A~^^^1^0.000^0.012^5^0.001^0.013^~1, 2, 3~^~02/01/2011~ -~10214~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~672~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.018^5^0.008^0.015^~2, 3~^~02/01/2011~ -~10214~^~674~^1.004^6^0.078^~1~^~A~^^^1^0.710^1.200^5^0.803^1.205^~2, 3~^~02/01/2011~ -~10214~^~675~^0.335^6^0.036^~1~^~A~^^^1^0.268^0.502^5^0.243^0.426^~2, 3~^~02/01/2011~ -~10214~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~10214~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10214~^~851~^0.008^6^0.002^~1~^~A~^^^1^0.000^0.016^5^0.002^0.013^~1, 2, 3~^~02/01/2011~ -~10214~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~10215~^~312~^0.083^12^0.004^~1~^~A~^^^1^0.061^0.097^11^0.073^0.092^~2, 3~^~01/01/2011~ -~10215~^~315~^0.014^12^0.000^~1~^~A~^^^1^0.012^0.016^11^0.013^0.014^~2, 3~^~12/01/1992~ -~10215~^~404~^0.663^12^0.033^~1~^~A~^^^1^0.510^0.880^11^0.591^0.735^~2, 3~^~01/01/2011~ -~10215~^~405~^0.266^12^0.011^~1~^~A~^^^1^0.160^0.300^11^0.242^0.290^~2, 3~^~01/01/2011~ -~10215~^~406~^7.834^12^0.254^~1~^~A~^^^1^5.920^9.040^11^7.275^8.393^~2, 3~^~01/01/2011~ -~10215~^~410~^0.993^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~415~^0.528^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~ -~10215~^~501~^0.342^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~502~^1.264^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~503~^1.361^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~504~^2.366^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~505~^2.557^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~506~^0.788^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~507~^0.324^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~508~^1.195^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~509~^1.139^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~510~^1.454^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~511~^1.853^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~512~^1.169^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~513~^1.647^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~514~^2.689^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~515~^4.392^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~516~^1.299^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~517~^1.162^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~518~^1.201^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10215~^~606~^1.517^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10215~^~609~^0.000^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~610~^0.004^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~611~^0.002^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~612~^0.055^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~613~^0.940^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~614~^0.496^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~617~^1.685^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~618~^0.677^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~619~^0.026^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~620~^0.057^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~621~^0.000^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~626~^0.104^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~627~^0.000^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~628~^0.027^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~629~^0.000^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~630~^0.000^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~631~^0.007^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~645~^1.816^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10215~^~646~^0.794^0^^~4~^~BFFN~^~10057~^^^^^^^^^~01/01/2011~ -~10216~^~312~^0.085^12^0.004^~1~^~A~^^^1^0.062^0.108^11^0.076^0.094^~2, 3~^~01/01/2011~ -~10216~^~315~^0.015^12^0.000^~1~^~A~^^^1^0.014^0.016^11^0.014^0.015^~2, 3~^~01/01/2011~ -~10216~^~404~^0.662^12^0.042^~1~^~A~^^^1^0.460^0.970^11^0.570^0.754^~2, 3~^~01/01/2011~ -~10216~^~405~^0.292^12^0.009^~1~^~A~^^^1^0.230^0.350^11^0.273^0.311^~2, 3~^~01/01/2011~ -~10216~^~406~^8.761^12^0.348^~1~^~A~^^^1^6.470^10.800^11^7.996^9.526^~2, 3~^~01/01/2011~ -~10216~^~410~^1.310^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10216~^~415~^0.591^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10216~^~501~^0.340^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~502~^1.258^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~503~^1.354^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~504~^2.354^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~505~^2.544^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~506~^0.784^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~507~^0.322^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~508~^1.188^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~509~^1.133^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~510~^1.447^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~511~^1.843^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~512~^1.163^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~513~^1.638^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~514~^2.675^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~515~^4.369^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~516~^1.293^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~517~^1.156^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~518~^1.194^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10216~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~606~^1.357^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10216~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10216~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10216~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10216~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/1992~ -~10216~^~612~^0.052^6^0.005^~1~^~A~^^^1^0.041^0.075^5^0.039^0.065^~2, 3~^~01/01/2011~ -~10216~^~613~^0.840^6^0.089^~1~^~A~^^^1^0.685^1.250^5^0.611^1.068^~2, 3~^~01/01/2011~ -~10216~^~614~^0.452^6^0.049^~1~^~A~^^^1^0.370^0.683^5^0.325^0.578^~2, 3~^~01/01/2011~ -~10216~^~615~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.003^0.007^~1, 2, 3~^~01/01/2011~ -~10216~^~617~^1.467^6^0.148^~1~^~AS~^^^1^1.210^2.135^5^1.085^1.848^~2, 3~^~01/01/2011~ -~10216~^~618~^0.513^6^0.076^~1~^~AS~^^^1^0.391^0.878^5^0.318^0.708^~2, 3~^~01/01/2011~ -~10216~^~619~^0.014^6^0.004^~1~^~AS~^^^1^0.000^0.033^5^0.003^0.026^~2, 3~^~01/01/2011~ -~10216~^~620~^0.067^6^0.003^~1~^~A~^^^1^0.058^0.081^5^0.059^0.075^~2, 3~^~01/01/2011~ -~10216~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10216~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~626~^0.098^6^0.008^~1~^~A~^^^1^0.083^0.130^5^0.078^0.119^~2, 3~^~01/01/2011~ -~10216~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10216~^~628~^0.020^6^0.005^~1~^~A~^^^1^0.000^0.036^5^0.008^0.033^~1, 2, 3~^~01/01/2011~ -~10216~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10216~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~10216~^~631~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.001^0.010^~1, 2, 3~^~01/01/2011~ -~10216~^~645~^1.585^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~646~^0.614^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~652~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.003^0.007^~1, 2, 3~^~01/01/2011~ -~10216~^~653~^0.010^6^0.002^~1~^~A~^^^1^0.000^0.016^5^0.004^0.015^~1, 2, 3~^~01/01/2011~ -~10216~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~663~^0.010^6^0.004^~1~^~A~^^^1^0.000^0.025^5^0.000^0.020^~1, 2, 3~^~01/01/2011~ -~10216~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~672~^0.016^6^0.004^~1~^~A~^^^1^0.000^0.032^5^0.005^0.026^~1, 2, 3~^~01/01/2011~ -~10216~^~674~^1.457^6^0.145^~1~^~A~^^^1^1.210^2.110^5^1.083^1.830^~2, 3~^~01/01/2011~ -~10216~^~675~^0.513^6^0.076^~1~^~A~^^^1^0.391^0.878^5^0.318^0.708^~2, 3~^~01/01/2011~ -~10216~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10216~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10216~^~851~^0.014^6^0.004^~1~^~A~^^^1^0.000^0.033^5^0.003^0.026^~1, 2, 3~^~01/01/2011~ -~10216~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~312~^0.109^12^0.005^~1~^~A~^^^1^0.086^0.144^11^0.098^0.120^~2, 3~^~01/01/2011~ -~10217~^~315~^0.017^12^0.000^~1~^~A~^^^1^0.016^0.019^11^0.017^0.018^~2, 3~^~01/01/2011~ -~10217~^~404~^0.722^12^0.026^~1~^~A~^^^1^0.520^0.840^11^0.664^0.779^~2, 3~^~01/01/2011~ -~10217~^~405~^0.332^12^0.014^~1~^~A~^^^1^0.240^0.440^11^0.300^0.363^~2, 3~^~01/01/2011~ -~10217~^~406~^8.224^12^0.276^~1~^~A~^^^1^6.540^10.500^11^7.616^8.832^~2, 3~^~01/01/2011~ -~10217~^~410~^1.654^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10217~^~415~^0.544^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10217~^~501~^0.362^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~502~^1.336^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~503~^1.439^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~504~^2.501^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~505~^2.703^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~506~^0.833^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~507~^0.343^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~508~^1.263^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~509~^1.204^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~510~^1.537^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~511~^1.958^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~512~^1.236^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~513~^1.741^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~514~^2.843^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~515~^4.643^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~516~^1.374^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~517~^1.229^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~518~^1.269^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~521~^0.106^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10217~^~605~^0.026^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~606~^1.798^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10217~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10217~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10217~^~610~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.002^0.007^~1, 2, 3~^~01/01/2011~ -~10217~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~612~^0.070^6^0.007^~1~^~A~^^^1^0.042^0.087^5^0.053^0.086^~2, 3~^~01/01/2011~ -~10217~^~613~^1.123^6^0.091^~1~^~A~^^^1^0.739^1.380^5^0.889^1.357^~2, 3~^~01/01/2011~ -~10217~^~614~^0.581^6^0.052^~1~^~A~^^^1^0.379^0.744^5^0.449^0.714^~2, 3~^~01/01/2011~ -~10217~^~615~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.001^0.011^~1, 2, 3~^~01/01/2011~ -~10217~^~617~^2.019^6^0.168^~1~^~AS~^^^1^1.292^2.498^5^1.587^2.451^~2, 3~^~01/01/2011~ -~10217~^~618~^0.723^6^0.073^~1~^~AS~^^^1^0.521^1.010^5^0.535^0.912^~2, 3~^~01/01/2011~ -~10217~^~619~^0.024^6^0.004^~1~^~AS~^^^1^0.014^0.040^5^0.013^0.035^~2, 3~^~01/01/2011~ -~10217~^~620~^0.066^6^0.003^~1~^~A~^^^1^0.054^0.079^5^0.057^0.074^~2, 3~^~01/01/2011~ -~10217~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10217~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~626~^0.130^6^0.010^~1~^~A~^^^1^0.084^0.150^5^0.106^0.155^~2, 3~^~01/01/2011~ -~10217~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10217~^~628~^0.032^6^0.003^~1~^~A~^^^1^0.021^0.039^5^0.025^0.038^~2, 3~^~01/01/2011~ -~10217~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~10217~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~10217~^~631~^0.007^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.010^~1, 2, 3~^~01/01/2011~ -~10217~^~645~^2.181^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~653~^0.016^6^0.001^~1~^~A~^^^1^0.012^0.022^5^0.012^0.019^~2, 3~^~01/01/2011~ -~10217~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~663~^0.024^6^0.001^~1~^~A~^^^1^0.021^0.028^5^0.021^0.027^~2, 3~^~01/01/2011~ -~10217~^~665~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.005^~1, 2, 3~^~01/01/2011~ -~10217~^~672~^0.025^6^0.003^~1~^~A~^^^1^0.018^0.036^5^0.019^0.032^~2, 3~^~01/01/2011~ -~10217~^~674~^1.995^6^0.168^~1~^~A~^^^1^1.270^2.470^5^1.564^2.426^~2, 3~^~01/01/2011~ -~10217~^~675~^0.722^6^0.073^~1~^~A~^^^1^0.521^1.010^5^0.534^0.910^~2, 3~^~01/01/2011~ -~10217~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10217~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10217~^~851~^0.024^6^0.004^~1~^~A~^^^1^0.014^0.040^5^0.013^0.035^~2, 3~^~01/01/2011~ -~10217~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10218~^~312~^0.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~404~^0.982^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~405~^0.337^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~406~^6.610^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~410~^0.837^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~415~^0.765^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~501~^0.217^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~502~^0.927^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~503~^1.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~504~^1.759^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~505~^1.915^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~506~^0.569^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~507~^0.238^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~508~^0.868^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~509~^0.786^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~510~^1.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~511~^1.374^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~512~^0.892^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~513~^1.212^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~514~^2.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~515~^3.296^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~516~^0.930^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~517~^0.835^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~518~^0.893^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~521~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~605~^0.036^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~606~^1.181^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~612~^0.039^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~613~^0.725^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~614~^0.404^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~617~^1.259^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~618~^0.476^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~619~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~620~^0.054^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~626~^0.075^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~628~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10218~^~645~^1.355^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~646~^0.562^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~652~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~653~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~663~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~669~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~672~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~674~^1.237^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~675~^0.463^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10218~^~693~^0.023^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10218~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10218~^~851~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10219~^~312~^0.045^5^0.004^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~315~^0.010^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~404~^0.732^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~405~^0.235^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~406~^4.338^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~410~^0.668^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~415~^0.383^1^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~501~^0.214^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~502~^0.771^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~503~^0.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~504~^1.354^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~505~^1.518^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~506~^0.447^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~507~^0.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~508~^0.674^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~509~^0.588^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~510~^0.916^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~511~^1.049^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~512~^0.674^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~513~^0.983^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~514~^1.566^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~515~^2.642^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~516~^0.802^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~517~^0.678^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~518~^0.697^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~606~^7.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~610~^0.010^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~611~^0.020^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~612~^0.330^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~613~^4.770^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~614~^2.550^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~617~^8.500^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~618~^1.670^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~619~^0.070^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~620~^0.080^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~626~^0.650^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~628~^0.160^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~645~^9.440^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10219~^~646~^1.910^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~312~^0.044^5^0.017^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~315~^0.011^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~404~^0.706^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~405~^0.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~406~^4.206^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~410~^0.520^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~415~^0.391^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~501~^0.326^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~502~^1.173^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~503~^1.203^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~504~^2.061^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~505~^2.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~506~^0.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~507~^0.328^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~508~^1.025^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~509~^0.895^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~510~^1.394^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~511~^1.597^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~512~^1.026^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~513~^1.497^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~514~^2.383^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~515~^4.022^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~516~^1.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~517~^1.032^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~518~^1.061^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~606~^7.720^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10220~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~10220~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~610~^0.010^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~611~^0.010^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~612~^0.330^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~613~^4.670^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~614~^2.500^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~617~^8.330^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~618~^1.640^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~619~^0.070^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~620~^0.080^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~626~^0.630^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~628~^0.150^13^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~10220~^~645~^9.250^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10220~^~646~^1.870^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~312~^0.067^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~404~^0.968^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~405~^0.378^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~406~^5.054^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~410~^0.899^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~415~^0.515^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~501~^0.376^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~502~^1.358^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~503~^1.390^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~504~^2.389^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~505~^2.680^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~506~^0.786^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~507~^0.379^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~508~^1.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~509~^1.034^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~510~^1.616^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~511~^1.866^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~512~^1.182^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~513~^1.744^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~514~^2.760^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~515~^4.648^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~516~^1.463^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~517~^1.224^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~518~^1.233^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~606~^2.930^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~612~^0.100^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~613~^1.790^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~614~^0.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~617~^3.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~618~^0.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~626~^0.230^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~628~^0.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~645~^3.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10221~^~646~^0.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10222~^~312~^0.111^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~404~^0.944^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~405~^0.385^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~406~^7.402^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~410~^1.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~415~^0.735^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~501~^0.274^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~502~^1.169^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~503~^1.281^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~504~^2.219^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~505~^2.415^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~506~^0.717^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~507~^0.300^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~508~^1.095^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~509~^0.991^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~510~^1.361^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~511~^1.733^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~512~^1.125^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~513~^1.529^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~514~^2.548^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~515~^4.158^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~516~^1.173^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~517~^1.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~518~^1.126^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~521~^0.067^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~605~^0.038^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~606~^1.358^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~612~^0.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~613~^0.832^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~614~^0.465^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~617~^1.408^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~618~^0.480^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~619~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~620~^0.057^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~626~^0.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~628~^0.023^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10222~^~645~^1.521^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~646~^0.569^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~663~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~672~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~674~^1.384^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~675~^0.467^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~687~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10222~^~693~^0.024^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~ -~10222~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10222~^~851~^0.016^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~ -~10223~^~312~^0.068^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~404~^0.988^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~405~^0.387^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~406~^5.135^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~410~^0.917^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~415~^0.528^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~501~^0.386^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~502~^1.389^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~503~^1.424^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~504~^2.441^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~505~^2.736^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~506~^0.805^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~507~^0.388^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~508~^1.214^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~509~^1.060^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~510~^1.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~511~^1.891^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~512~^1.215^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~513~^1.772^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~514~^2.822^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~515~^4.762^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~516~^1.444^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~517~^1.222^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~518~^1.257^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~606~^2.240^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~612~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~613~^1.370^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~614~^0.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~617~^2.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~618~^0.490^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~620~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~626~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~628~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~645~^2.580^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10223~^~646~^0.560^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10224~^~312~^0.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~404~^0.426^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~405~^0.181^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~406~^5.566^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~410~^0.722^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~415~^0.718^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~501~^0.225^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~502~^0.958^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~503~^1.050^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~504~^1.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~505~^1.979^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~506~^0.588^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~507~^0.246^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~508~^0.897^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~509~^0.812^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~510~^1.115^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~511~^1.420^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~512~^0.922^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~513~^1.253^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~514~^2.087^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~515~^3.407^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~516~^0.961^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~517~^0.863^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~518~^0.923^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~521~^0.055^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~605~^0.081^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~606~^2.760^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~611~^0.003^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~612~^0.098^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~613~^1.701^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~614~^0.919^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10224~^~617~^3.126^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~618~^0.913^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~619~^0.041^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~620~^0.042^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~626~^0.173^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~628~^0.054^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~645~^6.481^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~646~^1.987^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~652~^0.002^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~653~^0.024^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~663~^0.053^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~669~^0.028^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~672~^0.034^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~674~^3.073^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~675~^0.885^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~689~^0.004^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10224~^~693~^0.053^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10224~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10224~^~851~^0.039^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10225~^~312~^0.058^12^0.004^~1~^~A~^^^1^0.044^0.092^11^0.049^0.067^~2, 3~^~03/01/2007~ -~10225~^~315~^0.007^12^0.001^~1~^~A~^^^1^0.006^0.014^11^0.006^0.009^~1, 2, 3~^~03/01/2007~ -~10225~^~404~^0.443^0^^~4~^~BFYN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~405~^0.187^0^^~4~^~BFYN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~406~^5.745^0^^~4~^~BFYN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~410~^0.745^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~415~^0.755^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~ -~10225~^~501~^0.236^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~502~^1.005^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~503~^1.102^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~504~^1.908^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~505~^2.077^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~506~^0.617^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~507~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~508~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~509~^0.852^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~510~^1.170^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~511~^1.490^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~512~^0.967^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~513~^1.315^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~514~^2.191^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~515~^3.575^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~516~^1.009^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~517~^0.905^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~518~^0.968^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10225~^~521~^0.057^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~10225~^~606~^1.248^0^^~4~^~BFFN~^~10069~^^^^^^^^^~07/01/2010~ -~10225~^~607~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~608~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~609~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~611~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~612~^0.045^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~613~^0.782^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~614~^0.404^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~617~^1.476^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2009~ -~10225~^~618~^0.349^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2009~ -~10225~^~619~^0.013^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2009~ -~10225~^~620~^0.034^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~621~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~624~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~625~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~626~^0.094^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~627~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~628~^0.024^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~629~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~630~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~631~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~645~^1.595^0^^~4~^~BFFN~^~10069~^^^^^^^^^~07/01/2010~ -~10225~^~646~^0.409^0^^~4~^~BFFN~^~10069~^^^^^^^^^~07/01/2010~ -~10225~^~652~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~653~^0.009^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~663~^0.021^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~669~^0.012^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2009~ -~10225~^~672~^0.012^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~674~^1.455^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~675~^0.337^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~685~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~687~^0.001^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~689~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~697~^0.000^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10225~^~851~^0.013^0^^~4~^~BFFN~^~10069~^^^^^^^^^~03/01/2007~ -~10226~^~312~^0.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~404~^0.582^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~405~^0.238^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~406~^5.452^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~410~^0.903^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~415~^0.625^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~501~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~502~^0.903^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~503~^0.975^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~504~^1.687^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~505~^1.848^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~506~^0.547^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~507~^0.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~508~^0.834^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~509~^0.748^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~510~^1.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~511~^1.319^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~512~^0.850^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~513~^1.178^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~514~^1.939^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~515~^3.185^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~516~^0.928^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~517~^0.817^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~518~^0.860^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~521~^0.040^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~605~^0.065^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~606~^3.106^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~610~^0.007^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~611~^0.007^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~612~^0.123^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~613~^2.154^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~614~^1.160^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10226~^~617~^3.952^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~618~^1.093^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~619~^0.056^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~620~^0.056^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~626~^0.231^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~628~^0.068^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~645~^3.768^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~646~^1.122^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~652~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~653~^0.023^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~663~^0.049^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~669~^0.025^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~672~^0.033^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~674~^2.889^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~675~^0.853^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~689~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~693~^0.043^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10226~^~851~^0.039^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~312~^0.070^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~404~^0.679^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~405~^0.293^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~406~^6.368^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~410~^0.727^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~415~^0.561^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~501~^0.299^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~502~^1.179^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~503~^1.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~504~^2.164^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~505~^2.386^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~506~^0.706^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~507~^0.315^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~508~^1.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~509~^0.955^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~510~^1.385^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~511~^1.685^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~512~^1.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~513~^1.525^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~514~^2.492^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~515~^4.126^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~516~^1.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~517~^1.051^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~518~^1.105^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~521~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~605~^0.058^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~606~^4.703^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~612~^0.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~613~^2.893^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~614~^1.543^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~617~^5.259^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~618~^1.188^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~619~^0.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~626~^0.354^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~628~^0.105^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~645~^5.758^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~646~^1.367^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~652~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~653~^0.019^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~663~^0.039^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~669~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~672~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~674~^2.344^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~675~^0.648^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10227~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~687~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10227~^~695~^0.019^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10227~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10227~^~851~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10228~^~312~^0.065^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~315~^0.012^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~404~^0.980^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~405~^0.272^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~406~^4.825^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~410~^0.789^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~415~^0.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~501~^0.270^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~502~^0.970^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~503~^0.994^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~504~^1.704^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~505~^1.909^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~506~^0.562^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~507~^0.271^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~508~^0.848^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~509~^0.740^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~510~^1.152^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~511~^1.320^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~512~^0.848^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~513~^1.237^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~514~^1.969^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~515~^3.324^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~516~^1.008^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~517~^0.853^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~518~^0.877^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~606~^2.030^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~612~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~613~^1.290^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~614~^0.640^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~617~^2.410^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~618~^0.510^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~620~^0.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~626~^0.190^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~628~^0.040^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~645~^2.660^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10228~^~646~^0.630^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~312~^0.053^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~315~^0.015^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~404~^0.873^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~405~^0.344^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~406~^5.251^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~410~^0.692^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~415~^0.435^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~501~^0.374^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~502~^1.346^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~503~^1.380^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~504~^2.364^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~505~^2.650^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~506~^0.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~507~^0.376^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~508~^1.176^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~509~^1.027^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~510~^1.599^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~511~^1.832^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~512~^1.177^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~513~^1.717^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~514~^2.733^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~515~^4.613^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~516~^1.399^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~517~^1.184^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~518~^1.217^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~606~^3.340^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~610~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~611~^0.010^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~612~^0.120^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~613~^2.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~614~^1.070^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~617~^3.780^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~618~^0.610^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~619~^0.020^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~620~^0.050^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~626~^0.310^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~628~^0.090^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~645~^4.220^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10229~^~646~^0.710^0^^~1~^^^^^^^^^^^~12/01/1992~ -~10851~^~312~^0.100^10^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~606~^1.170^9^0.130^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~611~^0.000^10^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~612~^0.040^9^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~613~^0.750^10^0.130^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~614~^0.400^10^0.060^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10851~^~617~^1.630^10^0.320^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~618~^0.340^10^0.070^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~619~^0.020^9^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~626~^0.110^10^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~645~^1.750^10^0.350^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10851~^~646~^0.370^10^0.070^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~312~^0.100^8^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~606~^1.050^8^0.140^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~611~^0.000^7^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~612~^0.040^8^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~613~^0.650^8^0.090^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~614~^0.340^8^0.040^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~617~^1.180^8^0.150^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~618~^0.560^8^0.060^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~619~^0.030^8^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~626~^0.080^7^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~645~^1.260^7^0.590^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10852~^~646~^0.600^8^0.070^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~312~^0.100^9^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~606~^1.160^9^0.220^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~611~^0.000^8^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~612~^0.040^9^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~613~^0.720^9^0.150^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~614~^0.360^9^0.080^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~617~^1.370^9^0.270^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~618~^0.860^9^0.210^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~619~^0.100^8^0.030^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~626~^0.080^9^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~645~^1.450^9^0.290^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10853~^~646~^1.050^8^0.130^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~312~^0.000^5^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~606~^1.410^22^0.400^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~611~^0.000^23^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~612~^0.050^23^0.010^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~613~^0.880^22^0.250^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~614~^0.470^22^0.120^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~617~^1.720^22^0.390^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~618~^0.560^22^0.130^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~619~^0.050^24^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~626~^0.100^22^0.030^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~645~^1.830^22^0.430^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10854~^~646~^0.600^22^0.140^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~312~^0.100^5^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~606~^3.600^7^0.890^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~611~^0.000^7^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~612~^0.110^7^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~613~^2.210^7^0.540^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~614~^1.250^7^0.320^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~617~^4.180^7^0.970^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~618~^0.750^7^0.270^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~619~^0.090^7^0.060^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~626~^0.250^7^0.070^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~645~^4.430^7^1.040^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10855~^~646~^0.830^7^0.310^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~312~^0.100^5^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~606~^2.840^5^0.470^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~611~^0.000^5^0.000^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~612~^0.090^5^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~613~^1.750^5^0.310^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~614~^0.960^5^0.160^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~617~^3.210^5^0.560^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~618~^0.590^5^0.060^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~619~^0.050^5^0.020^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~626~^0.210^5^0.050^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~645~^3.420^5^0.600^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10856~^~646~^0.640^5^0.080^~1~^~A~^^^^^^^^^^~07/01/1998~ -~10857~^~312~^0.100^6^0.000^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~606~^1.830^6^0.370^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~611~^0.000^5^0.000^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~612~^0.070^6^0.010^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~613~^1.130^6^0.220^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~614~^0.610^6^0.130^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~617~^2.340^5^0.440^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~618~^0.590^6^0.130^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~619~^0.040^6^0.030^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~626~^0.150^6^0.030^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~645~^2.490^6^0.470^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10857~^~646~^0.620^6^0.120^~1~^~A~^^^^^^^^^^~08/01/1998~ -~10858~^~312~^0.063^4^0.001^~1~^~A~^^^1^0.059^0.065^3^0.058^0.067^~2, 3~^~02/01/2003~ -~10858~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~404~^0.631^4^0.046^~1~^~A~^^^1^0.518^0.744^3^0.484^0.778^~2, 3~^~02/01/2003~ -~10858~^~405~^0.188^4^0.012^~1~^~A~^^^1^0.160^0.219^3^0.150^0.227^~2, 3~^~02/01/2003~ -~10858~^~406~^10.323^4^0.556^~1~^~A~^^^1^9.290^11.900^3^8.553^12.092^~2, 3~^~02/01/2003~ -~10858~^~410~^0.786^4^0.052^~1~^~A~^^^1^0.683^0.904^3^0.621^0.951^~2, 3~^~02/01/2003~ -~10858~^~415~^0.489^4^0.028^~1~^~A~^^^1^0.405^0.533^3^0.398^0.579^~2, 3~^~02/01/2003~ -~10858~^~501~^0.268^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~502~^1.139^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~503~^1.363^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~504~^2.288^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~505~^2.529^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~506~^0.764^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~507~^0.308^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~508~^1.128^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~509~^0.974^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~510~^1.448^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~511~^1.805^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~512~^1.267^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~513~^1.596^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~514~^2.623^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~515~^4.264^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~516~^1.249^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~517~^1.082^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~518~^1.160^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10858~^~521~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10858~^~605~^0.030^3^0.030^~1~^~A~^^^1^0.000^0.090^2^-0.099^0.159^~1, 2, 3~^~02/01/2003~ -~10858~^~606~^1.797^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10858~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~10858~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~10858~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~610~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~02/01/2003~ -~10858~^~611~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.006^3^-0.003^0.006^~1, 2, 3~^~02/01/2003~ -~10858~^~612~^0.068^4^0.007^~1~^~A~^^^1^0.048^0.081^3^0.045^0.091^~2, 3~^~02/01/2003~ -~10858~^~613~^1.118^4^0.149^~1~^~A~^^^1^0.777^1.418^3^0.644^1.591^~2, 3~^~02/01/2003~ -~10858~^~614~^0.586^4^0.087^~1~^~A~^^^1^0.396^0.746^3^0.310^0.862^~2, 3~^~02/01/2003~ -~10858~^~615~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.013^3^0.005^0.014^~2, 3~^~02/01/2003~ -~10858~^~617~^2.206^3^0.216^~1~^~A~^^^1^1.780^2.481^2^1.277^3.135^~2, 3~^~02/01/2003~ -~10858~^~618~^0.561^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10858~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10858~^~620~^0.070^4^0.007^~1~^~A~^^^1^0.051^0.079^3^0.049^0.091^~2, 3~^~02/01/2003~ -~10858~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~626~^0.155^4^0.015^~1~^~A~^^^1^0.118^0.193^3^0.106^0.204^~2, 3~^~02/01/2003~ -~10858~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~628~^0.035^4^0.005^~1~^~A~^^^1^0.025^0.045^3^0.020^0.050^~2, 3~^~02/01/2003~ -~10858~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10858~^~645~^2.406^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10858~^~646~^0.691^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10858~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~653~^0.013^4^0.002^~1~^~A~^^^1^0.008^0.017^3^0.007^0.019^~2, 3~^~02/01/2003~ -~10858~^~672~^0.022^4^0.003^~1~^~A~^^^1^0.015^0.028^3^0.012^0.033^~2, 3~^~02/01/2003~ -~10858~^~675~^0.561^4^0.085^~1~^~A~^^^1^0.355^0.701^3^0.291^0.831^~2, 3~^~02/01/2003~ -~10858~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~687~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.001^0.022^~1, 2, 3~^~02/01/2003~ -~10858~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10858~^~851~^0.019^4^0.003^~1~^~A~^^^1^0.014^0.025^3^0.010^0.028^~2, 3~^~02/01/2003~ -~10859~^~312~^0.062^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~404~^0.616^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~405~^0.184^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~406~^10.192^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~410~^0.790^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~415~^0.476^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~501~^0.259^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~502~^1.103^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~503~^1.321^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~504~^2.223^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~505~^2.455^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~506~^0.738^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~507~^0.301^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~508~^1.100^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~509~^0.940^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~510~^1.416^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~511~^1.777^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~512~^1.241^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~513~^1.589^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~514~^2.564^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~515~^4.150^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~516~^1.337^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~517~^1.114^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~518~^1.138^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~521~^0.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~605~^0.087^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~606~^2.725^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~10859~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~612~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~613~^1.677^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~614~^0.910^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~617~^3.219^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~618~^0.513^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~10859~^~619~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~626~^0.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~ -~10859~^~645~^3.500^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~10859~^~646~^0.664^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~ -~10859~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~653~^0.021^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~672~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~687~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~ -~10859~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10859~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~10860~^~312~^0.182^4^0.017^~1~^~A~^^^1^0.148^0.222^3^0.126^0.237^~2, 3~^~02/01/2003~ -~10860~^~315~^0.022^4^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~404~^0.348^4^0.020^~1~^~A~^^^1^0.315^0.405^3^0.285^0.412^~2, 3~^~02/01/2003~ -~10860~^~405~^0.251^4^0.010^~1~^~A~^^^1^0.227^0.276^3^0.219^0.283^~2, 3~^~02/01/2003~ -~10860~^~406~^10.623^4^0.661^~1~^~A~^^^1^9.840^12.600^3^8.518^12.727^~2, 3~^~02/01/2003~ -~10860~^~410~^1.033^4^0.042^~1~^~A~^^^1^0.940^1.140^3^0.900^1.165^~2, 3~^~02/01/2003~ -~10860~^~415~^0.309^4^0.010^~1~^~A~^^^1^0.283^0.333^3^0.276^0.342^~2, 3~^~02/01/2003~ -~10860~^~501~^0.299^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~502~^1.399^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~503~^1.676^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~504~^2.782^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~505~^2.964^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~506~^0.795^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~507~^0.397^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~508~^1.417^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~509~^1.119^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~510~^1.901^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~511~^2.314^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~512~^1.343^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~513~^2.286^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~514~^3.362^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~515~^5.260^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~516~^2.508^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~517~^1.960^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~518~^1.359^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~10860~^~521~^0.628^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2006~ -~10860~^~605~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~606~^14.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~607~^0.000^4^0.000^~7~^~Z~^^^1^^^^^^^~02/01/2003~ -~10860~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~610~^0.010^4^0.010^~1~^~A~^^^1^0.000^0.038^3^-0.021^0.040^~1, 2, 3~^~02/01/2003~ -~10860~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~612~^0.551^4^0.023^~1~^~A~^^^1^0.506^0.611^3^0.477^0.624^~2, 3~^~02/01/2003~ -~10860~^~613~^9.028^4^0.480^~1~^~A~^^^1^8.251^10.297^3^7.499^10.557^~2, 3~^~02/01/2003~ -~10860~^~614~^4.411^4^0.227^~1~^~A~^^^1^3.954^5.040^3^3.687^5.134^~2, 3~^~02/01/2003~ -~10860~^~615~^0.081^4^0.005^~1~^~A~^^^1^0.072^0.096^3^0.064^0.098^~2, 3~^~02/01/2003~ -~10860~^~617~^17.439^4^0.772^~1~^~A~^^^1^16.076^19.433^3^14.981^19.897^~2, 3~^~02/01/2003~ -~10860~^~618~^4.088^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10860~^~619~^0.210^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10860~^~620~^0.152^4^0.003^~1~^~A~^^^1^0.144^0.157^3^0.142^0.161^~2, 3~^~02/01/2003~ -~10860~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~626~^1.236^4^0.031^~1~^~A~^^^1^1.148^1.286^3^1.137^1.336^~2, 3~^~02/01/2003~ -~10860~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~628~^0.329^4^0.018^~1~^~A~^^^1^0.304^0.381^3^0.272^0.385^~2, 3~^~02/01/2003~ -~10860~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~10860~^~645~^19.065^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~646~^4.859^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10860~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~653~^0.107^4^0.006^~1~^~A~^^^1^0.096^0.120^3^0.089^0.126^~2, 3~^~02/01/2003~ -~10860~^~672~^0.199^4^0.009^~1~^~A~^^^1^0.184^0.220^3^0.172^0.227^~2, 3~^~02/01/2003~ -~10860~^~675~^4.088^4^0.094^~1~^~A~^^^1^3.893^4.322^3^3.788^4.388^~2, 3~^~02/01/2003~ -~10860~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~687~^0.061^4^0.035^~1~^~A~^^^1^0.000^0.132^3^-0.052^0.173^~1, 2, 3~^~02/01/2003~ -~10860~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10860~^~851~^0.210^4^0.005^~1~^~A~^^^1^0.198^0.220^3^0.192^0.227^~2, 3~^~02/01/2003~ -~10861~^~312~^0.117^18^0.002^~1~^~A~^^^1^0.101^0.131^11^0.113^0.122^~2, 3~^~05/01/2012~ -~10861~^~315~^0.023^18^0.001^~1~^~A~^^^1^0.022^0.032^5^0.021^0.024^~1, 2, 3~^~05/01/2012~ -~10861~^~404~^0.554^9^0.022^~1~^~A~^^^1^0.336^0.759^6^0.498^0.610^~2, 3~^~05/01/2012~ -~10861~^~405~^0.257^9^0.008^~1~^~A~^^^1^0.230^0.300^3^0.233^0.280^~2, 3~^~05/01/2012~ -~10861~^~406~^10.714^9^0.282^~1~^~A~^^^1^9.090^11.700^5^9.973^11.456^~2, 3~^~05/01/2012~ -~10861~^~410~^1.167^6^0.071^~1~^~A~^^^1^1.000^1.400^1^0.604^1.730^~2, 3~^~05/01/2012~ -~10861~^~415~^0.513^9^0.024^~1~^~A~^^^1^0.423^0.672^3^0.441^0.584^~2, 3~^~05/01/2012~ -~10861~^~501~^0.464^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~502~^1.716^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~503~^1.847^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~504~^3.211^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~505~^3.470^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~506~^1.069^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~507~^0.440^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~508~^1.621^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~509~^1.546^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~510~^1.973^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~511~^2.514^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~512~^1.587^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~513~^2.235^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~514~^3.649^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~515~^5.960^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~516~^1.763^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~517~^1.577^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~518~^1.629^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10861~^~521~^0.136^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~10861~^~605~^0.119^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~606~^11.644^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~10861~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~611~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~10861~^~612~^0.430^9^0.014^~1~^~A~^^^1^0.366^0.512^6^0.394^0.465^~2, 3~^~05/01/2012~ -~10861~^~613~^7.446^9^0.173^~1~^~A~^^^1^6.219^8.461^4^6.947^7.945^~2, 3~^~05/01/2012~ -~10861~^~614~^3.580^9^0.070^~1~^~A~^^^1^3.052^3.875^3^3.345^3.814^~2, 3~^~05/01/2012~ -~10861~^~615~^0.068^9^0.002^~1~^~A~^^^1^0.052^0.078^5^0.062^0.074^~2, 3~^~05/01/2012~ -~10861~^~617~^14.073^9^0.315^~1~^~AS~^^^1^11.528^15.636^2^12.885^15.261^~2, 3~^~05/01/2012~ -~10861~^~618~^4.858^9^0.181^~1~^~AS~^^^1^3.773^5.806^4^4.370^5.346^~2, 3~^~05/01/2012~ -~10861~^~619~^0.204^9^0.015^~1~^~AS~^^^1^0.160^0.274^5^0.166^0.241^~2, 3~^~05/01/2012~ -~10861~^~620~^0.168^9^0.003^~1~^~A~^^^1^0.161^0.183^4^0.160^0.176^~2, 3~^~05/01/2012~ -~10861~^~621~^0.007^9^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~05/01/2012~ -~10861~^~624~^0.013^9^0.001^~1~^~A~^^^1^0.008^0.016^5^0.010^0.015^~2, 3~^~05/01/2012~ -~10861~^~625~^0.006^9^0.000^~1~^~A~^^^1^0.005^0.009^3^0.005^0.008^~2, 3~^~05/01/2012~ -~10861~^~626~^0.765^9^0.026^~1~^~AS~^^^1^0.634^0.929^5^0.696^0.834^~2, 3~^~05/01/2012~ -~10861~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~628~^0.292^9^0.012^~1~^~A~^^^1^0.227^0.354^5^0.260^0.323^~2, 3~^~05/01/2012~ -~10861~^~629~^0.005^9^0.001^~1~^~A~^^^1^0.003^0.008^4^0.003^0.007^~2, 3~^~05/01/2012~ -~10861~^~630~^0.006^9^0.000^~1~^~AS~^^^1^0.004^0.007^5^0.005^0.006^~2, 3~^~05/01/2012~ -~10861~^~631~^0.024^9^0.002^~1~^~A~^^^1^0.021^0.036^3^0.019^0.030^~2, 3~^~05/01/2012~ -~10861~^~645~^15.235^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~646~^5.602^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~652~^0.016^9^0.001^~1~^~A~^^^1^0.013^0.019^3^0.013^0.018^~2, 3~^~05/01/2012~ -~10861~^~653~^0.090^9^0.003^~1~^~A~^^^1^0.076^0.106^3^0.079^0.102^~2, 3~^~05/01/2012~ -~10861~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~05/01/2012~ -~10861~^~662~^0.005^9^0.000^~1~^~A~^^^1^0.003^0.009^4^0.004^0.007^~2, 3~^~05/01/2012~ -~10861~^~663~^0.083^9^0.002^~1~^~A~^^^1^0.071^0.099^5^0.078^0.089^~2, 3~^~05/01/2012~ -~10861~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10861~^~665~^0.031^9^0.002^~1~^~A~^^^1^0.019^0.040^4^0.024^0.037^~2, 3~^~05/01/2012~ -~10861~^~670~^0.041^9^0.003^~1~^~A~^^^1^0.032^0.061^3^0.031^0.050^~2, 3~^~05/01/2012~ -~10861~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~05/01/2012~ -~10861~^~672~^0.212^9^0.007^~1~^~A~^^^1^0.172^0.247^5^0.194^0.230^~2, 3~^~05/01/2012~ -~10861~^~673~^0.760^9^0.026^~1~^~A~^^^1^0.631^0.923^5^0.692^0.828^~2, 3~^~05/01/2012~ -~10861~^~674~^13.990^9^0.316^~1~^~A~^^^1^11.455^15.546^2^12.802^15.178^~2, 3~^~05/01/2012~ -~10861~^~675~^4.787^9^0.179^~1~^~A~^^^1^3.722^5.728^4^4.303^5.271^~2, 3~^~05/01/2012~ -~10861~^~676~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.007^5^0.005^0.006^~2, 3~^~05/01/2012~ -~10861~^~685~^0.005^9^0.000^~1~^~A~^^^1^0.002^0.006^3^0.003^0.006^~2, 3~^~05/01/2012~ -~10861~^~687~^0.094^9^0.002^~1~^~A~^^^1^0.084^0.102^3^0.087^0.100^~2, 3~^~05/01/2012~ -~10861~^~689~^0.071^9^0.003^~1~^~AS~^^^1^0.061^0.083^4^0.064^0.078^~2, 3~^~05/01/2012~ -~10861~^~693~^0.089^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~10861~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~10861~^~851~^0.199^9^0.015^~1~^~A~^^^1^0.156^0.268^5^0.161^0.236^~2, 3~^~05/01/2012~ -~10861~^~852~^0.031^9^0.003^~1~^~A~^^^1^0.024^0.042^4^0.024^0.038^~2, 3~^~05/01/2012~ -~10861~^~853~^0.040^9^0.000^~1~^~A~^^^1^0.037^0.044^4^0.039^0.041^~2, 3~^~05/01/2012~ -~10861~^~858~^0.048^9^0.001^~1~^~A~^^^1^0.040^0.054^5^0.045^0.052^~2, 3~^~05/01/2012~ -~10862~^~312~^0.105^18^0.002^~1~^~A~^^^1^0.093^0.130^6^0.099^0.111^~2, 3~^~05/01/2013~ -~10862~^~315~^0.022^18^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~404~^0.560^9^0.027^~1~^~A~^^^1^0.432^0.799^5^0.492^0.628^~2, 3~^~05/01/2013~ -~10862~^~405~^0.232^9^0.007^~1~^~A~^^^1^0.200^0.260^4^0.213^0.251^~2, 3~^~05/01/2013~ -~10862~^~406~^10.457^9^0.464^~1~^~A~^^^1^8.100^12.700^4^9.108^11.807^~2, 3~^~05/01/2013~ -~10862~^~410~^1.100^6^0.045^~1~^~A~^^^1^0.900^1.200^2^0.868^1.332^~2, 3~^~05/01/2013~ -~10862~^~415~^0.535^9^0.016^~1~^~A~^^^1^0.461^0.630^4^0.492^0.578^~2, 3~^~05/01/2013~ -~10862~^~501~^0.407^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~502~^1.504^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~503~^1.619^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~504~^2.814^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~505~^3.041^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~506~^0.937^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~507~^0.385^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~508~^1.421^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~509~^1.355^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~510~^1.729^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~511~^2.203^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~512~^1.391^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~513~^1.958^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~514~^3.198^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~515~^5.223^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~516~^1.545^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~517~^1.382^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~518~^1.428^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~10862~^~521~^0.119^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~ -~10862~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~606~^11.964^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10862~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10862~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~611~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~612~^0.441^9^0.025^~1~^~A~^^^1^0.378^0.529^4^0.369^0.513^~2, 3~^~05/01/2013~ -~10862~^~613~^7.635^9^0.363^~1~^~A~^^^1^6.662^9.047^4^6.636^8.635^~2, 3~^~05/01/2013~ -~10862~^~614~^3.679^9^0.104^~1~^~A~^^^1^3.290^4.168^4^3.394^3.965^~2, 3~^~05/01/2013~ -~10862~^~615~^0.070^9^0.002^~1~^~A~^^^1^0.062^0.082^5^0.065^0.076^~2, 3~^~05/01/2013~ -~10862~^~617~^14.342^9^0.681^~1~^~AS~^^^1^12.388^17.431^4^12.372^16.311^~2, 3~^~05/01/2013~ -~10862~^~618~^5.327^9^0.256^~1~^~AS~^^^1^4.503^6.649^4^4.632^6.023^~2, 3~^~05/01/2013~ -~10862~^~619~^0.229^9^0.020^~1~^~AS~^^^1^0.168^0.294^4^0.170^0.288^~2, 3~^~05/01/2013~ -~10862~^~620~^0.168^9^0.003^~1~^~A~^^^1^0.155^0.178^3^0.157^0.178^~2, 3~^~05/01/2013~ -~10862~^~621~^0.008^9^0.001^~1~^~A~^^^1^0.004^0.010^3^0.005^0.010^~2, 3~^~05/01/2012~ -~10862~^~624~^0.014^9^0.001^~1~^~A~^^^1^0.011^0.016^4^0.012^0.015^~2, 3~^~05/01/2012~ -~10862~^~625~^0.006^9^0.001^~1~^~A~^^^1^0.005^0.009^3^0.004^0.008^~2, 3~^~05/01/2012~ -~10862~^~626~^0.778^9^0.055^~1~^~AS~^^^1^0.661^0.983^4^0.628^0.929^~2, 3~^~05/01/2013~ -~10862~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~05/01/2012~ -~10862~^~628~^0.294^9^0.013^~1~^~A~^^^1^0.253^0.342^4^0.257^0.330^~2, 3~^~05/01/2013~ -~10862~^~629~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^3^0.002^0.006^~1, 2, 3~^~05/01/2012~ -~10862~^~630~^0.006^9^0.000^~1~^~AS~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~05/01/2012~ -~10862~^~631~^0.026^9^0.002^~1~^~A~^^^1^0.022^0.033^3^0.020^0.032^~2, 3~^~05/01/2012~ -~10862~^~645~^15.530^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~646~^6.112^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~652~^0.018^9^0.001^~1~^~A~^^^1^0.015^0.022^3^0.015^0.022^~2, 3~^~05/01/2012~ -~10862~^~653~^0.105^9^0.005^~1~^~A~^^^1^0.085^0.126^3^0.088^0.121^~2, 3~^~05/01/2013~ -~10862~^~654~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~05/01/2012~ -~10862~^~662~^0.006^9^0.001^~1~^~A~^^^1^0.004^0.011^4^0.003^0.009^~2, 3~^~05/01/2012~ -~10862~^~663~^0.104^9^0.014^~1~^~A~^^^1^0.069^0.172^4^0.064^0.144^~2, 3~^~05/01/2013~ -~10862~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~10862~^~665~^0.033^9^0.004^~1~^~A~^^^1^0.021^0.050^4^0.022^0.045^~2, 3~^~05/01/2013~ -~10862~^~670~^0.047^9^0.006^~1~^~A~^^^1^0.033^0.079^3^0.028^0.065^~2, 3~^~05/01/2012~ -~10862~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~05/01/2012~ -~10862~^~672~^0.224^9^0.009^~1~^~A~^^^1^0.182^0.268^4^0.201^0.247^~2, 3~^~05/01/2013~ -~10862~^~673~^0.772^9^0.054^~1~^~A~^^^1^0.657^0.972^4^0.622^0.922^~2, 3~^~05/01/2013~ -~10862~^~674~^14.237^9^0.677^~1~^~A~^^^1^12.306^17.259^4^12.295^16.180^~2, 3~^~05/01/2013~ -~10862~^~675~^5.247^9^0.249^~1~^~A~^^^1^4.445^6.550^4^4.572^5.923^~2, 3~^~05/01/2013~ -~10862~^~676~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~05/01/2012~ -~10862~^~685~^0.006^9^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~05/01/2012~ -~10862~^~687~^0.105^9^0.004^~1~^~A~^^^1^0.089^0.122^4^0.092^0.117^~2, 3~^~05/01/2013~ -~10862~^~689~^0.074^9^0.004^~1~^~AS~^^^1^0.062^0.087^3^0.062^0.086^~2, 3~^~05/01/2012~ -~10862~^~693~^0.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~10862~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~10862~^~851~^0.223^9^0.020^~1~^~A~^^^1^0.162^0.287^4^0.164^0.282^~2, 3~^~05/01/2013~ -~10862~^~852~^0.032^9^0.004^~1~^~A~^^^1^0.024^0.047^3^0.020^0.045^~2, 3~^~05/01/2012~ -~10862~^~853~^0.042^9^0.001^~1~^~A~^^^1^0.038^0.046^4^0.039^0.044^~2, 3~^~05/01/2012~ -~10862~^~858~^0.049^9^0.001^~1~^~A~^^^1^0.044^0.055^3^0.046^0.053^~2, 3~^~05/01/2012~ -~10863~^~312~^0.239^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~315~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~404~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~405~^0.188^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~406~^1.380^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~410~^0.566^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~415~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~605~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~606~^2.990^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~612~^0.085^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~613~^1.548^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~614~^1.304^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~617~^1.991^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~618~^0.547^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~10863~^~620~^0.146^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~626~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~628~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~10863~^~645~^2.126^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~646~^0.738^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~653~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~672~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10863~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~10863~^~851~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~10864~^~312~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~315~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~404~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~406~^0.725^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~410~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~415~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~606~^31.991^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~10864~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~10864~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~612~^1.320^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~613~^19.762^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~614~^10.443^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~615~^0.192^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~617~^37.818^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~618~^9.426^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~ -~10864~^~619~^0.476^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~10864~^~620~^0.191^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~621~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~626~^2.860^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~627~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~628~^0.757^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~629~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~630~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~631~^0.000^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2006~ -~10864~^~645~^41.435^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~10864~^~646~^10.535^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~10864~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~653~^0.274^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~672~^0.442^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~675~^9.426^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10864~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~ -~10864~^~851~^0.476^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~10865~^~312~^0.098^2^^~1~^~A~^^^1^0.073^0.124^1^^^^~03/01/2006~ -~10865~^~315~^0.022^2^^~1~^~A~^^^1^0.022^0.022^^^^~1~^~03/01/2006~ -~10865~^~404~^0.356^2^^~1~^~A~^^^1^0.302^0.410^1^^^^~03/01/2006~ -~10865~^~405~^0.189^2^^~1~^~A~^^^1^0.159^0.220^1^^^^~03/01/2006~ -~10865~^~406~^4.430^2^^~1~^~A~^^^1^3.750^5.110^1^^^^~03/01/2006~ -~10865~^~410~^0.531^2^^~1~^~A~^^^1^0.421^0.641^1^^^^~03/01/2006~ -~10865~^~415~^0.434^2^^~1~^~A~^^^1^0.271^0.597^1^^^^~03/01/2006~ -~10865~^~501~^0.201^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~502~^0.958^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~503~^0.967^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~505~^1.809^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~506~^0.512^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~508~^0.857^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~509~^0.695^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~510~^1.083^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~511~^1.370^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~512~^0.933^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~513~^1.261^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~514~^1.868^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~515~^3.065^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~516~^1.118^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~517~^0.919^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~518~^0.838^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~521~^0.139^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10865~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~606~^1.254^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~612~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~613~^0.783^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~614~^0.403^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~617~^1.494^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10865~^~618~^0.326^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10865~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10865~^~620~^0.041^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~626~^0.095^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10865~^~645~^1.610^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~646~^0.387^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~653~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~663~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~669~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~672~^0.010^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~674~^1.476^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~675~^0.308^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10865~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10865~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~10865~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10866~^~312~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10866~^~404~^0.235^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~405~^0.213^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~406~^5.320^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~410~^0.377^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~415~^0.265^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~502~^0.690^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~503~^0.697^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~504~^1.236^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~505~^1.304^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~506~^0.369^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~507~^0.173^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~508~^0.617^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~509~^0.501^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~510~^0.781^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~511~^0.987^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~512~^0.672^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~513~^0.909^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~514~^1.346^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~515~^2.208^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~516~^0.806^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~517~^0.662^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~518~^0.604^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10866~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10866~^~605~^0.031^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~606~^1.227^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10866~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10866~^~609~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~610~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~611~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~612~^0.044^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~613~^0.767^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~614~^0.395^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~615~^0.006^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~617~^1.462^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~618~^0.319^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~619~^0.010^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~620~^0.040^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~621~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~624~^0.007^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~625~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~626~^0.093^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~627~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~628~^0.021^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~629~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~630~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~631~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~645~^1.575^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~646~^0.379^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~652~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~653~^0.009^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~663~^0.017^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~669~^0.013^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~672~^0.010^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~674~^1.444^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~675~^0.301^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~685~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~687~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~689~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~693~^0.017^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~695~^0.013^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~697~^0.000^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10866~^~851~^0.010^0^^~4~^~BFFN~^~10865~^^^^^^^^^~05/01/2006~ -~10867~^~312~^0.122^2^^~1~^~A~^^^1^0.120^0.124^1^^^^~03/01/2006~ -~10867~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10867~^~404~^0.257^3^0.019^~1~^~A~^^^1^0.220^0.280^2^0.176^0.337^~2, 3~^~03/01/2006~ -~10867~^~405~^0.192^3^0.029^~1~^~A~^^^1^0.153^0.248^2^0.068^0.316^~2, 3~^~03/01/2006~ -~10867~^~406~^5.073^3^0.179^~1~^~A~^^^1^4.730^5.330^2^4.305^5.841^~2, 3~^~03/01/2006~ -~10867~^~410~^0.544^3^0.085^~1~^~A~^^^1^0.411^0.701^2^0.180^0.908^~2, 3~^~03/01/2006~ -~10867~^~415~^0.348^3^0.059^~1~^~A~^^^1^0.253^0.456^2^0.094^0.602^~2, 3~^~03/01/2006~ -~10867~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~502~^0.936^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~503~^0.945^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~504~^1.676^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~505~^1.768^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~506~^0.501^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~508~^0.837^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~509~^0.679^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~510~^1.059^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~511~^1.339^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~512~^0.911^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~513~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~514~^1.825^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~515~^2.995^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~516~^1.093^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~517~^0.898^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~518~^0.819^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~521~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10867~^~605~^0.028^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~606~^1.402^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~612~^0.046^2^^~1~^~A~^^^1^0.043^0.072^1^^^^~05/01/2006~ -~10867~^~613~^0.875^2^^~1~^~A~^^^1^0.866^1.322^1^^^^~05/01/2006~ -~10867~^~614~^0.456^2^^~1~^~A~^^^1^0.417^0.725^1^^^^~05/01/2006~ -~10867~^~615~^0.006^2^^~1~^~A~^^^1^0.006^0.010^1^^^^~05/01/2006~ -~10867~^~617~^1.789^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~10867~^~618~^0.537^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10867~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10867~^~620~^0.066^2^^~1~^~A~^^^1^0.075^0.090^1^^^^~05/01/2006~ -~10867~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~624~^0.010^2^^~1~^~A~^^^1^0.010^0.016^1^^^^~05/01/2006~ -~10867~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~626~^0.093^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10867~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~628~^0.029^2^^~1~^~A~^^^1^0.027^0.047^1^^^^~07/01/2015~ -~10867~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10867~^~645~^1.911^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~646~^0.641^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~653~^0.009^2^^~1~^~A~^^^1^0.010^0.012^1^^^^~05/01/2006~ -~10867~^~663~^0.014^2^^~1~^~A~^^^1^0.015^0.022^1^^^^~07/01/2015~ -~10867~^~669~^0.014^2^^~1~^~A~^^^1^0.011^0.023^1^^^^~05/01/2006~ -~10867~^~670~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10867~^~672~^0.022^2^^~1~^~A~^^^1^0.020^0.036^1^^^^~05/01/2006~ -~10867~^~674~^1.775^2^^~1~^~A~^^^1^1.906^2.763^1^^^^~07/01/2015~ -~10867~^~675~^0.505^2^^~1~^~A~^^^1^0.495^0.769^1^^^^~05/01/2006~ -~10867~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10867~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10867~^~851~^0.015^2^^~1~^~A~^^^1^0.013^0.025^1^^^^~05/01/2006~ -~10868~^~312~^0.118^5^0.010^~1~^~A~^^^1^0.093^0.153^4^0.090^0.146^~2, 3~^~03/01/2006~ -~10868~^~315~^0.022^5^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~404~^0.384^5^0.024^~1~^~A~^^^1^0.340^0.470^4^0.317^0.450^~2, 3~^~03/01/2006~ -~10868~^~405~^0.182^5^0.025^~1~^~A~^^^1^0.139^0.279^4^0.113^0.251^~2, 3~^~03/01/2006~ -~10868~^~406~^5.436^5^0.332^~1~^~A~^^^1^4.450^6.040^4^4.514^6.358^~2, 3~^~03/01/2006~ -~10868~^~410~^0.726^5^0.054^~1~^~A~^^^1^0.542^0.868^4^0.576^0.875^~2, 3~^~03/01/2006~ -~10868~^~415~^0.461^5^0.041^~1~^~A~^^^1^0.327^0.561^4^0.347^0.576^~2, 3~^~03/01/2006~ -~10868~^~501~^0.207^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~502~^0.986^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~503~^0.995^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~504~^1.766^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~505~^1.862^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~506~^0.527^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~507~^0.247^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~508~^0.882^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~509~^0.715^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~510~^1.115^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~511~^1.410^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~512~^0.960^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~513~^1.298^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~514~^1.923^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~515~^3.154^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~516~^1.151^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~517~^0.946^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~518~^0.863^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~521~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10868~^~605~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~606~^1.439^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~612~^0.051^4^0.010^~1~^~A~^^^1^0.034^0.074^3^0.019^0.083^~2, 3~^~03/01/2006~ -~10868~^~613~^0.911^4^0.161^~1~^~A~^^^1^0.627^1.259^3^0.400^1.423^~2, 3~^~03/01/2006~ -~10868~^~614~^0.454^4^0.076^~1~^~A~^^^1^0.322^0.598^3^0.213^0.695^~2, 3~^~03/01/2006~ -~10868~^~615~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.002^0.011^~1, 2, 3~^~03/01/2006~ -~10868~^~617~^1.847^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~618~^0.572^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10868~^~620~^0.072^4^0.003^~1~^~A~^^^1^0.065^0.079^3^0.061^0.082^~2, 3~^~03/01/2006~ -~10868~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~624~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.014^3^0.009^0.015^~2, 3~^~03/01/2006~ -~10868~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~626~^0.113^4^0.021^~1~^~A~^^^1^0.071^0.157^3^0.047^0.178^~2, 3~^~03/01/2006~ -~10868~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~628~^0.029^4^0.006^~1~^~A~^^^1^0.019^0.044^3^0.011^0.048^~2, 3~^~03/01/2006~ -~10868~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10868~^~645~^1.989^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~646~^0.687^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~653~^0.006^4^0.002^~1~^~A~^^^1^0.000^0.011^3^-0.001^0.014^~1, 2, 3~^~03/01/2006~ -~10868~^~663~^0.019^4^0.004^~1~^~A~^^^1^0.010^0.030^3^0.006^0.032^~2, 3~^~03/01/2006~ -~10868~^~669~^0.016^4^0.003^~1~^~A~^^^1^0.011^0.025^3^0.006^0.026^~2, 3~^~03/01/2006~ -~10868~^~672~^0.022^4^0.004^~1~^~A~^^^1^0.013^0.033^3^0.009^0.036^~2, 3~^~03/01/2006~ -~10868~^~674~^1.827^4^0.348^~1~^~A~^^^1^1.235^2.626^3^0.719^2.936^~2, 3~^~03/01/2006~ -~10868~^~675~^0.556^4^0.094^~1~^~A~^^^1^0.337^0.789^3^0.256^0.857^~2, 3~^~03/01/2006~ -~10868~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10868~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10868~^~851~^0.020^4^0.004^~1~^~A~^^^1^0.013^0.032^3^0.007^0.034^~2, 3~^~03/01/2006~ -~10869~^~312~^0.113^3^0.017^~1~^~A~^^^1^0.078^0.132^2^0.038^0.187^~2, 3~^~03/01/2006~ -~10869~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10869~^~404~^0.383^3^0.063^~1~^~A~^^^1^0.310^0.508^2^0.112^0.653^~2, 3~^~03/01/2006~ -~10869~^~405~^0.184^3^0.029^~1~^~A~^^^1^0.144^0.240^2^0.061^0.308^~2, 3~^~03/01/2006~ -~10869~^~406~^5.023^3^0.842^~1~^~A~^^^1^3.350^6.020^2^1.401^8.645^~2, 3~^~03/01/2006~ -~10869~^~410~^0.596^3^0.067^~1~^~A~^^^1^0.526^0.731^2^0.307^0.886^~2, 3~^~03/01/2006~ -~10869~^~415~^0.449^3^0.021^~1~^~A~^^^1^0.412^0.483^2^0.360^0.537^~2, 3~^~03/01/2006~ -~10869~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~502~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~503~^0.943^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~504~^1.674^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~505~^1.766^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~506~^0.500^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~508~^0.836^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~509~^0.678^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~510~^1.057^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~511~^1.337^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~512~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~513~^1.231^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~514~^1.823^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~515~^2.991^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~516~^1.092^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~517~^0.897^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~518~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~521~^0.135^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10869~^~605~^0.029^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~606~^1.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~612~^0.040^2^^~1~^~A~^^^1^0.032^0.048^1^^^^~03/01/2006~ -~10869~^~613~^0.769^2^^~1~^~A~^^^1^0.611^0.927^1^^^^~03/01/2006~ -~10869~^~614~^0.385^2^^~1~^~A~^^^1^0.315^0.456^1^^^^~03/01/2006~ -~10869~^~615~^0.005^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~03/01/2006~ -~10869~^~617~^1.549^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~618~^0.427^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10869~^~620~^0.059^2^^~1~^~A~^^^1^0.054^0.063^1^^^^~03/01/2006~ -~10869~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~624~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~03/01/2006~ -~10869~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~626~^0.089^2^^~1~^~A~^^^1^0.065^0.113^1^^^^~03/01/2006~ -~10869~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~628~^0.024^2^^~1~^~A~^^^1^0.021^0.028^1^^^^~03/01/2006~ -~10869~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10869~^~645~^1.662^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~646~^0.517^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~653~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~03/01/2006~ -~10869~^~663~^0.016^2^^~1~^~A~^^^1^0.014^0.017^1^^^^~03/01/2006~ -~10869~^~669~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~03/01/2006~ -~10869~^~672~^0.017^2^^~1~^~A~^^^1^0.015^0.019^1^^^^~03/01/2006~ -~10869~^~674~^1.533^2^^~1~^~A~^^^1^1.254^1.813^1^^^^~03/01/2006~ -~10869~^~675~^0.414^2^^~1~^~A~^^^1^0.399^0.430^1^^^^~03/01/2006~ -~10869~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10869~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10869~^~851~^0.014^2^^~1~^~A~^^^1^0.014^0.014^^^^^~03/01/2006~ -~10870~^~312~^0.085^2^^~1~^~A~^^^1^0.076^0.094^1^^^^~03/01/2006~ -~10870~^~315~^0.037^2^^~1~^~A~^^^1^0.022^0.052^1^^^~1~^~03/01/2006~ -~10870~^~404~^0.308^2^^~1~^~A~^^^1^0.267^0.350^1^^^^~03/01/2006~ -~10870~^~405~^0.137^2^^~1~^~A~^^^1^0.134^0.140^1^^^^~03/01/2006~ -~10870~^~406~^4.285^2^^~1~^~A~^^^1^4.270^4.300^1^^^^~03/01/2006~ -~10870~^~410~^0.689^2^^~1~^~A~^^^1^0.590^0.789^1^^^^~03/01/2006~ -~10870~^~415~^0.335^2^^~1~^~A~^^^1^0.323^0.348^1^^^^~03/01/2006~ -~10870~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~502~^0.675^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~503~^0.681^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~504~^1.209^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~505~^1.275^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~506~^0.361^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~507~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~508~^0.604^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~509~^0.490^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~510~^0.764^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~511~^0.966^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~512~^0.657^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~513~^0.889^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~514~^1.317^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~515~^2.160^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~516~^0.788^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~517~^0.648^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~518~^0.591^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10870~^~521~^0.098^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10870~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10870~^~606~^1.528^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10870~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~612~^0.057^2^^~1~^~A~^^^1^0.035^0.080^1^^^^~03/01/2006~ -~10870~^~613~^0.973^2^^~1~^~A~^^^1^0.604^1.343^1^^^^~03/01/2006~ -~10870~^~614~^0.472^2^^~1~^~A~^^^1^0.309^0.636^1^^^^~03/01/2006~ -~10870~^~615~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~03/01/2006~ -~10870~^~617~^1.966^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10870~^~618~^0.592^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10870~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10870~^~620~^0.049^2^^~1~^~A~^^^1^0.048^0.051^1^^^^~03/01/2006~ -~10870~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~624~^0.009^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~03/01/2006~ -~10870~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~626~^0.123^2^^~1~^~A~^^^1^0.076^0.170^1^^^^~03/01/2006~ -~10870~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~628~^0.035^2^^~1~^~A~^^^1^0.022^0.049^1^^^^~03/01/2006~ -~10870~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10870~^~645~^2.125^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10870~^~646~^0.690^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10870~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~653~^0.013^2^^~1~^~A~^^^1^0.007^0.019^1^^^^~03/01/2006~ -~10870~^~663~^0.023^2^^~1~^~A~^^^1^0.016^0.031^1^^^^~03/01/2006~ -~10870~^~669~^0.014^2^^~1~^~A~^^^1^0.010^0.018^1^^^^~03/01/2006~ -~10870~^~672~^0.024^2^^~1~^~A~^^^1^0.016^0.033^1^^^^~03/01/2006~ -~10870~^~674~^1.943^2^^~1~^~A~^^^1^1.227^2.659^1^^^^~03/01/2006~ -~10870~^~675~^0.578^2^^~1~^~A~^^^1^0.393^0.763^1^^^^~03/01/2006~ -~10870~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10870~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10870~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10870~^~851~^0.024^2^^~1~^~A~^^^1^0.014^0.034^1^^^^~03/01/2006~ -~10871~^~312~^0.095^2^^~1~^~A~^^^1^0.092^0.099^1^^^^~03/01/2006~ -~10871~^~315~^0.038^2^^~1~^~A~^^^1^0.022^0.053^1^^^~1~^~03/01/2006~ -~10871~^~404~^0.260^2^^~1~^~A~^^^1^0.241^0.280^1^^^^~03/01/2006~ -~10871~^~405~^0.141^2^^~1~^~A~^^^1^0.118^0.163^1^^^^~03/01/2006~ -~10871~^~406~^3.620^2^^~1~^~A~^^^1^3.260^3.980^1^^^^~03/01/2006~ -~10871~^~410~^0.644^2^^~1~^~A~^^^1^0.570^0.719^1^^^^~03/01/2006~ -~10871~^~415~^0.260^2^^~1~^~A~^^^1^0.249^0.272^1^^^^~03/01/2006~ -~10871~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~502~^0.621^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~503~^0.627^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~504~^1.112^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~505~^1.173^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~506~^0.332^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~507~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~508~^0.555^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~509~^0.451^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~510~^0.702^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~511~^0.888^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~512~^0.605^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~513~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~514~^1.211^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~515~^1.987^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~516~^0.725^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~517~^0.596^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~518~^0.543^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10871~^~521~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10871~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10871~^~606~^1.841^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10871~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~612~^0.068^2^^~1~^~A~^^^1^0.035^0.101^1^^^^~03/01/2006~ -~10871~^~613~^1.159^2^^~1~^~A~^^^1^0.621^1.697^1^^^^~03/01/2006~ -~10871~^~614~^0.580^2^^~1~^~A~^^^1^0.335^0.826^1^^^^~03/01/2006~ -~10871~^~615~^0.008^2^^~1~^~A~^^^1^0.004^0.012^1^^^^~03/01/2006~ -~10871~^~617~^2.286^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10871~^~618~^0.741^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10871~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10871~^~620~^0.047^2^^~1~^~A~^^^1^0.044^0.051^1^^^^~03/01/2006~ -~10871~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~624~^0.011^2^^~1~^~A~^^^1^0.008^0.013^1^^^^~03/01/2006~ -~10871~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~626~^0.130^2^^~1~^~A~^^^1^0.071^0.190^1^^^^~03/01/2006~ -~10871~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~628~^0.041^2^^~1~^~A~^^^1^0.021^0.062^1^^^^~03/01/2006~ -~10871~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10871~^~645~^2.458^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10871~^~646~^0.851^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10871~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~653~^0.015^2^^~1~^~A~^^^1^0.008^0.022^1^^^^~03/01/2006~ -~10871~^~663~^0.030^2^^~1~^~A~^^^1^0.016^0.044^1^^^^~03/01/2006~ -~10871~^~669~^0.017^2^^~1~^~A~^^^1^0.009^0.025^1^^^^~03/01/2006~ -~10871~^~672~^0.032^2^^~1~^~A~^^^1^0.016^0.048^1^^^^~03/01/2006~ -~10871~^~674~^2.256^2^^~1~^~A~^^^1^1.206^3.306^1^^^^~03/01/2006~ -~10871~^~675~^0.724^2^^~1~^~A~^^^1^0.385^1.064^1^^^^~03/01/2006~ -~10871~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10871~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10871~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10871~^~851~^0.030^2^^~1~^~A~^^^1^0.014^0.047^1^^^^~03/01/2006~ -~10872~^~312~^0.107^2^^~1~^~A~^^^1^0.092^0.122^1^^^^~03/01/2006~ -~10872~^~315~^0.040^2^^~1~^~A~^^^1^0.022^0.057^1^^^~1~^~03/01/2006~ -~10872~^~404~^0.284^2^^~1~^~A~^^^1^0.256^0.313^1^^^^~03/01/2006~ -~10872~^~405~^0.146^2^^~1~^~A~^^^1^0.133^0.159^1^^^^~03/01/2006~ -~10872~^~406~^3.870^2^^~1~^~A~^^^1^3.820^3.920^1^^^^~03/01/2006~ -~10872~^~410~^0.661^2^^~1~^~A~^^^1^0.619^0.702^1^^^^~03/01/2006~ -~10872~^~415~^0.294^2^^~1~^~A~^^^1^0.276^0.312^1^^^^~03/01/2006~ -~10872~^~501~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~502~^0.630^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~503~^0.635^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~504~^1.127^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~505~^1.189^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~506~^0.337^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~508~^0.563^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~509~^0.457^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~510~^0.712^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~511~^0.900^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~512~^0.613^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~513~^0.829^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~514~^1.227^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~515~^2.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~516~^0.735^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~517~^0.604^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~518~^0.551^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10872~^~521~^0.091^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10872~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10872~^~606~^1.447^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10872~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~612~^0.054^2^^~1~^~A~^^^1^0.032^0.077^1^^^^~03/01/2006~ -~10872~^~613~^0.926^2^^~1~^~A~^^^1^0.548^1.305^1^^^^~03/01/2006~ -~10872~^~614~^0.445^2^^~1~^~A~^^^1^0.274^0.617^1^^^^~03/01/2006~ -~10872~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~617~^1.888^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10872~^~618~^0.552^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10872~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10872~^~620~^0.046^2^^~1~^~A~^^^1^0.041^0.051^1^^^^~03/01/2006~ -~10872~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~624~^0.009^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~03/01/2006~ -~10872~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~626~^0.119^2^^~1~^~A~^^^1^0.073^0.166^1^^^^~03/01/2006~ -~10872~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~628~^0.033^2^^~1~^~A~^^^1^0.020^0.047^1^^^^~03/01/2006~ -~10872~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10872~^~645~^2.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10872~^~646~^0.644^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10872~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~653~^0.012^2^^~1~^~A~^^^1^0.006^0.017^1^^^^~03/01/2006~ -~10872~^~663~^0.022^2^^~1~^~A~^^^1^0.015^0.030^1^^^^~03/01/2006~ -~10872~^~669~^0.013^2^^~1~^~A~^^^1^0.009^0.018^1^^^^~03/01/2006~ -~10872~^~672~^0.023^2^^~1~^~A~^^^1^0.014^0.032^1^^^^~03/01/2006~ -~10872~^~674~^1.865^2^^~1~^~A~^^^1^1.150^2.581^1^^^^~03/01/2006~ -~10872~^~675~^0.539^2^^~1~^~A~^^^1^0.335^0.743^1^^^^~03/01/2006~ -~10872~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10872~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10872~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10872~^~851~^0.022^2^^~1~^~A~^^^1^0.012^0.033^1^^^^~03/01/2006~ -~10873~^~312~^0.094^3^0.010^~1~^~A~^^^1^0.078^0.111^2^0.053^0.135^~2, 3~^~03/01/2006~ -~10873~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10873~^~404~^0.333^3^0.047^~1~^~A~^^^1^0.260^0.420^2^0.132^0.534^~2, 3~^~03/01/2006~ -~10873~^~405~^0.238^3^0.016^~1~^~A~^^^1^0.211^0.265^2^0.171^0.305^~2, 3~^~03/01/2006~ -~10873~^~406~^7.620^3^0.885^~1~^~A~^^^1^5.910^8.870^2^3.813^11.427^~2, 3~^~03/01/2006~ -~10873~^~410~^0.486^3^0.047^~1~^~A~^^^1^0.407^0.571^2^0.282^0.690^~2, 3~^~03/01/2006~ -~10873~^~415~^0.384^3^0.023^~1~^~A~^^^1^0.338^0.412^2^0.284^0.483^~2, 3~^~03/01/2006~ -~10873~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~502~^1.080^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~503~^1.090^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~504~^1.934^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~505~^2.039^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~506~^0.577^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~507~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~508~^0.966^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~509~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~510~^1.221^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~511~^1.545^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~512~^1.051^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~513~^1.422^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~514~^2.106^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~515~^3.455^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~516~^1.261^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~517~^1.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~518~^0.945^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~521~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~605~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~606~^1.418^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~612~^0.052^2^^~1~^~A~^^^1^0.049^0.056^1^^^^~03/01/2006~ -~10873~^~613~^0.915^2^^~1~^~A~^^^1^0.859^0.970^1^^^^~03/01/2006~ -~10873~^~614~^0.418^2^^~1~^~A~^^^1^0.382^0.454^1^^^^~03/01/2006~ -~10873~^~615~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~03/01/2006~ -~10873~^~617~^1.846^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~618~^0.588^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10873~^~620~^0.083^2^^~1~^~A~^^^1^0.077^0.090^1^^^^~03/01/2006~ -~10873~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~624~^0.014^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~03/01/2006~ -~10873~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~626~^0.124^2^^~1~^~A~^^^1^0.122^0.125^1^^^^~03/01/2006~ -~10873~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~628~^0.026^2^^~1~^~A~^^^1^0.024^0.028^1^^^^~03/01/2006~ -~10873~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10873~^~645~^1.995^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~646~^0.711^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~653~^0.014^2^^~1~^~A~^^^1^0.010^0.018^1^^^^~03/01/2006~ -~10873~^~663~^0.021^2^^~1~^~A~^^^1^0.017^0.025^1^^^^~03/01/2006~ -~10873~^~669~^0.014^2^^~1~^~A~^^^1^0.010^0.019^1^^^^~03/01/2006~ -~10873~^~670~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10873~^~672~^0.019^2^^~1~^~A~^^^1^0.016^0.022^1^^^^~03/01/2006~ -~10873~^~674~^1.825^2^^~1~^~A~^^^1^1.821^1.829^1^^^^~03/01/2006~ -~10873~^~675~^0.556^2^^~1~^~A~^^^1^0.492^0.619^1^^^^~03/01/2006~ -~10873~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10873~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10873~^~851~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~03/01/2006~ -~10874~^~312~^0.173^3^0.059^~1~^~A~^^^1^0.112^0.290^2^-0.079^0.425^~2, 3~^~03/01/2006~ -~10874~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10874~^~404~^0.291^3^0.047^~1~^~A~^^^1^0.222^0.380^2^0.090^0.492^~2, 3~^~03/01/2006~ -~10874~^~405~^0.198^3^0.011^~1~^~A~^^^1^0.177^0.212^2^0.152^0.245^~2, 3~^~03/01/2006~ -~10874~^~406~^7.793^3^0.474^~1~^~A~^^^1^6.870^8.440^2^5.754^9.832^~2, 3~^~03/01/2006~ -~10874~^~410~^0.557^3^0.132^~1~^~A~^^^1^0.358^0.806^2^-0.010^1.124^~2, 3~^~03/01/2006~ -~10874~^~415~^0.381^3^0.043^~1~^~A~^^^1^0.297^0.438^2^0.196^0.566^~2, 3~^~03/01/2006~ -~10874~^~501~^0.234^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~502~^1.116^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~503~^1.126^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~504~^1.999^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~505~^2.108^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~506~^0.597^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~508~^0.998^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~509~^0.810^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~510~^1.262^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~511~^1.597^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~512~^1.087^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~513~^1.470^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~514~^2.177^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~515~^3.571^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~516~^1.303^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~517~^1.071^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~518~^0.977^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~521~^0.162^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10874~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~606~^1.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~612~^0.051^2^^~1~^~A~^^^1^0.042^0.075^1^^^^~05/01/2006~ -~10874~^~613~^1.010^2^^~1~^~A~^^^1^0.803^1.506^1^^^^~05/01/2006~ -~10874~^~614~^0.474^2^^~1~^~A~^^^1^0.369^0.714^1^^^^~05/01/2006~ -~10874~^~615~^0.007^2^^~1~^~A~^^^1^0.006^0.010^1^^^^~05/01/2006~ -~10874~^~617~^2.221^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10874~^~618~^0.500^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10874~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10874~^~620~^0.066^2^^~1~^~A~^^^1^0.070^0.081^1^^^^~05/01/2006~ -~10874~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~624~^0.012^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~05/01/2006~ -~10874~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~626~^0.126^2^^~1~^~A~^^^1^0.102^0.186^1^^^^~05/01/2006~ -~10874~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~628~^0.033^2^^~1~^~A~^^^1^0.029^0.046^1^^^^~05/01/2006~ -~10874~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10874~^~645~^2.380^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~646~^0.600^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~653~^0.010^2^^~1~^~A~^^^1^0.006^0.016^1^^^^~05/01/2006~ -~10874~^~663~^0.023^2^^~1~^~A~^^^1^0.011^0.042^1^^^^~05/01/2006~ -~10874~^~669~^0.013^2^^~1~^~A~^^^1^0.009^0.021^1^^^^~05/01/2006~ -~10874~^~670~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10874~^~672~^0.018^2^^~1~^~A~^^^1^0.017^0.025^1^^^^~05/01/2006~ -~10874~^~674~^2.198^2^^~1~^~A~^^^1^1.683^3.340^1^^^^~05/01/2006~ -~10874~^~675~^0.478^2^^~1~^~A~^^^1^0.408^0.684^1^^^^~05/01/2006~ -~10874~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10874~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10874~^~851~^0.016^2^^~1~^~A~^^^1^0.015^0.021^1^^^^~05/01/2006~ -~10875~^~312~^0.096^2^^~1~^~A~^^^1^0.096^0.096^^^^^~03/01/2006~ -~10875~^~315~^0.022^2^^~1~^~A~^^^1^0.022^0.022^^^^~1~^~03/01/2006~ -~10875~^~404~^0.308^2^^~1~^~A~^^^1^0.247^0.370^1^^^^~03/01/2006~ -~10875~^~405~^0.261^2^^~1~^~A~^^^1^0.237^0.285^1^^^^~03/01/2006~ -~10875~^~406~^9.010^2^^~1~^~A~^^^1^8.980^9.040^1^^^^~03/01/2006~ -~10875~^~410~^0.469^2^^~1~^~A~^^^1^0.376^0.562^1^^^^~03/01/2006~ -~10875~^~415~^0.392^2^^~1~^~A~^^^1^0.374^0.410^1^^^^~03/01/2006~ -~10875~^~501~^0.260^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~502~^1.241^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~503~^1.253^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~504~^2.223^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~505~^2.344^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~506~^0.664^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~507~^0.312^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~508~^1.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~509~^0.900^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~510~^1.404^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~511~^1.776^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~512~^1.209^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~513~^1.634^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~514~^2.421^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~515~^3.971^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~516~^1.449^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~517~^1.191^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~518~^1.086^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~521~^0.180^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~606~^1.110^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~609~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~610~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~611~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~612~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~613~^0.706^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~614~^0.334^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~617~^1.234^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~618~^0.458^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10875~^~620~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~625~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~626~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10875~^~645~^1.351^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~646~^0.577^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~652~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~653~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~663~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~669~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~672~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~674~^1.222^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~675~^0.451^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~687~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10875~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10875~^~697~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10875~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~312~^0.189^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10876~^~404~^0.468^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~406~^6.720^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~410~^1.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~415~^0.428^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~501~^0.212^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~502~^1.009^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~503~^1.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~504~^1.808^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~505~^1.906^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~506~^0.540^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~507~^0.253^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~508~^0.903^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~509~^0.732^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~510~^1.142^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~511~^1.444^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~512~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~513~^1.329^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~514~^1.968^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~515~^3.229^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~516~^1.178^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~517~^0.968^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~518~^0.883^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10876~^~521~^0.146^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~605~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~606~^0.493^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10876~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10876~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~612~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~613~^0.304^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~614~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~617~^0.624^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10876~^~618~^0.209^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10876~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10876~^~620~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10876~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~626~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10876~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10876~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10876~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10876~^~645~^0.676^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~646~^0.286^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~663~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~669~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~674~^0.618^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~675~^0.204^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10876~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10876~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~10876~^~851~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10877~^~312~^0.089^3^0.014^~1~^~A~^^^1^0.065^0.112^2^0.030^0.148^~2, 3~^~03/01/2006~ -~10877~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10877~^~404~^0.330^3^0.052^~1~^~A~^^^1^0.240^0.420^2^0.106^0.554^~2, 3~^~03/01/2006~ -~10877~^~405~^0.188^3^0.033^~1~^~A~^^^1^0.135^0.249^2^0.045^0.330^~2, 3~^~03/01/2006~ -~10877~^~406~^4.040^3^0.673^~1~^~A~^^^1^3.150^5.360^2^1.143^6.937^~2, 3~^~03/01/2006~ -~10877~^~410~^0.618^3^0.025^~1~^~A~^^^1^0.593^0.668^2^0.511^0.725^~2, 3~^~03/01/2006~ -~10877~^~415~^0.335^3^0.027^~1~^~A~^^^1^0.298^0.388^2^0.218^0.452^~2, 3~^~03/01/2006~ -~10877~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~502~^0.952^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~503~^0.960^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~504~^1.705^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~505~^1.797^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~506~^0.509^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~507~^0.239^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~508~^0.851^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~509~^0.690^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~510~^1.076^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~511~^1.361^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~512~^0.927^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~513~^1.253^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~514~^1.856^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~515~^3.045^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~516~^1.111^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~517~^0.913^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~518~^0.833^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~521~^0.138^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10877~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~606~^1.536^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~612~^0.056^2^^~1~^~A~^^^1^0.025^0.111^1^^^^~05/01/2006~ -~10877~^~613~^0.961^2^^~1~^~A~^^^1^0.477^1.855^1^^^^~05/01/2006~ -~10877~^~614~^0.493^2^^~1~^~A~^^^1^0.256^0.940^1^^^^~05/01/2006~ -~10877~^~615~^0.006^2^^~1~^~A~^^^1^0.004^0.011^1^^^^~05/01/2006~ -~10877~^~617~^1.989^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10877~^~618~^0.538^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10877~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~10877~^~620~^0.051^2^^~1~^~A~^^^1^0.048^0.077^1^^^^~05/01/2006~ -~10877~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~624~^0.010^2^^~1~^~A~^^^1^0.009^0.015^1^^^^~05/01/2006~ -~10877~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~626~^0.102^2^^~1~^~A~^^^1^0.052^0.196^1^^^^~05/01/2006~ -~10877~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~628~^0.035^2^^~1~^~A~^^^1^0.016^0.070^1^^^^~05/01/2006~ -~10877~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10877~^~645~^2.127^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~646~^0.634^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~653~^0.009^2^^~1~^~A~^^^1^0.007^0.016^1^^^^~05/01/2006~ -~10877~^~663~^0.023^2^^~1~^~A~^^^1^0.017^0.040^1^^^^~05/01/2006~ -~10877~^~669~^0.016^2^^~1~^~A~^^^1^0.010^0.028^1^^^^~05/01/2006~ -~10877~^~670~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10877~^~672~^0.023^2^^~1~^~A~^^^1^0.015^0.040^1^^^^~05/01/2006~ -~10877~^~674~^1.966^2^^~1~^~A~^^^1^0.873^3.895^1^^^^~05/01/2006~ -~10877~^~675~^0.505^2^^~1~^~A~^^^1^0.375^0.850^1^^^^~05/01/2006~ -~10877~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~10877~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~10877~^~851~^0.022^2^^~1~^~A~^^^1^0.014^0.039^1^^^^~05/01/2006~ -~10878~^~312~^0.113^4^0.006^~1~^~A~^^^1^0.101^0.127^3^0.095^0.131^~2, 3~^~03/01/2006~ -~10878~^~315~^0.022^4^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~404~^0.409^4^0.031^~1~^~A~^^^1^0.356^0.491^3^0.312^0.506^~2, 3~^~03/01/2006~ -~10878~^~405~^0.190^4^0.008^~1~^~A~^^^1^0.172^0.212^3^0.163^0.216^~2, 3~^~03/01/2006~ -~10878~^~406~^5.895^4^0.562^~1~^~A~^^^1^4.630^7.360^3^4.108^7.682^~2, 3~^~03/01/2006~ -~10878~^~410~^0.762^4^0.036^~1~^~A~^^^1^0.690^0.860^3^0.647^0.878^~2, 3~^~03/01/2006~ -~10878~^~415~^0.435^4^0.030^~1~^~A~^^^1^0.392^0.521^3^0.338^0.531^~2, 3~^~03/01/2006~ -~10878~^~501~^0.177^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~502~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~503~^0.850^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~504~^1.508^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~505~^1.590^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~506~^0.450^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~507~^0.211^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~508~^0.753^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~509~^0.611^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~510~^0.952^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~511~^1.204^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~512~^0.820^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~513~^1.108^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~514~^1.642^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~515~^2.694^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~516~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~517~^0.808^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~518~^0.737^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10878~^~521~^0.122^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10878~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~606~^1.401^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~611~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~03/01/2006~ -~10878~^~612~^0.050^3^0.016^~1~^~A~^^^1^0.022^0.076^2^-0.018^0.117^~2, 3~^~03/01/2006~ -~10878~^~613~^0.879^3^0.277^~1~^~A~^^^1^0.405^1.366^2^-0.315^2.073^~2, 3~^~03/01/2006~ -~10878~^~614~^0.446^3^0.137^~1~^~A~^^^1^0.212^0.686^2^-0.143^1.035^~2, 3~^~03/01/2006~ -~10878~^~615~^0.007^3^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.004^0.018^~2, 3~^~03/01/2006~ -~10878~^~617~^1.741^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10878~^~618~^0.451^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10878~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10878~^~620~^0.054^3^0.003^~1~^~A~^^^1^0.049^0.058^2^0.042^0.066^~2, 3~^~03/01/2006~ -~10878~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.013^~2, 3~^~03/01/2006~ -~10878~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~626~^0.111^3^0.034^~1~^~A~^^^1^0.049^0.165^2^-0.034^0.256^~2, 3~^~03/01/2006~ -~10878~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~628~^0.028^3^0.009^~1~^~A~^^^1^0.013^0.044^2^-0.010^0.066^~2, 3~^~03/01/2006~ -~10878~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10878~^~645~^1.879^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~646~^0.540^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~653~^0.009^3^0.002^~1~^~A~^^^1^0.004^0.012^2^-0.002^0.019^~2, 3~^~03/01/2006~ -~10878~^~663~^0.019^3^0.004^~1~^~A~^^^1^0.013^0.028^2^0.000^0.039^~2, 3~^~03/01/2006~ -~10878~^~669~^0.013^3^0.002^~1~^~A~^^^1^0.010^0.016^2^0.005^0.021^~2, 3~^~03/01/2006~ -~10878~^~672~^0.017^3^0.004^~1~^~A~^^^1^0.010^0.025^2^-0.001^0.036^~2, 3~^~03/01/2006~ -~10878~^~674~^1.721^3^0.545^~1~^~A~^^^1^0.805^2.690^2^-0.623^4.065^~2, 3~^~03/01/2006~ -~10878~^~675~^0.438^3^0.093^~1~^~A~^^^1^0.271^0.593^2^0.037^0.839^~2, 3~^~03/01/2006~ -~10878~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10878~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10878~^~851~^0.017^3^0.003^~1~^~A~^^^1^0.011^0.023^2^0.002^0.032^~2, 3~^~03/01/2006~ -~10879~^~312~^0.091^4^0.007^~1~^~A~^^^1^0.073^0.104^3^0.070^0.112^~2, 3~^~03/01/2006~ -~10879~^~315~^0.022^4^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~404~^0.362^4^0.036^~1~^~A~^^^1^0.303^0.460^3^0.249^0.475^~2, 3~^~03/01/2006~ -~10879~^~405~^0.183^4^0.007^~1~^~A~^^^1^0.162^0.190^3^0.161^0.205^~2, 3~^~03/01/2006~ -~10879~^~406~^5.797^4^0.560^~1~^~A~^^^1^4.390^6.720^3^4.014^7.581^~2, 3~^~03/01/2006~ -~10879~^~410~^0.721^4^0.039^~1~^~A~^^^1^0.640^0.797^3^0.596^0.846^~2, 3~^~03/01/2006~ -~10879~^~415~^0.394^4^0.030^~1~^~A~^^^1^0.335^0.462^3^0.298^0.490^~2, 3~^~03/01/2006~ -~10879~^~501~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~502~^0.805^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~503~^0.812^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~504~^1.441^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~505~^1.519^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~506~^0.430^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~507~^0.202^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~508~^0.719^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~509~^0.584^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~510~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~511~^1.151^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~512~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~513~^1.059^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~514~^1.569^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~515~^2.574^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~516~^0.939^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~517~^0.772^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~518~^0.704^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10879~^~521~^0.117^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10879~^~606~^1.424^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~610~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.007^~1, 2, 3~^~03/01/2006~ -~10879~^~611~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~03/01/2006~ -~10879~^~612~^0.051^4^0.005^~1~^~A~^^^1^0.037^0.059^3^0.034^0.068^~2, 3~^~03/01/2006~ -~10879~^~613~^0.898^4^0.086^~1~^~A~^^^1^0.669^1.030^3^0.626^1.170^~2, 3~^~03/01/2006~ -~10879~^~614~^0.447^4^0.037^~1~^~A~^^^1^0.348^0.506^3^0.330^0.564^~2, 3~^~03/01/2006~ -~10879~^~615~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.001^0.010^~1, 2, 3~^~03/01/2006~ -~10879~^~617~^1.830^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10879~^~618~^0.453^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10879~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10879~^~620~^0.051^4^0.002^~1~^~A~^^^1^0.047^0.058^3^0.044^0.059^~2, 3~^~03/01/2006~ -~10879~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~624~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~03/01/2006~ -~10879~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~626~^0.122^4^0.012^~1~^~A~^^^1^0.087^0.139^3^0.083^0.160^~2, 3~^~03/01/2006~ -~10879~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~628~^0.028^4^0.003^~1~^~A~^^^1^0.021^0.036^3^0.018^0.039^~2, 3~^~03/01/2006~ -~10879~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10879~^~645~^1.983^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~646~^0.542^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10879~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~653~^0.010^4^0.001^~1~^~A~^^^1^0.006^0.013^3^0.005^0.014^~2, 3~^~03/01/2006~ -~10879~^~663~^0.016^4^0.003^~1~^~A~^^^1^0.010^0.023^3^0.007^0.026^~2, 3~^~03/01/2006~ -~10879~^~669~^0.010^4^0.001^~1~^~A~^^^1^0.007^0.013^3^0.006^0.015^~2, 3~^~03/01/2006~ -~10879~^~672~^0.018^4^0.003^~1~^~A~^^^1^0.011^0.026^3^0.008^0.028^~2, 3~^~03/01/2006~ -~10879~^~674~^1.814^4^0.180^~1~^~A~^^^1^1.280^2.043^3^1.240^2.387^~2, 3~^~03/01/2006~ -~10879~^~675~^0.443^4^0.066^~1~^~A~^^^1^0.304^0.601^3^0.233^0.653^~2, 3~^~03/01/2006~ -~10879~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~687~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.006^0.011^~1, 2, 3~^~03/01/2006~ -~10879~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10879~^~851~^0.019^4^0.002^~1~^~A~^^^1^0.015^0.025^3^0.012^0.026^~2, 3~^~03/01/2006~ -~10880~^~312~^0.101^4^0.009^~1~^~A~^^^1^0.076^0.117^3^0.073^0.130^~2, 3~^~03/01/2006~ -~10880~^~315~^0.022^4^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~404~^0.402^4^0.015^~1~^~A~^^^1^0.358^0.426^3^0.353^0.451^~2, 3~^~03/01/2006~ -~10880~^~405~^0.187^4^0.008^~1~^~A~^^^1^0.171^0.203^3^0.162^0.213^~2, 3~^~03/01/2006~ -~10880~^~406~^5.473^4^0.561^~1~^~A~^^^1^4.210^6.940^3^3.688^7.257^~2, 3~^~03/01/2006~ -~10880~^~410~^0.734^4^0.043^~1~^~A~^^^1^0.610^0.804^3^0.599^0.870^~2, 3~^~03/01/2006~ -~10880~^~415~^0.413^4^0.026^~1~^~A~^^^1^0.368^0.480^3^0.329^0.498^~2, 3~^~03/01/2006~ -~10880~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~502~^0.776^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~503~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~504~^1.389^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~505~^1.465^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~506~^0.415^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~507~^0.195^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~508~^0.694^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~509~^0.563^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~510~^0.877^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~511~^1.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~512~^0.755^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~513~^1.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~514~^1.513^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~515~^2.482^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~516~^0.906^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~517~^0.744^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~518~^0.679^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10880~^~521~^0.112^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10880~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10880~^~606~^1.428^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10880~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~611~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~03/01/2006~ -~10880~^~612~^0.050^4^0.007^~1~^~A~^^^1^0.029^0.060^3^0.027^0.072^~2, 3~^~03/01/2006~ -~10880~^~613~^0.902^4^0.142^~1~^~A~^^^1^0.510^1.170^3^0.449^1.355^~2, 3~^~03/01/2006~ -~10880~^~614~^0.453^4^0.070^~1~^~A~^^^1^0.263^0.590^3^0.230^0.676^~2, 3~^~03/01/2006~ -~10880~^~615~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.002^0.012^~1, 2, 3~^~03/01/2006~ -~10880~^~617~^1.794^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10880~^~618~^0.488^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10880~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10880~^~620~^0.050^4^0.001^~1~^~A~^^^1^0.047^0.054^3^0.046^0.055^~2, 3~^~03/01/2006~ -~10880~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~624~^0.007^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.001^0.014^~1, 2, 3~^~03/01/2006~ -~10880~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~626~^0.112^4^0.019^~1~^~A~^^^1^0.061^0.150^3^0.053^0.172^~2, 3~^~03/01/2006~ -~10880~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~628~^0.029^4^0.005^~1~^~A~^^^1^0.016^0.040^3^0.013^0.046^~2, 3~^~03/01/2006~ -~10880~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10880~^~645~^1.938^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10880~^~646~^0.577^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10880~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~653~^0.009^4^0.002^~1~^~A~^^^1^0.005^0.013^3^0.004^0.015^~2, 3~^~03/01/2006~ -~10880~^~663~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.024^3^0.016^0.025^~2, 3~^~03/01/2006~ -~10880~^~669~^0.016^4^0.002^~1~^~A~^^^1^0.013^0.020^3^0.010^0.021^~2, 3~^~03/01/2006~ -~10880~^~672~^0.019^4^0.003^~1~^~A~^^^1^0.013^0.025^3^0.011^0.027^~2, 3~^~03/01/2006~ -~10880~^~674~^1.773^4^0.278^~1~^~A~^^^1^1.028^2.320^3^0.889^2.658^~2, 3~^~03/01/2006~ -~10880~^~675~^0.472^4^0.044^~1~^~A~^^^1^0.373^0.586^3^0.331^0.613^~2, 3~^~03/01/2006~ -~10880~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~687~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~03/01/2006~ -~10880~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~693~^0.020^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10880~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10880~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10880~^~851~^0.020^4^0.002^~1~^~A~^^^1^0.017^0.026^3^0.014^0.027^~2, 3~^~03/01/2006~ -~10881~^~312~^0.099^3^0.004^~1~^~A~^^^1^0.093^0.106^2^0.082^0.115^~2, 3~^~03/01/2006~ -~10881~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10881~^~404~^0.394^3^0.067^~1~^~A~^^^1^0.270^0.500^2^0.106^0.682^~2, 3~^~03/01/2006~ -~10881~^~405~^0.199^3^0.037^~1~^~A~^^^1^0.129^0.254^2^0.040^0.357^~2, 3~^~03/01/2006~ -~10881~^~406~^4.563^3^0.705^~1~^~A~^^^1^3.210^5.580^2^1.532^7.595^~2, 3~^~03/01/2006~ -~10881~^~410~^0.580^3^0.041^~1~^~A~^^^1^0.538^0.661^2^0.405^0.755^~2, 3~^~03/01/2006~ -~10881~^~415~^0.400^3^0.076^~1~^~A~^^^1^0.274^0.537^2^0.073^0.728^~2, 3~^~03/01/2006~ -~10881~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~502~^0.970^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~503~^0.979^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~504~^1.737^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~505~^1.832^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~506~^0.519^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~507~^0.244^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~508~^0.868^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~510~^1.097^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~511~^1.388^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~512~^0.945^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~513~^1.277^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~514~^1.892^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~515~^3.104^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~516~^1.133^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~517~^0.931^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~518~^0.849^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~521~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~605~^0.043^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~606~^1.471^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~612~^0.046^2^^~1~^~A~^^^1^0.043^0.048^1^^^^~03/01/2006~ -~10881~^~613~^0.917^2^^~1~^~A~^^^1^0.875^0.959^1^^^^~03/01/2006~ -~10881~^~614~^0.481^2^^~1~^~A~^^^1^0.427^0.536^1^^^^~03/01/2006~ -~10881~^~615~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~03/01/2006~ -~10881~^~617~^1.839^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~618~^0.596^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10881~^~620~^0.077^2^^~1~^~A~^^^1^0.072^0.083^1^^^^~03/01/2006~ -~10881~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~624~^0.011^2^^~1~^~A~^^^1^0.010^0.013^1^^^^~03/01/2006~ -~10881~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~626~^0.098^2^^~1~^~A~^^^1^0.098^0.099^1^^^^~03/01/2006~ -~10881~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~628~^0.030^2^^~1~^~A~^^^1^0.027^0.032^1^^^^~03/01/2006~ -~10881~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10881~^~645~^1.966^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~646~^0.713^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~653~^0.009^2^^~1~^~A~^^^1^0.007^0.011^1^^^^~03/01/2006~ -~10881~^~663~^0.027^2^^~1~^~A~^^^1^0.016^0.037^1^^^^~03/01/2006~ -~10881~^~669~^0.017^2^^~1~^~A~^^^1^0.012^0.022^1^^^^~03/01/2006~ -~10881~^~670~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10881~^~672~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~03/01/2006~ -~10881~^~674~^1.812^2^^~1~^~A~^^^1^1.743^1.881^1^^^^~03/01/2006~ -~10881~^~675~^0.568^2^^~1~^~A~^^^1^0.538^0.599^1^^^^~03/01/2006~ -~10881~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10881~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~10881~^~851~^0.018^2^^~1~^~A~^^^1^0.013^0.023^1^^^^~03/01/2006~ -~10882~^~312~^0.271^4^0.082^~1~^~A~^^^1^0.121^0.492^3^0.012^0.531^~2, 3~^~03/01/2006~ -~10882~^~315~^0.026^4^0.004^~1~^~A~^^^1^0.022^0.038^3^0.013^0.039^~1, 2, 3~^~03/01/2006~ -~10882~^~404~^0.514^4^0.090^~1~^~A~^^^1^0.303^0.705^3^0.229^0.799^~2, 3~^~03/01/2006~ -~10882~^~405~^0.218^4^0.018^~1~^~A~^^^1^0.195^0.272^3^0.160^0.276^~2, 3~^~03/01/2006~ -~10882~^~406~^7.395^4^0.369^~1~^~A~^^^1^6.690^8.260^3^6.220^8.570^~2, 3~^~03/01/2006~ -~10882~^~410~^0.841^4^0.052^~1~^~A~^^^1^0.744^0.969^3^0.675^1.006^~2, 3~^~03/01/2006~ -~10882~^~415~^0.506^4^0.020^~1~^~A~^^^1^0.461^0.554^3^0.442^0.569^~2, 3~^~03/01/2006~ -~10882~^~501~^0.197^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~502~^0.937^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~503~^0.946^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~504~^1.678^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~505~^1.770^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~506~^0.501^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~508~^0.838^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~509~^0.680^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~510~^1.060^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~511~^1.340^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~512~^0.912^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~513~^1.234^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~514~^1.827^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~515~^2.998^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~516~^1.094^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~517~^0.899^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~518~^0.820^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10882~^~521~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10882~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10882~^~606~^0.975^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10882~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~611~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~03/01/2006~ -~10882~^~612~^0.034^4^0.006^~1~^~A~^^^1^0.024^0.050^3^0.016^0.052^~2, 3~^~03/01/2006~ -~10882~^~613~^0.615^4^0.085^~1~^~A~^^^1^0.480^0.857^3^0.346^0.884^~2, 3~^~03/01/2006~ -~10882~^~614~^0.305^4^0.038^~1~^~A~^^^1^0.244^0.412^3^0.184^0.426^~2, 3~^~03/01/2006~ -~10882~^~615~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.007^~2, 3~^~03/01/2006~ -~10882~^~617~^1.230^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10882~^~618~^0.341^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10882~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10882~^~620~^0.057^4^0.004^~1~^~A~^^^1^0.051^0.067^3^0.045^0.069^~2, 3~^~03/01/2006~ -~10882~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~624~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.007^0.010^~2, 3~^~03/01/2006~ -~10882~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~626~^0.081^4^0.015^~1~^~A~^^^1^0.063^0.125^3^0.035^0.128^~2, 3~^~03/01/2006~ -~10882~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~628~^0.018^4^0.003^~1~^~A~^^^1^0.013^0.027^3^0.008^0.028^~2, 3~^~03/01/2006~ -~10882~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10882~^~645~^1.333^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10882~^~646~^0.424^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10882~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~653~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.003^0.008^~2, 3~^~03/01/2006~ -~10882~^~663~^0.013^4^0.002^~1~^~A~^^^1^0.008^0.018^3^0.006^0.020^~2, 3~^~03/01/2006~ -~10882~^~669~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.007^0.010^~2, 3~^~03/01/2006~ -~10882~^~672~^0.011^4^0.002^~1~^~A~^^^1^0.008^0.015^3^0.006^0.017^~2, 3~^~03/01/2006~ -~10882~^~674~^1.217^4^0.149^~1~^~A~^^^1^1.040^1.660^3^0.745^1.690^~2, 3~^~03/01/2006~ -~10882~^~675~^0.332^4^0.028^~1~^~A~^^^1^0.285^0.408^3^0.242^0.423^~2, 3~^~03/01/2006~ -~10882~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~687~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.008^3^-0.003^0.009^~1, 2, 3~^~03/01/2006~ -~10882~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10882~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10882~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10882~^~851~^0.014^4^0.004^~1~^~A~^^^1^0.008^0.025^3^0.002^0.027^~2, 3~^~03/01/2006~ -~10883~^~312~^0.272^3^0.134^~1~^~A~^^^1^0.096^0.535^2^-0.304^0.848^~2, 3~^~03/01/2006~ -~10883~^~315~^0.027^3^0.005^~1~^~A~^^^1^0.022^0.037^2^0.006^0.048^~1, 2, 3~^~03/01/2006~ -~10883~^~404~^0.620^3^0.061^~1~^~A~^^^1^0.504^0.713^2^0.356^0.884^~2, 3~^~03/01/2006~ -~10883~^~405~^0.216^3^0.010^~1~^~A~^^^1^0.199^0.233^2^0.174^0.258^~2, 3~^~03/01/2006~ -~10883~^~406~^6.830^3^0.540^~1~^~A~^^^1^5.760^7.490^2^4.507^9.153^~2, 3~^~03/01/2006~ -~10883~^~410~^0.892^3^0.023^~1~^~A~^^^1^0.848^0.925^2^0.793^0.990^~2, 3~^~03/01/2006~ -~10883~^~415~^0.462^3^0.016^~1~^~A~^^^1^0.431^0.487^2^0.391^0.532^~2, 3~^~03/01/2006~ -~10883~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~502~^0.920^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~503~^0.929^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~504~^1.648^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~505~^1.738^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~506~^0.492^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~507~^0.231^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~508~^0.823^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~509~^0.668^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~510~^1.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~511~^1.316^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~512~^0.896^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~513~^1.212^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~514~^1.795^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~515~^2.944^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~516~^1.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~517~^0.883^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~518~^0.805^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~521~^0.133^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10883~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10883~^~606~^1.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~03/01/2006~ -~10883~^~611~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~03/01/2006~ -~10883~^~612~^0.037^3^0.003^~1~^~A~^^^1^0.032^0.043^2^0.024^0.051^~2, 3~^~03/01/2006~ -~10883~^~613~^0.659^3^0.054^~1~^~A~^^^1^0.562^0.749^2^0.426^0.891^~2, 3~^~03/01/2006~ -~10883~^~614~^0.324^3^0.029^~1~^~A~^^^1^0.268^0.368^2^0.197^0.451^~2, 3~^~03/01/2006~ -~10883~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~03/01/2006~ -~10883~^~617~^1.311^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10883~^~618~^0.356^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10883~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10883~^~620~^0.054^3^0.002^~1~^~A~^^^1^0.052^0.057^2^0.046^0.061^~2, 3~^~03/01/2006~ -~10883~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~624~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~03/01/2006~ -~10883~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~626~^0.089^3^0.007^~1~^~A~^^^1^0.082^0.102^2^0.060^0.117^~2, 3~^~03/01/2006~ -~10883~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~628~^0.020^3^0.003^~1~^~A~^^^1^0.015^0.025^2^0.007^0.032^~2, 3~^~03/01/2006~ -~10883~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10883~^~645~^1.422^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~646~^0.437^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10883~^~652~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~653~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~03/01/2006~ -~10883~^~663~^0.015^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.004^0.025^~2, 3~^~03/01/2006~ -~10883~^~669~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.011^2^-0.008^0.020^~1, 2, 3~^~03/01/2006~ -~10883~^~672~^0.012^3^0.001^~1~^~A~^^^1^0.009^0.014^2^0.005^0.018^~2, 3~^~03/01/2006~ -~10883~^~674~^1.297^3^0.083^~1~^~A~^^^1^1.140^1.420^2^0.941^1.652^~2, 3~^~03/01/2006~ -~10883~^~675~^0.350^3^0.025^~1~^~A~^^^1^0.323^0.399^2^0.243^0.456^~2, 3~^~03/01/2006~ -~10883~^~685~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10883~^~687~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~03/01/2006~ -~10883~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10883~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10883~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10883~^~851~^0.016^3^0.004^~1~^~A~^^^1^0.009^0.022^2^0.000^0.032^~2, 3~^~03/01/2006~ -~10884~^~312~^0.142^4^0.012^~1~^~A~^^^1^0.115^0.171^3^0.105^0.180^~2, 3~^~03/01/2006~ -~10884~^~315~^0.025^4^0.003^~1~^~A~^^^1^0.022^0.033^3^0.016^0.033^~1, 2, 3~^~03/01/2006~ -~10884~^~404~^0.531^4^0.116^~1~^~A~^^^1^0.298^0.813^3^0.162^0.900^~2, 3~^~03/01/2006~ -~10884~^~405~^0.209^4^0.015^~1~^~A~^^^1^0.171^0.242^3^0.162^0.257^~2, 3~^~03/01/2006~ -~10884~^~406~^6.877^4^0.375^~1~^~A~^^^1^6.040^7.650^3^5.684^8.071^~2, 3~^~03/01/2006~ -~10884~^~410~^0.788^4^0.046^~1~^~A~^^^1^0.703^0.873^3^0.640^0.935^~2, 3~^~03/01/2006~ -~10884~^~415~^0.474^4^0.018^~1~^~A~^^^1^0.443^0.511^3^0.416^0.531^~2, 3~^~03/01/2006~ -~10884~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~502~^0.870^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~503~^0.877^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~504~^1.557^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~505~^1.642^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~506~^0.465^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~507~^0.218^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~508~^0.778^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~509~^0.631^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~510~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~511~^1.244^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~512~^0.847^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~513~^1.145^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~514~^1.695^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~515~^2.782^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~516~^1.015^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~517~^0.834^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~518~^0.761^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10884~^~521~^0.099^4^0.013^~1~^~A~^^^1^0.076^0.135^3^0.059^0.139^~2, 3~^~03/01/2006~ -~10884~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10884~^~606~^0.934^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10884~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~610~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~03/01/2006~ -~10884~^~611~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.006^~1, 2, 3~^~03/01/2006~ -~10884~^~612~^0.032^4^0.006^~1~^~A~^^^1^0.022^0.048^3^0.015^0.050^~2, 3~^~03/01/2006~ -~10884~^~613~^0.589^4^0.084^~1~^~A~^^^1^0.440^0.818^3^0.323^0.855^~2, 3~^~03/01/2006~ -~10884~^~614~^0.291^4^0.034^~1~^~A~^^^1^0.227^0.386^3^0.183^0.400^~2, 3~^~03/01/2006~ -~10884~^~615~^0.004^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.001^0.008^~1, 2, 3~^~03/01/2006~ -~10884~^~617~^1.177^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10884~^~618~^0.321^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10884~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~10884~^~620~^0.056^4^0.005^~1~^~A~^^^1^0.048^0.070^3^0.040^0.071^~2, 3~^~03/01/2006~ -~10884~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~624~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.007^0.010^~2, 3~^~03/01/2006~ -~10884~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~626~^0.077^4^0.014^~1~^~A~^^^1^0.058^0.117^3^0.033^0.121^~2, 3~^~03/01/2006~ -~10884~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~628~^0.017^4^0.003^~1~^~A~^^^1^0.011^0.027^3^0.007^0.028^~2, 3~^~03/01/2006~ -~10884~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10884~^~645~^1.274^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10884~^~646~^0.400^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~10884~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~653~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.003^0.009^~2, 3~^~03/01/2006~ -~10884~^~663~^0.013^4^0.002^~1~^~A~^^^1^0.008^0.017^3^0.007^0.019^~2, 3~^~03/01/2006~ -~10884~^~669~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~03/01/2006~ -~10884~^~672~^0.010^4^0.002^~1~^~A~^^^1^0.008^0.015^3^0.006^0.015^~2, 3~^~03/01/2006~ -~10884~^~674~^1.164^4^0.154^~1~^~A~^^^1^0.917^1.580^3^0.675^1.652^~2, 3~^~03/01/2006~ -~10884~^~675~^0.313^4^0.024^~1~^~A~^^^1^0.275^0.380^3^0.236^0.391^~2, 3~^~03/01/2006~ -~10884~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~687~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.008^~1, 2, 3~^~03/01/2006~ -~10884~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10884~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10884~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10884~^~851~^0.013^4^0.003^~1~^~A~^^^1^0.009^0.022^3^0.003^0.023^~2, 3~^~03/01/2006~ -~10885~^~312~^0.097^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10885~^~404~^0.322^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~405~^0.218^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~406~^3.590^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~410~^0.460^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~415~^0.246^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~501~^0.175^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~502~^0.834^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~503~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~504~^1.494^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~505~^1.576^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~506~^0.446^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~507~^0.209^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~508~^0.746^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~509~^0.605^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~510~^0.944^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~511~^1.193^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~512~^0.812^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~513~^1.098^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~514~^1.627^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~515~^2.669^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~516~^0.974^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~517~^0.800^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~518~^0.730^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10885~^~521~^0.121^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10885~^~605~^0.012^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~606~^0.592^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10885~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10885~^~609~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~610~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~611~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~612~^0.019^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~613~^0.369^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~614~^0.193^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~615~^0.003^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~617~^0.794^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~618~^0.227^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~619~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~620~^0.028^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~621~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~624~^0.004^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~625~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~626~^0.042^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~627~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~628~^0.012^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~629~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~630~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~631~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~645~^0.806^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~646~^0.270^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~652~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~653~^0.004^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~663~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~669~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~670~^0.008^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~672~^0.009^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~674~^0.788^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~675~^0.213^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~685~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~687~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~689~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~693~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~695~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~697~^0.000^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10885~^~851~^0.006^0^^~4~^~BFFN~^~10867~^^^^^^^^^~05/01/2006~ -~10886~^~312~^0.198^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10886~^~404~^0.374^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~405~^0.214^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~406~^4.710^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~410~^0.426^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~415~^0.295^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~502~^0.778^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~503~^0.785^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~504~^1.392^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~505~^1.468^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~506~^0.416^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~507~^0.195^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~508~^0.695^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~509~^0.564^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~510~^0.879^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~511~^1.112^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~512~^0.757^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~513~^1.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~514~^1.516^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~515~^2.487^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~516~^0.908^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~518~^0.680^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~521~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10886~^~605~^0.019^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~606~^0.768^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10886~^~609~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~610~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~611~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~612~^0.027^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~613~^0.486^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~614~^0.242^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~615~^0.003^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~617~^0.985^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~618~^0.305^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~619~^0.011^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~620~^0.038^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~621~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~624~^0.006^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~625~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~626~^0.060^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~627~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~628~^0.016^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~629~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~630~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~631~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~645~^1.061^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~646~^0.367^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~652~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~653~^0.003^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~663~^0.010^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~669~^0.009^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~672~^0.012^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~674~^0.975^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~675~^0.297^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~685~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~687~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~689~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~693~^0.010^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~695~^0.009^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~697~^0.000^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10886~^~851~^0.011^0^^~4~^~BFFN~^~10868~^^^^^^^^^~03/01/2006~ -~10887~^~312~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10887~^~404~^0.282^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~405~^0.222^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~406~^4.090^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~410~^0.462^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~415~^0.247^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~501~^0.168^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~502~^0.802^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~503~^0.809^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~504~^1.436^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~505~^1.514^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~506~^0.429^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~508~^0.717^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~509~^0.582^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~510~^0.907^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~511~^1.147^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~512~^0.781^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~513~^1.056^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~514~^1.564^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~515~^2.565^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~516~^0.936^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~517~^0.769^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~518~^0.702^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10887~^~521~^0.116^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~10887~^~605~^0.028^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~606~^1.105^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10887~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~10887~^~609~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~610~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~611~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~612~^0.040^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~613~^0.691^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~614~^0.355^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~615~^0.004^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~617~^1.431^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~618~^0.387^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~619~^0.016^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~620~^0.037^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~621~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~624~^0.007^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~625~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~626~^0.074^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~627~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~628~^0.026^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~629~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~630~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~631~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~645~^1.530^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~646~^0.456^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~652~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~653~^0.007^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~663~^0.017^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~669~^0.011^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~670~^0.012^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~672~^0.016^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~674~^1.414^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~675~^0.363^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~685~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~687~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~689~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~693~^0.017^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~695~^0.011^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~697~^0.000^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10887~^~851~^0.016^0^^~4~^~BFFN~^~10877~^^^^^^^^^~05/01/2006~ -~10888~^~312~^0.137^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10888~^~404~^0.423^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~405~^0.178^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~406~^4.380^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~410~^0.387^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~415~^0.362^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~501~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~502~^0.648^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~503~^0.653^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~504~^1.160^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~505~^1.223^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~506~^0.346^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~507~^0.163^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~508~^0.579^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~509~^0.470^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~510~^0.732^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~511~^0.926^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~512~^0.630^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~513~^0.852^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~514~^1.263^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~515~^2.072^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~516~^0.756^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~517~^0.621^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~518~^0.567^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~521~^0.094^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10888~^~605~^0.030^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~606~^1.266^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10888~^~609~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~610~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~611~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~612~^0.042^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~613~^0.800^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~614~^0.401^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~615~^0.005^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~617~^1.612^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~618~^0.445^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~619~^0.015^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~620~^0.061^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~621~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~624~^0.010^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~625~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~626~^0.093^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~627~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~628~^0.025^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~629~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~630~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~631~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~645~^1.730^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~646~^0.538^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~652~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~653~^0.008^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~663~^0.016^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~669~^0.014^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~672~^0.018^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~674~^1.596^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~675~^0.431^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~685~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~687~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~689~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~693~^0.016^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~695~^0.014^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~697~^0.000^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10888~^~851~^0.015^0^^~4~^~BFFN~^~10869~^^^^^^^^^~03/01/2006~ -~10889~^~312~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10889~^~404~^0.696^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~405~^0.225^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~406~^3.580^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~410~^0.632^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~415~^0.267^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~501~^0.165^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~502~^0.784^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~503~^0.791^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~504~^1.405^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~505~^1.481^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~506~^0.419^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~507~^0.197^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~508~^0.701^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~509~^0.569^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~510~^0.887^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~511~^1.122^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~512~^0.764^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~513~^1.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~514~^1.529^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~515~^2.509^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~516~^0.916^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~517~^0.752^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~518~^0.686^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~521~^0.114^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10889~^~605~^0.041^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~606~^1.384^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10889~^~609~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~610~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~611~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~612~^0.043^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~613~^0.862^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~614~^0.453^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~615~^0.007^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~617~^1.729^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~618~^0.561^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~619~^0.017^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~620~^0.073^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~621~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~624~^0.011^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~625~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~626~^0.093^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~627~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~628~^0.028^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~629~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~630~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~631~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~645~^1.849^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~646~^0.671^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~652~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~653~^0.008^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~663~^0.025^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~669~^0.016^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~670~^0.010^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~672~^0.020^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~674~^1.704^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~675~^0.535^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~685~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~687~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~689~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~693~^0.025^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~695~^0.016^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~697~^0.000^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10889~^~851~^0.017^0^^~4~^~BFFN~^~10881~^^^^^^^^^~03/01/2006~ -~10890~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10890~^~404~^0.265^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~405~^0.225^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~406~^7.230^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~410~^0.377^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~415~^0.336^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10890~^~501~^0.213^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~502~^1.016^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~503~^1.025^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~504~^1.819^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~505~^1.918^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~506~^0.543^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~507~^0.255^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~508~^0.908^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~509~^0.737^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~510~^1.149^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~511~^1.453^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~512~^0.989^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~513~^1.337^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~514~^1.981^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~515~^3.250^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~516~^1.186^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~517~^0.975^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~518~^0.889^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~521~^0.147^0^^~1~^~A~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~605~^0.029^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~606~^1.160^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10890~^~609~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~610~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~611~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~612~^0.043^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~613~^0.748^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~614~^0.342^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~615~^0.004^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~617~^1.510^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~618~^0.481^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~619~^0.017^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~620~^0.068^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~621~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~624~^0.011^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~625~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~626~^0.101^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~627~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~628~^0.021^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~629~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~630~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~631~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~645~^1.632^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~646~^0.582^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~652~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~653~^0.011^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~663~^0.017^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~669~^0.012^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~670~^0.015^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~672~^0.015^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~674~^1.492^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~675~^0.454^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~685~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~687~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~689~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~693~^0.017^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~695~^0.012^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~697~^0.000^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10890~^~851~^0.017^0^^~4~^~BFFN~^~10873~^^^^^^^^^~03/01/2006~ -~10891~^~312~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10891~^~404~^0.235^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~405~^0.246^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~406~^5.280^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~410~^0.516^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~415~^0.393^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10891~^~501~^0.236^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~502~^1.123^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~503~^1.133^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~504~^2.011^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~505~^2.121^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~506~^0.601^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~507~^0.282^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~508~^1.004^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~509~^0.815^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~510~^1.270^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~511~^1.606^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~512~^1.094^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~513~^1.479^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~514~^2.190^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~515~^3.593^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~516~^1.311^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~517~^1.078^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~518~^0.983^0^^~1~^~A~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~521~^0.163^0^^~1~^~A~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~605~^0.024^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~606~^1.048^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10891~^~609~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~610~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~611~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~612~^0.034^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~613~^0.677^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~614~^0.318^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~615~^0.005^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~617~^1.489^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~618~^0.335^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~619~^0.010^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~620~^0.044^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~621~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~624~^0.008^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~625~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~626~^0.084^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~627~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~628~^0.022^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~629~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~630~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~631~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~03/01/2006~ -~10891~^~645~^1.595^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~646~^0.402^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~652~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~653~^0.006^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~663~^0.015^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~669~^0.009^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~670~^0.006^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~672~^0.012^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~674~^1.473^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~675~^0.320^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~685~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~687~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~689~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~693~^0.015^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~695~^0.009^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~697~^0.000^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10891~^~851~^0.010^0^^~4~^~BFFN~^~10874~^^^^^^^^^~05/01/2006~ -~10892~^~312~^0.097^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10892~^~404~^0.240^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~405~^0.251^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~406~^6.590^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~410~^0.413^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~415~^0.352^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~502~^1.089^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~503~^1.099^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~504~^1.950^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~505~^2.057^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~506~^0.582^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~508~^0.974^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~509~^0.790^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~510~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~511~^1.558^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~512~^1.060^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~513~^1.434^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~514~^2.123^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~515~^3.484^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~516~^1.271^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~517~^1.045^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~518~^0.953^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~521~^0.158^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10892~^~605~^0.012^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~606~^0.726^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10892~^~609~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~610~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~611~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~612~^0.026^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~613~^0.462^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~614~^0.219^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~615~^0.003^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~617~^0.808^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~618~^0.300^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~619~^0.008^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~620~^0.060^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~621~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~624~^0.010^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~625~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~626~^0.063^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~627~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~628~^0.014^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~629~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~630~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~631~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~645~^0.884^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~646~^0.378^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~652~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~653~^0.008^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~663~^0.008^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~669~^0.005^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~672~^0.010^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~674~^0.800^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~675~^0.295^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~685~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~687~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~689~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~693~^0.008^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~695~^0.005^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~697~^0.000^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10892~^~851~^0.008^0^^~4~^~BFFN~^~10875~^^^^^^^^^~03/01/2006~ -~10893~^~312~^0.171^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~404~^0.399^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~405~^0.196^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~406~^5.733^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~415~^0.365^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~501~^0.181^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~502~^0.861^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~503~^0.869^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~504~^1.542^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~505~^1.626^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~506~^0.460^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~507~^0.216^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~508~^0.770^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~509~^0.625^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~510~^0.974^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~511~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~512~^0.838^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~513~^1.134^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~514~^1.679^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~515~^2.755^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~516~^1.005^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~517~^0.826^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~518~^0.754^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10893~^~521~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10893~^~605~^0.022^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~606~^1.009^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10893~^~609~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~610~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~611~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~612~^0.031^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~613~^0.623^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~614~^0.328^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~615~^0.004^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~617~^1.278^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~618~^0.428^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~619~^0.012^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~620~^0.133^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~621~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~624~^0.016^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~625~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~626~^0.088^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~627~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~628~^0.018^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~629~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~630~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~631~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~03/01/2006~ -~10893~^~645~^1.384^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~646~^0.585^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~652~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~653~^0.008^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~663~^0.012^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~669~^0.010^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~672~^0.012^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~674~^1.266^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~675~^0.418^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~685~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~687~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~689~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~693~^0.012^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~695~^0.010^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~697~^0.000^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10893~^~851~^0.012^0^^~4~^~BFFN~^~10876~^^^^^^^^^~05/01/2006~ -~10894~^~312~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~404~^0.278^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~405~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~406~^3.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~410~^0.413^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~415~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~501~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~502~^0.341^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~503~^0.354^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~504~^0.631^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~505~^0.625^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~506~^0.176^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~507~^0.101^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~508~^0.324^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~509~^0.237^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~510~^0.417^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~511~^0.532^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~512~^0.383^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~513~^0.542^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~514~^0.746^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~515~^1.165^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~516~^0.672^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~517~^0.431^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~518~^0.327^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~521~^0.057^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10894~^~605~^0.371^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~606~^17.048^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~610~^0.047^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~611~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~612~^0.629^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~613~^10.939^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~614~^5.108^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~615~^0.088^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~617~^22.115^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10894~^~618~^5.819^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10894~^~619~^0.269^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10894~^~620~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~624~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~626~^1.281^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~628~^0.402^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10894~^~645~^23.798^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~646~^6.470^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~653~^0.138^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~663~^0.234^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~669~^0.137^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~670~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~672~^0.259^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~674~^21.881^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~675~^5.531^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10894~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~693~^0.234^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~695~^0.137^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10894~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10894~^~851~^0.269^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~312~^0.097^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~404~^0.233^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~405~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~406~^2.570^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~410~^0.345^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~415~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~501~^0.054^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~502~^0.292^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~503~^0.303^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~504~^0.540^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~505~^0.535^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~506~^0.151^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~507~^0.086^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~508~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~509~^0.203^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~510~^0.357^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~511~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~512~^0.328^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~513~^0.464^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~514~^0.638^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~515~^0.997^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~516~^0.575^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~517~^0.369^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~518~^0.280^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~521~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~605~^0.412^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~606~^17.433^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~612~^0.637^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~613~^11.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~614~^5.408^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~615~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~617~^22.354^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~618~^6.218^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~619~^0.290^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10895~^~620~^0.121^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~624~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~626~^1.167^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~628~^0.381^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10895~^~645~^23.902^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~646~^6.901^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~653~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~663~^0.249^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~669~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~672~^0.272^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~674~^22.105^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~675~^6.055^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10895~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~693~^0.249^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~695~^0.163^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10895~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10895~^~851~^0.290^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~312~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~315~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~405~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~406~^1.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~410~^0.344^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~415~^0.064^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~501~^0.038^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~502~^0.516^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~503~^0.325^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~504~^0.841^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~505~^0.822^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~506~^0.211^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~507~^0.168^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~508~^0.554^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~509~^0.305^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~510~^0.478^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~511~^1.433^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~512~^0.211^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~513~^1.566^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~514~^1.375^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~515~^2.101^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~516~^3.343^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~517~^2.005^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~518~^0.765^0^^~4~^~BFPN~^~10132~^^^^^^^^^~03/01/2006~ -~10898~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~606~^3.231^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~612~^0.121^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~613~^2.128^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~614~^0.931^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~615~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~617~^4.764^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10898~^~618~^1.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10898~^~619~^0.042^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~10898~^~620~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~624~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~626~^0.298^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~628~^0.072^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10898~^~645~^5.134^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~646~^1.198^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~653~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~663~^0.064^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~669~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~672~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~674~^4.700^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~675~^0.986^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10898~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~693~^0.064^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~10898~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~10898~^~851~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~312~^0.426^3^0.237^~1~^~A~^^^1^0.114^0.891^2^-0.594^1.446^~2, 3~^~03/01/2006~ -~10899~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~404~^0.575^3^0.026^~1~^~A~^^^1^0.546^0.627^2^0.463^0.687^~2, 3~^~03/01/2006~ -~10899~^~405~^0.317^3^0.039^~1~^~A~^^^1^0.275^0.394^2^0.150^0.483^~2, 3~^~03/01/2006~ -~10899~^~406~^7.767^3^1.014^~1~^~A~^^^1^5.790^9.150^2^3.402^12.131^~2, 3~^~03/01/2006~ -~10899~^~410~^0.758^3^0.060^~1~^~A~^^^1^0.659^0.866^2^0.500^1.016^~2, 3~^~03/01/2006~ -~10899~^~415~^0.540^3^0.048^~1~^~A~^^^1^0.450^0.614^2^0.333^0.747^~2, 3~^~03/01/2006~ -~10899~^~501~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~502~^1.216^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~503~^1.227^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~504~^2.177^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~505~^2.296^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~506~^0.650^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~507~^0.305^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~508~^1.087^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~509~^0.882^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~510~^1.375^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~511~^1.739^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~512~^1.184^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~513~^1.601^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~514~^2.371^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~515~^3.890^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~516~^1.419^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~517~^1.167^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~518~^1.064^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~10899~^~521~^0.176^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~10899~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~606~^1.253^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~612~^0.045^3^0.001^~1~^~A~^^^1^0.043^0.047^2^0.040^0.050^~2, 3~^~03/01/2006~ -~10899~^~613~^0.778^3^0.039^~1~^~A~^^^1^0.708^0.842^2^0.611^0.944^~2, 3~^~03/01/2006~ -~10899~^~614~^0.415^3^0.037^~1~^~A~^^^1^0.343^0.463^2^0.257^0.573^~2, 3~^~03/01/2006~ -~10899~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~03/01/2006~ -~10899~^~617~^1.492^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10899~^~618~^0.512^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10899~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10899~^~620~^0.084^3^0.007^~1~^~A~^^^1^0.072^0.097^2^0.053^0.115^~2, 3~^~03/01/2006~ -~10899~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~626~^0.099^3^0.012^~1~^~A~^^^1^0.078^0.118^2^0.049^0.149^~2, 3~^~03/01/2006~ -~10899~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~628~^0.021^3^0.003^~1~^~A~^^^1^0.018^0.028^2^0.007^0.036^~2, 3~^~03/01/2006~ -~10899~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~10899~^~645~^1.613^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~646~^0.644^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~653~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~03/01/2006~ -~10899~^~663~^0.017^3^0.005^~1~^~A~^^^1^0.011^0.026^2^-0.003^0.037^~2, 3~^~03/01/2006~ -~10899~^~669~^0.013^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.005^0.021^~2, 3~^~03/01/2006~ -~10899~^~672~^0.016^3^0.004^~1~^~A~^^^1^0.011^0.024^2^-0.002^0.033^~2, 3~^~03/01/2006~ -~10899~^~674~^1.475^3^0.159^~1~^~A~^^^1^1.284^1.790^2^0.793^2.157^~2, 3~^~03/01/2006~ -~10899~^~675~^0.499^3^0.106^~1~^~A~^^^1^0.375^0.709^2^0.045^0.953^~2, 3~^~03/01/2006~ -~10899~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~689~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~03/01/2006~ -~10899~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10899~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~10899~^~851~^0.029^3^0.018^~1~^~A~^^^1^0.010^0.065^2^-0.047^0.106^~2, 3~^~03/01/2006~ -~10900~^~312~^0.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~315~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~404~^0.530^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~405~^0.209^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~406~^6.859^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~410~^0.786^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~415~^0.473^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~501~^0.182^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~502~^0.867^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~503~^0.875^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~504~^1.553^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~505~^1.637^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~506~^0.464^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~507~^0.218^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~508~^0.775^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~509~^0.629^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~510~^0.981^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~511~^1.240^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~513~^1.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~514~^1.691^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~515~^2.774^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~516~^1.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~517~^0.832^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~518~^0.759^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~521~^0.099^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~605~^0.022^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~10900~^~606~^1.005^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10900~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~612~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~613~^0.635^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~614~^0.314^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~617~^1.268^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~618~^0.346^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~619~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~620~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~626~^0.081^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~628~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~645~^1.372^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~646~^0.428^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10900~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~653~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~672~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10900~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~312~^0.168^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~315~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~404~^0.391^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~405~^0.187^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~406~^5.575^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~410~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~415~^0.356^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~502~^0.833^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~503~^0.841^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~504~^1.492^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~505~^1.572^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~506~^0.445^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~507~^0.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~508~^0.745^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~509~^0.603^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~510~^0.943^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~511~^1.193^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~512~^0.813^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~513~^1.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~514~^1.627^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~515~^2.667^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~516~^0.984^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~517~^0.803^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~518~^0.730^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~521~^0.126^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10901~^~605~^0.042^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~606~^1.833^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~612~^0.061^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~613~^1.148^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~614~^0.582^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~615~^0.008^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~617~^2.335^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~618~^0.718^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~619~^0.026^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~620~^0.132^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~624~^0.018^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~626~^0.142^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~628~^0.036^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~645~^2.513^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~646~^0.902^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~653~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~663~^0.024^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~669~^0.018^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~672~^0.025^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10901~^~674~^2.310^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~675~^0.700^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~685~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~693~^0.024^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~695~^0.018^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10901~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10901~^~851~^0.026^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10902~^~312~^0.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~404~^0.239^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~405~^0.230^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~406~^6.227^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~410~^0.407^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~415~^0.337^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~501~^0.213^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~502~^1.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~503~^1.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~504~^1.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~505~^1.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~506~^0.543^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~507~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~508~^0.911^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~509~^0.737^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~510~^1.153^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~511~^1.458^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~512~^0.994^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~513~^1.346^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~514~^1.989^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~515~^3.259^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~516~^1.208^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~517~^0.984^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~518~^0.892^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~521~^0.158^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~ -~10902~^~605~^0.049^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~606~^2.236^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~612~^0.081^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~613~^1.424^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~614~^0.688^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~615~^0.010^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~617~^2.755^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~618~^0.835^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~619~^0.033^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~620~^0.066^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~624~^0.013^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~626~^0.163^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~628~^0.047^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~645~^2.965^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~646~^0.967^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~653~^0.021^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~672~^0.033^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10902~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~ -~10903~^~312~^0.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~404~^0.235^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~405~^0.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~406~^4.856^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~410~^0.489^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~415~^0.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~501~^0.207^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~502~^0.993^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~503~^1.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~504~^1.781^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~505~^1.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~506~^0.530^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~507~^0.251^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~508~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~509~^0.719^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~510~^1.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~511~^1.426^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~512~^0.974^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~513~^1.320^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~514~^1.947^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~515~^3.187^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~516~^1.196^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~517~^0.967^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~518~^0.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~521~^0.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10903~^~605~^0.085^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~606~^3.614^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~612~^0.129^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~613~^2.309^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~614~^1.115^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~615~^0.017^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~617~^4.756^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~618~^1.256^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~619~^0.054^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~620~^0.056^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~624~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~626~^0.254^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~628~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~645~^5.088^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~646~^1.419^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~653~^0.029^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~672~^0.053^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10903~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10904~^~312~^0.107^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~404~^0.259^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~405~^0.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~406~^6.310^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~410~^0.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~415~^0.306^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~501~^0.182^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~502~^0.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~503~^0.882^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~504~^1.566^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~505~^1.645^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~506~^0.466^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~507~^0.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~508~^0.784^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~509~^0.631^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~510~^0.992^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~511~^1.256^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~512~^0.858^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~513~^1.165^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~514~^1.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~515~^2.805^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~516~^1.065^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~517~^0.855^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~518~^0.769^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~521~^0.149^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10904~^~605~^0.105^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~606~^4.373^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~612~^0.160^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~613~^2.792^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~614~^1.342^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~615~^0.021^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~617~^5.626^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~618~^1.614^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~619~^0.071^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~620~^0.079^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~624~^0.019^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~626~^0.312^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~628~^0.092^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~645~^6.030^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~646~^1.830^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~653~^0.039^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~672~^0.066^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10904~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~312~^0.107^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~315~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~404~^0.284^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~405~^0.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~406~^3.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~410~^0.660^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~415~^0.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~501~^0.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~502~^0.629^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~503~^0.634^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~504~^1.126^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~505~^1.187^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~506~^0.336^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~507~^0.158^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~508~^0.562^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~509~^0.456^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~510~^0.711^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~511~^0.899^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~512~^0.612^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~513~^0.828^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~514~^1.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~515~^2.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~516~^0.734^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~517~^0.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~518~^0.550^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~521~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10905~^~606~^1.489^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~612~^0.056^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~613~^0.953^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~614~^0.459^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~617~^1.942^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~618~^0.567^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~619~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~620~^0.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~626~^0.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~628~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10905~^~645~^2.098^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~646~^0.660^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10905~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~653~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~663~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~672~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10905~^~674~^1.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~675~^0.554^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10905~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10905~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10905~^~851~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10906~^~312~^0.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~404~^0.402^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~405~^0.160^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~406~^4.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~410~^0.382^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~415~^0.342^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~501~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~502~^0.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~503~^0.614^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~504~^1.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~505~^1.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~506~^0.324^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~507~^0.154^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~508~^0.545^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~509~^0.440^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~510~^0.690^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~511~^0.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~512~^0.597^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~513~^0.809^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~514~^1.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~515~^1.951^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~516~^0.736^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~517~^0.593^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~518~^0.535^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~521~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10906~^~605~^0.072^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~606~^3.076^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~612~^0.108^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~613~^1.953^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~614~^0.962^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~615~^0.014^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~617~^3.934^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~618~^1.091^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~619~^0.045^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~620~^0.068^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~624~^0.014^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~626~^0.213^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~628~^0.065^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~645~^4.212^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~646~^1.250^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~653~^0.024^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~672~^0.046^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10906~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~312~^0.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~404~^0.546^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~405~^0.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~406~^3.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~410~^0.539^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~415~^0.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~501~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~502~^0.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~503~^0.633^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~504~^1.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~505~^1.175^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~506~^0.332^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~507~^0.161^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~508~^0.564^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~509~^0.450^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~510~^0.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~511~^0.906^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~512~^0.622^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~513~^0.848^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~514~^1.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~515~^2.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~516~^0.805^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~517~^0.628^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~518~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~521~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10907~^~605~^0.161^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~606~^6.583^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~612~^0.235^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~613~^4.179^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~614~^2.058^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~615~^0.032^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~617~^8.410^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~618~^2.393^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~619~^0.105^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~620~^0.088^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~624~^0.024^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~626~^0.441^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~628~^0.142^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~645~^8.993^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~646~^2.689^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~653~^0.055^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~672~^0.102^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10907~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10908~^~312~^0.113^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~404~^0.273^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~405~^0.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~406~^3.822^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~410~^0.441^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~415~^0.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~501~^0.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~502~^0.712^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~503~^0.720^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~504~^1.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~505~^1.342^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~506~^0.380^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~507~^0.181^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~508~^0.639^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~509~^0.515^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~510~^0.810^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~511~^1.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~512~^0.701^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~513~^0.951^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~514~^1.400^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~515~^2.289^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~516~^0.872^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~517~^0.699^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~518~^0.627^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~521~^0.123^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10908~^~605~^0.096^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~606~^3.984^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~612~^0.146^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~613~^2.527^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~614~^1.246^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~615~^0.019^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~617~^5.120^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~618~^1.415^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~619~^0.064^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~620~^0.052^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~624~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~626~^0.266^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~628~^0.088^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~645~^5.475^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~646~^1.592^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~653~^0.032^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~672~^0.061^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10908~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10909~^~312~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~404~^0.397^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~405~^0.183^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~406~^5.389^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~410~^0.723^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~415~^0.407^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~501~^0.160^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~502~^0.762^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~503~^0.769^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~504~^1.365^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~505~^1.438^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~506~^0.407^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~507~^0.192^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~508~^0.682^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~509~^0.552^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~510~^0.862^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~511~^1.091^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~512~^0.743^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~513~^1.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~514~^1.487^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~515~^2.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~516~^0.896^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~517~^0.733^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~518~^0.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~521~^0.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10909~^~606~^1.889^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10909~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~612~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~613~^1.196^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~614~^0.596^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~617~^2.387^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~618~^0.653^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~619~^0.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~620~^0.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~626~^0.143^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~628~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10909~^~645~^2.571^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10909~^~646~^0.759^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10909~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~653~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~663~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~669~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~672~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~674~^2.360^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~675~^0.633^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~687~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10909~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10909~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10909~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10909~^~851~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10910~^~312~^0.181^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~404~^0.350^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~405~^0.182^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~406~^4.352^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~410~^0.412^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~415~^0.277^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~501~^0.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~502~^0.696^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~503~^0.704^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~504~^1.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~505~^1.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~506~^0.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~507~^0.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~508~^0.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~509~^0.504^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~510~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~511~^1.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~512~^0.685^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~513~^0.930^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~514~^1.369^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~515~^2.238^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~516~^0.852^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~517~^0.683^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~518~^0.613^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~521~^0.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10910~^~605~^0.084^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~606~^3.554^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~612~^0.129^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~613~^2.261^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~614~^1.106^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~615~^0.016^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~617~^4.558^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~618~^1.294^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~619~^0.058^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~620~^0.052^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~624~^0.014^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~626~^0.245^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~628~^0.077^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~645~^4.880^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~646~^1.459^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~653~^0.028^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~672~^0.055^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10910~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10911~^~312~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~404~^0.306^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~405~^0.183^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~406~^3.407^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~410~^0.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~415~^0.235^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~501~^0.153^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~502~^0.737^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~503~^0.745^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~504~^1.323^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~505~^1.389^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~506~^0.393^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~507~^0.187^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~508~^0.662^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~509~^0.533^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~510~^0.839^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~511~^1.061^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~512~^0.726^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~513~^0.985^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~514~^1.450^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~515~^2.370^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~516~^0.903^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~517~^0.723^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~518~^0.649^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~521~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10911~^~605~^0.084^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~606~^3.607^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~612~^0.130^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~613~^2.290^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~614~^1.126^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~615~^0.018^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~617~^4.653^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~618~^1.299^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~619~^0.057^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~620~^0.044^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~624~^0.013^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~626~^0.243^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~628~^0.078^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~645~^4.975^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~646~^1.457^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~653~^0.030^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~672~^0.056^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10911~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~312~^0.092^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~404~^0.235^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~405~^0.178^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~406~^4.819^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~410~^0.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~415~^0.251^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~501~^0.128^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~502~^0.618^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~503~^0.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~504~^1.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~505~^1.164^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~506~^0.329^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~507~^0.157^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~508~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~509~^0.447^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~510~^0.704^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~511~^0.891^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~512~^0.609^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~513~^0.828^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~514~^1.217^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~515~^1.988^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~516~^0.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~517~^0.609^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~518~^0.545^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~521~^0.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10912~^~605~^0.100^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~606~^4.176^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~612~^0.152^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~613~^2.647^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~614~^1.307^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~615~^0.021^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~617~^5.264^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~618~^1.393^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~619~^0.061^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~620~^0.054^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~624~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~626~^0.288^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~628~^0.086^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~645~^5.639^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~646~^1.566^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~653~^0.035^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~672~^0.057^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10912~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~312~^0.123^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~404~^0.348^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~405~^0.180^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~406~^4.290^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~410~^0.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~415~^0.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~501~^0.187^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~502~^0.894^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~503~^0.903^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~504~^1.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~505~^1.686^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~506~^0.477^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~507~^0.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~508~^0.801^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~509~^0.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~510~^1.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~511~^1.283^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~512~^0.876^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~513~^1.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~514~^1.751^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~515~^2.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~516~^1.072^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~517~^0.868^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~518~^0.785^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~521~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~605~^0.067^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~606~^2.897^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10913~^~612~^0.105^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~613~^1.840^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~614~^0.893^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~617~^3.640^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~618~^0.898^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~619~^0.037^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~620~^0.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~624~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~626~^0.218^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~628~^0.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~645~^3.918^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~646~^1.020^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10913~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~653~^0.022^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~672~^0.036^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10913~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~312~^0.161^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~404~^0.261^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~405~^0.173^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~406~^4.695^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~410~^0.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~415~^0.320^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~501~^0.171^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~502~^0.823^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~503~^0.833^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~504~^1.478^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~505~^1.551^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~506~^0.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~507~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~508~^0.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~509~^0.595^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~510~^0.937^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~511~^1.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~512~^0.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~513~^1.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~514~^1.621^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~515~^2.648^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~516~^1.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~517~^0.810^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~518~^0.726^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~521~^0.121^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~605~^0.093^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~606~^4.371^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10914~^~612~^0.157^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~613~^2.784^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~614~^1.339^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~617~^5.720^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~618~^1.539^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~619~^0.063^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~624~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~626~^0.323^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~628~^0.100^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~645~^6.143^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~646~^1.746^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10914~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~653~^0.033^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~672~^0.067^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10914~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10915~^~312~^0.137^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~404~^0.374^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~405~^0.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~406~^5.215^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~410~^0.697^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~415~^0.437^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~501~^0.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~502~^0.926^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~503~^0.935^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~504~^1.659^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~505~^1.746^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~506~^0.494^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~507~^0.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~508~^0.829^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~509~^0.670^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~510~^1.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~511~^1.328^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~512~^0.906^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~513~^1.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~514~^1.812^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~515~^2.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~516~^1.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~517~^0.898^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~518~^0.813^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~521~^0.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~605~^0.067^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~606~^2.901^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~612~^0.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~613~^1.851^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~614~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~617~^3.745^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~618~^1.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~619~^0.044^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~624~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~626~^0.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~628~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~645~^4.032^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~646~^1.229^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10915~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~653~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~672~^0.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10915~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~312~^0.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~404~^0.406^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~405~^0.188^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~406~^5.838^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~410~^0.755^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~415~^0.430^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~502~^0.832^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~503~^0.840^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~504~^1.490^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~505~^1.571^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~506~^0.445^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~507~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~508~^0.744^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~509~^0.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~510~^0.941^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~511~^1.191^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~512~^0.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~513~^1.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~514~^1.624^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~515~^2.663^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~516~^0.977^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~517~^0.800^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~518~^0.728^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~521~^0.121^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~605~^0.039^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~606~^1.717^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~612~^0.061^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~613~^1.082^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~614~^0.540^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~617~^2.151^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~618~^0.559^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~619~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~620~^0.056^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~626~^0.134^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~628~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~645~^2.321^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~646~^0.659^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10916~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~653~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~663~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~669~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~670~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~672~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10916~^~674~^2.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~675~^0.541^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~693~^0.024^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10916~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10916~^~851~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~312~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~404~^0.360^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~405~^0.181^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~406~^5.734^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~410~^0.714^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~415~^0.390^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~501~^0.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~502~^0.794^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~503~^0.801^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~504~^1.422^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~505~^1.499^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~506~^0.424^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~507~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~508~^0.710^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~509~^0.576^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~510~^0.899^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~511~^1.136^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~512~^0.774^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~513~^1.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~514~^1.550^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~515~^2.541^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~516~^0.933^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~517~^0.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~518~^0.695^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~521~^0.115^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~605~^0.009^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~606~^1.787^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10917~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~612~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~613~^1.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~614~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~617~^2.302^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~618~^0.578^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~619~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~620~^0.053^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~626~^0.149^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~628~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~645~^2.490^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10917~^~646~^0.679^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10917~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~663~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~669~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~670~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~672~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~674~^2.280^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~675~^0.561^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10917~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~693~^0.005^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10917~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10917~^~851~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10918~^~312~^0.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~404~^0.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~405~^0.175^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~406~^3.901^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~410~^0.588^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~415~^0.316^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~501~^0.180^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~502~^0.863^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~503~^0.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~504~^1.549^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~505~^1.628^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~506~^0.461^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~507~^0.219^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~508~^0.775^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~509~^0.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~510~^0.981^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~511~^1.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~512~^0.848^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~513~^1.150^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~514~^1.695^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~515~^2.773^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~516~^1.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~517~^0.843^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~518~^0.760^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~521~^0.126^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~605~^0.087^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~606~^3.783^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10918~^~612~^0.139^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~613~^2.406^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~614~^1.161^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~615~^0.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~617~^4.904^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~618~^1.303^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~619~^0.058^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~620~^0.062^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~624~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~626~^0.273^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~628~^0.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~645~^5.265^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~646~^1.479^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10918~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~653~^0.028^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~672~^0.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10918~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10919~^~312~^0.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~404~^0.362^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~405~^0.171^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~406~^4.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~410~^0.534^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~415~^0.346^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~501~^0.165^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~502~^0.799^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~503~^0.809^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~504~^1.436^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~505~^1.503^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~506~^0.425^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~507~^0.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~508~^0.719^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~509~^0.577^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~510~^0.912^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~511~^1.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~512~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~513~^1.077^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~514~^1.580^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~515~^2.576^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~516~^1.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~517~^0.795^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~518~^0.707^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~521~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~605~^0.133^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~606~^5.715^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~610~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~611~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~612~^0.204^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~613~^3.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~614~^1.742^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~615~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~617~^7.362^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~618~^2.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~619~^0.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~620~^0.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~624~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~626~^0.421^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~628~^0.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~645~^7.914^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~646~^2.281^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10919~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~653~^0.044^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~672~^0.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10919~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~312~^0.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~404~^0.374^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~405~^0.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~406~^4.855^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~410~^0.580^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~415~^0.427^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~501~^0.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~502~^0.884^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~503~^0.892^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~504~^1.584^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~505~^1.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~506~^0.472^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~507~^0.223^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~508~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~509~^0.640^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~510~^1.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~511~^1.268^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~512~^0.865^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~513~^1.171^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~514~^1.730^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~515~^2.833^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~516~^1.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~517~^0.857^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~518~^0.776^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~521~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~605~^0.058^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~606~^2.586^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~612~^0.091^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~613~^1.649^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~614~^0.794^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~617~^3.328^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~618~^0.894^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~619~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~620~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~624~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~626~^0.192^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~628~^0.057^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~645~^3.577^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~646~^1.032^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10920~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~653~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~672~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10920~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~312~^0.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~315~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~404~^0.308^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~405~^0.137^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~406~^4.283^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~410~^0.689^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~415~^0.335^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~501~^0.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~502~^0.675^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~503~^0.681^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~504~^1.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~505~^1.274^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~506~^0.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~507~^0.169^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~508~^0.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~509~^0.489^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~510~^0.763^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~511~^0.965^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~512~^0.657^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~513~^0.888^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~514~^1.316^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~515~^2.158^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~516~^0.788^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~517~^0.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~518~^0.590^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~521~^0.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~605~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~606~^1.553^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10921~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~612~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~613~^0.990^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~614~^0.480^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~617~^1.999^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~618~^0.600^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~619~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~620~^0.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~626~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~628~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~645~^2.160^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10921~^~646~^0.699^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10921~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~663~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~670~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~672~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10921~^~674~^1.975^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~675~^0.586^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~693~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10921~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10921~^~851~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~312~^0.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~315~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~404~^0.260^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~405~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~406~^3.620^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~410~^0.644^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~415~^0.260^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~501~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~502~^0.621^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~503~^0.627^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~504~^1.112^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~505~^1.173^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~506~^0.332^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~507~^0.156^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~508~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~509~^0.451^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~510~^0.702^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~511~^0.888^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~512~^0.605^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~513~^0.818^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~514~^1.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~515~^1.987^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~516~^0.725^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~517~^0.596^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~518~^0.543^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~521~^0.090^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~605~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~606~^1.841^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10922~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~612~^0.068^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~613~^1.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~614~^0.580^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~617~^2.286^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~618~^0.741^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~619~^0.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~620~^0.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~624~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~626~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~628~^0.041^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~645~^2.458^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10922~^~646~^0.851^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10922~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~653~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~663~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~669~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~670~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~672~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10922~^~674~^2.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~675~^0.724^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~693~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10922~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10922~^~851~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10923~^~312~^0.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~404~^0.327^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~405~^0.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~406~^7.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~410~^0.478^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~415~^0.364^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~501~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~502~^1.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~503~^1.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~504~^1.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~505~^1.886^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~506~^0.534^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~507~^0.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~508~^0.896^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~509~^0.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~510~^1.134^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~511~^1.435^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~512~^0.979^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~513~^1.326^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~514~^1.958^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~515~^3.206^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~516~^1.197^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~517~^0.970^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~518~^0.878^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~521~^0.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~605~^0.072^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~606~^3.116^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~612~^0.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~613~^2.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~614~^0.927^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~617~^4.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~618~^1.156^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~619~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~620~^0.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~624~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~626~^0.249^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~628~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~645~^4.364^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~646~^1.337^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10923~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~653~^0.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~672~^0.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10923~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~312~^0.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~404~^0.289^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~405~^0.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~406~^7.190^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~410~^0.539^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~415~^0.358^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~501~^0.212^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~502~^1.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~503~^1.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~504~^1.824^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~505~^1.918^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~506~^0.543^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~507~^0.257^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~508~^0.912^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~509~^0.736^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~510~^1.154^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~511~^1.460^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~512~^0.997^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~513~^1.351^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~514~^1.994^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~515~^3.263^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~516~^1.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~517~^0.989^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~518~^0.894^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~521~^0.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~605~^0.079^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~606~^3.545^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10924~^~612~^0.125^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~613~^2.281^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~614~^1.067^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~617~^4.766^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~618~^1.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~619~^0.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~620~^0.073^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~624~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~626~^0.274^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~628~^0.080^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~645~^5.120^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~646~^1.351^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10924~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~653~^0.026^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~672~^0.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10924~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10925~^~312~^0.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~404~^0.306^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~405~^0.247^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~406~^8.520^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~410~^0.464^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~415~^0.376^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~501~^0.244^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~502~^1.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~503~^1.178^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~504~^2.092^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~505~^2.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~506~^0.624^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~507~^0.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~508~^1.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~509~^0.846^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~510~^1.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~511~^1.673^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~512~^1.140^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~513~^1.544^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~514~^2.282^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~515~^3.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~516~^1.385^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~517~^1.128^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~518~^1.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~521~^0.170^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~605~^0.048^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~606~^2.427^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~612~^0.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~613~^1.552^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~614~^0.728^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~617~^2.960^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~618~^0.901^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~619~^0.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~620~^0.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~624~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~626~^0.194^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~628~^0.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~645~^3.206^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~646~^1.064^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10925~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~653~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~672~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10925~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~312~^0.272^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~315~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~404~^0.513^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~405~^0.217^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~406~^7.374^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~410~^0.839^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~415~^0.504^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~501~^0.196^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~502~^0.934^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~503~^0.943^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~504~^1.673^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~505~^1.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~506~^0.499^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~507~^0.235^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~508~^0.835^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~509~^0.677^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~510~^1.057^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~511~^1.336^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~512~^0.910^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~513~^1.230^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~514~^1.822^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~515~^2.989^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~516~^1.092^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~517~^0.897^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~518~^0.817^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~521~^0.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~605~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~606~^1.054^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10926~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~612~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~613~^0.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~614~^0.329^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~617~^1.334^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~618~^0.368^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~619~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~620~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~626~^0.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~628~^0.020^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~645~^1.445^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10926~^~646~^0.454^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10926~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~653~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~663~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~669~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~670~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~672~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~674~^1.320^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~675~^0.358^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10926~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~693~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~695~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10926~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10926~^~851~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~312~^0.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~404~^0.463^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~405~^0.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~406~^6.619^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~410~^1.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~415~^0.422^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~501~^0.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~502~^0.991^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~503~^1.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~504~^1.775^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~505~^1.871^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~506~^0.530^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~507~^0.249^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~508~^0.887^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~509~^0.718^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~510~^1.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~511~^1.419^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~512~^0.966^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~513~^1.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~514~^1.934^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~515~^3.172^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~516~^1.164^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~517~^0.954^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~518~^0.868^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~521~^0.144^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~605~^0.010^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~606~^0.950^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~10927~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10927~^~612~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~613~^0.598^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~614~^0.297^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~617~^0.611^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~618~^0.161^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~619~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~620~^0.067^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~626~^0.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~628~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~ -~10927~^~645~^1.925^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~10927~^~646~^0.625^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~10927~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~653~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~663~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~669~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~670~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~672~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~674~^1.205^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~675~^0.351^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10927~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~693~^0.006^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10927~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2006~ -~10927~^~851~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~312~^0.272^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~315~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~404~^0.619^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~405~^0.215^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~406~^6.820^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~410~^0.890^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~415~^0.461^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~501~^0.193^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~502~^0.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~503~^0.927^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~504~^1.646^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~505~^1.735^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~506~^0.491^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~507~^0.231^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~508~^0.822^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~509~^0.667^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~510~^1.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~511~^1.314^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~512~^0.895^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~513~^1.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~514~^1.792^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~515~^2.940^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~516~^1.073^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~517~^0.882^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~518~^0.804^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~521~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~605~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~606~^1.084^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~612~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~613~^0.685^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~614~^0.336^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~617~^1.364^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~618~^0.370^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~619~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~620~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~626~^0.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~628~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~645~^1.479^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~646~^0.452^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~653~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~663~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~669~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~670~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~672~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~674~^1.349^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~675~^0.363^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~687~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~693~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10928~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10928~^~851~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~312~^1.093^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~315~^0.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~404~^0.531^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~405~^0.284^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~406~^6.871^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~410~^0.705^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~415~^0.446^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~501~^0.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~502~^1.065^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~503~^1.076^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~504~^1.910^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~505~^2.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~506~^0.569^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~507~^0.269^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~508~^0.955^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~509~^0.771^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~510~^1.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~511~^1.529^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~512~^1.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~513~^1.414^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~514~^2.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~515~^3.417^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~516~^1.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~517~^1.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~518~^0.936^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~521~^0.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~605~^0.063^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~606~^2.850^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~612~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~613~^1.802^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~614~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~617~^3.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~618~^1.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~619~^0.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~620~^0.083^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~626~^0.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~628~^0.061^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~645~^3.791^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~646~^1.270^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10929~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~653~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~663~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~669~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~672~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~674~^3.480^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~675~^1.045^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10929~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~693~^0.039^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10929~^~695~^0.023^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10929~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10929~^~851~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10931~^~312~^1.197^3^0.649^~1~^~A~^^^1^0.131^2.370^2^-1.594^3.987^~2, 3~^~04/01/2006~ -~10931~^~315~^0.029^3^0.007^~1~^~A~^^^1^0.022^0.042^2^0.000^0.057^~1, 2, 3~^~04/01/2006~ -~10931~^~404~^0.566^3^0.034^~1~^~A~^^^1^0.505^0.622^2^0.420^0.712^~2, 3~^~04/01/2006~ -~10931~^~405~^0.310^3^0.052^~1~^~A~^^^1^0.236^0.411^2^0.084^0.535^~2, 3~^~04/01/2006~ -~10931~^~406~^7.387^3^0.064^~1~^~A~^^^1^7.280^7.500^2^7.113^7.660^~2, 3~^~04/01/2006~ -~10931~^~410~^0.745^3^0.001^~1~^~A~^^^1^0.744^0.746^2^0.743^0.748^~2, 3~^~04/01/2006~ -~10931~^~415~^0.479^3^0.009^~1~^~A~^^^1^0.469^0.497^2^0.441^0.518^~2, 3~^~04/01/2006~ -~10931~^~501~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~502~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~503~^1.174^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~504~^2.084^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~505~^2.198^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~506~^0.622^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~507~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~508~^1.041^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~509~^0.844^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~510~^1.316^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~511~^1.665^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~512~^1.133^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~513~^1.532^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~514~^2.269^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~515~^3.723^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~516~^1.359^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~517~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~518~^1.018^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~521~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10931~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~606~^0.917^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2006~ -~10931~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~612~^0.030^3^0.007^~1~^~A~^^^1^0.022^0.044^2^0.001^0.060^~2, 3~^~04/01/2006~ -~10931~^~613~^0.558^3^0.094^~1~^~A~^^^1^0.434^0.742^2^0.153^0.962^~2, 3~^~04/01/2006~ -~10931~^~614~^0.316^3^0.066^~1~^~A~^^^1^0.231^0.445^2^0.034^0.598^~2, 3~^~04/01/2006~ -~10931~^~615~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.011^~1, 2, 3~^~04/01/2006~ -~10931~^~617~^0.987^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~618~^0.443^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~10931~^~620~^0.078^3^0.007^~1~^~A~^^^1^0.068^0.092^2^0.046^0.109^~2, 3~^~04/01/2006~ -~10931~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~626~^0.065^3^0.004^~1~^~A~^^^1^0.058^0.072^2^0.048^0.083^~2, 3~^~04/01/2006~ -~10931~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~628~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.018^2^0.004^0.024^~2, 3~^~04/01/2006~ -~10931~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10931~^~645~^1.067^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~646~^0.562^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~653~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.001^0.016^~2, 3~^~04/01/2006~ -~10931~^~663~^0.013^3^0.003^~1~^~A~^^^1^0.007^0.017^2^0.000^0.025^~2, 3~^~04/01/2006~ -~10931~^~669~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~04/01/2006~ -~10931~^~672~^0.013^3^0.005^~1~^~A~^^^1^0.008^0.023^2^-0.008^0.034^~2, 3~^~04/01/2006~ -~10931~^~674~^0.975^3^0.127^~1~^~A~^^^1^0.726^1.146^2^0.427^1.522^~2, 3~^~04/01/2006~ -~10931~^~675~^0.435^3^0.122^~1~^~A~^^^1^0.299^0.679^2^-0.092^0.961^~2, 3~^~04/01/2006~ -~10931~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~689~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~04/01/2006~ -~10931~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~10931~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~10931~^~851~^0.026^3^0.018^~1~^~A~^^^1^0.007^0.061^2^-0.050^0.102^~2, 3~^~04/01/2006~ -~10932~^~312~^0.868^3^0.477^~1~^~A~^^^1^0.197^1.790^2^-1.183^2.919^~2, 3~^~04/01/2006~ -~10932~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~04/01/2006~ -~10932~^~404~^0.519^3^0.025^~1~^~A~^^^1^0.472^0.555^2^0.413^0.625^~2, 3~^~04/01/2006~ -~10932~^~405~^0.225^3^0.018^~1~^~A~^^^1^0.191^0.252^2^0.148^0.302^~2, 3~^~04/01/2006~ -~10932~^~406~^6.987^3^0.518^~1~^~A~^^^1^5.990^7.730^2^4.758^9.216^~2, 3~^~04/01/2006~ -~10932~^~410~^0.632^3^0.062^~1~^~A~^^^1^0.521^0.736^2^0.365^0.900^~2, 3~^~04/01/2006~ -~10932~^~415~^0.514^3^0.028^~1~^~A~^^^1^0.460^0.555^2^0.393^0.635^~2, 3~^~04/01/2006~ -~10932~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~502~^1.094^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~503~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~504~^1.959^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~505~^2.066^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~506~^0.585^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~507~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~508~^0.978^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~509~^0.794^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~510~^1.237^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~511~^1.565^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~512~^1.065^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~513~^1.440^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~514~^2.133^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~515~^3.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~516~^1.277^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~517~^1.050^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~518~^0.957^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~521~^0.158^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10932~^~605~^0.020^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~606~^0.874^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10932~^~609~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~610~^0.001^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~611~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~612~^0.029^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~613~^0.531^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~614~^0.301^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~615~^0.003^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~617~^0.941^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~618~^0.422^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~619~^0.024^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~620~^0.074^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~621~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~624~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~625~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~626~^0.062^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~627~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~628~^0.014^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~629~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~630~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~631~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~645~^1.017^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~646~^0.535^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~652~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~653~^0.008^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~663~^0.012^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~669~^0.008^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~672~^0.013^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~674~^0.929^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~675~^0.414^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~685~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~687~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~689~^0.003^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~693~^0.012^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~695~^0.008^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~697~^0.000^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10932~^~851~^0.024^0^^~4~^~BFFN~^~10931~^^^^^^^^^~04/01/2006~ -~10933~^~312~^0.135^3^0.017^~1~^~A~^^^1^0.109^0.168^2^0.061^0.210^~2, 3~^~04/01/2006~ -~10933~^~315~^0.027^3^0.005^~1~^~A~^^^1^0.022^0.037^2^0.006^0.048^~1, 2, 3~^~04/01/2006~ -~10933~^~404~^0.484^3^0.023^~1~^~A~^^^1^0.459^0.530^2^0.386^0.583^~2, 3~^~04/01/2006~ -~10933~^~405~^0.326^3^0.084^~1~^~A~^^^1^0.232^0.493^2^-0.035^0.687^~2, 3~^~04/01/2006~ -~10933~^~406~^7.397^3^0.977^~1~^~A~^^^1^5.460^8.590^2^3.193^11.600^~2, 3~^~04/01/2006~ -~10933~^~410~^0.680^3^0.085^~1~^~A~^^^1^0.518^0.808^2^0.312^1.047^~2, 3~^~04/01/2006~ -~10933~^~415~^0.472^3^0.018^~1~^~A~^^^1^0.450^0.509^2^0.393^0.552^~2, 3~^~04/01/2006~ -~10933~^~501~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~502~^1.185^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~503~^1.196^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~504~^2.122^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~505~^2.238^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~506~^0.634^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~507~^0.297^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~508~^1.060^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~509~^0.859^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~510~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~511~^1.695^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~512~^1.154^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~513~^1.560^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~514~^2.310^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~515~^3.791^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~516~^1.383^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~517~^1.137^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~518~^1.037^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~10933~^~521~^0.172^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10933~^~605~^0.025^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~606~^1.134^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10933~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~610~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2006~ -~10933~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~612~^0.039^3^0.007^~1~^~A~^^^1^0.027^0.052^2^0.008^0.070^~2, 3~^~04/01/2006~ -~10933~^~613~^0.694^3^0.121^~1~^~A~^^^1^0.468^0.880^2^0.175^1.213^~2, 3~^~04/01/2006~ -~10933~^~614~^0.386^3^0.085^~1~^~A~^^^1^0.238^0.532^2^0.021^0.751^~2, 3~^~04/01/2006~ -~10933~^~615~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.005^0.013^~1, 2, 3~^~04/01/2006~ -~10933~^~617~^1.329^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10933~^~618~^0.468^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10933~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~10933~^~620~^0.078^3^0.005^~1~^~A~^^^1^0.070^0.086^2^0.058^0.098^~2, 3~^~04/01/2006~ -~10933~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~626~^0.085^3^0.012^~1~^~A~^^^1^0.064^0.105^2^0.034^0.136^~2, 3~^~04/01/2006~ -~10933~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~628~^0.019^3^0.004^~1~^~A~^^^1^0.011^0.026^2^0.000^0.038^~2, 3~^~04/01/2006~ -~10933~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10933~^~645~^1.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~646~^0.592^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~653~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.002^0.016^~2, 3~^~04/01/2006~ -~10933~^~663~^0.014^3^0.003^~1~^~A~^^^1^0.008^0.018^2^0.001^0.027^~2, 3~^~04/01/2006~ -~10933~^~669~^0.011^3^0.002^~1~^~A~^^^1^0.008^0.014^2^0.004^0.018^~2, 3~^~04/01/2006~ -~10933~^~672~^0.014^3^0.006^~1~^~A~^^^1^0.007^0.026^2^-0.011^0.040^~2, 3~^~04/01/2006~ -~10933~^~674~^1.315^3^0.251^~1~^~A~^^^1^0.812^1.578^2^0.233^2.396^~2, 3~^~04/01/2006~ -~10933~^~675~^0.457^3^0.145^~1~^~A~^^^1^0.295^0.747^2^-0.168^1.082^~2, 3~^~04/01/2006~ -~10933~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~689~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~04/01/2006~ -~10933~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~10933~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10933~^~851~^0.029^3^0.021^~1~^~A~^^^1^0.008^0.070^2^-0.059^0.117^~2, 3~^~04/01/2006~ -~10934~^~312~^0.386^3^0.171^~1~^~A~^^^1^0.098^0.691^2^-0.352^1.123^~2, 3~^~04/01/2006~ -~10934~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~04/01/2006~ -~10934~^~404~^0.476^3^0.016^~1~^~A~^^^1^0.459^0.509^2^0.406^0.547^~2, 3~^~04/01/2006~ -~10934~^~405~^0.249^3^0.032^~1~^~A~^^^1^0.185^0.283^2^0.112^0.386^~2, 3~^~04/01/2006~ -~10934~^~406~^6.970^3^0.661^~1~^~A~^^^1^5.700^7.920^2^4.128^9.812^~2, 3~^~04/01/2006~ -~10934~^~410~^0.662^3^0.028^~1~^~A~^^^1^0.629^0.717^2^0.544^0.781^~2, 3~^~04/01/2006~ -~10934~^~415~^0.467^3^0.040^~1~^~A~^^^1^0.418^0.545^2^0.297^0.637^~2, 3~^~04/01/2006~ -~10934~^~501~^0.223^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~502~^1.064^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~503~^1.074^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~504~^1.906^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~505~^2.010^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~506~^0.569^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~507~^0.267^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~508~^0.952^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~509~^0.772^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~510~^1.204^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~511~^1.522^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~512~^1.036^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~513~^1.401^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~514~^2.075^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~515~^3.405^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~516~^1.242^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~517~^1.021^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~518~^0.931^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~521~^0.154^0^^~1~^~A~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~605~^0.022^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~606~^0.981^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10934~^~609~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~610~^0.001^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~611~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~612~^0.034^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~613~^0.600^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~614~^0.334^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~615~^0.003^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~617~^1.149^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~618~^0.405^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~619~^0.025^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~620~^0.067^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~621~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~624~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~625~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~626~^0.074^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~627~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~628~^0.017^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~629~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~630~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~631~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~645~^1.240^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~646~^0.512^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~652~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~653~^0.008^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~663~^0.012^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~669~^0.009^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~672~^0.012^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~674~^1.137^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~675~^0.395^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~685~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~687~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~689~^0.003^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~693~^0.012^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~695~^0.009^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~697~^0.000^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10934~^~851~^0.025^0^^~4~^~BFFN~^~10933~^^^^^^^^^~04/01/2006~ -~10935~^~312~^0.158^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~315~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~404~^0.460^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~405~^0.298^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~406~^6.885^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~410~^0.648^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~415~^0.440^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~501~^0.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~502~^1.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~503~^1.096^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~504~^1.945^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~505~^2.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~506~^0.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~508~^0.972^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~509~^0.786^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~510~^1.231^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~511~^1.557^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~512~^1.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~513~^1.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~514~^2.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~515~^3.480^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~516~^1.299^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~517~^1.053^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~518~^0.953^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~521~^0.158^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~605~^0.066^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~606~^3.018^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~612~^0.109^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~613~^1.907^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~614~^0.945^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~617~^3.790^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10935~^~618~^1.102^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10935~^~619~^0.057^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~ -~10935~^~620~^0.083^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~626~^0.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~ -~10935~^~628~^0.065^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10935~^~645~^4.082^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~646~^1.288^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~ -~10935~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~653~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~672~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10935~^~689~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10935~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10936~^~312~^0.347^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~404~^0.444^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~405~^0.218^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~406~^6.382^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~410~^0.620^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~415~^0.429^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~501~^0.201^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~502~^0.961^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~503~^0.971^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~504~^1.723^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~505~^1.813^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~506~^0.513^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~507~^0.243^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~508~^0.861^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~509~^0.696^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~510~^1.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~511~^1.380^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~512~^0.941^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~513~^1.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~514~^1.883^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~515~^3.083^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~516~^1.153^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~517~^0.934^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~518~^0.844^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~521~^0.154^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10936~^~605~^0.074^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~606~^3.180^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~610~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~612~^0.114^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~613~^2.004^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~614~^1.012^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~615~^0.014^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~617~^3.984^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~618~^1.182^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~619~^0.060^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~620~^0.075^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~624~^0.007^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~626~^0.220^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~628~^0.065^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~645~^4.269^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~646~^1.366^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~653~^0.027^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~672~^0.047^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~689~^0.002^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10936~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10937~^~312~^0.417^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~404~^0.547^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~405~^0.296^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~406~^7.333^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~410~^0.726^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~415~^0.509^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~501~^0.237^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~502~^1.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~503~^1.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~504~^2.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~505~^2.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~506~^0.606^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~507~^0.286^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~508~^1.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~509~^0.822^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~510~^1.287^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~511~^1.627^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~512~^1.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~513~^1.503^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~514~^2.221^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~515~^3.638^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~516~^1.350^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~517~^1.099^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~518~^0.996^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10937~^~521~^0.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~605~^0.060^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~606~^2.750^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~ -~10937~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~612~^0.057^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~613~^0.998^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~614~^0.493^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~617~^1.949^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~618~^0.493^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~619~^0.023^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~620~^0.080^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~626~^0.199^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~628~^0.053^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~ -~10937~^~645~^3.838^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~646~^1.043^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~652~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~653~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~663~^0.035^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~669~^0.023^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~670~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~672~^0.035^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~674~^3.204^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~675~^0.883^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10937~^~693~^0.038^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~695~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~10937~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~ -~10937~^~851~^0.047^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~10938~^~312~^0.148^3^0.014^~1~^~A~^^^1^0.122^0.172^2^0.086^0.210^~2, 3~^~04/01/2006~ -~10938~^~315~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~04/01/2006~ -~10938~^~404~^0.492^3^0.016^~1~^~A~^^^1^0.472^0.524^2^0.422^0.562^~2, 3~^~04/01/2006~ -~10938~^~405~^0.251^3^0.026^~1~^~A~^^^1^0.201^0.284^2^0.141^0.361^~2, 3~^~04/01/2006~ -~10938~^~406~^6.493^3^0.713^~1~^~A~^^^1^5.090^7.410^2^3.427^9.559^~2, 3~^~04/01/2006~ -~10938~^~410~^0.683^3^0.041^~1~^~A~^^^1^0.608^0.749^2^0.507^0.860^~2, 3~^~04/01/2006~ -~10938~^~415~^0.482^3^0.038^~1~^~A~^^^1^0.438^0.558^2^0.317^0.647^~2, 3~^~04/01/2006~ -~10938~^~501~^0.229^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~502~^1.090^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~503~^1.100^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~504~^1.951^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~505~^2.058^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~506~^0.583^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~507~^0.274^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~508~^0.974^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~509~^0.790^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~510~^1.232^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~511~^1.559^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~512~^1.061^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~513~^1.435^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~514~^2.125^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~515~^3.486^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~516~^1.272^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~517~^1.046^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~518~^0.953^0^^~1~^~A~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~605~^0.027^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~606~^1.099^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~10938~^~609~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~610~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~611~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~612~^0.039^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~613~^0.682^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~614~^0.364^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~615~^0.005^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~617~^1.309^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~618~^0.449^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~619~^0.026^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~620~^0.074^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~621~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~624~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~625~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~626~^0.087^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~627~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~628~^0.019^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~629~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~630~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~631~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~645~^1.414^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~646~^0.565^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~652~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~653~^0.010^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~663~^0.015^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~669~^0.012^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~672~^0.014^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~674~^1.294^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~675~^0.438^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~685~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~687~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~689~^0.003^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~693~^0.015^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~695~^0.012^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~697~^0.000^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10938~^~851~^0.026^0^^~4~^~BFFN~^~10899~^^^^^^^^^~04/01/2006~ -~10939~^~312~^0.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~315~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~404~^0.462^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~405~^0.225^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~406~^6.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~410~^0.645^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~415~^0.448^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~501~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~502~^1.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~503~^1.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~504~^1.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~505~^1.886^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~506~^0.534^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~507~^0.252^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~508~^0.896^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~509~^0.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~510~^1.133^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~511~^1.434^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~512~^0.978^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~513~^1.325^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~514~^1.957^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~515~^3.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~516~^1.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~517~^0.969^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~518~^0.877^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~521~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~ -~10939~^~605~^0.070^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~606~^2.945^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~612~^0.107^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~613~^1.859^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~614~^0.934^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~615~^0.014^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~617~^3.687^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~618~^1.101^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~619~^0.056^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~620~^0.079^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~624~^0.006^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~626~^0.209^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~628~^0.060^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~645~^3.955^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~646~^1.281^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~653~^0.026^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~672~^0.043^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~689~^0.002^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10939~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~ -~10940~^~312~^0.114^12^0.011^~1~^~A~^^^1^0.071^0.201^11^0.091^0.138^~2, 3~^~03/01/2007~ -~10940~^~315~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.013^11^0.009^0.011^~2, 3~^~03/01/2007~ -~10940~^~404~^0.418^4^0.028^~1~^~A~^^^1^0.348^0.483^3^0.328^0.507^~2, 3~^~03/01/2007~ -~10940~^~405~^0.328^4^0.054^~1~^~A~^^^1^0.244^0.478^3^0.155^0.501^~2, 3~^~03/01/2007~ -~10940~^~406~^6.103^4^0.253^~1~^~A~^^^1^5.610^6.610^3^5.298^6.907^~2, 3~^~03/01/2007~ -~10940~^~410~^0.808^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10940~^~415~^0.590^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2007~ -~10940~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~502~^0.938^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~503~^1.028^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~504~^1.780^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~505~^1.937^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~506~^0.575^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~507~^0.241^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~508~^0.878^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~509~^0.795^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~510~^1.092^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~511~^1.390^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~512~^0.902^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~513~^1.226^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~514~^2.043^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~515~^3.335^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~516~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~517~^0.845^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~518~^0.903^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~10940~^~521~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~10940~^~605~^0.236^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~606~^9.242^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~10940~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10940~^~610~^0.023^4^0.001^~1~^~A~^^^1^0.021^0.026^3^0.019^0.027^~2, 3~^~03/01/2007~ -~10940~^~611~^0.021^4^0.002^~1~^~A~^^^1^0.017^0.024^3^0.017^0.026^~2, 3~^~03/01/2007~ -~10940~^~612~^0.341^4^0.027^~1~^~A~^^^1^0.269^0.384^3^0.255^0.427^~2, 3~^~03/01/2007~ -~10940~^~613~^5.605^4^0.387^~1~^~A~^^^1^4.634^6.251^3^4.375^6.836^~2, 3~^~03/01/2007~ -~10940~^~614~^3.110^4^0.215^~1~^~A~^^^1^2.529^3.464^3^2.426^3.794^~2, 3~^~03/01/2007~ -~10940~^~615~^0.040^4^0.003^~1~^~A~^^^1^0.035^0.047^3^0.031^0.049^~2, 3~^~03/01/2007~ -~10940~^~617~^9.986^4^0.594^~1~^~AS~^^^1^8.680^11.006^3^8.095^11.878^~2, 3~^~03/01/2007~ -~10940~^~618~^2.652^4^0.154^~1~^~AS~^^^1^2.356^3.065^3^2.160^3.143^~2, 3~^~03/01/2007~ -~10940~^~619~^0.130^4^0.010^~1~^~AS~^^^1^0.111^0.158^3^0.099^0.162^~2, 3~^~03/01/2007~ -~10940~^~620~^0.101^4^0.008^~1~^~A~^^^1^0.082^0.120^3^0.076^0.126^~2, 3~^~03/01/2007~ -~10940~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10940~^~625~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.010^~1, 2, 3~^~03/01/2007~ -~10940~^~626~^0.562^4^0.032^~1~^~A~^^^1^0.488^0.621^3^0.461^0.662^~2, 3~^~03/01/2007~ -~10940~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~628~^0.157^4^0.012^~1~^~A~^^^1^0.135^0.182^3^0.120^0.194^~2, 3~^~03/01/2007~ -~10940~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~10940~^~645~^10.709^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~646~^2.996^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~652~^0.015^4^0.001^~1~^~A~^^^1^0.011^0.017^3^0.010^0.019^~2, 3~^~03/01/2007~ -~10940~^~653~^0.086^4^0.007^~1~^~A~^^^1^0.067^0.097^3^0.065^0.107^~2, 3~^~03/01/2007~ -~10940~^~663~^0.139^4^0.047^~1~^~A~^^^1^0.000^0.200^3^-0.010^0.288^~1, 2, 3~^~03/01/2007~ -~10940~^~669~^0.097^4^0.007^~1~^~A~^^^1^0.083^0.109^3^0.075^0.118^~2, 3~^~03/01/2007~ -~10940~^~672~^0.096^4^0.008^~1~^~A~^^^1^0.082^0.115^3^0.069^0.122^~2, 3~^~03/01/2007~ -~10940~^~674~^9.847^4^0.623^~1~^~A~^^^1^8.480^11.006^3^7.866^11.829^~2, 3~^~03/01/2007~ -~10940~^~675~^2.555^4^0.160^~1~^~A~^^^1^2.248^2.977^3^2.047^3.062^~2, 3~^~03/01/2007~ -~10940~^~685~^0.006^4^0.002^~1~^~A~^^^1^0.000^0.008^3^0.000^0.011^~1, 2, 3~^~03/01/2007~ -~10940~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10940~^~689~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.021^3^0.012^0.021^~2, 3~^~03/01/2007~ -~10940~^~693~^0.139^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~695~^0.097^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~10940~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~10940~^~851~^0.125^4^0.009^~1~^~A~^^^1^0.111^0.151^3^0.096^0.154^~2, 3~^~03/01/2007~ -~10942~^~312~^0.055^4^0.013^~1~^~A~^^^1^0.038^0.093^3^0.015^0.096^~2, 3~^~05/01/2007~ -~10942~^~315~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.006^^^^~1, 2, 3~^~05/01/2007~ -~10942~^~404~^0.204^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~405~^0.103^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~406~^3.230^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~410~^0.611^0^^~4~^~BFPN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~415~^0.275^0^^~4~^~BFPN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~501~^0.098^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~502~^0.416^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~503~^0.456^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~504~^0.789^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~505~^0.859^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~506~^0.255^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~507~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~508~^0.389^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~509~^0.353^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~510~^0.484^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~511~^0.617^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~512~^0.400^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~513~^0.544^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~514~^0.906^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~515~^1.479^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~516~^0.417^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~517~^0.375^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~518~^0.401^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~521~^0.024^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10942~^~605~^0.579^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~606~^18.488^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~607~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~608~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~609~^0.001^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~610~^0.039^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~611~^0.038^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~612~^0.646^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~613~^11.205^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~614~^6.252^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~617~^20.184^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~618~^6.785^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~619~^0.328^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~620~^0.118^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~621~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~624~^0.001^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~625~^0.011^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~626~^0.985^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~627~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~628~^0.358^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~629~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~630~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~631~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~645~^21.538^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~646~^7.532^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~652~^0.029^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~653~^0.183^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~663~^0.387^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~669~^0.193^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~672~^0.259^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~674~^19.797^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~675~^6.592^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~685~^0.014^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~687~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~689~^0.043^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~693~^0.387^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~697~^0.000^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10942~^~851~^0.315^0^^~4~^~BFFN~^~10006~^^^^^^^^^~05/01/2007~ -~10943~^~312~^0.106^12^0.008^~1~^~A~^^^1^0.066^0.158^11^0.088^0.124^~2, 3~^~05/01/2007~ -~10943~^~315~^0.012^12^0.001^~1~^~A~^^^1^0.009^0.018^11^0.010^0.013^~2, 3~^~05/01/2007~ -~10943~^~404~^0.789^4^0.016^~1~^~A~^^^1^0.749^0.825^3^0.738^0.841^~2, 3~^~05/01/2007~ -~10943~^~405~^0.360^4^0.012^~1~^~A~^^^1^0.329^0.388^3^0.321^0.399^~2, 3~^~05/01/2007~ -~10943~^~406~^7.392^4^0.639^~1~^~A~^^^1^5.830^8.500^3^5.359^9.425^~2, 3~^~05/01/2007~ -~10943~^~410~^0.836^0^^~4~^~BFPN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~415~^0.610^0^^~4~^~BFPN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~502~^0.970^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~503~^1.063^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~504~^1.841^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~505~^2.004^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~506~^0.595^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~507~^0.249^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~508~^0.908^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~509~^0.822^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~510~^1.129^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~511~^1.438^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~512~^0.933^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~513~^1.268^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~514~^2.114^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~515~^3.450^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~516~^0.974^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~517~^0.874^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~518~^0.934^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10943~^~521~^0.055^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10943~^~605~^0.030^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~606~^1.077^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~607~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~608~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~609~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~610~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~611~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~612~^0.035^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~613~^0.661^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~614~^0.369^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~617~^1.109^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~618~^0.381^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~619~^0.012^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~620~^0.051^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~621~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~624~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~625~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~626~^0.072^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~627~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~628~^0.018^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~629~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~630~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~631~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~645~^1.199^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~646~^0.455^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~652~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~653~^0.010^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~663~^0.019^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~669~^0.011^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~672~^0.011^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~674~^1.090^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~675~^0.370^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~685~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~687~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~689~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~693~^0.019^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10943~^~697~^0.000^0^^~4~^~BFFN~^~10061~^^^^^^^^^~07/01/2009~ -~10943~^~851~^0.012^0^^~4~^~BFFN~^~10061~^^^^^^^^^~05/01/2007~ -~10944~^~312~^0.103^12^0.007^~1~^~A~^^^1^0.072^0.154^11^0.087^0.119^~2, 3~^~05/01/2007~ -~10944~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.008^0.015^11^0.009^0.012^~2, 3~^~05/01/2007~ -~10944~^~404~^0.757^4^0.033^~1~^~A~^^^1^0.672^0.815^3^0.652^0.861^~2, 3~^~05/01/2007~ -~10944~^~405~^0.337^4^0.022^~1~^~A~^^^1^0.294^0.378^3^0.269^0.406^~2, 3~^~05/01/2007~ -~10944~^~406~^6.450^4^0.420^~1~^~A~^^^1^5.660^7.490^3^5.114^7.786^~2, 3~^~05/01/2007~ -~10944~^~410~^0.824^0^^~4~^~BFPN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~415~^0.756^0^^~4~^~BFPN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~501~^0.215^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~502~^0.915^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~503~^1.003^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~504~^1.737^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~505~^1.891^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~508~^0.857^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~509~^0.776^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~510~^1.065^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~511~^1.357^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~512~^0.881^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~513~^1.197^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~514~^1.995^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~515~^3.255^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~517~^0.824^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~518~^0.882^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10944~^~521~^0.052^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10944~^~605~^0.020^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~606~^0.671^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~607~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~608~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~609~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~610~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~611~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~612~^0.021^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~613~^0.415^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~614~^0.231^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~617~^0.703^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~618~^0.288^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~619~^0.007^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~620~^0.050^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~621~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~624~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~625~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~626~^0.047^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~627~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~628~^0.011^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~629~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~630~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~631~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~645~^0.762^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~646~^0.352^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~652~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~653~^0.003^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~663~^0.012^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~669~^0.007^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~672~^0.007^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~674~^0.691^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~675~^0.280^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~685~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~687~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~689~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~693~^0.012^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10944~^~697~^0.000^0^^~4~^~BFFN~^~10060~^^^^^^^^^~07/01/2009~ -~10944~^~851~^0.007^0^^~4~^~BFFN~^~10060~^^^^^^^^^~05/01/2007~ -~10945~^~312~^0.208^12^0.058^~1~^~A~^^^1^0.092^0.816^11^0.081^0.334^~2, 3~^~05/01/2007~ -~10945~^~315~^0.012^12^0.001^~1~^~A~^^^1^0.010^0.017^11^0.011^0.014^~2, 3~^~05/01/2007~ -~10945~^~404~^0.424^4^0.012^~1~^~A~^^^1^0.401^0.453^3^0.387^0.461^~2, 3~^~05/01/2007~ -~10945~^~405~^0.381^4^0.018^~1~^~A~^^^1^0.329^0.412^3^0.324^0.438^~2, 3~^~05/01/2007~ -~10945~^~406~^3.575^4^0.127^~1~^~A~^^^1^3.300^3.870^3^3.170^3.980^~2, 3~^~05/01/2007~ -~10945~^~410~^1.419^0^^~4~^~BFPN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~415~^0.488^0^^~4~^~BFPN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~501~^0.290^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~502~^1.238^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~503~^1.357^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~504~^2.350^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~505~^2.558^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~506~^0.760^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~507~^0.318^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~508~^1.159^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~509~^1.050^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~510~^1.441^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~511~^1.835^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~512~^1.191^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~513~^1.619^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~514~^2.698^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~515~^4.403^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~516~^1.243^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~517~^1.115^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~518~^1.193^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10945~^~521~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10945~^~605~^0.094^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~606~^4.620^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~607~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~608~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~609~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~610~^0.013^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~611~^0.010^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~612~^0.155^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~613~^2.807^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~614~^1.578^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~617~^5.307^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~618~^1.108^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~619~^0.044^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~620~^0.087^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~621~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~624~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~625~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~626~^0.306^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~627~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~628~^0.089^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~629~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~630~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~631~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~645~^5.702^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~646~^1.290^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~652~^0.002^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~653~^0.034^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~663~^0.057^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~669~^0.037^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~672~^0.045^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~674~^5.250^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~675~^1.071^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~685~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~687~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~689~^0.006^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~693~^0.057^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10945~^~697~^0.000^0^^~4~^~BFFN~^~10085~^^^^^^^^^~07/01/2009~ -~10945~^~851~^0.044^0^^~4~^~BFFN~^~10085~^^^^^^^^^~05/01/2007~ -~10946~^~312~^0.125^12^0.021^~1~^~A~^^^1^0.070^0.297^11^0.078^0.171^~2, 3~^~05/01/2007~ -~10946~^~315~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.013^11^0.009^0.011^~2, 3~^~05/01/2007~ -~10946~^~404~^0.512^4^0.006^~1~^~A~^^^1^0.502^0.524^3^0.493^0.530^~2, 3~^~05/01/2007~ -~10946~^~405~^0.367^4^0.010^~1~^~A~^^^1^0.349^0.394^3^0.337^0.397^~2, 3~^~05/01/2007~ -~10946~^~406~^3.837^4^0.170^~1~^~A~^^^1^3.360^4.130^3^3.296^4.379^~2, 3~^~05/01/2007~ -~10946~^~410~^1.531^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~415~^0.509^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~502~^0.821^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~503~^0.900^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~504~^1.558^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~505~^1.697^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~506~^0.504^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~507~^0.211^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~508~^0.769^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~509~^0.696^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~510~^0.956^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~511~^1.217^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~512~^0.790^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~513~^1.074^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~514~^1.790^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~515~^2.921^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~516~^0.824^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~517~^0.740^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~518~^0.791^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10946~^~521~^0.047^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~10946~^~605~^0.036^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~606~^1.873^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~607~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~608~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~609~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~610~^0.002^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~611~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~612~^0.063^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~613~^1.148^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~614~^0.637^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~617~^2.164^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~618~^0.485^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~619~^0.018^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~620~^0.061^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~621~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~624~^0.001^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~625~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~626~^0.130^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~627~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~628~^0.034^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~629~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~630~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~631~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~645~^2.329^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~646~^0.581^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~652~^0.001^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~653~^0.013^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~663~^0.022^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~669~^0.014^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~672~^0.018^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~674~^2.142^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~675~^0.470^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~685~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~687~^0.001^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~689~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~693~^0.022^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~697~^0.000^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10946~^~851~^0.018^0^^~4~^~BFFN~^~10084~^^^^^^^^^~05/01/2007~ -~10947~^~312~^0.065^5^0.004^~1~^~A~^^^1^0.053^0.077^4^0.054^0.076^~2, 3~^~06/01/2014~ -~10947~^~315~^0.014^5^0.003^~1~^~A~^^^1^0.011^0.024^4^0.006^0.021^~1, 2, 3~^~06/01/2014~ -~10947~^~404~^0.664^3^0.071^~1~^~A~^^^1^0.581^0.805^2^0.360^0.969^~2, 3~^~06/01/2014~ -~10947~^~405~^0.240^3^0.025^~1~^~A~^^^1^0.190^0.270^2^0.132^0.348^~2, 3~^~06/01/2014~ -~10947~^~406~^8.927^3^0.197^~1~^~A~^^^1^8.630^9.300^2^8.078^9.775^~2, 3~^~06/01/2014~ -~10947~^~410~^0.920^2^^~1~^~A~^^^1^0.920^0.920^^^^^~06/01/2014~ -~10947~^~415~^0.465^3^0.033^~1~^~A~^^^1^0.401^0.513^2^0.322^0.609^~2, 3~^~06/01/2014~ -~10947~^~501~^0.261^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~502~^1.114^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~503~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~504~^2.114^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~505~^2.301^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~506~^0.683^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~508~^1.043^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~509~^0.944^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~510~^1.296^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~511~^1.651^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~512~^1.072^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~513~^1.456^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~514~^2.427^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~515~^3.961^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~516~^1.118^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~517~^1.003^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~518~^1.073^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10947~^~521~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~10947~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~606~^1.957^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~10947~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~10947~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10947~^~610~^0.007^5^0.001^~1~^~A~^^^1^0.005^0.012^4^0.003^0.011^~2, 3~^~06/01/2014~ -~10947~^~611~^0.005^5^0.001^~1~^~A~^^^1^0.003^0.008^4^0.002^0.007^~2, 3~^~06/01/2014~ -~10947~^~612~^0.072^5^0.014^~1~^~A~^^^1^0.041^0.122^4^0.033^0.110^~2, 3~^~06/01/2014~ -~10947~^~613~^1.221^5^0.211^~1~^~A~^^^1^0.793^1.989^4^0.634^1.807^~2, 3~^~06/01/2014~ -~10947~^~614~^0.627^5^0.101^~1~^~A~^^^1^0.425^0.983^4^0.346^0.909^~2, 3~^~06/01/2014~ -~10947~^~615~^0.009^5^0.002^~1~^~A~^^^1^0.005^0.014^4^0.004^0.013^~2, 3~^~06/01/2014~ -~10947~^~617~^2.096^5^0.359^~1~^~AS~^^^1^1.339^3.413^4^1.099^3.094^~2, 3~^~06/01/2014~ -~10947~^~618~^0.637^5^0.043^~1~^~AS~^^^1^0.520^0.768^4^0.517^0.757^~2, 3~^~06/01/2014~ -~10947~^~619~^0.020^5^0.002^~1~^~AS~^^^1^0.012^0.026^4^0.013^0.026^~2, 3~^~06/01/2014~ -~10947~^~620~^0.072^5^0.003^~1~^~A~^^^1^0.066^0.085^4^0.062^0.081^~2, 3~^~06/01/2014~ -~10947~^~621~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~10947~^~624~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10947~^~625~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.002^~1, 2, 3~^~06/01/2014~ -~10947~^~626~^0.139^5^0.033^~1~^~AS~^^^1^0.073^0.263^4^0.048^0.230^~2, 3~^~06/01/2014~ -~10947~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~628~^0.037^5^0.006^~1~^~A~^^^1^0.023^0.058^4^0.021^0.053^~2, 3~^~06/01/2014~ -~10947~^~629~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10947~^~630~^0.001^5^0.000^~1~^~AS~^^^1^0.000^0.002^4^0.000^0.002^~2, 3~^~06/01/2014~ -~10947~^~631~^0.006^5^0.001^~1~^~A~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~06/01/2014~ -~10947~^~645~^2.293^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~646~^0.784^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~652~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~06/01/2014~ -~10947~^~653~^0.013^5^0.002^~1~^~A~^^^1^0.008^0.018^4^0.008^0.018^~2, 3~^~06/01/2014~ -~10947~^~654~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10947~^~662~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~663~^0.014^5^0.003^~1~^~A~^^^1^0.006^0.020^4^0.007^0.021^~2, 3~^~06/01/2014~ -~10947~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~665~^0.002^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.000^0.004^~1, 2, 3~^~06/01/2014~ -~10947~^~670~^0.005^5^0.001^~1~^~A~^^^1^0.002^0.008^4^0.002^0.008^~1, 2, 3~^~06/01/2014~ -~10947~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~672~^0.023^5^0.002^~1~^~A~^^^1^0.018^0.029^4^0.018^0.028^~2, 3~^~06/01/2014~ -~10947~^~673~^0.138^5^0.033^~1~^~A~^^^1^0.072^0.262^4^0.047^0.229^~2, 3~^~06/01/2014~ -~10947~^~674~^2.082^5^0.358^~1~^~A~^^^1^1.333^3.393^4^1.089^3.076^~2, 3~^~06/01/2014~ -~10947~^~675~^0.630^5^0.043^~1~^~A~^^^1^0.517^0.762^4^0.511^0.749^~2, 3~^~06/01/2014~ -~10947~^~676~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.002^~1, 2, 3~^~06/01/2014~ -~10947~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~687~^0.019^5^0.002^~1~^~A~^^^1^0.014^0.024^4^0.014^0.023^~2, 3~^~06/01/2014~ -~10947~^~689~^0.013^5^0.001^~1~^~AS~^^^1^0.010^0.015^4^0.010^0.015^~2, 3~^~06/01/2014~ -~10947~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10947~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~851~^0.020^5^0.002^~1~^~A~^^^1^0.012^0.026^4^0.013^0.026^~2, 3~^~06/01/2014~ -~10947~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.003^4^0.001^0.004^~1, 2, 3~^~06/01/2014~ -~10947~^~853~^0.010^5^0.001^~1~^~A~^^^1^0.009^0.012^4^0.008^0.012^~2, 3~^~06/01/2014~ -~10947~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10947~^~858~^0.012^5^0.001^~1~^~A~^^^1^0.010^0.016^4^0.009^0.016^~2, 3~^~06/01/2014~ -~10948~^~312~^0.048^5^0.001^~1~^~A~^^^1^0.044^0.051^4^0.045^0.052^~2, 3~^~06/01/2014~ -~10948~^~315~^0.011^5^0.000^~1~^~A~^^^1^0.011^0.011^4^0.011^0.011^~1, 2, 3~^~06/01/2014~ -~10948~^~404~^0.518^3^0.022^~1~^~A~^^^1^0.480^0.557^2^0.423^0.614^~2, 3~^~06/01/2014~ -~10948~^~405~^0.210^3^0.006^~1~^~A~^^^1^0.200^0.220^2^0.185^0.235^~2, 3~^~06/01/2014~ -~10948~^~406~^7.813^3^0.813^~1~^~A~^^^1^6.750^9.410^2^4.316^11.311^~2, 3~^~06/01/2014~ -~10948~^~410~^0.750^2^^~1~^~A~^^^1^0.590^0.910^1^^^^~06/01/2014~ -~10948~^~415~^0.497^3^0.018^~1~^~A~^^^1^0.469^0.532^2^0.418^0.577^~2, 3~^~06/01/2014~ -~10948~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~502~^0.978^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~503~^1.072^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~504~^1.856^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~505~^2.020^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~506~^0.600^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~507~^0.251^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~508~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~509~^0.829^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~510~^1.138^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~511~^1.449^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~512~^0.941^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~513~^1.279^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~514~^2.131^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~515~^3.477^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~516~^0.981^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~517~^0.881^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~518~^0.942^0^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~10948~^~521~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2014~ -~10948~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~606~^1.052^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~10948~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~10948~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10948~^~610~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.001^0.005^~1, 2, 3~^~06/01/2014~ -~10948~^~611~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~06/01/2014~ -~10948~^~612~^0.039^5^0.008^~1~^~A~^^^1^0.016^0.063^4^0.018^0.060^~2, 3~^~06/01/2014~ -~10948~^~613~^0.659^5^0.121^~1~^~A~^^^1^0.306^1.057^4^0.322^0.995^~2, 3~^~06/01/2014~ -~10948~^~614~^0.331^5^0.061^~1~^~A~^^^1^0.165^0.531^4^0.161^0.501^~2, 3~^~06/01/2014~ -~10948~^~615~^0.006^5^0.001^~1~^~A~^^^1^0.003^0.010^4^0.002^0.009^~2, 3~^~06/01/2014~ -~10948~^~617~^1.147^5^0.216^~1~^~AS~^^^1^0.528^1.868^4^0.547^1.746^~2, 3~^~06/01/2014~ -~10948~^~618~^0.300^5^0.058^~1~^~AS~^^^1^0.154^0.495^4^0.139^0.462^~2, 3~^~06/01/2014~ -~10948~^~619~^0.009^5^0.002^~1~^~AS~^^^1^0.003^0.018^4^0.002^0.016^~2, 3~^~06/01/2014~ -~10948~^~620~^0.041^5^0.004^~1~^~A~^^^1^0.034^0.052^4^0.031^0.051^~2, 3~^~06/01/2014~ -~10948~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10948~^~624~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~10948~^~625~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10948~^~626~^0.081^5^0.015^~1~^~AS~^^^1^0.032^0.129^4^0.038^0.124^~2, 3~^~06/01/2014~ -~10948~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~628~^0.021^5^0.004^~1~^~A~^^^1^0.009^0.036^4^0.008^0.033^~2, 3~^~06/01/2014~ -~10948~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10948~^~630~^0.001^5^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2014~ -~10948~^~631~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~06/01/2014~ -~10948~^~645~^1.256^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~646~^0.379^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~652~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~10948~^~653~^0.007^5^0.001^~1~^~A~^^^1^0.003^0.011^4^0.003^0.010^~2, 3~^~06/01/2014~ -~10948~^~654~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~10948~^~662~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~10948~^~663~^0.008^5^0.002^~1~^~A~^^^1^0.004^0.016^4^0.003^0.014^~2, 3~^~06/01/2014~ -~10948~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~665~^0.002^5^0.001^~1~^~A~^^^1^0.001^0.004^4^0.000^0.004^~1, 2, 3~^~06/01/2014~ -~10948~^~670~^0.002^5^0.001^~1~^~A~^^^1^0.000^0.004^4^0.000^0.004^~1, 2, 3~^~06/01/2014~ -~10948~^~671~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~10948~^~672~^0.011^5^0.002^~1~^~A~^^^1^0.006^0.018^4^0.005^0.017^~2, 3~^~06/01/2014~ -~10948~^~673~^0.081^5^0.015^~1~^~A~^^^1^0.032^0.128^4^0.038^0.123^~2, 3~^~06/01/2014~ -~10948~^~674~^1.138^5^0.214^~1~^~A~^^^1^0.524^1.852^4^0.544^1.733^~2, 3~^~06/01/2014~ -~10948~^~675~^0.296^5^0.057^~1~^~A~^^^1^0.153^0.487^4^0.138^0.455^~2, 3~^~06/01/2014~ -~10948~^~676~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~687~^0.005^5^0.001^~1~^~A~^^^1^0.002^0.009^4^0.002^0.008^~1, 2, 3~^~06/01/2014~ -~10948~^~689~^0.007^5^0.001^~1~^~AS~^^^1^0.004^0.010^4^0.004^0.009^~2, 3~^~06/01/2014~ -~10948~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10948~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~851~^0.009^5^0.002^~1~^~A~^^^1^0.003^0.018^4^0.002^0.016^~2, 3~^~06/01/2014~ -~10948~^~852~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.002^~1, 2, 3~^~06/01/2014~ -~10948~^~853~^0.006^5^0.001^~1~^~A~^^^1^0.004^0.008^4^0.004^0.008^~2, 3~^~06/01/2014~ -~10948~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~10948~^~858~^0.008^5^0.001^~1~^~A~^^^1^0.006^0.010^4^0.006^0.010^~2, 3~^~06/01/2014~ -~10949~^~312~^0.049^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~404~^0.475^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~405~^0.195^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~406~^7.178^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~410~^0.731^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~415~^0.467^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~501~^0.211^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~502~^0.900^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~503~^0.986^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~504~^1.708^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~505~^1.859^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~506~^0.552^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~507~^0.231^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~508~^0.843^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~509~^0.763^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~510~^1.047^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~511~^1.334^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~512~^0.866^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~513~^1.177^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~514~^1.961^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~515~^3.200^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~516~^0.903^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~517~^0.810^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~518~^0.867^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~521~^0.051^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~605~^0.131^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10949~^~606~^2.530^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10949~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~610~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~612~^0.090^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~613~^1.553^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~614~^0.843^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~617~^5.588^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~618~^1.749^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~619~^0.078^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~620~^0.075^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~624~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~625~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~626~^0.103^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~628~^0.100^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~631~^0.004^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~645~^5.801^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10949~^~646~^1.925^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10949~^~652~^0.004^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~653~^0.023^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~662~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~663~^0.090^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~665~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~669~^0.039^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~670~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~672~^0.066^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~673~^0.103^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~674~^5.499^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~675~^1.705^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~685~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~687~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10949~^~693~^0.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10949~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10949~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10949~^~851~^0.075^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10949~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10949~^~858~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~312~^0.064^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~404~^0.636^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~405~^0.233^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~406~^8.589^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~410~^0.893^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~415~^0.450^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~501~^0.251^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~502~^1.069^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~503~^1.172^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~504~^2.029^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~505~^2.209^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~506~^0.656^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~507~^0.275^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~508~^1.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~509~^0.906^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~510~^1.244^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~511~^1.585^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~512~^1.029^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~513~^1.398^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~514~^2.330^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~515~^3.802^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~516~^1.073^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~517~^0.963^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~518~^1.030^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~521~^0.061^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~605~^0.060^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10950~^~606~^3.268^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~610~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~611~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~612~^0.117^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~613~^2.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~614~^1.077^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~617~^3.526^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~618~^1.109^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~619~^0.044^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~620~^0.076^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~624~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~625~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~626~^0.205^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~628~^0.063^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~630~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~645~^3.819^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~646~^1.304^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~652~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~653~^0.027^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~662~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~663~^0.043^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~664~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~665~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~669~^0.014^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~670~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~672~^0.041^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~673~^0.129^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~674~^3.482^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~675~^1.088^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~685~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~687~^0.023^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~689~^0.015^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10950~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10950~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10950~^~851~^0.043^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~10950~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10950~^~858~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~10951~^~312~^0.102^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~404~^0.745^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~405~^0.333^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~406~^6.382^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~410~^0.819^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~415~^0.746^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~501~^0.212^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~502~^0.905^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~503~^0.992^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~504~^1.717^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~505~^1.869^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~506~^0.555^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~507~^0.233^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~508~^0.847^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~509~^0.767^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~510~^1.053^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~511~^1.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~512~^0.871^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~513~^1.183^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~514~^1.972^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~515~^3.218^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~516~^0.908^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~517~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~518~^0.871^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10951~^~521~^0.052^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10951~^~605~^0.032^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~606~^1.045^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~610~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~611~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~612~^0.034^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~613~^0.642^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~614~^0.358^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~617~^1.112^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~618~^0.424^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~619~^0.014^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~620~^0.052^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~626~^0.067^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~628~^0.018^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~645~^1.198^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~646~^0.503^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~652~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~653~^0.007^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~663~^0.020^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~669~^0.011^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~672~^0.012^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~674~^1.092^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~675~^0.413^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~685~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~687~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~689~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~693~^0.020^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~695~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~ -~10951~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10951~^~851~^0.014^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~312~^0.105^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~404~^0.784^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~405~^0.358^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~406~^7.360^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~410~^0.833^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~415~^0.607^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~501~^0.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~502~^0.965^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~503~^1.058^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~504~^1.831^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~505~^1.994^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~506~^0.592^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~507~^0.248^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~508~^0.904^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~509~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~510~^1.123^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~511~^1.431^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~512~^0.929^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~513~^1.262^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~514~^2.103^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~515~^3.432^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~516~^0.969^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~517~^0.869^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~518~^0.930^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10952~^~521~^0.055^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~605~^0.036^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~606~^1.270^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~610~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~611~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~612~^0.042^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~613~^0.777^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~614~^0.435^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~617~^1.320^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~618~^0.449^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~619~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~620~^0.052^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~624~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~625~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~626~^0.082^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~628~^0.021^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~645~^1.424^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~646~^0.531^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~652~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~653~^0.012^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~663~^0.023^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~669~^0.013^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~672~^0.014^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~674~^1.297^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~675~^0.437^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~685~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~689~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~693~^0.023^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10952~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10952~^~851~^0.015^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~312~^0.116^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~404~^0.474^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~405~^0.335^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~406~^3.763^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~410~^1.418^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~415~^0.480^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~501~^0.181^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~502~^0.772^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~503~^0.846^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~504~^1.464^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~505~^1.594^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~506~^0.473^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~507~^0.198^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~508~^0.722^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~509~^0.654^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~510~^0.898^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~511~^1.144^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~512~^0.742^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~513~^1.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~514~^1.681^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~515~^2.744^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~516~^0.774^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~517~^0.695^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~518~^0.743^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~521~^0.044^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10953~^~605~^0.103^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~606~^3.912^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~610~^0.006^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~611~^0.005^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~612~^0.134^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~613~^2.382^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~614~^1.326^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~617~^4.375^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~618~^1.258^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~619~^0.056^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~620~^0.068^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~624~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~626~^0.235^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~628~^0.074^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~645~^4.686^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~646~^1.434^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~652~^0.004^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~653~^0.034^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~663~^0.067^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~669~^0.036^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~672~^0.047^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~674~^4.308^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~675~^1.222^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~685~^0.002^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~687~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~689~^0.005^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~693~^0.067^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~695~^0.036^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~ -~10953~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10953~^~851~^0.054^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~312~^0.192^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~404~^0.406^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~405~^0.357^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~406~^3.610^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~410~^1.329^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~415~^0.463^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~501~^0.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~502~^1.160^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~503~^1.271^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~504~^2.201^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~505~^2.396^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~506~^0.712^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~507~^0.298^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~508~^1.086^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~509~^0.983^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~510~^1.350^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~511~^1.719^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~512~^1.116^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~513~^1.517^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~514~^2.528^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~515~^4.125^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~516~^1.164^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~517~^1.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~518~^1.117^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~ -~10954~^~521~^0.066^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~605~^0.150^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~606~^6.288^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~610~^0.016^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~611~^0.013^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~612~^0.214^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~613~^3.810^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~614~^2.146^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~617~^7.095^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~618~^1.756^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~619~^0.077^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~620~^0.092^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~624~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~625~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~626~^0.387^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~628~^0.121^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~645~^7.613^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~646~^2.006^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~652~^0.005^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~653~^0.053^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~663~^0.096^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~669~^0.054^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~672~^0.070^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~674~^6.999^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~675~^1.702^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~685~^0.002^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~687~^0.009^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~689~^0.011^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~693~^0.096^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10954~^~695~^0.054^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~697~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~ -~10954~^~851~^0.076^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~ -~10955~^~312~^0.769^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~315~^0.022^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~404~^0.482^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~405~^0.199^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~406~^6.417^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~410~^0.595^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~415~^0.472^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~501~^0.207^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~502~^0.991^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~503~^1.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~504~^1.776^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~505~^1.869^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~506~^0.529^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~507~^0.250^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~508~^0.888^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~509~^0.717^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~510~^1.124^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~511~^1.422^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~512~^0.970^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~513~^1.315^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~514~^1.941^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~515~^3.177^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~516~^1.187^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~517~^0.962^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~518~^0.870^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~521~^0.158^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~605~^0.070^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~606~^3.008^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~610~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~612~^0.107^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~613~^1.893^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~614~^0.959^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~615~^0.014^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~617~^3.701^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~618~^1.169^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~619~^0.059^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~620~^0.080^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~624~^0.007^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~626~^0.205^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~628~^0.061^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~645~^3.966^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~646~^1.356^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~653~^0.027^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~672~^0.046^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~687~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~689~^0.002^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10955~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~ -~10956~^~312~^0.073^6^0.003^~1~^~A~^^^1^0.062^0.080^5^0.065^0.080^~4~^~02/01/2008~ -~10956~^~315~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~4~^~02/01/2008~ -~10956~^~404~^0.481^6^0.043^~1~^~A~^^^1^0.341^0.611^5^0.372^0.590^~4~^~02/01/2008~ -~10956~^~405~^0.387^6^0.053^~1~^~A~^^^1^0.280^0.630^5^0.251^0.522^~4~^~02/01/2008~ -~10956~^~406~^8.205^6^0.266^~1~^~A~^^^1^6.940^8.740^5^7.522^8.888^~4~^~02/01/2008~ -~10956~^~410~^0.772^4^0.085^~1~^~A~^^^1^0.580^0.940^3^0.501^1.044^~4~^~02/01/2008~ -~10956~^~415~^0.430^4^0.025^~1~^~A~^^^1^0.372^0.478^3^0.351^0.508^~4~^~02/01/2008~ -~10956~^~501~^0.328^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~502~^1.212^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~503~^1.306^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~504~^2.269^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~506~^0.756^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~507~^0.311^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~509~^1.092^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~510~^1.395^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~511~^1.777^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~512~^1.121^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~513~^1.579^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~514~^2.579^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~515~^4.212^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~516~^1.246^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~517~^1.115^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~518~^1.151^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10956~^~521~^0.096^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10956~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~606~^1.358^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10956~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~612~^0.045^4^0.002^~1~^~A~^^^1^0.041^0.051^3^0.038^0.052^~4~^~02/01/2008~ -~10956~^~613~^0.875^4^0.063^~1~^~A~^^^1^0.774^1.057^3^0.676^1.075^~4~^~02/01/2008~ -~10956~^~614~^0.425^4^0.031^~1~^~A~^^^1^0.375^0.516^3^0.326^0.524^~4~^~02/01/2008~ -~10956~^~615~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.008^3^-0.004^0.008^~1, 4~^~02/01/2008~ -~10956~^~617~^1.776^4^0.180^~1~^~AS~^^^1^1.444^2.282^3^1.204^2.348^~4~^~02/01/2008~ -~10956~^~618~^0.486^4^0.044^~1~^~AS~^^^1^0.364^0.562^3^0.345^0.628^~4~^~02/01/2008~ -~10956~^~619~^0.015^4^0.002^~1~^~AS~^^^1^0.010^0.019^3^0.009^0.021^~4~^~02/01/2008~ -~10956~^~620~^0.061^4^0.007^~1~^~A~^^^1^0.047^0.080^3^0.037^0.084^~4~^~02/01/2008~ -~10956~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10956~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~626~^0.128^4^0.011^~1~^~A~^^^1^0.099^0.155^3^0.092^0.165^~4~^~02/01/2008~ -~10956~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10956~^~628~^0.024^4^0.002^~1~^~A~^^^1^0.020^0.031^3^0.017^0.032^~4~^~02/01/2008~ -~10956~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10956~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~02/01/2008~ -~10956~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10956~^~645~^1.928^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~646~^0.578^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~653~^0.011^4^0.002^~1~^~A~^^^1^0.008^0.015^3^0.006^0.016^~4~^~02/01/2008~ -~10956~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~663~^0.019^4^0.003^~1~^~A~^^^1^0.010^0.026^3^0.008^0.030^~4~^~02/01/2008~ -~10956~^~669~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.014^3^-0.008^0.015^~1, 4~^~02/01/2008~ -~10956~^~672~^0.016^4^0.001^~1~^~A~^^^1^0.013^0.019^3^0.012^0.020^~4~^~02/01/2008~ -~10956~^~674~^1.757^4^0.177^~1~^~A~^^^1^1.427^2.256^3^1.193^2.322^~4~^~02/01/2008~ -~10956~^~675~^0.483^4^0.043^~1~^~A~^^^1^0.364^0.562^3^0.346^0.620^~4~^~02/01/2008~ -~10956~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10956~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10956~^~851~^0.015^4^0.002^~1~^~A~^^^1^0.010^0.019^3^0.009^0.021^~4~^~02/01/2008~ -~10957~^~312~^0.057^6^0.006^~1~^~A~^^^1^0.027^0.072^5^0.041^0.073^~4~^~02/01/2008~ -~10957~^~315~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.007^0.011^~1, 4~^~02/01/2008~ -~10957~^~404~^0.525^6^0.053^~1~^~A~^^^1^0.373^0.708^5^0.388^0.662^~4~^~02/01/2008~ -~10957~^~405~^0.423^6^0.021^~1~^~A~^^^1^0.340^0.470^5^0.368^0.478^~4~^~02/01/2008~ -~10957~^~406~^7.092^6^0.160^~1~^~A~^^^1^6.550^7.490^5^6.679^7.504^~4~^~02/01/2008~ -~10957~^~410~^0.802^4^0.126^~1~^~A~^^^1^0.600^1.170^3^0.402^1.203^~4~^~02/01/2008~ -~10957~^~415~^0.553^4^0.060^~1~^~A~^^^1^0.405^0.695^3^0.362^0.745^~4~^~02/01/2008~ -~10957~^~501~^0.258^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~502~^0.952^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~503~^1.025^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~504~^1.781^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~505~^1.924^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~506~^0.593^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~507~^0.244^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~508~^0.899^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~509~^0.857^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~510~^1.094^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~511~^1.394^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~512~^0.880^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~513~^1.239^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~514~^2.024^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~515~^3.306^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~516~^0.978^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~517~^0.875^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~518~^0.904^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10957~^~521~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10957~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~606~^1.187^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10957~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~612~^0.041^4^0.003^~1~^~A~^^^1^0.037^0.048^3^0.033^0.049^~4~^~02/01/2008~ -~10957~^~613~^0.768^4^0.045^~1~^~A~^^^1^0.684^0.867^3^0.624^0.913^~4~^~02/01/2008~ -~10957~^~614~^0.369^4^0.024^~1~^~A~^^^1^0.318^0.417^3^0.291^0.447^~4~^~02/01/2008~ -~10957~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~617~^1.556^4^0.117^~1~^~AS~^^^1^1.319^1.764^3^1.184^1.928^~4~^~02/01/2008~ -~10957~^~618~^0.422^4^0.037^~1~^~AS~^^^1^0.324^0.488^3^0.304^0.539^~4~^~02/01/2008~ -~10957~^~619~^0.013^4^0.001^~1~^~AS~^^^1^0.010^0.016^3^0.009^0.018^~4~^~02/01/2008~ -~10957~^~620~^0.059^4^0.003^~1~^~A~^^^1^0.049^0.064^3^0.048^0.070^~4~^~02/01/2008~ -~10957~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10957~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~626~^0.110^4^0.008^~1~^~A~^^^1^0.090^0.124^3^0.086^0.134^~4~^~02/01/2008~ -~10957~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10957~^~628~^0.022^4^0.002^~1~^~A~^^^1^0.018^0.025^3^0.016^0.028^~4~^~02/01/2008~ -~10957~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10957~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~02/01/2008~ -~10957~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10957~^~645~^1.688^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~646~^0.509^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~653~^0.009^4^0.002^~1~^~A~^^^1^0.005^0.013^3^0.003^0.015^~1, 4~^~02/01/2008~ -~10957~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~663~^0.016^4^0.002^~1~^~A~^^^1^0.010^0.020^3^0.009^0.023^~4~^~02/01/2008~ -~10957~^~669~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~672~^0.014^4^0.001^~1~^~A~^^^1^0.011^0.017^3^0.010^0.019^~4~^~02/01/2008~ -~10957~^~674~^1.540^4^0.115^~1~^~A~^^^1^1.304^1.746^3^1.174^1.906^~4~^~02/01/2008~ -~10957~^~675~^0.422^4^0.037^~1~^~A~^^^1^0.324^0.488^3^0.304^0.539^~4~^~02/01/2008~ -~10957~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10957~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10957~^~851~^0.013^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.009^0.018^~4~^~02/01/2008~ -~10958~^~312~^0.076^6^0.006^~1~^~A~^^^1^0.062^0.102^5^0.060^0.091^~4~^~02/01/2008~ -~10958~^~315~^0.014^6^0.002^~1~^~A~^^^1^0.009^0.025^5^0.008^0.020^~4~^~02/01/2008~ -~10958~^~404~^0.645^6^0.061^~1~^~A~^^^1^0.384^0.805^5^0.487^0.803^~4~^~02/01/2008~ -~10958~^~405~^0.465^6^0.070^~1~^~A~^^^1^0.310^0.730^5^0.285^0.645^~4~^~02/01/2008~ -~10958~^~406~^9.602^6^0.480^~1~^~A~^^^1^8.160^11.500^5^8.369^10.834^~4~^~02/01/2008~ -~10958~^~410~^0.982^4^0.213^~1~^~A~^^^1^0.700^1.610^3^0.306^1.659^~4~^~02/01/2008~ -~10958~^~415~^0.722^4^0.086^~1~^~A~^^^1^0.560^0.882^3^0.448^0.996^~4~^~02/01/2008~ -~10958~^~501~^0.268^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~502~^0.991^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~503~^1.068^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~504~^1.856^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~505~^2.005^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~506~^0.618^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~508~^0.937^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~509~^0.893^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~510~^1.140^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~511~^1.453^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~512~^0.917^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~513~^1.291^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~514~^2.109^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~515~^3.444^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~516~^1.019^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~517~^0.912^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~518~^0.942^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10958~^~521~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10958~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10958~^~606~^1.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10958~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~612~^0.037^4^0.006^~1~^~A~^^^1^0.028^0.054^3^0.018^0.056^~4~^~02/01/2008~ -~10958~^~613~^0.680^4^0.106^~1~^~A~^^^1^0.499^0.987^3^0.341^1.018^~4~^~02/01/2008~ -~10958~^~614~^0.348^4^0.047^~1~^~A~^^^1^0.267^0.484^3^0.199^0.498^~4~^~02/01/2008~ -~10958~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~617~^1.359^4^0.226^~1~^~AS~^^^1^0.994^2.004^3^0.638^2.080^~4~^~02/01/2008~ -~10958~^~618~^0.406^4^0.042^~1~^~AS~^^^1^0.316^0.511^3^0.273^0.539^~4~^~02/01/2008~ -~10958~^~619~^0.012^4^0.002^~1~^~AS~^^^1^0.008^0.015^3^0.007^0.017^~4~^~02/01/2008~ -~10958~^~620~^0.057^4^0.005^~1~^~A~^^^1^0.049^0.067^3^0.042^0.073^~4~^~02/01/2008~ -~10958~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~626~^0.096^4^0.017^~1~^~A~^^^1^0.069^0.145^3^0.040^0.151^~4~^~02/01/2008~ -~10958~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~628~^0.018^4^0.003^~1~^~A~^^^1^0.013^0.027^3^0.008^0.028^~4~^~02/01/2008~ -~10958~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2008~ -~10958~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10958~^~645~^1.473^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10958~^~646~^0.488^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10958~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~653~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.007^0.010^~4~^~02/01/2008~ -~10958~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~663~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.018^3^0.012^0.018^~4~^~02/01/2008~ -~10958~^~669~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~672~^0.013^4^0.002^~1~^~A~^^^1^0.009^0.016^3^0.008^0.018^~4~^~02/01/2008~ -~10958~^~674~^1.344^4^0.227^~1~^~A~^^^1^0.979^1.990^3^0.622^2.065^~4~^~02/01/2008~ -~10958~^~675~^0.406^4^0.042^~1~^~A~^^^1^0.316^0.511^3^0.273^0.539^~4~^~02/01/2008~ -~10958~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10958~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10958~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10958~^~851~^0.012^4^0.002^~1~^~A~^^^1^0.008^0.015^3^0.007^0.017^~4~^~02/01/2008~ -~10959~^~312~^0.070^6^0.011^~1~^~A~^^^1^0.027^0.090^5^0.041^0.099^~4~^~02/01/2008~ -~10959~^~315~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.009^0.014^~4~^~02/01/2008~ -~10959~^~404~^0.542^6^0.068^~1~^~A~^^^1^0.292^0.794^5^0.368^0.715^~4~^~02/01/2008~ -~10959~^~405~^0.432^6^0.031^~1~^~A~^^^1^0.350^0.510^5^0.352^0.511^~4~^~02/01/2008~ -~10959~^~406~^10.412^6^0.500^~1~^~A~^^^1^8.550^11.600^5^9.126^11.697^~4~^~02/01/2008~ -~10959~^~410~^0.720^4^0.070^~1~^~A~^^^1^0.590^0.860^3^0.498^0.942^~4~^~02/01/2008~ -~10959~^~415~^0.541^4^0.065^~1~^~A~^^^1^0.427^0.666^3^0.333^0.749^~4~^~02/01/2008~ -~10959~^~501~^0.339^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~502~^1.252^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~503~^1.348^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~504~^2.343^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~505~^2.532^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~506~^0.780^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~507~^0.321^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~508~^1.183^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~509~^1.128^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~510~^1.440^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~511~^1.834^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~512~^1.158^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~513~^1.631^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~514~^2.663^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~515~^4.349^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~516~^1.287^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~517~^1.151^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~518~^1.189^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~10959~^~521~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10959~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~606~^1.325^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~ -~10959~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~610~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 4~^~02/01/2008~ -~10959~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~612~^0.044^4^0.004^~1~^~A~^^^1^0.038^0.057^3^0.030^0.058^~4~^~02/01/2008~ -~10959~^~613~^0.836^4^0.106^~1~^~A~^^^1^0.680^1.144^3^0.500^1.172^~4~^~02/01/2008~ -~10959~^~614~^0.429^4^0.051^~1~^~A~^^^1^0.362^0.581^3^0.266^0.592^~4~^~02/01/2008~ -~10959~^~615~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 4~^~02/01/2008~ -~10959~^~617~^1.660^4^0.265^~1~^~AS~^^^1^1.231^2.433^3^0.815^2.504^~4~^~02/01/2008~ -~10959~^~618~^0.486^4^0.036^~1~^~AS~^^^1^0.394^0.551^3^0.372^0.599^~4~^~02/01/2008~ -~10959~^~619~^0.014^4^0.002^~1~^~AS~^^^1^0.010^0.018^3^0.008^0.019^~4~^~02/01/2008~ -~10959~^~620~^0.063^4^0.004^~1~^~A~^^^1^0.053^0.070^3^0.050^0.076^~4~^~02/01/2008~ -~10959~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~626~^0.120^4^0.019^~1~^~A~^^^1^0.085^0.174^3^0.059^0.181^~4~^~02/01/2008~ -~10959~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~628~^0.022^4^0.003^~1~^~A~^^^1^0.018^0.032^3^0.012^0.033^~4~^~02/01/2008~ -~10959~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~02/01/2008~ -~10959~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10959~^~645~^1.802^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~646~^0.578^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~653~^0.012^4^0.002^~1~^~A~^^^1^0.008^0.017^3^0.005^0.018^~4~^~02/01/2008~ -~10959~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~663~^0.018^4^0.004^~1~^~A~^^^1^0.010^0.029^3^0.006^0.031^~4~^~02/01/2008~ -~10959~^~669~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 4~^~02/01/2008~ -~10959~^~672~^0.015^4^0.001^~1~^~A~^^^1^0.012^0.018^3^0.011^0.020^~4~^~02/01/2008~ -~10959~^~674~^1.641^4^0.262^~1~^~A~^^^1^1.215^2.404^3^0.808^2.475^~4~^~02/01/2008~ -~10959~^~675~^0.483^4^0.034^~1~^~A~^^^1^0.394^0.542^3^0.374^0.593^~4~^~02/01/2008~ -~10959~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~10959~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~02/01/2008~ -~10959~^~851~^0.014^4^0.002^~1~^~A~^^^1^0.010^0.018^3^0.008^0.019^~4~^~02/01/2008~ -~10960~^~312~^0.099^4^0.009^~1~^~A~^^^1^0.073^0.118^3^0.069^0.129^~4~^~03/01/2008~ -~10960~^~315~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.013^3^0.011^0.014^~4~^~03/01/2008~ -~10960~^~404~^0.733^4^0.077^~1~^~A~^^^1^0.541^0.908^3^0.487^0.980^~4~^~03/01/2008~ -~10960~^~405~^0.465^4^0.034^~1~^~A~^^^1^0.380^0.540^3^0.357^0.573^~4~^~03/01/2008~ -~10960~^~406~^6.345^4^0.434^~1~^~A~^^^1^5.260^7.340^3^4.964^7.726^~4~^~03/01/2008~ -~10960~^~410~^0.977^4^0.044^~1~^~A~^^^1^0.890^1.080^3^0.837^1.118^~4~^~03/01/2008~ -~10960~^~415~^0.594^4^0.061^~1~^~A~^^^1^0.489^0.758^3^0.400^0.789^~4~^~03/01/2008~ -~10960~^~501~^0.327^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~502~^1.208^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~503~^1.301^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~504~^2.261^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~505~^2.443^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~506~^0.753^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~507~^0.310^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~508~^1.141^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~509~^1.088^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~510~^1.390^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~511~^1.770^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~512~^1.117^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~513~^1.574^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~514~^2.570^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~515~^4.197^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~516~^1.242^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~517~^1.111^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~518~^1.147^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10960~^~521~^0.096^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10960~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~606~^1.322^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~612~^0.043^4^0.005^~1~^~A~^^^1^0.034^0.055^3^0.028^0.058^~4~^~03/01/2008~ -~10960~^~613~^0.832^4^0.089^~1~^~A~^^^1^0.653^1.029^3^0.549^1.115^~4~^~03/01/2008~ -~10960~^~614~^0.435^4^0.038^~1~^~A~^^^1^0.357^0.508^3^0.315^0.555^~4~^~03/01/2008~ -~10960~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~617~^1.588^4^0.199^~1~^~AS~^^^1^1.156^1.933^3^0.955^2.222^~4~^~03/01/2008~ -~10960~^~618~^0.516^4^0.021^~1~^~AS~^^^1^0.479^0.571^3^0.449^0.584^~4~^~03/01/2008~ -~10960~^~619~^0.014^4^0.001^~1~^~AS~^^^1^0.013^0.018^3^0.010^0.018^~4~^~03/01/2008~ -~10960~^~620~^0.069^4^0.004^~1~^~A~^^^1^0.063^0.078^3^0.057^0.081^~4~^~03/01/2008~ -~10960~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~626~^0.114^4^0.017^~1~^~A~^^^1^0.079^0.152^3^0.061^0.167^~4~^~03/01/2008~ -~10960~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~628~^0.021^4^0.003^~1~^~A~^^^1^0.016^0.027^3^0.013^0.030^~4~^~03/01/2008~ -~10960~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2008~ -~10960~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10960~^~645~^1.724^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~646~^0.616^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~653~^0.012^4^0.002^~1~^~A~^^^1^0.008^0.015^3^0.006^0.017^~4~^~03/01/2008~ -~10960~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~663~^0.019^4^0.003^~1~^~A~^^^1^0.012^0.027^3^0.009^0.029^~4~^~03/01/2008~ -~10960~^~669~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.006^0.011^~1, 4~^~03/01/2008~ -~10960~^~672~^0.016^4^0.001^~1~^~A~^^^1^0.014^0.018^3^0.014^0.019^~4~^~03/01/2008~ -~10960~^~674~^1.569^4^0.199^~1~^~A~^^^1^1.140^1.921^3^0.937^2.201^~4~^~03/01/2008~ -~10960~^~675~^0.514^4^0.019^~1~^~A~^^^1^0.479^0.560^3^0.453^0.574^~4~^~03/01/2008~ -~10960~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10960~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10960~^~851~^0.014^4^0.001^~1~^~A~^^^1^0.013^0.018^3^0.010^0.018^~4~^~03/01/2008~ -~10961~^~312~^0.090^4^0.004^~1~^~A~^^^1^0.078^0.095^3^0.077^0.103^~4~^~03/01/2008~ -~10961~^~315~^0.011^4^0.001^~1~^~A~^^^1^0.011^0.013^3^0.010^0.013^~4~^~03/01/2008~ -~10961~^~404~^0.831^4^0.117^~1~^~A~^^^1^0.605^1.090^3^0.460^1.201^~4~^~03/01/2008~ -~10961~^~405~^0.600^4^0.130^~1~^~A~^^^1^0.360^0.950^3^0.185^1.015^~4~^~03/01/2008~ -~10961~^~406~^5.312^4^0.179^~1~^~A~^^^1^5.070^5.830^3^4.744^5.881^~4~^~03/01/2008~ -~10961~^~410~^0.982^4^0.031^~1~^~A~^^^1^0.910^1.040^3^0.882^1.082^~4~^~03/01/2008~ -~10961~^~415~^0.650^4^0.059^~1~^~A~^^^1^0.532^0.802^3^0.462^0.837^~4~^~03/01/2008~ -~10961~^~501~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~502~^0.952^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~503~^1.025^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~504~^1.782^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~505~^1.926^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~506~^0.594^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~507~^0.244^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~508~^0.900^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~509~^0.858^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~510~^1.095^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~511~^1.395^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~512~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~513~^1.240^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~514~^2.025^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~515~^3.308^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~516~^0.979^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~517~^0.876^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~518~^0.904^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10961~^~521~^0.076^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10961~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~606~^1.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10961~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~612~^0.033^4^0.004^~1~^~A~^^^1^0.021^0.041^3^0.019^0.047^~4~^~03/01/2008~ -~10961~^~613~^0.637^4^0.080^~1~^~A~^^^1^0.409^0.763^3^0.382^0.893^~4~^~03/01/2008~ -~10961~^~614~^0.332^4^0.035^~1~^~A~^^^1^0.232^0.384^3^0.221^0.443^~4~^~03/01/2008~ -~10961~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~617~^1.222^4^0.181^~1~^~AS~^^^1^0.706^1.494^3^0.646^1.798^~4~^~03/01/2008~ -~10961~^~618~^0.393^4^0.028^~1~^~AS~^^^1^0.341^0.446^3^0.304^0.482^~4~^~03/01/2008~ -~10961~^~619~^0.011^4^0.001^~1~^~AS~^^^1^0.008^0.014^3^0.006^0.015^~4~^~03/01/2008~ -~10961~^~620~^0.053^4^0.003^~1~^~A~^^^1^0.046^0.061^3^0.043^0.063^~4~^~03/01/2008~ -~10961~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~626~^0.086^4^0.013^~1~^~A~^^^1^0.048^0.107^3^0.043^0.128^~4~^~03/01/2008~ -~10961~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~628~^0.016^4^0.002^~1~^~A~^^^1^0.010^0.020^3^0.009^0.023^~4~^~03/01/2008~ -~10961~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2008~ -~10961~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10961~^~645~^1.324^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~646~^0.469^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~653~^0.009^4^0.002^~1~^~A~^^^1^0.005^0.012^3^0.004^0.015^~1, 4~^~03/01/2008~ -~10961~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~663~^0.014^4^0.003^~1~^~A~^^^1^0.008^0.021^3^0.003^0.025^~4~^~03/01/2008~ -~10961~^~669~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~672~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.014^3^0.009^0.015^~4~^~03/01/2008~ -~10961~^~674~^1.208^4^0.179^~1~^~A~^^^1^0.698^1.473^3^0.638^1.778^~4~^~03/01/2008~ -~10961~^~675~^0.393^4^0.028^~1~^~A~^^^1^0.341^0.446^3^0.304^0.482^~4~^~03/01/2008~ -~10961~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10961~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10961~^~851~^0.011^4^0.001^~1~^~A~^^^1^0.008^0.014^3^0.006^0.015^~4~^~03/01/2008~ -~10962~^~312~^0.068^6^0.010^~1~^~A~^^^1^0.035^0.100^5^0.042^0.094^~4~^~03/01/2008~ -~10962~^~315~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~4~^~03/01/2008~ -~10962~^~404~^0.603^6^0.055^~1~^~A~^^^1^0.389^0.729^5^0.461^0.744^~4~^~03/01/2008~ -~10962~^~405~^0.510^6^0.055^~1~^~A~^^^1^0.350^0.650^5^0.368^0.652^~4~^~03/01/2008~ -~10962~^~406~^7.685^6^0.512^~1~^~A~^^^1^5.880^8.600^5^6.368^9.002^~4~^~03/01/2008~ -~10962~^~410~^0.802^4^0.106^~1~^~A~^^^1^0.610^1.010^3^0.465^1.140^~4~^~03/01/2008~ -~10962~^~415~^0.491^4^0.062^~1~^~A~^^^1^0.379^0.647^3^0.295^0.688^~4~^~03/01/2008~ -~10962~^~501~^0.370^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~502~^1.368^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~503~^1.473^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~504~^2.560^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~505~^2.767^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~506~^0.853^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~507~^0.351^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~508~^1.292^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~509~^1.232^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~510~^1.573^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~511~^2.004^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~512~^1.265^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~513~^1.782^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~514~^2.910^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~515~^4.752^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~516~^1.406^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~517~^1.258^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~518~^1.299^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10962~^~521~^0.109^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10962~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10962~^~606~^0.791^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10962~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~612~^0.023^4^0.002^~1~^~A~^^^1^0.020^0.027^3^0.018^0.029^~4~^~03/01/2008~ -~10962~^~613~^0.501^4^0.034^~1~^~A~^^^1^0.422^0.567^3^0.392^0.611^~4~^~03/01/2008~ -~10962~^~614~^0.259^4^0.016^~1~^~A~^^^1^0.218^0.291^3^0.210^0.309^~4~^~03/01/2008~ -~10962~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~617~^0.939^4^0.097^~1~^~AS~^^^1^0.672^1.129^3^0.630^1.248^~4~^~03/01/2008~ -~10962~^~618~^0.384^4^0.020^~1~^~AS~^^^1^0.350^0.432^3^0.321^0.448^~4~^~03/01/2008~ -~10962~^~619~^0.009^4^0.001^~1~^~AS~^^^1^0.007^0.012^3^0.006^0.013^~4~^~03/01/2008~ -~10962~^~620~^0.068^4^0.004^~1~^~A~^^^1^0.056^0.077^3^0.054^0.082^~4~^~03/01/2008~ -~10962~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~626~^0.070^4^0.008^~1~^~A~^^^1^0.051^0.084^3^0.045^0.095^~4~^~03/01/2008~ -~10962~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~628~^0.013^4^0.001^~1~^~A~^^^1^0.011^0.014^3^0.011^0.016^~4~^~03/01/2008~ -~10962~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2008~ -~10962~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10962~^~645~^1.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10962~^~646~^0.474^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10962~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~653~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.011^3^0.003^0.012^~1, 4~^~03/01/2008~ -~10962~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~663~^0.012^4^0.002^~1~^~A~^^^1^0.008^0.017^3^0.005^0.020^~4~^~03/01/2008~ -~10962~^~669~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~672~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.013^3^0.010^0.013^~4~^~03/01/2008~ -~10962~^~674~^0.926^4^0.096^~1~^~A~^^^1^0.663^1.113^3^0.621^1.232^~4~^~03/01/2008~ -~10962~^~675~^0.384^4^0.020^~1~^~A~^^^1^0.350^0.432^3^0.321^0.448^~4~^~03/01/2008~ -~10962~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10962~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~10962~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~04/01/2008~ -~10962~^~851~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.012^3^0.006^0.013^~4~^~03/01/2008~ -~10963~^~312~^0.067^6^0.008^~1~^~A~^^^1^0.043^0.099^5^0.048^0.087^~4~^~03/01/2008~ -~10963~^~315~^0.009^6^0.002^~1~^~A~^^^1^0.006^0.017^5^0.004^0.013^~1, 4~^~03/01/2008~ -~10963~^~404~^0.654^6^0.057^~1~^~A~^^^1^0.454^0.768^5^0.507^0.801^~4~^~03/01/2008~ -~10963~^~405~^0.357^6^0.049^~1~^~A~^^^1^0.250^0.590^5^0.230^0.483^~4~^~03/01/2008~ -~10963~^~406~^7.183^6^0.762^~1~^~A~^^^1^4.400^8.870^5^5.225^9.141^~4~^~03/01/2008~ -~10963~^~410~^0.900^4^0.171^~1~^~A~^^^1^0.630^1.360^3^0.356^1.444^~4~^~03/01/2008~ -~10963~^~415~^0.689^4^0.048^~1~^~A~^^^1^0.578^0.812^3^0.537^0.842^~4~^~03/01/2008~ -~10963~^~501~^0.272^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~502~^1.006^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~503~^1.084^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~504~^1.883^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~505~^2.035^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~506~^0.627^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~507~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~508~^0.951^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~509~^0.907^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~510~^1.157^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~511~^1.475^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~512~^0.931^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~513~^1.311^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~514~^2.141^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~515~^3.496^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~516~^1.034^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~517~^0.925^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~518~^0.956^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~10963~^~521~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~10963~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~606~^0.524^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~10963~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~612~^0.016^4^0.002^~1~^~A~^^^1^0.012^0.022^3^0.009^0.023^~4~^~03/01/2008~ -~10963~^~613~^0.332^4^0.041^~1~^~A~^^^1^0.239^0.439^3^0.200^0.464^~4~^~03/01/2008~ -~10963~^~614~^0.171^4^0.019^~1~^~A~^^^1^0.121^0.211^3^0.111^0.230^~4~^~03/01/2008~ -~10963~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~617~^0.632^4^0.094^~1~^~AS~^^^1^0.386^0.838^3^0.334^0.930^~4~^~03/01/2008~ -~10963~^~618~^0.257^4^0.010^~1~^~AS~^^^1^0.231^0.281^3^0.224^0.291^~4~^~03/01/2008~ -~10963~^~619~^0.006^4^0.001^~1~^~AS~^^^1^0.005^0.008^3^0.004^0.009^~4~^~03/01/2008~ -~10963~^~620~^0.052^4^0.005^~1~^~A~^^^1^0.042^0.061^3^0.037^0.067^~4~^~03/01/2008~ -~10963~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~626~^0.046^4^0.008^~1~^~A~^^^1^0.030^0.067^3^0.021^0.071^~4~^~03/01/2008~ -~10963~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~628~^0.009^4^0.001^~1~^~A~^^^1^0.005^0.012^3^0.004^0.014^~1, 4~^~03/01/2008~ -~10963~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2008~ -~10963~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~10963~^~645~^0.687^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~646~^0.323^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~653~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^3^0.005^0.005^~1, 4~^~03/01/2008~ -~10963~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~663~^0.009^4^0.002^~1~^~A~^^^1^0.005^0.013^3^0.002^0.016^~1, 4~^~03/01/2008~ -~10963~^~669~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~672~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.005^0.009^~1, 4~^~03/01/2008~ -~10963~^~674~^0.623^4^0.093^~1~^~A~^^^1^0.381^0.833^3^0.326^0.921^~4~^~03/01/2008~ -~10963~^~675~^0.257^4^0.010^~1~^~A~^^^1^0.231^0.281^3^0.224^0.291^~4~^~03/01/2008~ -~10963~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~10963~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2008~ -~10963~^~851~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.004^0.009^~1, 4~^~03/01/2008~ -~10972~^~312~^0.032^8^0.003^~1~^~AR~^^^^0.023^0.040^^^^^~05/01/2009~ -~10972~^~315~^0.010^8^0.000^~1~^~AR~^^^^0.010^0.011^^^^^~05/01/2009~ -~10972~^~404~^0.332^4^0.053^~1~^~AR~^^^^0.172^0.520^^^^^~05/01/2009~ -~10972~^~405~^0.338^4^0.018^~1~^~AR~^^^^0.270^0.420^^^^^~05/01/2009~ -~10972~^~406~^6.416^4^0.688^~1~^~AR~^^^^4.840^7.290^^^^^~05/01/2009~ -~10972~^~410~^0.639^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~415~^0.551^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~501~^0.232^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~502~^0.763^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~503~^0.822^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~504~^1.435^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~505~^1.547^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~506~^0.480^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~507~^0.208^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~508~^0.766^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~509~^0.762^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~510~^0.905^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~511~^1.173^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~512~^0.711^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~513~^1.060^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~514~^1.620^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~515~^2.658^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~516~^1.005^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~517~^0.883^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~518~^0.722^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~521~^0.168^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~605~^0.124^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10972~^~606~^4.930^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10972~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10972~^~609~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~610~^0.012^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~611~^0.011^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~612~^0.186^8^0.202^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~613~^3.082^8^0.035^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~614~^1.555^8^0.024^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~615~^0.028^8^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~617~^6.203^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10972~^~618~^1.841^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10972~^~619~^0.089^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10972~^~620~^0.078^8^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~621~^0.007^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~624~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~625~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~626~^0.346^8^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~628~^0.132^8^0.025^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~629~^0.005^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10972~^~631~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~645~^6.680^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10972~^~646~^2.050^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10972~^~652~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~653~^0.048^8^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~654~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~663~^0.095^8^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~669~^0.029^8^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~672~^0.086^8^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~674~^6.107^8^0.077^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~675~^1.812^8^0.099^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~676~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~685~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~687~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~689~^0.015^8^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10972~^~693~^0.095^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10972~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~10972~^~697~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10972~^~851~^0.089^8^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~312~^0.033^7^0.003^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~315~^0.010^7^0.000^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~404~^0.414^3^0.066^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~405~^0.368^3^0.028^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~406~^7.914^3^0.774^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~410~^0.646^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~415~^0.668^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~501~^0.272^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~502~^0.895^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~503~^0.964^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~504~^1.683^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~505~^1.815^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~506~^0.564^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~508~^0.898^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~510~^1.061^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~511~^1.376^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~512~^0.834^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~513~^1.243^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~514~^1.900^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~515~^3.118^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~516~^1.179^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~517~^1.035^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~518~^0.846^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~521~^0.197^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10973~^~606~^1.420^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10973~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10973~^~609~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~610~^0.006^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~611~^0.003^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~612~^0.052^7^0.049^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~613~^0.883^7^0.041^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~614~^0.454^7^0.020^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~615~^0.004^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~617~^1.756^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10973~^~618~^0.547^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10973~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10973~^~620~^0.068^7^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~621~^0.007^1^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~624~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~625~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~626~^0.114^7^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~628~^0.020^7^0.028^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10973~^~631~^0.007^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~645~^1.890^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10973~^~646~^0.660^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10973~^~652~^0.004^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~653~^0.013^7^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~654~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~663~^0.019^7^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~669~^0.013^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~672~^0.022^7^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~674~^1.736^7^0.086^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~675~^0.534^7^0.053^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10973~^~676~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~685~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~687~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~689~^0.002^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10973~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10973~^~697~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10973~^~851~^0.027^7^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10974~^~312~^0.038^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~315~^0.013^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~404~^0.341^4^0.067^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~405~^0.488^4^0.073^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~406~^7.522^4^0.897^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~410~^0.984^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~415~^0.508^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~501~^0.295^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~502~^0.968^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~503~^1.043^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~504~^1.821^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~505~^1.964^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~506~^0.610^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~507~^0.264^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~508~^0.972^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~509~^0.967^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~510~^1.149^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~511~^1.489^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~512~^0.902^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~513~^1.346^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~514~^2.056^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~515~^3.374^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~516~^1.276^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~517~^1.120^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~518~^0.916^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~521~^0.214^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~605~^0.229^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10974~^~606~^11.345^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10974~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10974~^~609~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~610~^0.025^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~611~^0.024^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~612~^0.423^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~613~^7.138^8^0.218^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~614~^3.544^8^0.111^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~615~^0.067^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~617~^14.256^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~618~^3.769^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~619~^0.210^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~620~^0.117^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~621~^0.007^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~624~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~625~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~626~^0.789^8^0.020^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~628~^0.311^8^0.029^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~629~^0.007^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10974~^~631~^0.026^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~645~^29.613^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10974~^~646~^8.327^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~10974~^~652~^0.018^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~653~^0.106^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~654~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~663~^0.180^8^0.025^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~669~^0.049^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~672~^0.180^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~674~^14.076^8^0.460^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~675~^3.720^8^0.333^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~676~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~685~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~687~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~689~^0.034^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~693~^0.180^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10974~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10974~^~697~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10974~^~851~^0.210^8^0.017^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~312~^0.040^8^0.004^~1~^~AR~^^^^0.028^0.049^^^^^~05/01/2009~ -~10975~^~315~^0.013^8^0.000^~1~^~AR~^^^^0.012^0.018^^^^^~05/01/2009~ -~10975~^~404~^0.421^4^0.060^~1~^~AR~^^^^0.231^0.640^^^^^~05/01/2009~ -~10975~^~405~^0.486^4^0.071^~1~^~AR~^^^^0.300^0.660^^^^^~05/01/2009~ -~10975~^~406~^9.286^4^0.789^~1~^~AR~^^^^6.570^10.800^^^^^~05/01/2009~ -~10975~^~410~^0.915^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~415~^0.613^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~501~^0.344^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~502~^1.132^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~503~^1.220^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~504~^2.129^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~505~^2.296^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~506~^0.713^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~507~^0.308^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~508~^1.136^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~509~^1.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~510~^1.343^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~511~^1.741^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~512~^1.055^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~513~^1.573^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~514~^2.404^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~515~^3.944^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~516~^1.492^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~517~^1.310^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~518~^1.071^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~521~^0.250^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~10975~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~10975~^~606~^6.631^8^0.233^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10975~^~609~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~610~^0.017^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~611~^0.016^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~612~^0.243^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~613~^4.150^8^0.188^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~614~^2.072^8^0.076^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~615~^0.040^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~617~^8.292^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~618~^2.214^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~619~^0.118^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~620~^0.093^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~621~^0.006^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~624~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~625~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~626~^0.467^8^0.012^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~628~^0.177^8^0.026^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~629~^0.005^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10975~^~631~^0.018^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~645~^9.021^8^0.524^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~646~^2.549^8^0.215^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~652~^0.012^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~653~^0.062^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~654~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~663~^0.118^8^0.022^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~669~^0.032^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~672~^0.104^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~674~^8.174^8^0.320^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~675~^2.182^8^0.198^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~676~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~685~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~687~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~689~^0.019^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~693~^0.118^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10975~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10975~^~697~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10975~^~851~^0.118^8^0.013^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~312~^0.041^7^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~315~^0.013^7^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~404~^0.500^3^0.071^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~405~^0.484^3^0.074^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~406~^11.050^3^0.966^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~410~^0.846^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~415~^0.717^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~501~^0.394^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~502~^1.296^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~503~^1.396^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~504~^2.437^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~505~^2.628^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~506~^0.816^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~507~^0.353^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~508~^1.300^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~509~^1.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~510~^1.537^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~511~^1.992^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~512~^1.207^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~513~^1.800^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~514~^2.751^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~515~^4.514^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~516~^1.707^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~517~^1.499^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~518~^1.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~521~^0.286^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~605~^0.070^0^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10976~^~606~^1.951^8^0.235^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10976~^~609~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~610~^0.009^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~611~^0.008^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~612~^0.063^7^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~613~^1.162^7^0.196^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~614~^0.601^7^0.072^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~615~^0.013^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~617~^2.327^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~618~^0.659^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~620~^0.070^7^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~621~^0.004^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~624~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~625~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~626~^0.145^7^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~628~^0.043^7^0.029^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10976~^~631~^0.010^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~645~^2.714^8^0.584^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~646~^0.776^8^0.154^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~652~^0.013^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~653~^0.017^7^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~654~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~663~^0.056^7^0.025^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~669~^0.014^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~672~^0.027^7^0.006^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~674~^2.271^7^0.308^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~675~^0.645^7^0.135^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~676~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~685~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~687~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~689~^0.004^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10976~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10976~^~697~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10976~^~851~^0.026^7^0.014^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~312~^0.038^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~315~^0.013^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~404~^0.271^4^0.061^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~405~^0.488^4^0.030^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~406~^6.852^4^0.924^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~410~^0.815^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~415~^0.443^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~501~^0.292^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~502~^0.958^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~503~^1.033^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~504~^1.802^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~505~^1.943^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~506~^0.603^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~508~^0.962^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~509~^0.957^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~510~^1.137^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~511~^1.473^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~512~^0.893^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~513~^1.332^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~514~^2.035^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~515~^3.339^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~516~^1.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~517~^1.109^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~518~^0.906^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~521~^0.211^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~605~^0.229^8^0.028^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~606~^10.804^8^0.252^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10977~^~609~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~610~^0.024^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~611~^0.023^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~612~^0.401^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~613~^6.749^8^0.157^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~614~^3.397^8^0.084^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~615~^0.061^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~617~^13.510^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~618~^3.750^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~619~^0.202^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~620~^0.122^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~621~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10977~^~624~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~625~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~626~^0.692^8^0.013^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~628~^0.275^8^0.038^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~629~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10977~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10977~^~631~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10977~^~645~^14.356^8^0.477^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~646~^4.222^8^0.201^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~652~^0.017^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~653~^0.097^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~654~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~663~^0.160^8^0.023^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~669~^0.040^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~672~^0.172^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~674~^13.350^8^0.390^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~675~^3.711^8^0.202^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~676~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~685~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~687~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~689~^0.033^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~693~^0.160^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10977~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10977~^~697~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10977~^~851~^0.202^8^0.024^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~312~^0.038^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~315~^0.013^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~404~^0.352^4^0.051^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~405~^0.462^4^0.025^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~406~^8.573^4^0.858^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~410~^0.830^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~415~^0.535^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~501~^0.350^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~502~^1.151^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~503~^1.241^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~504~^2.165^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~505~^2.335^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~506~^0.725^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~507~^0.313^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~508~^1.155^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~509~^1.149^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~510~^1.366^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~511~^1.770^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~512~^1.072^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~513~^1.600^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~514~^2.444^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~515~^4.011^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~516~^1.517^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~517~^1.332^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~518~^1.089^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~521~^0.254^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~605~^0.192^8^0.029^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~606~^7.453^8^0.219^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10978~^~609~^0.000^9^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~610~^0.016^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~611~^0.015^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~612~^0.272^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~613~^4.646^9^0.136^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~614~^2.337^9^0.069^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~615~^0.036^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~617~^9.428^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~618~^2.606^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~619~^0.144^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~620~^0.111^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~621~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10978~^~624~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~625~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~626~^0.519^8^0.025^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~628~^0.193^8^0.037^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~629~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10978~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10978~^~631~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10978~^~645~^10.032^8^0.437^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~646~^3.061^8^0.114^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~652~^0.012^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~653~^0.081^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~654~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~663~^0.132^8^0.023^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~669~^0.037^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~672~^0.125^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~674~^9.295^8^0.372^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~675~^2.569^8^0.110^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~676~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~685~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~687~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~689~^0.024^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~693~^0.132^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10978~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10978~^~697~^0.000^8^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10978~^~851~^0.144^8^0.025^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~312~^0.039^7^0.003^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~315~^0.013^7^0.001^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~404~^0.433^3^0.066^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~405~^0.435^3^0.033^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~406~^10.293^3^0.971^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~410~^0.846^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~415~^0.627^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~501~^0.409^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~502~^1.344^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~503~^1.448^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~504~^2.528^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~505~^2.726^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~506~^0.846^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~507~^0.366^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~508~^1.349^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~509~^1.342^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~510~^1.594^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~511~^2.067^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~512~^1.252^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~513~^1.868^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~514~^2.854^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~515~^4.683^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~516~^1.771^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~517~^1.555^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~518~^1.271^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~521~^0.297^0^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~605~^0.068^0^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~606~^1.860^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10979~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~10979~^~609~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~610~^0.013^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~611~^0.010^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~612~^0.064^7^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~613~^1.137^7^0.082^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~614~^0.576^7^0.045^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~615~^0.038^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~617~^2.156^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10979~^~618~^0.690^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10979~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~10979~^~620~^0.083^7^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~621~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10979~^~624~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~625~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~626~^0.144^7^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~628~^0.060^7^0.039^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~629~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~ -~10979~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~10979~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~10979~^~645~^2.360^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10979~^~646~^0.810^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10979~^~652~^0.006^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~653~^0.016^7^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~654~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~663~^0.046^7^0.023^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~669~^0.022^7^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~672~^0.029^7^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~674~^2.109^7^0.357^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~675~^0.667^7^0.070^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10979~^~676~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~685~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~687~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~689~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~693~^0.046^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~10979~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~10979~^~697~^0.000^7^^~1~^~AR~^^^^^^^^^^~05/01/2009~ -~10979~^~851~^0.025^7^0.024^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~10980~^~312~^0.091^12^0.003^~1~^~A~^^^1^0.067^0.101^11^0.085^0.097^~2, 3~^~04/01/2010~ -~10980~^~315~^0.009^12^0.000^~1~^~A~^^^1^0.008^0.012^11^0.008^0.010^~2, 3~^~04/01/2010~ -~10980~^~404~^0.496^12^0.027^~1~^~A~^^^1^0.333^0.657^11^0.436^0.555^~2, 3~^~04/01/2010~ -~10980~^~405~^0.331^12^0.015^~1~^~A~^^^1^0.270^0.410^11^0.299^0.363^~2, 3~^~04/01/2010~ -~10980~^~406~^7.247^12^0.251^~1~^~A~^^^1^5.570^8.420^11^6.694^7.799^~2, 3~^~04/01/2010~ -~10980~^~410~^0.855^4^0.129^~1~^~A~^^^1^0.601^1.170^3^0.444^1.265^~2, 3~^~04/01/2010~ -~10980~^~415~^0.465^4^0.009^~1~^~A~^^^1^0.448^0.486^3^0.436^0.493^~2, 3~^~04/01/2010~ -~10980~^~501~^0.248^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~502~^0.917^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~503~^0.987^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~505~^1.854^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~506~^0.571^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~508~^0.866^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~509~^0.826^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~510~^1.055^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~511~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~512~^0.848^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~513~^1.194^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~514~^1.950^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~515~^3.185^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~516~^0.942^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~517~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~518~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~10980~^~521~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2015~ -~10980~^~605~^0.083^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~606~^3.477^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~ -~10980~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~610~^0.011^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.010^0.012^~2, 3~^~04/01/2010~ -~10980~^~611~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.008^0.010^~2, 3~^~04/01/2010~ -~10980~^~612~^0.127^6^0.006^~1~^~A~^^^1^0.106^0.147^5^0.113^0.142^~2, 3~^~04/01/2010~ -~10980~^~613~^2.145^6^0.092^~1~^~A~^^^1^1.840^2.460^5^1.909^2.381^~2, 3~^~04/01/2010~ -~10980~^~614~^1.133^6^0.055^~1~^~A~^^^1^0.969^1.330^5^0.992^1.275^~2, 3~^~04/01/2010~ -~10980~^~615~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.019^5^0.012^0.017^~2, 3~^~04/01/2010~ -~10980~^~617~^3.987^6^0.201^~1~^~AS~^^^1^3.362^4.714^5^3.471^4.503^~2, 3~^~04/01/2010~ -~10980~^~618~^1.336^6^0.091^~1~^~AS~^^^1^1.033^1.565^5^1.103^1.570^~2, 3~^~04/01/2010~ -~10980~^~619~^0.060^6^0.006^~1~^~AS~^^^1^0.037^0.075^5^0.045^0.075^~2, 3~^~04/01/2010~ -~10980~^~620~^0.069^6^0.002^~1~^~A~^^^1^0.065^0.075^5^0.065^0.073^~2, 3~^~04/01/2010~ -~10980~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~626~^0.229^6^0.013^~1~^~A~^^^1^0.180^0.259^5^0.195^0.263^~2, 3~^~04/01/2010~ -~10980~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~628~^0.062^6^0.003^~1~^~A~^^^1^0.052^0.073^5^0.054^0.070^~2, 3~^~04/01/2010~ -~10980~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2010~ -~10980~^~631~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.012^5^0.009^0.012^~2, 3~^~04/01/2010~ -~10980~^~645~^4.278^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~646~^1.532^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.006^~1, 2, 3~^~04/01/2010~ -~10980~^~653~^0.031^6^0.002^~1~^~A~^^^1^0.026^0.040^5^0.026^0.036^~2, 3~^~04/01/2010~ -~10980~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~663~^0.061^6^0.012^~1~^~A~^^^1^0.033^0.114^5^0.030^0.091^~2, 3~^~04/01/2010~ -~10980~^~665~^0.016^6^0.003^~1~^~A~^^^1^0.005^0.025^5^0.009^0.024^~1, 2, 3~^~04/01/2010~ -~10980~^~672~^0.051^6^0.002^~1~^~A~^^^1^0.043^0.057^5^0.045^0.057^~2, 3~^~04/01/2010~ -~10980~^~674~^3.927^6^0.194^~1~^~A~^^^1^3.320^4.600^5^3.428^4.426^~2, 3~^~04/01/2010~ -~10980~^~675~^1.320^6^0.088^~1~^~A~^^^1^1.020^1.540^5^1.093^1.547^~2, 3~^~04/01/2010~ -~10980~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~689~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~1, 2, 3~^~04/01/2010~ -~10980~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~10980~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~10980~^~851~^0.054^6^0.005^~1~^~A~^^^1^0.037^0.068^5^0.041^0.066^~2, 3~^~04/01/2010~ -~10980~^~856~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.010^~1, 2, 3~^~04/01/2010~ -~10981~^~312~^0.107^12^0.002^~1~^~A~^^^1^0.089^0.114^11^0.102^0.111^~2, 3~^~05/01/2010~ -~10981~^~315~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.014^11^0.010^0.012^~2, 3~^~05/01/2010~ -~10981~^~404~^0.479^12^0.026^~1~^~A~^^^1^0.319^0.575^11^0.421^0.537^~2, 3~^~05/01/2010~ -~10981~^~405~^0.348^12^0.017^~1~^~A~^^^1^0.260^0.480^11^0.312^0.385^~2, 3~^~05/01/2010~ -~10981~^~406~^7.883^12^0.208^~1~^~A~^^^1^6.940^9.290^11^7.425^8.342^~2, 3~^~05/01/2010~ -~10981~^~410~^1.314^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10981~^~415~^0.433^0^^~4~^~BFPN~^~10035~^^^^^^^^^~05/01/2010~ -~10981~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~502~^1.062^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~503~^1.143^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~504~^1.987^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~505~^2.147^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~506~^0.662^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~507~^0.272^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~508~^1.003^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~509~^0.957^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~510~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~511~^1.556^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~512~^0.982^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~513~^1.383^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~514~^2.259^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~515~^3.689^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~516~^1.091^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~517~^0.976^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~518~^1.008^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~10981~^~521~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2015~ -~10981~^~605~^0.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~606~^6.221^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~10981~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~610~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.025^5^0.016^0.023^~2, 3~^~05/01/2010~ -~10981~^~611~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.018^5^0.012^0.017^~2, 3~^~05/01/2010~ -~10981~^~612~^0.225^6^0.014^~1~^~A~^^^1^0.193^0.273^5^0.190^0.261^~2, 3~^~05/01/2010~ -~10981~^~613~^3.822^6^0.196^~1~^~A~^^^1^3.340^4.550^5^3.318^4.325^~2, 3~^~05/01/2010~ -~10981~^~614~^2.043^6^0.097^~1~^~A~^^^1^1.840^2.400^5^1.794^2.293^~2, 3~^~05/01/2010~ -~10981~^~615~^0.027^6^0.002^~1~^~A~^^^1^0.021^0.033^5^0.022^0.032^~2, 3~^~05/01/2010~ -~10981~^~617~^7.149^6^0.361^~1~^~AS~^^^1^6.307^8.271^5^6.221^8.078^~2, 3~^~05/01/2010~ -~10981~^~618~^2.471^6^0.190^~1~^~AS~^^^1^1.673^3.000^5^1.984^2.958^~2, 3~^~05/01/2010~ -~10981~^~619~^0.116^6^0.011^~1~^~AS~^^^1^0.083^0.147^5^0.089^0.144^~2, 3~^~05/01/2010~ -~10981~^~620~^0.078^6^0.002^~1~^~A~^^^1^0.073^0.084^5^0.073^0.083^~2, 3~^~05/01/2010~ -~10981~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~626~^0.380^6^0.022^~1~^~A~^^^1^0.337^0.471^5^0.323^0.437^~2, 3~^~05/01/2010~ -~10981~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~628~^0.117^6^0.006^~1~^~A~^^^1^0.102^0.140^5^0.102^0.132^~2, 3~^~05/01/2010~ -~10981~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2010~ -~10981~^~631~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.016^5^0.012^0.016^~2, 3~^~05/01/2010~ -~10981~^~645~^7.646^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~646~^2.788^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~652~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.008^0.012^~2, 3~^~05/01/2010~ -~10981~^~653~^0.059^6^0.003^~1~^~A~^^^1^0.051^0.069^5^0.051^0.067^~2, 3~^~05/01/2010~ -~10981~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~663~^0.116^6^0.019^~1~^~A~^^^1^0.065^0.191^5^0.067^0.164^~2, 3~^~05/01/2010~ -~10981~^~665~^0.031^6^0.004^~1~^~A~^^^1^0.017^0.045^5^0.020^0.043^~2, 3~^~05/01/2010~ -~10981~^~672~^0.097^6^0.007^~1~^~A~^^^1^0.069^0.119^5^0.079^0.114^~2, 3~^~05/01/2010~ -~10981~^~674~^7.033^6^0.347^~1~^~A~^^^1^6.220^8.080^5^6.142^7.925^~2, 3~^~05/01/2010~ -~10981~^~675~^2.440^6^0.187^~1~^~A~^^^1^1.650^2.970^5^1.959^2.921^~2, 3~^~05/01/2010~ -~10981~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~689~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.009^0.015^~2, 3~^~05/01/2010~ -~10981~^~693~^0.116^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~10981~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~10981~^~851~^0.104^6^0.010^~1~^~A~^^^1^0.073^0.128^5^0.078^0.130^~2, 3~^~05/01/2010~ -~10981~^~856~^0.012^6^0.002^~1~^~A~^^^1^0.008^0.019^5^0.008^0.016^~2, 3~^~05/01/2010~ -~10982~^~312~^0.052^12^0.002^~1~^~A~^^^1^0.041^0.068^11^0.047^0.057^~2, 3~^~01/01/2011~ -~10982~^~315~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.011^11^0.010^0.010^~2, 3~^~01/01/2011~ -~10982~^~404~^0.631^12^0.028^~1~^~A~^^^1^0.510^0.810^11^0.569^0.692^~2, 3~^~01/01/2011~ -~10982~^~405~^0.237^12^0.014^~1~^~A~^^^1^0.170^0.350^11^0.206^0.268^~2, 3~^~01/01/2011~ -~10982~^~406~^6.848^12^0.347^~1~^~A~^^^1^4.920^9.140^11^6.083^7.612^~2, 3~^~01/01/2011~ -~10982~^~410~^0.860^4^0.024^~1~^~A~^^^1^0.830^0.930^3^0.784^0.936^~2, 3~^~01/01/2011~ -~10982~^~415~^0.575^4^0.021^~1~^~A~^^^1^0.519^0.608^3^0.508^0.642^~2, 3~^~01/01/2011~ -~10982~^~501~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~502~^0.939^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~503~^1.011^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~504~^1.758^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~505~^1.899^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~506~^0.585^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~507~^0.241^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~508~^0.887^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~509~^0.846^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~510~^1.080^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~511~^1.376^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~512~^0.869^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~513~^1.223^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~514~^1.998^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~515~^3.262^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~516~^0.965^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~517~^0.863^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~518~^0.892^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~521~^0.075^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10982~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~606~^1.384^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10982~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~612~^0.050^6^0.004^~1~^~A~^^^1^0.032^0.061^5^0.040^0.060^~2, 3~^~01/01/2011~ -~10982~^~613~^0.857^6^0.068^~1~^~A~^^^1^0.549^1.040^5^0.683^1.031^~2, 3~^~01/01/2011~ -~10982~^~614~^0.468^6^0.041^~1~^~A~^^^1^0.275^0.548^5^0.364^0.572^~2, 3~^~01/01/2011~ -~10982~^~615~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.007^~1, 2, 3~^~01/01/2011~ -~10982~^~617~^1.513^6^0.116^~1~^~AS~^^^1^0.992^1.855^5^1.213^1.812^~2, 3~^~01/01/2011~ -~10982~^~618~^0.434^6^0.038^~1~^~AS~^^^1^0.306^0.536^5^0.336^0.531^~2, 3~^~01/01/2011~ -~10982~^~619~^0.016^6^0.002^~1~^~AS~^^^1^0.012^0.023^5^0.011^0.021^~2, 3~^~01/01/2011~ -~10982~^~620~^0.054^6^0.002^~1~^~A~^^^1^0.046^0.063^5^0.048^0.060^~2, 3~^~01/01/2011~ -~10982~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~626~^0.099^6^0.008^~1~^~A~^^^1^0.072^0.123^5^0.079^0.119^~2, 3~^~01/01/2011~ -~10982~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~628~^0.023^6^0.002^~1~^~A~^^^1^0.014^0.029^5^0.018^0.029^~2, 3~^~01/01/2011~ -~10982~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10982~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~645~^1.635^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~646~^0.520^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~653~^0.006^6^0.002^~1~^~A~^^^1^0.000^0.013^5^0.001^0.012^~1, 2, 3~^~01/01/2011~ -~10982~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~663~^0.039^6^0.007^~1~^~A~^^^1^0.013^0.056^5^0.023^0.056^~2, 3~^~01/01/2011~ -~10982~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~672~^0.016^6^0.002^~1~^~A~^^^1^0.010^0.021^5^0.011^0.020^~2, 3~^~01/01/2011~ -~10982~^~674~^1.473^6^0.114^~1~^~A~^^^1^0.960^1.800^5^1.181^1.766^~2, 3~^~01/01/2011~ -~10982~^~675~^0.434^6^0.038^~1~^~A~^^^1^0.306^0.536^5^0.336^0.531^~2, 3~^~01/01/2011~ -~10982~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10982~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10982~^~851~^0.016^6^0.002^~1~^~A~^^^1^0.012^0.023^5^0.011^0.021^~2, 3~^~01/01/2011~ -~10982~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~312~^0.078^12^0.003^~1~^~A~^^^1^0.063^0.093^11^0.071^0.085^~2, 3~^~01/01/2011~ -~10983~^~315~^0.016^12^0.000^~1~^~A~^^^1^0.014^0.018^11^0.015^0.017^~2, 3~^~01/01/2011~ -~10983~^~404~^0.622^12^0.035^~1~^~A~^^^1^0.400^0.750^11^0.545^0.698^~2, 3~^~01/01/2011~ -~10983~^~405~^0.273^12^0.013^~1~^~A~^^^1^0.220^0.350^11^0.245^0.302^~2, 3~^~01/01/2011~ -~10983~^~406~^7.680^12^0.519^~1~^~A~^^^1^4.860^12.000^11^6.538^8.822^~2, 3~^~01/01/2011~ -~10983~^~410~^1.501^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~415~^0.494^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~ -~10983~^~501~^0.328^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~502~^1.213^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~503~^1.306^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~504~^2.270^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~505~^2.453^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~506~^0.756^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~507~^0.311^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~509~^1.093^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~510~^1.395^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~511~^1.777^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~512~^1.122^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~513~^1.580^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~514~^2.580^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~515~^4.214^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~516~^1.247^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~517~^1.115^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~518~^1.152^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~521~^0.096^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10983~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~606~^2.560^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10983~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~610~^0.006^6^0.002^~1~^~A~^^^1^0.000^0.011^5^0.001^0.011^~1, 2, 3~^~01/01/2011~ -~10983~^~611~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.008^5^-0.001^0.008^~1, 2, 3~^~01/01/2011~ -~10983~^~612~^0.090^6^0.009^~1~^~A~^^^1^0.050^0.110^5^0.067^0.113^~2, 3~^~01/01/2011~ -~10983~^~613~^1.583^6^0.155^~1~^~A~^^^1^0.888^1.920^5^1.185^1.981^~2, 3~^~01/01/2011~ -~10983~^~614~^0.846^6^0.091^~1~^~A~^^^1^0.456^1.100^5^0.614^1.079^~2, 3~^~01/01/2011~ -~10983~^~615~^0.013^6^0.001^~1~^~A~^^^1^0.008^0.015^5^0.010^0.015^~2, 3~^~01/01/2011~ -~10983~^~617~^2.850^6^0.280^~1~^~AS~^^^1^1.597^3.389^5^2.129^3.571^~2, 3~^~01/01/2011~ -~10983~^~618~^0.913^6^0.107^~1~^~AS~^^^1^0.415^1.141^5^0.639^1.187^~2, 3~^~01/01/2011~ -~10983~^~619~^0.035^6^0.004^~1~^~AS~^^^1^0.015^0.045^5^0.023^0.046^~2, 3~^~01/01/2011~ -~10983~^~620~^0.058^6^0.004^~1~^~A~^^^1^0.044^0.069^5^0.049^0.067^~2, 3~^~01/01/2011~ -~10983~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~624~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~626~^0.165^6^0.013^~1~^~A~^^^1^0.113^0.197^5^0.132^0.197^~2, 3~^~01/01/2011~ -~10983~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~628~^0.049^6^0.005^~1~^~A~^^^1^0.025^0.057^5^0.036^0.061^~2, 3~^~01/01/2011~ -~10983~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2011~ -~10983~^~631~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.007^5^-0.001^0.006^~1, 2, 3~^~01/01/2011~ -~10983~^~645~^3.063^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~646~^1.046^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~653~^0.019^6^0.002^~1~^~A~^^^1^0.012^0.023^5^0.015^0.023^~2, 3~^~01/01/2011~ -~10983~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~663~^0.050^6^0.012^~1~^~A~^^^1^0.027^0.099^5^0.018^0.082^~2, 3~^~01/01/2011~ -~10983~^~665~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.011^5^-0.003^0.007^~1, 2, 3~^~01/01/2011~ -~10983~^~672~^0.038^6^0.005^~1~^~A~^^^1^0.015^0.046^5^0.025^0.050^~2, 3~^~01/01/2011~ -~10983~^~674~^2.800^6^0.274^~1~^~A~^^^1^1.570^3.350^5^2.096^3.504^~2, 3~^~01/01/2011~ -~10983~^~675~^0.911^6^0.106^~1~^~A~^^^1^0.415^1.130^5^0.639^1.183^~2, 3~^~01/01/2011~ -~10983~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~693~^0.050^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~ -~10983~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10983~^~851~^0.035^6^0.004^~1~^~A~^^^1^0.015^0.045^5^0.023^0.046^~2, 3~^~01/01/2011~ -~10983~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2011~ -~10984~^~312~^0.068^12^0.003^~1~^~A~^^^1^0.054^0.083^11^0.063^0.074^~2, 3~^~01/01/2011~ -~10984~^~315~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.011^11^0.009^0.010^~2, 3~^~01/01/2011~ -~10984~^~404~^0.671^12^0.056^~1~^~A~^^^1^0.490^1.220^11^0.547^0.795^~2, 3~^~01/01/2011~ -~10984~^~405~^0.256^12^0.013^~1~^~A~^^^1^0.200^0.360^11^0.227^0.285^~2, 3~^~01/01/2011~ -~10984~^~406~^8.063^12^0.479^~1~^~A~^^^1^5.550^11.500^11^7.009^9.118^~2, 3~^~01/01/2011~ -~10984~^~410~^1.197^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~415~^0.540^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~501~^0.311^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~502~^1.150^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~503~^1.238^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~504~^2.152^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~505~^2.325^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~506~^0.717^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~507~^0.295^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~508~^1.086^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~509~^1.036^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~510~^1.322^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~511~^1.684^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~512~^1.063^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~513~^1.497^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~514~^2.445^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~515~^3.993^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~516~^1.181^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~517~^1.057^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~518~^1.092^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~521~^0.091^0^^~1~^~A~^^^^^^^^^^~01/01/2011~ -~10984~^~606~^1.638^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~ -~10984~^~609~^0.001^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~610~^0.005^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~611~^0.004^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~612~^0.058^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~613~^1.003^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~614~^0.544^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~617~^1.770^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~618~^0.559^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~619~^0.024^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~620~^0.055^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~621~^0.000^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~626~^0.110^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~627~^0.000^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~628~^0.030^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~629~^0.000^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~630~^0.000^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~631~^0.006^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~645~^1.910^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10984~^~646~^0.668^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~ -~10985~^~312~^0.069^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~315~^0.010^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~404~^0.571^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10985~^~405~^0.367^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10985~^~406~^9.152^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10985~^~410~^1.275^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~415~^0.575^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~501~^0.331^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~502~^1.224^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~503~^1.318^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~504~^2.291^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~505~^2.475^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~506~^0.763^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~508~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~509~^1.103^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~510~^1.408^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~511~^1.794^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~512~^1.132^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~513~^1.594^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~514~^2.604^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~515~^4.252^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~516~^1.258^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~517~^1.125^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~518~^1.162^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~521~^0.097^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10985~^~606~^2.831^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10985~^~609~^0.001^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~610~^0.008^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~611~^0.007^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~612~^0.100^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~613~^1.733^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~614~^0.941^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~617~^3.059^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~618~^0.966^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~619~^0.041^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~620~^0.096^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~621~^0.000^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~626~^0.189^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~627~^0.000^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~628~^0.051^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~629~^0.000^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~630~^0.000^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~631~^0.010^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~645~^3.301^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10985~^~646~^1.154^0^^~4~^~BFFN~^~10984~^^^^^^^^^~02/01/2011~ -~10986~^~312~^0.117^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~315~^0.012^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~404~^0.571^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~405~^0.367^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~406~^9.152^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~410~^1.275^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~415~^0.575^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~501~^0.331^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~502~^1.224^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~503~^1.318^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~504~^2.291^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~505~^2.475^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~506~^0.763^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~508~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~509~^1.103^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~510~^1.408^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~511~^1.794^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~512~^1.132^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~513~^1.594^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~514~^2.604^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~515~^4.252^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~516~^1.258^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~517~^1.125^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~518~^1.162^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~521~^0.097^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10986~^~606~^3.096^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10986~^~609~^0.001^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~610~^0.009^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~611~^0.008^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~612~^0.109^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~613~^1.895^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~614~^1.029^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~617~^3.346^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~618~^1.056^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~619~^0.044^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~620~^0.105^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~621~^0.000^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~626~^0.207^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~627~^0.000^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~628~^0.056^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~629~^0.000^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~630~^0.000^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~631~^0.011^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~645~^3.610^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10986~^~646~^1.262^0^^~4~^~BFYN~^~10034~^^^^^^^^^~02/01/2011~ -~10987~^~312~^0.083^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~315~^0.017^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~404~^0.658^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~405~^0.289^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~406~^8.130^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~410~^1.589^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~415~^0.523^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~501~^0.348^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~502~^1.284^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~503~^1.383^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~504~^2.403^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~505~^2.597^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~506~^0.800^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~508~^1.213^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~509~^1.157^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~510~^1.477^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~511~^1.881^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~512~^1.188^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~513~^1.672^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~514~^2.731^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~515~^4.461^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~516~^1.320^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~517~^1.181^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~518~^1.219^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~10987~^~606~^4.079^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~ -~10987~^~609~^0.000^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~610~^0.009^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~611~^0.006^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~612~^0.143^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~613~^2.522^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~614~^1.348^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~617~^4.541^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~618~^1.455^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~619~^0.055^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~620~^0.093^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~621~^0.000^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~626~^0.262^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~627~^0.000^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~628~^0.078^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~629~^0.000^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~630~^0.000^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~631~^0.004^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~645~^4.880^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10987~^~646~^1.666^0^^~4~^~BFFN~^~10983~^^^^^^^^^~02/01/2011~ -~10988~^~312~^0.070^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~404~^0.637^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~405~^0.252^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~406~^7.698^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~410~^1.146^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~415~^0.515^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~501~^0.294^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~502~^1.088^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~503~^1.171^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~504~^2.036^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~505~^2.199^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~506~^0.678^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~507~^0.279^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~508~^1.028^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~509~^0.980^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~510~^1.251^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~511~^1.594^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~512~^1.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~513~^1.417^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~514~^2.313^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~515~^3.778^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~516~^1.118^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~517~^1.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~518~^1.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~521~^0.086^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~605~^0.035^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~606~^3.280^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~610~^0.009^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~611~^0.008^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~612~^0.119^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~613~^2.030^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~614~^1.063^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~617~^3.641^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~618~^1.285^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~619~^0.054^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~620~^0.064^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~626~^0.204^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~628~^0.064^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~631~^0.008^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~645~^3.911^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~646~^1.471^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~653~^0.017^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~663~^0.028^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~672~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~674~^1.973^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~675~^0.761^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~693~^0.028^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~695~^0.007^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10988~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10988~^~851~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~312~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~404~^0.599^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~405~^0.227^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~406~^6.564^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~410~^0.831^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~415~^0.546^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~501~^0.244^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~502~^0.903^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~503~^0.973^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~504~^1.691^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~505~^1.827^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~506~^0.563^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~507~^0.232^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~508~^0.853^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~509~^0.814^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~510~^1.039^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~511~^1.324^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~512~^0.836^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~513~^1.177^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~514~^1.921^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~515~^3.138^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~516~^0.928^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~517~^0.831^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~518~^0.858^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~521~^0.072^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~605~^0.077^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~606~^2.767^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~612~^0.102^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~613~^1.713^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~614~^0.911^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~617~^3.175^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~618~^1.199^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~619~^0.054^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~620~^0.063^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~626~^0.178^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~628~^0.054^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~631~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~645~^3.408^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~646~^1.370^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~653~^0.020^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~663~^0.068^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~672~^0.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~674~^3.107^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~675~^1.190^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~693~^0.068^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~695~^0.009^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10989~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~851~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10989~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~404~^0.600^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~405~^0.269^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~406~^7.435^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~410~^1.448^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~415~^0.478^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~501~^0.315^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~502~^1.164^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~503~^1.254^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~504~^2.179^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~505~^2.355^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~506~^0.726^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~507~^0.299^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~508~^1.100^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~509~^1.049^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~510~^1.339^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~511~^1.706^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~512~^1.077^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~513~^1.517^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~514~^2.477^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~515~^4.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~516~^1.197^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~517~^1.071^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~518~^1.106^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~521~^0.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~605~^0.074^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~606~^3.706^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~612~^0.133^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~613~^2.300^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~614~^1.208^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~615~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~617~^4.154^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~618~^1.423^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~619~^0.056^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~620~^0.065^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~626~^0.230^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~628~^0.073^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~631~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~645~^4.458^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~646~^1.611^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~652~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~653~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~663~^0.068^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~672~^0.058^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~674~^4.086^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~675~^1.417^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~689~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~693~^0.068^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~695~^0.007^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10990~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~851~^0.055^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10990~^~856~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~312~^0.070^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~315~^0.009^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~404~^0.544^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~405~^0.354^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~406~^8.699^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~410~^1.217^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~415~^0.547^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~501~^0.313^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~502~^1.156^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~503~^1.244^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~504~^2.163^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~505~^2.337^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~506~^0.720^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~507~^0.296^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~508~^1.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~509~^1.041^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~510~^1.329^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~511~^1.693^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~512~^1.069^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~513~^1.505^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~514~^2.458^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~515~^4.014^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~516~^1.188^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~517~^1.062^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~518~^1.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~521~^0.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~605~^0.036^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~606~^4.408^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~610~^0.012^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~611~^0.011^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~612~^0.159^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~613~^2.720^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~614~^1.437^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~617~^4.862^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~618~^1.673^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~619~^0.070^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~620~^0.102^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~626~^0.280^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~628~^0.085^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~645~^5.227^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~646~^1.933^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~652~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~653~^0.018^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~663~^0.029^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~672~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~674~^2.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~675~^0.773^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~693~^0.029^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~695~^0.007^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10991~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10991~^~851~^0.031^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~312~^0.114^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~315~^0.011^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~404~^0.532^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~405~^0.348^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~406~^8.497^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~410~^1.192^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~415~^0.534^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~501~^0.304^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~502~^1.125^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~503~^1.211^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~504~^2.105^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~505~^2.275^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~506~^0.701^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~507~^0.288^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~508~^1.063^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~509~^1.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~510~^1.294^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~511~^1.648^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~512~^1.040^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~513~^1.465^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~514~^2.393^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~515~^3.907^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~516~^1.156^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~517~^1.034^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~518~^1.068^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~521~^0.089^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~605~^0.052^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~606~^5.311^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~609~^0.001^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~610~^0.014^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~611~^0.013^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~612~^0.194^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~613~^3.308^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~614~^1.738^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~617~^5.924^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~618~^2.070^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~619~^0.087^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~620~^0.113^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~621~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~626~^0.336^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~628~^0.104^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~631~^0.014^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~645~^6.366^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~646~^2.378^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~652~^0.004^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~653~^0.025^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~663~^0.042^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~665~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~672~^0.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~674~^2.900^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~675~^1.119^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~693~^0.042^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~695~^0.010^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10992~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10992~^~851~^0.045^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~312~^0.084^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~315~^0.015^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~404~^0.601^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~405~^0.278^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~406~^7.496^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~410~^1.452^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~415~^0.481^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~501~^0.314^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~502~^1.161^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~503~^1.250^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~504~^2.173^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~505~^2.348^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~506~^0.724^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~507~^0.298^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~508~^1.097^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~509~^1.046^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~510~^1.335^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~511~^1.701^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~512~^1.074^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~513~^1.512^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~514~^2.469^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~515~^4.033^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~516~^1.193^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~517~^1.067^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~518~^1.102^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~521~^0.092^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~605~^0.060^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~606~^6.581^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~610~^0.015^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~611~^0.012^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~612~^0.238^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~613~^4.088^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~614~^2.134^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~617~^7.393^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~618~^2.585^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~619~^0.104^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~620~^0.103^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~621~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~626~^0.405^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~628~^0.131^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~631~^0.008^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~645~^7.930^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~646~^2.915^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~652~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~653~^0.030^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~663~^0.049^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~665~^0.011^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~672~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~674~^3.378^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~675~^1.303^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~693~^0.049^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~ -~10993~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10993~^~851~^0.053^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~ -~10994~^~312~^0.047^6^0.003^~1~^~A~^^^1^0.039^0.057^5^0.040^0.055^~2, 3~^~04/01/2012~ -~10994~^~315~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~04/01/2012~ -~10994~^~501~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~502~^0.551^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~503~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~504~^1.031^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~505~^1.114^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~506~^0.343^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~507~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~508~^0.521^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~509~^0.496^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~510~^0.634^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~511~^0.807^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~512~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~513~^0.718^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~514~^1.172^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~515~^1.914^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~516~^0.566^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~517~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~518~^0.523^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~10994~^~521~^0.044^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~ -~10994~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10994~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~10998~^~312~^0.063^5^0.002^~1~^~A~^^^1^0.052^0.071^3^0.055^0.071^~2, 3~^~08/01/2015~ -~10998~^~315~^0.016^5^0.001^~1~^~A~^^^1^0.015^0.024^2^0.010^0.022^~1, 2, 3~^~04/01/2013~ -~10998~^~404~^0.669^3^0.005^~1~^~A~^^^1^0.530^0.780^1^0.610^0.728^~2, 3~^~08/01/2015~ -~10998~^~405~^0.185^3^0.005^~1~^~A~^^^1^0.180^0.200^1^0.126^0.243^~2, 3~^~08/01/2015~ -~10998~^~406~^9.988^3^0.358^~1~^~A~^^^1^7.920^11.100^1^5.433^14.542^~2, 3~^~08/01/2015~ -~10998~^~410~^0.720^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~415~^0.280^3^0.019^~1~^~A~^^^1^0.240^0.320^1^0.045^0.515^~2, 3~^~08/01/2015~ -~10998~^~501~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~502~^1.226^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~503~^1.320^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~504~^2.294^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~505~^2.479^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~506~^0.764^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~508~^1.158^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~509~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~510~^1.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~511~^1.796^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~512~^1.134^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~513~^1.597^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~514~^2.607^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~515~^4.258^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~516~^1.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~517~^1.127^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~518~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~10998~^~521~^0.097^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~10998~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10998~^~606~^1.039^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10998~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~610~^0.011^3^0.001^~1~^~A~^^^1^0.008^0.013^1^-0.004^0.025^~2, 3~^~04/01/2013~ -~10998~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.005^1^-0.002^0.009^~2, 3~^~08/01/2015~ -~10998~^~612~^0.037^3^0.006^~1~^~A~^^^1^0.030^0.057^1^-0.034^0.108^~2, 3~^~08/01/2015~ -~10998~^~613~^0.646^3^0.079^~1~^~A~^^^1^0.562^0.914^1^-0.359^1.650^~2, 3~^~08/01/2015~ -~10998~^~614~^0.324^3^0.035^~1~^~A~^^^1^0.287^0.439^1^-0.123^0.770^~2, 3~^~08/01/2015~ -~10998~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.008^1^0.000^0.011^~2, 3~^~08/01/2015~ -~10998~^~617~^1.139^3^0.136^~1~^~AS~^^^1^0.991^1.604^1^-0.589^2.866^~2, 3~^~08/01/2015~ -~10998~^~618~^0.364^3^0.020^~1~^~AS~^^^1^0.271^0.517^1^0.105^0.623^~2, 3~^~08/01/2015~ -~10998~^~619~^0.012^3^0.000^~1~^~AS~^^^1^0.008^0.018^1^0.007^0.018^~2, 3~^~08/01/2015~ -~10998~^~620~^0.066^3^0.004^~1~^~A~^^^1^0.062^0.078^1^0.018^0.113^~2, 3~^~08/01/2015~ -~10998~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~08/01/2015~ -~10998~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^^^^~2, 3~^~06/01/2014~ -~10998~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.005^0.006^~1, 2, 3~^~08/01/2015~ -~10998~^~626~^0.085^3^0.011^~1~^~AS~^^^1^0.071^0.117^1^-0.049^0.220^~2, 3~^~08/01/2015~ -~10998~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~628~^0.022^3^0.002^~1~^~A~^^^1^0.017^0.032^1^0.002^0.043^~2, 3~^~08/01/2015~ -~10998~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.005^0.006^~1, 2, 3~^~08/01/2015~ -~10998~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.004^1^-0.011^0.013^~2, 3~^~08/01/2015~ -~10998~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.008^1^0.000^0.012^~2, 3~^~04/01/2013~ -~10998~^~645~^1.255^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10998~^~646~^0.485^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~10998~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.003^1^-0.004^0.008^~1, 2, 3~^~04/01/2013~ -~10998~^~653~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.013^1^-0.010^0.025^~2, 3~^~06/01/2014~ -~10998~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~663~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.008^^^^~2, 3~^~08/01/2015~ -~10998~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~665~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.008^0.010^~1, 2, 3~^~04/01/2013~ -~10998~^~670~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.006^1^-0.006^0.012^~1, 2, 3~^~08/01/2015~ -~10998~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~672~^0.014^3^0.000^~1~^~A~^^^1^0.008^0.020^^^^~2, 3~^~08/01/2015~ -~10998~^~673~^0.085^3^0.011^~1~^~A~^^^1^0.071^0.117^1^-0.049^0.220^~2, 3~^~08/01/2015~ -~10998~^~674~^1.132^3^0.136^~1~^~A~^^^1^0.985^1.596^1^-0.596^2.859^~2, 3~^~08/01/2015~ -~10998~^~675~^0.360^3^0.019^~1~^~A~^^^1^0.269^0.508^1^0.119^0.602^~2, 3~^~08/01/2015~ -~10998~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^1^-0.011^0.013^~1, 2, 3~^~08/01/2015~ -~10998~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.008^0.010^~1, 2, 3~^~04/01/2013~ -~10998~^~687~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.010^1^-0.001^0.016^~2, 3~^~08/01/2015~ -~10998~^~689~^0.011^3^0.001^~1~^~AS~^^^1^0.009^0.013^1^0.000^0.022^~2, 3~^~04/01/2013~ -~10998~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10998~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~10998~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~851~^0.011^3^0.000^~1~^~A~^^^1^0.008^0.016^1^0.008^0.015^~2, 3~^~08/01/2015~ -~10998~^~852~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^1^-0.006^0.012^~1, 2, 3~^~04/01/2013~ -~10998~^~853~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^1^0.006^0.011^~2, 3~^~04/01/2013~ -~10998~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~10998~^~858~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.012^^^^~2, 3~^~04/01/2013~ -~11001~^~312~^0.157^10^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~315~^0.188^10^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~404~^0.076^10^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~405~^0.126^10^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~406~^0.481^10^0.044^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~410~^0.563^10^0.069^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~415~^0.034^10^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~502~^0.134^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~503~^0.143^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~504~^0.267^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~505~^0.214^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~510~^0.145^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11001~^~606~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~613~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~617~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~618~^0.234^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~619~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11001~^~645~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11001~^~646~^0.409^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~312~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~315~^0.885^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11003~^~404~^0.027^5^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~405~^0.158^5^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~406~^0.658^5^0.106^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~410~^0.064^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11003~^~415~^0.192^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11003~^~501~^0.031^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~502~^0.099^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~503~^0.119^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~504~^0.195^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~505~^0.127^16^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~506~^0.036^16^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~507~^0.029^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~508~^0.133^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~509~^0.080^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~510~^0.137^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~511~^0.121^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~512~^0.052^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~513~^0.139^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~514~^0.229^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~515~^0.292^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~516~^0.132^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~517~^0.121^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~518~^0.111^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11003~^~606~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~612~^0.001^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~613~^0.073^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~614~^0.012^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~617~^0.076^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~618~^0.145^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~619~^0.002^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~645~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11003~^~646~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~312~^0.158^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~315~^0.861^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~404~^0.020^5^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~405~^0.134^5^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~406~^0.559^5^0.090^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~410~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~415~^0.177^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11004~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~503~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~504~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~505~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~509~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~510~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~511~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~512~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~513~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~514~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~515~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~516~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~517~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11004~^~606~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~613~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~617~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~645~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11004~^~646~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~312~^0.171^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~315~^0.360^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~404~^0.170^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~405~^0.073^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~406~^1.650^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11005~^~410~^0.599^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~415~^0.260^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11005~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11006~^~312~^0.135^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~315~^0.285^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~404~^0.144^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~406~^1.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11006~^~410~^0.449^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~415~^0.206^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11006~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11007~^~312~^0.231^6^0.128^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~315~^0.256^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~404~^0.072^11^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~405~^0.066^11^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~406~^1.046^11^0.086^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~410~^0.338^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~415~^0.116^6^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11007~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11007~^~606~^0.036^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~611~^0.002^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~612~^0.002^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~613~^0.029^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~614~^0.003^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~617~^0.005^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~618~^0.046^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~619~^0.017^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~11007~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11007~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11007~^~646~^0.064^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11008~^~312~^0.127^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~315~^0.225^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~405~^0.089^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~406~^1.110^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~410~^0.240^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~415~^0.081^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11008~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11008~^~606~^0.079^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11008~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~611~^0.004^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~612~^0.004^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~613~^0.066^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~614~^0.006^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~617~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~618~^0.105^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~619~^0.038^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11008~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11008~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11009~^~312~^0.054^3^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~315~^0.243^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~404~^0.058^4^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~405~^0.140^4^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~406~^0.860^4^0.124^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~410~^0.188^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~415~^0.082^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11009~^~606~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~618~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~619~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11009~^~646~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~312~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~315~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~404~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~405~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~406~^0.915^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~410~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~415~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11010~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11010~^~606~^0.119^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~611~^0.005^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~612~^0.005^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~613~^0.099^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~614~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~617~^0.015^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~618~^0.157^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~619~^0.059^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11010~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11010~^~646~^0.216^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11011~^~312~^0.189^4^0.028^~1~^~A~^^^1^0.117^0.243^3^0.102^0.277^~2, 3~^~12/01/2002~ -~11011~^~315~^0.158^4^0.015^~1~^~A~^^^1^0.137^0.203^3^0.110^0.206^~2, 3~^~12/01/2002~ -~11011~^~404~^0.143^4^0.016^~1~^~A~^^^1^0.105^0.174^3^0.091^0.194^~2, 3~^~12/01/2002~ -~11011~^~405~^0.141^4^0.007^~1~^~A~^^^1^0.129^0.160^3^0.119^0.163^~2, 3~^~12/01/2002~ -~11011~^~406~^0.978^4^0.034^~1~^~A~^^^1^0.885^1.030^3^0.869^1.088^~2, 3~^~12/01/2002~ -~11011~^~410~^0.274^4^0.020^~1~^~A~^^^1^0.227^0.322^3^0.211^0.338^~2, 3~^~12/01/2002~ -~11011~^~415~^0.091^4^0.009^~1~^~A~^^^1^0.074^0.111^3^0.062^0.120^~2, 3~^~12/01/2002~ -~11011~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~502~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~503~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~504~^0.128^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~505~^0.104^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~506~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~508~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~509~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~510~^0.115^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~511~^0.091^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~513~^0.115^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~514~^0.508^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~515~^0.233^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~516~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~517~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~518~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11011~^~606~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11011~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11011~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11011~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~613~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~618~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~619~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11011~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11011~^~646~^0.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11011~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11011~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~312~^0.165^4^0.028^~1~^~A~^^^1^0.104^0.236^3^0.076^0.254^~2, 3~^~12/01/2002~ -~11012~^~315~^0.154^4^0.010^~1~^~A~^^^1^0.143^0.184^3^0.123^0.186^~2, 3~^~12/01/2002~ -~11012~^~404~^0.162^4^0.012^~1~^~A~^^^1^0.149^0.199^3^0.123^0.201^~2, 3~^~12/01/2002~ -~11012~^~405~^0.139^4^0.007^~1~^~A~^^^1^0.126^0.158^3^0.117^0.161^~2, 3~^~12/01/2002~ -~11012~^~406~^1.084^4^0.047^~1~^~A~^^^1^0.965^1.160^3^0.933^1.234^~2, 3~^~12/01/2002~ -~11012~^~410~^0.225^4^0.020^~1~^~A~^^^1^0.190^0.280^3^0.162^0.289^~2, 3~^~12/01/2002~ -~11012~^~415~^0.079^4^0.011^~1~^~A~^^^1^0.059^0.110^3^0.045^0.114^~2, 3~^~12/01/2002~ -~11012~^~501~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~502~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~504~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~505~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~507~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~508~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~509~^0.057^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~511~^0.099^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~512~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~513~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~514~^0.555^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~515~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~517~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~518~^0.116^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11012~^~606~^0.048^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11012~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11012~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~613~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~618~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~619~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11012~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~646~^0.105^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11012~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11012~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11013~^~312~^0.107^78^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~315~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~404~^0.054^138^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~405~^0.089^156^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~406~^0.851^153^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~410~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~415~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~503~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~504~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~508~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~509~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~511~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~513~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~514~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~515~^0.295^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~516~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~517~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~518~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11013~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~618~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11013~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11013~^~646~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~312~^0.096^4^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~315~^0.170^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~404~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~405~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~406~^0.954^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~410~^0.139^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~415~^0.110^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11015~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~502~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~503~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~505~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~508~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~510~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~511~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~513~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~514~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~515~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~516~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~517~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11015~^~606~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~613~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~618~^0.269^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11015~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11015~^~646~^0.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~312~^0.137^12^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~315~^0.203^9^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~404~^0.121^43^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~405~^0.131^43^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~406~^1.202^43^0.055^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~410~^0.184^8^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~415~^0.111^8^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~501~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~502~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~503~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~504~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~505~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~507~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~508~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~509~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~510~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~511~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~512~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~513~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~514~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~515~^0.528^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~517~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~518~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11018~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~618~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11018~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11018~^~646~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~312~^0.105^38^0.004^~6~^~JA~^^^7^0.056^0.159^37^0.097^0.113^~4~^~12/01/2002~ -~11019~^~315~^0.140^38^0.006^~6~^~JA~^^^7^0.059^0.231^37^0.129^0.152^~4~^~12/01/2002~ -~11019~^~404~^0.065^3^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~405~^0.103^3^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~406~^1.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~410~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~415~^0.020^3^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~503~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~504~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~505~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~508~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~509~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~510~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~511~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~512~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~513~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~514~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~515~^0.483^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~516~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~517~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~518~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11019~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11019~^~606~^0.096^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~613~^0.086^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~614~^0.006^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~617~^0.011^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~618~^0.175^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11019~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11019~^~646~^0.185^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11022~^~312~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~315~^0.536^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~404~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~405~^0.362^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~406~^1.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11022~^~410~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~415~^0.803^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11022~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11023~^~312~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11023~^~315~^0.536^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11023~^~404~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~405~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~406~^0.995^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~410~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11023~^~415~^0.760^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11023~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11023~^~606~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~612~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~613~^0.024^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~618~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~619~^0.065^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~645~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11023~^~646~^0.083^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11024~^~312~^0.034^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11024~^~315~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11024~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~405~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11024~^~410~^0.212^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11024~^~415~^0.043^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11024~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11025~^~312~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~315~^0.086^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~406~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11025~^~410~^0.193^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~415~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11025~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11025~^~606~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~613~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~617~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~618~^0.078^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~645~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11025~^~646~^0.078^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11026~^~312~^0.190^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~315~^0.262^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~404~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~405~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~410~^0.161^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~415~^0.240^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11026~^~501~^0.027^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~502~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~503~^0.088^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~504~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~505~^0.134^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~506~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~507~^0.022^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~508~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~510~^0.106^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~511~^0.097^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~512~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~513~^0.124^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~514~^0.425^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~515~^0.248^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~516~^0.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~517~^0.219^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~518~^0.127^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11026~^~606~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~613~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~618~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11026~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11026~^~646~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~312~^0.082^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~315~^0.113^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~410~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~415~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11027~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~503~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~504~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~505~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~508~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~510~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~511~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~513~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~514~^0.249^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~515~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~516~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~517~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~518~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11027~^~606~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~613~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~618~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11027~^~646~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~315~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~404~^0.026^7^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~405~^0.026^7^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~406~^0.140^7^0.053^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~410~^0.092^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~415~^0.136^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11028~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~502~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~505~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~508~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~510~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~511~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~513~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~514~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~515~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~517~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~518~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11028~^~606~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~613~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~618~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~619~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11028~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11028~^~646~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~312~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~315~^0.182^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~404~^0.370^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~405~^0.250^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~406~^2.920^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~410~^0.368^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~415~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11029~^~501~^0.044^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~502~^0.176^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~503~^0.186^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~504~^0.302^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~505~^0.239^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~506~^0.044^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~507~^0.048^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~508~^0.212^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~509~^0.144^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~510~^0.216^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~511~^0.228^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~512~^0.118^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~513~^0.174^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~514~^0.546^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~515~^0.512^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~516~^0.144^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~517~^0.169^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~518~^0.224^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11029~^~606~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~613~^0.064^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~614~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~617~^0.039^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~618~^0.107^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~619~^0.169^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~645~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11029~^~646~^0.276^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~312~^0.174^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~315~^0.199^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~404~^0.362^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~405~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~406~^3.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~410~^0.381^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~415~^0.093^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11030~^~501~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~502~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~504~^0.347^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~505~^0.275^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~507~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~508~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~509~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~510~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~511~^0.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~512~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~513~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~514~^0.628^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~515~^0.589^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~516~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~518~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11030~^~606~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~613~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~617~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~618~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~619~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~645~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11030~^~646~^0.318^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~312~^0.318^6^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~315~^1.215^6^0.108^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~404~^0.217^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~405~^0.103^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~406~^1.474^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~410~^0.247^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~415~^0.204^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~501~^0.090^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~502~^0.290^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~503~^0.440^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~504~^0.538^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~505~^0.452^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~506~^0.068^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~507~^0.083^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~508~^0.337^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~509~^0.220^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~510~^0.427^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~511~^0.458^29^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~512~^0.232^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~513~^0.260^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~514~^0.735^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~515~^0.881^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~516~^0.274^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~517~^0.102^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~518~^0.427^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11031~^~606~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~612~^0.002^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~613~^0.173^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~614~^0.022^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~617~^0.050^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~618~^0.283^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~619~^0.136^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11031~^~645~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11031~^~646~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~312~^0.305^12^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~315~^1.252^12^0.097^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~404~^0.140^12^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~405~^0.096^12^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~406~^1.040^12^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~410~^0.257^12^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~415~^0.193^12^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~501~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~502~^0.289^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~503~^0.438^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~504~^0.535^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~505~^0.450^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~507~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~508~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~509~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~510~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~511~^0.456^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~512~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~513~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~514~^0.731^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~515~^0.877^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~516~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~517~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~518~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11032~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~613~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~618~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11032~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11032~^~646~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~312~^0.162^44^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~315~^0.700^6^0.051^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~404~^0.029^134^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~405~^0.043^134^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~406~^0.532^140^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~410~^0.095^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~415~^0.062^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~501~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~502~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~503~^0.261^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~504~^0.319^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~505~^0.268^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~506~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~507~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~508~^0.200^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~509~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~510~^0.254^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~511~^0.272^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~512~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~513~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~514~^0.436^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~515~^0.523^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~516~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~517~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11033~^~518~^0.254^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11033~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11033~^~606~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11033~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~613~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11033~^~617~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~618~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~619~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11033~^~645~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11033~^~646~^0.139^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11037~^~312~^0.062^8^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~315~^0.345^7^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~404~^0.092^22^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~405~^0.067^22^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~406~^1.187^22^0.070^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~410~^0.191^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~415~^0.136^5^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~501~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~502~^0.271^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~503~^0.412^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~504~^0.503^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~505~^0.423^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~506~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~507~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~508~^0.315^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~509~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~510~^0.399^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~511~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~512~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~513~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~514~^0.687^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~515~^0.824^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~516~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~517~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~518~^0.399^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11037~^~606~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~613~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~618~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~619~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11037~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11037~^~646~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~312~^0.170^47^0.004^~1~^^^^5^0.085^0.234^32^0.161^0.179^~2, 3~^~12/01/2002~ -~11038~^~315~^0.648^48^0.018^~1~^^^^5^0.415^0.900^40^0.612^0.684^~2, 3~^~12/01/2002~ -~11038~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~405~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~406~^1.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~415~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~502~^0.257^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~503~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~504~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~505~^0.401^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~506~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~507~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~508~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~509~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~510~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~511~^0.406^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~512~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~513~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~514~^0.652^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~515~^0.782^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~516~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~517~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~518~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11038~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11038~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11038~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~612~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~613~^0.067^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11038~^~614~^0.008^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~617~^0.020^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~618~^0.110^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11038~^~619~^0.053^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11038~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11038~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11038~^~646~^0.163^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11039~^~312~^0.128^20^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~315~^0.702^19^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~404~^0.114^67^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~405~^0.075^67^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~406~^1.023^67^0.068^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~410~^0.187^9^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~415~^0.160^15^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~501~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~502~^0.322^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~503~^0.488^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~504~^0.597^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~505~^0.502^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~506~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~507~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~508~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~509~^0.244^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~510~^0.474^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~511~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~512~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~513~^0.288^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~514~^0.815^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~515~^0.978^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~516~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~517~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~518~^0.474^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11039~^~606~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~613~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~618~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11039~^~645~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11039~^~646~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~312~^0.197^6^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~315~^0.813^6^0.054^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~404~^0.070^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~405~^0.055^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~406~^0.770^6^0.040^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~410~^0.177^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~415~^0.115^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~501~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~502~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~503~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~504~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~505~^0.439^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~506~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~507~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~508~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~509~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~510~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~511~^0.445^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~512~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~513~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~514~^0.714^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~515~^0.857^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~516~^0.266^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~517~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~518~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11040~^~606~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~613~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~618~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11040~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11040~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~312~^0.164^8^0.058^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~315~^0.188^8^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~404~^0.084^8^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~405~^0.124^8^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~406~^0.749^8^0.064^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~410~^0.380^4^0.082^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~415~^0.088^8^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~501~^0.037^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~502~^0.078^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~503~^0.132^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~504~^0.175^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~505~^0.166^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~506~^0.034^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~507~^0.017^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~508~^0.117^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~509~^0.052^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~510~^0.130^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~511~^0.197^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~512~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~513~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~514~^0.479^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~515~^0.161^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~516~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~518~^0.033^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11043~^~606~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~618~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11043~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11043~^~646~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~312~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~315~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~405~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~406~^0.817^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~410~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~415~^0.054^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11044~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~502~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~503~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~504~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~505~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~506~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~508~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~509~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~510~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~511~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~512~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~513~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~514~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~515~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~516~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11044~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11044~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11044~^~646~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~312~^0.255^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~315~^0.292^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~404~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~405~^0.180^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~406~^1.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~410~^0.559^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~415~^0.130^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11045~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~502~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~503~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~504~^0.275^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~505~^0.261^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~506~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~507~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~508~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~509~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~510~^0.204^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~511~^0.309^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~513~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~514~^0.752^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~515~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~516~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~518~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11045~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~617~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~645~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11045~^~646~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~312~^0.356^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~315~^0.408^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~404~^0.390^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~405~^0.215^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~406~^1.220^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~410~^0.825^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~415~^0.191^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11046~^~501~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~502~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~503~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~504~^0.442^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~505~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~506~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~507~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~508~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~509~^0.212^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~510~^0.316^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~511~^0.335^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~512~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~513~^0.255^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~514~^0.799^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~515~^0.750^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~516~^0.212^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~517~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~518~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11046~^~606~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~617~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~618~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~619~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~645~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11046~^~646~^0.407^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~312~^0.389^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~315~^0.446^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~404~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~406~^1.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~410~^0.854^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~415~^0.198^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11047~^~501~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~502~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~503~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~504~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~505~^0.403^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~506~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~507~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~508~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~509~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~510~^0.363^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~511~^0.385^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~512~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~513~^0.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~514~^0.919^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~515~^0.863^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~516~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~517~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~518~^0.378^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11047~^~606~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~613~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~617~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~618~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~619~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~645~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11047~^~646~^0.468^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~312~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~315~^0.546^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~404~^0.340^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~410~^0.302^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~415~^0.215^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11048~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11048~^~606~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~613~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~619~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11048~^~646~^0.291^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~312~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~315~^0.493^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~404~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~405~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~406~^0.632^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~410~^0.258^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~415~^0.194^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11049~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11049~^~606~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~613~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~618~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~619~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11049~^~646~^0.276^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~312~^0.080^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~315~^0.382^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~404~^0.032^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~405~^0.054^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~406~^0.205^12^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~410~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~415~^0.049^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11050~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11050~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~618~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11050~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11050~^~646~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11052~^~312~^0.069^161^0.004^~6~^~JA~^^^2^0.062^0.094^157^0.061^0.077^~2, 3~^~04/01/2009~ -~11052~^~315~^0.216^150^0.008^~6~^~JA~^^^2^0.208^0.337^147^0.200^0.231^~2, 3~^~04/01/2009~ -~11052~^~404~^0.082^102^0.002^~6~^~JA~^^^2^0.030^0.084^99^0.079^0.086^~2, 3~^~04/01/2009~ -~11052~^~405~^0.104^102^0.003^~6~^~JA~^^^2^0.050^0.105^99^0.098^0.109^~2, 3~^~04/01/2009~ -~11052~^~406~^0.734^12^0.030^~6~^~JA~^^^2^0.490^0.920^3^0.637^0.831^~2, 3~^~04/01/2009~ -~11052~^~410~^0.225^4^0.023^~6~^~JA~^^^2^0.094^0.280^3^0.151^0.299^~2, 3~^~04/01/2009~ -~11052~^~415~^0.141^4^0.002^~6~^~JA~^^^2^0.074^0.146^3^0.134^0.147^~2, 3~^~04/01/2009~ -~11052~^~501~^0.019^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~502~^0.079^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~503~^0.066^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~504~^0.112^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~505~^0.088^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~506~^0.022^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~507~^0.018^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~508~^0.067^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~509~^0.042^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~510~^0.090^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~511~^0.073^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~512~^0.034^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~513~^0.084^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~514~^0.255^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~515~^0.187^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~516~^0.065^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~517~^0.068^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~518~^0.099^0^^~1~^~DA~^~11722~^^^^^^^^^~05/01/2009~ -~11052~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11052~^~606~^0.050^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~612~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~613~^0.042^2^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~614~^0.008^2^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~617~^0.008^2^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~618~^0.044^2^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~619~^0.069^2^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~626~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11052~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11052~^~646~^0.113^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11053~^~312~^0.057^28^0.005^~1~^^^^4^0.029^0.134^27^0.048^0.067^~4~^~08/01/2002~ -~11053~^~315~^0.285^28^0.016^~1~^^^^4^0.172^0.580^27^0.252^0.318^~4~^~08/01/2002~ -~11053~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~405~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~406~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~410~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~505~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~510~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~511~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~512~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~514~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11053~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11053~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11053~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~613~^0.053^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~614~^0.009^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~617~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~618~^0.056^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~619~^0.089^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11053~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11053~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11054~^~312~^0.037^24^0.003^~6~^~JA~^^^2^0.005^0.080^20^0.030^0.044^~2, 3~^~04/01/2011~ -~11054~^~315~^0.205^24^0.018^~6~^~JA~^^^2^0.076^0.387^17^0.168^0.242^~2, 3~^~04/01/2011~ -~11054~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~11054~^~405~^0.020^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.009^0.031^~1, 2, 3~^~04/01/2011~ -~11054~^~406~^0.200^4^0.014^~1~^~A~^^^1^0.160^0.220^3^0.157^0.243^~2, 3~^~08/01/1984~ -~11054~^~410~^0.106^6^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11054~^~415~^0.030^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11054~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~502~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~503~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~504~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~505~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~507~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~508~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~510~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~511~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~512~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~513~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~514~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~515~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~516~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~517~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~518~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11054~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11054~^~606~^0.040^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11054~^~613~^0.033^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~614~^0.005^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~617~^0.007^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~618~^0.035^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~619~^0.055^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11054~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11054~^~645~^0.007^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11054~^~646~^0.090^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11056~^~312~^0.039^16^0.002^~1~^~A~^^^2^0.027^0.058^9^0.035^0.043^~2, 3~^~03/01/2016~ -~11056~^~315~^0.175^16^0.018^~1~^~A~^^^2^0.086^0.300^1^0.039^0.310^~2, 3~^~03/01/2016~ -~11056~^~404~^0.016^6^0.001^~1~^~A~^^^2^0.015^0.020^1^0.005^0.026^~1, 2, 3~^~04/01/2011~ -~11056~^~405~^0.046^6^0.005^~1~^~A~^^^2^0.015^0.100^2^0.014^0.078^~1, 2, 3~^~07/01/2014~ -~11056~^~406~^0.206^6^0.022^~1~^~A~^^^2^0.140^0.280^1^-0.027^0.439^~2, 3~^~07/01/2014~ -~11056~^~410~^0.200^2^^~1~^~A~^^^1^0.160^0.240^1^^^^~04/01/2011~ -~11056~^~415~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~04/01/2011~ -~11056~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~502~^0.045^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~503~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~504~^0.064^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~505~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~506~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11056~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~508~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~509~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~510~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~511~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~512~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~513~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~514~^0.146^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~515~^0.107^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~516~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~517~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~518~^0.057^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~11056~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~11056~^~606~^0.093^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~613~^0.080^0^^~1~^^^^^^^^^^^~03/01/2016~ -~11056~^~614~^0.013^0^^~1~^^^^^^^^^^^~03/01/2016~ -~11056~^~617~^0.017^0^^~1~^^^^^^^^^^^~03/01/2016~ -~11056~^~618~^0.080^0^^~1~^^^^^^^^^^^~03/01/2016~ -~11056~^~619~^0.131^0^^~1~^^^^^^^^^^^~03/01/2016~ -~11056~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11056~^~645~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11056~^~646~^0.211^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~11058~^~312~^0.060^22^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~315~^0.312^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11058~^~404~^0.025^22^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~405~^0.049^22^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~406~^0.233^22^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~410~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11058~^~415~^0.044^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11058~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~502~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~504~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~505~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~511~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~514~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~515~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~516~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~518~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11058~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~613~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~618~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~619~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11058~^~646~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~312~^0.049^24^0.008^~6~^~JA~^^^2^0.048^0.051^20^0.033^0.066^~2, 3~^~03/01/2008~ -~11060~^~315~^0.369^22^0.034^~6~^~JA~^^^2^0.202^0.385^19^0.297^0.440^~2, 3~^~03/01/2008~ -~11060~^~404~^0.098^102^0.033^~6~^~JA~^^^2^0.040^0.099^98^0.032^0.163^~2, 3~^~03/01/2008~ -~11060~^~405~^0.091^102^0.005^~6~^~JA~^^^2^0.060^0.092^98^0.082^0.101^~2, 3~^~03/01/2008~ -~11060~^~406~^0.496^99^0.030^~6~^~JA~^^^2^0.366^0.499^95^0.437^0.556^~2, 3~^~03/01/2008~ -~11060~^~410~^0.104^9^0.024^~6~^~JA~^^^2^0.015^0.210^3^0.031^0.177^~1, 2, 3~^~03/01/2008~ -~11060~^~415~^0.044^16^0.000^~6~^~JA~^^^2^0.042^0.050^^^^~2, 3~^~03/01/2008~ -~11060~^~501~^0.019^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~502~^0.079^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~503~^0.066^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~504~^0.111^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~505~^0.087^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~506~^0.022^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~507~^0.018^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~508~^0.066^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~509~^0.042^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~510~^0.089^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~511~^0.073^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~512~^0.034^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~513~^0.083^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~514~^0.253^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~515~^0.186^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~516~^0.065^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~517~^0.067^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~518~^0.099^0^^~1~^^^^^^^^^^^~03/01/2008~ -~11060~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11060~^~606~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~618~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~619~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11060~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11060~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~312~^0.059^40^0.005^~1~^^^^1^0.029^0.134^20^0.047^0.070^~4~^~03/01/2006~ -~11061~^~315~^0.288^40^0.032^~1~^^^^1^0.148^0.830^20^0.222^0.354^~4~^~03/01/2006~ -~11061~^~404~^0.035^7^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~405~^0.090^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~406~^0.383^7^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~410~^0.049^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~415~^0.060^7^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~505~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~508~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~510~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~511~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~514~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~515~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~517~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11061~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11061~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11061~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~613~^0.035^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~614~^0.006^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~617~^0.007^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~618~^0.036^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11061~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11061~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11061~^~646~^0.083^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11062~^~312~^0.066^3^0.001^~1~^~A~^^^1^0.064^0.067^2^0.062^0.069^~2, 3~^~03/01/2008~ -~11062~^~315~^0.330^3^0.049^~1~^~A~^^^1^0.280^0.429^2^0.118^0.542^~2, 3~^~03/01/2008~ -~11062~^~404~^0.073^3^0.009^~1~^~A~^^^1^0.060^0.090^2^0.035^0.111^~2, 3~^~03/01/2008~ -~11062~^~405~^0.103^3^0.020^~1~^~A~^^^1^0.070^0.140^2^0.016^0.191^~2, 3~^~03/01/2008~ -~11062~^~406~^0.485^3^0.046^~1~^~A~^^^1^0.394^0.545^2^0.286^0.685^~2, 3~^~03/01/2008~ -~11062~^~410~^0.168^3^0.079^~1~^~A~^^^1^0.015^0.280^2^-0.173^0.510^~1, 2, 3~^~03/01/2008~ -~11062~^~415~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~03/01/2008~ -~11062~^~501~^0.019^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~502~^0.079^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~503~^0.066^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~504~^0.111^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~505~^0.087^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~506~^0.022^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~507~^0.018^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~508~^0.066^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~509~^0.042^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~510~^0.089^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~511~^0.073^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~512~^0.034^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~513~^0.083^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~514~^0.253^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~515~^0.186^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~516~^0.065^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~517~^0.067^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~518~^0.099^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11062~^~606~^0.092^0^^~4~^~NC~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~607~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~608~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~609~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~610~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~611~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~612~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~613~^0.078^0^^~4~^~BFSN~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~614~^0.014^0^^~4~^~BFSN~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~617~^0.016^0^^~4~^~BFSN~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~618~^0.082^0^^~4~^~BFSN~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~619~^0.132^0^^~4~^~BFSN~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~620~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~621~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~626~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~627~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~628~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~629~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~630~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~631~^0.000^0^^~4~^~BFSN~^~11060~^^^^^^^^^~03/01/2008~ -~11062~^~645~^0.016^0^^~4~^~NC~^~11060~^^^^^^^^^~01/01/2017~ -~11062~^~646~^0.214^0^^~4~^~NC~^~11060~^^^^^^^^^~01/01/2017~ -~11063~^~312~^0.090^4^0.008^~1~^~A~^^^1^0.070^0.106^3^0.066^0.114^~2, 3~^~04/01/2009~ -~11063~^~315~^0.332^4^0.037^~1~^~A~^^^1^0.262^0.426^3^0.216^0.448^~2, 3~^~04/01/2009~ -~11063~^~404~^0.078^4^0.010^~1~^~A~^^^1^0.060^0.100^3^0.045^0.110^~2, 3~^~04/01/2009~ -~11063~^~405~^0.075^4^0.006^~1~^~A~^^^1^0.060^0.090^3^0.054^0.096^~2, 3~^~04/01/2009~ -~11063~^~406~^0.773^4^0.077^~1~^~A~^^^1^0.600^0.960^3^0.528^1.017^~2, 3~^~04/01/2009~ -~11063~^~410~^0.300^4^0.027^~1~^~A~^^^1^0.260^0.380^3^0.213^0.387^~2, 3~^~04/01/2009~ -~11063~^~415~^0.124^4^0.004^~1~^~A~^^^1^0.114^0.132^3^0.110^0.138^~2, 3~^~04/01/2009~ -~11063~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11080~^~312~^0.075^14^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~315~^0.329^15^0.053^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~404~^0.031^5^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~405~^0.040^5^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~406~^0.334^5^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~410~^0.155^4^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~415~^0.067^4^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~502~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~504~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~505~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~508~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~509~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~510~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~514~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~515~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~516~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~517~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~518~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11080~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11080~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~613~^0.026^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~614~^0.001^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~617~^0.032^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~618~^0.055^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~619~^0.005^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11080~^~645~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11080~^~646~^0.060^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11081~^~312~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~315~^0.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~406~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~410~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~415~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~502~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~503~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~505~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~508~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~509~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~510~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~514~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~515~^0.446^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~517~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~518~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11081~^~606~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11081~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11081~^~646~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~312~^0.043^48^0.002^~1~^^^^5^0.019^0.062^47^0.039^0.046^~4~^~09/01/2002~ -~11082~^~315~^0.411^48^0.016^~1~^^^^5^0.269^0.750^47^0.379^0.442^~4~^~09/01/2002~ -~11082~^~404~^0.010^141^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~405~^0.038^174^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~406~^0.151^215^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~410~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~415~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11082~^~501~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~502~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~503~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~504~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~505~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~507~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~508~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~510~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~511~^0.021^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~512~^0.011^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~513~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~514~^0.058^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~515~^0.213^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~516~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~517~^0.020^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~518~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11082~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11082~^~606~^0.011^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11082~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~ -~11082~^~613~^0.011^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11082~^~614~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~617~^0.013^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11082~^~618~^0.023^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11082~^~619~^0.002^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11082~^~645~^0.013^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11082~^~646~^0.025^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11084~^~312~^0.059^5^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~315~^0.287^5^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~404~^0.010^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~405~^0.040^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~406~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~410~^0.156^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~415~^0.057^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11084~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~503~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~510~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~514~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~515~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~516~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~518~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11084~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11084~^~606~^0.022^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~612~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~613~^0.021^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~614~^0.001^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~617~^0.027^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~618~^0.045^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~619~^0.004^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~626~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~11084~^~645~^0.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11084~^~646~^0.049^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11086~^~312~^0.191^1^^~1~^^^^^0.191^0.191^^^^^~11/01/2002~ -~11086~^~315~^0.391^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11086~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~405~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~415~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11086~^~501~^0.035^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~502~^0.065^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~503~^0.046^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~504~^0.098^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~505~^0.064^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~506~^0.018^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~507~^0.021^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~508~^0.058^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~509~^0.052^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~510~^0.065^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~511~^0.063^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~512~^0.034^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~513~^0.081^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~514~^0.129^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~515~^0.267^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~516~^0.081^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~517~^0.052^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~518~^0.070^0^^~1~^~DA~^~11086~^^^^^^^^^~11/01/2002~ -~11086~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11086~^~606~^0.020^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~613~^0.020^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~617~^0.026^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~618~^0.041^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~619~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11086~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11086~^~646~^0.046^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11087~^~312~^0.251^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~315~^0.514^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11087~^~404~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~405~^0.289^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~406~^0.499^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~410~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~415~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~502~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~503~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~504~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~505~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~508~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~509~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~510~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~511~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~512~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~513~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~514~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~515~^0.312^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~516~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~517~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~518~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11087~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~617~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~618~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11087~^~645~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11087~^~646~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~312~^0.074^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~315~^0.320^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~404~^0.170^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~405~^0.110^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~406~^1.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~410~^0.086^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11088~^~501~^0.056^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~502~^0.208^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~503~^0.251^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~504~^0.432^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~505~^0.366^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~506~^0.043^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~507~^0.077^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~508~^0.228^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~509~^0.196^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~510~^0.274^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~511~^0.463^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~512~^0.134^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~513~^0.228^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~514~^0.631^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~515~^0.855^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~516~^0.230^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~517~^0.252^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~518~^0.246^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11088~^~606~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~613~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~614~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~618~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~619~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11088~^~646~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~312~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~315~^0.261^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~406~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~410~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~415~^0.029^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11089~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~502~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~503~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~504~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~505~^0.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~507~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~508~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~509~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~510~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~511~^0.397^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~512~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~513~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~514~^0.541^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~515~^0.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~516~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~517~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~518~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11089~^~606~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~613~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~614~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~618~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~619~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11089~^~646~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11090~^~312~^0.049^33^0.012^~6~^~JA~^^^3^0.038^0.075^1^-0.110^0.207^~4~^~04/01/2003~ -~11090~^~315~^0.210^23^0.007^~6~^~JA~^^^3^0.196^0.222^1^0.117^0.303^~4~^~04/01/2003~ -~11090~^~404~^0.071^23^0.010^~6~^~JA~^^^3^0.064^0.090^1^-0.054^0.196^~4~^~04/01/2003~ -~11090~^~405~^0.117^23^0.020^~6~^~JA~^^^3^0.086^0.141^1^-0.132^0.365^~4~^~04/01/2003~ -~11090~^~406~^0.639^23^0.064^~6~^~JA~^^^3^0.549^0.729^1^-0.169^1.446^~4~^~04/01/2003~ -~11090~^~410~^0.573^23^0.046^~6~^~JA~^^^3^0.535^0.667^1^-0.012^1.157^~4~^~04/01/2003~ -~11090~^~415~^0.175^23^0.031^~6~^~JA~^^^3^0.149^0.233^1^-0.220^0.570^~4~^~04/01/2003~ -~11090~^~501~^0.033^4^0.003^~1~^~A~^^^2^0.020^0.050^1^0.010^0.056^~2, 3~^~04/01/2003~ -~11090~^~502~^0.088^4^0.002^~1~^~A~^^^2^0.072^0.110^1^0.057^0.120^~2, 3~^~04/01/2003~ -~11090~^~503~^0.079^4^0.002^~1~^~A~^^^2^0.075^0.082^1^0.057^0.101^~2, 3~^~04/01/2003~ -~11090~^~504~^0.129^4^0.005^~1~^~A~^^^2^0.115^0.140^2^0.105^0.153^~2, 3~^~04/01/2003~ -~11090~^~505~^0.135^4^0.003^~1~^~A~^^^2^0.124^0.140^1^0.094^0.176^~2, 3~^~04/01/2003~ -~11090~^~506~^0.038^4^0.001^~1~^~A~^^^2^0.036^0.040^1^0.032^0.045^~2, 3~^~04/01/2003~ -~11090~^~507~^0.028^4^0.000^~1~^~A~^^^2^0.025^0.030^1^0.025^0.031^~2, 3~^~04/01/2003~ -~11090~^~508~^0.117^4^0.000^~1~^~A~^^^2^0.084^0.150^1^0.114^0.121^~2, 3~^~04/01/2003~ -~11090~^~509~^0.050^4^0.002^~1~^~A~^^^2^0.047^0.054^1^0.028^0.073^~2, 3~^~04/01/2003~ -~11090~^~510~^0.125^4^0.003^~1~^~A~^^^2^0.112^0.140^2^0.109^0.141^~2, 3~^~04/01/2003~ -~11090~^~511~^0.191^4^0.006^~1~^~A~^^^2^0.147^0.240^2^0.157^0.225^~2, 3~^~04/01/2003~ -~11090~^~512~^0.059^4^0.000^~1~^~A~^^^2^0.048^0.070^1^0.056^0.062^~2, 3~^~04/01/2003~ -~11090~^~513~^0.104^4^0.004^~1~^~A~^^^2^0.087^0.120^2^0.088^0.120^~2, 3~^~04/01/2003~ -~11090~^~514~^0.325^4^0.013^~1~^~A~^^^2^0.259^0.410^1^0.196^0.454^~2, 3~^~04/01/2003~ -~11090~^~515~^0.542^4^0.030^~1~^~A~^^^2^0.405^0.730^1^0.197^0.888^~2, 3~^~04/01/2003~ -~11090~^~516~^0.089^4^0.003^~1~^~A~^^^2^0.078^0.100^2^0.074^0.103^~2, 3~^~04/01/2003~ -~11090~^~517~^0.110^4^0.015^~1~^~A~^^^2^0.076^0.170^1^-0.064^0.284^~2, 3~^~04/01/2003~ -~11090~^~518~^0.121^4^0.005^~1~^~A~^^^2^0.092^0.140^1^0.060^0.181^~2, 3~^~04/01/2003~ -~11090~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11090~^~606~^0.114^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11090~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2003~ -~11090~^~612~^0.002^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2017~ -~11090~^~613~^0.084^2^^~1~^~A~^^^1^0.021^0.037^1^^^^~01/01/2017~ -~11090~^~614~^0.018^2^^~1~^~A~^^^1^0.006^0.006^^^^^~01/01/2017~ -~11090~^~615~^0.006^2^^~1~^~A~^^^1^0.001^0.003^1^^^^~01/01/2017~ -~11090~^~617~^0.029^2^^~1~^~A~^^^1^0.008^0.012^1^^^^~01/01/2017~ -~11090~^~618~^0.049^2^^~1~^~A~^^^1^0.011^0.023^1^^^^~01/01/2017~ -~11090~^~619~^0.063^2^^~1~^~A~^^^1^0.012^0.031^1^^^^~01/01/2017~ -~11090~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~624~^0.004^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~01/01/2017~ -~11090~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~ -~11090~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11090~^~646~^0.112^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11090~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~687~^0.002^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~01/01/2017~ -~11090~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11090~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2003~ -~11091~^~312~^0.061^4^0.008^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~315~^0.194^4^0.009^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~404~^0.063^4^0.013^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~405~^0.123^4^0.004^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~406~^0.553^4^0.046^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~410~^0.616^4^0.119^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~415~^0.200^4^0.013^~1~^~A~^^^2^^^^^^^~10/01/2002~ -~11091~^~501~^0.034^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~502~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~503~^0.092^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~504~^0.147^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~505~^0.155^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~506~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~508~^0.116^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~509~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~510~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~511~^0.200^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~512~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~514~^0.329^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~515~^0.549^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~517~^0.111^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~518~^0.129^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11091~^~606~^0.079^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~613~^0.056^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~614~^0.013^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~617~^0.029^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~618~^0.051^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~619~^0.119^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~621~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~626~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~629~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11091~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~646~^0.170^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11091~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~687~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11091~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11091~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11092~^~312~^0.038^16^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~315~^0.294^14^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~404~^0.053^45^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~405~^0.096^45^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~406~^0.470^45^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~410~^0.279^5^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~415~^0.130^12^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~502~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~503~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~504~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~506~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~508~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~509~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~510~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~511~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~512~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~513~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~514~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~515~^0.377^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~517~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~518~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11092~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~619~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11092~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11092~^~646~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~312~^0.034^20^0.002^~1~^^^^1^0.018^0.055^19^0.029^0.040^~4~^~10/01/2002~ -~11093~^~315~^0.223^20^0.008^~1~^^^^1^0.150^0.277^19^0.207^0.240^~4~^~10/01/2002~ -~11093~^~404~^0.055^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~405~^0.081^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~406~^0.458^6^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~410~^0.274^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~415~^0.130^7^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~502~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~504~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~510~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~511~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~512~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~513~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~515~^0.417^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11093~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~619~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11093~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11093~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~312~^0.036^17^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~315~^0.256^15^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~404~^0.072^49^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~405~^0.114^48^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~406~^0.462^49^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~410~^0.242^7^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~415~^0.175^16^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~502~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~503~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~504~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~505~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~508~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~509~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~510~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~511~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~512~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~513~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~514~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~515~^0.411^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~517~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~518~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11094~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~613~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~619~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11094~^~646~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~312~^0.043^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~315~^0.325^6^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~404~^0.055^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~405~^0.081^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~406~^0.458^6^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~410~^0.274^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~415~^0.130^7^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~502~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~504~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~510~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~511~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~512~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~513~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~515~^0.417^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11095~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~613~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~617~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~618~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~619~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11095~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11095~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11096~^~312~^0.042^4^0.012^~1~^~A~^^^2^0.015^0.075^2^-0.009^0.092^~1, 2, 3~^~12/01/2002~ -~11096~^~315~^0.395^4^0.093^~1~^~A~^^^2^0.170^0.600^2^-0.005^0.796^~2, 3~^~12/01/2002~ -~11096~^~404~^0.162^4^0.040^~1~^~A~^^^2^0.059^0.238^2^-0.009^0.332^~2, 3~^~12/01/2002~ -~11096~^~405~^0.129^4^0.014^~1~^~A~^^^2^0.080^0.168^2^0.070^0.189^~2, 3~^~12/01/2002~ -~11096~^~406~^1.221^4^0.174^~1~^~A~^^^2^0.423^2.750^2^0.473^1.969^~2, 3~^~12/01/2002~ -~11096~^~410~^0.322^4^0.083^~1~^~A~^^^2^0.128^0.529^2^-0.035^0.679^~2, 3~^~12/01/2002~ -~11096~^~415~^0.171^4^0.036^~1~^~A~^^^2^0.049^0.363^2^0.016^0.326^~2, 3~^~12/01/2002~ -~11096~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~502~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~503~^0.104^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~504~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~505~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~506~^0.048^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~508~^0.128^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~509~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~510~^0.153^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~511~^0.172^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~512~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~513~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~514~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~515~^0.549^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~516~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~517~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~518~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11096~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11096~^~606~^0.083^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11096~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11096~^~609~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~610~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~611~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~612~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~613~^0.073^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~614~^0.011^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~615~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~617~^0.015^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~618~^0.029^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~619~^0.189^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~620~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~621~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~624~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~625~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~626~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~627~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~628~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~629~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~630~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~631~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~645~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11096~^~646~^0.218^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11096~^~652~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~653~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~654~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~672~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~687~^0.029^0^^~4~^~BFSN~^~11097~^^^^^^^^^~01/01/2017~ -~11096~^~689~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11096~^~697~^0.000^0^^~4~^~BFSN~^~11097~^^^^^^^^^~04/01/2003~ -~11097~^~312~^0.075^2^^~1~^~A~^^^1^0.075^0.075^1^^^~1~^~12/01/2002~ -~11097~^~315~^0.380^2^^~1~^~A~^^^1^0.323^0.438^1^^^^~12/01/2002~ -~11097~^~404~^0.169^2^^~1~^~A~^^^1^0.141^0.196^1^^^^~12/01/2002~ -~11097~^~405~^0.140^2^^~1~^~A~^^^1^0.137^0.144^1^^^^~12/01/2002~ -~11097~^~406~^2.015^2^^~1~^~A~^^^1^1.060^2.970^1^^^^~12/01/2002~ -~11097~^~410~^0.448^2^^~1~^~A~^^^1^0.374^0.522^1^^^^~12/01/2002~ -~11097~^~415~^0.220^2^^~1~^~A~^^^1^0.112^0.328^1^^^^~12/01/2002~ -~11097~^~501~^0.052^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~502~^0.128^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~503~^0.125^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~504~^0.206^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~505~^0.239^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~506~^0.058^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~507~^0.047^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~508~^0.154^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~509~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~510~^0.184^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~511~^0.207^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~512~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~513~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~514~^0.434^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~515~^0.662^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~516~^0.148^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~517~^0.158^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~518~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~11097~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11097~^~606~^0.089^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11097~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11097~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~612~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~613~^0.077^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~614~^0.012^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~617~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~618~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~619~^0.201^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~624~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~626~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~628~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~645~^0.046^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11097~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11097~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~653~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~687~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11097~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11097~^~697~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2002~ -~11098~^~312~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~315~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~404~^0.139^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~405~^0.090^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~406~^0.745^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~410~^0.309^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~415~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~501~^0.037^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~502~^0.120^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~503~^0.132^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~504~^0.152^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~505~^0.154^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~506~^0.032^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~507~^0.022^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~508~^0.098^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~510~^0.155^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~511~^0.203^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~512~^0.076^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11098~^~606~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~609~^0.002^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~610~^0.000^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~611~^0.000^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~613~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~614~^0.003^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~617~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~618~^0.045^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~619~^0.099^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~620~^0.001^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~626~^0.002^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11098~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11098~^~646~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~312~^0.083^5^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~315~^0.227^5^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~404~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~406~^0.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~410~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~415~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~502~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~503~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~504~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~505~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~508~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~510~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~511~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11099~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11099~^~606~^0.102^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~609~^0.003^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~612~^0.001^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~613~^0.093^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~614~^0.005^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~617~^0.034^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~618~^0.079^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~619~^0.173^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~620~^0.002^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~621~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~626~^0.004^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~628~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~629~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~631~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11099~^~645~^0.038^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11099~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11100~^~312~^0.033^14^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~315~^0.311^13^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~404~^0.105^37^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~405~^0.122^36^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~406~^0.638^37^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~410~^0.285^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~415~^0.202^13^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~502~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~503~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~504~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~505~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~508~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~510~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~511~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~512~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11100~^~606~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~609~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~613~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~617~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~618~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~619~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~620~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11100~^~645~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11100~^~646~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~312~^0.034^18^0.003^~1~^~A~^^^7^0.000^0.052^17^0.029^0.040^~4~^~11/01/2002~ -~11101~^~315~^0.206^18^0.011^~1~^~A~^^^7^0.135^0.319^17^0.183^0.228^~4~^~11/01/2002~ -~11101~^~404~^0.103^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~405~^0.113^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~406~^0.537^3^0.145^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~410~^0.342^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~415~^0.289^6^0.037^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~502~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~503~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~504~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~505~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~508~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~510~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~511~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11101~^~606~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~613~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~618~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~619~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~620~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11101~^~645~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11101~^~646~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~315~^0.232^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~404~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~410~^0.321^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~415~^0.240^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11104~^~501~^0.006^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~502~^0.026^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~503~^0.030^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~504~^0.032^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~505~^0.067^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~506~^0.009^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~507~^0.006^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~508~^0.033^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~509~^0.018^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~510~^0.033^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~511~^0.105^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~512~^0.031^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~513~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~514~^0.177^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~515~^0.157^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~516~^0.031^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~517~^0.052^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~518~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11104~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11104~^~606~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~613~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~617~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~618~^0.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~619~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~645~^0.037^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11104~^~646~^0.059^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~312~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~315~^0.270^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~404~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~405~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~406~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~410~^0.353^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~415~^0.279^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11105~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~502~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~503~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~504~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~505~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~508~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~511~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~512~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~514~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~515~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~516~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~517~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11105~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11105~^~606~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~613~^0.023^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~617~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~618~^0.052^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~619~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~645~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11105~^~646~^0.055^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11106~^~312~^0.103^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~315~^0.274^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11106~^~410~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~415~^0.096^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11106~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11107~^~312~^0.059^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~315~^0.156^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~404~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~405~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11107~^~410~^0.018^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~415~^0.052^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11107~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11108~^~312~^0.037^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~315~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~404~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~405~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~406~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11108~^~410~^0.011^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~415~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11108~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11109~^~312~^0.019^31^0.002^~6~^~JA~^^^5^0.000^0.047^17^0.015^0.022^~1, 2, 3~^~03/01/2006~ -~11109~^~315~^0.160^31^0.012^~6~^~JA~^^^5^0.085^0.444^19^0.135^0.186^~2, 3~^~03/01/2006~ -~11109~^~404~^0.061^4^0.007^~1~^~A~^^^1^0.039^0.072^3^0.037^0.085^~2, 3~^~03/01/2006~ -~11109~^~405~^0.040^4^0.002^~1~^~A~^^^1^0.037^0.046^3^0.034^0.046^~2, 3~^~03/01/2006~ -~11109~^~406~^0.234^4^0.069^~1~^~A~^^^1^0.037^0.355^3^0.015^0.453^~1, 2, 3~^~03/01/2006~ -~11109~^~410~^0.212^4^0.008^~1~^~A~^^^1^0.191^0.227^3^0.186^0.238^~2, 3~^~03/01/2006~ -~11109~^~415~^0.124^4^0.020^~1~^~A~^^^1^0.085^0.181^3^0.059^0.189^~2, 3~^~03/01/2006~ -~11109~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~502~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~504~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~505~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~508~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~510~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~511~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~513~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~514~^0.122^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~515~^0.294^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~517~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~518~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11109~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11109~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11109~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~613~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~617~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~618~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11109~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~645~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11109~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11109~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~03/01/2006~ -~11110~^~315~^0.205^4^0.038^~1~^~A~^^^1^0.120^0.299^3^0.083^0.328^~2, 3~^~03/01/2006~ -~11110~^~404~^0.061^4^0.005^~1~^~A~^^^1^0.052^0.074^3^0.045^0.076^~2, 3~^~03/01/2006~ -~11110~^~405~^0.038^4^0.004^~1~^~A~^^^1^0.027^0.047^3^0.025^0.052^~2, 3~^~03/01/2006~ -~11110~^~406~^0.248^4^0.007^~1~^~A~^^^1^0.233^0.264^3^0.224^0.271^~2, 3~^~03/01/2006~ -~11110~^~410~^0.174^4^0.011^~1~^~A~^^^1^0.146^0.192^3^0.140^0.209^~2, 3~^~03/01/2006~ -~11110~^~415~^0.112^4^0.003^~1~^~A~^^^1^0.104^0.119^3^0.102^0.123^~2, 3~^~03/01/2006~ -~11110~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~502~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~504~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~505~^0.043^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~508~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~510~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~511~^0.074^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~513~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~514~^0.121^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~515~^0.292^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~517~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~518~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11110~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~607~^0.000^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11110~^~608~^0.000^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~ -~11110~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~613~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~617~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~618~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~619~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~626~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11110~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~645~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~646~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11110~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11110~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11112~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~12/01/2002~ -~11112~^~315~^0.243^4^0.011^~1~^~A~^^^1^0.215^0.267^3^0.209^0.278^~2, 3~^~11/01/2002~ -~11112~^~404~^0.064^4^0.005^~1~^~A~^^^1^0.052^0.074^3^0.049^0.078^~2, 3~^~12/01/2002~ -~11112~^~405~^0.069^4^0.002^~1~^~A~^^^1^0.064^0.075^3^0.062^0.077^~2, 3~^~12/01/2002~ -~11112~^~406~^0.418^4^0.029^~1~^~A~^^^1^0.344^0.485^3^0.325^0.511^~2, 3~^~12/01/2002~ -~11112~^~410~^0.147^4^0.025^~1~^~A~^^^1^0.116^0.219^3^0.069^0.225^~2, 3~^~11/01/2002~ -~11112~^~415~^0.209^4^0.007^~1~^~A~^^^1^0.197^0.229^3^0.186^0.231^~2, 3~^~12/01/2002~ -~11112~^~501~^0.012^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~502~^0.039^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~503~^0.034^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~504~^0.046^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~505~^0.049^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~506~^0.014^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~507~^0.012^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~508~^0.036^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~509~^0.022^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~510~^0.048^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~511~^0.083^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~512~^0.024^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~513~^0.048^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~514~^0.136^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~515~^0.329^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~516~^0.034^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~517~^0.054^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~518~^0.059^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11112~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11112~^~606~^0.021^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~611~^0.001^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~612~^0.001^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~613~^0.019^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~614~^0.001^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~617~^0.012^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~618~^0.034^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~619~^0.045^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~620~^0.001^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11112~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11112~^~646~^0.080^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11113~^~312~^0.054^3^0.037^~1~^~A~^^^1^0.017^0.129^2^-0.107^0.215^~1, 2, 3~^~12/01/2002~ -~11113~^~315~^0.223^3^0.035^~1~^~A~^^^1^0.153^0.260^2^0.072^0.375^~2, 3~^~12/01/2002~ -~11113~^~404~^0.071^4^0.007^~1~^~A~^^^1^0.055^0.084^3^0.048^0.093^~2, 3~^~12/01/2002~ -~11113~^~405~^0.060^4^0.003^~1~^~A~^^^1^0.055^0.070^3^0.050^0.070^~2, 3~^~12/01/2002~ -~11113~^~406~^0.382^4^0.043^~1~^~A~^^^1^0.278^0.458^3^0.246^0.519^~2, 3~^~12/01/2002~ -~11113~^~410~^0.154^4^0.017^~1~^~A~^^^1^0.122^0.198^3^0.099^0.210^~2, 3~^~12/01/2002~ -~11113~^~415~^0.225^4^0.022^~1~^~A~^^^1^0.192^0.291^3^0.153^0.297^~2, 3~^~12/01/2002~ -~11113~^~501~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~502~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~503~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~504~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~505~^0.051^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~506~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~508~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~509~^0.023^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~510~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~511~^0.088^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~512~^0.026^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~513~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~514~^0.144^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~515~^0.346^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~516~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~517~^0.056^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~518~^0.062^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11113~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11113~^~606~^0.011^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11113~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~613~^0.010^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~614~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~617~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~618~^0.019^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~619~^0.024^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11113~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11113~^~646~^0.043^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11114~^~312~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~315~^0.180^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~404~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~410~^0.187^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11114~^~415~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~502~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~503~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~504~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~505~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~508~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~510~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~511~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~513~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~514~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~515~^0.445^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~516~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~517~^0.393^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~518~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11114~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11114~^~606~^0.013^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~613~^0.012^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~614~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~617~^0.007^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~618~^0.021^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~619~^0.028^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11114~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11114~^~646~^0.049^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11115~^~312~^0.052^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11115~^~315~^0.152^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11115~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~406~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~410~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11115~^~415~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~502~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~503~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~510~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~511~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~514~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~515~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~516~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~517~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~518~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11115~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11115~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~312~^0.021^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~315~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~405~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~410~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~415~^0.194^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11116~^~501~^0.015^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~502~^0.049^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~503~^0.085^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~504~^0.088^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~505~^0.089^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~506~^0.009^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~507~^0.017^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~508~^0.044^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~509~^0.029^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~510~^0.066^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~511~^0.084^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~512~^0.026^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~513~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~514~^0.108^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~515~^0.360^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~516~^0.043^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~517~^0.031^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~518~^0.048^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11116~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11116~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~613~^0.024^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~614~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~617~^0.015^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~618~^0.042^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~619~^0.055^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11116~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11116~^~646~^0.096^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11117~^~312~^0.019^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~315~^0.144^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~404~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~405~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~406~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~410~^0.079^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~415~^0.166^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11117~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~503~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~505~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~508~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~511~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~512~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~513~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~514~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~515~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~518~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11117~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11117~^~606~^0.021^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~611~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~612~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~613~^0.017^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~614~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~617~^0.011^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~618~^0.031^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~619~^0.041^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~645~^0.012^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11117~^~646~^0.077^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11118~^~312~^0.024^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~404~^0.010^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~405~^0.210^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~406~^1.100^1^^~4~^~T~^^^^^^^^^^~11/01/2014~ -~11118~^~415~^0.213^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~606~^0.067^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~607~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~608~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~609~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~610~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~611~^0.003^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~612~^0.003^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~613~^0.057^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~614~^0.003^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~617~^0.037^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~618~^0.104^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~619~^0.137^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~620~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~621~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~626~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~627~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~628~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~629~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~630~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~631~^0.000^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~ -~11118~^~645~^0.037^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11118~^~646~^0.241^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11119~^~312~^0.036^11^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~315~^0.190^11^0.077^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~405~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~410~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~415~^0.232^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~501~^0.012^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~502~^0.039^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~503~^0.068^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~504~^0.070^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~505~^0.071^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~506~^0.007^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~507~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~508~^0.035^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~509~^0.023^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~510~^0.053^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~511~^0.067^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~512~^0.021^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~513~^0.069^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~514~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~515~^0.288^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~516~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~517~^0.025^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~518~^0.038^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11119~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11119~^~606~^0.043^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~613~^0.038^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~614~^0.005^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~617~^0.021^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~618~^0.015^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~619~^0.057^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~626~^0.002^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11119~^~645~^0.023^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11119~^~646~^0.072^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11120~^~312~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~315~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~404~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~405~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~410~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~415~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~502~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~504~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~505~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~508~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~509~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~510~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~511~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~512~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~513~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~515~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~516~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11120~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~619~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11120~^~646~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~312~^0.231^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~315~^0.256^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~410~^0.338^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~415~^0.116^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~ -~11122~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11122~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~613~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~618~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~645~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11122~^~646~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~315~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11123~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~406~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~410~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11123~^~415~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11123~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11123~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~618~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11123~^~646~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11124~^~312~^0.045^70^0.007^~6~^~JA~^^^7^0.009^0.106^6^0.028^0.062^~1, 2~^~03/01/2003~ -~11124~^~315~^0.143^66^0.006^~6~^~JA~^^^7^0.063^0.390^6^0.128^0.159^~2~^~03/01/2003~ -~11124~^~404~^0.066^21^0.011^~6~^~JA~^^^2^0.020^0.085^1^-0.071^0.204^~2~^~03/01/2003~ -~11124~^~405~^0.058^19^0.013^~6~^~JA~^^^2^0.040^0.087^1^-0.105^0.221^~2~^~03/01/2003~ -~11124~^~406~^0.983^19^0.215^~6~^~JA~^^^2^0.577^1.410^1^-1.742^3.709^~2~^~03/01/2003~ -~11124~^~410~^0.273^9^0.145^~6~^~JA~^^^2^0.110^0.672^1^-1.571^2.117^~2~^~03/01/2003~ -~11124~^~415~^0.138^19^0.030^~6~^~JA~^^^2^0.090^0.231^1^-0.248^0.523^~2~^~03/01/2003~ -~11124~^~501~^0.012^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~502~^0.191^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~503~^0.077^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~504~^0.102^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~505~^0.101^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~506~^0.020^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~507~^0.083^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~508~^0.061^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~509~^0.043^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~510~^0.069^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~511~^0.091^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~512~^0.040^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~513~^0.113^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~514~^0.190^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~515~^0.366^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~516~^0.047^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~517~^0.054^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~518~^0.054^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11124~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11124~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~11124~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11124~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~11124~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~613~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~01/01/2016~ -~11124~^~614~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11124~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~617~^0.011^2^^~1~^~A~^^^1^0.002^0.020^1^^^~1~^~01/01/2016~ -~11124~^~618~^0.100^2^^~1~^~A~^^^1^0.090^0.110^1^^^^~01/01/2016~ -~11124~^~619~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11124~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~626~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11124~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~11124~^~646~^0.102^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~ -~11124~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11124~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~04/01/2003~ -~11125~^~315~^0.155^4^0.038^~1~^~A~^^^1^0.077^0.244^3^0.034^0.277^~2, 3~^~04/01/2003~ -~11125~^~404~^0.066^4^0.003^~1~^~A~^^^1^0.057^0.070^3^0.056^0.076^~2, 3~^~04/01/2003~ -~11125~^~405~^0.044^4^0.002^~1~^~A~^^^1^0.040^0.048^3^0.037^0.050^~2, 3~^~04/01/2003~ -~11125~^~406~^0.645^4^0.031^~1~^~A~^^^1^0.570^0.698^3^0.546^0.744^~2, 3~^~04/01/2003~ -~11125~^~410~^0.232^4^0.006^~1~^~A~^^^1^0.219^0.244^3^0.213^0.252^~2, 3~^~04/01/2003~ -~11125~^~415~^0.153^4^0.004^~1~^~A~^^^1^0.144^0.163^3^0.140^0.166^~2, 3~^~04/01/2003~ -~11125~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~502~^0.157^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~503~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~504~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~505~^0.083^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~506~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~507~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~508~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~509~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~510~^0.056^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~511~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~512~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~513~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~514~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~515~^0.301^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~516~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~517~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~518~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11125~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11125~^~606~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11125~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11125~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11125~^~613~^0.029^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~08/01/2007~ -~11125~^~614~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11125~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~617~^0.005^2^^~1~^~A~^^^1^0.002^0.010^1^^^~1~^~08/01/2007~ -~11125~^~618~^0.087^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~08/01/2007~ -~11125~^~619~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11125~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11125~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~626~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11125~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11125~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~646~^0.089^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11125~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11125~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11125~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11126~^~312~^0.103^73^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~315~^0.450^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~404~^0.019^167^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~405~^0.027^167^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~406~^0.421^164^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~410~^0.139^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~415~^0.112^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11126~^~501~^0.006^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~502~^0.021^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~503~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~504~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~505~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~506~^0.004^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11126~^~507~^0.005^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11126~^~508~^0.018^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~509~^0.011^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~510~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~511~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~512~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11126~^~513~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~514~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~515~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~516~^0.017^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~517~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~518~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11126~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11126~^~606~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11126~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11126~^~613~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11126~^~617~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~618~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11126~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~11126~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11126~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11126~^~645~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11126~^~646~^0.065^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11128~^~312~^0.104^10^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~315~^0.450^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~404~^0.018^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~405~^0.030^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~406~^0.552^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~410~^0.135^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~415~^0.112^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~501~^0.008^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~502~^0.132^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~503~^0.053^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~504~^0.070^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~505~^0.070^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~506~^0.014^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~507~^0.057^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~508~^0.042^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~509~^0.029^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~510~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~511~^0.063^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~512~^0.027^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~513~^0.078^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~514~^0.131^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~515~^0.253^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~516~^0.032^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~517~^0.037^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~518~^0.037^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11128~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11128~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11128~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11128~^~646~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~312~^0.074^5^0.006^~1~^~A~^^^1^0.056^0.088^4^0.058^0.090^~2, 3~^~01/01/2003~ -~11130~^~315~^0.171^5^0.004^~1~^~A~^^^1^0.156^0.177^4^0.160^0.182^~2, 3~^~01/01/2003~ -~11130~^~404~^0.044^3^0.001^~1~^~A~^^^1^0.043^0.045^2^0.041^0.047^~2, 3~^~01/01/2003~ -~11130~^~405~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~2, 3~^~01/01/2003~ -~11130~^~406~^0.464^3^0.007^~1~^~A~^^^1^0.453^0.477^2^0.434^0.494^~2, 3~^~01/01/2003~ -~11130~^~410~^0.187^3^0.008^~1~^~A~^^^1^0.171^0.200^2^0.150^0.224^~2, 3~^~01/01/2003~ -~11130~^~415~^0.095^3^0.000^~1~^~A~^^^1^0.094^0.095^2^0.093^0.096^~2, 3~^~01/01/2003~ -~11130~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~503~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~504~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~508~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~509~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~511~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~514~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~515~^0.212^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~516~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~517~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11130~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11130~^~606~^0.047^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~618~^0.247^3^0.017^~1~^~A~^^^1^0.146^0.205^2^0.104^0.254^~2, 3~^~08/01/2007~ -~11130~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11130~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11130~^~645~^0.014^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11130~^~646~^0.263^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11131~^~312~^0.082^3^0.008^~1~^~A~^^^1^0.072^0.097^2^0.050^0.115^~2, 3~^~01/01/2003~ -~11131~^~315~^0.167^3^0.007^~1~^~A~^^^1^0.157^0.180^2^0.138^0.196^~2, 3~^~01/01/2003~ -~11131~^~404~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~01/01/2003~ -~11131~^~405~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~2, 3~^~01/01/2003~ -~11131~^~406~^0.416^3^0.040^~1~^~A~^^^1^0.337^0.461^2^0.245^0.587^~2, 3~^~01/01/2003~ -~11131~^~410~^0.174^2^^~1~^~A~^^^1^0.168^0.180^1^^^^~01/01/2003~ -~11131~^~415~^0.084^3^0.005^~1~^~A~^^^1^0.077^0.094^2^0.061^0.106^~2, 3~^~01/01/2003~ -~11131~^~501~^0.007^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~502~^0.119^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~503~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~504~^0.063^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~505~^0.063^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~506~^0.013^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~507~^0.051^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~508~^0.038^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~509~^0.026^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~510~^0.043^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~511~^0.057^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~512~^0.025^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~513~^0.070^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~514~^0.118^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~515~^0.228^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~516~^0.029^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~517~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~518~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11131~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11131~^~606~^0.120^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~611~^0.006^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~612~^0.006^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~613~^0.101^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~614~^0.006^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~617~^0.025^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~618~^0.289^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~619~^0.044^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~626~^0.006^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11131~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~646~^0.334^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11131~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11131~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11134~^~312~^0.100^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~315~^0.384^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~404~^0.087^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~405~^0.048^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~406~^0.854^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~410~^0.107^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~415~^0.088^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11134~^~501~^0.019^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~502~^0.028^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~503~^0.027^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~504~^0.039^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~505~^0.044^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~506~^0.011^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~507~^0.028^20^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~508~^0.026^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~509~^0.017^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~510~^0.035^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~511~^0.137^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~512~^0.020^23^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~513~^0.038^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~514~^0.079^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~515~^0.206^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~516~^0.028^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~517~^0.033^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~518~^0.033^22^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11134~^~606~^0.074^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11134~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~613~^0.069^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~617~^0.075^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~618~^0.032^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~619~^0.017^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11134~^~645~^0.075^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11134~^~646~^0.048^0^^~1~^^^^^^^^^^^~12/01/1996~ -~11135~^~312~^0.039^19^0.003^~6~^~JA~^^^2^0.021^0.042^14^0.032^0.045^~2, 3~^~12/01/2008~ -~11135~^~315~^0.155^19^0.005^~6~^~JA~^^^2^0.131^0.169^16^0.144^0.165^~2, 3~^~12/01/2008~ -~11135~^~404~^0.050^19^0.003^~6~^~JA~^^^2^0.020^0.057^15^0.044^0.055^~2, 3~^~12/01/2008~ -~11135~^~405~^0.060^19^0.003^~6~^~JA~^^^2^0.050^0.063^14^0.053^0.067^~2, 3~^~12/01/2008~ -~11135~^~406~^0.507^19^0.019^~6~^~JA~^^^2^0.420^0.526^14^0.467^0.548^~2, 3~^~12/01/2008~ -~11135~^~410~^0.667^16^0.022^~6~^~JA~^^^2^0.630^0.750^13^0.619^0.715^~2, 3~^~12/01/2008~ -~11135~^~415~^0.184^17^0.007^~6~^~JA~^^^2^0.050^0.222^13^0.169^0.199^~2, 3~^~12/01/2008~ -~11135~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~502~^0.076^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~503~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~504~^0.106^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~505~^0.217^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~506~^0.020^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~508~^0.065^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~509~^0.051^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~511~^0.086^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~512~^0.056^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~513~^0.116^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~514~^0.177^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~515~^0.257^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~516~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~517~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~518~^0.086^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~11135~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11135~^~606~^0.130^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~11135~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/2008~ -~11135~^~608~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^2^^^~1~^~11/01/2008~ -~11135~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~610~^0.018^2^^~1~^~A~^^^1^0.009^0.009^1^^^^~05/01/2014~ -~11135~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~613~^0.093^2^^~1~^~A~^^^1^0.046^0.046^1^^^^~05/01/2014~ -~11135~^~614~^0.009^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~05/01/2014~ -~11135~^~615~^0.003^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~05/01/2014~ -~11135~^~617~^0.027^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~11135~^~618~^0.016^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~11135~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~11135~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~624~^0.002^2^^~1~^~A~^^^1^0.001^0.001^1^^^^~05/01/2014~ -~11135~^~625~^0.002^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2014~ -~11135~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~11135~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~ -~11135~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~11/01/2008~ -~11135~^~645~^0.034^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~11135~^~646~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~11135~^~652~^0.002^2^^~1~^~A~^^^1^0.001^0.001^1^^^^~05/01/2014~ -~11135~^~653~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~11/01/2008~ -~11135~^~654~^0.002^2^^~1~^~A~^^^1^0.001^0.001^1^^^^~05/01/2014~ -~11135~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~670~^0.003^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~05/01/2014~ -~11135~^~671~^0.002^2^^~1~^~A~^^^1^0.001^0.001^1^^^^~05/01/2014~ -~11135~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~673~^0.003^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~05/01/2014~ -~11135~^~674~^0.027^2^^~1~^~A~^^^1^0.013^0.014^1^^^^~05/01/2014~ -~11135~^~675~^0.013^2^^~1~^~A~^^^1^0.005^0.008^1^^^^~05/01/2014~ -~11135~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~ -~11135~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11135~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~11135~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~851~^0.015^2^^~1~^~A~^^^1^0.004^0.011^1^^^^~05/01/2014~ -~11135~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11135~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~12/01/2008~ -~11136~^~312~^0.018^28^0.002^~1~^^^^4^0.009^0.050^7^0.014^0.022^~2, 3~^~03/01/2006~ -~11136~^~315~^0.132^28^0.004^~1~^^^^4^0.088^0.179^21^0.122^0.141^~2, 3~^~03/01/2006~ -~11136~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~405~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~406~^0.410^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~410~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~415~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~502~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~504~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~505~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~508~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~509~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~510~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~511~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~513~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~514~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~515~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~516~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~517~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~518~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11136~^~606~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~617~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~618~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~619~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11136~^~645~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11136~^~646~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~312~^0.031^5^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~315~^0.197^7^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~404~^0.051^40^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~405~^0.070^40^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~406~^0.429^40^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~410~^0.136^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~415~^0.123^8^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~502~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~503~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~504~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~505~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~508~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~510~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~511~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~513~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~515~^0.268^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~516~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~517~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~518~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11137~^~606~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~613~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~619~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11137~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11137~^~646~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~312~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~315~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~404~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~406~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~410~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~415~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~502~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~503~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~505~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~509~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~510~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~511~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~513~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~514~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~515~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~518~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11138~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11138~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~613~^0.030^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~614~^0.004^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~617~^0.015^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~618~^0.024^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~619~^0.081^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11138~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11138~^~646~^0.105^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11141~^~312~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~315~^0.158^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~410~^0.352^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11141~^~415~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11141~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11141~^~606~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~613~^0.069^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~617~^0.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~618~^0.148^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~645~^0.058^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11141~^~646~^0.148^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11142~^~312~^0.043^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11142~^~315~^0.096^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11142~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~405~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~406~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~410~^0.203^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11142~^~415~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11142~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11143~^~312~^0.035^55^0.004^~6~^~JA~^^^7^0.005^0.197^54^0.027^0.043^~4~^~09/01/2002~ -~11143~^~315~^0.103^56^0.005^~6~^~JA~^^^7^0.035^0.227^55^0.093^0.114^~4~^~09/01/2002~ -~11143~^~404~^0.021^8^0.001^~1~^~A~^^^2^0.016^0.028^4^0.018^0.024^~2, 3~^~09/01/2002~ -~11143~^~405~^0.057^8^0.005^~1~^~A~^^^2^0.038^0.084^5^0.045^0.070^~2, 3~^~09/01/2002~ -~11143~^~406~^0.320^6^0.043^~1~^~A~^^^2^0.222^0.485^2^0.093^0.548^~2, 3~^~09/01/2002~ -~11143~^~410~^0.246^8^0.019^~1~^~A~^^^2^0.150^0.363^4^0.193^0.299^~2, 3~^~08/01/2002~ -~11143~^~415~^0.074^8^0.011^~1~^~A~^^^2^0.047^0.153^3^0.042^0.106^~2, 3~^~09/01/2002~ -~11143~^~501~^0.009^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~502~^0.020^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~503~^0.021^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~504~^0.032^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~505~^0.027^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~506~^0.005^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~507~^0.004^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~508~^0.020^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~509~^0.009^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~510~^0.027^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~511~^0.020^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~512~^0.012^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~513~^0.023^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~514~^0.117^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~515~^0.090^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~516~^0.021^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~517~^0.018^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~518~^0.020^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11143~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11143~^~606~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11143~^~607~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~608~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~609~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~610~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~611~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~612~^0.001^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~613~^0.037^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~614~^0.004^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~617~^0.031^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~618~^0.079^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~619~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~620~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11143~^~626~^0.001^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~627~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~628~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11143~^~630~^0.000^0^^~4~^~BFFN~^~11144~^^^^^^^^^~03/01/2006~ -~11143~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11143~^~645~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11143~^~646~^0.079^0^^~4~^~NC~^~11144~^^^^^^^^^~03/01/2006~ -~11144~^~312~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~315~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~404~^0.023^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~405~^0.070^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~406~^0.372^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~410~^0.317^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~415~^0.086^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~ -~11144~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~505~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~510~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~514~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~515~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11144~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~617~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11144~^~645~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11144~^~646~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~312~^0.040^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~315~^0.688^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~404~^0.055^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~405~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~406~^0.550^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~410~^0.183^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~415~^0.050^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11145~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~502~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~503~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~509~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~511~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~514~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~515~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11145~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11147~^~312~^0.179^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11147~^~315~^0.366^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11147~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~405~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~410~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~415~^0.099^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11147~^~501~^0.017^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~502~^0.083^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~503~^0.147^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~504~^0.130^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~505~^0.099^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~506~^0.019^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~508~^0.110^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~510~^0.110^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~511~^0.117^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~512~^0.036^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11147~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11147~^~606~^0.030^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~612~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~613~^0.030^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~614~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~617~^0.040^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~618~^0.063^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~619~^0.007^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~645~^0.040^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11147~^~646~^0.070^0^^~4~^^^^^^^^^^^~01/01/2007~ -~11148~^~312~^0.163^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~315~^0.334^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~405~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~406~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~415~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11148~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~502~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~503~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~504~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~505~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~510~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~511~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11148~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11148~^~606~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~613~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~617~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~618~^0.025^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~619~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~645~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11148~^~646~^0.028^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~312~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11149~^~315~^0.189^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11149~^~404~^0.025^3^0.003^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~405~^0.029^3^0.006^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~406~^0.470^3^0.028^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~410~^0.249^3^0.097^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~415~^0.076^3^0.023^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11149~^~501~^0.011^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~502~^0.040^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~503~^0.044^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~504~^0.077^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~505~^0.039^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~506~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11149~^~508~^0.047^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~509~^0.032^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~510~^0.063^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~511~^0.035^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~512~^0.015^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~513~^0.051^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~514~^0.092^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~515~^0.125^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~516~^0.041^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~517~^0.044^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~518~^0.047^1^^~1~^^^^^^^^^^^~12/01/1996~ -~11149~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11149~^~606~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~613~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~614~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~617~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~618~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~619~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11149~^~645~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11149~^~646~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11150~^~312~^0.110^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11150~^~315~^0.169^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11150~^~404~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~406~^0.420^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~410~^0.408^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~415~^0.118^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11150~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~510~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~511~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~514~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~515~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~516~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~517~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11150~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11150~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11150~^~607~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~608~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~609~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~610~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~611~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~612~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~613~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~614~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~617~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~618~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~619~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~620~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~621~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~626~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~627~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~628~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~629~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~630~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~631~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11150~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11150~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11151~^~312~^0.051^4^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~315~^0.100^4^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~404~^0.062^4^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~405~^0.027^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~406~^0.160^4^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~410~^0.145^4^0.023^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~415~^0.042^4^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~505~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~511~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11151~^~606~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11151~^~646~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~312~^0.295^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~315~^0.429^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~404~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~410~^1.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~415~^0.105^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11152~^~501~^0.031^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~502~^0.047^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~503~^0.101^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~504~^0.074^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~505~^0.067^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~506~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~508~^0.041^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~510~^0.077^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~511~^0.124^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~512~^0.029^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11152~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~618~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11152~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11152~^~646~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~315~^0.233^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~410~^0.323^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~415~^0.241^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11154~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11154~^~606~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11154~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~312~^0.157^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~315~^0.373^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~404~^0.078^3^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~405~^0.115^3^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~406~^0.647^3^0.091^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~410~^0.324^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~415~^0.138^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~502~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~503~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~504~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~505~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~509~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~510~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~511~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~513~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~514~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~515~^0.677^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~516~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~517~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11156~^~606~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~612~^0.034^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~613~^0.103^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~614~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~617~^0.095^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~618~^0.252^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~619~^0.015^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11156~^~645~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11156~^~646~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11157~^~312~^0.137^1^^~1~^~A~^^^^^^^^^^~07/01/2003~ -~11157~^~315~^0.943^2^^~1~^~A~^^^1^0.454^1.431^^^^^~07/01/2003~ -~11157~^~404~^0.130^2^^~1~^~A~^^^1^0.111^0.148^^^^^~07/01/2003~ -~11157~^~405~^0.144^2^^~1~^~A~^^^1^0.115^0.172^^^^^~07/01/2003~ -~11157~^~406~^0.531^2^^~1~^~A~^^^1^0.370^0.692^^^^^~07/01/2003~ -~11157~^~410~^0.221^2^^~1~^~A~^^^1^0.199^0.242^^^^^~07/01/2003~ -~11157~^~415~^0.176^2^^~1~^~A~^^^1^0.160^0.192^^^^^~07/01/2003~ -~11157~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11158~^~312~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~315~^0.355^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~404~^0.021^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~405~^0.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~406~^0.720^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11158~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~415~^0.118^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11158~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11158~^~606~^0.022^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~613~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~618~^0.034^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~619~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~645~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11158~^~646~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~312~^0.046^15^0.016^~6~^~JA~^^^2^0.039^0.086^10^0.010^0.082^~2, 3~^~08/01/2012~ -~11161~^~315~^0.658^14^0.066^~6~^~JA~^^^2^0.276^2.178^3^0.451^0.865^~2, 3~^~08/01/2012~ -~11161~^~404~^0.054^3^0.020^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~405~^0.130^3^0.062^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~406~^0.742^3^0.151^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~410~^0.267^3^0.092^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~415~^0.165^3^0.040^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11161~^~501~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~502~^0.086^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~503~^0.100^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~504~^0.151^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~505~^0.117^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~506~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~507~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~508~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~509~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~510~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~511~^0.125^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~512~^0.047^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~513~^0.105^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~514~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~515~^0.204^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~516~^0.094^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~517~^0.105^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~518~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11161~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11161~^~606~^0.055^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~613~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~617~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~618~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~619~^0.108^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~620~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11161~^~645~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11161~^~646~^0.201^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11162~^~312~^0.051^30^0.004^~6~^~JA~^^^5^0.010^0.215^5^0.042^0.060^~2, 3~^~08/01/2012~ -~11162~^~315~^0.510^30^0.032^~6~^~JA~^^^5^0.196^1.323^21^0.444^0.577^~2, 3~^~08/01/2012~ -~11162~^~404~^0.040^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~405~^0.106^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~406~^0.575^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~410~^0.218^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~415~^0.128^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11162~^~501~^0.027^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~502~^0.074^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~503~^0.086^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~504~^0.130^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~505~^0.101^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~506~^0.028^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~507~^0.022^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~508~^0.075^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~509~^0.056^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~510~^0.104^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~511~^0.108^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~512~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~513~^0.090^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~514~^0.161^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~515~^0.176^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~516~^0.081^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~517~^0.090^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~518~^0.067^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11162~^~606~^0.047^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~611~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~612~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~613~^0.039^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~614~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~617~^0.025^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~618~^0.070^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~619~^0.093^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~620~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11162~^~645~^0.026^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11162~^~646~^0.173^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11163~^~312~^0.053^3^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~315~^0.633^3^0.228^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~404~^0.050^13^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~405~^0.110^13^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~406~^0.641^13^0.063^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~410~^0.110^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~415~^0.115^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~502~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~503~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~504~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~508~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~510~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~511~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~512~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~513~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~514~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~515~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~516~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~517~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~518~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11163~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11163~^~606~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~613~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~617~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~618~^0.072^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~619~^0.096^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~620~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~645~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11163~^~646~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11164~^~312~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~315~^0.663^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~404~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~405~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~406~^0.635^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~410~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~415~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~502~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~504~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~509~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~510~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~511~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~513~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~514~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~515~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~516~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~517~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11164~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11164~^~606~^0.060^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~613~^0.048^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~617~^0.008^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~618~^0.060^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~619~^0.127^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~626~^0.007^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~645~^0.020^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11164~^~646~^0.210^0^^~4~^^^^^^^^^^^~02/01/1994~ -~11165~^~312~^0.225^2^^~1~^^^^1^0.186^0.264^1^^^^~03/01/2007~ -~11165~^~315~^0.426^2^^~1~^^^^1^0.373^0.478^1^^^^~03/01/2007~ -~11165~^~404~^0.067^3^0.023^~1~^^^^1^0.025^0.102^2^-0.030^0.164^~2, 3~^~08/01/2002~ -~11165~^~405~^0.162^3^0.033^~1~^^^^1^0.120^0.226^2^0.021^0.302^~2, 3~^~08/01/2002~ -~11165~^~406~^1.114^3^0.195^~1~^^^^1^0.730^1.369^2^0.273^1.955^~2, 3~^~08/01/2002~ -~11165~^~410~^0.570^2^^~1~^^^^1^0.535^0.605^1^^^^~03/01/2007~ -~11165~^~415~^0.149^3^0.019^~1~^^^^1^0.117^0.184^2^0.066^0.233^~2, 3~^~08/01/2002~ -~11165~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11165~^~606~^0.014^0^^~4~^^^^^^^^^^^~04/01/2001~ -~11165~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~613~^0.012^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~614~^0.001^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~617~^0.273^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~618~^0.040^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~626~^0.002^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2001~ -~11165~^~645~^0.275^0^^~4~^^^^^^^^^^^~04/01/2001~ -~11165~^~646~^0.040^0^^~4~^^^^^^^^^^^~04/01/2001~ -~11167~^~312~^0.054^103^0.005^~6~^~JA~^^^2^0.054^0.072^100^0.044^0.064^~2, 3~^~04/01/2009~ -~11167~^~315~^0.163^92^0.014^~6~^~JA~^^^2^0.161^0.258^89^0.135^0.190^~2, 3~^~04/01/2009~ -~11167~^~404~^0.155^2^^~6~^~JA~^^^2^0.110^0.200^^^^^~04/01/2009~ -~11167~^~405~^0.055^2^^~6~^~JA~^^^2^0.050^0.060^^^^^~04/01/2009~ -~11167~^~406~^1.770^2^^~6~^~JA~^^^2^1.700^1.840^^^^^~04/01/2009~ -~11167~^~410~^0.717^7^0.051^~6~^~JA~^^^2^0.460^0.760^5^0.585^0.849^~2, 3~^~04/01/2009~ -~11167~^~415~^0.093^7^0.008^~6~^~JA~^^^2^0.055^0.324^5^0.074^0.113^~2, 3~^~04/01/2009~ -~11167~^~501~^0.023^17^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~502~^0.129^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~503~^0.129^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~504~^0.348^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~505~^0.137^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~506~^0.067^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~507~^0.026^3^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~508~^0.150^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~509~^0.123^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~510~^0.185^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~511~^0.131^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~512~^0.089^21^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~513~^0.295^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~514~^0.244^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~515~^0.636^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~516~^0.127^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~517~^0.292^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~518~^0.153^5^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11167~^~606~^0.325^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2009~ -~11167~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~613~^0.262^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~614~^0.045^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~617~^0.419^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~618~^0.472^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~620~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~629~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^^^^~1~^~05/01/2009~ -~11167~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~645~^0.432^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~646~^0.487^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11167~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~663~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11167~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~665~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11167~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~673~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~674~^0.416^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~675~^0.468^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11167~^~693~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11167~^~695~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11167~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~851~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11167~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11167~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11168~^~312~^0.049^30^0.003^~6~^~JA~^^^5^0.000^0.086^14^0.043^0.054^~2, 3~^~04/01/2009~ -~11168~^~315~^0.167^31^0.008^~6~^~JA~^^^5^0.078^0.271^22^0.150^0.184^~2, 3~^~04/01/2009~ -~11168~^~404~^0.093^3^0.009^~1~^~A~^^^1^0.080^0.110^2^0.055^0.131^~2, 3~^~04/01/2009~ -~11168~^~405~^0.057^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.042^0.071^~2, 3~^~04/01/2009~ -~11168~^~406~^1.683^9^0.061^~6~^~JA~^^^2^1.614^1.930^6^1.534^1.831^~2, 3~^~04/01/2009~ -~11168~^~410~^0.792^9^0.025^~6~^~JA~^^^2^0.590^0.878^6^0.730^0.854^~2, 3~^~04/01/2009~ -~11168~^~415~^0.139^9^0.011^~6~^~JA~^^^2^0.060^0.338^4^0.109^0.170^~2, 3~^~04/01/2009~ -~11168~^~501~^0.023^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~502~^0.133^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~503~^0.133^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~504~^0.358^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~505~^0.141^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~506~^0.069^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~507~^0.027^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~508~^0.155^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~509~^0.126^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~510~^0.191^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~511~^0.135^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~512~^0.091^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~513~^0.304^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~514~^0.252^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~515~^0.655^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~516~^0.131^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~517~^0.301^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~518~^0.158^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11168~^~606~^0.197^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~613~^0.185^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~614~^0.012^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~617~^0.374^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~618~^0.586^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~619~^0.018^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~645~^0.374^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11168~^~646~^0.603^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11170~^~312~^0.028^38^0.002^~6~^~JA~^^^7^0.000^0.057^23^0.025^0.032^~2, 3~^~03/01/2011~ -~11170~^~315~^0.082^39^0.003^~6~^~JA~^^^7^0.008^0.120^24^0.075^0.088^~2, 3~^~03/01/2011~ -~11170~^~404~^0.015^5^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~03/01/2011~ -~11170~^~405~^0.015^5^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~03/01/2011~ -~11170~^~406~^0.884^5^0.058^~1~^~A~^^^1^0.660^0.990^4^0.722^1.046^~2, 3~^~03/01/2011~ -~11170~^~410~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11170~^~415~^0.037^39^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11170~^~501~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~502~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~503~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~504~^0.210^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~505~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~506~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~507~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~508~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~509~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~510~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~511~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~512~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~513~^0.178^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~514~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~515~^0.385^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~516~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~517~^0.177^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11170~^~518~^0.092^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11170~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11170~^~606~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11170~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~613~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11170~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11170~^~617~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11170~^~618~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11170~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11170~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~11170~^~645~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11170~^~646~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11172~^~312~^0.033^22^0.001^~1~^~A~^^^2^0.026^0.039^2^0.029^0.037^~2, 3~^~04/01/2015~ -~11172~^~315~^0.067^22^0.002^~1~^~A~^^^2^0.053^0.085^6^0.061^0.072^~2, 3~^~04/01/2015~ -~11172~^~404~^0.039^13^0.000^~1~^~A~^^^2^0.015^0.060^2^0.037^0.040^~1, 2, 3~^~04/01/2015~ -~11172~^~405~^0.089^13^0.008^~1~^~A~^^^2^0.015^0.150^3^0.063^0.115^~1, 2, 3~^~04/01/2015~ -~11172~^~406~^1.005^13^0.033^~1~^~A~^^^2^0.780^1.200^4^0.909^1.101^~2, 3~^~04/01/2015~ -~11172~^~410~^0.209^6^0.036^~1~^~A~^^^1^0.140^0.290^1^-0.184^0.602^~2, 3~^~04/01/2015~ -~11172~^~415~^0.037^9^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~11172~^~502~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~503~^0.072^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~504~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~505~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~506~^0.053^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~507~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~508~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~509~^0.088^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~510~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~511~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~512~^0.062^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~513~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~514~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~515~^0.453^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~516~^0.083^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~517~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~518~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11172~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~11172~^~606~^0.245^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~11172~^~610~^0.003^3^^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~11172~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~612~^0.002^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~613~^0.190^3^^~1~^~A~^^^1^0.190^0.293^^^^~2, 3~^~04/01/2015~ -~11172~^~614~^0.039^3^^~1~^~A~^^^1^0.041^0.061^^^^~2, 3~^~04/01/2015~ -~11172~^~615~^0.007^3^^~1~^~A~^^^1^0.008^0.009^^^^~2, 3~^~04/01/2015~ -~11172~^~617~^0.367^3^^~1~^~AS~^^^1^0.389^0.577^^^^~2, 3~^~04/01/2015~ -~11172~^~618~^0.483^3^^~1~^~AS~^^^1^0.526^0.735^^^^~2, 3~^~04/01/2015~ -~11172~^~619~^0.018^3^^~1~^~AS~^^^1^0.019^0.027^^^^~2, 3~^~04/01/2015~ -~11172~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~11172~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~624~^0.003^3^^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~08/01/2007~ -~11172~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~11172~^~626~^0.002^3^^~1~^~AS~^^^1^0.002^0.003^^^^~2, 3~^~04/01/2015~ -~11172~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~628~^0.004^3^^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~04/01/2015~ -~11172~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11172~^~645~^0.374^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~646~^0.519^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11172~^~652~^0.002^3^^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~653~^0.001^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~11172~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~687~^0.001^3^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~11172~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~11172~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~11172~^~851~^0.018^3^^~1~^~A~^^^1^0.019^0.027^^^^~2, 3~^~04/01/2011~ -~11174~^~312~^0.052^81^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~315~^0.068^48^0.002^~1~^^^^5^0.046^0.112^47^0.063^0.072^~4~^~09/01/2002~ -~11174~^~404~^0.025^274^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~405~^0.053^297^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~406~^0.960^304^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~410~^0.180^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~415~^0.063^14^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~504~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~510~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~513~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~515~^0.343^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~518~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11174~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~613~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~617~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~618~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11174~^~645~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11174~^~646~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~312~^0.048^57^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~315~^0.067^15^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~404~^0.041^71^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~405~^0.073^71^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~406~^1.167^70^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~410~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~415~^0.055^15^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~502~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~504~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~505~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~513~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~514~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~515~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~517~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~518~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11176~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~613~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~617~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~618~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11176~^~645~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11176~^~646~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11177~^~312~^0.031^4^0.001^~1~^~A~^^^1^0.028^0.033^3^0.028^0.034^~2, 3~^~04/01/2011~ -~11177~^~315~^0.056^4^0.005^~1~^~A~^^^1^0.045^0.069^3^0.041^0.072^~2, 3~^~04/01/2011~ -~11177~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~11177~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~11177~^~406~^0.780^4^0.049^~1~^~A~^^^1^0.660^0.890^3^0.624^0.936^~2, 3~^~04/01/2011~ -~11177~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~502~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~503~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~504~^0.272^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~505~^0.205^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~506~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~507~^0.034^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~508~^0.101^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~509~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~510~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~511~^0.091^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~512~^0.059^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~513~^0.177^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~514~^0.153^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~515~^0.432^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~516~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~517~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~518~^0.122^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11177~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11177~^~606~^0.219^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11177~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~613~^0.207^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~614~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~617~^0.420^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~618~^0.662^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~11177~^~645~^0.420^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11177~^~646~^0.682^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~11178~^~312~^0.036^19^0.003^~6~^~JA~^^^2^0.034^0.041^15^0.029^0.043^~2, 3~^~03/01/2008~ -~11178~^~315~^0.123^14^0.016^~6~^~JA~^^^2^0.097^0.129^10^0.088^0.158^~2, 3~^~03/01/2008~ -~11178~^~404~^0.083^81^0.012^~6~^~JA~^^^2^0.060^0.110^77^0.060^0.106^~2, 3~^~03/01/2008~ -~11178~^~405~^0.068^80^0.003^~6~^~JA~^^^2^0.020^0.070^77^0.063^0.074^~2, 3~^~03/01/2008~ -~11178~^~406~^1.739^81^0.176^~6~^~JA~^^^2^1.726^2.650^78^1.389^2.088^~2, 3~^~03/01/2008~ -~11178~^~410~^0.361^11^0.088^~6~^~JA~^^^2^0.280^0.630^7^0.154^0.567^~2, 3~^~03/01/2008~ -~11178~^~415~^0.168^23^0.009^~6~^~JA~^^^2^0.090^0.178^20^0.150^0.187^~2, 3~^~03/01/2008~ -~11178~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~502~^0.088^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~503~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~504~^0.363^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~505~^0.274^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~506~^0.067^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~507~^0.045^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~508~^0.135^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~509~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~510~^0.137^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~511~^0.122^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~512~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~513~^0.236^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~514~^0.205^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~515~^0.577^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~516~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~517~^0.366^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~518~^0.162^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11178~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11178~^~606~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~613~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~617~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~618~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11178~^~645~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11178~^~646~^0.366^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11179~^~312~^0.048^24^0.002^~1~^^^^2^0.027^0.072^21^0.043^0.053^~2, 3~^~03/01/2006~ -~11179~^~315~^0.155^24^0.008^~1~^^^^2^0.080^0.279^19^0.138^0.173^~2, 3~^~03/01/2006~ -~11179~^~404~^0.030^4^0.001^~1~^^^^1^0.028^0.031^3^0.027^0.032^~2, 3~^~03/01/2006~ -~11179~^~405~^0.062^4^0.007^~1~^^^^1^0.054^0.083^3^0.040^0.084^~2, 3~^~03/01/2006~ -~11179~^~406~^1.311^4^0.016^~1~^^^^1^1.268^1.341^3^1.261^1.361^~2, 3~^~03/01/2006~ -~11179~^~410~^0.151^4^0.010^~1~^^^^1^0.138^0.179^3^0.121^0.182^~2, 3~^~03/01/2006~ -~11179~^~415~^0.099^4^0.010^~1~^^^^1^0.083^0.128^3^0.067^0.130^~2, 3~^~03/01/2006~ -~11179~^~501~^0.031^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~502~^0.115^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~503~^0.137^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~504~^0.251^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~505~^0.153^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~506~^0.068^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~507~^0.038^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~508~^0.131^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~509~^0.106^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~510~^0.167^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~511~^0.126^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~512~^0.067^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~513~^0.172^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~514~^0.219^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~515~^0.438^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~516~^0.085^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~517~^0.181^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~518~^0.156^0^^~1~^~DA~^^^^^^^^^^~03/01/2006~ -~11179~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11179~^~606~^0.103^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~613~^0.097^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~614~^0.006^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~617~^0.197^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~618~^0.309^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~619~^0.009^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11179~^~645~^0.197^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11179~^~646~^0.318^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11180~^~312~^0.051^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~315~^0.158^5^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~404~^0.103^57^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~405~^0.088^58^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~406~^1.681^57^0.045^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~410~^0.293^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~415~^0.179^12^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~502~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~503~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~504~^0.354^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~505~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~508~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~510~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~511~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~512~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~513~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~514~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~515~^0.647^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~516~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~517~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~518~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11180~^~606~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~613~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~617~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~618~^0.356^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~645~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11180~^~646~^0.367^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~315~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~404~^0.174^3^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~405~^0.069^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~406~^1.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~415~^0.224^3^0.141^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~502~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~503~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~504~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~509~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~511~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~512~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~513~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~515~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~516~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~517~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11181~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~613~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~617~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~618~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~645~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11181~^~646~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11182~^~312~^0.054^3^0.007^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~315~^0.129^3^0.013^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~404~^0.083^3^0.013^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~405~^0.050^3^0.006^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~406~^2.070^3^0.071^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~410~^0.637^3^0.062^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~415~^0.120^3^0.015^~1~^~A~^^^1^^^^^^^~03/01/2008~ -~11182~^~501~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~502~^0.109^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~503~^0.115^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~504~^0.452^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~505~^0.341^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~506~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~507~^0.056^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~508~^0.168^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~509~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~510~^0.171^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~511~^0.151^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~512~^0.098^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~513~^0.293^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~514~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~515~^0.717^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~516~^0.131^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~517~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~518~^0.202^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~11182~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2017~ -~11182~^~606~^0.150^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~607~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~608~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~609~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~610~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~611~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~612~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~613~^0.142^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~614~^0.009^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~617~^0.287^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~618~^0.449^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~619~^0.014^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~620~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~621~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~626~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~627~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~628~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~629~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~630~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~631~^0.000^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~645~^0.287^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11182~^~646~^0.463^0^^~4~^~BFSN~^~11178~^^^^^^^^^~03/01/2008~ -~11184~^~312~^0.060^4^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~315~^0.043^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11184~^~404~^0.022^10^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~405~^0.080^10^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~406~^0.950^10^0.079^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~410~^0.447^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11184~^~415~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11184~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~502~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~503~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~504~^0.246^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~505~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~508~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~509~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~510~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~511~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~512~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~513~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~514~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~515~^0.453^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~516~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~517~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~518~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11184~^~606~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~613~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~617~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~618~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~645~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11184~^~646~^0.261^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~312~^0.134^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~315~^0.359^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~404~^0.071^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~405~^0.087^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~406~^0.415^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~415~^0.273^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11190~^~501~^0.026^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~502~^0.075^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~503~^0.099^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~504~^0.133^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~505~^0.101^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~506~^0.025^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~507~^0.020^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~508~^0.091^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~509~^0.036^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~510~^0.099^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~511~^0.091^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~512~^0.036^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~513~^0.088^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~514~^0.176^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~515~^0.203^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~516~^0.079^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~517~^0.078^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~518~^0.063^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11190~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11191~^~312~^0.130^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~315~^0.560^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~404~^0.110^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~405~^0.145^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~406~^1.450^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~410~^0.151^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~415~^0.067^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~503~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~504~^0.211^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~505~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~507~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~508~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~509~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~510~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~511~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~512~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11191~^~606~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~613~^0.077^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~614~^0.012^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~617~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~618~^0.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~619~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~630~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~645~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11191~^~646~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~312~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~315~^0.572^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~404~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~405~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~406~^1.403^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~410~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~415~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~502~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~503~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~504~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~505~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~506~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~507~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~508~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~509~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~510~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~511~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~512~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11192~^~606~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~618~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~619~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~630~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11192~^~645~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11192~^~646~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~312~^0.205^5^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~315~^0.881^5^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~404~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~405~^0.071^22^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~406~^0.811^22^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~410~^0.237^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~415~^0.106^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~501~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~502~^0.335^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~503~^0.481^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~504~^0.640^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~505~^0.590^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~506~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~507~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~508~^0.493^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~509~^0.368^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~510~^0.520^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~511~^0.629^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~512~^0.290^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11195~^~606~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~613~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~614~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~617~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~618~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~619~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~630~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11195~^~645~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11195~^~646~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~312~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~315~^0.791^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~404~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~405~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~406~^0.728^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~410~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~502~^0.316^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~503~^0.455^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~504~^0.606^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~505~^0.558^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~507~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~508~^0.466^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~509~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~510~^0.492^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~511~^0.595^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~512~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11196~^~606~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~613~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~614~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~618~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~619~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~630~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11196~^~645~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11196~^~646~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~312~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~315~^0.308^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~404~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~405~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~406~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~410~^0.945^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~415~^0.173^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11197~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11197~^~606~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~607~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~608~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~609~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~610~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~611~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~618~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~620~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~621~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~627~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~628~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~629~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~631~^0.000^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~ -~11197~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11197~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~312~^0.071^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~315~^0.219^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~404~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~410~^0.638^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~415~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11198~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11198~^~606~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~618~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11198~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~312~^0.048^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~315~^0.205^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~404~^0.107^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~405~^0.110^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~406~^0.410^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~410~^0.055^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~415~^0.024^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11199~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~502~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~503~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~504~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~505~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~507~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~508~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~509~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~510~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~511~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~512~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11199~^~606~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~613~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~618~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~619~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~630~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11199~^~646~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~312~^0.047^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~315~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~404~^0.085^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~405~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~406~^0.630^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~410~^0.051^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~415~^0.024^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11200~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~502~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~503~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~504~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~505~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~507~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~508~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~509~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~510~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~511~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11200~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11200~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~312~^0.191^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~315~^0.509^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~404~^0.354^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~405~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~406~^1.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~410~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~415~^0.177^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11201~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11201~^~606~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~613~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~618~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~619~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~630~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11201~^~646~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~312~^0.154^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~315~^0.412^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~404~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~405~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~406~^1.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~410~^0.046^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~415~^0.135^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11202~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11202~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11202~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~312~^0.170^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~315~^0.553^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~404~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~405~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~406~^1.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~410~^0.242^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11203~^~415~^0.247^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11203~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~617~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~618~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~619~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~628~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~630~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11203~^~645~^0.239^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11203~^~646~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~315~^0.372^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~405~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~410~^0.163^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~415~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11204~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11204~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~617~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~618~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~619~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~628~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~630~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11204~^~645~^0.205^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11204~^~646~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~312~^0.041^8^0.000^~1~^~A~^^^1^0.041^0.041^1^0.041^0.041^~1, 4~^~11/01/2002~ -~11205~^~315~^0.079^4^^~1~^~A~^^^1^0.079^0.079^0^^^~4~^~11/01/2002~ -~11205~^~404~^0.027^4^^~1~^~A~^^^1^0.027^0.027^0^^^~4~^~11/01/2002~ -~11205~^~405~^0.033^4^^~1~^~A~^^^1^0.033^0.033^0^^^~4~^~11/01/2002~ -~11205~^~406~^0.098^8^0.000^~1~^~A~^^^1^0.098^0.098^1^0.098^0.098^~1, 4~^~11/01/2002~ -~11205~^~410~^0.259^4^^~1~^~A~^^^1^0.259^0.259^0^^^~4~^~11/01/2002~ -~11205~^~415~^0.040^4^^~1~^~A~^^^1^0.040^0.040^0^^^~4~^~11/01/2002~ -~11205~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~502~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~503~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~504~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~505~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~508~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~513~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~514~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~515~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~517~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11205~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11205~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11205~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11205~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~612~^0.005^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~03/01/2006~ -~11205~^~613~^0.028^2^^~1~^~A~^^^1^0.010^0.010^0^^^^~03/01/2006~ -~11205~^~614~^0.005^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~03/01/2006~ -~11205~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~617~^0.005^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~03/01/2006~ -~11205~^~618~^0.028^2^^~1~^~A~^^^1^0.010^0.010^0^^^^~03/01/2006~ -~11205~^~619~^0.005^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~03/01/2006~ -~11205~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~646~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11205~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11205~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~03/01/2006~ -~11206~^~312~^0.071^52^0.017^~6~^~JA~^^^6^0.000^0.161^3^0.018^0.124^~1, 2, 3~^~10/01/2002~ -~11206~^~315~^0.073^52^0.009^~6~^~JA~^^^6^0.008^0.141^3^0.047^0.100^~1, 2, 3~^~10/01/2002~ -~11206~^~404~^0.031^4^0.008^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~405~^0.025^4^0.003^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~406~^0.037^4^0.000^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~410~^0.240^4^0.041^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~415~^0.051^4^0.018^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~502~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~503~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~504~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~505~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~507~^0.007^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~508~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~509~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~510~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~511~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~512~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~513~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~514~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~515~^0.204^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~516~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~518~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11206~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11206~^~606~^0.078^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11206~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11206~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11206~^~609~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~610~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~612~^0.010^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~613~^0.058^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~614~^0.010^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~615~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~617~^0.010^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~618~^0.010^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~619~^0.010^2^^~1~^~A~^^^1^^^^^^^~01/01/2017~ -~11206~^~620~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~621~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~625~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~626~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~627~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~628~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~629~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~630~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~631~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11206~^~646~^0.019^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11206~^~652~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~653~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~654~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11206~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~10/01/2002~ -~11207~^~312~^0.171^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~315~^0.342^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~404~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~405~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11207~^~406~^0.806^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~410~^0.084^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~415~^0.251^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11207~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11207~^~606~^0.170^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~612~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~613~^0.145^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~617~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~618~^0.261^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~619~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~645~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11207~^~646~^0.306^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~312~^0.115^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~315~^0.230^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~404~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~405~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11208~^~406~^0.514^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~410~^0.057^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~415~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11208~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11208~^~606~^0.146^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~612~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~613~^0.124^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~614~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~617~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~618~^0.224^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~619~^0.038^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~645~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11208~^~646~^0.262^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11209~^~312~^0.081^8^0.014^~6~^~JA~^^^3^0.043^0.138^7^0.048^0.113^~4~^~08/01/2012~ -~11209~^~315~^0.232^9^0.091^~6~^~JA~^^^3^0.086^0.956^8^0.021^0.442^~4~^~08/01/2012~ -~11209~^~404~^0.039^6^0.003^~1~^^^^2^0.026^0.050^5^0.031^0.047^~4~^~01/01/2003~ -~11209~^~405~^0.037^6^0.003^~1~^^^^2^0.030^0.050^5^0.029^0.045^~4~^~01/01/2003~ -~11209~^~406~^0.649^6^0.038^~1~^^^^2^0.550^0.803^5^0.552^0.746^~4~^~01/01/2003~ -~11209~^~410~^0.281^6^0.019^~1~^^^^2^0.230^0.345^5^0.232^0.330^~4~^~11/01/2002~ -~11209~^~415~^0.084^6^0.003^~1~^^^^2^0.074^0.097^5^0.075^0.092^~4~^~11/01/2002~ -~11209~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~502~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~503~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~504~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~505~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~508~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~510~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~511~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~513~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~514~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~515~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~517~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~518~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11209~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~613~^0.025^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~614~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~617~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~618~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~619~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~626~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11209~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11209~^~646~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~312~^0.059^21^0.018^~6~^~JA~^^^8^0.000^0.236^7^0.016^0.101^~2~^~01/01/2003~ -~11210~^~315~^0.113^21^0.011^~6~^~JA~^^^8^0.069^0.249^7^0.087^0.138^~2~^~12/01/2002~ -~11210~^~404~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~410~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~415~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~502~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~503~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~510~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~511~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~513~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~514~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~515~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~517~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11210~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11210~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11210~^~646~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11211~^~312~^0.324^2^^~1~^~A~^^^1^0.307^0.341^1^^^^~05/01/2006~ -~11211~^~315~^1.010^2^^~1~^~A~^^^1^0.919^1.100^1^^^^~05/01/2006~ -~11211~^~404~^0.150^2^^~1~^~A~^^^1^0.140^0.160^1^^^^~04/01/2006~ -~11211~^~405~^0.265^2^^~1~^~A~^^^1^0.150^0.380^1^^^^~04/01/2006~ -~11211~^~406~^0.925^2^^~1~^~A~^^^1^0.910^0.940^1^^^^~04/01/2006~ -~11211~^~410~^0.535^2^^~1~^~A~^^^1^0.430^0.640^1^^^^~04/01/2006~ -~11211~^~415~^0.135^2^^~1~^~A~^^^1^0.090^0.180^1^^^^~04/01/2006~ -~11211~^~501~^0.119^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~502~^0.312^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~503~^0.283^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~504~^0.702^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~505~^0.702^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~506~^0.133^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~507~^0.117^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~508~^0.460^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~509~^0.317^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~510~^0.305^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~511~^0.682^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~512~^0.252^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~513~^0.421^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~514~^1.270^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~515~^1.903^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~516~^0.409^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~517~^0.647^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~518~^0.627^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11211~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~11211~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11212~^~312~^0.345^2^^~1~^~A~^^^1^0.288^0.401^1^^^^~05/01/2006~ -~11212~^~315~^1.024^2^^~1~^~A~^^^1^0.988^1.060^1^^^^~05/01/2006~ -~11212~^~404~^0.200^2^^~1~^~A~^^^1^0.180^0.220^1^^^^~04/01/2006~ -~11212~^~405~^0.155^2^^~1~^~A~^^^1^0.120^0.190^1^^^^~04/01/2006~ -~11212~^~406~^0.915^2^^~1~^~A~^^^1^0.430^1.400^1^^^^~04/01/2006~ -~11212~^~410~^0.395^2^^~1~^~A~^^^1^0.350^0.440^1^^^^~04/01/2006~ -~11212~^~415~^0.100^2^^~1~^~A~^^^1^0.060^0.140^1^^^^~04/01/2006~ -~11212~^~501~^0.126^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~502~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~503~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~504~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~505~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~506~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~507~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~508~^0.488^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~509~^0.336^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~510~^0.324^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~511~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~512~^0.267^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~513~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~514~^1.348^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~515~^2.020^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~516~^0.434^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~517~^0.686^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~518~^0.665^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11212~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~11212~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11212~^~606~^0.620^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11212~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~612~^0.004^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2007~ -~11212~^~613~^0.437^2^^~1~^~A~^^^1^0.620^0.663^1^^^^~04/01/2007~ -~11212~^~614~^0.144^2^^~1~^~A~^^^1^0.179^0.245^1^^^^~04/01/2007~ -~11212~^~615~^0.011^2^^~1~^~A~^^^1^0.016^0.017^1^^^^~04/01/2007~ -~11212~^~617~^1.265^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~618~^1.792^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~619~^0.358^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~624~^0.013^2^^~1~^~A~^^^1^0.019^0.020^1^^^^~04/01/2007~ -~11212~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~628~^0.009^2^^~1~^~A~^^^1^0.012^0.014^1^^^^~04/01/2007~ -~11212~^~629~^0.003^2^^~1~^~A~^^^1^0.000^0.008^1^^^~1~^~04/01/2007~ -~11212~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~645~^1.282^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11212~^~646~^2.156^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11212~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2007~ -~11212~^~653~^0.003^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~04/01/2007~ -~11212~^~654~^0.007^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~04/01/2007~ -~11212~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~663~^0.004^2^^~1~^~A~^^^1^0.000^0.013^1^^^~1~^~07/01/2015~ -~11212~^~664~^0.001^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~07/01/2015~ -~11212~^~665~^0.004^2^^~1~^~A~^^^1^0.004^0.007^1^^^^~07/01/2015~ -~11212~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~672~^0.002^2^^~1~^~A~^^^1^0.002^0.005^1^^^^~04/01/2007~ -~11212~^~673~^0.004^2^^~1~^~A~^^^1^0.005^0.008^1^^^^~04/01/2007~ -~11212~^~674~^1.261^2^^~1~^~A~^^^1^1.697^2.008^1^^^^~04/01/2007~ -~11212~^~675~^1.789^2^^~1~^~A~^^^1^2.432^2.823^1^^^^~04/01/2007~ -~11212~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~687~^0.003^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~04/01/2007~ -~11212~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~11212~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11212~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~11212~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~851~^0.358^2^^~1~^~A~^^^1^0.505^0.548^1^^^^~04/01/2007~ -~11212~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~11212~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2007~ -~11213~^~312~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~315~^0.420^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~404~^0.080^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~405~^0.075^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~406~^0.400^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~410~^0.900^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~415~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~501~^0.005^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~502~^0.050^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~503~^0.072^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~504~^0.098^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~505~^0.063^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~506~^0.014^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~507~^0.010^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~508~^0.053^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~509~^0.040^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~510~^0.063^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~511~^0.062^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~512~^0.023^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~513~^0.062^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~514~^0.130^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~515~^0.166^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~516~^0.058^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~517~^0.059^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~518~^0.049^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11213~^~606~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11213~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11213~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11214~^~312~^0.087^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~315~^0.385^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~404~^0.059^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~405~^0.062^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~406~^0.312^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~410~^0.826^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~415~^0.016^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~501~^0.005^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~502~^0.046^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~503~^0.066^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~504~^0.090^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~505~^0.058^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~506~^0.013^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~507~^0.009^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~508~^0.049^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~509~^0.037^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~510~^0.058^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~511~^0.057^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~512~^0.021^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~513~^0.057^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~514~^0.119^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~515~^0.152^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~516~^0.053^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~517~^0.054^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~518~^0.045^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~606~^0.042^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~612~^0.003^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~613~^0.038^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~614~^0.002^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~617~^0.004^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~618~^0.069^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~619~^0.012^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~645~^0.004^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11214~^~646~^0.081^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~ -~11215~^~312~^0.299^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~315~^1.672^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~404~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~405~^0.110^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~410~^0.596^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~415~^1.235^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11215~^~501~^0.066^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~502~^0.157^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~503~^0.217^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~504~^0.308^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~505~^0.273^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~506~^0.076^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~507~^0.065^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~508~^0.183^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~509~^0.081^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~510~^0.291^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~511~^0.634^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~512~^0.113^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~513~^0.132^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~514~^0.489^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~515~^0.805^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~516~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~517~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~518~^0.190^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11215~^~606~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~613~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~618~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11215~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11215~^~646~^0.249^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~312~^0.226^1^^~1~^^^^^0.226^0.226^^^^^~01/01/2003~ -~11216~^~315~^0.229^1^^~1~^^^^^0.229^0.229^^^^^~01/01/2003~ -~11216~^~404~^0.025^3^^~1~^^^^1^0.023^0.026^^^^~2~^~01/01/2003~ -~11216~^~405~^0.034^3^^~1~^^^^1^0.029^0.039^^^^~2~^~01/01/2003~ -~11216~^~406~^0.750^3^^~1~^^^^1^0.700^0.800^^^^~2~^~01/01/2003~ -~11216~^~410~^0.203^1^^~1~^^^^^0.203^0.203^^^^^~01/01/2003~ -~11216~^~415~^0.160^1^^~1~^^^^^0.160^0.160^^^^^~01/01/2003~ -~11216~^~501~^0.012^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~502~^0.036^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~503~^0.051^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~504~^0.074^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~505~^0.057^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~506~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~507~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~508~^0.045^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~509~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~510~^0.073^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~511~^0.043^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~512~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~513~^0.031^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~514~^0.208^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~515~^0.162^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~516~^0.043^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~517~^0.041^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~518~^0.045^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11216~^~606~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~609~^0.007^1^^~1~^^^^^0.007^0.007^^^^^~01/01/2003~ -~11216~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~611~^0.039^1^^~1~^^^^^0.039^0.039^^^^^~01/01/2003~ -~11216~^~612~^0.018^1^^~1~^^^^^0.018^0.018^^^^^~01/01/2003~ -~11216~^~613~^0.120^1^^~1~^^^^^0.120^0.120^^^^^~01/01/2003~ -~11216~^~614~^0.017^1^^~1~^^^^^0.017^0.017^^^^^~01/01/2003~ -~11216~^~617~^0.119^1^^~1~^^^^^0.119^0.119^^^^^~01/01/2003~ -~11216~^~618~^0.120^1^^~1~^^^^^0.120^0.120^^^^^~01/01/2003~ -~11216~^~619~^0.034^1^^~1~^^^^^0.034^0.034^^^^^~01/01/2003~ -~11216~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~626~^0.021^1^^~1~^^^^^0.021^0.021^^^^^~01/01/2003~ -~11216~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~628~^0.007^1^^~1~^^^^^0.007^0.007^^^^^~01/01/2003~ -~11216~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11216~^~645~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11216~^~646~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~312~^0.026^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11218~^~315~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11218~^~404~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~405~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~406~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~410~^0.152^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11218~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~501~^0.003^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~502~^0.018^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~503~^0.033^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~504~^0.036^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~505~^0.021^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~506~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~508~^0.015^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~510~^0.027^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~511~^0.014^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~512~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11218~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~618~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11218~^~646~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~312~^0.026^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~315~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~404~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~405~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~410~^0.144^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11219~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~503~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~505~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~511~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~512~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11219~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~613~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~618~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11219~^~646~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~312~^0.035^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~315~^0.092^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~410~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~415~^0.043^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11220~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11220~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~618~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11220~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~312~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~315~^0.223^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~405~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~406~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~410~^0.501^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~415~^0.099^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11221~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11221~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~617~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~618~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~645~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11221~^~646~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~312~^0.105^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~315~^1.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~404~^0.257^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~405~^0.660^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~406~^2.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~410~^0.125^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11222~^~415~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~501~^0.144^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~502~^0.411^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~503~^0.451^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~504~^0.791^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~505~^0.537^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~506~^0.123^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~507~^0.140^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~508~^0.487^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~509~^0.347^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~510~^0.611^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~511~^0.532^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~512~^0.196^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~513~^0.705^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~514~^0.920^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~515~^1.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~516~^0.517^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~517~^0.451^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~518~^0.414^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11222~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11223~^~312~^0.086^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~315~^0.868^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~404~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~405~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~406~^1.995^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~410~^0.102^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~415~^0.929^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11223~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~502~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~503~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~504~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~505~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~507~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~508~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~509~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~510~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~511~^0.298^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~512~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~513~^0.395^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~514~^0.516^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~515~^0.580^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~516~^0.290^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~517~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~518~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11223~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11223~^~606~^0.152^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~613~^0.030^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~614~^0.062^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~617~^0.473^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~618~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~645~^0.473^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11223~^~646~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11224~^~312~^0.047^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~315~^0.205^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~405~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~406~^0.520^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~410~^0.055^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~415~^0.024^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11224~^~502~^0.088^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~503~^0.143^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~504~^0.218^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~505~^0.145^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~506~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~507~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~508~^0.046^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~509~^0.038^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~510~^0.155^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~511~^0.143^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~512~^0.088^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~513~^0.109^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~514~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~515~^0.256^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~516~^0.172^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~518~^0.107^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11224~^~606~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~607~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~608~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~609~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~610~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~617~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~618~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~620~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~621~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~627~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~628~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~629~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~630~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~631~^0.000^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~ -~11224~^~645~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11224~^~646~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~312~^0.048^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~315~^0.210^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~404~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~405~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~406~^0.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~415~^0.023^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11225~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~503~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~505~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~508~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~510~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~511~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~512~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~513~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~514~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~515~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~516~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~518~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11225~^~606~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~617~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~645~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11225~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~312~^0.140^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~315~^0.060^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~404~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~406~^1.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11226~^~410~^0.397^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~415~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11226~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11226~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~613~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~614~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~617~^0.004^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~618~^0.001^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~619~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11226~^~645~^0.004^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11226~^~646~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11228~^~312~^0.445^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~315~^0.101^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~404~^0.081^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~405~^0.204^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~406~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11228~^~410~^1.990^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~415~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11228~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11230~^~312~^5.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~315~^1.151^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~404~^0.826^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~405~^0.350^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~406~^3.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11230~^~410~^21.477^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~415~^0.950^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11230~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11231~^~312~^0.255^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11231~^~315~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11231~^~404~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~405~^0.546^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~406~^1.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11231~^~415~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~501~^0.030^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~502~^0.164^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~503~^0.221^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~504~^0.388^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~505~^0.219^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~506~^0.065^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~507~^0.040^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~508~^0.212^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~509~^0.147^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~510~^0.248^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~511~^0.248^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~512~^0.110^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~513~^0.256^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~514~^0.567^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~515~^0.493^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~516~^0.214^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~517~^0.246^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~518~^0.182^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11231~^~606~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~618~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11231~^~646~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~312~^0.255^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~315~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~404~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~405~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~406~^0.890^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~415~^0.570^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11232~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~502~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~503~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~504~^0.306^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~505~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~506~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~508~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~509~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~510~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~511~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~513~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~514~^0.448^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~515~^0.389^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~516~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~518~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11232~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~618~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11232~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11232~^~646~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11233~^~312~^0.053^5^0.008^~1~^~A~^^^1^0.032^0.075^4^0.032^0.075^~2, 3~^~10/01/2016~ -~11233~^~315~^0.920^5^0.181^~1~^~A~^^^1^0.512^1.460^4^0.418^1.421^~2, 3~^~10/01/2016~ -~11233~^~404~^0.113^3^0.017^~1~^~A~^^^1^0.080^0.130^2^0.042^0.185^~2, 3~^~10/01/2016~ -~11233~^~405~^0.347^3^0.044^~1~^~A~^^^1^0.280^0.430^2^0.157^0.536^~2, 3~^~10/01/2016~ -~11233~^~406~^1.180^3^0.207^~1~^~A~^^^1^0.930^1.590^2^0.291^2.069^~2, 3~^~10/01/2016~ -~11233~^~410~^0.370^2^^~1~^~A~^^^1^0.370^0.370^^^^^~10/01/2016~ -~11233~^~415~^0.147^3^0.013^~1~^~A~^^^1^0.120^0.160^2^0.089^0.204^~2, 3~^~10/01/2016~ -~11233~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~503~^0.175^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~505~^0.175^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~507~^0.038^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~509~^0.103^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~510~^0.159^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~513~^0.147^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~514~^0.262^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~515~^0.331^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~516~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~517~^0.174^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~518~^0.123^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11233~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11233~^~606~^0.178^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~607~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~608~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~609~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~610~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~611~^0.006^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~612~^0.006^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~613~^0.158^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~614~^0.006^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~617~^0.104^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~618~^0.291^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~619~^0.378^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~620~^0.003^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~621~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~626~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~627~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~628~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~629~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~630~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~631~^0.000^0^^~4~^~BFFN~^~11235~^^^^^^^^^~10/01/2016~ -~11233~^~645~^0.104^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11233~^~646~^0.673^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11234~^~312~^0.067^6^0.010^~1~^~A~^^^1^0.038^0.098^5^0.041^0.094^~2, 3~^~12/01/2016~ -~11234~^~315~^0.542^6^0.062^~1~^~A~^^^1^0.371^0.796^5^0.382^0.701^~2, 3~^~12/01/2016~ -~11234~^~404~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~12/01/2016~ -~11234~^~405~^0.140^3^0.015^~1~^~A~^^^1^0.120^0.170^2^0.074^0.206^~2, 3~^~12/01/2016~ -~11234~^~406~^0.457^3^0.050^~1~^~A~^^^1^0.360^0.530^2^0.240^0.673^~2, 3~^~12/01/2016~ -~11234~^~410~^0.170^2^^~1~^~A~^^^1^0.160^0.180^1^^^^~12/01/2016~ -~11234~^~415~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~2, 3~^~12/01/2016~ -~11234~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~503~^0.176^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~505~^0.176^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~513~^0.148^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~514~^0.263^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~515~^0.332^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~516~^0.141^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~517~^0.174^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~518~^0.124^0^^~1~^~A~^^^^^^^^^^~12/01/2016~ -~11234~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11234~^~606~^0.175^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~607~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~608~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~609~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~610~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~611~^0.006^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~612~^0.006^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~613~^0.156^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~614~^0.006^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~617~^0.102^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~618~^0.286^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~619~^0.371^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~620~^0.003^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~621~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~626~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~627~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~628~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~629~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~630~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~631~^0.000^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~ -~11234~^~645~^0.102^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~11234~^~646~^0.660^0^^~4~^~NC~^~11233~^^^^^^^^^~12/01/2016~ -~11235~^~312~^0.046^3^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~315~^0.443^3^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~404~^0.056^8^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~405~^0.112^10^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~406~^0.698^10^0.125^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~410~^0.052^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~415~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~502~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~503~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~504~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~505~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~508~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~509~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~510~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~511~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~512~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~513~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~514~^0.238^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~515~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~516~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~518~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11235~^~606~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~607~^0.000^40^^~4~^~BFFN~^^^^^^^^^^~04/01/2001~ -~11235~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~613~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~617~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~618~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~619~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11235~^~645~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11235~^~646~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11236~^~312~^0.067^6^0.010^~1~^~A~^^^1^0.038^0.098^5^0.041^0.094^~2, 3~^~10/01/2016~ -~11236~^~315~^0.542^6^0.062^~1~^~A~^^^1^0.371^0.796^5^0.382^0.701^~2, 3~^~10/01/2016~ -~11236~^~404~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~10/01/2016~ -~11236~^~405~^0.140^3^0.015^~1~^~A~^^^1^0.120^0.170^2^0.074^0.206^~2, 3~^~10/01/2016~ -~11236~^~406~^0.457^3^0.050^~1~^~A~^^^1^0.360^0.530^2^0.240^0.673^~2, 3~^~10/01/2016~ -~11236~^~410~^0.170^2^^~1~^~A~^^^1^0.160^0.180^1^^^^~10/01/2016~ -~11236~^~415~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~2, 3~^~10/01/2016~ -~11236~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11236~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~503~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~505~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~513~^0.148^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~514~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~515~^0.332^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~516~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~517~^0.174^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~518~^0.124^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11236~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11236~^~606~^0.158^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~607~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~608~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~609~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~610~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~611~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~612~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~613~^0.141^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~614~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~617~^0.092^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~618~^0.258^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~619~^0.336^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~620~^0.003^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~621~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~626~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~627~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~628~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~629~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~630~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~631~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11236~^~645~^0.092^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11236~^~646~^0.597^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11237~^~312~^0.433^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11237~^~315~^1.137^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11237~^~404~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~405~^0.044^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~406~^2.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~410~^2.553^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11237~^~415~^0.532^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11237~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11237~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~617~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~618~^0.244^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~645~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11237~^~646~^0.244^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11238~^~312~^0.142^4^0.021^~1~^~A~^^^1^0.103^0.199^3^0.076^0.209^~2, 3~^~07/01/2009~ -~11238~^~315~^0.230^4^0.028^~1~^~A~^^^1^0.191^0.313^3^0.140^0.320^~2, 3~^~07/01/2009~ -~11238~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~07/01/2009~ -~11238~^~405~^0.217^4^0.022^~1~^~A~^^^1^0.170^0.260^3^0.147^0.288^~2, 3~^~07/01/2009~ -~11238~^~406~^3.877^4^0.488^~1~^~A~^^^1^3.360^5.340^3^2.325^5.430^~2, 3~^~07/01/2009~ -~11238~^~410~^1.500^4^0.178^~1~^~A~^^^1^1.200^2.000^3^0.934^2.066^~2, 3~^~07/01/2009~ -~11238~^~415~^0.293^4^0.026^~1~^~A~^^^1^0.217^0.338^3^0.209^0.378^~2, 3~^~07/01/2009~ -~11238~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~502~^0.134^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~503~^0.111^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~504~^0.189^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~505~^0.134^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~506~^0.033^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~507~^0.022^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~508~^0.111^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~509~^0.078^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~510~^0.145^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~511~^0.156^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~512~^0.056^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~513~^0.167^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~514~^0.301^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~515~^0.680^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~516~^0.145^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~517~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~518~^0.145^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11238~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11239~^~312~^0.353^2^^~1~^~A~^^^1^0.303^0.402^1^^^^~07/01/2009~ -~11239~^~315~^0.286^2^^~1~^~A~^^^1^0.137^0.436^1^^^^~07/01/2009~ -~11239~^~404~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~07/01/2009~ -~11239~^~405~^0.215^2^^~1~^~A~^^^1^0.210^0.220^1^^^^~07/01/2009~ -~11239~^~406~^4.085^2^^~1~^~A~^^^1^2.800^5.370^1^^^^~07/01/2009~ -~11239~^~410~^1.075^2^^~1~^~A~^^^1^0.950^1.200^1^^^^~07/01/2009~ -~11239~^~415~^0.044^2^^~1~^~A~^^^1^0.035^0.052^1^^^^~07/01/2009~ -~11239~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11240~^~312~^0.625^4^0.162^~1~^~A~^^^1^0.341^0.952^3^0.110^1.139^~2, 3~^~07/01/2009~ -~11240~^~315~^0.587^4^0.120^~1~^~A~^^^1^0.372^0.810^3^0.206^0.968^~2, 3~^~07/01/2009~ -~11240~^~404~^0.069^4^0.024^~1~^~A~^^^1^0.015^0.110^3^-0.009^0.146^~1, 2, 3~^~07/01/2009~ -~11240~^~405~^0.205^4^0.005^~1~^~A~^^^1^0.200^0.220^3^0.189^0.221^~2, 3~^~07/01/2009~ -~11240~^~406~^2.252^4^0.171^~1~^~A~^^^1^1.920^2.600^3^1.708^2.797^~2, 3~^~07/01/2009~ -~11240~^~410~^0.440^4^0.039^~1~^~A~^^^1^0.370^0.530^3^0.316^0.564^~2, 3~^~07/01/2009~ -~11240~^~415~^0.136^4^0.015^~1~^~A~^^^1^0.110^0.162^3^0.090^0.183^~2, 3~^~07/01/2009~ -~11240~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~11240~^~606~^0.065^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~613~^0.052^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~614~^0.009^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~617~^0.022^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11240~^~618~^0.215^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11240~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11240~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11240~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~11240~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~645~^0.052^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~646~^0.433^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11240~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~673~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~674~^0.022^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~675~^0.215^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~11240~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~11240~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~11240~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~851~^0.000^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11240~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11240~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~11241~^~312~^0.129^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11241~^~315~^0.139^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11241~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~410~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~415~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~501~^0.010^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~502~^0.049^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~503~^0.078^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~504~^0.067^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~505~^0.056^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~506~^0.013^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~507~^0.007^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~508~^0.039^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~510~^0.050^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~511~^0.105^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~512~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11241~^~606~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11241~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11241~^~646~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~312~^0.132^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~315~^0.142^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~410~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~415~^0.154^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11242~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~502~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~505~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~508~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~510~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~511~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11242~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~619~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11242~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11242~^~646~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11243~^~312~^0.389^7^0.045^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~315~^0.067^7^0.004^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~404~^0.072^8^0.015^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~405~^0.403^8^0.032^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~406~^6.255^8^0.668^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~410~^1.262^5^0.167^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~415~^0.122^7^0.018^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~501~^0.045^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~502~^0.125^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~503~^0.090^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~504~^0.150^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~505~^0.110^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~506~^0.035^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~507~^0.020^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~508~^0.100^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~509~^0.070^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~510~^0.410^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~511~^0.120^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~512~^0.065^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~513~^0.185^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~514~^0.260^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~515~^0.470^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~516~^0.110^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~517~^0.115^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~518~^0.120^2^^~1~^~A~^^^1^^^^^^^~08/01/2009~ -~11243~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~606~^0.064^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11243~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~ -~11243~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~609~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~610~^0.001^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~611~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~612~^0.001^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~613~^0.042^2^^~1~^~A~^^^2^^^^^^^~06/01/2014~ -~11243~^~614~^0.013^2^^~1~^~A~^^^2^^^^^^^~06/01/2014~ -~11243~^~615~^0.002^2^^~1~^~A~^^^2^^^^^^^~06/01/2014~ -~11243~^~617~^0.007^2^^~6~^~JA~^^^2^^^^^^^~06/01/2014~ -~11243~^~618~^0.232^2^^~6~^~JA~^^^2^^^^^^^~06/01/2014~ -~11243~^~619~^0.000^2^^~6~^~JA~^^^2^^^^^^^~08/01/2009~ -~11243~^~620~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~621~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~624~^0.001^2^^~1~^~A~^^^2^^^^^^^~06/01/2014~ -~11243~^~625~^0.001^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~626~^0.002^2^^~6~^~JA~^^^2^^^^^^^~08/01/2009~ -~11243~^~627~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~628~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~629~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~630~^0.000^2^^~6~^~JA~^^^2^^^^^^^~08/01/2009~ -~11243~^~631~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11243~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11243~^~652~^0.002^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~653~^0.001^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~654~^0.001^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~671~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~672~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~673~^0.002^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11243~^~674~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~11243~^~675~^0.232^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~11243~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~687~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~689~^0.000^2^^~6~^~JA~^^^2^^^^^^^~08/01/2009~ -~11243~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~11243~^~697~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11243~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2009~ -~11243~^~858~^0.000^2^^~1~^~A~^^^2^^^^^^^~08/01/2009~ -~11244~^~312~^0.293^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~315~^0.782^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~404~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~405~^0.440^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~406~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~410~^0.092^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~415~^0.274^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11244~^~501~^0.038^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~502~^0.163^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~503~^0.253^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~504~^0.350^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~505~^0.354^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~506~^0.049^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~507~^0.089^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~508~^0.166^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~509~^0.175^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~510~^0.226^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~511~^0.253^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~512~^0.116^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~513~^0.322^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~514~^0.431^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~515~^0.521^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~516~^0.249^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~517~^0.223^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~518~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11244~^~606~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~617~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~618~^0.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~619~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~620~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~628~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~630~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~645~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11244~^~646~^0.351^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~312~^0.197^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~315~^0.525^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~405~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~410~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~415~^0.174^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11245~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~503~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~504~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~505~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~507~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~509~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~510~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~511~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~512~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~513~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~514~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~515~^0.397^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~516~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~517~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~518~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11245~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~617~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~618~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~628~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~630~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11245~^~645~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11245~^~646~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~312~^0.120^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~315~^0.481^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~404~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~410~^0.140^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~415~^0.233^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11246~^~501~^0.012^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~502~^0.063^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~503~^0.052^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~504~^0.096^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~505~^0.078^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~506~^0.018^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~507~^0.025^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~508~^0.055^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~509~^0.041^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~510~^0.056^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~511~^0.078^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~512~^0.025^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~513~^0.074^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~514~^0.140^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~515~^0.226^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~516~^0.069^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~517~^0.066^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~518~^0.092^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11246~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~613~^0.038^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~617~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~618~^0.067^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~619~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11246~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11246~^~646~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~312~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11247~^~315~^0.247^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11247~^~404~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11247~^~415~^0.113^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11247~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~513~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~514~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~518~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11247~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~619~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11247~^~646~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~312~^0.352^9^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~315~^0.506^9^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~404~^0.228^9^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~405~^0.128^9^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~406~^1.128^9^0.073^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~410~^0.578^9^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~415~^0.190^9^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~502~^0.328^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~503~^0.326^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~504~^0.628^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~505~^0.712^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~506~^0.105^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~507~^0.334^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~508~^0.442^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~509~^0.252^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~510~^0.399^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~511~^0.611^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~512~^0.257^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~513~^0.356^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~514~^1.433^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~515~^1.258^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~516~^0.319^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~517~^0.356^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~518~^0.495^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11248~^~606~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~613~^0.052^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~614~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~617~^0.104^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~618~^0.181^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~619~^0.038^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~645~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11248~^~646~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~312~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~315~^0.502^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~404~^0.220^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~405~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~406~^1.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~410~^0.571^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~415~^0.164^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11249~^~502~^0.322^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~503~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~504~^0.617^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~505~^0.698^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~506~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~507~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~508~^0.434^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~509~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~510~^0.391^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~511~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~512~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~513~^0.349^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~514~^1.407^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~515~^1.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~516~^0.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~517~^0.349^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~518~^0.486^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11249~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~617~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~618~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~619~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~645~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11249~^~646~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11250~^~312~^0.016^8^0.002^~1~^~A~^^^2^0.000^0.040^3^0.009^0.024^~2, 3~^~12/01/2002~ -~11250~^~315~^0.179^8^0.029^~1~^~A~^^^2^0.090^0.291^6^0.109^0.250^~2, 3~^~12/01/2002~ -~11250~^~404~^0.057^8^0.005^~1~^~A~^^^2^0.035^0.077^5^0.044^0.070^~2, 3~^~12/01/2002~ -~11250~^~405~^0.062^8^0.005^~1~^~A~^^^2^0.050^0.090^4^0.047^0.077^~2, 3~^~12/01/2002~ -~11250~^~406~^0.357^8^0.025^~1~^~A~^^^2^0.247^0.440^5^0.293^0.422^~2, 3~^~12/01/2002~ -~11250~^~410~^0.150^8^0.009^~1~^~A~^^^2^0.093^0.200^4^0.125^0.175^~2, 3~^~12/01/2002~ -~11250~^~415~^0.082^8^0.013^~1~^~A~^^^2^0.043^0.149^3^0.044^0.120^~2, 3~^~12/01/2002~ -~11250~^~501~^0.013^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~502~^0.041^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~503~^0.039^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~504~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~505~^0.056^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~506~^0.014^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~508~^0.053^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~510~^0.054^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~511~^0.051^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~512~^0.017^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~513~^0.054^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~514~^0.142^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~515~^0.206^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~516~^0.044^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~517~^0.037^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~518~^0.046^0^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~11250~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11250~^~606~^0.029^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~613~^0.026^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~614~^0.003^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~617~^0.006^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~618~^0.034^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~619~^0.083^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~626~^0.002^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11250~^~645~^0.008^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11250~^~646~^0.117^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11251~^~312~^0.048^9^0.004^~6~^~JA~^^^3^0.033^0.064^2^0.030^0.066^~2, 3~^~12/01/2002~ -~11251~^~315~^0.155^11^0.017^~6~^~JA~^^^3^0.042^0.234^2^0.090^0.221^~2, 3~^~12/01/2002~ -~11251~^~404~^0.072^11^0.002^~6~^~JA~^^^3^0.058^0.092^3^0.066^0.078^~2, 3~^~12/01/2002~ -~11251~^~405~^0.067^12^0.003^~6~^~JA~^^^3^0.050^0.083^6^0.059^0.074^~2, 3~^~12/01/2002~ -~11251~^~406~^0.313^12^0.006^~6~^~JA~^^^3^0.270^0.360^8^0.298^0.327^~2, 3~^~12/01/2002~ -~11251~^~410~^0.142^12^0.008^~6~^~JA~^^^3^0.110^0.183^7^0.124^0.160^~2, 3~^~12/01/2002~ -~11251~^~415~^0.074^12^0.003^~6~^~JA~^^^3^0.050^0.103^7^0.066^0.081^~2, 3~^~12/01/2002~ -~11251~^~501~^0.010^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~502~^0.043^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~503~^0.045^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~504~^0.076^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~505~^0.064^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~506~^0.015^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~507~^0.006^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~508~^0.065^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~509~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~510~^0.055^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~511~^0.054^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~512~^0.021^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~513~^0.056^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~514~^0.139^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~515~^0.178^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~516~^0.049^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~517~^0.045^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~518~^0.050^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11251~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11251~^~606~^0.039^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~613~^0.035^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~614~^0.005^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~617~^0.009^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~618~^0.047^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~619~^0.113^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~626~^0.003^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11251~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~11251~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11251~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11252~^~312~^0.025^86^0.002^~6~^~JA~^^^14^0.000^0.064^26^0.021^0.028^~2, 3~^~11/01/2003~ -~11252~^~315~^0.125^89^0.004^~6~^~JA~^^^14^0.042^0.262^46^0.116^0.133^~2, 3~^~11/01/2003~ -~11252~^~404~^0.041^23^0.003^~6~^~JA~^^^3^0.013^0.060^15^0.034^0.048^~2, 3~^~11/01/2003~ -~11252~^~405~^0.025^23^0.001^~6~^~JA~^^^3^0.010^0.040^17^0.022^0.028^~1, 2, 3~^~11/01/2003~ -~11252~^~406~^0.123^13^0.015^~6~^~JA~^^^3^0.037^0.222^3^0.079^0.167^~2, 3~^~11/01/2003~ -~11252~^~410~^0.091^13^0.015^~6~^~JA~^^^3^0.039^0.251^5^0.053^0.129^~2, 3~^~11/01/2003~ -~11252~^~415~^0.042^23^0.002^~6~^~JA~^^^3^0.025^0.070^8^0.037^0.047^~2, 3~^~11/01/2003~ -~11252~^~501~^0.009^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~502~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~503~^0.018^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~504~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~505~^0.024^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~506~^0.005^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~507~^0.005^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~508~^0.023^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~509~^0.007^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~510~^0.024^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~511~^0.015^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~512~^0.009^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~513~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~514~^0.125^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~515~^0.194^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~516~^0.015^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~517~^0.010^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~518~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11252~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11252~^~606~^0.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~613~^0.016^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~614~^0.002^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~617~^0.004^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~618~^0.021^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~619~^0.052^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~626~^0.001^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2007~ -~11252~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11252~^~646~^0.074^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~11253~^~312~^0.029^8^0.004^~1~^~A~^^^2^0.017^0.042^5^0.018^0.040^~2, 3~^~12/01/2002~ -~11253~^~315~^0.250^8^0.024^~1~^~A~^^^2^0.142^0.326^6^0.192^0.309^~2, 3~^~12/01/2002~ -~11253~^~404~^0.070^8^0.003^~1~^~A~^^^2^0.060^0.083^5^0.062^0.078^~2, 3~^~12/01/2002~ -~11253~^~405~^0.080^8^0.003^~1~^~A~^^^2^0.070^0.098^5^0.072^0.088^~2, 3~^~12/01/2002~ -~11253~^~406~^0.375^8^0.031^~1~^~A~^^^2^0.300^0.560^3^0.281^0.470^~2, 3~^~12/01/2002~ -~11253~^~410~^0.134^8^0.005^~1~^~A~^^^2^0.110^0.150^4^0.120^0.149^~2, 3~^~12/01/2002~ -~11253~^~415~^0.090^8^0.016^~1~^~A~^^^2^0.063^0.204^3^0.040^0.140^~2, 3~^~12/01/2002~ -~11253~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~502~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~503~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~504~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~505~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~506~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~508~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~509~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~510~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~513~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~514~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~515~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~517~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~518~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11253~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11253~^~606~^0.020^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11253~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~613~^0.018^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~614~^0.002^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~617~^0.005^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~618~^0.024^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~619~^0.058^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~626~^0.002^0^^~1~^^^^^^^^^^^~06/01/2010~ -~11253~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11253~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11253~^~646~^0.082^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~11254~^~312~^0.257^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~315~^0.261^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~404~^0.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~405~^0.220^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~410~^0.377^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~415~^0.258^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11254~^~501~^0.020^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~502~^0.051^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~503~^0.054^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~504~^0.069^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~505~^0.094^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~506~^0.022^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~507~^0.022^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~508~^0.047^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~509~^0.029^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~510~^0.055^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~511~^0.088^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~512~^0.038^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~513~^0.054^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~514~^0.369^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~515~^0.139^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~516~^0.156^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~517~^0.136^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~518~^0.060^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11254~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~613~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11254~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~312~^0.217^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~315~^0.220^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~404~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~405~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~410~^0.302^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~415~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11255~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~504~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~511~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~514~^0.223^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~515~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~517~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11255~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11255~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11255~^~646~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11257~^~312~^0.028^8^0.004^~1~^~A~^^^2^0.017^0.042^4^0.017^0.039^~2, 3~^~12/01/2002~ -~11257~^~315~^0.203^8^0.019^~1~^~A~^^^2^0.113^0.276^5^0.153^0.254^~2, 3~^~12/01/2002~ -~11257~^~404~^0.064^8^0.003^~1~^~A~^^^2^0.050^0.076^6^0.056^0.073^~2, 3~^~12/01/2002~ -~11257~^~405~^0.077^8^0.002^~1~^~A~^^^2^0.070^0.091^3^0.069^0.084^~2, 3~^~12/01/2002~ -~11257~^~406~^0.321^8^0.009^~1~^~A~^^^2^0.260^0.357^4^0.294^0.348^~2, 3~^~12/01/2002~ -~11257~^~410~^0.144^8^0.008^~1~^~A~^^^2^0.104^0.180^5^0.124^0.164^~2, 3~^~12/01/2002~ -~11257~^~415~^0.100^8^0.019^~1~^~A~^^^2^0.059^0.196^3^0.042^0.157^~2, 3~^~12/01/2002~ -~11257~^~501~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~502~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~503~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~504~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~505~^0.045^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~506~^0.016^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~508~^0.067^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~509~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~510~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~511~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~512~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~513~^0.051^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~514~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~515~^0.155^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~516~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~517~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~518~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11257~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11257~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~11257~^~607~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~608~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~609~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~610~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~611~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~612~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~613~^0.025^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~614~^0.003^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~617~^0.006^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~618~^0.034^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~619~^0.081^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~620~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~621~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~626~^0.002^0^^~4~^~BFSN~^~11253~^^^^^^^^^~01/01/2017~ -~11257~^~627~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~628~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~629~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~630~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~631~^0.000^0^^~4~^~BFSN~^~11253~^^^^^^^^^~06/01/2014~ -~11257~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~11257~^~646~^0.115^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~ -~11258~^~312~^0.110^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~315~^0.242^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~404~^0.102^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~405~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~406~^0.481^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~410~^0.433^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~415~^0.179^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11258~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~502~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~503~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~504~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~505~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~508~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~509~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~510~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~511~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~512~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~513~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~514~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~515~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~516~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~517~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~518~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11258~^~606~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11258~^~646~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~312~^0.129^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~315~^0.283^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~404~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~405~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~406~^0.130^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~410~^0.480^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~415~^0.209^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11259~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~502~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~503~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~504~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~505~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~508~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~509~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~510~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~511~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~513~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~514~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~515~^0.205^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~516~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~517~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~518~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11259~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11259~^~646~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11260~^~312~^0.318^53^0.019^~11~^~JO~^^^12^0.136^0.620^39^0.280^0.357^~4~^~05/01/2005~ -~11260~^~315~^0.047^40^0.005^~11~^~JO~^^^12^0.000^0.141^35^0.037^0.056^~1, 4~^~05/01/2005~ -~11260~^~404~^0.081^17^0.007^~11~^~JO~^^^4^0.009^0.120^16^0.066^0.095^~4~^~05/01/2005~ -~11260~^~405~^0.402^14^0.027^~11~^~JO~^^^4^0.216^0.610^13^0.344^0.459^~4~^~05/01/2005~ -~11260~^~406~^3.607^17^0.280^~11~^~JO~^^^4^0.219^5.100^16^3.014^4.201^~4~^~05/01/2005~ -~11260~^~410~^1.497^13^0.092^~11~^~JO~^^^4^1.060^2.280^12^1.297^1.697^~4~^~05/01/2005~ -~11260~^~415~^0.104^16^0.012^~11~^~JO~^^^4^0.041^0.234^15^0.077^0.130^~4~^~05/01/2005~ -~11260~^~501~^0.035^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~502~^0.107^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~503~^0.076^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~504~^0.120^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~505~^0.107^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~506~^0.031^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~507~^0.012^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~508~^0.085^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~509~^0.044^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~510~^0.232^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~511~^0.078^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~512~^0.057^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~513~^0.199^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~514~^0.195^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~515~^0.343^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~516~^0.092^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~517~^0.076^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~518~^0.094^0^^~11~^~JO~^^^^^^^^^^~05/01/2010~ -~11260~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11260~^~606~^0.050^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~11260~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11260~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11260~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~613~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~11260~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~11260~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~618~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~11260~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~11260~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~11260~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11260~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2009~ -~11261~^~312~^0.504^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~404~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~405~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~406~^4.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~410~^2.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11261~^~501~^0.024^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~502~^0.075^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~503~^0.053^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~504~^0.084^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~505~^0.075^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~506~^0.022^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~507~^0.009^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~508~^0.060^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~509~^0.031^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~510~^0.163^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~511~^0.055^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~512~^0.040^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~513~^0.140^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~514~^0.137^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~515~^0.240^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~516~^0.064^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~517~^0.053^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~518~^0.066^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11261~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11261~^~606~^0.061^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~611~^0.005^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~618~^0.179^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11261~^~646~^0.183^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11263~^~312~^0.291^3^0.020^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~315~^0.047^3^0.005^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~404~^0.096^4^0.026^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~405~^0.463^4^0.028^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~406~^3.987^4^0.398^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~410~^1.450^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~415~^0.042^3^0.006^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~11263~^~501~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~502~^0.116^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~504~^0.130^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~505~^0.116^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~508~^0.092^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~509~^0.047^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~510~^0.251^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~511~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~512~^0.061^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~513~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~514~^0.211^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~515~^0.371^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~516~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~517~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~518~^0.102^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11263~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11263~^~606~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~11263~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11263~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~613~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~618~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~11263~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11263~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~11263~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11263~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11264~^~312~^0.235^6^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~315~^0.086^5^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11264~^~404~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~405~^0.021^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~406~^1.593^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~410~^0.811^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~415~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11264~^~501~^0.021^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~502~^0.065^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~503~^0.046^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~504~^0.072^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~505~^0.065^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~506~^0.019^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~507~^0.007^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~508~^0.052^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~509~^0.026^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~510~^0.140^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~511~^0.047^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~512~^0.034^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~513~^0.120^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~514~^0.118^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~515~^0.207^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~516~^0.055^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~517~^0.046^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~518~^0.057^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11264~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11264~^~606~^0.038^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~610~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11264~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~612~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11264~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~618~^0.111^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~619~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11264~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11264~^~646~^0.113^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11265~^~312~^0.286^5^0.027^~1~^~A~^^^2^0.170^0.400^3^0.201^0.371^~2, 3~^~08/01/2009~ -~11265~^~315~^0.069^5^0.003^~1~^~A~^^^2^0.042^0.142^3^0.060^0.077^~2, 3~^~08/01/2009~ -~11265~^~404~^0.059^5^0.010^~1~^~A~^^^2^0.030^0.080^3^0.029^0.090^~2, 3~^~08/01/2009~ -~11265~^~405~^0.130^5^0.008^~1~^~A~^^^2^0.020^0.480^3^0.104^0.156^~2, 3~^~08/01/2009~ -~11265~^~406~^4.494^5^0.418^~1~^~A~^^^2^3.170^5.540^3^3.165^5.823^~2, 3~^~08/01/2009~ -~11265~^~410~^1.140^5^0.120^~1~^~A~^^^2^0.800^1.500^3^0.758^1.522^~2, 3~^~08/01/2009~ -~11265~^~415~^0.148^5^0.007^~1~^~A~^^^2^0.100^0.183^3^0.127^0.169^~2, 3~^~08/01/2009~ -~11265~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~502~^0.101^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~504~^0.130^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~505~^0.122^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~508~^0.076^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~510~^0.076^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~511~^0.082^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~512~^0.058^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~513~^0.168^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~514~^0.221^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~515~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~516~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~517~^0.076^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~518~^0.092^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11265~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11265~^~606~^0.010^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11265~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2010~ -~11265~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~617~^0.016^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11265~^~618~^0.148^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11265~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11265~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~625~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2009~ -~11265~^~626~^0.008^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11265~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~11265~^~645~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11265~^~646~^0.296^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11265~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~662~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11265~^~663~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11265~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~673~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~674~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~675~^0.148^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11265~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~11265~^~693~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~11265~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~11265~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11265~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11266~^~312~^0.500^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~315~^0.142^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~404~^0.095^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~405~^0.490^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~406~^3.800^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1999~ -~11266~^~410~^1.500^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~11266~^~501~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~502~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~503~^0.099^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~504~^0.153^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~505~^0.252^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~506~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~507~^0.006^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~508~^0.097^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~509~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~510~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~511~^0.123^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~512~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~513~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~514~^0.228^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~515~^0.428^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~516~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~517~^0.176^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~518~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2010~ -~11266~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11266~^~606~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~611~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~613~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~617~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~618~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~645~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11266~^~646~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1999~ -~11267~^~312~^0.163^3^0.024^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~315~^0.223^3^0.024^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~404~^0.099^4^0.083^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~405~^0.274^3^0.119^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~406~^3.870^4^0.400^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~410~^1.360^1^^~1~^~A~^^^^^^^^^^~07/01/2005~ -~11267~^~415~^0.174^2^^~1~^~A~^^^1^^^^^^^~07/01/2005~ -~11267~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~502~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~503~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~504~^0.187^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~505~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~506~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~507~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~508~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~509~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~510~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~511~^0.154^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~512~^0.055^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~513~^0.165^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~514~^0.296^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~515~^0.670^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~516~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~517~^0.099^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~518~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11267~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11267~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11267~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~ -~11267~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~613~^0.032^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11267~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~618~^0.152^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11267~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11267~^~646~^0.152^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11267~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11267~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11268~^~312~^5.165^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~315~^1.176^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~404~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~405~^1.270^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~406~^14.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~410~^21.879^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~415~^0.965^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11268~^~501~^0.031^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~502~^0.497^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~503~^0.405^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~504~^0.679^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~505~^0.343^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~506~^0.179^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~507~^0.196^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~508~^0.486^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~509~^0.323^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~510~^0.486^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~511~^0.648^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~512~^0.159^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~513~^0.567^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~514~^0.760^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~515~^2.579^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~516~^0.414^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~517~^0.414^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~518~^0.506^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11268~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11268~^~606~^0.225^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11268~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~610~^0.021^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~611~^0.012^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~612~^0.020^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~613~^0.122^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~614~^0.051^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~617~^0.151^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~618~^0.138^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~619~^0.013^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~626~^0.089^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~630~^0.076^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11268~^~645~^0.317^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11268~^~646~^0.151^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11269~^~312~^0.896^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~315~^0.204^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~404~^0.037^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~405~^0.170^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~406~^1.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~410~^3.594^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~415~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11269~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~502~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~503~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~505~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~506~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~508~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~510~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~511~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~513~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~514~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~515~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~517~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~518~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11269~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11269~^~606~^0.050^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~11269~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~610~^0.004^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~611~^0.002^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~612~^0.004^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~613~^0.027^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~614~^0.012^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~617~^0.034^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~618~^0.031^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~619~^0.003^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~626~^0.020^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~630~^0.016^0^^~1~^^^^^^^^^^^~12/01/2010~ -~11269~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11269~^~645~^0.070^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~11269~^~646~^0.034^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~ -~11270~^~312~^0.165^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11270~^~404~^0.080^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~405~^0.110^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~406~^0.800^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~410~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~415~^0.180^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11270~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11270~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~617~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~628~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~630~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11270~^~645~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11270~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~312~^0.146^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11271~^~404~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~405~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~406~^0.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~415~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11271~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11271~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~628~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~630~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11271~^~645~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11271~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~312~^0.067^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~315~^0.339^3^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~404~^0.048^12^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~405~^0.061^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~406~^0.314^12^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~410~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~415~^0.131^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~502~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~503~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~504~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~505~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~507~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~508~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~509~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~510~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~511~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~512~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11272~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~628~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~630~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11272~^~645~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11272~^~646~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~315~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~406~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~410~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~501~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~502~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~504~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~505~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~508~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~509~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~510~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~511~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11273~^~606~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~628~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~630~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11273~^~645~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11273~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11274~^~312~^0.075^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~315~^0.407^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~404~^0.068^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~405~^0.093^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~406~^0.678^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~410~^0.178^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~415~^0.153^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11274~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11274~^~606~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~613~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~614~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~617~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~618~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~619~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~628~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~630~^0.087^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~645~^0.138^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11274~^~646~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11275~^~312~^0.050^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~315~^0.270^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~404~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~405~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~406~^0.430^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~410~^0.119^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~415~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11275~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11276~^~312~^0.093^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11276~^~315~^0.639^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11276~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~405~^0.130^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~410~^0.312^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~415~^0.304^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11276~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11276~^~606~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~619~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11276~^~646~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11277~^~315~^0.526^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11277~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~405~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~410~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~415~^0.237^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11277~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11277~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~618~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~619~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11277~^~646~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~312~^0.109^1^^~6~^~JA~^^^2^0.094^0.109^^^^^~08/01/2012~ -~11278~^~315~^0.788^1^^~6~^~JA~^^^2^0.788^0.990^^^^^~08/01/2012~ -~11278~^~404~^0.200^2^^~1~^^^^1^0.200^0.200^^^^^~08/01/1984~ -~11278~^~405~^0.060^2^^~1~^^^^1^0.060^0.060^^^^^~08/01/1984~ -~11278~^~406~^1.000^2^^~1~^^^^1^1.000^1.000^^^^^~08/01/1984~ -~11278~^~410~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~415~^0.215^2^^~1~^^^^1^0.215^0.215^1^^^^~08/01/1984~ -~11278~^~501~^0.017^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~502~^0.065^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~503~^0.069^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~504~^0.105^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~505~^0.081^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~506~^0.021^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~507~^0.019^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~508~^0.065^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~509~^0.087^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~510~^0.091^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~511~^0.084^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~512~^0.031^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~513~^0.073^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~514~^0.145^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~515~^0.271^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~516~^0.044^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~517~^0.045^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~518~^0.044^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11278~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~613~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~618~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11278~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11278~^~646~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~312~^0.085^18^0.009^~1~^~A~^^^7^0.038^0.209^6^0.063^0.107^~2~^~01/01/2003~ -~11279~^~315~^0.294^18^0.014^~1~^~A~^^^7^0.111^0.424^6^0.258^0.329^~2~^~01/01/2003~ -~11279~^~404~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~405~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~406~^0.871^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~410~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~415~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~502~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~503~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~504~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~505~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~508~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~509~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~510~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~511~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~512~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~514~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~515~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~517~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~518~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11279~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~613~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~617~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11279~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11279~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~312~^0.083^10^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~315~^0.873^10^0.066^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~404~^0.089^41^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~405~^0.105^41^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~406~^0.708^40^0.023^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~410~^0.216^5^0.085^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~415~^0.042^16^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~502~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~504~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~505~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~508~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~510~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~512~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~514~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~515~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~517~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11280~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~613~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~617~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~618~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11280~^~645~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11280~^~646~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11281~^~312~^0.076^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~315~^0.844^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~404~^0.073^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~405~^0.096^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~406~^0.616^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~410~^0.209^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~415~^0.037^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~501~^0.014^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~502~^0.053^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~503~^0.056^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~504~^0.086^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~505~^0.066^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~506~^0.017^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~507~^0.015^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~508~^0.053^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~509~^0.071^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~510~^0.074^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~511~^0.069^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~512~^0.025^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~513~^0.059^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~514~^0.118^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~515~^0.221^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~516~^0.036^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~517~^0.037^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~518~^0.036^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11281~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11281~^~606~^0.063^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~607~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~608~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~609~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~610~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~611~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~612~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~613~^0.053^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~614~^0.006^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~617~^0.040^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~618~^0.063^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~619~^0.001^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~620~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~621~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~626~^0.001^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~627~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~628~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~629~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~630~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~631~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~645~^0.040^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11281~^~646~^0.064^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11282~^~312~^0.039^86^0.002^~6~^~JA~^^^13^0.009^0.115^16^0.036^0.043^~1, 2, 3~^~03/01/2006~ -~11282~^~315~^0.129^89^0.004^~6~^~JA~^^^13^0.049^0.265^28^0.121^0.137^~2, 3~^~03/01/2006~ -~11282~^~404~^0.046^25^0.001^~6~^~JA~^^^2^0.040^0.063^6^0.044^0.049^~2, 3~^~03/01/2006~ -~11282~^~405~^0.027^12^0.002^~6~^~JA~^^^2^0.021^0.039^6^0.022^0.033^~2, 3~^~03/01/2006~ -~11282~^~406~^0.116^15^0.003^~6~^~JA~^^^2^0.037^0.151^1^0.082^0.150^~1, 2, 3~^~03/01/2006~ -~11282~^~410~^0.123^24^0.002^~6~^~JA~^^^2^0.075^0.159^7^0.118^0.128^~2, 3~^~03/01/2006~ -~11282~^~415~^0.120^25^0.004^~6~^~JA~^^^2^0.059^0.222^7^0.110^0.129^~2, 3~^~03/01/2006~ -~11282~^~501~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~502~^0.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~504~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~505~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~507~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~508~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~510~^0.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~511~^0.104^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~512~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~513~^0.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~514~^0.091^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~515~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~516~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~518~^0.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11282~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11282~^~606~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11282~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11282~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~612~^0.004^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~613~^0.034^4^0.003^~1~^~A~^^^1^0.010^0.020^1^-0.017^0.047^~2, 3~^~03/01/2006~ -~11282~^~614~^0.004^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~617~^0.013^4^0.002^~1~^~A~^^^1^0.002^0.010^1^-0.021^0.032^~1, 2, 3~^~03/01/2006~ -~11282~^~618~^0.013^4^0.002^~1~^~A~^^^1^0.002^0.010^1^-0.021^0.032^~1, 2, 3~^~03/01/2006~ -~11282~^~619~^0.004^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11282~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11282~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11283~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~315~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~406~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~410~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~415~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~511~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~514~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~515~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~517~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~518~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11283~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~613~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~617~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~618~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11283~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11283~^~646~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~312~^0.416^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~315~^1.389^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~404~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~406~^0.990^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~410~^1.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~415~^1.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~501~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~502~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~503~^0.316^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~504~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~505~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~506~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~507~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~508~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~509~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~510~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~511~^1.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~512~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~513~^0.249^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~514~^0.490^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~515~^1.445^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~516~^0.372^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~517~^0.279^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~518~^0.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11284~^~606~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~613~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~617~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~618~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11284~^~645~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11284~^~646~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~312~^0.055^21^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~315~^0.102^20^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~404~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~405~^0.006^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~406~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~410~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~415~^0.137^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11285~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~504~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~508~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~510~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~511~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~513~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~514~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~515~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11285~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~618~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11285~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11285~^~646~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11286~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~315~^0.102^4^0.011^~1~^~A~^^^1^0.084^0.132^3^0.065^0.138^~2, 3~^~08/01/2004~ -~11286~^~404~^0.049^4^0.004^~1~^~A~^^^1^0.043^0.059^3^0.037^0.061^~2, 3~^~08/01/2004~ -~11286~^~405~^0.041^4^0.008^~1~^~A~^^^1^0.022^0.061^3^0.016^0.067^~2, 3~^~08/01/2004~ -~11286~^~406~^0.037^4^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~08/01/2004~ -~11286~^~410~^0.172^4^0.018^~1~^~A~^^^1^0.135^0.220^3^0.116^0.228^~2, 3~^~08/01/2004~ -~11286~^~415~^0.207^4^0.019^~1~^~A~^^^1^0.152^0.238^3^0.147^0.267^~2, 3~^~08/01/2004~ -~11286~^~501~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~502~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~504~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~505~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~506~^0.002^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~507~^0.004^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~508~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~510~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~511~^0.102^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~512~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~513~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~514~^0.089^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~515~^0.251^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~516~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~518~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11286~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11286~^~606~^1.477^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11286~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~612~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2004~ -~11286~^~613~^1.020^2^^~1~^~A~^^^1^1.000^1.040^1^^^^~08/01/2004~ -~11286~^~614~^0.395^2^^~1~^~A~^^^1^0.390^0.400^1^^^^~08/01/2004~ -~11286~^~615~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~08/01/2004~ -~11286~^~617~^2.155^2^^~1~^~A~^^^1^2.120^2.190^1^^^^~08/01/2004~ -~11286~^~618~^4.810^2^^~1~^~A~^^^1^4.740^4.880^1^^^^~08/01/2004~ -~11286~^~619~^0.660^2^^~1~^~A~^^^1^0.650^0.670^1^^^^~08/01/2004~ -~11286~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~624~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~08/01/2004~ -~11286~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~628~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~08/01/2004~ -~11286~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~645~^2.185^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11286~^~646~^5.470^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11286~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11286~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~11287~^~312~^0.019^4^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~315~^0.074^4^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~404~^0.030^17^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~405~^0.027^17^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~406~^0.151^15^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~410~^0.102^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~415~^0.075^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~502~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~504~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~505~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~510~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~511~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~513~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~514~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~515~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~518~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11287~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11287~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11287~^~646~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~312~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~315~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~404~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~406~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~410~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~415~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~503~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~504~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~505~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~510~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~511~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~514~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~516~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~518~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11288~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~618~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11288~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11288~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~312~^0.050^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~315~^0.125^3^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~404~^0.026^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~405~^0.024^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~406~^0.175^6^0.054^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~410~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~415~^0.093^3^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~503~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~504~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~505~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~510~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~511~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~514~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~515~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11289~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11289~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11289~^~646~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~312~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~315~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~405~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~406~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~410~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~415~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~505~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~508~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~510~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~511~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~514~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~515~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11290~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11290~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11290~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~312~^0.083^4^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~315~^0.160^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~404~^0.055^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~405~^0.080^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~406~^0.525^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~410~^0.075^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~415~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11291~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~502~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~503~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~504~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~505~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~508~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~510~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~511~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~513~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~514~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~515~^0.378^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~516~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~517~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~518~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11291~^~606~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~613~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~614~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~617~^0.027^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~618~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~619~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11291~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11291~^~646~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11292~^~312~^0.031^4^0.003^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~315~^0.150^4^0.019^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~404~^0.030^4^0.000^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~405~^0.026^4^0.006^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~406~^0.330^4^0.032^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~410~^0.138^4^0.009^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~415~^0.088^4^0.007^~1~^~A~^^^1^^^^^^^~04/01/2009~ -~11292~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~606~^0.165^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11292~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11292~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11292~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~610~^0.023^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~613~^0.085^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~617~^0.034^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11292~^~618~^0.081^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11292~^~619~^0.040^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11292~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11292~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11292~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~645~^0.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11292~^~646~^0.121^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11292~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~673~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~674~^0.034^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~675~^0.081^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11292~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11292~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~851~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11292~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11292~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11293~^~312~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~315~^0.137^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~410~^0.169^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~415~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11293~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~502~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~503~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~504~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~505~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~508~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~509~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~510~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~511~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~513~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~514~^0.176^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~515~^0.393^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~516~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~517~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~518~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11293~^~606~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~613~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~617~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~618~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~645~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11293~^~646~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11294~^~312~^0.056^8^0.002^~1~^~A~^^^2^0.029^0.075^3^0.050^0.062^~2, 3~^~04/01/2003~ -~11294~^~315~^0.076^8^0.008^~1~^~A~^^^2^0.037^0.107^6^0.055^0.097^~2, 3~^~04/01/2003~ -~11294~^~404~^0.041^8^0.008^~1~^~A~^^^2^0.020^0.095^3^0.017^0.064^~2, 3~^~04/01/2003~ -~11294~^~405~^0.020^8^0.002^~1~^~A~^^^2^0.016^0.036^3^0.014^0.026^~1, 2, 3~^~04/01/2003~ -~11294~^~406~^0.133^6^0.007^~1~^~A~^^^2^0.100^0.164^3^0.109^0.157^~2, 3~^~04/01/2003~ -~11294~^~410~^0.098^8^0.006^~1~^~A~^^^2^0.078^0.134^4^0.080^0.115^~2, 3~^~04/01/2003~ -~11294~^~415~^0.130^8^0.021^~1~^~A~^^^2^0.050^0.306^3^0.065^0.194^~2, 3~^~04/01/2003~ -~11294~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~502~^0.018^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~504~^0.025^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~505~^0.033^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~506~^0.009^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~508~^0.024^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~509~^0.012^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~510~^0.020^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~511~^0.111^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~512~^0.011^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~513~^0.017^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~514~^0.067^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~515~^0.177^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~516~^0.020^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~517~^0.015^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~518~^0.020^0^^~1~^~A~^^^^^^^^^^~10/01/2003~ -~11294~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11295~^~312~^0.074^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~315~^0.299^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~404~^0.100^13^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~405~^0.079^10^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~406~^0.693^13^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~410~^0.240^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~415~^0.132^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11295~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~502~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~503~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~504~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~505~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~507~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~508~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~510~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~511~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~512~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~513~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~514~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~515~^0.972^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~516~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~517~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~518~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~606~^4.534^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~612~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~613~^2.747^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~614~^1.674^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~617~^5.550^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~618~^2.550^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~619~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~626~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~645~^5.738^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11295~^~646~^2.700^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~312~^0.073^11^0.002^~1~^~A~^^^1^0.054^0.122^4^0.068^0.078^~2, 3~^~04/01/2013~ -~11296~^~315~^0.348^11^0.019^~1~^~A~^^^1^0.259^0.650^1^0.171^0.525^~2, 3~^~04/01/2013~ -~11296~^~404~^0.185^7^0.002^~1~^~A~^^^1^0.160^0.250^2^0.176^0.193^~2, 3~^~04/01/2013~ -~11296~^~405~^0.116^7^0.002^~1~^~A~^^^1^0.090^0.140^4^0.110^0.121^~2, 3~^~04/01/2013~ -~11296~^~406~^1.349^7^0.023^~1~^~A~^^^1^1.070^1.820^3^1.276^1.421^~2, 3~^~04/01/2013~ -~11296~^~410~^0.294^4^0.002^~1~^~A~^^^1^0.260^0.400^1^0.274^0.314^~2, 3~^~04/01/2013~ -~11296~^~415~^0.117^7^0.002^~1~^~A~^^^1^0.110^0.150^2^0.109^0.125^~2, 3~^~04/01/2013~ -~11296~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~502~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~504~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~505~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~506~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~507~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~508~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~509~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~510~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~511~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~513~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~514~^0.246^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~515~^1.648^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~516~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~517~^0.521^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~518~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11296~^~605~^0.053^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~606~^2.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~607~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~609~^0.012^7^0.000^~1~^~A~^^^1^0.000^0.019^4^0.011^0.014^~1, 2, 3~^~04/01/2013~ -~11296~^~610~^0.013^7^0.000^~1~^~A~^^^1^0.010^0.015^3^0.012^0.014^~2, 3~^~04/01/2013~ -~11296~^~611~^0.005^7^0.000^~1~^~A~^^^1^0.003^0.006^3^0.004^0.005^~2, 3~^~04/01/2013~ -~11296~^~612~^0.011^7^0.000^~1~^~A~^^^1^0.010^0.013^4^0.011^0.012^~2, 3~^~04/01/2013~ -~11296~^~613~^1.430^7^0.018^~1~^~A~^^^1^1.262^1.659^3^1.378^1.482^~2, 3~^~04/01/2013~ -~11296~^~614~^0.553^7^0.008^~1~^~A~^^^1^0.478^0.649^3^0.531^0.576^~2, 3~^~04/01/2013~ -~11296~^~615~^0.040^7^0.002^~1~^~A~^^^1^0.000^0.049^2^0.030^0.049^~1, 2, 3~^~04/01/2013~ -~11296~^~617~^2.786^7^0.037^~1~^~AS~^^^1^2.415^3.271^4^2.679^2.893^~2, 3~^~04/01/2013~ -~11296~^~618~^6.386^7^0.080^~1~^~AS~^^^1^5.805^7.862^4^6.153^6.619^~2, 3~^~04/01/2013~ -~11296~^~619~^0.836^7^0.011^~1~^~AS~^^^1^0.781^1.081^3^0.802^0.869^~2, 3~^~04/01/2013~ -~11296~^~620~^0.005^7^0.000^~1~^~A~^^^1^0.000^0.006^4^0.004^0.006^~1, 2, 3~^~04/01/2013~ -~11296~^~621~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~624~^0.040^7^0.000^~1~^~A~^^^1^0.035^0.045^4^0.039^0.042^~2, 3~^~04/01/2013~ -~11296~^~625~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~626~^0.012^7^0.000^~1~^~AS~^^^1^0.010^0.015^4^0.012^0.013^~2, 3~^~04/01/2013~ -~11296~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~628~^0.048^7^0.001^~1~^~A~^^^1^0.031^0.054^4^0.046^0.049^~2, 3~^~04/01/2013~ -~11296~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~630~^0.002^7^0.000^~1~^~AS~^^^1^0.000^0.003^4^0.001^0.003^~2, 3~^~04/01/2013~ -~11296~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~645~^3.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~646~^7.633^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~652~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.005^3^0.004^0.004^~2, 3~^~04/01/2013~ -~11296~^~653~^0.013^7^0.000^~1~^~A~^^^1^0.011^0.016^3^0.012^0.014^~2, 3~^~04/01/2013~ -~11296~^~654~^0.015^7^0.000^~1~^~A~^^^1^0.014^0.016^3^0.014^0.015^~2, 3~^~04/01/2013~ -~11296~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~663~^0.014^7^0.000^~1~^~A~^^^1^0.004^0.020^2^0.012^0.015^~2, 3~^~04/01/2013~ -~11296~^~664~^0.002^7^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~11296~^~665~^0.037^7^0.001^~1~^~A~^^^1^0.022^0.043^2^0.035^0.040^~2, 3~^~04/01/2013~ -~11296~^~670~^0.003^7^0.000^~1~^~A~^^^1^0.000^0.006^3^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~11296~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~672~^0.003^7^0.000^~1~^~A~^^^1^0.000^0.005^3^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~11296~^~673~^0.012^7^0.000^~1~^~A~^^^1^0.010^0.015^4^0.012^0.013^~2, 3~^~04/01/2013~ -~11296~^~674~^2.772^7^0.036^~1~^~A~^^^1^2.411^3.264^4^2.667^2.878^~2, 3~^~04/01/2013~ -~11296~^~675~^6.346^7^0.079^~1~^~A~^^^1^5.768^7.823^4^6.113^6.578^~2, 3~^~04/01/2013~ -~11296~^~676~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~685~^0.047^7^0.001^~1~^~A~^^^1^0.043^0.054^3^0.044^0.050^~2, 3~^~04/01/2013~ -~11296~^~687~^0.007^7^0.000^~1~^~A~^^^1^0.006^0.008^2^0.006^0.008^~2, 3~^~04/01/2013~ -~11296~^~689~^0.000^7^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~11296~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11296~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~851~^0.789^7^0.011^~1~^~A~^^^1^0.734^1.027^3^0.757^0.821^~2, 3~^~04/01/2013~ -~11296~^~852~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~853~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~856~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11296~^~858~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~11297~^~312~^0.149^3^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~315~^0.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~404~^0.086^3^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~405~^0.098^3^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~406~^1.313^3^0.334^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~410~^0.400^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~415~^0.090^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~501~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~502~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~503~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~504~^0.204^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~505~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~509~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~510~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~511~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~512~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~513~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~514~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~515~^0.249^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~516~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~517~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~518~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11297~^~606~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~612~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~613~^0.084^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~614~^0.039^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~617~^0.287^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~618~^0.115^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~619~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~626~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11297~^~645~^0.295^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11297~^~646~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~312~^0.120^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~315~^0.560^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~404~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~405~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~410~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~415~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11298~^~606~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~612~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~613~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~614~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~617~^0.102^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~618~^0.041^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~619~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~626~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~645~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11298~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~312~^0.138^5^^~1~^^^^^0.102^0.208^^^^^~01/01/2003~ -~11299~^~315~^0.294^5^^~1~^^^^^0.173^0.402^^^^^~01/01/2003~ -~11299~^~404~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~405~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~406~^0.724^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~410~^0.588^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~415~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11299~^~606~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~617~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~618~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11299~^~645~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11299~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~312~^0.079^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11300~^~315~^0.244^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11300~^~404~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~405~^0.080^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~406~^0.600^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~410~^0.750^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~415~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~501~^0.027^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~502~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~503~^0.161^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~504~^0.228^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~505~^0.202^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~506~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~507~^0.032^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~508~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~509~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~510~^0.273^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~511~^0.134^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~512~^0.017^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~513~^0.058^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~514~^0.228^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~515~^0.448^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~516~^0.072^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~517~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~518~^0.125^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11300~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~612~^0.002^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~613~^0.033^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~614~^0.003^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~617~^0.021^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~618~^0.075^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~619~^0.013^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11300~^~645~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11300~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~312~^0.077^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~315~^0.168^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~405~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~406~^0.539^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~410~^0.673^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~415~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~503~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~504~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~505~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~507~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~509~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~510~^0.319^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~511~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~514~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~515~^0.523^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~516~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~517~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~518~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11301~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~613~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~617~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~618~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11301~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11301~^~646~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~312~^0.076^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11302~^~315~^0.235^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11302~^~404~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~410~^0.720^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~415~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~502~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~503~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~504~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~505~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~508~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~509~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~510~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~511~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~513~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~514~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~515~^0.448^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~516~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~517~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~518~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11302~^~606~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~613~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~617~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~618~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~645~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11302~^~646~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~312~^0.090^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11303~^~315~^0.280^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11303~^~404~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~405~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~406~^0.563^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~410~^0.857^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~415~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~502~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~503~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~504~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~505~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~507~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~509~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~510~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~511~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~513~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~514~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~515~^0.560^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~516~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~517~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~518~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11303~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~618~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~619~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11303~^~645~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11303~^~646~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~312~^0.176^7^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~315~^0.410^7^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~404~^0.266^7^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~405~^0.132^7^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~406~^2.090^7^0.137^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~410~^0.104^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~415~^0.169^7^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~502~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~503~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~504~^0.323^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~505~^0.317^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~506~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~508~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~509~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~510~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~511~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~512~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~513~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~514~^0.496^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~515~^0.741^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~516~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~517~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~518~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11304~^~606~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~613~^0.064^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~614~^0.007^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~617~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~618~^0.152^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~619~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11304~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11304~^~646~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~312~^0.173^14^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~315~^0.525^14^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~404~^0.259^12^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~405~^0.149^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~406~^2.021^12^0.070^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~410~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~415~^0.216^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~502~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~503~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~504~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~505~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~506~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~508~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~509~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~510~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~511~^0.423^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~512~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~514~^0.490^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~515~^0.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~516~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~517~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~518~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11305~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~618~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11305~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11305~^~646~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11306~^~312~^0.099^49^0.006^~6~^~JA~^^^6^0.062^0.271^48^0.088^0.111^~4~^~04/01/2011~ -~11306~^~315~^0.211^50^0.005^~6~^~JA~^^^6^0.137^0.279^49^0.202^0.221^~4~^~04/01/2011~ -~11306~^~404~^0.077^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.062^0.093^~2, 3~^~04/01/2011~ -~11306~^~405~^0.024^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.012^0.036^~1, 2, 3~^~04/01/2011~ -~11306~^~406~^0.995^4^0.086^~1~^~A~^^^1^0.820^1.220^3^0.720^1.270^~2, 3~^~04/01/2011~ -~11306~^~410~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11306~^~415~^0.065^9^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11306~^~501~^0.021^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~502~^0.115^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~503~^0.111^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~504~^0.183^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~505~^0.180^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~506~^0.047^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~507~^0.018^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~508~^0.114^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~509~^0.065^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~510~^0.133^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~511~^0.243^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~512~^0.061^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~513~^0.136^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~514~^0.282^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~515~^0.421^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~516~^0.104^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~517~^0.098^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~518~^0.103^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11306~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11306~^~606~^0.086^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~613~^0.077^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~614~^0.009^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~617~^0.043^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~618~^0.183^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~619~^0.043^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11306~^~645~^0.043^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11306~^~646~^0.226^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~312~^0.106^9^0.003^~1~^~A~^^^2^0.089^0.116^5^0.098^0.114^~2, 3~^~04/01/2011~ -~11308~^~315~^0.213^9^0.014^~1~^~A~^^^2^0.158^0.289^5^0.176^0.249^~2, 3~^~12/01/2007~ -~11308~^~404~^0.107^9^0.006^~1~^~A~^^^2^0.070^0.170^4^0.089^0.124^~2, 3~^~04/01/2011~ -~11308~^~405~^0.053^9^0.004^~1~^~A~^^^2^0.030^0.080^7^0.043^0.063^~2, 3~^~04/01/2011~ -~11308~^~406~^0.979^9^0.050^~1~^~A~^^^2^0.820^1.270^4^0.841^1.117^~2, 3~^~04/01/2011~ -~11308~^~410~^0.240^5^0.019^~1~^~A~^^^1^0.180^0.280^4^0.187^0.293^~2, 3~^~12/01/2007~ -~11308~^~415~^0.056^5^0.005^~1~^~A~^^^1^0.040^0.070^4^0.042^0.070^~2, 3~^~12/01/2007~ -~11308~^~501~^0.031^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~502~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~503~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~504~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~505~^0.261^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~506~^0.068^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~507~^0.026^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~11308~^~508~^0.165^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~510~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~511~^0.353^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~512~^0.088^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~513~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~514~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~515~^0.611^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~516~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~517~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~518~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11308~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11308~^~606~^0.143^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~613~^0.129^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~614~^0.014^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~617~^0.071^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~618~^0.304^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~619~^0.071^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2007~ -~11308~^~645~^0.071^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11308~^~646~^0.375^0^^~1~^^^^^^^^^^^~04/01/2011~ -~11310~^~312~^0.099^36^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~315~^0.268^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~404~^0.096^36^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~405~^0.071^36^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~406~^0.690^36^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~410~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11310~^~415~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11310~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~502~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~503~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~504~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~505~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~506~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~509~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~510~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~511~^0.244^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~512~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~513~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~514~^0.283^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~515~^0.422^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~517~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11310~^~606~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~618~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11310~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11311~^~312~^0.108^4^0.008^~1~^~A~^^^1^0.086^0.121^3^0.082^0.133^~2, 3~^~04/01/2011~ -~11311~^~315~^0.222^4^0.026^~1~^~A~^^^1^0.157^0.278^3^0.140^0.305^~2, 3~^~04/01/2011~ -~11311~^~404~^0.067^4^0.005^~1~^~A~^^^1^0.060^0.080^3^0.052^0.083^~2, 3~^~04/01/2011~ -~11311~^~405~^0.040^4^0.009^~1~^~A~^^^1^0.020^0.060^3^0.011^0.069^~2, 3~^~04/01/2011~ -~11311~^~406~^1.012^4^0.120^~1~^~A~^^^1^0.760^1.260^3^0.630^1.395^~2, 3~^~04/01/2011~ -~11311~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~502~^0.130^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~503~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~504~^0.540^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~505~^0.407^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~506~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~507~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~508~^0.201^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~510~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~511~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~512~^0.117^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~513~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~514~^0.304^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~515~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~516~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~517~^0.544^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~518~^0.241^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~11311~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11311~^~606~^0.170^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~607~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~608~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~609~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~610~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~611~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~612~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~613~^0.153^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~614~^0.017^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~617~^0.085^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~618~^0.364^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~619~^0.085^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~620~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~621~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~626~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~627~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~628~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~629~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~630~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~631~^0.000^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~645~^0.085^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11311~^~646~^0.449^0^^~4~^~BFSN~^~11306~^^^^^^^^^~04/01/2011~ -~11312~^~312~^0.124^34^0.004^~6~^~JA~^^^2^0.122^0.150^30^0.117^0.132^~2, 3~^~03/01/2008~ -~11312~^~315~^0.336^33^0.031^~6~^~JA~^^^2^0.302^0.338^29^0.273^0.399^~2, 3~^~03/01/2008~ -~11312~^~404~^0.259^89^0.009^~6~^~JA~^^^2^0.230^0.310^86^0.241^0.276^~2, 3~^~03/01/2008~ -~11312~^~405~^0.100^90^0.003^~6~^~JA~^^^2^0.070^0.140^83^0.094^0.106^~2, 3~^~03/01/2008~ -~11312~^~406~^1.723^90^0.058^~6~^~JA~^^^2^1.520^2.760^86^1.607^1.839^~2, 3~^~03/01/2008~ -~11312~^~410~^0.547^3^0.029^~6~^~JA~^^^2^0.136^0.600^2^0.422^0.672^~2, 3~^~03/01/2008~ -~11312~^~415~^0.083^3^0.003^~6~^~JA~^^^2^0.080^0.122^2^0.069^0.098^~2, 3~^~03/01/2008~ -~11312~^~501~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~502~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~503~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~504~^0.311^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~505~^0.305^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~506~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~507~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~508~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~509~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~510~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~511~^0.412^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~512~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~513~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~514~^0.476^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~515~^0.712^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~516~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~517~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~518~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11312~^~606~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~613~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~617~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~618~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~619~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11312~^~645~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11312~^~646~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~312~^0.105^47^0.003^~1~^^^^5^0.047^0.144^46^0.099^0.111^~4~^~09/01/2002~ -~11313~^~315~^0.279^48^0.009^~1~^^^^5^0.166^0.394^47^0.262^0.297^~4~^~09/01/2002~ -~11313~^~404~^0.283^11^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~405~^0.100^11^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~406~^1.480^9^0.053^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~410~^0.142^3^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~415~^0.113^11^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~502~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~503~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~505~^0.302^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~506~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~508~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~509~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~510~^0.223^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~511~^0.407^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~512~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~513~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~514~^0.471^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~515~^0.705^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~516~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~517~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~518~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11313~^~606~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11313~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11313~^~646~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~312~^0.272^4^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~315~^0.438^4^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~404~^0.225^8^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~405~^0.155^8^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~406~^3.088^8^0.130^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~410~^1.029^8^0.061^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~415~^0.265^8^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~502~^0.186^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~503~^0.171^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~504~^0.365^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~505~^0.384^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~506~^0.069^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~507~^0.155^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~508~^0.251^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~509~^0.127^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~510~^0.220^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~511~^0.484^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~512~^0.167^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~513~^0.245^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~514~^0.656^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~515~^1.017^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~516~^0.208^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~517~^0.277^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~518~^0.299^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11316~^~606~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~613~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~617~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~618~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~619~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~645~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11316~^~646~^0.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~312~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~315~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~404~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~405~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~406~^1.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~410~^0.683^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~415~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~502~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~503~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~504~^0.473^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~505~^0.497^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~507~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~508~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~509~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~510~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~511~^0.627^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~512~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~513~^0.317^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~514~^0.849^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~515~^1.317^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~516~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~517~^0.359^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~518~^0.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11317~^~606~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~617~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~618~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~619~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~645~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11317~^~646~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~312~^0.103^28^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~315~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~404~^0.074^154^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~405~^0.053^155^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~406~^0.581^155^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~415~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~502~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~503~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~504~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~505~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~508~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~509~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~510~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~511~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~512~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~513~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~514~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~515~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~516~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~517~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~518~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11318~^~606~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~613~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11318~^~646~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~312~^0.089^9^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~315~^0.235^7^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~404~^0.190^34^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~405~^0.081^34^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~406~^1.412^34^0.055^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~410~^0.199^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~415~^0.101^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~502~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~503~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~504~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~505~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~506~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~508~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~509~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~510~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~511~^0.257^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~513~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~514~^0.324^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~515~^0.483^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~516~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~517~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~518~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11322~^~606~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~613~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~617~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~618~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11322~^~645~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11322~^~646~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~312~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~315~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~404~^0.225^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~405~^0.064^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~406~^1.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~415~^0.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~501~^0.021^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~502~^0.156^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~503~^0.116^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~504~^0.185^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~505~^0.182^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~506~^0.045^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~507~^0.041^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~508~^0.114^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~509~^0.067^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~510~^0.133^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~511~^0.232^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~512~^0.063^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~513~^0.149^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~514~^0.295^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~515~^0.467^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~516~^0.102^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~517~^0.099^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~518~^0.103^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11323~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11323~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~613~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~618~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~619~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11323~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11323~^~646~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~312~^0.100^4^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~315~^0.255^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11324~^~404~^0.100^4^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~405~^0.070^4^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~406~^1.280^4^0.260^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~410~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11324~^~415~^0.192^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11324~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~502~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~503~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~504~^0.191^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~505~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~508~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~511~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~512~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~513~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~514~^0.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~515~^0.454^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~516~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~517~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~518~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11324~^~606~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~613~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~617~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~618~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~645~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11324~^~646~^0.176^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~312~^0.103^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~315~^0.274^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~404~^0.297^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~405~^0.114^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~406~^1.720^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~410~^0.156^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~415~^0.144^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11326~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~502~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~503~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~504~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~505~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~506~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~508~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~509~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~510~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~511~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~512~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~513~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~514~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~515~^0.550^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~516~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~518~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11326~^~606~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~613~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~617~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~618~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~645~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11326~^~646~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~312~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~315~^0.166^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~404~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~405~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~406~^1.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~410~^0.090^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~415~^0.087^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11327~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~502~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~503~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~504~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~505~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~508~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~509~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~510~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~511~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~512~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~513~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~514~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~515~^0.351^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~516~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~517~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~518~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11327~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~613~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11327~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11327~^~646~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~312~^0.101^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~315~^0.138^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~410~^0.034^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~415~^0.153^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11329~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~504~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~505~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~511~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~512~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~514~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~515~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~517~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11329~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~618~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11329~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11329~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11333~^~312~^0.066^65^0.003^~6~^~JA~^^^7^0.017^0.135^26^0.058^0.073^~1, 2, 3~^~03/01/2003~ -~11333~^~315~^0.122^65^0.005^~6~^~JA~^^^7^0.030^0.267^43^0.112^0.133^~2, 3~^~03/01/2003~ -~11333~^~404~^0.057^16^0.001^~6~^~JA~^^^2^0.037^0.067^3^0.055^0.060^~2, 3~^~03/01/2003~ -~11333~^~405~^0.028^16^0.000^~6~^~JA~^^^2^0.023^0.033^3^0.027^0.028^~2, 3~^~03/01/2003~ -~11333~^~406~^0.480^16^0.009^~6~^~JA~^^^2^0.448^0.595^3^0.450^0.509^~2, 3~^~03/01/2003~ -~11333~^~410~^0.099^16^0.009^~6~^~JA~^^^2^0.063^0.258^3^0.071^0.127^~2, 3~^~03/01/2003~ -~11333~^~415~^0.224^16^0.002^~6~^~JA~^^^2^0.118^0.283^3^0.217^0.231^~2, 3~^~03/01/2003~ -~11333~^~501~^0.012^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~502~^0.036^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~503~^0.024^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~504~^0.036^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~505~^0.039^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~506~^0.007^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~507~^0.012^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~508~^0.092^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~509~^0.012^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~510~^0.036^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~511~^0.027^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~512~^0.010^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~513~^0.036^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~514~^0.208^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~515~^0.194^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~516~^0.030^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~517~^0.024^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~518~^0.054^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11333~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11333~^~606~^0.058^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11333~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11333~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~613~^0.050^2^^~1~^~A~^^^1^0.010^0.010^^^^^~03/01/2006~ -~11333~^~614~^0.008^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2006~ -~11333~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~617~^0.008^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2006~ -~11333~^~618~^0.054^2^^~1~^~A~^^^1^0.002^0.020^1^^^~1~^~03/01/2006~ -~11333~^~619~^0.008^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2006~ -~11333~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~645~^0.008^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~646~^0.062^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11333~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11333~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11334~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~406~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~415~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~515~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11334~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11334~^~606~^0.029^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~607~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~613~^0.022^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~617~^0.012^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~618~^0.096^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~619~^0.010^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~620~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~621~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~627~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~631~^0.000^0^^~1~^^^^^^^^^^^~10/01/2002~ -~11334~^~645~^0.013^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11334~^~646~^0.106^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11335~^~312~^0.130^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~315~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11335~^~404~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~405~^0.030^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~406~^0.550^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~410~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11335~^~415~^0.178^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11335~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~502~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~504~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~505~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~508~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~511~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~514~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~515~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~516~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~517~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11335~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~613~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~618~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11335~^~646~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~312~^0.053^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~315~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~404~^0.069^7^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~405~^0.038^7^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~406~^1.370^7^0.753^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~410~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~415~^0.137^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~504~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~505~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~508~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~510~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~511~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~513~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~514~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~515~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~516~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~517~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~518~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11337~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~618~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11337~^~646~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~315~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~406~^1.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~410~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~502~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~503~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~504~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~510~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~511~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~513~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~514~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~515~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~516~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~517~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~518~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11338~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~618~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11338~^~646~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11339~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~10/01/2002~ -~11339~^~315~^0.062^4^0.021^~1~^~A~^^^1^0.008^0.098^3^-0.004^0.127^~1, 2, 3~^~10/01/2002~ -~11339~^~404~^0.042^4^0.003^~1~^~A~^^^1^0.037^0.051^3^0.032^0.052^~2, 3~^~10/01/2002~ -~11339~^~405~^0.048^4^0.007^~1~^~A~^^^1^0.036^0.067^3^0.027^0.070^~2, 3~^~10/01/2002~ -~11339~^~406~^0.582^4^0.023^~1~^~A~^^^1^0.531^0.639^3^0.510^0.654^~2, 3~^~10/01/2002~ -~11339~^~410~^0.111^4^0.006^~1~^~A~^^^1^0.094^0.119^3^0.092^0.129^~2, 3~^~10/01/2002~ -~11339~^~415~^0.196^4^0.023^~1~^~A~^^^1^0.130^0.231^3^0.124^0.269^~2, 3~^~10/01/2002~ -~11339~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~502~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~503~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~504~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~505~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~508~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~509~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~510~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~511~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~512~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~513~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~514~^0.189^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~515~^0.176^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~516~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~517~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~518~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11339~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11339~^~606~^1.590^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11339~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11339~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~ -~11339~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~613~^1.100^2^^~1~^~A~^^^1^1.040^1.160^1^^^^~10/01/2002~ -~11339~^~614~^0.420^2^^~1~^~A~^^^1^0.390^0.450^1^^^^~10/01/2002~ -~11339~^~615~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~10/01/2002~ -~11339~^~617~^2.310^2^^~1~^~A~^^^1^2.190^2.430^1^^^^~10/01/2002~ -~11339~^~618~^5.130^2^^~1~^~A~^^^1^4.800^5.460^1^^^^~10/01/2002~ -~11339~^~619~^0.770^2^^~1~^~A~^^^1^0.740^0.800^1^^^^~10/01/2002~ -~11339~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~624~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~10/01/2002~ -~11339~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~626~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~10/01/2002~ -~11339~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~628~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~10/01/2002~ -~11339~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~645~^2.337^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11339~^~646~^5.900^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11339~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11339~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2002~ -~11344~^~312~^0.134^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~315~^0.574^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~404~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~405~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~406~^2.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~410~^0.680^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~415~^0.068^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11344~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11344~^~606~^0.354^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~613~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~614~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~618~^0.835^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~619~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11344~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11344~^~646~^0.873^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~312~^0.105^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11345~^~315~^0.451^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11345~^~404~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~405~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~406~^2.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~410~^0.630^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11345~^~415~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11345~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11345~^~606~^0.365^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~618~^0.860^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~619~^0.039^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11345~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11345~^~646~^0.899^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11349~^~312~^0.166^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~315~^0.370^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~404~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~406~^1.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~410~^0.293^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~415~^0.273^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11349~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11349~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~618~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11349~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11349~^~646~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~312~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~315~^0.418^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~404~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~405~^0.330^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~406~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11350~^~410~^0.049^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~415~^0.146^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11350~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11351~^~312~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~315~^0.336^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~405~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~406~^1.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11351~^~410~^0.039^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~415~^0.111^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11351~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11351~^~606~^0.092^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~611~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~613~^0.082^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~614~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~617~^0.012^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~618~^0.166^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~619~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~645~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11351~^~646~^0.176^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11352~^~312~^0.110^11^0.017^~1~^~A~^^^2^0.077^0.185^1^-0.094^0.314^~1, 2~^~09/01/2015~ -~11352~^~315~^0.153^11^0.027^~1~^~A~^^^2^0.116^0.241^1^-0.184^0.490^~2~^~05/01/2002~ -~11352~^~404~^0.081^11^0.006^~1~^~A~^^^2^0.060^0.095^1^0.041^0.122^~2~^~09/01/2015~ -~11352~^~405~^0.032^11^0.013^~1~^~A~^^^2^0.016^0.053^1^-0.099^0.164^~1, 2~^~05/01/2002~ -~11352~^~406~^1.061^10^0.035^~1~^~A~^^^2^0.932^1.300^1^0.803^1.318^~2~^~09/01/2015~ -~11352~^~410~^0.295^11^0.037^~1~^~A~^^^2^0.250^0.368^1^-0.162^0.753^~2~^~09/01/2015~ -~11352~^~415~^0.298^11^0.153^~1~^~A~^^^2^0.110^0.604^1^-1.625^2.220^~2~^~09/01/2015~ -~11352~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11352~^~502~^0.067^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~503~^0.066^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~504~^0.098^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~505~^0.107^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~506~^0.032^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~507~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11352~^~508~^0.081^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~509~^0.048^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~510~^0.103^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~511~^0.101^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~512~^0.035^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~513~^0.063^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~514~^0.480^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~515~^0.351^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~516~^0.057^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~517~^0.063^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~518~^0.074^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~11352~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11352~^~606~^0.025^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11352~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~610~^0.001^6^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~611~^0.003^6^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~612~^0.001^18^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~613~^0.016^59^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~614~^0.004^59^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~617~^0.001^59^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~618~^0.032^59^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~619~^0.010^59^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~626~^0.001^37^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2002~ -~11352~^~645~^0.002^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11352~^~646~^0.042^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11353~^~312~^0.103^4^0.003^~1~^~A~^^^2^0.077^0.130^2^0.092^0.115^~2, 3~^~04/01/2002~ -~11353~^~315~^0.157^4^0.023^~1~^~A~^^^2^0.117^0.241^1^-0.133^0.447^~2, 3~^~04/01/2002~ -~11353~^~404~^0.082^4^0.008^~1~^~A~^^^2^0.060^0.095^1^0.018^0.147^~2, 3~^~04/01/2002~ -~11353~^~405~^0.033^4^0.001^~1~^~A~^^^2^0.016^0.053^1^0.017^0.049^~1, 2, 3~^~04/01/2002~ -~11353~^~406~^1.035^4^0.051^~1~^~A~^^^2^0.969^1.180^1^0.494^1.575^~2, 3~^~04/01/2002~ -~11353~^~410~^0.301^4^0.008^~1~^~A~^^^2^0.250^0.368^1^0.196^0.406^~2, 3~^~04/01/2002~ -~11353~^~415~^0.345^4^0.024^~1~^~A~^^^2^0.130^0.604^1^0.052^0.638^~2, 3~^~04/01/2002~ -~11353~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11353~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~610~^0.001^6^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~611~^0.003^6^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~612~^0.001^18^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~613~^0.016^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~614~^0.004^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~617~^0.001^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~618~^0.032^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~619~^0.010^59^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~626~^0.001^37^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2002~ -~11353~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11353~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~312~^0.116^3^0.003^~1~^~A~^^^2^0.091^0.133^1^0.082^0.150^~2, 3~^~05/01/2002~ -~11354~^~315~^0.145^3^0.016^~1~^~A~^^^2^0.116^0.163^1^-0.055^0.344^~2, 3~^~05/01/2002~ -~11354~^~404~^0.071^3^0.002^~1~^~A~^^^2^0.060^0.079^1^0.045^0.097^~2, 3~^~05/01/2002~ -~11354~^~405~^0.034^3^0.002^~1~^~A~^^^2^0.016^0.046^1^0.005^0.062^~1, 2, 3~^~05/01/2002~ -~11354~^~406~^1.066^2^^~1~^~A~^^^2^0.932^1.200^^^^^~05/01/2002~ -~11354~^~410~^0.281^3^0.007^~1~^~A~^^^2^0.251^0.320^1^0.188^0.375^~2, 3~^~05/01/2002~ -~11354~^~415~^0.203^3^0.021^~1~^~A~^^^2^0.115^0.278^1^-0.064^0.469^~2, 3~^~05/01/2002~ -~11354~^~501~^0.017^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~502~^0.055^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~503~^0.054^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~504~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~505~^0.087^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~506~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~508~^0.066^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~509~^0.039^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~510~^0.084^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~511~^0.082^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~512~^0.028^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~513~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~514~^0.391^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~515~^0.286^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~516~^0.046^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~517~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~518~^0.061^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11354~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11354~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~610~^0.001^6^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~611~^0.003^6^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~612~^0.001^18^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~613~^0.016^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~614~^0.004^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~617~^0.001^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~618~^0.032^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~619~^0.010^59^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~626~^0.001^37^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11354~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~312~^0.134^4^0.027^~1~^~A~^^^2^0.078^0.185^1^-0.205^0.473^~1, 2, 3~^~05/01/2002~ -~11355~^~315~^0.141^4^0.015^~1~^~A~^^^2^0.119^0.179^1^-0.050^0.331^~2, 3~^~05/01/2002~ -~11355~^~404~^0.081^4^0.005^~1~^~A~^^^2^0.060^0.094^1^0.022^0.140^~2, 3~^~05/01/2002~ -~11355~^~405~^0.031^4^0.002^~1~^~A~^^^2^0.016^0.048^2^0.020^0.042^~1, 2, 3~^~05/01/2002~ -~11355~^~406~^1.149^4^0.086^~1~^~A~^^^2^0.967^1.300^2^0.754^1.544^~2, 3~^~05/01/2002~ -~11355~^~410~^0.279^4^0.013^~1~^~A~^^^2^0.250^0.304^2^0.221^0.336^~2, 3~^~05/01/2002~ -~11355~^~415~^0.170^4^0.015^~1~^~A~^^^2^0.110^0.219^2^0.088^0.252^~2, 3~^~05/01/2002~ -~11355~^~501~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~502~^0.062^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~503~^0.061^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~504~^0.090^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~505~^0.098^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~507~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~508~^0.075^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~509~^0.044^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~510~^0.095^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~511~^0.093^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~512~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~513~^0.058^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~514~^0.442^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~515~^0.323^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~516~^0.052^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~517~^0.058^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~518~^0.069^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11355~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11355~^~606~^0.035^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~610~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~611~^0.004^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~612~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~613~^0.022^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~614~^0.005^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~617~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~618~^0.044^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~619~^0.014^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~626~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11355~^~645~^0.003^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11355~^~646~^0.059^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11356~^~312~^0.107^8^0.008^~1~^~A~^^^2^0.078^0.152^3^0.083^0.131^~1, 2, 3~^~04/01/2002~ -~11356~^~315~^0.228^8^0.020^~1~^~A~^^^2^0.158^0.298^5^0.177^0.280^~2, 3~^~04/01/2002~ -~11356~^~404~^0.067^8^0.008^~1~^~A~^^^2^0.040^0.111^5^0.046^0.089^~2, 3~^~04/01/2002~ -~11356~^~405~^0.048^8^0.003^~1~^~A~^^^2^0.016^0.085^6^0.041^0.056^~1, 2, 3~^~04/01/2002~ -~11356~^~406~^1.348^8^0.087^~1~^~A~^^^2^0.874^1.860^6^1.133^1.563^~2, 3~^~04/01/2002~ -~11356~^~410~^0.380^8^0.024^~1~^~A~^^^2^0.300^0.470^6^0.322^0.439^~2, 3~^~04/01/2002~ -~11356~^~415~^0.354^8^0.028^~1~^~A~^^^2^0.151^0.641^3^0.268^0.441^~2, 3~^~04/01/2002~ -~11356~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~502~^0.086^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~503~^0.085^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~504~^0.125^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~505~^0.137^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~506~^0.041^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~508~^0.104^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~509~^0.062^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~510~^0.131^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~511~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~512~^0.044^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~513~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~514~^0.615^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~515~^0.450^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~516~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~517~^0.081^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~518~^0.095^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11356~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11356~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11356~^~607~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~608~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~609~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~610~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~611~^0.004^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~612~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~613~^0.021^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~614~^0.005^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~617~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~618~^0.041^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~619~^0.013^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~620~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~621~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~626~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~627~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~628~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~629~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~630~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~631~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~ -~11356~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11356~^~646~^0.054^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11357~^~312~^0.127^5^0.015^~1~^~A~^^^2^0.095^0.165^3^0.078^0.175^~2, 3~^~05/01/2002~ -~11357~^~315~^0.189^5^0.010^~1~^~A~^^^2^0.154^0.223^3^0.153^0.224^~2, 3~^~05/01/2002~ -~11357~^~404~^0.048^5^0.003^~1~^~A~^^^2^0.030^0.082^1^0.012^0.084^~2, 3~^~05/01/2002~ -~11357~^~405~^0.043^5^0.006^~1~^~A~^^^2^0.025^0.076^1^0.002^0.084^~2, 3~^~05/01/2002~ -~11357~^~406~^1.528^5^0.168^~1~^~A~^^^2^1.150^1.870^2^0.820^2.236^~2, 3~^~05/01/2002~ -~11357~^~410~^0.383^5^0.022^~1~^~A~^^^2^0.267^0.490^3^0.306^0.460^~2, 3~^~05/01/2002~ -~11357~^~415~^0.211^5^0.017^~1~^~A~^^^2^0.142^0.317^2^0.145^0.277^~2, 3~^~05/01/2002~ -~11357~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~502~^0.068^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~503~^0.068^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~504~^0.100^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~505~^0.109^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~506~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~507~^0.025^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~508~^0.083^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~509~^0.049^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~510~^0.105^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~511~^0.103^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~512~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~513~^0.064^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~514~^0.490^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~515~^0.358^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~516~^0.058^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~517~^0.064^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~518~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11357~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11357~^~606~^0.040^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~607~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~608~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~609~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~610~^0.002^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~611~^0.005^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~612~^0.002^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~613~^0.025^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~614~^0.006^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~617~^0.002^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~618~^0.049^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~619~^0.015^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~620~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~621~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~626~^0.002^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~627~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~628~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~629~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~630~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~631~^0.000^0^^~4~^~BFSN~^~11674~^^^^^^^^^~03/01/2006~ -~11357~^~645~^0.003^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11357~^~646~^0.066^0^^~4~^~BFSN~^~11674~^^^^^^^^^~01/01/2017~ -~11358~^~312~^0.174^8^0.010^~1~^~A~^^^2^0.148^0.242^4^0.145^0.203^~2, 3~^~04/01/2002~ -~11358~^~315~^0.173^8^0.009^~1~^~A~^^^2^0.141^0.218^5^0.150^0.196^~2, 3~^~04/01/2002~ -~11358~^~404~^0.072^8^0.003^~1~^~A~^^^2^0.050^0.094^6^0.065^0.078^~2, 3~^~04/01/2002~ -~11358~^~405~^0.050^8^0.006^~1~^~A~^^^2^0.026^0.105^3^0.031^0.069^~2, 3~^~04/01/2002~ -~11358~^~406~^1.595^8^0.110^~1~^~A~^^^2^1.080^2.350^4^1.288^1.902^~2, 3~^~04/01/2002~ -~11358~^~410~^0.341^8^0.014^~1~^~A~^^^2^0.249^0.379^3^0.298^0.385^~2, 3~^~04/01/2002~ -~11358~^~415~^0.212^8^0.009^~1~^~A~^^^2^0.161^0.311^3^0.184^0.239^~2, 3~^~04/01/2002~ -~11358~^~501~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~502~^0.075^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~503~^0.074^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~504~^0.109^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~505~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~506~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~507~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~508~^0.091^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~509~^0.054^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~510~^0.115^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~511~^0.113^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~512~^0.039^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~513~^0.070^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~514~^0.537^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~515~^0.393^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~516~^0.064^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~517~^0.070^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~518~^0.083^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11358~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11358~^~606~^0.040^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~610~^0.002^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~611~^0.005^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~612~^0.002^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~613~^0.025^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~614~^0.006^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~617~^0.002^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~618~^0.049^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~619~^0.015^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~626~^0.002^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2010~ -~11358~^~645~^0.003^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11358~^~646~^0.066^0^^~1~^^^^^^^^^^^~01/01/2017~ -~11359~^~312~^0.077^2^^~1~^~A~^^^1^0.077^0.077^^^^^~03/01/2005~ -~11359~^~315~^0.157^2^^~1~^~A~^^^1^0.155^0.159^1^^^^~03/01/2005~ -~11359~^~404~^0.106^2^^~1~^~A~^^^1^0.090^0.122^1^^^^~03/01/2005~ -~11359~^~405~^0.037^2^^~1~^~A~^^^1^0.036^0.038^1^^^^~03/01/2005~ -~11359~^~406~^2.140^2^^~1~^~A~^^^1^2.040^2.240^1^^^^~03/01/2005~ -~11359~^~410~^0.448^2^^~1~^~A~^^^1^0.394^0.503^1^^^^~03/01/2005~ -~11359~^~415~^0.196^2^^~1~^~A~^^^1^0.189^0.203^1^^^^~03/01/2005~ -~11359~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~502~^0.081^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~504~^0.137^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~505~^0.138^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~507~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~508~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~509~^0.080^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~510~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~511~^0.135^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~512~^0.048^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~513~^0.095^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~514~^0.519^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~515~^0.418^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~516~^0.077^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~11359~^~517~^0.086^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~518~^0.102^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11359~^~605~^0.106^8^0.011^~1~^~A~^^^1^0.070^0.180^7^0.079^0.133^~2, 3~^~07/01/2013~ -~11359~^~606~^1.249^10^0.170^~11~^~JO~^^^2^^^^^^^~07/01/2013~ -~11359~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~613~^0.516^2^^~1~^~A~^^^1^0.423^0.609^1^^^^~03/01/2005~ -~11359~^~614~^0.425^2^^~1~^~A~^^^1^0.325^0.526^1^^^^~03/01/2005~ -~11359~^~615~^0.018^2^^~1~^~A~^^^1^0.015^0.021^1^^^^~03/01/2005~ -~11359~^~617~^3.079^2^^~1~^~A~^^^1^2.488^3.671^1^^^^~03/01/2005~ -~11359~^~618~^0.254^2^^~1~^~A~^^^1^0.236^0.272^1^^^^~03/01/2005~ -~11359~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11359~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~624~^0.016^2^^~1~^~A~^^^1^0.013^0.019^1^^^^~03/01/2005~ -~11359~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~626~^0.007^2^^~1~^~A~^^^1^0.004^0.011^1^^^~1~^~03/01/2005~ -~11359~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~628~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~03/01/2005~ -~11359~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~11359~^~645~^3.102^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11359~^~646~^0.270^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11359~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11359~^~851~^0.016^2^^~1~^~A~^^^1^0.015^0.018^1^^^^~03/01/2005~ -~11360~^~312~^0.145^50^0.017^~6~^~JA~^^^6^0.063^0.314^5^0.102^0.188^~2~^~03/01/2005~ -~11360~^~315~^0.219^50^0.015^~6~^~JA~^^^6^0.120^0.368^5^0.179^0.258^~2~^~03/01/2005~ -~11360~^~404~^0.122^2^^~1~^~A~^^^1^0.122^0.122^^^^^~03/01/2005~ -~11360~^~405~^0.031^2^^~1~^~A~^^^1^0.015^0.047^^^^~1~^~03/01/2005~ -~11360~^~406~^2.135^2^^~1~^~A~^^^1^2.060^2.210^^^^^~03/01/2005~ -~11360~^~410~^0.491^2^^~1~^~A~^^^1^0.458^0.523^^^^^~03/01/2005~ -~11360~^~415~^0.172^2^^~1~^~A~^^^1^0.171^0.174^^^^^~03/01/2005~ -~11360~^~501~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~502~^0.087^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~503~^0.088^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~504~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~505~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~506~^0.040^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~507~^0.040^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~508~^0.107^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~509~^0.085^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~510~^0.139^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~511~^0.145^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~512~^0.051^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~513~^0.102^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~514~^0.556^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~515~^0.448^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~516~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~517~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~518~^0.109^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11360~^~606~^1.082^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~613~^0.574^2^^~1~^~A~^^^1^0.451^0.697^^^^^~03/01/2005~ -~11360~^~614~^0.471^2^^~1~^~A~^^^1^0.346^0.597^^^^^~03/01/2005~ -~11360~^~615~^0.019^2^^~1~^~A~^^^1^0.014^0.024^^^^^~03/01/2005~ -~11360~^~617~^3.430^2^^~1~^~A~^^^1^2.630^4.231^^^^^~03/01/2005~ -~11360~^~618~^0.283^2^^~1~^~A~^^^1^0.282^0.285^^^^^~03/01/2005~ -~11360~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11360~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~624~^0.017^2^^~1~^~A~^^^1^0.014^0.021^^^^^~03/01/2005~ -~11360~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~626~^0.006^2^^~1~^~A~^^^1^0.004^0.007^^^^~1~^~03/01/2005~ -~11360~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~628~^0.010^2^^~1~^~A~^^^1^0.006^0.014^^^^^~03/01/2005~ -~11360~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~630~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11360~^~645~^3.446^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~646~^0.319^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11360~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11360~^~851~^0.018^2^^~1~^~A~^^^1^0.017^0.019^^^^^~03/01/2005~ -~11361~^~605~^0.030^3^0.010^~1~^~A~^^^1^0.020^0.050^2^-0.013^0.073^~2, 3~^~04/01/2013~ -~11361~^~606~^0.167^3^0.052^~1~^~A~^^^1^0.110^0.270^2^-0.056^0.389^~2, 3~^~04/01/2013~ -~11362~^~312~^0.423^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~315~^0.602^6^0.056^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~404~^0.021^3^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~405~^0.038^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~406~^1.033^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~410~^0.302^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11362~^~415~^0.239^3^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11362~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11362~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~312~^0.215^6^0.043^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~315~^0.161^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~404~^0.105^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~405~^0.021^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~406~^1.395^6^0.102^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~410~^0.555^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~415~^0.301^6^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~502~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~503~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~504~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~505~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~508~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~510~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~511~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~512~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~514~^0.479^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~515~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~516~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~518~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11363~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11363~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11363~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~312~^0.817^6^0.069^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~315~^0.616^6^0.099^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~404~^0.122^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~405~^0.106^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~406~^3.065^5^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~410~^0.857^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11364~^~415~^0.614^6^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11364~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11364~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11364~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~312~^0.188^6^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~315~^0.138^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~404~^0.106^6^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~405~^0.020^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~406~^1.439^6^0.110^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~410~^0.520^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~415~^0.299^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~502~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~503~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~504~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~505~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~506~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~508~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~509~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~510~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~511~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~514~^0.457^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~515~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~516~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~517~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11365~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11365~^~606~^0.026^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~610~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~611~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~612~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~613~^0.016^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~617~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~618~^0.032^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~626~^0.001^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~645~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11365~^~646~^0.043^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11366~^~312~^0.878^5^0.144^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~315~^1.338^5^0.225^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~404~^0.032^5^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~405~^0.036^5^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~406~^1.222^5^0.152^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~410~^0.361^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11366~^~415~^0.239^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11366~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11366~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~312~^0.167^6^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~315~^0.140^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~404~^0.098^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~405~^0.019^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~406~^1.312^6^0.176^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~410~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~415~^0.269^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~502~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~504~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~505~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~506~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~508~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~510~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~511~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~513~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~514~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~515~^0.287^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~516~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~517~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~518~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11367~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11367~^~606~^0.026^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~610~^0.001^0^^~1~^^^^^^^^^^^~02/01/2005~ -~11367~^~611~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~612~^0.001^0^^~1~^^^^^^^^^^^~02/01/2005~ -~11367~^~613~^0.016^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~617~^0.001^0^^~1~^^^^^^^^^^^~02/01/2005~ -~11367~^~618~^0.032^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~619~^0.010^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~626~^0.001^0^^~1~^^^^^^^^^^^~02/01/2005~ -~11367~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~645~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11367~^~646~^0.043^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11368~^~312~^0.237^5^0.042^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~315~^0.170^5^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~404~^0.129^5^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~405~^0.025^5^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~406~^1.625^5^0.111^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~410~^0.597^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~415~^0.319^5^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~502~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~504~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~506~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~508~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~509~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~510~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~511~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~512~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~513~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~514~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~515~^0.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~516~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~517~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~518~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11368~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11368~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~312~^0.882^5^0.039^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~315~^0.980^5^0.147^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~404~^0.071^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~405~^0.075^5^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~406~^2.220^5^0.343^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~410~^0.594^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11369~^~415~^0.492^5^0.042^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11369~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11369~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11370~^~312~^0.293^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~315~^0.247^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~404~^0.172^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~405~^0.033^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~406~^2.302^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~410~^0.893^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~415~^0.472^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~501~^0.047^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~502~^0.109^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~503~^0.123^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~504~^0.181^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~505~^0.182^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~506~^0.047^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~507~^0.039^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~508~^0.133^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~509~^0.112^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~510~^0.168^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~511~^0.139^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~512~^0.067^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~513~^0.093^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~514~^0.735^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~515~^0.504^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~516~^0.089^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~517~^0.109^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~518~^0.132^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~606~^1.883^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~ -~11370~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~608~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~609~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~610~^0.002^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~611~^0.005^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~612~^0.014^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~613~^1.238^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~614~^0.624^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~617~^5.248^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~618~^4.364^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~619~^0.338^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~626~^0.051^0^^~4~^~RC~^^^^^^^^^^~03/01/2007~ -~11370~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~ -~11370~^~645~^5.299^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~ -~11370~^~646~^4.703^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~ -~11371~^~312~^0.155^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~315~^0.113^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~404~^0.092^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~405~^0.042^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~406~^1.174^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~410~^0.476^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~415~^0.247^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~501~^0.030^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~502~^0.076^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~503~^0.087^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~504~^0.136^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~505~^0.132^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~506~^0.037^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~507~^0.022^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11371~^~508~^0.092^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~509~^0.080^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~510~^0.116^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~511~^0.083^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~512~^0.048^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~513~^0.062^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~514~^0.409^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~515~^0.361^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~516~^0.055^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~517~^0.102^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~518~^0.094^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11371~^~605~^0.517^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~606~^0.745^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~607~^0.008^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~608~^0.008^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~609~^0.008^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~610~^0.009^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~611~^0.010^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~612~^0.034^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~613~^0.393^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~614~^0.256^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~615~^0.009^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~617~^1.433^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~618~^0.806^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~619~^0.085^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~624~^0.004^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~626~^0.002^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~628~^0.005^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~645~^1.440^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~646~^0.892^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~653~^0.002^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~654~^0.003^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11371~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~672~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~687~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11371~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~11371~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2008~ -~11371~^~858~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2008~ -~11372~^~312~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~315~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~404~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~405~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~406~^1.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~410~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~415~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~503~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~504~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~505~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~506~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~508~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~509~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~511~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~512~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~513~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~514~^0.442^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~515~^0.579^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~516~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~517~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~518~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~606~^2.255^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~607~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~608~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~609~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~610~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~611~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~612~^0.362^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~613~^0.958^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~614~^0.440^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~617~^0.904^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~619~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~626~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~645~^1.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11372~^~646~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~312~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~315~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~404~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~405~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~406~^0.993^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~410~^0.387^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~415~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~502~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~503~^0.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~504~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~505~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~507~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~508~^0.254^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~509~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~510~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~511~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~512~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~513~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~514~^0.569^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~515~^1.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~516~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~517~^0.463^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~518~^0.275^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~606~^4.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~607~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~608~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~609~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~610~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~611~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~612~^0.755^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~613~^2.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~614~^0.913^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~617~^1.844^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~618~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~619~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~626~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~645~^2.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11373~^~646~^0.276^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~312~^0.070^23^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~315~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~404~^0.034^31^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~405~^0.020^31^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~406~^0.889^30^0.043^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~410~^0.174^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~415~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~501~^0.018^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~502~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~503~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~504~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~505~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~506~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~507~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~508~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~509~^0.045^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~510~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~511~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~512~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~513~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~514~^0.295^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~515~^0.202^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~516~^0.036^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~517~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~518~^0.052^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11374~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11374~^~606~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~611~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~613~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~617~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~618~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11374~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11374~^~645~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11374~^~646~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11376~^~312~^0.057^5^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~315~^0.097^5^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~404~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~405~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~406~^0.915^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~410~^0.354^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~415~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~503~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~504~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~505~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~506~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~508~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~509~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~510~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~511~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~512~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~513~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~514~^0.346^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~515~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~516~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~517~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~518~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11376~^~606~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~611~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~613~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~618~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~619~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11376~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11378~^~312~^0.161^10^0.006^~6~^~JA~^^^2^0.157^0.195^8^0.147^0.174^~2, 3~^~03/01/2006~ -~11378~^~315~^0.161^6^0.003^~6~^~JA~^^^2^0.102^0.457^4^0.153^0.169^~2, 3~^~03/01/2006~ -~11378~^~404~^0.988^20^0.459^~6~^~JA~^^^2^0.170^1.031^18^0.025^1.951^~2, 3~^~03/01/2006~ -~11378~^~405~^0.110^25^0.012^~6~^~JA~^^^2^0.100^0.110^23^0.084^0.135^~2, 3~^~03/01/2006~ -~11378~^~406~^6.264^25^0.566^~6~^~JA~^^^2^6.146^9.100^23^5.093^7.435^~2, 3~^~03/01/2006~ -~11378~^~410~^2.079^11^0.193^~6~^~JA~^^^2^1.700^2.117^9^1.643^2.515^~2, 3~^~03/01/2006~ -~11378~^~415~^0.748^17^0.116^~6~^~JA~^^^2^0.520^0.762^15^0.500^0.996^~2, 3~^~03/01/2006~ -~11378~^~501~^0.079^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~502~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~503~^0.272^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~504~^0.426^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~505~^0.456^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~506~^0.127^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~507~^0.109^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~508~^0.494^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~509~^0.226^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~510~^0.427^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~511~^0.433^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~512~^0.151^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~513~^0.286^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~514~^1.864^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~515~^1.423^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~516~^0.243^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~517~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~518~^0.324^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11378~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11378~^~606~^0.169^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~609~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^^^^~1~^~03/01/2007~ -~11378~^~610~^0.001^2^^~6~^~JA~^^^2^0.000^0.003^^^^~1~^~03/01/2007~ -~11378~^~611~^0.005^2^^~6~^~JA~^^^2^0.000^0.014^^^^~1~^~03/01/2007~ -~11378~^~612~^0.002^2^^~6~^~JA~^^^2^0.002^0.003^^^^^~03/01/2007~ -~11378~^~613~^0.075^2^^~6~^~JA~^^^2^0.066^0.126^^^^^~03/01/2007~ -~11378~^~614~^0.077^2^^~6~^~JA~^^^2^0.014^0.183^^^^^~03/01/2007~ -~11378~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11378~^~617~^0.007^2^^~6~^~JA~^^^2^0.005^0.014^^^^^~03/01/2007~ -~11378~^~618~^0.093^2^^~6~^~JA~^^^2^0.107^0.131^^^^^~03/01/2007~ -~11378~^~619~^0.027^2^^~6~^~JA~^^^2^0.029^0.041^^^^^~03/01/2007~ -~11378~^~620~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^^^^~1~^~03/01/2007~ -~11378~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11378~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~626~^0.001^2^^~6~^~JA~^^^2^0.000^0.003^^^^~1~^~03/01/2007~ -~11378~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~628~^0.000^1^^~6~^~JA~^^^2^0.000^0.000^^^^~1~^~03/01/2007~ -~11378~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11378~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~646~^0.143^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11378~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11378~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~11378~^~851~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~11379~^~312~^0.031^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~315~^0.021^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~404~^0.130^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~405~^0.054^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~406~^0.776^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~410~^0.342^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~415~^0.098^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~501~^0.027^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~502~^0.067^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~503~^0.073^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~504~^0.115^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~505~^0.090^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~506~^0.033^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~507~^0.017^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~508~^0.095^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~509~^0.063^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~510~^0.098^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~511~^0.070^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~512~^0.036^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~513~^0.059^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~514~^0.281^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~515~^0.326^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~516~^0.047^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~517~^0.114^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~518~^0.065^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~521~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~605~^0.175^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~606~^3.191^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~607~^0.189^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~608~^0.124^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~609~^0.081^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~610~^0.152^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~611~^0.156^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~612~^0.465^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~613~^1.358^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~614~^0.627^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~615~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~617~^1.253^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~618~^0.184^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~619~^0.037^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~626~^0.051^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~628~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~645~^1.310^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~646~^0.222^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~ -~11379~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~653~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~672~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~687~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~689~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11379~^~693~^0.159^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~695~^0.016^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11379~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~ -~11379~^~697~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11380~^~312~^0.102^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~315~^1.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~404~^0.453^6^0.139^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~405~^0.253^14^0.079^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~406~^4.765^13^0.912^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~410~^0.345^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~415~^0.861^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11380~^~501~^0.081^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~502~^0.279^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~503~^0.281^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~504~^0.439^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~505~^0.470^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~506~^0.131^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~507~^0.113^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~508~^0.510^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~509~^0.233^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~510~^0.441^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~511~^0.446^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~512~^0.156^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~513~^0.295^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~514~^1.923^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~515~^1.467^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~516~^0.251^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~517~^0.283^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~518~^0.334^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2008~ -~11380~^~606~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~607~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~608~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~609~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~610~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~611~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~612~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~613~^0.091^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~614~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~617~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~618~^0.180^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~619~^0.057^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~620~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~621~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~626~^0.005^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~627~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~628~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~629~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~630~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~631~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~ -~11380~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11380~^~646~^0.238^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~312~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~315~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~404~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~405~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~406~^0.764^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~410~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~415~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~502~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~503~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~504~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~505~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~508~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~509~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~510~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~511~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~512~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~513~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~514~^0.254^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~515~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~517~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~606~^3.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~607~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~608~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~609~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~610~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~611~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~612~^0.510^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~613~^1.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~614~^0.624^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~617~^1.290^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~618~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~619~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~626~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~645~^1.405^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11381~^~646~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~312~^0.578^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~315~^0.488^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~404~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~405~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~406~^4.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~410~^1.864^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~415~^0.887^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11382~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~502~^0.481^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~503~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~504~^0.781^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~505~^0.720^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~506~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~507~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~508~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~509~^0.448^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~510~^0.657^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~511~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~512~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~513~^0.392^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~514~^1.978^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~515~^1.913^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~516~^0.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~517~^0.511^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~518~^0.476^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~606~^0.461^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~607~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~608~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~609~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~610~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~611~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~612~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~613~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~614~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~617~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~618~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~620~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~621~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~626~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~627~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~628~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~629~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~630~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~631~^0.000^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2007~ -~11382~^~645~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11382~^~646~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11383~^~312~^0.029^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~315~^0.199^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~404~^0.090^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~405~^0.083^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~406~^0.860^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~410~^0.145^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~415~^0.160^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~501~^0.031^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~502~^0.081^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~503~^0.087^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~504~^0.137^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~505~^0.116^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~506~^0.040^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~507~^0.024^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~508~^0.123^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~509~^0.075^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~510~^0.121^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~511~^0.096^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~512~^0.044^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~513~^0.075^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~514~^0.392^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~515~^0.404^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~516~^0.061^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~517~^0.126^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~518~^0.084^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~605~^0.599^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~606~^0.955^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~607~^0.013^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~608~^0.013^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~609~^0.013^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~610~^0.013^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~611~^0.016^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~612~^0.054^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~613~^0.496^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~614~^0.315^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~615~^0.011^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~11383~^~617~^1.698^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~618~^0.942^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~619~^0.103^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~624~^0.004^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~11383~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~626~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~628~^0.005^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~ -~11383~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~ -~11383~^~645~^1.707^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~646~^1.045^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~ -~11383~^~652~^0.001^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~653~^0.003^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~654~^0.003^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~ -~11383~^~671~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~672~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~687~^0.001^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~689~^0.000^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~ -~11383~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~697~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11383~^~858~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~11384~^~312~^0.240^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~315~^0.590^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11384~^~404~^0.070^3^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~405~^0.253^3^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~406~^4.063^3^0.147^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~410~^0.920^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~415~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~606~^2.323^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~607~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~608~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~609~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~610~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~611~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~612~^0.371^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~613~^1.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~614~^0.448^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~617~^0.903^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~619~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~626~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~645~^1.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11384~^~646~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~315~^0.130^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11385~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~405~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~406~^0.939^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~410~^0.239^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~606~^2.586^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~607~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~608~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~609~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~610~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~611~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~612~^0.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~613~^1.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~614~^0.499^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~617~^1.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~618~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~619~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~626~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~645~^1.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11385~^~646~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~312~^0.260^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~315~^0.622^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11386~^~404~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~405~^0.123^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~406~^4.533^3^0.144^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~410~^1.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~606~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~610~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~611~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~612~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~613~^0.745^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~614~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~617~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~618~^1.482^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~619~^0.470^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~626~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~645~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11386~^~646~^1.985^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~312~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~315~^0.181^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11387~^~404~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~405~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~406~^1.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~410~^0.327^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~415~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~606~^2.633^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~607~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~608~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~609~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~610~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~611~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~612~^0.423^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~613~^1.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~614~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~617~^1.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~618~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~626~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11387~^~645~^1.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11387~^~646~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~312~^0.099^4^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~315~^0.146^4^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~404~^0.097^60^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~405~^0.014^4^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~406~^1.664^119^0.090^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~410~^0.323^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~415~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~502~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~503~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~504~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~505~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~508~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~509~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~510~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~512~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~513~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~514~^0.478^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~515~^0.322^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~516~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~517~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~518~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~606~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~610~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~611~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~613~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~614~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~618~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~619~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11390~^~646~^0.269^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11391~^~312~^0.115^9^0.011^~1~^~A~^^^1^0.100^0.118^1^-0.023^0.254^~4~^~02/01/2013~ -~11391~^~315~^0.184^9^0.021^~1~^~A~^^^1^0.155^0.189^1^-0.081^0.449^~4~^~02/01/2013~ -~11391~^~404~^0.134^6^0.008^~1~^~A~^^^1^0.123^0.137^1^0.032^0.237^~4~^~02/01/2013~ -~11391~^~405~^0.033^9^0.010^~1~^~A~^^^1^0.017^0.040^2^-0.010^0.077^~1, 4~^~02/01/2013~ -~11391~^~406~^2.314^6^0.375^~1~^~A~^^^1^1.793^2.413^1^-2.449^7.077^~4~^~02/01/2013~ -~11391~^~410~^0.574^4^0.060^~1~^~A~^^^1^0.490^0.590^1^-0.195^1.343^~4~^~02/01/2013~ -~11391~^~415~^0.236^6^0.014^~1~^~A~^^^1^0.217^0.240^1^0.057^0.416^~4~^~02/01/2013~ -~11391~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~502~^0.108^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~503~^0.113^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~504~^0.197^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~505~^0.174^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~506~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~507~^0.048^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~508~^0.127^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~509~^0.097^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~511~^0.167^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~512~^0.059^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~513~^0.123^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~514~^0.484^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~515~^0.418^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~516~^0.107^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~517~^0.116^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~518~^0.131^0^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~11391~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~606~^0.934^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~607~^0.010^2^^~1~^~A~^^^1^0.005^0.005^0^^^^~02/01/2013~ -~11391~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/1995~ -~11391~^~609~^0.004^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~02/01/2013~ -~11391~^~610~^0.009^2^^~1~^~A~^^^1^0.004^0.004^0^^^^~02/01/2013~ -~11391~^~611~^0.004^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~02/01/2013~ -~11391~^~612~^0.008^2^^~1~^~A~^^^1^0.004^0.004^0^^^^~02/01/2013~ -~11391~^~613~^0.523^2^^~1~^~A~^^^1^0.252^0.252^0^^^^~02/01/2013~ -~11391~^~614~^0.240^2^^~1~^~A~^^^1^0.116^0.116^0^^^^~02/01/2013~ -~11391~^~615~^0.067^2^^~1~^~A~^^^1^0.032^0.032^0^^^^~02/01/2013~ -~11391~^~617~^7.056^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~618~^2.318^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~619~^0.445^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~620~^0.003^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~02/01/2013~ -~11391~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/1995~ -~11391~^~624~^0.037^2^^~1~^~A~^^^1^0.018^0.018^0^^^^~02/01/2013~ -~11391~^~626~^0.024^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/1995~ -~11391~^~628~^0.202^2^^~1~^~A~^^^1^0.097^0.097^0^^^^~02/01/2013~ -~11391~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/1995~ -~11391~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/1995~ -~11391~^~645~^7.295^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~646~^2.785^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~652~^0.004^2^^~1~^~A~^^^1^0.002^0.002^0^^^~1~^~02/01/2013~ -~11391~^~653~^0.006^2^^~1~^~A~^^^1^0.003^0.003^0^^^^~02/01/2013~ -~11391~^~654~^0.019^2^^~1~^~A~^^^1^0.009^0.009^0^^^^~02/01/2013~ -~11391~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11391~^~663~^0.012^2^^~1~^~A~^^^1^0.006^0.006^0^^^^~02/01/2013~ -~11391~^~664~^0.005^4^0.000^~1~^~A~^^^1^0.003^0.003^1^0.003^0.003^~1, 4~^~02/01/2013~ -~11391~^~665~^0.018^2^^~1~^~A~^^^1^0.009^0.009^0^^^^~02/01/2013~ -~11391~^~670~^0.008^2^^~1~^~A~^^^1^0.004^0.004^0^^^^~02/01/2013~ -~11391~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11391~^~672~^0.007^2^^~1~^~A~^^^1^0.004^0.004^0^^^^~02/01/2013~ -~11391~^~673~^0.024^2^^~1~^~A~^^^1^0.011^0.011^0^^^^~02/01/2013~ -~11391~^~674~^7.044^2^^~1~^~A~^^^1^3.396^3.396^0^^^^~02/01/2013~ -~11391~^~675~^2.292^2^^~1~^~A~^^^1^1.105^1.105^0^^^^~02/01/2013~ -~11391~^~676~^0.001^2^^~1~^~A~^^^1^0.001^0.001^0^^^~1~^~02/01/2013~ -~11391~^~685~^0.076^2^^~1~^~A~^^^1^0.037^0.037^0^^^^~02/01/2013~ -~11391~^~687~^0.007^2^^~1~^~A~^^^1^0.004^0.004^0^^^^~02/01/2013~ -~11391~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~11391~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11391~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11391~^~851~^0.369^4^0.000^~1~^~A~^^^1^0.178^0.178^1^0.178^0.178^~1, 4~^~02/01/2013~ -~11391~^~852~^0.009^4^0.000^~1~^~A~^^^1^0.004^0.004^1^0.004^0.004^~1, 4~^~02/01/2013~ -~11391~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11391~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11391~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^~1~^~02/01/2013~ -~11392~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~315~^0.185^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~404~^0.053^11^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~405~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~406~^1.133^11^0.110^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~410~^0.309^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~415~^0.212^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11392~^~606~^2.556^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~607~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~608~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~609~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~610~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~611~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~612~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~613~^1.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~614~^0.569^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~617~^2.246^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~618~^1.238^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~619~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~626~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~645~^2.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11392~^~646~^1.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~312~^0.102^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~315~^0.244^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~404~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~406~^1.421^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~410~^0.367^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~415~^0.266^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11393~^~606~^3.373^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~607~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~608~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~609~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~610~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~611~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~612~^0.444^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~613~^1.581^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~614~^0.751^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~617~^2.965^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~618~^1.634^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~626~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~645~^3.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11393~^~646~^1.814^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11394~^~312~^0.110^2^^~1~^~A~^^^1^0.093^0.127^^^^^~03/01/2005~ -~11394~^~315~^0.155^2^^~1~^~A~^^^1^0.154^0.157^^^^^~03/01/2005~ -~11394~^~404~^0.090^2^^~1~^~A~^^^1^0.064^0.117^^^^^~03/01/2005~ -~11394~^~405~^0.034^2^^~1~^~A~^^^1^0.030^0.038^^^^^~03/01/2005~ -~11394~^~406~^1.970^2^^~1~^~A~^^^1^1.860^2.080^^^^^~03/01/2005~ -~11394~^~410~^0.498^2^^~1~^~A~^^^1^0.419^0.577^^^^^~03/01/2005~ -~11394~^~415~^0.170^2^^~1~^~A~^^^1^0.169^0.171^^^^^~03/01/2005~ -~11394~^~501~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~502~^0.075^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~503~^0.076^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~504~^0.126^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~505~^0.127^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~507~^0.034^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~508~^0.092^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~509~^0.074^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~510~^0.119^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~511~^0.125^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~512~^0.044^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~513~^0.088^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~514~^0.478^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~515~^0.385^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~516~^0.071^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~517~^0.079^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~518~^0.094^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~605~^0.140^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~11394~^~606~^1.371^3^0.233^~11~^~JO~^^^2^^^^^^^~05/01/2013~ -~11394~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~613~^0.622^2^^~1~^~A~^^^1^0.562^0.683^^^^^~03/01/2005~ -~11394~^~614~^0.494^2^^~1~^~A~^^^1^0.401^0.588^1^^^^~03/01/2005~ -~11394~^~615~^0.021^2^^~1~^~A~^^^1^0.020^0.022^^^^^~03/01/2005~ -~11394~^~617~^3.732^2^^~1~^~A~^^^1^3.390^4.074^^^^^~03/01/2005~ -~11394~^~618~^0.286^2^^~1~^~A~^^^1^0.255^0.318^^^^^~03/01/2005~ -~11394~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11394~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~624~^0.019^2^^~1~^~A~^^^1^0.017^0.021^^^^^~03/01/2005~ -~11394~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~626~^0.010^2^^~1~^~A~^^^1^0.007^0.012^^^^~1~^~03/01/2005~ -~11394~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~628~^0.012^2^^~1~^~A~^^^1^0.007^0.017^^^^~1~^~03/01/2005~ -~11394~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~11394~^~645~^3.754^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11394~^~646~^0.307^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11394~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11394~^~851~^0.020^2^^~1~^~A~^^^1^0.019^0.022^^^^^~03/01/2005~ -~11395~^~312~^0.114^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~315~^0.187^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~404~^0.129^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~405~^0.034^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~406~^2.280^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~410~^0.554^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~415~^0.192^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~501~^0.026^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~502~^0.100^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~503~^0.101^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~504~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~505~^0.170^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~506~^0.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~507~^0.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~508~^0.123^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~509~^0.099^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~511~^0.167^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~512~^0.059^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~513~^0.117^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~514~^0.642^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~515~^0.517^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~516~^0.095^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~517~^0.106^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~518~^0.126^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11395~^~606~^1.267^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~609~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~610~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~612~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~613~^0.682^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~614~^0.543^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~615~^0.022^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~617~^4.042^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~618~^0.322^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11395~^~620~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~624~^0.021^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~625~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~626~^0.007^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~628~^0.009^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~630~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11395~^~645~^4.058^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~646~^0.345^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11395~^~652~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~653~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~685~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11395~^~851~^0.024^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~11396~^~312~^0.127^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~315~^0.119^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~404~^0.054^16^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~405~^0.045^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~406~^1.129^15^0.072^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~410~^0.428^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~415~^0.209^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11396~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~503~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~504~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~505~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~508~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~509~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~510~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~511~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~512~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~514~^0.421^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~515~^0.302^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~516~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~517~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~518~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~606~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~618~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~619~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11396~^~646~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~312~^0.241^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~315~^0.226^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~404~^0.052^9^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~405~^0.135^4^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~406~^1.448^9^0.066^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~410~^0.732^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~415~^0.377^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11397~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~502~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~503~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~504~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~506~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~508~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~509~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~510~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~511~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~513~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~514~^0.513^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~515~^0.368^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~517~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~606~^3.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~612~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~613~^1.864^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~614~^1.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~617~^5.822^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~618~^3.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~619~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~645~^5.824^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11397~^~646~^3.474^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11398~^~312~^0.075^12^0.005^~1~^~A~^^^1^0.049^0.095^6^0.063^0.086^~2, 3~^~08/01/2014~ -~11398~^~315~^0.111^12^0.004^~1~^~A~^^^1^0.093^0.174^10^0.102^0.120^~2, 3~^~08/01/2014~ -~11398~^~404~^0.184^79^0.027^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~405~^0.061^12^0.010^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~406~^1.815^78^0.050^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~410~^0.583^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~415~^0.194^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11398~^~501~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~502~^0.079^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~504~^0.144^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~505~^0.127^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~506~^0.031^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11398~^~507~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~508~^0.093^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~509~^0.071^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~510~^0.116^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~511~^0.122^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~512~^0.043^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~513~^0.090^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~514~^0.353^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~515~^0.305^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~516~^0.078^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~517~^0.085^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~518~^0.096^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11398~^~605~^0.063^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~606~^1.418^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~11398~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~11398~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~11398~^~612~^0.036^6^0.002^~1~^~A~^^^1^0.007^0.044^3^0.030^0.042^~2, 3~^~09/01/2015~ -~11398~^~613~^1.067^6^0.021^~1~^~A~^^^1^0.824^1.184^2^0.988^1.146^~2, 3~^~09/01/2015~ -~11398~^~614~^0.236^6^0.031^~1~^~A~^^^1^0.172^0.605^2^0.103^0.370^~2, 3~^~09/01/2015~ -~11398~^~615~^0.038^6^0.001^~1~^~A~^^^1^0.029^0.041^4^0.035^0.041^~2, 3~^~09/01/2015~ -~11398~^~617~^3.284^6^0.167^~1~^~AS~^^^1^1.689^3.732^3^2.764^3.803^~2, 3~^~09/01/2015~ -~11398~^~618~^2.901^6^0.168^~1~^~AS~^^^1^2.340^4.318^3^2.333^3.469^~2, 3~^~09/01/2015~ -~11398~^~619~^0.232^6^0.023^~1~^~AS~^^^1^0.127^0.704^2^0.140^0.324^~2, 3~^~09/01/2015~ -~11398~^~620~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.001^0.003^~1, 2, 3~^~09/01/2015~ -~11398~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~624~^0.021^6^0.000^~1~^~A~^^^1^0.020^0.025^3^0.019^0.022^~2, 3~^~09/01/2015~ -~11398~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~11398~^~626~^0.029^6^0.002^~1~^~AS~^^^1^0.007^0.035^3^0.023^0.034^~2, 3~^~09/01/2015~ -~11398~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~628~^0.055^6^0.004^~1~^~A~^^^1^0.019^0.070^3^0.042^0.069^~2, 3~^~09/01/2015~ -~11398~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.005^2^-0.001^0.002^~2, 3~^~03/01/2015~ -~11398~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~645~^3.376^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~646~^3.140^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~09/01/2015~ -~11398~^~653~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.009^4^0.005^0.007^~2, 3~^~09/01/2015~ -~11398~^~654~^0.012^6^0.000^~1~^~A~^^^1^0.008^0.013^4^0.011^0.012^~2, 3~^~09/01/2015~ -~11398~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~663~^0.012^6^0.002^~1~^~A~^^^1^0.004^0.026^2^0.005^0.019^~2, 3~^~09/01/2015~ -~11398~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~03/01/2015~ -~11398~^~665~^0.051^6^0.002^~1~^~A~^^^1^0.015^0.064^3^0.045^0.057^~2, 3~^~09/01/2015~ -~11398~^~670~^0.014^6^0.001^~1~^~A~^^^1^0.007^0.018^2^0.011^0.017^~2, 3~^~09/01/2015~ -~11398~^~671~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.004^4^0.001^0.004^~1, 2, 3~^~09/01/2015~ -~11398~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^2^0.004^0.004^~2, 3~^~09/01/2015~ -~11398~^~673~^0.029^6^0.002^~1~^~A~^^^1^0.007^0.035^3^0.023^0.034^~2, 3~^~09/01/2015~ -~11398~^~674~^3.271^6^0.167^~1~^~A~^^^1^1.685^3.721^3^2.753^3.790^~2, 3~^~09/01/2015~ -~11398~^~675~^2.836^6^0.169^~1~^~A~^^^1^2.306^4.296^3^2.263^3.410^~2, 3~^~09/01/2015~ -~11398~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.001^~1, 2, 3~^~09/01/2015~ -~11398~^~685~^0.013^6^0.001^~1~^~A~^^^1^0.009^0.028^4^0.010^0.016^~2, 3~^~09/01/2015~ -~11398~^~687~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^2^0.004^0.006^~2, 3~^~09/01/2015~ -~11398~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^2^0.000^0.000^~2, 3~^~08/01/2014~ -~11398~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11398~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~11398~^~851~^0.219^6^0.022^~1~^~A~^^^1^0.118^0.676^2^0.130^0.308^~2, 3~^~09/01/2015~ -~11398~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2015~ -~11398~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11398~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2015~ -~11399~^~312~^0.079^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~315~^0.127^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~404~^0.069^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~405~^0.037^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~406~^1.449^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~410~^0.320^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~415~^0.121^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~501~^0.020^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~502~^0.087^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~503~^0.090^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~504~^0.159^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~505~^0.140^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~506~^0.034^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~507~^0.038^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~508~^0.102^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~509~^0.078^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~510~^0.128^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~511~^0.135^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~512~^0.048^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~513~^0.099^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~514~^0.389^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~515~^0.336^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~516~^0.086^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~517~^0.094^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~518~^0.105^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~606~^1.657^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~612~^0.022^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~613~^1.075^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~614~^0.488^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~615~^0.037^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~617~^4.481^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~618~^2.144^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~619~^0.206^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~620~^0.002^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~624~^0.026^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~626~^0.018^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~628~^0.041^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2013~ -~11399~^~645~^4.544^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~646~^2.354^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~652~^0.002^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~653~^0.007^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~672~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~685~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~ -~11399~^~687~^0.003^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11399~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~ -~11401~^~312~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~315~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~404~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~406~^1.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~410~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~415~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~501~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~502~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~503~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~504~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~505~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~508~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~510~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~511~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~512~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~514~^0.483^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~515~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~516~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~517~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~518~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11401~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~618~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11401~^~646~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11402~^~312~^0.093^6^0.009^~1~^~A~^^^1^0.071^0.127^5^0.069^0.116^~2, 3~^~03/01/2005~ -~11402~^~315~^0.158^6^0.005^~1~^~A~^^^1^0.143^0.179^5^0.145^0.170^~2, 3~^~03/01/2005~ -~11402~^~404~^0.098^6^0.011^~1~^~A~^^^1^0.064^0.128^5^0.069^0.128^~2, 3~^~03/01/2005~ -~11402~^~405~^0.048^6^0.011^~1~^~A~^^^1^0.030^0.103^5^0.019^0.076^~2, 3~^~03/01/2005~ -~11402~^~406~^2.038^6^0.060^~1~^~A~^^^1^1.860^2.240^5^1.884^2.192^~2, 3~^~03/01/2005~ -~11402~^~410~^0.473^6^0.027^~1~^~A~^^^1^0.394^0.577^5^0.405^0.541^~2, 3~^~03/01/2005~ -~11402~^~415~^0.178^6^0.007^~1~^~A~^^^1^0.157^0.203^5^0.161^0.195^~2, 3~^~03/01/2005~ -~11402~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~502~^0.078^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~503~^0.078^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~504~^0.131^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~505~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~506~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~507~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~508~^0.095^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~509~^0.076^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~510~^0.124^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~511~^0.129^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~512~^0.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~513~^0.091^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~514~^0.496^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~515~^0.400^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~516~^0.073^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~517~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~518~^0.098^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11402~^~606~^1.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~612~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~613~^0.533^6^0.057^~1~^~A~^^^1^0.351^0.683^5^0.353^0.644^~2, 3~^~03/01/2006~ -~11402~^~614~^0.435^6^0.051^~1~^~A~^^^1^0.267^0.588^5^0.276^0.538^~2, 3~^~03/01/2006~ -~11402~^~615~^0.018^6^0.002^~1~^~A~^^^1^0.012^0.022^5^0.013^0.022^~2, 3~^~03/01/2006~ -~11402~^~617~^3.140^6^0.365^~1~^~A~^^^1^1.987^4.074^5^2.000^3.875^~2, 3~^~03/01/2006~ -~11402~^~618~^0.264^6^0.025^~1~^~A~^^^1^0.133^0.318^5^0.182^0.312^~2, 3~^~03/01/2006~ -~11402~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~11402~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~624~^0.017^6^0.001^~1~^~A~^^^1^0.012^0.021^5^0.012^0.020^~2, 3~^~03/01/2006~ -~11402~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~626~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.019^5^0.003^0.016^~1, 2, 3~^~03/01/2006~ -~11402~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~628~^0.014^6^0.001^~1~^~A~^^^1^0.007^0.017^5^0.010^0.017^~1, 2, 3~^~03/01/2006~ -~11402~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~ -~11402~^~645~^3.164^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~646~^0.303^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11402~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~653~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.004^~1, 2, 3~^~03/01/2006~ -~11402~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~11402~^~851~^0.019^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.021^~2, 3~^~03/01/2006~ -~11403~^~312~^0.104^13^0.002^~1~^~A~^^^1^0.067^0.123^10^0.099^0.109^~2, 3~^~08/01/2014~ -~11403~^~315~^0.154^13^0.004^~1~^~A~^^^1^0.113^0.189^9^0.146^0.162^~2, 3~^~08/01/2014~ -~11403~^~404~^0.130^6^0.007^~1~^~A~^^^1^0.110^0.150^4^0.112^0.148^~2, 3~^~08/01/2014~ -~11403~^~405~^0.032^6^0.002^~1~^~A~^^^1^0.030^0.040^4^0.027^0.037^~2, 3~^~08/01/2014~ -~11403~^~406~^2.077^6^0.135^~1~^~A~^^^1^1.690^2.520^4^1.703^2.451^~2, 3~^~08/01/2014~ -~11403~^~410~^0.463^4^0.039^~1~^~A~^^^1^0.410^0.560^2^0.296^0.631^~2, 3~^~08/01/2014~ -~11403~^~415~^0.261^6^0.022^~1~^~A~^^^1^0.170^0.300^4^0.199^0.323^~2, 3~^~08/01/2014~ -~11403~^~501~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~502~^0.095^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~503~^0.096^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~504~^0.161^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~505~^0.162^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~506~^0.044^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~507~^0.044^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~508~^0.117^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~510~^0.152^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~511~^0.159^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~512~^0.056^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~513~^0.111^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~514~^0.609^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~515~^0.491^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~516~^0.090^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~517~^0.101^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~518~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11403~^~606~^0.848^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~ -~11403~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~ -~11403~^~609~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.015^4^-0.002^0.011^~1, 2, 3~^~08/01/2014~ -~11403~^~610~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.023^4^0.018^0.023^~2, 3~^~08/01/2014~ -~11403~^~611~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^4^0.003^0.008^~2, 3~^~08/01/2014~ -~11403~^~612~^0.015^6^0.003^~1~^~A~^^^1^0.008^0.024^4^0.008^0.022^~2, 3~^~08/01/2014~ -~11403~^~613~^0.607^6^0.101^~1~^~A~^^^1^0.358^0.994^4^0.326^0.888^~2, 3~^~08/01/2014~ -~11403~^~614~^0.147^6^0.013^~1~^~A~^^^1^0.102^0.186^4^0.111^0.184^~2, 3~^~08/01/2014~ -~11403~^~615~^0.022^6^0.001^~1~^~A~^^^1^0.016^0.033^4^0.018^0.026^~2, 3~^~08/01/2014~ -~11403~^~617~^1.824^6^0.221^~1~^~AS~^^^1^1.134^2.797^4^1.211^2.438^~2, 3~^~08/01/2014~ -~11403~^~618~^1.266^6^0.146^~1~^~AS~^^^1^0.749^1.731^4^0.861^1.671^~2, 3~^~08/01/2014~ -~11403~^~619~^0.235^6^0.012^~1~^~AS~^^^1^0.192^0.278^4^0.202^0.268^~2, 3~^~08/01/2014~ -~11403~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~03/01/2005~ -~11403~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~11403~^~624~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.016^4^0.009^0.014^~2, 3~^~08/01/2014~ -~11403~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~626~^0.010^6^0.001^~1~^~AS~^^^1^0.006^0.022^4^0.006^0.014^~2, 3~^~08/01/2014~ -~11403~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~11403~^~628~^0.037^6^0.004^~1~^~A~^^^1^0.026^0.060^4^0.026^0.048^~2, 3~^~08/01/2014~ -~11403~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~11403~^~630~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~11403~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2014~ -~11403~^~645~^1.874^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~646~^1.502^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11403~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~08/01/2014~ -~11403~^~653~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~08/01/2014~ -~11403~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~685~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.015^4^0.011^0.013^~2, 3~^~08/01/2014~ -~11403~^~687~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~08/01/2014~ -~11403~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2014~ -~11403~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11403~^~851~^0.223^6^0.012^~1~^~A~^^^1^0.181^0.263^4^0.191^0.256^~2, 3~^~08/01/2014~ -~11406~^~312~^0.141^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~315~^0.214^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~404~^0.099^13^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~405~^0.023^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~406~^1.789^13^0.095^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~410~^0.540^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~503~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~504~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~506~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~508~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~509~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~510~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~511~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~513~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~514~^0.560^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~515~^0.378^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~516~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~517~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~518~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~606~^2.743^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~613~^2.345^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~614~^0.398^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~617~^2.345^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~618~^0.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~645~^2.345^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11406~^~646~^0.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~312~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~315~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~404~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~406~^2.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~410~^0.690^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~415~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~502~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~503~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~504~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~505~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~508~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~509~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~510~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~511~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~512~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~513~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~514~^0.796^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~515~^0.537^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~516~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~517~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~518~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~606~^3.894^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~613~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~614~^0.566^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~617~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~618~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~645~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11407~^~646~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~312~^0.032^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~315~^0.227^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~404~^0.074^16^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~405~^0.031^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~406~^2.241^16^0.104^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~410~^0.540^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~502~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~503~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~504~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~505~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~508~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~509~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~510~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~511~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~513~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~514~^0.656^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~515~^0.442^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~516~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~517~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~518~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~606~^4.544^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~612~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~613~^3.515^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~614~^0.972^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~617~^8.631^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~618~^1.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~626~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~645~^8.659^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11408~^~646~^1.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~312~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~315~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~404~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~405~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~406~^2.665^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~410~^0.608^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~415~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~502~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~503~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~504~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~505~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~508~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~509~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~510~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~511~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~512~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~513~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~514~^0.821^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~515~^0.554^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~516~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~517~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~518~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11409~^~606~^5.960^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~612~^0.076^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~613~^3.822^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~614~^1.274^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~617~^11.317^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~618~^1.405^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~626~^0.038^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~645~^11.338^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11409~^~646~^1.405^0^^~4~^^^^^^^^^^^~07/01/1995~ -~11410~^~404~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~406~^1.540^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~415~^0.350^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11410~^~606~^0.550^1^^~1~^~A~^^^^^^^^^^~02/01/1998~ -~11410~^~613~^0.260^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11410~^~614~^0.267^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11410~^~617~^1.451^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11410~^~618~^0.102^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11410~^~645~^1.451^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11410~^~646~^0.102^1^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~11411~^~312~^0.092^2^^~1~^~A~^^^1^0.071^0.112^^^^^~03/01/2005~ -~11411~^~315~^0.161^2^^~1~^~A~^^^1^0.143^0.179^^^^^~03/01/2005~ -~11411~^~404~^0.098^2^^~1~^~A~^^^1^0.069^0.128^^^^^~03/01/2005~ -~11411~^~405~^0.072^2^^~1~^~A~^^^1^0.040^0.103^^^^^~03/01/2005~ -~11411~^~406~^2.005^2^^~1~^~A~^^^1^1.880^2.130^^^^^~03/01/2005~ -~11411~^~410~^0.473^2^^~1~^~A~^^^1^0.463^0.483^^^^^~03/01/2005~ -~11411~^~415~^0.168^2^^~1~^~A~^^^1^0.157^0.179^^^^^~03/01/2005~ -~11411~^~501~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~502~^0.076^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~503~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~504~^0.128^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~505~^0.129^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~506~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~507~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~508~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~509~^0.074^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~510~^0.121^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~511~^0.126^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~512~^0.045^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~513~^0.089^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~514~^0.485^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~515~^0.390^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~516~^0.072^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~517~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~518~^0.095^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11411~^~606~^0.688^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~613~^0.357^2^^~1~^~A~^^^1^0.351^0.363^^^^^~03/01/2005~ -~11411~^~614~^0.301^2^^~1~^~A~^^^1^0.267^0.336^^^^^~03/01/2005~ -~11411~^~615~^0.013^2^^~1~^~A~^^^1^0.012^0.014^^^^^~03/01/2005~ -~11411~^~617~^2.001^2^^~1~^~A~^^^1^1.987^2.016^^^^^~03/01/2005~ -~11411~^~618~^0.201^2^^~1~^~A~^^^1^0.133^0.269^^^^^~03/01/2005~ -~11411~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11411~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~624~^0.013^2^^~1~^~A~^^^1^0.012^0.014^^^^^~03/01/2005~ -~11411~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~626~^0.011^2^^~1~^~A~^^^1^0.003^0.019^^^^~1~^~03/01/2005~ -~11411~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~628~^0.013^2^^~1~^~A~^^^1^0.012^0.014^^^^^~03/01/2005~ -~11411~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11411~^~645~^2.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~646~^0.218^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11411~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~653~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~03/01/2005~ -~11411~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11411~^~851~^0.017^2^^~1~^~A~^^^1^0.015^0.020^^^^^~03/01/2005~ -~11412~^~312~^0.095^2^^~1~^~A~^^^1^0.075^0.116^^^^^~03/01/2005~ -~11412~^~315~^0.189^2^^~1~^~A~^^^1^0.166^0.212^^^^^~03/01/2005~ -~11412~^~404~^0.132^2^^~1~^~A~^^^1^0.115^0.149^^^^^~03/01/2005~ -~11412~^~405~^0.029^2^^~1~^~A~^^^1^0.015^0.044^^^^~1~^~03/01/2005~ -~11412~^~406~^2.240^2^^~1~^~A~^^^1^2.100^2.380^^^^^~03/01/2005~ -~11412~^~410~^0.522^2^^~1~^~A~^^^1^0.489^0.555^^^^^~03/01/2005~ -~11412~^~415~^0.192^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~11412~^~606~^0.737^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11412~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~613~^0.389^2^^~1~^~A~^^^1^0.376^0.402^^^^^~03/01/2005~ -~11412~^~614~^0.320^2^^~1~^~A~^^^1^0.315^0.326^^^^^~03/01/2005~ -~11412~^~615~^0.013^2^^~1~^~A~^^^1^0.012^0.013^^^^^~03/01/2005~ -~11412~^~617~^2.199^2^^~1~^~A~^^^1^2.197^2.202^^^^^~03/01/2005~ -~11412~^~618~^0.232^2^^~1~^~A~^^^1^0.163^0.300^^^^^~03/01/2005~ -~11412~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11412~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~624~^0.011^2^^~1~^~A~^^^1^0.009^0.013^^^^^~03/01/2005~ -~11412~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~626~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^~1~^~03/01/2005~ -~11412~^~628~^0.004^2^^~1~^~A~^^^1^0.004^0.005^^^^^~03/01/2005~ -~11412~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11412~^~645~^2.207^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11412~^~646~^0.252^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11412~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~653~^0.004^2^^~1~^~A~^^^1^0.004^0.005^^^^^~03/01/2005~ -~11412~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~11412~^~851~^0.021^2^^~1~^~A~^^^1^0.018^0.024^^^^^~03/01/2005~ -~11413~^~312~^0.197^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~315~^0.313^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~404~^0.228^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~405~^0.051^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~406~^3.507^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~410~^0.474^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~415~^0.769^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11413~^~501~^0.115^2^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~502~^0.280^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~503~^0.299^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~504~^0.425^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~505~^0.413^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~506~^0.107^2^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~507~^0.070^2^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~508~^0.316^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~509~^0.224^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~510~^0.356^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~511~^0.374^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~512~^0.166^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~513~^0.328^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~514~^1.173^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~515~^0.932^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~516~^0.256^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~517~^0.265^2^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~518~^0.234^3^^~1~^^^^^^^^^^^~11/01/1996~ -~11413~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11413~^~606~^0.090^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~611~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~612~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~613~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~614~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~617~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~618~^0.112^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~619~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~626~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11413~^~645~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11413~^~646~^0.150^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11414~^~312~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~315~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~404~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~405~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~406~^0.890^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~410~^0.534^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~415~^0.141^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~502~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~503~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~504~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~505~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~506~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~507~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~508~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~509~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~510~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~511~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~513~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~514~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~515~^0.387^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~516~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~517~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~518~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~606~^1.429^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~611~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~612~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~613~^1.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~614~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~617~^2.418^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~618~^3.345^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~619~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~626~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~628~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~645~^2.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11414~^~646~^3.737^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~405~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~406~^0.690^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11416~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11416~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~312~^0.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11417~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~405~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~406~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~415~^0.050^0^^~4~^^^^^^^^^^^~04/01/1985~ -~11417~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11417~^~606~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~613~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11417~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11417~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~312~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~315~^0.355^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~404~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~405~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~406~^0.920^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~415~^0.207^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11418~^~501~^0.041^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~502~^0.156^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~503~^0.156^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~504~^0.318^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~505~^0.200^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~506~^0.054^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~507~^0.032^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~508~^0.171^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~509~^0.156^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~510~^0.181^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~511~^0.217^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~512~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11418~^~606~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~612~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~613~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~619~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~626~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~645~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11418~^~646~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~312~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~315~^0.355^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~404~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~405~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~406~^0.850^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~415~^0.196^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11419~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~502~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~503~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~504~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~505~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~506~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~508~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~509~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~510~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~511~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~512~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11419~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~612~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~613~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~618~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~626~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11419~^~645~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11419~^~646~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~312~^0.127^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~315~^0.125^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~405~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~410~^0.298^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~415~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11422~^~501~^0.012^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~502~^0.029^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~503~^0.031^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~504~^0.046^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~505~^0.054^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~506~^0.011^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~507~^0.003^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~508~^0.032^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~509~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~510~^0.035^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~511~^0.054^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~512~^0.016^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~513~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~514~^0.102^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~515~^0.184^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~516~^0.027^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~517~^0.026^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~518~^0.044^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11422~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~612~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~613~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~626~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11422~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11422~^~646~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~312~^0.091^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~315~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~404~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~405~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~406~^0.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~410~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~415~^0.044^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11423~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~502~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~503~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~506~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~510~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~511~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~514~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~515~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~517~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11423~^~606~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~11423~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11423~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~312~^0.107^15^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~315~^0.149^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11424~^~404~^0.024^89^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~405~^0.054^89^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~406~^0.367^95^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~410~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~502~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~503~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~504~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~505~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~509~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~511~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~513~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~514~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~515~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~517~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11424~^~606~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~612~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~613~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11424~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11424~^~646~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~312~^0.068^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~315~^0.401^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11426~^~404~^0.016^16^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~405~^0.118^16^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~406~^0.374^16^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~410~^1.137^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11426~^~415~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11426~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~503~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~504~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~505~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~509~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~511~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~513~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~514~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~515~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11426~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~612~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~613~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~618~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~626~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11426~^~646~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~312~^0.113^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~315~^0.303^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~404~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~405~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~406~^0.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11427~^~410~^0.036^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~415~^0.073^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11427~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11428~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~315~^0.307^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~404~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~406~^0.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~410~^0.036^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~415~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11428~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~503~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~510~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~511~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~514~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~515~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~516~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~518~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11428~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11429~^~312~^0.050^17^0.013^~6~^~JA~^^^3^0.010^0.222^16^0.022^0.078^~4~^~12/01/2002~ -~11429~^~315~^0.069^19^0.015^~6~^~JA~^^^3^0.029^0.320^18^0.038^0.100^~4~^~12/01/2002~ -~11429~^~404~^0.012^13^0.002^~6~^~JA~^^^3^0.003^0.019^12^0.008^0.015^~4~^~12/01/2002~ -~11429~^~405~^0.039^13^0.002^~6~^~JA~^^^3^0.030^0.052^12^0.034^0.044^~4~^~12/01/2002~ -~11429~^~406~^0.254^13^0.014^~6~^~JA~^^^3^0.164^0.347^12^0.224^0.285^~4~^~12/01/2002~ -~11429~^~410~^0.165^13^0.068^~6~^~JA~^^^3^0.070^0.982^12^0.016^0.314^~4~^~12/01/2002~ -~11429~^~415~^0.071^19^0.007^~6~^~JA~^^^3^0.049^0.191^18^0.056^0.087^~4~^~12/01/2002~ -~11429~^~501~^0.009^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~502~^0.023^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~503~^0.020^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~504~^0.031^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~505~^0.033^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~506~^0.010^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~507~^0.010^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~508~^0.036^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~509~^0.009^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~510~^0.035^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~511~^0.038^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~512~^0.013^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~513~^0.026^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~514~^0.064^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~515~^0.157^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~516~^0.026^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~517~^0.022^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~518~^0.027^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11429~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11429~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11429~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~612~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~613~^0.027^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~614~^0.004^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~617~^0.017^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~618~^0.017^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~619~^0.031^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~626~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11429~^~645~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11429~^~646~^0.048^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11430~^~312~^0.115^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~315~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~406~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~410~^0.138^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~415~^0.046^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11430~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~504~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~510~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~511~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~513~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~514~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~515~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~517~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~518~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11430~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~618~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~619~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11430~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11430~^~646~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~312~^0.101^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~315~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~405~^0.023^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~406~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~410~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11431~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~502~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~509~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~511~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~514~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~515~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~516~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11431~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~618~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~619~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11431~^~645~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11431~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~312~^1.631^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~315~^0.539^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~404~^0.270^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~405~^0.680^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~406~^3.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~410~^1.854^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~415~^0.618^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11432~^~501~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~502~^0.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~503~^0.344^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~504~^0.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~505~^0.393^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~506~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~507~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~508~^0.262^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~509~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~510~^0.365^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~511~^0.456^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~512~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~513~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~514~^0.538^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~515~^1.492^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~516~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~517~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~518~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11432~^~606~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~607~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~608~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~609~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~610~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~611~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~613~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~614~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~617~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~618~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~619~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~620~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~621~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~627~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~628~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~629~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~630~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~631~^0.000^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~ -~11432~^~645~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11432~^~646~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~312~^0.032^2^^~6~^~JA~^^^2^0.023^0.040^^^^^~08/01/2012~ -~11435~^~315~^0.131^2^^~6~^~JA~^^^2^0.093^0.170^^^^^~08/01/2012~ -~11435~^~404~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~405~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~410~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~415~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11435~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~618~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~619~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11435~^~645~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11435~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~312~^0.029^1^^~6~^~JA~^^^2^0.029^0.041^^^^^~08/01/2012~ -~11436~^~315~^0.097^1^^~6~^~JA~^^^2^0.097^0.174^^^^^~08/01/2012~ -~11436~^~404~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~405~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~406~^0.715^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~410~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~415~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11436~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~617~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~619~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11436~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11436~^~646~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~312~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~315~^0.268^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~404~^0.080^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~405~^0.220^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11437~^~410~^0.371^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~415~^0.277^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11437~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11438~^~312~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~315~^0.210^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~404~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~405~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~406~^0.392^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11438~^~410~^0.276^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~415~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11438~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11438~^~606~^0.041^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~613~^0.035^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~617~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~618~^0.064^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~619~^0.011^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~645~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11438~^~646~^0.074^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11439~^~312~^0.096^17^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~315~^0.151^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11439~^~404~^0.021^124^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~405~^0.022^151^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~406~^0.143^152^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~410~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~415~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11439~^~501~^0.008^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~502~^0.025^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~503~^0.021^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~504~^0.029^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~505~^0.031^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~506~^0.009^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~507~^0.008^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~508~^0.023^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~509~^0.014^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~510~^0.030^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~511~^0.053^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~512~^0.016^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~513~^0.030^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~514~^0.087^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~515~^0.209^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~516~^0.021^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~517~^0.034^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~518~^0.037^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~11439~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11439~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~609~^0.001^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~610~^0.001^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~611~^0.001^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~612~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~613~^0.028^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~614~^0.003^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~617~^0.013^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~618~^0.034^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~619~^0.033^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~620~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~626~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11439~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11439~^~646~^0.067^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11442~^~312~^0.061^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~315~^0.373^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~404~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~405~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~406~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~410~^0.302^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~415~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11442~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11442~^~606~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~613~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~618~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~619~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~629~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11442~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11442~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~312~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~315~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~404~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~405~^0.466^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~406~^0.593^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~410~^0.176^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~415~^0.069^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11444~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11444~^~606~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~613~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~620~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~628~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~629~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11444~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11444~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~312~^0.130^8^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~315~^0.200^5^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~404~^0.050^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~405~^0.150^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~406~^0.470^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~410~^0.642^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11445~^~415~^0.002^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11445~^~501~^0.048^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~502~^0.055^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~503~^0.076^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~504~^0.083^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~505~^0.082^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~506~^0.025^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~507~^0.098^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~508~^0.043^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~509~^0.026^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~510~^0.072^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~511~^0.065^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~512~^0.024^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~513~^0.122^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~514~^0.125^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~515~^0.268^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~516~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~517~^0.073^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~518~^0.098^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11445~^~606~^0.247^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~612~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~613~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~614~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~617~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~620~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~627~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~629~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11445~^~645~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11445~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~312~^0.264^4^0.162^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~315~^0.988^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~404~^0.098^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~405~^0.446^4^0.070^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~406~^1.470^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~410~^0.521^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11446~^~415~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~501~^0.043^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~502~^0.232^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~503~^0.259^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~504~^0.501^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~505~^0.222^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~506~^0.145^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~507~^0.100^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~508~^0.273^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~509~^0.254^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~510~^0.402^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~511~^0.285^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~512~^0.140^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~513~^0.651^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~514~^0.567^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~515~^0.547^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~516~^0.363^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~517~^0.251^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~518~^0.299^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11446~^~606~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~613~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~618~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~620~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~626~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~628~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~629~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11446~^~645~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11446~^~646~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~404~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~405~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~406~^0.430^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~501~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~502~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~503~^0.068^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~504~^0.106^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~505~^0.064^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~506~^0.016^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~507~^0.013^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~508~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~510~^0.078^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~511~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~512~^0.026^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11447~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11448~^~404~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~405~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~406~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~503~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~504~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~508~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~511~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11448~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11450~^~312~^0.128^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~315~^0.547^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~404~^0.435^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~405~^0.175^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~406~^1.650^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~410~^0.147^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~415~^0.065^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~501~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~502~^0.516^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~503~^0.570^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~504~^0.926^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~505~^0.775^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~506~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~507~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~508~^0.586^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~509~^0.464^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~510~^0.576^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~511~^1.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~512~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~513~^0.582^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~514~^1.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~515~^2.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~516~^0.539^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~517~^0.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~518~^0.721^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11450~^~606~^0.786^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~612~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~613~^0.570^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~614~^0.210^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~617~^1.262^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~618~^2.823^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~619~^0.376^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~626~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~628~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~645~^1.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11450~^~646~^3.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~312~^0.117^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~315~^0.502^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~404~^0.260^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~405~^0.155^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~406~^1.250^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~410~^0.128^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~415~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~501~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~502~^0.492^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~503~^0.543^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~504~^0.883^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~505~^0.739^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~506~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~507~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~508~^0.559^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~509~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~510~^0.549^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~511~^0.994^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~512~^0.332^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~513~^0.555^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~514~^1.439^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~515~^2.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~516~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~517~^0.579^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~518~^0.688^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11451~^~606~^0.740^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~612~^0.005^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~613~^0.537^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~614~^0.198^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~617~^1.188^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~618~^2.657^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~619~^0.354^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~628~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11451~^~645~^1.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11451~^~646~^3.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~312~^0.427^8^0.065^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~315~^0.702^8^0.080^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~404~^0.340^8^0.080^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~405~^0.118^8^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~406~^1.148^8^0.148^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~410~^0.929^8^0.115^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~415~^0.176^8^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~501~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~502~^0.503^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~503~^0.580^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~504~^0.938^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~505~^0.752^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~507~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~508~^0.641^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~509~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~510~^0.620^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~511~^0.905^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~512~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~513~^0.549^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~514~^1.774^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~515~^1.966^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~516~^0.503^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~517~^0.674^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~518~^0.651^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11452~^~606~^0.929^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~612~^0.007^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~613~^0.674^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~614~^0.249^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~617~^1.492^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~618~^3.338^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~619~^0.445^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~626~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~628~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~645~^1.518^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11452~^~646~^3.783^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~312~^0.330^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~315~^0.710^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~404~^0.205^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~405~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~406~^1.092^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~410~^0.743^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~415~^0.105^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~501~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~502~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~503~^0.375^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~504~^0.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~505~^0.486^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~507~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~508~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~509~^0.309^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~510~^0.401^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~511~^0.585^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~512~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~513~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~514~^1.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~515~^1.272^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~516~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~517~^0.436^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~518~^0.421^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11453~^~606~^0.617^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~612~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~613~^0.448^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~614~^0.165^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~617~^0.991^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~618~^2.217^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~619~^0.296^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~626~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~628~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11453~^~645~^1.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11453~^~646~^2.513^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~312~^0.527^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~315~^1.133^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~404~^0.420^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~405~^0.190^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~406~^1.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~410~^1.186^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~415~^0.168^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~501~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~502~^0.503^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~503~^0.581^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~504~^0.939^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~505~^0.752^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~507~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~508~^0.641^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~509~^0.478^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~510~^0.620^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~511~^0.905^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~512~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~513~^0.549^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~514~^1.775^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~515~^1.968^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~516~^0.503^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~517~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~518~^0.652^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~606~^0.985^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~612~^0.007^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~613~^0.714^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~614~^0.264^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~617~^1.581^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~618~^3.537^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~619~^0.472^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~626~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~628~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~645~^1.609^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11454~^~646~^4.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~312~^0.130^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~315~^0.897^6^0.048^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~404~^0.078^9^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~405~^0.189^9^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~406~^0.724^9^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~410~^0.065^6^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~415~^0.195^6^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~501~^0.039^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~502~^0.122^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~503~^0.147^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~504~^0.223^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~505~^0.174^23^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~506~^0.053^23^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~507~^0.035^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~508~^0.129^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~509~^0.108^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~510~^0.161^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~511~^0.162^18^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~512~^0.064^18^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~513~^0.142^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~514~^0.240^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~515~^0.343^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~516~^0.134^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~517~^0.112^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~518~^0.104^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11457~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11457~^~606~^0.063^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~607~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~612~^0.010^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~613~^0.049^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~614~^0.004^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~617~^0.005^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~618~^0.026^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~619~^0.138^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~620~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~621~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~626~^0.005^1^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~627~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~631~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11457~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11457~^~646~^0.165^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11458~^~312~^0.174^16^0.012^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~315~^0.935^15^0.061^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~404~^0.095^12^0.004^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~405~^0.236^12^0.007^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~406~^0.490^12^0.032^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~410~^0.145^12^0.008^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~415~^0.242^12^0.006^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~501~^0.040^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~502~^0.127^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~503~^0.152^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~504~^0.231^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~505~^0.182^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~506~^0.055^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~507~^0.035^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~508~^0.134^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~509~^0.113^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~510~^0.168^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~511~^0.168^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~512~^0.066^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~513~^0.147^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~514~^0.250^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~515~^0.357^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~516~^0.140^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~517~^0.116^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~518~^0.107^0^^~1~^^^^^^^^^^^~12/01/2002~ -~11458~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11458~^~606~^0.043^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11458~^~607~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~612~^0.006^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~613~^0.033^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~617~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~618~^0.017^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~619~^0.092^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~620~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~621~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~627~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~631~^0.000^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11458~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11458~^~646~^0.109^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11459~^~312~^0.116^47^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~315~^0.493^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~404~^0.018^146^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~405~^0.106^269^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~406~^0.271^122^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~410~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~415~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~502~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~503~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~504~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~505~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~508~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~509~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~510~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~511~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~512~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~513~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~514~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~515~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~516~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~517~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~518~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11459~^~606~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~612~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~619~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11459~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11459~^~646~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~312~^0.180^11^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~315~^0.597^10^0.067^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~404~^0.016^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~405~^0.138^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~406~^0.388^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~410~^0.047^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~415~^0.100^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~502~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~503~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~504~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~505~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~506~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~508~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~509~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~510~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~511~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~513~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~515~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~516~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~517~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~518~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11461~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11461~^~606~^0.081^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11461~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~612~^0.012^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~613~^0.064^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~614~^0.005^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~617~^0.006^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~618~^0.033^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~619~^0.178^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~626~^0.006^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~11461~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11461~^~646~^0.211^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~11463~^~312~^0.144^11^0.006^~1~^~A~^^^1^0.124^0.157^5^0.130^0.159^~2, 3~^~07/01/2007~ -~11463~^~315~^0.704^11^0.017^~1~^~A~^^^1^0.585^0.770^8^0.665^0.743^~2, 3~^~07/01/2007~ -~11463~^~404~^0.094^5^0.005^~1~^~A~^^^1^0.073^0.106^2^0.074^0.113^~2, 3~^~07/01/2007~ -~11463~^~405~^0.224^5^0.002^~1~^~A~^^^1^0.214^0.232^2^0.216^0.232^~2, 3~^~07/01/2007~ -~11463~^~406~^0.507^5^0.002^~1~^~A~^^^1^0.460^0.571^2^0.499^0.515^~2, 3~^~07/01/2007~ -~11463~^~410~^0.094^5^0.000^~1~^~A~^^^1^0.075^0.123^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~415~^0.172^5^0.003^~1~^~A~^^^1^0.160^0.190^2^0.157^0.187^~2, 3~^~07/01/2007~ -~11463~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~502~^0.217^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~503~^0.126^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~504~^0.202^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~505~^0.251^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~506~^0.052^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~508~^0.207^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~509~^0.215^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~510~^0.178^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~511~^0.481^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~513~^0.218^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~514~^0.429^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~515~^0.508^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~516~^0.221^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~517~^0.198^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~518~^0.170^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11463~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11463~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~610~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~611~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~612~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~613~^0.041^5^0.000^~1~^~A~^^^1^0.000^0.101^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~614~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~615~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~617~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~618~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~619~^0.082^5^0.029^~1~^~A~^^^1^0.000^0.150^2^-0.045^0.208^~1, 2, 3~^~07/01/2007~ -~11463~^~620~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~624~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~625~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~626~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~628~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~630~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~646~^0.082^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11463~^~652~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~653~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11463~^~654~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~11464~^~312~^0.161^6^0.013^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~315~^0.717^6^0.038^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~404~^0.078^6^0.006^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~405~^0.176^6^0.007^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~406~^0.439^5^0.035^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~410~^0.075^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~415~^0.136^6^0.006^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11464~^~501~^0.101^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~502~^0.220^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~503~^0.128^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~505~^0.256^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~506~^0.053^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~508~^0.211^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~509~^0.219^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~510~^0.181^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~511~^0.489^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~513~^0.222^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~514~^0.436^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~515~^0.516^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~516~^0.225^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~517~^0.201^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~518~^0.173^0^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~11464~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11464~^~606~^0.157^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~607~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~608~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~609~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~610~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~611~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~612~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~613~^0.157^4^0.036^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~614~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~615~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~617~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~618~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~619~^0.371^4^0.053^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~620~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~621~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~624~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~625~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~626~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~627~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~628~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~629~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~630~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~631~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~646~^0.371^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~11464~^~652~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~653~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11464~^~654~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~07/01/2007~ -~11467~^~312~^0.092^9^0.006^~6~^~JA~^^^2^0.056^0.102^5^0.077^0.108^~2, 3~^~04/01/2009~ -~11467~^~315~^0.172^9^0.017^~6~^~JA~^^^2^0.116^0.243^4^0.123^0.220^~2, 3~^~04/01/2009~ -~11467~^~404~^0.051^11^0.004^~6~^~JA~^^^2^0.030^0.060^8^0.042^0.059^~2, 3~^~04/01/2009~ -~11467~^~405~^0.041^11^0.005^~6~^~JA~^^^2^0.020^0.070^3^0.025^0.057^~2, 3~^~04/01/2009~ -~11467~^~406~^0.448^11^0.028^~6~^~JA~^^^2^0.380^0.480^8^0.384^0.513^~2, 3~^~04/01/2009~ -~11467~^~410~^0.160^9^0.012^~6~^~JA~^^^2^0.102^0.310^7^0.132^0.189^~2, 3~^~04/01/2009~ -~11467~^~415~^0.104^9^0.005^~6~^~JA~^^^2^0.080^0.109^7^0.091^0.116^~2, 3~^~04/01/2009~ -~11467~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~502~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~503~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~504~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~505~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~508~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~509~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~510~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~511~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~513~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~514~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~515~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~516~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~517~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~518~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11467~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~606~^0.093^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11467~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~11467~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~613~^0.065^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~615~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~617~^0.006^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~618~^0.039^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~646~^0.082^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~674~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~675~^0.039^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~11467~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~11467~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~851~^0.043^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~11467~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11467~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~11468~^~312~^0.065^31^0.004^~6~^~JA~^^^6^0.030^0.116^14^0.056^0.073^~2, 3~^~04/01/2009~ -~11468~^~315~^0.157^31^0.008^~6~^~JA~^^^6^0.075^0.257^16^0.141^0.174^~2, 3~^~04/01/2009~ -~11468~^~404~^0.043^3^0.009^~1~^~A~^^^1^0.030^0.060^2^0.005^0.081^~2, 3~^~04/01/2009~ -~11468~^~405~^0.025^3^0.008^~1~^~A~^^^1^0.015^0.040^2^-0.008^0.058^~1, 2, 3~^~04/01/2009~ -~11468~^~406~^0.507^3^0.055^~1~^~A~^^^1^0.400^0.580^2^0.272^0.741^~2, 3~^~04/01/2009~ -~11468~^~410~^0.323^3^0.012^~1~^~A~^^^1^0.300^0.340^2^0.272^0.375^~2, 3~^~04/01/2009~ -~11468~^~415~^0.078^3^0.007^~1~^~A~^^^1^0.064^0.085^2^0.048^0.108^~2, 3~^~04/01/2009~ -~11468~^~501~^0.008^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~502~^0.022^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~503~^0.033^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~504~^0.053^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~505~^0.050^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~506~^0.013^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~507~^0.010^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~508~^0.032^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~509~^0.024^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~510~^0.041^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~511~^0.038^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~512~^0.020^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~513~^0.048^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~514~^0.111^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~515~^0.097^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~516~^0.034^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~517~^0.028^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~518~^0.037^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11468~^~606~^0.064^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~611~^0.001^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~612~^0.001^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~613~^0.056^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~614~^0.006^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~617~^0.021^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~618~^0.049^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~619~^0.082^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~626~^0.001^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~645~^0.023^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11468~^~646~^0.131^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11471~^~312~^0.080^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~315~^0.097^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~404~^0.016^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~405~^0.027^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~406~^0.418^6^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~410~^0.048^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~415~^0.042^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~502~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~503~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~504~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~505~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~510~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~511~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~513~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~514~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~515~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~516~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~517~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~518~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11471~^~606~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~618~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11471~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11471~^~646~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~312~^0.085^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~315~^0.162^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~404~^0.040^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~405~^0.048^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~406~^0.400^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~410~^0.088^6^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~415~^0.088^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~505~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~510~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~511~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~512~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~513~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~514~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~515~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~516~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~517~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11473~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~619~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11473~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11473~^~646~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~312~^0.073^6^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~315~^0.263^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~404~^0.036^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~405~^0.047^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~406~^0.440^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~410~^0.102^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~415~^0.099^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~503~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~504~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~505~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~508~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~510~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~511~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~513~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~515~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~516~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~518~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11474~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~619~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11474~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11474~^~646~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~312~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~315~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~404~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~406~^0.600^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~410~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~415~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~502~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~503~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~504~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~505~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~508~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~509~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~510~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~511~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~512~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~514~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~515~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~517~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~518~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11475~^~606~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~607~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~608~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~609~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~610~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~613~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~620~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~621~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~627~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~628~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~629~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~630~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~631~^0.000^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~ -~11475~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11475~^~646~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~312~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~315~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~406~^0.464^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~415~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~503~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~504~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~509~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~510~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~513~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~514~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~515~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~516~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~518~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11476~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~613~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~619~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11476~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11476~^~646~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11477~^~312~^0.053^10^0.002^~6~^~JA~^^^3^0.046^0.069^5^0.049^0.058^~2, 3~^~04/01/2009~ -~11477~^~315~^0.177^10^0.024^~6~^~JA~^^^3^0.114^0.329^5^0.114^0.240^~2, 3~^~04/01/2009~ -~11477~^~404~^0.045^10^0.001^~6~^~JA~^^^3^0.034^0.060^3^0.041^0.048^~2, 3~^~04/01/2009~ -~11477~^~405~^0.094^10^0.055^~6~^~JA~^^^3^0.020^0.600^3^-0.081^0.269^~2, 3~^~04/01/2009~ -~11477~^~406~^0.451^10^0.017^~6~^~JA~^^^3^0.370^0.540^5^0.406^0.496^~2, 3~^~04/01/2009~ -~11477~^~410~^0.204^10^0.011^~6~^~JA~^^^3^0.098^0.320^6^0.176^0.233^~2, 3~^~04/01/2009~ -~11477~^~415~^0.163^9^0.081^~6~^~JA~^^^3^0.060^0.800^3^-0.094^0.420^~2, 3~^~04/01/2009~ -~11477~^~501~^0.010^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~502~^0.029^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~503~^0.044^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~504~^0.071^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~505~^0.067^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~506~^0.018^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~507~^0.012^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~508~^0.043^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~509~^0.032^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~510~^0.054^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~511~^0.051^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~512~^0.026^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~513~^0.063^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~514~^0.147^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~515~^0.129^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~516~^0.046^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~517~^0.037^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~518~^0.049^0^^~1~^~DA~^~11477~^^^^^^^^^~10/01/2002~ -~11477~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~606~^0.084^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11477~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~610~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~612~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~613~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~614~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~615~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~617~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~618~^0.030^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~619~^0.061^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~645~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~646~^0.091^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~673~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~674~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~675~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~11477~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11477~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~851~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~11477~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11477~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~11478~^~312~^0.052^4^0.004^~1~^~A~^^^1^0.042^0.059^3^0.040^0.064^~2, 3~^~04/01/2009~ -~11478~^~315~^0.173^4^0.032^~1~^~A~^^^1^0.136^0.267^3^0.072^0.273^~2, 3~^~04/01/2009~ -~11478~^~404~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~04/01/2009~ -~11478~^~405~^0.024^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.012^0.036^~1, 2, 3~^~04/01/2009~ -~11478~^~406~^0.510^4^0.025^~1~^~A~^^^1^0.450^0.560^3^0.431^0.589^~2, 3~^~04/01/2009~ -~11478~^~410~^0.288^4^0.022^~1~^~A~^^^1^0.240^0.330^3^0.217^0.358^~2, 3~^~04/01/2009~ -~11478~^~415~^0.080^4^0.004^~1~^~A~^^^1^0.074^0.091^3^0.068^0.092^~2, 3~^~04/01/2009~ -~11478~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~502~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~503~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~504~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~505~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~511~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~514~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~515~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~517~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11478~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11478~^~606~^0.072^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11478~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~613~^0.065^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~614~^0.007^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~617~^0.029^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~618~^0.058^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~619~^0.094^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11478~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11478~^~646~^0.151^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11479~^~312~^0.050^9^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~315~^0.244^8^0.050^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~404~^0.048^12^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~405~^0.042^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~406~^0.433^12^0.070^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~410~^0.297^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~415~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~502~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~504~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~505~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~508~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~510~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~511~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~514~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~515~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~516~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11479~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~618~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~619~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11479~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11479~^~646~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~315~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~404~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~406~^0.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~410~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~415~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~502~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~503~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~504~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~505~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~506~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~508~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~510~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~511~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~514~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~516~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11480~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~618~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~619~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11480~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11480~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~312~^0.098^18^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~315~^0.240^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11481~^~404~^0.042^18^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~405~^0.040^18^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~406~^0.528^18^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~410~^0.274^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11481~^~415~^0.152^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11481~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~503~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~504~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~511~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~513~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~514~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~515~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~516~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~518~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11481~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~618~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~619~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11481~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~312~^0.065^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~315~^0.167^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11482~^~404~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~405~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~410~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~415~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~503~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~504~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~505~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~508~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~514~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~515~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11482~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~618~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11482~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~312~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~315~^0.242^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11483~^~404~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~405~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~406~^0.881^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~410~^0.504^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~415~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~503~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~504~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~508~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~509~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~510~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~511~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~513~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~514~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~515~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~518~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11483~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~619~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11483~^~646~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~312~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~315~^0.146^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11484~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~405~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~406~^0.531^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~410~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~415~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~504~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~505~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~506~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~513~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~514~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~515~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~516~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11484~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11484~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~312~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~315~^0.202^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11485~^~404~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~406~^1.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~410~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~415~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~502~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~503~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~504~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~505~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~508~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~510~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~511~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~513~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~514~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~515~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~518~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11485~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~607~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~608~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~609~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~610~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~618~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~620~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~621~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~627~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~628~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~629~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~630~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~631~^0.000^0^^~4~^~BFSN~^~11643~^^^^^^^^^~02/01/2003~ -~11485~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11485~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~315~^0.172^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11486~^~404~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~405~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~406~^0.969^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~410~^0.359^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~415~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~504~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~511~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~514~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~515~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11486~^~606~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11486~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~312~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~315~^0.248^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11487~^~404~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~405~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~406~^0.740^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~410~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~415~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~501~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~502~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~504~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~506~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~509~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~510~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~513~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~514~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~515~^0.308^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~516~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~517~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~518~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11487~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~618~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11487~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11487~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~312~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~315~^0.173^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11488~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~406~^0.464^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~410~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~415~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~502~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~504~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~505~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~508~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~509~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~510~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~511~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~513~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~515~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~517~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11488~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~618~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11488~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~312~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~315~^0.179^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11489~^~404~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~405~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~410~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~415~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~502~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~503~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~504~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~506~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~508~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~509~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~510~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~511~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~513~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~514~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~515~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~516~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~517~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~518~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11489~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11489~^~606~^0.103^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11489~^~607~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~608~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~609~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~610~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~611~^0.002^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~612~^0.002^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~613~^0.089^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~614~^0.010^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~617~^0.034^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~618~^0.079^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~619~^0.131^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~620~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~621~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~626~^0.002^0^^~1~^^^^^^^^^^^~06/01/2003~ -~11489~^~627~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~628~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~629~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~630~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~631~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11489~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11489~^~646~^0.210^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11490~^~312~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~315~^0.170^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11490~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~405~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~406~^0.558^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~410~^0.447^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~415~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~502~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~504~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~509~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~510~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~511~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~514~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~515~^0.259^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~518~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11490~^~606~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~607~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~608~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~609~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~610~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~613~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~617~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~618~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~619~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~620~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~621~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~627~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~628~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~629~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~630~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~631~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11490~^~645~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11490~^~646~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~315~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11491~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~406~^0.334^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~410~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~415~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~502~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~504~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~509~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~510~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~511~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~514~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~515~^0.259^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~518~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11491~^~606~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~613~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11491~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11491~^~646~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~312~^0.037^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~315~^0.125^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11492~^~404~^0.037^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~405~^0.018^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~406~^0.950^3^0.040^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~410~^0.360^3^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~415~^0.101^3^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~503~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~505~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~511~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~514~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~515~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11492~^~606~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~613~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~618~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~619~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~645~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11492~^~646~^0.239^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~312~^0.035^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~315~^0.109^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11493~^~404~^0.038^3^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~405~^0.022^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~406~^0.810^3^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~410~^0.355^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~415~^0.099^3^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~503~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~505~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~511~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~514~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~515~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11493~^~606~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~613~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~619~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11493~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11493~^~646~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~312~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~315~^0.688^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~404~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~405~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~406~^1.587^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~410~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~415~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~501~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~502~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~503~^0.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~504~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~505~^0.295^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~507~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~508~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~509~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~510~^0.306^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~511~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~512~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~513~^0.277^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~514~^0.489^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~515~^0.758^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~516~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~517~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~518~^0.290^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11495~^~606~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~613~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~614~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~617~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~618~^0.412^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~619~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~645~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11495~^~646~^0.489^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~312~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~315~^0.769^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11496~^~404~^0.168^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~405~^0.096^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~406~^1.327^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~410~^0.567^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~415~^0.116^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~501~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~503~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~504~^0.446^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~505~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~507~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~508~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~509~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~510~^0.308^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~511~^0.296^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~512~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~513~^0.279^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~514~^0.493^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~515~^0.764^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~516~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~517~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~518~^0.292^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11496~^~606~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~613~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~617~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~618~^0.321^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~645~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11496~^~646~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~312~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~315~^0.645^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~404~^0.027^23^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~405~^0.065^23^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~406~^0.607^23^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~410~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~415~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~503~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~504~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~505~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~508~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~509~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~510~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~511~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~512~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~513~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~514~^0.257^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~515~^0.398^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~517~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~518~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11497~^~606~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~613~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~617~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~618~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~619~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~645~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11497~^~646~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~312~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~315~^0.366^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~404~^0.029^18^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~405~^0.058^18^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~406~^0.640^18^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~410~^0.309^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~415~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~502~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~503~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~504~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~505~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~507~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~509~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~510~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~511~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~512~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~513~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~514~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~515~^0.392^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~517~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~518~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11499~^~606~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~613~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~617~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~618~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~619~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1999~ -~11499~^~645~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11499~^~646~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~312~^0.063^4^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~315~^0.295^4^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~404~^0.087^27^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~405~^0.072^27^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~406~^1.375^27^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~410~^0.258^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~415~^0.100^14^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~502~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~503~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~504~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~505~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~506~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~507~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~508~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~509~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~510~^0.262^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~511~^0.251^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~512~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~514~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~515~^0.649^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~516~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~517~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~518~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11501~^~606~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~613~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~614~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~617~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~618~^0.361^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~619~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~645~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11501~^~646~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~312~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~315~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~405~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~406~^1.306^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~410~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~502~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~503~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~504~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~505~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~506~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~507~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~508~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~509~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~510~^0.262^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~511~^0.251^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~512~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~514~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~515~^0.649^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~516~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~517~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~518~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11502~^~606~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~613~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~614~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~617~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~618~^0.361^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~619~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11502~^~645~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11502~^~646~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~312~^0.023^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~315~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~404~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~406~^0.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~410~^0.141^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~415~^0.096^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11503~^~502~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~503~^0.104^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~504~^0.146^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~505~^0.109^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~506~^0.044^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~507~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~508~^0.127^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~509~^0.080^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~510~^0.135^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~511~^0.148^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~512~^0.047^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~513~^0.109^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~514~^0.650^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~515~^0.252^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~516~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~517~^0.088^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~518~^0.122^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11503~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2016~ -~11504~^~312~^0.021^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~315~^0.143^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~410~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~415~^0.081^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11504~^~502~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~505~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~508~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~510~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~511~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~514~^0.519^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~515~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~516~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~518~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11504~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11504~^~606~^0.039^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~612~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~613~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~614~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~617~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~618~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~619~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~626~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~645~^0.007^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11504~^~646~^0.100^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11505~^~404~^0.156^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~405~^0.345^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~406~^1.130^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~410~^0.225^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11505~^~415~^0.190^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11505~^~501~^0.035^1^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~505~^0.228^1^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~506~^0.086^1^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~507~^0.047^1^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11505~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11505~^~606~^0.111^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~613~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~614~^0.010^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~617~^0.020^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~618~^0.192^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~619~^0.036^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~11505~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11505~^~646~^0.228^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~11506~^~312~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~315~^0.229^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~404~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~405~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~406~^1.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~410~^0.200^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~415~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11506~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11506~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~613~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~618~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~619~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11506~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11506~^~646~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11507~^~312~^0.151^3^0.015^~1~^~A~^^^1^0.126^0.178^2^0.086^0.216^~2, 3~^~10/01/2002~ -~11507~^~315~^0.258^3^0.052^~1~^~A~^^^1^0.156^0.327^2^0.034^0.481^~2, 3~^~10/01/2002~ -~11507~^~404~^0.078^4^0.007^~1~^~A~^^^1^0.067^0.098^3^0.057^0.100^~2, 3~^~10/01/2002~ -~11507~^~405~^0.061^4^0.005^~1~^~A~^^^1^0.054^0.076^3^0.045^0.077^~2, 3~^~10/01/2002~ -~11507~^~406~^0.557^4^0.076^~1~^~A~^^^1^0.425^0.773^3^0.316^0.798^~2, 3~^~10/01/2002~ -~11507~^~410~^0.800^4^0.152^~1~^~A~^^^1^0.588^1.250^3^0.316^1.284^~2, 3~^~10/01/2002~ -~11507~^~415~^0.209^4^0.014^~1~^~A~^^^1^0.183^0.247^3^0.166^0.253^~2, 3~^~10/01/2002~ -~11507~^~501~^0.031^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~502~^0.083^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~503~^0.055^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~504~^0.092^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~505~^0.066^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~507~^0.022^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~508~^0.089^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~509~^0.034^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~510~^0.086^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~511~^0.055^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~512~^0.031^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~513~^0.077^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~514~^0.382^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~515~^0.155^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~516~^0.063^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~517~^0.052^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~518~^0.088^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11507~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~11507~^~606~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11507~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11507~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~613~^0.018^2^^~1~^~A~^^^1^0.040^0.040^^^^^~02/01/2007~ -~11507~^~614~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2007~ -~11507~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~617~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2007~ -~11507~^~618~^0.013^2^^~1~^~A~^^^1^0.030^0.030^^^^^~02/01/2007~ -~11507~^~619~^0.001^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2007~ -~11507~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~645~^0.001^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~646~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11507~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11507~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11508~^~312~^0.161^68^0.007^~6~^~JA~^^^12^0.020^0.417^67^0.147^0.175^~1, 4~^~05/01/2004~ -~11508~^~315~^0.497^68^0.038^~6~^~JA~^^^12^0.109^1.850^67^0.421^0.573^~4~^~04/01/2003~ -~11508~^~404~^0.107^3^0.018^~1~^~A~^^^1^0.077^0.139^2^0.030^0.184^~2, 3~^~12/01/2003~ -~11508~^~405~^0.106^4^0.005^~1~^~A~^^^1^0.095^0.118^3^0.091^0.122^~2, 3~^~12/01/2002~ -~11508~^~406~^1.487^4^0.284^~1~^~A~^^^1^1.050^2.250^3^0.585^2.390^~2, 3~^~12/01/2002~ -~11508~^~410~^0.884^4^0.130^~1~^~A~^^^1^0.661^1.220^3^0.470^1.297^~2, 3~^~12/01/2002~ -~11508~^~415~^0.286^4^0.056^~1~^~A~^^^1^0.208^0.452^3^0.109^0.464^~2, 3~^~12/01/2002~ -~11508~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~502~^0.107^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~503~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~504~^0.118^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~505~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~507~^0.028^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~508~^0.114^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~509~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~510~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~511~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~512~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~513~^0.099^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~514~^0.488^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~515~^0.198^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~516~^0.081^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~517~^0.067^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~518~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11508~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11508~^~606~^0.052^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11508~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11508~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11508~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~613~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2014~ -~11508~^~614~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2014~ -~11508~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~617~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2014~ -~11508~^~618~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~06/01/2014~ -~11508~^~619~^0.006^2^^~1~^~A~^^^1^0.002^0.010^1^^^~1~^~06/01/2014~ -~11508~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~645~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11508~^~646~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~11508~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11508~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11510~^~312~^0.094^4^0.011^~1~^~A~^^^1^0.075^0.115^3^0.058^0.129^~1, 2, 3~^~05/01/2004~ -~11510~^~315~^0.266^4^0.064^~1~^~A~^^^1^0.113^0.397^3^0.061^0.472^~2, 3~^~04/01/2003~ -~11510~^~404~^0.056^4^0.004^~1~^~A~^^^1^0.044^0.063^3^0.043^0.068^~2, 3~^~10/01/2002~ -~11510~^~405~^0.047^4^0.004^~1~^~A~^^^1^0.039^0.056^3^0.035^0.059^~2, 3~^~10/01/2002~ -~11510~^~406~^0.538^4^0.036^~1~^~A~^^^1^0.467^0.639^3^0.423^0.654^~2, 3~^~10/01/2002~ -~11510~^~410~^0.581^4^0.028^~1~^~A~^^^1^0.537^0.663^3^0.492^0.671^~2, 3~^~10/01/2002~ -~11510~^~415~^0.165^4^0.025^~1~^~A~^^^1^0.114^0.233^3^0.085^0.245^~2, 3~^~10/01/2002~ -~11510~^~501~^0.028^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~502~^0.073^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~503~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~504~^0.081^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~505~^0.058^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~506~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~507~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~508~^0.078^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~509~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~510~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~511~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~512~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~513~^0.067^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~514~^0.335^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~515~^0.135^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~516~^0.055^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~517~^0.046^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~518~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11510~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11510~^~606~^0.031^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11510~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11510~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~613~^0.031^2^^~1~^~A~^^^1^0.040^0.040^^^^^~02/01/2007~ -~11510~^~614~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~617~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~618~^0.061^2^^~1~^~A~^^^1^0.080^0.080^^^^^~02/01/2007~ -~11510~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~646~^0.061^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11510~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11510~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~11512~^~312~^0.139^8^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~315~^0.455^8^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~404~^0.037^8^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~405~^0.057^8^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~406~^0.741^8^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~410~^0.523^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~415~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11512~^~501~^0.033^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~502~^0.088^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~503~^0.057^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~504~^0.097^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~505~^0.069^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~506~^0.030^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~507~^0.023^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~508~^0.094^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~509~^0.036^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~510~^0.090^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~511~^0.058^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~512~^0.032^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~513~^0.081^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~514~^0.401^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~515~^0.162^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~516~^0.066^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~517~^0.055^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~518~^0.093^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11512~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11512~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~613~^0.037^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~617~^0.008^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~618~^0.071^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~619~^0.013^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11512~^~645~^0.008^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11512~^~646~^0.084^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11514~^~312~^0.278^4^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~315~^0.988^4^0.098^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~404~^0.027^4^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~405~^0.090^3^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~406~^0.955^4^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~410~^0.512^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11514~^~415~^0.235^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11514~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~502~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~503~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~504~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~505~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~506~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~508~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~509~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~510~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~511~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~513~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~514~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~516~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~517~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~518~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11514~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11514~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~613~^0.037^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11514~^~614~^0.004^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11514~^~617~^0.008^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11514~^~618~^0.071^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11514~^~619~^0.013^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11514~^~645~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11514~^~646~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11516~^~312~^0.177^6^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~315~^0.665^6^0.058^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~404~^0.067^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~405~^0.051^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~406~^0.597^6^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~410~^0.515^6^0.065^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~415~^0.177^6^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~504~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~505~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~508~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~510~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~511~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~513~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~514~^0.292^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~515~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~516~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~517~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~518~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11516~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~618~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11516~^~646~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~312~^0.183^6^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~315~^0.665^6^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~404~^0.066^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~405~^0.056^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~406~^0.555^6^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~410~^0.560^6^0.083^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~415~^0.186^6^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~503~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~504~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~505~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~508~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~510~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~511~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~513~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~514~^0.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~515~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~516~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~517~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~518~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11517~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11517~^~606~^0.025^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~613~^0.022^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~614~^0.003^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~617~^0.005^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~618~^0.042^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~619~^0.007^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11517~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11517~^~646~^0.049^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11518~^~312~^0.172^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~315~^0.383^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~404~^0.095^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~405~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~406~^0.600^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~410~^0.303^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~415~^0.283^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11518~^~501~^0.023^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~502~^0.069^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~503~^0.054^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~504~^0.111^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~505~^0.067^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~506~^0.020^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~507~^0.032^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~508~^0.082^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~509~^0.055^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~510~^0.082^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~511~^0.103^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~512~^0.034^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~513~^0.073^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~514~^0.192^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~515~^0.174^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~516~^0.074^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~517~^0.060^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~518~^0.092^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11518~^~606~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~619~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11518~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11518~^~646~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~312~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~315~^0.449^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~404~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~406~^0.510^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~410~^0.336^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~415~^0.331^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11519~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~503~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~504~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~505~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~510~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~511~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~514~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~515~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11519~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~619~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11519~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11519~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~312~^0.270^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~315~^0.714^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~404~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~405~^0.456^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~406~^1.513^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~410~^0.084^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~415~^0.146^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11520~^~501~^0.048^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~502~^0.167^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~503~^0.260^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~504~^0.392^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~505~^0.246^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~506~^0.079^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~507~^0.064^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~508~^0.195^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~509~^0.178^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~510~^0.256^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~511~^0.220^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~512~^0.114^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11520~^~606~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~613~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~614~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~617~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~618~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~619~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11520~^~645~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11520~^~646~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~312~^0.140^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~315~^0.371^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~404~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~405~^0.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~406~^1.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~410~^0.044^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~415~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11521~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~502~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~503~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~504~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~505~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~508~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~509~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~510~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~511~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11521~^~606~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~613~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~617~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~618~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~619~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~645~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11521~^~646~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~312~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~315~^0.122^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~410~^0.075^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~415~^0.111^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11522~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11522~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~618~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11522~^~646~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~312~^0.094^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~315~^0.130^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~404~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~405~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~406~^0.810^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~410~^0.076^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~415~^0.112^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11523~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11523~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11523~^~646~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~312~^0.071^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~315~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~404~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~405~^0.244^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~406~^0.995^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~410~^0.124^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~415~^0.116^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11525~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11525~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~613~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~614~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~617~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~618~^0.279^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~619~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~645~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11525~^~646~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~312~^0.076^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~315~^0.168^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~404~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~405~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~406~^0.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~410~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~415~^0.117^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11526~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11526~^~606~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~613~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~614~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~617~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~618~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~619~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~645~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11526~^~646~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~312~^0.090^9^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~315~^0.100^9^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~410~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~415~^0.081^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11527~^~501~^0.009^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~502~^0.030^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~503~^0.029^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~504~^0.044^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~505~^0.044^19^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~506~^0.010^15^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~507~^0.016^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~508~^0.031^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~509~^0.021^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~510~^0.031^14^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~511~^0.029^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~512~^0.018^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~513~^0.034^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~514~^0.166^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~515~^0.442^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~516~^0.030^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~517~^0.023^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~518~^0.032^12^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11527~^~606~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~617~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~619~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11527~^~645~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11527~^~646~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11529~^~312~^0.059^70^0.002^~6~^~JA~^^^8^0.012^0.134^63^0.054^0.064^~4~^~09/01/2002~ -~11529~^~315~^0.114^70^0.013^~6~^~JA~^^^8^0.069^0.939^63^0.087^0.141^~4~^~09/01/2002~ -~11529~^~404~^0.037^19^0.004^~6~^~JA~^^^3^0.020^0.060^12^0.029^0.045^~4~^~09/01/2002~ -~11529~^~405~^0.019^19^0.001^~6~^~JA~^^^3^0.012^0.028^12^0.016^0.022^~4~^~09/01/2002~ -~11529~^~406~^0.594^19^0.032^~6~^~JA~^^^3^0.445^0.819^12^0.524^0.664^~4~^~09/01/2002~ -~11529~^~410~^0.089^11^0.014^~6~^~JA~^^^3^0.041^0.190^3^0.046^0.132^~2, 3~^~09/01/2002~ -~11529~^~415~^0.080^19^0.003^~6~^~JA~^^^3^0.060^0.097^12^0.073^0.087^~4~^~09/01/2002~ -~11529~^~501~^0.006^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~502~^0.027^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~503~^0.018^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~504~^0.025^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~505~^0.027^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~506~^0.006^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~507~^0.009^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~508~^0.027^0^^~6~^~JA~^^^^^^^^^^~08/01/2010~ -~11529~^~509~^0.014^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~510~^0.018^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~511~^0.021^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~512~^0.014^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~513~^0.027^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~514~^0.135^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~515~^0.431^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~516~^0.019^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~517~^0.015^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~518~^0.026^0^^~6~^~JA~^^^^^^^^^^~03/01/2006~ -~11529~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~11529~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~612~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~613~^0.020^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~614~^0.008^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~617~^0.030^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~618~^0.080^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~619~^0.003^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/2010~ -~11529~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~628~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11529~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11529~^~646~^0.083^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11530~^~312~^0.075^4^0.000^~1~^~A~^^^1^0.075^0.075^3^0.075^0.075^~4~^~10/01/2002~ -~11530~^~315~^0.105^4^0.014^~1~^~A~^^^1^0.075^0.139^3^0.061^0.149^~4~^~10/01/2002~ -~11530~^~404~^0.036^4^0.002^~1~^~A~^^^1^0.032^0.040^3^0.031^0.041^~4~^~10/01/2002~ -~11530~^~405~^0.022^4^0.001^~1~^~A~^^^1^0.018^0.024^3^0.018^0.027^~4~^~10/01/2002~ -~11530~^~406~^0.532^4^0.039^~1~^~A~^^^1^0.460^0.615^3^0.408^0.656^~4~^~10/01/2002~ -~11530~^~410~^0.129^4^0.051^~1~^~A~^^^1^0.041^0.262^3^-0.034^0.293^~4~^~10/01/2002~ -~11530~^~415~^0.079^4^0.005^~1~^~A~^^^1^0.064^0.090^3^0.062^0.097^~4~^~10/01/2002~ -~11530~^~501~^0.008^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~502~^0.027^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~503~^0.026^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~504~^0.039^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~505~^0.039^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~506~^0.009^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~507~^0.014^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~508~^0.028^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~509~^0.018^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~510~^0.027^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~511~^0.026^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~512~^0.016^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~513~^0.030^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~514~^0.148^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~515~^0.393^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~516~^0.026^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~517~^0.020^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~518~^0.028^0^^~1~^^^^^^^^^^^~05/01/2003~ -~11530~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11530~^~606~^0.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~613~^0.011^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~614~^0.004^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~617~^0.016^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~618~^0.042^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~619~^0.002^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~626~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11530~^~645~^0.016^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11530~^~646~^0.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11531~^~312~^0.052^18^0.001^~1~^~A~^^^1^0.045^0.065^12^0.049^0.055^~2, 3~^~08/01/2014~ -~11531~^~315~^0.068^18^0.002^~1~^~A~^^^1^0.058^0.084^12^0.064^0.072^~2, 3~^~08/01/2014~ -~11531~^~404~^0.575^4^0.351^~1~^~A~^^^1^0.081^1.660^2^-0.935^2.085^~2, 3~^~04/01/2014~ -~11531~^~405~^0.055^4^0.004^~1~^~A~^^^1^0.047^0.063^2^0.040^0.071^~2, 3~^~03/01/2006~ -~11531~^~406~^0.712^4^0.004^~1~^~A~^^^1^0.707^0.723^2^0.697^0.727^~2, 3~^~03/01/2006~ -~11531~^~410~^0.117^3^0.002^~1~^~A~^^^1^0.111^0.127^1^0.090^0.145^~2, 3~^~04/01/2014~ -~11531~^~415~^0.111^3^0.003^~1~^~A~^^^1^0.107^0.116^1^0.069^0.153^~2, 3~^~03/01/2006~ -~11531~^~501~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~502~^0.042^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~503~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~504~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~505~^0.028^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~508~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~509~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~510~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~511~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~513~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~514~^0.153^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~515~^0.451^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~516~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~517~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~518~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11531~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11531~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~613~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~614~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~617~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~618~^0.097^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11531~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11531~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11531~^~646~^0.101^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11533~^~312~^0.112^27^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~315~^0.059^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11533~^~404~^0.046^233^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~405~^0.035^233^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~406~^0.714^227^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11533~^~410~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11533~^~415~^0.017^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11533~^~501~^0.007^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~502~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~503~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~504~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~505~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~506~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~507~^0.012^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~508~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~509~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~510~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~511~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~512~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~513~^0.027^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~514~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~515~^0.348^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~516~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~517~^0.017^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11533~^~518~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11533~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11533~^~606~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11533~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~613~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11533~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11533~^~617~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11533~^~618~^0.074^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11533~^~619~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11533~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11533~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11533~^~646~^0.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11537~^~312~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~315~^0.132^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11537~^~404~^0.034^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~405~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~406~^0.640^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~410~^0.148^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11537~^~415~^0.103^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11537~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11537~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~618~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11537~^~646~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11540~^~312~^0.042^12^0.002^~1~^~A~^^^1^0.032^0.054^7^0.038^0.046^~2, 3~^~08/01/2014~ -~11540~^~315~^0.068^12^0.002^~1~^~A~^^^1^0.058^0.078^9^0.064^0.071^~2, 3~^~08/01/2014~ -~11540~^~404~^0.100^3^0.012^~1~^~A~^^^1^0.080^0.120^2^0.050^0.150^~2, 3~^~04/01/2014~ -~11540~^~405~^0.078^3^0.003^~1~^~A~^^^1^0.075^0.083^2^0.066^0.089^~2, 3~^~04/01/2014~ -~11540~^~406~^0.673^3^0.019^~1~^~A~^^^1^0.650^0.710^2^0.593^0.753^~2, 3~^~08/01/1984~ -~11540~^~415~^0.070^3^0.006^~1~^~A~^^^1^0.060^0.080^2^0.045^0.095^~2, 3~^~04/01/2014~ -~11540~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11540~^~606~^0.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11540~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~612~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2014~ -~11540~^~613~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~08/01/2014~ -~11540~^~614~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2014~ -~11540~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~617~^0.005^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2014~ -~11540~^~618~^0.022^3^0.001^~1~^~AS~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~08/01/2014~ -~11540~^~619~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~08/01/2014~ -~11540~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~626~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/1984~ -~11540~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/1984~ -~11540~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~11540~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11540~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11540~^~646~^0.027^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11540~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2014~ -~11540~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~673~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~674~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2014~ -~11540~^~675~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~08/01/2014~ -~11540~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~11540~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11540~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~11540~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~851~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~08/01/2014~ -~11540~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11540~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~11546~^~312~^0.365^5^0.047^~1~^~A~^^^1^0.225^0.510^4^0.236^0.495^~2, 3~^~09/01/2002~ -~11546~^~315~^0.302^6^0.012^~1~^~A~^^^1^0.261^0.340^5^0.272^0.333^~2, 3~^~09/01/2002~ -~11546~^~404~^0.060^6^0.007^~1~^~A~^^^1^0.044^0.095^5^0.041^0.079^~2, 3~^~09/01/2002~ -~11546~^~405~^0.153^6^0.003^~1~^~A~^^^1^0.138^0.162^5^0.145^0.162^~2, 3~^~09/01/2002~ -~11546~^~406~^3.076^6^0.055^~1~^~A~^^^1^2.892^3.277^5^2.935^3.217^~2, 3~^~09/01/2002~ -~11546~^~410~^0.142^2^^~1~^~A~^^^1^0.141^0.143^1^^^^~09/01/2002~ -~11546~^~415~^0.216^6^0.010^~1~^~A~^^^1^0.179^0.254^5^0.190^0.242^~2, 3~^~09/01/2002~ -~11546~^~501~^0.031^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~502~^0.133^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~503~^0.089^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~504~^0.124^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~505~^0.134^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~506~^0.027^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~507~^0.046^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~508~^0.130^0^^~11~^~JO~^^^^^^^^^^~08/01/2010~ -~11546~^~509~^0.066^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~510~^0.088^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~511~^0.102^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~512~^0.071^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~513~^0.133^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~514~^0.661^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~515~^2.110^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~516~^0.095^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~517~^0.075^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~518~^0.126^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~11546~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11546~^~606~^0.100^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~613~^0.083^2^^~1~^~A~^^^1^0.103^0.106^1^^^^~08/01/2010~ -~11546~^~614~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~617~^0.064^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~618~^0.152^3^0.010^~1~^~A~^^^1^0.174^0.207^2^0.150^0.233^~2, 3~^~08/01/2010~ -~11546~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2010~ -~11546~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2006~ -~11546~^~645~^0.067^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11546~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11547~^~312~^0.287^6^0.037^~1~^~A~^^^1^0.202^0.433^5^0.193^0.381^~2, 3~^~09/01/2002~ -~11547~^~315~^0.169^6^0.012^~1~^~A~^^^1^0.132^0.204^5^0.138^0.201^~2, 3~^~09/01/2002~ -~11547~^~404~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.027^5^0.023^0.027^~2, 3~^~09/01/2002~ -~11547~^~405~^0.080^6^0.002^~1~^~A~^^^1^0.075^0.091^5^0.074^0.086^~2, 3~^~09/01/2002~ -~11547~^~406~^1.466^6^0.034^~1~^~A~^^^1^1.371^1.570^5^1.378^1.554^~2, 3~^~09/01/2002~ -~11547~^~410~^0.440^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11547~^~415~^0.126^6^0.004^~1~^~A~^^^1^0.111^0.139^5^0.114^0.137^~2, 3~^~09/01/2002~ -~11547~^~501~^0.011^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~502~^0.037^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~503~^0.031^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~504~^0.046^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~505~^0.048^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~506~^0.009^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~507~^0.010^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~508~^0.034^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~509~^0.021^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~510~^0.033^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~511~^0.032^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~512~^0.025^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~513~^0.052^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~514~^0.206^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~515~^0.658^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~516~^0.027^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~517~^0.036^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~518~^0.039^0^^~4~^~DI~^~11547~^^^^^^^^^~09/01/2002~ -~11547~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11547~^~606~^0.029^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~613~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~617~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~618~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11547~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11547~^~646~^0.086^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11548~^~312~^1.241^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~315~^1.951^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~404~^0.913^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~405~^0.761^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~406~^9.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~410~^3.760^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~415~^0.457^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~501~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~502~^0.295^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~503~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~504~^0.359^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~505~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~506~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~507~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~508~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~509~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~510~^0.264^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~511~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~512~^0.204^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~513~^0.405^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~514~^1.617^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~515~^5.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~516~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~517~^0.283^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~518~^0.308^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11548~^~606~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~614~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~617~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~618~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~645~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11548~^~646~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11549~^~312~^0.115^15^0.008^~1~^~A~^^^2^0.060^0.213^6^0.097^0.134^~2, 3~^~08/01/2014~ -~11549~^~315~^0.113^17^0.003^~1~^~A~^^^2^0.084^0.168^9^0.106^0.121^~2, 3~^~08/01/2014~ -~11549~^~404~^0.024^6^0.002^~1~^~A~^^^1^0.016^0.029^4^0.019^0.028^~2, 3~^~12/01/2002~ -~11549~^~405~^0.065^6^0.002^~1~^~A~^^^1^0.058^0.076^4^0.060^0.071^~2, 3~^~04/01/2014~ -~11549~^~406~^0.991^6^0.025^~1~^~A~^^^1^0.851^1.067^4^0.922^1.060^~2, 3~^~04/01/2014~ -~11549~^~410~^0.309^1^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~415~^0.098^6^0.003^~1~^~A~^^^1^0.082^0.104^4^0.091^0.106^~2, 3~^~04/01/2014~ -~11549~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~502~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~503~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~504~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~505~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~507~^0.014^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~508~^0.040^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11549~^~509~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~510~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~511~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~513~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~514~^0.202^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~515~^0.645^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~516~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~517~^0.023^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~518~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11549~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11549~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11549~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~613~^0.031^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~617~^0.043^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~618~^0.115^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11549~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/2008~ -~11549~^~645~^0.045^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11549~^~646~^0.121^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11551~^~312~^0.199^32^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~315~^0.188^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11551~^~404~^0.072^70^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~405~^0.108^70^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~406~^1.265^70^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~410~^0.367^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11551~^~415~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11551~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~502~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~503~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~504~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~508~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~513~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~514~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~515~^0.486^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~516~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~518~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11551~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~607~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~608~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~609~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~618~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~620~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~621~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~627~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~629~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~630~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~631~^0.000^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~ -~11551~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11551~^~646~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~312~^0.181^16^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~315~^0.301^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11553~^~404~^0.073^54^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~405~^0.133^54^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~406~^1.242^54^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~410~^0.368^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11553~^~415~^0.267^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11553~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~502~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~504~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~505~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~509~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~511~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~513~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~514~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~515~^0.454^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~516~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~517~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~518~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11553~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~617~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~618~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11553~^~646~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~312~^0.174^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~315~^0.188^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~404~^0.076^61^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~405~^0.124^57^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~406~^1.209^57^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~410~^0.275^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~415~^0.019^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11555~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~502~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~504~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~505~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~508~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~509~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~510~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~511~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~512~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~514~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~515~^0.639^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~516~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~517~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~518~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11555~^~606~^0.627^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~607~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~608~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~609~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~610~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~611~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~612~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~613~^0.456^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~614~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~617~^0.351^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~618~^0.814^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~626~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~645~^0.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11555~^~646~^0.825^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~312~^0.198^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~315~^0.244^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~404~^0.067^28^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~405~^0.120^28^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~406~^1.095^28^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~410~^0.221^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~415~^0.194^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11557~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~503~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~504~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~508~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~509~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~510~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~512~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~513~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~515~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~516~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11557~^~606~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~613~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~614~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~617~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~618~^0.321^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11557~^~645~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11557~^~646~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~312~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~315~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~404~^0.073^27^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~405~^0.097^27^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~406~^1.183^27^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~410~^0.219^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11559~^~415~^0.155^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11559~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~502~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~504~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~505~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~510~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~511~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~513~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~514~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~515~^0.530^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~517~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11559~^~606~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~617~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~618~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~645~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11559~^~646~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~312~^0.202^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~315~^0.539^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~405~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~406~^3.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11563~^~410~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~415~^0.179^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11563~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11563~^~606~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~613~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~617~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~618~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~619~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~645~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11563~^~646~^0.034^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11564~^~312~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11564~^~315~^0.134^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11564~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~410~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~415~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~501~^0.009^32^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~502~^0.025^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~503~^0.036^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~504~^0.033^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~505~^0.036^36^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~506~^0.011^36^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~507~^0.005^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~508~^0.017^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~509~^0.013^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~510~^0.030^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~511~^0.024^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~512~^0.014^35^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~513~^0.035^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~514~^0.063^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~515~^0.130^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~516~^0.025^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~517~^0.026^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~518~^0.029^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11564~^~606~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~613~^0.010^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~614~^0.001^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~617~^0.006^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~618~^0.012^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~619~^0.040^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~626~^0.001^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11564~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11564~^~646~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~312~^0.002^18^0.002^~1~^~A~^^^7^0.000^0.030^17^-0.002^0.005^~4~^~12/01/2002~ -~11565~^~315~^0.071^18^0.005^~1~^~A~^^^7^0.043^0.101^17^0.062^0.081^~4~^~12/01/2002~ -~11565~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~406~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~410~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~415~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~504~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~505~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~510~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~511~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~514~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~515~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~518~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11565~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~618~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11565~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11565~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~312~^0.045^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~315~^0.071^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~404~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~406~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~410~^0.106^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~415~^0.048^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11566~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~502~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~504~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~509~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~511~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~513~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~514~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~515~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~517~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~518~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11566~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~619~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11566~^~646~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~312~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~315~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~404~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~406~^0.560^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~410~^0.141^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~415~^0.067^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11567~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~502~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~503~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~504~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~505~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~510~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~511~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~512~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~513~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~515~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~516~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~517~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~518~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11567~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~618~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~619~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11567~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11567~^~646~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~312~^0.350^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~315~^0.466^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~404~^0.070^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~406~^0.600^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~410~^0.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~415~^0.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~501~^0.026^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~502~^0.082^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~503~^0.078^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~504~^0.137^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~505~^0.098^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~506~^0.034^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~507~^0.017^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~508~^0.092^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~509~^0.058^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~510~^0.102^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~511~^0.094^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~512~^0.036^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~513~^0.103^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~514~^0.158^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~515~^0.204^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~516~^0.090^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~517~^0.071^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~518~^0.061^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11568~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11568~^~606~^0.070^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~609~^0.001^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~610~^0.002^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~611~^0.002^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~612~^0.003^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~613~^0.054^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~614~^0.010^1^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~617~^0.005^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~618~^0.036^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~619~^0.084^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~621~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~626~^0.014^1^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~627~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~628~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~629~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~630~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~631~^0.000^0^^~1~^^^^^^^^^^^~09/01/2003~ -~11568~^~645~^0.020^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11568~^~646~^0.120^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11569~^~312~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~315~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~404~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~405~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~406~^0.411^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~410~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~502~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~503~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~504~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~508~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~510~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~511~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~513~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~514~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~515~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~516~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~517~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11569~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~618~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~619~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~626~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11569~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11569~^~646~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~312~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~315~^0.277^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~404~^0.012^5^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~405~^0.063^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~406~^0.362^4^0.037^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~410~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~415~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~502~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~504~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~505~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~508~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~510~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~511~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~513~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~514~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~515~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~516~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~517~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~518~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11570~^~606~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~613~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~618~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~619~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~626~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11570~^~646~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~312~^0.057^3^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~315~^0.369^3^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~404~^0.044^13^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~405~^0.091^13^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~406~^0.383^13^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~410~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~415~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~501~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~502~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~503~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~504~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~505~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~506~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~507~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~508~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~509~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~510~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~511~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~512~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~513~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~514~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~515~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~516~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~517~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~518~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11574~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~619~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~626~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11574~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11574~^~646~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~312~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~315~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~404~^0.054^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~405~^0.074^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~406~^0.468^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~415~^0.067^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~502~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~503~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~505~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~506~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~507~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~508~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~509~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~510~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~511~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~512~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~513~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~514~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~515~^0.457^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~516~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~518~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11575~^~606~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~618~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~619~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~626~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11575~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11575~^~646~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~312~^0.051^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~315~^0.220^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~404~^0.044^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~405~^0.088^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~406~^0.388^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~410~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~415~^0.074^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11576~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~503~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~504~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~508~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~509~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~510~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~511~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~512~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~514~^0.234^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~515~^0.341^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~516~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~517~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~518~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11576~^~606~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~619~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11576~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11577~^~312~^0.133^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~315~^0.400^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~404~^0.050^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~405~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~406~^0.486^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~410~^0.083^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~415~^0.067^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~501~^0.049^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~502~^0.156^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~503~^0.151^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~504~^0.257^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~505~^0.187^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~506~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~507~^0.032^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~508~^0.171^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~509~^0.109^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~510~^0.193^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~511~^0.176^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~512~^0.070^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~513~^0.195^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~514~^0.304^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~515~^0.410^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~516~^0.169^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~517~^0.135^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~518~^0.119^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11577~^~606~^0.085^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~609~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~610~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~612~^0.003^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~613~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~614~^0.012^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~617~^0.008^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~618~^0.046^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~619~^0.114^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~626~^0.016^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~645~^0.024^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11577~^~646~^0.160^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11578~^~312~^0.068^11^0.001^~1~^~A~^^^1^0.054^0.072^7^0.066^0.070^~2, 3~^~04/01/2013~ -~11578~^~315~^0.080^11^0.001^~1~^~A~^^^1^0.055^0.091^5^0.078^0.082^~2, 3~^~04/01/2013~ -~11578~^~404~^0.050^6^0.002^~1~^~A~^^^1^0.040^0.060^2^0.039^0.061^~2, 3~^~04/01/2013~ -~11578~^~405~^0.033^6^0.003^~1~^~A~^^^1^0.030^0.040^2^0.024^0.043^~2, 3~^~04/01/2013~ -~11578~^~406~^0.722^6^0.023^~1~^~A~^^^1^0.660^0.760^2^0.628^0.816^~2, 3~^~04/01/2013~ -~11578~^~410~^0.249^4^0.008^~1~^~A~^^^1^0.240^0.260^1^0.163^0.334^~2, 3~^~04/01/2013~ -~11578~^~415~^0.071^6^0.003^~1~^~A~^^^1^0.060^0.080^3^0.061^0.080^~2, 3~^~04/01/2013~ -~11578~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~502~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~503~^0.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~504~^0.027^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~505~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~508~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~510~^0.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~511~^0.022^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~513~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~514~^0.142^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~515~^0.455^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~516~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~517~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~518~^0.027^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11578~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11578~^~606~^0.088^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11578~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/1984~ -~11578~^~613~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11578~^~614~^0.021^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11578~^~615~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~11578~^~617~^0.060^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~11578~^~618~^0.064^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~11578~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~11578~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/1984~ -~11578~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/1984~ -~11578~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~11578~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~11578~^~645~^0.060^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11578~^~646~^0.076^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11578~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~674~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11578~^~675~^0.064^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11578~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11578~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11578~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11578~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~11578~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11578~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11579~^~312~^0.104^18^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~315~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~404~^0.034^56^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~405~^0.040^56^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~406~^0.482^77^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~410~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~415~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~502~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~504~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~508~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~509~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~510~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~511~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~512~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~514~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~517~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~518~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11579~^~606~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~617~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~618~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11579~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11579~^~646~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~312~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~315~^0.568^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11581~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~405~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~406~^0.577^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~410~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~415~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~502~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~503~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~504~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~505~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~508~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~509~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~510~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~511~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~513~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~514~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~515~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~516~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~517~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~518~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11581~^~606~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~617~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~618~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11581~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11581~^~646~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~312~^0.093^13^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~315~^0.244^8^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~404~^0.122^36^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~405~^0.085^36^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~406~^1.252^36^0.050^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~410~^0.163^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~415~^0.096^21^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~502~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~503~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~504~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~505~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~508~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~509~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~511~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~512~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~513~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~514~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~515~^0.455^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~516~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~517~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11583~^~606~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~611~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~613~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~614~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~617~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~618~^0.173^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~619~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~11583~^~645~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11583~^~646~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~312~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~315~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~404~^0.071^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~405~^0.120^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~406~^0.851^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~410~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~415~^0.074^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~503~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~504~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~505~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~506~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~507~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~508~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~509~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~510~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~511~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~512~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~513~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~514~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~515~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~518~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11584~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~618~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11584~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11584~^~646~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11585~^~312~^0.068^13^0.006^~1~^~A~^^^1^0.060^0.071^1^-0.012^0.148^~4~^~04/01/2013~ -~11585~^~315~^0.079^13^0.013^~1~^~A~^^^1^0.061^0.085^1^-0.090^0.248^~4~^~04/01/2013~ -~11585~^~404~^0.050^6^0.007^~1~^~A~^^^1^0.040^0.053^1^-0.045^0.145^~4~^~04/01/2013~ -~11585~^~405~^0.033^6^0.000^~1~^~A~^^^1^0.033^0.033^1^0.033^0.033^~4~^~04/01/2013~ -~11585~^~406~^0.722^6^0.004^~1~^~A~^^^1^0.720^0.727^1^0.675^0.769^~4~^~04/01/2013~ -~11585~^~410~^0.249^4^0.003^~1~^~A~^^^1^0.245^0.250^1^0.214^0.284^~4~^~04/01/2013~ -~11585~^~415~^0.071^6^0.006^~1~^~A~^^^1^0.063^0.073^1^0.000^0.142^~4~^~04/01/2013~ -~11585~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~502~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~503~^0.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~504~^0.026^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~505~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~508~^0.027^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~509~^0.014^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~510~^0.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~511~^0.021^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~513~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~514~^0.139^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~515~^0.445^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~516~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~517~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~518~^0.027^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~606~^0.089^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~613~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~614~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~615~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~617~^0.061^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~618~^0.065^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~645~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11585~^~646~^0.077^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~11585~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~674~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~675~^0.065^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~11585~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11585~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~11585~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11585~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~11587~^~312~^0.107^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~315~^0.735^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~405~^0.155^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~415~^0.240^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11587~^~501~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~502~^0.055^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~503~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~504~^0.101^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~505~^0.086^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~506~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~507~^0.027^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~508~^0.085^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~509~^0.048^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~510~^0.065^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~511~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~512~^0.039^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~513~^0.075^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~514~^0.108^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~515~^0.283^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~516~^0.067^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~517~^0.070^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~518~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11587~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11588~^~312~^0.326^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~315~^0.331^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~404~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~405~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~406~^1.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11588~^~410~^0.479^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~415~^0.328^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11588~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11588~^~606~^0.026^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~611~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~613~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~617~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~618~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~619~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~645~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11588~^~646~^0.043^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~312~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~315~^0.161^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11590~^~404~^0.011^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~405~^0.024^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~406~^0.360^6^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11590~^~410~^0.221^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11590~^~415~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11590~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11590~^~606~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~611~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~613~^0.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~617~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~618~^0.019^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~619~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~645~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11590~^~646~^0.026^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11591~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11591~^~315~^0.244^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11591~^~404~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~406~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~410~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~415~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~501~^0.030^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~502~^0.133^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~503~^0.093^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~504~^0.166^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~505~^0.134^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~506~^0.020^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~507~^0.007^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~508~^0.114^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~509~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~510~^0.137^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~511~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~512~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~513~^0.137^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~514~^0.187^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~515~^0.190^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~516~^0.112^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~517~^0.096^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~518~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11591~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~613~^0.024^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~614~^0.003^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~617~^0.006^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~618~^0.012^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~619~^0.023^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~626~^0.002^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11591~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11591~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~312~^0.023^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~315~^0.058^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~405~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~406~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~410~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~415~^0.035^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11593~^~501~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~505~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~506~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11593~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~618~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11593~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~312~^0.022^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~315~^0.056^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~405~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~406~^0.384^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~410~^0.121^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~415~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11594~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~505~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11594~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~618~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11594~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11594~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~312~^0.051^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11595~^~315~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11595~^~404~^0.140^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~406~^0.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~410~^0.059^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11595~^~415~^0.113^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11595~^~606~^0.238^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~613~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~614~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~617~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~618~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~630~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~645~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11595~^~646~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~312~^0.037^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~315~^0.158^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~404~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~405~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~406~^0.652^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~410~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11596~^~415~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11596~^~606~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~613~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~614~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~617~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~618~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~645~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11596~^~646~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~312~^0.456^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~315~^1.367^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~404~^0.833^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~405~^0.602^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~406~^3.472^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~410~^0.136^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~415~^0.232^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11597~^~501~^0.116^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~502~^0.182^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~503~^0.204^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~504~^0.359^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~505~^0.228^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~506~^0.064^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~507~^0.075^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~508~^0.188^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~509~^0.126^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~510~^0.245^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~511~^0.178^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~512~^0.082^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~513~^0.172^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~514~^0.517^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~515~^0.389^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~516~^0.149^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~517~^0.168^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~518~^0.149^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11597~^~606~^0.272^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~614~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~617~^0.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~618~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~630~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~645~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11597~^~646~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~312~^1.386^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~315~^0.532^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~404~^0.379^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~405~^0.149^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~406~^1.640^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~410~^0.116^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~415~^0.075^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11599~^~501~^0.252^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~502~^0.451^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~503~^0.425^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~504~^0.640^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~505~^0.592^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~506~^0.143^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~507~^0.197^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~508~^0.451^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~509~^0.353^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~510~^0.599^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~511~^0.412^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~512~^0.241^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~513~^0.397^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~514~^1.735^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~515~^0.800^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~516~^0.390^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~517~^0.679^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~518~^0.464^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11599~^~606~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~614~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~617~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~618~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~619~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~645~^0.234^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11599~^~646~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~312~^0.178^6^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~315~^0.397^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11601~^~404~^0.112^6^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~405~^0.032^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~406~^0.552^6^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~410~^0.314^6^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~415~^0.293^6^0.040^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~501~^0.012^40^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~502~^0.054^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~503~^0.052^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~504~^0.096^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~505~^0.059^74^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~506~^0.021^73^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~507~^0.019^16^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~508~^0.071^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~509~^0.040^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~510~^0.062^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~511~^0.127^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~512~^0.034^72^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~513~^0.063^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~514~^0.155^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~515~^0.181^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~516~^0.053^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~517~^0.054^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~518~^0.081^71^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11601~^~606~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~613~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~618~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~619~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11601~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11601~^~646~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~312~^0.152^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~315~^0.371^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11602~^~404~^0.095^6^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~405~^0.028^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~406~^0.552^6^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~410~^0.311^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~415~^0.228^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~502~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~503~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~505~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~509~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~510~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~511~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~514~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~515~^0.176^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~518~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11602~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~618~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11602~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11602~^~646~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~312~^0.048^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~315~^0.060^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~404~^0.020^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~405~^0.029^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~406~^0.200^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~410~^0.135^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~415~^0.042^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~505~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~508~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~514~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~515~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~518~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11603~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11603~^~606~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~617~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~618~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~619~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~645~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11603~^~646~^0.043^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11604~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~315~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~404~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~406~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~410~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~505~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~508~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~514~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~515~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~518~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11604~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11605~^~312~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~315~^0.241^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~404~^0.010^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~405~^0.050^20^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~406~^0.084^29^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~410~^0.150^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~415~^0.055^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11605~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~511~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~513~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~514~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~515~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~518~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11605~^~606~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11605~^~646~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~312~^0.116^38^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~315~^0.220^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11609~^~404~^0.010^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11609~^~405~^0.048^51^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~406~^0.251^58^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~410~^0.137^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11609~^~415~^0.050^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11609~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~503~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~505~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~510~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~513~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~514~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~515~^0.212^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~516~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~518~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11609~^~606~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~607~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~608~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~609~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~610~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~611~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~612~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~613~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~620~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~621~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~626~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~627~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~628~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~629~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~630~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~631~^0.000^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~ -~11609~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11609~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~312~^0.130^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~315~^0.349^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~404~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~405~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~406~^0.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~410~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~415~^0.084^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11613~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11613~^~606~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~613~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~614~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~618~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~626~^0.191^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~630~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~645~^0.211^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11613~^~646~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~312~^0.143^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~315~^0.385^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~405~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~406~^0.940^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~410~^0.045^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~415~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11614~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11614~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~613~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~614~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~618~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~626~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~630~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~645~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11614~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~312~^0.686^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~315~^1.350^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~404~^0.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~405~^1.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~406~^5.900^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~410~^2.106^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~415~^1.996^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11615~^~501~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~502~^0.831^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~503~^0.899^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~504~^1.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~505~^1.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~506~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~508~^0.682^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~509~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~510~^0.936^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~511~^1.533^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~512~^0.366^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~513~^0.957^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~514~^1.961^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~515~^4.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~516~^1.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~517~^1.401^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~518~^0.957^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11615~^~606~^0.591^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~607~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~608~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~612~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~613~^0.528^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~614~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~617~^0.490^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~618~^1.296^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~619~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~620~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~11615~^~626~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~627~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~628~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~11615~^~630~^0.000^0^^~1~^^^^^^^^^^^~11/01/1993~ -~11615~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~11615~^~645~^0.490^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11615~^~646~^1.369^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~312~^0.131^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~315~^0.349^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~404~^0.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~410~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~415~^0.122^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11616~^~502~^0.094^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~503~^0.102^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~504~^0.167^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~505~^0.115^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~506~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~508~^0.114^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~509~^0.083^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~510~^0.133^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~511~^0.108^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~512~^0.054^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~513~^0.132^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~514~^0.181^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~515~^0.216^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~516~^0.114^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~517~^0.116^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~518~^0.077^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11616~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11617~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~315~^0.303^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~405~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~406~^0.411^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~410~^0.036^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~415~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11617~^~502~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~503~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~504~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~505~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~508~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~509~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~510~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~512~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~513~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~514~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~515~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~517~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~518~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11617~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11618~^~312~^0.234^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~315~^1.094^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~404~^0.110^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11618~^~410~^1.172^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~415~^0.176^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11618~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11620~^~312~^0.084^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~315~^0.259^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~404~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~405~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~406~^0.620^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~410~^0.794^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11620~^~415~^0.120^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11620~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11620~^~606~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1995~ -~11620~^~645~^0.102^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1995~ -~11620~^~646~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1995~ -~11621~^~312~^0.078^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~315~^0.241^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~405~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~406~^0.590^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11621~^~410~^0.701^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~415~^0.112^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11621~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11621~^~606~^0.031^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~613~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~614~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~617~^0.097^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~618~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~645~^0.097^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11621~^~646~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11624~^~312~^0.657^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~315~^2.634^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~404~^0.800^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~405~^0.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~406~^3.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~410~^0.767^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~415~^1.209^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11624~^~501~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~502~^0.640^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~503~^0.525^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~504~^0.973^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~505~^0.786^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~506~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~507~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~508~^0.559^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~509~^0.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~510~^0.572^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~511~^0.790^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~512~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~513~^0.749^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~514~^1.420^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~515~^2.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~516~^0.698^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~517~^0.674^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~518~^0.936^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11624~^~606~^0.279^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~613~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~614~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~617~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~618~^0.470^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~619~^0.691^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~645~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11624~^~646~^1.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~312~^0.459^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~315~^1.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~404~^1.040^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~405~^2.260^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~406~^10.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~410~^2.516^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~415~^1.375^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~501~^0.516^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~505~^3.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~506~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11625~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11626~^~312~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~315~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~404~^0.030^5^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~405~^0.070^5^0.040^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~406~^0.220^5^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~410~^0.143^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11626~^~415~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11626~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~503~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~504~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~508~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~509~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~510~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~511~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~512~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~513~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~514~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~515~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~516~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~518~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11626~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~618~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11626~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11626~^~646~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11632~^~312~^0.146^3^0.007^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~315~^0.114^3^0.032^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~404~^0.043^3^0.006^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~405~^0.038^3^0.006^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~406~^0.403^3^0.084^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~410~^0.416^3^0.271^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~415~^0.190^3^0.031^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11632~^~501~^0.012^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~502~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~503~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~504~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~505~^0.042^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~506~^0.012^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~507~^0.017^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~508~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~509~^0.020^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~510~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~511~^0.044^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~512~^0.018^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~513~^0.038^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~514~^0.132^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~515~^0.122^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~516~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~517~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~518~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11632~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11632~^~606~^0.097^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~612~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~613~^0.072^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~614~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~617~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~618~^0.490^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~619~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~11632~^~645~^0.053^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11632~^~646~^0.514^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11637~^~312~^0.099^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11637~^~315~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11637~^~404~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~410~^0.184^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~415~^0.075^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~502~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~509~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~510~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~511~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~514~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~515~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~518~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11637~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~613~^0.026^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~614~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~617~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~618~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~619~^0.029^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11637~^~646~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~312~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~315~^1.417^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~404~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~406~^1.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~410~^1.408^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~415~^1.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~501~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~502~^0.482^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~503~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~504~^0.734^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~505~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~506~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~508~^0.396^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~509~^0.356^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~510~^0.543^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~511~^0.890^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~512~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~513~^0.555^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~514~^1.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~515~^2.545^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~516~^0.610^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~517~^0.813^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~518~^0.555^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11640~^~606~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~607~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~608~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~609~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~610~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~611~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~613~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~617~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~618~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~620~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~621~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~626~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~627~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~628~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~629~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~630~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~631~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11640~^~645~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11640~^~646~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~312~^0.051^6^0.001^~1~^^^^2^0.046^0.055^3^0.046^0.055^~2, 3~^~01/01/2003~ -~11641~^~315~^0.175^6^0.023^~1~^^^^2^0.114^0.255^2^0.068^0.281^~2, 3~^~01/01/2003~ -~11641~^~404~^0.048^6^0.002^~1~^^^^2^0.034^0.060^3^0.042^0.054^~2, 3~^~01/01/2003~ -~11641~^~405~^0.142^6^0.092^~1~^^^^2^0.040^0.600^3^-0.150^0.433^~2, 3~^~01/01/2003~ -~11641~^~406~^0.487^6^0.027^~1~^^^^2^0.400^0.540^4^0.410^0.564^~2, 3~^~01/01/2003~ -~11641~^~410~^0.155^6^0.016^~1~^^^^2^0.098^0.220^3^0.108^0.203^~2, 3~^~01/01/2003~ -~11641~^~415~^0.218^5^0.145^~1~^^^^2^0.060^0.800^3^-0.245^0.681^~2, 3~^~01/01/2003~ -~11641~^~501~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~502~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~503~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~504~^0.069^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~505~^0.065^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~506~^0.017^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~507~^0.012^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~508~^0.041^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~509~^0.031^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~510~^0.053^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~511~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~512~^0.025^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~513~^0.062^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~514~^0.144^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~515~^0.126^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~516~^0.044^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~517~^0.037^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~518~^0.048^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11641~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~613~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~618~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~619~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11641~^~645~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11641~^~646~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~312~^0.103^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~315~^0.213^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~404~^0.044^9^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~405~^0.041^9^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~406~^0.513^6^0.044^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~410~^0.137^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~415~^0.065^9^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~504~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~505~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~508~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~511~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~513~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~514~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~515~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11642~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~618~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~619~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11642~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11642~^~646~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~312~^0.071^4^0.009^~1~^^^^1^0.050^0.090^3^0.043^0.099^~4~^~01/01/2003~ -~11643~^~315~^0.163^3^0.035^~1~^^^^1^0.110^0.230^2^0.012^0.315^~4~^~01/01/2003~ -~11643~^~404~^0.030^5^0.007^~1~^^^^1^0.005^0.040^4^0.012^0.048^~4~^~01/01/2003~ -~11643~^~405~^0.062^5^0.002^~1~^^^^1^0.056^0.070^4^0.056^0.069^~4~^~01/01/2003~ -~11643~^~406~^0.500^5^0.053^~1~^^^^1^0.300^0.610^4^0.353^0.647^~4~^~01/01/2003~ -~11643~^~410~^0.188^3^0.023^~1~^^^^1^0.152^0.232^2^0.087^0.289^~4~^~01/01/2003~ -~11643~^~415~^0.156^3^0.006^~1~^^^^1^0.146^0.168^2^0.129^0.184^~4~^~01/01/2003~ -~11643~^~501~^0.021^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~502~^0.043^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~503~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~504~^0.082^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~505~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~506~^0.018^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~507~^0.013^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~508~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~509~^0.049^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~510~^0.062^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~511~^0.081^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~512~^0.027^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~513~^0.061^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~514~^0.156^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~515~^0.254^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~516~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~517~^0.052^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~518~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11643~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11643~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~611~^0.001^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~612~^0.001^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~613~^0.024^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~614~^0.002^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~617~^0.010^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~618~^0.021^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~619~^0.035^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~626~^0.001^3^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11643~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11643~^~646~^0.056^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11644~^~312~^0.082^9^0.016^~1~^^^^2^0.050^0.100^2^0.013^0.150^~4~^~03/01/2006~ -~11644~^~315~^0.187^9^0.023^~1~^^^^2^0.140^0.211^2^0.086^0.288^~4~^~03/01/2006~ -~11644~^~404~^0.016^2^^~1~^^^^1^0.004^0.028^1^^^^~01/01/2003~ -~11644~^~405~^0.067^2^^~1~^^^^1^0.065^0.068^1^^^^~01/01/2003~ -~11644~^~406~^0.495^2^^~1~^^^^1^0.470^0.520^1^^^^~01/01/2003~ -~11644~^~410~^0.234^2^^~1~^^^^1^0.207^0.260^1^^^^~01/01/2003~ -~11644~^~415~^0.161^2^^~1~^^^^1^0.136^0.185^1^^^^~01/01/2003~ -~11644~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~504~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~511~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~514~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~515~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11644~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11644~^~606~^0.072^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~611~^0.002^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~612~^0.001^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~613~^0.062^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~617~^0.024^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~618~^0.055^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~619~^0.092^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~626~^0.002^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11644~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11644~^~646~^0.147^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11645~^~312~^0.124^36^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~315~^0.507^36^0.051^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~404~^0.024^25^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~405~^0.046^24^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~406~^0.456^25^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~410~^0.330^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~415~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11645~^~501~^0.020^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~502~^0.052^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~503~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~504~^0.057^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~505~^0.041^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~506~^0.018^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~507~^0.013^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~508~^0.056^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~509~^0.021^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~510~^0.054^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~511~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~512~^0.019^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~513~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~514~^0.238^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~515~^0.097^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~516~^0.039^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~517~^0.033^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~518~^0.055^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11645~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11645~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11645~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~613~^0.037^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11645~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~617~^0.008^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~618~^0.071^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11645~^~619~^0.013^0^^~1~^^^^^^^^^^^~04/01/2013~ -~11645~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11645~^~645~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11645~^~646~^0.084^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11647~^~312~^0.167^10^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~315~^0.615^10^0.094^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~404~^0.025^29^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~405~^0.038^29^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~406~^0.340^29^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~410~^0.402^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~415~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~502~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~503~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~505~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~508~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~510~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~511~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~512~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~513~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~514~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~515~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~516~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~517~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~518~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11647~^~606~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~618~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11647~^~646~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~312~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~315~^0.216^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~404~^0.074^5^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~405~^0.062^5^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~406~^1.292^5^0.092^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~410~^0.281^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~415~^0.177^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11649~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~504~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~511~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~513~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~514~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~515~^0.575^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11649~^~606~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~618~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~645~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11649~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~312~^0.320^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11653~^~315~^0.366^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11653~^~404~^0.230^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~405~^0.175^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~406~^2.280^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~410~^0.740^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11653~^~415~^0.171^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11653~^~501~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~502~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~503~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~504~^0.377^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~505~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~506~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~507~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~508~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~509~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~510~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~511~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~512~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~513~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~514~^0.682^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~515~^0.640^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~516~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~517~^0.212^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~518~^0.281^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11653~^~606~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~613~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~617~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~618~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~619~^0.334^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~645~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11653~^~646~^0.523^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~312~^0.107^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11654~^~315~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11654~^~404~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~405~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~406~^0.725^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~410~^0.235^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11654~^~415~^0.054^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11654~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~502~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~503~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~504~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~505~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~510~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~511~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~512~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~513~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~514~^0.241^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~515~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~516~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~517~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11654~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~613~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~618~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~619~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11654~^~646~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~315~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~404~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~405~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~406~^0.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~410~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~415~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11655~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~618~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11655~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11655~^~646~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11656~^~312~^0.043^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~315~^0.079^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~404~^0.069^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~405~^0.154^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~406~^1.033^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~415~^0.127^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~501~^0.059^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~502~^0.169^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~503~^0.195^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~504~^0.438^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~505~^0.330^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~506~^0.114^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~507~^0.071^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~508~^0.216^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~509~^0.177^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~510~^0.255^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~511~^0.212^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~512~^0.110^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~513~^0.271^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~514~^0.376^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~515~^0.743^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~516~^0.144^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~517~^0.371^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~518~^0.266^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~605~^0.093^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~606~^2.451^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~607~^0.110^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~608~^0.075^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~609~^0.052^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~610~^0.091^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~611~^0.093^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~612~^0.289^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~613~^1.219^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~614~^0.495^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~617~^1.419^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~618~^0.484^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~619~^0.038^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~620~^0.021^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~621~^0.006^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~626~^0.072^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~628~^0.007^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~629~^0.001^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~ -~11656~^~645~^1.499^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~646~^0.550^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~693~^0.085^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11656~^~695~^0.008^0^^~4~^~RC~^^^^^^^^^^~07/01/2013~ -~11657~^~312~^0.145^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~315~^0.119^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~404~^0.089^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~405~^0.041^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~406~^1.118^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~410~^0.485^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~415~^0.232^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~501~^0.029^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~502~^0.072^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~503~^0.083^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~504~^0.132^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~505~^0.127^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~506~^0.035^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~507~^0.021^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~ -~11657~^~508~^0.089^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~509~^0.078^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~510~^0.112^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~511~^0.080^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~512~^0.046^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~513~^0.061^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~514~^0.393^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~515~^0.348^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~516~^0.052^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~517~^0.099^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~518~^0.092^0^^~4~^~RA~^^^^^^^^^^~08/01/2011~ -~11657~^~606~^0.302^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~607~^0.011^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~608~^0.011^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~609~^0.011^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~610~^0.012^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~611~^0.014^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~612~^0.046^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~613~^0.138^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~614~^0.058^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~617~^0.123^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~618~^0.045^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~619~^0.020^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~626~^0.001^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~645~^0.124^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~646~^0.065^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11657~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~ -~11658~^~312~^0.059^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~315~^0.269^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~404~^0.082^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~405~^0.263^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~406~^0.479^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~410~^0.438^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~415~^0.098^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~501~^0.108^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~502~^0.308^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~503~^0.450^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~504~^0.708^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~505~^0.558^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~506~^0.207^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~507~^0.095^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~508~^0.406^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~509~^0.350^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~510~^0.505^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~511~^0.366^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~512~^0.229^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~513~^0.323^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~514~^0.627^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~515~^1.556^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~516~^0.216^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~517~^0.646^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~518~^0.467^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11658~^~605~^0.188^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~606~^6.091^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~607~^0.314^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~608~^0.189^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~609~^0.116^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~610~^0.227^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~611~^0.224^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~612~^0.858^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~613~^2.890^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~614~^1.225^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~615~^0.010^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~617~^2.793^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~618~^0.467^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~619~^0.111^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~620~^0.025^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~621~^0.007^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~624~^0.002^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~626~^0.215^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~628~^0.011^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~629~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~645~^3.021^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~646~^0.610^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~653~^0.035^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11658~^~693~^0.171^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~695~^0.017^0^^~4~^~RA~^^^^^^^^^^~06/01/2014~ -~11658~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~11659~^~312~^0.113^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~315~^0.442^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~404~^0.021^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~405~^0.041^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~406~^0.406^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~410~^0.305^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~415~^0.050^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~501~^0.017^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~502~^0.046^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~503~^0.031^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~504~^0.052^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~505~^0.038^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~506~^0.016^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~507~^0.012^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~508~^0.049^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~509~^0.020^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~510~^0.048^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~511~^0.031^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~512~^0.017^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~513~^0.042^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~514~^0.206^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~515~^0.090^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~516~^0.034^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~517~^0.031^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~518~^0.049^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~605~^0.136^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~606~^2.171^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~607~^0.134^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~608~^0.083^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~609~^0.049^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~610~^0.105^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~611~^0.108^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~612~^0.309^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~613~^0.934^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~614~^0.419^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~615~^0.006^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~617~^0.837^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~618~^0.174^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~619~^0.024^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~626~^0.040^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~628~^0.004^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~645~^0.881^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~646~^0.198^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11659~^~653~^0.023^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~ -~11660~^~312~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~315~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~404~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~406~^1.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~410~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~415~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~502~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~503~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~504~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~505~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~508~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~509~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~510~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~511~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~512~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~514~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~515~^0.643^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~516~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~517~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~518~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11660~^~606~^0.521^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~612~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~613~^0.327^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~614~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~617~^1.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~618~^0.839^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~619~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~645~^1.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11660~^~646~^0.878^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~312~^0.610^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~315~^4.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~404~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~405~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~406~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~410~^3.018^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~415~^0.303^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11663~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11663~^~606~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~613~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~618~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~620~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~626~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~628~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~629~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11663~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11663~^~646~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~312~^0.597^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~315~^0.186^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11666~^~404~^0.222^4^0.095^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~405~^0.342^4^0.080^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~406~^1.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~410~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~415~^0.034^4^0.205^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~501~^0.096^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~502~^0.306^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~503~^0.331^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~504~^0.509^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~505~^0.312^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~506~^0.118^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~507~^0.068^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~508~^0.286^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~509~^0.266^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~510~^0.362^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~511~^0.427^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~512~^0.112^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~513~^0.465^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~514~^0.597^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~515~^0.864^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~516~^0.319^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~517~^0.245^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~518~^0.309^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11666~^~606~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~613~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~618~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~619~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~626~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~645~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11666~^~646~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~312~^6.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~315~^1.900^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11667~^~404~^2.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~405~^3.670^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~406~^12.820^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~410~^3.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~415~^0.364^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~501~^0.929^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~502~^2.970^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~503~^3.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~504~^4.947^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~505~^3.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~506~^1.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~507~^0.662^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~508~^2.777^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~509~^2.584^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~510~^3.512^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~511~^4.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~512~^1.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~513~^4.515^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~514~^5.793^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~515~^8.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~516~^3.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~517~^2.382^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~518~^2.998^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11667~^~606~^2.650^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~612~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~613~^2.496^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~614~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~617~^0.347^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~618~^1.254^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~619~^0.823^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~626~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11667~^~645~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11667~^~646~^2.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~312~^0.284^4^0.170^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~315~^1.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~405~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~406~^1.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~410~^0.697^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11669~^~415~^0.002^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11669~^~501~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~502~^0.165^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~503~^0.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~504~^0.257^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~505~^0.112^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~506~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~507~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~508~^0.112^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~509~^0.049^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~510~^0.209^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~511~^0.092^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~512~^0.015^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~513~^0.136^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~514~^0.179^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~515~^0.199^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~516~^0.112^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~517~^0.092^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~518~^0.078^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11669~^~606~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~612~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~613~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~620~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~626~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~629~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11669~^~645~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11669~^~646~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~312~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~315~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~404~^0.090^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~405~^0.090^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~406~^0.950^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~410~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~415~^0.278^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~501~^0.026^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~502~^0.074^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~503~^0.065^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~504~^0.105^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~505~^0.089^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~506~^0.024^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~507~^0.038^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~508~^0.062^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~509~^0.042^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~510~^0.084^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~511~^0.096^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~512~^0.041^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~513~^0.082^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~514~^0.286^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~515~^0.264^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~516~^0.074^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~517~^0.087^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~518~^0.080^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11670~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~618~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11670~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11670~^~646~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~312~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~315~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~404~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~405~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~406~^1.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~410~^0.436^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~415~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~502~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~503~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~504~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~505~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~508~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~510~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~511~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~512~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~513~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~514~^0.376^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~515~^0.470^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~516~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~517~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~518~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~606~^0.797^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~607~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~608~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~609~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~610~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~611~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~612~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~613~^0.365^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~614~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~617~^0.302^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~626~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~645~^0.347^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11671~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11672~^~312~^0.180^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~315~^0.260^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~404~^0.158^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~405~^0.173^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~406~^1.672^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~410~^0.757^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~415~^0.448^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~501~^0.087^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~502~^0.240^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~503~^0.280^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~504~^0.442^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~505~^0.389^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~506~^0.137^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~507~^0.105^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~508~^0.300^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~509~^0.230^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~510~^0.369^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~511~^0.342^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~512~^0.141^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~513~^0.267^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~514~^1.011^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~515~^1.007^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~516~^0.198^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~517~^0.261^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~518~^0.362^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~606~^2.496^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~609~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~610~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~611~^0.005^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~612~^0.022^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~613~^1.804^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~614~^0.652^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~617~^3.603^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~618~^6.613^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~619~^0.862^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~620~^0.032^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~621~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~624~^0.003^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~625~^0.002^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~626~^0.093^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~628~^0.031^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~629~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~645~^3.730^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~646~^7.516^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~653~^0.004^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~ -~11672~^~672~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~687~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11672~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~ -~11674~^~312~^0.118^46^0.002^~6~^~JA~^^^4^0.050^0.199^3^0.113^0.122^~2~^~06/01/2002~ -~11674~^~315~^0.219^47^0.003^~6~^~JA~^^^4^0.152^0.374^3^0.211^0.228^~2~^~05/01/2002~ -~11674~^~404~^0.064^21^^~1~^~A~^^^0^0.048^0.072^^^^~2~^~06/01/2002~ -~11674~^~405~^0.048^21^^~1~^~A~^^^0^0.043^0.050^^^^~2~^~06/01/2002~ -~11674~^~406~^1.410^21^^~1~^~A~^^^0^1.348^1.595^^^^~2~^~06/01/2002~ -~11674~^~410~^0.376^21^^~1~^~A~^^^0^0.341^0.383^^^^~2~^~05/01/2002~ -~11674~^~415~^0.311^21^^~1~^~A~^^^0^0.211^0.354^^^^~2~^~06/01/2002~ -~11674~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~502~^0.081^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~503~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~504~^0.119^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~505~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~506~^0.038^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~508~^0.099^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~509~^0.058^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~511~^0.123^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~512~^0.042^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~513~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~514~^0.583^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~515~^0.427^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~516~^0.069^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~517~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~518~^0.091^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11674~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11674~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11674~^~607~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~608~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~609~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~610~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~05/01/2002~ -~11674~^~611~^0.004^0^^~4~^~BFFN~^~11828~^^^^^^^^^~06/01/2002~ -~11674~^~612~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~05/01/2002~ -~11674~^~613~^0.022^0^^~4~^~BFFN~^~11828~^^^^^^^^^~06/01/2002~ -~11674~^~614~^0.005^0^^~4~^~BFFN~^~11828~^^^^^^^^^~06/01/2002~ -~11674~^~617~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~05/01/2002~ -~11674~^~618~^0.043^0^^~4~^~BFFN~^~11828~^^^^^^^^^~06/01/2002~ -~11674~^~619~^0.013^0^^~4~^~BFFN~^~11828~^^^^^^^^^~06/01/2002~ -~11674~^~620~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~621~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~626~^0.001^0^^~4~^~BFFN~^~11828~^^^^^^^^^~05/01/2002~ -~11674~^~627~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~628~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~629~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~630~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~631~^0.000^0^^~4~^~BFFN~^~11828~^^^^^^^^^~08/01/2010~ -~11674~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~ -~11674~^~646~^0.057^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11675~^~312~^0.334^10^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~315~^0.292^10^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~404~^0.120^10^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~405~^0.032^10^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~406~^1.714^10^0.107^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~410~^0.454^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11675~^~415~^0.344^10^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~502~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~503~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~504~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~505~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~507~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~508~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~509~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~511~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~512~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~513~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~514~^0.598^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~515~^0.410^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~516~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~517~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~518~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11675~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11675~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~312~^0.120^3^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~315~^0.260^3^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~404~^0.102^3^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~405~^0.103^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~406~^2.853^3^0.390^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~410~^0.733^3^0.088^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~415~^0.285^3^0.057^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11676~^~606~^0.767^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~613~^0.663^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~614~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~617~^0.409^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~618~^0.410^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~619~^0.722^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~645~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11676~^~646~^1.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~312~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~315~^0.292^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~410~^0.290^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~415~^0.345^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11677~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~502~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~503~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~504~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~505~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~506~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~509~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~510~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~511~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~512~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~513~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~514~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~515~^0.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~516~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~517~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~518~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11677~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~607~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~608~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~609~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~610~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~611~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~618~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~620~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~621~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~626~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~627~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~628~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~629~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~630~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~631~^0.000^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~ -~11677~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11677~^~646~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11683~^~312~^0.370^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~315~^1.116^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~404~^0.534^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~405~^0.417^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~406~^6.567^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~410~^1.471^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~415~^1.040^1^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~501~^0.087^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~502~^0.299^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~503~^0.323^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~504~^0.338^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~505~^0.315^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~506~^0.056^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~507~^0.063^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~508~^0.251^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~509~^0.157^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~510~^0.346^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~511~^0.338^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~512~^0.126^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~513~^0.464^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~514~^1.077^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~515~^1.589^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~517~^0.228^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~518~^0.275^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11683~^~606~^0.256^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~607~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~608~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~609~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~610~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~611~^0.019^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~612~^0.009^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~613~^0.218^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~617~^0.057^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~618~^0.635^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~619~^0.095^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~620~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~621~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~626~^0.019^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~627~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~628~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~629~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~630~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~631~^0.000^0^^~7~^^^^^^^^^^^~08/01/2007~ -~11683~^~645~^0.076^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11683~^~646~^0.730^0^^~1~^^^^^^^^^^^~08/01/2007~ -~11693~^~312~^0.183^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~315~^0.183^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~404~^0.075^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~405~^0.052^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~406~^1.222^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~410~^0.278^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~415~^0.150^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~501~^0.012^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~502~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~503~^0.037^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~504~^0.057^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~505~^0.057^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~506~^0.013^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~507~^0.020^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~508~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~509~^0.027^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~510~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~511~^0.038^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~512~^0.023^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~513~^0.045^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~514~^0.215^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~515~^0.570^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~516~^0.038^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~517~^0.030^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~518~^0.042^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11693~^~606~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~609~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~610~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~611~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~612~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~613~^0.027^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~614~^0.010^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~617~^0.041^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~618~^0.108^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~619~^0.005^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~620~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~626~^0.001^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~628~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~630~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~645~^0.043^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11693~^~646~^0.113^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~ -~11695~^~312~^0.062^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11695~^~315~^0.088^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11695~^~404~^0.046^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~405~^0.034^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~406~^0.593^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~410~^0.186^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~415~^0.060^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11695~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~502~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~503~^0.027^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~504~^0.042^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~505~^0.042^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~506~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~507~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~508~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~509~^0.020^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~510~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~511~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~512~^0.018^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~513~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~514~^0.161^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~515~^0.427^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~516~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~517~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~518~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11695~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11695~^~606~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~613~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~617~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~618~^0.073^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~619~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~626~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~645~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11695~^~646~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11696~^~312~^0.101^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~315~^0.120^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~404~^0.041^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~405~^0.047^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~406~^1.179^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~410~^0.110^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~415~^0.056^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11696~^~501~^0.007^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~502~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~503~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~504~^0.036^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~505~^0.036^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~506~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~507~^0.013^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~508~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~509~^0.017^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~510~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~511~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~512~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~513~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~514~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~515~^0.359^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~516~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~517~^0.018^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~518~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~12/01/1996~ -~11696~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11696~^~606~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~613~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~614~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~617~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~618~^0.104^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~645~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11696~^~646~^0.108^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~312~^0.121^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~315~^0.174^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~404~^0.143^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~405~^0.059^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~406~^1.693^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~410~^0.292^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~415~^0.266^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11697~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11697~^~606~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~613~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~617~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~618~^0.074^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~645~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11697~^~646~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11698~^~312~^0.137^1^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~315~^0.943^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~404~^0.130^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~405~^0.144^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~406~^0.531^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~410~^0.221^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~415~^0.176^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11698~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11700~^~312~^0.158^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~315~^0.861^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~404~^0.020^5^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~405~^0.134^5^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~406~^0.559^5^0.090^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~410~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~415~^0.177^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11700~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~503~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~504~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~505~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~509~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~510~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~511~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~512~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~513~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~514~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~515~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~516~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~517~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11700~^~606~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~613~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~617~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~645~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11700~^~646~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~312~^0.135^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~315~^0.285^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~404~^0.144^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~406~^1.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11701~^~410~^0.449^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~415~^0.206^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11701~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11702~^~312~^0.127^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~315~^0.225^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~405~^0.089^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~406~^1.110^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~410~^0.240^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~415~^0.081^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~11702~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11702~^~606~^0.079^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~613~^0.066^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~619~^0.038^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11702~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11703~^~312~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~315~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~404~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~405~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~406~^0.915^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~410~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~415~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11703~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11703~^~606~^0.119^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~611~^0.005^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~612~^0.005^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~613~^0.099^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~614~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~617~^0.015^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~618~^0.157^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~619~^0.059^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11703~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11703~^~646~^0.216^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11705~^~312~^0.165^4^0.028^~1~^~A~^^^1^0.104^0.236^3^0.076^0.254^~2, 3~^~12/01/2002~ -~11705~^~315~^0.154^4^0.010^~1~^~A~^^^1^0.143^0.184^3^0.123^0.186^~2, 3~^~12/01/2002~ -~11705~^~404~^0.162^4^0.012^~1~^~A~^^^1^0.149^0.199^3^0.123^0.201^~2, 3~^~12/01/2002~ -~11705~^~405~^0.139^4^0.007^~1~^~A~^^^1^0.126^0.158^3^0.117^0.161^~2, 3~^~12/01/2002~ -~11705~^~406~^1.084^4^0.047^~1~^~A~^^^1^0.965^1.160^3^0.933^1.234^~2, 3~^~12/01/2002~ -~11705~^~410~^0.225^4^0.020^~1~^~A~^^^1^0.190^0.280^3^0.162^0.289^~2, 3~^~12/01/2002~ -~11705~^~415~^0.079^4^0.011^~1~^~A~^^^1^0.059^0.110^3^0.045^0.114^~2, 3~^~12/01/2002~ -~11705~^~501~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~502~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~503~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~504~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~505~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~506~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~507~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~508~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~509~^0.057^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~511~^0.099^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~512~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~513~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~514~^0.555^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~515~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~517~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~518~^0.116^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11705~^~606~^0.048^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11705~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11705~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~613~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~618~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~619~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11705~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~646~^0.105^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11705~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11705~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11707~^~312~^0.107^78^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~315~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~404~^0.054^138^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~405~^0.089^156^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~406~^0.851^153^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~410~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~415~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~503~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~504~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~508~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~509~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~511~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~513~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~514~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~515~^0.295^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~516~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~517~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~518~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11707~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11707~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~611~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~612~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~613~^0.037^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~614~^0.003^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~617~^0.005^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~618~^0.075^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~619~^0.004^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~626~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11707~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11707~^~646~^0.079^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~ -~11709~^~312~^0.105^38^0.004^~6~^~JA~^^^7^0.056^0.159^37^0.097^0.113^~4~^~12/01/2002~ -~11709~^~315~^0.140^38^0.006^~6~^~JA~^^^7^0.059^0.231^37^0.129^0.152^~4~^~12/01/2002~ -~11709~^~404~^0.065^3^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~405~^0.103^3^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~406~^1.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~410~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~415~^0.020^3^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~503~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~504~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~505~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~506~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~508~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~509~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~510~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~511~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~512~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~513~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~514~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~515~^0.483^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~516~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~517~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~518~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11709~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11709~^~606~^0.096^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~613~^0.086^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~614~^0.006^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~617~^0.011^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~618~^0.175^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11709~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11709~^~646~^0.185^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11710~^~312~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11710~^~315~^0.536^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11710~^~404~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~405~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~406~^0.995^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~410~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11710~^~415~^0.760^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11710~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11711~^~312~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~315~^0.086^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~406~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11711~^~410~^0.193^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~415~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11711~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11712~^~312~^0.082^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~315~^0.113^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~410~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~415~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11712~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~503~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~504~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~505~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~506~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~508~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~510~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~511~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~513~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~514~^0.249^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~515~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~516~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~517~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~518~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11712~^~606~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~613~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~618~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11712~^~646~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~312~^0.174^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~315~^0.199^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~404~^0.362^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~405~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~406~^3.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~410~^0.381^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~415~^0.093^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11713~^~501~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~502~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~504~^0.347^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~505~^0.275^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~507~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~508~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~509~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~510~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~511~^0.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~512~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~513~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~514~^0.628^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~515~^0.589^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~516~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~518~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11713~^~606~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~613~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~617~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~618~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~619~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~645~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11713~^~646~^0.318^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~312~^0.305^12^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~315~^1.252^12^0.097^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~404~^0.140^12^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~405~^0.096^12^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~406~^1.040^12^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~410~^0.257^12^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~415~^0.193^12^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~501~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~502~^0.289^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~503~^0.438^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~504~^0.535^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~505~^0.450^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~507~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~508~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~509~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~510~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~511~^0.456^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~512~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~513~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~514~^0.731^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~515~^0.877^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~516~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~517~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~518~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11714~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~613~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~618~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11714~^~646~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~312~^0.162^44^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~315~^0.700^6^0.051^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~404~^0.029^134^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~405~^0.043^134^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~406~^0.532^140^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~410~^0.095^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~415~^0.062^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11715~^~501~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~502~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~503~^0.261^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~504~^0.319^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~505~^0.268^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~506~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~507~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~508~^0.200^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~509~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~510~^0.254^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~511~^0.272^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~512~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~513~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~514~^0.436^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~515~^0.523^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~516~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~517~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~518~^0.254^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11715~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11715~^~606~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11715~^~613~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1984~ -~11715~^~617~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~618~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~619~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11715~^~645~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11715~^~646~^0.139^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11716~^~312~^0.197^6^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~315~^0.813^6^0.054^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~404~^0.070^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~405~^0.055^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~406~^0.770^6^0.040^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~410~^0.177^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~415~^0.115^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~501~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~502~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~503~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~504~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~505~^0.439^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~506~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~507~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~508~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~509~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~510~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~511~^0.445^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~512~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~513~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~514~^0.714^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~515~^0.857^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~516~^0.266^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~517~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~518~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11716~^~606~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~613~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~617~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~618~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~645~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11716~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~312~^0.170^47^0.004^~1~^^^^5^0.085^0.234^32^0.161^0.179^~2, 3~^~12/01/2002~ -~11717~^~315~^0.648^48^0.018^~1~^^^^5^0.415^0.900^40^0.612^0.684^~2, 3~^~12/01/2002~ -~11717~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~405~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~406~^1.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~415~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~502~^0.257^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~503~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~504~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~505~^0.401^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~506~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~507~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~508~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~509~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~510~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~511~^0.406^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~512~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~513~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~514~^0.652^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~515~^0.782^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~516~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~517~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~518~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11717~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~613~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~618~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~619~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11717~^~646~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~312~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~315~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~405~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~406~^0.817^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~410~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~415~^0.054^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11718~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~502~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~503~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~504~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~505~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~506~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~508~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~509~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~510~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~511~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~512~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~513~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~514~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~515~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~516~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11718~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~613~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11718~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11718~^~646~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~312~^0.389^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~315~^0.446^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~404~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~406~^1.263^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~410~^0.854^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~415~^0.198^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11719~^~501~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~502~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~503~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~504~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~505~^0.403^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~506~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~507~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~508~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~509~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~510~^0.363^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~511~^0.385^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~512~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~513~^0.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~514~^0.919^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~515~^0.863^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~516~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~517~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~518~^0.378^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11719~^~606~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~613~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~617~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~618~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~619~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~645~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11719~^~646~^0.468^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~312~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~315~^0.493^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~404~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~405~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~406~^0.632^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~410~^0.258^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~415~^0.194^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11720~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11720~^~606~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~613~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~618~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~619~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11720~^~646~^0.276^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~312~^0.107^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~315~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~404~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~405~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~406~^0.725^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~410~^0.235^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~415~^0.054^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11721~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~502~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~503~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~504~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~505~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~510~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~511~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~512~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~513~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~514~^0.241^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~515~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~516~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~517~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11721~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~613~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~618~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~619~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11721~^~646~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~312~^0.069^157^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~315~^0.214^146^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~404~^0.084^98^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~405~^0.105^98^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~406~^0.752^8^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~410~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~501~^0.019^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~502~^0.079^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~503~^0.066^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~504~^0.112^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~505~^0.088^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~506~^0.022^15^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~507~^0.018^15^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~508~^0.067^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~509~^0.042^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~510~^0.090^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~511~^0.073^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~512~^0.034^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~513~^0.084^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~514~^0.255^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~515~^0.187^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~516~^0.065^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~517~^0.068^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~518~^0.099^94^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11722~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~613~^0.022^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~614~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~617~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~618~^0.023^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~619~^0.036^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11722~^~646~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~312~^0.057^28^0.005^~1~^^^^4^0.029^0.134^27^0.048^0.067^~4~^~06/01/2005~ -~11723~^~315~^0.285^28^0.016^~1~^^^^4^0.172^0.580^27^0.252^0.318^~4~^~06/01/2005~ -~11723~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~405~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~406~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~410~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~505~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~510~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~511~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~512~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~514~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11723~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11723~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11723~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~613~^0.053^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~614~^0.009^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~617~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~618~^0.056^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~619~^0.089^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11723~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11723~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11724~^~312~^0.103^5^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~315~^0.294^5^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~405~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~406~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~410~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~505~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~510~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~511~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~512~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~514~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11724~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11724~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11724~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~613~^0.053^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~614~^0.009^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~617~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~618~^0.056^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~619~^0.089^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11724~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11724~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11725~^~312~^0.103^5^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~315~^0.294^5^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~405~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~406~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~410~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~502~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~505~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~510~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~511~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~512~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~514~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~515~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11725~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11725~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11725~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~613~^0.053^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~614~^0.009^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~617~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~618~^0.056^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~619~^0.089^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11725~^~645~^0.011^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11725~^~646~^0.145^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11726~^~312~^0.070^400^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~315~^0.335^115^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~404~^0.025^1443^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~405~^0.051^1380^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~406~^0.200^1371^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~410~^0.106^6^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~415~^0.030^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~502~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~503~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~504~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~505~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~507~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~508~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~510~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~511~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~512~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~513~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~514~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~515~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~516~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~517~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~518~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11726~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11726~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11726~^~646~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~312~^0.070^400^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~315~^0.335^115^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~404~^0.025^1443^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~405~^0.051^1380^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~406~^0.200^1371^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~410~^0.106^6^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~415~^0.030^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~502~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~503~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~504~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~505~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~507~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~508~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~510~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~511~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~512~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~513~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~514~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~515~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~516~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~517~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~518~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11727~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11727~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11727~^~646~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~312~^0.070^400^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~315~^0.335^115^0.015^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~404~^0.025^1443^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~405~^0.051^1380^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~406~^0.200^1371^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~410~^0.106^6^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~415~^0.030^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~501~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~502~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~503~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~504~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~505~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~507~^0.008^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~508~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~510~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~511~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~512~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~513~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~514~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~515~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~516~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~517~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~518~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11728~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11728~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~618~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11728~^~646~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11729~^~312~^0.034^4^0.002^~1~^~A~^^^1^0.028^0.039^1^0.006^0.061^~2, 3~^~08/01/2014~ -~11729~^~315~^0.163^4^0.067^~1~^~A~^^^1^0.086^0.300^1^-0.683^1.009^~2, 3~^~08/01/2014~ -~11729~^~404~^0.016^6^0.001^~1~^~A~^^^2^0.015^0.020^1^0.005^0.026^~1, 2, 3~^~04/01/2011~ -~11729~^~405~^0.046^6^0.005^~1~^~A~^^^2^0.015^0.100^2^0.014^0.078^~1, 2, 3~^~07/01/2014~ -~11729~^~406~^0.206^6^0.022^~1~^~A~^^^2^0.140^0.280^1^-0.027^0.439^~2, 3~^~07/01/2014~ -~11729~^~410~^0.200^2^^~1~^~A~^^^1^0.160^0.240^1^^^^~04/01/2011~ -~11729~^~415~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~04/01/2011~ -~11729~^~501~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~502~^0.048^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~503~^0.040^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~504~^0.069^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~505~^0.054^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~506~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~508~^0.041^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~509~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~510~^0.055^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~511~^0.045^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~512~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~513~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~514~^0.156^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~515~^0.115^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~516~^0.040^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~517~^0.042^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~518~^0.061^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11729~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11729~^~606~^0.103^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11729~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~613~^0.089^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11729~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11729~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11729~^~618~^0.089^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11729~^~619~^0.145^0^^~1~^^^^^^^^^^^~08/01/2014~ -~11729~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11729~^~645~^0.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11729~^~646~^0.234^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11730~^~312~^0.049^21^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~315~^0.385^19^0.039^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~404~^0.099^99^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~405~^0.092^99^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~406~^0.499^96^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~410~^0.085^6^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~415~^0.042^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~502~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~503~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~504~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~505~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~506~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~508~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~509~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~510~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~511~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~512~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~513~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~514~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~515~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~516~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~517~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11730~^~606~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~618~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~619~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~11730~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11730~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~312~^0.059^40^0.005^~1~^^^^1^0.029^0.134^20^0.047^0.070^~4~^~03/01/2006~ -~11731~^~315~^0.288^40^0.032^~1~^^^^1^0.148^0.830^20^0.222^0.354^~4~^~03/01/2006~ -~11731~^~404~^0.035^7^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~405~^0.090^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~406~^0.383^7^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~410~^0.049^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~415~^0.060^7^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~505~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~508~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~510~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~511~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~514~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~515~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~517~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11731~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11731~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11731~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~613~^0.035^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~614~^0.006^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~617~^0.007^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~618~^0.036^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11731~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11731~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11731~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11731~^~646~^0.083^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11732~^~312~^0.061^10^0.004^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~315~^0.323^10^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~404~^0.035^7^0.005^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~405~^0.090^7^0.007^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~406~^0.383^7^0.031^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~410~^0.049^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~415~^0.060^7^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~11732~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~505~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~508~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~510~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~511~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~514~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~515~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~517~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11732~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11732~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11732~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~613~^0.035^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~614~^0.006^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~617~^0.007^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~618~^0.036^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11732~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11732~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11732~^~646~^0.083^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11733~^~312~^0.061^10^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~315~^0.323^10^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~404~^0.035^7^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~405~^0.090^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~406~^0.383^7^0.031^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~410~^0.049^7^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~415~^0.060^7^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~503~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~505~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~508~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~510~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~511~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~514~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~515~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~517~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11733~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11733~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11733~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~613~^0.035^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~614~^0.006^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~617~^0.007^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~618~^0.036^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~619~^0.047^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11733~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11733~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11733~^~646~^0.083^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11734~^~312~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~315~^0.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~406~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~410~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~415~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~502~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~503~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~505~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~508~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~509~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~510~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~514~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~515~^0.446^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~517~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~518~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11734~^~606~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~617~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~619~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~645~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11734~^~646~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~312~^0.097^67^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~315~^0.241^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~404~^0.010^141^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~405~^0.038^174^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~406~^0.151^215^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~410~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~415~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11735~^~501~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~502~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~503~^0.024^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~504~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~505~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~507~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~508~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~509~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~510~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~511~^0.021^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~512~^0.011^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~513~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~514~^0.058^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~515~^0.213^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~516~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~517~^0.020^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~518~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11735~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11735~^~606~^0.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~613~^0.011^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~614~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~617~^0.013^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~618~^0.023^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~619~^0.002^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11735~^~645~^0.013^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11735~^~646~^0.025^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11736~^~312~^0.251^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~315~^0.514^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11736~^~404~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~405~^0.289^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~406~^0.499^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~410~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~415~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~502~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~503~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~504~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~505~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~508~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~509~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~510~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~511~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~512~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~513~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~514~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~515~^0.312^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~516~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~517~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~518~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11736~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11736~^~606~^0.031^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11736~^~613~^0.030^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11736~^~614~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11736~^~617~^0.038^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11736~^~618~^0.065^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11736~^~619~^0.006^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11736~^~645~^0.038^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11736~^~646~^0.070^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11737~^~312~^0.143^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~315~^0.385^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~405~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~406~^0.940^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~410~^0.045^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~415~^0.088^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11737~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11737~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~613~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~614~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~618~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~626~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~630~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~645~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11737~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~312~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~315~^0.261^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~406~^1.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~410~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~415~^0.029^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11738~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~502~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~503~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~504~^0.370^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~505~^0.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~507~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~508~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~509~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~510~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~511~^0.397^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~512~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~513~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~514~^0.541^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~515~^0.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~516~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~517~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~518~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11738~^~606~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~613~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~614~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~618~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~619~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11738~^~646~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~312~^0.045^33^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~315~^0.229^22^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~404~^0.065^15^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~405~^0.119^15^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~406~^0.638^15^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~410~^0.535^15^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~415~^0.159^15^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~501~^0.029^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~502~^0.091^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~503~^0.109^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~504~^0.131^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~505~^0.141^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~506~^0.034^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~507~^0.020^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~508~^0.084^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~509~^0.063^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~510~^0.128^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~511~^0.145^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~512~^0.050^24^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~513~^0.118^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~514~^0.213^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~515~^0.375^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~516~^0.095^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~517~^0.114^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~518~^0.100^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11739~^~606~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~619~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11739~^~646~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~312~^0.045^33^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~315~^0.229^22^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~404~^0.065^15^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~405~^0.119^15^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~406~^0.638^15^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~410~^0.535^15^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~415~^0.159^15^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~501~^0.029^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~502~^0.091^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~503~^0.109^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~504~^0.131^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~505~^0.141^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~506~^0.034^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~507~^0.020^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~508~^0.084^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~509~^0.063^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~510~^0.128^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~511~^0.145^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~512~^0.050^24^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~513~^0.118^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~514~^0.213^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~515~^0.375^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~516~^0.095^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~517~^0.114^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~518~^0.100^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11740~^~606~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~619~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11740~^~646~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~312~^0.045^33^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~315~^0.229^22^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~404~^0.065^15^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~405~^0.119^15^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~406~^0.638^15^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~410~^0.535^15^0.049^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~415~^0.159^15^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~501~^0.029^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~502~^0.091^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~503~^0.109^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~504~^0.131^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~505~^0.141^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~506~^0.034^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~507~^0.020^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~508~^0.084^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~509~^0.063^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~510~^0.128^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~511~^0.145^26^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~512~^0.050^24^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~513~^0.118^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~514~^0.213^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~515~^0.375^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~516~^0.095^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~517~^0.114^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~518~^0.100^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11741~^~606~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~619~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~645~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11741~^~646~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11742~^~312~^0.061^4^0.008^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~315~^0.194^4^0.009^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~404~^0.063^4^0.013^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~405~^0.123^4^0.004^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~406~^0.553^4^0.046^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~410~^0.616^4^0.119^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~415~^0.200^4^0.013^~1~^~A~^^^2^^^^^^^~11/01/2006~ -~11742~^~501~^0.034^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~502~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~503~^0.092^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~504~^0.147^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~505~^0.155^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~506~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~508~^0.116^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~509~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~510~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~511~^0.200^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~512~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~513~^0.114^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~514~^0.329^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~515~^0.549^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~517~^0.111^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~518~^0.129^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11742~^~606~^0.079^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~613~^0.056^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~614~^0.013^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~617~^0.029^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~618~^0.051^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~619~^0.119^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~626~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~646~^0.170^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11742~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~687~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~11742~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11742~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~11743~^~312~^0.034^20^0.002^~1~^^^^1^0.018^0.055^19^0.029^0.040^~4~^~10/01/2002~ -~11743~^~315~^0.223^20^0.008^~1~^^^^1^0.150^0.277^19^0.207^0.240^~4~^~10/01/2002~ -~11743~^~404~^0.055^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~405~^0.081^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~406~^0.458^6^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~410~^0.274^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~415~^0.130^7^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~502~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~504~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~510~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~511~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~512~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~513~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~515~^0.417^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11743~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~619~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11743~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~312~^0.043^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~315~^0.325^6^0.034^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~404~^0.055^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~405~^0.081^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~406~^0.458^6^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~410~^0.274^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~415~^0.130^7^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~502~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~504~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~508~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~510~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~511~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~512~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~513~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~515~^0.417^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~516~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11744~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~613~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~614~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~617~^0.008^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~618~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~619~^0.042^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11744~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~312~^0.083^5^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~315~^0.227^5^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~404~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~406~^0.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~410~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~415~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~502~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~503~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~504~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~505~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~508~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~510~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~511~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11745~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11745~^~606~^0.102^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~607~^0.000^0^^~4~^~BFZN~^~11099~^^^^^^^^^~11/01/2006~ -~11745~^~608~^0.000^0^^~4~^~BFZN~^~11099~^^^^^^^^^~11/01/2006~ -~11745~^~609~^0.003^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~610~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~611~^0.000^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~612~^0.001^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~613~^0.093^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~614~^0.005^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~617~^0.034^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~618~^0.079^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~619~^0.173^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~620~^0.002^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~626~^0.004^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11745~^~645~^0.038^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11745~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~11746~^~312~^0.034^18^0.003^~1~^~A~^^^7^0.000^0.052^17^0.029^0.040^~4~^~06/01/2005~ -~11746~^~315~^0.206^18^0.011^~1~^~A~^^^7^0.135^0.319^17^0.183^0.228^~4~^~06/01/2005~ -~11746~^~404~^0.103^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~405~^0.113^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~406~^0.537^3^0.145^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~410~^0.342^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~415~^0.289^6^0.037^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~502~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~503~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~504~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~505~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~508~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~510~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~511~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11746~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11746~^~606~^0.081^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~609~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~612~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11746~^~613~^0.069^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~617~^0.025^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~618~^0.059^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~619~^0.129^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~620~^0.002^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~626~^0.003^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~645~^0.030^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11746~^~646~^0.200^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11747~^~312~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~315~^0.270^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~404~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~405~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~406~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~410~^0.353^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~415~^0.279^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11747~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~502~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~503~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~504~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~505~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~508~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~511~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~512~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~513~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~514~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~515~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~516~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~517~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11747~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11748~^~312~^0.059^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~315~^0.156^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~404~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~405~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~406~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11748~^~410~^0.018^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~415~^0.052^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11748~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11749~^~312~^0.023^49^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~315~^0.159^35^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~410~^0.140^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~415~^0.095^6^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~501~^0.012^199^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~502~^0.042^206^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~503~^0.061^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~504~^0.063^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~505~^0.057^208^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~506~^0.012^210^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~507~^0.010^15^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~508~^0.039^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~509~^0.021^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~510~^0.052^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~511~^0.069^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~512~^0.025^204^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~513~^0.042^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~514~^0.119^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~515~^0.270^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~516~^0.027^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~517~^0.238^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~518~^0.071^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11749~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~611~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~613~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~614~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~617~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~618~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~619~^0.046^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~620~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11749~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~312~^0.023^49^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~315~^0.159^35^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~410~^0.140^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~415~^0.095^6^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~501~^0.012^199^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~502~^0.042^206^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~503~^0.061^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~504~^0.063^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~505~^0.057^208^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~506~^0.012^210^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~507~^0.010^15^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~508~^0.039^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~509~^0.021^10^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~510~^0.052^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~511~^0.069^205^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~512~^0.025^204^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~513~^0.042^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~514~^0.119^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~515~^0.270^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~516~^0.027^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~517~^0.238^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~518~^0.071^9^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11750~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~611~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~613~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~614~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~617~^0.013^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~618~^0.035^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~619~^0.046^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~620~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11750~^~646~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11751~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~03/01/2006~ -~11751~^~315~^0.205^4^0.038^~1~^~A~^^^1^0.120^0.299^3^0.083^0.328^~2, 3~^~03/01/2006~ -~11751~^~404~^0.061^4^0.005^~1~^~A~^^^1^0.052^0.074^3^0.045^0.076^~2, 3~^~03/01/2006~ -~11751~^~405~^0.038^4^0.004^~1~^~A~^^^1^0.027^0.047^3^0.025^0.052^~2, 3~^~03/01/2006~ -~11751~^~406~^0.248^4^0.007^~1~^~A~^^^1^0.233^0.264^3^0.224^0.271^~2, 3~^~03/01/2006~ -~11751~^~410~^0.174^4^0.011^~1~^~A~^^^1^0.146^0.192^3^0.140^0.209^~2, 3~^~03/01/2006~ -~11751~^~415~^0.112^4^0.003^~1~^~A~^^^1^0.104^0.119^3^0.102^0.123^~2, 3~^~03/01/2006~ -~11751~^~501~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~502~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~504~^0.041^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~505~^0.043^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~506~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~508~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~510~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~511~^0.074^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~512~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~513~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~514~^0.121^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~515~^0.292^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~517~^0.048^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~518~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11751~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11751~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11751~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~613~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~617~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~618~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~619~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~626~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11751~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~645~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~646~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11751~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11751~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~11752~^~312~^0.054^3^0.037^~1~^~A~^^^1^0.017^0.129^2^-0.107^0.215^~1, 2, 3~^~06/01/2005~ -~11752~^~315~^0.223^3^0.035^~1~^~A~^^^1^0.153^0.260^2^0.072^0.375^~2, 3~^~06/01/2005~ -~11752~^~404~^0.071^4^0.007^~1~^~A~^^^1^0.055^0.084^3^0.048^0.093^~2, 3~^~06/01/2005~ -~11752~^~405~^0.060^4^0.003^~1~^~A~^^^1^0.055^0.070^3^0.050^0.070^~2, 3~^~06/01/2005~ -~11752~^~406~^0.382^4^0.043^~1~^~A~^^^1^0.278^0.458^3^0.246^0.519^~2, 3~^~06/01/2005~ -~11752~^~410~^0.154^4^0.017^~1~^~A~^^^1^0.122^0.198^3^0.099^0.210^~2, 3~^~06/01/2005~ -~11752~^~415~^0.225^4^0.022^~1~^~A~^^^1^0.192^0.291^3^0.153^0.297^~2, 3~^~06/01/2005~ -~11752~^~501~^0.013^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~502~^0.041^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~503~^0.036^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~504~^0.049^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~505~^0.051^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~506~^0.014^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~508~^0.038^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~509~^0.023^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~510~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~511~^0.088^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~512~^0.026^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~513~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~514~^0.144^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~515~^0.346^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~516~^0.036^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~517~^0.056^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~518~^0.062^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~11752~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11752~^~606~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~607~^0.000^0^^~4~^~BFZN~^~11113~^^^^^^^^^~06/01/2006~ -~11752~^~608~^0.000^0^^~4~^~BFZN~^~11113~^^^^^^^^^~06/01/2006~ -~11752~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~612~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~613~^0.010^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~614~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~617~^0.007^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~618~^0.019^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~619~^0.024^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~620~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~626~^0.000^0^^~1~^^^^^^^^^^^~06/01/2006~ -~11752~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11752~^~646~^0.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~11753~^~312~^0.052^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~315~^0.152^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~406~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~410~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11753~^~415~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~502~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~503~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~505~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~510~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~511~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~513~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~514~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~515~^0.400^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~516~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~517~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~518~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11753~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~618~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11753~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~312~^0.019^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~315~^0.144^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~404~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~405~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~406~^0.428^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~410~^0.079^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~415~^0.166^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11754~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~503~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~505~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~508~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~511~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~512~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~513~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~514~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~515~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~518~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11754~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~613~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~619~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11754~^~646~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~312~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~315~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~404~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~405~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~410~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~415~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~502~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~504~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~505~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~508~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~509~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~510~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~511~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~512~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~513~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~515~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~516~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~517~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11755~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~619~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11755~^~646~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~312~^0.029^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~315~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~406~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~410~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~415~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11756~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11756~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~613~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~617~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~618~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11756~^~646~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11757~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~03/01/2006~ -~11757~^~315~^0.155^4^0.038^~1~^~A~^^^1^0.077^0.244^3^0.034^0.277^~2, 3~^~03/01/2006~ -~11757~^~404~^0.066^4^0.003^~1~^~A~^^^1^0.057^0.070^3^0.056^0.076^~2, 3~^~03/01/2006~ -~11757~^~405~^0.044^4^0.002^~1~^~A~^^^1^0.040^0.048^3^0.037^0.050^~2, 3~^~03/01/2006~ -~11757~^~406~^0.645^4^0.031^~1~^~A~^^^1^0.570^0.698^3^0.546^0.744^~2, 3~^~03/01/2006~ -~11757~^~410~^0.232^4^0.006^~1~^~A~^^^1^0.219^0.244^3^0.213^0.252^~2, 3~^~03/01/2006~ -~11757~^~415~^0.153^4^0.004^~1~^~A~^^^1^0.144^0.163^3^0.140^0.166^~2, 3~^~03/01/2006~ -~11757~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~502~^0.157^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~503~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~504~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~505~^0.083^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~506~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~507~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~508~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~509~^0.035^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~510~^0.056^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~511~^0.075^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~512~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~513~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~514~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~515~^0.301^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~516~^0.038^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~517~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~518~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11757~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11757~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11757~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~11757~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11757~^~613~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~08/01/2007~ -~11757~^~614~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11757~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~617~^0.006^2^^~1~^~A~^^^1^0.002^0.010^1^^^~1~^~08/01/2007~ -~11757~^~618~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~08/01/2007~ -~11757~^~619~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11757~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11757~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~626~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~08/01/2007~ -~11757~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11757~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~646~^0.107^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~11757~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~08/01/2007~ -~11757~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11757~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11758~^~312~^0.103^73^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~315~^0.450^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~404~^0.019^167^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~405~^0.027^167^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~406~^0.421^164^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~410~^0.139^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~415~^0.112^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11758~^~501~^0.008^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~502~^0.122^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~503~^0.049^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~504~^0.065^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~505~^0.064^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~506~^0.013^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~507~^0.053^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~508~^0.039^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~509~^0.027^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~510~^0.044^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~511~^0.058^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~512~^0.025^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~513~^0.072^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~514~^0.121^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~515~^0.233^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~516~^0.030^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~517~^0.035^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~518~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11758~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11758~^~606~^0.024^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~613~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~617~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~618~^0.059^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11758~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11758~^~646~^0.068^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11759~^~312~^0.104^10^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~315~^0.450^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~404~^0.018^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~405~^0.030^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~406~^0.552^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~410~^0.135^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~415~^0.112^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~502~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~504~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~505~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~510~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~511~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~512~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~513~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~514~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~515~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~516~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~517~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11759~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~618~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11759~^~646~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11760~^~312~^0.082^3^0.008^~1~^~A~^^^1^0.072^0.097^2^0.050^0.115^~2, 3~^~01/01/2003~ -~11760~^~315~^0.167^3^0.007^~1~^~A~^^^1^0.157^0.180^2^0.138^0.196^~2, 3~^~01/01/2003~ -~11760~^~404~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~01/01/2003~ -~11760~^~405~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~2, 3~^~01/01/2003~ -~11760~^~406~^0.416^3^0.040^~1~^~A~^^^1^0.337^0.461^2^0.245^0.587^~2, 3~^~01/01/2003~ -~11760~^~410~^0.174^2^^~1~^~A~^^^1^0.168^0.180^1^^^^~01/01/2003~ -~11760~^~415~^0.084^3^0.005^~1~^~A~^^^1^0.077^0.094^2^0.061^0.106^~2, 3~^~01/01/2003~ -~11760~^~501~^0.007^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~502~^0.119^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~503~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~504~^0.063^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~505~^0.063^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~506~^0.013^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~507~^0.051^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~508~^0.038^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~509~^0.026^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~510~^0.043^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~511~^0.057^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~512~^0.025^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~513~^0.070^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~514~^0.118^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~515~^0.228^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~516~^0.029^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~517~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~518~^0.034^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~ -~11760~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11760~^~606~^0.132^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~611~^0.007^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~612~^0.007^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~613~^0.111^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~614~^0.007^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~617~^0.028^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~618~^0.318^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~626~^0.007^0^^~1~^^^^^^^^^^^~02/01/2007~ -~11760~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~645~^0.035^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~646~^0.318^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11760~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11760~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~11761~^~312~^0.018^28^0.002^~1~^^^^4^0.009^0.050^7^0.014^0.022^~2, 3~^~02/01/2007~ -~11761~^~315~^0.132^28^0.004^~1~^^^^4^0.088^0.179^21^0.122^0.141^~2, 3~^~02/01/2007~ -~11761~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~405~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~406~^0.410^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~410~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~415~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~502~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~504~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~505~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~508~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~509~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~510~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~511~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~513~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~514~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~515~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~516~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~517~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~518~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11761~^~606~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~617~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~618~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~619~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~645~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11761~^~646~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~312~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~315~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~404~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~406~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~410~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~415~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~502~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~503~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~505~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~509~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~510~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~511~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~513~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~514~^0.189^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~515~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~518~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11762~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11762~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~613~^0.030^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~614~^0.004^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~617~^0.015^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~618~^0.024^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~619~^0.081^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11762~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11762~^~646~^0.105^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~11763~^~312~^0.043^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~315~^0.096^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~405~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~406~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~410~^0.203^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11763~^~415~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11763~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11764~^~312~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~315~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~404~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~405~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~406~^0.319^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~410~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~415~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~505~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~510~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~514~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~515~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11764~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~617~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~618~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~645~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11764~^~646~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~312~^0.163^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~315~^0.334^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~405~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~406~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~415~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11765~^~501~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~502~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~503~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~504~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~505~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~508~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~510~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~511~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11765~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11766~^~312~^0.110^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~315~^0.169^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~404~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~406~^0.420^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~410~^0.408^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~415~^0.118^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11766~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~510~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~511~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~514~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~515~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~516~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~517~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11766~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11766~^~606~^0.031^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~607~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~608~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~609~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~610~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~611~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~612~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~613~^0.027^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~614~^0.003^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~617~^0.010^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~618~^0.024^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~619~^0.041^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~620~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~621~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~626~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~627~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~628~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~629~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~630~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~631~^0.000^0^^~4~^~BFSN~^~11149~^^^^^^^^^~11/01/2014~ -~11766~^~645~^0.010^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11766~^~646~^0.065^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11767~^~312~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~315~^0.355^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~404~^0.021^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~405~^0.160^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~406~^0.720^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11767~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~415~^0.118^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11767~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11768~^~312~^0.051^30^0.004^~6~^~JA~^^^5^0.010^0.215^5^0.042^0.060^~2, 3~^~08/01/2012~ -~11768~^~315~^0.510^30^0.032^~6~^~JA~^^^5^0.196^1.323^21^0.444^0.577^~2, 3~^~08/01/2012~ -~11768~^~404~^0.040^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~405~^0.106^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~406~^0.575^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~410~^0.218^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~415~^0.128^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~ -~11768~^~501~^0.027^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~502~^0.074^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~503~^0.086^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~504~^0.130^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~505~^0.101^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~506~^0.028^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~507~^0.022^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~508~^0.075^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~509~^0.056^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~510~^0.104^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~511~^0.108^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~512~^0.040^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~513~^0.090^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~514~^0.161^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~515~^0.176^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~516~^0.081^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~517~^0.090^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~518~^0.067^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11768~^~606~^0.047^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~611~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~612~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~613~^0.039^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~614~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~617~^0.025^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~618~^0.070^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~619~^0.093^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~620~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11768~^~645~^0.026^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11768~^~646~^0.173^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1996~ -~11769~^~312~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~315~^0.663^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~404~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~405~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~406~^0.635^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~410~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~415~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~502~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~504~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~509~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~510~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~511~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~513~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~514~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~515~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~516~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~517~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11769~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11769~^~606~^0.040^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11770~^~312~^0.049^30^0.003^~6~^~JA~^^^5^0.000^0.086^14^0.043^0.054^~2, 3~^~04/01/2009~ -~11770~^~315~^0.167^31^0.008^~6~^~JA~^^^5^0.078^0.271^22^0.150^0.184^~2, 3~^~04/01/2009~ -~11770~^~404~^0.093^3^0.009^~1~^~A~^^^1^0.080^0.110^2^0.055^0.131^~2, 3~^~04/01/2009~ -~11770~^~405~^0.057^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.042^0.071^~2, 3~^~04/01/2009~ -~11770~^~406~^1.683^9^0.061^~6~^~JA~^^^2^1.614^1.930^6^1.534^1.831^~2, 3~^~04/01/2009~ -~11770~^~410~^0.792^9^0.025^~6~^~JA~^^^2^0.590^0.878^6^0.730^0.854^~2, 3~^~04/01/2009~ -~11770~^~415~^0.139^9^0.011^~6~^~JA~^^^2^0.060^0.338^4^0.109^0.170^~2, 3~^~04/01/2009~ -~11770~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~502~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~503~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~504~^0.358^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~508~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~509~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~510~^0.191^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~511~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~512~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~514~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~515~^0.655^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~516~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~517~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11770~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~613~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~617~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~618~^0.586^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11770~^~645~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11770~^~646~^0.603^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11771~^~312~^0.028^38^0.002^~6~^~JA~^^^7^0.000^0.057^23^0.025^0.032^~2, 3~^~04/01/2011~ -~11771~^~315~^0.082^39^0.003^~6~^~JA~^^^7^0.008^0.120^24^0.075^0.088^~2, 3~^~04/01/2011~ -~11771~^~404~^0.015^5^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~11771~^~405~^0.015^5^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~11771~^~406~^0.884^5^0.058^~1~^~A~^^^1^0.660^0.990^4^0.722^1.046^~2, 3~^~04/01/2011~ -~11771~^~410~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11771~^~415~^0.037^39^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11771~^~501~^0.015^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~502~^0.048^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~503~^0.050^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~504~^0.198^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~505~^0.150^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~506~^0.037^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~507~^0.024^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~508~^0.074^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~509~^0.062^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~510~^0.075^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~511~^0.066^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~512~^0.043^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~513~^0.129^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~514~^0.112^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~515~^0.315^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~516~^0.058^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~517~^0.200^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~518~^0.089^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~11771~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~606~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~613~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~617~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~618~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11771~^~645~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11771~^~646~^0.234^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2015~ -~11772~^~312~^0.052^81^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~315~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~404~^0.025^274^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~405~^0.053^297^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~406~^0.960^304^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~410~^0.180^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~415~^0.063^14^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~504~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~510~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~513~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~515~^0.343^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~518~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11772~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~613~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~617~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~618~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~645~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11772~^~646~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~312~^0.048^57^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~315~^0.067^15^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~404~^0.041^71^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~405~^0.073^71^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~406~^1.167^70^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~410~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~415~^0.055^15^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~502~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~504~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~505~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~513~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~514~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~515~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~517~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~518~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11773~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~613~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~617~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~618~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~645~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11773~^~646~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11774~^~312~^0.048^2^^~1~^^^^2^0.027^0.072^23^^^^~09/01/2002~ -~11774~^~315~^0.155^2^^~1~^^^^2^0.080^0.279^23^^^^~09/01/2002~ -~11774~^~404~^0.030^4^0.001^~1~^^^^1^0.028^0.031^3^0.027^0.032^~4~^~09/01/2002~ -~11774~^~405~^0.062^4^0.007^~1~^^^^1^0.054^0.083^3^0.040^0.084^~4~^~09/01/2002~ -~11774~^~406~^1.311^4^0.016^~1~^^^^1^1.268^1.341^3^1.261^1.361^~4~^~09/01/2002~ -~11774~^~410~^0.151^4^0.010^~1~^^^^1^0.138^0.179^3^0.121^0.182^~4~^~09/01/2002~ -~11774~^~415~^0.099^4^0.010^~1~^^^^1^0.083^0.128^3^0.067^0.130^~4~^~09/01/2002~ -~11774~^~501~^0.031^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~502~^0.115^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~503~^0.137^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~504~^0.251^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~505~^0.153^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~506~^0.068^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~507~^0.038^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~508~^0.131^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~509~^0.106^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~510~^0.167^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~511~^0.126^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~512~^0.067^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~513~^0.172^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~514~^0.219^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~515~^0.438^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~516~^0.085^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~517~^0.181^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~518~^0.156^0^^~1~^~DA~^^^^^^^^^^~09/01/2002~ -~11774~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11774~^~606~^0.066^0^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~613~^0.062^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~614~^0.004^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~617~^0.126^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~618~^0.197^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~619~^0.006^1^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~645~^0.126^0^^~1~^^^^^^^^^^^~09/01/2002~ -~11774~^~646~^0.203^0^^~1~^^^^^^^^^^^~09/01/2002~ -~11775~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~315~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~404~^0.174^3^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~405~^0.069^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~406~^1.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~415~^0.224^3^0.141^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~502~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~503~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~504~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~509~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~511~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~512~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~513~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~515~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~516~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~517~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11775~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~613~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~617~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~618~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~645~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11775~^~646~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~312~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~315~^0.572^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~404~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~405~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~406~^1.403^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~410~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~415~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~502~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~503~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~504~^0.226^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~505~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~506~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~507~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~508~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~509~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~510~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~511~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~512~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11777~^~606~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~618~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~619~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~630~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~645~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11777~^~646~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~312~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~315~^0.791^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~404~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~405~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~406~^0.728^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~410~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~502~^0.316^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~503~^0.455^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~504~^0.606^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~505~^0.558^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~507~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~508~^0.466^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~509~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~510~^0.492^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~511~^0.595^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~512~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11778~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11778~^~606~^0.175^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~612~^0.002^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~613~^0.140^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~614~^0.022^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~617~^0.035^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~618~^0.159^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~619~^0.116^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~626~^0.002^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~630~^0.021^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~645~^0.060^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11778~^~646~^0.280^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11779~^~312~^0.071^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~315~^0.219^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~404~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~410~^0.638^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~415~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11779~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11779~^~606~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~617~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~618~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~630~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11779~^~646~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~312~^0.154^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~315~^0.412^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~404~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~405~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~406~^1.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~410~^0.046^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~415~^0.135^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11780~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11780~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11780~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~315~^0.372^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~404~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~405~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~410~^0.163^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~415~^0.157^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11781~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11781~^~606~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~617~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~618~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~619~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~628~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~630~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~645~^0.205^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11781~^~646~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~312~^0.115^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~315~^0.230^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~404~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~405~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11782~^~406~^0.514^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~410~^0.057^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~415~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11782~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11783~^~312~^0.059^21^0.018^~6~^~JA~^^^8^0.000^0.236^7^0.016^0.101^~2~^~01/01/2003~ -~11783~^~315~^0.113^21^0.011^~6~^~JA~^^^8^0.069^0.249^7^0.087^0.138^~2~^~01/01/2003~ -~11783~^~404~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~406~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~410~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~415~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~502~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~503~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~510~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~511~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~513~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~514~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~515~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~517~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~518~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11783~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~613~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11783~^~646~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~312~^0.026^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~315~^0.066^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~404~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~405~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~410~^0.144^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11784~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~503~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~505~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~511~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~512~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11784~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11784~^~606~^0.002^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11784~^~613~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11784~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11784~^~617~^0.004^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11784~^~618~^0.009^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11784~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11784~^~646~^0.009^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11785~^~312~^0.085^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~315~^0.223^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~405~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~406~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~410~^0.501^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~415~^0.099^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11785~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11785~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~617~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~618~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~645~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11785~^~646~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~312~^0.086^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~315~^0.868^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~404~^0.222^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~405~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~406~^1.995^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~410~^0.102^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~415~^0.929^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11786~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~502~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~503~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~504~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~505~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~507~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~508~^0.273^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~509~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~510~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~511~^0.298^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~512~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~513~^0.395^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~514~^0.516^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~515~^0.580^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~516~^0.290^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~517~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~518~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11786~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11787~^~312~^0.078^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~315~^0.241^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~404~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~405~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~406~^0.590^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11787~^~410~^0.701^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~415~^0.112^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11787~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11788~^~312~^0.048^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~315~^0.210^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~404~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~405~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~406~^0.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~410~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~415~^0.023^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11788~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~503~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~505~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~508~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~510~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~511~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~512~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~513~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~514~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~515~^0.360^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~516~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~518~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11788~^~606~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~617~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~645~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11788~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~312~^0.255^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~315~^0.123^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~404~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~405~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~406~^0.890^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~415~^0.570^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11789~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~502~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~503~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~504~^0.306^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~505~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~506~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~508~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~509~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~510~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~511~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~513~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~514~^0.448^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~515~^0.389^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~516~^0.169^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~518~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11789~^~606~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~618~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11789~^~646~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11790~^~312~^0.067^6^0.010^~1~^~A~^^^1^0.038^0.098^5^0.041^0.094^~2, 3~^~10/01/2016~ -~11790~^~315~^0.542^6^0.062^~1~^~A~^^^1^0.371^0.796^5^0.382^0.701^~2, 3~^~10/01/2016~ -~11790~^~404~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~10/01/2016~ -~11790~^~405~^0.140^3^0.015^~1~^~A~^^^1^0.120^0.170^2^0.074^0.206^~2, 3~^~10/01/2016~ -~11790~^~406~^0.457^3^0.050^~1~^~A~^^^1^0.360^0.530^2^0.240^0.673^~2, 3~^~10/01/2016~ -~11790~^~410~^0.170^2^^~1~^~A~^^^1^0.160^0.180^1^^^^~10/01/2016~ -~11790~^~415~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~2, 3~^~10/01/2016~ -~11790~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~503~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~505~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~513~^0.148^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~514~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~515~^0.332^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~516~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~517~^0.174^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~518~^0.124^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11790~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11790~^~606~^0.156^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~607~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~608~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~609~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~610~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~611~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~612~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~613~^0.139^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~614~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~617~^0.091^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~618~^0.255^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~619~^0.331^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~620~^0.003^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~621~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~626~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~627~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~628~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~629~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~630~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~631~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11790~^~645~^0.091^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11790~^~646~^0.589^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~312~^0.067^6^0.010^~1~^~A~^^^1^0.038^0.098^5^0.041^0.094^~2, 3~^~10/01/2016~ -~11791~^~315~^0.542^6^0.062^~1~^~A~^^^1^0.371^0.796^5^0.382^0.701^~2, 3~^~10/01/2016~ -~11791~^~404~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~10/01/2016~ -~11791~^~405~^0.140^3^0.015^~1~^~A~^^^1^0.120^0.170^2^0.074^0.206^~2, 3~^~10/01/2016~ -~11791~^~406~^0.457^3^0.050^~1~^~A~^^^1^0.360^0.530^2^0.240^0.673^~2, 3~^~10/01/2016~ -~11791~^~410~^0.170^2^^~1~^~A~^^^1^0.160^0.180^1^^^^~10/01/2016~ -~11791~^~415~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~2, 3~^~10/01/2016~ -~11791~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/1984~ -~11791~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~503~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~505~^0.176^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~506~^0.029^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~510~^0.160^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~513~^0.148^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~514~^0.263^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~515~^0.332^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~516~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~517~^0.174^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~518~^0.124^0^^~1~^~A~^^^^^^^^^^~10/01/2016~ -~11791~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~ -~11791~^~606~^0.158^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~607~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~608~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~609~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~610~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~611~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~612~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~613~^0.141^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~614~^0.006^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~617~^0.092^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~618~^0.258^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~619~^0.336^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~620~^0.003^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~621~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~626~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~627~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~628~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~629~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~630~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~631~^0.000^0^^~4~^~BFSN~^~11235~^^^^^^^^^~10/01/2016~ -~11791~^~645~^0.092^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11791~^~646~^0.597^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~11793~^~312~^0.132^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~315~^0.142^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~410~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~415~^0.154^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11793~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~502~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~505~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~508~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~510~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~511~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11793~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~617~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~619~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11793~^~646~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~312~^0.197^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~315~^0.525^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~405~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~406~^0.900^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~410~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~415~^0.174^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11794~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~503~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~504~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~505~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~507~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~509~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~510~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~511~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~512~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~513~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~514~^0.329^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~515~^0.397^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~516~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~517~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~518~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11794~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~617~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~618~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~628~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~630~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~645~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11794~^~646~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~312~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~315~^0.247^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~404~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~405~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~406~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~410~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~415~^0.113^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11795~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~513~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~514~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~518~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11795~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~619~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11795~^~646~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~312~^0.217^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~315~^0.220^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~404~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~405~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~406~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~410~^0.302^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~415~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11796~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~504~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~511~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~514~^0.223^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~515~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~517~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11796~^~606~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~617~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~618~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11796~^~646~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~312~^0.504^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~404~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~405~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~406~^4.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~410~^2.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11797~^~501~^0.024^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~502~^0.075^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~503~^0.053^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~504~^0.084^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~505~^0.075^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~506~^0.022^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~507~^0.009^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~508~^0.060^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~509~^0.031^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~510~^0.163^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~511~^0.055^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~512~^0.040^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~513~^0.140^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~514~^0.137^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~515~^0.241^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~516~^0.064^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~517~^0.054^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~518~^0.066^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~ -~11797~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11797~^~606~^0.061^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~611~^0.005^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~613~^0.030^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~618~^0.179^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~619~^0.001^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~645~^0.008^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11797~^~646~^0.183^0^^~1~^^^^^^^^^^^~08/01/2009~ -~11798~^~312~^0.896^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~315~^0.204^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~404~^0.037^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~405~^0.170^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~406~^1.500^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~410~^3.594^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~415~^0.159^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11798~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~502~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~503~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~504~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~505~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~506~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~508~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~510~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~511~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~513~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~514~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~515~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~517~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~518~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11798~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11798~^~606~^0.050^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~610~^0.004^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~611~^0.002^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~612~^0.004^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~613~^0.027^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~614~^0.012^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~617~^0.034^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~618~^0.031^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~619~^0.003^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~626~^0.020^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~630~^0.016^0^^~1~^^^^^^^^^^^~02/01/2010~ -~11798~^~645~^0.070^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11798~^~646~^0.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~11799~^~312~^0.098^0^^~4~^~BFSN~^~11234~^^^^^^^^^~08/01/2012~ -~11799~^~404~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~405~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~406~^0.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~415~^0.098^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11799~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11799~^~606~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~628~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~630~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11799~^~645~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11799~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~315~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~404~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~405~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~406~^0.258^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~410~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~501~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~502~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~504~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~505~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~506~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~508~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~509~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~510~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~511~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11800~^~606~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~613~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~628~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~630~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~645~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11800~^~646~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11801~^~312~^0.050^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~315~^0.270^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~404~^0.041^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~405~^0.062^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~406~^0.430^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~410~^0.119^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~415~^0.097^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11801~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11802~^~312~^0.077^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~315~^0.526^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~404~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~405~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~406~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~410~^0.256^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~415~^0.237^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11802~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11802~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~617~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~618~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~619~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11802~^~646~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~312~^0.085^18^0.009^~1~^~A~^^^7^0.038^0.209^6^0.063^0.107^~2~^~01/01/2003~ -~11803~^~315~^0.294^18^0.014^~1~^~A~^^^7^0.111^0.424^6^0.258^0.329^~2~^~01/01/2003~ -~11803~^~404~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~405~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~406~^0.871^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~410~^0.213^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~415~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~502~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~503~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~504~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~505~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~508~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~509~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~510~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~511~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~512~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~514~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~515~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~517~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~518~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11803~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11803~^~606~^0.045^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2004~ -~11803~^~613~^0.038^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~614~^0.004^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~617~^0.028^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~618~^0.045^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~619~^0.001^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2004~ -~11803~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2004~ -~11803~^~645~^0.028^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11803~^~646~^0.046^0^^~1~^^^^^^^^^^^~06/01/2005~ -~11804~^~312~^0.076^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~315~^0.844^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~404~^0.073^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~405~^0.096^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~406~^0.616^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~410~^0.209^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~415~^0.037^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~501~^0.014^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~502~^0.055^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~503~^0.058^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~504~^0.089^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~505~^0.068^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~506~^0.018^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~507~^0.016^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~508~^0.055^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~509~^0.073^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~510~^0.077^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~511~^0.071^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~512~^0.026^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~513~^0.061^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~514~^0.122^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~515~^0.228^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~516~^0.037^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~517~^0.038^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~518~^0.037^0^^~4~^~NR~^^^^^^^^^^~05/01/2010~ -~11804~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11804~^~606~^0.063^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~607~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~608~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~609~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~610~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~611~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~612~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~613~^0.053^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~614~^0.006^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~617~^0.040^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~618~^0.063^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~619~^0.001^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~620~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~621~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~626~^0.001^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~627~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~628~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~629~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~630~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~631~^0.000^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~645~^0.040^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11804~^~646~^0.064^0^^~4~^~BFSN~^~11280~^^^^^^^^^~05/01/2010~ -~11805~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~315~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~406~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~410~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~415~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~511~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~514~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~515~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~516~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~517~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~518~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11805~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~613~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~617~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~618~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~619~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11805~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11805~^~646~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~312~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~315~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~404~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~406~^0.139^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11806~^~410~^0.099^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11806~^~415~^0.069^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11806~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~503~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~504~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~505~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~508~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~510~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~511~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~514~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~516~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~518~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11806~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11806~^~606~^0.016^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~607~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~608~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~609~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~610~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~611~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~613~^0.014^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~614~^0.001^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~617~^0.013^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~618~^0.036^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~619~^0.002^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~620~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~626~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~627~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~629~^0.000^0^^~4~^~BFZN~^~11288~^^^^^^^^^~03/01/2007~ -~11806~^~645~^0.013^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11806~^~646~^0.038^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~312~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~315~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~404~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~405~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~406~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~410~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~415~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~503~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~505~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~508~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~510~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~511~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~514~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~515~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~517~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~518~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11807~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11807~^~606~^0.009^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~607~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~608~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~609~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~610~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~611~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~613~^0.008^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~614~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11807~^~617~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~618~^0.019^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~619~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11807~^~626~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~630~^0.000^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~ -~11807~^~645~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11807~^~646~^0.020^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11808~^~312~^0.138^5^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~315~^0.294^5^0.041^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~404~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~405~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~406~^0.724^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~410~^0.588^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~415~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11808~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11808~^~606~^0.050^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~607~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~608~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~609~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~610~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~611~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~613~^0.030^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~614~^0.014^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~617~^0.102^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~618~^0.041^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~619~^0.003^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~620~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~626~^0.003^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~627~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~630~^0.000^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~ -~11808~^~645~^0.112^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11808~^~646~^0.047^0^^~1~^^^^^^^^^^^~12/01/2005~ -~11809~^~312~^0.077^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~315~^0.168^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~405~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~406~^0.539^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~410~^0.673^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~415~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~501~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~503~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~504~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~505~^0.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~507~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~509~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~510~^0.319^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~511~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~514~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~515~^0.523^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~516~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~517~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~518~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11809~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11809~^~606~^0.044^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~612~^0.002^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~614~^0.003^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~617~^0.023^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~618~^0.085^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~619~^0.015^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~645~^0.023^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11809~^~646~^0.100^0^^~1~^^^^^^^^^^^~05/01/2007~ -~11810~^~312~^0.090^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11810~^~315~^0.280^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11810~^~404~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~405~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~406~^0.563^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~410~^0.857^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~415~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~502~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~503~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~504~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~505~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~507~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~509~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~510~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~511~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~513~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~514~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~515~^0.560^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~516~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~517~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~518~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11810~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~618~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~619~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~645~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11810~^~646~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~312~^0.173^14^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~315~^0.525^14^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~404~^0.259^12^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~405~^0.149^12^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~406~^2.021^12^0.070^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~410~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~415~^0.216^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~502~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~503~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~504~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~505~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~506~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~507~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~508~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~509~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~510~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~511~^0.423^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~512~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~514~^0.490^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~515~^0.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~516~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~517~^0.171^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~518~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11811~^~606~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~618~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11811~^~646~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~312~^0.108^167^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~315~^0.264^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~404~^0.111^479^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~405~^0.073^459^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~406~^0.842^452^^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~410~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~415~^0.065^9^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11812~^~501~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~502~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~503~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~504~^0.190^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~505~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~506~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~507~^0.019^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~508~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~509~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~510~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~511~^0.252^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~512~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~513~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~514~^0.292^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~515~^0.436^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~516~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~517~^0.102^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~518~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1996~ -~11812~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11812~^~606~^0.054^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~613~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~614~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~617~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~618~^0.115^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~619~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11812~^~645~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11812~^~646~^0.142^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11813~^~312~^0.082^11^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~315~^0.303^10^0.033^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~404~^0.121^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~405~^0.078^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~406~^0.732^6^0.048^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~410~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~415~^0.064^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~502~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~503~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~504~^0.264^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~505~^0.259^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~506~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~507~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~508~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~509~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~510~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~511~^0.349^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~514~^0.404^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~515~^0.604^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~516~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~517~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11813~^~606~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~617~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~618~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~619~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~645~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11813~^~646~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~312~^0.105^47^0.003^~1~^^^^5^0.047^0.144^46^0.099^0.111^~4~^~11/01/2006~ -~11814~^~315~^0.279^48^0.009^~1~^^^^5^0.166^0.394^47^0.262^0.297^~4~^~11/01/2006~ -~11814~^~404~^0.283^11^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~405~^0.100^11^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~406~^1.480^9^0.053^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~410~^0.142^3^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~415~^0.113^11^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~502~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~503~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~505~^0.302^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~506~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~507~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~508~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~509~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~510~^0.223^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~511~^0.407^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~512~^0.101^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~513~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~514~^0.471^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~515~^0.705^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~516~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~517~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~518~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11814~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11814~^~606~^0.049^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~607~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~608~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~609~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~610~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~611~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~612~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~613~^0.044^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~614~^0.005^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~617~^0.024^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~618~^0.105^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~619~^0.024^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~620~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~626~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~627~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~628~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~630~^0.000^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~ -~11814~^~645~^0.024^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11814~^~646~^0.129^0^^~1~^^^^^^^^^^^~11/01/2006~ -~11815~^~312~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~315~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~404~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~405~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~406~^1.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~410~^0.683^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~415~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~502~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~503~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~504~^0.473^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~505~^0.497^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~507~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~508~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~509~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~510~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~511~^0.627^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~512~^0.217^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~513~^0.317^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~514~^0.849^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~515~^1.317^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~516~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~517~^0.359^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~518~^0.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11815~^~606~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~617~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~618~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~619~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~645~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11815~^~646~^0.240^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~312~^0.103^28^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~315~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~404~^0.074^154^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~405~^0.053^155^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~406~^0.581^155^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~415~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~502~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~503~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~504~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~505~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~508~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~509~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~510~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~511~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~512~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~513~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~514~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~515~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~516~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~517~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~518~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11816~^~606~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~613~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~617~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~618~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~619~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11816~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11816~^~646~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~312~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~315~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~404~^0.225^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~405~^0.064^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~406~^1.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~410~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~415~^0.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~502~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~503~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~504~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~505~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~506~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~508~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~510~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~511~^0.234^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~512~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~513~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~514~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~515~^0.439^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~516~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~517~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~518~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11817~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11817~^~606~^0.077^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~607~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~608~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~609~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~610~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~611~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11817~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~613~^0.068^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~614~^0.007^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11817~^~617~^0.035^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~618~^0.164^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~619~^0.036^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~620~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~621~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11817~^~627~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~628~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~629~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~630~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~631~^0.000^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~ -~11817~^~645~^0.035^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11817~^~646~^0.201^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11818~^~312~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~315~^0.166^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~404~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~405~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~406~^1.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~410~^0.090^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~415~^0.087^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11818~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~502~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~503~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~504~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~505~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~506~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~508~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~509~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~510~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~511~^0.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~512~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~513~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~514~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~515~^0.351^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~516~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~517~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~518~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11818~^~606~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~613~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~617~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~618~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~619~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11818~^~645~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11818~^~646~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~312~^0.129^2^^~1~^^^^1^0.110^0.148^1^^^^~01/01/2003~ -~11819~^~315~^0.187^2^^~1~^^^^1^0.159^0.215^1^^^^~01/01/2003~ -~11819~^~404~^0.072^4^0.015^~1~^^^^2^0.028^0.100^3^0.023^0.121^~4~^~01/01/2004~ -~11819~^~405~^0.086^4^0.007^~1~^^^^2^0.068^0.100^3^0.063^0.109^~4~^~01/01/2004~ -~11819~^~406~^1.244^4^0.171^~1~^^^^2^0.900^1.575^3^0.698^1.789^~4~^~01/01/2004~ -~11819~^~410~^0.201^2^^~1~^^^^1^0.153^0.248^1^^^^~01/01/2003~ -~11819~^~415~^0.506^2^^~1~^^^^1^0.415^0.596^1^^^^~01/01/2003~ -~11819~^~501~^0.026^11^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~502~^0.074^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~503~^0.065^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~504~^0.105^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~505~^0.089^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~506~^0.024^13^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~507~^0.038^6^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~508~^0.062^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~509~^0.042^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~510~^0.084^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~511~^0.096^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~512~^0.041^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~513~^0.082^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~514~^0.286^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~515~^0.264^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~516~^0.074^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~517~^0.087^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~518~^0.080^7^^~1~^^^^^^^^^^^~08/01/1984~ -~11819~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11819~^~606~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~612~^0.002^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~613~^0.033^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~617~^0.024^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~618~^0.228^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~619~^0.011^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11819~^~645~^0.024^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11819~^~646~^0.239^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11820~^~312~^0.101^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~315~^0.138^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~404~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~405~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~406~^0.800^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~410~^0.034^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~415~^0.153^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11820~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~504~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~505~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~507~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~511~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~512~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~514~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~515~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~517~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~518~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11820~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~618~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11820~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11820~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11821~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~11/01/2002~ -~11821~^~315~^0.112^4^0.013^~1~^~A~^^^1^0.079^0.140^3^0.072^0.152^~2, 3~^~10/01/2002~ -~11821~^~404~^0.054^4^0.005^~1~^~A~^^^1^0.041^0.063^3^0.039^0.068^~2, 3~^~11/01/2002~ -~11821~^~405~^0.085^4^0.004^~1~^~A~^^^1^0.076^0.092^3^0.074^0.097^~2, 3~^~11/01/2002~ -~11821~^~406~^0.979^4^0.085^~1~^~A~^^^1^0.813^1.130^3^0.709^1.249^~2, 3~^~11/01/2002~ -~11821~^~410~^0.317^4^0.044^~1~^~A~^^^1^0.233^0.436^3^0.177^0.458^~2, 3~^~10/01/2002~ -~11821~^~415~^0.291^4^0.041^~1~^~A~^^^1^0.222^0.401^3^0.161^0.421^~2, 3~^~11/01/2002~ -~11821~^~501~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~502~^0.040^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~503~^0.021^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~504~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~505~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~507~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~508~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~510~^0.031^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~511~^0.036^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~512~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~513~^0.026^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~514~^0.284^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~515~^0.211^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~516~^0.028^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~517~^0.024^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~518~^0.050^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11821~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11821~^~606~^0.059^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11821~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~11821~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~ -~11821~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~613~^0.056^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~02/01/2017~ -~11821~^~614~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2017~ -~11821~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~617~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2017~ -~11821~^~618~^0.100^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~02/01/2017~ -~11821~^~619~^0.056^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~02/01/2017~ -~11821~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~626~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2017~ -~11821~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11821~^~646~^0.156^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~11821~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11821~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~11822~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~406~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~415~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~515~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11822~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11822~^~606~^0.029^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~607~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~608~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~609~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~610~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~613~^0.022^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~617~^0.012^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~618~^0.096^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~619~^0.010^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~620~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11822~^~630~^0.000^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~ -~11822~^~645~^0.013^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11822~^~646~^0.106^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11823~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~406~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~415~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~515~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11823~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~613~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~618~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11823~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11823~^~646~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~315~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~404~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~405~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~406~^0.477^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~415~^0.233^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~502~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~503~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~504~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~515~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11824~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11824~^~606~^0.029^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~607~^0.000^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~608~^0.000^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~609~^0.000^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~610~^0.000^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~ -~11824~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~613~^0.022^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~617~^0.012^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~618~^0.096^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~619~^0.010^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11824~^~645~^0.013^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11824~^~646~^0.106^0^^~1~^^^^^^^^^^^~03/01/2007~ -~11825~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~315~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~406~^1.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~410~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~502~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~503~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~504~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~505~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~508~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~510~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~511~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~513~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~514~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~515~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~516~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~517~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~518~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11825~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~613~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~617~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~618~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11825~^~646~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~312~^0.105^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11826~^~315~^0.451^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11826~^~404~^0.350^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~405~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~406~^2.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~410~^0.630^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11826~^~415~^0.053^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11826~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11826~^~606~^0.365^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~613~^0.082^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~618~^0.860^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~619~^0.039^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11826~^~646~^0.899^0^^~1~^^^^^^^^^^^~08/01/2015~ -~11827~^~312~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~315~^0.336^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~405~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~406~^1.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11827~^~410~^0.039^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~415~^0.111^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11827~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11828~^~312~^0.118^46^0.002^~6~^~JA~^^^4^0.050^0.199^3^0.113^0.122^~2~^~05/01/2002~ -~11828~^~315~^0.219^47^0.003^~6~^~JA~^^^4^0.152^0.374^3^0.211^0.228^~2~^~05/01/2002~ -~11828~^~404~^0.064^21^^~1~^~A~^^^0^0.048^0.072^^^^~2~^~05/01/2002~ -~11828~^~405~^0.048^21^^~1~^~A~^^^0^0.043^0.050^^^^~2~^~05/01/2002~ -~11828~^~406~^1.410^21^^~1~^~A~^^^0^1.348^1.595^^^^~2~^~05/01/2002~ -~11828~^~410~^0.376^21^^~1~^~A~^^^0^0.341^0.383^^^^~2~^~05/01/2002~ -~11828~^~415~^0.311^21^^~1~^~A~^^^0^0.211^0.354^^^^~2~^~05/01/2002~ -~11828~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~502~^0.081^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~503~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~504~^0.119^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~505~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~506~^0.038^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~508~^0.099^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~509~^0.058^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~511~^0.123^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~512~^0.042^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~513~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~514~^0.583^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~515~^0.427^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~516~^0.069^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~517~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~518~^0.091^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11828~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11828~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11828~^~607~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~608~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~609~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~610~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~611~^0.004^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~612~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~613~^0.022^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~614~^0.005^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~617~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~618~^0.043^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~619~^0.013^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~620~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~621~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~626~^0.001^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~627~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~628~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~629~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~630~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~631~^0.000^0^^~4~^~BFFN~^~11674~^^^^^^^^^~05/01/2002~ -~11828~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~ -~11828~^~646~^0.057^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~11829~^~312~^0.215^6^0.043^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~315~^0.161^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~404~^0.105^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~405~^0.021^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~406~^1.395^6^0.102^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~410~^0.555^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~415~^0.301^6^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~502~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~503~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~504~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~505~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~508~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~510~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~511~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~512~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~514~^0.479^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~515~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~516~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~518~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11829~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11829~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~312~^0.817^6^0.069^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~315~^0.616^6^0.099^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~404~^0.122^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~405~^0.106^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~406~^3.065^5^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~410~^0.857^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11830~^~415~^0.614^6^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11830~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11830~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~312~^0.188^6^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~315~^0.138^6^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~404~^0.106^6^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~405~^0.020^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~406~^1.439^6^0.110^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~410~^0.520^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~415~^0.299^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~502~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~503~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~504~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~505~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~506~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~508~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~509~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~510~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~511~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~512~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~514~^0.457^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~515~^0.314^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~516~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~517~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~518~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11831~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11831~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11831~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~312~^0.878^5^0.144^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~315~^1.338^5^0.225^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~404~^0.032^5^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~405~^0.036^5^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~406~^1.222^5^0.152^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~410~^0.361^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11832~^~415~^0.239^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11832~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11832~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~312~^0.167^6^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~315~^0.140^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~404~^0.098^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~405~^0.019^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~406~^1.312^6^0.176^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~410~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~415~^0.269^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~502~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~504~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~505~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~506~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~508~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~510~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~511~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~513~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~514~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~515~^0.287^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~516~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~517~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~518~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11833~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11833~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11833~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~312~^0.334^10^0.036^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~315~^0.292^10^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~404~^0.120^10^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~405~^0.032^10^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~406~^1.714^10^0.107^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~410~^0.454^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11834~^~415~^0.344^10^0.022^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~502~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~503~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~504~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~505~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~507~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~508~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~509~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~511~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~512~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~513~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~514~^0.598^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~515~^0.410^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~516~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~517~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~518~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11834~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11834~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~312~^0.237^5^0.042^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~315~^0.170^5^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~404~^0.129^5^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~405~^0.025^5^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~406~^1.625^5^0.111^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~410~^0.597^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~415~^0.319^5^0.025^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~502~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~504~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~506~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~508~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~509~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~510~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~511~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~512~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~513~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~514~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~515~^0.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~516~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~517~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~518~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11835~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11835~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~312~^0.882^5^0.039^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~315~^0.980^5^0.147^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~404~^0.071^5^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~405~^0.075^5^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~406~^2.220^5^0.343^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~410~^0.594^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11836~^~415~^0.492^5^0.042^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11836~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~645~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11836~^~646~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~312~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~315~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~404~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~406~^1.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~410~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~415~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~501~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~502~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~503~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~504~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~505~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~508~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~510~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~511~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~512~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~514~^0.483^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~515~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~516~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~517~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~518~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11837~^~606~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~617~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~618~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11837~^~646~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~312~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~315~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~404~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~406~^2.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~410~^0.690^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~415~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~502~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~503~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~504~^0.207^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~505~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~508~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~509~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~510~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~511~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~512~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~513~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~514~^0.796^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~515~^0.537^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~516~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~517~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~518~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~606~^3.894^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~613~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~614~^0.566^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~617~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~618~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~645~^3.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11840~^~646~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11841~^~312~^0.135^54^0.007^~6~^~JA~^^^6^0.063^0.314^37^0.121^0.150^~2, 3~^~03/01/2005~ -~11841~^~315~^0.210^54^0.006^~6~^~JA~^^^6^0.120^0.368^41^0.198^0.223^~2, 3~^~03/01/2005~ -~11841~^~404~^0.128^6^0.005^~1~^~A~^^^1^0.115^0.149^5^0.115^0.140^~2, 3~^~03/01/2005~ -~11841~^~405~^0.031^6^0.006^~1~^~A~^^^1^0.015^0.047^5^0.017^0.046^~1, 2, 3~^~03/01/2005~ -~11841~^~406~^2.218^6^0.053^~1~^~A~^^^1^2.060^2.380^5^2.081^2.356^~2, 3~^~03/01/2005~ -~11841~^~410~^0.522^6^0.018^~1~^~A~^^^1^0.458^0.581^5^0.476^0.569^~2, 3~^~03/01/2005~ -~11841~^~415~^0.184^5^0.010^~1~^~A~^^^1^0.162^0.221^4^0.155^0.213^~2, 3~^~03/01/2005~ -~11841~^~606~^1.029^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11841~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~612~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~613~^0.548^6^0.067^~1~^~A~^^^1^0.376^0.767^5^0.377^0.719^~2, 3~^~03/01/2005~ -~11841~^~614~^0.445^6^0.060^~1~^~A~^^^1^0.315^0.652^5^0.291^0.598^~2, 3~^~03/01/2005~ -~11841~^~615~^0.018^6^0.002^~1~^~A~^^^1^0.012^0.025^5^0.012^0.024^~2, 3~^~03/01/2005~ -~11841~^~617~^3.224^6^0.429^~1~^~A~^^^1^2.197^4.642^5^2.121^4.327^~2, 3~^~03/01/2005~ -~11841~^~618~^0.279^6^0.027^~1~^~A~^^^1^0.163^0.368^5^0.209^0.348^~2, 3~^~03/01/2005~ -~11841~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~11841~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~624~^0.016^6^0.002^~1~^~A~^^^1^0.009^0.023^5^0.011^0.022^~2, 3~^~03/01/2005~ -~11841~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~626~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.008^~1, 2, 3~^~03/01/2005~ -~11841~^~628~^0.008^6^0.002^~1~^~A~^^^1^0.004^0.014^5^0.004^0.012^~1, 2, 3~^~03/01/2005~ -~11841~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~ -~11841~^~645~^3.237^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11841~^~646~^0.321^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11841~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~653~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.005^5^-0.001^0.004^~1, 2, 3~^~03/01/2005~ -~11841~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11841~^~851~^0.021^6^0.002^~1~^~A~^^^1^0.017^0.027^5^0.017^0.025^~2, 3~^~03/01/2005~ -~11842~^~312~^0.093^6^0.009^~1~^~A~^^^1^0.071^0.127^5^0.069^0.116^~2, 3~^~03/01/2005~ -~11842~^~315~^0.158^6^0.005^~1~^~A~^^^1^0.143^0.179^5^0.145^0.170^~2, 3~^~03/01/2005~ -~11842~^~404~^0.098^6^0.011^~1~^~A~^^^1^0.064^0.128^5^0.069^0.128^~2, 3~^~03/01/2005~ -~11842~^~405~^0.048^6^0.011^~1~^~A~^^^1^0.030^0.103^5^0.019^0.076^~2, 3~^~03/01/2005~ -~11842~^~406~^2.038^6^0.060^~1~^~A~^^^1^1.860^2.240^5^1.884^2.192^~2, 3~^~03/01/2005~ -~11842~^~410~^0.473^6^0.027^~1~^~A~^^^1^0.394^0.577^5^0.405^0.541^~2, 3~^~03/01/2005~ -~11842~^~415~^0.178^6^0.007^~1~^~A~^^^1^0.157^0.203^5^0.161^0.195^~2, 3~^~03/01/2005~ -~11842~^~606~^0.940^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~11842~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~612~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~613~^0.498^6^0.057^~1~^~A~^^^1^0.351^0.683^5^0.353^0.644^~2, 3~^~03/01/2005~ -~11842~^~614~^0.407^6^0.051^~1~^~A~^^^1^0.267^0.588^5^0.276^0.538^~2, 3~^~03/01/2005~ -~11842~^~615~^0.017^6^0.002^~1~^~A~^^^1^0.012^0.022^5^0.013^0.022^~2, 3~^~03/01/2005~ -~11842~^~617~^2.938^6^0.365^~1~^~A~^^^1^1.987^4.074^5^2.000^3.875^~2, 3~^~03/01/2005~ -~11842~^~618~^0.247^6^0.025^~1~^~A~^^^1^0.133^0.318^5^0.182^0.312^~2, 3~^~03/01/2005~ -~11842~^~619~^0.018^6^0.001^~1~^~AS~^^^1^0.015^0.022^5^0.015^0.021^~2, 3~^~10/01/2005~ -~11842~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~624~^0.016^6^0.001^~1~^~A~^^^1^0.012^0.021^5^0.012^0.020^~2, 3~^~03/01/2005~ -~11842~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~626~^0.009^6^0.002^~1~^~A~^^^1^0.003^0.019^5^0.003^0.016^~1, 2, 3~^~03/01/2005~ -~11842~^~628~^0.013^6^0.001^~1~^~A~^^^1^0.007^0.017^5^0.010^0.017^~1, 2, 3~^~03/01/2005~ -~11842~^~645~^2.960^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~11842~^~646~^0.265^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~11842~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~653~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.004^~1, 2, 3~^~03/01/2005~ -~11842~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~11842~^~851~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.021^~2, 3~^~03/01/2005~ -~11843~^~312~^0.160^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~315~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~404~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~405~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~406~^0.993^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~410~^0.387^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~415~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~502~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~503~^0.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~504~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~505~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~507~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~508~^0.254^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~509~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~510~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~511~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~512~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~513~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~514~^0.569^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~515~^1.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~516~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~517~^0.463^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~518~^0.275^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~606~^3.530^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~607~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~608~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~609~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~610~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~611~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~612~^0.479^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~613~^1.698^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~614~^0.773^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~617~^2.388^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~618~^0.978^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~619~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~626~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~645~^2.587^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11843~^~646~^1.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~312~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~315~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~404~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~405~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~406~^1.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~410~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~415~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~503~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~504~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~505~^0.192^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~506~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~508~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~509~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~511~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~512~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~513~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~514~^0.442^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~515~^0.579^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~516~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~517~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~518~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~606~^1.377^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~607~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~608~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~609~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~610~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~611~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~612~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~613~^0.665^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~614~^0.335^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~617~^1.296^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~618~^0.693^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~626~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~645~^1.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11844~^~646~^0.746^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~312~^0.091^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~315~^0.089^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~404~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~405~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~406~^0.413^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~410~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~415~^0.044^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11845~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~502~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~503~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~506~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~508~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~510~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~511~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~514~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~515~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~517~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11845~^~606~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11845~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~312~^0.107^15^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~315~^0.149^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11846~^~404~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~405~^0.054^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~406~^0.367^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~410~^0.400^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~415~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11846~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~502~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~503~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~504~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~505~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~509~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~511~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~513~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~514~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~515~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~517~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11846~^~606~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~612~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~613~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~614~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~618~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11846~^~646~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~312~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11847~^~404~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~405~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~406~^0.310^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~415~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11847~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11847~^~606~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~613~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~618~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~619~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11847~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~312~^0.133^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~315~^0.355^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~404~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~405~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~406~^0.850^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~410~^0.042^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~415~^0.196^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11848~^~501~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~502~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~503~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~504~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~505~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~506~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~508~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~509~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~510~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~511~^0.187^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~512~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11848~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~612~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~613~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~618~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~626~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~645~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11848~^~646~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~315~^0.307^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~404~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~405~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~406~^0.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~410~^0.036^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~415~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11849~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~503~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~504~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~505~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~510~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~511~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~514~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~515~^0.219^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~516~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~518~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11849~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11850~^~312~^0.101^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~315~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~405~^0.023^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~406~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~410~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11850~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~502~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~509~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~510~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~511~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~514~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~515~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~516~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~517~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11850~^~606~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~613~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~617~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~618~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~619~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~645~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11850~^~646~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~312~^0.029^1^^~6~^~JA~^^^2^0.029^0.041^^^^^~08/01/2012~ -~11851~^~315~^0.097^1^^~6~^~JA~^^^2^0.097^0.174^^^^^~08/01/2012~ -~11851~^~404~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~405~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~406~^0.715^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~410~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~415~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11851~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~613~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~617~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~618~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~619~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/2012~ -~11851~^~645~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11851~^~646~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~312~^0.070^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~315~^0.210^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~404~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~405~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~406~^0.392^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11852~^~410~^0.276^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~415~^0.218^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11852~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11853~^~312~^0.117^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~315~^0.502^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~404~^0.260^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~405~^0.155^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~406~^1.250^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~410~^0.128^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~415~^0.060^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11853~^~501~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~502~^0.492^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~503~^0.543^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~504~^0.883^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~505~^0.739^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~506~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~507~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~508~^0.559^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~509~^0.443^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~510~^0.549^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~511~^0.994^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~512~^0.332^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~513~^0.555^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~514~^1.439^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~515~^2.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~516~^0.514^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~517~^0.579^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~518~^0.688^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11853~^~606~^0.740^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~612~^0.005^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~613~^0.537^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~614~^0.198^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~617~^1.188^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~618~^2.657^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~619~^0.354^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~628~^0.010^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~645~^1.209^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11853~^~646~^3.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~312~^0.174^16^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~315~^0.935^15^0.061^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~404~^0.095^12^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~405~^0.236^12^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~406~^0.490^12^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~410~^0.145^12^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~415~^0.242^12^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~502~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~503~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~504~^0.231^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~505~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~506~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~508~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~509~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~510~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~511~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~514~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~515~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~516~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~517~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~518~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11854~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11854~^~606~^0.043^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11854~^~612~^0.006^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~613~^0.033^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~617~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~618~^0.017^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~619~^0.092^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/2008~ -~11854~^~645~^0.006^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11854~^~646~^0.109^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~11855~^~312~^0.116^47^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~315~^0.493^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~404~^0.018^146^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~405~^0.106^269^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~406~^0.271^122^0.016^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~410~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~415~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~501~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~502~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~503~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~504~^0.164^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~505~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~508~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~509~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~510~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~511~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~512~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~513~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~514~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~515~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~516~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~517~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~518~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11855~^~606~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~607~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~608~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~609~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~610~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~611~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~612~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~613~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~619~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~620~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~621~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~627~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~628~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~629~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~630~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~631~^0.000^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~ -~11855~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11855~^~646~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11856~^~312~^0.161^6^0.013^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~315~^0.717^6^0.038^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~404~^0.078^6^0.006^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~405~^0.176^6^0.007^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~406~^0.439^5^0.035^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~410~^0.075^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~415~^0.136^6^0.006^~1~^~A~^^^1^^^^^^^~12/01/2002~ -~11856~^~501~^0.101^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~502~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~503~^0.128^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~504~^0.205^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~505~^0.256^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~506~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~507~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~508~^0.211^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~509~^0.219^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~510~^0.181^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~511~^0.489^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~513~^0.222^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~514~^0.436^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~515~^0.516^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~516~^0.225^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~517~^0.201^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~518~^0.173^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11856~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11856~^~606~^0.036^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11856~^~607~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~608~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~609~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~610~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~611~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~612~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~613~^0.036^4^0.036^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11856~^~614~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~615~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~617~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~618~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~619~^0.086^4^0.053^~1~^~A~^^^1^^^^^^^~03/01/2006~ -~11856~^~620~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~621~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~624~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~625~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~626~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~627~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~628~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~629~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~630~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~631~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11856~^~646~^0.086^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11856~^~652~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~653~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11856~^~654~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~02/01/2004~ -~11857~^~312~^0.103^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~315~^0.213^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~404~^0.044^9^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~405~^0.041^9^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~406~^0.513^6^0.044^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~410~^0.137^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~415~^0.065^9^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~504~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~505~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~508~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~511~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~513~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~514~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~515~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11857~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~613~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~617~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~618~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~619~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11857~^~646~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~312~^0.065^31^0.004^~6~^~JA~^^^6^0.030^0.116^14^0.056^0.073^~2, 3~^~04/01/2009~ -~11858~^~315~^0.157^31^0.008^~6~^~JA~^^^6^0.075^0.257^16^0.141^0.174^~2, 3~^~04/01/2009~ -~11858~^~404~^0.043^3^0.009^~1~^~A~^^^1^0.030^0.060^2^0.005^0.081^~2, 3~^~04/01/2009~ -~11858~^~405~^0.025^3^0.008^~1~^~A~^^^1^0.015^0.040^2^-0.008^0.058^~1, 2, 3~^~04/01/2009~ -~11858~^~406~^0.507^3^0.055^~1~^~A~^^^1^0.400^0.580^2^0.272^0.741^~2, 3~^~04/01/2009~ -~11858~^~410~^0.323^3^0.012^~1~^~A~^^^1^0.300^0.340^2^0.272^0.375^~2, 3~^~04/01/2009~ -~11858~^~415~^0.078^3^0.007^~1~^~A~^^^1^0.064^0.085^2^0.048^0.108^~2, 3~^~04/01/2009~ -~11858~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~502~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~503~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~504~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~505~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~508~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~509~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~510~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~511~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~513~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~514~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~515~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~516~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~517~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~518~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11858~^~606~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11858~^~611~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~613~^0.056^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~614~^0.006^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~617~^0.021^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~618~^0.049^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~619~^0.082^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~620~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~621~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11858~^~627~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~628~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~629~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~630~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~631~^0.000^0^^~4~^~BFZN~^~11468~^^^^^^^^^~04/01/2009~ -~11858~^~645~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11858~^~646~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~312~^0.073^6^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~315~^0.263^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~404~^0.036^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~405~^0.047^6^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~406~^0.440^6^0.027^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~410~^0.102^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~415~^0.099^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~501~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~503~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~504~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~505~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~508~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~509~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~510~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~511~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~513~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~515~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~516~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~518~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11859~^~606~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~613~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~617~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~618~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~619~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11859~^~646~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~312~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~315~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~405~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~406~^0.464^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~410~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~415~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~502~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~503~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~504~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~508~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~509~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~510~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~511~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~513~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~514~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~515~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~516~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~518~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11860~^~606~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~613~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~618~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~619~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~645~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11860~^~646~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~312~^0.052^4^0.004^~1~^~A~^^^1^0.042^0.059^3^0.040^0.064^~2, 3~^~04/01/2009~ -~11861~^~315~^0.173^4^0.032^~1~^~A~^^^1^0.136^0.267^3^0.072^0.273^~2, 3~^~04/01/2009~ -~11861~^~404~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~04/01/2009~ -~11861~^~405~^0.024^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.012^0.036^~1, 2, 3~^~04/01/2009~ -~11861~^~406~^0.510^4^0.025^~1~^~A~^^^1^0.450^0.560^3^0.431^0.589^~2, 3~^~04/01/2009~ -~11861~^~410~^0.288^4^0.022^~1~^~A~^^^1^0.240^0.330^3^0.217^0.358^~2, 3~^~04/01/2009~ -~11861~^~415~^0.080^4^0.004^~1~^~A~^^^1^0.074^0.091^3^0.068^0.092^~2, 3~^~04/01/2009~ -~11861~^~501~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~502~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~503~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~504~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~505~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~508~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~511~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~514~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~515~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~517~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11861~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11861~^~606~^0.072^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~11861~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~613~^0.065^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~614~^0.007^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~617~^0.029^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~618~^0.058^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~619~^0.094^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11861~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11861~^~646~^0.151^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~11862~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~315~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~404~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~405~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~406~^0.386^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~410~^0.265^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~415~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~502~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~503~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~504~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~505~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~506~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~507~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~508~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~510~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~511~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~512~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~514~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~515~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~516~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~517~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11862~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~618~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~619~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11862~^~646~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~312~^0.082^9^0.016^~1~^^^^2^0.050^0.100^2^0.013^0.150^~4~^~08/01/2011~ -~11863~^~315~^0.187^9^0.023^~1~^^^^2^0.140^0.211^2^0.086^0.288^~4~^~08/01/2011~ -~11863~^~404~^0.016^2^^~1~^^^^1^0.004^0.028^1^^^^~08/01/2011~ -~11863~^~405~^0.067^2^^~1~^^^^1^0.065^0.068^1^^^^~08/01/2011~ -~11863~^~406~^0.495^2^^~1~^^^^1^0.470^0.520^1^^^^~08/01/2011~ -~11863~^~410~^0.234^2^^~1~^^^^1^0.207^0.260^1^^^^~08/01/2011~ -~11863~^~415~^0.161^2^^~1~^^^^1^0.136^0.185^1^^^^~08/01/2011~ -~11863~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~504~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~510~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~511~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~514~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~515~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11863~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11863~^~606~^0.072^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~607~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~608~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~609~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~610~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~613~^0.062^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~618~^0.055^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~619~^0.092^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~620~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~621~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~627~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~628~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~629~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~630~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~631~^0.000^0^^~4~^~BFSN~^~11644~^^^^^^^^^~08/01/2011~ -~11863~^~645~^0.026^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11863~^~646~^0.147^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11864~^~312~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~315~^0.242^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11864~^~404~^0.167^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~405~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~406~^0.881^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~410~^0.504^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~415~^0.194^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~502~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~503~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~504~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~505~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~507~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~508~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~509~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~510~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~511~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~512~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~513~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~514~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~515~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~517~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~518~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11864~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~613~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~618~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~619~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11864~^~646~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~312~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~315~^0.146^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11865~^~404~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~405~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~406~^0.531^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~410~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~415~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~504~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~505~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~506~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~510~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~513~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~514~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~515~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~516~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~518~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11865~^~606~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~618~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~619~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11865~^~646~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~312~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~315~^0.172^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11866~^~404~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~405~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~406~^0.969^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11866~^~410~^0.359^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11866~^~415~^0.124^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11866~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~504~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~507~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~508~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~509~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~510~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~511~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~513~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~514~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~515~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~516~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~517~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~518~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11866~^~606~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~613~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~618~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~645~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11866~^~646~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~312~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~315~^0.173^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11867~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~405~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~406~^0.464^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~410~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~415~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~502~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~503~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~504~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~505~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~508~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~509~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~510~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~511~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~513~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~515~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~516~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~517~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~518~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11867~^~606~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~613~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~618~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11867~^~646~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~312~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~315~^0.170^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11868~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~405~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~406~^0.558^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~410~^0.447^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~415~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~502~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~504~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~509~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~510~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~511~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~514~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~515~^0.259^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~518~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11868~^~606~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~607~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~608~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~609~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~610~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~613~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~617~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~618~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~619~^0.162^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~620~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~621~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~627~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~628~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~629~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~630~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~631~^0.000^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~ -~11868~^~645~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11868~^~646~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~315~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11869~^~404~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~406~^0.334^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~410~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~415~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~502~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~503~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~504~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~508~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~509~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~510~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~511~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~514~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~515~^0.259^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~518~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11869~^~606~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~613~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~617~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~618~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11869~^~646~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~312~^0.035^3^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~315~^0.109^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11870~^~404~^0.038^3^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~405~^0.022^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~406~^0.810^3^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~410~^0.355^3^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~415~^0.099^3^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~503~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~504~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~505~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~507~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~508~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~509~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~510~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~511~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~514~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~515~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~518~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11870~^~606~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~613~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~618~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~619~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~645~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11870~^~646~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~312~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~315~^0.769^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11871~^~404~^0.168^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~405~^0.096^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~406~^1.327^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~410~^0.567^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~415~^0.116^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~501~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~503~^0.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~504~^0.446^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~505~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~507~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~508~^0.245^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~509~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~510~^0.308^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~511~^0.296^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~512~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~513~^0.279^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~514~^0.493^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~515~^0.764^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~516~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~517~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~518~^0.292^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11871~^~606~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~613~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~614~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~617~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~618~^0.321^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~619~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~645~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11871~^~646~^0.381^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~312~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~315~^0.280^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~404~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~405~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~406~^1.306^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~410~^0.232^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~415~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~502~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~503~^0.243^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~504~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~505~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~506~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~507~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~508~^0.208^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~509~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~510~^0.262^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~511~^0.251^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~512~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~514~^0.419^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~515~^0.649^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~516~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~517~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~518~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11872~^~606~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~613~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~614~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~617~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~618~^0.361^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~619~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~645~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11872~^~646~^0.427^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~312~^0.021^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~315~^0.143^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~404~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~405~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~406~^0.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~410~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~415~^0.081^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11873~^~502~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~505~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~507~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~508~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~510~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~511~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~514~^0.519^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~515~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~516~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~518~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11873~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~11874~^~312~^0.033^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~315~^0.229^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~404~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~405~^0.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~406~^1.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~410~^0.200^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~415~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11874~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11874~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~612~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~613~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~617~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~618~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~619~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~626~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2012~ -~11874~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11874~^~646~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11875~^~312~^0.161^68^0.007^~6~^~JA~^^^12^0.020^0.417^67^0.147^0.175^~1, 4~^~05/01/2004~ -~11875~^~315~^0.497^68^0.038^~6~^~JA~^^^12^0.109^1.850^67^0.421^0.573^~4~^~04/01/2003~ -~11875~^~404~^0.107^3^0.018^~1~^~A~^^^1^0.077^0.139^2^0.030^0.184^~2, 3~^~12/01/2003~ -~11875~^~405~^0.106^4^0.005^~1~^~A~^^^1^0.095^0.118^3^0.091^0.122^~2, 3~^~04/01/2003~ -~11875~^~406~^1.487^4^0.284^~1~^~A~^^^1^1.050^2.250^3^0.585^2.390^~2, 3~^~04/01/2003~ -~11875~^~410~^0.884^4^0.130^~1~^~A~^^^1^0.661^1.220^3^0.470^1.297^~2, 3~^~04/01/2003~ -~11875~^~415~^0.286^4^0.056^~1~^~A~^^^1^0.208^0.452^3^0.109^0.464^~2, 3~^~04/01/2003~ -~11875~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~502~^0.107^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~503~^0.070^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~504~^0.118^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~505~^0.084^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~506~^0.037^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~507~^0.028^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~508~^0.114^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~509~^0.044^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~510~^0.110^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~511~^0.070^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~512~^0.039^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~513~^0.099^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~514~^0.488^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~515~^0.198^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~516~^0.081^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~517~^0.067^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~518~^0.113^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~11875~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~11875~^~606~^0.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11875~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~613~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~02/01/2007~ -~11875~^~614~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2007~ -~11875~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~617~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~02/01/2007~ -~11875~^~618~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~02/01/2007~ -~11875~^~619~^0.006^2^^~1~^~A~^^^1^0.002^0.010^1^^^~1~^~02/01/2007~ -~11875~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~645~^0.002^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11875~^~646~^0.092^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~11875~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11875~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2004~ -~11876~^~312~^0.094^4^0.011^~1~^~A~^^^1^0.075^0.115^3^0.058^0.129^~1, 2, 3~^~05/01/2004~ -~11876~^~315~^0.266^4^0.064^~1~^~A~^^^1^0.113^0.397^3^0.061^0.472^~2, 3~^~04/01/2003~ -~11876~^~404~^0.056^4^0.004^~1~^~A~^^^1^0.044^0.063^3^0.043^0.068^~2, 3~^~04/01/2003~ -~11876~^~405~^0.047^4^0.004^~1~^~A~^^^1^0.039^0.056^3^0.035^0.059^~2, 3~^~04/01/2003~ -~11876~^~406~^0.538^4^0.036^~1~^~A~^^^1^0.467^0.639^3^0.423^0.654^~2, 3~^~04/01/2003~ -~11876~^~410~^0.581^4^0.028^~1~^~A~^^^1^0.537^0.663^3^0.492^0.671^~2, 3~^~04/01/2003~ -~11876~^~415~^0.165^4^0.025^~1~^~A~^^^1^0.114^0.233^3^0.085^0.245^~2, 3~^~04/01/2003~ -~11876~^~501~^0.020^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~502~^0.082^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~503~^0.082^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~504~^0.121^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~505~^0.081^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~506~^0.041^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~507~^0.013^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~508~^0.099^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~509~^0.068^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~510~^0.108^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~511~^0.077^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~512~^0.031^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~513~^0.090^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~514~^0.282^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~515~^0.161^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~516~^0.074^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~517~^0.072^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~518~^0.085^0^^~1~^^^^^^^^^^^~11/01/2003~ -~11876~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11876~^~606~^0.040^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11876~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11876~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~ -~11876~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~613~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~08/01/2009~ -~11876~^~614~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~617~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~618~^0.080^2^^~1~^~A~^^^1^0.080^0.080^^^^^~08/01/2009~ -~11876~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11876~^~646~^0.080^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~11876~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11876~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2009~ -~11877~^~312~^0.183^6^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~315~^0.665^6^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~404~^0.066^6^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~405~^0.056^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~406~^0.555^6^0.029^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~410~^0.560^6^0.083^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~415~^0.186^6^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~503~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~504~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~505~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~508~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~510~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~511~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~513~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~514~^0.293^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~515~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~516~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~517~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~518~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11877~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~613~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~618~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~619~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11877~^~646~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~312~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~315~^0.449^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~404~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~406~^0.510^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~410~^0.336^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~415~^0.331^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11878~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~502~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~503~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~504~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~505~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~509~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~510~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~511~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~513~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~514~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~515~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11878~^~606~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~618~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~619~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11878~^~646~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~312~^0.140^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~315~^0.371^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~404~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~405~^0.380^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~406~^1.267^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~410~^0.044^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~415~^0.072^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11879~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~502~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~503~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~504~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~505~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~508~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~509~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~510~^0.140^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~511~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11879~^~606~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~613~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~617~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~618~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~619~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~645~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11879~^~646~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~312~^0.094^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~315~^0.130^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~404~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~405~^0.053^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~406~^0.810^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~410~^0.076^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~415~^0.112^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11880~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11880~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~613~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~617~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~618~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~645~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11880~^~646~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~312~^0.076^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~315~^0.168^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~404~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~405~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~406~^0.480^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~410~^0.126^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~415~^0.117^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11881~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11881~^~606~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~613~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~614~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~617~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~618~^0.196^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~619~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~645~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11881~^~646~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~312~^0.075^4^0.000^~1~^~A~^^^1^0.075^0.075^3^0.075^0.075^~4~^~05/01/2004~ -~11884~^~315~^0.105^4^0.014^~1~^~A~^^^1^0.075^0.139^3^0.061^0.149^~4~^~05/01/2004~ -~11884~^~404~^0.036^4^0.002^~1~^~A~^^^1^0.032^0.040^3^0.031^0.041^~4~^~05/01/2004~ -~11884~^~405~^0.022^4^0.001^~1~^~A~^^^1^0.018^0.024^3^0.018^0.027^~4~^~05/01/2004~ -~11884~^~406~^0.532^4^0.039^~1~^~A~^^^1^0.460^0.615^3^0.408^0.656^~4~^~05/01/2004~ -~11884~^~410~^0.129^4^0.051^~1~^~A~^^^1^0.041^0.262^3^-0.034^0.293^~4~^~05/01/2004~ -~11884~^~415~^0.079^4^0.005^~1~^~A~^^^1^0.064^0.090^3^0.062^0.097^~4~^~05/01/2004~ -~11884~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~502~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~504~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~505~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~508~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~509~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~510~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~511~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~513~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~514~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~515~^0.393^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~516~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~517~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~518~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11884~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11884~^~606~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~613~^0.011^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~614~^0.004^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~617~^0.016^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~618~^0.042^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~619~^0.002^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2004~ -~11884~^~645~^0.016^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11884~^~646~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~11885~^~312~^0.052^18^0.001^~1~^~A~^^^1^0.045^0.065^12^0.049^0.055^~2, 3~^~08/01/2014~ -~11885~^~315~^0.068^18^0.002^~1~^~A~^^^1^0.058^0.084^12^0.064^0.072^~2, 3~^~08/01/2014~ -~11885~^~404~^0.575^4^0.351^~1~^~A~^^^1^0.081^1.660^2^-0.935^2.085^~2, 3~^~04/01/2014~ -~11885~^~405~^0.055^4^0.004^~1~^~A~^^^1^0.047^0.063^2^0.040^0.071^~2, 3~^~03/01/2006~ -~11885~^~406~^0.712^4^0.004^~1~^~A~^^^1^0.707^0.723^2^0.697^0.727^~2, 3~^~03/01/2006~ -~11885~^~410~^0.117^3^0.002^~1~^~A~^^^1^0.111^0.127^1^0.090^0.145^~2, 3~^~04/01/2014~ -~11885~^~415~^0.111^3^0.003^~1~^~A~^^^1^0.107^0.116^1^0.069^0.153^~2, 3~^~03/01/2006~ -~11885~^~501~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~502~^0.042^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~503~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~504~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~505~^0.028^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~508~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~509~^0.018^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~510~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~511~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~512~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~513~^0.032^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~514~^0.153^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~515~^0.451^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~516~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~517~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~518~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11885~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11885~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~613~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~614~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~617~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~618~^0.097^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2014~ -~11885~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11885~^~645~^0.040^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11885~^~646~^0.101^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~312~^0.042^12^0.002^~1~^~A~^^^1^0.032^0.054^7^0.038^0.046^~2, 3~^~08/01/2014~ -~11886~^~315~^0.068^12^0.002^~1~^~A~^^^1^0.058^0.078^9^0.064^0.071^~2, 3~^~08/01/2014~ -~11886~^~404~^0.100^3^0.012^~1~^~A~^^^1^0.080^0.120^2^0.050^0.150^~2, 3~^~08/01/2014~ -~11886~^~405~^0.078^3^0.003^~1~^~A~^^^1^0.075^0.083^2^0.066^0.089^~2, 3~^~08/01/2014~ -~11886~^~406~^0.673^3^0.019^~1~^~A~^^^1^0.650^0.710^2^0.593^0.753^~2, 3~^~08/01/1984~ -~11886~^~415~^0.070^3^0.006^~1~^~A~^^^1^0.060^0.080^2^0.045^0.095^~2, 3~^~08/01/2014~ -~11886~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~502~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~503~^0.017^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~504~^0.024^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~505~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~507~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~508~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~509~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~510~^0.017^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~511~^0.020^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~512~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~513~^0.026^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~514~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~515~^0.416^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~516~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~517~^0.015^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~518~^0.025^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11886~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~606~^0.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~612~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2014~ -~11886~^~613~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~08/01/2014~ -~11886~^~614~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2014~ -~11886~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~617~^0.005^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2014~ -~11886~^~618~^0.022^3^0.001^~1~^~AS~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~08/01/2014~ -~11886~^~619~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~08/01/2014~ -~11886~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~626~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/1984~ -~11886~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/1984~ -~11886~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~11886~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11886~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~646~^0.027^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~673~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~674~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2014~ -~11886~^~675~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~08/01/2014~ -~11886~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2014~ -~11886~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11886~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~851~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~08/01/2014~ -~11886~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11886~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11888~^~312~^0.287^6^0.037^~1~^~A~^^^1^0.202^0.433^5^0.193^0.381^~2, 3~^~11/01/2002~ -~11888~^~315~^0.169^6^0.012^~1~^~A~^^^1^0.132^0.204^5^0.138^0.201^~2, 3~^~11/01/2002~ -~11888~^~404~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.027^5^0.023^0.027^~2, 3~^~11/01/2002~ -~11888~^~405~^0.080^6^0.002^~1~^~A~^^^1^0.075^0.091^5^0.074^0.086^~2, 3~^~11/01/2002~ -~11888~^~406~^1.466^6^0.034^~1~^~A~^^^1^1.371^1.570^5^1.378^1.554^~2, 3~^~11/01/2002~ -~11888~^~410~^0.440^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11888~^~415~^0.126^6^0.004^~1~^~A~^^^1^0.111^0.139^5^0.114^0.137^~2, 3~^~11/01/2002~ -~11888~^~501~^0.011^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~502~^0.038^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~503~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~504~^0.047^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11888~^~505~^0.049^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11888~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~507~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~508~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~509~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~510~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~511~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~512~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~513~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11888~^~514~^0.277^3^0.011^~1~^~A~^^^1^0.265^0.298^2^0.232^0.322^~2, 3~^~11/01/2002~ -~11888~^~515~^0.812^3^0.043^~1~^~A~^^^1^0.754^0.896^2^0.628^0.997^~2, 3~^~11/01/2002~ -~11888~^~516~^0.028^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~517~^0.037^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~518~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11888~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11888~^~606~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11888~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~613~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11888~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11888~^~617~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11888~^~618~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11888~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~11888~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2007~ -~11888~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11888~^~646~^0.086^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~11889~^~312~^0.064^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11889~^~315~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11889~^~404~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~405~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~406~^0.299^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~410~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~415~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~502~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~503~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~504~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~505~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~506~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~508~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~509~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~510~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~511~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~512~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~513~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~514~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~515~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~516~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~517~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~518~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11889~^~606~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~607~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~608~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~609~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~610~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~611~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~612~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~ -~11889~^~613~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~618~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~620~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~621~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~627~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~628~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~629~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~630~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~631~^0.000^0^^~4~^~BFZN~^~11565~^^^^^^^^^~11/01/2014~ -~11889~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11889~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~312~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~315~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~404~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~406~^0.560^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~410~^0.141^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~415~^0.067^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11890~^~501~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~502~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~503~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~504~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~505~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~506~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~507~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~508~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~510~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~511~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~512~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~513~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~515~^0.221^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~516~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~517~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~518~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11890~^~606~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~607~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~608~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~609~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~610~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~611~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~612~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~614~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~618~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~619~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~620~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~621~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~627~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~628~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~629~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~630~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~631~^0.000^0^^~4~^~BFSN~^~11565~^^^^^^^^^~11/01/2014~ -~11890~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11890~^~646~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~312~^0.253^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~315~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~404~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~405~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~406~^0.411^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~410~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~415~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~502~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~503~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~504~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~506~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~508~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~509~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~510~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~511~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~512~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~513~^0.078^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~514~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~515~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~516~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~517~^0.054^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11891~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~613~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~618~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~619~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~626~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~645~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11891~^~646~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~312~^0.150^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~315~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~404~^0.054^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~405~^0.074^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~406~^0.468^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~410~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~415~^0.067^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~502~^0.184^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~503~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~504~^0.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~505~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~506~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~507~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~508~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~509~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~510~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~511~^0.210^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~512~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~513~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~514~^0.353^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~515~^0.457^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~516~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~518~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11892~^~606~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~613~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~614~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~617~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~618~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~619~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~626~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11892~^~646~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11893~^~312~^0.133^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~315~^0.400^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~404~^0.050^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~405~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~406~^0.486^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~410~^0.083^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~415~^0.067^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~501~^0.049^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~502~^0.156^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~503~^0.151^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~504~^0.257^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~505~^0.187^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~506~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~507~^0.032^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~508~^0.171^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~509~^0.109^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~510~^0.193^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~511~^0.176^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~512~^0.070^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~513~^0.195^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~514~^0.304^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~515~^0.410^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~516~^0.169^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~517~^0.135^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~518~^0.119^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11893~^~606~^0.085^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~609~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~610~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~612~^0.003^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~613~^0.065^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~614~^0.012^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~617~^0.008^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~618~^0.046^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~619~^0.114^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~626~^0.016^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~645~^0.024^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11893~^~646~^0.160^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~ -~11894~^~312~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~315~^0.379^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~404~^0.071^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~405~^0.120^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~406~^0.851^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~410~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~415~^0.074^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~502~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~503~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~504~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~505~^0.170^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~506~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~507~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~508~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~509~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~510~^0.149^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~511~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~512~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~513~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~514~^0.303^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~515~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~517~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~518~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11894~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~607~^0.000^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~608~^0.000^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~609~^0.000^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~610~^0.000^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~ -~11894~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~617~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~618~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~645~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11894~^~646~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~312~^0.022^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~315~^0.056^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~405~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~406~^0.384^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~410~^0.121^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~415~^0.032^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11895~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~505~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11895~^~606~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~613~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~617~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~618~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~645~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11895~^~646~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~312~^0.037^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11896~^~315~^0.158^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11896~^~404~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~405~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11896~^~406~^0.652^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11896~^~410~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11896~^~415~^0.082^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11896~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11896~^~606~^0.101^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11896~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~613~^0.064^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~614~^0.036^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~617~^0.236^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~618~^0.156^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~619~^0.021^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~630~^0.001^0^^~1~^^^^^^^^^^^~05/01/2005~ -~11896~^~645~^0.237^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11896~^~646~^0.177^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~11897~^~312~^0.152^6^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~315~^0.371^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11897~^~404~^0.095^6^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~405~^0.028^6^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~406~^0.552^6^0.030^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~410~^0.311^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~415~^0.228^6^0.011^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~502~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~503~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~504~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~505~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~506~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~507~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~508~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~509~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~510~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~511~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~512~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~514~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~515~^0.176^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~516~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~517~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~518~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11897~^~606~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~613~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~618~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~619~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11897~^~645~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11897~^~646~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~315~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~404~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~405~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~406~^0.190^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~410~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~415~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~502~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~503~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~504~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~505~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~508~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~511~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~513~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~514~^0.200^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~515~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~516~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~517~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~518~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11898~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11899~^~312~^0.047^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~315~^0.201^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~404~^0.085^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~405~^0.099^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~406~^0.630^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~410~^0.051^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~415~^0.024^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11899~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~502~^0.094^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~503~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~504~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~505~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~507~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~508~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~509~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~510~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~511~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11899~^~606~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~613~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~617~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~618~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~619~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~645~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11899~^~646~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~312~^0.054^101^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~315~^0.161^90^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~404~^0.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~405~^0.060^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~406~^1.700^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~410~^0.760^6^0.060^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~415~^0.055^6^0.009^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~501~^0.023^17^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~502~^0.129^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~503~^0.129^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~504~^0.348^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~505~^0.137^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~506~^0.067^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~507~^0.026^3^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~508~^0.150^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~509~^0.123^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~510~^0.185^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~511~^0.131^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~512~^0.089^21^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~513~^0.295^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~514~^0.244^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~515~^0.636^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~516~^0.127^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~517~^0.292^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~518~^0.153^5^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11900~^~606~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~613~^0.171^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~614~^0.011^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~617~^0.347^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~618~^0.542^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~619~^0.016^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~645~^0.347^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11900~^~646~^0.559^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~312~^0.057^9^0.003^~6~^~JA~^^^2^0.053^0.081^3^0.048^0.066^~2, 3~^~04/01/2009~ -~11901~^~315~^0.214^3^0.012^~6~^~JA~^^^2^0.191^0.228^2^0.164^0.264^~2, 3~^~04/01/2009~ -~11901~^~404~^0.090^3^0.012^~1~^~A~^^^1^0.070^0.110^2^0.040^0.140^~2, 3~^~04/01/2009~ -~11901~^~405~^0.053^3^0.009^~1~^~A~^^^1^0.040^0.070^2^0.015^0.091^~2, 3~^~04/01/2009~ -~11901~^~406~^1.666^9^0.061^~6~^~JA~^^^2^1.614^1.900^6^1.517^1.815^~2, 3~^~04/01/2009~ -~11901~^~410~^0.749^9^0.025^~6~^~JA~^^^2^0.450^0.878^6^0.687^0.810^~2, 3~^~04/01/2009~ -~11901~^~415~^0.127^9^0.007^~6~^~JA~^^^2^0.060^0.274^6^0.110^0.144^~2, 3~^~04/01/2009~ -~11901~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~502~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~503~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~504~^0.358^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~508~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~509~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~510~^0.191^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~511~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~512~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~514~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~515~^0.655^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~516~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~517~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11901~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~613~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~617~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~618~^0.586^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11901~^~645~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11901~^~646~^0.603^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~312~^0.057^9^0.003^~6~^~JA~^^^2^0.053^0.081^3^0.048^0.066^~2, 3~^~04/01/2009~ -~11902~^~315~^0.214^3^0.012^~6~^~JA~^^^2^0.191^0.228^2^0.164^0.264^~2, 3~^~04/01/2009~ -~11902~^~404~^0.090^3^0.012^~1~^~A~^^^1^0.070^0.110^2^0.040^0.140^~2, 3~^~04/01/2009~ -~11902~^~405~^0.053^3^0.009^~1~^~A~^^^1^0.040^0.070^2^0.015^0.091^~2, 3~^~04/01/2009~ -~11902~^~406~^1.666^9^0.061^~6~^~JA~^^^2^1.614^1.900^6^1.517^1.815^~2, 3~^~04/01/2009~ -~11902~^~410~^0.749^9^0.025^~6~^~JA~^^^2^0.450^0.878^6^0.687^0.810^~2, 3~^~04/01/2009~ -~11902~^~415~^0.127^9^0.007^~6~^~JA~^^^2^0.060^0.274^6^0.110^0.144^~2, 3~^~04/01/2009~ -~11902~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~502~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~503~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~504~^0.358^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~505~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~508~^0.155^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~509~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~510~^0.191^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~511~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~512~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~514~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~515~^0.655^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~516~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~517~^0.301^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11902~^~606~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~613~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~617~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~618~^0.586^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~619~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2009~ -~11902~^~645~^0.374^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11902~^~646~^0.603^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~312~^0.056^97^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~315~^0.033^39^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~404~^0.026^202^^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~405~^0.061^219^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~406~^0.939^218^0.051^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~410~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~415~^0.037^39^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11903~^~501~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~502~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~503~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~504~^0.210^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~505~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~506~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~507~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~508~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~509~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~510~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~511~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~512~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~513~^0.178^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~514~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~515~^0.385^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~516~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~517~^0.177^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11903~^~518~^0.092^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11903~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11903~^~606~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11903~^~613~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~617~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~618~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~645~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11903~^~646~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11904~^~312~^0.056^97^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~315~^0.033^39^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~404~^0.026^202^^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~405~^0.061^219^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~406~^0.939^218^0.051^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~410~^0.522^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~415~^0.037^39^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11904~^~501~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~502~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~503~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~504~^0.210^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~505~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~506~^0.040^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~507~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~508~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~509~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~510~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~511~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~512~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~513~^0.178^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~514~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~515~^0.385^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~516~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~517~^0.177^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1996~ -~11904~^~518~^0.092^0^^~4~^~BFPN~^^^^^^^^^^~08/01/1984~ -~11904~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11904~^~606~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11904~^~613~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~617~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~618~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~645~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11904~^~646~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1996~ -~11905~^~312~^0.033^22^0.001^~1~^~A~^^^2^0.026^0.039^2^0.029^0.037^~2, 3~^~04/01/2016~ -~11905~^~315~^0.067^22^0.002^~1~^~A~^^^2^0.053^0.085^6^0.061^0.072^~2, 3~^~04/01/2016~ -~11905~^~404~^0.039^13^0.000^~1~^~A~^^^2^0.015^0.060^2^0.037^0.040^~1, 2, 3~^~04/01/2016~ -~11905~^~405~^0.089^13^0.008^~1~^~A~^^^2^0.015^0.150^3^0.063^0.115^~1, 2, 3~^~04/01/2016~ -~11905~^~406~^1.005^13^0.033^~1~^~A~^^^2^0.780^1.200^4^0.909^1.101^~2, 3~^~04/01/2016~ -~11905~^~410~^0.209^6^0.036^~1~^~A~^^^1^0.140^0.290^1^-0.184^0.602^~2, 3~^~04/01/2016~ -~11905~^~415~^0.037^9^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~501~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11905~^~502~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~503~^0.072^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~504~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~505~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~506~^0.053^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~507~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~508~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~509~^0.088^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~510~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~511~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~512~^0.062^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~513~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~514~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~515~^0.453^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~516~^0.083^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~517~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~518~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~11905~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~ -~11905~^~606~^0.245^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11905~^~610~^0.003^3^^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2016~ -~11905~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~612~^0.002^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~613~^0.190^3^^~1~^~A~^^^1^0.190^0.293^^^^~2, 3~^~04/01/2016~ -~11905~^~614~^0.039^3^^~1~^~A~^^^1^0.041^0.061^^^^~2, 3~^~04/01/2016~ -~11905~^~615~^0.007^3^^~1~^~A~^^^1^0.008^0.009^^^^~2, 3~^~04/01/2016~ -~11905~^~617~^0.367^3^^~1~^~AS~^^^1^0.389^0.577^^^^~2, 3~^~04/01/2016~ -~11905~^~618~^0.483^3^^~1~^~AS~^^^1^0.526^0.735^^^^~2, 3~^~04/01/2016~ -~11905~^~619~^0.018^3^^~1~^~AS~^^^1^0.019^0.027^^^^~2, 3~^~04/01/2016~ -~11905~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~11905~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~624~^0.003^3^^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~08/01/2014~ -~11905~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11905~^~626~^0.002^3^^~1~^~AS~^^^1^0.002^0.003^^^^~2, 3~^~04/01/2016~ -~11905~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~628~^0.004^3^^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~04/01/2016~ -~11905~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~ -~11905~^~645~^0.374^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~646~^0.519^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~11905~^~652~^0.002^3^^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~653~^0.001^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11905~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~687~^0.001^3^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2016~ -~11905~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2014~ -~11905~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~11905~^~851~^0.018^3^^~1~^~A~^^^1^0.019^0.027^^^^~2, 3~^~08/01/2014~ -~11906~^~312~^0.022^47^0.001^~1~^^^^5^0.000^0.039^46^0.019^0.024^~4~^~05/01/2013~ -~11906~^~315~^0.068^48^0.002^~1~^^^^5^0.046^0.112^47^0.063^0.072^~4~^~05/01/2013~ -~11906~^~404~^0.025^274^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~405~^0.053^297^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~406~^0.960^304^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~410~^0.180^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~415~^0.063^14^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~504~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~510~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~513~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~515~^0.343^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~518~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11906~^~606~^0.065^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11906~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~613~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~617~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~618~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11906~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11906~^~645~^0.123^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11906~^~646~^0.199^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~11907~^~312~^0.052^81^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~315~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~404~^0.025^274^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~405~^0.053^297^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~406~^0.960^304^0.028^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~410~^0.180^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~415~^0.063^14^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~503~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~504~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~505~^0.074^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~506~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~507~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~510~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~511~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~513~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~515~^0.343^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~516~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~517~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~518~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11907~^~606~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~613~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~617~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~618~^0.193^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~645~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11907~^~646~^0.198^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~312~^0.048^57^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~315~^0.067^15^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~404~^0.041^71^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~405~^0.073^71^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~406~^1.167^70^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~410~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~415~^0.055^15^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~502~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~504~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~505~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~513~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~514~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~515~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~517~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~518~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11908~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~613~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~617~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~618~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~645~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11908~^~646~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~312~^0.048^57^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~315~^0.067^15^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~404~^0.041^71^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~405~^0.073^71^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~406~^1.167^70^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~410~^0.675^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~415~^0.055^15^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~502~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~504~^0.260^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~505~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~506~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~507~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~509~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~512~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~513~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~514~^0.182^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~515~^0.475^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~517~^0.218^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~518~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11909~^~606~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~613~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~617~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~618~^0.230^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~619~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~645~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11909~^~646~^0.237^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~312~^0.036^16^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~315~^0.126^11^0.020^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~404~^0.083^78^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~405~^0.070^77^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~406~^1.726^78^0.182^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~410~^0.280^8^0.120^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~415~^0.178^20^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~501~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~502~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~504~^0.326^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~506~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~508~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~509~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~510~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~511~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~512~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~513~^0.276^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~514~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~515~^0.596^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~516~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~517~^0.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~518~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11910~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11910~^~606~^0.184^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~607~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~608~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~609~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~610~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~611~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~612~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~613~^0.159^3^0.021^~12~^~MA~^^^1^0.363^0.435^2^0.310^0.489^~2, 3~^~02/01/2013~ -~11910~^~614~^0.022^3^0.004^~12~^~MA~^^^1^0.047^0.060^2^0.038^0.072^~2, 3~^~02/01/2013~ -~11910~^~615~^0.004^2^^~12~^~MA~^^^1^0.009^0.010^1^^^^~02/01/2013~ -~11910~^~617~^0.182^3^0.220^~12~^~MA~^^^1^0.019^0.713^2^-0.491^1.407^~2, 3~^~02/01/2013~ -~11910~^~618~^0.329^3^0.013^~12~^~MA~^^^1^0.814^0.853^2^0.771^0.883^~2, 3~^~02/01/2013~ -~11910~^~619~^0.014^2^^~12~^~MA~^^^1^0.032^0.036^1^^^^~02/01/2013~ -~11910~^~620~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~624~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~625~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~626~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~628~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~630~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~645~^0.182^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~646~^0.342^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~11910~^~652~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~653~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~654~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~687~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~689~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~696~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~697~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11910~^~858~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~11911~^~312~^0.037^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~315~^0.127^7^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~404~^0.083^12^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~405~^0.071^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~406~^1.299^7^0.041^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~410~^0.180^7^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~415~^0.129^12^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~503~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~504~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~505~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~506~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~507~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~508~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~509~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~510~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~511~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~512~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~513~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~515~^0.471^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~516~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~518~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11911~^~606~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~613~^0.062^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~614~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~617~^0.126^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~618~^0.197^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~619~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11911~^~645~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11911~^~646~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~312~^0.037^7^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~315~^0.127^7^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~404~^0.083^12^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~405~^0.071^12^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~406~^1.299^7^0.041^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~410~^0.180^7^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~415~^0.129^12^0.035^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~501~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~503~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~504~^0.270^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~505~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~506~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~507~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~508~^0.141^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~509~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~510~^0.180^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~511~^0.136^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~512~^0.072^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~513~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~515~^0.471^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~516~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~518~^0.168^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11912~^~606~^0.066^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11912~^~607~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~608~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~609~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~610~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~611~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~612~^0.000^0^^~4~^~BFZN~^~11911~^^^^^^^^^~02/01/2007~ -~11912~^~613~^0.062^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~614~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~617~^0.126^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~618~^0.197^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~619~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~645~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11912~^~646~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~312~^0.051^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~315~^0.158^5^0.013^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~404~^0.103^57^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~405~^0.088^58^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~406~^1.681^57^0.045^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~410~^0.293^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~415~^0.179^12^0.038^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~502~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~503~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~504~^0.354^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~505~^0.139^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~508~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~510~^0.188^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~511~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~512~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~513~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~514~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~515~^0.647^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~516~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~517~^0.297^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~518~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11913~^~606~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~613~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~617~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~618~^0.356^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~619~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~645~^0.228^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11913~^~646~^0.367^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~315~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~404~^0.174^3^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~405~^0.069^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~406~^1.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~415~^0.224^3^0.141^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~502~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~503~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~504~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~509~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~511~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~512~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~513~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~515~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~516~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~517~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11914~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~613~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~617~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~618~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~645~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11914~^~646~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~312~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~315~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~404~^0.174^3^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~405~^0.069^3^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~406~^1.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~415~^0.224^3^0.141^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~502~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~503~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~504~^0.336^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~505~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~509~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~511~^0.126^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~512~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~513~^0.285^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~515~^0.615^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~516~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~517~^0.282^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~518~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11915~^~606~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~613~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~617~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~618~^0.338^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~645~^0.216^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11915~^~646~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~312~^0.130^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~315~^0.160^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11916~^~404~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~405~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~406~^0.550^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~410~^0.038^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~415~^0.178^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11916~^~501~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~502~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~503~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~504~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~505~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~506~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~507~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~508~^0.025^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~509~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~510~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~511~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~512~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~513~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~514~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~515~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~516~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~517~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~518~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11916~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~613~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~614~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~617~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~618~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~619~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11916~^~646~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~312~^0.053^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~315~^0.117^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~404~^0.069^7^0.018^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~405~^0.038^7^0.010^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~406~^1.370^7^0.753^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~410~^0.030^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~415~^0.137^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~503~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~504~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~505~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~508~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~509~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~510~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~511~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~513~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~514~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~515~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~516~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~517~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~518~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11917~^~606~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~613~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~614~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~617~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~618~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~619~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11917~^~645~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11917~^~646~^0.113^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~315~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~406~^1.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~410~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11918~^~501~^0.011^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~502~^0.039^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~503~^0.020^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~504~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~505~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~506~^0.005^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~507~^0.018^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~508~^0.048^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~509~^0.009^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~510~^0.029^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~511~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~512~^0.016^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~513~^0.025^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~514~^0.272^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~515~^0.202^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~516~^0.027^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~517~^0.023^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~518~^0.048^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11918~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11918~^~606~^0.027^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11918~^~607~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~608~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~609~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~610~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~613~^0.020^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~614~^0.006^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~617~^0.011^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~618~^0.090^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11918~^~619~^0.009^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~620~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~621~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11918~^~627~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~628~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~629~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~630~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~631~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11918~^~645~^0.012^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11918~^~646~^0.099^0^^~1~^^^^^^^^^^^~08/01/2011~ -~11919~^~312~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~315~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~404~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~405~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~406~^1.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~410~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~415~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11919~^~501~^0.011^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~502~^0.039^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~503~^0.020^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~504~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~505~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~506~^0.005^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~507~^0.018^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~508~^0.048^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~509~^0.009^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~510~^0.029^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~511~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~512~^0.016^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~513~^0.025^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~514~^0.272^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~515~^0.202^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~516~^0.027^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~517~^0.023^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~518~^0.048^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~ -~11919~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11919~^~606~^0.027^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~607~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~608~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~609~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~610~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~613~^0.020^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~614~^0.006^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~617~^0.011^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~618~^0.090^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~619~^0.009^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~620~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~621~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~627~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~628~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~629~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~630~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~631~^0.000^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~ -~11919~^~645~^0.012^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11919~^~646~^0.099^0^^~1~^^^^^^^^^^^~05/01/2006~ -~11921~^~312~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~04/01/2003~ -~11921~^~315~^0.115^4^0.025^~1~^~A~^^^1^0.056^0.177^3^0.037^0.194^~2, 3~^~04/01/2003~ -~11921~^~404~^0.056^4^0.001^~1~^~A~^^^1^0.055^0.058^3^0.053^0.058^~2, 3~^~04/01/2003~ -~11921~^~405~^0.109^4^0.010^~1~^~A~^^^1^0.084^0.131^3^0.078^0.140^~2, 3~^~04/01/2003~ -~11921~^~406~^0.954^4^0.035^~1~^~A~^^^1^0.866^1.020^3^0.842^1.066^~2, 3~^~04/01/2003~ -~11921~^~410~^0.244^4^0.032^~1~^~A~^^^1^0.166^0.297^3^0.144^0.345^~2, 3~^~04/01/2003~ -~11921~^~415~^0.364^4^0.059^~1~^~A~^^^1^0.262^0.489^3^0.176^0.553^~2, 3~^~04/01/2003~ -~11921~^~501~^0.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~502~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~503~^0.022^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~504~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~505~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~506~^0.006^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~508~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~509~^0.010^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~510~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~511~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~512~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~513~^0.027^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~514~^0.298^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~515~^0.221^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~517~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~518~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~11921~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11921~^~606~^1.557^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~612~^0.009^2^^~1~^~A~^^^1^0.010^0.010^^^^^~03/01/2006~ -~11921~^~613~^1.066^2^^~1~^~A~^^^1^1.010^1.410^1^^^^~03/01/2006~ -~11921~^~614~^0.397^2^^~1~^~A~^^^1^0.370^0.530^1^^^^~03/01/2006~ -~11921~^~615~^0.035^2^^~1~^~A~^^^1^0.030^0.050^1^^^^~03/01/2006~ -~11921~^~617~^2.251^2^^~1~^~A~^^^1^2.120^2.990^1^^^^~03/01/2006~ -~11921~^~618~^4.944^2^^~1~^~A~^^^1^4.660^6.560^1^^^^~03/01/2006~ -~11921~^~619~^0.775^2^^~1~^~A~^^^1^0.740^1.020^1^^^^~03/01/2006~ -~11921~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~624~^0.035^2^^~1~^~A~^^^1^0.030^0.050^1^^^^~03/01/2006~ -~11921~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~626~^0.009^2^^~1~^~A~^^^1^0.010^0.010^^^^^~03/01/2006~ -~11921~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~628~^0.026^2^^~1~^~A~^^^1^0.020^0.040^1^^^^~03/01/2006~ -~11921~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~645~^2.287^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~646~^5.719^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11921~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~653~^0.005^2^^~1~^~A~^^^1^0.002^0.010^1^^^~1~^~03/01/2006~ -~11921~^~654~^0.010^2^^~1~^~A~^^^1^0.002^0.020^1^^^~1~^~03/01/2006~ -~11921~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11921~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2006~ -~11922~^~404~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~405~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~406~^0.250^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~501~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~503~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~504~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~508~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~510~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~511~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11922~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11923~^~312~^0.330^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~315~^0.710^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~404~^0.205^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~405~^0.053^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~406~^1.092^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~410~^0.743^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~415~^0.105^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~501~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~502~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~503~^0.375^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~504~^0.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~505~^0.486^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~507~^0.102^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~508~^0.415^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~509~^0.309^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~510~^0.401^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~511~^0.585^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~512~^0.225^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~513~^0.355^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~514~^1.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~515~^1.272^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~516~^0.325^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~517~^0.436^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~518~^0.421^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11923~^~606~^0.617^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~607~^0.000^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~608~^0.000^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~609~^0.000^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~610~^0.000^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~611~^0.000^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~ -~11923~^~612~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~613~^0.448^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~614~^0.165^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~617~^0.991^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~618~^2.217^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~619~^0.296^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~626~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~628~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~645~^1.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11923~^~646~^2.513^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~312~^0.527^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~315~^1.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~404~^0.420^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~405~^0.190^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~406~^1.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~410~^1.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~415~^0.168^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11924~^~501~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~502~^0.759^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~503~^0.654^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~504~^1.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~505~^0.916^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~506~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~507~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~508~^0.524^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~509~^0.432^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~510~^0.734^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~511~^0.629^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~512~^0.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~513~^0.614^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~514~^1.899^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~515~^1.859^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~516~^0.509^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11924~^~518~^0.981^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~312~^0.114^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~315~^0.303^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~405~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~406~^0.411^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~410~^0.036^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~415~^0.100^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11925~^~502~^0.086^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~503~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~504~^0.152^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~505~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~508~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~509~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~510~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~511~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~512~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~513~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~514~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~515~^0.197^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~517~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~518~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11925~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11926~^~312~^0.337^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~315~^0.502^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~404~^0.220^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11926~^~406~^1.200^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11926~^~410~^0.571^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~11926~^~415~^0.164^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~ -~11926~^~502~^0.322^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~503~^0.320^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~504~^0.617^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~505~^0.698^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~506~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~507~^0.328^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~508~^0.434^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~509~^0.248^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~510~^0.391^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~511~^0.600^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~512~^0.252^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~513~^0.349^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~514~^1.407^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~515~^1.235^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~516~^0.313^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~517~^0.349^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~518~^0.486^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11926~^~606~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~613~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~617~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~618~^0.166^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~619~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~645~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11926~^~646~^0.201^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~312~^0.129^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~315~^0.283^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~404~^0.086^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~405~^0.014^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~406~^0.130^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~410~^0.480^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~415~^0.209^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11927~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~502~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~503~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~504~^0.109^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~505~^0.067^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~506~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~508~^0.080^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~509~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~510~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~511~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~513~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~514~^0.175^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~515~^0.205^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~516~^0.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~517~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~518~^0.092^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11927~^~606~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~613~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~614~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~617~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~619~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~645~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11927~^~646~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~312~^0.202^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~315~^0.539^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~405~^0.300^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~406~^3.500^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11928~^~410~^0.063^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~415~^0.179^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11928~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11929~^~312~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~315~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~404~^0.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~405~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~406~^0.763^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~410~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~415~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~501~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~502~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~503~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~504~^0.173^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~505~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~508~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~509~^0.091^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~510~^0.129^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~511~^0.083^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~512~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~513~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~514~^0.254^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~515~^0.390^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~516~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~517~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~606~^1.284^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~607~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~608~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~610~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~611~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~612~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~613~^0.711^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~614~^0.398^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~617~^2.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~618~^1.286^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~619~^0.076^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~645~^2.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11929~^~646~^1.363^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~312~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~315~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~404~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~405~^0.050^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~406~^0.670^6^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~410~^0.120^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~415~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~503~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~504~^0.150^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~505~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~507~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~508~^0.090^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~509~^0.082^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~510~^0.119^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~511~^0.084^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~512~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~513~^0.068^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~514~^0.294^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~515~^0.352^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~516~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~517~^0.114^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~518~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~606~^1.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~607~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~608~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~609~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~610~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~611~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~612~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~613~^0.799^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~614~^0.444^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~617~^2.274^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~618~^1.463^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~619~^0.088^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~626~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~645~^2.307^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11930~^~646~^1.551^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~312~^1.389^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~315~^1.897^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~404~^1.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~405~^1.200^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~406~^7.400^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~410~^0.488^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~415~^2.223^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~501~^0.229^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~502~^0.659^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~503~^0.579^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~504~^0.937^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~505~^0.796^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~506~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~507~^0.344^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~508~^0.553^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~509~^0.372^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~510~^0.756^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~511~^0.859^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~512~^0.364^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~513~^0.733^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~514~^2.558^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~515~^2.363^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~516~^0.662^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~517~^0.779^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~518~^0.719^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11931~^~606~^0.447^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~607~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~608~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~609~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~610~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~612~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~613~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~614~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~617~^0.181^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~618~^1.462^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~619~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~620~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~621~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~626~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~627~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~628~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~629~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~630~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~631~^0.000^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~ -~11931~^~645~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11931~^~646~^1.607^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~312~^0.038^11^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~315~^0.200^16^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~404~^0.015^12^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~405~^0.056^12^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~406~^0.201^12^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~410~^0.129^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11932~^~415~^0.037^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11932~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~508~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~510~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~511~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~513~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~514~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~515~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~517~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~518~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11932~^~606~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~619~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11932~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11932~^~646~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~312~^0.038^11^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~315~^0.200^16^0.019^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~404~^0.015^12^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~405~^0.056^12^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~406~^0.201^12^0.007^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~410~^0.129^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11933~^~415~^0.037^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11933~^~501~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~502~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~504~^0.071^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~505~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~507~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~508~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~509~^0.027^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~510~^0.057^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~511~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~513~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~514~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~515~^0.118^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~517~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~518~^0.063^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~11933~^~606~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~607~^0.000^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~608~^0.000^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~609~^0.000^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~610~^0.000^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~611~^0.000^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~ -~11933~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~613~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~614~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~617~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~618~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~619~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~645~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11933~^~646~^0.051^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11934~^~312~^0.138^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~315~^0.114^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~404~^0.086^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~405~^0.041^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~406~^1.072^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~410~^0.468^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~415~^0.222^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~501~^0.033^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~502~^0.071^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~503~^0.082^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~504~^0.123^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~505~^0.106^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~506~^0.033^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~507~^0.020^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~508~^0.083^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~509~^0.074^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~510~^0.107^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~511~^0.075^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~512~^0.042^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~513~^0.058^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~514~^0.374^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~515~^0.329^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~516~^0.052^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~517~^0.101^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~518~^0.077^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~605~^0.149^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~606~^2.613^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~607~^0.157^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~608~^0.102^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~609~^0.064^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~610~^0.126^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~611~^0.131^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~612~^0.380^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~613~^1.114^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~614~^0.508^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~615~^0.006^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~617~^1.021^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~618~^0.166^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~619~^0.033^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~626~^0.044^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~628~^0.005^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~645~^1.070^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~646~^0.199^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~653~^0.025^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~693~^0.135^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~695~^0.013^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11934~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~ -~11935~^~312~^0.085^18^0.003^~1~^~A~^^^1^0.056^0.139^7^0.078^0.091^~2, 3~^~08/01/2014~ -~11935~^~315~^0.084^18^0.001^~1~^~A~^^^1^0.075^0.095^13^0.081^0.087^~2, 3~^~08/01/2014~ -~11935~^~404~^0.011^4^0.004^~1~^~A~^^^1^0.005^0.018^1^-0.033^0.055^~1, 2, 3~^~08/01/2014~ -~11935~^~405~^0.166^6^0.053^~1~^~A~^^^1^0.058^0.478^2^-0.060^0.393^~2, 3~^~08/01/2014~ -~11935~^~406~^1.434^6^0.094^~1~^~A~^^^1^1.190^1.741^3^1.152^1.716^~2, 3~^~08/01/2014~ -~11935~^~410~^0.047^2^^~1~^~A~^^^1^0.042^0.050^^^^^~08/01/2014~ -~11935~^~415~^0.158^4^0.009^~1~^~A~^^^1^0.092^0.213^1^0.080^0.235^~2, 3~^~08/01/2014~ -~11935~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~502~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~504~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~505~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~507~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~508~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~510~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~511~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~512~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~513~^0.033^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~514~^0.133^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~515~^0.349^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~516~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~518~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11935~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11935~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~612~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~613~^0.010^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~614~^0.004^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~617~^0.015^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~618~^0.039^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~619~^0.001^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11935~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~628~^0.000^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~11935~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11935~^~646~^0.041^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11936~^~312~^0.500^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~315~^0.142^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~404~^0.095^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~405~^0.490^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~406~^3.800^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2015~ -~11936~^~410~^1.500^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11936~^~606~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~611~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~613~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~617~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~618~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~645~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11936~^~646~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2015~ -~11937~^~312~^0.028^18^0.001^~1~^~A~^^^1^0.025^0.034^10^0.026^0.029^~1, 2, 3~^~08/01/2014~ -~11937~^~315~^0.062^18^0.003^~1~^~A~^^^1^0.036^0.086^9^0.056^0.067^~2, 3~^~08/01/2014~ -~11937~^~404~^0.045^10^0.002^~1~^~A~^^^2^0.028^0.050^4^0.040^0.050^~2, 3~^~08/01/2014~ -~11937~^~405~^0.057^9^0.001^~1~^~A~^^^1^0.054^0.063^3^0.054^0.059^~2, 3~^~08/01/2014~ -~11937~^~406~^0.109^9^0.007^~1~^~A~^^^1^0.080^0.130^3^0.088^0.130^~2, 3~^~08/01/2014~ -~11937~^~410~^0.201^6^0.012^~1~^~A~^^^1^0.170^0.260^2^0.132^0.269^~2, 3~^~08/01/2014~ -~11937~^~415~^0.035^9^0.002^~1~^~A~^^^1^0.030^0.040^4^0.030^0.039^~2, 3~^~08/01/2014~ -~11937~^~501~^0.005^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~502~^0.017^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~503~^0.019^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~504~^0.026^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~505~^0.026^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~506~^0.005^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~507~^0.004^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~508~^0.017^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~509~^0.010^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~510~^0.020^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~511~^0.040^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~512~^0.009^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~513~^0.021^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~514~^0.037^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~515~^0.177^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~516~^0.022^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~517~^0.014^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~518~^0.018^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11937~^~606~^0.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11937~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~611~^0.003^3^^~1~^^^^^^^^^^^~04/01/2014~ -~11937~^~612~^0.003^3^^~1~^^^^^^^^^^^~04/01/2014~ -~11937~^~613~^0.065^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11937~^~614~^0.008^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11937~^~617~^0.005^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11937~^~618~^0.052^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11937~^~619~^0.070^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11937~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~626~^0.000^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11937~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11937~^~646~^0.122^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11938~^~312~^0.318^53^0.019^~11~^~JO~^^^12^0.136^0.620^39^0.280^0.357^~4~^~04/01/2015~ -~11938~^~315~^0.047^40^0.005^~11~^~JO~^^^12^0.000^0.141^35^0.037^0.056^~1, 4~^~04/01/2015~ -~11938~^~404~^0.081^17^0.007^~11~^~JO~^^^4^0.009^0.120^16^0.066^0.095^~4~^~04/01/2015~ -~11938~^~405~^0.402^14^0.027^~11~^~JO~^^^4^0.216^0.610^13^0.344^0.459^~4~^~04/01/2015~ -~11938~^~406~^3.607^17^0.280^~11~^~JO~^^^4^0.219^5.100^16^3.014^4.201^~4~^~04/01/2015~ -~11938~^~410~^1.497^13^0.092^~11~^~JO~^^^4^1.060^2.280^12^1.297^1.697^~4~^~04/01/2015~ -~11938~^~415~^0.104^16^0.012^~11~^~JO~^^^4^0.041^0.234^15^0.077^0.130^~4~^~04/01/2015~ -~11938~^~606~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~11938~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~613~^0.040^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11938~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11938~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~618~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~11938~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~646~^0.160^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~11938~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11938~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~ -~11939~^~312~^0.389^7^0.024^~1~^~A~^^^2^0.200^0.549^5^0.325^0.454^~2, 3~^~08/01/2009~ -~11939~^~315~^0.067^7^0.003^~1~^~A~^^^2^0.047^0.084^5^0.058^0.076^~2, 3~^~08/01/2009~ -~11939~^~404~^0.072^8^0.015^~1~^~A~^^^2^0.026^0.157^3^0.027^0.117^~2, 3~^~08/01/2009~ -~11939~^~405~^0.403^8^0.020^~1~^~A~^^^2^0.280^0.554^6^0.355^0.451^~2, 3~^~08/01/2009~ -~11939~^~406~^6.255^8^0.710^~1~^~A~^^^2^3.640^8.540^4^4.357^8.153^~2, 3~^~08/01/2009~ -~11939~^~410~^1.262^5^0.149^~1~^~A~^^^2^0.840^1.600^3^0.788^1.736^~2, 3~^~08/01/2009~ -~11939~^~415~^0.122^7^0.006^~1~^~A~^^^2^0.062^0.175^5^0.107^0.137^~2, 3~^~08/01/2009~ -~11939~^~501~^0.047^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~502~^0.133^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~503~^0.107^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~504~^0.171^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~505~^0.159^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~506~^0.038^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~508~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~509~^0.018^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~510~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~511~^0.107^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~512~^0.076^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~513~^0.220^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~514~^0.290^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~515~^0.418^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~516~^0.126^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~517~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~518~^0.120^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11939~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~11939~^~606~^0.028^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11939~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~609~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~610~^0.000^2^^~1~^~A~^^^2^0.000^0.002^^^^~1~^~06/01/2014~ -~11939~^~611~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~612~^0.000^2^^~1~^~A~^^^2^0.000^0.002^^^^~1~^~06/01/2014~ -~11939~^~613~^0.018^2^^~1~^~A~^^^2^0.040^0.065^^^^^~01/01/2017~ -~11939~^~614~^0.006^2^^~1~^~A~^^^2^0.010^0.022^^^^^~01/01/2017~ -~11939~^~615~^0.001^2^^~1~^~A~^^^2^0.000^0.006^^^^~1~^~06/01/2014~ -~11939~^~617~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11939~^~618~^0.263^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11939~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~11939~^~620~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~621~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~624~^0.001^2^^~1~^~A~^^^2^0.000^0.003^^^^~1~^~05/01/2011~ -~11939~^~625~^0.002^2^^~1~^~A~^^^2^0.000^0.002^^^^~1~^~05/01/2011~ -~11939~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~ -~11939~^~627~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~628~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~629~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~11939~^~631~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11939~^~646~^0.526^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11939~^~652~^0.001^2^^~1~^~A~^^^2^0.000^0.005^^^^~1~^~06/01/2014~ -~11939~^~653~^0.000^2^^~1~^~A~^^^2^0.000^0.002^^^^~1~^~06/01/2014~ -~11939~^~654~^0.000^2^^~1~^~A~^^^2^0.000^0.002^^^^~1~^~06/01/2014~ -~11939~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~671~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~672~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~673~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11939~^~674~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11939~^~675~^0.263^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11939~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~687~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~11939~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~11939~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~11939~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11939~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11939~^~858~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~02/01/2010~ -~11940~^~312~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.030^2^0.023^0.033^~2, 3~^~04/01/2006~ -~11940~^~315~^0.065^3^0.006^~1~^~A~^^^1^0.054^0.073^2^0.041^0.089^~2, 3~^~04/01/2006~ -~11940~^~404~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.023^0.028^~2, 3~^~04/01/2006~ -~11940~^~405~^0.030^3^0.003^~1~^~A~^^^1^0.025^0.036^2^0.016^0.044^~2, 3~^~04/01/2006~ -~11940~^~406~^0.115^3^0.001^~1~^~A~^^^1^0.114^0.117^2^0.112^0.119^~2, 3~^~04/01/2006~ -~11940~^~410~^0.051^2^^~1~^~A~^^^1^0.041^0.062^1^^^~1~^~04/01/2006~ -~11940~^~415~^0.024^2^^~1~^~A~^^^1^0.022^0.025^1^^^^~04/01/2006~ -~11940~^~501~^0.010^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~502~^0.021^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~503~^0.021^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~504~^0.026^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~505~^0.031^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~506~^0.010^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~507~^0.010^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~508~^0.021^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~509~^0.010^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~510~^0.021^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~511~^0.031^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~512~^0.007^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~513~^0.026^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~514~^0.042^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~515~^0.169^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~516~^0.026^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~517~^0.010^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~518~^0.031^0^^~11~^~JO~^^^^^^^^^^~04/01/2006~ -~11940~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11940~^~606~^0.067^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~611~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~612~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~613~^0.056^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~614~^0.006^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~617~^0.004^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~618~^0.046^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~619~^0.060^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~626~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~645~^0.004^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11940~^~646~^0.106^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~312~^0.085^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~315~^0.011^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11941~^~404~^0.000^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~405~^0.010^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~406~^0.000^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~410~^0.038^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11941~^~415~^0.009^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11941~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~504~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~505~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~509~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~513~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~515~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~516~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~517~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~518~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11941~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11941~^~606~^0.052^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~611~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~612~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~613~^0.043^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~614~^0.005^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~617~^0.003^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~618~^0.034^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~619~^0.046^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~626~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11941~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11941~^~646~^0.081^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11943~^~312~^0.049^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~315~^0.092^4^0.026^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~404~^0.017^4^0.006^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~405~^0.060^4^0.012^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~406~^0.615^4^0.037^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~410~^0.010^0^^~4~^^^^^^^^^^^~08/01/1984~ -~11943~^~415~^0.215^4^0.032^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~501~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~503~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~504~^0.058^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~505~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~506~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~507~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~508~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~509~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~510~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~511~^0.053^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~512~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~513~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~515~^0.145^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~516~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~517~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~518~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11943~^~606~^0.045^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~613~^0.033^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~614~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~617~^0.018^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~618~^0.146^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~619~^0.015^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~626~^0.002^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11943~^~645~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11943~^~646~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~312~^0.082^6^0.003^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~315~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~404~^0.040^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~405~^0.040^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~406~^0.500^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~410~^0.007^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~415~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~502~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~503~^0.050^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~504~^0.075^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~505~^0.069^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~506~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~508~^0.046^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~509~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~510~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~511~^0.097^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~512~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~513~^0.055^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~514~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~515~^0.331^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~516~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~517~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~518~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11944~^~606~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~611~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~613~^0.036^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~614~^0.006^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~617~^0.090^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~618~^0.056^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~619~^0.054^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~628~^0.028^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~630~^0.109^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~645~^0.227^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11944~^~646~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~312~^0.085^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~315~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~404~^0.000^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~405~^0.033^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~406~^0.233^6^0.021^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~410~^0.007^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~415~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~502~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~504~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~506~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~508~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~509~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~511~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~513~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~514~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~515~^0.093^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~516~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~517~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11945~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11945~^~606~^0.054^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~610~^0.000^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~611~^0.001^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~612~^0.001^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~613~^0.045^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~614~^0.007^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~617~^0.090^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~618~^0.059^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~619~^0.063^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~626~^0.001^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~628~^0.024^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~630~^0.094^2^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11945~^~645~^0.209^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11945~^~646~^0.122^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~312~^0.085^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~315~^0.011^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~404~^0.000^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~405~^0.010^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~406~^0.000^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~410~^0.038^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~ -~11946~^~415~^0.009^0^^~4~^^^^^^^^^^^~04/01/1989~ -~11946~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~504~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~505~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~508~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~509~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~510~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~513~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~515~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~516~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~517~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~518~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11946~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11946~^~606~^0.052^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~611~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~612~^0.002^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~613~^0.043^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~614~^0.005^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~617~^0.003^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~618~^0.034^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~619~^0.046^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~626~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11946~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11946~^~646~^0.081^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~11947~^~312~^0.028^18^0.001^~1~^~A~^^^1^0.025^0.034^10^0.026^0.029^~1, 2, 3~^~08/01/2014~ -~11947~^~315~^0.062^18^0.003^~1~^~A~^^^1^0.036^0.086^9^0.056^0.067^~2, 3~^~08/01/2014~ -~11947~^~404~^0.045^10^0.002^~1~^~A~^^^2^0.028^0.050^4^0.040^0.050^~2, 3~^~08/01/2014~ -~11947~^~405~^0.057^9^0.001^~1~^~A~^^^1^0.054^0.063^3^0.054^0.059^~2, 3~^~08/01/2014~ -~11947~^~406~^0.109^9^0.007^~1~^~A~^^^1^0.080^0.130^3^0.088^0.130^~2, 3~^~08/01/2014~ -~11947~^~410~^0.201^6^0.012^~1~^~A~^^^1^0.170^0.260^2^0.132^0.269^~2, 3~^~08/01/2014~ -~11947~^~415~^0.035^9^0.002^~1~^~A~^^^1^0.030^0.040^4^0.030^0.039^~2, 3~^~08/01/2014~ -~11947~^~501~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~502~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~503~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~504~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~505~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~507~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~508~^0.017^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~510~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~511~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~512~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~513~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~514~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~515~^0.177^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~516~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~517~^0.014^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~518~^0.018^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11947~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11947~^~606~^0.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11947~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~611~^0.003^3^^~1~^^^^^^^^^^^~04/01/2014~ -~11947~^~612~^0.003^3^^~1~^^^^^^^^^^^~04/01/2014~ -~11947~^~613~^0.065^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~614~^0.008^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~617~^0.005^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~618~^0.052^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~619~^0.070^3^^~1~^^^^^^^^^^^~08/01/2014~ -~11947~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~626~^0.000^3^^~1~^^^^^^^^^^^~12/01/2006~ -~11947~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~11947~^~645~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11947~^~646~^0.122^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11948~^~312~^0.105^44^0.008^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~315~^0.015^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~404~^0.009^44^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~405~^0.032^44^0.001^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~406~^0.174^44^0.024^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~410~^0.120^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~415~^0.015^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~502~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~503~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~504~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~506~^0.003^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~509~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~511~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~512~^0.005^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~513~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~514~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~515~^0.106^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~516~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~517~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11948~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11948~^~606~^0.067^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~611~^0.002^1^^~1~^^^^^^^^^^^~04/01/2005~ -~11948~^~612~^0.002^1^^~1~^^^^^^^^^^^~04/01/2005~ -~11948~^~613~^0.056^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~614~^0.006^1^^~1~^^^^^^^^^^^~04/01/2005~ -~11948~^~617~^0.004^1^^~1~^^^^^^^^^^^~04/01/2005~ -~11948~^~618~^0.046^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~619~^0.060^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~626~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~645~^0.004^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11948~^~646~^0.106^0^^~1~^^^^^^^^^^^~12/01/2006~ -~11949~^~312~^0.085^18^0.003^~1~^~A~^^^1^0.056^0.139^7^0.078^0.091^~2, 3~^~08/01/2014~ -~11949~^~315~^0.084^18^0.001^~1~^~A~^^^1^0.075^0.095^13^0.081^0.087^~2, 3~^~08/01/2014~ -~11949~^~404~^0.011^4^0.004^~1~^~A~^^^1^0.005^0.018^1^-0.033^0.055^~1, 2, 3~^~08/01/2014~ -~11949~^~405~^0.166^6^0.053^~1~^~A~^^^1^0.058^0.478^2^-0.060^0.393^~2, 3~^~08/01/2014~ -~11949~^~406~^1.434^6^0.094^~1~^~A~^^^1^1.190^1.741^3^1.152^1.716^~2, 3~^~08/01/2014~ -~11949~^~410~^0.047^2^^~1~^~A~^^^1^0.042^0.050^^^^^~08/01/2014~ -~11949~^~415~^0.158^4^0.009^~1~^~A~^^^1^0.092^0.213^1^0.080^0.235^~2, 3~^~08/01/2014~ -~11949~^~501~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~502~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~504~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~505~^0.023^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~506~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~507~^0.005^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~508~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~510~^0.014^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~511~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~512~^0.013^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~513~^0.033^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~514~^0.133^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~515~^0.349^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~516~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~517~^0.012^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~518~^0.021^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~11949~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11949~^~606~^0.014^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~612~^0.000^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~613~^0.010^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11949~^~614~^0.004^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11949~^~617~^0.015^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11949~^~618~^0.039^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11949~^~619~^0.001^1^^~1~^^^^^^^^^^^~08/01/2014~ -~11949~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~626~^0.001^1^^~1~^^^^^^^^^^^~07/01/2012~ -~11949~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~628~^0.000^1^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~11949~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11949~^~646~^0.041^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~11950~^~312~^0.107^3^0.019^~1~^~A~^^^1^0.072^0.136^2^0.027^0.188^~2, 3~^~07/01/2009~ -~11950~^~315~^0.075^2^^~1~^~A~^^^1^0.075^0.076^1^^^^~07/01/2009~ -~11950~^~404~^0.225^4^0.069^~1~^~A~^^^1^0.022^0.316^3^0.006^0.444^~2, 3~^~07/01/2009~ -~11950~^~405~^0.200^3^0.024^~1~^~A~^^^1^0.173^0.248^2^0.097^0.303^~2, 3~^~07/01/2009~ -~11950~^~406~^7.032^4^0.861^~1~^~A~^^^1^4.850^8.460^3^4.293^9.772^~2, 3~^~07/01/2009~ -~11950~^~410~^1.350^1^^~1~^~A~^^^1^1.350^1.350^^^^^~02/01/2010~ -~11950~^~415~^0.100^4^0.025^~1~^~A~^^^1^0.057^0.149^3^0.022^0.178^~2, 3~^~07/01/2009~ -~11950~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~502~^0.110^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~503~^0.090^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~504~^0.130^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~505~^0.130^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~506~^0.030^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~509~^0.140^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~510~^0.230^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~511~^0.110^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~512~^0.070^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~513~^0.190^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~514~^0.190^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~515~^0.380^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~516~^0.110^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~517~^0.060^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~518~^0.090^0^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~11950~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11950~^~606~^0.027^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11950~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11950~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11950~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11950~^~613~^0.027^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11950~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2010~ -~11950~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~617~^0.000^1^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2010~ -~11950~^~618~^0.082^1^^~1~^~A~^^^1^0.060^0.060^^^^^~01/01/2017~ -~11950~^~619~^0.041^1^^~1~^~A~^^^1^0.030^0.030^^^^^~01/01/2017~ -~11950~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~11950~^~646~^0.124^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11950~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11950~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~ -~11951~^~312~^0.107^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~315~^0.117^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~404~^0.028^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~405~^0.025^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~406~^0.890^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~410~^0.168^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~415~^0.168^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~501~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~502~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~503~^0.032^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~504~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~505~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~506~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~507~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~508~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~509~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~510~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~511~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~512~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~513~^0.041^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~514~^0.143^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~515~^0.132^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~516~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~517~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~518~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11951~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11951~^~606~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1998~ -~11952~^~312~^0.341^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~315~^0.138^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~404~^0.016^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~405~^0.028^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~406~^0.255^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~410~^0.269^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~415~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~502~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~504~^0.062^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~505~^0.056^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~506~^0.008^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~508~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~510~^0.065^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~511~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~512~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11952~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11952~^~606~^0.060^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~612~^0.003^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~613~^0.052^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~614~^0.003^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~617~^0.005^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~618~^0.093^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~619~^0.016^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~645~^0.010^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11952~^~646~^0.110^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11953~^~312~^0.097^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~315~^0.196^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~404~^0.042^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~405~^0.036^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~406~^0.705^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~410~^0.367^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~415~^0.142^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~501~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~502~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~503~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~504~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~505~^0.151^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~506~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~508~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~509~^0.073^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~510~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~511~^0.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~512~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~513~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~514~^0.332^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~515~^0.291^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~516~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~517~^0.085^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~518~^0.111^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11953~^~606~^0.083^0^^~4~^^^^^^^^^^^~04/01/2003~ -~11953~^~611~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~613~^0.071^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~614~^0.009^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~617~^0.029^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~618~^0.063^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~619~^0.106^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~626~^0.003^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11953~^~645~^0.031^0^^~4~^^^^^^^^^^^~04/01/2003~ -~11953~^~646~^0.169^0^^~4~^^^^^^^^^^^~04/01/2003~ -~11954~^~312~^0.079^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~315~^0.153^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~404~^0.044^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~405~^0.035^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~406~^1.850^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~410~^0.150^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~415~^0.056^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11954~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11954~^~606~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~11954~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~613~^0.102^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~614~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~617~^0.152^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~618~^0.402^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~619~^0.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~626~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11954~^~645~^0.155^0^^~1~^^^^^^^^^^^~04/01/1989~ -~11954~^~646~^0.417^0^^~1~^^^^^^^^^^^~04/01/1989~ -~11955~^~312~^1.423^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~315~^1.846^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~404~^0.528^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~405~^0.489^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~406~^9.050^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~410~^2.087^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~415~^0.332^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~501~^0.104^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~502~^0.357^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~503~^0.339^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~504~^0.517^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~505~^0.519^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~506~^0.122^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~507~^0.183^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~508~^0.366^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~509~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~510~^0.361^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~511~^0.343^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~512~^0.214^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~513~^0.402^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~514~^1.957^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~515~^5.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~516~^0.348^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~517~^0.266^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~518~^0.375^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11955~^~606~^0.426^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~612~^0.004^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~613~^0.326^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~614~^0.096^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~617~^0.476^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~618~^1.104^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~619~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~626~^0.011^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~11955~^~645~^0.487^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11955~^~646~^1.115^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~312~^0.473^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~315~^0.466^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~404~^0.193^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~405~^0.383^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~406~^3.630^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~410~^0.479^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~415~^0.319^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~502~^0.128^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~504~^0.185^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~505~^0.186^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~506~^0.044^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~507~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~508~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~509~^0.087^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~510~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~511~^0.123^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~512~^0.077^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~513~^0.144^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~514~^0.702^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~515~^1.865^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~516~^0.125^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~517~^0.096^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~518~^0.134^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11956~^~606~^1.893^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~612~^0.005^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~613~^1.548^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~614~^0.340^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~617~^8.530^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~618~^1.982^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~619~^0.078^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~626~^0.100^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~628~^0.033^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~645~^8.663^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11956~^~646~^2.060^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~312~^0.066^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~315~^0.191^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~404~^0.010^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~405~^0.032^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~406~^0.640^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~410~^0.232^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~415~^0.047^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11957~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~11957~^~606~^0.090^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~11957~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~ -~11957~^~610~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~611~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~612~^0.002^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~613~^0.079^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~614~^0.009^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~617~^0.065^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~618~^0.169^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~619~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~620~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~621~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~626~^0.002^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2016~ -~11957~^~627~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~628~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~629~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~630~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~631~^0.000^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~ -~11957~^~645~^0.068^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~11957~^~646~^0.169^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~ -~11958~^~312~^0.083^6^0.004^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~315~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~404~^0.020^6^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~405~^0.042^6^0.002^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~406~^0.617^6^0.017^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~410~^0.007^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~415~^0.015^4^0.000^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~501~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~502~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~503~^0.021^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~504~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~505~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~506~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~508~^0.019^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~509~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~510~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~511~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~512~^0.012^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~513~^0.022^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~514~^0.038^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~515~^0.147^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~517~^0.023^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~518~^0.020^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11958~^~606~^0.052^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~611~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~612~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~613~^0.043^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~614~^0.007^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~617~^0.107^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~618~^0.067^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~619~^0.064^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~626~^0.001^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~628~^0.033^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~630~^0.129^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~645~^0.269^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11958~^~646~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~312~^0.076^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~315~^0.321^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~404~^0.044^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~405~^0.086^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~406~^0.305^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~410~^0.437^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~415~^0.073^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11959~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11959~^~606~^0.086^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~611~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~613~^0.072^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~617~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~618~^0.130^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~619~^0.170^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~620~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~645~^0.049^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11959~^~646~^0.319^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11960~^~312~^0.100^8^0.006^~1~^~A~^^^2^0.030^0.186^3^0.083^0.117^~2, 3~^~10/01/2002~ -~11960~^~315~^0.151^8^0.015^~1~^~A~^^^2^0.075^0.190^5^0.111^0.191^~2, 3~^~10/01/2002~ -~11960~^~404~^0.030^8^0.002^~1~^~A~^^^2^0.020^0.044^6^0.027^0.034^~2, 3~^~10/01/2002~ -~11960~^~405~^0.036^8^0.003^~1~^~A~^^^2^0.020^0.050^3^0.027^0.046^~2, 3~^~10/01/2002~ -~11960~^~406~^0.556^8^0.040^~1~^~A~^^^2^0.344^0.860^5^0.452^0.660^~2, 3~^~10/01/2002~ -~11960~^~410~^0.401^8^0.020^~1~^~A~^^^2^0.293^0.454^4^0.345^0.457^~2, 3~^~10/01/2002~ -~11960~^~415~^0.105^7^0.018^~1~^~A~^^^2^0.050^0.170^4^0.057^0.154^~2, 3~^~10/01/2002~ -~11960~^~501~^0.009^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~502~^0.031^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~503~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~505~^0.033^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~507~^0.007^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~508~^0.026^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~509~^0.016^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~510~^0.036^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~511~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~512~^0.013^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~513~^0.048^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~514~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~515~^0.165^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~516~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~518~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11960~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11960~^~606~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~611~^0.002^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~612~^0.001^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~613~^0.019^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~614~^0.001^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~617~^0.005^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~618~^0.057^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~619~^0.008^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~626~^0.002^1^^~1~^^^^^^^^^^^~03/01/2006~ -~11960~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11960~^~646~^0.065^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11961~^~312~^0.133^3^0.005^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~315~^1.394^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~404~^0.011^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~405~^0.057^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~406~^0.437^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~410~^0.126^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~415~^0.022^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~501~^0.023^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~502~^0.097^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~503~^0.101^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~504~^0.169^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~505~^0.091^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~506~^0.042^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~507~^0.019^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~508~^0.098^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~509~^0.049^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~510~^0.114^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~511~^0.178^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~512~^0.055^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~513~^0.111^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~514~^0.168^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~515~^0.296^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~516~^0.108^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~517~^0.088^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~518~^0.081^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11961~^~606~^0.130^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~613~^0.114^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~614~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~617~^0.103^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~618~^0.183^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~619~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~645~^0.103^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11961~^~646~^0.202^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~312~^0.228^4^0.014^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~315~^0.821^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~404~^0.081^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~405~^1.205^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~406~^8.669^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~410~^0.956^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~415~^0.810^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~501~^0.135^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~502~^0.389^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~503~^0.342^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~504~^0.554^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~505~^0.471^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~506~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~507~^0.203^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~508~^0.327^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~509~^0.220^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~510~^0.447^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~511~^0.508^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~512~^0.215^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~513~^0.433^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~514~^1.512^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~515~^1.397^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~516~^0.391^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~517~^0.460^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~518~^0.425^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11962~^~606~^0.813^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~612~^0.016^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~613~^0.690^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~614~^0.107^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~617~^0.449^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~618~^3.056^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~619~^0.023^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~626~^0.019^1^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/1993~ -~11962~^~645~^0.468^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11962~^~646~^3.079^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~312~^0.052^4^0.008^~1~^^^^1^0.032^0.067^3^0.026^0.079^~4~^~01/01/2003~ -~11963~^~315~^0.457^4^0.033^~1~^^^^1^0.387^0.540^3^0.353^0.561^~4~^~01/01/2003~ -~11963~^~404~^0.012^4^0.002^~1~^^^^1^0.009^0.016^3^0.006^0.018^~4~^~01/01/2003~ -~11963~^~405~^0.041^4^0.002^~1~^^^^1^0.038^0.046^3^0.035^0.047^~4~^~01/01/2003~ -~11963~^~406~^0.410^4^0.077^~1~^^^^1^0.233^0.597^3^0.166^0.654^~4~^~01/01/2003~ -~11963~^~410~^0.167^4^0.012^~1~^^^^1^0.133^0.186^3^0.129^0.204^~4~^~01/01/2003~ -~11963~^~415~^0.070^4^0.014^~1~^^^^1^0.044^0.096^3^0.027^0.113^~4~^~01/01/2003~ -~11963~^~501~^0.014^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~502~^0.040^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~503~^0.049^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~504~^0.077^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~505~^0.059^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~506~^0.015^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~507~^0.008^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~508~^0.049^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~509~^0.029^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~510~^0.059^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~511~^0.052^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~512~^0.025^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~513~^0.050^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~514~^0.086^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~515~^0.145^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~516~^0.046^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~517~^0.043^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~518~^0.043^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11963~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11963~^~606~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~613~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~617~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~618~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~619~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~645~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11963~^~646~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~04/01/1996~ -~11964~^~312~^0.049^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~315~^0.408^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~404~^0.011^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~405~^0.040^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~406~^0.296^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~410~^0.150^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~415~^0.067^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~501~^0.014^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~502~^0.042^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~503~^0.052^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~504~^0.082^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~505~^0.063^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~506~^0.016^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~507~^0.008^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~508~^0.052^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~509~^0.030^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~510~^0.062^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~511~^0.055^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~512~^0.026^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~513~^0.053^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~514~^0.092^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~515~^0.154^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~516~^0.048^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~517~^0.045^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~518~^0.046^4^^~1~^^^^^^^^^^^~08/01/1984~ -~11964~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11964~^~606~^0.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~613~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~617~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~618~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~619~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~11964~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11964~^~646~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~11965~^~312~^0.041^6^0.005^~1~^^^^2^0.017^0.050^5^0.027^0.055^~4~^~01/01/2003~ -~11965~^~315~^0.247^6^0.010^~1~^^^^2^0.198^0.269^5^0.220^0.274^~4~^~01/01/2003~ -~11965~^~404~^0.080^6^0.006^~1~^^^^2^0.051^0.090^5^0.064^0.095^~4~^~01/01/2003~ -~11965~^~405~^0.102^6^0.005^~1~^^^^2^0.090^0.120^5^0.090^0.114^~4~^~01/01/2003~ -~11965~^~406~^0.734^6^0.079^~1~^^^^2^0.497^0.920^5^0.531^0.937^~4~^~01/01/2003~ -~11965~^~410~^0.696^6^0.101^~1~^^^^2^0.308^0.930^5^0.435^0.956^~4~^~01/01/2003~ -~11965~^~415~^0.222^6^0.016^~1~^^^^2^0.157^0.259^5^0.182^0.262^~4~^~01/01/2003~ -~11965~^~501~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~502~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~503~^0.112^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~504~^0.172^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~505~^0.158^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~508~^0.105^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~509~^0.064^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~510~^0.148^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~511~^0.142^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~512~^0.059^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~513~^0.156^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~514~^0.345^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~515~^0.393^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~516~^0.095^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~517~^0.127^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~518~^0.154^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11965~^~606~^0.047^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~611~^0.000^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~612~^0.000^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~613~^0.038^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~614~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~617~^0.023^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~618~^0.029^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~619~^0.104^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~626~^0.004^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~628~^0.001^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~630~^0.001^2^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~11965~^~645~^0.028^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11965~^~646~^0.133^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~312~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~315~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~406~^0.681^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~410~^0.681^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~415~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~503~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~504~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~505~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~508~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~510~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~511~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~512~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~513~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~514~^0.356^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~515~^0.405^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~516~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~517~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~518~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11967~^~606~^0.043^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11967~^~607~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~608~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~609~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~610~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~619~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~620~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~621~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~627~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~629~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11967~^~631~^0.000^0^^~4~^~BFSN~^~11965~^^^^^^^^^~11/01/2014~ -~11967~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11967~^~646~^0.137^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~11968~^~312~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~315~^0.242^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~404~^0.070^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~406~^0.681^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~410~^0.681^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~415~^0.206^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~503~^0.116^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~504~^0.178^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~505~^0.163^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~508~^0.108^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~509~^0.066^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~510~^0.153^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~511~^0.146^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~512~^0.061^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~513~^0.161^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~514~^0.356^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~515~^0.405^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~516~^0.098^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~517~^0.131^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~518~^0.159^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11968~^~606~^0.049^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~613~^0.039^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~614~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~617~^0.024^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~618~^0.030^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~619~^0.107^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~645~^0.029^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11968~^~646~^0.137^0^^~1~^^^^^^^^^^^~08/01/1984~ -~11969~^~312~^0.061^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~315~^0.264^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~404~^0.095^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~405~^0.146^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~406~^0.437^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~410~^0.159^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11969~^~415~^0.070^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11969~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11969~^~606~^0.110^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~612~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~613~^0.094^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~614~^0.014^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~617~^0.048^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~618~^0.076^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~619~^0.258^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~645~^0.050^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11969~^~646~^0.330^0^^~4~^^^^^^^^^^^~01/01/1994~ -~11970~^~312~^0.096^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~315~^0.203^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~404~^0.005^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~405~^0.025^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~406~^0.466^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~410~^0.035^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~415~^0.037^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11970~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11972~^~312~^0.266^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~315~^5.224^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~404~^0.065^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~405~^0.135^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~406~^1.101^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~410~^0.050^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~415~^0.080^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11972~^~606~^0.119^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~613~^0.083^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~614~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~617~^0.042^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~618~^0.138^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~619~^0.031^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~626~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~645~^0.054^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11972~^~646~^0.170^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~312~^0.402^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~315~^0.661^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~404~^0.133^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~405~^0.290^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~406~^2.249^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~410~^0.225^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~415~^0.104^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11973~^~606~^0.118^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~613~^0.065^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~614~^0.028^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~617~^0.097^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~618~^0.312^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~619~^0.030^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~626~^0.004^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~645~^0.104^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~646~^0.342^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11973~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~312~^0.415^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~315~^2.855^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~404~^0.040^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~405~^0.354^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~406~^2.362^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~410~^0.231^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~415~^0.400^2^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11974~^~606~^0.336^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~613~^0.243^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~614~^0.026^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~617~^0.039^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~618~^0.148^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~619~^0.856^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~626~^0.035^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~628~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~01/01/1994~ -~11974~^~645~^0.081^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~646~^1.065^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11974~^~654~^0.013^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~312~^1.841^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~315~^0.290^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~404~^0.064^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~405~^0.364^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~406~^4.505^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~410~^4.274^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~415~^0.136^2^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11975~^~606~^0.312^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~613~^0.240^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~614~^0.025^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~617~^0.039^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~618~^0.146^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~619~^0.843^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~626~^0.034^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~645~^0.076^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~646~^0.989^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11975~^~654~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/1996~ -~11976~^~312~^0.094^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~315~^0.100^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~404~^0.081^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~405~^0.054^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~406~^1.242^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~410~^0.265^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11976~^~415~^0.357^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11976~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11976~^~606~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~613~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~617~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~618~^0.240^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~619~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~645~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11976~^~646~^0.243^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~312~^0.129^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~315~^0.187^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~404~^0.054^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~405~^0.081^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~406~^1.537^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~410~^0.200^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11977~^~415~^0.505^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11977~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11977~^~606~^0.059^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~613~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~614~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~617~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~618~^0.216^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~619~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~11977~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~645~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11977~^~646~^0.222^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~312~^0.508^2^^~1~^~A~^^^^^^^^^^~01/01/1995~ -~11978~^~315~^1.279^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~404~^0.179^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~405~^2.255^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~406~^6.403^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~410~^1.993^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~415~^3.535^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11978~^~501~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~502~^0.425^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~503~^0.373^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~504~^0.605^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~505~^0.515^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~506~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~507~^0.219^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~508~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~509~^0.245^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~510~^0.489^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~511~^0.554^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~512~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~513~^0.476^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~514~^1.661^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~515~^1.532^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~516~^0.425^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~517~^0.502^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~518~^0.464^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11978~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11978~^~606~^0.820^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~612~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~613~^0.656^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~614~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~617~^0.410^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~618~^4.265^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~619~^0.164^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~11978~^~645~^0.492^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11978~^~646~^4.511^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11979~^~312~^0.046^2^^~1~^~A~^^^1^0.032^0.059^1^^^^~05/01/2010~ -~11979~^~315~^0.097^2^^~1~^~A~^^^1^0.085^0.110^1^^^^~05/01/2010~ -~11979~^~404~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~05/01/2010~ -~11979~^~405~^0.070^2^^~1~^~A~^^^1^0.020^0.120^1^^^^~05/01/2010~ -~11979~^~406~^1.280^2^^~1~^~A~^^^1^1.060^1.500^1^^^^~05/01/2010~ -~11979~^~410~^0.315^2^^~1~^~A~^^^1^0.310^0.320^1^^^^~05/01/2010~ -~11979~^~415~^0.419^2^^~1~^~A~^^^1^0.396^0.442^1^^^^~05/01/2010~ -~11979~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~606~^0.092^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~607~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~05/01/2010~ -~11979~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~610~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~05/01/2010~ -~11979~^~611~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~05/01/2010~ -~11979~^~612~^0.008^2^^~1~^~A~^^^1^0.002^0.013^1^^^~1~^~05/01/2010~ -~11979~^~613~^0.052^2^^~1~^~A~^^^1^0.033^0.072^1^^^^~05/01/2010~ -~11979~^~614~^0.016^2^^~1~^~A~^^^1^0.013^0.019^1^^^^~05/01/2010~ -~11979~^~615~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~05/01/2010~ -~11979~^~617~^0.025^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~618~^0.062^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~624~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~05/01/2010~ -~11979~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~646~^0.112^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~653~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2010~ -~11979~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~673~^0.003^2^^~1~^~A~^^^1^0.002^0.005^1^^^~1~^~05/01/2010~ -~11979~^~674~^0.025^2^^~1~^~A~^^^1^0.021^0.030^1^^^^~05/01/2010~ -~11979~^~675~^0.062^2^^~1~^~A~^^^1^0.034^0.090^1^^^^~05/01/2010~ -~11979~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~11979~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~11979~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~851~^0.050^2^^~1~^~A~^^^1^0.022^0.078^1^^^^~05/01/2010~ -~11979~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11979~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2010~ -~11980~^~404~^0.010^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~405~^0.030^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~406~^0.627^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~410~^0.084^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~415~^0.120^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11980~^~501~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~502~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~503~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~504~^0.038^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~505~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~506~^0.009^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~507~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~508~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~509~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~510~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~511~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~512~^0.014^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~513~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~514~^0.103^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~515~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~516~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~517~^0.031^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~518~^0.029^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11980~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11980~^~606~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~612~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~613~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~614~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~617~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~618~^0.145^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~619~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~624~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~625~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~645~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11980~^~646~^0.153^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~312~^0.115^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~315~^0.204^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~404~^0.079^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~405~^0.055^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~406~^1.092^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~410~^0.205^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~415~^0.517^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11981~^~501~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~502~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~503~^0.026^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~504~^0.042^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~505~^0.036^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~506~^0.010^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~507~^0.015^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~508~^0.025^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~509~^0.017^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~510~^0.034^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~511~^0.039^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~512~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~513~^0.033^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~514~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~515~^0.106^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~516~^0.030^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~517~^0.035^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~518~^0.032^0^^~4~^~BFPN~^^^^^^^^^^~11/01/1996~ -~11981~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11981~^~606~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~608~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~609~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~610~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~611~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~613~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~614~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~617~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~618~^0.229^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~620~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~621~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~626~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~627~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~628~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~629~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~630~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~631~^0.000^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~ -~11981~^~645~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11981~^~646~^0.240^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~11982~^~312~^0.423^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~315~^1.580^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~404~^0.172^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~405~^3.197^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~406~^7.175^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~410~^1.591^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~415~^4.228^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11982~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11983~^~312~^0.092^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~315~^0.085^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~404~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~405~^0.020^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~406~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~11983~^~410~^0.067^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~ -~11983~^~415~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11983~^~606~^0.149^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~611~^0.002^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~612~^0.002^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~613~^0.117^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~614~^0.027^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~617~^0.167^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~618~^0.275^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~619~^0.122^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~626~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~645~^0.170^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11983~^~646~^0.397^0^^~4~^^^^^^^^^^^~03/01/2007~ -~11984~^~312~^0.190^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~315~^3.098^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~404~^0.028^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~405~^0.348^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~406~^0.639^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~410~^0.179^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~415~^0.152^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11984~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11985~^~312~^0.320^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~315~^6.704^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~404~^0.033^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~405~^0.137^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~406~^4.674^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~410~^1.356^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~415~^0.632^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11985~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11986~^~312~^0.111^1^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~315~^0.255^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~404~^0.106^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~405~^0.129^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~406~^0.787^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~410~^0.135^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~415~^0.086^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~11986~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11987~^~312~^0.244^4^0.031^~1~^~A~^^^2^0.116^0.424^1^-0.114^0.602^~2, 3~^~02/01/2010~ -~11987~^~315~^0.113^3^0.007^~1~^~A~^^^2^0.088^0.142^1^0.020^0.207^~2, 3~^~04/01/2005~ -~11987~^~404~^0.125^5^0.025^~1~^~A~^^^2^0.050^0.216^2^0.017^0.233^~2, 3~^~04/01/2005~ -~11987~^~405~^0.349^3^0.054^~1~^~A~^^^2^0.278^0.441^1^-0.341^1.039^~2, 3~^~05/01/2005~ -~11987~^~406~^4.956^5^0.587^~1~^~A~^^^2^3.399^7.800^2^2.502^7.410^~2, 3~^~04/01/2005~ -~11987~^~410~^1.294^3^0.114^~1~^~A~^^^2^1.119^1.462^1^-0.159^2.746^~2, 3~^~04/01/2005~ -~11987~^~415~^0.110^4^0.026^~1~^~A~^^^2^0.072^0.168^2^-0.037^0.258^~2, 3~^~04/01/2005~ -~11987~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~502~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~503~^0.112^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~504~^0.168^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~505~^0.126^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~506~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~507~^0.028^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~508~^0.112^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~509~^0.084^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~510~^0.197^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~511~^0.182^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~512~^0.070^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~513~^0.239^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~514~^0.295^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~515~^0.632^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~516~^0.126^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~517~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~518~^0.126^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~11987~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11987~^~606~^0.062^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11987~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11987~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~613~^0.062^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11987~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~617~^0.031^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11987~^~618~^0.123^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11987~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~645~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~646~^0.123^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~11987~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11987~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11988~^~312~^0.183^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~315~^1.951^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~404~^0.015^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~405~^0.844^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~406~^6.267^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~410~^0.481^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~415~^0.112^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11988~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11989~^~312~^0.133^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~315~^0.098^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1996~ -~11989~^~404~^0.013^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~405~^0.070^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~406~^0.224^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~410~^0.412^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~415~^0.014^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~11989~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11989~^~606~^0.089^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~612~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~613~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~614~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~617~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~618~^0.259^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~619~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~645~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11989~^~646~^0.263^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~11990~^~312~^0.155^2^^~1~^~A~^^^1^0.151^0.159^^^^^~07/01/2003~ -~11990~^~315~^0.391^2^^~1~^~A~^^^1^0.343^0.439^^^^^~07/01/2003~ -~11990~^~404~^0.131^2^^~1~^~A~^^^1^0.122^0.139^^^^^~07/01/2003~ -~11990~^~405~^0.114^2^^~1~^~A~^^^1^0.112^0.116^^^^^~07/01/2003~ -~11990~^~406~^0.743^2^^~1~^~A~^^^1^0.397^1.089^^^^^~07/01/2003~ -~11990~^~410~^0.203^2^^~1~^~A~^^^1^0.193^0.212^^^^^~07/01/2003~ -~11990~^~415~^0.274^2^^~1~^~A~^^^1^0.268^0.280^^^^^~07/01/2003~ -~11990~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11991~^~312~^0.257^2^^~1~^~A~^^^2^0.217^0.297^1^^^^~07/01/2003~ -~11991~^~315~^0.186^2^^~1~^~A~^^^2^0.159^0.212^1^^^^~07/01/2003~ -~11991~^~404~^0.097^2^^~1~^~A~^^^2^0.090^0.103^1^^^^~07/01/2003~ -~11991~^~405~^0.040^2^^~1~^~A~^^^2^0.039^0.041^1^^^^~07/01/2003~ -~11991~^~406~^0.667^2^^~1~^~A~^^^2^0.576^0.757^1^^^^~07/01/2003~ -~11991~^~410~^0.209^2^^~1~^~A~^^^2^0.181^0.237^1^^^^~07/01/2003~ -~11991~^~415~^0.237^2^^~1~^~A~^^^2^0.143^0.331^1^^^^~07/01/2003~ -~11991~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11991~^~606~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1998~ -~11992~^~312~^0.370^3^0.031^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~315~^0.064^3^0.006^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~404~^0.060^4^0.007^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~405~^0.431^4^0.105^~1~^~A~^^^1^^^^^^^~05/01/2005~ -~11992~^~406~^5.350^4^0.420^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~410~^1.960^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~415~^0.049^3^0.010^~1~^~A~^^^1^^^^^^^~04/01/2005~ -~11992~^~501~^0.039^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~502~^0.122^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~503~^0.086^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~504~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~505~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~506~^0.036^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~507~^0.014^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~508~^0.097^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~509~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~510~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~511~^0.089^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~512~^0.065^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~513~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~514~^0.222^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~515~^0.391^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~516~^0.104^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~517~^0.087^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~518~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11992~^~606~^0.060^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11992~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~11992~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~613~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~614~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~617~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~618~^0.280^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~626~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~11992~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11992~^~646~^0.280^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~11992~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11992~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~11993~^~312~^0.252^2^^~1~^~A~^^^1^0.223^0.280^1^^^^~08/01/2009~ -~11993~^~315~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~404~^0.146^2^^~1~^~A~^^^1^0.127^0.166^1^^^^~08/01/2009~ -~11993~^~405~^0.242^2^^~1~^~A~^^^1^0.239^0.246^1^^^^~08/01/2009~ -~11993~^~406~^6.585^2^^~1~^~A~^^^1^6.140^7.030^1^^^^~08/01/2009~ -~11993~^~410~^0.270^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~415~^0.056^2^^~1~^~A~^^^1^0.048^0.065^1^^^^~08/01/2009~ -~11993~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~502~^0.095^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~503~^0.055^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~504~^0.080^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~505~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~506~^0.015^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~507~^0.025^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~508~^0.060^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~509~^0.070^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~510~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~511~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~512~^0.045^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~513~^0.124^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~514~^0.205^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~515~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~516~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~517~^0.060^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~518~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~11993~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~11993~^~606~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11993~^~607~^0.000^0^^~4~^~BFSN~^~11260~^^^^^^^^^~02/01/2006~ -~11993~^~608~^0.000^0^^~4~^~BFSN~^~11260~^^^^^^^^^~02/01/2006~ -~11993~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~613~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~617~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~618~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~11993~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~645~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11993~^~646~^0.090^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~11993~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11993~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~11994~^~312~^0.064^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~404~^0.100^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~405~^0.153^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~406~^0.459^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~415~^0.074^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~606~^0.116^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~607~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~608~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~609~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~610~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~611~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~612~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~613~^0.099^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~614~^0.015^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~617~^0.050^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~618~^0.080^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~619~^0.271^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~620~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~621~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~626~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~627~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~628~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~629~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~630~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~631~^0.000^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~645~^0.053^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11994~^~646~^0.347^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~ -~11995~^~312~^0.320^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~315~^0.510^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~404~^0.020^5^0.001^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~405~^0.210^5^0.013^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~406~^4.980^5^0.085^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11995~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11996~^~312~^0.220^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~315~^0.940^2^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~404~^0.014^5^0.000^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~405~^0.130^5^0.009^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~406~^3.260^5^0.054^~1~^~A~^^^^^^^^^^~09/01/1997~ -~11996~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~11998~^~312~^0.286^5^0.039^~1~^~A~^^^2^0.170^0.400^4^0.179^0.393^~4~^~08/01/2009~ -~11998~^~315~^0.069^5^0.019^~1~^~A~^^^2^0.042^0.142^4^0.017^0.120^~4~^~08/01/2009~ -~11998~^~404~^0.059^5^0.010^~1~^~A~^^^2^0.030^0.080^4^0.031^0.088^~4~^~08/01/2009~ -~11998~^~405~^0.130^5^0.088^~1~^~A~^^^2^0.020^0.480^4^-0.114^0.374^~4~^~08/01/2009~ -~11998~^~406~^4.494^5^0.404^~1~^~A~^^^2^3.170^5.540^4^3.371^5.617^~4~^~08/01/2009~ -~11998~^~410~^1.140^5^0.147^~1~^~A~^^^2^0.800^1.500^4^0.732^1.548^~4~^~08/01/2009~ -~11998~^~415~^0.148^5^0.014^~1~^~A~^^^2^0.100^0.183^4^0.110^0.186^~4~^~08/01/2009~ -~11998~^~501~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~502~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~503~^0.099^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~504~^0.153^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~505~^0.252^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~506~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~507~^0.006^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~508~^0.097^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~509~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~510~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~511~^0.123^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~512~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~513~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~514~^0.228^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~515~^0.427^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~516~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~517~^0.176^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~518~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2015~ -~11998~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11998~^~606~^0.060^1^^~11~^~JO~^^^2^0.026^0.060^^^^^~08/01/2010~ -~11998~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2010~ -~11998~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~625~^0.001^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11998~^~645~^0.020^1^^~11~^~JO~^^^2^0.003^0.020^^^^^~08/01/2010~ -~11998~^~646~^0.117^1^^~11~^~JO~^^^2^0.078^0.117^^^^^~08/01/2010~ -~11998~^~652~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~653~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~662~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~663~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2017~ -~11998~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~673~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11998~^~674~^0.011^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11998~^~675~^0.117^1^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~11998~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2010~ -~11998~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~11998~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~11998~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~11998~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2010~ -~12001~^~312~^1.148^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~315~^0.142^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~404~^0.482^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~405~^0.301^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~406~^0.438^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~410~^0.877^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~415~^0.320^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12001~^~501~^0.123^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~502~^0.385^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~503~^0.443^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~504~^0.563^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~505~^0.570^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~506~^0.096^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~507~^0.116^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~508~^0.797^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~509~^0.544^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~510~^0.535^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~511~^0.494^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~512~^0.207^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~513~^0.336^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~514~^0.817^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~515~^1.036^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~516~^0.465^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~517~^0.369^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~518~^0.496^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~606~^1.509^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~613~^0.999^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~614~^0.510^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~617~^0.682^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~618~^2.290^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~619~^0.687^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~626~^0.030^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~645~^0.712^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12001~^~646~^2.977^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~312~^1.069^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~315~^0.132^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~404~^0.290^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~405~^0.170^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~406~^5.300^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~410~^0.816^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~415~^0.298^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12003~^~501~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~502~^0.276^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~503~^0.317^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~504~^0.403^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~505~^0.408^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~506~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~507~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~508~^0.571^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~509~^0.390^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~510~^0.383^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~511~^0.354^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~512~^0.148^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~513~^0.241^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~514~^0.585^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~515~^0.742^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~516~^0.333^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~517~^0.264^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~518~^0.355^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~606~^0.621^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~613~^0.411^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~614~^0.210^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~617~^0.281^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~618~^0.942^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~619~^0.283^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~626~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~645~^0.293^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12003~^~646~^1.225^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~312~^1.444^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~315~^0.178^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~404~^0.055^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~405~^0.055^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~406~^0.880^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~410~^1.103^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~415~^0.403^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12004~^~501~^0.162^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~502~^0.232^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~503~^0.338^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~504~^0.647^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~505~^0.260^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~506~^0.035^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~507~^0.093^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~508~^0.282^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~509~^0.439^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~510~^0.578^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~511~^0.549^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~512~^0.091^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~513~^0.271^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~514~^0.659^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~515~^0.835^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~516~^0.375^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~517~^0.297^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~518~^0.400^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~606~^0.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~613~^0.177^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~614~^0.090^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~617~^0.121^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~618~^0.406^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~619~^0.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~626~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~645~^0.126^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12004~^~646~^0.527^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~312~^2.455^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~315~^0.303^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~404~^0.030^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~405~^0.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~406~^2.100^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~410~^1.875^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~415~^0.685^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12005~^~501~^0.234^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~502~^0.335^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~503~^0.488^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~504~^0.935^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~505~^0.376^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~506~^0.050^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~507~^0.135^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~508~^0.407^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~509~^0.634^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~510~^0.834^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~511~^0.793^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~512~^0.132^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~513~^0.392^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~514~^0.951^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~515~^5.206^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~516~^0.541^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~517~^0.429^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~518~^0.577^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~606~^0.454^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~613~^0.301^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~614~^0.154^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~617~^0.205^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~618~^0.690^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~619~^0.207^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~626~^0.009^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12005~^~645~^0.214^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12005~^~646~^0.896^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12006~^~312~^0.924^3^0.736^~6~^~JA~^^^2^0.188^1.660^1^-8.425^10.273^~2~^~04/01/2011~ -~12006~^~315~^2.723^3^0.557^~6~^~JA~^^^2^2.167^3.280^1^-4.350^9.797^~2~^~04/01/2011~ -~12006~^~404~^0.620^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~405~^0.170^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~406~^8.830^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~501~^0.436^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~502~^0.709^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~503~^0.801^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~504~^1.371^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~505~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~506~^0.588^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~507~^0.407^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~508~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~509~^0.563^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~510~^0.950^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~511~^2.143^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~512~^0.531^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~513~^1.044^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~514~^1.689^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~515~^3.500^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~516~^0.943^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~517~^0.776^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~518~^1.049^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~12006~^~605~^0.140^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~606~^3.330^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~612~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~613~^2.170^24^0.079^~1~^~A~^^^7^1.813^2.536^6^1.976^2.364^~2~^~04/01/2011~ -~12006~^~614~^0.912^24^0.031^~1~^~A~^^^7^0.684^1.536^6^0.837^0.987^~2~^~04/01/2011~ -~12006~^~615~^0.093^2^^~1~^~A~^^^2^0.092^0.095^1^^^^~06/01/2003~ -~12006~^~617~^2.203^23^0.122^~1~^~A~^^^7^0.960^3.652^6^1.905^2.502^~2~^~04/01/2011~ -~12006~^~618~^5.835^24^0.283^~1~^~A~^^^7^4.209^6.884^6^5.143^6.527^~2~^~04/01/2011~ -~12006~^~619~^17.830^24^0.722^~1~^~A~^^^7^14.929^21.369^6^16.064^19.597^~2~^~04/01/2011~ -~12006~^~624~^0.032^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~625~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~626~^0.029^9^0.002^~1~^~A~^^^3^0.000^0.031^2^0.020^0.037^~2~^~04/01/2011~ -~12006~^~628~^0.046^2^^~1~^~A~^^^2^0.032^0.061^1^^^^~06/01/2003~ -~12006~^~645~^2.309^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~646~^23.665^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~12006~^~652~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~653~^0.063^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~675~^5.835^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12006~^~687~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~12006~^~851~^17.830^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~ -~12007~^~312~^1.180^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~315~^2.143^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~404~^2.102^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~405~^0.399^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~406~^4.065^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~410~^0.448^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~415~^0.769^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12007~^~501~^0.618^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~502~^1.515^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~503~^1.476^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~504~^2.798^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~505~^2.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~506~^0.665^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~507~^1.074^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~508~^2.550^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~509~^1.476^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~510~^2.102^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~511~^5.533^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~512~^1.291^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~513~^1.901^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~514~^4.459^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~515~^10.255^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~516~^1.986^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~517~^1.747^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~518~^2.048^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~606~^1.588^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~612~^0.056^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~613~^1.381^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~614~^0.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~617~^1.082^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~618~^2.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~619~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~626~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12007~^~645~^1.133^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12007~^~646~^2.958^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~312~^1.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~315~^2.129^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12008~^~404~^2.089^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~405~^0.396^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~406~^4.039^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~410~^0.445^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~415~^0.764^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~501~^0.752^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~502~^1.843^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~503~^1.796^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~504~^3.404^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~505~^2.529^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~506~^0.809^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~507~^1.307^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~508~^3.103^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~509~^1.796^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~510~^2.557^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~511~^6.732^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~512~^1.570^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~513~^2.313^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~514~^5.425^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~515~^12.476^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~516~^2.416^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~517~^2.125^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~518~^2.492^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~606~^0.310^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~612~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~613~^0.269^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~614~^0.027^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~617~^0.211^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~618~^0.570^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~619~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~626~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~645~^0.221^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12008~^~646~^0.577^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~312~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~315~^2.260^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~404~^2.217^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~405~^0.420^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~406~^4.286^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~410~^0.472^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~415~^0.811^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12011~^~501~^0.741^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~502~^1.816^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~503~^1.769^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~504~^3.354^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~505~^2.492^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~506~^0.797^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~507~^1.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~508~^3.057^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~509~^1.769^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~510~^2.520^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~511~^6.633^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~512~^1.547^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~513~^2.279^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~514~^5.345^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~515~^12.293^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~516~^2.381^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~517~^2.094^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~518~^2.455^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~606~^1.207^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~612~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~613~^1.049^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~614~^0.106^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~617~^0.823^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~618~^2.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~619~^0.009^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~626~^0.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~645~^0.861^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12011~^~646~^2.248^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12012~^~312~^1.600^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~315~^7.600^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~404~^1.275^2^^~12~^~MA~^^^2^1.170^1.380^1^^^^~01/01/2015~ -~12012~^~405~^0.285^2^^~12~^~MA~^^^2^0.240^0.330^1^^^^~01/01/2015~ -~12012~^~406~^9.200^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~415~^0.600^2^^~12~^~MA~^^^2^0.120^1.080^1^^^^~01/01/2015~ -~12012~^~501~^0.369^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~502~^1.269^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~503~^1.286^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~504~^2.163^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~505~^1.276^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~506~^0.933^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~507~^0.672^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~508~^1.447^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~509~^1.263^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~510~^1.777^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~511~^4.550^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~512~^0.969^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~513~^1.528^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~514~^3.662^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~515~^6.269^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~516~^1.611^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~517~^1.597^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~518~^1.713^0^^~6~^~JA~^^^^^^^^^^~01/01/2015~ -~12012~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~606~^4.600^2^^~12~^~MA~^^^2^4.000^5.200^1^^^^~01/01/2015~ -~12012~^~613~^2.866^2^^~12~^~MA~^^^2^2.710^3.440^1^^^^~01/01/2015~ -~12012~^~614~^1.244^2^^~12~^~MA~^^^2^1.210^1.460^1^^^^~01/01/2015~ -~12012~^~615~^0.312^2^^~12~^~MA~^^^2^0.280^0.390^1^^^^~01/01/2015~ -~12012~^~617~^5.276^2^^~6~^~JA~^^^2^5.270^5.800^1^^^^~01/01/2015~ -~12012~^~618~^27.459^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~12012~^~619~^10.024^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~ -~12012~^~624~^0.121^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~627~^0.617^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~628~^0.124^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~645~^5.400^2^^~12~^~MA~^^^2^5.000^5.800^1^^^^~01/01/2015~ -~12012~^~646~^38.100^2^^~12~^~MA~^^^2^36.200^40.000^1^^^^~01/01/2015~ -~12012~^~654~^0.056^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~670~^0.202^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~674~^5.023^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~ -~12012~^~675~^27.358^2^^~12~^~MA~^^^2^27.560^29.210^1^^^^~01/01/2015~ -~12012~^~685~^1.340^2^^~12~^~MA~^^^2^0.800^1.980^1^^^^~01/01/2015~ -~12012~^~851~^8.684^2^^~12~^~MA~^^^2^8.680^9.340^1^^^^~01/01/2015~ -~12013~^~312~^0.350^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~315~^2.318^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~404~^0.640^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~405~^0.150^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~406~^1.600^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~410~^0.851^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~415~^0.629^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12013~^~501~^0.221^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~502~^0.747^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~503~^0.765^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~504~^1.215^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~505~^0.985^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~506~^0.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~507~^0.201^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~508~^0.767^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~509~^0.375^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~510~^0.991^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~511~^1.262^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~512~^0.430^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~513~^0.892^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~514~^1.884^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~515~^3.570^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~516~^0.826^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~517~^1.285^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~518~^0.939^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~606~^0.330^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~612~^0.004^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~613~^0.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~617~^0.230^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~618~^1.064^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~619~^0.102^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~628~^0.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~630~^0.115^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~645~^0.388^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12013~^~646~^1.166^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12014~^~312~^1.343^3^0.017^~1~^~A~^^^1^1.310^1.360^2^1.271^1.415^~2, 3~^~12/01/2008~ -~12014~^~315~^4.543^3^0.170^~1~^~A~^^^1^4.210^4.770^2^3.811^5.276^~2, 3~^~12/01/2008~ -~12014~^~404~^0.273^3^0.029^~1~^~A~^^^1^0.220^0.320^2^0.148^0.398^~2, 3~^~12/01/2008~ -~12014~^~405~^0.153^3^0.003^~1~^~A~^^^1^0.150^0.160^2^0.139^0.167^~2, 3~^~12/01/2008~ -~12014~^~406~^4.987^3^0.179^~1~^~A~^^^1^4.730^5.330^2^4.219^5.755^~2, 3~^~12/01/2008~ -~12014~^~410~^0.750^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~12014~^~415~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~12/01/2008~ -~12014~^~501~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~502~^0.998^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~503~^1.281^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~504~^2.419^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~505~^1.236^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~506~^0.603^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~507~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~508~^1.733^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~509~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~510~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~511~^5.353^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~512~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~513~^1.485^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~514~^2.960^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~515~^6.188^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~516~^1.843^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~517~^1.316^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~518~^1.673^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12014~^~605~^0.064^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~606~^8.659^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~608~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~12/01/2008~ -~12014~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~12/01/2008~ -~12014~^~610~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~12/01/2008~ -~12014~^~611~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~12/01/2008~ -~12014~^~612~^0.059^3^0.001^~1~^~A~^^^1^0.058^0.060^2^0.056^0.061^~2, 3~^~12/01/2008~ -~12014~^~613~^5.364^3^0.091^~1~^~A~^^^1^5.189^5.496^2^4.972^5.756^~2, 3~^~12/01/2008~ -~12014~^~614~^2.869^3^0.064^~1~^~A~^^^1^2.742^2.953^2^2.591^3.146^~2, 3~^~12/01/2008~ -~12014~^~615~^0.212^3^0.005^~1~^~A~^^^1^0.201^0.217^2^0.189^0.234^~2, 3~^~12/01/2008~ -~12014~^~617~^16.133^3^0.287^~1~^~AS~^^^1^15.832^16.707^2^14.896^17.369^~2, 3~^~12/01/2008~ -~12014~^~618~^20.710^3^0.695^~1~^~AS~^^^1^19.321^21.407^2^17.721^23.699^~2, 3~^~12/01/2008~ -~12014~^~619~^0.120^3^0.002^~1~^~AS~^^^1^0.116^0.122^2^0.111^0.129^~2, 3~^~12/01/2008~ -~12014~^~620~^0.131^3^0.001^~1~^~A~^^^1^0.128^0.132^2^0.125^0.136^~2, 3~^~12/01/2008~ -~12014~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~624~^0.057^3^0.004^~1~^~A~^^^1^0.052^0.065^2^0.040^0.074^~2, 3~^~12/01/2008~ -~12014~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~626~^0.048^3^0.002^~1~^~AS~^^^1^0.046^0.051^2^0.041^0.055^~2, 3~^~12/01/2008~ -~12014~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~628~^0.056^3^0.000^~1~^~A~^^^1^0.055^0.056^2^0.054^0.057^~2, 3~^~12/01/2008~ -~12014~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.003^~2, 3~^~12/01/2008~ -~12014~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~645~^16.242^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~646~^20.976^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~12/01/2008~ -~12014~^~653~^0.037^3^0.001^~1~^~A~^^^1^0.035^0.039^2^0.032^0.042^~2, 3~^~12/01/2008~ -~12014~^~654~^0.044^3^0.000^~1~^~A~^^^1^0.044^0.045^2^0.043^0.046^~2, 3~^~12/01/2008~ -~12014~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~663~^0.025^3^0.002^~1~^~A~^^^1^0.022^0.029^2^0.015^0.034^~2, 3~^~12/01/2008~ -~12014~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~12/01/2008~ -~12014~^~665~^0.039^3^0.003^~1~^~A~^^^1^0.033^0.044^2^0.025^0.052^~2, 3~^~12/01/2008~ -~12014~^~670~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~12/01/2008~ -~12014~^~671~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~12/01/2008~ -~12014~^~672~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~12/01/2008~ -~12014~^~673~^0.048^3^0.002^~1~^~A~^^^1^0.046^0.051^2^0.041^0.055^~2, 3~^~12/01/2008~ -~12014~^~674~^16.108^3^0.288^~1~^~A~^^^1^15.810^16.684^2^14.868^17.347^~2, 3~^~12/01/2008~ -~12014~^~675~^20.667^3^0.692^~1~^~A~^^^1^19.284^21.363^2^17.691^23.643^~2, 3~^~12/01/2008~ -~12014~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2008~ -~12014~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~695~^0.039^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~ -~12014~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~851~^0.120^3^0.002^~1~^~A~^^^1^0.116^0.122^2^0.111^0.129^~2, 3~^~12/01/2008~ -~12014~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~12014~^~858~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~12/01/2008~ -~12016~^~312~^1.275^2^^~1~^~A~^^^2^1.210^1.340^^^^^~04/01/2009~ -~12016~^~315~^4.490^2^^~1~^~A~^^^2^4.270^4.710^^^^^~04/01/2009~ -~12016~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~406~^4.430^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~410~^0.570^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~501~^0.569^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~502~^0.985^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~503~^1.265^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~504~^2.388^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~505~^1.220^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~506~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~507~^0.327^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~508~^1.711^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~509~^1.079^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~510~^1.559^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~511~^5.284^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~512~^0.770^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~513~^1.466^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~514~^2.922^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~515~^6.108^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~516~^1.819^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~517~^1.299^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~518~^1.652^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~605~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~606~^8.544^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~608~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~612~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~613~^5.191^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~614~^2.913^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~615~^0.216^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~617~^15.626^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~618~^19.590^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~619~^0.111^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~620~^0.123^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~624~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~626~^0.044^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~628~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~645~^15.734^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~646~^19.856^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~653~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~654~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~663~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~664~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~665~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~674~^15.611^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~675~^19.559^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12016~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12016~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~851~^0.111^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12016~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12016~^~858~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12021~^~312~^1.747^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~315~^2.014^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~404~^1.163^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~405~^0.415^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~406~^2.284^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~410~^4.030^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~415~^1.170^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12021~^~501~^0.183^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~502~^0.586^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~503~^0.717^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~504~^1.154^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~505~^0.534^55^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~506~^0.284^7^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~507~^0.311^7^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~508~^0.806^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~509~^0.531^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~510~^1.025^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~511~^1.749^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~512~^0.452^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~513~^0.772^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~514~^1.807^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~515~^3.699^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~516~^1.010^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~517~^0.726^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~518~^0.812^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~606~^3.682^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~612~^0.035^41^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~613~^2.574^44^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~614~^0.921^44^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~617~^4.806^44^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~618~^28.084^44^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~619~^0.111^32^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~626~^0.037^32^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~645~^4.848^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12021~^~646~^28.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~312~^1.733^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~315~^1.998^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~404~^1.153^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~405~^0.412^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~406~^2.265^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~410~^3.996^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~415~^1.161^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12022~^~501~^0.403^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~502~^1.290^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~503~^1.579^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~504~^2.540^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~505~^1.176^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~506~^0.625^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~507~^0.685^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~508~^1.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~509~^1.169^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~510~^2.258^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~511~^3.851^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~512~^0.995^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~513~^1.700^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~514~^3.978^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~515~^8.145^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~516~^2.224^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~517~^1.599^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~518~^1.788^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~606~^0.207^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~612~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~613~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~614~^0.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~617~^0.270^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~618~^1.576^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~619~^0.006^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~626~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~645~^0.272^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12022~^~646~^1.584^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~312~^4.082^4^1.277^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~315~^2.460^3^0.723^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~404~^0.791^8^0.084^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~405~^0.247^10^0.034^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~406~^4.515^10^0.227^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~410~^0.050^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~415~^0.790^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~501~^0.388^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~502~^0.736^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~503~^0.763^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~504~^1.358^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~505~^0.569^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~506~^0.586^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~507~^0.358^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~508~^0.940^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~509~^0.743^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~510~^0.990^19^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~511~^2.630^18^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~512~^0.522^18^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~513~^0.927^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~514~^1.646^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~515~^3.955^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~516~^1.215^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~517~^0.810^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~518~^0.967^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~606~^6.957^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~612~^0.124^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~613~^4.441^761^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~614~^2.090^761^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~617~^18.521^761^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~618~^21.375^761^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~619~^0.376^25^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~626~^0.149^17^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~628~^0.070^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12023~^~645~^18.759^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12023~^~646~^21.773^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~312~^2.470^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~315~^2.496^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~404~^0.803^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~405~^0.251^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~406~^4.581^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~410~^0.051^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~415~^0.802^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12024~^~501~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~502~^0.704^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~503~^0.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~504~^1.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~505~^0.544^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~506~^0.560^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~507~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~508~^0.899^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~509~^0.710^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~510~^0.947^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~511~^2.515^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~512~^0.499^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~513~^0.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~514~^1.574^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~515~^3.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~516~^1.162^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~517~^0.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~518~^0.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~606~^6.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~612~^0.120^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~613~^4.292^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~614~^2.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~617~^17.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~618~^20.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~619~^0.363^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~626~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~628~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~645~^18.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12024~^~646~^21.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~312~^1.457^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~315~^1.427^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~404~^1.205^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~405~^0.466^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~406~^5.438^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~410~^0.680^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~415~^0.146^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12029~^~501~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~502~^0.704^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~503~^0.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~504~^1.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~505~^0.544^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~506~^0.560^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~507~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~508~^0.899^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~509~^0.710^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~510~^0.947^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~511~^2.515^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~512~^0.499^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~513~^0.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~514~^1.574^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~515~^3.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~516~^1.162^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~517~^0.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~518~^0.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~606~^6.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~612~^0.120^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~613~^4.292^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~614~^2.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~617~^17.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~618~^20.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~619~^0.363^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~626~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~628~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12029~^~645~^18.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12029~^~646~^21.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~312~^1.432^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12032~^~315~^1.403^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12032~^~404~^2.530^6^0.024^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~405~^0.270^6^0.008^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~406~^12.600^6^0.482^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~410~^2.760^6^0.016^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~415~^0.152^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~501~^0.882^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~502~^1.674^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~503~^1.734^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~504~^3.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~505~^1.293^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~506~^1.331^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~507~^0.814^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~508~^2.138^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~509~^1.689^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~510~^2.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~511~^5.979^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~512~^1.187^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~513~^2.107^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~514~^3.743^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~515~^8.991^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~516~^2.761^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~517~^1.841^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~518~^2.198^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~606~^1.634^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~612~^0.029^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~613~^1.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~614~^0.491^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~617~^4.349^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~618~^5.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~619~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~626~^0.035^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~628~^0.016^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~645~^4.405^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12032~^~646~^5.113^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~312~^1.425^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12033~^~315~^1.396^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12033~^~404~^2.516^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~405~^0.269^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~406~^12.533^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~410~^2.745^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~415~^0.142^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~501~^1.097^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~502~^2.081^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~503~^2.157^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~504~^3.841^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~505~^1.608^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~506~^1.656^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~507~^1.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~508~^2.658^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~509~^2.100^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~510~^2.800^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~511~^7.436^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~512~^1.476^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~513~^2.620^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~514~^4.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~515~^11.182^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~516~^3.434^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~517~^2.289^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~518~^2.734^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~606~^0.201^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~612~^0.004^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~613~^0.128^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~614~^0.060^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~617~^0.536^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~618~^0.618^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~619~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~626~^0.004^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~628~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~645~^0.543^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12033~^~646~^0.630^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~312~^1.457^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12034~^~315~^1.427^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12034~^~404~^2.573^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~405~^0.275^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~406~^12.816^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~410~^2.807^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~415~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~501~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~502~^0.704^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~503~^0.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~504~^1.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~505~^0.544^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~506~^0.560^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~507~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~508~^0.899^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~509~^0.710^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~510~^0.947^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~511~^2.515^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~512~^0.499^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~513~^0.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~514~^1.574^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~515~^3.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~516~^1.162^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~517~^0.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~518~^0.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~606~^6.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~612~^0.120^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~613~^4.292^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~614~^2.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~617~^17.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~618~^20.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~619~^0.363^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~626~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~628~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~645~^18.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12034~^~646~^21.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12036~^~312~^1.800^2^^~1~^~A~^^^1^1.700^1.900^1^^^^~05/01/2007~ -~12036~^~315~^1.950^2^^~1~^~A~^^^1^1.700^2.200^1^^^^~05/01/2007~ -~12036~^~404~^1.480^2^^~1~^~A~^^^1^1.360^1.600^1^^^^~05/01/2007~ -~12036~^~405~^0.355^2^^~1~^~A~^^^1^0.263^0.446^1^^^^~05/01/2007~ -~12036~^~406~^8.335^2^^~1~^~A~^^^1^6.770^9.900^1^^^^~05/01/2007~ -~12036~^~410~^1.130^2^^~1~^~A~^^^1^1.110^1.150^1^^^^~05/01/2007~ -~12036~^~415~^1.345^2^^~1~^~A~^^^1^1.310^1.380^1^^^^~05/01/2007~ -~12036~^~501~^0.348^25^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~502~^0.928^41^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~503~^1.139^41^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~504~^1.659^41^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~505~^0.937^44^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~506~^0.494^40^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~507~^0.451^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~508~^1.169^40^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~509~^0.666^31^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~510~^1.315^41^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~511~^2.403^35^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~512~^0.632^35^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~513~^1.117^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~514~^2.446^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~515~^5.579^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~516~^1.461^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~517~^1.182^25^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~518~^1.075^26^^~1~^^^^^^^^^^^~05/01/2007~ -~12036~^~606~^4.455^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12036~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12036~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12036~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~612~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~05/01/2007~ -~12036~^~613~^2.210^2^^~1~^~A~^^^1^2.030^2.390^1^^^^~05/01/2007~ -~12036~^~614~^1.690^2^^~1~^~A~^^^1^1.570^1.810^1^^^^~05/01/2007~ -~12036~^~615~^0.115^2^^~1~^~A~^^^1^0.100^0.130^1^^^^~05/01/2007~ -~12036~^~617~^18.380^2^^~1~^~A~^^^1^8.160^28.600^1^^^^~05/01/2007~ -~12036~^~618~^23.050^2^^~1~^~A~^^^1^15.800^30.300^1^^^^~05/01/2007~ -~12036~^~619~^0.060^2^^~1~^~A~^^^1^0.060^0.060^^^^^~05/01/2007~ -~12036~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~624~^0.320^2^^~1~^~A~^^^1^0.290^0.350^1^^^^~05/01/2007~ -~12036~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~626~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~05/01/2007~ -~12036~^~627~^0.014^2^^~1~^~A~^^^1^0.007^0.020^1^^^~1~^~05/01/2007~ -~12036~^~628~^0.085^2^^~1~^~A~^^^1^0.070^0.100^1^^^^~05/01/2007~ -~12036~^~629~^0.014^2^^~1~^~A~^^^1^0.007^0.020^1^^^~1~^~05/01/2007~ -~12036~^~630~^0.029^2^^~1~^~A~^^^1^0.007^0.050^1^^^~1~^~05/01/2007~ -~12036~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~645~^18.528^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12036~^~646~^23.137^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12036~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~653~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~05/01/2007~ -~12036~^~654~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~05/01/2007~ -~12036~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~687~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~05/01/2007~ -~12036~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~857~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12036~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~12037~^~312~^1.830^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~315~^2.110^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~404~^0.106^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~405~^0.246^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~406~^7.042^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~410~^7.042^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12037~^~415~^0.804^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12037~^~501~^0.295^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~502~^0.788^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~503~^0.967^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~504~^1.408^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~505~^0.795^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~506~^0.420^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~507~^0.383^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~508~^0.992^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~509~^0.565^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~510~^1.116^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~511~^2.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~512~^0.536^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~513~^0.948^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~514~^2.076^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~515~^4.735^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~516~^1.240^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~517~^1.003^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~518~^0.912^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~606~^5.219^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~612~^0.051^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~613~^2.808^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~614~^2.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~617~^9.399^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~618~^32.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~619~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~626~^0.049^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~628~^0.048^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12037~^~645~^9.505^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12037~^~646~^32.884^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~312~^1.804^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~315~^2.080^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~404~^0.320^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~405~^0.280^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~406~^4.130^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12038~^~410~^6.942^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12038~^~415~^0.792^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12038~^~501~^0.306^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~502~^0.817^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~503~^1.003^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~504~^1.461^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~505~^0.825^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~506~^0.435^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~507~^0.397^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~508~^1.029^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~509~^0.587^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~510~^1.158^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~511~^2.116^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~512~^0.556^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~513~^0.984^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~514~^2.153^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~515~^4.912^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~516~^1.286^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~517~^1.040^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~518~^0.947^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2004~ -~12038~^~605~^0.158^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~12038~^~606~^7.068^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~612~^0.086^2^^~1~^~A~^^^2^0.066^0.145^^^^^~05/01/2004~ -~12038~^~613~^4.218^2^^~1~^~A~^^^2^3.907^5.150^^^^^~05/01/2004~ -~12038~^~614~^2.097^2^^~1~^~A~^^^2^2.096^2.099^^^^^~05/01/2004~ -~12038~^~615~^0.146^2^^~1~^~A~^^^2^0.145^0.147^^^^^~05/01/2004~ -~12038~^~617~^7.925^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12038~^~618~^34.208^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12038~^~619~^0.081^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12038~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~624~^0.380^2^^~1~^~A~^^^2^0.376^0.393^^^^^~05/01/2004~ -~12038~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~626~^0.058^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12038~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12038~^~628~^0.077^2^^~1~^~A~^^^2^0.049^0.086^^^^^~05/01/2004~ -~12038~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12038~^~645~^8.063^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~646~^34.294^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12038~^~652~^0.006^2^^~1~^~A~^^^2^0.000^0.009^^^^~1~^~05/01/2004~ -~12038~^~653~^0.022^2^^~1~^~A~^^^2^0.000^0.030^^^^~1~^~05/01/2004~ -~12038~^~654~^0.112^2^^~1~^~A~^^^2^0.099^0.117^^^^^~05/01/2004~ -~12038~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~663~^0.066^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~665~^0.084^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~672~^0.005^2^^~1~^~A~^^^2^0.000^0.007^^^^~1~^~05/01/2004~ -~12038~^~673~^0.050^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~674~^7.859^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~675~^34.124^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~685~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12038~^~687~^0.003^2^^~1~^~A~^^^2^0.000^0.004^^^^~1~^~05/01/2004~ -~12038~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~693~^0.074^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~12038~^~695~^0.084^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~12038~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~ -~12038~^~851~^0.076^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~12039~^~312~^1.834^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~315~^2.114^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~404~^0.325^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~405~^0.285^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~406~^4.198^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~410~^7.056^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~415~^0.805^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12039~^~501~^0.263^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~502~^0.702^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~503~^0.861^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~504~^1.254^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~505~^0.708^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~506~^0.374^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~507~^0.341^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~508~^0.883^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~509~^0.503^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~510~^0.994^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~511~^1.816^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~512~^0.477^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~513~^0.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~514~^1.848^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~515~^4.216^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~516~^1.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~517~^0.893^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~518~^0.812^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~606~^5.953^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~612~^0.058^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~613~^3.202^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~614~^2.522^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~617~^10.720^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~618~^37.390^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~619~^0.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~626~^0.056^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~628~^0.055^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~645~^10.841^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12039~^~646~^37.507^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12040~^~312~^1.597^3^0.048^~1~^~A~^^^1^1.530^1.690^2^1.390^1.804^~2, 3~^~08/01/2010~ -~12040~^~315~^2.073^3^0.043^~1~^~A~^^^1^2.000^2.150^2^1.887^2.260^~2, 3~^~08/01/2010~ -~12040~^~404~^0.053^3^0.007^~1~^~A~^^^1^0.040^0.060^2^0.025^0.082^~2, 3~^~08/01/2010~ -~12040~^~405~^0.163^3^0.007^~1~^~A~^^^1^0.150^0.170^2^0.135^0.192^~2, 3~^~08/01/2010~ -~12040~^~406~^6.747^3^0.133^~1~^~A~^^^1^6.530^6.990^2^6.172^7.321^~2, 3~^~08/01/2010~ -~12040~^~410~^1.167^3^0.033^~1~^~A~^^^1^1.100^1.200^2^1.023^1.310^~2, 3~^~08/01/2010~ -~12040~^~415~^0.550^3^0.021^~1~^~A~^^^1^0.520^0.590^2^0.460^0.640^~2, 3~^~08/01/2010~ -~12040~^~501~^0.285^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~502~^0.723^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~503~^0.842^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~504~^1.315^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~505~^0.532^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~506~^0.435^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~508~^0.942^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~509~^0.435^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~510~^1.002^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~511~^1.753^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~512~^0.492^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~513~^0.865^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~514~^1.848^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~515~^4.273^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~516~^1.123^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~517~^0.878^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~518~^0.857^0^^~1~^~A~^^^^^^^^^^~08/01/2010~ -~12040~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~606~^4.678^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~607~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~08/01/2010~ -~12040~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~08/01/2010~ -~12040~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2010~ -~12040~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~612~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~08/01/2010~ -~12040~^~613~^1.890^3^0.030^~1~^~A~^^^1^1.860^1.950^2^1.761^2.019^~2, 3~^~08/01/2010~ -~12040~^~614~^2.030^3^0.285^~1~^~A~^^^1^1.730^2.600^2^0.803^3.257^~2, 3~^~08/01/2010~ -~12040~^~615~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~08/01/2010~ -~12040~^~617~^38.853^3^0.283^~1~^~AS~^^^1^38.490^39.410^2^37.637^40.069^~2, 3~^~08/01/2010~ -~12040~^~618~^9.736^3^0.247^~1~^~AS~^^^1^9.363^10.202^2^8.675^10.797^~2, 3~^~08/01/2010~ -~12040~^~619~^0.050^3^0.000^~1~^~AS~^^^1^0.050^0.050^^^^~2, 3~^~08/01/2010~ -~12040~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~08/01/2010~ -~12040~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~624~^0.437^3^0.003^~1~^~A~^^^1^0.430^0.440^2^0.422^0.451^~2, 3~^~08/01/2010~ -~12040~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2010~ -~12040~^~626~^0.020^3^0.000^~1~^~AS~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~08/01/2010~ -~12040~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~628~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~08/01/2010~ -~12040~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~08/01/2010~ -~12040~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~645~^39.025^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~646~^9.805^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~08/01/2010~ -~12040~^~653~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~08/01/2010~ -~12040~^~654~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~08/01/2010~ -~12040~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~08/01/2010~ -~12040~^~663~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~08/01/2010~ -~12040~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~665~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~08/01/2010~ -~12040~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~08/01/2010~ -~12040~^~671~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~08/01/2010~ -~12040~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~673~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~08/01/2010~ -~12040~^~674~^38.837^3^0.282^~1~^~A~^^^1^38.470^39.390^2^37.625^40.048^~2, 3~^~08/01/2010~ -~12040~^~675~^9.723^3^0.247^~1~^~A~^^^1^9.350^10.190^2^8.661^10.786^~2, 3~^~08/01/2010~ -~12040~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~08/01/2010~ -~12040~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~689~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2010~ -~12040~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12040~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~12040~^~851~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~08/01/2010~ -~12040~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2010~ -~12040~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~08/01/2010~ -~12040~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2010~ -~12041~^~312~^1.713^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~315~^1.975^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~404~^3.187^3^0.121^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~405~^0.266^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~406~^7.313^3^0.293^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~410~^6.595^3^0.320^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~415~^0.753^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12041~^~501~^0.735^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~502~^1.959^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~503~^2.403^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~504~^3.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~505~^1.977^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~506~^1.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~507~^0.952^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~508~^2.466^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~509~^1.406^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~510~^2.775^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~511~^5.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~512~^1.333^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~513~^2.358^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~514~^5.160^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~515~^11.770^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~516~^3.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~517~^2.494^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~518~^2.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~606~^0.138^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~612~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~613~^0.074^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~614~^0.059^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~617~^0.249^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~618~^0.868^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~619~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~626~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~628~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12041~^~645~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12041~^~646~^0.870^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~312~^0.621^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~315~^1.337^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~404~^0.112^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~405~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~406~^1.827^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~410~^0.715^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~415~^0.528^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12058~^~501~^0.074^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~502~^0.236^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~503~^0.285^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~504~^0.489^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~505~^0.384^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~506~^0.103^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~507~^0.109^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~508~^0.269^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~509~^0.187^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~510~^0.345^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~511~^0.473^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~512~^0.170^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~513~^0.350^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~514~^0.635^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~515~^0.986^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~516~^0.285^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~517~^0.246^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~518~^0.261^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~606~^3.102^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~613~^2.850^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~614~^0.252^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~617~^15.109^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~618~^4.596^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~645~^15.109^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12058~^~646~^4.596^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~312~^0.818^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~315~^1.363^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~404~^0.149^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~405~^0.154^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~406~^2.406^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~410~^0.940^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~415~^0.695^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12059~^~501~^0.098^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~502~^0.312^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~503~^0.376^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~504~^0.644^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~505~^0.505^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~506~^0.136^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~507~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~508~^0.354^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~509~^0.246^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~510~^0.455^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~511~^0.623^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~512~^0.224^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~513~^0.461^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~514~^0.837^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~515~^1.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~516~^0.376^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~517~^0.324^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~518~^0.344^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~606~^4.084^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~613~^3.753^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~614~^0.332^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~617~^19.896^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~618~^6.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~645~^19.896^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12059~^~646~^6.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~312~^0.611^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~315~^1.743^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~404~^0.146^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~405~^0.154^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~406~^2.382^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~410~^0.931^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~415~^0.688^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12060~^~501~^0.090^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~502~^0.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~503~^0.348^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~504~^0.596^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~505~^0.468^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~506~^0.126^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~507~^0.133^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~508~^0.328^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~509~^0.227^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~510~^0.421^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~511~^0.577^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~512~^0.208^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~513~^0.427^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~514~^0.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~515~^1.202^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~516~^0.348^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~517~^0.300^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~518~^0.318^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~606~^3.923^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~613~^3.605^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~614~^0.319^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~617~^19.110^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~618~^5.813^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~645~^19.110^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12060~^~646~^5.813^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12061~^~312~^1.031^86^0.050^~1~^~A~^^^3^0.463^1.570^2^0.750^1.312^~2~^~04/01/2013~ -~12061~^~315~^2.179^88^0.075^~1~^~A~^^^3^1.310^3.980^3^1.950^2.408^~2~^~04/01/2013~ -~12061~^~404~^0.205^85^0.009^~1~^~A~^^^3^0.095^0.280^3^0.175^0.235^~2~^~04/01/2013~ -~12061~^~405~^1.138^88^0.115^~1~^~A~^^^3^0.460^2.260^3^0.762^1.515^~2~^~04/01/2013~ -~12061~^~406~^3.618^88^0.150^~1~^~A~^^^3^1.390^5.990^2^2.976^4.259^~2~^~04/01/2013~ -~12061~^~410~^0.471^88^0.025^~1~^~A~^^^3^0.260^0.800^3^0.395^0.546^~2~^~04/01/2013~ -~12061~^~415~^0.137^47^0.006^~1~^~A~^^^2^0.091^0.290^1^0.067^0.206^~2~^~04/01/2013~ -~12061~^~501~^0.211^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~502~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~503~^0.751^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~504~^1.473^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~505~^0.568^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~506~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~507~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~508~^1.132^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~509~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~510~^0.855^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~511~^2.465^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~512~^0.539^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~513~^0.999^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~514~^2.639^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~515~^6.206^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~516~^1.429^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~517~^0.969^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~518~^0.912^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12061~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~606~^3.802^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12061~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12061~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~610~^0.000^68^0.000^~1~^~A~^^^3^0.000^0.007^3^0.000^0.001^~1, 2~^~05/01/2007~ -~12061~^~611~^0.000^67^0.000^~1~^~A~^^^3^0.000^0.008^2^0.000^0.000^~1, 2~^~05/01/2007~ -~12061~^~612~^0.003^90^0.002^~1~^~A~^^^3^0.000^0.030^3^-0.002^0.009^~1, 2~^~04/01/2013~ -~12061~^~613~^3.083^90^0.030^~1~^~A~^^^3^2.497^3.622^3^2.994^3.172^~2~^~04/01/2013~ -~12061~^~614~^0.704^90^0.027^~1~^~A~^^^3^0.477^1.000^2^0.581^0.827^~2~^~04/01/2013~ -~12061~^~615~^0.007^90^0.003^~1~^~A~^^^3^0.000^0.423^4^-0.002^0.015^~1, 2~^~04/01/2013~ -~12061~^~617~^31.294^90^0.284^~6~^~JA~^^^3^24.562^35.888^3^30.444^32.145^~2~^~04/01/2013~ -~12061~^~618~^12.324^90^0.177^~6~^~JA~^^^3^9.395^16.338^3^11.772^12.876^~2~^~04/01/2013~ -~12061~^~619~^0.003^90^0.002^~6~^~JA~^^^3^0.000^0.031^3^-0.002^0.008^~2~^~04/01/2013~ -~12061~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~624~^0.001^82^0.000^~1~^~A~^^^3^0.000^0.013^3^-0.001^0.002^~1, 2~^~04/01/2013~ -~12061~^~625~^0.000^71^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~05/01/2007~ -~12061~^~626~^0.239^90^0.004^~6~^~JA~^^^3^0.170^0.338^3^0.226^0.251^~2~^~04/01/2013~ -~12061~^~627~^0.000^1^^~1~^~A~^^^1^0.000^0.000^3^^^^~05/01/2007~ -~12061~^~628~^0.005^85^0.003^~1~^~A~^^^3^0.000^0.040^3^-0.003^0.013^~1, 2~^~04/01/2013~ -~12061~^~629~^0.000^4^^~1~^~A~^^^1^0.000^0.000^^^^~2~^~01/01/2001~ -~12061~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~631~^0.000^4^^~1~^~A~^^^1^0.000^0.000^^^^~2~^~01/01/2001~ -~12061~^~645~^31.551^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~646~^12.329^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~652~^0.000^76^0.000^~1~^~A~^^^3^0.000^0.008^5^0.000^0.000^~1, 2~^~05/01/2007~ -~12061~^~653~^0.004^88^0.002^~1~^~A~^^^3^0.000^0.032^3^-0.002^0.010^~1, 2~^~04/01/2013~ -~12061~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~662~^0.012^28^^~1~^~A~^^^1^0.000^0.020^^^^~2~^~05/01/2007~ -~12061~^~663~^0.000^47^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2007~ -~12061~^~665~^0.003^58^0.002^~1~^~A~^^^2^0.000^0.017^2^-0.004^0.010^~1, 2~^~04/01/2013~ -~12061~^~670~^0.002^7^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.006^~4~^~04/01/2013~ -~12061~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~672~^0.002^80^0.001^~1~^~A~^^^3^0.000^0.054^4^-0.001^0.005^~1, 2~^~04/01/2013~ -~12061~^~673~^0.227^28^^~1~^~A~^^^1^0.174^0.318^^^^~2~^~04/01/2013~ -~12061~^~674~^31.294^33^^~1~^~A~^^^1^27.937^35.888^^^^~2~^~04/01/2013~ -~12061~^~675~^12.320^61^0.269^~1~^~A~^^^2^9.395^16.320^2^11.496^13.506^~2~^~04/01/2013~ -~12061~^~685~^0.000^67^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2007~ -~12061~^~687~^0.013^84^0.009^~1~^~A~^^^2^0.000^0.067^1^-0.065^0.091^~1, 2~^~04/01/2013~ -~12061~^~689~^0.000^56^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2~^~05/01/2007~ -~12061~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12061~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12061~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~01/01/2001~ -~12061~^~697~^0.000^66^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2007~ -~12061~^~851~^0.003^67^0.001^~1~^~A~^^^2^0.000^0.025^1^-0.012^0.016^~1, 2~^~04/01/2013~ -~12062~^~312~^1.027^7^0.073^~1~^~A~^^^2^0.758^1.200^1^0.099^1.955^~2~^~03/01/2010~ -~12062~^~315~^1.835^8^0.265^~1~^~A~^^^2^1.050^2.300^1^-1.532^5.202^~2~^~03/01/2010~ -~12062~^~404~^0.191^7^0.009^~1~^~A~^^^2^0.180^0.210^1^0.080^0.302^~2~^~03/01/2010~ -~12062~^~405~^0.711^8^0.151^~1~^~A~^^^2^0.420^1.120^1^-1.208^2.630^~2~^~03/01/2010~ -~12062~^~406~^3.500^8^0.066^~1~^~A~^^^2^1.800^4.380^1^2.657^4.343^~2~^~03/01/2010~ -~12062~^~410~^0.314^8^0.024^~1~^~A~^^^2^0.260^0.390^1^0.009^0.619^~2~^~03/01/2010~ -~12062~^~415~^0.115^7^0.005^~1~^~A~^^^2^0.078^0.163^1^0.051^0.179^~2~^~03/01/2010~ -~12062~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~502~^0.682^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~503~^0.696^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~504~^1.479^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~505~^0.605^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~508~^1.156^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~509~^0.533^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~510~^0.805^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~511~^2.483^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~512~^0.596^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~513~^1.007^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~514~^2.751^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~515~^5.206^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~516~^1.478^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~517~^0.975^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~518~^1.012^0^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~12062~^~605~^0.019^4^^~1~^~A~^^^1^0.000^0.029^^^^~1, 2~^~03/01/2010~ -~12062~^~606~^3.953^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12062~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12062~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~613~^3.273^11^0.031^~1~^~A~^^^2^3.041^3.516^1^2.878^3.668^~2~^~03/01/2010~ -~12062~^~614~^0.666^11^0.002^~1~^~A~^^^2^0.596^0.833^1^0.646^0.687^~2~^~03/01/2010~ -~12062~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~617~^33.113^11^0.055^~1~^~A~^^^2^30.793^34.835^1^32.419^33.807^~2~^~03/01/2010~ -~12062~^~618~^12.365^11^0.078^~1~^~A~^^^2^10.045^14.925^1^11.369^13.361^~2~^~03/01/2010~ -~12062~^~619~^0.004^11^0.004^~1~^~A~^^^2^0.000^0.017^1^-0.042^0.049^~1, 2~^~03/01/2010~ -~12062~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~626~^0.243^11^0.006^~1~^~A~^^^2^0.188^0.295^1^0.164^0.322^~2~^~03/01/2010~ -~12062~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12062~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~645~^33.415^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~646~^12.368^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~12062~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~653~^0.014^7^0.014^~1~^~A~^^^2^0.000^0.028^1^-0.159^0.187^~2~^~03/01/2010~ -~12062~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~687~^0.059^4^^~1~^~A~^^^1^0.055^0.063^^^^~2~^~03/01/2010~ -~12062~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12062~^~697~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~03/01/2010~ -~12063~^~312~^1.099^19^0.018^~1~^~A~^^^3^0.850^1.420^2^1.023^1.174^~2~^~04/01/2013~ -~12063~^~315~^2.232^21^0.184^~1~^~A~^^^3^1.340^2.700^2^1.440^3.025^~2~^~04/01/2013~ -~12063~^~404~^0.077^13^0.009^~1~^~A~^^^3^0.050^0.120^2^0.039^0.115^~2~^~04/01/2013~ -~12063~^~405~^1.197^17^0.239^~1~^~A~^^^3^0.620^1.970^2^0.167^2.226^~2~^~04/01/2013~ -~12063~^~406~^3.637^17^0.200^~1~^~A~^^^3^1.410^4.690^2^2.777^4.497^~2~^~04/01/2013~ -~12063~^~410~^0.321^16^0.059^~1~^~A~^^^3^0.200^0.640^2^0.068^0.575^~2~^~04/01/2013~ -~12063~^~415~^0.136^9^0.009^~1~^~A~^^^3^0.096^0.230^2^0.098^0.174^~2~^~04/01/2013~ -~12063~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~502~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~503~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~504~^1.461^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~505~^0.563^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~506~^0.155^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~507~^0.214^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~508~^1.122^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~509~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~510~^0.848^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~511~^2.444^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~512~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~513~^0.991^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~514~^2.616^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~515~^6.153^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~516~^1.417^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~517~^0.961^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~518~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12063~^~521~^0.040^3^0.006^~1~^~A~^^^1^0.030^0.050^2^0.015^0.065^~4~^~04/01/2013~ -~12063~^~605~^0.007^18^0.003^~1~^~A~^^^2^0.000^0.050^1^-0.025^0.039^~1, 2~^~04/01/2013~ -~12063~^~606~^4.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~04/01/2013~ -~12063~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~04/01/2013~ -~12063~^~609~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~610~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~611~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~612~^0.019^12^0.019^~1~^~A~^^^2^0.000^0.280^1^-0.221^0.259^~1, 2~^~04/01/2013~ -~12063~^~613~^3.348^20^0.036^~1~^~A~^^^3^3.050^3.750^2^3.193^3.504^~2~^~04/01/2013~ -~12063~^~614~^0.704^20^0.033^~1~^~A~^^^3^0.589^0.939^2^0.563^0.846^~2~^~04/01/2013~ -~12063~^~615~^0.008^12^0.008^~1~^~A~^^^2^0.000^0.030^1^-0.098^0.114^~1, 2~^~04/01/2013~ -~12063~^~617~^32.754^20^1.066^~6~^~JA~^^^3^28.500^39.340^2^28.168^37.340^~2~^~04/01/2013~ -~12063~^~618~^12.945^20^0.135^~6~^~JA~^^^3^11.300^14.690^2^12.363^13.527^~2~^~04/01/2013~ -~12063~^~619~^0.010^19^0.005^~6~^~JA~^^^3^0.000^0.030^2^-0.013^0.033^~1, 2~^~04/01/2013~ -~12063~^~620~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12063~^~624~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~625~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~626~^0.259^20^0.006^~1~^~A~^^^3^0.200^0.310^2^0.232^0.286^~2~^~04/01/2013~ -~12063~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12063~^~628~^0.007^12^0.007^~1~^~A~^^^2^0.000^0.030^1^-0.085^0.099^~1, 2~^~04/01/2013~ -~12063~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12063~^~630~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12063~^~645~^33.076^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~646~^12.955^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12063~^~652~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~653~^0.012^18^0.006^~1~^~A~^^^3^0.000^0.030^2^-0.015^0.040^~1, 2~^~04/01/2013~ -~12063~^~654~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~663~^0.005^9^0.006^~1~^~A~^^^1^0.000^0.050^8^-0.007^0.018^~1, 4~^~04/01/2013~ -~12063~^~665~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^8^0.000^0.000^~1, 4~^~04/01/2013~ -~12063~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12063~^~672~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~674~^32.748^6^1.494^~1~^~A~^^^1^28.500^39.290^5^29.953^37.634^~4~^~04/01/2013~ -~12063~^~675~^12.945^9^0.399^~1~^~A~^^^1^11.300^14.690^8^11.943^13.784^~4~^~04/01/2013~ -~12063~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^8^0.000^0.000^~1, 4~^~04/01/2013~ -~12063~^~687~^0.057^6^0.001^~1~^~A~^^^1^0.051^0.060^5^0.053^0.060^~4~^~03/01/2010~ -~12063~^~689~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12063~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12063~^~697~^0.000^16^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~03/01/2010~ -~12063~^~851~^0.006^8^0.004^~1~^~A~^^^1^0.000^0.020^7^0.001^0.019^~1, 4~^~04/01/2013~ -~12063~^~856~^0.005^5^0.002^~1~^~A~^^^1^0.000^0.010^4^0.002^0.014^~1, 4~^~04/01/2013~ -~12065~^~312~^0.955^3^0.118^~1~^~A~^^^1^0.900^1.200^2^0.448^1.462^~4~^~01/01/2001~ -~12065~^~315~^2.460^3^0.118^~1~^~A~^^^1^2.400^2.700^2^1.953^2.967^~4~^~01/01/2001~ -~12065~^~404~^0.092^3^0.009^~1~^~A~^^^1^0.089^0.110^2^0.054^0.131^~4~^~01/01/2001~ -~12065~^~405~^0.781^3^0.061^~1~^~A~^^^1^0.650^0.800^2^0.517^1.044^~4~^~01/01/2001~ -~12065~^~406~^3.665^3^0.118^~1~^~A~^^^1^3.600^3.900^2^3.158^4.172^~4~^~01/01/2001~ -~12065~^~410~^0.229^3^0.005^~1~^~A~^^^1^0.220^0.230^2^0.210^0.248^~4~^~01/01/2001~ -~12065~^~415~^0.118^3^0.013^~1~^~A~^^^1^0.110^0.140^2^0.060^0.175^~4~^~01/01/2001~ -~12065~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~502~^0.677^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~503~^0.691^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~504~^1.467^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~505~^0.600^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~507~^0.282^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~509~^0.529^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~510~^0.798^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~511~^2.463^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~512~^0.592^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~513~^0.999^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~514~^2.729^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~515~^5.165^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~516~^1.466^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~517~^0.967^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~518~^1.004^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12065~^~606~^4.208^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12065~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12065~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~613~^3.303^3^0.079^~1~^~A~^^^1^3.264^3.453^2^2.964^3.642^~4~^~01/01/2001~ -~12065~^~614~^0.905^3^0.100^~1~^~A~^^^1^0.706^0.960^2^0.475^1.334^~4~^~01/01/2001~ -~12065~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~617~^34.578^3^0.892^~1~^~A~^^^1^32.732^35.021^2^30.739^38.416^~4~^~01/01/2001~ -~12065~^~618~^13.519^3^1.034^~1~^~A~^^^1^12.403^15.074^2^9.069^17.969^~4~^~01/01/2001~ -~12065~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~626~^0.215^3^0.025^~1~^~A~^^^1^0.201^0.261^2^0.108^0.322^~4~^~01/01/2001~ -~12065~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12065~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~645~^34.793^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~646~^13.519^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12065~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12065~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12071~^~312~^0.454^2^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12071~^~315~^0.856^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~12071~^~404~^0.082^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~405~^0.414^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~406~^1.422^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~410~^0.113^2^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~12071~^~415~^0.036^2^^~1~^~A~^^^^^^^^^^~03/01/1998~ -~12071~^~606~^2.629^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1997~ -~12071~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~611~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~612~^0.158^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~613~^1.836^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~614~^0.542^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~617~^17.680^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~618~^5.576^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~619~^0.199^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~626~^0.162^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~628~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~12071~^~645~^18.012^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12071~^~646~^5.821^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~12077~^~312~^0.670^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~315~^1.341^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~404~^0.304^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~405~^0.371^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~406~^0.877^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~410~^0.925^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~415~^0.684^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12077~^~501~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~502~^0.221^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~503~^0.245^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~504~^0.367^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~505~^0.367^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~506~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~507~^0.197^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~508~^0.262^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~509~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~510~^0.346^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~511~^0.443^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~512~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~513~^0.414^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~514~^1.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~515~^0.800^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~516~^0.319^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~517~^0.326^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~518~^0.310^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~606~^5.719^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~612~^0.063^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~613~^3.569^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~614~^1.183^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~617~^18.849^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~618~^18.390^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~619~^1.700^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~626~^0.287^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~628~^2.757^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~645~^21.892^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12077~^~646~^20.089^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12078~^~312~^1.743^7^0.021^~1~^~A~^^^2^1.640^1.850^5^1.688^1.798^~2, 3~^~02/01/2003~ -~12078~^~315~^1.223^7^0.052^~1~^~A~^^^2^1.080^1.450^3^1.045^1.401^~2, 3~^~02/01/2003~ -~12078~^~404~^0.617^7^0.053^~1~^~A~^^^2^0.430^0.790^4^0.471^0.763^~2, 3~^~02/01/2003~ -~12078~^~405~^0.035^7^0.001^~1~^~A~^^^2^0.028^0.042^4^0.033^0.037^~1, 2, 3~^~02/01/2003~ -~12078~^~406~^0.295^7^0.019^~1~^~A~^^^2^0.259^0.372^4^0.242^0.348^~2, 3~^~02/01/2003~ -~12078~^~410~^0.184^7^0.012^~1~^~A~^^^2^0.130^0.213^3^0.149^0.218^~2, 3~^~02/01/2003~ -~12078~^~415~^0.101^7^0.004^~1~^~A~^^^2^0.090^0.113^5^0.092^0.111^~2, 3~^~02/01/2003~ -~12078~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~502~^0.365^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~503~^0.518^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~504~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~505~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~506~^1.124^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~507~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~508~^0.639^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~509~^0.416^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~510~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~511~^2.140^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~512~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~513~^0.609^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~514~^1.325^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~515~^3.190^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~516~^0.733^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~517~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~518~^0.676^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~606~^16.134^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~609~^0.000^4^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~02/01/2003~ -~12078~^~610~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~611~^0.000^4^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~02/01/2003~ -~12078~^~612~^0.046^4^0.007^~1~^~A~^^^3^0.032^0.052^2^0.016^0.075^~1, 2~^~04/01/2014~ -~12078~^~613~^9.626^7^0.221^~1~^~A~^^^4^8.468^9.720^3^8.723^10.132^~2~^~04/01/2014~ -~12078~^~614~^6.244^7^0.250^~1~^~A~^^^4^5.208^6.530^3^5.320^6.909^~2~^~04/01/2014~ -~12078~^~615~^0.167^4^0.009^~1~^~A~^^^3^0.140^0.180^2^0.125^0.201^~2~^~04/01/2014~ -~12078~^~617~^23.594^7^1.616^~1~^~A~^^^4^18.354^25.183^3^17.963^28.248^~2~^~04/01/2014~ -~12078~^~618~^24.363^7^1.992^~6~^~JA~^^^4^18.626^28.994^3^17.521^30.197^~2~^~04/01/2014~ -~12078~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~12078~^~620~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~624~^0.010^7^0.010^~1~^~A~^^^4^0.000^0.039^3^-0.021^0.040^~1, 2~^~04/01/2014~ -~12078~^~625~^0.000^4^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~02/01/2003~ -~12078~^~626~^0.214^7^0.013^~1~^~A~^^^4^0.184^0.240^3^0.167^0.252^~2~^~04/01/2014~ -~12078~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~628~^0.027^7^0.015^~1~^~A~^^^4^0.000^0.052^3^-0.022^0.074^~1, 2~^~04/01/2014~ -~12078~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/1995~ -~12078~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12078~^~645~^23.879^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~646~^24.399^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~12078~^~652~^0.000^4^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~02/01/2003~ -~12078~^~653~^0.041^4^0.021^~1~^~A~^^^3^0.000^0.088^2^-0.050^0.130^~1, 2~^~04/01/2014~ -~12078~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~672~^0.000^6^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~02/01/2003~ -~12078~^~675~^23.859^3^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~12078~^~685~^0.018^3^0.000^~1~^~A~^^^2^0.000^0.052^^^^~1, 2, 3~^~04/01/2014~ -~12078~^~687~^0.045^3^0.009^~1~^~A~^^^2^0.000^0.079^1^-0.070^0.158^~1, 2, 3~^~04/01/2014~ -~12078~^~689~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~697~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12078~^~851~^0.018^6^0.017^~1~^~A~^^^3^0.000^0.052^2^-0.057^0.092^~1, 2~^~04/01/2014~ -~12084~^~312~^0.450^4^0.061^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~315~^6.560^4^0.437^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~404~^0.383^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~405~^0.148^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~406~^1.045^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~410~^0.633^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~415~^0.560^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12084~^~501~^0.366^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~502~^0.940^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~503~^1.179^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~504~^2.199^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~505~^0.770^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~506~^0.611^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~507~^0.484^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~508~^1.442^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~509~^0.977^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~510~^1.541^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~511~^4.862^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~512~^0.808^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~513~^1.372^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~514~^3.096^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~515~^6.084^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~516~^1.508^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~517~^1.236^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~518~^1.640^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~606~^1.306^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~613~^0.872^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~614~^0.425^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~617~^10.352^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~618~^33.727^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~619~^8.718^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12084~^~645~^10.425^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12084~^~646~^42.741^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~312~^2.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~315~^0.826^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12085~^~404~^0.200^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~405~^0.200^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~406~^1.400^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~410~^1.217^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~415~^0.256^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~501~^0.237^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~502~^0.592^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~503~^0.731^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~504~^1.285^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~505~^0.817^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~506~^0.274^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~507~^0.283^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~508~^0.791^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~509~^0.491^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~510~^1.040^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~511~^1.741^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~512~^0.399^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~513~^0.702^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~514~^1.505^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~515~^3.624^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~516~^0.803^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~517~^0.690^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~518~^0.849^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~606~^9.157^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~609~^0.132^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~610~^0.132^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~611~^0.784^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~612~^0.347^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~613~^4.351^20^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~614~^2.972^20^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~617~^26.808^21^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~618~^7.660^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~619~^0.161^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~626~^0.318^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~628~^0.139^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12085~^~645~^27.317^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12085~^~646~^7.836^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12086~^~312~^2.043^8^0.098^~1~^~A~^^^3^1.930^2.390^2^1.620^2.465^~2~^~04/01/2002~ -~12086~^~315~^1.668^8^0.097^~1~^~A~^^^3^1.530^1.960^2^1.251^2.085^~2~^~04/01/2002~ -~12086~^~404~^0.363^8^0.043^~1~^~A~^^^3^0.246^0.443^2^0.180^0.547^~2~^~04/01/2002~ -~12086~^~405~^0.218^8^0.014^~1~^~A~^^^3^0.131^0.324^2^0.157^0.278^~2~^~04/01/2002~ -~12086~^~406~^1.736^8^0.429^~1~^~A~^^^3^1.035^2.580^2^-0.111^3.583^~2~^~04/01/2002~ -~12086~^~410~^0.880^2^^~1~^~A~^^^2^0.740^1.020^^^^^~04/01/2002~ -~12086~^~415~^0.323^8^0.091^~1~^~A~^^^3^0.151^0.482^2^-0.069^0.716^~2~^~04/01/2002~ -~12086~^~501~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~502~^0.636^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~503~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~504~^1.361^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~505~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~506~^0.334^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~507~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~508~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~509~^0.469^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~510~^1.011^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~511~^1.963^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~512~^0.421^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~513~^0.774^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~514~^1.659^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~515~^4.165^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~516~^0.866^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~517~^0.751^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~518~^0.997^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~606~^8.478^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12086~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12086~^~609~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12086~^~610~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12086~^~611~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12086~^~612~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12086~^~613~^4.265^2^^~1~^~A~^^^2^3.510^5.021^^^^^~04/01/2002~ -~12086~^~614~^3.511^2^^~1~^~A~^^^2^2.850^4.171^^^^^~04/01/2002~ -~12086~^~615~^0.290^2^^~1~^~A~^^^2^0.240^0.340^^^^^~04/01/2002~ -~12086~^~617~^25.624^2^^~1~^~A~^^^2^21.300^29.949^^^^^~04/01/2002~ -~12086~^~618~^8.478^2^^~1~^~A~^^^2^6.950^10.005^^^^^~04/01/2002~ -~12086~^~619~^0.068^2^^~1~^~A~^^^2^0.060^0.076^^^^^~04/01/2002~ -~12086~^~620~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12086~^~624~^0.188^2^^~1~^~A~^^^2^0.170^0.206^^^^^~04/01/2002~ -~12086~^~625~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~626~^0.149^2^^~1~^~A~^^^2^0.120^0.177^^^^^~04/01/2002~ -~12086~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12086~^~628~^0.150^2^^~1~^~A~^^^2^0.130^0.170^^^^^~04/01/2002~ -~12086~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12086~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12086~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12086~^~645~^25.923^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~646~^8.546^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12086~^~652~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~653~^0.051^2^^~1~^~A~^^^2^0.040^0.061^^^^^~04/01/2002~ -~12086~^~654~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12086~^~672~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~687~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~689~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12086~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12087~^~312~^2.195^2^^~1~^~A~^^^1^2.120^2.270^1^^^^~03/01/2002~ -~12087~^~315~^1.655^2^^~1~^~A~^^^1^1.650^1.660^1^^^^~03/01/2002~ -~12087~^~404~^0.423^2^^~1~^~A~^^^1^0.352^0.494^1^^^^~03/01/2002~ -~12087~^~405~^0.058^2^^~1~^~A~^^^1^0.000^0.116^1^^^^~03/01/2002~ -~12087~^~406~^1.062^2^^~1~^~A~^^^1^0.969^1.154^1^^^^~03/01/2002~ -~12087~^~410~^0.864^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~415~^0.417^2^^~1~^~A~^^^1^0.361^0.473^1^^^^~03/01/2002~ -~12087~^~501~^0.287^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~502~^0.688^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~503~^0.789^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~504~^1.472^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~505~^0.928^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~506~^0.362^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~507~^0.393^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~508~^0.951^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~509~^0.508^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~510~^1.094^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~511~^2.123^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~512~^0.456^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~513~^0.837^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~514~^1.795^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~515~^4.506^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~516~^0.937^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~517~^0.812^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~518~^1.079^0^^~1~^~A~^^^^^^^^^^~05/01/2002~ -~12087~^~606~^7.783^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~12087~^~607~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~608~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~609~^0.015^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~610~^0.015^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~611~^0.015^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~612~^0.015^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~613~^3.916^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~614~^3.223^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~615~^0.266^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~617~^23.523^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~618~^7.782^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~619~^0.062^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~620~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~621~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~624~^0.173^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~625~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~626~^0.136^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~627~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~628~^0.138^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~629~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~630~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~631~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~645~^23.797^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~12087~^~646~^7.845^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~12087~^~652~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~653~^0.046^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~654~^0.101^0^^~4~^~BFFN~^~12086~^^^^^^^^^~03/01/2004~ -~12087~^~672~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~687~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~689~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12087~^~697~^0.000^0^^~4~^~BFFN~^~12086~^^^^^^^^^~05/01/2002~ -~12088~^~312~^2.190^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~315~^0.815^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12088~^~404~^0.312^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~405~^0.187^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~406~^1.599^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~410~^1.201^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~415~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~501~^0.272^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~502~^0.679^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~503~^0.838^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~504~^1.475^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~505~^0.938^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~506~^0.315^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~507~^0.325^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~508~^0.908^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~509~^0.563^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~510~^1.193^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~511~^1.998^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~512~^0.457^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~513~^0.805^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~514~^1.727^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~515~^4.159^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~516~^0.921^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~517~^0.792^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~518~^0.974^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~606~^9.763^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~609~^0.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~610~^0.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~611~^0.836^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~612~^0.370^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~613~^4.639^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~614~^3.168^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~617~^28.579^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~618~^8.166^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~619~^0.171^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~626~^0.339^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~628~^0.148^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~645~^29.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12088~^~646~^8.354^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~312~^0.363^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~315~^1.601^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~404~^0.160^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~405~^0.180^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~406~^0.800^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~410~^0.555^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12093~^~415~^0.410^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12093~^~501~^0.049^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~502~^0.167^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~503~^0.157^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~504~^0.259^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~505~^0.228^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~506~^0.101^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~507~^0.110^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~508~^0.190^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~509~^0.125^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~510~^0.220^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~511~^0.430^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~512~^0.121^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~513~^0.200^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~514~^0.852^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~515~^0.537^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~516~^0.184^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~517~^0.162^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~518~^0.184^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~606~^0.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~613~^0.151^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~614~^0.011^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~617~^0.559^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~618~^0.258^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~619~^0.028^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~626~^0.008^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~628~^0.010^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~645~^0.581^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12093~^~646~^0.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~312~^0.590^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~315~^2.601^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~404~^0.260^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~405~^0.293^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~406~^1.300^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~410~^0.902^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~415~^0.666^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12094~^~501~^0.080^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~502~^0.272^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~503~^0.255^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~504~^0.421^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~505~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~506~^0.165^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~507~^0.179^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~508~^0.309^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~509~^0.203^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~510~^0.358^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~511~^0.699^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~512~^0.197^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~513~^0.324^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~514~^1.385^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~515~^0.873^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~516~^0.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~517~^0.263^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~518~^0.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~606~^0.266^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~613~^0.246^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~614~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~617~^0.909^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~618~^0.419^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~619~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~626~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~628~^0.017^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~645~^0.945^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12094~^~646~^0.468^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~312~^0.249^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~315~^1.097^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~404~^0.110^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~405~^0.123^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~406~^0.548^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~410~^0.381^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~415~^0.281^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12095~^~501~^0.034^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~502~^0.115^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~503~^0.108^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~504~^0.178^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~505~^0.156^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~506~^0.070^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~507~^0.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~508~^0.130^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~509~^0.086^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~510~^0.151^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~511~^0.295^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~512~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~513~^0.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~514~^0.584^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~515~^0.368^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~516~^0.126^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~517~^0.111^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~518~^0.126^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~606~^0.112^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~613~^0.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~614~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~617~^0.383^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~618~^0.177^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~619~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~626~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~628~^0.007^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~645~^0.399^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12095~^~646~^0.197^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~312~^0.387^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~315~^1.708^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~404~^0.150^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~405~^0.090^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~406~^1.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~410~^0.592^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~415~^0.437^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12096~^~501~^0.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~502~^0.178^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~503~^0.167^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~504~^0.276^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~505~^0.243^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~506~^0.108^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~507~^0.117^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~508~^0.203^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~509~^0.134^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~510~^0.235^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~511~^0.459^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~512~^0.129^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~513~^0.213^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~514~^0.909^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~515~^0.573^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~516~^0.196^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~517~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~518~^0.196^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~606~^0.175^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~613~^0.161^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~614~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~617~^0.596^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~618~^0.275^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~619~^0.030^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~626~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~628~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~645~^0.620^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12096~^~646~^0.307^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~312~^0.447^4^0.038^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~315~^0.952^4^0.190^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~404~^0.238^4^0.010^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~405~^0.168^4^0.021^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~406~^1.179^4^0.141^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~410~^0.509^3^0.017^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~415~^0.376^5^0.036^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~501~^0.027^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~502~^0.086^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~503~^0.095^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~504~^0.143^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~505~^0.143^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~506~^0.057^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~507~^0.077^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~508~^0.102^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~509~^0.067^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~510~^0.135^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~511~^0.173^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~512~^0.067^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~513~^0.161^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~514~^0.417^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~515~^0.312^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~516~^0.124^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~517~^0.127^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~518~^0.121^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~606~^0.425^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~612~^0.010^17^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~613~^0.384^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~614~^0.021^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~617~^0.749^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~618~^0.798^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~619~^0.095^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~626~^0.021^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~628~^0.010^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~645~^0.780^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12097~^~646~^0.894^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~312~^0.418^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~315~^0.336^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~404~^0.144^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~405~^0.016^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~406~^1.102^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~410~^0.476^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~415~^0.352^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12098~^~501~^0.018^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~502~^0.058^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~503~^0.064^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~504~^0.096^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~505~^0.096^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~506~^0.038^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~507~^0.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~508~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~509~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~510~^0.091^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~511~^0.116^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~512~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~513~^0.109^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~514~^0.281^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~515~^0.210^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~516~^0.084^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~517~^0.086^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~518~^0.081^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~606~^0.235^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~612~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~613~^0.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~614~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~617~^0.413^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~618~^0.440^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~619~^0.053^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~626~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~628~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~645~^0.430^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12098~^~646~^0.493^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~312~^0.650^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~315~^1.300^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~404~^0.295^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~405~^0.360^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~406~^0.850^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~410~^0.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~415~^0.663^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~501~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~502~^0.228^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~503~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~504~^0.378^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~505~^0.378^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~506~^0.151^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~507~^0.202^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~508~^0.270^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~509~^0.177^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~510~^0.357^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~511~^0.457^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~512~^0.177^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~513~^0.427^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~514~^1.103^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~515~^0.824^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~516~^0.329^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~517~^0.336^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~518~^0.319^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~606~^0.837^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~612~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~613~^0.755^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~614~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~617~^1.473^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~618~^1.570^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~619~^0.188^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~626~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~628~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12099~^~645~^1.535^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12099~^~646~^1.758^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~312~^0.653^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~315~^1.183^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~404~^0.354^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~405~^0.054^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~406~^0.854^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~410~^0.901^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~415~^0.666^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12100~^~501~^0.056^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~502~^0.179^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~503~^0.198^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~504~^0.297^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~505~^0.297^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~506~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~507~^0.159^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~508~^0.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~509~^0.139^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~510~^0.280^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~511~^0.359^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~512~^0.139^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~513~^0.335^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~514~^0.866^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~515~^0.647^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~516~^0.258^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~517~^0.264^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~518~^0.251^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~606~^0.736^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~612~^0.017^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~613~^0.664^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~614~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~617~^1.296^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~618~^1.381^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~619~^0.165^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~626~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~628~^0.017^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~645~^1.349^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12100~^~646~^1.546^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~312~^0.472^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~315~^0.854^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~404~^0.148^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~405~^0.104^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~406~^0.731^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~410~^0.316^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~415~^0.233^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12101~^~501~^0.022^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~502~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~503~^0.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~504~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~505~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~506~^0.047^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~507~^0.063^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~508~^0.084^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~509~^0.055^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~510~^0.112^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~511~^0.143^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~512~^0.055^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~513~^0.133^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~514~^0.345^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~515~^0.258^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~516~^0.103^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~517~^0.105^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~518~^0.100^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~606~^0.260^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~612~^0.006^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~613~^0.234^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~614~^0.013^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~617~^0.457^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~618~^0.487^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~619~^0.058^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~626~^0.013^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~628~^0.006^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~645~^0.476^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12101~^~646~^0.545^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~312~^0.435^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~315~^1.500^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~404~^0.066^4^0.016^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~405~^0.020^3^0.006^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~406~^0.540^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~410~^0.300^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~415~^0.054^3^0.016^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~501~^0.039^7^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~502~^0.121^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~503~^0.131^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~504~^0.247^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~505~^0.147^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~506~^0.062^25^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~507~^0.066^7^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~508~^0.169^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~509~^0.103^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~510~^0.202^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~511~^0.546^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~512~^0.077^24^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~513~^0.170^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~514~^0.325^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~515~^0.761^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~516~^0.158^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~517~^0.138^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~518~^0.172^23^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~606~^29.698^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~608~^0.191^26^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~609~^2.346^126^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~610~^1.864^129^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~611~^14.858^130^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~612~^5.866^132^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~613~^2.839^132^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~614~^1.734^132^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~617~^1.425^132^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~618~^0.366^130^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12104~^~645~^1.425^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12104~^~646~^0.366^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~312~^0.796^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~315~^2.745^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~404~^0.060^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~405~^0.100^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~406~^0.603^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~410~^0.800^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~415~^0.300^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~501~^0.081^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~502~^0.251^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~503~^0.270^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~504~^0.511^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~505~^0.304^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~506~^0.129^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~507~^0.136^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~508~^0.349^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~509~^0.213^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~510~^0.417^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~511~^1.130^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~512~^0.158^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~513~^0.352^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~514~^0.673^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~515~^1.574^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~516~^0.326^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~517~^0.284^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~518~^0.356^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~606~^57.218^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~608~^0.367^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~609~^4.520^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~610~^3.592^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~611~^28.625^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~612~^11.302^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~613~^5.469^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~614~^3.341^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~617~^2.745^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~618~^0.706^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12108~^~645~^2.745^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12108~^~646~^0.706^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12109~^~312~^0.295^3^0.018^~1~^~A~^^^1^0.261^0.321^2^0.219^0.371^~2, 3~^~04/01/2006~ -~12109~^~315~^0.959^3^0.010^~1~^~A~^^^1^0.940^0.972^2^0.917^1.001^~2, 3~^~04/01/2006~ -~12109~^~404~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~405~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~406~^0.697^3^0.058^~1~^~A~^^^1^0.600^0.800^2^0.448^0.945^~2, 3~^~04/01/2006~ -~12109~^~410~^0.140^3^0.006^~1~^~A~^^^1^0.130^0.150^2^0.115^0.165^~2, 3~^~04/01/2006~ -~12109~^~415~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2006~ -~12109~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~502~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~503~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~504~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~505~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~506~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~507~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~508~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~509~^0.057^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~510~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~511~^0.536^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~512~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~513~^0.168^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~514~^0.339^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~515~^0.775^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~516~^0.158^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~517~^0.164^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~518~^0.218^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12109~^~521~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12109~^~606~^26.396^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12109~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~608~^0.206^3^0.014^~1~^~A~^^^1^0.188^0.233^2^0.146^0.265^~2, 3~^~04/01/2006~ -~12109~^~609~^2.362^3^0.152^~1~^~A~^^^1^2.168^2.661^2^1.708^3.015^~2, 3~^~04/01/2006~ -~12109~^~610~^1.841^3^0.112^~1~^~A~^^^1^1.690^2.059^2^1.360^2.322^~2, 3~^~04/01/2006~ -~12109~^~611~^13.780^3^0.882^~1~^~A~^^^1^12.430^15.438^2^9.986^17.574^~2, 3~^~04/01/2006~ -~12109~^~612~^5.103^3^0.344^~1~^~A~^^^1^4.496^5.686^2^3.624^6.582^~2, 3~^~04/01/2006~ -~12109~^~613~^2.242^3^0.158^~1~^~A~^^^1^1.959^2.505^2^1.562^2.922^~2, 3~^~04/01/2006~ -~12109~^~614~^0.825^3^0.068^~1~^~A~^^^1^0.695^0.922^2^0.534^1.116^~2, 3~^~04/01/2006~ -~12109~^~615~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.025^2^0.014^0.030^~2, 3~^~04/01/2006~ -~12109~^~617~^1.363^3^0.095^~1~^~AS~^^^1^1.240^1.551^2^0.952^1.774^~2, 3~^~04/01/2006~ -~12109~^~618~^0.222^3^0.013^~1~^~AS~^^^1^0.209^0.247^2^0.167^0.276^~2, 3~^~04/01/2006~ -~12109~^~619~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2006~ -~12109~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~624~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2006~ -~12109~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~626~^0.004^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2006~ -~12109~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~628~^0.009^3^0.002^~1~^~A~^^^1^0.007^0.012^2^0.002^0.016^~2, 3~^~04/01/2006~ -~12109~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~630~^0.002^3^0.002^~1~^~AS~^^^1^0.000^0.005^2^-0.005^0.009^~2, 3~^~04/01/2006~ -~12109~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~12109~^~645~^1.377^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12109~^~646~^0.222^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12109~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2006~ -~12109~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2006~ -~12109~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~04/01/2006~ -~12109~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~664~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2006~ -~12109~^~669~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~673~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2006~ -~12109~^~674~^1.363^3^0.095^~1~^~A~^^^1^1.240^1.551^2^0.952^1.774^~2, 3~^~04/01/2006~ -~12109~^~675~^0.222^3^0.013^~1~^~A~^^^1^0.209^0.247^2^0.167^0.276^~2, 3~^~04/01/2006~ -~12109~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~12109~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12109~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12109~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~851~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2006~ -~12109~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12109~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~12110~^~312~^0.308^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~315~^2.171^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~404~^0.030^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~405~^0.020^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~406~^0.305^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~410~^0.633^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12110~^~415~^0.237^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12110~^~501~^0.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~502~^0.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~503~^0.132^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~504~^0.249^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~505~^0.148^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~506~^0.063^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~507~^0.066^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~508~^0.170^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~509~^0.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~510~^0.203^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~511~^0.551^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~512~^0.077^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~513~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~514~^0.328^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~515~^0.767^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~516~^0.159^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~517~^0.139^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~518~^0.173^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~606~^28.101^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~608~^0.180^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~609~^2.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~610~^1.764^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~611~^14.058^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~612~^5.551^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~613~^2.686^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~614~^1.641^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~617~^1.348^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~618~^0.347^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~645~^1.348^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12110~^~646~^0.347^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~312~^0.812^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~315~^2.801^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~404~^0.061^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~405~^0.102^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~406~^0.616^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~410~^0.817^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~415~^0.306^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12114~^~501~^0.062^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~502~^0.193^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~503~^0.208^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~504~^0.393^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~505~^0.234^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~506~^0.099^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~507~^0.105^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~508~^0.269^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~509~^0.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~510~^0.321^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~511~^0.870^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~512~^0.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~513~^0.271^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~514~^0.518^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~515~^1.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~516~^0.251^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~517~^0.219^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~518~^0.274^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~606~^41.678^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~608~^0.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~609~^3.293^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~610~^2.616^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~611~^20.851^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~612~^8.233^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~613~^3.984^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~614~^2.434^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~617~^1.999^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~618~^0.514^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~645~^1.999^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12114~^~646~^0.514^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~312~^0.378^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~315~^1.304^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~404~^0.030^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~405~^0.000^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~406~^0.890^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~410~^0.261^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~415~^0.047^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12115~^~501~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~502~^0.132^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~503~^0.142^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~504~^0.269^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~505~^0.160^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~506~^0.068^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~507~^0.072^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~508~^0.184^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~509~^0.112^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~510~^0.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~511~^0.595^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~512~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~513~^0.185^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~514~^0.354^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~515~^0.829^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~516~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~517~^0.150^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~518~^0.187^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~606~^30.753^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~608~^0.197^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~609~^2.430^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~610~^1.931^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~611~^15.385^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~612~^6.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~613~^2.940^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~614~^1.796^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~617~^1.475^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~618~^0.379^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~619~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~12115~^~645~^1.475^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12115~^~646~^0.379^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~312~^0.236^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~315~^0.815^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~404~^0.022^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~405~^0.040^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~406~^0.038^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12116~^~410~^0.163^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12116~^~415~^0.029^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12116~^~501~^0.013^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~502~^0.043^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~503~^0.046^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~504~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~505~^0.052^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~506~^0.022^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~507~^0.023^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~508~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~509~^0.036^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~510~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~511~^0.192^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~512~^0.027^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~513~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~514~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~515~^0.268^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~516~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~517~^0.048^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~518~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~12116~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~606~^15.472^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12116~^~608~^0.082^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~609~^1.409^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~610~^1.115^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~611~^8.442^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~612~^3.024^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~613~^1.105^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~614~^0.295^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~615~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~617~^0.679^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~618~^0.159^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~619~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~624~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~625~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~626~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12116~^~628~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12116~^~645~^0.679^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~646~^0.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~12116~^~654~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~671~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12116~^~689~^0.000^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~ -~12117~^~312~^0.266^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~315~^0.916^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~404~^0.026^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~405~^0.000^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~406~^0.760^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~410~^0.183^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12117~^~415~^0.033^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12117~^~501~^0.027^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~502~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~503~^0.090^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~504~^0.170^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~505~^0.101^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~506~^0.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~507~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~508~^0.116^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~509~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~510~^0.139^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~511~^0.376^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~512~^0.053^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~513~^0.117^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~514~^0.224^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~515~^0.524^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~516~^0.108^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~517~^0.095^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~518~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~606~^21.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~608~^0.136^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~609~^1.670^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~610~^1.327^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~611~^10.576^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~612~^4.176^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~613~^2.021^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~614~^1.234^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~617~^1.014^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~618~^0.261^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12117~^~645~^1.014^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12117~^~646~^0.261^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~312~^0.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~315~^0.768^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~404~^0.022^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~405~^0.000^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~406~^0.637^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~410~^0.153^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~415~^0.028^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12118~^~501~^0.024^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~502~^0.074^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~503~^0.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~504~^0.150^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~505~^0.089^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~506~^0.038^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~507~^0.040^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~508~^0.102^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~509~^0.062^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~510~^0.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~511~^0.331^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~512~^0.046^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~513~^0.103^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~514~^0.197^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~515~^0.462^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~516~^0.096^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~517~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~518~^0.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~606~^18.915^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~608~^0.121^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~609~^1.494^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~610~^1.187^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~611~^9.463^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~612~^3.736^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~613~^1.808^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~614~^1.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~617~^0.907^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~618~^0.233^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~645~^0.907^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12118~^~646~^0.233^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~312~^0.040^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~315~^0.142^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12119~^~404~^0.030^5^0.022^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~405~^0.057^4^0.044^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~406~^0.080^3^0.060^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~410~^0.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~415~^0.032^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~501~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~502~^0.026^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~503~^0.028^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~504~^0.053^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~505~^0.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~506~^0.013^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~507~^0.014^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~508~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~509~^0.022^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~510~^0.044^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~511~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~512~^0.017^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~513~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~514~^0.070^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~515~^0.165^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~516~^0.034^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~517~^0.030^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~518~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~606~^0.176^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~608~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~609~^0.014^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~610~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~611~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~612~^0.035^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~613~^0.017^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~614~^0.010^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~617~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~618~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12119~^~645~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12119~^~646~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12120~^~312~^1.725^4^0.025^~1~^~A~^^^1^1.700^1.800^3^1.645^1.805^~4~^~12/01/2000~ -~12120~^~315~^6.175^4^0.165^~1~^~A~^^^1^5.800^6.500^3^5.649^6.701^~4~^~12/01/2000~ -~12120~^~404~^0.643^4^0.011^~1~^~A~^^^1^0.610^0.660^3^0.607^0.678^~4~^~12/01/2000~ -~12120~^~405~^0.113^4^0.003^~1~^~A~^^^1^0.110^0.120^3^0.105^0.120^~4~^~12/01/2000~ -~12120~^~406~^1.800^4^0.071^~1~^~A~^^^1^1.600^1.900^3^1.575^2.025^~4~^~12/01/2000~ -~12120~^~410~^0.918^4^0.006^~1~^~A~^^^1^0.900^0.930^3^0.897^0.938^~4~^~12/01/2000~ -~12120~^~415~^0.563^4^0.008^~1~^~A~^^^1^0.550^0.580^3^0.539^0.586^~4~^~12/01/2000~ -~12120~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~502~^0.497^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~503~^0.545^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~504~^1.063^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~505~^0.420^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~506~^0.221^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~507~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~508~^0.663^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~509~^0.362^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~510~^0.701^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~511~^2.211^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~512~^0.432^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~513~^0.730^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~514~^1.679^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~515~^3.710^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~516~^0.724^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~517~^0.561^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~518~^0.735^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12120~^~606~^4.464^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12120~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12120~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~613~^3.097^4^0.023^~1~^~A~^^^1^3.045^3.154^3^3.024^3.170^~4~^~12/01/2000~ -~12120~^~614~^1.265^4^0.041^~1~^~A~^^^1^1.155^1.350^3^1.134^1.396^~4~^~12/01/2000~ -~12120~^~615~^0.102^4^0.028^~1~^~A~^^^1^0.058^0.174^3^0.014^0.190^~4~^~12/01/2000~ -~12120~^~617~^45.405^4^0.249^~1~^~A~^^^1^44.942^46.025^3^44.613^46.196^~4~^~12/01/2000~ -~12120~^~618~^7.833^4^0.116^~1~^~A~^^^1^7.564^8.093^3^7.462^8.203^~4~^~12/01/2000~ -~12120~^~619~^0.087^4^0.029^~1~^~A~^^^1^0.057^0.173^3^-0.004^0.178^~4~^~12/01/2000~ -~12120~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~626~^0.116^4^0.001^~1~^~A~^^^1^0.114^0.117^3^0.113^0.118^~4~^~12/01/2000~ -~12120~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~12120~^~628~^0.131^4^0.014^~1~^~A~^^^1^0.115^0.174^3^0.086^0.176^~4~^~12/01/2000~ -~12120~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~645~^45.652^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~646~^7.920^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12120~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12120~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12121~^~312~^1.600^2^^~1~^~A~^^^1^1.600^1.600^^^^^~06/01/2001~ -~12121~^~315~^12.650^2^^~1~^~A~^^^1^10.600^14.700^^^^^~06/01/2001~ -~12121~^~404~^0.475^2^^~1~^~A~^^^1^0.460^0.490^^^^^~06/01/2001~ -~12121~^~405~^0.110^2^^~1~^~A~^^^1^0.110^0.110^^^^^~06/01/2001~ -~12121~^~406~^1.550^2^^~1~^~A~^^^1^1.500^1.600^^^^^~06/01/2001~ -~12121~^~410~^0.815^2^^~1~^~A~^^^1^0.760^0.870^^^^^~06/01/2001~ -~12121~^~415~^0.585^2^^~1~^~A~^^^1^0.530^0.640^^^^^~06/01/2001~ -~12121~^~501~^0.177^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~502~^0.455^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~503~^0.499^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~504~^0.974^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~505~^0.385^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~506~^0.203^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~508~^0.608^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~509~^0.332^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~510~^0.643^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~511~^2.026^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~512~^0.396^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~513~^0.669^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~514~^1.539^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~515~^3.399^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~516~^0.663^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~517~^0.514^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~518~^0.674^0^^~1~^~A~^^^^^^^^^^~01/01/2001~ -~12121~^~606~^4.669^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~613~^3.176^2^^~1~^~A~^^^1^3.165^3.186^^^^^~06/01/2001~ -~12121~^~614~^1.434^2^^~1~^~A~^^^1^1.397^1.472^^^^^~06/01/2001~ -~12121~^~615~^0.059^2^^~1~^~A~^^^1^0.058^0.059^^^^^~06/01/2001~ -~12121~^~617~^47.958^2^^~1~^~A~^^^1^47.654^48.262^^^^^~06/01/2001~ -~12121~^~618~^5.499^2^^~1~^~A~^^^1^5.468^5.531^^^^^~06/01/2001~ -~12121~^~619~^0.058^2^^~1~^~A~^^^1^0.058^0.059^^^^^~06/01/2001~ -~12121~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~626~^0.116^2^^~1~^~A~^^^1^0.116^0.117^^^^^~06/01/2001~ -~12121~^~628~^0.118^2^^~1~^~A~^^^1^0.117^0.118^^^^^~06/01/2001~ -~12121~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~645~^48.192^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~646~^5.558^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~12121~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12121~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~06/01/2001~ -~12122~^~312~^1.750^4^0.087^~1~^~A~^^^1^1.500^1.900^3^1.474^2.026^~4~^~12/01/2000~ -~12122~^~315~^5.550^4^0.417^~1~^~A~^^^1^4.700^6.600^3^4.222^6.878^~4~^~12/01/2000~ -~12122~^~404~^0.338^4^0.036^~1~^~A~^^^1^0.260^0.420^3^0.224^0.451^~4~^~12/01/2000~ -~12122~^~405~^0.123^4^0.005^~1~^~A~^^^1^0.110^0.130^3^0.107^0.138^~4~^~12/01/2000~ -~12122~^~406~^2.050^4^0.065^~1~^~A~^^^1^1.900^2.200^3^1.845^2.255^~4~^~12/01/2000~ -~12122~^~410~^0.923^4^0.031^~1~^~A~^^^1^0.840^0.980^3^0.823^1.022^~4~^~12/01/2000~ -~12122~^~415~^0.620^4^0.017^~1~^~A~^^^1^0.590^0.670^3^0.565^0.675^~4~^~12/01/2000~ -~12122~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~502~^0.499^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~503~^0.548^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~504~^1.069^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~505~^0.422^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~506~^0.222^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~508~^0.667^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~509~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~510~^0.705^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~511~^2.222^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~512~^0.434^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~513~^0.733^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~514~^1.687^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~515~^3.728^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~516~^0.727^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~517~^0.563^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~518~^0.739^0^^~1~^~A~^^^^^^^^^^~04/01/2001~ -~12122~^~606~^4.511^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~613~^3.181^4^0.038^~1~^~A~^^^1^3.082^3.247^3^3.061^3.301^~4~^~12/01/2000~ -~12122~^~614~^1.271^4^0.072^~1~^~A~^^^1^1.090^1.438^3^1.043^1.498^~4~^~12/01/2000~ -~12122~^~615~^0.060^4^0.001^~1~^~A~^^^1^0.058^0.062^3^0.057^0.063^~4~^~12/01/2000~ -~12122~^~617~^46.354^4^1.012^~1~^~A~^^^1^43.566^48.367^3^43.134^49.575^~4~^~12/01/2000~ -~12122~^~618~^8.403^4^0.272^~1~^~A~^^^1^7.786^9.054^3^7.537^9.270^~4~^~12/01/2000~ -~12122~^~619~^0.060^4^0.001^~1~^~A~^^^1^0.057^0.061^3^0.057^0.062^~4~^~12/01/2000~ -~12122~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~626~^0.119^4^0.002^~1~^~A~^^^1^0.114^0.122^3^0.113^0.124^~4~^~12/01/2000~ -~12122~^~628~^0.134^4^0.013^~1~^~A~^^^1^0.120^0.173^3^0.094^0.175^~4~^~12/01/2000~ -~12122~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~645~^46.608^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~646~^8.463^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~12122~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12122~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12127~^~312~^0.274^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~315~^0.113^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~404~^0.220^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~405~^0.090^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~406~^6.000^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~410~^0.160^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~415~^0.328^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12127~^~501~^0.071^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~502~^0.268^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~503~^0.209^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~504~^0.316^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~505~^0.206^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~506~^0.055^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~507~^0.023^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~508~^0.171^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~509~^0.061^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~510~^0.283^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~511~^0.420^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~512~^0.102^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~513~^0.247^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~514~^0.543^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~515~^0.836^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~516~^0.232^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~517~^0.347^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~518~^0.290^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~606~^0.319^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~612~^0.006^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~613~^0.288^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~614~^0.016^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~617~^0.512^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~618~^0.578^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~619~^0.021^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~626~^0.079^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~628~^0.010^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~645~^0.619^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12127~^~646~^0.618^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~312~^0.536^3^0.073^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~315~^0.220^3^0.020^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~404~^0.430^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~405~^0.176^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~406~^11.732^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~410~^1.345^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~415~^0.641^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12128~^~501~^0.170^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~502~^0.640^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~503~^0.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~504~^0.755^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~505~^0.494^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~506~^0.133^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~507~^0.055^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~508~^0.408^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~509~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~510~^0.677^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~511~^1.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~512~^0.244^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~513~^0.591^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~514~^1.298^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~515~^2.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~516~^0.554^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~517~^0.830^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~518~^0.695^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~606~^0.381^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~612~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~613~^0.343^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~614~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~617~^0.611^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~618~^0.690^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~619~^0.025^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~626~^0.095^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~628~^0.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~645~^0.739^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12128~^~646~^0.737^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~312~^0.166^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~315~^0.068^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~404~^0.133^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~405~^0.054^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~406~^3.623^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~410~^0.097^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~415~^0.198^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12129~^~501~^0.038^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~502~^0.142^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~503~^0.111^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~504~^0.168^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~505~^0.110^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~506~^0.029^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~507~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~508~^0.090^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~509~^0.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~510~^0.150^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~511~^0.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~512~^0.054^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~513~^0.131^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~514~^0.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~515~^0.444^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~516~^0.123^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~517~^0.184^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~518~^0.154^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~606~^0.309^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~612~^0.006^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~613~^0.278^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~614~^0.015^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~617~^0.495^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~618~^0.559^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~619~^0.021^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~626~^0.077^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~628~^0.009^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12129~^~645~^0.599^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12129~^~646~^0.597^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~312~^0.738^8^0.017^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~315~^4.610^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~404~^0.867^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~405~^0.131^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~406~^0.907^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~410~^1.746^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~415~^0.192^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12130~^~501~^0.139^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~502~^0.422^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~503~^0.576^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~504~^1.027^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~505~^0.497^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~506~^0.300^12^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~507~^0.271^12^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~508~^0.713^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~509~^0.454^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~510~^0.730^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~511~^2.086^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~512~^0.389^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~513~^0.662^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~514~^1.368^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~515~^2.885^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~516~^0.708^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~517~^0.571^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~518~^0.806^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~606~^7.038^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~613~^5.417^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~614~^1.416^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~617~^32.011^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~618~^20.623^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~619~^1.047^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~626~^0.277^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12130~^~645~^32.611^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12130~^~646~^21.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12131~^~312~^0.756^3^0.228^~1~^~A~^^^1^0.664^1.290^2^-0.227^1.739^~4~^~12/01/2000~ -~12131~^~315~^4.131^3^4.216^~1~^~A~^^^1^2.970^13.800^2^-14.007^22.269^~4~^~12/01/2000~ -~12131~^~404~^1.195^3^0.255^~1~^~A~^^^1^1.000^1.650^2^0.100^2.290^~4~^~12/01/2000~ -~12131~^~405~^0.162^3^0.322^~1~^~A~^^^1^0.071^0.900^2^-1.223^1.547^~4~^~12/01/2000~ -~12131~^~406~^2.473^3^0.337^~1~^~A~^^^1^1.802^2.783^2^1.023^3.922^~4~^~12/01/2000~ -~12131~^~410~^0.758^3^0.078^~1~^~A~^^^1^0.611^0.840^2^0.423^1.093^~4~^~12/01/2000~ -~12131~^~415~^0.275^3^0.032^~1~^~A~^^^1^0.245^0.335^2^0.139^0.410^~4~^~12/01/2000~ -~12131~^~501~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~502~^0.370^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~503~^0.314^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~504~^0.602^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~505~^0.018^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~506~^0.023^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~507~^0.006^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~508~^0.665^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~509~^0.511^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~510~^0.363^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~511~^1.402^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~512~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~513~^0.388^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~514~^1.099^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~515~^2.267^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~516~^0.454^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~517~^0.468^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~518~^0.419^0^^~1~^~A~^^^^^^^^^^~05/01/2001~ -~12131~^~606~^12.061^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12131~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12131~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~611~^0.076^3^0.013^~1~^~A~^^^1^0.050^0.087^2^0.021^0.130^~4~^~03/01/2001~ -~12131~^~612~^0.659^3^0.100^~1~^~A~^^^1^0.488^0.764^2^0.230^1.088^~4~^~03/01/2001~ -~12131~^~613~^6.036^3^0.035^~1~^~A~^^^1^5.972^6.063^2^5.885^6.187^~4~^~03/01/2001~ -~12131~^~614~^2.329^3^0.238^~1~^~A~^^^1^2.007^2.703^2^1.307^3.351^~4~^~03/01/2001~ -~12131~^~615~^1.940^3^0.094^~1~^~A~^^^1^1.824^2.100^2^1.536^2.344^~4~^~05/01/2001~ -~12131~^~617~^43.755^3^1.251^~1~^~A~^^^1^41.668^45.087^2^38.373^49.136^~4~^~03/01/2001~ -~12131~^~618~^1.296^3^0.090^~1~^~A~^^^1^1.227^1.457^2^0.910^1.683^~4~^~03/01/2001~ -~12131~^~619~^0.206^3^0.018^~1~^~A~^^^1^0.191^0.239^2^0.129^0.283^~4~^~03/01/2001~ -~12131~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~624~^0.616^3^0.002^~1~^~A~^^^1^0.615^0.622^2^0.606^0.627^~4~^~03/01/2001~ -~12131~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~626~^12.981^3^0.682^~1~^~A~^^^1^11.450^13.277^2^10.049^15.914^~4~^~03/01/2001~ -~12131~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12131~^~628~^1.890^3^0.047^~1~^~A~^^^1^1.823^1.958^2^1.690^2.091^~4~^~03/01/2001~ -~12131~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~630~^0.233^3^0.020^~1~^~A~^^^1^0.215^0.271^2^0.148^0.317^~4~^~03/01/2001~ -~12131~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~645~^58.877^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~646~^1.502^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~ -~12131~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~653~^0.124^3^0.056^~1~^~A~^^^1^0.066^0.232^2^-0.118^0.366^~4~^~03/01/2001~ -~12131~^~654~^0.281^3^0.013^~1~^~A~^^^1^0.270^0.308^2^0.225^0.338^~4~^~03/01/2001~ -~12131~^~671~^0.018^3^0.012^~1~^~A~^^^1^0.000^0.030^2^-0.032^0.068^~4~^~03/01/2001~ -~12131~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12131~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2001~ -~12132~^~312~^0.570^4^0.226^~1~^~A~^^^1^0.345^1.260^3^-0.150^1.290^~4~^~12/01/2000~ -~12132~^~315~^3.036^4^1.563^~1~^~A~^^^1^1.740^8.160^3^-1.938^8.010^~4~^~12/01/2000~ -~12132~^~404~^0.710^4^0.000^~1~^~A~^^^1^0.710^0.710^3^0.710^0.710^~4~^~12/01/2000~ -~12132~^~405~^0.087^4^0.003^~1~^~A~^^^1^0.083^0.095^3^0.077^0.096^~4~^~12/01/2000~ -~12132~^~406~^2.274^4^0.151^~1~^~A~^^^1^1.836^2.529^3^1.794^2.754^~4~^~12/01/2000~ -~12132~^~410~^0.603^4^0.018^~1~^~A~^^^1^0.566^0.638^3^0.546^0.659^~4~^~12/01/2000~ -~12132~^~415~^0.359^4^0.025^~1~^~A~^^^1^0.304^0.415^3^0.280^0.438^~4~^~12/01/2000~ -~12132~^~501~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~502~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~503~^0.309^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~504~^0.592^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~505~^0.018^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~506~^0.023^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~507~^0.005^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~508~^0.654^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~509~^0.503^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~510~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~511~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~512~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~513~^0.382^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~514~^1.082^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~515~^2.231^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~516~^0.447^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~517~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~518~^0.413^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~606~^11.947^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~12132~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12132~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12132~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~611~^0.075^4^0.008^~1~^~A~^^^1^0.056^0.088^3^0.050^0.100^~4~^~12/01/2000~ -~12132~^~612~^0.668^4^0.067^~1~^~A~^^^1^0.508^0.764^3^0.456^0.880^~4~^~12/01/2000~ -~12132~^~613~^5.932^4^0.070^~1~^~A~^^^1^5.764^6.047^3^5.709^6.156^~4~^~12/01/2000~ -~12132~^~614~^2.280^4^0.178^~1~^~A~^^^1^1.949^2.771^3^1.712^2.847^~4~^~12/01/2000~ -~12132~^~615~^1.944^4^0.063^~1~^~A~^^^1^1.843^2.131^3^1.744^2.144^~4~^~12/01/2000~ -~12132~^~617~^44.377^4^0.935^~1~^~A~^^^1^42.074^46.324^3^41.403^47.352^~4~^~12/01/2000~ -~12132~^~618~^1.303^4^0.108^~1~^~A~^^^1^1.164^1.587^3^0.960^1.645^~4~^~12/01/2000~ -~12132~^~619~^0.196^4^0.021^~1~^~A~^^^1^0.149^0.241^3^0.128^0.264^~4~^~12/01/2000~ -~12132~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~624~^0.621^4^0.011^~1~^~A~^^^1^0.605^0.653^3^0.587^0.654^~4~^~12/01/2000~ -~12132~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~626~^12.725^4^0.493^~1~^~A~^^^1^11.119^13.258^3^11.155^14.295^~4~^~12/01/2000~ -~12132~^~627~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~12132~^~628~^1.925^4^0.076^~1~^~A~^^^1^1.751^2.084^3^1.684^2.165^~4~^~12/01/2000~ -~12132~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~630~^0.237^4^0.016^~1~^~A~^^^1^0.214^0.278^3^0.186^0.288^~4~^~12/01/2000~ -~12132~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~645~^59.275^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~12132~^~646~^1.498^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~12132~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~653~^0.156^4^0.041^~1~^~A~^^^1^0.073^0.254^3^0.025^0.287^~4~^~12/01/2000~ -~12132~^~654~^0.272^4^0.013^~1~^~A~^^^1^0.250^0.301^3^0.229^0.315^~4~^~12/01/2000~ -~12132~^~671~^0.011^4^0.010^~1~^~A~^^^1^0.000^0.038^3^-0.020^0.043^~4~^~12/01/2000~ -~12132~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12132~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12135~^~312~^1.520^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~315~^2.610^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~404~^0.300^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~405~^0.400^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~406~^6.220^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~415~^0.360^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~501~^0.222^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~502~^0.673^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~503~^0.746^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~504~^1.374^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~505~^0.742^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~506~^0.260^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~507~^0.281^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~508~^1.000^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~509~^0.676^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~510~^0.941^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~511~^2.359^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~512~^0.505^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~513~^0.839^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~514~^2.261^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~515~^4.474^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~516~^1.134^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~517~^0.856^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~518~^0.976^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~ -~12135~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~605~^0.033^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~606~^8.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~612~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~613~^4.303^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~614~^2.341^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~615~^0.400^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~617~^34.079^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~618~^9.752^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~619~^0.082^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~620~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~624~^0.572^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~626~^0.108^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~628~^0.295^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~629~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~630~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~645~^34.532^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~646~^9.858^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~653~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~654~^0.326^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~663~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~665~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~673~^0.108^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~674~^34.058^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~675~^9.740^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~676~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~687~^0.034^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12135~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12135~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~851~^0.082^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12135~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12135~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12136~^~312~^1.008^2^^~1~^~A~^^^1^0.925^1.090^1^^^^~06/01/2015~ -~12136~^~315~^1.770^2^^~1~^~A~^^^1^1.770^1.770^^^^^~06/01/2015~ -~12136~^~404~^0.350^2^^~1~^~A~^^^1^0.300^0.400^1^^^^~06/01/2015~ -~12136~^~405~^0.570^2^^~1~^~A~^^^1^0.510^0.630^1^^^^~06/01/2015~ -~12136~^~406~^4.510^2^^~1~^~A~^^^1^3.690^5.330^1^^^^~06/01/2015~ -~12136~^~410~^0.780^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12136~^~415~^0.495^2^^~1~^~A~^^^1^0.480^0.510^1^^^^~06/01/2015~ -~12136~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~606~^6.710^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~612~^0.022^2^^~1~^~A~^^^1^0.022^0.022^^^^^~06/01/2015~ -~12136~^~613~^4.245^2^^~1~^~A~^^^1^4.227^4.264^1^^^^~06/01/2015~ -~12136~^~614~^1.649^2^^~1~^~A~^^^1^1.460^1.839^1^^^^~06/01/2015~ -~12136~^~615~^0.247^2^^~1~^~A~^^^1^0.216^0.277^1^^^^~06/01/2015~ -~12136~^~617~^27.143^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~618~^11.545^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~619~^0.080^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~620~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~06/01/2015~ -~12136~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~624~^0.316^2^^~1~^~A~^^^1^0.234^0.398^1^^^^~06/01/2015~ -~12136~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~626~^0.213^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~628~^0.209^2^^~1~^~A~^^^1^0.172^0.245^1^^^^~06/01/2015~ -~12136~^~629~^0.014^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~06/01/2015~ -~12136~^~630~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~645~^27.618^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~646~^11.655^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~652~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~06/01/2015~ -~12136~^~653~^0.038^2^^~1~^~A~^^^1^0.037^0.039^1^^^^~06/01/2015~ -~12136~^~654~^0.187^2^^~1~^~A~^^^1^0.142^0.232^1^^^^~06/01/2015~ -~12136~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~663~^0.015^2^^~1~^~A~^^^1^0.015^0.016^1^^^^~06/01/2015~ -~12136~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~665~^0.012^2^^~1~^~A~^^^1^0.012^0.012^^^^^~06/01/2015~ -~12136~^~670~^0.002^2^^~1~^~A~^^^1^0.001^0.003^1^^^~1~^~06/01/2015~ -~12136~^~671~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~06/01/2015~ -~12136~^~672~^0.006^2^^~1~^~A~^^^1^0.005^0.008^1^^^^~06/01/2015~ -~12136~^~673~^0.213^2^^~1~^~A~^^^1^0.201^0.226^1^^^^~06/01/2015~ -~12136~^~674~^27.127^2^^~1~^~A~^^^1^26.799^27.456^1^^^^~06/01/2015~ -~12136~^~675~^11.531^2^^~1~^~A~^^^1^11.326^11.736^1^^^^~06/01/2015~ -~12136~^~676~^0.010^2^^~1~^~A~^^^1^0.007^0.012^1^^^^~06/01/2015~ -~12136~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~687~^0.040^2^^~1~^~A~^^^1^0.038^0.042^1^^^^~06/01/2015~ -~12136~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12136~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12136~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~851~^0.080^2^^~1~^~A~^^^1^0.074^0.085^1^^^^~06/01/2015~ -~12136~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12136~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~12137~^~312~^0.907^10^0.027^~1~^~A~^^^1^0.813^1.090^9^0.846^0.968^~2, 3~^~05/01/2011~ -~12137~^~315~^2.040^10^0.040^~1~^~A~^^^1^1.840^2.280^9^1.950^2.130^~2, 3~^~05/01/2011~ -~12137~^~404~^0.189^10^0.010^~1~^~A~^^^1^0.150^0.250^9^0.166^0.212^~2, 3~^~05/01/2011~ -~12137~^~405~^0.196^10^0.014^~1~^~A~^^^1^0.110^0.270^9^0.164^0.228^~2, 3~^~05/01/2011~ -~12137~^~406~^7.709^10^0.297^~1~^~A~^^^1^6.180^8.990^9^7.038^8.380^~2, 3~^~05/01/2011~ -~12137~^~410~^1.140^5^0.051^~1~^~A~^^^1^1.000^1.300^4^0.998^1.282^~2, 3~^~05/01/2011~ -~12137~^~415~^0.352^10^0.008^~1~^~A~^^^1^0.321^0.403^9^0.333^0.370^~2, 3~^~05/01/2011~ -~12137~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~502~^0.703^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~503~^0.826^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~504~^1.656^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~505~^0.782^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~506~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~508~^1.182^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~509~^0.786^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~510~^1.001^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~511~^2.965^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~512~^0.572^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~513~^0.982^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~514~^2.892^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~515~^5.574^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~516~^1.387^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~517~^0.957^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~518~^1.168^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12137~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~606~^8.711^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~607~^0.004^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.002^0.004^~2, 3~^~05/01/2011~ -~12137~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~02/01/1995~ -~12137~^~609~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.004^9^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~12137~^~610~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.003^9^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~12137~^~611~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.002^9^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~12137~^~612~^0.043^10^0.003^~1~^~A~^^^1^0.018^0.056^9^0.031^0.044^~2, 3~^~05/01/2011~ -~12137~^~613~^5.205^10^0.185^~1~^~A~^^^1^4.130^6.198^9^4.220^5.056^~2, 3~^~05/01/2011~ -~12137~^~614~^2.022^10^0.094^~1~^~A~^^^1^1.464^2.533^9^1.588^2.016^~2, 3~^~05/01/2011~ -~12137~^~615~^0.361^10^0.008^~1~^~A~^^^1^0.285^0.375^9^0.304^0.340^~2, 3~^~05/01/2011~ -~12137~^~617~^27.914^10^0.671^~1~^~AS~^^^1^22.474^28.888^9^23.358^26.391^~2, 3~^~05/01/2011~ -~12137~^~618~^14.495^10^0.566^~1~^~AS~^^^1^10.374^17.134^9^11.635^14.197^~2, 3~^~05/01/2011~ -~12137~^~619~^0.082^10^0.006^~1~^~AS~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~05/01/2011~ -~12137~^~620~^0.010^10^0.001^~1~^~A~^^^1^0.004^0.013^9^0.006^0.011^~2, 3~^~05/01/2011~ -~12137~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~12137~^~624~^0.641^10^0.014^~1~^~A~^^^1^0.518^0.673^9^0.539^0.603^~2, 3~^~05/01/2011~ -~12137~^~625~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12137~^~626~^0.128^10^0.003^~1~^~AS~^^^1^0.100^0.131^9^0.107^0.122^~2, 3~^~05/01/2011~ -~12137~^~627~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12137~^~628~^0.375^10^0.010^~1~^~A~^^^1^0.290^0.387^9^0.311^0.357^~2, 3~^~05/01/2011~ -~12137~^~629~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.008^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12137~^~630~^0.027^10^0.001^~1~^~AS~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~05/01/2011~ -~12137~^~631~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~12137~^~645~^28.488^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~646~^14.612^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~652~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12137~^~653~^0.046^10^0.001^~1~^~A~^^^1^0.037^0.051^9^0.038^0.044^~2, 3~^~05/01/2011~ -~12137~^~654~^0.378^10^0.008^~1~^~A~^^^1^0.309^0.391^9^0.318^0.356^~2, 3~^~05/01/2011~ -~12137~^~662~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12137~^~663~^0.021^10^0.001^~1~^~A~^^^1^0.015^0.023^9^0.017^0.021^~2, 3~^~05/01/2011~ -~12137~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12137~^~665~^0.032^10^0.002^~1~^~A~^^^1^0.024^0.044^9^0.024^0.033^~2, 3~^~05/01/2011~ -~12137~^~670~^0.008^10^0.001^~1~^~A~^^^1^0.004^0.010^9^0.006^0.008^~2, 3~^~05/01/2011~ -~12137~^~671~^0.006^10^0.001^~1~^~A~^^^1^0.002^0.010^9^0.003^0.008^~1, 2, 3~^~05/01/2011~ -~12137~^~672~^0.013^10^0.002^~1~^~A~^^^1^0.005^0.021^9^0.007^0.017^~2, 3~^~05/01/2011~ -~12137~^~673~^0.127^10^0.003^~1~^~A~^^^1^0.099^0.131^9^0.106^0.121^~2, 3~^~05/01/2011~ -~12137~^~674~^27.893^10^0.670^~1~^~A~^^^1^22.459^28.866^9^23.339^26.371^~2, 3~^~05/01/2011~ -~12137~^~675~^14.455^10^0.565^~1~^~A~^^^1^10.346^17.081^9^11.603^14.158^~2, 3~^~05/01/2011~ -~12137~^~676~^0.027^10^0.001^~1~^~A~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~05/01/2011~ -~12137~^~685~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~687~^0.037^10^0.001^~1~^~A~^^^1^0.022^0.036^9^0.030^0.036^~2, 3~^~05/01/2011~ -~12137~^~689~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.001^9^0.000^0.000^~2, 3~^~05/01/2011~ -~12137~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12137~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~851~^0.082^10^0.006^~1~^~A~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~05/01/2011~ -~12137~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~05/01/2011~ -~12137~^~853~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12137~^~858~^0.005^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12138~^~312~^1.795^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~315~^1.547^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~404~^0.504^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~405~^0.486^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~406~^1.964^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~410~^0.962^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~415~^0.180^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~501~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~502~^0.568^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~503~^0.703^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~504~^1.265^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~505~^0.682^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~506~^0.346^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~507~^0.302^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~508~^0.820^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~509~^0.510^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~510~^0.952^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~511~^1.989^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~512~^0.416^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~513~^0.715^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~514~^1.617^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~515~^3.872^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~516~^0.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~517~^0.773^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~518~^1.620^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~606~^9.087^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~609~^0.078^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~610~^0.078^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~611~^0.467^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~612~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~613~^4.932^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~614~^2.783^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~617~^32.517^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~618~^11.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~619~^0.249^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~626~^0.329^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~628~^0.149^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~645~^33.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12138~^~646~^11.449^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~312~^0.180^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~315~^7.919^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~404~^0.300^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~405~^0.300^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~406~^1.500^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~410~^0.310^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~415~^0.394^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12140~^~501~^0.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~502~^0.579^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~503~^0.555^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~504~^0.991^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~505~^0.910^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~506~^0.279^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~507~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~508~^0.603^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~509~^0.484^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~510~^0.729^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~511~^1.065^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~512~^0.393^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~513~^0.817^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~514~^1.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~515~^2.499^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~516~^0.772^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~517~^0.846^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~518~^0.696^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~606~^8.701^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~612~^0.094^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~613~^5.957^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~614~^2.687^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~617~^23.263^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~618~^20.974^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~619~^1.687^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~626~^0.230^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~645~^23.545^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12140~^~646~^22.714^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12141~^~312~^1.140^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~315~^2.610^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12141~^~406~^3.740^1^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~12141~^~410~^0.540^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~605~^0.033^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~606~^7.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~612~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~613~^4.267^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~614~^2.037^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~615~^0.238^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~617~^27.242^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~618~^17.429^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~619~^2.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~620~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~624~^0.254^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~626~^0.109^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~628~^0.202^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~629~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~630~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~645~^27.596^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~646~^19.479^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~652~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~653~^0.047^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~654~^0.153^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~663~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~665~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~673~^0.109^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~674~^27.226^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~675~^17.412^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~676~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~685~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~687~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~12141~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~12141~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~851~^2.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~12141~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12141~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~12142~^~312~^1.200^3^0.058^~1~^~A~^^^1^1.100^1.300^2^0.952^1.448^~4~^~01/01/2001~ -~12142~^~315~^4.500^3^1.050^~1~^~A~^^^1^3.400^6.600^2^-0.019^9.019^~4~^~01/01/2001~ -~12142~^~404~^0.660^3^0.021^~1~^~A~^^^1^0.630^0.700^2^0.570^0.750^~4~^~01/01/2001~ -~12142~^~405~^0.130^3^0.030^~1~^~A~^^^1^0.100^0.190^2^0.001^0.259^~4~^~01/01/2001~ -~12142~^~406~^1.167^3^0.033^~1~^~A~^^^1^1.100^1.200^2^1.023^1.310^~4~^~01/01/2001~ -~12142~^~410~^0.863^3^0.078^~1~^~A~^^^1^0.730^1.000^2^0.528^1.199^~4~^~01/01/2001~ -~12142~^~415~^0.210^3^0.021^~1~^~A~^^^1^0.170^0.240^2^0.120^0.300^~4~^~01/01/2001~ -~12142~^~501~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~502~^0.306^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~503~^0.336^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~504~^0.598^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~505~^0.287^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~506~^0.183^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~507~^0.152^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~508~^0.426^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~509~^0.215^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~510~^0.411^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~511~^1.177^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~512~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~513~^0.397^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~514~^0.929^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~515~^1.829^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~516~^0.453^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~517~^0.363^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~518~^0.474^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12142~^~606~^6.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12142~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12142~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~613~^4.366^3^0.213^~1~^~A~^^^1^3.990^4.727^2^3.450^5.281^~4~^~01/01/2001~ -~12142~^~614~^1.745^3^0.022^~1~^~A~^^^1^1.718^1.790^2^1.649^1.841^~4~^~01/01/2001~ -~12142~^~615~^0.069^3^0.000^~1~^~A~^^^1^0.069^0.069^2^0.069^0.070^~4~^~01/01/2001~ -~12142~^~617~^40.594^3^2.143^~1~^~A~^^^1^37.019^44.428^2^31.374^49.814^~4~^~01/01/2001~ -~12142~^~618~^20.628^3^1.806^~1~^~A~^^^1^17.476^23.731^2^12.857^28.398^~4~^~01/01/2001~ -~12142~^~619~^0.986^3^0.044^~1~^~A~^^^1^0.898^1.031^2^0.796^1.177^~4~^~01/01/2001~ -~12142~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2011~ -~12142~^~628~^0.207^3^0.000^~1~^~A~^^^1^0.207^0.208^2^0.206^0.209^~4~^~01/01/2001~ -~12142~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~645~^40.801^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~646~^21.614^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12142~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12142~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~312~^1.167^3^0.176^~1~^~A~^^^1^0.900^1.500^2^0.408^1.926^~4~^~01/01/2001~ -~12143~^~315~^3.933^3^0.935^~1~^~A~^^^1^2.900^5.800^2^-0.090^7.957^~4~^~01/01/2001~ -~12143~^~404~^0.450^3^0.025^~1~^~A~^^^1^0.400^0.480^2^0.342^0.558^~4~^~01/01/2001~ -~12143~^~405~^0.107^3^0.007^~1~^~A~^^^1^0.100^0.120^2^0.078^0.135^~4~^~01/01/2001~ -~12143~^~406~^1.167^3^0.067^~1~^~A~^^^1^1.100^1.300^2^0.880^1.454^~4~^~01/01/2001~ -~12143~^~410~^0.703^3^0.108^~1~^~A~^^^1^0.490^0.840^2^0.238^1.168^~4~^~01/01/2001~ -~12143~^~415~^0.187^3^0.023^~1~^~A~^^^1^0.140^0.210^2^0.086^0.287^~4~^~01/01/2001~ -~12143~^~501~^0.096^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~502~^0.317^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~503~^0.348^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~504~^0.619^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~505~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~506~^0.189^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~508~^0.441^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~509~^0.223^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~510~^0.426^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~511~^1.220^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~512~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~514~^0.963^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~515~^1.895^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~516~^0.469^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~517~^0.376^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~518~^0.491^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12143~^~606~^6.283^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12143~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12143~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~613~^4.387^3^0.222^~1~^~A~^^^1^4.068^4.814^2^3.431^5.343^~4~^~01/01/2001~ -~12143~^~614~^1.825^3^0.025^~1~^~A~^^^1^1.778^1.864^2^1.717^1.933^~4~^~01/01/2001~ -~12143~^~615~^0.071^3^0.000^~1~^~A~^^^1^0.071^0.072^2^0.070^0.073^~4~^~01/01/2001~ -~12143~^~617~^43.743^3^2.616^~1~^~A~^^^1^39.179^48.240^2^32.488^54.999^~4~^~01/01/2001~ -~12143~^~618~^19.578^3^2.218^~1~^~A~^^^1^16.051^23.671^2^10.036^29.120^~4~^~01/01/2001~ -~12143~^~619~^0.994^3^0.039^~1~^~A~^^^1^0.931^1.066^2^0.826^1.163^~4~^~01/01/2001~ -~12143~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12143~^~628~^0.214^3^0.001^~1~^~A~^^^1^0.212^0.216^2^0.209^0.219^~4~^~01/01/2001~ -~12143~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~645~^43.957^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~646~^20.572^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12143~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12143~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~312~^1.200^3^0.058^~1~^~A~^^^1^1.100^1.300^2^0.952^1.448^~4~^~01/01/2001~ -~12144~^~315~^3.700^3^1.114^~1~^~A~^^^1^2.300^5.900^2^-1.091^8.491^~4~^~01/01/2001~ -~12144~^~404~^0.473^3^0.018^~1~^~A~^^^1^0.440^0.500^2^0.397^0.549^~4~^~01/01/2001~ -~12144~^~405~^0.110^3^0.006^~1~^~A~^^^1^0.100^0.120^2^0.085^0.135^~4~^~01/01/2001~ -~12144~^~406~^1.200^3^0.000^~1~^~A~^^^1^1.200^1.200^2^1.200^1.200^~4~^~01/01/2001~ -~12144~^~410~^0.737^3^0.081^~1~^~A~^^^1^0.590^0.870^2^0.388^1.086^~4~^~01/01/2001~ -~12144~^~415~^0.187^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.124^0.249^~4~^~01/01/2001~ -~12144~^~501~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~502~^0.307^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~503~^0.337^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~504~^0.600^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~505~^0.288^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~506~^0.183^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~508~^0.428^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~509~^0.216^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~510~^0.413^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~511~^1.181^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~512~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~513~^0.398^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~514~^0.933^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~515~^1.835^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~516~^0.454^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~517~^0.364^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~518~^0.476^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12144~^~606~^7.238^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~613~^4.969^3^0.055^~1~^~A~^^^1^4.859^5.027^2^4.731^5.208^~4~^~01/01/2001~ -~12144~^~614~^1.849^3^0.036^~1~^~A~^^^1^1.778^1.894^2^1.695^2.003^~4~^~01/01/2001~ -~12144~^~615~^0.145^3^0.001^~1~^~A~^^^1^0.143^0.146^2^0.140^0.149^~4~^~01/01/2001~ -~12144~^~617~^40.681^3^2.216^~1~^~A~^^^1^37.188^44.789^2^31.148^50.214^~4~^~01/01/2001~ -~12144~^~618~^22.552^3^1.604^~1~^~A~^^^1^19.585^25.092^2^15.650^29.455^~4~^~01/01/2001~ -~12144~^~619~^1.031^3^0.025^~1~^~A~^^^1^0.995^1.080^2^0.922^1.141^~4~^~01/01/2001~ -~12144~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~624~^0.162^3^0.055^~1~^~A~^^^1^0.052^0.218^2^-0.074^0.397^~4~^~01/01/2001~ -~12144~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~626~^0.024^3^0.024^~1~^~A~^^^1^0.000^0.072^2^-0.080^0.128^~4~^~01/01/2001~ -~12144~^~628~^0.265^3^0.023^~1~^~A~^^^1^0.219^0.289^2^0.167^0.363^~4~^~01/01/2001~ -~12144~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~645~^40.970^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~646~^23.584^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12144~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~654~^0.114^3^0.031^~1~^~A~^^^1^0.052^0.146^2^-0.019^0.246^~4~^~01/01/2001~ -~12144~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12144~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12145~^~312~^0.958^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~315~^2.313^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~404~^0.913^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~405~^0.093^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~406~^0.519^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~410~^0.479^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~415~^0.115^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12145~^~501~^0.189^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~502~^0.407^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~503~^0.483^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~504~^0.890^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~505~^0.369^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~506~^0.395^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~507~^0.189^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~508~^0.497^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~509~^0.381^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~510~^0.701^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~511~^1.516^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~512~^0.255^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~513~^0.509^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~514~^1.222^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~515~^2.393^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~516~^0.650^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~517~^0.471^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~518~^0.599^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~606~^31.184^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~613~^22.035^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~614~^9.148^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~617~^37.229^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~618~^7.605^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~645~^37.229^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12145~^~646~^7.605^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12147~^~312~^1.324^8^0.015^~1~^~A~^^^2^1.260^1.430^5^1.284^1.363^~2, 3~^~02/01/2003~ -~12147~^~315~^8.802^8^0.309^~1~^~A~^^^2^7.590^10.300^6^8.045^9.560^~2, 3~^~02/01/2003~ -~12147~^~404~^0.364^8^0.026^~1~^~A~^^^2^0.220^0.535^6^0.299^0.428^~2, 3~^~02/01/2003~ -~12147~^~405~^0.227^4^0.010^~1~^~A~^^^1^0.201^0.249^3^0.196^0.258^~2, 3~^~02/01/2003~ -~12147~^~406~^4.387^8^0.210^~1~^~A~^^^2^4.010^5.840^3^3.741^5.034^~2, 3~^~02/01/2003~ -~12147~^~410~^0.313^7^0.008^~1~^~A~^^^2^0.288^0.359^3^0.289^0.337^~2, 3~^~02/01/2003~ -~12147~^~415~^0.094^8^0.004^~1~^~A~^^^2^0.057^0.134^4^0.084^0.104^~2, 3~^~02/01/2003~ -~12147~^~501~^0.107^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~502~^0.370^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~503~^0.542^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~504~^0.991^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~505~^0.540^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~506~^0.259^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~508~^0.524^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~509~^0.509^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~510~^0.687^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~511~^2.413^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~512~^0.341^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~513~^0.684^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~514~^1.303^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~515~^2.926^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~516~^0.691^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~517~^0.673^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~518~^0.835^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~12147~^~606~^4.899^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~12147~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2006~ -~12147~^~609~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~610~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~611~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~612~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~613~^3.212^7^0.058^~1~^~A~^^^2^2.896^3.365^3^3.042^3.383^~2, 3~^~02/01/2003~ -~12147~^~614~^1.390^7^0.019^~1~^~A~^^^2^1.333^1.488^4^1.335^1.445^~2, 3~^~02/01/2003~ -~12147~^~615~^0.229^7^0.006^~1~^~A~^^^2^0.190^0.256^4^0.211^0.247^~2, 3~^~02/01/2003~ -~12147~^~617~^17.947^7^0.313^~1~^~A~^^^2^15.751^19.300^3^16.980^18.914^~2, 3~^~02/01/2003~ -~12147~^~618~^33.150^7^0.429^~1~^~A~^^^2^27.153^39.100^3^31.814^34.486^~2, 3~^~02/01/2003~ -~12147~^~619~^0.164^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~12147~^~620~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~624~^0.068^7^0.002^~1~^~A~^^^2^0.050^0.084^4^0.063^0.073^~2, 3~^~02/01/2003~ -~12147~^~625~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~626~^0.017^7^0.007^~1~^~A~^^^2^0.000^0.060^2^-0.013^0.047^~1, 2, 3~^~02/01/2003~ -~12147~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~628~^0.801^7^0.021^~1~^~A~^^^2^0.700^0.858^4^0.739^0.862^~2, 3~^~02/01/2003~ -~12147~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~645~^18.764^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~646~^34.071^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~12147~^~652~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~653~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~672~^0.404^7^0.006^~1~^~A~^^^2^0.358^0.440^4^0.386^0.422^~2, 3~^~02/01/2003~ -~12147~^~685~^0.052^4^0.000^~1~^~A~^^^1^0.052^0.052^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~687~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~689~^0.353^7^0.003^~1~^~A~^^^2^0.000^0.830^2^0.341^0.365^~1, 2, 3~^~02/01/2003~ -~12147~^~697~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~12147~^~851~^0.112^4^0.002^~1~^~A~^^^1^0.106^0.116^3^0.105^0.119^~2, 3~^~02/01/2003~ -~12149~^~312~^1.035^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~315~^4.333^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~404~^1.243^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~405~^0.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~406~^4.370^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~410~^0.210^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~415~^0.111^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12149~^~501~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~502~^0.367^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~503~^0.450^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~504~^0.834^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~505~^0.434^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~506~^0.207^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~507~^0.210^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~508~^0.443^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~509~^0.424^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~510~^0.598^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~511~^2.251^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~512~^0.277^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~513~^0.605^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~514~^1.054^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~515~^1.969^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~516~^0.589^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~517~^0.622^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~518~^0.491^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~606~^9.377^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~613~^4.416^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~614~^2.011^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~617~^21.528^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~618~^24.882^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~619~^0.787^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~626~^0.250^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~628~^1.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~645~^22.942^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12149~^~646~^25.668^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12151~^~312~^1.300^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~315~^1.200^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~404~^0.870^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~406~^1.300^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~410~^0.520^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~415~^1.700^1^^~1~^~A~^^^^^^^^^^~06/01/1999~ -~12151~^~501~^0.251^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~502~^0.684^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~503~^0.917^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~504~^1.604^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~505~^1.138^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~506~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~507~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~508~^1.092^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~509~^0.509^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~510~^1.249^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~511~^2.134^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~512~^0.512^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~513~^0.973^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~514~^1.884^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~515~^4.300^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~516~^1.009^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~517~^0.938^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~518~^1.283^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~12151~^~606~^5.907^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12151~^~608~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~609~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~610~^0.004^2^^~1~^~A~^^^2^0.000^0.008^1^^^^~04/01/2015~ -~12151~^~611~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~612~^0.019^2^^~1~^~A~^^^2^0.000^0.038^1^^^^~04/01/2015~ -~12151~^~613~^5.265^2^^~1~^~A~^^^2^5.096^5.435^1^^^^~04/01/2015~ -~12151~^~614~^0.478^2^^~1~^~A~^^^2^0.470^0.485^1^^^^~04/01/2015~ -~12151~^~615~^0.046^2^^~1~^~A~^^^2^0.044^0.048^1^^^^~04/01/2015~ -~12151~^~617~^22.674^2^^~1~^~A~^^^2^21.701^23.647^1^^^^~04/01/2015~ -~12151~^~618~^14.091^2^^~1~^~A~^^^2^13.760^14.421^1^^^^~04/01/2015~ -~12151~^~619~^0.289^3^0.042^~1~^~A~^^^3^0.233^0.371^2^0.110^0.469^~2~^~04/01/2015~ -~12151~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~624~^0.040^2^^~1~^~A~^^^2^0.035^0.044^1^^^^~04/01/2015~ -~12151~^~625~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~626~^0.495^2^^~1~^~A~^^^2^0.483^0.507^1^^^^~04/01/2015~ -~12151~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~12151~^~628~^0.089^2^^~1~^~A~^^^2^0.000^0.177^1^^^^~04/01/2015~ -~12151~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~630~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~645~^23.257^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~646~^14.380^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12151~^~652~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~653~^0.009^2^^~1~^~A~^^^2^0.000^0.017^1^^^^~04/01/2015~ -~12151~^~654~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^^~03/01/2009~ -~12151~^~671~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~675~^14.091^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12151~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12151~^~696~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~12152~^~312~^1.293^5^0.033^~1~^~A~^^^2^1.260^1.400^1^0.880^1.705^~2~^~05/01/2010~ -~12152~^~315~^1.243^5^0.033^~1~^~A~^^^2^1.100^1.400^1^0.830^1.655^~2~^~05/01/2010~ -~12152~^~404~^0.695^5^0.145^~1~^~A~^^^2^0.550^0.870^1^-1.147^2.537^~2~^~05/01/2010~ -~12152~^~405~^0.234^5^0.076^~1~^~A~^^^2^0.110^0.310^1^-0.735^1.203^~2~^~05/01/2010~ -~12152~^~406~^1.373^5^0.053^~1~^~A~^^^2^1.300^1.500^1^0.705^2.040^~2~^~05/01/2010~ -~12152~^~410~^0.513^4^0.012^~1~^~A~^^^1^0.480^0.530^3^0.475^0.550^~4~^~01/01/2001~ -~12152~^~415~^1.122^13^0.311^~1~^~A~^^^4^0.484^1.800^3^0.132^2.113^~2~^~05/01/2010~ -~12152~^~501~^0.262^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~502~^0.714^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~503~^0.957^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~504~^1.675^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~505~^1.189^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~506~^0.375^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~507~^0.305^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~508~^1.140^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~509~^0.531^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~510~^1.305^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~511~^2.228^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~512~^0.535^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~513~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~514~^1.968^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~515~^4.490^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~516~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~517~^0.980^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~518~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~521~^0.096^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12152~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12152~^~606~^5.645^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~12152~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~12152~^~609~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12152~^~610~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12152~^~611~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12152~^~612~^0.012^9^0.013^~1~^~A~^^^3^0.000^0.040^2^-0.042^0.068^~1, 2~^~04/01/2015~ -~12152~^~613~^4.994^9^0.152^~1~^~A~^^^3^4.940^5.595^2^4.681^5.993^~2~^~04/01/2015~ -~12152~^~614~^0.558^9^0.060^~1~^~A~^^^3^0.492^0.715^2^0.340^0.853^~2~^~04/01/2015~ -~12152~^~615~^0.033^9^0.018^~1~^~A~^^^3^0.000^0.090^2^-0.041^0.112^~1, 2~^~04/01/2015~ -~12152~^~617~^23.926^9^0.832^~1~^~A~^^^3^23.955^27.046^2^21.990^29.151^~2~^~04/01/2015~ -~12152~^~618~^13.125^9^0.259^~6~^~JA~^^^3^13.607^14.600^2^12.912^15.142^~2~^~04/01/2015~ -~12152~^~619~^0.212^10^0.024^~6~^~JA~^^^4^0.157^0.270^3^0.150^0.304^~2~^~04/01/2015~ -~12152~^~620~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12152~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2006~ -~12152~^~624~^0.026^9^0.014^~1~^~A~^^^3^0.000^0.045^2^-0.032^0.089^~1, 2~^~04/01/2015~ -~12152~^~625~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12152~^~626~^0.464^9^0.014^~1~^~A~^^^3^0.445^0.532^2^0.437^0.555^~2~^~04/01/2015~ -~12152~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~ -~12152~^~628~^0.106^9^0.057^~1~^~A~^^^3^0.000^0.181^2^-0.132^0.358^~1, 2~^~04/01/2015~ -~12152~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2006~ -~12152~^~630~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12152~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2006~ -~12152~^~645~^24.534^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~646~^13.346^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12152~^~652~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12152~^~653~^0.011^6^0.011^~1~^~A~^^^2^0.000^0.024^1^-0.132^0.154^~2~^~04/01/2015~ -~12152~^~654~^0.011^6^0.012^~1~^~A~^^^2^0.000^0.026^1^-0.140^0.164^~2~^~05/01/2010~ -~12152~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2010~ -~12152~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2010~ -~12152~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2006~ -~12152~^~672~^0.000^9^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12152~^~675~^13.125^4^0.046^~1~^~A~^^^2^13.607^13.700^1^13.063^14.244^~2~^~04/01/2015~ -~12152~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2015~ -~12152~^~687~^0.020^2^^~1~^~A~^^^1^0.000^0.042^1^^^~1~^~04/01/2015~ -~12152~^~689~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12152~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12152~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12152~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~04/01/2006~ -~12152~^~697~^0.009^2^^~1~^~A~^^^1^0.000^0.020^1^^^~1~^~05/01/2010~ -~12152~^~851~^0.212^3^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12154~^~312~^1.360^16^0.340^~1~^~A~^^^2^1.020^1.700^1^-2.960^5.680^~2~^~06/01/2002~ -~12154~^~315~^3.896^16^0.376^~1~^~A~^^^2^3.520^4.271^1^-0.876^8.667^~2~^~06/01/2002~ -~12154~^~404~^0.057^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~406~^0.470^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~410~^1.660^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~415~^0.583^1^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~501~^0.318^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~502~^0.721^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~503~^0.966^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~504~^1.684^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~505~^0.713^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~506~^0.467^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~507~^0.462^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~508~^1.094^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~509~^0.740^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~510~^1.271^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~511~^3.618^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~512~^0.672^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~513~^1.048^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~514~^2.433^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~515~^5.152^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~516~^1.189^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~517~^0.926^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~518~^1.225^0^^~1~^~A~^^^^^^^^^^~06/01/2002~ -~12154~^~606~^3.483^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~612~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~06/01/2002~ -~12154~^~613~^1.934^9^0.118^~1~^~A~^^^3^1.720^2.126^2^1.427^2.440^~2~^~02/01/2014~ -~12154~^~614~^1.549^9^0.108^~1~^~A~^^^3^1.394^1.758^2^1.083^2.015^~2~^~02/01/2014~ -~12154~^~615~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~06/01/2002~ -~12154~^~617~^15.128^10^1.656^~1~^~A~^^^3^11.856^17.210^2^8.002^22.254^~2~^~02/01/2014~ -~12154~^~618~^33.760^10^0.723^~6~^~JA~^^^3^32.685^35.136^2^30.647^36.872^~2~^~02/01/2014~ -~12154~^~619~^2.677^9^0.629^~6~^~JA~^^^2^2.049^3.306^1^-5.311^10.666^~2~^~02/01/2014~ -~12154~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~624~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~06/01/2002~ -~12154~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~626~^0.042^6^0.023^~1~^~A~^^^3^0.000^0.077^2^-0.055^0.139^~1, 2~^~02/01/2014~ -~12154~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~628~^0.272^6^0.158^~1~^~A~^^^3^0.000^0.548^2^-0.409^0.953^~1, 2~^~02/01/2014~ -~12154~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12154~^~645~^15.442^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~646~^36.437^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~12154~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~672~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~06/01/2002~ -~12154~^~675~^33.760^3^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~12154~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~ -~12154~^~851~^2.677^4^0.022^~1~^~A~^^^2^2.006^2.049^1^1.754^2.301^~2~^~02/01/2014~ -~12155~^~312~^1.586^7^0.026^~1~^~A~^^^1^1.500^1.700^6^1.522^1.650^~4~^~12/01/2000~ -~12155~^~315~^3.414^7^0.122^~1~^~A~^^^1^3.100^3.900^6^3.115^3.714^~4~^~12/01/2000~ -~12155~^~404~^0.341^7^0.010^~1~^~A~^^^1^0.310^0.390^6^0.318^0.365^~4~^~12/01/2000~ -~12155~^~405~^0.150^7^0.003^~1~^~A~^^^1^0.140^0.160^6^0.142^0.158^~4~^~12/01/2000~ -~12155~^~406~^1.125^8^0.055^~1~^~A~^^^2^0.949^1.440^3^0.952^1.299^~2, 3~^~10/01/2002~ -~12155~^~410~^0.570^7^0.011^~1~^~A~^^^1^0.540^0.620^6^0.544^0.596^~4~^~12/01/2000~ -~12155~^~415~^0.537^7^0.026^~1~^~A~^^^1^0.430^0.590^6^0.474^0.600^~4~^~12/01/2000~ -~12155~^~501~^0.170^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~502~^0.596^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~503~^0.625^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~504~^1.170^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~505~^0.424^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~506~^0.236^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~508~^0.711^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~509~^0.406^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~510~^0.753^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~511~^2.278^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~512~^0.391^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~513~^0.696^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~514~^1.829^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~515~^2.816^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~516~^0.816^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~517~^0.706^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~518~^0.934^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~12155~^~606~^6.126^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12155~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12155~^~609~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~610~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~611~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~612~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~613~^4.404^7^0.095^~1~^~A~^^^1^4.115^4.901^6^4.172^4.636^~4~^~12/01/2000~ -~12155~^~614~^1.659^7^0.035^~1~^~A~^^^1^1.581^1.854^6^1.575^1.744^~4~^~12/01/2000~ -~12155~^~615~^0.063^7^0.000^~1~^~A~^^^1^0.061^0.064^6^0.062^0.064^~4~^~12/01/2000~ -~12155~^~617~^8.799^7^0.138^~1~^~A~^^^1^8.386^9.270^6^8.460^9.137^~4~^~12/01/2000~ -~12155~^~618~^38.093^7^0.304^~1~^~A~^^^1^37.217^39.234^6^37.350^38.837^~4~^~03/01/2001~ -~12155~^~619~^9.080^7^0.179^~1~^~A~^^^1^8.596^9.981^6^8.642^9.519^~4~^~03/01/2001~ -~12155~^~620~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~621~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~624~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~625~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~626~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~ -~12155~^~628~^0.134^7^0.008^~1~^~A~^^^1^0.123^0.183^6^0.114^0.154^~4~^~12/01/2000~ -~12155~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~630~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~645~^8.933^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~646~^47.174^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12155~^~652~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~653~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~654~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~672~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~689~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12155~^~696~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^6^0.000^0.000^~4~^~12/01/2000~ -~12156~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~606~^3.571^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~645~^5.357^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12156~^~646~^25.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~ -~12157~^~312~^1.487^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~404~^0.521^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~405~^0.298^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~406~^2.217^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~415~^0.526^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~606~^5.357^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~12157~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~613~^3.851^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~614~^1.448^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~617~^8.244^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~618~^35.688^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~619~^8.493^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~628~^0.125^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~645~^8.371^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12157~^~646~^44.182^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~12158~^~312~^1.321^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~315~^0.163^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~404~^0.410^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~405~^0.240^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~406~^7.400^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~410~^1.009^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~415~^0.420^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12158~^~501~^0.103^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~502~^0.323^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~503~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~504~^0.472^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~505~^0.477^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~506~^0.081^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~507~^0.097^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~508~^0.668^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~509~^0.456^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~510~^0.448^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~511~^0.414^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~512~^0.173^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~513~^0.282^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~514~^0.684^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~515~^0.868^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~516~^0.390^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~517~^0.309^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~518~^0.415^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~606~^0.729^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~613~^0.483^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~614~^0.246^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~617~^0.329^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~618~^1.106^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~619~^0.332^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~626~^0.015^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~645~^0.344^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12158~^~646~^1.438^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~312~^1.200^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~315~^2.181^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~404~^0.750^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~405~^0.255^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~406~^3.000^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~410~^0.456^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~415~^0.782^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12160~^~501~^0.492^27^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~502~^1.205^41^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~503~^1.174^37^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~504~^2.226^41^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~505~^1.654^43^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~506~^0.529^37^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~507~^0.855^28^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~508~^2.029^37^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~509~^1.174^31^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~510~^1.672^37^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~511~^4.402^37^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~512~^1.027^35^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~513~^1.512^35^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~514~^3.547^35^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~515~^8.158^35^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~516~^1.580^35^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~517~^1.389^31^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~518~^1.629^31^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~606~^9.699^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~612~^0.341^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~613~^8.433^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~614~^0.853^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~617~^6.612^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~618~^17.865^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~619~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~626~^0.256^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12160~^~645~^6.919^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12160~^~646~^18.068^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~312~^0.690^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~315~^0.496^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~404~^0.034^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~405~^0.052^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~406~^0.286^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~410~^0.056^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~415~^0.037^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12163~^~501~^0.326^12^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~502~^0.683^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~503~^0.956^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~504~^1.572^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~505~^1.386^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~506~^0.417^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~507~^0.228^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~508~^0.924^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~509~^0.770^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~510~^1.491^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~511~^3.049^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~512~^0.515^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~513~^0.875^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~514~^1.873^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~515~^3.262^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~516~^1.358^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~517~^0.756^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~518~^0.868^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~606~^3.670^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~611~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~612~^0.022^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~613~^2.374^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~614~^1.189^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~617~^5.985^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~618~^8.759^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~619~^0.077^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~626~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~645~^6.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12163~^~646~^8.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~312~^1.610^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~315~^1.456^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~404~^1.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~405~^0.473^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~406~^5.450^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~410~^0.693^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~415~^0.149^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12166~^~501~^0.372^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~502~^0.706^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~503~^0.731^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~504~^1.302^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~505~^0.545^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~506~^0.561^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~507~^0.343^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~508~^0.901^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~509~^0.712^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~510~^0.950^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~511~^2.521^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~512~^0.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~513~^0.889^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~514~^1.578^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~515~^3.792^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~516~^1.165^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~517~^0.776^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~518~^0.927^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~606~^7.529^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~612~^0.134^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~613~^4.807^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~614~^2.262^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~617~^20.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~618~^23.133^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~619~^0.407^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~626~^0.161^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~628~^0.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1998~ -~12166~^~645~^20.302^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12166~^~646~^23.564^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~312~^0.507^3^0.003^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~315~^1.180^3^0.222^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~404~^0.243^4^0.028^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~405~^0.175^4^0.008^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~406~^1.342^4^0.162^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~410~^0.554^3^0.020^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~415~^0.497^3^0.057^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~501~^0.035^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~502~^0.113^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~503~^0.125^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~504~^0.188^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~505~^0.188^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~506~^0.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~507~^0.101^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~508~^0.134^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~509~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~510~^0.178^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~511~^0.227^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~512~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~513~^0.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~514~^0.549^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~515~^0.410^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~516~^0.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~517~^0.167^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~518~^0.159^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~606~^0.414^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~612~^0.010^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~613~^0.373^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~614~^0.021^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~617~^0.728^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~618~^0.776^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~619~^0.093^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~626~^0.021^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~628~^0.010^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12167~^~645~^0.759^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12167~^~646~^0.869^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~312~^4.214^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~315~^2.540^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~404~^0.240^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~405~^0.200^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~406~^6.700^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~410~^0.052^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12169~^~415~^0.816^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12169~^~501~^0.396^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~502~^0.751^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~503~^0.778^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~504~^1.385^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~505~^0.580^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~506~^0.597^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~507~^0.365^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~508~^0.959^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~509~^0.757^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~510~^1.010^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~511~^2.682^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~512~^0.532^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~513~^0.945^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~514~^1.679^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~515~^4.033^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~516~^1.239^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~517~^0.826^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~518~^0.986^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~606~^7.124^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~612~^0.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~613~^4.548^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~614~^2.140^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~617~^18.966^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~618~^21.888^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~619~^0.385^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~626~^0.153^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~628~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12169~^~645~^19.209^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12169~^~646~^22.296^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~312~^1.520^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12170~^~315~^1.489^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12170~^~404~^2.684^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~405~^0.286^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~406~^13.369^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~410~^2.928^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~415~^0.152^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~501~^0.674^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~502~^1.278^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~503~^1.324^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~504~^2.358^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~505~^0.987^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~506~^1.016^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~507~^0.621^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~508~^1.632^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~509~^1.289^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~510~^1.719^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~511~^4.565^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~512~^0.906^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~513~^1.609^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~514~^2.858^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~515~^6.865^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~516~^2.108^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~517~^1.406^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~518~^1.679^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~606~^5.196^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~612~^0.092^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~613~^3.317^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~614~^1.561^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~617~^13.833^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~618~^15.964^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~619~^0.281^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~626~^0.111^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~628~^0.052^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~645~^14.010^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12170~^~646~^16.261^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~312~^1.488^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~315~^1.457^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~404~^1.587^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~405~^0.120^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~406~^5.644^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~410~^0.694^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~415~^0.149^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12171~^~501~^0.393^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~502~^0.745^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~503~^0.772^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~504~^1.375^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~505~^0.576^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~506~^0.593^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~507~^0.362^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~508~^0.951^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~509~^0.752^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~510~^1.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~511~^2.661^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~512~^0.528^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~513~^0.938^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~514~^1.666^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~515~^4.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~516~^1.229^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~517~^0.819^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~518~^0.979^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~606~^7.904^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~612~^0.141^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~613~^5.046^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~614~^2.374^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~617~^21.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~618~^24.285^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~619~^0.427^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~626~^0.169^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~628~^0.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~645~^21.313^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12171~^~646~^24.737^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~312~^0.686^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~315~^1.614^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~404~^0.190^3^0.045^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~405~^0.145^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~406~^3.550^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~410~^0.346^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~415~^0.089^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12174~^~501~^0.390^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~502~^1.112^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~503~^1.342^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~504~^2.149^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~505~^0.887^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~506~^0.834^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~507~^0.438^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~508~^2.031^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~509~^1.016^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~510~^1.556^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~511~^4.897^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~512~^0.775^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~513~^1.492^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~514~^2.764^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~515~^5.699^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~516~^1.663^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~517~^1.251^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~518~^1.508^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~606~^9.779^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~613~^5.413^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~614~^4.299^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~617~^7.317^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~618~^28.094^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~626~^0.090^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~645~^7.407^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12174~^~646~^28.094^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~312~^1.312^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~315~^3.711^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~404~^0.802^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~405~^0.380^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~406~^3.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~410~^0.481^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~415~^0.659^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12175~^~501~^0.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~502~^0.210^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~503~^0.258^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~504~^0.325^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~505~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~506~^0.126^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~507~^0.153^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~508~^0.205^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~509~^0.150^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~510~^0.312^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~511~^0.345^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~512~^0.131^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~513~^0.473^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~514~^1.106^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~515~^1.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~516~^0.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~517~^0.328^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~518~^0.257^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~606~^0.183^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~613~^0.169^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~614~^0.013^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~617~^0.624^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~618~^0.288^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~619~^0.031^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~626~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~628~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~645~^0.650^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12175~^~646~^0.322^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~312~^0.235^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~315~^0.809^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~404~^0.023^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~405~^0.000^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~406~^0.671^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~410~^0.161^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~415~^0.030^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12176~^~501~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~502~^0.059^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~503~^0.063^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~504~^0.119^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~505~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~506~^0.030^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~507~^0.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~508~^0.082^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~509~^0.050^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~510~^0.098^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~511~^0.264^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~512~^0.037^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~513~^0.082^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~514~^0.157^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~515~^0.368^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~516~^0.076^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~517~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~518~^0.083^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~606~^18.445^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~608~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~609~^1.457^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~610~^1.158^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~611~^9.228^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~612~^3.643^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~613~^1.763^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~614~^1.077^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~617~^0.885^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~618~^0.228^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~645~^0.885^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12176~^~646~^0.228^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~312~^0.807^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~315~^2.783^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~404~^0.061^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~405~^0.101^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~406~^0.611^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~410~^0.811^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~415~^0.304^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12177~^~501~^0.062^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~502~^0.193^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~503~^0.208^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~504~^0.393^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~505~^0.234^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~506~^0.099^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~507~^0.105^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~508~^0.269^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~509~^0.164^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~510~^0.321^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~511~^0.870^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~512~^0.122^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~513~^0.271^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~514~^0.518^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~515~^1.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~516~^0.251^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~517~^0.219^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~518~^0.274^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~606~^61.257^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~608~^0.393^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~609~^4.840^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~610~^3.846^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~611~^30.646^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~612~^12.100^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~613~^5.856^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~614~^3.577^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~617~^2.939^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~618~^0.756^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~645~^2.939^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12177~^~646~^0.756^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~312~^0.313^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~315~^2.475^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~404~^0.031^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~405~^0.020^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~406~^0.474^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~410~^0.722^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12179~^~415~^0.271^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12179~^~501~^0.034^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~502~^0.105^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~503~^0.113^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~504~^0.214^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~505~^0.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~506~^0.054^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~507~^0.057^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~508~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~509~^0.089^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~510~^0.175^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~511~^0.473^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~512~^0.066^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~513~^0.147^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~514~^0.282^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~515~^0.659^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~516~^0.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~517~^0.119^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~518~^0.149^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~606~^31.468^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~608~^0.202^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~609~^2.486^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~610~^1.976^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~611~^15.743^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~612~^6.216^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~613~^3.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~614~^1.838^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~617~^1.510^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~618~^0.388^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12179~^~645~^1.510^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12179~^~646~^0.388^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~312~^0.110^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~315~^1.512^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~404~^0.191^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~405~^0.423^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~406~^16.825^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~410~^0.997^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~415~^0.778^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12193~^~501~^0.266^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~502~^0.689^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~503~^0.650^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~504~^1.234^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~505~^0.806^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~506~^0.311^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~507~^0.245^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~508~^0.584^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~509~^0.419^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~510~^0.705^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~511~^0.799^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~512~^0.325^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~513~^0.685^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~514~^1.484^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~515~^1.770^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~516~^0.698^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~517~^0.673^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~518~^0.483^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~606~^0.902^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~613~^0.616^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~614~^0.132^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~617~^0.836^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~618~^0.572^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~619~^1.451^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~626~^0.035^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~628~^0.352^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~630~^0.264^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~645~^1.486^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12193~^~646~^2.023^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12195~^~312~^0.934^8^0.047^~1~^~A~^^^1^0.714^1.100^7^0.823^1.044^~4~^~02/01/2010~ -~12195~^~315~^2.131^8^0.155^~1~^~A~^^^1^1.420^2.490^7^1.765^2.497^~4~^~02/01/2010~ -~12195~^~404~^0.041^8^0.006^~1~^~A~^^^1^0.022^0.060^7^0.027^0.054^~1, 4~^~05/01/2010~ -~12195~^~405~^0.939^8^0.118^~1~^~A~^^^1^0.450^1.390^7^0.660^1.217^~4~^~02/01/2010~ -~12195~^~406~^3.155^8^0.101^~1~^~A~^^^1^2.800^3.560^7^2.916^3.394^~4~^~02/01/2010~ -~12195~^~410~^0.318^8^0.018^~1~^~A~^^^1^0.230^0.380^7^0.274^0.361^~4~^~02/01/2010~ -~12195~^~415~^0.103^8^0.007^~1~^~A~^^^1^0.080^0.128^7^0.087^0.118^~4~^~02/01/2010~ -~12195~^~501~^0.159^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~502~^0.555^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~503~^0.813^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~504~^1.483^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~505~^0.612^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~506~^0.122^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~507~^0.242^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~508~^1.149^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~509~^0.595^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~510~^0.937^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~511~^2.382^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~513~^0.990^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~514~^2.397^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~515~^5.912^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~516~^1.472^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~517~^0.915^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~518~^0.926^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12195~^~606~^4.152^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~612~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2010~ -~12195~^~613~^3.192^8^0.037^~1~^~A~^^^1^3.011^3.354^7^3.105^3.280^~4~^~08/01/2010~ -~12195~^~614~^0.938^8^0.057^~1~^~A~^^^1^0.728^1.225^7^0.804^1.072^~4~^~08/01/2010~ -~12195~^~615~^0.007^8^0.007^~1~^~A~^^^1^0.000^0.058^7^-0.010^0.024^~1, 4~^~08/01/2010~ -~12195~^~617~^32.143^8^0.525^~1~^~A~^^^1^28.901^33.782^7^30.902^33.385^~4~^~08/01/2010~ -~12195~^~618~^13.605^8^0.762^~1~^~A~^^^1^8.964^15.786^7^11.804^15.407^~4~^~08/01/2010~ -~12195~^~619~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2010~ -~12195~^~620~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~626~^0.248^8^0.009^~1~^~A~^^^1^0.200^0.286^7^0.227^0.269^~4~^~08/01/2010~ -~12195~^~628~^0.019^8^0.008^~1~^~A~^^^1^0.007^0.058^7^0.001^0.036^~1, 4~^~08/01/2010~ -~12195~^~645~^32.445^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~646~^13.613^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12195~^~652~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~653~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2010~ -~12195~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~687~^0.035^8^0.000^~1~^~A~^^^1^0.035^0.035^7^0.035^0.035^~1, 4~^~08/01/2010~ -~12195~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12195~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~02/01/2010~ -~12198~^~312~^1.618^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~315~^1.457^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~404~^1.283^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~405~^0.510^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~406~^5.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~410~^0.694^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~415~^0.149^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12198~^~501~^0.390^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~502~^0.739^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~503~^0.766^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~504~^1.364^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~505~^0.571^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~506~^0.588^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~507~^0.360^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~508~^0.944^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~509~^0.746^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~510~^0.995^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~511~^2.641^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~512~^0.524^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~513~^0.931^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~514~^1.653^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~515~^3.972^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~516~^1.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~517~^0.813^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~518~^0.971^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~606~^6.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~612~^0.120^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~613~^4.292^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~614~^2.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~617~^17.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~618~^20.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~619~^0.363^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~626~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~628~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~645~^18.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12198~^~646~^21.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~312~^0.181^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~315~^6.949^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~404~^0.400^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~405~^0.300^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~406~^1.500^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~410~^0.312^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~415~^0.348^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12200~^~501~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~502~^0.552^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~503~^0.552^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~504~^0.972^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~505~^0.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~506~^0.274^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~507~^0.226^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~508~^0.586^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~509~^0.486^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~510~^0.712^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~511~^0.981^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~512~^0.380^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~513~^0.753^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~514~^1.194^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~515~^2.433^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~516~^0.699^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~517~^0.857^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~518~^0.674^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~606~^9.370^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~612~^0.093^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~613~^6.360^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~614~^2.948^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~617~^25.416^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~618~^22.448^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~619~^1.777^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~626~^0.248^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~645~^25.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12200~^~646~^24.284^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12201~^~312~^1.400^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~315~^1.440^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~404~^0.699^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~406~^5.800^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~410~^0.290^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~415~^0.400^3^0.080^~1~^~A~^^^2^0.320^0.480^1^-0.617^1.417^~2~^~02/01/2005~ -~12201~^~501~^0.330^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~502~^0.730^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~503~^0.750^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~504~^1.500^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~505~^0.650^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~506~^0.880^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~507~^0.440^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~508~^0.940^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~509~^0.790^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~510~^0.980^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~511~^3.250^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~513~^0.990^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~514~^2.070^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~515~^4.600^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~516~^1.090^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~517~^1.040^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~518~^1.200^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~12201~^~606~^9.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~12201~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~12201~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~12201~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~12201~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~12201~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~12201~^~612~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12201~^~613~^5.273^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~614~^3.311^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~615~^0.347^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~617~^23.595^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~618~^25.227^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~619~^0.263^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~12201~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~12201~^~624~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~626~^0.105^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~12201~^~628~^0.124^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~12201~^~630~^0.065^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~12201~^~645~^23.924^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~12201~^~646~^25.491^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~12201~^~654~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12201~^~671~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~12201~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12201~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~12201~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~12202~^~312~^0.562^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~315~^1.591^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~404~^0.344^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~405~^0.163^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~406~^1.500^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~410~^0.206^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~415~^0.283^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12202~^~501~^0.032^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~502~^0.090^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~503~^0.111^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~504~^0.139^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~505~^0.147^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~506~^0.054^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~507~^0.065^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~508~^0.088^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~509~^0.064^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~510~^0.134^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~511~^0.148^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~512~^0.056^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~513~^0.203^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~514~^0.474^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~515~^0.429^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~516~^0.114^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~517~^0.141^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~518~^0.110^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~606~^0.078^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~613~^0.072^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~614~^0.005^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~617~^0.268^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~618~^0.123^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~619~^0.013^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~626~^0.004^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~628~^0.005^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~645~^0.278^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12202~^~646~^0.138^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~312~^0.204^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~315~^0.576^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~404~^0.125^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~405~^0.059^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~406~^0.543^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~410~^0.075^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~415~^0.102^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12203~^~501~^0.012^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~502~^0.033^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~503~^0.040^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~504~^0.051^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~505~^0.053^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~506~^0.020^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~507~^0.024^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~508~^0.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~509~^0.023^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~510~^0.049^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~511~^0.054^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~512~^0.020^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~513~^0.073^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~514~^0.172^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~515~^0.156^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~516~^0.041^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~517~^0.051^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~518~^0.040^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~606~^0.028^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~613~^0.026^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~614~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~617~^0.097^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~618~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~619~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~626~^0.001^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~628~^0.002^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~645~^0.101^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12203~^~646~^0.050^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~312~^0.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~315~^2.065^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~404~^0.450^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~406~^0.700^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~410~^0.466^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~415~^0.418^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12204~^~501~^0.043^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~502~^0.119^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~503~^0.146^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~504~^0.184^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~505~^0.193^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~506~^0.071^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~507~^0.086^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~508~^0.116^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~509~^0.085^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~510~^0.176^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~511~^0.195^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~512~^0.074^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~513~^0.267^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~514~^0.625^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~515~^0.566^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~516~^0.151^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~517~^0.185^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~518~^0.145^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~606~^0.118^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~613~^0.109^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~614~^0.008^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~617~^0.402^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~618~^0.186^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~619~^0.020^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~626~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~628~^0.007^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~645~^0.419^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12204~^~646~^0.207^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~312~^0.094^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~315~^0.621^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~404~^0.171^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~405~^0.040^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~406~^0.429^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~410~^0.228^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~415~^0.168^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12205~^~501~^0.059^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~502~^0.200^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~503~^0.205^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~504~^0.326^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~505~^0.264^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~506~^0.072^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~507~^0.054^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~508~^0.206^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~509~^0.100^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~510~^0.266^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~511~^0.338^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~512~^0.115^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~513~^0.239^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~514~^0.505^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~515~^0.957^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~516~^0.221^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~517~^0.344^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~518~^0.252^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~606~^0.088^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~612~^0.001^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~613~^0.077^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~617~^0.062^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~618~^0.285^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~619~^0.027^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~628~^0.012^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~630~^0.031^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~645~^0.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12205~^~646~^0.312^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~312~^0.970^3^0.085^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~315~^2.003^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~404~^0.114^3^0.007^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~405~^0.953^3^0.034^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~406~^2.819^3^0.134^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~410~^0.258^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~415~^0.085^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~501~^0.281^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~502~^0.575^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~503~^0.677^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~504~^1.210^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~505~^0.519^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~506~^0.179^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~507~^0.281^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~508~^0.870^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~509~^0.551^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~510~^0.803^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~511~^1.946^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~512~^0.435^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~513~^0.736^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~514~^1.831^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~515~^4.629^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~516~^0.964^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~517~^0.978^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~518~^0.701^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~606~^4.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~611~^0.005^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~612~^0.287^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~613~^3.329^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~614~^0.984^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~617~^32.061^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~618~^10.112^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~619~^0.360^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~626~^0.293^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~628~^0.048^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~645~^32.402^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12206~^~646~^10.472^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12220~^~312~^1.220^7^0.075^~1~^~A~^^^3^1.070^1.520^2^0.897^1.542^~2~^~03/01/2005~ -~12220~^~315~^2.482^7^0.186^~1~^~A~^^^3^1.640^3.080^2^1.679^3.284^~2~^~03/01/2005~ -~12220~^~404~^1.644^3^1.111^~1~^~A~^^^2^0.533^3.200^1^-12.472^15.760^~2~^~03/01/2005~ -~12220~^~405~^0.161^3^0.071^~1~^~A~^^^2^0.070^0.232^1^-0.741^1.063^~2~^~03/01/2005~ -~12220~^~406~^3.080^3^0.130^~1~^~A~^^^2^2.700^3.210^1^1.428^4.732^~2~^~03/01/2005~ -~12220~^~410~^0.985^3^0.415^~1~^~A~^^^2^0.570^1.400^1^-4.287^6.257^~2~^~03/01/2005~ -~12220~^~415~^0.473^3^0.138^~1~^~A~^^^2^0.300^0.610^1^-1.275^2.220^~2~^~03/01/2005~ -~12220~^~501~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~502~^0.766^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~503~^0.896^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~504~^1.235^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~505~^0.862^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~506~^0.370^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~507~^0.340^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~508~^0.957^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~509~^0.493^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~510~^1.072^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~511~^1.925^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~512~^0.472^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~513~^0.925^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~514~^2.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~515~^4.039^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~516~^1.248^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~517~^0.806^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~518~^0.970^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~521~^0.175^2^^~1~^~A~^^^1^0.130^0.220^1^^^^~03/01/2005~ -~12220~^~606~^3.663^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~12220~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~12220~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~12220~^~612~^0.008^3^0.008^~1~^~A~^^^2^0.000^0.016^1^-0.093^0.109^~1, 2~^~03/01/2005~ -~12220~^~613~^2.165^7^0.191^~1~^~A~^^^3^1.666^2.577^2^1.344^2.986^~2~^~03/01/2005~ -~12220~^~614~^1.330^7^0.064^~1~^~A~^^^3^1.118^1.710^2^1.056^1.604^~2~^~03/01/2005~ -~12220~^~615~^0.052^3^0.005^~1~^~A~^^^2^0.043^0.057^1^-0.018^0.121^~2~^~03/01/2005~ -~12220~^~617~^7.359^7^0.132^~6~^~JA~^^^3^6.863^7.909^2^6.791^7.926^~2~^~03/01/2005~ -~12220~^~618~^5.903^7^0.341^~6~^~JA~^^^3^5.173^6.666^2^4.437^7.369^~2~^~03/01/2005~ -~12220~^~619~^22.813^7^1.439^~6~^~JA~^^^3^18.701^26.225^2^16.623^29.003^~2~^~03/01/2005~ -~12220~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~624~^0.052^3^0.011^~1~^~A~^^^2^0.040^0.064^1^-0.093^0.198^~2~^~03/01/2005~ -~12220~^~626~^0.024^3^0.006^~1~^~A~^^^2^0.018^0.031^1^-0.051^0.098^~2~^~03/01/2005~ -~12220~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~628~^0.067^3^0.016^~1~^~A~^^^2^0.051^0.083^1^-0.131^0.264^~2~^~03/01/2005~ -~12220~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~630~^0.013^3^0.013^~1~^~A~^^^2^0.000^0.027^1^-0.157^0.184^~1, 2~^~03/01/2005~ -~12220~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2005~ -~12220~^~645~^7.527^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~646~^28.730^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12220~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~653~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~12220~^~654~^0.031^3^0.001^~1~^~A~^^^2^0.031^0.032^1^0.025^0.038^~2~^~03/01/2005~ -~12220~^~671~^0.064^3^0.056^~1~^~A~^^^2^0.009^0.121^1^-0.643^0.772^~2~^~03/01/2005~ -~12220~^~672~^0.007^3^0.007^~1~^~A~^^^2^0.000^0.015^1^-0.087^0.102^~1, 2~^~03/01/2005~ -~12516~^~312~^1.275^2^^~1~^~A~^^^2^1.210^1.340^^^^^~04/01/2009~ -~12516~^~315~^4.490^2^^~1~^~A~^^^2^4.270^4.710^^^^^~04/01/2009~ -~12516~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~406~^4.430^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~410~^0.570^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~501~^0.569^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~502~^0.985^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~503~^1.265^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~504~^2.388^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~505~^1.220^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~506~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~507~^0.327^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~508~^1.711^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~509~^1.079^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~510~^1.559^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~511~^5.284^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~512~^0.770^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~513~^1.466^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~514~^2.922^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~515~^6.108^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~516~^1.819^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~517~^1.299^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~518~^1.652^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~605~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~606~^8.544^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~608~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~612~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~613~^5.191^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~614~^2.913^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~615~^0.216^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~617~^15.626^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~618~^19.590^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~619~^0.111^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~620~^0.123^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~624~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~626~^0.044^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~628~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~645~^15.734^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~646~^19.856^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~653~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~654~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~663~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~664~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~665~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~674~^15.611^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~675~^19.559^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~12516~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~12516~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~851~^0.111^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12516~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~12516~^~858~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~12529~^~312~^1.457^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~315~^1.427^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~404~^1.205^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~405~^0.466^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~406~^5.438^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~410~^0.680^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~415~^0.146^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12529~^~501~^0.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~502~^0.704^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~503~^0.730^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~504~^1.299^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~505~^0.544^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~506~^0.560^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~507~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~508~^0.899^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~509~^0.710^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~510~^0.947^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~511~^2.515^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~512~^0.499^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~513~^0.886^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~514~^1.574^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~515~^3.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~516~^1.162^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~517~^0.774^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~518~^0.925^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~606~^6.722^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~612~^0.120^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~613~^4.292^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~614~^2.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~617~^17.897^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~618~^20.654^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~619~^0.363^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~626~^0.144^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~628~^0.067^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12529~^~645~^18.127^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12529~^~646~^21.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12536~^~312~^1.830^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~315~^2.110^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~404~^0.106^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~405~^0.246^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~406~^7.042^1^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~410~^7.042^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~415~^0.804^0^^~4~^^^^^^^^^^^~05/01/2014~ -~12536~^~501~^0.295^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~502~^0.788^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~503~^0.967^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~504~^1.408^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~505~^0.795^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~506~^0.420^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~507~^0.383^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~508~^0.992^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~509~^0.565^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~510~^1.116^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~511~^2.039^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~512~^0.536^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~513~^0.948^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~514~^2.076^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~515~^4.735^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~516~^1.240^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~517~^1.003^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~518~^0.912^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~606~^5.219^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~612~^0.051^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~613~^2.808^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~614~^2.212^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~617~^9.399^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~618~^32.782^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~619~^0.069^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~626~^0.049^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~628~^0.048^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~645~^9.505^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12536~^~646~^32.884^0^^~1~^^^^^^^^^^^~05/01/2014~ -~12537~^~312~^1.830^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~315~^2.110^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~404~^0.106^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~405~^0.246^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~406~^7.042^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~410~^7.042^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12537~^~415~^0.804^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12537~^~501~^0.295^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~502~^0.788^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~503~^0.967^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~504~^1.408^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~505~^0.795^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~506~^0.420^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~507~^0.383^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~508~^0.992^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~509~^0.565^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~510~^1.116^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~511~^2.039^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~512~^0.536^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~513~^0.948^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~514~^2.076^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~515~^4.735^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~516~^1.240^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~517~^1.003^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~518~^0.912^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~606~^5.219^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~612~^0.051^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~613~^2.808^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~614~^2.212^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~617~^9.399^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~618~^32.782^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~619~^0.069^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~626~^0.049^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~628~^0.048^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12537~^~645~^9.505^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12537~^~646~^32.884^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~312~^1.804^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~315~^2.080^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~404~^0.320^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~405~^0.280^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~406~^4.130^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12538~^~410~^6.942^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12538~^~415~^0.792^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12538~^~501~^0.306^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~502~^0.817^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~503~^1.003^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~504~^1.461^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~505~^0.825^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~506~^0.435^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~507~^0.397^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~508~^1.029^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~509~^0.587^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~510~^1.158^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~511~^2.116^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~512~^0.556^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~513~^0.984^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~514~^2.153^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~515~^4.912^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~516~^1.286^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~517~^1.040^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~518~^0.947^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2004~ -~12538~^~605~^0.158^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12538~^~606~^7.068^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~612~^0.086^2^^~1~^~A~^^^2^0.066^0.145^^^^^~03/01/2004~ -~12538~^~613~^4.218^2^^~1~^~A~^^^2^3.907^5.150^^^^^~03/01/2004~ -~12538~^~614~^2.097^2^^~1~^~A~^^^2^2.096^2.099^^^^^~03/01/2004~ -~12538~^~615~^0.146^2^^~1~^~A~^^^2^0.145^0.147^^^^^~03/01/2004~ -~12538~^~617~^7.925^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12538~^~618~^34.208^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12538~^~619~^0.081^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12538~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~624~^0.380^2^^~1~^~A~^^^2^0.376^0.393^^^^^~03/01/2004~ -~12538~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~626~^0.058^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~12538~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12538~^~628~^0.077^2^^~1~^~A~^^^2^0.049^0.086^^^^^~03/01/2004~ -~12538~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12538~^~645~^8.063^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~646~^34.294^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~12538~^~652~^0.006^2^^~1~^~A~^^^2^0.000^0.009^^^^~1~^~03/01/2004~ -~12538~^~653~^0.022^2^^~1~^~A~^^^2^0.000^0.030^^^^~1~^~03/01/2004~ -~12538~^~654~^0.112^2^^~1~^~A~^^^2^0.099^0.117^^^^^~03/01/2004~ -~12538~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~663~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~665~^0.084^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~672~^0.005^2^^~1~^~A~^^^2^0.000^0.007^^^^~1~^~03/01/2004~ -~12538~^~673~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~674~^7.859^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~675~^34.124^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~685~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12538~^~687~^0.003^2^^~1~^~A~^^^2^0.000^0.004^^^^~1~^~03/01/2004~ -~12538~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~693~^0.074^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12538~^~695~^0.084^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~12538~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~12538~^~851~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~12539~^~312~^1.834^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~315~^2.114^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~404~^0.325^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~405~^0.285^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~406~^4.198^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~410~^7.056^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~415~^0.805^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12539~^~501~^0.263^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~502~^0.702^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~503~^0.861^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~504~^1.254^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~505~^0.708^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~506~^0.374^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~507~^0.341^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~508~^0.883^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~509~^0.503^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~510~^0.994^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~511~^1.816^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~512~^0.477^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~513~^0.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~514~^1.848^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~515~^4.216^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~516~^1.104^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~517~^0.893^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~518~^0.812^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~606~^5.953^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~612~^0.058^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~613~^3.202^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~614~^2.522^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~617~^10.720^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~618~^37.390^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~619~^0.079^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~626~^0.056^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~628~^0.055^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~645~^10.841^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12539~^~646~^37.507^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12540~^~312~^1.597^3^0.048^~1~^~A~^^^1^1.530^1.690^2^1.390^1.804^~2, 3~^~02/01/2010~ -~12540~^~315~^2.073^3^0.043^~1~^~A~^^^1^2.000^2.150^2^1.887^2.260^~2, 3~^~02/01/2010~ -~12540~^~404~^0.053^3^0.007^~1~^~A~^^^1^0.040^0.060^2^0.025^0.082^~2, 3~^~02/01/2010~ -~12540~^~405~^0.163^3^0.007^~1~^~A~^^^1^0.150^0.170^2^0.135^0.192^~2, 3~^~02/01/2010~ -~12540~^~406~^6.747^3^0.133^~1~^~A~^^^1^6.530^6.990^2^6.172^7.321^~2, 3~^~02/01/2010~ -~12540~^~410~^1.167^3^0.033^~1~^~A~^^^1^1.100^1.200^2^1.023^1.310^~2, 3~^~02/01/2010~ -~12540~^~415~^0.550^3^0.021^~1~^~A~^^^1^0.520^0.590^2^0.460^0.640^~2, 3~^~02/01/2010~ -~12540~^~501~^0.285^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~502~^0.723^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~503~^0.842^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~504~^1.315^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~505~^0.532^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~506~^0.435^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~508~^0.942^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~509~^0.435^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~510~^1.002^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~511~^1.753^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~512~^0.492^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~513~^0.865^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~514~^1.848^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~515~^4.273^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~516~^1.123^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~517~^0.878^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~518~^0.857^0^^~1~^~A~^^^^^^^^^^~02/01/2010~ -~12540~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~606~^4.678^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~607~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~02/01/2010~ -~12540~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2010~ -~12540~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~02/01/2010~ -~12540~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~612~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~02/01/2010~ -~12540~^~613~^1.890^3^0.030^~1~^~A~^^^1^1.860^1.950^2^1.761^2.019^~2, 3~^~02/01/2010~ -~12540~^~614~^2.030^3^0.285^~1~^~A~^^^1^1.730^2.600^2^0.803^3.257^~2, 3~^~02/01/2010~ -~12540~^~615~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~02/01/2010~ -~12540~^~617~^38.853^3^0.283^~1~^~AS~^^^1^38.490^39.410^2^37.637^40.069^~2, 3~^~02/01/2010~ -~12540~^~618~^9.736^3^0.247^~1~^~AS~^^^1^9.363^10.202^2^8.675^10.797^~2, 3~^~02/01/2010~ -~12540~^~619~^0.050^3^0.000^~1~^~AS~^^^1^0.050^0.050^^^^~2, 3~^~02/01/2010~ -~12540~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~02/01/2010~ -~12540~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~624~^0.437^3^0.003^~1~^~A~^^^1^0.430^0.440^2^0.422^0.451^~2, 3~^~02/01/2010~ -~12540~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~02/01/2010~ -~12540~^~626~^0.020^3^0.000^~1~^~AS~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~02/01/2010~ -~12540~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~628~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~02/01/2010~ -~12540~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~02/01/2010~ -~12540~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~645~^39.025^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~646~^9.805^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~02/01/2010~ -~12540~^~653~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~02/01/2010~ -~12540~^~654~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~02/01/2010~ -~12540~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2010~ -~12540~^~663~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~02/01/2010~ -~12540~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~665~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~02/01/2010~ -~12540~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~02/01/2010~ -~12540~^~671~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~02/01/2010~ -~12540~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~673~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~02/01/2010~ -~12540~^~674~^38.837^3^0.282^~1~^~A~^^^1^38.470^39.390^2^37.625^40.048^~2, 3~^~02/01/2010~ -~12540~^~675~^9.723^3^0.247^~1~^~A~^^^1^9.350^10.190^2^8.661^10.786^~2, 3~^~02/01/2010~ -~12540~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~02/01/2010~ -~12540~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~689~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~02/01/2010~ -~12540~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~ -~12540~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2010~ -~12540~^~851~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~02/01/2010~ -~12540~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~02/01/2010~ -~12540~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~02/01/2010~ -~12540~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~02/01/2010~ -~12563~^~312~^1.099^19^0.018^~1~^~A~^^^3^0.850^1.420^2^1.023^1.174^~2~^~04/01/2013~ -~12563~^~315~^2.232^21^0.184^~1~^~A~^^^3^1.340^2.700^2^1.440^3.025^~2~^~04/01/2013~ -~12563~^~404~^0.077^13^0.009^~1~^~A~^^^3^0.050^0.120^2^0.039^0.115^~2~^~04/01/2013~ -~12563~^~405~^1.197^17^0.239^~1~^~A~^^^3^0.620^1.970^2^0.167^2.226^~2~^~04/01/2013~ -~12563~^~406~^3.637^17^0.200^~1~^~A~^^^3^1.410^4.690^2^2.777^4.497^~2~^~04/01/2013~ -~12563~^~410~^0.321^16^0.059^~1~^~A~^^^3^0.200^0.640^2^0.068^0.575^~2~^~04/01/2013~ -~12563~^~415~^0.136^9^0.009^~1~^~A~^^^3^0.096^0.230^2^0.098^0.174^~2~^~04/01/2013~ -~12563~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~502~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~503~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~504~^1.461^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~505~^0.563^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~506~^0.155^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~507~^0.214^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~508~^1.122^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~509~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~510~^0.848^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~511~^2.444^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12563~^~512~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~513~^0.991^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12563~^~514~^2.616^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~515~^6.153^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~516~^1.417^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~517~^0.961^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~518~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~12563~^~521~^0.040^3^0.006^~1~^~A~^^^1^0.030^0.050^2^0.015^0.065^~4~^~04/01/2013~ -~12563~^~605~^0.007^18^0.003^~1~^~A~^^^2^0.000^0.050^1^-0.025^0.039^~1, 2~^~04/01/2013~ -~12563~^~606~^4.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~04/01/2013~ -~12563~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~04/01/2013~ -~12563~^~609~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~610~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~611~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~612~^0.019^12^0.019^~1~^~A~^^^2^0.000^0.280^1^-0.221^0.259^~1, 2~^~04/01/2013~ -~12563~^~613~^3.348^20^0.036^~1~^~A~^^^3^3.050^3.750^2^3.193^3.504^~2~^~04/01/2013~ -~12563~^~614~^0.704^20^0.033^~1~^~A~^^^3^0.589^0.939^2^0.563^0.846^~2~^~04/01/2013~ -~12563~^~615~^0.008^12^0.008^~1~^~A~^^^2^0.000^0.030^1^-0.098^0.114^~1, 2~^~04/01/2013~ -~12563~^~617~^32.754^20^1.066^~6~^~JA~^^^3^28.500^39.340^2^28.168^37.340^~2~^~04/01/2013~ -~12563~^~618~^12.945^20^0.135^~6~^~JA~^^^3^11.300^14.690^2^12.363^13.527^~2~^~04/01/2013~ -~12563~^~619~^0.010^19^0.005^~6~^~JA~^^^3^0.000^0.030^2^-0.013^0.033^~1, 2~^~04/01/2013~ -~12563~^~620~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12563~^~624~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~625~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~626~^0.259^20^0.006^~1~^~A~^^^3^0.200^0.310^2^0.232^0.286^~2~^~04/01/2013~ -~12563~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12563~^~628~^0.007^12^0.007^~1~^~A~^^^2^0.000^0.030^1^-0.085^0.099^~1, 2~^~04/01/2013~ -~12563~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12563~^~630~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12563~^~645~^33.076^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~646~^12.955^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~12563~^~652~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~653~^0.012^18^0.006^~1~^~A~^^^3^0.000^0.030^2^-0.015^0.040^~1, 2~^~04/01/2013~ -~12563~^~654~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~663~^0.005^9^0.006^~1~^~A~^^^1^0.000^0.050^8^-0.007^0.018^~1, 4~^~04/01/2013~ -~12563~^~665~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^8^0.000^0.000^~1, 4~^~04/01/2013~ -~12563~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12563~^~672~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~674~^32.748^6^1.494^~1~^~A~^^^1^28.500^39.290^5^29.953^37.634^~4~^~04/01/2013~ -~12563~^~675~^12.945^9^0.399^~1~^~A~^^^1^11.300^14.690^8^11.943^13.784^~4~^~04/01/2013~ -~12563~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^8^0.000^0.000^~1, 4~^~04/01/2013~ -~12563~^~687~^0.057^6^0.001^~1~^~A~^^^1^0.051^0.060^5^0.053^0.060^~4~^~05/01/2010~ -~12563~^~689~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~01/01/2001~ -~12563~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12563~^~697~^0.000^16^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12563~^~851~^0.006^8^0.004^~1~^~A~^^^1^0.000^0.020^7^0.001^0.019^~1, 4~^~04/01/2013~ -~12563~^~856~^0.005^5^0.002^~1~^~A~^^^1^0.000^0.010^4^0.002^0.014^~1, 4~^~04/01/2013~ -~12565~^~312~^0.955^3^0.118^~1~^~A~^^^1^0.900^1.200^2^0.448^1.462^~4~^~01/01/2001~ -~12565~^~315~^2.460^3^0.118^~1~^~A~^^^1^2.400^2.700^2^1.953^2.967^~4~^~01/01/2001~ -~12565~^~404~^0.092^3^0.009^~1~^~A~^^^1^0.089^0.110^2^0.054^0.131^~4~^~01/01/2001~ -~12565~^~405~^0.781^3^0.061^~1~^~A~^^^1^0.650^0.800^2^0.517^1.044^~4~^~01/01/2001~ -~12565~^~406~^3.665^3^0.118^~1~^~A~^^^1^3.600^3.900^2^3.158^4.172^~4~^~01/01/2001~ -~12565~^~410~^0.229^3^0.004^~1~^~A~^^^1^0.220^0.230^2^0.210^0.248^~4~^~01/01/2001~ -~12565~^~415~^0.118^3^0.013^~1~^~A~^^^1^0.110^0.140^2^0.060^0.175^~4~^~01/01/2001~ -~12565~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~502~^0.677^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~503~^0.691^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~504~^1.467^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~505~^0.600^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~507~^0.282^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~509~^0.529^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~510~^0.798^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~511~^2.463^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~512~^0.592^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~513~^0.999^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~514~^2.729^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~515~^5.165^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~516~^1.466^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~517~^0.967^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~518~^1.004^0^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~12565~^~606~^4.208^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12565~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12565~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~613~^3.303^3^0.079^~1~^~A~^^^1^3.264^3.453^2^2.964^3.642^~4~^~01/01/2001~ -~12565~^~614~^0.905^3^0.100^~1~^~A~^^^1^0.706^0.960^2^0.475^1.334^~4~^~01/01/2001~ -~12565~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~617~^34.578^3^0.892^~1~^~A~^^^1^32.732^35.021^2^30.739^38.416^~4~^~01/01/2001~ -~12565~^~618~^13.519^3^1.034^~1~^~A~^^^1^12.403^15.074^2^9.069^17.969^~4~^~01/01/2001~ -~12565~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~626~^0.215^3^0.025^~1~^~A~^^^1^0.201^0.261^2^0.108^0.322^~4~^~01/01/2001~ -~12565~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/1995~ -~12565~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~645~^34.793^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~646~^13.519^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~12565~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12565~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12567~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12567~^~606~^3.571^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~12585~^~312~^2.220^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~315~^0.826^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12585~^~404~^0.200^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~405~^0.200^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~406~^1.400^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~410~^1.217^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~415~^0.256^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~501~^0.237^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~502~^0.592^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~503~^0.731^9^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~504~^1.285^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~505~^0.817^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~506~^0.274^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~507~^0.283^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~508~^0.791^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~509~^0.491^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~510~^1.040^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~511~^1.741^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~512~^0.399^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~513~^0.702^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~514~^1.505^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~515~^3.624^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~516~^0.803^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~517~^0.690^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~518~^0.849^10^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~606~^9.157^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~609~^0.132^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~610~^0.132^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~611~^0.784^2^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~612~^0.347^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~613~^4.351^20^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~614~^2.972^20^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~617~^26.808^21^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~618~^7.660^22^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~619~^0.161^8^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~626~^0.318^13^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~628~^0.139^4^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12585~^~645~^27.317^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12585~^~646~^7.836^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12586~^~312~^2.043^8^0.098^~1~^~A~^^^3^1.930^2.390^2^1.620^2.465^~2~^~04/01/2002~ -~12586~^~315~^1.668^8^0.097^~1~^~A~^^^3^1.530^1.960^2^1.251^2.085^~2~^~04/01/2002~ -~12586~^~404~^0.363^8^0.043^~1~^~A~^^^3^0.246^0.443^2^0.180^0.547^~2~^~04/01/2002~ -~12586~^~405~^0.218^8^0.014^~1~^~A~^^^3^0.131^0.324^2^0.157^0.278^~2~^~04/01/2002~ -~12586~^~406~^1.736^8^0.429^~1~^~A~^^^3^1.035^2.580^2^-0.111^3.583^~2~^~04/01/2002~ -~12586~^~410~^0.880^2^^~1~^~A~^^^2^0.740^1.020^^^^^~04/01/2002~ -~12586~^~415~^0.323^8^0.091^~1~^~A~^^^3^0.151^0.482^2^-0.069^0.716^~2~^~04/01/2002~ -~12586~^~501~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~502~^0.636^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~503~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~504~^1.361^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~505~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~506~^0.334^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~507~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~508~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~509~^0.469^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~510~^1.011^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~511~^1.963^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~512~^0.421^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~513~^0.774^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~514~^1.659^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~515~^4.165^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~516~^0.866^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~517~^0.751^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~518~^0.997^0^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~606~^8.478^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12586~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12586~^~609~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12586~^~610~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12586~^~611~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12586~^~612~^0.016^2^^~1~^~A~^^^2^0.007^0.025^^^^~1~^~04/01/2002~ -~12586~^~613~^4.265^2^^~1~^~A~^^^2^3.510^5.021^^^^^~04/01/2002~ -~12586~^~614~^3.511^2^^~1~^~A~^^^2^2.850^4.171^^^^^~04/01/2002~ -~12586~^~615~^0.290^2^^~1~^~A~^^^2^0.240^0.340^^^^^~04/01/2002~ -~12586~^~617~^25.624^2^^~1~^~A~^^^2^21.300^29.949^^^^^~04/01/2002~ -~12586~^~618~^8.478^2^^~1~^~A~^^^2^6.950^10.005^^^^^~04/01/2002~ -~12586~^~619~^0.068^2^^~1~^~A~^^^2^0.060^0.076^^^^^~04/01/2002~ -~12586~^~620~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12586~^~624~^0.188^2^^~1~^~A~^^^2^0.170^0.206^^^^^~04/01/2002~ -~12586~^~625~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~626~^0.149^2^^~1~^~A~^^^2^0.120^0.177^^^^^~04/01/2002~ -~12586~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12586~^~628~^0.150^2^^~1~^~A~^^^2^0.130^0.170^^^^^~04/01/2002~ -~12586~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12586~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12586~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2002~ -~12586~^~645~^25.923^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~646~^8.546^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~12586~^~652~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~653~^0.051^2^^~1~^~A~^^^2^0.040^0.061^^^^^~04/01/2002~ -~12586~^~654~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2002~ -~12586~^~672~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~687~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~689~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12586~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2002~ -~12588~^~312~^1.758^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~404~^0.158^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~405~^0.159^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~406~^1.108^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~415~^0.203^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~501~^0.162^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~502~^0.388^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~503~^0.445^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~504~^0.831^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~505~^0.523^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~506~^0.204^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~507~^0.222^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~508~^0.537^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~509~^0.286^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~510~^0.617^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~511~^1.198^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~512~^0.257^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~513~^0.472^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~514~^1.013^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~515~^2.542^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~516~^0.529^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~517~^0.458^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~518~^0.609^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~12588~^~606~^10.606^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~609~^0.116^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~610~^0.116^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~611~^0.687^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~612~^0.333^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~613~^5.197^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~614~^3.784^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~617~^26.303^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~618~^13.200^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~619~^0.159^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~626~^0.254^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~628~^0.111^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~645~^26.709^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12588~^~646~^13.371^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~12632~^~312~^0.570^4^0.226^~1~^~A~^^^1^0.345^1.260^3^-0.150^1.290^~4~^~12/01/2000~ -~12632~^~315~^3.036^4^1.563^~1~^~A~^^^1^1.740^8.160^3^-1.938^8.010^~4~^~12/01/2000~ -~12632~^~404~^0.710^4^0.000^~1~^~A~^^^1^0.710^0.710^3^0.710^0.710^~4~^~12/01/2000~ -~12632~^~405~^0.087^4^0.003^~1~^~A~^^^1^0.083^0.095^3^0.077^0.096^~4~^~12/01/2000~ -~12632~^~406~^2.274^4^0.151^~1~^~A~^^^1^1.836^2.529^3^1.794^2.754^~4~^~12/01/2000~ -~12632~^~410~^0.603^4^0.018^~1~^~A~^^^1^0.566^0.638^3^0.546^0.659^~4~^~12/01/2000~ -~12632~^~415~^0.359^4^0.025^~1~^~A~^^^1^0.304^0.415^3^0.280^0.438^~4~^~12/01/2000~ -~12632~^~606~^11.947^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12632~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~ -~12632~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~611~^0.075^4^0.008^~1~^~A~^^^1^0.056^0.088^3^0.050^0.100^~4~^~12/01/2000~ -~12632~^~612~^0.668^4^0.067^~1~^~A~^^^1^0.508^0.764^3^0.456^0.880^~4~^~12/01/2000~ -~12632~^~613~^5.932^4^0.070^~1~^~A~^^^1^5.764^6.047^3^5.709^6.156^~4~^~12/01/2000~ -~12632~^~614~^2.280^4^0.178^~1~^~A~^^^1^1.949^2.771^3^1.712^2.847^~4~^~12/01/2000~ -~12632~^~615~^1.944^4^0.063^~1~^~A~^^^1^1.843^2.131^3^1.744^2.144^~4~^~12/01/2000~ -~12632~^~617~^44.377^4^0.935^~1~^~A~^^^1^42.074^46.324^3^41.403^47.352^~4~^~12/01/2000~ -~12632~^~618~^1.303^4^0.108^~1~^~A~^^^1^1.164^1.587^3^0.960^1.645^~4~^~12/01/2000~ -~12632~^~619~^0.196^4^0.021^~1~^~A~^^^1^0.149^0.241^3^0.128^0.264^~4~^~12/01/2000~ -~12632~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~624~^0.621^4^0.011^~1~^~A~^^^1^0.605^0.653^3^0.587^0.654^~4~^~12/01/2000~ -~12632~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~626~^12.725^4^0.493^~1~^~A~^^^1^11.119^13.258^3^11.155^14.295^~4~^~12/01/2000~ -~12632~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2006~ -~12632~^~628~^1.925^4^0.076^~1~^~A~^^^1^1.751^2.084^3^1.684^2.165^~4~^~12/01/2000~ -~12632~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~630~^0.237^4^0.016^~1~^~A~^^^1^0.214^0.278^3^0.186^0.288^~4~^~12/01/2000~ -~12632~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~645~^59.275^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~646~^1.498^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~12632~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~653~^0.156^4^0.041^~1~^~A~^^^1^0.073^0.254^3^0.025^0.287^~4~^~12/01/2000~ -~12632~^~654~^0.272^4^0.013^~1~^~A~^^^1^0.250^0.301^3^0.229^0.315^~4~^~12/01/2000~ -~12632~^~671~^0.011^4^0.010^~1~^~A~^^^1^0.000^0.038^3^-0.020^0.043^~4~^~12/01/2000~ -~12632~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12632~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~12/01/2000~ -~12635~^~312~^1.279^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~315~^1.937^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~404~^0.200^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~405~^0.200^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~406~^4.700^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~410~^1.205^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~415~^0.296^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~501~^0.264^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~502~^0.597^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~503~^0.744^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~504~^1.371^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~505~^0.712^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~506~^0.228^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~507~^0.287^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~508~^0.953^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~509~^0.676^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~510~^0.934^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~511~^2.242^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~512~^0.480^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~513~^0.806^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~514~^2.056^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~515~^4.423^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~516~^1.064^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~517~^0.875^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~518~^0.917^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~606~^6.500^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12635~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~609~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~610~^0.045^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~611~^0.269^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12635~^~612~^0.215^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12635~^~613~^4.188^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12635~^~614~^1.739^0^^~1~^^^^^^^^^^^~08/01/2012~ -~12635~^~617~^30.802^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~618~^10.535^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~619~^0.190^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~626~^0.223^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~628~^0.259^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12635~^~645~^31.395^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12635~^~646~^10.768^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12637~^~312~^0.907^10^0.027^~1~^~A~^^^1^0.813^1.090^9^0.846^0.968^~2, 3~^~05/01/2011~ -~12637~^~315~^2.040^10^0.040^~1~^~A~^^^1^1.840^2.280^9^1.950^2.130^~2, 3~^~05/01/2011~ -~12637~^~404~^0.189^10^0.010^~1~^~A~^^^1^0.150^0.250^9^0.166^0.212^~2, 3~^~05/01/2011~ -~12637~^~405~^0.196^10^0.014^~1~^~A~^^^1^0.110^0.270^9^0.164^0.228^~2, 3~^~05/01/2011~ -~12637~^~406~^7.709^10^0.297^~1~^~A~^^^1^6.180^8.990^9^7.038^8.380^~2, 3~^~05/01/2011~ -~12637~^~410~^1.140^5^0.051^~1~^~A~^^^1^1.000^1.300^4^0.998^1.282^~2, 3~^~05/01/2011~ -~12637~^~415~^0.352^10^0.008^~1~^~A~^^^1^0.321^0.403^9^0.333^0.370^~2, 3~^~05/01/2011~ -~12637~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~502~^0.703^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~503~^0.826^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~504~^1.656^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~505~^0.782^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~506~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~508~^1.182^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~509~^0.786^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~510~^1.001^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~511~^2.965^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~512~^0.572^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~513~^0.982^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~514~^2.892^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~515~^5.574^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~516~^1.387^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~517~^0.957^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~518~^1.168^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~12637~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~606~^8.711^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~607~^0.004^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.002^0.004^~2, 3~^~05/01/2011~ -~12637~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~02/01/1995~ -~12637~^~609~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.004^9^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~12637~^~610~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.003^9^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~12637~^~611~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.002^9^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~12637~^~612~^0.043^10^0.003^~1~^~A~^^^1^0.018^0.056^9^0.031^0.044^~2, 3~^~05/01/2011~ -~12637~^~613~^5.205^10^0.185^~1~^~A~^^^1^4.130^6.198^9^4.220^5.056^~2, 3~^~05/01/2011~ -~12637~^~614~^2.022^10^0.094^~1~^~A~^^^1^1.464^2.533^9^1.588^2.016^~2, 3~^~05/01/2011~ -~12637~^~615~^0.361^10^0.008^~1~^~A~^^^1^0.285^0.375^9^0.304^0.340^~2, 3~^~05/01/2011~ -~12637~^~617~^27.914^10^0.671^~1~^~AS~^^^1^22.474^28.888^9^23.358^26.391^~2, 3~^~05/01/2011~ -~12637~^~618~^14.495^10^0.566^~1~^~AS~^^^1^10.374^17.134^9^11.635^14.197^~2, 3~^~05/01/2011~ -~12637~^~619~^0.082^10^0.006^~1~^~AS~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~05/01/2011~ -~12637~^~620~^0.010^10^0.001^~1~^~A~^^^1^0.004^0.013^9^0.006^0.011^~2, 3~^~05/01/2011~ -~12637~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~12637~^~624~^0.641^10^0.014^~1~^~A~^^^1^0.518^0.673^9^0.539^0.603^~2, 3~^~05/01/2011~ -~12637~^~625~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12637~^~626~^0.128^10^0.003^~1~^~AS~^^^1^0.100^0.131^9^0.107^0.122^~2, 3~^~05/01/2011~ -~12637~^~627~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12637~^~628~^0.375^10^0.010^~1~^~A~^^^1^0.290^0.387^9^0.311^0.357^~2, 3~^~05/01/2011~ -~12637~^~629~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.008^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12637~^~630~^0.027^10^0.001^~1~^~AS~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~05/01/2011~ -~12637~^~631~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~12637~^~645~^28.488^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~646~^14.612^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~652~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12637~^~653~^0.046^10^0.001^~1~^~A~^^^1^0.037^0.051^9^0.038^0.044^~2, 3~^~05/01/2011~ -~12637~^~654~^0.378^10^0.008^~1~^~A~^^^1^0.309^0.391^9^0.318^0.356^~2, 3~^~05/01/2011~ -~12637~^~662~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12637~^~663~^0.021^10^0.001^~1~^~A~^^^1^0.015^0.023^9^0.017^0.021^~2, 3~^~05/01/2011~ -~12637~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~12637~^~665~^0.032^10^0.002^~1~^~A~^^^1^0.024^0.044^9^0.024^0.033^~2, 3~^~05/01/2011~ -~12637~^~670~^0.008^10^0.001^~1~^~A~^^^1^0.004^0.010^9^0.006^0.008^~2, 3~^~05/01/2011~ -~12637~^~671~^0.006^10^0.001^~1~^~A~^^^1^0.002^0.010^9^0.003^0.008^~1, 2, 3~^~05/01/2011~ -~12637~^~672~^0.013^10^0.002^~1~^~A~^^^1^0.005^0.021^9^0.007^0.017^~2, 3~^~05/01/2011~ -~12637~^~673~^0.127^10^0.003^~1~^~A~^^^1^0.099^0.131^9^0.106^0.121^~2, 3~^~05/01/2011~ -~12637~^~674~^27.893^10^0.670^~1~^~A~^^^1^22.459^28.866^9^23.339^26.371^~2, 3~^~05/01/2011~ -~12637~^~675~^14.455^10^0.565^~1~^~A~^^^1^10.346^17.081^9^11.603^14.158^~2, 3~^~05/01/2011~ -~12637~^~676~^0.027^10^0.001^~1~^~A~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~05/01/2011~ -~12637~^~685~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~687~^0.037^10^0.001^~1~^~A~^^^1^0.022^0.036^9^0.030^0.036^~2, 3~^~05/01/2011~ -~12637~^~689~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.001^9^0.000^0.000^~2, 3~^~05/01/2011~ -~12637~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~12637~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~851~^0.082^10^0.006^~1~^~A~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~05/01/2011~ -~12637~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~05/01/2011~ -~12637~^~853~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~12637~^~858~^0.005^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~05/01/2011~ -~12638~^~312~^1.795^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~315~^1.547^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~404~^0.504^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~405~^0.486^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~406~^1.964^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~410~^0.962^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~415~^0.180^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~501~^0.252^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~502~^0.568^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~503~^0.703^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~504~^1.265^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~505~^0.682^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~506~^0.346^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~507~^0.302^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~508~^0.820^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~509~^0.510^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~510~^0.952^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~511~^1.989^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~512~^0.416^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~513~^0.715^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~514~^1.617^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~515~^3.872^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~516~^0.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~517~^0.773^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~518~^1.620^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~606~^9.087^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~609~^0.078^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~610~^0.078^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~611~^0.467^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~612~^0.342^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~613~^4.932^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~614~^2.783^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~617~^32.517^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~618~^11.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~619~^0.249^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~626~^0.329^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~628~^0.149^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12638~^~645~^33.137^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12638~^~646~^11.449^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12643~^~312~^1.167^3^0.176^~1~^~A~^^^1^0.900^1.500^2^0.408^1.926^~4~^~01/01/2001~ -~12643~^~315~^3.933^3^0.935^~1~^~A~^^^1^2.900^5.800^2^-0.090^7.957^~4~^~01/01/2001~ -~12643~^~404~^0.450^3^0.025^~1~^~A~^^^1^0.400^0.480^2^0.342^0.558^~4~^~01/01/2001~ -~12643~^~405~^0.107^3^0.007^~1~^~A~^^^1^0.100^0.120^2^0.078^0.135^~4~^~01/01/2001~ -~12643~^~406~^1.167^3^0.067^~1~^~A~^^^1^1.100^1.300^2^0.880^1.454^~4~^~01/01/2001~ -~12643~^~410~^0.703^3^0.108^~1~^~A~^^^1^0.490^0.840^2^0.238^1.168^~4~^~01/01/2001~ -~12643~^~415~^0.187^3^0.023^~1~^~A~^^^1^0.140^0.210^2^0.086^0.287^~4~^~01/01/2001~ -~12643~^~501~^0.096^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~502~^0.317^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~503~^0.348^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~504~^0.619^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~505~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~506~^0.189^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~508~^0.441^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~509~^0.223^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~510~^0.426^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~511~^1.220^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~512~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~514~^0.963^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~515~^1.895^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~516~^0.469^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~517~^0.376^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~518~^0.491^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12643~^~606~^6.283^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12643~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12643~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~613~^4.387^3^0.222^~1~^~A~^^^1^4.068^4.814^2^3.431^5.343^~4~^~01/01/2001~ -~12643~^~614~^1.825^3^0.025^~1~^~A~^^^1^1.778^1.864^2^1.717^1.933^~4~^~01/01/2001~ -~12643~^~615~^0.071^3^0.000^~1~^~A~^^^1^0.071^0.072^2^0.070^0.073^~4~^~01/01/2001~ -~12643~^~617~^43.743^3^2.616^~1~^~A~^^^1^39.179^48.240^2^32.488^54.999^~4~^~01/01/2001~ -~12643~^~618~^19.578^3^2.218^~1~^~A~^^^1^16.051^23.671^2^10.036^29.120^~4~^~01/01/2001~ -~12643~^~619~^0.994^3^0.039^~1~^~A~^^^1^0.931^1.066^2^0.826^1.163^~4~^~01/01/2001~ -~12643~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~ -~12643~^~628~^0.214^3^0.001^~1~^~A~^^^1^0.212^0.216^2^0.209^0.219^~4~^~01/01/2001~ -~12643~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~645~^43.957^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~646~^20.572^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12643~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12643~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~312~^1.200^3^0.058^~1~^~A~^^^1^1.100^1.300^2^0.952^1.448^~4~^~01/01/2001~ -~12644~^~315~^3.700^3^1.114^~1~^~A~^^^1^2.300^5.900^2^-1.091^8.491^~4~^~01/01/2001~ -~12644~^~404~^0.473^3^0.018^~1~^~A~^^^1^0.440^0.500^2^0.397^0.549^~4~^~01/01/2001~ -~12644~^~405~^0.110^3^0.006^~1~^~A~^^^1^0.100^0.120^2^0.085^0.135^~4~^~01/01/2001~ -~12644~^~406~^1.200^3^0.000^~1~^~A~^^^1^1.200^1.200^2^1.200^1.200^~4~^~01/01/2001~ -~12644~^~410~^0.737^3^0.081^~1~^~A~^^^1^0.590^0.870^2^0.388^1.086^~4~^~01/01/2001~ -~12644~^~415~^0.187^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.124^0.249^~4~^~01/01/2001~ -~12644~^~501~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~502~^0.307^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~503~^0.337^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~504~^0.600^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~505~^0.288^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~506~^0.183^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~508~^0.428^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~509~^0.216^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~510~^0.413^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~511~^1.181^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~512~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~513~^0.398^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~514~^0.933^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~515~^1.835^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~516~^0.454^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~517~^0.364^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~518~^0.476^0^^~1~^~A~^^^^^^^^^^~03/01/2001~ -~12644~^~606~^7.238^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~613~^4.969^3^0.055^~1~^~A~^^^1^4.859^5.027^2^4.731^5.208^~4~^~01/01/2001~ -~12644~^~614~^1.849^3^0.036^~1~^~A~^^^1^1.778^1.894^2^1.695^2.003^~4~^~01/01/2001~ -~12644~^~615~^0.145^3^0.001^~1~^~A~^^^1^0.143^0.146^2^0.140^0.149^~4~^~01/01/2001~ -~12644~^~617~^40.681^3^2.216^~1~^~A~^^^1^37.188^44.789^2^31.148^50.214^~4~^~01/01/2001~ -~12644~^~618~^22.552^3^1.604^~1~^~A~^^^1^19.585^25.092^2^15.650^29.455^~4~^~01/01/2001~ -~12644~^~619~^1.031^3^0.025^~1~^~A~^^^1^0.995^1.080^2^0.922^1.141^~4~^~01/01/2001~ -~12644~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~624~^0.162^3^0.055^~1~^~A~^^^1^0.052^0.218^2^-0.074^0.397^~4~^~01/01/2001~ -~12644~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~626~^0.024^3^0.024^~1~^~A~^^^1^0.000^0.072^2^-0.080^0.128^~4~^~01/01/2001~ -~12644~^~628~^0.265^3^0.023^~1~^~A~^^^1^0.219^0.289^2^0.167^0.363^~4~^~01/01/2001~ -~12644~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~645~^40.970^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~646~^23.584^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~ -~12644~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~654~^0.114^3^0.031^~1~^~A~^^^1^0.052^0.146^2^-0.019^0.246^~4~^~01/01/2001~ -~12644~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12644~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~01/01/2001~ -~12652~^~312~^1.293^5^0.033^~1~^~A~^^^2^1.260^1.400^1^0.880^1.705^~2~^~05/01/2010~ -~12652~^~315~^1.243^5^0.033^~1~^~A~^^^2^1.100^1.400^1^0.830^1.655^~2~^~05/01/2010~ -~12652~^~404~^0.695^5^0.145^~1~^~A~^^^2^0.550^0.870^1^-1.147^2.537^~2~^~05/01/2010~ -~12652~^~405~^0.234^5^0.076^~1~^~A~^^^2^0.110^0.310^1^-0.735^1.203^~2~^~05/01/2010~ -~12652~^~406~^1.373^5^0.053^~1~^~A~^^^2^1.300^1.500^1^0.705^2.040^~2~^~05/01/2010~ -~12652~^~410~^0.513^4^0.012^~1~^~A~^^^1^0.480^0.530^3^0.475^0.550^~4~^~01/01/2001~ -~12652~^~415~^1.122^13^0.311^~1~^~A~^^^4^0.484^1.800^3^0.132^2.113^~2~^~05/01/2010~ -~12652~^~501~^0.262^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~502~^0.714^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~503~^0.957^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~504~^1.675^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~505~^1.189^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~506~^0.375^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~507~^0.305^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~508~^1.140^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~509~^0.531^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~510~^1.305^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~511~^2.228^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~512~^0.535^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~513~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~514~^1.968^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~515~^4.490^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~516~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~517~^0.980^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~518~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~521~^0.096^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12652~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12652~^~606~^5.645^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~12652~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~12652~^~609~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12652~^~610~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12652~^~611~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12652~^~612~^0.012^9^0.013^~1~^~A~^^^3^0.000^0.040^2^-0.042^0.068^~1, 2~^~04/01/2015~ -~12652~^~613~^4.994^9^0.152^~1~^~A~^^^3^4.940^5.595^2^4.681^5.993^~2~^~04/01/2015~ -~12652~^~614~^0.558^9^0.060^~1~^~A~^^^3^0.492^0.715^2^0.340^0.853^~2~^~04/01/2015~ -~12652~^~615~^0.033^9^0.018^~1~^~A~^^^3^0.000^0.090^2^-0.041^0.112^~1, 2~^~04/01/2015~ -~12652~^~617~^23.926^9^0.832^~1~^~A~^^^3^23.955^27.046^2^21.990^29.151^~2~^~04/01/2015~ -~12652~^~618~^13.125^9^0.259^~6~^~JA~^^^3^13.607^14.600^2^12.912^15.142^~2~^~04/01/2015~ -~12652~^~619~^0.212^10^0.024^~6~^~JA~^^^4^0.157^0.270^3^0.150^0.304^~2~^~04/01/2015~ -~12652~^~620~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12652~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2006~ -~12652~^~624~^0.026^9^0.014^~1~^~A~^^^3^0.000^0.045^2^-0.032^0.089^~1, 2~^~04/01/2015~ -~12652~^~625~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12652~^~626~^0.464^9^0.014^~1~^~A~^^^3^0.445^0.532^2^0.437^0.555^~2~^~04/01/2015~ -~12652~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~12652~^~628~^0.106^9^0.057^~1~^~A~^^^3^0.000^0.181^2^-0.132^0.358^~1, 2~^~04/01/2015~ -~12652~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2006~ -~12652~^~630~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12652~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2006~ -~12652~^~645~^24.534^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~646~^13.346^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~12652~^~652~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12652~^~653~^0.011^6^0.011^~1~^~A~^^^2^0.000^0.024^1^-0.132^0.154^~2~^~04/01/2015~ -~12652~^~654~^0.011^6^0.012^~1~^~A~^^^2^0.000^0.026^1^-0.140^0.164^~2~^~05/01/2010~ -~12652~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2010~ -~12652~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2010~ -~12652~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2006~ -~12652~^~672~^0.000^9^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2~^~05/01/2010~ -~12652~^~675~^13.125^4^0.046^~1~^~A~^^^2^13.607^13.700^1^13.063^14.244^~2~^~04/01/2015~ -~12652~^~687~^0.020^2^^~1~^~A~^^^1^0.000^0.042^1^^^~1~^~04/01/2015~ -~12652~^~689~^0.005^6^0.005^~1~^~A~^^^2^0.000^0.020^1^-0.059^0.069^~1, 2~^~05/01/2010~ -~12652~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12652~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~12652~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~4~^~03/01/2006~ -~12652~^~697~^0.009^2^^~1~^~A~^^^1^0.000^0.020^1^^^~1~^~05/01/2010~ -~12652~^~851~^0.212^3^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~12663~^~312~^0.690^1^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~315~^0.496^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~404~^0.034^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~405~^0.052^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~406~^0.286^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~410~^0.056^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~415~^0.037^0^^~4~^^^^^^^^^^^~09/01/1984~ -~12663~^~501~^0.326^12^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~502~^0.683^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~503~^0.956^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~504~^1.572^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~505~^1.386^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~506~^0.417^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~507~^0.228^3^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~508~^0.924^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~509~^0.770^15^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~510~^1.491^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~511~^3.049^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~512~^0.515^14^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~513~^0.875^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~514~^1.873^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~515~^3.262^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~516~^1.358^6^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~517~^0.756^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~518~^0.868^5^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~606~^3.670^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~611~^0.019^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~612~^0.022^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~613~^2.374^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~614~^1.189^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~617~^5.985^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~618~^8.759^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~619~^0.077^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~626~^0.042^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~645~^6.032^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12663~^~646~^8.844^0^^~1~^^^^^^^^^^^~09/01/1984~ -~12665~^~312~^0.955^3^0.118^~1~^~A~^^^1^0.900^1.200^2^0.448^1.462^~4~^~07/01/2012~ -~12665~^~315~^2.460^3^0.118^~1~^~A~^^^1^2.400^2.700^2^1.953^2.967^~4~^~07/01/2012~ -~12665~^~404~^0.092^3^0.009^~1~^~A~^^^1^0.089^0.110^2^0.054^0.131^~4~^~07/01/2012~ -~12665~^~405~^0.781^3^0.061^~1~^~A~^^^1^0.650^0.800^2^0.517^1.044^~4~^~07/01/2012~ -~12665~^~406~^3.665^3^0.118^~1~^~A~^^^1^3.600^3.900^2^3.158^4.172^~4~^~07/01/2012~ -~12665~^~410~^0.229^3^0.004^~1~^~A~^^^1^0.220^0.230^2^0.210^0.248^~4~^~07/01/2012~ -~12665~^~415~^0.118^3^0.013^~1~^~A~^^^1^0.110^0.140^2^0.060^0.175^~4~^~07/01/2012~ -~12665~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~502~^0.677^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~503~^0.691^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~504~^1.467^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~505~^0.600^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~507~^0.282^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~509~^0.529^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~510~^0.798^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~511~^2.463^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~512~^0.592^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~513~^0.999^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~514~^2.729^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~515~^5.165^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~516~^1.466^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~517~^0.967^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~518~^1.004^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~12665~^~606~^4.207^0^^~1~^^^^^^^^^^^~07/01/2012~ -~12665~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~613~^3.303^3^0.079^~1~^~A~^^^1^3.264^3.453^2^2.964^3.642^~4~^~07/01/2012~ -~12665~^~614~^0.905^3^0.100^~1~^~A~^^^1^0.706^0.960^2^0.475^1.334^~4~^~07/01/2012~ -~12665~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~617~^34.578^3^0.892^~1~^~A~^^^1^32.732^35.021^2^30.739^38.416^~4~^~07/01/2012~ -~12665~^~618~^13.519^3^1.034^~1~^~A~^^^1^12.403^15.074^2^9.069^17.969^~4~^~07/01/2012~ -~12665~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~626~^0.215^3^0.025^~1~^~A~^^^1^0.201^0.261^2^0.108^0.322^~4~^~07/01/2012~ -~12665~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~ -~12665~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~645~^34.794^0^^~1~^^^^^^^^^^^~07/01/2012~ -~12665~^~646~^13.520^0^^~1~^^^^^^^^^^^~07/01/2012~ -~12665~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12665~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~4~^~07/01/2012~ -~12695~^~312~^0.934^8^0.047^~1~^~A~^^^1^0.714^1.100^7^0.823^1.044^~4~^~05/01/2010~ -~12695~^~315~^2.131^8^0.155^~1~^~A~^^^1^1.420^2.490^7^1.765^2.497^~4~^~05/01/2010~ -~12695~^~404~^0.041^8^0.006^~1~^~A~^^^1^0.022^0.060^7^0.027^0.054^~1, 4~^~05/01/2010~ -~12695~^~405~^0.939^8^0.118^~1~^~A~^^^1^0.450^1.390^7^0.660^1.217^~4~^~05/01/2010~ -~12695~^~406~^3.155^8^0.101^~1~^~A~^^^1^2.800^3.560^7^2.916^3.394^~4~^~05/01/2010~ -~12695~^~410~^0.318^8^0.018^~1~^~A~^^^1^0.230^0.380^7^0.274^0.361^~4~^~05/01/2010~ -~12695~^~415~^0.103^8^0.007^~1~^~A~^^^1^0.080^0.128^7^0.087^0.118^~4~^~05/01/2010~ -~12695~^~501~^0.159^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~502~^0.555^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~503~^0.813^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~504~^1.483^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~505~^0.612^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~506~^0.122^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~507~^0.242^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~508~^1.149^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~509~^0.595^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~510~^0.937^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~511~^2.382^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~513~^0.990^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~514~^2.397^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~515~^5.912^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~516~^1.472^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~517~^0.915^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~518~^0.926^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~12695~^~605~^0.000^2^^~8~^~LC~^^^1^^^^^^^~05/01/2010~ -~12695~^~606~^6.550^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12695~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~612~^0.011^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2012~ -~12695~^~613~^5.036^8^0.037^~1~^~A~^^^1^3.011^3.354^7^3.105^3.280^~4~^~08/01/2012~ -~12695~^~614~^1.480^8^0.057^~1~^~A~^^^1^0.728^1.225^7^0.804^1.072^~4~^~08/01/2012~ -~12695~^~615~^0.011^8^0.007^~1~^~A~^^^1^0.000^0.058^7^-0.010^0.024^~1, 4~^~08/01/2012~ -~12695~^~617~^32.143^8^0.525^~1~^~A~^^^1^28.901^33.782^7^30.902^33.385^~4~^~08/01/2010~ -~12695~^~618~^13.605^8^0.762^~1~^~A~^^^1^8.964^15.786^7^11.804^15.407^~4~^~08/01/2010~ -~12695~^~619~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2010~ -~12695~^~620~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~626~^0.248^8^0.009^~1~^~A~^^^1^0.200^0.286^7^0.227^0.269^~4~^~08/01/2010~ -~12695~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~628~^0.019^8^0.008^~1~^~A~^^^1^0.007^0.058^7^0.001^0.036^~1, 4~^~08/01/2010~ -~12695~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~12695~^~645~^32.445^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~646~^13.613^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~12695~^~652~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~653~^0.011^8^0.000^~1~^~A~^^^1^0.007^0.007^7^0.007^0.007^~1, 4~^~08/01/2012~ -~12695~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~687~^0.035^8^0.000^~1~^~A~^^^1^0.035^0.035^7^0.035^0.035^~1, 4~^~08/01/2010~ -~12695~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12695~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^7^0.000^0.000^~1, 4~^~05/01/2010~ -~12698~^~312~^1.610^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~404~^1.590^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~405~^0.120^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~406~^5.640^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~415~^0.150^0^^~4~^^^^^^^^^^^~07/01/1984~ -~12698~^~606~^7.423^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~612~^0.132^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~613~^4.739^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~614~^2.230^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~617~^19.763^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~618~^22.807^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~619~^0.401^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~626~^0.159^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~628~^0.074^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~645~^20.016^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12698~^~646~^23.232^0^^~4~^^^^^^^^^^^~02/01/1995~ -~12737~^~312~^0.907^10^0.027^~1~^~A~^^^1^0.813^1.090^9^0.846^0.968^~2, 3~^~08/01/2012~ -~12737~^~315~^2.040^10^0.040^~1~^~A~^^^1^1.840^2.280^9^1.950^2.130^~2, 3~^~08/01/2012~ -~12737~^~404~^0.189^10^0.010^~1~^~A~^^^1^0.150^0.250^9^0.166^0.212^~2, 3~^~08/01/2012~ -~12737~^~405~^0.196^10^0.014^~1~^~A~^^^1^0.110^0.270^9^0.164^0.228^~2, 3~^~08/01/2012~ -~12737~^~406~^7.709^10^0.297^~1~^~A~^^^1^6.180^8.990^9^7.038^8.380^~2, 3~^~08/01/2012~ -~12737~^~410~^1.140^5^0.051^~1~^~A~^^^1^1.000^1.300^4^0.998^1.282^~2, 3~^~08/01/2012~ -~12737~^~415~^0.352^10^0.008^~1~^~A~^^^1^0.321^0.403^9^0.333^0.370^~2, 3~^~08/01/2012~ -~12737~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~502~^0.703^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~503~^0.826^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~504~^1.656^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~505~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~506~^0.283^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~508~^1.182^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~509~^0.786^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~510~^1.001^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~511~^2.965^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~512~^0.572^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~513~^0.982^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~514~^2.892^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~515~^5.574^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~516~^1.387^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~517~^0.957^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~518~^1.168^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~12737~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~606~^8.711^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~607~^0.004^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.002^0.004^~2, 3~^~08/01/2012~ -~12737~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~08/01/2012~ -~12737~^~609~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.004^9^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~12737~^~610~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.003^9^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~12737~^~611~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.002^9^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~12737~^~612~^0.043^10^0.003^~1~^~A~^^^1^0.018^0.056^9^0.031^0.044^~2, 3~^~08/01/2012~ -~12737~^~613~^5.205^10^0.185^~1~^~A~^^^1^4.130^6.198^9^4.220^5.056^~2, 3~^~08/01/2012~ -~12737~^~614~^2.022^10^0.094^~1~^~A~^^^1^1.464^2.533^9^1.588^2.016^~2, 3~^~08/01/2012~ -~12737~^~615~^0.361^10^0.008^~1~^~A~^^^1^0.285^0.375^9^0.304^0.340^~2, 3~^~08/01/2012~ -~12737~^~617~^27.914^10^0.671^~1~^~AS~^^^1^22.474^28.888^9^23.358^26.391^~2, 3~^~08/01/2012~ -~12737~^~618~^14.495^10^0.566^~1~^~AS~^^^1^10.374^17.134^9^11.635^14.197^~2, 3~^~08/01/2012~ -~12737~^~619~^0.082^10^0.006^~1~^~AS~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~08/01/2012~ -~12737~^~620~^0.010^10^0.001^~1~^~A~^^^1^0.004^0.013^9^0.006^0.011^~2, 3~^~08/01/2012~ -~12737~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~624~^0.641^10^0.014^~1~^~A~^^^1^0.518^0.673^9^0.539^0.603^~2, 3~^~08/01/2012~ -~12737~^~625~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~12737~^~626~^0.128^10^0.003^~1~^~AS~^^^1^0.100^0.131^9^0.107^0.122^~2, 3~^~08/01/2012~ -~12737~^~627~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~12737~^~628~^0.375^10^0.010^~1~^~A~^^^1^0.290^0.387^9^0.311^0.357^~2, 3~^~08/01/2012~ -~12737~^~629~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.008^9^0.003^0.006^~2, 3~^~08/01/2012~ -~12737~^~630~^0.027^10^0.001^~1~^~AS~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~08/01/2012~ -~12737~^~631~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~645~^28.488^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~646~^14.612^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~652~^0.005^10^0.001^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~08/01/2012~ -~12737~^~653~^0.046^10^0.001^~1~^~A~^^^1^0.037^0.051^9^0.038^0.044^~2, 3~^~08/01/2012~ -~12737~^~654~^0.378^10^0.008^~1~^~A~^^^1^0.309^0.391^9^0.318^0.356^~2, 3~^~08/01/2012~ -~12737~^~662~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~12737~^~663~^0.021^10^0.001^~1~^~A~^^^1^0.015^0.023^9^0.017^0.021^~2, 3~^~08/01/2012~ -~12737~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~12737~^~665~^0.032^10^0.002^~1~^~A~^^^1^0.024^0.044^9^0.024^0.033^~2, 3~^~08/01/2012~ -~12737~^~670~^0.008^10^0.001^~1~^~A~^^^1^0.004^0.010^9^0.006^0.008^~2, 3~^~08/01/2012~ -~12737~^~671~^0.006^10^0.001^~1~^~A~^^^1^0.002^0.010^9^0.003^0.008^~1, 2, 3~^~08/01/2012~ -~12737~^~672~^0.013^10^0.002^~1~^~A~^^^1^0.005^0.021^9^0.007^0.017^~2, 3~^~08/01/2012~ -~12737~^~673~^0.127^10^0.003^~1~^~A~^^^1^0.099^0.131^9^0.106^0.121^~2, 3~^~08/01/2012~ -~12737~^~674~^27.893^10^0.670^~1~^~A~^^^1^22.459^28.866^9^23.339^26.371^~2, 3~^~08/01/2012~ -~12737~^~675~^14.455^10^0.565^~1~^~A~^^^1^10.346^17.081^9^11.603^14.158^~2, 3~^~08/01/2012~ -~12737~^~676~^0.027^10^0.001^~1~^~A~^^^1^0.021^0.031^9^0.022^0.026^~2, 3~^~08/01/2012~ -~12737~^~685~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~687~^0.037^10^0.001^~1~^~A~^^^1^0.022^0.036^9^0.030^0.036^~2, 3~^~08/01/2012~ -~12737~^~689~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.001^9^0.000^0.000^~2, 3~^~08/01/2012~ -~12737~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~12737~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~851~^0.082^10^0.006^~1~^~A~^^^1^0.054^0.109^9^0.060^0.087^~2, 3~^~08/01/2012~ -~12737~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~08/01/2012~ -~12737~^~853~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~12737~^~858~^0.005^10^0.000^~1~^~A~^^^1^0.002^0.006^9^0.003^0.006^~2, 3~^~08/01/2012~ -~12738~^~312~^1.679^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~315~^2.143^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~404~^0.357^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~405~^0.321^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~406~^2.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~410~^0.607^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~415~^0.357^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~501~^0.250^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~502~^0.643^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~503~^0.714^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~504~^1.429^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~505~^0.786^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~506~^0.321^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~507~^0.357^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~508~^1.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~509~^0.500^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~510~^0.964^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~511~^2.214^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~512~^0.500^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~513~^0.857^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~514~^2.071^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~515~^4.536^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~516~^1.107^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~517~^0.857^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~518~^1.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~606~^7.143^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~607~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~608~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~609~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~610~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~611~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~612~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~613~^3.857^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~614~^2.214^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~615~^0.143^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~617~^26.679^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~618~^10.750^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~619~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~624~^0.071^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~625~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~626~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~627~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~628~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~645~^28.571^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~646~^12.500^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~652~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~653~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~654~^0.036^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~12738~^~687~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~ -~13000~^~312~^0.068^11^0.004^~1~^~A~^^^1^0.055^0.097^10^0.060^0.076^~2, 3~^~06/01/2007~ -~13000~^~315~^0.009^11^0.000^~1~^~A~^^^1^0.008^0.013^10^0.008^0.010^~2, 3~^~06/01/2007~ -~13000~^~404~^0.052^11^0.002^~1~^~A~^^^1^0.039^0.063^10^0.047^0.056^~2, 3~^~06/01/2007~ -~13000~^~405~^0.124^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~406~^6.703^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~410~^0.678^0^^~4~^~BFPN~^~23584~^^^^^^^^^~01/01/2008~ -~13000~^~415~^0.651^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~ -~13000~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~606~^1.032^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~ -~13000~^~609~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~610~^0.001^14^0.000^~1~^~A~^^^1^0.000^0.003^13^0.000^0.002^~1, 2, 3~^~06/01/2007~ -~13000~^~611~^0.001^14^0.000^~1~^~A~^^^1^0.000^0.003^13^0.001^0.002^~1, 2, 3~^~06/01/2007~ -~13000~^~612~^0.061^14^0.008^~1~^~A~^^^1^0.016^0.114^13^0.044^0.078^~2, 3~^~06/01/2007~ -~13000~^~613~^0.575^14^0.073^~1~^~A~^^^1^0.152^1.190^13^0.418^0.732^~2, 3~^~06/01/2007~ -~13000~^~614~^0.354^14^0.036^~1~^~A~^^^1^0.119^0.591^13^0.276^0.432^~2, 3~^~06/01/2007~ -~13000~^~615~^0.003^14^0.000^~1~^~A~^^^1^0.000^0.004^13^0.002^0.003^~1, 2, 3~^~06/01/2007~ -~13000~^~617~^0.910^14^0.110^~1~^~AS~^^^1^0.248^1.783^13^0.673^1.147^~2, 3~^~06/01/2007~ -~13000~^~618~^0.080^14^0.010^~1~^~AS~^^^1^0.020^0.164^13^0.060^0.101^~2, 3~^~06/01/2007~ -~13000~^~619~^0.015^14^0.002^~1~^~AS~^^^1^0.005^0.035^13^0.010^0.020^~2, 3~^~06/01/2007~ -~13000~^~620~^0.006^14^0.001^~1~^~A~^^^1^0.002^0.013^13^0.004^0.007^~2, 3~^~06/01/2007~ -~13000~^~621~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^13^0.000^0.000^~1, 2, 3~^~06/01/2007~ -~13000~^~624~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~625~^0.012^14^0.002^~1~^~A~^^^1^0.003^0.026^13^0.008^0.016^~2, 3~^~06/01/2007~ -~13000~^~626~^0.070^14^0.009^~1~^~A~^^^1^0.016^0.137^13^0.050^0.090^~2, 3~^~06/01/2007~ -~13000~^~627~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~628~^0.003^14^0.000^~1~^~A~^^^1^0.000^0.005^13^0.002^0.004^~1, 2, 3~^~06/01/2007~ -~13000~^~629~^0.002^14^0.000^~1~^~A~^^^1^0.000^0.004^13^0.001^0.002^~1, 2, 3~^~06/01/2007~ -~13000~^~630~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~631~^0.004^14^0.001^~1~^~A~^^^1^0.001^0.008^13^0.003^0.006^~2, 3~^~06/01/2007~ -~13000~^~645~^0.995^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~646~^0.108^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~652~^0.011^14^0.001^~1~^~A~^^^1^0.004^0.019^13^0.009^0.014^~2, 3~^~06/01/2007~ -~13000~^~653~^0.026^14^0.003^~1~^~A~^^^1^0.008^0.047^13^0.020^0.032^~2, 3~^~06/01/2007~ -~13000~^~654~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~663~^0.091^14^0.011^~1~^~A~^^^1^0.032^0.188^13^0.066^0.115^~2, 3~^~06/01/2007~ -~13000~^~665~^0.022^14^0.004^~1~^~A~^^^1^0.008^0.062^13^0.014^0.030^~2, 3~^~06/01/2007~ -~13000~^~670~^0.017^14^0.002^~1~^~A~^^^1^0.000^0.040^13^0.012^0.023^~1, 2, 3~^~06/01/2007~ -~13000~^~672~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^13^0.000^0.000^~1, 2, 3~^~06/01/2007~ -~13000~^~674~^0.819^14^0.099^~1~^~A~^^^1^0.215^1.595^13^0.605^1.034^~2, 3~^~06/01/2007~ -~13000~^~675~^0.041^14^0.004^~1~^~A~^^^1^0.012^0.062^13^0.032^0.050^~2, 3~^~06/01/2007~ -~13000~^~685~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~687~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~689~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.002^13^0.000^0.000^~1, 2, 3~^~06/01/2007~ -~13000~^~693~^0.091^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13000~^~697~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13000~^~851~^0.015^14^0.002^~1~^~A~^^^1^0.005^0.035^13^0.010^0.020^~2, 3~^~06/01/2007~ -~13001~^~312~^0.069^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~315~^0.013^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~404~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~405~^0.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~406~^3.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~410~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~415~^0.330^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~501~^0.201^61^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~502~^0.746^79^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~503~^0.767^79^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~504~^1.376^79^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~505~^1.443^79^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~506~^0.430^76^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~507~^0.185^59^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~508~^0.670^78^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~509~^0.568^78^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~510~^0.842^78^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~511~^1.120^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~512~^0.579^78^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~513~^1.074^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~514~^1.583^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~515~^2.644^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~516~^1.061^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~517~^0.804^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~518~^0.665^75^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~606~^9.750^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~610~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~611~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~612~^0.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~613~^5.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~614~^2.930^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~617~^9.120^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~618~^0.620^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~619~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~620~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~626~^1.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~629~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~645~^10.470^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13001~^~646~^0.920^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~312~^0.069^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~315~^0.013^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~404~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~405~^0.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~406~^3.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~410~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~415~^0.330^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~501~^0.202^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~502~^0.754^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~503~^0.774^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~504~^1.388^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~505~^1.456^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~506~^0.435^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~507~^0.187^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~508~^0.676^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~509~^0.574^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~510~^0.850^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~511~^1.129^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~512~^0.585^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~513~^1.082^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~514~^1.597^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~515~^2.666^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~516~^1.064^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~517~^0.809^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~518~^0.671^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~606~^9.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~610~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~611~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~612~^0.700^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~613~^5.430^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~614~^2.750^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~617~^8.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~618~^0.570^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~619~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~620~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~626~^1.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~629~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~645~^9.820^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13002~^~646~^0.860^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~312~^0.028^4^0.003^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~315~^0.000^4^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~404~^0.030^4^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~405~^0.037^4^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~406~^1.437^4^0.079^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~410~^0.163^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~415~^0.108^4^0.008^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13019~^~501~^0.054^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~502~^0.328^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~503~^0.374^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~504~^0.653^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~505~^0.694^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~506~^0.214^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~507~^0.106^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~508~^0.324^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~509~^0.262^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~510~^0.407^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~511~^0.531^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~512~^0.262^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~513~^0.499^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~514~^0.748^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~515~^1.233^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~516~^0.500^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~517~^0.391^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~518~^0.323^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13019~^~521~^0.086^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~13019~^~606~^29.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~610~^0.310^73^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~611~^0.210^86^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~612~^2.390^500^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~613~^17.730^513^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~614~^8.810^517^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~617~^26.950^517^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~618~^1.490^503^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~619~^1.070^169^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~620~^0.000^19^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~626~^3.880^513^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~628~^0.110^11^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13019~^~645~^30.940^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13019~^~646~^2.560^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13020~^~312~^0.040^4^0.002^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~315~^0.000^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~404~^0.030^4^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~405~^0.046^4^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~406~^1.528^4^0.038^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~410~^0.221^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~415~^0.140^4^0.007^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13020~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~502~^0.425^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~503~^0.485^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~504~^0.847^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~505~^0.900^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~506~^0.277^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~507~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~508~^0.421^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~509~^0.339^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~510~^0.528^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~511~^0.689^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~512~^0.340^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~513~^0.647^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~514~^0.970^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~515~^1.599^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~516~^0.648^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~517~^0.508^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~518~^0.420^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13020~^~521~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2003~ -~13020~^~606~^28.500^0^^~1~^^^^^^^^^^^~08/01/2004~ -~13020~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13020~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13020~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13020~^~610~^0.270^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~611~^0.250^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~612~^2.350^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~613~^17.770^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~614~^7.860^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~617~^27.140^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~618~^1.620^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~619~^1.040^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~620~^0.000^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~621~^0.000^1^^~1~^~AR~^^^^^^^^^^~02/01/2003~ -~13020~^~626~^3.140^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~628~^0.170^33^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~02/01/2003~ -~13020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~13020~^~631~^0.015^1^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13020~^~645~^30.450^0^^~1~^^^^^^^^^^^~08/01/2004~ -~13020~^~646~^2.660^0^^~1~^^^^^^^^^^^~08/01/2004~ -~13023~^~312~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~404~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~405~^0.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~406~^3.940^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~410~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~415~^0.420^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~501~^0.232^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~502~^0.905^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~503~^0.931^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~504~^1.637^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~505~^1.724^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~506~^0.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~507~^0.232^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~508~^0.809^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~509~^0.696^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~510~^1.008^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~511~^1.309^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~512~^0.709^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~513~^1.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~514~^1.893^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~515~^3.112^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~516~^1.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~517~^0.915^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~518~^0.792^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~606~^2.590^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~612~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~613~^1.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~614~^0.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~617~^3.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~618~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~621~^0.000^0^^~4~^~BFFN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~626~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13023~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~629~^0.000^0^^~4~^~BFFN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~630~^0.000^0^^~4~^~BFFN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~631~^0.000^0^^~4~^~BFFN~^~23617~^^^^^^^^^~03/01/2007~ -~13023~^~645~^3.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13023~^~646~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13047~^~312~^0.063^11^0.003^~1~^~A~^^^1^0.049^0.076^10^0.057^0.069^~2, 3~^~06/01/2007~ -~13047~^~315~^0.010^11^0.001^~1~^~A~^^^1^0.008^0.013^10^0.009^0.011^~2, 3~^~06/01/2007~ -~13047~^~404~^0.049^11^0.001^~1~^~A~^^^1^0.039^0.056^10^0.046^0.052^~2, 3~^~06/01/2007~ -~13047~^~405~^0.154^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~406~^4.818^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~410~^0.576^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~13047~^~415~^0.355^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~ -~13047~^~605~^0.751^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~606~^5.335^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~ -~13047~^~609~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.000^0.001^~1, 2, 3~^~06/01/2007~ -~13047~^~610~^0.005^15^0.000^~1~^~A~^^^1^0.003^0.008^14^0.004^0.006^~2, 3~^~06/01/2007~ -~13047~^~611~^0.009^15^0.001^~1~^~A~^^^1^0.006^0.013^14^0.008^0.011^~2, 3~^~06/01/2007~ -~13047~^~612~^0.345^15^0.028^~1~^~A~^^^1^0.199^0.554^14^0.286^0.405^~2, 3~^~06/01/2007~ -~13047~^~613~^2.747^15^0.205^~1~^~A~^^^1^1.771^4.472^14^2.308^3.187^~2, 3~^~06/01/2007~ -~13047~^~614~^1.980^15^0.141^~1~^~A~^^^1^1.439^3.194^14^1.678^2.283^~2, 3~^~06/01/2007~ -~13047~^~615~^0.019^15^0.002^~1~^~A~^^^1^0.011^0.036^14^0.015^0.022^~2, 3~^~06/01/2007~ -~13047~^~617~^4.363^15^0.339^~1~^~AS~^^^1^2.734^7.133^14^3.636^5.090^~2, 3~^~06/01/2007~ -~13047~^~618~^0.426^15^0.029^~1~^~AS~^^^1^0.243^0.687^14^0.363^0.490^~2, 3~^~06/01/2007~ -~13047~^~619~^0.071^15^0.006^~1~^~AS~^^^1^0.031^0.127^14^0.058^0.085^~2, 3~^~06/01/2007~ -~13047~^~620~^0.012^15^0.000^~1~^~A~^^^1^0.010^0.016^14^0.011^0.013^~2, 3~^~06/01/2007~ -~13047~^~621~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.000^0.000^~1, 2, 3~^~06/01/2007~ -~13047~^~624~^0.003^15^0.000^~1~^~A~^^^1^0.000^0.007^14^0.003^0.004^~1, 2, 3~^~06/01/2007~ -~13047~^~625~^0.074^15^0.008^~1~^~A~^^^1^0.028^0.120^14^0.057^0.091^~2, 3~^~06/01/2007~ -~13047~^~626~^0.347^15^0.030^~1~^~A~^^^1^0.181^0.535^14^0.282^0.412^~2, 3~^~06/01/2007~ -~13047~^~627~^0.002^15^0.001^~1~^~A~^^^1^0.000^0.007^14^0.000^0.003^~1, 2, 3~^~06/01/2007~ -~13047~^~628~^0.015^15^0.001^~1~^~A~^^^1^0.007^0.026^14^0.012^0.018^~2, 3~^~06/01/2007~ -~13047~^~629~^0.001^15^0.001^~1~^~A~^^^1^0.000^0.006^14^0.000^0.003^~1, 2, 3~^~06/01/2007~ -~13047~^~630~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13047~^~631~^0.016^15^0.002^~1~^~A~^^^1^0.006^0.031^14^0.013^0.020^~2, 3~^~06/01/2007~ -~13047~^~645~^4.800^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~646~^0.532^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~652~^0.078^15^0.006^~1~^~A~^^^1^0.051^0.142^14^0.065^0.090^~2, 3~^~06/01/2007~ -~13047~^~653~^0.147^15^0.009^~1~^~A~^^^1^0.107^0.233^14^0.127^0.166^~2, 3~^~06/01/2007~ -~13047~^~654~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13047~^~663~^0.615^15^0.050^~1~^~A~^^^1^0.327^1.070^14^0.508^0.721^~2, 3~^~06/01/2007~ -~13047~^~665~^0.136^15^0.013^~1~^~A~^^^1^0.074^0.261^14^0.109^0.164^~2, 3~^~06/01/2007~ -~13047~^~670~^0.109^15^0.008^~1~^~A~^^^1^0.056^0.197^14^0.091^0.127^~2, 3~^~06/01/2007~ -~13047~^~672~^0.001^15^0.001^~1~^~A~^^^1^0.000^0.007^14^0.000^0.003^~1, 2, 3~^~06/01/2007~ -~13047~^~674~^3.748^15^0.301^~1~^~A~^^^1^2.170^6.113^14^3.103^4.394^~2, 3~^~06/01/2007~ -~13047~^~675~^0.181^15^0.016^~1~^~A~^^^1^0.108^0.292^14^0.148^0.214^~2, 3~^~06/01/2007~ -~13047~^~685~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13047~^~687~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2007~ -~13047~^~689~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.004^14^0.000^0.002^~1, 2, 3~^~06/01/2007~ -~13047~^~693~^0.615^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~695~^0.136^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~ -~13047~^~697~^0.002^15^0.000^~1~^~A~^^^1^0.000^0.005^14^0.001^0.002^~1, 2, 3~^~06/01/2007~ -~13047~^~851~^0.071^15^0.006^~1~^~A~^^^1^0.031^0.127^14^0.058^0.085^~2, 3~^~06/01/2007~ -~13055~^~312~^0.090^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13055~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13055~^~405~^0.158^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13055~^~406~^4.175^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13055~^~410~^0.572^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~415~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13055~^~501~^0.190^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~502~^1.157^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~503~^1.318^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~504~^2.304^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~505~^2.448^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~506~^0.754^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~507~^0.374^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~508~^1.144^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~509~^0.923^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~510~^1.437^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~511~^1.873^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~512~^0.925^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~513~^1.761^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~514~^2.639^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~515~^4.349^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~516~^1.764^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~517~^1.381^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~518~^1.141^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13055~^~521~^0.304^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2004~ -~13055~^~606~^6.888^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13055~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13055~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13055~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13055~^~610~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~611~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~612~^0.551^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~613~^4.221^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~614~^2.021^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~617~^6.727^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~618~^0.432^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~619~^0.189^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~620~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~626~^0.726^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~628~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13055~^~645~^7.481^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13055~^~646~^0.642^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~312~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~315~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~404~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~405~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~406~^6.842^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~410~^0.619^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~415~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13065~^~501~^0.139^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~502~^0.847^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~503~^0.965^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~504~^1.688^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~505~^1.793^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~506~^0.552^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~508~^0.838^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~509~^0.676^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~510~^1.052^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~511~^1.372^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~512~^0.677^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~513~^1.290^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~514~^1.932^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~515~^3.185^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~516~^1.292^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~517~^1.011^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~518~^0.836^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13065~^~521~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13065~^~606~^3.443^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13065~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13065~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13065~^~610~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~611~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~612~^0.250^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~613~^2.170^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~614~^0.991^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~617~^3.029^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~618~^0.195^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~619~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13065~^~626~^0.343^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~628~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13065~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13065~^~631~^0.012^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13065~^~645~^3.380^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13065~^~646~^0.335^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13066~^~312~^0.119^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~404~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~405~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~406~^4.420^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~415~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~501~^0.302^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~502~^1.178^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~503~^1.213^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~504~^2.132^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~505~^2.244^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~506~^0.691^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~507~^0.302^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~508~^1.053^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~509~^0.906^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~510~^1.312^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~511~^1.705^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~512~^0.924^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~513~^1.627^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~514~^2.465^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~515~^4.053^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~516~^1.472^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~517~^1.191^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~518~^1.032^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~521~^0.283^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13066~^~606~^6.920^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13066~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13066~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13066~^~610~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~611~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~612~^0.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~613~^4.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~614~^2.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~617~^6.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~618~^0.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~619~^0.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~626~^0.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~628~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~645~^6.940^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13066~^~646~^0.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13067~^~312~^0.088^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~405~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~406~^7.471^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~410~^0.542^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~415~^0.549^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13067~^~501~^0.181^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~502~^1.100^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~503~^1.253^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~504~^2.191^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~505~^2.328^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~506~^0.717^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~507~^0.355^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~508~^1.088^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~509~^0.878^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~510~^1.367^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~511~^1.781^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~512~^0.879^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~513~^1.675^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~514~^2.509^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~515~^4.136^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~516~^1.677^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~517~^1.313^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~518~^1.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13067~^~521~^0.289^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13067~^~606~^3.840^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13067~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~610~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~612~^0.275^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~613~^2.459^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~614~^1.077^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~617~^3.395^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~618~^0.223^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~619~^0.104^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~620~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~626~^0.342^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~ -~13067~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13067~^~645~^3.751^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13067~^~646~^0.364^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13068~^~312~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13068~^~404~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~405~^0.106^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~406~^7.353^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~410~^0.647^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~415~^0.596^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13068~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~502~^0.867^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~503~^0.988^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~504~^1.727^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~505~^1.835^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~506~^0.565^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~508~^0.858^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~509~^0.692^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~510~^1.077^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~511~^1.404^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~512~^0.693^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~513~^1.320^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~514~^1.978^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~515~^3.260^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~516~^1.322^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~517~^1.035^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~518~^0.855^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13068~^~521~^0.228^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2004~ -~13068~^~606~^2.612^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~13068~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13068~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13068~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13068~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~612~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~613~^1.682^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~614~^0.736^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~617~^2.257^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~618~^0.152^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~619~^0.059^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~620~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13068~^~626~^0.211^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~628~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13068~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13068~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13068~^~645~^2.477^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~13068~^~646~^0.259^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~ -~13069~^~312~^0.124^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~315~^0.019^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~404~^0.140^7^0.061^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~405~^0.190^7^0.200^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~406~^4.600^7^0.212^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~410~^0.380^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~415~^0.360^7^0.049^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~501~^0.184^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~502~^1.119^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~503~^1.275^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~504~^2.229^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~505~^2.368^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~506~^0.730^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~507~^0.362^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~508~^1.107^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~509~^0.893^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~510~^1.390^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~511~^1.812^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~512~^0.894^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~513~^1.703^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~514~^2.552^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~515~^4.206^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~516~^1.706^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~517~^1.336^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~518~^1.104^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13069~^~521~^0.294^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13069~^~606~^5.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13069~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13069~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13069~^~610~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~611~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~612~^0.420^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~613~^3.200^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~614~^1.710^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~617~^4.850^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~618~^0.280^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~619~^0.090^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~620~^0.020^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13069~^~626~^0.480^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~627~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~628~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13069~^~630~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13069~^~645~^5.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13069~^~646~^0.390^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13070~^~312~^0.086^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13070~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~405~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~406~^8.208^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~410~^0.546^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~415~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13070~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~502~^1.111^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~503~^1.266^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~504~^2.213^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~505~^2.351^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~506~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~507~^0.359^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~508~^1.099^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~509~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~510~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~511~^1.799^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~512~^0.888^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~513~^1.691^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~514~^2.534^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~515~^4.176^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~516~^1.694^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~517~^1.326^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~518~^1.096^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13070~^~521~^0.292^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13070~^~606~^3.452^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13070~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~612~^0.238^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~613~^2.219^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~614~^0.978^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~617~^2.984^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~618~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~619~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~620~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~626~^0.288^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~628~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13070~^~645~^3.279^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13070~^~646~^0.329^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13095~^~312~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~315~^0.012^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~404~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~405~^0.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~406~^3.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~410~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~415~^0.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~501~^0.196^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~502~^0.765^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~503~^0.787^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~504~^1.384^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~505~^1.457^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~506~^0.448^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~507~^0.196^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~508~^0.684^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~509~^0.588^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~510~^0.852^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~511~^1.107^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~512~^0.600^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~513~^1.056^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~514~^1.600^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~515~^2.631^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~516~^0.955^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~517~^0.773^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~518~^0.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~606~^9.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~610~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~611~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~612~^0.710^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~613~^5.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~614~^2.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~617~^8.470^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~618~^0.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~619~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~626~^1.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~645~^9.580^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13095~^~646~^0.770^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13096~^~312~^0.088^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~405~^0.117^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~406~^7.209^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~410~^0.523^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~415~^0.530^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13096~^~501~^0.175^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~502~^1.062^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~503~^1.209^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~504~^2.115^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~505~^2.246^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~506~^0.692^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~507~^0.343^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~508~^1.050^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~509~^0.847^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~510~^1.319^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~511~^1.719^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~512~^0.848^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~513~^1.616^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~514~^2.421^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~515~^3.991^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~516~^1.619^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~517~^1.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~518~^1.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13096~^~521~^0.279^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13096~^~606~^6.506^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13096~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~610~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~611~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~612~^0.487^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~613~^3.866^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~614~^2.099^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~617~^6.266^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~618~^0.457^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~619~^0.105^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~620~^0.060^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~626~^0.577^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~628~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13096~^~645~^6.863^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13096~^~646~^0.622^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13097~^~312~^0.067^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~404~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~405~^0.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~406~^3.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~410~^0.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~415~^0.420^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~501~^0.225^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~502~^0.879^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~503~^0.905^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~504~^1.591^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~505~^1.675^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~506~^0.515^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~507~^0.225^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~508~^0.786^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~509~^0.676^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~510~^0.979^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~511~^1.272^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~512~^0.689^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~513~^1.214^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~514~^1.839^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~515~^3.025^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~516~^1.098^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~517~^0.889^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~518~^0.770^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~606~^3.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~612~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~613~^1.930^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~614~^1.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~617~^3.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~618~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~619~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~626~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~645~^3.560^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13097~^~646~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13098~^~312~^0.092^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13098~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~405~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~406~^8.521^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~410~^0.567^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~415~^0.601^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13098~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~502~^1.154^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~503~^1.314^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~504~^2.297^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~505~^2.441^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~506~^0.752^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~507~^0.373^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~508~^1.141^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~509~^0.920^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~510~^1.433^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~511~^1.867^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~512~^0.922^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~513~^1.756^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~514~^2.631^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~515~^4.336^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~516~^1.759^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~517~^1.377^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~518~^1.138^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13098~^~521~^0.303^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13098~^~606~^3.430^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13098~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~610~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~612~^0.244^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~613~^1.998^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~614~^1.174^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~617~^3.321^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~618~^0.262^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~619~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~620~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~626~^0.270^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13098~^~645~^3.595^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13098~^~646~^0.332^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13147~^~312~^0.053^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~315~^0.011^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~404~^0.071^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~405~^0.118^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~406~^2.556^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~410~^0.241^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~415~^0.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~501~^0.161^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~502~^0.629^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~503~^0.647^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~504~^1.138^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~505~^1.198^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~506~^0.368^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~507~^0.161^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~508~^0.562^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~509~^0.484^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~510~^0.700^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~511~^0.910^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~512~^0.493^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~513~^0.868^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~514~^1.315^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~515~^2.163^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~516~^0.785^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~517~^0.636^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~518~^0.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~606~^15.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~610~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~611~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~612~^1.200^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~613~^9.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~614~^4.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~617~^13.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~618~^0.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~619~^0.480^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~626~^1.880^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~628~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13147~^~645~^16.390^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13147~^~646~^1.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~312~^0.099^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~315~^0.013^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~404~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~405~^0.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~406~^2.452^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~410~^0.252^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~415~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~501~^0.142^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~502~^0.862^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~503~^0.981^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~504~^1.716^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~505~^1.823^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~506~^0.562^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~507~^0.278^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~508~^0.852^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~509~^0.687^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~510~^1.070^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~511~^1.395^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~512~^0.688^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~513~^1.311^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~514~^1.965^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~515~^3.238^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~516~^1.313^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~517~^1.028^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~518~^0.850^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13148~^~521~^0.227^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~13148~^~606~^17.800^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13148~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13148~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13148~^~610~^0.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~611~^0.120^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~612~^1.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~613~^10.480^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~614~^4.920^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~617~^16.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~618~^0.980^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~619~^0.500^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13148~^~626~^1.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13148~^~628~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13148~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13148~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13148~^~645~^18.880^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13148~^~646~^1.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~312~^0.069^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~404~^0.094^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~405~^0.154^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~406~^3.412^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~410~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~415~^0.390^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~501~^0.213^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~502~^0.832^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~503~^0.856^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~504~^1.506^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~505~^1.585^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~506~^0.488^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~507~^0.213^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~508~^0.744^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~509~^0.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~510~^0.927^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~511~^1.204^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~512~^0.652^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~513~^1.149^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~514~^1.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~515~^2.862^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~516~^1.039^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~517~^0.841^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~518~^0.728^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~606~^4.330^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~612~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~613~^2.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~614~^1.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~617~^3.790^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~618~^0.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~619~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~626~^0.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13149~^~645~^4.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13149~^~646~^0.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~312~^0.107^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~404~^0.065^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~405~^0.202^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~406~^3.208^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~410~^0.337^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~501~^0.202^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~502~^1.229^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~503~^1.399^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~504~^2.447^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~505~^2.600^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~506~^0.801^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~507~^0.397^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~508~^1.215^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~509~^0.980^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~510~^1.526^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~511~^1.989^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~512~^0.982^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~513~^1.870^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~514~^2.802^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~515~^4.618^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~516~^1.873^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~517~^1.466^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~518~^1.212^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13150~^~521~^0.323^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~13150~^~606~^7.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13150~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13150~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13150~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~612~^0.570^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~613~^4.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~614~^2.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~617~^7.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~618~^0.430^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~619~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~620~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13150~^~626~^0.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13150~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13150~^~645~^7.980^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13150~^~646~^0.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~312~^0.106^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~404~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~406~^4.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~410~^0.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~415~^0.400^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~501~^0.192^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~502~^1.167^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~503~^1.329^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~504~^2.324^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~505~^2.469^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~506~^0.761^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~507~^0.377^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~508~^1.154^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~509~^0.931^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~510~^1.449^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~511~^1.889^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~512~^0.932^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~513~^1.776^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~514~^2.661^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~515~^4.385^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~516~^1.779^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~517~^1.393^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~518~^1.151^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13156~^~521~^0.307^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~13156~^~606~^2.560^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13156~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~612~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~613~^1.610^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~614~^0.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~617~^2.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~618~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~619~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13156~^~626~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13156~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13156~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13156~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13156~^~645~^3.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13156~^~646~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~312~^0.107^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~404~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~406~^4.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~410~^0.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~415~^0.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~501~^0.328^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~502~^1.278^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~503~^1.315^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~504~^2.312^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~505~^2.434^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~506~^0.749^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~507~^0.328^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~508~^1.142^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~509~^0.983^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~510~^1.423^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~511~^1.849^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~512~^1.002^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~513~^1.765^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~514~^2.673^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~515~^4.395^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~516~^1.596^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~517~^1.292^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~518~^1.119^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~606~^1.830^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~612~^0.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~613~^1.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~614~^0.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~617~^1.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~618~^0.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~626~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~645~^2.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13158~^~646~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13165~^~312~^0.122^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~315~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~405~^0.206^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~406~^4.496^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~410~^0.634^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~415~^0.313^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13165~^~501~^0.212^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~502~^1.287^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~503~^1.465^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~504~^2.562^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~505~^2.722^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~506~^0.839^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~507~^0.416^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~508~^1.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~509~^1.026^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~510~^1.598^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~511~^2.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~512~^1.028^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~513~^1.958^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~514~^2.934^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~515~^4.836^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~516~^1.961^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~517~^1.536^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~518~^1.269^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13165~^~521~^0.338^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13165~^~606~^3.638^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13165~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~610~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~611~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~612~^0.287^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~613~^2.221^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~614~^1.087^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~617~^3.582^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~618~^0.234^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~619~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~620~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~626~^0.377^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~628~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13165~^~645~^3.975^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13165~^~646~^0.341^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13227~^~312~^0.071^7^0.013^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~315~^0.014^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~404~^0.100^7^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~405~^0.220^7^0.014^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~406~^5.740^7^0.337^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~410~^0.350^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~415~^0.470^7^0.026^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~501~^0.244^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~502~^0.950^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~503~^0.978^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~504~^1.719^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~505~^1.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~506~^0.557^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~507~^0.244^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~508~^0.849^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~509~^0.731^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~510~^1.058^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~511~^1.375^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~512~^0.745^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~513~^1.312^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~514~^1.987^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~515~^3.268^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~516~^1.187^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~517~^0.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~518~^0.832^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~606~^1.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~607~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~608~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~609~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~610~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~611~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~612~^0.090^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~613~^0.770^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~614~^0.370^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~617~^1.520^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~618~^0.110^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~619~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~620~^0.030^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~621~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~626~^0.160^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~627~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~628~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~629~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~630~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~631~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~645~^1.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13227~^~646~^0.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~312~^0.172^7^0.014^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~315~^0.020^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~404~^0.140^7^0.002^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~405~^0.210^7^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~406~^5.890^7^0.378^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~410~^0.410^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~415~^0.370^7^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~501~^0.377^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~502~^1.471^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~503~^1.514^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~504~^2.662^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~505~^2.802^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~506~^0.862^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~507~^0.377^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~508~^1.315^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~509~^1.132^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~510~^1.638^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~511~^2.129^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~512~^1.153^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~513~^2.032^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~514~^3.077^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~515~^5.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~516~^1.838^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~517~^1.487^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~518~^1.288^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~606~^2.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~607~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~608~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~609~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~610~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~611~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~612~^0.180^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~613~^1.350^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~614~^0.610^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~617~^2.410^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~618~^0.170^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~619~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~620~^0.030^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~621~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~626~^0.310^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~627~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~628~^0.010^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~629~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~630~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~631~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~645~^2.860^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13228~^~646~^0.210^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13231~^~312~^0.058^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~404~^0.051^0^^~4~^~BFPN~^~23385~^^^^^^^^^~07/01/2013~ -~13231~^~405~^0.275^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~406~^5.412^4^0.250^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~415~^0.647^4^0.030^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~501~^0.240^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~502~^0.995^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~503~^0.991^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~504~^1.815^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~505~^2.021^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~507~^0.211^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~508~^0.844^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~509~^0.789^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~510~^1.048^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~511~^1.414^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~512~^0.775^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~513~^1.264^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~514~^2.037^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~515~^3.454^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~516~^0.911^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~517~^0.884^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~518~^0.856^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13231~^~521~^0.102^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~13231~^~605~^0.356^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~606~^2.894^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~610~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~611~^0.006^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~612~^0.182^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~613~^1.652^4^0.067^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~614~^0.933^4^0.034^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~615~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~617~^2.952^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13231~^~618~^0.317^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13231~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13231~^~620~^0.042^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~625~^0.046^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~626~^0.230^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13231~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~628~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13231~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~645~^3.300^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~646~^0.399^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~652~^0.029^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~653~^0.079^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~654~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~662~^0.019^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~663~^0.302^4^0.011^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~665~^0.035^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~670~^0.026^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~673~^0.211^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~674~^2.650^4^0.056^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~675~^0.256^4^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~687~^0.057^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13231~^~693~^0.322^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13231~^~851~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13231~^~853~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~312~^0.072^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13232~^~405~^0.263^4^0.018^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~406~^6.225^4^0.239^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~415~^0.734^4^0.031^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~501~^0.308^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~502~^1.279^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~503~^1.273^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~504~^2.332^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~505~^2.597^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~506~^0.723^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~507~^0.271^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~508~^1.084^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~509~^1.014^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~510~^1.346^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~511~^1.817^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~512~^0.995^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~513~^1.624^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~514~^2.617^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~515~^4.438^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~516~^1.170^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~517~^1.135^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~518~^1.100^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13232~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~13232~^~605~^0.565^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~606~^4.407^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~610~^0.007^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~611~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~612~^0.292^4^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~613~^2.510^4^0.068^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~614~^1.413^4^0.025^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~615~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~617~^4.484^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~618~^0.465^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~620~^0.049^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~625~^0.076^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~626~^0.365^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~628~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13232~^~631~^0.011^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~645~^5.034^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~646~^0.569^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~652~^0.046^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~653~^0.121^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~662~^0.030^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~663~^0.479^4^0.022^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~665~^0.056^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~670~^0.041^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~672~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~673~^0.335^4^0.022^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~674~^4.004^4^0.063^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~675~^0.368^4^0.030^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~687~^0.087^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13232~^~693~^0.509^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~695~^0.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13232~^~851~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13232~^~853~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~312~^0.061^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~404~^0.051^0^^~4~^~BFPN~^~23385~^^^^^^^^^~05/01/2013~ -~13235~^~405~^0.225^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~406~^5.765^4^0.160^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~410~^0.347^0^^~4~^~BFPN~^~23385~^^^^^^^^^~05/01/2013~ -~13235~^~415~^0.634^4^0.011^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~502~^1.085^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~503~^1.080^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~504~^1.979^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~505~^2.204^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~506~^0.613^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~508~^0.920^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~509~^0.861^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~510~^1.143^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~511~^1.542^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~512~^0.845^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~513~^1.378^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~514~^2.221^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~515~^3.766^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~516~^0.993^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~517~^0.963^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~518~^0.934^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~521~^0.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~13235~^~605~^0.303^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~606~^2.782^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~610~^0.007^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~611~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~612~^0.174^4^0.018^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~613~^1.577^4^0.130^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~614~^0.911^4^0.072^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~615~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~617~^2.775^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13235~^~618~^0.292^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13235~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13235~^~620~^0.041^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~10/01/1995~ -~13235~^~625~^0.038^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~626~^0.216^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13235~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~628~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13235~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~645~^3.091^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~646~^0.374^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~652~^0.025^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~653~^0.077^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~654~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~662~^0.016^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~663~^0.255^4^0.058^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~665~^0.033^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~670~^0.023^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~673~^0.200^4^0.021^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~674~^2.520^4^0.178^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~675~^0.236^4^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~687~^0.049^4^0.012^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13235~^~693~^0.271^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13235~^~851~^0.012^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13235~^~853~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~312~^0.079^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~404~^0.057^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13236~^~405~^0.270^4^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~406~^6.292^4^0.209^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~410~^0.307^0^^~4~^~BFPN~^~23392~^^^^^^^^^~05/01/2013~ -~13236~^~415~^0.758^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~501~^0.325^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~502~^1.349^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~503~^1.343^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~504~^2.460^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~505~^2.740^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~506~^0.762^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~507~^0.286^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~508~^1.143^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~509~^1.070^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~510~^1.421^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~511~^1.917^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~512~^1.050^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~513~^1.713^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~514~^2.761^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~515~^4.682^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~516~^1.234^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~517~^1.198^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~518~^1.161^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~13236~^~605~^0.595^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~606~^4.600^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~610~^0.012^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~611~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2001~ -~13236~^~612~^0.301^4^0.022^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~613~^2.607^4^0.116^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~614~^1.488^4^0.061^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~615~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~617~^4.602^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13236~^~618~^0.474^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13236~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13236~^~620~^0.053^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~10/01/1995~ -~13236~^~625~^0.065^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~626~^0.381^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13236~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~628~^0.021^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13236~^~631~^0.013^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~645~^5.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~646~^0.583^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~652~^0.047^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~653~^0.124^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~654~^0.004^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~662~^0.030^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~663~^0.505^4^0.026^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~665~^0.060^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~670~^0.041^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~673~^0.351^4^0.026^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~674~^4.097^4^0.174^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~675~^0.373^4^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~687~^0.090^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13236~^~693~^0.535^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~695~^0.060^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13236~^~851~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13236~^~853~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13284~^~312~^0.076^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~315~^0.012^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~404~^0.076^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~405~^0.166^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~406~^3.624^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~410~^0.257^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~415~^0.302^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~501~^0.237^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~502~^0.925^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~503~^0.952^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~504~^1.673^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~505~^1.761^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~506~^0.542^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~507~^0.237^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~508~^0.827^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~509~^0.711^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~510~^1.030^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~511~^1.338^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~512~^0.725^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~513~^1.277^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~514~^1.934^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~515~^3.180^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~516~^1.155^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~517~^0.935^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~518~^0.809^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~606~^2.650^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~610~^0.008^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~611~^0.008^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~612~^0.204^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~613~^1.570^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~614~^0.868^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~617~^2.552^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~618~^0.159^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~619~^0.015^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~620~^0.015^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~626~^0.219^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~ -~13284~^~628~^0.000^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~645~^2.771^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13284~^~646~^0.189^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~ -~13285~^~312~^0.101^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~315~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~404~^0.070^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~405~^0.247^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~406~^3.874^6^0.143^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~410~^0.760^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~415~^0.318^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~501~^0.350^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~502~^1.383^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~503~^1.337^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~504~^2.528^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~505~^2.748^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~506~^0.891^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~507~^0.325^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~508~^1.191^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~509~^1.083^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~510~^1.413^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~511~^2.054^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~512~^1.007^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~513~^1.765^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~514~^2.812^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~515~^4.974^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~516~^1.360^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~517~^1.257^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~518~^1.200^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~521~^0.154^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~605~^0.429^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~606~^4.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~612~^0.246^6^0.031^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~613~^2.263^6^0.259^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~614~^1.359^6^0.154^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~617~^4.552^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~618~^0.432^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13285~^~620~^0.063^6^0.008^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~625~^0.056^6^0.008^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~626~^0.343^6^0.040^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~628~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~629~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13285~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13285~^~645~^5.068^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~646~^0.519^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~653~^0.117^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~654~^0.013^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~663~^0.429^6^0.053^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~670~^0.034^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~674~^4.123^6^0.498^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~675~^0.398^6^0.049^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~687~^0.093^6^0.011^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~693~^0.429^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13285~^~851~^0.018^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13285~^~859~^0.298^6^0.037^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~312~^0.078^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~315~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~405~^0.191^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~406~^4.332^6^0.182^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~410~^0.745^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~415~^0.426^6^0.022^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~501~^0.242^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~502~^0.957^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~503~^0.925^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~504~^1.749^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~505~^1.901^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~506~^0.616^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~507~^0.225^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~508~^0.824^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~509~^0.749^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~510~^0.977^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~511~^1.421^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~512~^0.697^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~513~^1.221^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~514~^1.945^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~515~^3.441^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~516~^0.941^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~517~^0.870^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~518~^0.830^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~521~^0.107^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~605~^0.296^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13293~^~606~^2.580^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13293~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~612~^0.170^6^0.027^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~613~^1.473^6^0.230^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~614~^0.852^6^0.134^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~617~^2.824^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13293~^~618~^0.265^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13293~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13293~^~620~^0.042^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13293~^~625~^0.039^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~626~^0.230^6^0.034^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~628~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13293~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13293~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13293~^~645~^3.160^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13293~^~646~^0.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13293~^~653~^0.076^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~654~^0.008^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~663~^0.296^6^0.047^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~670~^0.021^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13293~^~674~^2.529^6^0.414^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~675~^0.244^6^0.042^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~687~^0.062^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~693~^0.296^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13293~^~851~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13293~^~859~^0.213^6^0.032^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~312~^0.081^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~315~^0.013^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~405~^0.192^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~406~^4.290^4^0.226^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~410~^0.690^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~415~^0.406^4^0.028^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~501~^0.243^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~502~^0.960^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~503~^0.928^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~504~^1.754^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~505~^1.907^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~506~^0.618^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~507~^0.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~508~^0.826^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~509~^0.752^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~510~^0.980^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~511~^1.425^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~512~^0.699^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~513~^1.225^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~514~^1.951^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~515~^3.452^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~516~^0.944^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~517~^0.872^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~518~^0.833^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~521~^0.107^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~605~^0.292^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13294~^~606~^2.760^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13294~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~612~^0.185^4^0.033^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~613~^1.584^4^0.286^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~614~^0.903^4^0.167^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~615~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~617~^2.887^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13294~^~618~^0.271^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13294~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13294~^~620~^0.044^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13294~^~625~^0.045^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~626~^0.239^4^0.042^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13294~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13294~^~645~^3.240^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13294~^~646~^0.320^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13294~^~653~^0.078^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~654~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~663~^0.292^4^0.058^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~670~^0.022^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13294~^~674~^2.595^4^0.514^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~675~^0.249^4^0.052^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~687~^0.060^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13294~^~693~^0.292^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13294~^~851~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13294~^~859~^0.212^4^0.039^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13317~^~312~^0.077^2^^~1~^~A~^^^1^0.074^0.080^1^^^^~02/01/2007~ -~13317~^~315~^0.022^2^^~1~^~A~^^^1^0.022^0.022^^^^^~02/01/2007~ -~13317~^~404~^0.030^2^^~1~^~A~^^^1^0.026^0.034^1^^^^~02/01/2007~ -~13317~^~405~^0.176^2^^~1~^~A~^^^1^0.176^0.176^^^^^~02/01/2007~ -~13317~^~406~^5.305^2^^~1~^~A~^^^1^5.140^5.470^1^^^^~02/01/2007~ -~13317~^~410~^0.545^2^^~1~^~A~^^^1^0.540^0.550^1^^^^~02/01/2007~ -~13317~^~415~^0.435^2^^~1~^~A~^^^1^0.360^0.509^1^^^^~02/01/2007~ -~13317~^~606~^8.805^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13317~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~13317~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~13317~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~612~^0.690^2^^~1~^~A~^^^1^0.656^0.724^1^^^^~02/01/2007~ -~13317~^~613~^4.939^2^^~1~^~A~^^^1^4.756^5.122^1^^^^~02/01/2007~ -~13317~^~614~^2.782^2^^~1~^~A~^^^1^2.779^2.785^1^^^^~02/01/2007~ -~13317~^~615~^0.022^2^^~1~^~A~^^^1^0.021^0.023^1^^^^~02/01/2007~ -~13317~^~617~^8.452^2^^~1~^~A~^^^1^8.155^8.749^1^^^^~02/01/2007~ -~13317~^~618~^0.592^2^^~1~^~A~^^^1^0.561^0.622^1^^^^~02/01/2007~ -~13317~^~619~^0.044^2^^~1~^~A~^^^1^0.037^0.051^1^^^^~02/01/2007~ -~13317~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13317~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~625~^0.179^2^^~1~^~A~^^^1^0.159^0.199^1^^^^~02/01/2007~ -~13317~^~626~^0.688^2^^~1~^~A~^^^1^0.630^0.746^1^^^^~02/01/2007~ -~13317~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~13317~^~628~^0.039^2^^~1~^~A~^^^1^0.038^0.040^1^^^^~02/01/2007~ -~13317~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13317~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~13317~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13317~^~645~^9.358^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13317~^~646~^0.656^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13317~^~652~^0.111^2^^~1~^~A~^^^1^0.106^0.115^1^^^^~02/01/2007~ -~13317~^~653~^0.261^2^^~1~^~A~^^^1^0.255^0.267^1^^^^~02/01/2007~ -~13317~^~663~^1.198^2^^~1~^~A~^^^1^1.183^1.212^1^^^^~02/01/2007~ -~13317~^~669~^0.257^2^^~1~^~A~^^^1^0.254^0.259^1^^^^~02/01/2007~ -~13317~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~674~^7.255^2^^~1~^~A~^^^1^6.943^7.566^1^^^^~02/01/2007~ -~13317~^~675~^0.335^2^^~1~^~A~^^^1^0.302^0.367^1^^^^~02/01/2007~ -~13317~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~02/01/2007~ -~13317~^~851~^0.044^2^^~1~^~A~^^^1^0.037^0.051^1^^^^~02/01/2007~ -~13318~^~312~^0.287^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~315~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~404~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~405~^0.199^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~406~^3.550^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~410~^2.010^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~415~^0.226^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~605~^0.610^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13318~^~606~^2.300^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13318~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13318~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~612~^0.026^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~613~^0.919^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~614~^1.273^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~615~^0.017^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~617~^1.646^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~618~^0.041^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~13318~^~620~^0.319^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~621~^0.851^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2004~ -~13318~^~624~^0.034^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~626~^0.021^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13318~^~628~^0.222^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13318~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13318~^~631~^0.374^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2004~ -~13318~^~645~^1.890^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~646~^1.586^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~13318~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~653~^0.031^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~13318~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13318~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13319~^~312~^0.220^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~315~^0.032^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~404~^0.130^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~405~^0.260^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~406~^3.780^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~410~^0.570^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~415~^0.390^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~501~^0.103^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~502~^0.597^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~503~^0.487^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~504~^0.943^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~505~^0.752^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~506~^0.261^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~507~^0.223^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~508~^0.635^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~509~^0.446^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~510~^0.617^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~511~^0.686^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~512~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~513~^0.696^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~514~^1.126^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~515~^1.534^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~516~^0.593^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~517~^0.521^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~518~^0.728^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~606~^3.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~612~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~613~^1.980^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~614~^1.620^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~617~^3.470^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~618~^0.840^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~619~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~620~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~621~^0.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~626~^0.110^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~628~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13319~^~631~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~645~^3.980^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13319~^~646~^2.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13320~^~312~^0.230^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~315~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~404~^0.069^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~405~^0.217^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~406~^3.620^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~410~^1.210^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~415~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~605~^0.510^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13320~^~606~^2.394^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13320~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13320~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13320~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13320~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~612~^0.029^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~613~^0.974^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~614~^1.305^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~615~^0.018^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~617~^1.667^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~618~^0.039^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~619~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~13320~^~620~^0.355^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~621~^0.855^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~13320~^~624~^0.035^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~626~^0.023^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13320~^~628~^0.193^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2011~ -~13320~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2004~ -~13320~^~631~^0.383^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~645~^1.882^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13320~^~646~^1.632^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13320~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~653~^0.032^0^^~1~^~A~^^^^^^^^^^~06/01/2011~ -~13320~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13320~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2004~ -~13321~^~312~^0.396^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~315~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~404~^0.238^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~405~^0.906^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~406~^7.530^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~410~^1.790^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~415~^0.279^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~605~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~606~^1.383^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~612~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~613~^0.621^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~614~^0.623^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~617~^1.060^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~618~^0.395^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~13321~^~620~^0.128^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~626~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13321~^~645~^1.137^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~646~^0.546^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~652~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~653~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~672~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~685~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13321~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13321~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~312~^0.559^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~315~^0.033^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~404~^0.101^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~405~^1.210^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~406~^6.680^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~410~^1.600^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~415~^0.245^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~605~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~606~^1.404^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13322~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13322~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13322~^~612~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~613~^0.610^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~614~^0.669^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~617~^0.936^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~618~^0.736^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~619~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13322~^~620~^0.219^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~626~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13322~^~645~^1.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~646~^0.985^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~652~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~653~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~672~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~685~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13322~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13322~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13322~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~312~^0.426^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~315~^0.142^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~404~^0.357^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~405~^2.840^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~406~^8.030^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~410~^3.970^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~415~^0.665^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~605~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~606~^0.868^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~612~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~613~^0.393^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~614~^0.374^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~617~^0.535^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~618~^0.292^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~619~^0.013^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~13323~^~620~^0.228^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~624~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~626~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~628~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13323~^~645~^0.586^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~646~^0.545^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~685~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13323~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13323~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~312~^0.564^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~315~^0.185^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~405~^2.970^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~406~^3.920^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~410~^1.560^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~415~^0.391^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13324~^~605~^0.270^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~606~^1.439^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13324~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13324~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~612~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~613~^0.649^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~614~^0.617^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~615~^0.023^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~617~^0.868^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~618~^0.626^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~619~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~620~^0.443^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~624~^0.076^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~626~^0.069^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~628~^0.023^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13324~^~645~^0.960^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13324~^~646~^1.138^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13324~^~652~^0.016^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~653~^0.038^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~672~^0.026^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~685~^0.011^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13324~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13324~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~08/01/2013~ -~13325~^~312~^9.755^4^1.366^~1~^~A~^^^1^7.760^13.600^3^5.407^14.103^~2, 3~^~02/01/2003~ -~13325~^~315~^0.310^4^0.018^~1~^~A~^^^1^0.259^0.342^3^0.251^0.368^~2, 3~^~02/01/2003~ -~13325~^~404~^0.189^4^0.007^~1~^~A~^^^1^0.168^0.202^3^0.165^0.212^~2, 3~^~02/01/2003~ -~13325~^~405~^2.755^4^0.075^~1~^~A~^^^1^2.570^2.900^3^2.517^2.993^~2, 3~^~02/01/2003~ -~13325~^~406~^13.175^4^0.987^~1~^~A~^^^1^11.400^16.000^3^10.034^16.316^~2, 3~^~02/01/2003~ -~13325~^~410~^7.173^4^0.209^~1~^~A~^^^1^6.640^7.660^3^6.508^7.837^~2, 3~^~02/01/2003~ -~13325~^~415~^1.083^4^0.018^~1~^~A~^^^1^1.050^1.130^3^1.025^1.140^~2, 3~^~02/01/2003~ -~13325~^~501~^0.263^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~502~^0.869^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~503~^0.967^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~504~^1.910^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~505~^1.607^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~506~^0.543^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~507~^0.376^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~508~^1.084^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~509~^0.807^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~510~^1.260^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~511~^1.241^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~512~^0.629^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~513~^1.164^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~514~^1.927^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~515~^2.612^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~516~^1.164^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~517~^0.961^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~518~^0.905^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~521~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13325~^~605~^0.170^4^0.016^~1~^~A~^^^1^0.140^0.210^3^0.120^0.220^~2, 3~^~02/01/2003~ -~13325~^~606~^1.233^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13325~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~13325~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~612~^0.015^4^0.003^~1~^~A~^^^1^0.009^0.023^3^0.004^0.026^~2, 3~^~02/01/2003~ -~13325~^~613~^0.312^4^0.044^~1~^~A~^^^1^0.221^0.409^3^0.173^0.451^~2, 3~^~02/01/2003~ -~13325~^~614~^0.862^4^0.022^~1~^~A~^^^1^0.823^0.917^3^0.793^0.930^~2, 3~^~02/01/2003~ -~13325~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~617~^0.423^4^0.051^~1~^~A~^^^1^0.288^0.506^3^0.261^0.585^~2, 3~^~02/01/2003~ -~13325~^~618~^0.299^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~13325~^~619~^0.016^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~ -~13325~^~620~^0.141^4^0.028^~1~^~A~^^^1^0.093^0.219^3^0.053^0.229^~2, 3~^~02/01/2003~ -~13325~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~624~^0.009^4^0.001^~1~^~A~^^^1^0.006^0.011^3^0.005^0.012^~2, 3~^~02/01/2003~ -~13325~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~626~^0.036^4^0.008^~1~^~A~^^^1^0.021^0.053^3^0.011^0.061^~2, 3~^~02/01/2003~ -~13325~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~628~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.009^3^0.004^0.009^~2, 3~^~02/01/2003~ -~13325~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13325~^~645~^0.479^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13325~^~646~^0.465^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~13325~^~652~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.004^0.009^~2, 3~^~02/01/2003~ -~13325~^~653~^0.030^4^0.001^~1~^~A~^^^1^0.026^0.033^3^0.025^0.034^~2, 3~^~02/01/2003~ -~13325~^~672~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.012^3^0.007^0.013^~2, 3~^~02/01/2003~ -~13325~^~675~^0.299^4^0.017^~1~^~A~^^^1^0.250^0.327^3^0.245^0.352^~2, 3~^~02/01/2003~ -~13325~^~685~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~02/01/2003~ -~13325~^~687~^0.013^4^0.003^~1~^~A~^^^1^0.006^0.022^3^0.003^0.024^~2, 3~^~02/01/2003~ -~13325~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13325~^~851~^0.007^4^0.001^~1~^~A~^^^1^0.004^0.009^3^0.004^0.010^~2, 3~^~02/01/2003~ -~13326~^~312~^14.283^4^2.902^~1~^~A~^^^1^8.130^22.000^3^5.047^23.518^~2, 3~^~02/01/2003~ -~13326~^~315~^0.356^4^0.040^~1~^~A~^^^1^0.252^0.433^3^0.229^0.482^~2, 3~^~02/01/2003~ -~13326~^~404~^0.194^4^0.010^~1~^~A~^^^1^0.164^0.211^3^0.161^0.227^~2, 3~^~02/01/2003~ -~13326~^~405~^3.425^4^0.158^~1~^~A~^^^1^3.150^3.870^3^2.921^3.929^~2, 3~^~02/01/2003~ -~13326~^~406~^17.525^4^0.594^~1~^~A~^^^1^16.000^18.900^3^15.636^19.414^~2, 3~^~02/01/2003~ -~13326~^~410~^7.110^4^0.151^~1~^~A~^^^1^6.690^7.380^3^6.628^7.592^~2, 3~^~02/01/2003~ -~13326~^~415~^1.017^4^0.032^~1~^~A~^^^1^0.950^1.100^3^0.914^1.119^~2, 3~^~02/01/2003~ -~13326~^~501~^0.368^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~502~^1.215^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~503~^1.352^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~504~^2.670^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~505~^2.247^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~506~^0.759^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~507~^0.526^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~508~^1.515^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~509~^1.128^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~510~^1.761^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~511~^1.735^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~512~^0.879^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~513~^1.627^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~514~^2.694^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~515~^3.652^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~516~^1.627^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~517~^1.343^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~518~^1.265^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~521~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13326~^~605~^0.365^4^0.011^~1~^~A~^^^1^0.180^0.230^3^0.176^0.244^~2, 3~^~08/01/2013~ -~13326~^~606~^2.947^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13326~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13326~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13326~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~612~^0.038^4^0.005^~1~^~A~^^^1^0.013^0.032^3^0.006^0.037^~2, 3~^~08/01/2013~ -~13326~^~613~^0.794^4^0.045^~1~^~A~^^^1^0.361^0.566^3^0.313^0.601^~2, 3~^~08/01/2013~ -~13326~^~614~^2.015^4^0.052^~1~^~A~^^^1^1.049^1.259^3^0.996^1.324^~2, 3~^~08/01/2013~ -~13326~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~617~^1.016^4^0.039^~1~^~A~^^^1^0.489^0.671^3^0.460^0.709^~2, 3~^~08/01/2013~ -~13326~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~13326~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~ -~13326~^~620~^0.397^4^0.023^~1~^~A~^^^1^0.175^0.286^3^0.156^0.301^~2, 3~^~08/01/2013~ -~13326~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~624~^0.016^4^0.003^~1~^~A~^^^1^0.000^0.014^3^-0.001^0.019^~1, 2, 3~^~08/01/2013~ -~13326~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~626~^0.083^4^0.009^~1~^~A~^^^1^0.030^0.066^3^0.018^0.077^~2, 3~^~08/01/2013~ -~13326~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~628~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~08/01/2013~ -~13326~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13326~^~645~^1.124^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13326~^~646~^1.109^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13326~^~652~^0.013^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.001^0.016^~1, 2, 3~^~08/01/2013~ -~13326~^~653~^0.071^4^0.001^~1~^~A~^^^1^0.039^0.045^3^0.037^0.045^~2, 3~^~08/01/2013~ -~13326~^~672~^0.011^4^0.004^~1~^~A~^^^1^0.000^0.015^3^-0.006^0.018^~1, 2, 3~^~08/01/2013~ -~13326~^~675~^0.659^4^0.041^~1~^~A~^^^1^0.281^0.482^3^0.249^0.510^~2, 3~^~08/01/2013~ -~13326~^~685~^0.025^4^0.001^~1~^~A~^^^1^0.011^0.018^3^0.010^0.019^~2, 3~^~08/01/2013~ -~13326~^~687~^0.022^4^0.002^~1~^~A~^^^1^0.009^0.016^3^0.007^0.018^~2, 3~^~08/01/2013~ -~13326~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13326~^~851~^0.017^4^0.003^~1~^~A~^^^1^0.000^0.015^3^-0.001^0.020^~1, 2, 3~^~08/01/2013~ -~13327~^~312~^14.588^4^2.589^~1~^~A~^^^1^7.350^19.300^3^6.349^22.826^~2, 3~^~02/01/2003~ -~13327~^~315~^0.356^4^0.018^~1~^~A~^^^1^0.310^0.396^3^0.299^0.412^~2, 3~^~02/01/2003~ -~13327~^~404~^0.177^4^0.009^~1~^~A~^^^1^0.151^0.190^3^0.148^0.206^~2, 3~^~02/01/2003~ -~13327~^~405~^3.425^4^0.277^~1~^~A~^^^1^2.900^4.140^3^2.544^4.306^~2, 3~^~02/01/2003~ -~13327~^~406~^17.475^4^1.182^~1~^~A~^^^1^15.100^20.400^3^13.713^21.237^~2, 3~^~02/01/2003~ -~13327~^~410~^6.943^4^0.149^~1~^~A~^^^1^6.520^7.200^3^6.468^7.417^~2, 3~^~02/01/2003~ -~13327~^~415~^1.027^4^0.019^~1~^~A~^^^1^0.998^1.080^3^0.966^1.088^~2, 3~^~02/01/2003~ -~13327~^~501~^0.335^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~502~^1.108^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~503~^1.233^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~504~^2.435^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~505~^2.048^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~506~^0.692^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~507~^0.479^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~508~^1.382^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~509~^1.029^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~510~^1.606^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~511~^1.582^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~512~^0.802^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~513~^1.484^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~514~^2.456^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~515~^3.330^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~516~^1.484^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~517~^1.225^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~518~^1.154^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~521~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~13327~^~605~^0.335^4^0.014^~1~^~A~^^^1^0.160^0.220^3^0.152^0.243^~2, 3~^~08/01/2013~ -~13327~^~606~^2.530^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13327~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13327~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~612~^0.037^4^0.006^~1~^~A~^^^1^0.012^0.040^3^0.001^0.042^~2, 3~^~08/01/2013~ -~13327~^~613~^0.724^4^0.077^~1~^~A~^^^1^0.298^0.628^3^0.181^0.673^~2, 3~^~08/01/2013~ -~13327~^~614~^1.680^4^0.023^~1~^~A~^^^1^0.930^1.040^3^0.918^1.065^~2, 3~^~08/01/2013~ -~13327~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~617~^0.987^4^0.088^~1~^~A~^^^1^0.418^0.827^3^0.302^0.863^~2, 3~^~08/01/2013~ -~13327~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~ -~13327~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~08/01/2013~ -~13327~^~620~^0.308^4^0.034^~1~^~A~^^^1^0.116^0.262^3^0.075^0.289^~2, 3~^~08/01/2013~ -~13327~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~624~^0.015^4^0.003^~1~^~A~^^^1^0.000^0.014^3^-0.002^0.020^~1, 2, 3~^~08/01/2013~ -~13327~^~625~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.006^3^-0.003^0.006^~1, 2, 3~^~08/01/2013~ -~13327~^~626~^0.086^4^0.012^~1~^~A~^^^1^0.032^0.086^3^0.012^0.090^~2, 3~^~08/01/2013~ -~13327~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~628~^0.008^4^0.002^~1~^~A~^^^1^0.000^0.007^3^0.000^0.010^~1, 2, 3~^~08/01/2013~ -~13327~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~13327~^~645~^1.106^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13327~^~646~^1.021^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~13327~^~652~^0.014^4^0.001^~1~^~A~^^^1^0.006^0.011^3^0.005^0.012^~2, 3~^~08/01/2013~ -~13327~^~653~^0.060^4^0.001^~1~^~A~^^^1^0.035^0.037^3^0.034^0.037^~2, 3~^~08/01/2013~ -~13327~^~672~^0.017^4^0.004^~1~^~A~^^^1^0.000^0.017^3^-0.002^0.022^~1, 2, 3~^~08/01/2013~ -~13327~^~675~^0.624^4^0.032^~1~^~A~^^^1^0.315^0.440^3^0.268^0.469^~2, 3~^~08/01/2013~ -~13327~^~685~^0.019^4^0.001^~1~^~A~^^^1^0.008^0.015^3^0.006^0.016^~2, 3~^~08/01/2013~ -~13327~^~687~^0.021^4^0.002^~1~^~A~^^^1^0.008^0.019^3^0.005^0.020^~2, 3~^~08/01/2013~ -~13327~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~13327~^~851~^0.017^4^0.003^~1~^~A~^^^1^0.005^0.017^3^0.001^0.018^~2, 3~^~08/01/2013~ -~13328~^~312~^0.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~315~^0.019^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~404~^0.047^3^0.033^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~405~^0.230^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~406~^4.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~410~^1.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~415~^0.040^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~501~^0.148^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~502~^0.604^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~503~^0.772^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~504~^1.190^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~505~^1.148^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~506~^0.324^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~507~^0.249^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~508~^0.658^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~509~^0.365^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~510~^0.798^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~511~^0.980^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~512~^0.492^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~513~^1.001^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~514~^0.977^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~515~^1.726^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~516~^0.734^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~517~^1.659^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~518~^0.816^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~606~^0.860^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~612~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~613~^0.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~614~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~617~^0.470^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~618~^0.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~620~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~626~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~628~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13328~^~645~^0.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13328~^~646~^0.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~312~^0.221^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~315~^0.015^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~404~^0.035^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~405~^0.143^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~406~^2.492^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~410~^0.623^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~415~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~501~^0.186^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~502~^0.761^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~503~^0.973^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~504~^1.498^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~505~^1.446^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~506~^0.408^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~507~^0.313^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~508~^0.829^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~509~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~510~^1.005^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~511~^1.234^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~512~^0.620^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~513~^1.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~514~^1.231^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~515~^2.174^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~516~^0.924^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~517~^2.089^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~518~^1.028^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~606~^1.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~612~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~613~^0.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~614~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~617~^0.700^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~618~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~619~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~620~^0.210^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~626~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13329~^~645~^0.950^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13329~^~646~^0.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~312~^0.056^20^0.002^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~315~^0.012^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~404~^0.072^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~405~^0.118^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~406~^2.546^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~410~^0.279^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~415~^0.290^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~501~^0.168^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~502~^0.474^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~503~^0.584^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~504~^1.199^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~505~^1.161^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~506~^0.426^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~507~^0.230^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~508~^0.644^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~509~^0.381^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~510~^0.915^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~511~^1.154^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~512~^0.443^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~513~^1.005^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~514~^1.312^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~515~^2.121^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~516~^1.238^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~517~^0.922^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~518~^0.570^30^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~606~^11.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~611~^0.040^3^0.009^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~612~^0.640^3^0.010^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~613~^5.660^3^0.119^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~614~^4.870^3^0.190^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~617~^7.590^3^0.178^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~618~^0.590^3^0.020^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~619~^0.170^3^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~626~^0.560^3^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~628~^0.070^3^0.001^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13330~^~645~^8.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13330~^~646~^0.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~312~^0.060^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~315~^0.150^12^0.005^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~404~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~405~^0.445^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~406~^4.450^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~410~^3.900^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~415~^0.200^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~501~^0.203^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~502~^0.728^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~503~^0.794^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~504~^1.226^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~505~^1.158^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~506~^0.284^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~507~^0.201^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~508~^0.653^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~509~^0.686^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~510~^0.842^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~511~^0.897^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~512~^0.309^5^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~513~^0.804^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~514~^1.507^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~515~^1.316^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~516~^0.957^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13331~^~517~^0.804^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~518~^0.628^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~606~^6.410^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~612~^0.150^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~613~^3.430^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~614~^2.400^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~617~^5.330^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~618~^2.030^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~619~^0.130^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~620~^0.800^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~626~^1.110^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~645~^6.440^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13331~^~646~^3.470^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~312~^0.089^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~315~^0.208^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~404~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~405~^0.485^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~406~^3.970^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~410~^4.248^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~415~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~501~^0.351^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~502~^1.257^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~503~^1.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~504~^2.116^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~505~^1.999^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~506~^0.490^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~507~^0.347^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~508~^1.127^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~509~^1.184^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~510~^1.453^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~511~^1.548^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~512~^0.533^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~513~^1.388^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~514~^2.602^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~515~^2.272^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~516~^1.652^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13332~^~517~^1.388^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~518~^1.084^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~606~^5.900^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~612~^0.140^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~613~^3.160^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~614~^2.210^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~617~^4.900^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~618~^1.870^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~619~^0.120^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~620~^0.740^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~626~^1.020^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~645~^5.930^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13332~^~646~^3.200^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~312~^0.168^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~315~^0.073^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~404~^0.050^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~405~^0.370^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~406~^8.400^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~410~^1.081^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~415~^0.070^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~501~^0.190^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~502~^0.720^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~503~^0.706^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~504~^1.616^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~505~^1.323^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~506~^0.337^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~507~^0.530^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~508~^0.735^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~509~^0.521^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~510~^1.101^3^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~511~^1.060^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~512~^0.656^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~513~^1.417^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~514~^1.291^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~515~^1.672^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~516~^1.107^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~517~^1.107^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~518~^0.632^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13333~^~606~^1.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~611~^0.010^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~612~^0.070^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~613~^0.530^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~614~^0.380^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~617~^0.680^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~618~^0.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~619~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~626~^0.120^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~645~^0.780^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13333~^~646~^0.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~312~^0.924^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~315~^0.075^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~404~^0.048^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~405~^0.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~406~^5.567^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~410~^0.876^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~415~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~501~^0.261^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~502~^0.988^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~503~^0.968^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~504~^2.217^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~505~^1.815^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~506~^0.462^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~507~^0.727^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~508~^1.008^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~509~^0.715^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~510~^1.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~511~^1.454^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~512~^0.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~513~^1.944^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~514~^1.771^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~515~^2.293^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~516~^1.518^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~517~^1.518^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~518~^0.867^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13334~^~606~^1.390^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~611~^0.020^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~612~^0.100^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~613~^0.750^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~614~^0.540^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~617~^0.960^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~618~^0.310^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~619~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~626~^0.160^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~645~^1.120^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13334~^~646~^0.310^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~312~^0.007^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~315~^0.001^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~404~^0.007^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~405~^0.013^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~406~^0.259^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~410~^0.058^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~13335~^~415~^0.030^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13335~^~501~^0.010^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~502~^0.060^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~503~^0.068^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~504~^0.119^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~505~^0.127^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~506~^0.039^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~507~^0.019^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~508~^0.059^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~509~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~510~^0.074^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~511~^0.097^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~512~^0.048^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~513~^0.091^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~514~^0.137^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~515~^0.225^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~516~^0.091^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~517~^0.072^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~518~^0.059^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~ -~13335~^~521~^0.016^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~13335~^~606~^52.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~611~^0.070^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~612~^2.800^36^0.086^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~613~^22.570^42^0.414^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~614~^24.680^42^0.818^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~617~^28.860^42^0.700^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~618~^2.150^40^0.234^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~619~^0.860^31^0.092^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~626~^2.180^36^0.109^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~645~^31.520^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13335~^~646~^3.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~312~^0.048^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~315~^0.120^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~404~^0.109^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~405~^0.345^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~406~^3.452^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~410~^3.026^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~415~^0.160^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~501~^0.094^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~502~^0.440^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~503~^0.415^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~504~^0.813^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~505~^1.013^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~506~^0.170^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~507~^0.156^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~508~^0.349^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~509~^0.532^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~510~^0.528^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~511~^0.803^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~512~^0.214^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13337~^~513~^0.624^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~514~^1.169^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~515~^1.021^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~516~^0.743^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~517~^0.624^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~518~^0.487^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~606~^7.010^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~612~^0.160^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~613~^3.750^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~614~^2.630^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~617~^5.830^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~618~^2.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~619~^0.140^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~626~^1.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~645~^7.050^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13337~^~646~^3.800^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~312~^0.043^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~315~^0.099^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~404~^0.084^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~405~^0.225^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~406~^1.840^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~410~^1.972^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~415~^0.080^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~501~^0.168^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~502~^0.790^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~503~^0.745^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~504~^1.458^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~505~^1.818^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~506~^0.304^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~507~^0.280^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~508~^0.626^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~509~^0.454^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~510~^0.947^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~511~^1.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~512~^0.385^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13338~^~513~^1.119^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~514~^2.098^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~515~^1.832^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~516~^1.332^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~517~^1.119^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~518~^0.874^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~606~^8.610^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~612~^0.200^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~613~^4.600^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~614~^3.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~617~^7.150^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~618~^2.720^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~619~^0.170^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~626~^1.490^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~645~^8.640^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13338~^~646~^4.660^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~312~^0.170^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~315~^0.026^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~404~^0.125^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~405~^0.340^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~406~^4.240^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~410~^0.653^3^0.041^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~415~^0.310^2^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~501~^0.114^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~502~^0.648^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~503~^0.641^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~504~^1.113^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~505~^1.149^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~506~^0.315^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~507~^0.195^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~508~^0.615^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~509~^0.482^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~510~^0.713^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~511~^0.949^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~512~^0.386^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~513~^0.858^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~514~^1.361^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~515~^2.053^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~516~^0.894^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~517~^0.696^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~518~^0.601^4^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~606~^7.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~13339~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~610~^0.020^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~611~^0.090^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~612~^0.570^4^0.038^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~613~^4.220^4^0.198^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~614~^2.100^4^0.477^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~617~^6.550^4^0.318^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~618~^0.580^4^0.042^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~619~^0.000^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~620~^0.310^3^0.077^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~626~^0.550^4^0.036^~1~^^^^^^^^^^^~05/01/1990~ -~13339~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~628~^0.140^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13339~^~645~^7.240^0^^~1~^^^^^^^^^^^~02/01/1996~ -~13339~^~646~^0.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13340~^~312~^0.148^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~404~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~405~^0.294^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~406~^3.490^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~410~^0.745^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~415~^0.155^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~605~^0.840^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~606~^8.125^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~13340~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13340~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~611~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~612~^0.732^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~613~^4.643^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~614~^2.347^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~617~^8.905^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~618~^0.526^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~619~^0.091^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~13340~^~620~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~625~^0.192^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~626~^0.929^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~628~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13340~^~645~^10.102^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~13340~^~646~^0.746^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~ -~13340~^~652~^0.126^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~653~^0.253^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13340~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13340~^~851~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~312~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~315~^0.085^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~405~^0.064^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~406~^0.881^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~410~^0.227^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~415~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~605~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~606~^1.291^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13341~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~612~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~613~^0.643^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~614~^0.463^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~617~^1.413^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~618~^0.116^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~09/01/2004~ -~13341~^~620~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~625~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~626~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~13341~^~645~^1.533^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~646~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~652~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~653~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~672~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13341~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~13341~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~13342~^~312~^0.063^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~315~^0.017^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~ -~13342~^~404~^0.039^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~405~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~406~^4.583^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~410~^0.354^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~415~^0.246^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~ -~13342~^~501~^0.206^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~502~^0.702^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~503~^0.718^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~504~^1.342^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~505~^1.398^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~506~^0.391^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~507~^0.161^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~508~^0.635^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~509~^0.523^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~510~^0.812^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~511~^1.130^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~512~^0.533^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~513~^1.093^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~514~^1.529^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~515~^2.633^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~516~^1.243^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~517~^0.849^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~518~^0.648^0^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~13342~^~606~^11.538^0^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/1998~ -~13342~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/1998~ -~13342~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13342~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~612~^0.820^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~613~^6.342^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~614~^3.906^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~615~^0.033^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~617~^9.714^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~618~^0.368^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~619~^0.120^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~624~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~625~^0.208^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~626~^0.981^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/1998~ -~13342~^~628~^0.135^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~629~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/1998~ -~13342~^~645~^11.038^0^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~646~^0.488^0^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~652~^0.138^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~653~^0.301^2^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13342~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2000~ -~13343~^~312~^0.120^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13343~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~405~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~406~^4.926^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~410~^0.641^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~415~^0.323^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13343~^~501~^0.214^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~502~^1.303^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~503~^1.484^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~504~^2.595^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~505~^2.757^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~506~^0.849^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~507~^0.421^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~508~^1.288^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~509~^1.039^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~510~^1.618^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~511~^2.109^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~512~^1.041^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~513~^1.983^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~514~^2.971^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~515~^4.897^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~516~^1.986^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~517~^1.555^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~518~^1.285^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13343~^~521~^0.343^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13343~^~606~^3.053^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13343~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~610~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~612~^0.228^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~613~^1.799^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~614~^1.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~617~^3.146^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~618~^0.232^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~619~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~626~^0.286^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13343~^~645~^3.436^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13343~^~646~^0.282^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13344~^~312~^0.058^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~315~^0.010^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~404~^0.060^22^0.002^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~405~^0.120^22^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~406~^2.970^22^0.158^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~410~^0.217^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~415~^0.170^22^0.006^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~501~^0.114^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~502~^0.472^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~503~^0.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~504~^0.918^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~505~^0.958^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~506~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~507~^0.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~508~^0.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~509~^0.408^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~510~^0.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~511~^0.772^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~512~^0.398^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~513~^0.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~514~^1.224^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~515~^2.036^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~516~^1.044^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~517~^0.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~518~^0.504^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~606~^15.950^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~610~^0.160^22^0.024^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~611~^0.110^22^0.016^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~612~^1.310^22^0.040^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~613~^8.480^22^0.136^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~614~^5.030^22^0.116^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~617~^16.210^22^0.197^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~618~^1.670^22^0.146^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~619~^0.520^22^0.055^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~626~^2.470^22^0.053^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13344~^~645~^18.680^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13344~^~646~^2.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~312~^0.116^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13345~^~315~^0.017^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13345~^~404~^0.090^22^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~405~^0.260^22^0.013^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~406~^6.470^22^0.179^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~410~^0.343^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13345~^~415~^0.310^22^0.013^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~501~^0.285^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~502~^1.182^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~503~^1.352^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~504~^2.299^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~505~^2.399^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~506~^0.726^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~507~^0.401^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~508~^1.127^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~509~^1.022^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~510~^1.377^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~511~^1.933^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~512~^0.997^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~513~^2.254^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~514~^3.065^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~515~^5.098^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~516~^2.614^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~517~^2.254^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~518~^1.262^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~606~^14.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13345~^~610~^0.130^22^0.026^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~611~^0.100^22^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~612~^1.220^22^0.060^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~613~^7.660^22^0.171^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~614~^4.480^22^0.171^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~617~^14.580^22^0.206^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~618~^1.250^22^0.105^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~619~^0.330^22^0.041^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~626~^2.270^22^0.084^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~645~^16.850^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13345~^~646~^1.580^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~312~^0.110^6^0.010^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~315~^0.020^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~404~^0.043^13^0.006^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~405~^0.157^13^0.009^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~406~^3.660^5^0.353^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~410~^0.570^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~415~^0.290^5^0.018^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~501~^0.134^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~502~^0.554^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~503~^0.634^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~504~^1.078^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~505~^1.125^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~506~^0.341^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~507~^0.188^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~508~^0.529^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~509~^0.479^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~510~^0.646^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~511~^0.907^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~512~^0.467^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~513~^1.057^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~514~^1.438^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~515~^2.391^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~516~^1.226^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~517~^1.057^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~518~^0.592^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~606~^4.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~610~^0.020^5^0.007^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~611~^0.020^5^0.003^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~612~^0.360^5^0.044^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~613~^2.740^5^0.222^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~614~^1.340^5^0.185^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~617~^6.080^5^0.753^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~618~^0.380^5^0.057^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~619~^0.150^5^0.050^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~626~^1.100^5^0.155^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13346~^~645~^7.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13346~^~646~^0.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~312~^0.154^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13347~^~315~^0.022^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13347~^~404~^0.026^13^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~405~^0.170^13^0.007^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~406~^3.030^5^0.407^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~410~^0.420^5^0.013^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~415~^0.230^5^0.009^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~501~^0.119^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~502~^0.726^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~503~^0.827^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~504~^1.445^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~505~^1.536^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~506~^0.473^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~507~^0.234^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~508~^0.718^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~509~^0.579^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~510~^0.901^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~511~^1.175^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~512~^0.580^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~513~^1.105^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~514~^1.655^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~515~^2.728^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~516~^1.106^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~517~^0.866^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~518~^0.716^0^^~1~^~A~^^^^^^^^^^~11/01/2002~ -~13347~^~521~^0.191^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2003~ -~13347~^~606~^6.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13347~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13347~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~13347~^~610~^0.040^5^0.013^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~611~^0.020^5^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~612~^0.500^5^0.102^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~613~^3.690^5^0.394^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~614~^1.740^5^0.358^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~617~^7.780^5^0.470^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~618~^0.540^5^0.081^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~619~^0.130^5^0.016^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~626~^1.440^5^0.177^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~645~^9.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13347~^~646~^0.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~312~^0.064^23^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~315~^0.014^23^0.002^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~404~^0.020^11^0.006^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~405~^0.147^8^0.010^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~406~^2.430^6^0.127^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~410~^0.626^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13348~^~415~^0.130^7^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~501~^0.247^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~502~^1.023^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~503~^1.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~504~^1.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~505~^2.076^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~506~^0.629^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~507~^0.347^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~508~^0.975^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~509~^0.884^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~510~^1.192^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~511~^1.673^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~512~^0.863^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~513~^1.951^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~514~^2.653^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~515~^4.413^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~516~^2.263^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~517~^1.951^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~518~^1.092^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~606~^6.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~610~^0.100^6^0.029^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~611~^0.070^6^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~612~^0.420^8^0.025^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~613~^3.040^8^0.139^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~614~^2.290^8^0.116^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~617~^5.000^8^0.276^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~618~^0.420^8^0.071^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~619~^0.210^8^0.030^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~626~^0.800^8^0.085^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~645~^5.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13348~^~646~^0.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13349~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~405~^0.190^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~406~^4.395^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~410~^0.800^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~415~^0.454^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~501~^0.241^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~502~^0.952^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~503~^0.921^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~504~^1.741^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~505~^1.892^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~506~^0.613^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~507~^0.224^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~508~^0.820^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~509~^0.746^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~510~^0.973^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~511~^1.414^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~512~^0.694^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~513~^1.215^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~514~^1.936^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~515~^3.425^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~516~^0.937^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~517~^0.865^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~518~^0.826^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~521~^0.106^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~606~^2.572^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~612~^0.165^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~613~^1.456^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~614~^0.863^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~617~^2.777^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~618~^0.285^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13349~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~625~^0.030^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~626~^0.220^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13349~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~645~^5.868^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13349~^~646~^0.615^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13349~^~653~^0.081^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~663~^0.307^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~670~^0.022^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~674~^2.470^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~675~^0.263^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~687~^0.064^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13349~^~693~^0.307^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13349~^~851~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13349~^~859~^0.215^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13350~^~312~^0.074^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~315~^0.017^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~404~^0.065^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~405~^0.163^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~406~^5.164^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~410~^0.566^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~415~^0.386^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~501~^0.189^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~502~^1.148^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~503~^1.308^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~504~^2.287^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~505~^2.429^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~506~^0.749^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~507~^0.371^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~508~^1.135^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~509~^0.916^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~510~^1.426^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~511~^1.859^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~512~^0.917^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~513~^1.748^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~514~^2.618^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~515~^4.316^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~516~^1.750^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~517~^1.370^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~518~^1.132^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~521~^0.302^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~606~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~13350~^~612~^0.070^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~613~^0.588^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~614~^0.292^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~617~^0.762^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~618~^0.055^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~619~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~620~^0.010^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~626~^0.078^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13350~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~ -~13350~^~645~^0.840^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13350~^~646~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~13351~^~312~^0.110^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~315~^0.017^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~405~^0.247^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~406~^3.617^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~410~^0.920^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~415~^0.418^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~501~^0.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~502~^1.200^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~503~^1.160^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~504~^2.194^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~505~^2.385^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~506~^0.773^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~508~^1.033^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~509~^0.940^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~510~^1.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~511~^1.782^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~512~^0.874^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~513~^1.532^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~514~^2.440^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~515~^4.316^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~516~^1.180^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~517~^1.091^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~518~^1.041^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~521~^0.134^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~605~^0.798^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~606~^5.280^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~612~^0.347^6^0.023^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~613~^2.867^6^0.174^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~614~^1.885^6^0.100^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~615~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~617~^5.748^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13351~^~618~^0.645^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13351~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13351~^~620~^0.089^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~625~^0.069^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~626~^0.422^6^0.011^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~628~^0.023^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13351~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13351~^~645~^6.384^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~646~^0.761^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~653~^0.164^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~654~^0.015^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~663~^0.798^6^0.058^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~670~^0.051^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~674~^4.951^6^0.194^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~675~^0.594^6^0.033^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~687~^0.121^6^0.007^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~693~^0.798^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13351~^~851~^0.023^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13351~^~859~^0.559^6^0.037^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~312~^0.111^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~315~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~405~^0.243^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~406~^3.600^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~410~^0.870^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~415~^0.399^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~501~^0.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~502~^1.199^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~503~^1.160^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~504~^2.192^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~505~^2.383^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~506~^0.773^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~508~^1.033^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~509~^0.939^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~510~^1.225^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~511~^1.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~512~^0.874^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~513~^1.531^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~514~^2.439^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~515~^4.314^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~516~^1.180^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~517~^1.090^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~518~^1.041^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~521~^0.134^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~605~^0.813^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~606~^5.565^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~612~^0.365^4^0.028^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~613~^2.979^4^0.217^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~614~^2.031^4^0.124^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~615~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~617~^5.963^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13352~^~618~^0.658^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13352~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13352~^~620~^0.095^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~625~^0.071^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~626~^0.430^4^0.014^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~628~^0.022^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13352~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13352~^~645~^6.607^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~646~^0.777^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~653~^0.170^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~654~^0.016^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~663~^0.813^4^0.072^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~670~^0.052^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~672~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~674~^5.149^4^0.241^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~675~^0.607^4^0.041^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~687~^0.122^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~693~^0.813^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13352~^~851~^0.021^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13352~^~859~^0.557^4^0.046^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13353~^~312~^0.120^7^0.018^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~315~^0.052^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~404~^0.145^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~405~^0.291^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~406~^4.838^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~410~^0.687^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~415~^0.250^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~501~^0.137^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~502~^0.742^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~503~^0.714^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~504~^1.313^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~505~^1.459^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~506~^0.420^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~507~^0.198^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~508~^0.672^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~509~^0.511^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~510~^0.824^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~511~^1.316^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~512~^0.499^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~513~^1.307^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~514~^1.617^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~515~^2.627^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~516~^1.800^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~517~^1.246^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~518~^0.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13353~^~606~^1.410^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~610~^0.010^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~611~^0.020^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~612~^0.090^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~613~^0.680^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~614~^0.540^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~617~^1.230^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~618~^0.130^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~619~^0.040^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~626~^0.220^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~645~^1.450^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13353~^~646~^0.170^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13354~^~312~^0.104^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~315~^0.017^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~405~^0.250^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~406~^3.710^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~410~^0.970^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~415~^0.461^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~501~^0.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~502~^1.201^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~503~^1.161^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~504~^2.196^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~505~^2.387^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~506~^0.774^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~508~^1.034^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~509~^0.941^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~510~^1.227^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~511~^1.784^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~512~^0.875^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~513~^1.533^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~514~^2.442^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~515~^4.320^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~516~^1.181^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~517~^1.092^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~518~^1.042^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~521~^0.134^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~605~^0.756^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13354~^~606~^4.730^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13354~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~612~^0.312^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~613~^2.630^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~614~^1.622^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~617~^5.302^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13354~^~618~^0.604^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13354~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13354~^~620~^0.077^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~625~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~626~^0.401^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~628~^0.024^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13354~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13354~^~645~^4.730^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13354~^~646~^0.710^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13354~^~653~^0.151^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~654~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~663~^0.756^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~670~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13354~^~674~^4.545^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~675~^0.555^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~687~^0.118^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~693~^0.756^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13354~^~851~^0.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13354~^~859~^0.562^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13355~^~312~^0.091^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~315~^0.027^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~404~^0.052^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~405~^0.161^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~406~^4.260^2^^~1~^~A~^^^1^4.220^4.300^^^^^~05/01/2004~ -~13355~^~410~^0.265^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~415~^0.221^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~501~^0.141^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~502~^0.857^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~503~^0.976^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~504~^1.706^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~505~^1.812^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~506~^0.558^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~507~^0.277^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~508~^0.847^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~509~^0.683^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~510~^1.065^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~511~^1.390^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~512~^0.684^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~513~^1.303^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~514~^1.955^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~515~^3.221^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~516~^1.306^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~517~^1.022^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~518~^0.845^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~521~^0.225^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~606~^2.681^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13355~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~610~^0.006^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~611~^0.006^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~612~^0.223^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~613~^1.654^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~614~^0.792^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~617~^1.905^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~618~^0.116^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~619~^0.011^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~620~^0.018^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~626~^0.209^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~13355~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~ -~13355~^~645~^2.118^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13355~^~646~^0.145^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~13356~^~312~^0.077^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~405~^0.197^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~406~^3.287^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~410~^0.805^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~415~^0.405^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~501~^0.223^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~502~^0.879^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~503~^0.850^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~504~^1.608^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~505~^1.747^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~506~^0.566^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~507~^0.207^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~508~^0.757^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~509~^0.689^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~510~^0.898^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~511~^1.306^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~512~^0.641^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~513~^1.123^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~514~^1.788^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~515~^3.163^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~516~^0.865^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~517~^0.799^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~518~^0.763^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~521~^0.098^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~605~^0.611^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~606~^4.132^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~612~^0.265^6^0.016^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~613~^2.237^6^0.122^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~614~^1.488^6^0.096^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~615~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~617~^4.410^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13356~^~618~^0.456^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13356~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13356~^~620~^0.052^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13356~^~625~^0.056^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~626~^0.314^6^0.025^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~628~^0.014^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~629~^0.000^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13356~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13356~^~645~^4.889^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~646~^0.526^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~653~^0.131^6^0.010^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~654~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~663~^0.611^6^0.047^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~670~^0.037^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13356~^~674~^3.799^6^0.179^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~675~^0.419^6^0.039^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~687~^0.095^6^0.008^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~693~^0.611^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13356~^~851~^0.018^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13356~^~859~^0.429^6^0.041^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13357~^~312~^0.072^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~315~^0.009^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~404~^0.050^5^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~405~^0.140^5^0.009^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~406~^3.190^5^0.255^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~410~^0.188^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~415~^0.110^5^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~501~^0.129^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~502~^0.533^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~503~^0.609^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~504~^1.036^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~505~^1.081^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~506~^0.327^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~507~^0.181^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~508~^0.508^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~509~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~510~^0.621^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~511~^0.871^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~512~^0.449^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~513~^1.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~514~^1.381^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~515~^2.298^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~516~^1.178^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~517~^1.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~518~^0.569^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~606~^11.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~610~^0.090^5^0.024^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~611~^0.060^5^0.014^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~612~^0.880^5^0.057^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~613~^6.030^5^0.280^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~614~^3.860^5^0.209^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~617~^11.440^5^0.300^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~618~^0.960^5^0.138^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~619~^0.090^5^0.048^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~626~^1.530^5^0.100^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13357~^~645~^12.970^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13357~^~646~^1.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~312~^0.026^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~315~^0.029^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~404~^0.083^13^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~405~^0.175^31^0.004^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~406~^4.577^31^0.088^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~410~^0.590^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~415~^0.350^33^0.016^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~501~^0.165^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~502~^0.846^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~503~^0.827^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~504~^1.508^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~505~^1.647^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~506~^0.488^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~507~^0.239^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~508~^0.756^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~509~^0.610^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~510~^0.927^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~511~^1.363^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~512~^0.585^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~513~^1.334^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~514~^1.793^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~515~^2.910^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~516~^1.499^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~517~^1.098^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~518~^0.824^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~606~^1.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~610~^0.020^7^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~611~^0.020^7^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~612~^0.110^7^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~613~^0.940^7^0.074^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~614~^0.660^7^0.074^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~617~^1.570^7^0.124^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~618~^0.190^7^0.037^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~619~^0.040^7^0.017^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~626~^0.260^7^0.037^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/1990~ -~13358~^~645~^1.830^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13358~^~646~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13359~^~312~^0.076^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~405~^0.200^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~406~^3.347^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~410~^0.870^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~415~^0.407^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~501~^0.221^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~502~^0.871^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~503~^0.842^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~504~^1.592^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~505~^1.730^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~506~^0.561^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~507~^0.205^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~508~^0.750^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~509~^0.682^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~510~^0.890^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~511~^1.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~512~^0.634^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~513~^1.112^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~514~^1.771^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~515~^3.132^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~516~^0.857^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~517~^0.792^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~518~^0.756^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~521~^0.097^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~605~^0.676^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~606~^4.588^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~612~^0.294^4^0.020^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~613~^2.472^4^0.152^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~614~^1.663^4^0.119^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~615~^0.003^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~617~^4.915^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13359~^~618~^0.498^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13359~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13359~^~620~^0.056^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13359~^~625~^0.061^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~626~^0.349^4^0.031^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~628~^0.018^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13359~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13359~^~645~^5.450^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~646~^0.576^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~653~^0.146^4^0.012^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~654~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~663~^0.676^4^0.058^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~670~^0.041^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13359~^~674~^4.239^4^0.222^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~675~^0.456^4^0.049^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~687~^0.107^4^0.010^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~693~^0.676^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13359~^~851~^0.021^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13359~^~859~^0.468^4^0.051^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13361~^~312~^0.088^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~315~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~404~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~405~^0.269^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~406~^5.519^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~410~^0.457^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~415~^0.542^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~501~^0.294^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~502~^1.291^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~503~^1.311^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~504~^2.404^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~505~^2.630^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~506~^0.783^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~507~^0.314^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~508~^1.140^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~509~^1.020^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~510~^1.407^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~511~^1.924^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~512~^1.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~513~^1.741^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~514~^2.715^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~515~^4.591^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~516~^1.458^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~517~^1.279^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~518~^1.155^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~521~^0.207^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~605~^0.366^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~606~^4.853^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~610~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~611~^0.010^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~612~^0.348^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~613~^2.838^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~614~^1.663^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~615~^0.004^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~617~^5.216^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~618~^0.563^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~619~^0.045^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~620~^0.047^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~625~^0.032^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~626~^0.424^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~628~^0.025^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~631~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~645~^5.573^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~646~^0.660^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~652~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~653~^0.074^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~654~^0.004^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~662~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~663~^0.344^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~665~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~670~^0.132^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~672~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~673~^0.157^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~674~^2.392^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~675~^0.232^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13361~^~687~^0.053^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~689~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~693~^0.353^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~851~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~853~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13361~^~859~^0.087^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13362~^~312~^0.086^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~315~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~404~^0.073^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~405~^0.261^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~406~^5.670^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~410~^0.507^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~415~^0.541^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~501~^0.291^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~502~^1.278^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~503~^1.313^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~504~^2.378^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~505~^2.585^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~506~^0.772^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~507~^0.312^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~508~^1.136^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~509~^1.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~510~^1.411^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~511~^1.897^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~512~^0.988^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~513~^1.734^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~514~^2.694^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~515~^4.528^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~516~^1.472^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~517~^1.272^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~518~^1.142^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~521~^0.209^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~605~^0.365^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~606~^5.016^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~610~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~611~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~612~^0.340^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~613~^2.820^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~614~^1.684^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~615~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~617~^5.264^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~618~^0.552^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~619~^0.037^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~620~^0.045^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~625~^0.037^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~626~^0.409^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~628~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~631~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~645~^5.840^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~646~^0.657^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~652~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~653~^0.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~654~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~662~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~663~^0.342^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~665~^0.015^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~670~^0.130^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~672~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~673~^0.168^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~674~^2.505^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~675~^0.231^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~687~^0.055^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~689~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~693~^0.351^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~695~^0.015^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~851~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~853~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13362~^~859~^0.088^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~312~^0.085^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~315~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~404~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~405~^0.268^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~406~^5.794^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~410~^0.552^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~415~^0.566^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~501~^0.291^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~502~^1.303^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~503~^1.341^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~504~^2.443^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~505~^2.666^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~506~^0.789^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~507~^0.323^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~508~^1.161^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~509~^1.033^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~510~^1.437^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~511~^1.949^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~512~^1.027^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~513~^1.769^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~514~^2.766^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~515~^4.627^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~516~^1.499^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~517~^1.310^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~518~^1.174^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~521~^0.214^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~605~^0.327^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~606~^3.690^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~610~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~612~^0.251^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~613~^2.085^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~614~^1.235^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~615~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~617~^3.741^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~618~^0.456^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~619~^0.030^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~620~^0.044^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~625~^0.030^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~626~^0.293^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~628~^0.016^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~631~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~645~^4.142^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~646~^0.548^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~652~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~653~^0.066^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~654~^0.003^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~662~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~663~^0.309^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~665~^0.011^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~670~^0.121^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~672~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~673~^0.132^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~674~^1.971^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~675~^0.217^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~687~^0.044^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~689~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~693~^0.316^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~851~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~853~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13363~^~859~^0.081^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13364~^~312~^0.094^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~315~^0.016^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~404~^0.077^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~405~^0.286^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~406~^5.787^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~410~^0.520^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~415~^0.564^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~501~^0.325^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~502~^1.425^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~503~^1.448^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~504~^2.652^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~505~^2.911^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~506~^0.857^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~507~^0.342^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~508~^1.253^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~509~^1.128^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~510~^1.541^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~511~^2.105^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~512~^1.105^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~513~^1.882^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~514~^2.984^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~515~^5.063^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~516~^1.500^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~517~^1.361^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~518~^1.265^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~521~^0.186^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~605~^0.259^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~606~^3.247^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~610~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~611~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~612~^0.213^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~613~^1.863^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~614~^1.062^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~615~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~617~^3.527^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~618~^0.333^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~619~^0.017^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~620~^0.049^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~625~^0.026^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~626~^0.279^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~628~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~631~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~645~^3.909^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~646~^0.419^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~652~^0.013^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~653~^0.061^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~654~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~672~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~687~^0.047^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~689~^0.008^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13364~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13364~^~859~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13365~^~312~^0.092^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~315~^0.014^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~404~^0.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~405~^0.282^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~406~^5.947^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~410~^0.500^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~415~^0.565^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~501~^0.320^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~502~^1.382^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~503~^1.408^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~504~^2.566^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~505~^2.811^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~506~^0.831^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~507~^0.327^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~508~^1.215^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~509~^1.094^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~510~^1.496^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~511~^2.032^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~512~^1.057^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~513~^1.815^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~514~^2.885^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~515~^4.902^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~516~^1.430^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~517~^1.303^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~518~^1.220^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~521~^0.180^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~605~^0.272^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~606~^3.374^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~611~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~612~^0.216^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~613~^1.938^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~614~^1.106^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~615~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~617~^3.809^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~618~^0.336^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~619~^0.019^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~620~^0.047^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~625~^0.032^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~626~^0.289^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~628~^0.015^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~631~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~645~^4.220^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~646~^0.423^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~652~^0.014^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~653~^0.066^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~654~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~662~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~663~^0.252^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~665~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~670~^0.021^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~672~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~673~^0.098^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~674~^2.273^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~675~^0.219^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13365~^~687~^0.052^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~689~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~693~^0.260^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13365~^~851~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~853~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13365~^~859~^0.075^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~312~^0.095^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~315~^0.016^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~404~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~405~^0.298^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~406~^5.918^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~410~^0.580^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~415~^0.571^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~501~^0.327^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~502~^1.449^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~503~^1.472^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~504~^2.707^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~505~^2.979^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~506~^0.872^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~507~^0.349^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~508~^1.273^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~509~^1.152^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~510~^1.564^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~511~^2.149^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~512~^1.137^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~513~^1.913^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~514~^3.045^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~515~^5.154^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~516~^1.523^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~517~^1.393^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~518~^1.293^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~521~^0.190^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~605~^0.263^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~606~^2.700^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~610~^0.003^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~611~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~612~^0.177^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~613~^1.537^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~614~^0.886^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~615~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~617~^2.874^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~618~^0.316^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~619~^0.015^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~620~^0.048^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13366~^~625~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~626~^0.221^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~628~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~631~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~645~^3.186^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~646~^0.398^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~652~^0.014^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~653~^0.058^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~654~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~663~^0.244^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~665~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13366~^~670~^0.017^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~672~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~674~^1.865^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~675~^0.226^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13366~^~687~^0.039^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~689~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~693~^0.249^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13366~^~851~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~853~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13366~^~859~^0.071^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13367~^~312~^0.108^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~315~^0.015^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~405~^0.200^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~406~^3.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~410~^0.320^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~415~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~501~^0.176^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~502~^1.070^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~503~^1.219^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~504~^2.131^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~505~^2.264^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~506~^0.698^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~507~^0.346^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~508~^1.058^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~509~^0.854^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~510~^1.329^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~511~^1.732^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~512~^0.855^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~513~^1.629^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~514~^2.440^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~515~^4.022^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~516~^1.631^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~517~^1.277^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~518~^1.055^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13367~^~521~^0.281^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13367~^~606~^7.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13367~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13367~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13367~^~610~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~611~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~612~^0.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~613~^4.680^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~614~^2.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~617~^7.770^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~618~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~619~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13367~^~626~^0.880^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13367~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13367~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13367~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13367~^~645~^8.680^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13367~^~646~^0.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~312~^0.119^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~315~^0.017^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~406~^3.710^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~410~^0.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~415~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~502~^1.188^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~503~^1.354^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~504~^2.367^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~505~^2.514^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~506~^0.775^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~507~^0.384^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~508~^1.175^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~509~^0.948^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~510~^1.476^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~511~^1.924^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~512~^0.949^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~513~^1.809^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~514~^2.710^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~515~^4.466^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~516~^1.812^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~517~^1.418^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~518~^1.172^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13368~^~521~^0.313^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13368~^~606~^3.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13368~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~612~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~613~^2.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~614~^1.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~617~^4.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~618~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13368~^~626~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13368~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13368~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13368~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13368~^~645~^4.650^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13368~^~646~^0.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13369~^~312~^0.114^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~315~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~405~^0.195^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~406~^4.667^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~410~^0.649^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~415~^0.322^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13369~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~502~^1.314^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~503~^1.497^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~504~^2.617^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~505~^2.780^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~506~^0.857^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~507~^0.425^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~508~^1.300^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~509~^1.048^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~510~^1.632^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~511~^2.127^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~512~^1.050^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~513~^2.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~514~^2.997^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~515~^4.939^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~516~^2.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~517~^1.568^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~518~^1.296^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13369~^~521~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13369~^~606~^3.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13369~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~610~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~611~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~612~^0.249^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~613~^1.924^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~614~^0.942^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~617~^3.103^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~618~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~619~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~620~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~626~^0.327^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~628~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13369~^~645~^3.444^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13369~^~646~^0.296^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13370~^~312~^0.115^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13370~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~405~^0.208^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~406~^4.840^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~410~^0.654^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~415~^0.318^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13370~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~502~^1.329^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~503~^1.513^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~504~^2.646^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~505~^2.811^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~506~^0.866^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~507~^0.429^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~508~^1.314^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~509~^1.060^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~510~^1.650^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~511~^2.151^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~512~^1.061^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~513~^2.022^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~514~^3.029^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~515~^4.993^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~516~^2.025^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~517~^1.586^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~518~^1.310^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13370~^~521~^0.349^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13370~^~606~^2.647^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13370~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~612~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~613~^1.560^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~614~^0.880^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~617~^2.728^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~618~^0.201^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~626~^0.248^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13370~^~645~^2.978^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13370~^~646~^0.244^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13371~^~312~^0.097^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~404~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~405~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~406~^3.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~410~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~415~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~501~^0.263^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~502~^1.028^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~503~^1.058^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~504~^1.859^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~505~^1.957^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~506~^0.602^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~507~^0.263^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~508~^0.918^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~509~^0.790^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~510~^1.144^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~511~^1.487^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~512~^0.806^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~513~^1.419^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~514~^2.149^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~515~^3.535^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~516~^1.284^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~517~^1.039^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~518~^0.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~606~^11.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~610~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~611~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~612~^0.950^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~613~^6.980^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~614~^3.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~617~^11.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~618~^0.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~619~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~626~^1.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13371~^~628~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~645~^12.700^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13371~^~646~^0.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~312~^0.115^8^0.006^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~315~^0.017^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~404~^0.070^10^0.007^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~405~^0.230^9^0.014^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~406~^3.570^11^0.239^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~410~^0.340^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~415~^0.280^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~501~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~502~^1.225^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~503~^1.261^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~504~^2.217^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~505~^2.334^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~506~^0.718^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~507~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~508~^1.095^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~509~^0.942^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~510~^1.364^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~511~^1.773^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~512~^0.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~513~^1.692^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~514~^2.563^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~515~^4.214^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~516~^1.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~517~^1.239^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~518~^1.073^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~606~^5.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~610~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~611~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~612~^0.450^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~613~^3.190^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~614~^1.510^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~617~^5.800^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~618~^0.300^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~619~^0.030^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~620~^0.030^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~626~^0.640^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13372~^~628~^0.020^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~645~^6.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13372~^~646~^0.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13373~^~312~^0.099^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~405~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~406~^4.105^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~410~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~415~^0.283^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13373~^~501~^0.190^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~502~^1.156^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~503~^1.317^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~504~^2.302^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~505~^2.446^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~506~^0.754^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~507~^0.373^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~508~^1.143^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~509~^0.922^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~510~^1.436^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~511~^1.871^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~512~^0.924^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~513~^1.759^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~514~^2.636^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~515~^4.345^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~516~^1.762^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~517~^1.380^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~518~^1.140^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13373~^~521~^0.304^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13373~^~606~^7.548^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13373~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~610~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~611~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~612~^0.596^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~613~^4.608^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~614~^2.255^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~617~^7.432^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~618~^0.485^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~619~^0.191^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~620~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~626~^0.710^0^^~1~^^^^^^^^^^^~08/01/2003~ -~13373~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~628~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13373~^~645~^8.175^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13373~^~646~^0.708^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13375~^~312~^0.090^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~405~^0.159^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~406~^4.213^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~410~^0.577^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~415~^0.288^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13375~^~501~^0.192^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~502~^1.168^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~503~^1.330^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~504~^2.325^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~505~^2.471^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~506~^0.761^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~507~^0.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~508~^1.155^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~509~^0.932^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~510~^1.450^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~511~^1.890^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~512~^0.933^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~513~^1.777^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~514~^2.663^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~515~^4.389^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~516~^1.780^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~517~^1.394^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~518~^1.152^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13375~^~521~^0.307^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13375~^~606~^6.911^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13375~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~610~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~611~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~612~^0.546^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~613~^4.219^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~614~^2.065^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~617~^6.805^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~618~^0.444^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~619~^0.175^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~626~^0.717^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~628~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13375~^~645~^7.551^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13375~^~646~^0.649^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13377~^~312~^0.123^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13377~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~405~^0.222^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~406~^5.039^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~410~^0.655^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~415~^0.330^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13377~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~502~^1.333^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~503~^1.518^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~504~^2.654^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~505~^2.820^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~506~^0.869^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~507~^0.431^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~508~^1.318^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~509~^1.063^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~510~^1.655^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~511~^2.157^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~512~^1.065^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~513~^2.028^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~514~^3.039^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~515~^5.009^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~516~^2.032^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~517~^1.591^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~518~^1.314^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13377~^~521~^0.351^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13377~^~606~^2.903^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13377~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~610~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~612~^0.217^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~613~^1.710^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~614~^0.965^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~617~^2.991^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~618~^0.220^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~626~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13377~^~645~^3.267^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13377~^~646~^0.268^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13378~^~312~^0.108^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13378~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~405~^0.205^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~406~^4.829^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~410~^0.658^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~415~^0.309^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13378~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~502~^1.333^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~503~^1.518^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~504~^2.654^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~505~^2.820^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~506~^0.869^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~507~^0.431^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~508~^1.318^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~509~^1.063^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~510~^1.655^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~511~^2.158^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~512~^1.065^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~513~^2.029^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~514~^3.039^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~515~^5.009^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~516~^2.032^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~517~^1.591^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~518~^1.314^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13378~^~521~^0.351^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13378~^~606~^2.194^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13378~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~612~^0.164^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~613~^1.293^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~614~^0.730^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~617~^2.261^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~618~^0.166^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~626~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13378~^~645~^2.469^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13378~^~646~^0.202^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13379~^~312~^0.128^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~406~^2.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~410~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~415~^0.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~501~^0.179^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~502~^1.086^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~503~^1.237^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~504~^2.162^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~505~^2.297^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~506~^0.708^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~507~^0.351^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~508~^1.074^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~509~^0.866^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~510~^1.348^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~511~^1.758^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~512~^0.867^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~513~^1.652^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~514~^2.476^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~515~^4.080^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~516~^1.655^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~517~^1.296^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~518~^1.071^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13379~^~521~^0.286^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13379~^~606~^9.590^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13379~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13379~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13379~^~610~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~611~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~612~^0.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~613~^5.820^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~614~^2.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~617~^9.420^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~618~^0.600^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~619~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13379~^~626~^0.970^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13379~^~628~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13379~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13379~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13379~^~645~^10.430^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13379~^~646~^0.860^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13380~^~312~^0.082^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~315~^0.012^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~405~^0.214^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~406~^3.636^4^0.136^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~410~^0.310^0^^~1~^^^^^^^^^^^~08/01/2015~ -~13380~^~415~^0.296^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~501~^0.302^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~502~^1.178^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~503~^1.213^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~504~^2.132^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~505~^2.245^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~506~^0.691^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~507~^0.302^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~508~^1.053^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~509~^0.907^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~510~^1.312^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~511~^1.705^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~512~^0.924^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~513~^1.627^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~514~^2.465^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~515~^4.053^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~516~^1.472^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~517~^1.191^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~518~^1.032^0^^~1~^^^^^^^^^^^~07/01/2010~ -~13380~^~521~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13380~^~605~^1.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13380~^~606~^8.532^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13380~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~610~^0.060^0^^~1~^^^^^^^^^^^~08/01/2015~ -~13380~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13380~^~612~^0.582^4^0.046^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~613~^4.650^4^0.362^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~614~^3.024^4^0.226^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~615~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~617~^8.982^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~618~^0.743^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13380~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~620~^0.060^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~625~^0.126^4^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~626~^0.625^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13380~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13380~^~628~^0.055^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~629~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13380~^~631~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~645~^9.954^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13380~^~646~^0.856^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13380~^~653~^0.249^4^0.018^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~654~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~663~^1.193^4^0.088^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~670~^0.099^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13380~^~672~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~673~^0.625^4^0.052^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~674~^7.789^4^0.643^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~675~^0.643^4^0.060^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~687~^0.165^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~693~^1.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13380~^~851~^0.039^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13380~^~859~^0.402^4^0.041^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~312~^0.092^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~315~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~405~^0.211^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~406~^3.465^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~410~^0.677^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~415~^0.292^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~501~^0.306^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~502~^1.196^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~503~^1.156^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~504~^2.186^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~505~^2.376^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~506~^0.772^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~507~^0.285^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~508~^1.034^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~509~^0.937^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~510~^1.228^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~511~^1.789^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~512~^0.880^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~513~^1.550^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~514~^2.437^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~515~^4.298^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~516~^1.240^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~517~^1.117^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~518~^1.044^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~521~^0.186^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13381~^~605~^1.178^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13381~^~606~^7.854^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13381~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13381~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13381~^~612~^0.550^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~613~^4.286^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~614~^2.762^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~615~^0.015^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~617~^7.903^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~618~^0.744^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13381~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~620~^0.059^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~625~^0.109^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~626~^0.560^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13381~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13381~^~628~^0.045^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13381~^~631~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~645~^8.763^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13381~^~646~^0.858^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13381~^~653~^0.228^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~654~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~663~^1.178^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~670~^0.097^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13381~^~672~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~673~^0.560^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~674~^6.726^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~675~^0.648^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~687~^0.145^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~693~^1.178^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13381~^~851~^0.038^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13381~^~859~^0.406^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13382~^~312~^0.148^8^0.011^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~315~^0.018^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~404~^0.080^11^0.007^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~405~^0.280^9^0.020^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~406~^2.670^11^0.359^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~410~^0.350^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~415~^0.290^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~501~^0.204^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~502~^1.241^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~503~^1.413^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~504~^2.471^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~505~^2.625^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~506~^0.809^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~507~^0.401^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~508~^1.227^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~509~^0.990^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~510~^1.541^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~511~^2.008^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~512~^0.991^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~513~^1.888^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~514~^2.829^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~515~^4.663^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~516~^1.891^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~517~^1.481^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~518~^1.224^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13382~^~521~^0.326^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13382~^~606~^5.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13382~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13382~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13382~^~610~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~611~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~612~^0.390^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~613~^3.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~614~^1.730^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~617~^5.260^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~618~^0.360^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~619~^0.030^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~620~^0.040^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13382~^~626~^0.460^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13382~^~628~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13382~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13382~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13382~^~645~^5.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13382~^~646~^0.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13383~^~312~^0.096^4^0.012^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~315~^0.016^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~405~^0.248^4^0.011^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~406~^3.960^4^0.178^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~410~^0.770^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~415~^0.320^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~501~^0.349^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~502~^1.379^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~503~^1.333^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~504~^2.521^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~505~^2.740^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~506~^0.888^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~507~^0.324^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~508~^1.187^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~509~^1.080^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~510~^1.409^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~511~^2.048^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~512~^1.005^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~513~^1.760^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~514~^2.804^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~515~^4.959^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~516~^1.356^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~517~^1.253^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~518~^1.196^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~521~^0.154^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~605~^0.436^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13383~^~606~^4.344^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13383~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13383~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13383~^~612~^0.262^4^0.039^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~613~^2.448^4^0.322^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~614~^1.491^4^0.191^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~615~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~617~^5.098^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~618~^0.431^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13383~^~620~^0.064^4^0.010^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~625~^0.065^4^0.010^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~626~^0.375^4^0.050^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13383~^~628~^0.029^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~629~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13383~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13383~^~645~^5.670^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13383~^~646~^0.519^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13383~^~653~^0.127^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~654~^0.013^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~663~^0.436^4^0.066^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~670~^0.035^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~674~^4.662^4^0.618^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~675~^0.396^4^0.061^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~687~^0.103^4^0.013^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~693~^0.436^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13383~^~851~^0.019^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13383~^~859~^0.296^4^0.046^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~312~^0.108^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~315~^0.016^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~405~^0.245^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~406~^3.745^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~410~^0.750^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~415~^0.315^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~501~^0.352^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~502~^1.389^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~503~^1.343^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~504~^2.539^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~505~^2.760^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~506~^0.895^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~507~^0.327^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~508~^1.196^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~509~^1.088^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~510~^1.419^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~511~^2.063^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~512~^1.012^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~513~^1.773^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~514~^2.824^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~515~^4.996^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~516~^1.366^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~517~^1.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~518~^1.205^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~521~^0.155^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~605~^0.418^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13384~^~606~^3.487^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13384~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13384~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13384~^~612~^0.222^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~613~^1.987^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~614~^1.160^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~617~^3.733^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~618~^0.433^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13384~^~620~^0.063^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~625~^0.044^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~626~^0.293^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13384~^~628~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13384~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13384~^~645~^4.164^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13384~^~646~^0.520^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13384~^~653~^0.101^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~663~^0.418^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~670~^0.032^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~674~^3.315^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~675~^0.401^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~687~^0.078^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~693~^0.418^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13384~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13384~^~859~^0.302^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13386~^~312~^0.088^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~315~^0.013^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~405~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~406~^3.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~415~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~501~^0.255^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~502~^0.996^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~503~^1.025^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~504~^1.802^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~505~^1.897^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~506~^0.584^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~507~^0.255^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~508~^0.890^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~509~^0.766^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~510~^1.109^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~511~^1.441^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~512~^0.781^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~513~^1.376^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~514~^2.083^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~515~^3.426^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~516~^1.244^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~517~^1.007^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~518~^0.872^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~606~^12.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~610~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~611~^0.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~612~^0.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~613~^7.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~614~^3.630^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~617~^11.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~618~^0.710^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~619~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~626~^1.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~628~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~645~^13.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13386~^~646~^1.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~312~^0.091^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~405~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~406~^3.750^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~410~^0.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~415~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~501~^0.263^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~502~^1.026^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~503~^1.056^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~504~^1.856^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~505~^1.954^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~506~^0.601^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~507~^0.263^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~508~^0.917^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~509~^0.789^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~510~^1.142^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~511~^1.484^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~512~^0.804^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~513~^1.416^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~514~^2.145^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~515~^3.528^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~516~^1.281^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~517~^1.037^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~518~^0.898^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~606~^10.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~610~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~611~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~612~^0.830^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~613~^6.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~614~^3.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~617~^9.830^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~618~^0.590^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~619~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~626~^1.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~628~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~645~^10.930^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13387~^~646~^0.890^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~312~^0.105^8^0.006^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~315~^0.016^1^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~404~^0.090^15^0.009^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~405~^0.220^13^0.008^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~406~^4.450^13^0.263^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~410~^0.450^4^0.042^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~415~^0.260^4^0.016^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~501~^0.181^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~502~^1.100^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~503~^1.253^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~504~^2.190^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~505~^2.327^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~506~^0.717^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~507~^0.355^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~508~^1.087^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~509~^0.877^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~510~^1.366^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~511~^1.780^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~512~^0.879^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~513~^1.674^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~514~^2.508^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~515~^4.133^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~516~^1.676^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~518~^1.084^0^^~1~^~A~^^^^^^^^^^~06/01/2003~ -~13388~^~521~^0.289^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13388~^~606~^5.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13388~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13388~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13388~^~610~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~611~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~612~^0.410^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~613~^3.150^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~614~^1.770^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~617~^5.120^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~618~^0.320^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~619~^0.030^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~620~^0.040^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13388~^~626~^0.470^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13388~^~628~^0.010^8^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13388~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13388~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13388~^~645~^5.600^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13388~^~646~^0.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~312~^0.105^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~404~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~406~^4.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~410~^0.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~415~^0.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~501~^0.308^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~502~^1.203^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~503~^1.238^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~504~^2.176^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~505~^2.291^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~506~^0.705^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~507~^0.308^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~508~^1.075^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~509~^0.925^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~510~^1.339^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~511~^1.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~512~^0.943^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~513~^1.661^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~514~^2.515^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~515~^4.136^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~516~^1.502^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~517~^1.216^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~518~^1.053^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~606~^5.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~612~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~613~^3.520^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~614~^1.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~617~^5.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~618~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~619~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~626~^0.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~645~^6.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13389~^~646~^0.430^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~312~^0.105^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~404~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~406~^4.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~410~^0.450^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~415~^0.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~501~^0.308^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~502~^1.203^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~503~^1.238^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~504~^2.176^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~505~^2.291^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~506~^0.705^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~507~^0.308^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~508~^1.075^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~509~^0.925^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~510~^1.339^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~511~^1.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~512~^0.943^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~513~^1.661^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~514~^2.515^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~515~^4.136^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~516~^1.502^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~517~^1.216^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~518~^1.053^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~606~^4.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~612~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~613~^2.680^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~614~^1.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~617~^4.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~618~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~626~^0.400^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~628~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~645~^4.770^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13390~^~646~^0.330^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13391~^~312~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~405~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~406~^7.257^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~410~^0.538^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~415~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13391~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~502~^1.089^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~503~^1.241^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~504~^2.169^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~505~^2.304^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~506~^0.710^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~507~^0.352^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~508~^1.077^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~509~^0.869^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~510~^1.353^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~511~^1.763^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~512~^0.870^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~513~^1.658^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~514~^2.484^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~515~^4.093^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~516~^1.660^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~517~^1.300^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~518~^1.074^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13391~^~521~^0.286^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~13391~^~606~^5.720^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13391~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~610~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~611~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~612~^0.428^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~613~^3.399^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~614~^1.845^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~617~^5.509^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~618~^0.402^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~619~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~620~^0.053^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~626~^0.508^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13391~^~645~^6.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13391~^~646~^0.547^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13392~^~312~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~404~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~405~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~406~^4.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~410~^0.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~415~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~501~^0.277^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~502~^1.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~503~^1.112^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~504~^1.955^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~505~^2.058^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~506~^0.633^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~507~^0.277^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~508~^0.966^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~509~^0.831^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~510~^1.203^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~511~^1.563^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~512~^0.847^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~513~^1.492^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~514~^2.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~515~^3.716^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~516~^1.349^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~517~^1.092^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~518~^0.946^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~606~^9.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~610~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~611~^0.060^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~612~^0.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~613~^5.640^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~614~^2.740^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~617~^8.830^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~618~^0.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~619~^0.210^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~626~^0.920^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~645~^9.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13392~^~646~^0.780^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~312~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~315~^0.014^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~404~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~405~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~406~^4.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~410~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~415~^0.350^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~501~^0.279^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~502~^1.088^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~503~^1.120^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~504~^1.969^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~505~^2.072^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~506~^0.638^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~507~^0.279^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~508~^0.972^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~509~^0.837^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~510~^1.212^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~511~^1.574^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~512~^0.853^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~513~^1.502^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~514~^2.276^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~515~^3.742^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~516~^1.359^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~517~^1.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~518~^0.952^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~606~^8.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~610~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~611~^0.050^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~612~^0.650^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~613~^4.900^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~614~^2.360^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~617~^7.650^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~618~^0.460^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~619~^0.200^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~626~^0.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~628~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~645~^8.490^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13393~^~646~^0.680^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13394~^~312~^0.087^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13394~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~406~^8.415^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~410~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~415~^0.631^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13394~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~502~^1.175^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~503~^1.338^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~504~^2.339^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~505~^2.485^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~506~^0.766^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~507~^0.379^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~508~^1.162^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~509~^0.937^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~510~^1.459^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~511~^1.901^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~512~^0.938^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~513~^1.788^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~514~^2.679^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~515~^4.415^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~516~^1.791^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~517~^1.402^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~518~^1.158^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13394~^~521~^0.295^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~13394~^~606~^2.868^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13394~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~612~^0.204^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~613~^1.670^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~614~^0.981^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~617~^2.777^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~618~^0.219^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~619~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~620~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~626~^0.226^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13394~^~645~^3.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13394~^~646~^0.277^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13395~^~312~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~404~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~406~^4.800^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~410~^0.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~415~^0.400^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~501~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~502~^1.225^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~503~^1.261^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~504~^2.216^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~505~^2.333^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~506~^0.718^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~507~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~508~^1.095^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~509~^0.942^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~510~^1.364^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~511~^1.772^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~512~^0.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~513~^1.691^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~514~^2.562^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~515~^4.212^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~516~^1.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~517~^1.238^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~518~^1.072^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~606~^4.730^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~612~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~613~^2.800^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~614~^1.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~617~^4.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~618~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~626~^0.400^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~645~^4.940^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13395~^~646~^0.330^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~312~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~404~^0.100^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~405~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~406~^4.800^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~410~^0.340^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~415~^0.400^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~501~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~502~^1.225^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~503~^1.261^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~504~^2.216^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~505~^2.333^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~506~^0.718^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~507~^0.314^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~508~^1.095^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~509~^0.942^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~510~^1.364^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~511~^1.772^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~512~^0.960^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~513~^1.691^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~514~^2.562^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~515~^4.212^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~516~^1.530^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~517~^1.238^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~518~^1.072^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~606~^3.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~612~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~613~^2.080^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~614~^1.150^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~617~^3.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~618~^0.210^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~620~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~626~^0.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~645~^3.670^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13396~^~646~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13398~^~312~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~315~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~405~^0.179^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~406~^5.866^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~410~^0.662^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~415~^0.441^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13398~^~501~^0.221^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~502~^1.341^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~503~^1.527^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~504~^2.670^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~505~^2.836^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~506~^0.874^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~507~^0.433^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~508~^1.326^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~509~^1.069^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~510~^1.665^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~511~^2.170^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~512~^1.071^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~513~^2.040^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~514~^3.057^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~515~^5.038^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~516~^2.043^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~517~^1.600^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~518~^1.322^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13398~^~521~^0.353^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13398~^~606~^3.184^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13398~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~612~^0.241^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~613~^1.974^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~614~^0.953^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~617~^3.393^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~618~^0.249^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~619~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~626~^0.354^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13398~^~645~^3.751^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13398~^~646~^0.334^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~312~^0.065^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~405~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~406~^4.793^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~410~^0.541^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~415~^0.360^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13399~^~501~^0.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~502~^1.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~503~^1.248^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~504~^2.182^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~505~^2.318^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~506~^0.714^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~507~^0.354^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~508~^1.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~509~^0.874^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~510~^1.361^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~511~^1.773^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~512~^0.875^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~513~^1.667^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~514~^2.498^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~515~^4.117^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~516~^1.670^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~517~^1.307^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~518~^1.080^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13399~^~521~^0.288^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13399~^~606~^2.773^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~612~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~613~^1.719^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~614~^0.830^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~617~^2.955^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~618~^0.217^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~619~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~626~^0.308^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13399~^~645~^3.266^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13399~^~646~^0.291^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~312~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~315~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~405~^0.184^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~406~^5.918^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~410~^0.644^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~415~^0.430^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13401~^~501~^0.215^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~502~^1.308^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~503~^1.489^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~504~^2.604^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~505~^2.766^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~506~^0.852^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~507~^0.422^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~508~^1.293^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~509~^1.043^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~510~^1.624^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~511~^2.116^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~512~^1.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~513~^1.990^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~514~^2.981^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~515~^4.914^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~516~^1.993^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~517~^1.560^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~518~^1.289^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13401~^~521~^0.344^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13401~^~606~^3.593^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~612~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~613~^2.228^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~614~^1.075^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~617~^3.829^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~618~^0.281^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~619~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~620~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~626~^0.399^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~628~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13401~^~645~^4.233^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13401~^~646~^0.377^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~312~^0.058^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~404~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~405~^0.150^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~406~^4.839^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~410~^0.527^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~415~^0.352^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13402~^~501~^0.176^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~502~^1.069^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~503~^1.218^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~504~^2.129^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~505~^2.262^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~506~^0.697^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~507~^0.345^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~508~^1.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~509~^0.853^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~510~^1.328^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~511~^1.731^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~512~^0.854^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~513~^1.627^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~514~^2.438^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~515~^4.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~516~^1.630^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~517~^1.276^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~518~^1.054^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13402~^~521~^0.281^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13402~^~606~^3.366^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~612~^0.255^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~613~^2.087^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~614~^1.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~617~^3.588^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~618~^0.264^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~619~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~620~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~626~^0.374^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13402~^~645~^3.966^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13402~^~646~^0.353^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~312~^0.088^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~315~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~404~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~405~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~406~^5.802^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~410~^0.679^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~415~^0.452^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13404~^~501~^0.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~502~^1.374^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~503~^1.565^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~504~^2.736^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~505~^2.906^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~506~^0.896^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~507~^0.444^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~508~^1.358^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~509~^1.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~510~^1.706^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~511~^2.224^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~512~^1.098^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~513~^2.091^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~514~^3.132^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~515~^5.163^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~516~^2.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~517~^1.639^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~518~^1.355^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13404~^~521~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13404~^~606~^2.775^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~612~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~613~^1.721^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~614~^0.830^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~617~^2.957^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~618~^0.217^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~619~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~626~^0.308^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13404~^~645~^3.269^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13404~^~646~^0.291^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~312~^0.073^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~405~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~406~^4.738^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~410~^0.554^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~415~^0.369^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13405~^~501~^0.185^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~502~^1.122^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~503~^1.278^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~504~^2.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~505~^2.373^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~506~^0.731^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~507~^0.362^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~508~^1.109^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~509~^0.895^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~510~^1.393^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~511~^1.816^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~512~^0.896^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~513~^1.707^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~514~^2.558^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~515~^4.216^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~516~^1.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~517~^1.339^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~518~^1.106^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13405~^~521~^0.295^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13405~^~606~^2.179^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~612~^0.165^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~613~^1.351^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~614~^0.652^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~617~^2.322^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~618~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~619~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~626~^0.242^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13405~^~645~^2.567^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13405~^~646~^0.228^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~312~^0.084^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13407~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~405~^0.192^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~406~^6.109^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~410~^0.669^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~415~^0.456^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13407~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~502~^1.358^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~503~^1.547^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~504~^2.705^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~505~^2.874^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~506~^0.886^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~507~^0.439^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~508~^1.343^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~509~^1.084^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~510~^1.687^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~511~^2.199^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~512~^1.085^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~513~^2.067^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~514~^3.097^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~515~^5.105^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~516~^2.071^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~517~^1.621^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~518~^1.339^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13407~^~521~^0.357^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13407~^~606~^2.675^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~612~^0.198^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~613~^1.656^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~614~^0.821^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~617~^2.932^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~618~^0.223^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~619~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~620~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~626~^0.299^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13407~^~645~^3.231^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13407~^~646~^0.286^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~312~^0.069^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13408~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~405~^0.157^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~406~^4.987^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~410~^0.546^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~415~^0.372^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13408~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~502~^1.109^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~503~^1.263^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~504~^2.208^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~505~^2.346^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~506~^0.723^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~507~^0.358^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~508~^1.096^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~509~^0.885^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~510~^1.377^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~511~^1.795^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~512~^0.886^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~513~^1.688^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~514~^2.528^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~515~^4.167^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~516~^1.690^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~517~^1.323^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~518~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13408~^~521~^0.292^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13408~^~606~^2.260^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~612~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~613~^1.399^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~614~^0.694^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~617~^2.478^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~618~^0.189^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~626~^0.253^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13408~^~645~^2.730^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13408~^~646~^0.242^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~312~^0.078^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13410~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~405~^0.207^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~406~^6.356^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~410~^0.650^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~415~^0.462^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13410~^~501~^0.217^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~502~^1.321^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~503~^1.505^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~504~^2.631^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~505~^2.796^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~506~^0.861^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~507~^0.427^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~508~^1.307^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~509~^1.054^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~510~^1.641^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~511~^2.139^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~512~^1.056^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~513~^2.011^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~514~^3.013^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~515~^4.966^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~516~^2.014^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~517~^1.577^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~518~^1.303^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13410~^~521~^0.348^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13410~^~606~^3.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~612~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~613~^1.951^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~614~^0.968^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~617~^3.454^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~618~^0.263^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~619~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~620~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~626~^0.352^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13410~^~645~^3.807^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13410~^~646~^0.337^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13411~^~312~^0.064^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13411~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~405~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~406~^5.232^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~410~^0.535^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~415~^0.380^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13411~^~501~^0.179^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~502~^1.088^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~503~^1.239^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~504~^2.166^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~505~^2.301^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~506~^0.709^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~507~^0.351^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~508~^1.076^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~509~^0.868^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~510~^1.351^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~511~^1.761^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~512~^0.869^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~513~^1.655^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~514~^2.480^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~515~^4.088^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~516~^1.658^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~517~^1.298^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~518~^1.073^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13411~^~521~^0.286^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13411~^~606~^2.661^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13411~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~612~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~613~^1.647^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~614~^0.817^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~617~^2.917^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~618~^0.222^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~619~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~620~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~626~^0.298^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13411~^~645~^3.214^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13411~^~646~^0.285^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~312~^0.096^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13413~^~404~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~405~^0.189^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~406~^6.007^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~410~^0.688^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~415~^0.461^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13413~^~501~^0.230^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~502~^1.395^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~503~^1.589^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~504~^2.779^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~505~^2.952^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~506~^0.910^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~507~^0.451^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~508~^1.380^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~509~^1.113^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~510~^1.733^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~511~^2.259^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~512~^1.115^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~513~^2.124^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~514~^3.182^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~515~^5.244^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~516~^2.127^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~517~^1.665^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~518~^1.376^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13413~^~521~^0.367^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13413~^~606~^2.198^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~612~^0.163^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~613~^1.361^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~614~^0.675^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~617~^2.410^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~618~^0.183^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~626~^0.246^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13413~^~645~^2.655^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13413~^~646~^0.235^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13414~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~405~^0.153^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~406~^4.865^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~410~^0.557^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~415~^0.373^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13414~^~501~^0.186^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~502~^1.130^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~503~^1.287^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~504~^2.250^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~505~^2.390^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~506~^0.737^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~507~^0.365^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~508~^1.117^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~509~^0.901^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~510~^1.403^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~511~^1.829^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~512~^0.903^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~513~^1.720^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~514~^2.576^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~515~^4.246^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~516~^1.722^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~517~^1.348^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~518~^1.114^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13414~^~521~^0.297^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13414~^~606~^1.860^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~612~^0.138^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~613~^1.151^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~614~^0.571^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~617~^2.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~618~^0.155^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~626~^0.208^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13414~^~645~^2.247^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13414~^~646~^0.199^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13415~^~312~^0.053^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~315~^0.002^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~404~^0.080^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~405~^0.232^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~406~^8.464^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~410~^0.448^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~415~^0.811^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~501~^0.339^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~502~^1.430^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~503~^1.413^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~504~^2.615^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~505~^2.906^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~506~^0.821^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~507~^0.309^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~508~^1.217^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~509~^1.130^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~510~^1.516^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~511~^2.066^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~512~^1.137^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~513~^1.881^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~514~^2.956^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~515~^4.961^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~516~^1.493^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~517~^1.361^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~518~^1.249^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~521~^0.207^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13415~^~605~^0.214^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~606~^1.615^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13415~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13415~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13415~^~610~^0.004^0^^~4~^~BFYN~^~23330~^^^^^^^^^~08/01/2003~ -~13415~^~611~^0.003^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~612~^0.106^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~613~^0.929^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~614~^0.504^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~615~^0.003^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~617~^1.651^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~618~^0.225^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~619~^0.009^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~620~^0.045^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~621~^0.002^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~625~^0.032^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~626~^0.146^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13415~^~628~^0.011^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~629~^0.004^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13415~^~631~^0.013^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~645~^1.876^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~646~^0.317^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~652~^0.017^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~653~^0.044^0^^~4~^~BFYN~^~23330~^^^^^^^^^~06/01/2013~ -~13415~^~654~^0.004^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~662~^0.013^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~663~^0.180^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~665~^0.021^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~670~^0.019^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~672~^0.002^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~673~^0.133^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~674~^1.471^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~675~^0.185^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~687~^0.036^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~689~^0.016^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~693~^0.193^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~695~^0.021^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~851~^0.009^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13415~^~853~^0.016^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~ -~13416~^~312~^0.062^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~315~^0.001^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~404~^0.080^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~405~^0.231^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~406~^8.581^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~410~^0.438^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~415~^0.817^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~501~^0.343^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~502~^1.432^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~503~^1.419^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~504~^2.609^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~505~^2.889^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~506~^0.823^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~507~^0.308^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~508~^1.219^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~509~^1.130^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~510~^1.526^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~511~^2.062^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~512~^1.124^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~513~^1.888^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~514~^2.951^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~515~^4.970^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~516~^1.506^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~517~^1.362^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~518~^1.248^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~521~^0.209^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~13416~^~605~^0.213^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~606~^1.656^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13416~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13416~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13416~^~610~^0.004^0^^~4~^~BFYN~^~23331~^^^^^^^^^~05/01/2003~ -~13416~^~611~^0.003^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~612~^0.107^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~613~^0.961^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~614~^0.511^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~615~^0.003^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~617~^1.723^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~618~^0.241^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~619~^0.009^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~620~^0.047^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~621~^0.002^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~625~^0.033^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~626~^0.155^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13416~^~628~^0.011^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~629~^0.004^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13416~^~631~^0.012^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~645~^1.959^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~646~^0.333^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~652~^0.017^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~653~^0.044^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~654~^0.004^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~662~^0.014^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~663~^0.177^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~665~^0.023^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~670~^0.020^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~672~^0.002^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~673~^0.142^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~674~^1.546^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~675~^0.198^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~687~^0.036^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~689~^0.015^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~693~^0.190^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~695~^0.023^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~851~^0.009^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13416~^~853~^0.015^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~ -~13417~^~312~^0.044^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~315~^0.002^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~404~^0.080^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~405~^0.233^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~406~^8.289^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~410~^0.463^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~415~^0.803^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~501~^0.345^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~502~^1.476^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~503~^1.458^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~504~^2.723^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~505~^3.040^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~506~^0.849^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~507~^0.322^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~508~^1.255^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~509~^1.178^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~510~^1.559^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~511~^2.150^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~512~^1.203^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~513~^1.935^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~514~^3.074^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~515~^5.133^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~516~^1.522^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~517~^1.418^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~518~^1.303^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~521~^0.203^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13417~^~605~^0.215^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~606~^1.555^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13417~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13417~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13417~^~610~^0.005^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~611~^0.003^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~612~^0.103^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~613~^0.882^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~614~^0.493^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~615~^0.003^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~617~^1.543^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~618~^0.202^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~619~^0.008^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~620~^0.042^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~621~^0.003^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~625~^0.029^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~626~^0.133^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13417~^~628~^0.011^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~629~^0.005^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13417~^~631~^0.014^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~645~^1.751^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~646~^0.292^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~652~^0.018^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~653~^0.044^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~654~^0.003^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~662~^0.012^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~663~^0.185^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~665~^0.018^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~670~^0.018^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~672~^0.002^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~673~^0.121^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~674~^1.359^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~675~^0.165^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~687~^0.035^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~689~^0.016^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~693~^0.197^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~695~^0.018^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~851~^0.008^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13417~^~853~^0.016^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~ -~13418~^~312~^0.054^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~315~^0.002^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~404~^0.080^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~405~^0.233^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~406~^8.506^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~410~^0.449^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~415~^0.815^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~501~^0.377^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~502~^1.581^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~503~^1.568^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~504~^2.893^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~505~^3.233^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~506~^0.893^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~507~^0.337^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~508~^1.340^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~509~^1.255^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~510~^1.657^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~511~^2.255^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~512~^1.248^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~513~^2.007^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~514~^3.248^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~515~^5.483^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~516~^1.449^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~517~^1.412^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~518~^1.365^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~521~^0.148^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13418~^~605~^0.177^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~606~^1.375^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13418~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13418~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13418~^~610~^0.004^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~611~^0.003^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~612~^0.088^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~613~^0.798^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~614~^0.424^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~615~^0.003^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~617~^1.413^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~618~^0.205^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~619~^0.008^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~620~^0.045^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~621~^0.002^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~625~^0.026^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~626~^0.124^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13418~^~628~^0.009^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~629~^0.005^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13418~^~631~^0.013^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~645~^1.602^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~646~^0.295^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~652~^0.014^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~653~^0.038^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~654~^0.003^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~662~^0.011^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~663~^0.148^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~665~^0.017^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~670~^0.016^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~672~^0.002^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~673~^0.112^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~674~^1.264^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~675~^0.172^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~687~^0.030^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~689~^0.015^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~693~^0.160^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~695~^0.017^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~851~^0.008^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13418~^~853~^0.015^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~ -~13419~^~312~^0.062^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~315~^0.001^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~404~^0.080^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~405~^0.232^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~406~^8.620^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~410~^0.449^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~415~^0.820^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~501~^0.360^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~502~^1.497^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~503~^1.490^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~504~^2.729^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~505~^3.039^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~506~^0.846^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~507~^0.317^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~508~^1.269^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~509~^1.187^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~510~^1.576^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~511~^2.126^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~512~^1.165^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~513~^1.900^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~514~^3.063^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~515~^5.194^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~516~^1.369^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~517~^1.329^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~518~^1.288^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~521~^0.154^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13419~^~605~^0.180^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~606~^1.439^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13419~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13419~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13419~^~610~^0.004^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~611~^0.003^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~612~^0.092^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~613~^0.843^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~614~^0.438^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~615~^0.003^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~617~^1.508^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~618~^0.223^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~619~^0.008^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~620~^0.047^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~621~^0.002^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~625~^0.028^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~626~^0.135^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13419~^~628~^0.009^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~629~^0.004^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13419~^~631~^0.012^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~645~^1.713^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~646~^0.314^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~652~^0.015^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~653~^0.038^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~654~^0.004^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~662~^0.012^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~663~^0.148^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~665~^0.020^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~670~^0.017^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~672~^0.002^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~673~^0.123^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~674~^1.360^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~675~^0.186^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~687~^0.032^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~689~^0.015^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~693~^0.160^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~695~^0.020^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~851~^0.008^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13419~^~853~^0.015^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~ -~13420~^~312~^0.045^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~315~^0.002^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~404~^0.080^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~405~^0.234^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~406~^8.335^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~410~^0.465^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~415~^0.807^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~501~^0.405^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~502~^1.729^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~503~^1.713^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~504~^3.193^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~505~^3.582^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~506~^0.981^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~507~^0.374^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~508~^1.464^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~509~^1.386^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~510~^1.807^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~511~^2.492^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~512~^1.402^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~513~^2.196^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~514~^3.582^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~515~^6.011^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~516~^1.588^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~517~^1.573^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~518~^1.511^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~521~^0.157^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13420~^~605~^0.173^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~606~^1.280^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13420~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13420~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13420~^~610~^0.004^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~611~^0.003^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~612~^0.083^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~613~^0.731^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~614~^0.401^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~615~^0.003^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~617~^1.270^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~618~^0.178^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~619~^0.006^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~620~^0.042^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~621~^0.003^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~625~^0.023^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~626~^0.107^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13420~^~628~^0.009^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~629~^0.005^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13420~^~631~^0.014^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~645~^1.438^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~646~^0.266^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~652~^0.014^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~653~^0.037^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~654~^0.003^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~662~^0.010^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~663~^0.149^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~665~^0.014^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~670~^0.014^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~672~^0.001^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~673~^0.097^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~674~^1.121^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~675~^0.151^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~687~^0.029^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~689~^0.016^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~693~^0.159^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~695~^0.014^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~851~^0.006^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13420~^~853~^0.016^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~ -~13421~^~312~^0.064^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~404~^0.062^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~405~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~406~^4.682^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~410~^0.528^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~415~^0.352^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13421~^~501~^0.176^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~502~^1.070^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~503~^1.219^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~504~^2.131^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~505~^2.264^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~506~^0.698^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~507~^0.346^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~508~^1.058^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~509~^0.854^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~510~^1.329^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~511~^1.732^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~512~^0.855^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~513~^1.629^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~514~^2.440^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~515~^4.022^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~516~^1.631^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~517~^1.277^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~518~^1.055^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13421~^~521~^0.281^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13421~^~606~^3.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13421~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13421~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13421~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13421~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~612~^0.224^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~613~^1.849^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~614~^0.921^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~617~^3.094^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~618~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~619~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~626~^0.305^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~628~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13421~^~645~^3.405^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13421~^~646~^0.305^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~312~^0.059^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~404~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~405~^0.152^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~406~^4.884^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~410~^0.532^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~415~^0.355^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13422~^~501~^0.178^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~502~^1.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~503~^1.229^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~504~^2.149^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~505~^2.283^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~506~^0.703^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~507~^0.349^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~508~^1.067^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~509~^0.861^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~510~^1.340^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~511~^1.747^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~512~^0.862^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~513~^1.642^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~514~^2.461^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~515~^4.055^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~516~^1.645^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~517~^1.288^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~518~^1.064^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13422~^~521~^0.284^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13422~^~606~^3.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~612~^0.243^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~613~^2.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~614~^0.998^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~617~^3.352^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~618~^0.250^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~619~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~620~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~626~^0.330^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~628~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13422~^~645~^3.689^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13422~^~646~^0.330^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~312~^0.069^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~405~^0.133^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~406~^4.483^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~410~^0.524^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~415~^0.349^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13423~^~501~^0.175^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~502~^1.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~503~^1.209^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~504~^2.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~505~^2.245^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~506~^0.692^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~507~^0.343^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~508~^1.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~509~^0.847^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~510~^1.318^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~511~^1.718^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~512~^0.848^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~513~^1.615^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~514~^2.420^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~515~^3.988^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~516~^1.618^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~517~^1.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~518~^1.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13423~^~521~^0.279^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13423~^~606~^2.756^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~612~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~613~^1.695^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~614~^0.845^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~617~^2.836^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~618~^0.211^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~619~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~626~^0.280^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~628~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13423~^~645~^3.121^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13423~^~646~^0.280^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13424~^~312~^0.068^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13424~^~404~^0.062^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~405~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~406~^4.945^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~410~^0.542^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~415~^0.369^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13424~^~501~^0.181^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~502~^1.100^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~503~^1.252^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~504~^2.190^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~505~^2.326^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~506~^0.717^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~507~^0.355^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~508~^1.087^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~509~^0.877^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~510~^1.366^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~511~^1.780^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~512~^0.878^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~513~^1.673^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~514~^2.507^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~515~^4.132^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~516~^1.676^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~518~^1.084^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13424~^~521~^0.289^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13424~^~606~^2.209^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~13424~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2005~ -~13424~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2005~ -~13424~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2005~ -~13424~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~612~^0.158^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~613~^1.350^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~614~^0.701^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~617~^2.320^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~618~^0.181^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13424~^~626~^0.216^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13424~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13424~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13424~^~645~^2.537^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~ -~13424~^~646~^0.247^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13425~^~312~^0.065^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13425~^~404~^0.058^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~405~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~406~^5.319^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~410~^0.544^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~415~^0.386^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13425~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~502~^1.106^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~503~^1.259^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~504~^2.202^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~505~^2.339^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~506~^0.721^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~507~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~508~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~509~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~510~^1.373^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~511~^1.790^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~512~^0.883^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~513~^1.683^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~514~^2.521^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~515~^4.156^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~516~^1.686^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~517~^1.320^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~518~^1.090^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~13425~^~521~^0.291^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13425~^~606~^2.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13425~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~612~^0.163^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~613~^1.398^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~614~^0.726^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~617~^2.403^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~618~^0.188^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~626~^0.224^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13425~^~645~^2.626^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13425~^~646~^0.236^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~312~^0.077^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13426~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~405~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~406~^4.707^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~410~^0.679^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13426~^~415~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13426~^~501~^0.180^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~502~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~503~^1.245^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~504~^2.177^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~505~^2.313^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~506~^0.713^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~507~^0.353^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~508~^1.081^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~509~^0.872^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~510~^1.358^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~511~^1.770^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~512~^0.873^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~513~^1.664^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~514~^2.493^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~515~^4.109^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~516~^1.666^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~517~^1.305^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~518~^1.078^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13426~^~521~^0.288^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13426~^~606~^1.563^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~612~^0.112^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~613~^0.955^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~614~^0.496^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~617~^1.642^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~618~^0.128^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~620~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~626~^0.153^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13426~^~645~^1.794^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13426~^~646~^0.161^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13428~^~312~^0.122^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~406~^3.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~501~^0.234^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~502~^1.423^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~503~^1.621^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~504~^2.834^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~505~^3.010^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~506~^0.928^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~507~^0.460^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~508~^1.407^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~509~^1.135^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~510~^1.767^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~511~^2.303^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~512~^1.137^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~513~^2.166^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~514~^3.245^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~515~^5.347^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~516~^2.169^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~517~^1.698^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~518~^1.403^0^^~4~^~NR~^^^^^^^^^^~06/01/2003~ -~13428~^~521~^0.374^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~ -~13428~^~606~^2.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13428~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13428~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13428~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~612~^0.160^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~613~^1.380^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~614~^0.700^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~617~^2.290^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~618~^0.200^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~619~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13428~^~626~^0.220^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13428~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13428~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13428~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~13428~^~645~^2.510^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13428~^~646~^0.270^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~312~^0.122^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~406~^3.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~501~^0.399^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~502~^1.556^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~503~^1.601^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~504~^2.815^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~505~^2.963^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~506~^0.912^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~507~^0.399^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~508~^1.390^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~509~^1.197^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~510~^1.732^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~511~^2.251^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~512~^1.219^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~513~^2.148^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~514~^3.254^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~515~^5.351^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~516~^1.943^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~517~^1.573^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~518~^1.362^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~606~^2.520^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~612~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~613~^1.540^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~614~^0.790^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~617~^2.570^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~618~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~619~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~626~^0.240^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13430~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~645~^2.820^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13430~^~646~^0.310^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~312~^0.122^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~406~^3.760^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~501~^0.399^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~502~^1.556^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~503~^1.601^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~504~^2.815^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~505~^2.963^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~506~^0.912^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~507~^0.399^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~508~^1.390^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~509~^1.197^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~510~^1.732^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~511~^2.251^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~512~^1.219^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~513~^2.148^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~514~^3.254^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~515~^5.351^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~516~^1.943^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~517~^1.573^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~518~^1.362^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~606~^1.920^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~611~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~612~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~613~^1.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~614~^0.590^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~617~^1.940^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~618~^0.170^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~619~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~626~^0.190^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13432~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~645~^2.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13432~^~646~^0.230^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~312~^0.124^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~406~^3.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~501~^0.405^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~502~^1.578^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~503~^1.624^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~504~^2.855^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~505~^3.006^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~506~^0.925^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~507~^0.405^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~508~^1.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~509~^1.214^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~510~^1.757^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~511~^2.283^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~512~^1.237^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~513~^2.179^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~514~^3.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~515~^5.427^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~516~^1.971^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~517~^1.595^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~518~^1.381^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~606~^1.990^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~612~^0.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~613~^1.210^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~614~^0.650^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~617~^2.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~618~^0.200^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~619~^0.020^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~620~^0.040^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~626~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13436~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~645~^2.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13436~^~646~^0.260^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~312~^0.124^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~315~^0.018^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~404~^0.070^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~405~^0.250^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~406~^3.810^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~410~^0.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~415~^0.280^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~501~^0.405^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~502~^1.578^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~503~^1.624^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~504~^2.855^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~505~^3.006^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~506~^0.925^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~507~^0.405^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~508~^1.410^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~509~^1.214^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~510~^1.757^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~511~^2.283^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~512~^1.237^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~513~^2.179^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~514~^3.300^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~515~^5.427^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~516~^1.971^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~517~^1.595^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~518~^1.381^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~606~^1.370^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~612~^0.090^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~613~^0.840^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~614~^0.440^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~617~^1.430^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~618~^0.140^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~619~^0.010^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~620~^0.030^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~626~^0.130^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13438~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~645~^1.550^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13438~^~646~^0.180^0^^~1~^^^^^^^^^^^~05/01/1990~ -~13439~^~312~^0.092^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13439~^~404~^0.062^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~405~^0.395^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~406~^5.610^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~410~^0.356^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~415~^0.687^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13439~^~501~^0.309^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~502~^1.300^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~503~^1.285^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~504~^2.377^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~505~^2.641^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~506~^0.746^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~508~^1.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~509~^1.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~510~^1.378^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~511~^1.878^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~512~^1.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~513~^1.710^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~514~^2.687^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~515~^4.509^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~516~^1.357^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~517~^1.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~518~^1.135^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13439~^~521~^0.188^0^^~1~^~PAK~^^^^^^^^^^~06/01/2013~ -~13439~^~605~^0.477^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~606~^3.525^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13439~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13439~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13439~^~610~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~611~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~612~^0.237^6^0.014^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~613~^1.988^6^0.094^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~614~^1.134^6^0.033^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~615~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~617~^3.494^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13439~^~618~^0.481^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13439~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13439~^~620~^0.071^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~621~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~625~^0.090^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~626~^0.305^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13439~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13439~^~628~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13439~^~631~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~645~^3.980^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~646~^0.613^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~652~^0.042^5^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~653~^0.098^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~662~^0.031^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~663~^0.395^6^0.020^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~665~^0.051^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~670~^0.044^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~672~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~673~^0.274^6^0.049^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~674~^3.099^6^0.252^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~675~^0.386^6^0.018^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~687~^0.075^6^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13439~^~693~^0.426^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13439~^~851~^0.020^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13439~^~853~^0.021^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~312~^0.088^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13440~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~405~^0.398^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~406~^5.579^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~410~^0.342^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~415~^0.708^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13440~^~501~^0.314^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~502~^1.311^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~503~^1.299^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~504~^2.389^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~505~^2.645^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~506~^0.754^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~507~^0.282^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~508~^1.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~509~^1.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~510~^1.397^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~511~^1.888^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~512~^1.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~513~^1.729^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~514~^2.702^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~515~^4.550^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~516~^1.379^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~517~^1.247^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~518~^1.143^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~521~^0.191^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13440~^~605~^0.518^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~606~^3.850^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13440~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13440~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13440~^~610~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~611~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~612~^0.261^4^0.018^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~613~^2.188^4^0.117^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~614~^1.222^4^0.041^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~615~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~617~^3.870^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13440~^~618~^0.523^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13440~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13440~^~620~^0.075^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~625~^0.099^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~626~^0.345^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13440~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13440~^~628~^0.018^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13440~^~631~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~645~^4.415^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~646~^0.662^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~652~^0.045^3^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~653~^0.106^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~654~^0.004^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~662~^0.034^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~663~^0.427^4^0.024^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~665~^0.057^4^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~670~^0.047^4^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~672~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~673~^0.310^4^0.061^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~674~^3.444^4^0.313^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~675~^0.419^4^0.023^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~687~^0.083^4^0.009^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13440~^~693~^0.461^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13440~^~851~^0.021^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13440~^~853~^0.022^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~312~^0.096^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~315~^0.008^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~ -~13441~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~405~^0.394^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~406~^5.691^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~410~^0.431^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~415~^0.661^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~13441~^~501~^0.305^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~502~^1.305^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~503~^1.289^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~504~^2.408^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~505~^2.688^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~506~^0.751^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~507~^0.285^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~508~^1.109^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~509~^1.042^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~510~^1.378^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~511~^1.901^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~512~^1.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~513~^1.711^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~514~^2.718^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~515~^4.539^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~516~^1.346^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~517~^1.254^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~518~^1.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~521~^0.186^0^^~1~^~PAK~^^^^^^^^^^~03/01/2013~ -~13441~^~605~^0.414^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~606~^3.036^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13441~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13441~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13441~^~610~^0.008^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~612~^0.202^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~613~^1.688^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~614~^1.000^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~617~^2.929^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13441~^~618~^0.417^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13441~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13441~^~620~^0.063^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~625~^0.077^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~626~^0.246^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13441~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13441~^~628~^0.013^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13441~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~645~^3.327^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~646~^0.539^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~652~^0.038^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~653~^0.084^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~662~^0.027^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~663~^0.346^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~665~^0.041^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~670~^0.038^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~673~^0.220^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~674~^2.582^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~675~^0.337^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~687~^0.062^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13441~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13441~^~851~^0.018^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13441~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13442~^~312~^0.102^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13442~^~404~^0.071^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13442~^~405~^0.441^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~406~^6.235^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~410~^0.471^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13442~^~415~^0.765^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13442~^~501~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~502~^1.465^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~503~^1.453^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~504~^2.681^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~505~^2.997^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~506~^0.828^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~507~^0.313^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~508~^1.242^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~509~^1.164^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~510~^1.536^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~511~^2.090^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~512~^1.157^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~513~^1.860^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~514~^3.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~515~^5.082^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~516~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~517~^1.309^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~518~^1.265^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~521~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13442~^~605~^0.438^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~606~^3.296^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13442~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13442~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13442~^~610~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~611~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~612~^0.220^6^0.011^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~613~^1.866^6^0.068^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~614~^1.054^6^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~615~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~617~^3.273^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13442~^~618~^0.462^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13442~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13442~^~620~^0.071^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~621~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~625~^0.086^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~626~^0.286^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13442~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13442~^~628~^0.014^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13442~^~631~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~645~^3.728^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~646~^0.593^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~652~^0.040^5^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~653~^0.091^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~662~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~663~^0.361^6^0.013^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~665~^0.047^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~670~^0.040^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~672~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~673~^0.256^6^0.046^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~674~^2.911^6^0.217^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~675~^0.375^6^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~687~^0.070^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13442~^~693~^0.391^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~695~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13442~^~851~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13442~^~853~^0.021^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~312~^0.109^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~315~^0.012^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~404~^0.071^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~405~^0.500^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~406~^7.071^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~410~^0.471^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~415~^0.868^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~13443~^~501~^0.342^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~502~^1.421^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~503~^1.415^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~504~^2.592^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~505~^2.886^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~506~^0.803^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~507~^0.301^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~508~^1.205^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~509~^1.127^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~510~^1.497^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~511~^2.019^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~512~^1.107^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~513~^1.805^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~514~^2.909^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~515~^4.933^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~516~^1.301^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~517~^1.262^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~518~^1.223^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~521~^0.154^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~13443~^~605~^0.472^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~606~^3.576^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13443~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13443~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13443~^~610~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~611~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~612~^0.240^4^0.013^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~613~^2.042^4^0.085^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~614~^1.126^4^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~615~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~617~^3.606^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~618~^0.502^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~620~^0.076^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~625~^0.093^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~626~^0.321^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13443~^~628~^0.016^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13443~^~631~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~645~^4.114^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~646~^0.640^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~652~^0.042^3^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~653~^0.099^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~654~^0.004^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~662~^0.032^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~663~^0.387^4^0.016^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~665~^0.053^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~670~^0.043^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~672~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~673~^0.289^4^0.057^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~674~^3.219^4^0.269^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~675~^0.406^4^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~687~^0.078^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13443~^~693~^0.419^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13443~^~851~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13443~^~853~^0.022^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13444~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13444~^~404~^0.076^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13444~^~405~^0.408^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13444~^~406~^5.870^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13444~^~410~^0.494^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2013~ -~13444~^~415~^0.682^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13444~^~501~^0.366^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~502~^1.563^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~503~^1.549^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~504~^2.887^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~505~^3.239^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~506~^0.887^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~507~^0.338^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~508~^1.324^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~509~^1.253^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~510~^1.633^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~511~^2.253^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~512~^1.267^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~513~^1.986^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~514~^3.239^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~515~^5.436^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~516~^1.436^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~517~^1.422^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~518~^1.366^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~521~^0.142^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13444~^~605~^0.388^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~606~^2.876^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13444~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13444~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13444~^~610~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~612~^0.190^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~613~^1.603^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~614~^0.945^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~617~^2.773^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~618~^0.404^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~620~^0.064^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~625~^0.074^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~626~^0.232^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13444~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13444~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~645~^3.150^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~646~^0.525^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~652~^0.036^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~653~^0.080^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~662~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~663~^0.323^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~665~^0.039^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~670~^0.036^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~673~^0.207^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~674~^2.450^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~675~^0.329^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~687~^0.059^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13444~^~693~^0.348^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~695~^0.039^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13444~^~851~^0.018^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13444~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13445~^~312~^0.090^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13445~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13445~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~405~^0.410^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~406~^5.813^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~410~^0.369^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~415~^0.712^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13445~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~502~^1.347^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~503~^1.331^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~504~^2.463^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~505~^2.737^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~506~^0.773^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~507~^0.291^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~508~^1.146^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~509~^1.065^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~510~^1.428^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~511~^1.946^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~512~^1.071^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~513~^1.772^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~514~^2.784^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~515~^4.672^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~516~^1.406^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~517~^1.282^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~518~^1.177^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~521~^0.197^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~ -~13445~^~605~^0.626^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~606~^4.534^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13445~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13445~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13445~^~610~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~611~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~612~^0.318^6^0.017^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~613~^2.584^6^0.150^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~614~^1.421^6^0.065^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~615~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~617~^4.569^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13445~^~618~^0.478^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13445~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13445~^~620~^0.046^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~626~^0.387^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13445~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13445~^~628~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~629~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13445~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~645~^5.081^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~646~^0.578^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~652~^0.051^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~653~^0.128^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~654~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~662~^0.034^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~663~^0.532^6^0.026^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~665~^0.060^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~670~^0.059^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~673~^0.353^6^0.030^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~674~^4.037^6^0.221^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~675~^0.359^6^0.024^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~687~^0.095^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13445~^~693~^0.567^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~695~^0.060^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13445~^~851~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13445~^~853~^0.018^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~312~^0.089^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~315~^0.010^0^^~4~^~BFNN~^~23346~^^^^^^^^^~06/01/2003~ -~13446~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13446~^~405~^0.401^0^^~4~^~BFPN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~406~^5.622^0^^~4~^~BFPN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~410~^0.344^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13446~^~415~^0.714^0^^~4~^~BFPN~^~23346~^^^^^^^^^~04/01/2013~ -~13446~^~501~^0.319^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~502~^1.334^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~503~^1.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~504~^2.430^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~505~^2.690^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~506~^0.767^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~507~^0.287^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~508~^1.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~509~^1.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~510~^1.421^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~511~^1.921^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~512~^1.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~513~^1.759^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~514~^2.748^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~515~^4.628^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~516~^1.403^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~517~^1.268^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~518~^1.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~521~^0.194^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13446~^~605~^0.679^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~606~^5.111^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13446~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13446~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13446~^~610~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~611~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~612~^0.360^4^0.021^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~613~^2.936^4^0.186^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~614~^1.582^4^0.081^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~615~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~617~^5.214^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13446~^~618~^0.525^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13446~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13446~^~620~^0.046^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~626~^0.445^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13446~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13446~^~628~^0.034^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13446~^~631~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~645~^5.800^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~646~^0.629^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~652~^0.057^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~653~^0.141^4^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~654~^0.003^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~662~^0.039^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~663~^0.574^4^0.033^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~665~^0.066^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~670~^0.066^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~672~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~673~^0.407^4^0.037^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~674~^4.639^4^0.274^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~675~^0.393^4^0.030^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~687~^0.107^4^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13446~^~693~^0.613^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~695~^0.066^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13446~^~851~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13446~^~853~^0.019^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~312~^0.103^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~ -~13447~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~405~^0.425^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~406~^6.133^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~410~^0.408^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~415~^0.712^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~13447~^~501~^0.328^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~502~^1.407^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~503~^1.390^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~504~^2.595^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~505~^2.897^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~506~^0.809^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~507~^0.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~508~^1.195^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~509~^1.123^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~510~^1.485^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~511~^2.049^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~512~^1.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~513~^1.843^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~514~^2.929^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~515~^4.892^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~516~^1.450^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~517~^1.352^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~518~^1.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2013~ -~13447~^~521~^0.200^0^^~1~^~PAK~^^^^^^^^^^~06/01/2013~ -~13447~^~605~^0.548^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~606~^3.667^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13447~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13447~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13447~^~610~^0.010^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~612~^0.255^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~613~^2.056^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~614~^1.179^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~615~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~617~^3.603^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13447~^~618~^0.409^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13447~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13447~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~626~^0.301^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13447~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13447~^~628~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~13447~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~645~^4.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~646~^0.502^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~652~^0.043^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~653~^0.108^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~662~^0.028^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~663~^0.469^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~665~^0.051^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~670~^0.049^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~672~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~673~^0.272^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~674~^3.134^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~675~^0.310^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~687~^0.076^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~13447~^~693~^0.497^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~13447~^~851~^0.016^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13447~^~853~^0.016^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~13448~^~312~^0.098^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13448~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~405~^0.424^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~406~^5.996^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~410~^0.476^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~415~^0.736^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~501~^0.362^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~502~^1.517^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~503~^1.505^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~504~^2.777^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~505~^3.103^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~506~^0.857^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~507~^0.324^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~508~^1.286^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~509~^1.205^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~510~^1.591^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~511~^2.165^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~512~^1.198^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~513~^1.927^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~514~^3.118^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~515~^5.264^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~516~^1.391^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~517~^1.355^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~518~^1.310^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~521~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13448~^~605~^0.437^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~606~^3.413^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13448~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13448~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13448~^~610~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~611~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~612~^0.236^6^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~613~^1.990^6^0.141^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~614~^1.026^6^0.053^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~615~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~617~^3.489^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13448~^~618~^0.386^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13448~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13448~^~620~^0.046^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~626~^0.290^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13448~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13448~^~628~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~629~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13448~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~645~^3.875^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~646~^0.479^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~652~^0.037^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~653~^0.097^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~654~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~662~^0.026^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~663~^0.368^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~665~^0.043^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~670~^0.044^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~672~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~673~^0.264^6^0.030^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~674~^3.122^6^0.210^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~675~^0.299^6^0.022^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~687~^0.073^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13448~^~693~^0.394^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13448~^~851~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13448~^~853~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~312~^0.096^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13449~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~405~^0.415^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~406~^5.871^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~410~^0.454^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~415~^0.721^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13449~^~501~^0.342^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~502~^1.420^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~503~^1.413^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~504~^2.589^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~505~^2.883^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~506~^0.802^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~507~^0.301^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~508~^1.203^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~509~^1.126^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~510~^1.495^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~511~^2.017^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~512~^1.105^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~513~^1.803^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~514~^2.906^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~515~^4.927^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~516~^1.299^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~517~^1.260^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~518~^1.222^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~521~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13449~^~605~^0.472^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~606~^3.899^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13449~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13449~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13449~^~610~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~611~^0.008^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~612~^0.271^4^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~613~^2.295^4^0.175^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~614~^1.153^4^0.066^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~615~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~617~^4.048^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~618~^0.425^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~620~^0.047^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~626~^0.340^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13449~^~628~^0.027^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13449~^~631~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~645~^4.499^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~646~^0.522^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~652~^0.042^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~653~^0.107^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~654~^0.002^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~662~^0.030^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~663~^0.394^4^0.025^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~665~^0.048^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~670~^0.049^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~672~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~673~^0.311^4^0.037^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~674~^3.654^4^0.261^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~675~^0.327^4^0.028^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~687~^0.084^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13449~^~693~^0.424^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~695~^0.048^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13449~^~851~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13449~^~853~^0.017^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~312~^0.104^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~ -~13450~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~405~^0.430^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~406~^6.187^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~410~^0.495^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~415~^0.719^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~501~^0.386^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~502~^1.647^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~503~^1.633^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~504~^3.043^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~505~^3.414^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~506~^0.935^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~507~^0.356^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~508~^1.395^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~509~^1.321^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~510~^1.722^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~511~^2.375^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~512~^1.336^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~513~^2.093^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~514~^3.414^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~515~^5.729^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~516~^1.514^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~517~^1.499^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~518~^1.440^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13450~^~521~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13450~^~605~^0.385^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~606~^2.685^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13450~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13450~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13450~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~612~^0.183^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~613~^1.531^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~614~^0.836^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~615~^0.007^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~617~^2.651^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~618~^0.328^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~626~^0.215^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13450~^~628~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13450~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~645~^2.940^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~652~^0.031^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~653~^0.081^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~662~^0.021^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~663~^0.328^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~665~^0.037^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~670~^0.035^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~673~^0.194^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~674~^2.324^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~675~^0.256^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~687~^0.057^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13450~^~693~^0.348^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13450~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13450~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13451~^~312~^0.089^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~405~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~406~^7.807^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~410~^0.578^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~415~^0.614^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13451~^~501~^0.193^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~502~^1.172^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~503~^1.335^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~504~^2.333^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~505~^2.479^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~506~^0.764^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~507~^0.379^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~508~^1.159^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~509~^0.935^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~510~^1.455^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~511~^1.897^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~512~^0.936^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~513~^1.783^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~514~^2.672^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~515~^4.404^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~516~^1.786^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~517~^1.398^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~518~^1.155^0^^~1~^~PAK~^^^^^^^^^^~08/01/2003~ -~13451~^~521~^0.308^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13451~^~606~^3.754^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13451~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~610~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~612~^0.281^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~613~^2.230^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~614~^1.211^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~617~^3.615^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~618~^0.264^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~619~^0.061^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~626~^0.333^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~628~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13451~^~645~^3.959^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13451~^~646~^0.359^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~312~^0.095^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~405~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~406~^7.870^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~410~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~415~^0.578^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13452~^~501~^0.191^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~502~^1.159^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~503~^1.320^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~504~^2.308^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~505~^2.453^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~506~^0.756^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~507~^0.375^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~508~^1.146^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~509~^0.925^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~510~^1.440^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~511~^1.877^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~512~^0.926^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~513~^1.764^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~514~^2.643^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~515~^4.357^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~516~^1.767^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~517~^1.383^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~518~^1.143^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13452~^~521~^0.305^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13452~^~606~^4.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~610~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~611~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~612~^0.306^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~613~^2.430^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~614~^1.319^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~617~^3.939^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~618~^0.287^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~619~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~626~^0.363^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~628~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13452~^~645~^4.314^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13452~^~646~^0.391^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~312~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~404~^0.086^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~405~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~406~^7.744^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~410~^0.585^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~415~^0.650^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13453~^~501~^0.195^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~502~^1.184^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~503~^1.349^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~504~^2.358^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~505~^2.505^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~506~^0.772^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~507~^0.383^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~508~^1.171^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~509~^0.945^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~510~^1.471^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~511~^1.917^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~512~^0.946^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~513~^1.802^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~514~^2.700^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~515~^4.451^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~516~^1.805^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~517~^1.413^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~518~^1.168^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13453~^~521~^0.311^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13453~^~606~^3.417^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~610~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~611~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~612~^0.256^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~613~^2.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~614~^1.102^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~617~^3.291^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~618~^0.240^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~619~^0.055^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~626~^0.303^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13453~^~645~^3.604^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13453~^~646~^0.327^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~312~^0.091^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~ -~13454~^~404~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~405~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~406~^8.741^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~410~^0.601^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~415~^0.656^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~ -~13454~^~501~^0.201^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~502~^1.220^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~503~^1.390^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~504~^2.430^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~505~^2.581^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~506~^0.795^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~507~^0.394^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~508~^1.207^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~509~^0.973^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~510~^1.515^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~511~^1.975^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~512~^0.975^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~513~^1.857^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~514~^2.782^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~515~^4.586^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~516~^1.860^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~517~^1.456^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~518~^1.203^0^^~1~^~A~^^^^^^^^^^~08/01/2003~ -~13454~^~521~^0.321^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13454~^~606~^2.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13454~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13454~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13454~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~612~^0.157^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~613~^1.284^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~614~^0.755^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~617~^2.135^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~618~^0.169^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~619~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~626~^0.173^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~ -~13454~^~645~^2.310^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13454~^~646~^0.213^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13455~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~405~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~406~^8.937^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~410~^0.595^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~415~^0.630^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13455~^~501~^0.199^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~502~^1.210^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~503~^1.378^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~504~^2.410^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~505~^2.560^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~506~^0.789^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~507~^0.391^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~508~^1.196^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~509~^0.965^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~510~^1.503^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~511~^1.959^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~512~^0.967^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~513~^1.842^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~514~^2.759^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~515~^4.547^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~516~^1.844^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~517~^1.444^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~518~^1.193^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13455~^~521~^0.318^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13455~^~606~^2.495^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~612~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~613~^1.453^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~614~^0.854^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~617~^2.416^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~618~^0.191^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~619~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~626~^0.196^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13455~^~645~^2.615^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13455~^~646~^0.241^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~312~^0.085^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13456~^~404~^0.088^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~405~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~406~^9.001^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~410~^0.607^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~415~^0.681^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13456~^~501~^0.202^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~502~^1.230^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~503~^1.401^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~504~^2.450^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~505~^2.603^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~506~^0.802^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~507~^0.397^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~508~^1.217^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~509~^0.981^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~510~^1.528^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~511~^1.992^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~512~^0.983^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~513~^1.872^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~514~^2.805^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~515~^4.624^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~516~^1.875^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~517~^1.468^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~518~^1.213^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13456~^~521~^0.324^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13456~^~606~^1.915^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~612~^0.136^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~613~^1.115^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~614~^0.655^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~617~^1.854^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~618~^0.147^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~626~^0.151^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13456~^~645~^2.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13456~^~646~^0.185^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13459~^~312~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~404~^0.099^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~405~^0.228^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~406~^4.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~410~^0.314^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~415~^0.365^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~501~^0.259^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~502~^1.104^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~503~^1.228^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~504~^2.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~505~^2.233^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~506~^0.676^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~507~^0.258^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~508~^1.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~509~^0.874^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~510~^1.288^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~511~^1.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~512~^0.775^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~513~^1.448^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~514~^2.377^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~515~^3.826^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~516~^1.149^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~517~^1.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~518~^0.959^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~521~^0.104^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~606~^7.271^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~610~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~612~^0.509^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~613~^4.531^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~614~^2.144^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~617~^7.842^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~618~^0.471^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~619~^0.189^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~625~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~626~^0.688^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~628~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13459~^~645~^8.650^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13459~^~646~^0.690^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~312~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~404~^0.100^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~405~^0.230^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~406~^4.237^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~410~^0.316^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~415~^0.367^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~501~^0.255^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~502~^1.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~503~^1.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~504~^2.075^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~505~^2.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~506~^0.666^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~507~^0.254^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~508~^1.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~509~^0.861^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~510~^1.269^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~511~^1.585^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~512~^0.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~513~^1.427^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~514~^2.343^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~515~^3.771^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~516~^1.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~517~^1.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~518~^0.945^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~521~^0.103^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~606~^7.430^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~610~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~612~^0.518^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~613~^4.655^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~614~^2.168^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~617~^8.403^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~618~^0.460^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~619~^0.190^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~620~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~625~^0.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~626~^0.728^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~628~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13460~^~645~^9.275^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13460~^~646~^0.676^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~312~^0.128^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~404~^0.098^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~405~^0.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~406~^4.171^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~410~^0.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~415~^0.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~501~^0.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~502~^1.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~503~^1.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~504~^2.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~505~^2.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~506~^0.690^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~507~^0.263^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~508~^1.054^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~509~^0.892^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~510~^1.314^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~511~^1.642^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~512~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~513~^1.479^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~514~^2.426^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~515~^3.906^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~516~^1.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~517~^1.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~518~^0.979^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~521~^0.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~606~^7.040^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~610~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~612~^0.495^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~613~^4.351^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~614~^2.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~617~^7.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~618~^0.488^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~619~^0.189^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~620~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~625~^0.060^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~626~^0.630^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~628~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13463~^~645~^7.739^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13463~^~646~^0.711^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13464~^~312~^0.065^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~404~^0.054^0^^~4~^~BFPN~^~23386~^^^^^^^^^~07/01/2013~ -~13464~^~405~^0.257^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~406~^5.377^6^0.201^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~415~^0.689^6^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~501~^0.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~502~^1.093^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~503~^1.085^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~504~^2.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~505~^2.237^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~506~^0.618^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~507~^0.233^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~508~^0.927^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~509~^0.868^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~510~^1.147^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~511~^1.560^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~512~^0.863^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~513~^1.389^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~514~^2.247^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~515~^3.793^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~516~^1.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~517~^0.977^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~518~^0.944^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13464~^~521~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~13464~^~605~^0.325^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~606~^2.557^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~610~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~611~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~612~^0.167^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~613~^1.459^6^0.054^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~614~^0.814^6^0.027^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~615~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~617~^2.535^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13464~^~618~^0.277^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13464~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13464~^~620~^0.038^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~621~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~625~^0.041^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~626~^0.201^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13464~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~628~^0.013^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13464~^~631~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~645~^2.840^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~646~^0.353^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~652~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~653~^0.072^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~654~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~662~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~663~^0.278^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~665~^0.031^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~670~^0.022^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~673~^0.185^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~674~^2.257^6^0.045^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~675~^0.225^6^0.012^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~687~^0.051^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13464~^~693~^0.294^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13464~^~851~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13464~^~853~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~312~^0.073^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~404~^0.059^0^^~4~^~BFPN~^~23392~^^^^^^^^^~07/01/2013~ -~13465~^~405~^0.260^6^0.014^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~406~^6.033^6^0.193^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~415~^0.692^6^0.025^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~501~^0.345^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~502~^1.447^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~503~^1.435^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~504~^2.648^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~505~^2.960^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~506~^0.818^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~507~^0.309^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~508~^1.227^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~509~^1.149^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~510~^1.517^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~511~^2.065^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~512~^1.142^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~513~^1.838^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~514~^2.973^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~515~^5.020^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~516~^1.326^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~517~^1.292^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~518~^1.249^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~13465~^~605~^0.532^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~606~^4.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~610~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~611~^0.008^6^0.000^~1~^~AR~^^^^^^^^^^~09/01/2001~ -~13465~^~612~^0.267^6^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~613~^2.282^6^0.055^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~614~^1.295^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~615~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~617~^4.025^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~618~^0.415^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~620~^0.048^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~625~^0.068^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~626~^0.322^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~628~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13465~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~645~^4.516^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~646~^0.513^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~652~^0.044^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~653~^0.113^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~654~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~662~^0.028^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~663~^0.453^6^0.018^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~665~^0.051^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~670~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~672~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~673~^0.294^6^0.017^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~674~^3.572^6^0.051^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~675~^0.328^6^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~687~^0.080^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13465~^~693~^0.481^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13465~^~851~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13465~^~853~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13466~^~312~^0.143^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~405~^0.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~406~^4.630^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~410~^0.340^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~415~^0.400^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~501~^0.281^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~502~^1.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~503~^1.346^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~504~^2.305^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~505~^2.447^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~507~^0.280^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~508~^1.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~509~^0.956^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~510~^1.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~511~^1.757^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~512~^0.840^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~513~^1.576^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~514~^2.599^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~515~^4.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~516~^1.239^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~517~^1.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~518~^1.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~521~^0.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~606~^3.912^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~612~^0.217^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~613~^2.436^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~614~^1.239^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~617~^4.781^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~618~^0.290^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~619~^0.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~620~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~625~^0.112^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~626~^0.300^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13466~^~645~^5.192^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13466~^~646~^0.379^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13467~^~312~^0.143^16^0.011^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13467~^~315~^0.016^2^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13467~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~405~^0.250^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~406~^4.630^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~410~^0.340^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~415~^0.400^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~501~^0.286^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~502~^1.114^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~503~^1.147^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~504~^2.255^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~505~^2.394^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~506~^0.724^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~507~^0.286^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~508~^1.106^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~509~^0.935^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~510~^1.241^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~511~^1.719^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~512~^0.873^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~513~^1.539^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~514~^2.330^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~515~^4.089^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13467~^~516~^1.392^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~517~^1.126^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~518~^0.975^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13467~^~521~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13467~^~606~^4.345^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13467~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~611~^0.005^8^0.005^~1~^~A~^^^2^0.000^0.010^1^-0.059^0.069^~2~^~07/01/2001~ -~13467~^~612~^0.250^8^0.000^~1~^~A~^^^2^0.250^0.250^^^^~2~^~07/01/2001~ -~13467~^~613~^2.735^8^0.085^~1~^~A~^^^2^2.650^2.820^1^1.655^3.815^~2~^~07/01/2001~ -~13467~^~614~^1.335^8^0.045^~1~^~A~^^^2^1.290^1.380^1^0.763^1.907^~2~^~07/01/2001~ -~13467~^~615~^0.020^4^0.005^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13467~^~617~^5.660^8^0.130^~1~^~A~^^^2^5.530^5.790^1^4.008^7.312^~2~^~07/01/2001~ -~13467~^~618~^0.290^8^0.020^~1~^~A~^^^2^0.270^0.310^1^0.036^0.544^~2~^~07/01/2001~ -~13467~^~619~^0.065^8^0.005^~1~^~A~^^^2^0.060^0.070^1^0.001^0.129^~2~^~07/01/2001~ -~13467~^~620~^0.030^8^0.000^~1~^~A~^^^2^0.030^0.030^^^^~2~^~07/01/2001~ -~13467~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~625~^0.140^4^0.025^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13467~^~626~^0.375^8^0.035^~1~^~A~^^^2^0.340^0.410^1^-0.070^0.820^~2~^~07/01/2001~ -~13467~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13467~^~645~^6.175^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13467~^~646~^0.385^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13468~^~312~^0.075^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~405~^0.230^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~406~^5.325^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~415~^0.751^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~501~^0.297^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~502~^1.267^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~503~^1.255^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~504~^2.339^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~505~^2.624^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~506~^0.719^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~508~^1.073^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~509~^1.016^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~510~^1.324^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~511~^1.826^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~512~^1.027^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~513~^1.609^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~514~^2.624^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~515~^4.405^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~516~^1.164^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~517~^1.152^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~518~^1.107^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13468~^~521~^0.115^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~13468~^~605~^0.278^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~606~^2.051^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13468~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13468~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13468~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~612~^0.143^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~613~^1.169^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~614~^0.635^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~617~^1.909^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~618~^0.218^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~625~^0.033^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~626~^0.158^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13468~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~645~^2.150^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~646~^0.285^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13468~^~652~^0.027^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~653~^0.062^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~662~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~663~^0.241^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~665~^0.024^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~673~^0.146^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~674~^1.667^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~675~^0.179^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~687~^0.042^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13468~^~693~^0.254^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13468~^~851~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13468~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~312~^0.076^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~405~^0.255^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~406~^5.745^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~415~^0.628^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~501~^0.355^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~502~^1.514^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~503~^1.501^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~504~^2.797^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~505~^3.138^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~506~^0.859^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~507~^0.327^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~508~^1.282^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~509~^1.214^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~510~^1.583^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~511~^2.183^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~512~^1.228^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~513~^1.924^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~514~^3.138^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~515~^5.266^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~516~^1.392^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~517~^1.378^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~518~^1.323^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13469~^~521~^0.137^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~13469~^~605~^0.483^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~606~^3.454^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~610~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~611~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~612~^0.228^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~613~^1.940^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~614~^1.118^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~615~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~617~^3.337^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~618~^0.340^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~07/01/2001~ -~13469~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~625~^0.056^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~626~^0.257^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~628~^0.018^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13469~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~645~^3.738^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~646~^0.429^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~652~^0.042^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~653~^0.103^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~662~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~663~^0.414^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~665~^0.044^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~673~^0.232^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~674~^2.923^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~675~^0.269^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~687~^0.070^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13469~^~693~^0.439^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13469~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13469~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13470~^~312~^0.143^16^0.011^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13470~^~315~^0.016^2^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13470~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~405~^0.250^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~406~^4.630^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~410~^0.340^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~415~^0.400^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~501~^0.301^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~502~^1.175^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~503~^1.209^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~504~^2.377^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~505~^2.524^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~506~^0.763^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~507~^0.301^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~508~^1.166^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~509~^0.986^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~510~^1.308^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~511~^1.812^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~512~^0.921^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~513~^1.622^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~514~^2.457^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~515~^4.310^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13470~^~516~^1.467^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~517~^1.187^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~518~^1.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13470~^~521~^0.124^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13470~^~606~^3.280^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13470~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~611~^0.000^3^0.000^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~612~^0.170^3^0.040^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~613~^2.000^3^0.040^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~614~^1.100^3^0.087^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~615~^0.010^3^0.006^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13470~^~617~^3.500^3^0.185^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~618~^0.290^3^0.029^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~619~^0.040^3^0.006^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~620~^0.040^3^0.006^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~625~^0.070^3^0.006^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13470~^~626~^0.190^3^0.029^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13470~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13470~^~645~^3.760^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13470~^~646~^0.370^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13473~^~312~^0.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~404~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~405~^0.231^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~406~^4.268^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~410~^0.309^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~415~^0.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~501~^0.261^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~502~^1.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~503~^1.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~504~^2.126^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~505~^2.256^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~506~^0.683^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~507~^0.260^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~508~^1.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~509~^0.883^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~510~^1.301^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~511~^1.624^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~512~^0.782^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~513~^1.462^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~514~^2.400^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~515~^3.864^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~516~^1.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~517~^1.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~518~^0.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~521~^0.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~606~^6.074^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~610~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~611~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~612~^0.451^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~613~^3.757^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~614~^1.785^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~617~^6.532^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~618~^0.407^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~619~^0.165^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~625~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~626~^0.586^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~628~^0.020^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13473~^~645~^7.205^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13473~^~646~^0.617^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~312~^0.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~404~^0.100^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~405~^0.230^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~406~^4.242^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~410~^0.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~415~^0.359^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~501~^0.260^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~502~^1.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~503~^1.233^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~504~^2.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~505~^2.243^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~506~^0.679^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~507~^0.259^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~508~^1.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~509~^0.877^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~510~^1.293^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~511~^1.615^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~512~^0.778^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~513~^1.453^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~514~^2.386^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~515~^3.841^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~516~^1.153^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~517~^1.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~518~^0.962^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~521~^0.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~606~^6.449^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~610~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~611~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~612~^0.462^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~613~^4.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~614~^1.873^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~617~^7.173^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~618~^0.423^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~619~^0.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~620~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~625~^0.070^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~626~^0.632^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~628~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13474~^~645~^7.896^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13474~^~646~^0.615^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~312~^0.133^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~404~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~405~^0.233^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~406~^4.305^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~410~^0.311^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~415~^0.364^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~501~^0.264^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~502~^1.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~503~^1.252^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~504~^2.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~505~^2.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~506~^0.689^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~507~^0.262^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~508~^1.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~509~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~510~^1.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~511~^1.638^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~512~^0.788^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~513~^1.474^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~514~^2.421^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~515~^3.897^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~516~^1.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~517~^1.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~518~^0.976^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~521~^0.107^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~606~^5.527^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~610~^0.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~611~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~612~^0.436^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~613~^3.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~614~^1.656^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~617~^5.598^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~618~^0.385^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~619~^0.163^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~620~^0.072^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~625~^0.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~626~^0.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~628~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13477~^~645~^6.197^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13477~^~646~^0.620^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~13478~^~312~^0.058^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~404~^0.054^0^^~4~^~BFPN~^~23386~^^^^^^^^^~05/01/2013~ -~13478~^~405~^0.215^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~406~^5.751^6^0.129^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~410~^0.358^0^^~4~^~BFPN~^~23386~^^^^^^^^^~05/01/2013~ -~13478~^~415~^0.638^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~501~^0.272^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~502~^1.142^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~503~^1.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~504~^2.090^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~505~^2.336^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~506~^0.645^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~508~^0.968^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~509~^0.907^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~510~^1.197^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~511~^1.629^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~512~^0.902^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~513~^1.450^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~514~^2.346^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~515~^3.961^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~516~^1.047^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~517~^1.020^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~518~^0.986^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~521~^0.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~13478~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~606~^2.530^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~610~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~611~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~612~^0.162^6^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~613~^1.431^6^0.105^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~614~^0.821^6^0.058^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~615~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~617~^2.481^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~618~^0.265^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~620~^0.040^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~09/01/2001~ -~13478~^~625~^0.034^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~626~^0.194^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~628~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~629~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13478~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~645~^2.767^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~646~^0.344^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~652~^0.026^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~653~^0.072^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~662~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~663~^0.246^6^0.047^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~665~^0.030^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~670~^0.020^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~673~^0.178^6^0.017^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~674~^2.234^6^0.143^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~675~^0.215^6^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~687~^0.047^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13478~^~693~^0.262^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13478~^~851~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13478~^~853~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~312~^0.073^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~404~^0.058^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13479~^~405~^0.254^6^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~406~^6.109^6^0.168^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~410~^0.323^0^^~4~^~BFPN~^~23394~^^^^^^^^^~05/01/2013~ -~13479~^~415~^0.757^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~501~^0.331^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~502~^1.388^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~503~^1.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~504~^2.540^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~505~^2.839^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~506~^0.784^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~507~^0.296^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~508~^1.177^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~509~^1.102^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~510~^1.455^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~511~^1.981^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~512~^1.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~513~^1.763^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~514~^2.852^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~515~^4.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~516~^1.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~517~^1.240^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~518~^1.198^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13479~^~521~^0.136^0^^~1~^~PAK~^^^^^^^^^^~06/01/2013~ -~13479~^~605~^0.572^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~606~^4.219^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~610~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~611~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~612~^0.280^6^0.018^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~613~^2.383^6^0.094^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~614~^1.362^6^0.049^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~615~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~617~^4.114^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13479~^~618~^0.439^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13479~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13479~^~620~^0.051^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~09/01/2001~ -~13479~^~625~^0.056^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~626~^0.338^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13479~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~628~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~629~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13479~^~631~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~645~^4.609^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~646~^0.542^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~652~^0.047^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~653~^0.118^6^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~662~^0.028^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~663~^0.485^6^0.021^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~665~^0.059^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~670~^0.037^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~673~^0.310^6^0.021^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~674~^3.629^6^0.140^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~675~^0.343^6^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~687~^0.084^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13479~^~693~^0.513^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13479~^~851~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13479~^~853~^0.018^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13481~^~312~^0.143^16^0.011^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13481~^~315~^0.016^2^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13481~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~405~^0.250^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~406~^4.630^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~410~^0.330^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~415~^0.390^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~501~^0.291^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~502~^1.201^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~503~^1.342^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~504~^2.297^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~505~^2.161^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~506~^0.665^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~507~^0.291^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~508~^1.127^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~509~^0.873^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~510~^1.264^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~511~^1.642^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~512~^0.838^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~513~^1.570^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~514~^2.590^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~515~^4.165^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13481~^~516~^1.417^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~517~^1.147^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~518~^0.993^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13481~^~521~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13481~^~606~^3.270^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13481~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~611~^0.010^4^0.005^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~612~^0.190^4^0.015^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~613~^2.040^4^0.130^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~614~^1.010^4^0.065^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~615~^0.020^4^0.005^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13481~^~617~^4.295^8^0.025^~1~^~A~^^^2^4.270^4.320^1^3.977^4.613^~2~^~07/01/2001~ -~13481~^~618~^0.250^4^0.035^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~619~^0.040^4^0.005^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~620~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~625~^0.080^4^0.010^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13481~^~626~^0.270^4^0.020^~1~^~A~^^^^^^^^^^~09/01/2001~ -~13481~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13481~^~645~^4.645^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13481~^~646~^0.320^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13482~^~312~^0.054^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~404~^0.058^0^^~4~^~BFPN~^~23384~^^^^^^^^^~05/01/2013~ -~13482~^~405~^0.200^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~406~^5.730^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~410~^0.375^0^^~4~^~BFPN~^~23384~^^^^^^^^^~05/01/2013~ -~13482~^~415~^0.644^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~501~^0.292^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~502~^1.247^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~503~^1.236^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~504~^2.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~505~^2.585^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~506~^0.708^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~508~^1.056^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~509~^1.000^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~510~^1.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~511~^1.798^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~512~^1.011^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~513~^1.585^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~514~^2.585^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~515~^4.338^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~516~^1.146^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~517~^1.135^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~518~^1.090^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~521~^0.113^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~13482~^~605~^0.274^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~606~^2.152^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~612~^0.145^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~613~^1.214^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~614~^0.686^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~617~^2.039^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13482~^~618~^0.224^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13482~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13482~^~620~^0.038^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~10/01/1995~ -~13482~^~625~^0.029^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~626~^0.162^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13482~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13482~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~645~^2.282^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~646~^0.298^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~652~^0.026^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~653~^0.064^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~662~^0.016^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~663~^0.233^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~665~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~673~^0.146^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~674~^1.806^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~675~^0.183^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~687~^0.044^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13482~^~693~^0.249^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13482~^~851~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13482~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~312~^0.063^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~315~^0.004^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~404~^0.061^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13483~^~405~^0.230^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~406~^5.835^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~410~^0.374^0^^~4~^~BFPN~^~23393~^^^^^^^^^~05/01/2013~ -~13483~^~415~^0.754^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~501~^0.357^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~502~^1.523^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~503~^1.509^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~504~^2.812^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~505~^3.155^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~506~^0.864^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~508~^1.289^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~509~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~510~^1.591^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~511~^2.195^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~512~^1.235^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~513~^1.934^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~514~^3.155^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~515~^5.295^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~516~^1.399^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~517~^1.385^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~518~^1.331^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~13483~^~521~^0.138^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~13483~^~605~^0.537^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~606~^3.648^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~611~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~612~^0.247^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~613~^2.047^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~614~^1.173^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~617~^3.381^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13483~^~618~^0.387^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13483~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13483~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~10/01/1995~ -~13483~^~625~^0.044^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~626~^0.273^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13483~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13483~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~645~^3.785^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~646~^0.480^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~652~^0.047^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~653~^0.109^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~662~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~663~^0.455^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~665~^0.057^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~670~^0.031^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~673~^0.248^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~674~^2.926^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~675~^0.299^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~687~^0.075^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~13483~^~693~^0.480^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13483~^~851~^0.014^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13483~^~853~^0.016^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~13484~^~312~^0.143^16^0.011^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13484~^~315~^0.016^2^^~1~^~A~^^^^^^^^^^~10/01/1995~ -~13484~^~404~^0.110^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~405~^0.250^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~406~^4.630^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~410~^0.330^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~415~^0.390^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~501~^0.291^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~502~^1.136^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~503~^1.169^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~504~^2.299^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~505~^2.440^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~506~^0.738^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~507~^0.291^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~508~^1.127^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~509~^0.953^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~510~^1.265^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~511~^1.752^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~512~^0.890^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~513~^1.568^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~514~^2.375^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~515~^4.168^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13484~^~516~^1.419^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~517~^1.148^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~518~^0.994^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~ -~13484~^~521~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13484~^~606~^2.820^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13484~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~611~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2~^~07/01/2001~ -~13484~^~612~^0.210^5^0.010^~1~^~A~^^^2^0.200^0.220^1^0.083^0.337^~2~^~07/01/2001~ -~13484~^~613~^1.675^5^0.075^~1~^~A~^^^2^1.600^1.750^1^0.722^2.628^~2~^~07/01/2001~ -~13484~^~614~^0.925^5^0.045^~1~^~A~^^^2^0.880^0.970^1^0.353^1.497^~2~^~07/01/2001~ -~13484~^~615~^0.010^3^0.006^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13484~^~617~^3.060^5^0.130^~1~^~A~^^^2^2.930^3.190^1^1.408^4.712^~2~^~07/01/2001~ -~13484~^~618~^0.240^5^0.010^~1~^~A~^^^2^0.230^0.250^1^0.113^0.367^~2~^~07/01/2001~ -~13484~^~619~^0.060^5^0.000^~1~^~A~^^^2^0.060^0.060^^^^~2~^~07/01/2001~ -~13484~^~620~^0.080^5^0.000^~1~^~A~^^^2^0.080^0.080^^^^~2~^~07/01/2001~ -~13484~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~625~^0.070^3^0.017^~1~^~A~^^^^^^^^^^~07/01/2001~ -~13484~^~626~^0.210^5^0.010^~1~^~A~^^^2^0.200^0.220^1^0.083^0.337^~2~^~07/01/2001~ -~13484~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~ -~13484~^~645~^3.340^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13484~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13485~^~312~^0.112^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13485~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~405~^0.208^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~406~^4.906^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~410~^0.668^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~415~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13485~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~502~^1.354^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~503~^1.542^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~504~^2.697^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~505~^2.865^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~506~^0.883^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~507~^0.437^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~508~^1.339^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~509~^1.080^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~510~^1.682^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~511~^2.192^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~512~^1.082^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~513~^2.061^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~514~^3.088^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~515~^5.089^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~516~^2.064^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~517~^1.616^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~518~^1.335^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13485~^~521~^0.356^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13485~^~606~^2.241^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13485~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~612~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~613~^1.320^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~614~^0.745^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~617~^2.309^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~618~^0.170^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~626~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13485~^~645~^2.521^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13485~^~646~^0.207^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~13486~^~312~^0.088^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13486~^~404~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~405~^0.125^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~406~^6.119^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~410~^0.589^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~415~^0.607^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13486~^~501~^0.135^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~502~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~503~^0.932^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~504~^1.629^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~505~^1.731^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~506~^0.533^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~507~^0.264^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~508~^0.809^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~509~^0.653^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~510~^1.016^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~511~^1.324^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~512~^0.654^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~513~^1.245^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~514~^1.866^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~515~^3.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~516~^1.247^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~517~^0.976^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~518~^0.807^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13486~^~521~^0.215^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13486~^~606~^2.778^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13486~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~610~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~611~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~612~^0.218^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~613~^1.678^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~614~^0.844^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~617~^2.650^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~618~^0.181^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~619~^0.085^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~620~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~626~^0.351^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13486~^~645~^3.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13486~^~646~^0.276^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13487~^~312~^0.089^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13487~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~405~^0.139^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~406~^6.127^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~410~^0.589^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~415~^0.595^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13487~^~501~^0.133^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~502~^0.805^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~503~^0.917^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~504~^1.604^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~505~^1.704^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~506~^0.525^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~507~^0.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~508~^0.796^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~509~^0.642^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~510~^1.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~511~^1.304^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~512~^0.643^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~513~^1.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~514~^1.836^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~515~^3.027^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~516~^1.228^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~517~^0.961^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~518~^0.794^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13487~^~521~^0.212^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13487~^~606~^3.066^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13487~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~610~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~611~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~612~^0.240^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~613~^1.852^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~614~^0.932^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~617~^2.925^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~618~^0.199^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~619~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~620~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~626~^0.387^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~628~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13487~^~645~^3.324^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13487~^~646~^0.305^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13488~^~312~^0.087^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13488~^~404~^0.085^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~405~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~406~^6.107^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~410~^0.589^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~415~^0.618^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13488~^~501~^0.137^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~502~^0.831^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~503~^0.946^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~504~^1.655^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~505~^1.758^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~506~^0.542^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~507~^0.268^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~508~^0.822^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~509~^0.663^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~510~^1.032^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~511~^1.345^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~512~^0.664^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~513~^1.265^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~514~^1.895^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~515~^3.123^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~516~^1.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~517~^0.992^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~518~^0.819^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13488~^~521~^0.219^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13488~^~606~^2.489^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13488~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~610~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~611~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~612~^0.195^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~613~^1.504^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~614~^0.757^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~617~^2.375^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~618~^0.162^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~619~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~620~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~626~^0.314^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~628~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13488~^~645~^2.699^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13488~^~646~^0.247^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13490~^~312~^0.081^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13490~^~404~^0.085^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~405~^0.159^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~406~^8.748^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~410~^0.590^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~415~^0.661^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13490~^~501~^0.197^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~502~^1.196^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~503~^1.362^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~504~^2.381^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~505~^2.530^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~506~^0.779^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~507~^0.386^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~508~^1.182^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~509~^0.954^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~510~^1.485^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~511~^1.936^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~512~^0.955^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~513~^1.820^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~514~^2.726^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~515~^4.494^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~516~^1.823^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~517~^1.427^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~518~^1.179^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~13490~^~521~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13490~^~606~^2.305^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13490~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~612~^0.164^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~613~^1.343^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~614~^0.789^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~617~^2.232^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~618~^0.176^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~626~^0.181^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13490~^~645~^2.416^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13490~^~646~^0.223^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13491~^~312~^0.066^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~315~^0.005^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~404~^0.089^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~405~^0.328^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~406~^8.975^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~410~^0.497^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~415~^0.882^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~501~^0.402^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~502~^1.683^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~503~^1.670^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~504~^3.081^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~505~^3.443^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~506~^0.951^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~507~^0.359^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~508~^1.427^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~509~^1.337^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~510~^1.765^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~511~^2.402^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~512~^1.329^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~513~^2.138^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~514~^3.459^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~515~^5.840^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~516~^1.543^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~517~^1.504^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~518~^1.453^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~521~^0.165^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13491~^~605~^0.191^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~606~^1.556^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13491~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13491~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13491~^~610~^0.006^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~611~^0.003^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~612~^0.090^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~613~^0.893^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~614~^0.501^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~615~^0.002^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~617~^1.608^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~618~^0.218^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~619~^0.006^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~620~^0.049^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~621~^0.001^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~625~^0.022^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~626~^0.124^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13491~^~628~^0.007^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~629~^0.003^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13491~^~631~^0.013^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~645~^1.794^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~646~^0.310^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~652~^0.014^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~653~^0.044^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~654~^0.003^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~662~^0.009^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~663~^0.165^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~665~^0.017^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~670~^0.012^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~672~^0.001^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~673~^0.115^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~674~^1.442^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~675~^0.189^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~687~^0.033^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~689~^0.019^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~693~^0.175^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~695~^0.017^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~851~^0.006^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13491~^~853~^0.019^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~ -~13492~^~312~^0.067^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~315~^0.006^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~404~^0.089^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~405~^0.315^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~406~^9.259^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~410~^0.486^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~415~^0.891^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~501~^0.394^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~502~^1.636^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~503~^1.628^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~504~^2.983^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~505~^3.321^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~506~^0.924^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~507~^0.347^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~508~^1.386^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~509~^1.297^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~510~^1.722^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~511~^2.324^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~512~^1.273^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~513~^2.077^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~514~^3.348^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~515~^5.677^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~516~^1.497^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~517~^1.452^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~518~^1.407^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~521~^0.168^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13492~^~605~^0.180^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~606~^1.562^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13492~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13492~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13492~^~610~^0.005^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~611~^0.003^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~612~^0.093^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~613~^0.906^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~614~^0.493^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~615~^0.002^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~617~^1.650^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~618~^0.205^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~619~^0.006^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~620~^0.043^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~621~^0.001^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~ -~13492~^~625~^0.024^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~626~^0.133^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13492~^~628~^0.008^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~629~^0.002^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13492~^~631~^0.012^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~645~^1.850^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~646~^0.289^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~652~^0.014^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~653~^0.043^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~654~^0.002^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~662~^0.009^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~663~^0.152^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~665~^0.018^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~670~^0.013^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~672~^0.001^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~673~^0.123^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~674~^1.498^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~675~^0.173^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~687~^0.034^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~689~^0.018^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~693~^0.161^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~695~^0.018^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~851~^0.006^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13492~^~853~^0.018^0^^~4~^~BFYN~^~23355~^^^^^^^^^~07/01/2015~ -~13493~^~312~^0.066^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~315~^0.004^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~404~^0.089^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~405~^0.347^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~406~^8.549^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~410~^0.514^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~415~^0.869^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~501~^0.365^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~502~^1.532^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~503~^1.520^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~504~^2.804^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~505~^3.133^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~506~^0.866^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~507~^0.327^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~508~^1.298^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~509~^1.217^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~510~^1.606^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~511~^2.186^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~512~^1.209^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~513~^1.945^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~514~^3.148^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~515~^5.314^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~516~^1.404^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~517~^1.368^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~518~^1.323^0^^~4~^~O~^^^^^^^^^^~05/01/2014~ -~13493~^~521~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13493~^~605~^0.178^0^^~4~^~BFYN~^~23356~^^^^^^^^^~06/01/2013~ -~13493~^~606~^1.278^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13493~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13493~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13493~^~610~^0.006^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~611~^0.003^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~612~^0.069^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~613~^0.720^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~614~^0.428^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~615~^0.001^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~617~^1.261^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~618~^0.201^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~619~^0.004^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~620~^0.051^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~621~^0.002^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~625~^0.015^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~626~^0.089^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13493~^~628~^0.003^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~629~^0.003^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13493~^~631~^0.012^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~645~^1.393^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~646~^0.292^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~652~^0.011^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~653~^0.038^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~654~^0.003^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~662~^0.007^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~663~^0.160^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~665~^0.011^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~670~^0.007^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~672~^0.001^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~673~^0.081^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~674~^1.102^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~675~^0.184^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~687~^0.024^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~689~^0.018^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~693~^0.167^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~695~^0.011^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~851~^0.004^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13493~^~853~^0.018^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~ -~13494~^~312~^0.074^12^0.013^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~404~^0.047^12^0.008^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~406~^4.859^12^0.312^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13494~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~501~^0.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~502~^0.989^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~503~^1.129^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~504~^1.992^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~505~^2.116^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~506~^0.657^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~507~^0.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~508~^0.996^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~509~^0.786^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~510~^1.255^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~511~^1.662^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~512~^0.830^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~513~^1.600^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~514~^2.300^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~515~^3.830^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~516~^1.734^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~517~^1.302^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~518~^1.023^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13494~^~605~^1.147^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~606~^6.942^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~13494~^~610~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~02/01/2006~ -~13494~^~611~^0.012^8^0.003^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~612~^0.288^8^0.177^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~613~^2.045^8^1.194^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~614~^3.582^6^2.791^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~617~^3.926^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13494~^~618~^0.311^6^0.411^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13494~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~625~^0.102^8^0.053^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~626~^0.395^8^0.226^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~628~^0.020^8^0.041^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13494~^~645~^8.370^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~646~^0.466^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13494~^~652~^0.043^8^0.028^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~653~^0.104^8^0.062^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~663~^1.147^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13494~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~687~^0.100^8^0.060^~1~^~AR~^^^^^^^^^^~04/01/2014~ -~13494~^~693~^1.147^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~315~^0.009^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~404~^0.051^12^0.006^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~406~^4.026^12^0.324^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~410~^0.512^6^0.072^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~415~^0.311^12^0.027^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13495~^~501~^0.121^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~502~^0.923^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~503~^1.055^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~504~^1.861^0^^~1~^~AR~^^^^^^^^^^~02/01/2006~ -~13495~^~505~^1.976^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~506~^0.614^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~507~^0.246^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~508~^0.931^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~509~^0.734^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~510~^1.172^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~511~^1.553^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~512~^0.775^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~513~^1.494^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~514~^2.148^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~515~^3.577^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~516~^1.619^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~517~^1.216^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~518~^0.955^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~605~^1.173^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~606~^6.073^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~13495~^~610~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~02/01/2006~ -~13495~^~611~^0.006^8^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~612~^0.337^8^0.100^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~613~^3.606^8^0.788^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~614~^1.940^7^0.537^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~615~^0.010^8^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~617~^4.983^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13495~^~618~^0.364^8^0.060^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13495~^~620~^0.036^8^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~625~^0.120^8^0.030^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~626~^0.481^8^0.124^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~628~^0.060^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13495~^~645~^7.322^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~646~^0.408^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13495~^~652~^0.051^8^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~653~^0.123^8^0.035^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~663~^1.173^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13495~^~685~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13495~^~687~^0.122^8^0.032^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13495~^~693~^1.173^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~312~^0.066^12^0.007^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~406~^5.034^12^0.409^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~410~^0.593^0^^~4~^~BFPN~^~13497~^^^^^^^^^~07/01/2014~ -~13496~^~415~^0.332^12^0.038^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13496~^~501~^0.116^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~502~^0.884^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~503~^1.010^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~504~^1.782^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~505~^1.893^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~506~^0.588^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~507~^0.235^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~508~^0.891^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~509~^0.703^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~510~^1.123^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~511~^1.487^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~512~^0.742^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~513~^1.431^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~514~^2.058^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~515~^3.426^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~516~^1.551^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~517~^1.164^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~518~^0.915^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~605~^1.270^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~606~^6.075^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~13496~^~610~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~02/01/2006~ -~13496~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~612~^0.494^8^0.106^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~613~^3.498^8^0.796^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~614~^1.776^8^0.494^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~617~^6.523^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13496~^~618~^0.326^8^0.079^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13496~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~625~^0.153^8^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~626~^0.607^8^0.113^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~628~^0.056^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13496~^~645~^7.325^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~646~^0.408^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13496~^~652~^0.082^8^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~653~^0.182^8^0.041^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~663~^1.270^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13496~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~687~^0.162^8^0.030^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13496~^~693~^1.270^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~312~^0.069^36^0.010^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~315~^0.009^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~404~^0.051^36^0.006^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~406~^4.537^36^0.246^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~415~^0.336^36^0.024^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13497~^~501~^0.129^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~502~^0.982^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~503~^1.122^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~504~^1.978^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~505~^2.101^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~506~^0.653^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~508~^0.990^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~509~^0.780^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~510~^1.246^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~511~^1.651^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~512~^0.824^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~513~^1.589^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~514~^2.284^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~515~^3.804^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~516~^1.722^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~517~^1.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~518~^1.016^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~605~^1.168^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~606~^7.344^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~13497~^~610~^0.000^47^^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~611~^0.015^47^0.002^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~612~^0.571^47^0.027^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~613~^4.147^47^0.186^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~614~^2.027^47^0.176^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~617~^7.460^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13497~^~618~^0.390^47^0.028^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13497~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13497~^~620~^0.047^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13497~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~625~^0.162^47^0.012^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~626~^0.714^47^0.046^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~628~^0.073^47^0.006^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13497~^~645~^8.855^0^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13497~^~646~^0.493^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~652~^0.090^47^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~653~^0.218^47^0.011^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13497~^~663~^1.168^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13497~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13497~^~687~^0.182^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13497~^~693~^1.168^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13497~^~851~^0.044^35^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~312~^0.050^36^0.003^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~315~^0.009^36^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~404~^0.044^36^0.003^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~406~^3.382^36^0.184^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~410~^0.395^6^0.076^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~415~^0.278^36^0.022^~1~^~AR~^^^^^^^^^^~03/01/2004~ -~13498~^~501~^0.073^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~502~^0.555^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~503~^0.634^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~504~^1.118^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~505~^1.188^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~506~^0.369^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~507~^0.148^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~508~^0.559^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~509~^0.441^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~510~^0.705^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~511~^0.933^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~512~^0.466^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~513~^0.898^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~514~^1.291^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~515~^2.150^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~516~^0.973^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~517~^0.731^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~518~^0.574^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~605~^1.820^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13498~^~606~^11.754^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13498~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~13498~^~610~^0.000^47^^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~611~^0.020^47^0.001^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~612~^0.918^47^0.023^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~613~^6.463^47^0.122^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~614~^3.448^47^0.077^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~615~^0.022^47^0.001^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~617~^11.514^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13498~^~618~^0.577^47^0.022^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~619~^0.084^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~13498~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~625~^0.255^47^0.007^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~626~^1.105^47^0.029^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~628~^0.101^47^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~ -~13498~^~645~^14.171^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13498~^~646~^0.697^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13498~^~652~^0.146^47^0.004^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~653~^0.344^47^0.009^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~663~^1.820^26^0.028^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13498~^~685~^0.019^47^0.001^~1~^~AR~^^^^^^^^^^~04/01/2004~ -~13498~^~687~^0.258^39^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~13498~^~693~^1.820^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~13498~^~851~^0.065^35^0.005^~1~^~AR~^^^^^^^^^^~07/01/2004~ -~13499~^~312~^0.078^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~315~^0.014^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~405~^0.190^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~406~^3.340^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~415~^0.430^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~501~^0.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~502~^0.892^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~503~^0.863^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~504~^1.631^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~505~^1.773^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~506~^0.575^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~507~^0.210^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~508~^0.768^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~509~^0.699^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~510~^0.912^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~511~^1.325^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~512~^0.650^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~513~^1.139^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~514~^1.814^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~515~^3.209^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~516~^0.878^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~517~^0.811^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~518~^0.774^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~521~^0.100^0^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~605~^0.514^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~606~^3.449^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~612~^0.222^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~613~^1.884^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~614~^1.227^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13499~^~617~^3.653^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13499~^~618~^0.393^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13499~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~ -~13499~^~620~^0.046^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13499~^~625~^0.047^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~626~^0.261^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13499~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~ -~13499~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13499~^~645~^4.048^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~646~^0.452^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~653~^0.108^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~663~^0.514^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~670~^0.030^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^~1~^~05/01/2010~ -~13499~^~674~^3.140^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~675~^0.362^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~687~^0.078^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~693~^0.514^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~13499~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13499~^~859~^0.370^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~ -~13500~^~312~^0.126^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~315~^0.016^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~405~^0.313^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~406~^4.340^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~410~^1.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~415~^0.404^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~501~^0.323^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~502~^1.275^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~503~^1.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~504~^2.330^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~505~^2.533^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~506~^0.821^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~507~^0.300^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~508~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~509~^0.998^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~510~^1.302^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~511~^1.893^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~512~^0.929^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~513~^1.627^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~514~^2.592^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~515~^4.585^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~516~^1.254^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~517~^1.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~518~^1.106^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~521~^0.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~605~^0.369^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~606~^3.771^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~612~^0.228^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~613~^2.080^6^0.111^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~614~^1.337^6^0.073^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~617~^4.087^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13500~^~618~^0.439^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13500~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13500~^~620~^0.069^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~625~^0.048^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~626~^0.286^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~628~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13500~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~645~^4.509^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~646~^0.520^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~653~^0.112^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~654~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~663~^0.369^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~670~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~674~^3.717^6^0.235^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~675~^0.411^6^0.026^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~687~^0.083^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~693~^0.369^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13500~^~851~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13500~^~859~^0.248^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~312~^0.135^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~315~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~405~^0.317^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~406~^4.287^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~410~^0.980^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~415~^0.389^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~501~^0.324^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~502~^1.281^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~503~^1.238^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~504~^2.341^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~505~^2.545^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~506~^0.825^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~507~^0.301^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~508~^1.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~509~^1.003^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~510~^1.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~511~^1.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~512~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~513~^1.635^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~514~^2.604^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~515~^4.606^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~516~^1.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~517~^1.164^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~518~^1.111^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~521~^0.143^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~605~^0.357^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~606~^3.984^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~612~^0.239^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~613~^2.213^4^0.138^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~614~^1.399^4^0.090^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~617~^4.540^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13501~^~618~^0.408^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13501~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13501~^~620~^0.067^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~625~^0.053^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~626~^0.322^4^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~628~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13501~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~645~^5.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~646~^0.484^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~653~^0.118^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~654~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~663~^0.357^4^0.025^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~670~^0.029^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~674~^4.183^4^0.292^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~675~^0.380^4^0.032^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~687~^0.093^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~693~^0.357^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13501~^~851~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13501~^~859~^0.235^4^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~312~^0.113^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~315~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~405~^0.310^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~406~^4.510^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~410~^1.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~415~^0.399^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~501~^0.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~502~^1.266^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~503~^1.224^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~504~^2.314^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~505~^2.515^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~506~^0.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~507~^0.298^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~508~^1.090^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~509~^0.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~510~^1.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~511~^1.880^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~512~^0.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~513~^1.616^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~514~^2.574^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~515~^4.553^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~516~^1.245^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~517~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~518~^1.098^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~521~^0.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~605~^0.388^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~606~^3.451^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~612~^0.212^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~613~^1.879^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~614~^1.244^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~617~^3.406^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13502~^~618~^0.485^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13502~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13502~^~620~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~625~^0.040^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~626~^0.231^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13502~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~645~^3.746^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~646~^0.573^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~653~^0.103^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~654~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~663~^0.388^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~674~^3.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~675~^0.457^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~687~^0.068^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~693~^0.388^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13502~^~851~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13502~^~859~^0.269^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~312~^0.096^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~315~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~404~^0.095^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~405~^0.260^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~406~^3.890^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~410~^0.945^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~415~^0.407^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~501~^0.234^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~502~^0.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~503~^0.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~504~^1.685^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~505~^1.832^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~506~^0.594^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~508~^0.794^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~509~^0.722^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~510~^0.942^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~511~^1.369^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~512~^0.672^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~513~^1.177^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~514~^1.875^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~515~^3.316^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~516~^0.907^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~517~^0.838^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~518~^0.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~521~^0.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~605~^0.262^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13519~^~606~^2.730^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13519~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~612~^0.168^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~613~^1.533^6^0.158^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~614~^0.937^6^0.098^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~617~^2.975^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13519~^~618~^0.300^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13519~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13519~^~620~^0.051^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~625~^0.034^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~626~^0.215^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~628~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13519~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~645~^3.290^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13519~^~646~^0.360^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13519~^~653~^0.081^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~663~^0.262^6^0.028^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~670~^0.018^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13519~^~674~^2.714^6^0.300^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~675~^0.282^6^0.034^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~687~^0.062^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~693~^0.262^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13519~^~851~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13519~^~859~^0.183^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~312~^0.095^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~315~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~405~^0.250^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~406~^3.827^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~410~^0.880^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~415~^0.418^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~501~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~502~^0.921^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~503~^0.891^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~504~^1.684^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~505~^1.830^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~506~^0.593^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~508~^0.793^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~509~^0.721^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~510~^0.941^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~511~^1.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~512~^0.671^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~513~^1.176^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~514~^1.873^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~515~^3.313^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~516~^0.906^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~517~^0.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~518~^0.799^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~521~^0.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~605~^0.259^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13520~^~606~^2.900^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13520~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~612~^0.178^4^0.022^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~613~^1.631^4^0.196^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~614~^0.995^4^0.121^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~617~^3.227^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13520~^~618~^0.306^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13520~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13520~^~620~^0.054^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~625~^0.040^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~626~^0.233^4^0.025^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~628~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13520~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~645~^3.570^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13520~^~646~^0.370^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13520~^~653~^0.085^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~654~^0.012^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~663~^0.259^4^0.035^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~670~^0.019^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13520~^~674~^2.968^4^0.373^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~675~^0.287^4^0.042^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~687~^0.065^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~693~^0.259^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13520~^~851~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13520~^~859~^0.180^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~312~^0.099^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~315~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~405~^0.280^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~406~^4.150^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~410~^1.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~415~^0.392^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~501~^0.234^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~502~^0.923^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~503~^0.893^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~504~^1.688^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~505~^1.834^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~506~^0.595^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~508~^0.795^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~509~^0.723^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~510~^0.943^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~511~^1.371^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~512~^0.673^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~513~^1.179^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~514~^1.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~515~^3.320^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~516~^0.908^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~517~^0.839^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~518~^0.801^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~521~^0.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~605~^0.268^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~606~^2.472^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~612~^0.152^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~613~^1.385^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~614~^0.850^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~617~^2.608^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13523~^~618~^0.316^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13523~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13523~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~625~^0.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~626~^0.189^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13523~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~645~^2.880^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~653~^0.077^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~663~^0.268^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~670~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~674~^2.340^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~675~^0.297^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~687~^0.057^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~693~^0.268^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13523~^~851~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13523~^~859~^0.187^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~312~^0.070^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~315~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~404~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~405~^0.165^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~406~^6.353^6^0.160^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~410~^0.725^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~415~^0.622^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~501~^0.246^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~502~^0.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~503~^0.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~504~^1.777^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~505~^1.931^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~506~^0.626^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~507~^0.228^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~508~^0.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~509~^0.761^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~510~^0.993^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~511~^1.444^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~512~^0.708^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~513~^1.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~514~^1.976^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~515~^3.496^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~516~^0.956^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~517~^0.884^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~518~^0.843^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~521~^0.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~605~^0.202^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~606~^1.844^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~612~^0.125^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~613~^1.113^6^0.065^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~614~^0.551^6^0.038^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~617~^2.393^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13595~^~618~^0.211^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13595~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13595~^~620~^0.042^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~625~^0.042^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~626~^0.237^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~628~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13595~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~645~^2.728^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~646~^0.253^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~653~^0.050^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~654~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~663~^0.202^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~670~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~674~^2.190^6^0.137^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~675~^0.194^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~687~^0.057^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~693~^0.202^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13595~^~851~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13595~^~859~^0.135^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~312~^0.073^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~315~^0.002^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~405~^0.165^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~406~^6.452^4^0.198^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~410~^0.680^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~415~^0.617^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~501~^0.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~502~^0.964^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~503~^0.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~504~^1.762^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~505~^1.915^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~506~^0.621^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~508~^0.830^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~509~^0.755^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~510~^0.984^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~511~^1.431^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~512~^0.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~513~^1.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~514~^1.959^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~515~^3.466^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~516~^0.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~517~^0.876^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~518~^0.836^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~521~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~13596~^~605~^0.210^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~606~^1.993^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~612~^0.137^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~613~^1.214^4^0.081^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~614~^0.583^4^0.047^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~617~^2.583^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13596~^~618~^0.218^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13596~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13596~^~620~^0.044^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~625~^0.048^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~626~^0.268^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~628~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~629~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13596~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~645~^2.960^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~646~^0.262^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~653~^0.052^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~654~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~663~^0.210^4^0.018^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~670~^0.018^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~674~^2.373^4^0.171^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~675~^0.200^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~687~^0.061^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~693~^0.210^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13596~^~851~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13596~^~859~^0.138^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~312~^0.066^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~405~^0.165^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~406~^6.205^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~410~^0.770^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~415~^0.630^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~501~^0.249^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~502~^0.985^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~503~^0.952^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~504~^1.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~505~^1.956^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~506~^0.634^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~507~^0.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~508~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~509~^0.771^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~510~^1.006^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~511~^1.462^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~512~^0.717^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~513~^1.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~514~^2.002^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~515~^3.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~516~^0.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~517~^0.895^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~518~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~521~^0.110^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~605~^0.185^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13597~^~606~^1.580^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13597~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~612~^0.105^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~613~^0.936^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~614~^0.489^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~617~^2.036^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13597~^~618~^0.192^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13597~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13597~^~620~^0.037^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~625~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~626~^0.185^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13597~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~645~^2.300^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13597~^~646~^0.230^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13597~^~653~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~663~^0.185^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~674~^1.851^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~675~^0.176^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~687~^0.048^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13597~^~693~^0.185^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13597~^~851~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13597~^~859~^0.131^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13598~^~312~^0.123^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~315~^0.015^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~404~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~405~^0.305^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~406~^4.268^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~410~^1.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~415~^0.397^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~501~^0.311^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~502~^1.214^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~503~^1.173^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~504~^2.219^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~505~^2.412^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~506~^0.784^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~507~^0.290^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~508~^1.050^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~509~^0.951^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~510~^1.247^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~511~^1.816^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~512~^0.894^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~513~^1.574^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~514~^2.474^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~515~^4.363^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~516~^1.259^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~517~^1.134^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~518~^1.060^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~521~^0.189^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13598~^~605~^0.506^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~606~^4.528^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~612~^0.286^6^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~613~^2.480^6^0.229^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~614~^1.612^6^0.154^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~615~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~617~^4.800^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13598~^~618~^0.494^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~13598~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13598~^~620~^0.068^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~625~^0.059^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~626~^0.332^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13598~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~628~^0.011^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13598~^~631~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~645~^5.298^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~646~^0.580^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~13598~^~653~^0.134^6^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~654~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~663~^0.506^6^0.061^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~670~^0.040^6^0.042^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~13598~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~673~^0.332^6^0.027^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~674~^4.294^6^0.403^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~675~^0.454^6^0.038^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~687~^0.095^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~693~^0.506^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13598~^~851~^0.014^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13598~^~859~^0.269^6^0.019^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13647~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~405~^0.212^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~406~^4.618^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~410~^0.795^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~415~^0.583^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~501~^0.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~502~^0.980^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~503~^0.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~504~^1.791^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~505~^1.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~506~^0.631^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~508~^0.844^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~509~^0.767^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~510~^1.001^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~511~^1.455^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~512~^0.714^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~513~^1.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~514~^1.992^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~515~^3.524^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~516~^0.964^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~517~^0.891^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~518~^0.850^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~521~^0.109^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~605~^0.191^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~606~^1.653^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~612~^0.104^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~613~^0.933^6^0.061^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~614~^0.560^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~617~^1.874^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13647~^~618~^0.245^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13647~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13647~^~620~^0.050^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~625~^0.024^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~626~^0.146^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~628~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13647~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~645~^2.086^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~646~^0.296^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~653~^0.048^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~654~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~663~^0.191^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~670~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~674~^1.683^6^0.079^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~675~^0.231^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~687~^0.040^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~693~^0.191^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13647~^~851~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13647~^~859~^0.127^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~312~^0.071^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~315~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~405~^0.210^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~406~^4.593^4^0.123^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~410~^0.770^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~415~^0.570^4^0.042^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~501~^0.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~502~^0.993^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~503~^0.960^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~504~^1.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~505~^1.973^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~506~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~507~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~508~^0.855^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~509~^0.778^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~510~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~511~^1.475^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~512~^0.723^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~513~^1.267^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~514~^2.019^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~515~^3.571^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~516~^0.977^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~517~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~518~^0.861^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13648~^~521~^0.111^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~605~^0.176^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~606~^1.709^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~612~^0.104^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~613~^0.960^4^0.076^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~614~^0.588^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~617~^1.974^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13648~^~618~^0.241^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13648~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13648~^~620~^0.053^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~625~^0.026^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~626~^0.155^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~628~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13648~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~645~^2.199^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~646~^0.297^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~653~^0.048^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~654~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~663~^0.176^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~670~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~674~^1.798^4^0.099^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~675~^0.229^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~687~^0.042^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~693~^0.176^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13648~^~851~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13648~^~859~^0.114^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13649~^~312~^0.077^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~315~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~405~^0.215^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~406~^4.655^6^0.165^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~410~^0.820^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~415~^0.601^6^0.057^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~501~^0.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~502~^0.993^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~503~^0.960^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~504~^1.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~505~^1.973^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~506~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~507~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~508~^0.855^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~509~^0.778^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~510~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~511~^1.475^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~512~^0.723^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~513~^1.267^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~514~^2.019^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~515~^3.571^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~516~^0.977^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~517~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~518~^0.861^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~521~^0.111^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~605~^0.207^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13649~^~606~^1.530^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13649~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~612~^0.101^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~613~^0.869^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~614~^0.506^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~617~^1.665^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13649~^~618~^0.238^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13649~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13649~^~620~^0.042^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~625~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~626~^0.128^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13649~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~645~^1.850^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13649~^~646~^0.280^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13649~^~653~^0.048^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~663~^0.207^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~674~^1.457^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~675~^0.223^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~687~^0.037^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13649~^~693~^0.207^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13649~^~851~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13649~^~859~^0.146^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13650~^~312~^0.130^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~405~^0.305^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~406~^4.194^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~410~^0.952^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~415~^0.380^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~501~^0.310^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~502~^1.210^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~503~^1.170^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~504~^2.213^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~505~^2.405^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~506~^0.781^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~507~^0.289^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~508~^1.047^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~509~^0.949^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~510~^1.243^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~511~^1.811^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~512~^0.891^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~513~^1.569^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~514~^2.467^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~515~^4.351^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~516~^1.255^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~517~^1.130^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~518~^1.057^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~521~^0.188^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13650~^~605~^0.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~606~^4.968^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~612~^0.314^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~613~^2.733^4^0.285^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~614~^1.757^4^0.191^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~615~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~617~^5.461^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13650~^~618~^0.481^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13650~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13650~^~620~^0.066^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~625~^0.068^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~626~^0.382^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13650~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~628~^0.017^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13650~^~631~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~645~^6.036^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~646~^1.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~653~^0.146^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~654~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~663~^0.536^4^0.076^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~670~^0.044^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13650~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~673~^0.382^4^0.033^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~674~^4.925^4^0.501^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~675~^0.438^4^0.047^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~687~^0.108^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~693~^0.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13650~^~851~^0.013^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13650~^~859~^0.262^4^0.023^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~312~^0.061^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~315~^0.010^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~404~^0.066^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~405~^0.145^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~406~^4.324^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~410~^0.614^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~415~^0.383^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~502~^0.844^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~503~^0.816^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~504~^1.543^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~505~^1.677^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~506~^0.545^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~508~^0.730^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~509~^0.661^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~510~^0.867^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~511~^1.263^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~512~^0.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~513~^1.094^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~514~^1.720^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~515~^3.034^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~516~^0.875^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~517~^0.788^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~518~^0.737^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13786~^~605~^0.688^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13786~^~606~^5.042^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13786~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~612~^0.337^6^0.041^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~613~^2.689^6^0.331^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~614~^1.855^6^0.227^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~615~^0.009^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~617~^5.308^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13786~^~618~^0.457^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13786~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13786~^~620~^0.040^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~625~^0.064^6^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~626~^0.345^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13786~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~628~^0.027^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13786~^~631~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~645~^5.837^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13786~^~646~^0.526^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13786~^~653~^0.144^6^0.017^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~654~^0.009^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~663~^0.688^6^0.083^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~670~^0.053^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~672~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13786~^~673~^0.345^6^0.042^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~674~^4.620^6^0.602^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~675~^0.405^6^0.056^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~687~^0.094^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~693~^0.688^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13786~^~851~^0.023^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13786~^~859~^0.241^6^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~312~^0.059^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~315~^0.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~404~^0.061^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~405~^0.141^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~406~^4.323^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~410~^0.553^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~415~^0.365^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~502~^0.842^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~503~^0.814^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~504~^1.540^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~505~^1.674^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~506~^0.544^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~508~^0.728^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~509~^0.660^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~510~^0.865^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~511~^1.260^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~512~^0.620^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~513~^1.092^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~514~^1.717^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~515~^3.027^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~516~^0.873^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~517~^0.787^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~518~^0.735^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13788~^~605~^0.688^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~606~^5.072^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~612~^0.340^4^0.050^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~613~^2.713^4^0.411^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~614~^1.857^4^0.282^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~615~^0.010^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~617~^5.367^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13788~^~618~^0.459^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13788~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13788~^~620~^0.039^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~625~^0.067^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~626~^0.352^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13788~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~628~^0.028^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13788~^~631~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~645~^5.908^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~646~^0.527^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13788~^~653~^0.143^4^0.021^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~654~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~663~^0.688^4^0.104^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~670~^0.053^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13788~^~672~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~673~^0.352^4^0.052^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~674~^4.679^4^0.748^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~675~^0.406^4^0.069^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~687~^0.094^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~693~^0.688^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13788~^~851~^0.023^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13788~^~859~^0.230^4^0.046^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~312~^0.066^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~315~^0.010^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~405~^0.155^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~406~^4.560^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~410~^0.675^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~415~^0.414^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~501~^0.217^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~502~^0.847^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~503~^0.818^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~504~^1.548^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~505~^1.683^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~506~^0.547^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~507~^0.202^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~508~^0.732^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~509~^0.664^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~510~^0.870^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~511~^1.267^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~512~^0.623^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~513~^1.098^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~514~^1.726^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~515~^3.044^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~516~^0.878^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~517~^0.791^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~518~^0.739^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13791~^~605~^0.687^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13791~^~606~^4.998^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13791~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~612~^0.331^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~613~^2.653^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~614~^1.852^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~615~^0.008^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~617~^5.219^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13791~^~618~^0.455^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13791~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13791~^~620~^0.041^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~625~^0.060^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~626~^0.336^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13791~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~628~^0.024^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13791~^~631~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~645~^5.732^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13791~^~646~^0.525^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13791~^~653~^0.144^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~663~^0.687^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~670~^0.052^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13791~^~673~^0.336^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~674~^4.532^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~675~^0.403^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~687~^0.093^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~693~^0.687^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13791~^~851~^0.023^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13791~^~859~^0.258^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13795~^~312~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~315~^0.025^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~404~^0.076^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~405~^0.164^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~406~^5.449^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~410~^0.463^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~415~^0.529^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~501~^0.170^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~502~^0.859^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~503~^0.918^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~504~^1.646^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~505~^1.784^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~506~^0.529^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~507~^0.235^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~508~^0.794^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~509~^0.682^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~510~^0.994^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~511~^1.321^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~512~^0.685^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~513~^1.225^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~514~^1.874^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~515~^3.113^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~516~^1.117^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~517~^0.929^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~518~^0.802^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~521~^0.179^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~605~^0.464^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~606~^6.036^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~610~^0.028^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~611~^0.021^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~612~^0.437^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~613~^3.430^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~614~^1.971^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~617~^5.772^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~618~^0.476^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~619~^0.092^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~620~^0.034^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~625~^0.047^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~626~^0.585^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~628~^0.025^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~645~^6.497^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~646~^0.617^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~652~^0.042^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~653~^0.099^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~662~^0.022^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~663~^0.405^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~665~^0.037^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~670~^0.035^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~673~^0.221^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~674~^2.765^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~675~^0.234^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~687~^0.061^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~693~^0.427^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~695~^0.037^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13795~^~697~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~851~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13795~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~312~^0.075^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~315~^0.028^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~404~^0.068^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~405~^0.189^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~406~^5.458^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~410~^0.463^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~415~^0.478^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~501~^0.222^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~502~^1.127^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~503~^1.208^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~504~^2.162^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~505~^2.342^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~506~^0.695^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~507~^0.310^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~508~^1.045^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~509~^0.895^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~510~^1.308^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~511~^1.737^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~512~^0.899^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~513~^1.611^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~514~^2.462^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~515~^4.090^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~516~^1.475^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~517~^1.223^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~518~^1.055^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~521~^0.236^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~605~^0.592^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~606~^6.782^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~610~^0.024^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~611~^0.024^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~612~^0.485^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~613~^3.853^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~614~^2.216^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~617~^6.639^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~618~^0.573^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~619~^0.087^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~620~^0.045^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~625~^0.057^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~626~^0.594^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~628~^0.030^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13796~^~629~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~ -~13796~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~645~^7.407^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~646~^0.733^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~652~^0.049^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~653~^0.119^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~662~^0.024^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~663~^0.527^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~665~^0.041^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~670~^0.042^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~673~^0.271^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~674~^3.277^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~675~^0.296^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~687~^0.077^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~693~^0.551^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~695~^0.041^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~13796~^~697~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~851~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13796~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~13797~^~312~^0.071^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13797~^~315~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~404~^0.075^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~405~^0.169^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~406~^5.572^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~410~^0.484^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~415~^0.523^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~501~^0.168^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~502~^0.842^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~503~^0.901^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~504~^1.611^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~505~^1.743^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~506~^0.519^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~507~^0.230^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~508~^0.779^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~509~^0.668^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~510~^0.977^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~511~^1.293^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~512~^0.667^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~513~^1.202^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~514~^1.834^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~515~^3.052^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~516~^1.099^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~517~^0.910^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~518~^0.786^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~521~^0.175^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~605~^0.488^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~606~^6.430^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~610~^0.030^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~611~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~612~^0.464^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~613~^3.657^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~614~^2.100^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~617~^6.148^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~618~^0.504^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~619~^0.099^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~620~^0.036^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~625~^0.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~626~^0.623^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~628~^0.027^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~645~^6.920^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~646~^0.655^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~652~^0.043^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~653~^0.104^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~662~^0.023^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~663~^0.426^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~665~^0.039^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~670~^0.038^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~673~^0.232^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~674~^2.911^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~675~^0.244^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~687~^0.064^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~693~^0.449^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~695~^0.039^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13797~^~697~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~851~^0.012^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13797~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~312~^0.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~315~^0.028^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~404~^0.067^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~405~^0.187^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~406~^5.486^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~410~^0.463^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~415~^0.470^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~501~^0.222^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~502~^1.123^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~503~^1.206^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~504~^2.152^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~505~^2.327^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~506~^0.694^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~507~^0.309^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~508~^1.042^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~509~^0.891^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~510~^1.307^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~511~^1.729^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~512~^0.890^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~513~^1.608^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~514~^2.451^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~515~^4.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~516~^1.477^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~517~^1.220^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~518~^1.050^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~521~^0.237^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~605~^0.622^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~606~^7.243^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~610~^0.026^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~611~^0.026^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~612~^0.517^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~613~^4.122^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~614~^2.363^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~617~^7.122^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~618~^0.610^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~619~^0.093^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~620~^0.049^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~625~^0.061^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~626~^0.636^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~628~^0.032^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~631~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~645~^7.944^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~646~^0.775^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~652~^0.051^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~653~^0.126^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~662~^0.025^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~663~^0.554^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~665~^0.043^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~670~^0.044^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~673~^0.290^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~674~^3.522^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~675~^0.316^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~687~^0.082^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~693~^0.579^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~695~^0.043^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13798~^~697~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~851~^0.017^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13798~^~853~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~312~^0.071^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~ -~13799~^~315~^0.026^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~404~^0.074^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~405~^0.146^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~406~^5.036^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~410~^0.460^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~415~^0.496^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~501~^0.160^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~502~^0.822^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~503~^0.882^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~504~^1.584^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~505~^1.718^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~506~^0.508^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~507~^0.228^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~508~^0.763^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~509~^0.656^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~510~^0.954^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~511~^1.272^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~512~^0.662^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~513~^1.175^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~514~^1.803^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~515~^2.988^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~516~^1.076^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~517~^0.897^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~518~^0.773^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~521~^0.170^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~605~^0.381^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~606~^5.219^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~610~^0.025^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~611~^0.018^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~612~^0.380^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~613~^2.972^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~614~^1.701^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~617~^4.991^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~618~^0.410^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~619~^0.083^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~620~^0.029^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~625~^0.038^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~626~^0.513^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~628~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~629~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~631~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~645~^5.621^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~646~^0.535^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~652~^0.035^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~653~^0.081^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~662~^0.019^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~663~^0.332^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~665~^0.030^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~670~^0.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~673~^0.181^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~674~^2.270^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~675~^0.196^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~687~^0.050^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~693~^0.351^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~695~^0.030^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13799~^~697~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~851~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13799~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~312~^0.068^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~315~^0.026^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~404~^0.066^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~405~^0.179^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~406~^5.124^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~410~^0.461^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~415~^0.451^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~501~^0.221^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~502~^1.129^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~503~^1.208^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~504~^2.172^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~505~^2.355^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~506~^0.701^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~507~^0.313^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~508~^1.046^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~509~^0.900^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~510~^1.306^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~511~^1.746^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~512~^0.905^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~513~^1.609^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~514~^2.471^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~515~^4.105^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~516~^1.469^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~517~^1.227^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~518~^1.060^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~521~^0.234^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~605~^0.521^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~606~^6.163^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~610~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~611~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~612~^0.442^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~613~^3.503^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~614~^2.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~617~^5.970^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~618~^0.511^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~619~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~620~^0.041^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~625~^0.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~626~^0.531^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~628~^0.026^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~631~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~645~^6.648^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~646~^0.652^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~13800~^~652~^0.046^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~653~^0.108^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~687~^0.061^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~697~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13800~^~859~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~13803~^~312~^0.071^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~405~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~406~^3.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~501~^0.206^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~502~^0.804^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~503~^0.828^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~504~^1.456^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~505~^1.532^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~506~^0.471^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~507~^0.206^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~508~^0.719^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~509~^0.619^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~510~^0.896^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~511~^1.164^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~512~^0.631^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~513~^1.111^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~514~^1.682^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~515~^2.767^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~516~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~517~^0.813^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~518~^0.704^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~606~^7.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~611~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~612~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~613~^4.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~614~^2.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~617~^7.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~618~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~619~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~626~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13803~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~645~^8.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13803~^~646~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~312~^0.104^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~405~^0.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~406~^3.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~415~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~501~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~502~^1.129^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~503~^1.162^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~504~^2.043^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~505~^2.151^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~506~^0.662^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~507~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~508~^1.009^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~509~^0.869^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~510~^1.258^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~511~^1.634^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~512~^0.885^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~513~^1.559^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~514~^2.362^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~515~^3.884^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~516~^1.411^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~517~^1.142^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~518~^0.989^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~606~^9.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~612~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~613~^5.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~614~^2.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~617~^9.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~618~^0.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~619~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13804~^~626~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13804~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13804~^~630~^0.000^0^^~4~^~BFFN~^~13892~^^^^^^^^^~03/01/2007~ -~13804~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13804~^~645~^10.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13804~^~646~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13805~^~312~^0.077^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13805~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13805~^~405~^0.130^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13805~^~406~^4.041^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13805~^~410~^0.516^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13805~^~415~^0.425^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13805~^~501~^0.127^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~502~^0.769^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~503~^0.876^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~504~^1.531^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~505~^1.627^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~506~^0.501^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~507~^0.248^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~508~^0.760^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~509~^0.613^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~510~^0.955^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~511~^1.245^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~512~^0.614^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~513~^1.170^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~514~^1.753^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~515~^2.890^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~516~^1.172^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~517~^0.918^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~518~^0.758^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13805~^~521~^0.202^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13805~^~606~^8.951^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13805~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~610~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~611~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~612~^0.701^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~613~^5.389^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~614~^2.742^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~617~^8.385^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~618~^0.543^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~619~^0.265^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~626~^1.082^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13805~^~645~^9.498^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13805~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~312~^0.100^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13806~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13806~^~405~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13806~^~406~^4.087^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13806~^~410~^0.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13806~^~415~^0.282^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13806~^~501~^0.181^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~502~^1.101^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~503~^1.253^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~504~^2.192^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~505~^2.328^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~506~^0.717^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~507~^0.356^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~508~^1.088^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~509~^0.878^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~510~^1.367^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~511~^1.781^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~512~^0.879^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~513~^1.675^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~514~^2.509^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~515~^4.136^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~516~^1.678^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~517~^1.313^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~518~^1.085^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13806~^~521~^0.289^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13806~^~606~^7.305^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~610~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~611~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~612~^0.584^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~613~^4.477^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~614~^2.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~617~^7.134^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~618~^0.458^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~619~^0.201^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~626~^0.770^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~628~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13806~^~645~^7.934^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13806~^~646~^0.681^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13807~^~312~^0.071^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~405~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~406~^3.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~410~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~415~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~501~^0.198^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~502~^0.771^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~503~^0.794^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~504~^1.395^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~505~^1.469^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~506~^0.452^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~507~^0.198^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~508~^0.689^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~509~^0.593^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~510~^0.859^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~511~^1.116^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~512~^0.604^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~513~^1.065^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~514~^1.613^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~515~^2.652^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~516~^0.963^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~517~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~518~^0.675^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~606~^8.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~612~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~613~^5.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~614~^2.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~617~^8.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~618~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~619~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~626~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13807~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~645~^9.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13807~^~646~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~312~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~405~^0.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~406~^3.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~410~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~415~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~501~^0.273^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~502~^1.066^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~503~^1.097^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~504~^1.928^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~505~^2.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~506~^0.625^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~507~^0.273^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~508~^0.952^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~509~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~510~^1.187^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~511~^1.542^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~512~^0.835^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~513~^1.472^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~514~^2.229^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~515~^3.665^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~516~^1.331^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~517~^1.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~518~^0.933^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~606~^10.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~612~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~613~^6.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~614~^3.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~617~^10.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~618~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~619~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~626~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13808~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~645~^12.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13808~^~646~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13809~^~312~^0.081^4^0.001^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~315~^0.011^5^0.002^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~404~^0.070^4^0.004^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~405~^0.139^4^0.004^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~406~^4.331^4^0.067^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~410~^0.553^4^0.006^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~415~^0.456^4^0.033^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13809~^~501~^0.123^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~502~^0.750^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~503~^0.854^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~504~^1.494^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~505~^1.587^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~506~^0.489^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~507~^0.242^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~508~^0.742^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~509~^0.598^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~510~^0.932^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~511~^1.214^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~512~^0.599^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~513~^1.142^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~514~^1.711^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~515~^2.819^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~516~^1.144^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~517~^0.895^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~518~^0.740^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13809~^~521~^0.197^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13809~^~606~^7.254^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13809~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~610~^0.058^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~611~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~612~^0.568^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~613~^4.367^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~614~^2.222^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~617~^6.795^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~618~^0.440^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~619~^0.215^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~626~^0.877^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13809~^~645~^7.697^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13809~^~646~^0.684^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~312~^0.104^4^0.013^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~315~^0.010^5^0.000^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~404~^0.061^4^0.003^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~405~^0.178^4^0.009^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~406~^4.273^4^0.128^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~410~^0.594^4^0.003^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~415~^0.295^4^0.012^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13810~^~501~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~502~^1.213^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~503~^1.382^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~504~^2.416^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~505~^2.567^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~506~^0.791^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~507~^0.392^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~508~^1.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~509~^0.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~510~^1.507^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~511~^1.964^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~512~^0.969^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~513~^1.847^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~514~^2.767^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~515~^4.560^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~516~^1.850^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~517~^1.448^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~518~^1.197^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13810~^~521~^0.316^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13810~^~606~^7.620^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13810~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13810~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13810~^~610~^0.054^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~611~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~612~^0.609^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~613~^4.670^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~614~^2.236^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~617~^7.442^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~618~^0.477^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~619~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13810~^~626~^0.804^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~628~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13810~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13810~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13810~^~645~^8.276^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13810~^~646~^0.730^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13811~^~312~^0.082^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~315~^0.013^3^0.004^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~404~^0.064^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~405~^0.143^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~406~^4.328^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~410~^0.559^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~415~^0.425^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13811~^~501~^0.123^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~502~^0.745^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~503~^0.848^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~504~^1.484^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~505~^1.576^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~506~^0.486^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~507~^0.241^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~508~^0.737^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~509~^0.594^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~510~^0.925^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~511~^1.206^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~512~^0.595^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~513~^1.134^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~514~^1.699^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~515~^2.800^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~516~^1.136^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~517~^0.889^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~518~^0.735^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13811~^~521~^0.196^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13811~^~606~^7.492^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13811~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~610~^0.060^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~611~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~612~^0.587^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~613~^4.511^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~614~^2.295^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~617~^7.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~618~^0.454^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~619~^0.222^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~626~^0.905^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~628~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13811~^~645~^7.950^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13811~^~646~^0.706^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~312~^0.116^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~315~^0.010^3^0.000^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~404~^0.057^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~405~^0.193^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~406~^4.215^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~410~^0.595^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~415~^0.290^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~ -~13812~^~501~^0.198^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~502~^1.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~503~^1.369^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~504~^2.393^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~505~^2.543^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~506~^0.784^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~507~^0.388^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~508~^1.188^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~509~^0.959^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~510~^1.493^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~511~^1.946^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~512~^0.960^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~513~^1.829^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~514~^2.741^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~515~^4.517^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~516~^1.832^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~517~^1.434^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~518~^1.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13812~^~521~^0.317^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2004~ -~13812~^~606~^7.902^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13812~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13812~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13812~^~610~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~611~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~612~^0.632^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~613~^4.843^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~614~^2.319^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~617~^7.718^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~618~^0.495^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~619~^0.217^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13812~^~626~^0.833^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13812~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13812~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13812~^~645~^8.583^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13812~^~646~^0.757^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13813~^~312~^0.080^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~315~^0.010^3^0.000^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~404~^0.076^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~405~^0.135^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~406~^4.334^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~410~^0.548^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~415~^0.486^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~501~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~502~^0.772^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~503~^0.879^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~504~^1.537^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~505~^1.633^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~506~^0.503^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~507~^0.249^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~508~^0.763^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~509~^0.616^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~510~^0.959^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~511~^1.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~512~^0.617^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~513~^1.175^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~514~^1.760^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~515~^2.902^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~516~^1.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~517~^0.921^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~518~^0.761^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13813~^~521~^0.203^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13813~^~606~^7.016^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13813~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~610~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~611~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~612~^0.550^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~613~^4.224^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~614~^2.149^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~617~^6.572^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~618~^0.425^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~619~^0.208^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~626~^0.848^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~628~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13813~^~645~^7.444^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13813~^~646~^0.661^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~312~^0.093^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~315~^0.010^3^0.001^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~404~^0.065^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~405~^0.163^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~406~^4.331^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~410~^0.593^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~415~^0.296^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13814~^~501~^0.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~502~^1.225^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~503~^1.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~504~^2.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~505~^2.591^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~506~^0.798^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~507~^0.396^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~508~^1.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~509~^0.977^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~510~^1.521^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~511~^1.983^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~512~^0.979^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~513~^1.864^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~514~^2.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~515~^4.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~516~^1.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~517~^1.462^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~518~^1.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13814~^~521~^0.316^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13814~^~606~^7.337^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13814~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13814~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13814~^~610~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~611~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~612~^0.587^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~613~^4.497^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~614~^2.153^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~617~^7.166^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~618~^0.460^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~619~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13814~^~626~^0.774^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~628~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13814~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13814~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13814~^~645~^7.969^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13814~^~646~^0.704^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13815~^~312~^0.073^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~406~^2.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~410~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~415~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~501~^0.192^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~502~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~503~^0.772^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~504~^1.357^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~505~^1.428^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~506~^0.439^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~507~^0.192^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~508~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~509~^0.577^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~510~^0.835^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~511~^1.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~512~^0.588^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~513~^1.035^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~514~^1.568^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~515~^2.579^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~516~^0.936^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~517~^0.758^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~518~^0.656^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~606~^7.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~612~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~613~^4.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~614~^2.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~617~^7.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~618~^0.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~619~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~626~^0.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13815~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~645~^8.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13815~^~646~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~312~^0.126^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~406~^2.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~415~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~501~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~502~^1.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~503~^1.204^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~504~^2.116^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~505~^2.228^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~506~^0.685^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~507~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~508~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~509~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~510~^1.302^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~511~^1.692^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~512~^0.917^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~513~^1.615^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~514~^2.446^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~515~^4.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~516~^1.461^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~517~^1.182^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~518~^1.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~606~^10.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13816~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~612~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~613~^6.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~614~^3.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~617~^9.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~618~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13816~^~626~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13816~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13816~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/2004~ -~13816~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13816~^~645~^10.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13816~^~646~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~312~^0.072^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~406~^2.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~410~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~415~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~501~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~502~^0.742^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~503~^0.764^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~504~^1.342^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~505~^1.413^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~506~^0.435^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~507~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~508~^0.663^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~509~^0.571^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~510~^0.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~511~^1.073^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~512~^0.581^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~513~^1.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~514~^1.552^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~515~^2.552^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~516~^0.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~517~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~518~^0.649^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~606~^8.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~612~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~613~^5.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~614~^2.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~617~^8.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~618~^0.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~619~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~626~^1.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13817~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~645~^9.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13817~^~646~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~312~^0.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~406~^2.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~415~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~501~^0.295^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~502~^1.152^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~503~^1.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~504~^2.084^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~505~^2.194^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~506~^0.675^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~507~^0.295^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~508~^1.029^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~509~^0.886^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~510~^1.283^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~511~^1.666^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~512~^0.903^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~513~^1.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~514~^2.409^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~515~^3.961^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~516~^1.439^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~517~^1.164^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~518~^1.008^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~606~^10.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~612~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~613~^6.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~614~^3.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~617~^10.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~618~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~619~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13818~^~626~^1.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13818~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13818~^~630~^0.000^0^^~4~^~BFFN~^~13816~^^^^^^^^^~03/01/2007~ -~13818~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13818~^~645~^11.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13818~^~646~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~312~^0.074^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~406~^2.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~410~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~415~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~501~^0.194^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~502~^0.759^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~503~^0.781^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~504~^1.373^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~505~^1.445^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~506~^0.445^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~507~^0.194^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~508~^0.678^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~509~^0.583^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~510~^0.845^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~511~^1.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~512~^0.595^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~513~^1.048^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~514~^1.587^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~515~^2.609^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~516~^0.947^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~517~^0.767^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~518~^0.664^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~606~^6.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~611~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~612~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~613~^4.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~614~^2.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~617~^6.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~618~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~619~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~626~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13819~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~645~^7.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13819~^~646~^0.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~312~^0.129^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~405~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~406~^2.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~415~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~501~^0.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~502~^1.194^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~503~^1.229^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~504~^2.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~505~^2.274^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~506~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~507~^0.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~508~^1.067^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~509~^0.918^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~510~^1.329^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~511~^1.727^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~512~^0.936^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~513~^1.648^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~514~^2.497^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~515~^4.106^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~516~^1.491^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~517~^1.207^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~518~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~606~^8.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~612~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~613~^5.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~614~^2.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~617~^8.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~618~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~619~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~626~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13820~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~645~^9.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13820~^~646~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13821~^~312~^0.078^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~404~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~405~^0.193^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~406~^4.693^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~410~^0.725^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~415~^0.409^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~501~^0.306^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~502~^1.207^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~503~^1.167^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~504~^2.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~505~^2.398^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~506~^0.777^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~508~^1.039^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~509~^0.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~510~^1.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~511~^1.793^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~512~^0.879^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~513~^1.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~514~^2.454^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~515~^4.341^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~516~^1.187^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~517~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~518~^1.047^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~521~^0.135^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~605~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~606~^3.422^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~612~^0.197^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~613~^1.861^6^0.149^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~614~^1.251^6^0.101^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~617~^3.799^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13821~^~618~^0.358^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13821~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13821~^~620~^0.050^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~625~^0.037^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~626~^0.247^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~628~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13821~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~645~^4.167^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~646~^0.426^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~653~^0.100^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~663~^0.373^6^0.031^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~670~^0.027^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~674~^3.426^6^0.308^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~675~^0.331^6^0.030^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~687~^0.072^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13821~^~851~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13821~^~859~^0.252^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~312~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~405~^0.197^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~406~^4.593^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~415~^0.399^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~501~^0.303^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~502~^1.196^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~503~^1.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~504~^2.186^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~505~^2.376^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~506~^0.770^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~507~^0.281^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~508~^1.030^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~509~^0.937^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~510~^1.222^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~511~^1.776^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~512~^0.871^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~513~^1.527^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~514~^2.432^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~515~^4.301^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~516~^1.176^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~517~^1.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~518~^1.037^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~521~^0.133^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~605~^0.402^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~606~^3.751^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~612~^0.217^4^0.020^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~613~^2.039^4^0.186^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~614~^1.372^4^0.125^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~617~^4.269^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13822~^~618~^0.360^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13822~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13822~^~620~^0.051^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~625~^0.045^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~626~^0.279^4^0.022^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~628~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13822~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~645~^4.691^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~646~^0.431^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~653~^0.109^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~663~^0.402^4^0.039^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~670~^0.030^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~674~^3.866^4^0.382^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~675~^0.330^4^0.037^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~687~^0.080^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~693~^0.402^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13822~^~851~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13822~^~859~^0.267^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~312~^0.074^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~315~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~405~^0.190^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~406~^4.650^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~410~^0.710^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~415~^0.413^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~501~^0.310^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~502~^1.224^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~503~^1.183^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~504~^2.236^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~505~^2.431^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~506~^0.788^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~507~^0.288^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~508~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~509~^0.958^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~510~^1.250^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~511~^1.817^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~512~^0.891^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~513~^1.562^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~514~^2.488^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~515~^4.400^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~516~^1.203^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~517~^1.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~518~^1.061^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~521~^0.136^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~605~^0.329^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~606~^2.929^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~612~^0.167^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~613~^1.595^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~614~^1.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~617~^3.095^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13823~^~618~^0.356^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13823~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~13823~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~625~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~626~^0.200^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13823~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~645~^3.380^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~646~^0.418^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~653~^0.087^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~663~^0.329^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~670~^0.024^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~674~^2.766^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~675~^0.333^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~687~^0.060^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~693~^0.329^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~13823~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13823~^~859~^0.229^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13824~^~312~^0.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~406~^2.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~415~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~501~^0.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~502~^0.722^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~503~^0.743^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~504~^1.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~505~^1.375^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~506~^0.423^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~507~^0.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~508~^0.645^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~509~^0.555^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~510~^0.804^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~511~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~512~^0.566^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~513~^0.997^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~514~^1.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~515~^2.483^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~516~^0.902^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~517~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~518~^0.632^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~606~^10.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~612~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~613~^6.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~614~^3.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~617~^9.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~618~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~626~^1.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~645~^11.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13824~^~646~^0.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~312~^0.082^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~406~^3.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~501~^0.251^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~502~^0.979^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~503~^1.008^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~504~^1.772^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~505~^1.865^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~506~^0.574^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~507~^0.251^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~508~^0.875^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~509~^0.753^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~510~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~511~^1.417^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~512~^0.768^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~513~^1.352^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~514~^2.048^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~515~^3.368^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~516~^1.223^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~517~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~518~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~606~^10.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~612~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~613~^6.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~614~^3.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~617~^10.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~618~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~619~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~626~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~645~^11.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13825~^~646~^0.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~312~^0.084^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~406~^3.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~501~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~502~^0.994^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~503~^1.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~504~^1.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~505~^1.894^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~506~^0.583^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~507~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~508~^0.889^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~509~^0.765^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~510~^1.107^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~511~^1.439^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~512~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~513~^1.373^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~514~^2.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~515~^3.421^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~516~^1.242^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~517~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~518~^0.871^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~606~^11.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~612~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~613~^6.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~614~^3.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~617~^10.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~618~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~626~^1.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~645~^12.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13826~^~646~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~312~^0.058^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~406~^2.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~415~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~501~^0.183^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~502~^0.714^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~503~^0.734^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~504~^1.291^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~505~^1.359^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~506~^0.418^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~507~^0.183^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~508~^0.638^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~509~^0.549^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~510~^0.795^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~511~^1.032^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~512~^0.559^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~513~^0.985^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~514~^1.492^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~515~^2.454^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~516~^0.891^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~517~^0.721^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~518~^0.625^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~606~^11.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~610~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~612~^0.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~613~^6.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~614~^3.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~617~^10.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~618~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~619~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~626~^1.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~645~^12.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13827~^~646~^1.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~312~^0.081^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~406~^3.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~501~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~502~^0.972^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~503~^1.001^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~504~^1.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~505~^1.852^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~506~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~507~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~508~^0.869^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~509~^0.748^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~510~^1.083^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~511~^1.407^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~512~^0.762^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~513~^1.343^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~514~^2.034^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~515~^3.345^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~516~^1.215^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~517~^0.983^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~518~^0.851^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~606~^11.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~612~^0.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~613~^7.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~614~^3.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~617~^10.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~618~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~626~^1.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~645~^12.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13828~^~646~^1.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~312~^0.084^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~406~^3.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~501~^0.253^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~502~^0.987^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~503~^1.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~504~^1.786^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~505~^1.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~506~^0.579^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~507~^0.253^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~508~^0.882^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~509~^0.759^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~510~^1.099^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~511~^1.428^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~512~^0.774^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~513~^1.363^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~514~^2.065^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~515~^3.396^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~516~^1.233^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~517~^0.998^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~518~^0.864^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~606~^12.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~612~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~613~^7.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~614~^3.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~617~^11.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~618~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13829~^~626~^1.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13829~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13829~^~630~^0.000^0^^~4~^~BFFN~^~13840~^^^^^^^^^~03/01/2007~ -~13829~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13829~^~645~^12.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13829~^~646~^1.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~312~^0.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~406~^2.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~415~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~501~^0.188^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~502~^0.732^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~503~^0.753^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~504~^1.324^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~505~^1.394^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~506~^0.429^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~507~^0.188^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~508~^0.654^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~509~^0.563^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~510~^0.815^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~511~^1.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~512~^0.574^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~513~^1.011^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~514~^1.531^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~515~^2.517^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~516~^0.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~517~^0.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~518~^0.641^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~606~^9.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~612~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~613~^5.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~614~^3.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~617~^9.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~618~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~619~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~626~^1.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~645~^10.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13830~^~646~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~312~^0.083^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~406~^3.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~415~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~501~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~502~^0.993^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~503~^1.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~504~^1.796^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~505~^1.891^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~506~^0.582^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~507~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~508~^0.887^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~509~^0.764^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~510~^1.105^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~511~^1.436^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~512~^0.778^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~513~^1.371^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~514~^2.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~515~^3.414^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~516~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~517~^1.004^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~518~^0.869^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~606~^9.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~612~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~613~^6.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~614~^2.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~617~^9.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~618~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~619~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~626~^1.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~645~^10.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13831~^~646~^0.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~312~^0.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~406~^3.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~415~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~501~^0.259^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~502~^1.009^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~503~^1.039^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~504~^1.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~505~^1.922^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~506~^0.591^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~507~^0.259^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~508~^0.902^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~509~^0.776^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~510~^1.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~511~^1.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~512~^0.791^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~513~^1.393^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~514~^2.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~515~^3.471^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~516~^1.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~517~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~518~^0.883^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~606~^10.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~612~^0.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~613~^6.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~614~^3.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~617~^9.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~618~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~619~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~626~^1.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~645~^11.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13832~^~646~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~312~^0.057^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~315~^0.011^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~406~^2.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~410~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~415~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~501~^0.181^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~502~^0.705^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~503~^0.726^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~504~^1.276^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~505~^1.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~506~^0.413^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~507~^0.181^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~508~^0.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~509~^0.543^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~510~^0.785^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~511~^1.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~512~^0.553^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~513~^0.974^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~514~^1.475^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~515~^2.426^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~516~^0.881^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~517~^0.713^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~518~^0.618^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~606~^13.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~610~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~612~^1.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~613~^7.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~614~^3.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~617~^11.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~618~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~619~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~626~^1.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~645~^13.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13833~^~646~^1.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~312~^0.081^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~406~^3.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~415~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~501~^0.246^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~502~^0.959^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~503~^0.987^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~504~^1.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~505~^1.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~506~^0.562^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~507~^0.246^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~508~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~509~^0.738^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~510~^1.068^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~511~^1.387^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~512~^0.752^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~513~^1.324^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~514~^2.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~515~^3.298^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~516~^1.198^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~517~^0.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~518~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~606~^13.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~612~^1.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~613~^8.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~614~^3.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~617~^12.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~618~^0.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~626~^1.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~645~^14.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13834~^~646~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~312~^0.083^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~406~^3.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~415~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~501~^0.253^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~502~^0.986^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~503~^1.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~504~^1.784^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~505~^1.878^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~506~^0.578^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~507~^0.253^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~508~^0.881^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~509~^0.758^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~510~^1.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~511~^1.427^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~512~^0.773^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~513~^1.361^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~514~^2.062^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~515~^3.391^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~516~^1.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~517~^0.997^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~518~^0.863^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~606~^13.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~612~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~613~^8.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~614~^4.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~617~^13.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~618~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~626~^1.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~645~^14.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13835~^~646~^1.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~312~^0.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~406~^2.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~415~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~501~^0.182^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~502~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~503~^0.731^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~504~^1.285^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~505~^1.353^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~506~^0.416^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~507~^0.182^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~508~^0.635^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~509~^0.546^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~510~^0.791^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~511~^1.027^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~512~^0.557^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~513~^0.981^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~514~^1.485^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~515~^2.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~516~^0.887^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~517~^0.718^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~518~^0.622^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~606~^11.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~610~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~612~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~613~^6.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~614~^3.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~617~^10.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~618~^0.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~619~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~626~^1.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~645~^11.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13838~^~646~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~312~^0.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~406~^2.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~410~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~501~^0.241^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~502~^0.941^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~503~^0.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~504~^1.704^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~505~^1.793^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~506~^0.552^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~507~^0.241^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~508~^0.841^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~509~^0.724^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~510~^1.048^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~511~^1.362^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~512~^0.738^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~513~^1.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~514~^1.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~515~^3.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~516~^1.176^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~517~^0.952^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~518~^0.824^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~606~^11.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~612~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~613~^6.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~614~^3.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~617~^10.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~618~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~619~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~626~^1.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~645~^11.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13839~^~646~^1.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~312~^0.089^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~406~^3.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~410~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~501~^0.258^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~502~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~503~^1.034^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~504~^1.818^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~505~^1.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~506~^0.589^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~507~^0.258^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~508~^0.898^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~509~^0.773^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~510~^1.119^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~511~^1.454^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~512~^0.788^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~513~^1.388^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~514~^2.102^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~515~^3.457^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~516~^1.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~517~^1.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~518~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~606~^11.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13840~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~612~^0.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~613~^7.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~614~^3.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~617~^10.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~618~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~619~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13840~^~626~^1.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13840~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13840~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/2004~ -~13840~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13840~^~645~^12.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13840~^~646~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~312~^0.058^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~315~^0.011^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~406~^2.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~415~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~501~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~502~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~503~^0.721^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~504~^1.267^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~505~^1.334^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~506~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~507~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~508~^0.626^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~509~^0.539^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~510~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~511~^1.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~512~^0.549^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~513~^0.967^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~514~^1.464^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~515~^2.408^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~516~^0.875^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~517~^0.708^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~518~^0.613^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~606~^12.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~610~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~612~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~613~^7.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~614~^3.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~617~^11.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~618~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~619~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~626~^1.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~645~^12.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13841~^~646~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~312~^0.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~406~^2.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~410~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~501~^0.234^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~502~^0.911^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~503~^0.938^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~504~^1.648^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~505~^1.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~506~^0.534^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~507~^0.234^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~508~^0.814^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~509~^0.701^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~510~^1.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~511~^1.318^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~512~^0.714^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~513~^1.258^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~514~^1.905^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~515~^3.133^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~516~^1.138^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~517~^0.921^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~518~^0.798^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~606~^12.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~612~^1.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~613~^7.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~614~^3.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~617~^11.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~618~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~619~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~626~^1.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~645~^13.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13842~^~646~^1.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~312~^0.087^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~406~^3.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~415~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~501~^0.252^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~502~^0.983^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~503~^1.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~504~^1.778^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~505~^1.872^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~506~^0.576^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~507~^0.252^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~508~^0.878^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~509~^0.756^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~510~^1.094^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~511~^1.422^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~512~^0.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~513~^1.357^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~514~^2.056^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~515~^3.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~516~^1.228^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~517~^0.994^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~518~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~606~^12.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~612~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~613~^7.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~614~^3.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~617~^12.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~618~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~626~^1.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~645~^13.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13843~^~646~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~312~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~405~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~406~^2.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~415~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~501~^0.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~502~^0.722^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~503~^0.743^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~504~^1.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~505~^1.374^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~506~^0.423^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~507~^0.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~508~^0.645^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~509~^0.555^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~510~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~511~^1.044^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~512~^0.566^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~513~^0.996^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~514~^1.509^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~515~^2.482^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~516~^0.901^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~517~^0.729^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~518~^0.632^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~606~^10.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~612~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~613~^6.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~614~^3.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~617~^9.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~618~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~626~^1.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~645~^10.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13844~^~646~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~312~^0.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~406~^2.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~410~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~501~^0.241^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~502~^0.941^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~503~^0.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~504~^1.704^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~505~^1.793^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~506~^0.552^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~507~^0.241^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~508~^0.841^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~509~^0.724^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~510~^1.048^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~511~^1.362^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~512~^0.738^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~513~^1.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~514~^1.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~515~^3.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~516~^1.176^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~517~^0.952^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~518~^0.824^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~606~^10.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~612~^0.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~613~^6.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~614~^3.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~617~^9.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~618~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~619~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~626~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~645~^10.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13845~^~646~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~312~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~406~^3.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~410~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~501~^0.262^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~502~^1.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~503~^1.052^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~504~^1.849^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~505~^1.946^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~506~^0.599^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~507~^0.262^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~508~^0.913^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~509~^0.786^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~510~^1.138^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~511~^1.479^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~512~^0.801^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~513~^1.411^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~514~^2.137^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~515~^3.515^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~516~^1.276^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~517~^1.033^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~518~^0.895^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~606~^10.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~612~^0.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~613~^6.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~614~^3.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~617~^9.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~618~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~619~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~626~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~645~^11.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13846~^~646~^0.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~312~^0.057^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~315~^0.011^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~406~^2.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~410~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~415~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~501~^0.177^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~502~^0.689^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~503~^0.709^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~504~^1.246^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~505~^1.312^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~506~^0.404^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~507~^0.177^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~508~^0.616^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~509~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~510~^0.767^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~511~^0.997^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~512~^0.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~513~^0.951^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~514~^1.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~515~^2.369^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~516~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~517~^0.696^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~518~^0.603^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~606~^13.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~610~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~612~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~613~^8.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~614~^4.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~617~^12.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~618~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~619~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~626~^1.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~645~^14.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13847~^~646~^1.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~312~^0.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~406~^2.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~501~^0.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~502~^0.902^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~503~^0.929^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~504~^1.632^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~505~^1.718^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~506~^0.529^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~507~^0.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~508~^0.806^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~509~^0.694^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~510~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~511~^1.305^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~512~^0.707^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~513~^1.246^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~514~^1.887^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~515~^3.103^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~516~^1.127^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~517~^0.912^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~518~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~606~^14.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~612~^1.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~613~^8.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~614~^4.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~617~^13.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~618~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~626~^1.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~645~^15.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13848~^~646~^1.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~312~^0.088^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~406~^3.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~410~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~415~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~501~^0.256^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~502~^0.998^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~503~^1.028^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~504~^1.806^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~505~^1.902^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~506~^0.585^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~507~^0.256^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~508~^0.892^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~509~^0.768^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~510~^1.112^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~511~^1.444^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~512~^0.783^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~513~^1.379^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~514~^2.088^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~515~^3.434^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~516~^1.247^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~517~^1.009^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~518~^0.874^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~606~^13.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~612~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~613~^8.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~614~^3.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~617~^12.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~618~^0.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~626~^1.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~645~^14.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13849~^~646~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13850~^~312~^0.065^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~ -~13850~^~404~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~405~^0.093^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~406~^5.699^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~410~^0.556^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~415~^0.527^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13850~^~501~^0.127^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~502~^0.772^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~503~^0.879^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~504~^1.537^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~505~^1.633^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~506~^0.503^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~507~^0.249^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~508~^0.763^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~509~^0.616^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~510~^0.959^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~511~^1.250^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~512~^0.617^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~513~^1.175^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~514~^1.760^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~515~^2.901^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~516~^1.177^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~517~^0.921^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~518~^0.761^0^^~1~^~PAK~^^^^^^^^^^~06/01/2003~ -~13850~^~521~^0.203^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13850~^~606~^7.692^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13850~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~610~^0.061^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~611~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~612~^0.603^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~613~^4.631^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~614~^2.356^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~617~^7.206^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~618~^0.467^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~619~^0.228^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~626~^0.930^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~628~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13850~^~645~^8.162^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13850~^~646~^0.725^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~312~^0.078^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13851~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~405~^0.125^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~406~^6.881^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~410~^0.510^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~415~^0.541^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13851~^~501~^0.170^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~502~^1.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~503~^1.176^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~504~^2.057^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~505~^2.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~506~^0.673^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~507~^0.334^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~508~^1.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~509~^0.824^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~510~^1.283^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~511~^1.672^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~512~^0.825^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~513~^1.572^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~514~^2.355^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~515~^3.881^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~516~^1.574^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~517~^1.232^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~518~^1.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13851~^~521~^0.272^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13851~^~606~^7.894^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13851~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13851~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13851~^~610~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~611~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~612~^0.610^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~613~^4.766^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~614~^2.423^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~617~^7.571^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~618~^0.519^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~619~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~620~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13851~^~626~^0.755^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~628~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13851~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13851~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13851~^~645~^8.355^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13851~^~646~^0.762^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13852~^~312~^0.078^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~406~^3.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~410~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~415~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~501~^0.252^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~502~^0.984^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~503~^1.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~504~^1.781^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~505~^1.875^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~506~^0.577^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~507~^0.252^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~508~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~509~^0.757^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~510~^1.096^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~511~^1.424^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~512~^0.772^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~513~^1.359^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~514~^2.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~515~^3.386^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~516~^1.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~517~^0.995^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~518~^0.862^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~606~^10.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~612~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~613~^6.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~614~^3.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~617~^10.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~618~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~626~^1.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~645~^11.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13852~^~646~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13853~^~312~^0.063^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13853~^~404~^0.051^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~405~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~406~^6.157^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~410~^0.557^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~415~^0.514^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13853~^~501~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~502~^0.763^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~503~^0.869^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~504~^1.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~505~^1.613^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~506~^0.497^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~507~^0.246^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~508~^0.754^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~509~^0.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~510~^0.947^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~511~^1.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~512~^0.609^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~513~^1.161^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~514~^1.739^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~515~^2.866^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~516~^1.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~517~^0.910^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~518~^0.752^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13853~^~521~^0.201^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13853~^~606~^8.121^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13853~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~610~^0.065^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~611~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~612~^0.636^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~613~^4.889^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~614~^2.488^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~617~^7.607^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~618~^0.493^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~619~^0.241^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~626~^0.981^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~628~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13853~^~645~^8.617^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13853~^~646~^0.766^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~312~^0.080^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13854~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~405~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~406~^6.653^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~410~^0.483^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~415~^0.489^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13854~^~501~^0.161^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~502~^0.980^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~503~^1.116^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~504~^1.951^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~505~^2.073^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~506~^0.639^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~507~^0.317^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~508~^0.969^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~509~^0.782^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~510~^1.217^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~511~^1.586^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~512~^0.783^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~513~^1.491^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~514~^2.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~515~^3.683^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~516~^1.494^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~517~^1.169^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~518~^0.966^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13854~^~521~^0.258^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13854~^~606~^8.700^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~610~^0.055^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~611~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~612~^0.672^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~613~^5.253^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~614~^2.670^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~617~^8.344^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~618~^0.571^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~619~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~620~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~626~^0.832^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13854~^~645~^9.208^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13854~^~646~^0.818^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13855~^~312~^0.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~406~^3.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~410~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~415~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~501~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~502~^0.973^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~503~^1.002^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~504~^1.761^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~505~^1.853^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~506~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~507~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~508~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~509~^0.748^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~510~^1.083^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~511~^1.408^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~512~^0.763^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~513~^1.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~514~^2.035^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~515~^3.347^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~516~^1.215^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~517~^0.984^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~518~^0.852^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~606~^11.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~610~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~612~^0.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~613~^7.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~614~^3.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~617~^11.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~618~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~619~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~620~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~626~^1.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~645~^12.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13855~^~646~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13856~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13856~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~405~^0.106^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~406~^5.228^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~410~^0.554^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~415~^0.540^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13856~^~501~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~502~^0.782^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~503~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~504~^1.556^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~505~^1.653^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~506~^0.509^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~507~^0.252^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~508~^0.773^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~509~^0.623^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~510~^0.971^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~511~^1.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~512~^0.624^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~513~^1.189^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~514~^1.782^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~515~^2.937^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~516~^1.191^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~517~^0.933^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~518~^0.771^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13856~^~521~^0.206^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13856~^~606~^7.264^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13856~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~610~^0.058^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~611~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~612~^0.569^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~613~^4.373^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~614~^2.225^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~617~^6.804^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~618~^0.441^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~619~^0.215^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~626~^0.878^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13856~^~645~^7.708^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13856~^~646~^0.685^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13857~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~405~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~406~^7.098^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~410~^0.536^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~415~^0.595^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13857~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~502~^1.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~503~^1.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~504~^2.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~505~^2.297^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~506~^0.708^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~507~^0.351^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~508~^1.073^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~509~^0.866^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~510~^1.348^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~511~^1.757^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~512~^0.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~513~^1.652^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~514~^2.475^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~515~^4.079^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~516~^1.655^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~517~^1.295^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~518~^1.070^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13857~^~521~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13857~^~606~^7.088^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~610~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~611~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~612~^0.548^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~613~^4.280^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~614~^2.175^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~617~^6.798^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~618~^0.466^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~619~^0.160^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~620~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~626~^0.678^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13857~^~645~^7.502^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13857~^~646~^0.667^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13858~^~312~^0.078^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~405~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~406~^3.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~410~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~415~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~501~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~502~^0.994^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~503~^1.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~504~^1.799^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~505~^1.894^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~506~^0.583^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~507~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~508~^0.889^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~509~^0.765^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~510~^1.107^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~511~^1.439^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~512~^0.779^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~513~^1.373^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~514~^2.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~515~^3.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~516~^1.242^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~517~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~518~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~606~^10.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~612~^0.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~613~^6.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~614~^2.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~617~^9.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~618~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~619~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~626~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~645~^10.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13858~^~646~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~312~^0.057^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~405~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~406~^3.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~410~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~415~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~501~^0.187^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~502~^0.731^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~503~^0.753^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~504~^1.323^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~505~^1.393^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~506~^0.429^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~507~^0.187^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~508~^0.653^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~509~^0.562^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~510~^0.814^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~511~^1.058^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~512~^0.573^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~513~^1.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~514~^1.529^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~515~^2.515^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~516~^0.913^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~517~^0.739^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~518~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~606~^12.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~610~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~612~^0.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~613~^7.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~614~^3.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~617~^11.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~618~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~626~^1.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~645~^12.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13859~^~646~^1.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~312~^0.088^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~406~^4.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~410~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~415~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~501~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~502~^1.054^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~503~^1.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~504~^1.907^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~505~^2.007^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~506~^0.618^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~507~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~508~^0.942^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~509~^0.811^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~510~^1.173^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~511~^1.525^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~512~^0.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~513~^1.455^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~514~^2.204^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~515~^3.625^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~516~^1.316^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~517~^1.065^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~518~^0.923^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~606~^11.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~612~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~613~^6.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~614~^3.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~617~^10.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~618~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~619~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~626~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~628~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~645~^12.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13860~^~646~^0.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~312~^0.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~406~^3.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~415~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~501~^0.248^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~502~^0.968^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~503~^0.996^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~504~^1.751^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~505~^1.843^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~506~^0.567^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~507~^0.248^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~508~^0.865^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~509~^0.744^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~510~^1.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~511~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~512~^0.759^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~513~^1.336^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~514~^2.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~515~^3.328^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~516~^1.209^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~517~^0.978^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~518~^0.847^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~606~^14.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~612~^1.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~613~^8.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~614~^4.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~617~^13.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~618~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~626~^1.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~628~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~645~^15.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13861~^~646~^1.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13862~^~312~^0.111^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~315~^0.015^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~404~^0.099^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~405~^0.306^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~406~^4.471^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~410~^1.058^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~415~^0.395^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~501~^0.312^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~502~^1.219^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~503~^1.178^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~504~^2.229^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~505~^2.422^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~506~^0.787^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~507~^0.291^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~508~^1.054^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~509~^0.955^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~510~^1.252^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~511~^1.824^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~512~^0.898^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~513~^1.580^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~514~^2.485^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~515~^4.382^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~516~^1.264^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~517~^1.139^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~518~^1.064^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~521~^0.189^0^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~13862~^~605~^0.461^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~606~^3.868^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~612~^0.244^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~613~^2.100^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~614~^1.395^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~617~^3.809^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13862~^~618~^0.513^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~13862~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13862~^~620~^0.070^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~625~^0.046^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~626~^0.258^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13862~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~628~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13862~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~645~^4.191^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~646~^0.604^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~13862~^~653~^0.115^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~654~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~663~^0.461^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~670~^0.035^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~13862~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~673~^0.258^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~674~^3.348^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~675~^0.479^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~687~^0.075^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~693~^0.461^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13862~^~851~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13862~^~859~^0.279^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~312~^0.095^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~315~^0.010^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~404~^0.095^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~405~^0.256^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~406~^3.865^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~410~^0.936^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~415~^0.404^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~501~^0.227^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~502~^0.887^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~503~^0.857^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~504~^1.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~505~^1.762^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~506~^0.572^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~507~^0.212^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~508~^0.767^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~509~^0.695^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~510~^0.911^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~511~^1.327^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~512~^0.653^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~513~^1.150^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~514~^1.808^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~515~^3.188^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~516~^0.919^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~517~^0.828^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~518~^0.774^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~521~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13863~^~605~^0.331^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~606~^3.153^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13863~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~612~^0.199^6^0.021^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~613~^1.757^6^0.176^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~614~^1.092^6^0.112^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~617~^3.411^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13863~^~618~^0.347^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13863~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13863~^~620~^0.054^6^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~625~^0.040^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~626~^0.244^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13863~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~628~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13863~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~645~^3.771^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13863~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13863~^~653~^0.094^6^0.009^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~663~^0.331^6^0.035^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~670~^0.024^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~673~^0.244^6^0.022^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~674~^3.081^6^0.328^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~675~^0.323^6^0.035^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~687~^0.070^6^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13863~^~693~^0.331^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13863~^~851~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13863~^~859~^0.190^6^0.019^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13864~^~312~^0.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~405~^0.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~406~^3.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~415~^0.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~501~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~502~^0.898^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~503~^0.924^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~504~^1.625^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~505~^1.711^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~506~^0.526^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~507~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~508~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~509~^0.691^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~510~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~511~^1.299^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~512~^0.704^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~513~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~514~^1.878^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~515~^3.089^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~516~^1.122^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~517~^0.908^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~518~^0.786^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~606~^4.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~612~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~613~^2.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~614~^1.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~617~^4.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~618~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~619~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13864~^~626~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13864~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13864~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2007~ -~13864~^~631~^0.012^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13864~^~645~^5.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13864~^~646~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~312~^0.101^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~406~^4.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~410~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~501~^0.308^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~502~^1.203^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~503~^1.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~504~^2.177^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~505~^2.291^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~506~^0.705^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~507~^0.308^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~508~^1.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~509~^0.925^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~510~^1.339^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~511~^1.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~512~^0.943^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~513~^1.661^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~514~^2.516^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~515~^4.137^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~516~^1.503^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~517~^1.216^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~518~^1.053^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~606~^4.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~612~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~613~^3.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~614~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~617~^4.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~618~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~619~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13865~^~626~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13865~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13865~^~630~^0.000^0^^~4~^~BFFN~^~13892~^^^^^^^^^~03/01/2009~ -~13865~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13865~^~645~^5.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13865~^~646~^0.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~312~^0.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~406~^3.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~415~^0.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~501~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~502~^0.898^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~503~^0.924^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~504~^1.625^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~505~^1.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~506~^0.526^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~507~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~508~^0.802^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~509~^0.691^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~510~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~511~^1.299^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~512~^0.704^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~513~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~514~^1.878^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~515~^3.088^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~516~^1.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~517~^0.908^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~518~^0.786^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~606~^4.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~612~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~613~^2.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~614~^1.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~617~^4.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~618~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~619~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~626~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13866~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~645~^4.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13866~^~646~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~312~^0.101^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~406~^4.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~410~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~501~^0.309^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~502~^1.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~503~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~504~^2.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~505~^2.295^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~506~^0.706^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~507~^0.309^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~508~^1.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~509~^0.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~510~^1.341^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~511~^1.743^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~512~^0.944^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~513~^1.664^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~514~^2.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~515~^4.144^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~516~^1.505^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~517~^1.218^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~518~^1.055^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~606~^4.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~612~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~613~^2.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~614~^1.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~617~^4.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~618~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~619~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~626~^0.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13867~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~645~^4.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13867~^~646~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13868~^~312~^0.091^4^0.005^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~315~^0.013^5^0.001^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~404~^0.082^4^0.004^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~405~^0.126^4^0.018^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~406~^6.183^4^0.337^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~410~^0.595^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13868~^~415~^0.613^4^0.027^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13868~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~502~^0.827^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~503~^0.942^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~504~^1.646^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~505~^1.749^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~506~^0.539^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~508~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~509~^0.660^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~510~^1.027^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~511~^1.338^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~512~^0.661^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~513~^1.258^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~514~^1.885^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~515~^3.107^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~516~^1.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~517~^0.987^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~518~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13868~^~521~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13868~^~606~^4.544^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13868~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~610~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~611~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~612~^0.353^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~613~^2.772^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~614~^1.356^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~617~^4.383^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~618~^0.287^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~619~^0.131^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~626~^0.587^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~628~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13868~^~645~^4.987^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13868~^~646~^0.441^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~312~^0.078^4^0.013^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~315~^0.011^5^0.000^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~404~^0.075^4^0.006^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~405~^0.174^4^0.010^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~406~^5.726^4^0.255^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~410~^0.646^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13869~^~415~^0.430^4^0.025^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13869~^~501~^0.215^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~502~^1.309^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~503~^1.490^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~504~^2.606^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~505~^2.769^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~506~^0.853^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~507~^0.423^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~508~^1.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~509~^1.044^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~510~^1.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~511~^2.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~512~^1.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~513~^1.992^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~514~^2.984^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~515~^4.918^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~516~^1.995^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~517~^1.562^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~518~^1.290^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13869~^~521~^0.344^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13869~^~606~^4.506^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13869~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13869~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13869~^~610~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~611~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~612~^0.352^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~613~^2.810^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~614~^1.293^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~617~^4.544^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~618~^0.315^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~619~^0.114^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13869~^~626~^0.501^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13869~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13869~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13869~^~645~^5.064^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13869~^~646~^0.478^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13870~^~312~^0.063^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13870~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~405~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~406~^4.616^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~410~^0.521^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~415~^0.347^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13870~^~501~^0.179^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~502~^1.091^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~503~^1.242^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~504~^2.172^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~505~^2.307^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~506~^0.711^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~507~^0.352^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~508~^1.078^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~509~^0.870^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~510~^1.354^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~511~^1.765^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~512~^0.871^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~513~^1.660^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~514~^2.487^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~515~^4.098^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~516~^1.662^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~517~^1.301^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~518~^1.075^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13870~^~521~^0.287^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13870~^~606~^4.418^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13870~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~610~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~611~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~612~^0.345^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~613~^2.755^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~614~^1.268^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~617~^4.455^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~618~^0.309^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~619~^0.112^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~626~^0.492^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13870~^~645~^4.964^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13870~^~646~^0.449^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~312~^0.092^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~315~^0.013^3^0.001^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~404~^0.079^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~405~^0.143^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~406~^6.294^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13871~^~410~^0.605^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13871~^~415~^0.611^2^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13871~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~502~^0.827^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~503~^0.942^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~504~^1.648^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~505~^1.750^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~506~^0.539^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~508~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~509~^0.660^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~510~^1.028^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~511~^1.339^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~512~^0.661^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~513~^1.259^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~514~^1.887^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~515~^3.109^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~516~^1.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~517~^0.987^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~518~^0.816^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13871~^~521~^0.218^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13871~^~606~^4.784^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~610~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~611~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~612~^0.372^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~613~^2.919^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~614~^1.428^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~617~^4.615^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~618~^0.302^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~619~^0.138^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~626~^0.619^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~628~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13871~^~645~^5.251^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13871~^~646~^0.464^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~312~^0.071^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~315~^0.011^3^0.001^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~404~^0.068^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~405~^0.185^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~406~^5.939^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~410~^0.647^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13872~^~415~^0.432^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~502~^1.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~503~^1.495^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~504~^2.613^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~505~^2.776^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~506~^0.855^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~507~^0.424^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~508~^1.298^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~509~^1.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~510~^1.630^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~511~^2.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~512~^1.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~513~^1.997^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~514~^2.992^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~515~^4.932^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~516~^2.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~517~^1.566^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~518~^1.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13872~^~521~^0.345^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13872~^~606~^4.766^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13872~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13872~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13872~^~610~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~611~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~612~^0.373^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~613~^2.971^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~614~^1.368^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~617~^4.806^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~618~^0.333^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~619~^0.121^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~626~^0.530^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~628~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13872~^~645~^5.355^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13872~^~646~^0.484^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~312~^0.057^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13873~^~404~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~405~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~406~^4.710^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~410~^0.513^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~415~^0.342^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13873~^~501~^0.178^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~502~^1.084^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~503~^1.235^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~504~^2.159^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~505~^2.294^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~506~^0.707^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~507~^0.350^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~508~^1.072^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~509~^0.865^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~510~^1.346^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~511~^1.755^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~512~^0.866^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~513~^1.650^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~514~^2.472^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~515~^4.074^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~516~^1.653^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~517~^1.294^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~518~^1.069^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13873~^~521~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13873~^~606~^4.721^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~610~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~611~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~612~^0.369^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~613~^2.943^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~614~^1.355^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~617~^4.760^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~618~^0.330^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~619~^0.120^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~626~^0.525^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~628~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13873~^~645~^5.304^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13873~^~646~^0.479^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~312~^0.089^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~315~^0.013^3^^~1~^~PAK~^^^^^^^^^^~01/01/2008~ -~13874~^~404~^0.084^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~405~^0.110^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~406~^6.071^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~13874~^~410~^0.586^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13874~^~415~^0.615^2^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13874~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~502~^0.826^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~503~^0.941^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~504~^1.645^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~505~^1.748^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~506~^0.539^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~508~^0.817^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~509~^0.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~510~^1.026^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~511~^1.337^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~512~^0.660^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~513~^1.257^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~514~^1.884^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~515~^3.105^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~516~^1.259^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~517~^0.986^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~518~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13874~^~521~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13874~^~606~^4.303^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~610~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~611~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~612~^0.335^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~613~^2.625^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~614~^1.284^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~617~^4.151^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~618~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~619~^0.124^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~626~^0.556^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13874~^~645~^4.723^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13874~^~646~^0.417^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~312~^0.085^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~315~^0.012^3^0.000^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~404~^0.082^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~405~^0.164^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~406~^5.512^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~410~^0.645^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13875~^~415~^0.429^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13875~^~501~^0.194^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~502~^1.178^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~503~^1.342^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~504~^2.346^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~505~^2.492^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~506~^0.768^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~507~^0.381^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~508~^1.165^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~509~^0.940^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~510~^1.463^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~511~^1.907^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~512~^0.941^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~513~^1.793^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~514~^2.686^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~515~^4.427^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~516~^1.796^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~517~^1.406^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~518~^1.162^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13875~^~521~^0.310^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13875~^~606~^4.247^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~610~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~611~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~612~^0.332^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~613~^2.648^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~614~^1.219^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~617~^4.283^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~618~^0.297^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~619~^0.108^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~626~^0.473^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~628~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13875~^~645~^4.772^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13875~^~646~^0.431^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~312~^0.069^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13876~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~405~^0.134^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~406~^4.517^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~410~^0.528^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~415~^0.352^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13876~^~501~^0.180^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~502~^1.091^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~503~^1.243^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~504~^2.173^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~505~^2.309^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~506~^0.711^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~507~^0.353^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~508~^1.079^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~509~^0.871^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~510~^1.355^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~511~^1.767^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~512~^0.872^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~513~^1.661^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~514~^2.489^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~515~^4.101^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~516~^1.664^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~517~^1.302^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~518~^1.076^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13876~^~521~^0.287^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13876~^~606~^4.116^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~610~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~611~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~612~^0.322^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~613~^2.566^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~614~^1.181^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~617~^4.150^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~618~^0.287^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~619~^0.105^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~626~^0.458^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~628~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13876~^~645~^4.625^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13876~^~646~^0.418^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~312~^0.094^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13877~^~404~^0.085^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~405~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~406~^6.420^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~410~^0.618^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~415~^0.637^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13877~^~501~^0.141^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~502~^0.859^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~503~^0.978^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~504~^1.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~505~^1.816^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~506~^0.560^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~507~^0.277^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~508~^0.849^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~509~^0.685^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~510~^1.066^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~511~^1.390^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~512~^0.686^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~513~^1.307^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~514~^1.958^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~515~^3.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~516~^1.309^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~517~^1.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~518~^0.847^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13877~^~521~^0.226^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13877~^~606~^3.245^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~610~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~611~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~612~^0.252^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~613~^1.980^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~614~^0.969^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~617~^3.130^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~618~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~619~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~620~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~626~^0.420^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13877~^~645~^3.561^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13877~^~646~^0.315^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13878~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~405~^0.151^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~406~^4.947^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~410~^0.558^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~415~^0.372^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13878~^~501~^0.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~502~^1.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~503~^1.288^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~504~^2.252^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~505~^2.392^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~506~^0.737^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~507~^0.365^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~508~^1.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~509~^0.902^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~510~^1.404^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~511~^1.830^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~512~^0.903^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~513~^1.721^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~514~^2.578^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~515~^4.249^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~516~^1.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~517~^1.349^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~518~^1.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13878~^~521~^0.295^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13878~^~606~^3.664^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13878~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13878~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13878~^~610~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~611~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~612~^0.286^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~613~^2.284^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~614~^1.052^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~617~^3.695^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~618~^0.256^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~619~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13878~^~626~^0.408^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13878~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13878~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13878~^~645~^4.117^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13878~^~646~^0.392^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13879~^~312~^0.096^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13879~^~404~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~406~^6.590^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~410~^0.633^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~415~^0.640^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13879~^~501~^0.143^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~502~^0.866^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~503~^0.987^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~504~^1.725^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~505~^1.833^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~506~^0.565^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~507~^0.280^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~508~^0.857^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~509~^0.691^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~510~^1.076^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~511~^1.402^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~512~^0.692^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~513~^1.318^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~514~^1.975^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~515~^3.255^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~516~^1.320^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~517~^1.034^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~518~^0.854^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13879~^~521~^0.219^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13879~^~606~^3.509^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13879~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~610~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~611~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~612~^0.273^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~613~^2.141^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~614~^1.048^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~617~^3.385^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~618~^0.222^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~619~^0.101^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~620~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~626~^0.454^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~628~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13879~^~645~^3.851^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13879~^~646~^0.340^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~312~^0.061^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13880~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~405~^0.160^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~406~^5.149^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~410~^0.561^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~415~^0.374^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13880~^~501~^0.184^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~502~^1.121^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~503~^1.277^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~504~^2.233^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~505~^2.372^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~506~^0.731^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~507~^0.362^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~508~^1.109^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~509~^0.894^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~510~^1.393^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~511~^1.815^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~512~^0.896^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~513~^1.707^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~514~^2.557^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~515~^4.214^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~516~^1.709^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~517~^1.338^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~518~^1.106^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13880~^~521~^0.295^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13880~^~606~^3.813^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~610~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~611~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~612~^0.298^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~613~^2.377^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~614~^1.094^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~617~^3.845^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~618~^0.266^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~619~^0.097^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~626~^0.424^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13880~^~645~^4.285^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13880~^~646~^0.387^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13881~^~312~^0.092^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13881~^~404~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~405~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~406~^6.252^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~410~^0.603^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~415~^0.633^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13881~^~501~^0.140^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~502~^0.851^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~503~^0.969^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~504~^1.694^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~505~^1.800^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~506~^0.555^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~507~^0.275^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~508~^0.841^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~509~^0.679^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~510~^1.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~511~^1.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~512~^0.680^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~513~^1.295^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~514~^1.940^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~515~^3.198^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~516~^1.297^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~517~^1.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~518~^0.839^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13881~^~521~^0.224^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13881~^~606~^2.980^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13881~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~610~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~612~^0.232^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~613~^1.818^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~614~^0.890^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~617~^2.875^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~618~^0.188^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~619~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~620~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~626~^0.385^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13881~^~645~^3.271^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13881~^~646~^0.289^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~312~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13882~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~405~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~406~^4.747^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~410~^0.555^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~415~^0.369^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13882~^~501~^0.185^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~502~^1.124^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~503~^1.280^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~504~^2.238^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~505~^2.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~506~^0.733^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~507~^0.363^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~508~^1.111^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~509~^0.896^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~510~^1.396^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~511~^1.819^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~512~^0.898^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~513~^1.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~514~^2.562^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~515~^4.223^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~516~^1.713^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~517~^1.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~518~^1.108^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13882~^~521~^0.296^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13882~^~606~^3.515^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~610~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~611~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~612~^0.275^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~613~^2.191^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~614~^1.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~617~^3.544^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~618~^0.245^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~619~^0.089^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~626~^0.391^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~628~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13882~^~645~^3.949^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13882~^~646~^0.357^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13883~^~312~^0.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~406~^3.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~415~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~501~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~502~^0.856^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~503~^0.881^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~504~^1.549^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~505~^1.631^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~506~^0.502^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~507~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~508~^0.765^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~509~^0.659^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~510~^0.953^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~511~^1.239^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~512~^0.671^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~513~^1.182^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~514~^1.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~515~^2.944^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~516~^1.069^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~517~^0.865^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~518~^0.749^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~606~^4.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~612~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~613~^2.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~614~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~617~^4.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~618~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~619~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~626~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13883~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~645~^5.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13883~^~646~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~312~^0.119^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~406~^3.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~410~^0.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~501~^0.307^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~502~^1.199^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~503~^1.234^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~504~^2.169^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~505~^2.284^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~506~^0.703^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~507~^0.307^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~508~^1.072^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~509~^0.922^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~510~^1.335^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~511~^1.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~512~^0.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~513~^1.656^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~514~^2.508^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~515~^4.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~516~^1.498^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~517~^1.212^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~518~^1.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~606~^4.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13884~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~612~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~613~^2.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~614~^1.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~617~^4.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~618~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~619~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13884~^~626~^0.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13884~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13884~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/2004~ -~13884~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13884~^~645~^4.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13884~^~646~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~312~^0.076^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~406~^3.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~415~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~501~^0.218^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~502~^0.851^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~503~^0.876^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~504~^1.539^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~505~^1.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~506~^0.499^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~507~^0.218^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~508~^0.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~509~^0.654^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~510~^0.947^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~511~^1.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~512~^0.667^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~513~^1.175^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~514~^1.779^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~515~^2.926^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~516~^1.063^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~517~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~518~^0.745^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~606~^5.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~611~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~612~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~613~^3.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~614~^1.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~617~^4.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~618~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~619~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~626~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13885~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~645~^5.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13885~^~646~^0.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~312~^0.119^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~405~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~406~^3.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~410~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~501~^0.305^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~502~^1.191^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~503~^1.226^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~504~^2.155^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~505~^2.269^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~506~^0.698^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~507~^0.305^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~508~^1.065^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~509~^0.916^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~510~^1.326^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~511~^1.723^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~512~^0.934^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~513~^1.645^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~514~^2.491^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~515~^4.097^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~516~^1.488^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~517~^1.204^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~518~^1.043^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~606~^4.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~612~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~613~^2.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~614~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~617~^4.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~618~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~619~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13886~^~626~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13886~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13886~^~630~^0.000^0^^~4~^~BFFN~^~13884~^^^^^^^^^~03/01/2007~ -~13886~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13886~^~645~^5.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13886~^~646~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~312~^0.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~406~^3.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~415~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~501~^0.221^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~502~^0.862^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~503~^0.888^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~504~^1.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~505~^1.643^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~506~^0.505^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~507~^0.221^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~508~^0.771^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~509~^0.663^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~510~^0.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~511~^1.248^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~512~^0.676^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~513~^1.191^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~514~^1.804^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~515~^2.966^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~516~^1.077^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~517~^0.872^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~518~^0.755^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~606~^4.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~612~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~613~^2.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~614~^1.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~617~^3.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~618~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~619~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~626~^0.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13887~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~645~^4.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13887~^~646~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~312~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~406~^3.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~410~^0.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~501~^0.309^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~502~^1.207^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~503~^1.242^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~504~^2.184^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~505~^2.299^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~506~^0.707^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~507~^0.309^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~508~^1.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~509~^0.928^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~510~^1.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~511~^1.746^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~512~^0.946^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~513~^1.667^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~514~^2.524^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~515~^4.151^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~516~^1.507^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~517~^1.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~518~^1.057^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~606~^3.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~612~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~613~^2.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~614~^1.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~617~^3.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~618~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~619~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13888~^~626~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13888~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13888~^~630~^0.000^0^^~4~^~BFFN~^~13892~^^^^^^^^^~03/01/2007~ -~13888~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13888~^~645~^4.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13888~^~646~^0.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13889~^~312~^0.093^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~315~^0.010^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~405~^0.245^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~406~^3.793^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~410~^0.869^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~415~^0.414^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~501~^0.226^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~502~^0.883^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~503~^0.854^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~504~^1.615^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~505~^1.755^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~506~^0.570^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~507~^0.211^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~508~^0.764^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~509~^0.692^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~510~^0.907^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~511~^1.322^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~512~^0.650^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~513~^1.145^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~514~^1.800^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~515~^3.175^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~516~^0.916^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~517~^0.825^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~518~^0.771^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13889~^~605~^0.347^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13889~^~606~^3.462^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13889~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~612~^0.219^4^0.026^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~613~^1.929^4^0.219^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~614~^1.199^4^0.139^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~615~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~617~^3.803^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13889~^~618~^0.358^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13889~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13889~^~620~^0.058^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~625~^0.048^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~626~^0.272^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13889~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13889~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~645~^4.207^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13889~^~646~^0.430^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13889~^~653~^0.101^4^0.011^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~654~^0.012^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~663~^0.347^4^0.044^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~670~^0.026^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13889~^~673~^0.272^4^0.028^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~674~^3.456^4^0.408^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~675~^0.332^4^0.044^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~687~^0.076^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~693~^0.347^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13889~^~851~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13889~^~859~^0.189^4^0.024^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13890~^~312~^0.129^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~315~^0.020^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~404~^0.120^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~405~^0.315^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~406~^5.394^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~410~^0.458^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~415~^0.582^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~501~^0.223^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~502~^1.355^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~503~^1.544^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~504~^2.699^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~505~^2.868^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~506~^0.884^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~507~^0.438^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~508~^1.340^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~509~^1.081^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~510~^1.683^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~511~^2.194^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~512~^1.083^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~513~^2.063^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~514~^3.091^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~515~^5.094^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~516~^2.066^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~517~^1.618^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~518~^1.337^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~521~^0.356^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~13890~^~606~^2.399^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~610~^0.000^0^^~4~^~BFFN~^~23621~^^^^^^^^^~03/01/2007~ -~13890~^~611~^0.000^0^^~4~^~BFFN~^~23621~^^^^^^^^^~03/01/2007~ -~13890~^~612~^0.153^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~613~^1.547^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~614~^0.699^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~617~^2.811^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~618~^1.025^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~619~^0.029^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~620~^0.451^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13890~^~626~^0.215^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13890~^~628~^0.005^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~ -~13890~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13890~^~630~^0.000^0^^~4~^~BFFN~^~23621~^^^^^^^^^~03/01/2007~ -~13890~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13890~^~645~^3.031^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13890~^~646~^1.523^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13891~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13891~^~404~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~405~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~406~^6.589^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~410~^0.634^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~415~^0.653^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13891~^~501~^0.145^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~502~^0.881^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~503~^1.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~504~^1.755^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~505~^1.864^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~506~^0.574^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~507~^0.285^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~508~^0.871^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~509~^0.703^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~510~^1.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~511~^1.426^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~512~^0.704^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~513~^1.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~514~^2.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~515~^3.311^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~516~^1.343^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~517~^1.052^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~518~^0.869^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13891~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13891~^~606~^3.123^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13891~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~610~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~612~^0.243^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~613~^1.906^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~614~^0.932^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~617~^3.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~618~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~619~^0.090^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~620~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~626~^0.404^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13891~^~645~^3.428^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13891~^~646~^0.303^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13892~^~312~^0.118^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~406~^3.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~501~^0.385^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~502~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~503~^1.544^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~504~^2.714^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~505~^2.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~506~^0.879^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~507~^0.385^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~508~^1.341^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~509~^1.154^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~510~^1.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~511~^2.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~512~^1.176^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~513~^2.071^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~514~^3.137^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~515~^5.159^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~516~^1.874^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~517~^1.517^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~518~^1.313^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~606~^3.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~13892~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~612~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~613~^2.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~614~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~617~^3.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~618~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~619~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13892~^~626~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~13892~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13892~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/2004~ -~13892~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13892~^~645~^4.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13892~^~646~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13893~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13893~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~405~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~406~^5.360^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~410~^0.605^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~415~^0.403^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13893~^~501~^0.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~502~^1.225^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~503~^1.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~504~^2.439^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~505~^2.592^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~506~^0.799^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~507~^0.396^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~508~^1.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~509~^0.977^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~510~^1.521^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~511~^1.983^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~512~^0.979^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~513~^1.864^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~514~^2.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~515~^4.604^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~516~^1.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~517~^1.462^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~518~^1.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2004~ -~13893~^~521~^0.321^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13893~^~606~^3.415^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13893~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13893~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13893~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13893~^~610~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~611~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~612~^0.267^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~613~^2.129^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~614~^0.980^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~617~^3.444^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~618~^0.238^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~619~^0.087^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13893~^~626~^0.380^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~628~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13893~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13893~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13893~^~645~^3.837^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13893~^~646~^0.367^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13894~^~312~^0.098^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13894~^~404~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~405~^0.151^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~406~^6.667^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~410~^0.640^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~415~^0.648^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13894~^~501~^0.144^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~502~^0.876^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~503~^0.998^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~504~^1.745^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~505~^1.854^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~506~^0.571^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~507~^0.283^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~508~^0.867^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~509~^0.699^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~510~^1.088^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~511~^1.419^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~512~^0.700^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~513~^1.334^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~514~^1.999^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~515~^3.294^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~516~^1.336^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~517~^1.046^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~518~^0.864^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13894~^~521~^0.231^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13894~^~606~^3.224^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13894~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~610~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~611~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~612~^0.251^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~613~^1.967^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~614~^0.962^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~617~^3.110^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~618~^0.204^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~619~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~620~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~626~^0.417^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13894~^~645~^3.538^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13894~^~646~^0.313^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13895~^~312~^0.118^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~406~^3.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~410~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~501~^0.382^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~502~^1.489^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~503~^1.533^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~504~^2.694^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~505~^2.836^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~506~^0.873^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~507~^0.382^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~508~^1.331^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~509~^1.145^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~510~^1.658^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~511~^2.154^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~512~^1.167^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~513~^2.056^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~514~^3.114^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~515~^5.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~516~^1.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~517~^1.505^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~518~^1.303^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~606~^4.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~612~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~613~^2.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~614~^1.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~617~^4.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~618~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~619~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~626~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13895~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~645~^4.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13895~^~646~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13896~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13896~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~405~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~406~^5.550^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~410~^0.604^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~415~^0.403^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13896~^~501~^0.201^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~502~^1.220^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~503~^1.389^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~504~^2.429^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~505~^2.580^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~506~^0.795^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~507~^0.394^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~508~^1.206^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~509~^0.973^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~510~^1.515^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~511~^1.974^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~512~^0.974^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~513~^1.856^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~514~^2.781^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~515~^4.583^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~516~^1.859^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~517~^1.455^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~518~^1.203^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13896~^~521~^0.321^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13896~^~606~^3.898^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13896~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~610~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~611~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~612~^0.305^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~613~^2.430^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~614~^1.119^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~617~^3.930^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~618~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~619~^0.099^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~620~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~626~^0.434^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~628~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13896~^~645~^4.379^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13896~^~646~^0.396^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13897~^~312~^0.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~315~^0.019^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~406~^5.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~410~^0.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~415~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~501~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~502~^1.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~503~^1.483^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~504~^2.608^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~505~^2.745^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~506~^0.845^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~507~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~508~^1.288^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~509~^1.109^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~510~^1.605^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~511~^2.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~512~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~513~^1.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~514~^3.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~515~^4.957^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~516~^1.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~517~^1.457^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~518~^1.262^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~606~^4.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~612~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~613~^2.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~614~^1.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~617~^4.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~618~^1.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~619~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~620~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13897~^~626~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13897~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13897~^~630~^0.000^0^^~4~^~BFFN~^~13892~^^^^^^^^^~03/01/2007~ -~13897~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13897~^~645~^5.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13897~^~646~^1.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13898~^~312~^0.095^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13898~^~404~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~405~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~406~^6.510^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~410~^0.628^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~415~^0.659^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13898~^~501~^0.146^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~502~^0.886^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~503~^1.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~504~^1.764^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~505~^1.874^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~506~^0.577^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~507~^0.286^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~508~^0.876^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~509~^0.707^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~510~^1.100^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~511~^1.434^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~512~^0.708^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~513~^1.348^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~514~^2.020^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~515~^3.329^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~516~^1.350^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~517~^1.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~518~^0.874^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13898~^~521~^0.233^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13898~^~606~^3.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13898~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~610~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~612~^0.235^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~613~^1.844^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~614~^0.902^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~617~^2.916^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~618~^0.191^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~619~^0.087^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~620~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~626~^0.391^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13898~^~645~^3.317^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13898~^~646~^0.293^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13899~^~312~^0.119^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~406~^3.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~410~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~415~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~501~^0.387^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~502~^1.511^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~503~^1.555^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~504~^2.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~505~^2.878^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~506~^0.886^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~507~^0.387^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~508~^1.351^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~509~^1.162^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~510~^1.683^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~511~^2.186^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~512~^1.185^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~513~^2.087^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~514~^3.161^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~515~^5.198^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~516~^1.888^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~517~^1.528^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~518~^1.323^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~606~^3.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~610~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~611~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~612~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~613~^1.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~614~^0.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~617~^3.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~618~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~619~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~626~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13899~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~645~^3.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13899~^~646~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13900~^~312~^0.081^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13900~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~405~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~406~^5.169^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~410~^0.605^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~415~^0.402^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13900~^~501~^0.201^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~502~^1.220^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~503~^1.390^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~504~^2.430^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~505~^2.582^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~506~^0.796^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~507~^0.394^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~508~^1.207^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~509~^0.973^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~510~^1.516^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~511~^1.975^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~512~^0.975^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~513~^1.857^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~514~^2.783^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~515~^4.586^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~516~^1.860^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~517~^1.456^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~518~^1.203^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13900~^~521~^0.321^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13900~^~606~^2.933^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13900~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~610~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~612~^0.229^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~613~^1.829^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~614~^0.842^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~617~^2.958^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~618~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~619~^0.074^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~620~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~626~^0.326^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~628~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13900~^~645~^3.296^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13900~^~646~^0.298^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13901~^~312~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~406~^4.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~410~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~415~^0.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~501~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~502~^0.971^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~503~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~504~^1.758^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~505~^1.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~506~^0.569^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~507~^0.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~508~^0.868^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~509~^0.747^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~510~^1.082^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~511~^1.405^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~512~^0.761^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~513~^1.341^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~514~^2.032^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~515~^3.341^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~516~^1.213^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~517~^0.982^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~518~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~606~^3.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~610~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~611~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~612~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~613~^1.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~614~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~617~^3.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~618~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~619~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~626~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13901~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~645~^3.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13901~^~646~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~312~^0.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~406~^5.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~410~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~415~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~501~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~502~^1.366^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~503~^1.406^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~504~^2.471^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~505~^2.601^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~506~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~507~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~508~^1.221^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~509~^1.051^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~510~^1.521^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~511~^1.976^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~512~^1.071^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~513~^1.886^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~514~^2.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~515~^4.698^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~516~^1.706^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~517~^1.381^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~518~^1.196^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~606~^3.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~610~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~611~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~612~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~613~^2.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~614~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~617~^3.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~618~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~619~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~620~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~626~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13902~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~645~^4.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13902~^~646~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13903~^~312~^0.098^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~315~^0.011^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~405~^0.277^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~406~^4.130^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~410~^1.003^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~415~^0.390^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~501~^0.228^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~502~^0.892^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~503~^0.862^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~504~^1.631^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~505~^1.773^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~506~^0.576^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~507~^0.213^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~508~^0.772^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~509~^0.699^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~510~^0.916^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~511~^1.335^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~512~^0.657^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~513~^1.157^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~514~^1.819^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~515~^3.207^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~516~^0.925^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~517~^0.833^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~518~^0.779^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~605~^0.306^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13903~^~606~^2.690^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13903~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~612~^0.169^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~613~^1.498^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~614~^0.931^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~617~^2.823^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13903~^~618~^0.331^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13903~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13903~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~625~^0.029^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~626~^0.203^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13903~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~628~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13903~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~645~^3.118^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13903~^~646~^0.391^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13903~^~653~^0.083^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~663~^0.306^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~670~^0.021^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13903~^~673~^0.203^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~674~^2.517^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~675~^0.310^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~687~^0.061^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~693~^0.306^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13903~^~851~^0.010^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13903~^~859~^0.192^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~312~^0.067^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~315~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~404~^0.075^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~405~^0.154^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~406~^6.019^6^0.159^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~410~^0.689^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~415~^0.590^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~501~^0.229^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~502~^0.894^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~503~^0.864^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~504~^1.634^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~505~^1.777^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~506~^0.577^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~507~^0.213^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~508~^0.773^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~509~^0.701^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~510~^0.918^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~511~^1.338^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~512~^0.658^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~513~^1.159^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~514~^1.822^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~515~^3.213^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~516~^0.927^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~517~^0.835^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~518~^0.780^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~521~^0.139^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13904~^~605~^0.501^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~606~^3.592^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~612~^0.259^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~613~^2.020^6^0.029^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~614~^1.204^6^0.029^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~617~^4.081^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13904~^~618~^0.338^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13904~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13904~^~620~^0.041^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~625~^0.065^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~626~^0.343^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13904~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~628~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13904~^~631~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~645~^4.586^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~646~^0.393^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13904~^~653~^0.100^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~654~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~663~^0.501^6^0.021^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~670~^0.040^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13904~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~673~^0.343^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~674~^3.580^6^0.070^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~675~^0.298^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~687~^0.084^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~693~^0.501^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13904~^~851~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13904~^~859~^0.177^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13905~^~312~^0.052^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~404~^0.048^0^^~4~^~BFPN~^~13911~^^^^^^^^^~03/01/2013~ -~13905~^~405~^0.241^4^0.014^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~406~^4.961^4^0.189^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~410~^0.331^0^^~4~^~BFPN~^~13911~^^^^^^^^^~03/01/2013~ -~13905~^~415~^0.590^4^0.025^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~501~^0.228^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~502~^0.954^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~503~^0.946^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~504~^1.739^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~505~^1.925^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~506~^0.548^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~507~^0.205^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~508~^0.812^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~509~^0.753^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~510~^1.017^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~511~^1.374^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~512~^0.749^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~513~^1.258^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~514~^1.966^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~515~^3.311^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~516~^1.004^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~517~^0.907^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~518~^0.832^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~605~^0.861^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~606~^6.171^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~610~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~611~^0.011^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~612~^0.423^4^0.010^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~613~^3.422^4^0.105^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~614~^2.051^4^0.067^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~615~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~617~^6.064^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13905~^~618~^0.585^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13905~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13905~^~620~^0.041^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~625~^0.110^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~626~^0.508^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13905~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13905~^~628~^0.036^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13905~^~631~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~645~^6.836^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~646~^0.689^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~652~^0.070^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~653~^0.169^4^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~654~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~662~^0.044^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~663~^0.734^4^0.015^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~665~^0.083^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~670~^0.074^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~672~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~673~^0.464^4^0.014^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~674~^5.330^4^0.155^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~675~^0.428^4^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~687~^0.118^4^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13905~^~693~^0.778^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~695~^0.083^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13905~^~851~^0.027^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13905~^~853~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~312~^0.064^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~404~^0.054^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13906~^~405~^0.234^4^0.016^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~406~^5.670^4^0.184^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~415~^0.657^4^0.025^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~501~^0.279^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~502~^1.165^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~503~^1.155^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~504~^2.123^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~505~^2.350^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~506~^0.670^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~507~^0.250^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~508~^0.992^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~509~^0.919^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~510~^1.241^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~511~^1.678^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~512~^0.915^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~513~^1.536^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~514~^2.400^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~515~^4.043^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~516~^1.225^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~517~^1.108^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~518~^1.015^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~521~^0.170^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~605~^1.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~606~^7.905^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~610~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~611~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~612~^0.549^4^0.024^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~613~^4.365^4^0.143^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~614~^2.641^4^0.084^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~615~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~617~^7.826^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13906~^~618~^0.754^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13906~^~619~^0.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13906~^~620~^0.047^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~625~^0.146^4^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~626~^0.662^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13906~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13906~^~628~^0.045^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13906~^~631~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~645~^8.832^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~646~^0.878^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~652~^0.089^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~653~^0.217^4^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~654~^0.006^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~662~^0.057^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~663~^0.998^4^0.035^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~665~^0.107^4^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~670~^0.092^4^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~672~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~673~^0.605^4^0.027^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~674~^6.828^4^0.133^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~675~^0.555^4^0.023^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~687~^0.153^4^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13906~^~693~^1.055^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~695~^0.107^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13906~^~851~^0.035^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13906~^~853~^0.021^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~312~^0.053^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~404~^0.047^0^^~4~^~BFPN~^~13911~^^^^^^^^^~03/01/2013~ -~13907~^~405~^0.195^4^0.014^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~406~^5.164^4^0.111^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~415~^0.568^4^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~501~^0.224^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~502~^0.938^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~503~^0.929^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~504~^1.709^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~505~^1.892^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~506~^0.539^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~508~^0.798^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~509~^0.740^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~510~^0.999^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~511~^1.350^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~512~^0.736^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~513~^1.237^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~514~^1.932^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~515~^3.254^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~516~^0.986^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~517~^0.892^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~518~^0.817^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~521~^0.137^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~605~^0.910^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~606~^6.684^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~610~^0.011^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~611~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~612~^0.460^4^0.031^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~613~^3.686^4^0.228^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~614~^2.240^4^0.140^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~615~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~617~^6.491^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13907~^~618~^0.614^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13907~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13907~^~620~^0.040^4^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~625~^0.115^4^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~626~^0.547^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13907~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13907~^~628~^0.037^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13907~^~631~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~645~^7.312^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~646~^0.720^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~652~^0.074^4^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~653~^0.184^4^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~654~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~662~^0.046^4^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~663~^0.774^4^0.078^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~665~^0.090^4^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~670~^0.081^4^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~672~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~673~^0.501^4^0.034^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~674~^5.717^4^0.340^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~675~^0.443^4^0.030^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~687~^0.123^4^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13907~^~693~^0.820^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~695~^0.090^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13907~^~851~^0.029^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13907~^~853~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~312~^0.069^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~404~^0.053^0^^~4~^~BFPN~^~13912~^^^^^^^^^~03/01/2013~ -~13908~^~405~^0.234^4^0.016^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~406~^5.618^4^0.134^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~415~^0.662^4^0.016^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~501~^0.272^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~502~^1.135^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~503~^1.125^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~504~^2.068^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~505~^2.289^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~506~^0.652^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~508~^0.966^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~509~^0.895^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~510~^1.209^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~511~^1.634^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~512~^0.891^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~513~^1.497^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~514~^2.338^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~515~^3.938^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~516~^1.194^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~517~^1.079^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~518~^0.989^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~521~^0.165^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~605~^1.299^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~606~^8.722^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~610~^0.015^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~611~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~612~^0.605^4^0.039^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~613~^4.796^4^0.241^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~614~^2.932^4^0.150^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~615~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~617~^8.569^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13908~^~618~^0.816^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13908~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13908~^~620~^0.050^4^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~625~^0.152^4^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~626~^0.737^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13908~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13908~^~628~^0.048^4^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~13908~^~631~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~645~^9.674^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~646~^0.948^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~652~^0.098^4^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~653~^0.238^4^0.014^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~662~^0.063^4^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~663~^1.116^4^0.066^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~665~^0.120^4^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~670~^0.101^4^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~672~^0.006^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~673~^0.674^4^0.039^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~674~^7.453^4^0.321^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~675~^0.594^4^0.028^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~687~^0.169^4^0.010^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~689~^0.023^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~13908~^~693~^1.179^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~695~^0.120^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~13908~^~851~^0.038^4^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13908~^~853~^0.023^4^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~13909~^~312~^0.069^4^0.004^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~315~^0.011^5^0.001^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~404~^0.064^4^0.009^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~405~^0.100^4^0.015^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~406~^6.077^4^0.385^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~410~^0.593^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13909~^~415~^0.562^4^0.028^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~501~^0.135^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~502~^0.823^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~503~^0.938^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~504~^1.639^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~505~^1.742^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~506~^0.537^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~508~^0.814^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~509~^0.657^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~510~^1.022^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~511~^1.333^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~512~^0.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~513~^1.253^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~514~^1.877^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~515~^3.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~516~^1.255^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~517~^0.982^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~518~^0.812^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~521~^0.216^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13909~^~606~^6.251^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13909~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~610~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~611~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~612~^0.490^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~613~^3.763^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~614~^1.915^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~617~^5.855^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~618~^0.379^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~619~^0.185^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~620~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~626~^0.755^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13909~^~628~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13909~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13909~^~645~^6.633^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13909~^~646~^0.589^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~312~^0.079^4^0.005^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~315~^0.009^5^0.001^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~404~^0.071^4^0.005^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~405~^0.127^4^0.013^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~406~^7.037^4^0.341^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~410~^0.521^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13910~^~415~^0.553^4^0.033^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~502~^1.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~503~^1.203^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~504~^2.103^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~505~^2.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~506~^0.688^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~507~^0.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~508~^1.044^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~509~^0.842^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~510~^1.312^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~511~^1.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~513~^1.607^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~514~^2.408^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~515~^3.969^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~516~^1.610^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~517~^1.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~518~^1.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~521~^0.276^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13910~^~606~^6.608^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~610~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~611~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~612~^0.510^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~613~^3.990^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~614~^2.028^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~617~^6.337^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~618~^0.434^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~619~^0.149^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~626~^0.632^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13910~^~628~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13910~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13910~^~645~^6.993^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13910~^~646~^0.621^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13911~^~312~^0.071^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~315~^0.013^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~405~^0.140^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~406~^3.950^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~415~^0.400^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~502~^0.824^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~503~^0.938^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~504~^1.641^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~505~^1.743^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~506~^0.537^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~508~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~509~^0.657^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~510~^1.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~511~^1.334^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~512~^0.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~513~^1.254^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~514~^1.879^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~515~^3.096^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~516~^1.256^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~517~^0.983^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~518~^0.812^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13911~^~521~^0.217^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~ -~13911~^~606~^6.910^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13911~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13911~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13911~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~611~^0.030^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~612~^0.550^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~613~^4.200^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~614~^2.070^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~617~^6.550^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~618~^0.400^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~619~^0.190^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~626~^0.830^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13911~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13911~^~645~^7.410^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13911~^~646~^0.610^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~ -~13912~^~312~^0.085^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~315~^0.009^3^0.001^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~404~^0.065^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~405~^0.115^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~406~^7.095^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~410~^0.515^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13912~^~415~^0.521^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~501~^0.172^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~502~^1.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~503~^1.190^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~504~^2.081^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~505~^2.211^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~506~^0.681^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~507~^0.338^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~508~^1.033^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~509~^0.834^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~510~^1.298^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~511~^1.692^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~512~^0.835^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~513~^1.590^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~514~^2.383^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~515~^3.927^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~516~^1.593^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~517~^1.247^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~518~^1.031^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13912~^~521~^0.275^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~ -~13912~^~606~^7.264^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13912~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~610~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~611~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~612~^0.561^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~613~^4.386^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~614~^2.229^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~617~^6.967^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~618~^0.477^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~619~^0.164^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~620~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~626~^0.695^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~628~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13912~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13912~^~645~^7.688^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13912~^~646~^0.683^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13913~^~312~^0.071^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~315~^0.009^3^0.000^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~404~^0.074^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~405~^0.112^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~406~^5.502^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~410~^0.583^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13913~^~415~^0.569^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13913~^~501~^0.129^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~502~^0.783^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~503~^0.892^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~504~^1.560^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~505~^1.657^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~506~^0.511^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~507~^0.253^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~508~^0.775^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~509~^0.625^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~510~^0.973^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~511~^1.268^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~512~^0.626^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~513~^1.192^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~514~^1.786^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~515~^2.944^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~516~^1.194^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~517~^0.935^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~518~^0.772^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~521~^0.206^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13913~^~606~^6.067^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13913~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13913~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13913~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~13913~^~610~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~611~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~612~^0.475^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~613~^3.653^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~614~^1.859^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~617~^5.683^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~618~^0.368^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~619~^0.180^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~626~^0.733^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13913~^~628~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13913~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13913~^~645~^6.438^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13913~^~646~^0.572^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13914~^~312~^0.073^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~315~^0.009^3^0.000^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~404~^0.078^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~405~^0.140^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~406~^6.978^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~410~^0.527^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13914~^~415~^0.585^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~ -~13914~^~501~^0.173^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~502~^1.054^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~503~^1.201^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~504~^2.099^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~505~^2.230^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~506~^0.687^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~507~^0.341^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~508~^1.042^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~509~^0.841^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~510~^1.309^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~511~^1.706^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~512~^0.842^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~513~^1.604^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~514~^2.404^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~515~^3.962^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~516~^1.607^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~517~^1.258^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~518~^1.040^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~521~^0.277^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~13914~^~606~^5.951^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13914~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~610~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~611~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~612~^0.460^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~613~^3.593^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~614~^1.826^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~617~^5.707^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~618~^0.391^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~619~^0.134^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~620~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~626~^0.569^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~628~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~13914~^~645~^6.298^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13914~^~646~^0.560^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~13915~^~312~^0.069^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~405~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~406~^3.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~410~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~415~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~501~^0.213^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~502~^0.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~503~^0.854^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~504~^1.502^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~505~^1.581^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~506~^0.486^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~507~^0.213^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~508~^0.742^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~509~^0.638^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~510~^0.924^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~511~^1.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~512~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~513~^1.146^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~514~^1.736^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~515~^2.854^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~516~^1.037^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~517~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~518~^0.726^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~606~^9.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~612~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~613~^5.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~614~^2.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~617~^8.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~618~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~619~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~626~^1.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13915~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~645~^9.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13915~^~646~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~312~^0.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~406~^4.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~410~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~501~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~502~^1.132^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~503~^1.166^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~504~^2.049^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~505~^2.157^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~506~^0.664^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~507~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~508~^1.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~509~^0.871^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~510~^1.261^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~511~^1.638^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~512~^0.888^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~513~^1.564^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~514~^2.368^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~515~^3.895^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~516~^1.414^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~517~^1.145^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~518~^0.991^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~606~^8.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~613~^5.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~614~^2.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~617~^8.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~618~^0.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~619~^0.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~626~^0.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~ -~13916~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~645~^9.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13916~^~646~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13917~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13917~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~405~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~406~^5.782^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~410~^0.560^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~415~^0.535^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13917~^~501~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~502~^0.783^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~503~^0.892^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~504~^1.560^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~505~^1.657^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~506~^0.511^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~507~^0.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~508~^0.774^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~509~^0.625^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~510~^0.973^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~511~^1.268^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~512~^0.626^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~513~^1.192^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~514~^1.786^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~515~^2.943^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~516~^1.194^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~517~^0.935^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~518~^0.772^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13917~^~521~^0.189^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13917~^~606~^8.410^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13917~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~610~^0.067^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~611~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~612~^0.659^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~613~^5.063^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~614~^2.576^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~617~^7.883^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~618~^0.508^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~619~^0.249^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~620~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~626~^1.017^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~628~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~ -~13917~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13917~^~645~^8.930^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13917~^~646~^0.790^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13918~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13918~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~405~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~406~^7.041^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~410~^0.522^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~415~^0.554^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13918~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~502~^1.057^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~503~^1.204^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~504~^2.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~505~^2.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~506~^0.689^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~507~^0.341^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~508~^1.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~509~^0.843^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~510~^1.313^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~511~^1.711^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~513~^1.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~514~^2.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~515~^3.972^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~516~^1.611^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~517~^1.261^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~518~^1.042^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13918~^~521~^0.269^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13918~^~606~^6.743^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13918~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13918~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13918~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~13918~^~610~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~611~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~612~^0.521^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~613~^4.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~614~^2.069^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~617~^6.467^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~618~^0.443^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~619~^0.152^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~620~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13918~^~626~^0.645^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~628~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13918~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13918~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13918~^~645~^7.136^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13918~^~646~^0.654^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13919~^~312~^0.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~406~^3.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~410~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~415~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~501~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~502~^1.044^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~503~^1.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~504~^1.889^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~505~^1.989^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~506~^0.612^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~507~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~508~^0.933^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~509~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~510~^1.163^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~511~^1.511^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~512~^0.818^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~513~^1.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~514~^2.184^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~515~^3.591^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~516~^1.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~517~^1.056^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~518~^0.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~606~^9.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~612~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~613~^5.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~614~^2.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~617~^9.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~618~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~619~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~626~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13919~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~645~^10.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13919~^~646~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13920~^~312~^0.065^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13920~^~404~^0.052^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~405~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~406~^6.392^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~410~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~415~^0.534^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13920~^~501~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~502~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~503~^0.902^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~504~^1.577^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~505~^1.675^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~506~^0.516^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~507~^0.256^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~508~^0.783^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~509~^0.632^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~510~^0.983^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~511~^1.282^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~512~^0.633^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~513~^1.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~514~^1.805^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~515~^2.976^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~516~^1.207^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~517~^0.945^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~518~^0.781^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13920~^~521~^0.208^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13920~^~606~^7.214^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13920~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~610~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~611~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~612~^0.565^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~613~^4.343^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~614~^2.210^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~617~^6.758^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~618~^0.438^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~619~^0.214^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~626~^0.872^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13920~^~645~^7.655^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13920~^~646~^0.680^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~312~^0.085^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~ -~13921~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~405~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~406~^7.169^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~410~^0.520^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~415~^0.527^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13921~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~502~^1.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~503~^1.203^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~504~^2.103^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~505~^2.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~506~^0.688^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~507~^0.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~508~^1.044^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~509~^0.842^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~510~^1.311^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~511~^1.709^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~513~^1.607^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~514~^2.408^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~515~^3.968^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~516~^1.610^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~517~^1.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~518~^1.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13921~^~521~^0.278^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13921~^~606~^7.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~610~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~611~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~612~^0.541^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~613~^4.227^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~614~^2.148^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~617~^6.714^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~618~^0.460^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~619~^0.158^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~626~^0.670^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13921~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13921~^~645~^7.409^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13921~^~646~^0.658^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13922~^~312~^0.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~315~^0.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~404~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~405~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~406~^3.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~410~^0.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~415~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~501~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~502~^1.044^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~503~^1.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~504~^1.889^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~505~^1.989^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~506~^0.612^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~507~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~508~^0.933^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~509~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~510~^1.163^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~511~^1.511^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~512~^0.818^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~513~^1.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~514~^2.184^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~515~^3.591^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~516~^1.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~517~^1.056^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~518~^0.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~606~^10.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~612~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~613~^6.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~614~^3.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~617~^9.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~618~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~619~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~626~^0.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13922~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~645~^10.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13922~^~646~^0.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13923~^~312~^0.068^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13923~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~405~^0.105^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~406~^5.176^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~410~^0.549^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~415~^0.535^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13923~^~501~^0.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~502~^0.774^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~503~^0.881^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~504~^1.541^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~505~^1.637^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~506~^0.504^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~507~^0.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~508~^0.765^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~509~^0.617^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~510~^0.961^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~511~^1.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~512~^0.618^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~513~^1.178^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~514~^1.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~515~^2.908^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~516~^1.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~517~^0.923^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~518~^0.763^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13923~^~521~^0.204^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13923~^~606~^7.451^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13923~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~610~^0.059^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~611~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~612~^0.584^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~613~^4.486^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~614~^2.282^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~617~^6.979^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~618~^0.452^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~619~^0.221^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~626~^0.900^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~628~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13923~^~645~^7.906^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13923~^~646~^0.702^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13924~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~405~^0.139^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~406~^6.916^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~410~^0.523^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~415~^0.580^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13924~^~501~^0.169^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~502~^1.030^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~503~^1.173^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~504~^2.052^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~505~^2.180^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~506~^0.672^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~507~^0.333^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~508~^1.019^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~509~^0.822^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~510~^1.279^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~511~^1.668^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~512~^0.823^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~513~^1.568^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~514~^2.349^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~515~^3.872^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~516~^1.570^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~517~^1.229^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~518~^1.016^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13924~^~521~^0.271^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13924~^~606~^6.511^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~610~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~611~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~612~^0.503^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~613~^3.931^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~614~^1.998^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~617~^6.244^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~618~^0.428^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~619~^0.147^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~626~^0.623^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~628~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13924~^~645~^6.890^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13924~^~646~^0.612^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13925~^~312~^0.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~406~^3.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~410~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~415~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~501~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~502~^1.044^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~503~^1.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~504~^1.889^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~505~^1.989^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~506~^0.612^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~507~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~508~^0.933^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~509~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~510~^1.163^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~511~^1.511^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~512~^0.818^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~513~^1.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~514~^2.184^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~515~^3.591^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~516~^1.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~517~^1.056^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~518~^0.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~606~^9.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~612~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~613~^5.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~614~^2.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~617~^8.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~618~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~619~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~626~^0.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13925~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~645~^9.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13925~^~646~^0.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~312~^0.093^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~406~^2.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~410~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~501~^0.203^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~502~^0.793^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~503~^0.816^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~504~^1.435^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~505~^1.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~506~^0.465^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~507~^0.203^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~508~^0.709^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~509~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~510~^0.883^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~511~^1.147^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~512~^0.622^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~513~^1.095^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~514~^1.658^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~515~^2.727^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~516~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~517~^0.802^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~518~^0.694^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~606~^8.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~611~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~612~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~613~^5.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~614~^2.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~617~^8.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~618~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~626~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13926~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~645~^9.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13926~^~646~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~312~^0.156^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~315~^0.015^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~406~^3.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~410~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~415~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~501~^0.283^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~502~^1.103^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~503~^1.136^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~504~^1.996^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~505~^2.101^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~506~^0.647^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~507~^0.283^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~508~^0.986^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~509~^0.849^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~510~^1.229^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~511~^1.596^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~512~^0.865^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~513~^1.524^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~514~^2.308^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~515~^3.795^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~516~^1.378^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~517~^1.115^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~518~^0.966^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~606~^8.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~612~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~613~^5.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~614~^2.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~617~^8.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~618~^0.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~619~^0.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~626~^0.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13927~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~645~^9.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13927~^~646~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~312~^0.142^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~315~^0.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~405~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~406~^3.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~410~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~415~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~501~^0.269^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~502~^1.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~503~^1.081^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~504~^1.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~505~^2.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~506~^0.615^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~507~^0.269^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~508~^0.939^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~509~^0.808^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~510~^1.169^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~511~^1.519^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~512~^0.823^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~513~^1.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~514~^2.196^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~515~^3.612^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~516~^1.312^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~517~^1.062^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~518~^0.919^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~606~^10.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~612~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~613~^6.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~614~^3.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~617~^9.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~618~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~620~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13928~^~626~^0.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13928~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13928~^~630~^0.000^0^^~4~^~BFFN~^~13918~^^^^^^^^^~03/01/2007~ -~13928~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13928~^~645~^11.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13928~^~646~^1.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13929~^~312~^0.069^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13929~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~405~^0.098^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~406~^5.986^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~410~^0.584^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~415~^0.554^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13929~^~501~^0.133^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~502~^0.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~503~^0.924^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~504~^1.615^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~505~^1.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~506~^0.529^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~507~^0.262^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~508~^0.802^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~509~^0.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~510~^1.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~511~^1.313^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~512~^0.648^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~513~^1.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~514~^1.849^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~515~^3.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~516~^1.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~517~^0.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~518~^0.800^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13929~^~521~^0.213^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13929~^~606~^5.127^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13929~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~610~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~611~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~612~^0.402^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~613~^3.087^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~614~^1.571^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~617~^4.803^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~618~^0.311^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~619~^0.152^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~620~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~626~^0.620^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13929~^~645~^5.440^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13929~^~646~^0.483^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~312~^0.081^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13930~^~404~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~405~^0.130^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~406~^7.176^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~410~^0.531^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~415~^0.564^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13930~^~501~^0.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~502~^1.077^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~503~^1.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~504~^2.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~505~^2.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~506~^0.702^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~507~^0.348^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~508~^1.065^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~509~^0.859^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~510~^1.338^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~511~^1.743^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~512~^0.860^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~513~^1.639^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~514~^2.456^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~515~^4.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~516~^1.642^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~517~^1.285^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~518~^1.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13930~^~521~^0.283^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~13930~^~606~^5.603^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13930~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13930~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~13930~^~610~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~611~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~612~^0.433^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~613~^3.383^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~614~^1.720^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~617~^5.374^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~618~^0.368^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~619~^0.127^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13930~^~626~^0.536^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~628~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13930~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13930~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13930~^~645~^5.930^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13930~^~646~^0.547^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~13931~^~312~^0.066^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13931~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~405~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~406~^6.425^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~410~^0.582^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~415~^0.536^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13931~^~501~^0.127^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~502~^0.774^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~503~^0.881^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~504~^1.541^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~505~^1.637^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~506~^0.504^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~507~^0.250^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~508~^0.765^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~509~^0.617^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~510~^0.961^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~511~^1.253^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~512~^0.618^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~513~^1.178^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~514~^1.764^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~515~^2.908^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~516~^1.179^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~517~^0.923^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~518~^0.763^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13931~^~521~^0.203^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13931~^~606~^5.763^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13931~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~610~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~611~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~612~^0.452^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~613~^3.470^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~614~^1.765^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~617~^5.398^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~618~^0.350^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~619~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~626~^0.696^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~628~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13931~^~645~^6.115^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13931~^~646~^0.543^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~312~^0.088^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13932~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~405~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~406~^7.269^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~410~^0.528^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~415~^0.534^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13932~^~501~^0.184^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~502~^1.119^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~503~^1.274^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~504~^2.227^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~505~^2.366^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~506~^0.729^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~507~^0.361^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~508~^1.106^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~509~^0.892^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~510~^1.389^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~511~^1.811^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~512~^0.894^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~513~^1.702^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~514~^2.550^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~515~^4.203^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~516~^1.705^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~517~^1.335^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~518~^1.103^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~ -~13932~^~521~^0.294^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13932~^~606~^6.202^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~610~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~611~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~612~^0.479^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~613~^3.745^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~614~^1.903^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~617~^5.948^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~618~^0.407^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~619~^0.140^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~626~^0.593^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~628~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13932~^~645~^6.564^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13932~^~646~^0.583^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13933~^~312~^0.131^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~405~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~406~^3.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~410~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~415~^0.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~501~^0.322^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~502~^1.257^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~503~^1.293^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~504~^2.274^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~505~^2.394^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~506~^0.736^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~507~^0.322^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~508~^1.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~509~^0.967^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~510~^1.399^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~511~^1.818^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~512~^0.985^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~513~^1.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~514~^2.628^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~515~^4.322^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~516~^1.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~517~^1.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~518~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~606~^8.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~612~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~613~^4.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~614~^2.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~617~^7.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~618~^1.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~619~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13933~^~626~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~13933~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13933~^~630~^0.000^0^^~4~^~BFFN~^~13930~^^^^^^^^^~03/01/2007~ -~13933~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~13933~^~645~^8.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13933~^~646~^1.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~13934~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13934~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~405~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~406~^5.526^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~410~^0.586^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~415~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13934~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~502~^0.826^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~503~^0.941^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~504~^1.645^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~505~^1.748^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~506~^0.538^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~508~^0.817^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~509~^0.659^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~510~^1.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~511~^1.337^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~512~^0.660^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~513~^1.257^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~514~^1.884^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~515~^3.104^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~516~^1.259^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~517~^0.986^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~518~^0.815^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13934~^~521~^0.206^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13934~^~606~^4.491^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13934~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~610~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~611~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~612~^0.352^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~613~^2.704^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~614~^1.376^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~617~^4.207^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~618~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~619~^0.133^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~620~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~626~^0.543^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~628~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13934~^~645~^4.765^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13934~^~646~^0.423^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~13935~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~405~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~406~^7.083^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~410~^0.535^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~415~^0.594^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~13935~^~501~^0.178^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~502~^1.083^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~503~^1.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~504~^2.157^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~505~^2.292^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~506~^0.706^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~507~^0.350^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~508~^1.071^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~509~^0.864^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~510~^1.345^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~511~^1.754^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~512~^0.865^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~513~^1.649^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~514~^2.470^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~515~^4.071^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~516~^1.651^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~517~^1.293^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~518~^1.068^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~13935~^~521~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13935~^~606~^5.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~610~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~611~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~612~^0.387^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~613~^3.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~614~^1.536^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~617~^4.799^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~618~^0.329^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~619~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~626~^0.479^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~13935~^~645~^5.296^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13935~^~646~^0.471^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13937~^~312~^0.100^4^0.000^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13937~^~404~^0.087^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~405~^0.244^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~406~^3.415^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~415~^0.269^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13937~^~501~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~502~^1.199^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~503~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~504~^2.294^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~505~^2.435^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~506~^0.736^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~507~^0.279^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~508~^1.125^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~509~^0.951^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~510~^1.403^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~511~^1.748^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~512~^0.837^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~513~^1.569^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~514~^2.587^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~515~^4.160^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~516~^1.234^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~517~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~518~^1.041^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13937~^~521~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~13937~^~606~^1.960^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13937~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13937~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13937~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13937~^~611~^0.000^4^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~612~^0.110^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~613~^1.180^4^0.095^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~614~^0.660^4^0.075^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~615~^0.010^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~617~^3.270^4^0.435^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~618~^0.200^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~619~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~620~^0.020^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~625~^0.040^4^0.015^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~626~^0.200^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13937~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13937~^~645~^3.510^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13937~^~646~^0.250^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13940~^~312~^0.100^4^0.000^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13940~^~404~^0.094^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~405~^0.264^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~406~^3.696^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~415~^0.291^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~ -~13940~^~501~^0.303^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~502~^1.298^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~503~^1.451^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~504~^2.483^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~505~^2.636^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~506~^0.797^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~507~^0.302^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~508~^1.218^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~509~^1.030^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~510~^1.519^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~511~^1.893^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~512~^0.906^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~513~^1.698^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~514~^2.800^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~515~^4.503^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~516~^1.335^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~517~^1.188^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~518~^1.127^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~13940~^~521~^0.130^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~13940~^~606~^2.150^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13940~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~611~^0.000^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~612~^0.140^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~613~^1.300^3^0.092^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~614~^0.700^3^0.035^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~615~^0.010^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~617~^2.690^3^0.358^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~618~^0.260^3^0.029^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~619~^0.030^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~620~^0.050^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~625~^0.050^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~626~^0.180^3^0.029^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13940~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~ -~13940~^~645~^2.920^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13940~^~646~^0.340^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13943~^~312~^0.107^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~315~^0.013^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~405~^0.218^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~406~^5.613^4^0.139^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~415~^0.681^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~501~^0.327^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~502~^1.292^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~503~^1.249^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~504~^2.362^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~505~^2.567^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~506~^0.832^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~507~^0.304^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~508~^1.112^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~509~^1.012^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~510~^1.320^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~511~^1.919^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~512~^0.941^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~513~^1.649^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~514~^2.627^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~515~^4.647^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~516~^1.271^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~517~^1.174^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~518~^1.121^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13943~^~605~^0.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13943~^~606~^2.596^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13943~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13943~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13943~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13943~^~611~^0.000^4^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13943~^~612~^0.163^4^0.019^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~613~^1.466^4^0.201^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~614~^0.885^4^0.100^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~617~^2.920^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13943~^~618~^0.322^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13943~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13943~^~620~^0.067^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~625~^0.040^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~626~^0.228^4^0.020^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13943~^~628~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~629~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~645~^3.249^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13943~^~646~^0.407^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13943~^~653~^0.073^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~663~^0.288^4^0.040^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~670~^0.022^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13943~^~674~^2.632^4^0.288^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~675~^0.300^4^0.033^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~687~^0.061^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~693~^0.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13943~^~851~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13943~^~859~^0.196^4^0.027^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~312~^0.103^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~405~^0.235^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~406~^5.435^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~410~^0.840^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~415~^0.674^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~501~^0.329^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~502~^1.300^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~503~^1.257^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~504~^2.376^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~505~^2.583^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~506~^0.837^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~507~^0.306^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~508~^1.119^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~509~^1.018^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~510~^1.328^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~511~^1.931^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~512~^0.947^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~513~^1.659^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~514~^2.643^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~515~^4.675^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~516~^1.279^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~517~^1.181^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~518~^1.128^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~521~^0.140^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13946~^~605~^0.349^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~606~^2.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~611~^0.000^3^0.000^~1~^~A~^^^^^^^^^^~05/01/2001~ -~13946~^~612~^0.150^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~613~^1.177^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~614~^0.793^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~617~^2.357^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13946~^~618~^0.261^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13946~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13946~^~620~^0.032^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~625~^0.029^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~626~^0.167^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13946~^~628~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~645~^2.603^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~646~^0.306^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~653~^0.065^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~663~^0.349^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~670~^0.021^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~674~^2.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~675~^0.240^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~687~^0.045^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~693~^0.349^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13946~^~851~^0.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13946~^~859~^0.239^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13948~^~312~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~405~^0.133^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~406~^7.363^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~410~^0.545^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~415~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13948~^~501~^0.182^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~502~^1.105^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~503~^1.259^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~504~^2.201^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~505~^2.338^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~506~^0.720^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~507~^0.357^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~508~^1.093^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~509~^0.882^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~510~^1.372^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~511~^1.789^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~512~^0.883^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~513~^1.682^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~514~^2.520^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~515~^4.153^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~516~^1.684^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~517~^1.319^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~518~^1.090^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13948~^~521~^0.291^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13948~^~606~^3.395^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13948~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~610~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~612~^0.243^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~613~^2.174^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~614~^0.952^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~617~^3.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~618~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~619~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~620~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~626~^0.302^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~628~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13948~^~645~^3.317^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13948~^~646~^0.322^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~312~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~404~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~405~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~406~^7.256^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~410~^0.548^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~415~^0.609^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13949~^~501~^0.183^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~502~^1.110^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~503~^1.264^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~504~^2.210^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~505~^2.348^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~506~^0.723^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~507~^0.359^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~508~^1.097^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~509~^0.885^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~510~^1.378^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~511~^1.796^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~512~^0.887^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~513~^1.689^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~514~^2.530^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~515~^4.171^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~516~^1.692^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~517~^1.324^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~518~^1.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13949~^~521~^0.292^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13949~^~606~^2.951^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~612~^0.211^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~613~^1.889^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~614~^0.828^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~617~^2.609^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~618~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~619~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~626~^0.263^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~628~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13949~^~645~^2.882^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13949~^~646~^0.280^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~312~^0.105^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~315~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~405~^0.158^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~406~^4.175^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~410~^0.572^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~415~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13950~^~501~^0.221^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~502~^1.342^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~503~^1.528^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~504~^2.672^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~505~^2.839^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~506~^0.875^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~507~^0.433^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~508~^1.327^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~509~^1.070^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~510~^1.666^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~511~^2.172^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~512~^1.072^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~513~^2.042^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~514~^3.060^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~515~^5.043^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~516~^2.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~517~^1.601^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~518~^1.323^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13950~^~521~^0.353^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13950~^~606~^2.666^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~610~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~612~^0.211^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~613~^1.628^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~614~^0.797^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~617~^2.625^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~618~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~619~^0.068^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~620~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~626~^0.277^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~628~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13950~^~645~^2.913^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13950~^~646~^0.250^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~312~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~404~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~405~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~406~^7.301^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~410~^0.552^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~415~^0.612^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13951~^~501~^0.184^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~502~^1.117^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~503~^1.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~504~^2.224^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~505~^2.362^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~506~^0.728^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~507~^0.361^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~508~^1.104^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~509~^0.891^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~510~^1.387^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~511~^1.807^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~512~^0.892^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~513~^1.699^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~514~^2.546^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~515~^4.196^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~516~^1.702^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~517~^1.333^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~518~^1.101^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13951~^~521~^0.294^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13951~^~606~^4.934^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~610~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~611~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~612~^0.369^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~613~^2.932^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~614~^1.592^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~617~^4.752^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~618~^0.346^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~619~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~620~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~626~^0.438^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~628~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13951~^~645~^5.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13951~^~646~^0.472^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~312~^0.082^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~405~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~406~^7.257^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~410~^0.538^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~415~^0.571^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13952~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~502~^1.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~503~^1.241^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~504~^2.169^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~505~^2.304^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~506~^0.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~507~^0.352^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~508~^1.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~509~^0.869^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~510~^1.353^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~511~^1.763^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~512~^0.870^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~513~^1.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~514~^2.484^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~515~^4.093^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~516~^1.660^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~517~^1.300^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~518~^1.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13952~^~521~^0.286^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13952~^~606~^5.720^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~610~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~611~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~612~^0.428^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~613~^3.399^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~614~^1.845^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~617~^5.509^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~618~^0.402^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~619~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~620~^0.053^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~626~^0.508^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13952~^~645~^6.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13952~^~646~^0.547^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13953~^~312~^0.078^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~405~^0.126^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~406~^6.933^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~410~^0.514^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~415~^0.545^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13953~^~501~^0.171^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~502~^1.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~503~^1.185^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~504~^2.072^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~505~^2.201^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~506~^0.678^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~507~^0.336^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~508~^1.029^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~509~^0.830^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~510~^1.292^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~511~^1.684^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~512~^0.831^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~513~^1.584^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~514~^2.373^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~515~^3.911^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~516~^1.586^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~517~^1.242^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~518~^1.026^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13953~^~521~^0.274^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13953~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~610~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~612~^0.247^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~613~^2.586^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~614~^1.218^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~617~^5.125^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~618~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~619~^0.051^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~626~^0.353^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13953~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~312~^0.070^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~315~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~405~^0.100^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~406~^6.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~410~^0.594^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~415~^0.563^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13954~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~502~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~503~^0.939^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~504~^1.642^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~505~^1.745^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~506~^0.538^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~508~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~509~^0.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~510~^1.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~511~^1.335^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~512~^0.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~513~^1.255^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~514~^1.880^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~515~^3.099^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~516~^1.257^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~517~^0.984^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~518~^0.813^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13954~^~521~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13954~^~606~^3.140^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13954~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~611~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~612~^0.206^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~613~^1.969^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~614~^0.954^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~617~^3.918^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~618~^0.303^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~619~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~620~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~626~^0.325^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13954~^~645~^4.246^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13954~^~646~^0.394^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13955~^~312~^0.083^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~405~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~406~^6.959^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~410~^0.505^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~415~^0.511^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13955~^~501~^0.169^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~502~^1.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~503~^1.167^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~504~^2.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~505~^2.169^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~506~^0.668^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~507~^0.331^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~508~^1.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~509~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~510~^1.273^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~511~^1.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~512~^0.819^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~513~^1.560^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~514~^2.337^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~515~^3.852^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~516~^1.562^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~517~^1.223^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~518~^1.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13955~^~521~^0.270^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13955~^~606~^4.546^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13955~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~611~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~612~^0.276^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~613~^2.888^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~614~^1.360^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~617~^5.723^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~618~^0.304^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~619~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~620~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~626~^0.394^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13955~^~645~^6.121^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13955~^~646~^0.406^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13956~^~312~^0.067^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~315~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~404~^0.055^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~405~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~406~^6.658^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~410~^0.603^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~415~^0.556^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13956~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~502~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~503~^0.939^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~504~^1.642^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~505~^1.745^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~506~^0.538^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~508~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~509~^0.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~510~^1.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~511~^1.335^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~512~^0.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~513~^1.255^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~514~^1.880^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~515~^3.099^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~516~^1.257^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~517~^0.984^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~518~^0.813^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13956~^~521~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13956~^~606~^3.493^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13956~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~611~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~612~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~613~^2.190^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~614~^1.061^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~617~^4.359^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~618~^0.337^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~619~^0.058^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~620~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~626~^0.362^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13956~^~645~^4.724^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13956~^~646~^0.438^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13957~^~312~^0.073^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~315~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~405~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~406~^6.906^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~410~^0.522^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~415~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13957~^~501~^0.174^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~502~^1.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~503~^1.203^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~504~^2.103^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~505~^2.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~506~^0.688^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~507~^0.341^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~508~^1.044^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~509~^0.842^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~510~^1.312^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~511~^1.710^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~513~^1.607^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~514~^2.408^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~515~^3.969^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~516~^1.610^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~517~^1.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~518~^1.041^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13957~^~521~^0.278^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13957~^~606~^3.595^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13957~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~610~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~612~^0.218^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~613~^2.284^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~614~^1.075^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~617~^4.527^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~618~^0.241^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~619~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~626~^0.312^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13957~^~645~^4.841^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13957~^~646~^0.321^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13958~^~312~^0.073^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~405~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~406~^5.516^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~410~^0.585^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~415~^0.570^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13958~^~501~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~502~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~503~^0.939^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~504~^1.642^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~505~^1.744^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~506~^0.538^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~507~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~508~^0.815^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~509~^0.658^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~510~^1.024^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~511~^1.335^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~512~^0.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~513~^1.255^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~514~^1.880^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~515~^3.099^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~516~^1.257^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~517~^0.984^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~518~^0.813^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13958~^~521~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13958~^~606~^2.822^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13958~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~611~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~612~^0.185^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~613~^1.769^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~614~^0.857^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~617~^3.521^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~618~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~619~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~626~^0.293^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13958~^~645~^3.816^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13958~^~646~^0.354^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13959~^~312~^0.066^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~315~^0.005^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~404~^0.088^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~405~^0.326^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~406~^8.935^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~410~^0.496^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~415~^0.878^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~501~^0.365^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~502~^1.538^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~503~^1.520^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~504~^2.813^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~505~^3.127^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~506~^0.883^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~507~^0.333^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~508~^1.309^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~509~^1.216^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~510~^1.631^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~511~^2.223^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~512~^1.223^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~513~^2.024^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~514~^3.180^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~515~^5.337^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~516~^1.606^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~517~^1.464^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~518~^1.344^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~521~^0.223^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13959~^~605~^0.227^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~606~^1.788^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13959~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13959~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13959~^~610~^0.006^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~611~^0.004^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~612~^0.107^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~613~^1.020^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~614~^0.578^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~615~^0.002^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~617~^1.837^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~618~^0.237^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~619~^0.007^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~620~^0.049^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~621~^0.001^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~625~^0.027^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~626~^0.146^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13959~^~628~^0.009^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~629~^0.003^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13959~^~631~^0.013^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~645~^2.056^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~646~^0.331^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~652~^0.017^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~653~^0.050^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~654~^0.003^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~662~^0.011^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~663~^0.196^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~665~^0.020^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~670~^0.015^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~672~^0.002^0^^~4~^~BFYN~^~23324~^^^^^^^^^~06/01/2013~ -~13959~^~673~^0.135^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~674~^1.641^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~675~^0.202^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~687~^0.038^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~689~^0.019^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~693~^0.207^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~695~^0.020^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~851~^0.007^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13959~^~853~^0.019^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~ -~13961~^~312~^0.121^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13961~^~404~^0.110^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~405~^0.229^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~406~^3.613^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~415~^0.320^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13961~^~501~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~502~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~503~^1.329^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~504~^2.276^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~505~^2.416^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~506~^0.730^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~507~^0.276^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~508~^1.116^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~509~^0.943^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~510~^1.392^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~511~^1.734^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~512~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~513~^1.556^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~514~^2.566^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~515~^4.126^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~516~^1.224^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~517~^1.088^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~518~^1.033^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13961~^~521~^0.119^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13961~^~606~^1.710^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13961~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~611~^0.000^4^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~612~^0.070^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~613~^1.020^4^0.090^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~614~^0.610^4^0.040^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~615~^0.010^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~617~^2.530^4^0.305^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~618~^0.300^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~619~^0.040^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~620~^0.060^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~625~^0.040^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~626~^0.140^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13961~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13961~^~645~^2.710^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13961~^~646~^0.400^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13963~^~312~^0.112^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13963~^~404~^0.112^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~405~^0.232^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~406~^3.668^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~415~^0.324^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13963~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~502~^1.208^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~503~^1.349^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~504~^2.310^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~506~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~507~^0.281^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~508~^1.133^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~509~^0.958^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~510~^1.413^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~511~^1.761^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~512~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~513~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~514~^2.605^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~515~^4.189^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~516~^1.242^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~517~^1.105^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~518~^1.048^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13963~^~521~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13963~^~606~^2.000^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13963~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~611~^0.000^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~612~^0.100^3^0.040^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~613~^1.170^3^0.237^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~614~^0.720^3^0.150^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~615~^0.010^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~617~^2.290^3^0.427^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~618~^0.280^3^0.035^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~619~^0.030^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~620~^0.050^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~625~^0.040^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~626~^0.130^3^0.023^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13963~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13963~^~645~^2.460^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13963~^~646~^0.360^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13965~^~312~^0.113^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13965~^~404~^0.112^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~405~^0.232^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~406~^3.665^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~415~^0.324^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~ -~13965~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~502~^1.207^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~503~^1.348^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~504~^2.308^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~505~^2.450^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~506~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~508~^1.132^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~509~^0.957^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~510~^1.412^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~511~^1.759^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~512~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~513~^1.578^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~514~^2.603^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~515~^4.185^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~516~^1.241^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~517~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~518~^1.048^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13965~^~521~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13965~^~606~^3.620^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13965~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~611~^0.010^4^0.000^~1~^~A~^^^^^^^^^^~05/01/2001~ -~13965~^~612~^0.220^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~613~^2.130^4^0.070^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~614~^1.230^4^0.095^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~615~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~617~^5.350^4^0.600^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~618~^0.330^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~619~^0.050^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~620~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~625~^0.080^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~626~^0.300^4^0.025^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13965~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13965~^~645~^5.730^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13965~^~646~^0.410^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13967~^~312~^0.112^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~ -~13967~^~404~^0.141^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~405~^0.228^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~406~^4.049^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~415~^0.478^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~ -~13967~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~502~^1.209^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~503~^1.351^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~504~^2.313^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~505~^2.455^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~506~^0.742^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~507~^0.281^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~508~^1.134^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~509~^0.959^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~510~^1.415^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~511~^1.763^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~512~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~513~^1.581^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~514~^2.608^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~515~^4.193^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~516~^1.244^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~517~^1.106^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~518~^1.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~13967~^~521~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13967~^~606~^2.710^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13967~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~611~^0.000^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~612~^0.170^3^0.017^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~613~^1.590^3^0.115^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~614~^0.940^3^0.098^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~615~^0.010^3^0.000^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~617~^3.100^3^0.092^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~618~^0.250^3^0.012^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~619~^0.020^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~620~^0.040^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~625~^0.060^3^0.006^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~626~^0.170^3^0.012^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13967~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13967~^~645~^3.330^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13967~^~646~^0.310^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13968~^~312~^0.066^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~315~^0.006^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~404~^0.088^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~405~^0.313^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~406~^9.215^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~410~^0.485^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~415~^0.887^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~501~^0.369^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~502~^1.541^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~503~^1.527^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~504~^2.807^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~505~^3.108^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~506~^0.886^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~507~^0.331^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~508~^1.311^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~509~^1.216^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~510~^1.642^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~511~^2.219^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~512~^1.210^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~513~^2.032^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~514~^3.175^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~515~^5.347^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~516~^1.621^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~517~^1.465^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~518~^1.343^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13968~^~521~^0.225^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~13968~^~605~^0.212^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~606~^1.769^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13968~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13968~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13968~^~610~^0.005^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~611~^0.003^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~612~^0.108^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~613~^1.018^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~614~^0.563^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~615~^0.002^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~617~^1.854^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~618~^0.222^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~619~^0.007^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~620~^0.043^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~621~^0.001^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~625~^0.029^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~626~^0.152^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13968~^~628~^0.010^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~629~^0.002^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13968~^~631~^0.012^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~645~^2.084^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~646~^0.307^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~652~^0.017^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~653~^0.049^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~654~^0.002^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~662~^0.011^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~663~^0.179^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~665~^0.021^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~670~^0.017^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~672~^0.002^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~ -~13968~^~673~^0.141^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~674~^1.675^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~675~^0.184^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~687~^0.039^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~689~^0.018^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~693~^0.190^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~695~^0.021^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~851~^0.007^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13968~^~853~^0.018^0^^~4~^~BFYN~^~23325~^^^^^^^^^~07/01/2015~ -~13969~^~312~^0.066^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~315~^0.004^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~404~^0.088^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~405~^0.345^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~406~^8.514^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~410~^0.513^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~415~^0.865^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~501~^0.364^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~502~^1.558^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~503~^1.539^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~504~^2.874^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~505~^3.208^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~506~^0.896^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~507~^0.340^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~508~^1.324^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~509~^1.244^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~510~^1.645^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~511~^2.269^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~512~^1.269^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~513~^2.042^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~514~^3.244^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~515~^5.417^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~516~^1.606^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~517~^1.497^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~518~^1.375^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~521~^0.222^0^^~4~^~O~^^^^^^^^^^~05/01/2013~ -~13969~^~605~^0.212^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~606~^1.502^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13969~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13969~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13969~^~610~^0.006^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~611~^0.003^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~612~^0.085^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~613~^0.842^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~614~^0.502^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~615~^0.002^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~617~^1.482^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~618~^0.220^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~619~^0.005^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~620~^0.051^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~621~^0.002^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~625~^0.020^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~626~^0.110^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~13969~^~628~^0.005^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~629~^0.003^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13969~^~631~^0.012^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~645~^1.646^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~646~^0.312^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~652~^0.014^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~653~^0.044^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~654~^0.003^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~662~^0.009^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~663~^0.189^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~665~^0.014^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~670~^0.011^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~672~^0.002^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~673~^0.101^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~674~^1.293^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~675~^0.195^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~687~^0.029^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~689~^0.018^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~693~^0.198^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~695~^0.014^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~851~^0.005^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13969~^~853~^0.018^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~ -~13970~^~312~^0.072^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~315~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~405~^0.102^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~406~^6.257^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~410~^0.610^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~415~^0.579^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13970~^~501~^0.139^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~502~^0.848^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~503~^0.965^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~504~^1.688^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~505~^1.793^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~506~^0.553^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~508~^0.838^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~509~^0.676^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~510~^1.053^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~511~^1.372^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~512~^0.677^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~513~^1.290^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~514~^1.933^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~515~^3.185^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~516~^1.292^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~517~^1.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~518~^0.836^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13970~^~521~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13970~^~606~^2.978^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13970~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~610~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~611~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~612~^0.216^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~613~^1.878^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~614~^0.858^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~617~^2.621^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~618~^0.169^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~619~^0.081^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~626~^0.297^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~628~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13970~^~645~^2.924^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13970~^~646~^0.277^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~312~^0.074^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~315~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~405~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~406~^5.671^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~410~^0.601^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~415~^0.586^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~ -~13971~^~501~^0.139^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~502~^0.848^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~503~^0.965^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~504~^1.688^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~505~^1.793^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~506~^0.553^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~507~^0.274^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~508~^0.838^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~509~^0.676^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~510~^1.053^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~511~^1.372^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~512~^0.677^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~513~^1.290^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~514~^1.933^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~515~^3.186^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~516~^1.292^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~517~^1.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~518~^0.836^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~ -~13971~^~521~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13971~^~606~^2.514^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~612~^0.182^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~613~^1.585^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~614~^0.724^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~617~^2.212^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~618~^0.143^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~619~^0.068^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~626~^0.251^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~628~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~13971~^~645~^2.469^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13971~^~646~^0.234^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13972~^~312~^0.065^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~315~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~404~^0.065^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~405~^0.160^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~406~^4.593^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~410~^0.655^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~415~^0.403^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~501~^0.236^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~502~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~503~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~504~^1.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~505~^1.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~506~^0.601^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~507~^0.219^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~508~^0.803^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~509~^0.731^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~510~^0.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~511~^1.386^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~512~^0.680^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~513~^1.191^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~514~^1.898^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~515~^3.356^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~516~^0.918^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~517~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~518~^0.810^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~521~^0.104^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~605~^0.264^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13972~^~606~^2.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13972~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~612~^0.146^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~613~^1.381^6^0.227^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~614~^0.938^6^0.150^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~615~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~617~^2.841^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13972~^~618~^0.262^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13972~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13972~^~620~^0.037^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~625~^0.028^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~626~^0.180^6^0.030^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~628~^0.010^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13972~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~645~^3.110^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13972~^~646~^0.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13972~^~653~^0.072^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~654~^0.009^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~663~^0.264^6^0.052^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~670~^0.020^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13972~^~674~^2.577^6^0.459^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~675~^0.242^6^0.049^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~687~^0.052^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~693~^0.264^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13972~^~851~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13972~^~859~^0.189^6^0.038^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~312~^0.063^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~315~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~404~^0.060^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~405~^0.157^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~406~^4.593^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~410~^0.590^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~415~^0.383^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~501~^0.237^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~502~^0.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~503~^0.905^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~504~^1.711^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~505~^1.859^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~506~^0.603^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~507~^0.220^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~508~^0.806^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~509~^0.733^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~510~^0.956^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~511~^1.390^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~512~^0.682^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~513~^1.195^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~514~^1.903^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~515~^3.366^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~516~^0.920^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~517~^0.851^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~518~^0.812^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~521~^0.104^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~605~^0.233^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13973~^~606~^2.354^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13973~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~612~^0.134^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~613~^1.285^4^0.282^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~614~^0.857^4^0.187^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~615~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~617~^2.679^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~13973~^~618~^0.253^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~13973~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~13973~^~620~^0.035^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~625~^0.027^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~626~^0.172^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~628~^0.011^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13973~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~645~^2.938^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13973~^~646~^0.299^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13973~^~653~^0.065^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~654~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~663~^0.233^4^0.064^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~670~^0.019^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13973~^~674~^2.446^4^0.570^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~675~^0.234^4^0.061^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~687~^0.048^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~693~^0.233^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~13973~^~851~^0.010^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13973~^~859~^0.154^4^0.047^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~13974~^~312~^0.071^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~315~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~405~^0.170^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~406~^4.830^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~410~^0.720^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~415~^0.435^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~501~^0.235^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~502~^0.929^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~503~^0.899^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~504~^1.699^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~505~^1.846^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~506~^0.599^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~507~^0.218^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~508~^0.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~509~^0.728^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~510~^0.949^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~511~^1.380^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~512~^0.677^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~513~^1.186^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~514~^1.889^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~515~^3.342^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~516~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~517~^0.845^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~518~^0.806^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~521~^0.104^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~605~^0.340^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13974~^~606~^1.610^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13974~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~612~^0.093^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~613~^0.863^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~614~^0.601^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~617~^3.359^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13974~^~618~^0.312^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13974~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13974~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~625~^0.030^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~626~^0.209^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~628~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13974~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~645~^3.670^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13974~^~646~^0.370^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13974~^~653~^0.047^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~663~^0.340^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~670~^0.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13974~^~674~^3.019^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~675~^0.287^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~687~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~693~^0.340^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13974~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13974~^~859~^0.214^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13975~^~312~^0.069^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~315~^0.002^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~405~^0.154^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~406~^6.115^4^0.197^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~410~^0.647^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~415~^0.586^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~501~^0.227^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~502~^0.887^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~503~^0.857^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~504~^1.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~505~^1.762^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~506~^0.572^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~507~^0.212^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~508~^0.767^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~509~^0.695^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~510~^0.911^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~511~^1.327^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~512~^0.653^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~513~^1.149^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~514~^1.807^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~515~^3.187^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~516~^0.919^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~517~^0.828^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~518~^0.774^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~521~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13975~^~605~^0.503^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~606~^3.704^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~612~^0.267^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~613~^2.100^4^0.036^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~614~^1.225^4^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~615~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~617~^4.231^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13975~^~618~^0.342^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13975~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13975~^~620~^0.043^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~625~^0.071^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~626~^0.370^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13975~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~628~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~629~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13975~^~631~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~645~^4.772^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~646~^0.398^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13975~^~653~^0.102^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~654~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~663~^0.503^4^0.026^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~670~^0.040^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13975~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~673~^0.370^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~674~^3.728^4^0.087^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~675~^0.302^4^0.023^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~687~^0.088^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~693~^0.503^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13975~^~851~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13975~^~859~^0.179^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13977~^~312~^0.095^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~404~^0.092^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~405~^0.194^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~406~^3.820^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~415~^0.327^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~ -~13977~^~501~^0.288^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~502~^1.232^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~503~^1.377^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~504~^2.357^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~505~^2.502^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~506~^0.756^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~508~^1.156^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~509~^0.977^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~510~^1.442^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~511~^1.796^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~512~^0.859^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~513~^1.611^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~514~^2.658^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~515~^4.274^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~516~^1.267^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~517~^1.127^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~518~^1.070^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13977~^~521~^0.123^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13977~^~606~^3.850^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13977~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13977~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13977~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13977~^~611~^0.010^4^0.000^~1~^~A~^^^^^^^^^^~05/01/2001~ -~13977~^~612~^0.250^4^0.050^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~613~^2.280^4^0.265^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~614~^1.290^4^0.135^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~615~^0.020^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~617~^4.830^4^0.725^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~618~^0.300^4^0.035^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~619~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~620~^0.030^4^0.005^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~625~^0.090^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~626~^0.300^4^0.055^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13977~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13977~^~645~^5.220^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13977~^~646~^0.360^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13979~^~312~^0.089^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~404~^0.119^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~405~^0.195^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~406~^4.331^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~415~^0.495^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~ -~13979~^~501~^0.261^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~502~^1.118^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~503~^1.249^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~504~^2.138^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~505~^2.269^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~506~^0.686^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~507~^0.260^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~508~^1.048^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~509~^0.886^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~510~^1.308^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~511~^1.629^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~512~^0.779^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~513~^1.462^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~514~^2.410^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~515~^3.876^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~516~^1.150^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~518~^0.970^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~13979~^~521~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~13979~^~606~^5.970^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13979~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~611~^0.010^4^0.000^~1~^~A~^^^^^^^^^^~05/01/2001~ -~13979~^~612~^0.270^4^0.045^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~613~^3.130^4^0.460^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~614~^2.530^4^0.320^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~615~^0.030^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~617~^7.020^4^0.825^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~618~^0.490^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~619~^0.060^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~620~^0.050^4^0.010^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~625~^0.090^4^0.020^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~626~^0.270^4^0.045^~1~^~A~^^^^^^^^^^~04/01/2001~ -~13979~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~13979~^~645~^7.380^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13979~^~646~^0.600^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~13980~^~312~^0.113^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~405~^0.257^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~406~^3.467^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~410~^0.800^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~415~^0.291^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~501~^0.331^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~502~^1.306^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~503~^1.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~504~^2.387^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~505~^2.595^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~506~^0.841^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~507~^0.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~508~^1.124^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~509~^1.023^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~510~^1.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~511~^1.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~512~^0.951^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~513~^1.667^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~514~^2.655^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~515~^4.697^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~516~^1.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~517~^1.187^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~518~^1.133^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~521~^0.146^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~605~^0.962^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13980~^~606~^4.220^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13980~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~612~^0.263^4^0.064^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~613~^2.311^4^0.506^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~614~^1.491^4^0.327^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~615~^0.008^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~617~^8.812^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13980~^~618~^0.720^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13980~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13980~^~620~^0.060^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~625~^0.112^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~626~^0.615^4^0.066^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~628~^0.049^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13980~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~645~^9.780^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13980~^~646~^0.810^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13980~^~653~^0.139^4^0.027^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~654~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~663~^0.962^4^0.103^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~670~^0.055^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~672~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13980~^~674~^7.849^4^0.984^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~675~^0.665^4^0.083^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~687~^0.192^4^0.019^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~693~^0.962^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13980~^~851~^0.030^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13980~^~859~^0.542^4^0.068^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~312~^0.111^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~315~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~405~^0.280^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~406~^3.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~410~^0.870^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~415~^0.330^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~501~^0.330^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~502~^1.304^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~503~^1.261^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~504~^2.383^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~505~^2.590^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~506~^0.840^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~507~^0.306^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~508~^1.122^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~509~^1.021^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~510~^1.332^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~511~^1.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~512~^0.950^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~513~^1.664^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~514~^2.651^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~515~^4.689^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~516~^1.282^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~517~^1.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~518~^1.131^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~521~^0.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~605~^0.798^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13981~^~606~^3.540^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13981~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~612~^0.222^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~613~^1.950^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~614~^1.248^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~617~^6.966^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13981~^~618~^0.672^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13981~^~619~^0.031^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13981~^~620~^0.057^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~625~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~626~^0.491^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~628~^0.027^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13981~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13981~^~645~^7.700^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13981~^~646~^0.760^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13981~^~653~^0.108^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~663~^0.798^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~670~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~672~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~674~^6.167^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~675~^0.618^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~687~^0.140^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~693~^0.798^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13981~^~851~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13981~^~859~^0.502^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~312~^0.114^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~315~^0.016^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~404~^0.100^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~405~^0.263^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~406~^3.523^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~410~^0.835^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~415~^0.308^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~501~^0.331^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~502~^1.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~503~^1.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~504~^2.386^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~505~^2.593^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~506~^0.841^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~507~^0.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~508~^1.124^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~509~^1.022^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~510~^1.333^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~511~^1.938^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~512~^0.951^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~513~^1.666^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~514~^2.654^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~515~^4.694^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~516~^1.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~517~^1.186^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~518~^1.132^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~521~^0.146^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~605~^0.891^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13982~^~606~^3.890^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13982~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~612~^0.243^6^0.052^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~613~^2.135^6^0.407^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~614~^1.373^6^0.263^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~615~^0.007^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~617~^8.021^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13982~^~618~^0.692^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13982~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~13982~^~620~^0.058^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~625~^0.097^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~626~^0.562^6^0.053^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~628~^0.040^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~13982~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~645~^8.890^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13982~^~646~^0.780^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13982~^~653~^0.125^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~654~^0.007^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~663~^0.891^6^0.083^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~670~^0.054^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~672~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13982~^~674~^7.130^6^0.792^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~675~^0.638^6^0.066^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~687~^0.171^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~693~^0.891^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~13982~^~851~^0.030^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~13982~^~859~^0.526^6^0.055^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~13983~^~312~^0.063^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~405~^0.154^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~406~^5.875^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~410~^0.730^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~415~^0.597^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~501~^0.232^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~502~^0.905^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~503~^0.875^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~504~^1.655^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~505~^1.799^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~506~^0.584^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~507~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~508~^0.783^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~509~^0.709^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~510~^0.930^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~511~^1.354^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~512~^0.667^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~513~^1.173^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~514~^1.845^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~515~^3.254^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~516~^0.938^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~517~^0.845^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~518~^0.790^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~521~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~13983~^~605~^0.497^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~606~^3.424^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~612~^0.245^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~613~^1.899^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~614~^1.173^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~617~^3.855^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13983~^~618~^0.331^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~13983~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13983~^~620~^0.038^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~625~^0.057^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~626~^0.304^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~13983~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~628~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~13983~^~631~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~645~^4.307^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~646~^0.384^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~13983~^~653~^0.098^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~663~^0.497^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~670~^0.039^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~13983~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~673~^0.304^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~674~^3.358^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~675~^0.292^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~687~^0.079^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~693~^0.497^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13983~^~851~^0.010^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13983~^~859~^0.174^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~13985~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~ -~13985~^~404~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~405~^0.136^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~406~^7.655^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~410~^0.526^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~415~^0.574^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~ -~13985~^~501~^0.176^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~502~^1.069^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~503~^1.217^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~504~^2.128^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~505~^2.261^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~506~^0.697^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~507~^0.345^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~508~^1.057^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~509~^0.852^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~510~^1.327^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~511~^1.730^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~512~^0.854^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~513~^1.626^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~514~^2.437^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~515~^4.016^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~516~^1.629^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~517~^1.275^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~518~^1.054^0^^~1~^~A~^^^^^^^^^^~09/01/2003~ -~13985~^~521~^0.281^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~13985~^~606~^3.108^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13985~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~611~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~612~^0.173^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~613~^1.925^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~614~^0.915^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~617~^3.954^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~618~^0.207^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~619~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~626~^0.250^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2003~ -~13985~^~645~^4.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~13985~^~646~^0.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~14003~^~312~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~1, 2, 3~^~04/01/2004~ -~14003~^~315~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~04/01/2004~ -~14003~^~404~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2004~ -~14003~^~405~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.027^2^0.020^0.029^~2, 3~^~04/01/2004~ -~14003~^~406~^0.513^3^0.021^~1~^~A~^^^1^0.479^0.552^2^0.422^0.604^~2, 3~^~04/01/2004~ -~14003~^~410~^0.041^3^0.011^~1~^~A~^^^1^0.030^0.063^2^-0.007^0.089^~1, 2, 3~^~04/01/2004~ -~14003~^~415~^0.046^3^0.004^~1~^~A~^^^1^0.040^0.053^2^0.030^0.062^~2, 3~^~04/01/2004~ -~14003~^~501~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~502~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~503~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~504~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~505~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~506~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~508~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~509~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~510~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~511~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~512~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~513~^0.012^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~514~^0.016^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~515~^0.047^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~516~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~517~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~518~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14003~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14003~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14003~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14004~^~312~^0.003^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~315~^0.009^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14004~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14005~^~312~^0.001^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~315~^0.007^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14005~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14006~^~312~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.002^0.010^~1, 2, 3~^~04/01/2004~ -~14006~^~315~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~04/01/2004~ -~14006~^~404~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~406~^0.391^4^0.023^~1~^~A~^^^1^0.328^0.435^3^0.317^0.465^~2, 3~^~04/01/2004~ -~14006~^~410~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~04/01/2004~ -~14006~^~415~^0.034^4^0.002^~1~^~A~^^^1^0.030^0.039^3^0.028^0.040^~2, 3~^~04/01/2004~ -~14006~^~501~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~502~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~503~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~504~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~505~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~506~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~508~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~509~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~510~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~511~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~512~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~513~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~514~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~515~^0.039^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~516~^0.011^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~517~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~518~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14006~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14006~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14006~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14007~^~312~^0.002^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14007~^~315~^0.006^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14007~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14009~^~312~^0.016^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~315~^0.005^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~404~^0.001^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~405~^0.001^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~406~^0.014^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~410~^0.007^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~415~^0.003^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14009~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14009~^~606~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14010~^~312~^0.022^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~315~^0.015^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~404~^0.013^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~405~^0.005^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~406~^0.051^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~410~^0.017^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~415~^0.008^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14010~^~606~^0.006^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~613~^0.006^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~614~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~617~^0.005^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~618~^0.011^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~619~^0.006^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~626~^0.001^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~645~^0.006^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14010~^~646~^0.016^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~14013~^~312~^0.002^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~315~^0.005^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~14013~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14013~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14015~^~312~^0.087^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~315~^0.319^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~404~^0.017^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~405~^0.005^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~406~^0.104^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~410~^0.054^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~415~^0.017^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14015~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14015~^~606~^6.571^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~608~^0.044^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~609~^0.570^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~610~^0.459^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~611~^3.391^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~612~^1.275^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~613~^0.622^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~614~^0.211^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~617~^0.442^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~618~^0.137^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~645~^0.442^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14015~^~646~^0.137^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14016~^~312~^0.017^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~315~^0.033^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~405~^0.177^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~406~^0.075^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~410~^0.009^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~415~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~617~^0.619^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~618~^0.208^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~645~^0.625^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~646~^0.208^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~ -~14016~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14016~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~ -~14017~^~312~^0.079^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~315~^0.528^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~404~^0.029^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~405~^0.017^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~406~^0.118^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~410~^0.061^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~415~^0.045^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14017~^~606~^1.636^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~608~^0.011^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~609~^0.129^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~610~^0.103^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~611~^0.818^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~612~^0.323^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~613~^0.158^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~614~^0.096^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~617~^0.082^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~618~^0.027^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~619~^0.005^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~645~^0.082^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14017~^~646~^0.033^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~14019~^~312~^0.042^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~315~^0.014^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~404~^0.038^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~405~^0.016^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~406~^0.190^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~410~^0.088^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~415~^0.050^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14019~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14021~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~315~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14021~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14021~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14021~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14021~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14021~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14022~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~405~^0.708^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~406~^8.333^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14022~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14022~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14022~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14024~^~312~^0.130^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~315~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~404~^0.005^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~410~^0.060^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14024~^~606~^0.019^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~613~^0.012^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~617~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~618~^0.025^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~619~^0.012^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~645~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14024~^~646~^0.037^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14025~^~312~^0.034^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~315~^0.007^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14025~^~404~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~405~^0.002^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~406~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~410~^0.010^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14025~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14025~^~606~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~613~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~617~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~618~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~619~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~645~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14025~^~646~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14026~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14026~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14026~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14026~^~606~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~607~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~608~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~609~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~610~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~611~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~612~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~613~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~614~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~617~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~618~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~619~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~620~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~621~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~626~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~627~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~628~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~629~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~630~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~631~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~645~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14026~^~646~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~ -~14027~^~312~^0.009^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~315~^0.006^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~404~^0.011^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~405~^0.006^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~406~^0.020^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~410~^0.008^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14027~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14028~^~312~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~315~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~404~^0.013^2^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~405~^0.010^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~410~^0.013^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14028~^~606~^0.008^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~613~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~617~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~618~^0.013^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~619~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14028~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~645~^0.002^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14028~^~646~^0.020^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14029~^~312~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~315~^0.007^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~404~^0.010^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~405~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~406~^0.005^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~410~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~415~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14029~^~606~^0.005^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~607~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~608~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~609~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~610~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~611~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~612~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~613~^0.005^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~614~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~617~^0.001^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~618~^0.008^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~619~^0.003^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~626~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~645~^0.001^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14029~^~646~^0.011^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14030~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14030~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14030~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14030~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14030~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~ -~14031~^~312~^0.000^0^^~4~^~BFZN~^~14440~^^^^^^^^^~02/01/2013~ -~14031~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~406~^0.833^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~410~^0.417^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~415~^0.083^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14031~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14031~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14031~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14033~^~312~^1.000^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~404~^0.714^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~405~^0.857^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~406~^10.000^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~415~^1.000^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~ -~14033~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14033~^~606~^2.564^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~14033~^~607~^0.055^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~608~^0.019^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~609~^0.012^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~610~^0.024^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~611~^0.014^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~612~^0.122^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~613~^1.819^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~614~^0.499^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14033~^~617~^0.263^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14033~^~618~^0.821^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~619~^0.105^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~626~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14033~^~645~^0.281^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14033~^~646~^0.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~14034~^~312~^0.080^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~315~^0.040^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~406~^0.003^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~410~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14034~^~606~^0.014^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~613~^0.010^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~614~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~617~^0.015^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~618~^0.058^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~619~^0.109^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14034~^~645~^0.015^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14034~^~646~^0.167^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14035~^~312~^1.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~315~^0.849^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14035~^~404~^0.100^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~405~^0.057^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~406~^0.817^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~410~^0.034^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14035~^~415~^0.057^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14035~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~14035~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~617~^0.631^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~618~^1.729^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~619~^0.227^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~626~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14035~^~645~^0.644^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14035~^~646~^1.956^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~14036~^~312~^0.143^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~404~^0.133^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~405~^0.139^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~406~^1.416^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~410~^0.604^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14036~^~415~^0.224^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14036~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14036~^~606~^0.362^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14036~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~613~^0.145^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~614~^0.217^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~617~^1.394^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~618~^0.350^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~619~^0.013^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~628~^0.037^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~630~^0.019^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14036~^~645~^1.449^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14036~^~646~^0.362^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14037~^~312~^0.021^136^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~315~^0.018^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~404~^0.006^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~405~^0.004^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~406~^0.013^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~410~^0.000^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~415~^0.001^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14037~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14037~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14038~^~312~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~315~^0.029^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~404~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~405~^0.354^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~406~^4.167^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~410~^2.083^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~415~^0.417^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~14038~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~14038~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14038~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~14041~^~312~^0.192^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~315~^0.269^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~404~^0.144^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~405~^0.163^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~406~^1.537^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14041~^~410~^0.961^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~415~^0.269^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14041~^~606~^0.420^0^^~8~^~LC~^^^^^^^^^^~10/01/2013~ -~14041~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~612~^0.004^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~613~^0.139^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~614~^0.158^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~617~^2.207^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~618~^0.101^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~619~^0.006^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~624~^0.036^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~628~^0.026^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14041~^~645~^2.551^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~646~^0.122^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14041~^~652~^0.029^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14044~^~312~^0.014^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~404~^0.170^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~405~^0.190^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~406~^2.390^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~410~^1.195^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~415~^0.208^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14044~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14044~^~606~^0.508^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~ -~14044~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14044~^~608~^0.001^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~609~^0.002^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~610~^0.004^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~611~^0.003^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~612~^0.015^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~613~^0.300^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~614~^0.140^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~615~^0.027^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14044~^~617~^2.046^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~618~^0.463^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~619~^0.222^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~620~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~621~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14044~^~626~^0.011^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~627~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~628~^0.043^0^^~4~^~BFFN~^~14045~^^^^^^^^^~11/01/2016~ -~14044~^~629~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~630~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~631~^0.000^0^^~4~^~BFFN~^~14045~^^^^^^^^^~05/01/2013~ -~14044~^~645~^2.100^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~ -~14044~^~646~^0.767^0^^~4~^~FLC~^^^^^^^^^^~11/01/2016~ -~14044~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14044~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~312~^0.012^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~404~^0.170^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~405~^0.190^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~406~^2.260^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~410~^1.378^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~415~^0.225^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14045~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14045~^~606~^0.540^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~14045~^~607~^0.008^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~610~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~612~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~613~^0.283^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~614~^0.132^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~615~^0.036^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~617~^1.014^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~618~^0.310^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~619~^0.149^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~624~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~628~^0.021^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~14045~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~645~^0.970^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~14045~^~646~^0.320^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~14045~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14045~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~312~^0.769^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~404~^1.442^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~405~^0.654^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~406~^38.462^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~410~^15.385^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~415~^2.308^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14047~^~606~^1.450^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~607~^0.012^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~608~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~609~^0.004^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~610~^0.008^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~611~^0.008^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~612~^0.047^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~613~^0.732^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~614~^0.779^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~617~^9.469^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~618~^1.754^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~619~^0.100^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~624~^0.172^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~626~^0.021^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~628~^0.110^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14047~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14047~^~645~^10.510^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~646~^1.190^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14047~^~652~^0.137^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~14048~^~312~^0.044^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~404~^0.080^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~405~^0.018^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~406~^0.204^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~415~^0.160^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~ -~14048~^~606~^0.007^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~607~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~608~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~609~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~610~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~611~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~612~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~613~^0.006^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~614~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~617~^0.009^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~618~^0.009^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~619~^0.003^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~620~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~621~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~626~^0.001^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~627~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~628~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~629~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~630~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~631~^0.000^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~645~^0.011^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14048~^~646~^0.012^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~ -~14050~^~312~^0.050^19^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~315~^0.018^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14050~^~404~^0.008^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~410~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14050~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14050~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~312~^0.010^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~315~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~404~^0.005^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~405~^0.007^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~406~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~410~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~415~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14051~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14051~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~312~^0.014^117^0.008^~6~^~JA~^^^1^0.005^0.022^1^-0.093^0.120^~4~^~11/01/2002~ -~14052~^~315~^0.008^27^0.008^~6~^~JA~^^^1^0.000^0.015^1^-0.088^0.103^~4~^~11/01/2002~ -~14052~^~404~^0.008^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~405~^0.001^9^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~406~^0.050^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~410~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~415~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14052~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14052~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14054~^~312~^0.067^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~315~^0.083^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~404~^0.022^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~405~^0.177^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~406~^0.103^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~410~^0.035^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~415~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~501~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~502~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~503~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~504~^0.037^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~505~^0.014^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~506~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~507~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~508~^0.028^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~509~^0.011^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~510~^0.020^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~511~^0.061^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~512~^0.014^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~513~^0.026^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~514~^0.073^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~515~^0.170^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~516~^0.037^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~517~^0.026^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~518~^0.024^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~617~^0.619^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~618~^0.208^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~645~^0.625^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~646~^0.208^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14054~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14054~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14055~^~312~^0.769^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~315~^269.100^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~404~^1.499^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~405~^0.654^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14055~^~406~^38.442^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~410~^15.377^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~415~^2.307^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14055~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~14055~^~606~^1.333^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~14055~^~607~^0.010^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~608~^0.003^0^^~4~^~BFZN~^~14047~^^^^^^^^^~06/01/2015~ -~14055~^~609~^0.003^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~610~^0.007^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~611~^0.007^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~612~^0.040^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~613~^0.625^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~614~^0.665^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~617~^8.986^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~618~^1.012^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~619~^0.058^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~620~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~621~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~626~^0.020^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~627~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~628~^0.104^0^^~4~^~BFZN~^~14047~^^^^^^^^^~11/01/2016~ -~14055~^~629~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~630~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~631~^0.000^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~ -~14055~^~645~^8.930^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~14055~^~646~^1.049^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~ -~14056~^~312~^0.076^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~315~^1.660^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~406~^9.060^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~410~^3.333^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14056~^~415~^1.100^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14056~^~606~^0.000^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~ -~14056~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14056~^~645~^0.000^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~ -~14056~^~646~^0.000^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~ -~14057~^~312~^0.045^74^0.015^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~315~^0.119^7^0.063^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~404~^0.018^33^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~405~^0.018^33^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~406~^0.213^33^0.015^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~410~^0.032^3^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14057~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14057~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14058~^~312~^1.163^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~315~^1.160^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~ -~14058~^~404~^0.872^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~405~^0.988^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~406~^11.628^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~410~^5.814^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~415~^1.163^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~606~^0.581^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14058~^~607~^0.023^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~608~^0.008^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~609~^0.005^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~610~^0.010^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~611~^0.006^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~612~^0.046^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~613~^0.150^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~614~^0.060^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~617~^0.114^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~618~^0.018^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~619~^0.003^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~620~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~621~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~626~^0.026^0^^~4~^~BFZN~^~01113~^^^^^^^^^~07/01/2015~ -~14058~^~627~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~628~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~629~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~630~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~631~^0.000^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~645~^0.149^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14058~^~646~^0.021^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~ -~14060~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14060~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14060~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~415~^0.833^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14061~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14061~^~645~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14061~^~646~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14062~^~312~^0.211^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~404~^0.158^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~405~^0.179^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~406~^2.110^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~410~^1.055^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~415~^0.211^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~606~^0.422^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~608~^0.001^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~609~^0.001^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~610~^0.002^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~611~^0.002^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~612~^0.005^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~613~^0.255^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~614~^0.081^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~615~^0.010^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~617~^0.784^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~618~^0.485^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14062~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14062~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~624~^0.006^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~626~^0.004^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~627~^0.001^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~628~^0.010^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14062~^~631~^0.001^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~645~^0.844^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~646~^1.266^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~652~^0.001^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~653~^0.002^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~654~^0.003^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~672~^0.003^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~675~^1.232^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14062~^~851~^0.127^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~14063~^~312~^1.818^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~404~^1.500^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~405~^0.350^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~406~^25.600^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~415~^1.818^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14063~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~14063~^~607~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~608~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~609~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~610~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~611~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~612~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~613~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~614~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~07/01/2017~ -~14063~^~617~^2.045^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~618~^1.624^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~619~^0.203^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~620~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~621~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~626~^0.055^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~627~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~628~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~629~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~630~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~631~^0.000^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~645~^2.119^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14063~^~646~^1.831^0^^~4~^~BFFN~^~43260~^^^^^^^^^~05/01/2013~ -~14064~^~312~^0.018^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~ -~14064~^~404~^0.063^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~405~^0.028^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~406~^0.333^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~415~^0.050^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14064~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14064~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14065~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14065~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14066~^~312~^0.049^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~404~^0.609^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~405~^2.017^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~406~^1.136^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~410~^5.516^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~415~^0.607^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~606~^0.781^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14066~^~607~^0.036^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~608~^0.012^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~609~^0.008^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~610~^0.016^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~611~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~612~^0.073^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~613~^0.432^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~614~^0.142^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~617~^0.135^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~618~^0.264^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~619~^0.034^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~626~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~645~^0.158^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14066~^~646~^0.299^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~14067~^~312~^2.620^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~404~^0.288^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~405~^0.164^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~406~^2.357^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~415~^0.164^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~501~^0.722^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~502~^2.169^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~503~^2.762^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~504~^4.602^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~505~^3.551^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~506~^0.722^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~507~^0.722^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~508~^2.958^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~509~^2.169^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~510~^2.827^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~511~^4.273^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~512~^1.511^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~513~^2.433^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~514~^6.576^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~515~^10.849^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~516~^2.367^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~517~^2.893^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~518~^2.958^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~606~^1.111^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14067~^~607~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~608~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~609~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~610~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~611~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~612~^0.013^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~613~^0.508^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~614~^0.170^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~617~^1.044^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~618~^2.381^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~619~^0.320^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~620~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~621~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~626~^0.013^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~627~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~628~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~629~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~630~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~631~^0.000^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~645~^1.057^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14067~^~646~^2.701^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~ -~14073~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14073~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14073~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14074~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14074~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14075~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14075~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~312~^0.005^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~404~^0.025^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~405~^0.340^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~406~^2.000^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~415~^0.200^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~ -~14079~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14079~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14079~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~312~^1.818^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~404~^1.364^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~405~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~406~^18.182^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~415~^1.818^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~14080~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14080~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14082~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~ -~14082~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14082~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14083~^~312~^0.089^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~315~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~14083~^~404~^0.093^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~405~^0.134^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~406~^0.865^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~410~^0.357^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2014~ -~14083~^~415~^0.116^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~605~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~606~^0.112^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~607~^0.009^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~608~^0.001^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~609~^0.002^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~610~^0.004^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~612~^0.016^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~613~^0.051^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~614~^0.018^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~617~^0.036^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~618~^0.005^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~619~^0.002^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~626~^0.007^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~645~^0.045^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14083~^~646~^0.007^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~ -~14084~^~312~^0.007^2^^~1~^~A~^^^1^0.004^0.011^1^^^~1~^~02/01/2005~ -~14084~^~315~^0.124^2^^~1~^~A~^^^1^0.117^0.132^1^^^^~02/01/2005~ -~14084~^~404~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^~1~^~02/01/2005~ -~14084~^~405~^0.023^2^^~1~^~A~^^^1^0.015^0.031^1^^^~1~^~02/01/2005~ -~14084~^~406~^0.166^2^^~1~^~A~^^^1^0.108^0.224^1^^^^~02/01/2005~ -~14084~^~410~^0.037^2^^~1~^~A~^^^1^0.030^0.045^1^^^~1~^~02/01/2005~ -~14084~^~415~^0.054^2^^~1~^~A~^^^1^0.050^0.057^1^^^^~02/01/2005~ -~14084~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14084~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14084~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14086~^~406~^0.816^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~415~^0.082^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14086~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2017~ -~14086~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~406~^0.816^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~415~^0.082^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14087~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2017~ -~14087~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~406~^0.813^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~415~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14088~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~ -~14088~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~14090~^~312~^0.008^9^0.001^~1~^~A~^^^1^0.005^0.013^8^0.006^0.011^~1, 2, 3~^~07/01/2014~ -~14090~^~315~^0.221^9^0.048^~1~^~A~^^^1^0.012^0.409^8^0.111^0.332^~1, 2, 3~^~07/01/2014~ -~14090~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~14090~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~ -~14090~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14090~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14090~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~ -~14091~^~312~^0.020^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~315~^0.040^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~404~^0.000^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~405~^0.010^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~406~^0.070^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~410~^0.010^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~415~^0.000^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~605~^0.000^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~606~^0.080^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~613~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~614~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~617~^0.563^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~618~^0.252^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~626~^0.005^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~645~^0.590^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~646~^0.240^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~14091~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~673~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~674~^0.563^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~675~^0.252^1^^~1~^~A~^^^^^^^^^^~02/01/2016~ -~14091~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~687~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~14091~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~14091~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~14091~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14091~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2016~ -~14092~^~312~^0.029^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~404~^0.060^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~405~^0.047^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~406~^0.075^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~415~^0.015^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~14092~^~607~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~608~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~609~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~610~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~611~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~612~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~613~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~614~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~617~^0.722^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~618~^0.243^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~619~^0.000^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~620~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~621~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~626~^0.006^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~627~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~628~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~629~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~630~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~631~^0.000^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~ -~14092~^~645~^0.729^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~646~^0.243^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14092~^~672~^0.000^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~ -~14093~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~406~^3.384^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~410~^1.692^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~415~^0.338^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14093~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14093~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14095~^~312~^0.016^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~404~^0.002^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~405~^0.003^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~406~^0.009^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~415~^0.004^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~606~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~607~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~608~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~609~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~610~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~611~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~612~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~613~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~614~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~617~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~618~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~619~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~620~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~621~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~626~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~627~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~628~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~629~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~630~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~631~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~645~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14095~^~646~^0.000^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~ -~14096~^~312~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~315~^0.132^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~404~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~405~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~406~^0.224^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14096~^~415~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14096~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14096~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14096~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14097~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14098~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14099~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14100~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14101~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14102~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14103~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14105~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14106~^~312~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~315~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~404~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14106~^~406~^0.108^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~410~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~14106~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14106~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14106~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14107~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14108~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14109~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14113~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14116~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14117~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14119~^~312~^0.009^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~315~^0.012^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~404~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~405~^0.004^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~406~^0.018^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~410~^0.013^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~415~^0.010^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14119~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14119~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14119~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14119~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14120~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14121~^~312~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2001~ -~14121~^~315~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2001~ -~14121~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14121~^~501~^0.000^0^^~1~^^^^^^^^^^^~04/01/2001~ -~14121~^~502~^0.000^0^^~1~^^^^^^^^^^^~04/01/2001~ -~14121~^~503~^0.000^0^^~1~^^^^^^^^^^^~04/01/2001~ -~14121~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14121~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2001~ -~14121~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14121~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14124~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14125~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14126~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14130~^~312~^0.008^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~315~^0.013^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14130~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14130~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14130~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14132~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14134~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14135~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14136~^~312~^0.018^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~315~^0.013^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14136~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~410~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14136~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14136~^~606~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14136~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~613~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~617~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14136~^~618~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14136~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~14136~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/1987~ -~14136~^~646~^0.000^0^^~4~^^^^^^^^^^^~03/01/1987~ -~14137~^~312~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~315~^0.131^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14137~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14138~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14140~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14142~^~312~^0.022^9^0.010^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~315~^0.013^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14142~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14142~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14142~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14143~^~312~^0.025^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~315~^0.017^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14143~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14143~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14144~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~406~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14144~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14144~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14145~^~312~^0.001^4^^~1~^~A~^^^4^0.000^0.003^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~315~^0.002^4^^~1~^~A~^^^4^0.000^0.008^^^^~1, 2, 3~^~04/01/2005~ -~14145~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~406~^0.015^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~410~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~415~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14145~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14145~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14146~^~312~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.012^1^-0.005^0.010^~1, 2, 3~^~04/01/2005~ -~14146~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~14146~^~404~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~405~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14146~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14146~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14147~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~14147~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~14147~^~404~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~405~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~406~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~410~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~415~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14147~^~606~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~607~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~608~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~609~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~610~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~611~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~612~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~613~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~614~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~617~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~618~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~619~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~620~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~621~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~626~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~627~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~628~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~629~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~630~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~631~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~645~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14147~^~646~^0.000^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~ -~14148~^~312~^0.007^12^0.001^~1~^~A~^^^1^0.006^0.007^10^0.004^0.009^~2, 3~^~01/01/2015~ -~14148~^~315~^0.003^12^0.000^~1~^~A~^^^1^0.003^0.003^5^0.002^0.003^~2, 3~^~01/01/2015~ -~14148~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14148~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14148~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14149~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~14149~^~315~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~14149~^~404~^0.000^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~405~^0.000^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~406~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~410~^0.000^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~415~^0.000^1^^~1~^^^^^^^^^^^~04/01/2005~ -~14149~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14149~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~613~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~614~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~617~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~618~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14149~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14150~^~312~^0.015^5^0.008^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~315~^0.013^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14150~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14150~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14150~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14151~^~312~^0.025^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~315~^0.017^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14151~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14151~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~ -~14152~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14153~^~312~^0.006^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~315~^0.035^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14153~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14153~^~606~^0.070^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~617~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~618~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14153~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14153~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~ -~14154~^~312~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~315~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~02/01/2015~ -~14154~^~404~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~02/01/2015~ -~14154~^~405~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.117^~2, 3~^~02/01/2015~ -~14154~^~406~^9.827^3^0.776^~1~^~A~^^^1^8.670^11.300^2^6.490^13.164^~2, 3~^~02/01/2015~ -~14154~^~410~^1.540^2^^~1~^~A~^^^1^1.540^1.540^^^^^~02/01/2015~ -~14154~^~415~^2.167^3^0.033^~1~^~A~^^^1^2.100^2.200^2^2.023^2.310^~2, 3~^~02/01/2015~ -~14154~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14154~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14154~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~14154~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14154~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14155~^~312~^0.006^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~315~^0.001^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14155~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14155~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~14155~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14155~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~14155~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~ -~14156~^~312~^0.005^2^^~13~^~AI~^^^1^0.005^0.005^^^^^~02/01/2005~ -~14156~^~315~^0.003^2^^~13~^~AI~^^^1^0.003^0.003^^^^^~02/01/2005~ -~14156~^~404~^0.025^2^^~13~^~AI~^^^1^0.020^0.030^1^^^^~02/01/2005~ -~14156~^~405~^0.575^2^^~13~^~AI~^^^1^0.550^0.600^1^^^^~02/01/2005~ -~14156~^~406~^8.500^2^^~13~^~AI~^^^1^8.400^8.600^1^^^^~02/01/2005~ -~14156~^~410~^1.900^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~415~^1.995^0^^~4~^~O~^^^^^^^^^^~06/01/2013~ -~14156~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14156~^~606~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~645~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~06/01/2013~ -~14156~^~646~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~06/01/2013~ -~14157~^~312~^0.007^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~315~^0.013^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~404~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~405~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14157~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14157~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14157~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14158~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14159~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14160~^~312~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~315~^0.117^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~404~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14160~^~406~^0.108^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~410~^0.045^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14160~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14161~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14161~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~ -~14162~^~312~^0.010^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~404~^0.004^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~405~^0.015^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~406~^0.067^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~415~^0.018^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~ -~14162~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14162~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14163~^~312~^0.211^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~315~^14.768^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~404~^0.158^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~405~^0.179^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~406~^1.688^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~410~^1.055^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~415~^0.295^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~606~^0.422^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~14163~^~607~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~608~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~609~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~610~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~611~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~612~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~613~^0.179^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~614~^0.125^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~617~^1.120^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~618~^0.052^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~619~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~626~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~628~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~645~^1.154^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~646~^0.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14163~^~652~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~14164~^~312~^0.121^6^0.009^~1~^~A~^^^1^0.103^0.157^5^0.099^0.143^~2, 3~^~06/01/2015~ -~14164~^~315~^0.040^6^0.003^~1~^~A~^^^1^0.032^0.049^5^0.033^0.046^~2, 3~^~06/01/2015~ -~14164~^~404~^0.167^3^0.009^~1~^~A~^^^1^0.150^0.180^2^0.129^0.205^~2, 3~^~06/01/2015~ -~14164~^~405~^0.262^4^0.005^~1~^~A~^^^1^0.250^0.270^3^0.247^0.278^~2, 3~^~06/01/2015~ -~14164~^~406~^1.427^4^0.071^~1~^~A~^^^1^1.300^1.630^3^1.201^1.654^~2, 3~^~06/01/2015~ -~14164~^~410~^0.710^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14164~^~415~^0.132^4^0.011^~1~^~A~^^^1^0.110^0.160^3^0.097^0.168^~2, 3~^~06/01/2015~ -~14164~^~606~^0.630^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~607~^0.024^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~608~^0.018^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~609~^0.013^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~610~^0.027^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~611~^0.029^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~612~^0.091^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~613~^0.286^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~614~^0.126^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~617~^0.249^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~618~^0.030^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~619~^0.004^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~620~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~621~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~626~^0.017^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~627~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~628~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~629~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~630~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~631~^0.000^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~645~^0.276^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14164~^~646~^0.035^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~ -~14165~^~312~^0.006^6^0.002^~1~^~A~^^^1^0.005^0.015^5^0.002^0.011^~1, 2, 3~^~02/01/2015~ -~14165~^~315~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~1, 2, 3~^~02/01/2015~ -~14165~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~14165~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14165~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~14165~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~ -~14166~^~312~^0.013^29^0.013^~6~^~JA~^^^1^0.000^0.025^1^-0.146^0.171^~4~^~12/01/2002~ -~14166~^~315~^0.009^25^0.009^~6~^~JA~^^^1^0.000^0.017^1^-0.100^0.117^~4~^~12/01/2002~ -~14166~^~404~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~405~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~406~^0.000^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~410~^0.000^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~415~^0.000^4^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14166~^~606~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~613~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~614~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~617~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~618~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~619~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~645~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14166~^~646~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14167~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~406~^0.833^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~415~^0.083^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14167~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14167~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14168~^~312~^0.060^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~315~^0.063^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~404~^0.009^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~405~^0.001^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~406~^0.760^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~410~^0.006^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14168~^~415~^0.124^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~606~^0.030^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~613~^0.024^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~614~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~617~^0.059^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~618~^0.066^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~619~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~645~^0.060^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14168~^~646~^0.068^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14169~^~312~^0.025^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~315~^0.006^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~404~^0.042^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~405~^0.174^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~406~^0.138^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~410~^0.346^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~415~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~501~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~502~^0.136^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~503~^0.157^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~504~^0.253^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~505~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~506~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~507~^0.016^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~508~^0.140^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~509~^0.145^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~510~^0.183^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~511~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~512~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~513~^0.098^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~514~^0.226^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~515~^0.618^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~516~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~517~^0.326^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~518~^0.102^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~606~^1.779^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~607~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~608~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~609~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~610~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~611~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~612~^0.283^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~613~^0.791^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~614~^0.348^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~617~^0.777^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~618~^0.118^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~619~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~626~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14169~^~645~^0.777^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14169~^~646~^0.189^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14171~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~606~^2.083^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14171~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~608~^0.013^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~609~^0.165^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~610~^0.131^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~611~^1.042^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~612~^0.411^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~613~^0.199^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~614~^0.122^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~ -~14171~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14171~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14173~^~312~^0.002^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~404~^0.043^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~405~^0.193^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~406~^1.320^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~415~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~ -~14173~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~14173~^~607~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~608~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~609~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~610~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~611~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~612~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~613~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~614~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~617~^0.275^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~618~^0.033^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~619~^0.005^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~620~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~621~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~626~^0.018^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~627~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~628~^0.000^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~ -~14173~^~629~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~630~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~631~^0.000^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~645~^0.293^0^^~4~^~NC~^~01175~^^^^^^^^^~02/01/2015~ -~14173~^~646~^0.038^0^^~4~^~NC~^~01175~^^^^^^^^^~02/01/2015~ -~14174~^~312~^0.016^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~404~^0.002^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~405~^0.003^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~406~^0.009^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~415~^0.004^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~ -~14174~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14174~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14174~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14177~^~312~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~315~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~404~^0.043^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~405~^0.180^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~406~^0.142^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~410~^0.336^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~415~^0.034^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~501~^0.072^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~502~^0.140^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~503~^0.160^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~504~^0.257^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~505~^0.140^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~506~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~507~^0.018^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~508~^0.146^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~509~^0.148^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~510~^0.190^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~511~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~512~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~513~^0.105^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~514~^0.241^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~515~^0.628^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~516~^0.079^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~517~^0.322^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~518~^0.107^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~606~^1.860^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~607~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~608~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~609~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~610~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~611~^0.070^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~612~^0.272^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~613~^0.825^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~614~^0.421^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~617~^0.829^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~618~^0.117^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~619~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~626~^0.001^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~645~^0.829^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~646~^0.186^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14177~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14177~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14179~^~312~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~14179~^~315~^0.012^5^0.000^~1~^~A~^^^1^0.012^0.014^4^0.011^0.013^~2, 3~^~02/01/2015~ -~14179~^~404~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~02/01/2015~ -~14179~^~405~^0.193^3^0.009^~1~^~A~^^^1^0.180^0.210^2^0.155^0.231^~2, 3~^~02/01/2015~ -~14179~^~406~^1.320^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14179~^~410~^0.330^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14179~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14179~^~606~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~607~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~608~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~609~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~610~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~611~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~612~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~613~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~614~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~617~^0.275^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~618~^0.033^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~619~^0.005^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~620~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~621~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~626~^0.018^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~627~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~628~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~629~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~630~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~631~^0.000^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~645~^0.293^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14179~^~646~^0.038^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~ -~14180~^~312~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~02/01/2015~ -~14180~^~315~^0.032^6^0.002^~1~^~A~^^^1^0.024^0.041^5^0.026^0.038^~2, 3~^~02/01/2015~ -~14180~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~02/01/2015~ -~14180~^~405~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~14180~^~406~^0.800^3^0.122^~1~^~A~^^^1^0.600^1.020^2^0.277^1.323^~2, 3~^~02/01/2015~ -~14180~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~14180~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14180~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14180~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14181~^~312~^0.512^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~315~^0.382^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~404~^0.009^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~405~^0.050^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~406~^0.322^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~410~^0.013^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~415~^0.006^11^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~606~^0.519^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14181~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~613~^0.244^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~614~^0.267^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~617~^0.286^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~618~^0.024^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~619~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~645~^0.286^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14181~^~646~^0.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14182~^~312~^0.090^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~315~^0.055^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~404~^0.039^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~405~^0.165^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~406~^0.137^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~410~^0.315^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~415~^0.032^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~501~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~502~^0.132^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~503~^0.151^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~504~^0.243^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~505~^0.132^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~506~^0.067^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~507~^0.017^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~508~^0.138^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~509~^0.140^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~510~^0.179^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~511~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~512~^0.068^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~513~^0.099^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~514~^0.227^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~515~^0.592^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~516~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~517~^0.304^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~518~^0.101^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~606~^1.681^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~607~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~608~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~609~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~610~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~611~^0.066^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~612~^0.257^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~613~^0.746^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~614~^0.354^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~617~^0.740^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~618~^0.107^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~619~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~626~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~04/01/2002~ -~14182~^~645~^0.740^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~646~^0.172^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14182~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14182~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14183~^~312~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~14183~^~315~^0.029^6^0.002^~1~^~A~^^^1^0.022^0.032^5^0.025^0.033^~2, 3~^~02/01/2015~ -~14183~^~404~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~02/01/2015~ -~14183~^~405~^0.160^3^0.006^~1~^~A~^^^1^0.150^0.170^2^0.135^0.185^~2, 3~^~02/01/2015~ -~14183~^~406~^0.513^3^0.029^~1~^~A~^^^1^0.460^0.560^2^0.388^0.638^~2, 3~^~02/01/2015~ -~14183~^~410~^0.285^2^^~1~^~A~^^^1^0.270^0.300^1^^^^~02/01/2015~ -~14183~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~14183~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14183~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~14185~^~315~^0.210^3^0.016^~1~^~A~^^^1^0.180^0.234^2^0.142^0.278^~2, 3~^~02/01/2015~ -~14185~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~406~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14185~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14185~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14185~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14187~^~312~^0.029^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~315~^0.032^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~404~^0.021^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~405~^0.012^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~406~^0.231^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~410~^0.083^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~415~^0.061^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~501~^0.004^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~502~^0.010^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~503~^0.011^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~504~^0.015^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~505~^0.013^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~506~^0.004^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~507~^0.003^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~508~^0.010^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~509~^0.006^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~510~^0.011^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~511~^0.023^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~512~^0.007^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~513~^0.011^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~514~^0.042^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~515~^0.124^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~516~^0.009^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~517~^0.010^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~518~^0.010^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14187~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~ -~14187~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~ -~14188~^~312~^0.005^8^0.000^~1~^~A~^^^2^0.005^0.005^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~315~^0.120^8^0.002^~1~^~A~^^^2^0.113^0.126^5^0.116^0.125^~2, 3~^~02/01/2015~ -~14188~^~404~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2015~ -~14188~^~405~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~14188~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14188~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2015~ -~14188~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2015~ -~14188~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14188~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~ -~14189~^~312~^0.016^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~404~^0.002^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~405~^0.003^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~406~^0.009^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~415~^0.004^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~606~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~607~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~608~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~609~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~610~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~611~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~612~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~613~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~614~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~617~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~618~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~619~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~620~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~621~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~626~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~627~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~628~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~629~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~630~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~631~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~645~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14189~^~646~^0.000^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~ -~14190~^~312~^0.005^5^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~14190~^~315~^0.120^5^0.003^~1~^~A~^^^1^0.109^0.129^4^0.111^0.129^~2, 3~^~04/01/2015~ -~14190~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14190~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~312~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~14191~^~315~^0.077^6^0.002^~1~^~A~^^^1^0.068^0.082^5^0.072^0.083^~2, 3~^~04/01/2015~ -~14191~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14191~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14192~^~312~^0.286^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~315~^0.269^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~404~^0.096^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~405~^0.565^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~406~^0.586^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~410~^0.893^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~415~^0.114^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14192~^~606~^2.377^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~607~^0.012^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~608~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~609~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~610~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~611~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~612~^0.029^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~613~^1.085^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~614~^1.181^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~615~^0.012^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~617~^1.318^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~618~^0.107^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~619~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~624~^0.012^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~626~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~645~^1.325^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~646~^0.114^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14192~^~652~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14192~^~653~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14194~^~312~^0.048^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~315~^0.037^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14194~^~404~^0.013^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~405~^0.078^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~406~^0.081^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~410~^0.123^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~415~^0.016^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14194~^~605~^0.104^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~606~^0.328^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~607~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~610~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~612~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~613~^0.150^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~614~^0.163^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~615~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~617~^0.182^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~618~^0.015^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~624~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~626~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~645~^0.183^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~646~^0.016^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~652~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14194~^~653~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14195~^~605~^0.230^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14195~^~606~^15.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14196~^~312~^0.730^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~315~^0.665^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~404~^0.267^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~405~^1.400^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~406~^1.084^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~410~^3.826^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~415~^0.318^2^^~1~^^^^^^^^^^^~03/01/2002~ -~14196~^~606~^1.777^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14196~^~607~^0.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~608~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~609~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~610~^0.007^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~611~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~612~^0.044^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~613~^0.817^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~614~^0.830^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~617~^0.955^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~618~^0.078^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~619~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~645~^0.979^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14196~^~646~^0.088^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14197~^~605~^0.250^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14197~^~606~^10.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~14199~^~312~^0.006^7^0.001^~1~^~A~^^^1^0.005^0.009^6^0.004^0.007^~1, 2, 3~^~04/01/2015~ -~14199~^~315~^0.113^7^0.008^~1~^~A~^^^1^0.093^0.144^6^0.094^0.133^~2, 3~^~04/01/2015~ -~14199~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14199~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14201~^~312~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~315~^0.027^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~406~^0.222^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~410~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~501~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~502~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~503~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~504~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~505~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~506~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~507~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~508~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~509~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~510~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~511~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~512~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~513~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~514~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~515~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~516~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~517~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~518~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~605~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~606~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~613~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~615~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~618~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~624~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~625~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14201~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~646~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~ -~14201~^~652~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~653~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~654~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~663~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~672~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~674~^0.015^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~685~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~687~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~689~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~693~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~696~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~697~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14201~^~851~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~312~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~315~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~404~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~405~^0.177^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~406~^5.207^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~410~^0.028^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~415~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~605~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~606~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~613~^0.046^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~615~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~618~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~624~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~625~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~646~^0.092^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14202~^~652~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~653~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~654~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~663~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~672~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~674~^0.015^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~685~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~687~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~689~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~693~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~696~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~697~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14202~^~851~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14203~^~312~^0.139^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~315~^1.712^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~404~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~405~^0.074^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~406~^28.173^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~410~^0.097^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~415~^0.029^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14203~^~606~^0.197^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~613~^0.146^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~614~^0.035^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~617~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~618~^0.180^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~619~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~628~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~645~^0.041^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14203~^~646~^0.196^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14204~^~312~^0.560^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~315~^0.807^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~404~^0.021^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~405~^0.109^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~406~^4.655^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~410~^0.063^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~415~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~606~^11.376^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~607~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~608~^0.077^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~609~^0.954^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~610~^0.764^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~611~^5.672^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~612~^2.140^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~613~^1.233^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~614~^0.535^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~617~^0.952^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~618~^0.338^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~619~^0.011^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~626~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~645~^0.954^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14204~^~646~^0.349^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~ -~14206~^~312~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~14206~^~315~^0.073^6^0.001^~1~^~A~^^^1^0.067^0.077^5^0.069^0.077^~2, 3~^~04/01/2015~ -~14206~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14206~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~312~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~14207~^~315~^0.085^3^0.002^~1~^~A~^^^1^0.082^0.087^2^0.078^0.092^~2, 3~^~04/01/2015~ -~14207~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14207~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14209~^~312~^0.002^3^^~1~^~A~^^^3^0.001^0.003^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~315~^0.023^11^0.001^~1~^~A~^^^4^0.015^0.032^7^0.021^0.024^~2, 3~^~04/01/2004~ -~14209~^~404~^0.014^3^^~1~^~A~^^^3^0.008^0.022^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~405~^0.076^6^0.004^~1~^~A~^^^4^0.030^0.194^2^0.057^0.094^~2, 3~^~04/01/2004~ -~14209~^~406~^0.191^6^0.000^~1~^~A~^^^4^0.000^0.443^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~410~^0.254^6^0.026^~1~^~A~^^^4^0.000^0.578^2^0.144^0.365^~1, 2, 3~^~04/01/2004~ -~14209~^~415~^0.001^6^0.000^~1~^~A~^^^4^0.000^0.004^2^0.001^0.001^~1, 2, 3~^~04/01/2004~ -~14209~^~501~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~502~^0.001^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~503~^0.002^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~504~^0.005^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~505~^0.001^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~506~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~507~^0.002^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~508~^0.003^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~509~^0.002^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~510~^0.003^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~511~^0.001^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~512~^0.002^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~513~^0.003^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~514~^0.005^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~515~^0.020^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~516~^0.004^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~517~^0.004^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~518~^0.001^0^^~1~^^^^^^^^^^^~04/01/2004~ -~14209~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~14209~^~606~^0.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~607~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~608~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~609~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~610~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~611~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~612~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~613~^0.002^6^0.000^~1~^~A~^^^4^0.000^0.010^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~614~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~615~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~617~^0.000^5^0.000^~11~^~JO~^^^4^0.000^0.015^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~618~^0.001^6^0.000^~1~^~A~^^^4^0.000^0.007^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~619~^0.000^5^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~620~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~621~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~624~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~625~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~626~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~627~^0.000^5^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~628~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~629~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~630~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~631~^0.000^5^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~645~^0.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~646~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~14209~^~652~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~653~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~654~^0.000^6^0.000^~1~^~A~^^^4^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14209~^~672~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~674~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~14209~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14209~^~687~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~689~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~14209~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14209~^~697~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~14209~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~14210~^~312~^0.050^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~315~^0.050^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~404~^0.001^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~405~^0.177^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~406~^5.207^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~410~^0.028^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~415~^0.002^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~14210~^~605~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~606~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~613~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~614~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~615~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~617~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~618~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~619~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~624~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~625~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~645~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~646~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14210~^~652~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~653~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~654~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~663~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~672~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~674~^0.015^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~685~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~687~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~689~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~693~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~696~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~697~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14210~^~851~^0.000^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~ -~14211~^~312~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~04/01/2015~ -~14211~^~315~^0.077^3^0.002^~1~^~A~^^^1^0.073^0.080^2^0.069^0.084^~2, 3~^~04/01/2015~ -~14211~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14211~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14214~^~312~^0.139^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~315~^1.712^24^0.244^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~404~^0.008^3^0.005^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~405~^0.074^3^0.012^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~406~^28.173^10^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~410~^0.097^3^0.031^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~415~^0.029^3^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~501~^0.030^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~502~^0.142^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~503~^0.172^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~504~^0.478^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~505~^0.096^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~506~^0.023^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~507~^0.202^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~508~^0.262^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~509~^0.165^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~510~^0.276^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~511~^0.053^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~512~^0.165^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~513~^0.335^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~514~^0.478^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~515~^2.030^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~516~^0.441^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~517~^0.351^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~518~^0.126^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14214~^~606~^0.197^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~613~^0.146^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~614~^0.035^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~617~^0.040^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~618~^0.180^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~619~^0.015^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~628~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14214~^~645~^0.041^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14214~^~646~^0.196^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14215~^~312~^0.011^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~315~^0.015^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14215~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~405~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~406~^0.236^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~410~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14215~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14215~^~606~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~613~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~618~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14215~^~646~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14216~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14216~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14216~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~315~^0.034^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14217~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14217~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14217~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14217~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14217~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14217~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14217~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14218~^~312~^0.069^8^0.037^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~315~^1.222^8^0.299^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~405~^1.360^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~406~^28.075^6^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~410~^0.097^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14218~^~501~^0.028^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~502~^0.136^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~503~^0.164^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~504~^0.456^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~505~^0.092^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~506~^0.022^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~507~^0.193^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~508~^0.250^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~509~^0.158^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~510~^0.263^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~511~^0.050^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~512~^0.158^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~513~^0.320^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~514~^0.456^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~515~^1.937^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~516~^0.421^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~517~^0.335^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~518~^0.121^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14218~^~606~^0.101^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~613~^0.075^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~614~^0.018^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~617~^0.021^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~618~^0.093^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~619~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1999~ -~14218~^~645~^0.021^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14218~^~646~^0.101^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14219~^~312~^0.010^0^^~1~^~RPA~^^^^^^^^^^~10/01/2006~ -~14219~^~315~^0.012^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14219~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~405~^0.014^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~406~^0.282^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~410~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14219~^~606~^0.001^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~613~^0.001^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~618~^0.001^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14219~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14219~^~646~^0.001^0^^~6~^~RPI~^^^^^^^^^^~10/01/2006~ -~14220~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~315~^0.023^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14220~^~404~^0.003^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~405~^0.007^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~406~^0.028^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~415~^0.019^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~ -~14220~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14220~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~315~^0.015^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14221~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14221~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14221~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14221~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14221~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14221~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14222~^~312~^0.050^3^0.025^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~315~^1.200^3^0.058^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~405~^0.290^3^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~406~^21.667^3^0.913^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~410~^0.097^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~415~^0.029^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14222~^~501~^0.022^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~502~^0.103^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~503~^0.124^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~504~^0.344^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~505~^0.069^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~506~^0.017^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~507~^0.146^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~508~^0.189^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~509~^0.119^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~510~^0.198^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~511~^0.038^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~512~^0.119^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~513~^0.241^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~514~^0.344^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~515~^1.462^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~516~^0.318^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~517~^0.253^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~518~^0.091^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14222~^~606~^0.071^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~613~^0.052^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~614~^0.012^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~617~^0.014^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~618~^0.065^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~619~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~645~^0.015^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14222~^~646~^0.070^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14223~^~312~^0.010^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~315~^0.012^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14223~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~405~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~406~^0.218^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~410~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14223~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14223~^~606~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~613~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~618~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14223~^~646~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14224~^~312~^0.435^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~315~^0.445^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~404~^0.031^5^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~405~^0.028^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~406~^2.263^14^^~1~^^^^^^^^^^^~05/01/1986~ -~14224~^~410~^0.052^2^^~1~^^^^^^^^^^^~12/01/2002~ -~14224~^~415~^0.055^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~ -~14224~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14224~^~606~^4.934^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14224~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~609~^0.162^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~610~^0.179^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~611~^1.647^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~612~^0.737^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~613~^0.929^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~614~^1.276^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~617~^8.899^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~618~^0.995^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~619~^0.058^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~626~^0.034^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~14224~^~645~^8.934^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14224~^~646~^1.053^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~14226~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~315~^0.031^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14226~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14226~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14226~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14226~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14226~^~605~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14226~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14227~^~315~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14227~^~404~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~405~^0.060^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~406~^0.210^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~415~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14227~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14227~^~606~^0.001^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~14227~^~645~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~ -~14227~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2015~ -~14231~^~606~^4.600^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~14233~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~315~^0.022^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14233~^~404~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~405~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~406~^0.026^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~415~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14233~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14233~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~312~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~315~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~14234~^~404~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~405~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~406~^0.026^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~415~^0.000^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~ -~14234~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14234~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~315~^0.012^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14235~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14235~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2015~ -~14235~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14235~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14235~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~ -~14236~^~312~^0.208^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14236~^~315~^1.100^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14236~^~404~^0.413^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~405~^0.095^1^^~1~^^^^^0.095^0.095^^^^^~12/01/2006~ -~14236~^~406~^17.664^16^2.046^~11~^~JO~^^^1^7.500^24.950^6^12.658^22.671^~4~^~12/01/2002~ -~14236~^~410~^1.410^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~415~^0.747^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~14236~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14236~^~606~^0.603^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~609~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~612~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~613~^0.522^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~614~^0.033^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~617~^0.341^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~618~^1.134^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~619~^0.083^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~620~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~626~^0.012^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14236~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~645~^0.356^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~646~^1.225^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14236~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~14237~^~312~^0.013^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14237~^~315~^0.019^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14237~^~404~^0.007^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~405~^0.002^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~406~^0.294^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~410~^0.023^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~415~^0.012^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14237~^~606~^0.010^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~613~^0.009^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~614~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14237~^~615~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~617~^0.006^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~618~^0.019^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~619~^0.001^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~624~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~625~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14237~^~645~^0.006^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~646~^0.020^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~652~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~653~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~654~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~672~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~687~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~689~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~696~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14237~^~697~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~ -~14238~^~312~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~315~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14238~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14238~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14238~^~606~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~613~^0.011^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~614~^0.002^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~617~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~618~^0.034^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~619~^0.017^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~645~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14238~^~646~^0.052^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~ -~14239~^~312~^0.008^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~315~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~404~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~405~^0.010^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~406~^0.225^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~410~^0.041^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~415~^0.022^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14239~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~14240~^~312~^0.015^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~315~^0.125^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~404~^0.005^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~405~^0.010^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~406~^0.120^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14240~^~410~^0.036^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~415~^0.020^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14240~^~606~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~617~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~618~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14240~^~645~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~14240~^~646~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~14241~^~312~^0.007^3^0.003^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~315~^0.158^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~404~^0.010^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~405~^0.018^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~406~^0.120^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14241~^~410~^0.053^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~415~^0.028^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14241~^~606~^0.033^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~617~^0.004^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~618~^0.023^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14241~^~645~^0.004^0^^~4~^^^^^^^^^^^~07/01/1995~ -~14241~^~646~^0.023^0^^~4~^^^^^^^^^^^~07/01/1995~ -~14242~^~312~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14242~^~315~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~406~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~410~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14242~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~14242~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14242~^~606~^0.009^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~613~^0.007^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~614~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~617~^0.019^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~618~^0.035^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~619~^0.023^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~645~^0.019^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14242~^~646~^0.059^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14243~^~312~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~315~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~404~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~405~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~406~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~410~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~415~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14243~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14243~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14243~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14245~^~312~^0.022^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~315~^0.007^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~404~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~405~^0.166^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~406~^0.112^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~410~^0.330^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~415~^0.033^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14245~^~501~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~502~^0.129^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~503~^0.149^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~504~^0.240^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~505~^0.128^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~506~^0.068^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~507~^0.015^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~508~^0.133^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~509~^0.137^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~510~^0.174^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~511~^0.069^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~512~^0.068^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~513~^0.094^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~514~^0.215^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~515~^0.584^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~516~^0.068^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~517~^0.307^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~518~^0.098^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~606~^1.701^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~607~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~608~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~609~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~610~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~611~^0.069^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~612~^0.284^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~613~^0.751^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~614~^0.329^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~615~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~617~^0.761^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~618~^0.118^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~619~^0.067^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~620~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~624~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~625~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~626~^0.006^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~645~^0.767^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~646~^0.186^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~652~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14245~^~654~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14246~^~312~^0.010^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~404~^0.011^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~405~^0.000^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~406~^0.125^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~415~^0.015^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~ -~14246~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14246~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14246~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~14247~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14247~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~312~^0.006^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~404~^0.005^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~405~^0.015^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~406~^0.391^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~415~^0.034^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~ -~14248~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14248~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~ -~14250~^~312~^0.018^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~315~^0.018^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~404~^0.009^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~405~^0.013^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~406~^0.045^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~410~^0.030^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~415~^0.021^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~14250~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14250~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~312~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~315~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~406~^1.100^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~410~^0.210^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14251~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14251~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~312~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~406~^0.400^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14252~^~410~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14252~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14252~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~312~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~315~^0.131^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~406~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14253~^~410~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14253~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14253~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14255~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14255~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14255~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14255~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14255~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14255~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14255~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~315~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14256~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14256~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14256~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14256~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14256~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~606~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~645~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14256~^~646~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14257~^~312~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14257~^~605~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~06/01/2015~ -~14257~^~606~^0.004^2^^~1~^~A~^^^1^0.001^0.006^1^^^~1~^~06/01/2015~ -~14257~^~645~^0.004^2^^~1~^~A~^^^1^0.001^0.007^1^^^~1~^~06/01/2015~ -~14257~^~646~^0.003^2^^~1~^~A~^^^1^0.001^0.005^1^^^~1~^~06/01/2015~ -~14258~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14258~^~315~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14258~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14258~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14258~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14258~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14258~^~606~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~645~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14258~^~646~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~312~^0.015^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14259~^~605~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14259~^~606~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~645~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14259~^~646~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14260~^~312~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~404~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~405~^0.058^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~406~^0.030^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~415~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14260~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14260~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~312~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14261~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14261~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14262~^~312~^0.097^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~315~^0.255^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~404~^0.051^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14262~^~405~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~406~^0.263^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~410~^0.214^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~415~^0.066^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14262~^~606~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~613~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~617~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~618~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~619~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14262~^~645~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14262~^~646~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~14263~^~312~^0.035^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~315~^0.073^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14263~^~404~^0.014^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~405~^0.010^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~406~^0.075^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~410~^0.061^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~415~^0.019^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14263~^~606~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~613~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~617~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~618~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~619~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~645~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14263~^~646~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14264~^~312~^0.010^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~315~^0.084^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~404~^0.022^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~405~^0.023^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~406~^0.021^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~410~^0.014^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~415~^0.011^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~ -~14264~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14264~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~14264~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14264~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~14267~^~312~^0.010^2^^~13~^~AI~^^^1^0.007^0.013^1^^^^~02/01/2003~ -~14267~^~315~^0.084^18^0.018^~1~^~A~^^^7^0.000^0.283^17^0.045^0.123^~4~^~10/01/2002~ -~14267~^~404~^0.005^2^^~11~^~JO~^^^1^0.004^0.006^1^^^^~02/01/2005~ -~14267~^~405~^0.023^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~406~^0.021^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~410~^0.014^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14267~^~415~^0.011^2^^~11~^~JO~^^^1^0.010^0.012^1^^^^~02/01/2003~ -~14267~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14267~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~617~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~618~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~619~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~645~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14267~^~646~^0.003^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14268~^~312~^0.090^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~315~^0.360^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~404~^0.034^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~405~^0.046^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~406~^0.074^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~410~^0.028^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~415~^0.021^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14268~^~606~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~613~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~617~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~618~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~619~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~645~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14268~^~646~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14269~^~312~^0.032^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~315~^0.102^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14269~^~404~^0.010^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~405~^0.013^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~406~^0.021^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~410~^0.008^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~415~^0.006^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14269~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14269~^~606~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~613~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~617~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~618~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~619~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~645~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14269~^~646~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14270~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~606~^13.333^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~14270~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14270~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14276~^~312~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~ -~14276~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14276~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~14277~^~312~^0.013^1^^~13~^~AI~^^^^0.013^0.013^^^^^~01/01/2003~ -~14277~^~315~^0.027^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~404~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~405~^0.004^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~406~^0.010^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~410~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~415~^0.002^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14277~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14277~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~14277~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14277~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14278~^~312~^0.004^12^0.000^~1~^~A~^^^1^0.004^0.005^8^0.004^0.005^~2, 3~^~06/01/2015~ -~14278~^~315~^0.184^12^0.005^~1~^~A~^^^1^0.169^0.216^8^0.173^0.195^~2, 3~^~06/01/2015~ -~14278~^~404~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14278~^~405~^0.058^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14278~^~406~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14278~^~415~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14278~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14278~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~312~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^~1~^~06/01/2015~ -~14279~^~315~^0.161^2^^~1~^~A~^^^1^0.145^0.177^1^^^^~06/01/2015~ -~14279~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14279~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~312~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14280~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14280~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~312~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14281~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14281~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14282~^~312~^0.022^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~315~^0.200^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~404~^0.225^1^^~13~^~AI~^^^^0.225^0.225^^^^^~02/01/2005~ -~14282~^~405~^0.354^1^^~13~^~AI~^^^^0.354^0.354^^^^^~02/01/2005~ -~14282~^~406~^0.142^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~410~^0.023^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~415~^0.035^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14282~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14282~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14282~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14284~^~312~^0.015^13^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~315~^0.060^13^0.009^~1~^~A~^^^1^0.025^0.242^7^0.040^0.081^~2, 3~^~06/01/2015~ -~14284~^~404~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~405~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~14284~^~406~^0.025^6^0.003^~1~^~A~^^^1^0.022^0.030^1^-0.011^0.061^~1, 2, 3~^~06/01/2015~ -~14284~^~410~^0.048^5^0.004^~1~^~A~^^^1^0.030^0.060^1^0.003^0.093^~1, 2, 3~^~06/01/2015~ -~14284~^~415~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~14285~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~315~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~14285~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14285~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14285~^~406~^0.026^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14285~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~ -~14285~^~606~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14285~^~645~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14285~^~646~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~14286~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14286~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14287~^~312~^0.045^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14287~^~404~^0.015^1^^~1~^^^^^^^^^^^~01/01/2009~ -~14287~^~405~^0.000^0^^~4~^^^^^^^^^^^~01/01/2009~ -~14287~^~406~^0.130^1^^~1~^^^^^^^^^^^~01/01/2009~ -~14287~^~410~^0.060^1^^~1~^^^^^^^^^^^~01/01/2009~ -~14287~^~415~^0.026^1^^~1~^^^^^^^^^^^~01/01/2009~ -~14287~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14287~^~606~^0.151^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~613~^0.121^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~614~^0.029^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~617~^0.107^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~618~^0.405^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~619~^0.052^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~626~^0.004^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~14287~^~645~^0.111^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14287~^~646~^0.457^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14288~^~312~^0.011^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~315~^0.001^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14288~^~404~^0.001^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~405~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~406~^0.005^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~410~^0.002^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~415~^0.001^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14288~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14288~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14288~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14288~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14288~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14288~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14291~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14291~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14292~^~312~^0.013^2^^~1~^~A~^^^1^0.010^0.016^1^^^~1~^~01/01/2009~ -~14292~^~315~^0.013^2^^~1~^~A~^^^1^0.012^0.014^1^^^^~01/01/2009~ -~14292~^~404~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~01/01/2009~ -~14292~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~14292~^~406~^0.110^2^^~1~^~A~^^^1^0.100^0.120^1^^^^~01/01/2009~ -~14292~^~410~^0.115^2^^~1~^~A~^^^1^0.110^0.120^1^^^^~01/01/2009~ -~14292~^~415~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~01/01/2009~ -~14292~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14292~^~606~^0.025^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14292~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~612~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~613~^0.024^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~614~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~617~^0.007^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~618~^0.042^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~619~^0.017^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~645~^0.008^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14292~^~646~^0.059^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14293~^~312~^0.021^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~315~^0.005^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14293~^~404~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~405~^0.021^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~406~^0.016^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~410~^0.013^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~415~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14293~^~606~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~613~^0.005^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~617~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~618~^0.009^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~619~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~645~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14293~^~646~^0.013^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14294~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14294~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~ -~14296~^~312~^0.025^2^^~1~^~A~^^^1^0.018^0.031^1^^^~1~^~01/01/2009~ -~14296~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2009~ -~14296~^~404~^0.002^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14296~^~405~^0.011^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14296~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14296~^~410~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14296~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14296~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14296~^~606~^0.183^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~607~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~609~^0.006^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~610~^0.005^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~611~^0.036^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~612~^0.014^0^^~1~^^^^^^^^^^^~10/01/2013~ -~14296~^~613~^0.059^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~614~^0.014^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~617~^0.092^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~618~^0.348^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~619~^0.044^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~620~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~621~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~627~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14296~^~629~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~630~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~631~^0.000^0^^~7~^^^^^^^^^^^~10/01/2013~ -~14296~^~645~^0.129^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14296~^~646~^0.531^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~ -~14297~^~312~^0.011^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~315~^0.001^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14297~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~405~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~406~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~410~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14297~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14297~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~312~^0.016^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~315~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~404~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~405~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~406~^0.009^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~410~^0.012^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~415~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14303~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14303~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14305~^~312~^0.008^2^^~11~^~JO~^^^1^0.001^0.015^1^^^^~01/01/2003~ -~14305~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~404~^0.016^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~405~^0.048^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~406~^1.113^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~410~^0.037^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~415~^0.027^2^^~1~^~A~^^^^^^^^^^~02/01/1996~ -~14305~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14305~^~606~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~613~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~614~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~617~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~618~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~619~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1996~ -~14305~^~645~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14305~^~646~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1996~ -~14309~^~312~^1.818^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~404~^1.364^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~405~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~406~^18.182^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~415~^1.818^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14309~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14309~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14310~^~312~^0.044^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~315~^0.037^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~404~^0.277^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~405~^0.455^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~406~^3.993^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~410~^0.353^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~415~^0.325^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~606~^1.830^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~607~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~608~^0.072^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~609~^0.070^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~610~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~611~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~612~^0.291^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~613~^0.817^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~614~^0.357^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~617~^0.798^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~618~^0.139^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~619~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~626~^0.004^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14310~^~645~^0.802^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~646~^0.213^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14310~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14310~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14311~^~312~^0.200^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~315~^0.237^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~404~^0.505^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~405~^0.920^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~406~^5.246^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~410~^0.624^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~415~^0.410^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14311~^~606~^4.762^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14311~^~607~^0.220^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~608~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~609~^0.068^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~610~^0.151^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~611~^0.156^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~612~^0.719^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~613~^2.343^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~614~^0.799^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~617~^1.741^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~618~^1.254^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~619~^0.174^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~626~^0.290^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~14311~^~645~^2.157^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~646~^1.429^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14311~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~14312~^~312~^0.037^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~315~^0.021^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~404~^0.081^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~405~^0.242^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~406~^0.519^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~410~^0.402^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~415~^0.066^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~501~^0.079^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~502~^0.155^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~503~^0.180^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~504~^0.298^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~505~^0.154^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~506~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~507~^0.034^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~508~^0.167^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~509~^0.165^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~510~^0.209^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~511~^0.103^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~512~^0.087^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~513~^0.127^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~514~^0.291^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~515~^0.796^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~516~^0.089^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~517~^0.407^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~518~^0.150^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~606~^2.039^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~607~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~608~^0.078^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~609~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~610~^0.081^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~611~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~612~^0.324^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~613~^0.916^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~614~^0.397^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~617~^0.892^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~618~^0.191^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~619~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~626~^0.012^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14312~^~645~^0.903^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~646~^0.276^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14312~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14312~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14315~^~312~^1.818^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~404~^1.364^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~405~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~406~^18.182^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~415~^1.818^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~14315~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~ -~14315~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14315~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~14316~^~312~^0.074^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~315~^0.054^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~404~^0.287^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~405~^0.484^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~406~^4.164^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~410~^0.398^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~415~^0.383^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~ -~14316~^~606~^1.873^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~607~^0.076^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~608~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~609~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~610~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~611~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~612~^0.295^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~613~^0.831^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~614~^0.371^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~617~^0.815^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~618~^0.131^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~619~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~626~^0.005^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14316~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~14316~^~645~^0.823^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~ -~14316~^~646~^0.205^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14317~^~312~^0.200^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~404~^0.173^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~405~^0.200^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~406~^2.003^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~410~^0.316^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~415~^0.156^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14317~^~606~^2.381^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14317~^~607~^0.111^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~608~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~609~^0.034^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~610~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~611~^0.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~612~^0.362^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~613~^1.152^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~614~^0.412^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~617~^0.941^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~618~^0.583^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~619~^0.085^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~626~^0.158^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14317~^~645~^1.167^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~646~^0.669^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14317~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14318~^~312~^0.037^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~315~^0.080^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~404~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~405~^0.184^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~406~^0.259^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~410~^0.354^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~415~^0.046^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~501~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~502~^0.143^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~503~^0.165^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~504~^0.268^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~505~^0.142^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~506~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~507~^0.023^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~508~^0.150^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~509~^0.152^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~510~^0.193^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~511~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~512~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~513~^0.109^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~514~^0.252^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~515~^0.677^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~516~^0.079^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~517~^0.350^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~518~^0.119^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~606~^1.883^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~607~^0.076^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~608~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~609~^0.071^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~610~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~611~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~612~^0.297^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~613~^0.838^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~614~^0.375^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~617~^0.822^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~618~^0.133^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~619~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~626~^0.006^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~14318~^~645~^0.827^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~646~^0.208^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14318~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14318~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~ -~14323~^~312~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~14323~^~315~^0.011^6^0.002^~1~^~A~^^^1^0.006^0.019^5^0.005^0.017^~1, 4~^~02/01/2005~ -~14323~^~404~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~14323~^~405~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~14323~^~406~^0.011^6^0.007^~1~^~A~^^^1^0.005^0.044^5^-0.005^0.028^~1, 4~^~02/01/2005~ -~14323~^~410~^0.018^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~415~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~14323~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14323~^~606~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14323~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~613~^0.002^0^^~1~^^^^^^^^^^^~03/01/2003~ -~14323~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~617~^0.002^0^^~1~^^^^^^^^^^^~03/01/2003~ -~14323~^~618~^0.002^0^^~1~^^^^^^^^^^^~03/01/2003~ -~14323~^~619~^0.001^0^^~1~^^^^^^^^^^^~03/01/2003~ -~14323~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14323~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14323~^~645~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14323~^~646~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~312~^0.032^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~315~^0.009^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~404~^0.020^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~405~^0.010^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~406~^0.200^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~410~^0.068^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~415~^0.037^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14327~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14327~^~606~^0.010^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~613~^0.009^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~614~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~617~^0.029^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~618~^0.019^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~619~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14327~^~645~^0.031^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14327~^~646~^0.022^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~312~^0.045^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~315~^0.413^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~404~^0.030^6^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~405~^0.016^6^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~406~^0.267^6^0.024^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~410~^0.053^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~415~^0.042^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14334~^~606~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~613~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~614~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~617~^0.009^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~618~^0.017^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~619~^0.011^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14334~^~645~^0.010^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14334~^~646~^0.028^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~312~^0.041^15^0.003^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~315~^0.361^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~404~^0.030^15^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~405~^0.019^15^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~406~^0.207^15^0.007^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~410~^0.057^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~415~^0.047^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14341~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14341~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14347~^~312~^0.103^2^^~1~^~A~^^^2^0.017^0.190^^^^~1~^~04/01/2005~ -~14347~^~315~^0.035^2^^~1~^~A~^^^2^0.008^0.061^^^^~1~^~04/01/2005~ -~14347~^~404~^0.026^2^^~1~^~A~^^^2^0.000^0.051^^^^~1~^~04/01/2005~ -~14347~^~405~^0.660^2^^~1~^~A~^^^2^0.180^1.140^^^^^~04/01/2005~ -~14347~^~406~^0.213^2^^~1~^~A~^^^2^0.090^0.335^^^^^~04/01/2005~ -~14347~^~410~^0.562^2^^~1~^~A~^^^2^0.504^0.620^^^^^~04/01/2005~ -~14347~^~415~^0.060^2^^~1~^~A~^^^2^0.030^0.090^^^^^~04/01/2005~ -~14347~^~501~^0.058^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~502~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~503~^0.158^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~504~^0.354^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~505~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~506~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~507~^0.038^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~508~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~509~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~510~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~511~^0.105^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~512~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~513~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~514~^0.318^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~515~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~516~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~517~^0.393^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~518~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~606~^3.962^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~607~^0.198^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~608~^0.152^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14347~^~609~^0.066^2^^~1~^~A~^^^2^0.040^0.093^^^^^~04/01/2005~ -~14347~^~610~^0.154^2^^~1~^~A~^^^2^0.080^0.227^^^^^~04/01/2005~ -~14347~^~611~^0.174^2^^~1~^~A~^^^2^0.100^0.249^^^^^~04/01/2005~ -~14347~^~612~^0.593^2^^~1~^~A~^^^2^0.360^0.825^^^^^~04/01/2005~ -~14347~^~613~^1.724^2^^~1~^~A~^^^2^1.060^2.388^^^^^~04/01/2005~ -~14347~^~614~^0.795^2^^~1~^~A~^^^2^0.550^1.039^^^^^~04/01/2005~ -~14347~^~615~^0.007^2^^~1~^~A~^^^2^0.000^0.014^^^^~1~^~04/01/2005~ -~14347~^~617~^1.607^2^^~6~^~JA~^^^2^1.010^2.204^^^^^~04/01/2005~ -~14347~^~618~^0.261^2^^~6~^~JA~^^^2^0.160^0.362^^^^^~04/01/2005~ -~14347~^~619~^0.029^2^^~6~^~JA~^^^2^0.020^0.037^^^^^~04/01/2005~ -~14347~^~620~^0.007^2^^~1~^~A~^^^2^0.000^0.013^^^^~1~^~04/01/2005~ -~14347~^~621~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2005~ -~14347~^~624~^0.002^2^^~1~^~A~^^^2^0.000^0.004^^^^~1~^~04/01/2005~ -~14347~^~625~^0.049^2^^~1~^~A~^^^2^0.030^0.068^^^^^~04/01/2005~ -~14347~^~626~^0.116^2^^~6~^~JA~^^^2^0.060^0.172^^^^^~04/01/2005~ -~14347~^~627~^0.012^2^^~1~^~A~^^^2^0.004^0.020^^^^^~04/01/2005~ -~14347~^~628~^0.004^2^^~1~^~A~^^^2^0.000^0.009^^^^~1~^~04/01/2005~ -~14347~^~629~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2005~ -~14347~^~630~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^~1~^~04/01/2005~ -~14347~^~631~^0.003^2^^~1~^~A~^^^2^0.000^0.005^^^^~1~^~04/01/2005~ -~14347~^~645~^1.785^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~646~^0.316^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~14347~^~652~^0.057^2^^~1~^~A~^^^2^0.030^0.084^^^^^~04/01/2005~ -~14347~^~653~^0.036^2^^~1~^~A~^^^2^0.020^0.053^^^^^~04/01/2005~ -~14347~^~654~^0.003^2^^~1~^~A~^^^2^0.000^0.006^^^^~1~^~04/01/2005~ -~14347~^~687~^0.009^2^^~1~^~A~^^^2^0.000^0.017^^^^~1~^~04/01/2005~ -~14347~^~689~^0.006^2^^~6~^~JA~^^^2^0.000^0.011^^^^~1~^~04/01/2005~ -~14347~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14347~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2005~ -~14350~^~312~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~315~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~404~^0.003^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~405~^0.110^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~406~^0.073^7^^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~410~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~415~^0.002^6^0.000^~1~^^^^^^^^^^^~05/01/1986~ -~14350~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14350~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14350~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14351~^~312~^0.009^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~315~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~404~^0.035^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~405~^0.158^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~406~^0.083^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~410~^0.288^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~415~^0.039^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~501~^0.042^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~502~^0.137^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~503~^0.183^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~504~^0.296^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~505~^0.240^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~506~^0.076^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~507~^0.028^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~508~^0.146^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~509~^0.146^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~510~^0.202^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~511~^0.109^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~512~^0.082^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~513~^0.104^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~514~^0.230^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~515~^0.633^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~516~^0.064^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~517~^0.293^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~518~^0.164^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~606~^1.910^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~607~^0.099^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~608~^0.059^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~609~^0.034^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~610~^0.077^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~611~^0.086^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~612~^0.309^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~613~^0.808^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~614~^0.372^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~617~^0.772^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~618~^0.069^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~619~^0.045^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~626~^0.069^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~645~^0.886^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14351~^~646~^0.114^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14352~^~312~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~315~^0.219^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~405~^0.014^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~410~^0.011^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~501~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~502~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~503~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~504~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~505~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~506~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~507~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~508~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~509~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~510~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~511~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~512~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~513~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~514~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~515~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~516~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~517~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~518~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14352~^~606~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~613~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~14352~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~618~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~14352~^~619~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~14352~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~ -~14352~^~645~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14352~^~646~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14353~^~312~^0.550^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~315~^133.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~404~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~405~^0.985^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~406~^10.800^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~410~^4.530^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~415~^0.356^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14353~^~606~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~607~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~14353~^~609~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~610~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~611~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~612~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~613~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~614~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~617~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~618~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~619~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~620~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~621~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~626~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~627~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~628~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~629~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~630~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~631~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~ -~14353~^~645~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14353~^~646~^0.000^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~ -~14355~^~312~^0.010^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~315~^0.219^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~404~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~405~^0.014^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~410~^0.011^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14355~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14355~^~606~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~613~^0.001^0^^~1~^^^^^^^^^^^~03/01/2006~ -~14355~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14355~^~617~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14355~^~618~^0.001^0^^~1~^^^^^^^^^^^~03/01/2006~ -~14355~^~619~^0.003^0^^~1~^^^^^^^^^^^~03/01/2006~ -~14355~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14355~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14355~^~645~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14355~^~646~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14356~^~312~^0.120^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~315~^30.370^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~ -~14356~^~404~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~405~^0.335^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~406~^3.880^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~ -~14356~^~410~^1.540^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~415~^0.121^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14356~^~606~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~607~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~608~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~609~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~610~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~611~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~612~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~613~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~614~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~617~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~618~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~619~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~620~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~621~^0.000^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~ -~14356~^~626~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~627~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~628~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~629~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~630~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~631~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~645~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14356~^~646~^0.000^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~ -~14357~^~312~^0.010^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~315~^2.965^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14357~^~404~^0.011^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~405~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~406~^0.125^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~410~^0.110^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~14357~^~415~^0.015^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14357~^~606~^0.091^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~607~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~608~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~609~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~610~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~611~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~612~^0.002^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~613~^0.084^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~614~^0.005^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~617~^0.025^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~618~^0.148^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~619~^0.061^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~620~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~621~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~626~^0.002^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~627~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~628~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~629~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~630~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~631~^0.000^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~ -~14357~^~645~^0.027^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14357~^~646~^0.209^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~ -~14366~^~312~^0.550^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~315~^133.000^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14366~^~405~^0.985^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~406~^10.800^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~410~^4.530^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~415~^0.356^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14366~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14366~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14366~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~613~^0.043^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~614~^0.007^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~617~^0.013^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~618~^0.040^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~619~^0.082^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~626~^0.002^0^^~1~^^^^^^^^^^^~07/01/2013~ -~14366~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14366~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14366~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~14367~^~312~^0.011^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~315~^0.392^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14367~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~405~^0.003^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~406~^0.032^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~410~^0.013^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~415~^0.001^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14367~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14367~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14367~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14368~^~312~^0.331^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~315~^30.670^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14368~^~404~^0.017^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~405~^0.558^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~406~^6.168^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~410~^2.597^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~415~^0.223^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14368~^~606~^0.047^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~613~^0.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~614~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~617~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~618~^0.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~619~^0.033^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14368~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~645~^0.012^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14368~^~646~^0.117^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~312~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14370~^~315~^1.410^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~14370~^~406~^0.125^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~14370~^~415~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14370~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14370~^~606~^0.097^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14370~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~612~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~613~^0.084^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~614~^0.005^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~617~^0.025^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~618~^0.148^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~619~^0.061^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~14370~^~645~^0.033^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14370~^~646~^0.218^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14371~^~312~^0.007^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~315~^0.124^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~ -~14371~^~404~^0.001^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~405~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~406~^0.011^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~410~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~415~^0.001^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14371~^~606~^0.008^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~613~^0.007^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~617~^0.002^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~618~^0.013^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~619~^0.005^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~645~^0.002^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14371~^~646~^0.018^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~ -~14375~^~312~^0.120^1^^~9~^~MC~^^^^0.120^0.120^^^^^~12/01/2006~ -~14375~^~315~^30.370^1^^~9~^~MC~^^^^30.370^30.370^^^^^~12/01/2006~ -~14375~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~405~^0.335^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~406~^3.880^1^^~9~^~MC~^^^^3.880^3.880^^^^^~12/01/2006~ -~14375~^~410~^1.540^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~415~^0.121^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14375~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14375~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14376~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~315~^0.155^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~405~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~406~^0.020^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14376~^~410~^0.008^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~415~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14376~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14376~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14381~^~312~^0.015^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~315~^0.044^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~404~^0.010^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~405~^0.004^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~410~^0.011^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14381~^~606~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~613~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~617~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~618~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14381~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14381~^~645~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14381~^~646~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~312~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~315~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14384~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14384~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14384~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~315~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14385~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14385~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14385~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14390~^~312~^0.066^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~315~^0.052^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14390~^~404~^0.021^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~405~^0.109^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~406~^0.085^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~410~^0.298^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~415~^0.025^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14390~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14390~^~606~^0.139^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~607~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~610~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~612~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~613~^0.064^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~614~^0.065^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~617~^0.074^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~618~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~626~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~645~^0.076^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14390~^~646~^0.007^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14400~^~312~^0.001^7^0.000^~1~^~A~^^^4^0.000^0.003^^^^~1, 2, 3~^~04/01/2005~ -~14400~^~315~^0.002^7^0.000^~1~^~A~^^^4^0.000^0.008^^^^~1, 2, 3~^~04/01/2005~ -~14400~^~404~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~405~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~406~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~410~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~415~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14400~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14400~^~606~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~613~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~614~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~617~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~618~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~645~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14400~^~646~^0.000^0^^~4~^^^^^^^^^^^~12/01/2002~ -~14405~^~312~^0.070^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~315~^0.210^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~404~^0.004^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~405~^0.230^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~406~^0.208^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~410~^0.103^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~415~^0.045^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14405~^~606~^0.087^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~612~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~613~^0.079^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~614~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~617~^0.047^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~618~^0.126^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~619~^0.047^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~626~^0.007^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~645~^0.086^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14405~^~646~^0.173^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14406~^~312~^0.024^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~315~^0.051^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14406~^~404~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~405~^0.056^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~406~^0.050^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~410~^0.025^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~415~^0.011^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14406~^~606~^0.021^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~613~^0.019^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~614~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~617~^0.011^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~618~^0.031^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~619~^0.011^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~626~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~645~^0.021^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14406~^~646~^0.042^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14407~^~312~^0.013^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~315~^0.050^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14407~^~404~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~14407~^~405~^0.680^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~14407~^~406~^8.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~14407~^~410~^0.007^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~415~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~ -~14407~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14407~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14407~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14408~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14408~^~315~^0.007^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14408~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~405~^0.087^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~406~^1.023^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~410~^0.001^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~14408~^~415~^0.102^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14408~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14408~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~ -~14409~^~312~^0.003^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~404~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~405~^6.800^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~406~^80.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~410~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~415~^8.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14409~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~613~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~614~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~617~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~618~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~ -~14409~^~645~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14409~^~646~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~14411~^~312~^0.010^287^0.002^~1~^~A~^^^1^0.000^0.407^286^0.006^0.014^~1, 2, 3~^~04/01/2006~ -~14411~^~315~^0.000^287^0.000^~1~^~A~^^^1^0.000^0.010^286^0.000^0.000^~1, 2, 3~^~04/01/2006~ -~14411~^~404~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~405~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~406~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~410~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~415~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14411~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14411~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~ -~14412~^~312~^0.016^50^^~1~^~A~^^^1^0.000^0.407^^^^~1, 2~^~04/01/2006~ -~14412~^~315~^0.000^50^^~1~^~A~^^^1^0.000^0.010^^^^~1, 2~^~11/01/2005~ -~14412~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14414~^~312~^0.040^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~315~^0.014^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~404~^0.004^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~405~^0.012^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~406~^0.144^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~410~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14414~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14414~^~606~^0.106^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~613~^0.078^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~614~^0.019^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~617~^0.021^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~618~^0.096^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~619~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14414~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14414~^~645~^0.022^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14414~^~646~^0.105^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14415~^~312~^0.040^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~315~^0.006^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~404~^0.011^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~405~^0.057^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~406~^0.078^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~410~^0.087^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~415~^0.011^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~14415~^~501~^0.040^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~502~^0.127^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~503~^0.170^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~504~^0.275^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~505~^0.223^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~506~^0.070^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~507~^0.026^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~508~^0.136^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~509~^0.136^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~510~^0.188^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~511~^0.102^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~512~^0.076^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~513~^0.097^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~514~^0.213^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~515~^0.588^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~516~^0.059^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~517~^0.272^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~518~^0.153^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~606~^9.664^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~607~^0.495^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~608~^0.294^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~609~^0.170^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~610~^0.387^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~611~^0.433^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~612~^1.546^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~613~^4.126^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~614~^0.358^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~617~^3.886^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~618~^0.439^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~619~^0.232^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~626~^0.340^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1996~ -~14415~^~645~^4.458^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14415~^~646~^0.669^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14416~^~312~^0.002^6^^~1~^~A~^^^3^0.000^0.010^^^^~1, 2, 3~^~03/01/2006~ -~14416~^~315~^0.107^7^^~1~^~A~^^^4^0.000^0.640^^^^~1, 2, 3~^~03/01/2006~ -~14416~^~404~^0.005^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~405~^0.023^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~406~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~410~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~415~^0.000^1^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14416~^~606~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~607~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~608~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~609~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~610~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~613~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~614~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~617~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~618~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~619~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~620~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~621~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~627~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~629~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~631~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~645~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14416~^~646~^0.000^0^^~1~^^^^^^^^^^^~12/01/2002~ -~14421~^~312~^0.012^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~315~^0.016^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~404~^0.038^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~405~^0.161^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~406~^0.293^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~410~^0.310^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~415~^0.042^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~501~^0.046^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~502~^0.150^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~503~^0.199^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~504~^0.323^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~505~^0.260^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~506~^0.083^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~507~^0.031^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~508~^0.160^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~509~^0.159^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~510~^0.221^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~511~^0.121^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~512~^0.089^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~513~^0.115^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~514~^0.251^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~515~^0.695^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~516~^0.072^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~517~^0.322^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~518~^0.180^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~606~^2.061^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~607~^0.107^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~608~^0.063^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~609~^0.037^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~610~^0.083^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~611~^0.093^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~612~^0.332^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~613~^0.875^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~614~^0.400^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~617~^0.834^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~618~^0.093^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~619~^0.051^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~626~^0.074^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~645~^0.958^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14421~^~646~^0.144^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~312~^0.800^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~315~^0.730^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~404~^0.112^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~405~^1.938^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~406~^1.250^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~410~^2.139^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~415~^0.110^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~606~^1.871^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~608~^0.007^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~609~^0.096^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~610~^0.077^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~611~^0.571^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~612~^0.216^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~613~^0.430^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~614~^0.461^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~617~^0.492^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~618~^0.060^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~619~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~626~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14422~^~645~^0.496^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14422~^~646~^0.061^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14423~^~312~^0.079^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~315~^0.064^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14423~^~404~^0.010^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~405~^0.170^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~406~^0.110^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~410~^0.188^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~415~^0.010^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14423~^~606~^0.164^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~608~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~609~^0.008^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~610~^0.007^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~611~^0.050^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~612~^0.019^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~613~^0.038^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~614~^0.040^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~617~^0.043^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~618~^0.005^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~645~^0.043^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14423~^~646~^0.005^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14424~^~312~^0.039^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~315~^0.028^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~ -~14424~^~404~^0.422^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~405~^0.133^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~410~^0.025^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14424~^~606~^0.078^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~612~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~613~^0.051^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~614~^0.026^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~617~^0.223^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~618~^0.183^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~619~^0.014^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~626~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~14424~^~645~^0.226^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14424~^~646~^0.197^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14425~^~312~^0.018^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~315~^0.008^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~404~^0.120^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~405~^0.038^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~406~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~410~^0.007^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14425~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14425~^~606~^0.022^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~613~^0.015^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~614~^0.007^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~617~^0.063^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~618~^0.052^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~619~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~626~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~645~^0.064^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14425~^~646~^0.056^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14426~^~312~^0.320^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~315~^0.048^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~404~^0.363^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~405~^3.590^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~406~^0.870^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~410~^0.650^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~415~^0.244^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~501~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~502~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~503~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~504~^0.007^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~505~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~506~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~507~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~508~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~509~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~510~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~511~^0.025^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~512~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~513~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~514~^0.040^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~515~^0.018^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~516~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~517~^0.023^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~518~^0.007^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14426~^~606~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~612~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~613~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~614~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~617~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~618~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2003~ -~14426~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2003~ -~14426~^~645~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14426~^~646~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14427~^~312~^0.100^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14427~^~315~^0.014^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~404~^0.105^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~405~^1.042^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~406~^0.253^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~410~^0.189^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~415~^0.071^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14427~^~606~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~ -~14427~^~645~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14427~^~646~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14428~^~312~^0.022^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~315~^0.015^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~404~^0.045^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~405~^0.195^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~406~^0.175^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~410~^0.492^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~415~^0.044^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~501~^0.047^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~502~^0.152^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~503~^0.204^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~504~^0.329^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~505~^0.266^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~506~^0.084^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~507~^0.031^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~508~^0.162^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~509~^0.162^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~510~^0.225^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~511~^0.121^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~512~^0.092^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~513~^0.116^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~514~^0.254^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~515~^0.703^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~516~^0.072^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~517~^0.325^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~518~^0.183^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14428~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14428~^~606~^1.734^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~312~^0.009^236^0.002^~1~^~A~^^^1^0.000^0.229^235^0.005^0.012^~1, 2, 3~^~04/01/2006~ -~14429~^~315~^0.000^236^0.000^~1~^~A~^^^1^0.000^0.003^235^0.000^0.000^~1, 2, 3~^~04/01/2006~ -~14429~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~410~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14429~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14429~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14429~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~312~^0.020^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~315~^0.140^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~404~^0.023^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~405~^0.032^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~406~^0.040^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~410~^0.487^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~415~^0.049^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14430~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14430~^~606~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14431~^~312~^0.012^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~315~^0.032^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14431~^~404~^0.005^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~405~^0.007^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~406~^0.009^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~410~^0.112^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~415~^0.011^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14431~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14431~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14432~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14432~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14433~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14433~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14434~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~14434~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14436~^~312~^0.027^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~315~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~404~^0.120^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~405~^0.010^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~406~^0.090^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~410~^0.051^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~14436~^~415~^0.020^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14436~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14436~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14436~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~14437~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14438~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14439~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14440~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14440~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14450~^~312~^0.250^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~315~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~405~^0.802^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~406~^0.220^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~410~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~415~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14450~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14450~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14450~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14450~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14460~^~312~^0.006^2^^~1~^~A~^^^1^0.004^0.009^^^^~1~^~03/01/2007~ -~14460~^~315~^0.013^2^^~1~^~A~^^^1^0.000^0.025^^^^~1~^~03/01/2007~ -~14460~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~ -~14460~^~406~^0.220^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~410~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~415~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14460~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14460~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14460~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2007~ -~14461~^~315~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2007~ -~14461~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14461~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2007~ -~14461~^~406~^1.565^2^^~1~^~A~^^^1^1.540^1.590^^^^^~11/01/2007~ -~14461~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2007~ -~14461~^~415~^0.153^1^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~14461~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14461~^~606~^0.008^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~611~^0.004^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~612~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~613~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~617~^0.009^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~618~^0.011^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~14461~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~645~^0.011^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14461~^~646~^0.028^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~14462~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2008~ -~14462~^~315~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2008~ -~14462~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~406~^4.095^2^^~1~^~A~^^^1^4.050^4.140^1^^^^~10/01/2008~ -~14462~^~410~^1.570^2^^~1~^~A~^^^1^1.530^1.610^1^^^^~10/01/2008~ -~14462~^~415~^0.556^2^^~1~^~A~^^^1^0.523^0.590^1^^^^~10/01/2008~ -~14462~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14462~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~609~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~14462~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14462~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~14475~^~312~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~14475~^~315~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~14475~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14475~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~ -~14476~^~312~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^~1~^~02/01/2005~ -~14476~^~315~^0.146^2^^~1~^~A~^^^1^0.145^0.148^1^^^^~02/01/2005~ -~14476~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14476~^~606~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~04/01/2005~ -~14476~^~645~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~04/01/2005~ -~14530~^~312~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~315~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~404~^0.013^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~405~^0.010^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~410~^0.013^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14530~^~606~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~613~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~617~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~618~^0.013^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~619~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~645~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14530~^~646~^0.020^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~312~^0.009^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~315~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~404~^0.011^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~405~^0.006^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~406~^0.020^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~410~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14531~^~606~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~613~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~617~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~618~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~619~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~645~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14531~^~646~^0.012^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~312~^0.021^136^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~315~^0.018^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~404~^0.006^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~405~^0.004^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~406~^0.013^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~410~^0.000^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~415~^0.001^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14532~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14532~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~312~^0.021^136^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~315~^0.018^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~404~^0.006^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~405~^0.004^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~406~^0.013^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~410~^0.000^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~415~^0.001^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14533~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14533~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~312~^0.040^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~315~^0.017^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14534~^~404~^0.004^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~405~^0.012^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~406~^0.144^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~410~^0.000^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14534~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14534~^~606~^0.106^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~613~^0.078^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~614~^0.019^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~617~^0.021^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~618~^0.097^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~619~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~645~^0.022^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14534~^~646~^0.105^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~312~^0.045^74^0.015^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~315~^0.119^7^0.063^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~404~^0.018^33^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~405~^0.018^33^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~406~^0.213^33^0.015^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~410~^0.032^3^0.002^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14536~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14536~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~312~^0.025^11^0.007^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~315~^0.017^7^0.004^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~406~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~410~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~415~^0.000^4^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14537~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14537~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~312~^0.730^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~315~^0.665^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~404~^0.267^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~405~^1.400^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~406~^1.084^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~410~^3.826^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~415~^0.318^2^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14538~^~606~^1.777^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14538~^~607~^0.074^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~608~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~609~^0.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~610~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~611~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~612~^0.164^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~613~^1.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~614~^0.379^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~617~^0.910^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~618~^0.077^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~619~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~626~^0.048^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~628~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~645~^0.979^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14538~^~646~^0.088^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~14541~^~312~^0.021^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~315~^0.003^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~ -~14541~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~405~^0.002^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~406~^0.001^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~410~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14541~^~606~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~611~^0.003^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~612~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~613~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~617~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~618~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~14541~^~645~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14541~^~646~^0.001^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14542~^~312~^0.011^2^^~1~^~A~^^^1^0.010^0.013^1^^^~1~^~01/01/2009~ -~14542~^~315~^0.014^2^^~1~^~A~^^^1^0.013^0.015^1^^^^~01/01/2009~ -~14542~^~404~^0.017^2^^~1~^~A~^^^1^0.015^0.020^1^^^~1~^~01/01/2009~ -~14542~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2009~ -~14542~^~406~^0.120^2^^~1~^~A~^^^1^0.120^0.120^^^^^~01/01/2009~ -~14542~^~410~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~01/01/2009~ -~14542~^~415~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~01/01/2009~ -~14542~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14542~^~606~^0.026^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~ -~14542~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~612~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~613~^0.024^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~614~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~617~^0.007^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~618~^0.042^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~619~^0.017^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~626~^0.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~14542~^~645~^0.008^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14542~^~646~^0.059^0^^~1~^^^^^^^^^^^~01/01/2009~ -~14543~^~312~^0.010^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~315~^0.003^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~ -~14543~^~404~^0.004^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~405~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~406~^0.027^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~410~^0.023^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~415~^0.003^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14543~^~606~^0.006^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~613~^0.005^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~617~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~618~^0.009^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~619~^0.004^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~ -~14543~^~645~^0.002^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14543~^~646~^0.013^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~ -~14544~^~312~^0.008^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~315~^0.219^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14544~^~404~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~405~^0.014^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~406~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~410~^0.011^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14544~^~415~^0.000^1^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14544~^~606~^0.002^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~613~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~618~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~619~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~645~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14544~^~646~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~312~^0.015^28^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~315~^0.044^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~404~^0.010^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~405~^0.004^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~410~^0.011^3^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14545~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14545~^~606~^0.002^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~613~^0.002^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14545~^~617~^0.001^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~618~^0.002^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~619~^0.003^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~14545~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~14545~^~645~^0.001^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14545~^~646~^0.005^0^^~1~^^^^^^^^^^^~07/01/2015~ -~14548~^~312~^0.025^4^0.003^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~315~^2.965^4^0.076^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~405~^0.200^3^0.058^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~406~^0.407^3^0.009^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~410~^0.110^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14548~^~415~^0.022^0^^~4~^^^^^^^^^^^~05/01/1986~ -~14548~^~501~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~502~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~503~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~504~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~505~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~507~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~508~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~509~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~510~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~511~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~512~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~513~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~514~^0.017^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~515~^0.031^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~516~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~517~^0.003^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~518~^0.004^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14548~^~606~^0.037^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~613~^0.032^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~614~^0.005^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~617~^0.010^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~618~^0.030^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~619~^0.061^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~626~^0.001^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~645~^0.011^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14548~^~646~^0.091^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~312~^0.021^136^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~315~^0.018^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~404~^0.006^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~405~^0.004^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~406~^0.013^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~410~^0.000^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~415~^0.001^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14550~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14550~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~312~^0.021^136^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~315~^0.018^12^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~404~^0.006^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~405~^0.004^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~406~^0.013^16^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~410~^0.000^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~415~^0.001^8^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~501~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~502~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~503~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~504~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~505~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~506~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~507~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~508~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~509~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~510~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~511~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~512~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~513~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~514~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~515~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~516~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~517~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~518~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14551~^~606~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~613~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~614~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~617~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~618~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~619~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~626~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~645~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14551~^~646~^0.000^0^^~1~^^^^^^^^^^^~05/01/1986~ -~14552~^~312~^0.013^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~315~^0.036^0^^~4~^~BFSN~^~14400~^^^^^^^^^~04/01/2001~ -~14552~^~404~^0.000^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~405~^0.000^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~406~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~410~^0.000^0^^~4~^~BFSN~^~14400~^^^^^^^^^~02/01/2005~ -~14552~^~415~^0.000^1^^~1~^^^^^^^^^^^~02/01/2005~ -~14552~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14552~^~606~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14552~^~645~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14552~^~646~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~14553~^~312~^0.011^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~404~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~405~^0.010^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~406~^0.100^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~415~^0.020^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~14553~^~606~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~14553~^~645~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14553~^~646~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~14555~^~312~^0.007^0^^~4~^~BFZN~^~14429~^^^^^^^^^~01/01/2005~ -~14555~^~404~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~405~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~406~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~410~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~415~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~14555~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14555~^~606~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~613~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~614~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~617~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~618~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~626~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~645~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14555~^~646~^0.000^0^^~1~^^^^^^^^^^^~01/01/2005~ -~14557~^~312~^0.909^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~315~^0.707^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~ -~14557~^~404~^0.009^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~405~^0.056^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~406~^0.199^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~415~^0.909^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~606~^2.273^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~ -~14557~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~612~^0.006^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~613~^1.082^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~614~^1.162^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14557~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14557~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14557~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14557~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~ -~14557~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14557~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~14558~^~312~^0.098^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~315~^0.062^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~404~^0.043^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~405~^0.159^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~406~^0.098^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~410~^0.342^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~415~^0.108^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~606~^1.899^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~14558~^~607~^0.068^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~608~^0.068^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~609~^0.068^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~610~^0.068^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~611~^0.070^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~612~^0.273^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~613~^0.850^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~614~^0.431^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~617~^0.745^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~618~^0.110^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~619~^0.068^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~645~^0.745^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14558~^~646~^0.178^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~ -~14559~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~14559~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~ -~14559~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14599~^~312~^0.006^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~404~^0.011^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~405~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~406~^0.845^4^0.000^~8~^~LC~^^^1^0.845^0.845^3^0.845^0.845^~4~^~03/01/2011~ -~14599~^~415~^0.056^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~ -~14599~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14599~^~606~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~607~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~608~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~609~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~610~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~611~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~612~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~613~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~614~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~617~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~618~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~619~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~620~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~621~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~626~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~627~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~628~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~629~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~630~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~631~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~645~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14599~^~646~^0.000^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~ -~14601~^~312~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~315~^0.136^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~404~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~405~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~14601~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~410~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14601~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~613~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~617~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~618~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~619~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~14601~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14601~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~14602~^~312~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~315~^0.132^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~404~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14602~^~405~^0.031^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~406~^0.224^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~ -~14602~^~415~^0.057^1^^~1~^~A~^^^^^^^^^^~06/01/2005~ -~14602~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14604~^~312~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2007~ -~14604~^~315~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~02/01/2007~ -~14604~^~404~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~405~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~406~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~415~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14604~^~606~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~607~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~608~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~609~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~610~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~611~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~612~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~613~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~614~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~617~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~618~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~619~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~620~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~621~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~626~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~627~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~628~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~629~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~630~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~631~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~645~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14604~^~646~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~312~^0.007^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~404~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~405~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~406~^0.844^2^^~11~^~JO~^^^1^0.844^0.844^^^^^~02/01/2007~ -~14605~^~410~^0.422^2^^~8~^~LC~^^^1^0.422^0.422^^^^^~02/01/2007~ -~14605~^~415~^0.084^2^^~8~^~LC~^^^1^0.084^0.084^^^^^~02/01/2007~ -~14605~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14605~^~606~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~607~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~608~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~609~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~610~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~611~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~612~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~613~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~614~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~617~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~618~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~619~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~620~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~621~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~626~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~627~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~628~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~629~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~630~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~631~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~645~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14605~^~646~^0.000^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~ -~14607~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14608~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14609~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14610~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14611~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14612~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14613~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14614~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14615~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14616~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14617~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14618~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14619~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14620~^~415~^0.016^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14620~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14621~^~415~^0.016^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14621~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14622~^~415~^0.016^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~ -~14622~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14623~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14623~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~ -~14625~^~312~^0.005^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~404~^0.025^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~405~^0.340^1^^~8~^~LC~^^^1^0.340^0.340^0^^^^~03/01/2009~ -~14625~^~406~^2.000^1^^~8~^~LC~^^^1^2.000^2.000^0^^^^~03/01/2009~ -~14625~^~410~^1.000^1^^~8~^~LC~^^^1^1.000^1.000^0^^^^~03/01/2009~ -~14625~^~415~^0.200^1^^~8~^~LC~^^^1^0.200^0.200^0^^^^~03/01/2009~ -~14625~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14625~^~606~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~645~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~11/01/2007~ -~14625~^~646~^0.000^0^^~4~^~NC~^~14154~^^^^^^^^^~11/01/2007~ -~14626~^~312~^0.005^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~404~^0.025^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~405~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~406~^1.667^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~410~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~415~^0.167^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14626~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14626~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14626~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14627~^~312~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~315~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~05/01/2015~ -~14627~^~404~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~05/01/2015~ -~14627~^~405~^0.810^3^0.015^~1~^~A~^^^1^0.780^0.830^2^0.744^0.876^~2, 3~^~05/01/2015~ -~14627~^~406~^10.160^3^0.776^~1~^~A~^^^1^8.940^11.600^2^6.822^13.498^~2, 3~^~05/01/2015~ -~14627~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2015~ -~14627~^~415~^1.010^3^0.045^~1~^~A~^^^1^0.960^1.100^2^0.816^1.204^~2, 3~^~05/01/2015~ -~14627~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14627~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14627~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14628~^~312~^0.005^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~14628~^~405~^0.142^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~406~^0.833^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~410~^0.417^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~415~^0.083^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14628~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14628~^~606~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~607~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~608~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~609~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~610~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~611~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~612~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~613~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~614~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~617~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~618~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~619~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~620~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~621~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~626~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~627~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~628~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~629~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~630~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~631~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~645~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14628~^~646~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14629~^~312~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~315~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~404~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2011~ -~14629~^~405~^1.600^3^0.000^~1~^~A~^^^1^1.600^1.600^^^^~2, 3~^~11/01/2011~ -~14629~^~406~^9.820^3^0.154^~1~^~A~^^^1^9.570^10.100^2^9.159^10.481^~2, 3~^~11/01/2011~ -~14629~^~410~^4.167^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14629~^~415~^1.353^3^0.019^~1~^~A~^^^1^1.330^1.390^2^1.273^1.433^~2, 3~^~11/01/2011~ -~14629~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14629~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14629~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~ -~14630~^~312~^0.005^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~404~^0.025^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~405~^1.417^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~406~^8.333^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~410~^4.167^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~415~^0.833^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~14630~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14630~^~606~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~607~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~608~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~609~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~610~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~611~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~612~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~613~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~614~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~617~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~618~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~619~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~620~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~621~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~626~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~627~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~628~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~629~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~630~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~631~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~645~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14630~^~646~^0.000^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~ -~14632~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~315~^0.071^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~404~^0.430^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~405~^1.300^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~406~^6.600^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~410~^1.700^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~415~^0.540^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~502~^0.110^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~503~^0.145^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~504~^0.335^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~505~^0.225^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~506~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~508~^0.180^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~509~^0.150^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~510~^0.195^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~511~^0.120^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~512~^0.060^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~513~^0.135^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~514~^0.325^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~515~^0.775^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~516~^0.100^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~517~^0.425^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~518~^0.205^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~605~^0.411^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~606~^0.571^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~612~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~613~^0.248^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~614~^0.204^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~615~^0.025^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~617~^1.899^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~618~^0.173^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~624~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~645~^1.922^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~646~^0.178^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~654~^0.022^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~663~^0.367^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~665~^0.044^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~674~^1.532^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~675~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~14632~^~693~^0.367^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~14632~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~851~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~14632~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14632~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~14633~^~312~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~315~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~404~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~405~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~406~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~410~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~415~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14633~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14633~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~14634~^~312~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~315~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~404~^0.036^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~405~^0.172^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~406~^0.085^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~410~^0.328^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~415~^0.035^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~14634~^~606~^1.124^0^^~4~^~NC~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~607~^0.071^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~608~^0.037^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~609~^0.019^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~610~^0.045^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~611~^0.050^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~612~^0.162^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~613~^0.516^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~614~^0.224^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~617~^0.437^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~618~^0.063^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~619~^0.012^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~620~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~621~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~626~^0.030^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~627~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~628~^0.002^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~629~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~630~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~631~^0.000^0^^~4~^~BFFN~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~645~^0.470^0^^~4~^~NC~^~01079~^^^^^^^^^~04/01/2009~ -~14634~^~646~^0.075^0^^~4~^~NC~^~01079~^^^^^^^^^~04/01/2009~ -~14635~^~312~^0.012^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~404~^0.001^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~405~^0.001^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~406~^0.013^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~415~^0.016^3^0.000^~8~^~LC~^^^1^0.016^0.016^2^0.016^0.016^~4~^~05/01/2009~ -~14635~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14635~^~606~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~607~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~608~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~609~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~610~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~611~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~612~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~613~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~614~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~617~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~618~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~619~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~620~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~621~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~626~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~627~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~628~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~629~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~630~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~631~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~645~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14635~^~646~^0.000^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~ -~14636~^~312~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~315~^0.011^4^0.003^~1~^~A~^^^1^0.006^0.018^3^0.003^0.019^~1, 2, 3~^~04/01/2009~ -~14636~^~404~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~405~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~406~^0.015^4^0.010^~1~^~A~^^^1^0.005^0.044^3^-0.016^0.046^~1, 2, 3~^~04/01/2009~ -~14636~^~410~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~415~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~14636~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14636~^~606~^0.008^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~607~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~608~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~609~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~610~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~611~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~612~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~613~^0.007^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~614~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~617~^0.011^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~618~^0.010^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~619~^0.004^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~620~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~621~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~626~^0.002^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~627~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~628~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~629~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~630~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~631~^0.000^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~645~^0.012^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14636~^~646~^0.014^0^^~4~^~BFFN~^~09206~^^^^^^^^^~04/01/2009~ -~14637~^~312~^0.007^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~404~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~405~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~406~^0.844^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~415~^0.084^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14637~^~606~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~607~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~608~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~609~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~610~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~611~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~612~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~613~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~614~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~617~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~618~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~619~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~620~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~621~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~626~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~627~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~628~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~629~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~630~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~631~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~645~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14637~^~646~^0.000^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~ -~14638~^~312~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~315~^0.010^3^0.002^~1~^~A~^^^1^0.006^0.014^2^0.000^0.020^~1, 2, 3~^~05/01/2009~ -~14638~^~404~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~405~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~14638~^~406~^0.047^3^0.014^~1~^~A~^^^1^0.022^0.070^2^-0.013^0.107^~1, 2, 3~^~05/01/2009~ -~14638~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~14638~^~415~^0.017^3^0.002^~1~^~A~^^^1^0.015^0.020^2^0.009^0.024^~1, 2, 3~^~05/01/2009~ -~14639~^~312~^0.037^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~315~^0.282^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~404~^0.027^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~405~^0.142^3^0.071^~8~^~LC~^^^1^0.000^0.213^2^-0.163^0.446^~4~^~06/01/2009~ -~14639~^~406~^0.390^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~410~^0.146^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~415~^0.039^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~605~^0.000^3^0.000^~8~^~LC~^^^1^0.000^0.000^2^0.000^0.000^~4~^~06/01/2009~ -~14639~^~606~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~06/01/2009~ -~14639~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~617~^0.624^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~618~^0.305^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~619~^0.008^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~ -~14639~^~645~^0.625^2^^~8~^~LC~^^^1^0.625^0.625^1^^^^~06/01/2009~ -~14639~^~646~^0.313^2^^~8~^~LC~^^^1^0.208^0.417^1^^^^~06/01/2009~ -~14640~^~312~^0.005^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~404~^0.025^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2011~ -~14640~^~406~^0.015^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14640~^~410~^0.000^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14640~^~415~^0.000^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14640~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14640~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14640~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~312~^0.005^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~404~^0.025^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2011~ -~14641~^~406~^0.015^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14641~^~415~^0.000^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~ -~14641~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14641~^~606~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~607~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~608~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~609~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~610~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~611~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~612~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~613~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~614~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~617~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~618~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~619~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~620~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~621~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~626~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~627~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~628~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~629~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~630~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~631~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~645~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14641~^~646~^0.000^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~ -~14644~^~312~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~315~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~404~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~405~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~406~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~410~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~415~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~606~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~607~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~608~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~609~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~610~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~611~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~612~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~613~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~614~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~617~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~618~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~619~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~620~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~621~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~626~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~627~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~628~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~629~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~630~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~631~^0.000^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~ -~14644~^~645~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14644~^~646~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~14645~^~312~^0.009^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~404~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~405~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~406~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~415~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14645~^~606~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~607~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~608~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~609~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~610~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~611~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~612~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~613~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~614~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~617~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~618~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~619~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~620~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~621~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~626~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~627~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~628~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~629~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~630~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~631~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~645~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14645~^~646~^0.000^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~ -~14646~^~312~^0.009^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~404~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~405~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~406~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~415~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14646~^~606~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~607~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~608~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~609~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~610~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~611~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~612~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~613~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~614~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~617~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~618~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~619~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~620~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~621~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~626~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~627~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~628~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~629~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~630~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~631~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~645~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14646~^~646~^0.000^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~ -~14647~^~312~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~14647~^~315~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~14647~^~404~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~14647~^~405~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~14647~^~406~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~14647~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~14647~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~14647~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~14647~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14647~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~14648~^~312~^0.013^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~404~^0.095^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~14648~^~405~^0.014^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~406~^0.036^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~415~^0.032^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~14648~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~607~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~608~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~609~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~610~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~611~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~612~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~620~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~621~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~626~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~627~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~628~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~629~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~630~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~631~^0.000^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~ -~14648~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14648~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~14649~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~315~^0.477^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~406~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2015~ -~14649~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~ -~14649~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~14649~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14649~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~ -~14651~^~312~^0.013^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~315~^0.060^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~404~^0.003^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~405~^0.014^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~406~^0.036^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~410~^0.060^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~415~^0.032^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~605~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~606~^0.017^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~613~^0.015^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~614~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~617~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~618~^0.026^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~619~^0.004^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~645~^0.002^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~646~^0.030^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14651~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~ -~14654~^~312~^2.500^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~315~^125.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~404~^2.143^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~405~^2.125^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~406~^25.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~410~^12.500^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~415~^2.500^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~ -~14654~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~617~^2.907^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~618~^6.478^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~619~^0.794^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~645~^2.907^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~14654~^~646~^7.268^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~ -~15001~^~312~^0.211^10^0.086^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~315~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15001~^~404~^0.055^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~405~^0.256^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~406~^14.024^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~410~^0.645^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15001~^~415~^0.143^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~501~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~502~^0.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~503~^0.938^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~504~^1.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~505~^1.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~506~^0.602^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~507~^0.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~508~^0.794^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~509~^0.687^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~510~^1.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~511~^1.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~512~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~513~^1.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~514~^2.084^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~515~^3.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~516~^0.977^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~517~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~518~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~606~^1.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~611~^0.014^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~612~^0.302^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~613~^0.715^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~614~^0.252^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~617~^0.624^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~618~^0.097^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~620~^0.007^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~621~^0.911^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~626~^0.400^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~627~^0.055^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~15001~^~629~^0.538^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~630~^0.115^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~631~^0.029^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~645~^1.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15001~^~646~^1.637^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~312~^0.339^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~315~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15002~^~404~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~405~^0.363^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~406~^19.903^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~410~^0.909^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15002~^~415~^0.203^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~501~^0.324^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~502~^1.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~503~^1.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~504~^2.348^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~505~^2.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~506~^0.855^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~507~^0.310^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~508~^1.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~509~^0.975^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~510~^1.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~511~^1.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~512~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~513~^1.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~514~^2.958^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~515~^4.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~516~^1.387^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~517~^1.021^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~518~^1.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~606~^2.203^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15002~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15002~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15002~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15002~^~611~^0.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~612~^0.428^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~613~^1.326^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~614~^0.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~617~^2.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~618~^0.362^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~619~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~620~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~621~^1.292^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~626~^0.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~627~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~628~^0.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~629~^0.763^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~630~^0.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~631~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~645~^3.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15002~^~646~^2.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~312~^0.093^51^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~315~^0.889^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~404~^0.075^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~405~^0.074^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~406~^1.250^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~415~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15003~^~501~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~502~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~503~^0.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~504~^1.533^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~505~^1.732^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~506~^0.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~507~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~508~^0.736^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~509~^0.637^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~510~^0.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~511~^1.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~512~^0.555^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~513~^1.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~514~^1.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~515~^2.815^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~516~^0.905^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~517~^0.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~518~^0.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~606~^0.780^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~612~^0.087^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~613~^0.593^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~614~^0.100^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~617~^0.991^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~618~^0.087^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~619~^0.111^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~620~^0.144^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~621~^0.357^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~626~^0.382^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~627~^0.039^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~628~^0.057^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~629~^0.238^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~631~^0.084^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~645~^1.431^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15003~^~646~^1.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~312~^0.031^132^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~404~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~405~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~406~^2.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15004~^~501~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~502~^0.777^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~503~^0.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~504~^1.441^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~505~^1.628^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~506~^0.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~507~^0.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~508~^0.692^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~509~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~510~^0.914^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~511~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~512~^0.522^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~513~^1.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~514~^1.816^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~515~^2.647^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~516~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~517~^0.627^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~518~^0.723^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~606~^0.507^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~612~^0.042^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~613~^0.379^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~614~^0.086^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~617~^0.448^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~618~^0.015^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~619~^0.015^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~621~^0.585^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~626~^0.151^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~628~^0.057^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~629~^0.169^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15004~^~645~^0.660^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15004~^~646~^0.784^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~312~^0.053^108^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~315~^0.021^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~404~^0.058^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~405~^0.080^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~406~^5.950^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~410~^0.828^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~415~^0.402^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~501~^0.224^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~502~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~503~^0.923^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~504~^1.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~505~^1.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~506~^0.593^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~507~^0.215^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~508~^0.782^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~509~^0.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~510~^1.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~511~^1.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~512~^0.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~513~^1.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~514~^2.052^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~515~^2.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~516~^0.962^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~517~^0.709^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~518~^0.818^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~606~^0.915^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~612~^0.179^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~613~^0.576^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~614~^0.160^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~617~^0.684^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~618~^0.060^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15005~^~621~^0.519^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~626~^0.277^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~627~^0.167^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~628~^0.340^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~629~^0.252^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~630~^0.492^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~631~^0.062^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~645~^1.793^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15005~^~646~^1.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~312~^0.200^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~315~^0.700^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~404~^0.372^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~405~^0.141^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~406~^1.620^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~410~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15006~^~501~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~502~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~503~^0.890^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~504~^1.570^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~505~^1.774^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~506~^0.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~507~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~508~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~509~^0.652^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~510~^0.995^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~511~^1.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~512~^0.569^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~513~^1.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~514~^1.978^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~515~^2.883^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~516~^0.927^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~517~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~518~^0.788^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~606~^0.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~612~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~613~^0.120^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~614~^0.037^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~617~^0.098^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~618~^0.009^7^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~620~^0.096^6^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~621~^0.096^7^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~626~^0.026^7^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~628~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~629~^0.070^7^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~630~^0.003^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~631~^0.026^6^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~645~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15006~^~646~^0.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~312~^0.054^72^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~404~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~405~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~406~^4.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~501~^0.194^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~502~^0.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~503~^0.796^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~504~^1.405^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~505~^1.587^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~506~^0.512^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~507~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~508~^0.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~509~^0.583^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~510~^0.890^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~511~^1.034^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~512~^0.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~513~^1.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~514~^1.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~515~^2.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~516~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~517~^0.611^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~518~^0.705^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15007~^~606~^3.380^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~645~^3.380^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15007~^~646~^0.590^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~312~^0.057^32^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~315~^0.042^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~404~^0.115^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~405~^0.055^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~406~^1.640^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15008~^~415~^0.190^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~501~^0.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~502~^0.782^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~503~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~504~^1.449^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~505~^1.638^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~506~^0.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~507~^0.191^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~508~^0.696^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~509~^0.602^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~510~^0.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~511~^1.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~512~^0.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~513~^1.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~514~^1.826^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~515~^2.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~516~^0.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~517~^0.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~518~^0.728^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~606~^1.083^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15008~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15008~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15008~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15008~^~612~^0.114^13^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~613~^0.657^13^0.032^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~614~^0.185^13^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~617~^1.150^13^0.105^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~618~^0.517^13^0.104^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~619~^0.270^13^0.042^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~620~^0.152^12^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~621~^0.114^13^0.019^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~626~^0.655^13^0.060^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~627~^0.058^9^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~628~^0.071^11^0.017^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~629~^0.238^12^0.040^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~630~^0.402^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~631~^0.082^11^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~645~^2.328^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15008~^~646~^1.431^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~312~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~315~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~404~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~406~^2.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15009~^~415~^0.219^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~501~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~502~^1.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~503~^1.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~504~^1.858^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~505~^2.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~506~^0.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~507~^0.245^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~508~^0.893^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~509~^0.772^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~510~^1.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~511~^1.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~512~^0.673^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~513~^1.383^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~514~^2.341^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~515~^3.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~516~^1.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~517~^0.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~518~^0.933^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~606~^1.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~612~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~613~^0.842^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~614~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~617~^1.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~618~^0.663^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~619~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~620~^0.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~621~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~626~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~627~^0.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~628~^0.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~629~^0.305^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~630~^0.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~631~^0.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~645~^2.985^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15009~^~646~^1.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~312~^0.034^4^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~315~^0.025^4^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~404~^0.210^4^0.030^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~405~^0.072^5^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~406~^1.907^4^0.167^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~410~^0.765^4^0.120^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~415~^0.116^4^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~501~^0.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~502~^0.718^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~503~^0.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~504~^1.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~505~^1.504^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~506~^0.485^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~507~^0.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~508~^0.639^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~509~^0.553^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~510~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~511~^0.980^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~512~^0.482^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~513~^0.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~514~^1.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~515~^2.445^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~516~^0.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~517~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~518~^0.668^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~606~^0.722^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15010~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15010~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15010~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15010~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15010~^~612~^0.064^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~613~^0.442^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~614~^0.150^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~617~^0.594^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~618~^0.101^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~619~^0.071^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~620~^0.149^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~621~^0.234^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~626~^0.176^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~627~^0.013^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~628~^0.021^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~629~^0.130^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~630~^0.008^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~631~^0.100^10^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~645~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15010~^~646~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~312~^0.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~315~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15011~^~404~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~405~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~406~^2.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~410~^0.730^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15011~^~415~^0.190^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15011~^~501~^0.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~502~^0.790^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~503~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~504~^1.508^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~505~^1.597^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~506~^0.527^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~507~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~508~^0.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~509~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~510~^0.943^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~511~^1.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~512~^0.530^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~513~^1.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~514~^1.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~515~^2.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~516~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~517~^0.686^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~518~^0.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~606~^3.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~612~^0.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~613~^2.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~614~^1.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~617~^5.347^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~618~^2.616^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~619~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~620~^0.098^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~621~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~626~^0.171^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~627~^0.030^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~628~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~629~^0.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~630~^0.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~631~^0.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~645~^5.611^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15011~^~646~^3.325^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~312~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~315~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~404~^0.190^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~405~^0.620^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~406~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~410~^3.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~415~^0.320^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~501~^0.323^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~502~^1.263^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~503~^1.035^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~504~^2.133^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~505~^1.834^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~506~^0.646^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~507~^0.449^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~508~^1.071^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~509~^0.968^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~510~^1.263^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~511~^1.590^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~512~^0.649^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~513~^1.653^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~514~^2.385^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~515~^3.633^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~516~^0.740^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~517~^1.200^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~518~^1.897^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15012~^~606~^4.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~612~^0.212^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~613~^3.555^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~614~^0.293^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~617~^3.165^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~618~^0.081^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~619~^0.017^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~620~^0.505^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~621~^3.800^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~626~^1.043^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~627~^0.033^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~628~^0.309^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~629~^2.741^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~630~^0.114^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~631~^0.229^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15012~^~645~^4.631^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15012~^~646~^7.405^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~312~^0.072^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~315~^0.067^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~404~^0.088^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~406~^2.510^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15013~^~501~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~502~^0.832^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~503~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~504~^1.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~505~^1.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~506~^0.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~508~^0.741^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~509~^0.641^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~510~^0.978^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~511~^1.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~512~^0.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~513~^1.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~514~^1.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~515~^2.834^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~516~^0.911^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~517~^0.671^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~518~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~606~^0.421^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15013~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15013~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15013~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15013~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15013~^~612~^0.088^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~613~^0.285^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~614~^0.048^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~617~^0.291^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~618~^0.069^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~619~^0.055^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~620~^0.055^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~621~^0.257^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~626~^0.114^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~627~^0.029^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~628~^0.019^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~629~^0.095^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~630~^0.045^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~631~^0.053^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~645~^0.469^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15013~^~646~^0.613^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~312~^0.215^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~315~^0.021^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~404~^0.046^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~405~^0.159^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~406~^2.310^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~410~^0.308^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~415~^0.268^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~501~^0.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~502~^0.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~503~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~504~^1.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~505~^1.503^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~506~^0.484^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~507~^0.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~508~^0.639^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~509~^0.552^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~510~^0.843^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~511~^0.979^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~512~^0.482^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~513~^0.990^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~514~^1.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~515~^2.443^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~516~^0.785^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~517~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~518~^0.668^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~606~^1.741^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~612~^0.654^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~613~^0.888^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~614~^0.199^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~617~^2.450^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~618~^0.422^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~620~^0.106^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~621~^0.612^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~626~^2.665^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~627~^0.227^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~628~^0.369^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~629~^0.639^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15014~^~631~^0.268^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~645~^5.484^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15014~^~646~^2.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~312~^0.028^136^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~404~^0.076^40^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~405~^0.065^68^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~406~^2.063^69^0.074^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~410~^0.153^45^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~415~^0.245^4^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~501~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~502~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~503~^0.821^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~504~^1.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~505~^1.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~506~^0.527^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~507~^0.191^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~508~^0.695^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~509~^0.601^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~510~^0.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~511~^1.066^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~512~^0.524^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~513~^1.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~514~^1.823^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~515~^2.658^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~516~^0.855^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~517~^0.630^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~518~^0.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~606~^0.131^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15015~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15015~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15015~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15015~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15015~^~612~^0.009^25^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~613~^0.091^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~614~^0.030^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~617~^0.061^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~618~^0.005^25^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~619~^0.001^19^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~620~^0.022^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~621~^0.120^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~626~^0.016^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~627~^0.001^22^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~628~^0.015^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~629~^0.064^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~630~^0.003^19^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~631~^0.010^22^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~645~^0.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15015~^~646~^0.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~312~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15016~^~404~^0.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~405~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~406~^2.513^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~410~^0.180^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15016~^~415~^0.283^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~501~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~502~^1.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~503~^1.052^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~504~^1.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~505~^2.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~506~^0.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~507~^0.245^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~508~^0.891^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~509~^0.771^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~510~^1.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~511~^1.366^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~512~^0.672^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~513~^1.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~514~^2.338^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~515~^3.408^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~516~^1.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~517~^0.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~518~^0.932^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~606~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15016~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15016~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15016~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15016~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15016~^~612~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~613~^0.117^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~614~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~617~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~618~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~619~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~620~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~621~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~626~^0.021^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~627~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~628~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~629~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~630~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~631~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~645~^0.124^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15016~^~646~^0.292^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~312~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15017~^~404~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~405~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~406~^2.505^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~410~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15017~^~415~^0.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~501~^0.255^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~502~^0.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~503~^1.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~504~^1.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~505~^2.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~506~^0.674^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~507~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~508~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~509~^0.768^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~510~^1.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~511~^1.362^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~512~^0.670^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~513~^1.377^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~514~^2.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~515~^3.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~516~^1.093^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~517~^0.805^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~518~^0.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~606~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15017~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15017~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15017~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15017~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15017~^~612~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~613~^0.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~614~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~617~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~618~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~619~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~620~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~621~^0.153^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~626~^0.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~627~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~628~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~629~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~630~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~631~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~645~^0.124^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15017~^~646~^0.291^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~312~^0.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~315~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15018~^~404~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~405~^0.240^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~406~^7.500^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~410~^1.675^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~415~^0.864^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~501~^0.704^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~502~^2.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~503~^2.895^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~504~^5.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~505~^5.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~506~^1.859^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~507~^0.673^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~508~^2.452^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~509~^2.121^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~510~^3.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~511~^3.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~512~^1.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~513~^3.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~514~^6.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~515~^9.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~516~^3.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~517~^2.221^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~518~^2.563^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~606~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15018~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15018~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15018~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15018~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15018~^~612~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~613~^0.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~614~^0.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~617~^0.215^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~618~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~619~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~620~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~621~^0.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~626~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~627~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~628~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~629~^0.011^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~630~^0.011^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~631~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~645~^0.342^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15018~^~646~^0.804^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15019~^~312~^0.019^11^0.001^~1~^~A~^^^1^0.019^0.027^10^0.018^0.021^~1, 2, 3~^~07/01/2010~ -~15019~^~315~^0.012^11^0.001^~1~^~A~^^^1^0.011^0.022^10^0.010^0.014^~1, 2, 3~^~07/01/2010~ -~15019~^~404~^0.033^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.017^0.048^~2, 3~^~07/01/2010~ -~15019~^~405~^0.045^4^0.009^~1~^~A~^^^1^0.020^0.060^3^0.017^0.073^~2, 3~^~07/01/2010~ -~15019~^~406~^1.095^4^0.352^~1~^~A~^^^1^0.110^1.650^3^-0.025^2.215^~2, 3~^~07/01/2010~ -~15019~^~410~^0.294^4^0.087^~1~^~A~^^^1^0.148^0.490^3^0.018^0.570^~1, 2, 3~^~07/01/2010~ -~15019~^~415~^0.117^4^0.014^~1~^~A~^^^1^0.081^0.149^3^0.072^0.161^~2, 3~^~07/01/2010~ -~15019~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~502~^0.658^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~503~^0.679^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~504~^1.211^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~505~^1.399^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~506~^0.418^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~507~^0.136^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~508~^0.595^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~509~^0.553^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~510~^0.731^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~511~^0.982^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~512~^0.324^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~513~^0.877^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~514~^1.525^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~515~^2.297^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~516~^0.710^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~517~^0.512^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~518~^0.647^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15019~^~605~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~606~^0.085^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15019~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~609~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15019~^~611~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15019~^~612~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.005^10^0.003^0.004^~2, 3~^~07/01/2010~ -~15019~^~613~^0.057^11^0.005^~1~^~A~^^^1^0.030^0.083^10^0.046^0.068^~2, 3~^~07/01/2010~ -~15019~^~614~^0.021^11^0.001^~1~^~A~^^^1^0.014^0.028^10^0.018^0.024^~2, 3~^~07/01/2010~ -~15019~^~615~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~617~^0.042^11^0.004^~1~^~AS~^^^1^0.021^0.063^10^0.032^0.051^~2, 3~^~07/01/2010~ -~15019~^~618~^0.017^11^0.003^~1~^~AS~^^^1^0.005^0.029^10^0.010^0.023^~2, 3~^~07/01/2010~ -~15019~^~619~^0.001^11^0.000^~1~^~AS~^^^1^0.001^0.002^10^0.001^0.001^~2, 3~^~07/01/2010~ -~15019~^~620~^0.008^11^0.001^~1~^~A~^^^1^0.003^0.012^10^0.006^0.010^~2, 3~^~07/01/2010~ -~15019~^~621~^0.096^11^0.007^~1~^~A~^^^1^0.060^0.137^10^0.082^0.111^~2, 3~^~07/01/2010~ -~15019~^~624~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~625~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~626~^0.004^11^0.000^~1~^~AS~^^^1^0.002^0.007^10^0.003^0.005^~2, 3~^~07/01/2010~ -~15019~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~628~^0.005^11^0.001^~1~^~A~^^^1^0.003^0.012^10^0.003^0.008^~2, 3~^~07/01/2010~ -~15019~^~629~^0.034^11^0.004^~1~^~A~^^^1^0.016^0.051^10^0.026^0.042^~2, 3~^~07/01/2010~ -~15019~^~630~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.002^10^0.000^0.001^~2, 3~^~07/01/2010~ -~15019~^~631~^0.004^11^0.000^~1~^~A~^^^1^0.002^0.007^10^0.003^0.005^~2, 3~^~07/01/2010~ -~15019~^~645~^0.073^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~646~^0.164^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~652~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.001^~2, 3~^~07/01/2010~ -~15019~^~653~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~654~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~662~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~663~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.002^0.003^~2, 3~^~07/01/2010~ -~15019~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~665~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.016^10^-0.001^0.005^~1, 2, 3~^~07/01/2010~ -~15019~^~670~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15019~^~671~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.005^10^0.003^0.004^~2, 3~^~07/01/2010~ -~15019~^~672~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~673~^0.004^11^0.000^~1~^~A~^^^1^0.002^0.006^10^0.003^0.004^~2, 3~^~07/01/2010~ -~15019~^~674~^0.039^11^0.004^~1~^~A~^^^1^0.019^0.061^10^0.030^0.048^~2, 3~^~07/01/2010~ -~15019~^~675~^0.015^11^0.003^~1~^~A~^^^1^0.004^0.028^10^0.008^0.021^~2, 3~^~07/01/2010~ -~15019~^~676~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15019~^~687~^0.014^11^0.006^~1~^~A~^^^1^0.000^0.060^10^0.001^0.026^~1, 2, 3~^~07/01/2010~ -~15019~^~689~^0.002^11^0.000^~1~^~AS~^^^1^0.000^0.004^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15019~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15019~^~697~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.010^10^0.000^0.004^~1, 2, 3~^~07/01/2010~ -~15019~^~851~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.001^~2, 3~^~07/01/2010~ -~15019~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15019~^~853~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15019~^~858~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15020~^~312~^0.042^92^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~315~^0.025^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~404~^0.075^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~405~^0.095^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~406~^4.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15020~^~501~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~502~^0.780^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~503~^0.819^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~504~^1.445^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~505~^1.633^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~506~^0.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~507~^0.191^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~508~^0.694^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~509~^0.600^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~510~^0.916^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~511~^1.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~512~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~513~^1.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~514~^1.821^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~515~^2.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~516~^0.854^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~517~^0.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~518~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~606~^1.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~612~^0.049^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~613~^0.836^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~614~^0.203^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~617~^0.593^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~618~^0.046^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~619~^0.009^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~620~^0.092^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~621~^0.097^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~626~^0.464^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~627~^0.011^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~628~^0.086^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~629~^0.123^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15020~^~631~^0.086^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~645~^1.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15020~^~646~^0.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~312~^0.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~315~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~404~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~405~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~406~^4.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~410~^0.740^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~415~^0.260^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15021~^~501~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~502~^0.788^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~503~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~504~^1.480^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~505~^1.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~506~^0.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~507~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~508~^0.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~509~^0.621^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~510~^0.947^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~511~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~512~^0.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~513~^1.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~514~^1.791^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~515~^2.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~516~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~517~^0.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~518~^0.788^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~606~^3.476^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~612~^0.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~613~^2.194^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~614~^1.193^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~617~^4.789^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~618~^2.376^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~619~^0.157^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~620~^0.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~621~^0.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~626~^0.444^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~627~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~628~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~629~^0.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~631~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~645~^5.320^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15021~^~646~^2.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~312~^0.018^74^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~404~^0.042^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~405~^0.133^7^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~406~^2.686^7^0.083^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~410~^0.279^7^0.028^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~415~^0.387^3^0.085^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~501~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~502~^0.833^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~503~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~504~^1.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~505~^1.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~506~^0.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~508~^0.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~509~^0.641^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~510~^0.979^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~511~^1.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~512~^0.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~513~^1.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~514~^1.945^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~515~^2.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~516~^0.912^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~517~^0.672^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~518~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15022~^~606~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~645~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15022~^~646~^0.280^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~312~^0.041^64^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~404~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~406~^6.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15023~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~502~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~503~^0.852^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~504~^1.504^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~505~^1.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~506~^0.548^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~508~^0.722^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~509~^0.625^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~510~^0.953^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~511~^1.107^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~512~^0.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~513~^1.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~514~^1.894^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~515~^2.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~516~^0.888^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~517~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~518~^0.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~606~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15023~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15023~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15023~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15023~^~611~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~612~^0.014^3^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~613~^0.120^3^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~614~^0.046^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~617~^0.086^3^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~618~^0.036^3^0.018^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~619~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~620~^0.002^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~621~^0.088^3^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~626~^0.023^3^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~627~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~628~^0.003^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~629~^0.020^3^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~630~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~631~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~645~^0.121^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15023~^~646~^0.165^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~312~^0.232^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~315~^0.700^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~404~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~405~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~406~^2.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15024~^~501~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~502~^0.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~503~^0.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~504~^1.425^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~505~^1.611^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~506~^0.519^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~507~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~508~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~509~^0.592^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~510~^0.904^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~511~^1.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~512~^0.516^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~513~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~514~^1.796^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~515~^2.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~516~^0.842^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~517~^0.620^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~518~^0.716^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~606~^1.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~612~^0.105^7^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~613~^0.872^7^0.042^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~614~^0.142^7^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~617~^1.199^7^0.101^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~618~^0.155^7^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~619~^0.114^6^0.041^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~620~^0.224^6^0.059^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~621~^0.287^7^0.078^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~626~^0.791^7^0.062^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~628~^0.081^7^0.028^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~629~^0.230^7^0.024^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~630~^0.119^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~631~^0.144^7^0.020^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~645~^2.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15024~^~646~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~312~^0.023^30^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~315~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~404~^0.150^4^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~405~^0.040^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~406~^3.500^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~410~^0.240^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~415~^0.067^10^0.026^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~502~^0.809^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~503~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~504~^1.499^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~505~^1.694^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~506~^0.546^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~508~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~509~^0.623^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~510~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~511~^1.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~512~^0.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~513~^1.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~514~^1.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~515~^2.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~516~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~517~^0.652^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~518~^0.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~606~^2.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~612~^0.580^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~613~^1.585^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~614~^0.191^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~617~^2.772^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~618~^0.196^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~619~^0.432^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~620~^0.095^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~621~^0.063^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~626~^1.255^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~628~^3.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~629~^0.084^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15025~^~631~^0.074^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~645~^7.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15025~^~646~^0.947^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~312~^0.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~315~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15026~^~404~^0.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~405~^0.051^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~406~^4.487^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~410~^0.280^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15026~^~415~^0.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~501~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~502~^1.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~503~^1.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~504~^1.922^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~505~^2.171^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~506~^0.700^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~507~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~508~^0.923^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~509~^0.798^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~510~^1.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~511~^1.415^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~512~^0.696^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~513~^1.430^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~514~^2.421^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~515~^3.530^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~516~^1.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~517~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~518~^0.965^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~606~^3.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~612~^0.740^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~613~^2.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~614~^0.245^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~617~^3.554^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~618~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~619~^0.554^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~620~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~621~^0.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~626~^1.609^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~628~^3.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~629~^0.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15026~^~631~^0.095^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~645~^9.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15026~^~646~^1.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15027~^~312~^0.059^18^0.001^~1~^~A~^^^1^0.048^0.077^12^0.056^0.061^~2, 3~^~03/01/2013~ -~15027~^~315~^0.182^18^0.004^~1~^~A~^^^1^0.118^0.258^8^0.173^0.191^~2, 3~^~03/01/2013~ -~15027~^~404~^0.122^9^0.005^~1~^~A~^^^1^0.070^0.160^4^0.107^0.137^~2, 3~^~03/01/2013~ -~15027~^~405~^0.116^9^0.005^~1~^~A~^^^1^0.070^0.160^3^0.101^0.131^~2, 3~^~03/01/2013~ -~15027~^~406~^1.536^9^0.058^~1~^~A~^^^1^1.050^2.120^4^1.368^1.703^~2, 3~^~03/01/2013~ -~15027~^~410~^0.272^6^0.001^~1~^~A~^^^1^0.260^0.300^1^0.256^0.287^~2, 3~^~03/01/2013~ -~15027~^~415~^0.078^9^0.005^~1~^~A~^^^1^0.055^0.118^4^0.064^0.093^~2, 3~^~03/01/2013~ -~15027~^~501~^0.122^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~502~^0.372^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~503~^0.429^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~504~^0.852^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~505~^0.795^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~506~^0.296^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~508~^0.470^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~509~^0.286^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~510~^0.500^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~511~^0.592^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~512~^0.230^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~513~^0.546^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~514~^0.816^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~515~^2.317^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~516~^0.474^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~517~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~518~^0.490^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~15027~^~521~^0.002^3^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~605~^0.124^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~606~^3.733^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~607~^0.004^6^0.004^~1~^~A~^^^1^0.000^0.020^1^-0.048^0.056^~1, 2, 3~^~03/01/2013~ -~15027~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~15027~^~609~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^1^0.004^0.008^~2, 3~^~03/01/2013~ -~15027~^~610~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^3^0.006^0.008^~2, 3~^~03/01/2013~ -~15027~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.005^3^0.003^0.005^~1, 2, 3~^~03/01/2013~ -~15027~^~612~^0.116^6^0.012^~1~^~A~^^^1^0.015^0.158^3^0.077^0.155^~2, 3~^~03/01/2013~ -~15027~^~613~^3.084^6^0.210^~1~^~A~^^^1^1.546^3.968^2^2.303^3.866^~2, 3~^~03/01/2013~ -~15027~^~614~^0.408^6^0.035^~1~^~A~^^^1^0.347^0.571^2^0.272^0.544^~2, 3~^~03/01/2013~ -~15027~^~615~^0.044^6^0.003^~1~^~A~^^^1^0.038^0.053^2^0.030^0.058^~2, 3~^~03/01/2013~ -~15027~^~617~^3.052^6^0.196^~1~^~AS~^^^1^2.444^3.677^2^1.987^4.118^~2, 3~^~03/01/2013~ -~15027~^~618~^7.420^6^0.478^~1~^~AS~^^^1^5.528^8.585^3^5.728^9.113^~2, 3~^~03/01/2013~ -~15027~^~619~^0.248^6^0.091^~1~^~AS~^^^1^0.036^1.147^1^-0.881^1.377^~2, 3~^~03/01/2013~ -~15027~^~620~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^1^0.004^0.010^~2, 3~^~03/01/2013~ -~15027~^~621~^0.088^6^0.002^~1~^~A~^^^1^0.077^0.098^3^0.080^0.096^~2, 3~^~03/01/2013~ -~15027~^~624~^0.025^6^0.003^~1~^~A~^^^1^0.018^0.042^2^0.013^0.037^~2, 3~^~03/01/2013~ -~15027~^~626~^0.080^6^0.007^~1~^~AS~^^^1^0.019^0.105^3^0.057^0.103^~2, 3~^~03/01/2013~ -~15027~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^1^-0.002^0.006^~1, 2, 3~^~03/01/2013~ -~15027~^~628~^0.049^6^0.005^~1~^~A~^^^1^0.023^0.080^2^0.015^0.082^~2, 3~^~03/01/2013~ -~15027~^~629~^0.050^6^0.001^~1~^~A~^^^1^0.048^0.053^3^0.046^0.054^~2, 3~^~03/01/2013~ -~15027~^~630~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.006^1^-0.005^0.010^~2, 3~^~03/01/2013~ -~15027~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^1^0.001^0.007^~2, 3~^~03/01/2013~ -~15027~^~645~^3.193^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~646~^7.824^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.004^0.006^~2, 3~^~03/01/2013~ -~15027~^~653~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.015^3^0.012^0.016^~2, 3~^~03/01/2013~ -~15027~^~654~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.019^2^0.010^0.020^~2, 3~^~03/01/2013~ -~15027~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~663~^0.013^6^0.001^~1~^~A~^^^1^0.005^0.016^1^0.003^0.023^~2, 3~^~03/01/2013~ -~15027~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.002^0.003^~1, 2, 3~^~03/01/2013~ -~15027~^~665~^0.108^6^0.008^~1~^~A~^^^1^0.018^0.173^2^0.075^0.142^~2, 3~^~03/01/2013~ -~15027~^~670~^0.024^6^0.001^~1~^~A~^^^1^0.013^0.029^1^0.015^0.032^~2, 3~^~03/01/2013~ -~15027~^~671~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^1^0.000^0.005^~1, 2, 3~^~03/01/2013~ -~15027~^~672~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.006^2^0.001^0.004^~1, 2, 3~^~03/01/2013~ -~15027~^~673~^0.080^6^0.007^~1~^~A~^^^1^0.019^0.105^3^0.057^0.102^~2, 3~^~03/01/2013~ -~15027~^~674~^3.039^6^0.195^~1~^~A~^^^1^2.428^3.663^2^1.979^4.099^~2, 3~^~03/01/2013~ -~15027~^~675~^7.289^6^0.477^~1~^~A~^^^1^5.446^8.383^3^5.624^8.953^~2, 3~^~03/01/2013~ -~15027~^~676~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^1^-0.003^0.007^~1, 2, 3~^~03/01/2013~ -~15027~^~685~^0.011^6^0.001^~1~^~A~^^^1^0.002^0.029^2^0.008^0.014^~1, 2, 3~^~03/01/2013~ -~15027~^~687~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^1^0.005^0.011^~2, 3~^~03/01/2013~ -~15027~^~689~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~03/01/2013~ -~15027~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~695~^0.110^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~15027~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~15027~^~851~^0.236^6^0.091^~1~^~A~^^^1^0.032^1.122^1^-0.902^1.374^~2, 3~^~03/01/2013~ -~15027~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~15027~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~15027~^~856~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.000^0.004^~1, 2, 3~^~03/01/2013~ -~15027~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~15028~^~312~^0.019^4^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~315~^0.014^4^0.003^~1~^~A~^^^1^0.011^0.022^3^0.005^0.022^~1, 2, 3~^~07/01/2010~ -~15028~^~404~^0.022^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.008^0.036^~1, 2, 3~^~07/01/2010~ -~15028~^~405~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~07/01/2010~ -~15028~^~406~^1.040^4^0.204^~1~^~A~^^^1^0.690^1.570^3^0.391^1.689^~2, 3~^~07/01/2010~ -~15028~^~410~^0.185^2^^~1~^~A~^^^1^0.130^0.240^1^^^~1~^~07/01/2010~ -~15028~^~415~^0.098^4^0.004^~1~^~A~^^^1^0.088^0.106^3^0.086^0.110^~2, 3~^~07/01/2010~ -~15028~^~501~^0.161^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~502~^0.585^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~503~^0.614^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~504~^1.087^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~505~^1.270^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~506~^0.455^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~507~^0.149^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~508~^0.508^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~509~^0.479^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~510~^0.651^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~511~^0.895^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~512~^0.304^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~513~^0.771^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~514~^1.382^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~515~^2.127^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~516~^0.640^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~517~^0.487^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~518~^0.579^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15028~^~605~^0.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~606~^0.441^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15028~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~610~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~07/01/2010~ -~15028~^~611~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.009^3^0.003^0.010^~2, 3~^~07/01/2010~ -~15028~^~612~^0.087^4^0.027^~1~^~A~^^^1^0.031^0.161^3^0.000^0.173^~2, 3~^~07/01/2010~ -~15028~^~613~^0.282^4^0.078^~1~^~A~^^^1^0.118^0.493^3^0.033^0.530^~2, 3~^~07/01/2010~ -~15028~^~614~^0.053^4^0.006^~1~^~A~^^^1^0.045^0.069^3^0.035^0.070^~2, 3~^~07/01/2010~ -~15028~^~615~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15028~^~617~^0.358^4^0.111^~1~^~AS~^^^1^0.129^0.662^3^0.004^0.711^~2, 3~^~07/01/2010~ -~15028~^~618~^0.045^4^0.006^~1~^~AS~^^^1^0.029^0.055^3^0.027^0.062^~2, 3~^~07/01/2010~ -~15028~^~619~^0.017^4^0.004^~1~^~AS~^^^1^0.012^0.028^3^0.006^0.029^~2, 3~^~07/01/2010~ -~15028~^~620~^0.015^4^0.001^~1~^~A~^^^1^0.011^0.017^3^0.011^0.019^~2, 3~^~07/01/2010~ -~15028~^~621~^0.108^4^0.012^~1~^~A~^^^1^0.080^0.137^3^0.070^0.145^~2, 3~^~07/01/2010~ -~15028~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15028~^~626~^0.090^4^0.029^~1~^~AS~^^^1^0.037^0.172^3^-0.001^0.182^~2, 3~^~07/01/2010~ -~15028~^~627~^0.012^4^0.004^~1~^~A~^^^1^0.004^0.024^3^-0.002^0.026^~2, 3~^~07/01/2010~ -~15028~^~628~^0.060^4^0.017^~1~^~A~^^^1^0.011^0.088^3^0.005^0.114^~2, 3~^~07/01/2010~ -~15028~^~629~^0.137^4^0.034^~1~^~A~^^^1^0.092^0.237^3^0.029^0.244^~2, 3~^~07/01/2010~ -~15028~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.003^3^-0.002^0.003^~2, 3~^~07/01/2010~ -~15028~^~631~^0.028^4^0.004^~1~^~A~^^^1^0.018^0.039^3^0.013^0.042^~2, 3~^~07/01/2010~ -~15028~^~645~^0.535^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~646~^0.374^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~652~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.010^3^0.003^0.010^~2, 3~^~07/01/2010~ -~15028~^~653~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~2, 3~^~07/01/2010~ -~15028~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15028~^~662~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.005^~1, 2, 3~^~07/01/2010~ -~15028~^~663~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.009^3^0.004^0.011^~2, 3~^~07/01/2010~ -~15028~^~664~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~07/01/2010~ -~15028~^~665~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~07/01/2010~ -~15028~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~672~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.008^3^0.002^0.008^~2, 3~^~07/01/2010~ -~15028~^~673~^0.088^4^0.028^~1~^~A~^^^1^0.037^0.168^3^-0.001^0.177^~2, 3~^~07/01/2010~ -~15028~^~674~^0.350^4^0.111^~1~^~A~^^^1^0.120^0.653^3^-0.003^0.703^~2, 3~^~07/01/2010~ -~15028~^~675~^0.043^4^0.005^~1~^~A~^^^1^0.029^0.051^3^0.028^0.059^~2, 3~^~07/01/2010~ -~15028~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~685~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15028~^~687~^0.027^4^0.008^~1~^~A~^^^1^0.013^0.051^3^0.000^0.053^~2, 3~^~07/01/2010~ -~15028~^~689~^0.007^4^0.001^~1~^~AS~^^^1^0.005^0.010^3^0.004^0.011^~2, 3~^~07/01/2010~ -~15028~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15028~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15028~^~851~^0.017^4^0.003^~1~^~A~^^^1^0.012^0.026^3^0.007^0.027^~2, 3~^~07/01/2010~ -~15028~^~852~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.008^3^0.002^0.008^~2, 3~^~07/01/2010~ -~15028~^~853~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.005^~1, 2, 3~^~07/01/2010~ -~15028~^~858~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~07/01/2010~ -~15029~^~312~^0.023^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~315~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~404~^0.026^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~405~^0.025^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~406~^1.278^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~410~^0.227^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~415~^0.115^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~501~^0.197^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~502~^0.719^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~503~^0.754^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~504~^1.335^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~505~^1.561^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~506~^0.560^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~507~^0.183^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~508~^0.624^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~509~^0.588^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~510~^0.800^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~511~^1.099^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~512~^0.374^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~513~^0.948^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~514~^1.698^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~515~^2.614^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~516~^0.786^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~517~^0.599^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~518~^0.712^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~605~^0.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~606~^0.542^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~610~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~611~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~612~^0.106^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~613~^0.346^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~614~^0.065^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~615~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~617~^0.439^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~618~^0.055^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~619~^0.021^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~620~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~621~^0.132^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~626~^0.111^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~627~^0.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~628~^0.073^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~629~^0.168^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~631~^0.034^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~645~^0.657^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~646~^0.459^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~652~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~653~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~672~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~687~^0.033^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~689~^0.009^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15029~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15030~^~312~^0.195^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~315~^0.073^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~404~^0.065^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~405~^0.059^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~406~^1.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15030~^~410~^0.200^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~415~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15030~^~501~^0.086^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~502~^0.488^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~503~^0.486^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~504~^0.810^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~505~^0.842^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~506~^0.255^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~507~^0.113^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~508~^0.493^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~509~^0.380^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~510~^0.548^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~511~^0.595^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~512~^0.261^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~513~^0.546^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~514~^0.772^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~515~^1.750^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~516~^0.403^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~517~^0.341^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~518~^0.473^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~606~^0.412^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~612~^0.056^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~613~^0.300^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~614~^0.056^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~617~^0.407^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~618~^0.116^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~621~^0.045^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~626~^0.257^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~627~^0.022^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~628~^0.109^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~629~^0.075^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~630~^0.051^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~631~^0.027^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~645~^0.824^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15030~^~646~^0.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~312~^0.020^52^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~315~^0.014^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~404~^0.070^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~405~^0.005^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~406~^0.313^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15031~^~501~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~502~^0.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~503~^0.893^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~504~^1.575^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~505~^1.779^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~506~^0.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~507~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~508~^0.756^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~509~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~510~^0.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~511~^1.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~512~^0.570^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~513~^1.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~514~^1.984^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~515~^2.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~516~^0.930^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~517~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~518~^0.791^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~606~^0.233^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~612~^0.012^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~613~^0.169^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~614~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~617~^0.145^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~618~^0.012^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~619~^0.010^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~620~^0.033^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~621~^0.220^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~626~^0.027^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15031~^~628~^0.029^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~629~^0.027^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~630~^0.007^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~631~^0.010^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~645~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15031~^~646~^0.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~312~^0.045^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~315~^0.012^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~404~^0.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~405~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~406~^0.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15032~^~415~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15032~^~501~^0.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~502~^1.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~503~^1.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~504~^2.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~505~^2.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~506~^0.735^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~507~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~508~^0.970^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~509~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~510~^1.280^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~511~^1.487^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~512~^0.731^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~513~^1.503^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~514~^2.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~515~^3.709^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~516~^1.193^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~517~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~518~^1.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~606~^0.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~612~^0.025^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~613~^0.140^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~614~^0.059^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~617~^0.086^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~618~^0.018^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~620~^0.057^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~621~^0.213^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~626~^0.026^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~629~^0.035^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~631~^0.017^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~645~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15032~^~646~^0.403^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15033~^~312~^0.021^8^0.002^~1~^~A~^^^1^0.019^0.031^7^0.017^0.025^~1, 2, 3~^~07/01/2010~ -~15033~^~315~^0.011^8^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~07/01/2010~ -~15033~^~405~^0.057^3^0.015^~1~^~A~^^^1^0.030^0.080^2^-0.006^0.119^~2, 3~^~07/01/2010~ -~15033~^~406~^3.363^3^0.264^~1~^~A~^^^1^2.960^3.860^2^2.228^4.499^~2, 3~^~07/01/2010~ -~15033~^~410~^0.403^3^0.131^~1~^~A~^^^1^0.230^0.660^2^-0.160^0.967^~2, 3~^~07/01/2010~ -~15033~^~415~^0.281^3^0.028^~1~^~A~^^^1^0.236^0.331^2^0.162^0.399^~2, 3~^~07/01/2010~ -~15033~^~501~^0.212^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~502~^0.829^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~503~^0.871^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~504~^1.537^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~505~^1.736^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~506~^0.560^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~507~^0.203^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~508~^0.738^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~509~^0.638^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~510~^0.974^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~511~^1.131^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~512~^0.557^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~513~^1.143^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~514~^1.936^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~515~^2.822^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~516~^0.908^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~517~^0.669^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~518~^0.771^0^^~1~^~A~^~15033~^^^^^^^^^~07/01/2010~ -~15033~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~606~^0.091^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15033~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15033~^~611~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~612~^0.004^8^0.000^~1~^~A~^^^1^0.002^0.006^7^0.003^0.005^~2, 3~^~07/01/2010~ -~15033~^~613~^0.063^8^0.006^~1~^~A~^^^1^0.035^0.085^7^0.048^0.078^~2, 3~^~07/01/2010~ -~15033~^~614~^0.020^8^0.001^~1~^~A~^^^1^0.015^0.023^7^0.018^0.023^~2, 3~^~07/01/2010~ -~15033~^~615~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15033~^~617~^0.039^8^0.004^~1~^~AS~^^^1^0.023^0.054^7^0.030^0.048^~2, 3~^~07/01/2010~ -~15033~^~618~^0.015^8^0.002^~1~^~AS~^^^1^0.010^0.030^7^0.010^0.021^~2, 3~^~07/01/2010~ -~15033~^~619~^0.002^8^0.000^~1~^~AS~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~620~^0.009^8^0.001^~1~^~A~^^^1^0.005^0.012^7^0.007^0.011^~2, 3~^~07/01/2010~ -~15033~^~621~^0.089^8^0.008^~1~^~A~^^^1^0.053^0.109^7^0.071^0.107^~2, 3~^~07/01/2010~ -~15033~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~625~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~07/01/2010~ -~15033~^~626~^0.004^8^0.001^~1~^~AS~^^^1^0.002^0.006^7^0.003^0.005^~2, 3~^~07/01/2010~ -~15033~^~627~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.003^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~628~^0.005^8^0.001^~1~^~A~^^^1^0.002^0.009^7^0.003^0.007^~2, 3~^~07/01/2010~ -~15033~^~629~^0.042^8^0.003^~1~^~A~^^^1^0.024^0.052^7^0.033^0.050^~2, 3~^~07/01/2010~ -~15033~^~630~^0.002^8^0.000^~1~^~AS~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~631~^0.005^8^0.000^~1~^~A~^^^1^0.004^0.005^7^0.004^0.005^~2, 3~^~07/01/2010~ -~15033~^~645~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~646~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~652~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.001^~2, 3~^~07/01/2010~ -~15033~^~653~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15033~^~654~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~662~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15033~^~663~^0.003^8^0.000^~1~^~A~^^^1^0.002^0.003^7^0.002^0.003^~2, 3~^~07/01/2010~ -~15033~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~665~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15033~^~670~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~671~^0.004^8^0.000^~1~^~A~^^^1^0.003^0.006^7^0.003^0.005^~2, 3~^~07/01/2010~ -~15033~^~672~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~07/01/2010~ -~15033~^~673~^0.003^8^0.000^~1~^~A~^^^1^0.002^0.005^7^0.002^0.004^~2, 3~^~07/01/2010~ -~15033~^~674~^0.037^8^0.004^~1~^~A~^^^1^0.021^0.052^7^0.027^0.046^~2, 3~^~07/01/2010~ -~15033~^~675~^0.014^8^0.002^~1~^~A~^^^1^0.009^0.029^7^0.009^0.020^~2, 3~^~07/01/2010~ -~15033~^~676~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~687~^0.006^8^0.002^~1~^~A~^^^1^0.001^0.015^7^0.002^0.010^~2, 3~^~07/01/2010~ -~15033~^~689~^0.002^8^0.000^~1~^~AS~^^^1^0.001^0.003^7^0.001^0.003^~2, 3~^~07/01/2010~ -~15033~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15033~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15033~^~851~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15033~^~852~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~07/01/2010~ -~15033~^~853~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15033~^~858~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.001^~2, 3~^~07/01/2010~ -~15034~^~312~^0.026^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~404~^0.023^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~405~^0.069^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~406~^4.119^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~410~^0.494^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~415~^0.327^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~501~^0.260^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~502~^1.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~503~^1.067^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~504~^1.882^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~505~^2.126^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~506~^0.686^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~507~^0.249^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~508~^0.904^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~509~^0.781^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~510~^1.193^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~511~^1.385^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~512~^0.682^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~513~^1.400^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~514~^2.371^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~515~^3.456^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~516~^1.112^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~517~^0.819^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~518~^0.944^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~605~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~606~^0.111^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~612~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~613~^0.077^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~614~^0.025^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~617~^0.048^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~618~^0.019^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~619~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~620~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~621~^0.109^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~626~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~627~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~628~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~629~^0.051^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~630~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~631~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~645~^0.074^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~646~^0.204^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~653~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~671~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~672~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~687~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~689~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15034~^~858~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15035~^~312~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15035~^~404~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~405~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~406~^5.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~410~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15035~^~415~^0.400^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~501~^0.283^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~502~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~503~^1.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~504~^2.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~505~^2.317^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~506~^0.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~507~^0.270^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~508~^0.985^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~509~^0.852^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~510~^1.300^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~511~^1.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~512~^0.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~513~^1.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~514~^2.583^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~515~^3.766^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~516~^1.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~517~^0.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~518~^1.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~606~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15035~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15035~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15035~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15035~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15035~^~612~^0.011^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~613~^0.117^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~614~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~617~^0.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~618~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~619~^0.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~620~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~621~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~626~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~627~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~628~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~629~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~630~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~631~^0.025^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~645~^0.157^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15035~^~646~^0.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15036~^~312~^0.023^10^0.002^~1~^~A~^^^1^0.019^0.034^9^0.019^0.027^~1, 2, 3~^~07/01/2010~ -~15036~^~315~^0.011^10^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15036~^~404~^0.050^4^0.007^~1~^~A~^^^1^0.030^0.060^3^0.027^0.073^~2, 3~^~07/01/2010~ -~15036~^~405~^0.030^4^0.006^~1~^~A~^^^1^0.020^0.040^3^0.012^0.048^~2, 3~^~07/01/2010~ -~15036~^~406~^6.513^4^0.539^~1~^~A~^^^1^5.220^7.440^3^4.798^8.227^~2, 3~^~07/01/2010~ -~15036~^~410~^0.343^4^0.018^~1~^~A~^^^1^0.300^0.390^3^0.284^0.401^~2, 3~^~07/01/2010~ -~15036~^~415~^0.548^4^0.050^~1~^~A~^^^1^0.421^0.663^3^0.390^0.705^~2, 3~^~07/01/2010~ -~15036~^~501~^0.233^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~502~^0.912^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~503~^0.959^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~504~^1.692^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~505~^1.911^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~506~^0.616^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~507~^0.223^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~508~^0.813^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~509~^0.703^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~510~^1.072^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~511~^1.245^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~512~^0.613^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~513~^1.259^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~514~^2.131^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~515~^3.107^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~516~^0.999^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~517~^0.736^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~518~^0.849^0^^~1~^~A~^~15036~^^^^^^^^^~07/01/2010~ -~15036~^~606~^0.292^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15036~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15036~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15036~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15036~^~611~^0.005^10^0.002^~1~^~A~^^^1^0.001^0.020^9^0.000^0.010^~2, 3~^~07/01/2010~ -~15036~^~612~^0.049^10^0.014^~1~^~A~^^^1^0.007^0.128^9^0.017^0.082^~2, 3~^~07/01/2010~ -~15036~^~613~^0.174^10^0.041^~1~^~A~^^^1^0.066^0.429^9^0.081^0.268^~2, 3~^~07/01/2010~ -~15036~^~614~^0.054^10^0.012^~1~^~A~^^^1^0.019^0.125^9^0.026^0.081^~2, 3~^~07/01/2010~ -~15036~^~615~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.004^9^0.001^0.002^~2, 3~^~07/01/2010~ -~15036~^~617~^0.229^10^0.071^~1~^~AS~^^^1^0.035^0.729^9^0.068^0.389^~2, 3~^~07/01/2010~ -~15036~^~618~^0.034^10^0.007^~1~^~AS~^^^1^0.010^0.073^9^0.018^0.050^~2, 3~^~07/01/2010~ -~15036~^~619~^0.011^10^0.003^~1~^~AS~^^^1^0.001^0.033^9^0.003^0.019^~2, 3~^~07/01/2010~ -~15036~^~620~^0.014^10^0.002^~1~^~A~^^^1^0.006^0.024^9^0.009^0.019^~2, 3~^~07/01/2010~ -~15036~^~621~^0.128^10^0.019^~1~^~A~^^^1^0.043^0.252^9^0.085^0.170^~2, 3~^~07/01/2010~ -~15036~^~624~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15036~^~625~^0.003^10^0.001^~1~^~A~^^^1^0.001^0.007^9^0.001^0.005^~2, 3~^~07/01/2010~ -~15036~^~626~^0.068^10^0.024^~1~^~AS~^^^1^0.006^0.251^9^0.013^0.123^~2, 3~^~07/01/2010~ -~15036~^~627~^0.007^10^0.002^~1~^~A~^^^1^0.001^0.020^9^0.002^0.011^~2, 3~^~07/01/2010~ -~15036~^~628~^0.133^10^0.059^~1~^~A~^^^1^0.015^0.651^9^-0.002^0.267^~2, 3~^~07/01/2010~ -~15036~^~629~^0.066^10^0.015^~1~^~A~^^^1^0.019^0.185^9^0.031^0.100^~2, 3~^~07/01/2010~ -~15036~^~630~^0.014^10^0.007^~1~^~AS~^^^1^0.001^0.074^9^-0.001^0.029^~2, 3~^~07/01/2010~ -~15036~^~631~^0.016^10^0.004^~1~^~A~^^^1^0.005^0.042^9^0.008^0.025^~2, 3~^~07/01/2010~ -~15036~^~645~^0.471^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~646~^0.290^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~652~^0.004^10^0.001^~1~^~A~^^^1^0.001^0.010^9^0.002^0.007^~2, 3~^~07/01/2010~ -~15036~^~653~^0.002^10^0.001^~1~^~A~^^^1^0.001^0.006^9^0.001^0.004^~2, 3~^~07/01/2010~ -~15036~^~654~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15036~^~662~^0.003^10^0.001^~1~^~A~^^^1^0.000^0.008^9^0.001^0.004^~1, 2, 3~^~07/01/2010~ -~15036~^~663~^0.008^10^0.002^~1~^~A~^^^1^0.001^0.020^9^0.003^0.013^~2, 3~^~07/01/2010~ -~15036~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15036~^~665~^0.013^10^0.002^~1~^~A~^^^1^0.005^0.026^9^0.008^0.018^~2, 3~^~07/01/2010~ -~15036~^~670~^0.002^10^0.001^~1~^~A~^^^1^0.000^0.006^9^0.000^0.004^~1, 2, 3~^~07/01/2010~ -~15036~^~671~^0.017^10^0.005^~1~^~A~^^^1^0.005^0.059^9^0.005^0.028^~2, 3~^~07/01/2010~ -~15036~^~672~^0.004^10^0.002^~1~^~A~^^^1^0.001^0.019^9^0.000^0.008^~2, 3~^~07/01/2010~ -~15036~^~673~^0.065^10^0.024^~1~^~A~^^^1^0.006^0.243^9^0.012^0.119^~2, 3~^~07/01/2010~ -~15036~^~674~^0.221^10^0.069^~1~^~A~^^^1^0.034^0.715^9^0.065^0.378^~2, 3~^~07/01/2010~ -~15036~^~675~^0.019^10^0.005^~1~^~A~^^^1^0.003^0.043^9^0.008^0.030^~2, 3~^~07/01/2010~ -~15036~^~676~^0.014^10^0.007^~1~^~A~^^^1^0.001^0.072^9^-0.001^0.029^~2, 3~^~07/01/2010~ -~15036~^~685~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15036~^~687~^0.007^10^0.003^~1~^~A~^^^1^0.001^0.030^9^0.001^0.013^~2, 3~^~07/01/2010~ -~15036~^~689~^0.008^10^0.003^~1~^~AS~^^^1^0.001^0.026^9^0.002^0.015^~2, 3~^~07/01/2010~ -~15036~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15036~^~697~^0.002^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15036~^~851~^0.011^10^0.003^~1~^~A~^^^1^0.001^0.032^9^0.004^0.018^~2, 3~^~07/01/2010~ -~15036~^~852~^0.003^10^0.001^~1~^~A~^^^1^0.001^0.012^9^0.001^0.006^~2, 3~^~07/01/2010~ -~15036~^~853~^0.005^10^0.002^~1~^~A~^^^1^0.000^0.017^9^0.001^0.010^~1, 2, 3~^~07/01/2010~ -~15036~^~858~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15037~^~312~^0.028^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~404~^0.058^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~405~^0.036^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~406~^7.911^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~410~^0.416^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~415~^0.632^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~501~^0.283^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~502~^1.108^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~503~^1.165^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~504~^2.055^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~505~^2.321^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~506~^0.748^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~507~^0.271^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~508~^0.988^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~509~^0.854^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~510~^1.302^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~511~^1.512^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~512~^0.745^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~513~^1.529^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~514~^2.589^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~515~^3.774^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~516~^1.213^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~517~^0.894^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~518~^1.031^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~605~^0.028^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~606~^0.354^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~611~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~612~^0.060^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~613~^0.212^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~614~^0.065^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~617~^0.278^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~618~^0.041^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~619~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~620~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~621~^0.155^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~625~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~626~^0.082^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~627~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~628~^0.161^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~629~^0.080^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~630~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~631~^0.020^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~645~^0.573^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~646~^0.352^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~652~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~653~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~671~^0.020^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~672~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~687~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~689~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~697~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15037~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15038~^~312~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~315~^0.012^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~404~^0.060^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~405~^0.080^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~406~^1.500^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~410~^0.250^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~415~^0.420^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15038~^~501~^0.161^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~502~^0.630^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~503~^0.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~504~^1.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~505~^1.320^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~506~^0.425^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~507~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~508~^0.561^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~509~^0.485^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~510~^0.740^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~511~^0.860^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~512~^0.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~513~^0.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~514~^1.471^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~515~^2.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~516~^0.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~517~^0.508^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~518~^0.586^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~606~^2.419^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15038~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15038~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15038~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15038~^~611~^0.008^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~612~^0.754^3^0.029^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~613~^1.440^3^0.052^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~614~^0.193^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~617~^2.393^3^0.489^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~618~^0.123^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~619~^0.043^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~620~^0.061^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~621~^0.393^3^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~626~^1.763^3^0.243^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~627~^0.132^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~628~^2.237^3^0.073^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~629~^0.526^3^0.051^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~630~^1.968^3^0.296^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~631~^0.089^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~645~^8.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15038~^~646~^1.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~312~^0.092^48^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~315~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~404~^0.092^43^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~405~^0.233^32^0.031^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~406~^3.217^34^0.166^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~410~^0.645^12^0.098^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~415~^0.302^17^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~501~^0.201^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~502~^0.787^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~503~^0.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~504~^1.460^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~505~^1.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~506~^0.532^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~507~^0.193^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~508~^0.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~509~^0.606^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~510~^0.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~511~^1.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~512~^0.529^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~513~^1.086^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~514~^1.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~515~^2.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~516~^0.862^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~517~^0.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~518~^0.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~606~^2.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15039~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15039~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15039~^~610~^0.005^12^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~611~^0.012^20^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~612~^0.554^24^0.021^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~613~^1.353^24^0.048^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~614~^0.109^24^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~617~^1.516^24^0.090^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~618~^0.130^22^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~619~^0.103^20^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~620~^0.060^21^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~621~^0.862^24^0.057^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~626~^0.622^24^0.029^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~627~^0.214^21^0.026^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~628~^0.721^24^0.056^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~629~^0.709^24^0.028^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~630~^0.840^24^0.090^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~631~^0.055^22^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~645~^3.736^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15039~^~646~^2.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~312~^0.118^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~315~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~404~^0.112^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~405~^0.299^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~406~^4.124^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~410~^0.740^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~415~^0.348^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~501~^0.258^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~502~^1.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~503~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~504~^1.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~505~^2.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~506~^0.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~507~^0.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~508~^0.899^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~509~^0.778^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~510~^1.187^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~511~^1.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~512~^0.678^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~513~^1.393^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~514~^2.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~515~^3.438^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~516~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~517~^0.814^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~518~^0.940^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~606~^2.615^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15040~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15040~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15040~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15040~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15040~^~611~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~612~^0.710^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~613~^1.735^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~614~^0.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~617~^1.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~618~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~619~^0.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~620~^0.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~621~^1.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~626~^0.797^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~627~^0.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~628~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~629~^0.909^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~630~^1.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~631~^0.071^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15040~^~645~^4.790^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15040~^~646~^2.735^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15041~^~312~^0.105^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~315~^0.040^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~404~^0.036^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~405~^0.139^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~406~^3.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15041~^~410~^0.081^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~415~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15041~^~501~^0.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~502~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~503~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~504~^1.153^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~505~^1.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~506~^0.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~507~^0.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~508~^0.554^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~509~^0.479^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~510~^0.731^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~511~^0.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~512~^0.418^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~513~^0.858^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~514~^1.453^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~515~^2.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~516~^0.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~517~^0.502^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~518~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~606~^2.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~612~^0.721^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~613~^1.555^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~614~^0.105^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~617~^1.750^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~618~^0.211^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~621~^0.546^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~626~^1.383^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15041~^~628~^3.648^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~629~^0.843^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~630~^5.166^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~631~^0.079^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~645~^11.947^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15041~^~646~^1.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~312~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~315~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15042~^~404~^0.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~405~^0.319^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~406~^4.402^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~410~^0.880^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15042~^~415~^0.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~501~^0.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~502~^1.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~503~^1.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~504~^1.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~505~^2.258^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~506~^0.728^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~507~^0.264^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~508~^0.960^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~509~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~510~^1.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~511~^1.471^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~512~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~513~^1.487^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~514~^2.517^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~515~^3.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~516~^1.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~517~^0.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~518~^1.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~606~^2.791^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15042~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15042~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15042~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15042~^~611~^0.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~612~^0.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~613~^1.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~614~^0.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~617~^2.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~618~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~619~^0.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~620~^0.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~621~^1.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~626~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~627~^0.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~628~^0.986^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~629~^0.970^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~630~^1.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~631~^0.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~645~^5.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15042~^~646~^2.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~312~^0.078^18^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~315~^0.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~404~^0.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~405~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~406~^2.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~410~^1.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~415~^0.450^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15043~^~501~^0.184^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~502~^0.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~503~^0.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~504~^1.332^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~505~^1.506^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~506~^0.485^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~507~^0.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~508~^0.640^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~509~^0.553^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~510~^0.845^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~511~^0.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~512~^0.483^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~513~^0.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~514~^1.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~515~^2.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~516~^0.787^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~517~^0.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~518~^0.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~606~^3.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~612~^0.913^3^0.043^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~613~^2.023^3^0.266^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~614~^0.257^3^0.024^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~617~^2.913^3^0.471^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~618~^0.192^3^0.051^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~619~^0.057^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~620~^0.096^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~621~^0.689^3^0.170^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~626~^1.057^3^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~627~^0.248^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~628~^1.359^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~629~^0.969^3^0.165^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~630~^1.492^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~631~^0.172^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~645~^6.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15043~^~646~^2.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~312~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~404~^0.110^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~405~^0.190^5^0.078^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~406~^2.300^3^0.115^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~410~^0.320^3^0.040^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~415~^0.304^3^0.047^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~501~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~502~^0.832^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~503~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~504~^1.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~505~^1.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~506~^0.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~508~^0.741^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~509~^0.641^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~510~^0.978^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~511~^1.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~512~^0.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~513~^1.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~514~^1.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~515~^2.834^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~516~^0.911^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~517~^0.671^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~518~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15044~^~606~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~645~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15044~^~646~^0.220^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~312~^0.027^75^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~315~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~404~^0.030^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~405~^0.114^3^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~406~^1.900^3^0.179^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~501~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~502~^0.774^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~503~^0.814^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~504~^1.435^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~505~^1.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~506~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~507~^0.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~508~^0.689^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~509~^0.596^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~510~^0.910^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~511~^1.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~512~^0.520^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~513~^1.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~514~^1.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~515~^2.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~516~^0.848^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~517~^0.624^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~518~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15045~^~606~^0.197^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~607~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~608~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~609~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~610~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~611~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~612~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~613~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~614~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~617~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~618~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~619~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~620~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~621~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~626~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~627~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~628~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~629~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~631~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15045~^~645~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15045~^~646~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15046~^~312~^0.073^81^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~404~^0.176^6^0.050^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~405~^0.312^7^0.032^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~406~^9.080^11^1.278^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~410~^0.856^7^0.113^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~415~^0.399^16^0.045^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~501~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~502~^0.815^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~503~^0.857^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~504~^1.512^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~505~^1.708^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~506~^0.551^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~507~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~508~^0.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~509~^0.628^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~510~^0.958^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~511~^1.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~512~^0.548^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~513~^1.125^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~514~^1.905^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~515~^2.777^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~516~^0.893^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~517~^0.658^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~518~^0.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~606~^3.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15046~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15046~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15046~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15046~^~611~^0.017^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~612~^0.674^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~613~^2.125^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~614~^0.423^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~617~^2.283^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~618~^0.219^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~619~^0.159^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~620~^0.183^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~621~^1.401^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~626~^0.727^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~627~^0.278^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~628~^1.039^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~629~^0.898^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~630~^1.407^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~631~^0.212^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15046~^~645~^5.456^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15046~^~646~^3.350^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15047~^~312~^0.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15047~^~404~^0.159^10^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~405~^0.412^10^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~406~^6.850^10^0.470^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~410~^0.990^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15047~^~415~^0.460^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~501~^0.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~502~^1.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~503~^1.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~504~^1.938^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~505~^2.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~506~^0.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~507~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~508~^0.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~509~^0.805^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~510~^1.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~511~^1.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~512~^0.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~513~^1.442^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~514~^2.442^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~515~^3.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~516~^1.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~517~^0.843^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~518~^0.973^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~606~^4.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~612~^0.592^10^83.700^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~613~^1.375^10^188.900^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~614~^0.256^10^39.100^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~617~^1.202^10^313.300^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~618~^0.147^10^17.000^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~619~^0.113^10^14.100^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~620~^0.051^10^7.100^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~621~^0.699^10^58.700^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~626~^0.534^10^105.400^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~628~^1.598^10^244.500^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~629~^0.504^10^75.500^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~630~^2.498^10^368.800^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~631~^0.106^10^15.000^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~645~^7.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15047~^~646~^4.300^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~312~^0.147^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~315~^0.040^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~404~^0.040^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~405~^0.212^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~406~^6.180^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~410~^0.305^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~415~^0.210^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~501~^0.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~502~^1.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~503~^1.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~504~^1.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~505~^2.130^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~506~^0.686^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~507~^0.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~508~^0.905^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~509~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~510~^1.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~511~^1.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~512~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~513~^1.403^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~514~^2.375^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~515~^3.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~516~^1.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~517~^0.820^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~518~^0.946^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~606~^1.857^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15048~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15048~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15048~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15048~^~611~^0.007^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~612~^0.289^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~613~^1.185^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~614~^0.376^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~617~^1.132^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~618~^0.099^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~619~^0.043^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~620~^0.069^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~621~^0.796^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~626~^0.400^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~627~^0.106^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~628~^0.278^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~629~^0.434^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~630~^0.414^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~631~^0.104^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~645~^2.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15048~^~646~^1.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~312~^0.026^107^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~315~^0.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~404~^0.100^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~405~^0.476^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~406~^8.590^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~410~^0.839^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~415~^0.442^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~501~^0.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~502~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~503~^0.935^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~504~^1.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~505~^1.863^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~506~^0.600^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~507~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~508~^0.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~509~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~510~^1.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~511~^1.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~512~^0.597^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~513~^1.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~514~^2.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~515~^3.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~516~^0.974^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~517~^0.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~518~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~606~^0.363^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~612~^0.082^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~613~^0.242^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~614~^0.039^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~617~^0.311^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~618~^0.040^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~621~^0.177^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~626~^0.118^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~627~^0.090^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~628~^0.122^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~629~^0.136^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~630~^0.213^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~631~^0.017^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~645~^0.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15049~^~646~^0.460^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~312~^0.093^56^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~404~^0.111^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~405~^0.421^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~406~^8.320^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~410~^0.316^12^0.075^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~415~^0.330^11^0.029^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~501~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~502~^0.880^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~503~^0.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~504~^1.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~505~^1.843^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~506~^0.594^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~507~^0.215^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~508~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~509~^0.678^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~510~^1.034^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~511~^1.201^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~512~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~513~^1.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~514~^2.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~515~^2.996^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~516~^0.963^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~517~^0.710^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~518~^0.819^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~606~^2.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15050~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15050~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15050~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15050~^~611~^0.009^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~612~^0.340^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~613~^1.389^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~614~^0.441^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~617~^1.328^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~618~^0.116^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~619~^0.050^42^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~620~^0.081^58^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~621~^0.932^82^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~626~^0.470^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~627~^0.125^33^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~628~^0.325^65^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~629~^0.509^83^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~630~^0.485^41^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~631~^0.123^60^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~645~^2.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15050~^~646~^1.940^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~312~^0.055^3^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~315~^0.014^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~404~^0.130^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~405~^0.170^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~406~^2.300^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15051~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15051~^~501~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~502~^0.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~503~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~504~^1.568^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~505~^1.771^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~506~^0.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~507~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~508~^0.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~509~^0.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~510~^0.994^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~511~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~512~^0.568^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~513~^1.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~514~^1.975^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~515~^2.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~516~^0.926^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~517~^0.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~518~^0.787^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~606~^1.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~612~^0.173^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~613~^1.239^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~614~^0.416^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~617~^1.117^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~618~^0.097^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~619~^0.034^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~620~^0.166^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~621~^1.012^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~626~^0.291^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15051~^~628~^0.072^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~629~^0.329^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~630~^0.050^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~631~^0.101^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~645~^1.530^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15051~^~646~^1.739^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~312~^0.065^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~315~^0.012^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~404~^0.130^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~405~^0.210^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~406~^5.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15052~^~415~^0.460^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15052~^~501~^0.264^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~502~^1.034^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~503~^1.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~504~^1.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~505~^2.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~506~^0.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~507~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~508~^0.921^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~509~^0.796^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~510~^1.215^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~511~^1.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~512~^0.694^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~513~^1.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~514~^2.415^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~515~^3.521^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~516~^1.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~517~^0.834^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~518~^0.962^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~606~^1.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~612~^0.204^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~613~^1.155^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~614~^0.442^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~617~^1.104^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~618~^0.108^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~619~^0.116^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~620~^0.159^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~621~^0.952^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~626~^0.309^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~628~^0.123^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~629~^0.294^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~630~^0.070^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~631~^0.095^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~645~^2.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15052~^~646~^1.805^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~312~^0.034^41^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~404~^0.013^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~405~^0.054^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~406~^6.440^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~415~^0.423^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~501~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~502~^0.900^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~503~^0.946^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~504~^1.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~505~^1.886^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~506~^0.608^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~507~^0.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~508~^0.802^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~509~^0.693^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~510~^1.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~511~^1.229^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~512~^0.604^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~513~^1.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~514~^2.102^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~515~^3.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~516~^0.986^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~517~^0.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~518~^0.838^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15053~^~606~^1.660^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~645~^2.580^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15053~^~646~^1.840^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~312~^0.028^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~315~^0.024^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~404~^0.025^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~405~^0.060^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~406~^2.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~410~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~415~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~501~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~502~^0.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~503~^0.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~504~^1.177^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~505~^1.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~506~^0.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~507~^0.155^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~508~^0.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~509~^0.489^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~510~^0.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~511~^0.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~512~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~513~^0.876^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~514~^1.483^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~515~^2.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~516~^0.695^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~517~^0.512^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~518~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15054~^~606~^0.340^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~645~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15054~^~646~^0.610^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~312~^0.051^202^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~315~^0.016^6^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~404~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~405~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~406~^5.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15055~^~410~^0.760^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~415~^0.425^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~501~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~502~^0.848^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~503~^0.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~504~^1.573^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~505~^1.777^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~506~^0.573^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~507~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~508~^0.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~509~^0.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~510~^0.997^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~511~^1.158^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~512~^0.570^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~513~^1.170^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~514~^1.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~515~^2.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~516~^0.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~517~^0.684^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~518~^0.789^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~606~^1.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15055~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15055~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15055~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15055~^~611~^0.003^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~612~^0.245^24^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~613~^0.747^25^0.033^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~614~^0.100^25^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~617~^0.293^24^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~618~^0.088^25^0.018^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~619~^0.025^22^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~620~^0.096^25^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~621~^0.108^25^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~626~^0.564^24^0.030^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~627~^0.082^23^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~628~^0.023^3^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~629~^0.217^25^0.017^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~630~^0.031^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~631~^0.099^25^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~645~^1.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15055~^~646~^0.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~312~^0.141^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~315~^0.022^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~404~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15056~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15056~^~406~^6.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15056~^~410~^0.880^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15056~^~415~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~501~^0.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~502~^1.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~503~^1.143^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~504~^2.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~505~^2.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~506~^0.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~507~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~508~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~509~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~510~^1.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~511~^1.484^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~512~^0.730^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~513~^1.500^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~514~^2.540^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~515~^3.703^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~516~^1.191^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~517~^0.877^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~518~^1.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~606~^1.431^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~612~^0.062^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~613~^0.291^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~614~^0.096^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~617~^0.196^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~618~^0.094^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~620~^0.097^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~621~^0.148^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~626~^0.177^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~629~^0.180^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~631~^0.092^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~645~^1.382^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15056~^~646~^0.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15057~^~312~^0.021^11^0.001^~1~^~A~^^^1^0.019^0.031^10^0.018^0.024^~1, 2, 3~^~07/01/2010~ -~15057~^~315~^0.011^11^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~404~^0.040^4^0.014^~1~^~A~^^^1^0.020^0.080^3^-0.005^0.085^~2, 3~^~07/01/2010~ -~15057~^~405~^0.048^4^0.010^~1~^~A~^^^1^0.030^0.070^3^0.015^0.080^~2, 3~^~07/01/2010~ -~15057~^~406~^1.005^4^0.112^~1~^~A~^^^1^0.680^1.180^3^0.648^1.362^~2, 3~^~07/01/2010~ -~15057~^~410~^0.272^4^0.057^~1~^~A~^^^1^0.148^0.400^3^0.091^0.453^~1, 2, 3~^~07/01/2010~ -~15057~^~415~^0.073^4^0.006^~1~^~A~^^^1^0.056^0.086^3^0.053^0.093^~2, 3~^~07/01/2010~ -~15057~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~502~^0.704^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~503~^0.723^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~504~^1.239^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~505~^1.464^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~506~^0.488^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~507~^0.160^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~508~^0.638^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~509~^0.544^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~510~^0.741^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~511~^1.013^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~512~^0.319^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~513~^0.901^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~514~^1.558^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~515~^2.412^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~516~^0.676^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~517~^0.525^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~518~^0.629^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15057~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~606~^0.273^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15057~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~609~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15057~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15057~^~611~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.001^0.003^~2, 3~^~07/01/2010~ -~15057~^~612~^0.060^11^0.018^~1~^~A~^^^1^0.000^0.176^10^0.020^0.099^~1, 2, 3~^~07/01/2010~ -~15057~^~613~^0.155^11^0.023^~1~^~A~^^^1^0.046^0.299^10^0.104^0.206^~2, 3~^~07/01/2010~ -~15057~^~614~^0.046^11^0.004^~1~^~A~^^^1^0.032^0.067^10^0.037^0.054^~2, 3~^~07/01/2010~ -~15057~^~615~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.001^0.003^~2, 3~^~07/01/2010~ -~15057~^~617~^0.188^11^0.034^~1~^~AS~^^^1^0.035^0.423^10^0.112^0.264^~2, 3~^~07/01/2010~ -~15057~^~618~^0.032^11^0.006^~1~^~AS~^^^1^0.012^0.065^10^0.020^0.045^~2, 3~^~07/01/2010~ -~15057~^~619~^0.016^11^0.003^~1~^~AS~^^^1^0.002^0.034^10^0.009^0.023^~2, 3~^~07/01/2010~ -~15057~^~620~^0.009^11^0.002^~1~^~A~^^^1^0.005^0.023^10^0.006^0.013^~2, 3~^~07/01/2010~ -~15057~^~621~^0.153^11^0.021^~1~^~A~^^^1^0.030^0.251^10^0.106^0.201^~2, 3~^~07/01/2010~ -~15057~^~624~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15057~^~625~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15057~^~626~^0.077^11^0.017^~1~^~AS~^^^1^0.009^0.166^10^0.039^0.114^~2, 3~^~07/01/2010~ -~15057~^~627~^0.008^11^0.003^~1~^~A~^^^1^0.000^0.025^10^0.001^0.015^~1, 2, 3~^~07/01/2010~ -~15057~^~628~^0.153^11^0.033^~1~^~A~^^^1^0.001^0.323^10^0.080^0.226^~2, 3~^~07/01/2010~ -~15057~^~629~^0.062^11^0.013^~1~^~A~^^^1^0.004^0.134^10^0.033^0.091^~2, 3~^~07/01/2010~ -~15057~^~630~^0.029^11^0.007^~1~^~AS~^^^1^0.001^0.082^10^0.013^0.044^~2, 3~^~07/01/2010~ -~15057~^~631~^0.010^11^0.002^~1~^~A~^^^1^0.005^0.027^10^0.006^0.014^~2, 3~^~07/01/2010~ -~15057~^~645~^0.475^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~646~^0.304^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~652~^0.004^11^0.001^~1~^~A~^^^1^0.001^0.008^10^0.003^0.005^~2, 3~^~07/01/2010~ -~15057~^~653~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.006^10^0.002^0.004^~2, 3~^~07/01/2010~ -~15057~^~654~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15057~^~662~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15057~^~663~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.005^10^0.002^0.004^~2, 3~^~07/01/2010~ -~15057~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15057~^~665~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.016^10^0.001^0.006^~2, 3~^~07/01/2010~ -~15057~^~670~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15057~^~671~^0.014^11^0.002^~1~^~A~^^^1^0.003^0.027^10^0.009^0.019^~2, 3~^~07/01/2010~ -~15057~^~672~^0.004^11^0.001^~1~^~A~^^^1^0.001^0.007^10^0.002^0.005^~2, 3~^~07/01/2010~ -~15057~^~673~^0.075^11^0.017^~1~^~A~^^^1^0.007^0.163^10^0.038^0.112^~2, 3~^~07/01/2010~ -~15057~^~674~^0.185^11^0.034^~1~^~A~^^^1^0.033^0.422^10^0.109^0.261^~2, 3~^~07/01/2010~ -~15057~^~675~^0.027^11^0.005^~1~^~A~^^^1^0.009^0.059^10^0.016^0.039^~2, 3~^~07/01/2010~ -~15057~^~676~^0.028^11^0.007^~1~^~A~^^^1^0.001^0.082^10^0.013^0.044^~2, 3~^~07/01/2010~ -~15057~^~685~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15057~^~687~^0.012^11^0.003^~1~^~A~^^^1^0.000^0.032^10^0.004^0.019^~1, 2, 3~^~07/01/2010~ -~15057~^~689~^0.008^11^0.001^~1~^~AS~^^^1^0.003^0.016^10^0.005^0.010^~2, 3~^~07/01/2010~ -~15057~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15057~^~697~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.005^10^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15057~^~851~^0.015^11^0.003^~1~^~A~^^^1^0.002^0.033^10^0.008^0.022^~2, 3~^~07/01/2010~ -~15057~^~852~^0.005^11^0.001^~1~^~A~^^^1^0.001^0.010^10^0.003^0.006^~2, 3~^~07/01/2010~ -~15057~^~853~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.008^10^0.002^0.004^~2, 3~^~07/01/2010~ -~15057~^~858~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.005^10^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15058~^~312~^0.026^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~404~^0.046^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~405~^0.057^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~406~^1.215^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~410~^0.329^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~415~^0.084^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~501~^0.227^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~502~^0.851^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~503~^0.874^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~504~^1.498^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~505~^1.770^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~506~^0.590^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~507~^0.193^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~508~^0.772^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~509~^0.658^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~510~^0.897^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~511~^1.226^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~512~^0.386^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~513~^1.089^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~514~^1.884^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~515~^2.917^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~516~^0.817^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~517~^0.636^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~518~^0.760^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~605~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~606~^0.330^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~612~^0.072^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~613~^0.187^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~614~^0.055^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~617~^0.228^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~618~^0.039^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~619~^0.019^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~620~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~621~^0.186^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~625~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~626~^0.093^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~627~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~628~^0.185^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~629~^0.075^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~630~^0.035^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~631~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~645~^0.575^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~646~^0.368^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~652~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~653~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~671~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~672~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~687~^0.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~689~^0.009^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~697~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15058~^~858~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15059~^~312~^0.032^34^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~315~^0.015^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~405~^0.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~406~^2.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~410~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~415~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15059~^~501~^0.186^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~502~^0.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~503~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~504~^1.352^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~505~^1.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~506~^0.492^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~507~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~508~^0.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~509~^0.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~510~^0.857^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~511~^0.996^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~512~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~513~^1.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~514~^1.704^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~515~^2.484^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~516~^0.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~517~^0.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~518~^0.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~606~^0.320^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~609~^0.057^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~612~^0.031^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~613~^0.176^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~614~^0.056^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~617~^0.247^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~618~^0.032^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~626~^0.082^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~645~^0.329^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15059~^~646~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~312~^0.150^80^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~315~^0.700^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~404~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~406~^1.520^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~415~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15060~^~501~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~502~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~503~^0.893^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~504~^1.576^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~505~^1.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~506~^0.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~507~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~508~^0.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~509~^0.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~510~^0.999^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~511~^1.160^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~512~^0.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~513~^1.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~514~^1.985^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~515~^2.894^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~516~^0.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~517~^0.686^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~518~^0.791^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~606~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~612~^0.013^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~613~^0.140^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~614~^0.031^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~617~^0.070^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~618~^0.011^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~619~^0.012^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~620~^0.052^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~621~^0.174^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~626~^0.057^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~627~^0.008^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~628~^0.024^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~629~^0.079^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15060~^~631~^0.028^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~645~^0.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15060~^~646~^0.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~312~^0.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~315~^0.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~406~^1.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~415~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15061~^~501~^0.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~502~^1.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~503~^1.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~504~^2.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~505~^2.283^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~506~^0.736^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~507~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~508~^0.970^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~509~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~510~^1.281^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~511~^1.487^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~512~^0.732^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~513~^1.503^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~514~^2.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~515~^3.711^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~516~^1.193^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~517~^0.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~518~^1.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~606~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~612~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~613~^0.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~614~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~617~^0.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~618~^0.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~619~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~620~^0.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~621~^0.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~626~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~627~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~628~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~629~^0.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~631~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~645~^0.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15061~^~646~^0.472^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~312~^0.051^8^0.019^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~315~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~404~^0.058^4^0.011^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~405~^0.063^3^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~406~^2.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15062~^~415~^0.117^3^0.024^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~501~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~502~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~503~^0.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~504~^1.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~505~^1.768^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~506~^0.570^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~507~^0.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~508~^0.752^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~509~^0.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~510~^0.992^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~511~^1.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~512~^0.567^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~513~^1.165^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~514~^1.972^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~515~^2.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~516~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~517~^0.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~518~^0.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~606~^0.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15062~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15062~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15062~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15062~^~611~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~612~^0.018^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~613~^0.078^4^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~614~^0.018^4^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~617~^0.079^4^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~618~^0.032^4^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~619~^0.021^3^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~620~^0.028^3^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~621~^0.074^4^0.029^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~626~^0.056^4^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15062~^~628~^0.013^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~629~^0.033^4^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~630~^0.005^3^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~631~^0.014^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~645~^0.157^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15062~^~646~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~312~^0.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~315~^0.310^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~404~^0.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~405~^0.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~406~^2.800^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15063~^~415~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~501~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~502~^1.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~503~^1.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~504~^2.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~505~^2.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~506~^0.731^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~507~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~508~^0.964^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~509~^0.833^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~510~^1.272^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~511~^1.477^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~512~^0.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~513~^1.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~514~^2.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~515~^3.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~516~^1.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~517~^0.873^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~518~^1.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~606~^0.151^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~611~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~612~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~613~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~614~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~617~^0.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~618~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~619~^0.027^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~620~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~621~^0.095^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~626~^0.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~628~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~629~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~630~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~631~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~645~^0.201^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15063~^~646~^0.259^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~312~^0.178^3^0.111^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~315~^0.800^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~404~^0.270^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~405~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~406~^2.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~415~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15064~^~501~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~502~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~503~^0.882^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~504~^1.555^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~505~^1.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~506~^0.566^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~507~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~508~^0.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~509~^0.646^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~510~^0.986^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~511~^1.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~512~^0.563^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~513~^1.157^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~514~^1.960^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~515~^2.857^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~516~^0.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~517~^0.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~518~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~606~^0.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~612~^0.018^7^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~613~^0.197^7^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~614~^0.034^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~617~^0.196^7^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~618~^0.026^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~619~^0.014^7^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~620~^0.058^7^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~621~^0.225^7^0.011^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~626~^0.098^7^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~629~^0.086^7^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15064~^~631~^0.038^7^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~645~^0.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15064~^~646~^0.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~312~^0.050^75^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~404~^0.047^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~405~^0.185^10^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~406~^3.270^10^0.231^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~410~^0.358^10^0.020^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~415~^0.287^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~501~^0.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~502~^0.852^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~503~^0.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~504~^1.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~505~^1.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~506~^0.576^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~507~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~508~^0.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~509~^0.656^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~510~^1.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~511~^1.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~512~^0.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~513~^1.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~514~^1.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~515~^2.903^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~516~^0.933^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~517~^0.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~518~^0.793^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~606~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~612~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~613~^0.084^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~614~^0.043^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~617~^0.067^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~618~^0.009^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15065~^~620~^0.026^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~621~^0.350^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~626~^0.012^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~627~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~628~^0.022^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~629~^0.071^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~630~^0.010^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~631~^0.022^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~645~^0.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15065~^~646~^0.483^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15066~^~312~^0.031^8^0.004^~1~^~A~^^^1^0.019^0.051^7^0.021^0.041^~1, 2, 3~^~07/01/2010~ -~15066~^~315~^0.011^8^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~404~^0.030^3^0.010^~1~^~A~^^^1^0.020^0.050^2^-0.013^0.073^~2, 3~^~07/01/2010~ -~15066~^~405~^0.080^3^0.010^~1~^~A~^^^1^0.070^0.100^2^0.037^0.123^~2, 3~^~07/01/2010~ -~15066~^~406~^0.653^3^0.239^~1~^~A~^^^1^0.390^1.130^2^-0.374^1.681^~2, 3~^~07/01/2010~ -~15066~^~410~^0.237^3^0.055^~1~^~A~^^^1^0.130^0.310^2^0.002^0.471^~2, 3~^~07/01/2010~ -~15066~^~415~^0.069^3^0.030^~1~^~A~^^^1^0.036^0.129^2^-0.061^0.199^~2, 3~^~07/01/2010~ -~15066~^~501~^0.166^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~502~^0.536^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~503~^0.573^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~504~^0.980^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~505~^1.118^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~506~^0.370^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~507~^0.129^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~508~^0.471^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~509~^0.453^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~510~^0.619^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~511~^0.859^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~512~^0.259^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~513~^0.693^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~514~^1.211^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~515~^1.922^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~516~^0.545^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~517~^0.462^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~518~^0.499^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15066~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~606~^0.124^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15066~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~609~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15066~^~611~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15066~^~612~^0.004^8^0.001^~1~^~A~^^^1^0.002^0.007^7^0.003^0.006^~2, 3~^~07/01/2010~ -~15066~^~613~^0.087^8^0.009^~1~^~A~^^^1^0.057^0.123^7^0.065^0.109^~2, 3~^~07/01/2010~ -~15066~^~614~^0.029^8^0.003^~1~^~A~^^^1^0.019^0.043^7^0.022^0.035^~2, 3~^~07/01/2010~ -~15066~^~615~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~617~^0.052^8^0.007^~1~^~AS~^^^1^0.028^0.080^7^0.036^0.068^~2, 3~^~07/01/2010~ -~15066~^~618~^0.016^8^0.001^~1~^~AS~^^^1^0.009^0.021^7^0.013^0.019^~2, 3~^~07/01/2010~ -~15066~^~619~^0.001^8^0.000^~1~^~AS~^^^1^0.001^0.002^7^0.001^0.001^~2, 3~^~07/01/2010~ -~15066~^~620~^0.005^8^0.001^~1~^~A~^^^1^0.003^0.008^7^0.003^0.006^~2, 3~^~07/01/2010~ -~15066~^~621~^0.116^8^0.013^~1~^~A~^^^1^0.083^0.201^7^0.086^0.147^~2, 3~^~07/01/2010~ -~15066~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15066~^~625~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~626~^0.004^8^0.001^~1~^~AS~^^^1^0.001^0.007^7^0.002^0.005^~2, 3~^~07/01/2010~ -~15066~^~627~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~628~^0.010^8^0.001^~1~^~A~^^^1^0.006^0.017^7^0.007^0.012^~2, 3~^~07/01/2010~ -~15066~^~629~^0.049^8^0.009^~1~^~A~^^^1^0.024^0.103^7^0.028^0.070^~2, 3~^~07/01/2010~ -~15066~^~630~^0.001^8^0.000^~1~^~AS~^^^1^0.000^0.002^7^0.001^0.002^~2, 3~^~07/01/2010~ -~15066~^~631~^0.004^8^0.001^~1~^~A~^^^1^0.002^0.007^7^0.003^0.005^~2, 3~^~07/01/2010~ -~15066~^~645~^0.079^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~646~^0.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~652~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~07/01/2010~ -~15066~^~653~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~654~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~662~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~663~^0.004^8^0.001^~1~^~A~^^^1^0.002^0.010^7^0.002^0.006^~2, 3~^~07/01/2010~ -~15066~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~665~^0.011^8^0.001^~1~^~A~^^^1^0.006^0.017^7^0.008^0.014^~2, 3~^~07/01/2010~ -~15066~^~670~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15066~^~671~^0.005^8^0.000^~1~^~A~^^^1^0.004^0.008^7^0.004^0.006^~2, 3~^~07/01/2010~ -~15066~^~672~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~673~^0.003^8^0.001^~1~^~A~^^^1^0.001^0.007^7^0.002^0.005^~2, 3~^~07/01/2010~ -~15066~^~674~^0.048^8^0.006^~1~^~A~^^^1^0.026^0.077^7^0.033^0.063^~2, 3~^~07/01/2010~ -~15066~^~675~^0.004^8^0.000^~1~^~A~^^^1^0.003^0.006^7^0.003^0.005^~2, 3~^~07/01/2010~ -~15066~^~676~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^7^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15066~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15066~^~687~^0.004^8^0.002^~1~^~A~^^^1^0.000^0.016^7^0.000^0.009^~1, 2, 3~^~07/01/2010~ -~15066~^~689~^0.002^8^0.000^~1~^~AS~^^^1^0.000^0.004^7^0.001^0.004^~2, 3~^~07/01/2010~ -~15066~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15066~^~697~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15066~^~851~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.002^7^0.001^0.001^~2, 3~^~07/01/2010~ -~15066~^~852~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15066~^~853~^0.002^8^0.000^~1~^~A~^^^1^0.000^0.004^7^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15066~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15067~^~312~^0.060^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~315~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~404~^0.054^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~405~^0.223^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~406~^3.949^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~410~^0.432^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~415~^0.329^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~501~^0.263^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~502~^1.029^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~503~^1.082^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~504~^1.908^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~505~^2.157^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~506~^0.696^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~507~^0.251^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~508~^0.917^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~509~^0.792^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~510~^1.210^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~511~^1.406^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~512~^0.691^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~513~^1.420^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~514~^2.405^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~515~^3.506^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~516~^1.127^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~517~^0.831^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~518~^0.958^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~606~^0.159^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~612~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~613~^0.101^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~614~^0.052^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~617~^0.081^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~618~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~619~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~620~^0.031^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~621~^0.423^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~626~^0.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~627~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~628~^0.027^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~629~^0.086^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~630~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~631~^0.027^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~645~^0.134^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15067~^~646~^0.583^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15068~^~312~^0.038^64^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~315~^0.013^6^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~404~^0.560^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~406~^3.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~415~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15068~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~502~^0.810^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~503~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~504~^1.502^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~505~^1.697^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~506~^0.547^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~508~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~509~^0.624^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~510~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~511~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~512~^0.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~513~^1.117^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~514~^1.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~515~^2.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~516~^0.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~517~^0.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~518~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~606~^3.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~612~^0.410^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~613~^2.217^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~614~^0.824^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~617~^2.023^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~618~^0.121^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~620~^0.246^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~621~^0.393^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~626~^0.563^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~629~^0.175^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15068~^~631~^0.202^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~645~^2.586^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15068~^~646~^1.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~312~^0.078^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~315~^0.025^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~404~^0.680^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~405~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~406~^3.800^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~415~^0.230^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15069~^~501~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~502~^1.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~503~^1.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~504~^1.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~505~^2.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~506~^0.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~507~^0.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~508~^0.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~509~^0.800^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~510~^1.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~511~^1.417^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~512~^0.697^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~513~^1.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~514~^2.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~515~^3.536^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~516~^1.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~517~^0.838^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~518~^0.966^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~606~^4.499^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~612~^0.526^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~613~^2.842^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~614~^1.056^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~617~^2.593^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~618~^0.155^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~620~^0.315^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~621~^0.504^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~626~^0.722^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~629~^0.224^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~631~^0.259^0^^~4~^~BFFN~^~15068~^^^^^^^^^~04/01/2004~ -~15069~^~645~^3.315^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15069~^~646~^1.458^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15070~^~312~^0.034^4^0.006^~1~^~A~^^^1^0.019^0.046^3^0.016^0.052^~1, 2, 3~^~07/01/2010~ -~15070~^~315~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~404~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~07/01/2010~ -~15070~^~405~^0.187^3^0.142^~1~^~A~^^^1^0.040^0.470^2^-0.423^0.796^~2, 3~^~07/01/2010~ -~15070~^~406~^2.393^3^0.710^~1~^~A~^^^1^1.170^3.630^2^-0.662^5.449^~2, 3~^~07/01/2010~ -~15070~^~410~^0.333^3^0.052^~1~^~A~^^^1^0.230^0.400^2^0.108^0.559^~2, 3~^~07/01/2010~ -~15070~^~415~^0.210^3^0.088^~1~^~A~^^^1^0.075^0.376^2^-0.170^0.590^~2, 3~^~07/01/2010~ -~15070~^~501~^0.245^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~502~^0.838^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~503~^0.876^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~504~^1.516^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~505~^1.808^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~506~^0.584^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~507~^0.198^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~508~^0.772^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~509~^0.659^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~510~^0.913^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~511~^1.252^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~512~^0.414^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~513~^1.092^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~514~^1.921^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~515~^2.928^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~516~^0.857^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~517~^0.697^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15070~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~12/01/2015~ -~15070~^~606~^0.336^0^^~4~^~NC~^^^^^^^^^^~12/01/2015~ -~15070~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/1994~ -~15070~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15070~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/1994~ -~15070~^~611~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~12/01/2015~ -~15070~^~612~^0.049^4^0.023^~1~^~A~^^^1^0.012^0.111^3^-0.025^0.123^~2, 3~^~07/01/2010~ -~15070~^~613~^0.223^4^0.075^~1~^~A~^^^1^0.101^0.414^3^-0.016^0.462^~2, 3~^~12/01/2015~ -~15070~^~614~^0.052^4^0.017^~1~^~A~^^^1^0.026^0.098^3^-0.002^0.105^~2, 3~^~12/01/2015~ -~15070~^~615~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.000^0.004^~2, 3~^~07/01/2010~ -~15070~^~617~^0.212^4^0.088^~1~^~AS~^^^1^0.059^0.454^3^-0.069^0.492^~2, 3~^~12/01/2015~ -~15070~^~618~^0.035^4^0.006^~1~^~AS~^^^1^0.024^0.052^3^0.016^0.055^~2, 3~^~12/01/2015~ -~15070~^~619~^0.011^4^0.005^~1~^~AS~^^^1^0.003^0.022^3^-0.004^0.026^~2, 3~^~12/01/2015~ -~15070~^~620~^0.014^4^0.005^~1~^~A~^^^1^0.006^0.030^3^-0.002^0.031^~2, 3~^~12/01/2015~ -~15070~^~621~^0.179^4^0.044^~1~^~A~^^^1^0.094^0.287^3^0.040^0.319^~2, 3~^~12/01/2015~ -~15070~^~624~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15070~^~625~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.006^3^-0.001^0.006^~2, 3~^~07/01/2010~ -~15070~^~626~^0.072^4^0.040^~1~^~AS~^^^1^0.013^0.189^3^-0.057^0.201^~2, 3~^~07/01/2010~ -~15070~^~627~^0.015^4^0.007^~1~^~A~^^^1^0.002^0.032^3^-0.007^0.037^~2, 3~^~07/01/2010~ -~15070~^~628~^0.047^4^0.014^~1~^~A~^^^1^0.014^0.085^3^0.001^0.093^~2, 3~^~12/01/2015~ -~15070~^~629~^0.084^4^0.033^~1~^~A~^^^1^0.023^0.154^3^-0.020^0.189^~2, 3~^~12/01/2015~ -~15070~^~630~^0.029^0^^~1~^~AS~^^^^^^^^^^~12/01/2015~ -~15070~^~631~^0.019^4^0.010^~1~^~A~^^^1^0.004^0.047^3^-0.013^0.051^~2, 3~^~12/01/2015~ -~15070~^~645~^0.364^0^^~4~^~NC~^^^^^^^^^^~12/01/2015~ -~15070~^~646~^0.370^0^^~4~^~NC~^^^^^^^^^^~12/01/2015~ -~15070~^~652~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.011^3^-0.002^0.012^~2, 3~^~12/01/2015~ -~15070~^~653~^0.004^4^0.002^~1~^~A~^^^1^0.001^0.009^3^-0.002^0.009^~2, 3~^~07/01/2010~ -~15070~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15070~^~662~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.005^3^-0.001^0.005^~2, 3~^~07/01/2010~ -~15070~^~663~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.000^0.006^~2, 3~^~07/01/2010~ -~15070~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15070~^~665~^0.013^4^0.001^~1~^~A~^^^1^0.009^0.015^3^0.008^0.017^~2, 3~^~12/01/2015~ -~15070~^~670~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~12/01/2015~ -~15070~^~671~^0.011^4^0.002^~1~^~A~^^^1^0.006^0.018^3^0.003^0.018^~2, 3~^~07/01/2010~ -~15070~^~672~^0.004^4^0.002^~1~^~A~^^^1^0.001^0.009^3^-0.002^0.009^~2, 3~^~07/01/2010~ -~15070~^~673~^0.070^4^0.039^~1~^~A~^^^1^0.012^0.184^3^-0.056^0.195^~2, 3~^~07/01/2010~ -~15070~^~674~^0.209^4^0.087^~1~^~A~^^^1^0.058^0.449^3^-0.069^0.486^~2, 3~^~12/01/2015~ -~15070~^~675~^0.022^4^0.006^~1~^~A~^^^1^0.009^0.037^3^0.002^0.042^~2, 3~^~07/01/2010~ -~15070~^~676~^0.029^1^^~1~^~A~^^^^^^^^^^~12/01/2015~ -~15070~^~685~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15070~^~687~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.011^3^-0.001^0.012^~2, 3~^~07/01/2010~ -~15070~^~689~^0.005^4^0.002^~1~^~AS~^^^1^0.002^0.011^3^-0.002^0.012^~2, 3~^~07/01/2010~ -~15070~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15070~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~12/01/2015~ -~15070~^~697~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~12/01/2015~ -~15070~^~851~^0.010^4^0.004^~1~^~A~^^^1^0.003^0.020^3^-0.003^0.023^~2, 3~^~12/01/2015~ -~15070~^~852~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.000^0.005^~2, 3~^~07/01/2010~ -~15070~^~853~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.002^0.008^~1, 2, 3~^~12/01/2015~ -~15070~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2015~ -~15070~^~858~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.002^0.006^~1, 2, 3~^~07/01/2010~ -~15071~^~312~^0.041^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~404~^0.027^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~405~^0.226^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~406~^2.897^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~410~^0.404^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~415~^0.241^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~501~^0.296^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~502~^1.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~503~^1.060^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~504~^1.835^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~505~^2.188^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~506~^0.707^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~507~^0.239^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~508~^0.935^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~509~^0.798^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~510~^1.106^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~511~^1.516^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~512~^0.502^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~513~^1.322^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~514~^2.325^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~515~^3.545^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~516~^1.037^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~517~^0.843^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~518~^0.923^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~605~^0.025^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~606~^0.420^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~612~^0.060^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~613~^0.277^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~614~^0.066^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~617~^0.284^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~618~^0.046^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~619~^0.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~620~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~621~^0.238^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~625~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~626~^0.087^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~627~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~628~^0.060^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~629~^0.107^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~630~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~631~^0.027^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~645~^0.466^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~646~^0.485^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~652~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~653~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~671~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~672~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~687~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~689~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~697~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15071~^~858~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15072~^~312~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~315~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~404~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~405~^0.740^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~406~^1.800^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~410~^1.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~415~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15072~^~501~^0.293^12^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~502~^1.017^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~503~^1.142^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~504~^1.956^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~505~^1.699^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~506~^0.553^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~507~^0.389^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~508~^1.092^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~509~^1.121^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~510~^1.307^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~511~^1.278^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~512~^0.607^25^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~513~^1.428^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~514~^1.789^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~515~^2.670^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~516~^0.650^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~517~^1.189^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~518~^0.975^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~606~^1.456^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15072~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15072~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15072~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15072~^~612~^0.076^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~613~^1.275^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~614~^0.105^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~617~^1.135^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~618~^0.029^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~619~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~620~^0.181^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~621~^1.363^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~626~^0.374^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~627~^0.012^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~628~^0.111^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~629~^0.983^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~630~^0.041^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~631~^0.082^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~645~^1.661^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15072~^~646~^2.656^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15073~^~312~^0.075^3^0.000^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~315~^0.050^3^0.012^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~404~^0.031^3^0.002^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~405~^0.045^3^0.007^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~406~^1.530^3^0.203^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~410~^0.051^3^0.010^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~415~^0.052^3^0.011^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15073~^~501~^0.184^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~502~^0.740^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~503~^0.767^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~504~^1.293^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~505~^1.490^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~506~^0.526^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~507~^0.174^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~508~^0.626^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~509~^0.569^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~510~^0.789^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~511~^1.039^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~512~^0.338^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~513~^0.923^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~514~^1.845^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~515~^2.673^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~516~^0.651^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~517~^0.545^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~518~^0.675^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15073~^~606~^0.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~15073~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~15073~^~609~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~610~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~611~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~612~^0.003^3^0.006^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~613~^0.008^3^0.009^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~614~^0.002^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~615~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~617~^0.154^3^0.249^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~618~^0.032^3^0.038^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15073~^~620~^0.011^3^0.020^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~621~^0.015^3^0.012^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~624~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~625~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~626~^0.028^3^0.035^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~627~^0.001^3^0.003^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~628~^0.041^3^0.055^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~629~^0.004^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~630~^0.016^3^0.057^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~631~^0.001^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~645~^0.239^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~646~^0.109^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15073~^~652~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~653~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~654~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~672~^0.037^3^0.057^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~687~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~689~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~697~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15073~^~851~^0.003^3^0.023^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15074~^~312~^0.022^100^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~404~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~405~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~406~^4.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15074~^~501~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~502~^0.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~503~^0.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~504~^1.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~505~^1.232^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~506~^0.397^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~507~^0.144^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~508~^0.524^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~509~^0.453^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~510~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~511~^0.803^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~512~^0.395^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~513~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~514~^1.373^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~515~^2.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~516~^0.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~517~^0.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~518~^0.547^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~606~^3.201^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15074~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15074~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15074~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15074~^~611~^0.009^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~612~^0.719^3^0.141^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~613~^2.054^3^0.348^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~614~^0.408^3^0.094^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~617~^4.074^3^0.831^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~618~^0.165^3^0.076^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~619~^0.095^3^0.053^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~620~^0.104^3^0.027^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~621~^0.718^3^0.609^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~626~^1.223^3^0.238^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~627~^0.114^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~628~^1.421^3^0.701^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~629~^0.677^3^0.355^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~630~^1.304^3^0.541^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~631~^0.169^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~645~^8.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15074~^~646~^2.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~312~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~404~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~406~^5.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~410~^0.990^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~415~^0.390^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15075~^~501~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~502~^0.774^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~503~^0.814^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~504~^1.435^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~505~^1.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~506~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~507~^0.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~508~^0.689^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~509~^0.596^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~510~^0.910^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~511~^1.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~512~^0.520^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~513~^1.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~514~^1.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~515~^2.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~516~^0.848^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~517~^0.624^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~518~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~606~^4.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~611~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~612~^0.946^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~613~^2.703^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~614~^0.537^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~617~^5.361^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~618~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~619~^0.125^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~620~^0.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~621~^0.945^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~626~^1.609^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~627~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~628~^1.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~629~^0.891^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~630~^1.716^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~631~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~645~^10.605^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15075~^~646~^2.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~312~^0.250^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~315~^0.016^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~404~^0.226^11^0.038^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~405~^0.380^6^0.147^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~406~^7.860^13^0.618^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~410~^1.664^5^0.375^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~415~^0.818^4^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~501~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~502~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~503~^0.914^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~504~^1.613^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~505~^1.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~506~^0.587^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~507~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~508~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~509~^0.670^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~510~^1.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~511~^1.187^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~512~^0.584^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~513~^1.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~514~^2.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~515~^2.962^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~516~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~517~^0.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~518~^0.809^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~606~^0.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~612~^0.137^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~613~^0.632^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~614~^0.212^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~617~^1.351^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~618~^0.172^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~619~^0.295^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~620~^0.267^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~621~^1.115^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~626~^0.251^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~627~^0.083^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~628~^0.223^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~629~^0.321^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~630~^0.279^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~631~^0.287^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~645~^2.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15076~^~646~^2.539^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~312~^0.230^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~315~^0.017^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~404~^0.023^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~405~^0.101^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~406~^4.720^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~410~^0.870^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~415~^0.278^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~501~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~502~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~503~^0.842^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~504~^1.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~505~^1.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~506~^0.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~508~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~509~^0.617^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~510~^0.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~511~^1.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~512~^0.538^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~513~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~514~^1.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~515~^2.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~516~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~517~^0.646^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~518~^0.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~606~^0.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~612~^0.183^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~613~^0.560^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~614~^0.186^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~617~^0.949^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~618~^0.472^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~621~^0.267^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~626~^0.305^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15077~^~628~^0.468^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~629~^0.183^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~630~^0.301^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~631~^0.073^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~645~^2.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15077~^~646~^0.995^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~312~^0.041^63^^~1~^^^^1^0.019^0.072^^^^~2, 3~^~04/01/2003~ -~15078~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~404~^0.054^4^0.004^~1~^^^^1^0.037^0.105^2^0.035^0.073^~2, 3~^~04/01/2003~ -~15078~^~405~^0.113^4^0.016^~1~^^^^1^0.108^0.114^2^0.045^0.180^~2, 3~^~04/01/2003~ -~15078~^~406~^8.420^3^0.543^~1~^^^^^^^^^^^~04/01/2003~ -~15078~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15078~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15078~^~501~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~502~^0.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~503~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~504~^1.630^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~505~^1.842^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~506~^0.594^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~507~^0.215^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~508~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~509~^0.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~510~^1.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~511~^1.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~512~^0.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~513~^1.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~514~^2.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~515~^2.994^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~516~^0.963^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~517~^0.709^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~518~^0.818^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15078~^~606~^3.100^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~612~^0.421^3^0.004^~1~^~A~^^^2^0.395^0.460^1^0.366^0.476^~2, 3~^~04/01/2003~ -~15078~^~613~^2.092^3^0.035^~1~^~A~^^^2^2.047^2.150^1^1.652^2.531^~2, 3~^~04/01/2003~ -~15078~^~614~^0.577^3^0.005^~1~^~A~^^^2^0.494^0.730^1^0.516^0.639^~2, 3~^~04/01/2003~ -~15078~^~615~^0.010^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~04/01/2003~ -~15078~^~617~^2.958^3^0.437^~1~^~A~^^^2^1.952^3.660^1^-2.596^8.513^~2, 3~^~04/01/2003~ -~15078~^~618~^0.122^3^0.021^~1~^~A~^^^2^0.082^0.145^1^-0.148^0.391^~2, 3~^~04/01/2003~ -~15078~^~619~^0.089^3^0.015^~1~^~A~^^^2^0.054^0.113^1^-0.097^0.274^~2, 3~^~04/01/2003~ -~15078~^~620~^0.147^3^0.025^~1~^~A~^^^2^0.082^0.202^1^-0.169^0.463^~2, 3~^~04/01/2003~ -~15078~^~621~^0.944^3^0.200^~1~^~A~^^^2^0.743^1.344^1^-1.602^3.490^~2, 3~^~04/01/2003~ -~15078~^~626~^0.909^3^0.092^~1~^~A~^^^2^0.650^1.151^1^-0.263^2.082^~2, 3~^~04/01/2003~ -~15078~^~627~^0.188^1^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~15078~^~628~^0.344^3^0.000^~1~^~A~^^^2^0.218^0.595^1^0.340^0.348^~2, 3~^~04/01/2003~ -~15078~^~629~^1.008^3^0.047^~1~^~A~^^^2^0.924^1.066^1^0.410^1.607^~2, 3~^~04/01/2003~ -~15078~^~630~^0.187^3^0.002^~1~^~A~^^^2^0.050^0.456^1^0.164^0.210^~2, 3~^~04/01/2003~ -~15078~^~631~^0.301^3^0.194^~1~^~A~^^^2^0.009^0.591^1^-2.163^2.765^~2, 3~^~04/01/2003~ -~15078~^~645~^4.399^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15078~^~646~^2.799^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15079~^~312~^0.055^57^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~404~^0.080^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~405~^0.180^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~406~^7.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15079~^~501~^0.226^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~502~^0.883^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~503~^0.928^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~504~^1.637^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~505~^1.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~506~^0.596^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~507~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~508~^0.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~509~^0.680^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~510~^1.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~511~^1.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~512~^0.593^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~513~^1.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~514~^2.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~515~^3.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~516~^0.967^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~517~^0.712^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~518~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~606~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~612~^0.150^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~613~^0.586^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~614~^0.104^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~617~^0.816^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~618~^0.060^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~619~^0.034^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~620~^0.030^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~621~^0.394^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~626~^0.221^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~627~^0.068^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~628~^0.184^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~629~^0.233^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~630~^0.320^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~631~^0.079^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~645~^1.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15079~^~646~^0.898^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~312~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~404~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~405~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~406~^7.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~410~^0.560^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~415~^0.380^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15080~^~501~^0.240^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~502~^0.940^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~503~^0.988^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~504~^1.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~505~^1.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~506~^0.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~507~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~508~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~509~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~510~^1.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~511~^1.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~512~^0.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~513~^1.296^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~514~^2.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~515~^3.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~516~^1.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~517~^0.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~518~^0.874^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~606~^1.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15080~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15080~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15080~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15080~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15080~^~612~^0.482^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~613~^0.816^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~614~^0.188^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~617~^1.159^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~618~^0.057^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~619~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~620~^0.073^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~621~^0.702^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~626~^0.237^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~627~^0.073^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~628~^0.278^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~629~^0.473^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~630~^0.245^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~631~^0.090^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~645~^1.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15080~^~646~^1.517^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~312~^0.051^69^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~315~^0.014^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~404~^0.113^3^0.030^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~405~^0.140^3^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~406~^7.230^3^0.922^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~410~^0.823^3^0.055^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~415~^0.549^3^0.132^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~501~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~502~^0.948^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~503~^0.996^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~504~^1.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~505~^1.985^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~506~^0.640^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~507~^0.232^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~508~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~509~^0.730^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~510~^1.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~511~^1.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~512~^0.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~513~^1.307^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~514~^2.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~515~^3.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~516~^1.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~517~^0.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~518~^0.882^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~606~^1.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15081~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15081~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15081~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15081~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15081~^~612~^0.264^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~613~^0.751^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~614~^0.207^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~617~^1.204^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~618~^0.206^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~619~^0.157^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~620~^0.133^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~621~^0.656^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~626~^0.506^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~627~^0.119^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~628~^0.250^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~629~^0.429^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~630~^0.146^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~631~^0.232^6^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~645~^2.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15081~^~646~^1.992^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~312~^0.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~315~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~404~^0.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~405~^0.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~406~^7.779^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~410~^0.834^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~415~^0.556^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~501~^0.306^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~502~^1.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~503~^1.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~504~^2.224^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~505~^2.513^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~506~^0.810^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~507~^0.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~508~^1.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~509~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~510~^1.410^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~511~^1.637^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~512~^0.806^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~513~^1.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~514~^2.802^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~515~^4.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~516~^1.313^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~517~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~518~^1.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~606~^1.595^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~612~^0.334^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~613~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~614~^0.262^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~617~^1.524^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~618~^0.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~619~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~620~^0.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~621~^0.831^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~626~^0.640^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~627~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~628~^0.316^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~629~^0.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~630~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~631~^0.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~645~^2.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15082~^~646~^2.521^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15083~^~312~^0.063^3^0.007^~1~^~A~^^^1^0.054^0.076^2^0.034^0.092^~2, 3~^~07/01/2010~ -~15083~^~315~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15083~^~404~^0.080^2^^~1~^~A~^^^1^0.060^0.100^1^^^^~07/01/2010~ -~15083~^~405~^0.105^2^^~1~^~A~^^^1^0.090^0.120^1^^^^~07/01/2010~ -~15083~^~406~^7.995^2^^~1~^~A~^^^1^7.500^8.490^1^^^^~07/01/2010~ -~15083~^~410~^1.030^2^^~1~^~A~^^^1^0.960^1.100^1^^^^~07/01/2010~ -~15083~^~415~^0.611^2^^~1~^~A~^^^1^0.518^0.704^1^^^^~07/01/2010~ -~15083~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~502~^1.066^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~503~^0.954^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~504~^1.562^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~505~^1.759^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~506~^0.577^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~508~^0.845^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~509~^0.742^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~510~^1.100^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~511~^1.287^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~512~^0.543^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~513~^1.308^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~514~^2.575^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~515~^2.903^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~516~^1.263^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~517~^0.867^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~518~^0.905^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15083~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~606~^0.810^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15083~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2010~ -~15083~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15083~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15083~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~07/01/2010~ -~15083~^~612~^0.203^3^0.123^~1~^~A~^^^1^0.066^0.449^2^-0.328^0.734^~2, 3~^~07/01/2010~ -~15083~^~613~^0.472^3^0.207^~1~^~A~^^^1^0.211^0.881^2^-0.419^1.363^~2, 3~^~07/01/2010~ -~15083~^~614~^0.102^3^0.032^~1~^~A~^^^1^0.065^0.165^2^-0.034^0.238^~2, 3~^~07/01/2010~ -~15083~^~615~^0.006^3^0.003^~1~^~A~^^^1^0.003^0.011^2^-0.006^0.017^~2, 3~^~07/01/2010~ -~15083~^~617~^0.630^3^0.349^~1~^~AS~^^^1^0.217^1.325^2^-0.873^2.134^~2, 3~^~07/01/2010~ -~15083~^~618~^0.081^3^0.027^~1~^~AS~^^^1^0.051^0.135^2^-0.035^0.197^~2, 3~^~07/01/2010~ -~15083~^~619~^0.047^3^0.020^~1~^~AS~^^^1^0.024^0.087^2^-0.039^0.133^~2, 3~^~07/01/2010~ -~15083~^~620~^0.014^3^0.004^~1~^~A~^^^1^0.007^0.021^2^-0.004^0.031^~2, 3~^~07/01/2010~ -~15083~^~621~^0.333^3^0.036^~1~^~A~^^^1^0.261^0.375^2^0.177^0.489^~2, 3~^~07/01/2010~ -~15083~^~624~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~2, 3~^~07/01/2010~ -~15083~^~625~^0.003^3^0.002^~1~^~A~^^^1^0.001^0.007^2^-0.006^0.012^~2, 3~^~07/01/2010~ -~15083~^~626~^0.180^3^0.118^~1~^~AS~^^^1^0.049^0.416^2^-0.330^0.689^~2, 3~^~07/01/2010~ -~15083~^~627~^0.072^3^0.044^~1~^~A~^^^1^0.016^0.160^2^-0.119^0.263^~2, 3~^~07/01/2010~ -~15083~^~628~^0.449^3^0.284^~1~^~A~^^^1^0.108^1.012^2^-0.771^1.669^~2, 3~^~07/01/2010~ -~15083~^~629~^0.182^3^0.072^~1~^~A~^^^1^0.091^0.325^2^-0.129^0.493^~2, 3~^~07/01/2010~ -~15083~^~630~^0.047^3^0.011^~1~^~AS~^^^1^0.031^0.067^2^0.001^0.092^~2, 3~^~07/01/2010~ -~15083~^~631~^0.047^3^0.014^~1~^~A~^^^1^0.030^0.076^2^-0.015^0.109^~2, 3~^~07/01/2010~ -~15083~^~645~^1.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~646~^0.811^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~652~^0.013^3^0.004^~1~^~A~^^^1^0.006^0.020^2^-0.005^0.030^~2, 3~^~07/01/2010~ -~15083~^~653~^0.010^3^0.002^~1~^~A~^^^1^0.006^0.014^2^0.000^0.020^~2, 3~^~07/01/2010~ -~15083~^~654~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15083~^~662~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.008^2^-0.002^0.012^~2, 3~^~07/01/2010~ -~15083~^~663~^0.009^3^0.004^~1~^~A~^^^1^0.005^0.016^2^-0.007^0.024^~2, 3~^~07/01/2010~ -~15083~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~07/01/2010~ -~15083~^~665~^0.019^3^0.005^~1~^~A~^^^1^0.013^0.030^2^-0.004^0.042^~2, 3~^~07/01/2010~ -~15083~^~670~^0.005^3^0.002^~1~^~A~^^^1^0.001^0.009^2^-0.005^0.015^~2, 3~^~07/01/2010~ -~15083~^~671~^0.034^3^0.015^~1~^~A~^^^1^0.013^0.064^2^-0.033^0.100^~2, 3~^~07/01/2010~ -~15083~^~672~^0.018^3^0.010^~1~^~A~^^^1^0.007^0.037^2^-0.024^0.059^~2, 3~^~07/01/2010~ -~15083~^~673~^0.175^3^0.117^~1~^~A~^^^1^0.046^0.408^2^-0.328^0.678^~2, 3~^~07/01/2010~ -~15083~^~674~^0.622^3^0.346^~1~^~A~^^^1^0.212^1.309^2^-0.866^2.109^~2, 3~^~07/01/2010~ -~15083~^~675~^0.057^3^0.028^~1~^~A~^^^1^0.020^0.113^2^-0.066^0.180^~2, 3~^~07/01/2010~ -~15083~^~676~^0.045^3^0.009^~1~^~A~^^^1^0.031^0.063^2^0.005^0.086^~2, 3~^~07/01/2010~ -~15083~^~685~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.002^0.006^~2, 3~^~07/01/2010~ -~15083~^~687~^0.004^3^0.002^~1~^~A~^^^1^0.001^0.008^2^-0.006^0.013^~2, 3~^~07/01/2010~ -~15083~^~689~^0.013^3^0.004^~1~^~AS~^^^1^0.008^0.020^2^-0.003^0.029^~2, 3~^~07/01/2010~ -~15083~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15083~^~697~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~07/01/2010~ -~15083~^~851~^0.045^3^0.019^~1~^~A~^^^1^0.023^0.083^2^-0.037^0.127^~2, 3~^~07/01/2010~ -~15083~^~852~^0.008^3^0.003^~1~^~A~^^^1^0.004^0.013^2^-0.003^0.020^~2, 3~^~07/01/2010~ -~15083~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.007^2^-0.002^0.011^~2, 3~^~07/01/2010~ -~15083~^~858~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~07/01/2010~ -~15084~^~312~^0.069^17^0.001^~1~^~A~^^^1^0.058^0.080^16^0.066^0.072^~2, 3~^~05/01/2011~ -~15084~^~315~^0.024^17^0.001^~1~^~A~^^^1^0.020^0.030^16^0.023^0.026^~2, 3~^~05/01/2011~ -~15084~^~404~^0.023^36^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15084~^~405~^0.186^36^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15084~^~406~^6.536^25^0.333^~1~^^^^^^^^^^^~09/01/1987~ -~15084~^~410~^0.550^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15084~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15084~^~501~^0.212^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~502~^1.023^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~503~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~504~^1.500^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~505~^1.689^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~506~^0.554^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~507~^0.152^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~508~^0.811^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~509~^0.712^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~510~^1.056^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~511~^1.236^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~512~^0.521^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~513~^1.255^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~514~^2.472^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~515~^2.787^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~516~^1.212^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~517~^0.832^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~518~^0.869^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15084~^~605~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~606~^0.862^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~607~^0.004^17^0.000^~1~^~A~^^^1^0.003^0.006^16^0.003^0.004^~2, 3~^~05/01/2011~ -~15084~^~608~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~15084~^~609~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~15084~^~610~^0.008^17^0.003^~1~^~A~^^^1^0.000^0.035^16^0.001^0.015^~1, 2, 3~^~05/01/2011~ -~15084~^~611~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.004^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15084~^~612~^0.177^17^0.010^~1~^~A~^^^1^0.079^0.254^16^0.156^0.198^~2, 3~^~05/01/2011~ -~15084~^~613~^0.518^17^0.028^~1~^~A~^^^1^0.271^0.819^16^0.458^0.578^~2, 3~^~05/01/2011~ -~15084~^~614~^0.100^17^0.005^~1~^~A~^^^1^0.054^0.148^16^0.090^0.110^~2, 3~^~05/01/2011~ -~15084~^~615~^0.007^17^0.000^~1~^~A~^^^1^0.004^0.010^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15084~^~617~^0.547^17^0.031^~1~^~AS~^^^1^0.270^0.910^16^0.480^0.614^~2, 3~^~05/01/2011~ -~15084~^~618~^0.091^17^0.005^~1~^~AS~^^^1^0.044^0.128^16^0.081^0.101^~2, 3~^~05/01/2011~ -~15084~^~619~^0.052^17^0.003^~1~^~AS~^^^1^0.028^0.070^16^0.047^0.058^~2, 3~^~05/01/2011~ -~15084~^~620~^0.021^17^0.001^~1~^~A~^^^1^0.013^0.029^16^0.019^0.023^~2, 3~^~05/01/2011~ -~15084~^~621~^0.669^17^0.025^~1~^~A~^^^1^0.420^0.858^16^0.616^0.722^~2, 3~^~05/01/2011~ -~15084~^~624~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.005^16^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15084~^~625~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.003^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15084~^~626~^0.143^17^0.009^~1~^~AS~^^^1^0.065^0.248^16^0.124^0.162^~2, 3~^~05/01/2011~ -~15084~^~627~^0.143^17^0.009^~1~^~A~^^^1^0.064^0.198^16^0.124^0.162^~2, 3~^~05/01/2011~ -~15084~^~628~^0.440^17^0.024^~1~^~A~^^^1^0.203^0.612^16^0.390^0.491^~2, 3~^~05/01/2011~ -~15084~^~629~^0.323^17^0.018^~1~^~A~^^^1^0.161^0.503^16^0.285^0.362^~2, 3~^~05/01/2011~ -~15084~^~630~^0.053^17^0.003^~1~^~AS~^^^1^0.027^0.077^16^0.046^0.061^~2, 3~^~05/01/2011~ -~15084~^~631~^0.086^17^0.004^~1~^~A~^^^1^0.050^0.120^16^0.078^0.094^~2, 3~^~05/01/2011~ -~15084~^~645~^1.205^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~646~^1.420^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~652~^0.024^17^0.001^~1~^~A~^^^1^0.013^0.034^16^0.021^0.027^~2, 3~^~05/01/2011~ -~15084~^~653~^0.015^17^0.001^~1~^~A~^^^1^0.008^0.025^16^0.013^0.017^~2, 3~^~05/01/2011~ -~15084~^~654~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15084~^~662~^0.007^17^0.000^~1~^~A~^^^1^0.003^0.010^16^0.006^0.008^~2, 3~^~05/01/2011~ -~15084~^~663~^0.009^17^0.000^~1~^~A~^^^1^0.005^0.013^16^0.008^0.010^~2, 3~^~05/01/2011~ -~15084~^~664~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.004^16^0.000^0.002^~1, 2, 3~^~05/01/2011~ -~15084~^~665~^0.010^17^0.001^~1~^~A~^^^1^0.004^0.013^16^0.008^0.011^~2, 3~^~05/01/2011~ -~15084~^~670~^0.005^17^0.001^~1~^~A~^^^1^0.000^0.012^16^0.003^0.007^~1, 2, 3~^~05/01/2011~ -~15084~^~671~^0.009^17^0.004^~1~^~A~^^^1^0.000^0.043^16^0.001^0.016^~1, 2, 3~^~05/01/2011~ -~15084~^~672~^0.015^17^0.001^~1~^~A~^^^1^0.007^0.020^16^0.013^0.017^~2, 3~^~05/01/2011~ -~15084~^~673~^0.136^17^0.009^~1~^~A~^^^1^0.062^0.239^16^0.118^0.155^~2, 3~^~05/01/2011~ -~15084~^~674~^0.538^17^0.031^~1~^~A~^^^1^0.265^0.897^16^0.472^0.604^~2, 3~^~05/01/2011~ -~15084~^~675~^0.076^17^0.004^~1~^~A~^^^1^0.040^0.105^16^0.068^0.084^~2, 3~^~05/01/2011~ -~15084~^~676~^0.052^17^0.003^~1~^~A~^^^1^0.027^0.074^16^0.045^0.059^~2, 3~^~05/01/2011~ -~15084~^~685~^0.004^17^0.001^~1~^~A~^^^1^0.000^0.006^16^0.003^0.005^~1, 2, 3~^~05/01/2011~ -~15084~^~687~^0.010^17^0.001^~1~^~A~^^^1^0.005^0.014^16^0.009^0.011^~2, 3~^~05/01/2011~ -~15084~^~689~^0.013^17^0.001^~1~^~AS~^^^1^0.006^0.020^16^0.012^0.015^~2, 3~^~05/01/2011~ -~15084~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15084~^~697~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.001^16^0.000^0.000^~1, 2, 3~^~05/01/2011~ -~15084~^~851~^0.048^17^0.002^~1~^~A~^^^1^0.026^0.065^16^0.043^0.054^~2, 3~^~05/01/2011~ -~15084~^~852~^0.008^17^0.001^~1~^~A~^^^1^0.003^0.013^16^0.007^0.009^~2, 3~^~05/01/2011~ -~15084~^~853~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.008^16^0.005^0.006^~2, 3~^~05/01/2011~ -~15084~^~858~^0.003^17^0.000^~1~^~A~^^^1^0.001^0.004^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15085~^~312~^0.064^22^^~1~^~A~^^^3^0.060^0.072^^^^~2~^~08/01/2015~ -~15085~^~315~^0.011^22^^~1~^~A~^^^3^0.011^0.011^^^^~2~^~07/01/2010~ -~15085~^~404~^0.132^19^^~1~^~A~^^^2^0.085^0.180^^^^~2~^~08/01/2015~ -~15085~^~405~^0.207^19^^~1~^~A~^^^2^0.118^0.297^^^^~2~^~08/01/2015~ -~15085~^~406~^8.507^19^^~1~^~A~^^^2^8.138^8.877^^^^~2~^~08/01/2015~ -~15085~^~410~^1.070^17^^~1~^~A~^^^2^0.991^1.150^^^^~2~^~08/01/2015~ -~15085~^~415~^0.731^19^^~1~^~A~^^^2^0.612^0.851^^^^~2~^~08/01/2015~ -~15085~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~502~^1.048^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~503~^1.070^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~504~^1.837^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~505~^2.163^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~506~^0.721^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~507~^0.248^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~508~^0.913^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~509~^1.014^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~510~^1.228^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~511~^1.442^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~512~^0.597^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~513~^1.386^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~514~^2.276^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~515~^3.279^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~516~^1.070^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~517~^0.823^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~518~^0.890^0^^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~606~^0.814^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~607~^0.000^18^^~1~^~A~^^^2^0.000^0.000^^^^~2~^~08/01/2015~ -~15085~^~608~^0.000^22^^~1~^~A~^^^3^0.000^0.000^^^^~2~^~07/01/2010~ -~15085~^~609~^0.000^22^^~1~^~A~^^^3^0.000^0.000^^^^~2~^~07/01/2010~ -~15085~^~610~^0.001^22^^~1~^~A~^^^3^0.000^0.003^^^^~2~^~08/01/2015~ -~15085~^~611~^0.002^22^^~1~^~A~^^^3^0.000^0.007^^^^~2~^~08/01/2015~ -~15085~^~612~^0.126^22^^~1~^~A~^^^3^0.098^0.151^^^^~2~^~08/01/2015~ -~15085~^~613~^0.549^22^^~1~^~A~^^^3^0.472^0.692^^^^~2~^~08/01/2015~ -~15085~^~614~^0.104^22^^~1~^~A~^^^3^0.085^0.119^^^^~2~^~08/01/2015~ -~15085~^~615~^0.005^22^^~1~^~A~^^^3^0.005^0.006^^^^~2~^~08/01/2015~ -~15085~^~617~^0.709^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~618~^0.160^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~619~^0.048^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~620~^0.017^22^^~1~^~A~^^^3^0.013^0.020^^^^~2~^~08/01/2015~ -~15085~^~621~^0.471^22^^~1~^~A~^^^3^0.410^0.564^^^^~2~^~08/01/2015~ -~15085~^~624~^0.001^21^^~1~^~A~^^^3^0.000^0.001^^^^~2~^~08/01/2015~ -~15085~^~625~^0.003^20^^~1~^~A~^^^3^0.000^0.007^^^^~2~^~08/01/2015~ -~15085~^~626~^0.137^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~627~^0.054^22^^~1~^~A~^^^3^0.045^0.072^^^^~2~^~08/01/2015~ -~15085~^~628~^0.376^22^^~1~^~A~^^^3^0.304^0.462^^^^~2~^~08/01/2015~ -~15085~^~629~^0.251^22^^~1~^~A~^^^3^0.218^0.311^^^^~2~^~08/01/2015~ -~15085~^~630~^0.314^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~631~^0.079^22^^~1~^~A~^^^3^0.060^0.092^^^^~2~^~08/01/2015~ -~15085~^~645~^1.371^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~646~^1.115^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~652~^0.015^22^^~1~^~A~^^^3^0.012^0.019^^^^~2~^~08/01/2015~ -~15085~^~653~^0.011^22^^~1~^~A~^^^3^0.007^0.014^^^^~2~^~08/01/2015~ -~15085~^~654~^0.000^22^^~1~^~A~^^^3^0.000^0.001^^^^~2~^~08/01/2015~ -~15085~^~662~^0.006^22^^~1~^~A~^^^3^0.004^0.008^^^^~2~^~08/01/2015~ -~15085~^~663~^0.008^22^^~1~^~A~^^^3^0.005^0.010^^^^~2~^~08/01/2015~ -~15085~^~664~^0.001^22^^~1~^~A~^^^3^0.000^0.001^^^^~2~^~08/01/2015~ -~15085~^~665~^0.005^22^^~1~^~A~^^^3^0.004^0.006^^^^~2~^~08/01/2015~ -~15085~^~670~^0.004^22^^~1~^~A~^^^3^0.000^0.007^^^^~2~^~08/01/2015~ -~15085~^~671~^0.014^22^^~1~^~A~^^^3^0.004^0.032^^^^~2~^~08/01/2015~ -~15085~^~672~^0.016^22^^~1~^~A~^^^3^0.009^0.025^^^^~2~^~08/01/2015~ -~15085~^~673~^0.132^22^^~1~^~A~^^^3^0.113^0.144^^^^~2~^~08/01/2015~ -~15085~^~674~^0.701^22^^~1~^~A~^^^3^0.546^0.845^^^^~2~^~08/01/2015~ -~15085~^~675~^0.151^22^^~1~^~A~^^^3^0.048^0.304^^^^~2~^~08/01/2015~ -~15085~^~676~^0.314^15^0.025^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~685~^0.002^22^^~1~^~A~^^^3^0.000^0.004^^^^~2~^~08/01/2015~ -~15085~^~687~^0.013^22^^~1~^~A~^^^3^0.007^0.022^^^^~2~^~08/01/2015~ -~15085~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~15085~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15085~^~697~^0.000^22^^~1~^~A~^^^3^0.000^0.000^^^^~2~^~07/01/2010~ -~15085~^~851~^0.047^22^^~1~^~A~^^^3^0.022^0.068^^^^~2~^~08/01/2015~ -~15085~^~852~^0.009^22^^~1~^~A~^^^3^0.004^0.012^^^^~2~^~08/01/2015~ -~15085~^~853~^0.006^22^^~1~^~A~^^^3^0.004^0.007^^^^~2~^~08/01/2015~ -~15085~^~856~^0.000^15^0.000^~1~^~A~^^^^^^^^^^~08/01/2015~ -~15085~^~858~^0.003^22^^~1~^~A~^^^3^0.001^0.004^^^^~2~^~08/01/2015~ -~15086~^~312~^0.076^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~404~^0.157^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~405~^0.246^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~406~^10.123^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~410~^1.274^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~415~^0.827^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~501~^0.335^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~502~^1.247^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~503~^1.274^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~504~^2.185^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~505~^2.574^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~506~^0.858^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~507~^0.295^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~508~^1.086^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~509~^1.207^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~510~^1.461^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~511~^1.716^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~512~^0.711^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~513~^1.649^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~514~^2.708^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~515~^3.902^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~516~^1.274^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~517~^0.979^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~518~^1.059^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~605~^0.023^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~606~^0.969^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~610~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~612~^0.150^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~613~^0.653^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~614~^0.124^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~615~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~617~^0.843^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~618~^0.190^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~619~^0.058^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~620~^0.020^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~621~^0.560^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~625~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~626~^0.164^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~627~^0.064^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~628~^0.447^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~629~^0.299^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~630~^0.374^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~631~^0.093^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~645~^1.864^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~646~^1.327^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~652~^0.018^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~653~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~671~^0.017^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~672~^0.019^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~687~^0.015^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~689~^0.017^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15086~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15086~^~858~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~ -~15087~^~312~^0.072^12^0.002^~1~^~A~^^^1^0.061^0.088^11^0.068^0.077^~2, 3~^~05/01/2011~ -~15087~^~315~^0.029^12^0.004^~1~^~A~^^^1^0.021^0.069^11^0.021^0.038^~2, 3~^~05/01/2011~ -~15087~^~404~^0.032^12^0.002^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~405~^0.212^12^0.014^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~406~^7.621^12^0.266^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~410~^0.535^12^0.024^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~415~^0.119^12^0.004^~1~^~A~^^^1^^^^^^^~06/01/2005~ -~15087~^~501~^0.283^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~502~^1.269^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~503~^1.130^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~504~^1.832^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~505~^2.059^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~506~^0.696^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~508~^1.003^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~509~^0.866^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~510~^1.306^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~511~^1.483^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~512~^0.640^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~513~^1.519^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~514~^2.745^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~515~^3.319^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~516~^1.443^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~517~^0.966^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~518~^1.059^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15087~^~605~^0.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~606~^1.440^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~607~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.003^0.005^~2, 3~^~05/01/2011~ -~15087~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~15087~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15087~^~610~^0.008^12^0.003^~1~^~A~^^^1^0.000^0.030^11^0.001^0.014^~1, 2, 3~^~05/01/2011~ -~15087~^~611~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15087~^~612~^0.231^12^0.009^~1~^~A~^^^1^0.182^0.275^11^0.210^0.251^~2, 3~^~05/01/2011~ -~15087~^~613~^0.971^12^0.031^~1~^~A~^^^1^0.795^1.112^11^0.903^1.040^~2, 3~^~05/01/2011~ -~15087~^~614~^0.164^12^0.004^~1~^~A~^^^1^0.139^0.182^11^0.154^0.174^~2, 3~^~05/01/2011~ -~15087~^~615~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.012^11^0.009^0.011^~2, 3~^~05/01/2011~ -~15087~^~617~^1.335^12^0.061^~1~^~AS~^^^1^1.004^1.714^11^1.200^1.469^~2, 3~^~05/01/2011~ -~15087~^~618~^0.134^12^0.004^~1~^~AS~^^^1^0.112^0.152^11^0.125^0.142^~2, 3~^~05/01/2011~ -~15087~^~619~^0.059^12^0.001^~1~^~AS~^^^1^0.052^0.065^11^0.056^0.062^~2, 3~^~05/01/2011~ -~15087~^~620~^0.027^12^0.001^~1~^~A~^^^1^0.025^0.030^11^0.026^0.029^~2, 3~^~05/01/2011~ -~15087~^~621~^0.749^12^0.016^~1~^~A~^^^1^0.661^0.832^11^0.713^0.785^~2, 3~^~05/01/2011~ -~15087~^~624~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15087~^~625~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~05/01/2011~ -~15087~^~626~^0.323^12^0.017^~1~^~AS~^^^1^0.223^0.422^11^0.285^0.361^~2, 3~^~05/01/2011~ -~15087~^~627~^0.112^12^0.005^~1~^~A~^^^1^0.089^0.136^11^0.102^0.122^~2, 3~^~05/01/2011~ -~15087~^~628~^0.737^12^0.038^~1~^~A~^^^1^0.470^0.933^11^0.654^0.820^~2, 3~^~05/01/2011~ -~15087~^~629~^0.518^12^0.017^~1~^~A~^^^1^0.409^0.600^11^0.480^0.556^~2, 3~^~05/01/2011~ -~15087~^~630~^0.072^12^0.004^~1~^~AS~^^^1^0.047^0.093^11^0.064^0.080^~2, 3~^~05/01/2011~ -~15087~^~631~^0.139^12^0.005^~1~^~A~^^^1^0.113^0.169^11^0.129^0.149^~2, 3~^~05/01/2011~ -~15087~^~645~^2.494^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~646~^1.783^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15087~^~652~^0.027^12^0.001^~1~^~A~^^^1^0.022^0.030^11^0.025^0.029^~2, 3~^~05/01/2011~ -~15087~^~653~^0.016^12^0.001^~1~^~A~^^^1^0.012^0.020^11^0.015^0.018^~2, 3~^~05/01/2011~ -~15087~^~654~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~05/01/2011~ -~15087~^~662~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.014^11^0.010^0.012^~2, 3~^~05/01/2011~ -~15087~^~663~^0.014^12^0.001^~1~^~A~^^^1^0.009^0.023^11^0.011^0.016^~2, 3~^~05/01/2011~ -~15087~^~664~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15087~^~665~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.016^11^0.012^0.014^~2, 3~^~05/01/2011~ -~15087~^~670~^0.004^12^0.001^~1~^~A~^^^1^0.001^0.009^11^0.002^0.006^~1, 2, 3~^~05/01/2011~ -~15087~^~671~^0.006^12^0.002^~1~^~A~^^^1^0.000^0.018^11^0.002^0.011^~1, 2, 3~^~05/01/2011~ -~15087~^~672~^0.020^12^0.001^~1~^~A~^^^1^0.016^0.022^11^0.018^0.021^~2, 3~^~05/01/2011~ -~15087~^~674~^1.321^12^0.061^~1~^~A~^^^1^0.992^1.701^11^1.187^1.455^~2, 3~^~05/01/2011~ -~15087~^~675~^0.117^12^0.003^~1~^~A~^^^1^0.098^0.132^11^0.109^0.124^~2, 3~^~05/01/2011~ -~15087~^~676~^0.070^12^0.004^~1~^~A~^^^1^0.046^0.089^11^0.062^0.077^~2, 3~^~05/01/2011~ -~15087~^~685~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.003^0.006^~1, 2, 3~^~05/01/2011~ -~15087~^~687~^0.017^12^0.001^~1~^~A~^^^1^0.012^0.022^11^0.015^0.018^~2, 3~^~05/01/2011~ -~15087~^~689~^0.017^12^0.000^~1~^~AS~^^^1^0.013^0.019^11^0.016^0.018^~2, 3~^~05/01/2011~ -~15087~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~15087~^~851~^0.054^12^0.001^~1~^~A~^^^1^0.048^0.059^11^0.052^0.057^~2, 3~^~05/01/2011~ -~15087~^~852~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.010^11^0.008^0.009^~2, 3~^~05/01/2011~ -~15087~^~853~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.009^11^0.007^0.009^~2, 3~^~05/01/2011~ -~15087~^~858~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15088~^~312~^0.186^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~315~^0.108^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~404~^0.080^9^0.031^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~405~^0.227^7^0.045^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~406~^5.245^4^0.066^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~410~^0.642^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~415~^0.167^3^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~501~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~502~^1.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~503~^1.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~504~^2.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~505~^2.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~506~^0.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~507~^0.264^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~508~^0.961^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~509~^0.831^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~510~^1.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~511~^1.473^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~512~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~513~^1.489^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~514~^2.520^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~515~^3.674^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~516~^1.181^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~517~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~518~^1.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~606~^1.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~612~^0.192^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~613~^0.993^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~614~^0.343^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~617~^2.145^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~618~^3.543^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~619~^0.498^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~621~^0.509^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~626~^0.220^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~627~^0.125^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~628~^0.423^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~629~^0.473^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~630~^1.081^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15088~^~645~^3.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15088~^~646~^5.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~312~^0.272^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~315~^0.206^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~404~^0.044^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~405~^0.233^3^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~406~^4.200^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~410~^0.730^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~415~^0.123^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~501~^0.157^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~502~^0.795^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~503~^0.795^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~504~^1.358^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~505~^1.400^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~506~^0.476^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~507~^0.139^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~508~^0.793^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~509~^0.625^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~510~^0.926^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~511~^1.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~512~^0.680^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~513~^1.005^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~514~^1.666^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~515~^2.307^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~516~^0.827^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~517~^0.651^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~518~^0.727^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15089~^~606~^2.684^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15089~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~612~^0.702^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~613~^1.738^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~614~^0.244^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~617~^1.850^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~618~^0.123^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~619~^0.235^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~620~^0.297^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~621~^0.864^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~626~^0.633^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~628~^0.710^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~629~^0.532^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~630~^1.624^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~631~^0.061^1^^~1~^^^^^^^^^^^~03/01/2009~ -~15089~^~645~^4.818^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15089~^~646~^2.111^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15090~^~312~^0.051^70^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~315~^0.035^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~404~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~406~^4.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~501~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~502~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~503~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~504~^1.534^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~505~^1.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~506~^0.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~507~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~508~^0.737^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~509~^0.637^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~510~^0.972^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~511~^1.129^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~512~^0.556^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~513~^1.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~514~^1.933^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~515~^2.818^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~516~^0.906^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~517~^0.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~518~^0.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15090~^~606~^0.640^0^^~4~^^^^^^^^^^^~01/01/2007~ -~15090~^~607~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~608~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~609~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~610~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~611~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~612~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~613~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~614~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~617~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~618~^0.039^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~619~^0.008^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~620~^0.100^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~621~^0.530^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~626~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~627~^0.018^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~628~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~629~^0.104^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/1995~ -~15090~^~631~^0.132^0^^~4~^~BFFN~^~15101~^^^^^^^^^~07/01/2013~ -~15090~^~645~^0.560^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15090~^~646~^1.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~312~^0.019^34^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~315~^0.015^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~404~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~406~^1.600^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15091~^~501~^0.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~502~^0.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~503~^0.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~504~^1.498^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~505~^1.693^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~506~^0.546^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~508~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~509~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~510~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~511~^1.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~512~^0.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~513~^1.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~514~^1.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~515~^2.751^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~516~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~517~^0.652^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~518~^0.752^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~606~^0.511^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~612~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~613~^0.322^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~614~^0.138^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~617~^0.294^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~618~^0.024^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~621~^0.434^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~626~^0.130^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~627~^0.046^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~629~^0.161^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15091~^~631~^0.076^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~645~^0.424^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15091~^~646~^0.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~312~^0.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~404~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~405~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~406~^1.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~415~^0.460^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15092~^~501~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~502~^1.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~503~^1.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~504~^1.921^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~505~^2.170^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~506~^0.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~507~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~508~^0.923^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~509~^0.798^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~510~^1.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~511~^1.414^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~512~^0.696^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~513~^1.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~514~^2.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~515~^3.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~516~^1.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~517~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~518~^0.964^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~606~^0.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~612~^0.063^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~613~^0.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~614~^0.177^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~617~^0.377^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~618~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~621~^0.556^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~626~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~627~^0.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~629~^0.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~631~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~645~^0.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15092~^~646~^0.953^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~312~^0.030^172^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~315~^0.015^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~404~^0.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~405~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~406~^2.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15093~^~501~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~502~^0.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~503~^0.772^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~504~^1.361^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~505~^1.538^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~506~^0.496^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~507~^0.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~508~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~509~^0.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~510~^0.863^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~511~^1.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~512~^0.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~513~^1.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~514~^1.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~515~^2.500^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~516~^0.804^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~517~^0.592^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~518~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~606~^1.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~612~^0.074^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~613~^0.640^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~614~^0.167^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~617~^0.470^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~618~^0.069^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~619~^0.004^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~620~^0.193^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~621~^0.207^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~626~^0.362^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~627~^0.008^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~628~^0.050^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~629~^0.165^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15093~^~631~^0.076^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~645~^0.884^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15093~^~646~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~312~^0.064^61^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~315~^0.042^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~404~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~405~^0.240^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~406~^8.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~501~^0.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~502~^0.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~503~^0.780^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~504~^1.376^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~505~^1.555^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~506~^0.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~507~^0.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~508~^0.661^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~509~^0.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~510~^0.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~511~^1.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~512~^0.498^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~513~^1.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~514~^1.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~515~^2.527^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~516~^0.813^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~517~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~518~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15094~^~606~^3.126^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~610~^0.008^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~611~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~612~^0.849^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~613~^2.073^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~614~^0.167^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~617~^2.323^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~618~^0.199^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~619~^0.158^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~620~^0.092^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~621~^1.321^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~626~^0.953^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~627~^0.328^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~628~^1.105^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~629~^1.086^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~630~^1.287^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~631~^0.084^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15094~^~645~^5.724^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15094~^~646~^3.268^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15095~^~312~^0.033^211^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~404~^0.042^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~405~^0.062^6^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~406~^2.938^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~410~^0.695^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15095~^~501~^0.235^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~502~^0.920^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~503~^0.967^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~504~^1.705^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~505~^1.926^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~506~^0.621^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~507~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~508~^0.819^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~509~^0.708^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~510~^1.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~511~^1.255^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~512~^0.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~513~^1.269^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~514~^2.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~515~^3.131^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~516~^1.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~517~^0.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~518~^0.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~606~^0.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15095~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15095~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15095~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15095~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15095~^~612~^0.080^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~613~^0.726^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~614~^0.117^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~617~^0.979^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~618~^0.076^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~619~^0.028^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~620~^0.108^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~621~^0.527^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~626~^0.253^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~627~^0.031^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~628~^0.266^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~629~^0.316^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~630~^0.310^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~631~^0.109^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15095~^~645~^1.808^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15095~^~646~^1.195^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15096~^~312~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~315~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15096~^~404~^0.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~405~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~406~^2.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~410~^0.620^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15096~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15096~^~501~^0.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~502~^0.843^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~503~^0.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~504~^1.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~505~^1.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~506~^0.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~507~^0.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~508~^0.750^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~509~^0.633^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~510~^0.965^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~511~^1.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~512~^0.538^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~513~^1.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~514~^1.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~515~^2.970^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~516~^0.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~517~^0.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~518~^0.789^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~606~^3.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~612~^0.102^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~613~^2.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~614~^1.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~617~^5.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~618~^2.600^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~619~^0.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~620~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~621~^0.431^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~626~^0.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~627~^0.025^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~628~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~629~^0.258^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~630~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~631~^0.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~645~^5.935^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15096~^~646~^3.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~312~^0.031^63^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~315~^0.013^3^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~405~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~406~^1.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15097~^~501~^0.226^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~502~^0.886^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~503~^0.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~504~^1.643^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~505~^1.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~506~^0.598^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~507~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~508~^0.789^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~509~^0.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~510~^1.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~511~^1.210^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~512~^0.595^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~513~^1.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~514~^2.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~515~^3.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~516~^0.970^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~517~^0.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~518~^0.825^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~606~^0.609^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~612~^0.076^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~613~^0.406^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~614~^0.114^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~617~^0.458^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~618~^0.044^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~619~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~620~^0.106^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~621~^0.123^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~626~^0.201^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~627~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~628~^0.069^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~629~^0.138^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~631~^0.074^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~645~^0.728^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15097~^~646~^0.518^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~312~^0.122^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~315~^0.021^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~405~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~406~^1.800^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~415~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15098~^~501~^0.291^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~502~^1.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~503~^1.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~504~^2.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~505~^2.390^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~506~^0.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~507~^0.279^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~508~^1.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~509~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~510~^1.340^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~511~^1.557^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~512~^0.766^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~513~^1.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~514~^2.664^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~515~^3.884^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~516~^1.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~517~^0.920^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~518~^1.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~606~^0.360^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~612~^0.044^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~613~^0.227^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~614~^0.089^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~617~^0.243^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~618~^0.042^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~620~^0.110^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~621~^0.107^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~626~^0.107^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~629~^0.083^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~631~^0.040^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~645~^0.350^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15098~^~646~^0.382^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~312~^0.139^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~315~^0.700^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15099~^~405~^0.120^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~406~^1.450^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~410~^0.638^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15099~^~501~^0.197^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~502~^0.773^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~503~^0.812^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~504~^1.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~505~^1.619^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~506~^0.522^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~507~^0.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~508~^0.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~509~^0.595^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~510~^0.908^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~511~^1.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~512~^0.519^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~513~^1.066^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~514~^1.805^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~515~^2.632^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~516~^0.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~517~^0.623^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~518~^0.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~606~^0.452^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15099~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15099~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15099~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15099~^~611~^0.002^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~612~^0.078^12^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~613~^0.328^12^0.018^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~614~^0.041^12^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~617~^0.407^12^0.019^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~618~^0.045^12^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~619~^0.049^12^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~620~^0.055^12^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~621~^0.418^12^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~626~^0.199^12^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~627~^0.025^12^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~628~^0.028^6^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~629~^0.275^12^0.017^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~630~^0.001^4^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~631~^0.018^12^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~645~^0.641^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15099~^~646~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~312~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~315~^0.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~405~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~406~^1.766^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~410~^0.740^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~415~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15100~^~501~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~502~^0.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~503~^1.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~504~^1.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~505~^2.076^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~506~^0.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~507~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~508~^0.882^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~509~^0.763^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~510~^1.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~511~^1.352^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~512~^0.665^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~513~^1.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~514~^2.314^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~515~^3.374^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~516~^1.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~517~^0.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~518~^0.922^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~606~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~611~^0.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~612~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~613~^0.421^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~614~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~617~^0.522^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~618~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~619~^0.063^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~620~^0.071^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~621~^0.536^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~626~^0.255^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~627~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~628~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~629~^0.353^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~630~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~631~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~645~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15100~^~646~^1.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~312~^0.028^244^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~315~^0.013^6^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~404~^0.046^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~405~^0.003^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~406~^0.284^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15101~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15101~^~501~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~502~^0.899^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~503~^0.945^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~504~^1.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~505~^1.883^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~506~^0.607^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~507~^0.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~508~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~509~^0.692^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~510~^1.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~511~^1.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~512~^0.604^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~513~^1.240^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~514~^2.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~515~^3.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~516~^0.984^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~517~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~518~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~606~^0.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~612~^0.036^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~613~^0.162^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~614~^0.081^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~617~^0.165^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~618~^0.019^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~619~^0.004^14^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~620~^0.049^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~621~^0.260^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~626~^0.060^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~627~^0.009^14^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~628~^0.021^14^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~629~^0.051^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15101~^~631~^0.065^16^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~645~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15101~^~646~^0.459^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~312~^0.046^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~315~^0.017^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~404~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~405~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~406~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~415~^0.460^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15102~^~501~^0.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~502~^1.153^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~503~^1.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~504~^2.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~505~^2.415^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~506~^0.778^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~507~^0.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~508~^1.027^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~509~^0.888^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~510~^1.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~511~^1.573^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~512~^0.774^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~513~^1.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~514~^2.692^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~515~^3.925^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~516~^1.262^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~517~^0.930^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~518~^1.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~606~^0.365^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~612~^0.053^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~613~^0.190^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~614~^0.070^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~617~^0.123^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~618~^0.025^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~620~^0.044^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~621~^0.273^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~626~^0.048^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~629~^0.048^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~631~^0.022^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~645~^0.322^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15102~^~646~^0.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~312~^0.046^54^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~315~^0.035^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~404~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~405~^0.220^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~406~^7.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15103~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~502~^0.812^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~503~^0.853^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~504~^1.505^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~505~^1.700^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~506~^0.548^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~508~^0.723^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~509~^0.625^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~510~^0.954^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~511~^1.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~512~^0.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~513~^1.120^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~514~^1.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~515~^2.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~516~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~517~^0.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~518~^0.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~606~^1.450^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~612~^0.110^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~613~^1.030^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~614~^0.310^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~617~^0.870^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~618~^0.040^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~619~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~620~^0.120^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~621~^0.410^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~626~^0.460^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~627~^0.160^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~629~^0.220^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15103~^~631~^0.120^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~645~^1.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15103~^~646~^1.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~312~^0.041^10^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~315~^0.025^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~404~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~406~^8.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~415~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15104~^~501~^0.181^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~502~^0.708^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~503~^0.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~504~^1.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~505~^1.483^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~506~^0.478^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~507~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~508~^0.630^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~509~^0.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~510~^0.832^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~511~^0.966^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~512~^0.475^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~513~^0.976^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~514~^1.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~515~^2.410^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~516~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~517~^0.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~518~^0.659^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~606~^0.915^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15104~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15104~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15104~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15104~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15104~^~612~^0.154^6^0.056^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~613~^0.685^6^0.038^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~614~^0.076^6^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~617~^1.433^6^0.233^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~618~^0.068^6^0.024^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~619~^0.100^6^0.050^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~620~^0.062^6^0.014^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~621~^0.093^6^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~626~^0.408^6^0.120^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~627~^0.128^3^0.020^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~628~^0.054^6^0.037^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~629~^0.194^6^0.074^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~630~^0.023^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~631~^0.045^5^0.019^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~645~^1.939^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15104~^~646~^0.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~312~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~405~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~406~^10.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~415~^0.230^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15105~^~501~^0.232^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~502~^0.907^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~503~^0.954^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~504~^1.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~505~^1.901^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~506~^0.613^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~507~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~508~^0.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~509~^0.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~510~^1.066^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~511~^1.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~512~^0.609^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~513~^1.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~514~^2.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~515~^3.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~516~^0.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~517~^0.732^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~518~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~606~^1.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15105~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15105~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15105~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15105~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15105~^~612~^0.197^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~613~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~614~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~617~^1.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~618~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~619~^0.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~620~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~621~^0.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~626~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~627~^0.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~628~^0.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~629~^0.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~630~^0.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~631~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~645~^2.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15105~^~646~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~312~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~404~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~405~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~406~^11.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~410~^1.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~415~^0.270^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15106~^~501~^0.349^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~502~^1.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~503~^1.438^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~504~^2.536^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~505~^2.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~506~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~507~^0.334^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~508~^1.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~509~^1.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~510~^1.607^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~511~^1.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~512~^0.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~513~^1.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~514~^3.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~515~^4.658^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~516~^1.498^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~517~^1.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~518~^1.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~606~^1.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~607~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~608~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~609~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~610~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~611~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~612~^0.177^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~613~^0.761^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~614~^0.099^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~617~^1.858^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~618~^0.062^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~619~^0.115^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~620~^0.053^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~621~^0.095^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~626~^0.440^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~627~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~628~^0.033^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~629~^0.082^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~630~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~15106~^~631~^0.029^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~645~^2.356^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15106~^~646~^0.436^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~312~^0.195^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~315~^0.600^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~406~^1.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~415~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15107~^~501~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~502~^0.735^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~503~^0.772^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~504~^1.362^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~505~^1.539^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~506~^0.496^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~507~^0.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~508~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~509~^0.566^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~510~^0.863^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~511~^1.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~512~^0.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~513~^1.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~514~^1.716^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~515~^2.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~516~^0.804^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~517~^0.593^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~518~^0.684^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~606~^0.452^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~612~^0.048^18^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~613~^0.333^18^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~614~^0.066^18^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~617~^0.303^18^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~618~^0.068^18^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~619~^0.052^18^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~620~^0.103^18^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~621~^0.289^18^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~626~^0.382^18^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~627~^0.032^17^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~628~^0.014^18^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~629~^0.190^18^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~631~^0.073^18^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~645~^0.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15107~^~646~^0.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~312~^0.300^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~315~^0.700^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~406~^1.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~415~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15108~^~501~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~502~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~503~^0.894^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~504~^1.577^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~505~^1.782^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~506~^0.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~507~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~508~^0.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~509~^0.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~510~^0.999^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~511~^1.161^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~512~^0.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~513~^1.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~514~^1.987^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~515~^2.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~516~^0.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~517~^0.686^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~518~^0.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~606~^0.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~612~^0.012^8^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~613~^0.099^8^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~614~^0.028^8^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~617~^0.070^8^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~618~^0.015^8^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~619~^0.010^8^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~620~^0.079^8^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~621~^0.072^8^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~626~^0.042^8^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~628~^0.005^8^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~629~^0.037^8^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~631~^0.033^8^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~645~^0.117^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15108~^~646~^0.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~312~^0.032^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~315~^0.011^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~404~^0.020^3^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~405~^0.021^3^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~406~^0.220^3^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~410~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~415~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15109~^~501~^0.092^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~502~^0.734^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~503~^0.709^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~504~^1.202^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~505~^1.387^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~506~^0.515^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~507~^0.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~508~^0.595^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~509~^0.612^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~510~^0.770^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~511~^1.008^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~512~^0.350^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~513~^0.891^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~514~^1.518^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~515~^2.397^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~516~^0.588^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~517~^0.566^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~518~^0.663^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15109~^~606~^0.191^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15109~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~612~^0.012^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~613~^0.147^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~614~^0.032^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~617~^0.106^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~618~^0.010^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~619~^0.007^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~620~^0.014^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~621~^0.241^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~626~^0.016^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~628~^0.020^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~629~^0.157^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~630~^0.007^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~631~^0.014^11^^~1~^^^^^^^^^^^~02/01/2003~ -~15109~^~645~^0.149^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15109~^~646~^0.443^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15110~^~312~^0.039^11^0.003^~1~^~A~^^^1^0.019^0.055^10^0.033^0.045^~1, 2, 3~^~07/01/2010~ -~15110~^~315~^0.011^11^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~404~^0.075^4^0.019^~1~^~A~^^^1^0.020^0.110^3^0.013^0.137^~2, 3~^~07/01/2010~ -~15110~^~405~^0.053^4^0.006^~1~^~A~^^^1^0.040^0.070^3^0.032^0.073^~2, 3~^~07/01/2010~ -~15110~^~406~^7.760^4^0.334^~1~^~A~^^^1^7.210^8.730^3^6.698^8.822^~2, 3~^~07/01/2010~ -~15110~^~410~^0.350^4^0.024^~1~^~A~^^^1^0.280^0.390^3^0.273^0.427^~2, 3~^~07/01/2010~ -~15110~^~415~^0.543^4^0.034^~1~^~A~^^^1^0.459^0.598^3^0.436^0.650^~2, 3~^~07/01/2010~ -~15110~^~501~^0.222^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~502~^0.868^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~503~^0.912^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~504~^1.609^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~505~^1.818^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~506~^0.586^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~507~^0.212^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~508~^0.773^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~509~^0.668^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~510~^1.020^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~511~^1.185^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~512~^0.583^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~513~^1.198^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~514~^2.028^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~515~^2.956^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~516~^0.950^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~517~^0.700^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~518~^0.808^0^^~1~^~A~^~15110~^^^^^^^^^~07/01/2010~ -~15110~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~606~^1.614^0^^~4~^~NC~^^^^^^^^^^~11/01/2015~ -~15110~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/1995~ -~15110~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15110~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2010~ -~15110~^~611~^0.007^11^0.004^~1~^~A~^^^1^0.001^0.042^10^-0.001^0.015^~2, 3~^~07/01/2010~ -~15110~^~612~^0.150^11^0.029^~1~^~A~^^^1^0.063^0.311^10^0.086^0.214^~2, 3~^~11/01/2015~ -~15110~^~613~^1.020^11^0.160^~1~^~A~^^^1^0.559^2.318^10^0.663^1.378^~2, 3~^~11/01/2015~ -~15110~^~614~^0.342^11^0.056^~1~^~A~^^^1^0.197^0.829^10^0.217^0.468^~2, 3~^~11/01/2015~ -~15110~^~615~^0.017^11^0.003^~1~^~A~^^^1^0.011^0.043^10^0.010^0.023^~2, 3~^~11/01/2015~ -~15110~^~617~^2.246^11^0.343^~1~^~AS~^^^1^1.059^5.003^10^1.483^3.010^~2, 3~^~11/01/2015~ -~15110~^~618~^0.075^11^0.011^~1~^~AS~^^^1^0.038^0.131^10^0.051^0.098^~2, 3~^~11/01/2015~ -~15110~^~619~^0.028^11^0.006^~1~^~AS~^^^1^0.010^0.060^10^0.015^0.041^~2, 3~^~11/01/2015~ -~15110~^~620~^0.070^11^0.009^~1~^~A~^^^1^0.044^0.154^10^0.049^0.091^~2, 3~^~07/01/2010~ -~15110~^~621~^0.648^11^0.135^~1~^~A~^^^1^0.269^1.662^10^0.346^0.950^~2, 3~^~11/01/2015~ -~15110~^~624~^0.009^11^0.002^~1~^~A~^^^1^0.005^0.029^10^0.005^0.014^~2, 3~^~07/01/2010~ -~15110~^~625~^0.005^11^0.001^~1~^~A~^^^1^0.002^0.014^10^0.002^0.007^~2, 3~^~11/01/2015~ -~15110~^~626~^0.238^11^0.037^~1~^~AS~^^^1^0.095^0.464^10^0.157^0.320^~2, 3~^~11/01/2015~ -~15110~^~627~^0.006^11^0.003^~1~^~A~^^^1^0.000^0.031^10^0.000^0.013^~1, 2, 3~^~07/01/2010~ -~15110~^~628~^0.379^11^0.068^~1~^~A~^^^1^0.140^0.826^10^0.229^0.530^~2, 3~^~11/01/2015~ -~15110~^~629~^0.108^11^0.029^~1~^~A~^^^1^0.027^0.314^10^0.042^0.173^~2, 3~^~11/01/2015~ -~15110~^~630~^0.128^0^^~1~^~AS~^^^^^^^^^^~11/01/2015~ -~15110~^~631~^0.141^11^0.032^~1~^~A~^^^1^0.055^0.386^10^0.070^0.212^~2, 3~^~07/01/2010~ -~15110~^~645~^3.004^0^^~4~^~NC~^^^^^^^^^^~11/01/2015~ -~15110~^~646~^1.149^0^^~4~^~NC~^^^^^^^^^^~11/01/2015~ -~15110~^~652~^0.028^11^0.004^~1~^~A~^^^1^0.015^0.059^10^0.019^0.037^~2, 3~^~07/01/2010~ -~15110~^~653~^0.034^11^0.005^~1~^~A~^^^1^0.023^0.078^10^0.024^0.045^~2, 3~^~07/01/2010~ -~15110~^~654~^0.006^11^0.001^~1~^~A~^^^1^0.003^0.015^10^0.004^0.008^~2, 3~^~07/01/2010~ -~15110~^~662~^0.012^11^0.002^~1~^~A~^^^1^0.006^0.021^10^0.009^0.016^~2, 3~^~07/01/2010~ -~15110~^~663~^0.020^11^0.002^~1~^~A~^^^1^0.012^0.032^10^0.015^0.025^~2, 3~^~07/01/2010~ -~15110~^~664~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2015~ -~15110~^~665~^0.014^11^0.002^~1~^~A~^^^1^0.006^0.024^10^0.010^0.018^~2, 3~^~07/01/2010~ -~15110~^~670~^0.013^11^0.005^~1~^~A~^^^1^0.004^0.060^10^0.002^0.024^~2, 3~^~07/01/2010~ -~15110~^~671~^0.076^11^0.010^~1~^~A~^^^1^0.042^0.157^10^0.053^0.099^~2, 3~^~11/01/2015~ -~15110~^~672~^0.018^11^0.004^~1~^~A~^^^1^0.007^0.044^10^0.010^0.027^~2, 3~^~07/01/2010~ -~15110~^~673~^0.226^11^0.035^~1~^~A~^^^1^0.089^0.449^10^0.147^0.305^~2, 3~^~11/01/2015~ -~15110~^~674~^2.227^11^0.341^~1~^~A~^^^1^1.043^4.973^10^1.467^2.986^~2, 3~^~11/01/2015~ -~15110~^~675~^0.047^11^0.007^~1~^~A~^^^1^0.021^0.094^10^0.030^0.064^~2, 3~^~11/01/2015~ -~15110~^~676~^0.126^1^^~1~^~A~^^^^^^^^^^~11/01/2015~ -~15110~^~685~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15110~^~687~^0.005^11^0.002^~1~^~A~^^^1^0.000^0.022^10^0.001^0.009^~1, 2, 3~^~11/01/2015~ -~15110~^~689~^0.023^11^0.004^~1~^~AS~^^^1^0.011^0.046^10^0.015^0.031^~2, 3~^~07/01/2010~ -~15110~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15110~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~11/01/2015~ -~15110~^~697~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15110~^~851~^0.027^11^0.005^~1~^~A~^^^1^0.010^0.058^10^0.015^0.039^~2, 3~^~11/01/2015~ -~15110~^~852~^0.017^11^0.003^~1~^~A~^^^1^0.008^0.036^10^0.010^0.024^~2, 3~^~07/01/2010~ -~15110~^~853~^0.006^11^0.001^~1~^~A~^^^1^0.003^0.011^10^0.004^0.008^~2, 3~^~07/01/2010~ -~15110~^~856~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2015~ -~15110~^~858~^0.029^11^0.006^~1~^~A~^^^1^0.018^0.086^10^0.015^0.042^~2, 3~^~07/01/2010~ -~15111~^~312~^0.046^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~404~^0.089^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~405~^0.063^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~406~^9.254^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~410~^0.417^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~415~^0.615^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~501~^0.265^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~502~^1.035^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~503~^1.088^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~504~^1.919^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~505~^2.168^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~506~^0.699^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~507~^0.253^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~508~^0.922^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~509~^0.797^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~510~^1.216^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~511~^1.413^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~512~^0.695^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~513~^1.429^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~514~^2.418^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~515~^3.525^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~516~^1.133^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~517~^0.835^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~518~^0.964^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~605~^0.056^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~606~^1.911^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~611~^0.008^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~612~^0.177^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~613~^1.208^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~614~^0.405^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~615~^0.020^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~617~^2.657^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~618~^0.088^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~619~^0.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~620~^0.083^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~621~^0.772^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~624~^0.011^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~625~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~626~^0.281^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~627~^0.007^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~628~^0.449^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~629~^0.127^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~630~^0.057^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~631~^0.168^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~645~^3.544^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~646~^1.368^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~652~^0.033^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~653~^0.041^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~654~^0.007^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~671~^0.090^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~672~^0.022^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~687~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~689~^0.027^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~697~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15111~^~858~^0.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15112~^~312~^0.041^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~315~^0.010^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~404~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~405~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~406~^2.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~415~^0.260^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15112~^~501~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~502~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~503~^0.806^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~504~^1.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~505~^1.607^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~506~^0.518^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~507~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~508~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~509~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~510~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~511~^1.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~512~^0.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~513~^1.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~514~^1.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~515~^2.612^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~516~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~517~^0.619^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~518~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~606~^0.441^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~612~^0.073^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~613~^0.285^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~614~^0.082^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~617~^0.388^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~618~^0.037^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~620~^0.066^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~621~^0.345^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~626~^0.134^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15112~^~629~^0.085^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~630~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~631~^0.066^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~645~^0.571^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15112~^~646~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~312~^0.052^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~315~^0.015^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~404~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~405~^0.190^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~406~^3.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~410~^0.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15113~^~501~^0.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~502~^1.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~503~^1.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~504~^1.990^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~505~^2.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~506~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~507~^0.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~508~^0.956^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~509~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~510~^1.262^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~511~^1.465^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~512~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~513~^1.481^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~514~^2.508^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~515~^3.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~516~^1.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~517~^0.866^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~518~^0.999^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~606~^0.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~612~^0.135^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~613~^0.526^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~614~^0.181^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~617~^0.944^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~618~^0.048^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~620~^0.150^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~621~^0.733^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~626~^0.333^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~629~^0.172^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~630~^0.055^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~631~^0.143^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~645~^1.332^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15113~^~646~^1.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~312~^0.188^13^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~315~^0.851^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~404~^0.350^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~405~^0.330^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~406~^4.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15114~^~410~^1.940^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~415~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15114~^~501~^0.233^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~502~^0.911^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~503~^0.957^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~504~^1.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~505~^1.907^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~506~^0.615^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~507~^0.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~508~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~509~^0.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~510~^1.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~511~^1.243^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~512~^0.611^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~513~^1.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~514~^2.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~515~^3.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~516~^0.997^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~517~^0.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~518~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~606~^1.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15114~^~612~^0.185^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~613~^0.815^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~614~^0.148^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~617~^1.440^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~618~^0.175^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~619~^0.155^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~620~^0.189^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~621~^0.528^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~626~^0.701^18^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~627~^0.064^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~628~^0.280^9^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~629~^0.202^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~630~^0.830^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~631~^0.183^17^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~645~^3.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15114~^~646~^1.499^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~312~^0.109^169^0.025^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~315~^0.158^5^0.136^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~404~^0.123^5^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~405~^0.105^5^0.021^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~406~^5.384^5^0.281^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~410~^0.928^5^0.114^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~415~^0.406^5^0.017^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~501~^0.229^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~502~^0.898^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~503~^0.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~504~^1.664^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~505~^1.881^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~506~^0.606^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~507~^0.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~508~^0.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~509~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~510~^1.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~511~^1.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~512~^0.603^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~513~^1.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~514~^2.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~515~^3.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~516~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~517~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~518~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~606~^0.722^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15115~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15115~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15115~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15115~^~611~^0.011^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~612~^0.079^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~613~^0.421^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~614~^0.139^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~617~^0.614^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~618~^0.239^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~619~^0.119^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~620~^0.109^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~621~^0.420^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~626~^0.203^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~627~^0.066^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~628~^0.112^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~629~^0.167^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~630~^0.138^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~631~^0.106^20^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~645~^1.129^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15115~^~646~^1.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~312~^0.058^4^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~315~^0.021^4^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~404~^0.152^4^0.011^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~405~^0.097^4^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~406~^5.770^4^0.419^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~410~^1.065^4^0.152^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~415~^0.346^4^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~501~^0.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~502~^1.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~503~^1.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~504~^1.863^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~505~^2.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~506~^0.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~507~^0.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~508~^0.895^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~509~^0.774^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~510~^1.181^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~511~^1.372^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~512~^0.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~513~^1.387^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~514~^2.348^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~515~^3.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~516~^1.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~517~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~518~^0.935^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~606~^1.619^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~612~^0.204^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~613~^0.918^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~614~^0.265^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~617~^0.918^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~618~^0.288^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~619~^0.187^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~620~^0.120^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~621~^0.520^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~626~^0.675^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~627~^0.230^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~628~^0.051^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~629~^0.468^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~645~^1.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15116~^~646~^1.831^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~312~^0.086^16^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~404~^0.241^11^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~405~^0.251^17^0.055^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~406~^8.654^16^0.627^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~410~^1.054^17^0.247^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~415~^0.455^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~501~^0.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~502~^1.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~503~^1.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~504~^1.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~505~^2.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~506~^0.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~507~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~508~^0.911^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~509~^0.787^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~510~^1.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~511~^1.396^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~512~^0.687^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~513~^1.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~514~^2.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~515~^3.482^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~516~^1.120^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~517~^0.825^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~518~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~606~^1.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~612~^0.139^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~613~^0.810^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~614~^0.307^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~617~^0.924^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~618~^0.053^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~619~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15117~^~620~^0.043^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~621~^0.890^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~626~^0.162^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~627~^0.039^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~628~^0.277^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~629~^0.283^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~630~^0.237^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~631~^0.125^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15117~^~645~^1.600^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15117~^~646~^1.433^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15118~^~312~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~404~^0.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~405~^0.306^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~406~^10.540^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~410~^1.370^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15118~^~415~^0.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~501~^0.335^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~502~^1.311^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~503~^1.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~504~^2.431^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~505~^2.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~506~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~507~^0.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~508~^1.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~509~^1.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~510~^1.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~511~^1.790^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~512~^0.880^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~513~^1.809^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~514~^3.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~515~^4.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~516~^1.436^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~517~^1.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~518~^1.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~606~^1.612^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~612~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~613~^1.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~614~^0.394^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~617~^1.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~618~^0.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~620~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~621~^1.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~626~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~627~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~628~^0.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~629~^0.363^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~630~^0.304^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~631~^0.160^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~645~^2.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15118~^~646~^1.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~312~^0.071^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~315~^0.015^8^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~404~^0.038^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15119~^~406~^12.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15119~^~410~^0.370^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15119~^~415~^0.110^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~501~^0.326^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~502~^1.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~503~^1.342^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~504~^2.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~505~^2.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~506~^0.862^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~507~^0.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~508~^1.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~509~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~510~^1.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~511~^1.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~512~^0.858^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~513~^1.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~514~^2.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~515~^4.349^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~516~^1.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~517~^1.030^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~518~^1.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~606~^1.534^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~612~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~613~^1.415^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~614~^0.092^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~617~^2.839^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~618~^2.683^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~619~^0.074^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~621~^0.101^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~626~^0.083^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~628~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~629~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15119~^~645~^2.949^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15119~^~646~^2.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15121~^~312~^0.050^24^0.001^~1~^~A~^^^1^0.040^0.059^10^0.048^0.053^~2, 3~^~06/01/2012~ -~15121~^~315~^0.019^24^0.001^~1~^~A~^^^1^0.011^0.041^12^0.016^0.021^~1, 2, 3~^~06/01/2012~ -~15121~^~404~^0.030^4^^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~06/01/2012~ -~15121~^~405~^0.084^4^^~1~^~A~^^^1^0.070^0.090^^^^~2, 3~^~06/01/2012~ -~15121~^~406~^10.136^4^^~1~^~A~^^^1^8.360^11.300^^^^~2, 3~^~06/01/2012~ -~15121~^~410~^0.148^4^^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~415~^0.319^4^^~1~^~A~^^^1^0.315^0.325^^^^~2, 3~^~06/01/2012~ -~15121~^~501~^0.209^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~502~^0.817^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~503~^0.858^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~504~^1.514^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~505~^1.711^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~506~^0.551^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~507~^0.200^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~508~^0.727^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~509~^0.629^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~510~^0.959^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~511~^1.115^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~512~^0.548^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~513~^1.127^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~514~^1.907^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~515~^2.780^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~516~^0.894^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~517~^0.659^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~518~^0.760^0^^~1~^~A~^~15127~^^^^^^^^^~06/01/2012~ -~15121~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~606~^0.211^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.004^2^-0.002^0.003^~1, 2, 3~^~02/01/2003~ -~15121~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~15121~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~15121~^~610~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.006^3^0.004^0.005^~2, 3~^~06/01/2012~ -~15121~^~611~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~02/01/2003~ -~15121~^~612~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.018^4^0.008^0.013^~2, 3~^~06/01/2012~ -~15121~^~613~^0.127^12^0.005^~1~^~A~^^^1^0.095^0.181^6^0.115^0.140^~2, 3~^~06/01/2012~ -~15121~^~614~^0.052^12^0.001^~1~^~A~^^^1^0.041^0.065^5^0.048^0.055^~2, 3~^~06/01/2012~ -~15121~^~615~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~06/01/2012~ -~15121~^~617~^0.084^12^0.003^~1~^~AS~^^^1^0.056^0.129^5^0.075^0.093^~2, 3~^~06/01/2012~ -~15121~^~618~^0.014^12^0.003^~1~^~AS~^^^1^0.010^0.065^2^0.004^0.024^~2, 3~^~06/01/2012~ -~15121~^~619~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.009^3^0.001^0.003^~2, 3~^~04/01/2003~ -~15121~^~620~^0.025^12^0.001^~1~^~A~^^^1^0.019^0.034^5^0.023^0.027^~2, 3~^~06/01/2012~ -~15121~^~621~^0.196^12^0.008^~1~^~A~^^^1^0.161^0.272^6^0.176^0.216^~2, 3~^~06/01/2012~ -~15121~^~624~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.002^~1, 2, 3~^~06/01/2012~ -~15121~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~626~^0.015^12^0.001^~1~^~AS~^^^1^0.008^0.025^4^0.010^0.019^~2, 3~^~06/01/2012~ -~15121~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.005^4^0.002^0.003^~1, 2, 3~^~06/01/2012~ -~15121~^~628~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.010^6^0.002^0.005^~1, 2, 3~^~06/01/2012~ -~15121~^~629~^0.028^12^0.002^~1~^~A~^^^1^0.022^0.040^5^0.024^0.032^~2, 3~^~06/01/2012~ -~15121~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2012~ -~15121~^~631~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.008^6^0.003^0.005^~1, 2, 3~^~06/01/2012~ -~15121~^~645~^0.107^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~646~^0.277^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.008^4^0.005^0.006^~2, 3~^~06/01/2012~ -~15121~^~653~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.009^6^0.006^0.007^~2, 3~^~06/01/2012~ -~15121~^~654~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.002^~1, 2, 3~^~06/01/2012~ -~15121~^~662~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^6^0.000^0.002^~1, 2, 3~^~06/01/2012~ -~15121~^~663~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.003^3^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~15121~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~665~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.001^~1, 2, 3~^~06/01/2012~ -~15121~^~670~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.002^~1, 2, 3~^~06/01/2012~ -~15121~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.004^3^0.001^0.003^~1, 2, 3~^~06/01/2012~ -~15121~^~673~^0.014^12^0.001^~1~^~A~^^^1^0.008^0.023^3^0.010^0.017^~2, 3~^~06/01/2012~ -~15121~^~674~^0.083^12^0.003^~1~^~A~^^^1^0.056^0.129^5^0.075^0.092^~2, 3~^~06/01/2012~ -~15121~^~675~^0.014^12^0.002^~1~^~A~^^^1^0.010^0.063^2^0.004^0.024^~2, 3~^~06/01/2012~ -~15121~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~687~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^6^0.003^0.004^~1, 2, 3~^~06/01/2012~ -~15121~^~689~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.002^3^0.000^0.001^~2, 3~^~06/01/2012~ -~15121~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~15121~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~15121~^~851~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.009^3^0.001^0.003^~1, 2, 3~^~06/01/2012~ -~15121~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~15121~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~06/01/2012~ -~15121~^~858~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~06/01/2012~ -~15123~^~312~^0.086^93^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~404~^0.033^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15123~^~406~^15.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15123~^~410~^0.420^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15123~^~415~^0.850^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~501~^0.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~502~^0.964^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~503~^1.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~504~^1.788^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~505~^2.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~506~^0.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~507~^0.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~508~^0.859^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~509~^0.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~510~^1.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~511~^1.316^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~512~^0.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~513~^1.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~514~^2.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~515~^3.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~516~^1.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~517~^0.778^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~518~^0.898^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~606~^0.328^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~612~^0.040^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~613~^0.233^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~614~^0.055^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~617~^0.131^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~618~^0.016^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~620~^0.026^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~621~^0.185^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~626~^0.036^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~627~^0.004^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~628~^0.017^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~629~^0.071^3^0.043^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~630~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~631~^0.013^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~645~^0.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15123~^~646~^0.315^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~312~^0.130^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~315~^0.016^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15124~^~404~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~405~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~406~^11.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~410~^0.370^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15124~^~415~^0.430^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15124~^~501~^0.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~502~^1.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~503~^1.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~504~^2.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~505~^2.437^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~506~^0.785^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~507~^0.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~508~^1.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~509~^0.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~510~^1.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~511~^1.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~512~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~513~^1.605^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~514~^2.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~515~^3.961^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~516~^1.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~517~^0.938^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~518~^1.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15124~^~606~^1.280^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~612~^0.030^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~613~^0.862^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~614~^0.388^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~617~^3.159^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~618~^2.489^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~619~^0.204^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~620~^0.014^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~621~^0.178^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~626~^0.069^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~627~^0.014^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~628~^0.022^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~629~^0.066^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~630~^0.012^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~631~^0.005^0^^~4~^~RA~^^^^^^^^^^~03/01/2006~ -~15124~^~645~^3.262^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15124~^~646~^2.972^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~15126~^~312~^0.039^5^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~315~^0.019^5^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~404~^0.008^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~405~^0.044^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~406~^5.799^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~410~^0.124^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~415~^0.217^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~501~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~502~^1.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~503~^1.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~504~^1.920^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~505~^2.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~506~^0.699^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~507~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~508~^0.922^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~509~^0.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~510~^1.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~511~^1.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~512~^0.695^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~513~^1.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~514~^2.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~515~^3.526^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~516~^1.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~517~^0.835^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~518~^0.964^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~606~^0.792^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15126~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15126~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15126~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15126~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15126~^~612~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~613~^0.592^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~614~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~617~^0.518^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~618~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~620~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~621~^0.629^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~626~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~627~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~628~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~629~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~630~^0.044^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~631~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~645~^0.784^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15126~^~646~^1.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15127~^~312~^0.036^11^0.005^~1~^~A~^^^1^0.019^0.068^10^0.024^0.047^~1, 2, 3~^~07/01/2010~ -~15127~^~315~^0.011^11^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~404~^0.118^4^0.026^~1~^~A~^^^1^0.070^0.191^3^0.035^0.200^~2, 3~^~07/01/2010~ -~15127~^~405~^0.115^4^0.068^~1~^~A~^^^1^0.020^0.310^3^-0.103^0.333^~2, 3~^~07/01/2010~ -~15127~^~406~^18.475^4^0.423^~1~^~A~^^^1^17.400^19.400^3^17.129^19.821^~2, 3~^~07/01/2010~ -~15127~^~410~^0.280^4^0.030^~1~^~A~^^^1^0.240^0.370^3^0.184^0.376^~2, 3~^~07/01/2010~ -~15127~^~415~^0.933^4^0.049^~1~^~A~^^^1^0.807^1.020^3^0.778^1.089^~2, 3~^~07/01/2010~ -~15127~^~501~^0.262^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~502~^1.025^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~503~^1.077^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~504~^1.900^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~505~^2.147^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~506~^0.692^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~507~^0.251^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~508~^0.913^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~509~^0.789^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~510~^1.204^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~511~^1.399^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~512~^0.688^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~513~^1.414^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~514~^2.394^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~515~^3.489^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~516~^1.122^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~517~^0.827^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~518~^0.954^0^^~1~^~A~^~15127~^^^^^^^^^~07/01/2010~ -~15127~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~606~^0.172^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15127~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~609~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15127~^~611~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15127~^~612~^0.009^11^0.003^~1~^~A~^^^1^0.002^0.026^10^0.003^0.015^~2, 3~^~07/01/2010~ -~15127~^~613~^0.106^11^0.023^~1~^~A~^^^1^0.031^0.266^10^0.054^0.158^~2, 3~^~07/01/2010~ -~15127~^~614~^0.045^11^0.007^~1~^~A~^^^1^0.019^0.087^10^0.030^0.060^~2, 3~^~07/01/2010~ -~15127~^~615~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.005^10^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15127~^~617~^0.083^11^0.020^~1~^~AS~^^^1^0.022^0.227^10^0.037^0.128^~2, 3~^~07/01/2010~ -~15127~^~618~^0.019^11^0.002^~1~^~AS~^^^1^0.008^0.033^10^0.014^0.025^~2, 3~^~07/01/2010~ -~15127~^~619~^0.002^11^0.000^~1~^~AS~^^^1^0.000^0.005^10^0.001^0.003^~2, 3~^~07/01/2010~ -~15127~^~620~^0.015^11^0.002^~1~^~A~^^^1^0.009^0.027^10^0.011^0.019^~2, 3~^~07/01/2010~ -~15127~^~621~^0.088^11^0.022^~1~^~A~^^^1^0.026^0.267^10^0.038^0.138^~2, 3~^~07/01/2010~ -~15127~^~624~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~625~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.001^~2, 3~^~07/01/2010~ -~15127~^~626~^0.011^11^0.004^~1~^~AS~^^^1^0.001^0.034^10^0.003^0.020^~2, 3~^~07/01/2010~ -~15127~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15127~^~628~^0.008^11^0.002^~1~^~A~^^^1^0.001^0.025^10^0.002^0.013^~2, 3~^~07/01/2010~ -~15127~^~629~^0.012^11^0.004^~1~^~A~^^^1^0.003^0.044^10^0.004^0.021^~2, 3~^~07/01/2010~ -~15127~^~630~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.004^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15127~^~631~^0.004^11^0.001^~1~^~A~^^^1^0.001^0.012^10^0.002^0.006^~2, 3~^~07/01/2010~ -~15127~^~645~^0.116^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~646~^0.147^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~652~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.008^10^0.001^0.005^~2, 3~^~07/01/2010~ -~15127~^~653~^0.004^11^0.001^~1~^~A~^^^1^0.001^0.012^10^0.002^0.006^~2, 3~^~07/01/2010~ -~15127~^~654~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.001^~1, 2, 3~^~07/01/2010~ -~15127~^~662~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15127~^~663~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.002^0.003^~2, 3~^~07/01/2010~ -~15127~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~665~^0.013^11^0.002^~1~^~A~^^^1^0.004^0.023^10^0.009^0.017^~2, 3~^~07/01/2010~ -~15127~^~670~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15127~^~671~^0.008^11^0.001^~1~^~A~^^^1^0.005^0.015^10^0.006^0.011^~2, 3~^~07/01/2010~ -~15127~^~672~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~673~^0.011^11^0.003^~1~^~A~^^^1^0.001^0.032^10^0.003^0.018^~2, 3~^~07/01/2010~ -~15127~^~674~^0.080^11^0.020^~1~^~A~^^^1^0.020^0.223^10^0.035^0.125^~2, 3~^~07/01/2010~ -~15127~^~675~^0.006^11^0.001^~1~^~A~^^^1^0.003^0.017^10^0.003^0.009^~2, 3~^~07/01/2010~ -~15127~^~676~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15127~^~687~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15127~^~689~^0.003^11^0.001^~1~^~AS~^^^1^0.000^0.006^10^0.001^0.004^~2, 3~^~07/01/2010~ -~15127~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15127~^~697~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~851~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.005^10^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15127~^~852~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~853~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15127~^~858~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.001^0.002^~2, 3~^~07/01/2010~ -~15128~^~312~^0.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~315~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~404~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~405~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~406~^6.700^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~410~^0.260^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15128~^~415~^0.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~501~^0.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~502~^0.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~503~^0.739^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~504~^1.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~505~^1.457^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~506~^0.470^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~507~^0.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~508~^0.626^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~509~^0.539^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~510~^0.824^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~511~^0.967^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~512~^0.467^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~513~^0.962^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~514~^1.632^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~515~^2.402^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~516~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~517~^0.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~518~^0.657^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~606~^1.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~612~^0.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~613~^1.280^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~614~^0.249^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~617~^2.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~618~^3.722^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~619~^0.332^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~621~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~626~^0.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~628~^0.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~629~^0.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~645~^2.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15128~^~646~^4.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~312~^0.037^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~315~^0.017^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~404~^0.066^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~405~^0.080^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~406~^2.200^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~410~^0.570^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~415~^0.210^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~501~^0.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~502~^0.704^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~503~^0.740^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~504~^1.305^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~505~^1.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~506~^0.475^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~507~^0.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~508~^0.627^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~509~^0.542^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~510~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~511~^0.960^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~512~^0.473^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~513~^0.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~514~^1.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~515~^2.396^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~516~^0.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~517~^0.568^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~518~^0.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15129~^~606~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~645~^0.610^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15129~^~646~^0.880^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~312~^0.072^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~315~^0.067^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~404~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~406~^3.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~410~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15130~^~501~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~502~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~503~^0.880^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~504~^1.551^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~505~^1.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~506~^0.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~507~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~508~^0.745^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~509~^0.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~510~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~511~^1.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~512~^0.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~513~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~514~^1.955^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~515~^2.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~516~^0.916^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~517~^0.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~518~^0.779^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~606~^0.906^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15130~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15130~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15130~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15130~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15130~^~612~^0.109^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~613~^0.599^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~614~^0.198^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~617~^1.347^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~618~^0.272^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~619~^0.183^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~620~^0.223^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~621~^0.941^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~626~^0.520^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~627~^0.050^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~628~^0.104^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~629~^0.317^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~630~^0.025^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~631~^0.163^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~645~^1.996^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15130~^~646~^2.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~312~^0.315^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~315~^0.034^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~404~^0.032^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~405~^0.101^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~406~^2.400^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~410~^0.104^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~415~^0.389^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~501~^0.262^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~502~^1.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~503~^1.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~504~^1.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~505~^2.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~506~^0.693^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~507~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~508~^0.914^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~509~^0.790^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~510~^1.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~511~^1.400^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~512~^0.689^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~513~^1.415^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~514~^2.396^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~515~^3.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~516~^1.123^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~517~^0.827^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~518~^0.955^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~606~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~612~^0.007^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~613~^0.177^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~614~^0.044^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~617~^0.205^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~618~^0.084^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~621~^0.156^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~626~^0.026^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15131~^~628~^0.023^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~629~^0.048^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~630~^0.024^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~631~^0.005^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~645~^0.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15131~^~646~^0.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~312~^0.031^83^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~315~^0.104^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~404~^0.056^11^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~405~^0.046^11^0.301^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~406~^1.300^11^0.090^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~410~^0.216^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~415~^0.156^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~501~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~502~^0.803^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~503~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~504~^1.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~505~^1.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~506~^0.542^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~508~^0.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~509~^0.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~510~^0.943^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~511~^1.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~512~^0.539^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~513~^1.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~514~^1.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~515~^2.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~516~^0.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~517~^0.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~518~^0.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~606~^0.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15132~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15132~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15132~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15132~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15132~^~612~^0.045^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~613~^0.158^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~614~^0.032^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~617~^0.162^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~618~^0.020^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~619~^0.034^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~620~^0.078^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~621~^0.131^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~626~^0.082^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~627~^0.041^5^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~628~^0.030^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~629~^0.093^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~630~^0.004^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~631~^0.018^6^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~645~^0.279^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15132~^~646~^0.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~312~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~315~^0.130^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~404~^0.068^11^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~405~^0.060^11^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~406~^1.670^11^0.080^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~410~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~415~^0.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~501~^0.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~502~^1.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~503~^1.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~504~^1.908^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~505~^2.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~506~^0.695^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~507~^0.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~508~^0.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~509~^0.793^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~510~^1.210^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~511~^1.405^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~512~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~513~^1.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~514~^2.404^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~515~^3.505^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~516~^1.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~517~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~518~^0.958^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15133~^~606~^0.400^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~612~^0.068^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~613~^0.285^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~614~^0.047^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~617~^0.277^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~618~^0.020^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~619~^0.013^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~620~^0.020^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~621~^0.235^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~626~^0.121^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/1994~ -~15133~^~628~^0.027^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~629~^0.283^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~630~^0.020^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~631~^0.017^11^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~645~^0.445^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15133~^~646~^0.587^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15134~^~312~^0.029^58^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~404~^0.180^3^0.021^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~405~^0.080^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~406~^2.133^3^0.203^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~410~^0.570^3^0.040^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~415~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15134~^~501~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~502~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~503~^0.806^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~504~^1.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~505~^1.607^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~506~^0.518^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~507~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~508~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~509~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~510~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~511~^1.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~512~^0.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~513~^1.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~514~^1.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~515~^2.612^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~516~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~517~^0.619^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~518~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~606~^0.365^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~612~^0.066^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~613~^0.253^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~614~^0.046^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~617~^0.516^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~618~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~619~^0.009^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~620~^0.089^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~621~^0.316^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~626~^0.189^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~627~^0.061^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~628~^0.114^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~629~^0.307^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~630~^0.018^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~631~^0.043^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~645~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15134~^~646~^0.845^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~312~^0.045^26^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~404~^0.144^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~405~^0.040^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~406~^6.800^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~410~^0.590^3^0.102^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~415~^0.160^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~501~^0.259^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~502~^1.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~503~^1.066^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~504~^1.881^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~505~^2.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~506~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~507~^0.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~508~^0.904^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~509~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~510~^1.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~511~^1.385^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~512~^0.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~513~^1.400^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~514~^2.370^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~515~^3.455^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~516~^1.111^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~517~^0.818^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~518~^0.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15135~^~606~^1.280^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~645~^1.990^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15135~^~646~^1.420^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~312~^0.922^29^0.110^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~315~^0.035^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~404~^0.043^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~405~^0.043^3^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~406~^1.100^3^0.029^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~501~^0.255^23^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~502~^0.741^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~503~^0.887^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~504~^1.452^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~505~^1.592^29^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~506~^0.515^28^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~507~^0.205^24^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~508~^0.773^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~509~^0.609^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~510~^0.861^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~511~^1.598^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~512~^0.372^27^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~513~^1.036^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~514~^1.891^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~515~^3.120^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~516~^1.103^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~517~^0.603^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~518~^0.720^21^^~1~^^^^^^^^^^^~09/01/1987~ -~15136~^~606~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~645~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15136~^~646~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~312~^1.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~315~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~404~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~405~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~406~^1.340^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~410~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~415~^0.180^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15137~^~501~^0.269^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~502~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~503~^0.938^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~504~^1.536^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~505~^1.684^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~506~^0.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~507~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~508~^0.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~509~^0.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~510~^0.910^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~511~^1.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~512~^0.393^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~513~^1.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~514~^2.000^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~515~^3.300^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~516~^1.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~517~^0.638^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~518~^0.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~606~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~610~^0.003^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~611~^0.004^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~612~^0.015^10^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~613~^0.087^10^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~614~^0.019^14^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~617~^0.089^12^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~618~^0.020^12^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~619~^0.014^10^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~620~^0.043^10^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~621~^0.118^10^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~626~^0.041^10^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~627~^0.015^14^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~628~^0.014^12^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~629~^0.295^12^0.021^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~630~^0.038^4^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~631~^0.031^12^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~645~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15137~^~646~^0.536^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15138~^~312~^0.032^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~315~^0.011^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15138~^~404~^0.030^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~405~^0.080^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~406~^0.620^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~410~^0.000^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~15138~^~415~^0.130^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~15138~^~501~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~502~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~503~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~504~^0.607^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~505~^0.707^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~506~^0.261^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~507~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~508~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~509~^0.219^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~510~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~511~^0.488^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~512~^0.156^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~513~^0.432^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~514~^0.894^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~515~^1.438^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~516~^0.276^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~517~^0.328^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~518~^0.457^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~15138~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~606~^0.216^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~607~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~608~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~609~^0.002^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~610~^0.002^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~611~^0.017^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~612~^0.018^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~613~^0.106^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~614~^0.047^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~615~^0.002^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~617~^0.113^0^^~4~^^^^^^^^^^^~07/01/2015~ -~15138~^~618~^0.012^0^^~4~^^^^^^^^^^^~07/01/2015~ -~15138~^~619~^0.005^0^^~4~^^^^^^^^^^^~07/01/2015~ -~15138~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~ -~15138~^~621~^0.028^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~624~^0.001^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~625~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~626~^0.014^0^^~4~^^^^^^^^^^^~07/01/2015~ -~15138~^~627~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~628~^0.003^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~629~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~630~^0.005^0^^~4~^^^^^^^^^^^~07/01/2015~ -~15138~^~631~^0.001^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~645~^0.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~646~^0.143^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~652~^0.001^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~653~^0.002^2^^~1~^~A~^^^1^^^^^^^~06/01/2013~ -~15138~^~654~^0.018^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~662~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~663~^0.008^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~664~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~665~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~670~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~671~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~673~^0.009^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~674~^0.121^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~675~^0.089^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~676~^0.003^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~685~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~15138~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~851~^0.008^2^^~1~^~A~^^^1^^^^^^^~07/01/2015~ -~15138~^~852~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~853~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15138~^~858~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2009~ -~15139~^~312~^0.669^113^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~315~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~405~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~406~^2.700^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15139~^~501~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~502~^0.731^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~503~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~504~^1.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~505~^1.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~506~^0.508^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~507~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~508~^0.763^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~509~^0.601^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~510~^0.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~511~^1.577^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~512~^0.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~513~^1.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~514~^1.866^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~515~^3.080^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~516~^1.089^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~517~^0.595^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~518~^0.711^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~606~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~613~^0.141^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~614~^0.081^3^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~617~^0.104^3^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~618~^0.012^3^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~620~^0.055^3^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~621~^0.150^3^0.016^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~626~^0.059^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~628~^0.029^3^0.012^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~629~^0.170^3^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15139~^~645~^0.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15139~^~646~^0.387^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15140~^~312~^0.814^3^0.193^~1~^~A~^^^1^0.429^1.020^2^-0.015^1.642^~2, 3~^~07/01/2010~ -~15140~^~315~^0.074^3^0.025^~1~^~A~^^^1^0.027^0.110^2^-0.032^0.180^~2, 3~^~07/01/2010~ -~15140~^~404~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~07/01/2010~ -~15140~^~405~^0.093^3^0.054^~1~^~A~^^^1^0.030^0.200^2^-0.137^0.324^~2, 3~^~07/01/2010~ -~15140~^~406~^2.747^3^0.717^~1~^~A~^^^1^1.370^3.780^2^-0.337^5.830^~2, 3~^~07/01/2010~ -~15140~^~410~^0.997^3^0.171^~1~^~A~^^^1^0.710^1.300^2^0.263^1.730^~2, 3~^~07/01/2010~ -~15140~^~415~^0.156^3^0.030^~1~^~A~^^^1^0.097^0.186^2^0.029^0.283^~2, 3~^~07/01/2010~ -~15140~^~501~^0.226^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~502~^0.727^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~503~^0.776^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~504~^1.307^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~505~^1.386^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~506~^0.452^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~507~^0.187^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~508~^0.708^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~509~^0.658^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~510~^0.806^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~511~^1.759^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~512~^0.393^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~513~^0.894^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~514~^1.690^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~515~^2.634^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~516~^1.071^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~517~^0.678^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~518~^0.678^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15140~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~606~^0.201^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15140~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15140~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15140~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15140~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~07/01/2010~ -~15140~^~612~^0.008^3^0.003^~1~^~A~^^^1^0.004^0.013^2^-0.003^0.019^~2, 3~^~07/01/2010~ -~15140~^~613~^0.098^3^0.008^~1~^~A~^^^1^0.086^0.114^2^0.062^0.134^~2, 3~^~07/01/2010~ -~15140~^~614~^0.072^3^0.015^~1~^~A~^^^1^0.043^0.094^2^0.007^0.138^~2, 3~^~07/01/2010~ -~15140~^~615~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~07/01/2010~ -~15140~^~617~^0.092^3^0.008^~1~^~AS~^^^1^0.077^0.102^2^0.059^0.125^~2, 3~^~07/01/2010~ -~15140~^~618~^0.020^3^0.003^~1~^~AS~^^^1^0.015^0.024^2^0.009^0.032^~2, 3~^~07/01/2010~ -~15140~^~619~^0.009^3^0.004^~1~^~AS~^^^1^0.005^0.017^2^-0.008^0.026^~2, 3~^~07/01/2010~ -~15140~^~620~^0.037^3^0.011^~1~^~A~^^^1^0.016^0.050^2^-0.009^0.083^~2, 3~^~07/01/2010~ -~15140~^~621~^0.067^3^0.007^~1~^~A~^^^1^0.060^0.081^2^0.038^0.097^~2, 3~^~07/01/2010~ -~15140~^~624~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~07/01/2010~ -~15140~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~07/01/2010~ -~15140~^~626~^0.027^3^0.005^~1~^~AS~^^^1^0.020^0.037^2^0.005^0.049^~2, 3~^~07/01/2010~ -~15140~^~627~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~07/01/2010~ -~15140~^~628~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~07/01/2010~ -~15140~^~629~^0.101^3^0.024^~1~^~A~^^^1^0.067^0.148^2^-0.003^0.205^~2, 3~^~07/01/2010~ -~15140~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2010~ -~15140~^~631~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.012^~2, 3~^~07/01/2010~ -~15140~^~645~^0.129^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~646~^0.258^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~07/01/2010~ -~15140~^~653~^0.010^3^0.002^~1~^~A~^^^1^0.005^0.013^2^-0.001^0.020^~2, 3~^~07/01/2010~ -~15140~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15140~^~662~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~07/01/2010~ -~15140~^~663~^0.006^3^0.003^~1~^~A~^^^1^0.002^0.012^2^-0.006^0.019^~2, 3~^~07/01/2010~ -~15140~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15140~^~665~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.005^0.013^~1, 2, 3~^~07/01/2010~ -~15140~^~670~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15140~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15140~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~07/01/2010~ -~15140~^~673~^0.024^3^0.006^~1~^~A~^^^1^0.016^0.035^2^-0.001^0.049^~2, 3~^~07/01/2010~ -~15140~^~674~^0.086^3^0.008^~1~^~A~^^^1^0.072^0.100^2^0.051^0.120^~2, 3~^~07/01/2010~ -~15140~^~675~^0.016^3^0.004^~1~^~A~^^^1^0.009^0.023^2^-0.002^0.033^~2, 3~^~07/01/2010~ -~15140~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15140~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15140~^~687~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~07/01/2010~ -~15140~^~689~^0.005^3^0.002^~1~^~AS~^^^1^0.001^0.008^2^-0.004^0.013^~2, 3~^~07/01/2010~ -~15140~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15140~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15140~^~851~^0.009^3^0.004^~1~^~A~^^^1^0.004^0.017^2^-0.009^0.027^~2, 3~^~07/01/2010~ -~15140~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~2, 3~^~07/01/2010~ -~15140~^~853~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.010^~1, 2, 3~^~07/01/2010~ -~15140~^~858~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~2, 3~^~07/01/2010~ -~15141~^~312~^0.814^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~315~^0.074^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~404~^0.023^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~405~^0.093^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~406~^2.747^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~410~^0.997^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~415~^0.156^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~501~^0.226^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~502~^0.727^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~503~^0.776^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~504~^1.307^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~505~^1.386^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~506~^0.452^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~507~^0.187^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~508~^0.708^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~509~^0.658^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~510~^0.806^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~511~^1.759^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~512~^0.393^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~513~^0.894^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~514~^1.690^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~515~^2.634^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~516~^1.071^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~517~^0.678^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~518~^0.678^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~605~^0.014^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~606~^0.201^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~612~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~613~^0.098^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~614~^0.072^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~615~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~617~^0.092^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~618~^0.020^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~619~^0.009^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~620~^0.037^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~621~^0.067^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~624~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~626~^0.027^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~627~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~628~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~629~^0.101^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~631~^0.009^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~645~^0.129^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~646~^0.258^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~652~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~653~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~672~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~687~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~689~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15141~^~858~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15142~^~312~^0.610^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~315~^0.190^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~404~^0.090^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~405~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~406~^2.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~415~^0.170^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15142~^~501~^0.281^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~502~^0.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~503~^0.996^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~504~^1.617^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~505~^1.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~506~^0.569^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~507~^0.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~508~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~509~^0.682^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~510~^0.980^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~511~^1.730^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~512~^0.414^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~513~^1.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~514~^2.083^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~515~^3.396^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~516~^1.180^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~517~^0.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~518~^0.841^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~606~^1.483^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~612~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~613~^0.956^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~614~^0.491^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~617~^2.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~618~^1.578^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~619~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~620~^0.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~621~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~626~^0.121^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~627~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~628~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~629~^0.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~631~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~645~^2.815^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15142~^~646~^2.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~312~^0.674^58^0.044^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~315~^0.080^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~404~^0.047^3^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~405~^0.167^3^0.050^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~406~^3.140^3^0.081^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15143~^~501~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~502~^0.705^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~503~^0.844^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~504~^1.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~505~^1.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~506~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~507~^0.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~508~^0.735^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~509~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~510~^0.819^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~511~^1.521^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~512~^0.354^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~513~^0.986^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~514~^1.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~515~^2.969^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~516~^1.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~517~^0.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~518~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~606~^0.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~611~^0.000^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~612~^0.001^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~613~^0.089^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~614~^0.041^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~617~^0.093^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~620~^0.000^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~621~^0.088^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~626~^0.043^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~628~^0.011^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~629~^0.219^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~630~^0.020^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~631~^0.010^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~645~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15143~^~646~^0.317^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~312~^0.570^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~404~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~405~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~406~^2.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15144~^~501~^0.258^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~502~^0.749^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~503~^0.897^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~504~^1.468^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~505~^1.610^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~506~^0.521^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~507~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~508~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~509~^0.616^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~510~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~511~^1.616^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~512~^0.376^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~513~^1.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~514~^1.912^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~515~^3.155^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~516~^1.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~517~^0.610^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~518~^0.728^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~606~^0.143^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~612~^0.004^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~613~^0.119^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~614~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~617~^0.184^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~618~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~619~^0.002^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~620~^0.033^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~621~^0.113^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~626~^0.050^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~627~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~628~^0.022^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~629~^0.259^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~631~^0.008^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~645~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15144~^~646~^0.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~312~^0.419^32^0.048^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~315~^0.226^5^0.120^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~404~^0.070^5^0.020^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~405~^0.032^5^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~406~^2.208^5^0.271^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~410~^0.546^5^0.074^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~415~^0.108^5^0.018^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~501~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~502~^0.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~503~^0.772^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~504~^1.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~505~^1.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~506~^0.450^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~507~^0.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~508~^0.672^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~509~^0.532^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~510~^0.749^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~511~^1.393^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~512~^0.325^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~513~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~514~^1.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~515~^2.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~516~^0.961^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~517~^0.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~518~^0.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~606~^0.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15145~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15145~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15145~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15145~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15145~^~612~^0.002^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~613~^0.102^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~614~^0.042^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~617~^0.113^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~618~^0.052^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~619~^0.032^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~620~^0.045^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~621~^0.038^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~626~^0.028^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~627~^0.005^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~628~^0.010^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~629~^0.104^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~630~^0.018^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~631~^0.010^11^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~645~^0.174^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15145~^~646~^0.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~312~^0.685^4^0.080^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~315~^0.522^4^0.283^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~404~^0.050^4^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~405~^0.085^4^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~406~^2.280^4^0.569^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~410~^0.580^4^0.120^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~415~^0.076^4^0.017^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~501~^0.234^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~502~^0.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~503~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~504~^1.329^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~505~^1.457^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~506~^0.472^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~507~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~508~^0.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~509~^0.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~510~^0.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~511~^1.463^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~512~^0.341^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~513~^0.947^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~514~^1.731^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~515~^2.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~516~^1.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~517~^0.553^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~518~^0.660^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~606~^0.181^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~612~^0.005^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~613~^0.111^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~614~^0.049^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~617~^0.147^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~618~^0.090^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~619~^0.028^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~620~^0.056^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~621~^0.047^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~626~^0.027^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~627~^0.001^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~628~^0.012^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~629~^0.119^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~630~^0.050^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15146~^~645~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15146~^~646~^0.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15147~^~312~^1.349^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~315~^0.056^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~404~^0.020^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~405~^0.014^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~406~^1.591^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~410~^1.449^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~415~^0.104^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~501~^0.215^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~502~^0.654^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~503~^0.723^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~504~^1.197^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~505~^1.240^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~506~^0.413^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~507~^0.181^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~508~^0.680^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~509~^0.586^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~510~^0.741^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~511~^1.524^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~512~^0.413^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~513~^0.878^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~514~^1.602^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~515~^2.437^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~516~^1.102^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~517~^0.741^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~518~^0.637^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~605~^0.011^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~606~^0.181^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~612~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~613~^0.110^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~614~^0.045^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~615~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~617~^0.157^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~618~^0.033^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~619~^0.043^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~620~^0.026^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~621~^0.068^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~626~^0.030^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~627~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~628~^0.027^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~629~^0.102^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~630~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~631~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~645~^0.220^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~646~^0.296^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~652~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~653~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~671~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~672~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~687~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~689~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15147~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15148~^~312~^1.550^3^0.085^~1~^~A~^^^1^1.450^1.720^2^1.182^1.918^~2, 3~^~07/01/2010~ -~15148~^~315~^0.065^3^0.001^~1~^~A~^^^1^0.063^0.067^2^0.059^0.070^~2, 3~^~07/01/2010~ -~15148~^~404~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~07/01/2010~ -~15148~^~405~^0.017^3^0.002^~1~^~A~^^^1^0.015^0.020^2^0.009^0.024^~1, 2, 3~^~07/01/2010~ -~15148~^~406~^1.830^3^0.055^~1~^~A~^^^1^1.730^1.920^2^1.593^2.067^~2, 3~^~07/01/2010~ -~15148~^~410~^1.667^3^0.167^~1~^~A~^^^1^1.500^2.000^2^0.950^2.384^~2, 3~^~07/01/2010~ -~15148~^~415~^0.119^3^0.011^~1~^~A~^^^1^0.105^0.140^2^0.074^0.165^~2, 3~^~07/01/2010~ -~15148~^~501~^0.248^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~502~^0.753^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~503~^0.832^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~504~^1.376^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~505~^1.426^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~506~^0.475^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~508~^0.782^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~509~^0.673^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~510~^0.852^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~511~^1.753^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~512~^0.475^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~513~^1.010^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~514~^1.842^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~515~^2.802^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~516~^1.267^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~517~^0.852^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~518~^0.733^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15148~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~606~^0.208^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15148~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15148~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~07/01/2010~ -~15148~^~612~^0.011^3^0.002^~1~^~A~^^^1^0.008^0.013^2^0.004^0.018^~2, 3~^~07/01/2010~ -~15148~^~613~^0.126^3^0.012^~1~^~A~^^^1^0.113^0.149^2^0.076^0.176^~2, 3~^~07/01/2010~ -~15148~^~614~^0.052^3^0.005^~1~^~A~^^^1^0.044^0.062^2^0.029^0.075^~2, 3~^~07/01/2010~ -~15148~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~07/01/2010~ -~15148~^~617~^0.180^3^0.008^~1~^~AS~^^^1^0.165^0.192^2^0.146^0.215^~2, 3~^~07/01/2010~ -~15148~^~618~^0.038^3^0.006^~1~^~AS~^^^1^0.026^0.046^2^0.012^0.064^~2, 3~^~07/01/2010~ -~15148~^~619~^0.050^3^0.020^~1~^~AS~^^^1^0.011^0.079^2^-0.037^0.136^~2, 3~^~07/01/2010~ -~15148~^~620~^0.030^3^0.005^~1~^~A~^^^1^0.022^0.040^2^0.007^0.053^~2, 3~^~07/01/2010~ -~15148~^~621~^0.078^3^0.011^~1~^~A~^^^1^0.066^0.099^2^0.032^0.124^~2, 3~^~07/01/2010~ -~15148~^~624~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~07/01/2010~ -~15148~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15148~^~626~^0.034^3^0.003^~1~^~AS~^^^1^0.028^0.037^2^0.021^0.047^~2, 3~^~07/01/2010~ -~15148~^~627~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~07/01/2010~ -~15148~^~628~^0.031^3^0.005^~1~^~A~^^^1^0.026^0.041^2^0.009^0.053^~2, 3~^~07/01/2010~ -~15148~^~629~^0.117^3^0.012^~1~^~A~^^^1^0.104^0.141^2^0.065^0.169^~2, 3~^~07/01/2010~ -~15148~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~07/01/2010~ -~15148~^~631~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~07/01/2010~ -~15148~^~645~^0.253^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~646~^0.340^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~07/01/2010~ -~15148~^~653~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~07/01/2010~ -~15148~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15148~^~662~^0.004^3^0.001^~1~^~A~^^^1^0.001^0.006^2^-0.003^0.010^~2, 3~^~07/01/2010~ -~15148~^~663~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.009^2^0.000^0.013^~2, 3~^~07/01/2010~ -~15148~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15148~^~665~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~07/01/2010~ -~15148~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~2, 3~^~07/01/2010~ -~15148~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2010~ -~15148~^~672~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~07/01/2010~ -~15148~^~673~^0.030^3^0.002^~1~^~A~^^^1^0.027^0.033^2^0.023^0.038^~2, 3~^~07/01/2010~ -~15148~^~674~^0.174^3^0.007^~1~^~A~^^^1^0.161^0.186^2^0.143^0.205^~2, 3~^~07/01/2010~ -~15148~^~675~^0.033^3^0.009^~1~^~A~^^^1^0.016^0.043^2^-0.004^0.070^~2, 3~^~07/01/2010~ -~15148~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~07/01/2010~ -~15148~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15148~^~687~^0.004^3^0.001^~1~^~A~^^^1^0.001^0.006^2^-0.003^0.010^~2, 3~^~07/01/2010~ -~15148~^~689~^0.012^3^0.004^~1~^~AS~^^^1^0.007^0.019^2^-0.004^0.028^~2, 3~^~07/01/2010~ -~15148~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15148~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15148~^~851~^0.050^3^0.020^~1~^~A~^^^1^0.011^0.079^2^-0.037^0.136^~2, 3~^~07/01/2010~ -~15148~^~852~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.009^2^-0.002^0.013^~2, 3~^~07/01/2010~ -~15148~^~853~^0.006^3^0.002^~1~^~A~^^^1^0.003^0.010^2^-0.003^0.015^~2, 3~^~07/01/2010~ -~15148~^~858~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~2, 3~^~07/01/2010~ -~15149~^~312~^0.182^4^0.029^~1~^~A~^^^1^0.129^0.242^3^0.088^0.275^~2, 3~^~07/01/2010~ -~15149~^~315~^0.029^4^0.010^~1~^~A~^^^1^0.011^0.059^3^-0.004^0.062^~1, 2, 3~^~07/01/2010~ -~15149~^~404~^0.020^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.008^0.031^~1, 2, 3~^~07/01/2010~ -~15149~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~406~^1.778^4^0.271^~1~^~A~^^^1^1.410^2.580^3^0.916^2.639^~2, 3~^~07/01/2010~ -~15149~^~410~^0.310^2^^~1~^~A~^^^1^0.300^0.320^1^^^^~07/01/2010~ -~15149~^~415~^0.161^4^0.018^~1~^~A~^^^1^0.126^0.194^3^0.104^0.217^~2, 3~^~07/01/2010~ -~15149~^~501~^0.155^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~502~^0.540^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~503~^0.627^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~504~^1.165^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~505~^1.297^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~506~^0.397^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~508~^0.593^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~509~^0.515^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~510~^0.637^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~511~^1.342^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~512~^0.300^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~513~^0.842^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~514~^1.517^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~515~^2.390^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~516~^0.801^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~517~^0.626^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~518~^0.555^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15149~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~606~^0.261^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15149~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2010~ -~15149~^~611~^0.005^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.004^~2, 3~^~07/01/2013~ -~15149~^~612~^0.011^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.003^0.006^~2, 3~^~07/01/2013~ -~15149~^~613~^0.142^4^0.008^~1~^~A~^^^1^0.039^0.073^3^0.037^0.088^~2, 3~^~07/01/2013~ -~15149~^~614~^0.078^4^0.011^~1~^~A~^^^1^0.001^0.047^3^-0.001^0.070^~2, 3~^~07/01/2013~ -~15149~^~615~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~07/01/2013~ -~15149~^~617~^0.112^4^0.007^~1~^~AS~^^^1^0.028^0.062^3^0.026^0.073^~2, 3~^~07/01/2013~ -~15149~^~618~^0.095^4^0.009^~1~^~AS~^^^1^0.019^0.063^3^0.013^0.071^~2, 3~^~07/01/2013~ -~15149~^~619~^0.006^4^0.000^~1~^~AS~^^^1^0.002^0.003^3^0.002^0.004^~2, 3~^~07/01/2013~ -~15149~^~620~^0.034^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.011^0.018^~2, 3~^~07/01/2013~ -~15149~^~621~^0.070^4^0.003^~1~^~A~^^^1^0.025^0.039^3^0.021^0.041^~2, 3~^~07/01/2013~ -~15149~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~626~^0.020^4^0.001^~1~^~AS~^^^1^0.007^0.010^3^0.007^0.011^~2, 3~^~07/01/2013~ -~15149~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~628~^0.003^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~07/01/2013~ -~15149~^~629~^0.068^4^0.003^~1~^~A~^^^1^0.024^0.039^3^0.019^0.040^~2, 3~^~07/01/2013~ -~15149~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2010~ -~15149~^~631~^0.006^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~2, 3~^~07/01/2013~ -~15149~^~645~^0.181^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~646~^0.295^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~652~^0.007^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~07/01/2013~ -~15149~^~653~^0.012^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.007^~2, 3~^~07/01/2013~ -~15149~^~654~^0.004^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~2, 3~^~07/01/2013~ -~15149~^~662~^0.003^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~2, 3~^~07/01/2013~ -~15149~^~663~^0.008^4^0.001^~1~^~A~^^^1^0.000^0.005^3^0.000^0.007^~1, 2, 3~^~07/01/2013~ -~15149~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~665~^0.006^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~2, 3~^~07/01/2013~ -~15149~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~672~^0.006^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~2, 3~^~07/01/2013~ -~15149~^~673~^0.016^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~07/01/2013~ -~15149~^~674~^0.104^4^0.006^~1~^~A~^^^1^0.028^0.057^3^0.026^0.066^~2, 3~^~07/01/2013~ -~15149~^~675~^0.089^4^0.009^~1~^~A~^^^1^0.017^0.060^3^0.011^0.068^~2, 3~^~07/01/2013~ -~15149~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~687~^0.046^4^0.007^~1~^~A~^^^1^0.006^0.038^3^-0.002^0.043^~2, 3~^~07/01/2013~ -~15149~^~689~^0.006^4^0.001^~1~^~AS~^^^1^0.000^0.005^3^-0.001^0.006^~2, 3~^~07/01/2013~ -~15149~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~15149~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~851~^0.006^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~2, 3~^~07/01/2013~ -~15149~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15149~^~853~^0.006^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.001^0.006^~1, 2, 3~^~07/01/2013~ -~15149~^~858~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~07/01/2013~ -~15150~^~312~^0.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~315~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15150~^~404~^0.129^11^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~405~^0.136^11^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~406~^3.070^11^0.160^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15150~^~415~^0.098^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~501~^0.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~502~^0.860^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~503~^1.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~504~^1.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~505~^1.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~506~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~507~^0.258^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~508~^0.928^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~509~^0.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~510~^1.025^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~511~^1.784^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~512~^0.437^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~513~^1.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~514~^2.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~515~^3.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~516~^1.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~517~^0.829^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~518~^0.890^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~606~^2.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~612~^0.035^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~613~^1.463^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~614~^0.541^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~617~^3.753^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~618~^4.511^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~619~^0.267^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~620~^0.059^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~621~^0.124^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~626~^0.076^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~628~^0.105^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~629~^0.109^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~630~^0.022^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~631~^0.035^11^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~645~^3.812^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15150~^~646~^5.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15151~^~312~^0.258^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~315~^0.049^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~404~^0.032^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~405~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~406~^2.678^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~410~^0.519^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~415~^0.242^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~501~^0.260^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~502~^0.904^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~503~^1.050^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~504~^1.950^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~505~^2.172^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~506~^0.665^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~507~^0.272^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~508~^0.992^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~509~^0.862^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~510~^1.067^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~511~^2.247^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~512~^0.501^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~513~^1.410^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~514~^2.540^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~515~^4.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~516~^1.341^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~517~^1.047^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~518~^0.929^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~605~^0.035^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~606~^0.521^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~611~^0.010^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~612~^0.022^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~613~^0.284^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~614~^0.157^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~615~^0.003^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~617~^0.224^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~618~^0.191^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~619~^0.012^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~620~^0.067^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~621~^0.141^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~626~^0.040^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~628~^0.006^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~629~^0.135^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~631~^0.012^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~645~^0.361^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~646~^0.590^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~652~^0.014^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~653~^0.024^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~654~^0.008^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~672~^0.012^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~687~^0.092^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~689~^0.012^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15151~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15151~^~858~^0.007^0^^~4~^~RA~^^^^^^^^^^~06/01/2011~ -~15152~^~312~^0.262^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~315~^0.396^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~404~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~406~^0.558^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~410~^0.141^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~415~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~501~^0.186^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~502~^0.824^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~503~^0.974^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~504~^1.681^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~505~^1.813^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~506~^0.557^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~507~^0.242^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~508~^0.946^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~509~^0.810^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~510~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~511~^1.631^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~512~^0.485^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~513~^1.135^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~514~^2.217^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~515~^3.429^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~516~^1.066^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~517~^0.671^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~518~^0.866^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~606~^0.188^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15152~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15152~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~610~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~611~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~613~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~614~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~617~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~618~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~619~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~620~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~621~^0.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15152~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~626~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~627~^0.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15152~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~629~^0.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15152~^~630~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15152~^~631~^0.052^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15152~^~645~^0.108^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~646~^0.684^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~15152~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~653~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~672~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~687~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~689~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15152~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~15152~^~851~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15153~^~312~^0.032^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~315~^0.011^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~404~^0.024^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~405~^0.034^3^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~406~^0.170^3^0.069^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~410~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~415~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~501~^0.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~502~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~503~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~504~^0.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~505~^1.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~506~^0.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~507~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~508~^0.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~509~^0.499^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~510~^0.628^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~511~^0.823^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~512~^0.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~513~^0.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~514~^1.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~515~^1.956^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~516~^0.480^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~517~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~518~^0.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15153~^~606~^0.290^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~645~^0.220^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15153~^~646~^0.750^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~312~^0.381^40^0.027^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~404~^0.007^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~405~^0.046^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~406~^4.245^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~410~^0.350^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15154~^~501~^0.287^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~502~^0.834^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~503~^0.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~504~^1.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~505~^1.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~506~^0.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~507~^0.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~508~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~509~^0.685^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~510~^0.969^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~511~^1.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~512~^0.418^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~513~^1.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~514~^2.129^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~515~^3.512^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~516~^1.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~517~^0.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~518~^0.811^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~606~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~612~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~613~^0.149^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~614~^0.080^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~617~^0.208^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~618~^0.013^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~619~^0.008^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~620~^0.154^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~621~^0.108^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~626~^0.039^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~627~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~628~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~629~^0.265^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15154~^~631~^0.034^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~645~^0.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15154~^~646~^0.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~312~^0.196^13^0.037^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~315~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~404~^0.190^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~405~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~406~^1.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~410~^3.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15155~^~501~^0.192^43^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~502~^0.736^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~503~^0.744^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~504~^1.204^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~505~^1.278^66^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~506~^0.386^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~507~^0.224^49^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~508~^0.613^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~509~^0.547^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~510~^0.747^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~511~^1.248^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~512~^0.328^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~513~^1.034^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~514~^1.650^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~515~^2.326^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~516~^1.070^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~517~^0.698^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~518~^0.766^54^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~606~^0.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~612~^0.023^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~613~^0.103^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~614~^0.021^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~617~^0.087^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~618~^0.007^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~626~^0.020^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~627~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~629~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15155~^~631~^0.041^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~645~^0.107^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15155~^~646~^0.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~312~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~315~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~404~^0.220^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~405~^0.130^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~406~^1.900^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~410~^2.870^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15156~^~501~^0.224^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~502~^0.838^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~503~^0.854^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~504~^1.386^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~505~^1.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~506~^0.441^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~507~^0.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~508~^0.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~509~^0.627^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~510~^0.860^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~511~^1.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~512~^0.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~513~^1.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~514~^1.862^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~515~^2.819^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~516~^1.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~517~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~518~^0.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~606~^1.646^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~612~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~613~^0.953^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~614~^0.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~617~^2.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~618~^1.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~619~^0.095^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~626~^0.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~627~^0.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~629~^0.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~631~^0.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~645~^2.741^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15156~^~646~^1.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15157~^~312~^0.053^4^0.004^~1~^~A~^^^1^0.046^0.066^3^0.038^0.067^~2, 3~^~07/01/2010~ -~15157~^~315~^0.085^4^0.032^~1~^~A~^^^1^0.048^0.181^3^-0.018^0.187^~2, 3~^~07/01/2010~ -~15157~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~405~^0.040^4^0.004^~1~^~A~^^^1^0.030^0.050^3^0.027^0.053^~2, 3~^~07/01/2010~ -~15157~^~406~^0.350^4^0.036^~1~^~A~^^^1^0.270^0.440^3^0.235^0.465^~2, 3~^~07/01/2010~ -~15157~^~410~^0.148^2^^~1~^~A~^^^1^0.148^0.148^^^^~1~^~07/01/2010~ -~15157~^~415~^0.010^4^0.002^~1~^~A~^^^1^0.004^0.014^3^0.003^0.016^~1, 2, 3~^~07/01/2010~ -~15157~^~501~^0.205^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~502~^0.700^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~503~^0.693^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~504~^1.200^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~505~^1.123^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~506~^0.423^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~507~^0.175^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~509~^0.597^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~510~^0.743^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~511~^1.210^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~512~^0.300^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~513~^0.885^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~514~^1.608^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~515~^2.248^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~516~^0.640^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~517~^0.500^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~518~^0.690^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15157~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~606~^0.187^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15157~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2010~ -~15157~^~611~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.007^~2, 3~^~07/01/2010~ -~15157~^~612~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.005^0.010^~2, 3~^~07/01/2010~ -~15157~^~613~^0.110^4^0.011^~1~^~A~^^^1^0.089^0.131^3^0.075^0.144^~2, 3~^~07/01/2010~ -~15157~^~614~^0.050^4^0.005^~1~^~A~^^^1^0.042^0.063^3^0.035^0.066^~2, 3~^~07/01/2010~ -~15157~^~615~^0.004^4^0.001^~1~^~A~^^^1^0.000^0.007^3^-0.001^0.009^~1, 2, 3~^~07/01/2010~ -~15157~^~617~^0.060^4^0.013^~1~^~AS~^^^1^0.041^0.099^3^0.017^0.102^~2, 3~^~07/01/2010~ -~15157~^~618~^0.042^4^0.007^~1~^~AS~^^^1^0.029^0.061^3^0.019^0.066^~2, 3~^~07/01/2010~ -~15157~^~619~^0.015^4^0.001^~1~^~AS~^^^1^0.013^0.016^3^0.013^0.017^~2, 3~^~07/01/2010~ -~15157~^~620~^0.011^4^0.004^~1~^~A~^^^1^0.007^0.021^3^-0.001^0.022^~2, 3~^~07/01/2010~ -~15157~^~621~^0.064^4^0.003^~1~^~A~^^^1^0.060^0.074^3^0.053^0.075^~2, 3~^~07/01/2010~ -~15157~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~626~^0.020^4^0.001^~1~^~AS~^^^1^0.017^0.021^3^0.016^0.023^~2, 3~^~07/01/2010~ -~15157~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~07/01/2010~ -~15157~^~628~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.005^0.008^~2, 3~^~07/01/2010~ -~15157~^~629~^0.043^4^0.001^~1~^~A~^^^1^0.039^0.045^3^0.038^0.047^~2, 3~^~07/01/2010~ -~15157~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2010~ -~15157~^~631~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~07/01/2010~ -~15157~^~645~^0.120^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~646~^0.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~07/01/2010~ -~15157~^~653~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~07/01/2010~ -~15157~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~07/01/2010~ -~15157~^~662~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~07/01/2010~ -~15157~^~663~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~07/01/2010~ -~15157~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~665~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15157~^~670~^0.014^4^0.001^~1~^~A~^^^1^0.010^0.017^3^0.009^0.019^~2, 3~^~07/01/2010~ -~15157~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~672~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.006^~2, 3~^~07/01/2010~ -~15157~^~673~^0.012^4^0.001^~1~^~A~^^^1^0.009^0.013^3^0.008^0.015^~2, 3~^~07/01/2010~ -~15157~^~674~^0.054^4^0.014^~1~^~A~^^^1^0.036^0.094^3^0.010^0.097^~2, 3~^~07/01/2010~ -~15157~^~675~^0.027^4^0.008^~1~^~A~^^^1^0.012^0.047^3^0.003^0.051^~2, 3~^~07/01/2010~ -~15157~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~687~^0.034^4^0.008^~1~^~A~^^^1^0.017^0.056^3^0.008^0.060^~2, 3~^~07/01/2010~ -~15157~^~689~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~07/01/2010~ -~15157~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15157~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~851~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.016^3^0.013^0.017^~2, 3~^~07/01/2010~ -~15157~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15157~^~853~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15157~^~858~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.009^3^0.000^0.009^~2, 3~^~07/01/2010~ -~15158~^~312~^0.356^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~315~^0.540^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15158~^~404~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15158~^~405~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~406~^2.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~410~^0.430^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15158~^~415~^0.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15158~^~501~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~502~^0.602^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~503~^0.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~504~^1.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~505~^0.992^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~506~^0.324^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~508~^0.549^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~509~^0.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~510~^0.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~511~^0.985^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~512~^0.280^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~513~^0.824^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~514~^1.311^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~515~^2.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~516~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~517~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~518~^0.673^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~606~^2.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~612~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~613~^1.551^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~614~^1.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~617~^4.472^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~618~^2.455^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~619~^0.160^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~620~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~621~^0.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~626~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~627~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~628~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~629~^0.066^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~630~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~631~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~645~^4.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15158~^~646~^2.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~312~^0.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~315~^1.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~404~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~405~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~406~^3.354^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~410~^0.680^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~415~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15159~^~501~^0.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~502~^1.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~503~^1.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~504~^1.798^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~505~^1.909^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~506~^0.576^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~507~^0.335^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~508~^0.915^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~509~^0.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~510~^1.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~511~^1.864^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~512~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~513~^1.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~514~^2.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~515~^3.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~516~^1.598^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~517~^1.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~518~^1.144^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~606~^0.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~612~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~613~^0.120^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~614~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~617~^0.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~618~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~619~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~620~^0.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~621~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~626~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~627~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~628~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~629~^0.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~630~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~631~^0.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~645~^0.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15159~^~646~^0.552^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15160~^~312~^0.087^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~315~^0.140^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~404~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~405~^0.066^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~406~^0.578^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~410~^0.245^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~415~^0.016^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~501~^0.339^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~502~^1.157^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~503~^1.144^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~504~^1.983^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~505~^1.855^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~506~^0.698^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~507~^0.289^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~508~^0.925^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~509~^0.987^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~510~^1.227^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~511~^2.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~512~^0.496^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~513~^1.463^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~514~^2.657^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~515~^3.714^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~516~^1.058^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~517~^0.826^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~518~^1.140^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~605~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~606~^0.309^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~611~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~612~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~613~^0.181^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~614~^0.083^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~615~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~617~^0.098^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~618~^0.070^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~619~^0.025^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~620~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~621~^0.106^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~626~^0.032^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~627~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~628~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~629~^0.070^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~631~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~645~^0.198^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~646~^0.318^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~652~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~654~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~672~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~687~^0.056^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~689~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15160~^~858~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15162~^~312~^0.389^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~315~^0.074^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~404~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~405~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~406~^0.180^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~410~^0.040^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~415~^0.010^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~502~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~503~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~504~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~505~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~508~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~509~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~510~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~511~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~512~^0.000^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~513~^0.005^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~514~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~515~^0.019^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~516~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~518~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15162~^~606~^0.002^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~613~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~617~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~620~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~621~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~629~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~631~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15162~^~645~^0.002^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15162~^~646~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~15163~^~312~^0.587^30^0.134^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~315~^0.110^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~404~^0.009^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~405~^0.910^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~406~^1.216^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~415~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15163~^~501~^0.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~502~^0.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~503~^0.707^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~504~^1.143^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~505~^1.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~506~^0.366^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~507~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~508~^0.582^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~509~^0.520^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~510~^0.709^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~511~^1.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~512~^0.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~513~^0.982^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~514~^1.567^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~515~^2.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~516~^1.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~517~^0.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~518~^0.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~606~^0.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~612~^0.012^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~613~^0.061^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~614~^0.044^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~617~^0.031^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~618~^0.002^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~619~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~620~^0.013^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~621~^0.066^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~626~^0.012^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~627~^0.002^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~628~^0.036^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~629~^0.039^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~630~^0.001^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~631~^0.006^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~645~^0.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15163~^~646~^0.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~312~^0.094^6^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~315~^3.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~404~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~405~^0.210^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~406~^1.600^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~415~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15164~^~501~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~502~^0.512^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~503~^0.518^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~504~^0.838^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~505~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~506~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~507~^0.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~508~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~509~^0.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~510~^0.520^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~511~^0.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~512~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~513~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~514~^1.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~515~^1.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~516~^0.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~517~^0.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~518~^0.533^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~606~^0.425^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15164~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15164~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15164~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15164~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15164~^~612~^0.059^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~613~^0.294^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~614~^0.068^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~617~^0.205^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~618~^0.018^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~619~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~620~^0.070^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~621~^0.253^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~626~^0.138^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~627~^0.035^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~628~^0.138^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~629~^0.188^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~630~^0.026^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~631~^0.022^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~645~^0.507^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15164~^~646~^0.606^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~312~^0.149^18^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~315~^6.800^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~404~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~405~^0.420^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~406~^3.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~410~^0.950^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~415~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15165~^~501~^0.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~502~^1.025^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~503~^1.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~504~^1.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~505~^1.779^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~506~^0.537^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~507~^0.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~508~^0.853^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~509~^0.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~510~^1.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~511~^1.737^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~512~^0.457^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~513~^1.440^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~514~^2.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~515~^3.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~516~^1.489^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~517~^0.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~518~^1.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~606~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~612~^0.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~613~^0.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~614~^0.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~617~^0.410^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~618~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~619~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~620~^0.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~621~^0.506^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~626~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~627~^0.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~628~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~629~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~630~^0.052^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~631~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~645~^1.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15165~^~646~^1.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~312~^0.435^14^0.077^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~315~^0.025^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~404~^0.030^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~405~^0.040^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~406~^2.100^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~415~^0.360^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15166~^~501~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~502~^0.642^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~503~^0.649^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~504~^1.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~505~^1.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~506~^0.336^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~508~^0.534^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~509~^0.477^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~510~^0.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~511~^1.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~512~^0.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~513~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~514~^1.438^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~515~^2.027^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~516~^0.933^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~517~^0.608^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~518~^0.668^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~606~^0.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~612~^0.025^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~613~^0.148^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~614~^0.050^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~617~^0.062^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~618~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15166~^~620~^0.039^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~621~^0.081^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~626~^0.066^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~627~^0.028^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~628~^0.024^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~629~^0.076^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~630~^0.010^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~631~^0.006^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~645~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15166~^~646~^0.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15167~^~312~^2.858^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~315~^0.296^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~404~^0.018^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~405~^0.090^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~406~^0.925^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~410~^0.223^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~415~^0.031^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~501~^0.069^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~502~^0.023^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~503~^0.229^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~504~^0.358^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~505~^0.381^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~506~^0.129^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~507~^0.055^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~508~^0.207^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~509~^0.202^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~510~^0.262^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~511~^0.372^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~512~^0.110^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~513~^0.271^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~514~^0.491^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~515~^0.675^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~516~^0.275^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~517~^0.225^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~518~^0.225^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~605~^0.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~606~^0.474^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~611~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~612~^0.050^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~613~^0.319^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~614~^0.066^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~617~^0.168^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~618~^0.041^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~619~^0.084^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~620~^0.022^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~621~^0.136^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~625~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~626~^0.052^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~627~^0.048^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~628~^0.028^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~629~^0.177^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~631~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~645~^0.253^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~646~^0.528^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~652~^0.011^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~653~^0.024^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~654~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~672~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~687~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~689~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15167~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15168~^~312~^4.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~315~^0.490^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15168~^~404~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15168~^~405~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~406~^1.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~410~^0.270^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15168~^~415~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~501~^0.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~502~^0.365^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~503~^0.396^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~504~^0.638^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~505~^0.582^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~506~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~507~^0.131^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~508~^0.352^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~509~^0.290^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~510~^0.409^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~511~^0.585^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~512~^0.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~513~^0.491^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~514~^0.782^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~515~^1.495^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~516~^0.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~517~^0.470^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~518~^0.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~606~^3.197^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~612~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~613~^1.910^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~614~^1.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~617~^4.440^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~618~^2.440^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~619~^0.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~620~^0.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~621~^0.218^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~626~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~627~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~628~^0.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~629~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~630~^0.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~631~^0.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~645~^4.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15168~^~646~^3.313^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15169~^~312~^5.707^3^1.680^~1~^~A~^^^1^3.250^8.920^2^-1.522^12.935^~2, 3~^~07/01/2010~ -~15169~^~315~^0.591^3^0.055^~1~^~A~^^^1^0.490^0.677^2^0.357^0.826^~2, 3~^~07/01/2010~ -~15169~^~404~^0.036^3^0.014^~1~^~A~^^^1^0.007^0.050^2^-0.025^0.097^~1, 2, 3~^~07/01/2010~ -~15169~^~405~^0.180^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.114^0.246^~2, 3~^~07/01/2010~ -~15169~^~406~^1.850^3^0.110^~1~^~A~^^^1^1.650^2.030^2^1.376^2.324^~2, 3~^~07/01/2010~ -~15169~^~410~^0.447^3^0.050^~1~^~A~^^^1^0.370^0.540^2^0.232^0.661^~2, 3~^~07/01/2010~ -~15169~^~415~^0.061^3^0.008^~1~^~A~^^^1^0.047^0.073^2^0.028^0.094^~2, 3~^~07/01/2010~ -~15169~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~502~^0.046^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~503~^0.459^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~504~^0.716^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~505~^0.762^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~506~^0.257^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~508~^0.413^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~509~^0.404^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~510~^0.523^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~511~^0.744^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~512~^0.220^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~513~^0.542^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~514~^0.982^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~515~^1.349^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~516~^0.551^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~517~^0.450^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~518~^0.450^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15169~^~605~^0.068^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~606~^0.948^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2010~ -~15169~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~15169~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~07/01/2010~ -~15169~^~612~^0.100^3^0.016^~1~^~A~^^^1^0.068^0.117^2^0.031^0.168^~2, 3~^~07/01/2010~ -~15169~^~613~^0.638^3^0.076^~1~^~A~^^^1^0.546^0.789^2^0.311^0.965^~2, 3~^~07/01/2010~ -~15169~^~614~^0.131^3^0.011^~1~^~A~^^^1^0.120^0.154^2^0.083^0.180^~2, 3~^~07/01/2010~ -~15169~^~615~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~07/01/2010~ -~15169~^~617~^0.337^3^0.049^~1~^~AS~^^^1^0.272^0.432^2^0.127^0.546^~2, 3~^~07/01/2010~ -~15169~^~618~^0.082^3^0.012^~1~^~AS~^^^1^0.062^0.104^2^0.030^0.134^~2, 3~^~07/01/2010~ -~15169~^~619~^0.168^3^0.024^~1~^~AS~^^^1^0.131^0.213^2^0.064^0.271^~2, 3~^~07/01/2010~ -~15169~^~620~^0.043^3^0.005^~1~^~A~^^^1^0.034^0.049^2^0.023^0.064^~2, 3~^~07/01/2010~ -~15169~^~621~^0.271^3^0.038^~1~^~A~^^^1^0.212^0.343^2^0.106^0.436^~2, 3~^~07/01/2010~ -~15169~^~624~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.006^0.009^~1, 2, 3~^~07/01/2010~ -~15169~^~625~^0.004^3^0.001^~1~^~A~^^^1^0.001^0.006^2^-0.003^0.010^~2, 3~^~07/01/2010~ -~15169~^~626~^0.103^3^0.016^~1~^~AS~^^^1^0.081^0.134^2^0.035^0.172^~2, 3~^~07/01/2010~ -~15169~^~627~^0.096^3^0.026^~1~^~A~^^^1^0.066^0.148^2^-0.015^0.208^~2, 3~^~07/01/2010~ -~15169~^~628~^0.055^3^0.018^~1~^~A~^^^1^0.020^0.081^2^-0.023^0.133^~2, 3~^~07/01/2010~ -~15169~^~629~^0.353^3^0.074^~1~^~A~^^^1^0.262^0.499^2^0.036^0.670^~2, 3~^~07/01/2010~ -~15169~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.003^~2, 3~^~07/01/2010~ -~15169~^~631~^0.020^3^0.004^~1~^~A~^^^1^0.015^0.028^2^0.003^0.037^~2, 3~^~07/01/2010~ -~15169~^~645~^0.506^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~646~^1.056^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~652~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.012^0.030^~2, 3~^~07/01/2010~ -~15169~^~653~^0.047^3^0.004^~1~^~A~^^^1^0.043^0.054^2^0.032^0.062^~2, 3~^~07/01/2010~ -~15169~^~654~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~07/01/2010~ -~15169~^~662~^0.017^3^0.002^~1~^~A~^^^1^0.014^0.019^2^0.010^0.024^~2, 3~^~07/01/2010~ -~15169~^~663~^0.041^3^0.005^~1~^~A~^^^1^0.035^0.052^2^0.018^0.064^~2, 3~^~07/01/2010~ -~15169~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~665~^0.010^3^0.003^~1~^~A~^^^1^0.006^0.016^2^-0.003^0.023^~2, 3~^~07/01/2010~ -~15169~^~670~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.005^0.016^~2, 3~^~07/01/2010~ -~15169~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2010~ -~15169~^~672~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.010^2^-0.001^0.014^~2, 3~^~07/01/2010~ -~15169~^~673~^0.086^3^0.015^~1~^~A~^^^1^0.063^0.115^2^0.021^0.152^~2, 3~^~07/01/2010~ -~15169~^~674~^0.295^3^0.044^~1~^~A~^^^1^0.235^0.380^2^0.108^0.483^~2, 3~^~07/01/2010~ -~15169~^~675~^0.061^3^0.013^~1~^~A~^^^1^0.037^0.083^2^0.004^0.119^~2, 3~^~07/01/2010~ -~15169~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15169~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~07/01/2010~ -~15169~^~687~^0.006^3^0.003^~1~^~A~^^^1^0.002^0.012^2^-0.007^0.019^~2, 3~^~07/01/2010~ -~15169~^~689~^0.011^3^0.002^~1~^~AS~^^^1^0.007^0.014^2^0.002^0.021^~2, 3~^~07/01/2010~ -~15169~^~693~^0.058^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15169~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15169~^~851~^0.163^3^0.023^~1~^~A~^^^1^0.128^0.207^2^0.064^0.263^~2, 3~^~07/01/2010~ -~15169~^~852~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~07/01/2010~ -~15169~^~853~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.010^2^0.000^0.014^~2, 3~^~07/01/2010~ -~15169~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~07/01/2010~ -~15170~^~312~^4.461^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~315~^0.450^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15170~^~404~^0.150^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15170~^~405~^0.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~406~^1.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~410~^0.180^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15170~^~415~^0.095^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~501~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~502~^0.304^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~503~^0.307^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~504~^0.497^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~505~^0.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~506~^0.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~507~^0.093^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~508~^0.253^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~509~^0.226^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~510~^0.308^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~511~^0.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~512~^0.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~513~^0.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~514~^0.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~515~^0.961^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~516~^0.442^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~517~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~518~^0.316^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~606~^0.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15170~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15170~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15170~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15170~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15170~^~612~^0.109^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~613~^0.435^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~614~^0.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~617~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~618~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~619~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~620~^0.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~621~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~626~^0.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~627~^0.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~628~^0.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~629~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~630~^0.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~631~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~645~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15170~^~646~^0.739^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~312~^1.576^112^0.075^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~315~^0.643^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~404~^0.067^3^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~405~^0.233^3^0.018^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~406~^2.010^3^0.110^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15171~^~415~^0.050^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15171~^~501~^0.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~502~^0.407^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~503~^0.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~504~^0.665^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~505~^0.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~506~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~507~^0.124^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~508~^0.339^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~509~^0.302^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~510~^0.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~511~^0.689^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~512~^0.181^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~513~^0.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~514~^0.912^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~515~^1.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~516~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~517~^0.386^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~518~^0.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~606~^0.510^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~612~^0.082^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~613~^0.357^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~614~^0.071^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~617~^0.191^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~618~^0.032^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~619~^0.032^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~620~^0.038^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~621~^0.250^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~626~^0.114^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~627~^0.084^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~15171~^~629~^0.438^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~630~^0.053^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~631~^0.020^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~645~^0.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15171~^~646~^0.894^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15172~^~312~^0.023^12^0.004^~1~^~A~^^^1^0.019^0.064^11^0.015^0.031^~1, 2, 3~^~07/01/2010~ -~15172~^~315~^0.017^12^0.001^~1~^~A~^^^1^0.011^0.026^11^0.014^0.020^~1, 2, 3~^~07/01/2010~ -~15172~^~404~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~406~^0.703^4^0.088^~1~^~A~^^^1^0.550^0.860^3^0.422^0.983^~2, 3~^~07/01/2010~ -~15172~^~410~^0.215^4^0.018^~1~^~A~^^^1^0.180^0.250^3^0.159^0.271^~2, 3~^~07/01/2010~ -~15172~^~415~^0.073^4^0.007^~1~^~A~^^^1^0.060^0.092^3^0.050^0.096^~2, 3~^~07/01/2010~ -~15172~^~501~^0.102^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~502~^0.369^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~503~^0.406^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~504~^0.720^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~505~^0.739^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~506~^0.286^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~508~^0.351^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~509~^0.296^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~510~^0.379^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~511~^0.646^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~512~^0.185^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~513~^0.536^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~514~^0.923^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~515~^1.404^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~516~^1.034^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~517~^0.286^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~518~^0.360^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15172~^~605~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~606~^0.128^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15172~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~609~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15172~^~611~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15172~^~612~^0.008^12^0.001^~1~^~A~^^^1^0.004^0.013^11^0.006^0.009^~2, 3~^~07/01/2010~ -~15172~^~613~^0.081^12^0.009^~1~^~A~^^^1^0.043^0.142^11^0.060^0.102^~2, 3~^~07/01/2010~ -~15172~^~614~^0.029^12^0.004^~1~^~A~^^^1^0.014^0.055^11^0.020^0.037^~2, 3~^~07/01/2010~ -~15172~^~615~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~617~^0.031^12^0.010^~1~^~AS~^^^1^0.010^0.140^11^0.009^0.054^~2, 3~^~07/01/2010~ -~15172~^~618~^0.008^12^0.003^~1~^~AS~^^^1^0.002^0.037^11^0.002^0.014^~2, 3~^~07/01/2010~ -~15172~^~619~^0.003^12^0.000^~1~^~AS~^^^1^0.001^0.006^11^0.002^0.004^~2, 3~^~07/01/2010~ -~15172~^~620~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.011^11^0.004^0.007^~2, 3~^~07/01/2010~ -~15172~^~621~^0.061^12^0.008^~1~^~A~^^^1^0.024^0.104^11^0.043^0.080^~2, 3~^~07/01/2010~ -~15172~^~624~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~625~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~626~^0.009^12^0.001^~1~^~AS~^^^1^0.000^0.016^11^0.006^0.012^~2, 3~^~07/01/2010~ -~15172~^~627~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.005^~2, 3~^~07/01/2010~ -~15172~^~628~^0.005^12^0.001^~1~^~A~^^^1^0.003^0.008^11^0.004^0.007^~2, 3~^~07/01/2010~ -~15172~^~629~^0.042^12^0.006^~1~^~A~^^^1^0.020^0.073^11^0.030^0.054^~2, 3~^~07/01/2010~ -~15172~^~630~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.000^0.001^~2, 3~^~07/01/2010~ -~15172~^~631~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~2, 3~^~07/01/2010~ -~15172~^~645~^0.048^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~646~^0.130^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~652~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~2, 3~^~07/01/2010~ -~15172~^~653~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.011^11^0.003^0.006^~1, 2, 3~^~07/01/2010~ -~15172~^~654~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15172~^~662~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~15172~^~663~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15172~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~665~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.010^11^-0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15172~^~670~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~672~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.001^0.002^~2, 3~^~07/01/2010~ -~15172~^~673~^0.006^12^0.001^~1~^~A~^^^1^0.000^0.012^11^0.004^0.008^~1, 2, 3~^~07/01/2010~ -~15172~^~674~^0.030^12^0.010^~1~^~A~^^^1^0.010^0.136^11^0.008^0.052^~2, 3~^~07/01/2010~ -~15172~^~675~^0.007^12^0.003^~1~^~A~^^^1^0.002^0.036^11^0.001^0.013^~2, 3~^~07/01/2010~ -~15172~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15172~^~687~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~689~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.005^11^0.001^0.003^~2, 3~^~07/01/2010~ -~15172~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15172~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15172~^~851~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.004^~2, 3~^~07/01/2010~ -~15172~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15172~^~853~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~15172~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15173~^~312~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~315~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15173~^~404~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~405~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~406~^1.505^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~410~^0.200^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15173~^~415~^0.140^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15173~^~501~^0.210^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~502~^0.768^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~503~^0.800^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~504~^1.295^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~505~^1.280^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~506~^0.407^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~507~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~508~^0.687^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~509~^0.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~510~^0.818^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~511~^1.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~512~^0.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~513~^1.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~514~^1.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~515~^2.765^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~516~^1.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~517~^0.850^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~518~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~606~^2.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~612~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~613~^1.546^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~614~^1.063^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~617~^4.456^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~618~^2.443^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~619~^0.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~620~^0.027^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~621~^0.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~626~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~627~^0.011^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~628~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~629~^0.086^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~631~^0.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~645~^4.498^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15173~^~646~^2.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~312~^0.032^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~315~^0.011^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~404~^0.010^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~405~^0.016^3^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~406~^0.310^3^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~410~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~415~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~501~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~502~^0.617^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~503~^0.597^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~504~^1.011^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~505~^1.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~506~^0.433^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~507~^0.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~508~^0.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~509~^0.515^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~510~^0.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~511~^0.848^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~512~^0.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~513~^0.750^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~514~^1.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~515~^2.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~516~^0.494^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~517~^0.476^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~518~^0.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15174~^~606~^0.080^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~645~^0.060^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15174~^~646~^0.210^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15175~^~312~^1.891^133^0.119^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~315~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~404~^0.020^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~405~^0.412^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~406~^2.175^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~410~^0.500^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15175~^~415~^0.056^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~501~^0.174^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~502~^0.670^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~503~^0.678^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~504~^1.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~505~^1.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~506~^0.351^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~507~^0.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~508~^0.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~509~^0.498^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~510~^0.680^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~511~^1.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~512~^0.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~513~^0.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~514~^1.503^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~515~^2.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~516~^0.974^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~517~^0.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~518~^0.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~606~^0.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15175~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15175~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15175~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15175~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15175~^~612~^0.036^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~613~^0.263^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~614~^0.058^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~617~^0.046^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~618~^0.002^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~619~^0.004^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~620~^0.009^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~621~^0.342^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~626~^0.008^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~627~^0.006^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~628~^0.044^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~629~^0.146^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~630~^0.007^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~631~^0.004^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~645~^0.107^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15175~^~646~^0.524^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~312~^2.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~315~^0.070^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15176~^~404~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~405~^0.458^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~406~^2.602^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~410~^0.510^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15176~^~415~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~501~^0.202^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~502~^0.763^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~503~^0.780^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~504~^1.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~505~^1.310^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~506~^0.403^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~507~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~508~^0.656^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~509~^0.576^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~510~^0.786^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~511~^1.290^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~512~^0.348^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~513~^1.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~514~^1.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~515~^2.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~516~^1.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~517~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~518~^0.812^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~606~^1.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~612~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~613~^1.131^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~614~^0.689^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~617~^2.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~618~^1.468^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~619~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~620~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~621~^0.380^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~626~^0.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~627~^0.007^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~628~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~629~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~630~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~631~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~645~^2.749^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15176~^~646~^2.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~312~^1.030^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~315~^0.447^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~404~^0.026^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~405~^0.107^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~406~^1.050^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~410~^0.208^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~415~^0.342^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~501~^0.309^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~502~^1.068^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~503~^0.828^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~504~^1.903^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~505~^1.465^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~506~^0.603^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~507~^0.187^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~508~^0.824^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~509~^0.759^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~510~^1.037^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~511~^2.468^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~512~^0.488^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~513~^1.556^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~514~^2.563^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~515~^3.669^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~516~^1.495^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~517~^1.182^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~518~^1.110^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~606~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~612~^0.002^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~613~^0.020^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~614~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~617~^0.006^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~618~^0.004^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~620~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~621~^0.006^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~626~^0.005^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15177~^~628~^0.008^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~629~^0.004^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~630~^0.009^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~631~^0.000^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~645~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15177~^~646~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~312~^2.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~315~^0.890^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15178~^~404~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~405~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~406~^1.995^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~410~^0.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15178~^~415~^0.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~501~^0.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~502~^2.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~503~^1.655^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~504~^3.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~505~^2.930^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~506~^1.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~507~^0.374^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~508~^1.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~509~^1.518^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~510~^2.075^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~511~^4.936^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~512~^0.977^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~513~^3.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~514~^5.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~515~^7.339^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~516~^2.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~517~^2.365^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~518~^2.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~606~^0.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~612~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~613~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~614~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~617~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~618~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~620~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~621~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~626~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~628~^0.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~629~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~630~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~645~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15178~^~646~^0.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~312~^0.230^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~315~^0.017^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~404~^0.023^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~405~^0.101^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~406~^4.720^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~410~^0.870^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~415~^0.278^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~501~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~502~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~503~^0.842^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~504~^1.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~505~^1.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~506~^0.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~508~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~509~^0.617^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~510~^0.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~511~^1.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~512~^0.538^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~513~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~514~^1.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~515~^2.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~516~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~517~^0.646^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~518~^0.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~606~^0.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~612~^0.183^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~613~^0.560^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~614~^0.186^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~617~^0.949^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~618~^0.472^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~621~^0.267^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~626~^0.305^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~628~^0.468^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~629~^0.183^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~630~^0.301^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~631~^0.073^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~645~^2.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15179~^~646~^0.995^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~312~^0.100^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~404~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~405~^0.160^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~406~^7.000^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~410~^0.560^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~415~^0.380^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15180~^~501~^0.240^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~502~^0.940^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~503~^0.988^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~504~^1.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~505~^1.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~506~^0.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~507~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~508~^0.837^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~509~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~510~^1.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~511~^1.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~512~^0.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~513~^1.296^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~514~^2.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~515~^3.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~516~^1.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~517~^0.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~518~^0.874^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~606~^1.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~612~^0.482^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~613~^0.816^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~614~^0.188^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~617~^1.159^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~618~^0.057^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~619~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~620~^0.073^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~621~^0.702^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~626~^0.237^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~627~^0.073^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~628~^0.278^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~629~^0.473^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~630~^0.245^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~631~^0.090^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~645~^1.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15180~^~646~^1.517^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~312~^0.102^25^0.004^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~315~^0.020^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15181~^~404~^0.023^36^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~405~^0.186^36^0.007^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~406~^6.536^25^0.333^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~410~^0.550^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15181~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15181~^~501~^0.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~502~^0.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~503~^0.912^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~504~^1.608^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~505~^1.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~506~^0.586^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~507~^0.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~508~^0.772^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~509~^0.668^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~510~^1.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~511~^1.184^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~512~^0.582^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~513~^1.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~514~^2.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~515~^2.953^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~516~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~517~^0.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~518~^0.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~606~^1.535^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~612~^0.048^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~613~^1.350^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~614~^0.135^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~617~^1.068^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~618~^0.058^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~619~^0.058^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~620~^0.077^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~621~^0.806^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~626~^0.466^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~627~^0.135^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~628~^0.272^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~629~^0.845^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~630~^0.018^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~631~^0.048^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15181~^~645~^1.825^0^^~1~^^^^^^^^^^^~07/01/1995~ -~15181~^~646~^2.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~312~^0.084^20^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~315~^0.030^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15182~^~404~^0.016^19^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~405~^0.193^19^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~406~^5.480^20^0.189^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~410~^0.550^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15182~^~415~^0.300^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15182~^~501~^0.229^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~502~^0.897^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~503~^0.943^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~504~^1.664^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~505~^1.880^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~506~^0.606^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~507~^0.219^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~508~^0.799^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~509~^0.691^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~510~^1.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~511~^1.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~512~^0.603^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~513~^1.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~514~^2.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~515~^3.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~516~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~517~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~518~^0.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~606~^1.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~612~^0.359^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~613~^1.079^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~614~^0.205^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~617~^1.451^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~618~^0.085^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~619~^0.090^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~620~^0.374^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~621~^0.664^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~626~^0.406^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~627~^0.106^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~628~^0.918^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~629~^0.492^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~630~^0.387^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~631~^0.077^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~645~^2.776^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15182~^~646~^2.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~312~^0.071^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~315~^0.015^8^0.002^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~404~^0.038^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~405~^0.120^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15183~^~406~^12.400^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15183~^~410~^0.370^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15183~^~415~^0.110^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~501~^0.326^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~502~^1.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~503~^1.342^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~504~^2.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~505~^2.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~506~^0.862^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~507~^0.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~508~^1.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~509~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~510~^1.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~511~^1.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~512~^0.858^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~513~^1.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~514~^2.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~515~^4.349^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~516~^1.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~517~^1.030^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~518~^1.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~606~^1.534^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~612~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~613~^1.415^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~614~^0.092^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~617~^2.839^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~618~^2.683^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~619~^0.074^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~621~^0.101^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~626~^0.083^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~628~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~629~^0.027^1^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~645~^2.949^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15183~^~646~^2.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15184~^~312~^0.051^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~315~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~404~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~405~^0.074^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~406~^13.280^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~410~^0.214^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~415~^0.350^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~501~^0.286^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~502~^1.118^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~503~^1.175^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~504~^2.073^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~505~^2.343^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~506~^0.755^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~508~^0.996^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~509~^0.861^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~510~^1.314^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~511~^1.527^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~512~^0.751^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~513~^1.543^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~514~^2.612^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~515~^3.808^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~516~^1.224^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~517~^0.902^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~518~^1.041^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~606~^0.234^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~607~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~608~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~609~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~610~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~611~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~612~^0.018^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~613~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~614~^0.060^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~617~^0.093^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~618~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~619~^0.000^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~620~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~621~^0.223^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~626~^0.026^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~627~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~628~^0.011^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~629~^0.047^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~630~^0.029^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~631~^0.009^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~645~^0.159^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15184~^~646~^0.337^0^^~1~^~A~^^^^^^^^^^~03/01/1997~ -~15185~^~312~^0.130^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~315~^0.016^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~404~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~405~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~406~^11.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~410~^0.370^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~415~^0.430^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~501~^0.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~502~^1.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~503~^1.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~504~^2.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~505~^2.437^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~506~^0.785^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~507~^0.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~508~^1.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~509~^0.896^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~510~^1.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~511~^1.588^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~512~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~513~^1.605^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~514~^2.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~515~^3.961^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~516~^1.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~517~^0.938^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~518~^1.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15185~^~606~^1.650^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~645~^2.480^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15185~^~646~^3.380^0^^~4~^^^^^^^^^^^~09/01/1987~ -~15186~^~312~^0.039^5^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~315~^0.019^5^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~404~^0.008^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~405~^0.044^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~406~^5.799^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~410~^0.124^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~415~^0.217^2^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~501~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~502~^1.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~503~^1.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~504~^1.920^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~505~^2.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~506~^0.699^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~507~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~508~^0.922^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~509~^0.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~510~^1.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~511~^1.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~512~^0.695^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~513~^1.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~514~^2.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~515~^3.526^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~516~^1.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~517~^0.835^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~518~^0.964^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~606~^0.792^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~612~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~613~^0.592^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~614~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~617~^0.518^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~618~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~620~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~621~^0.629^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~626~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~627~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~628~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~629~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~630~^0.044^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~631~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~645~^0.784^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15186~^~646~^1.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~15187~^~312~^0.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~315~^1.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~404~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~405~^0.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~406~^1.522^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~415~^0.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~501~^0.271^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~502~^1.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~503~^1.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~504~^1.965^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~505~^2.221^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~506~^0.716^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~507~^0.259^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~508~^0.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~509~^0.816^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~510~^1.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~511~^1.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~512~^0.712^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~513~^1.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~514~^2.476^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~515~^3.610^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~516~^1.161^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~517~^0.855^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~518~^0.987^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~606~^1.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~612~^0.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~613~^0.761^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~614~^0.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~617~^1.272^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~618~^0.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~619~^0.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~620~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~621~^0.458^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~626~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~627~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~628~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~629~^0.305^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~631~^0.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~645~^1.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15187~^~646~^1.360^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~312~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~404~^0.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~405~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~406~^2.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~501~^0.255^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~502~^0.997^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~503~^1.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~504~^1.848^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~505~^2.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~506~^0.673^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~507~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~508~^0.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~509~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~510~^1.171^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~511~^1.360^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~512~^0.669^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~513~^1.375^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~514~^2.328^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~515~^3.393^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~516~^1.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~517~^0.804^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~518~^0.927^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~606~^0.650^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~612~^0.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~613~^0.486^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~614~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~617~^0.574^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~618~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~619~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~621~^0.750^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~626~^0.194^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~628~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~629~^0.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~645~^0.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15188~^~646~^1.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~312~^0.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~315~^0.027^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~404~^0.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~405~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~406~^7.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~410~^0.955^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~415~^0.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~501~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~502~^1.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~503~^1.184^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~504~^2.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~505~^2.360^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~506~^0.760^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~507~^0.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~508~^1.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~509~^0.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~510~^1.324^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~511~^1.537^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~512~^0.756^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~513~^1.554^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~514~^2.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~515~^3.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~516~^1.233^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~517~^0.908^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~518~^1.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~606~^1.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~612~^0.229^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~613~^0.738^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~614~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~617~^0.876^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~618~^0.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~621~^0.665^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~626~^0.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~627~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~628~^0.436^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~629~^0.323^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~630~^0.630^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~631~^0.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~645~^2.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15189~^~646~^1.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~312~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~315~^0.897^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~404~^0.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~405~^0.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~406~^1.973^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~410~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~501~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~502~^1.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~503~^1.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~504~^2.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~505~^2.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~506~^0.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~507~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~508~^0.966^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~509~^0.836^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~510~^1.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~511~^1.481^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~512~^0.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~513~^1.497^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~514~^2.535^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~515~^3.696^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~516~^1.188^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~517~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~518~^1.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~606~^0.209^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~612~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~613~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~614~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~617~^0.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~618~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~620~^0.123^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~621~^0.123^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~626~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~628~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~629~^0.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~630~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~631~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~645~^0.170^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15190~^~646~^0.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~312~^0.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~404~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~405~^0.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~406~^5.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~501~^0.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~502~^0.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~503~^1.021^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~504~^1.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~505~^2.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~506~^0.656^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~507~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~508~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~509~^0.748^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~510~^1.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~511~^1.326^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~512~^0.652^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~513~^1.340^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~514~^2.269^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~515~^3.307^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~516~^1.063^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~517~^0.783^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15191~^~518~^0.904^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15192~^~312~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~315~^0.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~404~^0.038^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~405~^0.055^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~406~^1.343^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~410~^0.361^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~415~^0.136^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~501~^0.231^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~502~^0.807^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~503~^0.833^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~504~^1.486^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~505~^1.716^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~506~^0.512^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~507~^0.167^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~508~^0.730^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~509~^0.679^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~510~^0.897^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~511~^1.204^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~512~^0.397^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~513~^1.076^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~514~^1.870^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~515~^2.818^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~516~^0.871^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~517~^0.628^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~518~^0.794^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~605~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~606~^0.105^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~612~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~613~^0.070^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~614~^0.026^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~617~^0.051^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~618~^0.021^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~619~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~620~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~621~^0.118^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~626~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~628~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~629~^0.042^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~631~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~645~^0.089^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~646~^0.201^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~653~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~671~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~672~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~687~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~689~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~697~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15192~^~858~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15193~^~312~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~404~^0.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~405~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~406~^3.271^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~410~^0.322^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~415~^0.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~501~^0.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~502~^1.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~503~^1.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~504~^1.979^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~505~^2.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~506~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~507~^0.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~508~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~509~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~510~^1.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~511~^1.457^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~512~^0.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~513~^1.472^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~514~^2.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~515~^3.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~516~^1.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~517~^0.861^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15193~^~518~^0.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~312~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~404~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~405~^0.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~406~^7.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~501~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~502~^1.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~503~^1.093^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~504~^1.928^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~505~^2.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~506~^0.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~507~^0.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~508~^0.926^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~509~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~510~^1.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~511~^1.419^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~512~^0.698^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~513~^1.434^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~514~^2.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~515~^3.541^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~516~^1.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~517~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~518~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~606~^0.241^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~611~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~612~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~613~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~614~^0.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~617~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~618~^0.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~619~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~620~^0.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~621~^0.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~626~^0.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~627~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~628~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~629~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~630~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~631~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~645~^0.155^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15194~^~646~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~312~^0.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~315~^0.897^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~404~^0.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~405~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~406~^2.862^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~501~^0.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~502~^0.986^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~503~^1.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~504~^1.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~505~^2.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~506~^0.666^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~507~^0.241^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~508~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~509~^0.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~510~^1.159^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~511~^1.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~512~^0.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~513~^1.360^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~514~^2.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~515~^3.357^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~516~^1.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~517~^0.795^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~518~^0.917^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~606~^1.434^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~612~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~613~^1.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~614~^0.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~617~^1.537^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~618~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~619~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~620~^0.287^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~621~^0.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~626~^1.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~628~^0.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~629~^0.295^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~630~^0.153^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~631~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~645~^2.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15195~^~646~^1.479^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~312~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~315~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~404~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~405~^0.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~406~^1.923^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~410~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~415~^0.485^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~501~^0.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~502~^0.808^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~503~^0.849^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~504~^1.497^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~505~^1.692^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~506~^0.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~507~^0.197^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~508~^0.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~509~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~510~^0.949^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~511~^1.102^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~512~^0.542^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~513~^1.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~514~^1.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~515~^2.750^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~516~^0.884^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~517~^0.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~518~^0.752^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~606~^3.102^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~611~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~612~^0.967^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~613~^1.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~614~^0.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~617~^3.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~618~^0.158^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~619~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~620~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~621~^0.504^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~626~^2.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~627~^0.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~628~^2.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~629~^0.674^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~630~^2.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~631~^0.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~645~^10.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15196~^~646~^1.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~312~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~315~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~404~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~405~^0.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~406~^2.821^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~410~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~415~^0.519^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~501~^0.235^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~502~^0.921^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~503~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~504~^1.708^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~505~^1.930^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~506~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~507~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~508~^0.820^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~509~^0.709^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~510~^1.083^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~511~^1.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~512~^0.619^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~513~^1.271^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~514~^2.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~515~^3.137^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~516~^1.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~517~^0.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~518~^0.857^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~606~^4.174^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~612~^1.170^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~613~^2.593^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~614~^0.329^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~617~^3.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~618~^0.246^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~619~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~620~^0.123^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~621~^0.883^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~626~^1.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~627~^0.318^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~628~^1.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~629~^1.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~630~^1.912^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~631~^0.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~645~^8.807^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15197~^~646~^3.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~312~^0.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~315~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~404~^0.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~405~^0.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~406~^2.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~410~^0.369^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~415~^0.351^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~501~^0.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~502~^1.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~503~^1.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~504~^1.979^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~505~^2.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~506~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~507~^0.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~508~^0.950^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~509~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~510~^1.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~511~^1.457^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~512~^0.717^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~513~^1.472^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~514~^2.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~515~^3.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~516~^1.169^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~517~^0.861^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15198~^~518~^0.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~312~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~315~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~404~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~405~^0.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~406~^2.314^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~501~^0.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~502~^0.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~503~^1.043^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~504~^1.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~505~^2.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~506~^0.670^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~507~^0.243^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~508~^0.884^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~509~^0.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~510~^1.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~511~^1.355^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~512~^0.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~513~^1.369^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~514~^2.318^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~515~^3.380^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~516~^1.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~517~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~518~^0.924^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~606~^0.255^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~612~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~613~^0.151^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~614~^0.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~617~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~618~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~620~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~621~^0.130^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~626~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~628~^0.093^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~629~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~631~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~645~^0.447^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15199~^~646~^0.383^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~312~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~315~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~404~^0.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~405~^0.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~406~^10.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~410~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~415~^0.510^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~501~^0.291^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~502~^1.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~503~^1.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~504~^2.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~505~^2.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~506~^0.770^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~507~^0.279^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~508~^1.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~509~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~510~^1.340^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~511~^1.556^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~512~^0.765^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~513~^1.572^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~514~^2.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~515~^3.881^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~516~^1.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~517~^0.919^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~518~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~606~^0.465^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~612~^0.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~613~^0.310^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~614~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~617~^0.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~618~^0.051^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~621~^0.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~626~^0.151^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~627~^0.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~628~^0.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~629~^0.174^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~630~^0.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~631~^0.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~645~^0.979^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15200~^~646~^0.589^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~312~^0.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~404~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~405~^0.540^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~406~^10.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~410~^0.365^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~415~^0.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~501~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~502~^1.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~503~^1.186^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~504~^2.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~505~^2.363^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~506~^0.762^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~507~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~508~^1.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~509~^0.869^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~510~^1.326^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~511~^1.540^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~512~^0.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~513~^1.556^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~514~^2.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~515~^3.841^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~516~^1.235^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~517~^0.910^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~518~^1.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~606~^2.881^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15201~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15201~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15201~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~15201~^~611~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~612~^0.436^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~613~^1.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~614~^0.565^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~617~^1.703^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~618~^0.149^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~619~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~620~^0.104^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~621~^1.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~626~^0.603^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~627~^0.160^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~628~^0.417^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~629~^0.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~630~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~631~^0.158^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~645~^3.371^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15201~^~646~^2.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~312~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~315~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~404~^0.016^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~405~^0.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~406~^8.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~415~^0.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~501~^0.295^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~502~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~503~^1.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~504~^2.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~505~^2.417^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~506~^0.779^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~507~^0.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~508~^1.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~509~^0.889^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~510~^1.356^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~511~^1.575^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~512~^0.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~513~^1.592^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~514~^2.695^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~515~^3.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~516~^1.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~517~^0.931^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15202~^~518~^1.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~312~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~315~^0.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~404~^0.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~405~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~406~^2.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~410~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~415~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~501~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~502~^0.814^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~503~^0.855^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~504~^1.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~505~^1.705^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~506~^0.549^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~507~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~508~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~509~^0.627^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~510~^0.956^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~511~^1.111^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~512~^0.547^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~513~^1.123^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~514~^1.901^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~515~^2.771^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~516~^0.891^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~517~^0.656^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15203~^~518~^0.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~312~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~315~^1.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~404~^0.312^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~405~^0.195^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~406~^2.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~415~^0.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~501~^0.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~502~^1.076^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~503~^1.131^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~504~^1.994^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~505~^2.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~506~^0.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~507~^0.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~508~^0.958^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~509~^0.828^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~510~^1.264^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~511~^1.468^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~512~^0.722^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~513~^1.484^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~514~^2.513^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~515~^3.663^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~516~^1.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~517~^0.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~518~^1.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~606~^0.319^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~612~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~613~^0.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~614~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~617~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~618~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~619~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~620~^0.074^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~621~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~626~^0.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~629~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~631~^0.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~645~^0.377^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15204~^~646~^0.573^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~312~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~404~^0.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~405~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~406~^3.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~410~^0.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~415~^0.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~501~^0.279^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~502~^1.093^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~503~^1.148^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~504~^2.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~505~^2.289^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~506~^0.738^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~507~^0.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~508~^0.973^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~509~^0.841^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~510~^1.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~511~^1.491^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~512~^0.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~513~^1.507^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~514~^2.552^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~515~^3.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~516~^1.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~517~^0.881^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~518~^1.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~606~^0.170^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~612~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~613~^0.108^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~614~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~617~^0.086^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~618~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~620~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~621~^0.451^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~626~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~627~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~628~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~629~^0.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~630~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~631~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~645~^0.143^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15205~^~646~^0.622^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~312~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~404~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~405~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~406~^2.558^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~410~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~415~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~501~^0.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~502~^0.935^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~503~^0.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~504~^1.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~505~^1.959^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~506~^0.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~507~^0.229^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~508~^0.833^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~509~^0.720^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~510~^1.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~511~^1.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~512~^0.628^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~513~^1.290^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~514~^2.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~515~^3.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~516~^1.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~517~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~518~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~606~^0.410^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~609~^0.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~612~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~613~^0.226^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~614~^0.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~617~^0.317^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~618~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~626~^0.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~645~^0.422^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15206~^~646~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~312~^0.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~315~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~404~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~405~^0.949^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~406~^2.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~410~^1.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~415~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~501~^0.375^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~502~^1.305^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~503~^1.465^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~504~^2.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~505~^2.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~506~^0.710^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~507~^0.499^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~508~^1.401^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~509~^1.438^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~510~^1.676^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~511~^1.639^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~512~^0.778^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~513~^1.831^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~514~^2.294^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~515~^3.425^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~516~^0.833^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~517~^1.525^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~518~^1.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~606~^1.866^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~612~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~613~^1.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~614~^0.135^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~617~^1.455^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~618~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~619~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~620~^0.232^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~621~^1.747^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~626~^0.479^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~627~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~628~^0.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~629~^1.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~630~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~631~^0.105^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~645~^2.129^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15207~^~646~^3.404^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~312~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~404~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~405~^0.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~406~^5.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~501~^0.193^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~502~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~503~^0.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~504~^1.397^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~505~^1.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~506~^0.509^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~507~^0.184^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~508~^0.671^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~509~^0.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~510~^0.886^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~511~^1.029^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~512~^0.506^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~513~^1.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~514~^1.760^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~515~^2.566^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~516~^0.825^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~517~^0.608^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~518~^0.701^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~606~^4.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~611~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~612~^0.921^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~613~^2.631^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~614~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~617~^5.219^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~618~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~619~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~620~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~621~^0.920^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~626~^1.567^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~627~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~628~^1.820^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~629~^0.867^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~630~^1.670^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~631~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~645~^10.328^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15208~^~646~^2.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~312~^0.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~315~^0.021^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~404~^0.275^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~405~^0.487^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~406~^10.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~410~^1.920^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~415~^0.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~501~^0.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~502~^1.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~503~^1.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~504~^2.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~505~^2.336^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~506~^0.753^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~507~^0.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~508~^0.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~509~^0.859^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~510~^1.310^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~511~^1.522^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~512~^0.749^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~513~^1.538^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~514~^2.605^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~515~^3.797^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~516~^1.221^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~517~^0.899^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~518~^1.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~606~^1.257^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~612~^0.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~613~^0.810^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~614~^0.272^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~617~^1.732^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~618~^0.220^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~619~^0.378^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~620~^0.342^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~621~^1.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~626~^0.322^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~627~^0.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~628~^0.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~629~^0.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~630~^0.358^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~631~^0.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~645~^2.697^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15209~^~646~^3.256^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~312~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~404~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~405~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~406~^10.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~501~^0.288^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~502~^1.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~503~^1.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~504~^2.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~505~^2.362^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~506~^0.761^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~507~^0.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~508~^1.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~509~^0.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~510~^1.325^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~511~^1.539^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~512~^0.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~513~^1.555^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~514~^2.634^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~515~^3.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~516~^1.234^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~517~^0.909^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~518~^1.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~606~^3.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~612~^0.455^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~613~^2.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~614~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~617~^3.585^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~618~^0.136^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~619~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~620~^0.197^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~621~^0.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~626~^1.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~627~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~628~^0.580^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~629~^1.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~630~^0.444^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~631~^0.296^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~645~^5.742^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15210~^~646~^2.662^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~312~^0.071^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~404~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~405~^0.219^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~406~^8.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~501~^0.289^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~502~^1.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~503~^1.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~504~^2.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~505~^2.371^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~506~^0.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~507~^0.277^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~508~^1.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~509~^0.872^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~510~^1.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~511~^1.545^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~512~^0.760^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~513~^1.562^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~514~^2.644^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~515~^3.854^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~516~^1.239^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~517~^0.913^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~518~^1.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~606~^1.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~612~^0.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~613~^0.751^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~614~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~617~^1.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~618~^0.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~619~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~620~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~621~^0.505^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~626~^0.283^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~627~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~628~^0.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~629~^0.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~630~^0.410^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~631~^0.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~645~^1.976^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15211~^~646~^1.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15212~^~312~^0.075^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~404~^0.091^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~405~^0.126^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~406~^9.588^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~410~^1.235^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~415~^0.696^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~501~^0.265^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~502~^1.278^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~503~^1.145^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~504~^1.874^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~505~^2.110^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~506~^0.692^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~507~^0.190^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~508~^1.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~509~^0.890^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~510~^1.319^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~511~^1.543^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~512~^0.651^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~513~^1.568^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~514~^3.088^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~515~^3.482^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~516~^1.514^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~517~^1.039^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~518~^1.086^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~605~^0.041^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~606~^0.971^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~612~^0.243^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~613~^0.566^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~614~^0.122^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~615~^0.007^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~617~^0.756^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~618~^0.097^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~619~^0.056^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~620~^0.016^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~621~^0.399^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~624~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~625~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~626~^0.215^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~627~^0.087^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~628~^0.538^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~629~^0.218^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~630~^0.056^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~631~^0.057^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~645~^1.617^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~646~^0.973^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~652~^0.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~653~^0.012^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~671~^0.040^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~672~^0.021^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~687~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~689~^0.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~697~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15212~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15213~^~312~^0.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~315~^0.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~404~^0.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~405~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~406~^4.994^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~501~^0.271^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~502~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~503~^1.115^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~504~^1.967^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~505~^2.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~506~^0.716^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~507~^0.259^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~508~^0.945^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~509~^0.817^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~510~^1.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~511~^1.448^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~512~^0.713^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~513~^1.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~514~^2.479^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~515~^3.613^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~516~^1.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~517~^0.856^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15213~^~518~^0.988^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~312~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~404~^0.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~405~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~406~^2.923^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~501~^0.240^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~502~^0.941^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~503~^0.989^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~504~^1.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~505~^1.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~506~^0.635^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~507~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~508~^0.838^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~509~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~510~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~511~^1.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~512~^0.632^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~513~^1.298^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~514~^2.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~515~^3.204^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~516~^1.030^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~517~^0.759^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~518~^0.876^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~606~^1.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~612~^0.095^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~613~^0.820^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~614~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~617~^0.602^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~618~^0.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~619~^0.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~620~^0.247^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~621~^0.265^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~626~^0.464^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~627~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~628~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~629~^0.211^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~631~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~645~^1.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15214~^~646~^0.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~312~^0.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~315~^0.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~404~^0.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~405~^0.308^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~406~^10.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~501~^0.243^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~502~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~503~^1.000^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~504~^1.764^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~505~^1.993^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~506~^0.642^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~507~^0.233^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~508~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~509~^0.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~510~^1.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~511~^1.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~512~^0.639^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~513~^1.313^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~514~^2.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~515~^3.240^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~516~^1.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~517~^0.767^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15215~^~518~^0.886^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~312~^0.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~315~^0.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~404~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~405~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~406~^8.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~501~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~502~^1.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~503~^1.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~504~^1.929^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~505~^2.179^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~506~^0.702^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~507~^0.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~508~^0.926^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~509~^0.801^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~510~^1.223^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~511~^1.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~512~^0.699^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~513~^1.435^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~514~^2.430^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~515~^3.543^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~516~^1.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~517~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~518~^0.968^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~606~^1.859^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~612~^0.141^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~613~^1.321^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~614~^0.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~617~^1.116^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~618~^0.051^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~619~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~620~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~621~^0.526^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~626~^0.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~627~^0.205^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~629~^0.282^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~631~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~645~^1.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15216~^~646~^1.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~312~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~315~^0.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~404~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~405~^0.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~406~^1.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~415~^0.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~501~^0.241^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~502~^0.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~503~^0.990^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~504~^1.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~505~^1.973^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~506~^0.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~507~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~508~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~509~^0.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~510~^1.107^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~511~^1.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~512~^0.633^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~513~^1.300^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~514~^2.200^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~515~^3.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~516~^1.031^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~517~^0.760^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~518~^0.877^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~606~^0.579^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~612~^0.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~613~^0.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~614~^0.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~617~^0.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~618~^0.087^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~619~^0.067^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~620~^0.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~621~^0.371^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~626~^0.490^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~627~^0.041^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~628~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~629~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~631~^0.094^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~645~^0.905^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15217~^~646~^1.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~312~^0.385^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~315~^0.897^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~404~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~405~^0.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~406~^1.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~415~^0.138^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~501~^0.279^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~502~^1.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~503~^1.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~504~^2.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~505~^2.284^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~506~^0.736^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~507~^0.267^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~508~^0.971^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~509~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~510~^1.281^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~511~^1.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~512~^0.732^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~513~^1.504^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~514~^2.547^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~515~^3.713^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~516~^1.194^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~517~^0.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~518~^1.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~606~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~612~^0.015^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~613~^0.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~614~^0.036^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~617~^0.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~618~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~619~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~620~^0.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~621~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~626~^0.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~628~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~629~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~631~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~645~^0.150^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15218~^~646~^0.315^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~312~^0.241^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~315~^1.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~404~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~405~^0.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~406~^5.769^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~410~^2.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~415~^0.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~501~^0.298^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~502~^1.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~503~^1.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~504~^2.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~505~^2.446^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~506~^0.788^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~507~^0.285^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~508~^1.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~509~^0.899^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~510~^1.372^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~511~^1.593^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~512~^0.784^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~513~^1.610^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~514~^2.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~515~^3.975^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~516~^1.278^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~517~^0.942^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~518~^1.086^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~606~^1.474^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~612~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~613~^1.045^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~614~^0.190^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~617~^1.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~618~^0.224^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~619~^0.199^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~620~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~621~^0.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~626~^0.899^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~627~^0.082^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~628~^0.359^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~629~^0.259^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~630~^1.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~631~^0.235^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~645~^4.172^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15219~^~646~^1.922^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~312~^0.110^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~404~^0.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~405~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~406~^18.756^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~410~^0.485^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~415~^0.981^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~501~^0.316^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~502~^1.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~503~^1.300^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~504~^2.293^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~505~^2.590^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~506~^0.835^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~507~^0.302^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~508~^1.101^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~509~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~510~^1.453^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~511~^1.688^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~512~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~513~^1.706^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~514~^2.888^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~515~^4.210^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~516~^1.354^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~517~^0.997^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~518~^1.151^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~606~^0.420^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~612~^0.051^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~613~^0.298^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~614~^0.070^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~617~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~618~^0.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~620~^0.033^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~621~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~626~^0.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~627~^0.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~628~^0.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~629~^0.091^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~630~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~631~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~645~^0.243^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15220~^~646~^0.403^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15221~^~312~^0.043^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~404~^0.134^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~405~^0.137^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~406~^22.070^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~410~^0.334^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~415~^1.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15221~^~501~^0.313^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~502~^1.224^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~503~^1.287^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~504~^2.270^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~505~^2.565^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~506~^0.827^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~507~^0.300^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~508~^1.091^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~509~^0.943^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~510~^1.438^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~511~^1.671^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~512~^0.822^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~513~^1.689^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~514~^2.860^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~515~^4.168^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~516~^1.340^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~517~^0.988^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~518~^1.140^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~605~^0.020^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~606~^0.205^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~612~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~613~^0.127^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~614~^0.054^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~615~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~617~^0.099^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~618~^0.023^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~619~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~620~^0.018^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~621~^0.105^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~626~^0.014^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~628~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~629~^0.015^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~630~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~631~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~645~^0.138^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~646~^0.175^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~652~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~653~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~654~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~671~^0.010^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~672~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~687~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~689~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~697~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15221~^~858~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15222~^~312~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~315~^0.022^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~404~^0.076^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~405~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~406~^2.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~410~^0.658^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~415~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~501~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~502~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~503~^0.948^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~504~^1.672^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~505~^1.890^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~506~^0.609^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~507~^0.221^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~508~^0.803^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~509~^0.695^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~510~^1.060^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~511~^1.231^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~512~^0.606^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~513~^1.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~514~^2.107^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~515~^3.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~516~^0.988^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~517~^0.728^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15222~^~518~^0.840^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~312~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~315~^0.086^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~404~^0.171^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~405~^0.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~406~^3.846^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~410~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~415~^0.346^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~501~^0.274^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~502~^1.073^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~503~^1.128^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~504~^1.989^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~505~^2.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~506~^0.724^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~507~^0.262^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~508~^0.955^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~509~^0.826^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~510~^1.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~511~^1.465^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~512~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~513~^1.480^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~514~^2.506^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~515~^3.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~516~^1.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~517~^0.865^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~518~^0.999^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~606~^1.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~612~^0.140^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~613~^0.768^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~614~^0.254^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~617~^1.727^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~618~^0.349^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~619~^0.235^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~620~^0.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~621~^1.206^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~626~^0.667^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~627~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~628~^0.133^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~629~^0.406^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~630~^0.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~631~^0.209^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~645~^2.559^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15223~^~646~^2.755^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~312~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~404~^0.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~405~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~406~^2.598^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~410~^0.658^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~415~^0.462^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~501~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~502~^0.984^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~503~^1.034^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~504~^1.824^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~505~^2.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~506~^0.664^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~507~^0.241^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~508~^0.876^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~509~^0.757^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~510~^1.156^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~511~^1.343^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~512~^0.661^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~513~^1.357^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~514~^2.297^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~515~^3.349^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~516~^1.077^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~517~^0.793^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~518~^0.915^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~606~^0.468^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~612~^0.085^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~613~^0.324^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~614~^0.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~617~^0.661^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~618~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~619~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~620~^0.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~621~^0.405^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~626~^0.242^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~627~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~628~^0.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~629~^0.393^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~630~^0.023^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~631~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~645~^1.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15224~^~646~^1.083^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~312~^0.058^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~315~^0.019^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~404~^0.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~405~^0.051^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~406~^8.718^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~410~^0.681^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~415~^0.185^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~501~^0.332^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~502~^1.301^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~503~^1.367^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~504~^2.411^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~505~^2.725^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~506~^0.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~507~^0.318^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~508~^1.158^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~509~^1.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~510~^1.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~511~^1.775^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~512~^0.873^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~513~^1.794^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~514~^3.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~515~^4.429^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~516~^1.424^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~517~^1.049^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15225~^~518~^1.210^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~312~^0.734^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~315~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~404~^0.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~405~^0.203^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~406~^3.623^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~410~^0.404^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~415~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~501~^0.311^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~502~^0.900^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~503~^1.079^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~504~^1.768^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~505~^1.939^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~506~^0.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~507~^0.250^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~508~^0.939^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~509~^0.743^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~510~^1.046^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~511~^1.946^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~512~^0.454^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~513~^1.261^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~514~^2.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~515~^3.800^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~516~^1.343^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~517~^0.736^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~518~^0.875^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~606~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~611~^0.000^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~612~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~613~^0.114^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~614~^0.053^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~617~^0.119^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~620~^0.000^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~621~^0.113^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~626~^0.055^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~628~^0.014^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~629~^0.281^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~630~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~631~^0.013^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~645~^0.214^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15226~^~646~^0.407^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~312~^0.621^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~315~^0.037^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~404~^0.097^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~405~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~406~^2.885^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~410~^0.404^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~415~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~501~^0.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~502~^0.956^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~503~^1.146^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~504~^1.878^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~505~^2.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~506~^0.668^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~507~^0.266^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~508~^0.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~509~^0.789^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~510~^1.112^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~511~^2.068^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~512~^0.482^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~513~^1.340^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~514~^2.448^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~515~^4.038^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~516~^1.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~517~^0.782^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~518~^0.930^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~606~^0.183^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~612~^0.005^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~613~^0.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~614~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~617~^0.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~618~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~619~^0.003^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~620~^0.042^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~621~^0.145^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~626~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~627~^0.001^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~628~^0.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~629~^0.332^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~631~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~645~^0.328^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15227~^~646~^0.540^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~312~^0.415^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~315~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~404~^0.009^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~405~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~406~^4.898^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~410~^0.404^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~415~^0.173^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~501~^0.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~502~^1.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~503~^1.276^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~504~^2.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~505~^2.295^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~506~^0.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~507~^0.296^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~508~^1.111^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~509~^0.879^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~510~^1.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~511~^2.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~512~^0.537^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~513~^1.492^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~514~^2.726^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~515~^4.496^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~516~^1.589^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~517~^0.870^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~518~^1.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~606~^0.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~612~^0.008^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~613~^0.192^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~614~^0.103^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~617~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~618~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~619~^0.010^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~620~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~621~^0.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~626~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~627~^0.006^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~628~^0.035^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~629~^0.341^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~631~^0.044^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~645~^0.353^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15228~^~646~^0.756^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~312~^0.998^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~315~^0.209^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~404~^0.017^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~405~^1.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~406~^2.189^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~410~^0.900^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~415~^0.270^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~501~^0.364^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~502~^1.398^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~503~^1.414^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~504~^2.287^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~505~^2.427^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~506~^0.733^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~507~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~508~^1.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~509~^1.039^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~510~^1.419^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~511~^2.370^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~512~^0.624^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~513~^1.964^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~514~^3.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~515~^4.417^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~516~^2.032^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~517~^1.325^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~518~^1.455^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~606~^0.236^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~612~^0.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~613~^0.122^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~614~^0.088^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~617~^0.062^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~618~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~619~^0.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~620~^0.026^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~621~^0.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~626~^0.024^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~627~^0.004^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~628~^0.072^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~629~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~630~^0.002^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~631~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~645~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15229~^~646~^0.268^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~312~^0.739^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~315~^0.047^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~404~^0.057^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~405~^0.076^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~406~^3.780^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~410~^0.900^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~415~^0.648^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~501~^0.334^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~502~^1.283^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~503~^1.298^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~504~^2.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~505~^2.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~506~^0.673^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~507~^0.391^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~508~^1.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~509~^0.954^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~510~^1.303^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~511~^2.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~512~^0.573^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~513~^1.804^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~514~^2.877^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~515~^4.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~516~^1.866^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~517~^1.217^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~518~^1.336^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~606~^0.453^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~612~^0.050^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~613~^0.296^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~614~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~617~^0.124^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~618~^0.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~619~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~15230~^~620~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~621~^0.162^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~626~^0.132^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~627~^0.056^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~628~^0.048^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~629~^0.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~630~^0.020^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~631~^0.012^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~645~^0.324^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15230~^~646~^0.477^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~312~^2.679^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~315~^1.222^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~404~^0.127^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~405~^0.443^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~406~^3.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~410~^0.900^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~415~^0.090^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~501~^0.212^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~502~^0.813^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~503~^0.823^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~504~^1.331^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~505~^1.412^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~506~^0.426^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~507~^0.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~508~^0.677^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~509~^0.605^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~510~^0.826^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~511~^1.379^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~512~^0.363^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~513~^1.143^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~514~^1.823^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~515~^2.570^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~516~^1.182^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~517~^0.771^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~518~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~606~^1.020^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15231~^~607~^0.000^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~608~^0.000^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~609~^0.000^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~610~^0.000^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~611~^0.000^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~612~^0.164^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~613~^0.714^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~614~^0.142^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~617~^0.382^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~618~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~619~^0.064^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~620~^0.076^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~621~^0.500^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~626~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~627~^0.168^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~628~^0.060^0^^~4~^~BFZN~^~15170~^^^^^^^^^~02/01/2003~ -~15231~^~629~^0.876^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~630~^0.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~631~^0.040^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15231~^~645~^0.776^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~ -~15231~^~646~^1.788^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~15232~^~312~^0.075^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~315~^0.037^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~404~^0.045^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~405~^0.063^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~406~^1.820^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~410~^0.056^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~415~^0.067^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15232~^~501~^0.230^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~502~^1.030^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~503~^1.058^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~504~^1.797^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~505~^2.092^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~506~^0.728^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~508~^0.869^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~509~^0.799^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~510~^1.083^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~511~^1.448^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~512~^0.474^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~513~^1.265^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~514~^2.519^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~515~^3.706^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~516~^0.871^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~517~^0.729^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~518~^0.936^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15232~^~606~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15232~^~609~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~610~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~612~^0.005^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~613~^0.016^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~614~^0.005^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~615~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~617~^0.293^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~618~^0.057^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15232~^~620~^0.019^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~621~^0.025^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~625~^0.001^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~626~^0.055^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~627~^0.001^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~628~^0.066^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~629~^0.006^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~630~^0.025^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~631~^0.001^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~645~^0.439^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~646~^0.184^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15232~^~652~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~653~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~654~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~672~^0.069^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15232~^~851~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15233~^~312~^0.039^4^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~315~^0.027^4^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~404~^0.227^4^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~405~^0.067^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~406~^2.385^4^0.259^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~410~^0.910^4^0.161^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~415~^0.106^4^0.010^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~502~^0.810^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~503~^0.851^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~504~^1.502^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~505~^1.697^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~506~^0.547^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~507~^0.198^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~508~^0.721^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~509~^0.624^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~510~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~511~^1.106^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~512~^0.544^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~513~^1.117^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~514~^1.892^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~515~^2.758^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~516~^0.887^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~517~^0.653^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~518~^0.754^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~606~^0.744^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~612~^0.082^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~613~^0.483^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~614~^0.116^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~617~^0.772^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~618~^0.142^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~619~^0.096^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~620~^0.087^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~621~^0.137^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~626~^0.252^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~627~^0.012^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~628~^0.029^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~629~^0.100^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~645~^1.099^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15233~^~646~^0.636^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15234~^~312~^0.032^12^0.002^~1~^~A~^^^1^0.019^0.043^11^0.029^0.036^~1, 2, 3~^~07/01/2010~ -~15234~^~315~^0.015^12^0.001^~1~^~A~^^^1^0.011^0.019^11^0.013^0.017^~1, 2, 3~^~07/01/2010~ -~15234~^~404~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~07/01/2010~ -~15234~^~405~^0.083^4^0.018^~1~^~A~^^^1^0.050^0.130^3^0.025^0.140^~2, 3~^~07/01/2010~ -~15234~^~406~^2.105^4^0.078^~1~^~A~^^^1^1.910^2.280^3^1.857^2.353^~2, 3~^~07/01/2010~ -~15234~^~410~^0.670^4^0.023^~1~^~A~^^^1^0.630^0.730^3^0.598^0.742^~2, 3~^~07/01/2010~ -~15234~^~415~^0.154^4^0.009^~1~^~A~^^^1^0.129^0.173^3^0.124^0.184^~2, 3~^~07/01/2010~ -~15234~^~501~^0.182^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~502~^0.688^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~503~^0.678^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~504~^1.153^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~505~^1.386^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~506~^0.445^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~508~^0.607^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~509~^0.506^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~510~^0.738^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~511~^0.951^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~512~^0.334^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~513~^0.860^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~514~^1.487^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~515~^2.164^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~516~^0.769^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~517~^0.566^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~518~^0.577^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~15234~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~606~^1.310^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15234~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15234~^~611~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.003^~2, 3~^~07/01/2010~ -~15234~^~612~^0.056^12^0.006^~1~^~A~^^^1^0.027^0.087^11^0.043^0.068^~2, 3~^~07/01/2010~ -~15234~^~613~^0.939^12^0.066^~1~^~A~^^^1^0.464^1.251^11^0.793^1.085^~2, 3~^~07/01/2010~ -~15234~^~614~^0.284^12^0.028^~1~^~A~^^^1^0.131^0.508^11^0.222^0.346^~2, 3~^~07/01/2010~ -~15234~^~615~^0.008^12^0.001^~1~^~A~^^^1^0.003^0.013^11^0.006^0.010^~2, 3~^~07/01/2010~ -~15234~^~617~^2.330^12^0.186^~1~^~AS~^^^1^1.138^3.601^11^1.920^2.740^~2, 3~^~07/01/2010~ -~15234~^~618~^0.800^12^0.061^~1~^~AS~^^^1^0.356^1.098^11^0.667^0.933^~2, 3~^~07/01/2010~ -~15234~^~619~^0.072^12^0.007^~1~^~AS~^^^1^0.030^0.103^11^0.057^0.086^~2, 3~^~07/01/2010~ -~15234~^~620~^0.044^12^0.003^~1~^~A~^^^1^0.028^0.065^11^0.036^0.051^~2, 3~^~07/01/2010~ -~15234~^~621~^0.057^12^0.010^~1~^~A~^^^1^0.027^0.144^11^0.036^0.079^~2, 3~^~07/01/2010~ -~15234~^~624~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.003^0.004^~2, 3~^~07/01/2010~ -~15234~^~625~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~15234~^~626~^0.136^12^0.012^~1~^~AS~^^^1^0.067^0.198^11^0.111^0.162^~2, 3~^~07/01/2010~ -~15234~^~627~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.000^0.004^~1, 2, 3~^~07/01/2010~ -~15234~^~628~^0.073^12^0.005^~1~^~A~^^^1^0.033^0.100^11^0.061^0.084^~2, 3~^~07/01/2010~ -~15234~^~629~^0.017^12^0.004^~1~^~A~^^^1^0.003^0.050^11^0.008^0.025^~2, 3~^~07/01/2010~ -~15234~^~630~^0.003^12^0.001^~1~^~AS~^^^1^0.000^0.006^11^0.002^0.005^~2, 3~^~07/01/2010~ -~15234~^~631~^0.015^12^0.002^~1~^~A~^^^1^0.006^0.032^11^0.010^0.019^~2, 3~^~07/01/2010~ -~15234~^~645~^2.573^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~646~^1.119^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~652~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.014^11^0.004^0.008^~2, 3~^~07/01/2010~ -~15234~^~653~^0.009^12^0.001^~1~^~A~^^^1^0.004^0.014^11^0.007^0.010^~2, 3~^~07/01/2010~ -~15234~^~654~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~2, 3~^~07/01/2010~ -~15234~^~662~^0.006^12^0.001^~1~^~A~^^^1^0.002^0.013^11^0.003^0.008^~2, 3~^~07/01/2010~ -~15234~^~663~^0.022^12^0.002^~1~^~A~^^^1^0.016^0.037^11^0.018^0.026^~2, 3~^~07/01/2010~ -~15234~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15234~^~665~^0.024^12^0.004^~1~^~A~^^^1^0.008^0.048^11^0.014^0.034^~2, 3~^~07/01/2010~ -~15234~^~670~^0.021^12^0.005^~1~^~A~^^^1^0.005^0.069^11^0.011^0.032^~2, 3~^~07/01/2010~ -~15234~^~671~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.002^0.003^~2, 3~^~07/01/2010~ -~15234~^~672~^0.041^12^0.003^~1~^~A~^^^1^0.018^0.057^11^0.034^0.047^~2, 3~^~07/01/2010~ -~15234~^~673~^0.131^12^0.011^~1~^~A~^^^1^0.065^0.194^11^0.106^0.156^~2, 3~^~07/01/2010~ -~15234~^~674~^2.308^12^0.185^~1~^~A~^^^1^1.122^3.575^11^1.900^2.715^~2, 3~^~07/01/2010~ -~15234~^~675~^0.755^12^0.057^~1~^~A~^^^1^0.334^1.065^11^0.630^0.880^~2, 3~^~07/01/2010~ -~15234~^~676~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.002^0.005^~1, 2, 3~^~07/01/2010~ -~15234~^~685~^0.018^12^0.002^~1~^~A~^^^1^0.007^0.028^11^0.014^0.022^~2, 3~^~07/01/2010~ -~15234~^~687~^0.025^12^0.009^~1~^~A~^^^1^0.000^0.089^11^0.006^0.044^~1, 2, 3~^~07/01/2010~ -~15234~^~689~^0.060^12^0.004^~1~^~AS~^^^1^0.038^0.085^11^0.051^0.070^~2, 3~^~07/01/2010~ -~15234~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15234~^~697~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.001^0.005^~1, 2, 3~^~07/01/2010~ -~15234~^~851~^0.054^12^0.006^~1~^~A~^^^1^0.020^0.086^11^0.040^0.067^~2, 3~^~07/01/2010~ -~15234~^~852~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.007^11^0.003^0.005^~2, 3~^~07/01/2010~ -~15234~^~853~^0.056^12^0.004^~1~^~A~^^^1^0.034^0.078^11^0.047^0.065^~2, 3~^~07/01/2010~ -~15234~^~858~^0.007^12^0.001^~1~^~A~^^^1^0.005^0.012^11^0.005^0.008^~2, 3~^~07/01/2010~ -~15235~^~312~^0.039^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~315~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~404~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~405~^0.100^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~406~^2.548^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~410~^0.811^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~415~^0.177^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~501~^0.220^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~502~^0.833^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~503~^0.820^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~504~^1.396^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~505~^1.677^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~506~^0.539^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~507~^0.196^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~508~^0.735^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~509~^0.612^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~510~^0.894^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~511~^1.151^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~512~^0.404^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~513~^1.041^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~514~^1.800^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~515~^2.620^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~516~^0.931^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~517~^0.686^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~518~^0.698^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~605~^0.063^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~606~^1.586^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~611~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~612~^0.067^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~613~^1.137^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~614~^0.343^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~615~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~617~^2.820^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~618~^0.969^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~619~^0.087^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~620~^0.053^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~621~^0.069^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~624~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~626~^0.165^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~627~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~628~^0.088^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~629~^0.020^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~630~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~631~^0.018^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~645~^3.115^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~646~^1.354^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~652~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~653~^0.010^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~654~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~671~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~672~^0.049^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~687~^0.030^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~689~^0.073^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~697~^0.003^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15235~^~858~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15236~^~312~^0.045^4^0.004^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~315~^0.011^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~404~^0.207^4^0.017^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~405~^0.155^4^0.009^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~406~^8.672^4^0.080^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~410~^1.547^4^0.125^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~415~^0.636^4^0.064^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~502~^0.860^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~503~^0.968^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~504~^1.615^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~505~^1.870^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~506~^0.626^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~507~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~508~^0.845^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~509~^0.759^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~510~^1.107^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~511~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~512~^0.549^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~513~^1.271^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~514~^2.025^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~515~^2.830^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~516~^0.960^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~517~^0.721^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~518~^0.896^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~15236~^~521~^0.042^3^0.009^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~606~^3.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~607~^0.000^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~608~^0.000^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~ -~15236~^~609~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~610~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~611~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~612~^0.556^4^0.074^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~613~^1.877^4^0.178^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~614~^0.495^4^0.049^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~615~^0.022^4^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~617~^2.715^4^0.222^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~618~^0.900^4^0.029^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~619~^0.167^4^0.013^~1~^~AS~^^^1^^^^^^^~05/01/2008~ -~15236~^~620~^0.092^4^0.008^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~621~^1.104^4^0.125^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~624~^0.011^4^0.002^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~625~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~626~^0.791^4^0.073^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~627~^0.121^4^0.014^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~628~^0.265^4^0.039^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~629~^0.862^4^0.105^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~630~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~631~^0.393^4^0.054^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~645~^3.770^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~646~^3.886^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~15236~^~652~^0.046^4^0.007^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~653~^0.043^4^0.006^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~654~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~672~^0.062^4^0.003^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~685~^0.020^4^0.002^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~687~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~689~^0.018^4^0.002^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~697~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15236~^~851~^0.148^4^0.012^~1~^~A~^^^1^^^^^^^~05/01/2008~ -~15237~^~312~^0.049^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~315~^0.016^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~404~^0.340^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~405~^0.135^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~406~^8.045^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~410~^1.475^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~415~^0.647^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~501~^0.248^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~502~^0.969^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~503~^1.018^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~504~^1.796^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~505~^2.030^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~506~^0.654^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~507~^0.237^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~508~^0.863^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~509~^0.746^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~510~^1.139^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~511~^1.322^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~512~^0.651^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~513~^1.337^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~514~^2.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~515~^3.299^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~516~^1.061^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~517~^0.781^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~518~^0.902^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~606~^2.397^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15237~^~607~^0.000^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~608~^0.000^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~609~^0.000^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~610~^0.005^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~611~^0.013^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~612~^0.571^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~613~^1.493^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~614~^0.315^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~617~^2.046^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~618~^0.666^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~619~^0.113^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~620~^1.273^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~621~^1.457^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~626~^0.767^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~627~^0.184^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~628~^1.368^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~629~^0.690^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15237~^~630~^0.000^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~631~^0.170^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~ -~15237~^~645~^4.181^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15237~^~646~^4.553^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~15238~^~312~^0.048^3^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~315~^0.012^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~404~^0.090^3^0.006^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~405~^0.110^3^0.020^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~406~^6.813^3^0.706^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~410~^1.140^3^0.091^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~415~^0.660^3^0.061^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~501~^0.238^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~502~^0.932^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~503~^0.980^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~504~^1.729^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~505~^1.953^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~506~^0.629^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~507~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~508~^0.830^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~509~^0.718^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~510~^1.096^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~511~^1.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~512~^0.626^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~513~^1.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~514~^2.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~515~^3.175^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~516~^1.021^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~517~^0.752^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~518~^0.868^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~606~^1.816^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~612~^0.287^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~613~^1.090^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~614~^0.312^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~617~^1.724^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~618~^0.349^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~619~^0.075^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~620~^0.095^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~621~^0.821^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~626~^0.446^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~627~^0.112^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~628~^0.507^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~629~^0.385^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~630~^0.585^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~645~^3.330^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15238~^~646~^1.861^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~312~^0.089^3^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~315~^0.021^3^0.001^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~404~^0.100^3^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~405~^0.113^3^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~406~^7.393^3^0.504^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~410~^1.273^3^0.057^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~415~^0.568^3^0.100^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~501~^0.272^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~502~^1.065^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~503~^1.120^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~504~^1.975^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~505~^2.232^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~506~^0.719^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~507~^0.260^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~508~^0.949^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~509~^0.820^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~510~^1.252^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~511~^1.454^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~512~^0.715^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~513~^1.470^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~514~^2.488^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~515~^3.627^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~516~^1.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~517~^0.859^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~518~^0.991^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~606~^1.944^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~612~^0.308^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~613~^1.175^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~614~^0.330^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~617~^1.844^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~618~^0.373^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~619~^0.076^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~620~^0.094^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~621~^0.871^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~626~^0.482^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~627~^0.118^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~628~^0.551^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~629~^0.408^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~630~^0.665^3^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~645~^3.618^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15239~^~646~^1.963^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15240~^~312~^0.046^8^0.003^~1~^~A~^^^1^0.035^0.058^7^0.040^0.052^~2, 3~^~07/01/2010~ -~15240~^~315~^0.011^8^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~404~^0.120^3^0.035^~1~^~A~^^^1^0.060^0.180^2^-0.029^0.269^~2, 3~^~07/01/2010~ -~15240~^~405~^0.090^3^0.006^~1~^~A~^^^1^0.080^0.100^2^0.065^0.115^~2, 3~^~07/01/2010~ -~15240~^~406~^5.567^3^0.456^~1~^~A~^^^1^4.790^6.370^2^3.603^7.530^~2, 3~^~07/01/2010~ -~15240~^~410~^1.667^3^0.203^~1~^~A~^^^1^1.300^2.000^2^0.794^2.539^~2, 3~^~07/01/2010~ -~15240~^~415~^0.340^3^0.031^~1~^~A~^^^1^0.299^0.401^2^0.206^0.474^~2, 3~^~07/01/2010~ -~15240~^~501~^0.234^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~502~^0.915^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~503~^0.962^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~504~^1.696^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~505~^1.916^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~506~^0.618^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~507~^0.224^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~508~^0.815^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~509~^0.704^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~510~^1.075^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~511~^1.249^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~512~^0.614^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~513~^1.262^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~514~^2.137^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~515~^3.115^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~516~^1.002^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~517~^0.738^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~518~^0.851^0^^~1~^~A~^~15240~^^^^^^^^^~07/01/2010~ -~15240~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~606~^1.383^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~15240~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~15240~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2010~ -~15240~^~611~^0.004^8^0.001^~1~^~A~^^^1^0.002^0.008^7^0.002^0.006^~2, 3~^~07/01/2010~ -~15240~^~612~^0.182^8^0.050^~1~^~A~^^^1^0.041^0.365^7^0.064^0.299^~2, 3~^~07/01/2010~ -~15240~^~613~^0.928^8^0.187^~1~^~A~^^^1^0.316^1.922^7^0.485^1.371^~2, 3~^~07/01/2010~ -~15240~^~614~^0.229^8^0.044^~1~^~A~^^^1^0.081^0.481^7^0.125^0.333^~2, 3~^~07/01/2010~ -~15240~^~615~^0.008^8^0.002^~1~^~A~^^^1^0.002^0.022^7^0.002^0.013^~2, 3~^~07/01/2010~ -~15240~^~617~^1.374^8^0.203^~1~^~AS~^^^1^0.479^2.353^7^0.894^1.853^~2, 3~^~07/01/2010~ -~15240~^~618~^0.492^8^0.073^~1~^~AS~^^^1^0.193^0.792^7^0.320^0.664^~2, 3~^~07/01/2010~ -~15240~^~619~^0.067^8^0.012^~1~^~AS~^^^1^0.021^0.118^7^0.038^0.097^~2, 3~^~07/01/2010~ -~15240~^~620~^0.043^8^0.008^~1~^~A~^^^1^0.017^0.081^7^0.024^0.062^~2, 3~^~07/01/2010~ -~15240~^~621~^0.516^8^0.095^~1~^~A~^^^1^0.218^0.987^7^0.292^0.740^~2, 3~^~07/01/2010~ -~15240~^~624~^0.003^8^0.001^~1~^~A~^^^1^0.001^0.007^7^0.001^0.005^~2, 3~^~07/01/2010~ -~15240~^~625~^0.004^8^0.001^~1~^~A~^^^1^0.001^0.006^7^0.002^0.005^~2, 3~^~07/01/2010~ -~15240~^~626~^0.340^8^0.078^~1~^~AS~^^^1^0.091^0.725^7^0.156^0.524^~2, 3~^~07/01/2010~ -~15240~^~627~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^7^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~15240~^~628~^0.222^8^0.118^~1~^~A~^^^1^0.037^1.041^7^-0.058^0.501^~2, 3~^~07/01/2010~ -~15240~^~629~^0.217^8^0.058^~1~^~A~^^^1^0.078^0.555^7^0.081^0.353^~2, 3~^~07/01/2010~ -~15240~^~630~^0.018^8^0.012^~1~^~AS~^^^1^0.000^0.102^7^-0.012^0.047^~2, 3~^~07/01/2010~ -~15240~^~631~^0.091^8^0.024^~1~^~A~^^^1^0.030^0.225^7^0.035^0.147^~2, 3~^~07/01/2010~ -~15240~^~645~^1.979^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~646~^1.507^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~652~^0.014^8^0.003^~1~^~A~^^^1^0.004^0.028^7^0.006^0.022^~2, 3~^~07/01/2010~ -~15240~^~653~^0.013^8^0.003^~1~^~A~^^^1^0.004^0.027^7^0.006^0.019^~2, 3~^~07/01/2010~ -~15240~^~654~^0.002^8^0.001^~1~^~A~^^^1^0.001^0.005^7^0.001^0.003^~2, 3~^~07/01/2010~ -~15240~^~662~^0.006^8^0.001^~1~^~A~^^^1^0.002^0.011^7^0.003^0.008^~2, 3~^~07/01/2010~ -~15240~^~663~^0.021^8^0.003^~1~^~A~^^^1^0.009^0.032^7^0.015^0.027^~2, 3~^~07/01/2010~ -~15240~^~664~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~15240~^~665~^0.019^8^0.003^~1~^~A~^^^1^0.012^0.034^7^0.013^0.025^~2, 3~^~07/01/2010~ -~15240~^~670~^0.008^8^0.001^~1~^~A~^^^1^0.003^0.013^7^0.004^0.011^~2, 3~^~07/01/2010~ -~15240~^~671~^0.017^8^0.004^~1~^~A~^^^1^0.007^0.036^7^0.008^0.025^~2, 3~^~07/01/2010~ -~15240~^~672~^0.040^8^0.007^~1~^~A~^^^1^0.013^0.070^7^0.023^0.056^~2, 3~^~07/01/2010~ -~15240~^~673~^0.335^8^0.077^~1~^~A~^^^1^0.089^0.715^7^0.153^0.516^~2, 3~^~07/01/2010~ -~15240~^~674~^1.352^8^0.201^~1~^~A~^^^1^0.470^2.322^7^0.878^1.827^~2, 3~^~07/01/2010~ -~15240~^~675~^0.466^8^0.070^~1~^~A~^^^1^0.172^0.746^7^0.300^0.632^~2, 3~^~07/01/2010~ -~15240~^~676~^0.017^8^0.012^~1~^~A~^^^1^0.000^0.099^7^-0.012^0.046^~1, 2, 3~^~07/01/2010~ -~15240~^~685~^0.008^8^0.001^~1~^~A~^^^1^0.003^0.012^7^0.006^0.010^~2, 3~^~07/01/2010~ -~15240~^~687~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~15240~^~689~^0.027^8^0.004^~1~^~AS~^^^1^0.010^0.043^7^0.019^0.036^~2, 3~^~07/01/2010~ -~15240~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~15240~^~697~^0.005^8^0.001^~1~^~A~^^^1^0.002^0.008^7^0.004^0.007^~2, 3~^~07/01/2010~ -~15240~^~851~^0.059^8^0.012^~1~^~A~^^^1^0.018^0.108^7^0.032^0.087^~2, 3~^~07/01/2010~ -~15240~^~852~^0.007^8^0.002^~1~^~A~^^^1^0.002^0.016^7^0.003^0.011^~2, 3~^~07/01/2010~ -~15240~^~853~^0.020^8^0.003^~1~^~A~^^^1^0.008^0.035^7^0.014^0.027^~2, 3~^~07/01/2010~ -~15240~^~858~^0.007^8^0.001^~1~^~A~^^^1^0.003^0.013^7^0.004^0.010^~2, 3~^~07/01/2010~ -~15241~^~312~^0.055^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~315~^0.013^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~404~^0.143^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~405~^0.107^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~406~^6.646^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~410~^1.990^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~415~^0.386^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~501~^0.279^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~502~^1.092^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~503~^1.148^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~504~^2.025^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~505~^2.287^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~506~^0.738^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~507~^0.267^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~508~^0.973^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~509~^0.840^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~510~^1.283^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~511~^1.491^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~512~^0.733^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~513~^1.507^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~514~^2.551^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~515~^3.719^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~516~^1.196^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~517~^0.881^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~518~^1.016^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~605~^0.056^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~606~^1.651^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~611~^0.005^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~612~^0.217^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~613~^1.108^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~614~^0.274^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~615~^0.009^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~617~^1.640^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~618~^0.588^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~619~^0.080^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~620~^0.051^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~621~^0.616^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~624~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~625~^0.004^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~626~^0.406^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~627~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~628~^0.265^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~629~^0.259^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~630~^0.021^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~631~^0.109^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~645~^2.363^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~646~^1.799^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~652~^0.017^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~653~^0.015^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~654~^0.002^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~671~^0.020^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~672~^0.047^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~687~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~689~^0.033^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~697~^0.006^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15241~^~858~^0.008^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~ -~15242~^~312~^0.237^4^0.042^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~315~^0.146^4^0.031^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~404~^0.045^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~405~^0.032^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~406~^1.867^4^0.023^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~410~^0.570^4^0.046^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~415~^0.076^4^0.003^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~501~^0.207^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~502~^0.599^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~503~^0.718^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~504~^1.176^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~505~^1.290^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~506~^0.418^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~507~^0.166^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~508~^0.625^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~509~^0.494^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~510~^0.696^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~511~^1.295^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~512~^0.302^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~513~^0.839^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~514~^1.533^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~515~^2.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~516~^0.893^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~517~^0.489^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~518~^0.584^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~606~^0.163^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~612~^0.002^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~613~^0.103^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~614~^0.044^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~617~^0.134^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~618~^0.076^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~619~^0.025^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~620~^0.050^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~621~^0.027^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~626~^0.031^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~627~^0.005^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~628~^0.005^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~629~^0.117^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~630~^0.002^10^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~631~^0.005^10^0.000^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~645~^0.178^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15242~^~646~^0.313^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~312~^0.580^4^0.075^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~315~^0.217^4^0.035^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~404~^0.047^4^0.005^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~405~^0.080^4^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~406~^1.667^4^0.031^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~410~^0.512^4^0.030^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~415~^0.134^4^0.055^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~501~^0.244^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~502~^0.707^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~503~^0.847^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~504~^1.388^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~505~^1.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~506~^0.494^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~508~^0.737^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~509~^0.583^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~510~^0.822^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~511~^1.528^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~512~^0.356^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~513~^0.990^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~514~^1.809^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~515~^2.983^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~516~^1.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~517~^0.578^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~518~^0.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~606~^0.216^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~612~^0.006^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~613~^0.137^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~614~^0.050^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~617~^0.194^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~618~^0.156^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~619~^0.022^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~620~^0.062^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~621~^0.038^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~626~^0.037^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~627~^0.002^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~628~^0.007^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~629~^0.124^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~645~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15243~^~646~^0.413^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15244~^~312~^4.439^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~315~^0.459^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~404~^0.025^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~405~^0.112^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~406~^1.365^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~410~^0.347^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~415~^0.045^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~501~^0.107^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~502~^0.036^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~503~^0.356^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~504~^0.556^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~505~^0.592^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~506~^0.200^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~507~^0.086^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~508~^0.321^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~509~^0.314^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~510~^0.406^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~511~^0.577^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~512~^0.171^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~513~^0.421^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~514~^0.763^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~515~^1.048^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~516~^0.428^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~517~^0.349^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~518~^0.349^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~605~^0.053^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~606~^0.736^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~612~^0.077^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~613~^0.496^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~614~^0.102^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~615~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~617~^0.261^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~618~^0.064^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~619~^0.130^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~620~^0.034^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~621~^0.210^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~625~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~626~^0.080^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~627~^0.075^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~628~^0.043^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~629~^0.274^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~631~^0.016^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~645~^0.393^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~646~^0.820^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~652~^0.016^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~653~^0.037^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~654~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~671~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~672~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~687~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~689~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15244~^~858~^0.004^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~15245~^~312~^0.738^4^0.362^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~315~^0.394^4^0.113^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~404~^0.105^4^0.013^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~405~^0.065^4^0.021^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~406~^1.267^4^0.185^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~410~^0.157^4^0.047^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~415~^0.060^4^0.008^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~501~^0.059^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~502~^0.225^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~503~^0.227^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~504~^0.368^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~505~^0.390^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~506~^0.118^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~507~^0.069^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~508~^0.187^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~509~^0.167^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~510~^0.228^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~511~^0.381^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~512~^0.100^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~513~^0.316^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~514~^0.504^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~515~^0.711^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~516~^0.327^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~517~^0.213^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~518~^0.234^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~606~^0.443^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~612~^0.035^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~613~^0.314^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~614~^0.045^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~617~^0.074^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~618~^0.028^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~619~^0.044^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~620~^0.033^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~621~^0.203^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~626~^0.038^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~627~^0.092^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~628~^0.033^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~629~^0.188^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~645~^0.152^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15245~^~646~^0.591^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~312~^1.434^4^0.384^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~315~^0.425^4^0.118^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~404~^0.130^4^0.015^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~405~^0.055^4^0.022^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~406~^1.792^4^0.326^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~410~^0.195^4^0.038^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~415~^0.076^4^0.009^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~501~^0.078^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~502~^0.301^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~503~^0.305^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~504~^0.493^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~505~^0.523^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~506~^0.158^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~507~^0.092^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~508~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~509~^0.224^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~510~^0.306^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~511~^0.511^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~512~^0.134^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~513~^0.423^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~514~^0.675^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~515~^0.952^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~516~^0.438^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~517~^0.286^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~518~^0.314^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~606~^0.683^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~612~^0.053^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~613~^0.489^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~614~^0.070^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~617~^0.111^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~618~^0.043^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~619~^0.063^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~620~^0.044^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~621~^0.211^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~626~^0.059^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~627~^0.118^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~628~^0.049^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~629~^0.229^4^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~645~^0.230^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15246~^~646~^0.713^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~312~^0.071^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~315~^0.019^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~404~^0.075^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~405~^0.140^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~406~^7.950^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~410~^0.810^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~415~^0.568^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~501~^0.263^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~502~^1.028^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~503~^1.081^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~504~^1.906^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~505~^2.154^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~506~^0.694^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~507~^0.251^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~508~^0.915^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~509~^0.792^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~510~^1.208^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~511~^1.403^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~512~^0.690^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~513~^1.418^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~514~^2.401^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~515~^3.501^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~516~^1.126^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~517~^0.829^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~518~^0.957^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~606~^1.054^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~612~^0.150^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~613~^0.683^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~614~^0.158^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~617~^0.860^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~618~^0.056^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~619~^0.055^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~620~^0.022^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~621~^0.658^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~626~^0.272^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~627~^0.052^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~628~^0.275^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~629~^0.401^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~630~^0.153^2^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/1995~ -~15247~^~645~^1.581^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15247~^~646~^1.273^0^^~1~^^^^^^^^^^^~09/01/1987~ -~15250~^~312~^0.435^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~404~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~405~^0.080^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~406~^1.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~415~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~606~^0.370^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~607~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~608~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~609~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~610~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~611~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~612~^0.024^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~613~^0.239^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~614~^0.107^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~617~^0.072^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~618~^0.048^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~619~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~620~^0.107^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~621~^0.072^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~626~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~627~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~628~^0.095^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~629~^0.048^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~630~^0.107^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~631~^0.000^0^^~7~^^^^^^^^^^^~03/01/2009~ -~15250~^~645~^0.334^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15250~^~646~^0.274^0^^~4~^^^^^^^^^^^~03/01/2009~ -~15251~^~312~^0.077^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15251~^~315~^0.118^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15251~^~404~^0.207^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~405~^0.156^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~406~^4.527^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~410~^0.523^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~415~^0.222^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~606~^1.570^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~609~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~612~^0.066^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~613~^0.964^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~614~^0.357^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~617~^4.318^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~618~^2.372^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~619~^0.129^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~620~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~621~^0.441^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~626~^0.074^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~628~^0.209^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~629~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~630~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~645~^4.625^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15251~^~646~^3.028^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~312~^0.069^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~15252~^~315~^0.106^0^^~4~^~BFSN~^^^^^^^^^^~04/01/1996~ -~15252~^~404~^0.195^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15252~^~405~^0.140^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15252~^~406~^5.948^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~410~^0.520^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15252~^~415~^0.220^0^^~4~^~FLA~^^^^^^^^^^~04/01/1996~ -~15252~^~606~^1.497^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~609~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~612~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~613~^0.921^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~614~^0.339^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~617~^4.044^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~618~^2.237^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~619~^0.122^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~620~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~621~^0.413^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~626~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~628~^0.191^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~629~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~630~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~631~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~645~^4.330^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15252~^~646~^2.863^1^^~1~^~A~^^^^^^^^^^~04/01/1996~ -~15253~^~312~^0.061^12^0.001^~1~^~A~^^^1^0.051^0.068^11^0.058^0.064^~2, 3~^~05/01/2011~ -~15253~^~315~^0.024^12^0.004^~1~^~A~^^^1^0.017^0.059^11^0.016^0.032^~2, 3~^~05/01/2011~ -~15253~^~404~^0.020^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~405~^0.200^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~406~^6.000^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~415~^0.330^0^^~4~^^^^^^^^^^^~02/01/1996~ -~15253~^~501~^0.248^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~502~^1.110^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~503~^0.988^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~504~^1.603^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~505~^1.801^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~506~^0.609^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~507~^0.157^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~508~^0.877^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~509~^0.758^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~510~^1.142^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~511~^1.297^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~512~^0.559^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~513~^1.329^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~514~^2.401^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~515~^2.903^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~516~^1.262^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~517~^0.845^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~518~^0.926^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15253~^~605~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~606~^1.460^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~607~^0.005^12^0.000^~1~^~A~^^^1^0.002^0.007^11^0.004^0.006^~1, 2, 3~^~05/01/2011~ -~15253~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15253~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15253~^~610~^0.020^12^0.004^~1~^~A~^^^1^0.000^0.044^11^0.011^0.028^~1, 2, 3~^~05/01/2011~ -~15253~^~611~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15253~^~612~^0.238^12^0.012^~1~^~A~^^^1^0.155^0.296^11^0.212^0.264^~2, 3~^~05/01/2011~ -~15253~^~613~^0.978^12^0.050^~1~^~A~^^^1^0.725^1.266^11^0.867^1.088^~2, 3~^~05/01/2011~ -~15253~^~614~^0.157^12^0.007^~1~^~A~^^^1^0.115^0.214^11^0.141^0.174^~2, 3~^~05/01/2011~ -~15253~^~615~^0.010^12^0.000^~1~^~A~^^^1^0.007^0.012^11^0.009^0.011^~2, 3~^~05/01/2011~ -~15253~^~617~^1.333^12^0.072^~1~^~AS~^^^1^0.921^1.710^11^1.175^1.491^~2, 3~^~05/01/2011~ -~15253~^~618~^0.135^12^0.007^~1~^~AS~^^^1^0.094^0.182^11^0.118^0.151^~2, 3~^~05/01/2011~ -~15253~^~619~^0.061^12^0.003^~1~^~AS~^^^1^0.043^0.075^11^0.055^0.067^~2, 3~^~05/01/2011~ -~15253~^~620~^0.026^12^0.001^~1~^~A~^^^1^0.020^0.035^11^0.024^0.029^~2, 3~^~05/01/2011~ -~15253~^~621~^0.695^12^0.021^~1~^~A~^^^1^0.543^0.820^11^0.648^0.742^~2, 3~^~05/01/2011~ -~15253~^~624~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15253~^~625~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~05/01/2011~ -~15253~^~626~^0.323^12^0.020^~1~^~AS~^^^1^0.209^0.439^11^0.279^0.367^~2, 3~^~05/01/2011~ -~15253~^~627~^0.116^12^0.007^~1~^~A~^^^1^0.072^0.157^11^0.101^0.132^~2, 3~^~05/01/2011~ -~15253~^~628~^0.712^12^0.036^~1~^~A~^^^1^0.490^0.912^11^0.632^0.793^~2, 3~^~05/01/2011~ -~15253~^~629~^0.532^12^0.027^~1~^~A~^^^1^0.391^0.705^11^0.473^0.591^~2, 3~^~05/01/2011~ -~15253~^~630~^0.072^12^0.004^~1~^~AS~^^^1^0.051^0.094^11^0.064^0.080^~2, 3~^~05/01/2011~ -~15253~^~631~^0.134^12^0.005^~1~^~A~^^^1^0.103^0.158^11^0.122^0.146^~2, 3~^~05/01/2011~ -~15253~^~645~^2.471^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~646~^1.744^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~652~^0.028^12^0.001^~1~^~A~^^^1^0.018^0.037^11^0.025^0.031^~2, 3~^~05/01/2011~ -~15253~^~653~^0.016^12^0.001^~1~^~A~^^^1^0.012^0.020^11^0.014^0.018^~2, 3~^~05/01/2011~ -~15253~^~654~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~15253~^~662~^0.011^12^0.000^~1~^~A~^^^1^0.008^0.013^11^0.010^0.012^~2, 3~^~05/01/2011~ -~15253~^~663~^0.014^12^0.001^~1~^~A~^^^1^0.009^0.016^11^0.012^0.015^~2, 3~^~05/01/2011~ -~15253~^~664~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.002^0.004^~1, 2, 3~^~05/01/2011~ -~15253~^~665~^0.014^12^0.001^~1~^~A~^^^1^0.010^0.019^11^0.012^0.016^~2, 3~^~05/01/2011~ -~15253~^~670~^0.003^12^0.001^~1~^~A~^^^1^0.001^0.008^11^0.001^0.004^~1, 2, 3~^~05/01/2011~ -~15253~^~671~^0.010^12^0.002^~1~^~A~^^^1^0.000^0.018^11^0.006^0.015^~1, 2, 3~^~05/01/2011~ -~15253~^~672~^0.020^12^0.001^~1~^~A~^^^1^0.013^0.024^11^0.018^0.022^~2, 3~^~05/01/2011~ -~15253~^~673~^0.312^12^0.020^~1~^~A~^^^1^0.200^0.426^11^0.269^0.356^~2, 3~^~05/01/2011~ -~15253~^~674~^1.320^12^0.071^~1~^~A~^^^1^0.906^1.696^11^1.162^1.477^~2, 3~^~05/01/2011~ -~15253~^~675~^0.118^12^0.006^~1~^~A~^^^1^0.083^0.155^11^0.104^0.132^~2, 3~^~05/01/2011~ -~15253~^~676~^0.069^12^0.003^~1~^~A~^^^1^0.048^0.091^11^0.061^0.077^~2, 3~^~05/01/2011~ -~15253~^~685~^0.005^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.004^0.006^~1, 2, 3~^~05/01/2011~ -~15253~^~687~^0.017^12^0.001^~1~^~A~^^^1^0.011^0.021^11^0.015^0.019^~2, 3~^~05/01/2011~ -~15253~^~689~^0.017^12^0.001^~1~^~AS~^^^1^0.011^0.020^11^0.015^0.018^~2, 3~^~05/01/2011~ -~15253~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15253~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~05/01/2011~ -~15253~^~851~^0.056^12^0.003^~1~^~A~^^^1^0.039^0.074^11^0.050^0.063^~2, 3~^~05/01/2011~ -~15253~^~852~^0.009^12^0.001^~1~^~A~^^^1^0.005^0.012^11^0.008^0.010^~2, 3~^~05/01/2011~ -~15253~^~853~^0.008^12^0.000^~1~^~A~^^^1^0.006^0.010^11^0.007^0.008^~2, 3~^~05/01/2011~ -~15253~^~858~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15260~^~312~^0.082^17^0.002^~1~^~A~^^^1^0.070^0.099^16^0.077^0.086^~2, 3~^~05/01/2011~ -~15260~^~315~^0.031^17^0.001^~1~^~A~^^^1^0.024^0.039^16^0.029^0.033^~2, 3~^~05/01/2011~ -~15260~^~404~^0.027^15^0.001^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~405~^0.202^15^0.011^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~406~^7.409^15^0.170^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~410~^0.563^15^0.023^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~415~^0.105^15^0.003^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15260~^~501~^0.249^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~502~^1.200^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~503~^1.074^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~504~^1.759^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~505~^1.980^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~506~^0.649^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~508~^0.951^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~509~^0.835^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~510~^1.238^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~511~^1.449^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~512~^0.611^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~513~^1.472^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~514~^2.899^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~515~^3.268^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~516~^1.421^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~517~^0.976^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~518~^1.019^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15260~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~606~^0.895^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~607~^0.004^17^0.000^~1~^~A~^^^1^0.003^0.005^16^0.003^0.004^~2, 3~^~05/01/2011~ -~15260~^~608~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15260~^~609~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~15260~^~610~^0.008^17^0.003^~1~^~A~^^^1^0.000^0.030^16^0.003^0.014^~1, 2, 3~^~05/01/2011~ -~15260~^~611~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.004^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15260~^~612~^0.170^17^0.008^~1~^~A~^^^1^0.079^0.250^16^0.152^0.188^~2, 3~^~05/01/2011~ -~15260~^~613~^0.550^17^0.019^~1~^~A~^^^1^0.316^0.656^16^0.510^0.591^~2, 3~^~05/01/2011~ -~15260~^~614~^0.108^17^0.003^~1~^~A~^^^1^0.069^0.125^16^0.101^0.115^~2, 3~^~05/01/2011~ -~15260~^~615~^0.007^17^0.000^~1~^~A~^^^1^0.004^0.009^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15260~^~617~^0.564^17^0.021^~1~^~AS~^^^1^0.326^0.668^16^0.521^0.608^~2, 3~^~05/01/2011~ -~15260~^~618~^0.092^17^0.005^~1~^~AS~^^^1^0.054^0.143^16^0.082^0.102^~2, 3~^~05/01/2011~ -~15260~^~619~^0.052^17^0.003^~1~^~AS~^^^1^0.034^0.073^16^0.046^0.057^~2, 3~^~05/01/2011~ -~15260~^~620~^0.023^17^0.001^~1~^~A~^^^1^0.015^0.027^16^0.021^0.024^~2, 3~^~05/01/2011~ -~15260~^~621~^0.743^17^0.016^~1~^~A~^^^1^0.556^0.834^16^0.708^0.777^~2, 3~^~05/01/2011~ -~15260~^~624~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.006^16^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15260~^~625~^0.002^17^0.000^~1~^~A~^^^1^0.000^0.003^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15260~^~626~^0.144^17^0.006^~1~^~AS~^^^1^0.075^0.191^16^0.131^0.157^~2, 3~^~05/01/2011~ -~15260~^~627~^0.140^17^0.009^~1~^~A~^^^1^0.076^0.225^16^0.121^0.158^~2, 3~^~05/01/2011~ -~15260~^~628~^0.423^17^0.023^~1~^~A~^^^1^0.221^0.675^16^0.373^0.472^~2, 3~^~05/01/2011~ -~15260~^~629~^0.334^17^0.011^~1~^~A~^^^1^0.198^0.399^16^0.310^0.358^~2, 3~^~05/01/2011~ -~15260~^~630~^0.055^17^0.003^~1~^~AS~^^^1^0.033^0.088^16^0.048^0.062^~2, 3~^~05/01/2011~ -~15260~^~631~^0.089^17^0.002^~1~^~A~^^^1^0.065^0.101^16^0.084^0.094^~2, 3~^~05/01/2011~ -~15260~^~645~^1.211^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~646~^1.507^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~652~^0.024^17^0.002^~1~^~A~^^^1^0.007^0.038^16^0.020^0.028^~2, 3~^~05/01/2011~ -~15260~^~653~^0.016^17^0.001^~1~^~A~^^^1^0.009^0.022^16^0.015^0.018^~2, 3~^~02/01/2005~ -~15260~^~654~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15260~^~662~^0.007^17^0.000^~1~^~A~^^^1^0.004^0.009^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15260~^~663~^0.009^17^0.000^~1~^~A~^^^1^0.006^0.011^16^0.008^0.010^~2, 3~^~05/01/2011~ -~15260~^~664~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.003^16^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15260~^~665~^0.009^17^0.001^~1~^~A~^^^1^0.005^0.013^16^0.008^0.011^~2, 3~^~05/01/2011~ -~15260~^~670~^0.005^17^0.001^~1~^~A~^^^1^0.001^0.014^16^0.003^0.008^~1, 2, 3~^~05/01/2011~ -~15260~^~671~^0.012^17^0.004^~1~^~A~^^^1^0.000^0.044^16^0.003^0.021^~1, 2, 3~^~05/01/2011~ -~15260~^~672~^0.015^17^0.001^~1~^~A~^^^1^0.008^0.024^16^0.013^0.017^~2, 3~^~05/01/2011~ -~15260~^~673~^0.136^17^0.006^~1~^~A~^^^1^0.071^0.184^16^0.124^0.149^~2, 3~^~05/01/2011~ -~15260~^~674~^0.556^17^0.020^~1~^~A~^^^1^0.320^0.657^16^0.512^0.599^~2, 3~^~05/01/2011~ -~15260~^~675~^0.077^17^0.004^~1~^~A~^^^1^0.048^0.116^16^0.069^0.085^~2, 3~^~05/01/2011~ -~15260~^~676~^0.054^17^0.003^~1~^~A~^^^1^0.032^0.088^16^0.047^0.061^~2, 3~^~05/01/2011~ -~15260~^~685~^0.003^17^0.000^~1~^~A~^^^1^0.000^0.006^16^0.002^0.004^~1, 2, 3~^~05/01/2011~ -~15260~^~687~^0.011^17^0.001^~1~^~A~^^^1^0.005^0.016^16^0.009^0.012^~2, 3~^~05/01/2011~ -~15260~^~689~^0.013^17^0.001^~1~^~AS~^^^1^0.007^0.019^16^0.012^0.014^~2, 3~^~05/01/2011~ -~15260~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15260~^~697~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.001^16^0.000^0.000^~1, 2, 3~^~02/01/2005~ -~15260~^~851~^0.048^17^0.002^~1~^~A~^^^1^0.033^0.067^16^0.044^0.053^~2, 3~^~05/01/2011~ -~15260~^~852~^0.007^17^0.000^~1~^~A~^^^1^0.004^0.011^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15260~^~853~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.008^16^0.005^0.006^~2, 3~^~05/01/2011~ -~15260~^~858~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.004^16^0.003^0.003^~1, 2, 3~^~05/01/2011~ -~15261~^~312~^0.075^3^0.000^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~315~^0.037^3^0.000^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~404~^0.041^3^0.012^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~405~^0.063^3^0.005^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~406~^3.903^3^0.073^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~410~^0.487^3^0.014^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~415~^0.162^3^0.030^~1~^~A~^^^1^^^^^^^~02/01/2005~ -~15261~^~501~^0.210^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~502~^0.950^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~503~^0.930^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~504~^1.603^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~505~^1.810^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~506~^0.593^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~507~^0.220^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~508~^0.810^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~509~^0.680^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~510~^0.970^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~511~^1.277^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~512~^0.470^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~513~^1.220^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~514~^2.297^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~515~^3.213^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~516~^1.043^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~517~^0.757^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~518~^0.813^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~15261~^~606~^0.585^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15261~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~15261~^~609~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~610~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~611~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~612~^0.053^3^0.015^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~613~^0.424^3^0.092^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~614~^0.107^3^0.015^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~615~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~617~^0.379^3^0.075^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~618~^0.158^3^0.032^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~15261~^~620~^0.023^3^0.006^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~621~^0.086^3^0.023^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~624~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~625~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~626~^0.099^3^0.026^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~627~^0.003^3^0.003^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~628~^0.020^3^0.003^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~629~^0.005^3^0.007^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~630~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~631~^0.043^3^0.012^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~645~^0.498^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15261~^~646~^0.363^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~15261~^~652~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~653~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~654~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~672~^0.003^3^0.003^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~687~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~689~^0.010^3^0.003^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15261~^~697~^0.000^3^0.000^~1~^~A~^^^1^^^^^^^~03/01/2007~ -~15261~^~851~^0.033^3^0.009^~1~^~A~^^^1^^^^^^^~08/01/2010~ -~15262~^~312~^0.075^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~315~^0.037^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~404~^0.093^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~405~^0.073^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~406~^4.745^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~410~^0.664^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~415~^0.123^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~501~^0.265^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~502~^1.156^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~503~^1.220^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~504~^2.040^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~505~^2.315^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~506~^0.766^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~507~^0.265^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~508~^1.050^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~509~^0.870^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~510~^1.280^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~511~^1.590^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~512~^0.585^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~513~^1.491^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~514~^2.810^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~515~^3.920^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~516~^1.220^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~517~^0.953^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~518~^0.961^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~15262~^~606~^0.940^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~ -~15262~^~609~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~610~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~611~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~612~^0.085^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~613~^0.660^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~614~^0.190^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~615~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~617~^0.765^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~618~^0.285^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~619~^0.045^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~15262~^~620~^0.035^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~621~^0.130^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~625~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~626~^0.145^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~627~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~628~^0.045^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~629~^0.005^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~630~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~631~^0.060^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~645~^0.955^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~646~^0.600^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~15262~^~652~^0.005^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~653~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~654~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~672~^0.015^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~687~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~689~^0.025^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15262~^~851~^0.045^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~ -~15264~^~312~^0.070^12^0.003^~1~^~A~^^^1^0.052^0.089^11^0.063^0.076^~2, 3~^~05/01/2011~ -~15264~^~315~^0.011^12^0.001^~1~^~A~^^^1^0.011^0.018^11^0.010^0.013^~1, 2, 3~^~05/01/2011~ -~15264~^~404~^0.033^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~405~^0.214^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~406~^7.689^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~415~^0.120^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~ -~15264~^~501~^0.316^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~502~^1.417^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~503~^1.261^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~504~^2.045^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~505~^2.298^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~506~^0.777^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~508~^1.119^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~509~^0.967^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~510~^1.458^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~511~^1.655^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~512~^0.714^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~513~^1.696^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~514~^3.064^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~515~^3.704^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~516~^1.611^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~517~^1.079^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~518~^1.182^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15264~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~606~^1.211^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~607~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.004^0.005^~1, 2, 3~^~05/01/2011~ -~15264~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15264~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.002^~1, 2, 3~^~05/01/2011~ -~15264~^~610~^0.009^12^0.003^~1~^~A~^^^1^0.000^0.026^11^0.003^0.015^~1, 2, 3~^~05/01/2011~ -~15264~^~611~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.008^11^0.002^0.004^~1, 2, 3~^~05/01/2011~ -~15264~^~612~^0.179^12^0.007^~1~^~A~^^^1^0.148^0.218^11^0.164^0.194^~2, 3~^~05/01/2011~ -~15264~^~613~^0.831^12^0.028^~1~^~A~^^^1^0.641^0.982^11^0.769^0.892^~2, 3~^~05/01/2011~ -~15264~^~614~^0.139^12^0.004^~1~^~A~^^^1^0.121^0.171^11^0.130^0.148^~2, 3~^~05/01/2011~ -~15264~^~615~^0.008^12^0.000^~1~^~A~^^^1^0.006^0.010^11^0.007^0.009^~2, 3~^~05/01/2011~ -~15264~^~617~^1.040^12^0.047^~1~^~AS~^^^1^0.707^1.322^11^0.937^1.142^~2, 3~^~05/01/2011~ -~15264~^~618~^0.109^12^0.004^~1~^~AS~^^^1^0.092^0.132^11^0.101^0.117^~2, 3~^~05/01/2011~ -~15264~^~619~^0.046^12^0.002^~1~^~AS~^^^1^0.037^0.057^11^0.042^0.050^~2, 3~^~05/01/2011~ -~15264~^~620~^0.023^12^0.001^~1~^~A~^^^1^0.020^0.028^11^0.021^0.024^~2, 3~^~05/01/2011~ -~15264~^~621~^0.699^12^0.013^~1~^~A~^^^1^0.638^0.775^11^0.671^0.726^~2, 3~^~05/01/2011~ -~15264~^~624~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15264~^~625~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.003^~1, 2, 3~^~05/01/2011~ -~15264~^~626~^0.247^12^0.013^~1~^~AS~^^^1^0.159^0.324^11^0.220^0.275^~2, 3~^~05/01/2011~ -~15264~^~627~^0.078^12^0.008^~1~^~A~^^^1^0.000^0.101^11^0.062^0.095^~1, 2, 3~^~05/01/2011~ -~15264~^~628~^0.562^12^0.023^~1~^~A~^^^1^0.441^0.691^11^0.511^0.613^~2, 3~^~05/01/2011~ -~15264~^~629~^0.437^12^0.010^~1~^~A~^^^1^0.369^0.506^11^0.414^0.460^~2, 3~^~05/01/2011~ -~15264~^~630~^0.056^12^0.002^~1~^~AS~^^^1^0.047^0.070^11^0.051^0.060^~2, 3~^~05/01/2011~ -~15264~^~631~^0.113^12^0.004^~1~^~A~^^^1^0.090^0.134^11^0.104^0.121^~2, 3~^~05/01/2011~ -~15264~^~645~^1.925^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~646~^1.551^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~652~^0.022^12^0.001^~1~^~A~^^^1^0.019^0.028^11^0.020^0.024^~2, 3~^~05/01/2011~ -~15264~^~653~^0.012^12^0.001^~1~^~A~^^^1^0.009^0.020^11^0.011^0.014^~2, 3~^~05/01/2011~ -~15264~^~654~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~15264~^~662~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.011^11^0.008^0.009^~2, 3~^~05/01/2011~ -~15264~^~663~^0.011^12^0.000^~1~^~A~^^^1^0.008^0.013^11^0.010^0.012^~2, 3~^~05/01/2011~ -~15264~^~664~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15264~^~665~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.013^11^0.010^0.012^~2, 3~^~05/01/2011~ -~15264~^~670~^0.005^12^0.002^~1~^~A~^^^1^0.000^0.031^11^0.000^0.010^~1, 2, 3~^~05/01/2011~ -~15264~^~671~^0.005^12^0.002^~1~^~A~^^^1^0.000^0.013^11^0.001^0.008^~1, 2, 3~^~05/01/2011~ -~15264~^~672~^0.021^12^0.005^~1~^~A~^^^1^0.013^0.079^11^0.010^0.033^~2, 3~^~05/01/2011~ -~15264~^~673~^0.239^12^0.012^~1~^~A~^^^1^0.152^0.314^11^0.212^0.266^~2, 3~^~05/01/2011~ -~15264~^~674~^1.029^12^0.046^~1~^~A~^^^1^0.697^1.310^11^0.927^1.131^~2, 3~^~05/01/2011~ -~15264~^~675~^0.093^12^0.003^~1~^~A~^^^1^0.075^0.109^11^0.087^0.099^~2, 3~^~05/01/2011~ -~15264~^~676~^0.054^12^0.002^~1~^~A~^^^1^0.045^0.068^11^0.049^0.059^~2, 3~^~05/01/2011~ -~15264~^~685~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.002^0.005^~1, 2, 3~^~05/01/2011~ -~15264~^~687~^0.012^12^0.001^~1~^~A~^^^1^0.008^0.017^11^0.011^0.014^~2, 3~^~05/01/2011~ -~15264~^~689~^0.013^12^0.000^~1~^~AS~^^^1^0.010^0.016^11^0.012^0.014^~2, 3~^~05/01/2011~ -~15264~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15264~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15264~^~851~^0.043^12^0.001^~1~^~A~^^^1^0.037^0.051^11^0.039^0.046^~2, 3~^~05/01/2011~ -~15264~^~852~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.009^11^0.006^0.008^~2, 3~^~05/01/2011~ -~15264~^~853~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.007^11^0.005^0.006^~2, 3~^~05/01/2011~ -~15264~^~858~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.002^0.004^~1, 2, 3~^~05/01/2011~ -~15265~^~312~^0.077^17^0.002^~1~^~A~^^^1^0.067^0.090^16^0.074^0.081^~2, 3~^~05/01/2011~ -~15265~^~315~^0.011^17^0.000^~1~^~A~^^^1^0.011^0.015^16^0.011^0.012^~1, 2, 3~^~05/01/2011~ -~15265~^~404~^0.027^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~405~^0.203^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~406~^7.430^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~415~^0.105^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~ -~15265~^~501~^0.266^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~502~^1.280^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~503~^1.146^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~504~^1.877^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~505~^2.113^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~506~^0.693^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~507~^0.191^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~508~^1.014^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~509~^0.891^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~510~^1.321^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~511~^1.546^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~512~^0.652^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~513~^1.570^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~514~^3.092^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~515~^3.487^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~516~^1.516^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~517~^1.041^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~518~^1.087^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~15265~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~606~^0.749^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~607~^0.003^17^0.000^~1~^~A~^^^1^0.000^0.005^16^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15265~^~608~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15265~^~609~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.000^0.001^~1, 2, 3~^~05/01/2011~ -~15265~^~610~^0.007^17^0.003^~1~^~A~^^^1^0.000^0.030^16^0.001^0.012^~1, 2, 3~^~05/01/2011~ -~15265~^~611~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.003^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15265~^~612~^0.134^17^0.006^~1~^~A~^^^1^0.074^0.161^16^0.122^0.147^~2, 3~^~05/01/2011~ -~15265~^~613~^0.467^17^0.014^~1~^~A~^^^1^0.308^0.530^16^0.438^0.496^~2, 3~^~05/01/2011~ -~15265~^~614~^0.094^17^0.003^~1~^~A~^^^1^0.067^0.109^16^0.088^0.099^~2, 3~^~05/01/2011~ -~15265~^~615~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.007^16^0.005^0.006^~2, 3~^~05/01/2011~ -~15265~^~617~^0.455^17^0.014^~1~^~AS~^^^1^0.294^0.525^16^0.425^0.485^~2, 3~^~05/01/2011~ -~15265~^~618~^0.071^17^0.003^~1~^~AS~^^^1^0.043^0.091^16^0.065^0.078^~2, 3~^~05/01/2011~ -~15265~^~619~^0.042^17^0.002^~1~^~AS~^^^1^0.029^0.057^16^0.038^0.046^~2, 3~^~05/01/2011~ -~15265~^~620~^0.019^17^0.000^~1~^~A~^^^1^0.015^0.022^16^0.018^0.020^~2, 3~^~05/01/2011~ -~15265~^~621~^0.681^17^0.012^~1~^~A~^^^1^0.543^0.771^16^0.656^0.707^~2, 3~^~05/01/2011~ -~15265~^~624~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.004^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15265~^~625~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.003^16^0.002^0.002^~1, 2, 3~^~05/01/2011~ -~15265~^~626~^0.117^17^0.005^~1~^~AS~^^^1^0.069^0.147^16^0.107^0.126^~2, 3~^~05/01/2011~ -~15265~^~627~^0.108^17^0.006^~1~^~A~^^^1^0.056^0.146^16^0.095^0.121^~2, 3~^~05/01/2011~ -~15265~^~628~^0.338^17^0.018^~1~^~A~^^^1^0.177^0.455^16^0.300^0.376^~2, 3~^~05/01/2011~ -~15265~^~629~^0.274^17^0.009^~1~^~A~^^^1^0.184^0.334^16^0.254^0.294^~2, 3~^~05/01/2011~ -~15265~^~630~^0.043^17^0.003^~1~^~AS~^^^1^0.023^0.065^16^0.037^0.048^~2, 3~^~05/01/2011~ -~15265~^~631~^0.074^17^0.002^~1~^~A~^^^1^0.060^0.091^16^0.070^0.079^~2, 3~^~05/01/2011~ -~15265~^~645~^0.971^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~646~^1.298^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~652~^0.019^17^0.001^~1~^~A~^^^1^0.011^0.024^16^0.018^0.021^~2, 3~^~05/01/2011~ -~15265~^~653~^0.013^17^0.000^~1~^~A~^^^1^0.008^0.015^16^0.012^0.014^~2, 3~^~05/01/2011~ -~15265~^~654~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^16^0.001^0.001^~1, 2, 3~^~05/01/2011~ -~15265~^~662~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.008^16^0.005^0.006^~2, 3~^~05/01/2011~ -~15265~^~663~^0.008^17^0.000^~1~^~A~^^^1^0.004^0.010^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15265~^~664~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.003^16^0.001^0.002^~1, 2, 3~^~05/01/2011~ -~15265~^~665~^0.007^17^0.000^~1~^~A~^^^1^0.005^0.012^16^0.007^0.008^~2, 3~^~05/01/2011~ -~15265~^~670~^0.004^17^0.001^~1~^~A~^^^1^0.000^0.008^16^0.002^0.005^~1, 2, 3~^~05/01/2011~ -~15265~^~671~^0.008^17^0.003^~1~^~A~^^^1^0.000^0.041^16^0.001^0.016^~1, 2, 3~^~05/01/2011~ -~15265~^~672~^0.012^17^0.001^~1~^~A~^^^1^0.007^0.016^16^0.011^0.013^~2, 3~^~05/01/2011~ -~15265~^~673~^0.111^17^0.004^~1~^~A~^^^1^0.066^0.141^16^0.102^0.120^~2, 3~^~05/01/2011~ -~15265~^~674~^0.447^17^0.014^~1~^~A~^^^1^0.290^0.515^16^0.418^0.477^~2, 3~^~05/01/2011~ -~15265~^~675~^0.060^17^0.002^~1~^~A~^^^1^0.038^0.073^16^0.055^0.065^~2, 3~^~05/01/2011~ -~15265~^~676~^0.042^17^0.003^~1~^~A~^^^1^0.023^0.063^16^0.036^0.047^~2, 3~^~05/01/2011~ -~15265~^~685~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.005^16^0.003^0.004^~1, 2, 3~^~05/01/2011~ -~15265~^~687~^0.008^17^0.000^~1~^~A~^^^1^0.005^0.009^16^0.007^0.009^~2, 3~^~05/01/2011~ -~15265~^~689~^0.011^17^0.000^~1~^~AS~^^^1^0.006^0.014^16^0.010^0.011^~2, 3~^~05/01/2011~ -~15265~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~15265~^~697~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~15265~^~851~^0.039^17^0.002^~1~^~A~^^^1^0.027^0.053^16^0.035^0.043^~2, 3~^~05/01/2011~ -~15265~^~852~^0.006^17^0.000^~1~^~A~^^^1^0.003^0.008^16^0.005^0.006^~2, 3~^~05/01/2011~ -~15265~^~853~^0.005^17^0.000^~1~^~A~^^^1^0.003^0.006^16^0.004^0.005^~2, 3~^~05/01/2011~ -~15265~^~858~^0.003^17^0.000^~1~^~A~^^^1^0.002^0.004^16^0.002^0.003^~1, 2, 3~^~05/01/2011~ -~15266~^~312~^0.041^3^^~1~^~A~^^^1^0.034^0.050^^^^~2~^~08/01/2012~ -~15266~^~315~^0.011^3^^~1~^~A~^^^1^0.011^0.011^^^^~1, 2~^~08/01/2012~ -~15266~^~605~^0.003^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~606~^0.148^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~612~^0.009^3^^~1~^~A~^~~^~~^1^0.008^0.010^^^^~2~^~02/01/2017~ -~15266~^~613~^0.117^3^^~1~^~A~^~~^~~^1^0.107^0.126^^^^~2~^~02/01/2017~ -~15266~^~614~^0.021^3^^~1~^~A~^~~^~~^1^0.020^0.024^^^^~2~^~02/01/2017~ -~15266~^~617~^0.056^3^^~1~^~AS~^~~^~~^1^0.048^0.062^^^^~2~^~02/01/2017~ -~15266~^~618~^0.009^3^^~1~^~AS~^~~^~~^1^0.003^0.020^^^^~2~^~02/01/2017~ -~15266~^~619~^0.000^3^^~1~^~AS~^~~^~~^1^0.000^0.000^^^^~2~^~08/01/2012~ -~15266~^~620~^0.004^3^^~1~^~A~^~~^~~^1^0.003^0.005^^^^~2~^~02/01/2017~ -~15266~^~621~^0.160^3^^~1~^~A~^~~^~~^1^0.141^0.189^^^^~2~^~02/01/2017~ -~15266~^~626~^0.008^3^^~1~^~AS~^~~^~~^1^0.007^0.009^^^^~2~^~02/01/2017~ -~15266~^~627~^0.002^3^^~1~^~A~^~~^~~^1^0.001^0.003^^^^~1, 2~^~02/01/2017~ -~15266~^~628~^0.027^3^^~1~^~A~^~~^~~^1^0.021^0.031^^^^~2~^~02/01/2017~ -~15266~^~629~^0.075^3^^~1~^~A~^~~^~~^1^0.071^0.078^^^^~2~^~02/01/2017~ -~15266~^~630~^0.002^3^^~1~^~AS~^~~^~~^1^0.002^0.002^^^^~2~^~02/01/2017~ -~15266~^~631~^0.009^3^^~1~^~A~^~~^~~^1^0.008^0.009^^^^~2~^~02/01/2017~ -~15266~^~645~^0.095^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~646~^0.261^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~652~^0.001^3^^~1~^~A~^~~^~~^1^0.000^0.001^^^^~1, 2~^~02/01/2017~ -~15266~^~663~^0.003^3^^~1~^~A~^~~^~~^1^0.002^0.004^^^^~1, 2~^~02/01/2017~ -~15266~^~671~^0.002^3^^~1~^~A~^~~^~~^1^0.000^0.006^^^^~1, 2~^~02/01/2017~ -~15266~^~673~^0.008^3^^~1~^~A~^~~^~~^1^0.007^0.009^^^^~2~^~02/01/2017~ -~15266~^~674~^0.053^3^^~1~^~A~^~~^~~^1^0.045^0.060^^^^~2~^~02/01/2017~ -~15266~^~675~^0.009^3^^~1~^~A~^~~^~~^1^0.003^0.020^^^^~2~^~02/01/2017~ -~15266~^~676~^0.002^3^^~1~^~A~^~~^~~^1^0.002^0.002^^^^~1, 2~^~02/01/2017~ -~15266~^~689~^0.002^3^^~1~^~AS~^~~^~~^1^0.000^0.003^^^^~2~^~02/01/2017~ -~15266~^~693~^0.003^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~ -~15266~^~853~^0.002^3^^~1~^~A~^~~^~~^1^0.000^0.003^^^^~1, 2~^~02/01/2017~ -~15267~^~312~^0.043^3^^~1~^~A~^^^1^0.034^0.049^^^^~2~^~08/01/2012~ -~15267~^~315~^0.011^3^^~1~^~A~^^^1^0.011^0.011^^^^~1, 2~^~08/01/2012~ -~15267~^~605~^0.003^0^^~4~^~NC~^~~^~~^1^^^^^^~~^~10/01/2017~ -~15267~^~606~^0.202^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~ -~15267~^~612~^0.113^3^^~1~^~A~^~~^~~^1^0.007^0.014^^^^~~^~10/01/2017~ -~15267~^~613~^0.157^3^^~1~^~A~^~~^~~^1^0.142^0.168^^^^~2~^~10/01/2017~ -~15267~^~614~^0.031^3^^~1~^~A~^~~^~~^1^0.030^0.035^^^^~2~^~10/01/2017~ -~15267~^~617~^0.083^3^^~1~^~A~^~~^~~^1^0.072^0.100^^^^~2~^~10/01/2017~ -~15267~^~618~^0.006^3^^~1~^~AS~^~~^~~^^0.005^0.007^^^^~~^~10/01/2017~ -~15267~^~620~^0.006^3^^~1~^~A~^~~^~~^1^0.006^0.006^^^^~2~^~10/01/2017~ -~15267~^~621~^0.227^3^^~1~^~A~^~~^~~^1^0.211^0.240^^^^~2~^~10/01/2017~ -~15267~^~626~^0.011^3^^~1~^~AS~^~~^~~^1^0.007^0.014^^^^~2~^~10/01/2017~ -~15267~^~627~^0.003^3^^~1~^~A~^~~^~~^1^0.003^0.003^^^^~1, 2~^~10/01/2017~ -~15267~^~628~^0.035^3^^~1~^~A~^~~^~~^1^0.029^0.047^^^^~2~^~10/01/2017~ -~15267~^~629~^0.104^3^^~1~^~A~^~~^~~^1^0.099^0.111^^^^~2~^~10/01/2017~ -~15267~^~630~^0.001^3^^~1~^~AS~^~~^~~^1^0.000^0.002^^^^~2~^~10/01/2017~ -~15267~^~631~^0.011^3^^~1~^~A~^~~^~~^1^0.011^0.014^^^^~2~^~10/01/2017~ -~15267~^~645~^0.131^0^^~4~^~NC~^~~^~~^1^^^^^^~2~^~10/01/2017~ -~15267~^~646~^0.362^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~ -~15267~^~652~^0.001^3^^~1~^~A~^~~^~~^1^0.001^0.002^^^^~2~^~10/01/2017~ -~15267~^~653~^0.001^3^^~1~^~A~^~~^~~^1^0.001^0.001^^^^~2~^~10/01/2017~ -~15267~^~662~^3.0e-04^3^^~1~^~A~^~~^~~^1^^^^^^~2~^~10/01/2017~ -~15267~^~663~^0.003^3^^~1~^~A~^~~^~~^1^0.002^0.004^^^^~2~^~10/01/2017~ -~15267~^~673~^0.010^3^^~1~^~A~^~~^~~^1^0.007^0.013^^^^~2~^~10/01/2017~ -~15267~^~674~^0.080^3^^~1~^~A~^~~^~~^1^0.068^0.097^^^^~1, 2~^~10/01/2017~ -~15267~^~675~^0.006^3^^~1~^~A~^~~^~~^1^0.005^0.007^^^^~1, 2~^~10/01/2017~ -~15267~^~676~^0.001^3^^~1~^~A~^~~^~~^1^0.000^0.002^^^^~2~^~10/01/2017~ -~15267~^~689~^0.002^3^^~1~^~AS~^~~^~~^1^0.000^0.005^^^^~1, 2~^~10/01/2017~ -~15267~^~693~^0.033^0^^~4~^~NC~^~~^~~^1^^^^^^~1, 2~^~10/01/2017~ -~15267~^~853~^0.002^3^^~1~^~A~^~~^~~^1^0.000^0.005^^^^~2~^~10/01/2017~ -~15269~^~312~^0.019^3^^~1~^~A~^^^1^0.019^0.019^^^^~1, 2~^~08/01/2012~ -~15269~^~315~^0.012^3^^~1~^~A~^^^1^0.011^0.015^^^^~1, 2~^~08/01/2012~ -~15269~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~606~^0.048^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~612~^0.001^3^^~1~^~A~^^^1^0.004^0.005^^^^~2~^~08/01/2012~ -~15269~^~613~^0.036^3^^~1~^~A~^^^1^0.097^0.133^^^^~2~^~08/01/2012~ -~15269~^~614~^0.010^3^^~1~^~A~^^^1^0.030^0.037^^^^~2~^~08/01/2012~ -~15269~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~617~^0.024^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~618~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~620~^0.005^3^^~1~^~A~^^^1^0.010^0.024^^^^~2~^~08/01/2012~ -~15269~^~621~^0.059^3^^~1~^~A~^^^1^0.184^0.195^^^^~2~^~08/01/2012~ -~15269~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~628~^0.002^3^^~1~^~A~^^^1^0.004^0.013^^^^~2~^~08/01/2012~ -~15269~^~629~^0.021^3^^~1~^~A~^^^1^0.045^0.091^^^^~2~^~08/01/2012~ -~15269~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~631~^0.002^3^^~1~^~A~^^^1^0.006^0.007^^^^~2~^~08/01/2012~ -~15269~^~645~^0.055^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~646~^0.108^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~652~^0.000^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~653~^0.000^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15269~^~663~^0.001^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15269~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~673~^0.002^3^^~1~^~A~^^^1^0.005^0.006^^^^~2~^~08/01/2012~ -~15269~^~674~^0.023^3^^~1~^~A~^^^1^0.062^0.097^^^^~2~^~08/01/2012~ -~15269~^~675~^0.009^3^^~1~^~A~^^^1^0.003^0.049^^^^~2~^~08/01/2012~ -~15269~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~08/01/2012~ -~15269~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15269~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15269~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~851~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15269~^~853~^0.001^3^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~08/01/2012~ -~15269~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15270~^~312~^0.391^3^^~1~^~A~^^^1^0.346^0.460^^^^~2~^~08/01/2012~ -~15270~^~315~^0.033^3^^~1~^~A~^^^1^0.029^0.036^^^^~2~^~08/01/2012~ -~15270~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~606~^0.101^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15270~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~612~^0.001^3^^~1~^~A~^^^1^0.002^0.002^^^^~1, 2~^~08/01/2012~ -~15270~^~613~^0.052^3^^~1~^~A~^^^1^0.065^0.109^^^^~2~^~08/01/2012~ -~15270~^~614~^0.037^3^^~1~^~A~^^^1^0.046^0.075^^^^~2~^~08/01/2012~ -~15270~^~615~^0.002^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15270~^~617~^0.038^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~618~^0.032^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~620~^0.012^3^^~1~^~A~^^^1^0.017^0.024^^^^~2~^~08/01/2012~ -~15270~^~621~^0.031^3^^~1~^~A~^^^1^0.037^0.064^^^^~2~^~08/01/2012~ -~15270~^~624~^0.003^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15270~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~628~^0.002^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2~^~08/01/2012~ -~15270~^~629~^0.030^3^^~1~^~A~^^^1^0.036^0.058^^^^~2~^~08/01/2012~ -~15270~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~631~^0.002^3^^~1~^~A~^^^1^0.002^0.005^^^^~1, 2~^~08/01/2012~ -~15270~^~645~^0.086^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~646~^0.152^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~652~^0.001^3^^~1~^~A~^^^1^0.002^0.002^^^^~1, 2~^~08/01/2012~ -~15270~^~653~^0.004^3^^~1~^~A~^^^1^0.005^0.008^^^^~2~^~08/01/2012~ -~15270~^~654~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15270~^~662~^0.001^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~08/01/2012~ -~15270~^~663~^0.002^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15270~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~665~^0.001^3^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2~^~08/01/2012~ -~15270~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15270~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~672~^0.004^3^^~1~^~A~^^^1^0.004^0.009^^^^~2~^~08/01/2012~ -~15270~^~673~^0.002^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15270~^~674~^0.036^3^^~1~^~A~^^^1^0.045^0.072^^^^~2~^~08/01/2012~ -~15270~^~675~^0.031^3^^~1~^~A~^^^1^0.038^0.061^^^^~2~^~08/01/2012~ -~15270~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15270~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15270~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15270~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~851~^0.002^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2~^~08/01/2012~ -~15270~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15270~^~853~^0.002^3^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~08/01/2012~ -~15270~^~858~^0.001^3^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~08/01/2012~ -~15271~^~312~^0.379^3^^~1~^~A~^^^1^0.327^0.440^^^^~2~^~08/01/2012~ -~15271~^~315~^0.033^3^^~1~^~A~^^^1^0.031^0.035^^^^~2~^~08/01/2012~ -~15271~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~606~^0.056^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~612~^0.001^3^^~1~^~A~^^^1^0.003^0.003^^^^~2~^~08/01/2012~ -~15271~^~613~^0.028^3^^~1~^~A~^^^1^0.138^0.165^^^^~2~^~08/01/2012~ -~15271~^~614~^0.021^3^^~1~^~A~^^^1^0.102^0.119^^^^~2~^~08/01/2012~ -~15271~^~615~^0.001^3^^~1~^~A~^^^1^0.007^0.009^^^^~2~^~08/01/2012~ -~15271~^~617~^0.021^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~618~^0.018^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~620~^0.007^3^^~1~^~A~^^^1^0.033^0.043^^^^~2~^~08/01/2012~ -~15271~^~621~^0.015^3^^~1~^~A~^^^1^0.079^0.086^^^^~2~^~08/01/2012~ -~15271~^~624~^0.002^3^^~1~^~A~^^^1^0.007^0.010^^^^~2~^~08/01/2012~ -~15271~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~628~^0.001^3^^~1~^~A~^^^1^0.004^0.008^^^^~2~^~08/01/2012~ -~15271~^~629~^0.015^3^^~1~^~A~^^^1^0.073^0.088^^^^~2~^~08/01/2012~ -~15271~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~631~^0.001^3^^~1~^~A~^^^1^0.005^0.006^^^^~2~^~08/01/2012~ -~15271~^~645~^0.048^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~646~^0.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~652~^0.001^3^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~08/01/2012~ -~15271~^~653~^0.002^3^^~1~^~A~^^^1^0.010^0.013^^^^~2~^~08/01/2012~ -~15271~^~654~^0.001^3^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~08/01/2012~ -~15271~^~662~^0.001^3^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~08/01/2012~ -~15271~^~663~^0.001^3^^~1~^~A~^^^1^0.004^0.007^^^^~2~^~08/01/2012~ -~15271~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~665~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15271~^~670~^0.000^3^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~08/01/2012~ -~15271~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~672~^0.002^3^^~1~^~A~^^^1^0.010^0.012^^^^~2~^~08/01/2012~ -~15271~^~673~^0.002^3^^~1~^~A~^^^1^0.009^0.010^^^^~2~^~08/01/2012~ -~15271~^~674~^0.020^3^^~1~^~A~^^^1^0.108^0.111^^^^~2~^~08/01/2012~ -~15271~^~675~^0.018^3^^~1~^~A~^^^1^0.079^0.123^^^^~2~^~08/01/2012~ -~15271~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~687~^0.000^3^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~08/01/2012~ -~15271~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~15271~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~15271~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~08/01/2012~ -~15271~^~851~^0.001^3^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2~^~08/01/2012~ -~15271~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2~^~08/01/2012~ -~15271~^~853~^0.001^3^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~08/01/2012~ -~15271~^~858~^0.001^3^^~1~^~A~^^^1^0.002^0.005^^^^~1, 2~^~08/01/2012~ -~15274~^~312~^0.045^3^0.003^~1~^~A~^^^1^0.039^0.049^2^0.031^0.058^~2, 3~^~08/01/2013~ -~15274~^~315~^0.018^3^0.004^~1~^~A~^^^1^0.011^0.026^2^0.000^0.037^~1, 2, 3~^~08/01/2013~ -~15274~^~404~^0.137^3^0.015^~1~^~A~^^^1^0.110^0.160^2^0.074^0.199^~2, 3~^~08/01/2013~ -~15274~^~405~^0.101^3^0.010^~1~^~A~^^^1^0.084^0.120^2^0.056^0.146^~2, 3~^~08/01/2013~ -~15274~^~406~^5.293^3^0.638^~1~^~A~^^^1^4.030^6.080^2^2.548^8.038^~2, 3~^~08/01/2013~ -~15274~^~415~^0.273^3^0.041^~1~^~A~^^^1^0.210^0.350^2^0.097^0.449^~2, 3~^~08/01/2013~ -~15274~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~606~^0.595^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~610~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2013~ -~15274~^~611~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~08/01/2013~ -~15274~^~612~^0.049^3^0.010^~1~^~A~^^^1^0.031^0.067^2^0.004^0.094^~2, 3~^~08/01/2013~ -~15274~^~613~^0.397^3^0.020^~1~^~A~^^^1^0.361^0.430^2^0.311^0.483^~2, 3~^~08/01/2013~ -~15274~^~614~^0.113^3^0.012^~1~^~A~^^^1^0.099^0.137^2^0.060^0.165^~2, 3~^~08/01/2013~ -~15274~^~615~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.000^0.008^~2, 3~^~08/01/2013~ -~15274~^~617~^0.559^3^0.092^~1~^~AS~^^^1^0.417^0.732^2^0.162^0.956^~2, 3~^~08/01/2013~ -~15274~^~618~^0.214^3^0.080^~1~^~AS~^^^1^0.124^0.373^2^-0.130^0.557^~2, 3~^~08/01/2013~ -~15274~^~619~^0.052^3^0.007^~1~^~AS~^^^1^0.043^0.066^2^0.020^0.083^~2, 3~^~08/01/2013~ -~15274~^~620~^0.090^3^0.025^~1~^~A~^^^1^0.040^0.122^2^-0.019^0.198^~2, 3~^~08/01/2013~ -~15274~^~621~^0.252^3^0.041^~1~^~A~^^^1^0.175^0.313^2^0.077^0.427^~2, 3~^~08/01/2013~ -~15274~^~624~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~08/01/2013~ -~15274~^~625~^0.006^3^0.002^~1~^~A~^^^1^0.002^0.010^2^-0.004^0.016^~1, 2, 3~^~08/01/2013~ -~15274~^~626~^0.200^3^0.012^~1~^~AS~^^^1^0.176^0.217^2^0.147^0.252^~2, 3~^~08/01/2013~ -~15274~^~627~^0.013^3^0.003^~1~^~A~^^^1^0.007^0.017^2^0.000^0.027^~2, 3~^~08/01/2013~ -~15274~^~628~^0.032^3^0.007^~1~^~A~^^^1^0.020^0.044^2^0.002^0.061^~2, 3~^~08/01/2013~ -~15274~^~629~^0.069^3^0.007^~1~^~A~^^^1^0.055^0.080^2^0.037^0.100^~2, 3~^~08/01/2013~ -~15274~^~630~^0.003^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~08/01/2013~ -~15274~^~631~^0.033^3^0.001^~1~^~A~^^^1^0.031^0.035^2^0.027^0.038^~2, 3~^~08/01/2013~ -~15274~^~645~^0.815^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~646~^0.772^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~08/01/2013~ -~15274~^~653~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.012^2^0.003^0.016^~2, 3~^~08/01/2013~ -~15274~^~654~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 2, 3~^~08/01/2013~ -~15274~^~662~^0.006^3^0.002^~1~^~A~^^^1^0.003^0.010^2^-0.003^0.015^~2, 3~^~08/01/2013~ -~15274~^~663~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.011^~2, 3~^~08/01/2013~ -~15274~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.003^0.008^2^-0.001^0.012^~2, 3~^~08/01/2013~ -~15274~^~670~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.010^~1, 2, 3~^~08/01/2013~ -~15274~^~671~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~08/01/2013~ -~15274~^~672~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.018^2^0.002^0.024^~2, 3~^~08/01/2013~ -~15274~^~673~^0.194^3^0.014^~1~^~A~^^^1^0.166^0.212^2^0.133^0.254^~2, 3~^~08/01/2013~ -~15274~^~674~^0.554^3^0.092^~1~^~A~^^^1^0.411^0.725^2^0.159^0.949^~2, 3~^~08/01/2013~ -~15274~^~675~^0.205^3^0.077^~1~^~A~^^^1^0.115^0.359^2^-0.128^0.538^~2, 3~^~08/01/2013~ -~15274~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~08/01/2013~ -~15274~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~687~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.002^0.016^~2, 3~^~08/01/2013~ -~15274~^~689~^0.024^3^0.001^~1~^~AS~^^^1^0.022^0.027^2^0.018^0.030^~2, 3~^~08/01/2013~ -~15274~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~15274~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2013~ -~15274~^~851~^0.049^3^0.008^~1~^~A~^^^1^0.038^0.064^2^0.016^0.082^~2, 3~^~08/01/2013~ -~15274~^~852~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~08/01/2013~ -~15274~^~853~^0.019^3^0.001^~1~^~A~^^^1^0.017^0.022^2^0.013^0.025^~2, 3~^~08/01/2013~ -~15274~^~856~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.008^~1, 2, 3~^~08/01/2013~ -~15274~^~858~^0.013^3^0.004^~1~^~A~^^^1^0.006^0.017^2^-0.002^0.028^~2, 3~^~08/01/2013~ -~16001~^~312~^1.094^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~315~^1.730^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~404~^0.455^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~405~^0.220^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~406~^2.630^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~410~^1.471^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~415~^0.351^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~501~^0.191^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~502~^0.674^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~503~^0.791^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~504~^1.668^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~505~^1.497^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~506~^0.210^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~507~^0.184^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~508~^1.052^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~509~^0.591^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~510~^1.023^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~511~^1.284^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~512~^0.524^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~513~^1.160^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~514~^2.355^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~515~^3.099^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~516~^0.756^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~517~^0.874^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~518~^0.976^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16001~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16001~^~606~^0.191^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~617~^0.050^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~618~^0.113^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16001~^~645~^0.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16001~^~646~^0.113^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16002~^~312~^0.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~315~^0.573^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~404~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~405~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~406~^0.717^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~410~^0.430^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~415~^0.096^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~501~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~502~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~503~^0.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~504~^0.632^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~505~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~506~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~507~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~508~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~509~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~510~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~511~^0.486^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~512~^0.198^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~513~^0.439^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~514~^0.891^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~515~^1.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~516~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~517~^0.331^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~518~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16002~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16002~^~606~^0.036^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~617~^0.009^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~618~^0.021^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16002~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16002~^~646~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16003~^~312~^0.265^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~315~^0.504^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~404~^0.101^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~405~^0.056^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~406~^0.631^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~410~^0.378^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~415~^0.084^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~501~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~502~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~503~^0.151^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~504~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~505~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~506~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~507~^0.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~508~^0.201^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~509~^0.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~510~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~511~^0.246^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~512~^0.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~513~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~514~^0.451^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~515~^0.593^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~516~^0.145^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~517~^0.167^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~518~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16003~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16003~^~606~^0.011^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~617~^0.003^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~618~^0.006^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16003~^~645~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16003~^~646~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16004~^~312~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~315~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~404~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~405~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~406~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~410~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~415~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~501~^0.032^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~502~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~503~^0.131^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~504~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~505~^0.248^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~506~^0.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~507~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~508~^0.174^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~509~^0.098^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~510~^0.169^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~511~^0.213^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~512~^0.087^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~513~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~514~^0.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~515~^0.513^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~516~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~517~^0.145^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~518~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16004~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16004~^~606~^0.043^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16004~^~617~^0.011^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16004~^~618~^0.026^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16004~^~645~^0.011^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16004~^~646~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16005~^~312~^0.159^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~315~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~404~^0.136^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~405~^0.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~406~^0.408^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~410~^0.155^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~415~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~501~^0.067^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~502~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~503~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~504~^0.428^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~505~^0.379^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~506~^0.086^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~507~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~508~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~509~^0.155^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~510~^0.282^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~511~^0.356^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~512~^0.153^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~513~^0.236^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~514~^0.637^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~515~^0.841^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~516~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~517~^0.239^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~518~^0.288^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16005~^~606~^1.948^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~610~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~611~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~612~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~613~^1.227^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~614~^0.633^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~617~^1.953^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~618~^0.593^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~619~^0.147^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~626~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~628~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~645~^2.133^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16005~^~646~^0.740^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16006~^~312~^0.145^5^0.004^~6~^~JA~^^^2^0.130^0.206^4^0.133^0.157^~2, 3~^~12/01/2005~ -~16006~^~315~^0.109^5^0.038^~6~^~JA~^^^2^0.009^0.346^4^0.004^0.213^~1, 2, 3~^~12/01/2005~ -~16006~^~404~^0.096^8^0.015^~6~^~JA~^^^2^0.003^0.153^5^0.058^0.134^~1, 2, 3~^~05/01/2004~ -~16006~^~405~^0.039^8^0.005^~6~^~JA~^^^2^0.020^0.060^2^0.020^0.057^~2, 3~^~05/01/2004~ -~16006~^~406~^0.428^5^0.034^~6~^~JA~^^^2^0.320^0.510^4^0.334^0.521^~2, 3~^~05/01/2004~ -~16006~^~410~^0.216^5^0.032^~6~^~JA~^^^2^0.096^0.310^4^0.127^0.304^~2, 3~^~05/01/2004~ -~16006~^~415~^0.084^8^0.008^~6~^~JA~^^^2^0.050^0.134^2^0.050^0.118^~2, 3~^~05/01/2004~ -~16006~^~501~^0.051^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~502~^0.149^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~503~^0.226^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~504~^0.405^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~505~^0.298^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~506~^0.047^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~507~^0.037^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~508~^0.267^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~509~^0.121^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~510~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~511~^0.229^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~512~^0.132^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~513~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~514~^0.631^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~515~^0.800^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~516~^0.186^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~517~^0.240^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~518~^0.320^0^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~16006~^~521~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2004~ -~16006~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~606~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~607~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~608~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~609~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~610~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~611~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~612~^0.001^5^0.001^~6~^~JA~^^^2^0.000^0.003^4^-0.001^0.003^~1, 2, 3~^~03/01/2006~ -~16006~^~613~^0.047^5^0.014^~6~^~JA~^^^2^0.024^0.109^4^0.019^0.099^~2, 3~^~03/01/2006~ -~16006~^~614~^0.023^5^0.008^~6~^~JA~^^^2^0.007^0.062^4^0.005^0.052^~2, 3~^~03/01/2006~ -~16006~^~615~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~617~^0.029^1^^~6~^~JA~^^^2^0.036^0.158^^^^^~03/01/2006~ -~16006~^~618~^0.055^5^0.015^~6~^~JA~^^^2^0.031^0.107^4^0.027^0.110^~2, 3~^~03/01/2006~ -~16006~^~619~^0.015^1^^~6~^~JA~^^^2^0.018^0.110^^^^^~03/01/2006~ -~16006~^~620~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~621~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~624~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~625~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~626~^0.001^5^0.001^~6~^~JA~^^^2^0.000^0.004^4^-0.001^0.003^~1, 2, 3~^~03/01/2006~ -~16006~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16006~^~628~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~629~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~630~^0.000^5^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16006~^~645~^0.095^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~646~^0.121^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~652~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~653~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~654~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~663~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~672~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~674~^0.066^5^0.021^~1~^~A~^^^1^0.036^0.158^4^0.024^0.141^~2, 3~^~03/01/2006~ -~16006~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~689~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16006~^~696~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16006~^~851~^0.051^5^0.019^~1~^~A~^^^1^0.018^0.110^4^0.013^0.116^~2, 3~^~03/01/2006~ -~16007~^~312~^0.300^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~315~^0.600^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~404~^0.052^10^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~405~^0.045^10^0.001^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~406~^0.940^10^0.037^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~410~^0.183^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~415~^0.090^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~501~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~502~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~503~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~504~^0.510^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~505~^0.452^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~506~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~507~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~508~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~509~^0.182^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~510~^0.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~511~^0.401^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~512~^0.182^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~513~^0.290^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~514~^0.743^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~515~^0.976^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~516~^0.283^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~517~^0.278^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~518~^0.333^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16007~^~606~^1.677^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~611~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~612~^0.121^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~613~^0.858^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~614~^0.622^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~617~^1.195^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~618~^0.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~619~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~626~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~628~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~645~^1.385^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16007~^~646~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~312~^0.213^4^0.030^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~315~^0.420^4^0.077^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~404~^0.058^29^0.001^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~405~^0.056^29^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~406~^0.901^28^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~410~^0.139^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~415~^0.046^3^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~501~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~502~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~503~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~504~^0.534^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~505~^0.472^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~506~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~507~^0.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~508~^0.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~509~^0.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~510~^0.345^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~511~^0.427^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~512~^0.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~513~^0.302^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~514~^0.800^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~515~^1.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~516~^0.288^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~517~^0.290^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~518~^0.357^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16008~^~606~^2.352^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~610~^0.016^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~611~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~612~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~613~^0.810^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~614~^0.751^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~617~^2.564^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~618~^0.628^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~619~^0.208^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~626~^0.266^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16008~^~645~^2.830^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16008~^~646~^0.836^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~312~^0.215^11^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~315~^0.361^11^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~404~^0.053^59^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~405~^0.038^60^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~406~^0.447^60^0.030^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~410~^0.100^3^0.026^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~415~^0.064^3^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~501~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~502~^0.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~503~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~504~^0.420^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~505~^0.361^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~506~^0.080^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~507~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~508~^0.285^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~509~^0.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~510~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~511~^0.326^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~512~^0.147^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~513~^0.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~514~^0.637^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~515~^0.802^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~516~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~517~^0.223^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~518~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16009~^~606~^0.599^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~610~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~611~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~612~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~613~^0.370^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~614~^0.201^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~617~^0.615^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~618~^0.169^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~619~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~626~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~628~^0.015^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~645~^0.673^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16009~^~646~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16010~^~312~^0.171^18^0.004^~1~^~A~^^^1^0.140^0.211^7^0.161^0.180^~2, 3~^~08/01/2014~ -~16010~^~315~^0.362^18^0.006^~1~^~A~^^^1^0.300^0.437^8^0.349^0.375^~2, 3~^~08/01/2014~ -~16010~^~404~^0.033^9^0.001^~1~^~A~^^^1^0.020^0.050^2^0.028^0.038^~2, 3~^~08/01/2014~ -~16010~^~405~^0.015^4^^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~406~^0.304^9^0.018^~1~^~A~^^^1^0.250^0.490^4^0.253^0.354^~2, 3~^~08/01/2014~ -~16010~^~410~^0.148^6^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~415~^0.050^9^0.002^~1~^~A~^^^1^0.035^0.063^4^0.045^0.055^~2, 3~^~08/01/2014~ -~16010~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~502~^0.141^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~503~^0.235^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~504~^0.399^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~505~^0.289^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~506~^0.050^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~507~^0.036^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~16010~^~508~^0.258^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~509~^0.118^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~510~^0.262^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~511~^0.228^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~512~^0.126^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~513~^0.190^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~514~^0.606^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~515~^0.709^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~516~^0.194^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~517~^0.242^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~518~^0.311^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16010~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~16010~^~606~^0.231^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~610~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.008^2^-0.001^0.010^~1, 2, 3~^~08/01/2014~ -~16010~^~611~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2014~ -~16010~^~612~^0.006^9^0.001^~1~^~A~^^^1^0.001^0.011^3^0.004^0.007^~1, 2, 3~^~08/01/2014~ -~16010~^~613~^0.160^9^0.008^~1~^~A~^^^1^0.082^0.229^2^0.128^0.192^~2, 3~^~08/01/2014~ -~16010~^~614~^0.048^9^0.004^~1~^~A~^^^1^0.012^0.085^2^0.032^0.063^~2, 3~^~08/01/2014~ -~16010~^~615~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^2^0.003^0.003^~1, 2, 3~^~08/01/2014~ -~16010~^~617~^0.205^9^0.015^~1~^~AS~^^^1^0.073^0.356^2^0.144^0.266^~2, 3~^~08/01/2014~ -~16010~^~618~^0.223^9^0.007^~1~^~AS~^^^1^0.143^0.304^4^0.202^0.241^~2, 3~^~08/01/2014~ -~16010~^~619~^0.180^9^0.005^~1~^~AS~^^^1^0.156^0.205^3^0.162^0.196^~2, 3~^~08/01/2014~ -~16010~^~620~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.001^0.001^~1, 2, 3~^~08/01/2014~ -~16010~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~624~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^3^0.003^0.004^~1, 2, 3~^~08/01/2014~ -~16010~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16010~^~626~^0.008^9^0.001^~1~^~AS~^^^1^0.001^0.016^2^0.005^0.011^~2, 3~^~08/01/2014~ -~16010~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~628~^0.005^9^0.001^~1~^~A~^^^1^0.001^0.007^3^0.003^0.007^~1, 2, 3~^~08/01/2014~ -~16010~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~630~^0.005^9^0.001^~1~^~AS~^^^1^0.000^0.015^3^0.002^0.008^~2, 3~^~08/01/2014~ -~16010~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16010~^~645~^0.222^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~646~^0.400^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16010~^~652~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2014~ -~16010~^~653~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.005^2^0.001^0.003^~1, 2, 3~^~08/01/2014~ -~16010~^~654~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.005^3^0.004^0.005^~1, 2, 3~^~08/01/2014~ -~16010~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~663~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~16010~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~665~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~16010~^~670~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~672~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.006^3^0.001^0.005^~1, 2, 3~^~08/01/2014~ -~16010~^~673~^0.008^9^0.001^~1~^~A~^^^1^0.001^0.016^2^0.005^0.011^~1, 2, 3~^~08/01/2014~ -~16010~^~674~^0.203^9^0.015^~1~^~A~^^^1^0.073^0.353^2^0.142^0.264^~2, 3~^~08/01/2014~ -~16010~^~675~^0.221^9^0.007^~1~^~A~^^^1^0.143^0.303^4^0.201^0.241^~2, 3~^~08/01/2014~ -~16010~^~676~^0.005^9^0.001^~1~^~A~^^^1^0.000^0.015^3^0.002^0.008^~1, 2, 3~^~08/01/2014~ -~16010~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16010~^~687~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^3^0.000^0.003^~1, 2, 3~^~07/01/2012~ -~16010~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2014~ -~16010~^~693~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~ -~16010~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~16010~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~16010~^~851~^0.179^9^0.005^~1~^~A~^^^1^0.156^0.205^3^0.162^0.196^~2, 3~^~08/01/2014~ -~16010~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16010~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~16011~^~312~^0.213^11^0.005^~6~^~JA~^^^2^0.120^0.254^3^0.198^0.229^~2, 3~^~04/01/2004~ -~16011~^~315~^0.302^9^0.015^~6~^~JA~^^^2^0.010^0.490^3^0.253^0.351^~1, 2, 3~^~04/01/2004~ -~16011~^~404~^0.052^226^0.000^~6~^~JA~^^^2^0.003^0.087^3^0.051^0.053^~1, 2, 3~^~04/01/2004~ -~16011~^~405~^0.046^227^0.000^~6~^~JA~^^^2^0.020^0.046^3^0.046^0.046^~2, 3~^~04/01/2004~ -~16011~^~406~^0.494^210^0.010^~6~^~JA~^^^2^0.017^0.497^197^0.474^0.513^~1, 2, 3~^~04/01/2004~ -~16011~^~410~^0.392^8^0.019^~6~^~JA~^^^2^0.150^0.529^3^0.332^0.452^~2, 3~^~04/01/2004~ -~16011~^~415~^0.063^10^0.003^~6~^~JA~^^^2^0.040^0.070^3^0.055^0.072^~2, 3~^~04/01/2004~ -~16011~^~501~^0.075^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~502~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~503~^0.223^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~504~^0.383^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~505~^0.327^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~506~^0.040^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~507~^0.042^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~508~^0.238^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~509~^0.118^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~510~^0.253^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~511~^0.230^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~512~^0.118^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~513~^0.185^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~514~^0.603^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~515~^0.743^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~516~^0.185^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~517~^0.258^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~02/01/2008~ -~16011~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~16011~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16011~^~606~^0.293^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~607~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~608~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~609~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~610~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.001^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~611~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.002^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~612~^0.009^4^0.001^~6~^~JA~^^^2^0.010^0.013^3^0.009^0.014^~2, 3~^~02/01/2008~ -~16011~^~613~^0.174^4^0.018^~6~^~JA~^^^2^0.184^0.250^3^0.162^0.275^~2, 3~^~02/01/2008~ -~16011~^~614~^0.109^4^0.015^~6~^~JA~^^^2^0.103^0.169^3^0.088^0.185^~2, 3~^~02/01/2008~ -~16011~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~617~^0.263^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~16011~^~618~^0.114^4^0.006^~6~^~JA~^^^2^0.111^0.162^3^0.124^0.164^~2, 3~^~02/01/2008~ -~16011~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~ -~16011~^~620~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~621~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~626~^0.014^4^0.000^~6~^~JA~^^^2^0.016^0.026^3^0.016^0.019^~2, 3~^~02/01/2008~ -~16011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~16011~^~628~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.010^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~629~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~630~^0.000^4^0.000^~6~^~JA~^^^2^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2008~ -~16011~^~645~^0.277^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~646~^0.157^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~ -~16011~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~653~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.005^~1, 2, 3~^~02/01/2008~ -~16011~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~663~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~672~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.005^3^0.000^0.007^~1, 2, 3~^~02/01/2008~ -~16011~^~674~^0.263^4^0.023^~1~^~A~^^^1^0.289^0.381^3^0.259^0.403^~2, 3~^~02/01/2008~ -~16011~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~687~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~02/01/2008~ -~16011~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2008~ -~16011~^~851~^0.039^4^0.007^~1~^~A~^^^1^0.036^0.063^3^0.029^0.071^~2, 3~^~02/01/2008~ -~16014~^~312~^0.841^27^0.047^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~315~^1.060^26^0.041^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~404~^0.900^26^0.016^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~405~^0.193^26^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~406~^1.955^30^0.062^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~410~^0.899^8^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~415~^0.286^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~501~^0.256^34^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~502~^0.909^90^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~503~^0.954^90^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~504~^1.725^90^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~505~^1.483^91^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~506~^0.325^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~507~^0.235^49^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~508~^1.168^88^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~509~^0.608^83^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~510~^1.130^90^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~511~^1.337^85^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~512~^0.601^88^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~513~^0.905^77^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~514~^2.613^85^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~515~^3.294^77^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~516~^0.843^77^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~517~^0.916^75^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~518~^1.175^77^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2016~ -~16014~^~606~^0.366^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~613~^0.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~614~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~617~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~618~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~619~^0.278^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16014~^~645~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16014~^~646~^0.610^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~312~^0.209^9^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~315~^0.444^8^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~404~^0.244^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~405~^0.059^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~406~^0.505^8^0.026^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~410~^0.242^8^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~415~^0.069^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~501~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~502~^0.373^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~503~^0.391^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~504~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~505~^0.608^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~506~^0.133^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~507~^0.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~508~^0.479^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~509~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~510~^0.464^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~511~^0.549^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~512~^0.247^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~513~^0.372^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~514~^1.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~515~^1.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~516~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~517~^0.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~518~^0.482^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16015~^~606~^0.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~607~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~608~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~609~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~610~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~611~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~613~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~617~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~618~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~619~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~620~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~621~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~626~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~627~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~628~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~629~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~630~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~631~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16015~^~645~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16015~^~646~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~312~^1.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~315~^1.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~404~^0.900^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~405~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~406~^1.955^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~410~^0.899^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~415~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~501~^0.252^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~502~^0.894^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~503~^0.938^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~504~^1.697^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~505~^1.459^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~506~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~507~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~508~^1.149^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~509~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~510~^1.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~511~^1.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~512~^0.592^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~513~^0.891^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~514~^2.570^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~515~^3.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~516~^0.830^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~517~^0.901^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~518~^1.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2016~ -~16016~^~606~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~607~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~608~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~609~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~610~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~611~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~613~^0.218^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~614~^0.014^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~617~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~618~^0.211^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~619~^0.176^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~620~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~621~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~626~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~627~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~628~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~629~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~630~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~631~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16016~^~645~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16016~^~646~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~312~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~315~^0.327^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~404~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~405~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~406~^0.527^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~410~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~415~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~501~^0.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~502~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~503~^0.361^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~504~^0.653^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~505~^0.562^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~506~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~507~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~508~^0.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~509~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~510~^0.428^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~511~^0.507^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~512~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~513~^0.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~514~^0.990^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~515~^1.247^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~517~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~518~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16017~^~606~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~613~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~617~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~618~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~619~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16017~^~645~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16017~^~646~^0.149^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~312~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~315~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~404~^0.140^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~405~^0.120^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~406~^0.620^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~410~^0.184^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~415~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~501~^0.072^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~502~^0.222^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~503~^0.285^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~504~^0.512^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~505~^0.422^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~506~^0.079^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~507~^0.056^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~508~^0.356^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~509~^0.143^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~510~^0.348^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~511~^0.331^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~512~^0.166^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~513~^0.274^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~514~^0.755^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~515~^0.969^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~516~^0.244^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~517~^0.345^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~518~^0.378^0^^~4~^~NR~^^^^^^^^^^~01/01/2013~ -~16018~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16018~^~606~^0.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~607~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~608~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~609~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~610~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~611~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~613~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~614~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~617~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~618~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~619~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~620~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~621~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~626~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~627~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~628~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~629~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~630~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~631~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~ -~16018~^~645~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16018~^~646~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~312~^0.794^8^0.034^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~315~^0.920^8^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~404~^0.747^8^0.032^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~405~^0.213^8^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~406~^1.455^8^0.072^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~410~^0.748^8^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~415~^0.309^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~501~^0.273^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~502~^0.969^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~503~^1.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~504~^1.838^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~505~^1.580^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~506~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~507~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~508~^1.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~509~^0.648^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~510~^1.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~511~^1.426^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~512~^0.641^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~513~^0.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~514~^2.785^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~515~^3.511^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~516~^0.899^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~517~^0.976^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~518~^1.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16019~^~606~^0.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~613~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~614~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~617~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~618~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~619~^0.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~645~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16019~^~646~^0.527^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~312~^0.231^8^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~315~^0.370^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~404~^0.210^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~405~^0.069^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~406~^0.515^8^0.037^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~410~^0.240^8^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~415~^0.081^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~501~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~502~^0.393^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~503~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~504~^0.746^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~505~^0.641^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~506~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~507~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~508~^0.505^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~509~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~510~^0.489^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~511~^0.578^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~512~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~513~^0.391^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~514~^1.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~515~^1.424^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~516~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~517~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~518~^0.508^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16020~^~606~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~613~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~614~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~617~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~618~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~619~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~645~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16020~^~646~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~312~^0.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~315~^0.200^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~404~^0.039^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~405~^0.039^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~406~^0.504^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~410~^0.144^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~415~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~501~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~502~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~503~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~504~^0.443^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~505~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~506~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~507~^0.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~508~^0.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~509~^0.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~510~^0.290^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~511~^0.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~512~^0.154^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~513~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~514~^0.671^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~515~^0.845^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~516~^0.216^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~517~^0.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~518~^0.302^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16021~^~606~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~613~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~614~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~617~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~618~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~619~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~645~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16021~^~646~^0.120^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~312~^0.440^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~315~^1.200^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~404~^0.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~405~^0.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~406~^2.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~410~^0.789^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~415~^0.401^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~501~^0.223^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~502~^0.792^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~503~^0.831^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~504~^1.502^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~505~^1.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~506~^0.283^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~507~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~508~^1.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~509~^0.530^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~510~^0.984^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~511~^1.165^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~512~^0.524^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~513~^0.789^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~514~^2.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~515~^2.869^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~516~^0.734^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~517~^0.798^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~518~^1.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16022~^~606~^0.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~612~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~613~^0.186^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~614~^0.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~617~^0.135^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~618~^0.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~619~^0.765^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~626~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~645~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16022~^~646~^1.207^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~312~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~315~^0.382^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~404~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~405~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~406~^0.546^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~410~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~415~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~501~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~502~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~503~^0.311^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~504~^0.563^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~505~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~506~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~507~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~508~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~509~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~510~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~511~^0.437^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~512~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~513~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~514~^0.853^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~515~^1.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~516~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~517~^0.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~518~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16023~^~606~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~612~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~613~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~614~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~617~^0.051^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~618~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~619~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~645~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16023~^~646~^0.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~312~^0.837^35^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~315~^1.423^35^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~404~^0.653^45^0.028^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~405~^0.237^45^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~406~^1.955^45^0.111^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~410~^1.098^32^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~415~^0.447^32^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~501~^0.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~502~^0.920^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~503~^0.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~504~^1.745^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~505~^1.500^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~506~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~507~^0.238^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~508~^1.182^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~509~^0.615^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~510~^1.144^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~511~^1.353^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~512~^0.608^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~513~^0.916^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~514~^2.644^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~515~^3.333^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~516~^0.853^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~517~^0.927^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~518~^1.189^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16024~^~606~^0.356^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~607~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~608~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~609~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~610~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~611~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~613~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~614~^0.021^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~617~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~618~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~619~^0.213^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~620~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~621~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~626~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~627~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~628~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~629~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~630~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~631~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16024~^~645~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16024~^~646~^0.477^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~312~^0.247^20^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~315~^0.518^20^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~404~^0.158^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~405~^0.059^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~406~^0.681^20^0.094^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~410~^0.266^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~415~^0.117^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~501~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~502~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~503~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~504~^0.665^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~505~^0.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~506~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~507~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~508~^0.451^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~509~^0.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~510~^0.436^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~511~^0.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~512~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~513~^0.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~514~^1.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~515~^1.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~516~^0.325^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~517~^0.353^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~518~^0.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16025~^~606~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~613~^0.132^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~617~^0.021^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~618~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~619~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~645~^0.021^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16025~^~646~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~312~^0.160^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~315~^0.408^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~404~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~405~^0.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~406~^0.461^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~410~^0.278^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~415~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~501~^0.088^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~502~^0.271^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~503~^0.349^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~504~^0.626^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~505~^0.516^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~506~^0.096^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~507~^0.069^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~508~^0.435^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~509~^0.174^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~510~^0.425^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~511~^0.404^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~512~^0.202^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~513~^0.335^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~514~^0.923^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~515~^1.184^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~516~^0.298^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~517~^0.421^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~518~^0.462^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~16026~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16026~^~606~^0.120^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~607~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~608~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~609~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~610~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~611~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~612~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~613~^0.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~614~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~617~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~618~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~619~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~620~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~621~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~626~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~627~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~628~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~629~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~630~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~631~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16026~^~645~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16026~^~646~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~312~^0.958^64^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~315~^1.021^68^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~404~^0.529^53^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~405~^0.219^53^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~406~^2.060^48^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~410~^0.780^32^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~415~^0.397^32^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~501~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~502~^0.992^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~503~^1.041^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~504~^1.882^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~505~^1.618^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~506~^0.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~507~^0.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~508~^1.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~509~^0.664^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~510~^1.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~511~^1.460^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~512~^0.656^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~513~^0.988^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~514~^2.852^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~515~^3.595^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~516~^0.920^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~517~^1.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~518~^1.282^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16027~^~606~^0.120^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~607~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~608~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~609~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~610~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~611~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~613~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~614~^0.014^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~617~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~618~^0.178^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~619~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~620~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~621~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~626~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~627~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~628~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~629~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~630~^0.000^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~ -~16027~^~645~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16027~^~646~^0.457^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~312~^0.216^54^0.014^~6~^~JA~^^^10^0.000^0.478^53^0.189^0.244^~4~^~02/01/2003~ -~16028~^~315~^0.430^54^0.027^~6~^~JA~^^^10^0.000^0.670^53^0.377^0.483^~4~^~02/01/2003~ -~16028~^~404~^0.160^23^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~405~^0.058^23^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~406~^0.578^23^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~410~^0.220^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~415~^0.120^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16028~^~501~^0.104^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~502~^0.319^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~503~^0.410^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~504~^0.736^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~505~^0.607^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~506~^0.113^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~507~^0.081^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~508~^0.511^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~509~^0.205^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~510~^0.500^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~511~^0.475^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~512~^0.238^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~513~^0.394^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~514~^1.086^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~515~^1.393^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~516~^0.351^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~517~^0.496^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~518~^0.544^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16028~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16028~^~606~^0.073^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~613~^0.065^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~614~^0.008^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~617~^0.039^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~618~^0.108^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~619~^0.170^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16028~^~645~^0.039^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16028~^~646~^0.278^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16029~^~312~^0.135^2^^~6~^~JA~^^^2^0.120^0.150^1^^^^~04/01/2004~ -~16029~^~315~^0.168^1^^~6~^~JA~^^^2^0.120^0.217^1^^^^~04/01/2004~ -~16029~^~404~^0.116^44^0.007^~6~^~JA~^^^2^0.109^0.122^1^0.033^0.198^~4~^~04/01/2004~ -~16029~^~405~^0.051^46^0.021^~6~^~JA~^^^2^0.030^0.072^1^-0.217^0.318^~4~^~04/01/2004~ -~16029~^~406~^0.411^43^0.091^~6~^~JA~^^^2^0.320^0.502^1^-0.746^1.568^~4~^~04/01/2004~ -~16029~^~410~^0.138^1^^~6~^~JA~^^^2^0.130^0.146^1^^^^~04/01/2004~ -~16029~^~415~^0.074^1^^~6~^~JA~^^^2^0.069^0.080^1^^^^~04/01/2004~ -~16029~^~501~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~502~^0.193^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~503~^0.248^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~504~^0.445^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~505~^0.367^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~506~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~508~^0.309^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~509~^0.124^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~510~^0.302^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~511~^0.287^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~512~^0.144^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~513~^0.238^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~514~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~515~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~516~^0.212^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~517~^0.300^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~518~^0.329^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16029~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16029~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~16029~^~606~^0.141^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16029~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16029~^~613~^0.094^1^^~6~^~JA~^^^2^0.040^0.184^1^^^^~06/01/2014~ -~16029~^~614~^0.038^1^^~6~^~JA~^^^2^0.005^0.085^1^^^^~06/01/2014~ -~16029~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~617~^0.129^0^^~6~^~JA~^^^^^^^^^^~06/01/2014~ -~16029~^~618~^0.106^1^^~6~^~JA~^^^2^0.067^0.186^1^^^^~06/01/2014~ -~16029~^~619~^0.082^0^^~6~^~JA~^^^^^^^^^^~06/01/2014~ -~16029~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~626~^0.015^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16029~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~645~^0.382^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16029~^~646~^0.263^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16029~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~674~^0.238^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16029~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16029~^~851~^0.075^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16030~^~312~^1.100^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~315~^1.000^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~404~^0.529^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~405~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~406~^2.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~410~^0.780^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~415~^0.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~501~^0.289^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~502~^1.026^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~503~^1.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~504~^1.946^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~505~^1.673^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~506~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~507~^0.265^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~508~^1.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~509~^0.686^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~510~^1.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~511~^1.509^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~512~^0.679^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~513~^1.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~514~^2.948^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~515~^3.717^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~516~^0.952^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~517~^1.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~518~^1.326^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16030~^~606~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~613~^0.032^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~614~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~617~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~618~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~619~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~645~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16030~^~646~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~312~^0.289^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~315~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~404~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~405~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~406~^0.540^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~410~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~415~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~501~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~502~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~503~^0.403^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~504~^0.729^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~505~^0.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~506~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~507~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~508~^0.494^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~509~^0.257^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~510~^0.478^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~511~^0.565^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~512~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~513~^0.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~514~^1.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~515~^1.392^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~516~^0.356^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~517~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~518~^0.497^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16031~^~606~^0.014^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~613~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~614~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~617~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~618~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~619~^0.032^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~645~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16031~^~646~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~312~^0.699^50^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~315~^1.111^48^0.055^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~404~^0.608^48^0.046^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~405~^0.215^48^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~406~^2.110^47^0.108^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~410~^0.780^32^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~415~^0.397^32^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~501~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~502~^0.948^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~503~^0.995^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~504~^1.799^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~505~^1.547^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~506~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~507~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~508~^1.218^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~509~^0.634^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~510~^1.179^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~511~^1.395^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~512~^0.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~513~^0.945^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~514~^2.725^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~515~^3.436^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~516~^0.880^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~517~^0.955^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~518~^1.226^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16032~^~606~^0.154^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~613~^0.136^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~614~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~617~^0.082^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~618~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~619~^0.358^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16032~^~645~^0.082^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16032~^~646~^0.586^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~312~^0.242^32^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~315~^0.477^31^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~404~^0.160^23^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~405~^0.058^23^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~406~^0.578^23^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~410~^0.220^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~415~^0.120^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~501~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~502~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~503~^0.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~504~^0.693^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~505~^0.595^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~506~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~507~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~508~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~509~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~510~^0.454^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~511~^0.537^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~512~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~514~^1.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~515~^1.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~516~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~517~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~518~^0.472^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16033~^~606~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~613~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~617~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~618~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~619~^0.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16033~^~645~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16033~^~646~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16034~^~312~^0.147^6^0.003^~6~^~JA~^^^3^0.120^0.165^3^0.137^0.157^~2, 3~^~04/01/2011~ -~16034~^~315~^0.291^5^0.020^~6~^~JA~^^^3^0.120^0.390^3^0.228^0.353^~2, 3~^~04/01/2011~ -~16034~^~404~^0.106^48^0.000^~6~^~JA~^^^3^0.060^0.122^3^0.105^0.106^~2, 3~^~04/01/2011~ -~16034~^~405~^0.067^50^0.000^~6~^~JA~^^^3^0.015^0.072^^^^~1, 2, 3~^~04/01/2011~ -~16034~^~406~^0.494^47^0.002^~6~^~JA~^^^3^0.320^0.502^3^0.489^0.499^~2, 3~^~04/01/2011~ -~16034~^~410~^0.130^1^^~6~^~JA~^^^2^0.130^0.146^^^^^~04/01/2011~ -~16034~^~415~^0.080^1^^~6~^~JA~^^^2^0.069^0.080^^^^^~11/01/2006~ -~16034~^~501~^0.064^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~502~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~503~^0.254^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~504~^0.456^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~505~^0.376^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~507~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~508~^0.317^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~509~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~510~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~511~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~512~^0.148^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~513~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~514~^0.673^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~515~^0.863^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~516~^0.218^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~517~^0.307^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~518~^0.337^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16034~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16034~^~606~^0.125^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16034~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16034~^~613~^0.082^1^^~6~^~JA~^^^2^0.040^0.184^^^^^~06/01/2014~ -~16034~^~614~^0.038^1^^~6~^~JA~^^^2^0.005^0.085^^^^^~06/01/2014~ -~16034~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~617~^0.012^0^^~4~^~BFSN~^~16028~^^^^^^^^^~06/01/2014~ -~16034~^~618~^0.083^1^^~6~^~JA~^^^2^0.067^0.186^^^^^~06/01/2014~ -~16034~^~619~^0.051^0^^~4~^~BFSN~^~16028~^^^^^^^^^~06/01/2014~ -~16034~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~626~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16034~^~627~^0.000^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2011~ -~16034~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~ -~16034~^~631~^0.000^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2011~ -~16034~^~645~^0.147^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16034~^~646~^0.174^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16034~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~674~^0.127^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16034~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~16034~^~851~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~16035~^~312~^1.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~315~^1.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~404~^0.390^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~405~^0.240^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~406~^2.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~410~^0.779^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~415~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~501~^0.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~502~^1.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~503~^1.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~504~^2.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~505~^1.738^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~506~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~507~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~508~^1.370^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~509~^0.713^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~510~^1.325^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~511~^1.568^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~512~^0.705^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~513~^1.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~514~^3.063^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~515~^3.862^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~516~^0.989^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~517~^1.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~518~^1.378^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16035~^~606~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~613~^0.058^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~617~^0.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~618~^0.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~619~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~645~^0.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16035~^~646~^0.249^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~312~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~315~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~404~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~405~^0.067^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~406~^0.552^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~410~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~415~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~501~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~502~^0.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~503~^0.419^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~504~^0.757^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~505~^0.651^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~506~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~507~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~508~^0.513^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~509~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~510~^0.496^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~511~^0.587^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~512~^0.264^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~513~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~514~^1.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~515~^1.447^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~516~^0.370^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~517~^0.402^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~518~^0.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16036~^~606~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~613~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~614~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~617~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~618~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~619~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~645~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16036~^~646~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16037~^~312~^0.834^13^0.053^~11~^~JO~^^^2^0.440^1.160^11^0.718^0.950^~2, 3~^~04/01/2004~ -~16037~^~315~^1.418^13^0.100^~11~^~JO~^^^2^0.640^1.800^11^1.198^1.638^~2, 3~^~04/01/2004~ -~16037~^~404~^0.775^17^0.014^~11~^~JO~^^^2^0.445^0.910^15^0.746^0.804^~2, 3~^~04/01/2004~ -~16037~^~405~^0.164^17^0.008^~11~^~JO~^^^2^0.102^0.222^15^0.147^0.181^~2, 3~^~04/01/2004~ -~16037~^~406~^2.188^17^0.062^~11~^~JO~^^^2^1.200^2.850^15^2.055^2.321^~2, 3~^~04/01/2004~ -~16037~^~410~^0.744^17^0.023^~11~^~JO~^^^2^0.580^0.960^15^0.695^0.793^~2, 3~^~04/01/2004~ -~16037~^~415~^0.428^17^0.005^~11~^~JO~^^^2^0.250^0.467^15^0.417^0.438^~2, 3~^~04/01/2004~ -~16037~^~501~^0.247^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~502~^0.711^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~503~^0.952^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~504~^1.723^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~505~^1.280^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~506~^0.273^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~507~^0.187^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~508~^1.158^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~509~^0.484^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~510~^1.241^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~511~^1.020^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~512~^0.507^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~513~^0.908^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~514~^2.598^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~515~^3.098^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~516~^0.801^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~517~^1.117^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~518~^1.180^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16037~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~16037~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~606~^0.170^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~613~^0.135^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~617~^0.117^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16037~^~618~^0.335^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~619~^0.538^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16037~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~626~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~630~^0.008^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~645~^0.128^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16037~^~646~^0.873^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~16037~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~653~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~674~^0.117^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16037~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16037~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16037~^~851~^0.538^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~312~^0.210^45^0.015^~11~^~JO~^^^5^0.000^0.382^33^0.179^0.241^~2, 3~^~04/01/2004~ -~16038~^~315~^0.527^45^0.039^~11~^~JO~^^^5^0.000^0.950^30^0.448^0.606^~2, 3~^~04/01/2004~ -~16038~^~404~^0.237^9^0.006^~11~^~JO~^^^2^0.151^0.270^7^0.223^0.250^~2, 3~^~04/01/2004~ -~16038~^~405~^0.066^9^0.002^~11~^~JO~^^^2^0.053^0.120^7^0.062^0.070^~2, 3~^~04/01/2004~ -~16038~^~406~^0.649^9^0.037^~11~^~JO~^^^2^0.017^0.920^7^0.562^0.736^~1, 2, 3~^~04/01/2004~ -~16038~^~410~^0.266^9^0.009^~11~^~JO~^^^2^0.170^0.310^7^0.244^0.287^~2, 3~^~04/01/2004~ -~16038~^~415~^0.138^9^0.005^~11~^~JO~^^^2^0.080^0.168^7^0.126^0.150^~2, 3~^~04/01/2004~ -~16038~^~501~^0.100^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~502~^0.289^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~503~^0.387^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~504~^0.700^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~505~^0.520^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~506~^0.111^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~507~^0.076^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~508~^0.471^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~509~^0.197^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~510~^0.504^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~511~^0.415^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~512~^0.206^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~513~^0.369^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~514~^1.056^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~515~^1.259^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~516~^0.326^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~517~^0.454^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~518~^0.479^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16038~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2003~ -~16038~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~606~^0.098^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~613~^0.080^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~614~^0.018^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~617~^0.071^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16038~^~618~^0.136^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~619~^0.177^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~ -~16038~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~645~^0.142^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~646~^0.490^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~674~^0.071^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16038~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16038~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16038~^~851~^0.177^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~16039~^~312~^0.208^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~315~^0.375^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~404~^0.141^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~405~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~406~^0.487^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~410~^0.172^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~415~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16039~^~501~^0.090^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~502~^0.277^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~503~^0.356^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~504~^0.639^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~505~^0.527^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~506~^0.098^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~507~^0.071^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~508~^0.444^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~509~^0.178^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~510~^0.434^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~511~^0.413^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~512~^0.207^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~513~^0.342^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~514~^0.943^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~515~^1.210^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~516~^0.305^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~517~^0.431^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~518~^0.472^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~ -~16039~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16039~^~606~^0.112^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16039~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~613~^0.105^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~614~^0.007^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~617~^0.038^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~618~^0.101^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~619~^0.085^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16039~^~645~^0.038^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16039~^~646~^0.186^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16040~^~312~^0.810^16^0.046^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~315~^1.376^10^0.086^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~404~^0.772^14^0.039^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~405~^0.192^13^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~406~^1.892^10^0.053^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~410~^0.997^8^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~415~^0.527^8^0.024^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~501~^0.248^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~502~^0.882^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~503~^0.925^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~504~^1.673^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~505~^1.438^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~506~^0.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~507~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~508~^1.133^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~509~^0.590^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~510~^1.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~511~^1.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~512~^0.583^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~513~^0.878^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~514~^2.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~515~^3.195^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~516~^0.818^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~517~^0.889^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~518~^1.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16040~^~606~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~613~^0.274^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~614~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~617~^0.098^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~618~^0.265^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~619~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16040~^~645~^0.098^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16040~^~646~^0.487^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~312~^0.271^15^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~315~^0.548^9^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~404~^0.257^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~405~^0.063^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~406~^0.570^9^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~410~^0.299^8^0.014^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~415~^0.175^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~501~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~502~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~503~^0.400^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~504~^0.723^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~505~^0.622^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~506~^0.136^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~507~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~508~^0.490^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~509~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~510~^0.474^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~511~^0.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~512~^0.252^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~513~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~514~^1.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~515~^1.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~516~^0.354^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~517~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~518~^0.493^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16041~^~606~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~613~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~617~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~618~^0.114^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~619~^0.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16041~^~645~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16041~^~646~^0.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~312~^0.893^16^0.031^~11~^~JO~^^^2^0.758^1.240^11^0.825^0.961^~2, 3~^~04/01/2004~ -~16042~^~315~^1.148^16^0.034^~11~^~JO~^^^2^0.890^1.390^11^1.073^1.223^~2, 3~^~04/01/2004~ -~16042~^~404~^0.713^20^0.025^~11~^~JO~^^^2^0.403^0.970^18^0.661^0.765^~2, 3~^~04/01/2004~ -~16042~^~405~^0.212^20^0.018^~11~^~JO~^^^2^0.104^0.540^5^0.166^0.257^~2, 3~^~04/01/2004~ -~16042~^~406~^1.174^20^0.037^~11~^~JO~^^^2^0.750^1.580^17^1.096^1.252^~2, 3~^~04/01/2004~ -~16042~^~410~^0.785^20^0.015^~11~^~JO~^^^2^0.383^0.980^18^0.753^0.817^~2, 3~^~04/01/2004~ -~16042~^~415~^0.474^16^0.013^~11~^~JO~^^^2^0.305^0.619^14^0.445^0.503^~2, 3~^~04/01/2004~ -~16042~^~501~^0.237^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~502~^0.810^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~503~^0.871^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~504~^1.558^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~505~^1.356^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~506~^0.259^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~507~^0.187^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~508~^1.095^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~509~^0.427^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~510~^0.998^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~511~^1.096^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~512~^0.556^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~513~^0.872^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~514~^2.268^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~515~^3.027^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~516~^0.796^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~517~^1.072^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~518~^1.171^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16042~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2016~ -~16042~^~606~^0.235^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~613~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~617~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~618~^0.170^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~619~^0.237^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16042~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16042~^~645~^0.229^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16042~^~646~^0.407^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16043~^~312~^0.219^66^0.010^~11~^~JO~^^^12^0.000^0.389^32^0.198^0.240^~2, 3~^~04/01/2004~ -~16043~^~315~^0.453^66^0.021^~11~^~JO~^^^12^0.000^0.690^29^0.411^0.496^~2, 3~^~04/01/2004~ -~16043~^~404~^0.193^12^0.010^~11~^~JO~^^^2^0.071^0.310^9^0.170^0.216^~2, 3~^~04/01/2004~ -~16043~^~405~^0.062^12^0.006^~11~^~JO~^^^2^0.032^0.089^8^0.048^0.076^~2, 3~^~04/01/2004~ -~16043~^~406~^0.318^12^0.033^~11~^~JO~^^^2^0.037^0.560^10^0.244^0.392^~1, 2, 3~^~04/01/2004~ -~16043~^~410~^0.210^12^0.011^~11~^~JO~^^^2^0.009^0.370^7^0.185^0.235^~1, 2, 3~^~04/01/2004~ -~16043~^~415~^0.229^16^0.039^~11~^~JO~^^^2^0.084^0.594^11^0.142^0.315^~2, 3~^~04/01/2004~ -~16043~^~501~^0.108^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~502~^0.331^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~503~^0.426^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~504~^0.765^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~505~^0.630^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~506~^0.117^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~507~^0.084^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~508~^0.531^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~509~^0.213^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~510~^0.519^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~511~^0.494^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~512~^0.247^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~513~^0.409^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~514~^1.128^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~515~^1.447^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~516~^0.365^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~517~^0.515^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~518~^0.565^0^^~11~^~JO~^^^^^^^^^^~03/01/2006~ -~16043~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16043~^~606~^0.136^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~613~^0.133^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~614~^0.003^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~617~^0.133^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~618~^0.098^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~619~^0.137^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16043~^~645~^0.133^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16043~^~646~^0.235^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~16044~^~312~^0.162^4^0.008^~1~^~A~^^^1^0.143^0.180^3^0.138^0.186^~2, 3~^~04/01/2011~ -~16044~^~315~^0.318^4^0.017^~1~^~A~^^^1^0.282^0.357^3^0.264^0.372^~2, 3~^~04/01/2011~ -~16044~^~404~^0.052^4^0.009^~1~^~A~^^^1^0.030^0.070^3^0.025^0.080^~2, 3~^~04/01/2011~ -~16044~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~04/01/2011~ -~16044~^~406~^0.268^4^0.024^~1~^~A~^^^1^0.200^0.310^3^0.192^0.343^~2, 3~^~04/01/2011~ -~16044~^~410~^0.136^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16044~^~415~^0.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16044~^~501~^0.051^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~502~^0.176^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~503~^0.189^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~504~^0.338^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~505~^0.294^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~506~^0.056^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~507~^0.040^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~508~^0.237^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~509~^0.093^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~510~^0.216^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~511~^0.238^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~512~^0.120^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~513~^0.189^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~514~^0.492^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~515~^0.656^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~516~^0.172^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~517~^0.232^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~518~^0.254^0^^~6~^~JA~^^^^^^^^^^~04/01/2011~ -~16044~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16044~^~606~^0.123^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16044~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1986~ -~16044~^~613~^0.120^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16044~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2011~ -~16044~^~617~^0.114^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~16044~^~618~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~16044~^~619~^0.118^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~16044~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1994~ -~16044~^~645~^0.114^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~16044~^~646~^0.203^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~16045~^~312~^0.635^12^0.070^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~315~^1.278^12^0.032^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~404~^0.743^15^0.034^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~405~^0.207^15^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~406~^1.342^13^0.108^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~410~^0.729^12^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~415~^0.439^12^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~501~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~502~^0.888^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~503~^0.932^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~504~^1.685^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~505~^1.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~506~^0.317^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~507~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~508~^1.141^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~509~^0.594^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~510~^1.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~511~^1.307^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~512~^0.588^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~513~^0.885^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~514~^2.553^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~515~^3.218^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~516~^0.824^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~517~^0.895^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~518~^1.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16045~^~606~^0.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~613~^0.285^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~614~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~617~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~618~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~619~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~645~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16045~^~646~^0.507^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~312~^0.149^9^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~315~^0.510^9^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~404~^0.236^9^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~405~^0.059^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~406~^0.272^9^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~410~^0.251^8^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~415~^0.127^8^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~501~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~502~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~503~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~504~^0.716^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~505~^0.616^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~506~^0.135^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~507~^0.098^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~508~^0.485^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~509~^0.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~510~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~511~^0.555^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~512~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~513~^0.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~514~^1.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~515~^1.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~516~^0.350^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~517~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~518~^0.488^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16046~^~606~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~613~^0.155^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~614~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~617~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~618~^0.150^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~619~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~645~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16046~^~646~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~312~^0.639^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~315~^1.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~404~^0.690^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~405~^0.330^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~406~^2.430^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~410~^0.734^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~415~^0.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~501~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~502~^0.926^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~503~^0.972^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~504~^1.756^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~505~^1.510^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~506~^0.331^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~507~^0.239^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~508~^1.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~509~^0.620^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~510~^1.151^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~511~^1.362^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~512~^0.612^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~513~^0.922^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~514~^2.661^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~515~^3.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~516~^0.859^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~517~^0.933^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~518~^1.197^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16047~^~606~^0.671^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~612~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~613~^0.629^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~614~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~617~^0.226^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~618~^0.609^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~619~^0.510^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~645~^0.226^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16047~^~646~^1.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~312~^0.186^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~315~^0.455^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~404~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~405~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~406~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~410~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~415~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~501~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~502~^0.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~503~^0.405^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~504~^0.732^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~505~^0.629^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~506~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~507~^0.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~508~^0.496^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~509~^0.258^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~510~^0.479^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~511~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~512~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~513~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~514~^1.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~515~^1.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~516~^0.358^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~517~^0.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~518~^0.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16048~^~606~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~607~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~608~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~609~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~610~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~611~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~613~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~617~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~618~^0.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~619~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~620~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~621~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~626~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~627~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~628~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~629~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~630~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~631~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16048~^~645~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16048~^~646~^0.466^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~312~^0.984^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~315~^1.796^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~404~^0.437^6^0.174^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~405~^0.146^6^0.056^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~406~^0.479^4^0.291^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~410~^0.732^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~415~^0.318^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~501~^0.277^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~502~^0.983^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~503~^1.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~504~^1.865^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~505~^1.603^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~506~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~507~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~508~^1.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~509~^0.658^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~510~^1.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~511~^1.446^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~512~^0.650^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~513~^0.979^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~514~^2.825^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~515~^3.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~516~^0.912^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~517~^0.990^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~518~^1.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16049~^~606~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~613~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~614~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~617~^0.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~618~^0.198^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~619~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16049~^~645~^0.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16049~^~646~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~312~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~315~^0.636^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~404~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~405~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~406~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~410~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~415~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~501~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~502~^0.409^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~503~^0.429^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~504~^0.776^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~505~^0.668^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~506~^0.146^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~507~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~508~^0.526^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~509~^0.274^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~510~^0.509^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~511~^0.602^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~512~^0.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~513~^0.408^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~514~^1.176^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~515~^1.483^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~516~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~517~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~518~^0.529^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16050~^~606~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~613~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~617~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~618~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~619~^0.069^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16050~^~645~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16050~^~646~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~312~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~315~^0.515^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~404~^0.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~405~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~406~^0.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~410~^0.185^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~415~^0.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~501~^0.086^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~502~^0.305^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~503~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~504~^0.579^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~505~^0.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~506~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~507~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~508~^0.392^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~509~^0.204^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~510~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~511~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~512~^0.202^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~513~^0.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~514~^0.878^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~515~^1.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~516~^0.283^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~517~^0.308^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~518~^0.395^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16051~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16051~^~606~^0.074^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~612~^0.000^0^^~1~^^^^^^^^^^^~05/01/2006~ -~16051~^~613~^0.069^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~614~^0.004^0^^~1~^^^^^^^^^^^~05/01/2006~ -~16051~^~617~^0.025^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~618~^0.067^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~619~^0.056^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~645~^0.025^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16051~^~646~^0.123^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16052~^~312~^0.824^10^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~315~^1.626^8^0.148^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~404~^0.555^11^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~405~^0.333^12^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~406~^2.832^11^^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~410~^0.976^8^0.070^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~415~^0.366^8^0.010^~1~^^^^^^^^^^^~01/01/2005~ -~16052~^~501~^0.247^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~502~^0.928^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~503~^1.053^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~504~^1.964^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~505~^1.671^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~506~^0.213^176^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~507~^0.334^146^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~508~^1.103^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~509~^0.827^60^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~510~^1.161^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~511~^2.411^64^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~512~^0.664^62^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~513~^1.070^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~514~^2.916^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~515~^4.437^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~516~^1.095^61^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~517~^1.099^48^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~518~^1.195^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16052~^~606~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~611~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~612~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~613~^0.204^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~614~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~617~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~618~^0.581^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~619~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16052~^~645~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16052~^~646~^0.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~312~^0.259^8^0.041^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~315~^0.421^8^0.033^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~404~^0.097^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~405~^0.089^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~406~^0.711^8^0.066^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~410~^0.157^8^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~415~^0.072^8^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~501~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~502~^0.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~503~^0.306^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~504~^0.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~505~^0.486^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~506~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~507~^0.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~508~^0.321^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~509~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~510~^0.338^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~511~^0.702^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~512~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~513~^0.311^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~514~^0.849^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~515~^1.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~517~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~518~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16053~^~606~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~613~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~617~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~618~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~619~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16053~^~645~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16053~^~646~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~312~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~315~^0.288^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~404~^0.020^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~405~^0.050^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~406~^0.960^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~410~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~415~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~501~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~502~^0.194^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~503~^0.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~504~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~505~^0.350^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~506~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~507~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~508~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~509~^0.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~510~^0.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~511~^0.505^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~512~^0.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~513~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~514~^0.611^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~515~^0.929^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~516~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~517~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~518~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16054~^~606~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~613~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~614~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~617~^0.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~618~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~619~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~645~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16054~^~646~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~312~^0.571^6^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~315~^0.508^5^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~404~^0.053^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~405~^0.461^7^0.131^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~406~^1.897^8^0.146^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~410~^0.047^4^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~415~^0.366^4^0.045^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~501~^0.048^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~502~^0.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~503~^0.209^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~504~^0.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~505~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~506~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~507~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~508~^0.151^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~509~^0.120^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~510~^0.446^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~511~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~512~^0.122^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~513~^0.584^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~514~^0.503^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~515~^0.362^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~516~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~517~^0.354^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~518~^0.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16055~^~606~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~613~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~614~^0.014^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~617~^0.194^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~618~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~619~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16055~^~645~^0.197^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16055~^~646~^0.216^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~312~^0.656^19^0.033^~1~^~A~^^^1^0.453^0.968^18^0.586^0.725^~2, 3~^~04/01/2014~ -~16056~^~315~^21.306^19^17.106^~1~^~A~^^^1^2.949^329.201^18^-14.633^57.244^~2, 3~^~04/01/2014~ -~16056~^~404~^0.477^42^0.033^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~405~^0.212^48^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~406~^1.541^43^0.068^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~410~^1.588^20^0.063^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~415~^0.535^26^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~502~^0.766^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~503~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~504~^1.465^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~505~^1.377^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~506~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~507~^0.279^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~508~^1.103^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~509~^0.512^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~510~^0.865^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~511~^1.939^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~512~^0.566^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~513~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~514~^2.422^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~515~^3.603^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~516~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~517~^0.849^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~518~^1.036^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~16056~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16056~^~606~^0.603^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16056~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~612~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~613~^0.508^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16056~^~614~^0.086^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16056~^~617~^1.365^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16056~^~618~^2.629^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16056~^~619~^0.102^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16056~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~626~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16056~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16056~^~645~^1.377^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16056~^~646~^2.731^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16057~^~312~^0.352^27^0.026^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~315~^1.030^21^0.051^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~404~^0.116^21^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~405~^0.063^21^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~406~^0.526^21^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~410~^0.286^8^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~415~^0.139^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~501~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~502~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~503~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~504~^0.631^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~505~^0.593^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~506~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~507~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~508~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~509~^0.220^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~510~^0.372^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~511~^0.835^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~512~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~513~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~514~^1.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~515~^1.550^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~516~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~517~^0.366^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~518~^0.447^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16057~^~606~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~613~^0.215^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~614~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~617~^0.578^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~618~^1.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~619~^0.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~626~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~16057~^~645~^0.583^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16057~^~646~^1.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16058~^~312~^0.153^4^0.010^~1~^~A~^^^1^0.135^0.173^3^0.121^0.186^~2, 3~^~05/01/2011~ -~16058~^~315~^0.818^4^0.100^~1~^~A~^^^1^0.525^0.954^3^0.501^1.135^~2, 3~^~05/01/2011~ -~16058~^~404~^0.032^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.017^0.048^~2, 3~^~05/01/2011~ -~16058~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2011~ -~16058~^~406~^0.130^4^0.012^~1~^~A~^^^1^0.100^0.150^3^0.091^0.169^~2, 3~^~05/01/2011~ -~16058~^~410~^0.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16058~^~415~^0.473^21^0.060^~1~^^^^^^^^^^^~12/01/1986~ -~16058~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~502~^0.184^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~503~^0.212^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~504~^0.352^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~505~^0.331^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~507~^0.067^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~508~^0.265^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~509~^0.123^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~510~^0.208^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~511~^0.466^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~512~^0.136^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~513~^0.212^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~514~^0.582^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~515~^0.866^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~516~^0.206^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~517~^0.204^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~518~^0.249^0^^~1~^~A~^^^^^^^^^^~12/01/1986~ -~16058~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16058~^~606~^0.204^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~612~^0.003^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~613~^0.164^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~614~^0.028^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~617~^0.441^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~618~^0.849^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~619~^0.033^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~626~^0.003^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~645~^0.444^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16058~^~646~^0.881^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16059~^~312~^0.117^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~315~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~404~^0.048^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~405~^0.105^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~406~^0.358^16^0.030^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~410~^1.420^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~415~^0.132^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~501~^0.069^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~502~^0.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~503~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~504~^0.456^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~505~^0.409^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~506~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~507~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~508~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~509~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~510~^0.294^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~511~^0.360^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~512~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~513~^0.265^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~514~^0.659^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~515~^0.877^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~516~^0.261^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~517~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~518~^0.293^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16059~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16059~^~606~^1.133^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~16059~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~610~^0.010^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~611~^0.006^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~612~^0.069^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~613~^0.810^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~614~^0.238^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~617~^1.545^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~618~^0.143^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~619~^0.105^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~626~^0.056^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16059~^~645~^1.601^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16059~^~646~^0.249^0^^~1~^^^^^^^^^^^~05/01/2015~ -~16060~^~312~^1.059^4^0.170^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~315~^1.544^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~404~^0.680^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~405~^0.170^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~406~^2.795^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~410~^1.511^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~415~^0.361^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~501~^0.294^49^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~502~^0.908^72^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~503~^0.969^72^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~504~^1.828^72^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~505~^1.614^78^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~506~^0.340^108^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~507~^0.263^92^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~508~^1.393^72^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~509~^0.771^54^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~510~^1.137^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~511~^1.652^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~512~^0.740^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~513~^1.088^52^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~514~^2.881^52^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~515~^4.518^52^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~516~^0.985^52^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~517~^1.072^51^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~518~^1.194^52^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16060~^~606~^0.542^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~613~^0.417^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~614~^0.087^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~617~^0.144^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~618~^0.563^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~619~^0.326^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~626~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~628~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~630~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~645~^0.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16060~^~646~^0.889^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~312~^0.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~315~^0.473^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~404~^0.162^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~405~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~406~^0.714^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~410~^0.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~415~^0.092^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~501~^0.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~502~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~503~^0.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~504~^0.623^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~505~^0.550^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~506~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~507~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~508~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~509~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~510~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~511~^0.563^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~512~^0.252^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~513~^0.371^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~514~^0.982^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~515~^1.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~516~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~517~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~518~^0.407^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16061~^~606~^0.185^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~613~^0.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~614~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~617~^0.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~618~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~619~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~630~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~645~^0.059^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16061~^~646~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~312~^0.845^48^0.030^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~315~^1.528^42^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~404~^0.853^197^0.031^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~405~^0.226^204^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~406~^2.075^189^0.094^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~410~^1.496^166^0.058^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~415~^0.357^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~501~^0.290^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~502~^0.895^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~503~^0.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~504~^1.802^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~505~^1.591^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~506~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~507~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~508~^1.373^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~509~^0.760^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~510~^1.121^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~511~^1.629^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~512~^0.730^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~513~^1.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~514~^2.840^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~515~^4.454^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~516~^0.971^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~517~^1.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~518~^1.178^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16062~^~606~^0.331^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~613~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~614~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~617~^0.088^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~618~^0.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~619~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~630~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16062~^~645~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16062~^~646~^0.542^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~312~^0.268^35^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~315~^0.475^29^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~404~^0.202^21^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~405~^0.055^21^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~406~^0.495^21^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~410~^0.411^8^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~415~^0.100^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~501~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~502~^0.294^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~503~^0.314^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~504~^0.592^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~505~^0.523^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~507~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~508~^0.451^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~509~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~510~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~511~^0.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~512~^0.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~513~^0.352^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~514~^0.933^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~515~^1.463^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~517~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~518~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16063~^~606~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~613~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~614~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~617~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~618~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~619~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~630~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16063~^~645~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16063~^~646~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~312~^0.117^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~315~^0.283^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~404~^0.076^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~405~^0.074^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~406~^0.354^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~410~^0.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~415~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~501~^0.058^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~502~^0.180^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~503~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~504~^0.363^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~505~^0.321^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~506~^0.067^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~507~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~508~^0.277^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~509~^0.153^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~510~^0.226^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~511~^0.328^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~512~^0.147^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~513~^0.216^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~514~^0.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~515~^0.897^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~516~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~517~^0.213^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~518~^0.237^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16064~^~606~^0.144^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~613~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~614~^0.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~617~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~618~^0.150^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~619~^0.087^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~630~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~645~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16064~^~646~^0.237^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~312~^0.170^30^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~315~^0.392^30^0.021^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~404~^0.063^34^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~405~^0.050^34^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~406~^0.431^34^0.014^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~410~^0.191^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16065~^~415~^0.045^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16065~^~501~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~502~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~503~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~504~^0.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~505~^0.186^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~506~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~507~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~508~^0.160^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~509~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~510~^0.131^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~511~^0.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~512~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~513~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~514~^0.331^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~515~^0.519^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~516~^0.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~517~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~518~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16065~^~606~^0.605^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~610~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~611~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~612~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~613~^0.374^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~614~^0.201^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~617~^0.603^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~618~^0.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~619~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~626~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~628~^0.015^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~645~^0.656^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16065~^~646~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~312~^1.335^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~315~^1.573^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~404~^1.130^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~405~^0.136^6^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~406~^1.610^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~410~^1.237^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~415~^0.155^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~501~^0.199^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~502~^0.925^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~503~^1.143^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~504~^2.026^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~505~^1.632^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~506~^0.191^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~507~^0.279^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~508~^1.204^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~509~^0.853^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~510~^1.239^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~511~^1.755^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~512~^0.684^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~513~^1.067^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~514~^2.821^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~515~^3.880^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~516~^1.028^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~517~^1.162^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~518~^1.315^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16067~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16067~^~606~^0.288^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~617~^0.076^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~618~^0.715^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16067~^~645~^0.076^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16067~^~646~^0.715^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16068~^~312~^0.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~315~^0.482^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~404~^0.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~405~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~406~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~410~^0.316^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~415~^0.037^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~501~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~502~^0.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~503~^0.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~504~^0.691^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~505~^0.556^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~506~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~507~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~508~^0.410^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~509~^0.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~510~^0.422^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~511~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~512~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~514~^0.962^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~515~^1.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~516~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~517~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~518~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16068~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16068~^~606~^0.099^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~617~^0.026^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~618~^0.245^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16068~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16068~^~646~^0.245^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16069~^~312~^0.754^28^0.023^~1~^~A~^^^1^0.570^1.100^27^0.707^0.801^~2, 3~^~04/01/2014~ -~16069~^~315~^1.393^28^0.082^~1~^~A~^^^1^0.885^2.560^27^1.225^1.560^~2, 3~^~04/01/2014~ -~16069~^~404~^0.873^8^0.042^~1~^~A~^^^1^0.700^1.020^7^0.772^0.973^~2, 3~^~03/01/2010~ -~16069~^~405~^0.211^8^0.004^~1~^~A~^^^1^0.195^0.230^7^0.202^0.220^~2, 3~^~03/01/2010~ -~16069~^~406~^2.605^8^0.049^~1~^~A~^^^1^2.360^2.770^7^2.488^2.722^~2, 3~^~03/01/2010~ -~16069~^~410~^2.140^8^0.043^~1~^~A~^^^1^1.990^2.380^7^2.038^2.242^~2, 3~^~03/01/2010~ -~16069~^~415~^0.540^8^0.017^~1~^~A~^^^1^0.480^0.612^7^0.501^0.579^~2, 3~^~03/01/2010~ -~16069~^~501~^0.221^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~502~^0.882^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~503~^1.065^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~504~^1.786^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~505~^1.720^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~506~^0.210^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~507~^0.322^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~508~^1.215^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~509~^0.658^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~510~^1.223^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~511~^1.903^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~512~^0.693^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~513~^1.029^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~514~^2.725^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~515~^3.819^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~516~^1.002^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~517~^1.029^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~518~^1.136^0^^~4~^~BFPN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16069~^~606~^0.154^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16069~^~607~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~608~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~609~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~610~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~611~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~612~^0.003^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~613~^0.136^0^^~4~^~BFSN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~614~^0.015^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~617~^0.184^0^^~4~^~BFSN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~618~^0.414^0^^~4~^~BFSN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~619~^0.112^0^^~4~^~BFSN~^~16070~^^^^^^^^^~04/01/2014~ -~16069~^~620~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~621~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~626~^0.003^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~627~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~628~^0.006^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~629~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~630~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~631~^0.000^0^^~4~^~BFSN~^~16070~^^^^^^^^^~03/01/2010~ -~16069~^~645~^0.193^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16069~^~646~^0.526^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16070~^~312~^0.251^21^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~315~^0.494^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~404~^0.169^20^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~405~^0.073^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~406~^1.060^20^0.092^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~410~^0.638^8^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~415~^0.178^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~501~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~502~^0.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~503~^0.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~504~^0.654^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~505~^0.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~506~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~507~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~508~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~509~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~510~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~511~^0.697^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~512~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~513~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~514~^0.998^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~515~^1.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~516~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~517~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~518~^0.416^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16070~^~606~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~613~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~617~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~618~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~619~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~628~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16070~^~645~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16070~^~646~^0.175^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~312~^0.740^58^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~315~^1.672^28^0.073^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~404~^0.507^32^0.033^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~405~^0.202^36^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~406~^1.537^32^0.046^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~410~^1.355^16^0.084^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~415~^0.512^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~501~^0.254^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~502~^0.927^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~503~^1.129^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~504~^1.850^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~505~^1.438^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~506~^0.271^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~507~^0.237^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~508~^1.236^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~509~^0.759^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~510~^1.291^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~511~^1.315^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~512~^0.656^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~513~^1.095^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~514~^2.767^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~515~^3.038^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~516~^0.906^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~517~^0.975^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~518~^1.428^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16071~^~606~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~612~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~613~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~614~^0.032^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~617~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~618~^0.215^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~619~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~630~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16071~^~645~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16071~^~646~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~312~^0.235^36^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~315~^0.516^30^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~404~^0.161^22^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~405~^0.055^22^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~406~^0.421^22^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~410~^0.422^8^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~415~^0.161^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~501~^0.092^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~502~^0.337^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~503~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~504~^0.673^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~505~^0.523^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~506~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~507~^0.086^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~508~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~509~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~510~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~511~^0.478^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~512~^0.238^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~513~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~514~^1.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~515~^1.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~516~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~517~^0.354^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~518~^0.519^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16072~^~606~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~613~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~614~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~617~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~618~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~619~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~630~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16072~^~645~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16072~^~646~^0.171^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~312~^0.180^6^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~315~^0.363^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~404~^0.055^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~405~^0.034^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~406~^0.261^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~410~^0.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~415~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~501~^0.058^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~502~^0.213^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~503~^0.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~504~^0.425^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~505~^0.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~506~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~507~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~508~^0.284^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~509~^0.174^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~510~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~511~^0.302^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~512~^0.151^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~513~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~514~^0.635^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~515~^0.697^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~516~^0.208^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~517~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~518~^0.328^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16073~^~606~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~613~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~617~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~618~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~619~^0.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~630~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~645~^0.015^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16073~^~646~^0.074^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~312~^0.665^25^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~315~^1.686^25^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~404~^0.574^29^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~405~^0.218^29^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~406~^1.712^29^0.070^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~410~^1.265^16^0.090^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~415~^0.327^16^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~501~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~502~^0.891^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~503~^1.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~504~^1.778^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~505~^1.382^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~506~^0.261^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~507~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~508~^1.188^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~509~^0.729^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~510~^1.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~511~^1.264^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~512~^0.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~513~^1.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~514~^2.659^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~515~^2.920^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~516~^0.871^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~517~^0.937^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~518~^1.372^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16074~^~606~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~607~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~608~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~609~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~610~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~612~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~613~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~614~^0.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~617~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~618~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~619~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~620~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~621~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~626~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~627~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~629~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~630~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~631~^0.000^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~ -~16074~^~645~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16074~^~646~^0.420^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~312~^0.215^20^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~315~^0.585^21^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~404~^0.161^21^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~405~^0.055^21^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~406~^0.660^21^0.054^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~410~^0.472^8^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~415~^0.078^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~501~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~502~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~503~^0.423^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~504~^0.694^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~505~^0.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~506~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~507~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~508~^0.463^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~509~^0.284^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~510~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~511~^0.493^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~512~^0.246^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~513~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~514~^1.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~515~^1.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~516~^0.340^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~517~^0.366^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~518~^0.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16075~^~606~^0.088^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~613~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~617~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~618~^0.117^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~619~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~630~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~645~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16075~^~646~^0.169^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~312~^1.022^18^0.070^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~315~^2.382^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16076~^~404~^0.640^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~405~^0.220^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~406~^2.190^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~410~^0.750^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16076~^~415~^0.357^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16076~^~501~^0.289^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~502~^1.331^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~503~^1.615^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~504~^2.743^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~505~^1.933^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~506~^0.255^25^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~507~^0.446^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~508~^1.435^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~509~^1.360^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~510~^1.510^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~511~^3.877^25^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~512~^1.030^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~513~^1.296^23^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~514~^3.877^23^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~515~^8.686^23^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~516~^1.539^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~517~^1.476^23^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~518~^1.869^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16076~^~606~^1.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~611~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~612~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~613~^0.742^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~614~^0.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~617~^3.558^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~618~^1.995^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~619~^0.446^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~626~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~628~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~630~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~645~^3.940^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16076~^~646~^2.439^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~312~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~315~^0.676^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~404~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~405~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~406~^0.495^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~410~^0.188^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~415~^0.009^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16077~^~501~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~502~^0.573^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~503~^0.695^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~504~^1.181^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~505~^0.832^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~507~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~508~^0.618^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~509~^0.585^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~510~^0.650^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~511~^1.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~512~^0.443^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~513~^0.558^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~514~^1.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~515~^3.739^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~516~^0.663^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~517~^0.635^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~518~^0.805^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16077~^~606~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~611~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~613~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~614~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~617~^1.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~618~^0.597^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~619~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~626~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~628~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~630~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~645~^1.180^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16077~^~646~^0.730^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~312~^0.688^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~315~^1.820^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~404~^0.562^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~405~^0.091^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~406~^2.800^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~410~^1.535^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16078~^~415~^0.366^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16078~^~501~^0.147^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~503~^1.138^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~504~^1.541^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~505~^1.248^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~506~^0.220^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~507~^0.117^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~508~^1.028^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~510~^0.734^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~512~^0.771^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16078~^~606~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~613~^0.313^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~614~^0.051^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~617~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~618~^0.485^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~619~^0.265^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~645~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16078~^~646~^0.750^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~312~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~315~^0.527^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~404~^0.124^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~405~^0.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~406~^0.668^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~410~^0.391^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16079~^~415~^0.093^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16079~^~501~^0.050^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~503~^0.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~504~^0.525^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~505~^0.425^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~506~^0.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~507~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~508~^0.350^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~510~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~512~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16079~^~606~^0.124^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~613~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~617~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~618~^0.165^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~645~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16079~^~646~^0.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~312~^0.941^21^0.044^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~315~^1.035^19^0.076^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~404~^0.621^19^0.076^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~405~^0.233^25^0.024^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~406~^2.251^18^0.193^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~410~^1.910^8^0.046^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~415~^0.382^18^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~501~^0.260^61^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~502~^0.782^51^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~503~^1.008^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~504~^1.847^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~505~^1.664^383^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~506~^0.286^423^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~507~^0.210^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~508~^1.443^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~509~^0.714^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~510~^1.237^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~511~^1.672^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~512~^0.695^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~513~^1.050^21^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~514~^2.756^21^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~515~^4.264^21^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~516~^0.954^21^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~517~^1.095^19^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~518~^1.176^21^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16080~^~606~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~613~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~614~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~617~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~618~^0.357^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~619~^0.027^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16080~^~645~^0.161^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16080~^~646~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~312~^0.156^8^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~315~^0.298^8^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~404~^0.164^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~405~^0.061^8^0.000^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~406~^0.577^8^0.079^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~410~^0.410^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~415~^0.067^8^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~501~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~502~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~503~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~504~^0.544^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~505~^0.490^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~506~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~507~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~508~^0.425^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~509~^0.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~510~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~511~^0.492^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~512~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~513~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~514~^0.812^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~515~^1.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~516~^0.281^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~517~^0.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~518~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16081~^~606~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~613~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~614~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~617~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~618~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~619~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16081~^~645~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16081~^~646~^0.128^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~312~^0.081^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~315~^0.100^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~404~^0.150^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~405~^0.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~406~^0.200^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~410~^0.100^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~415~^0.050^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16082~^~501~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~502~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~503~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~504~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~505~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~506~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~507~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~508~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~509~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~510~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~511~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~512~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~513~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~514~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~515~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~516~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~517~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~518~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16082~^~606~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~613~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~614~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~617~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~618~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~619~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16082~^~645~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16082~^~646~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16083~^~312~^0.981^5^0.174^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~315~^1.527^3^0.037^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~404~^0.273^5^0.054^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~405~^0.254^11^0.035^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~406~^1.447^5^0.324^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~410~^0.906^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~415~^0.281^9^0.024^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16083~^~501~^0.263^56^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~502~^0.875^14^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~503~^1.287^8^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~504~^2.089^8^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~505~^1.674^29^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~506~^0.367^56^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~507~^0.234^4^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~508~^1.473^8^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~509~^0.783^7^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~510~^1.416^8^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~511~^1.642^9^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~512~^0.706^9^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~513~^1.077^6^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~514~^2.948^7^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~515~^4.126^7^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~516~^1.053^6^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~517~^1.166^6^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~518~^1.327^6^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16083~^~606~^0.114^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~613~^0.144^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~617~^0.085^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~618~^0.072^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~619~^0.999^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~645~^0.085^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16083~^~646~^1.071^0^^~1~^^^^^^^^^^^~12/01/1996~ -~16084~^~312~^0.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~315~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~404~^0.150^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~405~^0.075^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~406~^1.500^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~410~^0.433^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~415~^0.058^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~501~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~502~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~503~^0.385^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~504~^0.625^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~505~^0.500^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~507~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~508~^0.440^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~509~^0.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~510~^0.423^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~511~^0.491^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~512~^0.211^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~513~^0.322^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~514~^0.882^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~515~^1.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~516~^0.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~517~^0.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~518~^0.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16084~^~606~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~613~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~614~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~617~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~618~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~619~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16084~^~645~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16084~^~646~^0.359^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16085~^~312~^0.809^72^0.026^~1~^~A~^^^2^0.566^2.472^55^0.757^0.861^~2, 3~^~03/01/2016~ -~16085~^~315~^1.190^72^0.029^~1~^~A~^^^2^0.737^2.167^70^1.133^1.247^~2, 3~^~03/01/2016~ -~16085~^~404~^0.719^7^0.026^~1~^~A~^^^1^0.660^0.840^6^0.656^0.781^~2, 3~^~03/01/2016~ -~16085~^~405~^0.244^7^0.008^~1~^~A~^^^1^0.220^0.270^6^0.224^0.265^~2, 3~^~03/01/2016~ -~16085~^~406~^3.608^6^0.133^~1~^~A~^^^1^3.250^4.190^5^3.265^3.951^~2, 3~^~03/01/2016~ -~16085~^~410~^0.962^4^0.129^~1~^~A~^^^1^0.630^1.260^3^0.552^1.373^~2, 3~^~03/01/2016~ -~16085~^~415~^0.140^6^0.025^~1~^~A~^^^1^0.070^0.240^5^0.076^0.204^~2, 3~^~03/01/2016~ -~16085~^~501~^0.159^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~502~^0.813^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~503~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~504~^1.680^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~505~^1.771^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~506~^0.195^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~508~^1.151^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~509~^0.518^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~510~^1.035^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~511~^1.902^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~512~^0.586^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~513~^1.049^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~514~^2.549^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~515~^3.871^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~516~^1.012^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~517~^1.035^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~518~^1.069^0^^~1~^~A~^^^^^^^^^^~03/01/2016~ -~16085~^~521~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~606~^0.408^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~610~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.002^0.006^~1, 2, 3~^~03/01/2016~ -~16085~^~611~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.000^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~612~^0.006^12^0.000^~1~^~A~^^^1^0.004^0.008^11^0.005^0.007^~2, 3~^~03/01/2016~ -~16085~^~613~^0.268^12^0.007^~1~^~A~^^^1^0.239^0.325^11^0.252^0.284^~2, 3~^~03/01/2016~ -~16085~^~614~^0.096^12^0.006^~1~^~A~^^^1^0.071^0.140^11^0.082^0.110^~2, 3~^~03/01/2016~ -~16085~^~615~^0.013^12^0.001^~1~^~A~^^^1^0.008^0.021^11^0.010^0.015^~2, 3~^~03/01/2016~ -~16085~^~617~^0.602^12^0.047^~1~^~AS~^^^1^0.378^0.938^11^0.498^0.705^~2, 3~^~03/01/2016~ -~16085~^~618~^0.856^12^0.019^~1~^~AS~^^^1^0.769^0.985^11^0.814^0.898^~2, 3~^~03/01/2016~ -~16085~^~619~^0.163^12^0.007^~1~^~AS~^^^1^0.122^0.202^11^0.147^0.180^~2, 3~^~03/01/2016~ -~16085~^~620~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~624~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.003^0.004^~1, 2, 3~^~03/01/2016~ -~16085~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~626~^0.001^12^0.000^~1~^~AS~^^^1^0.001^0.002^11^0.001^0.002^~2, 3~^~03/01/2016~ -~16085~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~628~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.013^11^0.008^0.010^~2, 3~^~03/01/2016~ -~16085~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^ -~16085~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.003^11^0.001^0.002^~2, 3~^~03/01/2016~ -~16085~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^ -~16085~^~645~^0.615^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~646~^1.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~03/01/2016~ -~16085~^~653~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.006^11^0.005^0.005^~2, 3~^~03/01/2016~ -~16085~^~654~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.009^11^0.006^0.008^~2, 3~^~03/01/2016~ -~16085~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~663~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~03/01/2016~ -~16085~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~665~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.002^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~670~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~03/01/2016~ -~16085~^~672~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~673~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~674~^0.600^12^0.047^~1~^~A~^^^1^0.378^0.936^11^0.497^0.703^~2, 3~^~03/01/2016~ -~16085~^~675~^0.854^12^0.019^~1~^~A~^^^1^0.767^0.983^11^0.812^0.896^~2, 3~^~03/01/2016~ -~16085~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~03/01/2016~ -~16085~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~03/01/2016~ -~16085~^~687~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.001^~1, 2, 3~^~03/01/2016~ -~16085~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2016~ -~16085~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~16085~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~03/01/2016~ -~16085~^~851~^0.163^12^0.007^~1~^~A~^^^1^0.122^0.201^11^0.147^0.179^~2, 3~^~03/01/2016~ -~16085~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16085~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2016~ -~16086~^~312~^0.181^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~315~^0.396^20^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~404~^0.190^20^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~405~^0.056^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~406~^0.890^20^0.059^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~410~^0.595^8^0.035^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~415~^0.048^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~501~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~502~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~503~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~504~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~505~^0.602^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~506~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~507~^0.127^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~508~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~509~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~510~^0.394^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~511~^0.744^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~512~^0.203^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~513~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~514~^0.984^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~515~^1.426^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~516~^0.371^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~517~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~518~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16086~^~606~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~613~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~614~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~617~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~618~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~619~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~628~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16086~^~645~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16086~^~646~^0.165^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16087~^~312~^1.144^45^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~315~^1.934^44^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~404~^0.640^24^0.034^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~405~^0.135^20^0.005^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~406~^12.066^24^0.305^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~410~^1.767^8^0.100^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~415~^0.348^8^0.020^~1~^~A~^^^^^^^^^^~05/01/2014~ -~16087~^~501~^0.250^128^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~502~^0.883^144^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~503~^0.907^140^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~504~^1.672^140^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~505~^0.926^147^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~506~^0.317^22^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~507~^0.331^29^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~508~^1.377^141^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~509~^1.049^137^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~510~^1.082^141^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~511~^3.085^140^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~512~^0.652^140^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~513~^1.025^135^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~514~^3.146^135^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~515~^5.390^133^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~516~^1.554^134^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~517~^1.138^130^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~518~^1.271^134^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16087~^~606~^6.279^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~612~^0.025^0^^~1~^^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~613~^5.154^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~614~^1.100^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~617~^23.756^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~618~^15.555^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~619~^0.003^0^^~1~^^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~620~^0.000^0^^~1~^^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~626~^0.009^0^^~1~^^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~627~^0.000^0^^~4~^~BFSN~^~16090~^^^^^^^^^~04/01/2014~ -~16087~^~628~^0.661^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16087~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~630~^0.000^0^^~1~^^~16090~^^^^^^^^^~05/01/2014~ -~16087~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~16087~^~645~^24.426^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16087~^~646~^15.558^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16088~^~312~^0.499^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~315~^1.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~404~^0.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~405~^0.063^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~406~^5.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~410~^0.825^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~415~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~501~^0.131^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~502~^0.462^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~503~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~504~^0.875^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~505~^0.485^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~506~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~507~^0.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~508~^0.700^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~509~^0.549^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~510~^0.566^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~511~^1.615^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~512~^0.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~513~^0.537^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~514~^1.647^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~515~^2.822^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~516~^0.814^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~517~^0.596^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~518~^0.665^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16088~^~606~^3.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~612~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~613~^2.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~614~^0.492^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~617~^10.620^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~618~^6.954^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~619~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~628~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16088~^~645~^10.921^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16088~^~646~^6.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16089~^~312~^0.533^4^0.016^~1~^~A~^^^1^0.488^0.565^3^0.481^0.586^~2, 3~^~02/01/2003~ -~16089~^~315~^1.845^4^0.050^~1~^~A~^^^1^1.750^1.970^3^1.686^2.004^~2, 3~^~11/01/2002~ -~16089~^~404~^0.085^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.064^0.106^~2, 3~^~02/01/2003~ -~16089~^~405~^0.089^3^0.021^~1~^~A~^^^1^0.050^0.120^2^0.000^0.178^~2, 3~^~02/01/2003~ -~16089~^~406~^13.825^4^0.397^~1~^~A~^^^1^12.900^14.800^3^12.563^15.087^~2, 3~^~02/01/2003~ -~16089~^~410~^1.202^4^0.054^~1~^~A~^^^1^1.110^1.320^3^1.029^1.375^~2, 3~^~11/01/2002~ -~16089~^~415~^0.461^4^0.021^~1~^~A~^^^1^0.435^0.523^3^0.395^0.527^~2, 3~^~02/01/2003~ -~16089~^~501~^0.231^4^0.004^~1~^~A~^^^1^0.219^0.235^3^0.219^0.243^~2, 3~^~02/01/2007~ -~16089~^~502~^0.610^4^0.014^~1~^~A~^^^1^0.586^0.648^3^0.564^0.656^~2, 3~^~02/01/2007~ -~16089~^~503~^0.978^4^0.015^~1~^~A~^^^1^0.940^1.008^3^0.931^1.025^~2, 3~^~02/01/2007~ -~16089~^~504~^1.812^4^0.026^~1~^~A~^^^1^1.746^1.859^3^1.730^1.894^~2, 3~^~02/01/2007~ -~16089~^~505~^0.945^4^0.019^~1~^~A~^^^1^0.898^0.978^3^0.884^1.007^~2, 3~^~02/01/2007~ -~16089~^~506~^0.291^4^0.029^~1~^~A~^^^1^0.241^0.375^3^0.199^0.383^~2, 3~^~02/01/2007~ -~16089~^~507~^0.375^4^0.028^~1~^~A~^^^1^0.343^0.457^3^0.287^0.463^~2, 3~^~02/01/2007~ -~16089~^~508~^1.427^4^0.021^~1~^~A~^^^1^1.375^1.466^3^1.360^1.495^~2, 3~^~02/01/2007~ -~16089~^~509~^1.006^4^0.012^~1~^~A~^^^1^0.977^1.034^3^0.967^1.046^~2, 3~^~02/01/2007~ -~16089~^~510~^1.146^4^0.011^~1~^~A~^^^1^1.125^1.166^3^1.110^1.182^~2, 3~^~02/01/2007~ -~16089~^~511~^3.247^4^0.067^~1~^~A~^^^1^3.062^3.355^3^3.035^3.459^~2, 3~^~02/01/2007~ -~16089~^~512~^0.655^4^0.006^~1~^~A~^^^1^0.637^0.665^3^0.635^0.675^~2, 3~^~02/01/2007~ -~16089~^~513~^1.092^4^0.017^~1~^~A~^^^1^1.045^1.119^3^1.037^1.147^~2, 3~^~02/01/2007~ -~16089~^~514~^3.272^4^0.055^~1~^~A~^^^1^3.110^3.348^3^3.097^3.447^~2, 3~^~02/01/2007~ -~16089~^~515~^5.422^4^0.077^~1~^~A~^^^1^5.206^5.555^3^5.176^5.668^~2, 3~^~02/01/2007~ -~16089~^~516~^1.621^4^0.020^~1~^~A~^^^1^1.577^1.671^3^1.557^1.686^~2, 3~^~02/01/2007~ -~16089~^~517~^1.173^4^0.023^~1~^~A~^^^1^1.126^1.217^3^1.100^1.245^~2, 3~^~02/01/2007~ -~16089~^~518~^1.285^4^0.019^~1~^~A~^^^1^1.232^1.320^3^1.225^1.345^~2, 3~^~02/01/2007~ -~16089~^~606~^8.655^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~16089~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~609~^0.000^0^^~1~^^^^^^^^^^^~11/01/2011~ -~16089~^~610~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~611~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~612~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~613~^5.049^4^0.107^~1~^~A~^^^1^5.056^5.514^3^4.872^5.555^~2, 3~^~11/01/2011~ -~16089~^~614~^1.403^4^0.030^~1~^~A~^^^1^1.364^1.498^3^1.352^1.545^~2, 3~^~11/01/2011~ -~16089~^~615~^0.668^4^0.010^~1~^~A~^^^1^0.659^0.701^3^0.657^0.723^~2, 3~^~02/01/2007~ -~16089~^~617~^25.231^4^0.469^~1~^~A~^^^1^24.892^27.059^3^24.561^27.544^~2, 3~^~11/01/2011~ -~16089~^~618~^15.114^4^0.159^~1~^~A~^^^1^15.313^15.979^3^15.100^16.112^~2, 3~^~11/01/2011~ -~16089~^~619~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~620~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~624~^1.326^4^0.025^~1~^~A~^^^1^1.334^1.444^3^1.290^1.449^~2, 3~^~11/01/2011~ -~16089~^~625~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~626~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~628~^0.613^4^0.014^~1~^~A~^^^1^0.601^0.669^3^0.588^0.678^~2, 3~^~11/01/2011~ -~16089~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2007~ -~16089~^~645~^25.995^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~16089~^~646~^15.303^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~ -~16089~^~652~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~653~^0.057^4^0.003^~1~^~A~^^^1^0.054^0.064^3^0.051^0.067^~2, 3~^~02/01/2007~ -~16089~^~672~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~685~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~687~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~689~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16089~^~697~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~02/01/2007~ -~16090~^~312~^0.428^17^0.010^~1~^~A~^^^1^0.362^0.566^14^0.406^0.451^~2, 3~^~04/01/2014~ -~16090~^~315~^1.786^17^0.063^~1~^~A~^^^1^1.230^2.020^5^1.628^1.944^~2, 3~^~04/01/2014~ -~16090~^~404~^0.152^8^0.006^~1~^~A~^^^1^0.120^0.180^4^0.135^0.169^~2, 3~^~04/01/2014~ -~16090~^~405~^0.197^8^0.013^~1~^~A~^^^1^0.160^0.300^4^0.163^0.231^~2, 3~^~04/01/2014~ -~16090~^~406~^14.355^8^0.237^~1~^~A~^^^1^13.500^15.300^4^13.706^15.004^~2, 3~^~04/01/2014~ -~16090~^~410~^1.011^5^0.052^~1~^~A~^^^1^0.930^1.100^1^0.681^1.341^~2, 3~^~04/01/2014~ -~16090~^~415~^0.466^8^0.009^~1~^~A~^^^1^0.440^0.500^4^0.441^0.491^~2, 3~^~04/01/2014~ -~16090~^~501~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~502~^0.811^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~503~^0.833^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~504~^1.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~505~^0.850^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~506~^0.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~507~^0.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~508~^1.227^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~509~^0.963^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~510~^0.993^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~511~^2.832^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~512~^0.599^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~513~^0.941^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~514~^2.888^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~515~^4.949^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~516~^1.427^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~517~^1.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~518~^1.167^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16090~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~606~^7.723^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~612~^0.016^8^0.002^~1~^~A~^^^1^0.012^0.032^6^0.011^0.021^~2, 3~^~04/01/2014~ -~16090~^~613~^3.982^8^0.275^~1~^~A~^^^1^3.367^4.977^2^2.903^5.060^~2, 3~^~04/01/2014~ -~16090~^~614~^1.200^8^0.073^~1~^~A~^^^1^1.038^1.456^3^0.947^1.453^~2, 3~^~04/01/2014~ -~16090~^~615~^0.575^8^0.030^~1~^~A~^^^1^0.502^0.700^2^0.460^0.690^~2, 3~^~04/01/2014~ -~16090~^~617~^25.435^8^1.024^~1~^~AS~^^^1^19.377^32.037^3^22.006^28.864^~2, 3~^~04/01/2014~ -~16090~^~618~^9.715^8^1.278^~1~^~AS~^^^1^6.739^13.952^2^4.455^14.975^~2, 3~^~04/01/2014~ -~16090~^~619~^0.026^8^0.001^~1~^~AS~^^^1^0.018^0.030^6^0.024^0.027^~2, 3~^~04/01/2014~ -~16090~^~620~^0.016^8^0.001^~1~^~A~^^^1^0.013^0.019^3^0.014^0.018^~2, 3~^~04/01/2014~ -~16090~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~624~^1.216^8^0.053^~1~^~A~^^^1^1.068^1.472^2^0.996^1.436^~2, 3~^~04/01/2014~ -~16090~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~626~^0.031^8^0.001^~1~^~AS~^^^1^0.024^0.035^4^0.028^0.033^~2, 3~^~04/01/2014~ -~16090~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~628~^0.627^8^0.047^~1~^~A~^^^1^0.443^0.894^2^0.433^0.822^~2, 3~^~04/01/2014~ -~16090~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~630~^0.055^8^0.008^~1~^~AS~^^^1^0.033^0.091^2^0.020^0.090^~2, 3~^~04/01/2014~ -~16090~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16090~^~645~^26.181^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~646~^9.773^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~652~^0.004^8^0.001^~1~^~A~^^^1^0.000^0.006^6^0.003^0.006^~1, 2, 3~^~04/01/2014~ -~16090~^~653~^0.041^8^0.002^~1~^~A~^^^1^0.035^0.049^3^0.036^0.047^~2, 3~^~04/01/2014~ -~16090~^~654~^0.689^8^0.017^~1~^~A~^^^1^0.561^0.833^2^0.624^0.753^~2, 3~^~04/01/2014~ -~16090~^~662~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~663~^0.014^8^0.000^~1~^~A~^^^1^0.011^0.016^4^0.013^0.015^~2, 3~^~04/01/2014~ -~16090~^~664~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~16090~^~665~^0.012^8^0.002^~1~^~A~^^^1^0.009^0.017^3^0.007^0.018^~2, 3~^~04/01/2014~ -~16090~^~670~^0.009^8^0.000^~1~^~A~^^^1^0.008^0.011^3^0.008^0.011^~2, 3~^~04/01/2014~ -~16090~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~672~^0.004^8^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.001^0.009^~1, 2, 3~^~04/01/2014~ -~16090~^~673~^0.031^8^0.001^~1~^~A~^^^1^0.024^0.035^4^0.028^0.033^~2, 3~^~04/01/2014~ -~16090~^~674~^25.421^8^1.024^~1~^~A~^^^1^19.364^32.021^3^21.993^28.849^~2, 3~^~04/01/2014~ -~16090~^~675~^9.694^8^1.276^~1~^~A~^^^1^6.721^13.925^2^4.439^14.948^~2, 3~^~04/01/2014~ -~16090~^~676~^0.054^8^0.008^~1~^~A~^^^1^0.032^0.090^2^0.020^0.088^~2, 3~^~04/01/2014~ -~16090~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~16090~^~687~^0.032^8^0.002^~1~^~A~^^^1^0.023^0.042^2^0.026^0.039^~2, 3~^~04/01/2014~ -~16090~^~689~^0.011^8^0.000^~1~^~AS~^^^1^0.009^0.012^6^0.010^0.012^~2, 3~^~04/01/2014~ -~16090~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16090~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~851~^0.025^8^0.000^~1~^~A~^^^1^0.018^0.029^5^0.024^0.027^~2, 3~^~04/01/2014~ -~16090~^~852~^0.011^8^0.000^~1~^~A~^^^1^0.009^0.012^6^0.010^0.012^~2, 3~^~04/01/2014~ -~16090~^~853~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16090~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16091~^~312~^0.900^5^0.045^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~315~^2.640^5^0.186^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~404~^0.675^4^0.164^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~405~^0.135^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~406~^15.925^4^0.976^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~410~^1.769^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~415~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~501~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~502~^0.896^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~503~^0.920^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~504~^1.696^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~505~^0.939^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~506~^0.321^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~507~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~508~^1.356^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~509~^1.063^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~510~^1.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~511~^3.128^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~512~^0.661^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~513~^1.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~514~^3.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~515~^5.465^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~516~^1.576^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~517~^1.154^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~518~^1.289^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16091~^~606~^7.098^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~607~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~608~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~609~^0.036^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~610~^0.036^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~611~^0.036^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~612~^0.028^0^^~1~^^^^^^^^^^^~04/01/2014~ -~16091~^~613~^5.674^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~614~^1.288^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~617~^21.757^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~618~^17.192^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~620~^0.036^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~621~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~626~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16091~^~627~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~628~^0.523^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16091~^~629~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~630~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~631~^0.000^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~ -~16091~^~645~^22.325^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16091~^~646~^17.238^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~16092~^~312~^0.661^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~315~^2.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~404~^0.317^3^0.032^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~405~^0.085^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~406~^14.933^3^0.906^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~410~^1.392^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~415~^0.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~501~^0.272^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~502~^0.959^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~503~^0.985^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~504~^1.816^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~505~^1.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~506~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~507~^0.359^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~508~^1.452^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~509~^1.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~510~^1.175^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~511~^3.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~512~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~513~^1.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~514~^3.416^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~515~^5.852^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~516~^1.687^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~517~^1.236^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~518~^1.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~606~^7.555^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~612~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~613~^5.609^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~614~^1.273^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~617~^21.509^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~618~^16.996^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~626~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~628~^0.517^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~645~^22.073^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16092~^~646~^17.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~312~^1.171^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~315~^1.980^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~404~^0.639^3^0.274^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~405~^0.300^10^0.041^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~406~^12.875^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~410~^1.809^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~415~^0.340^4^0.052^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~501~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~502~^0.859^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~503~^0.882^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~504~^1.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~505~^0.901^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~506~^0.308^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~507~^0.322^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~508~^1.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~509~^1.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~510~^1.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~511~^3.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~512~^0.634^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~513~^0.997^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~514~^3.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~515~^5.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~516~^1.512^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~517~^1.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~518~^1.236^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16093~^~606~^7.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~612~^0.027^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~613~^5.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~614~^1.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~617~^20.867^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~618~^16.489^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~626~^0.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~628~^0.502^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~645~^21.414^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16093~^~646~^16.500^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~312~^0.838^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~315~^1.721^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~404~^0.090^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~405~^0.153^9^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~406~^14.338^5^1.347^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~410~^1.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~415~^0.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~501~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~502~^0.926^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~503~^0.951^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~504~^1.753^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~505~^0.971^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~506~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~507~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~508~^1.402^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~509~^1.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~510~^1.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~511~^3.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~512~^0.684^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~513~^1.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~514~^3.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~515~^5.651^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~516~^1.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~517~^1.194^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~518~^1.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~606~^7.894^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~612~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~613~^5.861^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~614~^1.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~617~^22.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~618~^17.760^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~626~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~628~^0.541^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~645~^23.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16094~^~646~^17.772^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~312~^1.112^15^0.042^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~315~^1.696^15^0.062^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~404~^0.653^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~405~^0.131^8^0.001^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~406~^12.375^8^0.301^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~410~^1.759^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~415~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~501~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~502~^0.863^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~503~^0.886^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~504~^1.633^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~505~^0.904^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~506~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~507~^0.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~508~^1.306^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~509~^1.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~510~^1.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~511~^3.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~512~^0.637^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~513~^1.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~514~^3.073^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~515~^5.265^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~516~^1.518^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~517~^1.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~518~^1.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16095~^~606~^6.434^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~607~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~608~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~609~^0.039^0^^~4~^~BFSN~^~16089~^^^^^^^^^~05/01/2014~ -~16095~^~610~^0.039^0^^~4~^~BFSN~^~16089~^^^^^^^^^~05/01/2014~ -~16095~^~611~^0.039^0^^~4~^~BFSN~^~16089~^^^^^^^^^~05/01/2014~ -~16095~^~612~^0.013^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~613~^4.963^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~614~^1.267^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~617~^24.692^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~618~^14.654^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~619~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~620~^0.036^0^^~4~^~BFSN~^~16089~^^^^^^^^^~05/01/2014~ -~16095~^~621~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~626~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16095~^~627~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~628~^0.544^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~629~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~630~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~631~^0.000^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~ -~16095~^~645~^25.580^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16095~^~646~^14.877^0^^~1~^^^^^^^^^^^~05/01/2014~ -~16096~^~312~^1.273^8^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~315~^2.008^8^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~404~^0.276^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~405~^0.112^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~406~^14.700^8^0.436^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~410~^1.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~415~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~501~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~502~^0.886^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~503~^0.910^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~504~^1.677^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~505~^0.929^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~506~^0.317^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~507~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~508~^1.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~509~^1.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~510~^1.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~511~^3.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~512~^0.654^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~513~^1.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~514~^3.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~515~^5.406^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~516~^1.559^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~517~^1.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~518~^1.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~606~^6.345^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~612~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~613~^4.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~614~^1.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~617~^24.610^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~618~^14.640^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~619~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~626~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~628~^0.542^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~645~^25.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16096~^~646~^14.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16097~^~312~^0.578^6^0.026^~6~^~JA~^^^2^0.514^0.708^3^0.494^0.662^~2, 3~^~03/01/2004~ -~16097~^~315~^1.800^6^0.074^~6~^~JA~^^^2^1.490^2.030^3^1.564^2.036^~2, 3~^~03/01/2004~ -~16097~^~404~^0.106^11^0.003^~6~^~JA~^^^2^0.057^0.125^3^0.098^0.114^~2, 3~^~03/01/2006~ -~16097~^~405~^0.111^11^0.002^~6~^~JA~^^^2^0.095^0.122^3^0.105^0.117^~2, 3~^~03/01/2006~ -~16097~^~406~^13.696^277^0.003^~6~^~JA~^^^2^13.600^14.700^3^13.685^13.706^~2, 3~^~03/01/2006~ -~16097~^~410~^1.118^6^0.027^~6~^~JA~^^^2^0.964^1.315^3^1.033^1.203^~2, 3~^~03/01/2004~ -~16097~^~415~^0.418^5^0.009^~6~^~JA~^^^2^0.376^0.450^2^0.381^0.456^~2, 3~^~03/01/2004~ -~16097~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~502~^0.518^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~503~^0.608^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~504~^1.525^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~505~^0.671^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~506~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~508~^1.185^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~509~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~510~^0.772^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~511~^2.731^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~513~^0.903^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~514~^3.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~515~^5.023^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~516~^1.417^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~517~^1.389^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~518~^1.461^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16097~^~606~^7.607^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16097~^~607~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~608~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~609~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~610~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~611~^0.178^3^0.020^~6~^~JA~^^^2^0.022^0.217^2^0.093^0.262^~2, 3~^~05/01/2011~ -~16097~^~612~^0.050^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16097~^~613~^6.058^4^0.078^~6~^~JA~^^^2^5.496^6.180^3^5.810^6.306^~2, 3~^~05/01/2011~ -~16097~^~614~^0.682^4^0.269^~6~^~JA~^^^2^0.313^2.141^3^-0.173^1.538^~2, 3~^~05/01/2011~ -~16097~^~615~^0.640^4^0.046^~1~^~A~^^^1^0.587^0.777^3^0.493^0.786^~2, 3~^~05/01/2011~ -~16097~^~617~^22.333^4^0.463^~6~^~JA~^^^2^21.424^23.176^3^20.860^23.806^~2, 3~^~05/01/2011~ -~16097~^~618~^13.854^4^0.312^~6~^~JA~^^^2^13.215^14.623^3^12.861^14.847^~2, 3~^~05/01/2011~ -~16097~^~619~^0.078^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16097~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16097~^~621~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~626~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~627~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~628~^0.790^4^0.038^~6~^~JA~^^^2^0.617^0.899^3^0.668^0.912^~2, 3~^~05/01/2011~ -~16097~^~629~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~630~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~631~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~ -~16097~^~645~^23.123^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16097~^~646~^13.932^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16098~^~312~^0.422^18^0.006^~1~^~A~^^^1^0.383^0.484^11^0.409^0.435^~2, 3~^~08/01/2014~ -~16098~^~315~^1.665^18^0.020^~1~^~A~^^^1^1.460^1.885^9^1.619^1.711^~2, 3~^~08/01/2014~ -~16098~^~404~^0.150^9^0.005^~1~^~A~^^^1^0.100^0.190^4^0.137^0.163^~2, 3~^~08/01/2014~ -~16098~^~405~^0.192^9^0.003^~1~^~A~^^^1^0.170^0.210^3^0.182^0.203^~2, 3~^~08/01/2014~ -~16098~^~406~^13.112^9^0.190^~1~^~A~^^^1^12.200^13.700^2^12.370^13.854^~2, 3~^~08/01/2014~ -~16098~^~410~^1.137^6^0.012^~1~^~A~^^^1^0.980^1.200^1^0.980^1.295^~2, 3~^~08/01/2014~ -~16098~^~415~^0.441^9^0.016^~1~^~A~^^^1^0.380^0.490^3^0.388^0.495^~2, 3~^~08/01/2014~ -~16098~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~502~^0.525^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~503~^0.616^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~504~^1.546^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~505~^0.681^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~506~^0.265^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~508~^1.202^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~509~^0.829^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~510~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~511~^2.768^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~512~^0.557^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~513~^0.916^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~514~^3.054^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~515~^5.092^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~516~^1.437^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~517~^1.408^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~518~^1.481^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16098~^~605~^0.075^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16098~^~606~^10.325^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16098~^~607~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~609~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~610~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~611~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~612~^0.020^18^0.000^~1~^~A~^^^1^0.017^0.026^13^0.019^0.021^~2, 3~^~08/01/2014~ -~16098~^~613~^4.741^18^0.024^~1~^~A~^^^1^4.562^4.939^10^4.686^4.796^~2, 3~^~08/01/2014~ -~16098~^~614~^2.181^18^0.020^~1~^~A~^^^1^2.011^2.347^10^2.137^2.225^~2, 3~^~08/01/2014~ -~16098~^~615~^0.719^18^0.004^~1~^~A~^^^1^0.655^0.774^10^0.710^0.729^~2, 3~^~08/01/2014~ -~16098~^~617~^24.812^18^0.175^~1~^~AS~^^^1^23.669^26.050^7^24.401^25.222^~2, 3~^~08/01/2014~ -~16098~^~618~^12.264^18^0.080^~1~^~AS~^^^1^11.658^12.760^7^12.065^12.446^~2, 3~^~08/01/2014~ -~16098~^~619~^0.028^18^0.001^~1~^~AS~^^^1^0.022^0.041^6^0.026^0.031^~2, 3~^~08/01/2014~ -~16098~^~620~^0.018^18^0.000^~1~^~A~^^^1^0.016^0.019^11^0.018^0.018^~2, 3~^~08/01/2014~ -~16098~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~624~^1.703^18^0.010^~1~^~A~^^^1^1.464^1.834^9^1.679^1.726^~2, 3~^~08/01/2014~ -~16098~^~625~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16098~^~626~^0.030^18^0.000^~1~^~AS~^^^1^0.029^0.032^10^0.030^0.031^~2, 3~^~08/01/2014~ -~16098~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~628~^0.579^18^0.003^~1~^~A~^^^1^0.546^0.612^8^0.572^0.586^~2, 3~^~08/01/2014~ -~16098~^~629~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16098~^~630~^0.046^18^0.001^~1~^~AS~^^^1^0.040^0.051^7^0.044^0.047^~2, 3~^~08/01/2014~ -~16098~^~631~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16098~^~645~^25.941^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16098~^~646~^12.535^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16098~^~652~^0.006^18^0.000^~1~^~A~^^^1^0.005^0.007^13^0.006^0.006^~2, 3~^~08/01/2014~ -~16098~^~653~^0.046^18^0.000^~1~^~A~^^^1^0.044^0.051^10^0.046^0.047^~2, 3~^~08/01/2014~ -~16098~^~654~^0.731^18^0.004^~1~^~A~^^^1^0.697^0.756^11^0.723^0.740^~2, 3~^~08/01/2014~ -~16098~^~662~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~16098~^~663~^0.043^18^0.002^~1~^~A~^^^1^0.012^0.081^6^0.040^0.047^~2, 3~^~08/01/2014~ -~16098~^~664~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^8^0.001^0.002^~1, 2, 3~^~08/01/2014~ -~16098~^~665~^0.029^18^0.001^~1~^~A~^^^1^0.011^0.047^9^0.028^0.030^~2, 3~^~07/01/2014~ -~16098~^~670~^0.011^18^0.000^~1~^~A~^^^1^0.011^0.013^10^0.011^0.012^~2, 3~^~03/01/2014~ -~16098~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16098~^~672~^0.008^18^0.000^~1~^~A~^^^1^0.007^0.009^12^0.008^0.009^~2, 3~^~08/01/2014~ -~16098~^~673~^0.030^18^0.000^~1~^~A~^^^1^0.029^0.031^11^0.030^0.031^~2, 3~^~08/01/2014~ -~16098~^~674~^24.768^18^0.175^~1~^~A~^^^1^23.599^25.979^7^24.359^25.178^~2, 3~^~08/01/2014~ -~16098~^~675~^12.215^18^0.080^~1~^~A~^^^1^11.603^12.737^7^12.025^12.406^~2, 3~^~08/01/2014~ -~16098~^~676~^0.044^18^0.001^~1~^~A~^^^1^0.039^0.049^7^0.043^0.046^~2, 3~^~08/01/2014~ -~16098~^~685~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~16098~^~687~^0.029^18^0.000^~1~^~A~^^^1^0.026^0.031^14^0.028^0.029^~2, 3~^~08/01/2014~ -~16098~^~689~^0.010^18^0.000^~1~^~AS~^^^1^0.009^0.011^9^0.010^0.010^~2, 3~^~08/01/2014~ -~16098~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~16098~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~16098~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16098~^~851~^0.027^18^0.001^~1~^~A~^^^1^0.022^0.039^6^0.025^0.029^~2, 3~^~08/01/2014~ -~16098~^~852~^0.010^18^0.000^~1~^~A~^^^1^0.009^0.011^9^0.010^0.010^~2, 3~^~03/01/2014~ -~16098~^~853~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16098~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16098~^~858~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16099~^~312~^1.800^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~315~^4.900^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~404~^0.700^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~405~^0.480^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~406~^27.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~410~^2.744^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~415~^0.504^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~501~^0.507^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~502~^1.788^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~503~^1.836^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~504~^3.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~505~^1.874^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~506~^0.641^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~507~^0.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~508~^2.705^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~509~^2.122^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~510~^2.189^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~511~^6.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~512~^1.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~513~^2.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~514~^6.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~515~^10.908^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~516~^3.145^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~517~^2.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~518~^2.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16099~^~606~^0.063^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~613~^0.048^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~614~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~617~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~618~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~619~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~628~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~16099~^~645~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16099~^~646~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~312~^2.039^8^0.457^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~315~^4.231^8^0.418^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~404~^0.457^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~405~^0.172^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~406~^11.499^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~410~^1.543^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~415~^0.304^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16100~^~501~^0.328^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~502~^1.158^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~503~^1.188^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~504~^2.191^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~505~^1.213^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~506~^0.415^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~507~^0.433^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~508~^1.752^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~509~^1.374^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~510~^1.418^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~511~^4.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~512~^0.854^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~513~^1.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~514~^4.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~515~^7.063^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~516~^2.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~517~^1.492^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~518~^1.665^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16100~^~606~^3.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~612~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~613~^2.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~614~^0.489^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~617~^10.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~618~^6.919^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~619~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~628~^0.294^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~645~^10.866^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16100~^~646~^6.921^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~312~^1.057^9^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~315~^1.791^9^0.138^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~404~^0.643^11^0.060^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~405~^0.187^12^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~406~^2.965^12^0.363^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~410~^1.266^8^0.057^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~415~^0.283^12^0.041^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~501~^0.212^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~502~^0.767^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~503~^0.785^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~504~^1.549^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~505~^1.521^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~506~^0.243^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~507~^0.250^19^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~508~^1.858^19^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~509~^0.538^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~510~^0.937^28^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~511~^1.299^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~512~^0.774^26^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~513~^0.972^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~514~^2.146^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~515~^5.031^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~516~^0.802^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~517~^0.955^23^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~518~^1.028^24^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16101~^~606~^0.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~613~^0.307^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~614~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~617~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~618~^0.778^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~619~^0.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~645~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16101~^~646~^0.814^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~312~^0.269^8^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~315~^0.501^8^0.056^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~404~^0.146^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~405~^0.059^8^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~406~^0.781^8^0.052^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~410~^0.319^8^0.024^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~415~^0.050^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~501~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~502~^0.239^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~503~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~504~^0.483^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~505~^0.474^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~506~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~507~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~508~^0.579^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~509~^0.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~510~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~511~^0.405^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~512~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~513~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~514~^0.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~515~^1.568^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~516~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~517~^0.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~518~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16102~^~606~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~613~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~614~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~617~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~618~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~619~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~645~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16102~^~646~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~312~^0.129^17^0.007^~1~^~A~^^^1^0.086^0.195^11^0.113^0.145^~2, 3~^~08/01/2014~ -~16103~^~315~^0.289^17^0.005^~1~^~A~^^^1^0.245^0.379^10^0.278^0.301^~2, 3~^~08/01/2014~ -~16103~^~404~^0.076^9^0.002^~1~^~A~^^^1^0.060^0.100^5^0.070^0.081^~2, 3~^~08/01/2014~ -~16103~^~405~^0.079^9^0.003^~1~^~A~^^^1^0.050^0.110^6^0.071^0.088^~2, 3~^~08/01/2014~ -~16103~^~406~^0.367^9^0.010^~1~^~A~^^^1^0.260^0.480^5^0.342^0.393^~2, 3~^~08/01/2014~ -~16103~^~410~^0.189^6^0.014^~1~^~A~^^^1^0.130^0.230^3^0.145^0.234^~2, 3~^~08/01/2014~ -~16103~^~415~^0.103^9^0.003^~1~^~A~^^^1^0.080^0.160^5^0.094^0.111^~2, 3~^~04/01/2014~ -~16103~^~501~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~502~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~503~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~504~^0.438^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~505~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~506~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~507~^0.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~508~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~509~^0.155^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~510~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~511~^0.340^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~512~^0.153^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~513~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~514~^0.664^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~515~^0.837^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~516~^0.214^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~517~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~518~^0.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16103~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~606~^0.631^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~607~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~609~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~610~^0.004^7^0.003^~1~^~A~^^^1^0.000^0.019^4^-0.004^0.011^~1, 2, 3~^~08/01/2014~ -~16103~^~611~^0.001^7^0.001^~1~^~A~^^^1^0.000^0.005^4^-0.001^0.003^~1, 2, 3~^~03/01/2008~ -~16103~^~612~^0.022^7^0.002^~1~^~A~^^^1^0.003^0.029^2^0.012^0.032^~2, 3~^~08/01/2014~ -~16103~^~613~^0.394^7^0.034^~1~^~A~^^^1^0.107^0.528^2^0.253^0.535^~2, 3~^~08/01/2014~ -~16103~^~614~^0.192^7^0.020^~1~^~A~^^^1^0.022^0.283^2^0.109^0.276^~2, 3~^~08/01/2014~ -~16103~^~615~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.006^2^0.004^0.005^~2, 3~^~04/01/2014~ -~16103~^~617~^0.564^7^0.056^~1~^~AS~^^^1^0.076^0.800^2^0.328^0.801^~2, 3~^~08/01/2014~ -~16103~^~618~^0.361^7^0.026^~1~^~AS~^^^1^0.176^0.466^2^0.253^0.468^~2, 3~^~08/01/2014~ -~16103~^~619~^0.169^7^0.003^~1~^~AS~^^^1^0.154^0.198^4^0.162^0.177^~2, 3~^~08/01/2014~ -~16103~^~620~^0.003^7^0.001^~1~^~A~^^^1^0.000^0.005^2^0.001^0.005^~1, 2, 3~^~04/01/2014~ -~16103~^~621~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~624~^0.002^7^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~625~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16103~^~626~^0.024^7^0.003^~1~^~AS~^^^1^0.002^0.034^2^0.012^0.037^~2, 3~^~08/01/2014~ -~16103~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~628~^0.009^7^0.001^~1~^~A~^^^1^0.000^0.013^2^0.004^0.014^~1, 2, 3~^~04/01/2014~ -~16103~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~630~^0.000^7^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~16103~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~645~^0.601^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~646~^0.543^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~652~^0.003^7^0.000^~1~^~A~^^^1^0.000^0.005^3^0.002^0.004^~1, 2, 3~^~03/01/2008~ -~16103~^~653~^0.006^7^0.001^~1~^~A~^^^1^0.001^0.009^2^0.003^0.009^~1, 2, 3~^~08/01/2014~ -~16103~^~654~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~03/01/2008~ -~16103~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16103~^~663~^0.015^7^0.001^~1~^~A~^^^1^0.000^0.039^2^0.009^0.021^~1, 2, 3~^~08/01/2014~ -~16103~^~664~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~665~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.001^~1, 2, 3~^~08/01/2014~ -~16103~^~670~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~16103~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16103~^~672~^0.008^7^0.001^~1~^~A~^^^1^0.000^0.012^2^0.004^0.013^~1, 2, 3~^~04/01/2014~ -~16103~^~673~^0.024^7^0.003^~1~^~A~^^^1^0.002^0.034^2^0.012^0.037^~1, 2, 3~^~08/01/2014~ -~16103~^~674~^0.549^7^0.055^~1~^~A~^^^1^0.076^0.761^2^0.319^0.780^~2, 3~^~08/01/2014~ -~16103~^~675~^0.360^7^0.026^~1~^~A~^^^1^0.176^0.462^2^0.253^0.466^~2, 3~^~08/01/2014~ -~16103~^~676~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~685~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~16103~^~687~^0.004^7^0.000^~1~^~A~^^^1^0.000^0.005^2^0.002^0.006^~1, 2, 3~^~04/01/2014~ -~16103~^~689~^0.001^7^0.000^~1~^~AS~^^^1^0.000^0.002^2^0.000^0.002^~2, 3~^~04/01/2014~ -~16103~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16103~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~851~^0.169^7^0.002^~1~^~A~^^^1^0.154^0.198^3^0.162^0.177^~2, 3~^~08/01/2014~ -~16103~^~852~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~16103~^~853~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~16103~^~858~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~16104~^~312~^0.105^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~315~^0.205^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~404~^4.400^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~405~^0.481^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~406~^7.560^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~410~^0.113^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~415~^0.479^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~501~^0.161^12^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~502~^0.453^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~503~^0.559^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~504~^0.914^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~505~^0.727^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~506~^0.146^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~507~^0.176^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~508~^0.611^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~509~^0.400^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~510~^0.593^18^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~511~^0.875^15^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~512~^0.299^15^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~513~^0.492^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~514~^1.330^13^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~515~^2.429^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~516~^0.473^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~517~^0.643^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~518~^0.626^14^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~606~^4.622^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~611~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~612~^0.163^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~613~^3.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~614~^1.169^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~617~^7.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~618~^13.756^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~619~^1.686^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16104~^~645~^7.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16104~^~646~^15.441^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~312~^0.304^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~315~^0.271^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~404~^0.702^16^0.054^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~405~^0.891^16^0.069^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~406~^22.021^16^1.420^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~410~^1.492^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16106~^~415~^1.336^14^0.139^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~501~^0.574^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~502~^1.615^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~503~^1.995^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~504~^3.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~505~^2.596^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~506~^0.520^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~507~^0.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~508~^2.182^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~509~^1.428^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~510~^2.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~511~^3.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~512~^1.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~513~^1.755^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~514~^4.745^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~515~^8.668^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~516~^1.688^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~517~^2.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~518~^2.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16106~^~606~^0.424^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~612~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~613~^0.312^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~614~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~617~^0.642^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~618~^1.461^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~619~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~626~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~645~^0.648^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16106~^~646~^1.657^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~312~^0.250^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~315~^0.725^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~404~^2.343^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~405~^0.402^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~406~^11.195^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~410~^0.323^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~415~^0.828^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~501~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~502~^0.785^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~503~^0.970^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~504~^1.587^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~505~^1.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~506~^0.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~507~^0.305^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~508~^1.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~509~^0.694^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~510~^1.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~511~^1.519^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~512~^0.519^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~513~^0.853^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~514~^2.307^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~515~^4.215^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~516~^0.821^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~517~^1.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~518~^1.087^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16107~^~606~^2.926^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~611~^0.217^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~612~^0.067^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~613~^1.856^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~614~^0.786^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~617~^4.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~618~^8.209^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~619~^1.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16107~^~645~^4.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16107~^~646~^9.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~312~^1.658^60^0.029^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~315~^2.517^58^0.099^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~404~^0.874^50^0.039^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~405~^0.870^21^0.196^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~406~^1.623^32^0.303^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~410~^0.793^6^0.189^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~415~^0.377^6^0.065^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~501~^0.591^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~502~^1.766^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~503~^1.971^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~504~^3.309^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~505~^2.706^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~506~^0.547^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~507~^0.655^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~508~^2.122^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~509~^1.539^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~510~^2.029^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~511~^3.153^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~512~^1.097^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~513~^1.915^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~514~^5.112^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~515~^7.874^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~516~^1.880^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~517~^2.379^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~518~^2.357^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~ -~16108~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16108~^~606~^2.884^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~612~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~613~^2.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~614~^0.712^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~617~^4.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~618~^9.925^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~619~^1.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~626~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~645~^4.404^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16108~^~646~^11.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~312~^0.407^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~315~^0.824^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~404~^0.155^68^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~405~^0.285^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~406~^0.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~410~^0.179^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~415~^0.234^5^0.098^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~501~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~502~^0.723^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~503~^0.807^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~504~^1.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~505~^1.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~506~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~507~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~508~^0.869^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~509~^0.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~510~^0.831^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~511~^1.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~512~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~513~^0.784^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~514~^2.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~515~^3.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~516~^0.770^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~517~^0.974^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~518~^0.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16109~^~606~^1.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~612~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~613~^0.952^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~614~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~617~^1.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~618~^4.465^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~619~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~626~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16109~^~645~^1.981^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16109~^~646~^5.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~312~^0.828^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~315~^2.158^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~404~^0.100^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~405~^0.145^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~406~^1.410^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~410~^0.453^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~415~^0.208^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~501~^0.512^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~502~^1.530^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~503~^1.709^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~504~^2.868^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~505~^2.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~506~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~507~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~508~^1.838^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~509~^1.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~510~^1.758^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~511~^2.732^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~512~^0.950^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~513~^1.659^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~514~^4.429^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~515~^6.822^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~516~^1.628^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~517~^2.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~518~^2.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16110~^~606~^3.674^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~612~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~613~^2.696^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~614~^0.907^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~617~^5.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~618~^12.644^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~619~^1.694^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~626~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16110~^~645~^5.610^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16110~^~646~^14.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~312~^1.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~315~^2.184^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~404~^0.427^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~405~^0.755^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~406~^1.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~410~^0.473^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~415~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~501~^0.575^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~502~^1.719^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~503~^1.920^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~504~^3.223^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~505~^2.634^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~506~^0.534^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~507~^0.638^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~508~^2.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~509~^1.497^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~510~^1.976^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~511~^3.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~512~^1.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~513~^1.865^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~514~^4.977^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~515~^7.667^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~516~^1.830^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~517~^2.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~518~^2.294^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16111~^~606~^3.127^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~612~^0.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~613~^2.295^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~614~^0.772^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~617~^4.716^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~618~^10.764^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~619~^1.443^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~626~^0.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~645~^4.776^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16111~^~646~^12.207^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16112~^~312~^0.420^6^0.003^~6~^~JA~^^^2^0.377^0.437^1^0.388^0.451^~2, 3~^~12/01/2003~ -~16112~^~315~^0.859^6^0.004^~6~^~JA~^^^2^0.846^0.871^1^0.806^0.912^~2, 3~^~12/01/2003~ -~16112~^~404~^0.098^4^0.008^~6~^~JA~^^^2^0.084^0.114^1^0.003^0.193^~2, 3~^~12/01/2003~ -~16112~^~405~^0.233^4^0.016^~6~^~JA~^^^2^0.184^0.250^1^0.030^0.436^~2, 3~^~12/01/2003~ -~16112~^~406~^0.906^4^0.013^~6~^~JA~^^^2^0.860^0.977^1^0.744^1.068^~2, 3~^~12/01/2003~ -~16112~^~410~^0.337^3^0.003^~6~^~JA~^^^2^0.258^0.381^1^0.294^0.379^~2, 3~^~12/01/2003~ -~16112~^~415~^0.199^3^0.002^~6~^~JA~^^^2^0.187^0.215^1^0.169^0.228^~2, 3~^~12/01/2003~ -~16112~^~501~^0.155^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~502~^0.479^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~503~^0.508^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~504~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~505~^0.478^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~506~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~16112~^~508~^0.486^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~509~^0.352^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~510~^0.547^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~511~^0.784^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~512~^0.243^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~513~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~514~^1.171^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~515~^1.915^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~516~^0.447^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~517~^0.619^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~518~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~16112~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16112~^~606~^1.025^2^^~11~^~JO~^^^2^0.820^1.230^1^^^^~07/01/2015~ -~16112~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~609~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^^~04/01/2007~ -~16112~^~610~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^^~04/01/2007~ -~16112~^~611~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^^~04/01/2007~ -~16112~^~612~^0.015^2^^~6~^~JA~^^^2^0.010^0.020^1^^^^~07/01/2015~ -~16112~^~613~^0.750^2^^~6~^~JA~^^^2^0.644^0.800^1^^^^~07/01/2015~ -~16112~^~614~^0.200^2^^~6~^~JA~^^^2^0.100^0.300^1^^^^~07/01/2015~ -~16112~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~617~^1.043^2^^~6~^~JA~^^^2^0.875^1.324^1^^^^~07/01/2015~ -~16112~^~618~^2.479^2^^~6~^~JA~^^^2^2.380^3.023^1^^^^~07/01/2015~ -~16112~^~619~^0.405^2^^~6~^~JA~^^^2^0.330^0.480^1^^^^~07/01/2015~ -~16112~^~620~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^^~04/01/2007~ -~16112~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~624~^0.050^2^^~1~^~A~^^^1^0.000^0.100^1^^^^~07/01/2015~ -~16112~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~626~^0.000^2^^~6~^~JA~^^^2^0.000^0.017^^^^^~04/01/2007~ -~16112~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~628~^0.025^2^^~6~^~JA~^^^2^0.000^0.040^1^^^^~07/01/2015~ -~16112~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~630~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^^^^^~04/01/2007~ -~16112~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16112~^~645~^1.118^2^^~11~^~JO~^^^2^0.905^1.341^1^^^^~07/01/2015~ -~16112~^~646~^2.884^2^^~11~^~JO~^^^2^2.710^3.428^1^^^^~07/01/2015~ -~16112~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~653~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~07/01/2015~ -~16112~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~687~^0.030^2^^~1~^~A~^^^1^0.010^0.050^1^^^^~07/01/2015~ -~16112~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^^~04/01/2007~ -~16112~^~697~^0.020^2^^~1~^~A~^^^1^0.010^0.030^1^^^^~07/01/2015~ -~16113~^~312~^0.667^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~315~^1.528^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~404~^0.160^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~405~^0.190^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~406~^0.000^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~410~^0.215^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16113~^~415~^0.130^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16113~^~501~^0.223^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~502~^0.813^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~503~^0.931^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~504~^1.509^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~505~^1.145^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~506~^0.208^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~507~^0.220^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~508~^0.941^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~509~^0.556^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~510~^1.018^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~511~^0.909^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~512~^0.512^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~513~^0.798^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~514~^1.956^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~515~^3.337^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~516~^0.646^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~517~^1.403^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~518~^1.121^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16113~^~606~^1.591^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~612~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~613~^1.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~614~^0.393^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~617~^2.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~618~^5.476^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~619~^0.734^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~626~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16113~^~645~^2.430^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16113~^~646~^6.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16114~^~312~^0.560^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~315~^1.300^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~404~^0.078^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~405~^0.358^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~406~^2.640^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~410~^0.278^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~415~^0.215^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~502~^0.796^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~503~^0.880^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~504~^1.430^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~505~^0.908^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~506~^0.175^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~507~^0.193^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~508~^0.893^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~509~^0.664^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~510~^0.920^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~511~^1.252^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~512~^0.466^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~513~^0.960^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~514~^1.995^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~515~^3.292^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~516~^0.754^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~517~^1.030^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~518~^1.019^0^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16114~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16114~^~606~^2.539^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~612~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~613~^1.693^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~614~^0.677^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~617~^3.103^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~618~^4.052^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~619~^0.248^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~624~^0.113^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~626~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~628~^0.045^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~645~^3.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~646~^4.300^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16114~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~653~^0.034^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16114~^~687~^0.056^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16114~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16115~^~312~^2.920^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~315~^2.275^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~404~^0.581^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~405~^1.160^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~406~^4.320^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~410~^1.590^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~415~^0.461^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~501~^0.502^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~502~^1.500^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~503~^1.675^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~504~^2.812^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~505~^2.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~506~^0.466^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~507~^0.556^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~508~^1.802^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~509~^1.306^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~510~^1.724^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~511~^2.679^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~512~^0.931^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~513~^1.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~514~^4.342^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~515~^6.689^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~516~^1.597^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~517~^2.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~518~^2.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16115~^~606~^2.987^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~612~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~613~^2.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~614~^0.737^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~617~^4.504^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~618~^10.280^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~619~^1.378^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~626~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16115~^~645~^4.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16115~^~646~^11.657^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~312~^2.221^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~315~^2.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~404~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~405~^0.941^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~406~^3.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~410~^1.209^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~415~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~501~^0.506^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~502~^1.511^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~503~^1.688^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~504~^2.834^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~505~^2.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~506~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~507~^0.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~508~^1.816^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~509~^1.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~510~^1.737^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~511~^2.700^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~512~^0.938^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~513~^1.639^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~514~^4.375^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~515~^6.740^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~516~^1.609^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~517~^2.035^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~518~^2.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16116~^~606~^3.162^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~607~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~608~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~609~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~610~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~611~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~612~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~613~^2.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~614~^0.780^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~617~^4.768^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~618~^10.883^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~619~^1.458^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~620~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~621~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~626~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~627~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~628~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~629~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~630~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~631~^0.000^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~ -~16116~^~645~^4.829^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16116~^~646~^12.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~312~^4.065^14^0.105^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~315~^3.018^13^0.084^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~404~^0.698^5^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~405~^0.253^5^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~406~^2.612^5^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~410~^1.995^5^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~415~^0.574^5^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~501~^0.683^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~502~^2.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~503~^2.281^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~504~^3.828^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~505~^3.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~506~^0.634^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~507~^0.757^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~508~^2.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~509~^1.778^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~510~^2.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~511~^3.647^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~512~^1.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~513~^2.215^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~514~^5.911^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~515~^9.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~516~^2.174^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~517~^2.750^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~518~^2.725^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16117~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16117~^~606~^0.136^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~612~^0.003^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~613~^0.100^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~614~^0.034^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~617~^0.206^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~618~^0.470^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~619~^0.063^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~626~^0.003^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~645~^0.208^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16117~^~646~^0.533^0^^~1~^^^^^^^^^^^~01/01/2008~ -~16118~^~312~^1.600^2^^~1~^~A~^^^1^1.600^1.600^^^^^~01/01/2008~ -~16118~^~315~^3.150^2^^~1~^~A~^^^1^3.100^3.200^1^^^^~01/01/2008~ -~16118~^~404~^1.088^2^^~1~^~A~^^^1^0.896^1.280^1^^^^~01/01/2008~ -~16118~^~405~^0.280^2^^~1~^~A~^^^1^0.248^0.313^1^^^^~01/01/2008~ -~16118~^~406~^2.950^2^^~1~^~A~^^^1^2.690^3.210^1^^^^~01/01/2008~ -~16118~^~410~^1.550^2^^~1~^~A~^^^1^1.530^1.570^1^^^^~01/01/2008~ -~16118~^~415~^1.050^2^^~1~^~A~^^^1^1.010^1.090^1^^^^~01/01/2008~ -~16118~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16118~^~606~^1.290^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16118~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~ -~16118~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~613~^0.885^2^^~1~^~A~^^^1^0.810^0.960^1^^^^~01/01/2008~ -~16118~^~614~^0.355^2^^~1~^~A~^^^1^0.290^0.420^1^^^^~01/01/2008~ -~16118~^~615~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~01/01/2008~ -~16118~^~617~^1.450^2^^~1~^~A~^^^1^1.240^1.660^1^^^^~01/01/2008~ -~16118~^~618~^3.660^2^^~1~^~A~^^^1^3.090^4.230^1^^^^~01/01/2008~ -~16118~^~619~^0.555^2^^~1~^~A~^^^1^0.490^0.620^1^^^^~01/01/2008~ -~16118~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~624~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~01/01/2008~ -~16118~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~628~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~01/01/2008~ -~16118~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~645~^1.460^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~646~^4.215^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~ -~16118~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~654~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~01/01/2008~ -~16118~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~857~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16118~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2008~ -~16119~^~312~^2.000^6^0.163^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~315~^3.800^5^0.134^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~404~^0.691^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~405~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~406~^2.587^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~410~^1.976^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~415~^0.569^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~501~^0.653^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~502~^1.952^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~503~^2.180^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~504~^3.660^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~505~^2.991^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~506~^0.606^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~507~^0.724^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~508~^2.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~509~^1.700^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~510~^2.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~511~^3.487^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~512~^1.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~513~^2.117^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~514~^5.651^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~515~^8.705^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~516~^2.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~517~^2.629^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~518~^2.605^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16119~^~606~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~612~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~613~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~614~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~617~^0.404^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~618~^0.921^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~619~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~626~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~645~^0.409^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16119~^~646~^1.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16120~^~312~^0.128^9^0.008^~6~^~JA~^^^2^0.123^0.139^1^0.022^0.233^~4~^~08/01/2007~ -~16120~^~315~^0.223^7^^~1~^~A~^^^1^0.223^0.223^0^^^~4~^~08/01/2007~ -~16120~^~404~^0.060^12^0.011^~6~^~JA~^^^2^0.036^0.068^2^0.015^0.106^~4~^~08/01/2007~ -~16120~^~405~^0.069^11^0.036^~6~^~JA~^^^2^0.028^0.140^2^-0.086^0.225^~4~^~08/01/2007~ -~16120~^~406~^0.513^10^0.187^~6~^~JA~^^^2^0.265^0.604^1^-1.859^2.884^~4~^~08/01/2007~ -~16120~^~410~^0.373^10^0.258^~6~^~JA~^^^2^0.247^0.716^1^-2.910^3.655^~4~^~08/01/2007~ -~16120~^~415~^0.077^11^0.009^~6~^~JA~^^^2^0.066^0.096^2^0.037^0.118^~4~^~08/01/2007~ -~16120~^~501~^0.038^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~502~^0.108^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~503~^0.114^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~504~^0.186^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~505~^0.131^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~506~^0.027^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~507~^0.000^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~508~^0.113^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~509~^0.089^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~510~^0.117^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~511~^0.187^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~512~^0.061^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~513~^0.104^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~514~^0.288^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~515~^0.487^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~516~^0.103^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~517~^0.147^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~518~^0.140^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16120~^~605~^0.000^5^0.000^~12~^~MA~^^^1^0.000^0.000^1^0.000^0.000^~4~^~08/01/2007~ -~16120~^~606~^0.205^9^0.002^~11~^~JO~^^^2^0.200^0.206^3^0.200^0.210^~4~^~08/01/2007~ -~16120~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16120~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~16120~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~613~^0.150^2^^~1~^~A~^^^1^0.150^0.150^0^^^^~08/01/2007~ -~16120~^~614~^0.050^2^^~1~^~A~^^^1^0.050^0.050^0^^^^~08/01/2007~ -~16120~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~617~^0.310^2^^~1~^~A~^^^1^0.310^0.310^0^^^^~08/01/2007~ -~16120~^~618~^0.584^2^^~1~^~A~^^^1^0.584^0.584^0^^^^~08/01/2007~ -~16120~^~619~^0.075^2^^~1~^~A~^^^1^0.075^0.075^0^^^^~08/01/2007~ -~16120~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~621~^0.000^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~627~^0.000^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~628~^0.010^2^^~1~^~A~^^^1^0.010^0.010^0^^^^~08/01/2007~ -~16120~^~629~^0.000^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~631~^0.000^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~ -~16120~^~645~^0.401^9^0.045^~11~^~JO~^^^2^0.330^0.514^3^0.259^0.544^~4~^~08/01/2007~ -~16120~^~646~^0.961^9^0.093^~11~^~JO~^^^2^0.659^1.029^3^0.664^1.258^~4~^~08/01/2007~ -~16120~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~687~^0.010^2^^~1~^~A~^^^1^0.010^0.010^0^^^^~08/01/2007~ -~16120~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16120~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^0^^^^~08/01/2007~ -~16121~^~312~^0.976^5^0.158^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~315~^4.190^5^0.272^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~404~^0.316^5^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~405~^0.142^5^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~406~^0.716^5^0.108^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~410~^0.057^3^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~415~^0.134^5^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~501~^0.835^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~502~^2.474^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~503~^2.942^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~504~^4.917^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~505~^3.929^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~506~^0.814^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~507~^0.886^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~508~^3.278^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~509~^2.301^10^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~510~^3.064^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~511~^4.642^10^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~512~^1.578^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~513~^2.677^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~514~^7.249^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~515~^12.013^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~516~^2.688^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~517~^3.298^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~518~^3.369^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16121~^~606~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~613~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~614~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~617~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~618~^0.177^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~619~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~645~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16121~^~646~^0.201^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~312~^1.599^122^0.028^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~315~^1.493^146^0.060^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~404~^0.176^118^0.016^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~405~^0.100^118^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~406~^1.438^120^0.218^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~410~^0.060^109^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~415~^0.100^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16122~^~501~^1.116^40^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~502~^3.137^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~503~^4.253^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~504~^6.783^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~505~^5.327^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~506~^1.130^74^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~507~^1.046^55^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~508~^4.593^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~509~^3.222^47^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~510~^4.098^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~511~^6.670^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~512~^2.303^47^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~513~^3.589^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~514~^10.203^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~515~^17.452^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~516~^3.603^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~517~^4.960^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~518~^4.593^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16122~^~606~^0.422^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~612~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~613~^0.310^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~614~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~617~^0.637^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~618~^1.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~619~^0.195^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~626~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16122~^~645~^0.645^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16122~^~646~^1.648^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16123~^~312~^0.043^6^0.003^~1~^~A~^^^1^0.037^0.049^5^0.036^0.050^~1, 2, 3~^~06/01/2012~ -~16123~^~315~^1.018^6^0.004^~1~^~A~^^^1^1.000^1.030^5^1.008^1.029^~2, 3~^~06/01/2012~ -~16123~^~404~^0.033^2^^~6~^~JA~^^^2^0.015^0.050^^^^^~12/01/2003~ -~16123~^~405~^0.165^2^^~6~^~JA~^^^2^0.130^0.199^^^^^~12/01/2003~ -~16123~^~406~^2.196^2^^~6~^~JA~^^^2^1.032^3.360^^^^^~12/01/2003~ -~16123~^~410~^0.297^2^^~6~^~JA~^^^2^0.273^0.320^^^^^~12/01/2003~ -~16123~^~415~^0.148^2^^~6~^~JA~^^^2^0.126^0.170^^^^^~12/01/2003~ -~16123~^~501~^0.096^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~502~^0.271^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~503~^0.318^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~504~^0.537^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~505~^0.381^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~506~^0.097^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~507~^0.118^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~508~^0.353^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~509~^0.244^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~510~^0.332^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~511~^0.463^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~512~^0.174^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~513~^0.294^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~514~^0.719^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~515~^1.579^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~516~^0.297^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~517~^0.493^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~518~^0.388^0^^~1~^~DA~^~16424~^^^^^^^^^~06/01/2012~ -~16123~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16123~^~606~^0.073^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~612~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~613~^0.058^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~614~^0.007^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~617~^0.080^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~618~^0.234^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~619~^0.029^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~626~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2007~ -~16123~^~645~^0.088^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16123~^~646~^0.263^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16124~^~312~^0.135^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~315~^0.499^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16124~^~404~^0.059^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~405~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~406~^3.951^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~410~^0.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~415~^0.200^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~501~^0.181^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~502~^0.407^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~503~^0.487^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~504~^0.735^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~505~^0.731^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~506~^0.167^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~507~^0.107^3^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~508~^0.534^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~509~^0.342^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~510~^0.524^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~511~^0.405^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~512~^0.215^4^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~513~^0.536^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~514~^0.882^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~515~^2.411^6^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~516~^0.435^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~517~^0.806^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~518~^0.483^5^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16124~^~606~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~613~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~614~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~617~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~618~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~619~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16124~^~645~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16124~^~646~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~312~^0.041^6^0.003^~1~^~A~^^^1^0.037^0.049^5^0.034^0.047^~1, 2, 3~^~06/01/2012~ -~16125~^~315~^0.100^6^0.004^~1~^~A~^^^1^0.090^0.117^5^0.090^0.110^~2, 3~^~06/01/2012~ -~16125~^~404~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~405~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~406~^2.828^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~410~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~415~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16125~^~606~^0.040^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~613~^0.027^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~614~^0.007^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~617~^0.054^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~618~^0.127^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~619~^0.020^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16125~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16125~^~645~^0.060^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16125~^~646~^0.147^0^^~1~^^^^^^^^^^^~06/01/2012~ -~16126~^~312~^0.213^6^0.010^~1~^~A~^^^2^0.160^0.240^4^0.184^0.241^~2, 3~^~12/01/2003~ -~16126~^~315~^0.625^6^0.037^~1~^~A~^^^2^0.510^0.732^4^0.521^0.728^~2, 3~^~12/01/2003~ -~16126~^~404~^0.060^6^0.009^~1~^~A~^^^2^0.028^0.093^4^0.036^0.084^~2, 3~^~12/01/2003~ -~16126~^~405~^0.063^6^0.004^~1~^~A~^^^2^0.041^0.103^4^0.052^0.075^~2, 3~^~12/01/2003~ -~16126~^~406~^0.101^6^0.031^~1~^~A~^^^2^0.010^0.253^4^0.014^0.188^~2, 3~^~12/01/2003~ -~16126~^~410~^0.110^4^0.009^~1~^~A~^^^2^0.065^0.148^2^0.071^0.148^~2, 3~^~12/01/2003~ -~16126~^~415~^0.071^6^0.008^~1~^~A~^^^2^0.047^0.092^4^0.049^0.094^~2, 3~^~12/01/2003~ -~16126~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~502~^0.411^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~503~^0.444^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~504~^0.728^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~505~^0.462^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~506~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~507~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~508~^0.437^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~509~^0.367^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~510~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~511~^0.716^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~512~^0.225^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~513~^0.405^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~514~^1.066^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~515~^1.721^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~516~^0.384^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~517~^0.567^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~518~^0.531^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16126~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16126~^~606~^0.793^3^0.068^~11~^~JO~^^^2^0.646^0.930^2^0.499^1.088^~2, 3~^~07/01/2015~ -~16126~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~612~^0.013^3^0.003^~1~^~A~^^^2^0.010^0.020^2^-0.001^0.028^~2, 3~^~07/01/2015~ -~16126~^~613~^0.567^3^0.067^~1~^~A~^^^2^0.474^0.700^2^0.280^0.854^~2, 3~^~07/01/2015~ -~16126~^~614~^0.200^3^0.000^~1~^~A~^^^2^0.159^0.200^^^^~2, 3~^~07/01/2015~ -~16126~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~617~^1.007^3^0.107^~1~^~A~^^^2^0.812^1.180^2^0.547^1.466^~2, 3~^~07/01/2015~ -~16126~^~618~^1.469^3^0.363^~1~^~A~^^^2^0.749^2.221^2^-0.093^3.031^~2, 3~^~07/01/2015~ -~16126~^~619~^0.167^3^0.059^~1~^~A~^^^2^0.050^0.298^2^-0.087^0.420^~2, 3~^~07/01/2015~ -~16126~^~620~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.018^~2, 3~^~07/01/2015~ -~16126~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~626~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.012^^^^~2, 3~^~03/01/2006~ -~16126~^~628~^0.023^3^0.013^~1~^~A~^^^1^0.010^0.050^2^-0.034^0.081^~2, 3~^~07/01/2015~ -~16126~^~630~^0.007^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.008^0.021^~2, 3~^~03/01/2006~ -~16126~^~645~^1.127^3^0.154^~11~^~JO~^^^2^0.882^1.410^2^0.466^1.788^~2, 3~^~07/01/2015~ -~16126~^~646~^1.649^3^0.413^~11~^~JO~^^^2^0.829^2.519^2^-0.130^3.428^~2, 3~^~07/01/2015~ -~16126~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~653~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~07/01/2015~ -~16126~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~672~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.018^~2, 3~^~07/01/2015~ -~16126~^~687~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~07/01/2015~ -~16126~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2006~ -~16126~^~697~^0.067^3^0.042^~1~^~A~^^^1^0.020^0.150^2^-0.113^0.246^~2, 3~^~07/01/2015~ -~16127~^~312~^0.157^3^0.008^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~315~^0.389^4^0.025^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~404~^0.047^4^0.002^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~405~^0.037^4^0.003^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~406~^0.535^4^0.264^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~410~^0.051^4^0.005^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~415~^0.052^4^0.007^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~501~^0.102^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~502~^0.268^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~503~^0.324^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~504~^0.498^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~505~^0.431^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~506~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~507~^0.091^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~508~^0.319^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~509~^0.219^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~510~^0.331^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~511~^0.436^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~512~^0.191^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~513~^0.268^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~514~^0.724^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~515~^1.133^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~516~^0.256^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~517~^0.353^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~518~^0.309^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16127~^~606~^0.533^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~612~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~613~^0.391^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~614~^0.132^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~617~^0.804^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~618~^1.835^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~619~^0.246^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~626~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16127~^~645~^0.814^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16127~^~646~^2.081^0^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16128~^~312~^1.179^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~315~^3.689^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~404~^0.494^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~405~^0.317^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~406~^1.189^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~410~^0.415^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~415~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~501~^0.747^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~502~^1.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~503~^2.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~504~^3.644^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~505~^3.157^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~506~^0.613^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~507~^0.663^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~508~^2.334^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~509~^1.604^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~510~^2.418^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~511~^3.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~512~^1.394^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~513~^1.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~514~^5.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~515~^8.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~516~^1.872^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~517~^2.586^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~518~^2.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16128~^~606~^4.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~612~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~613~^3.220^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~614~^1.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~617~^6.617^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~618~^15.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~619~^2.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~626~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~645~^6.701^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16128~^~646~^17.128^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~312~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~315~^1.495^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~404~^0.170^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~405~^0.050^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~406~^0.100^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~410~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~415~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~501~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~502~^0.701^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~503~^0.852^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~504~^1.306^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~505~^1.131^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~506~^0.220^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~507~^0.238^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~508~^0.837^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~509~^0.575^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~510~^0.867^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~511~^1.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~512~^0.499^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~513~^0.704^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~514~^1.899^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~515~^2.970^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~516~^0.671^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~517~^0.927^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~518~^0.809^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16129~^~606~^2.918^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~612~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~613~^2.141^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~614~^0.720^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~617~^4.400^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~618~^10.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~619~^1.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~626~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16129~^~645~^4.456^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16129~^~646~^11.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~312~^0.200^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~315~^0.404^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~404~^0.020^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~405~^0.020^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~406~^0.100^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~410~^0.088^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~415~^0.115^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16130~^~501~^0.050^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~502~^0.131^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~503~^0.159^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~504~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~505~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~506~^0.041^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~507~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~508~^0.157^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~509~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~510~^0.162^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~511~^0.214^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~512~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~513~^0.132^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~514~^0.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~515~^0.556^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~516~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~517~^0.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~518~^0.151^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16130~^~606~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~613~^0.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~614~^0.048^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~617~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~618~^0.666^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~619~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~626~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~645~^0.295^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16130~^~646~^0.755^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~312~^0.376^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~315~^1.174^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~404~^0.157^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~405~^0.101^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~406~^0.379^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~410~^0.132^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~415~^0.091^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16132~^~501~^0.127^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~502~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~503~^0.404^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~504~^0.619^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~505~^0.537^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~506~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~507~^0.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~508~^0.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~509~^0.273^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~510~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~511~^0.542^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~512~^0.237^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~513~^0.334^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~514~^0.900^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~515~^1.408^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~516~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~517~^0.440^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~518~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16132~^~606~^1.157^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~612~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~613~^0.849^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~614~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~617~^1.745^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~618~^3.982^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~619~^0.534^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~626~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~645~^1.767^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16132~^~646~^4.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~312~^0.879^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~315~^1.590^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~404~^0.887^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~405~^0.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~406~^2.158^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~410~^1.556^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~415~^0.371^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~501~^0.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~502~^0.926^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~503~^0.989^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~504~^1.864^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~505~^1.646^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~506~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~507~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~508~^1.421^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~509~^0.786^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~510~^1.160^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~511~^1.685^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~512~^0.755^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~513~^1.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~514~^2.938^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~515~^4.608^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~516~^1.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~517~^1.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~518~^1.218^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16133~^~606~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~613~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~614~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~617~^0.114^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~618~^0.308^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~619~^0.258^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~645~^0.114^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16133~^~646~^0.565^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~312~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~315~^0.487^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~404~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~405~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~406~^0.551^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~410~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~415~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~501~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~502~^0.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~503~^0.337^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~504~^0.635^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~505~^0.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~506~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~507~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~508~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~509~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~510~^0.395^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~511~^0.574^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~512~^0.257^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~513~^0.378^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~514~^1.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~515~^1.570^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~517~^0.373^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~518~^0.415^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16134~^~606~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~613~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~614~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~617~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~618~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~619~^0.088^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~645~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16134~^~646~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~312~^2.880^29^0.104^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~315~^3.721^20^0.326^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~404~^1.030^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~405~^0.450^5^0.034^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~406~^3.090^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~410~^0.795^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16135~^~415~^0.175^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~501~^0.762^30^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~502~^1.179^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~503~^1.468^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~504~^2.497^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~505~^2.136^37^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~506~^0.356^41^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~507~^0.545^32^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~508~^1.429^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~509~^1.457^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~510~^1.530^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~511~^1.886^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~512~^0.790^38^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~513~^1.040^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~514~^3.187^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~515~^4.010^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~516~^1.140^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~517~^1.924^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~518~^1.235^31^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16135~^~606~^2.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~612~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~613~^1.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~614~^0.745^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~617~^5.654^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~618~^4.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~619~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~626~^0.055^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~628~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~645~^6.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16135~^~646~^4.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~312~^0.773^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~315~^1.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~404~^0.295^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~405~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~406~^0.830^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~410~^0.156^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16136~^~415~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~501~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~502~^0.360^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~503~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~504~^0.762^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~505~^0.652^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~506~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~507~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~508~^0.436^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~509~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~510~^0.467^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~511~^0.576^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~512~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~513~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~514~^0.973^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~515~^1.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~516~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~517~^0.588^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~518~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16136~^~606~^0.825^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~612~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~613~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~614~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~617~^2.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~618~^1.457^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~619~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~626~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~628~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~645~^2.153^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16136~^~646~^1.551^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16137~^~312~^0.224^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~315~^0.567^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~404~^0.089^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~405~^0.052^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~406~^0.399^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~410~^0.287^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~415~^0.399^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~501~^0.057^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~502~^0.182^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~503~^0.206^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~504~^0.346^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~505~^0.291^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~506~^0.080^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~507~^0.071^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~508~^0.256^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~509~^0.134^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~510~^0.215^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~511~^0.501^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~512~^0.134^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~513~^0.213^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~514~^0.544^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~515~^0.882^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~516~^0.223^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~517~^0.201^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~518~^0.245^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~606~^1.141^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~612~^0.008^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~613~^0.881^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~614~^0.223^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~615~^0.021^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~617~^4.767^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~618~^2.035^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~619~^0.074^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~624~^0.006^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~626~^0.072^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~628~^0.019^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~645~^4.865^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~646~^2.109^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~653~^0.001^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16137~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~ -~16137~^~687~^0.006^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~ -~16138~^~312~^0.258^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~315~^0.691^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~404~^0.146^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~405~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~406~^1.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~410~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~415~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~501~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~502~^0.492^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~503~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~504~^0.944^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~505~^0.856^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~506~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~507~^0.183^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~508~^0.707^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~509~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~510~^0.562^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~511~^1.280^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~512~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~513~^0.573^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~514~^1.531^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~515~^2.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~516~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~517~^0.545^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~518~^0.667^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16138~^~606~^2.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~612~^0.011^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~613~^1.782^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~614~^0.529^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~617~^9.670^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~618~^0.495^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~619~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~626~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~628~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~645~^10.171^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16138~^~646~^4.160^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16139~^~312~^0.165^2^^~12~^~MA~^^^1^0.165^0.165^0^^^^~08/01/2007~ -~16139~^~315~^0.062^2^^~12~^~MA~^^^1^0.062^0.062^0^^^^~08/01/2007~ -~16139~^~404~^0.029^4^0.023^~12~^~MA~^^^1^0.028^0.062^1^-0.263^0.322^~4~^~08/01/2007~ -~16139~^~405~^0.184^10^0.024^~12~^~MA~^^^1^0.140^0.210^4^0.116^0.251^~4~^~08/01/2007~ -~16139~^~406~^0.425^2^^~12~^~MA~^^^1^0.425^0.425^0^^^^~08/01/2007~ -~16139~^~410~^0.104^2^^~12~^~MA~^^^1^0.104^0.104^0^^^^~08/01/2007~ -~16139~^~415~^0.031^2^^~12~^~MA~^^^1^0.031^0.031^0^^^^~08/01/2007~ -~16139~^~501~^0.022^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~502~^0.062^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~503~^0.066^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~504~^0.107^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~505~^0.076^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~506~^0.016^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~508~^0.065^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~509~^0.051^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~510~^0.067^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~511~^0.108^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~512~^0.035^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~513~^0.060^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~514~^0.166^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~515~^0.281^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~516~^0.059^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~517~^0.085^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~518~^0.081^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16139~^~605~^0.000^7^0.000^~12~^~MA~^^^1^0.000^0.000^2^0.000^0.000^~4~^~08/01/2007~ -~16139~^~606~^0.205^15^0.035^~12~^~MA~^^^1^0.103^0.206^5^0.115^0.295^~4~^~08/01/2007~ -~16139~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~609~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~610~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~611~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~612~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~613~^0.150^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~614~^0.050^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~617~^0.310^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~618~^0.584^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~619~^0.075^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~620~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~626~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~628~^0.010^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~630~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16139~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~ -~16139~^~645~^0.382^7^0.097^~12~^~MA~^^^1^0.212^0.412^2^-0.035^0.799^~4~^~08/01/2007~ -~16139~^~646~^0.858^7^0.168^~12~^~MA~^^^1^0.636^1.029^2^0.136^1.580^~4~^~08/01/2007~ -~16144~^~312~^1.303^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~315~^1.716^6^0.170^~1~^~A~^^^1^1.403^2.496^5^1.278^2.153^~2, 3~^~04/01/2014~ -~16144~^~404~^0.510^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~405~^0.106^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~406~^1.495^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~410~^0.348^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~415~^0.403^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16144~^~501~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~502~^0.895^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~503~^1.078^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~504~^1.809^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~505~^1.740^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~506~^0.212^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~507~^0.327^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~508~^1.230^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~509~^0.667^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~510~^1.238^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~511~^1.928^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~512~^0.702^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~513~^1.042^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~514~^2.758^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~515~^3.868^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~516~^1.014^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~517~^1.042^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~518~^1.150^0^^~4~^~BFPN~^^^^^^^^^^~01/01/1997~ -~16144~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16144~^~606~^0.379^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~613~^0.284^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~614~^0.042^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~615~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~617~^0.490^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~618~^0.886^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~619~^0.250^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~624~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~645~^0.500^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~646~^1.137^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16144~^~654~^0.012^1^^~1~^~A~^^^^^^^^^^~01/01/1997~ -~16145~^~312~^0.272^4^0.003^~1~^~A~^^^1^0.264^0.278^3^0.263^0.282^~2, 3~^~04/01/2011~ -~16145~^~315~^0.384^4^0.016^~1~^~A~^^^1^0.345^0.418^3^0.334^0.435^~2, 3~^~04/01/2011~ -~16145~^~404~^0.067^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.059^0.076^~2, 3~^~04/01/2011~ -~16145~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~04/01/2011~ -~16145~^~406~^0.460^4^0.016^~1~^~A~^^^1^0.420^0.490^3^0.410^0.510^~2, 3~^~04/01/2011~ -~16145~^~501~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~502~^0.293^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~503~^0.377^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~504~^0.677^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~505~^0.558^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~506~^0.104^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~507~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~508~^0.471^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~509~^0.189^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~510~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~511~^0.437^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~512~^0.219^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~513~^0.362^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~514~^0.999^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~515~^1.282^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~516~^0.323^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~517~^0.456^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~518~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16145~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16145~^~606~^0.181^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16145~^~607~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~608~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~609~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~610~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~611~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~612~^0.007^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~613~^0.119^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~614~^0.055^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~617~^0.017^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~618~^0.120^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~619~^0.073^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~620~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~621~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~626~^0.012^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~627~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~628~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~629~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~630~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~631~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16145~^~645~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16145~^~646~^0.193^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16146~^~312~^0.259^4^0.012^~1~^~A~^^^1^0.226^0.284^3^0.220^0.299^~2, 3~^~04/01/2011~ -~16146~^~315~^0.383^4^0.031^~1~^~A~^^^1^0.316^0.448^3^0.285^0.481^~2, 3~^~04/01/2011~ -~16146~^~404~^0.052^4^0.009^~1~^~A~^^^1^0.030^0.070^3^0.025^0.080^~2, 3~^~04/01/2011~ -~16146~^~405~^0.019^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.007^0.031^~1, 2, 3~^~04/01/2011~ -~16146~^~406~^0.272^4^0.027^~1~^~A~^^^1^0.200^0.320^3^0.185^0.360^~2, 3~^~04/01/2011~ -~16146~^~501~^0.078^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~502~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~503~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~504~^0.513^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~505~^0.446^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~506~^0.085^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~507~^0.061^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~508~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~509~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~510~^0.329^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~511~^0.361^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~512~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~513~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~514~^0.746^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~515~^0.996^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~516~^0.262^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~517~^0.353^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~518~^0.385^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16146~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16146~^~606~^0.158^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~607~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~608~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~609~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~610~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~611~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~612~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~613~^0.155^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~614~^0.003^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~617~^0.153^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~618~^0.115^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~619~^0.158^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~620~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~621~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~626~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~627~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~628~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~629~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~630~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~631~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~645~^0.153^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16146~^~646~^0.273^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~ -~16147~^~312~^0.200^4^0.029^~1~^~A~^^^1^0.161^0.284^3^0.109^0.292^~2, 3~^~02/01/2005~ -~16147~^~315~^0.951^4^0.110^~1~^~A~^^^1^0.692^1.190^3^0.602^1.300^~2, 3~^~02/01/2005~ -~16147~^~404~^2.651^3^2.540^~1~^~A~^^^1^0.089^7.730^2^-8.276^13.578^~2, 3~^~04/01/2007~ -~16147~^~405~^0.244^4^0.084^~1~^~A~^^^1^0.133^0.490^3^-0.022^0.510^~2, 3~^~02/01/2005~ -~16147~^~406~^3.753^4^2.655^~1~^~A~^^^1^0.740^11.700^3^-4.695^12.202^~2, 3~^~04/01/2007~ -~16147~^~410~^0.289^4^0.078^~1~^~A~^^^1^0.162^0.516^3^0.040^0.538^~2, 3~^~02/01/2005~ -~16147~^~415~^0.303^4^0.201^~1~^~A~^^^1^0.087^0.905^3^-0.335^0.942^~2, 3~^~02/01/2005~ -~16147~^~501~^0.162^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~502~^0.605^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~503~^0.780^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~504~^1.399^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~505~^1.004^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~506~^0.291^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~507~^0.260^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~508~^0.885^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~509~^0.652^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~510~^0.890^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~511~^1.045^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~512~^0.465^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~513~^0.726^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~514~^1.553^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~516~^0.660^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~517~^1.299^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~518~^0.967^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~16147~^~606~^1.440^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~609~^0.099^4^0.083^~1~^~A~^^^1^0.000^0.348^3^-0.165^0.364^~1, 2, 3~^~02/01/2005~ -~16147~^~610~^0.081^4^0.046^~1~^~A~^^^1^0.000^0.214^3^-0.066^0.229^~1, 2, 3~^~02/01/2005~ -~16147~^~611~^0.032^4^0.019^~1~^~A~^^^1^0.000^0.076^3^-0.029^0.093^~1, 2, 3~^~02/01/2005~ -~16147~^~612~^0.112^4^0.067^~1~^~A~^^^1^0.000^0.263^3^-0.100^0.323^~1, 2, 3~^~02/01/2005~ -~16147~^~613~^0.805^4^0.100^~1~^~A~^^^1^0.512^0.958^3^0.486^1.123^~2, 3~^~02/01/2005~ -~16147~^~614~^0.267^4^0.085^~1~^~A~^^^1^0.091^0.439^3^-0.002^0.536^~2, 3~^~02/01/2005~ -~16147~^~615~^0.018^4^0.005^~1~^~A~^^^1^0.007^0.031^3^0.002^0.034^~2, 3~^~02/01/2005~ -~16147~^~617~^1.720^4^0.315^~1~^~A~^^^1^1.092^2.408^3^0.717^2.724^~2, 3~^~02/01/2005~ -~16147~^~618~^1.940^4^0.737^~1~^~A~^^^1^0.550^3.899^3^-0.405^4.286^~2, 3~^~02/01/2005~ -~16147~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~620~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~02/01/2005~ -~16147~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~624~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.015^3^-0.006^0.020^~1, 2, 3~^~02/01/2005~ -~16147~^~625~^0.008^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.025^~1, 2, 3~^~02/01/2005~ -~16147~^~626~^0.023^4^0.010^~1~^~A~^^^1^0.000^0.045^3^-0.009^0.055^~1, 2, 3~^~02/01/2005~ -~16147~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~628~^0.023^4^0.005^~1~^~A~^^^1^0.014^0.038^3^0.007^0.040^~2, 3~^~02/01/2005~ -~16147~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~ -~16147~^~645~^1.778^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~646~^2.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16147~^~652~^0.011^4^0.007^~1~^~A~^^^1^0.000^0.027^3^-0.010^0.033^~1, 2, 3~^~02/01/2005~ -~16147~^~653~^0.008^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.006^0.021^~1, 2, 3~^~02/01/2005~ -~16147~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~687~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.008^3^-0.004^0.008^~1, 2, 3~^~02/01/2005~ -~16147~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~16147~^~851~^0.081^4^0.024^~1~^~A~^^^1^0.036^0.143^3^0.003^0.159^~2, 3~^~02/01/2005~ -~16149~^~312~^0.760^2^^~9~^~MC~^^^1^0.754^0.765^1^^^^~05/01/2006~ -~16149~^~315~^1.979^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~404~^0.116^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~405~^0.122^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~406~^16.385^2^^~9~^~MC~^^^1^16.202^16.567^1^^^^~05/01/2006~ -~16149~^~410~^1.229^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~415~^0.471^2^^~9~^~MC~^^^1^0.457^0.484^1^^^^~05/01/2006~ -~16149~^~605~^0.160^2^^~9~^~MC~^^^1^0.150^0.170^1^^^^~05/01/2006~ -~16149~^~606~^10.220^2^^~9~^~MC~^^^1^10.150^10.290^1^^^^~05/01/2006~ -~16149~^~607~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~608~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~609~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~610~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~611~^0.207^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~612~^0.058^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~613~^7.073^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~614~^0.797^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~617~^26.075^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~618~^16.175^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~619~^0.091^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~620~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~621~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~626~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~627~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~628~^0.922^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~629~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~630~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~631~^0.000^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2006~ -~16149~^~645~^26.997^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16149~^~646~^16.266^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~ -~16150~^~312~^0.580^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~315~^1.475^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16150~^~404~^0.270^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~405~^0.060^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~406~^14.600^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~410~^1.066^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~ -~16150~^~415~^0.310^0^^~1~^^^^^^^^^^^~04/01/2007~ -~16150~^~606~^5.760^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~611~^0.015^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~612~^0.145^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~613~^3.807^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~614~^1.793^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~617~^15.867^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~618~^9.130^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~619~^0.052^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~628~^0.289^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~16150~^~645~^16.156^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16150~^~646~^9.182^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~16155~^~312~^1.640^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~404~^0.083^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~405~^0.105^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~406~^13.369^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~415~^2.230^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16155~^~606~^10.125^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~16155~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~611~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~612~^0.218^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~613~^5.738^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~614~^2.702^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~617~^23.945^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~618~^13.769^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~619~^0.070^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~628~^0.435^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16155~^~645~^24.832^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~16155~^~646~^13.847^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~16156~^~312~^1.770^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~404~^0.125^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~ -~16156~^~405~^0.112^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~ -~16156~^~406~^13.640^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~ -~16156~^~415~^2.520^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~ -~16156~^~606~^7.972^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16156~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~611~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~612~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~613~^5.684^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~614~^2.214^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~617~^23.728^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~618~^14.567^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~619~^0.081^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~628~^0.638^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~ -~16156~^~645~^24.366^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16156~^~646~^14.648^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16157~^~312~^0.912^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~315~^1.600^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~404~^0.486^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~405~^0.106^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~406~^1.762^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~410~^0.606^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~415~^0.492^2^^~1~^~A~^^^^^^^^^^~12/01/1996~ -~16157~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16157~^~606~^0.693^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~607~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~608~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~609~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~610~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~611~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~612~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~613~^0.555^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~614~^0.094^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~617~^1.490^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~618~^2.871^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~619~^0.112^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~620~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~621~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~626~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~627~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~628~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~629~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~630~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~631~^0.000^0^^~4~^~BFSN~^~16056~^^^^^^^^^~02/01/2003~ -~16157~^~645~^1.504^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16157~^~646~^2.983^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~ -~16158~^~312~^0.377^11^0.003^~1~^~A~^^^1^0.270^0.396^6^0.369^0.384^~2, 3~^~12/01/2016~ -~16158~^~315~^1.155^11^0.013^~1~^~A~^^^1^0.785^1.210^4^1.119^1.191^~2, 3~^~12/01/2016~ -~16158~^~404~^0.160^6^0.003^~1~^~A~^^^1^0.120^0.170^2^0.148^0.173^~2, 3~^~12/01/2016~ -~16158~^~405~^0.127^6^0.005^~1~^~A~^^^1^0.080^0.140^2^0.105^0.148^~2, 3~^~12/01/2016~ -~16158~^~406~^1.024^6^0.019^~1~^~A~^^^1^0.820^1.090^2^0.941^1.107^~2, 3~^~12/01/2016~ -~16158~^~410~^0.346^4^0.013^~1~^~A~^^^1^0.260^0.370^1^0.177^0.514^~2, 3~^~12/01/2016~ -~16158~^~415~^0.146^6^0.008^~1~^~A~^^^1^0.110^0.160^2^0.114^0.178^~2, 3~^~12/01/2016~ -~16158~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~606~^2.562^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~612~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^2^0.008^0.011^~2, 3~^~12/01/2016~ -~16158~^~613~^1.662^6^0.014^~1~^~A~^^^1^1.051^1.762^2^1.601^1.723^~2, 3~^~12/01/2016~ -~16158~^~614~^0.727^6^0.008^~1~^~A~^^^1^0.478^0.771^2^0.693^0.760^~2, 3~^~12/01/2016~ -~16158~^~615~^0.075^6^0.001^~1~^~A~^^^1^0.072^0.083^2^0.070^0.081^~2, 3~^~12/01/2016~ -~16158~^~617~^5.258^6^0.046^~1~^~AS~^^^1^4.871^8.736^2^5.062^5.454^~2, 3~^~12/01/2016~ -~16158~^~618~^8.077^6^0.070^~1~^~AS~^^^1^4.796^8.581^2^7.784^8.370^~2, 3~^~12/01/2016~ -~16158~^~619~^0.725^6^0.004^~1~^~AS~^^^1^0.438^0.753^2^0.710^0.741^~2, 3~^~12/01/2016~ -~16158~^~620~^0.006^6^0.000^~1~^~A~^^^1^0.003^0.006^^^^~2, 3~^~12/01/2016~ -~16158~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~624~^0.045^6^0.003^~1~^~A~^^^1^0.031^0.062^2^0.033^0.058^~2, 3~^~12/01/2016~ -~16158~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~626~^0.017^6^0.001^~1~^~AS~^^^1^0.015^0.027^2^0.014^0.020^~2, 3~^~12/01/2016~ -~16158~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~628~^0.055^6^0.001^~1~^~A~^^^1^0.046^0.126^3^0.053^0.057^~2, 3~^~12/01/2016~ -~16158~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.004^1^-0.001^0.001^~2, 3~^~12/01/2016~ -~16158~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~645~^5.340^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~646~^8.812^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~12/01/2016~ -~16158~^~653~^0.012^6^0.001^~1~^~A~^^^1^0.006^0.014^2^0.010^0.015^~2, 3~^~12/01/2016~ -~16158~^~654~^0.028^6^0.007^~1~^~A~^^^1^0.019^0.044^2^-0.002^0.058^~2, 3~^~12/01/2016~ -~16158~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~663~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^2^0.003^0.010^~2, 3~^~12/01/2016~ -~16158~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~665~^0.012^6^0.000^~1~^~A~^^^1^0.008^0.017^2^0.011^0.014^~2, 3~^~12/01/2016~ -~16158~^~670~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^1^0.002^0.003^~1, 2, 3~^~12/01/2016~ -~16158~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.011^1^0.001^0.002^~1, 2, 3~^~12/01/2016~ -~16158~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^2^0.002^0.006^~2, 3~^~12/01/2016~ -~16158~^~673~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.027^2^0.014^0.020^~2, 3~^~12/01/2016~ -~16158~^~674~^5.252^6^0.045^~1~^~A~^^^1^4.866^8.727^2^5.058^5.446^~2, 3~^~12/01/2016~ -~16158~^~675~^8.062^6^0.070^~1~^~A~^^^1^4.785^8.565^2^7.770^8.354^~2, 3~^~12/01/2016~ -~16158~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^1^-0.001^0.001^~1, 2, 3~^~12/01/2016~ -~16158~^~685~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.029^2^0.011^0.017^~2, 3~^~12/01/2016~ -~16158~^~687~^0.008^6^0.000^~1~^~A~^^^1^0.005^0.010^2^0.006^0.009^~2, 3~^~12/01/2016~ -~16158~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2016~ -~16158~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~ -~16158~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~851~^0.711^6^0.004^~1~^~A~^^^1^0.411^0.742^2^0.692^0.730^~2, 3~^~12/01/2016~ -~16158~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16158~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2016~ -~16159~^~312~^0.200^2^^~1~^~A~^^^1^0.170^0.230^1^^^^~07/01/2015~ -~16159~^~315~^0.666^2^^~1~^~A~^^^1^0.521^0.810^1^^^^~07/01/2015~ -~16159~^~404~^0.048^2^^~1~^~A~^^^1^0.031^0.064^1^^^^~12/01/2003~ -~16159~^~405~^0.048^2^^~1~^~A~^^^1^0.037^0.058^1^^^^~07/01/2015~ -~16159~^~406~^0.241^2^^~1~^~A~^^^1^0.128^0.354^1^^^^~07/01/2015~ -~16159~^~410~^0.844^2^^~1~^~A~^^^1^0.108^1.580^1^^^^~07/01/2015~ -~16159~^~415~^0.083^2^^~1~^~A~^^^1^0.075^0.091^1^^^^~07/01/2015~ -~16159~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~502~^0.453^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~503~^0.490^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~504~^0.804^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~505~^0.510^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~506~^0.122^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~507~^0.033^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~508~^0.482^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~509~^0.405^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~510~^0.503^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~511~^0.790^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~512~^0.249^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~513~^0.447^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~514~^1.176^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~515~^1.899^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~516~^0.423^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~517~^0.626^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~518~^0.586^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16159~^~606~^0.919^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~613~^0.631^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~614~^0.270^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~615~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~617~^1.246^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~618~^2.386^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~619~^0.261^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~624~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~626~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~628~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16159~^~645~^1.318^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~646~^2.657^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16159~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~653~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~687~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16159~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~696~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/2003~ -~16159~^~697~^0.036^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16160~^~312~^0.328^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~315~^1.052^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~404~^0.042^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~405~^0.077^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~406~^0.639^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~410~^0.037^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~415~^0.039^1^^~1~^~A~^^^^^^^^^^~11/01/1997~ -~16160~^~501~^0.188^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~502~^0.630^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~503~^0.682^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~504~^1.118^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~505~^0.709^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~506~^0.169^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~507~^0.046^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~508~^0.671^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~509~^0.563^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~510~^0.699^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~511~^1.100^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~512~^0.346^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~513~^0.621^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~514~^1.636^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~515~^2.642^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~516~^0.589^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~517~^0.871^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~518~^0.815^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16160~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16160~^~606~^1.445^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~612~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~613~^1.060^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~614~^0.356^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~617~^2.178^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~618~^4.971^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~619~^0.667^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~626~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~645~^2.205^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16160~^~646~^5.638^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1997~ -~16161~^~312~^0.207^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~404~^0.100^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~405~^0.040^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~406~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~415~^0.011^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~501~^0.068^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~502~^0.215^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~503~^0.233^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~504~^0.279^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~505~^0.341^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~506~^0.074^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~507~^0.072^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~508~^0.303^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~509~^0.193^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~510~^0.295^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~511~^0.383^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~512~^0.117^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~513~^0.193^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~514~^0.550^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~515~^0.801^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~516~^0.193^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~517~^0.252^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~518~^0.238^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16161~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16161~^~606~^0.357^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~645~^0.522^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16161~^~646~^1.550^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~312~^0.203^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~404~^0.101^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~405~^0.041^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~406~^0.247^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~415~^0.011^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~501~^0.085^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~502~^0.286^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~503~^0.349^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~504~^0.586^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~505~^0.459^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~506~^0.106^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~507~^0.100^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~508~^0.394^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~509~^0.299^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~510~^0.385^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~511~^0.517^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~512~^0.169^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~513~^0.266^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~514~^0.771^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~515~^1.176^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~516~^0.268^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~517~^0.349^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~518~^0.333^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16162~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16162~^~606~^0.406^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~645~^0.539^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16162~^~646~^1.485^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~404~^0.079^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~405~^0.034^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~406~^0.235^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~415~^0.011^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~501~^0.123^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~502~^0.309^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~503~^0.384^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~504~^0.639^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~505~^0.495^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~506~^0.094^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~507~^0.127^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~508~^0.430^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~509~^0.314^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~510~^0.399^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~511~^0.532^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~512~^0.182^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~513~^0.278^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~514~^0.817^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~515~^1.281^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~516~^0.281^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~517~^0.365^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~518~^0.350^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16163~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16163~^~606~^0.300^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~645~^0.345^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16163~^~646~^1.061^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~312~^0.121^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~404~^0.040^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~405~^0.020^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~406~^0.110^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~415~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~501~^0.095^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~502~^0.220^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~503~^0.297^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~504~^0.501^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~505~^0.384^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~506~^0.077^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~507~^0.079^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~508~^0.322^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~509~^0.229^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~510~^0.286^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~511~^0.470^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~512~^0.156^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~513~^0.248^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~514~^0.721^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~515~^1.309^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~516~^0.255^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~517~^0.337^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~518~^0.313^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16164~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16164~^~606~^0.133^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~645~^0.136^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16164~^~646~^0.449^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~312~^0.129^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~404~^0.030^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~405~^0.020^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~406~^0.110^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~415~^0.000^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~501~^0.096^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~502~^0.238^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~503~^0.324^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~504~^0.544^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~505~^0.428^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~506~^0.088^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~507~^0.093^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~508~^0.363^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~509~^0.251^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~510~^0.321^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~511~^0.527^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~512~^0.175^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~513~^0.280^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~514~^0.809^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~515~^1.462^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~516~^0.288^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~517~^0.367^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~518~^0.347^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~ -~16165~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16165~^~606~^0.116^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~645~^0.118^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16165~^~646~^0.395^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~16166~^~312~^0.206^1^^~12~^~MA~^^^^^^^^^^~08/01/2007~ -~16166~^~404~^0.022^3^0.020^~12~^~MA~^^^1^0.020^0.062^2^-0.064^0.109^~4~^~08/01/2007~ -~16166~^~405~^0.262^8^0.223^~12~^~MA~^^^1^0.028^0.741^4^-0.356^0.880^~4~^~08/01/2007~ -~16166~^~406~^0.513^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~410~^0.089^1^^~12~^~MA~^^^^^^^^^^~08/01/2007~ -~16166~^~415~^0.077^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~501~^0.038^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~502~^0.108^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~503~^0.114^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~504~^0.186^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~505~^0.131^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~506~^0.027^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~507~^0.000^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~508~^0.113^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~509~^0.089^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~510~^0.117^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~511~^0.187^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~512~^0.061^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~513~^0.104^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~514~^0.288^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~515~^0.487^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~516~^0.103^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~517~^0.147^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~518~^0.140^0^^~6~^~JA~^^^^^^^^^^~08/01/2007~ -~16166~^~605~^0.000^8^0.000^~12~^~MA~^^^1^0.000^0.000^4^0.000^0.000^~4~^~08/01/2007~ -~16166~^~606~^0.240^9^0.106^~12~^~MA~^^^1^0.000^0.412^5^-0.032^0.511^~4~^~08/01/2007~ -~16166~^~607~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~608~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~609~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~610~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~611~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~612~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~613~^0.150^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~614~^0.050^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~617~^0.310^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~618~^0.584^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~619~^0.075^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~620~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~621~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~626~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~627~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~628~^0.010^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~629~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~630~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~631~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16166~^~645~^0.379^7^0.090^~12~^~MA~^^^1^0.206^0.412^3^0.092^0.666^~4~^~08/01/2007~ -~16166~^~646~^0.836^7^0.148^~12~^~MA~^^^1^0.588^1.029^3^0.365^1.307^~4~^~08/01/2007~ -~16167~^~312~^0.571^5^0.042^~1~^~A~^^^1^0.425^0.671^4^0.454^0.688^~2, 3~^~02/01/2004~ -~16167~^~315~^1.361^5^0.199^~1~^~A~^^^1^0.814^1.960^4^0.810^1.912^~2, 3~^~02/01/2004~ -~16167~^~404~^0.107^5^0.017^~1~^~A~^^^1^0.074^0.153^4^0.061^0.153^~2, 3~^~02/01/2004~ -~16167~^~405~^0.105^0^^~4~^~BFSN~^~16098~^^^^^^^^^~07/01/2004~ -~16167~^~406~^13.160^5^0.291^~1~^~A~^^^1^12.000^13.500^4^12.352^13.967^~2, 3~^~02/01/2004~ -~16167~^~410~^1.044^5^0.051^~1~^~A~^^^1^0.914^1.160^4^0.903^1.185^~2, 3~^~02/01/2004~ -~16167~^~415~^0.551^5^0.081^~1~^~A~^^^1^0.335^0.784^4^0.326^0.777^~2, 3~^~02/01/2004~ -~16167~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~502~^0.518^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~503~^0.608^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~504~^1.527^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~505~^0.672^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~506~^0.262^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~508~^1.187^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~509~^0.819^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~510~^0.773^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~511~^2.734^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~513~^0.905^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~514~^3.016^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~515~^5.029^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~516~^1.419^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~517~^1.391^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~518~^1.463^0^^~1~^~A~^^^^^^^^^^~11/01/2009~ -~16167~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2017~ -~16167~^~606~^9.519^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~607~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~07/01/2004~ -~16167~^~608~^0.000^0^^~4~^~BFSN~^~16098~^^^^^^^^^~07/01/2004~ -~16167~^~609~^0.014^5^0.005^~1~^~A~^^^1^0.000^0.030^4^0.000^0.028^~1, 2, 3~^~02/01/2004~ -~16167~^~610~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~611~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~612~^0.011^5^0.006^~1~^~A~^^^1^0.002^0.030^4^-0.005^0.027^~1, 2, 3~^~02/01/2004~ -~16167~^~613~^4.520^5^0.222^~1~^~A~^^^1^3.680^4.980^4^3.904^5.136^~2, 3~^~02/01/2004~ -~16167~^~614~^1.854^5^0.040^~1~^~A~^^^1^1.750^1.980^4^1.743^1.965^~2, 3~^~02/01/2004~ -~16167~^~615~^0.614^5^0.037^~1~^~A~^^^1^0.540^0.750^4^0.512^0.716^~2, 3~^~02/01/2004~ -~16167~^~617~^19.880^5^0.834^~1~^~A~^^^1^17.700^21.800^4^17.565^22.195^~2, 3~^~02/01/2004~ -~16167~^~618~^11.280^5^0.511^~1~^~A~^^^1^10.000^12.800^4^9.860^12.700^~2, 3~^~02/01/2004~ -~16167~^~619~^0.039^5^0.009^~1~^~A~^^^1^0.008^0.060^4^0.015^0.064^~1, 2, 3~^~02/01/2004~ -~16167~^~620~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~624~^1.730^5^0.067^~1~^~A~^^^1^1.580^1.980^4^1.544^1.916^~2, 3~^~02/01/2004~ -~16167~^~625~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~626~^0.052^5^0.002^~1~^~A~^^^1^0.050^0.060^4^0.046^0.057^~2, 3~^~02/01/2004~ -~16167~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~628~^0.680^5^0.041^~1~^~A~^^^1^0.600^0.820^4^0.567^0.793^~2, 3~^~02/01/2004~ -~16167~^~629~^0.012^5^0.004^~1~^~A~^^^1^0.008^0.030^4^0.000^0.024^~1, 2, 3~^~02/01/2004~ -~16167~^~630~^0.114^5^0.013^~1~^~A~^^^1^0.090^0.160^4^0.078^0.150^~2, 3~^~02/01/2004~ -~16167~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~645~^20.726^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~646~^11.331^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~ -~16167~^~652~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~653~^0.040^5^0.004^~1~^~A~^^^1^0.030^0.050^4^0.027^0.052^~2, 3~^~02/01/2004~ -~16167~^~654~^0.736^5^0.020^~1~^~A~^^^1^0.700^0.790^4^0.680^0.792^~2, 3~^~02/01/2004~ -~16167~^~672~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~689~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16167~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2004~ -~16168~^~312~^0.206^1^^~12~^~MA~^^^^^^^^^^~08/01/2007~ -~16168~^~404~^0.022^3^0.020^~12~^~MA~^^^1^0.020^0.062^2^-0.064^0.109^~4~^~08/01/2007~ -~16168~^~405~^0.262^8^0.223^~12~^~MA~^^^1^0.028^0.741^4^-0.356^0.880^~4~^~08/01/2007~ -~16168~^~406~^0.513^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~410~^0.089^1^^~12~^~MA~^^^^^^^^^^~08/01/2007~ -~16168~^~415~^0.077^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~502~^0.075^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~503~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~504~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~505~^0.092^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~506~^0.019^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2007~ -~16168~^~508~^0.079^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~509~^0.062^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~510~^0.081^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~511~^0.131^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~512~^0.043^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~513~^0.073^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~514~^0.201^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~515~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~516~^0.072^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~517~^0.103^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~518~^0.098^0^^~1~^~A~^^^^^^^^^^~08/01/2007~ -~16168~^~605~^0.000^8^0.000^~12~^~MA~^^^1^0.000^0.000^4^0.000^0.000^~4~^~08/01/2007~ -~16168~^~606~^0.240^9^0.106^~12~^~MA~^^^1^0.000^0.412^5^-0.032^0.511^~4~^~08/01/2007~ -~16168~^~607~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~608~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~609~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~610~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~611~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~612~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~613~^0.150^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~614~^0.050^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~617~^0.310^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~618~^0.584^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~619~^0.075^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~620~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~621~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~626~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~627~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~628~^0.010^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~629~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~630~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~631~^0.000^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~ -~16168~^~645~^0.379^7^0.090^~12~^~MA~^^^1^0.206^0.412^3^0.092^0.666^~4~^~08/01/2007~ -~16168~^~646~^0.836^7^0.148^~12~^~MA~^^^1^0.588^1.029^3^0.365^1.307^~4~^~08/01/2007~ -~16171~^~312~^0.171^2^^~1~^~A~^^^1^0.170^0.172^1^^^^~03/01/2008~ -~16171~^~315~^0.332^2^^~1~^~A~^^^1^0.300^0.363^1^^^^~03/01/2008~ -~16171~^~404~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~03/01/2008~ -~16171~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~03/01/2008~ -~16171~^~406~^0.370^2^^~1~^~A~^^^1^0.314^0.425^1^^^^~03/01/2008~ -~16171~^~410~^0.175^2^^~1~^~A~^^^1^0.170^0.180^1^^^^~03/01/2008~ -~16171~^~415~^0.107^2^^~1~^~A~^^^1^0.097^0.116^1^^^^~03/01/2008~ -~16171~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~606~^0.142^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~612~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^^~03/01/2008~ -~16171~^~613~^0.104^2^^~1~^~A~^^^1^0.117^0.152^1^^^^~03/01/2008~ -~16171~^~614~^0.025^2^^~1~^~A~^^^1^0.026^0.040^1^^^^~03/01/2008~ -~16171~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.006^1^^^^~03/01/2008~ -~16171~^~617~^0.195^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~618~^0.295^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~619~^0.176^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~624~^0.003^2^^~1~^~A~^^^1^0.003^0.006^1^^^^~03/01/2008~ -~16171~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~628~^0.008^2^^~1~^~A~^^^1^0.002^0.018^1^^^^~03/01/2008~ -~16171~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~645~^0.206^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~646~^0.471^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~653~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^^~03/01/2008~ -~16171~^~654~^0.003^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~03/01/2008~ -~16171~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~665~^0.003^2^^~1~^~A~^^^1^0.001^0.007^1^^^^~03/01/2008~ -~16171~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~671~^0.002^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~03/01/2008~ -~16171~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~673~^0.002^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~03/01/2008~ -~16171~^~674~^0.195^2^^~1~^~A~^^^1^0.109^0.396^1^^^^~03/01/2008~ -~16171~^~675~^0.291^2^^~1~^~A~^^^1^0.281^0.474^1^^^^~03/01/2008~ -~16171~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~03/01/2008~ -~16171~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~ -~16171~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~16171~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~851~^0.176^2^^~1~^~A~^^^1^0.203^0.252^1^^^^~03/01/2008~ -~16171~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16171~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2008~ -~16172~^~312~^0.163^2^^~1~^~A~^^^1^0.157^0.169^1^^^^~03/01/2008~ -~16172~^~315~^0.326^2^^~1~^~A~^^^1^0.307^0.344^1^^^^~03/01/2008~ -~16172~^~404~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~03/01/2008~ -~16172~^~405~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^~1~^~03/01/2008~ -~16172~^~406~^0.362^2^^~1~^~A~^^^1^0.305^0.420^1^^^^~03/01/2008~ -~16172~^~410~^0.195^2^^~1~^~A~^^^1^0.180^0.210^1^^^^~03/01/2008~ -~16172~^~415~^0.113^2^^~1~^~A~^^^1^0.104^0.122^1^^^^~03/01/2008~ -~16172~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~606~^0.093^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~613~^0.072^2^^~1~^~A~^^^1^0.089^0.091^1^^^^~05/01/2009~ -~16172~^~614~^0.012^2^^~1~^~A~^^^1^0.014^0.016^1^^^^~05/01/2009~ -~16172~^~615~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^^~05/01/2009~ -~16172~^~617~^0.043^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~618~^0.134^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~619~^0.153^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~624~^0.002^2^^~1~^~A~^^^1^0.002^0.003^1^^^^~05/01/2009~ -~16172~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~645~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~646~^0.287^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~652~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2009~ -~16172~^~653~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2009~ -~16172~^~654~^0.003^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~05/01/2009~ -~16172~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~671~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2009~ -~16172~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~673~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~674~^0.043^2^^~1~^~A~^^^1^0.053^0.054^1^^^^~05/01/2009~ -~16172~^~675~^0.134^2^^~1~^~A~^^^1^0.153^0.180^1^^^^~05/01/2009~ -~16172~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16172~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16172~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~851~^0.153^2^^~1~^~A~^^^1^0.188^0.192^1^^^^~05/01/2009~ -~16172~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16172~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16173~^~312~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~06/01/2008~ -~16173~^~315~^0.295^2^^~1~^~A~^^^1^0.230^0.360^1^^^^~06/01/2008~ -~16173~^~404~^0.027^2^^~1~^~A~^^^1^0.015^0.040^1^^^~1~^~06/01/2008~ -~16173~^~405~^0.017^2^^~1~^~A~^^^1^0.015^0.020^1^^^~1~^~06/01/2008~ -~16173~^~406~^0.640^2^^~1~^~A~^^^1^0.510^0.770^1^^^^~06/01/2008~ -~16173~^~410~^0.175^2^^~1~^~A~^^^1^0.160^0.190^1^^^^~06/01/2008~ -~16173~^~415~^0.085^2^^~1~^~A~^^^1^0.080^0.090^1^^^^~06/01/2008~ -~16173~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~502~^0.162^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~503~^0.208^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~504~^0.407^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~505~^0.271^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~506~^0.133^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~508~^0.277^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~509~^0.172^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~510~^0.290^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~511~^0.206^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~512~^0.108^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~513~^0.265^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~514~^0.565^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~515~^0.797^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~516~^0.207^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~517~^0.344^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~518~^0.312^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~16173~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~605~^0.171^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~606~^0.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~610~^0.015^2^^~1~^~A~^^^1^0.015^0.016^1^^^^~06/01/2008~ -~16173~^~611~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~06/01/2008~ -~16173~^~612~^0.007^2^^~1~^~A~^^^1^0.006^0.009^1^^^^~06/01/2008~ -~16173~^~613~^0.715^2^^~1~^~A~^^^1^0.709^0.721^1^^^^~06/01/2008~ -~16173~^~614~^0.140^2^^~1~^~A~^^^1^0.000^0.279^1^^^~1~^~06/01/2008~ -~16173~^~615~^0.012^2^^~1~^~A~^^^1^0.000^0.023^1^^^~1~^~06/01/2008~ -~16173~^~617~^1.604^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~618~^3.895^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~619~^0.479^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~16173~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~624~^0.012^2^^~1~^~A~^^^1^0.000^0.024^1^^^~1~^~06/01/2008~ -~16173~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~626~^0.007^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~628~^0.064^2^^~1~^~A~^^^1^0.063^0.064^1^^^^~06/01/2008~ -~16173~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~645~^1.676^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~646~^4.379^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~652~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~06/01/2008~ -~16173~^~653~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~06/01/2008~ -~16173~^~654~^0.014^2^^~1~^~A~^^^1^0.010^0.019^1^^^^~06/01/2008~ -~16173~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~663~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~06/01/2008~ -~16173~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~665~^0.164^2^^~1~^~A~^^^1^0.059^0.268^1^^^^~06/01/2008~ -~16173~^~670~^0.014^2^^~1~^~A~^^^1^0.004^0.023^1^^^^~06/01/2008~ -~16173~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~672~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2008~ -~16173~^~673~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~06/01/2008~ -~16173~^~674~^1.597^2^^~1~^~A~^^^1^1.522^1.672^1^^^^~06/01/2008~ -~16173~^~675~^3.718^2^^~1~^~A~^^^1^3.365^4.071^1^^^^~06/01/2008~ -~16173~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~685~^0.053^2^^~1~^~A~^^^1^0.051^0.056^1^^^^~06/01/2008~ -~16173~^~687~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~06/01/2008~ -~16173~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~16173~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~695~^0.164^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~16173~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~851~^0.426^2^^~1~^~A~^^^1^0.301^0.551^1^^^^~06/01/2008~ -~16173~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16173~^~853~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2008~ -~16173~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2008~ -~16174~^~312~^0.540^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~315~^1.285^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~404~^0.054^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~405~^0.357^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~406~^2.135^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~410~^0.453^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~415~^0.199^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16174~^~606~^3.400^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~16174~^~609~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~612~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~613~^2.200^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~614~^0.800^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~615~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~617~^3.475^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~618~^2.518^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~619~^0.120^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~624~^0.200^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~626~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~628~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~630~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~645~^3.745^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~16174~^~646~^2.638^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~16174~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~687~^0.070^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16174~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~10/01/2000~ -~16210~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16210~^~606~^0.200^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16210~^~645~^0.300^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16210~^~646~^1.200^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16211~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16211~^~606~^1.300^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16211~^~645~^1.300^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16211~^~646~^3.800^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16212~^~606~^0.700^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~645~^1.400^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16212~^~646~^3.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16213~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16213~^~606~^0.500^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16213~^~645~^1.200^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16213~^~646~^2.700^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16214~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16214~^~606~^0.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16214~^~645~^0.600^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16214~^~646~^1.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16215~^~404~^0.060^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~405~^0.150^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16215~^~606~^0.200^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16215~^~645~^0.400^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16215~^~646~^1.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16216~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16216~^~606~^0.210^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16216~^~645~^0.500^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16216~^~646~^1.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16219~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~405~^0.140^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16219~^~606~^0.180^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~ -~16219~^~645~^0.200^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16219~^~646~^0.400^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~ -~16222~^~312~^0.082^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16222~^~404~^0.154^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16222~^~405~^0.207^5^0.015^~12~^~MA~^^^1^0.177^0.210^3^0.160^0.254^~4~^~06/01/2007~ -~16222~^~406~^0.165^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16222~^~410~^0.082^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16222~^~415~^0.049^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16222~^~605~^0.000^6^0.000^~12~^~MA~^^^1^0.000^0.000^4^0.000^0.000^~4~^~08/01/2007~ -~16222~^~606~^0.206^6^0.000^~12~^~MA~^^^1^0.206^0.206^4^0.206^0.206^~4~^~08/01/2007~ -~16222~^~645~^0.392^4^0.108^~12~^~MA~^^^1^0.206^0.412^2^-0.072^0.855^~4~^~08/01/2007~ -~16222~^~646~^1.009^4^0.108^~12~^~MA~^^^1^0.823^1.029^2^0.545^1.472^~4~^~08/01/2007~ -~16223~^~312~^0.123^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16223~^~404~^0.062^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16223~^~405~^0.199^3^0.085^~12~^~MA~^^^1^0.028^0.210^2^-0.164^0.563^~4~^~06/01/2007~ -~16223~^~406~^3.292^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16223~^~415~^0.233^3^0.092^~12~^~MA~^^^1^0.066^0.247^2^-0.163^0.628^~4~^~06/01/2007~ -~16223~^~605~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^3^0.000^0.000^~4~^~06/01/2007~ -~16223~^~606~^0.206^4^0.000^~12~^~MA~^^^1^0.206^0.206^3^0.206^0.206^~4~^~06/01/2007~ -~16223~^~645~^0.412^4^0.000^~12~^~MA~^^^1^0.412^0.412^3^0.412^0.412^~4~^~06/01/2007~ -~16223~^~646~^1.190^4^0.166^~12~^~MA~^^^1^0.823^1.235^3^0.663^1.717^~4~^~06/01/2007~ -~16225~^~312~^0.086^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~404~^0.037^2^^~12~^~MA~^^^1^0.037^0.037^0^^^^~06/01/2007~ -~16225~^~405~^0.201^6^0.022^~12~^~MA~^^^1^0.140^0.210^3^0.130^0.271^~4~^~06/01/2007~ -~16225~^~406~^0.222^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~415~^0.016^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~605~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^2^0.000^0.000^~4~^~10/01/2008~ -~16225~^~606~^0.005^6^0.080^~12~^~MA~^^^1^0.000^0.206^3^-0.249^0.259^~4~^~06/01/2007~ -~16225~^~607~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~608~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~609~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~610~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~611~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~612~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~613~^0.004^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~614~^0.001^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~617~^0.196^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~618~^0.378^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~619~^0.049^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~620~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~621~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~626~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~627~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~628~^0.006^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~629~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~630~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~631~^0.000^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~ -~16225~^~645~^0.202^6^0.011^~12~^~MA~^^^1^0.177^0.206^3^0.166^0.237^~4~^~06/01/2007~ -~16225~^~646~^0.426^6^0.043^~12~^~MA~^^^1^0.412^0.523^3^0.289^0.564^~4~^~06/01/2007~ -~16227~^~312~^0.199^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~315~^0.074^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~404~^0.037^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16227~^~405~^0.201^4^0.022^~12~^~MA~^^^1^0.140^0.210^3^0.130^0.271^~4~^~06/01/2007~ -~16227~^~406~^0.512^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~410~^0.125^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~415~^0.037^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16227~^~605~^0.000^3^0.000^~12~^~MA~^^^1^0.000^0.000^2^0.000^0.000^~4~^~10/01/2008~ -~16227~^~606~^0.032^4^0.092^~12~^~MA~^^^1^0.000^0.206^3^-0.261^0.326^~4~^~04/01/2009~ -~16227~^~607~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~608~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~609~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~610~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~611~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~612~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~613~^0.024^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~614~^0.008^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~617~^0.035^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~618~^0.358^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~619~^0.046^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~620~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~621~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~626~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~627~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~628~^0.001^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~629~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~630~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~631~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~04/01/2009~ -~16227~^~645~^0.037^4^0.076^~12~^~MA~^^^1^0.000^0.206^3^-0.205^0.279^~4~^~04/01/2009~ -~16227~^~646~^0.405^4^0.122^~12~^~MA~^^^1^0.235^0.617^3^0.018^0.791^~4~^~04/01/2009~ -~16228~^~405~^0.174^2^^~12~^~MA~^^^1^0.173^0.177^1^^^^~06/01/2007~ -~16228~^~605~^0.000^2^^~12~^~MA~^^^1^0.000^0.000^1^^^^~06/01/2007~ -~16228~^~606~^0.078^2^^~12~^~MA~^^^1^0.000^0.206^1^^^^~06/01/2007~ -~16228~^~645~^0.263^2^^~12~^~MA~^^^1^0.173^0.412^1^^^^~06/01/2007~ -~16228~^~646~^0.558^2^^~12~^~MA~^^^1^0.523^0.617^1^^^^~06/01/2007~ -~16229~^~605~^0.000^2^^~12~^~MA~^^^1^0.000^0.000^^^^^~05/01/2009~ -~16229~^~606~^0.000^2^^~12~^~MA~^^^1^0.000^0.000^^^^^~05/01/2009~ -~16229~^~645~^0.206^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~ -~16229~^~646~^0.412^2^^~12~^~MA~^^^1^0.412^0.412^^^^^~05/01/2009~ -~16230~^~312~^0.125^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~404~^0.022^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~405~^0.174^4^0.000^~12~^~MA~^^^1^0.173^0.177^^^^~2, 3~^~08/01/2007~ -~16230~^~406~^0.323^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~415~^0.024^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~605~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~16230~^~606~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~16230~^~607~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~608~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~609~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~610~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~611~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~612~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~613~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~614~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~617~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~618~^0.032^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~619~^0.004^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~620~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~621~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~626~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~627~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~628~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~629~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~630~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~631~^0.000^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~ -~16230~^~645~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2007~ -~16230~^~646~^0.036^4^0.000^~12~^~MA~^^^1^0.000^0.058^^^^~2, 3~^~08/01/2007~ -~16231~^~312~^0.199^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~404~^0.037^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~405~^0.174^4^0.000^~12~^~MA~^^^1^0.173^0.177^^^^~2, 3~^~04/01/2009~ -~16231~^~406~^0.512^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~415~^0.037^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~605~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~16231~^~606~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~16231~^~607~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~608~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~609~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~610~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~611~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~612~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~613~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~614~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~617~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~618~^0.032^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~619~^0.004^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~620~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~621~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~626~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~627~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~628~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~629~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~630~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~631~^0.000^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~ -~16231~^~645~^0.000^4^0.000^~12~^~MA~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~16231~^~646~^0.036^4^0.000^~12~^~MA~^^^1^0.000^0.058^^^^~2, 3~^~04/01/2009~ -~16235~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16235~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16236~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16236~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16237~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16237~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16238~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16239~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16239~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16240~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16240~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16241~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16241~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16242~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16242~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16243~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16244~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16244~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16245~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16245~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16246~^~405~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16246~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16247~^~405~^0.140^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16247~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~405~^0.140^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16248~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~405~^0.210^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16249~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16249~^~606~^0.206^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16250~^~606~^0.220^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16251~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16251~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~ -~16252~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16252~^~606~^0.220^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16253~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16254~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16255~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16256~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16257~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16258~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16259~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16260~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16261~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16262~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~ -~16271~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~606~^0.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~645~^0.700^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16271~^~646~^2.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~606~^0.200^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~645~^0.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16272~^~646~^0.700^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~405~^0.440^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~415~^0.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~606~^0.600^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~645~^1.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16273~^~646~^3.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~405~^0.400^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~415~^0.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~606~^0.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~645~^1.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16274~^~646~^2.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~606~^1.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~645~^1.900^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16275~^~646~^3.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~606~^0.600^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~645~^1.400^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16276~^~646~^2.600^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~606~^0.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~645~^1.200^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16277~^~646~^2.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~606~^0.300^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~645~^0.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16278~^~646~^1.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~16279~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~606~^0.480^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~645~^0.630^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16279~^~646~^1.610^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~606~^0.710^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~645~^0.970^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16281~^~646~^2.510^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~ -~16302~^~312~^0.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~315~^0.573^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~404~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~405~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~406~^0.717^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~410~^0.430^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~415~^0.096^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~501~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~502~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~503~^0.300^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~504~^0.632^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~505~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~506~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~507~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~508~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~509~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~510~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~511~^0.486^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~512~^0.198^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~513~^0.439^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~514~^0.891^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~515~^1.173^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~516~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~517~^0.331^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~518~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16302~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16302~^~606~^0.036^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~617~^0.009^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~618~^0.021^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16302~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16302~^~646~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16315~^~312~^0.209^9^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~315~^0.444^8^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~404~^0.244^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~405~^0.059^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~406~^0.505^8^0.026^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~410~^0.242^8^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~415~^0.069^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~501~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~502~^0.373^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~503~^0.391^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~504~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~505~^0.608^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~506~^0.133^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~507~^0.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~508~^0.479^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~509~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~510~^0.464^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~511~^0.549^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~512~^0.247^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~513~^0.372^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~514~^1.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~515~^1.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~516~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~517~^0.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~518~^0.482^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16315~^~606~^0.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~607~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~608~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~609~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~610~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~611~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~613~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~617~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~618~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~619~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~620~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~621~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~626~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~627~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~628~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~629~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~630~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~631~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16315~^~645~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16315~^~646~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16316~^~312~^0.192^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~315~^0.233^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~404~^0.140^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~405~^0.120^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~406~^0.620^1^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~410~^0.184^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~415~^0.055^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~501~^0.072^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~502~^0.222^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~503~^0.285^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~504~^0.512^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~505~^0.422^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~506~^0.079^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~507~^0.056^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~508~^0.356^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~509~^0.143^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~510~^0.348^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~511~^0.331^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~512~^0.166^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~513~^0.274^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~514~^0.755^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~515~^0.969^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~516~^0.244^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~517~^0.345^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~518~^0.378^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~ -~16316~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16316~^~606~^0.075^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~607~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~608~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~609~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~610~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~611~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~613~^0.070^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~614~^0.004^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~617~^0.025^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~618~^0.068^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~619~^0.057^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~620~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~621~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~626~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~627~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~628~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~629~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~630~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~631~^0.000^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~ -~16316~^~645~^0.025^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16316~^~646~^0.125^0^^~1~^^^^^^^^^^^~02/01/2013~ -~16317~^~312~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~315~^0.327^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~404~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~405~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~406~^0.527^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~410~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~415~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~501~^0.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~502~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~503~^0.361^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~504~^0.653^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~505~^0.562^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~506~^0.123^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~507~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~508~^0.442^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~509~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~510~^0.428^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~511~^0.507^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~512~^0.228^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~513~^0.343^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~514~^0.990^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~515~^1.247^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~517~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~518~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16317~^~606~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~613~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~617~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~618~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~619~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~645~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16317~^~646~^0.149^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~312~^0.231^8^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~315~^0.370^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~404~^0.210^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~405~^0.069^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~406~^0.515^8^0.037^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~410~^0.240^8^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~415~^0.081^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~501~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~502~^0.393^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~503~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~504~^0.746^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~505~^0.641^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~506~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~507~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~508~^0.505^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~509~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~510~^0.489^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~511~^0.578^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~512~^0.260^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~513~^0.391^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~514~^1.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~515~^1.424^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~516~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~517~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~518~^0.508^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16320~^~606~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~613~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~614~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~617~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~618~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~619~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~645~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16320~^~646~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~312~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~315~^0.382^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~404~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~405~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~406~^0.546^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~410~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~415~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~501~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~502~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~503~^0.311^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~504~^0.563^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~505~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~506~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~507~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~508~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~509~^0.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~510~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~511~^0.437^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~512~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~513~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~514~^0.853^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~515~^1.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~516~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~517~^0.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~518~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16323~^~606~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~612~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~613~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~614~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~617~^0.051^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~618~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~619~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~645~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16323~^~646~^0.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~312~^0.247^20^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~315~^0.518^20^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~404~^0.158^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~405~^0.059^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~406~^0.681^20^0.094^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~410~^0.266^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~415~^0.117^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~501~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~502~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~503~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~504~^0.665^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~505~^0.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~506~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~507~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~508~^0.451^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~509~^0.235^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~510~^0.436^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~511~^0.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~512~^0.232^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~513~^0.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~514~^1.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~515~^1.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~516~^0.325^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~517~^0.353^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~518~^0.453^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16325~^~606~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~613~^0.132^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~617~^0.021^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~618~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~619~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~645~^0.021^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16325~^~646~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16326~^~312~^0.160^1^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~315~^0.408^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~404~^0.143^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~405~^0.060^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~406~^0.461^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~410~^0.278^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~415~^0.106^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~501~^0.088^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~502~^0.271^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~503~^0.349^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~504~^0.626^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~505~^0.516^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~506~^0.096^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~507~^0.069^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~508~^0.435^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~509~^0.174^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~510~^0.425^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~511~^0.404^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~512~^0.202^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~513~^0.335^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~514~^0.923^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~515~^1.184^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~516~^0.298^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~517~^0.421^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~518~^0.462^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16326~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16326~^~606~^0.120^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~607~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~608~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~609~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~610~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~611~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~612~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~613~^0.113^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~614~^0.007^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~617~^0.018^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~618~^0.089^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~619~^0.072^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~620~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~621~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~626~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~627~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~628~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~629~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~630~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~631~^0.000^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~ -~16326~^~645~^0.018^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16326~^~646~^0.161^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16328~^~312~^0.242^32^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~315~^0.477^31^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~404~^0.160^23^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~405~^0.058^23^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~406~^0.578^23^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~410~^0.220^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~415~^0.120^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~501~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~502~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~503~^0.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~504~^0.693^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~505~^0.595^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~506~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~507~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~508~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~509~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~510~^0.454^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~511~^0.537^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~512~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~514~^1.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~515~^1.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~516~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~517~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~518~^0.472^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16328~^~606~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~607~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~608~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~609~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~610~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~611~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~613~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~617~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~618~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~619~^0.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~620~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~621~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~626~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~627~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~628~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~629~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~630~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~631~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~ -~16328~^~645~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16328~^~646~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~312~^0.289^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~315~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~404~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~405~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~406~^0.540^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~410~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~415~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~501~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~502~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~503~^0.403^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~504~^0.729^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~505~^0.627^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~506~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~507~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~508~^0.494^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~509~^0.257^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~510~^0.478^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~511~^0.565^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~512~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~513~^0.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~514~^1.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~515~^1.392^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~516~^0.356^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~517~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~518~^0.497^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16331~^~606~^0.014^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~613~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~614~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~617~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~618~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~619~^0.032^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~645~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16331~^~646~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~312~^0.242^32^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~315~^0.477^31^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~404~^0.160^23^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~405~^0.058^23^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~406~^0.578^23^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~410~^0.220^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~415~^0.120^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~501~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~502~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~503~^0.383^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~504~^0.693^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~505~^0.595^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~506~^0.130^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~507~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~508~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~509~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~510~^0.454^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~511~^0.537^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~512~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~514~^1.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~515~^1.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~516~^0.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~517~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~518~^0.472^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16333~^~606~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~613~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~617~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~618~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~619~^0.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~645~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16333~^~646~^0.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16335~^~312~^0.283^4^0.006^~1~^~A~^^^1^0.271^0.298^3^0.266^0.301^~2, 3~^~04/01/2011~ -~16335~^~315~^0.382^4^0.014^~1~^~A~^^^1^0.340^0.403^3^0.336^0.428^~2, 3~^~04/01/2011~ -~16335~^~404~^0.060^4^0.004^~1~^~A~^^^1^0.050^0.070^3^0.047^0.073^~2, 3~^~04/01/2011~ -~16335~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2011~ -~16335~^~406~^0.417^4^0.024^~1~^~A~^^^1^0.390^0.490^3^0.340^0.495^~2, 3~^~04/01/2011~ -~16335~^~415~^0.113^0^^~4~^~BFSN~^~16034~^^^^^^^^^~06/01/2015~ -~16335~^~501~^0.097^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~502~^0.298^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~503~^0.384^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~504~^0.689^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~505~^0.568^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~506~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~507~^0.076^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~508~^0.479^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~509~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~510~^0.468^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~511~^0.445^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~512~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~513~^0.369^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~514~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~515~^1.305^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~516~^0.329^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~517~^0.464^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~518~^0.509^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16335~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16335~^~606~^0.328^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16335~^~607~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~608~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~609~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~610~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~611~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~612~^0.013^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~613~^0.215^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~614~^0.100^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~617~^0.031^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~618~^0.217^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~619~^0.132^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~620~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~621~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~626~^0.021^0^^~4~^~BFSN~^~16034~^^^^^^^^^~05/01/2011~ -~16335~^~627~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~628~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~629~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~630~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~631~^0.000^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~ -~16335~^~645~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16335~^~646~^0.350^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16336~^~312~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~315~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~404~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~405~^0.067^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~406~^0.552^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~410~^0.219^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~415~^0.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~501~^0.112^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~502~^0.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~503~^0.419^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~504~^0.757^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~505~^0.651^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~506~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~507~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~508~^0.513^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~509~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~510~^0.496^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~511~^0.587^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~512~^0.264^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~513~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~514~^1.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~515~^1.447^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~516~^0.370^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~517~^0.402^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~518~^0.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16336~^~606~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~613~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~614~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~617~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~618~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~619~^0.057^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~645~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16336~^~646~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16337~^~312~^0.147^6^0.003^~6~^~JA~^^^3^0.120^0.165^3^0.137^0.157^~2, 3~^~01/01/2013~ -~16337~^~315~^0.291^5^0.020^~6~^~JA~^^^3^0.120^0.390^3^0.228^0.353^~2, 3~^~01/01/2013~ -~16337~^~404~^0.106^48^0.000^~6~^~JA~^^^3^0.060^0.122^3^0.105^0.106^~2, 3~^~01/01/2013~ -~16337~^~405~^0.067^50^0.000^~6~^~JA~^^^3^0.015^0.072^^^^~1, 2, 3~^~01/01/2013~ -~16337~^~406~^0.494^47^0.002^~6~^~JA~^^^3^0.320^0.502^3^0.489^0.499^~2, 3~^~01/01/2013~ -~16337~^~410~^0.130^1^^~6~^~JA~^^^2^0.130^0.146^^^^^~01/01/2013~ -~16337~^~415~^0.080^1^^~6~^~JA~^^^2^0.069^0.080^^^^^~01/01/2013~ -~16337~^~501~^0.064^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~502~^0.197^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~503~^0.254^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~504~^0.456^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~505~^0.376^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~507~^0.050^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~508~^0.317^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~509~^0.127^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~510~^0.310^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~511~^0.295^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~512~^0.148^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~513~^0.244^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~514~^0.673^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~515~^0.863^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~516~^0.218^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~517~^0.307^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~518~^0.337^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16337~^~606~^0.125^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~613~^0.082^1^^~6~^~JA~^^^2^0.040^0.184^^^^^~01/01/2013~ -~16337~^~614~^0.038^1^^~6~^~JA~^^^2^0.005^0.085^^^^^~01/01/2013~ -~16337~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~617~^0.012^0^^~4~^~BFSN~^~16028~^^^^^^^^^~01/01/2013~ -~16337~^~618~^0.083^1^^~6~^~JA~^^^2^0.067^0.186^^^^^~01/01/2013~ -~16337~^~619~^0.051^0^^~4~^~BFSN~^~16028~^^^^^^^^^~01/01/2013~ -~16337~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~626~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~627~^0.000^0^^~4~^~BFSN~^~16028~^^^^^^^^^~01/01/2013~ -~16337~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~631~^0.000^0^^~4~^~BFSN~^~16028~^^^^^^^^^~01/01/2013~ -~16337~^~645~^0.147^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~646~^0.174^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16337~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~674~^0.127^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16337~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~ -~16337~^~851~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16338~^~312~^0.210^45^0.015^~11~^~JO~^^^5^0.000^0.382^33^0.179^0.241^~2, 3~^~04/01/2004~ -~16338~^~315~^0.527^45^0.039^~11~^~JO~^^^5^0.000^0.950^30^0.448^0.606^~2, 3~^~04/01/2004~ -~16338~^~404~^0.237^9^0.006^~11~^~JO~^^^2^0.151^0.270^7^0.223^0.250^~2, 3~^~04/01/2004~ -~16338~^~405~^0.066^9^0.002^~11~^~JO~^^^2^0.053^0.120^7^0.062^0.070^~2, 3~^~04/01/2004~ -~16338~^~406~^0.649^9^0.037^~11~^~JO~^^^2^0.017^0.920^7^0.562^0.736^~1, 2, 3~^~04/01/2004~ -~16338~^~410~^0.266^9^0.009^~11~^~JO~^^^2^0.170^0.310^7^0.244^0.287^~2, 3~^~04/01/2004~ -~16338~^~415~^0.138^9^0.005^~11~^~JO~^^^2^0.080^0.168^7^0.126^0.150^~2, 3~^~04/01/2004~ -~16338~^~501~^0.100^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~502~^0.289^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~503~^0.387^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~504~^0.700^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~505~^0.520^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~506~^0.111^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~507~^0.076^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~508~^0.471^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~509~^0.197^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~510~^0.504^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~511~^0.415^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~512~^0.206^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~513~^0.369^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~514~^1.056^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~515~^1.259^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~516~^0.326^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~517~^0.454^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~518~^0.479^0^^~11~^~JO~^^^^^^^^^^~04/01/2004~ -~16338~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~606~^0.032^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16338~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~613~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16338~^~614~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16338~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~617~^0.046^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~16338~^~618~^0.069^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16338~^~619~^0.090^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~16338~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~645~^0.046^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16338~^~646~^0.159^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~16338~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~674~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16338~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~16338~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~16338~^~851~^0.206^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~16341~^~312~^0.271^15^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~315~^0.548^9^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~404~^0.257^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~405~^0.063^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~406~^0.570^9^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~410~^0.299^8^0.014^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~415~^0.175^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~501~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~502~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~503~^0.400^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~504~^0.723^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~505~^0.622^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~506~^0.136^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~507~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~508~^0.490^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~509~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~510~^0.474^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~511~^0.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~512~^0.252^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~513~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~514~^1.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~515~^1.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~516~^0.354^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~517~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~518~^0.493^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16341~^~606~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~613~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~617~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~618~^0.114^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~619~^0.096^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~645~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16341~^~646~^0.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16343~^~312~^0.219^66^0.010^~11~^~JO~^^^12^0.000^0.389^32^0.198^0.240^~2, 3~^~04/01/2004~ -~16343~^~315~^0.453^66^0.021^~11~^~JO~^^^12^0.000^0.690^29^0.411^0.496^~2, 3~^~04/01/2004~ -~16343~^~404~^0.193^12^0.010^~11~^~JO~^^^2^0.071^0.310^9^0.170^0.216^~2, 3~^~04/01/2004~ -~16343~^~405~^0.062^12^0.006^~11~^~JO~^^^2^0.032^0.089^8^0.048^0.076^~2, 3~^~04/01/2004~ -~16343~^~406~^0.318^12^0.033^~11~^~JO~^^^2^0.037^0.560^10^0.244^0.392^~1, 2, 3~^~04/01/2004~ -~16343~^~410~^0.210^12^0.011^~11~^~JO~^^^2^0.009^0.370^7^0.185^0.235^~1, 2, 3~^~04/01/2004~ -~16343~^~415~^0.229^16^0.039^~11~^~JO~^^^2^0.084^0.594^11^0.142^0.315^~2, 3~^~04/01/2004~ -~16343~^~501~^0.098^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~502~^0.350^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~503~^0.368^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~504~^0.664^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~505~^0.571^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~506~^0.126^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~507~^0.090^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~508~^0.450^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~509~^0.234^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~510~^0.435^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~511~^0.515^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~512~^0.232^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~513~^0.348^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~514~^1.005^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~515~^1.268^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~516~^0.325^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~517~^0.352^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~518~^0.453^0^^~1~^~DA~^~16043~^^^^^^^^^~04/01/2004~ -~16343~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16343~^~606~^0.109^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2004~ -~16343~^~613~^0.106^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~614~^0.002^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~617~^0.106^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~618~^0.078^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~619~^0.109^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~645~^0.106^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16343~^~646~^0.188^0^^~1~^^^^^^^^^^^~06/01/2005~ -~16345~^~312~^0.260^4^0.012^~1~^~A~^^^1^0.227^0.285^3^0.221^0.298^~2, 3~^~04/01/2011~ -~16345~^~315~^0.370^4^0.035^~1~^~A~^^^1^0.305^0.441^3^0.260^0.479^~2, 3~^~04/01/2011~ -~16345~^~404~^0.050^4^0.007^~1~^~A~^^^1^0.030^0.060^3^0.027^0.072^~2, 3~^~04/01/2011~ -~16345~^~405~^0.019^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.007^0.031^~1, 2, 3~^~04/01/2011~ -~16345~^~406~^0.262^4^0.032^~1~^~A~^^^1^0.170^0.320^3^0.159^0.366^~2, 3~^~04/01/2011~ -~16345~^~501~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~502~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~503~^0.289^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~504~^0.517^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~505~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~507~^0.062^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~508~^0.363^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~509~^0.142^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~510~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~511~^0.363^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~512~^0.184^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~513~^0.289^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~514~^0.752^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~515~^1.004^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~516~^0.264^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~517~^0.355^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~518~^0.388^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~16345~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16346~^~312~^0.149^9^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~315~^0.510^9^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~404~^0.236^9^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~405~^0.059^9^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~406~^0.272^9^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~410~^0.251^8^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~415~^0.127^8^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~501~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~502~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~503~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~504~^0.716^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~505~^0.616^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~506~^0.135^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~507~^0.098^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~508~^0.485^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~509~^0.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~510~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~511~^0.555^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~512~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~513~^0.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~514~^1.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~515~^1.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~516~^0.350^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~517~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~518~^0.488^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16346~^~606~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~613~^0.155^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~614~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~617~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~618~^0.150^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~619~^0.126^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~645~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16346~^~646~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16347~^~312~^0.162^4^0.008^~1~^~A~^^^1^0.143^0.180^3^0.138^0.186^~2, 3~^~01/01/2013~ -~16347~^~315~^0.318^4^0.017^~1~^~A~^^^1^0.282^0.357^3^0.264^0.372^~2, 3~^~01/01/2013~ -~16347~^~404~^0.052^4^0.009^~1~^~A~^^^1^0.030^0.070^3^0.025^0.080^~2, 3~^~01/01/2013~ -~16347~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~01/01/2013~ -~16347~^~406~^0.268^4^0.024^~1~^~A~^^^1^0.200^0.310^3^0.192^0.343^~2, 3~^~01/01/2013~ -~16347~^~410~^0.136^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16347~^~415~^0.135^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~ -~16347~^~501~^0.051^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~502~^0.176^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~503~^0.189^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~504~^0.338^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~505~^0.294^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~506~^0.056^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~507~^0.040^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~508~^0.237^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~509~^0.093^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~510~^0.216^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~511~^0.238^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~512~^0.120^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~513~^0.189^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~514~^0.492^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~515~^0.656^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~516~^0.172^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~517~^0.232^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~518~^0.254^0^^~6~^~JA~^^^^^^^^^^~01/01/2013~ -~16347~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16347~^~606~^0.116^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~613~^0.114^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~617~^0.114^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~618~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~619~^0.118^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~ -~16347~^~645~^0.114^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16347~^~646~^0.203^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~16348~^~312~^0.186^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~315~^0.455^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~404~^0.187^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~405~^0.103^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~406~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~410~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~415~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~501~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~502~^0.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~503~^0.405^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~504~^0.732^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~505~^0.629^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~506~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~507~^0.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~508~^0.496^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~509~^0.258^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~510~^0.479^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~511~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~512~^0.255^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~513~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~514~^1.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~515~^1.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~516~^0.358^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~517~^0.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~518~^0.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16348~^~606~^0.279^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~607~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~608~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~609~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~610~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~611~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~613~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~617~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~618~^0.253^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~619~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~620~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~621~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~626~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~627~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~628~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~629~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~630~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~631~^0.000^0^^~4~^~BFSN~^~16043~^^^^^^^^^~11/01/2014~ -~16348~^~645~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16348~^~646~^0.466^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~312~^0.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~315~^0.636^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~404~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~405~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~406~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~410~^0.229^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~415~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~501~^0.115^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~502~^0.409^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~503~^0.429^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~504~^0.776^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~505~^0.668^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~506~^0.146^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~507~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~508~^0.526^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~509~^0.274^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~510~^0.509^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~511~^0.602^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~512~^0.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~513~^0.408^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~514~^1.176^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~515~^1.483^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~516~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~517~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~518~^0.529^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16350~^~606~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~613~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~617~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~618~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~619~^0.069^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~645~^0.031^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16350~^~646~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~312~^0.259^8^0.041^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~315~^0.421^8^0.033^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~404~^0.097^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~405~^0.089^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~406~^0.711^8^0.066^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~410~^0.157^8^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~415~^0.072^8^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~501~^0.072^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~502~^0.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~503~^0.306^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~504~^0.572^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~505~^0.486^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~506~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~507~^0.097^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~508~^0.321^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~509~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~510~^0.338^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~511~^0.702^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~512~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~513~^0.311^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~514~^0.849^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~515~^1.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~517~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~518~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16353~^~606~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~613~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~614~^0.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~617~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~618~^0.152^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~619~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~645~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16353~^~646~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~312~^0.352^27^0.026^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~315~^1.030^21^0.051^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~404~^0.116^21^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~405~^0.063^21^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~406~^0.526^21^0.038^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~410~^0.286^8^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~415~^0.139^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~501~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~502~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~503~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~504~^0.631^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~505~^0.593^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~506~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~507~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~508~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~509~^0.220^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~510~^0.372^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~511~^0.835^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~512~^0.244^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~513~^0.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~514~^1.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~515~^1.550^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~516~^0.369^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~517~^0.366^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~518~^0.447^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16357~^~606~^0.269^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~613~^0.215^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~614~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~617~^0.578^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~618~^1.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~619~^0.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~626~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~645~^0.583^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16357~^~646~^1.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16358~^~312~^0.253^4^0.015^~1~^~A~^^^1^0.229^0.296^3^0.206^0.301^~2, 3~^~05/01/2011~ -~16358~^~315~^0.846^4^0.143^~1~^~A~^^^1^0.462^1.120^3^0.392^1.300^~2, 3~^~05/01/2011~ -~16358~^~404~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~05/01/2011~ -~16358~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2011~ -~16358~^~406~^0.140^4^0.006^~1~^~A~^^^1^0.130^0.150^3^0.121^0.158^~2, 3~^~05/01/2011~ -~16358~^~415~^0.116^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16358~^~501~^0.069^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~502~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~503~^0.304^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~504~^0.505^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~505~^0.475^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~506~^0.093^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~508~^0.380^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~509~^0.176^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~510~^0.298^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~511~^0.668^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~512~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~513~^0.304^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~514~^0.835^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~515~^1.242^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~516~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~517~^0.293^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~518~^0.357^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16358~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16358~^~606~^0.214^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~607~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~608~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~609~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~610~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~611~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~612~^0.003^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~613~^0.180^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~614~^0.031^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~617~^0.483^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~618~^0.931^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~619~^0.036^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~620~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~621~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~626~^0.004^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~627~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~628~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~629~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~630~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~631~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16358~^~645~^0.488^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16358~^~646~^0.967^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~312~^0.250^4^0.015^~1~^~A~^^^1^0.227^0.290^3^0.202^0.297^~2, 3~^~05/01/2011~ -~16359~^~315~^0.800^4^0.163^~1~^~A~^^^1^0.369^1.150^3^0.280^1.319^~2, 3~^~05/01/2011~ -~16359~^~404~^0.025^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.016^0.034^~2, 3~^~05/01/2011~ -~16359~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2011~ -~16359~^~406~^0.125^4^0.006^~1~^~A~^^^1^0.110^0.140^3^0.104^0.146^~2, 3~^~05/01/2011~ -~16359~^~415~^0.116^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2013~ -~16359~^~501~^0.069^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~502~^0.263^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~503~^0.303^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~504~^0.503^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~505~^0.473^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~506~^0.093^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~508~^0.379^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~509~^0.176^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~510~^0.298^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~511~^0.667^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~512~^0.195^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~513~^0.303^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~514~^0.832^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~515~^1.239^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~516~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~517~^0.292^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~518~^0.356^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~16359~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16359~^~606~^0.213^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~607~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~608~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~609~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~610~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~611~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~612~^0.003^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~613~^0.179^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~614~^0.031^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~617~^0.481^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~618~^0.927^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~619~^0.036^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~620~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~621~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~626~^0.004^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~627~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~628~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~629~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~630~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~631~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~ -~16359~^~645~^0.485^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16359~^~646~^0.962^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16360~^~312~^0.153^4^0.010^~1~^~A~^^^1^0.135^0.173^3^0.121^0.186^~2, 3~^~01/01/2013~ -~16360~^~315~^0.818^4^0.100^~1~^~A~^^^1^0.525^0.954^3^0.501^1.135^~2, 3~^~01/01/2013~ -~16360~^~404~^0.032^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.017^0.048^~2, 3~^~01/01/2013~ -~16360~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~01/01/2013~ -~16360~^~406~^0.130^4^0.012^~1~^~A~^^^1^0.100^0.150^3^0.091^0.169^~2, 3~^~01/01/2013~ -~16360~^~410~^0.299^0^^~4~^^^^^^^^^^^~01/01/2013~ -~16360~^~415~^0.473^21^0.060^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~502~^0.184^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~503~^0.212^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~504~^0.352^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~505~^0.331^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~507~^0.067^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~508~^0.265^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~509~^0.123^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~510~^0.208^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~511~^0.466^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~512~^0.136^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~513~^0.212^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~514~^0.582^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~515~^0.866^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~516~^0.206^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~517~^0.204^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~518~^0.249^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~16360~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16360~^~606~^0.204^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~607~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~608~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~609~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~610~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~611~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~612~^0.003^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~613~^0.164^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~614~^0.028^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~617~^0.441^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~618~^0.849^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~619~^0.033^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~620~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~621~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~626~^0.003^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~627~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~628~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~629~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~630~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~631~^0.000^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~ -~16360~^~645~^0.444^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16360~^~646~^0.881^0^^~1~^^^^^^^^^^^~01/01/2013~ -~16361~^~312~^0.271^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~315~^0.473^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~404~^0.162^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~405~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~406~^0.714^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~410~^0.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~415~^0.092^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~501~^0.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~502~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~503~^0.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~504~^0.623^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~505~^0.550^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~506~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~507~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~508~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~509~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~510~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~511~^0.563^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~512~^0.252^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~513~^0.371^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~514~^0.982^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~515~^1.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~516~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~517~^0.365^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~518~^0.407^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16361~^~606~^0.185^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~613~^0.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~614~^0.030^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~617~^0.049^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~618~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~619~^0.111^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~630~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~645~^0.059^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16361~^~646~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~312~^0.268^35^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~315~^0.475^29^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~404~^0.202^21^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~405~^0.055^21^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~406~^0.495^21^0.036^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~410~^0.411^8^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~415~^0.100^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~501~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~502~^0.294^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~503~^0.314^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~504~^0.592^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~505~^0.523^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~507~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~508~^0.451^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~509~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~510~^0.368^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~511~^0.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~512~^0.240^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~513~^0.352^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~514~^0.933^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~515~^1.463^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~516~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~517~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~518~^0.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16363~^~606~^0.138^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~613~^0.106^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~614~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~617~^0.036^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~618~^0.143^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~619~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~628~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~630~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~645~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16363~^~646~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~312~^0.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~315~^0.482^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~404~^0.270^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~405~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~406~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~410~^0.316^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~415~^0.037^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~501~^0.068^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~502~^0.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~503~^0.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~504~^0.691^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~505~^0.556^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~506~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~507~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~508~^0.410^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~509~^0.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~510~^0.422^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~511~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~512~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~513~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~514~^0.962^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~515~^1.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~516~^0.351^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~517~^0.396^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~518~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16368~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16368~^~606~^0.099^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~617~^0.026^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~618~^0.245^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16368~^~645~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16368~^~646~^0.245^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16370~^~312~^0.251^21^0.011^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~315~^0.494^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~404~^0.169^20^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~405~^0.073^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~406~^1.060^20^0.092^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~410~^0.638^8^0.027^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~415~^0.178^8^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~501~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~502~^0.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~503~^0.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~504~^0.654^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~505~^0.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~506~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~507~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~508~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~509~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~510~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~511~^0.697^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~512~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~513~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~514~^0.998^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~515~^1.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~516~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~517~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~518~^0.416^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16370~^~606~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~613~^0.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~614~^0.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~617~^0.061^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~618~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~619~^0.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~628~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~645~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16370~^~646~^0.175^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~312~^0.235^36^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~315~^0.516^30^0.015^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~404~^0.161^22^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~405~^0.055^22^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~406~^0.421^22^0.018^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~410~^0.422^8^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~415~^0.161^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~501~^0.092^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~502~^0.337^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~503~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~504~^0.673^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~505~^0.523^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~506~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~507~^0.086^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~508~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~509~^0.276^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~510~^0.469^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~511~^0.478^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~512~^0.238^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~513~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~514~^1.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~515~^1.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~516~^0.329^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~517~^0.354^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~518~^0.519^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16372~^~606~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~613~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~614~^0.018^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~617~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~618~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~619~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~630~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~645~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16372~^~646~^0.171^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~312~^0.215^20^0.012^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~315~^0.585^21^0.008^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~404~^0.161^21^0.007^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~405~^0.055^21^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~406~^0.660^21^0.054^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~410~^0.472^8^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~415~^0.078^8^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~501~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~502~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~503~^0.423^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~504~^0.694^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~505~^0.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~506~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~507~^0.089^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~508~^0.463^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~509~^0.284^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~510~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~511~^0.493^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~512~^0.246^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~513~^0.411^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~514~^1.037^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~515~^1.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~516~^0.340^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~517~^0.366^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~518~^0.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16375~^~606~^0.088^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~611~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~613~^0.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~617~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~618~^0.117^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~619~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~626~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~630~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~645~^0.034^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16375~^~646~^0.169^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~312~^0.231^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~315~^0.676^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16377~^~404~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~405~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~406~^0.495^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~410~^0.188^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16377~^~415~^0.009^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16377~^~501~^0.125^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~502~^0.573^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~503~^0.695^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~504~^1.181^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~505~^0.832^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~507~^0.192^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~508~^0.618^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~509~^0.585^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~510~^0.650^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~511~^1.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~512~^0.443^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~513~^0.558^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~514~^1.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~515~^3.739^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~516~^0.663^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~517~^0.635^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~518~^0.805^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16377~^~606~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~611~^0.002^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~612~^0.004^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~613~^0.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~614~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~617~^1.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~618~^0.597^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~619~^0.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~626~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~628~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~630~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~645~^1.180^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16377~^~646~^0.730^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~312~^0.164^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~315~^0.527^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~404~^0.124^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~405~^0.023^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~406~^0.668^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~410~^0.391^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16379~^~415~^0.093^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16379~^~501~^0.050^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~503~^0.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~504~^0.525^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~505~^0.425^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~506~^0.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~507~^0.040^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~508~^0.350^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~510~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~512~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16379~^~606~^0.124^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~613~^0.107^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~614~^0.017^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~617~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~618~^0.165^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~619~^0.090^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~645~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16379~^~646~^0.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~312~^0.156^8^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~315~^0.298^8^0.025^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~404~^0.164^8^0.006^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~405~^0.061^8^0.000^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~406~^0.577^8^0.079^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~410~^0.410^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~415~^0.067^8^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~501~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~502~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~503~^0.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~504~^0.544^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~505~^0.490^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~506~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~507~^0.062^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~508~^0.425^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~509~^0.210^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~510~^0.364^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~511~^0.492^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~512~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~513~^0.309^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~514~^0.812^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~515~^1.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~516~^0.281^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~517~^0.323^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~518~^0.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16381~^~606~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~613~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~614~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~617~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~618~^0.119^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~619~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~645~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16381~^~646~^0.128^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~312~^0.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~315~^0.412^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~404~^0.150^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~405~^0.075^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~406~^1.500^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~410~^0.433^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~415~^0.058^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~501~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~502~^0.262^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~503~^0.385^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~504~^0.625^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~505~^0.500^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~506~^0.110^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~507~^0.070^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~508~^0.440^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~509~^0.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~510~^0.423^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~511~^0.491^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~512~^0.211^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~513~^0.322^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~514~^0.882^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~515~^1.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~516~^0.315^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~517~^0.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~518~^0.397^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16384~^~606~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~613~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~617~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~618~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~619~^0.335^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~645~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16384~^~646~^0.359^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~312~^0.181^20^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~315~^0.396^20^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~404~^0.190^20^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~405~^0.056^20^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~406~^0.890^20^0.059^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~410~^0.595^8^0.035^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~415~^0.048^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~501~^0.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~502~^0.296^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~503~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~504~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~505~^0.602^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~506~^0.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~507~^0.127^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~508~^0.384^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~509~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~510~^0.394^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~511~^0.744^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~512~^0.203^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~513~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~514~^0.984^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~515~^1.426^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~516~^0.371^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~517~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~518~^0.367^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16386~^~606~^0.054^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~611~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~613~^0.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~614~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~617~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~618~^0.137^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~619~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~628~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~645~^0.081^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16386~^~646~^0.165^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16389~^~312~^0.533^4^0.016^~1~^~A~^^^1^0.488^0.565^3^0.481^0.586^~2, 3~^~10/01/2011~ -~16389~^~315~^1.845^4^0.050^~1~^~A~^^^1^1.750^1.970^3^1.686^2.004^~2, 3~^~10/01/2011~ -~16389~^~404~^0.085^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.064^0.106^~2, 3~^~10/01/2011~ -~16389~^~405~^0.089^3^0.021^~1~^~A~^^^1^0.050^0.120^2^0.000^0.178^~2, 3~^~10/01/2011~ -~16389~^~406~^13.825^4^0.397^~1~^~A~^^^1^12.900^14.800^3^12.563^15.087^~2, 3~^~10/01/2011~ -~16389~^~410~^1.202^4^0.054^~1~^~A~^^^1^1.110^1.320^3^1.029^1.375^~2, 3~^~10/01/2011~ -~16389~^~415~^0.461^4^0.021^~1~^~A~^^^1^0.435^0.523^3^0.395^0.527^~2, 3~^~10/01/2011~ -~16389~^~501~^0.231^4^0.004^~1~^~A~^^^1^0.219^0.235^3^0.219^0.243^~2, 3~^~10/01/2011~ -~16389~^~502~^0.610^4^0.014^~1~^~A~^^^1^0.586^0.648^3^0.564^0.656^~2, 3~^~10/01/2011~ -~16389~^~503~^0.978^4^0.015^~1~^~A~^^^1^0.940^1.008^3^0.931^1.025^~2, 3~^~10/01/2011~ -~16389~^~504~^1.812^4^0.026^~1~^~A~^^^1^1.746^1.859^3^1.730^1.894^~2, 3~^~10/01/2011~ -~16389~^~505~^0.945^4^0.019^~1~^~A~^^^1^0.898^0.978^3^0.884^1.007^~2, 3~^~10/01/2011~ -~16389~^~506~^0.291^4^0.029^~1~^~A~^^^1^0.241^0.375^3^0.199^0.383^~2, 3~^~10/01/2011~ -~16389~^~507~^0.375^4^0.028^~1~^~A~^^^1^0.343^0.457^3^0.287^0.463^~2, 3~^~10/01/2011~ -~16389~^~508~^1.427^4^0.021^~1~^~A~^^^1^1.375^1.466^3^1.360^1.495^~2, 3~^~10/01/2011~ -~16389~^~509~^1.006^4^0.012^~1~^~A~^^^1^0.977^1.034^3^0.967^1.046^~2, 3~^~10/01/2011~ -~16389~^~510~^1.146^4^0.011^~1~^~A~^^^1^1.125^1.166^3^1.110^1.182^~2, 3~^~10/01/2011~ -~16389~^~511~^3.247^4^0.067^~1~^~A~^^^1^3.062^3.355^3^3.035^3.459^~2, 3~^~10/01/2011~ -~16389~^~512~^0.655^4^0.006^~1~^~A~^^^1^0.637^0.665^3^0.635^0.675^~2, 3~^~10/01/2011~ -~16389~^~513~^1.092^4^0.017^~1~^~A~^^^1^1.045^1.119^3^1.037^1.147^~2, 3~^~10/01/2011~ -~16389~^~514~^3.272^4^0.055^~1~^~A~^^^1^3.110^3.348^3^3.097^3.447^~2, 3~^~10/01/2011~ -~16389~^~515~^5.422^4^0.077^~1~^~A~^^^1^5.206^5.555^3^5.176^5.668^~2, 3~^~10/01/2011~ -~16389~^~516~^1.621^4^0.020^~1~^~A~^^^1^1.577^1.671^3^1.557^1.686^~2, 3~^~10/01/2011~ -~16389~^~517~^1.173^4^0.023^~1~^~A~^^^1^1.126^1.217^3^1.100^1.245^~2, 3~^~10/01/2011~ -~16389~^~518~^1.285^4^0.019^~1~^~A~^^^1^1.232^1.320^3^1.225^1.345^~2, 3~^~10/01/2011~ -~16389~^~606~^8.686^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~609~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~610~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~611~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~612~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~613~^5.045^4^0.107^~1~^~A~^^^1^5.056^5.514^3^4.872^5.555^~2, 3~^~10/01/2011~ -~16389~^~614~^1.402^4^0.030^~1~^~A~^^^1^1.364^1.498^3^1.352^1.545^~2, 3~^~10/01/2011~ -~16389~^~615~^0.668^4^0.010^~1~^~A~^^^1^0.659^0.701^3^0.657^0.723^~2, 3~^~10/01/2011~ -~16389~^~617~^25.212^4^0.469^~1~^~A~^^^1^24.892^27.059^3^24.561^27.544^~2, 3~^~10/01/2011~ -~16389~^~618~^15.103^4^0.159^~1~^~A~^^^1^15.313^15.979^3^15.100^16.112^~2, 3~^~10/01/2011~ -~16389~^~619~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~620~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~624~^1.325^4^0.025^~1~^~A~^^^1^1.334^1.444^3^1.290^1.449^~2, 3~^~10/01/2011~ -~16389~^~625~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~626~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~628~^0.612^4^0.014^~1~^~A~^^^1^0.601^0.669^3^0.588^0.678^~2, 3~^~10/01/2011~ -~16389~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16389~^~645~^25.976^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~646~^15.292^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~ -~16389~^~652~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~653~^0.057^4^0.003^~1~^~A~^^^1^0.054^0.064^3^0.051^0.067^~2, 3~^~10/01/2011~ -~16389~^~672~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~685~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~687~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~689~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16389~^~697~^0.038^4^0.000^~1~^~A~^^^1^0.039^0.039^^^^~1, 2, 3~^~10/01/2011~ -~16390~^~312~^0.428^17^0.010^~1~^~A~^^^1^0.362^0.566^14^0.406^0.451^~2, 3~^~04/01/2014~ -~16390~^~315~^1.786^17^0.063^~1~^~A~^^^1^1.230^2.020^5^1.628^1.944^~2, 3~^~04/01/2014~ -~16390~^~404~^0.152^8^0.006^~1~^~A~^^^1^0.120^0.180^4^0.135^0.169^~2, 3~^~04/01/2014~ -~16390~^~405~^0.197^8^0.013^~1~^~A~^^^1^0.160^0.300^4^0.163^0.231^~2, 3~^~04/01/2014~ -~16390~^~406~^14.355^8^0.237^~1~^~A~^^^1^13.500^15.300^4^13.706^15.004^~2, 3~^~04/01/2014~ -~16390~^~410~^1.011^5^0.052^~1~^~A~^^^1^0.930^1.100^1^0.681^1.341^~2, 3~^~04/01/2014~ -~16390~^~415~^0.466^8^0.009^~1~^~A~^^^1^0.440^0.500^4^0.441^0.491^~2, 3~^~04/01/2014~ -~16390~^~501~^0.230^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~502~^0.811^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~503~^0.833^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~504~^1.535^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~505~^0.850^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~506~^0.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~507~^0.304^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~508~^1.227^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~509~^0.963^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~510~^0.993^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~511~^2.832^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~512~^0.599^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~513~^0.941^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~514~^2.888^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~515~^4.949^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~516~^1.427^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~517~^1.045^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~518~^1.167^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16390~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~606~^7.723^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~612~^0.016^8^0.002^~1~^~A~^^^1^0.012^0.032^6^0.011^0.021^~2, 3~^~04/01/2014~ -~16390~^~613~^3.982^8^0.275^~1~^~A~^^^1^3.367^4.977^2^2.903^5.060^~2, 3~^~04/01/2014~ -~16390~^~614~^1.200^8^0.073^~1~^~A~^^^1^1.038^1.456^3^0.947^1.453^~2, 3~^~04/01/2014~ -~16390~^~615~^0.575^8^0.030^~1~^~A~^^^1^0.502^0.700^2^0.460^0.690^~2, 3~^~04/01/2014~ -~16390~^~617~^25.435^8^1.024^~1~^~AS~^^^1^19.377^32.037^3^22.006^28.864^~2, 3~^~04/01/2014~ -~16390~^~618~^9.715^8^1.278^~1~^~AS~^^^1^6.739^13.952^2^4.455^14.975^~2, 3~^~04/01/2014~ -~16390~^~619~^0.026^8^0.001^~1~^~AS~^^^1^0.018^0.030^6^0.024^0.027^~2, 3~^~04/01/2014~ -~16390~^~620~^0.016^8^0.001^~1~^~A~^^^1^0.013^0.019^3^0.014^0.018^~2, 3~^~04/01/2014~ -~16390~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~624~^1.216^8^0.053^~1~^~A~^^^1^1.068^1.472^2^0.996^1.436^~2, 3~^~04/01/2014~ -~16390~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~626~^0.031^8^0.001^~1~^~AS~^^^1^0.024^0.035^4^0.028^0.033^~2, 3~^~04/01/2014~ -~16390~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~628~^0.627^8^0.047^~1~^~A~^^^1^0.443^0.894^2^0.433^0.822^~2, 3~^~04/01/2014~ -~16390~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~630~^0.055^8^0.008^~1~^~AS~^^^1^0.033^0.091^2^0.020^0.090^~2, 3~^~04/01/2014~ -~16390~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~16390~^~645~^26.181^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~646~^9.773^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~652~^0.004^8^0.001^~1~^~A~^^^1^0.000^0.006^6^0.003^0.006^~1, 2, 3~^~04/01/2014~ -~16390~^~653~^0.041^8^0.002^~1~^~A~^^^1^0.035^0.049^3^0.036^0.047^~2, 3~^~04/01/2014~ -~16390~^~654~^0.689^8^0.017^~1~^~A~^^^1^0.561^0.833^2^0.624^0.753^~2, 3~^~04/01/2014~ -~16390~^~662~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~663~^0.014^8^0.000^~1~^~A~^^^1^0.011^0.016^4^0.013^0.015^~2, 3~^~04/01/2014~ -~16390~^~664~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~16390~^~665~^0.012^8^0.002^~1~^~A~^^^1^0.009^0.017^3^0.007^0.018^~2, 3~^~04/01/2014~ -~16390~^~670~^0.009^8^0.000^~1~^~A~^^^1^0.008^0.011^3^0.008^0.011^~2, 3~^~04/01/2014~ -~16390~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~672~^0.004^8^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.001^0.009^~1, 2, 3~^~04/01/2014~ -~16390~^~673~^0.031^8^0.001^~1~^~A~^^^1^0.024^0.035^4^0.028^0.033^~2, 3~^~04/01/2014~ -~16390~^~674~^25.421^8^1.024^~1~^~A~^^^1^19.364^32.021^3^21.993^28.849^~2, 3~^~04/01/2014~ -~16390~^~675~^9.694^8^1.276^~1~^~A~^^^1^6.721^13.925^2^4.439^14.948^~2, 3~^~04/01/2014~ -~16390~^~676~^0.054^8^0.008^~1~^~A~^^^1^0.032^0.090^2^0.020^0.088^~2, 3~^~04/01/2014~ -~16390~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~16390~^~687~^0.032^8^0.002^~1~^~A~^^^1^0.023^0.042^2^0.026^0.039^~2, 3~^~04/01/2014~ -~16390~^~689~^0.011^8^0.000^~1~^~AS~^^^1^0.009^0.012^6^0.010^0.012^~2, 3~^~04/01/2014~ -~16390~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~16390~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~851~^0.025^8^0.000^~1~^~A~^^^1^0.018^0.029^5^0.024^0.027^~2, 3~^~04/01/2014~ -~16390~^~852~^0.011^8^0.000^~1~^~A~^^^1^0.009^0.012^6^0.010^0.012^~2, 3~^~04/01/2014~ -~16390~^~853~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16390~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~16392~^~312~^0.661^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~315~^2.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~404~^0.317^3^0.032^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~405~^0.085^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~406~^14.933^3^0.906^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~410~^1.392^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~415~^0.256^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~501~^0.272^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~502~^0.959^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~503~^0.985^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~504~^1.816^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~505~^1.005^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~506~^0.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~507~^0.359^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~508~^1.452^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~509~^1.139^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~510~^1.175^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~511~^3.349^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~512~^0.708^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~513~^1.113^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~514~^3.416^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~515~^5.852^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~516~^1.687^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~517~^1.236^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~518~^1.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~606~^7.555^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~612~^0.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~613~^5.609^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~614~^1.273^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~617~^21.509^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~618~^16.996^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~626~^0.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~628~^0.517^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~645~^22.073^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16392~^~646~^17.008^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~312~^0.838^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~315~^1.721^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~404~^0.090^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~405~^0.153^9^0.023^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~406~^14.338^5^1.347^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~410~^1.387^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~415~^0.243^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~501~^0.263^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~502~^0.926^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~503~^0.951^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~504~^1.753^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~505~^0.971^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~506~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~507~^0.347^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~508~^1.402^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~509~^1.100^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~510~^1.134^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~511~^3.234^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~512~^0.684^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~513~^1.075^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~514~^3.299^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~515~^5.651^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~516~^1.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~517~^1.194^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~518~^1.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~606~^7.894^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~612~^0.029^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~613~^5.861^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~614~^1.330^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~617~^22.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~618~^17.760^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~619~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~626~^0.046^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~628~^0.541^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~645~^23.065^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16394~^~646~^17.772^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~312~^1.273^8^0.013^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~315~^2.008^8^0.019^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~404~^0.276^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~405~^0.112^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~406~^14.700^8^0.436^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~410~^1.386^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~415~^0.254^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~501~^0.251^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~502~^0.886^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~503~^0.910^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~504~^1.677^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~505~^0.929^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~506~^0.317^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~507~^0.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~508~^1.341^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~509~^1.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~510~^1.085^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~511~^3.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~512~^0.654^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~513~^1.028^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~514~^3.156^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~515~^5.406^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~516~^1.559^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~517~^1.142^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~518~^1.275^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~606~^6.345^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~612~^0.012^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~613~^4.498^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~614~^1.148^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~617~^24.610^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~618~^14.640^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~619~^0.019^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~626~^0.053^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~628~^0.542^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~645~^25.222^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16396~^~646~^14.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16397~^~312~^0.578^6^0.026^~6~^~JA~^^^2^0.514^0.708^3^0.494^0.662^~2, 3~^~03/01/2004~ -~16397~^~315~^1.800^6^0.074^~6~^~JA~^^^2^1.490^2.030^3^1.564^2.036^~2, 3~^~03/01/2004~ -~16397~^~404~^0.106^11^0.003^~6~^~JA~^^^2^0.057^0.125^3^0.098^0.114^~2, 3~^~03/01/2006~ -~16397~^~405~^0.111^11^0.002^~6~^~JA~^^^2^0.095^0.122^3^0.105^0.117^~2, 3~^~03/01/2006~ -~16397~^~406~^13.696^277^0.003^~6~^~JA~^^^2^13.600^14.700^3^13.685^13.706^~2, 3~^~03/01/2006~ -~16397~^~410~^1.118^6^0.027^~6~^~JA~^^^2^0.964^1.315^3^1.033^1.203^~2, 3~^~03/01/2004~ -~16397~^~415~^0.418^5^0.009^~6~^~JA~^^^2^0.376^0.450^2^0.381^0.456^~2, 3~^~03/01/2004~ -~16397~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~502~^0.518^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~503~^0.608^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~504~^1.525^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~505~^0.671^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~506~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~508~^1.185^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~509~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~510~^0.772^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~511~^2.731^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~512~^0.550^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~513~^0.903^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~514~^3.012^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~515~^5.023^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~516~^1.417^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~517~^1.389^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~518~^1.461^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~16397~^~521~^0.040^3^0.040^~1~^~A~^^^1^0.000^0.120^2^-0.132^0.212^~1, 2, 3~^~03/01/2006~ -~16397~^~606~^7.607^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16397~^~607~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~608~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~609~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~610~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~611~^0.178^3^0.020^~6~^~JA~^^^2^0.022^0.217^2^0.093^0.262^~2, 3~^~05/01/2011~ -~16397~^~612~^0.050^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16397~^~613~^6.058^4^0.078^~6~^~JA~^^^2^5.496^6.180^3^5.810^6.306^~2, 3~^~05/01/2011~ -~16397~^~614~^0.682^4^0.269^~6~^~JA~^^^2^0.313^2.141^3^-0.173^1.538^~2, 3~^~05/01/2011~ -~16397~^~615~^0.640^4^0.046^~1~^~A~^^^1^0.587^0.777^3^0.493^0.786^~2, 3~^~05/01/2011~ -~16397~^~617~^22.333^4^0.463^~6~^~JA~^^^2^21.424^23.176^3^20.860^23.806^~2, 3~^~05/01/2011~ -~16397~^~618~^13.854^4^0.312^~6~^~JA~^^^2^13.215^14.623^3^12.861^14.847^~2, 3~^~05/01/2011~ -~16397~^~619~^0.078^0^^~1~^^^^^^^^^^^~05/01/2011~ -~16397~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~16397~^~621~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~626~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~627~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~628~^0.790^4^0.038^~6~^~JA~^^^2^0.617^0.899^3^0.668^0.912^~2, 3~^~05/01/2011~ -~16397~^~629~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~630~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~631~^0.000^0^^~4~^~BFSN~^~16097~^^^^^^^^^~05/01/2011~ -~16397~^~645~^23.123^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16397~^~646~^13.932^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~16398~^~312~^0.422^18^0.006^~1~^~A~^^^1^0.383^0.484^11^0.409^0.435^~2, 3~^~08/01/2014~ -~16398~^~315~^1.665^18^0.020^~1~^~A~^^^1^1.460^1.885^9^1.619^1.711^~2, 3~^~08/01/2014~ -~16398~^~404~^0.150^9^0.005^~1~^~A~^^^1^0.100^0.190^4^0.137^0.163^~2, 3~^~08/01/2014~ -~16398~^~405~^0.192^9^0.003^~1~^~A~^^^1^0.170^0.210^3^0.182^0.203^~2, 3~^~08/01/2014~ -~16398~^~406~^13.112^9^0.190^~1~^~A~^^^1^12.200^13.700^2^12.370^13.854^~2, 3~^~08/01/2014~ -~16398~^~410~^1.137^6^0.012^~1~^~A~^^^1^0.980^1.200^1^0.980^1.295^~2, 3~^~08/01/2014~ -~16398~^~415~^0.441^9^0.016^~1~^~A~^^^1^0.380^0.490^3^0.388^0.495^~2, 3~^~08/01/2014~ -~16398~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~502~^0.525^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~503~^0.616^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~504~^1.546^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~505~^0.681^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~506~^0.265^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~508~^1.202^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~509~^0.829^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~510~^0.782^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~511~^2.768^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~512~^0.557^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~513~^0.916^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~514~^3.054^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~515~^5.092^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~516~^1.437^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~517~^1.408^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~518~^1.481^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16398~^~605~^0.075^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~606~^10.325^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~607~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~609~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~610~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~611~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~612~^0.020^18^0.000^~1~^~A~^^^1^0.017^0.026^13^0.019^0.021^~2, 3~^~08/01/2014~ -~16398~^~613~^4.741^18^0.024^~1~^~A~^^^1^4.562^4.939^10^4.686^4.796^~2, 3~^~08/01/2014~ -~16398~^~614~^2.181^18^0.020^~1~^~A~^^^1^2.011^2.347^10^2.137^2.225^~2, 3~^~08/01/2014~ -~16398~^~615~^0.719^18^0.004^~1~^~A~^^^1^0.655^0.774^10^0.710^0.729^~2, 3~^~08/01/2014~ -~16398~^~617~^24.812^18^0.175^~1~^~AS~^^^1^23.669^26.050^7^24.401^25.222^~2, 3~^~08/01/2014~ -~16398~^~618~^12.264^18^0.080^~1~^~AS~^^^1^11.658^12.760^7^12.065^12.446^~2, 3~^~08/01/2014~ -~16398~^~619~^0.028^18^0.001^~1~^~AS~^^^1^0.022^0.041^6^0.026^0.031^~2, 3~^~08/01/2014~ -~16398~^~620~^0.018^18^0.000^~1~^~A~^^^1^0.016^0.019^11^0.018^0.018^~2, 3~^~08/01/2014~ -~16398~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~624~^1.703^18^0.010^~1~^~A~^^^1^1.464^1.834^9^1.679^1.726^~2, 3~^~08/01/2014~ -~16398~^~625~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16398~^~626~^0.030^18^0.000^~1~^~AS~^^^1^0.029^0.032^10^0.030^0.031^~2, 3~^~08/01/2014~ -~16398~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~628~^0.579^18^0.003^~1~^~A~^^^1^0.546^0.612^8^0.572^0.586^~2, 3~^~08/01/2014~ -~16398~^~629~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16398~^~630~^0.046^18^0.001^~1~^~AS~^^^1^0.040^0.051^7^0.044^0.047^~2, 3~^~08/01/2014~ -~16398~^~631~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~16398~^~645~^25.941^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~646~^12.535^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~652~^0.006^18^0.000^~1~^~A~^^^1^0.005^0.007^13^0.006^0.006^~2, 3~^~08/01/2014~ -~16398~^~653~^0.046^18^0.000^~1~^~A~^^^1^0.044^0.051^10^0.046^0.047^~2, 3~^~08/01/2014~ -~16398~^~654~^0.731^18^0.004^~1~^~A~^^^1^0.697^0.756^11^0.723^0.740^~2, 3~^~08/01/2014~ -~16398~^~662~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~16398~^~663~^0.043^18^0.002^~1~^~A~^^^1^0.012^0.081^6^0.040^0.047^~2, 3~^~08/01/2014~ -~16398~^~664~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^8^0.001^0.002^~1, 2, 3~^~08/01/2014~ -~16398~^~665~^0.029^18^0.001^~1~^~A~^^^1^0.011^0.047^9^0.028^0.030^~2, 3~^~08/01/2014~ -~16398~^~670~^0.011^18^0.000^~1~^~A~^^^1^0.011^0.013^10^0.011^0.012^~2, 3~^~03/01/2014~ -~16398~^~671~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16398~^~672~^0.008^18^0.000^~1~^~A~^^^1^0.007^0.009^12^0.008^0.009^~2, 3~^~08/01/2014~ -~16398~^~673~^0.030^18^0.000^~1~^~A~^^^1^0.029^0.031^11^0.030^0.031^~2, 3~^~08/01/2014~ -~16398~^~674~^24.768^18^0.175^~1~^~A~^^^1^23.599^25.979^7^24.359^25.178^~2, 3~^~08/01/2014~ -~16398~^~675~^12.215^18^0.080^~1~^~A~^^^1^11.603^12.737^7^12.025^12.406^~2, 3~^~08/01/2014~ -~16398~^~676~^0.044^18^0.001^~1~^~A~^^^1^0.039^0.049^7^0.043^0.046^~2, 3~^~08/01/2014~ -~16398~^~685~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~16398~^~687~^0.029^18^0.000^~1~^~A~^^^1^0.026^0.031^14^0.028^0.029^~2, 3~^~08/01/2014~ -~16398~^~689~^0.010^18^0.000^~1~^~AS~^^^1^0.009^0.011^9^0.010^0.010^~2, 3~^~08/01/2014~ -~16398~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16398~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16398~^~851~^0.027^18^0.001^~1~^~A~^^^1^0.022^0.039^6^0.025^0.029^~2, 3~^~08/01/2014~ -~16398~^~852~^0.010^18^0.000^~1~^~A~^^^1^0.009^0.011^9^0.010^0.010^~2, 3~^~03/01/2014~ -~16398~^~853~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16398~^~856~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16398~^~858~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~16399~^~312~^0.476^4^0.015^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~315~^1.850^4^0.014^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~404~^0.055^4^0.006^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~405~^0.087^4^0.017^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~406~^12.875^4^0.193^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~410~^0.870^4^0.007^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~415~^0.292^4^0.021^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~606~^9.691^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~607~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~608~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~609~^0.001^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~610~^0.020^4^0.002^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~611~^0.011^4^0.006^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~612~^0.046^4^0.008^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~613~^5.317^4^0.379^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~614~^1.417^4^0.068^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~615~^0.579^4^0.022^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~617~^35.375^4^0.791^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~618~^3.843^4^0.251^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~619~^2.933^4^0.100^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~620~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~621~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~624~^1.329^4^0.029^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~625~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~626~^0.058^4^0.001^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~627~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~628~^1.026^4^0.028^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~629~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~630~^0.110^4^0.012^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~631~^0.164^4^0.005^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~645~^36.614^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~646~^6.950^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~652~^0.008^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~653~^0.043^4^0.002^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~654~^0.920^4^0.014^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~662~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~663~^0.023^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~664~^0.001^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~665~^0.012^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~670~^0.013^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~671~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~672~^0.007^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~673~^0.058^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~674~^35.351^4^0.791^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~675~^3.817^4^0.252^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~676~^0.109^4^0.012^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~685~^0.005^4^0.002^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~687~^0.044^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~689~^0.004^4^0.002^~1~^~AS~^^^1^^^^^^^~12/01/2006~ -~16399~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~16399~^~697~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~851~^2.928^4^0.098^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~852~^0.002^4^0.001^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~853~^0.003^4^0.003^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16399~^~858~^0.000^4^0.000^~1~^~A~^^^1^^^^^^^~12/01/2006~ -~16402~^~312~^0.269^8^0.017^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~315~^0.501^8^0.056^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~404~^0.146^8^0.010^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~405~^0.059^8^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~406~^0.781^8^0.052^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~410~^0.319^8^0.024^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~415~^0.050^8^0.002^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~501~^0.066^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~502~^0.239^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~503~^0.245^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~504~^0.483^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~505~^0.474^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~506~^0.076^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~507~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~508~^0.579^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~509~^0.168^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~510~^0.292^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~511~^0.405^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~512~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~513~^0.303^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~514~^0.669^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~515~^1.568^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~516~^0.250^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~517~^0.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~518~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16402~^~606~^0.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~613~^0.077^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~614~^0.006^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~617~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~618~^0.196^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~619~^0.009^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~645~^0.003^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16402~^~646~^0.205^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16403~^~312~^0.129^17^0.007^~1~^~A~^^^1^0.086^0.195^11^0.113^0.145^~2, 3~^~08/01/2014~ -~16403~^~315~^0.289^17^0.005^~1~^~A~^^^1^0.245^0.379^10^0.278^0.301^~2, 3~^~08/01/2014~ -~16403~^~404~^0.076^9^0.002^~1~^~A~^^^1^0.060^0.100^5^0.070^0.081^~2, 3~^~08/01/2014~ -~16403~^~405~^0.079^9^0.003^~1~^~A~^^^1^0.050^0.110^6^0.071^0.088^~2, 3~^~08/01/2014~ -~16403~^~406~^0.367^9^0.010^~1~^~A~^^^1^0.260^0.480^5^0.342^0.393^~2, 3~^~08/01/2014~ -~16403~^~410~^0.189^6^0.014^~1~^~A~^^^1^0.130^0.230^3^0.145^0.234^~2, 3~^~08/01/2014~ -~16403~^~415~^0.103^9^0.003^~1~^~A~^^^1^0.080^0.160^5^0.094^0.111^~2, 3~^~08/01/2014~ -~16403~^~501~^0.059^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~502~^0.183^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~503~^0.235^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~504~^0.423^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~505~^0.348^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~507~^0.047^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~508~^0.294^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~509~^0.118^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~510~^0.287^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~511~^0.273^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~512~^0.137^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~513~^0.226^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~514~^0.623^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~515~^0.800^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~516~^0.201^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~517~^0.285^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~518~^0.312^0^^~1~^~A~^^^^^^^^^^~08/01/2014~ -~16403~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~606~^0.631^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~607~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~609~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~610~^0.004^7^0.003^~1~^~A~^^^1^0.000^0.019^4^-0.004^0.011^~1, 2, 3~^~08/01/2014~ -~16403~^~611~^0.001^7^0.001^~1~^~A~^^^1^0.000^0.005^4^-0.001^0.003^~1, 2, 3~^~02/01/2013~ -~16403~^~612~^0.022^7^0.002^~1~^~A~^^^1^0.003^0.029^2^0.012^0.032^~2, 3~^~08/01/2014~ -~16403~^~613~^0.394^7^0.034^~1~^~A~^^^1^0.107^0.528^2^0.253^0.535^~2, 3~^~08/01/2014~ -~16403~^~614~^0.192^7^0.020^~1~^~A~^^^1^0.022^0.283^2^0.109^0.276^~2, 3~^~08/01/2014~ -~16403~^~615~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.006^2^0.004^0.005^~2, 3~^~08/01/2014~ -~16403~^~617~^0.564^7^0.056^~1~^~AS~^^^1^0.076^0.800^2^0.328^0.801^~2, 3~^~08/01/2014~ -~16403~^~618~^0.361^7^0.026^~1~^~AS~^^^1^0.176^0.466^2^0.253^0.468^~2, 3~^~08/01/2014~ -~16403~^~619~^0.169^7^0.003^~1~^~AS~^^^1^0.154^0.198^4^0.162^0.177^~2, 3~^~08/01/2014~ -~16403~^~620~^0.003^7^0.001^~1~^~A~^^^1^0.000^0.005^2^0.001^0.005^~1, 2, 3~^~08/01/2014~ -~16403~^~621~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~624~^0.002^7^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~625~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~626~^0.024^7^0.003^~1~^~AS~^^^1^0.002^0.034^2^0.012^0.037^~2, 3~^~08/01/2014~ -~16403~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~628~^0.009^7^0.001^~1~^~A~^^^1^0.000^0.013^2^0.004^0.014^~1, 2, 3~^~08/01/2014~ -~16403~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~630~^0.000^7^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~16403~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~645~^0.601^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~646~^0.543^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~652~^0.003^7^0.000^~1~^~A~^^^1^0.000^0.005^3^0.002^0.004^~1, 2, 3~^~02/01/2013~ -~16403~^~653~^0.006^7^0.001^~1~^~A~^^^1^0.001^0.009^2^0.003^0.009^~1, 2, 3~^~02/01/2013~ -~16403~^~654~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~02/01/2013~ -~16403~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~663~^0.015^7^0.001^~1~^~A~^^^1^0.000^0.039^2^0.009^0.021^~1, 2, 3~^~08/01/2014~ -~16403~^~664~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~665~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.001^~1, 2, 3~^~08/01/2014~ -~16403~^~670~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~08/01/2014~ -~16403~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~16403~^~672~^0.008^7^0.001^~1~^~A~^^^1^0.000^0.012^2^0.004^0.013^~1, 2, 3~^~08/01/2014~ -~16403~^~673~^0.024^7^0.003^~1~^~A~^^^1^0.002^0.034^2^0.012^0.037^~1, 2, 3~^~08/01/2014~ -~16403~^~674~^0.549^7^0.055^~1~^~A~^^^1^0.076^0.761^2^0.319^0.780^~2, 3~^~08/01/2014~ -~16403~^~675~^0.360^7^0.026^~1~^~A~^^^1^0.176^0.462^2^0.253^0.466^~2, 3~^~08/01/2014~ -~16403~^~676~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~685~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~02/01/2013~ -~16403~^~687~^0.004^7^0.000^~1~^~A~^^^1^0.000^0.005^2^0.002^0.006^~1, 2, 3~^~02/01/2013~ -~16403~^~689~^0.001^7^0.000^~1~^~AS~^^^1^0.000^0.002^2^0.000^0.002^~2, 3~^~08/01/2014~ -~16403~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~16403~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~851~^0.169^7^0.002^~1~^~A~^^^1^0.154^0.198^3^0.162^0.177^~2, 3~^~08/01/2014~ -~16403~^~852~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~08/01/2014~ -~16403~^~853~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~16403~^~858~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~02/01/2013~ -~16409~^~312~^0.407^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~315~^0.824^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~404~^0.155^68^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~405~^0.285^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~406~^0.399^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~410~^0.179^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~415~^0.234^5^0.098^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~501~^0.242^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~502~^0.723^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~503~^0.807^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~504~^1.355^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~505~^1.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~506~^0.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~507~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~508~^0.869^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~509~^0.630^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~510~^0.831^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~511~^1.291^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~512~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~513~^0.784^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~514~^2.093^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~515~^3.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~516~^0.770^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~517~^0.974^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~518~^0.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~16409~^~606~^1.297^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~612~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~613~^0.952^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~614~^0.320^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~617~^1.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~618~^4.465^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~619~^0.598^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~626~^0.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~645~^1.981^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16409~^~646~^5.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~312~^0.828^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~315~^2.158^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~404~^0.100^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~405~^0.145^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~406~^1.410^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~410~^0.453^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~415~^0.208^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~501~^0.512^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~502~^1.530^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~503~^1.709^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~504~^2.868^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~505~^2.344^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~506~^0.475^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~507~^0.567^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~508~^1.838^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~509~^1.332^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~510~^1.758^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~511~^2.732^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~512~^0.950^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~513~^1.659^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~514~^4.429^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~515~^6.822^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~516~^1.628^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~517~^2.060^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~518~^2.042^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16410~^~606~^3.674^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~612~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~613~^2.696^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~614~^0.907^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~617~^5.539^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~618~^12.644^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~619~^1.694^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~626~^0.071^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/1996~ -~16410~^~645~^5.610^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16410~^~646~^14.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~312~^0.976^5^0.158^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~315~^4.190^5^0.272^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~404~^0.316^5^0.020^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~405~^0.142^5^0.022^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~406~^0.716^5^0.108^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~410~^0.057^3^0.009^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~415~^0.134^5^0.005^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~501~^0.835^7^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~502~^2.474^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~503~^2.942^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~504~^4.917^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~505~^3.929^17^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~506~^0.814^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~507~^0.886^11^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~508~^3.278^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~509~^2.301^10^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~510~^3.064^16^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~511~^4.642^10^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~512~^1.578^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~513~^2.677^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~514~^7.249^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~515~^12.013^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~516~^2.688^9^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~517~^3.298^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~518~^3.369^8^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16420~^~606~^0.052^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~612~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~613~^0.038^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~614~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~617~^0.078^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~618~^0.177^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~619~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~626~^0.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~645~^0.079^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16420~^~646~^0.201^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~312~^1.599^122^0.028^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~315~^1.493^146^0.060^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~404~^0.176^118^0.016^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~405~^0.100^118^0.004^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~406~^1.438^120^0.218^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~410~^0.060^109^0.003^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~415~^0.100^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16422~^~501~^1.116^40^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~502~^3.137^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~503~^4.253^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~504~^6.783^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~505~^5.327^71^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~506~^1.130^74^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~507~^1.046^55^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~508~^4.593^63^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~509~^3.222^47^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~510~^4.098^66^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~511~^6.670^46^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~512~^2.303^47^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~513~^3.589^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~514~^10.203^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~515~^17.452^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~516~^3.603^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~517~^4.960^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~518~^4.593^44^^~1~^^^^^^^^^^^~12/01/1986~ -~16422~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16422~^~606~^0.077^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16422~^~607~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~608~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~609~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~610~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~611~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~612~^0.001^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~613~^0.056^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~614~^0.019^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~617~^0.116^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~618~^0.264^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~619~^0.035^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~620~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~621~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~626~^0.001^0^^~1~^^^^^^^^^^^~02/01/2003~ -~16422~^~627~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~628~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~629~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~630~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~631~^0.000^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~ -~16422~^~645~^0.117^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16422~^~646~^0.299^0^^~1~^^^^^^^^^^^~07/01/2015~ -~16424~^~312~^0.049^6^0.000^~1~^~A~^^^1^0.048^0.050^5^0.048^0.050^~1, 2, 3~^~04/01/2013~ -~16424~^~315~^1.008^6^0.005^~1~^~A~^^^1^0.990^1.020^5^0.994^1.022^~2, 3~^~04/01/2013~ -~16424~^~404~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~04/01/2013~ -~16424~^~405~^0.240^3^0.010^~1~^~A~^^^1^0.230^0.260^2^0.197^0.283^~2, 3~^~04/01/2013~ -~16424~^~406~^1.140^3^0.025^~1~^~A~^^^1^1.090^1.170^2^1.032^1.248^~2, 3~^~04/01/2013~ -~16424~^~410~^0.425^2^^~1~^~A~^^^1^0.410^0.440^1^^^^~04/01/2013~ -~16424~^~415~^0.160^3^0.000^~1~^~A~^^^1^0.160^0.160^^^^~2, 3~^~04/01/2013~ -~16424~^~501~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~502~^0.378^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~503~^0.408^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~504~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~505~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~506~^0.093^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~508~^0.337^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~509~^0.089^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~510~^0.433^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~511~^0.495^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~512~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~513~^0.646^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~514~^0.455^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~515~^1.682^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~516~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~517~^0.597^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~518~^0.478^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~16424~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~16424~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16424~^~606~^0.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16424~^~613~^0.031^0^^~1~^^^^^^^^^^^~03/01/2015~ -~16424~^~614~^0.004^0^^~1~^^^^^^^^^^^~03/01/2015~ -~16424~^~617~^0.042^0^^~1~^^^^^^^^^^^~03/01/2015~ -~16424~^~618~^0.123^0^^~1~^^^^^^^^^^^~03/01/2015~ -~16424~^~619~^0.015^0^^~1~^^^^^^^^^^^~03/01/2015~ -~16424~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~626~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16424~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~628~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16424~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~16424~^~645~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16424~^~646~^0.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~312~^0.049^4^^~1~^~A~^^^1^0.049^0.050^^^^~1, 2~^~04/01/2013~ -~16425~^~315~^0.151^4^^~1~^~A~^^^1^0.125^0.171^^^^~2~^~04/01/2013~ -~16425~^~404~^0.030^3^^~1~^~A~^^^1^0.030^0.030^^^^~2~^~04/01/2013~ -~16425~^~405~^0.043^3^^~1~^~A~^^^1^0.040^0.047^^^^~2~^~04/01/2013~ -~16425~^~406~^0.453^3^^~1~^~A~^^^1^0.410^0.520^^^^~2~^~04/01/2013~ -~16425~^~410~^0.148^2^^~1~^~A~^^^1^0.148^0.148^^^^~1~^~04/01/2013~ -~16425~^~415~^0.037^3^^~1~^~A~^^^1^0.037^0.037^^^^~1, 2~^~04/01/2013~ -~16425~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~16425~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16425~^~606~^0.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~613~^0.016^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~614~^0.004^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~617~^0.032^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~618~^0.077^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~619~^0.012^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~626~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/2013~ -~16425~^~645~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16425~^~646~^0.089^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~16426~^~312~^0.378^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~315~^1.181^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~404~^0.158^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~405~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~406~^0.381^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~410~^0.133^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~415~^0.092^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~501~^0.235^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~502~^0.785^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~503~^0.849^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~504~^1.392^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~505~^0.883^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~506~^0.211^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~507~^0.057^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~508~^0.835^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~509~^0.701^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~510~^0.870^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~511~^1.369^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~512~^0.431^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~513~^0.773^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~514~^2.036^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~515~^3.288^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~516~^0.733^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~517~^1.084^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~518~^1.015^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16426~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16426~^~606~^1.261^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~612~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~613~^0.925^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~614~^0.311^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~617~^1.901^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~618~^4.339^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~619~^0.582^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~626~^0.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~645~^1.925^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16426~^~646~^4.921^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~312~^0.193^3^0.033^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~315~^0.605^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~404~^0.081^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~405~^0.052^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~406~^0.195^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~410~^0.068^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~415~^0.047^2^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~501~^0.120^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~502~^0.402^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~503~^0.435^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~504~^0.713^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~505~^0.452^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~506~^0.108^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~507~^0.029^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~508~^0.428^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~509~^0.359^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~510~^0.446^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~511~^0.701^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~512~^0.221^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~513~^0.396^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~514~^1.043^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~515~^1.684^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~516~^0.375^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~517~^0.555^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~518~^0.519^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16427~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16427~^~606~^0.691^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~612~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~613~^0.507^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~614~^0.171^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~617~^1.043^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~618~^2.380^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~619~^0.319^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~626~^0.013^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~ -~16427~^~645~^1.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16427~^~646~^2.699^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~312~^1.179^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~315~^3.689^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~404~^0.494^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~405~^0.317^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~406~^1.189^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~410~^0.415^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~415~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~501~^0.747^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~502~^1.956^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~503~^2.376^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~504~^3.644^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~505~^3.157^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~506~^0.613^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~507~^0.663^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~508~^2.334^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~509~^1.604^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~510~^2.418^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~511~^3.190^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~512~^1.394^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~513~^1.965^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~514~^5.298^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~515~^8.287^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~516~^1.872^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~517~^2.586^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~518~^2.259^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16428~^~606~^4.388^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~612~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~613~^3.220^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~614~^1.083^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~617~^6.617^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~618~^15.104^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~619~^2.024^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~626~^0.084^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~645~^6.701^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16428~^~646~^17.128^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~312~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~315~^1.495^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~404~^0.170^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~405~^0.050^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~406~^0.100^1^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~410~^0.140^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~415~^0.099^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~501~^0.255^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~502~^0.854^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~503~^0.924^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~504~^1.516^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~505~^0.961^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~506~^0.230^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~507~^0.062^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~508~^0.910^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~509~^0.764^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~510~^0.948^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~511~^1.491^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~512~^0.469^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~513~^0.842^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~514~^2.218^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~515~^3.581^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~516~^0.798^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~517~^1.181^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~518~^1.105^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16429~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16429~^~606~^2.918^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~612~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~613~^2.141^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~614~^0.720^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~617~^4.400^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~618~^10.044^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~619~^1.346^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~626~^0.056^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~645~^4.456^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16429~^~646~^11.390^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~312~^0.376^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~315~^1.174^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~404~^0.157^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~405~^0.101^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~406~^0.379^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~410~^0.132^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~415~^0.091^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16432~^~501~^0.121^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~502~^0.405^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~503~^0.438^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~504~^0.719^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~505~^0.456^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~506~^0.109^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~507~^0.029^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~508~^0.431^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~509~^0.362^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~510~^0.449^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~511~^0.707^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~512~^0.222^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~513~^0.399^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~514~^1.052^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~515~^1.698^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~516~^0.379^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~517~^0.560^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~518~^0.524^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~ -~16432~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~16432~^~606~^1.157^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~612~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~613~^0.849^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~614~^0.286^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~617~^1.745^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~618~^3.982^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~619~^0.534^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~626~^0.022^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~645~^1.767^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16432~^~646~^4.516^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~312~^0.225^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~315~^0.487^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~404~^0.212^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~405~^0.064^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~406~^0.551^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~410~^0.398^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~415~^0.095^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~501~^0.102^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~502~^0.316^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~503~^0.337^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~504~^0.635^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~505~^0.561^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~506~^0.118^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~507~^0.091^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~508~^0.484^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~509~^0.268^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~510~^0.395^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~511~^0.574^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~512~^0.257^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~513~^0.378^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~514~^1.001^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~515~^1.570^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~517~^0.373^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~518~^0.415^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16434~^~606~^0.116^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~612~^0.000^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~613~^0.108^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~614~^0.007^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~617~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~618~^0.105^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~619~^0.088^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~645~^0.039^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16434~^~646~^0.193^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~312~^0.773^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~315~^1.199^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~404~^0.295^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~405~^0.129^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~406~^0.830^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~410~^0.156^0^^~4~^^^^^^^^^^^~12/01/1986~ -~16436~^~415~^0.047^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~501~^0.233^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~502~^0.360^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~503~^0.448^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~504~^0.762^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~505~^0.652^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~506~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~507~^0.166^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~508~^0.436^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~509~^0.445^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~510~^0.467^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~511~^0.576^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~512~^0.241^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~513~^0.318^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~514~^0.973^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~515~^1.224^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~516~^0.348^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~517~^0.588^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~518~^0.377^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~16436~^~606~^0.825^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~612~^0.010^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~613~^0.449^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~614~^0.267^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~617~^2.025^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~618~^1.457^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~619~^0.094^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~626~^0.020^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~628~^0.109^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~645~^2.153^0^^~1~^^^^^^^^^^^~12/01/1986~ -~16436~^~646~^1.551^0^^~1~^^^^^^^^^^^~12/01/1986~ -~17000~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~502~^0.948^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~503~^1.068^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~504~^1.728^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~505~^1.788^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~506~^0.507^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~507~^0.245^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~508~^0.876^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~509~^0.692^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~510~^1.199^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~511~^1.277^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~512~^0.787^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~513~^1.291^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~514~^1.872^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~515~^3.432^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~516~^1.115^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~517~^0.906^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~518~^0.813^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~521~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2012~ -~17000~^~605~^0.245^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~606~^2.053^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17000~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~612~^0.163^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~613~^1.089^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~614~^0.699^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~617~^1.654^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17000~^~618~^0.117^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17000~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17000~^~620~^0.181^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~625~^0.036^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~626~^0.118^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17000~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~629~^0.009^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~645~^1.813^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~646~^0.357^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~652~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~653~^0.052^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~663~^0.192^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~665~^0.048^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~674~^1.462^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~675~^0.069^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~693~^0.192^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17000~^~851~^0.028^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17000~^~856~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17001~^~312~^0.104^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~405~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~406~^6.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~501~^0.197^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~502~^0.723^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~503~^0.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~504~^1.313^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~505~^1.491^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~506~^0.433^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~507~^0.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~508~^0.687^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~509~^0.567^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~510~^0.911^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~511~^1.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~512~^0.535^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~513~^1.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~514~^1.486^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~515~^2.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~516~^0.825^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~517~^0.708^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~518~^0.628^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~606~^9.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~612~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~613~^4.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~614~^2.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~617~^7.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~618~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~619~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~626~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17001~^~645~^8.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17001~^~646~^1.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~312~^0.119^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~406~^6.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~410~^0.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~501~^0.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~502~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~503~^1.183^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~504~^1.908^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~505~^2.166^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~506~^0.629^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~507~^0.293^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~508~^0.998^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~509~^0.824^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~510~^1.323^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~511~^1.457^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~512~^0.777^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~513~^1.475^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~514~^2.159^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~515~^3.559^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~516~^1.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~517~^1.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~518~^0.912^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~606~^8.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~612~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~613~^4.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~614~^2.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~617~^8.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~618~^1.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~619~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~626~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17002~^~645~^8.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17002~^~646~^1.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~312~^0.120^32^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~404~^0.130^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~405~^0.230^16^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~406~^6.000^16^0.198^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~410~^0.700^16^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~501~^0.237^46^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~502~^0.869^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~503~^0.979^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~504~^1.579^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~505~^1.792^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~506~^0.521^49^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~507~^0.242^43^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~508~^0.826^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~509~^0.682^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~510~^1.095^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~511~^1.206^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~512~^0.643^50^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~513~^1.221^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~514~^1.786^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~515~^2.945^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~516~^0.991^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~517~^0.851^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~518~^0.755^37^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~606~^1.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~612~^0.140^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~613~^1.020^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~614~^0.620^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~617~^1.910^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~618~^0.360^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~619~^0.070^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~620~^0.050^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~626~^0.160^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~645~^2.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17003~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~312~^0.128^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~404~^0.100^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~405~^0.280^16^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~406~^6.320^16^0.199^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~410~^0.690^16^0.021^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~501~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~502~^1.208^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~503~^1.361^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~504~^2.195^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~505~^2.492^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~506~^0.724^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~507~^0.337^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~508~^1.149^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~509~^0.948^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~510~^1.523^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~511~^1.676^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~512~^0.894^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~513~^1.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~514~^2.484^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~515~^4.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~516~^1.378^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~517~^1.184^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~518~^1.049^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~606~^3.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~610~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~611~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~612~^0.300^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~613~^1.830^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~614~^1.170^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~617~^3.860^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~618~^0.510^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~619~^0.060^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~620~^0.060^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~626~^0.280^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~645~^4.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17004~^~646~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~312~^0.057^30^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~315~^0.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~404~^0.060^7^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~405~^0.160^7^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~406~^6.370^7^0.195^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~410~^0.580^7^0.017^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~415~^0.040^8^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~501~^0.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~502~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~503~^0.321^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~504~^0.517^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~505~^0.587^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~506~^0.171^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~507~^0.079^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~508~^0.271^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~509~^0.223^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~510~^0.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~511~^0.395^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~512~^0.211^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~513~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~514~^0.585^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~515~^0.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~516~^0.325^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~517~^0.279^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~518~^0.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~606~^32.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~610~^0.200^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~611~^0.340^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~612~^3.070^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~613~^15.960^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~614~^10.060^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~617~^26.090^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~618~^3.890^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~619~^1.340^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~620~^0.120^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~626~^2.030^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~645~^29.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17005~^~646~^5.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~312~^0.088^14^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~315~^0.004^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~404~^0.070^7^0.002^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~405~^0.170^7^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~406~^7.800^7^0.322^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~410~^0.580^7^0.017^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~415~^0.040^8^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~501~^0.142^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~502~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~503~^0.586^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~504~^0.945^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~505~^1.073^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~506~^0.312^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~507~^0.145^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~508~^0.495^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~509~^0.409^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~510~^0.656^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~511~^0.722^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~512~^0.385^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~513~^0.731^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~514~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~515~^1.764^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~516~^0.594^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~517~^0.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~518~^0.452^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~606~^27.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~610~^0.170^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~611~^0.290^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~612~^2.580^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~613~^13.370^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~614~^8.430^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~617~^21.870^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~618~^3.260^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~619~^1.120^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~620~^0.100^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~626~^1.700^491^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17006~^~645~^24.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17006~^~646~^4.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~312~^0.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~315~^0.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~405~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~406~^5.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~501~^0.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~502~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~503~^0.913^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~504~^1.471^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~505~^1.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~506~^0.485^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~507~^0.226^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~508~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~509~^0.636^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~510~^1.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~511~^1.124^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~512~^0.599^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~513~^1.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~514~^1.665^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~515~^2.745^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~516~^0.924^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~517~^0.793^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~518~^0.703^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~606~^5.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~611~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~612~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~613~^2.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~614~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~617~^4.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~618~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~619~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~620~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~645~^5.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17007~^~646~^1.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~312~^0.123^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~315~^0.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~405~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~406~^5.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~410~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~415~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~501~^0.332^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~502~^1.214^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~503~^1.369^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~504~^2.207^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~505~^2.505^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~506~^0.728^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~507~^0.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~508~^1.155^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~509~^0.954^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~510~^1.531^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~511~^1.686^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~512~^0.899^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~513~^1.706^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~514~^2.497^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~515~^4.117^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~516~^1.386^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~517~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~518~^1.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~606~^5.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~611~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~612~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~613~^2.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~614~^1.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~617~^5.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~618~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~619~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17008~^~645~^5.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17008~^~646~^0.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~312~^0.109^24^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~404~^0.100^8^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~405~^0.200^8^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~406~^5.310^8^0.381^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~410~^0.710^8^0.029^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~501~^0.246^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~502~^0.902^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~503~^1.017^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~504~^1.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~505~^1.861^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~506~^0.541^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~507~^0.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~508~^0.858^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~509~^0.708^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~510~^1.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~511~^1.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~512~^0.668^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~513~^1.268^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~514~^1.855^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~515~^3.059^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~516~^1.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~517~^0.884^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~518~^0.784^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~606~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~612~^0.090^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~613~^0.640^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~614~^0.390^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~617~^1.200^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~618~^0.230^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~619~^0.040^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~620~^0.030^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~626~^0.100^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~645~^1.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17009~^~646~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~312~^0.129^8^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~404~^0.040^7^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~405~^0.190^8^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~406~^5.070^8^0.375^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~410~^0.630^8^0.030^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~501~^0.362^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~502~^1.327^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~503~^1.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~504~^2.412^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~505~^2.739^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~506~^0.796^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~507~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~508~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~509~^1.042^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~510~^1.673^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~511~^1.842^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~512~^0.982^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~513~^1.865^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~514~^2.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~515~^4.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~516~^1.515^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~517~^1.301^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~518~^1.153^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~606~^2.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~610~^0.010^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~611~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~612~^0.190^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~613~^1.160^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~614~^0.740^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~617~^2.440^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~618~^0.320^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~619~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~620~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~626~^0.180^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~645~^2.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17010~^~646~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~312~^0.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~315~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~404~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~406~^6.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~501~^0.209^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~502~^0.767^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~503~^0.864^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~504~^1.393^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~505~^1.582^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~506~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~507~^0.214^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~508~^0.729^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~509~^0.602^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~510~^0.967^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~511~^1.064^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~512~^0.567^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~513~^1.077^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~514~^1.577^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~515~^2.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~516~^0.875^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~517~^0.751^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~518~^0.666^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~606~^7.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~610~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~611~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~612~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~613~^3.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~614~^2.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~617~^6.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~618~^0.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~619~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~626~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~645~^7.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17011~^~646~^1.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~312~^0.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~406~^6.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~410~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~501~^0.299^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~502~^1.094^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~503~^1.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~504~^1.987^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~505~^2.256^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~506~^0.656^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~507~^0.305^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~508~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~509~^0.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~510~^1.379^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~511~^1.518^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~512~^0.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~513~^1.537^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~514~^2.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~515~^3.708^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~516~^1.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~517~^1.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~518~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~606~^6.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~610~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~611~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~612~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~613~^3.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~614~^2.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~617~^6.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~618~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~619~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~626~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17012~^~645~^6.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17012~^~646~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~312~^0.126^32^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~404~^0.140^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~405~^0.250^16^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~406~^6.230^16^0.188^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~410~^0.720^16^0.017^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~501~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~502~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~503~^0.992^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~504~^1.599^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~505~^1.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~506~^0.528^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~507~^0.245^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~508~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~509~^0.691^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~510~^1.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~511~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~512~^0.651^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~513~^1.236^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~514~^1.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~515~^2.983^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~516~^1.004^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~517~^0.862^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~518~^0.764^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~606~^1.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~612~^0.120^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~613~^0.880^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~614~^0.540^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~617~^1.640^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~618~^0.310^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~619~^0.060^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~620~^0.040^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~626~^0.140^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~645~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17013~^~646~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~312~^0.120^16^0.008^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~404~^0.110^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~405~^0.290^16^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~406~^6.340^16^0.192^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~410~^0.710^16^0.026^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~501~^0.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~502~^1.211^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~503~^1.365^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~504~^2.201^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~505~^2.499^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~506~^0.726^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~507~^0.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~508~^1.152^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~509~^0.951^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~510~^1.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~511~^1.681^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~512~^0.896^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~513~^1.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~514~^2.491^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~515~^4.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~516~^1.382^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~517~^1.187^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~518~^1.052^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~606~^2.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~610~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~611~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~612~^0.240^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~613~^1.490^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~614~^0.950^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~617~^3.140^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~618~^0.410^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~619~^0.050^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~620~^0.050^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~626~^0.230^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17014~^~645~^3.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17014~^~646~^0.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~312~^0.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~315~^0.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~404~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~406~^6.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~410~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~501~^0.217^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~502~^0.795^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~503~^0.896^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~504~^1.445^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~505~^1.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~506~^0.477^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~507~^0.222^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~508~^0.756^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~509~^0.624^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~510~^1.002^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~511~^1.104^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~512~^0.588^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~513~^1.117^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~514~^1.635^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~515~^2.696^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~516~^0.907^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~517~^0.779^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~518~^0.691^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~606~^5.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~611~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~612~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~613~^2.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~614~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~617~^4.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~618~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~619~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~645~^5.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17015~^~646~^1.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~312~^0.117^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~315~^0.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~406~^6.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~410~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~501~^0.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~502~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~503~^1.274^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~504~^2.054^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~505~^2.332^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~506~^0.678^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~507~^0.315^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~508~^1.075^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~509~^0.888^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~510~^1.425^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~511~^1.569^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~512~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~513~^1.588^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~514~^2.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~515~^3.832^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~516~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~517~^1.108^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~518~^0.982^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~606~^5.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~611~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~612~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~613~^2.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~614~^1.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~617~^4.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~618~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~619~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~626~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~645~^5.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17016~^~646~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~312~^0.124^32^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~404~^0.140^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~405~^0.250^16^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~406~^6.190^16^0.181^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~410~^0.700^16^0.022^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~501~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~502~^0.878^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~503~^0.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~504~^1.596^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~505~^1.812^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~506~^0.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~507~^0.245^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~508~^0.835^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~509~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~510~^1.107^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~511~^1.219^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~512~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~513~^1.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~514~^1.806^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~515~^2.977^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~516~^1.002^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~517~^0.861^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~518~^0.763^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~606~^1.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~612~^0.110^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~613~^0.810^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~614~^0.500^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~617~^1.530^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~618~^0.290^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~619~^0.060^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~620~^0.040^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~626~^0.130^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~645~^1.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17017~^~646~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~312~^0.121^16^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~404~^0.110^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~405~^0.280^16^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~406~^6.390^16^0.150^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~410~^0.710^16^0.027^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~501~^0.329^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~502~^1.206^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~503~^1.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~504~^2.191^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~505~^2.488^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~506~^0.723^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~507~^0.336^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~508~^1.147^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~509~^0.947^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~510~^1.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~511~^1.674^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~512~^0.892^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~513~^1.694^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~514~^2.479^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~515~^4.088^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~516~^1.376^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~517~^1.182^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~518~^1.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~606~^2.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~610~^0.010^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~611~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~612~^0.210^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~613~^1.280^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~614~^0.820^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~617~^2.710^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~618~^0.360^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~619~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~620~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~626~^0.200^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~645~^2.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17018~^~646~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~312~^0.112^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~406~^6.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~410~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~501~^0.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~502~^0.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~503~^0.817^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~504~^1.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~505~^1.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~506~^0.435^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~507~^0.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~508~^0.689^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~509~^0.569^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~510~^0.914^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~511~^1.006^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~512~^0.536^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~513~^1.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~514~^1.491^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~515~^2.458^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~516~^0.827^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~517~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~518~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~606~^9.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~612~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~613~^4.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~614~^3.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~617~^8.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~618~^1.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~619~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~626~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~645~^9.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17019~^~646~^1.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~312~^0.112^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~405~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~406~^6.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~501~^0.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~502~^1.054^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~503~^1.188^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~504~^1.916^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~505~^2.175^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~506~^0.632^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~507~^0.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~508~^1.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~509~^0.828^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~510~^1.329^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~511~^1.463^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~512~^0.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~513~^1.481^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~514~^2.168^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~515~^3.574^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~516~^1.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~517~^1.033^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~518~^0.916^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~606~^8.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~612~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~613~^4.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~614~^2.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~617~^7.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~618~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~619~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~626~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~645~^8.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17020~^~646~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~312~^0.132^32^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~404~^0.140^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~405~^0.250^16^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~406~^6.330^16^0.303^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~410~^0.740^16^0.017^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~501~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~502~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~503~^0.991^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~504~^1.598^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~505~^1.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~506~^0.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~507~^0.245^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~508~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~509~^0.691^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~510~^1.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~511~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~512~^0.651^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~513~^1.236^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~514~^1.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~515~^2.982^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~516~^1.004^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~517~^0.862^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~518~^0.764^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~606~^1.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~612~^0.130^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~613~^0.990^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~614~^0.600^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~617~^1.850^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~618~^0.350^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~619~^0.070^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~620~^0.050^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~626~^0.150^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~645~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17021~^~646~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~312~^0.119^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~404~^0.120^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~405~^0.310^16^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~406~^6.270^16^0.264^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~410~^0.700^16^0.029^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~501~^0.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~502~^1.214^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~503~^1.368^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~504~^2.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~505~^2.504^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~506~^0.728^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~507~^0.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~508~^1.154^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~509~^0.953^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~510~^1.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~511~^1.684^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~512~^0.898^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~513~^1.705^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~514~^2.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~515~^4.114^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~516~^1.385^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~517~^1.189^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~518~^1.054^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~606~^3.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~610~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~611~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~612~^0.290^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~613~^1.760^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~614~^1.130^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~617~^3.720^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~618~^0.490^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~619~^0.050^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~620~^0.060^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~626~^0.270^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~645~^4.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17022~^~646~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~312~^0.105^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~315~^0.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~406~^6.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~410~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~501~^0.191^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~502~^0.699^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~503~^0.787^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~504~^1.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~505~^1.441^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~506~^0.419^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~507~^0.195^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~508~^0.664^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~509~^0.549^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~510~^0.881^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~511~^0.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~512~^0.517^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~513~^0.982^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~514~^1.437^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~515~^2.369^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~516~^0.797^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~517~^0.685^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~518~^0.607^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~606~^11.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~610~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~611~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~612~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~613~^5.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~614~^3.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~617~^9.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~618~^1.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~619~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~626~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~645~^10.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17023~^~646~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~312~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~406~^7.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~410~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~501~^0.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~502~^1.077^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~503~^1.214^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~504~^1.958^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~505~^2.223^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~506~^0.646^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~507~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~508~^1.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~509~^0.846^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~510~^1.358^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~511~^1.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~512~^0.797^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~513~^1.514^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~514~^2.216^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~515~^3.653^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~516~^1.229^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~517~^1.056^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~518~^0.936^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~606~^9.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~612~^0.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~613~^4.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~614~^3.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~617~^8.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~618~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~619~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~626~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17024~^~645~^9.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17024~^~646~^1.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~312~^0.119^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~315~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~405~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~406~^7.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~410~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~501~^0.264^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~502~^0.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~503~^1.088^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~504~^1.754^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~505~^1.991^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~506~^0.579^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~507~^0.269^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~508~^0.918^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~509~^0.758^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~510~^1.217^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~511~^1.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~512~^0.714^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~513~^1.356^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~514~^1.985^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~515~^3.272^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~516~^1.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~517~^0.946^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~518~^0.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~606~^10.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~612~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~613~^5.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~614~^3.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~617~^8.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~618~^1.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~619~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~626~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17025~^~645~^9.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17025~^~646~^1.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~312~^0.128^32^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~404~^0.130^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~405~^0.230^16^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~406~^6.510^16^0.290^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~410~^0.660^16^0.024^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~501~^0.244^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~502~^0.893^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~503~^1.007^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~504~^1.624^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~505~^1.843^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~506~^0.536^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~507~^0.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~508~^0.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~509~^0.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~510~^1.126^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~511~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~512~^0.661^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~513~^1.255^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~514~^1.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~515~^3.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~516~^1.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~517~^0.876^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~518~^0.776^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~606~^2.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~612~^0.150^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~613~^1.150^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~614~^0.710^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~617~^2.160^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~618~^0.410^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~619~^0.080^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~620~^0.060^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~626~^0.180^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~645~^2.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17026~^~646~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~312~^0.145^16^0.008^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~404~^0.110^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~405~^0.280^16^0.017^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~406~^6.850^16^0.255^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~410~^0.660^16^0.029^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~501~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~502~^1.283^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~503~^1.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~504~^2.332^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~505~^2.648^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~506~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~507~^0.358^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~508~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~509~^1.008^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~510~^1.618^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~511~^1.782^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~512~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~513~^1.803^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~514~^2.639^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~515~^4.352^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~516~^1.465^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~517~^1.258^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~518~^1.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~606~^3.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~610~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~611~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~612~^0.300^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~613~^1.870^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~614~^1.200^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~617~^3.950^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~618~^0.520^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~619~^0.060^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~620~^0.060^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~626~^0.290^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17027~^~645~^4.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17027~^~646~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~312~^0.132^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~315~^0.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~406~^6.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~410~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~501~^0.311^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~502~^1.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~503~^1.283^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~504~^2.068^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~505~^2.348^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~506~^0.682^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~507~^0.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~508~^1.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~509~^0.894^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~510~^1.435^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~511~^1.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~512~^0.842^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~513~^1.599^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~514~^2.341^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~515~^3.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~516~^1.299^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~517~^1.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~518~^0.989^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~606~^3.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~612~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~613~^1.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~614~^1.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~617~^3.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~618~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~619~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~626~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~645~^3.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17028~^~646~^0.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~312~^0.089^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~315~^0.016^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~405~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~406~^6.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~410~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~501~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~502~^0.621^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~503~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~504~^1.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~505~^1.282^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~506~^0.373^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~507~^0.173^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~508~^0.591^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~509~^0.488^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~510~^0.783^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~511~^0.862^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~512~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~513~^0.873^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~514~^1.278^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~515~^2.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~516~^0.709^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~517~^0.609^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~518~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~606~^15.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~610~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~611~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~612~^1.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~613~^7.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~614~^4.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~617~^12.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~618~^1.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~619~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~626~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~645~^14.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17029~^~646~^2.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~312~^0.121^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~315~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~405~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~406~^7.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~410~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~501~^0.259^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~502~^0.947^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~503~^1.068^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~504~^1.721^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~505~^1.954^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~506~^0.568^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~507~^0.264^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~508~^0.901^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~509~^0.744^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~510~^1.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~511~^1.315^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~512~^0.701^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~513~^1.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~514~^1.948^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~515~^3.211^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~516~^1.081^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~517~^0.928^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~518~^0.823^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~606~^12.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~610~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~611~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~612~^1.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~613~^6.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~614~^4.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~617~^10.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~618~^1.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~619~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~626~^0.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17030~^~645~^12.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17030~^~646~^2.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~312~^0.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~406~^6.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~410~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~501~^0.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~502~^0.904^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~503~^1.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~504~^1.642^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~505~^1.865^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~506~^0.542^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~507~^0.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~508~^0.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~509~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~510~^1.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~511~^1.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~512~^0.669^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~513~^1.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~514~^1.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~515~^3.064^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~516~^1.031^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~517~^0.886^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~518~^0.785^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~606~^12.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~610~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~611~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~612~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~613~^6.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~614~^4.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~617~^11.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~618~^1.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~619~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~626~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~645~^12.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17031~^~646~^2.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~312~^0.111^32^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~404~^0.120^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~405~^0.200^16^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~406~^5.890^16^0.295^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~410~^0.650^16^0.029^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~415~^0.160^9^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~501~^0.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~502~^0.855^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~503~^0.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~504~^1.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~505~^1.765^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~506~^0.513^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~507~^0.239^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~508~^0.814^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~509~^0.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~510~^1.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~511~^1.187^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~512~^0.633^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~513~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~514~^1.759^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~515~^2.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~516~^0.976^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~517~^0.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~518~^0.743^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~606~^3.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~611~^0.020^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~612~^0.240^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~613~^1.790^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~614~^1.100^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~617~^3.360^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~618~^0.630^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~619~^0.120^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~620~^0.090^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~626~^0.280^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~645~^3.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17032~^~646~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~312~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~406~^6.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~410~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~501~^0.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~502~^1.187^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~503~^1.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~504~^2.157^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~505~^2.449^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~506~^0.712^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~507~^0.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~508~^1.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~509~^0.932^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~510~^1.497^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~511~^1.648^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~512~^0.879^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~513~^1.668^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~514~^2.441^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~515~^4.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~516~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~517~^1.163^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~518~^1.031^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~606~^4.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~612~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~613~^2.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~614~^1.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~617~^4.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~618~^0.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~619~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~620~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17033~^~645~^5.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17033~^~646~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~312~^0.129^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~404~^0.090^15^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~405~^0.230^15^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~406~^6.160^15^0.271^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~410~^0.660^15^0.022^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~415~^0.150^9^0.008^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~501~^0.306^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~502~^1.119^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~503~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~504~^2.034^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~505~^2.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~506~^0.671^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~507~^0.312^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~508~^1.065^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~509~^0.879^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~510~^1.411^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~511~^1.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~512~^0.829^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~513~^1.573^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~514~^2.302^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~515~^3.796^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~516~^1.277^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~517~^1.097^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~518~^0.972^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~606~^4.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~610~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~611~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~612~^0.420^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~613~^2.560^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~614~^1.640^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~617~^5.400^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~618~^0.710^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~619~^0.080^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~620~^0.090^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~626~^0.400^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~645~^5.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17034~^~646~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~312~^0.097^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~406~^5.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~410~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~501~^0.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~502~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~503~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~504~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~505~^1.464^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~506~^0.426^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~507~^0.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~508~^0.675^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~509~^0.557^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~510~^0.895^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~511~^0.985^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~512~^0.525^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~513~^0.997^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~514~^1.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~515~^2.406^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~516~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~517~^0.696^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~518~^0.616^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~606~^9.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~612~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~613~^4.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~614~^2.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~617~^7.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~618~^1.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~619~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~626~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17035~^~645~^8.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17035~^~646~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~312~^0.123^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~315~^0.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~405~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~406~^6.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~410~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~415~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~501~^0.335^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~502~^1.227^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~503~^1.384^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~504~^2.231^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~505~^2.532^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~506~^0.736^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~507~^0.342^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~508~^1.167^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~509~^0.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~510~^1.547^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~511~^1.704^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~512~^0.908^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~513~^1.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~514~^2.524^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~515~^4.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~516~^1.401^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~517~^1.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~518~^1.066^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~606~^10.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~612~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~613~^5.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~614~^3.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~617~^9.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~618~^1.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~619~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~626~^0.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~645~^10.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17036~^~646~^2.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~312~^0.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~405~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~406~^6.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~501~^0.285^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~502~^1.045^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~503~^1.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~504~^1.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~505~^2.157^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~506~^0.627^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~507~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~508~^0.994^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~509~^0.821^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~510~^1.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~511~^1.451^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~512~^0.774^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~513~^1.469^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~514~^2.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~515~^3.544^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~516~^1.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~517~^1.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~518~^0.908^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~606~^8.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~612~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~613~^4.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~614~^2.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~617~^7.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~618~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~619~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~626~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~645~^7.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17037~^~646~^1.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~312~^0.108^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~405~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~406~^6.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~410~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~501~^0.263^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~502~^0.963^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~503~^1.086^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~504~^1.751^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~505~^1.988^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~506~^0.578^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~507~^0.269^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~508~^0.916^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~509~^0.756^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~510~^1.215^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~511~^1.337^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~512~^0.713^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~513~^1.354^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~514~^1.981^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~515~^3.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~516~^1.099^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~517~^0.944^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~518~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~606~^8.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~612~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~613~^4.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~614~^2.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~617~^7.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~618~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~619~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~626~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17038~^~645~^8.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17038~^~646~^1.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~312~^0.109^32^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~404~^0.120^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~405~^0.220^16^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~406~^5.450^16^0.241^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~410~^0.710^16^0.022^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~501~^0.228^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~502~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~503~^0.943^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~504~^1.521^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~505~^1.726^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~506~^0.502^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~507~^0.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~508~^0.796^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~509~^0.657^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~510~^1.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~511~^1.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~512~^0.619^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~513~^1.176^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~514~^1.721^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~515~^2.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~516~^0.955^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~517~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~518~^0.727^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~606~^2.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~611~^0.020^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~612~^0.180^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~613~^1.310^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~614~^0.800^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~617~^2.460^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~618~^0.460^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~619~^0.090^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~620~^0.060^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~626~^0.210^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17039~^~645~^2.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17039~^~646~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~312~^0.132^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~406~^5.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~410~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~501~^0.383^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~502~^1.404^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~503~^1.583^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~504~^2.552^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~505~^2.897^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~506~^0.842^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~507~^0.392^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~508~^1.336^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~509~^1.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~510~^1.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~511~^1.949^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~512~^1.039^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~513~^1.973^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~514~^2.888^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~515~^4.761^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~516~^1.602^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~517~^1.376^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~518~^1.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~606~^6.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~611~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~612~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~613~^3.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~614~^2.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~617~^5.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~618~^1.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~619~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~626~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~645~^6.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17040~^~646~^1.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~312~^0.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~405~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~406~^6.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~501~^0.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~502~^1.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~503~^1.308^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~504~^2.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~505~^2.395^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~506~^0.696^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~507~^0.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~508~^1.104^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~509~^0.911^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~510~^1.463^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~511~^1.611^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~512~^0.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~513~^1.631^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~514~^2.387^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~515~^3.935^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~516~^1.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~517~^1.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~518~^1.008^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~606~^3.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~612~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~613~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~614~^1.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~617~^3.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~618~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~619~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~626~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17041~^~645~^4.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17041~^~646~^0.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~312~^0.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~315~^0.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~405~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~406~^5.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~410~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~501~^0.291^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~502~^1.067^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~503~^1.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~504~^1.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~505~^2.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~506~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~507~^0.298^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~508~^1.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~509~^0.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~510~^1.346^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~511~^1.482^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~512~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~513~^1.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~514~^2.195^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~515~^3.619^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~516~^1.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~517~^1.046^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~518~^0.927^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~606~^4.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~612~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~613~^2.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~614~^1.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~617~^3.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~618~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~619~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~626~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17042~^~645~^4.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17042~^~646~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~312~^0.102^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~405~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~406~^6.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~501~^0.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~502~^0.719^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~503~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~504~^1.306^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~505~^1.483^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~506~^0.431^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~507~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~508~^0.683^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~509~^0.564^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~510~^0.906^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~511~^0.997^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~512~^0.532^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~513~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~514~^1.478^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~515~^2.436^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~516~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~517~^0.704^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~518~^0.624^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~606~^9.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~612~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~613~^4.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~614~^2.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~617~^7.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~618~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~619~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~626~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~645~^8.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17043~^~646~^1.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~312~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~315~^0.023^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~406~^6.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~410~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~501~^0.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~502~^1.301^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~503~^1.466^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~504~^2.364^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~505~^2.684^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~506~^0.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~507~^0.363^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~508~^1.237^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~509~^1.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~510~^1.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~511~^1.806^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~512~^0.963^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~513~^1.828^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~514~^2.675^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~515~^4.411^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~516~^1.484^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~517~^1.275^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~518~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~606~^9.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~612~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~613~^5.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~614~^3.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~617~^9.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~618~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~619~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~626~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~645~^10.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17044~^~646~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~312~^0.133^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~315~^0.023^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~406~^7.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~410~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~501~^0.286^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~502~^1.046^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~503~^1.179^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~504~^1.901^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~505~^2.158^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~506~^0.627^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~507~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~508~^0.995^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~509~^0.821^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~510~^1.319^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~511~^1.452^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~512~^0.774^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~513~^1.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~514~^2.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~515~^3.547^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~516~^1.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~517~^1.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~518~^0.909^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~606~^8.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~612~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~613~^4.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~614~^2.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~617~^7.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~618~^1.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~619~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~626~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~645~^8.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17045~^~646~^1.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~312~^0.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~315~^0.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~406~^6.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~410~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~501~^0.263^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~502~^0.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~503~^1.087^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~504~^1.753^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~505~^1.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~506~^0.578^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~507~^0.269^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~508~^0.917^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~509~^0.757^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~510~^1.216^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~511~^1.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~512~^0.714^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~513~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~514~^1.983^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~515~^3.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~516~^1.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~517~^0.945^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~518~^0.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~606~^8.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~612~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~613~^4.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~614~^2.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~617~^7.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~618~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~619~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~626~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~645~^8.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17046~^~646~^1.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~312~^0.116^32^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~404~^0.120^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~405~^0.230^16^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~406~^6.000^16^0.272^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~410~^0.720^16^0.025^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~415~^0.150^9^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~501~^0.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~502~^0.856^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~503~^0.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~504~^1.555^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~505~^1.766^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~506~^0.513^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~507~^0.239^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~508~^0.814^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~509~^0.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~510~^1.079^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~511~^1.188^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~512~^0.633^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~513~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~514~^1.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~515~^2.901^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~516~^0.976^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~517~^0.839^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~518~^0.743^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~606~^1.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~612~^0.130^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~613~^1.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~614~^0.620^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~617~^1.890^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~618~^0.360^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~619~^0.070^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~620~^0.050^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~626~^0.160^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~645~^2.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17047~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~312~^0.154^15^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~404~^0.070^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~405~^0.270^16^0.019^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~406~^6.330^16^0.272^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~410~^0.620^16^0.020^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~415~^0.130^9^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~501~^0.415^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~502~^1.521^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~503~^1.715^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~504~^2.764^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~505~^3.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~506~^0.912^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~507~^0.424^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~508~^1.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~509~^1.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~510~^1.918^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~511~^2.111^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~512~^1.126^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~513~^2.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~514~^3.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~515~^5.157^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~516~^1.736^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~517~^1.491^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~518~^1.321^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~606~^5.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~610~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~611~^0.040^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~612~^0.440^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~613~^2.710^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~614~^1.730^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~617~^5.720^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~618~^0.750^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~619~^0.080^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~620~^0.090^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~626~^0.420^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~645~^6.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17048~^~646~^0.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~312~^0.145^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~405~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~406~^6.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~410~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~501~^0.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~502~^1.186^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~503~^1.337^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~504~^2.155^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~505~^2.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~506~^0.711^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~507~^0.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~508~^1.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~509~^0.931^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~510~^1.495^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~511~^1.646^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~512~^0.878^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~513~^1.666^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~514~^2.439^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~515~^4.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~516~^1.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~517~^1.162^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~518~^1.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~606~^3.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~612~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~613~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~614~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~617~^3.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~618~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~619~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~645~^3.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17049~^~646~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~312~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~315~^0.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~406~^6.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~410~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~501~^0.298^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~502~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~503~^1.228^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~504~^1.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~505~^2.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~506~^0.653^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~507~^0.304^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~508~^1.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~509~^0.856^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~510~^1.374^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~511~^1.513^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~512~^0.807^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~513~^1.531^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~514~^2.241^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~515~^3.695^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~516~^1.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~517~^1.068^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~518~^0.947^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~606~^3.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~612~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~613~^1.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~614~^1.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~617~^3.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~618~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~619~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~626~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~645~^3.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17050~^~646~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~312~^0.096^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~315~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~405~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~406~^5.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~501~^0.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~502~^0.712^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~503~^0.802^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~504~^1.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~505~^1.469^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~506~^0.427^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~507~^0.199^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~508~^0.677^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~509~^0.559^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~510~^0.897^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~511~^0.988^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~512~^0.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~513~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~514~^1.464^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~515~^2.413^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~516~^0.812^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~517~^0.698^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~518~^0.618^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~606~^8.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~612~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~613~^4.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~614~^2.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~617~^7.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~618~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~619~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~626~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~645~^8.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17051~^~646~^1.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~312~^0.121^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~315~^0.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~406~^6.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~410~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~501~^0.333^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~502~^1.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~503~^1.376^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~504~^2.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~505~^2.518^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~506~^0.732^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~507~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~508~^1.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~509~^0.958^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~510~^1.539^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~511~^1.694^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~512~^0.903^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~513~^1.715^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~514~^2.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~515~^4.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~516~^1.393^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~517~^1.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~518~^1.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~606~^10.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~612~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~613~^5.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~614~^3.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~617~^9.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~618~^1.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~619~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~620~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~626~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~645~^10.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17052~^~646~^2.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~312~^0.122^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~406~^6.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~501~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~502~^0.988^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~503~^1.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~504~^1.795^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~505~^2.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~506~^0.592^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~507~^0.275^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~508~^0.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~509~^0.776^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~510~^1.245^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~511~^1.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~512~^0.731^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~513~^1.388^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~514~^2.031^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~515~^3.349^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~516~^1.127^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~517~^0.968^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~518~^0.858^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~606~^8.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~612~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~613~^4.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~614~^2.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~617~^7.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~618~^1.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~619~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~626~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17053~^~645~^8.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17053~^~646~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~312~^0.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~406~^5.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~501~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~502~^0.952^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~503~^1.073^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~504~^1.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~505~^1.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~506~^0.571^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~507~^0.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~508~^0.906^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~509~^0.748^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~510~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~511~^1.322^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~512~^0.705^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~513~^1.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~514~^1.958^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~515~^3.228^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~516~^1.086^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~517~^0.933^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~518~^0.827^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~606~^8.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~612~^0.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~613~^4.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~614~^2.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~617~^7.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~618~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~619~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~626~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~645~^8.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17054~^~646~^1.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~312~^0.107^32^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~404~^0.120^16^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~405~^0.220^16^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~406~^5.190^16^0.258^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~410~^0.700^16^0.023^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~501~^0.225^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~502~^0.825^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~503~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~504~^1.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~505~^1.703^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~506~^0.495^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~507~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~508~^0.785^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~509~^0.648^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~510~^1.041^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~511~^1.146^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~512~^0.611^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~513~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~514~^1.698^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~515~^2.799^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~516~^0.942^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~517~^0.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~518~^0.717^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~606~^2.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~611~^0.020^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~612~^0.200^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~613~^1.480^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~614~^0.910^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~617~^2.780^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~618~^0.520^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~619~^0.100^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~620~^0.070^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~626~^0.230^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~645~^3.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17055~^~646~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~312~^0.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~405~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~406~^5.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~410~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~501~^0.378^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~502~^1.385^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~503~^1.561^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~504~^2.516^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~505~^2.857^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~506~^0.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~507~^0.386^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~508~^1.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~509~^1.087^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~510~^1.746^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~511~^1.922^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~512~^1.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~513~^1.946^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~514~^2.847^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~515~^4.694^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~516~^1.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~517~^1.357^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~518~^1.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~606~^6.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~610~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~611~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~612~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~613~^3.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~614~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~617~^6.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~618~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~619~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~620~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~626~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~645~^6.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17056~^~646~^1.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~312~^0.129^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~404~^0.100^16^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~405~^0.260^16^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~406~^6.070^16^0.259^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~410~^0.690^16^0.031^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~415~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~501~^0.298^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~502~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~503~^1.229^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~504~^1.982^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~505~^2.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~506~^0.654^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~507~^0.304^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~508~^1.037^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~509~^0.856^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~510~^1.375^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~511~^1.514^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~512~^0.807^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~513~^1.532^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~514~^2.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~515~^3.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~516~^1.244^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~517~^1.069^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~518~^0.947^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~606~^4.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~610~^0.020^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~611~^0.030^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~612~^0.350^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~613~^2.180^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~614~^1.390^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~617~^4.590^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~618~^0.600^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~619~^0.070^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~620~^0.070^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~626~^0.340^107^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~645~^4.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17057~^~646~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~312~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~315~^0.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~406~^5.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~410~^0.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~501~^0.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~502~^1.053^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~503~^1.187^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~504~^1.914^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~505~^2.174^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~506~^0.632^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~507~^0.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~508~^1.002^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~509~^0.827^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~510~^1.328^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~511~^1.462^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~512~^0.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~513~^1.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~514~^2.166^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~515~^3.572^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~516~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~517~^1.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~518~^0.915^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~606~^4.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~612~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~613~^2.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~614~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~617~^4.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~618~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~619~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~626~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~645~^4.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17058~^~646~^1.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~312~^0.121^32^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~404~^0.130^16^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~405~^0.240^16^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~406~^5.950^16^0.187^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~410~^0.710^16^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~415~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~501~^0.236^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~502~^0.865^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~503~^0.975^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~504~^1.572^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~505~^1.785^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~506~^0.519^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~507~^0.241^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~508~^0.823^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~509~^0.679^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~510~^1.091^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~511~^1.201^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~512~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~513~^1.216^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~514~^1.779^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~515~^2.933^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~516~^0.987^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~517~^0.848^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~518~^0.752^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~606~^1.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~610~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~611~^0.010^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~612~^0.140^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~613~^1.020^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~614~^0.630^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~617~^1.920^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~618~^0.360^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~619~^0.070^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~620~^0.050^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~626~^0.160^373^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~645~^2.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17059~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~312~^0.141^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~405~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~406~^5.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~410~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~501~^0.394^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~502~^1.442^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~503~^1.625^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~504~^2.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~505~^2.975^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~506~^0.865^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~507~^0.402^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~508~^1.372^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~509~^1.132^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~510~^1.818^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~511~^2.002^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~512~^1.067^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~513~^2.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~514~^2.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~515~^4.889^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~516~^1.645^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~517~^1.413^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~518~^1.253^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~606~^3.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~612~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~613~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~614~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~617~^3.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~618~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~619~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17060~^~645~^3.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17060~^~646~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~312~^0.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~405~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~406~^6.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~410~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~501~^0.328^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~502~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~503~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~504~^2.184^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~505~^2.479^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~506~^0.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~507~^0.335^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~508~^1.143^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~509~^0.944^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~510~^1.515^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~511~^1.668^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~512~^0.889^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~513~^1.688^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~514~^2.471^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~515~^4.074^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~516~^1.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~517~^1.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~518~^1.044^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~606~^2.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~612~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~613~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~614~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~617~^2.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~618~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~619~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~626~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~645~^2.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17061~^~646~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~312~^0.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~315~^0.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~404~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~405~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~406~^6.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~410~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~501~^0.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~502~^0.716^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~503~^0.808^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~504~^1.302^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~505~^1.478^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~506~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~507~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~508~^0.681^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~509~^0.563^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~510~^0.903^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~511~^0.994^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~512~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~513~^1.007^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~514~^1.473^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~515~^2.429^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~516~^0.818^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~517~^0.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~518~^0.622^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~606~^11.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~610~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~612~^0.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~613~^5.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~614~^4.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~617~^8.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~618~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~619~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~620~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~628~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~645~^8.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17062~^~646~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~312~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~315~^0.023^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~405~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~406~^7.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~410~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~415~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~501~^0.285^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~502~^1.045^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~503~^1.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~504~^1.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~505~^2.157^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~506~^0.627^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~507~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~508~^0.994^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~509~^0.821^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~510~^1.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~511~^1.451^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~512~^0.774^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~513~^1.469^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~514~^2.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~515~^3.544^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~516~^1.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~517~^1.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~518~^0.908^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~606~^11.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~612~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~613~^4.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~614~^4.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~617~^8.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~618~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~619~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~620~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~626~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~628~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~645~^8.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17063~^~646~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~312~^0.099^9^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~404~^0.150^9^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~405~^0.390^9^0.030^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~406~^6.540^9^0.141^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~410~^0.490^9^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~415~^0.140^9^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~501~^0.242^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~502~^0.888^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~503~^1.001^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~504~^1.614^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~505~^1.832^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~506~^0.532^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~507~^0.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~508~^0.845^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~509~^0.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~510~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~511~^1.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~512~^0.657^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~513~^1.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~514~^1.826^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~515~^3.011^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~516~^1.013^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~517~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~518~^0.771^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~606~^1.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~610~^0.010^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~611~^0.010^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~612~^0.090^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~613~^0.900^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~614~^0.730^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~617~^1.600^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~618~^0.130^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~619~^0.070^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~620~^0.020^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~626~^0.080^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~628~^0.000^75^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~645~^1.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17064~^~646~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~312~^0.114^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~404~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~405~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~406~^7.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~410~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~501~^0.346^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~502~^1.267^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~503~^1.428^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~504~^2.302^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~505~^2.613^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~506~^0.759^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~507~^0.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~508~^1.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~509~^0.995^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~510~^1.597^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~511~^1.758^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~512~^0.937^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~513~^1.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~514~^2.605^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~515~^4.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~516~^1.445^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~517~^1.241^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~518~^1.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~606~^3.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~612~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~613~^1.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~614~^1.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~617~^3.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~618~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~619~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~620~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~626~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~645~^3.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17065~^~646~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~312~^0.045^9^0.001^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~315~^0.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~405~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~406~^6.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~410~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~415~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~501~^0.081^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~502~^0.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~503~^0.334^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~504~^0.538^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~505~^0.611^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~506~^0.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~507~^0.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~508~^0.282^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~509~^0.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~510~^0.373^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~511~^0.411^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~512~^0.219^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~513~^0.416^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~514~^0.609^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~515~^1.004^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~516~^0.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~517~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~518~^0.257^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~606~^35.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~610~^0.210^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~611~^0.290^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~612~^3.080^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~613~^15.090^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~614~^13.940^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~617~^24.190^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~618~^1.560^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~619~^1.270^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~626~^1.150^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~628~^0.130^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~645~^25.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17066~^~646~^2.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~312~^0.059^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~315~^0.004^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~404~^0.080^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~405~^0.180^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~406~^8.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~410~^0.590^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~415~^0.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~501~^0.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~502~^0.415^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~503~^0.468^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~504~^0.755^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~505~^0.857^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~506~^0.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~507~^0.116^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~508~^0.395^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~509~^0.326^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~510~^0.524^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~511~^0.577^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~512~^0.307^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~513~^0.584^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~514~^0.854^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~515~^1.408^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~516~^0.474^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~517~^0.407^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~518~^0.361^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~606~^31.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~610~^0.190^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~611~^0.260^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~612~^2.750^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~613~^13.480^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~614~^12.440^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~617~^21.600^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~618~^1.390^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~619~^1.130^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~626~^1.030^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~628~^0.110^58^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~645~^23.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17067~^~646~^2.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17068~^~312~^0.079^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~404~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~405~^0.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~406~^4.094^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~410~^0.433^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~415~^0.094^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~501~^0.222^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~502~^0.958^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~503~^0.899^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~504~^1.551^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~505~^1.754^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~506~^0.655^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~507~^0.263^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~508~^0.791^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~509~^0.696^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~510~^1.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~511~^1.352^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~512~^0.425^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~513~^0.999^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~515~^2.806^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~516~^0.859^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~517~^0.644^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~518~^0.685^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~605~^0.524^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~606~^4.621^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~610~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~611~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~612~^0.242^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~613~^1.822^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~614~^2.291^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~617~^3.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~618~^0.324^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~619~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~620~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~624~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~626~^0.104^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~631~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~645~^3.283^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~646~^0.518^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~653~^0.203^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~662~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~663~^0.510^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~669~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~670~^0.169^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~673~^0.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~674~^2.658^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~675~^0.149^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~693~^0.518^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~695~^0.006^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17068~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~851~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17068~^~855~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~312~^0.125^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~404~^0.051^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~405~^0.140^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~406~^3.826^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~410~^0.462^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~415~^0.075^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~501~^0.336^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~502~^1.448^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~503~^1.359^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~504~^2.344^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~505~^2.651^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~506~^0.990^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~507~^0.397^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~508~^1.196^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~509~^1.052^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~510~^1.546^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~511~^2.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~512~^0.643^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~513~^1.509^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~515~^4.240^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~516~^1.298^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~517~^0.973^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~518~^1.035^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~605~^0.642^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~606~^5.560^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~611~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~612~^0.328^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~613~^2.202^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~614~^2.719^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~617~^3.953^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~618~^0.437^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~619~^0.159^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~620~^0.036^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~621~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~624~^0.024^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~626~^0.153^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17069~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~631~^0.030^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~645~^4.119^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~646~^0.697^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~17069~^~653~^0.228^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17069~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17069~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17070~^~312~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~404~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~405~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~406~^4.465^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~410~^0.467^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~415~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~501~^0.244^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~502~^1.052^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~503~^0.987^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~504~^1.703^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~505~^1.926^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~506~^0.719^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~507~^0.289^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~508~^0.869^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~509~^0.764^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~510~^1.123^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~511~^1.484^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~512~^0.467^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~513~^1.096^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~515~^3.080^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~516~^0.943^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~517~^0.707^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~518~^0.752^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~605~^0.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~606~^1.278^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~612~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~613~^0.615^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~614~^0.497^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~617~^1.085^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~618~^0.162^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~626~^0.046^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17070~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17070~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~645~^1.137^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~646~^0.294^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~653~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~663~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~670~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~673~^0.046^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~674~^0.999^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~675~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17070~^~693~^0.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17070~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~851~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17070~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17070~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~312~^0.136^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~404~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~405~^0.148^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~406~^4.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~410~^0.497^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~415~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~501~^0.368^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~502~^1.589^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~503~^1.491^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~504~^2.573^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~505~^2.909^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~506~^1.087^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~507~^0.436^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~508~^1.312^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~509~^1.154^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~510~^1.696^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~511~^2.243^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~512~^0.705^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~513~^1.656^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~515~^4.654^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~516~^1.424^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~517~^1.068^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~518~^1.136^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~605~^0.219^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~606~^2.631^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17071~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~611~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~612~^0.203^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~613~^1.214^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~614~^1.066^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~617~^2.158^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~618~^0.299^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~619~^0.099^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~620~^0.041^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~626~^0.102^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17071~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~645~^2.269^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~646~^0.506^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~653~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~663~^0.207^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~670~^0.136^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~673~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~674~^1.951^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~675~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17071~^~693~^0.219^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17071~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~851~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17071~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17071~^~855~^0.041^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17072~^~312~^0.105^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~404~^0.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~405~^0.153^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~406~^4.635^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~410~^0.494^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~415~^0.123^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~501~^0.206^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~502~^0.889^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~503~^0.834^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~504~^1.439^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~505~^1.628^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~506~^0.608^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~507~^0.244^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~508~^0.734^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~509~^0.646^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~510~^0.949^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~511~^1.255^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~512~^0.395^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~513~^0.927^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~515~^2.604^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~516~^0.797^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~517~^0.598^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~518~^0.636^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~605~^0.739^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~606~^5.902^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~610~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~612~^0.324^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~613~^2.325^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~614~^2.918^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~617~^3.998^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~618~^0.392^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~619~^0.149^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~620~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~624~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~626~^0.139^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~629~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~645~^4.152^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~646~^0.619^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~653~^0.254^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~662~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~663~^0.710^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~670~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~673~^0.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~674~^3.288^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~675~^0.161^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~693~^0.731^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17072~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~851~^0.149^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17072~^~855~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17073~^~312~^0.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~315~^0.023^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~405~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~406~^7.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~410~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~501~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~502~^1.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~503~^1.197^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~504~^1.929^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~505~^2.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~506~^0.637^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~507~^0.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~508~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~509~^0.834^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~510~^1.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~511~^1.474^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~512~^0.786^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~513~^1.492^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~514~^2.183^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~515~^3.599^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~516~^1.211^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~517~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~518~^0.922^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~606~^7.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~610~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~611~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~612~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~613~^3.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~614~^2.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~617~^5.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~618~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~619~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~620~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~626~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~628~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~645~^6.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17073~^~646~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17074~^~312~^0.119^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~404~^0.175^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~405~^0.173^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~406~^5.241^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~410~^0.553^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~415~^0.137^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~501~^0.233^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~502~^1.007^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~503~^0.945^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~504~^1.630^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~505~^1.843^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~506~^0.688^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~507~^0.276^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~508~^0.831^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~509~^0.731^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~510~^1.075^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~511~^1.421^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~512~^0.447^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~513~^1.049^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~515~^2.948^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~516~^0.902^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~517~^0.676^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~518~^0.720^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~605~^0.168^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~606~^1.512^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/1989~ -~17074~^~611~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~612~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~613~^0.755^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~614~^0.541^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~617~^1.296^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~618~^0.178^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~620~^0.029^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~626~^0.066^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17074~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17074~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~631~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~645~^1.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~646~^0.325^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~653~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~663~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~670~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~673~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~674~^1.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~675~^0.098^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17074~^~693~^0.168^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17074~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~851~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17074~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17074~^~855~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17075~^~312~^0.111^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~315~^0.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~405~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~406~^7.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~410~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~501~^0.323^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~502~^1.185^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~503~^1.335^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~504~^2.153^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~505~^2.444^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~506~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~507~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~508~^1.127^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~509~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~510~^1.494^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~511~^1.644^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~512~^0.877^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~513~^1.665^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~514~^2.436^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~515~^4.017^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~516~^1.352^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~517~^1.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~518~^1.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~606~^3.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~612~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~613~^1.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~614~^1.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~617~^2.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~618~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~619~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~620~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~626~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~645~^2.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17075~^~646~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17076~^~312~^0.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~404~^0.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~405~^0.120^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~406~^4.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~410~^0.418^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~415~^0.125^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~501~^0.170^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~502~^0.735^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~503~^0.689^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~504~^1.189^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~505~^1.345^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~506~^0.502^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~507~^0.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~508~^0.607^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~509~^0.534^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~510~^0.784^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~511~^1.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~512~^0.326^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~513~^0.766^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~515~^2.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~516~^0.659^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~517~^0.494^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~518~^0.525^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~605~^1.350^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~606~^11.161^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~610~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~611~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~612~^0.562^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~613~^4.208^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~614~^5.742^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~617~^7.224^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~618~^0.625^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~619~^0.266^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~620~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~624~^0.058^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~626~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~628~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~629~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~645~^7.465^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~646~^0.967^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~653~^0.494^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~662~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~663~^1.306^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~670~^0.370^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~672~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~673~^0.190^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~674~^5.918^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~675~^0.241^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~693~^1.336^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17076~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~851~^0.266^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17076~^~855~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17077~^~312~^0.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~315~^0.021^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~405~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~406~^7.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~410~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~501~^0.274^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~502~^1.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~503~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~504~^1.822^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~505~^2.069^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~506~^0.601^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~507~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~508~^0.954^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~509~^0.787^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~510~^1.264^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~511~^1.392^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~512~^0.742^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~513~^1.409^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~514~^2.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~515~^3.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~516~^1.144^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~517~^0.983^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~518~^0.871^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~606~^11.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~610~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~612~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~613~^5.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~614~^4.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~617~^8.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~618~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~619~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~620~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~626~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~628~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17077~^~645~^9.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17077~^~646~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17078~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~404~^0.119^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~405~^0.154^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~406~^5.397^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~410~^0.525^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~415~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~502~^0.953^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~503~^0.895^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~504~^1.543^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~505~^1.745^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~506~^0.652^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~508~^0.787^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~509~^0.692^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~510~^1.018^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~511~^1.345^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~512~^0.423^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~513~^0.993^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~515~^2.792^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~516~^0.854^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~517~^0.641^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~605~^0.249^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~606~^2.764^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~611~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~612~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~613~^1.172^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~614~^1.238^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~617~^1.930^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~618~^0.217^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~619~^0.114^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~620~^0.026^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~626~^0.070^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17078~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~629~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~645~^2.009^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~646~^0.416^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~653~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~663~^0.240^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~670~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~672~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~673~^0.061^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~674~^1.690^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~675~^0.127^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17078~^~693~^0.249^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17078~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~851~^0.114^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17078~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17078~^~855~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17079~^~312~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~404~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~405~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~406~^7.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~410~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~501~^0.343^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~502~^1.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~503~^1.414^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~504~^2.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~505~^2.588^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~506~^0.752^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~507~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~508~^1.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~509~^0.985^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~510~^1.581^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~511~^1.741^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~512~^0.928^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~513~^1.763^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~514~^2.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~515~^4.253^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~516~^1.431^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~517~^1.229^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~518~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~606~^3.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~610~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~612~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~613~^1.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~614~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~617~^3.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~618~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~619~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~620~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~626~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~645~^3.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17079~^~646~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17080~^~312~^0.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~404~^0.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~405~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~406~^5.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~410~^0.408^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~415~^0.159^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~501~^0.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~502~^0.864^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~503~^0.811^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~504~^1.399^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~505~^1.582^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~506~^0.591^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~507~^0.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~508~^0.714^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~509~^0.628^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~510~^0.923^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~511~^1.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~512~^0.384^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~513~^0.901^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~515~^2.531^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~516~^0.775^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~517~^0.581^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~518~^0.618^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~605~^0.890^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~606~^7.229^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~610~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~611~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~612~^0.345^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~613~^2.785^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~614~^3.696^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~617~^4.743^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~618~^0.459^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~619~^0.194^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~624~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~626~^0.149^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~645~^4.904^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~646~^0.719^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~653~^0.311^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~662~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~663~^0.861^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~670~^0.271^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~673~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~674~^3.882^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~675~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~693~^0.883^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17080~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~851~^0.194^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17080~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17081~^~312~^0.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~404~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~405~^0.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~406~^6.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~410~^0.366^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~415~^0.156^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~501~^0.244^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~502~^1.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~503~^0.987^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~504~^1.703^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~505~^1.926^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~506~^0.720^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~507~^0.289^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~508~^0.869^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~509~^0.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~510~^1.123^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~511~^1.485^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~512~^0.467^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~513~^1.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~515~^3.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~516~^0.943^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~517~^0.707^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~518~^0.752^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~605~^0.907^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~606~^7.066^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~610~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~612~^0.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~613~^2.723^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~614~^3.593^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~617~^4.614^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~618~^0.474^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~619~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/1994~ -~17081~^~624~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~626~^0.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~629~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/1994~ -~17081~^~631~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~645~^4.787^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~646~^0.734^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~653~^0.293^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~662~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~663~^0.878^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~670~^0.266^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~673~^0.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~674~^3.736^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~675~^0.203^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~693~^0.902^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~695~^0.005^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17081~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~851~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17081~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17082~^~312~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~404~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~405~^0.191^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~406~^5.749^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~410~^0.454^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~415~^0.181^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~502~^0.985^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~503~^0.924^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~504~^1.595^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~505~^1.803^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~506~^0.674^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~508~^0.813^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~509~^0.715^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~510~^1.052^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~511~^1.390^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~512~^0.437^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~513~^1.027^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~515~^2.885^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~516~^0.883^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~517~^0.662^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~518~^0.704^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~605~^0.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~606~^2.782^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/1989~ -~17082~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/1989~ -~17082~^~612~^0.142^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~613~^1.183^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~614~^1.312^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~617~^1.961^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~618~^0.245^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~619~^0.113^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~626~^0.070^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17082~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17082~^~629~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~645~^2.036^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~646~^0.426^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~653~^0.111^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~663~^0.302^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~670~^0.127^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~673~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~674~^1.659^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~675~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17082~^~693~^0.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17082~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~851~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17082~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17082~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~405~^0.202^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~406~^6.705^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~410~^0.394^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~415~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~501~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~502~^1.165^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~503~^1.093^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~504~^1.886^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~505~^2.133^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~506~^0.797^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~507~^0.320^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~508~^0.962^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~509~^0.846^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~510~^1.244^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~511~^1.644^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~512~^0.517^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~513~^1.214^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~515~^3.412^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~516~^1.044^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~517~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~518~^0.833^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~605~^0.422^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~606~^3.664^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17083~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/1994~ -~17083~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/1994~ -~17083~^~610~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~611~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~612~^0.223^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~613~^1.580^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~614~^1.672^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~617~^2.495^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~618~^0.309^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~619~^0.133^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/1994~ -~17083~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17083~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17083~^~629~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/1994~ -~17083~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~645~^2.601^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~646~^0.503^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~653~^0.145^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~662~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~663~^0.407^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~670~^0.158^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~673~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~674~^2.088^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~675~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17083~^~693~^0.422^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17083~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~851~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17083~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17083~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17084~^~312~^0.076^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~404~^0.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~405~^0.134^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~406~^2.916^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~410~^0.250^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~415~^0.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~502~^0.771^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~503~^0.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~504~^1.248^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~505~^1.411^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~506~^0.527^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~507~^0.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~508~^0.636^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~509~^0.560^0^^~1~^~PAK~^^^^^^^^^^~04/01/1989~ -~17084~^~510~^0.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~511~^1.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~512~^0.342^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~513~^0.803^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~515~^2.257^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~516~^0.691^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~517~^0.518^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~518~^0.551^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~605~^1.174^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~606~^9.855^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~610~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~612~^0.514^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~613~^3.797^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~614~^4.983^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~617~^6.416^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~618~^0.623^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~619~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~620~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~621~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~624~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~626~^0.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~629~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~645~^6.637^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~646~^0.968^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~653~^0.432^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~662~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~663~^1.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~670~^0.357^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~673~^0.174^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~674~^5.284^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~675~^0.252^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~693~^1.161^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17084~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~851~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17084~^~855~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17085~^~312~^0.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~315~^0.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~405~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~406~^6.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~410~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~415~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~501~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~502~^1.207^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~503~^1.361^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~504~^2.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~505~^2.491^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~506~^0.724^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~507~^0.337^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~508~^1.148^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~509~^0.948^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~510~^1.522^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~511~^1.676^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~512~^0.894^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~513~^1.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~514~^2.483^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~515~^4.094^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~516~^1.378^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~517~^1.183^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~518~^1.049^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~606~^12.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~610~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~612~^1.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~613~^5.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~614~^4.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~617~^9.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~618~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~619~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~620~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~626~^0.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~628~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~645~^10.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17085~^~646~^1.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17086~^~312~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~404~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~405~^0.164^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~406~^3.463^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~410~^0.279^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~501~^0.218^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~502~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~503~^0.883^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~504~^1.523^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~505~^1.722^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~506~^0.643^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~507~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~508~^0.777^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~509~^0.683^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~510~^1.004^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~511~^1.328^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~512~^0.418^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~513~^0.980^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~515~^2.755^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~516~^0.843^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~517~^0.632^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~518~^0.672^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~605~^0.296^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~606~^3.371^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~610~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~611~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~612~^0.241^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~613~^1.513^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~614~^1.422^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~617~^2.479^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~618~^0.313^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~619~^0.140^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~620~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~621~^0.046^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~626~^0.095^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17086~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/1989~ -~17086~^~629~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~645~^2.584^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~646~^0.553^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~653~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~662~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~663~^0.283^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~670~^0.145^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~673~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~674~^2.196^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~675~^0.168^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17086~^~693~^0.296^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17086~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~851~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17086~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17086~^~855~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17087~^~312~^0.116^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~405~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~406~^5.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~410~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~415~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~501~^0.398^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~502~^1.458^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~503~^1.643^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~504~^2.649^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~505~^3.007^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~506~^0.874^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~507~^0.406^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~508~^1.386^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~509~^1.145^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~510~^1.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~511~^2.023^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~512~^1.079^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~513~^2.048^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~514~^2.998^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~515~^4.942^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~516~^1.663^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~517~^1.429^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~518~^1.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~606~^6.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~610~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~611~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~612~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~613~^3.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~614~^2.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~617~^5.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~618~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~619~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~626~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~645~^6.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17087~^~646~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~312~^0.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~406~^7.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~410~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~415~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~501~^0.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~502~^0.845^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~503~^0.953^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~504~^1.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~505~^1.594^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~506~^0.452^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~507~^0.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~508~^0.781^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~509~^0.617^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~510~^1.069^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~511~^1.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~512~^0.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~513~^1.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~514~^1.669^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~515~^3.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~516~^0.994^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~517~^0.808^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~518~^0.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~606~^2.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~612~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~613~^1.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~614~^0.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~617~^2.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~618~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~626~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1996~ -~17088~^~645~^2.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17088~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~312~^0.114^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~315~^0.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~405~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~406~^7.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~410~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~415~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~501~^0.305^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~502~^1.315^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~503~^1.482^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~504~^2.395^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~505~^2.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~506~^0.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~507~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~508~^1.215^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~509~^0.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~510~^1.663^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~511~^1.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~512~^1.092^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~513~^1.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~514~^2.596^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~515~^4.761^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~516~^1.547^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~517~^1.257^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~518~^1.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~606~^4.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~612~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~613~^2.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~614~^1.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~617~^3.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~618~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~619~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~626~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17089~^~645~^4.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17089~^~646~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~312~^0.113^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~404~^0.080^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~405~^0.280^12^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~406~^7.830^12^0.727^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~410~^1.370^12^0.121^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~415~^0.430^13^0.061^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~501~^0.204^23^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~502~^0.882^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~503~^0.995^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~504~^1.608^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~505~^1.664^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~506~^0.471^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~507~^0.228^30^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~508~^0.815^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~509~^0.644^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~510~^1.116^45^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~511~^1.188^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~512~^0.733^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~513~^1.201^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~514~^1.743^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~515~^3.195^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~516~^1.038^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~517~^0.843^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~518~^0.757^38^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~606~^0.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~612~^0.040^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~613~^0.490^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~614~^0.300^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~617~^0.820^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~618~^0.210^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~620~^0.080^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~626~^0.090^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~645~^0.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17090~^~646~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~312~^0.120^12^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~404~^0.060^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~405~^0.340^12^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~406~^8.420^12^0.708^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~410~^1.330^12^0.224^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~415~^0.330^12^0.046^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~501~^0.323^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~502~^1.393^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~503~^1.571^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~504~^2.539^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~505~^2.628^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~506~^0.744^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~507~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~508~^1.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~509~^1.017^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~510~^1.763^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~511~^1.876^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~512~^1.158^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~513~^1.897^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~514~^2.752^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~515~^5.045^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~516~^1.639^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~517~^1.332^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~518~^1.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~606~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~612~^0.120^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~613~^1.070^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~614~^0.630^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~617~^2.110^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~618~^0.450^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~619~^0.030^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~620~^0.110^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~626~^0.210^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17091~^~645~^2.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17091~^~646~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~312~^0.039^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~315~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~404~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~405~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~406~^2.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~410~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~415~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~501~^0.061^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~502~^0.263^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~503~^0.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~504~^0.479^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~505~^0.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~506~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~507~^0.068^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~508~^0.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~509~^0.192^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~510~^0.333^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~511~^0.354^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~512~^0.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~513~^0.358^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~514~^0.519^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~515~^0.952^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~516~^0.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~517~^0.251^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~518~^0.226^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~606~^32.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~610~^0.090^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~611~^0.260^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~612~^3.700^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~613~^16.880^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~614~^10.640^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~617~^24.050^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~618~^2.700^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~619~^0.580^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~626~^3.460^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~645~^28.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17092~^~646~^3.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~312~^0.044^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~315~^0.012^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~404~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~405~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~406~^2.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~410~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~415~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~501~^0.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~502~^0.412^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~503~^0.464^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~504~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~505~^0.776^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~506~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~507~^0.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~508~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~509~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~510~^0.521^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~511~^0.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~512~^0.342^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~513~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~514~^0.813^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~515~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~516~^0.484^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~517~^0.393^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~518~^0.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~606~^32.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~610~^0.090^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~611~^0.260^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~612~^3.640^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~613~^16.610^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~614~^10.460^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~617~^23.660^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~618~^2.660^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~619~^0.570^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~626~^3.400^67^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~645~^27.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17093~^~646~^3.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~312~^0.108^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~406~^9.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~410~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~415~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~501~^0.212^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~502~^0.916^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~503~^1.033^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~504~^1.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~505~^1.729^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~506~^0.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~507~^0.237^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~508~^0.847^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~509~^0.669^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~510~^1.159^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~511~^1.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~512~^0.761^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~513~^1.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~514~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~515~^3.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~516~^1.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~517~^0.876^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~518~^0.786^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~606~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~612~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~613~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~614~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~617~^0.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~618~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~619~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~626~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17094~^~645~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17094~^~646~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~312~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~315~^0.039^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~406~^10.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~410~^1.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~415~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~501~^0.366^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~502~^1.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~503~^1.781^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~504~^2.878^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~505~^2.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~506~^0.844^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~507~^0.408^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~508~^1.459^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~509~^1.153^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~510~^1.999^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~511~^2.127^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~512~^1.313^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~513~^2.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~514~^3.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~515~^5.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~516~^1.858^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~517~^1.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~518~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~606~^2.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~612~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~613~^1.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~614~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~617~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~618~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17095~^~645~^2.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17095~^~646~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~312~^0.073^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~315~^0.135^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~404~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~406~^10.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~410~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~415~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~501~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~502~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~503~^1.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~504~^2.161^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~505~^2.144^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~506~^0.631^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~507~^0.328^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~508~^1.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~509~^0.864^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~510~^1.512^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~511~^1.578^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~512~^0.956^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~513~^1.582^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~514~^2.307^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~515~^4.547^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~516~^1.368^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~517~^1.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~518~^1.075^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~606~^3.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~612~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~613~^1.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~614~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~617~^3.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~618~^1.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~619~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17096~^~626~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~645~^3.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~646~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17096~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17097~^~312~^0.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~315~^0.031^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~406~^12.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~410~^1.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~415~^0.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~501~^0.321^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~502~^1.387^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~503~^1.564^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~504~^2.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~505~^2.616^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~506~^0.741^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~507~^0.358^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~508~^1.281^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~509~^1.012^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~510~^1.755^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~511~^1.867^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~512~^1.152^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~513~^1.888^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~514~^2.739^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~515~^5.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~516~^1.632^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~517~^1.326^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~518~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~606~^3.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~612~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~613~^1.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~614~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~617~^2.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~618~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~626~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17097~^~645~^3.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17097~^~646~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~312~^0.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~405~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~406~^9.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~410~^0.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~415~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~501~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~502~^1.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~503~^1.364^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~504~^2.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~505~^2.282^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~506~^0.646^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~507~^0.313^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~508~^1.118^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~509~^0.883^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~510~^1.531^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~511~^1.629^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~512~^1.005^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~513~^1.647^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~514~^2.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~515~^4.381^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~516~^1.423^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~517~^1.156^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~518~^1.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~606~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~612~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~613~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~614~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~617~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~618~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~626~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17098~^~645~^1.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17098~^~646~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~312~^0.110^12^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~404~^0.080^12^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~405~^0.280^12^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~406~^9.560^12^0.887^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~410~^1.090^11^0.075^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~415~^0.470^14^0.075^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~501~^0.215^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~502~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~503~^1.048^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~504~^1.694^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~505~^1.754^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~506~^0.497^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~507~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~508~^0.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~509~^0.679^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~510~^1.176^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~511~^1.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~512~^0.773^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~513~^1.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~514~^1.836^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~515~^3.366^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~516~^1.094^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~517~^0.889^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~518~^0.798^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~606~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~612~^0.030^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~613~^0.300^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~614~^0.180^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~617~^0.500^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~618~^0.130^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~620~^0.050^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~626~^0.060^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~645~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17099~^~646~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~312~^0.142^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~315~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~405~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~406~^10.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~410~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~415~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~501~^0.372^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~502~^1.604^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~503~^1.808^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~504~^2.922^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~505~^3.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~506~^0.857^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~507~^0.414^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~508~^1.481^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~509~^1.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~510~^2.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~511~^2.159^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~512~^1.332^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~513~^2.183^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~514~^3.167^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~515~^5.806^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~516~^1.886^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~517~^1.533^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~518~^1.376^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~606~^1.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~612~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~613~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~614~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~617~^1.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~618~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~626~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~645~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17100~^~646~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~312~^0.074^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~315~^0.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~404~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~405~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~406~^10.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~410~^1.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~415~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~501~^0.295^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~502~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~503~^1.394^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~504~^2.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~505~^2.235^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~506~^0.657^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~507~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~508~^1.174^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~509~^0.899^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~510~^1.573^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~511~^1.644^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~512~^0.996^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~513~^1.648^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~514~^2.403^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~515~^4.724^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~516~^1.425^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~517~^1.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~518~^1.116^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~606~^1.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~609~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~612~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~613~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~614~^0.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~617~^2.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~618~^1.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~619~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17101~^~626~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~630~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~645~^2.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~646~^1.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17101~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~ -~17102~^~312~^0.063^12^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~404~^0.070^11^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~405~^0.370^12^0.022^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~406~^12.640^12^1.435^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~410~^1.220^12^0.182^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~415~^0.510^12^0.061^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~501~^0.336^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~502~^1.449^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~503~^1.634^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~504~^2.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~505~^2.734^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~506~^0.774^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~507~^0.374^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~508~^1.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~509~^1.058^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~510~^1.834^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~511~^1.951^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~512~^1.204^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~513~^1.973^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~514~^2.862^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~515~^5.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~516~^1.705^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~517~^1.385^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~518~^1.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~606~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~612~^0.090^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~613~^0.750^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~614~^0.440^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~617~^1.480^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~618~^0.320^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~619~^0.020^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~620~^0.080^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~626~^0.150^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17102~^~645~^1.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17102~^~646~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~312~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~315~^0.031^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~405~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~406~^10.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~410~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~415~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~501~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~502~^1.226^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~503~^1.382^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~504~^2.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~505~^2.313^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~506~^0.655^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~507~^0.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~508~^1.133^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~509~^0.895^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~510~^1.552^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~511~^1.651^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~512~^1.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~513~^1.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~514~^2.422^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~515~^4.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~516~^1.443^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~517~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~518~^1.052^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~606~^1.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~607~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~608~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~609~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~612~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~613~^0.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~614~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~617~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~618~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~619~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~626~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~627~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~628~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~630~^0.000^0^^~1~^^^^^^^^^^^ -~17103~^~645~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17103~^~646~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17104~^~312~^0.082^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~404~^0.078^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~405~^0.280^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~406~^6.617^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~410~^0.629^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~415~^0.604^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~501~^0.203^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~502~^0.877^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~503~^0.988^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~504~^1.597^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~505~^1.654^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~506~^0.468^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~507~^0.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~508~^0.810^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~509~^0.640^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~510~^1.109^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~511~^1.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~512~^0.729^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~513~^1.194^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~514~^1.731^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~515~^3.174^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~516~^1.031^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~517~^0.838^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~518~^0.752^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~521~^0.102^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~605~^0.413^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~606~^3.607^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~612~^0.253^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~613~^2.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~614~^1.141^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~617~^4.285^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~618~^0.358^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~619~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~620~^0.032^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~625~^0.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~626~^0.348^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~628~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~629~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~645~^4.808^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~646~^0.404^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17104~^~653~^0.106^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~654~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17104~^~687~^0.086^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17105~^~312~^0.091^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~315~^0.034^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~404~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~405~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~406~^9.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~410~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~415~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~501~^0.306^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~502~^1.319^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~503~^1.487^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~504~^2.403^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~505~^2.487^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~506~^0.704^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~507~^0.341^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~508~^1.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~509~^0.962^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~510~^1.668^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~511~^1.775^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~512~^1.096^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~513~^1.795^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~514~^2.604^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~515~^4.775^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~516~^1.551^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~517~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~518~^1.131^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~606~^6.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~611~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~612~^0.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~613~^3.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~614~^2.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~617~^5.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~618~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~619~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~620~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~626~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17105~^~645~^6.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17105~^~646~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~312~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~405~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~406~^8.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~410~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~415~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~501~^0.251^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~502~^1.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~503~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~504~^1.974^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~505~^2.044^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~506~^0.579^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~507~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~508~^1.001^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~509~^0.791^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~510~^1.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~511~^1.459^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~512~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~513~^1.475^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~514~^2.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~515~^3.923^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~516~^1.275^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~517~^1.035^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~518~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~606~^5.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~611~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~612~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~613~^2.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~614~^1.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~617~^4.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~618~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~619~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~626~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17106~^~645~^4.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17106~^~646~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17107~^~312~^0.088^6^^~1~^~A~^^^1^0.080^0.099^^^^~2~^~04/01/2014~ -~17107~^~315~^0.014^6^^~1~^~A~^^^1^0.010^0.016^^^^~2~^~04/01/2014~ -~17107~^~404~^0.086^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~405~^0.310^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~406~^7.250^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~410~^0.690^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~415~^0.683^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~502~^0.955^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~503~^1.076^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~504~^1.739^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~505~^1.801^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~506~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~507~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~508~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~509~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~510~^1.208^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~511~^1.285^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~512~^0.793^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~513~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~514~^1.885^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~515~^3.457^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~516~^1.123^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~517~^0.913^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~518~^0.819^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~521~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17107~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~606~^1.121^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17107~^~610~^0.002^6^^~1~^~A~^^^1^0.001^0.003^^^^~1, 2~^~04/01/2014~ -~17107~^~611~^0.002^6^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2~^~04/01/2014~ -~17107~^~612~^0.064^6^^~1~^~A~^^^1^0.055^0.083^^^^~2~^~04/01/2014~ -~17107~^~613~^0.621^6^^~1~^~A~^^^1^0.545^0.707^^^^~2~^~04/01/2014~ -~17107~^~614~^0.391^6^^~1~^~A~^^^1^0.358^0.426^^^^~2~^~04/01/2014~ -~17107~^~615~^0.001^6^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2~^~04/01/2014~ -~17107~^~617~^1.227^6^^~1~^~AS~^^^1^1.061^1.366^^^^~2~^~04/01/2014~ -~17107~^~618~^0.156^6^^~1~^~AS~^^^1^0.120^0.206^^^^~2~^~04/01/2014~ -~17107~^~619~^0.004^6^^~1~^~A~^^^1^0.003^0.007^^^^~1, 2~^~04/01/2014~ -~17107~^~620~^0.030^6^^~1~^~A~^^^1^0.021^0.035^^^^~2~^~04/01/2014~ -~17107~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17107~^~625~^0.014^6^^~1~^~A~^^^1^0.011^0.019^^^^~2~^~04/01/2014~ -~17107~^~626~^0.086^6^^~1~^~AS~^^^1^0.075^0.108^^^^~2~^~04/01/2014~ -~17107~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17107~^~628~^0.001^6^^~1~^~A~^^^1^0.000^0.005^^^^~1, 2~^~04/01/2014~ -~17107~^~629~^0.001^6^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~04/01/2014~ -~17107~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17107~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17107~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~646~^0.193^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17107~^~653~^0.033^6^^~1~^~A~^^^1^0.029^0.039^^^^~2~^~04/01/2014~ -~17107~^~654~^0.006^6^^~1~^~A~^^^1^0.004^0.007^^^^~2~^~04/01/2014~ -~17107~^~663~^0.113^6^^~1~^~A~^^^1^0.102^0.147^^^^~2~^~04/01/2014~ -~17107~^~670~^0.009^6^^~1~^~A~^^^1^0.008^0.011^^^^~2~^~04/01/2014~ -~17107~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17107~^~673~^0.086^6^^~1~^~A~^^^1^0.075^0.108^^^^~2~^~04/01/2014~ -~17107~^~674~^1.113^6^^~1~^~A~^^^1^0.957^1.264^^^^~2~^~04/01/2014~ -~17107~^~675~^0.147^6^^~1~^~A~^^^1^0.111^0.195^^^^~2~^~04/01/2014~ -~17107~^~687~^0.026^6^^~1~^~A~^^^1^0.022^0.029^^^^~2~^~04/01/2014~ -~17107~^~693~^0.113^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17108~^~312~^0.099^12^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~404~^0.050^11^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~405~^0.340^12^0.020^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~406~^10.050^12^1.173^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~410~^0.850^12^0.076^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~415~^0.280^12^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~501~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~502~^1.466^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~503~^1.653^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~504~^2.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~505~^2.766^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~506~^0.783^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~507~^0.379^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~508~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~509~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~510~^1.855^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~511~^1.974^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~512~^1.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~513~^1.996^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~514~^2.896^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~515~^5.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~516~^1.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~517~^1.401^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~518~^1.258^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~606~^2.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~611~^0.020^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~612~^0.170^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~613~^1.490^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~614~^0.870^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~617~^2.940^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~618~^0.630^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~619~^0.040^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~620~^0.150^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~626~^0.290^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17108~^~645~^3.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17108~^~646~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~312~^0.117^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~405~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~406~^9.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~410~^1.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~415~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~501~^0.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~502~^1.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~503~^1.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~504~^2.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~505~^2.169^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~506~^0.614^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~507~^0.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~508~^1.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~509~^0.839^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~510~^1.455^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~511~^1.548^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~512~^0.955^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~513~^1.565^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~514~^2.271^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~515~^4.163^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~516~^1.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~517~^1.099^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~518~^0.987^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~606~^2.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~613~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~614~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~617~^2.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~618~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17109~^~645~^2.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17109~^~646~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~312~^0.102^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~315~^0.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~405~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~406~^6.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~410~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~415~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~501~^0.191^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~502~^0.824^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~503~^0.929^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~504~^1.501^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~505~^1.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~506~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~507~^0.213^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~508~^0.761^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~509~^0.601^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~510~^1.042^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~511~^1.109^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~512~^0.684^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~513~^1.121^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~514~^1.627^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~515~^2.983^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~516~^0.969^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~517~^0.787^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~518~^0.707^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~606~^3.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~612~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~613~^1.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~614~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~617~^2.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~618~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~626~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17110~^~645~^3.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17110~^~646~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~312~^0.132^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~405~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~406~^7.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~410~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~415~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~501~^0.328^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~502~^1.417^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~503~^1.597^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~504~^2.581^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~505~^2.673^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~506~^0.757^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~507~^0.366^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~508~^1.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~509~^1.034^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~510~^1.793^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~511~^1.908^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~512~^1.177^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~513~^1.929^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~514~^2.798^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~515~^5.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~516~^1.667^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~517~^1.354^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~518~^1.216^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~606~^4.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~612~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~613~^2.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~614~^1.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~617~^4.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~618~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~619~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~620~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~626~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17111~^~645~^4.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17111~^~646~^0.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~312~^0.099^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~406~^6.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~410~^1.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~415~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~501~^0.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~502~^1.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~503~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~504~^1.907^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~505~^1.974^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~506~^0.559^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~507~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~508~^0.967^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~509~^0.764^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~510~^1.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~511~^1.409^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~512~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~513~^1.425^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~514~^2.067^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~515~^3.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~516~^1.231^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~517~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~518~^0.898^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~606~^5.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~611~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~612~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~613~^2.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~614~^1.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~617~^4.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~618~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~619~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~626~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~645~^5.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17112~^~646~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~312~^0.108^12^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~404~^0.070^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~405~^0.240^12^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~406~^7.050^12^0.660^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~410~^1.190^12^0.129^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~415~^0.440^12^0.072^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~501~^0.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~502~^0.873^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~503~^0.984^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~504~^1.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~505~^1.646^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~506~^0.466^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~507~^0.225^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~508~^0.806^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~509~^0.637^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~510~^1.104^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~511~^1.175^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~512~^0.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~513~^1.188^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~514~^1.723^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~515~^3.159^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~516~^1.026^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~517~^0.834^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~518~^0.749^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~606~^1.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~612~^0.060^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~613~^0.670^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~614~^0.410^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~617~^1.110^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~618~^0.290^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~620~^0.100^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~626~^0.130^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~645~^1.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17113~^~646~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~312~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~315~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~405~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~406~^7.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~410~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~415~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~501~^0.349^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~502~^1.504^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~503~^1.696^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~504~^2.741^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~505~^2.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~506~^0.804^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~507~^0.389^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~508~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~509~^1.098^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~510~^1.903^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~511~^2.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~512~^1.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~513~^2.048^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~514~^2.971^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~515~^5.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~516~^1.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~517~^1.438^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~518~^1.291^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~606~^2.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~612~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~613~^1.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~614~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~617~^2.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~618~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~620~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17114~^~645~^2.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17114~^~646~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~312~^0.106^12^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~404~^0.060^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~405~^0.290^12^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~406~^7.500^12^0.607^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~410~^1.380^12^0.235^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~415~^0.270^13^0.053^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~501~^0.261^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~502~^1.125^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~503~^1.268^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~504~^2.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~505~^2.122^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~506~^0.601^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~507~^0.291^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~508~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~509~^0.821^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~510~^1.424^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~511~^1.515^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~512~^0.935^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~513~^1.532^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~514~^2.222^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~515~^4.074^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~516~^1.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~517~^1.075^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~518~^0.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~606~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~612~^0.140^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~613~^1.210^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~614~^0.710^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~617~^2.390^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~618~^0.510^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~619~^0.030^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~620~^0.120^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~626~^0.240^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~645~^2.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17115~^~646~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~312~^0.119^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~405~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~406~^6.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~410~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~415~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~501~^0.195^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~502~^0.842^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~503~^0.949^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~504~^1.534^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~505~^1.588^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~506~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~507~^0.217^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~508~^0.778^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~509~^0.614^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~510~^1.065^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~511~^1.133^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~512~^0.699^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~513~^1.146^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~514~^1.662^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~515~^3.048^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~516~^0.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~517~^0.804^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~518~^0.722^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~606~^2.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~612~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~613~^1.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~614~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~617~^1.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~618~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~626~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17116~^~645~^1.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17116~^~646~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~312~^0.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~315~^0.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~405~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~406~^6.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~410~^1.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~415~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~501~^0.325^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~502~^1.401^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~503~^1.579^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~504~^2.552^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~505~^2.642^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~506~^0.748^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~507~^0.362^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~508~^1.294^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~509~^1.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~510~^1.772^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~511~^1.886^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~512~^1.164^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~513~^1.907^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~514~^2.766^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~515~^5.071^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~516~^1.648^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~517~^1.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~518~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~606~^3.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~612~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~613~^2.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~614~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~617~^3.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~618~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~626~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17117~^~645~^3.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17117~^~646~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~312~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~405~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~406~^6.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~410~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~415~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~501~^0.256^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~502~^1.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~503~^1.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~504~^2.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~505~^2.087^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~506~^0.591^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~507~^0.286^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~508~^1.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~509~^0.807^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~510~^1.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~511~^1.489^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~512~^0.919^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~513~^1.506^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~514~^2.184^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~515~^4.005^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~516~^1.301^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~517~^1.057^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~518~^0.949^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~606~^3.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~612~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~613~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~614~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~617~^2.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~618~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~626~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~645~^3.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17118~^~646~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~312~^0.121^18^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~404~^0.090^18^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~405~^0.290^18^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~406~^6.150^18^0.631^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~410~^1.450^18^0.149^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~415~^0.400^19^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~501~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~502~^0.864^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~503~^0.974^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~504~^1.575^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~505~^1.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~506~^0.462^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~507~^0.223^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~508~^0.799^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~509~^0.631^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~510~^1.094^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~511~^1.164^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~512~^0.718^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~513~^1.177^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~514~^1.707^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~515~^3.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~516~^1.017^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~517~^0.826^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~518~^0.742^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~606~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~612~^0.050^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~613~^0.510^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~614~^0.320^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~617~^0.860^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~618~^0.220^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~620~^0.080^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~626~^0.100^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~645~^0.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17119~^~646~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~312~^0.159^12^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~404~^0.060^12^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~405~^0.350^12^0.020^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~406~^6.680^12^0.922^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~410~^1.610^12^0.356^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~415~^0.260^12^0.041^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~501~^0.341^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~502~^1.471^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~503~^1.658^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~504~^2.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~505~^2.775^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~506~^0.786^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~507~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~508~^1.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~509~^1.074^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~510~^1.861^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~511~^1.981^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~512~^1.222^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~513~^2.003^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~514~^2.905^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~515~^5.327^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~516~^1.731^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~517~^1.406^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~518~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~606~^1.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~612~^0.120^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~613~^0.990^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~614~^0.580^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~617~^1.960^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~618~^0.420^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~619~^0.030^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~620~^0.100^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~626~^0.200^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~645~^2.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17120~^~646~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~312~^0.142^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~405~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~406~^6.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~410~^1.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~415~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~501~^0.261^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~502~^1.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~503~^1.271^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~504~^2.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~505~^2.127^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~506~^0.602^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~507~^0.291^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~508~^1.042^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~509~^0.823^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~510~^1.427^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~511~^1.518^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~512~^0.937^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~513~^1.535^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~514~^2.227^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~515~^4.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~516~^1.327^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~517~^1.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~518~^0.968^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~606~^2.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~613~^1.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~614~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~617~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~618~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~645~^2.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17121~^~646~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~312~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~315~^0.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~406~^7.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~410~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~415~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~501~^0.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~502~^0.845^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~503~^0.952^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~504~^1.539^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~505~^1.594^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~506~^0.451^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~507~^0.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~508~^0.781^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~509~^0.617^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~510~^1.069^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~511~^1.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~512~^0.702^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~513~^1.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~514~^1.669^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~515~^3.059^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~516~^0.994^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~517~^0.807^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~518~^0.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~606~^2.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~612~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~613~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~614~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~617~^1.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~618~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~620~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~626~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17122~^~645~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17122~^~646~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~312~^0.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~315~^0.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~405~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~406~^10.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~410~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~415~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~501~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~502~^1.469^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~503~^1.656^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~504~^2.676^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~505~^2.771^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~506~^0.785^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~507~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~508~^1.357^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~509~^1.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~510~^1.858^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~511~^1.978^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~512~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~513~^2.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~514~^2.901^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~515~^5.319^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~516~^1.728^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~517~^1.404^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~518~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~606~^3.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~612~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~613~^2.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~614~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~617~^3.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~618~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~619~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~626~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~645~^3.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17123~^~646~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~312~^0.141^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~405~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~406~^8.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~410~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~415~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~501~^0.258^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~502~^1.112^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~503~^1.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~504~^2.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~505~^2.098^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~506~^0.594^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~507~^0.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~508~^1.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~509~^0.812^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~510~^1.407^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~511~^1.498^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~512~^0.924^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~513~^1.515^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~514~^2.197^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~515~^4.028^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~516~^1.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~517~^1.063^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~518~^0.954^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~606~^3.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~612~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~613~^1.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~614~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~617~^2.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~618~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~626~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~645~^3.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17124~^~646~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~312~^0.124^12^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~404~^0.080^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~405~^0.280^12^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~406~^7.910^12^0.822^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~410~^1.300^11^0.067^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~415~^0.460^12^0.074^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~501~^0.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~502~^0.876^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~503~^0.987^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~504~^1.595^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~505~^1.652^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~506~^0.468^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~507~^0.226^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~508~^0.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~509~^0.639^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~510~^1.108^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~511~^1.179^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~512~^0.727^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~513~^1.192^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~514~^1.729^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~515~^3.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~516~^1.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~517~^0.837^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~518~^0.751^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~606~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~612~^0.030^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~613~^0.370^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~614~^0.230^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~617~^0.620^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~618~^0.160^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~620~^0.060^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~626~^0.070^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~645~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17125~^~646~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~312~^0.135^12^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~404~^0.060^11^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~405~^0.330^11^0.024^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~406~^10.710^10^1.359^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~410~^1.390^10^0.108^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~415~^0.300^11^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~501~^0.362^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~502~^1.561^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~503~^1.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~504~^2.844^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~505~^2.944^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~506~^0.834^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~507~^0.403^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~508~^1.442^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~509~^1.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~510~^1.975^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~511~^2.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~512~^1.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~513~^2.125^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~514~^3.082^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~515~^5.651^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~516~^1.836^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~517~^1.492^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~518~^1.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~606~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~612~^0.100^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~613~^0.870^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~614~^0.510^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~617~^1.710^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~618~^0.370^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~619~^0.020^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~620~^0.090^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~626~^0.170^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~645~^1.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17126~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~312~^0.146^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~405~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~406~^8.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~410~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~415~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~501~^0.265^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~502~^1.142^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~503~^1.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~504~^2.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~505~^2.153^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~506~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~507~^0.295^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~508~^1.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~509~^0.833^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~510~^1.444^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~511~^1.537^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~512~^0.949^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~513~^1.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~514~^2.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~515~^4.133^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~516~^1.343^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~517~^1.091^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~518~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~606~^2.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~613~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~614~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~617~^1.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~618~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~626~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~645~^2.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17127~^~646~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17128~^~312~^0.080^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~404~^0.101^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~405~^0.397^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~406~^4.491^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~410~^0.971^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~415~^0.437^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~501~^0.189^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~502~^0.818^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~503~^0.922^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~504~^1.490^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~505~^1.542^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~506~^0.437^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~507~^0.211^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~508~^0.755^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~509~^0.597^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~510~^1.035^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~511~^1.101^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~512~^0.680^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~513~^1.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~514~^1.615^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~515~^2.960^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~516~^0.962^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~517~^0.782^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~518~^0.701^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~521~^0.095^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~605~^0.301^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~606~^2.701^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~612~^0.185^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~613~^1.567^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~614~^0.852^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~617~^3.243^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~618~^0.274^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~619~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~625~^0.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~626~^0.266^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~628~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~629~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~645~^3.642^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~646~^0.313^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17128~^~653~^0.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~654~^0.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17128~^~687~^0.067^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17129~^~312~^0.164^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~315~^0.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~406~^5.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~410~^1.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~415~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~501~^0.316^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~502~^1.366^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~503~^1.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~504~^2.488^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~505~^2.576^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~506~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~507~^0.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~508~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~509~^0.997^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~510~^1.728^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~511~^1.839^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~512~^1.135^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~513~^1.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~514~^2.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~515~^4.945^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~516~^1.607^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~517~^1.305^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~518~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~606~^3.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~612~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~613~^1.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~614~^1.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~617~^3.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~618~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~626~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17129~^~645~^3.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17129~^~646~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~312~^0.138^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~406~^5.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~410~^1.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~415~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~501~^0.255^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~502~^1.099^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~503~^1.238^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~504~^2.002^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~505~^2.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~506~^0.587^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~507~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~508~^1.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~509~^0.802^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~510~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~511~^1.479^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~512~^0.913^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~513~^1.496^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~514~^2.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~515~^3.978^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~516~^1.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~517~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~518~^0.943^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~606~^3.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~612~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~613~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~614~^1.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~617~^2.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~618~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~626~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~645~^3.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17130~^~646~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17131~^~312~^0.083^6^^~1~^~A~^^^1^0.077^0.086^^^^~2~^~04/01/2014~ -~17131~^~315~^0.012^6^^~1~^~A~^^^1^0.008^0.016^^^^~2~^~04/01/2014~ -~17131~^~404~^0.109^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~405~^0.430^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~406~^4.610^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~410~^1.050^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~415~^0.466^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~501~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~502~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~503~^0.966^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~504~^1.560^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~505~^1.616^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~506~^0.458^0^^~1~^~A~^^^^^^^^^^~04/01/1989~ -~17131~^~507~^0.221^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~508~^0.791^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~509~^0.625^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~510~^1.084^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~511~^1.153^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~512~^0.712^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~513~^1.166^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~514~^1.691^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~515~^3.101^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~516~^1.007^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~517~^0.819^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~518~^0.735^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~521~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17131~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~606~^1.113^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17131~^~610~^0.002^6^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2~^~04/01/2014~ -~17131~^~611~^0.002^6^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2~^~04/01/2014~ -~17131~^~612~^0.064^6^^~1~^~A~^^^1^0.039^0.080^^^^~2~^~04/01/2014~ -~17131~^~613~^0.618^6^^~1~^~A~^^^1^0.388^0.819^^^^~2~^~04/01/2014~ -~17131~^~614~^0.387^6^^~1~^~A~^^^1^0.255^0.528^^^^~2~^~04/01/2014~ -~17131~^~615~^0.001^6^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~04/01/2014~ -~17131~^~617~^1.233^6^^~1~^~AS~^^^1^0.756^1.645^^^^~2~^~04/01/2014~ -~17131~^~618~^0.138^6^^~1~^~AS~^^^1^0.073^0.218^^^^~2~^~04/01/2014~ -~17131~^~619~^0.004^6^^~1~^~A~^^^1^0.002^0.006^^^^~1, 2~^~04/01/2014~ -~17131~^~620~^0.028^6^^~1~^~A~^^^1^0.010^0.050^^^^~2~^~04/01/2014~ -~17131~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17131~^~625~^0.014^6^^~1~^~A~^^^1^0.008^0.018^^^^~2~^~04/01/2014~ -~17131~^~626~^0.087^6^^~1~^~AS~^^^1^0.054^0.111^^^^~2~^~04/01/2014~ -~17131~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17131~^~628~^0.002^6^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2~^~04/01/2014~ -~17131~^~629~^0.001^6^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2~^~04/01/2014~ -~17131~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17131~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17131~^~645~^1.361^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~646~^0.171^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17131~^~653~^0.033^6^^~1~^~A~^^^1^0.021^0.043^^^^~2~^~04/01/2014~ -~17131~^~654~^0.005^6^^~1~^~A~^^^1^0.002^0.009^^^^~1, 2~^~04/01/2014~ -~17131~^~663~^0.106^6^^~1~^~A~^^^1^0.063^0.152^^^^~2~^~04/01/2014~ -~17131~^~670~^0.008^6^^~1~^~A~^^^1^0.005^0.012^^^^~2~^~04/01/2014~ -~17131~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17131~^~673~^0.087^6^^~1~^~A~^^^1^0.054^0.111^^^^~2~^~04/01/2014~ -~17131~^~674~^1.127^6^^~1~^~A~^^^1^0.682^1.493^^^^~2~^~04/01/2014~ -~17131~^~675~^0.131^6^^~1~^~A~^^^1^0.069^0.207^^^^~2~^~04/01/2014~ -~17131~^~687~^0.025^6^^~1~^~A~^^^1^0.015^0.034^^^^~2~^~04/01/2014~ -~17131~^~693~^0.106^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17132~^~312~^0.171^12^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~404~^0.060^12^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~405~^0.360^12^0.019^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~406~^5.680^12^0.613^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~410~^1.590^12^0.363^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~415~^0.250^12^0.040^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~501~^0.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~502~^1.427^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~503~^1.608^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~504~^2.599^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~505~^2.691^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~506~^0.762^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~507~^0.369^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~508~^1.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~509~^1.041^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~510~^1.805^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~511~^1.921^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~512~^1.185^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~513~^1.942^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~514~^2.817^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~515~^5.166^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~516~^1.678^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~517~^1.363^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~518~^1.224^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~606~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~612~^0.120^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~613~^1.060^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~614~^0.620^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~617~^2.080^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~618~^0.440^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~619~^0.030^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~620~^0.110^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~626~^0.210^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17132~^~645~^2.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17132~^~646~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~312~^0.141^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~405~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~406~^5.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~410~^1.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~415~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~501~^0.259^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~502~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~503~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~504~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~505~^2.112^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~506~^0.598^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~507~^0.289^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~508~^1.035^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~509~^0.817^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~510~^1.417^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~511~^1.508^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~512~^0.931^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~513~^1.525^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~514~^2.212^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~515~^4.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~516~^1.317^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~517~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~518~^0.961^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~606~^2.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~613~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~614~^0.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~617~^2.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~618~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~626~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~645~^2.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17133~^~646~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~312~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~315~^0.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~405~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~406~^8.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~410~^1.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~415~^0.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~501~^0.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~502~^0.833^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~503~^0.939^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~504~^1.517^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~505~^1.571^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~506~^0.445^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~507~^0.215^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~508~^0.769^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~509~^0.608^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~510~^1.054^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~511~^1.121^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~512~^0.692^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~513~^1.134^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~514~^1.645^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~515~^3.016^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~516~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~517~^0.796^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~518~^0.715^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~606~^3.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~612~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~613~^1.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~614~^1.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~617~^2.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~618~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~620~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~626~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17134~^~645~^3.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17134~^~646~^0.510^0^^~1~^^^^^^^^^^^~09/01/1995~ -~17135~^~312~^0.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~315~^0.035^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~406~^6.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~410~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~415~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~501~^0.316^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~502~^1.366^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~503~^1.539^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~504~^2.488^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~505~^2.576^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~506~^0.729^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~507~^0.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~508~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~509~^0.997^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~510~^1.728^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~511~^1.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~512~^1.135^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~513~^1.859^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~514~^2.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~515~^4.944^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~516~^1.606^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~517~^1.305^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~518~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~606~^5.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~611~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~612~^0.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~613~^2.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~614~^1.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~617~^4.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~618~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~619~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~626~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~645~^5.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17135~^~646~^0.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~312~^0.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~405~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~406~^8.870^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~410~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~415~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~501~^0.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~502~^1.098^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~503~^1.238^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~504~^2.001^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~505~^2.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~506~^0.587^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~507~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~508~^1.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~509~^0.802^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~510~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~511~^1.479^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~512~^0.913^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~513~^1.495^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~514~^2.169^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~515~^3.976^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~516~^1.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~517~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~518~^0.942^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~606~^4.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~611~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~612~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~613~^2.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~614~^1.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~617~^3.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~618~^0.520^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~619~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~626~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~17136~^~645~^4.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17136~^~646~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~312~^0.116^12^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~404~^0.080^12^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~405~^0.310^12^0.018^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~406~^8.970^12^0.892^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~410~^1.450^12^0.117^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~415~^0.520^12^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~501~^0.204^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~502~^0.882^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~503~^0.995^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~504~^1.608^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~505~^1.665^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~506~^0.471^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~507~^0.228^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~508~^0.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~509~^0.644^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~510~^1.116^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~511~^1.188^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~512~^0.733^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~513~^1.201^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~514~^1.743^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~515~^3.195^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~516~^1.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~517~^0.843^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~518~^0.757^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~606~^0.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~612~^0.040^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~613~^0.440^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~614~^0.270^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~617~^0.740^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~618~^0.190^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~620~^0.070^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~626~^0.080^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~645~^0.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17137~^~646~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~312~^0.138^11^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~315~^0.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~404~^0.060^11^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~405~^0.380^11^0.025^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~406~^7.050^11^0.737^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~410~^1.080^10^0.169^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~415~^0.380^11^0.069^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~501~^0.344^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~502~^1.483^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~503~^1.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~504~^2.703^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~505~^2.798^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~506~^0.792^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~507~^0.383^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~508~^1.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~509~^1.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~510~^1.877^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~511~^1.997^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~512~^1.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~513~^2.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~514~^2.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~515~^5.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~516~^1.745^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~517~^1.418^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~518~^1.273^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~606~^1.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~610~^0.000^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~611~^0.010^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~612~^0.120^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~613~^1.060^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~614~^0.620^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~617~^2.090^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~618~^0.450^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~619~^0.030^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~620~^0.110^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~626~^0.210^73^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~645~^2.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17138~^~646~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~312~^0.136^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~315~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~405~^0.370^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~406~^9.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~410~^1.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~415~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~501~^0.266^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~502~^1.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~503~^1.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~504~^2.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~505~^2.169^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~506~^0.614^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~507~^0.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~508~^1.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~509~^0.839^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~510~^1.455^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~511~^1.548^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~512~^0.956^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~513~^1.566^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~514~^2.271^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~515~^4.164^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~516~^1.353^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~517~^1.099^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~518~^0.987^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~606~^2.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~613~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~614~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~617~^1.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~618~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~626~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~645~^2.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17139~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~312~^0.118^12^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~315~^0.029^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~404~^0.090^12^0.008^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~405~^0.290^12^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~406~^7.400^12^0.721^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~410~^1.250^12^0.070^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~415~^0.450^12^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~501~^0.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~502~^0.885^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~503~^0.998^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~504~^1.613^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~505~^1.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~506~^0.473^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~507~^0.229^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~508~^0.818^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~509~^0.646^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~510~^1.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~511~^1.192^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~512~^0.736^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~513~^1.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~514~^1.748^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~515~^3.206^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~516~^1.042^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~517~^0.846^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~518~^0.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~606~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~610~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~611~^0.000^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~612~^0.040^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~613~^0.430^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~614~^0.260^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~617~^0.710^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~618~^0.180^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~619~^0.010^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~620~^0.070^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~626~^0.080^147^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~645~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17140~^~646~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~312~^0.153^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~315~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~405~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~406~^8.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~410~^1.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~415~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~501~^0.354^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~502~^1.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~503~^1.721^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~504~^2.781^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~505~^2.879^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~506~^0.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~507~^0.394^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~508~^1.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~509~^1.114^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~510~^1.931^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~511~^2.055^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~512~^1.268^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~513~^2.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~514~^3.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~515~^5.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~516~^1.796^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~517~^1.459^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~518~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~606~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~612~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~613~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~614~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~617~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~618~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~619~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~626~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~645~^1.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17141~^~646~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17142~^~312~^0.088^6^^~1~^~A~^^^1^0.081^0.094^^^^~2~^~04/01/2014~ -~17142~^~315~^0.008^6^^~1~^~A~^^^1^0.004^0.014^^^^~2~^~04/01/2014~ -~17142~^~404~^0.113^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~405~^0.280^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~406~^5.520^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~410~^0.670^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~415~^0.446^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~502~^0.812^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~503~^0.915^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~504~^1.478^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~505~^1.531^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~506~^0.434^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~507~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~508~^0.749^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~509~^0.592^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~510~^1.027^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~511~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~512~^0.674^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~513~^1.105^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~514~^1.603^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~515~^2.938^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~516~^0.954^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~517~^0.776^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~518~^0.696^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~521~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17142~^~605~^0.696^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~606~^5.108^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17142~^~610~^0.007^6^^~1~^~A~^^^1^0.003^0.009^^^^~1, 2~^~04/01/2014~ -~17142~^~611~^0.009^6^^~1~^~A~^^^1^0.005^0.014^^^^~2~^~04/01/2014~ -~17142~^~612~^0.300^6^^~1~^~A~^^^1^0.175^0.400^^^^~2~^~04/01/2014~ -~17142~^~613~^2.766^6^^~1~^~A~^^^1^1.773^3.364^^^^~2~^~04/01/2014~ -~17142~^~614~^1.834^6^^~1~^~A~^^^1^1.108^2.341^^^^~2~^~04/01/2014~ -~17142~^~615~^0.004^6^^~1~^~A~^^^1^0.002^0.011^^^^~1, 2~^~04/01/2014~ -~17142~^~617~^5.592^6^^~1~^~AS~^^^1^3.461^6.961^^^^~2~^~04/01/2014~ -~17142~^~618~^0.616^6^^~1~^~AS~^^^1^0.442^0.889^^^^~2~^~04/01/2014~ -~17142~^~619~^0.020^6^^~1~^~A~^^^1^0.015^0.025^^^^~2~^~04/01/2014~ -~17142~^~620~^0.094^6^^~1~^~A~^^^1^0.054^0.185^^^^~2~^~04/01/2014~ -~17142~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17142~^~625~^0.061^6^^~1~^~A~^^^1^0.035^0.085^^^^~2~^~04/01/2014~ -~17142~^~626~^0.374^6^^~1~^~AS~^^^1^0.236^0.476^^^^~2~^~04/01/2014~ -~17142~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17142~^~628~^0.009^6^^~1~^~A~^^^1^0.000^0.040^^^^~1, 2~^~04/01/2014~ -~17142~^~629~^0.002^6^^~1~^~A~^^^1^0.000^0.005^^^^~1, 2~^~04/01/2014~ -~17142~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17142~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17142~^~645~^6.159^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~646~^0.732^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17142~^~653~^0.171^6^^~1~^~A~^^^1^0.108^0.237^^^^~2~^~04/01/2014~ -~17142~^~654~^0.016^6^^~1~^~A~^^^1^0.010^0.029^^^^~2~^~04/01/2014~ -~17142~^~663~^0.696^6^^~1~^~A~^^^1^0.396^1.166^^^^~2~^~04/01/2014~ -~17142~^~670~^0.038^6^^~1~^~A~^^^1^0.026^0.044^^^^~2~^~04/01/2014~ -~17142~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17142~^~673~^0.374^6^^~1~^~A~^^^1^0.236^0.476^^^^~2~^~04/01/2014~ -~17142~^~674~^4.896^6^^~1~^~A~^^^1^3.065^6.436^^^^~2~^~04/01/2014~ -~17142~^~675~^0.578^6^^~1~^~A~^^^1^0.404^0.845^^^^~2~^~04/01/2014~ -~17142~^~687~^0.124^6^^~1~^~A~^^^1^0.082^0.156^^^^~2~^~04/01/2014~ -~17142~^~693~^0.696^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17143~^~312~^0.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~315~^0.035^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~404~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~405~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~406~^8.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~410~^1.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~415~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~501~^0.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~502~^1.065^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~503~^1.201^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~504~^1.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~505~^2.009^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~506~^0.569^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~507~^0.275^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~508~^0.984^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~509~^0.777^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~510~^1.347^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~511~^1.434^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~512~^0.885^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~513~^1.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~514~^2.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~515~^3.856^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~516~^1.253^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~517~^1.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~518~^0.914^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~606~^3.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~610~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~611~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~612~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~613~^1.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~614~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~617~^2.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~618~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~626~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17143~^~645~^2.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17143~^~646~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~312~^0.180^22^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~315~^0.020^22^0.001^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~404~^0.320^18^0.014^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~405~^0.580^18^0.013^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~502~^1.035^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~503~^0.856^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~504~^1.891^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~505~^1.871^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~506~^0.637^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~507~^0.199^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~508~^0.886^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~509~^0.776^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~510~^0.995^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~511~^1.473^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~512~^1.065^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~513~^1.304^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~514~^2.120^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~515~^3.365^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~516~^1.005^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~517~^1.025^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~518~^0.946^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~606~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~610~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~611~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~612~^0.020^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~613~^0.340^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~614~^0.370^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~617~^0.480^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~618~^0.250^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~619~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~620~^0.120^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~626~^0.010^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~628~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~645~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17144~^~646~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~312~^0.213^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~404~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~405~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~502~^1.362^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~503~^1.126^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~504~^2.489^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~505~^2.462^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~506~^0.838^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~507~^0.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~508~^1.166^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~509~^1.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~510~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~511~^1.938^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~512~^1.401^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~513~^1.716^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~514~^2.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~515~^4.427^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~516~^1.323^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~517~^1.349^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~518~^1.244^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~606~^0.970^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~612~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~613~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~614~^0.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~617~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~618~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~619~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~620~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~626~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~645~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17145~^~646~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~404~^0.160^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~405~^0.680^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17146~^~406~^3.200^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~312~^0.148^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~405~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~406~^3.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17147~^~415~^0.290^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~606~^3.540^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~612~^0.188^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~613~^2.073^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~614~^0.769^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~617~^4.130^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~618~^1.572^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~619~^0.049^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~620~^0.321^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~621~^0.037^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~626~^0.725^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~628~^0.057^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~631~^0.034^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17147~^~645~^5.660^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17147~^~646~^2.400^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17148~^~312~^0.151^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~404~^0.139^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~405~^0.264^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~406~^5.966^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~415~^0.401^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~502~^1.155^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~503~^1.229^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~504~^2.184^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~505~^2.362^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~506~^0.688^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~507~^0.304^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~508~^1.081^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~509~^0.866^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~510~^1.370^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~511~^1.733^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~512~^0.933^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~513~^1.696^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~514~^2.487^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~515~^4.146^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~516~^1.652^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~517~^1.303^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~518~^1.059^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17148~^~521~^0.318^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2009~ -~17148~^~606~^3.489^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17148~^~607~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~608~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~609~^0.003^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~610~^0.004^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~611~^0.004^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~612~^0.155^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~613~^1.553^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~614~^1.771^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~617~^3.094^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~618~^0.313^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~619~^0.045^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~620~^0.044^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~621~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~626~^0.172^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~627~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~628~^0.027^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~629~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~630~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~631~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17148~^~645~^3.293^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17148~^~646~^0.402^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~312~^0.140^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~404~^0.141^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~405~^0.246^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~406~^5.322^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~415~^0.383^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~ -~17149~^~501~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~502~^0.918^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~503~^0.977^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~504~^1.736^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~505~^1.877^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~506~^0.547^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~507~^0.241^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~508~^0.859^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~509~^0.688^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~510~^1.089^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~511~^1.377^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~512~^0.742^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~513~^1.348^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~514~^1.977^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~515~^3.296^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~516~^1.313^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~517~^1.036^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~518~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~17149~^~521~^0.253^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2008~ -~17149~^~606~^2.917^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~609~^0.003^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~610~^0.003^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~611~^0.003^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~612~^0.129^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~613~^1.298^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~614~^1.481^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~617~^2.586^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~618~^0.261^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~619~^0.038^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~620~^0.037^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~621~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~626~^0.144^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~ -~17149~^~628~^0.023^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~629~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~630~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~631~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~03/01/2008~ -~17149~^~645~^2.753^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17149~^~646~^0.336^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17150~^~404~^0.060^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~405~^0.220^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~406~^1.900^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~502~^0.916^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~503~^1.027^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~504~^1.897^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~505~^2.236^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~506~^0.546^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~508~^0.977^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~509~^0.750^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~510~^0.981^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~511~^1.478^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~512~^0.947^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~513~^1.116^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~514~^1.912^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~515~^3.436^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~516~^0.912^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~517~^0.862^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17150~^~518~^0.797^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~312~^0.189^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17151~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~405~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~406~^2.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~410~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~415~^0.470^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17151~^~502~^1.327^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~503~^1.489^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~504~^2.749^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~505~^3.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~506~^0.792^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~508~^1.417^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~509~^1.087^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~510~^1.422^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~511~^2.141^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~512~^1.372^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~513~^1.617^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~514~^2.772^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~515~^4.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~516~^1.322^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~517~^1.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~518~^1.154^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17151~^~606~^2.070^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17151~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~612~^0.180^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~613~^1.570^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~614~^0.320^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~617~^1.610^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~618~^1.070^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~619~^0.280^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~626~^0.240^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~17151~^~645~^1.890^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17151~^~646~^1.350^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17152~^~404~^0.040^3^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~405~^0.090^3^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~406~^4.640^3^0.288^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~410~^0.550^3^0.020^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~606~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~611~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~612~^0.100^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~613~^0.960^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~614~^0.920^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~617~^1.820^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~618~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~619~^0.040^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~626~^0.180^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~645~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17152~^~646~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~404~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~405~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~406~^4.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~410~^0.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~606~^2.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~612~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~613~^1.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~614~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~617~^2.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~618~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~626~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~645~^2.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17153~^~646~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17154~^~605~^3.212^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~606~^23.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~610~^0.030^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~611~^0.079^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~612~^2.175^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~613~^12.334^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~614~^7.796^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~615~^0.068^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~617~^18.670^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17154~^~618~^1.171^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17154~^~619~^0.328^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17154~^~620~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~624~^0.049^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~625~^0.539^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~626~^1.516^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~627~^0.025^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~628~^0.053^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~631~^0.070^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~645~^20.777^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~646~^1.652^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~652~^0.393^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~653~^0.634^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~663~^2.382^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~665~^0.741^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~674~^16.288^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~675~^0.430^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17154~^~693~^2.382^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~695~^0.830^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17154~^~851~^0.239^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~856~^0.089^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17154~^~859~^1.939^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17155~^~501~^0.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~502~^0.779^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~503~^0.878^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~504~^1.420^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~505~^1.469^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~506~^0.416^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~507~^0.202^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~508~^0.720^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~509~^0.568^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~510~^0.986^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~511~^1.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~512~^0.647^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~513~^1.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~514~^1.538^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~515~^2.821^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~516~^0.917^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~517~^0.744^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~518~^0.668^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~521~^0.099^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~ -~17155~^~605~^0.773^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~606~^5.886^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~611~^0.019^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~612~^0.522^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~613~^3.093^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~614~^1.964^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~617~^4.686^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~618~^0.304^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~619~^0.085^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~620~^0.153^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~624~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~625~^0.126^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~626~^0.367^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~627~^0.005^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~628~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~629~^0.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~645~^5.192^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~646~^0.588^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17155~^~652~^0.091^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~653~^0.155^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17155~^~859~^0.346^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17156~^~312~^0.090^30^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~315~^0.007^30^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~405~^0.094^24^0.007^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17156~^~406~^1.910^24^0.117^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17156~^~502~^0.890^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~503~^0.911^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~504~^1.679^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~505~^1.686^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~506~^0.513^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~508~^0.809^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~509~^0.695^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~510~^0.978^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~511~^1.282^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~512~^0.573^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~513~^1.228^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~514~^1.875^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~515~^3.150^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~516~^1.039^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~517~^0.863^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~518~^0.823^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~606~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~612~^0.020^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~613~^0.330^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~614~^0.350^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~617~^0.670^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~618~^0.110^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~619~^0.030^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~620~^0.050^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~626~^0.040^22^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~645~^0.720^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17156~^~646~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~312~^0.107^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~315~^0.008^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~404~^0.100^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~405~^0.270^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~406~^3.710^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~415~^0.400^0^^~4~^^^^^^^^^^^~12/01/1994~ -~17157~^~502~^1.171^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~503~^1.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~504~^2.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~505~^2.219^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~506~^0.674^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~508~^1.065^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~509~^0.914^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~510~^1.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~511~^1.686^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~512~^0.754^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~513~^1.615^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~514~^2.467^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~515~^4.145^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~516~^1.367^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~517~^1.136^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~518~^1.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~606~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~607~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~612~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~613~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~614~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~617~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~618~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~619~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~621~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~626~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~627~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~631~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~17157~^~645~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17157~^~646~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~404~^0.390^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~405~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~406~^4.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~501~^0.289^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~502~^1.012^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~503~^1.039^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~504~^1.748^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~505~^2.120^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~506~^0.530^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~507~^0.279^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~508~^0.860^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~509~^0.767^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~510~^1.153^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~511~^1.493^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~512~^1.091^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~513~^1.273^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~514~^1.996^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~515~^3.341^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~516~^0.981^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~517~^0.816^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~518~^0.884^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~606~^0.990^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~612~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~613~^0.580^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~614~^0.330^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~617~^1.130^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~618~^0.380^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~619~^0.020^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~620~^0.080^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~626~^0.170^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~645~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17158~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~312~^0.056^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~404~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~405~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~406~^4.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~415~^0.418^0^^~4~^^^^^^^^^^^~07/01/1994~ -~17159~^~501~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~502~^1.331^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~503~^1.367^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~504~^2.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~505~^2.789^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~506~^0.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~507~^0.367^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~508~^1.132^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~509~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~510~^1.517^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~511~^1.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~512~^1.435^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~513~^1.675^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~514~^2.626^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~515~^4.396^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~516~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~517~^1.073^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~518~^1.164^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~606~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~610~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~611~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~612~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~613~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~614~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~617~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~618~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~626~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~628~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1994~ -~17159~^~645~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17159~^~646~^0.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~312~^0.151^135^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~404~^0.040^6^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~405~^0.200^51^0.008^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~406~^5.970^51^0.169^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~410~^0.160^45^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~415~^0.530^45^0.020^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~501~^0.249^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~502~^0.976^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~503~^1.023^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~504~^1.755^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~505~^1.610^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~506~^0.511^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~507~^0.326^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~508~^0.817^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~509~^0.818^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~510~^1.084^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~511~^1.278^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~512~^0.675^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~514~^2.034^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~515~^2.956^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~516~^0.795^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~517~^0.780^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~518~^0.875^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~606~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~612~^0.010^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~613~^0.250^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~614~^0.190^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~617~^0.370^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~618~^0.160^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~619~^0.040^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~620~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~626~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~645~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17160~^~646~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~312~^0.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~404~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~406~^6.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~410~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~415~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~501~^0.327^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~502~^1.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~503~^1.346^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~504~^2.309^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~505~^2.118^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~506~^0.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~507~^0.429^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~508~^1.075^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~509~^1.077^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~510~^1.427^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~511~^1.681^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~512~^0.888^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~514~^2.676^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~515~^3.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~516~^1.046^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~517~^1.027^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~518~^1.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~606~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~612~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~613~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~614~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~617~^0.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~618~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~620~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~626~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~645~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17161~^~646~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~312~^0.222^7^0.038^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~315~^0.078^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~404~^0.320^7^0.077^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~405~^0.720^17^0.064^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~406~^5.500^13^0.344^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~410~^2.550^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~415~^0.370^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~501~^0.348^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~502~^0.967^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~503~^1.024^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~504~^1.867^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~505~^2.049^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~506~^0.506^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~507~^0.163^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~508~^1.006^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~509~^0.742^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~510~^1.063^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~511~^1.346^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~512~^0.896^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~513~^1.211^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~514~^2.001^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~515~^3.551^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~516~^0.949^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~517~^0.703^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~518~^0.795^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~606~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~612~^0.090^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~613~^0.680^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~614~^0.450^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~617~^0.930^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~618~^0.230^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~619~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~620~^0.140^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~621~^0.050^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~626~^0.080^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~631~^0.020^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~645~^1.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17162~^~646~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~312~^0.263^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~315~^0.087^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~404~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~405~^0.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~406~^5.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~410~^2.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~415~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~501~^0.458^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~502~^1.273^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~503~^1.347^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~504~^2.457^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~505~^2.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~506~^0.665^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~507~^0.214^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~508~^1.324^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~509~^0.976^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~510~^1.399^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~511~^1.771^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~512~^1.179^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~513~^1.593^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~514~^2.633^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~515~^4.673^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~516~^1.249^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~517~^0.925^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~518~^1.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~606~^1.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~612~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~613~^0.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~614~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~617~^1.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~618~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~620~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~621~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~626~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17163~^~631~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~645~^1.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17163~^~646~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~312~^0.253^19^0.011^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~315~^0.041^13^0.002^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~404~^0.220^63^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~405~^0.480^33^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~406~^6.370^4^0.633^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~415~^0.370^0^^~4~^^^^^^^^^^^~04/01/1985~ -~17164~^~502~^1.080^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~503~^0.908^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~504~^1.951^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~505~^2.006^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~506~^0.566^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~507~^0.257^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~508~^0.937^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~509~^0.812^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~510~^1.073^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~511~^1.653^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~512~^1.135^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~513~^1.433^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~514~^2.130^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~515~^3.336^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~516~^1.175^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~517~^1.183^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~518~^0.974^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~606~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~610~^0.000^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~611~^0.000^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~612~^0.020^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~613~^0.410^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~614~^0.510^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~617~^0.630^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~618~^0.310^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~619~^0.070^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~620~^0.100^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~626~^0.030^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~628~^0.000^16^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17164~^~645~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17164~^~646~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~312~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~315~^0.046^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~404~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~405~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~406~^6.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~502~^1.421^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~503~^1.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~504~^2.566^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~505~^2.639^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~506~^0.745^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~507~^0.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~508~^1.233^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~509~^1.069^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~510~^1.412^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~511~^2.175^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~512~^1.494^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~513~^1.885^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~514~^2.803^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~515~^4.389^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~516~^1.546^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~517~^1.557^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~518~^1.281^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~606~^1.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~612~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~613~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~614~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~617~^0.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~618~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~619~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~620~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~626~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~645~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17165~^~646~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~312~^0.120^21^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~315~^0.012^21^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~501~^0.414^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~502~^0.999^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~503~^0.740^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~504~^1.935^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~505~^2.131^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~506~^0.551^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~508~^0.910^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~509~^0.822^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~510~^0.810^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~511~^1.575^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~512~^0.733^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~513~^1.441^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~514~^2.251^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~515~^3.651^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~516~^0.974^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~517~^0.992^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~518~^1.002^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~606~^0.530^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~610~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~611~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~612~^0.030^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~613~^0.350^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~614~^0.140^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~617~^0.230^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~618~^0.170^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~619~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~620~^0.090^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~626~^0.130^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~628~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~645~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17166~^~646~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~312~^0.142^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~315~^0.013^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~501~^0.545^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~502~^1.315^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~503~^0.973^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~504~^2.546^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~505~^2.803^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~506~^0.725^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~508~^1.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~509~^1.081^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~510~^1.066^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~511~^2.073^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~512~^0.964^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~513~^1.896^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~514~^2.962^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~515~^4.804^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~516~^1.282^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~517~^1.306^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~518~^1.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~606~^0.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~612~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~613~^0.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~614~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~617~^0.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~618~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~619~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~620~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~626~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~645~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17167~^~646~^0.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~312~^0.256^46^0.015^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~315~^0.038^46^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~404~^0.110^6^0.009^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~405~^0.490^6^0.053^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~406~^3.750^9^0.190^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~501~^0.306^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~502~^0.981^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~503~^1.042^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~504~^1.716^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~505~^1.532^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~506~^0.552^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~507~^0.245^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~508~^0.715^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~509~^0.633^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~510~^1.103^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~511~^1.512^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~512~^0.429^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~606~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~610~^0.000^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~611~^0.000^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~612~^0.030^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~613~^0.330^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~614~^0.330^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~617~^0.940^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~618~^0.100^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~619~^0.020^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~620~^0.060^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~626~^0.040^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~645~^1.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17168~^~646~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~312~^0.303^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~315~^0.042^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~405~^0.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~406~^3.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/1990~ -~17169~^~501~^0.403^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~502~^1.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~503~^1.371^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~504~^2.258^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~505~^2.016^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~506~^0.726^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~507~^0.323^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~508~^0.941^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~509~^0.833^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~510~^1.452^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~511~^1.989^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~512~^0.565^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~606~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~610~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~611~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~612~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~613~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~614~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~617~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~618~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~619~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~626~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17169~^~645~^1.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17169~^~646~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~312~^0.144^263^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~315~^0.019^8^0.005^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~404~^0.130^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~405~^0.100^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~406~^4.600^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~415~^0.380^6^0.067^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~501~^0.265^72^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~502~^0.959^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~503~^1.014^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~504~^1.696^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~505~^1.823^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~506~^0.473^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~507~^0.299^23^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~508~^0.879^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~509~^0.670^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~510~^1.108^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~511~^1.401^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~512~^0.822^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~513~^1.228^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~514~^2.104^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~515~^3.116^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~516~^1.033^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~517~^0.994^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~518~^0.817^27^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~606~^1.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~611~^0.010^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~612~^0.170^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~613~^1.080^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~614~^0.160^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~617~^1.300^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~618~^0.290^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~619~^0.360^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~626~^0.310^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~645~^1.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17170~^~646~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~312~^0.171^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~315~^0.022^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~405~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~406~^4.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~415~^0.330^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~501~^0.349^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~502~^1.262^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~503~^1.334^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~504~^2.232^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~505~^2.398^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~506~^0.623^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~507~^0.393^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~508~^1.157^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~509~^0.882^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~510~^1.458^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~511~^1.843^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~512~^1.081^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~513~^1.616^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~514~^2.768^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~515~^4.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~516~^1.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~517~^1.307^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~518~^1.074^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~606~^1.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~612~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~613~^1.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~614~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~617~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~618~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~619~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~626~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~645~^2.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17171~^~646~^0.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~312~^0.067^26^0.002^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~315~^0.008^26^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~404~^0.060^3^0.021^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~405~^0.270^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~406~^5.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~502~^1.021^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~503~^1.068^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~504~^1.957^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~505~^2.018^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~506~^0.569^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~508~^0.961^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~509~^0.819^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~510~^1.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~511~^1.438^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~512~^0.747^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~513~^1.281^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~514~^2.089^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~515~^3.602^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~516~^0.972^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~517~^0.904^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~518~^0.797^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~606~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~612~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~613~^0.090^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~614~^0.130^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~617~^0.140^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~618~^0.140^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~619~^0.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~620~^0.070^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~626~^0.010^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~645~^0.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17172~^~646~^0.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~312~^0.079^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~315~^0.009^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~404~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~405~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~406~^5.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~415~^0.370^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17173~^~502~^1.344^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~503~^1.405^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~504~^2.576^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~505~^2.655^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~506~^0.749^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~508~^1.264^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~509~^1.077^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~510~^1.592^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~511~^1.892^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~512~^0.983^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~513~^1.686^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~514~^2.749^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~515~^4.739^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~516~^1.278^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~517~^1.189^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~518~^1.049^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~606~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~612~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~613~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~614~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~617~^0.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~618~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~620~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~626~^0.010^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17173~^~645~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17173~^~646~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~404~^0.090^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~405~^0.520^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~406~^6.200^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~502~^0.854^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~503~^0.791^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~504~^1.638^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~505~^1.628^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~506~^0.345^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~508~^0.857^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~509~^0.568^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~510~^0.923^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~511~^0.996^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~512~^0.618^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~513~^1.096^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~514~^1.794^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~515~^2.644^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~516~^1.013^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~517~^0.830^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17174~^~518~^0.744^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~312~^0.189^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~404~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~405~^0.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~406~^7.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~410~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~415~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~502~^1.237^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~503~^1.146^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~504~^2.373^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~505~^2.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~506~^0.501^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~508~^1.242^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~509~^0.823^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~510~^1.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~511~^1.444^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~512~^0.895^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~513~^1.589^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~514~^2.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~515~^3.832^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~516~^1.468^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~517~^1.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17175~^~518~^1.078^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~312~^0.189^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~404~^0.100^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~405~^0.370^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17176~^~406~^8.430^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~415~^0.470^0^^~4~^^^^^^^^^^^~03/01/1992~ -~17176~^~606~^1.206^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17176~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~612~^0.044^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~613~^0.965^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~614~^0.176^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~617~^3.444^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~618~^2.939^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~619~^0.066^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~626~^0.307^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17176~^~645~^3.773^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17176~^~646~^2.983^0^^~4~^^^^^^^^^^^~04/01/1989~ -~17177~^~312~^0.145^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~315~^0.026^8^0.004^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~404~^0.100^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~405~^0.150^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~406~^7.270^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~410~^0.800^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~415~^0.500^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~501~^0.265^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~502~^0.897^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~503~^0.951^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~504~^1.562^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~505~^1.756^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~506~^0.502^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~507~^0.252^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~508~^0.823^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~509~^0.714^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~510~^1.019^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~511~^1.239^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~512~^0.562^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~513~^1.210^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~514~^1.959^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~515~^3.217^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~516~^1.089^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~517~^0.980^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~518~^0.889^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~606~^1.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~612~^0.150^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~613~^1.250^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~614~^0.260^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~617~^1.280^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~618~^0.860^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~619~^0.220^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~626~^0.180^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~645~^1.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17177~^~646~^1.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~312~^0.189^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~404~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~406~^8.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~410~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~415~^0.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~501~^0.384^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~502~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~503~^1.379^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~504~^2.264^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~505~^2.544^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~506~^0.727^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~507~^0.365^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~508~^1.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~509~^1.035^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~510~^1.477^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~511~^1.795^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~512~^0.815^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~513~^1.753^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~514~^2.839^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~515~^4.662^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~516~^1.578^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~517~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~518~^1.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~606~^2.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~612~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~613~^1.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~614~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~617~^1.860^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~618~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~619~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~626~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~645~^2.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17178~^~646~^1.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~312~^0.176^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~405~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~406~^7.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~410~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~415~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~501~^0.401^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~502~^1.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~503~^1.441^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~504~^2.367^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~505~^2.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~506~^0.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~507~^0.382^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~508~^1.247^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~509~^1.082^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~510~^1.544^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~511~^1.877^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~512~^0.852^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~513~^1.833^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~514~^2.968^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~515~^4.874^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~516~^1.649^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~517~^1.485^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~518~^1.346^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~606~^2.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~612~^0.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~613~^1.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~614~^0.390^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~617~^1.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~618~^1.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~619~^0.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~626~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17179~^~645~^2.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17179~^~646~^1.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~404~^0.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~405~^0.060^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~406~^6.500^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~501~^0.288^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~502~^0.975^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~503~^1.034^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~504~^1.698^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~505~^1.908^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~506~^0.545^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~507~^0.274^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~508~^0.895^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~509~^0.776^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~510~^1.108^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~511~^1.346^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~512~^0.611^8^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~513~^1.315^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~514~^2.129^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~515~^3.496^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~516~^1.183^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~517~^1.065^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~518~^0.966^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~606~^0.690^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~612~^0.060^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~613~^0.520^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~614~^0.110^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~617~^0.540^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~618~^0.360^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~619~^0.090^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~626~^0.080^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~645~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17180~^~646~^0.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~312~^0.176^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17181~^~404~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~405~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~406~^6.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~415~^0.340^0^^~4~^^^^^^^^^^^~11/01/1993~ -~17181~^~501~^0.436^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~502~^1.477^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~503~^1.567^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~504~^2.573^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~505~^2.891^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~506~^0.826^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~507~^0.415^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~508~^1.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~509~^1.176^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~510~^1.678^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~511~^2.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~512~^0.926^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~513~^1.992^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~514~^3.226^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~515~^5.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~516~^1.793^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~517~^1.614^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~518~^1.463^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~606~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~612~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~613~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~614~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~617~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~618~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~619~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~626~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17181~^~645~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17181~^~646~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~312~^0.189^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~404~^0.590^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~405~^0.520^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17182~^~406~^4.680^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~415~^0.470^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~606~^4.070^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~612~^0.552^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~613~^2.285^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~614~^1.131^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~617~^4.079^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~618~^1.281^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~619~^0.063^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~620~^0.371^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~621~^0.032^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~626~^0.961^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~628~^0.056^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~629~^0.051^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~631~^0.100^0^^~1~^^^^^^^^^^^~01/01/1994~ -~17182~^~645~^5.210^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17182~^~646~^2.090^0^^~4~^^^^^^^^^^^~01/01/1994~ -~17183~^~404~^0.070^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~405~^0.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~406~^4.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~502~^0.809^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~503~^0.809^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~504~^1.525^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~505~^1.536^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~506~^0.465^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~508~^0.822^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~509~^0.635^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~510~^0.839^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~511~^1.107^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~512~^0.554^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~513~^1.006^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~514~^1.688^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~515~^2.871^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~516~^0.921^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~517~^0.792^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~518~^0.696^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~606~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~612~^0.020^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~613~^0.300^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~614~^0.050^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~617~^1.080^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~618~^0.920^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~619~^0.020^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~626~^0.100^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~645~^1.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17183~^~646~^0.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~312~^0.148^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~315~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~404~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~405~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~406~^4.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~410~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~415~^0.370^0^^~4~^^^^^^^^^^^~02/01/1995~ -~17184~^~502~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~503~^1.172^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~504~^2.211^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~505~^2.225^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~506~^0.675^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~508~^1.191^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~509~^0.921^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~510~^1.216^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~511~^1.605^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~512~^0.803^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~513~^1.457^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~514~^2.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~515~^4.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~516~^1.334^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~517~^1.147^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~518~^1.009^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~606~^0.540^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~17184~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~612~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~613~^0.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~614~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~617~^1.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~618~^1.340^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~619~^0.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~620~^0.189^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~621~^0.103^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~626~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17184~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~628~^0.076^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~629~^0.006^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~631~^0.015^0^^~4~^^^^^^^^^^^~04/01/1994~ -~17184~^~645~^1.786^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~17184~^~646~^1.683^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~17185~^~312~^0.240^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~315~^0.044^13^0.001^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~404~^0.130^40^0.033^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~405~^0.300^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~406~^3.900^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~410~^0.920^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~415~^0.290^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~501~^0.107^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~502~^0.466^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~503~^0.414^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~504~^0.813^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~505~^0.667^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~506~^0.207^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~507~^0.108^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~508~^0.501^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~509~^0.380^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~510~^0.495^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~511~^0.701^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~512~^0.276^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~513~^0.589^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~514~^0.868^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~515~^1.233^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~516~^0.492^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~517~^0.448^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~518~^0.541^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~606~^2.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~611~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~612~^0.040^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~613~^1.060^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~614~^1.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~617~^1.290^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~618~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~619~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~620~^0.230^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~621~^0.490^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~626~^0.050^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~628~^0.120^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~629~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~630~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~631~^0.130^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~645~^1.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17185~^~646~^0.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~312~^0.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~315~^0.059^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~404~^0.110^3^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~405~^0.240^3^0.032^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~406~^2.470^3^0.578^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~410~^0.990^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~415~^0.110^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~501~^0.129^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~502~^0.562^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~503~^0.499^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~504~^0.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~505~^0.805^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~506~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~507~^0.131^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~508~^0.605^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~509~^0.459^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~510~^0.598^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~511~^0.846^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~512~^0.333^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~513~^0.711^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~514~^1.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~515~^1.487^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~516~^0.594^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~517~^0.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~518~^0.653^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~606~^2.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17186~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17186~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17186~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17186~^~611~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~612~^0.040^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~613~^1.250^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~614~^1.270^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~617~^1.530^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~618~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~619~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~620~^0.270^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~621~^0.590^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~626~^0.060^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17186~^~628~^0.150^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~629~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~630~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~631~^0.150^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~645~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17186~^~646~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~312~^0.480^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~315~^0.067^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~404~^0.170^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~405~^0.370^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~406~^4.550^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~410~^1.560^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~415~^0.230^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~501~^0.175^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~502~^0.760^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~503~^0.675^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~504~^1.326^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~505~^1.088^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~506~^0.338^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~507~^0.177^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~508~^0.818^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~509~^0.621^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~510~^0.808^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~511~^1.144^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~512~^0.450^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~513~^0.962^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~514~^1.416^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~515~^2.012^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~516~^0.804^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~517~^0.731^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~518~^0.883^7^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~606~^5.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~611~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~612~^0.090^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~613~^2.740^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~614~^2.780^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~617~^3.330^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~618~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~619~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~620~^0.600^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~621~^1.280^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~626~^0.130^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~628~^0.320^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~629~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~630~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~631~^0.330^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~645~^4.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17187~^~646~^2.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~312~^0.220^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~315~^0.037^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~404~^0.130^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~405~^0.260^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~406~^4.300^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~410~^2.720^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~415~^0.280^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~501~^0.103^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~502~^0.511^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~503~^0.420^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~504~^0.797^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~505~^0.640^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~506~^0.227^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~507~^0.108^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~508~^0.543^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~509~^0.400^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~510~^0.491^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~511~^0.566^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~512~^0.258^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~513~^0.531^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~514~^0.876^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~515~^1.234^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~516~^0.453^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~517~^0.426^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~518~^0.530^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~606~^1.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~617~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~618~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~645~^1.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17188~^~646~^0.950^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~312~^0.260^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~315~^0.038^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~404~^0.080^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~405~^0.200^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~406~^2.430^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~410~^1.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~415~^0.170^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~501~^0.115^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~502~^0.568^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~503~^0.467^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~504~^0.886^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~505~^0.711^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~506~^0.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~507~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~508~^0.604^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~509~^0.445^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~510~^0.546^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~511~^0.629^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~512~^0.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~513~^0.591^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~514~^0.974^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~515~^1.373^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~516~^0.504^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~517~^0.474^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~518~^0.589^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~606~^2.180^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~617~^1.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~618~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~645~^1.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17189~^~646~^1.490^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~312~^0.300^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~315~^0.044^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~404~^0.150^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~405~^0.360^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~406~^5.620^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~410~^1.130^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~415~^0.330^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~501~^0.145^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~502~^0.716^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~503~^0.589^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~504~^1.118^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~505~^0.897^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~506~^0.318^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~507~^0.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~508~^0.762^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~509~^0.561^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~510~^0.689^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~511~^0.794^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~512~^0.363^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~513~^0.745^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~514~^1.228^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~515~^1.732^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~516~^0.635^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~517~^0.598^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~518~^0.743^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~606~^3.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~617~^3.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~618~^0.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~645~^4.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17190~^~646~^2.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~312~^0.397^13^0.022^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~315~^0.046^34^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~404~^0.370^4^0.105^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~405~^0.990^3^0.059^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~406~^6.140^3^0.391^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~410~^2.630^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~415~^0.390^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~501~^0.178^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~502~^0.777^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~503~^0.714^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~504~^1.401^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~505~^1.240^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~506~^0.361^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~507~^0.138^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~508~^0.712^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~509~^0.513^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~510~^0.819^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~511~^1.077^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~512~^0.377^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~513~^1.000^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~514~^1.419^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~515~^2.103^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~516~^0.795^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~517~^0.747^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~518~^0.636^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~606~^2.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~611~^0.020^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~612~^0.130^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~613~^0.860^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~614~^1.160^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~617~^1.380^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~618~^0.240^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~619~^0.130^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~620~^0.090^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~621~^0.030^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~626~^0.070^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~628~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~629~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~630~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~631~^0.030^3^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~645~^1.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17191~^~646~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~312~^0.610^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~315~^0.055^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~404~^0.170^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~405~^1.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~406~^4.360^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~410~^1.370^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~415~^0.300^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~501~^0.271^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~502~^1.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~503~^1.082^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~504~^2.124^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~505~^1.881^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~506~^0.547^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~507~^0.209^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~508~^1.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~509~^0.778^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~510~^1.243^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~511~^1.633^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~512~^0.571^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~513~^1.516^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~514~^2.152^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~515~^3.188^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~516~^1.205^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~517~^1.133^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~518~^0.965^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~606~^3.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~611~^0.020^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~612~^0.180^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~613~^1.200^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~614~^1.620^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~617~^1.920^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~618~^0.330^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~619~^0.180^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~620~^0.120^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~621~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~626~^0.100^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~628~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~629~^0.060^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~630~^0.060^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~631~^0.040^3^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~645~^2.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17192~^~646~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~312~^0.340^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~315~^0.036^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~404~^0.520^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~405~^1.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~406~^6.400^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~410~^2.780^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~415~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~501~^0.183^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~502~^0.760^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~503~^0.823^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~504~^1.349^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~505~^1.479^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~506~^0.392^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~507~^0.185^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~508~^0.745^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~509~^0.564^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~510~^0.898^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~511~^1.067^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~512~^0.462^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~513~^1.067^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~514~^1.595^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~515~^2.480^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~516~^0.938^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~517~^0.797^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~518~^0.797^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~606~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~611~^0.020^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~612~^0.070^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~613~^0.480^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~614~^0.470^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~617~^0.730^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~618~^0.710^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~619~^0.030^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~620~^0.240^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~621~^0.000^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~626~^0.060^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~628~^0.000^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~629~^0.030^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~630~^0.030^13^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~631~^0.030^13^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~645~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17193~^~646~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~312~^0.432^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~315~^0.061^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~404~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~405~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~406~^4.880^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~410~^1.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~415~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~501~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~502~^1.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~503~^1.395^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~504~^2.287^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~505~^2.507^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~506~^0.664^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~507~^0.313^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~508~^1.263^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~509~^0.955^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~510~^1.523^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~511~^1.808^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~512~^0.783^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~513~^1.808^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~514~^2.703^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~515~^4.203^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~516~^1.589^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~517~^1.351^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~518~^1.351^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~606~^1.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~611~^0.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~612~^0.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~613~^0.820^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~614~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~617~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~618~^1.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~619~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~620~^0.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~626~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~629~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~630~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~631~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~645~^1.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17194~^~646~^1.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~312~^0.446^519^0.016^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~315~^0.118^31^0.007^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~404~^0.620^7^0.043^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~405~^2.240^8^0.081^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~406~^7.510^8^0.185^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~410~^4.220^3^0.330^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~415~^0.220^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~501~^0.212^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~502~^0.741^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~503~^0.626^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~504~^1.181^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~505~^1.020^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~506~^0.319^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~507~^0.179^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~508~^0.729^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~509~^0.554^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~510~^0.923^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~511~^0.908^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~512~^0.396^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~513~^0.853^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~514~^1.355^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~515~^1.707^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~516~^0.915^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~517~^0.804^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~518~^0.734^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~606~^1.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~611~^0.010^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~612~^0.030^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~613~^0.420^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~614~^0.520^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~617~^0.550^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~618~^0.210^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~619~^0.070^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~620~^0.140^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~621~^0.030^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~626~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~628~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~629~^0.050^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~630~^0.010^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~631~^0.040^3^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~645~^0.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17195~^~646~^0.550^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~312~^0.370^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~315~^0.144^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~404~^0.350^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~405~^2.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~406~^5.990^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~410~^2.040^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~415~^0.120^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~501~^0.319^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~502~^1.113^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~503~^0.941^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~504~^1.775^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~505~^1.533^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~506~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~507~^0.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~508~^1.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~509~^0.833^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~510~^1.387^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~511~^1.365^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~512~^0.595^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~513~^1.282^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~514~^2.037^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~515~^2.565^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~516~^1.375^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~517~^1.209^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~518~^1.103^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~606~^1.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~611~^0.010^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~612~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~613~^0.510^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~614~^0.630^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~617~^0.680^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~618~^0.260^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~619~^0.090^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~620~^0.170^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~621~^0.040^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~626~^0.050^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~628~^0.000^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~629~^0.060^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~630~^0.010^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~631~^0.050^3^0.000^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~645~^0.770^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17196~^~646~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~312~^0.494^38^0.124^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~315~^0.080^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~404~^0.320^4^0.042^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~405~^1.900^4^0.164^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~406~^6.990^4^0.267^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~410~^3.300^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~415~^0.370^4^0.059^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~501~^0.202^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~502~^0.719^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~503~^0.670^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~504~^1.276^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~505~^1.048^3^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~506~^0.330^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~507~^0.175^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~508~^0.748^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~509~^0.604^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~510~^0.833^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~511~^0.971^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~512~^0.381^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~513~^0.833^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~514~^1.363^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~515~^1.465^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~516~^0.930^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~517~^0.773^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~518~^0.687^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~606~^0.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17197~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17197~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17197~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17197~^~611~^0.010^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~612~^0.060^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~613~^0.520^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~614~^0.350^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~617~^0.590^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~618~^0.300^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~619~^0.040^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~620~^0.180^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~621~^0.020^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~626~^0.060^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17197~^~628~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~629~^0.050^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~630~^0.010^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~631~^0.040^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~645~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17197~^~646~^0.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~312~^0.360^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~315~^0.127^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~404~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~405~^1.990^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~406~^4.630^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~410~^0.860^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~415~^0.180^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~501~^0.338^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~502~^1.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~503~^1.119^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~504~^2.131^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~505~^1.751^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~506~^0.552^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~507~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~508~^1.248^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~509~^1.009^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~510~^1.392^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~511~^1.622^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~512~^0.636^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~513~^1.392^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~514~^2.277^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~515~^2.447^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~516~^1.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~517~^1.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~518~^1.147^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~606~^1.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~611~^0.010^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~612~^0.110^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~613~^0.940^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~614~^0.630^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~617~^1.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~618~^0.550^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~619~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~620~^0.320^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~621~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~626~^0.100^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~628~^0.000^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~629~^0.090^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~630~^0.030^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~631~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~645~^1.240^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17198~^~646~^1.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~312~^6.979^520^0.228^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~315~^0.184^13^0.028^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~404~^0.340^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~405~^3.630^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~406~^16.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~410~^6.130^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~415~^0.900^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~501~^0.236^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~502~^0.882^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~503~^0.878^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~504~^1.665^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~505~^1.102^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~506~^0.442^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~507~^0.214^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~508~^0.910^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~509~^0.727^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~510~^1.122^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~511~^1.143^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~512~^0.479^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~513~^1.022^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~514~^1.758^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~515~^2.198^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~516~^0.985^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~517~^0.974^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~518~^0.878^6^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~606~^1.940^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~612~^0.050^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~613~^0.680^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~614~^1.120^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~617~^0.920^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~618~^0.320^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~619~^0.070^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~620~^0.360^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~626~^0.130^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~645~^1.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17199~^~646~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~312~^7.074^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~315~^0.520^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~404~^0.230^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~405~^4.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~406~^12.150^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~410~^3.960^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~415~^0.490^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~501~^0.355^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~502~^1.322^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~503~^1.316^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~504~^2.497^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~505~^1.653^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~506~^0.664^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~507~^0.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~508~^1.365^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~509~^1.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~510~^1.683^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~511~^1.714^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~512~^0.718^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~513~^1.533^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~514~^2.636^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~515~^3.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~516~^1.478^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~517~^1.462^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~518~^1.316^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~606~^3.410^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~612~^0.100^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~613~^1.200^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~614~^1.960^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~617~^1.620^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~618~^0.570^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~619~^0.120^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~620~^0.630^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~626~^0.220^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~17200~^~645~^1.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17200~^~646~^1.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~312~^9.830^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~315~^0.594^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~404~^0.350^3^0.092^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~405~^4.590^3^0.146^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~406~^16.680^3^1.841^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~410~^6.330^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~415~^0.950^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~501~^0.296^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~502~^1.104^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~503~^1.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~504~^2.086^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~505~^1.381^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~506~^0.554^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~507~^0.268^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~508~^1.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~509~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~510~^1.405^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~511~^1.432^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~512~^0.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~513~^1.281^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~514~^2.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~515~^2.754^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~516~^1.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~517~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~518~^1.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~606~^4.900^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~612~^0.140^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~613~^1.720^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~614~^2.820^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~617~^2.330^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~618~^0.810^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~619~^0.170^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~620~^0.900^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~626~^0.320^21^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17201~^~645~^2.640^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17201~^~646~^1.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17202~^~312~^11.865^2^^~1~^~A~^^^1^8.530^15.200^1^^^^~02/01/2003~ -~17202~^~315~^0.255^2^^~1~^~A~^^^1^0.178^0.332^1^^^^~02/01/2003~ -~17202~^~404~^0.173^2^^~1~^~A~^^^1^0.152^0.194^1^^^^~02/01/2003~ -~17202~^~405~^2.440^2^^~1~^~A~^^^1^1.720^3.160^1^^^^~02/01/2003~ -~17202~^~406~^10.550^2^^~1~^~A~^^^1^10.400^10.700^1^^^^~02/01/2003~ -~17202~^~410~^6.065^2^^~1~^~A~^^^1^4.870^7.260^1^^^^~02/01/2003~ -~17202~^~415~^0.957^2^^~1~^~A~^^^1^0.833^1.080^1^^^^~02/01/2003~ -~17202~^~501~^0.274^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~502~^0.873^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~503~^0.968^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~504~^1.905^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~505~^1.627^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~506~^0.562^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~507~^0.372^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~508~^1.094^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~509~^0.793^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~510~^1.268^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~511~^1.397^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~512~^0.630^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~513~^1.356^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~514~^2.043^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~515~^2.741^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~516~^1.739^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~517~^1.248^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~518~^0.981^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17202~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17202~^~605~^0.215^2^^~1~^~A~^^^1^0.200^0.230^1^^^^~02/01/2003~ -~17202~^~606~^1.560^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~607~^0.000^2^^~7~^~Z~^^^1^^^^^^^~02/01/2003~ -~17202~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~612~^0.047^2^^~1~^~A~^^^1^0.029^0.065^1^^^^~02/01/2003~ -~17202~^~613~^0.637^2^^~1~^~A~^^^1^0.484^0.789^1^^^^~02/01/2003~ -~17202~^~614~^0.824^2^^~1~^~A~^^^1^0.698^0.949^1^^^^~02/01/2003~ -~17202~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~617~^0.856^2^^~1~^~A~^^^1^0.646^1.066^1^^^^~02/01/2003~ -~17202~^~618~^0.517^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17202~^~619~^0.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17202~^~620~^0.266^2^^~1~^~A~^^^1^0.231^0.300^1^^^^~02/01/2003~ -~17202~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~624~^0.004^2^^~1~^~A~^^^1^0.000^0.008^1^^^~1~^~02/01/2003~ -~17202~^~625~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~02/01/2003~ -~17202~^~626~^0.082^2^^~1~^~A~^^^1^0.054^0.109^1^^^^~02/01/2003~ -~17202~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~628~^0.013^2^^~1~^~A~^^^1^0.009^0.016^1^^^^~02/01/2003~ -~17202~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17202~^~645~^0.968^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~646~^0.829^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17202~^~652~^0.012^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~02/01/2003~ -~17202~^~653~^0.037^2^^~1~^~A~^^^1^0.030^0.044^1^^^^~02/01/2003~ -~17202~^~672~^0.012^2^^~1~^~A~^^^1^0.011^0.013^1^^^^~02/01/2003~ -~17202~^~675~^0.517^2^^~1~^~A~^^^1^0.469^0.564^1^^^^~02/01/2003~ -~17202~^~685~^0.008^2^^~1~^~A~^^^1^0.000^0.015^1^^^~1~^~02/01/2003~ -~17202~^~687~^0.013^2^^~1~^~A~^^^1^0.000^0.026^1^^^~1~^~02/01/2003~ -~17202~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17202~^~851~^0.028^2^^~1~^~A~^^^1^0.012^0.043^1^^^^~02/01/2003~ -~17203~^~312~^14.940^2^^~1~^~A~^^^1^9.380^20.500^1^^^^~02/01/2003~ -~17203~^~315~^0.270^2^^~1~^~A~^^^1^0.263^0.276^1^^^^~02/01/2003~ -~17203~^~404~^0.182^2^^~1~^~A~^^^1^0.154^0.209^1^^^^~02/01/2003~ -~17203~^~405~^2.860^2^^~1~^~A~^^^1^2.640^3.080^1^^^^~02/01/2003~ -~17203~^~406~^13.150^2^^~1~^~A~^^^1^12.500^13.800^1^^^^~02/01/2003~ -~17203~^~410~^6.555^2^^~1~^~A~^^^1^5.890^7.220^1^^^^~02/01/2003~ -~17203~^~415~^0.918^2^^~1~^~A~^^^1^0.836^0.999^1^^^^~02/01/2003~ -~17203~^~501~^0.361^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~502~^1.149^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~503~^1.274^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~504~^2.507^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~505~^2.141^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~506~^0.740^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~507~^0.490^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~508~^1.440^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~509~^1.044^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~510~^1.669^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~511~^1.838^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~512~^0.829^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~513~^1.784^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~514~^2.688^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~515~^3.607^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~516~^2.288^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~517~^1.642^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~518~^1.291^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17203~^~605~^0.305^2^^~1~^~A~^^^1^0.210^0.400^1^^^^~02/01/2003~ -~17203~^~606~^1.986^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~607~^0.000^2^^~7~^~Z~^^^1^^^^^^^~02/01/2003~ -~17203~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~612~^0.048^2^^~1~^~A~^^^1^0.036^0.060^1^^^^~02/01/2003~ -~17203~^~613~^0.736^2^^~1~^~A~^^^1^0.688^0.784^1^^^^~02/01/2003~ -~17203~^~614~^1.130^2^^~1~^~A~^^^1^0.878^1.382^1^^^^~02/01/2003~ -~17203~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~617~^1.016^2^^~1~^~A~^^^1^0.984^1.048^1^^^^~02/01/2003~ -~17203~^~618~^0.648^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17203~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17203~^~620~^0.326^2^^~1~^~A~^^^1^0.292^0.360^1^^^^~02/01/2003~ -~17203~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~624~^0.012^2^^~1~^~A~^^^1^0.011^0.013^1^^^^~02/01/2003~ -~17203~^~625~^0.005^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~02/01/2003~ -~17203~^~626~^0.097^2^^~1~^~A~^^^1^0.088^0.106^1^^^^~02/01/2003~ -~17203~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~628~^0.016^2^^~1~^~A~^^^1^0.015^0.016^1^^^^~02/01/2003~ -~17203~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17203~^~645~^1.146^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~646~^1.069^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17203~^~652~^0.014^2^^~1~^~A~^^^1^0.012^0.015^1^^^^~02/01/2003~ -~17203~^~653~^0.047^2^^~1~^~A~^^^1^0.035^0.058^1^^^^~02/01/2003~ -~17203~^~672~^0.019^2^^~1~^~A~^^^1^0.015^0.022^1^^^^~02/01/2003~ -~17203~^~675~^0.648^2^^~1~^~A~^^^1^0.627^0.668^1^^^^~02/01/2003~ -~17203~^~685~^0.009^2^^~1~^~A~^^^1^0.000^0.017^1^^^~1~^~02/01/2003~ -~17203~^~687~^0.013^2^^~1~^~A~^^^1^0.000^0.025^1^^^~1~^~02/01/2003~ -~17203~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17203~^~851~^0.030^2^^~1~^~A~^^^1^0.016^0.044^1^^^^~02/01/2003~ -~17204~^~312~^15.050^2^^~1~^~A~^^^1^10.700^19.400^1^^^^~02/01/2003~ -~17204~^~315~^0.302^2^^~1~^~A~^^^1^0.247^0.356^1^^^^~02/01/2003~ -~17204~^~404~^0.178^2^^~1~^~A~^^^1^0.175^0.180^1^^^^~02/01/2003~ -~17204~^~405~^3.060^2^^~1~^~A~^^^1^2.500^3.620^1^^^^~02/01/2003~ -~17204~^~406~^14.350^2^^~1~^~A~^^^1^13.700^15.000^1^^^^~02/01/2003~ -~17204~^~410~^7.075^2^^~1~^~A~^^^1^6.290^7.860^1^^^^~02/01/2003~ -~17204~^~415~^0.891^2^^~1~^~A~^^^1^0.761^1.020^1^^^^~02/01/2003~ -~17204~^~501~^0.347^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~502~^1.106^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~503~^1.227^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~504~^2.414^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~505~^2.062^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~506~^0.712^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~507~^0.471^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~508~^1.387^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~509~^1.005^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~510~^1.607^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~511~^1.771^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~512~^0.798^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~513~^1.719^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~514~^2.589^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~515~^3.474^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~516~^2.204^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~517~^1.582^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~518~^1.243^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~17204~^~605~^0.285^2^^~1~^~A~^^^1^0.270^0.300^1^^^^~02/01/2003~ -~17204~^~606~^2.109^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~607~^0.000^2^^~7~^~Z~^^^1^^^^^^^~02/01/2003~ -~17204~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17204~^~610~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~02/01/2003~ -~17204~^~611~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~02/01/2003~ -~17204~^~612~^0.075^2^^~1~^~A~^^^1^0.038^0.112^1^^^^~02/01/2003~ -~17204~^~613~^0.884^2^^~1~^~A~^^^1^0.522^1.246^1^^^^~02/01/2003~ -~17204~^~614~^1.075^2^^~1~^~A~^^^1^1.049^1.100^1^^^^~02/01/2003~ -~17204~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17204~^~617~^1.037^2^^~1~^~A~^^^1^0.602^1.471^1^^^^~02/01/2003~ -~17204~^~618~^0.704^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17204~^~619~^0.047^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~17204~^~620~^0.348^2^^~1~^~A~^^^1^0.340^0.355^1^^^^~02/01/2003~ -~17204~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~624~^0.006^2^^~1~^~A~^^^1^0.000^0.012^1^^^~1~^~02/01/2003~ -~17204~^~625~^0.014^2^^~1~^~A~^^^1^0.010^0.018^1^^^~1~^~02/01/2003~ -~17204~^~626~^0.115^2^^~1~^~A~^^^1^0.056^0.173^1^^^^~02/01/2003~ -~17204~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~628~^0.010^2^^~1~^~A~^^^1^0.000^0.019^1^^^~1~^~02/01/2003~ -~17204~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~17204~^~645~^1.194^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~646~^1.159^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~17204~^~652~^0.016^2^^~1~^~A~^^^1^0.011^0.020^1^^^^~02/01/2003~ -~17204~^~653~^0.044^2^^~1~^~A~^^^1^0.041^0.046^1^^^^~02/01/2003~ -~17204~^~672~^0.014^2^^~1~^~A~^^^1^0.011^0.016^1^^^^~02/01/2003~ -~17204~^~675~^0.704^2^^~1~^~A~^^^1^0.566^0.842^1^^^^~02/01/2003~ -~17204~^~685~^0.008^2^^~1~^~A~^^^1^0.000^0.016^1^^^~1~^~02/01/2003~ -~17204~^~687~^0.019^2^^~1~^~A~^^^1^0.000^0.038^1^^^~1~^~02/01/2003~ -~17204~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17204~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~17204~^~851~^0.039^2^^~1~^~A~^^^1^0.012^0.066^1^^^^~02/01/2003~ -~17205~^~312~^0.254^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~404~^0.048^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~405~^0.237^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~406~^4.124^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~415~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~501~^0.171^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~502~^0.614^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~503~^0.527^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~504~^1.337^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~505~^1.080^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~506~^0.301^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~507~^0.262^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~508~^0.688^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~509~^0.471^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~510~^0.920^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~511~^1.005^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~512~^0.420^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~513~^1.053^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~514~^1.318^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~515~^1.795^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~516~^1.409^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~517~^1.066^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~518~^0.666^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~606~^0.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~645~^0.670^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17205~^~646~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~312~^0.234^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~315~^0.016^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~404~^0.034^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~405~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~406~^2.428^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~415~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~501~^0.204^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~502~^0.731^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~503~^0.628^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~504~^1.591^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~505~^1.286^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~506~^0.359^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~507~^0.312^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~508~^0.819^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~509~^0.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~510~^1.095^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~511~^1.196^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~512~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~513~^1.253^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~514~^1.569^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~515~^2.137^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~516~^1.677^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~517~^1.269^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~518~^0.793^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~606~^1.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~645~^0.800^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17206~^~646~^0.430^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~312~^0.241^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~315~^0.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~404~^0.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~405~^0.231^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~406~^4.025^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~415~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~501~^0.129^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~502~^0.606^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~503~^0.676^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~504~^0.931^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~505~^1.208^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~506~^0.259^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~507~^0.139^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~508~^0.579^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~509~^0.344^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~510~^0.694^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~606~^0.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~645~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17207~^~646~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~312~^0.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~315~^0.015^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~404~^0.032^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~405~^0.131^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~406~^2.289^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~415~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~501~^0.149^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~502~^0.697^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~503~^0.777^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~504~^1.071^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~505~^1.388^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~506~^0.297^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~507~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~508~^0.665^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~509~^0.396^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~510~^0.797^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~606~^0.910^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~645~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17208~^~646~^0.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~312~^0.058^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~315~^0.012^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~404~^0.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~405~^0.118^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~406~^2.546^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~415~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~502~^0.525^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~503~^0.838^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~504~^1.138^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~505~^1.138^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~506~^0.419^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~508~^0.584^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~510~^0.719^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~511~^1.063^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~512~^0.525^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~606~^11.790^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~645~^8.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17209~^~646~^0.760^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~312~^0.061^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~315~^0.040^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~404~^0.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~405~^0.250^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~406~^3.700^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~410~^1.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~415~^0.070^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~501~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~502~^0.546^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~503~^0.522^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~504~^0.950^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~505~^1.282^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~506~^0.214^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~507~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~508~^0.499^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~509~^0.356^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~510~^0.641^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~511~^0.878^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~512~^0.427^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~513~^0.760^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~514~^1.021^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~515~^2.065^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~516~^0.926^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~517~^0.760^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~518~^0.593^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~606~^4.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~611~^0.060^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~612~^0.420^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~613~^1.880^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~614~^1.940^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~617~^3.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~618~^0.180^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~619~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~620~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~626~^0.220^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~628~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~645~^3.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17210~^~646~^0.480^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~312~^0.083^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~315~^0.043^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~404~^0.020^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~406~^2.560^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~410~^0.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~415~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~501~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~502~^0.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~503~^0.804^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~504~^1.461^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~505~^1.972^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~506~^0.329^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~507~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~508~^0.767^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~509~^0.548^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~510~^0.986^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~511~^1.351^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~512~^0.657^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~513~^1.169^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~514~^1.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~515~^3.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~516~^1.424^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~517~^1.169^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~518~^0.913^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~606~^6.840^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~611~^0.090^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~612~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~613~^2.890^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~614~^2.980^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~617~^4.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~618~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~619~^0.290^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~620~^0.170^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~626~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~645~^5.450^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17211~^~646~^0.740^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~312~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~315~^0.151^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~404~^0.134^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~405~^0.425^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~406~^4.252^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~415~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~606~^4.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~645~^4.540^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17212~^~646~^2.440^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~312~^0.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~315~^0.235^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~404~^0.187^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~405~^0.506^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~406~^4.146^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~415~^0.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17213~^~606~^5.010^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~17213~^~645~^5.030^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~17213~^~646~^2.720^0^^~1~^~A~^^^^^^^^^^~08/01/1996~ -~17214~^~312~^0.121^8^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~315~^0.051^26^0.003^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~404~^0.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~405~^0.348^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~406~^7.895^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~415~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~501~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~502~^0.702^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~503~^1.090^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~504~^1.530^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~505~^1.332^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~506~^0.327^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~507~^0.220^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~508~^0.782^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~509~^0.501^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~510~^1.123^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~511~^1.087^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~512~^0.572^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~513~^1.112^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~514~^1.492^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~515~^2.003^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~516~^1.117^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~517~^0.958^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~518~^0.751^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~606~^1.030^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~645~^0.810^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17214~^~646~^0.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~312~^0.139^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~315~^0.062^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~404~^0.051^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~405~^0.316^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~406~^5.868^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~415~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~501~^0.292^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~502~^1.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~503~^1.677^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~504~^2.354^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~505~^2.049^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~506~^0.504^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~507~^0.339^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~508~^1.202^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~509~^0.771^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~510~^1.727^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~511~^1.672^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~512~^0.881^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~513~^1.710^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~514~^2.295^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~515~^3.082^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~516~^1.719^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~517~^1.473^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~518~^1.156^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~606~^1.580^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~645~^1.270^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17215~^~646~^0.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~312~^0.167^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~315~^0.072^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~404~^0.047^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~405~^0.348^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~406~^7.895^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~415~^0.110^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~501~^0.180^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~502~^0.741^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~503~^0.841^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~504~^1.162^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~505~^1.354^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~506~^0.399^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~507~^0.216^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~508~^0.650^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~509~^0.499^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~510~^0.850^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~606~^0.730^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~617~^0.500^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~618~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~645~^0.590^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17216~^~646~^0.160^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~312~^0.925^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~315~^0.075^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~404~^0.046^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~405~^0.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~406~^5.341^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~415~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~501~^0.236^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~502~^0.975^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~503~^1.106^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~504~^1.529^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~505~^1.782^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~506~^0.525^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~507~^0.284^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~508~^0.855^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~509~^0.657^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~510~^1.118^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~606~^0.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~617~^0.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~618~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~645~^0.780^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17217~^~646~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17218~^~312~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~404~^0.069^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~405~^0.188^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~406~^4.770^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~410~^1.230^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~415~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~605~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~606~^0.806^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~612~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~613~^0.446^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~614~^0.286^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~617~^0.703^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~618~^0.147^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~17218~^~620~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~626~^0.049^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17218~^~645~^0.775^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~646~^0.229^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~672~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17218~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17218~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~312~^0.072^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~315~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~404~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~406~^3.380^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~410~^1.080^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~415~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~605~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~606~^0.942^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~612~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~613~^0.522^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~614~^0.342^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~617~^0.823^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~618~^0.189^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~619~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2009~ -~17219~^~620~^0.109^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~626~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~628~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~17219~^~645~^0.903^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~646~^0.315^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~672~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~17219~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17219~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~17220~^~312~^0.212^5^0.012^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~315~^0.049^6^0.006^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~404~^0.150^3^0.010^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~405~^0.380^3^0.058^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~406~^4.650^3^0.161^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~410~^0.970^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~415~^0.180^3^0.044^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~501~^0.159^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~502~^0.710^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~503~^0.613^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~504~^1.117^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~505~^1.112^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~506~^0.333^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~507~^0.171^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~508~^0.586^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~509~^0.465^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~510~^0.752^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~511~^1.034^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~512~^0.347^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~513~^0.900^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~514~^1.403^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~515~^2.026^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~516~^1.022^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~517~^0.826^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~518~^0.618^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~606~^6.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~611~^0.030^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~612~^0.480^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~613~^3.290^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~614~^2.520^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~617~^7.820^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~618~^0.480^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~619~^0.510^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~620~^0.060^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~621~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~626~^0.430^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~628~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~629~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~630~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~631~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~645~^8.460^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17220~^~646~^1.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~312~^0.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~315~^0.033^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~404~^0.080^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~405~^0.420^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~406~^3.690^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~410~^0.340^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~415~^0.170^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~501~^0.218^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~502~^0.975^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~503~^0.843^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~504~^1.535^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~505~^1.527^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~506~^0.457^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~507~^0.236^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~508~^0.805^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~509~^0.639^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~510~^1.033^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~511~^1.421^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~512~^0.477^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~513~^1.237^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~514~^1.928^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~515~^2.783^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~516~^1.404^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~517~^1.135^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~518~^0.849^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~606~^7.830^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~611~^0.040^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~612~^0.570^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~613~^3.890^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~614~^2.980^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~617~^9.240^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~618~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~619~^0.610^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~620~^0.080^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~621~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~626~^0.510^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~628~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~629~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~630~^0.230^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~631~^0.000^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~645~^10.000^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17221~^~646~^1.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~312~^0.200^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~315~^0.023^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~404~^0.170^2^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~405~^0.410^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~406~^2.220^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~410~^1.200^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~415~^0.190^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~501~^0.185^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~502~^0.691^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~503~^0.736^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~504~^1.238^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~505~^1.263^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~506~^0.354^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~507~^0.171^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~508~^0.677^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~509~^0.515^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~510~^0.788^5^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~511~^1.005^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~512~^0.392^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~513~^0.960^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~514~^1.462^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~515~^2.333^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~516~^1.008^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~517~^0.812^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~518~^0.639^4^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~606~^2.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~617~^2.230^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~618~^0.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~645~^2.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17222~^~646~^0.310^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~312~^0.210^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~315~^0.047^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~404~^0.070^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~405~^0.350^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~406~^1.470^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~410~^0.740^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~415~^0.150^1^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~501~^0.279^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~502~^1.040^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~503~^1.108^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~504~^1.863^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~505~^1.901^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~506~^0.533^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~507~^0.257^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~508~^1.018^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~509~^0.774^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~510~^1.186^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~511~^1.512^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~512~^0.589^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~513~^1.444^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~514~^2.200^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~515~^3.510^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~516~^1.516^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~517~^1.221^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~518~^0.961^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~606~^4.350^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~617~^4.300^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~618~^0.280^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~645~^4.610^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17223~^~646~^0.380^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~312~^0.101^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~315~^0.019^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~404~^0.110^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~405~^0.210^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~406~^5.960^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~410~^0.650^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~501~^0.193^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~502~^0.709^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~503~^0.799^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~504~^1.288^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~505~^1.462^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~506~^0.425^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~507~^0.198^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~508~^0.674^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~509~^0.556^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~510~^0.893^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~511~^0.984^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~512~^0.524^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~513~^0.996^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~514~^1.457^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~515~^2.402^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~516~^0.809^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~517~^0.694^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~518~^0.615^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~606~^10.190^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~610~^0.060^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~611~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~612~^0.930^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~613~^5.130^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~614~^3.220^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~617~^8.620^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~618~^1.360^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~619~^0.420^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~620~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~626~^0.680^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17224~^~645~^9.600^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17224~^~646~^1.850^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~312~^0.128^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~315~^0.024^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~405~^0.250^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~406~^6.700^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~410~^0.660^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~415~^0.140^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~501~^0.289^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~502~^1.059^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~503~^1.194^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~504~^1.925^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~505~^2.186^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~506~^0.635^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~507~^0.295^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~508~^1.008^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~509~^0.832^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~510~^1.335^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~511~^1.470^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~512~^0.784^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~513~^1.488^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~514~^2.178^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~515~^3.591^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~516~^1.209^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~517~^1.038^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~518~^0.920^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~606~^8.120^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~610~^0.050^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~611~^0.080^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~612~^0.750^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~613~^4.150^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~614~^2.630^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~617~^7.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~618~^1.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~619~^0.260^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~620~^0.070^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~626~^0.570^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~17225~^~645~^8.320^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17225~^~646~^1.400^0^^~1~^^^^^^^^^^^~04/01/1989~ -~17226~^~312~^0.108^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~405~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~406~^6.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~410~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~501~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~502~^0.751^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~503~^0.846^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~504~^1.365^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~505~^1.549^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~506~^0.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~507~^0.209^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~508~^0.714^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~509~^0.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~510~^0.947^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~511~^1.042^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~512~^0.556^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~513~^1.055^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~514~^1.544^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~515~^2.546^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~516~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~517~^0.736^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~518~^0.652^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~606~^8.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~612~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~613~^4.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~614~^2.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~617~^6.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~618~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~626~^0.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~645~^7.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17226~^~646~^1.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~312~^0.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~406~^6.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~410~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~501~^0.298^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~502~^1.092^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~503~^1.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~504~^1.984^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~505~^2.253^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~506~^0.655^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~507~^0.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~508~^1.038^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~509~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~510~^1.376^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~511~^1.516^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~512~^0.808^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~513~^1.534^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~514~^2.245^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~515~^3.702^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~516~^1.246^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~517~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~518~^0.948^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~606~^7.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~613~^3.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~614~^2.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~617~^6.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~618~^0.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~619~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~626~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~645~^7.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17227~^~646~^1.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~312~^0.101^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~406~^5.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~410~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~415~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~501~^0.221^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~502~^0.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~503~^0.913^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~504~^1.471^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~505~^1.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~506~^0.485^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~507~^0.226^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~508~^0.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~509~^0.636^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~510~^1.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~511~^1.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~512~^0.599^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~513~^1.138^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~514~^1.665^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~515~^2.745^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~516~^0.924^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~517~^0.793^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~518~^0.703^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~606~^5.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~612~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~613~^2.940^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~614~^1.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~617~^4.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~618~^0.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~619~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~626~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~645~^5.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17228~^~646~^1.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~312~^0.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~315~^0.025^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~404~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~406~^5.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~410~^0.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~415~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~501~^0.332^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~502~^1.214^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~503~^1.369^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~504~^2.207^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~505~^2.505^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~506~^0.728^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~507~^0.339^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~508~^1.155^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~509~^0.954^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~510~^1.531^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~511~^1.686^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~512~^0.899^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~513~^1.706^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~514~^2.497^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~515~^4.117^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~516~^1.386^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~517~^1.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~518~^1.055^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~606~^5.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~612~^0.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~613~^2.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~614~^1.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~617~^5.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~618~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~619~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~626~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~645~^5.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17229~^~646~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~312~^0.116^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~406~^6.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~410~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~415~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~501~^0.216^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~502~^0.791^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~503~^0.891^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~504~^1.437^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~505~^1.631^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~506~^0.474^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~507~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~508~^0.752^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~509~^0.621^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~510~^0.997^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~511~^1.097^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~512~^0.585^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~513~^1.111^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~514~^1.626^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~515~^2.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~516~^0.902^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~517~^0.775^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~518~^0.687^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~606~^6.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~612~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~613~^3.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~614~^1.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~617~^5.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~618~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~626~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~645~^5.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17230~^~646~^1.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~312~^0.116^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~315~^0.025^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~405~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~406~^6.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~410~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~415~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~501~^0.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~502~^1.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~503~^1.264^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~504~^2.038^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~505~^2.314^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~506~^0.672^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~507~^0.313^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~508~^1.067^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~509~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~510~^1.414^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~511~^1.556^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~512~^0.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~513~^1.576^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~514~^2.306^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~515~^3.802^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~516~^1.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~517~^1.099^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~518~^0.974^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~606~^5.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~612~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~613~^3.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~614~^1.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~617~^5.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~618~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~619~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~620~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~626~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~645~^6.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17231~^~646~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~312~^0.117^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~315~^0.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~406~^6.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~410~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~415~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~501~^0.222^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~502~^0.813^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~503~^0.916^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~504~^1.477^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~505~^1.677^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~506~^0.487^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~507~^0.227^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~508~^0.773^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~509~^0.638^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~510~^1.025^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~511~^1.128^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~512~^0.602^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~513~^1.142^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~514~^1.672^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~515~^2.756^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~516~^0.928^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~517~^0.797^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~518~^0.706^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~606~^4.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~612~^0.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~613~^2.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~614~^1.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~617~^4.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~618~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~619~^0.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~626~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~645~^4.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17232~^~646~^0.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~312~^0.118^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~315~^0.026^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~405~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~406~^6.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~410~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~415~^0.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~501~^0.312^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~502~^1.144^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~503~^1.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~504~^2.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~505~^2.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~506~^0.686^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~507~^0.319^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~508~^1.088^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~509~^0.898^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~510~^1.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~511~^1.588^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~512~^0.847^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~513~^1.607^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~514~^2.353^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~515~^3.879^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~516~^1.305^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~517~^1.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~518~^0.994^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~606~^4.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~610~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~611~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~612~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~613~^2.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~614~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~617~^4.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~618~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~619~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~620~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~626~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~645~^4.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17233~^~646~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~312~^0.114^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~315~^0.019^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~405~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~406~^6.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~410~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~501~^0.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~502~^0.737^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~503~^0.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~504~^1.339^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~505~^1.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~506~^0.442^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~507~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~508~^0.701^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~509~^0.579^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~510~^0.929^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~511~^1.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~512~^0.545^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~513~^1.035^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~514~^1.515^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~515~^2.498^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~516~^0.841^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~517~^0.722^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~518~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~606~^9.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~612~^0.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~613~^4.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~614~^2.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~617~^7.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~618~^1.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~619~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~626~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~645~^8.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17234~^~646~^1.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~312~^0.113^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~315~^0.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~405~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~406~^6.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~410~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~501~^0.292^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~502~^1.068^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~503~^1.204^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~504~^1.941^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~505~^2.203^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~506~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~507~^0.298^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~508~^1.016^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~509~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~510~^1.346^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~511~^1.482^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~512~^0.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~513~^1.501^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~514~^2.196^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~515~^3.621^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~516~^1.219^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~517~^1.047^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~518~^0.928^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~606~^8.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~612~^0.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~613~^4.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~614~^2.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~617~^7.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~618~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~619~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~626~^0.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~645~^8.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17235~^~646~^1.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~312~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~315~^0.019^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~406~^6.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~410~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~501~^0.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~502~^0.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~503~^0.829^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~504~^1.336^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~505~^1.517^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~506~^0.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~507~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~508~^0.699^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~509~^0.577^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~510~^0.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~511~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~512~^0.544^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~513~^1.033^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~514~^1.512^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~515~^2.492^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~516~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~517~^0.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~518~^0.639^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~606~^9.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~611~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~612~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~613~^5.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~614~^3.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~617~^8.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~618~^1.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~619~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~626~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~645~^9.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17236~^~646~^1.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~312~^0.133^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~315~^0.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~406~^7.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~410~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~501~^0.305^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~502~^1.116^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~503~^1.258^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~504~^2.027^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~505~^2.302^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~506~^0.669^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~507~^0.311^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~508~^1.061^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~509~^0.876^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~510~^1.406^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~511~^1.548^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~512~^0.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~513~^1.568^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~514~^2.294^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~515~^3.782^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~516~^1.273^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~517~^1.093^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~518~^0.969^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~606~^8.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~612~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~613~^4.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~614~^2.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~617~^7.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~618~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~619~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~626~^0.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~645~^8.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17237~^~646~^1.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~312~^0.122^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~406~^7.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~410~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~501~^0.272^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~502~^0.996^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~503~^1.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~504~^1.810^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~505~^2.055^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~506~^0.597^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~507~^0.278^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~508~^0.947^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~509~^0.782^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~510~^1.256^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~511~^1.383^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~512~^0.737^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~513~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~514~^2.048^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~515~^3.377^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~516~^1.137^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~517~^0.976^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~518~^0.865^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~606~^9.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~612~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~613~^4.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~614~^2.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~617~^7.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~618~^1.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~619~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~626~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~645~^8.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17238~^~646~^1.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~312~^0.092^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~405~^0.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~406~^6.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~410~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~415~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~501~^0.179^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~502~^0.656^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~503~^0.739^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~504~^1.191^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~505~^1.353^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~506~^0.393^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~507~^0.183^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~508~^0.624^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~509~^0.515^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~510~^0.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~511~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~512~^0.485^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~513~^0.921^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~514~^1.348^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~515~^2.223^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~516~^0.748^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~517~^0.642^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~518~^0.569^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~606~^13.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~611~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~612~^1.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~613~^6.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~614~^4.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~617~^11.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~618~^1.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~619~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~620~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~626~^0.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~645~^12.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17239~^~646~^2.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~312~^0.124^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~405~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~406~^6.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~410~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~501~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~502~^0.987^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~503~^1.113^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~504~^1.794^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~505~^2.037^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~506~^0.592^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~507~^0.275^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~508~^0.939^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~509~^0.775^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~510~^1.244^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~511~^1.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~512~^0.731^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~513~^1.387^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~514~^2.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~515~^3.347^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~516~^1.126^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~517~^0.967^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~518~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~606~^11.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~611~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~612~^1.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~613~^5.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~614~^3.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~617~^9.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~618~^1.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~619~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~620~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~626~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~645~^10.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17240~^~646~^2.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~312~^0.117^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~406~^6.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~410~^0.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~415~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~501~^0.255^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~502~^0.934^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~503~^1.053^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~504~^1.697^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~505~^1.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~506~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~507~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~508~^0.888^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~509~^0.733^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~510~^1.177^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~511~^1.296^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~512~^0.691^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~513~^1.312^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~514~^1.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~515~^3.166^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~516~^1.065^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~517~^0.915^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~518~^0.811^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~606~^11.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~611~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~612~^1.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~613~^5.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~614~^3.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~617~^10.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~618~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~619~^0.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~620~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~626~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~645~^11.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17241~^~646~^1.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~312~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~406~^5.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~410~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~501~^0.199^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~502~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~503~^0.823^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~504~^1.328^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~505~^1.507^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~506~^0.438^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~507~^0.204^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~508~^0.695^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~509~^0.574^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~510~^0.921^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~511~^1.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~512~^0.541^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~513~^1.026^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~514~^1.502^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~515~^2.477^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~516~^0.834^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~517~^0.716^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~518~^0.635^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~606~^8.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~612~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~613~^4.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~614~^2.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~617~^6.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~618~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~626~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~645~^7.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17242~^~646~^1.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~312~^0.126^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~315~^0.026^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~405~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~406~^6.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~410~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~501~^0.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~502~^1.261^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~503~^1.421^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~504~^2.292^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~505~^2.602^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~506~^0.756^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~507~^0.352^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~508~^1.199^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~509~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~510~^1.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~511~^1.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~512~^0.933^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~513~^1.772^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~514~^2.593^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~515~^4.275^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~516~^1.439^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~517~^1.236^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~518~^1.095^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~606~^9.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~612~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~613~^4.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~614~^3.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~617~^8.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~618~^1.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~619~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~620~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~626~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~645~^9.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17243~^~646~^1.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~312~^0.126^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~406~^6.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~410~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~501~^0.279^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~502~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~503~^1.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~504~^1.854^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~505~^2.105^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~506~^0.612^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~507~^0.285^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~508~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~509~^0.801^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~510~^1.286^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~511~^1.416^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~512~^0.755^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~513~^1.434^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~514~^2.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~515~^3.459^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~516~^1.164^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~517~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~518~^0.886^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~606~^7.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~613~^3.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~614~^2.440^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~617~^7.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~618~^1.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~626~^0.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~645~^7.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17244~^~646~^1.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~312~^0.108^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~315~^0.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~406~^6.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~410~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~501~^0.265^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~502~^0.971^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~503~^1.095^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~504~^1.765^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~505~^2.004^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~506~^0.582^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~507~^0.271^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~508~^0.924^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~509~^0.763^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~510~^1.225^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~511~^1.348^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~512~^0.719^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~513~^1.365^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~514~^1.998^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~515~^3.294^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~516~^1.109^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~517~^0.952^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~518~^0.844^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~606~^7.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~612~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~613~^4.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~614~^2.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~617~^7.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~618~^1.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~620~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~626~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~645~^7.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17245~^~646~^1.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~312~^0.104^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~405~^0.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~406~^6.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~410~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~501~^0.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~502~^0.736^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~503~^0.829^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~504~^1.337^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~505~^1.518^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~506~^0.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~507~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~508~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~509~^0.578^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~510~^0.928^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~511~^1.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~512~^0.545^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~513~^1.034^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~514~^1.513^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~515~^2.494^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~516~^0.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~517~^0.721^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~518~^0.639^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~606~^8.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~612~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~613~^4.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~614~^2.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~617~^6.980^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~618~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~619~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~620~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~626~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~645~^7.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17246~^~646~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~312~^0.141^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~315~^0.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~405~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~406~^6.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~410~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~501~^0.363^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~502~^1.331^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~503~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~504~^2.419^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~505~^2.746^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~506~^0.798^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~507~^0.371^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~508~^1.266^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~509~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~510~^1.678^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~511~^1.847^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~512~^0.985^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~513~^1.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~514~^2.737^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~515~^4.512^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~516~^1.519^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~517~^1.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~518~^1.156^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~606~^9.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~612~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~613~^4.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~614~^3.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~617~^8.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~618~^1.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~619~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~620~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~626~^0.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~645~^9.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17247~^~646~^1.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~312~^0.135^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~405~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~406~^6.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~410~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~415~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~501~^0.291^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~502~^1.066^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~503~^1.202^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~504~^1.937^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~505~^2.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~506~^0.639^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~507~^0.297^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~508~^1.014^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~509~^0.837^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~510~^1.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~511~^1.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~512~^0.789^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~513~^1.498^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~514~^2.192^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~515~^3.615^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~516~^1.217^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~517~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~518~^0.926^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~606~^7.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~612~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~613~^3.890^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~614~^2.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~617~^6.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~618~^1.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~626~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~645~^7.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17248~^~646~^1.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~312~^0.114^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~315~^0.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~405~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~406~^6.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~410~^0.710^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~501~^0.268^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~502~^0.982^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~503~^1.106^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~504~^1.784^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~505~^2.025^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~506~^0.589^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~507~^0.274^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~508~^0.934^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~509~^0.771^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~510~^1.237^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~511~^1.362^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~512~^0.726^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~513~^1.379^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~514~^2.019^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~515~^3.328^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~516~^1.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~517~^0.962^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~518~^0.853^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~606~^8.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~612~^0.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~613~^4.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~614~^2.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~617~^6.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~618~^1.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~619~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~620~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~626~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~645~^7.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17249~^~646~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~312~^0.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~406~^5.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~410~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~415~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~501~^0.199^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~502~^0.728^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~503~^0.821^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~504~^1.323^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~505~^1.502^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~506~^0.437^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~507~^0.203^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~508~^0.692^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~509~^0.572^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~510~^0.918^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~511~^1.011^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~512~^0.539^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~513~^1.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~514~^1.497^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~515~^2.468^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~516~^0.831^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~517~^0.714^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~518~^0.632^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~606~^8.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~612~^0.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~613~^4.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~614~^2.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~617~^6.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~618~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~626~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~645~^7.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17250~^~646~^1.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~312~^0.121^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~315~^0.027^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~404~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~405~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~406~^6.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~410~^0.610^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~501~^0.338^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~502~^1.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~503~^1.395^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~504~^2.249^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~505~^2.554^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~506~^0.742^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~507~^0.345^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~508~^1.177^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~509~^0.972^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~510~^1.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~511~^1.718^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~512~^0.916^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~513~^1.739^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~514~^2.545^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~515~^4.196^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~516~^1.412^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~517~^1.213^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~518~^1.075^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~606~^9.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~612~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~613~^5.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~614~^3.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~617~^8.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~618~^1.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~619~^0.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~620~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~626~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~645~^9.740^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17251~^~646~^1.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~312~^0.123^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~405~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~406~^6.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~410~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~415~^0.150^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~501~^0.274^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~502~^1.005^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~503~^1.133^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~504~^1.826^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~505~^2.073^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~506~^0.603^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~507~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~508~^0.956^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~509~^0.789^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~510~^1.267^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~511~^1.395^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~512~^0.744^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~513~^1.412^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~514~^2.067^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~515~^3.407^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~516~^1.147^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~517~^0.985^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~518~^0.873^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~606~^7.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~613~^3.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~614~^2.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~617~^7.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~618~^1.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~619~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~620~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~626~^0.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~645~^7.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17252~^~646~^1.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~312~^0.107^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~315~^0.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~404~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~405~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~406~^5.840^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~410~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~501~^0.264^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~502~^0.968^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~503~^1.091^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~504~^1.759^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~505~^1.997^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~506~^0.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~507~^0.270^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~508~^0.921^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~509~^0.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~510~^1.221^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~511~^1.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~512~^0.717^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~513~^1.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~514~^1.991^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~515~^3.282^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~516~^1.105^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~517~^0.949^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~518~^0.841^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~606~^7.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~613~^4.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~614~^2.540^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~617~^7.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~618~^1.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~620~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~626~^0.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~628~^0.000^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~645~^7.830^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17253~^~646~^1.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~312~^0.089^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~405~^0.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~406~^6.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~410~^0.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~415~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~501~^0.210^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~502~^0.768^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~503~^0.866^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~504~^1.396^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~505~^1.585^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~506~^0.461^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~507~^0.214^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~508~^0.731^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~509~^0.603^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~510~^0.968^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~511~^1.066^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~512~^0.569^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~513~^1.079^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~514~^1.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~515~^2.604^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~516~^0.877^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~517~^0.753^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~518~^0.667^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~606~^8.640^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~612~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~613~^3.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~614~^3.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~617~^6.170^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~618~^0.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~619~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~626~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~645~^6.600^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17254~^~646~^0.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~312~^0.102^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~315~^0.023^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~404~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~405~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~406~^7.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~410~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~501~^0.295^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~502~^1.081^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~503~^1.218^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~504~^1.964^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~505~^2.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~506~^0.648^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~507~^0.301^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~508~^1.028^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~509~^0.849^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~510~^1.363^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~511~^1.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~512~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~513~^1.519^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~514~^2.223^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~515~^3.665^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~516~^1.233^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~517~^1.059^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~518~^0.939^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~606~^8.760^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~611~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~612~^0.690^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~613~^3.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~614~^3.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~617~^6.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~618~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~619~^0.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~626~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~645~^6.960^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17255~^~646~^0.880^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~312~^0.095^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~315~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~405~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~406~^6.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~410~^0.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~501~^0.211^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~502~^0.772^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~503~^0.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~504~^1.403^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~505~^1.593^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~506~^0.463^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~507~^0.215^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~508~^0.734^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~509~^0.606^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~510~^0.974^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~511~^1.072^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~512~^0.572^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~513~^1.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~514~^1.588^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~515~^2.618^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~516~^0.881^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~517~^0.757^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~518~^0.671^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~606~^8.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~612~^0.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~613~^3.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~614~^3.220^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~617~^5.790^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~618~^0.390^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~619~^0.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~620~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~626~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~645~^6.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17256~^~646~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~312~^0.102^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~404~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~405~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~406~^6.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~410~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~415~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~501~^0.315^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~502~^1.154^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~503~^1.301^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~504~^2.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~505~^2.382^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~506~^0.692^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~507~^0.322^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~508~^1.098^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~509~^0.906^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~510~^1.455^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~511~^1.602^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~512~^0.854^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~513~^1.622^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~514~^2.374^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~515~^3.914^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~516~^1.317^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~517~^1.131^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~518~^1.003^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~606~^7.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~610~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~611~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~612~^0.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~613~^3.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~614~^3.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~617~^5.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~618~^0.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~619~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~626~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~645~^6.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17257~^~646~^0.730^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~312~^0.095^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~315~^0.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~404~^0.140^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~405~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~406~^6.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~410~^0.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~501~^0.219^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~502~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~503~^0.905^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~504~^1.459^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~505~^1.656^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~506~^0.481^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~507~^0.224^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~508~^0.764^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~509~^0.630^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~510~^1.012^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~511~^1.114^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~512~^0.594^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~513~^1.128^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~514~^1.651^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~515~^2.722^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~516~^0.916^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~517~^0.787^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~518~^0.697^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~606~^6.670^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~612~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~613~^2.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~614~^2.620^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~617~^4.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~618~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~619~^0.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~620~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~626~^0.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~645~^5.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17258~^~646~^0.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~312~^0.105^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~315~^0.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~405~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~406~^7.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~410~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~415~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~501~^0.296^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~502~^1.085^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~503~^1.223^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~504~^1.971^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~505~^2.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~506~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~507~^0.302^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~508~^1.032^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~509~^0.852^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~510~^1.367^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~511~^1.506^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~512~^0.803^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~513~^1.524^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~514~^2.231^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~515~^3.678^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~516~^1.238^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~517~^1.063^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~518~^0.942^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~606~^6.750^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~610~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~611~^0.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~612~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~613~^3.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~614~^2.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~617~^5.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~618~^0.410^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~619~^0.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~626~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~628~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~645~^5.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17259~^~646~^0.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~312~^0.087^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~315~^0.018^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~404~^0.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~405~^0.300^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~406~^6.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~410~^0.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~415~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~501~^0.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~502~^0.735^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~503~^0.829^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~504~^1.336^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~505~^1.517^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~506~^0.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~507~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~508~^0.699^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~509~^0.577^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~510~^0.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~511~^1.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~512~^0.544^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~513~^1.033^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~514~^1.512^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~515~^2.493^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~516~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~517~^0.721^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~518~^0.639^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~606~^11.230^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~612~^0.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~613~^4.870^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~614~^4.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~617~^7.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~618~^0.530^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~619~^0.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~620~^0.010^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~626~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~645~^8.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17260~^~646~^0.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~312~^0.112^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~315~^0.022^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~405~^0.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~406~^7.920^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~410~^0.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~415~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~501~^0.285^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~502~^1.045^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~503~^1.178^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~504~^1.898^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~505~^2.155^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~506~^0.626^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~507~^0.291^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~508~^0.994^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~509~^0.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~510~^1.317^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~511~^1.450^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~512~^0.773^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~513~^1.468^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~514~^2.148^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~515~^3.542^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~516~^1.192^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~517~^1.024^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~518~^0.907^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~606~^10.560^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~612~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~613~^4.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~614~^4.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~617~^7.660^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~618~^0.580^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~619~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~626~^0.380^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~645~^8.200^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17261~^~646~^0.990^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~312~^0.067^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~315~^0.017^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~405~^0.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~406~^6.290^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~410~^0.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~415~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~501~^0.186^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~502~^0.679^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~503~^0.766^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~504~^1.235^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~505~^1.402^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~506~^0.407^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~507~^0.189^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~508~^0.646^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~509~^0.533^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~510~^0.857^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~511~^0.943^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~512~^0.503^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~513~^0.955^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~514~^1.397^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~515~^2.304^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~516~^0.775^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~517~^0.666^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~518~^0.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~606~^13.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~610~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~611~^0.110^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~612~^1.130^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~613~^5.950^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~614~^5.400^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~617~^9.680^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~618~^0.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~619~^0.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~626~^0.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~645~^10.350^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17262~^~646~^1.160^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~312~^0.072^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~315~^0.018^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~404~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~405~^0.280^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~406~^6.720^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~410~^0.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~415~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~501~^0.232^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~502~^0.850^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~503~^0.958^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~504~^1.545^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~505~^1.754^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~506~^0.510^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~507~^0.237^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~508~^0.808^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~509~^0.667^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~510~^1.072^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~511~^1.180^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~512~^0.629^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~513~^1.194^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~514~^1.748^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~515~^2.882^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~516~^0.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~517~^0.833^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~518~^0.738^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~606~^12.820^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~611~^0.100^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~612~^1.050^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~613~^5.650^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~614~^4.970^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~617~^9.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~618~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~619~^0.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~620~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~626~^0.470^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~628~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~645~^9.930^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17263~^~646~^1.190^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~312~^0.083^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~315~^0.019^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~404~^0.120^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~405~^0.310^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~406~^5.460^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~410~^0.550^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~415~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~501~^0.201^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~502~^0.736^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~503~^0.829^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~504~^1.337^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~505~^1.518^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~506~^0.441^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~507~^0.205^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~508~^0.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~509~^0.578^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~510~^0.927^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~511~^1.021^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~512~^0.544^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~513~^1.034^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~514~^1.513^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~515~^2.494^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~516~^0.839^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~517~^0.721^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~518~^0.639^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~606~^9.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~610~^0.060^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~611~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~612~^0.800^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~613~^4.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~614~^3.900^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~617~^7.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~618~^0.490^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~619~^0.360^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~620~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~626~^0.340^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~628~^0.030^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~645~^7.570^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17264~^~646~^0.860^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~312~^0.106^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~315~^0.026^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~404~^0.080^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~405~^0.330^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~406~^6.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~410~^0.520^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~415~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~501~^0.344^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~502~^1.260^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~503~^1.420^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~504~^2.289^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~505~^2.599^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~506~^0.755^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~507~^0.351^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~508~^1.198^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~509~^0.989^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~510~^1.588^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~511~^1.748^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~512~^0.932^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~513~^1.770^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~514~^2.590^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~515~^4.271^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~516~^1.437^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~517~^1.234^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~518~^1.094^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~606~^11.500^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~610~^0.070^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~611~^0.090^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~612~^0.910^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~613~^5.240^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~614~^4.320^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~617~^8.700^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~618~^0.780^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~619~^0.430^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~620~^0.040^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~626~^0.480^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~628~^0.020^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~645~^9.370^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17265~^~646~^1.250^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~ -~17267~^~312~^0.155^94^0.005^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~315~^0.015^95^0.004^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~404~^0.045^12^0.003^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~405~^0.097^24^0.008^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17267~^~406~^2.017^24^0.149^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17267~^~415~^0.259^12^0.014^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17267~^~501~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~502~^0.881^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~503~^0.902^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~504~^1.662^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~505~^1.669^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~506~^0.508^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~507~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~508~^0.801^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~509~^0.688^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~510~^0.968^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~511~^1.269^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~512~^0.567^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~513~^1.216^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~514~^1.856^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~515~^3.118^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~516~^1.028^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~517~^0.854^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~518~^0.815^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17267~^~606~^0.885^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~612~^0.025^100^0.040^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~613~^0.342^100^0.200^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~614~^0.397^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~617~^0.904^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~618~^0.209^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~619~^0.008^100^0.050^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~624~^0.048^100^0.190^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~625~^0.002^100^0.010^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~626~^0.050^100^0.060^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~628~^0.006^100^0.030^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~630~^0.024^100^0.200^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~645~^0.986^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~646~^0.217^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~652~^0.023^100^0.080^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17267~^~653~^0.025^100^0.040^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~312~^0.130^95^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~315~^0.013^96^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~404~^0.046^12^0.003^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~405~^0.090^24^0.006^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17268~^~406~^1.838^24^0.102^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17268~^~415~^0.252^12^0.013^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17268~^~501~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~502~^0.910^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~503~^0.931^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~504~^1.716^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~505~^1.723^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~506~^0.524^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~507~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~508~^0.827^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~509~^0.710^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~510~^1.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~511~^1.310^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~512~^0.586^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~513~^1.256^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~514~^1.917^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~515~^3.220^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~516~^1.062^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~517~^0.882^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~518~^0.841^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17268~^~606~^0.898^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~612~^0.025^100^0.050^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~613~^0.361^100^0.200^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~614~^0.395^100^0.200^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~617~^0.919^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~618~^0.184^100^0.400^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~619~^0.008^100^0.090^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~624~^0.040^100^0.170^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~625~^0.002^100^0.020^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~626~^0.048^100^0.060^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~628~^0.006^100^0.040^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~630~^0.021^100^0.190^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~645~^0.996^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~646~^0.192^100^0.400^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~652~^0.050^100^0.110^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17268~^~653~^0.027^100^0.050^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~312~^0.148^92^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~315~^0.014^93^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~404~^0.042^12^0.003^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~405~^0.096^24^0.007^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17269~^~406~^1.879^24^0.113^~1~^~A~^^^^^^^^^^~04/01/1999~ -~17269~^~415~^0.221^12^0.012^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17269~^~501~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~502~^0.868^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~503~^0.889^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~504~^1.639^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~505~^1.645^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~506~^0.500^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~507~^0.000^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~508~^0.790^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~509~^0.678^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~510~^0.954^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~511~^1.251^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~512~^0.559^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~513~^1.198^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~514~^1.830^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~515~^3.074^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~516~^1.014^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~517~^0.842^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~518~^0.803^0^^~4~^~PIE~^^^^^^^^^^~03/01/1999~ -~17269~^~606~^0.749^100^0.400^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~612~^0.018^100^0.040^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~613~^0.283^100^0.200^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~614~^0.327^100^0.300^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~617~^0.787^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~618~^0.208^100^0.400^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~619~^0.009^100^0.050^~1~^~A~^^^^^^^^^^~03/01/1999~ -~17269~^~624~^0.045^100^0.210^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~625~^0.002^100^0.020^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~626~^0.044^100^0.050^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~628~^0.005^100^0.030^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~630~^0.022^100^0.220^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~645~^0.861^100^0.500^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~646~^0.217^100^0.400^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~652~^0.051^100^0.100^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17269~^~653~^0.022^100^0.040^~1~^~A~^^^^^^^^^^~02/01/1999~ -~17270~^~312~^0.042^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~315~^0.010^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17270~^~404~^0.020^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~405~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~406~^2.790^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~410~^0.450^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~415~^0.110^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17270~^~501~^0.095^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~502~^0.411^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~503~^0.463^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~504~^0.747^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~505~^0.775^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~506~^0.220^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~507~^0.107^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~508~^0.379^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~509~^0.299^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~510~^0.519^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~511~^0.553^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~512~^0.341^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~513~^0.559^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~514~^0.811^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~515~^1.487^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~516~^0.483^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~517~^0.393^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~518~^0.352^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~606~^21.407^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~611~^0.351^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~612~^3.319^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~613~^12.497^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~614~^4.934^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~617~^22.820^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~618~^2.633^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~619~^0.168^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~626~^2.440^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~628~^0.217^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~645~^26.410^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17270~^~646~^2.865^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~312~^0.094^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~315~^0.010^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17271~^~501~^0.176^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~502~^0.763^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~503~^0.861^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~504~^1.389^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~505~^1.439^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~506~^0.408^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~507~^0.198^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~508~^0.704^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~509~^0.556^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~510~^0.964^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~511~^1.029^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~512~^0.634^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~513~^1.040^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~514~^1.507^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~515~^2.764^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~516~^0.897^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~517~^0.729^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~518~^0.654^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~606~^5.896^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~611~^0.094^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~612~^0.871^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~613~^3.405^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~614~^1.446^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~617~^6.213^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~618~^0.824^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~619~^0.052^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~620~^0.057^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~626~^0.650^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~628~^0.061^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~645~^7.164^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17271~^~646~^0.952^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17272~^~312~^0.071^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~404~^0.054^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~405~^0.296^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~406~^7.981^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~410~^1.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~415~^0.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~501~^0.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~502~^1.178^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~503~^1.329^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~504~^2.145^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~505~^2.222^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~506~^0.630^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~507~^0.306^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~508~^1.087^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~509~^0.858^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~510~^1.489^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~511~^1.588^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~512~^0.979^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~513~^1.606^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~514~^2.326^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~515~^4.268^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~516~^1.385^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~517~^1.126^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~518~^1.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~606~^6.550^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~611~^0.111^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~612~^0.974^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~613~^3.790^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~614~^1.580^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~617~^6.926^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~618~^0.945^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~619~^0.055^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~620~^0.082^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~626~^0.742^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~628~^0.067^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~645~^8.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17272~^~646~^1.120^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~404~^0.053^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~405~^0.296^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~406~^7.895^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~410~^1.031^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~415~^0.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~501~^0.262^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~502~^1.132^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~503~^1.277^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~504~^2.062^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~505~^2.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~506~^0.606^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~507~^0.294^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~508~^1.045^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~509~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~510~^1.431^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~511~^1.526^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~512~^0.941^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~513~^1.543^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~514~^2.236^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~515~^4.103^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~516~^1.331^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~517~^1.083^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~518~^0.971^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~606~^7.434^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~611~^0.125^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~612~^1.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~613~^4.309^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~614~^1.780^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~617~^7.872^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~618~^1.046^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~619~^0.061^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~620~^0.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~626~^0.843^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~628~^0.076^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~645~^9.107^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17273~^~646~^1.224^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~312~^0.073^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~404~^0.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~405~^0.309^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~406~^8.352^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~410~^1.071^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~415~^0.272^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~501~^0.285^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~502~^1.233^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~503~^1.391^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~504~^2.245^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~505~^2.326^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~506~^0.659^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~507~^0.320^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~508~^1.138^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~509~^0.898^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~510~^1.559^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~511~^1.662^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~512~^1.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~513~^1.680^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~514~^2.435^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~515~^4.467^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~516~^1.450^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~517~^1.179^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~518~^1.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~606~^5.489^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~611~^0.094^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~612~^0.806^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~613~^3.169^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~614~^1.340^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~617~^5.791^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~618~^0.825^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~619~^0.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~620~^0.088^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~626~^0.621^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~628~^0.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~645~^6.698^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17274~^~646~^0.996^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17275~^~312~^0.076^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~315~^0.008^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17275~^~404~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~405~^0.330^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~406~^8.970^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~410~^1.140^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~415~^0.290^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17275~^~501~^0.306^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~502~^1.324^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~503~^1.494^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~504~^2.411^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~505~^2.498^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~506~^0.708^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~507~^0.344^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~508~^1.222^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~509~^0.965^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~510~^1.674^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~511~^1.785^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~512~^1.101^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~513~^1.805^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~514~^2.615^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~515~^4.798^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~516~^1.557^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~517~^1.266^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~518~^1.135^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~606~^3.720^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~611~^0.065^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~612~^0.527^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~613~^2.132^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~614~^0.941^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~617~^3.899^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~618~^0.624^0^^~1~^^^^^^^^^^^~05/01/1997~ -~17275~^~619~^0.033^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~620~^0.098^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~626~^0.419^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~628~^0.038^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~645~^4.508^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17275~^~646~^0.788^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17276~^~312~^0.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~404~^0.079^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~405~^0.268^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~406~^7.458^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~410~^1.291^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~415~^0.437^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~501~^0.193^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~502~^0.836^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~503~^0.943^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~504~^1.522^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~505~^1.578^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~506~^0.447^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~508~^0.772^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~509~^0.610^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~510~^1.057^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~511~^1.127^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~512~^0.695^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~513~^1.140^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~514~^1.650^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~515~^3.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~516~^0.983^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~517~^0.799^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~518~^0.717^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~606~^1.060^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~612~^0.120^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~613~^0.581^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~614~^0.324^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~617~^1.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~618~^0.269^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~619~^0.014^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~626~^0.122^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~645~^1.257^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17276~^~646~^0.363^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~312~^0.111^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~404~^0.049^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~405~^0.295^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~406~^9.454^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~410~^1.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~415~^0.265^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~501~^0.318^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~502~^1.377^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~503~^1.554^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~504~^2.508^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~505~^2.599^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~506~^0.737^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~507~^0.258^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~508~^1.271^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~509~^1.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~510~^1.740^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~511~^1.857^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~512~^1.145^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~513~^1.877^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~514~^2.720^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~515~^4.990^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~516~^1.620^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~517~^1.316^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~518~^1.180^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~606~^2.078^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~612~^0.236^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~613~^1.122^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~614~^0.636^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~617~^2.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~618~^0.415^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~619~^0.029^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~620~^0.089^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~626~^0.233^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~628~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~645~^2.339^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17277~^~646~^0.541^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~ -~17278~^~312~^0.074^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~315~^0.009^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17278~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~405~^0.270^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~406~^7.600^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~410~^1.300^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~415~^0.440^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17278~^~501~^0.194^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~502~^0.842^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~503~^0.950^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~504~^1.533^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~505~^1.589^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~506~^0.450^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~507~^0.219^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~508~^0.777^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~509~^0.614^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~510~^1.064^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~511~^1.135^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~512~^0.700^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~513~^1.148^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~514~^1.663^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~515~^3.051^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~516~^0.990^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~517~^0.805^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~518~^0.722^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~606~^0.738^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~611~^0.010^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~612~^0.084^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~613~^0.416^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~614~^0.220^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~617~^0.857^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~618~^0.244^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~619~^0.008^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~620~^0.075^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~626~^0.088^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~628~^0.007^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~645~^0.982^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17278~^~646~^0.334^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~312~^0.113^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~315~^0.015^2^^~1~^~A~^^^^^^^^^^~04/01/1997~ -~17279~^~404~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~405~^0.300^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~406~^9.660^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~410~^1.250^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~415~^0.270^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~ -~17279~^~501~^0.325^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~502~^1.407^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~503~^1.588^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~504~^2.562^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~505~^2.655^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~506~^0.753^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~507~^0.366^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~508~^1.299^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~509~^1.026^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~510~^1.778^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~511~^1.897^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~512~^1.170^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~513~^1.918^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~514~^2.779^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~515~^5.098^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~516~^1.655^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~517~^1.345^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~518~^1.206^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~606~^1.140^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~611~^0.016^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~612~^0.131^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~613~^0.643^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~614~^0.332^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~617~^1.354^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~618~^0.346^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~619~^0.012^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~620~^0.092^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~626~^0.135^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~628~^0.012^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~645~^1.546^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17279~^~646~^0.458^0^^~1~^^^^^^^^^^^~04/01/1997~ -~17280~^~312~^0.145^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~404~^0.133^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~405~^0.261^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~406~^4.934^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~410~^0.557^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~415~^0.339^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~501~^0.208^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~502~^0.762^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~503~^0.862^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~504~^1.387^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~505~^1.576^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~506~^0.457^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~507~^0.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~508~^0.725^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~509~^0.599^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~510~^0.962^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~511~^1.059^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~512~^0.565^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~513~^1.073^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~514~^1.570^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~515~^2.589^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~516~^0.871^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~517~^0.748^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~518~^0.662^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17280~^~606~^8.189^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17280~^~610~^0.029^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~611~^0.053^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~612~^0.662^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~613~^3.863^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~614~^3.195^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~615~^0.029^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~617~^6.372^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~618~^0.422^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~619~^0.202^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~620~^0.069^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~625~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~626~^0.326^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~628~^0.062^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~645~^6.910^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17280~^~646~^0.718^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17280~^~652~^0.104^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17280~^~653~^0.255^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~312~^0.142^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~404~^0.123^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~405~^0.332^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~406~^5.441^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~410~^0.816^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~415~^0.366^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~501~^0.286^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~502~^1.048^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~503~^1.185^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~504~^1.907^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~505~^2.166^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~506~^0.628^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~507~^0.294^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~508~^0.997^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~509~^0.824^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~510~^1.322^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~511~^1.456^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~512~^0.777^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~513~^1.475^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~514~^2.158^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~515~^3.558^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~516~^1.197^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~517~^1.028^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~518~^0.910^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17281~^~606~^7.940^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17281~^~610~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~611~^0.049^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~612~^0.633^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~613~^3.721^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~614~^3.129^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~615~^0.032^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~617~^6.195^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~618~^0.410^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~619~^0.196^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~620~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~625~^0.028^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~626~^0.307^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~628~^0.059^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~645~^6.711^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17281~^~646~^0.660^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17281~^~652~^0.097^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17281~^~653~^0.251^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~312~^0.165^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~404~^0.149^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~405~^0.293^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~406~^5.595^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~410~^0.618^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~415~^0.386^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~501~^0.236^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~502~^0.865^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~503~^0.978^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~504~^1.574^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~505~^1.788^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~506~^0.518^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~507~^0.243^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~508~^0.823^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~509~^0.680^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~510~^1.092^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~511~^1.202^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~512~^0.641^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~513~^1.218^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~514~^1.782^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~515~^2.938^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~516~^0.988^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~517~^0.849^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~518~^0.752^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17282~^~606~^2.540^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~611~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~612~^0.188^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~613~^1.297^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~614~^0.929^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~617~^2.338^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~618~^0.167^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~619~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~626~^0.116^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~628~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~645~^2.530^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~646~^0.276^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~652~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17282~^~653~^0.071^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~312~^0.153^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~404~^0.131^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~405~^0.360^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~406~^5.812^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~410~^0.876^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~415~^0.394^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~501~^0.312^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~502~^1.141^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~503~^1.291^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~504~^2.077^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~505~^2.359^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~506~^0.684^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~507~^0.321^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~508~^1.086^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~509~^0.898^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~510~^1.440^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~511~^1.586^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~512~^0.846^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~513~^1.607^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~514~^2.351^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~515~^3.877^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~516~^1.304^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~517~^1.120^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~518~^0.992^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17283~^~606~^4.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~612~^0.303^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~613~^2.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~614~^1.501^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~615~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~617~^3.567^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~618~^0.249^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~619~^0.116^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~625~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~626~^0.174^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~628~^0.030^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~645~^3.857^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~646~^0.418^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~652~^0.044^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17283~^~653~^0.119^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17284~^~312~^0.046^6^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~404~^0.057^3^0.009^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~405~^0.107^3^0.017^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~406~^1.753^3^0.093^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~410~^0.263^3^0.054^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~415~^0.111^3^0.012^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~501~^0.073^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~502~^0.268^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~503~^0.303^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~504~^0.487^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~505~^0.553^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~506~^0.160^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~507~^0.075^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~508~^0.255^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~509~^0.211^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~510~^0.338^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~511~^0.372^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~512~^0.199^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~513~^0.377^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~514~^0.551^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~515~^0.909^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~516~^0.306^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~517~^0.263^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~518~^0.233^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17284~^~606~^35.353^6^1.326^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17284~^~610~^0.142^6^0.017^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~611~^0.241^6^0.021^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~612~^2.942^6^0.223^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~613~^16.200^6^0.234^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~614~^14.089^6^1.121^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~615~^0.131^6^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~617~^25.771^6^1.141^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~618~^1.652^6^0.125^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~619~^0.798^6^0.060^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~620~^0.263^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~625~^0.120^6^0.017^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~626~^1.334^6^0.112^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~628~^0.246^4^0.085^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~645~^27.975^6^1.156^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17284~^~646~^2.844^6^0.250^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17284~^~652~^0.470^6^0.048^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17284~^~653~^1.138^6^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~312~^0.065^6^0.012^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~315~^0.010^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~404~^0.063^3^0.015^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~405~^0.140^3^0.012^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~406~^2.890^3^0.217^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~410~^0.400^3^0.040^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~415~^0.171^3^0.023^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~501~^0.110^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~502~^0.402^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~503~^0.455^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~504~^0.732^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~505~^0.832^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~506~^0.241^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~507~^0.113^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~508~^0.383^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~509~^0.316^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~510~^0.508^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~511~^0.559^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~512~^0.298^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~513~^0.567^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~514~^0.829^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~515~^1.367^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~516~^0.460^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~517~^0.395^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~518~^0.350^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17285~^~606~^34.751^6^0.687^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17285~^~610~^0.148^6^0.021^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~611~^0.232^6^0.021^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~612~^2.911^6^0.121^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~613~^15.366^6^0.197^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~614~^14.343^6^0.754^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~615~^0.127^6^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~617~^24.299^6^0.528^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~618~^1.519^6^0.093^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~619~^0.749^6^0.054^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~620~^0.063^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~625~^0.127^6^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~626~^1.223^6^0.115^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~628~^0.253^4^0.041^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~645~^26.377^6^0.621^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17285~^~646~^2.331^6^0.153^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17285~^~652~^0.464^6^0.021^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17285~^~653~^1.160^6^0.056^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17286~^~312~^0.092^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~404~^0.094^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~405~^0.219^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~406~^5.265^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~410~^0.623^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~415~^0.264^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~501~^0.220^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~502~^0.805^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~503~^0.911^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~504~^1.466^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~505~^1.665^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~506~^0.482^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~507~^0.226^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~508~^0.766^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~509~^0.633^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~510~^1.016^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~511~^1.119^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~512~^0.597^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~513~^1.134^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~514~^1.659^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~515~^2.735^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~516~^0.920^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~517~^0.790^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~518~^0.700^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17286~^~606~^5.981^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17286~^~610~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~611~^0.039^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~612~^0.489^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~613~^2.844^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~614~^2.298^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~617~^4.870^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~618~^0.349^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~619~^0.159^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~620~^0.063^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~625~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~626~^0.258^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~628~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~645~^5.293^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17286~^~646~^0.596^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17286~^~652~^0.077^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17286~^~653~^0.188^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~312~^0.116^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~404~^0.086^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~405~^0.262^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~406~^5.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~410~^0.618^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~415~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~501~^0.289^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~502~^1.058^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~503~^1.197^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~504~^1.927^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~505~^2.188^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~506~^0.634^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~507~^0.297^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~508~^1.007^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~509~^0.832^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~510~^1.336^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~511~^1.471^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~512~^0.785^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~513~^1.491^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~514~^2.180^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~515~^3.595^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~516~^1.209^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~517~^1.039^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~518~^0.920^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17287~^~606~^6.794^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17287~^~611~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~612~^0.562^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~613~^3.186^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~614~^2.694^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~617~^5.474^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~618~^0.375^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~619~^0.178^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~620~^0.040^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~626~^0.289^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~645~^5.959^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17287~^~646~^0.601^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17287~^~652~^0.088^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17287~^~653~^0.219^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17288~^~312~^0.099^3^0.012^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~315~^0.010^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~404~^0.100^3^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~405~^0.237^3^0.019^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~406~^5.820^3^0.494^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~410~^0.680^3^0.029^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~415~^0.288^3^0.015^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~501~^0.243^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~502~^0.890^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~503~^1.007^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~504~^1.620^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~505~^1.840^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~506~^0.533^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~507~^0.250^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~508~^0.847^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~509~^0.700^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~510~^1.123^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~511~^1.237^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~512~^0.660^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~513~^1.253^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~514~^1.833^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~515~^3.023^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~516~^1.017^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~517~^0.873^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~518~^0.773^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17288~^~606~^1.344^3^0.322^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~611~^0.008^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~612~^0.102^3^0.200^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~613~^0.735^3^0.433^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~614~^0.436^3^0.702^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~615~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~617~^1.570^3^0.379^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~618~^0.143^3^0.219^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~619~^0.058^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~620~^0.032^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~625~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~626~^0.088^3^0.208^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~628~^0.013^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~645~^1.712^3^0.755^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~646~^0.241^3^0.500^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~652~^0.015^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17288~^~653~^0.038^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~312~^0.125^3^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~315~^0.011^3^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~404~^0.090^3^0.006^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~405~^0.283^3^0.085^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~406~^5.390^3^0.429^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~410~^0.657^3^0.027^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~415~^0.257^3^0.031^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~501~^0.321^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~502~^1.175^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~503~^1.329^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~504~^2.138^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~505~^2.429^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~506~^0.704^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~507~^0.330^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~508~^1.118^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~509~^0.924^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~510~^1.483^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~511~^1.632^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~512~^0.871^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~513~^1.654^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~514~^2.420^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~515~^3.991^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~516~^1.342^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~517~^1.153^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~518~^1.021^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17289~^~606~^1.884^3^1.400^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~611~^0.011^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~612~^0.145^3^0.167^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~613~^1.025^3^0.100^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~614~^0.628^3^1.081^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~617~^2.135^3^0.561^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~618~^0.172^3^0.145^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~619~^0.076^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~620~^0.036^3^0.100^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~625~^0.009^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~626~^0.123^3^0.176^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~628~^0.020^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~645~^2.338^3^1.301^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~646~^0.294^3^0.577^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~652~^0.021^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17289~^~653~^0.052^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17290~^~312~^0.173^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~404~^0.140^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~405~^0.287^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~406~^4.964^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~410~^0.488^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~415~^0.359^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~501~^0.213^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~502~^0.779^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~503~^0.881^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~504~^1.418^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~505~^1.611^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~506~^0.467^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~507~^0.219^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~508~^0.741^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~509~^0.613^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~510~^0.983^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~511~^1.082^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~512~^0.578^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~513~^1.097^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~514~^1.605^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~515~^2.646^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~516~^0.890^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~517~^0.764^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~518~^0.677^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17290~^~606~^7.288^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17290~^~610~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~611~^0.047^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~612~^0.589^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~613~^3.458^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~614~^2.821^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~615~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~617~^5.734^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~618~^0.387^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~619~^0.184^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~620~^0.065^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~625~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~626~^0.300^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~645~^6.226^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17290~^~646~^0.657^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17290~^~652~^0.091^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17290~^~653~^0.231^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~312~^0.147^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~404~^0.126^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~405~^0.386^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~406~^5.383^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~410~^0.919^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~415~^0.425^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~501~^0.294^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~502~^1.075^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~503~^1.216^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~504~^1.956^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~505~^2.222^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~506~^0.644^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~507~^0.302^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~508~^1.022^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~509~^0.845^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~510~^1.356^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~511~^1.493^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~512~^0.797^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~513~^1.513^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~514~^2.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~515~^3.651^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~516~^1.228^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~517~^1.055^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~518~^0.934^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17291~^~606~^7.091^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17291~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~611~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~612~^0.563^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~613~^3.341^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~614~^2.796^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~617~^5.610^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~618~^0.382^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~619~^0.181^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~620~^0.039^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~626~^0.279^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~628~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~645~^6.087^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17291~^~646~^0.615^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17291~^~652~^0.087^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17291~^~653~^0.230^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~312~^0.196^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~404~^0.155^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~405~^0.320^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~406~^5.560^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~410~^0.530^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~415~^0.406^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~501~^0.239^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~502~^0.874^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~503~^0.988^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~504~^1.591^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~505~^1.807^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~506~^0.524^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~507~^0.245^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~508~^0.831^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~509~^0.687^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~510~^1.103^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~511~^1.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~512~^0.648^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~513~^1.231^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~514~^1.800^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~515~^2.969^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~516~^0.998^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~517~^0.858^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~518~^0.759^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17292~^~606~^2.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~612~^0.152^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~613~^1.093^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~614~^0.730^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~617~^2.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~618~^0.152^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~619~^0.070^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~626~^0.109^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~628~^0.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~645~^2.190^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~646~^0.251^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~652~^0.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17292~^~653~^0.063^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~312~^0.158^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~404~^0.135^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~405~^0.420^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~406~^5.725^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~410~^0.990^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~415~^0.460^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~501~^0.319^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~502~^1.167^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~503~^1.320^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~504~^2.124^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~505~^2.412^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~506~^0.699^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~507~^0.328^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~508~^1.110^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~509~^0.918^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~510~^1.473^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~511~^1.621^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~512~^0.865^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~513~^1.643^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~514~^2.404^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~515~^3.964^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~516~^1.333^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~517~^1.145^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~518~^1.014^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17293~^~606~^3.297^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~612~^0.241^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~613~^1.691^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~614~^1.212^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~617~^3.047^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~618~^0.227^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~619~^0.103^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~620~^0.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~626~^0.150^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~628~^0.028^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~645~^3.304^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~646~^0.380^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~652~^0.035^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17293~^~653~^0.102^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~312~^0.181^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~404~^0.142^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~405~^0.292^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~406~^5.060^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~410~^0.495^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~415~^0.367^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~501~^0.217^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~502~^0.794^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~503~^0.898^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~504~^1.445^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~505~^1.642^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~506~^0.476^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~507~^0.223^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~508~^0.755^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~509~^0.625^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~510~^1.002^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~511~^1.103^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~512~^0.589^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~513~^1.118^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~514~^1.636^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~515~^2.697^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~516~^0.907^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~517~^0.779^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~518~^0.690^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17294~^~606~^6.389^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17294~^~610~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~611~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~612~^0.516^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~613~^3.053^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~614~^2.450^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~617~^5.109^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~618~^0.347^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~619~^0.164^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~620~^0.059^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~625~^0.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~626~^0.269^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~628~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~645~^5.549^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17294~^~646~^0.570^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17294~^~652~^0.079^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17294~^~653~^0.203^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~312~^0.138^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~404~^0.127^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~405~^0.390^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~406~^5.418^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~410~^0.926^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~415~^0.429^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~501~^0.295^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~502~^1.079^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~503~^1.220^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~504~^1.963^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~505~^2.230^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~506~^0.646^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~507~^0.303^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~508~^1.026^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~509~^0.848^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~510~^1.361^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~511~^1.499^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~512~^0.800^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~513~^1.519^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~514~^2.222^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~515~^3.664^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~516~^1.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~517~^1.058^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~518~^0.937^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17295~^~606~^6.341^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17295~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~612~^0.503^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~613~^3.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~614~^2.494^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~617~^5.117^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~618~^0.349^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~619~^0.165^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~625~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~626~^0.256^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~628~^0.050^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~645~^5.554^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17295~^~646~^0.563^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17295~^~652~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17295~^~653~^0.207^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17296~^~312~^0.202^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~315~^0.012^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~404~^0.155^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~405~^0.320^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~406~^5.560^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~410~^0.530^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~415~^0.406^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~501~^0.239^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~502~^0.874^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~503~^0.988^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~504~^1.590^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~505~^1.806^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~506~^0.524^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~507~^0.245^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~508~^0.831^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~509~^0.687^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~510~^1.103^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~511~^1.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~512~^0.648^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~513~^1.230^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~514~^1.800^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~515~^2.968^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~516~^0.998^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~517~^0.857^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~518~^0.759^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17296~^~606~^2.008^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~611~^0.011^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~612~^0.149^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~613~^1.064^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~614~^0.689^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~617~^1.984^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~618~^0.149^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~619~^0.068^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~620~^0.029^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~626~^0.108^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~628~^0.018^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~645~^2.157^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~646~^0.246^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~652~^0.020^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17296~^~653~^0.061^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~312~^0.147^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~315~^0.014^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~404~^0.135^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~405~^0.420^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~406~^5.725^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~410~^0.990^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~415~^0.460^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~501~^0.317^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~502~^1.161^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~503~^1.313^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~504~^2.113^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~505~^2.400^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~506~^0.696^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~507~^0.326^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~508~^1.104^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~509~^0.913^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~510~^1.465^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~511~^1.613^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~512~^0.861^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~513~^1.635^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~514~^2.391^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~515~^3.944^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~516~^1.326^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~517~^1.139^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~518~^1.009^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17297~^~606~^2.918^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~611~^0.013^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~612~^0.210^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~613~^1.522^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~614~^1.052^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~617~^2.783^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~618~^0.207^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~619~^0.094^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~620~^0.034^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~625~^0.013^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~626~^0.138^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~628~^0.025^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~645~^3.021^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~646~^0.348^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~652~^0.031^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17297~^~653~^0.091^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17298~^~312~^0.148^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~404~^0.133^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~405~^0.272^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~406~^4.695^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~410~^0.469^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~415~^0.339^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~501~^0.201^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~502~^0.737^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~503~^0.833^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~504~^1.341^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~505~^1.523^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~506~^0.442^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~507~^0.207^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~508~^0.701^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~509~^0.579^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~510~^0.930^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~511~^1.024^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~512~^0.546^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~513~^1.038^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~514~^1.518^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~515~^2.503^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~516~^0.842^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~517~^0.723^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~518~^0.640^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17298~^~606~^9.754^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17298~^~611~^0.062^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~612~^0.794^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~613~^4.596^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~614~^3.865^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~617~^7.489^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~618~^0.501^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~619~^0.240^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~620~^0.082^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~626~^0.389^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~628~^0.075^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~645~^8.101^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17298~^~646~^0.823^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17298~^~652~^0.126^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17298~^~653~^0.311^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~312~^0.173^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~404~^0.124^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~405~^0.376^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~406~^5.281^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~410~^0.898^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~415~^0.415^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~501~^0.291^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~502~^1.063^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~503~^1.202^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~504~^1.935^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~505~^2.197^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~506~^0.637^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~507~^0.299^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~508~^1.011^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~509~^0.836^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~510~^1.341^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~511~^1.477^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~512~^0.788^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~513~^1.497^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~514~^2.189^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~515~^3.610^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~516~^1.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~517~^1.043^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~518~^0.923^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17299~^~606~^9.245^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17299~^~610~^0.035^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~611~^0.056^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~612~^0.742^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~613~^4.279^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~614~^3.689^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~615~^0.035^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~617~^7.066^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~618~^0.482^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~619~^0.229^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17299~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~625~^0.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~626~^0.350^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~628~^0.071^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~645~^7.658^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17299~^~646~^0.771^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17299~^~652~^0.111^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17299~^~653~^0.298^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17300~^~312~^0.179^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~315~^0.017^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~404~^0.155^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~405~^0.320^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~406~^5.560^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~410~^0.530^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~415~^0.406^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~501~^0.239^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~502~^0.875^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~503~^0.989^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~504~^1.592^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~505~^1.808^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~506~^0.524^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~507~^0.246^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~508~^0.832^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~509~^0.688^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~510~^1.104^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~511~^1.215^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~512~^0.649^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~513~^1.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~514~^1.802^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~515~^2.971^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~516~^0.999^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~517~^0.858^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~518~^0.760^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17300~^~606~^2.308^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~611~^0.010^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~612~^0.163^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~613~^1.184^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~614~^0.859^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~617~^2.114^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~618~^0.163^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~619~^0.075^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~620~^0.029^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~626~^0.112^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~628~^0.024^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~645~^2.293^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~646~^0.267^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~652~^0.024^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17300~^~653~^0.068^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~312~^0.194^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~315~^0.017^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~404~^0.135^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~405~^0.420^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~406~^5.725^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~410~^0.990^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~415~^0.460^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~501~^0.324^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~502~^1.185^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~503~^1.341^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~504~^2.158^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~505~^2.451^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~506~^0.710^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~507~^0.333^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~508~^1.128^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~509~^0.932^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~510~^1.496^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~511~^1.647^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~512~^0.879^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~513~^1.669^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~514~^2.442^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~515~^4.027^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~516~^1.354^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~517~^1.163^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~518~^1.030^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17301~^~606~^4.508^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~610~^0.014^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~611~^0.023^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~612~^0.339^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~613~^2.220^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~614~^1.711^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~615~^0.018^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~617~^3.866^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~618~^0.289^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~619~^0.133^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~620~^0.041^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~625~^0.014^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~626~^0.188^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~628~^0.037^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~645~^4.182^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~646~^0.482^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~652~^0.046^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17301~^~653~^0.138^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17302~^~312~^0.139^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~404~^0.140^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~405~^0.288^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~406~^4.996^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~410~^0.490^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~415~^0.362^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~501~^0.214^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~502~^0.783^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~503~^0.886^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~504~^1.425^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~505~^1.619^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~506~^0.469^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~507~^0.220^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~508~^0.745^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~509~^0.616^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~510~^0.988^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~511~^1.088^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~512~^0.581^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~513~^1.103^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~514~^1.613^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~515~^2.660^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~516~^0.894^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~517~^0.768^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~518~^0.680^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17302~^~606~^6.898^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17302~^~610~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~611~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~612~^0.561^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~613~^3.273^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~614~^2.669^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~617~^5.417^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~618~^0.377^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~619~^0.179^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~620~^0.066^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~625~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~626~^0.279^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~628~^0.051^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~645~^5.878^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17302~^~646~^0.649^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17302~^~652~^0.085^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17302~^~653~^0.213^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~312~^0.162^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~404~^0.128^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~405~^0.391^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~406~^5.433^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~410~^0.929^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~415~^0.430^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~501~^0.301^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~502~^1.100^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~503~^1.244^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~504~^2.002^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~505~^2.274^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~506~^0.659^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~507~^0.309^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~508~^1.046^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~509~^0.865^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~510~^1.388^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~511~^1.528^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~512~^0.816^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~513~^1.549^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~514~^2.266^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~515~^3.737^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~516~^1.257^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~517~^1.079^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~518~^0.956^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17303~^~606~^6.414^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17303~^~610~^0.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~611~^0.044^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~612~^0.523^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~613~^3.042^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~614~^2.485^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~617~^5.134^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~618~^0.366^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~619~^0.175^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~625~^0.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~626~^0.263^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~628~^0.044^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~645~^5.567^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17303~^~646~^0.595^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17303~^~652~^0.080^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17303~^~653~^0.200^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17304~^~312~^0.156^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~315~^0.016^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~404~^0.155^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~405~^0.320^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~406~^5.560^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~410~^0.530^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~415~^0.406^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~501~^0.239^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~502~^0.873^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~503~^0.987^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~504~^1.588^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~505~^1.804^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~506~^0.523^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~507~^0.245^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~508~^0.830^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~509~^0.686^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~510~^1.101^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~511~^1.212^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~512~^0.647^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~513~^1.229^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~514~^1.797^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~515~^2.964^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~516~^0.997^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~517~^0.856^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~518~^0.758^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17304~^~606~^1.948^3^1.617^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~610~^0.006^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~611~^0.011^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~612~^0.146^3^0.348^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~613~^1.025^3^1.268^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~614~^0.683^3^1.367^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~615~^0.006^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~617~^1.877^3^0.895^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~618~^0.155^3^0.371^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~619~^0.072^3^0.153^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~620~^0.032^3^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~625~^0.008^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~626~^0.096^3^0.203^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~645~^2.034^3^0.895^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~646~^0.267^3^0.736^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~652~^0.018^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17304~^~653~^0.052^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~312~^0.173^3^0.018^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~315~^0.015^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~404~^0.135^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~405~^0.420^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~406~^5.725^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~410~^0.990^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~415~^0.460^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~501~^0.323^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~502~^1.180^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~503~^1.335^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~504~^2.148^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~505~^2.440^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~506~^0.707^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~507~^0.332^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~508~^1.123^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~509~^0.928^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~510~^1.490^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~511~^1.640^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~512~^0.875^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~513~^1.662^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~514~^2.431^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~515~^4.009^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~516~^1.348^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~517~^1.158^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~518~^1.025^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17305~^~606~^3.159^3^1.364^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~610~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~611~^0.022^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~612~^0.248^3^0.265^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~613~^1.626^3^1.035^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~614~^1.123^3^1.586^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~617~^2.933^3^0.851^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~618~^0.234^3^0.296^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~619~^0.110^3^0.145^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~620~^0.043^3^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~625~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~626~^0.152^3^0.203^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~645~^3.177^3^0.896^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~646~^0.396^3^0.603^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~652~^0.036^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17305~^~653~^0.089^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17306~^~312~^0.144^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~404~^0.145^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~405~^0.298^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~406~^5.167^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~410~^0.502^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~415~^0.375^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~501~^0.224^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~502~^0.819^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~503~^0.926^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~504~^1.490^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~505~^1.693^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~506~^0.491^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~507~^0.230^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~508~^0.779^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~509~^0.644^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~510~^1.033^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~511~^1.138^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~512~^0.607^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~513~^1.153^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~514~^1.687^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~515~^2.781^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~516~^0.935^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~517~^0.803^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~518~^0.711^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17306~^~606~^5.813^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17306~^~610~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~612~^0.466^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~613~^2.810^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~614~^2.212^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~617~^4.744^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~618~^0.342^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~619~^0.162^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~620~^0.063^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~625~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~626~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~628~^0.044^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~645~^5.146^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17306~^~646~^0.591^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17306~^~652~^0.069^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17306~^~653~^0.175^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~312~^0.165^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~404~^0.130^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~405~^0.400^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~406~^5.527^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~410~^0.949^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~415~^0.440^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~501~^0.298^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~502~^1.091^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~503~^1.234^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~504~^1.986^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~505~^2.255^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~506~^0.654^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~507~^0.306^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~508~^1.038^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~509~^0.858^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~510~^1.377^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~511~^1.516^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~512~^0.809^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~513~^1.536^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~514~^2.247^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~515~^3.706^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~516~^1.246^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~517~^1.071^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~518~^0.948^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17307~^~606~^5.320^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~17307~^~610~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~611~^0.037^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~612~^0.431^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~613~^2.565^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~614~^2.032^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~617~^4.386^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~618~^0.320^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~619~^0.153^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~620~^0.043^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~625~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~626~^0.225^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~628~^0.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~645~^4.755^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17307~^~646~^0.526^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17307~^~652~^0.065^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17307~^~653~^0.163^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17308~^~312~^0.156^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~315~^0.016^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~404~^0.155^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~405~^0.320^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~406~^5.560^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~410~^0.530^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~415~^0.406^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~501~^0.241^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~502~^0.882^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~503~^0.998^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~504~^1.606^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~505~^1.824^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~506~^0.529^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~507~^0.248^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~508~^0.839^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~509~^0.694^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~510~^1.113^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~511~^1.226^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~512~^0.654^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~513~^1.242^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~514~^1.817^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~515~^2.997^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~516~^1.008^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~517~^0.866^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~518~^0.767^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17308~^~606~^2.413^3^1.617^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~610~^0.008^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~611~^0.014^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~612~^0.181^3^0.348^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~613~^1.269^3^1.268^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~614~^0.846^3^1.367^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~615~^0.008^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~617~^2.324^3^0.895^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~618~^0.192^3^0.371^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~619~^0.089^3^0.153^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~620~^0.040^3^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~625~^0.010^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~626~^0.119^3^0.203^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~645~^2.519^3^0.895^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~646~^0.331^3^0.736^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~652~^0.023^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17308~^~653~^0.065^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~312~^0.173^3^0.018^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~315~^0.015^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~404~^0.135^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~405~^0.420^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~406~^5.725^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~410~^0.990^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~415~^0.460^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~501~^0.312^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~502~^1.143^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~503~^1.293^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~504~^2.080^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~505~^2.363^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~506~^0.685^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~507~^0.321^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~508~^1.087^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~509~^0.899^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~510~^1.442^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~511~^1.588^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~512~^0.847^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~513~^1.609^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~514~^2.354^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~515~^3.882^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~516~^1.305^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~517~^1.121^0^^~1~^^^^^^^^^^^~10/01/1998~ -~17309~^~518~^0.993^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17309~^~606~^3.111^3^1.364^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~610~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~611~^0.022^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~612~^0.245^3^0.265^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~613~^1.602^3^1.035^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~614~^1.106^3^1.586^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~617~^2.889^3^0.851^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~618~^0.230^3^0.296^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~619~^0.108^3^0.145^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~620~^0.042^3^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~625~^0.007^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~626~^0.150^3^0.203^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~645~^3.129^3^0.896^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~646~^0.390^3^0.603^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~652~^0.035^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17309~^~653~^0.088^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17310~^~312~^0.130^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~404~^0.169^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~405~^0.290^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~406~^6.652^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~410~^0.615^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~415~^0.445^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~501~^0.226^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~502~^0.825^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~503~^0.933^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~504~^1.502^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~505~^1.706^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~506~^0.495^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~507~^0.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~508~^0.785^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~509~^0.649^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~510~^1.042^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~511~^1.147^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~512~^0.612^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~513~^1.162^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~514~^1.700^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~515~^2.804^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~516~^0.943^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~517~^0.810^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~518~^0.717^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17310~^~606~^6.401^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17310~^~610~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~611~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~612~^0.512^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~613~^3.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~614~^2.493^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~615~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~617~^4.968^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~618~^0.327^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~619~^0.159^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~620~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~625~^0.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~626~^0.245^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~628~^0.046^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~645~^5.374^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17310~^~646~^0.540^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17310~^~652~^0.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17310~^~653~^0.193^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~312~^0.150^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~404~^0.173^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~405~^0.322^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~406~^7.831^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~410~^0.813^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~415~^0.493^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~501~^0.298^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~502~^1.089^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~503~^1.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~504~^1.982^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~505~^2.252^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~506~^0.653^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~507~^0.306^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~508~^1.036^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~509~^0.857^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~510~^1.375^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~511~^1.513^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~512~^0.808^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~513~^1.534^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~514~^2.244^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~515~^3.700^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~516~^1.244^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~517~^1.069^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~518~^0.946^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17311~^~606~^5.572^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17311~^~610~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~611~^0.034^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~612~^0.434^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~613~^2.709^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~614~^2.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~617~^4.531^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~618~^0.303^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~619~^0.146^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~625~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~626~^0.219^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~628~^0.039^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~645~^4.888^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17311~^~646~^0.486^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17311~^~652~^0.064^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17311~^~653~^0.160^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17312~^~312~^0.141^6^0.013^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~315~^0.014^6^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~404~^0.183^3^0.024^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~405~^0.313^3^0.035^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~406~^7.283^3^1.119^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~410~^0.660^3^0.081^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~415~^0.488^3^0.050^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~501~^0.245^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~502~^0.897^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~503~^1.015^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~504~^1.633^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~505~^1.855^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~506~^0.538^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~507~^0.252^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~508~^0.853^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~509~^0.706^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~510~^1.132^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~511~^1.247^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~512~^0.665^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~513~^1.263^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~514~^1.848^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~515~^3.048^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~516~^1.025^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~517~^0.880^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~518~^0.780^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17312~^~606~^2.673^6^1.147^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~610~^0.011^4^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~611~^0.015^6^0.031^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~612~^0.199^6^0.211^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~613~^1.340^6^0.551^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~614~^1.000^6^1.196^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~617~^2.289^6^0.848^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~618~^0.157^6^0.191^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~619~^0.076^6^0.079^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~620~^0.028^5^0.037^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~625~^0.011^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~626~^0.105^6^0.148^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~628~^0.020^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~645~^2.463^6^0.938^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~646~^0.261^6^0.391^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~652~^0.030^6^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17312~^~653~^0.072^6^0.084^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~312~^0.156^6^0.008^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~315~^0.014^6^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~404~^0.180^3^0.031^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~405~^0.333^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~406~^8.150^3^0.895^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~410~^0.840^3^0.029^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~415~^0.514^3^0.056^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~501~^0.310^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~502~^1.134^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~503~^1.282^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~504~^2.063^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~505~^2.343^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~506~^0.679^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~507~^0.318^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~508~^1.078^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~509~^0.892^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~510~^1.431^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~511~^1.575^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~512~^0.841^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~513~^1.596^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~514~^2.335^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~515~^3.851^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~516~^1.295^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~517~^1.112^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~518~^0.985^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17313~^~606~^3.687^6^0.624^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~610~^0.012^5^0.040^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~611~^0.021^6^0.031^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~612~^0.274^6^0.105^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~613~^1.891^6^0.490^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~614~^1.348^6^0.792^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~615~^0.008^4^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~617~^3.254^6^0.295^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~618~^0.225^6^0.142^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~619~^0.107^6^0.070^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~620~^0.035^6^0.049^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~625~^0.008^4^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~626~^0.154^6^0.129^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~628~^0.026^5^0.051^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~645~^3.499^6^0.385^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~646~^0.367^6^0.292^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~652~^0.038^6^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17313~^~653~^0.095^6^0.042^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17314~^~312~^0.091^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~404~^0.109^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~405~^0.328^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~406~^6.482^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~410~^0.577^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~415~^0.483^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~501~^0.221^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~502~^0.869^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~503~^0.885^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~504~^1.518^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~505~^1.622^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~506~^0.514^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~508~^0.791^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~509~^0.664^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~510~^0.952^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~511~^1.268^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~512~^0.556^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~513~^1.210^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~514~^1.745^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~515~^2.838^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~516~^1.122^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~517~^0.901^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~518~^0.756^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~605~^1.145^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~606~^8.128^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~610~^0.028^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~611~^0.042^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~612~^0.588^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~613~^3.772^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~614~^3.306^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~615~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~617~^6.600^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~618~^0.737^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~619~^0.177^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~620~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~624~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~625~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~626~^0.209^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~628~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~629~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~631~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~645~^6.833^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~646~^1.030^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~652~^0.104^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~653~^0.249^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~663~^0.887^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~665~^0.258^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~670~^0.182^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~674~^5.713^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~675~^0.297^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~693~^0.887^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~695~^0.258^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17314~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17314~^~851~^0.176^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~312~^0.119^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~404~^0.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~405~^0.336^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~406~^7.825^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~410~^0.625^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~415~^0.536^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~501~^0.296^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~502~^1.163^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~503~^1.186^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~504~^2.033^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~505~^2.172^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~506~^0.688^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~507~^0.291^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~508~^1.059^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~509~^0.890^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~510~^1.275^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~511~^1.698^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~512~^0.745^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~513~^1.620^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~514~^2.337^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~515~^3.801^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~516~^1.503^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~517~^1.206^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~518~^1.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~605~^1.444^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~606~^10.666^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~610~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~611~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~612~^0.727^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~613~^4.865^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~614~^4.504^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~615~^0.037^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~617~^8.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~618~^0.886^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~619~^0.212^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~620~^0.047^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~625~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~626~^0.260^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~628~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~629~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~631~^0.046^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~645~^8.434^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~646~^1.230^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~652~^0.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~653~^0.319^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~663~^1.123^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~665~^0.321^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~670~^0.178^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~674~^7.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~675~^0.387^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~693~^1.123^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~695~^0.321^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17315~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17315~^~851~^0.211^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17316~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~315~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~404~^0.127^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~405~^0.390^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~406~^7.620^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~410~^0.650^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~415~^0.574^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~501~^0.250^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~502~^0.983^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~503~^1.002^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~504~^1.718^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~505~^1.836^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~506~^0.582^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~508~^0.895^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~509~^0.752^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~510~^1.078^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~511~^1.435^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~512~^0.629^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~513~^1.370^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~514~^1.975^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~515~^3.213^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~516~^1.271^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~517~^1.019^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~518~^0.855^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~605~^0.278^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~606~^2.532^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~17316~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~ -~17316~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~610~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~611~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~612~^0.136^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~613~^1.283^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~614~^1.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~615~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~617~^2.342^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17316~^~618~^0.217^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17316~^~619~^0.069^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17316~^~620~^0.043^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~621~^0.010^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~626~^0.067^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17316~^~631~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~645~^2.409^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~646~^0.386^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~652~^0.021^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~653~^0.063^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~663~^0.218^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~665~^0.059^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~670~^0.008^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~674~^2.124^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~675~^0.149^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17316~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~693~^0.218^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17316~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17316~^~851~^0.069^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~312~^0.134^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~404~^0.153^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~405~^0.370^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~406~^8.930^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~410~^0.660^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~415~^0.601^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~501~^0.334^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~502~^1.314^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~503~^1.339^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~504~^2.295^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~506~^0.777^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~508~^1.196^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~509~^1.005^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~510~^1.440^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~511~^1.917^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~512~^0.841^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~513~^1.830^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~514~^2.639^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~515~^4.292^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~516~^1.697^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~517~^1.362^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~518~^1.143^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~605~^0.631^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~606~^5.690^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17317~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~610~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~611~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~612~^0.389^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~613~^2.815^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~614~^2.225^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~615~^0.016^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~617~^4.611^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17317~^~618~^0.413^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17317~^~619~^0.113^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17317~^~620~^0.051^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~625~^0.014^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~626~^0.157^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17317~^~631~^0.036^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~645~^4.790^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~646~^0.648^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~652~^0.064^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~653~^0.149^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~663~^0.488^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~665~^0.143^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~670~^0.012^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~674~^4.123^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~675~^0.258^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17317~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~693~^0.488^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~695~^0.143^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17317~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17317~^~851~^0.113^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17318~^~312~^0.113^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~404~^0.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~405~^0.213^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~406~^4.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~410~^0.678^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~415~^0.261^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~501~^0.195^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~502~^0.712^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~503~^0.806^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~504~^1.297^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~505~^1.473^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~506~^0.427^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~507~^0.200^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~508~^0.678^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~509~^0.560^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~510~^0.899^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~511~^0.990^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~512~^0.528^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~513~^1.003^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~514~^1.468^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~515~^2.420^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~516~^0.814^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~517~^0.699^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~518~^0.619^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17318~^~606~^9.907^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17318~^~610~^0.029^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~611~^0.064^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~612~^0.805^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~613~^4.650^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~614~^3.904^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~615~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~617~^7.651^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~618~^0.496^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~619~^0.238^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~620~^0.079^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~625~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~626~^0.382^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~628~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~645~^8.284^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17318~^~646~^0.840^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17318~^~652~^0.127^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17318~^~653~^0.302^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~312~^0.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~404~^0.094^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~405~^0.267^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~406~^4.415^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~410~^0.717^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~415~^0.204^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~501~^0.275^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~502~^1.007^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~503~^1.140^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~504~^1.834^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~505~^2.083^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~506~^0.604^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~507~^0.283^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~508~^0.958^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~509~^0.792^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~510~^1.272^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~511~^1.400^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~512~^0.747^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~513~^1.419^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~514~^2.075^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~515~^3.422^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~516~^1.151^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~517~^0.989^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~518~^0.875^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17319~^~606~^10.324^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17319~^~610~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~611~^0.068^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~612~^0.831^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~613~^4.790^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~614~^4.077^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~615~^0.068^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~617~^7.888^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~618~^0.504^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~619~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~625~^0.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~626~^0.387^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~628~^0.072^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~645~^8.537^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17319~^~646~^0.822^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17319~^~652~^0.128^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17319~^~653~^0.325^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~312~^0.130^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~404~^0.120^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~405~^0.240^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~406~^4.580^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~410~^0.785^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~415~^0.299^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~501~^0.226^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~502~^0.827^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~503~^0.935^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~504~^1.505^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~505~^1.710^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~506~^0.496^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~507~^0.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~508~^0.787^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~509~^0.650^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~510~^1.044^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~511~^1.149^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~512~^0.613^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~513~^1.165^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~514~^1.704^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~515~^2.809^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~516~^0.945^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~517~^0.811^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~518~^0.719^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17320~^~606~^3.355^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~612~^0.255^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~613~^1.676^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~614~^1.281^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~617~^2.985^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~618~^0.198^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~619~^0.094^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~620~^0.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~626~^0.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~628~^0.034^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~645~^3.214^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~646~^0.323^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~652~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17320~^~653~^0.087^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~312~^0.150^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~315~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~404~^0.100^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~405~^0.290^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~406~^4.695^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~410~^0.775^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~415~^0.211^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~501~^0.306^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~502~^1.118^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~503~^1.265^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~504~^2.036^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~505~^2.312^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~506~^0.670^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~507~^0.314^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~508~^1.064^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~509~^0.880^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~510~^1.412^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~511~^1.554^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~512~^0.829^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~513~^1.575^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~514~^2.304^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~515~^3.799^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~516~^1.278^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~517~^1.098^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~518~^0.972^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17321~^~606~^5.843^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~611~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~612~^0.449^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~613~^2.850^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~614~^2.193^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~615~^0.057^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~617~^4.878^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~618~^0.318^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~619~^0.152^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~625~^0.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~626~^0.233^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~628~^0.039^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~645~^5.264^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~646~^0.546^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~652~^0.066^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17321~^~653~^0.172^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~312~^0.120^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~404~^0.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~405~^0.212^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~406~^3.994^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~410~^0.677^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~415~^0.260^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~501~^0.199^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~502~^0.729^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~503~^0.824^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~504~^1.327^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~505~^1.507^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~506~^0.437^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~507~^0.205^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~508~^0.693^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~509~^0.573^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~510~^0.920^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~511~^1.013^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~512~^0.540^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~513~^1.026^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~514~^1.501^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~515~^2.476^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~516~^0.833^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~517~^0.715^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~518~^0.633^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17322~^~606~^9.125^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17322~^~611~^0.060^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~612~^0.752^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~613~^4.310^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~614~^3.597^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~617~^7.122^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~618~^0.469^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~619~^0.228^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~620~^0.080^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~626~^0.363^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~628~^0.071^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~645~^7.697^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17322~^~646~^0.777^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17322~^~652~^0.117^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17322~^~653~^0.289^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~312~^0.188^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~315~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~404~^0.093^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~405~^0.263^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~406~^4.369^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~410~^0.707^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~415~^0.203^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~501~^0.347^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~502~^1.269^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~503~^1.435^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~504~^2.309^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~505~^2.623^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~506~^0.760^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~507~^0.356^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~508~^1.207^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~509~^0.998^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~510~^1.601^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~511~^1.763^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~512~^0.941^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~513~^1.787^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~514~^2.613^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~515~^4.309^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~516~^1.449^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~517~^1.245^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~518~^1.102^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17323~^~606~^9.696^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17323~^~610~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~611~^0.064^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~612~^0.788^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~613~^4.482^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~614~^3.852^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~615~^0.032^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~617~^7.541^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~618~^0.517^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~619~^0.246^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~620~^0.060^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~625~^0.034^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~626~^0.373^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~628~^0.072^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~645~^8.173^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17323~^~646~^0.830^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17323~^~652~^0.127^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17323~^~653~^0.311^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17324~^~312~^0.139^3^0.011^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~315~^0.015^3^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~404~^0.120^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~405~^0.240^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~406~^4.580^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~410~^0.785^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~415~^0.299^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~501~^0.232^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~502~^0.849^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~503~^0.961^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~504~^1.546^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~505~^1.756^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~506~^0.509^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~507~^0.239^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~508~^0.808^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~509~^0.668^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~510~^1.072^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~511~^1.180^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~512~^0.630^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~513~^1.196^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~514~^1.750^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~515~^2.885^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~516~^0.970^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~517~^0.834^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~518~^0.738^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17324~^~606~^2.335^3^1.073^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~611~^0.013^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~612~^0.178^3^0.260^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~613~^1.199^3^0.524^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~614~^0.852^3^1.477^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~617~^2.243^3^0.393^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~618~^0.160^3^0.153^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~619~^0.078^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~620~^0.032^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~626~^0.108^3^0.291^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~628~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~645~^2.424^3^0.854^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~646~^0.270^3^0.240^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~652~^0.025^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17324~^~653~^0.067^3^0.088^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~312~^0.215^3^0.036^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~315~^0.020^3^0.002^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~404~^0.100^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~405~^0.290^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~406~^4.695^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~410~^0.775^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~415~^0.211^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~501~^0.399^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~502~^1.460^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~503~^1.651^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~504~^2.657^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~505~^3.018^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~506~^0.875^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~507~^0.410^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~508~^1.389^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~509~^1.148^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~510~^1.842^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~511~^2.028^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~512~^1.082^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~513~^2.055^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~514~^3.007^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~515~^4.958^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~516~^1.667^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~517~^1.432^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~518~^1.268^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17325~^~606~^4.173^3^1.009^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~610~^0.018^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~611~^0.026^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~612~^0.320^3^0.240^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~613~^2.082^3^0.240^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~614~^1.539^3^1.040^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~615~^0.012^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~617~^3.847^3^0.617^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~618~^0.297^3^0.260^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~619~^0.135^3^0.088^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~620~^0.059^3^0.120^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~625~^0.013^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~626~^0.185^3^0.231^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~628~^0.032^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~645~^4.160^3^0.939^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~646~^0.499^3^0.433^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~652~^0.053^3^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17325~^~653~^0.123^3^0.000^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17326~^~312~^0.109^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~404~^0.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~405~^0.213^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~406~^4.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~410~^0.679^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~415~^0.261^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~501~^0.193^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~502~^0.704^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~503~^0.796^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~504~^1.282^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~505~^1.456^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~506~^0.422^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~507~^0.198^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~508~^0.670^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~509~^0.554^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~510~^0.889^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~511~^0.978^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~512~^0.522^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~513~^0.992^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~514~^1.451^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~515~^2.392^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~516~^0.804^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~517~^0.691^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~518~^0.612^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17326~^~606~^10.300^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17326~^~610~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~611~^0.066^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~612~^0.833^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~613~^4.824^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~614~^4.061^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~615~^0.039^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~617~^7.922^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~618~^0.509^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~619~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~620~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~625~^0.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~626~^0.393^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~628~^0.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~645~^8.579^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17326~^~646~^0.864^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17326~^~652~^0.131^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17326~^~653~^0.309^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~312~^0.121^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~404~^0.095^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~405~^0.268^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~406~^4.430^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~410~^0.720^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~415~^0.205^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~501~^0.254^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~502~^0.928^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~503~^1.049^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~504~^1.689^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~505~^1.918^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~506~^0.556^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~507~^0.261^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~508~^0.882^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~509~^0.730^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~510~^1.171^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~511~^1.289^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~512~^0.688^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~513~^1.306^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~514~^1.911^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~515~^3.151^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~516~^1.060^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~517~^0.910^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~518~^0.806^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17327~^~606~^10.510^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17327~^~610~^0.038^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~611~^0.069^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~612~^0.843^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~613~^4.881^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~614~^4.143^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~615~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~617~^7.990^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~618~^0.500^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~619~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~620~^0.045^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~625~^0.040^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~ -~17327~^~626~^0.391^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~628~^0.072^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~645~^8.644^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17327~^~646~^0.820^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~ -~17327~^~652~^0.128^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17327~^~653~^0.329^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~ -~17328~^~312~^0.126^3^0.016^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~315~^0.012^3^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~404~^0.120^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~405~^0.240^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~406~^4.580^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~410~^0.785^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~415~^0.299^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~501~^0.223^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~502~^0.816^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~503~^0.923^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~504~^1.485^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~505~^1.687^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~506~^0.489^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~507~^0.229^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~508~^0.776^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~509~^0.642^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~510~^1.030^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~511~^1.134^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~512~^0.605^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~513~^1.149^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~514~^1.681^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~515~^2.772^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~516~^0.932^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~517~^0.801^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~518~^0.709^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17328~^~606~^3.883^3^1.375^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~610~^0.012^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~611~^0.021^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~612~^0.292^3^0.273^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~613~^1.910^3^0.265^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~614~^1.492^3^1.132^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~615~^0.016^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~617~^3.350^3^0.710^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~618~^0.217^3^0.186^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~619~^0.102^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~620~^0.031^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~625~^0.008^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~626~^0.151^3^0.233^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~628~^0.039^1^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~645~^3.611^3^1.040^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~646~^0.357^3^0.328^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~652~^0.044^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17328~^~653~^0.097^3^0.176^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~312~^0.131^3^0.015^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~315~^0.013^3^0.001^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~404~^0.100^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~405~^0.290^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~406~^4.695^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~410~^0.775^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~415~^0.211^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~501~^0.278^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~502~^1.018^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~503~^1.152^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~504~^1.853^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~505~^2.105^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~506~^0.610^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~507~^0.286^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~508~^0.969^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~509~^0.801^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~510~^1.285^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~511~^1.415^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~512~^0.755^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~513~^1.434^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~514~^2.097^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~515~^3.459^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~516~^1.163^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~517~^0.999^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~518~^0.885^0^^~1~^^^^^^^^^^^~11/01/1998~ -~17329~^~606~^6.334^3^0.907^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~610~^0.019^2^^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~611~^0.041^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~612~^0.487^3^0.260^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~613~^3.075^3^0.536^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~614~^2.386^3^1.203^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~615~^0.070^3^0.367^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~617~^5.181^3^0.817^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~618~^0.324^3^0.067^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~619~^0.157^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~620~^0.041^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~625~^0.021^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~626~^0.248^3^0.173^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~628~^0.041^3^0.088^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~645~^5.589^3^0.876^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~646~^0.559^3^0.145^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~652~^0.070^3^0.033^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17329~^~653~^0.186^3^0.058^~1~^~A~^^^^^^^^^^~11/01/1998~ -~17330~^~312~^0.131^3^0.034^~1~^~A~^^^1^0.092^0.198^2^-0.015^0.276^~4~^~09/01/2001~ -~17330~^~315~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~09/01/2001~ -~17330~^~404~^0.130^3^0.006^~1~^~A~^^^1^0.120^0.140^2^0.105^0.155^~4~^~09/01/2001~ -~17330~^~405~^0.227^3^0.015^~1~^~A~^^^1^0.200^0.250^2^0.164^0.289^~4~^~09/01/2001~ -~17330~^~406~^4.910^3^0.301^~1~^~A~^^^1^4.440^5.470^2^3.616^6.204^~4~^~09/01/2001~ -~17330~^~410~^0.640^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~415~^0.353^3^0.016^~1~^~A~^^^1^0.334^0.386^2^0.283^0.424^~4~^~09/01/2001~ -~17330~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~502~^0.847^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~503~^0.901^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~504~^1.601^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~505~^1.732^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~506~^0.505^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~508~^0.793^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~509~^0.635^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~510~^1.004^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~511~^1.271^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~512~^0.684^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~513~^1.243^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~514~^1.824^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~515~^3.040^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~516~^1.211^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~517~^0.956^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~518~^0.776^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17330~^~521~^0.233^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2008~ -~17330~^~606~^6.802^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17330~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~609~^0.006^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~610~^0.007^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~611~^0.007^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~612~^0.286^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~613~^2.869^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~614~^3.272^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~615~^0.030^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~617~^5.716^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~618~^0.578^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~619~^0.084^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~620~^0.081^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~625~^0.023^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~626~^0.318^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~628~^0.051^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17330~^~645~^6.222^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17330~^~646~^0.749^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17330~^~652~^0.083^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~653~^0.241^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~687~^0.114^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~689~^0.007^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17330~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17331~^~312~^0.146^3^0.031^~1~^~A~^^^1^0.108^0.208^2^0.011^0.281^~4~^~09/01/2001~ -~17331~^~315~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~4~^~09/01/2001~ -~17331~^~404~^0.130^3^0.006^~1~^~A~^^^1^0.120^0.140^2^0.105^0.155^~4~^~09/01/2001~ -~17331~^~405~^0.247^3^0.009^~1~^~A~^^^1^0.230^0.260^2^0.209^0.285^~4~^~09/01/2001~ -~17331~^~406~^5.570^3^0.576^~1~^~A~^^^1^4.940^6.720^2^3.092^8.048^~4~^~09/01/2001~ -~17331~^~410~^1.140^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~415~^0.375^3^0.002^~1~^~A~^^^1^0.371^0.377^2^0.367^0.383^~4~^~09/01/2001~ -~17331~^~501~^0.180^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~502~^1.078^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~503~^1.147^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~504~^2.039^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~505~^2.205^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~506~^0.643^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~508~^1.009^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~509~^0.809^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~510~^1.279^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~511~^1.618^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~512~^0.871^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~513~^1.583^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~514~^2.323^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~515~^3.871^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~516~^1.542^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~517~^1.217^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~518~^0.988^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17331~^~521~^0.297^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2008~ -~17331~^~606~^6.461^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17331~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~609~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.018^2^-0.020^0.032^~1, 4~^~09/01/2001~ -~17331~^~610~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.021^0.033^~1, 4~^~09/01/2001~ -~17331~^~611~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.021^0.033^~1, 4~^~09/01/2001~ -~17331~^~612~^0.272^3^0.038^~1~^~A~^^^1^0.208^0.341^2^0.106^0.437^~4~^~09/01/2001~ -~17331~^~613~^2.725^3^0.361^~1~^~A~^^^1^2.125^3.373^2^1.171^4.279^~4~^~09/01/2001~ -~17331~^~614~^3.108^3^0.409^~1~^~A~^^^1^2.412^3.829^2^1.347^4.869^~4~^~09/01/2001~ -~17331~^~615~^0.029^3^0.006^~1~^~A~^^^1^0.019^0.038^2^0.005^0.053^~4~^~09/01/2001~ -~17331~^~617~^5.429^3^0.678^~1~^~A~^^^1^4.335^6.670^2^2.512^8.347^~4~^~09/01/2001~ -~17331~^~618~^0.549^3^0.050^~1~^~A~^^^1^0.469^0.641^2^0.333^0.764^~4~^~09/01/2001~ -~17331~^~619~^0.080^3^0.008^~1~^~A~^^^1^0.067^0.096^2^0.043^0.116^~4~^~09/01/2001~ -~17331~^~620~^0.077^3^0.000^~1~^~A~^^^1^0.077^0.077^2^0.077^0.077^~4~^~09/01/2001~ -~17331~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~09/01/2001~ -~17331~^~625~^0.022^3^0.003^~1~^~A~^^^1^0.019^0.028^2^0.009^0.036^~4~^~09/01/2001~ -~17331~^~626~^0.302^3^0.039^~1~^~A~^^^1^0.238^0.371^2^0.135^0.468^~4~^~09/01/2001~ -~17331~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~628~^0.048^3^0.006^~1~^~A~^^^1^0.038^0.058^2^0.024^0.072^~4~^~09/01/2001~ -~17331~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17331~^~645~^5.909^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17331~^~646~^0.711^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~17331~^~652~^0.079^3^0.014^~1~^~A~^^^1^0.057^0.105^2^0.020^0.139^~4~^~09/01/2001~ -~17331~^~653~^0.229^3^0.031^~1~^~A~^^^1^0.181^0.287^2^0.097^0.361^~4~^~09/01/2001~ -~17331~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~09/01/2001~ -~17331~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~09/01/2001~ -~17331~^~687~^0.108^3^0.014^~1~^~A~^^^1^0.086^0.134^2^0.049^0.168^~4~^~09/01/2001~ -~17331~^~689~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.021^0.034^~1, 4~^~09/01/2001~ -~17331~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~09/01/2001~ -~17332~^~312~^0.211^3^0.050^~1~^~A~^^^1^0.146^0.309^2^-0.003^0.425^~4~^~11/01/2001~ -~17332~^~315~^0.013^3^0.002^~1~^~A~^^^1^0.010^0.015^2^0.006^0.021^~4~^~11/01/2001~ -~17332~^~404~^0.227^3^0.017^~1~^~A~^^^1^0.210^0.260^2^0.155^0.298^~4~^~11/01/2001~ -~17332~^~405~^0.447^3^0.032^~1~^~A~^^^1^0.410^0.510^2^0.310^0.583^~4~^~11/01/2001~ -~17332~^~406~^5.570^3^0.520^~1~^~A~^^^1^4.620^6.410^2^3.334^7.806^~4~^~11/01/2001~ -~17332~^~410~^1.345^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2002~ -~17332~^~415~^0.557^3^0.036^~1~^~A~^^^1^0.511^0.627^2^0.403^0.710^~4~^~11/01/2001~ -~17332~^~501~^0.212^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~502~^1.273^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~503~^1.354^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~504~^2.406^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~505~^2.603^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~506~^0.759^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~507~^0.334^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~508~^1.191^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~509~^0.954^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~510~^1.509^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~511~^1.909^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~512~^1.028^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~513~^1.868^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~514~^2.741^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~515~^4.569^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~516~^1.820^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~517~^1.436^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~518~^1.167^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17332~^~521~^0.351^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17332~^~606~^2.412^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~609~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~610~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~611~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~612~^0.101^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~613~^1.017^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~614~^1.160^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~615~^0.011^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~617~^2.027^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~618~^0.205^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~619~^0.030^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~620~^0.029^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~625~^0.008^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~626~^0.113^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~628~^0.018^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~645~^2.206^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~646~^0.266^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17332~^~652~^0.030^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~653~^0.086^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~687~^0.040^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~689~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17332~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~312~^0.208^3^0.022^~1~^~A~^^^1^0.180^0.252^2^0.112^0.304^~4~^~11/01/2001~ -~17333~^~315~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.011^0.022^~4~^~11/01/2001~ -~17333~^~404~^0.120^3^0.010^~1~^~A~^^^1^0.100^0.130^2^0.077^0.163^~4~^~11/01/2001~ -~17333~^~405~^0.470^3^0.012^~1~^~A~^^^1^0.450^0.490^2^0.420^0.520^~4~^~11/01/2001~ -~17333~^~406~^4.773^3^0.461^~1~^~A~^^^1^3.880^5.420^2^2.788^6.758^~4~^~11/01/2001~ -~17333~^~410~^1.620^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2002~ -~17333~^~415~^0.458^3^0.103^~1~^~A~^^^1^0.314^0.659^2^0.013^0.904^~4~^~11/01/2001~ -~17333~^~501~^0.255^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~502~^1.533^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~503~^1.631^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~504~^2.898^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~505~^3.134^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~506~^0.914^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~507~^0.403^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~508~^1.434^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~509~^1.149^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~510~^1.818^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~511~^2.300^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~512~^1.238^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~513~^2.250^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~514~^3.301^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~515~^5.502^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~516~^2.192^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~517~^1.730^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~518~^1.405^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17333~^~521~^0.422^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17333~^~606~^2.320^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~609~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~610~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~611~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~612~^0.098^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~613~^0.978^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~614~^1.116^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~615~^0.010^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~617~^1.949^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~618~^0.197^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~619~^0.029^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~620~^0.028^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~625~^0.008^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~626~^0.108^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~628~^0.017^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~645~^2.122^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17333~^~652~^0.028^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~653~^0.082^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~687~^0.039^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~689~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17333~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~312~^0.202^3^0.070^~1~^~A~^^^1^0.112^0.341^2^-0.101^0.505^~4~^~11/01/2001~ -~17334~^~315~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~4~^~11/01/2001~ -~17334~^~404~^0.227^3^0.055^~1~^~A~^^^1^0.140^0.330^2^-0.012^0.465^~4~^~11/01/2001~ -~17334~^~405~^0.347^3^0.030^~1~^~A~^^^1^0.290^0.390^2^0.219^0.474^~4~^~11/01/2001~ -~17334~^~406~^4.443^3^0.478^~1~^~A~^^^1^3.690^5.330^2^2.386^6.500^~4~^~11/01/2001~ -~17334~^~410~^0.724^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2002~ -~17334~^~415~^0.472^3^0.008^~1~^~A~^^^1^0.461^0.488^2^0.438^0.507^~4~^~11/01/2001~ -~17334~^~501~^0.160^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~502~^0.958^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~503~^1.019^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~504~^1.812^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~505~^1.959^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~506~^0.571^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~507~^0.252^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~508~^0.897^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~509~^0.718^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~510~^1.136^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~511~^1.437^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~512~^0.774^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~513~^1.407^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~514~^2.064^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~515~^3.439^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~516~^1.370^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~517~^1.081^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~518~^0.878^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17334~^~521~^0.264^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17334~^~606~^1.345^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~609~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~610~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~611~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~612~^0.057^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~613~^0.567^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~614~^0.647^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~615~^0.006^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~617~^1.130^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~618~^0.114^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~619~^0.017^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~620~^0.016^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~625~^0.005^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~626~^0.063^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~628~^0.010^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~645~^1.230^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~646~^0.148^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17334~^~652~^0.016^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~653~^0.048^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~687~^0.023^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~689~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17334~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~312~^0.201^3^0.043^~1~^~A~^^^1^0.132^0.280^2^0.015^0.386^~4~^~11/01/2001~ -~17335~^~315~^0.012^3^0.003^~1~^~A~^^^1^0.009^0.018^2^0.000^0.025^~4~^~11/01/2001~ -~17335~^~404~^0.137^3^0.013^~1~^~A~^^^1^0.110^0.150^2^0.079^0.194^~4~^~11/01/2001~ -~17335~^~405~^0.307^3^0.003^~1~^~A~^^^1^0.300^0.310^2^0.292^0.321^~4~^~11/01/2001~ -~17335~^~406~^6.687^3^0.539^~1~^~A~^^^1^6.070^7.760^2^4.369^9.004^~4~^~11/01/2001~ -~17335~^~410~^1.010^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2002~ -~17335~^~415~^0.475^3^0.038^~1~^~A~^^^1^0.410^0.543^2^0.310^0.640^~4~^~11/01/2001~ -~17335~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~502~^1.336^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~503~^1.422^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~504~^2.527^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~505~^2.732^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~506~^0.796^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~507~^0.351^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~508~^1.250^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~509~^1.002^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~510~^1.584^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~511~^2.005^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~512~^1.079^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~513~^1.962^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~514~^2.878^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~515~^4.797^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~516~^1.911^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~517~^1.508^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~518~^1.225^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17335~^~521~^0.368^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17335~^~606~^2.419^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~609~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~610~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~611~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~612~^0.102^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~613~^1.020^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~614~^1.164^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~615~^0.011^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~617~^2.033^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~618~^0.205^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~619~^0.030^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~620~^0.029^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~625~^0.008^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~626~^0.113^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~628~^0.018^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~645~^2.213^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~646~^0.266^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17335~^~652~^0.030^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~653~^0.086^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~687~^0.041^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~689~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17335~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~312~^0.210^3^0.013^~1~^~A~^^^1^0.194^0.226^2^0.154^0.265^~4~^~03/01/2003~ -~17336~^~315~^0.011^3^0.002^~1~^~A~^^^1^0.010^0.016^2^0.001^0.020^~4~^~03/01/2003~ -~17336~^~404~^0.165^3^0.031^~1~^~A~^^^1^0.130^0.210^2^0.032^0.298^~4~^~03/01/2003~ -~17336~^~405~^0.365^3^0.019^~1~^~A~^^^1^0.360^0.410^2^0.285^0.445^~4~^~03/01/2003~ -~17336~^~406~^6.475^3^0.461^~1~^~A~^^^1^5.840^7.110^2^4.492^8.458^~4~^~03/01/2003~ -~17336~^~410~^1.448^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2003~ -~17336~^~415~^0.657^3^0.093^~1~^~A~^^^1^0.432^0.675^2^0.258^1.055^~4~^~03/01/2003~ -~17336~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~502~^1.369^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~503~^1.457^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~504~^2.589^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~505~^2.800^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~506~^0.816^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~507~^0.360^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~508~^1.281^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~509~^1.027^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~510~^1.624^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~511~^2.054^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~512~^1.106^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~513~^2.010^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~514~^2.949^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~515~^4.915^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~516~^1.958^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~517~^1.545^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~518~^1.255^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~521~^0.377^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~17336~^~606~^1.957^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~609~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~610~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~611~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~612~^0.082^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~613~^0.825^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~614~^0.941^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~615~^0.009^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~617~^1.644^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~618~^0.166^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~619~^0.024^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~620~^0.023^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~625~^0.007^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~626~^0.091^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~628~^0.015^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~645~^1.790^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~646~^0.215^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~17336~^~652~^0.024^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~653~^0.069^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~687~^0.033^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~689~^0.002^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17336~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~312~^0.131^3^0.022^~1~^~A~^^^1^0.101^0.173^2^0.038^0.224^~4~^~11/01/2001~ -~17337~^~315~^0.047^3^0.032^~1~^~A~^^^1^0.015^0.110^2^-0.089^0.183^~4~^~11/01/2001~ -~17337~^~404~^0.217^3^0.038^~1~^~A~^^^1^0.150^0.280^2^0.055^0.378^~4~^~11/01/2001~ -~17337~^~405~^0.337^3^0.030^~1~^~A~^^^1^0.280^0.380^2^0.209^0.464^~4~^~11/01/2001~ -~17337~^~406~^6.183^3^0.175^~1~^~A~^^^1^5.840^6.410^2^5.432^6.934^~4~^~11/01/2001~ -~17337~^~410~^0.799^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2002~ -~17337~^~415~^0.562^3^0.022^~1~^~A~^^^1^0.538^0.606^2^0.467^0.657^~4~^~11/01/2001~ -~17337~^~501~^0.176^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~502~^1.058^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~503~^1.126^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~504~^2.000^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~505~^2.163^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~506~^0.631^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~508~^0.990^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~509~^0.793^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~510~^1.255^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~511~^1.587^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~512~^0.854^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~513~^1.553^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~514~^2.279^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~515~^3.798^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~516~^1.513^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~517~^1.194^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~518~^0.970^0^^~1~^~A~^^^^^^^^^^~11/01/2001~ -~17337~^~521~^0.291^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17337~^~606~^1.039^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~609~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~610~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~611~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~612~^0.044^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~613~^0.438^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~614~^0.500^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~615~^0.005^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~617~^0.873^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~618~^0.088^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~619~^0.013^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~620~^0.012^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~624~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~625~^0.004^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~626~^0.048^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~628~^0.008^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~645~^0.950^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~646~^0.114^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17337~^~652~^0.013^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~653~^0.037^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~672~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~685~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~687~^0.017^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~689~^0.001^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17337~^~697~^0.000^0^^~4~^~BFFN~^~17331~^^^^^^^^^~12/01/2001~ -~17338~^~312~^0.150^3^0.025^~1~^~A~^^^1^0.125^0.199^2^0.045^0.255^~4~^~02/01/2002~ -~17338~^~315~^0.023^3^0.011^~1~^~A~^^^1^0.010^0.045^2^-0.026^0.071^~4~^~02/01/2002~ -~17338~^~404~^0.125^2^^~1~^~A~^^^1^0.120^0.130^1^^^^~02/01/2002~ -~17338~^~405~^0.260^2^^~1~^~A~^^^1^0.240^0.280^1^^^^~02/01/2002~ -~17338~^~406~^4.890^2^^~1~^~A~^^^1^4.380^5.400^1^^^^~02/01/2002~ -~17338~^~410~^0.960^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~415~^0.336^2^^~1~^~A~^^^1^0.268^0.404^1^^^^~02/01/2002~ -~17338~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~502~^0.874^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~503~^0.913^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~504~^1.622^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~505~^1.778^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~506~^0.534^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~507~^0.214^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~508~^0.797^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~509~^0.680^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~510~^1.010^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~511~^1.302^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~512~^0.670^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~513~^1.214^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~514~^1.826^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~515~^3.089^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~516~^1.107^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~517~^0.923^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~518~^0.777^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17338~^~521~^0.204^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17338~^~606~^3.469^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17338~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17338~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17338~^~609~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~610~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~611~^0.009^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~612~^0.339^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~613~^2.029^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~614~^0.981^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~615~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~617~^1.656^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~618~^0.251^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~619~^0.072^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~620~^0.078^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~624~^0.000^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~625~^0.110^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~626~^0.678^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~628~^0.024^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~645~^2.507^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17338~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17338~^~652~^0.043^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~653~^0.053^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~672~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~685~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~687~^0.029^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~689~^0.005^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17338~^~697~^0.010^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17339~^~312~^0.142^3^0.008^~1~^~A~^^^1^0.127^0.154^2^0.108^0.177^~4~^~02/01/2002~ -~17339~^~315~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~4~^~02/01/2002~ -~17339~^~404~^0.125^2^^~1~^~A~^^^1^0.120^0.130^1^^^^~02/01/2002~ -~17339~^~405~^0.320^2^^~1~^~A~^^^1^0.310^0.330^1^^^^~02/01/2002~ -~17339~^~406~^5.320^2^^~1~^~A~^^^1^4.720^5.920^1^^^^~02/01/2002~ -~17339~^~410~^1.050^1^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17339~^~415~^0.420^2^^~1~^~A~^^^1^0.379^0.461^1^^^^~02/01/2002~ -~17339~^~501~^0.238^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~502~^1.070^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~503~^1.118^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~504~^1.986^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~505~^2.176^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~506~^0.654^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~508~^0.975^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~509~^0.833^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~510~^1.237^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~511~^1.594^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~512~^0.821^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~513~^1.487^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~514~^2.236^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~515~^3.782^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~516~^1.356^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~517~^1.130^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~518~^0.951^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~521~^0.250^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17339~^~606~^4.002^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17339~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17339~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17339~^~609~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 4~^~02/01/2002~ -~17339~^~610~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 4~^~02/01/2002~ -~17339~^~611~^0.013^3^0.003^~1~^~A~^^^1^0.009^0.019^2^-0.001^0.026^~4~^~02/01/2002~ -~17339~^~612~^0.395^3^0.061^~1~^~A~^^^1^0.303^0.512^2^0.130^0.659^~4~^~02/01/2002~ -~17339~^~613~^2.303^3^0.316^~1~^~A~^^^1^1.801^2.887^2^0.942^3.664^~4~^~02/01/2002~ -~17339~^~614~^1.177^3^0.206^~1~^~A~^^^1^0.948^1.589^2^0.290^2.065^~4~^~02/01/2002~ -~17339~^~615~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.020^~1, 4~^~02/01/2002~ -~17339~^~617~^1.793^3^0.289^~1~^~A~^^^1^1.215^2.096^2^0.550^3.035^~4~^~02/01/2002~ -~17339~^~618~^0.252^3^0.039^~1~^~A~^^^1^0.182^0.316^2^0.085^0.419^~4~^~02/01/2002~ -~17339~^~619~^0.070^3^0.008^~1~^~A~^^^1^0.057^0.086^2^0.034^0.106^~4~^~02/01/2002~ -~17339~^~620~^0.080^3^0.006^~1~^~A~^^^1^0.067^0.086^2^0.052^0.108^~4~^~02/01/2002~ -~17339~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~02/01/2002~ -~17339~^~625~^0.133^3^0.034^~1~^~A~^^^1^0.066^0.180^2^-0.014^0.279^~4~^~02/01/2002~ -~17339~^~626~^0.775^3^0.174^~1~^~A~^^^1^0.429^0.981^2^0.026^1.524^~4~^~02/01/2002~ -~17339~^~628~^0.022^3^0.003^~1~^~A~^^^1^0.019^0.029^2^0.009^0.036^~4~^~02/01/2002~ -~17339~^~645~^2.757^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17339~^~646~^0.412^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~ -~17339~^~652~^0.048^3^0.005^~1~^~A~^^^1^0.038^0.057^2^0.024^0.071^~4~^~02/01/2002~ -~17339~^~653~^0.054^3^0.003^~1~^~A~^^^1^0.048^0.057^2^0.040^0.068^~4~^~02/01/2002~ -~17339~^~672~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 4~^~02/01/2002~ -~17339~^~685~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 4~^~02/01/2002~ -~17339~^~687~^0.029^3^0.006^~1~^~A~^^^1^0.019^0.038^2^0.005^0.052^~4~^~02/01/2002~ -~17339~^~689~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 4~^~02/01/2002~ -~17339~^~697~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.007^0.020^~1, 4~^~02/01/2002~ -~17340~^~312~^0.173^2^^~1~^~A~^^^1^0.163^0.182^1^^^^~10/01/2001~ -~17340~^~315~^0.012^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~10/01/2001~ -~17340~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~405~^0.330^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~406~^8.980^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~410~^1.222^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17340~^~415~^0.470^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~501~^0.277^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~502~^1.246^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~503~^1.301^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~504~^2.311^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~505~^2.533^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~506~^0.761^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~507~^0.304^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~508~^1.135^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~509~^0.969^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~510~^1.439^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~511~^1.854^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~512~^0.955^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~513~^1.730^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~514~^2.602^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~515~^4.401^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~516~^1.578^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~517~^1.315^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~518~^1.107^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17340~^~521~^0.291^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17340~^~606~^1.511^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17340~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17340~^~609~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~610~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~611~^0.004^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~612~^0.148^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~613~^0.884^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~614~^0.427^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~615~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~617~^0.722^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~618~^0.109^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~619~^0.032^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~620~^0.034^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~624~^0.000^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~625~^0.048^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~626~^0.295^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~628~^0.011^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~645~^1.092^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~646~^0.181^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17340~^~652~^0.019^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~653~^0.023^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~672~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~685~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~687~^0.013^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~689~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17340~^~697~^0.004^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~312~^0.221^2^^~1~^~A~^^^1^0.212^0.229^1^^^^~10/01/2001~ -~17341~^~315~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~10/01/2001~ -~17341~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~405~^0.460^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~406~^7.160^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~410~^1.219^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17341~^~415~^0.466^1^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~501~^0.276^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~502~^1.243^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~503~^1.298^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~504~^2.307^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~505~^2.527^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~506~^0.760^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~507~^0.304^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~508~^1.133^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~509~^0.967^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~510~^1.436^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~511~^1.851^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~512~^0.953^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~513~^1.726^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~514~^2.597^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~515~^4.392^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~516~^1.574^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~518~^1.105^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17341~^~521~^0.290^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17341~^~606~^1.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17341~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17341~^~609~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~610~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~611~^0.003^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~612~^0.101^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~613~^0.607^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~614~^0.293^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~615~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~617~^0.495^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~618~^0.075^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~619~^0.022^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~620~^0.023^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~624~^0.000^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~625~^0.033^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~626~^0.203^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~628~^0.007^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~645~^0.750^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~646~^0.124^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17341~^~652~^0.013^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~653~^0.016^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~672~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~685~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~687~^0.009^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~689~^0.001^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17341~^~697~^0.003^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~312~^0.349^2^^~1~^~A~^^^1^0.231^0.466^1^^^^~10/01/2001~ -~17342~^~315~^0.019^2^^~1~^~A~^^^1^0.016^0.021^1^^^^~10/01/2001~ -~17342~^~404~^0.144^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~405~^0.370^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~406~^6.143^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~410~^1.212^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~415~^0.485^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~ -~17342~^~501~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~502~^1.236^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~503~^1.291^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~504~^2.293^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~505~^2.513^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~506~^0.755^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~507~^0.302^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~508~^1.126^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~509~^0.961^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~510~^1.428^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~511~^1.840^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~512~^0.948^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~513~^1.717^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~514~^2.582^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~515~^4.367^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~516~^1.566^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~517~^1.305^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~518~^1.099^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17342~^~521~^0.288^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17342~^~606~^1.342^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17342~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~ -~17342~^~609~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~610~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~611~^0.004^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~612~^0.131^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~613~^0.785^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~614~^0.379^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~615~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~617~^0.641^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~618~^0.097^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~619~^0.028^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~620~^0.030^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~624~^0.000^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~625~^0.043^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~626~^0.262^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~628~^0.009^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~645~^0.970^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~646~^0.161^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17342~^~652~^0.017^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~653~^0.021^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~672~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~685~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~687~^0.011^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~689~^0.002^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17342~^~697~^0.004^0^^~4~^~BFFN~^~17339~^^^^^^^^^~12/01/2001~ -~17343~^~312~^0.140^3^0.017^~1~^~A~^^^1^0.117^0.174^2^0.065^0.215^~4~^~02/01/2002~ -~17343~^~315~^0.014^3^0.002^~1~^~A~^^^1^0.012^0.017^2^0.007^0.021^~4~^~02/01/2002~ -~17343~^~404~^0.547^3^0.193^~1~^~A~^^^1^0.160^0.750^2^-0.286^1.379^~4~^~02/01/2002~ -~17343~^~405~^0.287^3^0.003^~1~^~A~^^^1^0.280^0.290^2^0.272^0.301^~4~^~02/01/2002~ -~17343~^~406~^5.700^3^0.135^~1~^~A~^^^1^5.560^5.970^2^5.119^6.281^~4~^~02/01/2002~ -~17343~^~410~^0.690^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17343~^~415~^0.464^3^0.023^~1~^~A~^^^1^0.435^0.509^2^0.367^0.562^~4~^~02/01/2002~ -~17343~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17343~^~502~^0.818^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~503~^0.929^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~504~^1.645^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~505~^1.756^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~506~^0.505^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~507~^0.202^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~508~^0.818^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~509~^0.676^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~510~^1.050^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~511~^1.292^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~512~^0.646^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~513~^1.262^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~514~^1.877^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~515~^3.069^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~516~^1.181^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~517~^0.949^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~518~^0.747^0^^~1~^~A~^^^^^^^^^^~12/01/2001~ -~17343~^~521~^0.313^0^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~17343~^~606~^3.361^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~609~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~610~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~611~^0.005^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~612~^0.215^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~613~^1.326^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~614~^1.610^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~615~^0.019^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~617~^1.197^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~618~^0.225^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~619~^0.104^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~620~^0.064^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~624~^0.003^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~625~^0.016^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~626~^0.107^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~628~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17343~^~645~^1.344^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~646~^0.394^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17343~^~652~^0.088^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~653~^0.096^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~672~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~685~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~687~^0.024^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~689~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17343~^~697~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17344~^~312~^0.100^3^0.045^~1~^~A~^^^1^0.010^0.150^2^-0.094^0.293^~4~^~02/01/2002~ -~17344~^~315~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~4~^~02/01/2002~ -~17344~^~404~^0.503^3^0.172^~1~^~A~^^^1^0.160^0.700^2^-0.238^1.245^~4~^~02/01/2002~ -~17344~^~405~^0.327^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.289^0.365^~4~^~02/01/2002~ -~17344~^~406~^9.257^3^2.728^~1~^~A~^^^1^6.220^14.700^2^-2.480^20.993^~4~^~02/01/2002~ -~17344~^~410~^0.760^1^^~1~^~A~^^^^^^^^^^~02/01/2002~ -~17344~^~415~^0.468^3^0.022^~1~^~A~^^^1^0.441^0.512^2^0.373^0.563^~4~^~02/01/2002~ -~17344~^~501~^0.234^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~502~^0.998^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~503~^1.133^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~504~^2.008^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~505~^2.143^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~506~^0.616^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~507~^0.246^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~508~^0.998^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~509~^0.825^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~510~^1.281^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~511~^1.576^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~512~^0.788^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~513~^1.540^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~514~^2.291^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~515~^3.744^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~516~^1.441^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~517~^1.158^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~518~^0.911^0^^~1~^~A~^^^^^^^^^^~09/01/2001~ -~17344~^~521~^0.382^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~17344~^~606~^3.993^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~02/01/2002~ -~17344~^~610~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~02/01/2002~ -~17344~^~611~^0.011^5^0.004^~1~^~A~^^^1^0.000^0.019^4^0.002^0.021^~1, 4~^~02/01/2002~ -~17344~^~612~^0.320^5^0.040^~1~^~A~^^^1^0.237^0.436^4^0.208^0.432^~4~^~02/01/2002~ -~17344~^~613~^1.769^5^0.126^~1~^~A~^^^1^1.448^2.134^4^1.419^2.118^~4~^~02/01/2002~ -~17344~^~614~^1.691^5^0.149^~1~^~A~^^^1^1.321^2.106^4^1.277^2.104^~4~^~02/01/2002~ -~17344~^~615~^0.019^5^0.003^~1~^~A~^^^1^0.010^0.029^4^0.011^0.028^~4~^~02/01/2002~ -~17344~^~617~^1.545^5^0.084^~1~^~A~^^^1^1.282^1.770^4^1.310^1.779^~4~^~02/01/2002~ -~17344~^~618~^0.262^5^0.006^~1~^~A~^^^1^0.249^0.277^4^0.244^0.280^~4~^~02/01/2002~ -~17344~^~619~^0.098^5^0.017^~1~^~A~^^^1^0.057^0.134^4^0.051^0.144^~4~^~02/01/2002~ -~17344~^~620~^0.081^5^0.002^~1~^~A~^^^1^0.077^0.086^4^0.074^0.087^~4~^~02/01/2002~ -~17344~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~624~^0.002^5^0.002^~1~^~A~^^^1^0.000^0.010^4^-0.003^0.007^~1, 4~^~02/01/2002~ -~17344~^~625~^0.064^5^0.028^~1~^~A~^^^1^0.019^0.142^4^-0.013^0.142^~4~^~02/01/2002~ -~17344~^~626~^0.291^5^0.101^~1~^~A~^^^1^0.114^0.562^4^0.011^0.572^~4~^~02/01/2002~ -~17344~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~628~^0.008^5^0.005^~1~^~A~^^^1^0.000^0.019^4^-0.005^0.021^~1, 4~^~02/01/2002~ -~17344~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17344~^~645~^1.939^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~646~^0.444^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~17344~^~652~^0.086^5^0.012^~1~^~A~^^^1^0.057^0.114^4^0.052^0.119^~4~^~02/01/2002~ -~17344~^~653~^0.096^5^0.012^~1~^~A~^^^1^0.067^0.124^4^0.062^0.129^~4~^~02/01/2002~ -~17344~^~672~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~02/01/2002~ -~17344~^~685~^0.004^5^0.002^~1~^~A~^^^1^0.000^0.010^4^-0.003^0.010^~1, 4~^~02/01/2002~ -~17344~^~687~^0.031^5^0.002^~1~^~A~^^^1^0.029^0.038^4^0.025^0.036^~4~^~02/01/2002~ -~17344~^~689~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~02/01/2002~ -~17344~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~02/01/2002~ -~17345~^~312~^0.227^3^0.028^~1~^~A~^^^1^0.170^0.257^2^0.105^0.349^~4~^~02/01/2002~ -~17345~^~315~^0.029^3^0.003^~1~^~A~^^^1^0.024^0.034^2^0.017^0.041^~4~^~02/01/2002~ -~17345~^~404~^0.280^3^0.030^~1~^~A~^^^1^0.220^0.310^2^0.151^0.409^~4~^~02/01/2002~ -~17345~^~405~^0.513^3^0.062^~1~^~A~^^^1^0.420^0.630^2^0.248^0.779^~4~^~02/01/2002~ -~17345~^~406~^10.757^3^0.960^~1~^~A~^^^1^9.370^12.600^2^6.626^14.887^~4~^~02/01/2002~ -~17345~^~410~^0.868^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17345~^~415~^0.756^3^0.063^~1~^~A~^^^1^0.667^0.877^2^0.486^1.026^~4~^~02/01/2002~ -~17345~^~501~^0.269^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~502~^1.148^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~503~^1.304^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~504~^2.311^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~505~^2.467^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~506~^0.709^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~508~^1.148^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~509~^0.950^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~510~^1.475^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~511~^1.815^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~512~^0.907^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~513~^1.772^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~514~^2.637^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~515~^4.310^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~516~^1.659^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~517~^1.333^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~518~^1.049^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17345~^~521~^0.440^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~17345~^~606~^1.351^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17345~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~609~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~610~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~611~^0.002^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~612~^0.086^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~613~^0.533^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~614~^0.647^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~615~^0.008^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~617~^0.481^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~618~^0.090^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~619~^0.042^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~620~^0.026^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~624~^0.001^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~625~^0.006^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~626~^0.043^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~628~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17345~^~645~^0.540^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17345~^~646~^0.158^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17345~^~652~^0.035^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~653~^0.039^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~672~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~685~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~687~^0.010^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17345~^~689~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17345~^~697~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~312~^0.285^3^0.021^~1~^~A~^^^1^0.249^0.321^2^0.196^0.375^~4~^~03/01/2002~ -~17346~^~315~^0.026^3^0.009^~1~^~A~^^^1^0.017^0.043^2^-0.011^0.063^~4~^~03/01/2002~ -~17346~^~404~^0.153^3^0.027^~1~^~A~^^^1^0.100^0.180^2^0.039^0.268^~4~^~03/01/2002~ -~17346~^~405~^0.657^3^0.084^~1~^~A~^^^1^0.520^0.810^2^0.295^1.019^~4~^~03/01/2002~ -~17346~^~406~^7.430^3^1.175^~1~^~A~^^^1^5.370^9.440^2^2.374^12.486^~4~^~03/01/2002~ -~17346~^~410~^1.025^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17346~^~415~^0.481^3^0.078^~1~^~A~^^^1^0.346^0.617^2^0.144^0.818^~4~^~03/01/2002~ -~17346~^~501~^0.318^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~502~^1.356^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~503~^1.541^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~504~^2.729^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~505~^2.914^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~506~^0.837^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~507~^0.335^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~508~^1.356^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~509~^1.122^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~510~^1.741^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~511~^2.143^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~512~^1.072^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~513~^2.093^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~514~^3.115^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~515~^5.090^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~516~^1.959^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~517~^1.574^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~518~^1.239^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17346~^~521~^0.519^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~17346~^~606~^2.239^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17346~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~609~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~610~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~611~^0.004^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~612~^0.143^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~613~^0.883^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~614~^1.073^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~615~^0.013^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~617~^0.798^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~618~^0.150^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~619~^0.070^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~620~^0.043^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~624~^0.002^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~625~^0.011^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~626~^0.071^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~628~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17346~^~645~^0.895^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17346~^~646~^0.262^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~17346~^~652~^0.058^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~653~^0.064^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~672~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~685~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~687~^0.016^0^^~4~^~BFFN~^~17344~^^^^^^^^^~08/01/2013~ -~17346~^~689~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17346~^~697~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17347~^~312~^0.254^3^0.009^~1~^~A~^^^1^0.237^0.263^2^0.217^0.291^~4~^~02/01/2002~ -~17347~^~315~^0.022^3^0.002^~1~^~A~^^^1^0.020^0.026^2^0.014^0.030^~4~^~02/01/2002~ -~17347~^~404~^0.260^3^0.012^~1~^~A~^^^1^0.240^0.280^2^0.210^0.310^~4~^~02/01/2002~ -~17347~^~405~^0.563^3^0.032^~1~^~A~^^^1^0.510^0.620^2^0.427^0.700^~4~^~02/01/2002~ -~17347~^~406~^8.780^3^0.455^~1~^~A~^^^1^8.310^9.690^2^6.822^10.738^~4~^~02/01/2002~ -~17347~^~410~^0.856^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~415~^0.614^3^0.075^~1~^~A~^^^1^0.507^0.758^2^0.292^0.936^~4~^~02/01/2002~ -~17347~^~501~^0.266^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~502~^1.133^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~503~^1.287^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~504~^2.280^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~505~^2.434^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~506~^0.700^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~508~^1.133^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~509~^0.937^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~510~^1.455^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~511~^1.791^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~512~^0.895^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~513~^1.749^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~514~^2.602^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~515~^4.253^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~516~^1.637^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~517~^1.315^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~518~^1.035^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17347~^~521~^0.434^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17347~^~606~^1.142^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~609~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17347~^~610~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17347~^~611~^0.003^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~612~^0.092^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~613~^0.506^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~614~^0.484^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~615~^0.005^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~617~^0.442^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~618~^0.075^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~619~^0.028^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~620~^0.023^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~624~^0.001^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~625~^0.018^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~626~^0.083^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~628~^0.002^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17347~^~645~^0.554^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~646~^0.127^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17347~^~652~^0.024^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~653~^0.027^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~672~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17347~^~685~^0.001^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~687~^0.009^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17347~^~689~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17347~^~697~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~312~^0.272^3^0.019^~1~^~A~^^^1^0.240^0.306^2^0.190^0.354^~4~^~02/01/2002~ -~17348~^~315~^0.018^3^0.002^~1~^~A~^^^1^0.015^0.021^2^0.011^0.026^~4~^~02/01/2002~ -~17348~^~404~^0.250^3^0.025^~1~^~A~^^^1^0.200^0.280^2^0.142^0.358^~4~^~02/01/2002~ -~17348~^~405~^0.500^3^0.055^~1~^~A~^^^1^0.400^0.590^2^0.263^0.737^~4~^~02/01/2002~ -~17348~^~406~^8.400^3^0.970^~1~^~A~^^^1^6.590^9.910^2^4.226^12.574^~4~^~02/01/2002~ -~17348~^~410~^0.904^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~ -~17348~^~415~^0.710^3^0.031^~1~^~A~^^^1^0.662^0.767^2^0.578^0.842^~4~^~02/01/2002~ -~17348~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~502~^1.204^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~503~^1.368^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~504~^2.423^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~505~^2.587^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~506~^0.743^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~507~^0.297^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~508~^1.204^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~509~^0.996^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~510~^1.546^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~511~^1.903^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~512~^0.951^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~513~^1.858^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~514~^2.765^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~515~^4.520^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~516~^1.739^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~517~^1.397^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~518~^1.100^0^^~1~^~A~^^^^^^^^^^~10/01/2001~ -~17348~^~521~^0.461^0^^~1~^~A~^^^^^^^^^^~03/01/2002~ -~17348~^~606~^1.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~609~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~610~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~611~^0.002^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~612~^0.066^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~613~^0.406^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~614~^0.494^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~615~^0.006^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~617~^0.367^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~618~^0.069^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~619~^0.032^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~620~^0.020^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~624~^0.001^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~625~^0.005^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~626~^0.033^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~628~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~ -~17348~^~645~^0.412^0^^~4~^~BFFN~^~17344~^^^^^^^^^~02/01/2002~ -~17348~^~646~^0.121^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~ -~17348~^~652~^0.027^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~653~^0.030^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~672~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~685~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~687~^0.007^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~689~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17348~^~697~^0.000^0^^~4~^~BFFN~^~17344~^^^^^^^^^~12/01/2001~ -~17349~^~501~^0.204^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~502~^0.881^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~503~^0.993^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~504~^1.607^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~505~^1.663^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~506~^0.471^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~508~^0.814^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~509~^0.643^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~510~^1.115^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~511~^1.187^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~512~^0.732^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~513~^1.200^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~514~^1.741^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~515~^3.192^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~516~^1.037^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~517~^0.842^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~518~^0.756^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~10/01/2012~ -~17349~^~605~^0.151^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~606~^1.672^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~612~^0.114^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~613~^0.884^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~614~^0.591^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~617~^1.766^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17349~^~618~^0.204^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17349~^~619~^0.052^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17349~^~620~^0.097^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~626~^0.146^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17349~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17349~^~629~^0.039^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~631~^0.064^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~645~^1.943^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~646~^0.456^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~652~^0.022^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~653~^0.041^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~663~^0.118^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~665~^0.028^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~674~^1.647^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~675~^0.176^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~693~^0.118^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17349~^~851~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17349~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17350~^~501~^0.192^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~502~^0.830^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~503~^0.936^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~504~^1.513^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~505~^1.566^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~506~^0.444^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~507~^0.215^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~508~^0.767^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~509~^0.606^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~510~^1.050^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~511~^1.118^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~512~^0.690^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~513~^1.131^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~514~^1.639^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~515~^3.006^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~516~^0.977^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~517~^0.793^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~518~^0.712^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~521~^0.099^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~ -~17350~^~605~^0.330^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~606~^2.948^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~612~^0.234^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~613~^1.551^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~614~^1.011^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~617~^2.751^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~618~^0.261^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~619~^0.068^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~620~^0.093^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~625~^0.056^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~626~^0.226^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~629~^0.037^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~631~^0.065^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~645~^3.040^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~646~^0.526^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17350~^~652~^0.043^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~653~^0.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17350~^~859~^0.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17351~^~501~^0.206^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~502~^0.890^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~503~^1.003^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~504~^1.622^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~505~^1.679^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~506~^0.476^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~508~^0.822^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~509~^0.649^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~510~^1.126^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~511~^1.199^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~512~^0.739^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~513~^1.212^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~514~^1.757^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~515~^3.223^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~516~^1.047^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~517~^0.850^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~518~^0.764^0^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~521~^0.103^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~17351~^~605~^0.142^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~606~^1.700^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17351~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17351~^~612~^0.166^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~613~^0.957^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~614~^0.484^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17351~^~617~^1.525^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17351~^~618~^0.123^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17351~^~619~^0.382^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17351~^~620~^0.038^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~625~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~626~^0.131^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~17351~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17351~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~631~^0.034^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~645~^1.708^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~646~^0.602^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~652~^0.025^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~653~^0.043^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~663~^0.104^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~665~^0.033^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~674~^1.421^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~675~^0.090^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~693~^0.104^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17351~^~851~^0.377^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17351~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~ -~17352~^~501~^0.194^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~502~^0.839^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~503~^0.946^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~504~^1.529^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~505~^1.583^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~506~^0.448^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~508~^0.775^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~509~^0.612^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~510~^1.062^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~511~^1.130^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~512~^0.697^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~513~^1.143^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~514~^1.657^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~515~^3.039^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~516~^0.987^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~517~^0.802^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~518~^0.720^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~521~^0.100^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~17352~^~605~^0.318^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~606~^2.951^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~611~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~612~^0.281^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~613~^1.608^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~614~^0.902^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~617~^2.506^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~618~^0.183^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~619~^0.379^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~624~^0.012^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~625~^0.075^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~626~^0.210^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~631~^0.036^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~645~^2.798^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~646~^0.662^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~ -~17352~^~652~^0.046^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~653~^0.077^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17352~^~859~^0.111^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~ -~17353~^~605~^1.625^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~606~^9.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~610~^0.037^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~611~^0.057^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~612~^0.721^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~613~^4.383^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~614~^4.169^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~615~^0.036^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~617~^7.679^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17353~^~618~^0.744^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17353~^~619~^0.263^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~ -~17353~^~620~^0.040^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~624~^0.052^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~625~^0.020^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~626~^0.235^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~631~^0.043^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~645~^7.948^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~646~^1.119^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~652~^0.135^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~653~^0.336^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~663~^1.289^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~665~^0.322^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~674~^6.390^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~675~^0.422^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~693~^1.289^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~695~^0.336^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~17353~^~851~^0.249^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17353~^~856~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~17354~^~312~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~404~^0.131^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~405~^0.104^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~406~^1.740^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~410~^0.212^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~415~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~501~^0.094^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~502~^0.407^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~503~^0.382^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~504~^0.659^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~505~^0.745^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~506~^0.278^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~507~^0.112^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~508~^0.336^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~509~^0.296^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~510~^0.435^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~511~^0.574^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~512~^0.181^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~513~^0.424^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~515~^1.192^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~516~^0.365^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~517~^0.274^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~518~^0.291^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~605~^3.611^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~606~^26.327^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~610~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~611~^0.065^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~612~^1.331^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~613~^9.490^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~614~^14.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~615~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~617~^17.211^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~618~^1.461^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~619~^0.608^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~624~^0.148^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~625~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~626~^0.573^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17354~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~631~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~645~^17.839^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~646~^2.114^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~653~^1.123^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~662~^0.083^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~663~^3.499^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~669~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~670~^0.915^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~673~^0.489^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~674~^13.712^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~675~^0.517^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17354~^~693~^3.582^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17354~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~851~^0.608^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17354~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17354~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~312~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~315~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~404~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~405~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~406~^1.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~410~^0.149^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~415~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~501~^0.051^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~502~^0.221^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~503~^0.207^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~504~^0.358^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~505~^0.404^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~506~^0.151^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~507~^0.061^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~508~^0.182^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~509~^0.160^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~510~^0.236^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~511~^0.312^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~512~^0.098^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~513~^0.230^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~515~^0.647^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~516~^0.198^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~517~^0.148^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~518~^0.158^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~605~^4.095^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~606~^30.741^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~610~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~611~^0.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~612~^1.359^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~613~^11.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~614~^16.669^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~615~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~617~^18.616^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~618~^1.663^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~619~^0.644^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~624~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~625~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~626~^0.523^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17355~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~631~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~645~^19.183^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~646~^2.359^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~653~^1.299^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~662~^0.077^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~663~^3.950^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~669~^0.069^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~670~^1.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~673~^0.446^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~674~^14.666^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~675~^0.540^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17355~^~693~^4.027^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~695~^0.069^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17355~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~851~^0.644^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17355~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17355~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~312~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~404~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~405~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~406~^1.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~410~^0.156^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~415~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~502~^0.185^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~503~^0.173^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~504~^0.299^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~505~^0.338^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~506~^0.126^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~507~^0.051^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~508~^0.152^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~509~^0.134^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~510~^0.197^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~511~^0.261^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~512~^0.082^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~513~^0.192^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~515~^0.541^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~516~^0.165^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~517~^0.124^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~518~^0.132^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~605~^4.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~606~^32.369^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~609~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~610~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~611~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~612~^1.532^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~613~^12.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~614~^16.925^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~615~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~617~^21.029^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~618~^1.615^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~619~^0.641^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~624~^0.179^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~626~^0.619^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17356~^~628~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~631~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~645~^21.703^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~646~^2.310^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~653~^1.485^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~662~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~663~^3.927^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~669~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~670~^1.065^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~673~^0.535^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~674~^17.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~675~^0.512^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17356~^~693~^4.011^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17356~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~851~^0.641^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17356~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17356~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~312~^0.283^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~315~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~404~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~405~^0.219^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~406~^2.995^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~410~^1.906^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~415~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~501~^0.155^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~502~^0.669^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~503~^0.628^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~504~^1.083^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~505~^1.225^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~506~^0.458^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~507~^0.184^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~508~^0.553^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~509~^0.486^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~510~^0.714^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~511~^0.944^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~512~^0.297^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~513~^0.697^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~515~^1.960^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~516~^0.600^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~517~^0.450^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~518~^0.478^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~606~^1.365^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~612~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~613~^0.610^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~614~^0.636^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~615~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~617~^1.846^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~618~^0.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~620~^0.202^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~621~^0.456^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~624~^0.068^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~626~^0.044^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17357~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~630~^0.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~631~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~645~^4.168^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~646~^0.999^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~671~^0.287^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~674~^1.845^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~675~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~676~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17357~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17357~^~697~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17357~^~853~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17357~^~855~^0.202^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~312~^0.298^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~315~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~404~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~405~^0.203^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~406~^3.812^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~410~^1.938^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~415~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~502~^0.540^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~503~^0.507^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~504~^0.875^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~505~^0.989^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~506~^0.370^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~507~^0.148^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~508~^0.446^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~509~^0.392^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~510~^0.577^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~511~^0.762^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~512~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~513~^0.563^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~515~^1.582^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~516~^0.484^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~517~^0.363^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~518~^0.386^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~605~^0.025^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~606~^1.035^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~613~^0.434^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~614~^0.502^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~617~^1.311^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~618~^0.008^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~620~^0.155^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~621~^0.364^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~624~^0.045^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~626~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17358~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~630~^0.072^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~631~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~645~^2.243^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~646~^0.781^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~653~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~663~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~671~^0.181^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~673~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~674~^0.591^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~675~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~676~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17358~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17358~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17358~^~853~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17358~^~855~^0.155^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~312~^0.138^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~404~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~406~^3.654^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~410~^0.411^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~415~^0.089^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~501~^0.311^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~502~^1.343^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~503~^1.260^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~504~^2.174^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~505~^2.459^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~506~^0.919^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~507~^0.369^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~508~^1.109^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~509~^0.976^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~510~^1.434^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~511~^1.895^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~512~^0.596^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~513~^1.400^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~515~^3.933^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~516~^1.204^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~517~^0.903^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~518~^0.960^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~605~^0.475^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~606~^6.004^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~610~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~611~^0.033^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~612~^0.393^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~613~^2.618^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~614~^2.624^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~617~^4.112^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~618~^0.479^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~619~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~620~^0.036^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~624~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~625~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~626~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17359~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~629~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~631~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~645~^4.317^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~646~^0.775^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~653~^0.249^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~662~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~663~^0.455^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~670~^0.279^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~673~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~674~^3.656^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~675~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17359~^~693~^0.475^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17359~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~851~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17359~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17359~^~855~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~312~^0.089^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~404~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~405~^0.159^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~406~^4.949^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~410~^0.532^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~415~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~501~^0.202^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~502~^0.873^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~503~^0.820^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~504~^1.414^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~505~^1.599^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~506~^0.597^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~507~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~508~^0.721^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~509~^0.634^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~510~^0.932^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~511~^1.232^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~512~^0.388^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~513~^0.910^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~515~^2.557^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~516~^0.783^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~517~^0.587^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~518~^0.624^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~605~^0.220^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~606~^2.738^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~611~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~612~^0.162^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~613~^1.233^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~614~^1.178^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~617~^2.037^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~618~^0.108^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~619~^0.090^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~620~^0.016^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~626~^0.088^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17360~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~631~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~645~^2.133^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~646~^0.246^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~653~^0.123^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~663~^0.213^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~673~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~674~^1.823^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~675~^0.108^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17360~^~693~^0.220^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17360~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~851~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17360~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17360~^~855~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~312~^0.158^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~404~^0.138^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~405~^0.188^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~406~^3.571^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~410~^0.870^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~415~^0.175^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~501~^0.262^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~502~^1.130^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~503~^1.060^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~504~^1.829^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~505~^2.069^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~506~^0.773^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~507~^0.310^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~508~^0.933^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~509~^0.821^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~510~^1.206^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~511~^1.594^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~512~^0.502^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~513~^1.177^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~515~^3.309^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~516~^1.013^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~517~^0.759^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~518~^0.808^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~605~^0.139^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~606~^1.769^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~612~^0.119^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~613~^0.818^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~614~^0.731^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~617~^1.244^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~618~^0.171^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~619~^0.095^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~626~^0.051^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17361~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~629~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~645~^1.295^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~646~^0.344^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~653~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~663~^0.132^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~670~^0.063^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~674~^1.112^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~675~^0.108^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17361~^~693~^0.139^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17361~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~851~^0.095^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17361~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17361~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~312~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~404~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~405~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~406~^1.530^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~410~^0.156^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~415~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~501~^0.058^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~502~^0.250^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~503~^0.235^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~504~^0.405^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~505~^0.458^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~506~^0.171^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~507~^0.069^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~508~^0.206^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~509~^0.182^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~510~^0.267^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~511~^0.353^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~512~^0.111^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~513~^0.260^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~515~^0.732^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~516~^0.224^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~517~^0.168^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~518~^0.179^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~605~^4.419^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~606~^31.441^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~609~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~610~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~611~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~612~^1.304^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~613~^10.597^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~614~^17.798^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~615~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~617~^19.157^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~618~^1.599^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~619~^0.662^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~624~^0.137^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~625~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~626~^0.527^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17362~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~631~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~645~^19.735^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~646~^2.314^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~653~^1.362^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~662~^0.082^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~663~^4.297^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~669~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~670~^0.995^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~673~^0.444^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~674~^14.859^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~675~^0.564^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17362~^~693~^4.380^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17362~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~851~^0.662^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17362~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17362~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~312~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~404~^0.154^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~405~^0.128^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~406~^5.256^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~410~^0.807^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~415~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~501~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~502~^1.034^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~503~^0.970^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~504~^1.674^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~505~^1.893^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~506~^0.707^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~508~^0.854^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~509~^0.751^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~510~^1.104^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~511~^1.459^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~512~^0.459^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~513~^1.078^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~515~^3.028^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~516~^0.927^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~517~^0.695^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~518~^0.739^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~605~^0.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~606~^1.265^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~612~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~613~^0.585^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~614~^0.535^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~617~^0.969^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~618~^0.150^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~619~^0.078^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~620~^0.029^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~626~^0.036^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~17363~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~645~^1.005^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~646~^0.311^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~662~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~663~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~670~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~673~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~674~^0.896^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~675~^0.104^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~17363~^~693~^0.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~17363~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~851~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17363~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~17363~^~855~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~17364~^~312~^0.415^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~315~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~404~^0.462^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~405~^1.529^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~406~^9.064^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~410~^4.558^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~415~^0.230^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~502~^0.944^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~503~^0.885^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~504~^1.527^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~505~^1.727^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~506~^0.645^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~507~^0.259^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~508~^0.779^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~509~^0.685^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~510~^1.007^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~511~^1.332^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~512~^0.419^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~513~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~515~^2.763^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~516~^0.846^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~517~^0.634^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~518~^0.674^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~606~^0.920^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~613~^0.341^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~614~^0.455^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~617~^0.415^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~618~^0.265^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~619~^0.078^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~620~^0.197^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~621~^0.058^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~624~^0.041^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~626~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17364~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~629~^0.152^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~631~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~645~^0.453^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~646~^0.826^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~653~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~654~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~662~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~663~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~670~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~671~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~673~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~674~^0.380^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~675~^0.245^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17364~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17364~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~851~^0.078^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17364~^~853~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17364~^~855~^0.197^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~312~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~404~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~405~^0.148^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~406~^3.343^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~410~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~415~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~501~^0.308^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~502~^1.330^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~503~^1.248^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~504~^2.153^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~505~^2.435^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~506~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~507~^0.365^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~508~^1.098^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~509~^0.966^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~510~^1.420^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~511~^1.877^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~512~^0.590^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~513~^1.386^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~515~^3.895^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~516~^1.192^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~517~^0.894^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~518~^0.951^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~605~^0.397^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~606~^5.056^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~610~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~611~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~612~^0.245^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~613~^2.209^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~614~^2.321^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~617~^3.289^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~618~^0.344^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~619~^0.153^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~620~^0.048^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~626~^0.130^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17365~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~629~^0.062^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~631~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~645~^3.419^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~646~^0.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~653~^0.230^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~663~^0.383^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~670~^0.176^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~673~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~674~^2.906^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~675~^0.168^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17365~^~693~^0.397^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17365~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~851~^0.153^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17365~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17365~^~855~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~312~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~404~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~405~^0.139^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~406~^4.617^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~410~^0.468^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~415~^0.115^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~501~^0.240^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~502~^1.036^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~503~^0.972^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~504~^1.677^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~505~^1.897^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~506~^0.709^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~507~^0.284^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~508~^0.856^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~509~^0.753^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~510~^1.106^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~511~^1.462^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~512~^0.460^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~513~^1.080^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~515~^3.034^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~516~^0.929^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~517~^0.696^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~518~^0.741^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~605~^0.285^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~606~^3.918^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~610~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~612~^0.219^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~613~^1.811^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~614~^1.670^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~617~^2.611^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~618~^0.233^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~619~^0.124^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~620~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~626~^0.100^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17366~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~629~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~645~^2.716^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~646~^0.404^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~653~^0.177^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~663~^0.276^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~670~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~673~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~674~^2.335^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~675~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17366~^~693~^0.285^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17366~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~851~^0.124^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17366~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17366~^~855~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~312~^0.361^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~315~^0.084^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~404~^0.413^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~405~^1.279^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~406~^8.426^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~410~^3.207^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~415~^0.173^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~501~^0.168^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~502~^0.726^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~503~^0.681^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~504~^1.175^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~505~^1.329^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~506~^0.496^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~507~^0.199^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~508~^0.599^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~509~^0.527^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~510~^0.775^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~511~^1.024^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~512~^0.322^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~513~^0.756^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~515~^2.125^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~516~^0.651^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~517~^0.488^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~518~^0.519^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~606~^0.768^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~612~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~613~^0.282^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~614~^0.385^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~617~^0.362^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~618~^0.166^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~620~^0.143^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~621~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~624~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~626~^0.016^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17367~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~629~^0.093^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~631~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~645~^0.391^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~646~^0.540^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~653~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~654~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~663~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~670~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~671~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~673~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~674~^0.325^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~675~^0.151^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17367~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17367~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17367~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17367~^~855~^0.143^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~312~^13.400^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~315~^0.370^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~404~^1.570^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~405~^5.270^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~406~^12.800^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~410~^5.220^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~415~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~501~^0.285^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~502~^1.231^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~503~^1.155^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~504~^1.992^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~505~^2.253^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~506~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~507~^0.338^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~508~^1.016^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~509~^0.894^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~510~^1.314^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~511~^1.737^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~512~^0.546^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~513~^1.283^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~515~^3.604^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~516~^1.103^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~517~^0.827^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~518~^0.880^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~605~^0.192^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~606~^1.959^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~612~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~613~^0.621^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~614~^1.171^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~617~^0.934^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~618~^0.247^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~619~^0.173^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~620~^0.156^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~621~^0.208^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~624~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~626~^0.067^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17368~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~629~^0.164^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~631~^0.179^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~645~^1.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~646~^1.148^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~653~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~654~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~662~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~663~^0.169^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~670~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~674~^0.765^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~675~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~676~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~685~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17368~^~693~^0.192^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17368~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~851~^0.171^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17368~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~853~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17368~^~855~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~312~^11.400^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~315~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~404~^1.210^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~405~^4.210^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~406~^13.700^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~410~^5.570^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~415~^0.218^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~502~^0.987^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~503~^0.927^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~504~^1.598^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~505~^1.808^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~506~^0.675^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~507~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~508~^0.815^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~509~^0.717^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~510~^1.054^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~511~^1.393^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~512~^0.438^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~513~^1.029^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~515~^2.892^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~516~^0.885^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~517~^0.664^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~518~^0.706^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~605~^0.146^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~606~^1.514^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~612~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~613~^0.488^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~614~^0.889^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~617~^0.742^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~618~^0.204^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~619~^0.147^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~620~^0.124^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~621~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~624~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~626~^0.052^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17369~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~629~^0.129^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~631~^0.135^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~645~^0.817^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~646~^0.920^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~653~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~654~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~662~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~663~^0.129^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~670~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~673~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~674~^0.613^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~675~^0.153^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~676~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17369~^~693~^0.146^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17369~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~851~^0.137^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17369~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~853~^0.014^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17369~^~855~^0.124^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~312~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~405~^0.153^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~406~^3.308^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~410~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~415~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~501~^0.250^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~502~^1.078^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~503~^1.012^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~504~^1.745^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~505~^1.973^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~506~^0.737^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~508~^0.890^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~509~^0.783^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~510~^1.151^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~511~^1.521^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~512~^0.479^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~513~^1.123^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~515~^3.157^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~516~^0.966^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~517~^0.724^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~518~^0.770^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~605~^0.380^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~606~^4.378^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~610~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~611~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~612~^0.217^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~613~^1.776^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~614~^2.132^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~617~^2.668^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~618~^0.283^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~619~^0.136^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~620~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~626~^0.096^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17370~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~631~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~645~^2.769^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~646~^0.489^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~653~^0.199^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~663~^0.366^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~670~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~673~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~674~^2.302^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~675~^0.149^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17370~^~693~^0.380^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17370~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~851~^0.136^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17370~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17370~^~855~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~312~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~404~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~405~^0.176^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~406~^5.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~410~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~415~^0.132^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~501~^0.225^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~502~^0.970^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~503~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~504~^1.570^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~505~^1.775^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~506~^0.663^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~507~^0.266^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~508~^0.801^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~510~^1.035^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~511~^1.368^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~512~^0.430^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~513~^1.011^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~515~^2.840^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~516~^0.869^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~517~^0.652^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~518~^0.693^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~605~^0.439^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~606~^4.848^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~610~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~611~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~612~^0.256^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~613~^1.972^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~614~^2.349^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~615~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~617~^2.874^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~618~^0.309^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~619~^0.117^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~620~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17371~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~645~^2.977^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~646~^0.483^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~653~^0.218^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~662~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~663~^0.426^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~670~^0.169^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~673~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~674~^2.448^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~675~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17371~^~693~^0.439^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17371~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~851~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17371~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17371~^~855~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~312~^0.643^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~315~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~404~^0.229^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~405~^0.838^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~406~^4.229^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~410~^1.827^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~415~^0.125^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~501~^0.290^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~502~^1.253^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~503~^1.176^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~504~^2.028^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~505~^2.294^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~506~^0.857^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~507~^0.344^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~508~^1.034^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~509~^0.910^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~510~^1.337^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~511~^1.768^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~512~^0.556^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~513~^1.306^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~515~^3.669^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~516~^1.123^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~517~^0.842^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~518~^0.895^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~605~^0.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~606~^2.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~611~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~612~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~613~^0.669^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~614~^1.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~617~^0.970^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~618~^0.520^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~619~^0.150^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~620~^0.120^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~621~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~624~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~626~^0.033^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17372~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~629~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~631~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~645~^1.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~646~^0.933^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~653~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~662~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~663~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~670~^0.058^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~673~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~674~^0.814^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~675~^0.462^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17372~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17372~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~851~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17372~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17372~^~855~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~312~^0.412^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~315~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~404~^0.520^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~405~^0.537^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~406~^5.757^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~410~^2.244^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~415~^0.144^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~502~^0.863^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~503~^0.810^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~504~^1.397^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~505~^1.580^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~506~^0.590^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~507~^0.237^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~508~^0.712^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~509~^0.627^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~510~^0.921^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~511~^1.218^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~512~^0.383^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~513~^0.899^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~515~^2.527^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~516~^0.773^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~517~^0.580^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~518~^0.617^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~605~^0.078^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~606~^0.995^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~612~^0.052^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~613~^0.337^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~614~^0.536^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~617~^0.492^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~618~^0.340^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~619~^0.096^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~620~^0.091^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~621~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~624~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~626~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17373~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~629~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~631~^0.032^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~645~^0.517^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~646~^0.646^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~653~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~663~^0.071^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~670~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~673~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~674~^0.421^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~675~^0.308^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17373~^~693~^0.078^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17373~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~851~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17373~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17373~^~855~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~312~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~315~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~404~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~405~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~406~^1.375^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~410~^0.729^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~501~^0.234^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~502~^1.008^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~503~^0.946^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~504~^1.632^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~505~^1.845^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~506~^0.689^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~507~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~508~^0.832^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~509~^0.732^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~510~^1.076^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~511~^1.422^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~512~^0.447^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~513~^1.050^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~515~^2.952^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~516~^0.904^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~517~^0.677^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~518~^0.720^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~605~^0.172^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~606~^2.342^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~612~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~613~^1.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~614~^1.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~617~^1.769^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~618~^0.177^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~620~^0.051^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~621~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~624~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~626~^0.055^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17374~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~631~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~645~^1.847^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~646~^0.393^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~653~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~663~^0.162^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~670~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~671~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~673~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~674~^1.607^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~675~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17374~^~693~^0.172^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17374~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~851~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17374~^~853~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17374~^~855~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~312~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~404~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~405~^0.067^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~406~^1.342^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~410~^0.723^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~501~^0.122^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~502~^0.525^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~503~^0.492^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~504~^0.849^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~505~^0.960^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~506~^0.359^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~507~^0.144^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~508~^0.433^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~509~^0.381^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~510~^0.560^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~511~^0.740^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~512~^0.233^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~513~^0.547^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~515~^1.536^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~516~^0.470^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~517~^0.353^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~518~^0.375^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~605~^0.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~606~^1.602^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~610~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~612~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~613~^0.601^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~614~^0.759^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~617~^1.075^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~618~^0.104^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~619~^0.041^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~624~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~626~^0.033^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17375~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~645~^1.122^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~646~^0.234^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~653~^0.058^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~663~^0.154^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~670~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~671~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~673~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~674~^0.921^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~675~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17375~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17375~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~851~^0.041^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17375~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17375~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~312~^0.127^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~315~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~404~^0.312^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~405~^0.313^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~406~^2.224^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~410~^0.768^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~415~^0.038^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~502~^1.002^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~503~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~504~^1.623^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~505~^1.835^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~506~^0.686^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~507~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~508~^0.828^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~509~^0.728^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~510~^1.070^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~511~^1.415^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~512~^0.445^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~513~^1.045^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~515~^2.936^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~516~^0.899^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~517~^0.674^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~518~^0.716^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~606~^1.461^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~612~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~613~^1.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~614~^0.294^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~617~^0.672^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~618~^0.069^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~620~^0.206^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~621~^0.550^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~624~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~626~^0.033^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17376~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~629~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~631~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~645~^0.731^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~646~^1.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~663~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~670~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~671~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~673~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~674~^0.643^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~675~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~689~^0.108^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17376~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17376~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17376~^~851~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~852~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~853~^0.102^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17376~^~855~^0.206^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~312~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~315~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~404~^0.315^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~405~^0.214^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~406~^1.744^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~410~^0.872^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~415~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~501~^0.126^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~502~^0.544^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~503~^0.510^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~504~^0.880^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~505~^0.995^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~506~^0.372^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~507~^0.149^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~508~^0.449^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~509~^0.395^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~510~^0.580^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~511~^0.767^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~512~^0.241^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~513~^0.567^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~515~^1.592^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~516~^0.487^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~517~^0.365^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~518~^0.389^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~605~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~606~^0.793^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~608~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~612~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~613~^0.573^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~614~^0.153^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~617~^0.322^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~618~^0.033^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~620~^0.073^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~621~^0.179^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~626~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17377~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~629~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~631~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~645~^0.357^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~646~^0.353^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~663~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~670~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~671~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~673~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~674~^0.306^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~675~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~689~^0.038^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17377~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17377~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~851~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17377~^~853~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17377~^~855~^0.073^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~312~^0.199^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~315~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~404~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~405~^0.341^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~406~^2.272^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~410~^0.578^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~415~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~502~^0.835^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~503~^0.784^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~504~^1.352^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~505~^1.530^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~506~^0.571^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~508~^0.690^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~509~^0.607^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~510~^0.892^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~511~^1.179^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~512~^0.371^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~513~^0.871^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~515~^2.447^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~516~^0.749^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~517~^0.561^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~518~^0.597^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~605~^0.746^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~606~^7.341^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~610~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~611~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~612~^0.378^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~613~^3.093^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~614~^3.379^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~617~^7.423^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~618~^0.852^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~619~^0.285^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~620~^0.039^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~621~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~624~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~625~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~626~^0.309^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17378~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~631~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~645~^7.761^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~646~^1.258^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~653~^0.384^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~662~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~663~^0.717^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~670~^0.435^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~673~^0.280^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~674~^6.706^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~675~^0.417^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17378~^~693~^0.746^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17378~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~851~^0.285^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17378~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17378~^~855~^0.039^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~312~^0.152^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~404~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~405~^0.293^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~406~^3.078^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~410~^0.440^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~415~^0.097^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~502~^0.681^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~503~^0.639^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~504~^1.102^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~505~^1.246^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~506~^0.465^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~507~^0.187^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~508~^0.562^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~509~^0.494^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~510~^0.727^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~511~^0.960^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~512~^0.302^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~513~^0.709^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~515~^1.993^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~516~^0.610^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~517~^0.457^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~518~^0.486^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~605~^0.658^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~606~^5.896^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~610~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~611~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~612~^0.313^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~613~^2.486^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~614~^2.741^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~617~^6.103^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~618~^0.665^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~619~^0.278^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~620~^0.030^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~621~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~625~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~626~^0.254^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17379~^~628~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~629~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~631~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~645~^6.404^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~646~^1.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~653~^0.300^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~662~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~663~^0.632^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~670~^0.316^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~673~^0.229^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~674~^5.471^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~675~^0.349^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17379~^~693~^0.658^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17379~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~851~^0.278^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17379~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17379~^~855~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~312~^0.155^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~404~^0.107^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~405~^0.248^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~406~^5.892^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~410~^0.823^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~415~^0.275^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~501~^0.280^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~502~^1.207^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~503~^1.132^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~504~^1.953^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~505~^2.209^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~506~^0.825^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~507~^0.331^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~508~^0.996^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~509~^0.876^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~510~^1.288^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~511~^1.703^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~512~^0.536^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~513~^1.257^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~515~^3.533^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~516~^1.081^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~517~^0.811^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~518~^0.862^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~605~^0.179^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~606~^2.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~612~^0.129^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~613~^0.966^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~614~^0.811^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~617~^1.767^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~618~^0.208^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~619~^0.113^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~621~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~626~^0.064^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17380~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~631~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~645~^1.841^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~646~^0.406^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~653~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~663~^0.172^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~670~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~673~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~674~^1.595^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~675~^0.125^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17380~^~693~^0.179^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17380~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~851~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17380~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17380~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~312~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~404~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~406~^5.234^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~410~^0.677^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~415~^0.225^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~502~^0.998^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~503~^0.937^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~504~^1.616^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~505~^1.828^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~506~^0.683^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~508~^0.824^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~509~^0.725^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~510~^1.066^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~511~^1.409^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~512~^0.443^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~513~^1.040^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~515~^2.924^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~516~^0.895^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~517~^0.671^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~518~^0.714^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~606~^1.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~608~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~612~^0.079^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~613~^0.645^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~614~^0.557^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~617~^1.219^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~618~^0.162^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~619~^0.086^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~620~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~626~^0.050^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17381~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~629~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~645~^1.272^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~646~^0.333^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~653~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~663~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~670~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~673~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~674~^1.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~675~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17381~^~693~^0.114^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17381~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~851~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17381~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17381~^~855~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~312~^0.143^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~404~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~405~^0.214^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~406~^2.897^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~410~^0.588^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~501~^0.343^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~502~^1.482^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~503~^1.390^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~504~^2.399^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~505~^2.713^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~506~^1.013^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~507~^0.407^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~508~^1.223^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~509~^1.076^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~510~^1.582^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~511~^2.091^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~512~^0.658^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~513~^1.544^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~515~^4.339^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~516~^1.328^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~517~^0.996^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~518~^1.059^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~605~^0.523^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~606~^5.476^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~610~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~611~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~612~^0.384^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~613~^2.364^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~614~^2.387^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~617~^4.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~618~^0.481^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~619~^0.201^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~625~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~626~^0.155^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17382~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~631~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~645~^4.192^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~646~^0.787^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~653~^0.245^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~662~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~663~^0.504^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~670~^0.240^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~673~^0.136^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~674~^3.520^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~675~^0.242^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~689~^0.023^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17382~^~693~^0.523^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17382~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~851~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17382~^~853~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17382~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~312~^0.089^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~404~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~406~^3.862^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~410~^0.284^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~415~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~502~^0.984^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~503~^0.923^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~504~^1.593^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~505~^1.801^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~506~^0.673^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~508~^0.812^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~509~^0.715^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~510~^1.050^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~511~^1.388^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~512~^0.437^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~513~^1.025^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~515~^2.881^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~516~^0.882^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~517~^0.661^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~518~^0.703^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~605~^0.299^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~606~^2.769^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~611~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~612~^0.169^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~613~^1.211^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~614~^1.232^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~617~^2.264^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~618~^0.262^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~619~^0.096^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~620~^0.023^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~621~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~626~^0.078^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17383~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~645~^2.349^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~646~^0.422^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~653~^0.114^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~662~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~663~^0.289^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~670~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~673~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~674~^1.975^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~675~^0.129^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17383~^~693~^0.299^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17383~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~851~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17383~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17383~^~855~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~312~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~404~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~405~^0.296^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~406~^9.099^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~410~^1.064^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~415~^0.281^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~501~^0.309^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~502~^1.333^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~503~^1.251^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~504~^2.158^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~505~^2.440^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~506~^0.912^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~507~^0.366^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~508~^1.101^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~509~^0.968^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~510~^1.423^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~511~^1.881^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~512~^0.592^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~513~^1.389^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~515~^3.903^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~516~^1.195^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~517~^0.896^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~518~^0.953^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~605~^0.166^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~606~^1.799^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~612~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~613~^0.770^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~614~^0.827^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~617~^1.368^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~618~^0.208^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~619~^0.106^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~620~^0.047^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~621~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~625~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~626~^0.049^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17384~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~629~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~645~^1.433^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~646~^0.445^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~653~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~663~^0.155^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~670~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~671~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~673~^0.038^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~674~^1.214^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~675~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17384~^~693~^0.166^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17384~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~851~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17384~^~853~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17384~^~855~^0.047^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17385~^~312~^0.136^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~404~^0.075^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~405~^0.215^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~406~^7.301^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~410~^0.867^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~415~^0.247^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~503~^0.919^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~504~^1.586^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~505~^1.793^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~506~^0.670^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~507~^0.269^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~508~^0.809^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~510~^1.046^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~511~^1.382^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~512~^0.435^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~513~^1.021^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~515~^2.868^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~516~^0.878^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~517~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~518~^0.700^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~605~^0.191^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17385~^~606~^1.260^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17385~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~612~^0.058^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~613~^0.550^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~614~^0.572^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~617~^1.870^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~17385~^~618~^0.248^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~17385~^~619~^0.136^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~17385~^~620~^0.056^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~17385~^~621~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~626~^0.059^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~17385~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17385~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~629~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17385~^~631~^0.033^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~645~^1.940^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17385~^~646~^0.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17385~^~653~^0.056^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~663~^0.183^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~670~^0.039^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~671~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~673~^0.051^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~674~^1.687^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~675~^0.208^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17385~^~693~^0.191^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17385~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17385~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~851~^0.136^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17385~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~17385~^~853~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17385~^~855~^0.056^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~17386~^~312~^0.137^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~404~^0.119^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~405~^0.221^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~406~^6.436^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~410~^0.514^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~415~^0.206^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~501~^0.282^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~502~^1.218^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~503~^1.143^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~504~^1.971^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~505~^2.229^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~506~^0.833^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~507~^0.334^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~508~^1.005^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~509~^0.884^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~510~^1.300^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~511~^1.718^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~512~^0.541^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~513~^1.269^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~515~^3.566^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~516~^1.091^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~517~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~518~^0.870^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~605~^0.250^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~606~^2.514^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~611~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~612~^0.139^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~613~^1.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~614~^1.190^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~617~^1.689^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~618~^0.199^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~619~^0.095^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~620~^0.028^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~626~^0.059^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17386~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~645~^1.754^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~646~^0.378^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~653~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~662~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~663~^0.240^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~670~^0.073^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~673~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~674~^1.449^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~675~^0.125^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17386~^~693~^0.250^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17386~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~851~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17386~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17386~^~855~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~404~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~405~^0.136^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~406~^5.918^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~410~^0.445^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~415~^0.175^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~502~^0.995^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~503~^0.934^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~504~^1.611^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~505~^1.821^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~506~^0.680^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~508~^0.822^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~509~^0.723^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~510~^1.062^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~511~^1.404^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~512~^0.442^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~513~^1.037^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~515~^2.913^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~516~^0.892^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~517~^0.669^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~518~^0.711^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~605~^0.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~606~^1.960^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~611~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~612~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~613~^0.892^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~614~^0.804^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~617~^1.485^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~618~^0.189^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~619~^0.082^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~626~^0.057^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17387~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~629~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~645~^1.549^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~646~^0.351^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~653~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~662~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~663~^0.208^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~670~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~673~^0.047^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~674~^1.277^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~675~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17387~^~693~^0.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17387~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~851~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17387~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17387~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~312~^0.167^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~404~^0.062^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~405~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~406~^7.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~410~^0.785^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~415~^0.205^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~501~^0.320^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~502~^1.383^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~503~^1.298^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~504~^2.239^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~505~^2.532^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~506~^0.946^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~507~^0.379^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~508~^1.142^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~509~^1.004^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~510~^1.476^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~511~^1.951^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~512~^0.614^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~513~^1.441^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~515~^4.049^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~516~^1.240^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~517~^0.929^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~518~^0.988^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~605~^0.098^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~606~^1.581^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~612~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~613~^0.782^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~614~^0.623^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~617~^1.176^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~618~^0.161^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~619~^0.074^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~620~^0.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~621~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~626~^0.050^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17388~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~629~^0.038^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~631~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~645~^1.233^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~646~^0.350^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~653~^0.056^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~662~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~663~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~670~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~673~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~674~^1.084^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~675~^0.114^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17388~^~693~^0.098^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17388~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~851~^0.074^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17388~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17388~^~855~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~312~^0.127^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~404~^0.072^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~405~^0.162^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~406~^6.356^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~410~^0.545^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~415~^0.176^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~501~^0.238^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~502~^1.026^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~503~^0.962^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~504~^1.660^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~505~^1.878^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~506~^0.701^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~507~^0.281^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~508~^0.847^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~509~^0.745^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~510~^1.095^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~511~^1.447^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~512~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~513~^1.069^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~515~^3.003^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~516~^0.919^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~517~^0.689^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~518~^0.733^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~606~^1.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~612~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~613~^0.588^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~614~^0.468^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~617~^0.890^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~618~^0.129^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~619~^0.059^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~620~^0.032^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17389~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~629~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~645~^0.923^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~646~^0.272^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~653~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~663~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~670~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~673~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~674~^0.833^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~675~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17389~^~693~^0.057^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17389~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~851~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17389~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17389~^~855~^0.032^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~312~^0.158^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~405~^0.241^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~406~^4.450^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~410~^0.200^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~415~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~501~^0.359^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~502~^1.550^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~503~^1.455^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~504~^2.510^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~505~^2.838^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~506~^1.060^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~507~^0.425^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~508~^1.280^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~509~^1.126^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~510~^1.655^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~511~^2.188^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~512~^0.688^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~513~^1.616^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~515~^4.540^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~516~^1.390^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~517~^1.042^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~518~^1.108^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~605~^0.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~606~^2.361^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~612~^0.167^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~613~^1.143^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~614~^0.911^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~617~^2.059^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~618~^0.275^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~619~^0.106^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~620~^0.045^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~621~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~624~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~626~^0.101^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17390~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~629~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~631~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~645~^2.170^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~646~^0.498^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~653~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~663~^0.203^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~670~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~673~^0.087^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~674~^1.856^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~675~^0.158^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17390~^~693~^0.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17390~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~851~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17390~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17390~^~855~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~312~^0.108^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~404~^0.064^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~405~^0.164^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~406~^4.852^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~410~^0.493^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~415~^0.148^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~501~^0.226^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~502~^0.973^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~503~^0.913^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~504~^1.575^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~505~^1.782^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~506~^0.666^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~507~^0.267^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~508~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~509~^0.707^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~510~^1.039^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~511~^1.373^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~512~^0.432^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~513~^1.014^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~515~^2.850^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~516~^0.872^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~517~^0.654^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~518~^0.696^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~605~^0.089^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~606~^1.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~612~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~613~^0.519^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~614~^0.397^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~617~^0.965^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~618~^0.149^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~619~^0.062^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~620~^0.034^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~621~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~626~^0.045^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17391~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~645~^1.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~646~^0.291^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~653~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~663~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~670~^0.056^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~673~^0.038^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~674~^0.882^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~675~^0.093^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17391~^~693~^0.089^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17391~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~851~^0.062^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17391~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17391~^~855~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~312~^0.087^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~405~^0.145^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~406~^4.297^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~410~^0.337^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~415~^0.121^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~502~^0.979^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~503~^0.919^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~504~^1.586^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~505~^1.793^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~506~^0.670^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~507~^0.269^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~508~^0.809^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~510~^1.046^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~511~^1.382^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~512~^0.435^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~513~^1.021^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~515~^2.868^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~516~^0.878^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~517~^0.658^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~518~^0.700^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~605~^0.259^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~606~^3.120^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~612~^0.158^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~613~^1.280^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~614~^1.496^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~617~^2.077^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~618~^0.205^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~619~^0.114^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~620~^0.023^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~621~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~626~^0.088^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17392~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~631~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~645~^2.172^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~653~^0.143^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~662~^0.028^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~663~^0.231^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~670~^0.073^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~673~^0.061^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~674~^1.846^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~675~^0.132^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17392~^~693~^0.259^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17392~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~851~^0.114^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17392~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17392~^~855~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~312~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~404~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~405~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~406~^4.151^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~410~^0.415^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~415~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~501~^0.347^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~502~^1.498^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~503~^1.406^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~504~^2.425^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~505~^2.742^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~506~^1.024^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~507~^0.411^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~508~^1.237^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~509~^1.088^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~510~^1.599^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~511~^2.114^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~512~^0.665^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~513~^1.561^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~515~^4.386^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~516~^1.343^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~517~^1.007^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~518~^1.071^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~605~^0.544^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~606~^6.085^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~610~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~611~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~612~^0.331^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~613~^2.449^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~614~^2.925^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~615~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~617~^4.061^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~618~^0.379^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~619~^0.205^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~620~^0.030^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~621~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~625~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~626~^0.134^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17393~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~631~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~645~^4.206^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~646~^0.672^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~653~^0.295^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~663~^0.535^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~670~^0.162^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~673~^0.125^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~674~^3.526^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~675~^0.216^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17393~^~693~^0.544^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17393~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~851~^0.205^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17393~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17393~^~855~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~312~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~404~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~405~^0.188^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~406~^4.279^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~410~^0.798^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~415~^0.118^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~501~^0.278^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~502~^1.199^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~503~^1.125^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~504~^1.941^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~505~^2.195^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~506~^0.820^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~508~^0.990^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~509~^0.871^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~510~^1.280^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~511~^1.692^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~512~^0.532^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~513~^1.250^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~515~^3.511^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~516~^1.075^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~517~^0.806^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~518~^0.857^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~605~^0.257^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~606~^3.262^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~610~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~611~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~612~^0.241^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~613~^1.464^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~614~^1.360^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~617~^2.228^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~618~^0.293^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~619~^0.133^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~620~^0.031^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~626~^0.088^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17394~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~629~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~631~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~645~^2.324^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~646~^0.503^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~653~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~663~^0.243^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~669~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~670~^0.132^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~673~^0.079^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~674~^1.985^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~675~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17394~^~693~^0.252^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17394~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~851~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17394~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17394~^~855~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~312~^0.092^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~404~^0.138^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~405~^0.142^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~406~^5.204^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~410~^0.578^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~415~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~502~^0.964^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~503~^0.904^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~504~^1.560^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~505~^1.764^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~506~^0.659^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~507~^0.264^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~508~^0.796^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~509~^0.700^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~510~^1.029^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~511~^1.360^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~512~^0.428^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~513~^1.004^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~515~^2.822^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~516~^0.864^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~517~^0.648^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~518~^0.689^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~605~^0.132^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~606~^2.125^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~612~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~613~^0.989^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~614~^0.860^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~617~^1.533^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~618~^0.191^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~619~^0.093^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~626~^0.066^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17395~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~645~^1.605^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~646~^0.352^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~653~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~662~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~663~^0.126^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~670~^0.079^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~673~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~674~^1.407^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~675~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17395~^~693~^0.132^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17395~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~851~^0.093^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17395~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17395~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~312~^0.126^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~404~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~406~^6.267^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~410~^0.640^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~415~^0.291^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~501~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~502~^1.163^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~503~^1.092^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~504~^1.883^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~505~^2.130^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~506~^0.796^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~507~^0.319^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~508~^0.961^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~509~^0.845^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~510~^1.242^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~511~^1.642^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~512~^0.516^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~513~^1.212^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~515~^3.406^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~516~^1.043^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~517~^0.782^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~518~^0.831^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~605~^0.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~606~^3.196^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~610~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~611~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~612~^0.207^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~613~^1.422^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~614~^1.388^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~617~^2.314^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~618~^0.246^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~619~^0.113^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~620~^0.023^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~621~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~626~^0.076^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17396~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~645~^2.399^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~646~^0.430^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~653~^0.128^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~662~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~663~^0.303^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~670~^0.117^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~673~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~674~^2.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~675~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17396~^~693~^0.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17396~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~851~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17396~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17396~^~855~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~312~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~404~^0.061^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~405~^0.178^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~406~^5.208^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~410~^0.604^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~415~^0.246^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~502~^0.983^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~503~^0.922^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~504~^1.591^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~505~^1.800^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~506~^0.672^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~508~^0.812^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~509~^0.714^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~510~^1.049^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~511~^1.387^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~512~^0.436^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~513~^1.024^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~515~^2.879^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~516~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~517~^0.661^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~518~^0.703^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~605~^0.349^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~606~^3.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~612~^0.177^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~613~^1.290^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~614~^1.409^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~617~^2.145^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~618~^0.211^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~619~^0.101^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~620~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~626~^0.070^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17397~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~645~^2.223^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~646~^0.371^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~653~^0.125^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~662~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~663~^0.336^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~670~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~673~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~674~^1.809^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~675~^0.111^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17397~^~693~^0.349^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17397~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~851~^0.101^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17397~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17397~^~855~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~312~^0.152^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~404~^0.097^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~405~^0.222^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~406~^6.651^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~410~^0.806^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~415~^0.189^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~501~^0.303^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~502~^1.309^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~503~^1.228^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~504~^2.118^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~505~^2.396^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~506~^0.895^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~507~^0.359^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~508~^1.081^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~509~^0.951^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~510~^1.397^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~511~^1.847^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~512~^0.581^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~513~^1.364^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~515~^3.832^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~516~^1.173^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~517~^0.879^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~518~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~605~^0.375^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~606~^4.039^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~610~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~611~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~612~^0.252^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~613~^1.693^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~614~^1.858^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~617~^2.637^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~618~^0.290^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~619~^0.156^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~621~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~626~^0.093^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17398~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~629~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~631~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~645~^2.745^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~646~^0.539^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~653~^0.169^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~662~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~663~^0.362^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~670~^0.126^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~673~^0.081^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~674~^2.275^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~675~^0.164^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17398~^~693~^0.375^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17398~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~851~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17398~^~853~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17398~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~312~^0.114^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~404~^0.056^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~405~^0.231^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~406~^4.238^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~410~^0.463^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~415~^0.189^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~501~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~502~^1.197^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~503~^1.123^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~504~^1.937^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~505~^2.191^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~506~^0.818^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~507~^0.328^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~508~^0.988^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~509~^0.869^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~510~^1.277^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~511~^1.688^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~512~^0.531^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~513~^1.247^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~515~^3.504^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~516~^1.073^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~517~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~518~^0.855^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~605~^0.415^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~606~^3.503^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~611~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~612~^0.198^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~613~^1.465^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~614~^1.647^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~617~^2.556^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~618~^0.293^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~619~^0.116^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~620~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~621~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~625~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~626~^0.082^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17399~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~645~^2.646^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~646~^0.470^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~653~^0.142^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~663~^0.401^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~670~^0.133^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~673~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~674~^2.155^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~675~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17399~^~693~^0.415^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17399~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~851~^0.116^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17399~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17399~^~855~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~312~^0.157^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~404~^0.138^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~406~^6.393^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~410~^0.733^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~415~^0.166^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~501~^0.291^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~502~^1.255^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~503~^1.178^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~504~^2.031^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~505~^2.297^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~506~^0.858^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~507~^0.344^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~508~^1.036^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~509~^0.911^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~510~^1.340^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~511~^1.771^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~512~^0.557^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~513~^1.308^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~515~^3.675^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~516~^1.125^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~517~^0.843^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~518~^0.897^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~605~^0.185^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~606~^1.901^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~611~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~612~^0.169^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~613~^0.934^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~614~^0.686^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~617~^1.556^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~618~^0.230^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~619~^0.080^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~620~^0.034^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~626~^0.076^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~17400~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~629~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~631~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~645~^1.640^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~646~^0.402^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~653~^0.076^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~663~^0.174^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~670~^0.107^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~673~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~674~^1.381^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~675~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17400~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17400~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~851~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17400~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17400~^~855~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17401~^~312~^0.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~315~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~404~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~405~^0.122^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~406~^2.744^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~410~^0.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~415~^0.081^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~501~^0.226^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~502~^0.977^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~503~^0.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~504~^1.582^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~505~^1.789^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~506~^0.668^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~507~^0.268^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~508~^0.807^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~509~^0.710^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~510~^1.043^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~511~^1.379^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~512~^0.434^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~513~^1.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~515~^2.861^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~516~^0.876^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~517~^0.657^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~518~^0.698^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~605~^1.686^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~606~^13.534^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~609~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~610~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~611~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~612~^0.612^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~613~^4.963^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~614~^7.209^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~615~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~617~^8.516^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~618~^0.759^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~619~^0.321^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~620~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~624~^0.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~625~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~626~^0.271^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~628~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~629~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~631~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~645~^8.805^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~646~^1.185^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~653~^0.592^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~662~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~663~^1.636^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~669~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~670~^0.448^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~673~^0.233^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~674~^6.880^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~675~^0.298^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~693~^1.674^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17401~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~851~^0.321^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17401~^~855~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~312~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~315~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~404~^0.058^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~405~^0.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~406~^3.501^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~410~^0.368^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~415~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~502~^0.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~503~^0.724^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~504~^1.249^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~505~^1.413^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~506~^0.528^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~507~^0.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~508~^0.637^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~509~^0.560^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~510~^0.824^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~511~^1.089^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~512~^0.342^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~513~^0.804^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~515~^2.259^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~516~^0.692^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~517~^0.518^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~518~^0.551^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~605~^1.482^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~606~^12.704^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~610~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~611~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~612~^0.612^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~613~^4.905^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~614~^6.463^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~615~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~617~^8.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~618~^0.676^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~619~^0.288^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~620~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~624~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~626~^0.252^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~629~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~645~^8.390^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~646~^1.014^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~653~^0.566^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~662~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~663~^1.434^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~669~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~670~^0.415^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~673~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~674~^6.684^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~675~^0.245^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~693~^1.466^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~695~^0.016^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17402~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~851~^0.288^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17402~^~855~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~312~^0.144^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~404~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~405~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~406~^4.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~410~^0.198^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~415~^0.099^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~501~^0.327^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~502~^1.411^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~503~^1.324^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~504~^2.285^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~505~^2.584^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~506~^0.965^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~507~^0.387^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~508~^1.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~509~^1.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~510~^1.507^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~511~^1.992^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~512~^0.627^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~513~^1.471^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~515~^4.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~516~^1.265^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~517~^0.948^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~518~^1.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~605~^0.654^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~606~^5.405^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~610~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~611~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~612~^0.295^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~613~^2.154^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~614~^2.649^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~617~^3.890^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~618~^0.417^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~619~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~620~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~621~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~624~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~626~^0.150^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~629~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~631~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~645~^4.055^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~646~^0.693^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~653~^0.227^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~662~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~663~^0.628^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~670~^0.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~673~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~674~^3.261^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~675~^0.202^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~693~^0.650^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17403~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~851~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17403~^~855~^0.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~312~^0.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~404~^0.067^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~405~^0.148^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~406~^4.388^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~410~^0.451^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~415~^0.134^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~501~^0.203^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~502~^0.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~503~^0.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~504~^1.420^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~505~^1.606^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~506~^0.600^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~507~^0.241^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~508~^0.724^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~509~^0.637^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~510~^0.936^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~511~^1.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~512~^0.389^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~513~^0.914^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~515~^2.569^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~516~^0.786^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~517~^0.589^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~518~^0.627^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~605~^0.577^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~606~^4.861^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~610~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~611~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~612~^0.244^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~613~^1.907^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~614~^2.422^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~617~^3.374^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~618~^0.330^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~619~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~624~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~626~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~645~^3.498^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~646~^0.540^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~653~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~662~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~663~^0.555^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~670~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~673~^0.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~674~^2.819^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~675~^0.145^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~693~^0.571^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~695~^0.005^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17404~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~851~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17404~^~855~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~312~^0.144^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~404~^0.135^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~405~^0.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~406~^5.899^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~410~^0.675^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~415~^0.155^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~501~^0.268^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~502~^1.157^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~503~^1.086^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~504~^1.874^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~505~^2.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~506~^0.792^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~507~^0.318^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~508~^0.956^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~509~^0.841^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~510~^1.236^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~511~^1.633^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~512~^0.514^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~513~^1.206^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~515~^3.389^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~516~^1.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~517~^0.778^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~518~^0.827^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~605~^0.590^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~606~^4.743^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~611~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~612~^0.287^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~613~^1.887^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~614~^2.299^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~617~^3.295^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~618~^0.366^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~619~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~620~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~624~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~626~^0.124^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~629~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~645~^3.433^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~646~^0.591^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~653~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~662~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~663~^0.567^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~670~^0.195^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~673~^0.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~674~^2.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~675~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~693~^0.586^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17405~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~851~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17405~^~855~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~312~^0.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~404~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~405~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~406~^5.229^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~410~^0.628^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~415~^0.153^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~501~^0.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~502~^1.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~503~^0.962^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~504~^1.660^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~505~^1.877^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~506~^0.701^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~508~^0.847^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~509~^0.745^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~510~^1.095^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~511~^1.447^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~512~^0.455^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~513~^1.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~515~^3.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~516~^0.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~517~^0.689^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~518~^0.733^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~605~^1.437^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~606~^11.272^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~609~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~610~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~611~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~612~^0.551^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~613~^4.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~614~^5.992^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~615~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~617~^7.105^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~618~^0.646^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~619~^0.294^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~620~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~621~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~624~^0.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~626~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~628~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~631~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~645~^7.350^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~646~^1.020^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~653~^0.482^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~662~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~663~^1.395^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~669~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~670~^0.363^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~673~^0.187^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~674~^5.710^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~675~^0.272^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~693~^1.427^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~695~^0.010^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17406~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~851~^0.294^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~853~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17406~^~855~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~312~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~404~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~405~^0.187^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~406~^5.334^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~410~^0.436^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~415~^0.173^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~501~^0.234^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~502~^1.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~503~^0.946^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~504~^1.631^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~505~^1.845^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~506~^0.689^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~507~^0.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~508~^0.832^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~509~^0.732^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~510~^1.076^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~511~^1.422^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~512~^0.447^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~513~^1.050^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~515~^2.951^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~516~^0.903^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~517~^0.677^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~518~^0.720^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~605~^1.146^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~606~^8.762^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~609~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~610~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~611~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~612~^0.406^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~613~^3.137^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~614~^4.724^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~617~^5.536^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~618~^0.508^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~619~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~624~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~626~^0.168^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~629~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~645~^5.721^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~646~^0.805^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~653~^0.381^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~662~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~663~^1.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~670~^0.278^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~673~^0.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~674~^4.425^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~675~^0.222^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~693~^1.137^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17407~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~851~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17407~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~312~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~404~^0.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~405~^0.110^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~406~^4.676^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~410~^0.370^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~415~^0.140^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~501~^0.183^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~502~^0.790^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~503~^0.741^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~504~^1.278^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~505~^1.446^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~506~^0.540^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~508~^0.652^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~509~^0.574^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~510~^0.843^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~511~^1.114^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~512~^0.351^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~513~^0.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~515~^2.313^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~516~^0.708^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~517~^0.531^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~518~^0.564^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~605~^1.205^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~606~^9.639^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~610~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~611~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~612~^0.483^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~613~^3.666^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~614~^4.923^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~617~^6.310^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~618~^0.559^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~619~^0.225^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~620~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~624~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~626~^0.194^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~645~^6.522^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~646~^0.858^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~653~^0.423^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~662~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~663~^1.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~669~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~670~^0.329^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~673~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~674~^5.146^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~675~^0.218^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~689~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~693~^1.193^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17408~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~851~^0.225^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~853~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17408~^~855~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~312~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~404~^0.062^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~405~^0.187^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~406~^7.126^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~410~^0.784^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~415~^0.205^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~501~^0.320^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~502~^1.382^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~503~^1.296^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~504~^2.236^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~505~^2.529^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~506~^0.945^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~507~^0.379^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~508~^1.141^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~509~^1.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~510~^1.475^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~511~^1.950^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~512~^0.613^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~513~^1.440^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~515~^4.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~516~^1.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~517~^0.928^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~518~^0.987^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~605~^0.103^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~606~^1.614^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~611~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~612~^0.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~613~^0.794^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~614~^0.641^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~617~^1.197^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~618~^0.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~619~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~620~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~621~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~626~^0.051^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~629~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~645~^1.255^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~646~^0.352^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~653~^0.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~662~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~663~^0.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~670~^0.049^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~673~^0.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~674~^1.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~675~^0.114^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~693~^0.103^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17409~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~851~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17409~^~855~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~312~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~404~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~405~^0.162^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~406~^6.338^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~410~^0.543^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~415~^0.175^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~501~^0.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~502~^1.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~503~^0.960^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~504~^1.656^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~505~^1.872^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~506~^0.699^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~508~^0.845^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~509~^0.743^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~510~^1.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~511~^1.443^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~512~^0.454^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~513~^1.066^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~515~^2.995^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~516~^0.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~517~^0.687^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~518~^0.731^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~605~^0.071^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~606~^1.289^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~612~^0.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~613~^0.624^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~614~^0.524^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~617~^0.952^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~618~^0.134^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~619~^0.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~620~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~625~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~626~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~629~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~631~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~645~^0.987^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~646~^0.279^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~653~^0.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~662~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~663~^0.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~670~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~673~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~674~^0.881^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~675~^0.093^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~693~^0.071^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17410~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~851~^0.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17410~^~855~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~312~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~404~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~405~^0.134^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~406~^3.855^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~410~^0.388^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~415~^0.075^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~501~^0.315^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~502~^1.361^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~503~^1.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~504~^2.203^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~505~^2.491^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~506~^0.931^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~507~^0.373^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~508~^1.124^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~509~^0.988^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~510~^1.453^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~511~^1.920^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~512~^0.604^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~513~^1.418^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~515~^3.985^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~516~^1.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~517~^0.914^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~518~^0.973^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~605~^0.948^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~606~^8.740^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~610~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~611~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~612~^0.448^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~613~^3.338^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~614~^4.430^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~615~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~617~^5.716^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~618~^0.514^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~619~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~620~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~621~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~624~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~626~^0.184^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~631~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~645~^5.916^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~646~^0.853^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~653~^0.405^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~662~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~663~^0.926^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~670~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~673~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~674~^4.790^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~675~^0.254^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~693~^0.944^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17411~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~851~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17411~^~855~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~312~^0.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~404~^0.082^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~405~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~406~^3.801^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~410~^0.308^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~415~^0.109^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~501~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~502~^0.859^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~503~^0.807^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~504~^1.391^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~505~^1.573^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~506~^0.588^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~507~^0.236^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~508~^0.710^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~509~^0.624^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~510~^0.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~511~^1.213^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~512~^0.382^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~513~^0.896^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~515~^2.517^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~516~^0.770^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~517~^0.578^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~518~^0.614^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~605~^0.849^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~606~^7.514^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~610~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~612~^0.356^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~613~^2.859^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~614~^3.863^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~617~^4.813^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~618~^0.427^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~619~^0.196^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~620~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~624~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~625~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~626~^0.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~629~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~631~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~645~^4.988^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~646~^0.683^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~653~^0.335^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~662~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~663~^0.805^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~670~^0.226^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~673~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~674~^4.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~675~^0.193^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~693~^0.841^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17412~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~851~^0.196^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17412~^~855~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~312~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~404~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~405~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~406~^3.739^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~410~^0.673^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~415~^0.107^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~501~^0.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~502~^1.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~503~^0.960^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~504~^1.656^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~505~^1.873^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~506~^0.700^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~508~^0.845^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~509~^0.743^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~510~^1.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~511~^1.444^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~512~^0.454^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~513~^1.066^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~515~^2.996^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~516~^0.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~517~^0.688^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~518~^0.731^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~605~^1.014^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~606~^8.431^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~610~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~611~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~612~^0.464^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~613~^3.209^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~614~^4.279^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~617~^5.476^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~618~^0.545^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~619~^0.235^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~620~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~624~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~626~^0.184^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~631~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~645~^5.677^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~646~^0.851^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~653~^0.362^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~662~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~663~^0.979^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~669~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~670~^0.300^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~673~^0.160^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~674~^4.496^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~675~^0.235^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~693~^1.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17413~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~851~^0.235^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17413~^~855~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~312~^0.077^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~404~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~405~^0.120^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~406~^4.352^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~410~^0.490^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~415~^0.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~501~^0.187^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~502~^0.806^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~503~^0.757^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~504~^1.305^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~505~^1.476^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~506~^0.551^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~507~^0.221^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~508~^0.666^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~509~^0.586^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~510~^0.861^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~511~^1.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~512~^0.358^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~513~^0.840^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~515~^2.361^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~516~^0.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~517~^0.542^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~518~^0.576^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~605~^0.951^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~606~^8.211^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~610~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~611~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~612~^0.416^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~613~^3.158^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~614~^4.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~617~^5.295^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~618~^0.493^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~619~^0.207^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~620~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~624~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~626~^0.169^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~629~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~645~^5.480^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~646~^0.764^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~653~^0.361^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~662~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~663~^0.918^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~669~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~670~^0.283^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~673~^0.147^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~674~^4.378^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~675~^0.198^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~693~^0.939^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17414~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~851~^0.207^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~853~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17414~^~855~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~312~^0.124^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~404~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~405~^0.190^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~406~^2.674^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~410~^0.517^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~415~^0.102^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~501~^0.296^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~502~^1.278^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~503~^1.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~504~^2.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~505~^2.340^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~506~^0.874^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~507~^0.351^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~508~^1.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~509~^0.928^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~510~^1.364^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~511~^1.804^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~512~^0.567^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~513~^1.332^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~515~^3.743^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~516~^1.146^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~517~^0.859^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~518~^0.914^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~605~^1.137^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~606~^9.596^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~610~^0.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~611~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~612~^0.549^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~613~^3.719^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~614~^4.764^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~615~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~617~^6.524^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~618~^0.667^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~619~^0.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~620~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~621~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~624~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~626~^0.225^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~629~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~631~^0.032^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~645~^6.769^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~646~^1.039^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~653~^0.421^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~662~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~663~^1.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~669~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~670~^0.366^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~673~^0.195^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~674~^5.422^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~675~^0.294^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~689~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~693~^1.131^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~695~^0.006^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17415~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~851~^0.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~853~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17415~^~855~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~312~^0.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~404~^0.073^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~405~^0.148^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~406~^3.250^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~410~^0.255^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~415~^0.059^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~501~^0.188^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~502~^0.812^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~503~^0.762^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~504~^1.314^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~505~^1.486^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~506~^0.555^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~507~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~508~^0.670^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~509~^0.590^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~510~^0.867^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~511~^1.145^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~512~^0.360^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~513~^0.846^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~515~^2.377^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~516~^0.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~517~^0.546^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~518~^0.580^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~605~^1.139^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~606~^9.099^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~609~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~610~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~611~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~612~^0.446^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~613~^3.460^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~614~^4.679^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~617~^6.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~618~^0.569^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~619~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~620~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~624~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~626~^0.184^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~629~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~645~^6.270^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~646~^0.849^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~653~^0.390^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~662~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~663~^1.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~669~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~670~^0.338^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~673~^0.158^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~674~^4.970^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~675~^0.218^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~693~^1.126^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17416~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~851~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~853~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17416~^~855~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~312~^0.095^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~404~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~405~^0.198^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~406~^3.618^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~410~^0.399^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~415~^0.159^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~501~^0.231^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~502~^0.996^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~503~^0.935^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~504~^1.612^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~505~^1.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~506~^0.681^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~507~^0.273^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~508~^0.822^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~509~^0.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~510~^1.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~511~^1.405^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~512~^0.442^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~513~^1.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~515~^2.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~516~^0.893^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~517~^0.669^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~518~^0.712^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~605~^1.236^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~606~^9.332^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~610~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~611~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~612~^0.472^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~613~^3.478^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~614~^4.866^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~617~^6.228^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~618~^0.585^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~619~^0.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~620~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~624~^0.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~626~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~629~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~645~^6.446^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~646~^0.881^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~653~^0.394^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~662~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~663~^1.198^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~670~^0.328^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~673~^0.169^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~674~^5.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~675~^0.249^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~693~^1.229^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17417~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~851~^0.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~853~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17417~^~855~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~312~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~315~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~404~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~405~^0.295^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~406~^9.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~410~^1.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~415~^0.280^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~501~^0.308^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~502~^1.330^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~503~^1.248^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~504~^2.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~505~^2.434^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~506~^0.909^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~507~^0.365^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~508~^1.098^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~509~^0.966^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~510~^1.419^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~511~^1.876^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~512~^0.590^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~513~^1.386^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~515~^3.894^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~516~^1.192^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~517~^0.894^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~518~^0.950^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~605~^0.177^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~606~^1.882^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~612~^0.087^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~613~^0.799^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~614~^0.872^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~617~^1.422^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~618~^0.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~619~^0.108^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~620~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~621~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~624~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~625~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~626~^0.050^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~629~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~645~^1.489^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~646~^0.451^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~653~^0.079^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~662~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~663~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~670~^0.051^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~673~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~674~^1.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~675~^0.161^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~693~^0.177^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17418~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~851~^0.108^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17418~^~855~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~312~^0.122^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~404~^0.060^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~405~^0.204^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~406~^6.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~410~^0.618^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~415~^0.280^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~501~^0.260^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~502~^1.124^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~503~^1.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~504~^1.819^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~505~^2.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~506~^0.768^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~507~^0.308^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~508~^0.928^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~509~^0.816^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~510~^1.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~511~^1.586^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~512~^0.499^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~513~^1.171^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~515~^3.291^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~516~^1.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~517~^0.755^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~518~^0.803^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~605~^0.487^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~606~^4.410^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~612~^0.263^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~613~^1.839^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~614~^2.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~617~^3.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~618~^0.309^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~619~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~624~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~625~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~626~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~629~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~631~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~645~^3.194^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~646~^0.516^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~653~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~662~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~663~^0.471^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~670~^0.158^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~673~^0.086^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~674~^2.611^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~675~^0.150^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~693~^0.485^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17419~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~851~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~853~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17419~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~312~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~404~^0.062^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~405~^0.172^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~406~^5.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~410~^0.584^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~415~^0.237^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~501~^0.220^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~502~^0.948^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~503~^0.890^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~504~^1.535^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~505~^1.736^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~506~^0.649^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~507~^0.260^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~508~^0.783^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~509~^0.689^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~510~^1.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~511~^1.338^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~512~^0.421^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~513~^0.988^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~515~^2.777^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~516~^0.850^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~517~^0.637^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~518~^0.678^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~605~^0.517^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~606~^4.305^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~610~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~612~^0.232^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~613~^1.737^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~614~^2.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~617~^2.911^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~618~^0.276^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~619~^0.125^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~620~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~621~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~624~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~626~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~631~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~645~^3.012^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~646~^0.460^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~653~^0.179^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~662~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~663~^0.498^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~669~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~670~^0.143^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~673~^0.076^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~674~^2.412^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~675~^0.130^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~693~^0.514^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17420~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~851~^0.125^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~853~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17420~^~855~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~312~^0.143^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~404~^0.107^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~405~^0.230^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~406~^5.457^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~410~^0.758^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~415~^0.253^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~501~^0.259^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~502~^1.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~503~^1.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~504~^1.807^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~505~^2.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~506~^0.764^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~507~^0.306^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~508~^0.922^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~509~^0.811^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~510~^1.192^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~511~^1.576^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~512~^0.496^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~513~^1.164^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~515~^3.270^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~516~^1.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~517~^0.750^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~518~^0.798^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~605~^0.573^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~606~^4.788^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~609~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~610~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~611~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~612~^0.250^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~613~^1.895^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~614~^2.364^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~617~^3.447^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~618~^0.343^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~619~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~620~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~621~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~624~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~625~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~626~^0.114^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~645~^3.574^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~646~^0.591^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~653~^0.213^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~662~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~663~^0.554^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~670~^0.172^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~673~^0.099^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~674~^2.892^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~675~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~693~^0.569^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~17421~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~851~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~853~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17421~^~855~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~312~^0.123^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~404~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~406~^5.234^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~410~^0.677^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~415~^0.225^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~501~^0.204^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~502~^0.882^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~503~^0.827^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~504~^1.427^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~505~^1.614^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~506~^0.603^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~507~^0.242^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~508~^0.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~509~^0.640^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~510~^0.941^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~511~^1.244^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~512~^0.391^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~513~^0.919^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~515~^2.582^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~516~^0.790^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~517~^0.592^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~518~^0.630^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~17422~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~606~^1.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~608~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~612~^0.079^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~613~^0.645^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~614~^0.557^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~617~^1.219^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~618~^0.162^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~619~^0.086^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~620~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~626~^0.050^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~628~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~629~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~631~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~645~^1.272^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~646~^0.333^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~653~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~663~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~670~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~673~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~674~^1.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~675~^0.113^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~17422~^~693~^0.114^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~17422~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~851~^0.086^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~17422~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17422~^~855~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~17423~^~312~^0.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~404~^0.075^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~405~^0.214^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~406~^7.262^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~410~^0.862^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~415~^0.246^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~501~^0.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~502~^0.975^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~503~^0.915^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~504~^1.578^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~505~^1.784^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~506~^0.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~508~^0.805^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~509~^0.708^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~510~^1.041^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~511~^1.375^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~512~^0.433^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~513~^1.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~515~^2.854^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~516~^0.874^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~517~^0.655^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~518~^0.697^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~605~^0.171^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17423~^~606~^2.110^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17423~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~612~^0.097^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~613~^0.907^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~614~^0.973^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~617~^1.553^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~618~^0.219^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~619~^0.119^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~624~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~626~^0.048^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~629~^0.039^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~631~^0.029^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~645~^1.610^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17423~^~646~^0.480^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17423~^~653~^0.093^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~662~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~663~^0.164^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~670~^0.039^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~673~^0.041^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~674~^1.390^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~675~^0.180^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~693~^0.171^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~17423~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~17423~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~851~^0.119^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17423~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17423~^~855~^0.048^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~17424~^~312~^0.116^6^^~1~^~A~^^^1^0.112^0.118^^^^~2~^~04/01/2014~ -~17424~^~315~^0.009^6^^~1~^~A~^^^1^0.007^0.011^^^^~2~^~04/01/2014~ -~17424~^~404~^0.095^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~405~^0.430^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~406~^7.900^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~410~^0.880^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~415~^0.508^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~501~^0.261^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~502~^1.129^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~503~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~504~^2.056^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~505~^2.129^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~506~^0.603^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~507~^0.291^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~508~^1.042^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~509~^0.824^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~510~^1.428^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~511~^1.519^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~512~^0.938^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~513~^1.536^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~514~^2.229^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~516~^1.327^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~517~^1.079^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~518~^0.968^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~521~^0.176^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17424~^~605~^0.448^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~606~^4.368^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17424~^~610~^0.009^6^^~1~^~A~^^^1^0.003^0.016^^^^~1, 2~^~04/01/2014~ -~17424~^~611~^0.010^6^^~1~^~A~^^^1^0.002^0.017^^^^~1, 2~^~04/01/2014~ -~17424~^~612~^0.266^6^^~1~^~A~^^^1^0.189^0.321^^^^~2~^~04/01/2014~ -~17424~^~613~^2.517^6^^~1~^~A~^^^1^1.903^3.164^^^^~2~^~04/01/2014~ -~17424~^~614~^1.418^6^^~1~^~A~^^^1^1.065^1.966^^^^~2~^~04/01/2014~ -~17424~^~615~^0.003^6^^~1~^~A~^^^1^0.002^0.006^^^^~1, 2~^~04/01/2014~ -~17424~^~617~^5.045^6^^~1~^~AS~^^^1^3.757^6.444^^^^~2~^~04/01/2014~ -~17424~^~618~^0.637^6^^~1~^~AS~^^^1^0.439^1.030^^^^~2~^~04/01/2014~ -~17424~^~619~^0.017^6^^~1~^~A~^^^1^0.011^0.023^^^^~2~^~04/01/2014~ -~17424~^~620~^0.130^6^^~1~^~A~^^^1^0.082^0.204^^^^~2~^~04/01/2014~ -~17424~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17424~^~625~^0.071^6^^~1~^~A~^^^1^0.039^0.112^^^^~2~^~04/01/2014~ -~17424~^~626~^0.436^6^^~1~^~AS~^^^1^0.269^0.615^^^^~2~^~04/01/2014~ -~17424~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17424~^~628~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17424~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17424~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17424~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17424~^~645~^5.665^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~646~^0.784^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17424~^~653~^0.123^6^^~1~^~A~^^^1^0.097^0.174^^^^~2~^~04/01/2014~ -~17424~^~654~^0.022^6^^~1~^~A~^^^1^0.012^0.038^^^^~2~^~04/01/2014~ -~17424~^~663~^0.448^6^^~1~^~A~^^^1^0.304^0.656^^^^~2~^~04/01/2014~ -~17424~^~670~^0.037^6^^~1~^~A~^^^1^0.024^0.055^^^^~2~^~04/01/2014~ -~17424~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17424~^~673~^0.436^6^^~1~^~A~^^^1^0.269^0.615^^^^~2~^~04/01/2014~ -~17424~^~674~^4.597^6^^~1~^~A~^^^1^3.453^5.881^^^^~2~^~04/01/2014~ -~17424~^~675~^0.599^6^^~1~^~A~^^^1^0.404^0.975^^^^~2~^~04/01/2014~ -~17424~^~687~^0.113^6^^~1~^~A~^^^1^0.080^0.137^^^^~2~^~04/01/2014~ -~17424~^~693~^0.448^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~312~^0.112^6^^~1~^~A~^^^1^0.103^0.125^^^^~2~^~04/01/2014~ -~17425~^~315~^0.017^6^^~1~^~A~^^^1^0.013^0.019^^^^~2~^~04/01/2014~ -~17425~^~404~^0.093^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~405~^0.470^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~406~^10.100^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~410~^0.650^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~415~^0.761^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~501~^0.323^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~502~^1.393^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~503~^1.571^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~504~^2.538^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~505~^2.628^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~506~^0.744^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~507~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~508~^1.287^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~509~^1.017^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~510~^1.763^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~511~^1.876^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~512~^1.158^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~513~^1.897^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~514~^2.752^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~515~^5.044^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~516~^1.639^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~517~^1.332^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~518~^1.195^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~521~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17425~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~606~^1.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17425~^~610~^0.001^6^^~1~^~A~^^^1^0.001^0.001^^^^~1, 2~^~04/01/2014~ -~17425~^~611~^0.002^6^^~1~^~A~^^^1^0.001^0.003^^^^~1, 2~^~04/01/2014~ -~17425~^~612~^0.067^6^^~1~^~A~^^^1^0.044^0.082^^^^~2~^~04/01/2014~ -~17425~^~613~^0.572^6^^~1~^~A~^^^1^0.445^0.692^^^^~2~^~04/01/2014~ -~17425~^~614~^0.337^6^^~1~^~A~^^^1^0.275^0.402^^^^~2~^~04/01/2014~ -~17425~^~615~^0.001^6^^~1~^~A~^^^1^0.000^0.002^^^^~1, 2~^~04/01/2014~ -~17425~^~617~^1.135^6^^~1~^~AS~^^^1^0.929^1.316^^^^~2~^~04/01/2014~ -~17425~^~618~^0.107^6^^~1~^~AS~^^^1^0.073^0.126^^^^~2~^~04/01/2014~ -~17425~^~619~^0.004^6^^~1~^~A~^^^1^0.003^0.004^^^^~1, 2~^~04/01/2014~ -~17425~^~620~^0.015^6^^~1~^~A~^^^1^0.011^0.021^^^^~2~^~04/01/2014~ -~17425~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17425~^~625~^0.017^6^^~1~^~A~^^^1^0.010^0.019^^^^~2~^~04/01/2014~ -~17425~^~626~^0.093^6^^~1~^~AS~^^^1^0.065^0.110^^^^~2~^~04/01/2014~ -~17425~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17425~^~628~^0.005^6^^~1~^~A~^^^1^0.004^0.006^^^^~2~^~04/01/2014~ -~17425~^~629~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17425~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17425~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17425~^~645~^1.274^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~646~^0.127^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17425~^~653~^0.029^6^^~1~^~A~^^^1^0.023^0.036^^^^~2~^~04/01/2014~ -~17425~^~654~^0.003^6^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2~^~04/01/2014~ -~17425~^~663~^0.114^6^^~1~^~A~^^^1^0.073^0.141^^^^~2~^~04/01/2014~ -~17425~^~670~^0.009^6^^~1~^~A~^^^1^0.007^0.011^^^^~2~^~04/01/2014~ -~17425~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17425~^~673~^0.093^6^^~1~^~A~^^^1^0.065^0.110^^^^~2~^~04/01/2014~ -~17425~^~674~^1.022^6^^~1~^~A~^^^1^0.832^1.176^^^^~2~^~04/01/2014~ -~17425~^~675~^0.098^6^^~1~^~A~^^^1^0.067^0.115^^^^~2~^~04/01/2014~ -~17425~^~687~^0.024^6^^~1~^~A~^^^1^0.018^0.028^^^^~2~^~04/01/2014~ -~17425~^~693~^0.114^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~312~^0.089^6^^~1~^~A~^^^1^0.081^0.101^^^^~2~^~04/01/2014~ -~17426~^~315~^0.017^6^^~1~^~A~^^^1^0.015^0.020^^^^~2~^~04/01/2014~ -~17426~^~404~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~405~^0.340^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~406~^9.280^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~410~^0.580^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~415~^0.599^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~502~^0.964^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~503~^1.087^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~504~^1.757^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~505~^1.819^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~506~^0.515^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~507~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~508~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~510~^1.220^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~511~^1.298^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~512~^0.801^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~513~^1.313^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~514~^1.904^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~515~^3.491^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~516~^1.134^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~517~^0.922^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~518~^0.827^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~521~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17426~^~605~^0.090^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~606~^0.805^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17426~^~610~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17426~^~611~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17426~^~612~^0.051^6^^~1~^~A~^^^1^0.042^0.061^^^^~2~^~04/01/2014~ -~17426~^~613~^0.454^6^^~1~^~A~^^^1^0.347^0.546^^^^~2~^~04/01/2014~ -~17426~^~614~^0.271^6^^~1~^~A~^^^1^0.192^0.322^^^^~2~^~04/01/2014~ -~17426~^~615~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17426~^~617~^0.885^6^^~1~^~AS~^^^1^0.645^1.034^^^^~2~^~04/01/2014~ -~17426~^~618~^0.090^6^^~1~^~AS~^^^1^0.060^0.119^^^^~2~^~04/01/2014~ -~17426~^~619~^0.003^6^^~1~^~A~^^^1^0.002^0.005^^^^~1, 2~^~04/01/2014~ -~17426~^~620~^0.013^6^^~1~^~A~^^^1^0.008^0.017^^^^~2~^~04/01/2014~ -~17426~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17426~^~625~^0.011^6^^~1~^~A~^^^1^0.010^0.012^^^^~2~^~04/01/2014~ -~17426~^~626~^0.069^6^^~1~^~AS~^^^1^0.057^0.082^^^^~2~^~04/01/2014~ -~17426~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17426~^~628~^0.003^6^^~1~^~A~^^^1^0.000^0.006^^^^~1, 2~^~04/01/2014~ -~17426~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17426~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17426~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17426~^~645~^0.986^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~646~^0.107^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17426~^~653~^0.024^6^^~1~^~A~^^^1^0.018^0.030^^^^~2~^~04/01/2014~ -~17426~^~654~^0.002^6^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2~^~04/01/2014~ -~17426~^~663~^0.090^6^^~1~^~A~^^^1^0.067^0.115^^^^~2~^~04/01/2014~ -~17426~^~670~^0.007^6^^~1~^~A~^^^1^0.005^0.009^^^^~2~^~04/01/2014~ -~17426~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17426~^~673~^0.069^6^^~1~^~A~^^^1^0.057^0.082^^^^~2~^~04/01/2014~ -~17426~^~674~^0.795^6^^~1~^~A~^^^1^0.575^0.918^^^^~2~^~04/01/2014~ -~17426~^~675~^0.083^6^^~1~^~A~^^^1^0.056^0.110^^^^~2~^~04/01/2014~ -~17426~^~687~^0.019^6^^~1~^~A~^^^1^0.014^0.024^^^^~2~^~04/01/2014~ -~17426~^~693~^0.090^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~312~^0.124^6^^~1~^~A~^^^1^0.111^0.135^^^^~2~^~04/01/2014~ -~17427~^~315~^0.012^6^^~1~^~A~^^^1^0.006^0.014^^^^~2~^~04/01/2014~ -~17427~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~405~^0.330^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~406~^7.940^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~410~^0.550^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~415~^0.691^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~501~^0.301^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~502~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~503~^1.465^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~504~^2.368^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~506~^0.694^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~508~^1.200^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~509~^0.949^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~510~^1.645^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~511~^1.750^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~512~^1.080^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~513~^1.770^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~514~^2.567^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~515~^4.706^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~516~^1.529^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~517~^1.242^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~518~^1.115^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~521~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17427~^~605~^0.188^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~606~^1.742^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17427~^~610~^0.002^6^^~1~^~A~^^^1^0.001^0.003^^^^~1, 2~^~04/01/2014~ -~17427~^~611~^0.004^6^^~1~^~A~^^^1^0.003^0.005^^^^~1, 2~^~04/01/2014~ -~17427~^~612~^0.107^6^^~1~^~A~^^^1^0.086^0.120^^^^~2~^~04/01/2014~ -~17427~^~613~^0.975^6^^~1~^~A~^^^1^0.820^1.059^^^^~2~^~04/01/2014~ -~17427~^~614~^0.594^6^^~1~^~A~^^^1^0.508^0.649^^^^~2~^~04/01/2014~ -~17427~^~615~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17427~^~617~^1.874^6^^~1~^~AS~^^^1^1.651^2.026^^^^~2~^~04/01/2014~ -~17427~^~618~^0.213^6^^~1~^~AS~^^^1^0.156^0.286^^^^~2~^~04/01/2014~ -~17427~^~619~^0.007^6^^~1~^~A~^^^1^0.004^0.011^^^^~2~^~04/01/2014~ -~17427~^~620~^0.037^6^^~1~^~A~^^^1^0.030^0.060^^^^~2~^~04/01/2014~ -~17427~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17427~^~625~^0.021^6^^~1~^~A~^^^1^0.015^0.031^^^^~2~^~04/01/2014~ -~17427~^~626~^0.140^6^^~1~^~AS~^^^1^0.113^0.163^^^^~2~^~04/01/2014~ -~17427~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17427~^~628~^0.002^6^^~1~^~A~^^^1^0.000^0.008^^^^~1, 2~^~04/01/2014~ -~17427~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2~^~04/01/2014~ -~17427~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17427~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17427~^~645~^2.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~646~^0.257^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17427~^~653~^0.053^6^^~1~^~A~^^^1^0.044^0.059^^^^~2~^~04/01/2014~ -~17427~^~654~^0.007^6^^~1~^~A~^^^1^0.005^0.010^^^^~2~^~04/01/2014~ -~17427~^~663~^0.188^6^^~1~^~A~^^^1^0.132^0.224^^^^~2~^~04/01/2014~ -~17427~^~670~^0.014^6^^~1~^~A~^^^1^0.009^0.016^^^^~2~^~04/01/2014~ -~17427~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17427~^~673~^0.140^6^^~1~^~A~^^^1^0.113^0.163^^^^~2~^~04/01/2014~ -~17427~^~674~^1.686^6^^~1~^~A~^^^1^1.504^1.802^^^^~2~^~04/01/2014~ -~17427~^~675~^0.199^6^^~1~^~A~^^^1^0.147^0.271^^^^~2~^~04/01/2014~ -~17427~^~687~^0.041^6^^~1~^~A~^^^1^0.034^0.047^^^^~2~^~04/01/2014~ -~17427~^~693~^0.188^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~312~^0.103^6^^~1~^~A~^^^1^0.097^0.110^^^^~2~^~04/01/2014~ -~17428~^~315~^0.010^6^^~1~^~A~^^^1^0.008^0.014^^^^~2~^~04/01/2014~ -~17428~^~404~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~405~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~406~^5.370^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~410~^0.660^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~415~^0.403^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~502~^0.864^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~503~^0.974^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~504~^1.573^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~505~^1.629^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~506~^0.461^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~507~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~508~^0.798^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~509~^0.630^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~510~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~511~^1.163^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~512~^0.718^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~513~^1.176^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~514~^1.706^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~515~^3.127^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~516~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~517~^0.825^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~518~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~521~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17428~^~605~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~606~^0.639^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17428~^~610~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17428~^~611~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17428~^~612~^0.037^6^^~1~^~A~^^^1^0.030^0.043^^^^~2~^~04/01/2014~ -~17428~^~613~^0.352^6^^~1~^~A~^^^1^0.269^0.434^^^^~2~^~04/01/2014~ -~17428~^~614~^0.225^6^^~1~^~A~^^^1^0.176^0.271^^^^~2~^~04/01/2014~ -~17428~^~615~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17428~^~617~^0.688^6^^~1~^~AS~^^^1^0.520^0.846^^^^~2~^~04/01/2014~ -~17428~^~618~^0.088^6^^~1~^~AS~^^^1^0.044^0.143^^^^~2~^~04/01/2014~ -~17428~^~619~^0.003^6^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2~^~04/01/2014~ -~17428~^~620~^0.014^6^^~1~^~A~^^^1^0.004^0.026^^^^~2~^~04/01/2014~ -~17428~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17428~^~625~^0.007^6^^~1~^~A~^^^1^0.006^0.009^^^^~2~^~04/01/2014~ -~17428~^~626~^0.047^6^^~1~^~AS~^^^1^0.037^0.058^^^^~2~^~04/01/2014~ -~17428~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17428~^~628~^0.001^6^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2~^~04/01/2014~ -~17428~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~04/01/2014~ -~17428~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17428~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17428~^~645~^0.758^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~646~^0.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17428~^~653~^0.019^6^^~1~^~A~^^^1^0.014^0.026^^^^~2~^~04/01/2014~ -~17428~^~654~^0.002^6^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2~^~04/01/2014~ -~17428~^~663~^0.074^6^^~1~^~A~^^^1^0.057^0.097^^^^~2~^~04/01/2014~ -~17428~^~670~^0.005^6^^~1~^~A~^^^1^0.003^0.007^^^^~2~^~04/01/2014~ -~17428~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17428~^~673~^0.047^6^^~1~^~A~^^^1^0.037^0.058^^^^~2~^~04/01/2014~ -~17428~^~674~^0.614^6^^~1~^~A~^^^1^0.455^0.760^^^^~2~^~04/01/2014~ -~17428~^~675~^0.083^6^^~1~^~A~^^^1^0.041^0.136^^^^~2~^~04/01/2014~ -~17428~^~687~^0.014^6^^~1~^~A~^^^1^0.010^0.020^^^^~2~^~04/01/2014~ -~17428~^~693~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~312~^0.119^6^^~1~^~A~^^^1^0.114^0.128^^^^~2~^~04/01/2014~ -~17429~^~315~^0.011^6^^~1~^~A~^^^1^0.008^0.014^^^^~2~^~04/01/2014~ -~17429~^~404~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~405~^0.350^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~406~^3.770^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~410~^0.480^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~415~^0.177^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~501~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~502~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~503~^1.434^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~504~^2.317^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~505~^2.400^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~506~^0.680^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~507~^0.329^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~508~^1.175^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~509~^0.928^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~510~^1.610^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~511~^1.713^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~512~^1.057^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~513~^1.732^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~514~^2.512^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~515~^4.606^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~516~^1.496^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~517~^1.216^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~518~^1.091^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~521~^0.147^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17429~^~605~^0.163^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~606~^1.658^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17429~^~610~^0.002^6^^~1~^~A~^^^1^0.001^0.004^^^^~1, 2~^~04/01/2014~ -~17429~^~611~^0.004^6^^~1~^~A~^^^1^0.002^0.005^^^^~1, 2~^~04/01/2014~ -~17429~^~612~^0.102^6^^~1~^~A~^^^1^0.070^0.139^^^^~2~^~04/01/2014~ -~17429~^~613~^0.961^6^^~1~^~A~^^^1^0.720^1.160^^^^~2~^~04/01/2014~ -~17429~^~614~^0.533^6^^~1~^~A~^^^1^0.442^0.656^^^^~2~^~04/01/2014~ -~17429~^~615~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17429~^~617~^1.946^6^^~1~^~AS~^^^1^1.396^2.461^^^^~2~^~04/01/2014~ -~17429~^~618~^0.236^6^^~1~^~AS~^^^1^0.197^0.274^^^^~2~^~04/01/2014~ -~17429~^~619~^0.007^6^^~1~^~A~^^^1^0.004^0.009^^^^~2~^~04/01/2014~ -~17429~^~620~^0.050^6^^~1~^~A~^^^1^0.039^0.059^^^^~2~^~04/01/2014~ -~17429~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17429~^~625~^0.029^6^^~1~^~A~^^^1^0.012^0.053^^^^~2~^~04/01/2014~ -~17429~^~626~^0.175^6^^~1~^~AS~^^^1^0.095^0.286^^^^~2~^~04/01/2014~ -~17429~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17429~^~628~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17429~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17429~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17429~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17429~^~645~^2.194^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~646~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17429~^~653~^0.046^6^^~1~^~A~^^^1^0.039^0.056^^^^~2~^~04/01/2014~ -~17429~^~654~^0.008^6^^~1~^~A~^^^1^0.007^0.011^^^^~2~^~04/01/2014~ -~17429~^~663~^0.163^6^^~1~^~A~^^^1^0.131^0.185^^^^~2~^~04/01/2014~ -~17429~^~670~^0.014^6^^~1~^~A~^^^1^0.009^0.017^^^^~2~^~04/01/2014~ -~17429~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17429~^~673~^0.175^6^^~1~^~A~^^^1^0.095^0.286^^^^~2~^~04/01/2014~ -~17429~^~674~^1.783^6^^~1~^~A~^^^1^1.242^2.287^^^^~2~^~04/01/2014~ -~17429~^~675~^0.222^6^^~1~^~A~^^^1^0.188^0.258^^^^~2~^~04/01/2014~ -~17429~^~687~^0.043^6^^~1~^~A~^^^1^0.030^0.058^^^^~2~^~04/01/2014~ -~17429~^~693~^0.163^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~312~^0.150^6^^~1~^~A~^^^1^0.120^0.212^^^^~2~^~04/01/2014~ -~17430~^~315~^0.009^6^^~1~^~A~^^^1^0.002^0.016^^^^~2~^~04/01/2014~ -~17430~^~404~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~405~^0.480^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~406~^5.140^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~410~^1.180^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~415~^0.435^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~501~^0.277^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~502~^1.194^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~503~^1.346^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~504~^2.175^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~505~^2.252^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~506~^0.638^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~507~^0.308^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~508~^1.103^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~509~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~510~^1.511^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~511~^1.608^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~512~^0.992^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~513~^1.626^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~514~^2.358^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~515~^4.323^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~516~^1.404^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~517~^1.141^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~518~^1.024^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~521~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17430~^~605~^0.221^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~606~^2.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~609~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17430~^~610~^0.002^6^^~1~^~A~^^^1^0.001^0.003^^^^~1, 2~^~04/01/2014~ -~17430~^~611~^0.004^6^^~1~^~A~^^^1^0.001^0.007^^^^~1, 2~^~04/01/2014~ -~17430~^~612~^0.131^6^^~1~^~A~^^^1^0.111^0.145^^^^~2~^~04/01/2014~ -~17430~^~613~^1.203^6^^~1~^~A~^^^1^1.063^1.436^^^^~2~^~04/01/2014~ -~17430~^~614~^0.682^6^^~1~^~A~^^^1^0.531^0.924^^^^~2~^~04/01/2014~ -~17430~^~615~^0.002^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~04/01/2014~ -~17430~^~617~^2.382^6^^~1~^~AS~^^^1^2.139^2.809^^^^~2~^~04/01/2014~ -~17430~^~618~^0.259^6^^~1~^~AS~^^^1^0.197^0.408^^^^~2~^~04/01/2014~ -~17430~^~619~^0.009^6^^~1~^~A~^^^1^0.006^0.015^^^^~2~^~04/01/2014~ -~17430~^~620~^0.047^6^^~1~^~A~^^^1^0.035^0.085^^^^~2~^~04/01/2014~ -~17430~^~621~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17430~^~625~^0.033^6^^~1~^~A~^^^1^0.020^0.054^^^^~2~^~04/01/2014~ -~17430~^~626~^0.205^6^^~1~^~AS~^^^1^0.147^0.296^^^^~2~^~04/01/2014~ -~17430~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17430~^~628~^0.003^6^^~1~^~A~^^^1^0.000^0.011^^^^~1, 2~^~04/01/2014~ -~17430~^~629~^0.001^6^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2~^~04/01/2014~ -~17430~^~630~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17430~^~631~^0.000^0^^~4~^~BFFN~^~17132~^^^^^^^^^~04/01/2014~ -~17430~^~645~^2.677^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~646~^0.315^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17430~^~653~^0.061^6^^~1~^~A~^^^1^0.049^0.082^^^^~2~^~04/01/2014~ -~17430~^~654~^0.008^6^^~1~^~A~^^^1^0.004^0.015^^^^~2~^~04/01/2014~ -~17430~^~663~^0.221^6^^~1~^~A~^^^1^0.171^0.292^^^^~2~^~04/01/2014~ -~17430~^~670~^0.016^6^^~1~^~A~^^^1^0.012^0.022^^^^~2~^~04/01/2014~ -~17430~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~04/01/2014~ -~17430~^~673~^0.205^6^^~1~^~A~^^^1^0.147^0.296^^^^~2~^~04/01/2014~ -~17430~^~674~^2.161^6^^~1~^~A~^^^1^1.946^2.517^^^^~2~^~04/01/2014~ -~17430~^~675~^0.242^6^^~1~^~A~^^^1^0.181^0.385^^^^~2~^~04/01/2014~ -~17430~^~687~^0.054^6^^~1~^~A~^^^1^0.043^0.062^^^^~2~^~04/01/2014~ -~17430~^~693~^0.221^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17431~^~312~^0.045^2^^~1~^~A~^^^1^0.045^0.046^^^^^~04/01/2014~ -~17431~^~315~^0.008^2^^~1~^~A~^^^1^0.007^0.008^^^^^~04/01/2014~ -~17431~^~404~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~406~^2.780^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~410~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~415~^0.154^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~502~^0.387^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~503~^0.436^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~504~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~505~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~506~^0.206^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~507~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~508~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~509~^0.282^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~510~^0.489^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~511~^0.520^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~512~^0.321^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~513~^0.526^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~514~^0.763^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~515~^1.399^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~516~^0.455^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~517~^0.369^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~518~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17431~^~521~^0.060^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17431~^~605~^2.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17431~^~606~^19.082^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17431~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~609~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~610~^0.030^2^^~1~^~A~^^^1^0.015^0.044^^^^^~04/01/2014~ -~17431~^~611~^0.033^2^^~1~^~A~^^^1^0.030^0.036^^^^^~04/01/2014~ -~17431~^~612~^1.430^2^^~1~^~A~^^^1^1.363^1.497^^^^^~04/01/2014~ -~17431~^~613~^10.880^2^^~1~^~A~^^^1^10.262^11.497^^^^^~04/01/2014~ -~17431~^~614~^6.112^2^^~1~^~A~^^^1^5.208^7.016^^^^^~04/01/2014~ -~17431~^~615~^0.026^2^^~1~^~A~^^^1^0.021^0.030^^^^^~04/01/2014~ -~17431~^~617~^22.194^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~618~^1.528^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~619~^0.060^2^^~1~^~A~^^^1^0.052^0.067^^^^^~04/01/2014~ -~17431~^~620~^0.040^2^^~1~^~A~^^^1^0.029^0.051^^^^^~04/01/2014~ -~17431~^~621~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~625~^0.377^2^^~1~^~A~^^^1^0.240^0.514^^^^^~04/01/2014~ -~17431~^~626~^1.748^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17431~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17431~^~628~^0.090^2^^~1~^~A~^^^1^0.074^0.107^^^^^~04/01/2014~ -~17431~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17431~^~630~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~631~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17431~^~645~^24.815^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17431~^~646~^1.631^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17431~^~653~^0.559^2^^~1~^~A~^^^1^0.540^0.578^^^^^~04/01/2014~ -~17431~^~654~^0.014^2^^~1~^~A~^^^1^0.012^0.015^^^^^~04/01/2014~ -~17431~^~663~^2.243^2^^~1~^~A~^^^1^2.221^2.266^^^^^~04/01/2014~ -~17431~^~670~^0.240^2^^~1~^~A~^^^1^0.172^0.307^^^^^~04/01/2014~ -~17431~^~672~^0.003^2^^~1~^~A~^^^1^0.000^0.005^^^^~1~^~04/01/2014~ -~17431~^~673~^1.748^2^^~1~^~A~^^^1^1.312^2.184^^^^^~04/01/2014~ -~17431~^~674~^19.951^2^^~1~^~A~^^^1^17.569^22.333^^^^^~04/01/2014~ -~17431~^~675~^1.289^2^^~1~^~A~^^^1^1.285^1.293^^^^^~04/01/2014~ -~17431~^~687~^0.405^2^^~1~^~A~^^^1^0.290^0.520^^^^^~04/01/2014~ -~17431~^~693~^2.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~312~^0.074^2^^~1~^~A~^^^1^0.073^0.076^^^^^~04/01/2014~ -~17432~^~315~^0.044^2^^~1~^~A~^^^1^0.028^0.059^^^^^~04/01/2014~ -~17432~^~404~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~406~^4.160^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~410~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~415~^0.214^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~501~^0.155^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~502~^0.668^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~503~^0.753^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~504~^1.216^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~505~^1.259^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~506~^0.357^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~507~^0.172^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~508~^0.617^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~509~^0.487^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~510~^0.845^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~511~^0.899^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~512~^0.555^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~513~^0.909^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~514~^1.318^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~515~^2.417^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~516~^0.785^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~517~^0.638^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~518~^0.573^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17432~^~521~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17432~^~605~^2.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~606~^17.754^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~609~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~610~^0.014^2^^~1~^~A~^^^1^0.014^0.015^^^^^~04/01/2014~ -~17432~^~611~^0.033^2^^~1~^~A~^^^1^0.031^0.034^^^^^~04/01/2014~ -~17432~^~612~^1.247^2^^~1~^~A~^^^1^1.188^1.306^^^^^~04/01/2014~ -~17432~^~613~^11.167^2^^~1~^~A~^^^1^10.641^11.694^^^^^~04/01/2014~ -~17432~^~614~^4.765^2^^~1~^~A~^^^1^4.540^4.990^^^^^~04/01/2014~ -~17432~^~615~^0.019^2^^~1~^~A~^^^1^0.018^0.020^^^^^~04/01/2014~ -~17432~^~617~^20.822^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~618~^1.609^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~619~^0.048^2^^~1~^~A~^^^1^0.046^0.050^^^^^~04/01/2014~ -~17432~^~620~^0.047^2^^~1~^~A~^^^1^0.045^0.049^^^^^~04/01/2014~ -~17432~^~621~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~625~^0.471^2^^~1~^~A~^^^1^0.448^0.493^^^^^~04/01/2014~ -~17432~^~626~^1.998^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17432~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17432~^~628~^0.098^2^^~1~^~A~^^^1^0.094^0.103^^^^^~04/01/2014~ -~17432~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17432~^~630~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~631~^0.010^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17432~^~645~^23.864^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~646~^1.709^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17432~^~653~^0.494^2^^~1~^~A~^^^1^0.471^0.518^^^^^~04/01/2014~ -~17432~^~654~^0.014^2^^~1~^~A~^^^1^0.013^0.015^^^^^~04/01/2014~ -~17432~^~663~^2.051^2^^~1~^~A~^^^1^1.954^2.147^^^^^~04/01/2014~ -~17432~^~670~^0.312^2^^~1~^~A~^^^1^0.297^0.326^^^^^~04/01/2014~ -~17432~^~672~^0.005^2^^~1~^~A~^^^1^0.004^0.005^^^^^~04/01/2014~ -~17432~^~673~^1.998^2^^~1~^~A~^^^1^1.904^2.092^^^^^~04/01/2014~ -~17432~^~674~^18.772^2^^~1~^~A~^^^1^17.886^19.657^^^^^~04/01/2014~ -~17432~^~675~^1.298^2^^~1~^~A~^^^1^1.237^1.359^^^^^~04/01/2014~ -~17432~^~687~^0.476^2^^~1~^~A~^^^1^0.453^0.498^^^^^~04/01/2014~ -~17432~^~693~^2.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17433~^~312~^0.056^2^^~1~^~A~^^^1^0.054^0.058^^^^^~04/01/2014~ -~17433~^~315~^0.014^2^^~1~^~A~^^^1^0.014^0.014^^^^^~04/01/2014~ -~17433~^~404~^0.041^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~406~^3.810^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~410~^0.360^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~415~^0.227^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~501~^0.127^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~502~^0.547^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~503~^0.617^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~504~^0.997^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~505~^1.033^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~506~^0.292^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~507~^0.141^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~508~^0.506^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~509~^0.400^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~510~^0.693^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~511~^0.737^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~512~^0.455^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~513~^0.745^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~514~^1.081^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~515~^1.982^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~516~^0.644^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~517~^0.523^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~518~^0.469^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~17433~^~521~^0.059^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17433~^~605~^1.734^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17433~^~606~^14.235^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17433~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~609~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~610~^0.012^2^^~1~^~A~^^^1^0.010^0.014^^^^^~04/01/2014~ -~17433~^~611~^0.028^2^^~1~^~A~^^^1^0.024^0.032^^^^^~04/01/2014~ -~17433~^~612~^1.060^2^^~1~^~A~^^^1^0.919^1.201^^^^^~04/01/2014~ -~17433~^~613~^8.636^2^^~1~^~A~^^^1^8.227^9.045^^^^^~04/01/2014~ -~17433~^~614~^4.050^2^^~1~^~A~^^^1^3.510^4.590^^^^^~04/01/2014~ -~17433~^~615~^0.016^2^^~1~^~A~^^^1^0.014^0.019^^^^^~04/01/2014~ -~17433~^~617~^18.491^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~618~^1.309^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~619~^0.041^2^^~1~^~A~^^^1^0.035^0.046^^^^^~04/01/2014~ -~17433~^~620~^0.040^2^^~1~^~A~^^^1^0.035^0.045^^^^^~04/01/2014~ -~17433~^~621~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~625~^0.400^2^^~1~^~A~^^^1^0.347^0.453^^^^^~04/01/2014~ -~17433~^~626~^1.698^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17433~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17433~^~628~^0.083^2^^~1~^~A~^^^1^0.072^0.094^^^^^~04/01/2014~ -~17433~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17433~^~630~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~631~^0.000^0^^~4~^~BFFN~^~13019~^^^^^^^^^~04/01/2014~ -~17433~^~645~^21.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17433~^~646~^1.393^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17433~^~653~^0.420^2^^~1~^~A~^^^1^0.364^0.476^^^^^~04/01/2014~ -~17433~^~654~^0.012^2^^~1~^~A~^^^1^0.010^0.013^^^^^~04/01/2014~ -~17433~^~663~^1.734^2^^~1~^~A~^^^1^1.511^1.958^^^^^~04/01/2014~ -~17433~^~670~^0.265^2^^~1~^~A~^^^1^0.230^0.300^^^^^~04/01/2014~ -~17433~^~672~^0.004^2^^~1~^~A~^^^1^0.003^0.004^^^^^~04/01/2014~ -~17433~^~673~^1.698^2^^~1~^~A~^^^1^1.472^1.925^^^^^~04/01/2014~ -~17433~^~674~^16.757^2^^~1~^~A~^^^1^13.830^19.684^^^^^~04/01/2014~ -~17433~^~675~^1.044^2^^~1~^~A~^^^1^0.956^1.132^^^^^~04/01/2014~ -~17433~^~687~^0.404^2^^~1~^~A~^^^1^0.350^0.458^^^^^~04/01/2014~ -~17433~^~693~^1.734^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17434~^~312~^0.081^2^^~1~^~A~^^^1^0.078^0.083^^^^^~04/01/2014~ -~17434~^~315~^0.034^2^^~1~^~A~^^^1^0.028^0.039^^^^^~04/01/2014~ -~17434~^~404~^0.047^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~406~^2.840^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~410~^0.440^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~415~^0.203^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~502~^0.487^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~503~^0.549^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~504~^0.888^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~505~^0.919^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~506~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~507~^0.126^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~508~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~509~^0.356^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~510~^0.617^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~511~^0.656^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~512~^0.405^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~513~^0.664^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~514~^0.963^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~515~^1.765^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~516~^0.573^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~517~^0.466^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~518~^0.418^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~521~^0.056^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~17434~^~605~^1.671^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17434~^~606~^16.316^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17434~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~609~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~610~^0.032^2^^~1~^~A~^^^1^0.030^0.033^^^^^~04/01/2014~ -~17434~^~611~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~04/01/2014~ -~17434~^~612~^0.936^2^^~1~^~A~^^^1^0.904^0.968^^^^^~04/01/2014~ -~17434~^~613~^9.380^2^^~1~^~A~^^^1^9.059^9.701^^^^^~04/01/2014~ -~17434~^~614~^5.402^2^^~1~^~A~^^^1^5.218^5.587^^^^^~04/01/2014~ -~17434~^~615~^0.020^2^^~1~^~A~^^^1^0.019^0.021^^^^^~04/01/2014~ -~17434~^~617~^18.568^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~618~^2.354^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~619~^0.078^2^^~1~^~A~^^^1^0.076^0.081^^^^^~04/01/2014~ -~17434~^~620~^0.539^2^^~1~^~A~^^^1^0.521^0.558^^^^^~04/01/2014~ -~17434~^~621~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~625~^0.222^2^^~1~^~A~^^^1^0.215^0.230^^^^^~04/01/2014~ -~17434~^~626~^1.391^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~17434~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~17434~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17434~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17434~^~630~^0.000^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~631~^0.009^0^^~4~^~BFFN~^~13020~^^^^^^^^^~04/01/2014~ -~17434~^~645~^20.589^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17434~^~646~^2.972^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17434~^~653~^0.456^2^^~1~^~A~^^^1^0.441^0.472^^^^^~04/01/2014~ -~17434~^~654~^0.083^2^^~1~^~A~^^^1^0.080^0.086^^^^^~04/01/2014~ -~17434~^~663~^1.671^2^^~1~^~A~^^^1^1.614^1.728^^^^^~04/01/2014~ -~17434~^~670~^0.107^2^^~1~^~A~^^^1^0.103^0.111^^^^^~04/01/2014~ -~17434~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~17434~^~673~^1.391^2^^~1~^~A~^^^1^1.344^1.439^^^^^~04/01/2014~ -~17434~^~674~^16.898^2^^~1~^~A~^^^1^16.319^17.476^^^^^~04/01/2014~ -~17434~^~675~^2.248^2^^~1~^~A~^^^1^2.171^2.325^^^^^~04/01/2014~ -~17434~^~687~^0.407^2^^~1~^~A~^^^1^0.393^0.421^^^^^~04/01/2014~ -~17434~^~693~^1.671^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~17435~^~312~^0.100^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~404~^0.082^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~405~^0.376^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~406~^5.254^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~410~^0.641^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~415~^0.392^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~501~^0.195^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~502~^0.842^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~503~^0.950^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~504~^1.535^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~505~^1.589^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~506~^0.450^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~507~^0.218^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~508~^0.778^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~509~^0.615^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~510~^1.066^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~511~^1.134^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~512~^0.700^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~513~^1.147^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~514~^1.664^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~515~^3.050^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~516~^0.991^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~517~^0.805^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~518~^0.722^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~521~^0.097^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~605~^0.139^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~606~^1.176^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~612~^0.078^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~613~^0.680^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~614~^0.376^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~617~^1.393^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~618~^0.136^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~619~^0.004^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~620~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~625~^0.023^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~626~^0.113^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~631~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~645~^1.563^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~646~^0.155^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17435~^~653~^0.035^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17435~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17435~^~687~^0.030^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~312~^0.116^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~404~^0.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~405~^0.337^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~406~^3.731^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~410~^0.476^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~415~^0.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~501~^0.283^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~502~^1.221^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~503~^1.376^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~504~^2.224^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~505~^2.303^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~506~^0.652^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~507~^0.315^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~508~^1.127^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~509~^0.891^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~510~^1.545^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~511~^1.644^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~512~^1.015^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~513~^1.662^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~514~^2.411^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~515~^4.420^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~516~^1.436^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~517~^1.167^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~518~^1.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17436~^~521~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~605~^0.276^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~606~^2.712^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~612~^0.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~613~^1.586^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~614~^0.861^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~617~^3.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~618~^0.369^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~619~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~625~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~626~^0.273^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~631~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~645~^3.547^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~646~^0.455^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17436~^~653~^0.075^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~654~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17436~^~687~^0.070^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~312~^0.119^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~404~^0.068^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~405~^0.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~406~^7.483^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~410~^0.535^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~415~^0.640^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~501~^0.284^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~502~^1.225^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~503~^1.381^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~504~^2.231^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~505~^2.311^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~506~^0.654^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~507~^0.316^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~508~^1.131^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~509~^0.894^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~510~^1.550^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~511~^1.649^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~512~^1.018^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~513~^1.668^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~514~^2.419^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~515~^4.435^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~516~^1.441^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~517~^1.171^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~518~^1.051^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17437~^~521~^0.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~605~^0.369^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~606~^3.378^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~612~^0.214^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~613~^1.979^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~614~^1.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~617~^3.786^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~618~^0.393^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~619~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~620~^0.059^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~625~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~626~^0.311^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~631~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~645~^4.246^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~646~^0.465^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17437~^~653~^0.098^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~654~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17437~^~687~^0.084^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~312~^0.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~404~^0.103^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~405~^0.445^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~406~^4.940^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~410~^1.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~415~^0.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~501~^0.260^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~502~^1.124^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~503~^1.267^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~504~^2.047^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~505~^2.119^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~506~^0.600^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~507~^0.290^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~508~^1.038^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~509~^0.820^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~510~^1.422^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~511~^1.513^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~512~^0.934^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~513~^1.530^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~514~^2.219^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~515~^4.068^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~516~^1.321^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~517~^1.074^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~518~^0.964^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~ -~17438~^~521~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~605~^0.396^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~606~^3.715^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~612~^0.232^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~613~^2.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~614~^1.176^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~617~^4.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~618~^0.459^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~619~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~620~^0.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~625~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~626~^0.360^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~629~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~631~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~645~^4.778^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~646~^0.556^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~ -~17438~^~653~^0.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~654~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17438~^~687~^0.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~17439~^~312~^0.125^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~404~^0.149^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~405~^0.540^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~406~^6.880^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~410~^0.790^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~415~^0.441^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~501~^0.297^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~502~^1.168^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~503~^1.191^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~504~^2.042^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~505~^2.181^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~506~^0.691^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~507~^0.292^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~508~^1.064^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~509~^0.894^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~510~^1.281^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~511~^1.706^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~512~^0.748^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~513~^1.628^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~514~^2.348^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~515~^3.818^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~516~^1.510^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~517~^1.211^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~518~^1.017^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~605~^0.413^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~606~^3.224^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17439~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~611~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~612~^0.203^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~613~^1.570^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~614~^1.300^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~617~^3.131^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17439~^~618~^0.314^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17439~^~619~^0.098^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17439~^~620~^0.052^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~621~^0.015^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~626~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17439~^~631~^0.039^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~645~^3.231^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~646~^0.546^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~652~^0.040^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~653~^0.097^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~663~^0.321^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~665~^0.092^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~674~^2.810^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~675~^0.208^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17439~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~693~^0.321^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~695~^0.092^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17439~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17439~^~851~^0.098^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~404~^0.104^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~405~^0.490^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~406~^5.260^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~410~^0.730^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~415~^0.402^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~501~^0.319^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~502~^1.255^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~503~^1.280^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~504~^2.194^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~505~^2.344^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~506~^0.742^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~507~^0.314^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~508~^1.143^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~509~^0.960^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~510~^1.376^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~511~^1.833^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~512~^0.804^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~513~^1.749^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~514~^2.522^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~515~^4.103^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~516~^1.622^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~517~^1.302^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~518~^1.092^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~605~^0.366^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~606~^2.241^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17440~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~611~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~612~^0.180^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~613~^1.180^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~614~^0.787^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~617~^2.213^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17440~^~618~^0.401^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17440~^~619~^0.112^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17440~^~620~^0.041^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~626~^0.080^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~629~^0.032^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17440~^~631~^0.038^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~645~^2.293^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~646~^0.635^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~652~^0.023^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~653~^0.059^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~663~^0.263^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~665~^0.103^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~670~^0.096^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~674~^1.950^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~675~^0.202^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17440~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~693~^0.263^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17440~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17440~^~851~^0.112^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~312~^0.100^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~404~^0.104^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~405~^0.360^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~406~^5.540^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~410~^0.710^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~415~^0.395^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~501~^0.234^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~502~^0.919^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~503~^0.936^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~504~^1.605^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~505~^1.715^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~506~^0.543^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~508~^0.836^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~510~^1.007^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~511~^1.341^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~512~^0.588^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~513~^1.280^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~514~^1.846^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~515~^3.002^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~516~^1.187^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~517~^0.952^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~518~^0.799^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~605~^0.171^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~606~^1.269^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17441~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~611~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~612~^0.099^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~613~^0.664^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~614~^0.457^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~617~^1.285^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17441~^~618~^0.190^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17441~^~619~^0.061^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17441~^~620~^0.043^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~621~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~626~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~629~^0.026^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17441~^~631~^0.031^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~645~^1.335^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~646~^0.358^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~652~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~653~^0.030^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~663~^0.125^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~665~^0.046^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~670~^0.009^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~674~^1.160^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~675~^0.135^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17441~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~693~^0.125^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17441~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17441~^~851~^0.061^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~312~^0.137^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~404~^0.193^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~405~^0.570^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~406~^9.580^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~410~^1.220^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~415~^0.772^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~501~^0.322^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~502~^1.265^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~503~^1.289^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~504~^2.211^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~505~^2.362^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~506~^0.748^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~507~^0.317^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~508~^1.152^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~509~^0.968^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~510~^1.387^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~511~^1.847^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~512~^0.810^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~513~^1.762^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~514~^2.542^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~515~^4.134^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~516~^1.635^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~518~^1.101^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~605~^0.229^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~606~^2.084^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17442~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~612~^0.107^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~613~^1.010^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~614~^0.890^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~617~^1.899^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17442~^~618~^0.289^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17442~^~619~^0.087^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17442~^~620~^0.074^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~621~^0.013^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~626~^0.054^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~629~^0.033^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17442~^~631~^0.033^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~645~^1.953^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~646~^0.529^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~652~^0.018^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~653~^0.059^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~663~^0.179^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~665~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~674~^1.720^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~675~^0.225^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17442~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~693~^0.179^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17442~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17442~^~851~^0.087^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~312~^0.128^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~404~^0.147^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~405~^0.380^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~406~^8.490^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~410~^0.880^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~415~^0.556^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~501~^0.243^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~502~^0.957^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~503~^0.975^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~504~^1.672^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~505~^1.786^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~506~^0.566^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~507~^0.239^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~508~^0.871^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~509~^0.732^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~510~^1.049^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~511~^1.396^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~512~^0.612^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~513~^1.333^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~514~^1.922^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~515~^3.126^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~516~^1.236^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~517~^0.992^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~518~^0.832^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~605~^0.217^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~606~^1.857^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17443~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~612~^0.108^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~613~^0.936^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~614~^0.744^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~617~^1.716^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17443~^~618~^0.225^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17443~^~619~^0.074^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17443~^~620~^0.054^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~621~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~626~^0.051^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17443~^~631~^0.027^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~645~^1.767^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~646~^0.417^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~652~^0.017^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~653~^0.052^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~663~^0.176^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~665~^0.041^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~670~^0.009^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~674~^1.540^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~675~^0.175^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17443~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~693~^0.176^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17443~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17443~^~851~^0.074^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~405~^0.400^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~406~^6.880^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~410~^0.870^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~415~^0.426^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~502~^0.910^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~503~^0.927^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~504~^1.590^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~505~^1.699^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~506~^0.538^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~508~^0.828^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~509~^0.696^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~510~^0.997^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~511~^1.328^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~512~^0.582^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~513~^1.267^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~514~^1.828^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~515~^2.974^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~516~^1.176^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~517~^0.943^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~518~^0.792^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~606~^2.277^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17444~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~611~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~612~^0.137^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~613~^1.130^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~614~^0.914^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~617~^2.279^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17444~^~618~^0.252^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17444~^~619~^0.066^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17444~^~620~^0.051^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~621~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~626~^0.067^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17444~^~631~^0.029^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~645~^2.346^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~646~^0.430^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~652~^0.024^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~653~^0.065^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~663~^0.239^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~665~^0.068^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~670~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~674~^2.040^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~675~^0.177^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17444~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~693~^0.239^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17444~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17444~^~851~^0.066^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~312~^0.146^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~315~^0.004^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~404~^0.149^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~405~^0.560^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~406~^7.190^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~410~^0.790^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~415~^0.413^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~501~^0.333^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~502~^1.311^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~503~^1.336^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~504~^2.290^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~505~^2.447^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~506~^0.775^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~507~^0.328^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~508~^1.193^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~509~^1.002^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~510~^1.437^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~511~^1.913^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~512~^0.839^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~513~^1.826^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~514~^2.633^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~515~^4.283^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~516~^1.694^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~517~^1.359^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~518~^1.140^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~605~^0.636^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~606~^4.359^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17445~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~611~^0.017^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~612~^0.263^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~613~^2.090^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~614~^1.800^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~617~^4.051^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17445~^~618~^0.504^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17445~^~619~^0.114^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17445~^~620~^0.072^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~626~^0.119^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~629~^0.027^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17445~^~631~^0.042^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~645~^4.170^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~646~^0.770^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~652~^0.050^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~653~^0.127^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~663~^0.491^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~665~^0.145^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~674~^3.560^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~675~^0.345^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17445~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~693~^0.491^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~695~^0.145^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17445~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17445~^~851~^0.114^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~312~^0.129^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~404~^0.142^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~405~^0.400^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~406~^6.650^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~410~^0.750^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~415~^0.452^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~501~^0.240^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~502~^0.944^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~503~^0.962^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~504~^1.649^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~505~^1.762^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~506~^0.558^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~507~^0.236^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~508~^0.859^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~509~^0.722^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~510~^1.035^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~511~^1.378^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~512~^0.604^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~513~^1.315^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~514~^1.896^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~515~^3.084^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~516~^1.220^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~517~^0.979^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~518~^0.821^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~605~^0.200^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~606~^1.774^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17446~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~611~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~612~^0.080^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~613~^0.899^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~614~^0.707^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~615~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~617~^1.759^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17446~^~618~^0.227^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17446~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17446~^~620~^0.056^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~621~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~626~^0.056^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17446~^~631~^0.027^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~645~^1.815^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~646~^0.394^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~652~^0.019^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~653~^0.055^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~663~^0.159^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~665~^0.041^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~670~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~674~^1.600^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~675~^0.179^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17446~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~693~^0.159^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17446~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17446~^~851~^0.056^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~312~^0.094^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~315~^0.004^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~404~^0.140^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~405~^0.380^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~406~^7.810^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~410~^0.650^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~415~^0.535^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~501~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~502~^1.083^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~503~^1.104^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~504~^1.893^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~505~^2.022^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~506~^0.641^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~507~^0.271^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~508~^0.986^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~509~^0.828^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~510~^1.187^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~511~^1.581^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~512~^0.693^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~513~^1.509^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~514~^2.176^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~515~^3.540^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~516~^1.400^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~517~^1.123^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~518~^0.942^0^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~605~^0.417^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~606~^3.540^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~ -~17447~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~612~^0.192^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~613~^1.660^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~614~^1.500^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~617~^3.012^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17447~^~618~^0.368^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17447~^~619~^0.070^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17447~^~620~^0.049^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~621~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~626~^0.081^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2014~ -~17447~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~645~^3.093^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~646~^0.542^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~652~^0.038^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~653~^0.107^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~663~^0.332^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~665~^0.085^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~670~^0.069^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~674~^2.680^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~675~^0.214^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17447~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~693~^0.332^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~ -~17447~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~ -~17447~^~851~^0.070^1^^~1~^~A~^^^^^^^^^^~10/01/2014~ -~17448~^~312~^0.114^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~315~^0.003^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~404~^0.115^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~405~^0.420^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~406~^6.630^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~410~^0.540^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~415~^0.556^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~501~^0.291^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~502~^1.144^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~503~^1.166^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~504~^1.999^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~505~^2.136^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~506~^0.677^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~508~^1.041^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~509~^0.875^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~510~^1.254^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~511~^1.670^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~512~^0.732^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~513~^1.594^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~514~^2.299^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~515~^3.739^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~516~^1.478^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~517~^1.186^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~518~^0.995^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~605~^0.899^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~606~^6.802^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17448~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~610~^0.015^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~612~^0.348^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~613~^3.569^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~614~^2.570^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~615~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~617~^5.923^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17448~^~618~^0.716^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17448~^~619~^0.179^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17448~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~626~^0.182^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17448~^~631~^0.043^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~645~^6.124^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~646~^1.024^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~652~^0.078^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~653~^0.179^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~663~^0.718^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~665~^0.182^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~670~^0.185^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~674~^5.206^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~675~^0.349^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17448~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~693~^0.718^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~695~^0.182^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17448~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17448~^~851~^0.179^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~312~^0.071^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~404~^0.082^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~406~^4.300^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~410~^0.520^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~415~^0.342^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~501~^0.175^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~502~^0.690^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~503~^0.703^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~504~^1.206^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~505~^1.289^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~506~^0.408^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~507~^0.173^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~508~^0.628^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~509~^0.528^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~510~^0.757^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~511~^1.008^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~512~^0.442^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~513~^0.961^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~514~^1.387^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~515~^2.255^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~516~^0.892^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~517~^0.716^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~518~^0.600^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~605~^4.063^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~606~^26.800^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17449~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~610~^0.085^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~611~^0.122^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~612~^1.830^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~613~^11.500^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~614~^11.900^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~615~^0.103^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~617~^19.650^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17449~^~618~^2.423^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17449~^~619~^0.527^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17449~^~620~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~621~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~624~^0.023^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~625~^0.052^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~626~^0.600^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~628~^0.035^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17449~^~631~^0.078^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~645~^20.337^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~646~^3.115^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~652~^0.369^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~653~^0.868^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~663~^3.150^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~665~^0.913^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~670~^0.725^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~672~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~674~^16.500^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~675~^0.785^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17449~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~693~^3.150^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~695~^0.913^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17449~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17449~^~851~^0.527^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~312~^0.049^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~315~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~404~^0.053^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~405~^0.140^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~406~^3.160^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~410~^0.350^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~415~^0.207^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~501~^0.131^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~502~^0.514^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~503~^0.524^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~504~^0.899^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~505~^0.960^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~506~^0.304^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~507~^0.129^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~508~^0.468^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~509~^0.393^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~510~^0.564^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~511~^0.751^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~512~^0.329^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~513~^0.716^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~514~^1.033^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~515~^1.680^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~516~^0.665^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~517~^0.533^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~518~^0.447^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~605~^3.564^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~606~^23.892^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17450~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~610~^0.088^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~611~^0.130^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~612~^1.820^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~613~^10.957^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~614~^9.657^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~615~^0.078^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~617~^18.822^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17450~^~618~^2.163^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17450~^~619~^0.480^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17450~^~620~^0.032^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~621~^0.018^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~624~^0.021^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~625~^0.058^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~626~^0.629^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~629~^0.021^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17450~^~631~^0.073^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~645~^19.541^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~646~^2.797^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~652~^0.339^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~653~^0.801^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~663~^2.758^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~665~^0.806^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~670~^0.656^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~672~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~674~^16.064^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~675~^0.700^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17450~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~693~^2.758^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~695~^0.806^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17450~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17450~^~851~^0.480^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~312~^0.055^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~315~^0.004^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~404~^0.069^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~406~^3.610^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~410~^0.470^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~415~^0.233^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~502~^0.564^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~503~^0.575^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~504~^0.986^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~505~^1.053^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~506~^0.334^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~507~^0.141^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~508~^0.513^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~509~^0.431^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~510~^0.618^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~511~^0.823^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~512~^0.361^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~513~^0.786^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~514~^1.133^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~515~^1.843^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~516~^0.729^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~517~^0.585^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~518~^0.491^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~605~^4.438^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~606~^28.619^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17451~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~610~^0.083^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~611~^0.128^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~612~^1.930^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~613~^12.300^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~614~^12.700^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~615~^0.108^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~617~^20.540^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17451~^~618~^2.569^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17451~^~619~^0.596^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17451~^~620~^0.035^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~621~^0.016^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~624~^0.031^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~625~^0.048^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~626~^0.605^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~628~^0.036^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17451~^~631~^0.076^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~645~^21.229^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~646~^3.324^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~652~^0.406^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~653~^0.933^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~663~^3.540^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~665~^0.898^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~670~^0.742^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~672~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~674~^17.000^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~675~^0.929^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~685~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17451~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~693~^3.540^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~695~^0.898^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17451~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17451~^~851~^0.585^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~312~^0.031^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~315~^0.002^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~404~^0.075^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~406~^3.940^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~410~^0.430^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~415~^0.290^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~502~^0.639^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~503~^0.652^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~504~^1.117^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~505~^1.193^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~506~^0.378^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~507~^0.160^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~508~^0.582^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~509~^0.489^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~510~^0.701^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~511~^0.933^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~512~^0.409^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~513~^0.890^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~514~^1.284^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~515~^2.089^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~516~^0.826^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~517~^0.663^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~518~^0.556^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~605~^3.235^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~606~^21.397^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17452~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~610~^0.078^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~611~^0.147^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~612~^1.720^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~613~^9.440^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~614~^8.900^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~615~^0.074^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~617~^16.390^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17452~^~618~^2.021^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17452~^~619~^0.436^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17452~^~620~^0.039^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~621~^0.020^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~624~^0.087^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~625~^0.050^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~626~^0.519^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~628~^0.029^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17452~^~631~^0.073^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~645~^16.988^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~646~^2.621^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~652~^0.299^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~653~^0.653^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~663~^2.490^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~665~^0.745^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~670~^0.610^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~674~^13.900^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~675~^0.666^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17452~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~685~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~693~^2.490^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~695~^0.745^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17452~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17452~^~851~^0.429^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17453~^~312~^0.120^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~404~^0.143^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~405~^0.514^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~406~^6.646^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~410~^0.766^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~415~^0.429^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~501~^0.286^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~502~^1.125^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~503~^1.147^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~504~^1.966^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~505~^2.100^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~506~^0.665^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~508~^1.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~509~^0.860^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~510~^1.233^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~511~^1.642^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~512~^0.720^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~513~^1.567^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~514~^2.260^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~515~^3.677^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~516~^1.454^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~517~^1.166^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~518~^0.979^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~605~^0.725^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~606~^5.223^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~611~^0.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~612~^0.340^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~613~^2.413^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~614~^2.198^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~617~^4.519^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~618~^0.492^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~619~^0.135^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~620~^0.051^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~621~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~625~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~626~^0.141^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~629~^0.028^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~631~^0.042^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~645~^4.668^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~646~^0.764^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17453~^~652~^0.068^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~653~^0.163^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17453~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~312~^0.099^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~404~^0.145^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~405~^0.364^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~406~^6.363^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~410~^0.797^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~415~^0.397^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~501~^0.218^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~502~^0.857^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~503~^0.873^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~504~^1.497^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~505~^1.599^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~506~^0.507^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~507~^0.214^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~508~^0.780^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~509~^0.655^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~510~^0.939^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~511~^1.250^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~512~^0.548^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~513~^1.193^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~514~^1.721^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~515~^2.799^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~516~^1.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~517~^0.888^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~518~^0.745^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~605~^0.773^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~606~^5.361^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~610~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~611~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~612~^0.381^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~613~^2.517^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~614~^2.171^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~617~^4.619^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~618~^0.528^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~619~^0.125^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~621~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~625~^0.008^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~626~^0.145^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~629~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~631~^0.035^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~645~^4.777^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~646~^0.772^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~652~^0.069^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~653~^0.167^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~663~^0.599^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~665~^0.174^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~670~^0.101^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~674~^4.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~675~^0.253^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~693~^0.599^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~695~^0.174^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17454~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17454~^~851~^0.125^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~312~^0.112^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~404~^0.102^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~405~^0.468^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~406~^5.163^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~410~^0.712^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~415~^0.394^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~501~^0.307^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~502~^1.206^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~503~^1.229^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~504~^2.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~505~^2.251^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~506~^0.713^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~507~^0.302^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~508~^1.098^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~509~^0.922^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~510~^1.322^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~511~^1.760^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~512~^0.772^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~513~^1.680^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~514~^2.423^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~515~^3.941^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~516~^1.558^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~517~^1.250^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~518~^1.049^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~605~^0.678^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~606~^4.293^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~612~^0.317^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~613~^2.043^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~614~^1.715^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~617~^3.659^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~618~^0.570^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~619~^0.148^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~620~^0.040^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~621~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~625~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~626~^0.122^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~628~^0.003^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~629~^0.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~631~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~645~^3.788^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~646~^0.843^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~652~^0.052^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~653~^0.127^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~663~^0.509^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~665~^0.169^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~670~^0.148^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~674~^3.150^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~675~^0.253^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~693~^0.509^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~695~^0.169^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17455~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17455~^~851~^0.147^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~312~^0.088^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~404~^0.094^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~405~^0.317^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~406~^5.084^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~410~^0.639^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~415~^0.360^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~501~^0.214^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~502~^0.841^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~503~^0.857^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~504~^1.469^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~505~^1.569^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~506~^0.497^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~507~^0.210^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~508~^0.765^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~509~^0.643^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~510~^0.922^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~511~^1.227^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~512~^0.538^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~513~^1.171^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~514~^1.689^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~515~^2.747^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~516~^1.086^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~517~^0.872^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~518~^0.731^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~605~^0.862^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~606~^5.862^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~610~^0.018^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~611~^0.034^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~612~^0.453^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~613~^2.734^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~614~^2.338^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~617~^4.819^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~618~^0.594^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~619~^0.146^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~620~^0.041^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~621~^0.010^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~625~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~626~^0.165^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~631~^0.040^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~645~^5.003^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~646~^0.858^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~652~^0.078^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~653~^0.183^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~663~^0.661^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~665~^0.201^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~670~^0.142^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~674~^4.159^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~675~^0.251^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~693~^0.661^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~695~^0.201^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17456~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17456~^~851~^0.146^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~312~^0.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~404~^0.140^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~405~^0.524^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~406~^6.783^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~410~^0.749^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~415~^0.391^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~501~^0.313^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~502~^1.232^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~503~^1.255^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~504~^2.152^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~505~^2.299^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~506~^0.728^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~507~^0.308^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~508~^1.121^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~509~^0.942^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~510~^1.350^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~511~^1.798^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~512~^0.788^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~513~^1.715^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~514~^2.474^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~515~^4.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~516~^1.591^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~517~^1.277^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~518~^1.071^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~605~^0.813^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~606~^5.483^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~611~^0.022^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~612~^0.341^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~613~^2.555^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~614~^2.310^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~617~^4.781^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~618~^0.595^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~619~^0.135^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~620~^0.068^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~621~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~626~^0.141^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~629~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~631~^0.042^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~645~^4.926^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~646~^0.878^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~652~^0.067^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~653~^0.165^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~663~^0.634^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~665~^0.180^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~670~^0.051^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~674~^4.147^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~675~^0.365^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~693~^0.634^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~695~^0.180^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17457~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17457~^~851~^0.135^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~312~^0.118^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~404~^0.132^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~405~^0.370^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~406~^6.251^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~410~^0.704^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~415~^0.426^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~501~^0.228^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~502~^0.897^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~503~^0.914^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~504~^1.567^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~505~^1.674^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~506~^0.530^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~507~^0.224^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~508~^0.816^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~509~^0.686^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~510~^0.983^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~511~^1.309^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~512~^0.574^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~513~^1.249^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~514~^1.802^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~515~^2.930^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~516~^1.159^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~517~^0.930^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~518~^0.780^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~605~^0.612^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~606~^4.464^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~610~^0.011^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~611~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~612~^0.298^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~613~^2.097^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~614~^1.812^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~617~^3.800^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~618~^0.468^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~619~^0.108^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~620~^0.053^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~621~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~625~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~626~^0.123^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~629~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~631~^0.033^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~645~^3.934^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~646~^0.692^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~652~^0.058^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~653~^0.141^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~663~^0.477^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~665~^0.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~670~^0.088^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~674~^3.323^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~675~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~693~^0.477^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~695~^0.136^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17458~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17458~^~851~^0.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~312~^0.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~315~^0.007^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~404~^0.192^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~405~^0.568^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~406~^9.544^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~410~^1.215^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~415~^0.769^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~501~^0.321^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~502~^1.261^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~503~^1.285^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~504~^2.204^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~505~^2.355^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~506~^0.746^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~507~^0.316^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~508~^1.148^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~509~^0.965^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~510~^1.383^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~511~^1.841^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~512~^0.807^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~513~^1.757^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~514~^2.534^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~515~^4.122^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~516~^1.630^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~517~^1.308^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~518~^1.097^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~605~^0.255^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~606~^2.251^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~612~^0.119^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~613~^1.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~614~^0.964^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~617~^2.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~618~^0.303^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~619~^0.090^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~620~^0.074^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~621~^0.013^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~625~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~626~^0.058^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~629~^0.033^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~631~^0.033^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~645~^2.077^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~646~^0.546^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~652~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~653~^0.064^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~663~^0.199^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~665~^0.056^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~670~^0.019^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~674~^1.820^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~675~^0.229^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~693~^0.199^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~695~^0.056^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17459~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17459~^~851~^0.090^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~312~^0.126^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~404~^0.145^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~405~^0.376^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~406~^8.394^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~410~^0.870^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~415~^0.550^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~501~^0.241^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~502~^0.949^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~503~^0.967^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~504~^1.658^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~505~^1.771^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~506~^0.561^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~507~^0.237^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~508~^0.864^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~509~^0.726^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~510~^1.040^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~511~^1.385^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~512~^0.607^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~513~^1.322^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~514~^1.906^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~515~^3.101^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~516~^1.226^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~517~^0.984^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~518~^0.825^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~605~^0.277^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~606~^2.255^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~612~^0.139^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~613~^1.116^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~614~^0.906^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~617~^2.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~618~^0.260^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~619~^0.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~620~^0.054^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~624~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~625~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~626~^0.061^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~628~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~645~^2.087^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~646~^0.460^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~652~^0.023^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~653~^0.065^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~663~^0.223^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~665~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~670~^0.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~674~^1.801^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~675~^0.184^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~693~^0.223^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~695~^0.055^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17460~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17460~^~851~^0.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17461~^~312~^0.147^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~405~^0.430^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~406~^9.140^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~410~^0.680^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~415~^0.593^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~501~^0.344^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~502~^1.355^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~503~^1.381^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~504~^2.367^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~505~^2.529^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~506~^0.801^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~507~^0.339^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~508~^1.233^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~509~^1.036^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~510~^1.485^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~511~^1.978^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~512~^0.867^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~513~^1.887^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~514~^2.722^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~515~^4.427^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~516~^1.751^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~517~^1.405^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~518~^1.179^0^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~605~^0.622^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~606~^5.627^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~ -~17461~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~610~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~611~^0.023^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~612~^0.364^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~613~^2.750^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~614~^2.235^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~617~^4.529^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17461~^~618~^0.405^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17461~^~619~^0.110^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17461~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~621~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~624~^0.026^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~625~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~626~^0.147^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~629~^0.024^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~11/01/2014~ -~17461~^~631~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~645~^4.695^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~646~^0.635^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~652~^0.061^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~653~^0.147^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~663~^0.485^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~665~^0.137^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~670~^0.011^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~674~^4.044^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~675~^0.256^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17461~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~693~^0.485^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~695~^0.137^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~ -~17461~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~ -~17461~^~851~^0.110^1^^~1~^~A~^^^^^^^^^^~11/01/2014~ -~17462~^~312~^0.092^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~404~^0.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~405~^0.372^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~406~^7.616^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~410~^0.642^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~415~^0.522^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~501~^0.270^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~502~^1.060^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~503~^1.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~504~^1.852^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~505~^1.979^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~506~^0.627^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~507~^0.265^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~508~^0.965^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~509~^0.811^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~510~^1.162^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~511~^1.547^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~512~^0.679^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~513~^1.477^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~514~^2.130^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~515~^3.464^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~516~^1.370^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~517~^1.099^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~518~^0.922^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~605~^0.608^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~606~^4.743^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~610~^0.015^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~611~^0.017^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~612~^0.276^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~613~^2.170^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~614~^2.037^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~617~^3.861^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~618~^0.474^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~619~^0.095^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~621~^0.008^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~624~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~625~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~626~^0.107^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~628~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~629~^0.020^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~631~^0.030^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~645~^3.972^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~646~^0.675^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~652~^0.055^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~653~^0.147^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~663~^0.483^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~665~^0.126^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~670~^0.102^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~674~^3.378^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~675~^0.246^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~693~^0.483^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~695~^0.126^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17462~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17462~^~851~^0.094^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~312~^0.105^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~404~^0.108^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~405~^0.387^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~406~^6.196^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~410~^0.532^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~415~^0.511^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~501~^0.270^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~502~^1.060^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~503~^1.081^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~504~^1.853^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~505~^1.980^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~506~^0.627^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~507~^0.265^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~508~^0.965^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~509~^0.811^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~510~^1.162^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~511~^1.548^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~512~^0.679^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~513~^1.477^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~514~^2.130^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~515~^3.465^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~516~^1.370^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~517~^1.099^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~518~^0.923^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~605~^1.431^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~606~^10.111^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~610~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~611~^0.033^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~612~^0.590^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~613~^4.889^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~614~^4.108^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~615~^0.031^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~617~^8.158^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~618~^0.997^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~619~^0.240^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~624~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~626~^0.248^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~628~^0.014^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~629~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~631~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~645~^8.435^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~646~^1.372^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~652~^0.127^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~653~^0.293^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~663~^1.137^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~665~^0.294^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~670~^0.271^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~674~^7.021^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~675~^0.432^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~685~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~693~^1.137^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~695~^0.294^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17463~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17463~^~851~^0.239^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~312~^0.136^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~404~^0.149^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~405~^0.402^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~406~^8.475^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~410~^0.657^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~415~^0.555^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~501~^0.321^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~502~^1.262^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~503~^1.287^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~504~^2.205^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~505~^2.356^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~506~^0.747^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~507~^0.316^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~508~^1.149^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~509~^0.965^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~510~^1.384^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~511~^1.843^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~512~^0.808^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~513~^1.758^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~514~^2.536^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~515~^4.125^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~516~^1.631^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~517~^1.309^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~518~^1.098^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~605~^1.090^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~606~^8.484^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~610~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~611~^0.036^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~612~^0.561^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~613~^3.933^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~614~^3.537^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~615~^0.027^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~617~^6.551^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~618~^0.676^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~619~^0.167^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~624~^0.026^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~626~^0.207^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~628~^0.012^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~629~^0.024^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~631~^0.040^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~645~^6.787^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~646~^0.969^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~652~^0.103^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~653~^0.244^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~663~^0.851^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~665~^0.239^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~670~^0.106^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~674~^5.700^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~675~^0.332^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~693~^0.851^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~695~^0.239^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~ -~17464~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~17464~^~851~^0.167^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~ -~18001~^~312~^0.128^12^0.003^~1~^~A~^^^1^0.114^0.151^5^0.121^0.136^~2, 3~^~03/01/2014~ -~18001~^~315~^0.539^12^0.016^~1~^~A~^^^1^0.434^0.662^4^0.492^0.585^~2, 3~^~03/01/2014~ -~18001~^~404~^0.568^6^0.066^~1~^~A~^^^1^0.300^0.710^1^-0.195^1.330^~2, 3~^~03/01/2014~ -~18001~^~405~^0.344^6^0.011^~1~^~A~^^^1^0.300^0.420^2^0.286^0.403^~2, 3~^~03/01/2014~ -~18001~^~406~^4.515^6^0.141^~1~^~A~^^^1^4.050^5.180^2^3.967^5.063^~2, 3~^~03/01/2014~ -~18001~^~410~^0.407^4^0.005^~1~^~A~^^^1^0.380^0.430^1^0.340^0.475^~2, 3~^~03/01/2014~ -~18001~^~415~^0.070^6^0.002^~1~^~A~^^^1^0.060^0.080^2^0.062^0.077^~2, 3~^~03/01/2014~ -~18001~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~606~^0.360^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~612~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.007^2^0.001^0.007^~2, 3~^~03/01/2014~ -~18001~^~613~^0.227^6^0.006^~1~^~A~^^^1^0.183^0.254^2^0.203^0.250^~2, 3~^~03/01/2014~ -~18001~^~614~^0.115^6^0.026^~1~^~A~^^^1^0.017^0.181^1^-0.197^0.427^~2, 3~^~03/01/2014~ -~18001~^~615~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~03/01/2014~ -~18001~^~617~^0.186^6^0.010^~1~^~AS~^^^1^0.160^0.214^2^0.128^0.244^~2, 3~^~03/01/2014~ -~18001~^~618~^0.503^6^0.011^~1~^~AS~^^^1^0.450^0.558^2^0.454^0.551^~2, 3~^~03/01/2014~ -~18001~^~619~^0.024^6^0.000^~1~^~AS~^^^1^0.021^0.026^3^0.023^0.025^~2, 3~^~03/01/2014~ -~18001~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.006^3^0.002^0.005^~1, 2, 3~^~03/01/2014~ -~18001~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~626~^0.007^6^0.000^~1~^~AS~^^^1^0.005^0.008^1^0.001^0.013^~2, 3~^~03/01/2014~ -~18001~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~628~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^1^0.002^0.007^~2, 3~^~03/01/2014~ -~18001~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2005~ -~18001~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~645~^0.390^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18001~^~646~^0.526^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~03/01/2014~ -~18001~^~653~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.007^3^-0.001^0.007^~1, 2, 3~^~03/01/2014~ -~18001~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~03/01/2014~ -~18001~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~663~^0.021^6^0.004^~1~^~A~^^^1^0.000^0.031^1^-0.018^0.060^~1, 2, 3~^~03/01/2014~ -~18001~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~665~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~18001~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~673~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^1^0.001^0.013^~2, 3~^~03/01/2014~ -~18001~^~674~^0.165^6^0.006^~1~^~A~^^^1^0.151^0.189^2^0.140^0.189^~2, 3~^~03/01/2014~ -~18001~^~675~^0.502^6^0.011^~1~^~A~^^^1^0.450^0.556^2^0.456^0.549^~2, 3~^~03/01/2014~ -~18001~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2005~ -~18001~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18001~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~18001~^~851~^0.024^6^0.000^~1~^~A~^^^1^0.021^0.026^3^0.023^0.025^~2, 3~^~03/01/2014~ -~18001~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18001~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18002~^~312~^0.150^2^^~1~^~A~^^^1^0.150^0.150^^^^^~03/01/2005~ -~18002~^~315~^0.575^2^^~1~^~A~^^^1^0.560^0.590^1^^^^~03/01/2005~ -~18002~^~404~^0.602^2^^~1~^~A~^^^1^0.584^0.620^1^^^^~03/01/2005~ -~18002~^~405~^0.270^2^^~1~^~A~^^^1^0.270^0.270^^^^^~03/01/2005~ -~18002~^~406~^4.375^2^^~1~^~A~^^^1^4.200^4.550^1^^^^~03/01/2005~ -~18002~^~410~^0.229^2^^~1~^~A~^^^1^0.227^0.232^1^^^^~03/01/2005~ -~18002~^~415~^0.070^2^^~1~^~A~^^^1^0.069^0.072^1^^^^~03/01/2005~ -~18002~^~501~^0.138^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~502~^0.334^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~503~^0.449^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~504~^0.817^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~505~^0.279^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~506~^0.209^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~507~^0.250^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~508~^0.577^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~509~^0.334^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~510~^0.507^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~511~^0.427^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~512~^0.252^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~513~^0.386^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~514~^0.531^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~515~^3.893^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~516~^0.414^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~517~^1.311^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~518~^0.564^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18002~^~606~^0.229^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~ -~18002~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~613~^0.156^2^^~1~^~A~^^^1^0.209^0.218^1^^^^~07/01/2015~ -~18002~^~614~^0.051^2^^~1~^~A~^^^1^0.067^0.072^1^^^^~07/01/2015~ -~18002~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~617~^0.241^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~18002~^~618~^0.489^2^^~1~^~A~^^^1^0.733^0.935^1^^^^~07/01/2015~ -~18002~^~619~^0.064^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~18002~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~626~^0.003^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~07/01/2015~ -~18002~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~628~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~07/01/2015~ -~18002~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18002~^~645~^0.245^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18002~^~646~^0.554^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18002~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~674~^0.241^2^^~1~^~A~^^^1^0.398^0.424^1^^^^~07/01/2015~ -~18002~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18002~^~851~^0.064^2^^~1~^~A~^^^1^0.083^0.137^1^^^^~07/01/2015~ -~18003~^~312~^0.090^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~315~^0.410^2^^~1~^^^^^^^^^^^~12/01/2001~ -~18003~^~404~^0.536^10^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~405~^0.235^10^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~406~^3.443^10^0.137^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~410~^0.671^9^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~415~^0.087^9^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~501~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~502~^0.306^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~503~^0.411^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~504~^0.748^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~505~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~506~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~507~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~508~^0.523^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~509~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~510~^0.461^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~511~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~512~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~513~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~514~^0.481^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~515~^3.548^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~516~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~517~^1.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~518~^0.528^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~606~^0.421^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~613~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~614~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~617~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~618~^0.600^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~620~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~626~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~645~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18003~^~646~^0.642^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~312~^0.163^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~315~^0.876^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~404~^0.384^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~405~^0.277^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~406~^3.080^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18005~^~410~^0.509^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18005~^~415~^0.062^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~18005~^~501~^0.114^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~502~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~503~^0.367^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~504~^0.671^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~505~^0.238^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~506~^0.179^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~507~^0.210^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~508~^0.474^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~509~^0.272^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~510~^0.424^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~511~^0.378^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~512~^0.217^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~513~^0.333^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~514~^0.479^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~515~^3.240^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~516~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~517~^1.080^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~518~^0.481^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~606~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~612~^0.003^0^^~4~^^^^^^^^^^^~02/01/2003~ -~18005~^~613~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~614~^0.020^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~617~^0.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~618~^0.632^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~619~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18005~^~645~^0.175^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18005~^~646~^0.671^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~312~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~315~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~404~^0.330^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~405~^0.268^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~406~^2.981^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~410~^0.047^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~415~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~501~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~502~^0.306^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~503~^0.395^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~504~^0.721^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~505~^0.256^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~506~^0.193^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~507~^0.226^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~508~^0.510^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~509~^0.293^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~510~^0.456^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~511~^0.406^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~512~^0.234^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~513~^0.358^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~514~^0.516^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~515~^3.484^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~516~^0.369^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~517~^1.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~518~^0.517^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~606~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~612~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~613~^0.270^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~614~^0.022^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~617~^0.173^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~618~^0.680^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~619~^0.042^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~626~^0.015^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18006~^~645~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18006~^~646~^0.722^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~312~^0.151^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~315~^0.863^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~404~^0.331^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~405~^0.338^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~406~^2.960^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18007~^~410~^0.445^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~415~^0.043^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18007~^~501~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~502~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~503~^0.406^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~504~^0.757^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~505~^0.288^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~506~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~507~^0.253^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~508~^0.526^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~509~^0.321^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~510~^0.482^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~511~^0.460^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~512~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~513~^0.382^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~514~^0.561^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~515~^3.318^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~516~^0.410^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~517~^1.082^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~518~^0.517^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~606~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~612~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~613~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~614~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~617~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~618~^0.465^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~619~^0.022^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~626~^0.007^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18007~^~645~^0.249^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18007~^~646~^0.486^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18009~^~312~^0.083^19^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~315~^0.392^15^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~404~^0.427^8^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~405~^0.292^8^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~406~^3.352^5^0.222^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~410~^0.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~415~^0.047^4^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~501~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~502~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~503~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~504~^0.436^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~505~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~506~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~507~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~508~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~509~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~510~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~511~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~512~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~513~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~514~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~515~^1.979^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~516~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~517~^0.698^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~518~^0.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18009~^~606~^1.676^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~612~^0.015^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~613~^1.114^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~614~^0.542^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~617~^4.592^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~618~^3.881^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~619~^0.287^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~626~^0.044^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18009~^~645~^4.647^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18009~^~646~^4.178^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18010~^~312~^0.154^12^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~315~^0.340^12^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~404~^0.575^4^0.084^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~405~^0.437^4^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~406~^4.542^3^0.136^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~410~^0.884^4^0.175^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~415~^0.076^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~502~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~503~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~504~^0.562^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~505~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~506~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~507~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~508~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~509~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~510~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~511~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~512~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~513~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~514~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~515~^2.567^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~516~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~517~^0.896^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~518~^0.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18010~^~606~^3.965^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~607~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~608~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~609~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~610~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~611~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~612~^0.096^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~613~^2.040^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~614~^1.793^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~617~^8.572^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~618~^1.907^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~619~^0.104^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18010~^~626~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18010~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18010~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18010~^~645~^8.584^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18010~^~646~^2.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18011~^~312~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~315~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~404~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~405~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~406~^3.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~410~^0.548^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~415~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~501~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~502~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~503~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~504~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~505~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~506~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~507~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~508~^0.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~509~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~510~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~511~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~512~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~513~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~514~^0.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~515~^2.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~516~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~517~^0.791^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~518~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~606~^2.789^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~607~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~608~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~609~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~610~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~611~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~612~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~613~^1.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~614~^1.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~617~^4.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~618~^4.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~619~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~626~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~645~^4.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18011~^~646~^4.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~312~^0.079^23^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~315~^0.301^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~404~^0.448^9^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~405~^0.222^15^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~406~^3.295^13^0.119^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~410~^0.367^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~415~^0.024^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18012~^~501~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~502~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~503~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~504~^0.461^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~505~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~506~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~507~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~508~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~509~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~510~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~511~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~512~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~513~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~514~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~515~^2.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~516~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~517~^0.775^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~518~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18012~^~606~^3.140^2^^~9~^~MC~^^^1^3.000^3.280^1^^^^~07/01/2015~ -~18012~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~612~^0.020^0^^~4~^^^^^^^^^^^~07/01/2015~ -~18012~^~613~^0.596^0^^~4~^^^^^^^^^^^~07/01/2015~ -~18012~^~614~^0.497^0^^~4~^^^^^^^^^^^~07/01/2015~ -~18012~^~617~^2.405^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~618~^0.637^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~619~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18012~^~645~^2.405^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18012~^~646~^0.671^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18013~^~312~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~315~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~404~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~405~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~406~^3.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~410~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~415~^0.029^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18013~^~501~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~503~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~504~^0.536^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~505~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~507~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~508~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~509~^0.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~510~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~511~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~512~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~513~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~514~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~515~^2.618^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~516~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~517~^0.902^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~518~^0.387^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~606~^3.648^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~ -~18013~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~612~^0.024^0^^~1~^^^^^^^^^^^~07/01/2015~ -~18013~^~613~^0.693^0^^~1~^^^^^^^^^^^~07/01/2015~ -~18013~^~614~^0.578^0^^~1~^^^^^^^^^^^~07/01/2015~ -~18013~^~617~^2.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~618~^0.740^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18013~^~645~^2.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18013~^~646~^0.780^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18014~^~312~^0.090^6^0.006^~1~^~A~^^^1^0.071^0.108^5^0.074^0.106^~2, 3~^~11/01/2005~ -~18014~^~315~^0.438^6^0.009^~1~^~A~^^^1^0.400^0.460^5^0.414^0.462^~2, 3~^~11/01/2005~ -~18014~^~404~^0.391^6^0.006^~1~^~A~^^^1^0.363^0.408^5^0.375^0.407^~2, 3~^~11/01/2005~ -~18014~^~405~^0.290^6^0.013^~1~^~A~^^^1^0.242^0.334^5^0.258^0.323^~2, 3~^~11/01/2005~ -~18014~^~406~^3.308^6^0.088^~1~^~A~^^^1^3.040^3.610^5^3.082^3.534^~2, 3~^~11/01/2005~ -~18014~^~410~^0.346^6^0.038^~1~^~A~^^^1^0.266^0.518^5^0.248^0.444^~2, 3~^~11/01/2005~ -~18014~^~415~^0.063^6^0.004^~1~^~A~^^^1^0.057^0.083^5^0.053^0.073^~2, 3~^~11/01/2005~ -~18014~^~501~^0.064^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~502~^0.171^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~503~^0.215^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~504~^0.393^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~505~^0.206^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~506~^0.095^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~507~^0.123^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~508~^0.240^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~509~^0.101^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~510~^0.256^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~511~^0.210^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~512~^0.121^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~513~^0.172^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~514~^0.266^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~515~^1.578^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~516~^0.177^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~517~^0.574^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~518~^0.246^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~605~^3.444^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18014~^~606~^2.806^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~612~^0.013^6^0.003^~1~^~A~^^^1^0.011^0.026^5^0.010^0.024^~2, 3~^~05/01/2013~ -~18014~^~613~^1.198^6^0.043^~1~^~A~^^^1^1.342^1.650^5^1.392^1.613^~2, 3~^~05/01/2013~ -~18014~^~614~^1.513^6^0.121^~1~^~A~^^^1^1.587^2.306^5^1.586^2.210^~2, 3~^~05/01/2013~ -~18014~^~615~^0.036^6^0.002^~1~^~A~^^^1^0.038^0.050^5^0.040^0.050^~2, 3~^~05/01/2013~ -~18014~^~617~^6.525^6^0.277^~1~^~A~^^^1^7.115^9.210^5^7.472^8.895^~2, 3~^~05/01/2013~ -~18014~^~618~^0.645^6^0.055^~1~^~A~^^^1^0.652^1.043^5^0.669^0.949^~2, 3~^~05/01/2013~ -~18014~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~18014~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~624~^0.035^6^0.002^~1~^~A~^^^1^0.037^0.049^5^0.040^0.048^~2, 3~^~05/01/2013~ -~18014~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~626~^0.009^6^0.002^~1~^~A~^^^1^0.000^0.015^5^0.005^0.017^~1, 2, 3~^~05/01/2013~ -~18014~^~628~^0.025^6^0.002^~1~^~A~^^^1^0.026^0.041^5^0.026^0.037^~2, 3~^~05/01/2013~ -~18014~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~645~^6.559^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~646~^0.681^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18014~^~652~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~653~^0.010^6^0.002^~1~^~A~^^^1^0.000^0.016^5^0.006^0.019^~1, 2, 3~^~05/01/2013~ -~18014~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~ -~18014~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~689~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18014~^~851~^0.036^6^0.002^~1~^~A~^^^1^0.037^0.053^5^0.040^0.050^~2, 3~^~05/01/2013~ -~18015~^~312~^0.086^12^0.002^~1~^~A~^^^1^0.078^0.093^6^0.082^0.090^~2, 3~^~03/01/2014~ -~18015~^~315~^0.490^12^0.010^~1~^~A~^^^1^0.380^0.561^10^0.468^0.512^~2, 3~^~03/01/2014~ -~18015~^~404~^0.447^6^0.020^~1~^~A~^^^1^0.360^0.540^2^0.371^0.524^~2, 3~^~03/01/2014~ -~18015~^~405~^0.299^6^0.015^~1~^~A~^^^1^0.250^0.380^2^0.244^0.353^~2, 3~^~03/01/2014~ -~18015~^~406~^3.684^6^0.233^~1~^~A~^^^1^2.680^4.780^2^2.691^4.677^~2, 3~^~03/01/2014~ -~18015~^~410~^0.382^4^0.010^~1~^~A~^^^1^0.350^0.410^1^0.302^0.463^~2, 3~^~03/01/2014~ -~18015~^~415~^0.046^6^0.002^~1~^~A~^^^1^0.030^0.050^2^0.037^0.055^~2, 3~^~03/01/2014~ -~18015~^~605~^0.224^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~606~^5.514^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18015~^~610~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.021^2^0.002^0.009^~1, 2, 3~^~03/01/2014~ -~18015~^~611~^0.008^6^0.002^~1~^~A~^^^1^0.000^0.032^2^0.001^0.015^~1, 2, 3~^~03/01/2014~ -~18015~^~612~^0.049^6^0.007^~1~^~A~^^^1^0.014^0.153^2^0.018^0.081^~2, 3~^~03/01/2014~ -~18015~^~613~^2.594^6^0.302^~1~^~A~^^^1^1.201^6.768^2^1.297^3.892^~2, 3~^~03/01/2014~ -~18015~^~614~^2.753^6^0.105^~1~^~A~^^^1^0.401^3.868^2^2.317^3.189^~2, 3~^~03/01/2014~ -~18015~^~615~^0.042^6^0.002^~1~^~A~^^^1^0.028^0.049^2^0.032^0.051^~2, 3~^~03/01/2014~ -~18015~^~617~^2.282^6^0.295^~1~^~AS~^^^1^1.458^5.201^2^1.022^3.541^~2, 3~^~03/01/2014~ -~18015~^~618~^2.412^6^0.041^~1~^~AS~^^^1^1.123^3.061^2^2.261^2.562^~2, 3~^~03/01/2014~ -~18015~^~619~^0.271^6^0.001^~1~^~AS~^^^1^0.066^0.385^4^0.267^0.275^~2, 3~^~03/01/2014~ -~18015~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.001^0.005^3^0.003^0.005^~1, 2, 3~^~03/01/2014~ -~18015~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~624~^0.028^6^0.002^~1~^~A~^^^1^0.010^0.035^2^0.020^0.036^~2, 3~^~03/01/2014~ -~18015~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18015~^~626~^0.007^6^0.001^~1~^~AS~^^^1^0.005^0.014^3^0.005^0.009^~2, 3~^~03/01/2014~ -~18015~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~628~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.021^2^0.015^0.020^~2, 3~^~03/01/2014~ -~18015~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~18015~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~645~^2.309^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~646~^2.688^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~652~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.010^4^0.005^0.008^~2, 3~^~03/01/2014~ -~18015~^~653~^0.015^6^0.001^~1~^~A~^^^1^0.009^0.017^2^0.011^0.018^~2, 3~^~03/01/2014~ -~18015~^~654~^0.013^6^0.001^~1~^~A~^^^1^0.008^0.015^3^0.011^0.015^~2, 3~^~03/01/2014~ -~18015~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~663~^0.193^6^0.111^~1~^~A~^^^1^0.016^0.971^2^-0.285^0.670^~2, 3~^~03/01/2014~ -~18015~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~665~^0.032^6^0.018^~1~^~A~^^^1^0.009^0.171^2^-0.047^0.111^~2, 3~^~03/01/2014~ -~18015~^~670~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.013^2^0.000^0.010^~2, 3~^~03/01/2014~ -~18015~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~03/01/2014~ -~18015~^~673~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.014^3^0.005^0.009^~2, 3~^~03/01/2014~ -~18015~^~674~^2.089^6^0.195^~1~^~A~^^^1^1.360^4.230^2^1.259^2.918^~2, 3~^~03/01/2014~ -~18015~^~675~^2.375^6^0.025^~1~^~A~^^^1^1.106^3.045^3^2.296^2.454^~2, 3~^~03/01/2014~ -~18015~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~685~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.013^2^0.004^0.013^~2, 3~^~03/01/2014~ -~18015~^~687~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.002^0.004^~1, 2, 3~^~03/01/2014~ -~18015~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2005~ -~18015~^~693~^0.193^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~18015~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18015~^~851~^0.263^6^0.002^~1~^~A~^^^1^0.060^0.376^3^0.256^0.269^~2, 3~^~03/01/2014~ -~18015~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18015~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~18015~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~18016~^~312~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~315~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~404~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~405~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~406~^2.949^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~410~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~415~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~501~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~503~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~504~^0.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~505~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~506~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~507~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~508~^0.347^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~509~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~510~^0.313^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~511~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~512~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~513~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~514~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~515~^2.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~516~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~517~^0.780^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~518~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~606~^4.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~607~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~608~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~609~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~610~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~611~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~612~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~613~^2.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~614~^1.687^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~617~^6.910^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~618~^3.900^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~619~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~645~^6.930^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18016~^~646~^4.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~312~^0.115^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~315~^0.659^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~404~^0.390^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~405~^0.210^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~406~^3.400^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~410~^0.315^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~415~^0.065^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~501~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~502~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~504~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~505~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~506~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~507~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~508~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~509~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~510~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~511~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~512~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~513~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~514~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~515~^2.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~516~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~517~^0.695^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~518~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18017~^~606~^1.366^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~612~^0.025^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~613~^0.738^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~614~^0.602^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~617~^2.931^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~618~^0.833^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~619~^0.047^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18017~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~645~^2.932^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18017~^~646~^0.880^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18019~^~312~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~315~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~404~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~405~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~406~^1.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~410~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~415~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~501~^0.053^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~502~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~503~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~504~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~505~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~507~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~508~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~509~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~510~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~511~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~512~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~513~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~514~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~515~^1.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~516~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~517~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~518~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~606~^2.237^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~607~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~608~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~610~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~612~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~613~^1.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~614~^0.761^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~617~^4.440^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~618~^2.968^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~619~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~620~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~621~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~626~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~628~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~645~^4.480^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18019~^~646~^3.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~312~^0.080^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~315~^1.020^3^0.191^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~404~^0.014^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~405~^0.115^9^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~406~^1.120^9^0.034^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~410~^0.566^9^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~415~^0.082^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~501~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~502~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~503~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~504~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~506~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~507~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~508~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~509~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~510~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~511~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~512~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~513~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~514~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~515~^1.537^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~516~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~517~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~518~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~606~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~607~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~608~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~610~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~612~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~613~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~614~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~617~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~618~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18021~^~626~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18021~^~628~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18021~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18021~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18021~^~645~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18021~^~646~^0.564^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~312~^0.085^22^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~315~^0.315^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~404~^0.427^39^0.030^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~405~^0.272^39^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~406~^3.342^37^0.190^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~410~^0.480^20^0.079^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~415~^0.128^20^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~501~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~502~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~503~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~504~^0.632^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~505~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~506~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~507~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~508~^0.343^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~509~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~510~^0.320^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~511~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~512~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~513~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~514~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~515~^1.847^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~516~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~517~^0.715^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~518~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18022~^~606~^3.091^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~607~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~608~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18022~^~610~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~611~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~612~^0.070^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~613~^1.607^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~614~^1.393^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~617~^6.714^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~618~^1.599^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~619~^0.083^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~626~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18022~^~645~^6.719^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18022~^~646~^1.682^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18023~^~312~^0.073^12^0.003^~1~^~A~^^^1^0.064^0.084^5^0.065^0.080^~2, 3~^~08/01/2012~ -~18023~^~315~^0.222^12^0.003^~1~^~A~^^^1^0.188^0.281^5^0.213^0.230^~2, 3~^~08/01/2012~ -~18023~^~404~^0.190^6^0.003^~1~^~A~^^^1^0.180^0.240^2^0.177^0.202^~2, 3~^~07/01/2014~ -~18023~^~405~^0.175^6^0.006^~1~^~A~^^^1^0.160^0.210^2^0.148^0.201^~2, 3~^~08/01/2012~ -~18023~^~406~^2.004^6^0.047^~1~^~A~^^^1^1.920^2.380^2^1.802^2.206^~2, 3~^~07/01/2014~ -~18023~^~410~^0.579^4^0.005^~1~^~A~^^^1^0.570^0.640^1^0.521^0.638^~2, 3~^~07/01/2014~ -~18023~^~415~^0.085^6^0.003^~1~^~A~^^^1^0.060^0.090^2^0.072^0.098^~2, 3~^~08/01/2012~ -~18023~^~501~^0.059^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~502~^0.226^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~503~^0.265^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~504~^0.658^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~505~^0.324^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~506~^0.157^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~507~^0.177^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~508~^0.343^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~509~^0.147^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~510~^0.334^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~511~^0.285^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~512~^0.167^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~513~^0.363^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~514~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~515~^1.492^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~516~^0.226^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~518~^0.373^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18023~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~18023~^~605~^0.224^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~606~^3.732^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~607~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.017^2^0.013^0.018^~2, 3~^~08/01/2012~ -~18023~^~608~^0.007^6^0.002^~1~^~A~^^^1^0.002^0.011^2^-0.003^0.018^~1, 2, 3~^~08/01/2012~ -~18023~^~609~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.011^~1, 2, 3~^~08/01/2012~ -~18023~^~610~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^2^0.001^0.012^~2, 3~^~08/01/2012~ -~18023~^~611~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.024^2^0.019^0.026^~2, 3~^~08/01/2012~ -~18023~^~612~^0.147^6^0.001^~1~^~A~^^^1^0.000^0.172^2^0.141^0.153^~1, 2, 3~^~07/01/2014~ -~18023~^~613~^2.157^6^0.007^~1~^~A~^^^1^1.198^2.216^2^2.116^2.197^~2, 3~^~07/01/2014~ -~18023~^~614~^1.295^6^0.009^~1~^~A~^^^1^0.654^1.347^3^1.266^1.325^~2, 3~^~07/01/2014~ -~18023~^~615~^0.025^6^0.000^~1~^~A~^^^1^0.017^0.026^3^0.024^0.026^~2, 3~^~08/01/2012~ -~18023~^~617~^3.254^6^0.038^~1~^~AS~^^^1^3.150^4.404^2^3.107^3.400^~2, 3~^~07/01/2014~ -~18023~^~618~^1.769^6^0.032^~1~^~AS~^^^1^1.694^2.670^2^1.651^1.887^~2, 3~^~07/01/2014~ -~18023~^~619~^0.080^6^0.004^~1~^~AS~^^^1^0.066^0.327^1^0.045^0.116^~2, 3~^~07/01/2014~ -~18023~^~620~^0.038^6^0.001^~1~^~A~^^^1^0.027^0.040^2^0.035^0.041^~2, 3~^~08/01/2012~ -~18023~^~621~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.010^~2, 3~^~08/01/2012~ -~18023~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.025^1^0.001^0.007^~2, 3~^~08/01/2012~ -~18023~^~625~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.028^2^0.006^0.009^~2, 3~^~08/01/2012~ -~18023~^~626~^0.159^6^0.002^~1~^~AS~^^^1^0.046^0.168^2^0.151^0.167^~2, 3~^~07/01/2014~ -~18023~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~628~^0.055^6^0.001^~1~^~A~^^^1^0.021^0.059^2^0.050^0.060^~2, 3~^~08/01/2012~ -~18023~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.003^~2, 3~^~08/01/2012~ -~18023~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.003^1^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~18023~^~645~^3.494^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~646~^1.963^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~652~^0.013^6^0.000^~1~^~A~^^^1^0.009^0.027^2^0.012^0.014^~2, 3~^~08/01/2012~ -~18023~^~653~^0.035^6^0.001^~1~^~A~^^^1^0.013^0.060^2^0.032^0.038^~2, 3~^~08/01/2012~ -~18023~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.009^2^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~18023~^~662~^0.005^6^0.000^~1~^~A~^^^1^0.002^0.014^2^0.004^0.006^~1, 2, 3~^~08/01/2012~ -~18023~^~663~^0.191^6^0.022^~1~^~A~^^^1^0.082^1.296^3^0.119^0.262^~2, 3~^~07/01/2014~ -~18023~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~665~^0.029^6^0.002^~1~^~A~^^^1^0.019^0.099^2^0.019^0.038^~2, 3~^~08/01/2012~ -~18023~^~670~^0.014^6^0.001^~1~^~A~^^^1^0.008^0.025^2^0.010^0.019^~2, 3~^~08/01/2012~ -~18023~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~672~^0.043^6^0.001^~1~^~A~^^^1^0.004^0.048^2^0.038^0.048^~2, 3~^~08/01/2012~ -~18023~^~673~^0.154^6^0.002^~1~^~A~^^^1^0.044^0.164^2^0.145^0.163^~2, 3~^~07/01/2014~ -~18023~^~674~^3.063^6^0.020^~1~^~A~^^^1^2.391^3.257^2^2.943^3.183^~2, 3~^~07/01/2014~ -~18023~^~675~^1.726^6^0.031^~1~^~A~^^^1^1.607^2.563^2^1.610^1.842^~2, 3~^~07/01/2014~ -~18023~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~08/01/2012~ -~18023~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.017^3^0.003^0.005^~2, 3~^~08/01/2012~ -~18023~^~687~^0.019^6^0.000^~1~^~A~^^^1^0.005^0.031^^^^~2, 3~^~07/01/2014~ -~18023~^~689~^0.013^6^0.000^~1~^~AS~^^^1^0.003^0.015^2^0.012^0.015^~2, 3~^~08/01/2012~ -~18023~^~693~^0.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18023~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18023~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18023~^~851~^0.076^6^0.004^~1~^~A~^^^1^0.063^0.310^1^0.040^0.113^~2, 3~^~07/01/2014~ -~18023~^~852~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.006^2^0.002^0.007^~1, 2, 3~^~08/01/2012~ -~18023~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.003^0.010^2^0.008^0.010^~2, 3~^~08/01/2012~ -~18023~^~858~^0.007^6^0.000^~1~^~A~^^^1^0.003^0.008^2^0.006^0.009^~2, 3~^~08/01/2012~ -~18024~^~312~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~315~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~404~^0.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~405~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~406~^2.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~410~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~415~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~501~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~502~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~503~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~504~^0.678^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~505~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~506~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~507~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~508~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~509~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~510~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~511~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~512~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~513~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~514~^0.472^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~515~^1.376^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~516~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~517~^0.571^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~518~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~606~^1.555^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~607~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~608~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~609~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~610~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~611~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~612~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~613~^0.991^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~614~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~617~^1.759^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~618~^2.841^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~619~^0.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~620~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~626~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~628~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~645~^1.830^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18024~^~646~^3.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~312~^0.222^13^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~315~^1.371^13^0.089^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~404~^0.358^26^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~405~^0.240^26^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~406~^3.671^26^0.188^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~410~^0.512^16^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~415~^0.304^14^0.202^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~501~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~502~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~503~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~504~^0.606^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~505~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~506~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~507~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~508~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~509~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~510~^0.387^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~511~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~512~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~513~^0.306^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~514~^0.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~515~^2.770^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~516~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~517~^0.922^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~518~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~606~^0.916^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~612~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~613~^0.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~614~^0.386^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~617~^1.892^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~618~^0.648^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~619~^0.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~626~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18025~^~645~^1.902^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18025~^~646~^0.682^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~312~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~315~^0.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~404~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~405~^0.436^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~406~^4.848^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~410~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~415~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~501~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~502~^0.306^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~503~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~504~^0.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~505~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~506~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~507~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~508~^0.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~509~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~510~^0.443^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~511~^0.385^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~512~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~513~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~514~^0.522^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~515~^2.856^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~516~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~517~^0.947^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~518~^0.501^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18027~^~606~^1.593^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18027~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18027~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18027~^~612~^0.020^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~613~^1.082^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~614~^0.463^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~615~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~617~^2.182^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~618~^0.998^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~619~^0.048^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~620~^0.046^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~621~^0.012^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~624~^0.004^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~625~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~626~^0.108^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18027~^~628~^0.009^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18027~^~645~^2.302^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~646~^1.106^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18027~^~653~^0.006^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18027~^~654~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~18028~^~312~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~315~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~404~^0.385^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~405~^0.432^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~406~^4.795^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~410~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~415~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~501~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~502~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~503~^0.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~504~^0.760^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~505~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~506~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~507~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~508~^0.522^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~509~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~510~^0.487^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~511~^0.423^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~512~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~513~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~514~^0.574^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~515~^3.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~516~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~517~^1.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~518~^0.551^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~606~^1.616^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~612~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~613~^0.972^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~614~^0.601^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~617~^2.911^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~618~^1.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~619~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~620~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~626~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~645~^2.989^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18028~^~646~^1.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18029~^~312~^0.152^6^0.004^~1~^~A~^^^1^0.139^0.161^5^0.143^0.161^~2, 3~^~05/01/2014~ -~18029~^~315~^0.577^6^0.025^~1~^~A~^^^1^0.503^0.637^5^0.514^0.641^~2, 3~^~05/01/2014~ -~18029~^~404~^0.710^3^0.060^~1~^~A~^^^1^0.640^0.830^2^0.451^0.969^~2, 3~^~05/01/2014~ -~18029~^~405~^0.427^3^0.027^~1~^~A~^^^1^0.400^0.480^2^0.312^0.541^~2, 3~^~05/01/2014~ -~18029~^~406~^4.817^3^0.098^~1~^~A~^^^1^4.690^5.010^2^4.394^5.239^~2, 3~^~05/01/2014~ -~18029~^~410~^0.455^2^^~1~^~A~^^^1^0.440^0.470^1^^^^~05/01/2014~ -~18029~^~415~^0.107^3^0.009^~1~^~A~^^^1^0.090^0.120^2^0.069^0.144^~2, 3~^~05/01/2014~ -~18029~^~605~^0.005^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~606~^0.529^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~05/01/2014~ -~18029~^~610~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~05/01/2014~ -~18029~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~05/01/2014~ -~18029~^~612~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~05/01/2014~ -~18029~^~613~^0.363^3^0.152^~1~^~A~^^^1^0.205^0.666^2^-0.290^1.015^~2, 3~^~05/01/2014~ -~18029~^~614~^0.138^3^0.047^~1~^~A~^^^1^0.060^0.222^2^-0.063^0.340^~2, 3~^~05/01/2014~ -~18029~^~615~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.008^2^-0.004^0.012^~1, 2, 3~^~11/01/2005~ -~18029~^~617~^0.344^3^0.177^~1~^~AS~^^^1^0.145^0.696^2^-0.416^1.103^~2, 3~^~05/01/2014~ -~18029~^~618~^0.790^3^0.252^~1~^~AS~^^^1^0.534^1.295^2^-0.296^1.876^~2, 3~^~05/01/2014~ -~18029~^~619~^0.064^3^0.030^~1~^~AS~^^^1^0.034^0.125^2^-0.066^0.195^~2, 3~^~05/01/2014~ -~18029~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2005~ -~18029~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~624~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.007^2^-0.003^0.011^~1, 2, 3~^~05/01/2014~ -~18029~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18029~^~626~^0.011^3^0.003^~1~^~AS~^^^1^0.008^0.017^2^-0.001^0.024^~2, 3~^~05/01/2014~ -~18029~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~628~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~05/01/2014~ -~18029~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~05/01/2014~ -~18029~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~645~^0.362^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~646~^0.855^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2014~ -~18029~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~18029~^~654~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2014~ -~18029~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~663~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~05/01/2014~ -~18029~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~665~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~05/01/2014~ -~18029~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18029~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2005~ -~18029~^~673~^0.011^3^0.003^~1~^~A~^^^1^0.008^0.017^2^-0.001^0.024^~2, 3~^~05/01/2014~ -~18029~^~674~^0.340^3^0.173^~1~^~A~^^^1^0.145^0.686^2^-0.406^1.086^~2, 3~^~05/01/2014~ -~18029~^~675~^0.788^3^0.251^~1~^~A~^^^1^0.534^1.290^2^-0.292^1.868^~2, 3~^~05/01/2014~ -~18029~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18029~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~05/01/2014~ -~18029~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18029~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~11/01/2005~ -~18029~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18029~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18029~^~851~^0.063^3^0.029^~1~^~A~^^^1^0.034^0.121^2^-0.062^0.188^~2, 3~^~05/01/2014~ -~18029~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18029~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18029~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18030~^~312~^0.150^2^^~1~^~A~^^^1^0.144^0.157^1^^^^~11/01/2005~ -~18030~^~315~^0.573^2^^~1~^~A~^^^1^0.572^0.573^1^^^^~11/01/2005~ -~18030~^~404~^0.427^2^^~1~^~A~^^^1^0.395^0.459^1^^^^~11/01/2005~ -~18030~^~405~^0.370^2^^~1~^~A~^^^1^0.365^0.374^1^^^^~11/01/2005~ -~18030~^~406~^5.380^2^^~1~^~A~^^^1^5.260^5.500^1^^^^~11/01/2005~ -~18030~^~410~^0.616^2^^~1~^~A~^^^1^0.373^0.860^1^^^^~11/01/2005~ -~18030~^~415~^0.096^2^^~1~^~A~^^^1^0.095^0.098^1^^^^~11/01/2005~ -~18030~^~501~^0.134^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~502~^0.316^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~503~^0.416^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~504~^0.762^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~505~^0.328^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~506~^0.168^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~507~^0.261^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~508~^0.543^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~509~^0.208^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~510~^0.476^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~511~^0.406^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~512~^0.234^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~513~^0.361^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~514~^0.496^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~515~^3.652^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~516~^0.403^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~517~^1.235^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~518~^0.501^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~606~^0.502^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~607~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~608~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~613~^0.326^2^^~1~^~A~^^^1^0.300^0.351^1^^^^~11/01/2005~ -~18030~^~614~^0.164^2^^~1~^~A~^^^1^0.145^0.183^1^^^^~11/01/2005~ -~18030~^~615~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~11/01/2005~ -~18030~^~617~^0.362^2^^~1~^~A~^^^1^0.291^0.434^1^^^^~11/01/2005~ -~18030~^~618~^0.780^2^^~1~^~A~^^^1^0.740^0.819^1^^^^~11/01/2005~ -~18030~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~18030~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~621~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~624~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~11/01/2005~ -~18030~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~626~^0.016^2^^~1~^~A~^^^1^0.014^0.017^1^^^^~11/01/2005~ -~18030~^~627~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~628~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~11/01/2005~ -~18030~^~629~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~630~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~631~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~645~^0.386^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~646~^0.830^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18030~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~653~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~11/01/2005~ -~18030~^~654~^0.000^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~ -~18030~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18030~^~851~^0.050^2^^~1~^~A~^^^1^0.048^0.052^1^^^^~11/01/2005~ -~18032~^~312~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~315~^0.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~404~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~405~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~406~^2.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~410~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~415~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~501~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~502~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~503~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~504~^0.436^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~505~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~507~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~508~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~509~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~510~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~511~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~512~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~513~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~514~^0.390^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~515~^1.825^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~516~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~517~^0.597^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~518~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~606~^1.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~607~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~608~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~609~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~610~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~611~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~612~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~613~^0.698^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~614~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~617~^1.976^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~618~^1.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~619~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~620~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~621~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~645~^1.999^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18032~^~646~^1.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18033~^~312~^0.121^6^0.002^~1~^~A~^^^1^0.090^0.131^1^0.101^0.140^~2, 3~^~01/01/2017~ -~18033~^~315~^0.491^6^0.010^~1~^~A~^^^1^0.466^0.578^1^0.400^0.582^~2, 3~^~01/01/2017~ -~18033~^~404~^0.582^3^0.014^~1~^~A~^^^1^0.550^0.680^1^0.401^0.764^~2, 3~^~01/01/2017~ -~18033~^~405~^0.321^3^0.007^~1~^~A~^^^1^0.300^0.380^1^0.231^0.412^~2, 3~^~01/01/2017~ -~18033~^~406~^4.538^3^0.080^~1~^~A~^^^1^4.290^5.210^1^3.517^5.559^~2, 3~^~01/01/2017~ -~18033~^~410~^0.371^2^^~1~^~A~^^^1^0.360^0.390^^^^^~01/01/2017~ -~18033~^~415~^0.104^3^0.000^~1~^~A~^^^1^0.100^0.110^^^^~2, 3~^~01/01/2017~ -~18033~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~606~^0.544^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~607~^0.007^3^0.000^~1~^~A~^^^1^0.009^0.010^^^^~2, 3~^~01/01/2017~ -~18033~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/1994~ -~18033~^~609~^0.002^3^0.000^~1~^~A~^^^1^0.003^0.004^1^0.001^0.005^~2, 3~^~01/01/2017~ -~18033~^~610~^0.002^3^0.000^~1~^~A~^^^1^0.003^0.004^1^0.001^0.005^~2, 3~^~01/01/2017~ -~18033~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.010^1^-0.015^0.021^~1, 2, 3~^~01/01/2017~ -~18033~^~612~^0.004^3^0.001^~1~^~A~^^^1^0.005^0.010^1^-0.006^0.017^~2, 3~^~01/01/2017~ -~18033~^~613~^0.331^3^0.004^~1~^~A~^^^1^0.334^0.554^1^0.425^0.534^~2, 3~^~01/01/2017~ -~18033~^~614~^0.177^3^0.006^~1~^~A~^^^1^0.176^0.292^1^0.177^0.336^~2, 3~^~01/01/2017~ -~18033~^~615~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.010^1^0.006^0.011^~2, 3~^~01/01/2017~ -~18033~^~617~^0.475^3^0.003^~1~^~AS~^^^1^0.457^0.814^1^0.653^0.725^~2, 3~^~01/01/2017~ -~18033~^~618~^1.173^3^0.006^~1~^~AS~^^^1^1.074^2.043^1^1.630^1.775^~2, 3~^~01/01/2017~ -~18033~^~619~^0.136^3^0.001^~1~^~AS~^^^1^0.122^0.238^1^0.188^0.206^~2, 3~^~01/01/2017~ -~18033~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/1994~ -~18033~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/1994~ -~18033~^~624~^0.007^3^0.000^~1~^~A~^^^1^0.005^0.013^^^^~2, 3~^~01/01/2017~ -~18033~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~626~^0.008^3^0.000^~1~^~AS~^^^1^0.010^0.017^1^0.010^0.015^~2, 3~^~01/01/2017~ -~18033~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/1994~ -~18033~^~628~^0.008^3^0.000^~1~^~A~^^^1^0.009^0.013^^^^~2, 3~^~01/01/2017~ -~18033~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^1^0.001^0.005^~1, 2, 3~^~01/01/2017~ -~18033~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/1994~ -~18033~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/1994~ -~18033~^~645~^0.493^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~646~^1.312^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~01/01/2017~ -~18033~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.005^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~663~^0.014^3^0.001^~1~^~A~^^^1^0.017^0.029^1^0.012^0.029^~2, 3~^~01/01/2017~ -~18033~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~665~^0.003^3^0.000^~1~^~A~^^^1^0.004^0.005^1^0.003^0.007^~2, 3~^~01/01/2017~ -~18033~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^1^0.000^0.004^~1, 2, 3~^~01/01/2017~ -~18033~^~673~^0.008^3^0.000^~1~^~A~^^^1^0.010^0.017^1^0.010^0.015^~2, 3~^~01/01/2017~ -~18033~^~674~^0.461^3^0.002^~1~^~A~^^^1^0.432^0.797^1^0.641^0.696^~2, 3~^~01/01/2017~ -~18033~^~675~^1.170^3^0.006^~1~^~A~^^^1^1.069^2.038^1^1.623^1.772^~2, 3~^~01/01/2017~ -~18033~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~01/01/2017~ -~18033~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~18033~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18033~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~851~^0.133^3^0.001^~1~^~A~^^^1^0.118^0.233^1^0.184^0.202^~2, 3~^~01/01/2017~ -~18033~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18033~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18036~^~312~^0.307^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~315~^2.201^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~404~^0.243^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~405~^0.142^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~406~^4.394^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~410~^0.365^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~415~^0.286^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~501~^0.135^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~502~^0.294^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~503~^0.351^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~504~^0.604^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~505~^0.314^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~506~^0.150^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~507~^0.191^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~508~^0.421^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~509~^0.256^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~510~^0.432^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~511~^0.527^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~512~^0.215^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~513~^0.371^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~514~^0.602^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~515~^2.386^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~516~^0.407^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~517~^0.767^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~518~^0.414^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~605~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~606~^0.948^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~607~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~608~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~609~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~610~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~611~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~612~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~613~^0.554^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~614~^0.386^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~615~^0.003^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~617~^0.793^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~618~^1.812^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~619~^0.223^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~620~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~621~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~624~^0.005^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~625~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~626~^0.019^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~627~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~628~^0.013^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~629~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~630~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~631~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~645~^0.826^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~646~^2.035^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~652~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~653~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~654~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~671~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~672~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~687~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~689~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~697~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~857~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18036~^~858~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~ -~18037~^~312~^0.135^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~315~^0.779^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~404~^0.504^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~405~^0.346^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~406~^4.831^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18037~^~410~^0.581^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~415~^0.073^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18037~^~501~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~502~^0.299^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~503~^0.399^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~504~^0.733^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~505~^0.297^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~506~^0.179^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~507~^0.234^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~508~^0.518^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~509~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~510~^0.461^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~511~^0.445^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~512~^0.225^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~513~^0.370^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~514~^0.547^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~515~^3.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~516~^0.395^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~517~^1.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~518~^0.502^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~606~^0.697^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~612~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~613~^0.526^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~614~^0.157^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~617~^1.560^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~618~^1.590^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~619~^0.103^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~626~^0.030^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18037~^~645~^1.590^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18037~^~646~^1.694^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~312~^0.128^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~315~^0.760^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~404~^0.443^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~405~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~406~^4.778^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~410~^0.114^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~415~^0.040^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~501~^0.143^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~502~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~503~^0.438^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~504~^0.805^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~505~^0.326^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~506~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~507~^0.257^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~508~^0.570^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~509~^0.356^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~510~^0.507^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~511~^0.489^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~512~^0.248^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~513~^0.407^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~514~^0.601^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~515~^3.475^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~516~^0.434^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~517~^1.159^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~518~^0.552^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~606~^0.766^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~612~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~613~^0.578^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~614~^0.172^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~617~^1.714^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~618~^1.748^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~619~^0.114^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~626~^0.033^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18038~^~645~^1.748^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18038~^~646~^1.861^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~312~^0.209^10^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~315~^0.940^10^0.055^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~404~^0.399^23^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~405~^0.240^23^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~406~^3.136^23^0.072^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~410~^0.341^10^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~415~^0.068^10^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18039~^~501~^0.116^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~502~^0.247^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~503~^0.325^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~504~^0.608^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~505~^0.270^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~506~^0.152^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~507~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~508~^0.414^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~509~^0.263^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~510~^0.393^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~511~^0.395^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~512~^0.186^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~513~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~514~^0.505^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~515~^2.413^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~516~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~517~^0.765^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~518~^0.408^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~606~^0.703^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~611~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~612~^0.007^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~613~^0.527^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~614~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~617~^1.555^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~618~^1.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~619~^0.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~626~^0.023^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18039~^~645~^1.578^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18039~^~646~^1.702^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18040~^~312~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~315~^1.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~404~^0.347^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~405~^0.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~406~^3.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~410~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~415~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~501~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~502~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~503~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~504~^0.661^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~505~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~506~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~507~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~508~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~509~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~510~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~511~^0.429^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~512~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~513~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~514~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~515~^2.623^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~516~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~517~^0.832^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~518~^0.443^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~606~^0.764^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~611~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~612~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~613~^0.573^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~614~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~617~^1.690^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~618~^1.742^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~619~^0.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~626~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18040~^~645~^1.715^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18040~^~646~^1.850^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~312~^0.168^13^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~315~^0.481^13^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~404~^0.599^32^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~405~^0.327^32^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~406~^4.632^32^0.083^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~410~^0.397^12^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~415~^0.034^11^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~501~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~502~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~503~^0.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~504~^0.634^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~505~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~506~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~507~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~508~^0.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~509~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~510~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~511~^0.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~512~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~513~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~514~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~515~^3.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~516~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~517~^1.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~518~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~606~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~613~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~614~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~617~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~618~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~626~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18041~^~645~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18041~^~646~^0.535^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~312~^0.290^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18042~^~315~^1.740^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~404~^0.339^8^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~405~^0.080^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~406~^2.840^8^0.057^~1~^^^^^^^^^^^~08/01/1992~ -~18042~^~410~^0.831^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18042~^~415~^0.265^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18042~^~501~^0.149^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~502~^0.282^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~503~^0.367^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~504~^0.671^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~505~^0.265^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~506~^0.153^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~507~^0.228^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~508~^0.470^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~509~^0.292^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~510~^0.441^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~511~^0.455^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~512~^0.226^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~513~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~514~^0.494^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~515~^3.153^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~516~^0.394^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~517~^1.046^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~518~^0.469^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18042~^~606~^0.208^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~18042~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~611~^0.001^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~612~^0.004^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~613~^0.373^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~614~^0.022^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~617~^0.312^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~618~^1.001^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~619~^0.052^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~620~^0.003^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~626~^0.037^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18042~^~645~^0.349^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18042~^~646~^1.055^0^^~4~^^^^^^^^^^^~07/01/2017~ -~18043~^~312~^0.417^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~315~^1.472^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18043~^~404~^0.360^60^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~405~^0.394^12^0.047^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~406~^4.289^11^0.284^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~410~^0.420^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~415~^0.071^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18043~^~501~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~502~^0.366^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~503~^0.471^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~504~^0.858^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~505~^0.372^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~506~^0.199^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~507~^0.247^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~508~^0.596^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~509~^0.362^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~510~^0.518^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~511~^0.548^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~512~^0.271^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~513~^0.414^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~514~^0.734^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~515~^3.689^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~516~^0.444^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~517~^1.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~518~^0.605^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~606~^0.332^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~612~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~613~^0.286^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~614~^0.021^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~617~^0.182^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~618~^0.950^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~619~^0.059^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~626~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18043~^~645~^0.183^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18043~^~646~^1.009^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~312~^0.287^13^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~315~^1.305^13^0.087^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~404~^0.327^38^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~405~^0.305^38^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~406~^3.091^38^0.099^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~410~^0.404^15^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~415~^0.126^13^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~501~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~502~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~503~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~504~^0.602^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~505~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~506~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~507~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~508~^0.422^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~509~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~510~^0.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~511~^0.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~512~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~513~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~514~^0.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~515~^2.721^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~516~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~517~^0.950^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~518~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18044~^~606~^0.437^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~613~^0.332^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~614~^0.102^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~617~^0.912^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~618~^1.145^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~619~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~626~^0.018^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18044~^~645~^0.932^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18044~^~646~^1.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~312~^0.198^13^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~315~^0.501^13^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~404~^0.339^48^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~405~^0.398^26^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~406~^3.466^27^0.143^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~410~^0.387^15^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~415~^0.069^13^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~501~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~502~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~503~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~504~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~505~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~506~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~507~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~508~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~509~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~510~^0.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~511~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~512~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~513~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~514~^0.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~515~^2.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~516~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~517~^0.828^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~518~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18047~^~606~^1.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~612~^0.020^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~613~^0.584^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~614~^0.476^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~617~^2.288^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~618~^0.641^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~619~^0.038^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~626~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18047~^~645~^2.294^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18047~^~646~^0.679^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18048~^~312~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~315~^0.545^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~404~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~405~^0.390^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~406~^3.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~410~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~415~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~501~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~502~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~503~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~504~^0.561^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~505~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~506~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~507~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~508~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~509~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~510~^0.358^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~511~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~512~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~513~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~514~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~515~^2.559^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~516~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~517~^0.899^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~518~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~606~^1.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~612~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~613~^0.635^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~614~^0.518^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~617~^2.487^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~618~^0.697^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~619~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18048~^~645~^2.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18048~^~646~^0.738^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~312~^0.291^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~315~^1.101^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~404~^0.354^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~405~^0.203^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~406~^3.763^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18049~^~410~^0.492^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~415~^0.103^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18049~^~501~^0.103^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~502~^0.257^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~503~^0.321^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~504~^0.565^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~505~^0.291^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~506~^0.140^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~507~^0.135^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~508~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~509~^0.386^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~510~^0.364^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~511~^0.384^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~512~^0.183^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~513~^0.312^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~514~^0.527^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~515~^2.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~516~^0.318^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~517~^0.712^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~518~^0.391^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~606~^0.445^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~613~^0.369^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~614~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~617~^0.663^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~618~^1.567^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~619~^0.102^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~626~^0.019^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18049~^~645~^0.684^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18049~^~646~^1.670^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~312~^0.147^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~315~^1.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~404~^0.338^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~405~^0.217^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~406~^4.032^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~410~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~415~^0.087^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~501~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~502~^0.306^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~503~^0.382^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~504~^0.673^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~505~^0.346^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~506~^0.167^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~507~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~508~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~509~^0.459^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~510~^0.433^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~511~^0.458^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~512~^0.217^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~513~^0.371^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~514~^0.627^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~515~^2.616^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~516~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~517~^0.848^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~518~^0.466^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~606~^0.530^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~612~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~613~^0.439^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~614~^0.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~617~^0.789^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~618~^1.865^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~619~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~626~^0.023^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18050~^~645~^0.814^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18050~^~646~^1.988^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~312~^0.099^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~315~^0.539^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~404~^0.348^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~405~^0.280^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~406~^3.030^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18051~^~410~^0.431^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~415~^0.045^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18051~^~501~^0.096^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~502~^0.234^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~503~^0.312^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~504~^0.562^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~505~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~506~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~507~^0.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~508~^0.381^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~509~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~510~^0.359^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~511~^0.327^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~512~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~513~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~514~^0.431^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~515~^2.235^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~516~^0.282^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~517~^0.764^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~518~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~606~^0.599^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~607~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~608~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~610~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~611~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~612~^0.011^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~613~^0.504^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~614~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~617~^0.783^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~618~^1.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~619~^0.063^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~626~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~645~^0.822^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18051~^~646~^1.351^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~312~^0.133^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~315~^0.453^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~404~^0.367^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~405~^0.240^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~406~^2.527^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18053~^~410~^0.297^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~415~^0.077^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18053~^~501~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~502~^0.284^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~503~^0.357^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~504~^0.638^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~505~^0.321^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~506~^0.155^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~507~^0.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~508~^0.457^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~509~^0.288^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~510~^0.415^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~511~^0.476^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~512~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~513~^0.320^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~514~^0.556^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~515~^2.629^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~516~^0.321^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~517~^0.860^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~518~^0.432^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~606~^0.368^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~608~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~610~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~611~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~612~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~613~^0.270^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~614~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~617~^0.638^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~618~^0.710^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~619~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~626~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18053~^~645~^0.672^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18053~^~646~^0.752^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18055~^~312~^0.171^3^0.008^~1~^~A~^^^1^0.145^0.213^1^0.073^0.270^~2, 3~^~03/01/2011~ -~18055~^~315~^1.210^3^0.110^~1~^~A~^^^1^1.020^1.620^1^-0.188^2.608^~2, 3~^~03/01/2011~ -~18055~^~404~^0.350^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~405~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~406~^3.780^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~606~^0.840^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~607~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~610~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~613~^0.410^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~614~^0.366^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~617~^0.492^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~618~^1.100^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~619~^0.088^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~620~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~628~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~645~^0.523^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~646~^1.196^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~663~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~665~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~673~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~674~^0.452^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~675~^1.094^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~687~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18055~^~693~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18055~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~851~^0.088^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~18055~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18055~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~18057~^~312~^0.330^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~315~^0.391^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18057~^~404~^0.410^14^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~405~^0.289^13^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~406~^3.641^14^0.207^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~410~^0.462^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~415~^0.042^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18057~^~501~^0.104^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~502~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~503~^0.381^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~504~^0.657^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~505~^0.358^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~506~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~507~^0.151^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~508~^0.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~509~^0.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~510~^0.418^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~511~^0.339^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~512~^0.198^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~513~^0.293^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~514~^0.504^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~515~^2.440^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~516~^0.276^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~517~^0.881^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~518~^0.430^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~606~^0.549^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~612~^0.009^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~613~^0.325^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~614~^0.214^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~617~^1.061^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~618~^0.531^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~619~^0.028^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~626~^0.016^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18057~^~645~^1.077^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18057~^~646~^0.559^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~312~^0.184^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~315~^1.585^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~404~^0.653^4^0.058^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~405~^0.300^4^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~406~^6.810^4^0.811^~1~^^^^^^^^^^^~08/01/1992~ -~18059~^~410~^0.776^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~415~^0.268^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18059~^~501~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~502~^0.268^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~503~^0.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~504~^0.624^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~505~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~506~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~507~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~508~^0.439^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~509~^0.271^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~510~^0.402^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~511~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~512~^0.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~513~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~514~^0.464^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~515~^2.703^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~516~^0.344^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~517~^0.910^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~518~^0.433^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~606~^0.709^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~612~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~613~^0.530^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~614~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~617~^1.621^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~618~^1.654^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~619~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~626~^0.033^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18059~^~645~^1.654^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18059~^~646~^1.760^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~312~^0.186^34^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~315~^0.824^36^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~404~^0.434^69^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~405~^0.335^70^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~406~^3.805^70^0.070^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~410~^0.440^4^0.052^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~415~^0.075^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18060~^~501~^0.096^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~502~^0.255^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~503~^0.319^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~504~^0.579^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~505~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~506~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~507~^0.173^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~508~^0.411^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~509~^0.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~510~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~511~^0.325^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~512~^0.182^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~513~^0.299^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~514~^0.442^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~515~^2.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~516~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~517~^0.909^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~518~^0.417^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~606~^0.626^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~612~^0.011^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~613~^0.385^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~614~^0.230^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~617~^1.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~618~^0.739^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~619~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~626~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~628~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18060~^~645~^1.311^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18060~^~646~^0.799^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~312~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~315~^0.905^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~404~^0.382^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~405~^0.332^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~406~^3.763^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~410~^0.314^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~415~^0.074^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~501~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~502~^0.281^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~503~^0.351^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~504~^0.637^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~505~^0.256^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~506~^0.153^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~507~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~508~^0.451^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~509~^0.235^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~510~^0.417^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~511~^0.358^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~512~^0.200^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~513~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~514~^0.486^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~515~^2.861^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~516~^0.331^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~517~^0.999^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~518~^0.458^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~606~^0.688^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~612~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~613~^0.423^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~614~^0.253^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~617~^1.425^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~618~^0.812^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~619~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~626~^0.013^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~628~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18061~^~645~^1.440^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18061~^~646~^0.879^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18064~^~312~^0.148^9^0.008^~1~^~A~^^^1^0.117^0.180^5^0.126^0.170^~2, 3~^~04/01/2016~ -~18064~^~315~^1.026^9^0.060^~1~^~A~^^^1^0.858^1.330^5^0.873^1.179^~2, 3~^~04/01/2016~ -~18064~^~404~^0.411^7^0.036^~1~^~A~^^^1^0.320^0.630^2^0.263^0.559^~2, 3~^~04/01/2016~ -~18064~^~405~^0.252^7^0.033^~1~^~A~^^^1^0.190^0.330^2^0.110^0.395^~2, 3~^~04/01/2016~ -~18064~^~406~^5.590^7^0.468^~1~^~A~^^^1^4.740^6.520^2^3.582^7.598^~2, 3~^~04/01/2016~ -~18064~^~410~^0.820^3^0.057^~1~^~A~^^^1^0.706^0.878^2^0.575^1.065^~2, 3~^~11/01/2005~ -~18064~^~415~^0.111^7^0.013^~1~^~A~^^^1^0.080^0.130^2^0.053^0.168^~2, 3~^~07/01/2014~ -~18064~^~605~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~606~^0.697^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~18064~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~18064~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.005^2^0.000^0.000^~1, 2, 3~^~04/01/2016~ -~18064~^~610~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.007^5^-0.002^0.004^~1, 2, 3~^~04/01/2016~ -~18064~^~611~^0.008^9^0.002^~1~^~A~^^^1^0.000^0.020^5^0.004^0.013^~1, 2, 3~^~04/01/2016~ -~18064~^~612~^0.007^9^0.001^~1~^~A~^^^1^0.004^0.011^5^0.005^0.009^~2, 3~^~04/01/2016~ -~18064~^~613~^0.440^9^0.015^~1~^~A~^^^1^0.336^0.509^5^0.401^0.478^~2, 3~^~04/01/2016~ -~18064~^~614~^0.213^9^0.016^~1~^~A~^^^1^0.163^0.285^5^0.170^0.255^~2, 3~^~04/01/2016~ -~18064~^~615~^0.007^9^0.000^~1~^~A~^^^1^0.004^0.009^5^0.006^0.008^~2, 3~^~04/01/2016~ -~18064~^~617~^0.577^9^0.039^~1~^~AS~^^^1^0.357^0.756^5^0.476^0.678^~2, 3~^~04/01/2016~ -~18064~^~618~^1.448^9^0.085^~1~^~AS~^^^1^0.853^1.842^5^1.230^1.666^~2, 3~^~04/01/2016~ -~18064~^~619~^0.161^9^0.012^~1~^~AS~^^^1^0.071^0.213^5^0.130^0.191^~2, 3~^~04/01/2016~ -~18064~^~620~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~18064~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~624~^0.007^9^0.000^~1~^~A~^^^1^0.004^0.009^5^0.007^0.008^~2, 3~^~04/01/2016~ -~18064~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18064~^~626~^0.019^9^0.002^~1~^~AS~^^^1^0.011^0.028^5^0.012^0.025^~2, 3~^~04/01/2016~ -~18064~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~628~^0.014^9^0.001^~1~^~A~^^^1^0.009^0.019^5^0.011^0.017^~2, 3~^~04/01/2016~ -~18064~^~629~^0.004^9^0.001^~1~^~A~^^^1^0.002^0.007^5^0.003^0.006^~1, 2, 3~^~04/01/2016~ -~18064~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.001^~2, 3~^~03/01/2011~ -~18064~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~645~^0.612^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~646~^1.615^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~652~^0.003^9^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~03/01/2011~ -~18064~^~653~^0.006^9^0.000^~1~^~A~^^^1^0.003^0.007^5^0.005^0.007^~2, 3~^~04/01/2016~ -~18064~^~654~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~03/01/2011~ -~18064~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~663~^0.027^9^0.005^~1~^~A~^^^1^0.005^0.044^5^0.013^0.040^~2, 3~^~04/01/2016~ -~18064~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~665~^0.006^9^0.001^~1~^~A~^^^1^0.003^0.010^5^0.004^0.008^~2, 3~^~03/01/2011~ -~18064~^~670~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2016~ -~18064~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18064~^~672~^0.001^9^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~18064~^~673~^0.019^9^0.002^~1~^~A~^^^1^0.011^0.028^5^0.012^0.025^~2, 3~^~04/01/2016~ -~18064~^~674~^0.550^9^0.037^~1~^~A~^^^1^0.316^0.721^5^0.456^0.645^~2, 3~^~04/01/2016~ -~18064~^~675~^1.442^9^0.084^~1~^~A~^^^1^0.850^1.831^5^1.226^1.657^~2, 3~^~04/01/2016~ -~18064~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18064~^~685~^0.005^9^0.001^~1~^~A~^^^1^0.002^0.009^5^0.003^0.007^~1, 2, 3~^~04/01/2016~ -~18064~^~687~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.002^2^0.002^0.002^~1, 2, 3~^~03/01/2011~ -~18064~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~18064~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~ -~18064~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18064~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18064~^~851~^0.155^9^0.011^~1~^~A~^^^1^0.069^0.204^5^0.127^0.184^~2, 3~^~04/01/2016~ -~18064~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18064~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~18064~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18065~^~312~^0.198^3^0.008^~1~^~A~^^^1^0.182^0.208^2^0.163^0.232^~2, 3~^~11/01/2005~ -~18065~^~315~^1.377^3^0.070^~1~^~A~^^^1^1.240^1.470^2^1.076^1.677^~2, 3~^~11/01/2005~ -~18065~^~404~^0.439^3^0.036^~1~^~A~^^^1^0.382^0.505^2^0.285^0.593^~2, 3~^~11/01/2005~ -~18065~^~405~^0.382^3^0.010^~1~^~A~^^^1^0.365^0.398^2^0.341^0.423^~2, 3~^~11/01/2005~ -~18065~^~406~^6.250^3^0.335^~1~^~A~^^^1^5.630^6.780^2^4.809^7.691^~2, 3~^~11/01/2005~ -~18065~^~410~^0.456^3^0.009^~1~^~A~^^^1^0.439^0.467^2^0.419^0.494^~2, 3~^~11/01/2005~ -~18065~^~415~^0.153^3^0.002^~1~^~A~^^^1^0.149^0.155^2^0.144^0.162^~2, 3~^~11/01/2005~ -~18065~^~501~^0.092^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~502~^0.299^0^^~1~^^^^^^^^^^^~11/01/2005~ -~18065~^~503~^0.258^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~504~^0.461^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~505~^0.215^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~506~^0.105^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~507~^0.154^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~508~^0.315^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~509~^0.165^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~510~^0.310^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~511~^0.311^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~512~^0.150^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~513~^0.245^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~514~^0.348^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~515~^2.060^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~516~^0.262^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~517~^0.682^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~518~^0.310^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~606~^0.989^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~612~^0.008^3^0.005^~1~^~A~^^^1^0.000^0.016^2^-0.012^0.028^~1, 2, 3~^~11/01/2005~ -~18065~^~613~^0.547^3^0.025^~1~^~A~^^^1^0.515^0.596^2^0.441^0.654^~2, 3~^~11/01/2005~ -~18065~^~614~^0.405^3^0.033^~1~^~A~^^^1^0.357^0.469^2^0.262^0.548^~2, 3~^~11/01/2005~ -~18065~^~615~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~11/01/2005~ -~18065~^~617~^0.982^3^0.088^~1~^~A~^^^1^0.851^1.150^2^0.602^1.362^~2, 3~^~11/01/2005~ -~18065~^~618~^1.560^3^0.078^~1~^~A~^^^1^1.423^1.693^2^1.224^1.895^~2, 3~^~11/01/2005~ -~18065~^~619~^0.161^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~18065~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~624~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~11/01/2005~ -~18065~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~626~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.016^0.026^~2, 3~^~11/01/2005~ -~18065~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~628~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~11/01/2005~ -~18065~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~645~^1.019^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~646~^1.720^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~18065~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~653~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~11/01/2005~ -~18065~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18065~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18065~^~851~^0.161^3^0.015^~1~^~A~^^^1^0.133^0.184^2^0.097^0.225^~2, 3~^~11/01/2005~ -~18069~^~312~^0.101^6^0.002^~1~^~A~^^^1^0.096^0.111^5^0.095^0.107^~2, 3~^~05/01/2014~ -~18069~^~315~^0.536^6^0.018^~1~^~A~^^^1^0.487^0.593^5^0.490^0.583^~2, 3~^~05/01/2014~ -~18069~^~404~^0.533^19^0.029^~1~^~A~^^^1^0.380^0.810^11^0.468^0.598^~2, 3~^~03/01/2011~ -~18069~^~405~^0.243^19^0.012^~1~^~A~^^^1^0.180^0.360^11^0.217^0.270^~2, 3~^~03/01/2011~ -~18069~^~406~^4.780^19^0.115^~1~^~A~^^^1^4.000^5.600^12^4.527^5.032^~2, 3~^~03/01/2011~ -~18069~^~410~^0.536^14^0.015^~1~^~A~^^^1^0.430^0.650^5^0.497^0.575^~2, 3~^~03/01/2011~ -~18069~^~415~^0.087^14^0.005^~1~^~A~^^^1^0.056^0.116^5^0.074^0.100^~2, 3~^~03/01/2011~ -~18069~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~606~^0.698^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~607~^0.003^14^0.000^~1~^~A~^^^1^0.002^0.005^6^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~18069~^~608~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.000^~1, 2, 3~^~12/01/2002~ -~18069~^~609~^0.005^14^0.001^~1~^~A~^^^1^0.003^0.009^5^0.003^0.007^~2, 3~^~03/01/2011~ -~18069~^~610~^0.005^14^0.000^~1~^~A~^^^1^0.003^0.006^7^0.005^0.005^~2, 3~^~03/01/2011~ -~18069~^~611~^0.013^14^0.004^~1~^~A~^^^1^0.000^0.036^5^0.002^0.024^~1, 2, 3~^~03/01/2011~ -~18069~^~612~^0.009^14^0.002^~1~^~A~^^^1^0.003^0.019^5^0.005^0.014^~2, 3~^~03/01/2011~ -~18069~^~613~^0.419^14^0.017^~1~^~A~^^^1^0.324^0.644^5^0.376^0.461^~2, 3~^~03/01/2011~ -~18069~^~614~^0.218^14^0.008^~1~^~A~^^^1^0.182^0.298^6^0.198^0.238^~2, 3~^~03/01/2011~ -~18069~^~615~^0.008^14^0.000^~1~^~A~^^^1^0.005^0.015^5^0.007^0.009^~2, 3~^~03/01/2011~ -~18069~^~617~^0.569^14^0.030^~1~^~AS~^^^1^0.345^1.035^5^0.491^0.647^~2, 3~^~03/01/2011~ -~18069~^~618~^1.425^14^0.064^~1~^~AS~^^^1^0.860^2.410^5^1.259^1.590^~2, 3~^~03/01/2011~ -~18069~^~619~^0.166^14^0.009^~1~^~AS~^^^1^0.080^0.309^5^0.143^0.189^~2, 3~^~03/01/2011~ -~18069~^~620~^0.002^14^0.000^~1~^~A~^^^1^0.001^0.004^6^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~18069~^~621~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~624~^0.008^14^0.000^~1~^~A~^^^1^0.005^0.016^6^0.007^0.009^~2, 3~^~03/01/2011~ -~18069~^~625~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~12/01/2002~ -~18069~^~626~^0.018^14^0.001^~1~^~AS~^^^1^0.014^0.022^6^0.016^0.020^~2, 3~^~03/01/2011~ -~18069~^~627~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~628~^0.010^14^0.001^~1~^~A~^^^1^0.007^0.015^6^0.008^0.012^~2, 3~^~03/01/2011~ -~18069~^~629~^0.001^14^0.000^~1~^~A~^^^1^0.000^0.003^6^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~18069~^~630~^0.000^14^0.000^~1~^~AS~^^^1^0.000^0.001^6^0.000^0.000^~2, 3~^~12/01/2002~ -~18069~^~631~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~645~^0.599^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~646~^1.602^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~652~^0.003^14^0.000^~1~^~A~^^^1^0.002^0.005^7^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~18069~^~653~^0.004^14^0.000^~1~^~A~^^^1^0.003^0.007^6^0.003^0.005^~2, 3~^~03/01/2011~ -~18069~^~654~^0.004^14^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~03/01/2011~ -~18069~^~662~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18069~^~663~^0.022^14^0.004^~1~^~A~^^^1^0.006^0.039^6^0.013^0.030^~2, 3~^~03/01/2011~ -~18069~^~664~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18069~^~665~^0.005^14^0.001^~1~^~A~^^^1^0.002^0.011^5^0.004^0.007^~1, 2, 3~^~03/01/2011~ -~18069~^~670~^0.001^14^0.000^~1~^~A~^^^1^0.000^0.003^6^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~18069~^~671~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18069~^~672~^0.002^14^0.000^~1~^~A~^^^1^0.000^0.002^6^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~18069~^~673~^0.018^14^0.001^~1~^~A~^^^1^0.014^0.022^6^0.016^0.020^~2, 3~^~03/01/2011~ -~18069~^~674~^0.547^14^0.028^~1~^~A~^^^1^0.325^1.006^5^0.476^0.619^~2, 3~^~03/01/2011~ -~18069~^~676~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18069~^~685~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18069~^~687~^0.002^14^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~18069~^~689~^0.000^14^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2011~ -~18069~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18069~^~697~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18069~^~851~^0.166^14^0.009^~1~^~A~^^^1^0.080^0.309^5^0.143^0.189^~2, 3~^~03/01/2011~ -~18069~^~852~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18069~^~853~^0.000^14^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18069~^~858~^0.005^14^0.001^~1~^~A~^^^1^0.000^0.011^6^0.004^0.007^~1, 2, 3~^~03/01/2011~ -~18070~^~312~^0.138^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~315~^0.421^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~404~^0.415^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~405~^0.337^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~406~^3.926^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~410~^0.278^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~415~^0.063^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~501~^0.106^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~502~^0.267^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~503~^0.354^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~504~^0.637^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~505~^0.245^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~506~^0.158^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~507~^0.191^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~508~^0.444^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~509~^0.261^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~510~^0.397^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~511~^0.346^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~512~^0.196^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~513~^0.308^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~514~^0.449^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~515~^2.920^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~516~^0.323^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~517~^0.970^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~518~^0.440^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~606~^0.764^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~ -~18070~^~607~^0.001^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~611~^0.001^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~612~^0.005^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~613~^0.437^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~614~^0.119^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~617~^0.755^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~618~^1.868^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~619~^0.220^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~626~^0.032^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~628~^0.005^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2000~ -~18070~^~645~^0.796^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18070~^~646~^2.090^0^^~4~^~RK~^^^^^^^^^^~05/01/2000~ -~18071~^~312~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~315~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~404~^0.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~405~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~406~^3.731^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~410~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~415~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~501~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~502~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~503~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~504~^0.544^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~505~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~506~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~507~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~508~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~509~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~510~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~511~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~512~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~513~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~514~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~515~^2.459^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~516~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~517~^0.859^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~518~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~606~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~613~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~614~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~617~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~618~^1.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~619~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~626~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~645~^0.527^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18071~^~646~^1.401^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~312~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~315~^0.416^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~404~^0.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~405~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~406~^3.588^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~410~^0.374^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~415~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~502~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~503~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~504~^0.576^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~505~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~506~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~507~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~508~^0.389^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~509~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~510~^0.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~511~^0.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~512~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~513~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~514~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~515~^2.387^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~516~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~517~^0.849^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~518~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~606~^1.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~607~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~608~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~610~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~611~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~612~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~613~^0.742^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~614~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~617~^1.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~618~^2.461^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~619~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~626~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~628~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~645~^1.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18073~^~646~^2.781^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18075~^~312~^0.227^10^0.007^~1~^~A~^^^1^0.180^0.261^8^0.211^0.243^~2, 3~^~04/01/2013~ -~18075~^~315~^2.174^10^0.039^~1~^~A~^^^1^1.980^2.450^7^2.081^2.267^~2, 3~^~04/01/2013~ -~18075~^~404~^0.394^7^0.028^~1~^~A~^^^1^0.280^0.490^4^0.318^0.470^~2, 3~^~04/01/2013~ -~18075~^~405~^0.167^7^0.007^~1~^~A~^^^1^0.130^0.200^5^0.148^0.185^~2, 3~^~04/01/2013~ -~18075~^~406~^4.438^7^0.139^~1~^~A~^^^1^3.900^5.010^5^4.079^4.797^~2, 3~^~04/01/2013~ -~18075~^~410~^0.646^3^0.011^~1~^~A~^^^1^0.630^0.680^1^0.509^0.784^~2, 3~^~04/01/2013~ -~18075~^~415~^0.215^7^0.010^~1~^~A~^^^1^0.180^0.270^5^0.189^0.241^~2, 3~^~04/01/2013~ -~18075~^~605~^0.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~606~^0.722^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~609~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^4^0.000^0.005^~1, 2, 3~^~04/01/2013~ -~18075~^~610~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.012^3^0.005^0.011^~2, 3~^~04/01/2013~ -~18075~^~611~^0.012^6^0.004^~1~^~A~^^^1^0.002^0.036^4^0.000^0.025^~1, 2, 3~^~04/01/2013~ -~18075~^~612~^0.008^6^0.002^~1~^~A~^^^1^0.003^0.017^3^0.003^0.013^~2, 3~^~04/01/2013~ -~18075~^~613~^0.435^6^0.012^~1~^~A~^^^1^0.393^0.482^2^0.366^0.504^~2, 3~^~04/01/2013~ -~18075~^~614~^0.231^6^0.017^~1~^~A~^^^1^0.159^0.293^4^0.180^0.282^~2, 3~^~04/01/2013~ -~18075~^~615~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^3^0.006^0.008^~2, 3~^~04/01/2013~ -~18075~^~617~^0.584^6^0.019^~1~^~AS~^^^1^0.487^0.675^2^0.482^0.687^~2, 3~^~04/01/2013~ -~18075~^~618~^1.446^6^0.054^~1~^~AS~^^^1^1.289^1.617^3^1.281^1.612^~2, 3~^~04/01/2013~ -~18075~^~619~^0.139^6^0.006^~1~^~AS~^^^1^0.121^0.159^4^0.122^0.156^~2, 3~^~04/01/2013~ -~18075~^~620~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.007^2^0.000^0.009^~1, 2, 3~^~04/01/2013~ -~18075~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~624~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^4^0.006^0.008^~2, 3~^~04/01/2013~ -~18075~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~626~^0.016^6^0.003^~1~^~AS~^^^1^0.007^0.026^3^0.006^0.027^~2, 3~^~04/01/2013~ -~18075~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~628~^0.017^6^0.002^~1~^~A~^^^1^0.011^0.023^4^0.012^0.022^~2, 3~^~04/01/2013~ -~18075~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~18075~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~645~^0.620^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~646~^1.592^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~18075~^~653~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~04/01/2013~ -~18075~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.003^0.005^~2, 3~^~04/01/2013~ -~18075~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~663~^0.015^6^0.006^~1~^~A~^^^1^0.004^0.053^3^-0.004^0.034^~2, 3~^~04/01/2013~ -~18075~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~665~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^3^0.002^0.007^~2, 3~^~04/01/2013~ -~18075~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~18075~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~673~^0.016^6^0.003^~1~^~A~^^^1^0.007^0.026^3^0.006^0.027^~2, 3~^~04/01/2013~ -~18075~^~674~^0.569^6^0.021^~1~^~A~^^^1^0.482^0.651^3^0.496^0.642^~2, 3~^~04/01/2013~ -~18075~^~675~^1.441^6^0.053^~1~^~A~^^^1^1.286^1.612^3^1.279^1.604^~2, 3~^~04/01/2013~ -~18075~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~18075~^~685~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.010^~1, 2, 3~^~04/01/2013~ -~18075~^~687~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~18075~^~689~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.001^~2, 3~^~04/01/2013~ -~18075~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18075~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~851~^0.137^6^0.006^~1~^~A~^^^1^0.118^0.159^4^0.121^0.152^~2, 3~^~04/01/2013~ -~18075~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~18075~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18075~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18076~^~312~^0.670^2^^~1~^~A~^^^1^0.635^0.705^1^^^~1~^~11/01/2005~ -~18076~^~315~^2.545^2^^~1~^~A~^^^1^2.510^2.580^1^^^^~11/01/2005~ -~18076~^~404~^0.376^2^^~1~^~A~^^^1^0.318^0.434^1^^^^~11/01/2005~ -~18076~^~405~^0.284^2^^~1~^~A~^^^1^0.276^0.293^1^^^^~11/01/2005~ -~18076~^~406~^5.732^2^^~1~^~A~^^^1^5.283^6.180^1^^^^~11/01/2005~ -~18076~^~410~^0.722^2^^~1~^~A~^^^1^0.619^0.826^1^^^^~11/01/2005~ -~18076~^~415~^0.237^2^^~1~^~A~^^^1^0.233^0.240^1^^^^~11/01/2005~ -~18076~^~501~^0.101^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~502~^0.189^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~503~^0.243^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~504~^0.442^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~505~^0.183^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~506~^0.101^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~507~^0.151^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~508~^0.308^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~509~^0.191^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~510~^0.296^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~511~^0.308^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~512~^0.152^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~513~^0.234^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~514~^0.339^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~515~^2.055^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~516~^0.265^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~517~^0.677^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~518~^0.309^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~605~^1.025^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~ -~18076~^~606~^0.922^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~609~^0.009^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~612~^0.005^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~613~^0.496^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~614~^0.386^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~615~^0.011^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~617~^1.960^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~618~^0.709^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~619~^0.031^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~620~^0.001^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~624~^0.011^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~626~^0.011^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~628~^0.001^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~645~^1.972^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~646~^0.740^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~652~^0.001^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18076~^~653~^0.004^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~ -~18077~^~312~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~315~^1.881^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~404~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~405~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~406~^3.985^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~410~^0.473^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~415~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~501~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~502~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~503~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~504~^0.574^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~505~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~506~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~507~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~508~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~509~^0.252^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~510~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~511~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~512~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~514~^0.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~515~^2.618^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~516~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~517~^0.869^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~518~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~606~^0.796^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~612~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~613~^0.600^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~614~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~617~^1.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~618~^2.621^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~619~^0.317^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~626~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~628~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~645~^1.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18077~^~646~^2.939^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~312~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~315~^2.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~404~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~405~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~406~^3.941^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~410~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~415~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~501~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~502~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~503~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~504~^0.631^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~505~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~506~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~507~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~508~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~509~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~510~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~511~^0.421^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~512~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~513~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~514~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~515~^2.877^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~516~^0.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~517~^0.955^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~518~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~606~^0.874^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~609~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~612~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~613~^0.660^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~614~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~617~^1.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~618~^2.880^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~619~^0.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~626~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~645~^1.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18078~^~646~^3.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18079~^~312~^0.255^6^0.013^~1~^~A~^^^1^0.219^0.308^5^0.222^0.288^~2, 3~^~01/01/2003~ -~18079~^~315~^0.919^6^0.007^~1~^~A~^^^1^0.900^0.946^5^0.902^0.937^~2, 3~^~01/01/2003~ -~18079~^~404~^0.967^6^0.052^~1~^~A~^^^1^0.760^1.117^5^0.834^1.100^~2, 3~^~01/01/2003~ -~18079~^~405~^0.403^6^0.011^~1~^~A~^^^1^0.383^0.443^5^0.376^0.430^~2, 3~^~01/01/2003~ -~18079~^~406~^6.634^6^0.109^~1~^~A~^^^1^6.231^6.964^5^6.353^6.916^~2, 3~^~01/01/2003~ -~18079~^~410~^0.552^3^0.010^~1~^~A~^^^1^0.541^0.573^2^0.508^0.597^~2, 3~^~01/01/2003~ -~18079~^~415~^0.121^3^0.003^~1~^~A~^^^1^0.116^0.127^2^0.107^0.135^~2, 3~^~01/01/2003~ -~18079~^~501~^0.162^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~502~^0.427^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~503~^0.544^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~504~^0.963^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~505~^0.430^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~506~^0.232^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~507~^0.278^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~508~^0.655^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~509~^0.398^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~510~^0.600^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~511~^0.552^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~512~^0.296^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~513~^0.483^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~514~^0.766^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~515~^4.123^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~516~^0.488^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~517~^1.366^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~518~^0.662^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~ -~18079~^~606~^1.203^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~613~^0.674^3^0.031^~1~^~A~^^^1^0.613^0.716^2^0.540^0.808^~2, 3~^~01/01/2003~ -~18079~^~614~^0.529^3^0.027^~1~^~A~^^^1^0.488^0.579^2^0.415^0.644^~2, 3~^~01/01/2003~ -~18079~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~617~^1.023^3^0.089^~1~^~A~^^^1^0.850^1.148^2^0.639^1.407^~2, 3~^~01/01/2003~ -~18079~^~618~^1.874^3^0.144^~1~^~A~^^^1^1.587^2.035^2^1.255^2.492^~2, 3~^~01/01/2003~ -~18079~^~619~^0.186^3^0.018^~1~^~A~^^^1^0.153^0.214^2^0.109^0.263^~2, 3~^~01/01/2003~ -~18079~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~645~^1.023^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~646~^2.060^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~18079~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18079~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18080~^~312~^0.188^4^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~315~^0.557^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~404~^0.589^8^0.039^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~405~^0.553^8^0.056^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~406~^5.281^8^0.435^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~410~^0.540^4^0.118^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~415~^0.073^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~501~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~502~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~503~^0.458^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~504~^0.835^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~505~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~506~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~507~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~508~^0.590^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~509~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~510~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~511~^0.432^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~512~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~513~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~514~^0.535^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~515~^4.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~516~^0.422^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~517~^1.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~518~^0.579^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18080~^~606~^1.410^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~612~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~613~^0.981^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~614~^0.406^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~617~^3.494^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~618~^3.377^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~619~^0.244^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~626~^0.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18080~^~645~^3.568^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18080~^~646~^3.628^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18081~^~312~^0.238^10^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~315~^0.594^5^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~404~^0.596^58^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~405~^0.404^58^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~406~^5.766^58^0.066^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~410~^0.398^8^0.078^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~415~^0.152^5^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~501~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~502~^0.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~503~^0.404^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~504~^0.774^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~505~^0.317^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~506~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~507~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~508~^0.553^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~509~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~510~^0.464^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~511~^0.470^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~512~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~513~^0.389^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~514~^0.553^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~515~^3.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~516~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~517~^1.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~518~^0.551^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18081~^~606~^0.845^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~612~^0.019^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~613~^0.560^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~614~^0.265^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~617~^1.406^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~618~^0.675^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~619~^0.037^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~620~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18081~^~626~^0.074^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18081~^~628~^0.013^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18081~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18081~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18081~^~645~^1.493^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18081~^~646~^0.713^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18082~^~312~^0.064^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~315~^0.146^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~404~^0.141^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~405~^0.105^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~406~^1.422^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~410~^0.110^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~415~^0.039^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~501~^0.036^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~502~^0.086^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~503~^0.107^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~504~^0.202^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~505~^0.087^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~506~^0.050^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~507~^0.056^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~508~^0.142^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~509~^0.090^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~510~^0.122^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~511~^0.120^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~512~^0.065^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~513~^0.100^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~514~^0.145^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~515~^0.883^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~516~^0.103^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~517~^0.305^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~518~^0.142^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~605~^2.070^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~606~^2.319^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~612~^0.011^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~613~^1.310^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~614~^0.923^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~617~^5.721^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~618~^3.259^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~619~^0.293^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~626~^0.024^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~628~^0.022^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~631~^0.001^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~645~^5.771^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~646~^3.553^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18082~^~693~^1.972^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~ -~18084~^~312~^0.228^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~315~^0.529^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18084~^~404~^0.509^20^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~405~^0.348^20^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~406~^4.873^20^0.107^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~410~^0.284^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~415~^0.146^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~501~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~502~^0.320^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~503~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~504~^0.873^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~505~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~506~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~507~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~508~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~509~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~510~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~511~^0.441^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~512~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~513~^0.481^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~514~^0.546^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~515~^2.735^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~516~^0.381^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~517~^1.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~518~^0.486^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18084~^~606~^0.922^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~612~^0.017^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~613~^0.624^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~614~^0.276^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~617~^1.587^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~618~^1.025^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~619~^0.047^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~620~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~626~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~628~^0.009^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~645~^1.662^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18084~^~646~^1.073^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~312~^0.069^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~315~^0.114^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~404~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~405~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~406~^1.247^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~410~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~415~^0.038^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~501~^0.031^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~502~^0.095^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~503~^0.108^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~504~^0.256^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~505~^0.085^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~506~^0.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~507~^0.057^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~508~^0.145^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~509~^0.101^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~510~^0.132^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~511~^0.128^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~512~^0.073^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~513~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~514~^0.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~515~^0.793^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~516~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~517~^0.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~518~^0.142^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~606~^1.755^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~612~^0.024^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~613~^1.094^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~614~^0.636^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~617~^3.835^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~618~^2.588^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~619~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~626~^0.019^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~627~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~628~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~645~^3.856^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18085~^~646~^2.706^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~312~^0.078^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~315~^0.085^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~404~^0.102^3^0.030^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~405~^0.491^3^0.169^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~406~^0.883^3^0.120^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~410~^0.198^4^0.034^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~415~^0.031^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18086~^~501~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~502~^0.248^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~503~^0.312^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~504~^0.481^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~505~^0.364^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~506~^0.183^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~507~^0.149^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~508~^0.334^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~509~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~510~^0.354^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~511~^0.303^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~512~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~513~^0.310^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~514~^0.532^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~515~^1.025^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~516~^0.206^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~517~^0.317^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~518~^0.389^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~606~^0.121^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~612~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~613~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~614~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~617~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~618~^0.346^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~619~^0.021^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~626~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~645~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18086~^~646~^0.367^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~312~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~315~^0.063^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~404~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~405~^0.202^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~406~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~410~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~415~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~501~^0.077^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~502~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~503~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~504~^0.497^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~505~^0.380^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~506~^0.192^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~507~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~508~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~509~^0.226^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~510~^0.368^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~511~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~512~^0.134^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~513~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~514~^0.561^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~515~^0.994^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~516~^0.211^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~517~^0.306^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~518~^0.402^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~606~^0.043^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18088~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18088~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~612~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~613~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~614~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~617~^0.025^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~618~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~619~^0.007^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~626~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18088~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18088~^~645~^0.026^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18088~^~646~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18090~^~312~^0.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~315~^0.050^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~404~^0.408^9^0.051^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~405~^0.270^9^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~406~^0.191^9^0.052^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~410~^0.301^8^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~415~^0.026^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~501~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~502~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~503~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~504~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~505~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~506~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~507~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~508~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~509~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~510~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~511~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~512~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~513~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~514~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~515~^0.546^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~516~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~517~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~518~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18090~^~606~^2.445^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~607~^0.020^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~608~^0.012^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18090~^~609~^0.007^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~610~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~611~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~612~^0.093^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~613~^1.265^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~614~^1.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~617~^4.504^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~618~^0.941^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~619~^0.055^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~620~^0.010^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~621~^0.003^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18090~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18090~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18090~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18090~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18090~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18090~^~645~^4.544^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18090~^~646~^1.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~312~^0.050^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~315~^0.528^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~404~^0.265^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~405~^0.170^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~406~^2.205^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~410~^0.294^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~415~^0.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~501~^0.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~502~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~503~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~504~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~505~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~506~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~507~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~508~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~509~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~510~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~511~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~513~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~514~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~515~^1.546^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~516~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~517~^0.513^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~518~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18092~^~606~^1.472^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18092~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18092~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18092~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18092~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~612~^0.012^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18092~^~613~^0.988^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~614~^0.470^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~617~^3.988^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~618~^3.437^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~619~^0.255^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~626~^0.039^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~645~^4.036^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18092~^~646~^3.702^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~312~^0.057^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~315~^0.067^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~404~^0.030^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~405~^0.190^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~406~^0.700^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18095~^~410~^0.463^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~415~^0.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~501~^0.030^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~502~^0.104^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~503~^0.109^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~504~^0.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~505~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~506~^0.047^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~507~^0.040^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~508~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~509~^0.074^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~510~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~511~^0.111^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~512~^0.046^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~513~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~514~^0.232^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~515~^0.420^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~516~^0.116^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~517~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~518~^0.126^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18095~^~606~^5.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~607~^0.212^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~608~^0.124^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~609~^0.073^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~610~^0.163^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~611~^0.181^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~612~^0.660^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~613~^2.384^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~614~^1.123^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~617~^4.113^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~618~^2.084^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~619~^0.240^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~620~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~626~^0.183^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18095~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18095~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18095~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~645~^4.400^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18095~^~646~^2.340^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18096~^~312~^0.216^6^0.012^~1~^~A~^^^1^0.178^0.243^5^0.186^0.246^~2, 3~^~07/01/2011~ -~18096~^~315~^0.329^6^0.012^~1~^~A~^^^1^0.279^0.359^5^0.298^0.360^~2, 3~^~07/01/2011~ -~18096~^~404~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~405~^0.057^3^0.012^~1~^~A~^^^1^0.040^0.080^2^0.005^0.108^~2, 3~^~07/01/2011~ -~18096~^~406~^0.773^3^0.087^~1~^~A~^^^1^0.630^0.930^2^0.400^1.147^~2, 3~^~07/01/2011~ -~18096~^~410~^0.190^2^^~1~^~A~^^^1^0.180^0.200^1^^^^~07/01/2011~ -~18096~^~415~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~501~^0.056^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~502~^0.166^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~503~^0.192^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~504~^0.310^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~505~^0.236^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~506~^0.085^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~507~^0.073^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~508~^0.203^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~509~^0.155^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~510~^0.236^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~511~^0.208^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~512~^0.088^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~513~^0.180^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~514~^0.341^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~515~^0.799^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~516~^0.145^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~517~^0.268^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~518~^0.235^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18096~^~605~^1.318^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~606~^5.917^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~607~^0.013^6^0.008^~1~^~A~^^^1^0.000^0.043^5^-0.008^0.035^~1, 2, 3~^~07/01/2011~ -~18096~^~608~^0.011^6^0.006^~1~^~A~^^^1^0.000^0.034^5^-0.005^0.027^~1, 2, 3~^~07/01/2011~ -~18096~^~609~^0.021^6^0.013^~1~^~A~^^^1^0.000^0.084^5^-0.013^0.056^~1, 2, 3~^~07/01/2011~ -~18096~^~610~^0.034^6^0.016^~1~^~A~^^^1^0.000^0.094^5^-0.008^0.077^~1, 2, 3~^~07/01/2011~ -~18096~^~611~^0.197^6^0.168^~1~^~A~^^^1^0.000^1.034^5^-0.235^0.629^~1, 2, 3~^~07/01/2011~ -~18096~^~612~^0.170^6^0.059^~1~^~A~^^^1^0.028^0.364^5^0.019^0.322^~2, 3~^~07/01/2011~ -~18096~^~613~^3.501^6^0.684^~1~^~A~^^^1^1.731^6.246^5^1.743^5.260^~2, 3~^~07/01/2011~ -~18096~^~614~^1.801^6^0.199^~1~^~A~^^^1^1.288^2.637^5^1.289^2.314^~2, 3~^~07/01/2011~ -~18096~^~615~^0.069^6^0.005^~1~^~A~^^^1^0.048^0.079^5^0.058^0.081^~2, 3~^~07/01/2011~ -~18096~^~617~^7.229^6^0.915^~1~^~AS~^^^1^3.160^10.071^5^4.876^9.581^~2, 3~^~07/01/2011~ -~18096~^~618~^4.122^6^0.214^~1~^~AS~^^^1^3.672^5.080^5^3.573^4.671^~2, 3~^~07/01/2011~ -~18096~^~619~^0.482^6^0.039^~1~^~AS~^^^1^0.381^0.639^5^0.382^0.582^~2, 3~^~07/01/2011~ -~18096~^~620~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.014^5^0.008^0.013^~2, 3~^~07/01/2011~ -~18096~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~624~^0.044^6^0.004^~1~^~A~^^^1^0.032^0.056^5^0.034^0.053^~2, 3~^~07/01/2011~ -~18096~^~625~^0.004^6^0.003^~1~^~A~^^^1^0.000^0.015^5^-0.003^0.011^~1, 2, 3~^~07/01/2011~ -~18096~^~626~^0.039^6^0.008^~1~^~AS~^^^1^0.023^0.071^5^0.018^0.060^~2, 3~^~07/01/2011~ -~18096~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~628~^0.059^6^0.005^~1~^~A~^^^1^0.042^0.076^5^0.046^0.072^~2, 3~^~07/01/2011~ -~18096~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~07/01/2011~ -~18096~^~630~^0.004^6^0.001^~1~^~AS~^^^1^0.002^0.007^5^0.002^0.005^~2, 3~^~07/01/2011~ -~18096~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~645~^7.343^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~646~^4.622^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~652~^0.011^6^0.004^~1~^~A~^^^1^0.004^0.026^5^0.001^0.021^~2, 3~^~07/01/2011~ -~18096~^~653~^0.023^6^0.002^~1~^~A~^^^1^0.015^0.029^5^0.017^0.029^~2, 3~^~07/01/2011~ -~18096~^~654~^0.019^6^0.001^~1~^~A~^^^1^0.014^0.023^5^0.016^0.022^~2, 3~^~07/01/2011~ -~18096~^~662~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.007^5^-0.001^0.006^~1, 2, 3~^~07/01/2011~ -~18096~^~663~^1.128^6^0.368^~1~^~A~^^^1^0.160^2.488^5^0.181^2.075^~2, 3~^~07/01/2011~ -~18096~^~664~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~07/01/2011~ -~18096~^~665~^0.187^6^0.052^~1~^~A~^^^1^0.052^0.383^5^0.053^0.321^~2, 3~^~07/01/2011~ -~18096~^~670~^0.017^6^0.003^~1~^~A~^^^1^0.009^0.030^5^0.009^0.025^~2, 3~^~07/01/2011~ -~18096~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~07/01/2011~ -~18096~^~673~^0.036^6^0.007^~1~^~A~^^^1^0.023^0.064^5^0.019^0.054^~2, 3~^~07/01/2011~ -~18096~^~674~^6.100^6^0.679^~1~^~A~^^^1^2.931^7.583^5^4.356^7.845^~2, 3~^~07/01/2011~ -~18096~^~675~^3.918^6^0.228^~1~^~A~^^^1^3.571^5.019^5^3.333^4.504^~2, 3~^~07/01/2011~ -~18096~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~07/01/2011~ -~18096~^~685~^0.027^6^0.003^~1~^~A~^^^1^0.021^0.039^5^0.020^0.035^~2, 3~^~07/01/2011~ -~18096~^~687~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.007^0.011^~2, 3~^~07/01/2011~ -~18096~^~689~^0.003^6^0.001^~1~^~AS~^^^1^0.000^0.004^5^0.001^0.004^~2, 3~^~07/01/2011~ -~18096~^~693~^1.131^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~695~^0.187^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18096~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~851~^0.454^6^0.037^~1~^~A~^^^1^0.360^0.600^5^0.360^0.549^~2, 3~^~07/01/2011~ -~18096~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18096~^~853~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 2, 3~^~07/01/2011~ -~18096~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18097~^~312~^0.272^36^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~315~^0.213^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18097~^~404~^0.210^44^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~405~^0.170^44^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~406~^2.417^44^0.059^~1~^^^^^^^^^^^~08/01/1992~ -~18097~^~410~^0.211^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18097~^~415~^0.031^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18097~^~501~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~502~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~503~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~504~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~505~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~506~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~507~^0.077^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~508~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~509~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~510~^0.240^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~511~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~512~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~513~^0.167^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~514~^0.303^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~515~^1.151^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~516~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~517~^0.390^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~518~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18097~^~606~^3.500^0^^~4~^~T~^^^^^^^^^^~07/01/2017~ -~18097~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18097~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18097~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18097~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18097~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18097~^~612~^0.011^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~613~^1.122^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~614~^0.779^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~617~^3.649^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~618~^2.775^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~619~^0.202^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18097~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18097~^~645~^3.688^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18097~^~646~^2.985^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~18101~^~312~^0.207^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~315~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~404~^0.141^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~405~^0.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~406~^1.137^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~410~^0.304^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~415~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~501~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~502~^0.202^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~503~^0.240^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~504~^0.407^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~505~^0.268^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~506~^0.116^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~507~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~508~^0.265^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~509~^0.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~510~^0.283^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~511~^0.253^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~512~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~513~^0.220^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~514~^0.390^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~515~^1.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~516~^0.179^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~517~^0.411^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~518~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~606~^5.430^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~607~^0.017^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~608~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~609~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~610~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~611~^0.015^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~612~^0.101^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~613~^2.836^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~614~^2.392^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~617~^5.982^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~618~^2.576^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~619~^0.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~620~^0.019^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~621~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~626~^0.051^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~627~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~628~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~645~^6.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18101~^~646~^2.761^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18102~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~315~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~404~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~405~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~406~^1.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~410~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~415~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~501~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~502~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~503~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~504~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~505~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~506~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~507~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~508~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~509~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~510~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~511~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~512~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~513~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~514~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~515~^1.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~516~^0.146^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~517~^0.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~518~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~606~^3.897^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~607~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~608~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~609~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~610~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~611~^0.847^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~612~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~613~^1.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~614~^0.978^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~617~^3.683^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~618~^2.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~619~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~626~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~645~^3.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18102~^~646~^2.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~312~^0.052^4^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~315~^0.172^4^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~404~^0.105^4^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~405~^0.125^4^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~406~^0.682^4^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~410~^0.400^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~415~^0.058^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~501~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~502~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~503~^0.326^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~504~^0.568^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~505~^0.401^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~506~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~507~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~508~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~509~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~510~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~511~^0.299^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~512~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~513~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~514~^0.470^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~515~^1.751^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~516~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~517~^0.625^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~518~^0.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18103~^~606~^5.391^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~607~^0.112^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~608~^0.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~609~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~610~^0.075^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~611~^0.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~612~^0.452^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~613~^2.803^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~614~^1.701^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~617~^6.903^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~618~^1.488^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~619~^0.125^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~620~^0.025^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~626~^0.166^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18103~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18103~^~645~^7.129^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18103~^~646~^1.645^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~312~^0.125^32^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~315~^0.450^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~404~^0.209^11^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~405~^0.229^11^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~406~^1.678^11^0.064^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~410~^0.655^8^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~415~^0.027^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~501~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~502~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~503~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~504~^0.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~505~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~506~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~508~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~509~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~510~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~511~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~512~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~513~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~514~^0.415^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~515~^1.897^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~516~^0.237^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~517~^0.634^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~518~^0.346^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18104~^~606~^5.797^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~612~^0.114^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~613~^3.086^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~614~^2.575^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~617~^12.905^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~618~^2.944^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~619~^0.151^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~620~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~621~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~626~^0.059^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18104~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18104~^~645~^12.976^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18104~^~646~^3.120^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~312~^0.070^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~315~^0.190^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~404~^0.080^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~405~^0.074^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~406~^0.840^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~410~^0.392^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~415~^0.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~502~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~503~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~504~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~505~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~506~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~507~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~508~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~509~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~510~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~511~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~512~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~513~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~514~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~515~^1.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~516~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~517~^0.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~518~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18105~^~606~^2.833^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18105~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18105~^~612~^0.050^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~613~^1.571^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~614~^1.195^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~617~^5.603^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~618~^1.365^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~619~^0.069^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~620~^0.024^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~626~^0.054^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~645~^5.664^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18105~^~646~^1.465^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18106~^~312~^0.030^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~315~^0.240^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~404~^0.037^9^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~405~^0.190^9^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~406~^2.573^9^0.052^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~410~^0.660^8^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~415~^0.037^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~502~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~503~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~504~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~505~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~507~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~508~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~509~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~510~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~511~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~512~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~513~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~514~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~515~^1.435^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~516~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~517~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~518~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18106~^~606~^2.495^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~612~^0.048^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~613~^1.321^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~614~^1.117^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~617~^5.543^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~618~^1.390^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~619~^0.079^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~626~^0.012^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18106~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18106~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18106~^~645~^5.557^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18106~^~646~^1.473^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18108~^~312~^0.149^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~315~^0.310^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~404~^0.167^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~405~^0.175^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~406~^1.519^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~410~^0.269^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~415~^0.050^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~501~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~502~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~503~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~504~^0.422^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~505~^0.229^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~506~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~507~^0.111^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~508~^0.271^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~509~^0.185^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~510~^0.275^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~511~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~512~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~513~^0.203^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~514~^0.332^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~515~^1.472^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~516~^0.173^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~517~^0.511^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~518~^0.303^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~606~^1.855^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~607~^0.017^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~608~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~609~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~610~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~611~^0.016^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~612~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~613~^1.186^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~614~^0.533^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~617~^3.770^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~618~^2.928^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~619~^0.217^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~620~^0.016^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~621~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~626~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18108~^~628~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18108~^~645~^3.851^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18108~^~646~^3.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18110~^~312~^0.050^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~315~^0.220^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~404~^0.050^9^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~405~^0.099^9^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~406~^0.791^9^0.052^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~410~^0.226^8^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~415~^0.046^8^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~502~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~503~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~504~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~505~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~506~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~507~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~508~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~509~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~510~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~511~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~512~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~513~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~514~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~515~^0.639^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~516~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~517~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~518~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18110~^~606~^1.048^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18110~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18110~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18110~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18110~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18110~^~612~^0.020^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~613~^0.743^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~614~^0.267^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~617~^4.100^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~618~^2.959^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~619~^0.336^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~620~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~626~^0.044^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18110~^~628~^0.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18110~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18110~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18110~^~645~^4.200^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18110~^~646~^3.323^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~312~^0.246^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~315~^0.556^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~404~^0.340^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~405~^0.240^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~406~^2.550^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~410~^0.235^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~415~^0.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~501~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~502~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~503~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~504~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~505~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~507~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~508~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~509~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~510~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~511~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~512~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~513~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~514~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~515~^1.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~516~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~517~^0.415^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~518~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~606~^3.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18114~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18114~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18114~^~612~^0.069^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~613~^1.792^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~614~^1.632^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~617~^7.820^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~618~^1.675^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~619~^0.091^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18114~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18114~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18114~^~645~^7.791^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18114~^~646~^1.804^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~312~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~315~^0.683^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~404~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~405~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~406~^1.738^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~410~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~415~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~501~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~503~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~504~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~505~^0.131^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~506~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~507~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~508~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~510~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~511~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~513~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~514~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~515~^1.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~516~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~517~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~518~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~606~^4.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~612~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~613~^2.369^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~614~^1.684^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~617~^7.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~618~^3.948^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~619~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~620~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~626~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~645~^7.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18116~^~646~^4.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~312~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~315~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~404~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~405~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~406~^1.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~410~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~415~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~501~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~502~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~503~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~504~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~505~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~506~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~507~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~508~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~509~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~510~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~511~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~512~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~513~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~514~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~515~^0.949^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~516~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~517~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~518~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~606~^2.915^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~607~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~608~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~609~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~610~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~611~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~612~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~613~^1.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~614~^1.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~617~^5.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~618~^3.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~619~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~620~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~621~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~626~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~645~^5.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18119~^~646~^3.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18120~^~312~^0.042^9^0.002^~1~^~A~^^^1^0.036^0.051^7^0.038^0.045^~2, 3~^~04/01/2013~ -~18120~^~315~^0.110^9^0.002^~1~^~A~^^^1^0.081^0.119^6^0.106^0.114^~2, 3~^~04/01/2013~ -~18120~^~404~^0.173^6^0.008^~1~^~A~^^^1^0.050^0.200^4^0.150^0.195^~2, 3~^~04/01/2013~ -~18120~^~405~^0.249^6^0.005^~1~^~A~^^^1^0.150^0.270^4^0.234^0.263^~2, 3~^~04/01/2013~ -~18120~^~406~^1.615^6^0.052^~1~^~A~^^^1^0.250^1.860^2^1.413^1.818^~2, 3~^~04/01/2013~ -~18120~^~410~^0.485^3^0.007^~1~^~A~^^^1^0.470^0.540^1^0.396^0.574^~2, 3~^~04/01/2013~ -~18120~^~415~^0.036^6^0.003^~1~^~A~^^^1^0.020^0.060^4^0.028^0.045^~1, 2, 3~^~04/01/2013~ -~18120~^~501~^0.041^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~502~^0.153^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~503~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~504~^0.397^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~505~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~506~^0.117^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~507~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~508~^0.239^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~509~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~510~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~511~^0.229^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~512~^0.117^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~513~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~514~^0.346^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~515~^1.119^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~516~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~517~^0.504^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18120~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~18120~^~605~^0.192^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~606~^4.811^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~607~^0.115^6^0.015^~1~^~A~^^^1^0.048^0.285^3^0.066^0.163^~2, 3~^~04/01/2013~ -~18120~^~608~^0.090^6^0.003^~1~^~A~^^^1^0.063^0.207^3^0.081^0.098^~2, 3~^~04/01/2013~ -~18120~^~609~^0.054^6^0.001^~1~^~A~^^^1^0.038^0.126^3^0.050^0.059^~2, 3~^~04/01/2013~ -~18120~^~610~^0.156^6^0.002^~1~^~A~^^^1^0.120^0.323^2^0.146^0.167^~2, 3~^~04/01/2013~ -~18120~^~611~^0.163^6^0.003^~1~^~A~^^^1^0.117^0.365^2^0.150^0.175^~2, 3~^~04/01/2013~ -~18120~^~612~^0.538^6^0.013^~1~^~A~^^^1^0.385^1.229^2^0.486^0.589^~2, 3~^~04/01/2013~ -~18120~^~613~^2.418^6^0.023^~1~^~A~^^^1^2.016^4.106^4^2.352^2.483^~2, 3~^~04/01/2013~ -~18120~^~614~^1.130^6^0.015^~1~^~A~^^^1^1.022^1.614^3^1.077^1.184^~2, 3~^~04/01/2013~ -~18120~^~615~^0.024^6^0.001^~1~^~A~^^^1^0.019^0.028^4^0.022^0.027^~2, 3~^~04/01/2013~ -~18120~^~617~^2.810^6^0.034^~1~^~AS~^^^1^2.548^3.911^4^2.712^2.909^~2, 3~^~04/01/2013~ -~18120~^~618~^2.972^6^0.118^~1~^~AS~^^^1^1.114^3.299^2^2.468^3.477^~2, 3~^~04/01/2013~ -~18120~^~619~^0.388^6^0.020^~1~^~AS~^^^1^0.084^0.459^4^0.328^0.448^~2, 3~^~04/01/2013~ -~18120~^~620~^0.031^6^0.001^~1~^~A~^^^1^0.026^0.059^3^0.026^0.036^~2, 3~^~04/01/2013~ -~18120~^~621~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.010^2^0.005^0.009^~2, 3~^~04/01/2013~ -~18120~^~624~^0.018^6^0.001^~1~^~A~^^^1^0.007^0.022^4^0.016^0.021^~2, 3~^~04/01/2013~ -~18120~^~625~^0.055^6^0.001^~1~^~A~^^^1^0.037^0.134^3^0.049^0.060^~2, 3~^~04/01/2013~ -~18120~^~626~^0.117^6^0.004^~1~^~AS~^^^1^0.082^0.245^4^0.107^0.127^~2, 3~^~04/01/2013~ -~18120~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~628~^0.023^6^0.001^~1~^~A~^^^1^0.019^0.030^2^0.018^0.028^~2, 3~^~04/01/2013~ -~18120~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^2^0.001^0.001^~1, 2, 3~^~04/01/2013~ -~18120~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~18120~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.011^3^0.004^0.006^~2, 3~^~04/01/2013~ -~18120~^~645~^3.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~646~^3.419^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~652~^0.059^6^0.002^~1~^~A~^^^1^0.042^0.132^3^0.053^0.064^~2, 3~^~04/01/2013~ -~18120~^~653~^0.039^6^0.002^~1~^~A~^^^1^0.028^0.084^3^0.033^0.046^~2, 3~^~04/01/2013~ -~18120~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.004^0.009^3^0.006^0.009^~2, 3~^~04/01/2013~ -~18120~^~662~^0.016^6^0.001^~1~^~A~^^^1^0.009^0.043^4^0.013^0.020^~2, 3~^~04/01/2013~ -~18120~^~663~^0.131^6^0.006^~1~^~A~^^^1^0.090^0.315^3^0.111^0.150^~2, 3~^~04/01/2013~ -~18120~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~665~^0.045^6^0.001^~1~^~A~^^^1^0.034^0.088^4^0.042^0.048^~2, 3~^~04/01/2013~ -~18120~^~670~^0.032^6^0.002^~1~^~A~^^^1^0.021^0.089^2^0.026^0.039^~2, 3~^~04/01/2013~ -~18120~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.007^2^0.004^0.005^~2, 3~^~04/01/2013~ -~18120~^~673~^0.101^6^0.002^~1~^~A~^^^1^0.073^0.204^4^0.094^0.107^~2, 3~^~04/01/2013~ -~18120~^~674~^2.680^6^0.034^~1~^~A~^^^1^2.448^3.636^4^2.581^2.778^~2, 3~^~04/01/2013~ -~18120~^~675~^2.895^6^0.120^~1~^~A~^^^1^0.940^3.244^2^2.383^3.408^~2, 3~^~04/01/2013~ -~18120~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~685~^0.015^6^0.003^~1~^~A~^^^1^0.000^0.025^2^0.005^0.026^~1, 2, 3~^~04/01/2013~ -~18120~^~687~^0.015^6^0.000^~1~^~A~^^^1^0.011^0.029^4^0.013^0.016^~2, 3~^~04/01/2013~ -~18120~^~689~^0.008^6^0.001^~1~^~AS~^^^1^0.006^0.016^3^0.007^0.010^~2, 3~^~04/01/2013~ -~18120~^~693~^0.147^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18120~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~851~^0.372^6^0.022^~1~^~A~^^^1^0.084^0.445^4^0.312^0.433^~2, 3~^~04/01/2013~ -~18120~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~853~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.016^3^0.007^0.010^~2, 3~^~04/01/2013~ -~18120~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18120~^~858~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.007^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~18121~^~312~^0.054^4^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~315~^0.088^4^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~404~^0.143^4^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~405~^0.260^4^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~406~^1.349^4^0.151^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~410~^0.285^3^0.053^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~415~^0.023^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~501~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~502~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~503~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~504~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~505~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~506~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~508~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~509~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~510~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~511~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~512~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~513~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~514~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~515~^1.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~516~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~517~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~518~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18121~^~606~^4.647^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~612~^0.087^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~613~^2.478^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~614~^2.069^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~617~^9.880^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~618~^2.114^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~619~^0.108^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~620~^0.023^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~626~^0.049^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18121~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18121~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18121~^~645~^9.935^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18121~^~646~^2.251^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18126~^~312~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~315~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~404~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~405~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~406~^2.573^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~410~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~501~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~502~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~503~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~504~^0.449^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~505~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~506~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~507~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~508~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~509~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~510~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~511~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~512~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~513~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~514~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~515~^1.897^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~516~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~517~^0.681^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~518~^0.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~606~^3.772^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~607~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~608~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~610~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~612~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~613~^2.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~614~^1.472^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~617~^6.028^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~618~^3.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~619~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~626~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~645~^6.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18126~^~646~^3.632^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18127~^~312~^0.305^2^^~1~^~A~^^^1^0.260^0.350^1^^^^~10/01/2005~ -~18127~^~315~^0.485^2^^~1~^~A~^^^1^0.430^0.540^1^^^^~10/01/2005~ -~18127~^~404~^0.037^2^^~1~^~A~^^^1^0.024^0.050^1^^^^~10/01/2005~ -~18127~^~405~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~10/01/2005~ -~18127~^~406~^0.925^2^^~1~^~A~^^^1^0.820^1.030^1^^^^~10/01/2005~ -~18127~^~410~^0.083^2^^~1~^~A~^^^1^0.072^0.095^1^^^^~10/01/2005~ -~18127~^~415~^0.143^2^^~1~^~A~^^^1^0.123^0.162^1^^^^~10/01/2005~ -~18127~^~501~^0.055^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~502~^0.156^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~503~^0.158^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~504~^0.261^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~505~^0.196^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~506~^0.053^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~507~^0.062^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~508~^0.156^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~509~^0.116^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~510~^0.194^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~511~^0.156^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~512~^0.067^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~513~^0.150^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~514~^0.296^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~515~^0.768^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~516~^0.126^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~517~^0.249^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~518~^0.172^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~606~^4.884^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~611~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~10/01/2005~ -~18127~^~612~^0.159^2^^~1~^~A~^^^1^0.040^0.278^1^^^^~10/01/2005~ -~18127~^~613~^2.632^2^^~1~^~A~^^^1^2.403^2.860^1^^^^~10/01/2005~ -~18127~^~614~^1.930^2^^~1~^~A~^^^1^1.790^2.070^1^^^^~10/01/2005~ -~18127~^~615~^0.046^2^^~1~^~A~^^^1^0.031^0.061^1^^^^~10/01/2005~ -~18127~^~617~^8.349^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18127~^~618~^1.649^2^^~1~^~A~^^^1^1.030^2.269^1^^^^~10/01/2005~ -~18127~^~619~^0.173^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18127~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~624~^0.030^2^^~1~^~A~^^^1^0.000^0.061^1^^^~1~^~10/01/2005~ -~18127~^~625~^0.036^2^^~1~^~A~^^^1^0.000^0.072^1^^^~1~^~10/01/2005~ -~18127~^~626~^0.119^2^^~1~^~A~^^^1^0.000^0.238^1^^^~1~^~10/01/2005~ -~18127~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~628~^0.016^2^^~1~^~A~^^^1^0.000^0.031^1^^^~1~^~10/01/2005~ -~18127~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~ -~18127~^~645~^8.525^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~646~^1.822^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18127~^~652~^0.021^2^^~1~^~A~^^^1^0.000^0.041^1^^^~1~^~10/01/2005~ -~18127~^~653~^0.062^2^^~1~^~A~^^^1^0.020^0.104^1^^^^~10/01/2005~ -~18127~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18127~^~697~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~10/01/2005~ -~18127~^~851~^0.173^2^^~1~^~A~^^^1^0.125^0.221^1^^^^~10/01/2005~ -~18128~^~312~^0.148^2^^~1~^~A~^^^1^0.148^0.148^^^^~1~^~10/01/2007~ -~18128~^~315~^0.305^2^^~1~^~A~^^^1^0.240^0.370^1^^^^~10/01/2007~ -~18128~^~404~^0.181^2^^~1~^~A~^^^1^0.129^0.233^1^^^^~10/01/2007~ -~18128~^~405~^0.168^2^^~1~^~A~^^^1^0.139^0.197^1^^^^~10/01/2007~ -~18128~^~406~^1.549^2^^~1~^~A~^^^1^0.969^2.130^1^^^^~10/01/2007~ -~18128~^~410~^0.226^2^^~1~^~A~^^^1^0.190^0.262^1^^^^~10/01/2007~ -~18128~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~501~^0.038^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~502~^0.120^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~503~^0.139^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~504~^0.240^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~505~^0.164^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~506~^0.065^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~507~^0.070^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~508~^0.138^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~509~^0.079^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~510~^0.165^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~511~^0.141^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~512~^0.066^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~513~^0.134^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~514~^0.232^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~515~^0.662^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~516~^0.097^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~517~^0.221^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~518~^0.174^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~605~^1.621^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~606~^4.139^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~612~^0.122^2^^~1~^~A~^^^1^0.028^0.216^1^^^^~10/01/2007~ -~18128~^~613~^1.981^2^^~1~^~A~^^^1^1.671^2.291^1^^^^~10/01/2007~ -~18128~^~614~^1.888^2^^~1~^~A~^^^1^1.867^1.909^1^^^^~10/01/2007~ -~18128~^~615~^0.040^2^^~1~^~A~^^^1^0.033^0.047^1^^^^~10/01/2007~ -~18128~^~617~^4.739^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~618~^1.729^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~619~^0.131^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~624~^0.030^2^^~1~^~A~^^^1^0.020^0.040^1^^^^~10/01/2007~ -~18128~^~625~^0.027^2^^~1~^~A~^^^1^0.000^0.053^1^^^~1~^~10/01/2007~ -~18128~^~626~^0.121^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~ -~18128~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~628~^0.019^2^^~1~^~A~^^^1^0.018^0.021^1^^^^~10/01/2007~ -~18128~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18128~^~645~^4.906^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~646~^1.860^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~18128~^~652~^0.020^2^^~1~^~A~^^^1^0.005^0.035^1^^^^~10/01/2007~ -~18128~^~653~^0.058^2^^~1~^~A~^^^1^0.017^0.098^1^^^^~10/01/2007~ -~18128~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18128~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18131~^~312~^0.057^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~315~^0.300^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~404~^0.289^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~405~^0.179^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~406~^2.395^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~410~^0.196^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~415~^0.018^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18131~^~501~^0.044^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~502~^0.084^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~503~^0.115^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~504~^0.206^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~505~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~506~^0.051^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~507~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~508~^0.144^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~509~^0.087^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~510~^0.133^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~511~^0.116^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~512~^0.062^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~513~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~514~^0.127^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~515~^1.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~516~^0.103^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~517~^0.338^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~518~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18131~^~606~^1.251^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~612~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~613~^0.836^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~614~^0.403^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~617~^3.439^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~618~^2.957^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~619~^0.218^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~626~^0.033^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18131~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~645~^3.480^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18131~^~646~^3.183^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18133~^~312~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~315~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~404~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~405~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~406~^1.932^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~410~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~415~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~501~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~502~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~503~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~505~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~506~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~507~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~508~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~509~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~510~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~511~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~512~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~513~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~514~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~515~^1.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~516~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~517~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~518~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18133~^~606~^0.802^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~612~^0.011^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~613~^0.580^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~614~^0.193^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~617~^0.867^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~618~^0.389^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~619~^0.015^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~620~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~621~^0.009^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~626~^0.073^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18133~^~628~^0.007^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~629~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~630~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18133~^~645~^0.949^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18133~^~646~^0.448^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18134~^~312~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~315~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~404~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~405~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~406~^1.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~410~^0.546^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~415~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~501~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~502~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~503~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~504~^0.590^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~505~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~506~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~507~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~508~^0.374^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~509~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~510~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~511~^0.404^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~512~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~513~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~514~^0.600^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~515~^1.427^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~516~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~517~^0.468^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~518~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~606~^1.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~612~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~613~^0.943^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~614~^0.322^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~617~^1.439^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~618~^0.556^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~619~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~620~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~621~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~626~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~628~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~645~^1.576^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18134~^~646~^0.649^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~312~^0.056^7^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~315~^0.278^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18135~^~404~^0.280^5^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~405~^0.180^8^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~406~^2.425^8^0.129^~1~^^^^^^^^^^^~08/01/1992~ -~18135~^~410~^0.233^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18135~^~415~^0.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18135~^~501~^0.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~502~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~503~^0.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~504~^0.284^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~505~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~506~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~507~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~508~^0.183^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~509~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~510~^0.185^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~511~^0.146^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~512~^0.083^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~513~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~514~^0.184^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~515~^1.194^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~516~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~517~^0.421^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~518~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~606~^2.390^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~612~^0.048^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~613~^1.234^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~614~^1.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~617~^4.091^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18135~^~618~^1.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~619~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18135~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18135~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18135~^~645~^4.093^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18135~^~646~^1.244^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~18139~^~312~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~315~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~404~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~405~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~406~^1.533^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~410~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~415~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~501~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~502~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~503~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~505~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~506~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~508~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~509~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~510~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~511~^0.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~512~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~513~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~514~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~515~^1.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~516~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~517~^0.483^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~518~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~606~^3.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~607~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~608~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~609~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~610~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~611~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~612~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~613~^1.812^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~614~^1.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~617~^5.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~618~^2.949^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~619~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~626~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~645~^5.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18139~^~646~^3.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18140~^~312~^0.159^6^0.020^~1~^~A~^^^1^0.110^0.221^5^0.107^0.212^~2, 3~^~07/01/2011~ -~18140~^~315~^0.222^6^0.017^~1~^~A~^^^1^0.176^0.275^5^0.179^0.266^~2, 3~^~07/01/2011~ -~18140~^~404~^0.043^3^0.013^~1~^~A~^^^1^0.030^0.070^2^-0.014^0.101^~2, 3~^~07/01/2011~ -~18140~^~405~^0.093^3^0.019^~1~^~A~^^^1^0.070^0.130^2^0.013^0.173^~2, 3~^~07/01/2011~ -~18140~^~406~^0.800^3^0.140^~1~^~A~^^^1^0.650^1.080^2^0.197^1.403^~2, 3~^~07/01/2011~ -~18140~^~410~^0.165^2^^~1~^~A~^^^1^0.160^0.170^1^^^^~07/01/2011~ -~18140~^~415~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~605~^1.313^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~606~^5.793^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~607~^0.012^6^0.008^~1~^~A~^^^1^0.000^0.042^5^-0.008^0.033^~1, 2, 3~^~07/01/2011~ -~18140~^~608~^0.010^6^0.006^~1~^~A~^^^1^0.000^0.033^5^-0.005^0.026^~1, 2, 3~^~07/01/2011~ -~18140~^~609~^0.017^6^0.009^~1~^~A~^^^1^0.000^0.058^5^-0.006^0.041^~1, 2, 3~^~07/01/2011~ -~18140~^~610~^0.031^6^0.012^~1~^~A~^^^1^0.000^0.066^5^0.000^0.062^~1, 2, 3~^~07/01/2011~ -~18140~^~611~^0.144^6^0.113^~1~^~A~^^^1^0.000^0.705^5^-0.147^0.434^~1, 2, 3~^~07/01/2011~ -~18140~^~612~^0.149^6^0.049^~1~^~A~^^^1^0.029^0.298^5^0.024^0.275^~2, 3~^~07/01/2011~ -~18140~^~613~^3.489^6^0.605^~1~^~A~^^^1^2.126^6.106^5^1.932^5.045^~2, 3~^~07/01/2011~ -~18140~^~614~^1.777^6^0.181^~1~^~A~^^^1^1.203^2.461^5^1.312^2.242^~2, 3~^~07/01/2011~ -~18140~^~615~^0.066^6^0.003^~1~^~A~^^^1^0.052^0.073^5^0.058^0.074^~2, 3~^~07/01/2011~ -~18140~^~617~^7.108^6^0.778^~1~^~AS~^^^1^3.584^9.323^5^5.108^9.107^~2, 3~^~07/01/2011~ -~18140~^~618~^4.212^6^0.317^~1~^~AS~^^^1^3.652^5.765^5^3.397^5.028^~2, 3~^~07/01/2011~ -~18140~^~619~^0.500^6^0.052^~1~^~AS~^^^1^0.373^0.736^5^0.366^0.635^~2, 3~^~07/01/2011~ -~18140~^~620~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.015^5^0.007^0.013^~2, 3~^~07/01/2011~ -~18140~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~624~^0.044^6^0.004^~1~^~A~^^^1^0.030^0.057^5^0.034^0.055^~2, 3~^~07/01/2011~ -~18140~^~625~^0.004^6^0.003^~1~^~A~^^^1^0.000^0.014^5^-0.003^0.011^~1, 2, 3~^~07/01/2011~ -~18140~^~626~^0.035^6^0.007^~1~^~AS~^^^1^0.021^0.063^5^0.017^0.054^~2, 3~^~07/01/2011~ -~18140~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~628~^0.053^6^0.007^~1~^~A~^^^1^0.034^0.075^5^0.036^0.071^~2, 3~^~07/01/2011~ -~18140~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~07/01/2011~ -~18140~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.006^5^0.003^0.006^~2, 3~^~07/01/2011~ -~18140~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~645~^7.214^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~646~^4.728^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~652~^0.011^6^0.004^~1~^~A~^^^1^0.005^0.025^5^0.002^0.020^~2, 3~^~07/01/2011~ -~18140~^~653~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.029^5^0.019^0.028^~2, 3~^~07/01/2011~ -~18140~^~654~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.016^0.020^~2, 3~^~07/01/2011~ -~18140~^~662~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^5^-0.001^0.005^~1, 2, 3~^~07/01/2011~ -~18140~^~663~^1.113^6^0.355^~1~^~A~^^^1^0.157^2.298^5^0.200^2.027^~2, 3~^~07/01/2011~ -~18140~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~07/01/2011~ -~18140~^~665~^0.197^6^0.049^~1~^~A~^^^1^0.058^0.349^5^0.071^0.323^~2, 3~^~07/01/2011~ -~18140~^~670~^0.017^6^0.004^~1~^~A~^^^1^0.007^0.032^5^0.008^0.026^~2, 3~^~07/01/2011~ -~18140~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~07/01/2011~ -~18140~^~673~^0.034^6^0.006^~1~^~A~^^^1^0.021^0.057^5^0.019^0.049^~2, 3~^~07/01/2011~ -~18140~^~674~^5.994^6^0.547^~1~^~A~^^^1^3.410^7.025^5^4.588^7.401^~2, 3~^~07/01/2011~ -~18140~^~675~^3.999^6^0.340^~1~^~A~^^^1^3.576^5.693^5^3.124^4.873^~2, 3~^~07/01/2011~ -~18140~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~07/01/2011~ -~18140~^~685~^0.026^6^0.002^~1~^~A~^^^1^0.019^0.035^5^0.020^0.032^~2, 3~^~07/01/2011~ -~18140~^~687~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.008^0.010^~2, 3~^~07/01/2011~ -~18140~^~689~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.002^~2, 3~^~07/01/2011~ -~18140~^~693~^1.116^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~695~^0.197^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~18140~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~851~^0.474^6^0.052^~1~^~A~^^^1^0.354^0.710^5^0.341^0.607^~2, 3~^~07/01/2011~ -~18140~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18140~^~853~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~07/01/2011~ -~18140~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2011~ -~18141~^~312~^0.034^28^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~315~^0.095^28^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~404~^0.100^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~405~^0.070^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~406~^0.500^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~410~^0.350^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18141~^~415~^0.043^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~502~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~503~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~504~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~505~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~506~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~507~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~508~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~509~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~510~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~511~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~514~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~515~^0.751^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~516~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~517~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~518~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18141~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~606~^2.936^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18141~^~612~^0.022^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~613~^1.969^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~614~^0.934^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~617~^7.428^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~618~^5.902^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~619~^0.430^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~620~^0.022^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~626~^0.114^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18141~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18141~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18141~^~631~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~18141~^~645~^7.563^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~646~^6.378^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~ -~18141~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18142~^~312~^0.058^20^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~315~^0.280^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~404~^0.307^55^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~405~^0.188^55^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~406~^2.588^56^0.059^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~410~^0.242^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~415~^0.016^6^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~501~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~502~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~503~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~504~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~505~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~506~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~507~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~508~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~509~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~510~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~511~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~512~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~513~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~514~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~515~^1.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~516~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~517~^0.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~518~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18142~^~606~^2.469^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18142~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~612~^0.049^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18142~^~613~^1.277^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18142~^~614~^1.143^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18142~^~617~^5.494^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18142~^~618~^1.229^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~18142~^~619~^0.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18142~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18142~^~645~^5.496^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18142~^~646~^1.295^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18144~^~312~^0.072^37^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~315~^0.191^3^0.048^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~404~^0.231^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~405~^0.231^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~406~^2.315^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~410~^0.364^4^0.071^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~415~^0.077^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~501~^0.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~502~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~503~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~504~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~505~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~506~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~507~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~508~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~509~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~510~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~511~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~512~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~513~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~514~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~515~^1.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~516~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~517~^0.463^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~518~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18144~^~605~^0.231^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~606~^1.620^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~08/01/1992~ -~18144~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~08/01/1992~ -~18144~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1997~ -~18144~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~11/01/1997~ -~18144~^~612~^0.024^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~613~^1.298^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~614~^0.298^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~617~^0.690^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~618~^0.218^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~619~^0.013^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~626~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2012~ -~18144~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18144~^~645~^0.694^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18144~^~646~^0.231^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18146~^~312~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~315~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~404~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~405~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~406~^1.456^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~410~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~415~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~502~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~503~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~504~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~505~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~506~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~507~^0.103^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~508~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~509~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~510~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~511~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~512~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~513~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~514~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~515~^1.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~516~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~517~^0.473^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~518~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~606~^3.924^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~607~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~608~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~609~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~610~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~611~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~612~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~613~^2.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~614~^1.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~617~^6.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~618~^3.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~619~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~620~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~626~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~628~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~645~^6.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18146~^~646~^3.570^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~312~^0.020^3^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~315~^0.140^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~404~^0.028^10^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~405~^0.193^10^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~406~^0.195^10^0.049^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~410~^0.571^8^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~415~^0.052^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~501~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~502~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~503~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~504~^0.464^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~505~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~506~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~507~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~508~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~509~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~510~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~511~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~512~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~513~^0.252^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~514~^0.406^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~515~^1.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~516~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~517~^0.481^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~518~^0.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~606~^9.921^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~607~^0.354^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~608~^0.134^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~609~^0.119^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~610~^0.246^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~611~^0.207^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~612~^1.266^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~613~^4.775^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~614~^2.490^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~617~^8.119^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~618~^1.364^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~619~^0.223^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~620~^0.012^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18147~^~626~^0.346^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18147~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18147~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18147~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18147~^~645~^8.634^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18147~^~646~^1.602^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~312~^0.029^4^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~315~^0.120^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~404~^0.121^12^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~405~^0.263^12^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~406~^0.493^12^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~410~^0.612^10^0.056^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~415~^0.052^10^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~502~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~503~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~504~^0.468^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~505~^0.363^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~506~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~507~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~508~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~509~^0.220^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~510~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~511~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~512~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~513~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~514~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~515~^1.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~516~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~517~^0.519^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~518~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18148~^~606~^6.691^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~607~^0.282^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~608~^0.120^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~609~^0.096^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~610~^0.201^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~611~^0.181^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~612~^0.969^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~613~^3.109^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~614~^1.487^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~617~^4.145^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~618~^0.650^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~619~^0.157^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18148~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~626~^0.242^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~645~^4.519^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18148~^~646~^0.808^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~312~^0.224^10^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~315~^0.128^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~404~^0.255^16^0.034^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~405~^0.210^18^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~406~^1.721^17^0.234^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~410~^0.547^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~415~^0.035^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~501~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~502~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~503~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~504~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~505~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~506~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~507~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~508~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~509~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~510~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~511~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~512~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~513~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~514~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~515~^0.952^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~516~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~517~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~518~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18151~^~606~^4.235^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18151~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18151~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~612~^0.078^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~613~^2.176^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~614~^1.973^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~617~^8.946^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~618~^2.090^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~619~^0.159^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~620~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~626~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18151~^~628~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18151~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18151~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18151~^~645~^8.965^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18151~^~646~^2.259^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18152~^~312~^0.276^22^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~315~^0.351^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~404~^0.165^29^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~405~^0.162^29^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~406~^1.882^25^0.081^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~410~^0.131^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~415~^0.067^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~502~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~503~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~504~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~505~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~506~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~507~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~508~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~509~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~510~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~511~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~512~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~513~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~514~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~515~^0.952^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~516~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~517~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~518~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18152~^~606~^2.519^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~612~^0.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~613~^1.543^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~614~^0.935^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~617~^5.045^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~618~^5.549^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~619~^0.771^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~626~^0.046^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~628~^0.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~645~^5.158^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18152~^~646~^6.373^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18154~^~312~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~315~^0.587^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~404~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~405~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~406~^0.982^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~410~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~415~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~501~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~502~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~503~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~504~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~505~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~506~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~507~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~508~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~509~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~510~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~511~^0.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~512~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~513~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~514~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~515~^1.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~516~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~517~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~518~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~606~^7.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~612~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~613~^4.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~614~^3.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~617~^10.710^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~618~^8.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~619~^0.932^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~620~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~621~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~626~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~628~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~645~^10.839^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18154~^~646~^9.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~312~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~315~^0.170^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~404~^0.370^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~405~^0.335^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~406~^3.190^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~410~^0.488^8^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~415~^0.036^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~501~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~502~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~503~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~504~^0.471^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~505~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~506~^0.131^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~507~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~508~^0.299^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~509~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~510~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~511~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~512~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~513~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~514~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~515~^1.618^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~516~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~517~^0.566^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~518~^0.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18155~^~606~^11.051^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~607~^0.546^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~608~^0.323^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~609~^0.188^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~610~^0.422^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~611~^0.473^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~612~^1.700^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~613~^4.849^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~614~^2.179^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~617~^4.845^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~618~^0.681^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~619~^0.256^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~620~^0.023^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~621~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~626~^0.420^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~627~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~629~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18155~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18155~^~645~^5.522^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18155~^~646~^0.982^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18156~^~312~^0.291^7^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~315~^0.322^6^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~404~^0.226^38^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~405~^0.194^38^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~406~^1.203^38^0.048^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~410~^0.244^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18156~^~415~^0.031^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18156~^~501~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~502~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~503~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~504~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~505~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~506~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~507~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~508~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~509~^0.131^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~510~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~511~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~512~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~513~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~514~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~515~^1.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~516~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~517~^0.553^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~518~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~606~^1.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~613~^0.548^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~614~^0.545^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~617~^1.807^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~618~^0.453^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~619~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~626~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~645~^1.813^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18156~^~646~^0.466^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~312~^0.463^13^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~315~^0.696^9^0.045^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~404~^0.203^14^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~405~^0.266^17^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~406~^2.858^17^0.150^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~410~^0.381^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~415~^0.051^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~501~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~502~^0.220^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~503~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~504~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~505~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~508~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~509~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~510~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~511~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~512~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~513~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~514~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~515~^1.753^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~516~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~517~^0.577^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~518~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18157~^~606~^4.241^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~608~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~609~^0.128^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~610~^0.102^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~611~^0.760^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~612~^0.305^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~613~^1.796^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~614~^1.125^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~617~^4.807^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~618~^3.866^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~619~^0.268^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~620~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~626~^0.048^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18157~^~629~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18157~^~645~^4.865^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18157~^~646~^4.153^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18158~^~312~^0.204^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~315~^0.394^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~404~^0.263^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~405~^0.185^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~406~^1.982^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~410~^0.165^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~415~^0.022^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~501~^0.083^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~502~^0.174^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~503~^0.234^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~504~^0.418^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~505~^0.223^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~506~^0.103^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~507~^0.114^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~508~^0.282^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~509~^0.181^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~510~^0.274^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~511~^0.216^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~512~^0.115^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~513~^0.180^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~514~^0.279^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~515~^1.829^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~516~^0.190^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~517~^0.628^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~518~^0.302^0^^~1~^^^^^^^^^^^~05/01/2013~ -~18158~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18158~^~606~^5.962^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~612~^0.038^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~613~^3.235^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~614~^2.614^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~615~^0.059^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~617~^5.387^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~618~^5.310^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~619~^0.330^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~626~^0.035^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~ -~18158~^~645~^5.422^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~646~^5.641^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18158~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~653~^0.011^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~18158~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18158~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18159~^~312~^0.323^12^0.015^~1~^~A~^^^1^0.271^0.402^5^0.286^0.361^~2, 3~^~07/01/2014~ -~18159~^~315~^0.620^12^0.015^~1~^~A~^^^1^0.534^0.721^6^0.582^0.658^~2, 3~^~07/01/2014~ -~18159~^~404~^0.292^6^0.014^~1~^~A~^^^1^0.250^0.340^2^0.233^0.352^~2, 3~^~07/01/2014~ -~18159~^~405~^0.297^6^0.011^~1~^~A~^^^1^0.270^0.320^3^0.260^0.335^~2, 3~^~02/01/2013~ -~18159~^~406~^2.665^6^0.042^~1~^~A~^^^1^2.100^2.860^4^2.547^2.783^~2, 3~^~07/01/2014~ -~18159~^~415~^0.058^4^0.008^~1~^~A~^^^1^0.050^0.070^1^-0.038^0.153^~2, 3~^~02/01/2013~ -~18159~^~501~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~502~^0.135^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~503~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~504~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~505~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~506~^0.022^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~507~^0.101^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~508~^0.213^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~509~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~510~^0.202^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~511~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~512~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~513~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~514~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~515~^1.325^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~516~^0.168^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~517~^0.393^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~518~^0.213^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18159~^~605~^0.684^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~606~^8.091^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18159~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18159~^~609~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^2^0.001^0.005^~1, 2, 3~^~07/01/2014~ -~18159~^~610~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^3^0.008^0.011^~2, 3~^~02/01/2013~ -~18159~^~611~^0.011^6^0.002^~1~^~A~^^^1^0.005^0.018^2^0.004^0.017^~2, 3~^~07/01/2014~ -~18159~^~612~^0.064^6^0.001^~1~^~A~^^^1^0.046^0.108^2^0.058^0.069^~2, 3~^~07/01/2014~ -~18159~^~613~^4.451^6^0.071^~1~^~A~^^^1^3.383^7.169^2^4.150^4.752^~2, 3~^~07/01/2014~ -~18159~^~614~^3.308^6^0.078^~1~^~A~^^^1^2.918^3.546^2^2.990^3.626^~2, 3~^~07/01/2014~ -~18159~^~615~^0.118^6^0.004^~1~^~A~^^^1^0.103^0.139^2^0.102^0.134^~2, 3~^~07/01/2014~ -~18159~^~617~^6.188^6^0.126^~1~^~AS~^^^1^5.680^6.935^2^5.667^6.709^~2, 3~^~07/01/2014~ -~18159~^~618~^7.519^6^0.115^~1~^~AS~^^^1^7.082^8.438^2^7.069^7.968^~2, 3~^~07/01/2014~ -~18159~^~619~^0.877^6^0.026^~1~^~AS~^^^1^0.402^0.993^2^0.765^0.990^~2, 3~^~07/01/2014~ -~18159~^~620~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.012^2^0.008^0.010^~2, 3~^~07/01/2014~ -~18159~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~02/01/2013~ -~18159~^~624~^0.059^6^0.002^~1~^~A~^^^1^0.056^0.063^2^0.052^0.066^~2, 3~^~02/01/2013~ -~18159~^~626~^0.033^6^0.001^~1~^~AS~^^^1^0.029^0.041^2^0.030^0.036^~2, 3~^~07/01/2014~ -~18159~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~628~^0.033^6^0.002^~1~^~A~^^^1^0.018^0.039^4^0.029^0.038^~2, 3~^~07/01/2014~ -~18159~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18159~^~630~^0.007^6^0.000^~1~^~AS~^^^1^0.003^0.008^3^0.006^0.007^~2, 3~^~02/01/2013~ -~18159~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~645~^6.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~646~^8.417^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~652~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.012^3^0.008^0.010^~2, 3~^~07/01/2014~ -~18159~^~653~^0.034^6^0.001^~1~^~A~^^^1^0.031^0.038^2^0.031^0.037^~2, 3~^~07/01/2014~ -~18159~^~654~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.029^3^0.024^0.027^~2, 3~^~07/01/2014~ -~18159~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.004^2^0.002^0.004^~1, 2, 3~^~02/01/2013~ -~18159~^~663~^0.607^6^0.016^~1~^~A~^^^1^0.016^0.827^2^0.536^0.677^~2, 3~^~07/01/2014~ -~18159~^~664~^0.004^6^0.000^~1~^~A~^^^1^0.001^0.005^3^0.003^0.005^~1, 2, 3~^~02/01/2013~ -~18159~^~665~^0.071^6^0.005^~1~^~A~^^^1^0.061^0.082^2^0.052^0.090^~2, 3~^~02/01/2013~ -~18159~^~670~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.018^2^0.008^0.019^~2, 3~^~07/01/2014~ -~18159~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^2^0.000^0.004^~1, 2, 3~^~02/01/2013~ -~18159~^~672~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.007^~2, 3~^~02/01/2013~ -~18159~^~673~^0.030^6^0.001^~1~^~A~^^^1^0.025^0.040^2^0.027^0.033^~2, 3~^~07/01/2014~ -~18159~^~674~^5.581^6^0.127^~1~^~A~^^^1^4.860^6.919^2^5.061^6.101^~2, 3~^~07/01/2014~ -~18159~^~675~^7.434^6^0.110^~1~^~A~^^^1^7.003^8.354^2^7.009^7.859^~2, 3~^~07/01/2014~ -~18159~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.004^2^0.002^0.004^~1, 2, 3~^~02/01/2013~ -~18159~^~685~^0.035^6^0.001^~1~^~A~^^^1^0.017^0.040^3^0.030^0.040^~2, 3~^~07/01/2014~ -~18159~^~687~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.011^^^^~2, 3~^~02/01/2013~ -~18159~^~689~^0.005^6^0.000^~1~^~AS~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~02/01/2013~ -~18159~^~693~^0.613^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18159~^~695~^0.071^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18159~^~697~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~02/01/2013~ -~18159~^~851~^0.842^6^0.025^~1~^~A~^^^1^0.382^0.955^2^0.736^0.949^~2, 3~^~07/01/2014~ -~18159~^~852~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^3^0.003^0.007^~2, 3~^~02/01/2013~ -~18159~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~04/01/2008~ -~18159~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18159~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~312~^0.227^6^0.004^~1~^~A~^^^1^0.216^0.244^5^0.217^0.237^~2, 3~^~02/01/2013~ -~18160~^~315~^0.423^6^0.008^~1~^~A~^^^1^0.405^0.451^5^0.402^0.444^~2, 3~^~02/01/2013~ -~18160~^~404~^0.140^3^0.006^~1~^~A~^^^1^0.130^0.150^2^0.115^0.165^~2, 3~^~02/01/2013~ -~18160~^~405~^0.283^3^0.015^~1~^~A~^^^1^0.260^0.310^2^0.221^0.346^~2, 3~^~02/01/2013~ -~18160~^~406~^2.060^3^0.061^~1~^~A~^^^1^1.950^2.160^2^1.798^2.322^~2, 3~^~02/01/2013~ -~18160~^~410~^0.360^2^^~1~^~A~^^^1^0.290^0.430^1^^^^~02/01/2013~ -~18160~^~415~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~02/01/2013~ -~18160~^~501~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~502~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~503~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~504~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~505~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~507~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~508~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~509~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~510~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~511~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~512~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~513~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~514~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~515~^1.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~516~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~517~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~518~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18160~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~606~^9.751^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~609~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~02/01/2013~ -~18160~^~610~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~02/01/2013~ -~18160~^~611~^0.031^3^0.000^~1~^~A~^^^1^0.031^0.032^2^0.030^0.033^~2, 3~^~02/01/2013~ -~18160~^~612~^0.140^3^0.001^~1~^~A~^^^1^0.139^0.141^2^0.137^0.143^~2, 3~^~02/01/2013~ -~18160~^~613~^7.287^3^0.024^~1~^~A~^^^1^7.251^7.332^2^7.185^7.389^~2, 3~^~02/01/2013~ -~18160~^~614~^2.110^3^0.045^~1~^~A~^^^1^2.041^2.194^2^1.917^2.303^~2, 3~^~02/01/2013~ -~18160~^~615~^0.099^3^0.001^~1~^~A~^^^1^0.098^0.102^2^0.093^0.105^~2, 3~^~04/01/2008~ -~18160~^~617~^6.905^3^0.030^~1~^~AS~^^^1^6.856^6.959^2^6.777^7.033^~2, 3~^~02/01/2013~ -~18160~^~618~^1.720^3^0.008^~1~^~AS~^^^1^1.704^1.729^2^1.685^1.754^~2, 3~^~02/01/2013~ -~18160~^~619~^0.057^3^0.001^~1~^~AS~^^^1^0.055^0.060^2^0.051^0.064^~2, 3~^~02/01/2013~ -~18160~^~620~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~02/01/2013~ -~18160~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18160~^~624~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~02/01/2013~ -~18160~^~626~^0.032^3^0.001^~1~^~AS~^^^1^0.031^0.033^2^0.029^0.034^~2, 3~^~02/01/2013~ -~18160~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18160~^~628~^0.028^3^0.000^~1~^~A~^^^1^0.028^0.029^2^0.027^0.030^~2, 3~^~02/01/2013~ -~18160~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2008~ -~18160~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2008~ -~18160~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18160~^~645~^6.973^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~646~^1.786^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~652~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~02/01/2013~ -~18160~^~653~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.024^^^^~2, 3~^~02/01/2013~ -~18160~^~654~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~02/01/2013~ -~18160~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2008~ -~18160~^~663~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~02/01/2013~ -~18160~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~665~^0.045^3^0.009^~1~^~A~^^^1^0.028^0.058^2^0.007^0.083^~2, 3~^~04/01/2008~ -~18160~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~02/01/2013~ -~18160~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~02/01/2013~ -~18160~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2013~ -~18160~^~673~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.033^2^0.029^0.034^~2, 3~^~02/01/2013~ -~18160~^~674~^6.895^3^0.029^~1~^~A~^^^1^6.847^6.948^2^6.769^7.021^~2, 3~^~02/01/2013~ -~18160~^~675~^1.670^3^0.012^~1~^~A~^^^1^1.651^1.693^2^1.617^1.723^~2, 3~^~02/01/2013~ -~18160~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~685~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~02/01/2013~ -~18160~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~02/01/2013~ -~18160~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.007^2^0.000^0.011^~2, 3~^~02/01/2013~ -~18160~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18160~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18160~^~697~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~02/01/2013~ -~18160~^~851~^0.051^3^0.001^~1~^~A~^^^1^0.049^0.053^2^0.045^0.056^~2, 3~^~02/01/2013~ -~18160~^~852~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.011^~2, 3~^~02/01/2013~ -~18160~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18160~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18160~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18161~^~312~^0.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~315~^0.363^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~404~^0.195^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~405~^0.205^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~406~^1.990^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18161~^~410~^0.171^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~415~^0.017^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~502~^0.141^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~503~^0.189^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~504~^0.337^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~505~^0.184^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~506~^0.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~507~^0.084^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~508~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~509~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~510~^0.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~511~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~512~^0.089^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~513~^0.143^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~514~^0.232^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~515~^1.397^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~516~^0.146^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~517~^0.484^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~518~^0.235^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18161~^~606~^8.316^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~611~^0.011^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~612~^0.125^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~613~^3.996^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~614~^4.116^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~617~^13.061^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~618~^2.486^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~619~^0.134^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~626~^0.018^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~645~^13.077^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18161~^~646~^2.620^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18163~^~312~^0.180^5^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~315~^0.373^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~404~^0.187^15^0.052^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~405~^0.191^19^0.033^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~406~^1.975^19^0.126^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~410~^0.308^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~415~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~502~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~503~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~504~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~505~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~507~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~508~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~509~^0.146^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~510~^0.220^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~511~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~512~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~513~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~514~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~515~^1.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~516~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~517~^0.409^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~518~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18163~^~605~^2.470^2^^~9~^~MC~^^^1^0.510^4.430^1^^^^~04/01/2012~ -~18163~^~606~^8.390^2^^~9~^~MC~^^^1^8.050^8.730^1^^^^~04/01/2012~ -~18163~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18163~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18163~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~612~^0.100^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~613~^3.298^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~614~^3.267^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~617~^10.378^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~618~^2.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~619~^0.108^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~620~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~621~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~626~^0.035^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~629~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18163~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18163~^~645~^10.414^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18163~^~646~^2.172^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18164~^~312~^0.200^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~315~^0.473^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~404~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~405~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~406~^1.975^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~410~^0.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~415~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~501~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~502~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~503~^0.212^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~504~^0.365^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~505~^0.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~506~^0.099^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~507~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~508~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~509~^0.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~510~^0.244^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~511~^0.202^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~512~^0.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~513~^0.176^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~514~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~515~^1.336^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~516~^0.159^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~517~^0.454^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~518~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~606~^7.759^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~612~^0.086^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~613~^3.769^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~614~^3.900^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~617~^11.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~618~^2.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~619~^0.111^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~620~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~621~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~626~^0.043^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~628~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~645~^11.258^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18164~^~646~^2.319^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18165~^~312~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~315~^0.663^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~404~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~405~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~406~^1.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~410~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~415~^0.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~501~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~502~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~503~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~504~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~505~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~506~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~508~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~509~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~510~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~511~^0.377^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~512~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~513~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~514~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~515~^1.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~516~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~517~^0.399^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~518~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~606~^8.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~612~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~613~^4.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~614~^3.582^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~617~^10.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~618~^7.565^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~619~^0.829^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~620~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~626~^0.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~645~^10.377^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18165~^~646~^8.410^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18166~^~312~^0.334^12^0.007^~1~^~A~^^^1^0.229^0.366^6^0.316^0.352^~2, 3~^~07/01/2014~ -~18166~^~315~^0.700^12^0.019^~1~^~A~^^^1^0.567^0.850^5^0.651^0.749^~2, 3~^~04/01/2013~ -~18166~^~404~^0.197^6^0.013^~1~^~A~^^^1^0.170^0.250^2^0.141^0.253^~2, 3~^~04/01/2013~ -~18166~^~405~^0.238^6^0.006^~1~^~A~^^^1^0.160^0.250^3^0.219^0.258^~2, 3~^~04/01/2013~ -~18166~^~406~^2.603^6^0.062^~1~^~A~^^^1^1.660^2.760^3^2.385^2.821^~2, 3~^~07/01/2014~ -~18166~^~410~^0.271^4^0.009^~1~^~A~^^^1^0.260^0.290^1^0.155^0.388^~2, 3~^~04/01/2013~ -~18166~^~415~^0.023^6^0.007^~1~^~A~^^^1^0.015^0.037^2^-0.006^0.051^~1, 2, 3~^~04/01/2013~ -~18166~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~502~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~503~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~504~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~505~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~506~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~507~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~508~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~509~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~510~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~511~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~512~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~513~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~514~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~515~^1.460^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~516~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~517~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~518~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18166~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~606~^5.649^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~609~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.003^0.009^~1, 2, 3~^~04/01/2013~ -~18166~^~610~^0.011^9^0.001^~1~^~A~^^^1^0.008^0.014^2^0.006^0.017^~2, 3~^~04/01/2013~ -~18166~^~611~^0.045^9^0.003^~1~^~A~^^^1^0.009^0.052^2^0.035^0.055^~2, 3~^~04/01/2013~ -~18166~^~612~^0.111^9^0.002^~1~^~A~^^^1^0.044^0.153^7^0.106^0.115^~2, 3~^~07/01/2014~ -~18166~^~613~^4.449^9^0.053^~1~^~A~^^^1^3.253^6.424^6^4.318^4.579^~2, 3~^~07/01/2014~ -~18166~^~614~^0.857^9^0.012^~1~^~A~^^^1^0.817^1.878^6^0.827^0.886^~2, 3~^~07/01/2014~ -~18166~^~615~^0.092^9^0.001^~1~^~A~^^^1^0.064^0.095^2^0.090^0.094^~2, 3~^~04/01/2013~ -~18166~^~617~^9.111^9^0.077^~1~^~AS~^^^1^4.331^9.506^6^8.921^9.301^~2, 3~^~07/01/2014~ -~18166~^~618~^3.253^9^0.066^~1~^~AS~^^^1^2.359^7.098^7^3.096^3.410^~2, 3~^~07/01/2014~ -~18166~^~619~^0.298^9^0.008^~1~^~AS~^^^1^0.161^0.765^7^0.279^0.316^~2, 3~^~07/01/2014~ -~18166~^~620~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.007^2^0.003^0.006^~2, 3~^~04/01/2013~ -~18166~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18166~^~624~^0.036^9^0.001^~1~^~A~^^^1^0.016^0.053^3^0.033^0.039^~2, 3~^~04/01/2013~ -~18166~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~04/01/2008~ -~18166~^~626~^0.036^9^0.000^~1~^~AS~^^^1^0.017^0.037^5^0.035^0.036^~2, 3~^~04/01/2013~ -~18166~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~628~^0.120^9^0.002^~1~^~A~^^^1^0.031^0.129^3^0.115^0.125^~2, 3~^~07/01/2014~ -~18166~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~630~^0.003^9^0.002^~1~^~AS~^^^1^0.000^0.008^2^-0.005^0.011^~2, 3~^~04/01/2008~ -~18166~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18166~^~645~^9.278^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~646~^3.561^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~652~^0.008^9^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.012^~2, 3~^~04/01/2013~ -~18166~^~653~^0.015^9^0.001^~1~^~A~^^^1^0.013^0.022^2^0.012^0.017^~2, 3~^~04/01/2013~ -~18166~^~654~^0.024^9^0.000^~1~^~A~^^^1^0.014^0.024^5^0.023^0.024^~2, 3~^~07/01/2014~ -~18166~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~664~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~18166~^~665~^0.065^9^0.012^~1~^~A~^^^1^0.035^0.297^2^0.020^0.110^~2, 3~^~04/01/2013~ -~18166~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18166~^~672~^0.006^9^0.001^~1~^~A~^^^1^0.002^0.007^2^0.003^0.008^~1, 2, 3~^~04/01/2008~ -~18166~^~673~^0.036^9^0.000^~1~^~A~^^^1^0.017^0.037^5^0.035^0.036^~2, 3~^~04/01/2013~ -~18166~^~676~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.002^0.007^~1, 2, 3~^~04/01/2013~ -~18166~^~685~^0.016^9^0.001^~1~^~A~^^^1^0.014^0.061^5^0.014^0.019^~2, 3~^~07/01/2014~ -~18166~^~687~^0.008^9^0.000^~1~^~A~^^^1^0.005^0.008^5^0.008^0.008^~2, 3~^~04/01/2013~ -~18166~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.000^~2, 3~^~04/01/2013~ -~18166~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18166~^~695~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18166~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18166~^~851~^0.281^9^0.007^~1~^~A~^^^1^0.147^0.704^7^0.264^0.298^~2, 3~^~07/01/2014~ -~18166~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.000^~1, 2, 3~^~04/01/2008~ -~18166~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18166~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~18166~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18167~^~312~^0.315^10^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~315~^0.372^10^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~404~^0.095^10^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~405~^0.204^11^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~406~^1.373^11^0.067^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~410~^0.178^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~415~^0.044^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~501~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~502~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~503~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~504~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~505~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~506~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~507~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~508~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~509~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~510~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~511~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~512~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~513~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~514~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~515~^0.793^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~516~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~517~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~518~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18167~^~606~^7.426^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~612~^0.124^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~613~^3.714^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~614~^3.571^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~617~^14.582^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~618~^2.855^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~619~^0.146^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18167~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18167~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18167~^~645~^14.584^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18167~^~646~^3.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18168~^~312~^0.337^2^^~1~^~A~^^^1^0.331^0.343^1^^^^~03/01/2004~ -~18168~^~315~^0.497^2^^~1~^~A~^^^1^0.480^0.514^1^^^^~03/01/2004~ -~18168~^~404~^0.115^2^^~1~^~A~^^^1^0.109^0.122^1^^^^~03/01/2004~ -~18168~^~405~^0.120^2^^~1~^~A~^^^1^0.120^0.121^1^^^^~03/01/2004~ -~18168~^~406~^1.937^2^^~1~^~A~^^^1^1.920^1.954^1^^^^~03/01/2004~ -~18168~^~410~^0.142^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2004~ -~18168~^~606~^5.454^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~18168~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~612~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~613~^2.774^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~614~^2.436^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~615~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~617~^16.042^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~18168~^~618~^2.418^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~18168~^~619~^0.053^0^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2008~ -~18168~^~624~^0.095^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~18168~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~628~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~ -~18168~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~645~^16.076^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~18168~^~646~^2.471^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~18168~^~653~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~654~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~663~^7.743^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~666~^0.750^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~670~^0.000^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~671~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~674~^8.300^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~675~^1.668^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18168~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~ -~18168~^~687~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~18168~^~693~^7.743^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18168~^~695~^0.750^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18168~^~851~^0.053^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~18170~^~312~^0.147^25^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~315~^0.343^21^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~404~^0.158^26^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~405~^0.217^26^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~406~^1.874^32^0.184^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~410~^0.364^12^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~415~^0.075^10^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~502~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~503~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~504~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~505~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~506~^0.053^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~507~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~509~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~510~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~511~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~512~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~513~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~514~^0.387^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~515~^0.914^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~516~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~517~^0.347^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~518~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18170~^~606~^1.123^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~607~^0.002^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18170~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18170~^~612~^0.013^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~613~^0.747^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~614~^0.355^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~617~^2.966^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~618~^2.583^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~619~^0.182^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~626~^0.029^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18170~^~645~^3.003^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18170~^~646~^2.772^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18171~^~312~^0.060^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~315~^0.190^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~404~^0.182^8^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~405~^0.130^8^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~406~^1.840^8^0.117^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~410~^0.297^8^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~415~^0.013^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~501~^0.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~502~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~503~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~504~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~505~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~506~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~507~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~508~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~510~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~511~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~512~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~513~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~514~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~515~^1.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~516~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~517~^0.457^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~518~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~606~^0.669^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18171~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18171~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~612~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~613~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~614~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~617~^1.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~618~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~619~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~620~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~621~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~626~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18171~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18171~^~645~^1.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18171~^~646~^0.466^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~312~^0.305^22^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~315~^1.555^18^0.116^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~404~^0.200^21^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~405~^0.293^24^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~406~^3.235^24^0.097^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~410~^0.380^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~415~^0.098^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~502~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~503~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~504~^0.380^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~505~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~507~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~508~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~509~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~510~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~511~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~512~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~513~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~514~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~515~^1.825^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~516~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~517~^0.614^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~518~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18172~^~606~^2.451^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18172~^~610~^0.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18172~^~611~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~612~^0.048^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~613~^1.279^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~614~^1.111^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~617~^5.363^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~618~^1.298^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~619~^0.073^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18172~^~645~^5.365^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18172~^~646~^1.372^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18173~^~312~^0.170^16^0.002^~1~^~A~^^^1^0.136^0.214^8^0.167^0.174^~2, 3~^~06/01/2014~ -~18173~^~315~^1.019^16^0.045^~1~^~A~^^^1^0.822^1.370^1^0.545^1.493^~2, 3~^~06/01/2014~ -~18173~^~404~^0.265^9^0.007^~1~^~A~^^^1^0.220^0.400^3^0.244^0.286^~2, 3~^~06/01/2014~ -~18173~^~405~^0.317^9^0.003^~1~^~A~^^^1^0.230^0.360^3^0.306^0.329^~2, 3~^~06/01/2014~ -~18173~^~406~^4.439^9^0.094^~1~^~A~^^^1^3.750^4.810^2^4.045^4.832^~2, 3~^~06/01/2014~ -~18173~^~410~^0.420^6^0.005^~1~^~A~^^^1^0.400^0.470^3^0.400^0.439^~2, 3~^~06/01/2014~ -~18173~^~415~^0.156^9^0.001^~1~^~A~^^^1^0.140^0.170^3^0.153^0.158^~2, 3~^~06/01/2014~ -~18173~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~606~^1.633^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~607~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.007^2^-0.001^0.009^~1, 2, 3~^~06/01/2014~ -~18173~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~609~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.003^~1, 2, 3~^~06/01/2014~ -~18173~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~611~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.005^2^0.000^0.004^~1, 2, 3~^~06/01/2014~ -~18173~^~612~^0.010^9^0.000^~1~^~A~^^^1^0.007^0.027^3^0.010^0.011^~2, 3~^~06/01/2014~ -~18173~^~613~^1.058^9^0.002^~1~^~A~^^^1^0.501^1.467^3^1.052^1.065^~2, 3~^~06/01/2014~ -~18173~^~614~^0.465^9^0.005^~1~^~A~^^^1^0.164^1.227^4^0.451^0.479^~2, 3~^~06/01/2014~ -~18173~^~615~^0.034^9^0.000^~1~^~A~^^^1^0.031^0.055^3^0.033^0.035^~2, 3~^~06/01/2014~ -~18173~^~617~^2.459^9^0.005^~1~^~AS~^^^1^2.206^5.615^4^2.445^2.472^~2, 3~^~06/01/2014~ -~18173~^~618~^4.757^9^0.026^~1~^~AS~^^^1^2.219^5.112^2^4.649^4.865^~2, 3~^~06/01/2014~ -~18173~^~619~^0.622^9^0.002^~1~^~AS~^^^1^0.546^0.861^3^0.615^0.630^~2, 3~^~06/01/2014~ -~18173~^~620~^0.005^9^0.000^~1~^~A~^^^1^0.003^0.005^2^0.005^0.005^~2, 3~^~06/01/2014~ -~18173~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~624~^0.031^9^0.000^~1~^~A~^^^1^0.028^0.034^2^0.030^0.032^~2, 3~^~06/01/2014~ -~18173~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~626~^0.009^9^0.000^~1~^~AS~^^^1^0.008^0.020^2^0.008^0.010^~2, 3~^~06/01/2014~ -~18173~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~628~^0.035^9^0.000^~1~^~A~^^^1^0.024^0.144^3^0.034^0.036^~2, 3~^~06/01/2014~ -~18173~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~630~^0.001^9^0.001^~1~^~AS~^^^1^0.000^0.009^2^-0.001^0.003^~2, 3~^~06/01/2014~ -~18173~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~645~^2.509^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~646~^5.388^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~652~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.006^2^0.003^0.006^~2, 3~^~06/01/2014~ -~18173~^~653~^0.009^9^0.000^~1~^~A~^^^1^0.005^0.013^2^0.008^0.009^~2, 3~^~06/01/2014~ -~18173~^~654~^0.013^9^0.000^~1~^~A~^^^1^0.012^0.019^3^0.013^0.014^~2, 3~^~06/01/2014~ -~18173~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~663~^0.039^9^0.000^~1~^~A~^^^1^0.003^0.447^3^0.038^0.040^~2, 3~^~06/01/2014~ -~18173~^~664~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.003^~1, 2, 3~^~06/01/2014~ -~18173~^~665~^0.016^9^0.000^~1~^~A~^^^1^0.005^0.026^3^0.015^0.017^~2, 3~^~06/01/2014~ -~18173~^~670~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.007^2^0.005^0.007^~2, 3~^~06/01/2014~ -~18173~^~671~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.016^1^0.000^0.001^~1, 2, 3~^~06/01/2014~ -~18173~^~672~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.007^^^^~2, 3~^~06/01/2014~ -~18173~^~673~^0.009^9^0.000^~1~^~A~^^^1^0.008^0.020^2^0.008^0.010^~2, 3~^~06/01/2014~ -~18173~^~674~^2.420^9^0.005^~1~^~A~^^^1^2.202^5.609^4^2.407^2.433^~2, 3~^~06/01/2014~ -~18173~^~675~^4.735^9^0.026^~1~^~A~^^^1^2.210^5.090^2^4.626^4.844^~2, 3~^~06/01/2014~ -~18173~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.009^1^-0.001^0.001^~1, 2, 3~^~06/01/2014~ -~18173~^~685~^0.024^9^0.001^~1~^~A~^^^1^0.017^0.032^3^0.022^0.025^~2, 3~^~06/01/2014~ -~18173~^~687~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.006^2^0.004^0.005^~2, 3~^~06/01/2014~ -~18173~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2014~ -~18173~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18173~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~851~^0.599^9^0.002^~1~^~A~^^^1^0.529^0.836^3^0.593^0.604^~2, 3~^~06/01/2014~ -~18173~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18173~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~18174~^~312~^0.194^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~315~^0.464^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~404~^0.270^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~405~^0.150^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~406~^1.700^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~410~^0.377^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~415~^0.064^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~501~^0.049^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~502~^0.126^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~503~^0.142^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~504~^0.264^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~505~^0.131^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~506~^0.063^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~507~^0.071^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~508~^0.178^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~509~^0.118^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~510~^0.170^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~511~^0.154^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~512~^0.079^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~513~^0.134^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~514~^0.220^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~515~^1.058^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~516~^0.131^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~517~^0.362^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~518~^0.182^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~605~^0.550^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~606~^17.200^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~607~^0.004^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~608~^0.043^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~609~^0.685^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~610~^0.769^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~611~^9.741^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~612~^3.406^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~613~^1.832^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~614~^0.704^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~617~^2.689^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~618~^4.506^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~619~^0.053^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~08/01/1992~ -~18174~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~626~^0.002^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/1994~ -~18174~^~645~^2.700^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~646~^4.900^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~ -~18174~^~652~^0.001^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~689~^0.001^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18174~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~ -~18175~^~312~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~315~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~404~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~405~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~406~^2.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~410~^1.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~415~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~501~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~502~^0.467^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~503~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~504~^0.861^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~505~^0.679^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~506~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~507~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~508~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~509~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~510~^0.579^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~511~^0.610^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~512~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~513~^0.502^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~514~^0.888^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~515~^1.920^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~516~^0.346^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~517~^0.625^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~518~^0.761^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18175~^~606~^3.069^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~609~^0.003^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~610~^0.003^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~611~^0.003^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~612~^0.034^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~613~^2.209^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~614~^0.771^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~617~^3.422^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~618~^1.206^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~619~^0.038^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~620~^0.139^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~621~^0.036^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~626~^0.293^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~628~^0.027^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~629~^0.004^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~630~^0.003^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~645~^3.754^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18175~^~646~^1.422^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~18176~^~312~^0.262^18^0.039^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~315~^0.285^17^0.037^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~404~^0.093^17^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~405~^0.208^20^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~406~^0.784^17^0.132^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~410~^0.476^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~415~^0.062^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~501~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~502~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~503~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~504~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~505~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~506~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~507~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~508~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~509~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~510~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~511~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~512~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~513~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~514~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~515~^0.742^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~516~^0.487^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~517~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~518~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18176~^~606~^4.722^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~607~^0.004^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18176~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18176~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18176~^~612~^0.086^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~613~^2.367^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~614~^2.249^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~617~^9.341^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~618~^1.847^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~619~^0.096^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18176~^~645~^9.345^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18176~^~646~^1.943^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18177~^~312~^0.373^7^0.043^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~315~^1.257^9^0.269^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~404~^0.355^13^0.064^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~405~^0.264^14^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~406~^3.031^13^0.162^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~410~^0.411^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~415~^0.104^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~502~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~503~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~504~^0.377^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~505~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~507~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~508~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~509~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~510~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~511~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~512~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~513~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~514~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~515~^1.824^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~516~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~517~^0.614^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~518~^0.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18177~^~606~^3.212^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18177~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~612~^0.062^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~613~^1.666^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~614~^1.480^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~617~^7.128^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~618~^1.641^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~619~^0.088^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18177~^~645~^7.130^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18177~^~646~^1.729^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~312~^0.134^16^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~315~^0.839^13^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~404~^0.267^26^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~405~^0.230^26^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~406~^2.227^28^0.097^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~410~^0.386^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~415~^0.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~502~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~503~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~504~^0.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~505~^0.237^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~506~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~507~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~508~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~509~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~510~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~511~^0.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~512~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~513~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~514~^0.452^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~515~^1.618^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~516~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~517~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~518~^0.317^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18178~^~606~^4.519^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~611~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~612~^0.086^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~613~^2.383^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~614~^2.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~617~^10.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~618~^2.413^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~619~^0.129^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18178~^~645~^10.025^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18178~^~646~^2.543^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~312~^0.550^3^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~315~^0.421^3^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~404~^0.186^4^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~405~^0.228^4^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~406~^1.823^4^0.159^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~410~^0.461^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~415~^0.085^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~501~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~502~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~503~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~504~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~505~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~506~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~507~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~508~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~509~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~510~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~511~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~512~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~513~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~514~^0.489^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~515~^1.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~516~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~517~^0.416^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~518~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18179~^~606~^3.630^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18179~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18179~^~611~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~612~^0.068^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~613~^1.956^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~614~^1.581^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~617~^7.981^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~618~^2.093^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~619~^0.109^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~626~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18179~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18179~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~645~^7.988^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18179~^~646~^2.204^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18180~^~312~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~315~^1.230^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~404~^0.142^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~405~^0.140^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~406~^1.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~410~^0.457^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~415~^0.042^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~501~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~502~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~503~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~504~^0.486^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~505~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~506~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~507~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~508~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~509~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~510~^0.332^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~511~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~512~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~513~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~514~^0.473^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~515~^1.662^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~516~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~517~^0.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~518~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18180~^~606~^4.755^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~611~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~612~^0.090^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~613~^2.529^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~614~^2.107^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~617~^10.563^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~618~^2.656^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~619~^0.136^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~626~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~645~^10.567^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18180~^~646~^2.792^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~312~^0.110^16^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~315~^0.765^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~404~^0.234^22^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~405~^0.148^25^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~406~^1.865^23^0.123^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~410~^0.372^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~415~^0.041^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~501~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~502~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~503~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~504~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~505~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~506~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~507~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~508~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~509~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~510~^0.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~511~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~512~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~513~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~514~^0.451^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~515~^1.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~516~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~517~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~518~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18182~^~606~^4.751^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18182~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18182~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18182~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18182~^~611~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~612~^0.090^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~613~^2.509^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~614~^2.134^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~617~^10.520^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~618~^2.458^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~619~^0.126^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~620~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18182~^~626~^0.010^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18182~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18182~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18182~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18182~^~645~^10.531^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18182~^~646~^2.592^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18183~^~312~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~315~^0.953^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~404~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~405~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~406~^1.865^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~410~^0.210^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~415~^0.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~501~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~502~^0.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~503~^0.252^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~504~^0.460^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~505~^0.286^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~506~^0.136^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~507~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~508~^0.309^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~509~^0.217^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~510~^0.323^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~511~^0.371^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~512~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~513~^0.284^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~514~^0.501^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~515~^1.340^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~516~^0.268^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~517~^0.387^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~518~^0.339^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~606~^5.339^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~612~^0.102^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~613~^2.871^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~614~^2.365^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~617~^11.713^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~618~^2.818^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~619~^0.152^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~620~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~621~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~626~^0.015^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~628~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~645~^11.729^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18183~^~646~^2.976^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18184~^~312~^0.139^14^0.003^~1~^~A~^^^1^0.113^0.158^13^0.133^0.146^~2, 3~^~01/01/2017~ -~18184~^~315~^0.802^14^0.030^~1~^~A~^^^1^0.608^0.982^13^0.738^0.866^~2, 3~^~01/01/2017~ -~18184~^~404~^0.281^8^0.032^~1~^~A~^^^1^0.190^0.410^7^0.206^0.356^~2, 3~^~01/01/2017~ -~18184~^~405~^0.216^8^0.009^~1~^~A~^^^1^0.170^0.250^7^0.194^0.239^~2, 3~^~01/01/2017~ -~18184~^~406~^2.071^8^0.126^~1~^~A~^^^1^1.780^2.850^7^1.774^2.368^~2, 3~^~01/01/2017~ -~18184~^~410~^0.397^3^0.003^~1~^~A~^^^1^0.390^0.400^2^0.382^0.411^~2, 3~^~01/01/2017~ -~18184~^~415~^0.068^5^0.004^~1~^~A~^^^1^0.060^0.080^4^0.058^0.078^~2, 3~^~01/01/2017~ -~18184~^~605~^0.043^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~606~^5.439^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~607~^0.011^9^0.000^~1~^~A~^^^1^0.009^0.012^8^0.010^0.012^~2, 3~^~01/01/2017~ -~18184~^~608~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~01/01/2017~ -~18184~^~609~^0.056^9^0.021^~1~^~A~^^^1^0.003^0.159^8^0.007^0.105^~2, 3~^~01/01/2017~ -~18184~^~610~^0.023^9^0.006^~1~^~A~^^^1^0.003^0.054^8^0.008^0.038^~2, 3~^~01/01/2017~ -~18184~^~611~^0.053^9^0.033^~1~^~A~^^^1^0.002^0.296^8^-0.023^0.129^~1, 2, 3~^~01/01/2017~ -~18184~^~612~^0.074^9^0.015^~1~^~A~^^^1^0.021^0.142^8^0.039^0.108^~2, 3~^~01/01/2017~ -~18184~^~613~^3.308^9^0.641^~1~^~A~^^^1^1.664^5.639^8^1.830^4.787^~2, 3~^~01/01/2017~ -~18184~^~614~^1.776^9^0.453^~1~^~A~^^^1^0.309^3.455^8^0.732^2.821^~2, 3~^~01/01/2017~ -~18184~^~615~^0.054^9^0.003^~1~^~A~^^^1^0.046^0.070^8^0.047^0.062^~2, 3~^~01/01/2017~ -~18184~^~617~^4.180^9^0.491^~1~^~AS~^^^1^2.567^7.077^8^3.048^5.313^~2, 3~^~01/01/2017~ -~18184~^~618~^5.330^9^0.672^~1~^~AS~^^^1^1.788^7.699^8^3.780^6.881^~2, 3~^~01/01/2017~ -~18184~^~619~^0.745^9^0.090^~1~^~AS~^^^1^0.055^0.943^8^0.539^0.952^~2, 3~^~01/01/2017~ -~18184~^~620~^0.007^9^0.001^~1~^~A~^^^1^0.004^0.009^8^0.006^0.008^~2, 3~^~01/01/2017~ -~18184~^~621~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^8^0.000^0.002^~1, 2, 3~^~01/01/2017~ -~18184~^~624~^0.042^9^0.003^~1~^~A~^^^1^0.030^0.057^8^0.036^0.049^~2, 3~^~01/01/2017~ -~18184~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~626~^0.019^9^0.001^~1~^~AS~^^^1^0.015^0.022^8^0.017^0.021^~2, 3~^~01/01/2017~ -~18184~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/1992~ -~18184~^~628~^0.069^9^0.007^~1~^~A~^^^1^0.038^0.113^8^0.054^0.084^~2, 3~^~01/01/2017~ -~18184~^~629~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.006^8^0.004^0.005^~2, 3~^~01/01/2017~ -~18184~^~630~^0.006^9^0.001^~1~^~AS~^^^1^0.002^0.008^8^0.005^0.007^~2, 3~^~01/01/2017~ -~18184~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/1992~ -~18184~^~645~^4.283^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~646~^6.092^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~652~^0.006^9^0.001^~1~^~A~^^^1^0.005^0.009^8^0.005^0.008^~2, 3~^~01/01/2017~ -~18184~^~653~^0.016^9^0.001^~1~^~A~^^^1^0.008^0.020^8^0.013^0.019^~2, 3~^~01/01/2017~ -~18184~^~654~^0.018^9^0.001^~1~^~A~^^^1^0.015^0.024^8^0.016^0.021^~2, 3~^~01/01/2017~ -~18184~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~01/01/2017~ -~18184~^~663~^0.020^9^0.003^~1~^~A~^^^1^0.005^0.033^8^0.013^0.026^~2, 3~^~01/01/2017~ -~18184~^~664~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^8^0.000^0.002^~1, 2, 3~^~01/01/2017~ -~18184~^~665~^0.022^9^0.002^~1~^~A~^^^1^0.009^0.027^8^0.017^0.026^~2, 3~^~01/01/2017~ -~18184~^~670~^0.007^9^0.001^~1~^~A~^^^1^0.003^0.011^8^0.005^0.009^~2, 3~^~01/01/2017~ -~18184~^~671~^0.003^9^0.001^~1~^~A~^^^1^0.001^0.011^8^0.000^0.005^~1, 2, 3~^~01/01/2017~ -~18184~^~672~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.005^8^0.003^0.005^~1, 2, 3~^~01/01/2017~ -~18184~^~673~^0.019^9^0.001^~1~^~A~^^^1^0.015^0.022^8^0.017^0.020^~2, 3~^~01/01/2017~ -~18184~^~674~^4.160^9^0.493^~1~^~A~^^^1^2.544^7.063^8^3.024^5.297^~2, 3~^~01/01/2017~ -~18184~^~675~^5.301^9^0.670^~1~^~A~^^^1^1.765^7.662^8^3.756^6.846^~2, 3~^~01/01/2017~ -~18184~^~676~^0.005^9^0.000^~1~^~A~^^^1^0.002^0.006^8^0.004^0.006^~1, 2, 3~^~01/01/2017~ -~18184~^~685~^0.026^9^0.003^~1~^~A~^^^1^0.004^0.033^8^0.019^0.033^~2, 3~^~01/01/2017~ -~18184~^~687~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.007^8^0.005^0.007^~2, 3~^~01/01/2017~ -~18184~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.002^8^0.000^0.001^~2, 3~^~01/01/2017~ -~18184~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~18184~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~851~^0.719^9^0.087^~1~^~A~^^^1^0.051^0.914^8^0.518^0.920^~2, 3~^~01/01/2017~ -~18184~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~01/01/2017~ -~18184~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18184~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2017~ -~18185~^~312~^0.153^5^0.008^~1~^~A~^^^1^0.136^0.164^2^0.118^0.188^~2, 3~^~05/01/2014~ -~18185~^~315~^0.643^5^0.029^~1~^~A~^^^1^0.538^0.695^2^0.519^0.768^~2, 3~^~05/01/2014~ -~18185~^~404~^0.208^3^0.014^~1~^~A~^^^1^0.190^0.270^1^0.027^0.389^~2, 3~^~05/01/2014~ -~18185~^~405~^0.208^3^0.014^~1~^~A~^^^1^0.190^0.260^1^0.027^0.389^~2, 3~^~05/01/2014~ -~18185~^~406~^3.860^3^0.024^~1~^~A~^^^1^3.770^5.100^1^3.558^4.162^~2, 3~^~05/01/2014~ -~18185~^~410~^0.429^2^^~1~^~A~^^^1^0.420^0.610^^^^^~05/01/2014~ -~18185~^~415~^0.122^3^0.010^~1~^~A~^^^1^0.110^0.160^1^0.001^0.243^~2, 3~^~05/01/2014~ -~18185~^~501~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~502~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~503~^0.363^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~504~^0.652^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~505~^0.380^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~506~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~507~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~508~^0.485^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~509~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~510~^0.425^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~511~^0.852^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~512~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~513~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~514~^0.922^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~515~^2.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~516~^0.477^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~517~^0.612^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~518~^0.504^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18185~^~605~^1.250^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~606~^6.751^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.008^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.008^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~611~^0.017^3^0.014^~1~^~A~^^^1^0.000^0.074^1^-0.157^0.192^~1, 2, 3~^~05/01/2014~ -~18185~^~612~^0.083^3^0.026^~1~^~A~^^^1^0.054^0.121^1^-0.248^0.415^~2, 3~^~05/01/2014~ -~18185~^~613~^4.475^3^1.046^~1~^~A~^^^1^3.354^5.557^1^-8.821^17.771^~2, 3~^~05/01/2014~ -~18185~^~614~^1.513^3^0.056^~1~^~A~^^^1^0.895^1.605^1^0.801^2.226^~2, 3~^~05/01/2014~ -~18185~^~615~^0.169^3^0.012^~1~^~A~^^^1^0.155^0.188^1^0.018^0.319^~2, 3~^~05/01/2014~ -~18185~^~617~^10.625^3^0.794^~1~^~AS~^^^1^8.898^11.552^1^0.540^20.711^~2, 3~^~05/01/2014~ -~18185~^~618~^3.503^3^0.121^~1~^~AS~^^^1^3.356^3.880^1^1.964^5.043^~2, 3~^~05/01/2014~ -~18185~^~619~^0.088^3^0.026^~1~^~AS~^^^1^0.038^0.118^1^-0.244^0.419^~2, 3~^~05/01/2014~ -~18185~^~620~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.016^1^0.005^0.018^~2, 3~^~05/01/2014~ -~18185~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~624~^0.328^3^0.000^~1~^~A~^^^1^0.323^0.411^1^0.322^0.334^~2, 3~^~05/01/2014~ -~18185~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~626~^0.026^3^0.002^~1~^~AS~^^^1^0.023^0.032^1^-0.004^0.056^~2, 3~^~05/01/2014~ -~18185~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~628~^0.130^3^0.006^~1~^~A~^^^1^0.123^0.156^1^0.058^0.203^~2, 3~^~05/01/2014~ -~18185~^~629~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.008^1^-0.044^0.052^~1, 2, 3~^~05/01/2014~ -~18185~^~630~^0.008^3^0.001^~1~^~AS~^^^1^0.007^0.011^1^-0.003^0.020^~2, 3~^~05/01/2014~ -~18185~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~645~^10.800^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~646~^3.610^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~652~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^1^-0.007^0.019^~2, 3~^~05/01/2014~ -~18185~^~653~^0.021^3^0.002^~1~^~A~^^^1^0.019^0.024^1^-0.009^0.052^~2, 3~^~05/01/2014~ -~18185~^~654~^0.137^3^0.004^~1~^~A~^^^1^0.131^0.180^1^0.089^0.185^~2, 3~^~05/01/2014~ -~18185~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~663~^1.044^3^0.012^~1~^~A~^^^1^0.113^1.106^1^0.888^1.200^~2, 3~^~05/01/2014~ -~18185~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~665~^0.205^3^0.009^~1~^~A~^^^1^0.032^0.224^1^0.090^0.321^~2, 3~^~05/01/2014~ -~18185~^~670~^0.015^3^0.001^~1~^~A~^^^1^0.007^0.016^1^0.003^0.027^~2, 3~^~05/01/2014~ -~18185~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.011^0.013^~1, 2, 3~^~05/01/2014~ -~18185~^~673~^0.026^3^0.002^~1~^~A~^^^1^0.023^0.032^1^-0.004^0.056^~2, 3~^~05/01/2014~ -~18185~^~674~^9.582^3^0.781^~1~^~A~^^^1^8.785^10.446^1^-0.347^19.510^~2, 3~^~05/01/2014~ -~18185~^~675~^3.283^3^0.111^~1~^~A~^^^1^3.137^3.841^1^1.871^4.696^~2, 3~^~05/01/2014~ -~18185~^~676~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.011^1^-0.003^0.020^~2, 3~^~05/01/2014~ -~18185~^~685~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^1^-0.007^0.019^~2, 3~^~05/01/2014~ -~18185~^~687~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^^^^~2, 3~^~05/01/2014~ -~18185~^~689~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^^^^~2, 3~^~05/01/2014~ -~18185~^~693~^1.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~695~^0.206^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18185~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~851~^0.081^3^0.028^~1~^~A~^^^1^0.034^0.113^1^-0.269^0.431^~2, 3~^~05/01/2014~ -~18185~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18185~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.006^0.007^~1, 2, 3~^~05/01/2014~ -~18185~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18186~^~312~^0.080^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~315~^0.430^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~404~^0.248^8^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~405~^0.165^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~406~^2.160^8^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~410~^0.362^8^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~415~^0.027^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18186~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~502~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~503~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~504~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~505~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~507~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~508~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~509~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~510~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~511~^0.461^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~512~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~514~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~515~^1.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~516~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~517~^0.368^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~518~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~606~^6.149^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18186~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~612~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~613~^3.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~614~^2.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~617~^13.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~618~^4.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~619~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~620~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~628~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18186~^~645~^13.844^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18186~^~646~^3.181^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~312~^0.151^22^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~315~^0.326^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~404~^0.191^15^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~405~^0.186^8^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~406~^4.143^30^0.186^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~410~^0.379^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~415~^0.142^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~501~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~502~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~503~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~504~^0.571^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~505~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~506~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~507~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~508~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~509~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~510~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~511~^0.632^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~512~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~513~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~514~^0.705^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~515~^2.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~516~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~517~^0.582^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~518~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18187~^~606~^5.791^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18187~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18187~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~611~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~612~^0.115^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~613~^3.083^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~614~^2.205^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~617~^13.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~618~^4.677^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~619~^0.102^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~620~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18187~^~628~^0.098^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18187~^~645~^13.124^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18187~^~646~^4.787^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18188~^~312~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~315~^0.461^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~404~^0.168^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~405~^0.184^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~406~^4.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~410~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~415~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~501~^0.108^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~502~^0.305^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~503~^0.356^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~504~^0.628^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~505~^0.372^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~506~^0.141^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~507~^0.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~508~^0.453^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~509~^0.321^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~510~^0.415^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~511~^0.695^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~512~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~513~^0.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~514~^0.774^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~515~^2.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~516~^0.407^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~517~^0.639^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~518~^0.494^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~606~^6.199^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~611~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~612~^0.099^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~613~^3.539^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~614~^2.552^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~617~^14.372^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~618~^4.700^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~619~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~620~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~621~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~626~^0.044^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~628~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~629~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~630~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~645~^14.526^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18188~^~646~^4.889^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18189~^~312~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~315~^0.570^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~404~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~405~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~406~^3.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~410~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~415~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~502~^0.299^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~503~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~504~^0.623^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~505~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~506~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~507~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~508~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~509~^0.332^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~510~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~511~^0.734^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~512~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~513~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~514~^0.799^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~515~^2.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~516~^0.425^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~517~^0.643^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~518~^0.469^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~606~^4.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~607~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~608~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~610~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~611~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~612~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~613~^2.905^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~614~^1.461^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~617~^10.684^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~618~^6.966^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~619~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~620~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~626~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~628~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~645~^10.832^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18189~^~646~^7.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~312~^0.237^19^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~315~^0.912^17^0.022^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~404~^0.325^17^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~405~^0.263^18^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~406~^3.739^19^0.088^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~410~^0.915^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~415~^0.139^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~501~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~502~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~503~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~504~^0.617^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~505~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~506~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~507~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~508~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~509~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~510~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~511~^0.716^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~512~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~513~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~514~^0.791^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~515~^2.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~516~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~517~^0.622^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~518~^0.462^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18190~^~606~^4.995^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~607~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~610~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~611~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~612~^0.107^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~613~^2.649^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~614~^1.980^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~617~^11.126^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~618~^3.688^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~619~^0.107^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~628~^0.059^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18190~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18190~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1994~ -~18190~^~645~^11.191^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18190~^~646~^3.795^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18191~^~312~^0.413^3^0.022^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~315~^0.305^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~404~^0.216^4^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~405~^0.206^4^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~406~^1.967^4^0.144^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~410~^0.244^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~415~^0.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~501~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~502~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~503~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~504~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~505~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~506~^0.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~507~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~508~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~510~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~511~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~512~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~513~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~514~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~515~^1.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~516~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~517~^0.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~518~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18191~^~606~^3.460^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~612~^0.067^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~613~^1.795^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~614~^1.594^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~617~^7.642^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~618~^1.660^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~619~^0.092^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~626~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/1994~ -~18191~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~09/01/1994~ -~18191~^~645~^7.649^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18191~^~646~^1.756^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18192~^~312~^0.090^12^0.004^~1~^~A~^^^1^0.073^0.126^9^0.081^0.100^~2, 3~^~05/01/2014~ -~18192~^~315~^0.393^12^0.006^~1~^~A~^^^1^0.284^0.555^7^0.377^0.408^~2, 3~^~05/01/2014~ -~18192~^~404~^0.353^6^0.006^~1~^~A~^^^1^0.330^0.370^3^0.333^0.374^~2, 3~^~05/01/2014~ -~18192~^~405~^0.314^6^0.010^~1~^~A~^^^1^0.290^0.340^4^0.286^0.342^~2, 3~^~05/01/2014~ -~18192~^~406~^3.275^6^0.040^~1~^~A~^^^1^2.600^3.880^3^3.140^3.410^~2, 3~^~05/01/2014~ -~18192~^~410~^0.321^4^0.007^~1~^~A~^^^1^0.300^0.340^2^0.289^0.353^~2, 3~^~05/01/2014~ -~18192~^~415~^0.071^6^0.005^~1~^~A~^^^1^0.060^0.090^3^0.054^0.088^~2, 3~^~05/01/2014~ -~18192~^~605~^0.714^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~606~^8.105^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~607~^0.086^6^0.001^~1~^~A~^^^1^0.000^0.194^2^0.080^0.091^~1, 2, 3~^~05/01/2014~ -~18192~^~608~^0.067^6^0.000^~1~^~A~^^^1^0.000^0.150^2^0.065^0.069^~1, 2, 3~^~05/01/2014~ -~18192~^~609~^0.043^6^0.001^~1~^~A~^^^1^0.000^0.094^3^0.040^0.046^~1, 2, 3~^~05/01/2014~ -~18192~^~610~^0.100^6^0.002^~1~^~A~^^^1^0.000^0.229^2^0.093^0.107^~1, 2, 3~^~05/01/2014~ -~18192~^~611~^0.126^6^0.002^~1~^~A~^^^1^0.011^0.265^4^0.121^0.130^~2, 3~^~05/01/2014~ -~18192~^~612~^0.456^6^0.005^~1~^~A~^^^1^0.066^0.943^2^0.436^0.475^~2, 3~^~05/01/2014~ -~18192~^~613~^5.143^6^0.035^~1~^~A~^^^1^3.639^7.056^2^4.997^5.289^~2, 3~^~05/01/2014~ -~18192~^~614~^1.842^6^0.009^~1~^~A~^^^1^1.785^1.884^4^1.818^1.867^~2, 3~^~05/01/2014~ -~18192~^~615~^0.073^6^0.001^~1~^~A~^^^1^0.070^0.079^2^0.069^0.078^~2, 3~^~05/01/2014~ -~18192~^~617~^6.515^6^0.075^~1~^~AS~^^^1^6.137^6.756^4^6.300^6.729^~2, 3~^~05/01/2014~ -~18192~^~618~^7.374^6^0.051^~1~^~AS~^^^1^6.394^8.126^4^7.232^7.515^~2, 3~^~05/01/2014~ -~18192~^~619~^0.918^6^0.007^~1~^~AS~^^^1^0.752^1.041^3^0.896^0.941^~2, 3~^~05/01/2014~ -~18192~^~620~^0.017^6^0.000^~1~^~A~^^^1^0.008^0.029^4^0.017^0.018^~2, 3~^~05/01/2014~ -~18192~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18192~^~624~^0.052^6^0.001^~1~^~A~^^^1^0.046^0.057^2^0.050^0.055^~2, 3~^~05/01/2014~ -~18192~^~625~^0.037^6^0.001^~1~^~A~^^^1^0.000^0.085^2^0.031^0.042^~1, 2, 3~^~05/01/2014~ -~18192~^~626~^0.089^6^0.003^~1~^~AS~^^^1^0.019^0.180^2^0.077^0.100^~2, 3~^~05/01/2014~ -~18192~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~628~^0.053^6^0.001^~1~^~A~^^^1^0.045^0.062^4^0.049^0.057^~2, 3~^~05/01/2014~ -~18192~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.004^3^-0.001^0.003^~2, 3~^~05/01/2014~ -~18192~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.005^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~645~^6.708^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~646~^8.326^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~652~^0.048^6^0.000^~1~^~A~^^^1^0.007^0.098^4^0.047^0.049^~2, 3~^~05/01/2014~ -~18192~^~653~^0.045^6^0.001^~1~^~A~^^^1^0.021^0.077^2^0.042^0.048^~2, 3~^~05/01/2014~ -~18192~^~654~^0.023^6^0.000^~1~^~A~^^^1^0.021^0.025^3^0.022^0.024^~2, 3~^~05/01/2014~ -~18192~^~662~^0.015^6^0.001^~1~^~A~^^^1^0.000^0.035^3^0.013^0.017^~1, 2, 3~^~05/01/2014~ -~18192~^~663~^0.612^6^0.007^~1~^~A~^^^1^0.246^0.921^3^0.590^0.634^~2, 3~^~05/01/2014~ -~18192~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^4^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18192~^~665~^0.086^6^0.002^~1~^~A~^^^1^0.074^0.102^3^0.079^0.094^~2, 3~^~05/01/2014~ -~18192~^~670~^0.034^6^0.001^~1~^~A~^^^1^0.012^0.062^4^0.033^0.036^~2, 3~^~05/01/2014~ -~18192~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~672~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.008^3^0.005^0.008^~2, 3~^~05/01/2014~ -~18192~^~673~^0.074^6^0.002^~1~^~A~^^^1^0.019^0.145^2^0.064^0.083^~2, 3~^~05/01/2014~ -~18192~^~674~^5.903^6^0.072^~1~^~A~^^^1^5.586^6.269^4^5.699^6.107^~2, 3~^~05/01/2014~ -~18192~^~675~^7.253^6^0.050^~1~^~A~^^^1^6.244^8.030^4^7.115^7.390^~2, 3~^~05/01/2014~ -~18192~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18192~^~685~^0.033^6^0.002^~1~^~A~^^^1^0.024^0.036^2^0.027^0.040^~2, 3~^~05/01/2014~ -~18192~^~687~^0.014^6^0.002^~1~^~A~^^^1^0.000^0.025^2^0.007^0.021^~1, 2, 3~^~05/01/2014~ -~18192~^~689~^0.007^6^0.000^~1~^~AS~^^^1^0.000^0.014^3^0.005^0.008^~2, 3~^~05/01/2014~ -~18192~^~693~^0.628^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~695~^0.087^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18192~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18192~^~851~^0.885^6^0.006^~1~^~A~^^^1^0.726^1.005^3^0.866^0.903^~2, 3~^~05/01/2014~ -~18192~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~18192~^~853~^0.005^6^0.000^~1~^~A~^^^1^0.000^0.012^2^0.004^0.006^~1, 2, 3~^~05/01/2014~ -~18192~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~18192~^~858~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~18193~^~312~^0.152^22^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~315~^0.617^17^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~404~^0.293^28^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~405~^0.220^28^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~406~^2.481^28^0.123^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~410~^0.377^8^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~415~^0.020^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~502~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~503~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~504~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~505~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~506~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~507~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~508~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~509~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~510~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~511~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~513~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~514~^0.252^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~515~^1.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~516~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~517~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~518~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~606~^8.204^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18193~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18193~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18193~^~612~^0.158^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~613~^4.209^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~614~^3.830^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~617~^18.618^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~618~^3.913^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~619~^0.206^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~620~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18193~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~626~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~628~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18193~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~645~^18.628^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18193~^~646~^4.122^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~312~^0.026^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~315~^0.201^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~404~^0.139^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~405~^0.109^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~406~^1.240^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~410~^0.091^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~415~^0.008^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~501~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~502~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~503~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~504~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~505~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~506~^0.044^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~507~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~508~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~509~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~510~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~511~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~512~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~513~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~514~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~515~^0.830^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~517~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~518~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18196~^~606~^2.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~612~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~613~^1.293^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~614~^0.707^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~617~^5.173^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~618~^4.251^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~619~^0.315^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~626~^0.048^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~645~^5.233^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18196~^~646~^4.577^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~312~^0.218^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~315~^0.365^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~404~^0.373^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~405~^0.188^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~406~^2.843^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~410~^0.201^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~415~^0.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~501~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~502~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~503~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~504~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~505~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~507~^0.075^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~508~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~509~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~510~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~511~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~512~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~513~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~514~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~515~^1.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~516~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~517~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~518~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18198~^~606~^4.183^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~611~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~612~^0.032^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~613~^2.263^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~614~^1.832^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~617~^6.655^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~618~^4.677^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~619~^0.346^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~626~^0.063^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18198~^~645~^6.730^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18198~^~646~^5.035^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~312~^0.220^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~315~^0.403^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~404~^0.524^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~405~^0.292^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~406~^3.971^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~410~^0.359^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~415~^0.033^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~502~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~503~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~504~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~505~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~507~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~508~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~509~^0.146^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~510~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~511~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~513~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~514~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~515~^1.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~516~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~517~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~518~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18199~^~606~^3.992^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18199~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18199~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~611~^0.181^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18199~^~612~^0.025^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~613~^2.392^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~614~^1.393^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~617~^9.123^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~618~^7.375^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~619~^0.544^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~626~^0.084^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18199~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18199~^~645~^9.207^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18199~^~646~^7.919^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18200~^~312~^0.151^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~315~^0.640^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~404~^0.460^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~405~^0.211^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~406~^3.236^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~410~^0.285^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~415~^0.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~501~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~502~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~503~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~504~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~505~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~506~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~507~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~508~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~509~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~510~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~511~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~512~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~514~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~515~^1.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~516~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~517~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~518~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18200~^~606~^2.693^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~612~^0.019^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~613~^1.798^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~614~^0.867^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~617~^7.462^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~618~^6.303^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~619~^0.464^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~626~^0.071^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18200~^~645~^7.550^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18200~^~646~^6.784^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~312~^0.267^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~315~^0.705^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~404~^0.346^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~405~^0.148^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~406~^5.259^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~410~^0.507^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~415~^0.078^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~501~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~502~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~503~^0.363^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~504~^0.668^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~505~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~506~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~507~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~508~^0.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~509~^0.379^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~510~^0.429^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~511~^0.998^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~512~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~513~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~514~^1.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~515~^2.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~516~^0.538^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~517~^0.607^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~518~^0.505^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18201~^~606~^4.937^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~612~^0.028^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~613~^3.426^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~614~^1.335^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~617~^15.110^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~618~^11.454^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~619~^0.551^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~626~^0.087^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~628~^0.172^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~645~^15.391^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18201~^~646~^12.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~312~^0.038^3^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~315~^0.254^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~404~^0.240^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~405~^0.150^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~406~^1.800^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~18202~^~410~^0.098^3^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~415~^0.009^3^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~501~^0.044^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~502~^0.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~503~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~504~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~505~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~506~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~507~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~508~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~509~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~510~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~511~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~513~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~514~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~515~^1.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~517~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~518~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18202~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~18202~^~606~^4.257^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~612~^0.029^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~613~^2.815^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~614~^1.413^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~617~^12.022^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~618~^10.005^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~619~^0.743^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~626~^0.115^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~18202~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18202~^~645~^12.137^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18202~^~646~^10.748^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18204~^~312~^0.079^9^0.008^~1~^~A~^^^1^0.050^0.124^4^0.056^0.101^~2, 3~^~05/01/2014~ -~18204~^~315~^0.307^9^0.009^~1~^~A~^^^1^0.224^0.360^5^0.282^0.331^~2, 3~^~05/01/2014~ -~18204~^~404~^0.232^6^0.066^~1~^~A~^^^1^0.070^0.370^2^-0.050^0.515^~2, 3~^~05/01/2014~ -~18204~^~405~^0.236^6^0.011^~1~^~A~^^^1^0.200^0.270^2^0.189^0.282^~2, 3~^~05/01/2014~ -~18204~^~406~^2.942^6^0.127^~1~^~A~^^^1^2.450^3.410^2^2.402^3.482^~2, 3~^~05/01/2014~ -~18204~^~410~^0.280^4^0.004^~1~^~A~^^^1^0.250^0.360^1^0.247^0.312^~2, 3~^~05/01/2014~ -~18204~^~415~^0.068^6^0.007^~1~^~A~^^^1^0.040^0.090^2^0.042^0.095^~2, 3~^~05/01/2014~ -~18204~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~502~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~503~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~504~^0.390^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~505~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~507~^0.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~508~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~509~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~510~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~511~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~512~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~513~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~514~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~515~^1.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~516~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~517~^0.469^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~518~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18204~^~605~^0.490^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~606~^7.666^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~609~^0.009^6^0.002^~1~^~A~^^^1^0.000^0.036^3^0.001^0.017^~1, 2, 3~^~05/01/2014~ -~18204~^~610~^0.015^6^0.006^~1~^~A~^^^1^0.000^0.037^2^-0.009^0.042^~1, 2, 3~^~05/01/2014~ -~18204~^~611~^0.059^6^0.015^~1~^~A~^^^1^0.000^0.153^2^0.002^0.124^~1, 2, 3~^~05/01/2014~ -~18204~^~612~^0.146^6^0.044^~1~^~A~^^^1^0.032^0.243^2^-0.031^0.343^~2, 3~^~05/01/2014~ -~18204~^~613~^5.903^6^1.592^~1~^~A~^^^1^2.223^9.514^2^-0.534^13.160^~2, 3~^~05/01/2014~ -~18204~^~614~^1.398^6^0.397^~1~^~A~^^^1^0.941^2.692^2^-0.213^3.203^~2, 3~^~05/01/2014~ -~18204~^~615~^0.065^6^0.004^~1~^~A~^^^1^0.060^0.078^2^0.052^0.086^~2, 3~^~05/01/2014~ -~18204~^~617~^6.896^6^1.109^~1~^~AS~^^^1^3.830^9.293^2^2.605^12.145^~2, 3~^~05/01/2014~ -~18204~^~618~^3.449^6^1.474^~1~^~AS~^^^1^1.680^7.932^2^-2.654^10.031^~2, 3~^~05/01/2014~ -~18204~^~619~^0.282^6^0.241^~1~^~AS~^^^1^0.053^1.023^2^-0.735^1.338^~2, 3~^~05/01/2014~ -~18204~^~620~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.024^2^0.003^0.018^~2, 3~^~05/01/2014~ -~18204~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^2^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~18204~^~624~^0.027^6^0.009^~1~^~A~^^^1^0.014^0.055^2^-0.009^0.066^~2, 3~^~05/01/2014~ -~18204~^~625~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~18204~^~626~^0.032^6^0.004^~1~^~AS~^^^1^0.016^0.058^2^0.016^0.053^~2, 3~^~05/01/2014~ -~18204~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~628~^0.035^6^0.002^~1~^~A~^^^1^0.030^0.047^2^0.030^0.045^~2, 3~^~05/01/2014~ -~18204~^~629~^0.000^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~05/01/2014~ -~18204~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.004^~2, 3~^~05/01/2014~ -~18204~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~645~^6.971^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~646~^3.746^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~652~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.012^2^0.003^0.015^~2, 3~^~05/01/2014~ -~18204~^~653~^0.020^6^0.001^~1~^~A~^^^1^0.019^0.022^2^0.018^0.024^~2, 3~^~05/01/2014~ -~18204~^~654~^0.017^6^0.001^~1~^~A~^^^1^0.017^0.022^2^0.014^0.023^~2, 3~^~05/01/2014~ -~18204~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~663~^0.388^6^0.320^~1~^~A~^^^1^0.018^1.374^2^-0.960^1.790^~2, 3~^~05/01/2014~ -~18204~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~665~^0.101^6^0.056^~1~^~A~^^^1^0.038^0.271^2^-0.135^0.351^~2, 3~^~05/01/2014~ -~18204~^~670~^0.012^6^0.003^~1~^~A~^^^1^0.007^0.022^2^-0.001^0.027^~2, 3~^~05/01/2014~ -~18204~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~672~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.008^~1, 2, 3~^~05/01/2014~ -~18204~^~673~^0.032^6^0.004^~1~^~A~^^^1^0.016^0.058^2^0.016^0.053^~2, 3~^~05/01/2014~ -~18204~^~674~^6.508^6^1.051^~1~^~A~^^^1^3.640^9.202^2^2.439^11.481^~2, 3~^~05/01/2014~ -~18204~^~675~^3.336^6^1.507^~1~^~A~^^^1^1.387^7.866^2^-2.915^10.051^~2, 3~^~05/01/2014~ -~18204~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~18204~^~685~^0.014^6^0.007^~1~^~A~^^^1^0.005^0.033^2^-0.014^0.043^~2, 3~^~05/01/2014~ -~18204~^~687~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.008^2^0.006^0.008^~2, 3~^~05/01/2014~ -~18204~^~689~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.005^2^0.000^0.005^~2, 3~^~05/01/2014~ -~18204~^~693~^0.388^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18204~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18204~^~851~^0.267^6^0.235^~1~^~A~^^^1^0.046^0.990^2^-0.723^1.295^~2, 3~^~05/01/2014~ -~18204~^~852~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.004^~1, 2, 3~^~05/01/2014~ -~18204~^~853~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~18204~^~856~^0.000^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~05/01/2014~ -~18204~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~05/01/2014~ -~18205~^~312~^0.037^19^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~315~^0.308^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~404~^0.205^13^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~405~^0.122^15^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~406~^2.412^13^0.333^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~410~^0.246^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~415~^0.019^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~502~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~503~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~504~^0.306^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~505~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~506~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~507~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~508~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~509~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~510~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~511~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~512~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~513~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~514~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~515~^1.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~516~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~517~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~518~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18205~^~606~^4.955^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18205~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18205~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18205~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18205~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18205~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18205~^~612~^0.096^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~613~^2.553^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~614~^2.306^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~617~^11.070^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~618~^2.341^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~619~^0.124^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18205~^~620~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~626~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18205~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18205~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18205~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18205~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18205~^~645~^11.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18205~^~646~^2.469^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~18206~^~312~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~315~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18206~^~404~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~405~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~406~^2.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~410~^0.151^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18206~^~415~^0.023^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18206~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~502~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~503~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~504~^0.340^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~505~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~506~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~507~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~508~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~509~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~510~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~511~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~512~^0.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~513~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~514~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~515~^1.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~516~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~517~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~518~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~606~^5.906^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18206~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18206~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~612~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~613~^3.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~614~^2.709^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~617~^12.979^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~618~^2.731^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~619~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~620~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~626~^0.028^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18206~^~628~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/1995~ -~18206~^~645~^13.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18206~^~646~^2.891^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18209~^~312~^0.066^6^0.004^~1~^~A~^^^1^0.053^0.079^5^0.056^0.076^~2, 3~^~06/01/2010~ -~18209~^~315~^0.421^6^0.017^~1~^~A~^^^1^0.378^0.482^5^0.378^0.464^~2, 3~^~06/01/2010~ -~18209~^~404~^0.037^3^0.012^~1~^~A~^^^1^0.020^0.060^2^-0.015^0.088^~2, 3~^~06/01/2010~ -~18209~^~405~^0.120^3^0.031^~1~^~A~^^^1^0.080^0.180^2^-0.012^0.252^~2, 3~^~06/01/2010~ -~18209~^~406~^2.183^3^0.349^~1~^~A~^^^1^1.670^2.850^2^0.681^3.686^~2, 3~^~06/01/2010~ -~18209~^~410~^0.395^4^0.024^~1~^~A~^^^1^0.350^0.460^3^0.319^0.471^~2, 3~^~06/01/2010~ -~18209~^~415~^0.043^4^0.001^~1~^~A~^^^1^0.040^0.045^3^0.038^0.047^~2, 3~^~06/01/2010~ -~18209~^~501~^0.049^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~502~^0.114^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~503~^0.136^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~504~^0.259^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~505~^0.105^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~506~^0.063^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~507~^0.075^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~508~^0.192^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~509~^0.121^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~510~^0.169^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~511~^0.167^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~512~^0.082^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~513~^0.134^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~514~^0.204^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~515~^1.156^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~516~^0.144^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~517~^0.392^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~518~^0.187^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~ -~18209~^~606~^11.899^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~607~^0.006^6^0.001^~1~^~A~^^^1^0.003^0.009^5^0.004^0.008^~2, 3~^~06/01/2010~ -~18209~^~608~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.009^5^0.001^0.007^~1, 2, 3~^~06/01/2010~ -~18209~^~609~^0.052^6^0.016^~1~^~A~^^^1^0.022^0.128^5^0.012^0.093^~2, 3~^~06/01/2010~ -~18209~^~610~^0.048^6^0.015^~1~^~A~^^^1^0.019^0.119^5^0.010^0.086^~2, 3~^~06/01/2010~ -~18209~^~611~^0.532^6^0.211^~1~^~A~^^^1^0.154^1.560^5^-0.010^1.075^~2, 3~^~06/01/2010~ -~18209~^~612~^0.378^6^0.057^~1~^~A~^^^1^0.255^0.644^5^0.233^0.524^~2, 3~^~06/01/2010~ -~18209~^~613~^9.027^6^0.632^~1~^~A~^^^1^6.274^10.284^5^7.401^10.652^~2, 3~^~06/01/2010~ -~18209~^~614~^1.698^6^0.408^~1~^~A~^^^1^1.044^3.439^5^0.649^2.746^~2, 3~^~06/01/2010~ -~18209~^~615~^0.081^6^0.003^~1~^~A~^^^1^0.071^0.094^5^0.073^0.088^~2, 3~^~06/01/2010~ -~18209~^~617~^7.609^6^0.356^~1~^~AS~^^^1^6.187^8.593^5^6.694^8.524^~2, 3~^~06/01/2010~ -~18209~^~618~^2.553^6^0.196^~1~^~AS~^^^1^2.241^3.472^5^2.050^3.056^~2, 3~^~06/01/2010~ -~18209~^~619~^0.092^6^0.031^~1~^~AS~^^^1^0.051^0.248^5^0.011^0.173^~2, 3~^~06/01/2010~ -~18209~^~620~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~06/01/2010~ -~18209~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~624~^0.019^6^0.004^~1~^~A~^^^1^0.013^0.040^5^0.009^0.030^~2, 3~^~06/01/2010~ -~18209~^~625~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~06/01/2010~ -~18209~^~626~^0.031^6^0.003^~1~^~AS~^^^1^0.021^0.044^5^0.023^0.039^~2, 3~^~06/01/2010~ -~18209~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~628~^0.048^6^0.002^~1~^~A~^^^1^0.042^0.059^5^0.042^0.054^~2, 3~^~06/01/2010~ -~18209~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.005^5^-0.001^0.003^~2, 3~^~06/01/2010~ -~18209~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~645~^7.697^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~646~^2.651^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~652~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.013^~2, 3~^~06/01/2010~ -~18209~^~653~^0.024^6^0.001^~1~^~A~^^^1^0.020^0.027^5^0.021^0.026^~2, 3~^~06/01/2010~ -~18209~^~654~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.022^5^0.015^0.020^~2, 3~^~06/01/2010~ -~18209~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~06/01/2010~ -~18209~^~663~^0.082^6^0.040^~1~^~A~^^^1^0.024^0.277^5^-0.021^0.186^~2, 3~^~06/01/2010~ -~18209~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~06/01/2010~ -~18209~^~665~^0.148^6^0.013^~1~^~A~^^^1^0.099^0.180^5^0.114^0.182^~2, 3~^~06/01/2010~ -~18209~^~670~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.008^0.010^~2, 3~^~06/01/2010~ -~18209~^~671~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~06/01/2010~ -~18209~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~06/01/2010~ -~18209~^~673~^0.030^6^0.003^~1~^~A~^^^1^0.021^0.043^5^0.023^0.038^~2, 3~^~06/01/2010~ -~18209~^~674~^7.526^6^0.383^~1~^~A~^^^1^5.910^8.502^5^6.542^8.511^~2, 3~^~06/01/2010~ -~18209~^~675~^2.396^6^0.196^~1~^~A~^^^1^2.058^3.304^5^1.892^2.899^~2, 3~^~06/01/2010~ -~18209~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~06/01/2010~ -~18209~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~687~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~06/01/2010~ -~18209~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2010~ -~18209~^~693~^0.083^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~695~^0.148^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18209~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~851~^0.092^6^0.031^~1~^~A~^^^1^0.051^0.248^5^0.011^0.173^~2, 3~^~06/01/2010~ -~18209~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~18209~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~06/01/2010~ -~18210~^~312~^0.114^30^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~315~^0.292^24^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~404~^0.261^40^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~405~^0.243^41^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~406~^2.690^40^0.088^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~410~^0.394^8^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18210~^~415~^0.018^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~502~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~503~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~504~^0.306^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~505~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~506~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~507~^0.097^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~508~^0.212^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~509~^0.128^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~510~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~511~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~512~^0.091^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~513~^0.135^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~514~^0.187^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~515~^1.479^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~516~^0.152^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~517~^0.499^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~518~^0.236^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18210~^~606~^2.979^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~612~^0.020^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~613~^1.976^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~614~^0.979^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~617~^8.338^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~618~^7.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~619~^0.520^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~626~^0.080^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18210~^~645~^8.437^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18210~^~646~^7.551^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18211~^~312~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~315~^0.495^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~404~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~405~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~406~^3.800^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~415~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~501~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~502~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~503~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~504~^0.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~505~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~506~^0.131^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~507~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~508~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~509~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~510~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~511~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~512~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~513~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~514~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~515~^2.607^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~516~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~517~^0.875^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~518~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~606~^5.502^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~612~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~613~^4.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~614~^1.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~617~^8.674^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~618~^19.640^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~619~^2.588^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~626~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~628~^0.075^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~645~^8.828^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18211~^~646~^22.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~312~^0.100^45^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~315~^0.262^44^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~404~^0.275^45^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~405~^0.320^45^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~406~^3.106^46^0.083^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~410~^0.410^4^0.083^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~415~^0.073^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~501~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~502~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~503~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~504~^0.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~505~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~507~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~508~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~509~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~510~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~511~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~512~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~513~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~514~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~515~^1.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~516~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~517~^0.444^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~518~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18212~^~606~^3.838^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~612~^0.060^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~613~^2.244^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~614~^1.543^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~617~^6.508^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~618~^3.625^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~619~^0.231^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~620~^0.017^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~621~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~627~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~628~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~629~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18212~^~645~^6.544^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18212~^~646~^3.887^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18213~^~312~^0.070^17^0.001^~1~^~A~^^^1^0.054^0.080^9^0.067^0.074^~2, 3~^~06/01/2015~ -~18213~^~315~^0.290^17^0.007^~1~^~A~^^^1^0.247^0.371^9^0.275^0.305^~2, 3~^~06/01/2015~ -~18213~^~404~^0.289^9^0.015^~1~^~A~^^^1^0.170^0.340^2^0.227^0.352^~2, 3~^~06/01/2015~ -~18213~^~405~^0.316^9^0.018^~1~^~A~^^^1^0.180^0.380^3^0.253^0.379^~2, 3~^~06/01/2015~ -~18213~^~406~^3.307^9^0.202^~1~^~A~^^^1^2.070^3.980^2^2.541^4.072^~2, 3~^~06/01/2015~ -~18213~^~410~^0.351^3^0.000^~1~^~A~^^^1^0.270^0.400^^^^~2, 3~^~06/01/2015~ -~18213~^~415~^0.055^9^0.003^~1~^~A~^^^1^0.050^0.070^4^0.046^0.063^~2, 3~^~06/01/2015~ -~18213~^~501~^0.041^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~502~^0.153^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~503~^0.184^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~504~^0.378^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~505~^0.122^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~506~^0.102^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~508~^0.235^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~509~^0.112^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~510~^0.204^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~511~^0.204^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~512~^0.102^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~513~^0.174^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~514~^0.255^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~515~^1.572^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~516~^0.194^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~517~^0.868^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~518~^0.276^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~18213~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~18213~^~605~^0.600^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~606~^4.245^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~607~^0.007^9^0.001^~1~^~A~^^^1^0.000^0.011^2^0.003^0.012^~1, 2, 3~^~06/01/2015~ -~18213~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~609~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~18213~^~610~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.011^2^-0.001^0.010^~1, 2, 3~^~06/01/2015~ -~18213~^~611~^0.009^9^0.001^~1~^~A~^^^1^0.000^0.022^2^0.004^0.014^~1, 2, 3~^~06/01/2015~ -~18213~^~612~^0.052^9^0.006^~1~^~A~^^^1^0.018^0.094^2^0.025^0.079^~2, 3~^~06/01/2015~ -~18213~^~613~^2.686^9^0.249^~1~^~A~^^^1^1.242^4.302^2^1.617^3.755^~2, 3~^~06/01/2015~ -~18213~^~614~^1.351^9^0.087^~1~^~A~^^^1^0.497^1.707^2^0.988^1.714^~2, 3~^~06/01/2015~ -~18213~^~615~^0.051^9^0.001^~1~^~A~^^^1^0.032^0.063^4^0.048^0.054^~2, 3~^~06/01/2015~ -~18213~^~617~^4.389^9^0.177^~1~^~AS~^^^1^2.048^5.467^2^3.668^5.110^~2, 3~^~06/01/2015~ -~18213~^~618~^5.968^9^0.094^~1~^~AS~^^^1^3.144^7.603^2^5.624^6.313^~2, 3~^~06/01/2015~ -~18213~^~619~^0.749^9^0.024^~1~^~AS~^^^1^0.300^0.982^2^0.653^0.845^~2, 3~^~06/01/2015~ -~18213~^~620~^0.010^9^0.001^~1~^~A~^^^1^0.004^0.016^2^0.007^0.013^~2, 3~^~06/01/2015~ -~18213~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~18213~^~624~^0.043^9^0.001^~1~^~A~^^^1^0.019^0.058^4^0.039^0.046^~2, 3~^~06/01/2015~ -~18213~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.000^~1, 2, 3~^~06/01/2015~ -~18213~^~626~^0.017^9^0.001^~1~^~AS~^^^1^0.007^0.022^2^0.014^0.021^~2, 3~^~06/01/2015~ -~18213~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~628~^0.038^9^0.001^~1~^~A~^^^1^0.020^0.049^4^0.035^0.041^~2, 3~^~06/01/2015~ -~18213~^~629~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.006^3^0.002^0.005^~1, 2, 3~^~06/01/2015~ -~18213~^~630~^0.002^9^0.001^~1~^~AS~^^^1^0.000^0.006^2^-0.003^0.006^~2, 3~^~06/01/2015~ -~18213~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~645~^4.451^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~646~^6.738^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~652~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.009^3^0.005^0.007^~2, 3~^~06/01/2015~ -~18213~^~653~^0.016^9^0.001^~1~^~A~^^^1^0.010^0.021^3^0.014^0.018^~2, 3~^~06/01/2015~ -~18213~^~654~^0.019^9^0.001^~1~^~A~^^^1^0.012^0.026^2^0.015^0.023^~2, 3~^~06/01/2015~ -~18213~^~662~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~663~^0.537^9^0.012^~1~^~A~^^^1^0.014^0.949^3^0.501^0.574^~2, 3~^~06/01/2015~ -~18213~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~18213~^~665~^0.062^9^0.002^~1~^~A~^^^1^0.032^0.080^3^0.055^0.070^~2, 3~^~06/01/2015~ -~18213~^~670~^0.010^9^0.000^~1~^~A~^^^1^0.006^0.013^4^0.010^0.011^~2, 3~^~06/01/2015~ -~18213~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~672~^0.006^9^0.000^~1~^~A~^^^1^0.002^0.008^4^0.005^0.006^~1, 2, 3~^~06/01/2015~ -~18213~^~673~^0.017^9^0.001^~1~^~A~^^^1^0.007^0.021^2^0.014^0.020^~2, 3~^~06/01/2015~ -~18213~^~674~^3.852^9^0.181^~1~^~A~^^^1^1.981^4.518^2^3.092^4.611^~2, 3~^~06/01/2015~ -~18213~^~675~^5.896^9^0.095^~1~^~A~^^^1^3.085^7.510^2^5.541^6.250^~2, 3~^~06/01/2015~ -~18213~^~676~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.003^0.006^~1, 2, 3~^~06/01/2015~ -~18213~^~685~^0.035^9^0.001^~1~^~A~^^^1^0.014^0.050^4^0.032^0.038^~2, 3~^~06/01/2015~ -~18213~^~687~^0.006^9^0.001^~1~^~A~^^^1^0.000^0.008^3^0.004^0.007^~1, 2, 3~^~06/01/2015~ -~18213~^~689~^0.001^9^0.000^~1~^~AS~^^^1^0.000^0.002^2^0.000^0.002^~2, 3~^~06/01/2015~ -~18213~^~693~^0.538^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~695~^0.062^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18213~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~851~^0.714^9^0.025^~1~^~A~^^^1^0.279^0.937^2^0.617^0.811^~2, 3~^~06/01/2015~ -~18213~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~853~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~18213~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~18213~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~18214~^~312~^0.125^12^0.003^~1~^~A~^^^1^0.099^0.153^10^0.117^0.132^~2, 3~^~03/01/2011~ -~18214~^~315~^0.562^12^0.010^~1~^~A~^^^1^0.411^0.735^7^0.537^0.586^~2, 3~^~03/01/2011~ -~18214~^~404~^0.562^6^0.017^~1~^~A~^^^1^0.460^0.710^3^0.502^0.621^~2, 3~^~03/01/2011~ -~18214~^~405~^0.338^6^0.011^~1~^~A~^^^1^0.300^0.370^3^0.302^0.375^~2, 3~^~03/01/2011~ -~18214~^~406~^6.113^6^0.221^~1~^~A~^^^1^4.780^7.610^4^5.500^6.726^~2, 3~^~03/01/2011~ -~18214~^~410~^0.472^6^0.004^~1~^~A~^^^1^0.440^0.520^2^0.453^0.491^~2, 3~^~03/01/2011~ -~18214~^~415~^0.170^6^0.001^~1~^~A~^^^1^0.133^0.207^3^0.166^0.174^~2, 3~^~03/01/2011~ -~18214~^~501~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~502~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~503~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~504~^0.744^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~505~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~506~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~507~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~508~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~509~^0.340^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~510~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~511~^0.386^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~512~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~514~^0.480^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~515~^3.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~516~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~517~^1.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~518~^0.521^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18214~^~605~^0.542^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~606~^5.288^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~607~^0.020^12^0.002^~1~^~A~^^^1^0.000^0.054^6^0.015^0.025^~1, 2, 3~^~03/01/2011~ -~18214~^~608~^0.013^12^0.002^~1~^~A~^^^1^0.000^0.040^5^0.009^0.017^~1, 2, 3~^~03/01/2011~ -~18214~^~609~^0.010^12^0.001^~1~^~A~^^^1^0.002^0.029^5^0.008^0.013^~1, 2, 3~^~03/01/2011~ -~18214~^~610~^0.023^12^0.002^~1~^~A~^^^1^0.003^0.067^5^0.017^0.030^~2, 3~^~03/01/2011~ -~18214~^~611~^0.031^12^0.003^~1~^~A~^^^1^0.012^0.075^7^0.024^0.039^~2, 3~^~03/01/2011~ -~18214~^~612~^0.126^12^0.009^~1~^~A~^^^1^0.073^0.265^5^0.103^0.149^~2, 3~^~03/01/2011~ -~18214~^~613~^3.469^12^0.070^~1~^~A~^^^1^2.180^4.520^6^3.295^3.642^~2, 3~^~03/01/2011~ -~18214~^~614~^1.406^12^0.051^~1~^~A~^^^1^0.900^2.212^6^1.280^1.532^~2, 3~^~03/01/2011~ -~18214~^~615~^0.067^12^0.002^~1~^~A~^^^1^0.051^0.085^10^0.063^0.071^~2, 3~^~03/01/2011~ -~18214~^~617~^5.688^12^0.137^~1~^~AS~^^^1^4.389^6.914^8^5.373^6.004^~2, 3~^~03/01/2011~ -~18214~^~618~^9.358^12^0.214^~1~^~AS~^^^1^5.793^12.994^10^8.881^9.835^~2, 3~^~03/01/2011~ -~18214~^~619~^0.716^12^0.025^~1~^~AS~^^^1^0.509^0.999^6^0.654^0.777^~2, 3~^~03/01/2011~ -~18214~^~620~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.006^7^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~18214~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~624~^0.058^12^0.002^~1~^~A~^^^1^0.045^0.076^10^0.054^0.061^~2, 3~^~03/01/2011~ -~18214~^~625~^0.008^12^0.001^~1~^~A~^^^1^0.002^0.020^5^0.006^0.010^~1, 2, 3~^~03/01/2011~ -~18214~^~626~^0.036^12^0.002^~1~^~AS~^^^1^0.025^0.065^5^0.030^0.041^~2, 3~^~03/01/2011~ -~18214~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18214~^~629~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18214~^~630~^0.007^12^0.000^~1~^~AS~^^^1^0.006^0.009^10^0.007^0.008^~2, 3~^~03/01/2011~ -~18214~^~631~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18214~^~645~^5.744^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~646~^10.090^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~652~^0.014^12^0.001^~1~^~A~^^^1^0.007^0.028^5^0.011^0.016^~2, 3~^~03/01/2011~ -~18214~^~653~^0.026^12^0.001^~1~^~A~^^^1^0.024^0.035^5^0.024^0.029^~2, 3~^~03/01/2011~ -~18214~^~654~^0.023^12^0.001^~1~^~A~^^^1^0.018^0.033^7^0.021^0.025^~2, 3~^~03/01/2011~ -~18214~^~662~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.010^5^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~18214~^~663~^0.445^12^0.025^~1~^~A~^^^1^0.012^1.044^5^0.379^0.510^~2, 3~^~03/01/2011~ -~18214~^~664~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^10^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~18214~^~665~^0.091^12^0.004^~1~^~A~^^^1^0.068^0.113^8^0.082^0.101^~2, 3~^~03/01/2011~ -~18214~^~670~^0.017^12^0.001^~1~^~A~^^^1^0.014^0.022^8^0.016^0.019^~2, 3~^~03/01/2011~ -~18214~^~671~^0.005^12^0.000^~1~^~A~^^^1^0.002^0.006^7^0.004^0.006^~1, 2, 3~^~03/01/2011~ -~18214~^~672~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.010^7^0.007^0.008^~2, 3~^~03/01/2011~ -~18214~^~673~^0.033^12^0.002^~1~^~A~^^^1^0.025^0.055^5^0.028^0.037^~2, 3~^~03/01/2011~ -~18214~^~674~^5.244^12^0.118^~1~^~A~^^^1^3.590^6.894^9^4.977^5.510^~2, 3~^~03/01/2011~ -~18214~^~675~^9.250^12^0.210^~1~^~A~^^^1^5.709^12.868^10^8.782^9.717^~2, 3~^~03/01/2011~ -~18214~^~676~^0.004^12^0.000^~1~^~A~^^^1^0.004^0.005^10^0.004^0.005^~2, 3~^~03/01/2011~ -~18214~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18214~^~687~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18214~^~689~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.001^~2, 3~^~03/01/2011~ -~18214~^~693~^0.451^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~695~^0.091^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18214~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~851~^0.715^12^0.025^~1~^~A~^^^1^0.509^0.999^6^0.654^0.777^~2, 3~^~03/01/2011~ -~18214~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18214~^~853~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18214~^~858~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^7^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~18215~^~312~^0.302^6^0.009^~1~^~A~^^^1^0.276^0.331^5^0.278^0.326^~2, 3~^~12/01/2002~ -~18215~^~315~^0.822^6^0.011^~1~^~A~^^^1^0.800^0.867^5^0.795^0.849^~2, 3~^~12/01/2002~ -~18215~^~404~^0.552^6^0.028^~1~^~A~^^^1^0.484^0.640^5^0.480^0.625^~2, 3~^~12/01/2002~ -~18215~^~405~^0.294^6^0.010^~1~^~A~^^^1^0.246^0.314^5^0.268^0.321^~2, 3~^~12/01/2002~ -~18215~^~406~^5.831^6^0.144^~1~^~A~^^^1^5.502^6.371^5^5.460^6.201^~2, 3~^~12/01/2002~ -~18215~^~410~^0.485^3^0.018^~1~^~A~^^^1^0.450^0.507^2^0.408^0.562^~2, 3~^~12/01/2002~ -~18215~^~415~^0.151^6^0.007^~1~^~A~^^^1^0.126^0.175^5^0.134^0.169^~2, 3~^~12/01/2002~ -~18215~^~501~^0.134^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~502~^0.408^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~503~^0.446^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~504~^0.841^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~505~^0.403^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~506~^0.178^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~507~^0.196^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~508~^0.652^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~509~^0.475^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~510~^0.527^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~511~^1.197^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~512~^0.309^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~513~^0.474^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~ -~18215~^~514~^1.227^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~515~^3.167^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~516~^0.665^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~517~^0.851^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~518~^0.629^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~ -~18215~^~606~^4.406^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~613~^3.307^3^0.370^~1~^~A~^^^1^2.570^3.740^2^1.714^4.900^~2, 3~^~12/01/2002~ -~18215~^~614~^0.550^2^^~1~^~A~^^^1^0.530^0.570^1^^^^~12/01/2002~ -~18215~^~615~^0.170^3^0.006^~1~^~A~^^^1^0.160^0.180^2^0.145^0.195^~2, 3~^~12/01/2002~ -~18215~^~617~^12.770^3^0.216^~1~^~A~^^^1^12.370^13.110^2^11.842^13.698^~2, 3~^~12/01/2002~ -~18215~^~618~^5.093^3^0.086^~1~^~A~^^^1^4.970^5.260^2^4.721^5.465^~2, 3~^~12/01/2002~ -~18215~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~624~^0.380^3^0.012^~1~^~A~^^^1^0.360^0.400^2^0.330^0.430^~2, 3~^~12/01/2002~ -~18215~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~628~^0.233^3^0.009^~1~^~A~^^^1^0.220^0.250^2^0.195^0.271^~2, 3~^~12/01/2002~ -~18215~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~645~^13.003^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~646~^5.093^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~ -~18215~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18215~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18216~^~312~^0.255^4^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~315~^2.475^4^0.168^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~404~^0.243^16^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~405~^0.145^16^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~406~^1.040^16^0.096^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~410~^0.676^16^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~415~^0.210^16^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~501~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~502~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~503~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~504~^0.556^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~505~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~507~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~508~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~509~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~510~^0.404^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~511~^0.366^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~512~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~513~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~514~^0.564^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~515~^2.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~516~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~517~^0.822^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~518~^0.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~606~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~613~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~614~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~617~^0.146^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~618~^0.479^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~619~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~626~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~628~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18216~^~645~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18216~^~646~^0.557^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~312~^0.060^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~315~^0.650^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~404~^0.387^12^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~405~^0.291^4^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~406~^3.892^4^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~410~^0.443^8^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~415~^0.115^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~501~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~502~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~503~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~504~^0.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~505~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~506~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~507~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~508~^0.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~509~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~510~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~511~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~512~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~513~^0.306^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~514~^0.404^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~515~^3.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~516~^0.343^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~517~^1.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~518~^0.485^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~606~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~613~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~617~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~618~^0.570^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~619~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18217~^~645~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18217~^~646~^0.603^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~312~^0.155^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18218~^~315~^0.600^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~404~^0.788^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18218~^~405~^0.618^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~406~^5.080^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~410~^0.435^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~415~^0.054^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~501~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~502~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~503~^0.472^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~504~^0.886^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~505~^0.389^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~506~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~507~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~508~^0.624^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~509~^0.397^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~510~^0.544^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~511~^0.544^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~512~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~513~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~514~^0.656^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~515~^3.666^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~516~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~517~^1.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~518~^0.673^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~606~^0.548^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~612~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~613~^0.423^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~614~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~617~^0.564^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~618~^0.427^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~619~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~620~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~626~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~645~^0.612^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18218~^~646~^0.473^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~312~^0.350^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~315~^3.500^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~404~^0.365^10^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~405~^0.271^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~406~^5.410^3^0.596^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~410~^1.235^8^0.041^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~415~^0.159^9^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~501~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~502~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~503~^0.489^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~504~^0.889^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~505~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~506~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~507~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~508~^0.620^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~509~^0.385^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~510~^0.597^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~511~^0.631^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~512~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~513~^0.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~514~^0.688^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~515~^4.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~516~^0.541^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~517~^1.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~518~^0.622^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~606~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~613~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~617~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~618~^0.618^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~619~^0.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~620~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~626~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18219~^~645~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18219~^~646~^0.653^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~312~^0.289^7^0.054^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~315~^1.130^4^0.154^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~404~^0.413^16^0.045^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~405~^0.273^16^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~406~^4.113^16^0.414^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~410~^0.693^12^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~415~^0.098^10^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~501~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~502~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~503~^0.462^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~504~^0.844^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~505~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~506~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~507~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~508~^0.596^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~509~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~510~^0.520^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~511~^0.435^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~512~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~513~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~514~^0.532^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~515~^4.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~516~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~517~^1.366^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~518~^0.586^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~606~^0.445^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~613~^0.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~614~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~617~^0.762^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~618~^1.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~619~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~626~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18220~^~645~^0.782^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18220~^~646~^1.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~312~^0.401^3^0.161^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~315~^0.738^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~404~^0.473^11^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~405~^0.284^11^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~406~^4.718^11^0.429^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~410~^0.484^8^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~415~^0.086^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18221~^~501~^0.132^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~502~^0.361^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~503~^0.445^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~504~^0.796^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~505~^0.337^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~506~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~507~^0.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~508~^0.569^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~509~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~510~^0.529^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~511~^0.459^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~512~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~513~^0.425^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~514~^0.634^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~515~^3.525^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~516~^0.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~517~^1.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~518~^0.581^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~606~^0.453^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~612~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~613~^0.357^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~614~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~617~^0.879^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~618~^1.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~619~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~626~^0.025^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~628~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18221~^~645~^0.907^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18221~^~646~^1.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18222~^~312~^0.265^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~315~^1.064^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~404~^0.422^9^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~405~^0.299^9^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~406~^5.083^9^0.340^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~410~^0.517^8^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~415~^0.103^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~501~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~502~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~503~^0.489^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~504~^0.884^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~505~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~506~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~507~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~508~^0.615^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~509~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~510~^0.571^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~511~^0.533^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~512~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~513~^0.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~514~^0.628^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~515~^4.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~516~^0.484^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~517~^1.366^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~518~^0.613^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~606~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~613~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~614~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~617~^0.526^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~618~^0.858^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~626~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~645~^0.544^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18222~^~646~^0.910^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~312~^0.227^9^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~315~^0.552^7^0.033^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~404~^0.538^9^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~405~^0.418^9^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~406~^4.430^9^0.119^~1~^^^^^^^^^^^~08/01/1992~ -~18223~^~410~^0.407^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~415~^0.037^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~501~^0.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~502~^0.221^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~503~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~504~^0.541^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~505~^0.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~506~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~507~^0.159^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~508~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~509~^0.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~510~^0.333^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~511~^0.307^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~512~^0.167^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~513~^0.246^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~514~^0.345^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~515~^2.482^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~516~^0.264^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~517~^0.858^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~518~^0.399^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18223~^~606~^2.912^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~ -~18223~^~607~^0.014^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~608~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~609~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~610~^0.009^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~611~^0.010^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~612~^0.058^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~613~^1.439^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~614~^0.673^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~617~^5.390^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~618~^4.516^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~619~^0.334^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~620~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18223~^~626~^0.074^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18223~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18223~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18223~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18223~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18223~^~645~^5.485^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18223~^~646~^4.867^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~ -~18224~^~312~^0.245^12^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~315~^0.439^8^0.022^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~404~^0.404^15^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~405~^0.399^15^0.039^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~406~^4.625^15^0.426^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~410~^0.605^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~415~^0.047^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~501~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~502~^0.512^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~503~^0.610^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~504~^1.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~505~^0.684^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~506~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~507~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~508~^0.668^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~509~^0.471^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~510~^0.684^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~511~^0.649^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~512~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~513~^0.606^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~514~^0.944^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~515~^3.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~516~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~517~^1.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~518~^0.768^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18224~^~606~^1.376^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~612~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~613~^0.973^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~614~^0.386^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~617~^2.678^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~618~^2.114^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~619~^0.143^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~620~^0.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~621~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~626~^0.065^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~627~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~629~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~645~^2.755^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18224~^~646~^2.310^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18225~^~312~^0.096^4^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~315~^0.635^4^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~404~^0.612^5^0.172^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~405~^0.494^5^0.060^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~406~^3.570^5^0.205^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~410~^0.585^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~415~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~501~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~502~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~503~^0.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~504~^0.649^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~505~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~506~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~507~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~508~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~509~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~510~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~511~^0.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~512~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~513~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~514~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~515~^2.729^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~516~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~517~^0.972^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~518~^0.459^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18225~^~606~^5.987^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~607~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~608~^0.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~609~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~610~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~611~^0.017^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~612~^0.202^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~613~^3.063^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~614~^2.602^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~617~^12.191^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~618~^2.702^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~619~^0.161^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~645~^12.236^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18225~^~646~^2.863^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~312~^0.461^21^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~315~^5.366^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18226~^~404~^0.427^14^0.056^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~405~^0.289^14^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~406~^1.581^21^0.103^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~410~^0.569^17^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~415~^0.271^21^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~606~^0.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~613~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~614~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~617~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~618~^0.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~619~^0.048^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18226~^~645~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18226~^~646~^0.397^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~312~^0.495^5^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~315~^2.371^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~404~^0.316^6^0.035^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~405~^0.223^6^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~406~^2.474^6^0.528^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~410~^0.558^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~415~^0.190^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18227~^~606~^1.287^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18227~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18227~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~613~^0.921^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~614~^0.352^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~617~^3.215^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~618~^3.283^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~619~^0.318^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~626~^0.037^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~628~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~645~^3.270^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18227~^~646~^3.608^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18228~^~312~^0.139^12^0.003^~1~^~A~^^^1^0.130^0.150^5^0.130^0.148^~2, 3~^~02/01/2013~ -~18228~^~315~^0.686^12^0.023^~1~^~A~^^^1^0.561^0.930^5^0.626^0.746^~2, 3~^~07/01/2014~ -~18228~^~404~^0.702^6^0.035^~1~^~A~^^^1^0.530^0.780^2^0.552^0.853^~2, 3~^~07/01/2014~ -~18228~^~405~^0.487^6^0.014^~1~^~A~^^^1^0.400^0.520^2^0.428^0.546^~2, 3~^~07/01/2014~ -~18228~^~406~^6.442^6^0.213^~1~^~A~^^^1^5.240^6.980^2^5.525^7.359^~2, 3~^~07/01/2014~ -~18228~^~410~^0.536^4^0.042^~1~^~A~^^^1^0.490^0.605^1^0.025^1.047^~2, 3~^~02/01/2013~ -~18228~^~415~^0.086^6^0.003^~1~^~A~^^^1^0.080^0.090^2^0.073^0.100^~2, 3~^~02/01/2013~ -~18228~^~501~^0.116^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~502~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~503~^0.333^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~504~^0.652^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~505~^0.172^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~506~^0.147^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~507~^0.232^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~508~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~509~^0.182^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~510~^0.399^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~511~^0.349^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~512~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~513~^0.318^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~514~^0.415^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~515~^3.158^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~516~^0.344^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~517~^1.046^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~518~^0.445^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18228~^~605~^0.167^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18228~^~606~^1.653^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18228~^~607~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.017^2^-0.005^0.015^~1, 2, 3~^~07/01/2014~ -~18228~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18228~^~609~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~02/01/2013~ -~18228~^~610~^0.008^6^0.001^~1~^~A~^^^1^0.007^0.010^2^0.004^0.012^~2, 3~^~02/01/2013~ -~18228~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.005^~2, 3~^~02/01/2013~ -~18228~^~612~^0.013^6^0.002^~1~^~A~^^^1^0.008^0.015^2^0.005^0.021^~2, 3~^~07/01/2014~ -~18228~^~613~^1.050^6^0.033^~1~^~A~^^^1^0.979^1.093^2^0.907^1.193^~2, 3~^~02/01/2013~ -~18228~^~614~^0.490^6^0.081^~1~^~A~^^^1^0.328^0.627^2^0.141^0.840^~2, 3~^~07/01/2014~ -~18228~^~615~^0.026^6^0.000^~1~^~A~^^^1^0.026^0.027^2^0.025^0.028^~2, 3~^~02/01/2013~ -~18228~^~617~^1.926^6^0.081^~1~^~AS~^^^1^1.758^2.037^2^1.580^2.271^~2, 3~^~07/01/2014~ -~18228~^~618~^4.272^6^0.182^~1~^~AS~^^^1^3.858^5.282^2^3.489^5.055^~2, 3~^~07/01/2014~ -~18228~^~619~^0.553^6^0.027^~1~^~AS~^^^1^0.258^0.621^2^0.443^0.663^~2, 3~^~07/01/2014~ -~18228~^~620~^0.006^6^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.005^0.018^~2, 3~^~02/01/2013~ -~18228~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18228~^~624~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.029^2^0.022^0.030^~2, 3~^~02/01/2013~ -~18228~^~626~^0.010^6^0.001^~1~^~AS~^^^1^0.009^0.012^2^0.008^0.012^~2, 3~^~02/01/2013~ -~18228~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~628~^0.038^6^0.004^~1~^~A~^^^1^0.031^0.046^2^0.021^0.056^~2, 3~^~02/01/2013~ -~18228~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~630~^0.006^6^0.001^~1~^~AS~^^^1^0.000^0.008^2^-0.001^0.012^~2, 3~^~07/01/2014~ -~18228~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~645~^1.986^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18228~^~646~^4.835^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18228~^~652~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~02/01/2013~ -~18228~^~653~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.008^0.011^~2, 3~^~02/01/2013~ -~18228~^~654~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~02/01/2013~ -~18228~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~663~^0.150^6^0.078^~1~^~A~^^^1^0.005^0.293^2^-0.186^0.486^~2, 3~^~07/01/2014~ -~18228~^~664~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~02/01/2013~ -~18228~^~665~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.017^2^0.010^0.020^~2, 3~^~02/01/2013~ -~18228~^~670~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.011^~2, 3~^~02/01/2013~ -~18228~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2008~ -~18228~^~672~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.002^0.005^~2, 3~^~04/01/2008~ -~18228~^~673~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.012^2^0.008^0.012^~2, 3~^~02/01/2013~ -~18228~^~674~^1.776^6^0.019^~1~^~A~^^^1^1.744^1.972^2^1.698^1.854^~2, 3~^~07/01/2014~ -~18228~^~675~^4.250^6^0.182^~1~^~A~^^^1^3.836^5.264^2^3.467^5.033^~2, 3~^~07/01/2014~ -~18228~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.002^0.005^~1, 2, 3~^~02/01/2013~ -~18228~^~685~^0.018^6^0.002^~1~^~A~^^^1^0.008^0.023^2^0.010^0.026^~2, 3~^~02/01/2013~ -~18228~^~687~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.003^0.006^~2, 3~^~02/01/2013~ -~18228~^~689~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.003^~2, 3~^~04/01/2008~ -~18228~^~693~^0.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18228~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~18228~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18228~^~851~^0.535^6^0.026^~1~^~A~^^^1^0.248^0.598^2^0.432^0.637^~2, 3~^~07/01/2014~ -~18228~^~852~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~02/01/2013~ -~18228~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18228~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~312~^0.104^12^0.003^~1~^~A~^^^1^0.093^0.114^5^0.096^0.112^~2, 3~^~07/01/2014~ -~18229~^~315~^0.491^12^0.015^~1~^~A~^^^1^0.437^0.553^5^0.452^0.530^~2, 3~^~07/01/2014~ -~18229~^~404~^0.416^6^0.018^~1~^~A~^^^1^0.370^0.440^2^0.340^0.492^~2, 3~^~07/01/2014~ -~18229~^~405~^0.456^6^0.045^~1~^~A~^^^1^0.370^0.580^2^0.260^0.651^~2, 3~^~07/01/2014~ -~18229~^~406~^4.352^6^0.133^~1~^~A~^^^1^3.010^4.950^2^3.797^4.908^~2, 3~^~07/01/2014~ -~18229~^~410~^0.417^4^0.008^~1~^~A~^^^1^0.350^0.440^1^0.333^0.500^~2, 3~^~07/01/2014~ -~18229~^~415~^0.063^6^0.003^~1~^~A~^^^1^0.050^0.070^3^0.052^0.073^~2, 3~^~02/01/2013~ -~18229~^~501~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~502~^0.193^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~503~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~504~^0.471^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~505~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~506~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~507~^0.172^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~508~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~509~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~510~^0.294^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~511~^0.252^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~512~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~513~^0.225^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~514~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~515~^2.298^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~516~^0.252^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~517~^0.748^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~518~^0.316^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18229~^~605~^1.076^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~606~^5.562^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~607~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^2^0.004^0.011^~2, 3~^~02/01/2013~ -~18229~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~609~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~02/01/2013~ -~18229~^~610~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~02/01/2013~ -~18229~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^2^0.001^0.008^~2, 3~^~02/01/2013~ -~18229~^~612~^0.047^6^0.001^~1~^~A~^^^1^0.019^0.055^2^0.041^0.052^~2, 3~^~07/01/2014~ -~18229~^~613~^3.170^6^0.059^~1~^~A~^^^1^2.784^3.334^2^2.918^3.421^~2, 3~^~07/01/2014~ -~18229~^~614~^2.099^6^0.090^~1~^~A~^^^1^1.027^2.472^2^1.714^2.484^~2, 3~^~07/01/2014~ -~18229~^~615~^0.081^6^0.001^~1~^~A~^^^1^0.080^0.083^2^0.079^0.084^~2, 3~^~02/01/2013~ -~18229~^~617~^6.399^6^0.122^~1~^~AS~^^^1^5.369^6.784^2^5.885^6.913^~2, 3~^~07/01/2014~ -~18229~^~618~^11.571^6^0.142^~1~^~AS~^^^1^10.608^15.313^4^11.158^11.983^~2, 3~^~07/01/2014~ -~18229~^~619~^1.546^6^0.071^~1~^~AS~^^^1^0.848^2.076^2^1.286^1.807^~2, 3~^~07/01/2014~ -~18229~^~620~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.012^2^0.010^0.011^~2, 3~^~02/01/2013~ -~18229~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~624~^0.076^6^0.001^~1~^~A~^^^1^0.073^0.087^3^0.073^0.080^~2, 3~^~07/01/2014~ -~18229~^~626~^0.024^6^0.001^~1~^~AS~^^^1^0.023^0.026^2^0.021^0.028^~2, 3~^~07/01/2014~ -~18229~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~628~^0.106^6^0.005^~1~^~A~^^^1^0.076^0.118^3^0.092^0.121^~2, 3~^~07/01/2014~ -~18229~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~630~^0.010^6^0.001^~1~^~AS~^^^1^0.002^0.012^4^0.008^0.012^~2, 3~^~07/01/2014~ -~18229~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18229~^~645~^6.553^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~646~^13.137^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.007^~2, 3~^~04/01/2008~ -~18229~^~653~^0.029^6^0.001^~1~^~A~^^^1^0.026^0.031^2^0.026^0.032^~2, 3~^~02/01/2013~ -~18229~^~654~^0.029^6^0.000^~1~^~A~^^^1^0.028^0.030^3^0.028^0.030^~2, 3~^~02/01/2013~ -~18229~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.000^0.006^2^0.003^0.006^~1, 2, 3~^~07/01/2014~ -~18229~^~663~^0.993^6^0.041^~1~^~A~^^^1^0.008^1.303^2^0.815^1.171^~2, 3~^~07/01/2014~ -~18229~^~664~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.007^3^0.003^0.007^~1, 2, 3~^~07/01/2014~ -~18229~^~665~^0.074^6^0.005^~1~^~A~^^^1^0.064^0.084^2^0.054^0.094^~2, 3~^~07/01/2014~ -~18229~^~670~^0.017^6^0.001^~1~^~A~^^^1^0.012^0.022^4^0.014^0.019^~2, 3~^~02/01/2013~ -~18229~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.002^0.005^~1, 2, 3~^~07/01/2014~ -~18229~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.008^0.011^~2, 3~^~02/01/2013~ -~18229~^~673~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.024^2^0.018^0.022^~2, 3~^~07/01/2014~ -~18229~^~674~^5.406^6^0.087^~1~^~A~^^^1^5.186^5.597^2^5.048^5.765^~2, 3~^~07/01/2014~ -~18229~^~675~^11.480^6^0.140^~1~^~A~^^^1^10.516^15.223^4^11.072^11.888^~2, 3~^~07/01/2014~ -~18229~^~676~^0.005^6^0.000^~1~^~A~^^^1^0.002^0.005^2^0.004^0.005^~1, 2, 3~^~02/01/2013~ -~18229~^~685~^0.062^6^0.005^~1~^~A~^^^1^0.023^0.077^3^0.045^0.078^~2, 3~^~07/01/2014~ -~18229~^~687~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.015^2^0.011^0.013^~2, 3~^~04/01/2008~ -~18229~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2013~ -~18229~^~693~^1.002^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~695~^0.074^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18229~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~851~^1.485^6^0.070^~1~^~A~^^^1^0.825^2.014^3^1.242^1.728^~2, 3~^~07/01/2014~ -~18229~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18229~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18229~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2013~ -~18229~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18230~^~312~^0.082^5^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~315~^0.290^5^0.066^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~404~^0.446^7^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~405~^0.684^7^0.069^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~406~^3.766^7^0.101^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~410~^0.509^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~415~^0.049^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~501~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~502~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~503~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~504~^0.649^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~505~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~506~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~507~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~508~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~509~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~510~^0.398^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~511~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~512~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~513~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~514~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~515~^2.977^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~516~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~517~^1.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~518~^0.470^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~606~^6.125^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~607~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~608~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~609~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~610~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~611~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~612~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~613~^2.911^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~614~^2.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18230~^~617~^11.165^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~618~^2.415^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~619~^0.153^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~626~^0.058^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~645~^11.254^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18230~^~646~^2.567^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18231~^~312~^0.324^6^0.047^~1~^~A~^^^1^0.244^0.546^5^0.203^0.445^~2, 3~^~12/01/2002~ -~18231~^~315~^0.784^6^0.020^~1~^~A~^^^1^0.723^0.829^5^0.733^0.835^~2, 3~^~12/01/2002~ -~18231~^~404~^0.489^6^0.011^~1~^~A~^^^1^0.456^0.525^5^0.462^0.517^~2, 3~^~12/01/2002~ -~18231~^~405~^0.271^6^0.008^~1~^~A~^^^1^0.237^0.288^5^0.250^0.291^~2, 3~^~12/01/2002~ -~18231~^~406~^6.114^6^0.073^~1~^~A~^^^1^5.965^6.447^5^5.926^6.302^~2, 3~^~12/01/2002~ -~18231~^~410~^0.476^3^0.022^~1~^~A~^^^1^0.432^0.501^2^0.381^0.571^~2, 3~^~12/01/2002~ -~18231~^~415~^0.148^6^0.004^~1~^~A~^^^1^0.135^0.159^5^0.138^0.158^~2, 3~^~12/01/2002~ -~18231~^~501~^0.125^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~502~^0.354^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~503~^0.400^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~504~^0.762^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~505~^0.339^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~506~^0.170^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~507~^0.191^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~508~^0.582^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~509~^0.408^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~510~^0.471^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~511~^0.933^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~512~^0.272^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~513~^0.412^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~514~^0.959^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~515~^3.066^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~516~^0.553^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~517~^0.892^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~518~^0.566^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18231~^~606~^4.803^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18231~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~613~^3.008^3^0.408^~1~^~A~^^^1^2.651^3.892^2^1.323^4.831^~2, 3~^~06/01/2015~ -~18231~^~614~^1.222^3^0.360^~1~^~A~^^^1^0.534^1.676^2^-0.299^2.799^~2, 3~^~06/01/2015~ -~18231~^~615~^0.186^3^0.005^~1~^~A~^^^1^0.180^0.196^2^0.168^0.212^~2, 3~^~06/01/2015~ -~18231~^~617~^13.256^3^0.433^~1~^~A~^^^1^13.074^14.423^2^11.695^15.423^~2, 3~^~06/01/2015~ -~18231~^~618~^4.551^3^0.076^~1~^~A~^^^1^4.513^4.773^2^4.328^4.982^~2, 3~^~06/01/2015~ -~18231~^~619~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2002~ -~18231~^~624~^0.388^3^0.021^~1~^~A~^^^1^0.374^0.439^2^0.306^0.488^~2, 3~^~06/01/2015~ -~18231~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~628~^0.212^3^0.002^~1~^~A~^^^1^0.213^0.221^2^0.207^0.227^~2, 3~^~06/01/2015~ -~18231~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~645~^13.468^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18231~^~646~^4.551^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18231~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18231~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2002~ -~18232~^~312~^0.274^12^0.004^~1~^~A~^^^1^0.168^0.300^10^0.266^0.282^~2, 3~^~05/01/2014~ -~18232~^~315~^1.549^12^0.051^~1~^~A~^^^1^1.200^2.960^7^1.427^1.672^~2, 3~^~05/01/2014~ -~18232~^~404~^0.284^6^0.012^~1~^~A~^^^1^0.240^0.610^2^0.233^0.335^~2, 3~^~05/01/2014~ -~18232~^~405~^0.146^6^0.014^~1~^~A~^^^1^0.100^0.490^2^0.090^0.202^~2, 3~^~05/01/2014~ -~18232~^~406~^4.022^6^0.174^~1~^~A~^^^1^3.580^7.640^2^3.293^4.752^~2, 3~^~05/01/2014~ -~18232~^~410~^0.577^4^0.021^~1~^~A~^^^1^0.490^0.620^1^0.318^0.836^~2, 3~^~05/01/2014~ -~18232~^~415~^0.244^6^0.013^~1~^~A~^^^1^0.190^0.280^2^0.193^0.295^~2, 3~^~05/01/2014~ -~18232~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~502~^0.265^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~503~^0.306^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~504~^0.586^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~505~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~506~^0.145^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~507~^0.185^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~508~^0.396^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~509~^0.175^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~510~^0.386^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~511~^0.411^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~512~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~513~^0.351^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~514~^0.486^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~515~^2.550^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~516~^0.361^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~517~^0.832^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~518~^0.391^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18232~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~606~^3.210^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~608~^0.005^6^0.005^~1~^~A~^^^1^0.000^0.079^2^-0.016^0.025^~1, 2, 3~^~05/01/2014~ -~18232~^~609~^0.058^6^0.058^~1~^~A~^^^1^0.000^0.967^2^-0.190^0.307^~1, 2, 3~^~05/01/2014~ -~18232~^~610~^0.047^6^0.046^~1~^~A~^^^1^0.000^0.771^2^-0.152^0.245^~1, 2, 3~^~05/01/2014~ -~18232~^~611~^0.347^6^0.343^~1~^~A~^^^1^0.000^5.737^2^-1.129^1.822^~1, 2, 3~^~05/01/2014~ -~18232~^~612~^0.150^6^0.132^~1~^~A~^^^1^0.012^2.241^2^-0.418^0.718^~2, 3~^~05/01/2014~ -~18232~^~613~^1.812^6^0.049^~1~^~A~^^^1^1.550^3.229^3^1.665^1.959^~2, 3~^~05/01/2014~ -~18232~^~614~^0.657^6^0.025^~1~^~A~^^^1^0.477^0.891^2^0.553^0.761^~2, 3~^~05/01/2014~ -~18232~^~615~^0.049^6^0.003^~1~^~A~^^^1^0.021^0.068^2^0.038^0.061^~2, 3~^~05/01/2014~ -~18232~^~617~^3.403^6^0.151^~1~^~AS~^^^1^2.034^4.598^2^2.756^4.049^~2, 3~^~05/01/2014~ -~18232~^~618~^7.474^6^0.521^~1~^~AS~^^^1^0.896^9.918^2^5.487^9.460^~2, 3~^~05/01/2014~ -~18232~^~619~^0.987^6^0.075^~1~^~AS~^^^1^0.039^1.319^3^0.720^1.254^~2, 3~^~05/01/2014~ -~18232~^~620~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.009^3^0.004^0.008^~1, 2, 3~^~05/01/2014~ -~18232~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~624~^0.047^6^0.003^~1~^~A~^^^1^0.006^0.064^2^0.033^0.060^~2, 3~^~05/01/2014~ -~18232~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~626~^0.014^6^0.001^~1~^~AS~^^^1^0.008^0.019^3^0.012^0.017^~2, 3~^~10/01/2008~ -~18232~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~628~^0.042^6^0.002^~1~^~A~^^^1^0.015^0.051^2^0.034^0.051^~2, 3~^~05/01/2014~ -~18232~^~629~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.003^~1, 2, 3~^~10/01/2008~ -~18232~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.000^0.004^4^0.002^0.004^~2, 3~^~05/01/2014~ -~18232~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18232~^~645~^3.470^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~646~^8.474^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~10/01/2008~ -~18232~^~653~^0.015^6^0.001^~1~^~A~^^^1^0.006^0.020^2^0.012^0.018^~2, 3~^~05/01/2014~ -~18232~^~654~^0.020^6^0.001^~1~^~A~^^^1^0.008^0.026^2^0.015^0.024^~2, 3~^~05/01/2014~ -~18232~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~663~^0.011^6^0.001^~1~^~A~^^^1^0.006^0.027^3^0.007^0.015^~2, 3~^~05/01/2014~ -~18232~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~665~^0.023^6^0.002^~1~^~A~^^^1^0.007^0.037^4^0.017^0.029^~2, 3~^~05/01/2014~ -~18232~^~670~^0.009^6^0.001^~1~^~A~^^^1^0.000^0.015^4^0.006^0.013^~1, 2, 3~^~05/01/2014~ -~18232~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18232~^~672~^0.006^6^0.000^~1~^~A~^^^1^0.000^0.008^2^0.004^0.008^~1, 2, 3~^~05/01/2014~ -~18232~^~673~^0.014^6^0.001^~1~^~A~^^^1^0.008^0.019^3^0.012^0.017^~2, 3~^~10/01/2008~ -~18232~^~674~^3.392^6^0.150^~1~^~A~^^^1^2.028^4.586^2^2.749^4.035^~2, 3~^~05/01/2014~ -~18232~^~675~^7.442^6^0.519^~1~^~A~^^^1^0.889^9.866^2^5.469^9.414^~2, 3~^~05/01/2014~ -~18232~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.004^4^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~18232~^~685~^0.031^6^0.004^~1~^~A~^^^1^0.002^0.055^4^0.021^0.041^~1, 2, 3~^~05/01/2014~ -~18232~^~687~^0.008^6^0.000^~1~^~A~^^^1^0.002^0.010^2^0.006^0.010^~1, 2, 3~^~10/01/2008~ -~18232~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.001^~2, 3~^~05/01/2014~ -~18232~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18232~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18232~^~851~^0.956^6^0.072^~1~^~A~^^^1^0.037^1.264^3^0.702^1.209^~2, 3~^~05/01/2014~ -~18232~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~18232~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18232~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~18232~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18233~^~312~^0.160^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~315~^1.083^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~404~^0.358^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~405~^0.427^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~406~^3.185^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~410~^0.622^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~415~^0.261^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~501~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~502~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~503~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~504~^0.698^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~505~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~506~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~507~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~508~^0.472^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~509~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~510~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~511~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~512~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~513~^0.322^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~514~^0.506^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~515~^2.996^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~516~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~517~^1.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~518~^0.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18233~^~606~^4.129^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~607~^0.027^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~608~^0.014^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~609~^0.011^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~610~^0.017^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~611~^0.017^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~612~^0.107^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~613~^2.639^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~614~^1.271^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~617~^10.196^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~618~^8.505^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~619~^0.637^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18233~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~626~^0.119^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~645~^10.351^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18233~^~646~^9.166^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~312~^0.055^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~315~^0.701^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~404~^0.389^4^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~405~^0.293^4^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~406~^5.877^3^0.272^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~410~^0.564^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~415~^0.137^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~501~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~502~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~503~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~504~^0.908^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~505~^0.437^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~506~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~507~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~508~^0.674^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~509~^0.464^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~510~^0.575^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~511~^1.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~512~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~513~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~514~^1.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~515~^3.667^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~516~^0.633^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~517~^1.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~518~^0.674^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18234~^~606~^4.602^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~609~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~611~^0.005^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18234~^~612~^0.064^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~613~^2.809^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~614~^1.335^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~617~^11.594^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~618~^8.436^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~619~^0.411^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~626~^0.061^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~628~^0.097^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~645~^11.766^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18234~^~646~^8.862^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18235~^~312~^0.420^4^0.006^~1~^~A~^^^1^0.407^0.432^3^0.403^0.438^~2, 3~^~10/01/2008~ -~18235~^~315~^2.152^4^0.018^~1~^~A~^^^1^2.110^2.190^3^2.097^2.208^~2, 3~^~10/01/2008~ -~18235~^~404~^0.182^4^0.014^~1~^~A~^^^1^0.140^0.200^3^0.137^0.228^~2, 3~^~10/01/2008~ -~18235~^~405~^0.021^4^0.003^~1~^~A~^^^1^0.015^0.030^3^0.011^0.031^~1, 2, 3~^~10/01/2008~ -~18235~^~406~^4.630^4^0.114^~1~^~A~^^^1^4.350^4.900^3^4.268^4.992^~2, 3~^~10/01/2008~ -~18235~^~410~^0.832^4^0.018^~1~^~A~^^^1^0.790^0.880^3^0.774^0.891^~2, 3~^~10/01/2008~ -~18235~^~415~^0.185^4^0.013^~1~^~A~^^^1^0.160^0.220^3^0.143^0.227^~2, 3~^~10/01/2008~ -~18235~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~502~^0.301^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~503~^0.364^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~504~^0.703^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~505~^0.271^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~506~^0.170^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~508~^0.480^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~509~^0.194^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~510~^0.465^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~511~^0.480^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~512~^0.238^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~513~^0.393^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~514~^0.543^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~515~^3.065^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~516~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~517~^1.004^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~518~^0.461^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18235~^~605~^0.199^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~606~^2.063^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~612~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~10/01/2008~ -~18235~^~613~^1.361^4^0.052^~1~^~A~^^^1^1.285^1.513^3^1.195^1.528^~2, 3~^~10/01/2008~ -~18235~^~614~^0.584^4^0.025^~1~^~A~^^^1^0.545^0.656^3^0.506^0.662^~2, 3~^~10/01/2008~ -~18235~^~615~^0.040^4^0.002^~1~^~A~^^^1^0.035^0.046^3^0.033^0.047^~2, 3~^~10/01/2008~ -~18235~^~617~^3.195^4^0.123^~1~^~AS~^^^1^3.023^3.559^3^2.803^3.586^~2, 3~^~10/01/2008~ -~18235~^~618~^6.096^4^0.236^~1~^~AS~^^^1^5.759^6.793^3^5.345^6.847^~2, 3~^~10/01/2008~ -~18235~^~619~^0.843^4^0.036^~1~^~AS~^^^1^0.785^0.944^3^0.729^0.958^~2, 3~^~10/01/2008~ -~18235~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~624~^0.038^4^0.002^~1~^~A~^^^1^0.034^0.043^3^0.032^0.044^~2, 3~^~10/01/2008~ -~18235~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~626~^0.011^4^0.001^~1~^~AS~^^^1^0.010^0.013^3^0.009^0.013^~2, 3~^~10/01/2008~ -~18235~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~628~^0.033^4^0.008^~1~^~A~^^^1^0.011^0.045^3^0.009^0.057^~2, 3~^~10/01/2008~ -~18235~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.003^~2, 3~^~10/01/2008~ -~18235~^~631~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~10/01/2008~ -~18235~^~645~^3.248^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~646~^6.945^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~652~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~10/01/2008~ -~18235~^~653~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.013^~2, 3~^~10/01/2008~ -~18235~^~654~^0.014^4^0.002^~1~^~A~^^^1^0.010^0.017^3^0.009^0.019^~2, 3~^~10/01/2008~ -~18235~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~663~^0.174^4^0.008^~1~^~A~^^^1^0.158^0.195^3^0.149^0.198^~2, 3~^~10/01/2008~ -~18235~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~665~^0.025^4^0.002^~1~^~A~^^^1^0.020^0.030^3^0.017^0.033^~2, 3~^~10/01/2008~ -~18235~^~670~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~10/01/2008~ -~18235~^~671~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~10/01/2008~ -~18235~^~672~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.006^3^0.003^0.006^~2, 3~^~10/01/2008~ -~18235~^~673~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.013^~2, 3~^~10/01/2008~ -~18235~^~674~^3.021^4^0.117^~1~^~A~^^^1^2.851^3.364^3^2.650^3.392^~2, 3~^~10/01/2008~ -~18235~^~675~^6.063^4^0.234^~1~^~A~^^^1^5.730^6.755^3^5.318^6.809^~2, 3~^~10/01/2008~ -~18235~^~676~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~10/01/2008~ -~18235~^~685~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.009^0.015^~2, 3~^~10/01/2008~ -~18235~^~687~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.004^0.009^~2, 3~^~10/01/2008~ -~18235~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2008~ -~18235~^~693~^0.174^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18235~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~851~^0.831^4^0.035^~1~^~A~^^^1^0.773^0.929^3^0.719^0.943^~2, 3~^~10/01/2008~ -~18235~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18235~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~18236~^~312~^0.225^15^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~315~^0.944^11^0.254^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~404~^0.696^14^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~405~^0.468^14^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~406~^5.707^15^0.157^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~410~^0.467^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18236~^~415~^0.039^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18236~^~501~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~502~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~503~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~504~^0.639^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~505~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~506~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~507~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~508~^0.456^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~509~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~510~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~512~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~513~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~514~^0.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~515~^3.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~516~^0.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~517~^1.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~518~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~606~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~613~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~617~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~618~^0.683^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~619~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18236~^~645~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18236~^~646~^0.722^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~312~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~315~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~404~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~405~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~406~^1.567^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~410~^0.624^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~415~^0.075^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~501~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~502~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~503~^0.430^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~504~^0.718^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~505~^0.497^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~506~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~507~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~508~^0.466^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~509~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~510~^0.485^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~511~^0.473^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~512~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~513~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~514~^0.721^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~515~^1.801^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~516~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~517~^0.596^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~518~^0.589^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~606~^5.599^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~612~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~613~^3.601^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~614~^1.904^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~617~^10.973^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~618~^6.987^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~619~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~620~^0.065^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~621~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~626~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~628~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~629~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~645~^11.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18237~^~646~^7.380^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~312~^0.080^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~315~^0.330^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~404~^0.388^10^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~405~^0.241^10^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~406~^2.188^10^0.147^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~410~^0.861^8^0.022^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~415~^0.058^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~502~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~503~^0.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~504~^0.623^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~505~^0.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~506~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~507~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~508~^0.416^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~509~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~510~^0.410^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~511~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~512~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~513~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~514~^0.501^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~515~^2.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~516~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~517~^0.778^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~518~^0.440^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18239~^~606~^11.659^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~607~^0.595^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~608~^0.351^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~609~^0.205^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~610~^0.459^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~611~^0.514^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~612~^1.845^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~613~^5.023^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~614~^2.259^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~617~^4.822^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~618~^0.795^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~619~^0.289^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~620~^0.006^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~626~^0.429^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~629~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18239~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18239~^~645~^5.525^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18239~^~646~^1.094^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18240~^~312~^0.040^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~315~^0.210^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~404~^0.232^8^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~405~^0.164^8^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~406~^1.600^8^0.053^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~410~^0.596^8^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~415~^0.032^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~501~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~502~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~503~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~504~^0.556^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~505~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~506~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~507~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~508~^0.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~509~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~510~^0.368^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~511~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~512~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~513~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~514~^0.456^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~515~^1.970^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~516~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~517~^0.712^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~518~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~606~^4.994^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18240~^~607~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~608~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~609~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~610~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~611~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~612~^0.663^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~613~^2.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~614~^0.908^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~617~^2.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~618~^0.600^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~619~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~620~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~626~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18240~^~645~^2.393^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18240~^~646~^0.628^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~312~^0.100^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~315~^0.340^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~404~^0.523^8^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~405~^0.325^8^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~406~^2.160^8^0.074^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~410~^0.842^8^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~415~^0.073^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~501~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~502~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~503~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~504~^0.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~505~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~506~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~507~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~508~^0.455^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~509~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~510~^0.453^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~511~^0.363^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~512~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~513~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~514~^0.527^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~515~^2.585^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~516~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~517~^0.894^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~518~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18241~^~606~^10.628^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~607~^0.497^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~608~^0.293^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~609~^0.170^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~610~^0.382^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~611~^0.426^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~612~^1.553^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~613~^4.762^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~614~^2.198^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~617~^5.917^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~618~^2.069^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~619~^0.306^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~620~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~626~^0.363^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18241~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~629~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18241~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18241~^~645~^6.509^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18241~^~646~^2.384^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~312~^0.163^5^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~315~^0.500^4^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~404~^0.623^11^0.061^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~405~^0.272^11^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~406~^5.439^11^0.547^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~410~^0.429^12^0.049^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~415~^0.026^10^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~501~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~502~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~503~^0.456^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~504~^0.832^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~505~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~506~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~507~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~508~^0.586^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~509~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~510~^0.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~511~^0.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~512~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~513~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~514~^0.529^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~515~^4.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~516~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~517~^1.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~518~^0.579^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18242~^~606~^1.510^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~612~^0.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~613~^0.857^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~614~^0.613^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~617~^3.029^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~618~^1.204^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~619~^0.070^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~645~^3.059^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18242~^~646~^1.273^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18243~^~312~^0.168^5^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~315~^0.514^4^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~404~^0.506^46^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~405~^0.421^46^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~406~^4.646^39^0.060^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~410~^0.835^12^0.062^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~415~^0.083^10^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~501~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~502~^0.326^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~503~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~504~^0.774^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~505~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~506~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~507~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~508~^0.525^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~509~^0.331^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~510~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~511~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~512~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~513~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~514~^0.540^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~515~^3.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~516~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~517~^1.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~518~^0.527^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18243~^~606~^5.247^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~607~^0.092^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~608~^0.034^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~609~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~610~^0.045^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~611~^0.061^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~612~^0.282^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~613~^2.634^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~614~^2.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~617~^9.451^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~618~^2.227^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~619~^0.142^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~626~^0.047^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18243~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18243~^~645~^9.498^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18243~^~646~^2.368^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18244~^~312~^0.100^30^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~315~^0.362^30^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~404~^0.300^3^0.040^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~405~^0.263^3^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~406~^2.867^3^0.240^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~410~^0.396^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~415~^0.038^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~501~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~502~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~503~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~504~^0.532^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~505~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~506~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~507~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~508~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~509~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~510~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~511~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~512~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~513~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~514~^0.463^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~515~^1.882^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~516~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~517~^0.637^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~518~^0.376^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18244~^~606~^5.681^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18244~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~612~^0.109^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18244~^~613~^2.961^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~614~^2.602^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~617~^12.491^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~618~^2.772^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~619~^0.148^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~620~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~626~^0.022^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~629~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18244~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18244~^~645~^12.515^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18244~^~646~^2.933^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~312~^0.089^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~315~^0.351^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~404~^0.190^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~405~^0.260^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~406~^2.000^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~410~^0.304^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~415~^0.040^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~501~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~502~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~503~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~504~^0.644^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~505~^0.430^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~506~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~507~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~508~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~509~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~510~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~511~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~512~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~513~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~514~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~515~^2.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~516~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~517~^0.717^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~518~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18245~^~606~^6.794^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~607~^0.096^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~608~^0.028^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~609~^0.033^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~610~^0.075^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~611~^0.084^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~612~^0.372^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~613~^3.403^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~614~^2.646^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~615~^0.005^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~617~^11.226^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~618~^2.410^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~619~^0.139^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~620~^0.010^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~625~^0.022^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~626~^0.058^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18245~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18245~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18245~^~645~^11.313^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~646~^2.575^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18245~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~ -~18246~^~312~^0.065^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~315~^0.253^6^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~404~^0.263^20^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~405~^0.220^19^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~406~^1.992^16^0.074^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~410~^0.634^8^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18246~^~415~^0.043^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~502~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~503~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~504~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~505~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~506~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~507~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~508~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~509~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~510~^0.252^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~511~^0.209^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~512~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~513~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~514~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~515~^1.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~516~^0.178^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~517~^0.543^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~518~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18246~^~606~^4.860^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18246~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18246~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18246~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~612~^0.088^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~613~^2.668^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~614~^2.096^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~617~^9.947^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~618~^2.184^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~619~^0.108^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~620~^0.038^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~621~^0.012^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~626~^0.069^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~627~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~628~^0.008^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~629~^0.019^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18246~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/1994~ -~18246~^~645~^10.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18246~^~646~^2.364^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18248~^~312~^0.090^5^0.001^~1~^~A~^^^1^0.082^0.104^2^0.085^0.096^~2, 3~^~04/01/2014~ -~18248~^~315~^0.333^5^0.006^~1~^~A~^^^1^0.309^0.371^2^0.304^0.362^~2, 3~^~04/01/2014~ -~18248~^~404~^0.390^4^0.009^~1~^~A~^^^1^0.350^0.430^1^0.272^0.509^~2, 3~^~04/01/2014~ -~18248~^~405~^0.301^4^0.004^~1~^~A~^^^1^0.240^0.340^2^0.282^0.320^~2, 3~^~04/01/2014~ -~18248~^~406~^2.910^4^0.020^~1~^~A~^^^1^2.560^3.140^1^2.762^3.059^~2, 3~^~04/01/2014~ -~18248~^~410~^0.377^2^^~1~^~A~^^^1^0.290^0.430^^^^^~04/01/2014~ -~18248~^~415~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~04/01/2014~ -~18248~^~606~^11.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18248~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18248~^~609~^0.015^4^0.003^~1~^~A~^^^1^0.010^0.021^2^0.003^0.028^~2, 3~^~04/01/2014~ -~18248~^~610~^0.026^4^0.001^~1~^~A~^^^1^0.018^0.032^1^0.011^0.040^~2, 3~^~04/01/2014~ -~18248~^~611~^0.120^4^0.015^~1~^~A~^^^1^0.044^0.169^2^0.055^0.185^~2, 3~^~04/01/2014~ -~18248~^~612~^0.244^4^0.008^~1~^~A~^^^1^0.218^0.260^1^0.144^0.344^~2, 3~^~04/01/2014~ -~18248~^~613~^9.442^4^0.292^~1~^~A~^^^1^8.570^10.603^2^7.835^11.049^~2, 3~^~04/01/2014~ -~18248~^~614~^1.092^4^0.031^~1~^~A~^^^1^1.034^1.184^2^0.960^1.224^~2, 3~^~04/01/2014~ -~18248~^~615~^0.083^4^0.003^~1~^~A~^^^1^0.078^0.088^2^0.066^0.100^~2, 3~^~04/01/2014~ -~18248~^~617~^8.444^4^0.308^~1~^~AS~^^^1^7.342^9.165^2^7.084^9.803^~2, 3~^~04/01/2014~ -~18248~^~618~^3.637^4^0.121^~1~^~AS~^^^1^3.293^3.893^1^2.723^4.550^~2, 3~^~04/01/2014~ -~18248~^~619~^0.256^4^0.014^~1~^~AS~^^^1^0.240^0.318^1^0.085^0.428^~2, 3~^~04/01/2014~ -~18248~^~620~^0.014^4^0.000^~1~^~A~^^^1^0.004^0.020^2^0.012^0.016^~2, 3~^~04/01/2014~ -~18248~^~621~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^1^-0.015^0.017^~1, 2, 3~^~04/01/2014~ -~18248~^~624~^0.025^4^0.001^~1~^~A~^^^1^0.021^0.030^1^0.015^0.035^~2, 3~^~04/01/2014~ -~18248~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~626~^0.044^4^0.002^~1~^~AS~^^^1^0.030^0.052^2^0.036^0.052^~2, 3~^~04/01/2014~ -~18248~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~628~^0.048^4^0.004^~1~^~A~^^^1^0.038^0.056^2^0.029^0.068^~2, 3~^~04/01/2014~ -~18248~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18248~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~18248~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~645~^8.544^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~646~^3.915^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~652~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^1^0.010^0.015^~2, 3~^~04/01/2014~ -~18248~^~653~^0.024^4^0.001^~1~^~A~^^^1^0.022^0.027^2^0.018^0.030^~2, 3~^~04/01/2014~ -~18248~^~654~^0.021^4^0.001^~1~^~A~^^^1^0.019^0.023^2^0.015^0.026^~2, 3~^~04/01/2014~ -~18248~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~663~^0.056^4^0.008^~1~^~A~^^^1^0.035^0.112^1^-0.046^0.159^~2, 3~^~04/01/2014~ -~18248~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~665~^0.053^4^0.002^~1~^~A~^^^1^0.042^0.058^1^0.034^0.073^~2, 3~^~04/01/2014~ -~18248~^~670~^0.011^4^0.001^~1~^~A~^^^1^0.008^0.013^2^0.007^0.015^~2, 3~^~04/01/2014~ -~18248~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18248~^~672~^0.006^4^0.000^~1~^~A~^^^1^0.004^0.009^1^0.004^0.008^~2, 3~^~04/01/2014~ -~18248~^~673~^0.044^4^0.002^~1~^~A~^^^1^0.030^0.052^2^0.036^0.052^~2, 3~^~04/01/2014~ -~18248~^~674~^8.388^4^0.303^~1~^~A~^^^1^7.274^9.128^2^7.036^9.739^~2, 3~^~04/01/2014~ -~18248~^~675~^3.573^4^0.120^~1~^~A~^^^1^3.240^3.834^1^2.669^4.476^~2, 3~^~04/01/2014~ -~18248~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~685~^0.017^4^0.001^~1~^~A~^^^1^0.015^0.021^2^0.010^0.025^~2, 3~^~04/01/2014~ -~18248~^~687~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^1^0.005^0.010^~2, 3~^~04/01/2014~ -~18248~^~689~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^1^-0.007^0.009^~2, 3~^~04/01/2014~ -~18248~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18248~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~18248~^~851~^0.239^4^0.013^~1~^~A~^^^1^0.224^0.297^1^0.079^0.399^~2, 3~^~04/01/2014~ -~18248~^~852~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.007^0.009^~1, 2, 3~^~04/01/2014~ -~18248~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18248~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18249~^~312~^0.260^2^^~1~^~A~^^^1^0.180^0.340^1^^^^~10/01/2005~ -~18249~^~315~^0.640^2^^~1~^~A~^^^1^0.430^0.850^1^^^^~10/01/2005~ -~18249~^~404~^0.163^2^^~1~^~A~^^^1^0.146^0.181^1^^^^~10/01/2005~ -~18249~^~405~^0.125^2^^~1~^~A~^^^1^0.120^0.130^1^^^^~10/01/2005~ -~18249~^~406~^1.590^2^^~1~^~A~^^^1^1.590^1.590^^^^^~10/01/2005~ -~18249~^~410~^0.126^2^^~1~^~A~^^^1^0.100^0.153^1^^^^~10/01/2005~ -~18249~^~415~^0.024^2^^~1~^~A~^^^1^0.020^0.027^1^^^^~10/01/2005~ -~18249~^~501~^0.061^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~502~^0.170^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~503~^0.208^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~504~^0.366^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~505~^0.231^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~506~^0.079^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~507~^0.098^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~508~^0.223^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~509~^0.130^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~510~^0.240^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~511~^0.232^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~512~^0.111^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~513~^0.177^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~514~^0.343^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~515~^1.230^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~516~^0.171^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~517~^0.427^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~518~^0.244^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~606~^13.470^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18249~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~608~^0.025^2^^~1~^~A~^^^1^0.000^0.051^1^^^~1~^~10/01/2005~ -~18249~^~609~^0.379^2^^~1~^~A~^^^1^0.082^0.676^1^^^^~10/01/2005~ -~18249~^~610~^0.294^2^^~1~^~A~^^^1^0.062^0.527^1^^^^~10/01/2005~ -~18249~^~611~^3.710^2^^~1~^~A~^^^1^0.774^6.647^1^^^^~10/01/2005~ -~18249~^~612~^1.358^2^^~1~^~A~^^^1^0.358^2.357^1^^^^~10/01/2005~ -~18249~^~613~^3.675^2^^~1~^~A~^^^1^3.094^4.256^1^^^^~10/01/2005~ -~18249~^~614~^3.792^2^^~1~^~A~^^^1^2.768^4.817^1^^^^~10/01/2005~ -~18249~^~615~^0.078^2^^~1~^~A~^^^1^0.027^0.128^1^^^^~10/01/2005~ -~18249~^~617~^8.352^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18249~^~618~^1.794^2^^~1~^~A~^^^1^1.460^2.128^1^^^^~10/01/2005~ -~18249~^~619~^0.166^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18249~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~624~^0.032^2^^~1~^~A~^^^1^0.000^0.064^1^^^~1~^~10/01/2005~ -~18249~^~625~^0.051^2^^~1~^~A~^^^1^0.021^0.080^1^^^^~10/01/2005~ -~18249~^~626~^0.164^2^^~1~^~A~^^^1^0.085^0.242^1^^^^~10/01/2005~ -~18249~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18249~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18249~^~645~^8.618^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18249~^~646~^1.960^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18249~^~652~^0.027^2^^~1~^~A~^^^1^0.000^0.054^1^^^~1~^~10/01/2005~ -~18249~^~653~^0.099^2^^~1~^~A~^^^1^0.064^0.135^1^^^^~10/01/2005~ -~18249~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18249~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~674~^8.352^2^^~1~^~A~^^^1^5.276^11.429^1^^^^~11/01/2006~ -~18249~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~687~^0.051^2^^~1~^~A~^^^1^0.021^0.081^1^^^^~10/01/2005~ -~18249~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2005~ -~18249~^~851~^0.166^2^^~1~^~A~^^^1^0.162^0.170^1^^^^~10/01/2005~ -~18250~^~312~^0.101^7^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~315~^0.334^3^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~404~^0.233^12^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~405~^0.198^13^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~406~^1.512^12^0.067^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~410~^0.435^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~415~^0.027^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~501~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~502~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~503~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~504~^0.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~505~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~507~^0.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~508~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~509~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~510~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~511~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~512~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~513~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~514~^0.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~515~^1.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~516~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~517~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~518~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18250~^~606~^5.926^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18250~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18250~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18250~^~612~^0.112^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~613~^3.153^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~614~^2.643^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~617~^12.632^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~618~^2.735^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~619~^0.141^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~620~^0.026^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~621~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~626~^0.057^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~628~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~645~^12.697^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18250~^~646~^2.909^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~312~^0.191^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~315~^0.370^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~404~^0.045^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~405~^0.070^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~406~^0.470^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~410~^0.342^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18251~^~415~^0.027^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~502~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~503~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~504~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~505~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~506~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~507~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~508~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~509~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~510~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~511~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~512~^0.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~513~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~514~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~515~^0.998^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~516~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~517~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~518~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18251~^~606~^5.132^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18251~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18251~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18251~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~612~^0.099^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~613~^2.649^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~614~^2.376^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~617~^11.263^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~618~^2.343^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~619~^0.123^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~620~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~628~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~629~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18251~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18251~^~645~^11.278^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18251~^~646~^2.477^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18253~^~312~^0.070^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~315~^0.215^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~404~^0.181^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~405~^0.230^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18253~^~406~^2.130^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~410~^0.216^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~415~^0.020^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~501~^0.045^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~502~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~503~^0.132^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~504~^0.232^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~505~^0.146^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~506~^0.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~507~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~508~^0.147^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~509~^0.101^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~510~^0.149^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~511~^0.137^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~512~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~513~^0.107^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~514~^0.189^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~515~^0.891^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~516~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~517~^0.305^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~518~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18253~^~606~^4.667^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18253~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18253~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~612~^0.091^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~613~^2.395^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~614~^2.176^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~617~^10.440^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~618~^2.167^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~619~^0.115^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~626~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18253~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18253~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18253~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18253~^~645~^10.446^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18253~^~646~^2.285^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~312~^0.113^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~315~^0.225^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~404~^0.338^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~405~^0.148^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~406~^2.242^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~410~^0.662^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~415~^0.068^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~501~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~502~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~503~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~504~^0.479^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~505~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~506~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~508~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~509~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~510~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~511~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~512~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~513~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~514~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~515~^1.865^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~516~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~517~^0.632^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~518~^0.329^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18254~^~606~^5.430^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~612~^0.103^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~613~^2.867^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~614~^2.452^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~617~^12.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~618~^2.900^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~619~^0.162^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~620~^0.012^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~621~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~626~^0.073^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18254~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18254~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18254~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18254~^~645~^12.080^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18254~^~646~^3.082^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18255~^~312~^0.088^8^0.003^~1~^~A~^^^1^0.074^0.106^6^0.081^0.094^~2, 3~^~08/01/2012~ -~18255~^~315~^0.307^8^0.010^~1~^~A~^^^1^0.252^0.387^6^0.283^0.331^~2, 3~^~08/01/2012~ -~18255~^~404~^0.312^2^^~1~^~A~^^^1^0.306^0.319^1^^^^~11/01/2005~ -~18255~^~405~^0.185^2^^~1~^~A~^^^1^0.180^0.190^1^^^^~11/01/2005~ -~18255~^~406~^2.610^2^^~1~^~A~^^^1^2.470^2.750^1^^^^~11/01/2005~ -~18255~^~410~^0.214^2^^~1~^~A~^^^1^0.181^0.248^1^^^^~11/01/2005~ -~18255~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.038^1^^^^~11/01/2005~ -~18255~^~501~^0.044^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~502~^0.173^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~503~^0.237^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~504~^0.439^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~505~^0.188^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~506~^0.093^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~507~^0.113^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~508~^0.281^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~509~^0.193^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~510~^0.291^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~511~^0.247^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~512~^0.123^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~513~^0.207^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~514~^0.465^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~515~^2.110^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~516~^0.242^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~517~^0.705^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~518~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~18255~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18255~^~605~^0.455^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~606~^9.453^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.002^~1, 2, 3~^~11/01/2005~ -~18255~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.002^~1, 2, 3~^~11/01/2005~ -~18255~^~609~^0.010^6^0.006^~1~^~A~^^^1^0.000^0.051^4^-0.007^0.027^~1, 2, 3~^~08/01/2012~ -~18255~^~610~^0.011^6^0.005^~1~^~A~^^^1^0.006^0.051^3^-0.005^0.027^~2, 3~^~08/01/2012~ -~18255~^~611~^0.115^6^0.059^~1~^~A~^^^1^0.023^0.599^3^-0.074^0.304^~2, 3~^~08/01/2012~ -~18255~^~612~^0.200^6^0.016^~1~^~A~^^^1^0.112^0.276^3^0.148^0.252^~2, 3~^~08/01/2012~ -~18255~^~613~^7.338^6^0.616^~1~^~A~^^^1^3.992^9.573^3^5.413^9.264^~2, 3~^~08/01/2012~ -~18255~^~614~^1.628^6^0.054^~1~^~A~^^^1^0.789^2.154^4^1.477^1.779^~2, 3~^~08/01/2012~ -~18255~^~615~^0.071^6^0.003^~1~^~A~^^^1^0.051^0.078^3^0.062^0.080^~2, 3~^~08/01/2012~ -~18255~^~617~^7.148^6^0.193^~1~^~AS~^^^1^6.429^7.943^4^6.607^7.689^~2, 3~^~08/01/2012~ -~18255~^~618~^3.360^6^0.155^~1~^~AS~^^^1^2.236^3.933^4^2.926^3.795^~2, 3~^~08/01/2012~ -~18255~^~619~^0.210^6^0.024^~1~^~AS~^^^1^0.121^0.349^4^0.141^0.278^~2, 3~^~08/01/2012~ -~18255~^~620~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~08/01/2012~ -~18255~^~621~^0.008^6^0.008^~1~^~A~^^^1^0.000^0.030^1^-0.096^0.113^~1, 2, 3~^~08/01/2012~ -~18255~^~624~^0.027^6^0.002^~1~^~A~^^^1^0.017^0.033^3^0.020^0.035^~2, 3~^~08/01/2012~ -~18255~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~626~^0.046^6^0.003^~1~^~AS~^^^1^0.025^0.052^3^0.038^0.054^~2, 3~^~08/01/2012~ -~18255~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~628~^0.047^6^0.008^~1~^~A~^^^1^0.032^0.105^3^0.022^0.071^~2, 3~^~08/01/2012~ -~18255~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18255~^~630~^0.001^6^0.001^~1~^~AS~^^^1^0.000^0.004^2^-0.002^0.004^~2, 3~^~08/01/2012~ -~18255~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~645~^7.248^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~646~^3.588^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~652~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^4^0.008^0.012^~2, 3~^~08/01/2012~ -~18255~^~653~^0.022^6^0.001^~1~^~A~^^^1^0.015^0.026^4^0.019^0.025^~2, 3~^~08/01/2012~ -~18255~^~654~^0.018^6^0.001^~1~^~A~^^^1^0.012^0.020^4^0.016^0.020^~2, 3~^~08/01/2012~ -~18255~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~663~^0.338^6^0.136^~1~^~A~^^^1^0.110^1.330^3^-0.089^0.766^~2, 3~^~08/01/2012~ -~18255~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~665~^0.117^6^0.013^~1~^~A~^^^1^0.060^0.176^3^0.077^0.156^~2, 3~^~08/01/2012~ -~18255~^~670~^0.011^6^0.001^~1~^~A~^^^1^0.006^0.014^2^0.006^0.015^~2, 3~^~08/01/2012~ -~18255~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18255~^~672~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.006^1^-0.004^0.012^~2, 3~^~08/01/2012~ -~18255~^~673~^0.046^6^0.003^~1~^~A~^^^1^0.025^0.052^3^0.038^0.054^~2, 3~^~08/01/2012~ -~18255~^~674~^6.810^6^0.292^~1~^~A~^^^1^5.099^7.833^4^5.960^7.660^~2, 3~^~08/01/2012~ -~18255~^~675~^3.233^6^0.163^~1~^~A~^^^1^2.048^3.780^4^2.781^3.685^~2, 3~^~08/01/2012~ -~18255~^~676~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.002^0.004^~1, 2, 3~^~08/01/2012~ -~18255~^~685~^0.014^6^0.001^~1~^~A~^^^1^0.008^0.017^4^0.011^0.017^~2, 3~^~08/01/2012~ -~18255~^~687~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^3^0.006^0.008^~2, 3~^~08/01/2012~ -~18255~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2005~ -~18255~^~693~^0.338^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~695~^0.117^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18255~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18255~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18255~^~851~^0.196^6^0.024^~1~^~A~^^^1^0.113^0.333^4^0.129^0.263^~2, 3~^~08/01/2012~ -~18255~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18255~^~858~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.010^4^0.000^0.008^~1, 2, 3~^~08/01/2012~ -~18256~^~312~^0.136^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~315~^0.205^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~404~^0.312^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~405~^0.142^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~406~^2.137^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~410~^0.876^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~415~^0.100^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~502~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~503~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~504~^0.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~505~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~507~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~508~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~509~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~510~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~511~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~512~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~513~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~514~^0.346^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~515~^1.733^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~516~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~517~^0.583^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~518~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18256~^~606~^4.843^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18256~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18256~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18256~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18256~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18256~^~612~^0.087^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~613~^2.637^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~614~^2.111^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~617~^10.107^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~618~^2.214^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~619~^0.110^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~620~^0.033^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~621~^0.010^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~626~^0.110^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~627~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~628~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~629~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18256~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18256~^~645~^10.226^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18256~^~646~^2.377^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18258~^~312~^0.135^2^^~1~^~A~^^^1^0.130^0.140^1^^^^~03/01/2005~ -~18258~^~315~^0.505^2^^~1~^~A~^^^1^0.500^0.510^1^^^^~03/01/2005~ -~18258~^~404~^0.477^2^^~1~^~A~^^^1^0.367^0.588^1^^^^~03/01/2005~ -~18258~^~405~^0.250^2^^~1~^~A~^^^1^0.250^0.250^^^^^~03/01/2005~ -~18258~^~406~^4.070^2^^~1~^~A~^^^1^3.790^4.350^1^^^^~03/01/2005~ -~18258~^~410~^0.363^2^^~1~^~A~^^^1^0.351^0.374^1^^^^~03/01/2005~ -~18258~^~415~^0.054^2^^~1~^~A~^^^1^0.052^0.056^1^^^^~03/01/2005~ -~18258~^~501~^0.108^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~502~^0.331^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~503~^0.404^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~504~^0.652^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~505~^0.450^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~506~^0.153^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~507~^0.182^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~508~^0.417^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~509~^0.258^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~510~^0.454^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~511~^0.408^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~512~^0.201^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~513~^0.401^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~514~^0.606^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~515~^2.211^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~516~^0.347^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~517~^0.710^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~518~^0.415^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~18258~^~606~^0.733^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18258~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~609~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~03/01/2005~ -~18258~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~611~^0.083^2^^~1~^~A~^^^1^0.016^0.149^1^^^^~03/01/2005~ -~18258~^~612~^0.034^2^^~1~^~A~^^^1^0.013^0.055^1^^^^~03/01/2005~ -~18258~^~613~^0.292^2^^~1~^~A~^^^1^0.264^0.321^1^^^^~03/01/2005~ -~18258~^~614~^0.317^2^^~1~^~A~^^^1^0.245^0.389^1^^^^~03/01/2005~ -~18258~^~615~^0.005^2^^~1~^~A~^^^1^0.000^0.011^1^^^~1~^~03/01/2005~ -~18258~^~617~^0.383^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18258~^~618~^0.449^2^^~1~^~A~^^^1^0.249^0.649^1^^^^~03/01/2005~ -~18258~^~619~^0.048^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18258~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18258~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18258~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18258~^~645~^0.383^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18258~^~646~^0.498^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18258~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~674~^0.383^2^^~1~^~A~^^^1^0.293^0.473^1^^^^~03/01/2005~ -~18258~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~18258~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~18258~^~851~^0.048^2^^~1~^~A~^^^1^0.033^0.064^1^^^^~03/01/2005~ -~18259~^~312~^0.160^2^^~1~^~A~^^^1^0.140^0.180^1^^^^~03/01/2005~ -~18259~^~315~^0.630^2^^~1~^~A~^^^1^0.600^0.660^1^^^^~03/01/2005~ -~18259~^~404~^0.541^2^^~1~^~A~^^^1^0.537^0.544^1^^^^~03/01/2005~ -~18259~^~405~^0.280^2^^~1~^~A~^^^1^0.270^0.290^1^^^^~03/01/2005~ -~18259~^~406~^4.990^2^^~1~^~A~^^^1^4.790^5.190^1^^^^~03/01/2005~ -~18259~^~410~^0.332^2^^~1~^~A~^^^1^0.326^0.338^1^^^^~03/01/2005~ -~18259~^~415~^0.067^2^^~1~^~A~^^^1^0.061^0.073^1^^^^~03/01/2005~ -~18259~^~501~^0.127^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~502~^0.389^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~503~^0.475^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~504~^0.767^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~505~^0.529^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~506~^0.181^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~507~^0.214^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~508~^0.491^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~509~^0.304^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~510~^0.534^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~511~^0.480^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~512~^0.236^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~513~^0.472^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~514~^0.713^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~515~^2.601^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~516~^0.408^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~517~^0.835^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~518~^0.489^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~606~^0.533^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~613~^0.308^2^^~1~^~A~^^^1^0.298^0.319^1^^^^~03/01/2005~ -~18259~^~614~^0.224^2^^~1~^~A~^^^1^0.192^0.257^1^^^^~03/01/2005~ -~18259~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~617~^0.478^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18259~^~618~^0.832^2^^~1~^~A~^^^1^0.812^0.852^1^^^^~03/01/2005~ -~18259~^~619~^0.089^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18259~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~627~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~631~^0.000^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~ -~18259~^~645~^0.478^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~646~^0.921^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18259~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~674~^0.478^2^^~1~^~A~^^^1^0.368^0.587^1^^^^~03/01/2005~ -~18259~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18259~^~851~^0.089^2^^~1~^~A~^^^1^0.088^0.090^1^^^^~03/01/2005~ -~18260~^~312~^0.243^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~315~^0.604^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~404~^0.430^3^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~405~^0.313^3^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~406~^3.583^3^0.509^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~410~^0.408^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~415~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18260~^~501~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~502~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~503~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~504~^0.649^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~505~^0.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~506~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~507~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~508~^0.449^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~509~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~510~^0.422^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~511~^0.441^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~512~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~513~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~514~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~515~^2.671^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~516~^0.368^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~517~^0.850^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~518~^0.435^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18260~^~606~^0.230^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~612~^0.005^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~613~^0.172^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~614~^0.048^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~617~^0.813^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~618~^0.531^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~619~^0.029^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~628~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18260~^~645~^0.827^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18260~^~646~^0.559^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18262~^~312~^0.160^2^^~1~^~A~^^^1^0.150^0.170^1^^^^~03/01/2005~ -~18262~^~315~^0.575^2^^~1~^~A~^^^1^0.550^0.600^1^^^^~03/01/2005~ -~18262~^~404~^0.412^2^^~1~^~A~^^^1^0.382^0.442^1^^^^~03/01/2005~ -~18262~^~405~^0.215^2^^~1~^~A~^^^1^0.210^0.220^1^^^^~03/01/2005~ -~18262~^~406~^3.670^2^^~1~^~A~^^^1^3.550^3.790^1^^^^~03/01/2005~ -~18262~^~410~^0.209^2^^~1~^~A~^^^1^0.173^0.245^1^^^^~03/01/2005~ -~18262~^~415~^0.066^2^^~1~^~A~^^^1^0.064^0.068^1^^^^~03/01/2005~ -~18262~^~501~^0.090^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~502~^0.268^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~503~^0.318^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~504~^0.517^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~505~^0.346^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~506~^0.121^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~507~^0.145^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~508~^0.343^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~509~^0.191^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~510~^0.363^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~511~^0.365^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~512~^0.165^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~513~^0.325^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~514~^0.471^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~515~^1.830^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~516~^0.289^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~517~^0.603^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~518~^0.332^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~ -~18262~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~606~^0.540^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~611~^0.013^2^^~1~^~A~^^^1^0.005^0.020^1^^^^~03/01/2005~ -~18262~^~612~^0.014^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~03/01/2005~ -~18262~^~613~^0.265^2^^~1~^~A~^^^1^0.246^0.284^1^^^^~03/01/2005~ -~18262~^~614~^0.243^2^^~1~^~A~^^^1^0.224^0.263^1^^^^~03/01/2005~ -~18262~^~615~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~03/01/2005~ -~18262~^~617~^0.840^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18262~^~618~^0.309^2^^~1~^~A~^^^1^0.290^0.329^1^^^^~03/01/2005~ -~18262~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18262~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~626~^0.007^2^^~1~^~A~^^^1^0.005^0.009^1^^^^~03/01/2005~ -~18262~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18262~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18262~^~645~^0.846^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~646~^0.339^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~674~^0.840^2^^~1~^~A~^^^1^0.818^0.861^1^^^^~03/01/2005~ -~18262~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18262~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18262~^~851~^0.030^2^^~1~^~A~^^^1^0.029^0.032^1^^^^~03/01/2005~ -~18263~^~312~^0.175^2^^~1~^~A~^^^1^0.170^0.180^1^^^^~03/01/2005~ -~18263~^~315~^0.720^2^^~1~^~A~^^^1^0.720^0.720^^^^^~03/01/2005~ -~18263~^~404~^0.518^2^^~1~^~A~^^^1^0.507^0.529^1^^^^~03/01/2005~ -~18263~^~405~^0.245^2^^~1~^~A~^^^1^0.240^0.250^1^^^^~03/01/2005~ -~18263~^~406~^4.285^2^^~1~^~A~^^^1^4.150^4.420^1^^^^~03/01/2005~ -~18263~^~410~^0.284^2^^~1~^~A~^^^1^0.271^0.297^1^^^^~03/01/2005~ -~18263~^~415~^0.062^2^^~1~^~A~^^^1^0.057^0.067^1^^^^~03/01/2005~ -~18263~^~501~^0.102^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~502~^0.305^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~503~^0.362^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~504~^0.587^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~505~^0.393^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~506~^0.138^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~507~^0.164^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~508~^0.390^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~509~^0.217^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~510~^0.412^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~511~^0.415^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~512~^0.187^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~513~^0.369^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~514~^0.535^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~515~^2.080^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~516~^0.328^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~517~^0.686^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~518~^0.377^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~606~^0.579^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~612~^0.008^2^^~1~^~A~^^^1^0.000^0.016^1^^^~1~^~03/01/2005~ -~18263~^~613~^0.320^2^^~1~^~A~^^^1^0.264^0.377^1^^^^~03/01/2005~ -~18263~^~614~^0.251^2^^~1~^~A~^^^1^0.238^0.263^1^^^^~03/01/2005~ -~18263~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~617~^1.065^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18263~^~618~^0.424^2^^~1~^~A~^^^1^0.362^0.486^1^^^^~03/01/2005~ -~18263~^~619~^0.046^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~18263~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18263~^~645~^1.065^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~646~^0.469^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~674~^1.065^2^^~1~^~A~^^^1^0.966^1.163^1^^^^~03/01/2005~ -~18263~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18263~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2005~ -~18263~^~851~^0.046^2^^~1~^~A~^^^1^0.038^0.054^1^^^^~03/01/2005~ -~18264~^~312~^0.148^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~315~^1.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~404~^0.431^6^0.041^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~405~^0.292^5^0.034^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~406~^3.356^5^0.154^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~410~^0.444^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~415~^0.087^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18264~^~501~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~502~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~503~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~504~^0.596^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~505~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~506~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~507~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~508~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~509~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~510~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~511~^0.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~512~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~513~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~514~^0.456^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~515~^2.612^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~516~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~517~^0.862^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~518~^0.409^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18264~^~606~^0.287^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~613~^0.254^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~614~^0.024^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~617~^0.243^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~618~^0.785^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~619~^0.048^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~620~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~626~^0.037^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18264~^~645~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18264~^~646~^0.834^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~312~^0.212^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~315~^1.790^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~404~^0.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~405~^0.140^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~406~^3.410^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~410~^0.695^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~415~^0.163^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18266~^~501~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~502~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~503~^0.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~504~^0.610^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~505~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~506~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~507~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~508~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~509~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~510~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~511~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~512~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~513~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~514~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~515~^2.560^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~516~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~517~^0.841^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~518~^0.415^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18266~^~606~^0.334^0^^~4~^~FLA~^^^^^^^^^^~12/01/1998~ -~18266~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~612~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~613~^0.276^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~614~^0.049^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~617~^0.479^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~618~^0.787^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~619~^0.046^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~620~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~626~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18266~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18266~^~645~^0.513^0^^~4~^~FLA~^^^^^^^^^^~12/01/1998~ -~18266~^~646~^0.835^0^^~4~^~FLA~^^^^^^^^^^~12/01/1998~ -~18268~^~312~^0.084^24^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~315~^0.245^4^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~404~^0.277^76^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~405~^0.381^76^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~406~^2.722^70^0.076^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~410~^0.940^32^0.072^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~415~^0.496^61^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~501~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~502~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~503~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~504~^0.585^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~505~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~506~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~507~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~508~^0.366^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~509~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~510~^0.380^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~511~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~512~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~513~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~514~^0.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~515~^1.784^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~516~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~517~^0.635^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~518~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18268~^~606~^1.533^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~607~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~608~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~609~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~610~^0.017^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~611~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~612~^0.077^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~613~^0.971^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~614~^0.380^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~617~^1.917^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~618~^1.103^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~619~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~620~^0.036^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~621~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~626~^0.101^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18268~^~628~^0.007^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18268~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18268~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18268~^~645~^2.040^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18268~^~646~^1.227^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18269~^~312~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~315~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~404~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~405~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~406~^1.628^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~410~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~415~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~501~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~502~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~503~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~504~^0.621^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~505~^0.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~506~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~507~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~508~^0.389^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~509~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~510~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~511~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~512~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~513~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~514~^0.578^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~515~^1.718^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~516~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~517~^0.588^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~518~^0.465^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~606~^2.723^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~607~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~608~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~610~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~611~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~612~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~613~^1.677^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~614~^0.860^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~617~^4.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~618~^2.431^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~619~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~620~^0.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~621~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~626~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~628~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~645~^4.524^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18269~^~646~^2.594^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~312~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~315~^0.220^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~404~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~405~^0.332^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~406~^2.782^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~410~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~415~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~501~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~502~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~503~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~504~^0.710^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~505~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~506~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~507~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~508~^0.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~509~^0.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~510~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~511~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~512~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~513~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~514~^0.501^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~515~^1.793^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~516~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~517~^0.693^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~518~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~606~^2.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~607~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~612~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~613~^1.540^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~614~^0.538^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~617~^3.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~618~^6.390^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~619~^0.811^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~620~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~621~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~626~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~628~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~645~^3.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18270~^~646~^7.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~312~^0.204^10^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~315~^0.572^12^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~404~^0.250^11^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~405~^0.354^19^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~406~^4.427^18^0.145^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~410~^0.479^8^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~415~^0.030^9^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~501~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~502~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~503~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~504~^0.561^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~505~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~506~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~507~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~508~^0.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~509~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~510~^0.340^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~511~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~512~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~513~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~514~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~515~^2.845^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~516~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~517~^0.954^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~518~^0.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18271~^~606~^1.222^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~612~^0.018^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~613~^0.976^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~614~^0.228^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~617~^1.833^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~618~^3.076^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~619~^0.188^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~626~^0.012^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~645~^1.845^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18271~^~646~^3.264^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~ -~18272~^~312~^0.268^10^0.050^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~315~^0.732^13^0.044^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~404~^0.511^9^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~405~^0.405^9^0.038^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~406~^5.066^10^0.356^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~410~^0.429^9^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~415~^0.052^9^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~501~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~503~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~504~^0.547^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~505~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~506~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~507~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~508~^0.390^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~509~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~510~^0.332^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~511~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~512~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~513~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~514~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~515~^2.774^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~516~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~517~^0.931^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~518~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~606~^0.573^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~612~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~613~^0.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~614~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~617~^1.457^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~618~^1.355^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~626~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18272~^~645~^1.470^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18272~^~646~^1.452^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~312~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~315~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~404~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~405~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~406~^2.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~410~^0.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~415~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~501~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~502~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~503~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~504~^0.523^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~505~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~506~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~507~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~508~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~509~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~510~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~511~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~512~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~513~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~514~^0.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~515~^1.900^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~516~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~517~^0.681^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~518~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~606~^2.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~607~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~608~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~609~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~610~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~611~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~612~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~613~^1.433^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~614~^0.525^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~617~^2.671^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~618~^5.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~619~^0.659^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~620~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~626~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~628~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~645~^2.757^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18273~^~646~^5.721^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18274~^~312~^0.060^15^0.001^~1~^~A~^^^1^0.045^0.078^3^0.057^0.062^~2, 3~^~08/01/2012~ -~18274~^~315~^0.449^15^0.023^~1~^~A~^^^1^0.320^0.574^3^0.372^0.527^~2, 3~^~07/01/2014~ -~18274~^~404~^0.168^8^0.006^~1~^~A~^^^1^0.100^0.210^3^0.147^0.189^~2, 3~^~07/01/2014~ -~18274~^~405~^0.163^8^0.005^~1~^~A~^^^1^0.110^0.230^3^0.146^0.180^~2, 3~^~07/01/2014~ -~18274~^~406~^1.418^8^0.040^~1~^~A~^^^1^0.820^1.750^3^1.288^1.549^~2, 3~^~07/01/2014~ -~18274~^~410~^0.470^6^0.005^~1~^~A~^^^1^0.400^0.600^1^0.431^0.509^~2, 3~^~07/01/2014~ -~18274~^~415~^0.040^8^0.002^~1~^~A~^^^1^0.030^0.050^1^0.020^0.060^~2, 3~^~07/01/2014~ -~18274~^~501~^0.066^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~502~^0.181^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~503~^0.224^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~504~^0.421^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~505~^0.199^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~506~^0.115^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~507~^0.112^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~508~^0.277^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~509~^0.184^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~510~^0.257^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~511~^0.243^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~512~^0.128^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~513~^0.211^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~514~^0.319^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~515~^1.527^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~516~^0.189^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~517~^0.535^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~518~^0.299^0^^~4~^^^^^^^^^^^~08/01/2012~ -~18274~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18274~^~605~^0.200^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~606~^2.844^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~610~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.001^0.005^~1, 2, 3~^~07/01/2014~ -~18274~^~611~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.001^0.004^~1, 2, 3~^~07/01/2014~ -~18274~^~612~^0.002^9^0.002^~1~^~A~^^^1^0.000^0.015^2^-0.008^0.013^~1, 2, 3~^~07/01/2014~ -~18274~^~613~^1.865^9^0.057^~1~^~A~^^^1^1.281^2.188^2^1.639^2.092^~2, 3~^~07/01/2014~ -~18274~^~614~^0.838^9^0.020^~1~^~A~^^^1^0.689^0.998^2^0.763^0.914^~2, 3~^~07/01/2014~ -~18274~^~615~^0.051^9^0.001^~1~^~A~^^^1^0.043^0.067^4^0.047^0.056^~2, 3~^~07/01/2014~ -~18274~^~617~^4.661^9^0.154^~1~^~AS~^^^1^3.323^7.910^2^4.031^5.292^~2, 3~^~07/01/2014~ -~18274~^~618~^6.983^9^0.245^~1~^~AS~^^^1^2.823^9.058^2^6.007^7.959^~2, 3~^~07/01/2014~ -~18274~^~619~^1.070^9^0.028^~1~^~AS~^^^1^0.889^1.250^2^0.965^1.175^~2, 3~^~07/01/2014~ -~18274~^~620~^0.029^9^0.001^~1~^~A~^^^1^0.021^0.040^2^0.025^0.034^~2, 3~^~07/01/2014~ -~18274~^~621~^0.008^9^0.001^~1~^~A~^^^1^0.000^0.013^2^0.003^0.014^~1, 2, 3~^~07/01/2014~ -~18274~^~624~^0.045^9^0.002^~1~^~A~^^^1^0.036^0.053^3^0.040^0.050^~2, 3~^~07/01/2014~ -~18274~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~18274~^~626~^0.047^9^0.002^~1~^~AS~^^^1^0.035^0.072^3^0.040^0.053^~2, 3~^~07/01/2014~ -~18274~^~627~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.008^2^-0.003^0.007^~1, 2, 3~^~07/01/2014~ -~18274~^~628~^0.097^9^0.003^~1~^~A~^^^1^0.066^0.164^3^0.087^0.106^~2, 3~^~07/01/2014~ -~18274~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~630~^0.007^9^0.001^~1~^~AS~^^^1^0.000^0.011^2^0.002^0.013^~2, 3~^~07/01/2014~ -~18274~^~631~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~18274~^~645~^4.822^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~646~^8.103^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~652~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^2^0.001^0.007^~1, 2, 3~^~07/01/2014~ -~18274~^~653~^0.017^9^0.001^~1~^~A~^^^1^0.011^0.020^4^0.016^0.018^~2, 3~^~07/01/2014~ -~18274~^~654~^0.018^9^0.000^~1~^~A~^^^1^0.016^0.020^4^0.016^0.019^~2, 3~^~08/01/2012~ -~18274~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18274~^~663~^0.134^9^0.006^~1~^~A~^^^1^0.037^0.313^3^0.115^0.154^~2, 3~^~07/01/2014~ -~18274~^~664~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.005^2^0.001^0.006^~1, 2, 3~^~07/01/2014~ -~18274~^~665~^0.063^9^0.007^~1~^~A~^^^1^0.029^0.092^3^0.038^0.087^~2, 3~^~07/01/2014~ -~18274~^~670~^0.009^9^0.001^~1~^~A~^^^1^0.007^0.012^4^0.007^0.012^~2, 3~^~08/01/2012~ -~18274~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~672~^0.007^9^0.001^~1~^~A~^^^1^0.003^0.011^2^0.004^0.011^~2, 3~^~07/01/2014~ -~18274~^~673~^0.047^9^0.002^~1~^~A~^^^1^0.035^0.072^3^0.040^0.053^~2, 3~^~07/01/2014~ -~18274~^~674~^4.527^9^0.150^~1~^~A~^^^1^3.286^7.597^2^3.913^5.141^~2, 3~^~07/01/2014~ -~18274~^~675~^6.911^9^0.243^~1~^~A~^^^1^2.771^8.996^2^5.940^7.883^~2, 3~^~07/01/2014~ -~18274~^~676~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^3^0.002^0.006^~1, 2, 3~^~07/01/2014~ -~18274~^~685~^0.048^9^0.003^~1~^~A~^^^1^0.034^0.060^2^0.037^0.059^~2, 3~^~07/01/2014~ -~18274~^~687~^0.010^9^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.011^~2, 3~^~07/01/2014~ -~18274~^~689~^0.003^9^0.001^~1~^~AS~^^^1^0.000^0.005^3^0.001^0.005^~2, 3~^~08/01/2012~ -~18274~^~693~^0.138^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18274~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18274~^~851~^1.022^9^0.030^~1~^~A~^^^1^0.841^1.216^2^0.907^1.138^~2, 3~^~07/01/2014~ -~18274~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~18274~^~853~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.005^4^0.001^0.004^~1, 2, 3~^~07/01/2014~ -~18274~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.004^2^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~18275~^~312~^0.088^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~315~^0.276^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~404~^0.232^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~405~^0.232^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~406~^1.857^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~410~^0.553^3^0.263^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~415~^0.082^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~501~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~502~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~503~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~504~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~505~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~506~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~507~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~508~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~509~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~510~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~511~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~512~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~514~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~515~^1.596^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~516~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~517~^0.538^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~518~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18275~^~605~^0.227^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18275~^~606~^1.161^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18275~^~612~^0.022^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~613~^0.605^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~614~^0.534^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~617~^0.696^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~618~^1.307^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~18275~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~ -~18275~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/2012~ -~18275~^~645~^0.696^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~18275~^~646~^1.307^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18277~^~312~^0.083^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~315~^0.368^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~404~^0.240^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~405~^0.290^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~406~^2.020^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~410~^0.246^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~415~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~501~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~502~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~503~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~504~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~505~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~506~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~507~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~508~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~509~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~510~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~511~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~512~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~514~^0.479^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~515~^0.967^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~516~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~517~^0.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~518~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18277~^~606~^1.398^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18277~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~612~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~613~^1.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~614~^0.351^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~617~^2.113^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~618~^4.722^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~619~^0.617^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~626~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18277~^~628~^0.018^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18277~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18277~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18277~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18277~^~645~^2.162^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18277~^~646~^5.351^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18278~^~312~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~315~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~404~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~405~^0.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~406~^2.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~410~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~415~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~502~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~503~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~504~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~505~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~506~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~507~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~508~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~509~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~510~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~511~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~512~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~513~^0.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~514~^0.376^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~515~^1.799^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~516~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~517~^0.644^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~518~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~606~^2.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~607~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~608~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~609~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~610~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~611~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~612~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~613~^1.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~614~^0.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~617~^2.515^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~618~^4.752^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~619~^0.621^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~620~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~626~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~628~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~645~^2.596^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18278~^~646~^5.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~312~^0.299^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~315~^0.355^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~404~^0.273^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~405~^0.326^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~406~^2.037^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~410~^0.444^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~415~^0.084^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~501~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~502~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~503~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~504~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~505~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~507~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~508~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~509~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~510~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~511~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~512~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~513~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~514~^0.480^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~515~^1.326^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~516~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~517~^0.477^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~518~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18279~^~606~^1.354^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~612~^0.021^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~613~^1.048^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~614~^0.278^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~617~^2.070^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~618~^3.021^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~619~^0.182^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~620~^0.009^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~621~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~626~^0.031^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18279~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18279~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18279~^~645~^2.104^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18279~^~646~^3.215^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18280~^~312~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~315~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~404~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~405~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~406~^2.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~410~^0.451^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~415~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~502~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~503~^0.317^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~504~^0.660^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~505~^0.323^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~506~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~507~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~508~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~509~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~510~^0.379^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~511~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~512~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~513~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~514~^0.498^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~515~^1.659^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~516~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~517~^0.634^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~518~^0.404^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~606~^2.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~607~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~608~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~609~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~610~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~611~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~612~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~613~^1.507^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~614~^1.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~617~^5.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~618~^1.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~619~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~620~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~626~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~645~^5.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18280~^~646~^1.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~312~^0.072^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~315~^0.280^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~404~^0.310^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~405~^0.370^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~406~^2.310^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~410~^0.241^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~415~^0.048^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~501~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~502~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~504~^0.441^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~505~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~506~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~507~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~508~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~509~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~510~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~511~^0.252^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~512~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~513~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~514~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~515~^1.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~516~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~517~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~518~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18281~^~606~^1.681^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18281~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18281~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~612~^0.012^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~613~^1.220^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~614~^0.426^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~617~^2.562^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~618~^5.586^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~619~^0.722^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~620~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~626~^0.030^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~628~^0.022^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18281~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~645~^2.625^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18281~^~646~^6.324^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18282~^~312~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~315~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~404~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~405~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~406~^2.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~410~^0.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~415~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~501~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~502~^0.261^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~503~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~504~^0.655^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~505~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~506~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~508~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~509~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~510~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~511~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~512~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~513~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~514~^0.466^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~515~^1.628^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~516~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~517~^0.637^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~518~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~606~^2.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~607~^0.028^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~608~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~609~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~610~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~611~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~612~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~613~^1.535^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~614~^0.562^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~617~^2.919^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~618~^5.445^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~619~^0.700^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~620~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~626~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~628~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~645~^3.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18282~^~646~^6.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~312~^0.330^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~315~^2.630^2^^~1~^^^^^^^^^^^~11/01/2001~ -~18283~^~404~^0.262^8^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~405~^0.095^8^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~406~^0.420^8^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~410~^1.010^8^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18283~^~415~^0.161^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~501~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~502~^0.210^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~503~^0.262^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~504~^0.506^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~505~^0.277^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~506~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~507~^0.182^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~508~^0.346^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~509~^0.234^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~510~^0.364^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~511~^0.472^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~512~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~513~^0.337^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~514~^0.576^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~515~^1.430^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~516~^0.338^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~517~^0.365^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~518~^0.309^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18283~^~606~^1.087^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~611~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~612~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~613~^0.803^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~614~^0.252^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~617~^1.661^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~618~^3.664^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~619~^0.458^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~626~^0.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~628~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18283~^~645~^1.695^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18283~^~646~^4.129^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18284~^~312~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~315~^2.666^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~404~^0.360^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~405~^0.280^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~406~^5.000^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~410~^0.669^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~415~^0.282^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~501~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~502~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~503~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~504~^0.453^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~505~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~506~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~507~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~508~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~509~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~510~^0.322^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~511~^0.385^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~512~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~513~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~514~^0.406^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~515~^1.823^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~516~^0.326^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~517~^0.594^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~518~^0.343^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18284~^~606~^2.939^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18284~^~612~^0.056^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18284~^~613~^1.562^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18284~^~614~^1.312^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~617~^6.398^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~618~^1.795^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~619~^0.108^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~620~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18284~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18284~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~645~^6.403^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18284~^~646~^1.904^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18288~^~312~^0.072^6^0.001^~1~^~A~^^^1^0.069^0.077^5^0.069^0.075^~2, 3~^~08/01/2012~ -~18288~^~315~^0.285^6^0.005^~1~^~A~^^^1^0.267^0.303^5^0.272^0.298^~2, 3~^~08/01/2012~ -~18288~^~404~^0.700^3^0.010^~1~^~A~^^^1^0.680^0.710^2^0.657^0.743^~2, 3~^~08/01/2012~ -~18288~^~405~^0.380^3^0.055^~1~^~A~^^^1^0.320^0.490^2^0.143^0.617^~2, 3~^~08/01/2012~ -~18288~^~406~^6.357^3^0.061^~1~^~A~^^^1^6.250^6.460^2^6.096^6.618^~2, 3~^~08/01/2012~ -~18288~^~410~^0.340^2^^~1~^~A~^^^1^0.300^0.380^1^^^^~08/01/2012~ -~18288~^~415~^0.520^3^0.021^~1~^~A~^^^1^0.490^0.560^2^0.430^0.610^~2, 3~^~08/01/2012~ -~18288~^~501~^0.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~502~^0.151^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~503~^0.199^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~504~^0.357^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~505~^0.200^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~506~^0.081^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~507~^0.102^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~508~^0.214^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~509~^0.097^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~510~^0.237^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~511~^0.172^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~512~^0.106^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~513~^0.149^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~514~^0.243^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~515~^1.330^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~516~^0.145^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~517~^0.496^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~518~^0.214^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~18288~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~606~^1.162^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~18288~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~08/01/2012~ -~18288~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~08/01/2012~ -~18288~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~613~^0.834^3^0.010^~1~^~A~^^^1^0.817^0.853^2^0.788^0.879^~2, 3~^~08/01/2012~ -~18288~^~614~^0.268^3^0.005^~1~^~A~^^^1^0.263^0.277^2^0.248^0.288^~2, 3~^~08/01/2012~ -~18288~^~615~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~08/01/2012~ -~18288~^~617~^1.516^3^0.029^~1~^~AS~^^^1^1.470^1.570^2^1.391^1.641^~2, 3~^~08/01/2012~ -~18288~^~618~^3.637^3^0.039^~1~^~AS~^^^1^3.566^3.699^2^3.471^3.803^~2, 3~^~08/01/2012~ -~18288~^~619~^0.187^3^0.003^~1~^~AS~^^^1^0.183^0.192^2^0.176^0.199^~2, 3~^~08/01/2012~ -~18288~^~620~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~08/01/2012~ -~18288~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~624~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.018^^^^~2, 3~^~08/01/2012~ -~18288~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~18288~^~626~^0.012^3^0.000^~1~^~AS~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~08/01/2004~ -~18288~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18288~^~628~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~08/01/2012~ -~18288~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18288~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2004~ -~18288~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18288~^~645~^1.554^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~646~^3.831^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~08/01/2012~ -~18288~^~653~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~08/01/2012~ -~18288~^~654~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~08/01/2012~ -~18288~^~663~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~18288~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~665~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.021^0.028^~2, 3~^~08/01/2012~ -~18288~^~670~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~08/01/2012~ -~18288~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~18288~^~673~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~08/01/2012~ -~18288~^~674~^1.511^3^0.029^~1~^~A~^^^1^1.465^1.565^2^1.386^1.636^~2, 3~^~08/01/2012~ -~18288~^~675~^3.607^3^0.038^~1~^~A~^^^1^3.538^3.668^2^3.445^3.769^~2, 3~^~08/01/2012~ -~18288~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~685~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~08/01/2012~ -~18288~^~687~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~08/01/2012~ -~18288~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2004~ -~18288~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18288~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~18288~^~851~^0.180^3^0.002^~1~^~A~^^^1^0.176^0.184^2^0.170^0.190^~2, 3~^~08/01/2012~ -~18288~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18288~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~18289~^~312~^0.126^17^0.002^~1~^~A~^^^1^0.090^0.144^6^0.121^0.131^~2, 3~^~04/01/2011~ -~18289~^~315~^0.685^17^0.013^~1~^~A~^^^1^0.507^0.804^6^0.653^0.717^~2, 3~^~04/01/2011~ -~18289~^~404~^0.450^9^0.014^~1~^~A~^^^1^0.190^0.710^3^0.405^0.496^~2, 3~^~04/01/2011~ -~18289~^~405~^0.267^9^0.014^~1~^~A~^^^1^0.110^0.420^3^0.217^0.318^~2, 3~^~04/01/2011~ -~18289~^~406~^4.368^9^0.544^~1~^~A~^^^1^2.560^6.350^3^2.477^6.259^~2, 3~^~04/01/2011~ -~18289~^~410~^0.630^6^0.004^~1~^~A~^^^1^0.520^0.700^2^0.609^0.650^~2, 3~^~04/01/2011~ -~18289~^~415~^0.171^9^0.031^~1~^~A~^^^1^0.054^0.789^2^0.037^0.305^~2, 3~^~04/01/2011~ -~18289~^~501~^0.114^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~502~^0.360^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~503~^0.419^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~504~^0.863^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~505~^0.407^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~506~^0.204^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~507~^0.186^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~508~^0.494^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~509~^0.352^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~510~^0.501^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~511~^0.427^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~512~^0.245^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~513~^0.434^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~514~^0.611^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~515~^2.571^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~516~^0.332^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~517~^0.978^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~518~^0.516^0^^~1~^^^^^^^^^^^~08/01/2012~ -~18289~^~605~^0.383^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~606~^0.822^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~607~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.012^0.016^~1, 2, 3~^~04/01/2011~ -~18289~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.004^0.005^~1, 2, 3~^~04/01/2011~ -~18289~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~610~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.013^0.015^~1, 2, 3~^~04/01/2011~ -~18289~^~611~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.005^1^-0.006^0.013^~1, 2, 3~^~04/01/2011~ -~18289~^~612~^0.006^6^0.002^~1~^~A~^^^1^0.004^0.009^1^-0.017^0.029^~2, 3~^~04/01/2011~ -~18289~^~613~^0.549^6^0.034^~1~^~A~^^^1^0.473^0.641^1^0.116^0.981^~2, 3~^~04/01/2011~ -~18289~^~614~^0.230^6^0.017^~1~^~A~^^^1^0.139^0.260^1^0.016^0.444^~2, 3~^~04/01/2011~ -~18289~^~615~^0.010^6^0.000^~1~^~A~^^^1^0.007^0.020^1^0.007^0.013^~2, 3~^~04/01/2011~ -~18289~^~617~^1.190^6^0.050^~1~^~AS~^^^1^0.718^1.619^1^0.560^1.820^~2, 3~^~04/01/2011~ -~18289~^~618~^0.908^6^0.005^~1~^~AS~^^^1^0.610^1.769^2^0.889^0.927^~2, 3~^~04/01/2011~ -~18289~^~619~^0.005^6^0.000^~1~^~AS~^^^1^0.002^0.013^2^0.003^0.007^~2, 3~^~04/01/2011~ -~18289~^~620~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.011^2^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~18289~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~624~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.015^1^0.005^0.014^~2, 3~^~04/01/2011~ -~18289~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~626~^0.003^6^0.001^~1~^~AS~^^^1^0.000^0.015^1^-0.011^0.016^~2, 3~^~04/01/2011~ -~18289~^~627~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.009^0.010^~1, 2, 3~^~04/01/2011~ -~18289~^~628~^0.062^6^0.002^~1~^~A~^^^1^0.040^0.199^1^0.048^0.076^~2, 3~^~04/01/2011~ -~18289~^~629~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.008^0.011^~1, 2, 3~^~04/01/2011~ -~18289~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^1^-0.001^0.006^~2, 3~^~04/01/2011~ -~18289~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^1^-0.002^0.005^~1, 2, 3~^~04/01/2011~ -~18289~^~645~^1.271^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~646~^0.928^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~652~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^1^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~18289~^~653~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^1^0.003^0.005^~2, 3~^~04/01/2011~ -~18289~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^1^0.004^0.007^~2, 3~^~04/01/2011~ -~18289~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~663~^0.351^6^0.045^~1~^~A~^^^1^0.004^0.470^1^-0.214^0.916^~2, 3~^~04/01/2011~ -~18289~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~665~^0.032^6^0.002^~1~^~A~^^^1^0.008^0.084^2^0.018^0.046^~2, 3~^~04/01/2011~ -~18289~^~670~^0.005^6^0.001^~1~^~A~^^^1^0.002^0.015^2^0.002^0.007^~1, 2, 3~^~04/01/2011~ -~18289~^~671~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.015^1^0.006^0.019^~2, 3~^~04/01/2011~ -~18289~^~672~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.012^0.015^~1, 2, 3~^~04/01/2011~ -~18289~^~673~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.015^1^-0.011^0.016^~1, 2, 3~^~04/01/2011~ -~18289~^~674~^0.839^6^0.006^~1~^~A~^^^1^0.681^1.390^2^0.800^0.877^~2, 3~^~04/01/2011~ -~18289~^~675~^0.871^6^0.007^~1~^~A~^^^1^0.588^1.725^2^0.835^0.908^~2, 3~^~04/01/2011~ -~18289~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^1^-0.001^0.006^~1, 2, 3~^~04/01/2011~ -~18289~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.001^0.011^1^0.001^0.006^~1, 2, 3~^~04/01/2011~ -~18289~^~687~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^1^-0.003^0.005^~1, 2, 3~^~04/01/2011~ -~18289~^~689~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^1^-0.003^0.006^~2, 3~^~04/01/2011~ -~18289~^~693~^0.351^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18289~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~851~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.003^0.005^~1, 2, 3~^~04/01/2011~ -~18289~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18289~^~853~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^1^-0.003^0.006^~1, 2, 3~^~04/01/2011~ -~18289~^~858~^0.008^6^0.002^~1~^~A~^^^1^0.005^0.012^1^-0.019^0.035^~2, 3~^~04/01/2011~ -~18290~^~312~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~315~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~404~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~405~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~406~^1.711^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~410~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~415~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~502~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~503~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~504~^0.444^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~505~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~507~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~508~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~509~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~510~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~511~^0.220^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~512~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~513~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~514~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~515~^1.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~516~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~517~^0.504^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~518~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~606~^0.507^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~607~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~608~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~610~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~611~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~612~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~613~^0.344^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~614~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~617~^0.857^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~618~^0.764^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~619~^0.048^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~620~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~621~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~626~^0.023^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~645~^0.881^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18290~^~646~^0.820^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~312~^0.115^57^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~315~^0.395^31^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~404~^0.610^61^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~405~^0.371^61^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~406~^3.758^61^0.137^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~410~^0.426^14^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~415~^0.183^12^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18291~^~501~^0.112^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~502~^0.293^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~503~^0.372^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~504~^0.767^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~505~^0.236^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~506~^0.179^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~507~^0.219^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~508~^0.494^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~509~^0.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~510~^0.447^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~511~^0.411^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~512~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~513~^0.391^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~514~^0.502^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~515~^3.094^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~516~^0.370^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~517~^1.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~518~^0.480^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~606~^0.250^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~612~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~613~^0.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~614~^0.017^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~617~^0.322^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~618~^0.695^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~619~^0.031^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~626~^0.003^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18291~^~645~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18291~^~646~^0.726^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18292~^~312~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~315~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~404~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~405~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~406~^1.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~410~^0.506^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~415~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~501~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~502~^0.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~503~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~504~^0.657^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~505~^0.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~506~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~507~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~508~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~509~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~510~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~511~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~512~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~513~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~514~^0.543^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~515~^1.803^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~516~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~517~^0.666^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~518~^0.435^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~606~^2.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~607~^0.048^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~608~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~609~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~610~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~611~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~612~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~613~^1.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~614~^0.464^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~617~^1.964^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~618~^2.574^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~619~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~620~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~621~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~626~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~628~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~645~^2.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18292~^~646~^2.923^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~312~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~315~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~404~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~405~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~406~^1.567^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~410~^0.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~415~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~502~^0.237^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~503~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~504~^0.513^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~505~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~506~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~507~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~508~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~509~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~510~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~511~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~512~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~513~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~514~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~515~^1.570^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~516~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~517~^0.576^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~518~^0.363^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~606~^2.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~607~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~608~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~609~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~610~^0.028^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~611~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~612~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~613~^1.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~614~^0.508^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~617~^2.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~618~^3.913^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~619~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~620~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~626~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~628~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~645~^2.474^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18293~^~646~^4.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~312~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~315~^0.237^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~404~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~405~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~406~^1.524^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~410~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~415~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~501~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~502~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~503~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~504~^0.487^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~505~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~506~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~507~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~508~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~509~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~510~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~511~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~512~^0.144^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~513~^0.234^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~514~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~515~^1.484^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~516~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~517~^0.543^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~518~^0.343^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~606~^1.986^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~607~^0.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~608~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~609~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~610~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~611~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~612~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~613~^1.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~614~^0.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~617~^2.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~618~^3.662^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~619~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~620~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~621~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~626~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~628~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~645~^2.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18294~^~646~^4.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~312~^0.415^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~315~^1.656^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~404~^0.542^26^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~405~^0.249^26^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~406~^4.095^25^0.112^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~410~^0.415^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~415~^0.438^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18295~^~501~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~502~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~503~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~504~^0.756^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~505~^0.381^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~506~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~507~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~508~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~509~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~510~^0.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~511~^0.605^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~512~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~513~^0.483^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~514~^0.689^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~515~^2.808^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~516~^0.570^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~517~^0.895^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~518~^0.530^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~606~^0.439^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~609~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~610~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~611~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~612~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~613~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~614~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~617~^0.564^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~618~^0.945^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~619~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~626~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18295~^~645~^0.581^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18295~^~646~^1.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~312~^0.137^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~315~^0.578^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~18297~^~404~^0.370^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~405~^0.209^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~406~^3.270^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~410~^0.364^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~415~^0.037^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~501~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~502~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~503~^0.337^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~504~^0.796^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~505~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~506~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~507~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~508~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~509~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~510~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~511~^0.420^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~512~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~513~^0.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~514~^0.572^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~515~^2.415^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~516~^0.322^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~517~^0.878^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~518~^0.429^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~606~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~613~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~614~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~617~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~618~^0.586^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~619~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~626~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~645~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18297~^~646~^0.611^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~312~^0.560^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~315~^2.236^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~404~^0.569^19^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~405~^1.083^19^0.058^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~406~^6.767^19^0.191^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~410~^0.750^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~415~^0.227^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18299~^~501~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~502~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~503~^0.496^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~504~^0.908^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~505~^0.430^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~506~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~507~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~508~^0.634^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~509~^0.397^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~510~^0.628^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~511~^0.705^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~512~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~513~^0.529^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~514~^0.813^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~515~^3.602^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~516~^0.555^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~517~^1.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~518~^0.599^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~606~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~613~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~614~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~617~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~618~^0.575^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~645~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18299~^~646~^0.605^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~312~^0.080^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~315~^1.546^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~404~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~405~^0.529^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~406~^2.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~410~^0.518^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~415~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18300~^~501~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~502~^0.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~503~^0.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~504~^0.675^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~505~^0.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~506~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~507~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~508~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~509~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~510~^0.468^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~511~^0.432^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~512~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~513~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~514~^0.620^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~515~^1.969^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~516~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~517~^0.671^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~518~^0.454^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~606~^1.749^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~607~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~608~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~609~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~610~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~611~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~612~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~613~^1.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~614~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~617~^1.650^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~618~^2.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~619~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~620~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~626~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~645~^1.742^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18300~^~646~^2.406^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~312~^0.046^36^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~315~^0.182^36^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~404~^0.028^16^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~405~^0.027^15^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~406~^0.263^15^0.053^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~410~^0.119^5^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~415~^0.038^5^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~501~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~502~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~503~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~504~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~505~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~507~^0.040^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~508~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~509~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~510~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~511~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~513~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~514~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~515~^0.587^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~516~^0.065^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~517~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~518~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18301~^~606~^3.797^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18301~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18301~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18301~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18301~^~611~^0.021^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~612~^0.126^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~613~^2.062^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~614~^1.534^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~617~^4.109^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~618~^2.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~619~^0.123^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~626~^0.146^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18301~^~645~^4.388^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18301~^~646~^2.198^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18302~^~312~^0.053^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~315~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~404~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~405~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~406~^1.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~410~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~415~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~502~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~503~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~504~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~505~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~506~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~507~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~508~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~509~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~510~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~511~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~512~^0.053^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~513~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~514~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~515~^0.786^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~516~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~517~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~518~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~606~^3.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~612~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~613~^1.738^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~614~^1.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~617~^5.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~618~^3.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~619~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~645~^5.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18302~^~646~^3.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~312~^0.043^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~315~^0.107^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~404~^0.102^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~405~^0.146^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~406~^0.709^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~410~^0.259^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~415~^0.035^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~502~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~503~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~504~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~505~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~506~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~507~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~508~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~509~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~510~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~511~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~512~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~513~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~514~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~515~^0.792^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~516~^0.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~517~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~518~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18303~^~606~^6.904^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~607~^0.320^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~608~^0.189^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~609~^0.110^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~610~^0.247^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~611~^0.277^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~612~^1.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~613~^2.991^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~614~^1.550^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~617~^4.191^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~618~^0.600^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~619~^0.164^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~626~^0.221^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~645~^4.559^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18303~^~646~^0.764^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18304~^~312~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~315~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~404~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~405~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~406~^1.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~410~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~415~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~501~^0.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~502~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~503~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~504~^0.358^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~505~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~506~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~507~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~508~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~509~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~510~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~511~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~512~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~513~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~514~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~515~^1.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~516~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~517~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~518~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~606~^3.758^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~607~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~608~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~609~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~610~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~611~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~612~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~613~^2.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~614~^1.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~617~^5.652^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~618~^3.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~619~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~620~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~621~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~626~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~628~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~645~^5.719^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18304~^~646~^3.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~312~^0.046^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~315~^0.176^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~404~^0.010^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~405~^0.030^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~406~^0.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~410~^0.136^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~415~^0.037^3^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~501~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~502~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~503~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~504~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~505~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~506~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~507~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~508~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~509~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~510~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~511~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~513~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~514~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~515~^0.580^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~516~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~517~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~518~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18305~^~606~^1.679^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~612~^0.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~613~^1.072^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~614~^0.585^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~617~^4.215^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~618~^3.281^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~619~^0.239^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~626~^0.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18305~^~645~^4.244^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18305~^~646~^3.524^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18306~^~312~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~315~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~404~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~405~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~406~^1.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~410~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~415~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~501~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~502~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~503~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~504~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~505~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~506~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~507~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~508~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~509~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~510~^0.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~511~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~512~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~513~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~514~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~515~^0.793^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~516~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~517~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~518~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~606~^2.911^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~612~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~613~^1.648^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~614~^1.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~617~^5.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~618~^2.892^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~619~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~645~^5.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18306~^~646~^3.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~312~^0.040^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~315~^0.140^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~404~^0.023^11^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~405~^0.029^11^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~406~^0.200^11^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~410~^0.319^8^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~415~^0.041^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18308~^~501~^0.028^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~502~^0.078^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~503~^0.103^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~504~^0.173^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~505~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~506~^0.043^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~507~^0.031^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~508~^0.099^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~509~^0.080^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~510~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~511~^0.102^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~512~^0.050^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~513~^0.072^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~514~^0.136^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~515~^0.518^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~516~^0.059^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~517~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~518~^0.108^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18308~^~606~^2.562^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~612~^0.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~613~^1.380^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~614~^1.138^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~617~^5.825^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~618~^1.917^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~619~^0.138^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18308~^~645~^5.837^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18308~^~646~^2.055^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18309~^~312~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~315~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~404~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~405~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~406~^1.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~410~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~415~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~501~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~502~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~503~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~504~^0.170^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~505~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~506~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~507~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~508~^0.124^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~509~^0.075^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~510~^0.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~511~^0.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~512~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~513~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~514~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~515~^0.791^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~516~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~517~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~518~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~606~^2.985^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~612~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~613~^1.700^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~614~^1.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~617~^5.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~618~^3.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~619~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~645~^5.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18309~^~646~^3.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18310~^~312~^0.118^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~315~^0.161^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~404~^0.087^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~405~^0.140^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~406~^0.605^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~410~^0.232^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~415~^0.020^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18310~^~605~^2.490^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~606~^12.449^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~18310~^~607~^0.235^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~608~^0.112^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~609~^0.252^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~610~^0.284^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~611~^1.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~612~^1.096^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~613~^5.565^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~614~^3.361^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~615~^0.097^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~617~^7.271^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~618~^1.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~619~^0.085^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~620~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/1994~ -~18310~^~624~^0.097^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~625~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~626~^0.042^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/1994~ -~18310~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~629~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/1994~ -~18310~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/1994~ -~18310~^~645~^7.336^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~646~^1.149^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~652~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~653~^0.057^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18310~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~18312~^~312~^0.203^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~315~^0.125^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~404~^0.051^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~405~^0.147^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~406~^0.595^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~410~^0.202^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~415~^0.029^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~502~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~503~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~504~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~505~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~506~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~507~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~508~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~509~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~510~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~511~^0.167^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~512~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~513~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~514~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~515~^0.769^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~516~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~517~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~518~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~606~^8.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~607~^0.387^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~608~^0.229^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~609~^0.133^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~610~^0.299^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~611~^0.335^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~612~^1.214^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~613~^3.697^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~614~^1.996^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~617~^4.732^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~618~^0.633^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~619~^0.192^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~626~^0.267^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18312~^~645~^5.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18312~^~646~^0.814^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~312~^0.068^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~315~^0.438^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~405~^0.080^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~406~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18313~^~410~^0.240^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~415~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~501~^0.029^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~502~^0.078^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~503~^0.103^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~504~^0.174^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~505~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~506~^0.043^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~507~^0.030^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~508~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~509~^0.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~510~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~511~^0.108^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~512~^0.051^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~513~^0.074^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~514~^0.140^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~515~^0.507^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~516~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~517~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~518~^0.107^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18313~^~606~^6.976^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~608~^0.025^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~609~^0.303^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~610~^0.241^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~611~^1.917^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~612~^0.820^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~613~^1.967^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~614~^1.700^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~617~^7.258^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~618~^1.469^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~619~^0.075^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18313~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18313~^~645~^7.260^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18313~^~646~^1.544^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~312~^0.080^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~315~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18314~^~404~^0.028^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~405~^0.104^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~406~^0.132^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~410~^0.257^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~415~^0.045^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~501~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~502~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~503~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~504~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~505~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~506~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~507~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~508~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~509~^0.108^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~510~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~511~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~512~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~513~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~514~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~515~^0.690^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~516~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~517~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~518~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18314~^~606~^8.934^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~607~^0.248^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~608~^0.162^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~609~^0.266^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~610~^0.336^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~611~^1.362^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~612~^1.259^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~613~^3.191^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~614~^1.944^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~617~^6.269^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~618~^1.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~619~^0.157^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~626~^0.171^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~645~^6.554^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18314~^~646~^1.217^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~312~^0.063^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~315~^0.210^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~404~^0.088^4^0.043^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~405~^0.148^4^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~406~^0.403^3^0.048^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~410~^0.238^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18316~^~415~^0.011^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~501~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~502~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~503~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~504~^0.482^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~505~^0.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~507~^0.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~508~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~509~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~510~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~511~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~512~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~513~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~514~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~515~^1.441^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~516~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~517~^0.546^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~518~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18316~^~606~^5.854^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~607~^0.054^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~608~^0.049^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~609~^0.228^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~610~^0.208^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~611~^1.368^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~612~^0.732^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~613~^1.805^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~614~^1.373^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~617~^5.431^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~618~^1.092^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~619~^0.078^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18316~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~626~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~645~^5.495^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18316~^~646~^1.170^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~312~^0.024^3^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~315~^0.060^3^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~404~^0.039^11^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~405~^0.208^11^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~406~^0.292^11^0.099^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~410~^0.662^11^0.039^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~415~^0.048^10^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~501~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~502~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~503~^0.281^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~504~^0.455^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~505~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~507~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~508~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~509~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~510~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~511~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~512~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~513~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~514~^0.421^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~515~^1.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~516~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~517~^0.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~518~^0.334^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18317~^~606~^2.349^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~607~^0.024^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~608~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~609~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~610~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~611~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~612~^0.088^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~613~^1.469^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~614~^0.685^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~617~^4.673^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~618~^3.438^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~619~^0.249^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~620~^0.021^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~626~^0.099^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18317~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18317~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18317~^~645~^4.797^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18317~^~646~^3.723^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~312~^0.047^8^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~315~^0.224^8^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~404~^0.141^22^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~405~^0.106^22^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~406~^1.425^22^0.171^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~410~^0.110^5^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~415~^0.030^7^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~502~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~503~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~504~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~505~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~506~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~507~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~508~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~509~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~511~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~512~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~513~^0.093^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~514~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~515~^0.906^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~516~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~517~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~518~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18319~^~606~^2.457^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18319~^~612~^0.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~613~^1.516^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~614~^0.834^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~617~^7.299^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~618~^4.808^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~619~^0.568^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~626~^0.012^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18319~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~628~^0.089^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~630~^0.032^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18319~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1995~ -~18319~^~645~^7.449^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18319~^~646~^5.376^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~312~^0.001^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~315~^0.060^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~404~^0.062^10^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~405~^0.209^10^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~406~^0.649^9^0.046^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~410~^0.793^8^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~415~^0.030^9^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~501~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~502~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~503~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~504~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~505~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~506~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~508~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~509~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~510~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~511~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~512~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~513~^0.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~514~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~515~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~516~^0.048^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~517~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~518~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18320~^~606~^1.766^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~612~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~613~^1.345^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~614~^0.384^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~617~^2.619^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~618~^3.414^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~619~^0.205^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~620~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~626~^0.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18320~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18320~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18320~^~645~^2.685^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18320~^~646~^3.648^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18321~^~312~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~315~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~404~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~405~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~406~^0.944^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~410~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~415~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~502~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~503~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~504~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~505~^0.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~506~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~507~^0.083^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~508~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~509~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~510~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~511~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~512~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~513~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~514~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~515~^0.864^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~516~^0.130^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~517~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~518~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~606~^3.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~612~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~613~^1.881^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~614~^1.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~617~^5.539^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~618~^3.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~619~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~620~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~626~^0.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~645~^5.582^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18321~^~646~^3.331^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~312~^0.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~315~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~404~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~405~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~406~^1.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~410~^0.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~415~^0.065^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~502~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~503~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~504~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~505~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~506~^0.053^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~507~^0.051^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~508~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~509~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~510~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~511~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~512~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~514~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~515~^0.779^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~516~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~517~^0.232^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~518~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~606~^2.682^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~612~^0.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~613~^1.529^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~614~^1.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~617~^4.654^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~618~^2.661^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~619~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~645~^4.654^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18322~^~646~^2.842^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~312~^0.053^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~315~^0.152^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~404~^0.061^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~405~^0.033^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~406~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~410~^0.114^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~415~^0.023^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~501~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~502~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~503~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~504~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~505~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~506~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~508~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~509~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~510~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~511~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~512~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~513~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~514~^0.132^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~515~^0.538^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~516~^0.064^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~517~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~518~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18323~^~606~^1.508^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~612~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~613~^0.995^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~614~^0.501^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~617~^4.193^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~618~^3.485^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~619~^0.255^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18323~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~626~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18323~^~645~^4.241^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18323~^~646~^3.749^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18324~^~312~^0.184^2^^~1~^~A~^^^1^0.148^0.220^1^^^~1~^~10/01/2007~ -~18324~^~315~^0.710^2^^~1~^~A~^^^1^0.610^0.810^1^^^^~10/01/2007~ -~18324~^~404~^0.204^2^^~1~^~A~^^^1^0.159^0.250^1^^^^~10/01/2007~ -~18324~^~405~^0.078^2^^~1~^~A~^^^1^0.063^0.094^1^^^^~10/01/2007~ -~18324~^~406~^1.310^1^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~410~^0.391^2^^~1~^~A~^^^1^0.384^0.399^1^^^^~10/01/2007~ -~18324~^~415~^0.038^2^^~1~^~A~^^^1^0.038^0.039^1^^^^~10/01/2007~ -~18324~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~502~^0.146^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~503~^0.170^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~504~^0.310^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~505~^0.125^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~506~^0.080^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~507~^0.080^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~508~^0.205^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~509~^0.090^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~510~^0.215^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~511~^0.290^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~512~^0.105^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~513~^0.195^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~514~^0.340^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~515~^0.953^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~516~^0.175^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~517~^0.254^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~518~^0.216^0^^~1~^~A~^^^^^^^^^^~10/01/2007~ -~18324~^~606~^2.654^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18324~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~610~^0.008^2^^~1~^~A~^^^1^0.000^0.020^1^^^~1~^~07/01/2012~ -~18324~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~612~^0.032^2^^~1~^~A~^^^1^0.000^0.080^1^^^~1~^~07/01/2012~ -~18324~^~613~^1.568^2^^~1~^~A~^^^1^1.920^2.050^1^^^^~07/01/2012~ -~18324~^~614~^1.015^2^^~1~^~A~^^^1^1.230^1.340^1^^^^~07/01/2012~ -~18324~^~615~^0.016^2^^~1~^~A~^^^1^0.000^0.040^1^^^~1~^~07/01/2012~ -~18324~^~617~^8.238^2^^~1~^~A~^^^1^9.990^10.870^1^^^^~07/01/2012~ -~18324~^~618~^3.361^2^^~1~^~A~^^^1^4.070^4.440^1^^^^~07/01/2012~ -~18324~^~619~^0.193^2^^~1~^~A~^^^1^0.220^0.270^1^^^^~07/01/2012~ -~18324~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~624~^0.016^2^^~1~^~A~^^^1^0.000^0.040^1^^^~1~^~07/01/2012~ -~18324~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~626~^0.043^2^^~1~^~A~^^^1^0.050^0.060^1^^^^~07/01/2012~ -~18324~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~628~^0.036^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~07/01/2012~ -~18324~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~645~^8.317^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18324~^~646~^3.554^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~18324~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~ -~18324~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~857~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18324~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2007~ -~18325~^~312~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~315~^0.712^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~404~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~405~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~406~^0.847^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~410~^0.479^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~415~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~501~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~502~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~503~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~504~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~505~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~506~^0.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~508~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~509~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~510~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~511~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~512~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~513~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~514~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~515~^0.972^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~516~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~517~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~518~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~606~^3.989^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~612~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~613~^2.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~614~^1.382^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~617~^11.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~618~^5.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~619~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~620~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~621~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~626~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~628~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~645~^11.181^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18325~^~646~^5.710^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18326~^~312~^0.148^3^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~315~^0.227^3^0.027^~1~^~A~^^^1^0.190^0.280^2^0.109^0.344^~2, 3~^~11/01/2007~ -~18326~^~404~^0.177^3^0.036^~1~^~A~^^^1^0.128^0.247^2^0.023^0.331^~2, 3~^~11/01/2007~ -~18326~^~405~^0.124^3^0.014^~1~^~A~^^^1^0.098^0.145^2^0.065^0.182^~2, 3~^~11/01/2007~ -~18326~^~406~^1.107^3^0.184^~1~^~A~^^^1^0.791^1.430^2^0.313^1.901^~2, 3~^~11/01/2007~ -~18326~^~410~^0.452^3^0.061^~1~^~A~^^^1^0.379^0.572^2^0.191^0.712^~2, 3~^~11/01/2007~ -~18326~^~415~^0.063^2^^~1~^~A~^^^1^0.046^0.079^1^^^^~11/01/2007~ -~18326~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~502~^0.154^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~503~^0.158^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~504~^0.297^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~505~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~506~^0.249^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~507~^0.062^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~508~^0.175^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~509~^0.118^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~510~^0.211^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~511~^0.154^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~512~^0.088^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~513~^0.150^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~514~^0.299^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~515~^0.844^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~516~^0.115^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~517~^0.286^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~518~^0.220^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18326~^~606~^1.988^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~607~^0.007^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~612~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~11/01/2007~ -~18326~^~613~^1.107^3^0.106^~1~^~A~^^^1^0.900^1.250^2^0.651^1.562^~2, 3~^~11/01/2007~ -~18326~^~614~^0.810^3^0.081^~1~^~A~^^^1^0.650^0.910^2^0.462^1.158^~2, 3~^~11/01/2007~ -~18326~^~615~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.020^2^-0.001^0.028^~2, 3~^~11/01/2007~ -~18326~^~617~^4.567^3^0.645^~1~^~A~^^^1^3.300^5.410^2^1.792^7.341^~2, 3~^~11/01/2007~ -~18326~^~618~^1.650^3^0.060^~1~^~A~^^^1^1.590^1.770^2^1.392^1.908^~2, 3~^~11/01/2007~ -~18326~^~619~^0.117^3^0.029^~1~^~A~^^^1^0.060^0.150^2^-0.006^0.239^~2, 3~^~11/01/2007~ -~18326~^~620~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~11/01/2007~ -~18326~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~624~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~2, 3~^~11/01/2007~ -~18326~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~626~^0.033^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.019^0.048^~2, 3~^~11/01/2007~ -~18326~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~645~^4.600^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~646~^1.770^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18326~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18326~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18326~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18327~^~312~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~315~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~404~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~405~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~406~^0.782^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~410~^0.445^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~415~^0.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~502~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~503~^0.226^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~504~^0.376^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~505~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~506~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~507~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~508~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~509~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~510~^0.253^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~511~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~513~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~514~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~515~^1.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~516~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~517~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~518~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~606~^3.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~607~^0.057^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~608~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~609~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~610~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~611~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~612~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~613~^1.675^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~614~^0.977^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~617~^3.594^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~618~^1.668^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~619~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~620~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~626~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~645~^3.697^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18327~^~646~^1.810^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~312~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~315~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~404~^0.139^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~405~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~406~^0.984^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~410~^0.415^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~415~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~501~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~502~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~503~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~504~^0.397^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~505~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~506~^0.103^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~507~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~508~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~509~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~510~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~511~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~512~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~513~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~514~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~515~^1.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~516~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~517~^0.444^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~518~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~606~^4.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~607~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~608~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~609~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~610~^0.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~611~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~612~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~613~^2.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~614~^1.426^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~617~^5.965^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~618~^3.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~619~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~620~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~628~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~645~^6.043^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18328~^~646~^3.438^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~312~^0.075^10^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~315~^0.315^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~404~^0.392^20^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~405~^0.213^20^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~406~^2.727^20^0.099^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~410~^0.268^3^0.087^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~415~^0.064^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~501~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~502~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~503~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~504~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~505~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~507~^0.155^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~508~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~509~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~510~^0.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~511~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~512~^0.146^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~513~^0.210^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~514~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~515~^2.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~516~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~517~^0.809^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~518~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18332~^~606~^7.974^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~612~^0.154^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18332~^~613~^4.096^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~614~^3.724^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~617~^17.887^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~618~^3.768^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~619~^0.199^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~645~^17.887^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18332~^~646~^3.968^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18333~^~312~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~315~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~404~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~405~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~406~^2.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~410~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~501~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~502~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~503~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~504~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~505~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~507~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~508~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~509~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~510~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~511~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~512~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~513~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~514~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~515~^2.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~516~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~517~^0.783^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~518~^0.322^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~606~^7.711^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~612~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~613~^3.963^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~614~^3.599^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~617~^17.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~618~^3.654^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~619~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~645~^17.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18333~^~646~^3.847^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18334~^~312~^0.075^2^^~1~^~A~^^^1^0.074^0.076^1^^^^~04/01/2008~ -~18334~^~315~^0.442^2^^~1~^~A~^^^1^0.442^0.443^1^^^^~04/01/2008~ -~18334~^~404~^0.275^2^^~1~^~A~^^^1^0.160^0.390^1^^^^~04/01/2008~ -~18334~^~405~^0.170^2^^~1~^~A~^^^1^0.080^0.260^1^^^^~04/01/2008~ -~18334~^~406~^2.700^2^^~1~^~A~^^^1^1.800^3.600^1^^^^~04/01/2008~ -~18334~^~410~^0.405^2^^~1~^~A~^^^1^0.400^0.410^1^^^^~04/01/2008~ -~18334~^~415~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~04/01/2008~ -~18334~^~501~^0.055^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~502~^0.115^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~503~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~504~^0.407^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~505~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~506~^0.091^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~507~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~508~^0.255^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~509~^0.116^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~510~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~511~^0.211^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~512~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~513~^0.187^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~514~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~515~^1.900^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~516~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~517~^0.790^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~518~^0.279^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18334~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~606~^8.159^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18334~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18334~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~612~^0.232^2^^~1~^~A~^^^1^0.126^0.339^1^^^^~04/01/2008~ -~18334~^~613~^4.705^2^^~1~^~A~^^^1^3.860^5.550^1^^^^~04/01/2008~ -~18334~^~614~^3.044^2^^~1~^~A~^^^1^2.880^3.207^1^^^^~04/01/2008~ -~18334~^~615~^0.070^2^^~1~^~A~^^^1^0.059^0.081^1^^^^~04/01/2008~ -~18334~^~617~^11.676^2^^~1~^~A~^^^1^9.468^13.884^1^^^^~04/01/2008~ -~18334~^~618~^2.957^2^^~1~^~A~^^^1^2.756^3.159^1^^^^~04/01/2008~ -~18334~^~619~^0.122^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18334~^~620~^0.018^2^^~1~^~A~^^^1^0.000^0.036^1^^^~1~^~04/01/2008~ -~18334~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~624~^0.033^2^^~1~^~A~^^^1^0.000^0.066^1^^^~1~^~04/01/2008~ -~18334~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~626~^0.357^2^^~1~^~A~^^^1^0.187^0.527^1^^^^~04/01/2008~ -~18334~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~ -~18334~^~628~^0.134^2^^~1~^~A~^^^1^0.088^0.181^1^^^^~04/01/2008~ -~18334~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18334~^~645~^12.167^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~646~^3.176^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18334~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~653~^0.075^2^^~1~^~A~^^^1^0.053^0.097^1^^^^~04/01/2008~ -~18334~^~672~^0.078^2^^~1~^~A~^^^1^0.040^0.117^1^^^^~04/01/2008~ -~18334~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18334~^~851~^0.122^2^^~1~^~A~^^^1^0.115^0.130^1^^^^~04/01/2008~ -~18335~^~312~^0.097^2^^~1~^~A~^^^1^0.091^0.103^1^^^^~04/01/2008~ -~18335~^~404~^0.300^2^^~1~^~A~^^^1^0.170^0.430^1^^^^~04/01/2008~ -~18335~^~405~^0.155^2^^~1~^~A~^^^1^0.070^0.240^1^^^^~04/01/2008~ -~18335~^~406~^3.450^2^^~1~^~A~^^^1^2.000^4.900^1^^^^~04/01/2008~ -~18335~^~410~^0.455^2^^~1~^~A~^^^1^0.440^0.470^1^^^^~04/01/2008~ -~18335~^~415~^0.045^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~04/01/2008~ -~18335~^~501~^0.065^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~502~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~503~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~504~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~505~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~506~^0.105^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~507~^0.134^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~508~^0.294^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~509~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~510~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~511~^0.235^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~512~^0.114^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~513~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~514~^0.304^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~515~^2.158^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~516~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~517~^0.798^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~518~^0.329^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18335~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~606~^9.277^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18335~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18335~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~612~^0.269^2^^~1~^~A~^^^1^0.156^0.381^1^^^^~04/01/2008~ -~18335~^~613~^5.375^2^^~1~^~A~^^^1^4.464^6.286^1^^^^~04/01/2008~ -~18335~^~614~^3.437^2^^~1~^~A~^^^1^3.243^3.630^1^^^^~04/01/2008~ -~18335~^~615~^0.077^2^^~1~^~A~^^^1^0.064^0.089^1^^^^~04/01/2008~ -~18335~^~617~^12.996^2^^~1~^~A~^^^1^10.791^15.202^1^^^^~04/01/2008~ -~18335~^~618~^3.321^2^^~1~^~A~^^^1^3.146^3.497^1^^^^~04/01/2008~ -~18335~^~619~^0.138^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18335~^~620~^0.020^2^^~1~^~A~^^^1^0.000^0.040^1^^^~1~^~04/01/2008~ -~18335~^~621~^0.000^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~624~^0.036^2^^~1~^~A~^^^1^0.000^0.071^1^^^~1~^~04/01/2008~ -~18335~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~626~^0.409^2^^~1~^~A~^^^1^0.230^0.587^1^^^^~04/01/2008~ -~18335~^~627~^0.000^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~628~^0.157^2^^~1~^~A~^^^1^0.114^0.200^1^^^^~04/01/2008~ -~18335~^~629~^0.000^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~630~^0.000^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~631~^0.000^0^^~4~^~RK~^^^^^^^^^^~04/01/2008~ -~18335~^~645~^13.562^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~646~^3.568^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18335~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~653~^0.085^2^^~1~^~A~^^^1^0.062^0.108^1^^^^~04/01/2008~ -~18335~^~672~^0.089^2^^~1~^~A~^^^1^0.049^0.129^1^^^^~04/01/2008~ -~18335~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18335~^~851~^0.138^2^^~1~^~A~^^^1^0.132^0.144^1^^^^~04/01/2008~ -~18336~^~312~^0.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~315~^0.430^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~404~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~405~^0.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~406~^3.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~410~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~415~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~501~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~502~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~503~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~504~^0.442^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~505~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~506~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~507~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~508~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~509~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~510~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~511~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~512~^0.143^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~513~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~514~^0.271^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~515~^2.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~516~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~517~^0.745^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~518~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~606~^8.622^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~612~^0.136^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~613~^4.882^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~614~^3.605^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~617~^15.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~618~^8.565^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~619~^0.557^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~645~^15.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18336~^~646~^9.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~312~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~315~^0.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~404~^0.398^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~405~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~406~^4.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~415~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~501~^0.085^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~502~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~503~^0.272^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~504~^0.508^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~505~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~506~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~507~^0.165^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~508~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~509~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~510~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~511~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~512~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~513~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~514~^0.296^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~515~^2.574^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~516~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~517~^0.864^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~518~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18337~^~606~^9.643^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~612~^0.186^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~613~^4.954^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~614~^4.494^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~617~^21.594^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~618~^4.645^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~619~^0.249^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18337~^~645~^21.597^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18337~^~646~^4.894^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18338~^~312~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~315~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~404~^0.541^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~405~^0.341^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~406~^4.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~410~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~501~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~502~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~503~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~504~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~505~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~506~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~507~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~508~^0.359^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~509~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~510~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~511~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~512~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~513~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~514~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~515~^2.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~516~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~517~^0.826^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~518~^0.356^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~606~^1.470^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18338~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~612~^0.027^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~613~^0.794^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~614~^0.649^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~617~^3.149^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~618~^0.876^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~619~^0.047^0^^~4~^~FLA~^^^^^^^^^^~08/01/1998~ -~18338~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1998~ -~18338~^~626~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~628~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18338~^~645~^3.149^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18338~^~646~^0.923^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~312~^0.171^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~315~^0.741^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~404~^0.430^5^0.098^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~405~^0.147^5^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~406~^3.378^4^0.567^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~410~^0.480^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~415~^0.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18339~^~501~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~502~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~503~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~504~^0.747^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~505~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~506~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~507~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~508~^0.517^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~509~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~510~^0.458^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~511~^0.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~512~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~513~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~514~^0.451^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~515~^3.565^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~516~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~517~^1.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~518~^0.513^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~606~^0.983^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~607~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~612~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~613~^0.555^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~614~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~617~^1.984^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~618~^0.784^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~619~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~645~^1.984^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18339~^~646~^0.823^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18342~^~312~^0.135^3^0.004^~1~^~A~^^^1^0.127^0.140^2^0.117^0.153^~2, 3~^~10/01/2005~ -~18342~^~315~^0.582^3^0.012^~1~^~A~^^^1^0.560^0.600^2^0.532^0.633^~2, 3~^~10/01/2005~ -~18342~^~404~^0.526^2^^~1~^~A~^^^1^0.521^0.531^1^^^^~10/01/2005~ -~18342~^~405~^0.374^3^0.017^~1~^~A~^^^1^0.341^0.400^2^0.299^0.449^~2, 3~^~10/01/2005~ -~18342~^~406~^5.367^3^0.136^~1~^~A~^^^1^5.120^5.590^2^4.781^5.953^~2, 3~^~10/01/2005~ -~18342~^~410~^0.452^3^0.015^~1~^~A~^^^1^0.426^0.477^2^0.388^0.515^~2, 3~^~10/01/2005~ -~18342~^~415~^0.097^3^0.006^~1~^~A~^^^1^0.089^0.108^2^0.073^0.122^~2, 3~^~10/01/2005~ -~18342~^~501~^0.081^3^0.002^~1~^~A~^^^1^0.077^0.084^2^0.072^0.091^~2, 3~^~10/01/2005~ -~18342~^~502~^0.286^3^0.004^~1~^~A~^^^1^0.278^0.292^2^0.268^0.303^~2, 3~^~10/01/2005~ -~18342~^~503~^0.337^3^0.020^~1~^~A~^^^1^0.316^0.377^2^0.251^0.423^~2, 3~^~10/01/2005~ -~18342~^~504~^0.729^3^0.004^~1~^~A~^^^1^0.722^0.734^2^0.713^0.745^~2, 3~^~10/01/2005~ -~18342~^~505~^0.233^3^0.010^~1~^~A~^^^1^0.216^0.252^2^0.188^0.278^~2, 3~^~10/01/2005~ -~18342~^~506~^0.145^3^0.002^~1~^~A~^^^1^0.141^0.147^2^0.137^0.152^~2, 3~^~10/01/2005~ -~18342~^~507~^0.227^3^0.003^~1~^~A~^^^1^0.221^0.231^2^0.214^0.240^~2, 3~^~10/01/2005~ -~18342~^~508~^0.506^3^0.007^~1~^~A~^^^1^0.492^0.514^2^0.476^0.535^~2, 3~^~10/01/2005~ -~18342~^~509~^0.290^3^0.013^~1~^~A~^^^1^0.264^0.303^2^0.234^0.346^~2, 3~^~10/01/2005~ -~18342~^~510~^0.401^3^0.016^~1~^~A~^^^1^0.382^0.433^2^0.332^0.470^~2, 3~^~10/01/2005~ -~18342~^~511~^0.378^3^0.001^~1~^~A~^^^1^0.376^0.380^2^0.372^0.383^~2, 3~^~10/01/2005~ -~18342~^~512~^0.222^3^0.002^~1~^~A~^^^1^0.219^0.225^2^0.214^0.229^~2, 3~^~10/01/2005~ -~18342~^~513~^0.343^3^0.005^~1~^~A~^^^1^0.333^0.349^2^0.321^0.365^~2, 3~^~10/01/2005~ -~18342~^~514~^0.450^3^0.003^~1~^~A~^^^1^0.445^0.456^2^0.436^0.464^~2, 3~^~10/01/2005~ -~18342~^~515~^3.510^3^0.083^~1~^~A~^^^1^3.349^3.626^2^3.152^3.868^~2, 3~^~10/01/2005~ -~18342~^~516~^0.386^3^0.007^~1~^~A~^^^1^0.372^0.394^2^0.356^0.415^~2, 3~^~10/01/2005~ -~18342~^~517~^1.213^3^0.032^~1~^~A~^^^1^1.151^1.256^2^1.076^1.350^~2, 3~^~10/01/2005~ -~18342~^~518~^0.546^3^0.020^~1~^~A~^^^1^0.506^0.567^2^0.460^0.632^~2, 3~^~10/01/2005~ -~18342~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18342~^~606~^1.375^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~612~^0.009^3^0.009^~1~^~A~^^^1^0.000^0.028^2^-0.031^0.049^~1, 2, 3~^~10/01/2005~ -~18342~^~613~^0.785^3^0.042^~1~^~A~^^^1^0.702^0.837^2^0.605^0.965^~2, 3~^~10/01/2005~ -~18342~^~614~^0.537^3^0.047^~1~^~A~^^^1^0.447^0.604^2^0.336^0.739^~2, 3~^~10/01/2005~ -~18342~^~615~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.016^0.024^~2, 3~^~10/01/2005~ -~18342~^~617~^1.833^3^0.183^~1~^~A~^^^1^1.470^2.058^2^1.044^2.622^~2, 3~^~10/01/2005~ -~18342~^~618~^2.285^3^0.130^~1~^~A~^^^1^2.029^2.456^2^1.724^2.845^~2, 3~^~10/01/2005~ -~18342~^~619~^0.224^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~ -~18342~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~624~^0.024^3^0.001^~1~^~A~^^^1^0.021^0.026^2^0.017^0.030^~2, 3~^~10/01/2005~ -~18342~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~626~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.030^2^0.021^0.033^~2, 3~^~10/01/2005~ -~18342~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18342~^~628~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.022^2^0.017^0.024^~2, 3~^~10/01/2005~ -~18342~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18342~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18342~^~645~^1.881^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~646~^2.509^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~ -~18342~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~ -~18342~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2005~ -~18342~^~851~^0.224^3^0.005^~1~^~A~^^^1^0.217^0.233^2^0.204^0.244^~2, 3~^~10/01/2005~ -~18344~^~312~^0.133^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~315~^0.527^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~404~^0.527^3^0.095^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~405~^0.517^3^0.092^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~406~^3.287^3^0.268^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~410~^0.655^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~415~^0.053^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~501~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~502~^0.310^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~503~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~504~^0.686^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~505~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~506~^0.186^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~507~^0.201^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~508~^0.467^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~509~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~510~^0.443^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~511~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~512~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~513~^0.364^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~514~^0.533^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~515~^2.769^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~516~^0.338^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~517~^0.915^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~518~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18344~^~606~^1.577^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18344~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18344~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18344~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18344~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18344~^~612~^0.025^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18344~^~613~^0.945^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~614~^0.595^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~617~^2.870^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~618~^1.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~619~^0.055^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~620~^0.017^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~621~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~626~^0.055^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~627~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~628~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~629~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18344~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18344~^~645~^2.930^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18344~^~646~^1.128^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~312~^0.136^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~315~^0.754^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~404~^0.448^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~405~^0.289^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~406~^4.954^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~410~^0.428^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~415~^0.045^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18345~^~501~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~502~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~503~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~504~^0.672^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~505~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~506~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~507~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~508~^0.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~509~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~510~^0.423^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~511~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~512~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~513~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~514~^0.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~515~^2.902^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~516~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~517~^0.970^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~518~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~606~^0.619^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~611~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~612~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~613~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~614~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~617~^1.458^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~618~^1.471^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~626~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18345~^~645~^1.488^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18345~^~646~^1.568^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~312~^0.201^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~315~^0.702^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~404~^0.380^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~405~^0.270^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~406~^3.900^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~410~^0.383^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~415~^0.062^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18346~^~501~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~502~^0.313^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~503~^0.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~504~^0.712^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~505~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~506~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~507~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~508~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~509~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~510~^0.468^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~511~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~512~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~513~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~514~^0.532^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~515~^3.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~516~^0.369^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~517~^1.125^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~518~^0.512^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~606~^0.605^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~612~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~613~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~614~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~617~^1.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~618~^0.656^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~619~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~626~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18346~^~645~^1.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18346~^~646~^0.708^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~312~^0.150^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~315~^1.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~404~^0.433^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~405~^0.273^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~406~^4.072^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~410~^0.364^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~415~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~501~^0.118^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~502~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~503~^0.321^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~504~^0.594^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~505~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~506~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~507~^0.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~508~^0.419^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~509~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~510~^0.379^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~511~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~512~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~513~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~514~^0.400^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~515~^2.897^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~516~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~517~^0.964^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~518~^0.416^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18347~^~606~^1.497^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~609~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18347~^~612~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~613~^0.825^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~614~^0.633^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~617~^3.104^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~618~^1.049^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~619~^0.058^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18347~^~645~^3.109^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18347~^~646~^1.107^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18348~^~312~^0.239^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~315~^2.298^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~404~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~405~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~406~^3.677^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~410~^0.489^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~415~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~501~^0.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~502~^0.260^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~503~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~504~^0.601^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~505~^0.266^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~506~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~507~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~508~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~509~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~510~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~511~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~512~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~513~^0.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~514~^0.463^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~515~^2.692^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~516~^0.347^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~517~^0.893^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~518~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~606~^0.836^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~609~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~612~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~613~^0.661^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~614~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~617~^1.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~618~^2.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~619~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~620~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~626~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~645~^1.199^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18348~^~646~^2.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~312~^0.135^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~315~^0.559^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~404~^0.523^28^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~405~^0.300^20^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~406~^4.352^27^0.138^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~410~^0.452^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~415~^0.039^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18349~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~502~^0.255^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~503~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~504~^0.608^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~505~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~506~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~507~^0.182^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~508~^0.422^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~509~^0.249^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~510~^0.380^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~511~^0.320^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~512~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~513~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~514~^0.414^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~515~^2.772^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~516~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~517~^0.926^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~518~^0.416^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~606~^0.962^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~612~^0.016^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~613~^0.549^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~614~^0.396^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~617~^1.942^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~618~^0.795^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~619~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~626~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18349~^~645~^1.961^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18349~^~646~^0.834^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18350~^~312~^0.109^5^0.005^~1~^~A~^^^1^0.101^0.122^4^0.096^0.122^~2, 3~^~02/01/2015~ -~18350~^~315~^0.512^5^0.037^~1~^~A~^^^1^0.427^0.604^4^0.410^0.614^~2, 3~^~02/01/2015~ -~18350~^~404~^0.543^3^0.078^~1~^~A~^^^1^0.390^0.640^2^0.210^0.877^~2, 3~^~02/01/2015~ -~18350~^~405~^0.297^3^0.061^~1~^~A~^^^1^0.190^0.400^2^0.036^0.558^~2, 3~^~02/01/2015~ -~18350~^~406~^4.180^3^0.716^~1~^~A~^^^1^2.920^5.400^2^1.098^7.261^~2, 3~^~02/01/2015~ -~18350~^~410~^0.555^2^^~1~^~A~^^^1^0.520^0.590^1^^^^~02/01/2015~ -~18350~^~415~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~02/01/2015~ -~18350~^~605~^0.027^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~606~^0.842^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~607~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 2, 3~^~02/01/2015~ -~18350~^~608~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~02/01/2015~ -~18350~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~02/01/2015~ -~18350~^~610~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 2, 3~^~02/01/2015~ -~18350~^~611~^0.005^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.011^0.021^~1, 2, 3~^~02/01/2015~ -~18350~^~612~^0.020^3^0.013^~1~^~A~^^^1^0.007^0.045^2^-0.034^0.074^~2, 3~^~02/01/2015~ -~18350~^~613~^0.523^3^0.044^~1~^~A~^^^1^0.456^0.607^2^0.331^0.714^~2, 3~^~02/01/2015~ -~18350~^~614~^0.249^3^0.025^~1~^~A~^^^1^0.200^0.280^2^0.143^0.355^~2, 3~^~02/01/2015~ -~18350~^~615~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~02/01/2015~ -~18350~^~617~^0.708^3^0.061^~1~^~AS~^^^1^0.607^0.819^2^0.444^0.972^~2, 3~^~02/01/2015~ -~18350~^~618~^1.596^3^0.110^~1~^~AS~^^^1^1.375^1.714^2^1.120^2.071^~2, 3~^~02/01/2015~ -~18350~^~619~^0.183^3^0.019^~1~^~AS~^^^1^0.145^0.203^2^0.101^0.264^~2, 3~^~02/01/2015~ -~18350~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18350~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18350~^~624~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~02/01/2015~ -~18350~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~02/01/2015~ -~18350~^~626~^0.020^3^0.003^~1~^~AS~^^^1^0.014^0.025^2^0.006^0.033^~2, 3~^~02/01/2015~ -~18350~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18350~^~628~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~02/01/2015~ -~18350~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18350~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2003~ -~18350~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2003~ -~18350~^~645~^0.748^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~646~^1.780^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~652~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~02/01/2015~ -~18350~^~653~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~02/01/2015~ -~18350~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~02/01/2015~ -~18350~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~02/01/2015~ -~18350~^~663~^0.020^3^0.007^~1~^~A~^^^1^0.012^0.035^2^-0.011^0.052^~2, 3~^~02/01/2015~ -~18350~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~665~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~02/01/2015~ -~18350~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~02/01/2015~ -~18350~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~673~^0.019^3^0.003^~1~^~A~^^^1^0.014^0.024^2^0.007^0.032^~2, 3~^~02/01/2015~ -~18350~^~674~^0.688^3^0.055^~1~^~A~^^^1^0.593^0.784^2^0.451^0.925^~2, 3~^~02/01/2015~ -~18350~^~675~^1.589^3^0.109^~1~^~A~^^^1^1.370^1.702^2^1.118^2.059^~2, 3~^~02/01/2015~ -~18350~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~685~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~02/01/2015~ -~18350~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~02/01/2015~ -~18350~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2015~ -~18350~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18350~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~851~^0.176^3^0.019^~1~^~A~^^^1^0.138^0.197^2^0.094^0.258^~2, 3~^~02/01/2015~ -~18350~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18350~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18351~^~312~^0.216^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~315~^1.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~404~^0.463^15^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~405~^0.310^15^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~406~^4.468^15^0.203^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~410~^0.492^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~415~^0.092^3^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~501~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~502~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~503~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~504~^0.655^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~505~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~506~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~507~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~508~^0.459^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~509~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~510~^0.425^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~511~^0.405^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~512~^0.212^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~513~^0.342^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~514~^0.491^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~515~^3.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~516~^0.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~517~^1.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~518~^0.458^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18351~^~606~^1.390^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18351~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18351~^~609~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18351~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18351~^~612~^0.025^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~613~^0.781^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~614~^0.572^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~617~^2.825^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~618~^1.087^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~619~^0.066^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18351~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18351~^~626~^0.013^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18351~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18351~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18351~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18351~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18351~^~645~^2.839^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18351~^~646~^1.153^0^^~4~^~FLA~^^^^^^^^^^~09/01/1998~ -~18353~^~312~^0.163^8^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~315~^0.460^8^0.021^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~404~^0.478^22^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~405~^0.336^20^0.019^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~406~^4.239^18^0.188^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~410~^0.410^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18353~^~415~^0.035^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18353~^~501~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~502~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~503~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~504~^0.693^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~505~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~506~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~507~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~508~^0.489^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~509~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~510~^0.432^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~511~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~512~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~513~^0.331^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~514~^0.449^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~515~^3.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~516~^0.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~517~^1.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~518~^0.480^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~606~^0.606^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~613~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~614~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~617~^1.100^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~618~^1.621^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~626~^0.033^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18353~^~645~^1.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18353~^~646~^1.719^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~312~^0.030^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~315~^0.190^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~404~^0.040^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~405~^0.025^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~406~^0.330^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~410~^0.270^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~415~^0.046^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~501~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~502~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~503~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~504~^0.257^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~505~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~506~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~507~^0.058^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~508~^0.151^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~509~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~510~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~511~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~512~^0.076^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~513~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~514~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~515~^0.848^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~516~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~517~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~518~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18354~^~606~^2.044^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18354~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18354~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18354~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18354~^~612~^0.037^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~613~^1.583^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~614~^0.416^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~617~^3.240^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~618~^5.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~619~^0.310^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~620~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~621~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~626~^0.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18354~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18354~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18354~^~645~^3.267^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18354~^~646~^5.315^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~312~^0.095^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~315~^0.210^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~404~^0.150^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~405~^0.130^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~406~^0.830^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~410~^0.416^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~415~^0.069^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~501~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~502~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~503~^0.319^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~504~^0.555^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~505~^0.388^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~506~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~507~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~508~^0.343^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~509~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~510~^0.354^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~511~^0.313^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~512~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~513~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~514~^0.485^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~515~^1.725^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~516~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~517~^0.600^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~518~^0.374^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18355~^~606~^6.059^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~607~^0.102^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~608~^0.030^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~609~^0.035^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~610~^0.069^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~611~^0.048^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~612~^0.437^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~613~^3.138^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~614~^2.084^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~617~^8.843^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~618~^1.861^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~619~^0.142^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~620~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~621~^0.006^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~626~^0.159^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18355~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18355~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18355~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~645~^9.057^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18355~^~646~^2.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~312~^0.088^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~315~^0.300^6^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~404~^0.324^12^0.054^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~405~^0.265^9^0.047^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~406~^2.384^10^0.100^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~410~^0.406^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~415~^0.107^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~501~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~503~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~504~^0.458^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~505~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~507~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~508~^0.300^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~509~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~510~^0.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~511~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~512~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~513~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~514~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~515~^1.732^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~516~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~517~^0.582^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~518~^0.331^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18356~^~606~^3.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18356~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18356~^~612~^0.049^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~613~^2.383^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~614~^0.633^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~617~^4.724^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~618~^7.021^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~619~^0.433^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~620~^0.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~621~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~626~^0.070^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18356~^~628~^0.003^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18356~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18356~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18356~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~18356~^~645~^4.797^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18356~^~646~^7.473^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~312~^0.065^11^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~315~^0.415^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~404~^0.470^10^0.068^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~405~^0.249^10^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~406~^3.703^10^0.331^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~410~^0.260^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~415~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~502~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~503~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~504~^0.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~505~^0.128^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~506~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~507~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~508~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~509~^0.152^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~510~^0.205^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~511~^0.200^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~512~^0.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~513~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~514~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~515~^1.613^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~516~^0.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~517~^0.555^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~518~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18357~^~606~^3.081^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18357~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18357~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~18357~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~612~^0.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~613~^1.599^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~614~^1.421^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~617~^6.838^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~618~^1.523^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~619~^0.081^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~645~^6.839^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18357~^~646~^1.604^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18358~^~312~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~315~^0.418^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~404~^0.409^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~405~^0.244^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~406~^3.622^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~410~^0.266^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~415~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~501~^0.068^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~502~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~503~^0.195^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~504~^0.382^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~505~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~506~^0.097^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~507~^0.115^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~508~^0.266^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~509~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~510~^0.223^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~511~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~512~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~513~^0.181^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~514~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~515~^1.753^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~516~^0.190^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~517~^0.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~518~^0.270^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~606~^3.348^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~608~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~612~^0.067^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~613~^1.734^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~614~^1.544^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~617~^7.420^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~618~^1.641^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~619~^0.088^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~626~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~645~^7.421^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18358~^~646~^1.728^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18360~^~312~^0.113^16^0.004^~1~^~A~^^^1^0.090^0.170^9^0.104^0.121^~2, 3~^~07/01/2014~ -~18360~^~315~^0.560^16^0.038^~1~^~A~^^^1^0.340^1.850^4^0.459^0.662^~2, 3~^~07/01/2014~ -~18360~^~404~^0.216^3^0.056^~1~^~A~^^^1^0.132^0.322^2^-0.024^0.457^~2, 3~^~02/01/2006~ -~18360~^~405~^0.080^3^0.012^~1~^~A~^^^1^0.060^0.100^2^0.030^0.130^~2, 3~^~02/01/2006~ -~18360~^~406~^1.867^3^0.233^~1~^~A~^^^1^1.500^2.300^2^0.863^2.870^~2, 3~^~02/01/2006~ -~18360~^~415~^0.203^3^0.007^~1~^~A~^^^1^0.190^0.210^2^0.175^0.232^~2, 3~^~02/01/2006~ -~18360~^~501~^0.040^3^0.006^~1~^~A~^^^1^0.030^0.050^2^0.015^0.065^~2, 3~^~02/01/2006~ -~18360~^~502~^0.227^3^0.017^~1~^~A~^^^1^0.210^0.260^2^0.155^0.298^~2, 3~^~02/01/2006~ -~18360~^~503~^0.220^3^0.015^~1~^~A~^^^1^0.190^0.240^2^0.154^0.286^~2, 3~^~02/01/2006~ -~18360~^~504~^0.837^3^0.022^~1~^~A~^^^1^0.810^0.880^2^0.743^0.931^~2, 3~^~02/01/2006~ -~18360~^~505~^0.197^3^0.013^~1~^~A~^^^1^0.170^0.210^2^0.139^0.254^~2, 3~^~02/01/2006~ -~18360~^~506~^0.180^3^0.006^~1~^~A~^^^1^0.170^0.190^2^0.155^0.205^~2, 3~^~02/01/2006~ -~18360~^~507~^0.140^3^0.006^~1~^~A~^^^1^0.130^0.150^2^0.115^0.165^~2, 3~^~02/01/2006~ -~18360~^~508~^0.290^3^0.010^~1~^~A~^^^1^0.280^0.310^2^0.247^0.333^~2, 3~^~02/01/2006~ -~18360~^~509~^0.223^3^0.003^~1~^~A~^^^1^0.220^0.230^2^0.209^0.238^~2, 3~^~02/01/2006~ -~18360~^~510~^0.287^3^0.007^~1~^~A~^^^1^0.280^0.300^2^0.258^0.315^~2, 3~^~02/01/2006~ -~18360~^~511~^0.287^3^0.007^~1~^~A~^^^1^0.280^0.300^2^0.258^0.315^~2, 3~^~02/01/2006~ -~18360~^~512~^0.167^3^0.007^~1~^~A~^^^1^0.160^0.180^2^0.138^0.195^~2, 3~^~02/01/2006~ -~18360~^~513~^0.457^3^0.015^~1~^~A~^^^1^0.430^0.480^2^0.394^0.519^~2, 3~^~02/01/2006~ -~18360~^~514~^0.540^3^0.031^~1~^~A~^^^1^0.500^0.600^2^0.408^0.671^~2, 3~^~02/01/2006~ -~18360~^~515~^1.257^3^0.024^~1~^~A~^^^1^1.210^1.290^2^1.153^1.360^~2, 3~^~02/01/2006~ -~18360~^~516~^0.250^3^0.006^~1~^~A~^^^1^0.240^0.260^2^0.225^0.275^~2, 3~^~02/01/2006~ -~18360~^~517~^0.770^3^0.067^~1~^~A~^^^1^0.650^0.880^2^0.483^1.056^~2, 3~^~02/01/2006~ -~18360~^~518~^0.367^3^0.019^~1~^~A~^^^1^0.330^0.390^2^0.287^0.446^~2, 3~^~02/01/2006~ -~18360~^~521~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~605~^0.172^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~606~^7.105^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~607~^0.006^9^0.000^~1~^~A~^^^1^0.005^0.007^2^0.005^0.008^~2, 3~^~05/01/2012~ -~18360~^~608~^0.004^9^0.004^~1~^~A~^^^1^0.000^0.050^2^-0.012^0.019^~1, 2, 3~^~07/01/2014~ -~18360~^~609~^0.057^9^0.051^~1~^~A~^^^1^0.002^0.710^2^-0.162^0.277^~1, 2, 3~^~07/01/2014~ -~18360~^~610~^0.053^9^0.041^~1~^~A~^^^1^0.010^0.580^2^-0.124^0.231^~2, 3~^~07/01/2014~ -~18360~^~611~^0.342^9^0.317^~1~^~A~^^^1^0.001^4.370^2^-1.021^1.706^~1, 2, 3~^~07/01/2014~ -~18360~^~612~^0.251^9^0.119^~1~^~A~^^^1^0.010^1.730^2^-0.261^0.764^~2, 3~^~07/01/2014~ -~18360~^~613~^5.530^9^0.179^~1~^~A~^^^1^1.540^8.060^4^5.031^6.028^~2, 3~^~07/01/2014~ -~18360~^~614~^0.757^9^0.020^~1~^~A~^^^1^0.410^0.900^4^0.702^0.811^~2, 3~^~07/01/2014~ -~18360~^~615~^0.067^9^0.002^~1~^~A~^^^1^0.040^0.080^4^0.059^0.074^~2, 3~^~07/01/2014~ -~18360~^~617~^6.854^9^0.242^~1~^~AS~^^^1^4.070^8.600^4^6.166^7.542^~2, 3~^~07/01/2014~ -~18360~^~618~^5.182^9^0.506^~1~^~AS~^^^1^2.733^9.820^2^3.049^7.314^~2, 3~^~07/01/2014~ -~18360~^~619~^0.284^9^0.032^~1~^~AS~^^^1^0.064^1.020^2^0.147^0.422^~2, 3~^~07/01/2014~ -~18360~^~620~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~624~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~626~^0.028^9^0.003^~1~^~AS~^^^1^0.010^0.060^2^0.014^0.043^~2, 3~^~07/01/2014~ -~18360~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~628~^0.043^9^0.002^~1~^~A~^^^1^0.030^0.070^4^0.036^0.050^~2, 3~^~07/01/2014~ -~18360~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~630~^0.002^9^0.000^~1~^~AS~^^^1^0.000^0.010^3^0.001^0.003^~2, 3~^~07/01/2014~ -~18360~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~645~^6.935^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~646~^5.495^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~652~^0.008^9^0.000^~1~^~A~^^^1^0.004^0.010^4^0.008^0.008^~2, 3~^~07/01/2014~ -~18360~^~653~^0.012^9^0.002^~1~^~A~^^^1^0.008^0.020^2^0.003^0.020^~2, 3~^~07/01/2014~ -~18360~^~654~^0.019^9^0.002^~1~^~A~^^^1^0.010^0.030^3^0.011^0.026^~2, 3~^~07/01/2014~ -~18360~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~663~^0.095^9^0.013^~1~^~A~^^^1^0.010^0.360^2^0.044^0.147^~2, 3~^~07/01/2014~ -~18360~^~664~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.005^2^0.001^0.001^~1, 2, 3~^~05/01/2012~ -~18360~^~665~^0.076^9^0.016^~1~^~A~^^^1^0.020^0.240^3^0.022^0.129^~2, 3~^~07/01/2014~ -~18360~^~670~^0.009^9^0.002^~1~^~A~^^^1^0.003^0.030^2^0.002^0.016^~2, 3~^~07/01/2014~ -~18360~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~672~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^3^0.005^0.006^~2, 3~^~05/01/2012~ -~18360~^~673~^0.028^9^0.003^~1~^~A~^^^1^0.010^0.060^2^0.014^0.043^~2, 3~^~07/01/2014~ -~18360~^~674~^6.759^9^0.245^~1~^~A~^^^1^3.990^8.580^4^6.059^7.458^~2, 3~^~07/01/2014~ -~18360~^~675~^5.097^9^0.494^~1~^~A~^^^1^2.710^9.550^2^3.008^7.186^~2, 3~^~07/01/2014~ -~18360~^~676~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.006^3^0.000^0.002^~1, 2, 3~^~07/01/2014~ -~18360~^~685~^0.014^9^0.001^~1~^~A~^^^1^0.002^0.040^2^0.009^0.019^~1, 2, 3~^~07/01/2014~ -~18360~^~687~^0.007^9^0.001^~1~^~A~^^^1^0.004^0.010^4^0.006^0.009^~2, 3~^~05/01/2012~ -~18360~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~18360~^~693~^0.096^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~695~^0.076^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18360~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~18360~^~851~^0.270^9^0.031^~1~^~A~^^^1^0.060^0.980^2^0.138^0.403^~2, 3~^~07/01/2014~ -~18360~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18360~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~18361~^~312~^0.098^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~315~^0.534^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~404~^0.660^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~405~^0.600^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~406~^7.230^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~410~^0.360^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18361~^~415~^0.580^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~18362~^~312~^0.069^11^0.002^~1~^~A~^^^1^0.055^0.085^8^0.064^0.074^~2, 3~^~04/01/2014~ -~18362~^~315~^0.324^11^0.023^~1~^~A~^^^1^0.213^0.445^8^0.272^0.377^~2, 3~^~04/01/2014~ -~18362~^~404~^0.649^5^0.043^~1~^~A~^^^1^0.510^0.760^3^0.511^0.786^~2, 3~^~04/01/2014~ -~18362~^~405~^0.558^5^0.027^~1~^~A~^^^1^0.470^0.620^3^0.473^0.643^~2, 3~^~04/01/2014~ -~18362~^~406~^6.791^5^0.482^~1~^~A~^^^1^5.120^7.750^3^5.258^8.325^~2, 3~^~04/01/2014~ -~18362~^~410~^0.273^3^0.023^~1~^~A~^^^1^0.230^0.310^2^0.173^0.374^~2, 3~^~04/01/2014~ -~18362~^~415~^0.520^5^0.050^~1~^~A~^^^1^0.400^0.640^3^0.361^0.679^~2, 3~^~04/01/2014~ -~18362~^~605~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~606~^3.615^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~610~^0.018^5^0.002^~1~^~A~^^^1^0.013^0.022^3^0.013^0.023^~2, 3~^~04/01/2014~ -~18362~^~611~^0.013^5^0.002^~1~^~A~^^^1^0.007^0.017^3^0.008^0.018^~2, 3~^~04/01/2014~ -~18362~^~612~^0.060^5^0.008^~1~^~A~^^^1^0.047^0.087^3^0.034^0.086^~2, 3~^~04/01/2014~ -~18362~^~613~^3.014^5^0.208^~1~^~A~^^^1^2.666^3.704^3^2.352^3.676^~2, 3~^~04/01/2014~ -~18362~^~614~^0.427^5^0.014^~1~^~A~^^^1^0.372^0.444^3^0.382^0.473^~2, 3~^~04/01/2014~ -~18362~^~615~^0.033^5^0.001^~1~^~A~^^^1^0.031^0.034^3^0.031^0.035^~2, 3~^~04/01/2014~ -~18362~^~617~^2.688^5^0.187^~1~^~AS~^^^1^2.363^3.307^3^2.092^3.284^~2, 3~^~04/01/2014~ -~18362~^~618~^2.902^5^0.523^~1~^~AS~^^^1^1.079^3.679^3^1.238^4.566^~2, 3~^~04/01/2014~ -~18362~^~619~^0.328^5^0.086^~1~^~AS~^^^1^0.029^0.467^3^0.053^0.602^~2, 3~^~04/01/2014~ -~18362~^~620~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~18362~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~624~^0.020^5^0.003^~1~^~A~^^^1^0.008^0.025^3^0.009^0.031^~2, 3~^~04/01/2014~ -~18362~^~625~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~626~^0.011^5^0.001^~1~^~AS~^^^1^0.009^0.013^3^0.008^0.013^~2, 3~^~04/01/2014~ -~18362~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~628~^0.020^5^0.002^~1~^~A~^^^1^0.016^0.024^3^0.015^0.026^~2, 3~^~04/01/2014~ -~18362~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~18362~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~645~^2.723^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~646~^3.235^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~652~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~04/01/2014~ -~18362~^~653~^0.013^5^0.002^~1~^~A~^^^1^0.008^0.020^3^0.007^0.020^~2, 3~^~04/01/2014~ -~18362~^~654~^0.011^5^0.001^~1~^~A~^^^1^0.008^0.013^3^0.008^0.014^~2, 3~^~04/01/2014~ -~18362~^~662~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~663~^0.011^5^0.002^~1~^~A~^^^1^0.005^0.014^3^0.006^0.016^~2, 3~^~04/01/2014~ -~18362~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~665~^0.017^5^0.001^~1~^~A~^^^1^0.012^0.020^3^0.013^0.022^~2, 3~^~04/01/2014~ -~18362~^~670~^0.005^5^0.001^~1~^~A~^^^1^0.000^0.007^3^0.001^0.009^~1, 2, 3~^~04/01/2014~ -~18362~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~672~^0.002^5^0.001^~1~^~A~^^^1^0.000^0.003^3^0.000^0.004^~1, 2, 3~^~04/01/2014~ -~18362~^~673~^0.011^5^0.001^~1~^~A~^^^1^0.009^0.013^3^0.008^0.013^~2, 3~^~04/01/2014~ -~18362~^~674~^2.677^5^0.189^~1~^~A~^^^1^2.352^3.302^3^2.076^3.278^~2, 3~^~04/01/2014~ -~18362~^~675~^2.880^5^0.520^~1~^~A~^^^1^1.067^3.654^3^1.224^4.535^~2, 3~^~04/01/2014~ -~18362~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~685~^0.014^5^0.003^~1~^~A~^^^1^0.003^0.022^3^0.003^0.024^~2, 3~^~04/01/2014~ -~18362~^~687~^0.004^5^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.005^~1, 2, 3~^~04/01/2014~ -~18362~^~689~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2006~ -~18362~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~18362~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2006~ -~18362~^~851~^0.314^5^0.083^~1~^~A~^^^1^0.026^0.451^3^0.049^0.578^~2, 3~^~04/01/2014~ -~18362~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~853~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18362~^~858~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~18363~^~312~^0.154^6^0.012^~1~^~A~^^^1^0.136^0.209^5^0.124^0.184^~2, 3~^~02/01/2004~ -~18363~^~315~^0.326^6^0.007^~1~^~A~^^^1^0.297^0.343^5^0.309^0.344^~2, 3~^~02/01/2004~ -~18363~^~404~^0.094^5^0.007^~1~^~A~^^^1^0.075^0.120^4^0.074^0.115^~1, 2, 3~^~02/01/2004~ -~18363~^~405~^0.065^5^0.008^~1~^~A~^^^1^0.044^0.090^4^0.043^0.088^~2, 3~^~02/01/2004~ -~18363~^~406~^1.498^33^0.096^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~410~^0.109^6^0.005^~1~^~A~^^^1^0.093^0.128^5^0.096^0.121^~2, 3~^~02/01/2004~ -~18363~^~415~^0.219^11^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~502~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~503~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~504~^0.711^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~505~^0.163^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~506~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~507~^0.105^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~508~^0.285^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~509~^0.236^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~510~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~511~^0.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~512~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~513~^0.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~514~^0.403^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~515~^1.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~516~^0.238^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~517~^0.506^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~518~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~606~^0.453^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~613~^0.414^6^0.012^~1~^~A~^^^1^0.372^0.446^5^0.384^0.443^~2, 3~^~02/01/2004~ -~18363~^~614~^0.039^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~617~^0.690^6^0.017^~1~^~A~^^^1^0.623^0.737^5^0.646^0.735^~2, 3~^~02/01/2004~ -~18363~^~618~^1.385^6^0.035^~1~^~A~^^^1^1.241^1.488^5^1.296^1.474^~2, 3~^~02/01/2004~ -~18363~^~619~^0.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~626~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18363~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18363~^~645~^0.692^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18363~^~646~^1.419^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~18364~^~312~^0.104^16^0.002^~1~^~A~^^^1^0.091^0.113^4^0.099^0.109^~2, 3~^~02/01/2015~ -~18364~^~315~^0.538^16^0.019^~1~^~A~^^^1^0.342^0.684^3^0.476^0.600^~2, 3~^~02/01/2015~ -~18364~^~404~^0.503^9^0.031^~1~^~A~^^^1^0.340^0.740^2^0.370^0.636^~2, 3~^~02/01/2015~ -~18364~^~405~^0.282^9^0.007^~1~^~A~^^^1^0.230^0.470^5^0.265^0.299^~2, 3~^~02/01/2015~ -~18364~^~406~^4.415^9^0.135^~1~^~A~^^^1^3.180^7.160^4^4.021^4.809^~2, 3~^~02/01/2015~ -~18364~^~410~^0.562^5^0.011^~1~^~A~^^^1^0.520^0.620^3^0.528^0.595^~2, 3~^~02/01/2015~ -~18364~^~415~^0.059^6^0.001^~1~^~A~^^^1^0.050^0.070^2^0.053^0.064^~2, 3~^~02/01/2015~ -~18364~^~501~^0.065^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~502~^0.143^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~503~^0.182^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~504~^0.362^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~505~^0.116^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~506~^0.093^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~507~^0.112^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~508~^0.265^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~509~^0.159^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~510~^0.212^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~511~^0.213^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~512~^0.117^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~513~^0.169^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~514~^0.222^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~515~^1.774^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~516~^0.189^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~517~^0.611^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~518~^0.263^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~ -~18364~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~606~^2.924^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~611~^0.005^3^^~1~^~A~^^^1^0.000^0.013^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~612~^0.034^3^^~1~^~A~^^^1^0.012^0.070^^^^~2, 3~^~02/01/2015~ -~18364~^~613~^1.669^3^^~1~^~A~^^^1^0.809^2.989^^^^~2, 3~^~02/01/2015~ -~18364~^~614~^1.157^3^^~1~^~A~^^^1^0.371^2.085^^^^~2, 3~^~02/01/2015~ -~18364~^~615~^0.024^3^^~1~^~A~^^^1^0.021^0.029^^^^~2, 3~^~02/01/2015~ -~18364~^~617~^1.717^3^^~1~^~AS~^^^1^1.010^2.746^^^^~2, 3~^~02/01/2015~ -~18364~^~618~^2.062^3^^~1~^~AS~^^^1^1.145^3.107^^^^~2, 3~^~02/01/2015~ -~18364~^~619~^0.226^3^^~1~^~AS~^^^1^0.042^0.408^^^^~2, 3~^~02/01/2015~ -~18364~^~620~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~624~^0.014^3^^~1~^~A~^^^1^0.007^0.023^^^^~2, 3~^~02/01/2015~ -~18364~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~626~^0.007^3^^~1~^~AS~^^^1^0.005^0.011^^^^~2, 3~^~02/01/2015~ -~18364~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~628~^0.024^3^^~1~^~A~^^^1^0.015^0.031^^^^~2, 3~^~02/01/2015~ -~18364~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2004~ -~18364~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2004~ -~18364~^~645~^1.751^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~646~^2.290^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~652~^0.005^3^^~1~^~A~^^^1^0.004^0.006^^^^~2, 3~^~02/01/2015~ -~18364~^~653~^0.008^3^^~1~^~A~^^^1^0.006^0.011^^^^~2, 3~^~02/01/2015~ -~18364~^~654~^0.008^3^^~1~^~A~^^^1^0.006^0.010^^^^~2, 3~^~02/01/2015~ -~18364~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~663~^0.038^3^^~1~^~A~^^^1^0.024^0.060^^^^~2, 3~^~02/01/2015~ -~18364~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~665~^0.014^3^^~1~^~A~^^^1^0.010^0.020^^^^~2, 3~^~02/01/2015~ -~18364~^~670~^0.002^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~672~^0.002^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~673~^0.007^3^^~1~^~A~^^^1^0.005^0.011^^^^~2, 3~^~02/01/2015~ -~18364~^~674~^1.678^3^^~1~^~A~^^^1^0.984^2.686^^^^~2, 3~^~02/01/2015~ -~18364~^~675~^2.045^3^^~1~^~A~^^^1^1.123^3.094^^^^~2, 3~^~02/01/2015~ -~18364~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~685~^0.012^3^^~1~^~A~^^^1^0.003^0.017^^^^~2, 3~^~02/01/2015~ -~18364~^~687~^0.003^3^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2015~ -~18364~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~18364~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~851~^0.214^3^^~1~^~A~^^^1^0.039^0.391^^^^~2, 3~^~02/01/2015~ -~18364~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18364~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~18365~^~312~^0.043^2^^~1~^~A~^^^1^0.025^0.062^1^^^^~10/01/2004~ -~18365~^~315~^0.225^2^^~1~^~A~^^^1^0.223^0.227^1^^^^~10/01/2004~ -~18365~^~404~^0.620^2^^~1~^~A~^^^1^0.607^0.634^1^^^^~10/01/2004~ -~18365~^~405~^0.620^2^^~1~^~A~^^^1^0.560^0.680^1^^^^~10/01/2004~ -~18365~^~406~^7.575^2^^~1~^~A~^^^1^6.820^8.330^1^^^^~10/01/2004~ -~18365~^~410~^0.315^2^^~1~^~A~^^^1^0.300^0.330^1^^^^~10/01/2004~ -~18365~^~415~^0.898^2^^~1~^~A~^^^1^0.797^1.000^1^^^^~10/01/2004~ -~18365~^~501~^0.076^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~502~^0.228^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~503~^0.268^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~504~^0.474^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~505~^0.280^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~506~^0.120^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~507~^0.157^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~508~^0.279^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~509~^0.134^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~510~^0.304^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~511~^0.259^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~512~^0.133^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~513~^0.241^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~514~^0.394^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~515~^1.631^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~516~^0.207^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~517~^0.550^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~518~^0.324^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~606~^1.531^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~612~^0.011^2^^~1~^~A~^^^1^0.011^0.014^1^^^^~10/01/2004~ -~18365~^~613~^0.880^2^^~1~^~A~^^^1^0.852^1.217^1^^^^~10/01/2004~ -~18365~^~614~^0.560^2^^~1~^~A~^^^1^0.465^0.851^1^^^^~10/01/2004~ -~18365~^~615~^0.040^2^^~1~^~A~^^^1^0.032^0.061^1^^^^~10/01/2004~ -~18365~^~617~^5.036^2^^~1~^~A~^^^1^5.893^5.945^1^^^^~10/01/2004~ -~18365~^~618~^1.798^2^^~1~^~A~^^^1^1.249^2.978^1^^^^~10/01/2004~ -~18365~^~619~^0.354^2^^~1~^~A~^^^1^0.044^0.787^1^^^^~10/01/2004~ -~18365~^~620~^0.005^2^^~1~^~A~^^^1^0.000^0.012^1^^^~1~^~10/01/2004~ -~18365~^~621~^0.003^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~624~^0.036^2^^~1~^~A~^^^1^0.035^0.049^1^^^^~10/01/2004~ -~18365~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~626~^0.025^2^^~1~^~A~^^^1^0.030^0.030^^^^^~10/01/2004~ -~18365~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~628~^0.068^2^^~1~^~A~^^^1^0.038^0.121^1^^^^~10/01/2004~ -~18365~^~629~^0.004^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~645~^5.129^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~646~^2.165^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18365~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~653~^0.005^2^^~1~^~A~^^^1^0.000^0.011^1^^^~1~^~10/01/2004~ -~18365~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18365~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18365~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18367~^~312~^0.062^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~315~^0.265^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~404~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~405~^0.347^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~406~^2.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~410~^0.485^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~415~^0.056^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~502~^0.289^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~503~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~504~^0.630^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~505~^0.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~506~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~507~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~508~^0.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~509~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~510~^0.409^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~511~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~512~^0.187^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~513~^0.301^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~514~^0.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~515~^1.989^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~516~^0.247^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~517~^0.726^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~518~^0.447^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~606~^2.866^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~607~^0.041^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~608~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~609~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~610~^0.032^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~611~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~612~^0.145^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~613~^1.865^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~614~^0.696^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~617~^3.395^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~618~^5.975^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~619~^0.782^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~620~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~621~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~626~^0.096^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~628~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~645~^3.521^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18367~^~646~^6.785^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~312~^0.147^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~315~^0.638^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~404~^0.519^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~405~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~406~^5.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~410~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~415~^0.030^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~501~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~502~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~503~^0.369^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~504~^0.684^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~505~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~506~^0.176^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~507~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~508~^0.486^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~509~^0.273^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~510~^0.417^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~511~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~512~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~513~^0.307^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~514~^0.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~515~^3.384^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~516~^0.336^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~517~^1.134^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~518~^0.483^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~606~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18368~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18368~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~612~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~613~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~614~^0.025^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~617~^0.183^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~618~^0.571^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~619~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~620~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~621~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~626~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18368~^~628~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18368~^~645~^0.195^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18368~^~646~^0.610^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~312~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18369~^~315~^0.011^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18369~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~405~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~406~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18369~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18369~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~613~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~617~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~618~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18369~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18369~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18370~^~312~^0.013^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18370~^~315~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18370~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~405~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~406~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18370~^~606~^0.000^0^^~4~^^^^^^^^^^^ -~18370~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~613~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~617~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~618~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18370~^~645~^0.000^0^^~4~^^^^^^^^^^^~01/01/1987~ -~18370~^~646~^0.000^0^^~4~^^^^^^^^^^^~01/01/1987~ -~18371~^~312~^0.019^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~315~^0.420^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~405~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~406~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18371~^~606~^0.073^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~610~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~611~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~612~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~613~^0.046^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~614~^0.009^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~617~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~618~^0.090^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~619~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~645~^0.006^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18371~^~646~^0.121^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18372~^~312~^0.000^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~315~^0.000^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~405~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~406~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18372~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18372~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~613~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~617~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~618~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18372~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18372~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18373~^~312~^0.195^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~315~^0.205^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~404~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~405~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~406~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~410~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18373~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18373~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~613~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~614~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~617~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~618~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18373~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18373~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/1985~ -~18374~^~312~^0.148^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~315~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~404~^1.880^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~405~^1.130^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~406~^12.300^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~410~^4.900^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~415~^0.430^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~501~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~502~^0.435^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~503~^0.476^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~504~^0.668^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~505~^0.690^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~506~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~507~^0.112^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~508~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~509~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~510~^0.512^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~511~^0.462^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~512~^0.217^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~513~^0.553^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~514~^0.853^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~515~^1.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~516~^0.407^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~517~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~518~^0.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~606~^0.243^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~611~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~613~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~614~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~617~^0.491^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~618~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~619~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~626~^0.556^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18374~^~645~^1.047^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18374~^~646~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18375~^~312~^0.436^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~315~^0.312^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~404~^10.990^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~405~^4.000^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~406~^40.200^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~410~^13.500^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~415~^1.500^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~501~^0.540^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~502~^1.990^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~503~^1.890^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~504~^2.920^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~505~^3.280^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~506~^0.590^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~507~^0.500^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~508~^1.750^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~509~^1.130^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~510~^2.310^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~511~^2.030^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~512~^0.910^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~513~^2.320^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~514~^4.150^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~515~^6.470^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~516~^1.930^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~517~^1.650^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~518~^1.980^0^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18375~^~606~^1.001^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~611~^0.049^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~613~^0.706^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~614~^0.246^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~617~^2.020^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~618~^0.017^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~619~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~626~^2.289^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~ -~18375~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~645~^4.309^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18375~^~646~^0.017^0^^~1~^^^^^^^^^^^~01/01/2009~ -~18376~^~312~^0.244^6^0.012^~1~^~A~^^^1^0.215^0.299^5^0.214^0.274^~2, 3~^~04/01/2004~ -~18376~^~315~^0.984^6^0.007^~1~^~A~^^^1^0.960^1.007^5^0.967^1.001^~2, 3~^~04/01/2004~ -~18376~^~404~^0.961^6^0.080^~1~^~A~^^^1^0.798^1.312^5^0.755^1.168^~2, 3~^~04/01/2004~ -~18376~^~405~^0.415^6^0.011^~1~^~A~^^^1^0.389^0.446^5^0.388^0.442^~2, 3~^~04/01/2004~ -~18376~^~406~^6.161^6^0.236^~1~^~A~^^^1^5.774^7.008^5^5.553^6.769^~2, 3~^~04/01/2004~ -~18376~^~410~^0.623^3^0.048^~1~^~A~^^^1^0.529^0.689^2^0.415^0.832^~2, 3~^~04/01/2004~ -~18376~^~415~^0.171^3^0.018^~1~^~A~^^^1^0.137^0.196^2^0.095^0.246^~2, 3~^~04/01/2004~ -~18376~^~501~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~502~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~503~^0.586^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~504~^1.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~505~^0.446^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~506~^0.233^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~507~^0.235^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~508~^0.703^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~509~^0.360^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~510~^0.723^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~511~^0.603^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~512~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~513~^0.497^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~514~^0.767^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~515~^4.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~516~^0.539^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~517~^1.497^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~518~^0.720^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18376~^~606~^1.391^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~613~^0.782^3^0.007^~1~^~A~^^^1^0.768^0.791^2^0.751^0.813^~2, 3~^~04/01/2004~ -~18376~^~614~^0.609^3^0.029^~1~^~A~^^^1^0.562^0.661^2^0.485^0.732^~2, 3~^~04/01/2004~ -~18376~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~617~^1.168^3^0.022^~1~^~A~^^^1^1.126^1.198^2^1.075^1.260^~2, 3~^~04/01/2004~ -~18376~^~618~^2.084^3^0.030^~1~^~A~^^^1^2.044^2.144^2^1.953^2.215^~2, 3~^~04/01/2004~ -~18376~^~619~^0.216^3^0.005^~1~^~A~^^^1^0.210^0.226^2^0.194^0.238^~2, 3~^~04/01/2004~ -~18376~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~645~^1.168^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~646~^2.300^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~18376~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18376~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~18377~^~312~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~315~^1.061^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~404~^0.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~405~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~406~^1.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~410~^0.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~415~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~501~^0.088^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~502~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~503~^0.280^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~504~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~505~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~506~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~507~^0.153^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~508~^0.351^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~509~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~510~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~511~^0.392^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~512~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~513~^0.308^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~514~^0.496^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~515~^1.643^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~516~^0.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~517~^0.497^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~518~^0.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~606~^3.581^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~611~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~612~^0.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~613~^2.291^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~614~^1.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~617~^7.638^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~618~^5.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~619~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~620~^0.012^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~626~^0.028^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~645~^7.669^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18377~^~646~^5.589^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~312~^0.386^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~315~^0.663^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~404~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~405~^0.177^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~406~^1.365^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~410~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~415~^0.084^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~501~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~502~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~503~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~504~^0.391^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~505~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~506~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~507~^0.111^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~508~^0.270^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~509~^0.188^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~510~^0.279^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~511~^0.377^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~512~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~513~^0.227^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~514~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~515~^1.283^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~516~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~517~^0.398^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~518~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~606~^14.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~607~^0.455^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~608~^0.269^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~609~^0.157^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~610~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~611~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~612~^1.444^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~613~^6.373^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~614~^4.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~617~^7.629^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~618~^3.682^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~619~^0.843^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~620~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~626~^0.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~628~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~645~^8.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18378~^~646~^4.541^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18383~^~312~^0.205^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~315~^0.803^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~404~^0.317^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~405~^0.389^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~406~^4.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~410~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~415~^0.070^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~501~^0.163^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~502~^0.402^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~503~^0.518^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~504~^0.943^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~505~^0.409^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~506~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~507~^0.272^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~508~^0.655^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~509~^0.397^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~510~^0.569^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~511~^0.602^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~512~^0.297^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~513~^0.455^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~514~^0.806^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~515~^4.054^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~516~^0.488^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~517~^1.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~518~^0.664^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~606~^0.364^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~613~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~614~^0.023^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~617~^0.200^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~618~^1.044^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~619~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~626~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18383~^~645~^0.201^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18383~^~646~^1.109^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~312~^0.182^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~315~^1.521^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~404~^0.568^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~405~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~406~^6.662^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~410~^0.260^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~415~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18384~^~501~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~502~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~503~^0.377^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~504~^0.679^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~505~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~506~^0.169^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~507~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~508~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~509~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~510~^0.437^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~511~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~512~^0.215^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~513~^0.357^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~514~^0.504^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~515~^2.938^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~516~^0.374^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~517~^0.989^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~518~^0.471^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~606~^0.771^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~612~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~613~^0.576^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~614~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~617~^1.762^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~618~^1.797^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~619~^0.115^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~626~^0.036^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~18384~^~645~^1.798^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18384~^~646~^1.913^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~312~^0.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~315~^0.470^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~404~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~405~^0.278^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~406~^1.934^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~410~^0.205^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~415~^0.028^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18386~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~502~^0.192^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~503~^0.218^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~504~^0.375^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~505~^0.276^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~506~^0.071^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~507~^0.080^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~508~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~509~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~510~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~511~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~512~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~513~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~514~^0.510^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~515~^1.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~516~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~517~^0.326^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~518~^0.267^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~606~^1.551^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~607~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~608~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~612~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~613~^1.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~614~^0.397^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~617~^2.314^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~618~^4.839^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~619~^0.627^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~620~^0.009^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~621~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~626~^0.037^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18386~^~628~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18386~^~645~^2.371^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18386~^~646~^5.477^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~312~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~315~^0.433^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~404~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~405~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~406~^2.317^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~410~^0.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~415~^0.056^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18388~^~501~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~502~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~503~^0.219^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~504~^0.394^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~505~^0.250^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~507~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~508~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~509~^0.179^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~510~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~511~^0.325^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~512~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~513~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~514~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~515~^1.277^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~516~^0.225^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~517~^0.412^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~518~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~606~^1.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~607~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~612~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~613~^1.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~614~^0.372^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~617~^2.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~618~^4.350^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~619~^0.551^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~620~^0.013^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~626~^0.044^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18388~^~628~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/1995~ -~18388~^~645~^2.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18388~^~646~^4.918^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~312~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~315~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~404~^0.204^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~405~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~406~^1.577^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~410~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~415~^0.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~501~^0.082^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~502~^0.254^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~503~^0.316^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~504~^0.545^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~505~^0.349^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~506~^0.154^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~507~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~508~^0.339^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~509~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~510~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~511~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~512~^0.162^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~513~^0.258^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~514~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~515~^1.627^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~516~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~517~^0.611^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~518~^0.379^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~606~^1.832^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~607~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~608~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~609~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~610~^0.015^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~611~^0.017^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~612~^0.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~613~^1.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~614~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~617~^2.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~618~^3.953^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~619~^0.509^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~620~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~621~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~626~^0.067^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~628~^0.018^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~645~^2.361^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18390~^~646~^4.486^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~312~^0.114^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~315~^0.401^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~404~^0.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~405~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~406~^3.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~410~^0.450^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~415~^0.060^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~501~^0.106^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~502~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~503~^0.353^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~504~^0.639^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~505~^0.330^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~506~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~507~^0.164^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~508~^0.426^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~509~^0.293^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~510~^0.402^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~511~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~512~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~513~^0.311^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~514~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~515~^2.425^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~516~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~517~^0.857^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~518~^0.452^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~606~^1.795^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~607~^0.024^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~608~^0.014^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~609~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~610~^0.019^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~611~^0.021^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~612~^0.089^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~613~^1.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~614~^0.535^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~617~^2.823^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~618~^1.896^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~619~^0.097^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~620~^0.011^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~621~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~626~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~628~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~645~^2.881^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18396~^~646~^2.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~312~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~315~^0.453^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~404~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~405~^0.172^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~406~^2.091^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~410~^0.216^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~415~^0.035^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~501~^0.054^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~502~^0.117^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~503~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~504~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~505~^0.107^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~506~^0.072^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~507~^0.086^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~508~^0.203^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~509~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~511~^0.171^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~512~^0.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~513~^0.135^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~514~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~515~^1.335^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~516~^0.148^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~517~^0.460^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~518~^0.202^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~606~^5.092^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~610~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~612~^0.073^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~613~^3.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~614~^1.903^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~617~^11.094^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~618~^6.475^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~619~^0.294^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~626~^0.049^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~645~^11.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18399~^~646~^6.769^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~312~^0.080^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~315~^0.820^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~404~^0.558^9^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~405~^0.437^9^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~406~^4.891^9^0.173^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~410~^0.577^8^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~415~^0.111^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~501~^0.123^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~502~^0.297^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~503~^0.370^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~504~^0.702^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~505~^0.282^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~506~^0.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~507~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~508~^0.501^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~509~^0.315^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~510~^0.425^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~511~^0.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~512~^0.223^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~513~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~514~^0.493^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~515~^3.087^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~516~^0.358^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~517~^1.055^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~518~^0.526^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~606~^0.936^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~609~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~610~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~611~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~612~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~613~^0.742^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~614~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~617~^0.914^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~618~^0.916^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~619~^0.045^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~620~^0.031^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~621~^0.008^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~626~^0.066^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~628~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~629~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~630~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~645~^0.987^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18400~^~646~^1.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~312~^0.068^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~315~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~404~^0.189^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~405~^0.229^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~406~^2.113^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~410~^0.305^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~415~^0.052^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~501~^0.050^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~502~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~503~^0.161^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~504~^0.274^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~505~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~506~^0.078^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~507~^0.077^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~508~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~509~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~510~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~511~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~512~^0.079^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~513~^0.137^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~514~^0.222^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~515~^0.963^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~516~^0.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~517~^0.328^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~518~^0.213^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~606~^7.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~612~^0.102^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~613~^4.453^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~614~^2.878^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~617~^15.646^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~618~^10.175^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~619~^0.508^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~626~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~645~^15.647^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18401~^~646~^10.682^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~312~^0.081^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~315~^0.383^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~404~^0.348^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~405~^0.246^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~406~^2.943^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~410~^0.158^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~415~^0.022^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~502~^0.156^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~503~^0.198^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~504~^0.393^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~505~^0.126^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~506~^0.101^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~507~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~508~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~509~^0.173^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~510~^0.230^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~511~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~512~^0.127^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~513~^0.184^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~514~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~515~^1.927^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~516~^0.206^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~517~^0.663^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~518~^0.286^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~606~^7.674^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~607~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~608~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~609~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~610~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~611~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~612~^0.121^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~613~^4.345^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~614~^3.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~617~^13.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~618~^7.623^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~619~^0.496^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~645~^13.500^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18402~^~646~^8.119^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18403~^~312~^0.031^6^0.002^~1~^~A~^^^1^0.024^0.039^5^0.025^0.037^~2, 3~^~10/01/2004~ -~18403~^~315~^0.299^6^0.012^~1~^~A~^^^1^0.262^0.352^5^0.267^0.331^~2, 3~^~10/01/2004~ -~18403~^~404~^0.525^5^0.035^~1~^~A~^^^1^0.402^0.615^4^0.427^0.624^~2, 3~^~03/01/2007~ -~18403~^~405~^0.704^5^0.023^~1~^~A~^^^1^0.640^0.760^4^0.640^0.768^~2, 3~^~10/01/2004~ -~18403~^~406~^8.888^5^0.410^~1~^~A~^^^1^7.660^9.600^4^7.750^10.026^~2, 3~^~10/01/2004~ -~18403~^~410~^0.323^3^0.029^~1~^~A~^^^1^0.270^0.370^2^0.198^0.448^~2, 3~^~10/01/2004~ -~18403~^~415~^1.044^3^0.134^~1~^~A~^^^1^0.882^1.310^2^0.467^1.621^~2, 3~^~10/01/2004~ -~18403~^~501~^0.084^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~502~^0.253^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~503~^0.298^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~504~^0.526^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~505~^0.311^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~506~^0.134^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~507~^0.174^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~508~^0.310^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~509~^0.149^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~510~^0.337^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~511~^0.287^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~512~^0.148^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~513~^0.268^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~514~^0.437^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~515~^1.813^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~516~^0.230^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~517~^0.611^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~518~^0.360^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~606~^1.638^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18403~^~607~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18403~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~612~^0.012^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~03/01/2005~ -~18403~^~613~^0.920^3^0.150^~1~^~A~^^^1^0.933^1.437^2^0.507^1.794^~2, 3~^~03/01/2005~ -~18403~^~614~^0.624^3^0.149^~1~^~A~^^^1^0.499^1.006^2^0.139^1.421^~2, 3~^~03/01/2005~ -~18403~^~615~^0.038^3^0.011^~1~^~A~^^^1^0.033^0.068^2^0.002^0.093^~2, 3~^~03/01/2005~ -~18403~^~617~^4.829^3^0.749^~1~^~A~^^^1^4.564^7.011^2^2.814^9.258^~2, 3~^~03/01/2005~ -~18403~^~618~^1.874^3^0.514^~1~^~A~^^^1^1.484^3.261^2^0.132^4.554^~2, 3~^~03/01/2005~ -~18403~^~619~^0.312^3^0.247^~1~^~A~^^^1^0.056^0.873^2^-0.674^1.454^~2, 3~^~03/01/2005~ -~18403~^~620~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.015^0.025^~1, 2, 3~^~10/01/2004~ -~18403~^~621~^0.003^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~624~^0.033^3^0.004^~1~^~A~^^^1^0.035^0.050^2^0.023^0.061^~2, 3~^~03/01/2005~ -~18403~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~626~^0.024^3^0.004^~1~^~A~^^^1^0.023^0.035^2^0.014^0.046^~2, 3~^~03/01/2005~ -~18403~^~627~^0.001^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~ -~18403~^~628~^0.061^3^0.029^~1~^~A~^^^1^0.046^0.134^2^-0.049^0.201^~2, 3~^~03/01/2005~ -~18403~^~629~^0.005^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~645~^4.914^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18403~^~646~^2.197^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~18403~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~653~^0.009^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.006^0.017^~2, 3~^~03/01/2005~ -~18403~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~ -~18403~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18403~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~18406~^~312~^0.163^17^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~315~^0.540^17^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~404~^0.538^18^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~405~^0.315^18^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~406~^4.562^18^0.293^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~410~^0.363^13^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~415~^0.051^12^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18406~^~501~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~502~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~503~^0.404^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~504~^0.735^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~505~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~506~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~507~^0.225^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~508~^0.519^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~509~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~510~^0.456^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~511~^0.384^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~512~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~513~^0.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~514~^0.478^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~515~^3.504^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~516~^0.373^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~517~^1.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~518~^0.508^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~606~^0.220^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~613~^0.207^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~614~^0.012^0^^~4~^^^^^^^^^^^~12/01/1997~ -~18406~^~617~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~618~^0.660^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~619~^0.036^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~645~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18406~^~646~^0.696^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~312~^0.163^17^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~315~^0.540^17^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~404~^0.163^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~405~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~406~^1.758^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~410~^0.363^13^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~415~^0.051^12^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18407~^~501~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~502~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~503~^0.404^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~504~^0.735^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~505~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~506~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~507~^0.225^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~508~^0.519^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~509~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~510~^0.456^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~511~^0.384^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~512~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~513~^0.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~514~^0.478^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~515~^3.504^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~516~^0.373^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~517~^1.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~518~^0.508^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~606~^0.220^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~613~^0.207^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~614~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~617~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~618~^0.660^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~619~^0.036^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~645~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18407~^~646~^0.696^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~312~^0.163^17^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~315~^0.540^17^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~404~^0.163^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~405~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~406~^1.758^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~410~^0.363^13^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~415~^0.051^12^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18408~^~501~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~502~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~503~^0.404^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~504~^0.735^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~505~^0.251^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~506~^0.188^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~507~^0.225^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~508~^0.519^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~509~^0.301^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~510~^0.456^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~511~^0.384^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~512~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~513~^0.347^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~514~^0.478^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~515~^3.504^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~516~^0.373^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~517~^1.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~518~^0.508^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~606~^0.220^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~613~^0.207^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~614~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~617~^0.117^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~618~^0.660^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~619~^0.036^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~645~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18408~^~646~^0.696^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~312~^0.085^22^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~315~^0.315^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~404~^0.046^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~405~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~406~^0.937^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~410~^0.480^20^0.079^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~415~^0.128^20^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18412~^~501~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~502~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~503~^0.254^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~504~^0.632^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~505~^0.198^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~506~^0.133^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~507~^0.132^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~508~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~509~^0.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~510~^0.320^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~511~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~512~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~513~^0.336^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~514~^0.382^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~515~^1.847^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~516~^0.254^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~517~^0.715^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~518~^0.336^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~606~^3.091^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~607~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~608~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18412~^~610~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~611~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~612~^0.070^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18412~^~613~^1.607^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~614~^1.393^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~617~^6.714^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~618~^1.599^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~619~^0.083^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~626~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~645~^6.719^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18412~^~646~^1.682^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18413~^~312~^0.168^13^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~315~^0.481^13^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~404~^0.267^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~405~^0.097^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~406~^2.142^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18413~^~410~^0.397^12^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~415~^0.034^11^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18413~^~501~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~502~^0.257^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~503~^0.349^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~504~^0.634^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~505~^0.219^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~506~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~507~^0.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~508~^0.446^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~509~^0.257^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~510~^0.394^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~511~^0.329^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~512~^0.195^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~513~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~514~^0.408^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~515~^3.033^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~516~^0.319^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~517~^1.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~518~^0.438^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~606~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~613~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~614~^0.009^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~617~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~618~^0.511^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~619~^0.024^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~626~^0.013^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~645~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18413~^~646~^0.535^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~312~^0.198^13^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~315~^0.501^13^0.024^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~404~^0.177^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~405~^0.173^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~406~^1.495^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18414~^~410~^0.387^15^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~415~^0.069^13^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18414~^~501~^0.083^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~502~^0.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~503~^0.287^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~504~^0.516^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~505~^0.200^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~506~^0.128^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~507~^0.152^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~508~^0.361^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~509~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~510~^0.329^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~511~^0.362^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~512~^0.167^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~513~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~514~^0.351^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~515~^2.355^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~516~^0.269^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~517~^0.828^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~518~^0.357^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~606~^1.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~612~^0.020^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~613~^0.584^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~614~^0.476^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~617~^2.288^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~618~^0.641^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~619~^0.038^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~626~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~645~^2.294^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18414~^~646~^0.679^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~312~^0.126^102^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~315~^0.383^103^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~404~^0.472^190^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~405~^0.341^177^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~406~^3.969^198^0.034^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~410~^0.390^25^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~415~^0.064^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18416~^~501~^0.096^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~502~^0.243^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~503~^0.322^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~504~^0.580^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~505~^0.223^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~506~^0.144^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~507~^0.174^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~508~^0.404^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~509~^0.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~510~^0.361^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~511~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~512~^0.178^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~513~^0.281^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~514~^0.409^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~515~^2.657^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~516~^0.294^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~517~^0.882^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~518~^0.400^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~606~^0.811^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~612~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~613~^0.469^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~614~^0.326^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~617~^1.599^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~618~^0.709^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~619~^0.035^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~626~^0.013^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18416~^~645~^1.612^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18416~^~646~^0.744^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~312~^0.125^32^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~315~^0.451^32^0.022^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~404~^0.135^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~405~^0.095^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~406~^0.880^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~410~^0.655^8^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~415~^0.027^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18417~^~501~^0.082^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~502~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~503~^0.287^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~504~^0.500^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~505~^0.260^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~506~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~507~^0.127^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~508~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~509~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~510~^0.318^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~511~^0.310^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~512~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~513~^0.248^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~514~^0.415^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~515~^1.897^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~516~^0.237^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~517~^0.634^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~518~^0.346^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~606~^5.797^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~609~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~612~^0.114^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~613~^3.086^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~614~^2.575^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~617~^12.905^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~618~^2.944^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~619~^0.151^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~620~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~621~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~626~^0.059^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~628~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18417~^~645~^12.976^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18417~^~646~^3.120^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~312~^0.054^4^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~315~^0.088^4^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~404~^0.024^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~405~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~406~^0.342^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~410~^0.285^3^0.053^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~415~^0.023^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18418~^~501~^0.069^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~502~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~503~^0.244^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~504~^0.403^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~505~^0.283^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~506~^0.125^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~507~^0.111^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~508~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~509~^0.184^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~510~^0.276^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~511~^0.247^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~512~^0.115^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~513~^0.216^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~514~^0.367^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~515~^1.194^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~516~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~517~^0.402^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~518~^0.323^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~606~^4.647^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~609~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~612~^0.087^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~613~^2.478^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~614~^2.069^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~617~^9.880^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~618~^2.114^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~619~^0.108^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~620~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~621~^0.006^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~626~^0.049^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~628~^0.004^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~629~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18418~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~645~^9.935^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18418~^~646~^2.251^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~312~^0.056^7^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18419~^~315~^0.278^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~404~^0.080^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~405~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~406~^0.970^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~410~^0.233^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~415~^0.018^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~501~^0.055^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~502~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~503~^0.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~504~^0.284^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~505~^0.165^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~506~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~507~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~508~^0.183^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~509~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~510~^0.185^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~511~^0.146^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~512~^0.083^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~513~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~514~^0.184^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~515~^1.194^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~516~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~517~^0.421^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~518~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~606~^2.340^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/1997~ -~18419~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18419~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~612~^0.038^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~613~^1.338^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~614~^0.970^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~617~^4.091^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~618~^2.389^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~619~^0.156^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~626~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~645~^4.092^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18419~^~646~^2.544^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~312~^0.072^37^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~315~^0.191^3^0.048^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~404~^0.082^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~405~^0.049^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~406~^0.309^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~410~^0.364^4^0.071^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~415~^0.077^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18420~^~501~^0.061^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~502~^0.137^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~503~^0.187^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~504~^0.325^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~505~^0.197^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~506~^0.081^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~507~^0.079^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~508~^0.204^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~509~^0.144^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~510~^0.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~511~^0.162^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~512~^0.094^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~513~^0.134^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~514~^0.216^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~515~^1.288^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~516~^0.132^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~517~^0.463^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~518~^0.228^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~606~^1.738^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~612~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~613~^1.154^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~614~^0.565^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18420~^~617~^4.802^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~618~^4.066^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~619~^0.301^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~626~^0.047^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~645~^4.860^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18420~^~646~^4.378^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~312~^0.200^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~315~^0.170^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~404~^0.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~405~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~406~^0.320^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~410~^0.488^8^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~415~^0.036^8^0.000^~1~^^^^^^^^^^^~08/01/1992~ -~18421~^~501~^0.084^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~502~^0.215^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~503~^0.277^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~504~^0.471^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~505~^0.308^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~506~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~507~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~508~^0.299^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~509~^0.211^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~510~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~511~^0.261^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~512~^0.136^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~513~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~514~^0.371^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~515~^1.618^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~516~^0.194^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~517~^0.566^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~518~^0.354^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~606~^11.051^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~607~^0.546^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~608~^0.323^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~609~^0.188^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~610~^0.422^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~611~^0.473^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~612~^1.700^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~613~^4.849^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~614~^2.179^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~617~^4.845^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~618~^0.681^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~619~^0.256^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~620~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~621~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~626~^0.420^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~627~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~628~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~629~^0.011^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18421~^~645~^5.522^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18421~^~646~^0.982^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~312~^0.212^105^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~315~^0.449^102^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~404~^0.059^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~405~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~406~^0.473^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~410~^0.229^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~415~^0.056^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18422~^~501~^0.073^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~502~^0.168^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~503~^0.222^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~504~^0.396^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~505~^0.219^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~506~^0.095^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~507~^0.095^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~508~^0.261^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~509~^0.173^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~510~^0.261^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~511~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~512~^0.102^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~513~^0.168^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~514~^0.277^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~515~^1.602^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~516~^0.168^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~517~^0.557^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~518~^0.272^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18422~^~606~^7.476^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~611~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~612~^0.112^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~613~^0.594^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~614~^3.697^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~617~^11.656^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~618~^2.246^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~619~^0.122^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~626~^0.017^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~645~^11.671^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18422~^~646~^2.367^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18423~^~312~^0.095^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~315~^0.240^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~404~^0.284^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~405~^0.428^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~406~^2.104^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~410~^1.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~415~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~501~^0.133^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~502~^0.467^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~503~^0.516^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~504~^0.861^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~505~^0.679^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~506~^0.268^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~507~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~508~^0.511^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~509~^0.408^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~510~^0.579^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~511~^0.610^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~512~^0.248^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~513~^0.502^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~514~^0.888^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~515~^1.920^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~516~^0.346^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~517~^0.625^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~518~^0.761^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~606~^3.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18423~^~609~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~610~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~611~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~612~^0.034^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~613~^2.209^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~614~^0.771^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~617~^3.422^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~618~^1.206^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~619~^0.038^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~620~^0.139^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~621~^0.036^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~626~^0.293^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~628~^0.027^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2014~ -~18423~^~629~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18423~^~630~^0.003^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18423~^~645~^3.745^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18423~^~646~^1.423^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18424~^~312~^0.289^7^0.054^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~315~^1.130^4^0.154^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~404~^0.413^16^0.045^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~405~^0.273^16^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~406~^4.113^16^0.414^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~410~^0.693^12^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~415~^0.098^10^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18424~^~501~^0.140^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~502~^0.342^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~503~^0.462^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~504~^0.844^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~505~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~506~^0.214^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~507~^0.265^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~508~^0.596^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~509~^0.339^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~510~^0.520^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~511~^0.435^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~512~^0.261^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~513~^0.395^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~514~^0.532^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~515~^4.086^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~516~^0.424^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~517~^1.366^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~518~^0.586^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~606~^0.445^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~613~^0.355^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~614~^0.088^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~617~^0.762^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~618~^1.210^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~619~^0.071^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~626~^0.020^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18424~^~645~^0.782^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18424~^~646~^1.282^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18425~^~312~^0.156^8^0.005^~1~^~A~^^^1^0.136^0.183^7^0.144^0.168^~2, 3~^~04/01/2008~ -~18425~^~315~^0.838^8^0.023^~1~^~A~^^^1^0.742^0.894^7^0.783^0.892^~2, 3~^~04/01/2008~ -~18425~^~404~^0.611^8^0.032^~1~^~A~^^^1^0.450^0.730^7^0.535^0.687^~2, 3~^~04/01/2008~ -~18425~^~405~^0.331^8^0.030^~1~^~A~^^^1^0.200^0.460^7^0.261^0.402^~2, 3~^~04/01/2008~ -~18425~^~406~^5.235^8^0.390^~1~^~A~^^^1^3.930^6.690^7^4.312^6.158^~2, 3~^~04/01/2008~ -~18425~^~410~^0.475^2^^~1~^~A~^^^1^0.420^0.530^1^^^^~04/01/2008~ -~18425~^~415~^0.060^2^^~1~^~A~^^^1^0.060^0.060^^^^^~04/01/2008~ -~18425~^~501~^0.122^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~502~^0.274^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~503~^0.344^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~504~^0.681^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~505~^0.230^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~506~^0.177^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~507~^0.208^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~508~^0.493^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~509~^0.300^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~510~^0.401^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~511~^0.407^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~512~^0.221^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~513~^0.324^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~514~^0.428^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~515~^3.283^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~516~^0.358^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~517~^1.137^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~518~^0.493^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~ -~18425~^~605~^0.443^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~606~^2.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~610~^0.005^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.011^0.021^~1, 2, 3~^~04/01/2008~ -~18425~^~611~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~04/01/2008~ -~18425~^~612~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.018^3^0.014^0.019^~2, 3~^~04/01/2008~ -~18425~^~613~^1.165^4^0.005^~1~^~A~^^^1^1.154^1.174^3^1.149^1.180^~2, 3~^~04/01/2008~ -~18425~^~614~^0.743^4^0.008^~1~^~A~^^^1^0.721^0.758^3^0.718^0.769^~2, 3~^~04/01/2008~ -~18425~^~615~^0.025^4^0.001^~1~^~A~^^^1^0.023^0.027^3^0.021^0.029^~2, 3~^~04/01/2008~ -~18425~^~617~^2.213^4^0.013^~1~^~AS~^^^1^2.178^2.234^3^2.173^2.254^~2, 3~^~04/01/2008~ -~18425~^~618~^3.624^4^0.023^~1~^~AS~^^^1^3.557^3.654^3^3.551^3.696^~2, 3~^~04/01/2008~ -~18425~^~619~^0.437^4^0.007^~1~^~AS~^^^1^0.417^0.447^3^0.415^0.459^~2, 3~^~04/01/2008~ -~18425~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~624~^0.023^4^0.001^~1~^~A~^^^1^0.021^0.026^3^0.020^0.027^~2, 3~^~04/01/2008~ -~18425~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~626~^0.008^4^0.001^~1~^~AS~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~04/01/2008~ -~18425~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~04/01/2008~ -~18425~^~628~^0.020^4^0.006^~1~^~A~^^^1^0.008^0.033^3^0.001^0.038^~2, 3~^~04/01/2008~ -~18425~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2008~ -~18425~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~04/01/2008~ -~18425~^~631~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~2, 3~^~04/01/2008~ -~18425~^~645~^2.247^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~646~^4.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2008~ -~18425~^~653~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.007^0.010^~2, 3~^~04/01/2008~ -~18425~^~654~^0.011^4^0.002^~1~^~A~^^^1^0.006^0.016^3^0.003^0.019^~2, 3~^~04/01/2008~ -~18425~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~663~^0.415^4^0.026^~1~^~A~^^^1^0.367^0.463^3^0.333^0.498^~2, 3~^~04/01/2008~ -~18425~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~665~^0.027^4^0.004^~1~^~A~^^^1^0.021^0.038^3^0.016^0.039^~2, 3~^~04/01/2008~ -~18425~^~670~^0.005^4^0.001^~1~^~A~^^^1^0.002^0.006^3^0.001^0.008^~2, 3~^~04/01/2008~ -~18425~^~671~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~04/01/2008~ -~18425~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~2, 3~^~04/01/2008~ -~18425~^~673~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~04/01/2008~ -~18425~^~674~^1.798^4^0.023^~1~^~A~^^^1^1.749^1.856^3^1.724^1.871^~2, 3~^~04/01/2008~ -~18425~^~675~^3.592^4^0.020^~1~^~A~^^^1^3.534^3.620^3^3.529^3.654^~2, 3~^~04/01/2008~ -~18425~^~676~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2008~ -~18425~^~685~^0.014^4^0.002^~1~^~A~^^^1^0.011^0.019^3^0.008^0.020^~2, 3~^~04/01/2008~ -~18425~^~687~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~2, 3~^~04/01/2008~ -~18425~^~689~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~04/01/2008~ -~18425~^~693~^0.415^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18425~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~851~^0.423^4^0.008^~1~^~A~^^^1^0.398^0.435^3^0.396^0.450^~2, 3~^~04/01/2008~ -~18425~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18425~^~853~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~04/01/2008~ -~18425~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18426~^~312~^0.199^163^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~315~^0.695^142^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~404~^0.565^128^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~405~^0.462^129^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~406~^5.249^131^0.072^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~410~^0.456^7^0.101^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~415~^0.038^5^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18426~^~501~^0.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~502~^0.256^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~503~^0.334^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~504~^0.632^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~505~^0.258^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~506~^0.159^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~507~^0.198^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~508~^0.452^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~509~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~510~^0.387^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~511~^0.366^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~512~^0.198^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~513~^0.292^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~514~^0.394^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~515~^3.066^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~516~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~517~^1.046^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~518~^0.472^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18426~^~606~^2.932^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~612~^0.055^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~613~^1.545^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~614~^1.329^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~617~^6.417^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~618~^1.593^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~619~^0.086^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~626~^0.005^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~645~^6.422^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18426~^~646~^1.679^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~312~^0.213^138^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~315~^0.556^123^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~404~^0.408^129^0.009^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~405~^0.342^131^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~406~^4.048^133^0.048^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~410~^0.271^5^0.028^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~415~^0.053^3^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18427~^~501~^0.091^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~502~^0.202^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~503~^0.255^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~504~^0.507^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~505~^0.164^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~506~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~507~^0.157^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~508~^0.371^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~509~^0.223^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~510~^0.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~511~^0.298^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~512~^0.164^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~513~^0.238^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~514~^0.313^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~515~^2.475^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~516~^0.265^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~517~^0.854^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~518~^0.367^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18427~^~606~^3.776^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~612~^0.025^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~613~^2.516^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~614~^1.235^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~617~^10.517^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~618~^8.865^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~619~^0.655^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~626~^0.098^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18427~^~645~^10.640^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18427~^~646~^9.545^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~312~^0.318^52^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~315~^1.781^46^0.070^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~404~^0.505^54^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~405~^0.327^55^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~406~^4.961^55^0.140^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~410~^0.522^3^0.151^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~415~^0.136^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18428~^~501~^0.124^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~502~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~503~^0.314^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~504~^0.582^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~505~^0.236^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~506~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~507~^0.193^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~508~^0.412^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~509~^0.250^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~510~^0.375^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~511~^0.375^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~512~^0.193^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~513~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~514~^0.406^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~515~^2.765^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~516~^0.328^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~517~^0.925^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~518~^0.418^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~606~^5.178^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~609~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~612~^0.099^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~613~^2.693^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~614~^2.371^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~617~^11.442^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~618~^2.653^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~619~^0.140^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~620~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18428~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~626~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18428~^~645~^11.448^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18428~^~646~^2.796^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~312~^0.444^25^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~315~^2.247^21^0.102^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~404~^0.201^21^0.007^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~405~^0.100^22^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~406~^4.519^15^0.103^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~410~^0.813^10^0.026^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~415~^0.183^9^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18429~^~501~^0.137^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~502~^0.256^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~503~^0.329^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~504~^0.600^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~505~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~506~^0.137^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~507~^0.206^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~508~^0.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~509~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~510~^0.401^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~511~^0.416^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~512~^0.206^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~513~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~514~^0.456^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~515~^2.804^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~516~^0.358^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~517~^0.922^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~518~^0.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~606~^3.393^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~609~^0.016^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18429~^~612~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~613~^1.744^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~614~^1.617^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~617~^5.868^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~618~^6.218^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1998~ -~18429~^~619~^0.376^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~620~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1992~ -~18429~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~626~^0.012^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/1994~ -~18429~^~645~^5.880^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18429~^~646~^6.596^0^^~4~^~BFZN~^^^^^^^^^^~08/01/1998~ -~18430~^~312~^0.100^30^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~315~^0.362^30^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18430~^~404~^0.180^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~405~^0.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~406~^1.100^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~410~^0.396^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~415~^0.038^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~501~^0.084^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~502~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~503~^0.310^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~504~^0.532^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~505~^0.296^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~506~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~507~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~508~^0.348^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~509~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~510~^0.344^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~511~^0.312^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~512~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~513~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~514~^0.463^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~515~^1.882^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~516~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~517~^0.637^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~518~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~606~^5.681^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~612~^0.109^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~613~^2.961^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~614~^2.602^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~617~^12.491^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~618~^2.772^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~619~^0.148^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~620~^0.007^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~621~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~626~^0.022^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~627~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~628~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~629~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18430~^~645~^12.515^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18430~^~646~^2.933^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~312~^0.065^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~315~^0.253^6^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~404~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~405~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~406~^0.769^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~410~^0.634^8^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18431~^~415~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~502~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~503~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~504~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~505~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~506~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~507~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~508~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~509~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~510~^0.252^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~511~^0.209^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~512~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~513~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~514~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~515~^1.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~516~^0.178^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~517~^0.543^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~518~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~606~^2.826^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~612~^0.053^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~613~^1.527^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~614~^1.233^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~617~^5.903^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~618~^1.416^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~619~^0.075^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~620~^0.014^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~621~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~626~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~628~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18431~^~645~^5.937^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18431~^~646~^1.508^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18432~^~312~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~315~^0.421^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~404~^0.415^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~405~^0.337^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~406~^3.926^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~410~^0.278^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~415~^0.063^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~501~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~502~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~503~^0.354^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~504~^0.637^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~505~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~506~^0.158^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~507~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~508~^0.444^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~509~^0.261^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~510~^0.397^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~511~^0.346^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~512~^0.196^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~513~^0.308^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~514~^0.449^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~515~^2.920^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~516~^0.323^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~517~^0.970^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~518~^0.440^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~606~^0.892^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~612~^0.016^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~613~^0.516^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~614~^0.359^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~617~^1.757^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~618~^0.779^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~619~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~626~^0.014^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~645~^1.771^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18432~^~646~^0.818^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~312~^0.065^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~315~^0.253^6^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~404~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~405~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~406~^0.769^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~410~^0.634^8^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18433~^~415~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~502~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~503~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~504~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~505~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~506~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~507~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~508~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~509~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~510~^0.252^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~511~^0.209^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~512~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~513~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~514~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~515~^1.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~516~^0.178^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~517~^0.543^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~518~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~606~^2.826^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~612~^0.053^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~613~^1.527^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~614~^1.233^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~617~^5.903^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~618~^1.416^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~619~^0.075^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~620~^0.014^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~621~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~626~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~628~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18433~^~645~^5.937^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18433~^~646~^1.508^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~312~^0.210^42^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~315~^0.629^36^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~404~^0.570^42^0.018^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~405~^0.428^42^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~406~^4.671^41^0.104^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~410~^0.526^4^0.107^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~415~^0.553^3^0.424^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~501~^0.129^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~502~^0.295^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~503~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~504~^0.744^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~505~^0.418^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~506~^0.194^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~507~^0.168^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~508~^0.490^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~509~^0.340^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~510~^0.478^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~511~^0.386^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~512~^0.245^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~514~^0.480^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~515~^3.034^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~516~^0.302^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~517~^1.110^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~518~^0.521^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18434~^~606~^9.638^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~607~^0.268^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~608~^0.135^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~609~^0.071^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~610~^0.154^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~611~^0.139^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~612~^0.935^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~613~^4.700^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~614~^2.989^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~617~^11.467^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~618~^2.250^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~619~^0.207^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~626~^0.262^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~18434~^~645~^11.852^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18434~^~646~^2.457^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~312~^0.065^6^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~315~^0.253^6^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~404~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~405~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~406~^0.769^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~410~^0.634^8^0.023^~1~^^^^^^^^^^^~08/01/1992~ -~18435~^~415~^0.040^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~501~^0.064^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~502~^0.171^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~503~^0.224^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~504~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~505~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~506~^0.110^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~507~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~508~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~509~^0.166^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~510~^0.252^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~511~^0.209^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~512~^0.118^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~513~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~514~^0.300^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~515~^1.603^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~516~^0.178^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~517~^0.543^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~518~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~606~^2.826^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~610~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~612~^0.053^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~613~^1.527^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~614~^1.233^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~617~^5.903^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~618~^1.416^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~619~^0.075^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~620~^0.014^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~621~^0.004^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~626~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~628~^0.003^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18435~^~645~^5.937^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18435~^~646~^1.508^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~312~^0.169^6^0.032^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~315~^0.263^3^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~404~^0.890^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~405~^0.067^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~406~^0.650^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~410~^0.473^12^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~415~^0.057^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18436~^~501~^0.077^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~502~^0.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~503~^0.266^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~504~^0.468^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~505~^0.231^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~506~^0.114^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~507~^0.130^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~508~^0.310^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~509~^0.200^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~510~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~511~^0.271^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~512~^0.144^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~513~^0.235^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~514~^0.380^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~515~^1.873^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~516~^0.227^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~517~^0.626^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~518~^0.330^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~606~^5.813^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~612~^0.112^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~613~^3.018^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~614~^2.676^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~617~^12.841^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~618~^2.744^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~619~^0.145^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~620~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~621~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~626~^0.021^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~627~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~628~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~629~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18436~^~645~^12.865^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18436~^~646~^2.902^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18437~^~312~^0.129^11^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~315~^0.357^10^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~404~^0.442^129^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~405~^0.281^33^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~406~^3.884^33^0.125^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~410~^0.446^9^0.041^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~415~^0.043^4^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18437~^~501~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~502~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~503~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~504~^0.553^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~505~^0.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~506~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~507~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~508~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~509~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~510~^0.353^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~511~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~512~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~513~^0.281^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~514~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~515~^2.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~516~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~517~^0.809^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~518~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~606~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~613~^0.212^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~614~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~617~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~618~^0.813^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~619~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~626~^0.027^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~645~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18437~^~646~^0.888^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~312~^0.129^11^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~315~^0.357^10^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~404~^0.181^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~405~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~406~^1.566^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~410~^0.446^9^0.041^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~415~^0.043^4^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18438~^~501~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~502~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~503~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~504~^0.553^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~505~^0.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~506~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~507~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~508~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~509~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~510~^0.353^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~511~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~512~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~513~^0.281^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~514~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~515~^2.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~516~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~517~^0.809^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~518~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~606~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~613~^0.212^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~614~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~617~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~618~^0.813^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~619~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~626~^0.027^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~645~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18438~^~646~^0.888^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~312~^0.129^11^0.016^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~315~^0.357^10^0.031^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~404~^0.181^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~405~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~406~^1.566^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~410~^0.446^9^0.041^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~415~^0.043^4^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18439~^~501~^0.092^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~502~^0.242^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~503~^0.315^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~504~^0.553^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~505~^0.241^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~506~^0.139^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~507~^0.160^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~508~^0.379^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~509~^0.233^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~510~^0.353^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~511~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~512~^0.170^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~513~^0.281^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~514~^0.398^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~515~^2.419^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~516~^0.280^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~517~^0.809^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~518~^0.376^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~606~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~612~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~613~^0.212^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~614~^0.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~617~^0.274^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~618~^0.813^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~619~^0.075^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~626~^0.027^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~628~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~645~^0.302^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18439~^~646~^0.888^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~312~^0.046^36^0.002^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~315~^0.182^36^0.006^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~404~^0.134^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~405~^0.158^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~406~^1.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~410~^0.119^5^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~415~^0.038^5^0.004^~1~^^^^^^^^^^^~08/01/1992~ -~18443~^~501~^0.026^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~502~^0.054^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~503~^0.073^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~504~^0.129^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~505~^0.070^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~506~^0.032^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~507~^0.040^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~508~^0.088^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~509~^0.054^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~510~^0.084^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~511~^0.074^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~512~^0.038^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~513~^0.060^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~514~^0.095^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~515~^0.587^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~516~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~517~^0.199^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~518~^0.099^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~606~^3.797^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18443~^~611~^0.021^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~612~^0.126^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~613~^2.062^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~614~^1.534^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~617~^4.109^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~618~^2.066^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~619~^0.123^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~626~^0.146^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~628~^0.061^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~645~^4.388^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18443~^~646~^2.198^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18444~^~312~^0.047^8^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~315~^0.224^8^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~404~^0.141^22^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~405~^0.106^22^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~406~^1.425^22^0.171^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~410~^0.110^5^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~415~^0.030^7^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18444~^~501~^0.042^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~502~^0.089^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~503~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~504~^0.211^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~505~^0.121^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~506~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~507~^0.059^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~508~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~509~^0.090^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~510~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~511~^0.112^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~512~^0.062^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~513~^0.093^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~514~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~515~^0.906^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~516~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~517~^0.314^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~518~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~606~^2.457^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~612~^0.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~613~^1.516^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~614~^0.834^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~617~^7.299^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~618~^4.808^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~619~^0.568^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~626~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~628~^0.089^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~630~^0.032^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18444~^~645~^7.449^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18444~^~646~^5.376^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~312~^0.047^8^0.003^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~315~^0.224^8^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~404~^0.141^22^0.020^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~405~^0.106^22^0.013^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~406~^1.425^22^0.171^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~410~^0.110^5^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~415~^0.030^7^0.010^~1~^^^^^^^^^^^~08/01/1992~ -~18445~^~501~^0.042^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~502~^0.089^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~503~^0.120^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~504~^0.211^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~505~^0.121^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~506~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~507~^0.059^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~508~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~509~^0.090^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~510~^0.138^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~511~^0.112^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~512~^0.062^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~513~^0.093^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~514~^0.156^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~515~^0.906^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~516~^0.098^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~517~^0.314^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~518~^0.154^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~606~^2.457^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~610~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~611~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~612~^0.032^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~613~^1.516^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~614~^0.834^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~617~^7.299^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~618~^4.808^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~619~^0.568^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~626~^0.012^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~628~^0.089^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~630~^0.032^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18445~^~645~^7.449^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18445~^~646~^5.376^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18446~^~312~^0.068^7^0.017^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~315~^0.547^3^0.065^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~404~^0.050^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~405~^0.010^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~406~^0.550^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~410~^0.231^6^0.036^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~415~^0.071^3^0.005^~1~^^^^^^^^^^^~08/01/1992~ -~18446~^~501~^0.056^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~502~^0.112^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~503~^0.150^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~504~^0.267^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~505~^0.140^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~506~^0.065^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~507~^0.085^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~508~^0.182^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~509~^0.111^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~510~^0.172^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~511~^0.148^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~512~^0.079^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~513~^0.119^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~514~^0.169^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~515~^1.266^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~516~^0.131^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~517~^0.427^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~518~^0.205^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18446~^~606~^4.357^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~607~^0.001^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~612~^0.031^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~613~^2.878^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~614~^1.443^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~617~^12.273^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~618~^10.212^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~619~^0.759^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~626~^0.117^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~645~^12.414^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18446~^~646~^11.000^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~312~^0.174^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~315~^0.741^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~404~^0.101^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~405~^0.026^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~406~^1.041^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~410~^0.480^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~415~^0.042^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18447~^~501~^0.123^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~502~^0.293^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~503~^0.407^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~504~^0.747^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~505~^0.249^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~506~^0.191^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~507~^0.225^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~508~^0.517^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~509~^0.304^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~510~^0.458^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~511~^0.365^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~512~^0.229^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~513~^0.324^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~514~^0.451^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~515~^3.565^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~516~^0.348^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~517~^1.216^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~518~^0.513^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~606~^0.983^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~607~^0.001^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~612~^0.018^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~613~^0.555^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~614~^0.408^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~617~^1.984^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~618~^0.784^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~619~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~626~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~645~^1.984^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18447~^~646~^0.823^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~312~^0.120^3^0.042^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~315~^0.435^3^0.029^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~404~^0.228^9^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~405~^0.053^8^0.001^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~406~^1.350^8^0.067^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~410~^0.470^9^0.035^~1~^^^^^^^^^^^~08/01/1992~ -~18448~^~415~^0.296^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~501~^0.052^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~502~^0.271^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~503~^0.259^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~504~^0.886^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~505~^0.203^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~506~^0.151^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~507~^0.130^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~508~^0.354^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~509~^0.294^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~510~^0.366^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~511~^0.360^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~512~^0.221^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~513~^0.540^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~514~^0.502^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~515~^1.354^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~516~^0.297^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~517~^0.630^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~518~^0.343^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18448~^~606~^3.245^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~612~^0.019^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~613~^2.217^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~614~^0.994^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~617~^8.837^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~618~^7.941^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~619~^0.534^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~626~^0.078^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~645~^8.934^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18448~^~646~^8.494^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18449~^~312~^0.154^13^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~315~^0.402^12^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~404~^0.112^31^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~405~^0.073^23^0.008^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~406~^1.498^33^0.096^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~410~^0.194^12^0.014^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~415~^0.219^11^0.027^~1~^^^^^^^^^^^~08/01/1992~ -~18449~^~501~^0.042^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~502~^0.218^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~503~^0.208^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~504~^0.711^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~505~^0.163^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~506~^0.121^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~507~^0.105^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~508~^0.285^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~509~^0.236^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~510~^0.294^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~511~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~512~^0.177^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~513~^0.434^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~514~^0.403^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~515~^1.087^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~516~^0.238^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~517~^0.506^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~518~^0.275^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~606~^0.334^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~613~^0.295^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~614~^0.039^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~617~^0.647^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~618~^1.088^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~619~^0.034^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~626~^0.002^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~645~^0.649^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18449~^~646~^1.122^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~312~^0.267^36^0.141^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~315~^0.462^35^0.011^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~404~^0.531^14^0.025^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~405~^0.293^14^0.069^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~406~^3.572^14^0.135^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~410~^0.582^12^0.061^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~415~^0.050^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18450~^~501~^0.106^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~502~^0.245^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~503~^0.307^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~504~^0.600^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~505~^0.213^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~506~^0.155^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~507~^0.181^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~508~^0.435^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~509~^0.266^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~510~^0.356^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~511~^0.356^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~512~^0.195^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~513~^0.289^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~514~^0.386^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~515~^2.850^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~516~^0.316^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~517~^0.979^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~518~^0.432^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~606~^1.745^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~607~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~608~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~609~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~610~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1992~ -~18450~^~612~^0.032^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~613~^0.937^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~614~^0.776^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~617~^3.760^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~618~^1.009^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~619~^0.054^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~620~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~621~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~626~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~627~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~628~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~629~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~630~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~631~^0.000^0^^~4~^^^^^^^^^^^~07/01/1995~ -~18450~^~645~^3.768^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18450~^~646~^1.063^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~ -~18451~^~312~^0.058^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~315~^0.137^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~404~^0.125^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~405~^0.302^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~406~^0.686^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~410~^0.346^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~415~^0.012^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~502~^0.214^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~503~^0.275^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~504~^0.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~505~^0.318^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~506~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~507~^0.122^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~508~^0.288^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~509~^0.197^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~510~^0.312^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~511~^0.256^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~512~^0.120^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~513~^0.251^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~514~^0.434^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~515~^1.069^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~516~^0.178^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~517~^0.358^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~518~^0.333^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~606~^0.259^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~607~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~608~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~609~^0.002^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~610~^0.005^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~611~^0.006^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~612~^0.020^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~613~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~614~^0.029^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~617~^0.159^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~618~^0.398^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~619~^0.026^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~626~^0.007^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18451~^~645~^0.166^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18451~^~646~^0.424^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~312~^0.063^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~315~^0.228^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~404~^0.172^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~405~^0.211^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~406~^1.569^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~410~^0.326^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~415~^0.026^2^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~501~^0.065^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~502~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~503~^0.185^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~504~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~505~^0.191^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~506~^0.074^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~507~^0.090^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~508~^0.221^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~509~^0.141^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~510~^0.208^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~511~^0.207^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~512~^0.098^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~513~^0.150^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~514~^0.264^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~515~^1.352^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~516~^0.160^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~517~^0.448^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~518~^0.241^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18453~^~606~^1.367^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~612~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~613~^0.718^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~614~^0.616^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~617~^2.971^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~618~^0.754^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~619~^0.042^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~645~^2.973^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18453~^~646~^0.796^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~18457~^~312~^0.145^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~315~^0.637^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~404~^0.518^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~405~^0.590^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~406~^5.714^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~410~^0.390^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~415~^0.085^1^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~501~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~502~^0.287^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~503~^0.378^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~504~^0.716^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~505~^0.290^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~506~^0.180^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~507~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~508~^0.514^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~509~^0.309^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~510~^0.439^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~511~^0.413^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~512~^0.224^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~513~^0.327^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~514~^0.443^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~515~^3.494^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~516~^0.367^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~517~^1.190^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~518~^0.536^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~606~^0.244^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~612~^0.001^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~613~^0.228^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~614~^0.010^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~617~^0.138^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~618~^0.647^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~619~^0.038^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~626~^0.004^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~628~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/1994~ -~18457~^~645~^0.142^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18457~^~646~^0.685^0^^~1~^^^^^^^^^^^~08/01/1992~ -~18459~^~312~^0.073^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~404~^0.285^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~405~^0.549^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~406~^3.800^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~415~^0.380^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~ -~18459~^~606~^1.393^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~613~^0.681^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~614~^0.676^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~617~^3.332^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~618~^0.856^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~619~^0.023^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~628~^0.007^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~645~^3.338^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18459~^~646~^0.878^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~ -~18513~^~404~^0.270^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~405~^0.170^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~406~^1.810^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~606~^4.900^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~645~^7.860^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18513~^~646~^1.310^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18522~^~404~^0.250^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~405~^0.170^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~406~^2.060^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~605~^5.830^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~606~^8.080^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~645~^8.940^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18522~^~646~^1.430^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18524~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~405~^0.060^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~406~^0.220^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~606~^20.100^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~645~^1.610^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18524~^~646~^0.810^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~18527~^~404~^0.280^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~405~^0.170^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~406~^1.990^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~605~^3.360^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~606~^2.760^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~645~^4.820^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18527~^~646~^1.110^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~404~^0.260^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~405~^0.180^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~406~^2.220^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~605~^4.240^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~606~^3.620^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~645~^5.940^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18528~^~646~^1.180^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18529~^~404~^0.240^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~405~^0.200^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~406~^1.950^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~606~^5.830^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~645~^5.750^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18529~^~646~^0.920^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18532~^~404~^0.260^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~405~^0.190^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~406~^2.390^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~605~^3.080^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~606~^4.160^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~645~^4.750^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18532~^~646~^2.440^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~404~^0.270^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~405~^0.150^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~406~^1.640^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~605~^3.580^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~606~^4.610^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~645~^5.610^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18533~^~646~^2.720^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~404~^0.300^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~405~^0.230^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~406~^2.710^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~605~^3.340^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~606~^2.810^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~645~^4.860^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18535~^~646~^1.050^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~404~^0.300^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~405~^0.180^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~406~^1.880^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~605~^3.880^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~606~^3.200^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~645~^5.660^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18537~^~646~^1.330^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~404~^0.280^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~405~^0.160^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~406~^1.690^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~605~^3.320^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~606~^2.750^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~645~^4.850^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18538~^~646~^1.160^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~404~^0.310^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~405~^0.240^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~406~^2.840^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~605~^3.250^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~606~^2.770^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~645~^4.800^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18539~^~646~^1.000^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~404~^0.340^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~405~^0.250^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~406~^2.940^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~605~^4.300^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~606~^3.750^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~645~^7.820^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18540~^~646~^1.670^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18541~^~404~^0.240^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~405~^0.200^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~406~^4.370^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~606~^5.390^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~645~^10.210^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18541~^~646~^4.230^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~ -~18544~^~404~^0.340^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~405~^0.180^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~406~^2.130^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~605~^2.850^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~606~^5.160^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~645~^4.140^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18544~^~646~^1.100^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~404~^0.340^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~405~^0.180^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~406~^2.130^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~605~^2.850^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~606~^5.160^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~645~^4.140^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18547~^~646~^1.100^1^^~9~^^^^^^^^^^^~10/01/2005~ -~18562~^~404~^0.320^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~405~^0.220^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~406~^2.860^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~605~^3.310^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~606~^2.600^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~645~^3.580^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18562~^~646~^1.650^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18566~^~606~^1.865^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~609~^0.007^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~610~^0.005^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~611~^0.005^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~612~^0.007^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~613~^0.953^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~614~^0.852^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~617~^3.708^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~618~^1.583^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~619~^0.090^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~620~^0.005^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~626~^0.010^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~628~^0.024^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~645~^3.742^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18566~^~646~^1.679^2^^~1~^~A~^^^^^^^^^^~10/01/1998~ -~18567~^~404~^0.390^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~405~^0.290^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~406~^3.840^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18567~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~ -~18603~^~606~^0.900^1^^~1~^~A~^^^^^^^^^^~12/01/2005~ -~18603~^~609~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~613~^0.562^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~614~^0.325^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~617~^2.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~618~^0.746^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~619~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~626~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~645~^2.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18603~^~646~^0.761^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18603~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~687~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18603~^~689~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~606~^3.150^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18608~^~609~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~613~^1.782^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~614~^1.206^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~615~^0.058^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~617~^8.326^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~618~^2.076^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~619~^0.105^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~624~^0.048^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~626~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~628~^0.067^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~645~^8.431^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18608~^~646~^2.201^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18608~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18608~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18610~^~605~^2.700^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18610~^~606~^2.100^1^^~9~^^^^^^^^^^^~11/01/2005~ -~18612~^~606~^6.290^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18614~^~404~^0.200^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~405~^0.130^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~406~^1.670^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~410~^0.000^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18614~^~606~^1.700^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~404~^0.490^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~405~^0.380^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~406~^3.930^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~415~^0.020^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~605~^3.770^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18615~^~606~^4.070^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18616~^~606~^0.695^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~18616~^~609~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~612~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~613~^0.072^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~614~^0.555^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~615~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~617~^2.737^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~618~^0.871^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~619~^0.043^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~624~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~625~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~626~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~628~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~645~^2.771^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18616~^~646~^0.924^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18616~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~687~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18616~^~689~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18617~^~312~^0.030^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~404~^0.228^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~405~^0.240^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~406~^3.780^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~415~^0.100^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18617~^~606~^1.560^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18617~^~645~^3.600^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18617~^~646~^0.460^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~ -~18619~^~312~^0.270^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~404~^0.122^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~405~^0.165^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~406~^1.845^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~410~^0.036^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~415~^0.032^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~606~^4.140^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~18619~^~609~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~613~^2.192^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~614~^1.790^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~615~^0.077^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~617~^11.101^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~618~^2.066^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~619~^0.096^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~624~^0.067^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~625~^0.009^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~626~^0.029^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~628~^0.067^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~645~^3.170^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~646~^0.820^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~ -~18619~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18619~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18621~^~312~^0.124^4^0.003^~1~^~A~^^^1^0.119^0.133^3^0.114^0.134^~2, 3~^~06/01/2008~ -~18621~^~315~^0.540^4^0.023^~1~^~A~^^^1^0.473^0.574^3^0.467^0.613^~2, 3~^~06/01/2008~ -~18621~^~404~^0.442^4^0.021^~1~^~A~^^^1^0.390^0.480^3^0.377^0.508^~2, 3~^~06/01/2008~ -~18621~^~405~^0.265^4^0.044^~1~^~A~^^^1^0.150^0.340^3^0.124^0.406^~2, 3~^~06/01/2008~ -~18621~^~406~^4.880^4^0.092^~1~^~A~^^^1^4.630^5.070^3^4.589^5.171^~2, 3~^~06/01/2008~ -~18621~^~410~^0.370^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~18621~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~18621~^~605~^1.050^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~606~^5.450^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~610~^0.017^4^0.006^~1~^~A~^^^1^0.000^0.028^3^-0.002^0.036^~1, 2, 3~^~06/01/2008~ -~18621~^~611~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~06/01/2008~ -~18621~^~612~^0.046^4^0.001^~1~^~A~^^^1^0.043^0.048^3^0.043^0.049^~2, 3~^~06/01/2008~ -~18621~^~613~^3.016^4^0.042^~1~^~A~^^^1^2.909^3.098^3^2.882^3.150^~2, 3~^~06/01/2008~ -~18621~^~614~^2.167^4^0.045^~1~^~A~^^^1^2.053^2.260^3^2.023^2.311^~2, 3~^~06/01/2008~ -~18621~^~615~^0.075^4^0.001^~1~^~A~^^^1^0.073^0.077^3^0.072^0.078^~2, 3~^~06/01/2008~ -~18621~^~617~^6.170^4^0.105^~1~^~AS~^^^1^5.928^6.424^3^5.835^6.504^~2, 3~^~06/01/2008~ -~18621~^~618~^9.650^4^0.149^~1~^~AS~^^^1^9.312^9.905^3^9.174^10.125^~2, 3~^~06/01/2008~ -~18621~^~619~^1.232^4^0.031^~1~^~AS~^^^1^1.171^1.313^3^1.133^1.332^~2, 3~^~06/01/2008~ -~18621~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~624~^0.069^4^0.001^~1~^~A~^^^1^0.067^0.070^3^0.067^0.071^~2, 3~^~06/01/2008~ -~18621~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~626~^0.019^4^0.000^~1~^~AS~^^^1^0.018^0.019^3^0.018^0.019^~2, 3~^~06/01/2008~ -~18621~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~628~^0.077^4^0.007^~1~^~A~^^^1^0.058^0.092^3^0.054^0.100^~2, 3~^~06/01/2008~ -~18621~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~630~^0.002^4^0.001^~1~^~AS~^^^1^0.000^0.003^3^-0.001^0.004^~2, 3~^~06/01/2008~ -~18621~^~631~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~06/01/2008~ -~18621~^~645~^6.276^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~646~^10.896^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~652~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~06/01/2008~ -~18621~^~653~^0.024^4^0.001^~1~^~A~^^^1^0.022^0.025^3^0.022^0.026^~2, 3~^~06/01/2008~ -~18621~^~654~^0.029^4^0.000^~1~^~A~^^^1^0.029^0.030^3^0.028^0.030^~2, 3~^~06/01/2008~ -~18621~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~663~^0.977^4^0.022^~1~^~A~^^^1^0.936^1.026^3^0.907^1.048^~2, 3~^~06/01/2008~ -~18621~^~664~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~06/01/2008~ -~18621~^~665~^0.072^4^0.007^~1~^~A~^^^1^0.057^0.091^3^0.050^0.095^~2, 3~^~06/01/2008~ -~18621~^~670~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.018^3^0.012^0.018^~2, 3~^~06/01/2008~ -~18621~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~672~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.006^0.008^~2, 3~^~06/01/2008~ -~18621~^~673~^0.019^4^0.000^~1~^~A~^^^1^0.018^0.019^3^0.018^0.019^~2, 3~^~06/01/2008~ -~18621~^~674~^5.192^4^0.086^~1~^~A~^^^1^4.984^5.398^3^4.920^5.465^~2, 3~^~06/01/2008~ -~18621~^~675~^9.562^4^0.151^~1~^~A~^^^1^9.230^9.830^3^9.080^10.044^~2, 3~^~06/01/2008~ -~18621~^~676~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~06/01/2008~ -~18621~^~685~^0.039^4^0.007^~1~^~A~^^^1^0.022^0.053^3^0.018^0.060^~2, 3~^~06/01/2008~ -~18621~^~687~^0.009^4^0.000^~1~^~A~^^^1^0.009^0.010^3^0.008^0.010^~2, 3~^~06/01/2008~ -~18621~^~689~^0.003^4^0.001^~1~^~AS~^^^1^0.000^0.004^3^0.000^0.006^~2, 3~^~06/01/2008~ -~18621~^~693~^0.978^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~695~^0.072^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~18621~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~851~^1.193^4^0.036^~1~^~A~^^^1^1.133^1.291^3^1.078^1.308^~2, 3~^~06/01/2008~ -~18621~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18621~^~853~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.006^~1, 2, 3~^~06/01/2008~ -~18621~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~18629~^~605~^0.590^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18629~^~606~^0.420^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~605~^0.510^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18630~^~606~^8.730^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~605~^0.640^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18631~^~606~^0.670^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~605~^0.880^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18633~^~606~^4.070^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18634~^~605~^4.412^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18634~^~606~^2.941^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~ -~18635~^~605~^4.290^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18635~^~606~^3.250^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~ -~18639~^~605~^0.082^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~606~^0.308^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18639~^~613~^0.308^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~617~^0.303^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~618~^0.841^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~619~^0.079^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~18639~^~645~^0.303^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18639~^~646~^0.920^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~ -~18640~^~605~^0.200^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~606~^1.400^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~645~^2.000^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18640~^~646~^2.900^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~ -~18641~^~606~^1.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~ -~18641~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~613~^0.577^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~614~^0.392^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~617~^0.812^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~618~^1.961^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~619~^0.212^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~620~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~624~^0.017^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~626~^0.019^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~628~^0.013^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~645~^0.848^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18641~^~646~^2.177^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~ -~18641~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~687~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18641~^~689~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~18651~^~312~^0.168^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~404~^0.087^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~405~^0.171^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~406~^1.345^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~410~^0.057^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~415~^0.021^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~606~^0.427^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~645~^0.246^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~ -~18651~^~646~^0.196^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~ -~18927~^~312~^0.242^6^0.020^~1~^~A~^^^1^0.180^0.290^5^0.192^0.293^~2, 3~^~12/01/2002~ -~18927~^~315~^0.497^6^0.005^~1~^~A~^^^1^0.485^0.512^5^0.484^0.510^~2, 3~^~12/01/2002~ -~18927~^~404~^0.508^6^0.017^~1~^~A~^^^1^0.426^0.539^5^0.464^0.552^~2, 3~^~12/01/2002~ -~18927~^~405~^0.457^6^0.005^~1~^~A~^^^1^0.437^0.468^5^0.444^0.470^~2, 3~^~12/01/2002~ -~18927~^~406~^3.478^6^0.071^~1~^~A~^^^1^3.224^3.661^5^3.296^3.661^~2, 3~^~12/01/2002~ -~18927~^~410~^0.855^3^0.020^~1~^~A~^^^1^0.826^0.892^2^0.770^0.939^~2, 3~^~12/01/2002~ -~18927~^~415~^0.114^6^0.007^~1~^~A~^^^1^0.084^0.134^5^0.095^0.133^~2, 3~^~12/01/2002~ -~18927~^~501~^0.110^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~502~^0.330^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~503~^0.357^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~504~^0.638^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~505~^0.386^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~506~^0.151^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~507~^0.155^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~508~^0.350^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~509~^0.249^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~510~^0.381^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~511~^0.292^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~512~^0.175^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~513~^0.298^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~514~^0.518^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~515~^2.161^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~516~^0.236^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~517~^0.768^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~518~^0.401^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~ -~18927~^~606~^4.810^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18927~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~612~^0.200^3^0.010^~1~^~A~^^^1^0.190^0.220^2^0.157^0.243^~2, 3~^~12/01/2002~ -~18927~^~613~^2.703^3^0.047^~1~^~A~^^^1^2.630^2.790^2^2.503^2.904^~2, 3~^~12/01/2002~ -~18927~^~614~^1.790^3^0.017^~1~^~A~^^^1^1.760^1.820^2^1.715^1.865^~2, 3~^~12/01/2002~ -~18927~^~615~^0.117^3^0.007^~1~^~A~^^^1^0.110^0.130^2^0.088^0.145^~2, 3~^~12/01/2002~ -~18927~^~617~^14.177^3^0.345^~1~^~A~^^^1^13.750^14.860^2^12.692^15.662^~2, 3~^~12/01/2002~ -~18927~^~618~^2.293^3^0.037^~1~^~A~^^^1^2.220^2.330^2^2.136^2.451^~2, 3~^~12/01/2002~ -~18927~^~619~^0.033^3^0.033^~1~^~A~^^^1^0.000^0.100^2^-0.110^0.177^~1, 2, 3~^~12/01/2002~ -~18927~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2002~ -~18927~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~628~^0.130^3^0.010^~1~^~A~^^^1^0.120^0.150^2^0.087^0.173^~2, 3~^~12/01/2002~ -~18927~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~645~^14.307^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18927~^~646~^2.327^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~18927~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18927~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2002~ -~18932~^~312~^0.040^2^^~1~^~A~^^^1^0.020^0.060^1^^^^~10/01/2004~ -~18932~^~315~^0.215^2^^~1~^~A~^^^1^0.201^0.228^1^^^^~10/01/2004~ -~18932~^~404~^0.499^2^^~1~^~A~^^^1^0.423^0.576^1^^^^~10/01/2004~ -~18932~^~405~^0.665^2^^~1~^~A~^^^1^0.660^0.670^1^^^^~10/01/2004~ -~18932~^~406~^6.675^2^^~1~^~A~^^^1^5.870^7.480^1^^^^~10/01/2004~ -~18932~^~410~^0.240^2^^~1~^~A~^^^1^0.220^0.260^1^^^^~10/01/2004~ -~18932~^~415~^0.972^2^^~1~^~A~^^^1^0.864^1.080^1^^^^~10/01/2004~ -~18932~^~501~^0.074^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~502~^0.225^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~503~^0.281^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~504~^0.489^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~505~^0.296^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~506~^0.133^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~507~^0.154^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~508~^0.304^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~509~^0.154^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~510~^0.326^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~511~^0.282^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~512~^0.143^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~513~^0.249^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~514~^0.406^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~515~^1.614^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~516~^0.214^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~517~^0.559^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~518~^0.347^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~606~^1.898^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18932~^~607~^0.005^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~608~^0.003^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~612~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~10/01/2004~ -~18932~^~613~^1.025^2^^~1~^~A~^^^1^0.933^1.117^1^^^^~10/01/2004~ -~18932~^~614~^0.772^2^^~1~^~A~^^^1^0.763^0.781^1^^^^~10/01/2004~ -~18932~^~615~^0.031^2^^~1~^~A~^^^1^0.031^0.032^1^^^^~10/01/2004~ -~18932~^~617~^4.469^2^^~1~^~A~^^^1^3.750^5.188^1^^^^~10/01/2004~ -~18932~^~618~^1.414^2^^~1~^~A~^^^1^1.145^1.684^1^^^^~10/01/2004~ -~18932~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~18932~^~620~^0.009^2^^~1~^~A~^^^1^0.007^0.011^1^^^~1~^~10/01/2004~ -~18932~^~621~^0.007^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~624~^0.030^2^^~1~^~A~^^^1^0.029^0.031^1^^^^~10/01/2004~ -~18932~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~626~^0.022^2^^~1~^~A~^^^1^0.016^0.028^1^^^^~10/01/2004~ -~18932~^~627~^0.002^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~628~^0.039^2^^~1~^~A~^^^1^0.038^0.041^1^^^^~10/01/2004~ -~18932~^~629~^0.012^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~ -~18932~^~645~^4.530^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~18932~^~646~^1.445^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~18932~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~653~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~10/01/2004~ -~18932~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18932~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~18933~^~312~^0.037^6^0.008^~1~^~A~^^^1^0.021^0.076^5^0.017^0.058^~2, 3~^~11/01/2004~ -~18933~^~315~^0.223^6^0.038^~1~^~A~^^^1^0.037^0.278^5^0.126^0.320^~1, 2, 3~^~11/01/2004~ -~18933~^~404~^0.563^5^0.049^~1~^~A~^^^1^0.446^0.733^4^0.428^0.698^~2, 3~^~11/01/2004~ -~18933~^~405~^0.648^5^0.072^~1~^~A~^^^1^0.380^0.800^4^0.447^0.848^~2, 3~^~11/01/2004~ -~18933~^~406~^7.942^5^0.750^~1~^~A~^^^1^6.040^10.600^4^5.858^10.026^~2, 3~^~11/01/2004~ -~18933~^~410~^0.217^3^0.019^~1~^~A~^^^1^0.180^0.240^2^0.137^0.296^~2, 3~^~11/01/2004~ -~18933~^~415~^1.110^3^0.132^~1~^~A~^^^1^0.850^1.280^2^0.542^1.678^~2, 3~^~11/01/2004~ -~18933~^~501~^0.082^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~502~^0.250^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~503~^0.312^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~504~^0.544^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~505~^0.329^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~506~^0.148^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~507~^0.172^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~508~^0.337^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~509~^0.172^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~510~^0.362^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~511~^0.314^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~512~^0.159^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~513~^0.276^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~514~^0.451^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~515~^1.793^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~516~^0.237^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~517~^0.621^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~518~^0.385^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~606~^2.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18933~^~607~^0.005^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~608~^0.003^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~612~^0.027^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.018^0.036^~2, 3~^~11/01/2004~ -~18933~^~613~^1.202^3^0.052^~1~^~A~^^^1^1.099^1.265^2^0.978^1.426^~2, 3~^~11/01/2004~ -~18933~^~614~^0.967^3^0.076^~1~^~A~^^^1^0.864^1.114^2^0.642^1.292^~2, 3~^~11/01/2004~ -~18933~^~615~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~2, 3~^~11/01/2004~ -~18933~^~617~^5.230^3^0.411^~1~^~A~^^^1^4.466^5.876^2^3.461^7.000^~2, 3~^~11/01/2004~ -~18933~^~618~^1.396^3^0.290^~1~^~A~^^^1^0.953^1.943^2^0.146^2.646^~2, 3~^~11/01/2004~ -~18933~^~619~^0.099^3^0.058^~1~^~A~^^^1^0.037^0.214^2^-0.149^0.347^~2, 3~^~11/01/2004~ -~18933~^~620~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~11/01/2004~ -~18933~^~621~^0.008^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~624~^0.036^3^0.001^~1~^~A~^^^1^0.035^0.037^2^0.033^0.038^~2, 3~^~11/01/2004~ -~18933~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~626~^0.022^3^0.005^~1~^~A~^^^1^0.015^0.032^2^0.000^0.044^~2, 3~^~11/01/2004~ -~18933~^~627~^0.003^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~628~^0.040^3^0.006^~1~^~A~^^^1^0.028^0.046^2^0.015^0.065^~2, 3~^~11/01/2004~ -~18933~^~629~^0.013^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~ -~18933~^~645~^5.292^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~18933~^~646~^1.502^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~18933~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~653~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~11/01/2004~ -~18933~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~685~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~11/01/2004~ -~18933~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18933~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~18934~^~312~^0.063^2^^~1~^~A~^^^1^0.060^0.066^1^^^^~11/01/2004~ -~18934~^~315~^0.235^2^^~1~^~A~^^^1^0.224^0.246^1^^^^~11/01/2004~ -~18934~^~404~^0.576^2^^~1~^~A~^^^1^0.564^0.587^1^^^^~11/01/2004~ -~18934~^~405~^0.695^2^^~1~^~A~^^^1^0.690^0.700^1^^^^~11/01/2004~ -~18934~^~406~^6.730^2^^~1~^~A~^^^1^6.200^7.260^1^^^^~11/01/2004~ -~18934~^~410~^0.240^2^^~1~^~A~^^^1^0.230^0.250^1^^^^~11/01/2004~ -~18934~^~415~^1.105^2^^~1~^~A~^^^1^0.870^1.340^1^^^^~11/01/2004~ -~18934~^~606~^2.057^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~612~^0.023^2^^~1~^~A~^^^1^0.022^0.024^1^^^^~11/01/2004~ -~18934~^~613~^1.112^2^^~1~^~A~^^^1^1.034^1.191^1^^^^~11/01/2004~ -~18934~^~614~^0.843^2^^~1~^~A~^^^1^0.811^0.875^1^^^^~11/01/2004~ -~18934~^~615~^0.032^2^^~1~^~A~^^^1^0.032^0.033^1^^^^~11/01/2004~ -~18934~^~617~^4.797^2^^~1~^~A~^^^1^4.073^5.521^1^^^^~11/01/2004~ -~18934~^~618~^1.482^2^^~1~^~A~^^^1^1.183^1.781^1^^^^~11/01/2004~ -~18934~^~619~^0.123^2^^~1~^~A~^^^1^0.043^0.202^1^^^^~11/01/2004~ -~18934~^~620~^0.005^2^^~1~^~A~^^^1^0.000^0.011^1^^^~1~^~11/01/2004~ -~18934~^~624~^0.035^2^^~1~^~A~^^^1^0.035^0.035^^^^^~11/01/2004~ -~18934~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~626~^0.024^2^^~1~^~A~^^^1^0.018^0.030^1^^^^~11/01/2004~ -~18934~^~628~^0.043^2^^~1~^~A~^^^1^0.042^0.044^1^^^^~11/01/2004~ -~18934~^~645~^4.864^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~646~^1.615^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18934~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~653~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~11/01/2004~ -~18934~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~685~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~11/01/2004~ -~18934~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18934~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~312~^0.038^1^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~18935~^~315~^0.154^2^^~1~^~A~^^^1^0.037^0.271^1^^^~1~^~11/01/2004~ -~18935~^~404~^0.544^2^^~1~^~A~^^^1^0.472^0.615^1^^^^~11/01/2004~ -~18935~^~405~^0.655^2^^~1~^~A~^^^1^0.600^0.710^1^^^^~11/01/2004~ -~18935~^~406~^7.785^2^^~1~^~A~^^^1^6.950^8.620^1^^^^~11/01/2004~ -~18935~^~410~^0.325^2^^~1~^~A~^^^1^0.300^0.350^1^^^^~11/01/2004~ -~18935~^~415~^1.016^2^^~1~^~A~^^^1^0.882^1.150^1^^^^~11/01/2004~ -~18935~^~606~^1.580^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~612~^0.012^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~11/01/2004~ -~18935~^~613~^0.909^2^^~1~^~A~^^^1^0.902^1.300^1^^^^~11/01/2004~ -~18935~^~614~^0.576^2^^~1~^~A~^^^1^0.487^0.909^1^^^^~11/01/2004~ -~18935~^~615~^0.042^2^^~1~^~A~^^^1^0.038^0.065^1^^^^~11/01/2004~ -~18935~^~617~^5.099^2^^~1~^~A~^^^1^6.078^6.268^1^^^^~11/01/2004~ -~18935~^~618~^1.856^2^^~1~^~A~^^^1^1.369^3.126^1^^^^~11/01/2004~ -~18935~^~619~^0.371^2^^~1~^~A~^^^1^0.048^0.850^1^^^^~11/01/2004~ -~18935~^~620~^0.005^2^^~1~^~A~^^^1^0.000^0.013^1^^^~1~^~11/01/2004~ -~18935~^~624~^0.035^2^^~1~^~A~^^^1^0.037^0.047^1^^^^~11/01/2004~ -~18935~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~626~^0.026^2^^~1~^~A~^^^1^0.032^0.032^^^^^~11/01/2004~ -~18935~^~628~^0.070^2^^~1~^~A~^^^1^0.042^0.128^1^^^^~11/01/2004~ -~18935~^~645~^5.195^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~646~^2.240^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~18935~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~653~^0.005^2^^~1~^~A~^^^1^0.000^0.013^1^^^~1~^~11/01/2004~ -~18935~^~672~^0.007^2^^~1~^~A~^^^1^0.000^0.017^1^^^~1~^~11/01/2004~ -~18935~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18935~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2004~ -~18936~^~312~^0.035^2^^~1~^~A~^^^1^0.024^0.046^1^^^^~12/01/2004~ -~18936~^~315~^0.141^4^0.035^~1~^~A~^^^1^0.037^0.180^3^0.031^0.252^~1, 2, 3~^~12/01/2004~ -~18936~^~404~^0.363^4^0.119^~1~^~A~^^^1^0.180^0.710^3^-0.015^0.740^~2, 3~^~12/01/2004~ -~18936~^~405~^0.335^4^0.113^~1~^~A~^^^1^0.200^0.670^3^-0.024^0.694^~2, 3~^~12/01/2004~ -~18936~^~406~^3.345^4^1.395^~1~^~A~^^^1^1.910^7.530^3^-1.095^7.785^~2, 3~^~12/01/2004~ -~18936~^~410~^0.177^3^0.033^~1~^~A~^^^1^0.130^0.240^2^0.035^0.318^~2, 3~^~12/01/2004~ -~18936~^~415~^0.278^3^0.248^~1~^~A~^^^1^0.030^0.773^2^-0.788^1.343^~1, 2, 3~^~12/01/2004~ -~18936~^~606~^0.855^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18936~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~611~^0.004^3^0.003^~1~^~A~^^^1^0.000^0.011^2^-0.009^0.019^~1, 2, 3~^~06/01/2014~ -~18936~^~612~^0.017^3^0.002^~1~^~A~^^^1^0.016^0.022^2^0.012^0.026^~2, 3~^~06/01/2014~ -~18936~^~613~^0.554^3^0.134^~1~^~A~^^^1^0.466^0.882^2^0.039^1.191^~2, 3~^~06/01/2014~ -~18936~^~614~^0.248^3^0.082^~1~^~A~^^^1^0.188^0.438^2^-0.077^0.626^~2, 3~^~06/01/2014~ -~18936~^~615~^0.013^3^0.005^~1~^~A~^^^1^0.009^0.024^2^-0.007^0.035^~2, 3~^~06/01/2014~ -~18936~^~617~^2.424^3^0.917^~1~^~A~^^^1^1.710^4.521^2^-1.256^6.633^~2, 3~^~06/01/2014~ -~18936~^~618~^0.918^3^0.247^~1~^~A~^^^1^0.736^1.509^2^-0.043^2.078^~2, 3~^~06/01/2014~ -~18936~^~619~^0.038^3^0.008^~1~^~A~^^^1^0.030^0.058^2^0.006^0.078^~2, 3~^~06/01/2014~ -~18936~^~620~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.010^0.016^~1, 2, 3~^~12/01/2004~ -~18936~^~624~^0.016^3^0.004^~1~^~A~^^^1^0.013^0.026^2^0.000^0.036^~2, 3~^~06/01/2014~ -~18936~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~626~^0.015^3^0.003^~1~^~A~^^^1^0.011^0.021^2^0.004^0.030^~2, 3~^~06/01/2014~ -~18936~^~628~^0.014^3^0.004^~1~^~A~^^^1^0.011^0.023^2^-0.001^0.032^~2, 3~^~06/01/2014~ -~18936~^~645~^2.453^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18936~^~646~^0.965^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18936~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~653~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.010^~1, 2, 3~^~12/01/2004~ -~18936~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~685~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.011^2^-0.001^0.015^~2, 3~^~12/01/2004~ -~18936~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18936~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2004~ -~18938~^~312~^0.062^17^0.002^~1~^~A~^^^1^0.036^0.076^8^0.058^0.065^~2, 3~^~04/01/2013~ -~18938~^~315~^0.322^17^0.006^~1~^~A~^^^1^0.223^0.365^7^0.307^0.337^~2, 3~^~07/01/2014~ -~18938~^~404~^0.519^9^0.012^~1~^~A~^^^1^0.380^0.580^5^0.488^0.549^~2, 3~^~07/01/2014~ -~18938~^~405~^0.495^9^0.020^~1~^~A~^^^1^0.400^0.580^2^0.412^0.578^~2, 3~^~07/01/2014~ -~18938~^~406~^6.174^9^0.201^~1~^~A~^^^1^4.570^6.950^3^5.450^6.898^~2, 3~^~07/01/2014~ -~18938~^~410~^0.304^6^0.002^~1~^~A~^^^1^0.280^0.440^2^0.295^0.312^~2, 3~^~07/01/2014~ -~18938~^~415~^0.495^9^0.022^~1~^~A~^^^1^0.330^0.560^4^0.429^0.560^~2, 3~^~07/01/2014~ -~18938~^~501~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~502~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~503~^0.133^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~504~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~505~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~506~^0.071^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~507~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~508~^0.166^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~509~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~510~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~511~^0.128^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~512~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~513~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~514~^0.294^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~515~^1.425^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~516~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~517~^0.323^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~518~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~18938~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2005~ -~18938~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18938~^~606~^3.091^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~607~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~609~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.004^4^0.000^0.001^~1, 2, 3~^~11/01/2005~ -~18938~^~610~^0.009^11^0.000^~1~^~A~^^^1^0.007^0.012^5^0.008^0.009^~2, 3~^~04/01/2013~ -~18938~^~611~^0.010^11^0.000^~1~^~A~^^^1^0.006^0.027^7^0.009^0.011^~2, 3~^~07/01/2014~ -~18938~^~612~^0.049^11^0.001^~1~^~A~^^^1^0.041^0.089^3^0.047^0.051^~2, 3~^~07/01/2014~ -~18938~^~613~^2.561^11^0.016^~1~^~A~^^^1^2.344^3.658^4^2.516^2.606^~2, 3~^~07/01/2014~ -~18938~^~614~^0.385^11^0.002^~1~^~A~^^^1^0.342^0.400^7^0.380^0.390^~2, 3~^~07/01/2014~ -~18938~^~615~^0.030^11^0.000^~1~^~A~^^^1^0.029^0.033^4^0.029^0.031^~2, 3~^~04/01/2013~ -~18938~^~617~^2.151^11^0.016^~1~^~AS~^^^1^1.966^3.021^5^2.110^2.191^~2, 3~^~07/01/2014~ -~18938~^~618~^2.982^11^0.016^~1~^~AS~^^^1^0.980^3.462^4^2.936^3.028^~2, 3~^~07/01/2014~ -~18938~^~619~^0.372^11^0.009^~1~^~AS~^^^1^0.029^0.457^2^0.334^0.410^~2, 3~^~07/01/2014~ -~18938~^~620~^0.004^11^0.001^~1~^~A~^^^1^0.000^0.006^2^0.001^0.006^~1, 2, 3~^~04/01/2013~ -~18938~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~624~^0.018^11^0.000^~1~^~A~^^^1^0.006^0.021^2^0.016^0.019^~2, 3~^~04/01/2013~ -~18938~^~625~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~626~^0.009^11^0.000^~1~^~AS~^^^1^0.008^0.014^5^0.009^0.010^~2, 3~^~04/01/2013~ -~18938~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~628~^0.022^11^0.002^~1~^~A~^^^1^0.015^0.032^2^0.013^0.030^~2, 3~^~04/01/2013~ -~18938~^~629~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.001^~2, 3~^~04/01/2013~ -~18938~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~645~^2.186^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~646~^3.360^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18938~^~652~^0.005^11^0.000^~1~^~A~^^^1^0.004^0.006^2^0.003^0.006^~2, 3~^~04/01/2013~ -~18938~^~653~^0.014^11^0.000^~1~^~A~^^^1^0.010^0.017^5^0.013^0.015^~2, 3~^~04/01/2013~ -~18938~^~654~^0.009^11^0.000^~1~^~A~^^^1^0.006^0.011^3^0.008^0.011^~2, 3~^~07/01/2014~ -~18938~^~662~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~663~^0.012^11^0.002^~1~^~A~^^^1^0.004^0.018^2^0.002^0.022^~2, 3~^~04/01/2013~ -~18938~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~18938~^~665~^0.022^11^0.003^~1~^~A~^^^1^0.016^0.031^3^0.012^0.031^~2, 3~^~04/01/2013~ -~18938~^~670~^0.006^11^0.001^~1~^~A~^^^1^0.002^0.009^3^0.003^0.009^~1, 2, 3~^~04/01/2013~ -~18938~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~672~^0.003^11^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~18938~^~673~^0.009^11^0.000^~1~^~A~^^^1^0.008^0.014^5^0.009^0.010^~2, 3~^~04/01/2013~ -~18938~^~674~^2.139^11^0.017^~1~^~A~^^^1^1.951^3.010^4^2.093^2.185^~2, 3~^~07/01/2014~ -~18938~^~675~^2.954^11^0.018^~1~^~A~^^^1^0.960^3.439^3^2.899^3.009^~2, 3~^~07/01/2014~ -~18938~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~685~^0.014^11^0.001^~1~^~A~^^^1^0.004^0.017^3^0.012^0.016^~2, 3~^~04/01/2013~ -~18938~^~687~^0.004^11^0.000^~1~^~A~^^^1^0.002^0.005^3^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~18938~^~689~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2005~ -~18938~^~693~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18938~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~18938~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~18938~^~851~^0.358^11^0.009^~1~^~A~^^^1^0.025^0.442^2^0.320^0.396^~2, 3~^~07/01/2014~ -~18938~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~853~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18938~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~18938~^~858~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~18939~^~312~^0.068^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~315~^0.332^1^^~1~^~A~^^^^^^^^^^~01/01/2006~ -~18939~^~404~^0.365^2^^~1~^~A~^^^1^0.334^0.397^1^^^^~01/01/2006~ -~18939~^~405~^0.415^2^^~1~^~A~^^^1^0.350^0.480^1^^^^~01/01/2006~ -~18939~^~406~^5.250^2^^~1~^~A~^^^1^4.700^5.800^1^^^^~01/01/2006~ -~18939~^~410~^0.340^2^^~1~^~A~^^^1^0.320^0.360^1^^^^~01/01/2006~ -~18939~^~415~^0.465^2^^~1~^~A~^^^1^0.300^0.630^1^^^^~01/01/2006~ -~18939~^~606~^2.637^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~613~^1.518^2^^~1~^~A~^^^1^1.511^1.524^1^^^^~01/01/2006~ -~18939~^~614~^1.097^2^^~1~^~A~^^^1^1.069^1.125^1^^^^~01/01/2006~ -~18939~^~615~^0.022^2^^~1~^~A~^^^1^0.002^0.043^1^^^~1~^~01/01/2006~ -~18939~^~617~^6.527^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~18939~^~618~^1.208^2^^~1~^~A~^^^1^0.855^1.561^1^^^^~01/01/2006~ -~18939~^~619~^0.073^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~ -~18939~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~630~^0.022^2^^~1~^~A~^^^1^0.002^0.043^1^^^~1~^~01/01/2006~ -~18939~^~645~^6.550^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~646~^1.281^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~ -~18939~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2006~ -~18939~^~851~^0.073^2^^~1~^~A~^^^1^0.032^0.114^1^^^^~01/01/2006~ -~18940~^~312~^0.080^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~315~^0.785^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~404~^0.163^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~405~^0.175^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~406~^1.375^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~410~^0.251^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~415~^0.042^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~ -~18940~^~501~^0.048^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~502~^0.151^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~503~^0.185^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~504~^0.319^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~505~^0.201^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~506~^0.092^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~507~^0.099^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~508~^0.197^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~509~^0.109^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~510~^0.213^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~511~^0.192^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~512~^0.092^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~513~^0.171^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~514~^0.283^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~515~^0.967^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~516~^0.139^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~517~^0.327^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~518~^0.235^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~606~^1.549^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18940~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~612~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~613~^1.135^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~614~^0.366^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~615~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~617~^0.824^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~618~^1.196^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~619~^0.137^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~620~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~621~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~626~^0.031^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~627~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~629~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~645~^0.860^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18940~^~646~^1.363^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~18940~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~653~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18940~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~ -~18942~^~312~^0.223^3^0.039^~1~^~A~^^^1^0.148^0.280^2^0.055^0.391^~1, 2, 3~^~08/01/2007~ -~18942~^~315~^1.287^3^0.358^~1~^~A~^^^1^0.660^1.900^2^-0.254^2.827^~2, 3~^~08/01/2007~ -~18942~^~404~^0.184^3^0.053^~1~^~A~^^^1^0.093^0.276^2^-0.043^0.411^~2, 3~^~08/01/2007~ -~18942~^~405~^0.213^3^0.007^~1~^~A~^^^1^0.200^0.225^2^0.182^0.244^~2, 3~^~08/01/2007~ -~18942~^~406~^3.220^3^0.047^~1~^~A~^^^1^3.130^3.290^2^3.017^3.423^~2, 3~^~08/01/2007~ -~18942~^~410~^0.178^3^0.015^~1~^~A~^^^1^0.150^0.202^2^0.113^0.244^~2, 3~^~08/01/2007~ -~18942~^~415~^0.076^3^0.013^~1~^~A~^^^1^0.052^0.097^2^0.019^0.133^~2, 3~^~08/01/2007~ -~18942~^~606~^4.999^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~612~^0.020^3^0.002^~1~^~A~^^^1^0.017^0.023^2^0.012^0.029^~2, 3~^~08/01/2007~ -~18942~^~613~^2.775^3^0.276^~1~^~A~^^^1^2.343^3.287^2^1.589^3.960^~2, 3~^~08/01/2007~ -~18942~^~614~^1.974^3^0.133^~1~^~A~^^^1^1.727^2.181^2^1.404^2.544^~2, 3~^~08/01/2007~ -~18942~^~615~^0.096^3^0.009^~1~^~A~^^^1^0.080^0.112^2^0.056^0.137^~2, 3~^~08/01/2007~ -~18942~^~617~^16.884^3^0.963^~1~^~AS~^^^1^15.005^18.188^2^12.742^21.025^~2, 3~^~08/01/2007~ -~18942~^~618~^1.611^3^0.107^~1~^~AS~^^^1^1.444^1.811^2^1.150^2.072^~2, 3~^~08/01/2007~ -~18942~^~619~^0.060^3^0.006^~1~^~AS~^^^1^0.048^0.070^2^0.033^0.087^~2, 3~^~08/01/2007~ -~18942~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~624~^0.102^3^0.010^~1~^~A~^^^1^0.082^0.118^2^0.057^0.146^~2, 3~^~08/01/2007~ -~18942~^~626~^0.011^3^0.005^~1~^~AS~^^^1^0.002^0.017^2^-0.008^0.031^~2, 3~^~08/01/2007~ -~18942~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~628~^0.034^3^0.002^~1~^~A~^^^1^0.029^0.037^2^0.023^0.044^~2, 3~^~08/01/2007~ -~18942~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~18942~^~645~^16.928^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~646~^1.671^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18942~^~652~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~08/01/2007~ -~18942~^~653~^0.031^3^0.004^~1~^~A~^^^1^0.023^0.036^2^0.013^0.049^~2, 3~^~08/01/2007~ -~18943~^~312~^0.770^3^0.112^~1~^~A~^^^1^0.600^0.980^2^0.290^1.250^~2, 3~^~09/01/2007~ -~18943~^~315~^1.833^3^0.233^~1~^~A~^^^1^1.400^2.200^2^0.829^2.837^~2, 3~^~09/01/2007~ -~18943~^~404~^0.336^3^0.089^~1~^~A~^^^1^0.158^0.435^2^-0.048^0.721^~2, 3~^~09/01/2007~ -~18943~^~405~^0.265^3^0.025^~1~^~A~^^^1^0.216^0.301^2^0.156^0.374^~2, 3~^~09/01/2007~ -~18943~^~406~^3.073^3^0.113^~1~^~A~^^^1^2.880^3.270^2^2.589^3.558^~2, 3~^~09/01/2007~ -~18943~^~410~^0.168^3^0.014^~1~^~A~^^^1^0.148^0.196^2^0.107^0.230^~2, 3~^~09/01/2007~ -~18943~^~415~^0.043^3^0.009^~1~^~A~^^^1^0.028^0.059^2^0.005^0.081^~2, 3~^~09/01/2007~ -~18943~^~501~^0.080^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~502~^0.205^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~503~^0.225^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~504~^0.382^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~505~^0.245^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~506~^0.073^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~507~^0.108^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~508~^0.277^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~509~^0.164^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~510~^0.316^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~511~^0.290^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~512~^0.112^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~513~^0.238^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~514~^0.454^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~515~^1.318^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~516~^0.243^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~517~^0.419^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~518~^0.260^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~ -~18943~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~18943~^~606~^4.725^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~18943~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~612~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.029^2^0.010^0.036^~2, 3~^~09/01/2007~ -~18943~^~613~^2.587^3^0.107^~1~^~A~^^^1^2.373^2.703^2^2.127^3.046^~2, 3~^~09/01/2007~ -~18943~^~614~^1.912^3^0.081^~1~^~A~^^^1^1.777^2.059^2^1.562^2.262^~2, 3~^~09/01/2007~ -~18943~^~615~^0.088^3^0.004^~1~^~A~^^^1^0.081^0.096^2^0.069^0.107^~2, 3~^~09/01/2007~ -~18943~^~617~^14.433^3^0.307^~1~^~AS~^^^1^14.100^15.046^2^13.113^15.754^~2, 3~^~09/01/2007~ -~18943~^~618~^1.972^3^0.395^~1~^~AS~^^^1^1.365^2.714^2^0.271^3.673^~2, 3~^~09/01/2007~ -~18943~^~619~^0.063^3^0.012^~1~^~AS~^^^1^0.038^0.076^2^0.009^0.117^~2, 3~^~09/01/2007~ -~18943~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~624~^0.086^3^0.004^~1~^~A~^^^1^0.079^0.094^2^0.068^0.105^~2, 3~^~09/01/2007~ -~18943~^~626~^0.019^3^0.002^~1~^~AS~^^^1^0.015^0.023^2^0.009^0.029^~2, 3~^~09/01/2007~ -~18943~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~628~^0.029^3^0.004^~1~^~A~^^^1^0.026^0.037^2^0.014^0.045^~2, 3~^~09/01/2007~ -~18943~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2007~ -~18943~^~645~^14.482^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~18943~^~646~^2.035^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~ -~18943~^~652~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~09/01/2007~ -~18943~^~653~^0.028^3^0.001^~1~^~A~^^^1^0.028^0.029^2^0.026^0.031^~2, 3~^~09/01/2007~ -~18943~^~673~^0.019^3^0.002^~1~^~A~^^^1^0.015^0.023^2^0.009^0.029^~2, 3~^~05/01/2014~ -~18944~^~312~^0.148^3^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~315~^0.233^3^0.041^~1~^~A~^^^1^0.160^0.300^2^0.059^0.408^~2, 3~^~11/01/2007~ -~18944~^~404~^0.193^3^0.052^~1~^~A~^^^1^0.103^0.283^2^-0.030^0.416^~2, 3~^~11/01/2007~ -~18944~^~405~^0.067^3^0.024^~1~^~A~^^^1^0.028^0.110^2^-0.035^0.170^~2, 3~^~11/01/2007~ -~18944~^~406~^1.094^3^0.377^~1~^~A~^^^1^0.401^1.700^2^-0.531^2.718^~2, 3~^~11/01/2007~ -~18944~^~410~^0.096^3^0.005^~1~^~A~^^^1^0.091^0.106^2^0.075^0.117^~2, 3~^~11/01/2007~ -~18944~^~415~^0.039^3^0.003^~1~^~A~^^^1^0.033^0.042^2^0.026^0.051^~2, 3~^~11/01/2007~ -~18944~^~501~^0.027^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~502~^0.063^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~503~^0.081^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~504~^0.158^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~505~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~506~^0.051^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~507~^0.057^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~508~^0.104^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~509~^0.052^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~510~^0.101^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~511~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~512~^0.054^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~513~^0.074^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~514~^0.122^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~515~^0.743^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~516~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~517~^0.251^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~518~^0.104^0^^~1~^~A~^^^^^^^^^^~11/01/2007~ -~18944~^~606~^2.313^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~ -~18944~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~613~^1.227^3^0.034^~1~^~A~^^^1^1.160^1.270^2^1.081^1.372^~2, 3~^~11/01/2007~ -~18944~^~614~^1.037^3^0.064^~1~^~A~^^^1^0.920^1.140^2^0.762^1.311^~2, 3~^~11/01/2007~ -~18944~^~615~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~11/01/2007~ -~18944~^~617~^5.797^3^0.338^~1~^~A~^^^1^5.120^6.150^2^4.340^7.253^~2, 3~^~11/01/2007~ -~18944~^~618~^2.000^3^0.264^~1~^~A~^^^1^1.480^2.340^2^0.864^3.136^~2, 3~^~11/01/2007~ -~18944~^~619~^0.117^3^0.045^~1~^~A~^^^1^0.030^0.180^2^-0.076^0.310^~2, 3~^~11/01/2007~ -~18944~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~624~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~11/01/2007~ -~18944~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~645~^5.797^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~646~^2.117^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~ -~18944~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18944~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2007~ -~18945~^~312~^0.079^3^0.003^~1~^~A~^^^1^0.075^0.084^2^0.068^0.090^~2, 3~^~04/01/2008~ -~18945~^~315~^0.476^3^0.031^~1~^~A~^^^1^0.432^0.537^2^0.340^0.611^~2, 3~^~04/01/2008~ -~18945~^~404~^0.227^3^0.063^~1~^~A~^^^1^0.140^0.350^2^-0.046^0.499^~2, 3~^~04/01/2008~ -~18945~^~405~^0.143^3^0.034^~1~^~A~^^^1^0.100^0.210^2^-0.002^0.289^~2, 3~^~04/01/2008~ -~18945~^~406~^2.500^3^0.436^~1~^~A~^^^1^1.700^3.200^2^0.625^4.375^~2, 3~^~04/01/2008~ -~18945~^~410~^0.360^3^0.045^~1~^~A~^^^1^0.270^0.410^2^0.166^0.554^~2, 3~^~04/01/2008~ -~18945~^~415~^0.047^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.032^0.061^~2, 3~^~04/01/2008~ -~18945~^~501~^0.053^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~502~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~503~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~504~^0.383^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~505~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~506~^0.083^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~507~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~508~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~509~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~510~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~511~^0.196^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~512~^0.096^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~513~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~514~^0.263^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~515~^1.839^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~516~^0.206^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~517~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~518~^0.272^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18945~^~521~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~606~^8.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~612~^0.162^3^0.095^~1~^~A~^^^1^0.000^0.329^2^-0.247^0.570^~1, 2, 3~^~04/01/2008~ -~18945~^~613~^4.515^3^0.529^~1~^~A~^^^1^3.855^5.562^2^2.237^6.793^~2, 3~^~04/01/2008~ -~18945~^~614~^3.253^3^0.244^~1~^~A~^^^1^2.851^3.695^2^2.201^4.305^~2, 3~^~04/01/2008~ -~18945~^~615~^0.087^3^0.019^~1~^~A~^^^1^0.059^0.124^2^0.003^0.170^~2, 3~^~04/01/2008~ -~18945~^~617~^14.119^3^3.098^~1~^~A~^^^1^9.364^19.938^2^0.787^27.450^~2, 3~^~04/01/2008~ -~18945~^~618~^3.349^3^0.322^~1~^~A~^^^1^2.827^3.936^2^1.964^4.733^~2, 3~^~04/01/2008~ -~18945~^~619~^0.115^3^0.008^~1~^~AS~^^^1^0.100^0.129^2^0.079^0.151^~2, 3~^~04/01/2008~ -~18945~^~620~^0.011^3^0.011^~1~^~A~^^^1^0.000^0.032^2^-0.035^0.057^~1, 2, 3~^~04/01/2008~ -~18945~^~624~^0.062^3^0.036^~1~^~A~^^^1^0.000^0.126^2^-0.095^0.219^~1, 2, 3~^~04/01/2008~ -~18945~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~626~^0.249^3^0.150^~1~^~A~^^^1^0.000^0.518^2^-0.396^0.894^~1, 2, 3~^~04/01/2008~ -~18945~^~628~^0.121^3^0.034^~1~^~A~^^^1^0.072^0.186^2^-0.024^0.267^~2, 3~^~04/01/2008~ -~18945~^~645~^14.489^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~646~^3.530^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18945~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~653~^0.051^3^0.028^~1~^~A~^^^1^0.000^0.095^2^-0.068^0.169^~1, 2, 3~^~04/01/2008~ -~18945~^~672~^0.056^3^0.035^~1~^~A~^^^1^0.000^0.120^2^-0.093^0.206^~1, 2, 3~^~04/01/2008~ -~18945~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18945~^~851~^0.115^3^0.008^~1~^~A~^^^1^0.100^0.129^2^0.079^0.151^~2, 3~^~04/01/2008~ -~18946~^~312~^0.051^2^^~1~^~A~^^^1^0.042^0.060^1^^^^~04/01/2008~ -~18946~^~315~^0.209^2^^~1~^~A~^^^1^0.147^0.272^1^^^^~04/01/2008~ -~18946~^~404~^0.140^2^^~1~^~A~^^^1^0.090^0.190^1^^^^~04/01/2008~ -~18946~^~405~^0.037^2^^~1~^~A~^^^1^0.015^0.060^1^^^~1~^~04/01/2008~ -~18946~^~406~^1.285^2^^~1~^~A~^^^1^0.370^2.200^1^^^^~04/01/2008~ -~18946~^~410~^0.295^2^^~1~^~A~^^^1^0.280^0.310^1^^^^~04/01/2008~ -~18946~^~415~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~04/01/2008~ -~18946~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~502~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~503~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~504~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~505~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~506~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~507~^0.066^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~508~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~509~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~510~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~511~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~512~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~513~^0.099^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~514~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~515~^1.094^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~516~^0.126^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~517~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~518~^0.166^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18946~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~606~^11.087^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~612~^0.391^2^^~1~^~A~^^^1^0.379^0.402^1^^^^~04/01/2008~ -~18946~^~613~^6.563^2^^~1~^~A~^^^1^6.420^6.707^1^^^^~04/01/2008~ -~18946~^~614~^3.951^2^^~1~^~A~^^^1^3.895^4.008^1^^^^~04/01/2008~ -~18946~^~615~^0.073^2^^~1~^~A~^^^1^0.073^0.073^^^^^~04/01/2008~ -~18946~^~617~^11.002^2^^~1~^~A~^^^1^10.671^11.334^1^^^^~04/01/2008~ -~18946~^~618~^3.423^2^^~1~^~A~^^^1^3.197^3.648^1^^^^~04/01/2008~ -~18946~^~619~^0.148^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18946~^~620~^0.047^2^^~1~^~A~^^^1^0.045^0.049^1^^^^~04/01/2008~ -~18946~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~626~^0.604^2^^~1~^~A~^^^1^0.591^0.617^1^^^^~04/01/2008~ -~18946~^~628~^0.209^2^^~1~^~A~^^^1^0.201^0.216^1^^^^~04/01/2008~ -~18946~^~645~^11.815^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~646~^3.756^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18946~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~653~^0.109^2^^~1~^~A~^^^1^0.103^0.115^1^^^^~04/01/2008~ -~18946~^~672~^0.139^2^^~1~^~A~^^^1^0.131^0.147^1^^^^~04/01/2008~ -~18946~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18946~^~851~^0.148^2^^~1~^~A~^^^1^0.144^0.152^1^^^^~04/01/2008~ -~18947~^~312~^0.089^3^0.003^~1~^~A~^^^1^0.082^0.092^2^0.074^0.103^~2, 3~^~04/01/2008~ -~18947~^~315~^0.533^3^0.039^~1~^~A~^^^1^0.472^0.606^2^0.364^0.701^~2, 3~^~04/01/2008~ -~18947~^~404~^0.263^3^0.048^~1~^~A~^^^1^0.210^0.360^2^0.055^0.472^~2, 3~^~04/01/2008~ -~18947~^~405~^0.130^3^0.040^~1~^~A~^^^1^0.080^0.210^2^-0.044^0.304^~2, 3~^~04/01/2008~ -~18947~^~406~^2.867^3^0.426^~1~^~A~^^^1^2.300^3.700^2^1.035^4.698^~2, 3~^~04/01/2008~ -~18947~^~410~^0.403^3^0.012^~1~^~A~^^^1^0.380^0.420^2^0.352^0.455^~2, 3~^~04/01/2008~ -~18947~^~415~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~04/01/2008~ -~18947~^~501~^0.057^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~502~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~503~^0.223^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~504~^0.422^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~505~^0.112^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~506~^0.093^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~507~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~508~^0.276^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~509~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~510~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~511~^0.226^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~512~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~513~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~514~^0.299^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~515~^2.062^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~516~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~517~^0.799^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~518~^0.305^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18947~^~521~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~606~^8.862^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~612~^0.180^3^0.108^~1~^~A~^^^1^0.000^0.372^2^-0.283^0.643^~1, 2, 3~^~04/01/2008~ -~18947~^~613~^4.970^3^0.640^~1~^~A~^^^1^4.203^6.241^2^2.216^7.724^~2, 3~^~04/01/2008~ -~18947~^~614~^3.480^3^0.205^~1~^~A~^^^1^3.086^3.776^2^2.597^4.363^~2, 3~^~04/01/2008~ -~18947~^~615~^0.094^3^0.020^~1~^~A~^^^1^0.065^0.133^2^0.007^0.181^~2, 3~^~04/01/2008~ -~18947~^~617~^16.049^3^3.664^~1~^~A~^^^1^10.480^22.957^2^0.285^31.812^~2, 3~^~04/01/2008~ -~18947~^~618~^3.714^3^0.372^~1~^~A~^^^1^3.068^4.357^2^2.113^5.315^~2, 3~^~04/01/2008~ -~18947~^~619~^0.130^3^0.010^~1~^~AS~^^^1^0.115^0.149^2^0.087^0.173^~2, 3~^~04/01/2008~ -~18947~^~620~^0.012^3^0.012^~1~^~A~^^^1^0.000^0.035^2^-0.039^0.062^~1, 2, 3~^~04/01/2008~ -~18947~^~624~^0.068^3^0.040^~1~^~A~^^^1^0.000^0.139^2^-0.104^0.241^~1, 2, 3~^~04/01/2008~ -~18947~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~626~^0.276^3^0.169^~1~^~A~^^^1^0.000^0.584^2^-0.453^1.004^~1, 2, 3~^~04/01/2008~ -~18947~^~628~^0.134^3^0.038^~1~^~A~^^^1^0.080^0.206^2^-0.027^0.295^~2, 3~^~04/01/2008~ -~18947~^~645~^16.459^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~646~^3.918^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18947~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~653~^0.070^3^0.019^~1~^~A~^^^1^0.041^0.106^2^-0.013^0.152^~2, 3~^~04/01/2008~ -~18947~^~672~^0.062^3^0.039^~1~^~A~^^^1^0.000^0.134^2^-0.105^0.230^~1, 2, 3~^~04/01/2008~ -~18947~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18947~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2008~ -~18947~^~851~^0.130^3^0.010^~1~^~A~^^^1^0.115^0.149^2^0.087^0.173^~2, 3~^~04/01/2008~ -~18948~^~312~^0.045^2^^~1~^~A~^^^1^0.034^0.056^1^^^^~04/01/2008~ -~18948~^~315~^0.181^2^^~1~^~A~^^^1^0.129^0.233^1^^^^~04/01/2008~ -~18948~^~404~^0.067^2^^~1~^~A~^^^1^0.015^0.120^1^^^~1~^~04/01/2008~ -~18948~^~405~^0.052^2^^~1~^~A~^^^1^0.015^0.090^1^^^~1~^~04/01/2008~ -~18948~^~406~^1.145^2^^~1~^~A~^^^1^0.290^2.000^1^^^^~04/01/2008~ -~18948~^~410~^0.310^2^^~1~^~A~^^^1^0.300^0.320^1^^^^~04/01/2008~ -~18948~^~415~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~04/01/2008~ -~18948~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~502~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~503~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~504~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~505~^0.077^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~506~^0.039^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~507~^0.041^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~508~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~509~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~510~^0.125^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~511~^0.089^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~512~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~513~^0.085^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~514~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~515~^0.921^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~516~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~517~^0.378^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~518~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2008~ -~18948~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~606~^9.596^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~612~^0.342^2^^~1~^~A~^^^1^0.328^0.357^1^^^^~04/01/2008~ -~18948~^~613~^5.683^2^^~1~^~A~^^^1^5.518^5.847^1^^^^~04/01/2008~ -~18948~^~614~^3.412^2^^~1~^~A~^^^1^3.357^3.467^1^^^^~04/01/2008~ -~18948~^~615~^0.063^2^^~1~^~A~^^^1^0.063^0.063^^^^^~04/01/2008~ -~18948~^~617~^9.493^2^^~1~^~A~^^^1^9.175^9.811^1^^^^~04/01/2008~ -~18948~^~618~^2.998^2^^~1~^~A~^^^1^2.795^3.201^1^^^^~04/01/2008~ -~18948~^~619~^0.131^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~ -~18948~^~620~^0.041^2^^~1~^~A~^^^1^0.040^0.043^1^^^^~04/01/2008~ -~18948~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~626~^0.532^2^^~1~^~A~^^^1^0.518^0.546^1^^^^~04/01/2008~ -~18948~^~628~^0.181^2^^~1~^~A~^^^1^0.175^0.187^1^^^^~04/01/2008~ -~18948~^~645~^10.206^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~646~^3.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~18948~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~653~^0.096^2^^~1~^~A~^^^1^0.090^0.102^1^^^^~04/01/2008~ -~18948~^~672~^0.122^2^^~1~^~A~^^^1^0.115^0.128^1^^^^~04/01/2008~ -~18948~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2008~ -~18948~^~851~^0.131^2^^~1~^~A~^^^1^0.131^0.131^^^^^~04/01/2008~ -~18949~^~312~^0.447^4^0.022^~1~^~A~^^^1^0.407^0.509^3^0.378^0.517^~2, 3~^~10/01/2008~ -~18949~^~315~^2.285^4^0.033^~1~^~A~^^^1^2.230^2.380^3^2.179^2.391^~2, 3~^~10/01/2008~ -~18949~^~404~^0.185^4^0.015^~1~^~A~^^^1^0.160^0.220^3^0.137^0.233^~2, 3~^~10/01/2008~ -~18949~^~405~^0.022^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.003^0.041^~1, 2, 3~^~10/01/2008~ -~18949~^~406~^5.225^4^0.169^~1~^~A~^^^1^4.970^5.690^3^4.687^5.763^~2, 3~^~10/01/2008~ -~18949~^~410~^0.902^4^0.033^~1~^~A~^^^1^0.860^1.000^3^0.798^1.007^~2, 3~^~10/01/2008~ -~18949~^~415~^0.197^4^0.019^~1~^~A~^^^1^0.160^0.230^3^0.137^0.258^~2, 3~^~10/01/2008~ -~18949~^~501~^0.161^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~502~^0.337^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~503~^0.392^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~504~^0.779^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~505~^0.307^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~506~^0.186^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~507~^0.236^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~508~^0.523^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~509~^0.196^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~510~^0.508^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~511~^0.533^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~512~^0.266^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~513~^0.447^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~514~^0.608^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~515~^3.414^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~516~^0.478^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~517~^1.141^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~518~^0.518^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18949~^~605~^0.096^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~606~^1.067^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~610~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.009^0.017^~1, 2, 3~^~10/01/2008~ -~18949~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~10/01/2008~ -~18949~^~612~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~10/01/2008~ -~18949~^~613~^0.733^4^0.035^~1~^~A~^^^1^0.658^0.827^3^0.621^0.846^~2, 3~^~10/01/2008~ -~18949~^~614~^0.268^4^0.014^~1~^~A~^^^1^0.236^0.305^3^0.222^0.314^~2, 3~^~10/01/2008~ -~18949~^~615~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.017^0.022^~2, 3~^~10/01/2008~ -~18949~^~617~^1.572^4^0.072^~1~^~AS~^^^1^1.413^1.754^3^1.342^1.802^~2, 3~^~10/01/2008~ -~18949~^~618~^3.164^4^0.149^~1~^~AS~^^^1^2.835^3.543^3^2.691^3.637^~2, 3~^~10/01/2008~ -~18949~^~619~^0.398^4^0.021^~1~^~AS~^^^1^0.350^0.450^3^0.331^0.465^~2, 3~^~10/01/2008~ -~18949~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~624~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.015^0.022^~2, 3~^~10/01/2008~ -~18949~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~10/01/2008~ -~18949~^~626~^0.007^4^0.000^~1~^~AS~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~10/01/2008~ -~18949~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~628~^0.024^4^0.001^~1~^~A~^^^1^0.022^0.026^3^0.021^0.026^~2, 3~^~10/01/2008~ -~18949~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~630~^0.002^4^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~10/01/2008~ -~18949~^~631~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~10/01/2008~ -~18949~^~645~^1.609^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~646~^3.568^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~10/01/2008~ -~18949~^~653~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~10/01/2008~ -~18949~^~654~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~10/01/2008~ -~18949~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~663~^0.082^4^0.004^~1~^~A~^^^1^0.075^0.089^3^0.071^0.093^~2, 3~^~10/01/2008~ -~18949~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~665~^0.014^4^0.001^~1~^~A~^^^1^0.011^0.016^3^0.011^0.018^~2, 3~^~10/01/2008~ -~18949~^~670~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~10/01/2008~ -~18949~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~10/01/2008~ -~18949~^~673~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~10/01/2008~ -~18949~^~674~^1.490^4^0.069^~1~^~A~^^^1^1.338^1.665^3^1.271^1.710^~2, 3~^~10/01/2008~ -~18949~^~675~^3.146^4^0.149^~1~^~A~^^^1^2.815^3.524^3^2.673^3.619^~2, 3~^~10/01/2008~ -~18949~^~676~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~10/01/2008~ -~18949~^~685~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~10/01/2008~ -~18949~^~687~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~10/01/2008~ -~18949~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~18949~^~693~^0.082^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18949~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~851~^0.392^4^0.021^~1~^~A~^^^1^0.344^0.443^3^0.326^0.458^~2, 3~^~10/01/2008~ -~18949~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18949~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~312~^0.223^4^0.017^~1~^~A~^^^1^0.206^0.273^3^0.170^0.276^~2, 3~^~10/01/2008~ -~18950~^~315~^2.127^4^0.037^~1~^~A~^^^1^2.040^2.210^3^2.010^2.245^~2, 3~^~10/01/2008~ -~18950~^~404~^0.625^4^0.024^~1~^~A~^^^1^0.570^0.670^3^0.549^0.701^~2, 3~^~10/01/2008~ -~18950~^~405~^0.270^4^0.042^~1~^~A~^^^1^0.200^0.390^3^0.137^0.403^~2, 3~^~10/01/2008~ -~18950~^~406~^5.123^4^0.090^~1~^~A~^^^1^4.860^5.250^3^4.836^5.409^~2, 3~^~10/01/2008~ -~18950~^~410~^0.510^4^0.013^~1~^~A~^^^1^0.480^0.540^3^0.469^0.551^~2, 3~^~10/01/2008~ -~18950~^~415~^0.150^4^0.000^~1~^~A~^^^1^0.150^0.150^^^^~2, 3~^~10/01/2008~ -~18950~^~501~^0.112^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~502~^0.280^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~503~^0.330^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~504~^0.620^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~505~^0.188^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~506~^0.142^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~507~^0.193^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~508~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~509~^0.168^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~510~^0.417^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~511~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~512~^0.203^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~513~^0.366^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~514~^0.508^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~515~^2.726^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~516~^0.386^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~517~^0.900^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~518~^0.407^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~18950~^~605~^0.201^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~606~^2.112^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~612~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~10/01/2008~ -~18950~^~613~^1.383^4^0.026^~1~^~A~^^^1^1.314^1.426^3^1.302^1.465^~2, 3~^~10/01/2008~ -~18950~^~614~^0.607^4^0.013^~1~^~A~^^^1^0.569^0.632^3^0.565^0.650^~2, 3~^~10/01/2008~ -~18950~^~615~^0.041^4^0.002^~1~^~A~^^^1^0.035^0.045^3^0.033^0.048^~2, 3~^~10/01/2008~ -~18950~^~617~^3.252^4^0.070^~1~^~AS~^^^1^3.057^3.355^3^3.030^3.475^~2, 3~^~10/01/2008~ -~18950~^~618~^6.180^4^0.120^~1~^~AS~^^^1^5.863^6.402^3^5.799^6.562^~2, 3~^~10/01/2008~ -~18950~^~619~^0.867^4^0.017^~1~^~AS~^^^1^0.829^0.898^3^0.814^0.919^~2, 3~^~10/01/2008~ -~18950~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~624~^0.040^4^0.002^~1~^~A~^^^1^0.035^0.043^3^0.034^0.045^~2, 3~^~10/01/2008~ -~18950~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~626~^0.011^4^0.000^~1~^~AS~^^^1^0.010^0.012^3^0.010^0.012^~2, 3~^~10/01/2008~ -~18950~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~10/01/2008~ -~18950~^~628~^0.024^4^0.008^~1~^~A~^^^1^0.010^0.040^3^-0.002^0.049^~2, 3~^~10/01/2008~ -~18950~^~629~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~10/01/2008~ -~18950~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~10/01/2008~ -~18950~^~631~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.005^~1, 2, 3~^~10/01/2008~ -~18950~^~645~^3.295^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~646~^7.055^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~652~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~10/01/2008~ -~18950~^~653~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.014^~2, 3~^~10/01/2008~ -~18950~^~654~^0.016^4^0.002^~1~^~A~^^^1^0.011^0.020^3^0.009^0.023^~2, 3~^~10/01/2008~ -~18950~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~663~^0.173^4^0.007^~1~^~A~^^^1^0.156^0.192^3^0.150^0.197^~2, 3~^~10/01/2008~ -~18950~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~10/01/2008~ -~18950~^~665~^0.028^4^0.002^~1~^~A~^^^1^0.024^0.032^3^0.022^0.033^~2, 3~^~10/01/2008~ -~18950~^~670~^0.006^4^0.001^~1~^~A~^^^1^0.003^0.009^3^0.003^0.010^~2, 3~^~10/01/2008~ -~18950~^~671~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~10/01/2008~ -~18950~^~672~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~10/01/2008~ -~18950~^~673~^0.011^4^0.000^~1~^~A~^^^1^0.010^0.012^3^0.010^0.012^~2, 3~^~10/01/2008~ -~18950~^~674~^3.079^4^0.067^~1~^~A~^^^1^2.901^3.184^3^2.867^3.291^~2, 3~^~10/01/2008~ -~18950~^~675~^6.146^4^0.118^~1~^~A~^^^1^5.836^6.365^3^5.771^6.522^~2, 3~^~10/01/2008~ -~18950~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~10/01/2008~ -~18950~^~685~^0.013^4^0.001^~1~^~A~^^^1^0.010^0.015^3^0.009^0.017^~2, 3~^~10/01/2008~ -~18950~^~687~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~10/01/2008~ -~18950~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~18950~^~693~^0.173^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~18950~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~851~^0.853^4^0.017^~1~^~A~^^^1^0.816^0.888^3^0.799^0.908^~2, 3~^~10/01/2008~ -~18950~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18950~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18951~^~312~^0.221^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~315~^0.393^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~404~^0.430^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~405~^0.490^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~406~^5.700^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~410~^0.218^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~415~^0.570^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~501~^0.061^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~502~^0.150^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~503~^0.179^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~504~^0.331^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~505~^0.158^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~506~^0.085^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~507~^0.094^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~508~^0.240^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~509~^0.156^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~510~^0.224^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~511~^0.220^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~512~^0.103^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~513~^0.180^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~514~^0.285^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~515~^1.336^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~516~^0.178^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~517~^0.450^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~518~^0.248^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~605~^0.200^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~ -~18951~^~606~^3.567^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18951~^~607~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~608~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~609~^0.096^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~610~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~611~^0.833^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~612~^0.268^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~613~^1.685^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~614~^0.563^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~615~^0.024^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~617~^2.535^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~618~^2.916^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~619~^0.347^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~620~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~626~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~628~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~645~^2.564^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18951~^~646~^3.272^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~18951~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18951~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18951~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~18952~^~312~^0.148^3^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~315~^0.363^3^0.013^~1~^~A~^^^1^0.350^0.390^2^0.306^0.421^~2, 3~^~01/01/2009~ -~18952~^~404~^0.353^3^0.038^~1~^~A~^^^1^0.279^0.401^2^0.192^0.514^~2, 3~^~01/01/2009~ -~18952~^~405~^0.094^3^0.011^~1~^~A~^^^1^0.074^0.110^2^0.048^0.140^~2, 3~^~01/01/2009~ -~18952~^~406~^1.553^3^0.119^~1~^~A~^^^1^1.360^1.770^2^1.042^2.065^~2, 3~^~01/01/2009~ -~18952~^~410~^0.191^3^0.006^~1~^~A~^^^1^0.179^0.201^2^0.163^0.219^~2, 3~^~01/01/2009~ -~18952~^~415~^0.363^3^0.025^~1~^~A~^^^1^0.314^0.399^2^0.254^0.473^~2, 3~^~01/01/2009~ -~18952~^~605~^0.163^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~606~^7.011^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~609~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.016^2^0.007^0.021^~2, 3~^~01/01/2009~ -~18952~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~611~^0.029^3^0.020^~1~^~A~^^^1^0.000^0.066^2^-0.055^0.113^~1, 2, 3~^~01/01/2009~ -~18952~^~612~^0.132^3^0.066^~1~^~A~^^^1^0.000^0.209^2^-0.154^0.418^~1, 2, 3~^~01/01/2009~ -~18952~^~613~^5.967^3^1.911^~1~^~A~^^^1^2.257^8.620^2^-2.257^14.191^~2, 3~^~01/01/2009~ -~18952~^~614~^0.729^3^0.182^~1~^~A~^^^1^0.368^0.951^2^-0.054^1.511^~2, 3~^~01/01/2009~ -~18952~^~615~^0.088^3^0.005^~1~^~A~^^^1^0.077^0.093^2^0.065^0.111^~2, 3~^~01/01/2009~ -~18952~^~617~^7.086^3^1.259^~1~^~A~^^^1^5.059^9.394^2^1.667^12.504^~2, 3~^~01/01/2009~ -~18952~^~618~^8.025^3^2.170^~1~^~A~^^^1^3.699^10.483^2^-1.311^17.360^~2, 3~^~01/01/2009~ -~18952~^~619~^0.124^3^0.028^~1~^~AS~^^^1^0.083^0.178^2^0.003^0.245^~2, 3~^~01/01/2009~ -~18952~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~624~^0.026^3^0.005^~1~^~A~^^^1^0.019^0.035^2^0.006^0.046^~2, 3~^~01/01/2009~ -~18952~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~626~^0.054^3^0.025^~1~^~A~^^^1^0.020^0.103^2^-0.055^0.162^~2, 3~^~01/01/2009~ -~18952~^~628~^0.046^3^0.001^~1~^~A~^^^1^0.043^0.048^2^0.039^0.052^~2, 3~^~01/01/2009~ -~18952~^~645~^7.217^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~646~^8.285^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~652~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.019^~1, 2, 3~^~01/01/2009~ -~18952~^~653~^0.021^3^0.004^~1~^~A~^^^1^0.014^0.027^2^0.005^0.037^~2, 3~^~01/01/2009~ -~18952~^~663~^0.032^3^0.006^~1~^~A~^^^1^0.022^0.041^2^0.008^0.056^~2, 3~^~01/01/2009~ -~18952~^~669~^0.131^3^0.070^~1~^~A~^^^1^0.051^0.271^2^-0.171^0.433^~2, 3~^~01/01/2009~ -~18952~^~672~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.006^0.017^~1, 2, 3~^~01/01/2009~ -~18952~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~693~^0.032^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~695~^0.131^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18952~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2009~ -~18952~^~851~^0.124^3^0.028^~1~^~A~^^^1^0.083^0.178^2^0.003^0.245^~2, 3~^~01/01/2009~ -~18953~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~315~^0.240^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~406~^1.200^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~410~^0.700^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~415~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~502~^0.210^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~503~^0.300^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~504~^0.650^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~505~^0.500^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~506~^0.280^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~507~^0.060^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~508~^0.370^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~509~^0.230^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~510~^0.430^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~511~^0.250^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~512~^0.150^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~513~^0.360^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~514~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~515~^1.330^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~516~^0.200^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~517~^0.830^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~518~^0.450^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18953~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~605~^2.027^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~606~^4.612^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~607~^0.160^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~608~^0.028^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~609~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~610~^0.060^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~611~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~612~^0.174^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~613~^2.396^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~614~^1.581^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~615~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~617~^6.606^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~618~^3.814^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~619~^0.526^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~620~^0.053^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~621~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~624~^0.042^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~625~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~626~^0.103^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~628~^0.060^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~631~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~645~^6.794^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~646~^4.428^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~653~^0.028^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~662~^0.009^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~663~^1.864^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~665~^0.154^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~670~^0.021^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~672~^0.007^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~673~^0.094^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~674~^4.742^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~675~^3.639^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~685~^0.037^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~687~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18953~^~693~^1.873^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~695~^0.154^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18953~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~851~^0.489^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18953~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18953~^~858~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~315~^0.260^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~406~^4.700^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~410~^0.550^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~502~^0.160^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~503~^0.240^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~504~^0.540^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~505~^0.150^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~506~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~507~^0.060^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~508~^0.350^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~510~^0.330^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~511~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~512~^0.100^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~514~^0.390^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~515~^2.170^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~516~^0.230^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~517~^1.090^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~518~^0.380^0^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~18954~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~605~^0.160^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~606~^3.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~608~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~610~^0.024^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~612~^0.033^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~613~^2.028^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~614~^0.804^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~615~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~617~^4.259^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~618~^8.160^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~619~^1.213^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~620~^0.025^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~621~^0.007^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~624~^0.051^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~626~^0.046^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~628~^0.093^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~629~^0.002^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~645~^4.411^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~646~^9.424^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~654~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~663~^0.082^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~665~^0.078^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~670~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~672~^0.009^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~673~^0.046^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~674~^4.177^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~675~^8.074^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~676~^0.003^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~685~^0.055^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~689~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~ -~18954~^~693~^0.082^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~ -~18954~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~851~^1.158^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2009~ -~18954~^~853~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18954~^~858~^0.004^1^^~1~^~A~^^^^^^^^^^~01/01/2009~ -~18955~^~312~^0.121^3^0.001^~1~^~A~^^^1^0.120^0.122^2^0.118^0.124^~2, 3~^~05/01/2009~ -~18955~^~315~^0.460^3^0.004^~1~^~A~^^^1^0.452^0.465^2^0.442^0.477^~2, 3~^~05/01/2009~ -~18955~^~404~^0.377^3^0.039^~1~^~A~^^^1^0.300^0.430^2^0.208^0.546^~2, 3~^~05/01/2009~ -~18955~^~405~^0.230^3^0.012^~1~^~A~^^^1^0.210^0.250^2^0.180^0.280^~2, 3~^~05/01/2009~ -~18955~^~406~^3.463^3^0.736^~1~^~A~^^^1^2.000^4.340^2^0.295^6.632^~2, 3~^~05/01/2009~ -~18955~^~410~^0.590^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18955~^~415~^0.057^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.042^0.071^~2, 3~^~05/01/2009~ -~18955~^~605~^1.103^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~606~^2.183^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~607~^0.000^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~ -~18955~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~610~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~05/01/2009~ -~18955~^~611~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~05/01/2009~ -~18955~^~612~^0.023^2^^~1~^~A~^^^1^0.014^0.032^1^^^^~05/01/2009~ -~18955~^~613~^1.128^2^^~1~^~A~^^^1^0.935^1.320^1^^^^~05/01/2009~ -~18955~^~614~^0.948^2^^~1~^~A~^^^1^0.536^1.361^1^^^^~05/01/2009~ -~18955~^~615~^0.021^2^^~1~^~A~^^^1^0.013^0.030^1^^^^~05/01/2009~ -~18955~^~617~^3.437^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~618~^1.433^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~619~^0.066^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~620~^0.009^2^^~1~^~A~^^^1^0.005^0.014^1^^^^~05/01/2009~ -~18955~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~624~^0.017^2^^~1~^~A~^^^1^0.009^0.026^1^^^^~05/01/2009~ -~18955~^~625~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~05/01/2009~ -~18955~^~626~^0.035^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~628~^0.025^2^^~1~^~A~^^^1^0.024^0.025^1^^^^~05/01/2009~ -~18955~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~631~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2009~ -~18955~^~645~^3.499^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~646~^1.530^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~652~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~05/01/2009~ -~18955~^~653~^0.012^2^^~1~^~A~^^^1^0.012^0.012^^^^^~05/01/2009~ -~18955~^~654~^0.007^2^^~1~^~A~^^^1^0.004^0.010^1^^^^~05/01/2009~ -~18955~^~662~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^^~05/01/2009~ -~18955~^~663~^0.895^2^^~1~^~A~^^^1^0.341^1.449^1^^^^~05/01/2009~ -~18955~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~665~^0.207^2^^~1~^~A~^^^1^0.085^0.329^1^^^^~05/01/2009~ -~18955~^~670~^0.016^2^^~1~^~A~^^^1^0.008^0.023^1^^^^~05/01/2009~ -~18955~^~671~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~05/01/2009~ -~18955~^~672~^0.009^2^^~1~^~A~^^^1^0.001^0.016^1^^^^~05/01/2009~ -~18955~^~673~^0.034^2^^~1~^~A~^^^1^0.022^0.047^1^^^^~05/01/2009~ -~18955~^~674~^2.542^2^^~1~^~A~^^^1^1.870^3.214^1^^^^~05/01/2009~ -~18955~^~675~^1.210^2^^~1~^~A~^^^1^1.170^1.251^1^^^^~05/01/2009~ -~18955~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~05/01/2009~ -~18955~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~ -~18955~^~693~^0.896^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~695~^0.207^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18955~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2009~ -~18955~^~851~^0.066^2^^~1~^~A~^^^1^0.053^0.079^1^^^^~05/01/2009~ -~18955~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~05/01/2009~ -~18955~^~853~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~05/01/2009~ -~18955~^~858~^0.009^2^^~1~^~A~^^^1^0.003^0.014^1^^^^~05/01/2009~ -~18956~^~312~^0.072^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18956~^~315~^0.207^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~312~^0.056^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~315~^0.193^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~406~^0.620^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18957~^~415~^0.030^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~312~^0.262^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18958~^~315~^0.572^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~312~^0.079^3^0.003^~1~^~A~^^^1^0.074^0.084^2^0.066^0.091^~2, 3~^~05/01/2009~ -~18959~^~315~^0.265^3^0.018^~1~^~A~^^^1^0.233^0.297^2^0.185^0.344^~2, 3~^~05/01/2009~ -~18959~^~404~^0.190^3^0.006^~1~^~A~^^^1^0.180^0.200^2^0.165^0.215^~2, 3~^~05/01/2009~ -~18959~^~405~^0.117^3^0.018^~1~^~A~^^^1^0.090^0.150^2^0.041^0.193^~2, 3~^~05/01/2009~ -~18959~^~406~^2.493^3^0.035^~1~^~A~^^^1^2.430^2.550^2^2.344^2.643^~2, 3~^~05/01/2009~ -~18959~^~410~^0.270^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~18959~^~415~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~05/01/2009~ -~18959~^~605~^2.853^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~606~^5.535^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~610~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.015^0.027^~2, 3~^~05/01/2009~ -~18959~^~611~^0.007^3^0.003^~1~^~A~^^^1^0.002^0.013^2^-0.007^0.021^~2, 3~^~05/01/2009~ -~18959~^~612~^0.064^3^0.033^~1~^~A~^^^1^0.029^0.130^2^-0.077^0.206^~2, 3~^~05/01/2009~ -~18959~^~613~^2.260^3^0.034^~1~^~A~^^^1^2.217^2.327^2^2.115^2.406^~2, 3~^~05/01/2009~ -~18959~^~614~^3.014^3^0.453^~1~^~A~^^^1^2.401^3.899^2^1.064^4.964^~2, 3~^~05/01/2009~ -~18959~^~615~^0.057^3^0.002^~1~^~A~^^^1^0.053^0.060^2^0.048^0.065^~2, 3~^~05/01/2009~ -~18959~^~617~^8.434^3^1.173^~1~^~AS~^^^1^6.259^10.284^2^3.386^13.482^~2, 3~^~05/01/2009~ -~18959~^~618~^2.661^3^0.319^~1~^~AS~^^^1^2.036^3.083^2^1.289^4.033^~2, 3~^~05/01/2009~ -~18959~^~619~^0.163^3^0.072^~1~^~AS~^^^1^0.071^0.305^2^-0.146^0.473^~2, 3~^~05/01/2009~ -~18959~^~620~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~05/01/2009~ -~18959~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~05/01/2009~ -~18959~^~624~^0.049^3^0.004^~1~^~A~^^^1^0.042^0.055^2^0.033^0.066^~2, 3~^~05/01/2009~ -~18959~^~625~^0.010^3^0.008^~1~^~A~^^^1^0.002^0.025^2^-0.022^0.042^~2, 3~^~05/01/2009~ -~18959~^~626~^0.057^3^0.037^~1~^~AS~^^^1^0.016^0.130^2^-0.100^0.214^~2, 3~^~05/01/2009~ -~18959~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~628~^0.042^3^0.002^~1~^~A~^^^1^0.039^0.046^2^0.033^0.051^~2, 3~^~05/01/2009~ -~18959~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~18959~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~645~^8.543^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~646~^2.835^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~652~^0.010^3^0.005^~1~^~A~^^^1^0.005^0.021^2^-0.013^0.033^~2, 3~^~05/01/2009~ -~18959~^~653~^0.035^3^0.013^~1~^~A~^^^1^0.021^0.061^2^-0.022^0.091^~2, 3~^~05/01/2009~ -~18959~^~654~^0.018^3^0.002^~1~^~A~^^^1^0.014^0.021^2^0.009^0.027^~2, 3~^~05/01/2009~ -~18959~^~662~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~05/01/2009~ -~18959~^~663~^2.352^3^0.468^~1~^~A~^^^1^1.431^2.955^2^0.339^4.364^~2, 3~^~05/01/2009~ -~18959~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~665~^0.498^3^0.095^~1~^~A~^^^1^0.309^0.600^2^0.091^0.905^~2, 3~^~05/01/2009~ -~18959~^~670~^0.021^3^0.006^~1~^~A~^^^1^0.011^0.030^2^-0.003^0.045^~2, 3~^~05/01/2009~ -~18959~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~672~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~2, 3~^~05/01/2009~ -~18959~^~673~^0.053^3^0.033^~1~^~A~^^^1^0.016^0.119^2^-0.088^0.195^~2, 3~^~05/01/2009~ -~18959~^~674~^6.082^3^0.722^~1~^~A~^^^1^4.828^7.329^2^2.976^9.189^~2, 3~^~05/01/2009~ -~18959~^~675~^2.142^3^0.384^~1~^~A~^^^1^1.428^2.744^2^0.490^3.794^~2, 3~^~05/01/2009~ -~18959~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~18959~^~693~^2.355^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~695~^0.498^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~18959~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~851~^0.163^3^0.072^~1~^~A~^^^1^0.071^0.305^2^-0.146^0.473^~2, 3~^~05/01/2009~ -~18959~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~18959~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~05/01/2009~ -~18960~^~312~^0.155^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~315~^0.625^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~605~^0.063^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~606~^6.323^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~607~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~609~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~611~^0.038^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~612~^0.132^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~613~^5.490^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~614~^0.563^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~615~^0.045^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~617~^4.639^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~618~^1.492^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~620~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~626~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~628~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~645~^4.697^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~646~^1.536^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~652~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~653~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~654~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~663~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~665~^0.053^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~670~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~671~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~672~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~673~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~674~^4.629^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~675~^1.435^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~676~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18960~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18960~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~851~^0.038^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~18960~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18960~^~858~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~18961~^~312~^0.111^6^^~1~^~A~^^^1^0.103^0.120^^^^~2~^~06/01/2010~ -~18961~^~315~^0.778^6^^~1~^~A~^^^1^0.738^0.812^^^^~2~^~06/01/2010~ -~18961~^~404~^0.298^4^^~1~^~A~^^^1^0.090^0.370^^^^~2~^~06/01/2010~ -~18961~^~405~^0.240^4^^~1~^~A~^^^1^0.210^0.260^^^^~2~^~06/01/2010~ -~18961~^~406~^5.080^4^^~1~^~A~^^^1^4.550^5.460^^^^~2~^~06/01/2010~ -~18961~^~410~^0.462^4^^~1~^~A~^^^1^0.370^0.520^^^^~2~^~06/01/2010~ -~18961~^~415~^0.065^4^^~1~^~A~^^^1^0.052^0.096^^^^~2~^~06/01/2010~ -~18961~^~605~^3.969^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~606~^5.362^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~607~^0.006^6^^~1~^~A~^^^1^0.003^0.008^^^^~2~^~06/01/2010~ -~18961~^~608~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~609~^0.014^6^^~1~^~A~^^^1^0.006^0.037^^^^~2~^~06/01/2010~ -~18961~^~610~^0.012^6^^~1~^~A~^^^1^0.007^0.024^^^^~2~^~06/01/2010~ -~18961~^~611~^0.032^6^^~1~^~A~^^^1^0.031^0.035^^^^~2~^~06/01/2010~ -~18961~^~612~^0.082^6^^~1~^~A~^^^1^0.080^0.086^^^^~2~^~06/01/2010~ -~18961~^~613~^4.134^6^^~1~^~A~^^^1^3.939^4.250^^^^~2~^~06/01/2010~ -~18961~^~614~^0.929^6^^~1~^~A~^^^1^0.851^0.976^^^^~2~^~06/01/2010~ -~18961~^~615~^0.056^6^^~1~^~A~^^^1^0.000^0.072^^^^~1, 2~^~06/01/2010~ -~18961~^~617~^10.556^6^^~1~^~AS~^^^1^9.755^11.444^^^^~2~^~06/01/2010~ -~18961~^~618~^2.402^6^^~1~^~AS~^^^1^2.234^2.558^^^^~2~^~06/01/2010~ -~18961~^~619~^0.045^6^^~1~^~AS~^^^1^0.043^0.047^^^^~2~^~06/01/2010~ -~18961~^~620~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~06/01/2010~ -~18961~^~621~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~624~^0.049^6^^~1~^~A~^^^1^0.041^0.056^^^^~2~^~06/01/2010~ -~18961~^~625~^0.002^6^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2~^~06/01/2010~ -~18961~^~626~^0.020^6^^~1~^~AS~^^^1^0.019^0.021^^^^~2~^~06/01/2010~ -~18961~^~627~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~628~^0.036^6^^~1~^~A~^^^1^0.034^0.038^^^^~2~^~06/01/2010~ -~18961~^~629~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~630~^0.002^6^^~1~^~AS~^^^1^0.001^0.002^^^^~2~^~06/01/2010~ -~18961~^~631~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~645~^10.625^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~646~^2.450^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~652~^0.006^6^^~1~^~A~^^^1^0.006^0.007^^^^~2~^~06/01/2010~ -~18961~^~653~^0.020^6^^~1~^~A~^^^1^0.018^0.021^^^^~2~^~06/01/2010~ -~18961~^~654~^0.021^6^^~1~^~A~^^^1^0.018^0.025^^^^~2~^~06/01/2010~ -~18961~^~662~^0.001^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~06/01/2010~ -~18961~^~663~^3.210^6^^~1~^~A~^^^1^2.875^3.608^^^^~2~^~06/01/2010~ -~18961~^~664~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~665~^0.758^6^^~1~^~A~^^^1^0.679^0.853^^^^~2~^~06/01/2010~ -~18961~^~670~^0.102^6^^~1~^~A~^^^1^0.082^0.121^^^^~2~^~06/01/2010~ -~18961~^~671~^0.003^6^^~1~^~A~^^^1^0.002^0.003^^^^~1, 2~^~06/01/2010~ -~18961~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.001^^^^~1, 2~^~06/01/2010~ -~18961~^~673~^0.019^6^^~1~^~A~^^^1^0.018^0.020^^^^~2~^~06/01/2010~ -~18961~^~674~^7.346^6^^~1~^~A~^^^1^6.818^7.864^^^^~2~^~06/01/2010~ -~18961~^~675~^1.542^6^^~1~^~A~^^^1^1.456^1.602^^^^~2~^~06/01/2010~ -~18961~^~676~^0.002^6^^~1~^~A~^^^1^0.001^0.002^^^^~1, 2~^~06/01/2010~ -~18961~^~685~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~687~^0.007^6^^~1~^~A~^^^1^0.006^0.007^^^^~2~^~06/01/2010~ -~18961~^~689~^0.000^6^^~1~^~AS~^^^1^0.000^0.000^^^^~2~^~06/01/2010~ -~18961~^~693~^3.210^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~695~^0.758^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~18961~^~697~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~851~^0.045^6^^~1~^~A~^^^1^0.043^0.047^^^^~2~^~06/01/2010~ -~18961~^~852~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~853~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~06/01/2010~ -~18961~^~858~^0.003^6^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2~^~06/01/2010~ -~18962~^~312~^0.113^2^^~1~^~A~^^^1^0.111^0.116^^^^^~06/01/2010~ -~18962~^~315~^0.845^2^^~1~^~A~^^^1^0.838^0.852^^^^^~06/01/2010~ -~18962~^~605~^2.905^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~606~^2.634^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~607~^0.002^2^^~1~^~A~^^^1^0.006^0.008^^^^^~06/01/2014~ -~18962~^~608~^0.016^2^^~1~^~A~^^^1^0.051^0.066^^^^^~06/01/2014~ -~18962~^~609~^0.168^2^^~1~^~A~^^^1^0.511^0.687^^^^^~06/01/2014~ -~18962~^~610~^0.133^2^^~1~^~A~^^^1^0.401^0.544^^^^^~06/01/2014~ -~18962~^~611~^1.031^2^^~1~^~A~^^^1^3.108^4.232^^^^^~06/01/2014~ -~18962~^~612~^0.422^2^^~1~^~A~^^^1^1.271^1.732^^^^^~06/01/2014~ -~18962~^~613~^0.581^2^^~1~^~A~^^^1^1.976^2.159^^^^^~06/01/2014~ -~18962~^~614~^0.250^2^^~1~^~A~^^^1^0.863^0.915^^^^^~06/01/2014~ -~18962~^~615~^0.012^2^^~1~^~A~^^^1^0.041^0.042^^^^^~06/01/2014~ -~18962~^~617~^7.192^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~18962~^~618~^0.612^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~18962~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~18962~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~624~^0.010^2^^~1~^~A~^^^1^0.034^0.035^^^^^~06/01/2014~ -~18962~^~625~^0.006^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~06/01/2014~ -~18962~^~626~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~18962~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~628~^0.045^2^^~1~^~A~^^^1^0.022^0.024^^^^^~06/01/2014~ -~18962~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18962~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~645~^14.468^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~646~^1.265^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~652~^0.001^2^^~1~^~A~^^^1^0.004^0.005^^^^^~06/01/2014~ -~18962~^~653~^0.003^2^^~1~^~A~^^^1^0.012^0.012^^^^^~06/01/2014~ -~18962~^~654~^0.005^2^^~1~^~A~^^^1^0.016^0.018^^^^^~06/01/2014~ -~18962~^~662~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~06/01/2010~ -~18962~^~663~^2.742^2^^~1~^~A~^^^1^2.732^2.814^^^^^~06/01/2014~ -~18962~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~665~^0.161^2^^~1~^~A~^^^1^0.279^0.371^^^^^~06/01/2014~ -~18962~^~670~^0.016^2^^~1~^~A~^^^1^0.031^0.034^^^^^~06/01/2014~ -~18962~^~671~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2014~ -~18962~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.001^^^^~1~^~06/01/2014~ -~18962~^~673~^0.009^2^^~1~^~A~^^^1^0.008^0.009^^^^^~06/01/2014~ -~18962~^~674~^4.450^2^^~1~^~A~^^^1^4.491^4.507^^^^^~06/01/2014~ -~18962~^~675~^0.434^2^^~1~^~A~^^^1^0.868^0.885^^^^^~06/01/2014~ -~18962~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.001^^^^~1~^~06/01/2010~ -~18962~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~687~^0.008^2^^~1~^~A~^^^1^0.003^0.004^^^^^~06/01/2014~ -~18962~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~18962~^~693~^2.743^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~695~^0.161^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~18962~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~851~^0.020^2^^~1~^~A~^^^1^0.038^0.041^^^^^~06/01/2014~ -~18962~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2010~ -~18962~^~858~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2010~ -~18963~^~312~^0.108^10^0.003^~1~^~A~^^^1^0.098^0.122^9^0.102^0.114^~2, 3~^~04/01/2011~ -~18963~^~315~^0.441^10^0.018^~1~^~A~^^^1^0.358^0.522^9^0.400^0.482^~2, 3~^~04/01/2011~ -~18963~^~404~^0.462^4^0.027^~1~^~A~^^^1^0.420^0.530^3^0.378^0.547^~2, 3~^~04/01/2011~ -~18963~^~405~^0.184^5^0.004^~1~^~A~^^^1^0.170^0.190^4^0.173^0.195^~2, 3~^~04/01/2011~ -~18963~^~406~^4.142^6^0.146^~1~^~A~^^^1^3.720^4.560^5^3.767^4.516^~2, 3~^~04/01/2011~ -~18963~^~410~^0.660^4^0.149^~1~^~A~^^^1^0.470^1.100^3^0.187^1.133^~2, 3~^~04/01/2011~ -~18963~^~415~^0.083^4^0.006^~1~^~A~^^^1^0.067^0.095^3^0.064^0.101^~2, 3~^~04/01/2011~ -~18963~^~501~^0.068^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~502~^0.193^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~503~^0.235^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~504~^0.407^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~505~^0.241^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~506~^0.104^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~507~^0.095^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~508~^0.268^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~509~^0.191^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~510~^0.264^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~511~^0.235^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~512~^0.129^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~513~^0.221^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~514~^0.332^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~515~^1.474^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~516~^0.200^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~517~^0.515^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~518~^0.272^0^^~4~^~FLC~^^^^^^^^^^~08/01/2012~ -~18963~^~605~^0.240^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~606~^5.281^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~607~^0.008^6^0.003^~1~^~A~^^^1^0.000^0.015^5^0.001^0.015^~1, 2, 3~^~04/01/2011~ -~18963~^~608~^0.006^6^0.002^~1~^~A~^^^1^0.002^0.010^5^0.002^0.010^~1, 2, 3~^~04/01/2011~ -~18963~^~609~^0.027^6^0.008^~1~^~A~^^^1^0.008^0.048^5^0.006^0.048^~2, 3~^~04/01/2011~ -~18963~^~610~^0.042^6^0.011^~1~^~A~^^^1^0.018^0.072^5^0.015^0.070^~2, 3~^~04/01/2011~ -~18963~^~611~^0.652^6^0.270^~1~^~A~^^^1^0.037^1.369^5^-0.043^1.347^~2, 3~^~04/01/2011~ -~18963~^~612~^0.334^6^0.093^~1~^~A~^^^1^0.115^0.588^5^0.095^0.574^~2, 3~^~04/01/2011~ -~18963~^~613~^3.350^6^0.128^~1~^~A~^^^1^2.879^3.794^5^3.020^3.679^~2, 3~^~04/01/2011~ -~18963~^~614~^0.737^6^0.054^~1~^~A~^^^1^0.606^0.984^5^0.597^0.877^~2, 3~^~04/01/2011~ -~18963~^~615~^0.047^6^0.002^~1~^~A~^^^1^0.041^0.053^5^0.043^0.052^~2, 3~^~04/01/2011~ -~18963~^~617~^3.882^6^0.387^~1~^~AS~^^^1^2.855^5.337^5^2.886^4.878^~2, 3~^~04/01/2011~ -~18963~^~618~^5.382^6^0.307^~1~^~AS~^^^1^4.490^6.188^5^4.593^6.172^~2, 3~^~04/01/2011~ -~18963~^~619~^0.038^6^0.012^~1~^~AS~^^^1^0.013^0.098^5^0.006^0.070^~2, 3~^~04/01/2011~ -~18963~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~18963~^~624~^0.036^6^0.001^~1~^~A~^^^1^0.030^0.039^5^0.032^0.039^~2, 3~^~04/01/2011~ -~18963~^~625~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.005^~1, 2, 3~^~04/01/2011~ -~18963~^~626~^0.032^6^0.005^~1~^~AS~^^^1^0.005^0.039^5^0.018^0.046^~2, 3~^~04/01/2011~ -~18963~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~18963~^~628~^0.735^6^0.053^~1~^~A~^^^1^0.563^0.845^5^0.599^0.872^~2, 3~^~04/01/2011~ -~18963~^~629~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~18963~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2011~ -~18963~^~631~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 2, 3~^~04/01/2011~ -~18963~^~645~^4.669^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~646~^5.437^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~652~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.012^5^0.005^0.012^~2, 3~^~04/01/2011~ -~18963~^~653~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.020^5^0.015^0.019^~2, 3~^~04/01/2011~ -~18963~^~654~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.017^5^0.014^0.017^~2, 3~^~04/01/2011~ -~18963~^~662~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~04/01/2011~ -~18963~^~663~^0.184^6^0.142^~1~^~A~^^^1^0.013^0.886^5^-0.181^0.549^~2, 3~^~04/01/2011~ -~18963~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~665~^0.054^6^0.006^~1~^~A~^^^1^0.038^0.080^5^0.040^0.069^~2, 3~^~04/01/2011~ -~18963~^~670~^0.011^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.009^0.013^~2, 3~^~04/01/2011~ -~18963~^~671~^0.008^6^0.002^~1~^~A~^^^1^0.000^0.011^5^0.004^0.012^~1, 2, 3~^~04/01/2011~ -~18963~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2011~ -~18963~^~673~^0.030^6^0.006^~1~^~A~^^^1^0.001^0.039^5^0.015^0.046^~1, 2, 3~^~04/01/2011~ -~18963~^~674~^3.698^6^0.282^~1~^~A~^^^1^2.842^4.501^5^2.974^4.422^~2, 3~^~04/01/2011~ -~18963~^~675~^5.317^6^0.309^~1~^~A~^^^1^4.400^6.124^5^4.523^6.111^~2, 3~^~04/01/2011~ -~18963~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~18963~^~685~^0.029^6^0.004^~1~^~A~^^^1^0.013^0.040^5^0.018^0.040^~2, 3~^~04/01/2011~ -~18963~^~687~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~04/01/2011~ -~18963~^~689~^0.003^6^0.001^~1~^~AS~^^^1^0.000^0.005^5^0.001^0.005^~2, 3~^~04/01/2011~ -~18963~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~18963~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~851~^0.010^6^0.010^~1~^~A~^^^1^0.000^0.058^5^-0.015^0.035^~1, 2, 3~^~04/01/2011~ -~18963~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~18963~^~853~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 2, 3~^~04/01/2011~ -~18963~^~858~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~04/01/2011~ -~18964~^~312~^0.062^10^0.001^~1~^~A~^^^1^0.055^0.072^5^0.058^0.065^~2, 3~^~07/01/2014~ -~18964~^~315~^0.292^10^0.005^~1~^~A~^^^1^0.273^0.374^5^0.280^0.303^~2, 3~^~07/01/2014~ -~18964~^~404~^0.211^5^0.006^~1~^~A~^^^1^0.170^0.220^2^0.185^0.236^~2, 3~^~07/01/2014~ -~18964~^~405~^0.138^5^0.005^~1~^~A~^^^1^0.120^0.150^2^0.116^0.160^~2, 3~^~07/01/2014~ -~18964~^~406~^2.404^5^0.018^~1~^~A~^^^1^2.170^2.810^2^2.326^2.481^~2, 3~^~07/01/2014~ -~18964~^~410~^0.337^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~415~^0.038^5^0.003^~1~^~A~^^^1^0.030^0.050^2^0.025^0.051^~2, 3~^~07/01/2014~ -~18964~^~501~^0.068^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~502~^0.176^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~503~^0.226^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~504~^0.410^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~505~^0.215^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~506~^0.104^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~507~^0.093^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~508~^0.264^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~509~^0.189^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~510~^0.255^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~511~^0.218^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~512~^0.126^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~513~^0.180^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~514~^0.297^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~515~^1.553^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~516~^0.172^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~517~^0.568^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~518~^0.273^0^^~4~^~FLC~^^^^^^^^^^~07/01/2014~ -~18964~^~605~^0.295^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~606~^12.649^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~607~^0.007^10^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.008^~2, 3~^~03/01/2011~ -~18964~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~18964~^~609~^0.013^10^0.000^~1~^~A~^^^1^0.008^0.016^5^0.012^0.015^~2, 3~^~07/01/2014~ -~18964~^~610~^0.026^10^0.002^~1~^~A~^^^1^0.018^0.035^5^0.020^0.031^~2, 3~^~07/01/2014~ -~18964~^~611~^0.117^10^0.007^~1~^~A~^^^1^0.043^0.157^5^0.098^0.135^~2, 3~^~07/01/2014~ -~18964~^~612~^0.261^10^0.003^~1~^~A~^^^1^0.218^0.273^5^0.254^0.269^~2, 3~^~07/01/2014~ -~18964~^~613~^10.152^10^0.189^~1~^~A~^^^1^9.112^10.918^5^9.671^10.633^~2, 3~^~07/01/2014~ -~18964~^~614~^1.884^10^0.020^~1~^~A~^^^1^1.028^2.043^6^1.835^1.934^~2, 3~^~07/01/2014~ -~18964~^~615~^0.094^10^0.001^~1~^~A~^^^1^0.071^0.102^5^0.090^0.097^~2, 3~^~07/01/2014~ -~18964~^~617~^8.599^10^0.137^~1~^~AS~^^^1^6.196^9.374^5^8.250^8.948^~2, 3~^~07/01/2014~ -~18964~^~618~^3.436^10^0.061^~1~^~AS~^^^1^1.677^3.889^5^3.280^3.592^~2, 3~^~07/01/2014~ -~18964~^~619~^0.225^10^0.005^~1~^~AS~^^^1^0.044^0.273^5^0.212^0.239^~2, 3~^~07/01/2014~ -~18964~^~620~^0.006^10^0.001^~1~^~A~^^^1^0.003^0.008^5^0.004^0.008^~2, 3~^~07/01/2014~ -~18964~^~621~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~624~^0.029^10^0.001^~1~^~A~^^^1^0.015^0.033^5^0.027^0.030^~2, 3~^~07/01/2014~ -~18964~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~626~^0.052^10^0.000^~1~^~AS~^^^1^0.040^0.055^5^0.051^0.053^~2, 3~^~07/01/2014~ -~18964~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~628~^0.064^10^0.001^~1~^~A~^^^1^0.035^0.070^6^0.062^0.066^~2, 3~^~07/01/2014~ -~18964~^~629~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.003^2^0.002^0.002^~1, 2, 3~^~03/01/2011~ -~18964~^~630~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.001^1^0.000^0.000^~2, 3~^~03/01/2011~ -~18964~^~631~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~645~^8.723^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~646~^3.676^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~652~^0.014^10^0.000^~1~^~A~^^^1^0.012^0.015^6^0.014^0.015^~2, 3~^~03/01/2011~ -~18964~^~653~^0.030^10^0.001^~1~^~A~^^^1^0.025^0.033^5^0.028^0.032^~2, 3~^~07/01/2014~ -~18964~^~654~^0.021^10^0.000^~1~^~A~^^^1^0.014^0.023^5^0.020^0.022^~2, 3~^~07/01/2014~ -~18964~^~662~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~663~^0.223^10^0.003^~1~^~A~^^^1^0.054^0.247^5^0.215^0.231^~2, 3~^~07/01/2014~ -~18964~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~665~^0.072^10^0.002^~1~^~A~^^^1^0.034^0.083^5^0.067^0.078^~2, 3~^~07/01/2014~ -~18964~^~670~^0.011^10^0.001^~1~^~A~^^^1^0.007^0.016^5^0.009^0.014^~2, 3~^~07/01/2014~ -~18964~^~671~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~672~^0.006^10^0.000^~1~^~A~^^^1^0.003^0.007^5^0.005^0.007^~2, 3~^~07/01/2014~ -~18964~^~673~^0.052^10^0.000^~1~^~A~^^^1^0.040^0.055^5^0.051^0.053^~2, 3~^~07/01/2014~ -~18964~^~674~^8.377^10^0.138^~1~^~A~^^^1^6.104^9.129^5^8.025^8.728^~2, 3~^~07/01/2014~ -~18964~^~675~^3.352^10^0.059^~1~^~A~^^^1^1.636^3.790^5^3.202^3.503^~2, 3~^~07/01/2014~ -~18964~^~676~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^1^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~18964~^~685~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~687~^0.007^10^0.000^~1~^~A~^^^1^0.004^0.008^5^0.007^0.008^~2, 3~^~07/01/2014~ -~18964~^~689~^0.000^10^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2011~ -~18964~^~693~^0.223^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~695~^0.072^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~18964~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~851~^0.225^10^0.005^~1~^~A~^^^1^0.044^0.273^5^0.212^0.239^~2, 3~^~07/01/2014~ -~18964~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~853~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18964~^~858~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~18965~^~312~^0.118^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~315~^0.517^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~404~^1.087^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~405~^0.750^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~406~^7.170^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~410~^0.528^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~415~^0.044^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~501~^0.106^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~502~^0.243^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~503~^0.320^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~504~^0.610^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~505~^0.245^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~506~^0.158^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~507~^0.168^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~508~^0.432^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~509~^0.274^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~510~^0.367^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~511~^0.346^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~512~^0.201^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~513~^0.278^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~514~^0.388^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~515~^2.781^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~516~^0.296^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~517~^0.978^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~518~^0.434^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~606~^3.333^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18965~^~607~^0.033^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~608~^0.016^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~609~^0.009^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~610~^0.019^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~611~^0.017^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~612~^0.146^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~613~^2.408^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~614~^0.656^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~617~^2.081^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~618~^4.960^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~619~^0.313^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~18965~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~626~^0.033^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~645~^2.121^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~646~^5.273^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18965~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18965~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~312~^0.266^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~315~^1.494^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~404~^0.465^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~405~^0.225^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~406~^4.427^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~410~^0.654^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~415~^0.213^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18966~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~617~^2.752^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~618~^6.437^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~619~^0.789^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~620~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~628~^0.032^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~645~^2.793^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~646~^7.229^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18966~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18967~^~312~^0.149^2^^~1~^~A~^^^1^0.137^0.161^1^^^^~03/01/2011~ -~18967~^~315~^0.634^2^^~1~^~A~^^^1^0.634^0.634^^^^^~03/01/2011~ -~18967~^~404~^0.510^2^^~1~^~A~^^^1^0.500^0.520^1^^^^~03/01/2011~ -~18967~^~405~^0.255^2^^~1~^~A~^^^1^0.240^0.270^1^^^^~03/01/2011~ -~18967~^~406~^4.455^2^^~1~^~A~^^^1^4.300^4.610^1^^^^~03/01/2011~ -~18967~^~410~^0.455^2^^~1~^~A~^^^1^0.430^0.480^1^^^^~03/01/2011~ -~18967~^~415~^0.080^2^^~1~^~A~^^^1^0.076^0.085^1^^^^~03/01/2011~ -~18967~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~606~^0.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~607~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2011~ -~18967~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~609~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~03/01/2011~ -~18967~^~610~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~03/01/2011~ -~18967~^~611~^0.013^2^^~1~^~A~^^^1^0.010^0.017^1^^^^~03/01/2011~ -~18967~^~612~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~03/01/2011~ -~18967~^~613~^0.324^2^^~1~^~A~^^^1^0.324^0.325^1^^^^~03/01/2011~ -~18967~^~614~^0.251^2^^~1~^~A~^^^1^0.235^0.268^1^^^^~03/01/2011~ -~18967~^~615~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~03/01/2011~ -~18967~^~617~^0.366^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~618~^0.879^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~619~^0.083^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~620~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~03/01/2011~ -~18967~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~624~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~03/01/2011~ -~18967~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~626~^0.016^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~628~^0.010^2^^~1~^~A~^^^1^0.008^0.012^1^^^^~03/01/2011~ -~18967~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~03/01/2011~ -~18967~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~645~^0.393^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~646~^0.973^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~652~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~03/01/2011~ -~18967~^~653~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2011~ -~18967~^~654~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~03/01/2011~ -~18967~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~663~^0.027^2^^~1~^~A~^^^1^0.020^0.034^1^^^^~03/01/2011~ -~18967~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~665~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~03/01/2011~ -~18967~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~672~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2011~ -~18967~^~673~^0.016^2^^~1~^~A~^^^1^0.014^0.017^1^^^^~03/01/2011~ -~18967~^~674~^0.339^2^^~1~^~A~^^^1^0.325^0.353^1^^^^~03/01/2011~ -~18967~^~675~^0.875^2^^~1~^~A~^^^1^0.857^0.893^1^^^^~03/01/2011~ -~18967~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~687~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2011~ -~18967~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~ -~18967~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18967~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~851~^0.083^2^^~1~^~A~^^^1^0.080^0.086^1^^^^~03/01/2011~ -~18967~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2011~ -~18967~^~858~^0.006^2^^~1~^~A~^^^1^0.004^0.007^1^^^^~03/01/2011~ -~18968~^~312~^0.175^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~315~^1.430^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~404~^0.403^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~405~^0.209^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~406~^3.370^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~410~^0.375^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~415~^0.147^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18968~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~617~^0.277^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~618~^0.859^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~619~^0.076^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~626~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~628~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~645~^0.290^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~646~^0.936^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18968~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18969~^~312~^0.060^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~315~^0.224^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~404~^0.263^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~405~^0.241^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~406~^1.908^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~410~^0.471^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~415~^0.041^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~606~^7.055^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~ -~18969~^~607~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~612~^0.051^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~613~^3.748^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~614~^3.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~615~^0.105^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~617~^6.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~618~^3.861^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~619~^0.266^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~620~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~621~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~624~^0.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~625~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~626~^0.033^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~628~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~645~^6.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~646~^4.173^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~18969~^~652~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~653~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~654~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~672~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~689~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18969~^~858~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~312~^0.115^12^0.005^~1~^~A~^^^1^0.088^0.144^11^0.103^0.127^~2, 3~^~03/01/2011~ -~18970~^~315~^0.516^12^0.041^~1~^~A~^^^1^0.290^0.888^11^0.426^0.606^~2, 3~^~03/01/2011~ -~18970~^~404~^0.487^12^0.036^~1~^~A~^^^1^0.270^0.730^11^0.408^0.565^~2, 3~^~03/01/2011~ -~18970~^~405~^0.124^12^0.012^~1~^~A~^^^1^0.070^0.210^11^0.097^0.151^~2, 3~^~03/01/2011~ -~18970~^~406~^4.191^12^0.167^~1~^~A~^^^1^3.390^5.370^11^3.824^4.558^~2, 3~^~03/01/2011~ -~18970~^~410~^0.283^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~415~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~501~^0.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~502~^0.182^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~503~^0.231^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~504~^0.459^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~505~^0.147^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~506~^0.118^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~507~^0.142^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~508~^0.336^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~509~^0.202^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~510~^0.268^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~511~^0.270^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~512~^0.149^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~513~^0.215^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~514~^0.281^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~515~^2.249^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~516~^0.240^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~517~^0.774^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~518~^0.333^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~605~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~606~^1.225^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~612~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~613~^0.735^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~614~^0.445^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~615~^0.023^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~617~^3.748^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~618~^1.764^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~619~^0.387^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~624~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~626~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~628~^0.046^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~645~^3.801^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~646~^2.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18970~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~18971~^~312~^0.094^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~315~^0.253^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~404~^0.188^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~405~^0.106^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~406~^1.250^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~410~^0.817^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~415~^0.232^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~501~^0.081^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~502~^0.224^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~503~^0.268^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~504~^0.440^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~505~^0.311^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~506~^0.112^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~507~^0.086^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~508~^0.285^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~509~^0.213^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~510~^0.305^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~511~^0.265^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~512~^0.143^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~513~^0.243^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~514~^0.533^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~515~^1.352^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~516~^0.204^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~517~^0.479^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~518~^0.275^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~18971~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18971~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18971~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~312~^0.086^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~315~^0.366^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~404~^0.433^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~405~^0.303^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~406~^3.279^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~410~^0.350^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~415~^0.048^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~606~^6.250^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18972~^~607~^0.153^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~608~^0.073^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~609~^0.043^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~610~^0.096^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~611~^0.111^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~612~^0.401^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~613~^3.623^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~614~^1.485^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~615~^0.086^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~617~^4.174^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~618~^8.105^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~619~^1.097^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~624~^0.087^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~626~^0.076^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~628~^0.039^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~645~^4.339^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~646~^9.203^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~653~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18972~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~312~^0.091^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~315~^0.364^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~404~^0.470^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~405~^0.301^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~406~^3.670^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~410~^0.645^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~415~^0.113^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~606~^0.877^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~18973~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~613~^0.723^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~614~^0.120^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~615~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~617~^5.495^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~618~^0.923^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~619~^0.072^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~624~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~626~^0.138^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~628~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~645~^5.670^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~646~^0.994^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~18973~^~687~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~19000~^~312~^0.269^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~315~^0.944^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~404~^1.470^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~405~^0.319^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~406~^4.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~410~^4.200^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~415~^1.680^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19000~^~514~^1.621^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~605~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~606~^2.073^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~19000~^~607~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~612~^0.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~613~^1.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~614~^0.471^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~615~^0.148^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~617~^7.704^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~618~^3.075^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~619~^0.599^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~620~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~624~^0.272^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~626~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~628~^0.170^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~630~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~645~^7.907^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19000~^~646~^3.678^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19000~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~653~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~654~^0.108^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~689~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19000~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~312~^0.340^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~315~^0.361^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~404~^0.076^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~405~^0.237^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~406~^0.353^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~410~^0.316^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~415~^0.027^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~606~^17.143^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~607~^0.295^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~608~^0.082^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~609~^0.092^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~610~^0.203^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~611~^0.209^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~612~^0.989^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~613~^8.368^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~614~^6.830^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~615~^0.059^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~617~^3.557^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~618~^2.905^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~619~^0.329^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~626~^0.187^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~645~^3.744^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~646~^3.234^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~653~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19001~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19002~^~312~^0.227^2^^~12~^~MA~^^^^^^^^^^~08/01/1991~ -~19002~^~315~^0.111^2^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~404~^0.154^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~405~^0.142^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~406~^1.732^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~410~^0.163^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~415~^0.179^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~606~^10.850^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~610~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~611~^0.162^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~612~^0.819^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~613~^5.720^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~614~^3.897^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~617~^10.099^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~618~^0.810^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~619~^0.185^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~620~^0.016^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~626~^1.135^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~628~^0.071^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19002~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~19002~^~645~^11.305^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19002~^~646~^1.011^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~ -~19003~^~312~^0.101^12^0.003^~1~^~A~^^^1^0.089^0.129^11^0.094^0.109^~2, 3~^~05/01/2014~ -~19003~^~315~^0.333^12^0.014^~1~^~A~^^^1^0.282^0.467^11^0.303^0.363^~2, 3~^~05/01/2014~ -~19003~^~404~^0.047^6^0.007^~1~^~A~^^^1^0.040^0.080^5^0.029^0.064^~2, 3~^~05/01/2014~ -~19003~^~405~^0.078^6^0.003^~1~^~A~^^^1^0.071^0.088^5^0.070^0.085^~2, 3~^~05/01/2014~ -~19003~^~406~^0.842^6^0.039^~1~^~A~^^^1^0.720^0.960^5^0.741^0.942^~2, 3~^~05/01/2014~ -~19003~^~410~^0.190^4^0.012^~1~^~A~^^^1^0.160^0.220^3^0.151^0.229^~2, 3~^~05/01/2014~ -~19003~^~415~^0.167^6^0.018^~1~^~A~^^^1^0.120^0.240^5^0.121^0.212^~2, 3~^~05/01/2014~ -~19003~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~502~^0.246^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~503~^0.235^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~504~^0.803^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~505~^0.185^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~506~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~507~^0.119^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~508~^0.322^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~509~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~510~^0.331^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~511~^0.326^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~512~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~513~^0.491^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~514~^0.456^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~515~^1.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~516~^0.269^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~517~^0.572^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~518~^0.312^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19003~^~605~^0.088^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~606~^4.331^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~607~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.005^5^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~19003~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~19003~^~609~^0.010^6^0.003^~1~^~A~^^^1^0.000^0.017^5^0.003^0.016^~1, 2, 3~^~05/01/2014~ -~19003~^~610~^0.004^6^0.004^~1~^~A~^^^1^0.000^0.024^5^-0.006^0.014^~1, 2, 3~^~05/01/2014~ -~19003~^~611~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.007^5^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~19003~^~612~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.013^~2, 3~^~05/01/2014~ -~19003~^~613~^3.511^6^0.123^~1~^~A~^^^1^2.910^3.743^5^3.195^3.827^~2, 3~^~05/01/2014~ -~19003~^~614~^0.552^6^0.015^~1~^~A~^^^1^0.489^0.597^5^0.515^0.590^~2, 3~^~05/01/2014~ -~19003~^~615~^0.119^6^0.004^~1~^~A~^^^1^0.101^0.126^5^0.109^0.129^~2, 3~^~05/01/2014~ -~19003~^~617~^8.986^6^0.105^~1~^~AS~^^^1^8.698^9.330^5^8.716^9.257^~2, 3~^~05/01/2014~ -~19003~^~618~^16.135^6^0.654^~1~^~AS~^^^1^12.931^17.143^5^14.453^17.818^~2, 3~^~05/01/2014~ -~19003~^~619~^0.278^6^0.010^~1~^~AS~^^^1^0.232^0.300^5^0.253^0.303^~2, 3~^~05/01/2014~ -~19003~^~620~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~05/01/2014~ -~19003~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2015~ -~19003~^~624~^0.041^6^0.002^~1~^~A~^^^1^0.037^0.051^5^0.036^0.046^~2, 3~^~05/01/2014~ -~19003~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~626~^0.031^6^0.001^~1~^~AS~^^^1^0.029^0.035^5^0.029^0.034^~2, 3~^~05/01/2014~ -~19003~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~628~^0.103^6^0.003^~1~^~A~^^^1^0.087^0.110^5^0.095^0.112^~2, 3~^~05/01/2014~ -~19003~^~629~^0.006^6^0.002^~1~^~A~^^^1^0.002^0.018^5^0.000^0.012^~1, 2, 3~^~05/01/2014~ -~19003~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~05/01/2014~ -~19003~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~645~^9.134^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~646~^16.438^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~05/01/2014~ -~19003~^~653~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.018^0.022^~2, 3~^~05/01/2014~ -~19003~^~654~^0.055^6^0.001^~1~^~A~^^^1^0.052^0.058^5^0.053^0.058^~2, 3~^~05/01/2014~ -~19003~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~663~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.021^5^0.016^0.020^~2, 3~^~05/01/2014~ -~19003~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~665~^0.070^6^0.008^~1~^~A~^^^1^0.045^0.105^5^0.049^0.091^~2, 3~^~05/01/2014~ -~19003~^~670~^0.029^6^0.002^~1~^~A~^^^1^0.020^0.036^5^0.023^0.035^~2, 3~^~05/01/2014~ -~19003~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19003~^~672~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.009^5^0.006^0.008^~2, 3~^~05/01/2014~ -~19003~^~673~^0.031^6^0.001^~1~^~A~^^^1^0.029^0.035^5^0.029^0.034^~2, 3~^~05/01/2014~ -~19003~^~674~^8.968^6^0.106^~1~^~A~^^^1^8.678^9.312^5^8.697^9.240^~2, 3~^~05/01/2014~ -~19003~^~675~^16.036^6^0.647^~1~^~A~^^^1^12.866^17.015^5^14.373^17.700^~2, 3~^~05/01/2014~ -~19003~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~19003~^~685~^0.013^6^0.002^~1~^~A~^^^1^0.007^0.022^5^0.008^0.019^~2, 3~^~05/01/2014~ -~19003~^~687~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~05/01/2014~ -~19003~^~689~^0.006^6^0.000^~1~^~AS~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~05/01/2014~ -~19003~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~695~^0.070^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19003~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~851~^0.264^6^0.009^~1~^~A~^^^1^0.225^0.287^5^0.242^0.287^~2, 3~^~05/01/2014~ -~19003~^~852~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~05/01/2014~ -~19003~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19003~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19004~^~312~^0.166^18^0.039^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~315~^0.774^14^0.222^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~404~^0.075^20^0.016^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~405~^0.210^17^0.020^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~406~^1.645^20^0.059^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~410~^0.143^3^0.043^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~415~^0.230^6^0.023^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~502~^0.279^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~503~^0.277^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~504~^0.747^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~505~^0.284^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~506~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~507~^0.119^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~508~^0.333^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~509~^0.273^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~510~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~511~^0.373^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~512~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~513~^0.475^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~514~^0.586^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~515~^1.243^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~516~^0.293^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~517~^0.521^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~518~^0.337^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~606~^4.460^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~613~^3.510^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~614~^0.960^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~617~^9.390^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~618~^14.940^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~619~^1.230^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~626~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~645~^9.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19004~^~646~^16.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~312~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~315~^0.087^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~404~^0.320^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~405~^0.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~406~^1.410^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~410~^0.225^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19005~^~415~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~501~^0.041^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~502~^0.219^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~503~^0.209^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~504~^0.715^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~505~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~506~^0.122^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~507~^0.105^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~508~^0.286^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~509~^0.237^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~510~^0.295^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~511~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~512~^0.178^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~513~^0.437^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~514~^0.406^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~515~^1.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~516~^0.239^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~517~^0.508^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~518~^0.277^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~606~^22.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~608~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~609~^1.960^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~610~^1.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~611~^11.680^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~612~^4.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~613~^2.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~614~^0.740^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~617~^1.700^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~618~^0.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~645~^1.700^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19005~^~646~^0.780^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~312~^0.118^15^0.023^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~315~^0.202^12^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~404~^0.220^13^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~405~^0.310^13^0.023^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~406~^3.180^13^0.251^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~410~^0.262^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19007~^~415~^0.148^4^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~502~^0.288^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~503~^0.284^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~504~^0.906^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~505~^0.241^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~506~^0.154^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~507~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~508~^0.378^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~509~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~510~^0.386^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~511~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~512~^0.232^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~513~^0.548^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~514~^0.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~515~^1.445^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~516~^0.314^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~517~^0.646^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~518~^0.369^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~606~^4.340^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~607~^0.020^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~611~^0.040^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~612~^0.160^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~613~^2.800^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~614~^1.310^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~617~^13.270^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~618~^3.010^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~619~^0.130^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~626~^0.080^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19007~^~645~^13.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19007~^~646~^3.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19008~^~312~^0.041^12^0.001^~1~^~A~^^^1^0.034^0.051^11^0.038^0.045^~2, 3~^~02/01/2016~ -~19008~^~315~^0.059^12^0.001^~1~^~A~^^^1^0.050^0.069^11^0.056^0.063^~2, 3~^~02/01/2016~ -~19008~^~404~^0.180^6^0.014^~1~^~A~^^^1^0.140^0.220^5^0.144^0.216^~2, 3~^~02/01/2016~ -~19008~^~405~^0.380^6^0.011^~1~^~A~^^^1^0.350^0.410^5^0.352^0.408^~2, 3~^~02/01/2016~ -~19008~^~406~^2.627^6^0.084^~1~^~A~^^^1^2.400^2.900^5^2.411^2.843^~2, 3~^~02/01/2016~ -~19008~^~410~^0.980^5^0.045^~1~^~A~^^^2^0.600^1.199^3^0.829^1.130^~2, 3~^~07/01/2008~ -~19008~^~415~^0.116^6^0.004^~1~^~A~^^^1^0.102^0.131^5^0.105^0.127^~2, 3~^~02/01/2016~ -~19008~^~501~^0.072^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~502~^0.223^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~503~^0.369^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~504~^0.777^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~505~^0.424^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~506~^0.176^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~507~^0.076^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~508~^0.366^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~509~^0.288^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~510~^0.423^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~511~^0.256^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~512~^0.221^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~513~^0.315^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~514~^0.453^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~515~^1.619^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~516~^0.152^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~517~^0.770^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~518~^0.385^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~ -~19008~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2015~ -~19008~^~605~^0.272^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~606~^3.749^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~607~^0.025^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.019^0.031^~2, 3~^~08/01/2014~ -~19008~^~608~^0.016^6^0.001^~1~^~A~^^^1^0.013^0.020^5^0.013^0.019^~2, 3~^~02/01/2016~ -~19008~^~609~^0.017^6^0.001^~1~^~A~^^^1^0.013^0.020^5^0.014^0.020^~2, 3~^~02/01/2016~ -~19008~^~610~^0.034^6^0.002^~1~^~A~^^^1^0.028^0.040^5^0.029^0.040^~2, 3~^~02/01/2016~ -~19008~^~611~^0.035^6^0.002^~1~^~A~^^^1^0.030^0.040^5^0.030^0.040^~2, 3~^~02/01/2016~ -~19008~^~612~^0.116^6^0.006^~1~^~A~^^^1^0.099^0.132^5^0.100^0.132^~2, 3~^~02/01/2016~ -~19008~^~613~^2.515^6^0.203^~1~^~A~^^^1^1.522^2.897^5^1.995^3.036^~2, 3~^~02/01/2016~ -~19008~^~614~^0.650^6^0.007^~1~^~A~^^^1^0.629^0.668^5^0.631^0.669^~2, 3~^~02/01/2016~ -~19008~^~615~^0.167^6^0.008^~1~^~A~^^^1^0.154^0.203^5^0.147^0.186^~2, 3~^~02/01/2016~ -~19008~^~617~^0.038^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~618~^17.391^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~619~^0.522^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~620~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~02/01/2016~ -~19008~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~624~^0.078^6^0.006^~1~^~A~^^^1^0.069^0.108^5^0.062^0.094^~2, 3~^~02/01/2016~ -~19008~^~625~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~02/01/2016~ -~19008~^~626~^0.057^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~628~^0.304^6^0.029^~1~^~A~^^^1^0.266^0.448^5^0.230^0.379^~2, 3~^~02/01/2016~ -~19008~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~02/01/2016~ -~19008~^~630~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~645~^0.478^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~646~^17.934^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~652~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.015^0.018^~2, 3~^~02/01/2016~ -~19008~^~653~^0.025^6^0.000^~1~^~A~^^^1^0.023^0.026^5^0.024^0.026^~2, 3~^~02/01/2016~ -~19008~^~654~^0.055^6^0.001^~1~^~A~^^^1^0.051^0.059^5^0.051^0.058^~2, 3~^~02/01/2016~ -~19008~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~02/01/2016~ -~19008~^~663~^0.038^6^0.001^~1~^~A~^^^1^0.032^0.042^5^0.034^0.041^~2, 3~^~02/01/2016~ -~19008~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~665~^0.039^6^0.003^~1~^~A~^^^1^0.026^0.049^5^0.030^0.047^~2, 3~^~02/01/2016~ -~19008~^~669~^0.192^13^0.008^~1~^~A~^^^1^0.147^0.246^12^0.175^0.209^~2, 3~^~08/01/2012~ -~19008~^~670~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.015^0.020^~2, 3~^~02/01/2016~ -~19008~^~671~^0.030^6^0.004^~1~^~A~^^^1^0.024^0.050^5^0.019^0.040^~2, 3~^~02/01/2016~ -~19008~^~672~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.018^5^0.010^0.015^~2, 3~^~02/01/2016~ -~19008~^~673~^0.053^6^0.002^~1~^~A~^^^1^0.050^0.060^5^0.048^0.059^~2, 3~^~08/01/2014~ -~19008~^~675~^17.143^6^0.287^~1~^~A~^^^1^16.000^17.960^5^16.405^17.882^~2, 3~^~08/01/2014~ -~19008~^~676~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~2, 3~^~02/01/2016~ -~19008~^~685~^0.024^6^0.002^~1~^~A~^^^1^0.019^0.033^5^0.019^0.029^~2, 3~^~02/01/2016~ -~19008~^~687~^0.021^6^0.002^~1~^~A~^^^1^0.019^0.029^5^0.017^0.025^~2, 3~^~02/01/2016~ -~19008~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~ -~19008~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~695~^0.231^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~ -~19008~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~19008~^~851~^0.498^6^0.032^~1~^~A~^^^1^0.454^0.658^5^0.414^0.581^~2, 3~^~02/01/2016~ -~19008~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19008~^~853~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~02/01/2016~ -~19008~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2016~ -~19008~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2014~ -~19009~^~312~^0.115^8^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~315~^0.455^8^0.032^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~404~^0.041^6^0.014^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~405~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~406~^1.694^8^0.135^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~410~^0.366^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19009~^~415~^0.229^8^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19009~^~606~^2.430^0^^~9~^~MC~^^^^^^^^^^~07/01/2003~ -~19009~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~611~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~612~^0.030^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~613~^1.025^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~614~^1.064^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~617~^7.490^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~618~^3.009^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~619~^0.058^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~ -~19009~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2003~ -~19009~^~645~^9.460^0^^~9~^~MC~^^^^^^^^^^~07/01/2003~ -~19009~^~646~^3.050^0^^~9~^~MC~^^^^^^^^^^~07/01/2003~ -~19010~^~312~^0.310^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~315~^0.999^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19010~^~404~^0.530^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~405~^0.600^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~406~^7.050^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~410~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19010~^~415~^0.705^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~501~^0.075^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~502~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~503~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~504~^0.390^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~505~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~506~^0.102^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~507~^0.121^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~508~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~509~^0.198^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~510~^0.287^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~511~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~512~^0.116^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~513~^0.263^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~514~^0.459^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~515~^0.979^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~516~^0.244^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~517~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~518~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~606~^5.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~608~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~609~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~610~^0.060^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~611~^0.460^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~612~^0.200^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~613~^2.460^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~614~^1.980^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~617~^3.970^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~618~^3.450^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~619~^0.200^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~626~^0.030^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~645~^3.990^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19010~^~646~^3.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~312~^0.171^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~315~^0.184^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~404~^0.043^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~406~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19013~^~410~^0.319^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~415~^0.300^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19013~^~606~^0.650^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~607~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~608~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~609~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~610~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~611~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~612~^0.010^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~613~^0.340^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~614~^0.300^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~617~^1.480^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~618~^0.430^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~619~^0.120^0^^~4~^~BFZN~^~19014~^^^^^^^^^~04/01/2005~ -~19013~^~620~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~621~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~626~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~627~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~628~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~629~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~630~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~631~^0.000^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~ -~19013~^~645~^1.480^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19013~^~646~^0.550^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19014~^~312~^0.171^7^0.006^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~315~^0.184^7^0.020^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~404~^0.084^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~405~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~406~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~410~^0.029^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19014~^~415~^0.300^6^0.073^~1~^^^^^^^^^^^~08/01/1991~ -~19014~^~606~^0.672^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19014~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~611~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~612~^0.010^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~613~^0.340^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~614~^0.300^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~615~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~617~^1.480^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~618~^0.430^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~619~^0.120^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~624~^0.006^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~625~^0.002^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~626~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19014~^~645~^1.480^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19014~^~646~^0.552^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~19014~^~652~^0.002^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~653~^0.004^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~687~^0.004^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19014~^~689~^0.002^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~ -~19015~^~312~^0.392^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~315~^1.777^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~404~^0.264^23^0.006^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~405~^0.119^18^0.012^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~406~^1.581^9^0.287^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~410~^0.813^4^0.294^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~415~^0.085^4^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~501~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~502~^0.264^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~503~^0.352^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~504~^0.724^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~505~^0.400^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~506~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~507~^0.304^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~508~^0.479^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~509~^0.352^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~510~^0.508^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~511~^0.674^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~512~^0.216^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~513~^0.460^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~514~^0.830^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~515~^1.975^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~516~^0.499^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~517~^0.518^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~518~^0.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~606~^2.370^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~613~^1.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~614~^0.760^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~617~^4.370^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~618~^11.990^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~619~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~628~^0.130^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19015~^~645~^4.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19015~^~646~^12.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~312~^0.127^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~315~^1.365^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~404~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~405~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~406~^0.610^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~410~^0.466^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~415~^0.047^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19016~^~501~^0.142^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~502~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~503~^0.289^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~504~^0.585^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~505~^0.313^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~506~^0.135^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~507~^0.231^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~508~^0.390^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~509~^0.282^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~510~^0.406^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~511~^0.596^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~512~^0.178^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~513~^0.369^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~514~^0.698^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~515~^1.679^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~516~^0.411^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~517~^0.425^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~518~^0.374^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~606~^12.510^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~608~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~609~^0.940^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~610~^0.750^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~611~^5.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~612~^2.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~613~^2.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~614~^0.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~617~^7.690^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~618~^3.660^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~619~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~645~^7.740^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19016~^~646~^3.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~312~^0.261^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~315~^1.507^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~404~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~406~^0.555^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~410~^0.506^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~415~^0.058^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19017~^~501~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~502~^0.211^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~503~^0.274^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~504~^0.552^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~505~^0.311^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~506~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~507~^0.222^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~508~^0.368^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~509~^0.274^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~510~^0.396^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~511~^0.517^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~512~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~513~^0.356^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~514~^0.648^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~515~^1.494^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~516~^0.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~517~^0.395^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~518~^0.359^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~606~^11.410^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~608~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~609~^0.760^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~610~^0.610^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~611~^4.550^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~612~^1.720^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~613~^2.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~614~^1.520^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~617~^2.610^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~618~^1.220^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~619~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~645~^2.630^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19017~^~646~^1.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19018~^~312~^0.018^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~315~^0.061^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~404~^0.033^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~405~^0.012^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~406~^0.012^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~410~^0.010^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~415~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~501~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~502~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~503~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~504~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~505~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~506~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~507~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~508~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~509~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~510~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~511~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~512~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~513~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~514~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~515~^0.002^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19018~^~516~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~517~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~518~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19018~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19020~^~312~^0.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~315~^1.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~404~^0.295^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~405~^0.165^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~406~^0.515^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~410~^0.520^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~415~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~501~^0.101^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~502~^0.239^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~503~^0.293^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~504~^0.536^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~505~^0.292^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~506~^0.128^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~507~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~508~^0.381^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~509~^0.250^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~510~^0.396^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~511~^0.490^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~512~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~513~^0.365^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~514~^0.645^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~515~^1.495^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~516~^0.347^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~517~^0.601^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~518~^0.318^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~606~^7.250^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19020~^~608~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~609~^0.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~610~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~611~^2.680^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~612~^1.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~613~^2.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~614~^0.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~617~^3.770^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~618~^5.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~619~^0.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19020~^~645~^3.820^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19020~^~646~^5.320^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19021~^~312~^0.660^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~315~^1.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~404~^0.228^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~405~^0.148^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~406~^3.142^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~410~^0.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~415~^0.103^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~501~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~502~^0.350^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~503~^0.374^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~504~^0.696^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~505~^0.374^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~506~^0.148^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~507~^0.153^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~508~^0.531^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~509~^0.417^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~510~^0.466^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~511~^1.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~512~^0.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~513~^0.441^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~514~^1.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~515~^2.121^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~516~^0.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~517~^0.471^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~518~^0.499^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~606~^3.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~609~^0.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~610~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~611~^0.890^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~612~^0.340^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~613~^1.670^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~614~^0.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~617~^6.410^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~618~^4.220^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~619~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~620~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~628~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~645~^6.590^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19021~^~646~^4.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~312~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~315~^1.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~404~^0.231^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~405~^0.163^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~406~^1.101^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~410~^0.480^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~415~^0.103^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~501~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~502~^0.257^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~503~^0.305^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~504~^0.565^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~505~^0.301^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~506~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~507~^0.173^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~508~^0.394^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~509~^0.255^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~510~^0.411^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~511~^0.586^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~512~^0.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~513~^0.385^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~514~^0.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~515~^1.646^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~516~^0.381^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~517~^0.414^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~518~^0.335^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~606~^9.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~608~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~609~^0.730^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~610~^0.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~611~^4.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~612~^1.620^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~613~^1.850^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~614~^0.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~617~^2.790^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~618~^3.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~619~^0.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~645~^2.840^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19022~^~646~^3.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~312~^0.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~315~^0.930^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~404~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~405~^0.250^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~406~^0.720^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~410~^0.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~415~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~501~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~502~^0.226^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~503~^0.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~504~^0.474^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~505~^0.289^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~506~^0.114^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~507~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~508~^0.291^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~509~^0.244^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~510~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~511~^0.241^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~512~^0.105^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~513~^0.222^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~514~^0.479^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~515~^1.112^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~516~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~517~^0.393^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~518~^0.254^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~606~^14.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~607~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~608~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~609~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~610~^0.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~611~^0.630^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~612~^0.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~613~^6.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~614~^6.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~617~^7.580^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~618~^1.710^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~619~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~626~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~645~^7.770^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19024~^~646~^1.820^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19025~^~312~^0.169^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~315~^0.656^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~404~^0.064^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~405~^0.085^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~406~^5.147^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~410~^0.446^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~415~^0.173^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~501~^0.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~502~^0.206^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~503~^0.242^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~504~^0.607^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~505~^0.267^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~506~^0.104^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~507~^0.090^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~508~^0.472^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~509~^0.325^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~510~^0.307^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~511~^1.087^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~512~^0.219^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~513~^0.359^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~514~^1.199^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~515~^1.999^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~516~^0.564^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~517~^0.553^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~518~^0.581^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~605~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~606~^5.735^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~612~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~613~^2.679^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~614~^1.233^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~615~^0.406^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~617~^8.268^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~618~^4.769^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~619~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~620~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~624~^0.962^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~626~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~628~^0.193^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~630~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~645~^8.496^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~646~^4.794^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~652~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~653~^0.026^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~654~^0.413^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~672~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~687~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~689~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19025~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19026~^~312~^0.323^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~315~^1.350^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~404~^0.100^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~405~^0.210^3^0.032^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~406~^3.290^3^0.067^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~410~^0.530^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~415~^0.106^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19026~^~501~^0.123^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~502~^0.387^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~503~^0.456^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~504~^0.804^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~505~^0.519^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~506~^0.173^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~507~^0.121^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~508~^0.510^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~509~^0.431^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~510~^0.555^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~511~^0.690^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~512~^0.228^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~513~^0.387^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~514~^0.972^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~515~^2.055^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~516~^0.405^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~517~^0.680^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~518~^0.491^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~606~^17.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~607~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~608~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~609~^0.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~610~^0.490^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~611~^5.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~612~^2.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~613~^4.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~614~^3.920^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~617~^6.390^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~618~^1.830^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~620~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~626~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~628~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~ -~19026~^~645~^6.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19026~^~646~^1.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~312~^0.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~315~^1.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~404~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~406~^3.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~410~^0.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~415~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~501~^0.101^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~502~^0.330^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~503~^0.348^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~504~^0.641^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~505~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~506~^0.131^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~507~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~508~^0.497^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~509~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~510~^0.433^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~511~^1.046^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~512~^0.236^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~513~^0.407^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~514~^1.105^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~515~^1.973^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~516~^0.551^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~517~^0.444^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~518~^0.469^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~606~^5.590^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~609~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~610~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~611~^0.590^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~612~^0.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~613~^2.730^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~614~^1.850^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~617~^8.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~618~^4.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~619~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~620~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~626~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~628~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~645~^8.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19027~^~646~^4.610^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19029~^~312~^0.133^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~315~^0.148^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~404~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~405~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~406~^0.105^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~410~^0.077^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~415~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~501~^0.037^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~502~^0.108^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~503~^0.143^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~504~^0.230^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~505~^0.180^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~506~^0.044^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~507~^0.035^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~508~^0.147^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~509~^0.113^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~510~^0.151^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~511~^0.193^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~512~^0.074^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~513~^0.115^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~514~^0.309^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~515~^0.567^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~516~^0.108^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~517~^0.191^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~518~^0.150^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~605~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~606~^20.590^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~607~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~608~^0.120^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~609~^1.439^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~610~^1.160^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~611~^8.536^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~612~^3.275^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~613~^3.664^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~614~^2.360^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~615~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~617~^6.127^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~618~^15.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~619~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~626~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~645~^6.156^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~646~^15.094^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19029~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19029~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19030~^~312~^0.007^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~315~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~404~^0.007^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~405~^0.011^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19030~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19031~^~312~^0.134^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~315~^1.273^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~404~^0.311^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~405~^0.141^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~406~^3.081^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~410~^0.475^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~415~^0.072^1^^~1~^~A~^^^^^^^^^^~06/01/1996~ -~19031~^~501~^0.192^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~502~^0.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~503~^0.675^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~504~^1.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~505~^0.681^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~506~^0.247^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~507~^0.254^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~508~^0.972^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~509~^0.743^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~510~^0.797^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~511~^2.103^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~512~^0.473^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~513~^0.745^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~514~^2.161^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~515~^4.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~516~^1.081^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~517~^0.945^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~518~^0.929^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19031~^~606~^3.785^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~612~^0.059^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~613~^2.517^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~614~^1.064^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~617~^9.709^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~618~^10.286^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~619~^0.317^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~626~^0.089^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~628~^0.029^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~ -~19031~^~645~^9.860^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19031~^~646~^10.643^0^^~4~^~FLC~^^^^^^^^^^~06/01/1996~ -~19034~^~312~^0.262^4^0.007^~1~^~A~^^^1^0.243^0.276^3^0.240^0.283^~2, 3~^~09/01/2004~ -~19034~^~315~^1.113^4^0.003^~1~^~A~^^^1^1.110^1.120^3^1.105^1.120^~2, 3~^~09/01/2004~ -~19034~^~404~^0.104^4^0.011^~1~^~A~^^^1^0.077^0.123^3^0.070^0.138^~2, 3~^~09/01/2004~ -~19034~^~405~^0.083^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.067^0.098^~2, 3~^~09/01/2004~ -~19034~^~406~^2.308^4^0.092^~1~^~A~^^^1^2.160^2.570^3^2.016^2.599^~2, 3~^~09/01/2004~ -~19034~^~410~^0.510^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~415~^0.157^1^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~19034~^~501~^0.085^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~502~^0.452^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~503~^0.431^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~504~^1.473^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~505~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~506~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~507~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~508~^0.590^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~509~^0.488^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~510~^0.607^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~511~^0.598^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~512~^0.367^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~513~^0.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~514~^0.836^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~515~^2.255^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~516~^0.492^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~517~^1.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~518~^0.571^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19034~^~606~^0.637^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19034~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~610~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~611~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~612~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~613~^0.536^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~614~^0.076^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~615~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~617~^0.931^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~618~^2.263^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~619~^0.054^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~620~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~625~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~626~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19034~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19034~^~645~^0.950^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19034~^~646~^2.318^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19034~^~652~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~653~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~672~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~685~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~687~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~689~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19034~^~697~^0.000^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19035~^~312~^0.162^6^0.009^~1~^~A~^^^1^0.139^0.197^5^0.140^0.185^~2, 3~^~05/01/2006~ -~19035~^~315~^0.629^6^0.012^~1~^~A~^^^1^0.593^0.665^5^0.598^0.659^~2, 3~^~05/01/2006~ -~19035~^~404~^0.134^20^0.021^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~405~^0.057^6^0.007^~1~^~A~^^^1^0.040^0.090^5^0.038^0.075^~2, 3~^~05/01/2006~ -~19035~^~406~^1.195^6^0.026^~1~^~A~^^^1^1.130^1.280^5^1.128^1.262^~2, 3~^~05/01/2006~ -~19035~^~410~^0.230^3^0.155^~1~^~A~^^^1^0.060^0.540^2^-0.438^0.898^~2, 3~^~05/01/2006~ -~19035~^~415~^0.109^3^0.006^~1~^~A~^^^1^0.102^0.121^2^0.083^0.135^~2, 3~^~05/01/2006~ -~19035~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~502~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~503~^0.323^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~504~^1.103^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~505~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~506~^0.189^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~507~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~508~^0.442^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~509~^0.366^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~510~^0.455^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~511~^0.448^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~512~^0.275^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~513~^0.674^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~514~^0.626^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~515~^1.689^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~516~^0.369^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~517~^0.785^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~518~^0.428^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19035~^~606~^6.820^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19035~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~613~^4.610^3^0.175^~1~^~A~^^^1^4.274^4.863^2^3.857^5.362^~2, 3~^~05/01/2006~ -~19035~^~614~^1.873^3^0.074^~1~^~A~^^^1^1.729^1.971^2^1.556^2.190^~2, 3~^~05/01/2006~ -~19035~^~617~^9.654^3^0.358^~1~^~A~^^^1^8.944^10.085^2^8.115^11.193^~2, 3~^~05/01/2006~ -~19035~^~618~^22.339^3^0.810^~1~^~A~^^^1^20.731^23.322^2^18.851^25.826^~2, 3~^~05/01/2006~ -~19035~^~619~^0.853^3^0.853^~6~^~JA~^^^1^0.000^2.558^2^-2.816^4.521^~2, 3~^~05/01/2006~ -~19035~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~626~^0.037^3^0.004^~1~^~A~^^^1^0.030^0.043^2^0.020^0.053^~2, 3~^~05/01/2006~ -~19035~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~628~^0.118^3^0.004^~1~^~A~^^^1^0.110^0.125^2^0.099^0.137^~2, 3~^~05/01/2006~ -~19035~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2006~ -~19035~^~645~^9.809^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19035~^~646~^23.191^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~19035~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19035~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19036~^~312~^0.569^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~315~^0.985^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~404~^0.075^3^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~405~^0.178^3^0.026^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~406~^6.006^3^1.240^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~410~^0.434^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~415~^0.181^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19036~^~501~^0.091^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~502~^0.363^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~503~^0.372^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~504~^1.053^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~505~^0.312^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~506~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~507~^0.156^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~508~^0.488^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~509~^0.387^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~510~^0.523^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~511~^0.581^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~512~^0.280^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~513~^0.671^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~514~^0.767^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~515~^1.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~516~^0.431^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~517~^0.706^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~518~^0.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~606~^0.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~613~^0.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~614~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~617~^0.910^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~618~^1.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~619~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19036~^~645~^0.920^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19036~^~646~^1.350^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~312~^0.297^12^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~315~^0.764^12^0.026^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~404~^0.051^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~405~^0.126^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~406~^1.990^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~410~^0.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~415~^0.185^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~501~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~502~^0.231^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~503~^0.227^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~504~^0.641^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~505~^0.199^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~506~^0.112^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~507~^0.103^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~508~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~509~^0.261^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~510~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~511~^0.489^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~512~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~513~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~514~^0.572^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~515~^1.250^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~516~^0.309^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~517~^0.452^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~518~^0.308^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19038~^~606~^1.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~613~^0.820^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~614~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~617~^2.670^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~618~^3.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~619~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~628~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19038~^~645~^2.730^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19038~^~646~^3.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~312~^0.119^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~315~^0.220^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~404~^0.065^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~405~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~406~^2.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~410~^0.082^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19039~^~415~^0.028^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19039~^~501~^0.045^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~502~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~503~^0.157^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~504~^0.284^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~505~^0.281^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~506~^0.073^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~507~^0.039^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~508~^0.154^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~509~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~510~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~511~^0.235^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~512~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~513~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~514~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~515~^0.658^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~516~^0.224^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~517~^0.171^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~518~^0.156^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19039~^~606~^3.610^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~607~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~608~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~609~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~610~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~611~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~612~^0.370^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~613~^2.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~614~^0.720^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~617~^2.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~618~^4.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~619~^0.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~626~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19039~^~645~^2.880^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19039~^~646~^4.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~312~^0.140^4^0.024^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~315~^0.713^5^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~404~^0.124^8^0.034^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~405~^0.241^7^0.022^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~406~^1.453^8^0.074^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~410~^0.461^3^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~415~^0.235^3^0.014^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~501~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~502~^0.417^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~503~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~504~^1.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~505~^0.443^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~506~^0.191^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~507~^0.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~508~^0.405^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~509~^0.349^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~510~^0.489^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~511~^0.391^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~512~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~513~^0.580^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~514~^0.718^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~515~^1.729^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~516~^0.308^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~517~^0.743^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~518~^0.446^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~606~^6.410^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~607~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~608~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~609~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~610~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~611~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~612~^0.220^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~613~^4.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~614~^1.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~617~^9.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~618~^14.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~619~^0.880^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~626~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19040~^~645~^9.700^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19040~^~646~^15.370^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~312~^0.094^17^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~315~^0.069^19^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~404~^0.099^7^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~405~^0.283^12^0.070^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~406~^1.549^21^0.120^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~410~^0.430^5^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~415~^0.023^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~501~^0.118^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~502~^1.823^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~503~^1.382^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~504~^3.322^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~505~^2.783^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~506~^0.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~507~^0.529^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~508~^1.940^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~509~^1.205^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~510~^2.421^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~511~^4.841^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~512~^0.725^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~513~^5.811^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~514~^4.469^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~515~^7.625^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~516~^11.917^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~517~^7.262^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~518~^2.597^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~606~^11.370^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~607~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~608~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~609~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~610~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~611~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~612~^0.390^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~613~^6.850^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~614~^4.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~617~^13.560^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~618~^3.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~619~^0.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~620~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~621~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~626~^0.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~627~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~628~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~629~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~630~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~631~^0.000^0^^~1~^^^^^^^^^^^~06/01/1996~ -~19041~^~645~^14.780^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19041~^~646~^3.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19042~^~312~^0.247^13^0.013^~1~^~A~^^^1^0.182^0.295^7^0.215^0.279^~2, 3~^~04/01/2015~ -~19042~^~315~^0.385^13^0.018^~1~^~A~^^^1^0.270^0.444^6^0.341^0.428^~2, 3~^~04/01/2015~ -~19042~^~404~^0.221^7^0.010^~1~^~A~^^^1^0.170^0.250^5^0.195^0.246^~2, 3~^~04/01/2015~ -~19042~^~405~^0.119^7^0.002^~1~^~A~^^^1^0.100^0.130^2^0.111^0.126^~2, 3~^~04/01/2015~ -~19042~^~406~^4.957^7^0.278^~1~^~A~^^^1^3.920^5.920^3^4.105^5.809^~2, 3~^~04/01/2015~ -~19042~^~410~^0.850^5^0.041^~1~^~A~^^^1^0.720^0.920^3^0.715^0.984^~2, 3~^~04/01/2015~ -~19042~^~415~^0.375^7^0.015^~1~^~A~^^^1^0.350^0.430^3^0.328^0.421^~2, 3~^~04/01/2015~ -~19042~^~605~^0.124^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~606~^4.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~607~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~19042~^~608~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~19042~^~609~^0.005^13^0.000^~1~^~A~^^^1^0.003^0.013^8^0.004^0.006^~2, 3~^~04/01/2015~ -~19042~^~610~^0.010^13^0.000^~1~^~A~^^^1^0.007^0.012^7^0.009^0.011^~2, 3~^~05/01/2013~ -~19042~^~611~^0.004^13^0.001^~1~^~A~^^^1^0.000^0.009^7^0.003^0.006^~1, 2, 3~^~05/01/2013~ -~19042~^~612~^0.051^13^0.030^~1~^~A~^^^1^0.013^0.278^6^-0.023^0.125^~2, 3~^~04/01/2015~ -~19042~^~613~^2.799^13^0.586^~1~^~A~^^^1^1.729^7.020^6^1.379^4.218^~2, 3~^~04/01/2015~ -~19042~^~614~^0.798^13^0.045^~1~^~A~^^^1^0.494^1.017^6^0.689^0.907^~2, 3~^~04/01/2015~ -~19042~^~615~^0.109^13^0.005^~1~^~A~^^^1^0.089^0.157^8^0.098^0.119^~2, 3~^~05/01/2013~ -~19042~^~617~^13.040^13^1.260^~1~^~AS~^^^1^4.980^17.056^6^10.004^16.075^~2, 3~^~04/01/2015~ -~19042~^~618~^11.887^13^0.654^~1~^~AS~^^^1^9.774^16.120^7^10.355^13.418^~2, 3~^~04/01/2015~ -~19042~^~619~^0.296^13^0.054^~1~^~AS~^^^1^0.095^1.417^10^0.176^0.417^~2, 3~^~04/01/2015~ -~19042~^~620~^0.009^13^0.000^~1~^~A~^^^1^0.006^0.011^7^0.008^0.010^~2, 3~^~04/01/2015~ -~19042~^~621~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~19042~^~624~^0.136^13^0.020^~1~^~A~^^^1^0.037^0.218^6^0.088^0.183^~2, 3~^~04/01/2015~ -~19042~^~625~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~19042~^~626~^0.052^13^0.016^~1~^~AS~^^^1^0.028^0.173^6^0.012^0.091^~2, 3~^~04/01/2015~ -~19042~^~627~^0.005^13^0.002^~1~^~A~^^^1^0.000^0.014^7^0.001^0.010^~1, 2, 3~^~05/01/2013~ -~19042~^~628~^0.115^13^0.019^~1~^~A~^^^1^0.033^0.306^8^0.070^0.160^~2, 3~^~04/01/2015~ -~19042~^~629~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~19042~^~630~^0.003^13^0.001^~1~^~AS~^^^1^0.000^0.016^11^0.001^0.005^~2, 3~^~04/01/2015~ -~19042~^~631~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~19042~^~645~^13.221^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~646~^12.207^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~652~^0.006^13^0.000^~1~^~A~^^^1^0.003^0.009^8^0.005^0.008^~2, 3~^~05/01/2013~ -~19042~^~653~^0.017^13^0.002^~1~^~A~^^^1^0.013^0.027^6^0.013^0.021^~2, 3~^~04/01/2015~ -~19042~^~654~^0.067^13^0.006^~1~^~A~^^^1^0.036^0.091^6^0.053^0.081^~2, 3~^~04/01/2015~ -~19042~^~662~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19042~^~663~^0.021^13^0.004^~1~^~A~^^^1^0.013^0.053^6^0.010^0.031^~2, 3~^~04/01/2015~ -~19042~^~664~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.000^~1, 2, 3~^~05/01/2013~ -~19042~^~665~^0.103^13^0.009^~1~^~A~^^^1^0.054^0.271^11^0.082^0.124^~2, 3~^~04/01/2015~ -~19042~^~670~^0.017^13^0.006^~1~^~A~^^^1^0.003^0.057^7^0.004^0.031^~2, 3~^~04/01/2015~ -~19042~^~671~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19042~^~672~^0.003^13^0.001^~1~^~A~^^^1^0.000^0.009^7^0.001^0.005^~1, 2, 3~^~05/01/2013~ -~19042~^~673~^0.052^13^0.016^~1~^~A~^^^1^0.028^0.173^6^0.012^0.091^~2, 3~^~04/01/2015~ -~19042~^~674~^13.019^13^1.264^~1~^~A~^^^1^4.927^17.041^6^9.973^16.065^~2, 3~^~04/01/2015~ -~19042~^~675~^11.766^13^0.643^~1~^~A~^^^1^9.692^15.799^7^10.261^13.271^~2, 3~^~04/01/2015~ -~19042~^~676~^0.003^13^0.001^~1~^~A~^^^1^0.000^0.016^10^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~19042~^~685~^0.014^13^0.003^~1~^~A~^^^1^0.004^0.053^10^0.008^0.020^~2, 3~^~04/01/2015~ -~19042~^~687~^0.012^13^0.002^~1~^~A~^^^1^0.000^0.018^6^0.008^0.017^~1, 2, 3~^~04/01/2015~ -~19042~^~689~^0.007^13^0.001^~1~^~AS~^^^1^0.001^0.023^8^0.004^0.010^~2, 3~^~04/01/2015~ -~19042~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~695~^0.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19042~^~697~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19042~^~851~^0.282^13^0.051^~1~^~A~^^^1^0.087^1.364^9^0.166^0.397^~2, 3~^~04/01/2015~ -~19042~^~852~^0.003^13^0.000^~1~^~A~^^^1^0.001^0.007^7^0.002^0.004^~1, 2, 3~^~04/01/2015~ -~19042~^~853~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19042~^~856~^0.001^13^0.000^~1~^~A~^^^1^0.000^0.004^7^-0.001^0.002^~1, 2, 3~^~05/01/2013~ -~19042~^~858~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19043~^~312~^0.299^27^0.025^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~315~^0.405^22^0.027^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~404~^0.189^40^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~405~^0.200^40^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~406~^4.029^37^0.172^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~410~^0.827^3^0.017^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~415~^0.665^12^0.057^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~501~^0.118^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~502~^0.425^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~503~^0.403^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~504~^0.655^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~505~^0.576^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~506~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~507~^0.129^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~508~^0.272^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~509~^0.238^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~510~^0.421^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~511~^0.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~512~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~513~^0.327^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~514~^0.898^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~515~^1.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~516~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~517~^0.462^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~518~^0.362^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~606~^8.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~607~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~608~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~609~^0.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~610~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~611~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~612~^0.300^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~613~^7.730^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~614~^0.820^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~617~^5.840^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~618~^17.340^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~619~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~626~^0.280^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~628~^0.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~645~^6.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19043~^~646~^17.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~312~^0.153^4^0.004^~1~^~A~^^^1^0.145^0.164^3^0.140^0.167^~2, 3~^~03/01/2008~ -~19045~^~315~^0.361^4^0.003^~1~^~A~^^^1^0.357^0.370^3^0.351^0.371^~2, 3~^~03/01/2008~ -~19045~^~404~^0.212^4^0.036^~1~^~A~^^^1^0.160^0.320^3^0.097^0.328^~2, 3~^~03/01/2008~ -~19045~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~406~^3.595^4^0.064^~1~^~A~^^^1^3.420^3.700^3^3.391^3.799^~2, 3~^~03/01/2008~ -~19045~^~410~^0.830^4^0.029^~1~^~A~^^^1^0.780^0.910^3^0.739^0.921^~2, 3~^~03/01/2008~ -~19045~^~415~^0.412^4^0.023^~1~^~A~^^^1^0.360^0.470^3^0.340^0.485^~2, 3~^~03/01/2008~ -~19045~^~501~^0.044^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~502~^0.245^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~503~^0.248^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~504~^0.369^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~505~^0.353^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~507~^0.073^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~508~^0.258^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~509~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~510~^0.329^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~511~^0.272^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~512~^0.125^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~513~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~514~^1.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~515~^0.939^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~516~^0.194^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~517~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~518~^0.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19045~^~605~^0.139^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~606~^6.759^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~607~^0.007^4^0.002^~1~^~A~^^^1^0.000^0.010^3^0.000^0.014^~1, 2, 3~^~03/01/2008~ -~19045~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~609~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~03/01/2008~ -~19045~^~610~^0.010^4^0.005^~1~^~A~^^^1^0.001^0.019^3^-0.006^0.026^~2, 3~^~03/01/2008~ -~19045~^~611~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.005^0.008^~2, 3~^~03/01/2008~ -~19045~^~612~^0.192^4^0.001^~1~^~A~^^^1^0.189^0.194^3^0.188^0.195^~2, 3~^~03/01/2008~ -~19045~^~613~^5.806^4^0.075^~1~^~A~^^^1^5.643^5.980^3^5.567^6.044^~2, 3~^~03/01/2008~ -~19045~^~614~^0.653^4^0.007^~1~^~A~^^^1^0.632^0.663^3^0.630^0.675^~2, 3~^~03/01/2008~ -~19045~^~615~^0.035^4^0.020^~1~^~A~^^^1^0.000^0.070^3^-0.029^0.099^~1, 2, 3~^~03/01/2008~ -~19045~^~617~^4.389^4^0.065^~1~^~AS~^^^1^4.201^4.483^3^4.184^4.595^~2, 3~^~03/01/2008~ -~19045~^~618~^12.123^4^0.232^~1~^~AS~^^^1^11.610^12.660^3^11.385^12.860^~2, 3~^~03/01/2008~ -~19045~^~619~^0.043^4^0.001^~1~^~AS~^^^1^0.041^0.045^3^0.041^0.046^~2, 3~^~03/01/2008~ -~19045~^~620~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19045~^~624~^0.017^4^0.010^~1~^~A~^^^1^0.001^0.035^3^-0.013^0.048^~2, 3~^~03/01/2008~ -~19045~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~626~^0.126^4^0.001^~1~^~AS~^^^1^0.124^0.130^3^0.122^0.130^~2, 3~^~03/01/2008~ -~19045~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~628~^0.021^4^0.001^~1~^~A~^^^1^0.020^0.023^3^0.019^0.024^~2, 3~^~03/01/2008~ -~19045~^~629~^0.019^4^0.007^~1~^~A~^^^1^0.006^0.033^3^-0.004^0.043^~2, 3~^~03/01/2008~ -~19045~^~630~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~03/01/2008~ -~19045~^~631~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.001^0.010^~1, 2, 3~^~03/01/2008~ -~19045~^~645~^4.553^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~646~^12.201^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~652~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~03/01/2008~ -~19045~^~653~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~03/01/2008~ -~19045~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~663~^0.033^4^0.006^~1~^~A~^^^1^0.017^0.046^3^0.013^0.054^~2, 3~^~03/01/2008~ -~19045~^~664~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~665~^0.105^4^0.003^~1~^~A~^^^1^0.097^0.110^3^0.096^0.113^~2, 3~^~03/01/2008~ -~19045~^~670~^0.032^4^0.002^~1~^~A~^^^1^0.029^0.038^3^0.026^0.039^~2, 3~^~03/01/2008~ -~19045~^~671~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.011^~2, 3~^~03/01/2008~ -~19045~^~672~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~2, 3~^~03/01/2008~ -~19045~^~673~^0.126^4^0.001^~1~^~A~^^^1^0.124^0.130^3^0.122^0.130^~2, 3~^~03/01/2008~ -~19045~^~674~^4.356^4^0.058^~1~^~A~^^^1^4.184^4.437^3^4.170^4.542^~2, 3~^~03/01/2008~ -~19045~^~675~^11.986^4^0.229^~1~^~A~^^^1^11.484^12.522^3^11.258^12.713^~2, 3~^~03/01/2008~ -~19045~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~687~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.005^0.015^~1, 2, 3~^~03/01/2008~ -~19045~^~689~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.001^~2, 3~^~03/01/2008~ -~19045~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~695~^0.105^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~19045~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~851~^0.043^4^0.001^~1~^~A~^^^1^0.041^0.045^3^0.041^0.046^~2, 3~^~03/01/2008~ -~19045~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19045~^~853~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~03/01/2008~ -~19045~^~858~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.005^~1, 2, 3~^~03/01/2008~ -~19046~^~312~^0.063^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~315~^0.405^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~404~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~405~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~406~^2.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~410~^0.827^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~415~^0.476^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19046~^~501~^0.072^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~502~^0.284^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~503~^0.313^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~504~^0.485^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~505~^0.437^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~506~^0.102^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~507~^0.076^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~508~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~509~^0.254^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~510~^0.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~511~^0.306^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~512~^0.148^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~513~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~514~^0.928^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~515~^1.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~516~^0.206^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~517~^0.373^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~518~^0.291^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~606~^9.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~607~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~608~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~609~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~610~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~611~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~612~^0.450^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~613~^7.770^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~614~^1.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~617~^6.760^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~618~^18.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~619~^0.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~626~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~645~^7.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19046~^~646~^18.780^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19047~^~312~^0.156^21^0.002^~1~^~A~^^^2^0.138^0.185^6^0.152^0.160^~2, 3~^~07/01/2014~ -~19047~^~315~^1.015^21^0.040^~1~^~A~^^^2^0.708^1.460^5^0.913^1.117^~2, 3~^~12/01/2014~ -~19047~^~404~^0.424^12^0.005^~1~^~A~^^^3^0.330^0.636^2^0.407^0.442^~2, 3~^~07/01/2014~ -~19047~^~405~^0.332^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~ -~19047~^~406~^5.270^11^0.100^~1~^~A~^^^2^4.370^7.710^3^4.968^5.571^~2, 3~^~12/01/2014~ -~19047~^~410~^0.322^10^0.010^~1~^~A~^^^2^0.220^0.480^2^0.279^0.364^~2, 3~^~12/01/2014~ -~19047~^~415~^0.074^11^0.004^~1~^~A~^^^2^0.015^0.101^3^0.061^0.086^~1, 2, 3~^~12/01/2014~ -~19047~^~501~^0.097^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~502~^0.250^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~503~^0.407^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~504~^0.757^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~505~^0.257^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~506~^0.177^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~507~^0.170^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~508~^0.520^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~509~^0.324^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~510~^0.480^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~511~^0.363^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~512~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~513~^0.340^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~514~^0.597^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~515~^3.647^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~516~^0.417^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~517~^1.199^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19047~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19047~^~606~^0.391^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~19047~^~607~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~608~^0.000^12^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~609~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~610~^0.002^11^0.001^~1~^~A~^^^2^0.000^0.010^1^-0.010^0.014^~1, 2, 3~^~05/01/2013~ -~19047~^~611~^0.001^12^0.000^~1~^~A~^^^3^0.000^0.003^1^-0.002^0.003^~1, 2, 3~^~05/01/2013~ -~19047~^~612~^0.001^12^0.000^~1~^~A~^^^3^0.000^0.005^2^0.001^0.002^~1, 2, 3~^~07/01/2014~ -~19047~^~613~^0.320^11^0.005^~1~^~A~^^^2^0.194^0.550^4^0.308^0.333^~2, 3~^~12/01/2014~ -~19047~^~614~^0.050^12^0.001^~1~^~A~^^^3^0.032^0.149^1^0.042^0.058^~2, 3~^~07/01/2014~ -~19047~^~615~^0.010^12^0.000^~1~^~A~^^^3^0.007^0.015^2^0.009^0.012^~2, 3~^~07/01/2014~ -~19047~^~617~^0.706^11^0.042^~1~^~AS~^^^2^0.251^1.147^1^0.236^1.176^~2, 3~^~12/01/2014~ -~19047~^~618~^1.227^11^0.019^~1~^~AS~^^^2^0.693^2.425^4^1.174^1.279^~2, 3~^~12/01/2014~ -~19047~^~619~^0.064^11^0.001^~1~^~AS~^^^2^0.055^0.075^2^0.055^0.072^~2, 3~^~12/01/2014~ -~19047~^~620~^0.000^12^0.000^~1~^~A~^^^3^0.000^0.002^3^0.000^0.000^~1, 2, 3~^~07/01/2007~ -~19047~^~621~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~624~^0.003^11^0.000^~1~^~A~^^^2^0.000^0.006^2^0.003^0.003^~1, 2, 3~^~07/01/2014~ -~19047~^~625~^0.000^12^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~626~^0.003^11^0.001^~1~^~AS~^^^2^0.000^0.007^1^-0.003^0.010^~2, 3~^~12/01/2014~ -~19047~^~627~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~628~^0.016^12^0.001^~1~^~A~^^^3^0.010^0.023^2^0.012^0.020^~2, 3~^~07/01/2014~ -~19047~^~629~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~630~^0.001^11^0.000^~1~^~AS~^^^2^0.000^0.003^4^0.000^0.001^~2, 3~^~12/01/2014~ -~19047~^~631~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~645~^0.727^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~ -~19047~^~646~^1.291^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19047~^~652~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.004^2^0.001^0.001^~1, 2, 3~^~07/01/2014~ -~19047~^~653~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~07/01/2014~ -~19047~^~654~^0.004^11^0.001^~1~^~A~^^^2^0.000^0.008^1^-0.008^0.016^~1, 2, 3~^~12/01/2014~ -~19047~^~662~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~663~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.006^3^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~19047~^~664~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~665~^0.004^11^0.000^~1~^~A~^^^2^0.000^0.008^2^0.003^0.004^~1, 2, 3~^~07/01/2014~ -~19047~^~670~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~671~^0.000^12^0.000^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~672~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.003^3^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~19047~^~673~^0.003^11^0.001^~1~^~A~^^^2^0.000^0.007^1^-0.003^0.010^~1, 2, 3~^~12/01/2014~ -~19047~^~674~^0.705^11^0.042^~1~^~A~^^^2^0.251^1.147^1^0.232^1.178^~2, 3~^~12/01/2014~ -~19047~^~675~^1.223^11^0.019^~1~^~A~^^^2^0.690^2.419^4^1.170^1.275^~2, 3~^~07/01/2014~ -~19047~^~676~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.003^4^0.000^0.001^~1, 2, 3~^~05/01/2013~ -~19047~^~685~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~05/01/2013~ -~19047~^~687~^0.001^12^0.000^~1~^~A~^^^3^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~05/01/2013~ -~19047~^~689~^0.000^11^0.000^~1~^~AS~^^^2^0.000^0.003^1^-0.003^0.004^~2, 3~^~12/01/2014~ -~19047~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19047~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19047~^~697~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2007~ -~19047~^~851~^0.063^11^0.001^~1~^~A~^^^2^0.054^0.075^2^0.055^0.071^~2, 3~^~07/01/2014~ -~19047~^~852~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.002^2^0.000^0.000^~1, 2, 3~^~05/01/2013~ -~19047~^~853~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19047~^~858~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19048~^~312~^0.302^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~315~^0.562^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~404~^0.099^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~405~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~406~^0.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~410~^0.759^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~415~^0.172^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19048~^~501~^0.096^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~502~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~503~^0.287^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~504~^0.531^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~505~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~506~^0.131^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~507~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~508~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~509~^0.234^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~510~^0.332^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~511~^0.306^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~512~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~513~^0.274^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~514~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~515~^2.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~516~^0.268^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~517~^0.743^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~518~^0.365^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~606~^7.680^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~607~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~609~^0.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~610~^0.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~611~^2.920^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~612~^1.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~613~^1.940^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~614~^1.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~617~^5.370^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~618~^1.990^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~619~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~626~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19048~^~645~^5.390^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19048~^~646~^2.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19049~^~312~^0.119^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~315~^0.448^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~404~^0.300^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~ -~19049~^~405~^0.557^3^0.019^~1~^^^^^^^^^^^~08/01/1991~ -~19049~^~406~^3.183^3^0.436^~1~^^^^^^^^^^^~08/01/1991~ -~19049~^~410~^0.481^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~415~^0.046^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19049~^~605~^0.043^0^^~4~^~T~^^^^^^^^^^~01/01/2006~ -~19049~^~606~^9.656^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~607~^0.225^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~608~^0.129^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~609~^0.251^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~610~^0.271^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~611~^1.774^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~612~^1.239^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~613~^4.411^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~614~^1.321^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~615~^0.028^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~617~^3.580^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~618~^1.241^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~619~^0.113^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~626~^0.216^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~628~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~645~^3.806^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~646~^1.354^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~654~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19049~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19050~^~312~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~315~^2.662^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~404~^0.440^3^0.091^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~405~^0.291^3^0.135^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~406~^6.537^3^1.181^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~410~^0.812^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~415~^0.274^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19050~^~501~^0.172^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~502~^0.325^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~503~^0.412^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~504~^0.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~505~^0.307^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~506~^0.178^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~507~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~508~^0.523^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~509~^0.328^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~510~^0.504^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~511~^0.563^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~512~^0.258^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~513~^0.399^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~514~^0.592^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~515~^3.414^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~516~^0.456^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~517~^1.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~518~^0.523^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~606~^0.560^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~609~^0.000^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~610~^0.000^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~611~^0.030^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~612~^0.020^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~613~^0.340^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~614~^0.170^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~617~^1.030^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~618~^0.790^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~619~^0.040^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~645~^1.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19050~^~646~^0.830^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~312~^0.445^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~315~^3.730^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19051~^~404~^0.061^9^0.012^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~405~^0.165^8^0.036^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~406~^7.806^7^0.419^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~410~^1.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~415~^0.150^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~501~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~502~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~503~^0.346^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~504~^0.675^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~505~^0.311^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~506~^0.184^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~507~^0.099^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~508~^0.421^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~509~^0.306^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~510~^0.479^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~511~^0.618^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~512~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~513~^0.476^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~514~^0.764^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~515~^1.662^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~516~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~517~^0.383^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~518~^0.422^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~606~^0.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~613~^0.480^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~614~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~617~^1.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~618~^0.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19051~^~645~^1.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19051~^~646~^0.990^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~312~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~315~^6.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~404~^0.056^4^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~405~^0.103^4^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~406~^8.096^4^1.129^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~410~^1.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~415~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~501~^0.125^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~502~^0.340^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~503~^0.358^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~504~^0.638^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~505~^0.414^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~506~^0.152^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~507~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~508~^0.399^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~509~^0.233^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~510~^0.489^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~511~^0.677^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~512~^0.218^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~513~^0.517^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~514~^0.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~515~^1.568^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~516~^0.603^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~517~^0.376^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~518~^0.467^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~606~^0.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~609~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~612~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~613~^0.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~614~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~617~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~618~^1.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~626~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~630~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~645~^1.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19052~^~646~^1.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~312~^0.390^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~315~^4.299^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19053~^~404~^0.048^5^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~405~^0.085^6^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~406~^7.205^4^0.632^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~410~^1.461^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19053~^~415~^0.155^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~501~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~502~^0.279^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~503~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~504~^0.625^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~505~^0.288^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~506~^0.174^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~507~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~508~^0.391^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~509~^0.286^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~510~^0.444^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~511~^0.595^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~512~^0.193^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~513~^0.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~514~^0.710^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~515~^1.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~516~^0.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~517~^0.355^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~518~^0.394^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~606~^0.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~613~^0.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~614~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~617~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~618~^1.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~619~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~645~^1.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19053~^~646~^1.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19056~^~312~^0.097^12^0.001^~1~^~A~^^^1^0.080^0.103^5^0.093^0.100^~2, 3~^~07/01/2014~ -~19056~^~315~^0.388^12^0.009^~1~^~A~^^^1^0.245^0.428^5^0.367^0.410^~2, 3~^~07/01/2014~ -~19056~^~404~^0.140^7^0.013^~1~^~A~^^^1^0.100^0.240^3^0.097^0.183^~2, 3~^~07/01/2014~ -~19056~^~405~^0.070^7^0.004^~1~^~A~^^^1^0.065^0.079^2^0.055^0.086^~2, 3~^~07/01/2014~ -~19056~^~406~^0.838^7^0.040^~1~^~A~^^^1^0.730^1.050^2^0.668^1.009^~2, 3~^~07/01/2014~ -~19056~^~410~^0.297^5^0.008^~1~^~A~^^^1^0.270^0.350^2^0.254^0.341^~2, 3~^~07/01/2014~ -~19056~^~415~^0.179^7^0.017^~1~^~A~^^^1^0.140^0.330^3^0.128^0.230^~2, 3~^~07/01/2014~ -~19056~^~605~^0.812^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~606~^2.811^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19056~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~19056~^~609~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.017^8^0.007^0.009^~2, 3~^~07/01/2014~ -~19056~^~610~^0.010^12^0.001^~1~^~A~^^^1^0.008^0.013^4^0.009^0.012^~2, 3~^~07/01/2014~ -~19056~^~611~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.012^7^0.002^0.005^~1, 2, 3~^~07/01/2014~ -~19056~^~612~^0.015^12^0.004^~1~^~A~^^^1^0.006^0.171^4^0.004^0.026^~2, 3~^~07/01/2014~ -~19056~^~613~^2.245^12^0.099^~1~^~A~^^^1^0.976^4.604^5^1.988^2.503^~2, 3~^~07/01/2014~ -~19056~^~614~^0.376^12^0.008^~1~^~A~^^^1^0.280^0.576^7^0.355^0.396^~2, 3~^~07/01/2014~ -~19056~^~615~^0.076^12^0.002^~1~^~A~^^^1^0.059^0.116^8^0.072^0.080^~2, 3~^~07/01/2014~ -~19056~^~617~^5.560^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~618~^10.522^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~619~^0.231^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~620~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.008^4^0.004^0.006^~2, 3~^~05/01/2013~ -~19056~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~19056~^~624~^0.028^12^0.001^~1~^~A~^^^1^0.021^0.057^6^0.025^0.030^~2, 3~^~07/01/2014~ -~19056~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~626~^0.023^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~627~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.018^5^-0.001^0.006^~1, 2, 3~^~07/01/2014~ -~19056~^~628~^0.071^12^0.006^~1~^~A~^^^1^0.027^0.259^5^0.056^0.087^~2, 3~^~07/01/2014~ -~19056~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2014~ -~19056~^~630~^0.002^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~ -~19056~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~19056~^~645~^5.664^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~646~^10.769^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19056~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~07/01/2014~ -~19056~^~653~^0.014^12^0.000^~1~^~A~^^^1^0.010^0.018^6^0.013^0.015^~2, 3~^~05/01/2013~ -~19056~^~654~^0.033^12^0.001^~1~^~A~^^^1^0.023^0.037^7^0.032^0.035^~2, 3~^~05/01/2013~ -~19056~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~19056~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.004^4^0.000^0.000^~1, 2, 3~^~05/01/2013~ -~19056~^~665~^0.098^12^0.003^~1~^~A~^^^1^0.023^0.351^5^0.090^0.107^~2, 3~^~07/01/2014~ -~19056~^~666~^0.713^4^0.031^~1~^~A~^^^1^0.635^0.774^3^0.614^0.811^~2, 3~^~07/01/2014~ -~19056~^~670~^0.015^12^0.002^~1~^~A~^^^1^0.002^0.039^5^0.011^0.020^~1, 2, 3~^~07/01/2014~ -~19056~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~672~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.009^5^0.002^0.007^~1, 2, 3~^~05/01/2013~ -~19056~^~673~^0.023^12^0.002^~1~^~A~^^^1^0.016^0.112^5^0.019^0.028^~2, 3~^~07/01/2014~ -~19056~^~674~^5.560^12^0.190^~1~^~A~^^^1^3.513^10.970^5^5.081^6.039^~2, 3~^~07/01/2014~ -~19056~^~675~^9.695^12^0.222^~1~^~A~^^^1^4.347^11.067^8^9.183^10.208^~2, 3~^~07/01/2014~ -~19056~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.007^7^0.001^0.002^~1, 2, 3~^~05/01/2013~ -~19056~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19056~^~687~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.012^8^0.007^0.008^~2, 3~^~05/01/2013~ -~19056~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~695~^0.812^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19056~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~851~^0.230^12^0.037^~1~^~A~^^^1^0.047^1.414^4^0.128^0.333^~2, 3~^~07/01/2014~ -~19056~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19056~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~19056~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2013~ -~19056~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2015~ -~19057~^~312~^0.102^12^0.003^~1~^~A~^^^1^0.047^0.113^5^0.095^0.109^~2, 3~^~07/01/2014~ -~19057~^~315~^0.330^12^0.003^~1~^~A~^^^1^0.306^0.395^5^0.322^0.339^~2, 3~^~07/01/2014~ -~19057~^~404~^0.153^5^0.012^~1~^~A~^^^1^0.130^0.170^2^0.103^0.204^~2, 3~^~07/01/2014~ -~19057~^~405~^0.136^6^0.006^~1~^~A~^^^1^0.110^0.150^2^0.108^0.164^~2, 3~^~07/01/2014~ -~19057~^~406~^1.290^6^0.082^~1~^~A~^^^1^0.980^1.460^2^0.940^1.639^~2, 3~^~07/01/2014~ -~19057~^~410~^0.364^4^0.005^~1~^~A~^^^1^0.340^0.370^1^0.303^0.426^~2, 3~^~07/01/2014~ -~19057~^~415~^0.220^6^0.024^~1~^~A~^^^1^0.190^0.300^2^0.116^0.325^~2, 3~^~07/01/2014~ -~19057~^~501~^0.066^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~502~^0.282^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~503~^0.296^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~504~^0.881^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~505~^0.291^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~506~^0.163^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~507~^0.125^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~508~^0.374^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~509~^0.318^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~510~^0.402^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~511~^0.387^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~512~^0.238^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~513~^0.503^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~514~^0.537^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~515~^1.507^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~516~^0.286^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~517~^0.676^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~518~^0.370^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19057~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~19057~^~605~^0.185^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~606~^3.876^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~607~^0.023^6^0.001^~1~^~A~^^^1^0.015^0.024^2^0.020^0.025^~2, 3~^~07/01/2014~ -~19057~^~608~^0.016^6^0.000^~1~^~A~^^^1^0.008^0.017^2^0.015^0.018^~2, 3~^~07/01/2014~ -~19057~^~609~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.030^2^0.014^0.021^~2, 3~^~07/01/2014~ -~19057~^~610~^0.028^6^0.001^~1~^~A~^^^1^0.018^0.030^2^0.025^0.032^~2, 3~^~07/01/2014~ -~19057~^~611~^0.035^6^0.000^~1~^~A~^^^1^0.017^0.035^2^0.034^0.035^~2, 3~^~07/01/2014~ -~19057~^~612~^0.106^6^0.002^~1~^~A~^^^1^0.051^0.111^2^0.098^0.114^~2, 3~^~07/01/2014~ -~19057~^~613~^2.860^6^0.154^~1~^~A~^^^1^2.577^3.340^2^2.202^3.518^~2, 3~^~07/01/2014~ -~19057~^~614~^0.563^6^0.011^~1~^~A~^^^1^0.430^0.633^2^0.517^0.609^~2, 3~^~07/01/2014~ -~19057~^~615~^0.107^6^0.005^~1~^~A~^^^1^0.083^0.113^2^0.085^0.128^~2, 3~^~07/01/2014~ -~19057~^~617~^8.854^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~618~^11.967^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~619~^0.272^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~620~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.006^0.006^~2, 3~^~05/01/2014~ -~19057~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~624~^0.039^6^0.004^~1~^~A~^^^1^0.028^0.044^2^0.023^0.055^~2, 3~^~07/01/2014~ -~19057~^~625~^0.009^6^0.000^~1~^~A~^^^1^0.004^0.010^2^0.008^0.011^~2, 3~^~07/01/2014~ -~19057~^~626~^0.046^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~19057~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~628~^0.119^6^0.018^~1~^~A~^^^1^0.071^0.140^2^0.041^0.198^~2, 3~^~07/01/2014~ -~19057~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.010^2^0.000^0.000^~1, 2, 3~^~07/01/2014~ -~19057~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~19057~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~645~^9.089^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19057~^~646~^12.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~652~^0.014^6^0.000^~1~^~A~^^^1^0.007^0.014^2^0.014^0.014^~2, 3~^~07/01/2014~ -~19057~^~653~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.024^2^0.019^0.024^~2, 3~^~05/01/2006~ -~19057~^~654~^0.045^6^0.001^~1~^~A~^^^1^0.039^0.048^2^0.040^0.050^~2, 3~^~07/01/2014~ -~19057~^~662~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~05/01/2014~ -~19057~^~663~^0.032^6^0.002^~1~^~A~^^^1^0.025^0.155^4^0.027^0.037^~2, 3~^~07/01/2014~ -~19057~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~665~^0.046^6^0.004^~1~^~A~^^^1^0.036^0.067^2^0.030^0.062^~2, 3~^~07/01/2014~ -~19057~^~669~^0.105^13^0.004^~1~^~A~^^^1^0.084^0.130^12^0.096^0.113^~2, 3~^~05/01/2006~ -~19057~^~670~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.022^2^0.014^0.022^~2, 3~^~05/01/2014~ -~19057~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~672~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^2^0.005^0.009^~2, 3~^~05/01/2014~ -~19057~^~673~^0.044^6^0.002^~1~^~A~^^^1^0.028^0.047^2^0.033^0.054^~2, 3~^~07/01/2014~ -~19057~^~674~^8.822^6^0.766^~1~^~A~^^^1^6.119^9.766^2^5.530^12.113^~2, 3~^~07/01/2014~ -~19057~^~675~^11.798^6^0.739^~1~^~A~^^^1^10.441^13.388^2^8.626^14.970^~2, 3~^~07/01/2014~ -~19057~^~676~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.005^2^0.001^0.005^~1, 2, 3~^~05/01/2014~ -~19057~^~685~^0.011^6^0.001^~1~^~A~^^^1^0.005^0.013^2^0.005^0.017^~2, 3~^~07/01/2014~ -~19057~^~687~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.013^2^0.008^0.016^~2, 3~^~07/01/2014~ -~19057~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~19057~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~695~^0.151^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~19057~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~19057~^~851~^0.262^6^0.012^~1~^~A~^^^1^0.195^0.276^2^0.211^0.312^~2, 3~^~07/01/2014~ -~19057~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.002^0.005^~2, 3~^~05/01/2014~ -~19057~^~853~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~19057~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19057~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19058~^~312~^0.101^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~315~^0.365^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~404~^0.048^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~405~^0.060^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~406~^1.300^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~410~^0.600^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~415~^0.200^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~501~^0.058^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~502~^0.285^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~503~^0.280^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~504~^0.871^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~505~^0.246^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~506~^0.154^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~507~^0.131^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~508~^0.358^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~509~^0.297^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~510~^0.380^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~511~^0.385^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~512~^0.223^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~513~^0.528^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~514~^0.542^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~515~^1.463^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~516~^0.295^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~517~^0.633^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~518~^0.351^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~19058~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~605~^0.345^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~606~^3.539^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~610~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~611~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~612~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~613~^2.769^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~614~^0.548^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~615~^0.099^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~617~^6.719^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~618~^13.195^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~619~^0.235^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~ -~19058~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~624~^0.034^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~626~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~628~^0.059^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~645~^7.047^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~646~^13.528^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~653~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2005~ -~19058~^~663~^0.247^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~669~^0.098^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19058~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~693~^0.247^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~695~^0.098^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~ -~19058~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~ -~19058~^~851~^0.235^1^^~1~^~A~^^^^^^^^^^~05/01/2005~ -~19059~^~312~^0.985^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~315~^1.034^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~404~^0.462^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~405~^0.198^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~406~^4.712^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~410~^0.895^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~415~^0.298^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~501~^0.166^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~502~^0.482^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~503~^0.515^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~504~^0.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~505~^0.515^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~506~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~507~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~508~^0.658^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~509~^0.457^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~510~^0.658^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~511~^1.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~512~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~513~^0.587^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~514~^1.523^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~515~^3.023^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~516~^0.775^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~517~^0.625^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~518~^0.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~606~^5.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~609~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~610~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~611~^1.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~612~^0.480^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~613~^2.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~614~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~617~^12.290^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~618~^9.580^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~628~^0.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~645~^12.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19059~^~646~^9.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~312~^0.528^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~315~^0.966^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~404~^0.450^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~405~^0.115^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~406~^1.482^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~410~^1.218^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~415~^0.327^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~501~^0.075^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~502~^0.223^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~503~^0.222^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~504~^0.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~505~^0.224^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~506~^0.146^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~507~^0.115^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~508~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~509~^0.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~510~^0.296^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~511~^0.586^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~512~^0.211^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~513~^0.289^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~514~^0.698^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~515~^1.403^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~516~^0.267^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~517~^0.228^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~518~^0.209^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~606~^8.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~608~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~609~^0.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~610~^0.510^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~611~^3.860^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~612~^1.490^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~613~^1.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~614~^0.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~617~^2.460^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~618~^5.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~626~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~628~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~645~^2.490^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19061~^~646~^5.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~312~^0.844^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~315~^1.062^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~404~^0.413^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~405~^0.224^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~406~^4.405^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~410~^0.964^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~415~^0.259^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~501~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~502~^0.501^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~503~^0.555^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~504~^0.955^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~505~^0.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~506~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~507~^0.191^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~508~^0.687^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~509~^0.506^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~510~^0.702^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~511~^1.498^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~512~^0.356^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~513~^0.581^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~514~^1.531^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~515~^3.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~516~^0.767^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~517~^0.689^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~518~^0.656^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~606~^6.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19062~^~609~^0.202^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~610~^0.173^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~611~^1.211^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~612~^0.519^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~613~^2.644^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~614~^1.106^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~615~^0.084^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~617~^12.768^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~618~^10.778^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~619~^0.077^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~620~^0.009^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~624~^0.091^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~626~^0.067^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~627~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~628~^0.183^1^^~1~^^^^^^^^^^^~07/01/2013~ -~19062~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~630~^0.005^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~19062~^~645~^13.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~646~^10.870^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~19062~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~653~^0.015^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~654~^0.035^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~671~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~687~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19062~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19063~^~312~^0.186^13^0.037^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~315~^0.442^8^0.034^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~404~^0.242^13^0.015^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~405~^0.204^10^0.018^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~406~^1.999^13^0.100^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~410~^0.290^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19063~^~415~^0.297^3^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~501~^0.067^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~502~^0.292^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~503~^0.315^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~504~^0.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~505~^0.300^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~506~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~508~^0.384^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~509~^0.318^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~510~^0.412^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~511~^0.401^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~512~^0.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~513~^0.512^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~514~^0.587^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~515~^1.519^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~516~^0.300^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~517~^0.679^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~518~^0.383^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~606~^4.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~607~^0.020^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~611~^0.050^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~612~^0.170^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~613~^3.000^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~614~^1.410^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~617~^14.200^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~618~^3.220^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~619~^0.140^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~626~^0.090^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~645~^14.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19063~^~646~^3.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19064~^~312~^0.130^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~315~^0.047^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~404~^0.056^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~406~^0.210^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~410~^0.290^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~415~^0.010^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~502~^0.040^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~503~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~504~^0.110^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~505~^0.090^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~508~^0.050^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~509~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~510~^0.080^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~511~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~512~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~513~^0.060^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~514~^0.200^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~515~^0.280^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~516~^0.050^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~517~^0.030^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~518~^0.080^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~606~^0.967^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~609~^0.067^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~610~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~613~^0.467^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~614~^0.396^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~615~^0.013^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~617~^1.907^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~618~^0.250^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~619~^0.000^0^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~630~^0.022^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~645~^1.929^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~646~^0.266^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19064~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~663~^0.719^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~674~^1.188^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19064~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19064~^~851~^0.016^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19065~^~606~^17.590^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~645~^5.260^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19065~^~646~^1.180^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~605~^0.540^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~606~^0.250^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~645~^0.490^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19067~^~646~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19068~^~312~^0.026^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~315~^0.038^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~404~^0.060^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~405~^0.044^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~406~^0.069^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~410~^0.082^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~415~^0.009^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~606~^5.500^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19068~^~607~^0.005^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~608~^0.047^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~609~^0.496^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~610~^0.352^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~611~^2.798^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~612~^1.050^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~613~^0.560^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~614~^0.189^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~615~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~617~^1.025^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~618~^0.336^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~619~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~645~^1.030^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~646~^0.338^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19068~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~ -~19069~^~312~^0.193^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~315~^0.490^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~404~^0.121^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~405~^0.062^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~406~^2.649^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~410~^0.370^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~415~^0.069^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~605~^0.040^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~606~^9.500^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19069~^~607~^0.007^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~608~^0.022^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~609~^0.282^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~610~^0.273^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~611~^4.183^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~612~^1.406^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~613~^1.763^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~614~^1.445^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~615~^0.003^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~617~^4.983^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~618~^3.163^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~619~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~19069~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19069~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19069~^~628~^0.134^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~19069~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19069~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19069~^~645~^5.119^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~646~^3.164^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19069~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19070~^~312~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~315~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~404~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~405~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~406~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~410~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~606~^2.065^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~607~^0.130^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~608~^0.081^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~609~^0.048^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~610~^0.102^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~611~^0.104^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~612~^0.299^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~613~^0.872^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~614~^0.402^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~615~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~617~^0.802^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~618~^0.110^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~619~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~626~^0.039^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19070~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19070~^~645~^0.845^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~646~^0.122^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19070~^~653~^0.022^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19071~^~312~^0.183^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~315~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~404~^0.100^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~405~^0.178^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~406~^1.040^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~410~^0.750^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~415~^0.130^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~606~^29.018^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19071~^~607~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~608~^0.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~609~^0.824^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~610~^1.028^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~611~^17.649^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~612~^6.257^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~613~^2.533^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~614~^0.632^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~615~^0.012^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19071~^~617~^0.482^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~618~^0.264^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~619~^0.031^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19071~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~645~^0.483^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19071~^~646~^0.295^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19074~^~312~^0.018^41^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~315~^0.011^41^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~404~^0.103^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~405~^0.256^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~406~^0.148^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~410~^0.620^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~415~^0.056^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~501~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~502~^0.192^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~503~^0.258^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~504~^0.417^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~505~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~506~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~507~^0.039^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~508~^0.205^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~509~^0.205^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~510~^0.285^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~511~^0.155^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~512~^0.115^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~514~^0.323^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~515~^0.892^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~516~^0.091^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~517~^0.412^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~518~^0.232^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19074~^~606~^2.476^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~607~^0.047^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~608~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~609~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~610~^0.026^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~611~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~612~^0.190^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~613~^1.880^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~614~^0.293^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~617~^1.447^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~618~^3.447^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~619~^0.025^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~620~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~626~^0.095^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~645~^1.542^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19074~^~646~^3.478^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19075~^~606~^12.720^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~645~^5.290^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19075~^~646~^0.630^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19076~^~312~^0.130^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~315~^0.047^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19076~^~404~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~406~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~410~^0.290^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~415~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~19076~^~605~^0.963^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~606~^0.967^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~612~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~613~^0.438^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~614~^0.492^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~615~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~617~^1.925^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~618~^0.246^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~619~^0.006^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~624~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~19076~^~645~^1.929^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~646~^0.266^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~19076~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~653~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19076~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19076~^~663~^0.719^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~19076~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~674~^1.188^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~19076~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19076~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~19076~^~851~^0.016^1^^~1~^~A~^^^^^^^^^^~08/01/2011~ -~19077~^~312~^1.910^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~315~^1.650^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~404~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~405~^0.279^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~406~^2.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~410~^0.154^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~415~^0.072^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19077~^~501~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~502~^0.481^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~503~^0.471^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~504~^0.737^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~505~^0.609^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~506~^0.125^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~507~^0.148^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~508~^0.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~509~^0.456^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~510~^0.730^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~511~^0.689^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~512~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~513~^0.561^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~514~^1.211^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~515~^1.828^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~516~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~517~^0.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~518~^0.525^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~606~^25.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~608~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~609~^1.590^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~610~^1.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~611~^9.450^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~612~^3.630^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~613~^6.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~614~^3.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~617~^9.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~618~^10.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~619~^0.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~645~^9.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19077~^~646~^10.700^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19078~^~312~^3.233^3^0.088^~1~^~A~^^^1^3.100^3.400^2^2.854^3.613^~2, 3~^~02/01/2003~ -~19078~^~315~^4.167^3^0.186^~1~^~A~^^^1^3.800^4.400^2^3.368^4.965^~2, 3~^~02/01/2003~ -~19078~^~404~^0.147^2^^~1~^~A~^^^1^0.141^0.153^1^^^^~02/01/2003~ -~19078~^~405~^0.100^2^^~1~^~A~^^^1^0.100^0.100^^^^^~02/01/2003~ -~19078~^~406~^1.355^2^^~1~^~A~^^^1^1.140^1.570^1^^^^~02/01/2003~ -~19078~^~410~^0.168^2^^~1~^~A~^^^1^0.153^0.183^1^^^^~02/01/2003~ -~19078~^~415~^0.027^2^^~1~^~A~^^^1^0.026^0.028^1^^^^~02/01/2003~ -~19078~^~501~^0.130^2^^~1~^~A~^^^1^0.120^0.140^1^^^^~02/01/2003~ -~19078~^~502~^0.370^2^^~1~^~A~^^^1^0.370^0.370^^^^^~02/01/2003~ -~19078~^~503~^0.410^2^^~1~^~A~^^^1^0.400^0.420^1^^^^~02/01/2003~ -~19078~^~504~^0.695^2^^~1~^~A~^^^1^0.670^0.720^1^^^^~02/01/2003~ -~19078~^~505~^0.470^2^^~1~^~A~^^^1^0.460^0.480^1^^^^~02/01/2003~ -~19078~^~506~^0.140^2^^~1~^~A~^^^1^0.140^0.140^^^^^~02/01/2003~ -~19078~^~507~^0.225^2^^~1~^~A~^^^1^0.220^0.230^1^^^^~02/01/2003~ -~19078~^~508~^0.525^2^^~1~^~A~^^^1^0.520^0.530^1^^^^~02/01/2003~ -~19078~^~509~^0.425^2^^~1~^~A~^^^1^0.400^0.450^1^^^^~02/01/2003~ -~19078~^~510~^0.655^2^^~1~^~A~^^^1^0.650^0.660^1^^^^~02/01/2003~ -~19078~^~511~^0.815^2^^~1~^~A~^^^1^0.790^0.840^1^^^^~02/01/2003~ -~19078~^~512~^0.215^2^^~1~^~A~^^^1^0.190^0.240^1^^^^~02/01/2003~ -~19078~^~513~^0.475^2^^~1~^~A~^^^1^0.450^0.500^1^^^^~02/01/2003~ -~19078~^~514~^1.270^2^^~1~^~A~^^^1^1.250^1.290^1^^^^~02/01/2003~ -~19078~^~515~^1.870^2^^~1~^~A~^^^1^1.810^1.930^1^^^^~02/01/2003~ -~19078~^~516~^0.505^2^^~1~^~A~^^^1^0.490^0.520^1^^^^~02/01/2003~ -~19078~^~517~^0.880^2^^~1~^~A~^^^1^0.840^0.920^1^^^^~02/01/2003~ -~19078~^~518~^0.530^2^^~1~^~A~^^^1^0.520^0.540^1^^^^~02/01/2003~ -~19078~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2003~ -~19078~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~606~^32.277^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~612~^0.033^3^0.033^~1~^~A~^^^1^0.000^0.099^2^-0.109^0.174^~1, 2, 3~^~12/01/2006~ -~19078~^~613~^13.309^3^0.010^~1~^~A~^^^1^13.297^13.328^2^13.267^13.350^~2, 3~^~08/01/2014~ -~19078~^~614~^18.232^3^0.348^~1~^~A~^^^1^17.783^18.918^2^16.733^19.730^~2, 3~^~08/01/2014~ -~19078~^~615~^0.553^3^0.026^~1~^~A~^^^1^0.509^0.598^2^0.442^0.664^~2, 3~^~08/01/2014~ -~19078~^~617~^15.969^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~ -~19078~^~618~^1.435^3^0.008^~1~^~A~^^^1^1.419^1.445^2^1.401^1.468^~2, 3~^~08/01/2014~ -~19078~^~619~^0.117^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~ -~19078~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~624~^0.050^3^0.029^~1~^~A~^^^1^0.000^0.100^2^-0.074^0.175^~1, 2, 3~^~12/01/2006~ -~19078~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~626~^0.100^3^0.001^~1~^~A~^^^1^0.099^0.101^2^0.097^0.102^~2, 3~^~12/01/2006~ -~19078~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~19078~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~ -~19078~^~645~^16.068^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~646~^1.551^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~653~^0.100^3^0.001^~1~^~A~^^^1^0.099^0.101^2^0.097^0.103^~2, 3~^~12/01/2006~ -~19078~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~674~^15.969^3^0.039^~1~^~A~^^^1^15.920^16.046^2^15.802^16.136^~2, 3~^~08/01/2014~ -~19078~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~19078~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19078~^~851~^0.117^3^0.016^~1~^~A~^^^1^0.099^0.149^2^0.046^0.187^~2, 3~^~12/01/2006~ -~19079~^~312~^0.008^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~315~^0.003^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~404~^0.064^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~405~^0.261^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~406~^0.154^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~410~^0.587^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~415~^0.056^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19079~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~606~^24.104^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~607~^0.025^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~608~^0.044^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~609~^0.678^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~610~^0.847^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~611~^14.505^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~612~^5.153^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~613~^2.271^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~614~^0.571^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~615~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~617~^0.523^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~618~^0.478^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~619~^0.046^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19079~^~645~^0.526^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19079~^~646~^0.524^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19080~^~312~^0.700^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~315~^0.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~404~^0.055^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~405~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~406~^0.427^4^0.049^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~410~^0.105^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19080~^~415~^0.035^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19080~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~502~^0.168^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~503~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~504~^0.257^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~505~^0.212^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~506~^0.044^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~507~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~508~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~509~^0.159^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~510~^0.254^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~511~^0.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~512~^0.073^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~514~^0.422^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~515~^0.637^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~516~^0.190^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~517~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~518~^0.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19080~^~606~^17.750^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19080~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~612~^0.020^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~613~^7.347^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~614~^10.007^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~615~^0.267^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~617~^9.904^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~618~^0.898^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~619~^0.068^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~624~^0.024^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~626~^0.062^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19080~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~645~^9.966^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~646~^0.966^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~653~^0.048^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19080~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19081~^~312~^0.574^6^0.073^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~315~^0.494^6^0.078^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~404~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~405~^0.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~406~^0.670^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~410~^0.071^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~415~^0.043^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19081~^~501~^0.058^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~502~^0.154^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~503~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~504~^0.236^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~505~^0.195^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~506~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~507~^0.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~508~^0.187^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~509~^0.146^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~510~^0.234^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~511~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~512~^0.067^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~513~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~514~^0.388^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~515~^0.586^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~516~^0.175^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~517~^0.167^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~518~^0.168^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~606~^20.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~612~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~613~^8.690^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~614~^11.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~617~^11.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~618~^0.960^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~619~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19081~^~645~^11.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19081~^~646~^0.990^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~312~^0.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~315~^0.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~404~^0.026^4^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~405~^0.058^4^0.014^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~406~^0.575^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19083~^~410~^0.024^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~415~^0.010^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~606~^5.460^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~612~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~613~^2.317^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~614~^3.035^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~615~^0.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~617~^3.067^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~618~^0.281^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~619~^0.014^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~624~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~626~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~645~^3.090^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~646~^0.300^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~653~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19083~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19084~^~606~^15.230^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19085~^~312~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~315~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19085~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~405~^0.075^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~406~^0.049^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~410~^0.148^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~415~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19085~^~606~^24.100^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19085~^~607~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19085~^~608~^0.060^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19085~^~609~^1.092^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~610~^1.076^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~611~^13.790^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19085~^~612~^4.674^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~613~^2.344^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~614~^1.722^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~615~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~617~^2.250^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~618~^0.974^2^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19085~^~619~^0.034^2^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19085~^~620~^0.034^1^^~1~^~A~^^^^^^^^^^~07/01/2013~ -~19085~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~626~^0.007^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~628~^0.014^1^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19085~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~630~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~19085~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19085~^~645~^2.271^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19085~^~646~^1.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~312~^0.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~315~^1.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~404~^0.232^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~405~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~406~^8.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~410~^1.056^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~415~^0.170^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~605~^1.763^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~606~^13.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19086~^~607~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~608~^0.022^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~609~^0.352^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~610~^0.439^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~611~^7.540^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~612~^2.676^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~613~^1.404^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~614~^0.643^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~615~^0.016^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~617~^12.801^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~618~^1.949^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~619~^0.032^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~624~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~626~^0.016^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~628~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~19086~^~645~^12.829^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~646~^2.053^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19086~^~653~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19087~^~312~^0.060^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~315~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~404~^0.063^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~405~^0.282^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~406~^0.745^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~410~^0.608^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~415~^0.056^3^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~606~^19.412^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19087~^~607~^0.314^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~608~^0.155^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~609~^0.115^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~610~^0.220^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~611~^0.629^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~612~^0.797^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~613~^7.947^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~614~^9.145^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~615~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19087~^~617~^8.990^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~618~^0.910^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~619~^0.103^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~620~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~621~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~626~^0.062^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~628~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~629~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~631~^0.000^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~645~^9.097^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19087~^~646~^1.013^2^^~1~^~A~^^^^^^^^^^~12/01/2006~ -~19088~^~312~^0.017^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~315~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~404~^0.053^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~405~^0.255^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~406~^0.136^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~410~^0.481^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~415~^0.045^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~606~^2.927^3^0.154^~9~^~MC~^^^1^2.700^3.220^2^2.265^3.588^~4~^~05/01/2004~ -~19088~^~607~^0.141^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~608~^0.099^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~609~^0.074^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~610~^0.117^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~611~^0.127^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~612~^0.471^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~613~^1.260^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~614~^0.570^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~617~^1.211^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~618~^0.134^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~619~^0.085^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~626~^0.070^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~645~^1.281^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~646~^0.219^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~ -~19088~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19088~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19089~^~312~^0.008^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~315~^0.004^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~404~^0.041^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~405~^0.167^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~406~^0.082^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~410~^0.460^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~415~^0.045^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~501~^0.041^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~502~^0.138^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~503~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~504~^0.298^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~505~^0.248^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~506~^0.076^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~508~^0.149^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~509~^0.142^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~510~^0.205^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~511~^0.135^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~512~^0.083^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~513~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~515~^0.652^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~516~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~517~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~518~^0.171^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19089~^~606~^10.329^2^^~8~^~LC~^^^1^10.280^10.377^1^^^^~03/01/2003~ -~19089~^~607~^0.491^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~608~^0.290^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~609~^0.169^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~610~^0.380^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~611~^0.425^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~612~^1.526^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~613~^4.168^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~614~^1.899^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~617~^4.098^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~618~^0.437^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~619~^0.222^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~620~^0.014^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~621~^0.004^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~626~^0.360^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~627~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~645~^4.460^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~646~^0.680^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19089~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19089~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19090~^~312~^0.030^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~315~^0.005^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~404~^0.049^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~405~^0.182^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~406~^0.095^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~410~^0.506^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~415~^0.048^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19090~^~501~^0.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~502~^0.169^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~503~^0.215^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~504~^0.353^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~505~^0.296^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~506~^0.091^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~507~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~508~^0.176^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~509~^0.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~510~^0.241^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~511~^0.172^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~512~^0.099^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~513~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~514~^0.300^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~515~^0.745^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~516~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~517~^0.374^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~518~^0.216^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~606~^7.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~607~^0.390^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~608~^0.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~609~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~610~^0.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~611~^0.340^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~612~^1.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~613~^3.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~614~^1.470^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~617~^3.220^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~618~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~619~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~626~^0.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1994~ -~19090~^~645~^3.490^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19090~^~646~^0.450^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19091~^~606~^4.340^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~645~^0.410^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19091~^~646~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~606~^0.540^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~645~^1.880^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19092~^~646~^0.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~606~^18.340^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~645~^7.910^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19093~^~646~^0.690^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19094~^~312~^0.028^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~315~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~404~^0.032^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~405~^0.210^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~406~^0.082^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~410~^0.514^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~415~^0.044^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~606~^1.799^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~607~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~608~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~609~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~610~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~611~^0.050^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~612~^0.196^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~613~^0.966^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~614~^0.387^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~615~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~617~^1.200^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~618~^0.302^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~619~^0.054^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~620~^0.028^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~621~^0.007^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~624~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~625~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~626~^0.058^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~628~^0.005^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~629~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~630~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~645~^1.266^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~646~^0.392^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~652~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~653~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~654~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19094~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19095~^~312~^0.023^7^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~315~^0.008^6^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~404~^0.041^13^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~405~^0.240^14^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~406~^0.116^6^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~410~^0.581^3^0.170^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~415~^0.048^10^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~501~^0.045^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~502~^0.146^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~503~^0.195^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~504~^0.316^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~505~^0.258^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~506~^0.081^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~507~^0.029^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~508~^0.157^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~509~^0.155^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~510~^0.217^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~511~^0.125^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~512~^0.088^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~513~^0.121^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~514~^0.250^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~515~^0.681^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~516~^0.093^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~517~^0.326^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~518~^0.177^0^^~1~^^^^^^^^^^^~03/01/2003~ -~19095~^~606~^6.790^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~607~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~608~^0.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~609~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~610~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~611~^0.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~612~^1.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~613~^3.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19095~^~614~^1.316^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~617~^2.763^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~618~^0.275^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~619~^0.175^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~626~^0.206^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~629~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~645~^2.969^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~646~^0.452^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19095~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19095~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19096~^~312~^0.027^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~315~^0.008^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~404~^0.052^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~405~^0.198^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~406~^0.118^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~410~^0.447^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~415~^0.046^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19096~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~502~^0.197^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~503~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~504~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~505~^0.351^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~506~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~507~^0.039^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~508~^0.211^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~509~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~510~^0.292^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~511~^0.185^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~512~^0.117^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~513~^0.184^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~514~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~515~^0.923^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~516~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~517~^0.466^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~518~^0.241^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~606~^1.630^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~607~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~608~^0.050^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~609~^0.030^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~610~^0.070^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~611~^0.070^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~612~^0.270^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~613~^0.730^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~614~^0.320^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~617~^0.700^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~618~^0.060^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~619~^0.040^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~626~^0.060^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19096~^~645~^0.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19096~^~646~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~312~^0.028^5^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~315~^0.011^4^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19097~^~404~^0.027^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~405~^0.097^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~406~^0.063^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~410~^0.224^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~415~^0.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~606~^1.160^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~607~^0.094^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~608~^0.013^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~609~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~610~^0.033^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~611~^0.023^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~612~^0.170^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~613~^0.585^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~614~^0.170^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~617~^0.470^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~618~^0.065^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~619~^0.015^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~626~^0.052^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~645~^0.530^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19097~^~646~^0.080^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19098~^~312~^0.210^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~315~^0.050^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~404~^0.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~405~^0.090^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~406~^3.900^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~410~^0.540^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~415~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~606~^6.650^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~607~^0.128^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~608~^0.045^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~609~^0.028^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~610~^0.053^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~611~^0.058^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~612~^0.213^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~613~^3.532^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~614~^1.974^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~615~^0.040^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~617~^8.355^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~618~^3.305^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~619~^0.084^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~624~^0.004^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~625~^0.014^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~626~^0.054^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~628~^0.145^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~645~^10.600^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19098~^~646~^3.390^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~652~^0.016^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~653~^0.015^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~687~^0.004^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19098~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19099~^~312~^0.003^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~315~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~19099~^~404~^0.005^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~405~^0.016^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~406~^0.000^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~410~^0.000^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~415~^0.000^0^^~6~^~RKI~^^^^^^^^^^~12/01/2006~ -~19099~^~606~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~607~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~608~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~609~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~610~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~611~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~612~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~613~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~614~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~617~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~618~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~619~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~620~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~621~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~626~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~627~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~628~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~629~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~630~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~631~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~645~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19099~^~646~^0.000^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~ -~19100~^~312~^0.329^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~315~^0.422^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~404~^0.026^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~405~^0.085^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~406~^0.176^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~410~^0.140^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~415~^0.012^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~605~^0.165^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~606~^6.448^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~607~^0.187^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~608~^0.125^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~609~^0.084^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~610~^0.152^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~611~^0.155^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~612~^0.474^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~613~^2.703^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~614~^2.459^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~615~^0.063^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~617~^2.882^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~618~^0.321^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~619~^0.052^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~624~^0.005^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~626~^0.058^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~628~^0.005^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19100~^~645~^2.943^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~646~^0.373^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~653~^0.038^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19100~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~687~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19100~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~312~^0.526^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~315~^0.885^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~404~^0.067^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~405~^0.095^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~406~^0.315^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~410~^0.208^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~415~^0.088^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~605~^0.142^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~606~^6.489^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~607~^0.161^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~608~^0.108^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~609~^0.072^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~610~^0.131^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~611~^0.134^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~612~^0.409^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~613~^3.001^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~614~^2.371^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~615~^0.064^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~617~^3.827^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~618~^6.097^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~619~^1.432^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~624~^0.004^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~626~^0.050^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~628~^0.025^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~645~^3.900^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~646~^7.529^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~653~^0.033^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19101~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~687~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19101~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19101~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19102~^~312~^0.056^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~315~^0.164^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~404~^0.022^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~405~^0.082^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~406~^1.439^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~410~^0.231^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~415~^0.066^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~606~^1.721^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~607~^0.023^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~608~^0.023^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~609~^0.023^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~610~^0.023^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~611~^0.038^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~612~^0.117^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~613~^0.897^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~614~^0.307^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~615~^0.068^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~617~^2.805^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~618~^1.556^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~619~^0.032^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~624~^0.151^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~628~^0.062^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~645~^2.867^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~646~^1.588^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~653~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~654~^0.049^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19102~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19103~^~312~^0.004^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~315~^0.002^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~404~^0.014^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~405~^0.074^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~406~^0.038^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~410~^0.119^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~415~^0.009^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~605~^0.179^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~606~^3.382^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~607~^0.199^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~608~^0.133^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~609~^0.088^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~610~^0.161^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~611~^0.165^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~612~^0.498^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~613~^1.441^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~614~^0.659^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~615~^0.007^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~617~^1.341^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~618~^0.186^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~619~^0.040^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~626~^0.052^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~628~^0.005^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19103~^~645~^1.399^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~646~^0.227^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~653~^0.031^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19103~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19103~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19104~^~312~^0.219^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~315~^0.466^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~404~^0.051^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~405~^0.085^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~406~^0.179^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~410~^0.183^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~415~^0.077^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~605~^0.158^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~606~^3.828^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~607~^0.176^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~608~^0.117^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~609~^0.078^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~610~^0.143^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~611~^0.146^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~612~^0.441^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~613~^1.875^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~614~^0.809^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~615~^0.015^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~617~^2.384^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~618~^5.344^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~619~^1.270^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~626~^0.046^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~628~^0.023^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~645~^2.454^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~646~^6.614^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~653~^0.027^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19104~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~ -~19105~^~605~^0.070^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19105~^~606~^12.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19106~^~312~^0.012^8^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~315~^0.010^8^0.017^~1~^^^^^^^^^^^~08/01/1991~ -~19106~^~404~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~405~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~406~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~410~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~415~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19106~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19106~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19106~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1989~ -~19106~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19107~^~312~^0.029^5^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~315~^0.010^37^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19107~^~404~^0.004^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~405~^0.003^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~406~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~410~^0.008^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~415~^0.003^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19107~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19107~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19107~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19107~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19108~^~312~^0.028^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~315~^0.035^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19108~^~404~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~405~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~406~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~410~^0.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~415~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19108~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19109~^~312~^0.220^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~315~^0.100^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~404~^0.117^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~406~^0.500^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~410~^0.640^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~415~^0.020^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~501~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~502~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~503~^0.280^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~504~^0.520^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~505~^0.280^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~506~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~507~^0.120^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~508~^0.270^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~509~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~510~^0.360^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~511~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~512~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~513~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~514~^0.470^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~515~^1.520^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~516~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~517~^0.650^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~518~^0.320^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~19109~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~605~^0.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~19109~^~606~^17.953^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19109~^~607~^0.136^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~608~^0.117^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~609~^0.502^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~610~^0.508^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~611~^4.913^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~612~^1.748^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~613~^4.978^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~614~^4.802^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~615~^0.150^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~617~^5.696^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~19109~^~618~^0.821^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~619~^0.075^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~ -~19109~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~626~^0.149^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~627~^0.000^0^^~4~^~O~^^^^^^^^^^~11/01/2003~ -~19109~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~631~^0.000^0^^~4~^~O~^^^^^^^^^^~11/01/2003~ -~19109~^~645~^5.844^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19109~^~646~^0.895^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~ -~19109~^~652~^0.049^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~663~^0.099^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~674~^5.596^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19109~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~19109~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19109~^~851~^0.075^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19110~^~312~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~404~^0.050^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~405~^0.190^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~406~^0.260^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~410~^0.420^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~415~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~606~^15.920^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~645~^6.250^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19110~^~646~^0.570^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19111~^~312~^0.225^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~315~^0.351^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~404~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~405~^0.121^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~406~^1.251^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~410~^0.333^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~415~^0.042^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~605~^0.050^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~606~^12.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19111~^~607~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~608~^0.061^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~609~^0.676^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~610~^0.569^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~611~^6.372^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~612~^2.327^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~613~^1.505^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~614~^0.530^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~615~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~617~^5.450^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~618~^2.634^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~619~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~626~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~628~^0.096^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~645~^5.557^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19111~^~646~^2.638^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~ -~19112~^~606~^0.000^3^0.000^~8~^~LC~^^^1^0.000^0.000^2^0.000^0.000^~4~^~03/01/2002~ -~19113~^~312~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~315~^0.045^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~404~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~405~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~406~^0.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~410~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~415~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19113~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~ -~19113~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19113~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19114~^~312~^0.103^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~315~^0.101^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~404~^0.023^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~405~^0.129^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~406~^0.126^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~410~^0.246^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~415~^0.023^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~606~^4.380^2^^~9~^~MC~^^^1^4.280^4.480^1^^^^~05/01/2004~ -~19114~^~607~^0.226^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~608~^0.077^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~609~^0.079^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~610~^0.140^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~611~^0.091^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~612~^0.705^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~613~^1.996^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~614~^0.846^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~617~^1.856^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~618~^0.168^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~619~^0.074^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~626~^0.199^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~645~^2.055^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~646~^0.241^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19114~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19115~^~312~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~315~^0.367^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~404~^0.041^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~405~^0.312^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~406~^0.945^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19115~^~410~^0.404^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~415~^0.060^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~606~^7.268^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~607~^0.165^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~608~^0.081^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~609~^0.054^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~610~^0.164^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~611~^0.294^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~612~^0.637^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~613~^3.516^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~614~^2.192^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~617~^10.315^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~618~^3.700^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~619~^0.261^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~626~^0.215^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~628~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~645~^10.693^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19115~^~646~^3.980^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19116~^~312~^0.097^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~315~^0.008^5^0.034^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~404~^0.001^5^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~405~^0.001^4^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~406~^0.078^5^0.015^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~410~^0.005^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~415~^0.003^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19116~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~502~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~503~^0.028^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~504~^0.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~505~^0.077^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~506~^0.015^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~508~^0.042^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~510~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~511~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~512~^0.017^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~513~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~514~^0.121^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~515~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~516~^0.416^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~517~^0.275^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~518~^0.061^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19116~^~606~^0.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~613~^0.040^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~614~^0.015^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~617~^0.076^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~618~^0.045^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~619~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~620~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~645~^0.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19116~^~646~^0.047^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19117~^~312~^1.202^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~315~^0.873^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~404~^0.424^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~405~^0.088^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~406~^2.856^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~410~^0.174^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~415~^0.348^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~606~^4.127^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~607~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~608~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~609~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~610~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~611~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~612~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~613~^2.113^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~614~^1.847^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~617~^8.133^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~618~^8.421^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~619~^0.060^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~620~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~621~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~626~^0.025^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~628~^0.036^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~629~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~631~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~645~^8.194^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19117~^~646~^8.481^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19118~^~312~^0.353^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~315~^0.535^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~404~^0.149^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~405~^0.121^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~406~^2.545^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~410~^0.539^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~415~^0.086^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~ -~19118~^~605~^0.050^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~606~^9.600^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19118~^~607~^0.124^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~608~^0.055^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~609~^0.160^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~610~^0.156^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~611~^0.853^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~612~^0.471^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~613~^2.869^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~614~^1.815^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~615~^0.042^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~617~^5.376^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~618~^2.705^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~619~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~625~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~626~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~628~^0.116^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~645~^5.530^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~646~^2.706^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~652~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~653~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~687~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19118~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~19119~^~605~^0.160^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19119~^~606~^12.500^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19120~^~312~^0.491^27^0.083^~1~^~A~^^^1^0.408^0.574^1^-0.567^1.549^~4~^~02/01/2003~ -~19120~^~315~^0.471^27^0.131^~1~^~A~^^^1^0.339^0.602^1^-1.200^2.142^~4~^~02/01/2003~ -~19120~^~404~^0.112^5^0.007^~1~^~A~^^^^0.091^0.129^^^^^~02/01/2003~ -~19120~^~405~^0.298^5^0.034^~1~^~A~^^^^0.220^0.420^^^^^~02/01/2003~ -~19120~^~406~^0.386^5^0.018^~1~^~A~^^^^0.318^0.422^^^^^~02/01/2003~ -~19120~^~410~^0.472^5^0.041^~1~^~A~^^^^0.326^0.549^^^^^~02/01/2003~ -~19120~^~415~^0.036^5^0.001^~1~^~A~^^^^0.034^0.038^^^^^~02/01/2003~ -~19120~^~606~^18.509^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~607~^0.358^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~608~^0.099^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~609~^0.111^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~610~^0.246^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~611~^0.254^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~612~^1.184^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~613~^8.332^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~614~^7.836^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~615~^0.071^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~617~^6.076^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~618~^1.218^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~619~^0.122^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~620~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2008~ -~19120~^~624~^0.007^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~625~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~626~^0.407^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2008~ -~19120~^~628~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~629~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~630~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2008~ -~19120~^~645~^7.186^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~646~^1.376^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~652~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~653~^0.013^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~654~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~663~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~671~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~672~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~674~^6.076^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~685~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~687~^0.000^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19120~^~689~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~696~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~697~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~01/01/2008~ -~19120~^~851~^0.122^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~19121~^~312~^0.010^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~315~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~404~^0.033^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~405~^0.137^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~406~^0.072^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~410~^0.267^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~415~^0.036^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19121~^~501~^0.039^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~502~^0.125^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~503~^0.167^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~504~^0.271^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~505~^0.219^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~506~^0.070^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~507~^0.026^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~508~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~509~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~510~^0.185^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~511~^0.100^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~512~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~513~^0.095^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~514~^0.210^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~515~^0.579^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~516~^0.058^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~517~^0.268^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~518~^0.150^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~606~^0.971^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~607~^0.051^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~608~^0.031^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~609~^0.017^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~610~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~611~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~612~^0.160^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~613~^0.429^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~614~^0.197^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~617~^0.425^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~618~^0.088^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~619~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~626~^0.036^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~645~^0.460^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19121~^~646~^0.118^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19122~^~312~^0.010^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~315~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~404~^0.031^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~405~^0.144^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~406~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~410~^0.278^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~415~^0.034^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~501~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~502~^0.131^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~503~^0.175^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~504~^0.284^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~505~^0.230^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~506~^0.073^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~507~^0.027^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~508~^0.140^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~509~^0.140^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~510~^0.194^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~511~^0.106^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~512~^0.078^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~513~^0.100^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~514~^0.221^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~515~^0.607^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~516~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~517~^0.281^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~518~^0.158^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~606~^1.015^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~607~^0.054^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~608~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~609~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~610~^0.042^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~611~^0.047^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~612~^0.168^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~613~^0.452^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~614~^0.203^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~617~^0.425^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~618~^0.062^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~619~^0.026^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~626~^0.037^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~645~^0.462^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19122~^~646~^0.088^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19123~^~312~^0.068^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~315~^0.062^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~404~^0.034^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~405~^0.147^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~406~^0.108^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~410~^0.274^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~415~^0.038^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19123~^~501~^0.044^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~502~^0.139^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~503~^0.182^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~504~^0.295^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~505~^0.239^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~506~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~507~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~508~^0.151^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~509~^0.148^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~510~^0.208^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~511~^0.121^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~512~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~513~^0.112^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~514~^0.246^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~515~^0.636^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~516~^0.074^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~517~^0.286^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~518~^0.167^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~606~^1.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~607~^0.051^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~608~^0.031^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~609~^0.017^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~610~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~611~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~612~^0.160^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~613~^0.472^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~614~^0.248^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~617~^0.523^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~618~^0.104^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~619~^0.028^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~626~^0.037^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~645~^0.561^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19123~^~646~^0.132^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19124~^~312~^0.670^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~315~^0.449^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~404~^0.057^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~405~^0.105^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~406~^1.829^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~410~^0.180^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~415~^0.034^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~606~^8.606^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~607~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~608~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~609~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~610~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~611~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~612~^0.010^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~613~^3.628^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~614~^4.705^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~617~^5.007^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~618~^0.942^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~619~^0.072^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~620~^0.148^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~621~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~626~^0.037^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~627~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~628~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~629~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~630~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~631~^0.000^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~645~^5.044^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19124~^~646~^1.162^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19125~^~312~^0.469^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~315~^0.868^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~404~^0.085^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~405~^0.170^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~406~^0.427^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~410~^0.357^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19125~^~415~^0.082^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19125~^~606~^28.423^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19125~^~607~^0.011^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~608~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~609~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~610~^0.007^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~611~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~612~^0.175^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~613~^15.879^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~614~^5.573^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~615~^1.877^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~624~^3.653^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19125~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~ -~19125~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~654~^1.174^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19125~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~ -~19126~^~312~^0.544^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19126~^~315~^0.945^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~404~^0.116^4^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~405~^0.174^5^0.025^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~406~^4.249^5^0.644^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~410~^0.744^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~415~^0.100^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~606~^14.600^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~607~^0.453^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~608~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~609~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~610~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~611~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~612~^0.604^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~613~^6.696^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~614~^5.782^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~615~^0.154^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~617~^12.550^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19126~^~618~^4.222^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~619~^0.040^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~624~^0.017^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~625~^0.047^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~626~^0.091^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~628~^0.137^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~645~^12.920^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~646~^4.330^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~652~^0.062^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~653~^0.059^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~687~^0.013^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19126~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19127~^~312~^0.373^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~315~^0.358^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~404~^0.084^4^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~405~^0.161^4^0.037^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~406~^0.400^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19127~^~410~^0.264^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~415~^0.074^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~606~^10.272^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~607~^0.360^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~608~^0.130^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~609~^0.074^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~610~^0.141^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~611~^0.155^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~612~^0.475^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~613~^4.301^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~614~^4.403^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~615~^0.123^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~617~^3.019^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~618~^0.534^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~619~^0.037^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~626~^0.101^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~645~^3.134^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~646~^0.571^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19127~^~652~^0.049^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~653~^0.047^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~687~^0.013^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19127~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19128~^~312~^0.018^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~315~^0.022^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~404~^0.025^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~405~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~406~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~410~^0.005^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~415~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~606~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~12/01/2006~ -~19128~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19128~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19129~^~312~^0.000^18^0.000^~1~^~A~^^^7^0.000^0.000^17^0.000^0.000^~4~^~12/01/2006~ -~19129~^~315~^0.068^18^0.013^~1~^~A~^^^7^0.000^0.191^17^0.041^0.095^~4~^~02/01/2003~ -~19129~^~404~^0.024^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~405~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~410~^0.004^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~606~^0.000^1^^~8~^~LC~^^^1^0.000^0.000^0^^^^~02/01/2003~ -~19129~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19129~^~645~^0.000^1^^~8~^~LC~^^^1^0.000^0.000^0^^^^~02/01/2003~ -~19129~^~646~^0.000^1^^~8~^~LC~^^^1^0.000^0.000^0^^^^~02/01/2003~ -~19130~^~606~^16.667^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19132~^~312~^0.422^5^0.033^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~315~^0.624^5^0.056^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~404~^0.060^11^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~405~^0.435^12^0.027^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~406~^0.742^8^0.086^~1~^^^^^^^^^^^~08/01/1991~ -~19132~^~410~^0.455^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~415~^0.045^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~606~^17.701^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~607~^0.611^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~608~^0.221^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~609~^0.126^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~610~^0.240^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~611~^0.263^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~612~^0.806^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~613~^7.562^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~614~^7.480^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~615~^0.208^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~617~^11.575^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~618~^2.937^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~619~^0.082^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~624~^0.022^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~625~^0.110^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~626~^0.244^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~645~^11.960^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~646~^3.019^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19132~^~652~^0.083^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~653~^0.079^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~687~^0.031^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19132~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19134~^~312~^0.488^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~315~^0.477^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~404~^0.131^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~405~^0.323^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~406~^0.672^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~410~^0.471^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~415~^0.055^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~606~^15.890^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~607~^0.561^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~608~^0.203^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~609~^0.116^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~610~^0.220^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~611~^0.241^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~612~^0.740^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~613~^6.640^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~614~^6.808^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~615~^0.191^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~617~^8.231^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19134~^~618~^0.660^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~619~^0.044^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~624~^0.020^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~625~^0.129^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19134~^~626~^0.244^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19134~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~645~^8.640^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~646~^0.780^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~652~^0.076^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~653~^0.073^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~687~^0.037^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19134~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19134~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19134~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19135~^~312~^0.147^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~315~^0.147^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~404~^0.046^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~405~^0.103^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~406~^0.154^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~410~^0.155^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~415~^0.014^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~605~^0.206^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~606~^12.016^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19135~^~607~^0.182^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~608~^0.093^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~609~^0.301^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~610~^0.335^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~611~^3.951^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~612~^1.593^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~613~^2.558^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~614~^2.884^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~615~^0.049^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~617~^2.148^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~618~^0.231^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~619~^0.029^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~624~^0.005^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~625~^0.017^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~626~^0.060^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~645~^2.230^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~646~^0.260^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~652~^0.018^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~653~^0.018^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~687~^0.005^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19135~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19136~^~312~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~405~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~406~^0.130^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~410~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~415~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~606~^18.780^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19136~^~607~^0.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~608~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~609~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~610~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~611~^0.020^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~612~^0.092^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~613~^7.486^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~614~^9.653^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~615~^0.069^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~617~^9.627^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~618~^1.115^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~619~^0.075^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~624~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~625~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~626~^0.078^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~645~^9.714^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~646~^1.191^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~652~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~653~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~654~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19136~^~858~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~19137~^~312~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~315~^0.167^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~404~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~405~^0.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~406~^0.161^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~410~^0.048^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~415~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19137~^~606~^0.005^0^^~4~^^^^^^^^^^^~03/01/1992~ -~19137~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~613~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~617~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~618~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~619~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19137~^~645~^0.014^0^^~4~^^^^^^^^^^^~03/01/1992~ -~19137~^~646~^0.050^0^^~4~^^^^^^^^^^^~03/01/1992~ -~19138~^~312~^0.366^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~315~^0.351^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~404~^0.087^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~405~^0.250^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~406~^0.299^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~410~^0.417^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~415~^0.032^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~605~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~606~^18.488^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~607~^0.686^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~608~^0.320^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~609~^0.275^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~610~^0.479^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~611~^1.181^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~612~^1.766^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~613~^7.178^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~614~^6.154^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~615~^0.127^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~617~^7.300^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~618~^0.779^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~619~^0.171^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~624~^0.014^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~625~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~626~^0.309^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~645~^12.636^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~646~^1.013^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~652~^0.051^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~653~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~663~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~674~^4.821^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~685~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~687~^0.014^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~693~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19138~^~851~^0.062^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19139~^~605~^0.042^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19139~^~606~^15.618^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19140~^~312~^0.505^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~315~^0.664^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~404~^0.063^2^^~8~^~LC~^^^1^0.061^0.065^1^^^^~01/01/2006~ -~19140~^~405~^0.106^2^^~8~^~LC~^^^1^0.074^0.138^1^^^^~01/01/2006~ -~19140~^~406~^3.362^2^^~8~^~LC~^^^1^3.245^3.478^1^^^^~01/01/2006~ -~19140~^~410~^0.627^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~415~^0.090^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~605~^0.328^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19140~^~606~^10.169^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19140~^~607~^0.300^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~608~^0.108^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~609~^0.062^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~610~^0.118^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~611~^0.129^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~612~^0.402^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~613~^4.811^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~614~^3.910^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~615~^0.102^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~617~^7.853^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~618~^3.436^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~619~^0.021^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~624~^0.011^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~626~^0.062^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~628~^0.131^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19140~^~645~^8.086^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~646~^3.456^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~652~^0.041^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~653~^0.039^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~687~^0.009^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19140~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~312~^0.344^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~315~^0.329^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~404~^0.079^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~405~^0.213^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~406~^0.270^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~410~^0.330^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~415~^0.025^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~605~^0.167^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19141~^~606~^13.080^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19141~^~607~^0.462^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~608~^0.167^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~609~^0.095^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~610~^0.181^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~611~^0.199^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~612~^0.609^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~613~^5.465^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~614~^5.605^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~615~^0.157^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~617~^4.937^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~618~^0.864^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~619~^0.057^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~624~^0.017^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~625~^0.077^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~626~^0.147^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/1996~ -~19141~^~645~^5.183^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19141~^~646~^0.921^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19141~^~652~^0.063^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~653~^0.060^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~ -~19141~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~687~^0.022^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19141~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19141~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19142~^~312~^0.400^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~315~^0.948^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~404~^0.049^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~405~^0.058^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~406~^0.277^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~410~^0.245^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~415~^0.090^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~606~^20.580^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~608~^0.118^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~609~^1.356^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~610~^1.081^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~611~^7.920^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~612~^2.940^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~613~^3.583^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~614~^3.443^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~615~^0.105^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~617~^0.338^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~618~^0.118^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~619~^0.005^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~620~^0.009^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~624~^0.012^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~625~^0.009^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~626~^0.026^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~628~^0.009^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~645~^0.390^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~646~^0.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19142~^~652~^0.012^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~653~^0.012^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~687~^0.009^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~689~^0.009^1^^~13~^~AI~^^^^^^^^^^~12/01/2006~ -~19142~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19142~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19143~^~312~^0.170^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~404~^0.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~405~^0.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~406~^3.440^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~410~^0.420^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~415~^0.070^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~606~^14.130^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19143~^~607~^0.339^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~608~^0.123^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~609~^0.070^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~610~^0.133^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~611~^0.146^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~612~^0.461^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~613~^6.730^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~614~^5.700^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~615~^0.115^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~617~^7.991^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~618~^4.365^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~619~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~624~^0.012^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~625~^0.026^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~626~^0.052^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~628~^0.127^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~645~^8.203^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~646~^4.366^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~652~^0.046^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~653~^0.044^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~687~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19143~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19144~^~312~^0.185^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19144~^~315~^0.172^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~404~^0.058^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19144~^~405~^0.119^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19144~^~406~^0.198^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~410~^0.182^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~415~^0.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~606~^11.900^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19144~^~607~^0.356^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~608~^0.169^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~609~^0.322^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~610~^0.329^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~611~^1.439^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~612~^1.026^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~613~^4.314^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~614~^3.751^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~615~^0.098^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~617~^5.769^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~618~^1.259^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~619~^0.129^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~624~^0.010^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~625~^0.064^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~626~^0.183^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~628~^0.004^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~645~^6.039^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19144~^~646~^1.388^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19144~^~652~^0.038^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~653~^0.049^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~687~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19144~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19145~^~605~^0.137^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19145~^~606~^16.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~ -~19146~^~605~^0.184^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19146~^~606~^14.466^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19147~^~312~^0.774^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~315~^1.243^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~404~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~405~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~406~^7.922^4^0.821^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~410~^0.830^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~415~^0.153^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19147~^~501~^0.149^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~502~^0.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~503~^0.534^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~504~^0.986^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~505~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~506~^0.185^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~507~^0.194^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~508~^0.787^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~509~^0.618^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~510~^0.638^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~511~^1.818^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~512~^0.385^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~513~^0.604^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~514~^1.855^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~515~^3.178^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~516~^0.916^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~517~^0.672^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~518~^0.753^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19147~^~606~^4.678^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~612~^0.022^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~613~^3.528^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~614~^0.752^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~617~^16.260^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~618~^10.647^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~619~^0.002^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~626~^0.010^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~628~^0.495^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~645~^16.721^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19147~^~646~^10.650^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19148~^~312~^0.254^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~315~^0.593^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~404~^0.134^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~405~^0.044^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~406~^2.646^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~410~^0.529^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~415~^0.079^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~606~^4.144^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~607~^0.145^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~608~^0.090^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~609~^0.054^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~610~^0.114^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~611~^0.117^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~612~^0.342^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~613~^2.479^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~614~^0.771^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~615~^0.006^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~617~^7.821^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~618~^4.557^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~619~^0.001^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~626~^0.046^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~628~^0.197^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~ -~19148~^~645~^8.064^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~646~^4.558^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19148~^~653~^0.025^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~ -~19149~^~605~^0.080^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19149~^~606~^11.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19150~^~312~^0.240^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~404~^0.160^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~405~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~406~^4.490^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~410~^0.620^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~415~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19150~^~606~^10.730^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19150~^~607~^0.282^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~608~^0.102^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~609~^0.058^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~610~^0.110^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~611~^0.121^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~612~^0.382^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~613~^5.408^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~614~^3.862^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~615~^0.096^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~617~^12.689^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~19150~^~618~^5.438^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~619~^0.023^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~624~^0.010^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~625~^0.039^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~19150~^~626~^0.077^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~19150~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~628~^0.284^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~19150~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~645~^13.100^1^^~12~^~MA~^^^^^^^^^^~02/01/2003~ -~19150~^~646~^5.500^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19150~^~652~^0.038^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~653~^0.037^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19150~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~687~^0.012^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~ -~19150~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19150~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19151~^~312~^0.410^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~315~^1.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~404~^0.180^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~405~^0.220^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~406~^6.060^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~410~^0.610^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~415~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~ -~19151~^~606~^16.420^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~607~^0.002^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~608~^0.039^0^^~4~^~FLM~^^^^^^^^^^~05/01/2002~ -~19151~^~609~^0.639^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~610~^0.717^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~611~^9.099^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~612~^3.182^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~613~^1.989^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~614~^0.750^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~617~^4.434^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~618~^1.768^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~619~^0.108^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~626~^0.019^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~628~^0.002^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19151~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19151~^~645~^4.460^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19151~^~646~^1.880^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~312~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~405~^0.120^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~406~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~410~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19152~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~11/01/2004~ -~19152~^~606~^14.542^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~19152~^~607~^0.448^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~608~^0.229^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~609~^0.167^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~610~^0.250^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~611~^0.275^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~612~^0.947^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~613~^6.535^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~614~^5.423^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~615~^0.137^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~617~^2.068^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~618~^0.235^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~619~^0.030^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~624~^0.038^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~625~^0.007^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~626~^0.024^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~645~^2.104^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~19152~^~646~^0.265^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~19152~^~652~^0.045^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~653~^0.049^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19152~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~ -~19153~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19153~^~606~^8.330^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19154~^~312~^0.950^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~315~^1.609^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~404~^0.444^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~405~^0.159^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~406~^3.703^3^0.124^~1~^^^^^^^^^^^~08/01/1991~ -~19154~^~410~^0.033^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~415~^0.491^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~606~^4.662^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~612~^0.083^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~613~^2.976^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~614~^1.401^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~617~^12.412^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~618~^14.324^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~619~^0.252^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~626~^0.100^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~628~^0.047^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~645~^12.571^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19154~^~646~^14.591^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19155~^~312~^0.270^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~315~^0.350^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~406~^3.600^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~410~^0.590^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~11/01/2003~ -~19155~^~605~^0.436^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~606~^9.069^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19155~^~607~^0.318^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~608~^0.142^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~609~^0.082^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~610~^0.167^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~611~^0.181^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~612~^0.575^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~613~^4.181^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~614~^3.145^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~615~^0.075^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~617~^7.625^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~618~^2.966^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~619~^0.048^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~624~^0.010^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~625~^0.027^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~626~^0.107^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~628~^0.110^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~645~^7.875^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~646~^3.014^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~652~^0.028^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~653~^0.037^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2006~ -~19155~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~687~^0.008^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19155~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19155~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~ -~19156~^~312~^0.012^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~315~^0.015^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~404~^0.001^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~405~^0.002^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~406~^0.005^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~410~^0.035^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~415~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19156~^~605~^0.141^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~606~^7.778^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19156~^~607~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~608~^0.027^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~609~^0.321^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~610~^0.259^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~611~^3.524^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~612~^1.226^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~613~^0.686^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~614~^1.708^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~615~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19156~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19157~^~605~^0.184^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19157~^~606~^14.466^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19159~^~312~^0.155^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~315~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~404~^0.034^3^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~405~^0.056^1^^~8~^~LC~^^^^^^^^^^~12/01/2005~ -~19159~^~406~^0.230^3^0.035^~1~^^^^^^^^^^^~08/01/1991~ -~19159~^~410~^0.231^1^^~1~^^^^^^^^^^^~12/01/2005~ -~19159~^~415~^0.015^1^^~1~^^^^^^^^^^^~12/01/2005~ -~19159~^~605~^0.129^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~606~^8.646^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~19159~^~607~^0.216^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~608~^0.078^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~609~^0.045^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~610~^0.085^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~611~^0.093^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~612~^0.295^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~613~^3.699^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~614~^3.911^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~615~^0.106^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~617~^2.346^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~618~^0.306^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~619~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~624~^0.041^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~625~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~626~^0.017^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~645~^2.373^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~646~^0.316^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~652~^0.033^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~653~^0.039^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19159~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~19160~^~312~^0.197^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~315~^0.273^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~404~^0.155^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~405~^0.208^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~406~^1.109^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~410~^0.265^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~415~^0.025^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~605~^0.342^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19160~^~606~^18.960^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19160~^~607~^0.240^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~608~^0.118^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~609~^0.484^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~610~^0.513^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~611~^6.587^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~612~^2.474^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~613~^3.803^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~614~^4.588^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~615~^0.083^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~617~^2.858^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~618~^0.594^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~619~^0.034^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~624~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~625~^0.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~626~^0.078^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~19160~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~645~^2.988^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19160~^~646~^0.628^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19160~^~652~^0.031^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~653~^0.030^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~687~^0.011^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19160~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19160~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2004~ -~19161~^~312~^0.290^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~315~^0.942^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~404~^0.098^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~405~^0.145^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~406~^2.379^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~410~^0.468^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~415~^0.114^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~605~^0.505^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19161~^~606~^15.758^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19161~^~607~^0.315^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~608~^0.114^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~609~^0.068^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~610~^0.123^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~611~^0.166^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~612~^0.487^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~613~^7.301^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~614~^6.358^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~615~^0.289^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~617~^12.143^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~618~^3.351^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~619~^0.055^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~624~^0.337^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~625~^0.027^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~626~^0.063^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~628~^0.076^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~ -~19161~^~645~^12.317^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19161~^~646~^3.407^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19161~^~652~^0.050^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~653~^0.066^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~654~^0.083^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~687~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19161~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19162~^~312~^0.120^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~315~^0.330^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~404~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~405~^0.210^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~406~^2.470^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~410~^0.260^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~415~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~605~^0.120^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~606~^17.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~607~^0.403^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~608~^0.169^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~609~^0.334^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~610~^0.449^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~611~^3.660^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~612~^1.801^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~613~^5.260^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~614~^4.715^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~615~^0.122^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~617~^2.146^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~618~^0.761^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~619~^0.027^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~624~^0.013^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~625~^0.016^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~626~^0.040^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~628~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19162~^~645~^3.780^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~646~^0.830^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19162~^~652~^0.048^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~653~^0.053^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~687~^0.004^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19162~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~19163~^~312~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~315~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19163~^~404~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19163~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~ -~19163~^~606~^0.042^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~613~^0.036^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~614~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~617~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~618~^0.133^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~619~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~645~^0.079^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19163~^~646~^0.137^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19164~^~312~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~404~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~405~^0.010^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~406~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~410~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~645~^5.140^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19164~^~646~^0.440^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19165~^~312~^3.788^9^0.146^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~315~^3.837^9^0.104^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~404~^0.078^6^0.020^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~405~^0.241^6^0.061^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~406~^2.185^6^0.455^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~410~^0.254^5^0.064^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~415~^0.118^6^0.035^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~501~^0.293^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~502~^0.776^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~503~^0.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~504~^1.189^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~505~^0.983^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~506~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~507~^0.239^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~508~^0.941^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~509~^0.735^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~510~^1.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~511~^1.111^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~512~^0.339^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~513~^0.904^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~514~^1.953^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~515~^2.948^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~516~^0.879^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~517~^0.838^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~518~^0.846^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~606~^8.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~612~^0.020^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~613~^3.690^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~614~^4.250^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~617~^4.570^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~618~^0.440^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19165~^~645~^4.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19165~^~646~^0.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~312~^3.607^3^0.148^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~315~^3.737^3^0.182^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~404~^0.110^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~405~^0.460^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~406~^2.400^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~410~^0.254^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~415~^0.118^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19166~^~501~^0.271^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~502~^0.716^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~503~^0.701^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~504~^1.097^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~505~^0.907^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~506~^0.187^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~507~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~508~^0.869^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~509~^0.678^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~510~^1.086^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~511~^1.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~512~^0.312^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~513~^0.834^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~514~^1.802^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~515~^2.720^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~516~^0.812^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~517~^0.773^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~518~^0.781^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~606~^7.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~612~^0.020^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~613~^3.550^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~614~^4.080^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~617~^4.390^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~618~^0.420^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19166~^~645~^4.390^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19166~^~646~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19168~^~312~^0.028^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~315~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~404~^0.038^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~405~^0.240^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~406~^0.105^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~410~^0.569^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~415~^0.048^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~606~^2.164^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~607~^0.064^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~608~^0.064^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~609~^0.065^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~610~^0.065^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~611~^0.067^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~612~^0.263^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~613~^1.112^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~614~^0.455^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~615~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~617~^1.319^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~618~^0.307^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~619~^0.070^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~620~^0.025^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~621~^0.007^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~624~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~625~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~626~^0.053^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~628~^0.005^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~629~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~630~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~645~^1.379^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~646~^0.410^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~652~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~653~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~654~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19168~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19169~^~312~^0.046^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~315~^0.020^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~404~^0.145^6^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~405~^0.412^6^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~406~^0.320^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~410~^2.238^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~415~^0.216^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~501~^0.094^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~502~^0.401^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~503~^0.368^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~504~^0.623^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~505~^0.553^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~506~^0.153^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~507~^0.130^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~508~^0.261^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~509~^0.257^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~510~^0.381^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~511~^0.361^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~512~^0.156^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~513~^0.341^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~514~^0.681^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~515~^1.031^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~516~^0.185^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~517~^0.351^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~518~^0.475^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~606~^2.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~607~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~612~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~613~^1.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~614~^0.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~617~^2.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~618~^0.710^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~619~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~620~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~621~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~626~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~628~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~629~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~630~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~ -~19169~^~645~^2.400^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19169~^~646~^0.850^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19170~^~312~^0.030^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~315~^0.007^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~404~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~405~^0.220^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~406~^0.132^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~410~^0.699^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~415~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~501~^0.082^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~502~^0.192^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~503~^0.207^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~504~^0.337^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~505~^0.214^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~506~^0.091^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~507~^0.036^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~508~^0.173^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~509~^0.177^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~510~^0.233^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~511~^0.125^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~512~^0.092^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~513~^0.146^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~514~^0.321^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~515~^0.745^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~516~^0.097^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~517~^0.362^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~518~^0.171^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~606~^2.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~607~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~608~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~609~^0.068^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~610~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~611~^0.072^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~612~^0.280^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~613~^0.987^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~614~^0.415^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~615~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~617~^1.093^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~618~^0.223^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~619~^0.071^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~620~^0.014^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~621~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~626~^0.030^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~628~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19170~^~645~^1.127^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~646~^0.312^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~653~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19170~^~696~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19171~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~ -~19172~^~312~^0.118^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~315~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~404~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~405~^0.041^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~406~^0.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~410~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~415~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19172~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~502~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~503~^0.118^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~504~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~505~^0.354^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~506~^0.062^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~508~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~510~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~511~^0.676^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~512~^0.068^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~513~^0.818^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~514~^0.538^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~515~^0.894^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~516~^1.947^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~517~^1.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~518~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19172~^~606~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~02/01/2003~ -~19172~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19172~^~645~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~02/01/2003~ -~19172~^~646~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^1^^^^~02/01/2003~ -~19173~^~312~^0.024^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~315~^0.002^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~405~^0.006^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~406~^0.001^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~410~^0.002^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~501~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~502~^0.024^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~503~^0.019^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~504~^0.039^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~505~^0.056^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~506~^0.010^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~507~^0.000^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~508~^0.028^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~509~^0.005^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~510~^0.033^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~511~^0.106^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~512~^0.011^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~513~^0.128^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~514~^0.084^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~515~^0.140^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~516~^0.305^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~517~^0.197^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~518~^0.042^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~ -~19173~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19173~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~ -~19175~^~312~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~315~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~404~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~405~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19175~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19175~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19176~^~312~^0.007^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~315~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~404~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~405~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~406~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~410~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~415~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~606~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~607~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~608~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~609~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~610~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~611~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~612~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~613~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~614~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~617~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~618~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~619~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~626~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~628~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~645~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19176~^~646~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~ -~19177~^~312~^2.161^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~315~^0.105^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~404~^0.025^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~405~^0.230^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~406~^0.085^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~410~^0.125^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~415~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19177~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~502~^1.475^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~503~^1.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~504~^2.454^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~505~^3.460^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~506~^0.606^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~508~^1.737^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~509~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~510~^2.081^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~511~^6.616^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~512~^0.662^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~513~^8.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~514~^5.265^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~515~^8.753^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~516~^19.049^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~517~^12.295^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~518~^2.605^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~606~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~613~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~614~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~617~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~618~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~619~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19177~^~645~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19177~^~646~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19181~^~312~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~404~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~405~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~406~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~410~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~606~^4.430^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~645~^0.480^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19181~^~646~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19182~^~312~^0.075^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~315~^0.059^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~404~^0.045^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~405~^0.205^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~406~^0.146^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~410~^0.533^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~415~^0.058^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~606~^9.151^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~607~^0.312^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~608~^0.203^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~609~^0.137^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~610~^0.252^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~611~^0.278^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~612~^1.018^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~613~^4.150^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~614~^2.611^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~615~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~617~^4.627^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~618~^0.656^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~619~^0.176^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~620~^0.037^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~621~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~624~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~625~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~626~^0.269^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~628~^0.007^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~629~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~630~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~645~^5.027^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~646~^0.879^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~652~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~653~^0.004^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~654~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19182~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19183~^~312~^0.092^4^0.009^~1~^~A~^^^1^0.079^0.117^3^0.065^0.119^~2, 3~^~10/01/2006~ -~19183~^~315~^0.118^4^0.008^~1~^~A~^^^1^0.095^0.128^3^0.093^0.143^~2, 3~^~10/01/2006~ -~19183~^~404~^0.024^4^0.008^~1~^~A~^^^1^0.009^0.042^3^-0.002^0.049^~2, 3~^~10/01/2006~ -~19183~^~405~^0.072^4^0.014^~1~^~A~^^^1^0.036^0.097^3^0.029^0.115^~2, 3~^~10/01/2006~ -~19183~^~406~^0.123^4^0.013^~1~^~A~^^^1^0.090^0.152^3^0.082^0.164^~2, 3~^~10/01/2006~ -~19183~^~410~^0.244^4^0.064^~1~^~A~^^^1^0.073^0.360^3^0.039^0.449^~2, 3~^~10/01/2006~ -~19183~^~415~^0.018^4^0.004^~1~^~A~^^^1^0.010^0.029^3^0.005^0.030^~2, 3~^~10/01/2006~ -~19183~^~606~^1.263^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~612~^0.006^4^0.006^~1~^~A~^^^1^0.000^0.024^3^-0.013^0.025^~1, 2, 3~^~10/01/2006~ -~19183~^~613~^0.580^4^0.091^~1~^~A~^^^1^0.337^0.752^3^0.290^0.870^~2, 3~^~10/01/2006~ -~19183~^~614~^0.646^4^0.090^~1~^~A~^^^1^0.412^0.820^3^0.360^0.931^~2, 3~^~10/01/2006~ -~19183~^~615~^0.019^4^0.002^~1~^~A~^^^1^0.012^0.023^3^0.011^0.026^~2, 3~^~10/01/2006~ -~19183~^~617~^2.718^4^0.370^~1~^~A~^^^1^1.850^3.490^3^1.542^3.894^~2, 3~^~10/01/2006~ -~19183~^~618~^0.103^4^0.013^~1~^~A~^^^1^0.077^0.138^3^0.060^0.145^~2, 3~^~10/01/2006~ -~19183~^~619~^0.002^4^0.002^~1~^~AS~^^^1^0.000^0.009^3^-0.005^0.009^~2, 3~^~10/01/2006~ -~19183~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~624~^0.012^4^0.003^~1~^~A~^^^1^0.005^0.018^3^0.003^0.022^~2, 3~^~10/01/2006~ -~19183~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~626~^0.004^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.004^0.013^~1, 2, 3~^~10/01/2006~ -~19183~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~628~^0.009^4^0.005^~1~^~A~^^^1^0.000^0.023^3^-0.007^0.025^~1, 2, 3~^~10/01/2006~ -~19183~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19183~^~645~^2.731^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~646~^0.105^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19183~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19183~^~851~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.005^0.009^~1, 2, 3~^~10/01/2006~ -~19184~^~312~^0.354^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~315~^0.367^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~404~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~405~^0.055^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~406~^0.234^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~410~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~415~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19184~^~606~^0.825^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~612~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~613~^0.413^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~614~^0.400^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~617~^0.485^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~618~^0.314^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~619~^0.034^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~645~^0.487^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19184~^~646~^0.348^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19185~^~312~^0.064^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~315~^0.042^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~404~^0.033^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~405~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~406~^0.096^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~410~^0.269^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~415~^0.038^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~501~^0.042^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~502~^0.132^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~503~^0.173^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~504~^0.279^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~505~^0.226^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~507~^0.029^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~508~^0.143^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~509~^0.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~510~^0.197^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~511~^0.115^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~512~^0.078^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~513~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~514~^0.234^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~515~^0.603^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~516~^0.071^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~517~^0.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~606~^1.830^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~607~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~608~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~609~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~610~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~611~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~612~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~613~^0.820^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~614~^0.410^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~617~^0.850^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~618~^0.130^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19185~^~645~^0.920^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19185~^~646~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19186~^~312~^0.071^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~315~^0.130^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~404~^0.083^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~405~^0.081^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~406~^0.846^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~410~^0.092^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~415~^0.040^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~606~^0.685^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~608~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~609~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~610~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~611~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~612~^0.007^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~613~^0.411^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~614~^0.266^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~615~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~617~^1.333^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~618~^1.075^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~619~^0.069^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~645~^1.334^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~646~^1.144^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~653~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~687~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19186~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19187~^~312~^0.015^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~315~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~406~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~410~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19187~^~415~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19188~^~312~^0.518^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~315~^0.537^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~404~^0.015^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~405~^0.071^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~406~^0.330^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~410~^0.035^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~415~^0.016^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19188~^~606~^1.234^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~612~^0.003^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~613~^0.567^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~614~^0.647^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~617~^0.703^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~618~^0.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~645~^0.703^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19188~^~646~^0.079^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19189~^~312~^0.111^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~315~^0.097^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~404~^0.038^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~405~^0.157^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~406~^0.133^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~410~^0.326^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~415~^0.030^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~606~^1.810^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19189~^~607~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~608~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~609~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~610~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~611~^0.066^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~612~^0.255^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~613~^0.809^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~614~^0.425^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~615~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~617~^0.819^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~618~^0.117^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~619~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~645~^0.819^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~646~^0.180^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19189~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~653~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19189~^~696~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19190~^~312~^0.095^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~315~^0.106^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~404~^0.033^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~405~^0.171^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~406~^0.136^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~410~^0.310^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~415~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~501~^0.035^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~502~^0.088^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~503~^0.156^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~504~^0.283^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~505~^0.199^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~506~^0.071^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~507~^0.092^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~508~^0.139^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~509~^0.131^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~510~^0.186^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~511~^0.092^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~512~^0.062^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~513~^0.095^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~514~^0.256^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~515~^0.667^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~516~^0.052^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~517~^0.315^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~518~^0.170^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~521~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~605~^0.073^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~606~^1.289^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~607~^0.066^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~608~^0.034^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~609~^0.017^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~610~^0.042^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~611~^0.047^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~612~^0.151^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~613~^0.577^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~614~^0.321^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~615~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~617~^0.558^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~618~^0.067^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~619~^0.007^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~624~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~625~^0.012^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~626~^0.023^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~628~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19190~^~645~^0.602^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~646~^0.076^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19190~^~652~^0.017^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~653~^0.010^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~687~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~689~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~696~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19190~^~697~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19191~^~312~^0.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~315~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~404~^0.034^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~405~^0.138^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~406~^0.086^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~410~^0.271^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~415~^0.038^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~502~^0.124^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~503~^0.165^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~504~^0.269^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~505~^0.216^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~508~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~509~^0.132^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~510~^0.185^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~511~^0.115^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~512~^0.075^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~513~^0.098^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~514~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~515~^0.583^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~516~^0.062^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~517~^0.262^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~518~^0.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~606~^1.370^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~607~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~608~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~609~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~610~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~611~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~612~^0.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~613~^0.500^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~614~^0.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~617~^0.580^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~618~^0.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~626~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~645~^0.620^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19191~^~646~^0.190^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19193~^~312~^0.023^6^0.001^~1~^~A~^^^1^0.019^0.025^5^0.019^0.026^~1, 2, 3~^~05/01/2013~ -~19193~^~315~^0.077^6^0.001^~1~^~A~^^^1^0.074^0.083^5^0.073^0.080^~2, 3~^~05/01/2013~ -~19193~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~05/01/2013~ -~19193~^~405~^0.183^3^0.003^~1~^~A~^^^1^0.180^0.190^2^0.169^0.197^~2, 3~^~05/01/2013~ -~19193~^~406~^0.217^3^0.003^~1~^~A~^^^1^0.210^0.220^2^0.202^0.231^~2, 3~^~05/01/2013~ -~19193~^~410~^0.540^2^^~1~^~A~^^^1^0.540^0.540^^^^^~05/01/2013~ -~19193~^~415~^0.052^3^0.005^~1~^~A~^^^1^0.047^0.061^2^0.032^0.071^~2, 3~^~05/01/2013~ -~19193~^~605~^0.054^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~606~^1.208^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~607~^0.043^3^0.003^~1~^~A~^^^1^0.039^0.049^2^0.031^0.056^~2, 3~^~05/01/2013~ -~19193~^~608~^0.030^3^0.002^~1~^~A~^^^1^0.026^0.034^2^0.020^0.040^~2, 3~^~05/01/2013~ -~19193~^~609~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.013^0.025^~2, 3~^~05/01/2013~ -~19193~^~610~^0.058^3^0.004^~1~^~A~^^^1^0.052^0.065^2^0.041^0.074^~2, 3~^~05/01/2013~ -~19193~^~611~^0.056^3^0.004^~1~^~A~^^^1^0.051^0.064^2^0.039^0.073^~2, 3~^~05/01/2013~ -~19193~^~612~^0.185^3^0.013^~1~^~A~^^^1^0.168^0.211^2^0.129^0.242^~2, 3~^~05/01/2013~ -~19193~^~613~^0.590^3^0.051^~1~^~A~^^^1^0.532^0.692^2^0.369^0.810^~2, 3~^~05/01/2013~ -~19193~^~614~^0.190^3^0.006^~1~^~A~^^^1^0.178^0.198^2^0.164^0.217^~2, 3~^~05/01/2013~ -~19193~^~615~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~19193~^~617~^0.492^3^0.022^~1~^~AS~^^^1^0.454^0.530^2^0.397^0.586^~2, 3~^~05/01/2013~ -~19193~^~618~^0.113^3^0.004^~1~^~AS~^^^1^0.108^0.121^2^0.096^0.130^~2, 3~^~05/01/2013~ -~19193~^~619~^0.008^3^0.001^~1~^~AS~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~05/01/2013~ -~19193~^~620~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2013~ -~19193~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~624~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2013~ -~19193~^~625~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.023^2^0.010^0.028^~2, 3~^~05/01/2013~ -~19193~^~626~^0.035^3^0.004^~1~^~AS~^^^1^0.030^0.042^2^0.019^0.051^~2, 3~^~05/01/2013~ -~19193~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~628~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2013~ -~19193~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2013~ -~19193~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~645~^0.556^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~646~^0.129^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~652~^0.021^3^0.001^~1~^~A~^^^1^0.018^0.023^2^0.014^0.027^~2, 3~^~05/01/2013~ -~19193~^~653~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~05/01/2013~ -~19193~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~662~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2013~ -~19193~^~663~^0.037^3^0.002^~1~^~A~^^^1^0.034^0.040^2^0.030^0.044^~2, 3~^~05/01/2013~ -~19193~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~665~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2013~ -~19193~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~05/01/2013~ -~19193~^~671~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~05/01/2013~ -~19193~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~673~^0.029^3^0.003^~1~^~A~^^^1^0.024^0.035^2^0.015^0.043^~2, 3~^~05/01/2013~ -~19193~^~674~^0.455^3^0.020^~1~^~A~^^^1^0.420^0.490^2^0.368^0.542^~2, 3~^~05/01/2013~ -~19193~^~675~^0.093^3^0.003^~1~^~A~^^^1^0.089^0.099^2^0.080^0.106^~2, 3~^~05/01/2013~ -~19193~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~687~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2013~ -~19193~^~689~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~19193~^~693~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~19193~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19193~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~851~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~05/01/2013~ -~19193~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~853~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~19193~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19193~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~19194~^~312~^0.062^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~315~^0.300^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~404~^0.248^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~405~^0.012^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~406~^2.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~410~^0.108^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19194~^~415~^0.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19195~^~312~^0.020^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~315~^0.059^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~404~^0.074^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~405~^0.138^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~406~^0.441^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~410~^0.283^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~415~^0.034^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~501~^0.039^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~502~^0.125^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~503~^0.167^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~504~^0.270^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~505~^0.219^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~506~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~507~^0.025^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~508~^0.133^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~509~^0.133^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~510~^0.184^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~511~^0.100^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~512~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~513~^0.095^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~514~^0.210^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~515~^0.577^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~516~^0.059^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~517~^0.267^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~518~^0.150^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~606~^1.682^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~607~^0.091^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~608~^0.054^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~609~^0.031^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~610~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~611~^0.079^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~612~^0.282^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~613~^0.737^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~614~^0.339^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~617~^0.704^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~618~^0.063^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~619~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~626~^0.063^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~645~^0.767^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19195~^~646~^0.104^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19198~^~312~^0.029^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~315~^0.033^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~404~^0.001^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~405~^0.006^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~406~^0.004^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~410~^0.015^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19198~^~415~^0.001^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~ -~19198~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~502~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~503~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~504~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~505~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~508~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~510~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~514~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~515~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~516~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~517~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19198~^~518~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19199~^~312~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~315~^0.009^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~404~^0.030^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~405~^0.140^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~406~^0.073^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~410~^0.272^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~415~^0.033^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~501~^0.040^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~502~^0.129^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~503~^0.172^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~504~^0.278^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~505~^0.225^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~506~^0.072^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~507~^0.026^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~508~^0.137^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~509~^0.137^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~510~^0.190^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~511~^0.104^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~512~^0.077^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~513~^0.098^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~514~^0.216^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~515~^0.596^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~516~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~517~^0.275^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~518~^0.154^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~606~^1.724^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~607~^0.093^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~608~^0.055^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~609~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~610~^0.072^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~611~^0.081^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~612~^0.289^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~613~^0.755^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~614~^0.348^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~617~^0.722^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~618~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~619~^0.042^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~626~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~645~^0.786^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19199~^~646~^0.107^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19201~^~312~^0.018^4^0.000^~1~^~A~^^^1^0.018^0.018^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~315~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~404~^0.019^4^0.005^~1~^~A~^^^1^0.011^0.040^1^-0.039^0.077^~2, 3~^~10/01/2006~ -~19201~^~405~^0.071^4^0.004^~1~^~A~^^^1^0.058^0.115^1^0.026^0.117^~2, 3~^~10/01/2006~ -~19201~^~406~^0.057^3^^~1~^~A~^^^1^0.050^0.080^^^^~2, 3~^~10/01/2006~ -~19201~^~410~^0.153^4^0.010^~1~^~A~^^^1^0.106^0.207^1^0.025^0.280^~2, 3~^~10/01/2006~ -~19201~^~415~^0.019^4^0.000^~1~^~A~^^^1^0.017^0.032^1^0.016^0.021^~2, 3~^~10/01/2006~ -~19201~^~606~^1.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~607~^0.005^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~608~^0.004^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19201~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~612~^0.010^4^0.000^~1~^~A~^^^1^0.000^0.024^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~613~^0.508^4^0.054^~1~^~A~^^^1^0.245^0.692^1^-0.175^1.191^~2, 3~^~10/01/2006~ -~19201~^~614~^0.473^4^0.037^~1~^~A~^^^1^0.317^0.702^1^0.000^0.947^~2, 3~^~10/01/2006~ -~19201~^~615~^0.015^4^0.000^~1~^~A~^^^1^0.011^0.018^1^0.009^0.021^~2, 3~^~10/01/2006~ -~19201~^~617~^2.275^4^0.171^~1~^~A~^^^1^1.772^3.183^1^0.102^4.447^~2, 3~^~10/01/2006~ -~19201~^~618~^0.087^4^0.004^~1~^~A~^^^1^0.076^0.116^1^0.036^0.138^~2, 3~^~10/01/2006~ -~19201~^~619~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2006~ -~19201~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2006~ -~19201~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19201~^~624~^0.009^4^0.001^~1~^~A~^^^1^0.004^0.016^1^0.000^0.019^~2, 3~^~10/01/2006~ -~19201~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~626~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.007^1^-0.018^0.027^~1, 2, 3~^~10/01/2006~ -~19201~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19201~^~628~^0.007^4^0.003^~1~^~A~^^^1^0.000^0.021^1^-0.034^0.048^~1, 2, 3~^~10/01/2006~ -~19201~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19201~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19201~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19201~^~645~^2.286^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~646~^0.087^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~653~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^1^-0.014^0.017^~1, 2, 3~^~10/01/2006~ -~19201~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19201~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19201~^~851~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19202~^~312~^0.093^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19202~^~315~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~404~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~405~^0.028^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~406~^0.006^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~410~^0.026^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~415~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19202~^~606~^0.432^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~607~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~608~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~609~^0.011^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~610~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~611~^0.123^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~612~^0.044^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~613~^0.105^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~614~^0.136^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~617~^0.118^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~618~^0.009^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~619~^0.001^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~626~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~645~^0.120^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19202~^~646~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19203~^~312~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~315~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~404~^0.033^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~405~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~406~^0.074^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~410~^0.262^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~415~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~501~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~502~^0.117^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~503~^0.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~504~^0.255^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~505~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~509~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~511~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~512~^0.071^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~513~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~514~^0.198^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~515~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~517~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~518~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~606~^1.740^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~607~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~608~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~609~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~610~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~611~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~612~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~613~^0.770^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~614~^0.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~617~^0.780^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~618~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19203~^~645~^0.840^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19203~^~646~^0.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19204~^~312~^0.009^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~315~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~404~^0.033^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~405~^0.137^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~406~^0.072^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~410~^0.267^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~415~^0.036^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19204~^~501~^0.039^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~502~^0.125^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~503~^0.167^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~504~^0.271^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~505~^0.219^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~506~^0.070^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~507~^0.026^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~508~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~509~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~510~^0.185^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~511~^0.100^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~512~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~513~^0.095^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~514~^0.210^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~515~^0.579^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~516~^0.058^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~517~^0.268^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~518~^0.150^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~606~^0.974^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~607~^0.051^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~608~^0.031^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~609~^0.017^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~610~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~611~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~612~^0.160^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~613~^0.431^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~614~^0.198^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~617~^0.448^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~618~^0.075^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~619~^0.027^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~626~^0.036^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~645~^0.484^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19204~^~646~^0.101^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19205~^~312~^0.012^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~315~^0.016^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~404~^0.056^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~405~^0.235^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~406~^0.135^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~410~^0.683^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~415~^0.066^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~501~^0.052^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~502~^0.159^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~503~^0.226^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~504~^0.402^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~505~^0.301^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~506~^0.100^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~507~^0.119^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~508~^0.190^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~509~^0.181^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~510~^0.260^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~511~^0.156^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~512~^0.091^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~513~^0.156^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~514~^0.383^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~515~^0.878^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~516~^0.085^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~517~^0.393^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~518~^0.258^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~521~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~605~^0.078^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~606~^1.475^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~607~^0.072^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~608~^0.038^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~609~^0.019^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~610~^0.047^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~611~^0.052^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~612~^0.169^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~613~^0.739^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~614~^0.304^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~615~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~617~^0.814^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~618~^0.170^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~619~^0.011^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~620~^0.014^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~621~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~624~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~625~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~626~^0.055^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~628~^0.005^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19205~^~645~^0.896^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~646~^0.201^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~ -~19205~^~652~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~653~^0.010^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~687~^0.005^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~689~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~696~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19205~^~697~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19206~^~312~^0.021^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~315~^0.008^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~405~^0.013^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~19206~^~406~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19206~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~505~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~513~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~515~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~516~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~606~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~613~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~614~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~617~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~618~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19206~^~645~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19206~^~646~^0.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19207~^~312~^0.025^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~315~^0.005^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~404~^0.036^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~405~^0.149^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~406~^0.078^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~410~^0.326^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~415~^0.028^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~ -~19207~^~606~^1.643^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~607~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~608~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~609~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~610~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~611~^0.067^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~612~^0.259^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~613~^0.738^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~614~^0.319^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~615~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~617~^0.714^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~618~^0.130^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~619~^0.067^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~645~^0.714^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~646~^0.197^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~653~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19207~^~696~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~ -~19208~^~312~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~315~^0.057^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~404~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~405~^0.141^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~406~^0.443^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~410~^0.288^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~415~^0.035^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~501~^0.039^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~502~^0.126^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~503~^0.169^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~504~^0.273^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~505~^0.221^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~506~^0.070^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~507~^0.026^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~508~^0.135^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~509~^0.135^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~510~^0.187^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~511~^0.101^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~512~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~513~^0.096^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~514~^0.212^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~515~^0.584^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~516~^0.059^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~517~^0.271^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~518~^0.152^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~606~^0.967^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~607~^0.052^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~608~^0.031^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~609~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~610~^0.040^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~611~^0.045^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~612~^0.162^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~613~^0.423^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~614~^0.195^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~617~^0.405^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~618~^0.036^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~619~^0.023^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~626~^0.036^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~645~^0.441^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19208~^~646~^0.060^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~312~^0.012^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~315~^0.007^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~404~^0.030^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~405~^0.143^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~406~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~410~^0.277^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~415~^0.033^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~501~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~502~^0.130^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~503~^0.173^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~504~^0.282^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~505~^0.228^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~506~^0.073^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~507~^0.027^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~508~^0.139^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~509~^0.139^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~510~^0.192^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~511~^0.106^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~512~^0.078^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~513~^0.100^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~514~^0.219^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~515~^0.603^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~516~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~517~^0.279^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~518~^0.156^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~606~^0.991^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~607~^0.053^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~608~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~609~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~610~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~611~^0.046^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~612~^0.166^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~613~^0.434^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~614~^0.200^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~617~^0.415^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~618~^0.037^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~619~^0.024^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~626~^0.037^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~645~^0.452^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19209~^~646~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~312~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~315~^0.004^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~404~^0.031^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~405~^0.146^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~406~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~410~^0.278^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~415~^0.034^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~501~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~502~^0.132^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~503~^0.176^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~504~^0.289^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~505~^0.231^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~506~^0.074^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~507~^0.028^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~508~^0.142^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~509~^0.142^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~510~^0.196^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~511~^0.107^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~512~^0.080^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~513~^0.103^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~514~^0.223^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~515~^0.614^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~516~^0.062^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~517~^0.285^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~518~^0.159^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~606~^1.017^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~607~^0.054^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~608~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~609~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~610~^0.042^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~611~^0.047^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~612~^0.168^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~613~^0.453^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~614~^0.203^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~617~^0.425^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~618~^0.062^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~619~^0.026^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~626~^0.037^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~645~^0.462^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19212~^~646~^0.088^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19213~^~312~^0.081^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~315~^0.066^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~404~^0.037^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~405~^0.155^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~406~^0.108^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~410~^0.292^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~415~^0.042^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19213~^~501~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~502~^0.144^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~503~^0.189^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~504~^0.307^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~505~^0.250^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~506~^0.078^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~507~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~508~^0.156^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~509~^0.153^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~510~^0.214^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~511~^0.124^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~512~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~513~^0.117^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~514~^0.251^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~515~^0.662^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~516~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~517~^0.306^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~518~^0.173^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~606~^1.231^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~607~^0.056^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~608~^0.033^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~609~^0.019^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~610~^0.043^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~611~^0.049^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~612~^0.174^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~613~^0.539^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~614~^0.319^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~617~^0.542^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~618~^0.048^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~619~^0.025^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~626~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~645~^0.581^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19213~^~646~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~312~^0.012^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~315~^0.003^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~404~^0.036^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~405~^0.153^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~406~^0.079^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~410~^0.294^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~415~^0.040^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19214~^~501~^0.043^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~502~^0.138^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~503~^0.185^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~504~^0.300^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~505~^0.243^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~506~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~507~^0.029^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~508~^0.148^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~509~^0.148^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~510~^0.205^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~511~^0.111^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~512~^0.083^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~513~^0.106^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~514~^0.233^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~515~^0.641^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~516~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~517~^0.297^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~518~^0.167^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~606~^1.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~607~^0.057^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~608~^0.034^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~609~^0.019^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~610~^0.044^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~611~^0.050^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~612~^0.178^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~613~^0.465^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~614~^0.214^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~617~^0.444^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~618~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~619~^0.026^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~626~^0.040^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~645~^0.484^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19214~^~646~^0.065^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19216~^~312~^0.494^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~315~^1.682^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~404~^0.203^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~405~^0.053^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~406~^0.415^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~410~^0.332^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~415~^0.077^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~606~^2.224^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~608~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~609~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~610~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~611~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~612~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~613~^1.571^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~614~^0.628^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~615~^0.025^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~617~^14.608^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~618~^7.423^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~619~^0.355^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~628~^0.075^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~645~^14.683^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~646~^7.778^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~653~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19216~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19217~^~312~^0.017^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~315~^0.021^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~405~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~406~^0.150^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~410~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~415~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19217~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19218~^~312~^0.018^2^^~1~^~A~^^^1^0.018^0.018^^^^~1~^~10/01/2006~ -~19218~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~10/01/2006~ -~19218~^~404~^0.024^2^^~1~^~A~^^^1^0.014^0.034^1^^^^~10/01/2006~ -~19218~^~405~^0.097^2^^~1~^~A~^^^1^0.086^0.108^1^^^^~10/01/2006~ -~19218~^~406~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~10/01/2006~ -~19218~^~410~^0.235^2^^~1~^~A~^^^1^0.199^0.271^1^^^^~10/01/2006~ -~19218~^~415~^0.024^2^^~1~^~A~^^^1^0.018^0.030^1^^^^~10/01/2006~ -~19218~^~606~^0.962^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~607~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~612~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~10/01/2006~ -~19218~^~613~^0.417^2^^~1~^~A~^^^1^0.359^0.475^1^^^^~10/01/2006~ -~19218~^~614~^0.511^2^^~1~^~A~^^^1^0.425^0.596^1^^^^~10/01/2006~ -~19218~^~615~^0.013^2^^~1~^~A~^^^1^0.011^0.016^1^^^^~10/01/2006~ -~19218~^~617~^2.530^2^^~1~^~A~^^^1^2.047^3.014^1^^^^~10/01/2006~ -~19218~^~618~^0.072^2^^~1~^~A~^^^1^0.067^0.077^1^^^^~10/01/2006~ -~19218~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~19218~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~624~^0.012^2^^~1~^~A~^^^1^0.010^0.015^1^^^^~10/01/2006~ -~19218~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~628~^0.007^2^^~1~^~A~^^^1^0.006^0.009^1^^^^~10/01/2006~ -~19218~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~645~^2.538^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~646~^0.072^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19218~^~652~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19218~^~653~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~10/01/2006~ -~19218~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19218~^~851~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2006~ -~19219~^~312~^0.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~315~^0.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~404~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~405~^0.146^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~406~^0.091^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~410~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~415~^0.145^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~501~^0.041^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~502~^0.131^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~503~^0.174^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~504~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~505~^0.227^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~506~^0.072^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~507~^0.028^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~508~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~509~^0.138^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~510~^0.195^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~511~^0.123^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~512~^0.079^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~513~^0.103^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~514~^0.225^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~515~^0.614^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~516~^0.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~517~^0.275^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~518~^0.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~606~^1.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~607~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~608~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~609~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~610~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~611~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~612~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~613~^0.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~614~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~617~^0.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~618~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~621~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~626~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~627~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~628~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~629~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~630~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~631~^0.000^0^^~7~^^^^^^^^^^^~12/01/1993~ -~19219~^~645~^0.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19219~^~646~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~312~^0.735^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~315~^0.643^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~404~^0.014^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~405~^0.063^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~406~^0.306^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~410~^0.044^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~415~^0.032^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19220~^~501~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~502~^0.088^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~503~^0.085^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~504~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~505~^0.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~507~^0.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~508~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~509~^0.078^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~510~^0.133^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~511~^0.148^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~512~^0.038^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~513~^0.134^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~514~^0.230^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~515~^0.351^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~516~^0.186^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~517~^0.148^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~518~^0.101^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~606~^1.940^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~613~^0.840^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~614~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~617~^1.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~618~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~619~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~645~^1.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19220~^~646~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19221~^~312~^0.083^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~315~^0.068^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~404~^0.036^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~405~^0.152^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~406~^0.106^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~410~^0.287^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~415~^0.041^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19221~^~501~^0.044^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~502~^0.143^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~503~^0.188^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~504~^0.303^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~505~^0.247^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~506~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~507~^0.030^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~508~^0.154^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~509~^0.151^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~510~^0.211^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~511~^0.122^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~512~^0.084^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~513~^0.115^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~514~^0.248^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~515~^0.655^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~516~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~517~^0.302^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~518~^0.171^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~606~^1.999^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~607~^0.097^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~608~^0.058^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~609~^0.033^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~610~^0.076^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~611~^0.085^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~612~^0.302^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~613~^0.875^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~614~^0.474^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~617~^0.863^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~618~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~619~^0.044^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~626~^0.069^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~645~^0.932^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19221~^~646~^0.121^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19222~^~312~^0.058^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~315~^0.009^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~405~^0.021^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~406~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~410~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19222~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19223~^~312~^0.014^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~315~^0.004^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~404~^0.035^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~405~^0.151^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~406~^0.077^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~410~^0.289^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~415~^0.039^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19223~^~501~^0.042^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~502~^0.137^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~503~^0.183^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~504~^0.296^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~505~^0.240^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~506~^0.076^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~507~^0.028^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~508~^0.146^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~509~^0.146^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~510~^0.202^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~511~^0.109^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~512~^0.082^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~513~^0.104^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~514~^0.230^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~515~^0.634^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~516~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~517~^0.293^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~518~^0.165^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~606~^1.846^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~607~^0.099^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~608~^0.059^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~609~^0.034^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~610~^0.077^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~611~^0.086^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~612~^0.309^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~613~^0.809^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~614~^0.373^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~617~^0.773^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~618~^0.069^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~619~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~626~^0.069^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~645~^0.842^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19223~^~646~^0.114^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19225~^~312~^0.200^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~315~^0.895^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19225~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~406~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~410~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~415~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19225~^~606~^0.041^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~612~^0.004^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~613~^0.021^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~614~^0.014^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~617~^0.033^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~618~^0.005^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~619~^0.001^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~620~^0.001^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~626~^0.004^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~645~^0.038^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19225~^~646~^0.007^0^^~4~^^^^^^^^^^^~04/01/1994~ -~19226~^~312~^0.200^4^0.045^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~315~^0.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~404~^0.013^7^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~405~^0.017^7^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~406~^0.119^7^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~410~^0.028^5^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~415~^0.005^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~502~^0.043^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~503~^0.042^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~504~^0.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~505~^0.054^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~506~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~507~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~508~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~509~^0.041^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~510~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~511~^0.061^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~512~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~513~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~514~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~515~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~516~^0.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~517~^0.047^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~518~^0.047^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~606~^5.526^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~612~^0.103^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~613~^2.410^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~614~^3.060^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~617~^9.020^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~618~^2.130^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~619~^0.096^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19226~^~645~^9.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19226~^~646~^2.226^0^^~4~^~O~^^^^^^^^^^~08/01/2011~ -~19227~^~312~^0.125^8^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~315~^0.673^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~404~^0.035^9^0.001^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~405~^0.019^9^0.004^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~406~^0.212^9^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19227~^~410~^0.155^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~415~^0.047^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~605~^3.748^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~606~^8.631^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~608~^0.034^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~609~^0.417^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~610~^0.332^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~611~^2.644^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~612~^1.056^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~613~^2.183^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~614~^1.863^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~615~^0.045^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~617~^10.752^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~618~^3.075^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~619~^0.135^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~624~^0.040^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~626~^0.011^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~628~^0.023^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~645~^10.786^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~646~^3.264^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~652~^0.004^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~653~^0.014^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19227~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19227~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19227~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19228~^~312~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~315~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~404~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~405~^0.006^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~406~^0.011^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19228~^~410~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~415~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19228~^~501~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~502~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~503~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~504~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~505~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~506~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~507~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~508~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~509~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~510~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~511~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~512~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~513~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~514~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~515~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~516~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~517~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~518~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~606~^4.545^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~612~^0.075^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~613~^3.536^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~614~^0.934^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~617~^3.729^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~618~^5.792^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~619~^0.361^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~626~^0.026^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~645~^3.755^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19228~^~646~^6.153^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~ -~19230~^~312~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~19230~^~315~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~19230~^~404~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.013^5^0.008^0.012^~1, 2, 3~^~03/01/2003~ -~19230~^~405~^0.302^6^0.025^~1~^~A~^^^1^0.225^0.392^5^0.237^0.367^~2, 3~^~03/01/2003~ -~19230~^~406~^0.220^6^0.000^~1~^~A~^^^1^0.220^0.220^^^^~2, 3~^~03/01/2003~ -~19230~^~410~^0.055^6^0.000^~1~^~A~^^^1^0.055^0.055^^^^~2, 3~^~03/01/2003~ -~19230~^~415~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2003~ -~19230~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19230~^~606~^2.974^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~612~^0.020^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~613~^2.375^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~614~^0.579^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19230~^~617~^4.681^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~618~^7.050^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~619~^0.901^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19230~^~626~^0.178^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19230~^~645~^4.860^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~646~^7.951^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19230~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19230~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~ -~19231~^~312~^0.010^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~315~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~404~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~405~^0.148^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~406~^0.077^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~410~^0.287^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~415~^0.035^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~501~^0.042^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~502~^0.135^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~503~^0.180^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~504~^0.293^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~505~^0.237^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~506~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~507~^0.028^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~508~^0.145^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~509~^0.145^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~510~^0.200^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~511~^0.109^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~512~^0.081^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~513~^0.103^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~514~^0.227^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~515~^0.626^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~516~^0.063^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~517~^0.290^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~518~^0.162^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~606~^1.035^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~607~^0.056^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~608~^0.033^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~609~^0.019^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~610~^0.043^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~611~^0.048^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~612~^0.173^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~613~^0.453^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~614~^0.209^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~617~^0.434^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~618~^0.039^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~619~^0.025^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~626~^0.039^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~645~^0.472^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19231~^~646~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~312~^0.011^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~315~^0.005^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~404~^0.031^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~405~^0.145^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~406~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~410~^0.282^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~415~^0.034^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~501~^0.041^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~502~^0.134^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~503~^0.178^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~504~^0.289^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~505~^0.234^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~506~^0.074^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~507~^0.027^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~508~^0.143^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~509~^0.143^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~510~^0.197^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~511~^0.107^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~512~^0.080^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~513~^0.101^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~514~^0.224^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~515~^0.618^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~516~^0.063^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~517~^0.286^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~518~^0.161^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~606~^1.800^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~607~^0.097^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~608~^0.057^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~609~^0.033^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~610~^0.075^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~611~^0.084^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~612~^0.301^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~613~^0.788^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~614~^0.363^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~617~^0.753^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~618~^0.067^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~619~^0.044^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~626~^0.067^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~645~^0.821^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19232~^~646~^0.111^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19233~^~312~^0.013^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~315~^0.004^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~404~^0.022^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~405~^0.088^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~406~^0.052^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~410~^0.196^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~415~^0.019^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~ -~19233~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19233~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19234~^~312~^0.018^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~404~^0.013^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~405~^0.075^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~406~^0.101^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~415~^0.020^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~606~^0.122^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~607~^0.007^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~ -~19234~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~612~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~613~^0.014^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~614~^0.105^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~615~^0.001^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~617~^0.012^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~618~^0.002^1^^~1~^~A~^^^^^^^^^^~10/01/2006~ -~19234~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~ -~19234~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19234~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~646~^0.002^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~ -~19234~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19234~^~851~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~ -~19235~^~312~^0.083^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~315~^0.078^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~404~^0.018^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~405~^0.074^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~406~^0.087^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~410~^0.148^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~415~^0.016^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~606~^0.000^3^0.000^~8~^~LC~^^^1^0.000^0.000^2^0.000^0.000^~4~^~12/01/2006~ -~19235~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~ -~19235~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19235~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19236~^~312~^0.200^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~315~^0.010^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~404~^0.070^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~405~^0.380^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~406~^0.620^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~410~^0.470^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~415~^0.070^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~605~^0.150^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~606~^17.390^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~645~^14.380^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19236~^~646~^2.420^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~312~^0.300^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~315~^0.650^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~404~^0.150^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~405~^0.210^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~406~^4.330^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~410~^0.570^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~415~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~605~^0.050^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~606~^18.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~645~^7.060^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19238~^~646~^1.820^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~312~^0.270^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~404~^0.180^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~405~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~406~^5.250^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~410~^0.540^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~415~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~606~^8.860^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~645~^12.630^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19239~^~646~^8.090^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19240~^~312~^0.294^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~315~^0.333^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~404~^0.006^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~405~^0.029^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~406~^0.142^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~410~^0.029^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~415~^0.080^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19240~^~501~^0.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~502~^0.053^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~503~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~504~^0.082^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~505~^0.067^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~506~^0.014^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~507~^0.016^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~508~^0.064^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~509~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~510~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~511~^0.076^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~512~^0.023^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~513~^0.062^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~514~^0.133^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~515~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~516~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~517~^0.058^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19240~^~518~^0.058^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19241~^~312~^0.230^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~315~^0.259^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~404~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~ -~19241~^~405~^0.026^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~406~^0.115^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~410~^0.035^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~415~^0.063^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~501~^0.017^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~502~^0.045^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~503~^0.046^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~504~^0.073^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~505~^0.060^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~506~^0.013^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~507~^0.013^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~508~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~509~^0.043^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~510~^0.069^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~511~^0.063^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~512~^0.020^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~513~^0.051^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~514~^0.111^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~515~^0.177^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~516~^0.049^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~517~^0.054^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~518~^0.050^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~605~^0.534^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~606~^8.369^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~607~^0.526^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~608~^0.327^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~609~^0.194^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~610~^0.412^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~611~^0.421^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~612~^1.212^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~613~^3.535^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~614~^1.629^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~615~^0.022^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19241~^~617~^3.252^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~618~^0.445^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~619~^0.051^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~620~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~621~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~626~^0.156^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~627~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~628~^0.016^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~629~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~630~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~631~^0.000^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~645~^3.425^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~646~^0.496^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19241~^~653~^0.091^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19243~^~312~^0.030^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~405~^0.110^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~406~^0.090^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~410~^0.010^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~606~^15.620^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~645~^8.800^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19243~^~646~^2.550^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19244~^~312~^0.035^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~315~^0.012^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~405~^0.002^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~406~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~410~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19244~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~505~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~513~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~515~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~516~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19244~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~312~^0.037^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~315~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~404~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~405~^0.058^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~406~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~410~^0.052^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19246~^~501~^0.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~502~^0.099^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~503~^0.119^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~504~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~505~^0.152^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~506~^0.072^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~507~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~509~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~510~^0.138^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~511~^0.139^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~512~^0.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~513~^0.152^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~514~^0.228^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~515~^0.308^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~516~^0.154^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~517~^0.133^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19246~^~518~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~312~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~315~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~404~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~405~^0.026^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~406~^0.660^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~410~^0.034^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~415~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~501~^0.016^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~502~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~503~^0.079^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~504~^0.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~505~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~506~^0.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~507~^0.034^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~508~^0.083^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~510~^0.091^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~511~^0.092^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~512~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~513~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~514~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~515~^0.203^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~516~^0.102^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~517~^0.088^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~518~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19247~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19248~^~312~^0.180^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~404~^0.040^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~405~^0.160^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~406~^0.330^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~410~^0.250^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~415~^0.060^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~606~^20.600^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~645~^8.850^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19248~^~646~^1.460^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~ -~19249~^~312~^0.200^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~404~^0.130^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~405~^0.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~406~^3.640^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~410~^0.440^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~415~^0.080^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~606~^13.210^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~607~^0.119^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~608~^0.044^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~609~^0.040^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~610~^0.060^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~611~^0.222^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~612~^0.236^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~613~^6.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~614~^6.155^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~615~^0.040^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~617~^9.323^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~618~^4.593^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~619~^0.049^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~625~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~626~^0.053^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~628~^0.113^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~645~^10.820^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~646~^4.680^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19249~^~652~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~653~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19249~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19250~^~312~^0.010^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~404~^0.050^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~405~^0.170^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~406~^0.180^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~410~^0.040^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~415~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~606~^17.990^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~645~^4.910^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19250~^~646~^0.510^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~312~^0.180^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~404~^0.130^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~405~^0.100^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~406~^3.570^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~410~^0.420^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~415~^0.070^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~606~^8.230^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~645~^8.940^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19252~^~646~^4.330^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~19254~^~605~^0.246^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19254~^~606~^19.240^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~605~^0.093^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19255~^~606~^19.209^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19256~^~605~^0.293^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19256~^~606~^13.157^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~605~^0.274^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19258~^~606~^13.814^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19260~^~312~^0.030^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~315~^0.006^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~404~^0.029^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~405~^0.122^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~406~^0.074^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~410~^0.256^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~415~^0.029^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~606~^4.048^4^0.074^~9~^~MC~^^^1^3.900^4.180^3^3.812^4.283^~4~^~05/01/2004~ -~19260~^~607~^0.213^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~608~^0.116^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~609~^0.067^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~610~^0.149^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~611~^0.153^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~612~^0.495^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~613~^1.439^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~614~^0.956^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~617~^1.388^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~618~^0.165^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~619~^0.032^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~620~^0.011^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~625~^0.048^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~626~^0.088^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~627~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~628~^0.012^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~629~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~630~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~645~^1.855^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~646~^0.740^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19260~^~652~^0.053^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~653~^0.032^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~654~^0.005^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~687~^0.016^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~689~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19260~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19263~^~312~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~315~^0.165^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~404~^0.011^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~405~^0.018^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~406~^0.159^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~410~^0.040^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~415~^0.025^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19263~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~618~^0.022^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~619~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19263~^~646~^0.030^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19265~^~312~^0.018^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~315~^0.009^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~404~^0.044^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~405~^0.180^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~406~^0.111^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~410~^0.414^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~415~^0.042^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~606~^3.610^2^^~9~^~MC~^^^1^3.570^3.650^1^^^^~05/01/2004~ -~19265~^~607~^0.172^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~608~^0.105^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~609~^0.065^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~610~^0.135^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~611~^0.149^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~612~^0.543^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~613~^1.624^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~614~^0.706^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~617~^0.863^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~618~^0.434^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~619~^0.092^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~626~^0.066^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~645~^0.930^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~646~^0.527^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19265~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~ -~19268~^~312~^0.563^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~315~^0.558^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~404~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~405~^0.266^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~406~^0.578^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~410~^0.108^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~415~^0.038^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~606~^15.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~612~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~613~^6.552^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~614~^8.407^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~615~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~19268~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19268~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19269~^~606~^0.990^1^^~1~^~A~^^^^^^^^^^~09/01/1996~ -~19269~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~611~^0.008^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~612~^0.023^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~613~^0.614^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~614~^0.330^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~617~^1.703^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~618~^0.080^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~619~^0.011^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~620~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~626~^0.014^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~645~^1.724^0^^~4~^^^^^^^^^^^~12/01/1997~ -~19269~^~646~^0.093^0^^~4~^^^^^^^^^^^~12/01/1997~ -~19269~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~687~^0.004^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19269~^~689~^0.002^1^^~1~^~A~^^^^^^^^^^~09/01/1997~ -~19270~^~312~^0.135^35^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~315~^0.140^35^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~404~^0.042^5^0.004^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~405~^0.194^5^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~406~^0.226^5^0.015^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~410~^0.554^5^0.063^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~415~^0.055^5^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~606~^6.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~607~^0.340^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~608~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~609~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~610~^0.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~611~^0.290^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~612~^1.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~613~^3.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~614~^1.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~617~^2.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~618~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~619~^0.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~621~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~626~^0.240^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~627~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~628~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~629~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~630~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~631~^0.000^0^^~1~^^^^^^^^^^^~08/01/1995~ -~19270~^~645~^3.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19270~^~646~^0.410^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~312~^0.037^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~315~^0.078^4^0.035^~1~^^^^^^^^^^^~08/01/1991~ -~19271~^~404~^0.045^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~405~^0.255^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~406~^0.170^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~410~^0.720^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~415~^0.050^2^^~1~^^^^^^^^^^^~03/01/2002~ -~19271~^~606~^5.190^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19274~^~312~^0.171^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~404~^0.043^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~405~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~406~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~415~^0.300^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~606~^0.990^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~609~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~610~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~611~^0.008^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~612~^0.023^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~613~^0.614^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~614~^0.330^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~617~^1.703^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~618~^0.080^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~619~^0.011^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~620~^0.002^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~626~^0.014^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~628~^0.006^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~ -~19274~^~645~^1.724^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19274~^~646~^0.093^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~ -~19279~^~312~^0.492^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~315~^0.535^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~404~^0.098^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~405~^0.315^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~406~^0.332^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~410~^0.453^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~415~^0.031^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~605~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~606~^18.138^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~607~^0.633^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~608~^0.229^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~609~^0.131^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~610~^0.248^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~611~^0.272^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~612~^0.835^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~613~^7.652^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~614~^7.717^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~615~^0.229^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~617~^13.089^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~618~^1.236^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~619~^0.074^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~624~^0.023^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~625~^0.203^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~626~^0.386^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~645~^13.735^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~646~^1.310^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~19279~^~652~^0.086^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~653~^0.082^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~672~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~687~^0.057^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~693~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~696~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19279~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~ -~19280~^~312~^0.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~315~^0.020^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~404~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~406~^0.007^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~410~^0.003^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19280~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19280~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19280~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19280~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19281~^~312~^0.010^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~315~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~404~^0.005^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~405~^0.010^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~406~^0.715^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~410~^0.005^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~415~^0.002^2^^~1~^~A~^^^^^^^^^^~03/01/1996~ -~19281~^~606~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~613~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~614~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~617~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~618~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~619~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~626~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~645~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19281~^~646~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~ -~19283~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~19283~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~19283~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19283~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19283~^~406~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19283~^~410~^0.001^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~606~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~613~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~617~^0.051^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~618~^0.015^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~645~^0.051^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19283~^~646~^0.016^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19292~^~605~^0.131^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19292~^~606~^11.651^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19293~^~312~^0.040^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~315~^0.012^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19293~^~404~^0.037^3^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~405~^0.224^8^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~406~^0.287^3^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~410~^0.645^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~415~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~501~^0.053^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~502~^0.169^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~503~^0.228^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~504~^0.368^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~505~^0.298^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~506~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~507~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~508~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~509~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~510~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~511~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~512~^0.102^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~513~^0.129^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~514~^0.285^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~515~^0.786^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~516~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~517~^0.364^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~518~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~606~^3.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~607~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~608~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~609~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~610~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~611~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~612~^0.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~613~^1.520^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~614~^0.680^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~617~^1.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~618~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~619~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~626~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19293~^~645~^1.590^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19293~^~646~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19294~^~312~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19294~^~315~^0.315^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~404~^0.009^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~405~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~406~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~410~^0.049^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~415~^0.037^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~606~^0.053^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~611~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~612~^0.002^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~613~^0.041^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~614~^0.008^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~617~^0.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~618~^0.066^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~619~^0.017^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~626~^0.001^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~645~^0.016^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19294~^~646~^0.084^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19295~^~605~^0.272^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19295~^~606~^8.819^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19296~^~312~^0.036^14^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~315~^0.080^14^0.026^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19296~^~405~^0.038^4^0.012^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~406~^0.121^4^0.025^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~410~^0.068^4^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~415~^0.024^4^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~501~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~502~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~504~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~505~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~508~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~509~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~510~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~511~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~512~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~514~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~515~^0.018^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~516~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~517~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~518~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19296~^~606~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~19296~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19296~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19296~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19297~^~312~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~315~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~404~^0.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~405~^0.076^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19297~^~406~^0.036^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~410~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~415~^0.020^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~501~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~502~^0.023^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~503~^0.017^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~504~^0.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~505~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~508~^0.021^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~509~^0.025^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~510~^0.021^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~511~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~512~^0.014^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~513~^0.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~514~^0.166^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~515~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~516~^0.029^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~517~^0.023^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~518~^0.028^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~613~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19297~^~614~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~617~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19297~^~618~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~619~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19297~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~628~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19297~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~630~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19297~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19297~^~645~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19297~^~646~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~312~^0.011^51^0.007^~6~^~JA~^^^1^0.004^0.018^1^-0.076^0.099^~4~^~11/01/2002~ -~19300~^~315~^0.132^48^0.007^~6~^~JA~^^^1^0.125^0.139^1^0.041^0.223^~4~^~11/01/2002~ -~19300~^~404~^0.001^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~405~^0.026^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19300~^~406~^0.036^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~410~^0.197^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~415~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19300~^~606~^0.005^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~613~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~614~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~617~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~618~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~619~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~645~^0.001^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19300~^~646~^0.004^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19301~^~312~^0.319^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~315~^0.470^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~404~^0.042^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~405~^0.082^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~406~^0.232^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~410~^0.156^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~415~^0.054^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~605~^0.297^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~606~^10.378^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~607~^0.315^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~608~^0.198^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~609~^0.114^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~610~^0.242^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~611~^0.253^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~612~^0.765^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~613~^4.492^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~614~^3.801^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~615~^0.088^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~617~^5.355^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~618~^3.349^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~619~^0.732^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~624~^0.006^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~626~^0.123^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~628~^0.019^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~645~^5.506^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~646~^4.081^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~653~^0.064^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~663~^0.270^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~666~^0.027^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~670~^0.024^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~ -~19301~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~673~^0.087^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~674~^1.539^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~675~^0.196^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~687~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~693~^0.270^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~695~^0.027^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19301~^~851~^0.029^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19302~^~605~^0.210^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19302~^~606~^8.534^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19303~^~312~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~315~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~404~^0.005^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~405~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~406~^0.052^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~410~^0.015^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~415~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19303~^~501~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~502~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~503~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~504~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~505~^0.015^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~506~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~508~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~511~^0.021^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~513~^0.016^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~514~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~515~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~516~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~517~^0.015^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~518~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19303~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1989~ -~19303~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19303~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1989~ -~19303~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1989~ -~19304~^~312~^0.487^3^0.035^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~315~^1.530^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~404~^0.041^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~405~^0.002^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~406~^0.930^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~410~^0.804^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~415~^0.670^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19304~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~617~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~618~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~645~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19304~^~646~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19306~^~605~^0.405^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~19306~^~606~^9.891^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~605~^0.201^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19307~^~606~^8.889^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~605~^0.113^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19308~^~606~^9.921^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19309~^~605~^0.141^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19309~^~606~^7.931^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19310~^~312~^0.420^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~315~^0.070^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~404~^0.008^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~405~^0.060^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~406~^0.005^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~410~^0.110^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~415~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19310~^~606~^0.050^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~611~^0.001^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~612~^0.002^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~613~^0.040^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~614~^0.006^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~617~^0.012^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~618~^0.072^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~619~^0.015^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~626~^0.001^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~645~^0.010^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19310~^~646~^0.090^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19312~^~312~^0.055^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~315~^0.027^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~404~^0.012^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~405~^0.011^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~406~^0.035^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~410~^0.042^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~415~^0.016^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19312~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19312~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19312~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19312~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~19313~^~605~^0.143^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19313~^~606~^8.048^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19314~^~312~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~315~^0.030^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~404~^0.025^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~405~^0.016^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~406~^0.140^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~410~^0.063^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~415~^0.037^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~503~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~504~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~505~^0.016^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~507~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~508~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~509~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~510~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~511~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~512~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~513~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~514~^0.247^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~515~^0.017^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~516~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~517~^0.014^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~518~^0.014^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~606~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~612~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~613~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~614~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~617~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~618~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~619~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~626~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19314~^~645~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19314~^~646~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~03/01/1998~ -~19315~^~605~^0.136^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19315~^~606~^7.520^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19318~^~312~^0.021^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~315~^0.010^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~404~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~405~^0.003^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~406~^0.002^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~410~^0.006^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19318~^~606~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~607~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~608~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~613~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~614~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~617~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~618~^0.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~619~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~645~^0.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19318~^~646~^0.350^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19319~^~312~^0.024^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~315~^0.005^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~404~^0.038^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~405~^0.140^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~406~^0.074^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~410~^0.311^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~415~^0.030^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~501~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~502~^0.116^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~503~^0.134^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~504~^0.216^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~505~^0.114^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~506~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~507~^0.014^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~508~^0.119^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~509~^0.123^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~510~^0.156^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~511~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~512~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~513~^0.083^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~514~^0.193^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~515~^0.526^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~516~^0.061^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~517~^0.278^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~518~^0.087^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~606~^1.562^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~607~^0.062^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~608~^0.062^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~609~^0.062^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~610~^0.062^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~611~^0.064^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~612~^0.246^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~613~^0.698^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~614~^0.306^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~615~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~617~^0.698^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~618~^0.152^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~619~^0.069^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~ -~19319~^~620~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~621~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~624~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~625~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~626~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~627~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~628~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~629~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~630~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~631~^0.000^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~ -~19319~^~645~^0.698^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~646~^0.221^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~ -~19319~^~652~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~653~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~654~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19319~^~696~^0.000^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~ -~19320~^~312~^0.020^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~315~^0.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~406~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~410~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~415~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19320~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~502~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~503~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~504~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~505~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~508~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~509~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~510~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~511~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~512~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~513~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~514~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~515~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~516~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~517~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~518~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19320~^~606~^0.090^0^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~613~^0.080^1^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~614~^0.000^1^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~617~^0.030^1^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~618~^0.160^1^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~619~^0.010^1^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~645~^0.030^0^^~1~^^^^^^^^^^^~05/01/2009~ -~19320~^~646~^0.160^0^^~1~^^^^^^^^^^^~05/01/2009~ -~19321~^~312~^0.025^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~315~^0.006^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~404~^0.036^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~405~^0.147^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~406~^0.077^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~410~^0.324^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~415~^0.028^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~501~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~502~^0.122^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~503~^0.141^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~504~^0.227^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~505~^0.120^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~506~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~507~^0.014^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~508~^0.125^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~509~^0.129^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~510~^0.164^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~511~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~512~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~513~^0.088^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~514~^0.202^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~515~^0.553^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~516~^0.064^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~517~^0.291^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~518~^0.091^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~606~^1.634^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~607~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~608~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~609~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~610~^0.065^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~611~^0.067^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~612~^0.258^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~613~^0.733^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~614~^0.317^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~615~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~617~^0.711^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~618~^0.129^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~619~^0.066^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~624~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~625~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19321~^~645~^0.711^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~646~^0.195^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~652~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~653~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19321~^~696~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~ -~19322~^~312~^0.151^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~315~^0.489^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~404~^0.013^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~405~^0.053^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~406~^0.219^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~410~^0.115^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19322~^~415~^0.041^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19322~^~606~^10.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19322~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~608~^0.064^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~609~^0.790^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~610~^0.628^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~611~^5.002^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~612~^1.975^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~613~^0.957^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~614~^0.584^0^^~4~^~FLA~^^^^^^^^^^~08/01/2011~ -~19322~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19322~^~618~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19322~^~619~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19322~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19322~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19322~^~645~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19322~^~646~^0.000^0^^~4~^~NR~^^^^^^^^^^~08/01/2011~ -~19323~^~312~^0.026^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~315~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~404~^0.033^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~405~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~406~^0.084^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~410~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~415~^0.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~501~^0.038^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~502~^0.123^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~503~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~504~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~505~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~506~^0.068^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~507~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~508~^0.133^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~509~^0.130^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~510~^0.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~511~^0.114^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~512~^0.074^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~513~^0.097^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~514~^0.211^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~515~^0.577^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~516~^0.061^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~517~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~518~^0.149^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~606~^2.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~607~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~608~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~609~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~610~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~611~^0.250^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~612~^0.350^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~613~^0.830^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~614~^0.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~617~^0.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~618~^0.190^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~645~^0.960^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19323~^~646~^0.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19324~^~312~^0.143^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~315~^0.462^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~404~^0.010^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~405~^0.029^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~406~^0.102^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~410~^0.135^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~415~^0.050^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~606~^11.364^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~19324~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~608~^0.073^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~609~^0.898^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~610~^0.713^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~611~^5.684^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~612~^2.244^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~613~^1.088^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~614~^0.663^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~19324~^~617~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~618~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~619~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~ -~19324~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19324~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19325~^~312~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~315~^0.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~404~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~405~^0.143^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~406~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~410~^0.285^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~415~^0.144^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~501~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~502~^0.129^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~503~^0.172^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~504~^0.280^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~505~^0.224^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~506~^0.072^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~507~^0.028^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~508~^0.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~509~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~510~^0.193^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~511~^0.122^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~512~^0.078^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~513~^0.102^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~514~^0.223^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~515~^0.608^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~516~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~517~^0.272^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~518~^0.157^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~606~^2.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~607~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~608~^0.060^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~609~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~610~^0.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~611~^0.460^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~612~^0.450^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~613~^0.880^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~614~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~617~^0.810^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~618~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~645~^0.880^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19325~^~646~^0.120^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19326~^~415~^1.364^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19326~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19326~^~606~^15.703^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~415~^1.364^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19327~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19327~^~606~^13.070^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~415~^1.500^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19328~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19328~^~606~^14.007^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19330~^~312~^0.015^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~315~^0.009^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~404~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~405~^0.003^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~406~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~410~^0.006^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~415~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19330~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~502~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~503~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~504~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~505~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~506~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~508~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~509~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~510~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~511~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~512~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~513~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~514~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~515~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~516~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~517~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~518~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~606~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~607~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~608~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~613~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~614~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~617~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~618~^0.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~619~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~645~^0.280^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19330~^~646~^0.250^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~312~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~315~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~404~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~405~^0.135^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~406~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~410~^0.262^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~415~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~501~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~502~^0.117^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~503~^0.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~504~^0.255^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~505~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~506~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~507~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~509~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~510~^0.174^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~511~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~512~^0.071^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~513~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~514~^0.198^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~515~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~516~^0.055^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~517~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~518~^0.141^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~606~^1.740^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~607~^0.090^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~608~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~609~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~610~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~611~^0.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~612~^0.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~613~^0.770^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~614~^0.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~617~^0.780^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~618~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~619~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~620~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~626~^0.070^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~645~^0.850^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19331~^~646~^0.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~312~^0.024^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~315~^0.025^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~404~^0.005^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~405~^0.024^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~406~^0.019^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~410~^0.030^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~415~^0.005^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19332~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~502~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~503~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~504~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~505~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~508~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~510~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~513~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~514~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~515~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~516~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19332~^~518~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19333~^~312~^0.013^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~315~^0.005^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~404~^0.006^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~405~^0.023^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~406~^0.003^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~410~^0.123^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~415~^0.012^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~606~^0.382^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~612~^0.004^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~613~^0.274^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~614~^0.097^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~615~^0.001^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~617~^0.428^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~618~^0.142^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~619~^0.004^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~620~^0.018^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~621~^0.005^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~624~^0.002^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~625~^0.001^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~626~^0.037^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~628~^0.003^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~645~^0.470^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~646~^0.168^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~652~^0.001^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19333~^~653~^0.002^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~ -~19333~^~654~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19334~^~312~^0.047^15^0.007^~1~^~A~^^^1^0.007^0.085^8^0.029^0.064^~1, 2, 3~^~12/01/2006~ -~19334~^~315~^0.064^15^0.024^~1~^~A~^^^1^0.007^0.200^7^0.007^0.121^~2, 3~^~12/01/2006~ -~19334~^~404~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~405~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~19334~^~406~^0.110^4^0.031^~1~^~A~^^^1^0.073^0.145^1^-0.265^0.484^~2, 3~^~12/01/2006~ -~19334~^~410~^0.132^4^0.009^~1~^~A~^^^1^0.120^0.150^1^0.027^0.237^~2, 3~^~12/01/2006~ -~19334~^~415~^0.041^4^0.009^~1~^~A~^^^1^0.030^0.050^1^-0.067^0.150^~2, 3~^~12/01/2006~ -~19334~^~606~^0.000^0^^~1~^^^^^^^^^^^~12/01/2006~ -~19334~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~613~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~614~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~617~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~618~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~ -~19334~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19334~^~645~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19334~^~646~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~19335~^~312~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~315~^0.004^8^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~03/01/2009~ -~19335~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19335~^~405~^0.019^3^0.006^~1~^^^^^^^^^^^~08/01/1991~ -~19335~^~406~^0.000^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19335~^~410~^0.000^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19335~^~415~^0.000^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19335~^~606~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~19335~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19335~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19335~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19336~^~312~^0.007^8^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~315~^0.004^8^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~03/01/2009~ -~19336~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~ -~19336~^~405~^0.019^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~ -~19336~^~406~^0.000^4^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19336~^~410~^0.000^4^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19336~^~415~^0.000^4^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19336~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19336~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~19337~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~19337~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~405~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~406~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~501~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~502~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~503~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~504~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~505~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~506~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~507~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~508~^1.186^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~19337~^~509~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~510~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~511~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~512~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~513~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~514~^0.983^0^^~4~^~O~^^^^^^^^^^~04/01/2005~ -~19337~^~515~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~516~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~517~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~518~^0.000^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~19337~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19337~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19340~^~312~^0.099^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~315~^4.422^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~404~^0.009^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~405~^0.013^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~406~^0.040^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~410~^0.048^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~415~^0.003^1^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~606~^0.036^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~613~^0.036^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~614~^0.004^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~617~^0.064^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~618~^0.100^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~645~^0.064^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19340~^~646~^0.100^0^^~4~^^^^^^^^^^^~02/01/2003~ -~19345~^~312~^0.276^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~315~^0.278^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~404~^0.008^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~405~^0.040^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~406~^0.178^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~410~^0.019^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~415~^0.009^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19345~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~ -~19345~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~613~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~614~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~617~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~618~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~645~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19345~^~646~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~ -~19348~^~312~^0.348^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~315~^0.371^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~404~^0.034^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~405~^0.091^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~406~^0.250^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~410~^0.119^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~415~^0.020^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~606~^3.980^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~607~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~608~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~609~^0.018^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~610~^0.047^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~611~^0.056^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~612~^0.237^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~613~^1.801^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~614~^0.756^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~617~^3.780^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~618~^0.249^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~619~^0.024^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~621~^0.000^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~626~^0.067^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~12/01/1997~ -~19348~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19348~^~645~^3.857^0^^~4~^^^^^^^^^^^~12/01/1997~ -~19348~^~646~^0.278^0^^~4~^^^^^^^^^^^~12/01/1997~ -~19349~^~312~^0.053^5^0.009^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~315~^0.100^5^0.007^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~404~^0.011^2^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~405~^0.009^2^^~1~^^^^^^^^^^^~03/01/2003~ -~19349~^~406~^0.020^2^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~410~^0.023^2^^~1~^^^^^^^^^^^~11/01/2002~ -~19349~^~415~^0.009^2^^~1~^^^^^^^^^^^~03/01/2003~ -~19349~^~606~^0.000^0^^~7~^^^^^^^^^^^~11/01/2002~ -~19349~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~611~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~612~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~613~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~614~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~617~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~618~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~619~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~620~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~621~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~626~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~628~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~630~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~631~^0.000^0^^~4~^^^^^^^^^^^~11/01/2002~ -~19349~^~645~^0.000^0^^~7~^^^^^^^^^^^~11/01/2002~ -~19349~^~646~^0.000^0^^~7~^^^^^^^^^^^~11/01/2002~ -~19350~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~404~^0.059^1^^~1~^~A~^^^^^^^^^^~12/01/2004~ -~19350~^~405~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~406~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~ -~19350~^~606~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19350~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19350~^~645~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19350~^~646~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~19351~^~312~^0.029^10^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~315~^0.094^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19351~^~405~^0.019^3^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~406~^0.000^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~410~^0.011^3^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~415~^0.000^3^0.000^~1~^^^^^^^^^^^~08/01/1991~ -~19351~^~606~^0.000^0^^~1~^^^^^^^^^^^~04/01/1985~ -~19351~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19351~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19351~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19352~^~312~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~315~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~404~^0.011^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19352~^~405~^0.393^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~406~^8.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~410~^0.171^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~415~^0.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~501~^0.075^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~502~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~503~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~504~^0.378^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~505~^0.267^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~507~^0.065^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~508~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~509~^0.169^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~510~^0.304^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~511~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~512~^0.132^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~513~^0.271^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~514~^0.558^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~515~^1.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~516~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~517~^0.459^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~518~^0.232^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19352~^~606~^0.000^0^^~4~^~CAFN~^^^^^^^^^^~10/01/1995~ -~19352~^~645~^0.000^0^^~4~^~CAFN~^^^^^^^^^^~10/01/1995~ -~19352~^~646~^0.000^0^^~4~^~CAFN~^^^^^^^^^^~10/01/1995~ -~19353~^~312~^0.018^6^^~1~^~A~^^^1^0.007^0.032^^^^~1, 2~^~03/01/2010~ -~19353~^~315~^2.908^16^0.608^~1~^~A~^^^2^2.300^4.230^1^-4.821^10.638^~2~^~03/01/2010~ -~19353~^~404~^0.066^5^0.027^~1~^~A~^^^^^^^^^^~03/01/2010~ -~19353~^~405~^1.270^5^0.201^~1~^~A~^^^^^^^^^^~03/01/2010~ -~19353~^~406~^0.081^5^0.010^~1~^~A~^^^^^^^^^^~03/01/2010~ -~19353~^~410~^0.036^3^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19353~^~415~^0.002^3^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19353~^~606~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~613~^0.006^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~614~^0.001^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~617~^0.011^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~618~^0.017^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2010~ -~19353~^~645~^0.011^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19353~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~19355~^~312~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~315~^1.530^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~404~^0.100^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~405~^0.155^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19355~^~406~^0.100^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~410~^0.804^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~415~^0.670^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19355~^~606~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19355~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19355~^~645~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19355~^~646~^0.000^0^^~7~^^^^^^^^^^^~04/01/1985~ -~19359~^~605~^0.394^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19359~^~606~^12.703^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19360~^~312~^0.045^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~315~^0.185^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~404~^0.005^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~405~^0.017^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~406~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19360~^~410~^0.008^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~415~^0.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19360~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~617~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~618~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~645~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19360~^~646~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19362~^~312~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~315~^0.088^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~404~^0.006^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~405~^0.047^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~406~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~410~^0.035^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19362~^~415~^0.009^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19362~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19363~^~605~^0.074^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19363~^~606~^4.115^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19364~^~312~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~315~^0.029^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~404~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~405~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~406~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~410~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~415~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~502~^0.066^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~503~^0.089^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~504~^0.144^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~505~^0.117^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~506~^0.037^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~507~^0.014^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~508~^0.071^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~509~^0.071^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~510~^0.098^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~511~^0.053^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~512~^0.040^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~513~^0.051^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~514~^0.112^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~515~^0.308^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~516~^0.031^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~517~^0.142^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~518~^0.080^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~606~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~609~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~610~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~611~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~612~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~613~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~614~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~615~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19364~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19364~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19364~^~653~^0.000^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~19365~^~312~^0.095^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~315~^0.008^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~404~^0.001^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~405~^0.001^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~406~^0.076^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~410~^0.005^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~415~^0.002^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~ -~19365~^~606~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~02/01/1995~ -~19365~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~613~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~614~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~617~^0.076^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~618~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~619~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~620~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~626~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~645~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19365~^~646~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~08/01/1995~ -~19366~^~312~^0.052^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~315~^0.070^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~404~^0.038^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~405~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~406~^0.101^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~410~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~415~^0.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~19366~^~606~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~613~^0.018^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~617~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~618~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~645~^0.032^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19366~^~646~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~19367~^~312~^0.540^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~315~^1.207^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~404~^0.180^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~406~^0.373^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~410~^0.207^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~415~^0.178^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~19367~^~501~^0.059^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~502~^0.139^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~503~^0.176^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~504~^0.309^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~505~^0.121^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~506~^0.087^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~507~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~508~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~509~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~510~^0.225^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~511~^0.655^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~512~^0.112^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~513~^0.190^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~514~^0.459^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~515~^0.875^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~516~^0.235^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~517~^0.172^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~518~^0.244^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~606~^1.960^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~612~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~613~^1.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~614~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~617~^4.730^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~618~^11.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~619~^2.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~620~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~626~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~628~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19367~^~645~^4.970^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19367~^~646~^13.730^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19368~^~605~^0.074^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19369~^~605~^0.068^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19369~^~606~^3.765^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~312~^0.036^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~315~^0.063^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~405~^0.023^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~406~^0.007^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~410~^0.014^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~415~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~605~^0.074^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~606~^4.115^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~19370~^~607~^0.003^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~608~^0.011^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~609~^0.145^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~610~^0.140^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~611~^2.151^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~612~^0.720^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~613~^0.344^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~614~^0.599^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~615~^0.002^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19370~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~ -~19371~^~312~^0.028^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~404~^0.001^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~405~^0.006^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~406~^0.003^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~410~^0.015^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~415~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~501~^0.002^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~502~^0.011^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~503~^0.014^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~504~^0.037^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~505~^0.012^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~506~^0.006^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~507~^0.006^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~508~^0.015^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~509~^0.012^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~510~^0.017^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~511~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~512~^0.009^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~513~^0.018^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~514~^0.023^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~515~^0.061^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~516~^0.009^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~517~^0.028^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~518~^0.014^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~606~^1.740^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~612~^0.022^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~613~^1.068^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~614~^0.650^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~617~^3.942^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~618~^2.676^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~619~^0.121^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~645~^3.942^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19371~^~646~^2.797^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~312~^0.227^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~404~^0.006^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~405~^0.026^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~406~^0.112^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~410~^0.032^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~415~^0.063^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~501~^0.017^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~502~^0.045^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~503~^0.046^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~504~^0.072^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~505~^0.059^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~506~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~507~^0.013^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~508~^0.054^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~509~^0.043^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~510~^0.068^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~511~^0.062^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~512~^0.020^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~513~^0.051^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~514~^0.110^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~515~^0.175^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~516~^0.048^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~517~^0.054^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~518~^0.050^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~606~^1.740^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~607~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~608~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~609~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~610~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~611~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~612~^0.022^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~613~^1.068^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~614~^0.650^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~617~^3.943^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~618~^2.676^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~619~^0.121^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~620~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~621~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~626~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~627~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~628~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~629~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~630~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~631~^0.000^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~645~^3.943^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19372~^~646~^2.797^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~ -~19375~^~312~^0.006^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~315~^0.014^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~404~^0.006^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~405~^0.045^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~406~^0.039^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~410~^0.051^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~415~^0.006^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~606~^0.271^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~607~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~608~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~609~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~610~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~611~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~612~^0.041^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~613~^0.128^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~614~^0.051^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~615~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~617~^0.137^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~618~^0.057^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~619~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~624~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~645~^0.137^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~646~^0.067^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~653~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19375~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~312~^0.217^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~315~^0.232^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~404~^0.022^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~405~^0.077^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~406~^0.163^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~410~^0.122^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~415~^0.017^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~605~^0.320^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~606~^10.669^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~607~^0.339^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~608~^0.213^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~609~^0.123^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~610~^0.260^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~611~^0.272^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~612~^0.823^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~613~^4.477^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~614~^3.955^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~615~^0.090^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~617~^5.054^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~618~^0.550^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~619~^0.060^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~624~^0.007^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~625~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~626~^0.132^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~628~^0.010^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~645~^5.205^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~646~^0.611^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~652~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~653~^0.068^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~654~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~663~^0.291^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~666~^0.029^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~670~^0.026^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~671~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~672~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~673~^0.094^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~674~^1.655^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~675~^0.211^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~687~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~689~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~693~^0.291^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~695~^0.029^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~696~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~697~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19379~^~851~^0.031^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~312~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~315~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~404~^0.028^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~405~^0.012^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~406~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~410~^0.004^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~415~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~605~^0.131^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~606~^2.049^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~607~^0.129^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~608~^0.080^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~609~^0.047^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~610~^0.101^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~611~^0.103^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~612~^0.297^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~613~^0.865^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~614~^0.399^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~615~^0.005^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~617~^0.796^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~618~^0.109^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~619~^0.013^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~626~^0.038^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~628~^0.004^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~645~^0.838^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~646~^0.121^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~653~^0.022^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~663~^0.119^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~666~^0.012^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~670~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~673~^0.038^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~674~^0.677^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~675~^0.086^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~693~^0.119^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~695~^0.012^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19382~^~851~^0.013^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~312~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~315~^0.002^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~404~^0.008^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~405~^0.068^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~406~^0.029^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~410~^0.134^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~415~^0.009^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~605~^0.674^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~606~^20.565^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~607~^1.184^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~608~^0.721^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~609~^0.424^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~610~^0.923^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~611~^0.983^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~612~^3.145^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~613~^8.688^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~614~^4.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~615~^0.028^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~617~^8.147^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~618~^0.924^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~619~^0.298^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~626~^0.558^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~628~^0.021^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~645~^8.964^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~646~^1.222^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~653~^0.115^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~663~^0.613^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~666~^0.061^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~670~^0.055^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~673~^0.197^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~674~^3.489^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~675~^0.445^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~693~^0.613^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~695~^0.061^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19383~^~851~^0.065^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~312~^0.005^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~315~^0.003^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~404~^0.012^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~405~^0.065^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~406~^0.015^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~410~^0.023^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~415~^0.001^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~606~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~607~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~608~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~609~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~610~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~611~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~612~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~613~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~614~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~617~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~618~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~619~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~626~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~645~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19384~^~646~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19387~^~312~^0.044^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~315~^0.161^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~404~^0.006^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~405~^0.005^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~406~^0.034^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~410~^0.039^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~415~^0.016^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19387~^~606~^2.304^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19387~^~645~^0.111^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19387~^~646~^0.029^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~ -~19393~^~312~^0.131^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~315~^0.121^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~404~^0.036^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~405~^0.211^3^0.020^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~406~^0.305^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~410~^0.674^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~415~^0.074^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~501~^0.056^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~502~^0.171^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~503~^0.214^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~504~^0.344^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~505~^0.279^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~506~^0.083^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~507~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~508~^0.189^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~509~^0.178^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~510~^0.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~511~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~512~^0.096^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~513~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~514~^0.323^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~515~^0.758^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~516~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~517~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~518~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~606~^3.630^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~607~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~608~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~609~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~610~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~611~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~612~^0.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~613~^1.610^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~614~^0.960^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~617~^1.640^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~618~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~626~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~645~^1.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19393~^~646~^0.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~312~^0.205^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~315~^1.560^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~404~^0.085^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~405~^0.017^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~406~^0.710^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~410~^0.620^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~415~^0.260^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~501~^0.027^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~502~^0.076^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~503~^0.074^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~504~^0.158^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~505~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~506~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~507~^0.039^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~508~^0.086^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~509~^0.053^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~510~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~511~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~512~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~513~^0.087^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~514~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~515~^0.248^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~516~^0.082^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~517~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~518~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~606~^28.970^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~608~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~609~^2.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~610~^2.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~611~^14.910^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~612~^5.620^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~613~^2.790^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~614~^0.940^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~617~^1.950^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~618~^0.620^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19400~^~645~^1.950^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19400~^~646~^0.630^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~312~^0.136^4^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~315~^0.487^4^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~404~^0.350^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19401~^~405~^0.142^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19401~^~406~^1.507^4^0.042^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~410~^0.374^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19401~^~415~^0.187^4^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~606~^2.580^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~612~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~613~^1.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~614~^0.950^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~617~^7.340^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~618~^3.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~619~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~645~^7.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19401~^~646~^3.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~312~^0.247^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~315~^1.601^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19403~^~404~^1.323^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~405~^1.499^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~406~^17.635^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~410~^0.556^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19403~^~415~^1.764^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~501~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~502~^0.231^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~503~^0.274^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~504~^0.508^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~505~^0.246^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~506~^0.111^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~507~^0.136^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~508~^0.353^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~509~^0.248^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~510~^0.358^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~511~^0.622^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~512~^0.166^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~513~^0.333^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~514~^0.645^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~515~^1.574^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~516~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~517~^0.373^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~518~^0.302^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~606~^3.770^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~608~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~609~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~610~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~611~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~612~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~613~^2.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~614~^0.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~617~^7.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~618~^7.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~619~^0.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~620~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~626~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~628~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~645~^7.500^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19403~^~646~^7.730^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19404~^~312~^0.273^3^0.024^~1~^~A~^^^1^0.242^0.320^2^0.170^0.376^~2, 3~^~03/01/2006~ -~19404~^~315~^1.263^3^0.032^~1~^~A~^^^1^1.210^1.320^2^1.126^1.400^~2, 3~^~03/01/2006~ -~19404~^~404~^0.169^3^0.021^~1~^~A~^^^1^0.128^0.197^2^0.079^0.258^~2, 3~^~03/01/2006~ -~19404~^~405~^0.082^3^0.007^~1~^~A~^^^1^0.068^0.090^2^0.052^0.112^~2, 3~^~03/01/2006~ -~19404~^~406~^0.765^3^0.120^~1~^~A~^^^1^0.528^0.912^2^0.250^1.281^~2, 3~^~03/01/2006~ -~19404~^~410~^0.341^3^0.022^~1~^~A~^^^1^0.296^0.367^2^0.244^0.437^~2, 3~^~03/01/2006~ -~19404~^~415~^0.066^3^0.006^~1~^~A~^^^1^0.054^0.076^2^0.039^0.093^~2, 3~^~03/01/2006~ -~19404~^~501~^0.058^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~502~^0.191^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~503~^0.221^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~504~^0.434^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~505~^0.214^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~506~^0.102^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~507~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~508~^0.293^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~509~^0.188^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~510~^0.305^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~511~^0.387^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~512~^0.139^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~513~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~514~^0.460^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~515~^1.243^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~516~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~517~^0.349^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~518~^0.296^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19404~^~606~^6.061^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~609~^0.198^3^0.080^~1~^~A~^^^1^0.093^0.354^2^-0.145^0.540^~2, 3~^~03/01/2006~ -~19404~^~610~^0.153^3^0.062^~1~^~A~^^^1^0.072^0.276^2^-0.115^0.422^~2, 3~^~03/01/2006~ -~19404~^~611~^1.157^3^0.475^~1~^~A~^^^1^0.546^2.092^2^-0.886^3.200^~2, 3~^~03/01/2006~ -~19404~^~612~^0.430^3^0.170^~1~^~A~^^^1^0.214^0.765^2^-0.301^1.161^~2, 3~^~03/01/2006~ -~19404~^~613~^2.175^3^0.272^~1~^~A~^^^1^1.753^2.683^2^1.005^3.345^~2, 3~^~03/01/2006~ -~19404~^~614~^1.834^3^0.250^~1~^~A~^^^1^1.379^2.242^2^0.757^2.911^~2, 3~^~03/01/2006~ -~19404~^~615~^0.064^3^0.008^~1~^~A~^^^1^0.052^0.078^2^0.031^0.097^~2, 3~^~03/01/2006~ -~19404~^~617~^6.916^3^0.715^~1~^~A~^^^1^5.520^7.883^2^3.839^9.992^~2, 3~^~03/01/2006~ -~19404~^~618~^1.512^3^0.108^~1~^~A~^^^1^1.317^1.691^2^1.046^1.978^~2, 3~^~03/01/2006~ -~19404~^~619~^0.064^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~ -~19404~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~ -~19404~^~624~^0.033^3^0.003^~1~^~A~^^^1^0.028^0.037^2^0.022^0.045^~2, 3~^~03/01/2006~ -~19404~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~626~^0.019^3^0.002^~1~^~A~^^^1^0.017^0.022^2^0.012^0.025^~2, 3~^~03/01/2006~ -~19404~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~628~^0.032^3^0.003^~1~^~A~^^^1^0.027^0.035^2^0.021^0.044^~2, 3~^~03/01/2006~ -~19404~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~630~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~ -~19404~^~645~^6.967^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~646~^1.576^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19404~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~685~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~03/01/2006~ -~19404~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2006~ -~19404~^~851~^0.060^3^0.010^~1~^~A~^^^1^0.041^0.076^2^0.016^0.104^~2, 3~^~03/01/2006~ -~19405~^~312~^0.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~315~^1.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~404~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~405~^0.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~406~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~410~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~415~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~501~^0.086^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~502~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~503~^0.247^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~504~^0.457^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~505~^0.246^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~506~^0.117^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~507~^0.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~508~^0.318^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~509~^0.212^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~510~^0.337^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~511~^0.452^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~512~^0.147^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~513~^0.312^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~514~^0.522^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~515~^1.313^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~516~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~517~^0.335^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~518~^0.274^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~606~^9.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~608~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~609~^0.620^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~610~^0.490^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~611~^3.630^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~612~^1.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~613~^2.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~614~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~617~^2.870^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~618~^2.410^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~619~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~645~^2.920^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19405~^~646~^2.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~312~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~315~^1.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~404~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~405~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~406~^2.610^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~410~^0.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~415~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~502~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~503~^0.301^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~504~^0.543^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~505~^0.300^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~506~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~507~^0.161^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~508~^0.387^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~509~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~510~^0.397^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~511~^0.635^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~512~^0.186^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~513~^0.372^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~514~^0.712^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~515~^1.645^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~516~^0.391^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~517~^0.397^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~518~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~606~^9.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~608~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~609~^0.670^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~610~^0.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~611~^3.990^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~612~^1.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~613~^2.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~614~^0.660^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~617~^4.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~618~^5.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~619~^0.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~626~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~628~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~645~^4.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19406~^~646~^5.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~312~^0.130^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~315~^0.086^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~404~^0.141^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~405~^0.436^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~406~^4.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~410~^0.328^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~415~^0.205^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19407~^~501~^0.184^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~502~^0.832^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~503~^0.818^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~504~^1.473^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~505~^1.518^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~506~^0.454^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~507~^0.291^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~508~^0.801^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~509~^0.596^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~510~^0.950^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~511~^1.522^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~512~^0.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~513~^1.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~514~^1.979^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~515~^3.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~516~^2.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~517~^1.463^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~518~^0.894^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~606~^20.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~611~^0.330^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~612~^1.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~613~^11.770^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~614~^7.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~617~^17.910^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~618~^4.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~619~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~620~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~626~^2.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~628~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~645~^20.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19407~^~646~^4.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~312~^0.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~315~^0.074^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~404~^0.084^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~405~^0.432^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~406~^3.355^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~410~^0.430^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19408~^~415~^0.156^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~501~^0.131^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~502~^1.765^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~503~^1.373^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~504~^3.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~505~^2.698^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~506~^0.476^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~507~^0.514^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~508~^1.877^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~509~^1.186^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~510~^2.334^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~511~^4.547^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~512~^0.719^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~513~^5.472^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~514~^4.295^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~515~^7.302^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~516~^11.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~517~^6.769^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~518~^2.484^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~606~^11.560^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~610~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~611~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~612~^0.400^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~613~^6.960^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~614~^4.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~617~^13.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~618~^3.410^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~619~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~620~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~626~^0.990^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~628~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~645~^15.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19408~^~646~^3.450^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19409~^~312~^0.136^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~315~^0.140^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~404~^0.018^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~405~^0.066^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~406~^0.111^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~410~^0.081^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~415~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~605~^0.266^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~606~^4.483^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~607~^0.263^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~608~^0.163^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~609~^0.097^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~610~^0.206^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~611~^0.210^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~612~^0.606^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~613~^1.910^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~614~^0.966^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~615~^0.011^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~617~^1.807^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~618~^0.268^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~619~^0.026^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~626~^0.078^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~628~^0.008^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~645~^1.894^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~646~^0.294^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~653~^0.045^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~663~^0.242^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~666~^0.024^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~670~^0.022^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~673~^0.078^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~674~^1.380^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~675~^0.176^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~693~^0.242^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~695~^0.024^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19409~^~851~^0.026^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~ -~19410~^~312~^0.136^6^0.011^~1~^~A~^^^1^0.103^0.180^5^0.107^0.164^~2, 3~^~05/01/2014~ -~19410~^~315~^0.260^6^0.018^~1~^~A~^^^1^0.215^0.342^5^0.214^0.307^~2, 3~^~05/01/2014~ -~19410~^~404~^0.210^3^0.040^~1~^~A~^^^1^0.170^0.290^2^0.038^0.382^~2, 3~^~05/01/2014~ -~19410~^~405~^0.070^3^0.000^~1~^~A~^^^1^0.070^0.070^^^^~2, 3~^~05/01/2014~ -~19410~^~406~^2.653^3^0.007^~1~^~A~^^^1^2.640^2.660^2^2.625^2.682^~2, 3~^~05/01/2014~ -~19410~^~410~^0.595^2^^~1~^~A~^^^1^0.580^0.610^1^^^^~05/01/2014~ -~19410~^~415~^0.493^3^0.012^~1~^~A~^^^1^0.470^0.510^2^0.442^0.545^~2, 3~^~05/01/2014~ -~19410~^~501~^0.046^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~502~^0.258^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~503~^0.261^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~504~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~505~^0.372^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~506~^0.069^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~507~^0.076^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~508~^0.272^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~509~^0.233^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~510~^0.346^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~511~^0.287^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~512~^0.132^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~513~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~514~^1.195^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~515~^0.989^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~516~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~517~^0.215^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~518~^0.243^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19410~^~605~^0.227^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~606~^8.643^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19410~^~609~^0.007^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.009^0.023^~1, 2, 3~^~03/01/2008~ -~19410~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~612~^0.281^3^0.008^~1~^~A~^^^1^0.265^0.290^2^0.246^0.315^~2, 3~^~05/01/2014~ -~19410~^~613~^7.334^3^0.223^~1~^~A~^^^1^6.899^7.640^2^6.373^8.294^~2, 3~^~05/01/2014~ -~19410~^~614~^0.823^3^0.026^~1~^~A~^^^1^0.773^0.862^2^0.710^0.936^~2, 3~^~05/01/2014~ -~19410~^~615~^0.090^3^0.003^~1~^~A~^^^1^0.084^0.095^2^0.076^0.103^~2, 3~^~05/01/2014~ -~19410~^~617~^5.912^3^0.232^~1~^~AS~^^^1^5.480^6.273^2^4.915^6.909^~2, 3~^~05/01/2014~ -~19410~^~618~^15.438^3^0.592^~1~^~AS~^^^1^14.266^16.171^2^12.890^17.987^~2, 3~^~05/01/2014~ -~19410~^~619~^0.053^3^0.003^~1~^~AS~^^^1^0.050^0.058^2^0.042^0.064^~2, 3~^~05/01/2014~ -~19410~^~620~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~19410~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~624~^0.041^3^0.001^~1~^~A~^^^1^0.040^0.043^2^0.036^0.045^~2, 3~^~05/01/2014~ -~19410~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~19410~^~626~^0.181^3^0.006^~1~^~AS~^^^1^0.170^0.187^2^0.157^0.205^~2, 3~^~05/01/2014~ -~19410~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~19410~^~628~^0.032^3^0.001^~1~^~A~^^^1^0.029^0.034^2^0.025^0.038^~2, 3~^~05/01/2014~ -~19410~^~629~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2014~ -~19410~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~19410~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~645~^6.140^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~646~^15.502^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~652~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~03/01/2008~ -~19410~^~653~^0.026^3^0.001^~1~^~A~^^^1^0.024^0.027^2^0.022^0.029^~2, 3~^~05/01/2014~ -~19410~^~654~^0.033^3^0.001^~1~^~A~^^^1^0.031^0.035^2^0.028^0.038^~2, 3~^~05/01/2014~ -~19410~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19410~^~663~^0.040^3^0.002^~1~^~A~^^^1^0.037^0.043^2^0.033^0.047^~2, 3~^~05/01/2014~ -~19410~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~19410~^~665~^0.187^3^0.009^~1~^~A~^^^1^0.178^0.204^2^0.149^0.224^~2, 3~^~05/01/2014~ -~19410~^~670~^0.047^8^0.002^~1~^~A~^^^2^0.034^0.060^6^0.043^0.052^~2, 3~^~03/01/2008~ -~19410~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~672~^0.004^8^0.000^~1~^~A~^^^2^0.003^0.004^6^0.003^0.004^~2, 3~^~03/01/2008~ -~19410~^~673~^0.177^8^0.007^~1~^~A~^^^2^0.129^0.194^4^0.157^0.196^~2, 3~^~03/01/2008~ -~19410~^~674~^5.872^3^0.230^~1~^~A~^^^1^5.443^6.230^2^4.883^6.862^~2, 3~^~05/01/2014~ -~19410~^~675~^15.206^3^0.598^~1~^~A~^^^1^14.022^15.943^2^12.633^17.779^~2, 3~^~05/01/2014~ -~19410~^~676~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~03/01/2008~ -~19410~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~19410~^~687~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~05/01/2014~ -~19410~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~19410~^~693~^0.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~695~^0.187^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19410~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~851~^0.049^3^0.002^~1~^~A~^^^1^0.047^0.054^2^0.039^0.059^~2, 3~^~05/01/2014~ -~19410~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~19410~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19410~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~312~^0.234^17^0.028^~1~^~A~^^^1^0.059^0.378^5^0.163^0.304^~2, 3~^~05/01/2014~ -~19411~^~315~^0.430^17^0.023^~1~^~A~^^^1^0.335^0.570^6^0.374^0.487^~2, 3~^~05/01/2014~ -~19411~^~404~^0.213^9^0.023^~1~^~A~^^^1^0.150^0.250^2^0.113^0.313^~2, 3~^~05/01/2014~ -~19411~^~405~^0.088^9^0.003^~1~^~A~^^^1^0.080^0.120^4^0.079^0.096^~2, 3~^~05/01/2014~ -~19411~^~406~^4.762^9^0.267^~1~^~A~^^^1^3.980^7.150^4^3.979^5.545^~2, 3~^~05/01/2014~ -~19411~^~410~^0.956^6^0.018^~1~^~A~^^^1^0.780^1.000^2^0.876^1.036^~2, 3~^~05/01/2014~ -~19411~^~415~^0.531^9^0.033^~1~^~A~^^^1^0.390^0.640^2^0.404^0.657^~2, 3~^~05/01/2014~ -~19411~^~501~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~502~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~503~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~505~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~507~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~508~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~509~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~512~^0.153^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~513~^0.214^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~514~^1.706^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~515~^1.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~516~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~517~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~518~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19411~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~606~^3.400^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~609~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.010^3^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~19411~^~610~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.017^1^-0.009^0.011^~1, 2, 3~^~05/01/2014~ -~19411~^~611~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.007^1^-0.004^0.005^~1, 2, 3~^~05/01/2014~ -~19411~^~612~^0.044^9^0.006^~1~^~A~^^^1^0.013^0.229^3^0.026^0.062^~2, 3~^~05/01/2014~ -~19411~^~613~^2.157^9^0.116^~1~^~A~^^^1^1.211^6.638^3^1.811^2.504^~2, 3~^~05/01/2014~ -~19411~^~614~^0.802^9^0.068^~1~^~A~^^^1^0.567^1.035^2^0.546^1.058^~2, 3~^~05/01/2014~ -~19411~^~615~^0.153^9^0.013^~1~^~A~^^^1^0.083^0.204^2^0.100^0.207^~2, 3~^~05/01/2014~ -~19411~^~617~^18.600^9^0.445^~1~^~AS~^^^1^5.418^21.976^4^17.404^19.796^~2, 3~^~05/01/2014~ -~19411~^~618~^7.904^9^0.462^~1~^~AS~^^^1^4.236^17.731^3^6.510^9.297^~2, 3~^~05/01/2014~ -~19411~^~619~^0.358^9^0.063^~1~^~AS~^^^1^0.081^0.580^2^0.109^0.607^~2, 3~^~05/01/2014~ -~19411~^~620~^0.009^9^0.000^~1~^~A~^^^1^0.007^0.010^2^0.007^0.011^~2, 3~^~05/01/2014~ -~19411~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~624~^0.148^9^0.025^~1~^~A~^^^1^0.041^0.203^2^0.057^0.238^~2, 3~^~05/01/2014~ -~19411~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~626~^0.069^9^0.006^~1~^~AS~^^^1^0.028^0.166^4^0.051^0.088^~2, 3~^~05/01/2014~ -~19411~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~628~^0.243^9^0.039^~1~^~A~^^^1^0.047^0.408^2^0.076^0.410^~2, 3~^~05/01/2014~ -~19411~^~629~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.005^1^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~19411~^~630~^0.010^9^0.005^~1~^~AS~^^^1^0.000^0.027^2^-0.013^0.032^~2, 3~^~05/01/2014~ -~19411~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~645~^18.963^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~646~^8.282^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~652~^0.007^9^0.000^~1~^~A~^^^1^0.004^0.008^3^0.007^0.008^~2, 3~^~05/01/2014~ -~19411~^~653~^0.017^9^0.001^~1~^~A~^^^1^0.013^0.025^2^0.012^0.022^~2, 3~^~05/01/2014~ -~19411~^~654~^0.069^9^0.005^~1~^~A~^^^1^0.036^0.088^3^0.049^0.089^~2, 3~^~05/01/2014~ -~19411~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~663~^0.021^9^0.001^~1~^~A~^^^1^0.015^0.043^3^0.017^0.024^~2, 3~^~05/01/2014~ -~19411~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~665~^0.063^9^0.008^~1~^~A~^^^1^0.019^0.322^5^0.043^0.083^~2, 3~^~05/01/2014~ -~19411~^~670~^0.022^9^0.002^~1~^~A~^^^1^0.014^0.084^5^0.018^0.027^~2, 3~^~05/01/2014~ -~19411~^~671~^0.021^9^0.004^~1~^~A~^^^1^0.000^0.039^2^0.005^0.037^~1, 2, 3~^~05/01/2014~ -~19411~^~672~^0.009^9^0.001^~1~^~A~^^^1^0.003^0.013^2^0.004^0.013^~2, 3~^~05/01/2014~ -~19411~^~673~^0.069^9^0.006^~1~^~A~^^^1^0.028^0.166^4^0.051^0.088^~2, 3~^~05/01/2014~ -~19411~^~674~^18.579^9^0.444^~1~^~A~^^^1^5.391^21.957^4^17.385^19.773^~2, 3~^~05/01/2014~ -~19411~^~675~^7.818^9^0.457^~1~^~A~^^^1^4.201^17.429^3^6.444^9.192^~2, 3~^~05/01/2014~ -~19411~^~676~^0.010^9^0.005^~1~^~A~^^^1^0.000^0.027^2^-0.013^0.032^~1, 2, 3~^~05/01/2014~ -~19411~^~685~^0.018^9^0.003^~1~^~A~^^^1^0.004^0.029^2^0.005^0.030^~2, 3~^~05/01/2014~ -~19411~^~687~^0.020^9^0.002^~1~^~A~^^^1^0.011^0.030^2^0.010^0.031^~2, 3~^~05/01/2014~ -~19411~^~689~^0.001^9^0.000^~1~^~AS~^^^1^0.000^0.006^3^0.000^0.001^~2, 3~^~05/01/2014~ -~19411~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~19411~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~851~^0.340^9^0.060^~1~^~A~^^^1^0.070^0.551^2^0.104^0.577^~2, 3~^~05/01/2014~ -~19411~^~852~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.006^3^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~19411~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19411~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.002^0.002^~1, 2, 3~^~05/01/2014~ -~19411~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~19412~^~312~^0.056^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~315~^0.058^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~404~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~405~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~406~^2.600^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~410~^0.338^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~415~^0.521^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19412~^~501~^0.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~502~^0.291^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~503~^0.329^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~504~^0.509^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~505~^0.476^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~506~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~507~^0.081^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~508~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~509~^0.282^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~510~^0.411^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~512~^0.171^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~513~^0.237^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~514~^1.062^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~515~^1.242^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~516~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~517~^0.395^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~518~^0.308^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~606~^9.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~607~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~608~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~609~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~610~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~611~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~612~^0.470^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~613~^7.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~614~^1.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~617~^6.780^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~618~^18.310^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~619~^0.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~626~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~645~^7.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19412~^~646~^18.660^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~312~^0.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~315~^5.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~404~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~405~^0.104^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~406~^6.435^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~410~^0.930^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~415~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~501~^0.092^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~502~^0.306^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~503~^0.337^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~504~^0.781^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~505~^0.293^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~506~^0.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~507~^0.114^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~508~^0.423^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~509~^0.319^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~510~^0.469^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~511~^0.569^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~512~^0.223^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~513~^0.524^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~514~^0.721^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~515~^1.655^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~516~^0.390^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~517~^0.485^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~518~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~606~^0.630^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~613~^0.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~614~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~617~^1.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~618~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~619~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~645~^1.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19413~^~646~^1.130^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~312~^0.427^3^0.033^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~315~^5.220^3^0.160^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~404~^0.067^8^0.017^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~405~^0.184^8^0.041^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~406~^6.602^7^0.284^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~410~^1.002^4^0.039^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~415~^0.137^4^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~501~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~502~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~503~^0.351^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~504~^0.682^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~505~^0.313^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~506~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~507~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~508~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~509~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~510~^0.481^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~511~^0.624^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~512~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~513~^0.484^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~514~^0.771^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~515~^1.714^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~516~^0.409^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~517~^0.409^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~518~^0.427^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~606~^0.560^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~613~^0.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~614~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~617~^1.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~618~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~619~^0.440^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~645~^1.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19414~^~646~^1.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~312~^0.315^3^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~315~^0.423^3^0.004^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~404~^0.096^3^0.002^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~405~^0.116^3^0.005^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~406~^4.785^3^0.094^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~410~^0.403^3^0.033^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~415~^0.320^3^0.006^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~606~^8.880^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~612~^0.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~613~^7.810^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~614~^0.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~617~^5.880^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~618~^17.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~620~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~626~^0.270^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19415~^~645~^6.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19415~^~646~^17.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~312~^0.390^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~315~^2.977^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19416~^~404~^0.091^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~405~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~406~^7.040^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~410~^1.110^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19416~^~415~^0.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~501~^0.097^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~502~^0.294^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~503~^0.328^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~504~^0.621^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~505~^0.316^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~506~^0.165^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~507~^0.127^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~508~^0.399^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~509~^0.261^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~510~^0.451^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~511~^0.553^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~512~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~513~^0.443^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~514~^0.716^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~515~^1.769^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~516~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~517~^0.531^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~518~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~606~^0.580^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~613~^0.450^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~614~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~617~^1.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~618~^1.490^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~619~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~645~^1.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19416~^~646~^1.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~312~^0.406^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~315~^0.904^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~404~^0.123^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~405~^0.063^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~406~^1.552^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~410~^0.234^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~415~^0.086^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19418~^~501~^0.144^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~502~^0.330^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~503~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~504~^0.767^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~505~^0.359^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~506~^0.192^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~507~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~508~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~509~^0.353^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~510~^0.468^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~511~^0.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~512~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~513~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~514~^0.716^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~515~^3.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~516~^0.436^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~517~^0.994^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~518~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~606~^6.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~612~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~613~^5.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~614~^1.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~617~^10.830^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~618~^16.440^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~619~^0.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~620~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19418~^~645~^10.910^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19418~^~646~^17.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~312~^0.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~315~^1.815^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19419~^~404~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~405~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~406~^5.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~410~^0.830^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19419~^~415~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~502~^0.301^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~503~^0.316^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~504~^0.837^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~505~^0.267^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~506~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~507~^0.124^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~508~^0.408^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~509~^0.317^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~510~^0.442^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~511~^0.506^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~512~^0.227^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~513~^0.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~514~^0.659^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~515~^1.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~516~^0.365^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~517~^0.548^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~518~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~606~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~613~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~614~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~617~^0.760^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~618~^0.890^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~619~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19419~^~645~^0.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19419~^~646~^0.930^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~312~^0.218^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~315~^0.922^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~404~^0.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~405~^0.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~406~^1.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~410~^0.387^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~415~^0.096^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19420~^~501~^0.131^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~502~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~503~^0.350^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~504~^0.679^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~505~^0.376^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~506~^0.144^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~507~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~508~^0.502^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~509~^0.383^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~510~^0.455^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~511~^0.977^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~512~^0.236^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~513~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~514~^1.059^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~515~^2.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~516~^0.558^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~517~^0.495^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~518~^0.483^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~606~^3.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~611~^0.020^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~612~^0.020^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~613~^2.210^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~614~^0.900^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~617~^6.910^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~618~^11.950^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~619~^0.110^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~620~^0.020^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~626~^0.010^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~628~^0.080^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~645~^7.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19420~^~646~^12.080^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~312~^0.250^4^0.052^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~315~^0.446^4^0.035^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~404~^0.155^4^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~405~^0.158^4^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~406~^5.000^4^0.129^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~410~^0.790^4^0.105^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~415~^0.348^4^0.039^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~501~^0.073^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~502~^0.365^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~503~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~504~^0.594^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~505~^0.554^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~506~^0.116^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~507~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~508~^0.388^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~509~^0.329^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~510~^0.501^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~511~^0.400^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~512~^0.194^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~513~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~514~^1.494^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~515~^1.446^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~516~^0.268^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~517~^0.394^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~518~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~606~^8.600^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~610~^0.000^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~611~^0.060^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~612~^0.240^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~613~^7.320^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~614~^0.870^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~617~^7.470^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~618~^9.410^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~619~^0.150^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~626~^0.140^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~628~^0.120^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~645~^7.720^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19421~^~646~^9.560^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~312~^0.600^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~315~^0.440^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~404~^0.208^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~405~^0.267^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~406~^7.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~410~^0.271^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19422~^~415~^0.671^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~501~^0.111^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~502~^0.260^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~503~^0.291^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~504~^0.430^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~505~^0.435^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~506~^0.113^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~507~^0.092^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~508~^0.318^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~509~^0.265^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~510~^0.403^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~511~^0.329^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~512~^0.157^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~513~^0.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~514~^1.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~515~^1.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~516~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~517~^0.257^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~518~^0.311^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~606~^4.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~612~^0.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~613~^3.520^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~614~^0.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~617~^4.300^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~618~^10.750^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~619~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~626~^0.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~19422~^~645~^4.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19422~^~646~^10.940^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19423~^~312~^0.440^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~315~^0.770^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~404~^0.329^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~405~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~406~^4.370^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~410~^0.981^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~415~^0.158^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~606~^0.240^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19423~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~612~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~613~^0.172^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~614~^0.037^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~617~^0.174^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~618~^0.275^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~619~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~626~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~19423~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~19423~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19423~^~645~^0.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19423~^~646~^0.304^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~19424~^~312~^0.143^12^0.020^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~315~^0.436^12^0.007^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~404~^0.222^15^0.003^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~405~^0.274^15^0.006^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~406~^0.415^15^0.107^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~415~^0.231^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19424~^~501~^0.069^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~502~^0.314^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~503~^0.331^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~504~^0.989^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~505~^0.316^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~506~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~507~^0.139^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~508~^0.417^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~509~^0.352^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~510~^0.446^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~511~^0.429^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~512~^0.262^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~513~^0.569^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~514~^0.596^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~515~^1.669^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~516~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~517~^0.755^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~518~^0.411^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~606~^2.910^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~607~^0.010^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~611~^0.030^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~612~^0.110^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~613~^1.880^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~614~^0.880^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~617~^8.890^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~618~^2.020^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~619~^0.090^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~626~^0.060^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~645~^8.950^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19424~^~646~^2.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19433~^~312~^0.110^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~404~^0.220^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~405~^0.280^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~406~^0.420^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~415~^0.180^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~606~^0.850^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~607~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~608~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~609~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~610~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~611~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~612~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~613~^0.684^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~614~^0.090^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~617~^1.500^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~618~^2.524^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~619~^0.078^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~620~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~621~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~626~^0.005^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~627~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~628~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~630~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~645~^1.660^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19433~^~646~^2.870^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~ -~19434~^~312~^0.085^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~404~^0.540^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~405~^0.610^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~406~^7.140^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~415~^0.710^0^^~8~^^^^^^^^^^^~04/01/2007~ -~19434~^~606~^2.100^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~611~^0.001^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~612~^0.033^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~613~^1.652^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~614~^0.414^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~617~^3.475^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~618~^5.429^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~619~^0.314^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~626~^0.026^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~645~^3.500^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19434~^~646~^5.740^0^^~4~^^^^^^^^^^^~04/01/2007~ -~19435~^~312~^0.234^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~404~^0.030^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~405~^0.070^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~406~^0.400^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~415~^1.590^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~521~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~606~^0.200^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~613~^0.175^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~614~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~617~^0.241^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~618~^0.332^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~619~^0.019^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~645~^0.240^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~646~^0.350^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~ -~19435~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19435~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~ -~19436~^~312~^0.140^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~404~^0.038^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~405~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~406~^0.342^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~415~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~ -~19436~^~606~^0.200^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~613~^0.167^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~614~^0.032^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~617~^0.257^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~618~^0.588^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~619~^0.046^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~645~^0.260^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19436~^~646~^0.634^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~ -~19437~^~312~^0.174^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~ -~19437~^~404~^1.080^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~19437~^~405~^0.115^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~19437~^~406~^6.446^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~19437~^~415~^0.800^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~ -~19437~^~606~^0.150^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~613~^0.110^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~614~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~617~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~618~^0.200^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~619~^0.060^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~645~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19437~^~646~^0.255^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2007~ -~19438~^~312~^0.100^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~315~^1.601^0^^~4~^~BFZY~^^^^^^^^^^~05/01/1996~ -~19438~^~404~^0.700^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19438~^~405~^0.800^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19438~^~406~^9.100^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~19438~^~410~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~415~^0.900^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~606~^1.400^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19438~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~612~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~613~^0.878^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~614~^0.324^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~617~^1.943^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~618~^4.346^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~619~^0.579^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~626~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~628~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~645~^2.500^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19438~^~646~^5.100^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~312~^0.700^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~315~^1.797^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~404~^0.700^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~405~^0.800^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~406~^9.500^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~410~^0.671^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~415~^1.000^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~606~^1.100^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~611~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~612~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~613~^0.684^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~614~^0.237^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~617~^1.769^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~618~^4.038^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~619~^0.043^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~626~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19439~^~645~^1.800^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19439~^~646~^4.500^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~ -~19440~^~312~^0.312^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~315~^1.067^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~404~^0.169^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~405~^0.201^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~406~^1.539^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~410~^0.468^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~415~^0.117^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~605~^0.051^0^^~4~^~T~^^^^^^^^^^~01/01/2006~ -~19440~^~606~^4.701^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~607~^0.027^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~608~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~609~^0.010^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~610~^0.055^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~611~^0.165^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~612~^0.155^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~613~^2.335^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~614~^1.945^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~617~^4.654^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~618~^2.566^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~619~^0.183^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~ -~19440~^~626~^0.056^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~645~^4.710^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19440~^~646~^2.749^0^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~19441~^~312~^0.142^6^0.005^~1~^~A~^^^1^0.126^0.159^5^0.130^0.154^~2, 3~^~04/01/2015~ -~19441~^~315~^0.996^6^0.011^~1~^~A~^^^1^0.959^1.030^5^0.967^1.024^~2, 3~^~04/01/2015~ -~19441~^~404~^1.153^3^0.028^~1~^~A~^^^1^1.120^1.210^2^1.031^1.276^~2, 3~^~04/01/2015~ -~19441~^~405~^2.067^3^0.033^~1~^~A~^^^1^2.000^2.100^2^1.923^2.210^~2, 3~^~04/01/2015~ -~19441~^~406~^19.267^3^0.649^~1~^~A~^^^1^18.300^20.500^2^16.474^22.059^~2, 3~^~04/01/2015~ -~19441~^~410~^0.405^2^^~1~^~A~^^^1^0.390^0.420^1^^^^~04/01/2015~ -~19441~^~415~^1.833^3^0.120^~1~^~A~^^^1^1.600^2.000^2^1.316^2.350^~2, 3~^~04/01/2015~ -~19441~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~606~^1.442^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~607~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2015~ -~19441~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2015~ -~19441~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2015~ -~19441~^~612~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2015~ -~19441~^~613~^0.979^3^0.014^~1~^~A~^^^1^0.952^0.999^2^0.919^1.039^~2, 3~^~04/01/2015~ -~19441~^~614~^0.380^3^0.007^~1~^~A~^^^1^0.366^0.388^2^0.349^0.411^~2, 3~^~04/01/2015~ -~19441~^~615~^0.026^3^0.000^~1~^~A~^^^1^0.025^0.026^2^0.024^0.027^~2, 3~^~04/01/2015~ -~19441~^~617~^1.950^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~19441~^~618~^4.022^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~19441~^~619~^0.520^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~19441~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19441~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~624~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~04/01/2015~ -~19441~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~626~^0.008^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~ -~19441~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~628~^0.026^3^0.001^~1~^~A~^^^1^0.025^0.028^2^0.022^0.030^~2, 3~^~04/01/2015~ -~19441~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~19441~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~645~^1.989^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~646~^4.544^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~19441~^~653~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~19441~^~654~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~04/01/2015~ -~19441~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~663~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.011^2^-0.002^0.016^~2, 3~^~04/01/2015~ -~19441~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~19441~^~665~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~04/01/2015~ -~19441~^~670~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~04/01/2015~ -~19441~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~19441~^~673~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~04/01/2015~ -~19441~^~674~^1.943^3^0.031^~1~^~A~^^^1^1.882^1.978^2^1.811^2.076^~2, 3~^~04/01/2015~ -~19441~^~675~^4.002^3^0.054^~1~^~A~^^^1^3.894^4.070^2^3.767^4.236^~2, 3~^~04/01/2015~ -~19441~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~685~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~04/01/2015~ -~19441~^~687~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~19441~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~19441~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~19441~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~851~^0.496^3^0.014^~1~^~A~^^^1^0.469^0.517^2^0.435^0.558^~2, 3~^~04/01/2015~ -~19441~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19441~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~19444~^~312~^0.140^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~315~^0.570^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~404~^0.206^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~406~^1.300^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~410~^0.208^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~415~^0.241^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~606~^1.054^0^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19444~^~607~^0.004^0^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19444~^~608~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~609~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~610~^0.026^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~611~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~612~^0.120^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~613~^0.659^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~614~^0.222^0^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19444~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~617~^1.165^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~618~^1.176^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~619~^0.035^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~620~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~19444~^~621~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~19444~^~624~^0.158^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~626~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~627~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~19444~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19444~^~629~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~19444~^~630~^0.003^0^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19444~^~631~^0.000^0^^~12~^~MA~^^^^^^^^^^~07/01/1998~ -~19444~^~645~^1.379^0^^~12~^~MA~^^^^^^^^^^~08/01/1998~ -~19444~^~646~^1.211^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~19444~^~653~^0.009^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~19445~^~312~^0.165^4^0.003^~1~^~A~^^^1^0.156^0.168^3^0.155^0.174^~2, 3~^~07/01/2008~ -~19445~^~315~^0.394^4^0.003^~1~^~A~^^^1^0.386^0.400^3^0.385^0.403^~2, 3~^~07/01/2008~ -~19445~^~404~^0.177^4^0.017^~1~^~A~^^^1^0.130^0.210^3^0.123^0.232^~2, 3~^~07/01/2008~ -~19445~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~07/01/2008~ -~19445~^~406~^3.397^4^0.473^~1~^~A~^^^1^1.980^3.880^3^1.894^4.901^~2, 3~^~07/01/2008~ -~19445~^~410~^0.963^4^0.019^~1~^~A~^^^1^0.910^1.000^3^0.902^1.023^~2, 3~^~07/01/2008~ -~19445~^~415~^0.532^4^0.019^~1~^~A~^^^1^0.490^0.570^3^0.471^0.594^~2, 3~^~07/01/2008~ -~19445~^~606~^0.355^0^^~5~^~ML~^^^^^^^^^^~07/01/2008~ -~19445~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~611~^0.009^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~613~^0.162^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~614~^0.060^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~617~^0.300^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~618~^0.160^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~619~^0.030^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~19445~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~645~^0.300^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~646~^0.190^0^^~4~^~FLM~^^^^^^^^^^~07/01/2008~ -~19445~^~652~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~07/01/2008~ -~19445~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~ -~19445~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2008~ -~19445~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~19445~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~19524~^~312~^0.280^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~315~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~404~^0.174^3^0.063^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~405~^0.029^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~406~^0.515^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~410~^0.668^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~415~^0.438^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19524~^~501~^0.036^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~502~^0.106^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~503~^0.084^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~504~^0.172^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~505~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~506~^0.032^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~507~^0.049^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~508~^0.126^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~509~^0.085^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~510~^0.127^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~511~^0.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~512~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~513~^0.113^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~514~^0.296^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~515~^0.268^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~516~^0.114^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~517~^0.092^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~518~^0.142^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~606~^6.430^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~612~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~613~^5.650^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~614~^0.570^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~617~^4.230^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~618~^12.820^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~619~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~626~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19524~^~645~^4.430^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19524~^~646~^12.880^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~312~^0.700^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~315~^0.800^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~404~^0.055^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~405~^0.090^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~406~^0.427^4^0.049^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~410~^0.105^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~415~^0.050^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19701~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~502~^0.168^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~503~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~504~^0.257^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~505~^0.212^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~506~^0.044^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~507~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~508~^0.204^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~509~^0.159^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~510~^0.254^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~511~^0.240^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~512~^0.073^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~513~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~514~^0.422^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~515~^0.637^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~516~^0.190^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~517~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~518~^0.183^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~606~^17.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~607~^0.480^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~608~^0.285^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~609~^0.165^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~610~^0.375^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~611~^0.420^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~612~^0.050^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~613~^8.030^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~614~^9.230^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~617~^9.930^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~618~^0.950^6^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~619~^0.240^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~626~^0.360^0^^~4~^^^^^^^^^^^~08/01/1993~ -~19701~^~645~^9.930^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19701~^~646~^0.950^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~312~^0.118^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~315~^0.016^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~404~^0.002^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~405~^0.021^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~406~^0.008^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~410~^0.011^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~415~^0.010^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19702~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~502~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~503~^0.118^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~504~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~505~^0.354^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~506~^0.062^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~508~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~509~^0.031^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~510~^0.213^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~511~^0.676^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~512~^0.068^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~513~^0.818^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~514~^0.538^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~515~^0.894^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~516~^1.947^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~517~^1.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~518~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19702~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19703~^~312~^1.016^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~315~^0.049^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~404~^0.012^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~405~^0.108^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~406~^0.040^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~410~^0.059^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~415~^0.049^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19703~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~502~^1.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~503~^0.837^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~504~^1.774^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~505~^2.501^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~506~^0.439^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~508~^1.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~509~^0.219^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~510~^1.505^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~511~^4.784^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~512~^0.478^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~513~^5.790^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~514~^3.807^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~515~^6.328^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~516~^13.773^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~517~^8.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~518~^1.884^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19703~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19704~^~312~^1.016^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~315~^0.049^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~404~^0.012^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~405~^0.108^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~406~^0.040^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~410~^0.059^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~415~^0.049^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19704~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~502~^1.066^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~503~^0.837^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~504~^1.774^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~505~^2.501^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~506~^0.439^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~507~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~508~^1.256^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~509~^0.219^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~510~^1.505^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~511~^4.784^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~512~^0.478^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~513~^5.790^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~514~^3.807^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~515~^6.328^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~516~^13.773^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~517~^8.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~518~^1.884^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19704~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19705~^~312~^0.021^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~315~^0.010^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~404~^0.001^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~405~^0.003^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~406~^0.002^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~410~^0.006^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~415~^0.001^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~606~^0.790^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~607~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~608~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~610~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~611~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~612~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~613~^0.620^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~614~^0.160^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~617~^1.290^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~618~^1.990^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~619~^0.120^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~626~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~645~^1.300^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19705~^~646~^2.120^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~312~^0.020^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~315~^0.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~404~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~405~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~406~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~410~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~415~^0.000^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19706~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~502~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~503~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~504~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~505~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~508~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~509~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~510~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~511~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~512~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~513~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~514~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~515~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~516~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~517~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~518~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~606~^0.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~613~^0.700^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~614~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~617~^1.470^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~618~^2.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~619~^0.140^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~645~^1.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19706~^~646~^2.410^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~312~^0.024^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~315~^0.025^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~404~^0.005^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~405~^0.024^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~406~^0.019^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~410~^0.030^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~415~^0.005^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19708~^~501~^0.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~502~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~503~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~504~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~505~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~506~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~507~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~508~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~509~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~510~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~511~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~512~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~513~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~514~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~515~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~516~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~517~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~518~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~606~^0.270^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~612~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~613~^0.210^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~614~^0.050^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~617~^0.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~618~^0.680^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~619~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~645~^0.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19708~^~646~^0.720^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~312~^0.029^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~315~^0.033^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~404~^0.001^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~405~^0.006^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~406~^0.004^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~410~^0.015^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~415~^0.032^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19709~^~501~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~502~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~503~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~504~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~505~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~506~^0.002^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~507~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~508~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~509~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~510~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~512~^0.003^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~513~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~514~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~515~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~516~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~517~^0.007^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19709~^~518~^0.004^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~312~^0.020^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~315~^0.013^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~404~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~405~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~406~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~410~^0.004^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~415~^0.000^0^^~4~^^^^^^^^^^^~08/01/1991~ -~19710~^~501~^0.001^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~502~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~503~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~504~^0.035^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~505~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~506~^0.005^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~507~^0.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~508~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~509~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~510~^0.013^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~511~^0.012^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~512~^0.008^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~513~^0.019^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~514~^0.020^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~515~^0.052^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~516~^0.009^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~517~^0.024^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~518~^0.011^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~606~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~613~^0.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~614~^0.040^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~617~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~618~^0.500^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~619~^0.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~645~^0.320^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19710~^~646~^0.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~312~^0.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~315~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~404~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~405~^0.022^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~406~^0.036^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~410~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~415~^0.020^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~606~^0.010^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19719~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~612~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~613~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~614~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~617~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~618~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~645~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19719~^~646~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~ -~19720~^~312~^0.045^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~315~^0.185^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~404~^0.005^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~405~^0.017^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~406~^0.020^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19720~^~410~^0.008^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~415~^0.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19720~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~19800~^~312~^0.420^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~315~^1.815^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19800~^~404~^0.250^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~405~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~406~^5.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~410~^0.830^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19800~^~415~^0.140^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~501~^0.081^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~502~^0.301^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~503~^0.316^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~504~^0.837^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~505~^0.267^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~506~^0.177^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~507~^0.124^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~508~^0.408^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~509~^0.317^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~510~^0.442^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~511~^0.506^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~512~^0.227^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~513~^0.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~514~^0.659^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~515~^1.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~516~^0.365^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~517~^0.548^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~518~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~606~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~613~^0.360^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~614~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~617~^0.760^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~618~^0.890^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~619~^0.030^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~645~^0.760^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19800~^~646~^0.930^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~312~^0.063^79^0.006^~1~^^^^^^^^^^^~08/01/2015~ -~19802~^~315~^0.095^6^0.002^~1~^~A~^^^^0.087^0.101^^^^^~08/01/2015~ -~19802~^~404~^0.155^3^0.010^~1~^~A~^^^^0.135^0.169^^^^^~08/01/2015~ -~19802~^~405~^0.200^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~406~^5.743^3^2.515^~1~^~A~^^^^2.909^10.759^^^^^~08/01/2015~ -~19802~^~410~^0.374^7^0.041^~1~^^^^^^^^^^^~08/01/2015~ -~19802~^~415~^0.064^3^0.010^~1~^~A~^^^^0.048^0.083^^^^^~05/01/2005~ -~19802~^~501~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~502~^0.391^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~503~^0.366^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~504~^0.783^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~505~^0.456^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~506~^0.151^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~507~^0.138^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~508~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~509~^0.258^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~510~^0.404^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~511~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~512~^0.181^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~513~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~514~^0.645^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~515~^1.387^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~516~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~517~^0.558^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~518~^0.367^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~605~^0.806^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~606~^5.512^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~607~^0.030^3^^~1~^^^^^^^^^^^~08/01/1991~ -~19802~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~610~^0.038^2^^~1~^~A~^^^1^0.030^0.046^1^^^~1~^~05/01/2005~ -~19802~^~611~^0.045^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~05/01/2005~ -~19802~^~612~^0.158^2^^~1~^~A~^^^1^0.143^0.172^1^^^^~05/01/2005~ -~19802~^~613~^4.134^2^^~1~^~A~^^^1^4.125^4.143^1^^^^~08/01/2015~ -~19802~^~614~^0.947^2^^~1~^~A~^^^1^0.920^0.974^1^^^^~08/01/2015~ -~19802~^~615~^0.141^2^^~1~^~A~^^^1^0.139^0.144^1^^^^~05/01/2005~ -~19802~^~617~^9.693^2^^~1~^~A~^^^1^9.653^9.734^1^^^^~08/01/2015~ -~19802~^~618~^18.151^2^^~1~^~A~^^^1^17.850^18.451^1^^^^~08/01/2015~ -~19802~^~619~^0.300^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~19802~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~624~^0.049^2^^~1~^~A~^^^1^0.049^0.049^^^^^~05/01/2005~ -~19802~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~626~^0.056^2^^~1~^~A~^^^1^0.054^0.057^1^^^^~08/01/2015~ -~19802~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~628~^0.080^2^^~1~^~A~^^^1^0.079^0.081^1^^^^~08/01/2015~ -~19802~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1999~ -~19802~^~645~^10.437^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~646~^18.649^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~663~^0.608^2^^~1~^~A~^^^1^0.549^0.667^1^^^^~08/01/2015~ -~19802~^~669~^0.198^2^^~1~^~A~^^^1^0.190^0.207^1^^^^~08/01/2015~ -~19802~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2005~ -~19802~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~693~^0.608^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~695~^0.198^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~19802~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2005~ -~19802~^~851~^0.300^2^^~1~^~A~^^^1^0.286^0.315^1^^^^~08/01/2015~ -~19804~^~312~^0.166^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~315~^0.774^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~404~^0.420^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19804~^~405~^0.480^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19804~^~406~^6.300^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19804~^~410~^0.143^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~415~^0.230^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~501~^0.063^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~502~^0.279^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~503~^0.277^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~504~^0.747^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~505~^0.284^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~506~^0.134^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~507~^0.119^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~508~^0.333^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~509~^0.273^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~510~^0.357^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~511~^0.373^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~512~^0.200^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~513~^0.475^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~514~^0.586^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~515~^1.243^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~516~^0.293^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~517~^0.521^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~518~^0.337^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~606~^4.460^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~607~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~611~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~612~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~613~^3.510^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~614~^0.960^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~617~^9.390^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~618~^14.940^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~619~^1.230^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~626~^0.090^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~645~^9.480^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19804~^~646~^16.170^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19806~^~312~^0.420^3^0.080^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~315~^0.943^3^0.092^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~404~^0.203^4^0.024^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~405~^0.283^4^0.063^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~406~^1.944^4^0.053^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~410~^0.420^5^0.077^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~415~^0.245^4^0.039^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~501~^0.085^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~502~^0.452^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~503~^0.431^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~504~^1.473^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~505~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~506~^0.252^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~507~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~508~^0.590^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~509~^0.488^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~510~^0.607^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~511~^0.598^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~512~^0.367^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~513~^0.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~514~^0.836^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~515~^2.255^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~516~^0.492^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~517~^1.048^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~518~^0.571^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~606~^0.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~613~^0.500^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~614~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~617~^1.100^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~618~^1.840^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~619~^0.060^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~626~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~645~^1.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19806~^~646~^1.900^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~312~^0.221^48^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~315~^0.879^48^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~404~^0.134^20^0.021^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~405~^0.136^23^0.015^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~406~^1.550^20^0.059^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~410~^0.305^7^0.054^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~415~^0.209^6^0.017^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~501~^0.063^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~502~^0.338^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~503~^0.323^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~504~^1.103^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~505~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~506~^0.189^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~507~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~508~^0.442^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~509~^0.366^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~510~^0.455^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~511~^0.448^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~512~^0.275^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~513~^0.674^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~514~^0.626^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~515~^1.689^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~516~^0.369^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~517~^0.785^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~518~^0.428^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~606~^4.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~612~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~613~^3.860^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~614~^0.960^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~617~^8.120^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~618~^12.680^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~619~^0.730^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~626~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~645~^8.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19807~^~646~^13.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~312~^0.306^218^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~315~^0.440^210^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~404~^0.167^125^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~405~^0.197^122^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~406~^3.827^129^0.133^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~410~^0.402^24^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~415~^0.660^73^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~501~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~502~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~503~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~505~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~507~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~508~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~509~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~512~^0.153^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~513~^0.214^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~514~^1.706^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~515~^1.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~516~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~517~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~518~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~606~^5.430^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~613~^3.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~614~^1.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~617~^17.930^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~618~^8.900^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~619~^0.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~628~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~645~^18.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19809~^~646~^9.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~312~^0.306^218^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~315~^0.440^210^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~404~^0.167^125^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~405~^0.197^122^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~406~^3.827^129^0.133^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~410~^0.402^24^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~415~^0.660^73^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~501~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~502~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~503~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~505~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~507~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~508~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~509~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~512~^0.153^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~513~^0.214^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~514~^1.706^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~515~^1.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~516~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~517~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~518~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~606~^5.430^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~613~^3.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~614~^1.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~617~^17.930^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~618~^8.900^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~619~^0.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~628~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~645~^18.000^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19810~^~646~^9.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~312~^0.306^218^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~315~^0.440^210^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~404~^0.167^125^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~405~^0.197^122^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~406~^3.827^129^0.133^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~410~^0.402^24^0.031^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~415~^0.660^73^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~501~^0.108^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~502~^0.253^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~503~^0.283^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~504~^0.419^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~505~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~506~^0.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~507~^0.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~508~^0.310^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~509~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~511~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~512~^0.153^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~513~^0.214^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~514~^1.706^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~515~^1.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~516~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~517~^0.251^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~518~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~606~^10.960^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~607~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~608~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~609~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~610~^0.000^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~611~^0.080^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~612~^0.300^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~613~^9.320^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~614~^1.110^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~617~^9.510^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~618~^11.980^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~619~^0.190^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~620~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~621~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~626~^0.180^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~627~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~628~^0.150^31^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~629~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~630~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~631~^0.000^0^^~4~^^^^^^^^^^^ -~19811~^~645~^9.840^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19811~^~646~^12.170^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~312~^0.264^68^0.028^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~315~^1.789^64^0.203^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~404~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~406~^1.920^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~410~^0.288^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~415~^0.116^4^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~501~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~502~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~503~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~504~^0.636^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~505~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~506~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~507~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~508~^0.453^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~509~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~511~^0.349^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~512~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~514~^0.415^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~515~^3.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~516~^0.327^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~517~^1.018^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~518~^0.447^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~606~^0.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~609~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~610~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~611~^0.030^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~612~^0.020^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~613~^0.470^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~614~^0.210^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~617~^1.350^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~618~^1.150^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~619~^0.060^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~626~^0.020^4^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~645~^1.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19812~^~646~^1.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~312~^0.264^68^0.028^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~315~^1.789^64^0.203^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~404~^0.180^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~405~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~406~^1.920^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~410~^0.288^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~415~^0.116^4^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~501~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~502~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~503~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~504~^0.636^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~505~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~506~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~507~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~508~^0.453^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~509~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~511~^0.349^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~512~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~514~^0.415^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~515~^3.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~516~^0.327^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~517~^1.018^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~518~^0.447^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~606~^0.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~609~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~610~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~611~^0.030^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~612~^0.020^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~613~^0.470^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~614~^0.210^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~617~^1.350^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~618~^1.150^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~619~^0.060^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~626~^0.020^4^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~645~^1.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19813~^~646~^1.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~312~^0.264^68^0.028^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~315~^1.789^64^0.203^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~404~^0.461^61^0.016^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~405~^0.623^62^0.066^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~406~^5.251^62^0.145^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~410~^0.288^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~415~^0.116^4^0.029^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~501~^0.109^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~502~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~503~^0.345^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~504~^0.636^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~505~^0.221^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~506~^0.164^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~507~^0.196^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~508~^0.453^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~509~^0.266^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~510~^0.392^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~511~^0.349^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~512~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~513~^0.304^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~514~^0.415^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~515~^3.037^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~516~^0.327^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~517~^1.018^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~518~^0.447^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~606~^0.750^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~609~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~610~^0.010^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~611~^0.030^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~612~^0.020^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~613~^0.470^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~614~^0.210^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~617~^1.350^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~618~^1.150^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~619~^0.060^7^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~626~^0.020^4^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19814~^~645~^1.360^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19814~^~646~^1.220^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~312~^0.445^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~315~^3.730^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19816~^~404~^0.061^9^0.012^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~405~^0.165^8^0.036^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~406~^7.806^7^0.419^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~410~^1.000^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~415~^0.150^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~501~^0.104^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~502~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~503~^0.346^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~504~^0.675^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~505~^0.311^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~506~^0.184^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~507~^0.099^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~508~^0.421^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~509~^0.306^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~510~^0.479^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~511~^0.618^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~512~^0.207^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~513~^0.476^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~514~^0.764^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~515~^1.662^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~516~^0.402^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~517~^0.383^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~518~^0.422^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~606~^0.570^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~613~^0.480^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~614~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~617~^1.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~618~^0.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~619~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~19816~^~645~^1.030^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19816~^~646~^0.990^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~312~^0.380^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~315~^6.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~404~^0.056^4^0.010^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~405~^0.103^4^0.009^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~406~^8.096^4^1.129^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~410~^1.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~415~^0.130^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~501~^0.125^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~502~^0.340^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~503~^0.358^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~504~^0.638^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~505~^0.414^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~506~^0.152^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~507~^0.137^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~508~^0.399^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~509~^0.233^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~510~^0.489^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~511~^0.677^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~512~^0.218^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~513~^0.517^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~514~^0.800^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~515~^1.568^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~516~^0.603^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~517~^0.376^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~518~^0.467^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~606~^0.640^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~609~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~612~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~613~^0.510^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~614~^0.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~617~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~618~^1.050^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~626~^0.020^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~630~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~645~^1.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19817~^~646~^1.110^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~312~^0.427^3^0.033^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~315~^5.220^3^0.160^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~404~^0.067^8^0.017^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~405~^0.184^8^0.041^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~406~^6.602^7^0.284^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~410~^1.002^4^0.039^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~415~^0.137^4^0.008^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~501~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~502~^0.303^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~503~^0.351^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~504~^0.682^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~505~^0.313^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~506~^0.182^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~507~^0.107^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~508~^0.424^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~509~^0.299^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~510~^0.481^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~511~^0.624^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~512~^0.208^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~513~^0.484^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~514~^0.771^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~515~^1.714^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~516~^0.409^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~517~^0.409^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~518~^0.427^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~606~^0.560^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~610~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~613~^0.460^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~614~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~617~^1.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~618~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~619~^0.440^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~645~^1.160^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19818~^~646~^1.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~312~^0.390^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~315~^4.299^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19819~^~404~^0.048^5^0.011^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~405~^0.085^6^0.013^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~406~^7.205^4^0.632^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~410~^1.461^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19819~^~415~^0.155^2^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~501~^0.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~502~^0.279^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~503~^0.321^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~504~^0.625^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~505~^0.288^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~506~^0.174^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~507~^0.094^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~508~^0.391^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~509~^0.286^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~510~^0.444^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~511~^0.595^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~512~^0.193^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~513~^0.440^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~514~^0.710^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~515~^1.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~516~^0.380^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~517~^0.355^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~518~^0.394^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~606~^0.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~611~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~612~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~613~^0.430^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~614~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~617~^1.090^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~618~^1.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~619~^0.040^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~626~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~645~^1.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19819~^~646~^1.150^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~312~^0.406^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~315~^0.904^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~404~^0.123^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~405~^0.063^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~406~^1.552^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~410~^0.234^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~415~^0.086^1^^~4~^^^^^^^^^^^~08/01/1991~ -~19820~^~501~^0.144^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~502~^0.330^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~503~^0.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~504~^0.767^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~505~^0.359^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~506~^0.192^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~507~^0.201^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~508~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~509~^0.353^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~510~^0.468^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~511~^0.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~512~^0.259^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~513~^0.389^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~514~^0.716^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~515~^3.089^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~516~^0.436^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~517~^0.994^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~518~^0.545^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~606~^6.480^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~609~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~610~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~611~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~612~^0.110^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~613~^5.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~614~^1.350^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~617~^10.830^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~618~^16.440^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~619~^0.970^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~620~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~628~^0.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~645~^10.910^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19820~^~646~^17.420^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~312~^0.985^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~315~^1.034^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~404~^0.462^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~405~^0.198^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~406~^4.712^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~410~^0.895^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~415~^0.298^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~501~^0.166^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~502~^0.482^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~503~^0.515^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~504~^0.890^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~505~^0.515^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~506~^0.202^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~507~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~508~^0.658^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~509~^0.457^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~510~^0.658^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~511~^1.520^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~512~^0.357^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~513~^0.587^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~514~^1.523^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~515~^3.023^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~516~^0.775^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~517~^0.625^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~518~^0.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~606~^5.550^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~609~^0.200^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~610~^0.160^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~611~^1.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~612~^0.480^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~613~^2.530^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~614~^1.000^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~617~^12.290^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~618~^9.580^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~619~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~628~^0.170^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~645~^12.530^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19821~^~646~^9.650^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~312~^0.844^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~315~^1.062^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~404~^0.413^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~405~^0.224^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~406~^4.405^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~410~^0.964^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~415~^0.259^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~501~^0.163^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~502~^0.501^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~503~^0.555^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~504~^0.955^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~505~^0.584^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~506~^0.217^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~507~^0.191^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~508~^0.687^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~509~^0.506^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~510~^0.702^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~511~^1.498^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~512~^0.356^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~513~^0.581^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~514~^1.531^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~515~^3.006^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~516~^0.767^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~517~^0.689^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~518~^0.656^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~606~^6.100^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~608~^0.010^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~609~^0.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~610~^0.180^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~611~^1.260^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~612~^0.540^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~613~^2.750^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~614~^1.150^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~617~^13.280^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~618~^11.210^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~619~^0.080^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~626~^0.070^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~628~^0.190^1^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~645~^13.540^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19822~^~646~^11.290^0^^~1~^^^^^^^^^^^~08/01/1991~ -~19823~^~312~^0.348^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19823~^~404~^0.210^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~405~^0.270^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~406~^7.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~415~^0.670^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~606~^4.160^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~612~^0.120^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~613~^3.520^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~614~^0.510^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~617~^4.300^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~618~^10.750^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~619~^0.190^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~626~^0.500^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~645~^4.800^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19823~^~646~^10.940^0^^~4~^^^^^^^^^^^~05/01/2007~ -~19833~^~312~^0.110^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~404~^0.220^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~405~^0.280^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~406~^0.420^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~415~^0.180^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~ -~19833~^~606~^0.850^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~613~^0.684^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~614~^0.090^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~617~^1.500^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~618~^2.524^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~619~^0.078^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~626~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~645~^1.660^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19833~^~646~^2.870^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2007~ -~19856~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19856~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19857~^~312~^0.177^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~315~^0.408^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~404~^0.400^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~405~^0.350^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~406~^4.000^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~ -~19857~^~410~^0.290^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~415~^0.286^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~501~^0.066^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~502~^0.282^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~503~^0.296^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~504~^0.881^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~505~^0.291^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~506~^0.163^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~507~^0.125^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~508~^0.374^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~509~^0.318^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~510~^0.402^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~511~^0.387^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~512~^0.238^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~513~^0.503^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~514~^0.537^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~515~^1.507^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~516~^0.286^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~517~^0.676^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~518~^0.370^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~606~^4.900^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~607~^0.020^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~608~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~609~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~610~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~611~^0.050^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~612~^0.180^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~613~^3.170^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~614~^1.480^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~617~^15.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~618~^3.400^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~619~^0.140^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~620~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~621~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~626~^0.100^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~627~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~628~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~629~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~630~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~631~^0.000^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~645~^15.090^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19857~^~646~^3.540^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~ -~19858~^~312~^0.586^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~315~^1.121^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~404~^0.050^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~405~^0.270^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~406~^1.000^1^^~1~^^^^^^^^^^^~04/01/2005~ -~19858~^~410~^0.156^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~415~^0.060^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~606~^1.948^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19858~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~611~^0.002^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19858~^~612~^0.106^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19858~^~613~^1.476^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~614~^0.364^0^^~4~^^^^^^^^^^^~04/01/2005~ -~19858~^~617~^11.988^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~618~^3.904^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~626~^0.090^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~645~^12.078^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19858~^~646~^3.904^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~19858~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19858~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~19860~^~312~^3.610^1^^~1~^^^^^^^^^^^~12/01/2006~ -~19860~^~404~^0.080^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~405~^0.370^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~406~^1.800^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~415~^0.190^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~606~^12.640^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~612~^0.028^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~613~^5.787^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~614~^6.700^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~617~^7.380^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~618~^0.769^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~645~^7.380^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19860~^~646~^0.769^0^^~4~^^^^^^^^^^^~12/01/2006~ -~19866~^~312~^0.303^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~315~^0.539^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~404~^0.047^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~405~^0.039^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~406~^0.178^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~410~^0.112^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~415~^0.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~606~^0.898^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~613~^0.647^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~614~^0.241^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~615~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~617~^1.278^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~618~^5.525^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~619~^1.315^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~628~^0.019^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~645~^1.297^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~646~^6.840^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~19866~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19866~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~ -~19867~^~312~^0.028^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~404~^0.051^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~405~^0.248^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~406~^0.140^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~415~^0.047^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~ -~19867~^~607~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~608~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~609~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~610~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~611~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~612~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~613~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~614~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~617~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~618~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~619~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~620~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~621~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~626~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~627~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~628~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~629~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~630~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~631~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~645~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19867~^~646~^0.000^0^^~4~^~BFFN~^~19088~^^^^^^^^^~03/01/2003~ -~19868~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~19868~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~405~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~406~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19868~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~19868~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19868~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~19871~^~312~^0.107^3^0.002^~1~^~A~^^^1^0.103^0.111^2^0.097^0.117^~2, 3~^~07/01/2015~ -~19871~^~315~^0.150^3^0.003^~1~^~A~^^^1^0.146^0.155^2^0.138^0.161^~2, 3~^~07/01/2015~ -~19871~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~405~^0.230^2^^~1~^~A~^^^1^0.220^0.240^1^^^^~07/01/2015~ -~19871~^~406~^0.175^2^^~1~^~A~^^^1^0.160^0.190^1^^^^~07/01/2015~ -~19871~^~410~^0.272^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~ -~19871~^~415~^0.058^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~606~^0.984^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~612~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~613~^0.687^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~614~^0.258^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~617~^0.643^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~618~^0.146^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~624~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~645~^0.649^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~646~^0.149^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~665~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~673~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~674~^0.643^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~675~^0.143^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~19871~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~19871~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~851~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~19871~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19871~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~19873~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~19873~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19874~^~606~^1.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19875~^~606~^2.860^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19876~^~606~^3.220^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19877~^~606~^1.410^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19878~^~606~^2.700^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19879~^~606~^4.480^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19880~^~606~^4.180^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19881~^~606~^4.170^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19882~^~606~^3.900^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19883~^~606~^3.570^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19884~^~606~^3.940^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19886~^~606~^1.001^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19887~^~606~^3.250^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19890~^~606~^10.400^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19891~^~606~^0.470^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19892~^~606~^2.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19893~^~606~^4.280^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19894~^~606~^1.380^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19895~^~606~^3.650^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~ -~19896~^~312~^0.322^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~315~^0.727^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~404~^0.117^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~405~^0.113^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~406~^2.789^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~410~^0.529^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~415~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~606~^8.036^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~19896~^~607~^0.173^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~608~^0.064^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~609~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~610~^0.096^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~611~^0.560^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~612~^0.408^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~613~^3.886^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~614~^2.488^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~615~^0.059^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~617~^7.877^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~618~^4.230^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~619~^0.011^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~624~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~625~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~626~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~628~^0.172^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~645~^8.104^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~646~^4.241^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~652~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~653~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~687~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19896~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~19897~^~415~^0.714^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~19897~^~605~^0.000^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19897~^~606~^11.745^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~19898~^~312~^0.023^7^0.002^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~315~^0.008^6^0.001^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~404~^0.041^13^0.003^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~405~^0.240^14^0.013^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~406~^0.116^6^0.011^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~410~^0.581^3^0.170^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~415~^0.048^10^0.001^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~501~^0.045^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~502~^0.146^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~503~^0.195^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~504~^0.316^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~505~^0.258^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~506~^0.081^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~507~^0.029^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~508~^0.157^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~509~^0.155^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~510~^0.217^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~511~^0.125^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~512~^0.088^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~513~^0.121^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~514~^0.250^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~515~^0.681^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~516~^0.093^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~517~^0.326^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~518~^0.177^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~606~^6.790^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~607~^0.360^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~608~^0.210^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~609~^0.120^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~610~^0.280^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~611~^0.310^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~612~^1.130^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~613~^3.060^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~614~^1.330^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~617~^2.930^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~618~^0.250^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~619~^0.160^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~626~^0.250^1^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~645~^3.170^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19898~^~646~^0.410^0^^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~312~^0.135^35^0.011^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~315~^0.140^35^0.008^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~404~^0.042^5^0.004^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~405~^0.194^5^0.009^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~406~^0.226^5^0.015^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~410~^0.554^5^0.063^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~415~^0.055^5^0.003^~1~^^^^^^^^^^^~05/01/2007~ -~19899~^~606~^6.800^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~607~^0.340^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~608~^0.200^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~609~^0.120^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~610~^0.260^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~611~^0.290^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~612~^1.070^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~613~^3.060^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~614~^1.460^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~617~^2.970^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~618~^0.250^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~619~^0.150^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~626~^0.240^1^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~645~^3.210^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19899~^~646~^0.410^0^^~1~^^^^^^^^^^^~03/01/2009~ -~19902~^~312~^1.028^5^0.012^~1~^~A~^^^1^0.908^1.270^2^0.962^1.094^~2, 3~^~08/01/2008~ -~19902~^~315~^1.419^5^0.026^~1~^~A~^^^1^1.250^1.640^2^1.279^1.558^~2, 3~^~08/01/2008~ -~19902~^~404~^0.025^5^0.003^~1~^~A~^^^1^0.015^0.050^1^-0.007^0.057^~1, 2, 3~^~08/01/2008~ -~19902~^~405~^0.050^5^0.000^~1~^~A~^^^1^0.040^0.070^^^^~2, 3~^~08/01/2008~ -~19902~^~406~^0.725^5^0.008^~1~^~A~^^^1^0.640^0.850^1^0.659^0.791^~2, 3~^~08/01/2008~ -~19902~^~410~^0.297^3^^~1~^~A~^^^1^0.230^0.470^^^^~2, 3~^~08/01/2008~ -~19902~^~415~^0.042^5^0.007^~1~^~A~^^^1^0.027^0.054^1^-0.020^0.103^~2, 3~^~08/01/2008~ -~19902~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~606~^18.519^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~607~^0.057^5^0.002^~1~^~A~^^^1^0.004^0.078^1^0.034^0.079^~2, 3~^~08/01/2008~ -~19902~^~608~^0.044^5^0.001^~1~^~A~^^^1^0.001^0.062^1^0.029^0.060^~2, 3~^~08/01/2008~ -~19902~^~609~^0.029^5^0.001^~1~^~A~^^^1^0.001^0.044^2^0.026^0.032^~2, 3~^~08/01/2008~ -~19902~^~610~^0.085^5^0.001^~1~^~A~^^^1^0.026^0.126^1^0.070^0.100^~2, 3~^~08/01/2008~ -~19902~^~611~^0.078^5^0.000^~1~^~A~^^^1^0.004^0.120^2^0.076^0.081^~2, 3~^~08/01/2008~ -~19902~^~612~^0.259^5^0.000^~1~^~A~^^^1^0.038^0.379^2^0.257^0.262^~2, 3~^~08/01/2008~ -~19902~^~613~^7.624^5^0.094^~1~^~A~^^^1^7.027^8.068^1^6.556^8.692^~2, 3~^~08/01/2008~ -~19902~^~614~^9.842^5^0.197^~1~^~A~^^^1^8.697^11.058^1^7.498^12.186^~2, 3~^~08/01/2008~ -~19902~^~615~^0.308^5^0.009^~1~^~A~^^^1^0.264^0.351^1^0.194^0.421^~2, 3~^~08/01/2008~ -~19902~^~617~^9.391^5^0.147^~1~^~AS~^^^1^8.513^10.227^1^7.739^11.042^~2, 3~^~08/01/2008~ -~19902~^~618~^0.998^5^0.026^~1~^~AS~^^^1^0.890^1.088^1^0.690^1.306^~2, 3~^~08/01/2008~ -~19902~^~619~^0.085^5^0.002^~1~^~AS~^^^1^0.074^0.100^1^0.057^0.113^~2, 3~^~08/01/2008~ -~19902~^~620~^0.002^5^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.001^0.005^~1, 2, 3~^~08/01/2008~ -~19902~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~624~^0.054^5^0.002^~1~^~A~^^^1^0.045^0.061^1^0.028^0.079^~2, 3~^~08/01/2008~ -~19902~^~625~^0.019^5^0.000^~1~^~A~^^^1^0.001^0.031^2^0.017^0.020^~2, 3~^~08/01/2008~ -~19902~^~626~^0.113^5^0.002^~1~^~AS~^^^1^0.077^0.136^1^0.101^0.125^~2, 3~^~08/01/2008~ -~19902~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.003^0.003^~1, 2, 3~^~08/01/2008~ -~19902~^~628~^0.018^5^0.000^~1~^~A~^^^1^0.016^0.021^2^0.015^0.020^~2, 3~^~08/01/2008~ -~19902~^~629~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^1^-0.004^0.006^~1, 2, 3~^~08/01/2008~ -~19902~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~19902~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~645~^9.540^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~646~^1.092^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~652~^0.033^5^0.000^~1~^~A~^^^1^0.010^0.047^^^^~2, 3~^~08/01/2008~ -~19902~^~653~^0.074^5^0.001^~1~^~A~^^^1^0.068^0.083^1^0.059^0.090^~2, 3~^~08/01/2008~ -~19902~^~654~^0.030^5^0.001^~1~^~A~^^^1^0.024^0.036^2^0.023^0.037^~2, 3~^~08/01/2008~ -~19902~^~662~^0.010^5^0.000^~1~^~A~^^^1^0.000^0.016^1^0.005^0.015^~1, 2, 3~^~08/01/2008~ -~19902~^~663~^0.078^5^0.000^~1~^~A~^^^1^0.009^0.110^1^0.076^0.080^~2, 3~^~08/01/2008~ -~19902~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~665~^0.024^5^0.001^~1~^~A~^^^1^0.002^0.037^2^0.021^0.027^~2, 3~^~08/01/2008~ -~19902~^~670~^0.027^5^0.001^~1~^~A~^^^1^0.000^0.039^2^0.024^0.030^~1, 2, 3~^~08/01/2008~ -~19902~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~672~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.002^0.004^~1, 2, 3~^~08/01/2008~ -~19902~^~673~^0.103^5^0.002^~1~^~A~^^^1^0.077^0.120^1^0.085^0.121^~2, 3~^~08/01/2008~ -~19902~^~674~^9.312^5^0.147^~1~^~A~^^^1^8.416^10.218^1^7.663^10.962^~2, 3~^~08/01/2008~ -~19902~^~675~^0.947^5^0.026^~1~^~A~^^^1^0.816^1.086^1^0.640^1.254^~2, 3~^~08/01/2008~ -~19902~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~689~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.001^1^-0.001^0.002^~2, 3~^~08/01/2008~ -~19902~^~693~^0.088^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19902~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~851~^0.085^5^0.002^~1~^~A~^^^1^0.074^0.100^1^0.057^0.113^~2, 3~^~08/01/2008~ -~19902~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19902~^~853~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.001^0.002^~1, 2, 3~^~08/01/2008~ -~19902~^~858~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^^^^~2, 3~^~08/01/2008~ -~19903~^~312~^1.248^6^0.012^~1~^~A~^^^1^1.130^1.310^3^1.209^1.287^~2, 3~^~08/01/2008~ -~19903~^~315~^1.325^6^0.009^~1~^~A~^^^1^1.080^1.720^3^1.297^1.353^~2, 3~^~08/01/2008~ -~19903~^~404~^0.032^6^0.000^~1~^~A~^^^1^0.030^0.040^^^^~2, 3~^~08/01/2008~ -~19903~^~405~^0.049^6^0.001^~1~^~A~^^^1^0.040^0.080^3^0.046^0.052^~2, 3~^~08/01/2008~ -~19903~^~406~^0.838^6^0.003^~1~^~A~^^^1^0.750^0.930^3^0.829^0.847^~2, 3~^~08/01/2008~ -~19903~^~410~^0.300^3^^~1~^~A~^^^1^0.240^0.440^^^^~2, 3~^~08/01/2008~ -~19903~^~415~^0.034^6^0.001^~1~^~A~^^^1^0.030^0.044^3^0.031^0.036^~2, 3~^~08/01/2008~ -~19903~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~606~^22.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~607~^0.040^6^0.000^~1~^~A~^^^1^0.027^0.048^3^0.038^0.041^~2, 3~^~08/01/2008~ -~19903~^~608~^0.030^6^0.000^~1~^~A~^^^1^0.020^0.037^3^0.029^0.031^~2, 3~^~08/01/2008~ -~19903~^~609~^0.020^6^0.000^~1~^~A~^^^1^0.011^0.027^3^0.019^0.022^~2, 3~^~08/01/2008~ -~19903~^~610~^0.064^6^0.001^~1~^~A~^^^1^0.046^0.076^3^0.062^0.067^~2, 3~^~08/01/2008~ -~19903~^~611~^0.056^6^0.000^~1~^~A~^^^1^0.034^0.076^3^0.055^0.057^~2, 3~^~08/01/2008~ -~19903~^~612~^0.192^6^0.000^~1~^~A~^^^1^0.132^0.245^3^0.192^0.193^~2, 3~^~08/01/2008~ -~19903~^~613~^9.198^6^0.057^~1~^~A~^^^1^8.674^9.476^3^9.017^9.378^~2, 3~^~08/01/2008~ -~19903~^~614~^11.860^6^0.141^~1~^~A~^^^1^11.147^12.739^3^11.412^12.308^~2, 3~^~08/01/2008~ -~19903~^~615~^0.364^6^0.007^~1~^~A~^^^1^0.329^0.400^3^0.343^0.385^~2, 3~^~08/01/2008~ -~19903~^~617~^11.373^6^0.096^~1~^~AS~^^^1^10.740^11.920^3^11.067^11.678^~2, 3~^~08/01/2008~ -~19903~^~618~^1.126^6^0.006^~1~^~AS~^^^1^1.024^1.246^3^1.108^1.145^~2, 3~^~08/01/2008~ -~19903~^~619~^0.088^6^0.000^~1~^~AS~^^^1^0.073^0.106^3^0.087^0.089^~2, 3~^~08/01/2008~ -~19903~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~08/01/2008~ -~19903~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~624~^0.062^6^0.001^~1~^~A~^^^1^0.053^0.068^3^0.058^0.067^~2, 3~^~08/01/2008~ -~19903~^~625~^0.013^6^0.000^~1~^~A~^^^1^0.008^0.018^3^0.013^0.013^~2, 3~^~08/01/2008~ -~19903~^~626~^0.116^6^0.000^~1~^~AS~^^^1^0.105^0.126^3^0.116^0.117^~2, 3~^~08/01/2008~ -~19903~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~628~^0.021^6^0.000^~1~^~A~^^^1^0.018^0.022^3^0.020^0.022^~2, 3~^~08/01/2008~ -~19903~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~08/01/2008~ -~19903~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~19903~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~645~^11.522^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~646~^1.221^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~652~^0.027^6^0.000^~1~^~A~^^^1^0.020^0.033^3^0.027^0.028^~2, 3~^~08/01/2008~ -~19903~^~653~^0.081^6^0.001^~1~^~A~^^^1^0.074^0.083^3^0.078^0.083^~2, 3~^~08/01/2008~ -~19903~^~654~^0.035^6^0.001^~1~^~A~^^^1^0.028^0.038^3^0.032^0.038^~2, 3~^~08/01/2008~ -~19903~^~662~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.008^3^0.006^0.007^~2, 3~^~08/01/2008~ -~19903~^~663~^0.055^6^0.001^~1~^~A~^^^1^0.033^0.067^3^0.052^0.058^~2, 3~^~08/01/2008~ -~19903~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~665~^0.017^6^0.000^~1~^~A~^^^1^0.009^0.024^3^0.017^0.018^~2, 3~^~08/01/2008~ -~19903~^~670~^0.017^6^0.000^~1~^~A~^^^1^0.008^0.024^3^0.017^0.018^~2, 3~^~08/01/2008~ -~19903~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.001^0.001^~1, 2, 3~^~08/01/2008~ -~19903~^~673~^0.110^6^0.000^~1~^~A~^^^1^0.100^0.118^3^0.109^0.111^~2, 3~^~08/01/2008~ -~19903~^~674~^11.318^6^0.095^~1~^~A~^^^1^10.673^11.879^3^11.014^11.621^~2, 3~^~08/01/2008~ -~19903~^~675~^1.091^6^0.006^~1~^~A~^^^1^0.983^1.198^3^1.073^1.110^~2, 3~^~08/01/2008~ -~19903~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^^^^~2, 3~^~08/01/2008~ -~19903~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19903~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~851~^0.088^6^0.000^~1~^~A~^^^1^0.073^0.106^3^0.087^0.089^~2, 3~^~08/01/2008~ -~19903~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19903~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~08/01/2008~ -~19903~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~08/01/2008~ -~19904~^~312~^1.766^2^^~1~^~A~^^^1^1.510^2.150^^^^^~08/01/2008~ -~19904~^~315~^1.948^2^^~1~^~A~^^^1^1.620^2.440^^^^^~08/01/2008~ -~19904~^~404~^0.034^2^^~1~^~A~^^^1^0.030^0.040^^^^^~08/01/2008~ -~19904~^~405~^0.078^2^^~1~^~A~^^^1^0.070^0.090^^^^^~08/01/2008~ -~19904~^~406~^1.054^2^^~1~^~A~^^^1^0.910^1.270^^^^^~08/01/2008~ -~19904~^~410~^0.418^2^^~1~^~A~^^^1^0.350^0.520^^^^^~08/01/2008~ -~19904~^~415~^0.038^2^^~1~^~A~^^^1^0.029^0.044^^^^^~08/01/2008~ -~19904~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~606~^24.489^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~607~^0.014^2^^~1~^~A~^^^1^0.006^0.019^^^^^~08/01/2008~ -~19904~^~608~^0.008^2^^~1~^~A~^^^1^0.001^0.013^^^^^~08/01/2008~ -~19904~^~609~^0.006^2^^~1~^~A~^^^1^0.001^0.009^^^^^~08/01/2008~ -~19904~^~610~^0.045^2^^~1~^~A~^^^1^0.030^0.055^^^^^~08/01/2008~ -~19904~^~611~^0.017^2^^~1~^~A~^^^1^0.005^0.025^^^^^~08/01/2008~ -~19904~^~612~^0.078^2^^~1~^~A~^^^1^0.043^0.101^^^^^~08/01/2008~ -~19904~^~613~^10.076^2^^~1~^~A~^^^1^9.517^10.914^^^^^~08/01/2008~ -~19904~^~614~^13.630^2^^~1~^~A~^^^1^12.596^15.180^^^^^~08/01/2008~ -~19904~^~615~^0.408^2^^~1~^~A~^^^1^0.372^0.462^^^^^~08/01/2008~ -~19904~^~617~^12.651^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19904~^~618~^1.217^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19904~^~619~^0.034^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19904~^~620~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~08/01/2008~ -~19904~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~624~^0.068^2^^~1~^~A~^^^1^0.061^0.078^^^^^~08/01/2008~ -~19904~^~625~^0.004^2^^~1~^~A~^^^1^0.000^0.007^^^^~1~^~08/01/2008~ -~19904~^~626~^0.106^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~ -~19904~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~628~^0.020^2^^~1~^~A~^^^1^0.019^0.021^^^^^~08/01/2008~ -~19904~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19904~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~645~^12.781^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~646~^1.257^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~652~^0.016^2^^~1~^~A~^^^1^0.013^0.018^^^^^~08/01/2008~ -~19904~^~653~^0.086^2^^~1~^~A~^^^1^0.082^0.092^^^^^~08/01/2008~ -~19904~^~654~^0.038^2^^~1~^~A~^^^1^0.034^0.044^^^^^~08/01/2008~ -~19904~^~662~^0.002^2^^~1~^~A~^^^1^0.000^0.003^^^^~1~^~08/01/2008~ -~19904~^~663~^0.023^2^^~1~^~A~^^^1^0.012^0.030^^^^^~08/01/2008~ -~19904~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~665~^0.005^2^^~1~^~A~^^^1^0.002^0.007^^^^^~08/01/2008~ -~19904~^~670~^0.004^2^^~1~^~A~^^^1^0.000^0.007^^^^~1~^~08/01/2008~ -~19904~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~672~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^^~08/01/2008~ -~19904~^~673~^0.104^2^^~1~^~A~^^^1^0.103^0.105^^^^^~08/01/2008~ -~19904~^~674~^12.629^2^^~1~^~A~^^^1^11.816^13.848^^^^^~08/01/2008~ -~19904~^~675~^1.208^2^^~1~^~A~^^^1^1.155^1.288^^^^^~08/01/2008~ -~19904~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~19904~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19904~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~851~^0.034^2^^~1~^~A~^^^1^0.002^0.082^^^^^~08/01/2008~ -~19904~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~19904~^~858~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~08/01/2008~ -~19905~^~312~^1.076^13^0.011^~1~^~A~^^^1^0.908^2.150^2^1.017^1.135^~2, 3~^~08/01/2008~ -~19905~^~315~^1.440^13^0.024^~1~^~A~^^^1^1.080^2.440^2^1.315^1.566^~2, 3~^~08/01/2008~ -~19905~^~404~^0.026^13^0.002^~1~^~A~^^^1^0.015^0.050^1^-0.003^0.054^~1, 2, 3~^~08/01/2008~ -~19905~^~405~^0.051^13^0.000^~1~^~A~^^^1^0.040^0.090^3^0.051^0.051^~2, 3~^~08/01/2008~ -~19905~^~406~^0.747^13^0.007^~1~^~A~^^^1^0.640^1.270^1^0.687^0.807^~2, 3~^~08/01/2008~ -~19905~^~410~^0.304^8^^~1~^~A~^^^1^0.230^0.520^^^^~2, 3~^~08/01/2008~ -~19905~^~415~^0.041^13^0.006^~1~^~A~^^^1^0.027^0.054^1^-0.014^0.096^~2, 3~^~08/01/2008~ -~19905~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~606~^18.993^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~607~^0.054^13^0.002^~1~^~A~^^^1^0.004^0.078^1^0.034^0.074^~2, 3~^~08/01/2008~ -~19905~^~608~^0.042^13^0.001^~1~^~A~^^^1^0.001^0.062^1^0.028^0.056^~2, 3~^~08/01/2008~ -~19905~^~609~^0.027^13^0.001^~1~^~A~^^^1^0.001^0.044^2^0.024^0.030^~2, 3~^~08/01/2008~ -~19905~^~610~^0.082^13^0.001^~1~^~A~^^^1^0.026^0.126^1^0.068^0.096^~2, 3~^~08/01/2008~ -~19905~^~611~^0.074^13^0.000^~1~^~A~^^^1^0.004^0.120^2^0.072^0.076^~2, 3~^~08/01/2008~ -~19905~^~612~^0.247^13^0.000^~1~^~A~^^^1^0.038^0.379^2^0.244^0.249^~2, 3~^~08/01/2008~ -~19905~^~613~^7.825^13^0.084^~1~^~A~^^^1^7.027^10.914^1^6.869^8.782^~2, 3~^~08/01/2008~ -~19905~^~614~^10.132^13^0.177^~1~^~A~^^^1^8.697^15.180^1^8.036^12.228^~2, 3~^~08/01/2008~ -~19905~^~615~^0.315^13^0.008^~1~^~A~^^^1^0.264^0.462^1^0.214^0.417^~2, 3~^~08/01/2008~ -~19905~^~617~^9.653^13^0.132^~1~^~AS~^^^1^8.513^13.860^1^8.174^11.131^~2, 3~^~08/01/2008~ -~19905~^~618~^1.015^13^0.024^~1~^~AS~^^^1^0.890^1.290^1^0.738^1.292^~2, 3~^~08/01/2008~ -~19905~^~619~^0.083^13^0.002^~1~^~AS~^^^1^0.002^0.106^1^0.058^0.107^~2, 3~^~08/01/2008~ -~19905~^~620~^0.002^13^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.001^0.004^~1, 2, 3~^~08/01/2008~ -~19905~^~621~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~624~^0.055^13^0.002^~1~^~A~^^^1^0.045^0.078^1^0.032^0.078^~2, 3~^~08/01/2008~ -~19905~^~625~^0.018^13^0.000^~1~^~A~^^^1^0.000^0.031^2^0.016^0.019^~1, 2, 3~^~08/01/2008~ -~19905~^~626~^0.113^13^0.001^~1~^~AS~^^^1^0.077^0.136^1^0.102^0.124^~2, 3~^~08/01/2008~ -~19905~^~627~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.003^0.003^~1, 2, 3~^~08/01/2008~ -~19905~^~628~^0.018^13^0.000^~1~^~A~^^^1^0.016^0.022^2^0.016^0.020^~2, 3~^~08/01/2008~ -~19905~^~629~^0.001^13^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.004^0.006^~1, 2, 3~^~08/01/2008~ -~19905~^~630~^0.000^13^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~19905~^~631~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~645~^9.801^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~646~^1.107^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~652~^0.032^13^0.000^~1~^~A~^^^1^0.010^0.047^3^0.032^0.032^~2, 3~^~08/01/2008~ -~19905~^~653~^0.075^13^0.001^~1~^~A~^^^1^0.068^0.092^1^0.061^0.089^~2, 3~^~08/01/2008~ -~19905~^~654~^0.031^13^0.001^~1~^~A~^^^1^0.024^0.044^2^0.025^0.037^~2, 3~^~08/01/2008~ -~19905~^~662~^0.010^13^0.000^~1~^~A~^^^1^0.000^0.016^1^0.005^0.014^~1, 2, 3~^~08/01/2008~ -~19905~^~663~^0.074^13^0.000^~1~^~A~^^^1^0.009^0.110^2^0.073^0.075^~2, 3~^~08/01/2008~ -~19905~^~664~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~665~^0.023^13^0.001^~1~^~A~^^^1^0.002^0.037^2^0.020^0.025^~2, 3~^~08/01/2008~ -~19905~^~670~^0.025^13^0.000^~1~^~A~^^^1^0.000^0.039^2^0.022^0.028^~1, 2, 3~^~08/01/2008~ -~19905~^~671~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~672~^0.001^13^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.002^0.004^~1, 2, 3~^~08/01/2008~ -~19905~^~673~^0.103^13^0.001^~1~^~A~^^^1^0.077^0.120^1^0.087^0.119^~2, 3~^~08/01/2008~ -~19905~^~674~^9.579^13^0.132^~1~^~A~^^^1^8.416^13.848^1^8.101^11.056^~2, 3~^~08/01/2008~ -~19905~^~675~^0.967^13^0.024^~1~^~A~^^^1^0.816^1.288^1^0.691^1.243^~2, 3~^~08/01/2008~ -~19905~^~676~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~685~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~687~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~689~^0.000^13^0.000^~1~^~AS~^^^1^0.000^0.001^1^-0.001^0.002^~2, 3~^~08/01/2008~ -~19905~^~693~^0.084^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~ -~19905~^~697~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~851~^0.083^13^0.002^~1~^~A~^^^1^0.002^0.106^1^0.058^0.107^~2, 3~^~08/01/2008~ -~19905~^~852~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~19905~^~853~^0.000^13^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.001^0.002^~1, 2, 3~^~08/01/2008~ -~19905~^~858~^0.003^13^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.003^~2, 3~^~08/01/2008~ -~19906~^~312~^0.083^4^0.005^~1~^~A~^^^1^0.073^0.094^3^0.067^0.100^~2, 3~^~03/01/2009~ -~19906~^~315~^0.066^4^0.003^~1~^~A~^^^1^0.059^0.073^3^0.057^0.076^~2, 3~^~03/01/2009~ -~19906~^~404~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19906~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19906~^~406~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19906~^~410~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19906~^~415~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19907~^~312~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~1, 2, 3~^~03/01/2009~ -~19907~^~315~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~03/01/2009~ -~19908~^~312~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.014^5^0.006^0.011^~1, 2, 3~^~03/01/2009~ -~19908~^~315~^0.046^6^0.017^~1~^~A~^^^1^0.009^0.118^5^0.002^0.089^~2, 3~^~03/01/2009~ -~19909~^~312~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~03/01/2009~ -~19909~^~315~^0.022^3^0.001^~1~^~A~^^^1^0.019^0.024^2^0.015^0.028^~2, 3~^~03/01/2009~ -~19909~^~404~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19909~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19909~^~410~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~19909~^~415~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~19910~^~312~^0.200^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~315~^0.000^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~404~^0.130^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~405~^0.100^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~406~^3.640^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~410~^0.440^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~415~^0.080^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~605~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~606~^12.959^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~607~^0.119^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~608~^0.044^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~609~^0.040^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~610~^0.060^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~611~^0.222^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~612~^0.236^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~613~^6.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~614~^6.155^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~615~^0.040^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~617~^9.323^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~618~^4.593^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~619~^0.049^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~625~^0.013^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~626~^0.053^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~628~^0.113^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~645~^10.820^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~646~^4.680^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~ -~19910~^~652~^0.016^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~653~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19910~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~19911~^~315~^2.300^600^0.050^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~404~^0.066^90^0.060^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~405~^1.270^90^0.450^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19911~^~406~^0.081^90^0.002^~1~^~A~^^^^^^^^^^~02/01/2011~ -~19912~^~312~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~315~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~1, 2, 3~^~05/01/2011~ -~19912~^~404~^0.122^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~405~^0.165^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~406~^0.689^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~415~^0.234^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~ -~19912~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~613~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~614~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~19912~^~617~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~618~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~619~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~620~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~621~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~626~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~627~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~628~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~629~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~630~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~631~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~645~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19912~^~646~^0.000^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~ -~19913~^~312~^0.421^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~315~^1.077^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~404~^0.133^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~405~^0.094^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~406~^2.438^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~410~^0.348^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~415~^0.146^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~501~^0.072^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~502~^0.205^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~503~^0.223^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~504~^0.400^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~505~^0.238^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~506~^0.084^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~507~^0.086^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~508~^0.301^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~509~^0.211^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~510~^0.285^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~511~^0.485^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~512~^0.143^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~513~^0.237^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~514~^0.572^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~515~^1.344^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~516~^0.294^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~517~^0.454^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~518~^0.284^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~ -~19913~^~606~^10.592^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~19913~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~608~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~609~^0.375^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~610~^0.421^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~611~^5.345^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~612~^1.870^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~613~^1.822^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~614~^0.736^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~617~^4.386^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~618~^2.161^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~619~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~628~^0.077^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~645~^4.465^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19913~^~646~^2.170^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~19913~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19913~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19914~^~312~^0.391^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~315~^0.374^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~404~^0.089^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~405~^0.239^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~406~^0.306^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~410~^0.375^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~415~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~606~^19.230^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~607~^0.287^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~608~^0.095^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~609~^0.287^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~610~^0.365^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~611~^2.520^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~612~^1.651^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~613~^6.984^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~614~^6.959^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~615~^0.067^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~617~^5.205^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~618~^0.991^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~619~^0.100^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~626~^0.331^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~645~^5.536^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~646~^1.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~653~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19914~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~19916~^~312~^0.565^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~315~^0.579^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~404~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~405~^0.071^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~406~^0.371^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~410~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~415~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~501~^0.042^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~502~^0.111^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~503~^0.108^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~504~^0.170^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~505~^0.140^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~506~^0.029^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~507~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~508~^0.134^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~509~^0.105^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~510~^0.168^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~511~^0.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~512~^0.048^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~513~^0.129^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~514~^0.279^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~515~^0.421^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~516~^0.126^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~517~^0.120^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~518~^0.121^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~606~^0.746^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~613~^0.346^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~614~^0.398^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~617~^0.428^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~618~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19916~^~645~^0.428^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19916~^~646~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~19917~^~312~^0.271^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~315~^0.297^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~404~^0.082^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~405~^0.203^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~406~^0.433^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~410~^0.314^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~415~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~606~^8.986^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~607~^0.164^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~608~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~609~^0.080^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~610~^0.146^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~611~^0.536^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~612~^0.688^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~613~^3.835^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~614~^3.444^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~615~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~617~^3.102^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~618~^0.910^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~619~^0.104^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~624~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~626~^0.200^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~645~^3.302^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~646~^1.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~653~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19917~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~19918~^~312~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~315~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~404~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~405~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~406~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~410~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~415~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~605~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~606~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~609~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~610~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~611~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~612~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~613~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~614~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~618~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~619~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~620~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~621~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~626~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~628~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~630~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~645~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19918~^~646~^0.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~ -~19919~^~312~^0.015^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~315~^0.014^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~404~^0.025^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~405~^0.008^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~406~^0.008^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~410~^0.006^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~415~^0.001^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~ -~19919~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~613~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~614~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~618~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~619~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~19919~^~645~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19919~^~646~^0.000^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~ -~19920~^~312~^0.031^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~315~^0.158^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~404~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~405~^0.022^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~406~^0.203^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~410~^0.051^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~415~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19920~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~312~^0.048^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~315~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~404~^0.212^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~405~^0.085^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~406~^0.950^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~410~^0.070^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~415~^0.032^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19921~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19921~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19921~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~19922~^~312~^0.360^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~315~^1.238^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~404~^0.069^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~405~^0.021^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~406~^0.445^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~410~^0.247^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~415~^0.045^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~606~^25.540^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~608~^0.164^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~609~^2.018^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~610~^1.603^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~611~^12.778^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~612~^5.045^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~613~^2.442^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~614~^1.491^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~617~^0.328^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~618~^0.084^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19922~^~645~^0.328^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19922~^~646~^0.084^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~19923~^~312~^0.325^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~315~^0.912^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~404~^0.083^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~405~^0.115^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~406~^7.166^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~410~^0.521^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~415~^0.235^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~501~^0.133^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~502~^0.457^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~503~^0.486^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~504~^0.879^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~505~^0.515^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~506~^0.166^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~507~^0.168^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~508~^0.687^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~509~^0.535^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~510~^0.565^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~511~^1.511^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~512~^0.337^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~513~^0.527^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~514~^1.601^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~515~^2.754^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~516~^0.766^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~517~^0.608^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~518~^0.658^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~606~^4.806^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~19923~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~612~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~613~^2.521^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~614~^0.739^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~615~^0.349^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~617~^12.108^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~618~^4.635^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~619~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~620~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~624~^0.738^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~626~^0.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~628~^0.300^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~629~^0.023^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~630~^0.026^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~645~^12.467^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~646~^4.691^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~652~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~653~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~654~^0.418^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~672~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~687~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~689~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19923~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~19924~^~312~^0.308^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~315~^0.308^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~404~^0.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~405~^0.031^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~406~^0.173^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~410~^0.020^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~415~^0.009^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~501~^0.023^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~502~^0.062^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~503~^0.060^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~504~^0.094^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~505~^0.078^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~506~^0.016^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~507~^0.019^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~508~^0.075^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~509~^0.058^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~510~^0.093^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~511~^0.088^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~512~^0.027^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~513~^0.072^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~514~^0.155^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~515~^0.234^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~516~^0.070^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~517~^0.067^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~518~^0.067^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~19924~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~19924~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20001~^~312~^0.525^3^0.065^~1~^~A~^^^1^0.411^0.636^2^0.246^0.804^~4~^~05/01/2008~ -~20001~^~315~^3.333^3^0.281^~1~^~A~^^^1^2.790^3.730^2^2.124^4.543^~4~^~05/01/2008~ -~20001~^~404~^0.116^4^0.094^~1~^~A~^^^2^0.015^0.210^1^-1.078^1.310^~1, 2~^~05/01/2008~ -~20001~^~405~^0.200^4^0.040^~1~^~A~^^^2^0.137^0.240^1^-0.310^0.709^~2~^~05/01/2008~ -~20001~^~406~^0.923^3^0.020^~1~^~A~^^^1^0.883^0.948^2^0.836^1.009^~4~^~05/01/2008~ -~20001~^~410~^1.457^3^0.107^~1~^~A~^^^1^1.250^1.610^2^0.995^1.918^~4~^~05/01/2008~ -~20001~^~415~^0.591^3^0.040^~1~^~A~^^^1^0.519^0.654^2^0.421^0.762^~4~^~05/01/2008~ -~20001~^~501~^0.181^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~502~^0.558^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~503~^0.582^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~504~^0.879^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~505~^0.747^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~506~^0.226^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~507~^0.191^28^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~508~^0.542^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~509~^0.329^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~510~^0.679^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~511~^1.060^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~512~^0.389^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~513~^0.799^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~514~^1.261^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~515~^2.259^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~516~^1.636^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~517~^0.698^28^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~518~^1.148^32^^~1~^^^^^^^^^^^~10/01/1989~ -~20001~^~606~^1.459^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~612~^0.011^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~4~^~05/01/2008~ -~20001~^~613~^1.154^4^0.123^~1~^~A~^^^2^1.016^1.310^1^-0.376^2.751^~2~^~05/01/2008~ -~20001~^~614~^0.223^4^0.009^~1~^~A~^^^2^0.212^0.252^1^0.119^0.340^~2~^~05/01/2008~ -~20001~^~615~^0.052^3^0.003^~1~^~A~^^^1^0.047^0.057^2^0.039^0.067^~4~^~05/01/2008~ -~20001~^~617~^1.671^4^0.024^~1~^~A~^^^2^1.607^1.738^1^1.376^1.981^~2~^~05/01/2008~ -~20001~^~618~^2.736^4^0.120^~1~^~A~^^^2^2.397^2.962^3^2.244^3.009^~4~^~05/01/2008~ -~20001~^~619~^0.042^4^0.006^~6~^~JA~^^^2^0.034^0.051^1^-0.035^0.115^~2~^~05/01/2008~ -~20001~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~624~^0.018^3^0.001^~1~^~A~^^^1^0.018^0.020^2^0.016^0.021^~4~^~05/01/2008~ -~20001~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~4~^~05/01/2008~ -~20001~^~645~^1.685^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~646~^2.778^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~20001~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2008~ -~20001~^~851~^0.042^3^0.002^~1~^~A~^^^1^0.044^0.051^2^0.036^0.056^~4~^~05/01/2008~ -~20002~^~312~^0.149^3^^~1~^~A~^^^1^0.123^0.190^^^^~2~^~04/01/2007~ -~20002~^~315~^0.854^3^^~1~^~A~^^^1^0.694^0.978^^^^~2~^~04/01/2007~ -~20002~^~404~^0.015^3^^~1~^~A~^^^1^0.015^0.015^^^^~1, 2~^~04/01/2007~ -~20002~^~405~^0.022^3^^~1~^~A~^^^1^0.015^0.030^^^^~1, 2~^~04/01/2007~ -~20002~^~406~^0.235^3^^~1~^~A~^^^1^0.231^0.237^^^^~2~^~04/01/2007~ -~20002~^~415~^0.113^3^^~1~^~A~^^^1^0.100^0.130^^^^~2~^~04/01/2007~ -~20003~^~312~^0.040^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~315~^0.470^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~404~^0.001^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~405~^0.000^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~406~^0.000^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~410~^0.130^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~415~^0.005^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~501~^0.004^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~502~^0.012^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~503~^0.010^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~504~^0.019^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~505~^0.013^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~506~^0.006^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~507~^0.006^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~508~^0.012^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~509~^0.009^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~510~^0.014^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~511~^0.012^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~512~^0.004^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~513~^0.014^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~514~^0.047^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~515~^0.050^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~516~^0.014^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~517~^0.009^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~518~^0.013^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~606~^0.019^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~612~^0.001^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~613~^0.017^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~614~^0.001^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~617~^0.002^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~618~^0.036^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~619~^0.009^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~626~^0.000^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~645~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20003~^~646~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~312~^0.498^25^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~315~^1.943^21^0.149^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~404~^0.646^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~405~^0.285^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~406~^4.604^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20004~^~410~^0.282^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20004~^~415~^0.318^3^0.038^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~501~^0.208^28^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~502~^0.424^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~503~^0.456^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~504~^0.848^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~505~^0.465^65^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~506~^0.240^61^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~507~^0.276^38^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~508~^0.700^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~509~^0.358^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~510~^0.612^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~511~^0.625^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~512~^0.281^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~513~^0.486^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~514~^0.779^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~515~^3.261^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~516~^0.452^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~517~^1.484^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~518~^0.527^54^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~606~^0.482^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~611~^0.006^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~612~^0.011^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~613~^0.411^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~614~^0.017^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~617~^0.241^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~618~^0.999^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~619~^0.110^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~626~^0.006^299^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20004~^~645~^0.295^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20004~^~646~^1.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~312~^0.420^22^0.025^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~315~^1.322^20^0.080^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~404~^0.191^15^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~405~^0.114^10^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~406~^4.604^12^0.222^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~410~^0.282^10^0.056^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~415~^0.260^11^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~501~^0.165^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~502~^0.337^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~503~^0.362^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~504~^0.673^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~505~^0.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~506~^0.190^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~507~^0.219^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~508~^0.556^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~509~^0.284^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~510~^0.486^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~511~^0.496^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~512~^0.223^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~513~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~514~^0.619^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~515~^2.588^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~516~^0.359^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~517~^1.178^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~518~^0.418^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~606~^0.244^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~611~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~612~^0.006^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~613~^0.208^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~614~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~617~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~618~^0.505^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~619~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20005~^~645~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20005~^~646~^0.560^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~312~^0.105^5^0.032^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~315~^0.259^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~404~^0.083^4^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~405~^0.062^3^0.002^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~406~^2.063^3^0.630^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~410~^0.135^3^0.063^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~415~^0.115^3^0.032^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~501~^0.038^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~502~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~503~^0.083^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~504~^0.154^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~505~^0.084^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~506~^0.043^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~507~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~508~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~509~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~510~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~511~^0.113^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~512~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~513~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~514~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~515~^0.591^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~516~^0.082^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~517~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~518~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~606~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~611~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~613~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~617~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~618~^0.193^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~619~^0.021^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20006~^~645~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20006~^~646~^0.214^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~312~^1.100^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~315~^1.300^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~404~^0.101^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~405~^0.425^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~406~^7.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~410~^1.233^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20008~^~415~^0.210^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~501~^0.192^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~502~^0.506^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~503~^0.498^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~504~^0.832^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~505~^0.672^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~506~^0.172^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~507~^0.229^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~508~^0.520^16^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~509~^0.241^15^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~510~^0.678^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~511~^0.982^17^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~512~^0.309^16^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~513~^0.748^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~514~^1.133^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~515~^2.046^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~516~^1.031^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~517~^0.507^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~518~^0.685^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~606~^0.741^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~609~^0.035^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~610~^0.018^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~611~^0.010^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~612~^0.025^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~613~^0.450^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~614~^0.047^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~617~^0.988^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~618~^0.961^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~619~^0.078^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~626~^0.023^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~630~^0.012^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20008~^~645~^1.040^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20008~^~646~^1.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~312~^0.624^5^0.074^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~315~^1.618^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~404~^0.224^5^0.110^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~405~^0.271^5^0.076^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~406~^5.135^4^0.911^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~410~^1.233^5^0.145^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~415~^0.353^4^0.105^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~501~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~502~^0.448^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~503~^0.441^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~504~^0.736^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~505~^0.595^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~506~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~507~^0.202^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~508~^0.461^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~509~^0.213^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~510~^0.600^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~511~^0.869^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~512~^0.273^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~513~^0.662^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~514~^1.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~515~^1.811^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~516~^0.912^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~517~^0.449^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~518~^0.606^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~606~^0.591^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~607~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~608~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~609~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~610~^0.014^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~611~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~612~^0.020^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~613~^0.359^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~614~^0.038^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~617~^0.788^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~618~^0.766^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~619~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~620~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~621~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~626~^0.018^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~627~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~628~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~629~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~630~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~631~^0.000^0^^~1~^^^^^^^^^^^~04/01/1994~ -~20009~^~645~^0.828^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20009~^~646~^0.828^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~312~^0.146^5^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~315~^0.403^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~404~^0.040^6^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~405~^0.039^6^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~406~^0.940^4^0.106^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~410~^0.359^5^0.025^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~415~^0.077^4^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~501~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~502~^0.129^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~503~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~504~^0.212^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~505~^0.172^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~506~^0.044^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~507~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~508~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~509~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~510~^0.173^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~511~^0.250^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~512~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~513~^0.191^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~514~^0.289^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~515~^0.522^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~516~^0.263^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~517~^0.129^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~518~^0.175^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~606~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~609~^0.006^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~610~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~611~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~612~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~613~^0.082^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~614~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~617~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~618~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~619~^0.014^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~626~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~630~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20010~^~645~^0.188^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20010~^~646~^0.188^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~312~^0.515^4^0.090^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~315~^2.030^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~404~^0.417^4^0.103^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~405~^0.190^5^0.044^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~406~^6.150^4^0.528^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~410~^0.440^4^0.060^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~415~^0.582^5^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~501~^0.183^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~502~^0.482^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~503~^0.474^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~504~^0.792^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~505~^0.640^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~506~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~507~^0.218^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~508~^0.495^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~509~^0.230^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~510~^0.646^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~511~^0.935^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~512~^0.294^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~513~^0.712^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~514~^1.078^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~515~^1.948^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~516~^0.981^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~517~^0.482^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~518~^0.652^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~606~^0.677^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~609~^0.032^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~610~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~611~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~612~^0.023^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~613~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~614~^0.043^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~617~^0.902^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~618~^0.877^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~619~^0.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~626~^0.021^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~630~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20011~^~645~^0.949^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20011~^~646~^0.949^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~312~^0.335^11^0.028^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~315~^3.048^4^0.222^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~404~^0.232^6^0.018^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~405~^0.115^6^0.043^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~406~^5.114^5^0.384^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~410~^1.045^6^0.250^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~415~^0.342^5^0.025^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~501~^0.190^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~502~^0.354^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~503~^0.455^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~504~^0.830^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~505~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~506~^0.190^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~507~^0.285^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~508~^0.580^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~509~^0.358^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~510~^0.554^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~511~^0.575^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~512~^0.285^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~513~^0.436^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~514~^0.630^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~515~^3.878^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~516~^0.495^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~517~^1.275^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~518~^0.580^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~606~^0.232^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~609~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~613~^0.203^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~614~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~617~^0.166^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~618~^0.518^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~619~^0.023^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~626~^0.007^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20012~^~645~^0.173^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20012~^~646~^0.541^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~312~^0.075^3^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~315~^0.609^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~404~^0.057^5^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~405~^0.028^5^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~406~^1.000^3^0.170^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~410~^0.344^4^0.114^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~415~^0.083^3^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~501~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~502~^0.089^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~503~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~504~^0.208^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~505~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~506~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~507~^0.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~508~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~509~^0.090^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~510~^0.139^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~511~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~512~^0.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~513~^0.109^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~514~^0.158^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~515~^0.973^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~516~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~517~^0.320^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~518~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~606~^0.042^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~609~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~613~^0.037^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~614~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~617~^0.030^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~618~^0.094^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~619~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20013~^~645~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20013~^~646~^0.098^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~312~^0.314^6^0.071^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~315~^0.485^3^0.125^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~404~^0.385^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~405~^0.201^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~406~^3.627^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~410~^0.424^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20014~^~415~^0.622^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~501~^0.067^16^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~502~^0.354^35^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~503~^0.337^35^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~504~^1.155^35^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~505~^0.265^101^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~506~^0.197^34^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~507~^0.170^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~508~^0.463^35^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~509~^0.383^34^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~510~^0.477^34^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~511~^0.470^31^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~512~^0.287^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~513~^0.705^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~514~^0.655^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~515~^1.768^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~516~^0.386^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~517~^0.822^28^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~518~^0.447^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~606~^0.667^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~613~^0.569^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~614~^0.075^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~617~^1.247^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~618~^2.097^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~619~^0.065^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~626~^0.004^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~645~^1.251^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20014~^~646~^2.163^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~312~^0.248^5^0.032^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~315~^0.140^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~404~^0.010^5^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~405~^0.100^6^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~406~^2.735^4^0.351^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~410~^0.636^4^0.279^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~415~^0.152^4^0.014^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~606~^0.130^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~613~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~614~^0.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~617~^0.243^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~618~^0.408^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20015~^~645~^0.243^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20015~^~646~^0.421^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~312~^0.230^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~315~^0.460^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~404~^0.246^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~405~^0.080^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~406~^1.900^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~410~^0.658^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~415~^0.370^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20016~^~501~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~502~^0.261^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~503~^0.248^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~504~^0.850^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~505~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~506~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~507~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~508~^0.340^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~509~^0.282^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~510~^0.351^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~511~^0.345^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~512~^0.211^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~513~^0.518^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~514~^0.482^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~515~^1.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~516~^0.284^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~517~^0.605^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~518~^0.329^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~606~^0.543^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~613~^0.463^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~614~^0.061^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~617~^1.015^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~618~^1.706^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~619~^0.053^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20016~^~645~^1.018^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20016~^~646~^1.759^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~312~^0.209^5^0.048^~1~^~A~^^^4^0.128^0.340^3^0.056^0.362^~1, 2~^~07/01/2014~ -~20017~^~315~^0.376^3^0.049^~1~^~A~^^^2^0.326^0.450^1^-0.252^1.003^~2~^~07/01/2014~ -~20017~^~404~^1.475^20^0.065^~1~^~A~^^^2^1.410^1.540^1^0.649^2.301^~2~^~12/01/2009~ -~20017~^~405~^0.805^20^0.015^~1~^~A~^^^2^0.790^0.820^1^0.614^0.996^~2~^~12/01/2009~ -~20017~^~406~^9.932^20^0.462^~1~^~A~^^^2^9.470^10.394^1^4.062^15.802^~2~^~12/01/2009~ -~20017~^~410~^0.192^3^0.018^~1~^~A~^^^2^0.174^0.212^1^-0.033^0.417^~2~^~12/01/2009~ -~20017~^~415~^0.475^3^0.035^~1~^~A~^^^2^0.426^0.510^1^0.030^0.920^~2~^~12/01/2009~ -~20017~^~501~^0.062^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~502~^0.245^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~503~^0.276^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~504~^1.025^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~505~^0.219^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~506~^0.167^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~508~^0.411^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~509~^0.229^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~510~^0.380^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~511~^0.375^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~513~^0.635^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~514~^0.546^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~515~^1.577^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~516~^0.313^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~517~^0.676^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~518~^0.416^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20017~^~606~^0.532^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~613~^0.453^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~614~^0.060^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~617~^0.994^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~618~^1.672^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~619~^0.052^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20017~^~645~^0.997^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20017~^~646~^1.724^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20018~^~312~^0.142^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~315~^0.056^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~404~^0.074^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~405~^0.058^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~406~^2.656^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~410~^0.052^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~415~^0.097^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20018~^~606~^0.171^0^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~611~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~612~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~613~^0.140^1^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~614~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~617~^0.274^1^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~618~^0.673^1^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~619~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~626~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20018~^~645~^0.274^0^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20018~^~646~^0.695^0^^~1~^~A~^^^^^^^^^^~06/01/1997~ -~20019~^~312~^0.209^5^0.048^~1~^~A~^^^4^0.128^0.340^3^0.056^0.362^~1, 2~^~07/01/2014~ -~20019~^~315~^0.376^3^0.049^~1~^~A~^^^2^0.326^0.450^1^-0.252^1.003^~2~^~07/01/2014~ -~20019~^~404~^0.223^3^0.043^~1~^~A~^^^2^0.180^0.287^1^-0.318^0.763^~2~^~12/01/2009~ -~20019~^~405~^0.097^3^0.013^~1~^~A~^^^2^0.084^0.124^1^-0.065^0.258^~2~^~12/01/2009~ -~20019~^~406~^1.634^3^0.110^~1~^~A~^^^2^1.524^1.760^1^0.231^3.038^~2~^~12/01/2009~ -~20019~^~410~^0.192^3^0.018^~1~^~A~^^^2^0.174^0.212^1^-0.033^0.417^~2~^~12/01/2009~ -~20019~^~415~^0.475^3^0.035^~1~^~A~^^^2^0.426^0.510^1^0.030^0.920^~2~^~12/01/2009~ -~20019~^~501~^0.062^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~502~^0.245^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~503~^0.276^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~504~^1.025^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~505~^0.219^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~506~^0.167^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~508~^0.411^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~509~^0.229^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~510~^0.380^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~511~^0.375^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~513~^0.635^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~514~^0.546^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~515~^1.577^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~516~^0.313^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~517~^0.676^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~518~^0.416^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20019~^~606~^0.532^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~612~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~613~^0.453^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~614~^0.060^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~617~^0.994^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~618~^1.672^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~619~^0.052^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~626~^0.003^197^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~645~^0.997^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20019~^~646~^1.724^0^^~1~^^^^^^^^^^^~01/01/2010~ -~20020~^~312~^0.193^6^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~315~^0.498^3^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~404~^0.385^8^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~405~^0.201^9^0.034^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~406~^3.632^8^0.537^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~410~^0.425^6^0.054^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~415~^0.304^3^0.035^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~501~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~502~^0.305^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~503~^0.291^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~504~^0.996^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~505~^0.228^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~506~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~507~^0.146^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~508~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~509~^0.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~510~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~511~^0.405^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~512~^0.248^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~513~^0.608^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~514~^0.565^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~515~^1.525^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~516~^0.333^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~517~^0.709^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~518~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~606~^0.505^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~613~^0.431^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~614~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~617~^0.945^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~618~^1.589^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~619~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20020~^~645~^0.948^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20020~^~646~^1.638^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20022~^~312~^0.076^7^0.006^~1~^~A~^^^2^0.052^0.099^4^0.058^0.094^~2, 3~^~12/01/2009~ -~20022~^~315~^0.174^7^0.018^~1~^~A~^^^2^0.113^0.264^4^0.123^0.224^~2, 3~^~12/01/2009~ -~20022~^~404~^0.551^14^0.089^~1~^~A~^^^2^0.376^1.124^1^-0.582^1.685^~2~^~12/01/2009~ -~20022~^~405~^0.382^14^0.042^~1~^~A~^^^2^0.250^0.694^1^-0.153^0.918^~2~^~12/01/2009~ -~20022~^~406~^4.968^14^0.468^~1~^~A~^^^2^2.920^7.930^1^-0.977^10.913^~2~^~12/01/2009~ -~20022~^~410~^0.240^5^0.004^~1~^~A~^^^2^0.166^0.330^2^0.221^0.259^~2, 3~^~12/01/2009~ -~20022~^~415~^0.182^7^0.028^~1~^~A~^^^2^0.088^0.324^4^0.103^0.260^~2, 3~^~12/01/2009~ -~20022~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~503~^0.242^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~504~^1.006^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~505~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~508~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~509~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~510~^0.337^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~511~^0.239^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~513~^0.560^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~514~^0.465^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~515~^1.455^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~516~^0.217^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~518~^0.341^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20022~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~20022~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~20022~^~606~^0.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20022~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~20022~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~20022~^~609~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~611~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.004^1^-0.007^0.009^~1, 2, 3~^~12/01/2009~ -~20022~^~612~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^1^-0.003^0.004^~1, 2, 3~^~12/01/2009~ -~20022~^~613~^0.175^5^0.009^~1~^~A~^^^2^0.080^0.177^2^0.097^0.171^~2, 3~^~07/01/2013~ -~20022~^~614~^0.038^5^0.003^~1~^~A~^^^2^0.020^0.043^3^0.019^0.039^~2, 3~^~07/01/2013~ -~20022~^~615~^0.004^5^0.000^~1~^~A~^^^2^0.000^0.007^1^0.002^0.003^~1, 2, 3~^~07/01/2013~ -~20022~^~617~^0.386^5^0.023^~6~^~JA~^^^2^0.160^0.395^2^0.198^0.393^~2, 3~^~07/01/2013~ -~20022~^~618~^0.808^5^0.052^~1~^~A~^^^2^0.330^0.836^2^0.409^0.829^~2, 3~^~07/01/2013~ -~20022~^~619~^0.020^5^0.001^~6~^~JA~^^^2^0.007^0.025^3^0.013^0.017^~1, 2, 3~^~07/01/2013~ -~20022~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~625~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~626~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^1^-0.001^0.006^~1, 2, 3~^~07/01/2013~ -~20022~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~630~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~07/01/2013~ -~20022~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~645~^0.390^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20022~^~646~^0.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20022~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~653~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~07/01/2013~ -~20022~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20022~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~672~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~20022~^~687~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~689~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~20022~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~20022~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20022~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20023~^~312~^0.150^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~315~^0.498^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20023~^~404~^0.661^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20023~^~405~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~406~^5.291^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20023~^~410~^0.425^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20023~^~415~^0.540^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~501~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~502~^0.311^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~503~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~504~^1.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~505~^0.233^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~506~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~507~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~508~^0.407^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~509~^0.337^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~510~^0.419^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~511~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~512~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~513~^0.620^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~514~^0.576^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~515~^1.554^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~516~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~517~^0.723^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~518~^0.393^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~606~^0.478^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~613~^0.408^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~614~^0.054^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~617~^0.894^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~618~^1.503^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~619~^0.047^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~645~^0.897^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20023~^~646~^1.550^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~312~^0.139^10^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~315~^0.516^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20024~^~404~^0.713^6^0.160^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~405~^0.433^6^0.099^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~406~^5.202^8^0.899^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~410~^0.383^10^0.065^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~415~^0.385^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~501~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~502~^0.305^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~503~^0.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~504~^0.973^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~505~^0.230^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~506~^0.173^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~507~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~508~^0.414^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~509~^0.332^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~510~^0.415^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~511~^0.410^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~512~^0.249^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~513~^0.584^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~514~^0.555^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~515~^1.736^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~516~^0.340^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~517~^0.765^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~518~^0.402^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~606~^0.400^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~613~^0.341^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~614~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~617~^0.748^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~618~^1.258^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~619~^0.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~645~^0.751^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20024~^~646~^1.297^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~312~^0.130^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~315~^0.105^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20025~^~404~^0.678^20^0.025^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~405~^0.387^21^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~406~^4.566^21^0.196^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~410~^0.312^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20025~^~415~^0.390^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~606~^0.234^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~611~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~613~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~614~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~617~^0.424^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~618~^0.719^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~619~^0.020^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~626~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~645~^0.429^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20025~^~646~^0.739^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~312~^0.050^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~315~^0.053^3^0.023^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~404~^0.000^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~405~^0.000^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~406~^0.000^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~410~^0.000^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~415~^0.000^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20027~^~501~^0.001^76^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~502~^0.009^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~503~^0.010^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~504~^0.036^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~505~^0.006^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~506~^0.006^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~507~^0.006^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~508~^0.013^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~509~^0.010^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~510~^0.014^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~511~^0.012^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~512~^0.008^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~513~^0.019^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~514~^0.020^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~515~^0.053^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~516~^0.009^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~517~^0.024^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~518~^0.012^11^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~606~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~613~^0.009^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~614~^0.001^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~617~^0.016^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~618~^0.025^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~619~^0.000^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20027~^~645~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20027~^~646~^0.025^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~312~^0.247^6^0.022^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~315~^0.780^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~404~^0.163^5^0.018^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~405~^0.078^5^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~406~^3.490^4^0.083^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~410~^1.243^5^0.275^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~415~^0.110^4^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~501~^0.163^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~502~^0.337^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~503~^0.493^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~504~^0.872^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~505~^0.245^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~506~^0.199^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~507~^0.360^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~508~^0.620^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~509~^0.335^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~510~^0.544^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~511~^0.470^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~512~^0.259^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~513~^0.374^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~514~^0.521^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~515~^4.600^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~516~^0.403^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~517~^1.404^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~518~^0.601^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~606~^0.117^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~613~^0.109^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~614~^0.006^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~617~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~618~^0.240^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~619~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~645~^0.089^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20028~^~646~^0.252^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~312~^0.041^3^0.011^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~315~^0.084^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~404~^0.063^5^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~405~^0.027^5^0.011^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~406~^0.983^3^0.155^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~410~^0.371^4^0.148^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~415~^0.051^3^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~501~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~502~^0.100^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~503~^0.147^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~504~^0.259^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~505~^0.073^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~506~^0.059^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~507~^0.107^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~508~^0.184^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~509~^0.100^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~510~^0.162^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~511~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~512~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~513~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~514~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~515~^1.367^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~516~^0.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~517~^0.417^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~518~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~606~^0.029^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~612~^0.000^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~613~^0.027^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~614~^0.001^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~617~^0.022^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~618~^0.060^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~619~^0.003^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~626~^0.001^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20029~^~645~^0.022^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20029~^~646~^0.064^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~312~^0.030^5^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~315~^0.070^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~404~^0.003^8^0.002^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~405~^0.006^8^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~406~^0.033^6^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~410~^0.154^4^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~415~^0.005^4^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~501~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~502~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~503~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~504~^0.202^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~505~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~506~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~507~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~508~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~509~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~510~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~511~^0.068^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~512~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~513~^0.107^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~514~^0.115^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~515~^0.299^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~516~^0.052^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~517~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~518~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20030~^~606~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~607~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~608~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~609~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~610~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~611~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~612~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~613~^0.105^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~614~^0.014^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~617~^0.230^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~618~^0.387^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~619~^0.012^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~620~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~621~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~626~^0.001^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~627~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~628~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~629~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~630~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~631~^0.000^0^^~4~^^^^^^^^^^^ -~20030~^~645~^0.231^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20030~^~646~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~312~^0.750^19^0.028^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~315~^1.632^19^0.076^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~404~^0.421^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~405~^0.290^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~406~^4.720^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~410~^0.848^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~415~^0.384^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~501~^0.119^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~502~^0.353^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~503~^0.465^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~504~^1.400^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~505~^0.212^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~506~^0.221^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~507~^0.212^3^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~508~^0.580^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~509~^0.340^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~510~^0.578^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~511~^0.382^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~512~^0.236^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~513~^0.986^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~514~^0.726^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~515~^2.396^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~516~^0.287^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~517~^0.877^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~518~^0.644^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~606~^0.723^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~611~^0.003^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~613~^0.528^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~614~^0.154^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~617~^0.739^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~618~^2.015^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~619~^0.118^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~626~^0.014^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~628~^0.020^143^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~645~^0.773^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20031~^~646~^2.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~312~^0.161^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~315~^0.272^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~404~^0.106^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~405~^0.082^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~406~^1.330^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~410~^0.171^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~415~^0.108^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20032~^~501~^0.038^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~502~^0.113^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~503~^0.148^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~504~^0.446^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~505~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~506~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~507~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~508~^0.185^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~509~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~510~^0.184^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~511~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~512~^0.075^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~513~^0.314^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~514~^0.231^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~515~^0.763^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~516~^0.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~517~^0.279^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~518~^0.205^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~606~^0.172^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~611~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~613~^0.126^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~614~^0.037^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~617~^0.176^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~618~^0.480^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~619~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~628~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20032~^~645~^0.184^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20032~^~646~^0.508^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~312~^0.403^7^0.027^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~315~^5.630^4^0.094^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~404~^1.170^5^0.089^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~405~^0.220^7^0.063^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~406~^0.934^7^0.060^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~410~^1.494^6^0.264^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~415~^0.165^6^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~501~^0.335^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~502~^0.502^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~503~^0.668^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~504~^1.374^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~505~^0.760^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~506~^0.335^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~507~^0.576^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~508~^0.908^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~509~^0.668^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~510~^0.964^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~511~^1.279^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~512~^0.410^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~513~^0.872^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~514~^1.576^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~515~^3.748^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~516~^0.947^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~517~^0.982^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~518~^0.890^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~606~^1.328^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~611~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~612~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~613~^1.128^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~614~^0.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~617~^2.362^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~618~^2.645^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~619~^0.121^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~626~^0.014^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20033~^~645~^2.376^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20033~^~646~^2.766^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~312~^0.066^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~315~^0.964^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~404~^0.160^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~405~^0.034^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~406~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~410~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~415~^0.025^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~501~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~502~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~503~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~504~^0.235^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~505~^0.130^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~506~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~507~^0.099^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~508~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~509~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~510~^0.165^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~511~^0.219^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~512~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~513~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~514~^0.270^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~515~^0.642^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~516~^0.162^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~517~^0.168^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~518~^0.152^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~606~^0.163^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~611~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~613~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~614~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~617~^0.290^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~618~^0.324^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~619~^0.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~645~^0.291^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20034~^~646~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20035~^~312~^0.590^3^0.059^~1~^~A~^^^1^0.500^0.700^2^0.338^0.842^~2, 3~^~04/01/2007~ -~20035~^~315~^2.033^3^0.684^~1~^~A~^^^1^1.300^3.400^2^-0.910^4.976^~2, 3~^~04/01/2007~ -~20035~^~404~^0.360^3^0.015^~1~^~A~^^^1^0.340^0.390^2^0.294^0.426^~2, 3~^~04/01/2007~ -~20035~^~405~^0.318^3^0.011^~1~^~A~^^^1^0.306^0.341^2^0.269^0.367^~2, 3~^~04/01/2007~ -~20035~^~406~^1.520^3^0.103^~1~^~A~^^^1^1.320^1.660^2^1.078^1.961^~2, 3~^~04/01/2007~ -~20035~^~410~^0.772^3^0.037^~1~^~A~^^^1^0.730^0.846^2^0.611^0.932^~2, 3~^~04/01/2007~ -~20035~^~415~^0.487^3^0.042^~1~^~A~^^^1^0.406^0.547^2^0.306^0.668^~2, 3~^~04/01/2007~ -~20035~^~501~^0.167^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~502~^0.421^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~503~^0.504^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~504~^0.840^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~505~^0.766^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~506~^0.309^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~507~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~508~^0.593^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~509~^0.267^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~510~^0.594^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~511~^1.091^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~512~^0.407^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~513~^0.588^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~514~^1.134^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~515~^1.865^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~516~^0.694^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~517~^0.773^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~518~^0.567^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20035~^~606~^0.706^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20035~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~613~^0.600^3^0.026^~1~^~A~^^^1^0.560^0.650^2^0.486^0.714^~2, 3~^~04/01/2007~ -~20035~^~614~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~2, 3~^~04/01/2007~ -~20035~^~615~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2007~ -~20035~^~617~^1.420^3^0.038^~1~^~A~^^^1^1.350^1.480^2^1.257^1.583^~2, 3~^~04/01/2007~ -~20035~^~618~^2.977^3^0.226^~1~^~A~^^^1^2.530^3.260^2^2.004^3.949^~2, 3~^~04/01/2007~ -~20035~^~619~^0.260^3^0.010^~1~^~A~^^^1^0.250^0.280^2^0.217^0.303^~2, 3~^~04/01/2007~ -~20035~^~620~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.013^~1, 2, 3~^~04/01/2007~ -~20035~^~621~^0.047^3^0.009^~1~^~A~^^^1^0.030^0.060^2^0.009^0.085^~2, 3~^~04/01/2007~ -~20035~^~624~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2007~ -~20035~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~628~^0.093^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.079^0.108^~2, 3~^~04/01/2007~ -~20035~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~630~^0.083^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.069^0.098^~2, 3~^~04/01/2007~ -~20035~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~645~^1.613^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20035~^~646~^3.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20035~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~654~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~04/01/2007~ -~20035~^~671~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~04/01/2007~ -~20035~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20035~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20036~^~312~^0.302^6^0.025^~1~^~A~^^^1^0.214^0.366^4^0.232^0.372^~2, 3~^~04/01/2015~ -~20036~^~315~^2.853^6^0.063^~1~^~A~^^^1^2.600^3.170^4^2.679^3.028^~2, 3~^~04/01/2015~ -~20036~^~404~^0.541^3^0.054^~1~^~A~^^^1^0.470^0.620^1^-0.151^1.234^~2, 3~^~04/01/2015~ -~20036~^~405~^0.095^3^0.001^~1~^~A~^^^1^0.091^0.097^1^0.084^0.106^~2, 3~^~04/01/2015~ -~20036~^~406~^6.494^3^0.658^~1~^~A~^^^1^5.710^7.430^1^-1.867^14.854^~2, 3~^~04/01/2015~ -~20036~^~410~^1.065^2^^~1~^~A~^^^1^1.030^1.100^1^^^^~04/01/2015~ -~20036~^~415~^0.477^3^0.050^~1~^~A~^^^1^0.420^0.540^1^-0.163^1.116^~2, 3~^~04/01/2015~ -~20036~^~501~^0.101^25^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~502~^0.291^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~503~^0.336^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~504~^0.657^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~505~^0.303^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~506~^0.179^44^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~507~^0.096^37^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~508~^0.410^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~509~^0.298^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~510~^0.466^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~511~^0.602^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~512~^0.202^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~513~^0.463^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~514~^0.743^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~515~^1.618^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~516~^0.391^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~517~^0.372^37^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~518~^0.411^40^^~1~^^^^^^^^^^^~10/01/1989~ -~20036~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~606~^0.591^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~609~^0.002^2^^~1~^~A~^^^1^0.001^0.002^^^^~1~^~04/01/2015~ -~20036~^~610~^0.017^2^^~1~^~A~^^^1^0.015^0.018^^^^^~04/01/2015~ -~20036~^~611~^0.005^2^^~1~^~A~^^^1^0.004^0.005^^^^^~04/01/2015~ -~20036~^~612~^0.017^2^^~1~^~A~^^^1^0.014^0.017^^^^^~04/01/2015~ -~20036~^~613~^0.460^2^^~1~^~A~^^^1^0.437^0.465^^^^^~04/01/2015~ -~20036~^~614~^0.056^2^^~1~^~A~^^^1^0.049^0.058^^^^^~04/01/2015~ -~20036~^~615~^0.015^2^^~1~^~A~^^^1^0.013^0.015^^^^^~04/01/2015~ -~20036~^~617~^1.039^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~618~^0.968^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~619~^0.032^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~628~^0.011^2^^~1~^~A~^^^1^0.010^0.011^^^^^~04/01/2015~ -~20036~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~20036~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20036~^~645~^1.054^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~646~^1.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2015~ -~20036~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~654~^0.017^2^^~1~^~A~^^^1^0.015^0.017^^^^^~04/01/2015~ -~20036~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~665~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2015~ -~20036~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~673~^0.004^2^^~1~^~A~^^^1^0.003^0.004^^^^^~04/01/2015~ -~20036~^~674~^1.039^2^^~1~^~A~^^^1^0.906^1.065^^^^^~04/01/2015~ -~20036~^~675~^0.967^2^^~1~^~A~^^^1^0.872^0.985^^^^^~04/01/2015~ -~20036~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20036~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20036~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~851~^0.032^2^^~1~^~A~^^^1^0.028^0.033^^^^^~04/01/2015~ -~20036~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20036~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~312~^0.106^6^0.011^~1~^~A~^^^1^0.075^0.138^4^0.076^0.136^~2, 3~^~04/01/2015~ -~20037~^~315~^0.974^6^0.067^~1~^~A~^^^1^0.700^1.110^4^0.789^1.159^~2, 3~^~04/01/2015~ -~20037~^~404~^0.178^3^0.017^~1~^~A~^^^1^0.160^0.200^1^-0.035^0.392^~2, 3~^~04/01/2015~ -~20037~^~405~^0.069^3^0.001^~1~^~A~^^^1^0.067^0.071^1^0.053^0.085^~2, 3~^~04/01/2015~ -~20037~^~406~^2.561^3^0.147^~1~^~A~^^^1^2.280^2.790^1^0.697^4.424^~2, 3~^~04/01/2015~ -~20037~^~410~^0.380^2^^~1~^~A~^^^1^0.370^0.390^1^^^^~04/01/2015~ -~20037~^~415~^0.123^3^0.000^~1~^~A~^^^1^0.120^0.140^^^^~2, 3~^~04/01/2015~ -~20037~^~501~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~502~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~503~^0.109^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~504~^0.214^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~505~^0.099^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~506~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~507~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~508~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~509~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~510~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~511~^0.196^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~512~^0.066^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~513~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~514~^0.242^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~515~^0.526^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~516~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~517~^0.121^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~518~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20037~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~606~^0.260^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~609~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2015~ -~20037~^~610~^0.015^2^^~1~^~A~^^^1^0.015^0.017^^^^^~04/01/2015~ -~20037~^~611~^0.002^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~04/01/2015~ -~20037~^~612~^0.009^2^^~1~^~A~^^^1^0.007^0.010^^^^^~04/01/2015~ -~20037~^~613~^0.198^2^^~1~^~A~^^^1^0.196^0.210^^^^^~04/01/2015~ -~20037~^~614~^0.022^2^^~1~^~A~^^^1^0.022^0.024^^^^^~04/01/2015~ -~20037~^~615~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~04/01/2015~ -~20037~^~617~^0.365^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~618~^0.355^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~628~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2015~ -~20037~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/1995~ -~20037~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/1995~ -~20037~^~645~^0.369^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~646~^0.366^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2015~ -~20037~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~654~^0.005^2^^~1~^~A~^^^1^0.004^0.005^^^^^~04/01/2015~ -~20037~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~673~^0.001^2^^~1~^~A~^^^1^0.001^0.002^^^^~1~^~04/01/2015~ -~20037~^~674~^0.365^2^^~1~^~A~^^^1^0.353^0.367^^^^^~04/01/2015~ -~20037~^~675~^0.355^2^^~1~^~A~^^^1^0.354^0.360^^^^^~04/01/2015~ -~20037~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~ -~20037~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~20037~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~851~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~04/01/2015~ -~20037~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20037~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2015~ -~20038~^~312~^0.626^32^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~315~^4.916^18^0.420^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~404~^0.763^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~405~^0.139^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~406~^0.961^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~410~^1.349^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~415~^0.119^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20038~^~501~^0.234^21^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~502~^0.575^59^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~503~^0.694^59^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~504~^1.284^59^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~505~^0.701^59^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~506~^0.312^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~507~^0.408^48^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~508~^0.895^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~509~^0.573^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~510~^0.937^59^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~511~^1.192^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~512~^0.405^57^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~513~^0.881^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~514~^1.448^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~515~^3.712^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~516~^0.841^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~517~^0.934^41^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~518~^0.750^43^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~606~^1.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~611~^0.024^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~612~^0.015^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~613~^1.034^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~614~^0.065^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~617~^2.165^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~618~^2.424^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~619~^0.111^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~626~^0.013^238^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~645~^2.178^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20038~^~646~^2.535^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~312~^0.277^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~315~^3.743^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~404~^0.413^5^0.042^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~405~^0.043^5^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~406~^4.308^5^0.207^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~410~^1.493^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~415~^0.509^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20040~^~501~^0.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~502~^0.275^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~503~^0.318^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~504~^0.620^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~505~^0.286^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~506~^0.169^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~507~^0.091^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~508~^0.387^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~509~^0.281^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~510~^0.440^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~511~^0.569^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~512~^0.190^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~513~^0.437^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~514~^0.702^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~515~^1.528^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~516~^0.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~517~^0.352^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~518~^0.388^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~606~^0.536^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~611~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~612~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~613~^0.457^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~614~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~617~^0.961^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~618~^0.918^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~619~^0.041^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~626~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~645~^0.971^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20040~^~646~^0.959^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~312~^0.081^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~315~^1.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~404~^0.102^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~405~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~406~^1.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~410~^0.392^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~415~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~501~^0.030^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~502~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~503~^0.098^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~504~^0.191^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~505~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~506~^0.052^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~507~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~508~^0.119^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~509~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~510~^0.136^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~511~^0.175^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~512~^0.059^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~513~^0.135^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~514~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~515~^0.472^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~516~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~517~^0.109^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~518~^0.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~606~^0.165^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~611~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~613~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~614~^0.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~617~^0.297^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~618~^0.283^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~645~^0.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20041~^~646~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20042~^~312~^0.327^6^0.009^~1~^~A~^^^1^0.302^0.364^5^0.303^0.350^~2, 3~^~03/01/2015~ -~20042~^~315~^2.975^6^0.118^~1~^~A~^^^1^2.620^3.400^5^2.673^3.277^~2, 3~^~03/01/2015~ -~20042~^~404~^0.277^3^0.009^~1~^~A~^^^1^0.260^0.290^2^0.239^0.315^~2, 3~^~03/01/2015~ -~20042~^~405~^0.092^3^0.004^~1~^~A~^^^1^0.083^0.097^2^0.073^0.110^~2, 3~^~03/01/2015~ -~20042~^~406~^4.973^3^0.324^~1~^~A~^^^1^4.550^5.610^2^3.579^6.368^~2, 3~^~03/01/2015~ -~20042~^~410~^0.895^2^^~1~^~A~^^^1^0.860^0.930^1^^^^~03/01/2015~ -~20042~^~415~^0.407^3^0.012^~1~^~A~^^^1^0.390^0.430^2^0.355^0.458^~2, 3~^~03/01/2015~ -~20042~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~606~^0.481^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~609~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2015~ -~20042~^~610~^0.015^2^^~1~^~A~^^^1^0.015^0.016^1^^^^~03/01/2015~ -~20042~^~611~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~03/01/2015~ -~20042~^~612~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~03/01/2015~ -~20042~^~613~^0.376^2^^~1~^~A~^^^1^0.362^0.390^1^^^^~03/01/2015~ -~20042~^~614~^0.046^2^^~1~^~A~^^^1^0.043^0.048^1^^^^~03/01/2015~ -~20042~^~615~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~03/01/2015~ -~20042~^~617~^1.010^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~618~^0.811^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~626~^0.004^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~628~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~03/01/2015~ -~20042~^~629~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~03/01/2015~ -~20042~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~645~^1.024^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~646~^0.841^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2015~ -~20042~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~654~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~03/01/2015~ -~20042~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~665~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~03/01/2015~ -~20042~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~673~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2015~ -~20042~^~674~^1.010^2^^~1~^~A~^^^1^0.975^1.045^1^^^^~03/01/2015~ -~20042~^~675~^0.810^2^^~1~^~A~^^^1^0.777^0.842^1^^^^~03/01/2015~ -~20042~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20042~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20042~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~851~^0.026^2^^~1~^~A~^^^1^0.024^0.028^1^^^^~03/01/2015~ -~20042~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~03/01/2015~ -~20042~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20042~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20044~^~312~^0.220^13^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~315~^1.088^6^0.049^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~404~^0.576^5^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~405~^0.049^19^0.011^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~406~^4.192^12^0.323^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~410~^1.014^6^0.194^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~415~^0.164^7^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~501~^0.083^95^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~502~^0.255^127^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~503~^0.308^109^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~504~^0.589^125^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~505~^0.258^141^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~506~^0.168^121^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~507~^0.146^53^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~508~^0.381^104^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~509~^0.238^173^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~510~^0.435^109^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~511~^0.594^96^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~512~^0.168^96^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~513~^0.413^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~514~^0.670^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~515~^1.389^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~516~^0.325^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~517~^0.335^98^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~518~^0.375^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~606~^0.180^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~612~^0.004^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~613~^0.161^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~614~^0.012^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~617~^0.203^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~618~^0.146^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~619~^0.031^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~626~^0.002^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20044~^~645~^0.206^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20044~^~646~^0.177^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~312~^0.069^42^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~315~^0.472^35^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~404~^0.163^17^0.014^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~405~^0.013^9^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~406~^1.476^17^0.075^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~410~^0.390^13^0.033^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~415~^0.093^12^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~501~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~502~^0.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~503~^0.116^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~504~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~505~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~506~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~507~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~508~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~509~^0.090^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~510~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~511~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~512~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~513~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~514~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~515~^0.524^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~516~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~517~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~518~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~606~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~613~^0.069^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~614~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~617~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~618~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20045~^~645~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20045~^~646~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20046~^~312~^0.284^2^^~1~^~A~^^^2^0.267^0.300^^^^^~12/01/2009~ -~20046~^~315~^1.035^2^^~1~^~A~^^^2^0.960^1.110^^^^^~12/01/2009~ -~20046~^~404~^0.603^2^^~1~^~A~^^^2^0.509^0.697^^^^^~12/01/2009~ -~20046~^~405~^0.050^2^^~1~^~A~^^^2^0.045^0.055^^^^^~12/01/2009~ -~20046~^~406~^5.048^6^0.415^~6~^~JA~^^^4^3.780^5.800^3^3.728^6.367^~2~^~12/01/2009~ -~20046~^~410~^0.672^1^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~415~^0.452^2^^~1~^~A~^^^2^0.449^0.455^^^^^~12/01/2009~ -~20046~^~501~^0.103^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~502~^0.271^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~503~^0.339^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~504~^0.656^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~505~^0.215^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~506~^0.183^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~508~^0.398^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~509~^0.216^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~510~^0.470^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~511~^0.651^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~512~^0.185^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~513~^0.433^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~514~^0.795^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~515~^1.395^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~516~^0.358^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~517~^0.484^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~518~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20046~^~606~^0.294^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20046~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~613~^0.277^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20046~^~614~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~617~^0.258^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20046~^~618~^0.305^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20046~^~619~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~645~^0.258^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20046~^~646~^0.322^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20046~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20046~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~312~^0.070^3^0.010^~1~^~A~^^^1^0.054^0.089^2^0.027^0.114^~2, 3~^~02/01/2005~ -~20047~^~315~^0.354^3^0.030^~1~^~A~^^^1^0.296^0.394^2^0.226^0.483^~2, 3~^~02/01/2005~ -~20047~^~404~^0.212^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20047~^~405~^0.019^2^^~1~^~A~^^^1^0.019^0.019^1^^^^~02/01/2005~ -~20047~^~406~^2.309^2^^~1~^~A~^^^1^1.250^3.368^1^^^^~02/01/2005~ -~20047~^~410~^0.323^2^^~1~^~A~^^^1^0.296^0.349^1^^^^~02/01/2005~ -~20047~^~415~^0.156^2^^~1~^~A~^^^1^0.125^0.187^1^^^^~02/01/2005~ -~20047~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~502~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~503~^0.131^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~504~^0.254^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~505~^0.083^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~506~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~507~^0.059^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~508~^0.154^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~509~^0.084^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~510~^0.182^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~511~^0.252^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~512~^0.072^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~513~^0.168^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~514~^0.308^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~515~^0.541^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~516~^0.139^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~517~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~518~^0.142^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20047~^~606~^0.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20047~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~613~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~617~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~618~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~619~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20047~^~645~^0.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20047~^~646~^0.091^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20047~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20047~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~20048~^~312~^0.177^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~315~^0.985^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~404~^0.926^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~405~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~406~^7.005^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~410~^0.432^6^0.074^~1~^^^^^^^^^^^~10/01/1989~ -~20048~^~415~^0.122^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~502~^0.289^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~503~^0.359^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~504~^0.691^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~505~^0.221^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~508~^0.413^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~509~^0.232^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~510~^0.497^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~511~^0.688^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~512~^0.189^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~513~^0.456^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~514~^0.841^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~515~^1.466^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~516~^0.376^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~517~^0.503^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~518~^0.380^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~606~^0.152^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20048~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~613~^0.152^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~617~^0.144^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~618~^0.202^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20048~^~619~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~645~^0.144^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20048~^~646~^0.219^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20048~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20048~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20049~^~312~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~02/01/2005~ -~20049~^~315~^0.343^3^0.008^~1~^~A~^^^1^0.330^0.359^2^0.307^0.380^~2, 3~^~02/01/2005~ -~20049~^~404~^0.075^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20049~^~405~^0.008^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~20049~^~406~^1.737^2^^~1~^~A~^^^1^1.064^2.410^1^^^^~02/01/2005~ -~20049~^~410~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~415~^0.050^2^^~1~^~A~^^^1^0.037^0.062^1^^^^~02/01/2005~ -~20049~^~501~^0.030^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~502~^0.080^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~503~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~504~^0.192^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~505~^0.061^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~506~^0.052^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~507~^0.045^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~508~^0.115^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~509~^0.065^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~510~^0.138^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~511~^0.191^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~512~^0.053^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~513~^0.127^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~514~^0.234^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~515~^0.408^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~516~^0.104^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~517~^0.140^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~518~^0.106^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~20049~^~606~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20049~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20049~^~613~^0.017^2^^~1~^~A~^^^1^0.017^0.017^^^^~1~^~02/01/2005~ -~20049~^~614~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20049~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~617~^0.074^2^^~1~^~A~^^^1^0.074^0.074^^^^~1~^~02/01/2005~ -~20049~^~618~^0.017^2^^~1~^~A~^^^1^0.017^0.017^^^^~1~^~02/01/2005~ -~20049~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20049~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20049~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~645~^0.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20049~^~646~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~20049~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20049~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~20050~^~312~^0.110^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~315~^1.100^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~404~^0.578^3^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~405~^0.048^5^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~406~^5.093^3^1.111^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~410~^1.342^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~415~^0.145^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~501~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~502~^0.236^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~503~^0.285^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~504~^0.546^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~505~^0.239^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~506~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~507~^0.135^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~508~^0.353^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~509~^0.221^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~510~^0.403^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~511~^0.551^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~512~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~513~^0.383^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~514~^0.621^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~515~^1.288^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~516~^0.301^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~517~^0.311^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~518~^0.347^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~606~^0.158^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~613~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~614~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~617~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~618~^0.128^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~619~^0.027^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~645~^0.181^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20050~^~646~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~312~^0.038^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~315~^0.377^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~404~^0.167^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~405~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~406~^1.835^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~410~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~415~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~501~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~502~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~503~^0.103^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~504~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~505~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~506~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~507~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~508~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~509~^0.080^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~510~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~511~^0.198^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~512~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~513~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~514~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~515~^0.464^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~516~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~517~^0.112^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~518~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~606~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~613~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~614~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~617~^0.064^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~618~^0.046^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~619~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~645~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20051~^~646~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~312~^0.210^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~315~^1.037^3^0.085^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~404~^0.565^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20052~^~405~^0.048^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20052~^~406~^4.113^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20052~^~410~^1.287^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~415~^0.171^3^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~501~^0.075^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~502~^0.233^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~503~^0.281^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~504~^0.538^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~505~^0.235^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~506~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~507~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~508~^0.348^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~509~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~510~^0.397^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~511~^0.542^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~512~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~513~^0.377^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~514~^0.611^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~515~^1.268^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~516~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~517~^0.306^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~518~^0.342^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~606~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~612~^0.003^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~613~^0.125^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~614~^0.010^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~617~^0.159^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~618~^0.114^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~619~^0.024^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~626~^0.002^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~645~^0.161^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20052~^~646~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~312~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~315~^0.357^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~404~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~405~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~406~^1.493^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~410~^0.397^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~415~^0.059^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~501~^0.027^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~502~^0.084^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~503~^0.102^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~504~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~505~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~506~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~507~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~508~^0.126^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~509~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~510~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~511~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~512~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~513~^0.137^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~514~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~515~^0.460^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~516~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~517~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~518~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~606~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~613~^0.046^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~617~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~618~^0.041^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~619~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~645~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20053~^~646~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~312~^0.171^3^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~315~^0.974^3^0.026^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~404~^0.180^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~405~^0.055^3^0.055^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~406~^2.145^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~410~^0.824^4^0.179^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~415~^0.107^3^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~501~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~502~^0.244^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~503~^0.294^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~504~^0.563^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~505~^0.246^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~506~^0.160^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~507~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~508~^0.364^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~509~^0.228^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~510~^0.416^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~511~^0.568^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~512~^0.160^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~513~^0.395^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~514~^0.640^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~515~^1.328^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~516~^0.310^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~517~^0.321^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~518~^0.358^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~606~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~611~^0.001^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~612~^0.002^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~613~^0.094^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~614~^0.010^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~617~^0.198^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~618~^0.189^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~619~^0.008^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~626~^0.002^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~645~^0.200^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20054~^~646~^0.198^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~312~^0.049^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~315~^0.262^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~405~^0.013^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20055~^~406~^0.290^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~410~^0.215^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~415~^0.026^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~501~^0.023^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~502~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~503~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~504~^0.167^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~505~^0.073^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~506~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~507~^0.041^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~508~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~509~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~510~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~511~^0.168^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~512~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~513~^0.117^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~514~^0.190^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~515~^0.393^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~516~^0.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~517~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~518~^0.106^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~606~^0.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~613~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~617~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~618~^0.066^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~619~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20055~^~645~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20055~^~646~^0.069^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20058~^~312~^0.048^4^0.005^~1~^~A~^^^1^0.039^0.061^3^0.033^0.064^~4~^~05/01/2008~ -~20058~^~315~^0.448^4^0.029^~1~^~A~^^^1^0.377^0.498^3^0.355^0.540^~4~^~05/01/2008~ -~20058~^~404~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 4~^~05/01/2008~ -~20058~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^3^0.015^0.015^~1, 4~^~05/01/2008~ -~20058~^~406~^0.566^4^0.155^~1~^~A~^^^1^0.254^0.995^3^0.073^1.060^~4~^~05/01/2008~ -~20058~^~415~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~4~^~05/01/2008~ -~20060~^~312~^0.728^5^0.095^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~315~^14.210^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~404~^2.753^6^0.511^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~405~^0.284^4^0.073^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~406~^33.995^4^9.119^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~410~^7.390^4^2.219^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~415~^4.070^4^0.277^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~501~^0.108^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~502~^0.555^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~503~^0.568^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~504~^1.022^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~505~^0.650^28^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~506~^0.306^25^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~507~^0.317^20^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~508~^0.635^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~509~^0.411^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~510~^0.881^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~511~^1.058^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~512~^0.355^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~513~^0.970^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~514~^1.308^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~515~^1.854^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~516~^0.875^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~517~^0.668^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~518~^0.662^24^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~606~^4.171^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~611~^0.019^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~612~^0.078^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~613~^3.557^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~614~^0.373^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~617~^7.475^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~618~^7.143^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~619~^0.316^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~626~^0.075^73^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20060~^~645~^7.549^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20060~^~646~^7.459^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~312~^0.130^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~315~^1.200^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~404~^0.138^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~405~^0.021^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~406~^2.590^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~410~^0.819^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~415~^0.436^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~501~^0.072^20^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~502~^0.210^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~503~^0.244^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~504~^0.488^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~505~^0.207^31^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~506~^0.144^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~507~^0.107^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~508~^0.317^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~509~^0.314^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~510~^0.348^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~511~^0.516^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~512~^0.149^30^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~513~^0.332^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~514~^0.549^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~515~^1.097^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~516~^0.267^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~517~^0.278^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~518~^0.310^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~606~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~612~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~613~^0.345^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~614~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~617~^0.436^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~618~^0.313^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~619~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~626~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20061~^~645~^0.442^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20061~^~646~^0.379^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20062~^~312~^0.367^10^0.007^~1~^~A~^^^1^0.350^0.410^9^0.351^0.382^~4~^~06/01/2009~ -~20062~^~315~^2.577^10^0.309^~1~^~A~^^^1^1.420^4.230^9^1.877^3.276^~4~^~06/01/2009~ -~20062~^~404~^0.316^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20062~^~405~^0.251^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20062~^~406~^4.270^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20062~^~410~^1.456^0^^~4~^^^^^^^^^^^~07/01/2009~ -~20062~^~415~^0.294^1^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~501~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~20062~^~502~^0.289^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~503~^0.208^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~504~^0.563^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~505~^0.286^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~506~^0.153^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~508~^0.435^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~509~^0.200^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~510~^0.317^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~511~^0.454^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~512~^0.189^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~513~^0.405^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~514~^0.560^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~515~^2.294^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~516~^0.416^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~517~^0.804^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~518~^0.458^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20062~^~605~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^9^0.000^0.000^~1, 4~^~07/01/2009~ -~20062~^~606~^0.197^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~612~^0.002^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~613~^0.186^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~614~^0.006^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~617~^0.193^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~618~^0.659^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~619~^0.108^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~626~^0.007^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~628~^0.009^21^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~645~^0.208^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20062~^~646~^0.767^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~312~^0.560^12^0.020^~1~^~A~^^^1^0.460^0.660^11^0.515^0.605^~4~^~06/01/2009~ -~20063~^~315~^6.062^12^0.313^~1~^~A~^^^1^4.330^7.680^11^5.373^6.750^~4~^~06/01/2009~ -~20063~^~404~^0.316^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~405~^0.251^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~406~^4.270^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~410~^1.456^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~415~^0.443^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~501~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~20063~^~502~^0.490^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~503~^0.353^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~504~^0.857^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~505~^0.338^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~506~^0.199^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~508~^0.646^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~509~^0.271^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~510~^0.498^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~511~^0.764^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~512~^0.233^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~513~^0.647^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~514~^0.827^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~515~^3.139^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~516~^0.680^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~517~^1.014^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20063~^~605~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~07/01/2009~ -~20063~^~606~^0.269^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~612~^0.003^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~613~^0.255^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~614~^0.009^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~617~^0.262^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~618~^0.899^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~619~^0.147^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~626~^0.010^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~628~^0.012^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~645~^0.284^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20063~^~646~^1.046^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~312~^0.331^11^0.012^~1~^~A~^^^1^0.260^0.430^10^0.303^0.359^~4~^~06/01/2009~ -~20064~^~315~^2.412^11^0.131^~1~^~A~^^^1^1.840^3.270^10^2.120^2.704^~4~^~06/01/2009~ -~20064~^~404~^0.287^6^0.015^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~405~^0.114^6^0.009^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~406~^1.727^6^0.311^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~410~^0.492^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~415~^0.268^3^0.025^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~501~^0.123^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~20064~^~502~^0.341^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~503~^0.253^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~504~^0.611^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~505~^0.212^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~506~^0.136^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~508~^0.488^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~509~^0.183^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~510~^0.348^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~511~^0.470^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~512~^0.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~513~^0.410^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~514~^0.542^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~515~^2.527^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~516~^0.426^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~517~^0.851^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~518~^0.484^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20064~^~605~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^10^0.000^0.000^~1, 4~^~07/01/2009~ -~20064~^~606~^0.180^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~612~^0.002^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~613~^0.170^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~614~^0.005^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~617~^0.174^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~618~^0.598^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~619~^0.098^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~626~^0.006^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~628~^0.008^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~645~^0.189^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20064~^~646~^0.695^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~312~^0.213^12^0.008^~1~^~A~^^^1^0.170^0.250^11^0.196^0.230^~4~^~06/01/2009~ -~20065~^~315~^1.162^12^0.072^~1~^~A~^^^1^0.670^1.580^11^1.003^1.322^~4~^~06/01/2009~ -~20065~^~404~^0.331^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~405~^0.090^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~406~^0.800^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~410~^0.665^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~415~^0.234^2^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~501~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~ -~20065~^~502~^0.278^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~503~^0.235^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~504~^0.556^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~505~^0.210^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~506~^0.113^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~508~^0.445^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~509~^0.199^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~510~^0.323^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~511~^0.380^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~512~^0.147^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~513~^0.337^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~514~^0.496^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~515~^2.457^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~516~^0.333^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~517~^0.965^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~518~^0.434^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~20065~^~605~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~07/01/2009~ -~20065~^~606~^0.150^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~607~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~608~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~609~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~610~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~611~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~612~^0.001^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~613~^0.142^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~614~^0.005^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~617~^0.147^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~618~^0.501^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~619~^0.083^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~620~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~621~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~626~^0.005^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~627~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~628~^0.006^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~629~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~630~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~631~^0.000^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~645~^0.158^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20065~^~646~^0.584^0^^~1~^^^^^^^^^^^~07/01/2009~ -~20066~^~312~^0.189^4^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~315~^0.619^4^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~404~^0.811^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~405~^0.571^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~406~^5.990^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~410~^0.580^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~415~^0.103^4^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~501~^0.162^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~502~^0.335^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~503~^0.490^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~504~^0.867^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~505~^0.243^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~506~^0.198^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~507~^0.358^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~508~^0.616^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~509~^0.333^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~510~^0.540^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~511~^0.467^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~512~^0.257^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~513~^0.372^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~514~^0.518^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~515~^4.571^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~516~^0.401^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~517~^1.395^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~518~^0.598^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~606~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~612~^0.002^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~613~^0.131^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~614~^0.017^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~617~^0.124^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~618~^0.393^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~619~^0.037^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/1999~ -~20066~^~645~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20066~^~646~^0.430^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~312~^0.284^5^^~1~^~A~^^^1^0.209^0.373^^^^~2~^~04/01/2014~ -~20067~^~315~^1.605^6^0.025^~6~^~JA~^^^2^1.130^1.820^1^1.287^1.923^~2~^~04/01/2014~ -~20067~^~404~^0.332^5^0.007^~1~^~A~^^^1^0.320^0.350^4^0.312^0.352^~4~^~04/01/2014~ -~20067~^~405~^0.096^5^0.009^~1~^~A~^^^1^0.080^0.130^4^0.072^0.120^~4~^~04/01/2014~ -~20067~^~406~^3.688^5^0.422^~1~^~A~^^^1^2.761^5.278^4^2.516^4.859^~4~^~04/01/2014~ -~20067~^~410~^0.367^5^0.005^~1~^~A~^^^1^0.361^0.389^4^0.352^0.382^~4~^~04/01/2014~ -~20067~^~415~^0.443^6^0.147^~6~^~JA~^^^2^0.228^0.590^1^-1.422^2.308^~2~^~04/01/2014~ -~20067~^~501~^0.124^14^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~502~^0.346^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~503~^0.433^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~504~^1.491^65^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~505~^0.229^69^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~506~^0.169^64^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~507~^0.127^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~508~^0.546^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~509~^0.321^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~510~^0.561^53^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~511~^0.355^64^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~512~^0.246^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~513~^1.033^62^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~514~^0.743^62^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~515~^2.439^62^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~516~^0.346^62^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~517~^0.852^62^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~518~^0.462^60^^~1~^^^^^^^^^^^~10/01/1989~ -~20067~^~605~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~606~^0.610^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~611~^0.001^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~04/01/2014~ -~20067~^~612~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~4~^~04/01/2014~ -~20067~^~613~^0.543^5^0.014^~1~^~A~^^^1^0.506^0.585^4^0.504^0.582^~4~^~04/01/2014~ -~20067~^~614~^0.052^5^0.002^~1~^~A~^^^1^0.046^0.056^4^0.047^0.057^~4~^~04/01/2014~ -~20067~^~617~^1.101^5^0.036^~1~^~A~^^^1^1.026^1.231^4^1.001^1.201^~4~^~04/01/2014~ -~20067~^~618~^1.493^5^0.014^~1~^~A~^^^1^1.445^1.529^4^1.453^1.533^~4~^~04/01/2014~ -~20067~^~619~^0.065^5^0.005^~1~^~A~^^^1^0.051^0.078^4^0.051^0.080^~4~^~10/01/1989~ -~20067~^~624~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~4~^~04/01/2014~ -~20067~^~626~^0.016^5^0.001^~6~^~JA~^^^1^0.011^0.020^4^0.012^0.019^~4~^~04/01/2014~ -~20067~^~628~^0.011^5^0.000^~1~^~A~^^^1^0.011^0.012^4^0.010^0.012^~4~^~04/01/2014~ -~20067~^~645~^1.131^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~646~^1.558^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20067~^~652~^0.001^2^^~1~^~A~^^^1^0.001^0.001^1^^^^~04/01/2014~ -~20067~^~653~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~4~^~04/01/2014~ -~20067~^~654~^0.008^5^0.000^~1~^~A~^^^1^0.007^0.009^4^0.007^0.009^~4~^~04/01/2014~ -~20067~^~662~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~4~^~04/01/2014~ -~20067~^~671~^0.003^2^^~1~^~A~^^^1^0.003^0.003^1^^^^~04/01/2014~ -~20067~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20068~^~312~^0.020^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~315~^0.110^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~404~^0.004^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~405~^0.000^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~406~^0.000^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~410~^0.135^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~415~^0.008^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~501~^0.003^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~502~^0.004^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~503~^0.004^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~504~^0.006^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~505~^0.006^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~506~^0.002^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~507~^0.004^20^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~508~^0.004^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~509~^0.002^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~510~^0.005^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~511~^0.019^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~512~^0.003^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~513~^0.005^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~514~^0.011^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~515~^0.029^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~516~^0.004^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~517~^0.005^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~518~^0.005^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20068~^~606~^0.005^0^^~4~^^^^^^^^^^^~03/01/1994~ -~20068~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~611~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~612~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~613~^0.005^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~614~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~617~^0.005^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~618~^0.002^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~619~^0.001^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/1994~ -~20068~^~645~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20068~^~646~^0.003^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20069~^~312~^0.457^6^0.041^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~315~^3.210^6^0.242^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~404~^0.416^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~405~^0.134^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~406~^1.430^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~410~^1.323^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~415~^0.138^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~501~^0.157^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~502~^0.405^46^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~503~^0.479^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~504~^0.911^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~505~^0.365^46^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~506~^0.204^107^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~507~^0.275^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~508~^0.638^108^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~509~^0.383^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~510~^0.609^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~511~^0.671^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~512~^0.311^27^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~513~^0.486^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~514~^0.785^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~515~^4.006^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~516~^0.559^15^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~517~^1.184^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~518~^0.593^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~606~^0.366^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~609~^0.018^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~611~^0.014^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~612~^0.009^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~613~^0.274^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~614~^0.031^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~617~^0.178^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~618~^0.853^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~619~^0.061^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~626~^0.018^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~628~^0.015^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~645~^0.211^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20069~^~646~^0.913^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~312~^0.559^6^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~315~^4.185^3^0.245^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~404~^0.378^6^0.035^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~405~^0.132^6^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~406~^2.860^6^0.627^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~410~^2.167^6^0.472^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~415~^0.403^5^0.026^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~501~^0.158^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~502~^0.409^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~503~^0.484^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~504~^0.920^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~505~^0.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~506~^0.206^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~507~^0.278^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~508~^0.644^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~509~^0.387^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~510~^0.615^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~511~^0.678^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~512~^0.314^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~513~^0.491^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~514~^0.794^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~515~^4.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~516~^0.565^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~517~^1.196^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~518~^0.599^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~606~^0.318^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~609~^0.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~611~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~612~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~613~^0.238^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~614~^0.027^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~617~^0.154^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~618~^0.741^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~619~^0.053^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~626~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~628~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~645~^0.183^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20070~^~646~^0.794^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~312~^0.410^72^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~315~^4.055^51^0.091^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~404~^0.504^19^0.082^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~405~^0.110^19^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~406~^5.710^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~410~^0.935^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~415~^0.336^5^0.039^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~501~^0.195^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~502~^0.433^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~503~^0.541^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~504~^1.038^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~505~^0.404^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~506~^0.230^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~507~^0.404^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~508~^0.724^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~509~^0.441^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~510~^0.679^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~511~^0.702^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~512~^0.330^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~513~^0.555^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~514~^0.808^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~515~^4.946^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~516~^0.621^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~517~^1.680^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~518~^0.663^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~606~^0.314^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~611~^0.000^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~612~^0.004^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~613~^0.283^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~614~^0.014^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~617~^0.236^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~618~^0.727^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~619~^0.036^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~620~^0.002^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~626~^0.066^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20071~^~645~^0.303^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20071~^~646~^0.765^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~312~^0.434^62^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~315~^3.985^41^0.092^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~404~^0.383^17^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~405~^0.115^17^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~406~^5.464^5^0.182^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~410~^0.954^5^0.065^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~415~^0.300^9^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~501~^0.160^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~502~^0.365^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~503~^0.458^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~504~^0.854^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~505~^0.335^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~506~^0.201^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~507~^0.322^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~508~^0.592^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~509~^0.387^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~510~^0.556^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~511~^0.595^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~512~^0.285^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~513~^0.450^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~514~^0.640^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~515~^3.998^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~516~^0.528^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~517~^1.289^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~518~^0.586^5^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~606~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~609~^0.015^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~612~^0.001^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~613~^0.234^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~614~^0.013^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~617~^0.192^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~618~^0.600^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~619~^0.027^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~626~^0.008^133^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20072~^~645~^0.200^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20072~^~646~^0.627^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~312~^0.450^34^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~315~^4.391^34^0.118^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~404~^0.394^11^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~405~^0.096^11^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~406~^4.800^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~410~^0.850^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~415~^0.272^3^0.053^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~502~^0.342^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~503~^0.396^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~504~^0.763^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~505~^0.315^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~506~^0.174^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~507~^0.300^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~508~^0.508^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~509~^0.327^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~510~^0.498^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~511~^0.522^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~512~^0.256^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~513~^0.412^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~514~^0.557^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~515~^3.663^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~516~^0.455^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~517~^1.166^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~518~^0.540^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~606~^0.289^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~613~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~614~^0.014^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~617~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~618~^0.628^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~619~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~626~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~645~^0.178^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20073~^~646~^0.656^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~312~^0.363^11^0.046^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~315~^3.821^11^0.320^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~404~^0.387^11^0.014^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~405~^0.108^11^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~406~^4.381^11^0.194^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~410~^0.954^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20074~^~415~^0.368^11^0.042^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~606~^0.277^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~612~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~613~^0.261^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~614~^0.016^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~617~^0.203^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~618~^0.715^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~619~^0.035^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~626~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20074~^~645~^0.203^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20074~^~646~^0.750^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~312~^0.426^123^0.022^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~315~^3.406^123^0.084^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~404~^0.410^124^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~405~^0.107^124^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~406~^4.766^124^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~410~^0.850^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20075~^~415~^0.378^128^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~606~^0.368^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~612~^0.003^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~613~^0.346^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~614~^0.018^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~617~^0.217^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~618~^0.800^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~619~^0.036^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~626~^0.010^103^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20075~^~645~^0.227^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20075~^~646~^0.837^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~312~^0.553^37^0.041^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~315~^3.012^30^0.249^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~404~^0.419^30^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~405~^0.121^30^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~406~^6.738^30^0.213^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~410~^0.935^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20076~^~415~^0.419^31^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~501~^0.176^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~502~^0.366^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~503~^0.533^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~504~^0.934^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~505~^0.303^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~506~^0.221^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~507~^0.286^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~508~^0.681^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~509~^0.357^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~510~^0.594^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~511~^0.483^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~512~^0.322^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~513~^0.427^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~514~^0.617^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~515~^4.743^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~516~^0.495^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~517~^1.459^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~518~^0.667^9^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~606~^0.454^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~612~^0.003^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~613~^0.422^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~614~^0.022^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~617~^0.335^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~618~^0.930^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~619~^0.048^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~626~^0.009^29^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~645~^0.344^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20076~^~646~^0.978^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~312~^0.998^4^0.112^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~315~^11.500^4^6.184^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~404~^0.523^4^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~405~^0.577^3^0.064^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~406~^13.578^5^4.398^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~410~^2.181^4^0.478^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~415~^1.303^5^0.328^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~501~^0.282^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~502~^0.500^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~503~^0.486^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~504~^0.928^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~505~^0.600^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~506~^0.234^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~507~^0.371^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~508~^0.595^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~509~^0.436^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~510~^0.726^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~511~^1.087^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~512~^0.430^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~513~^0.765^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~514~^1.130^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~515~^2.874^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~516~^0.898^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~517~^0.882^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~518~^0.684^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~606~^0.630^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~611~^0.002^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~612~^0.007^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~613~^0.556^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~614~^0.037^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~617~^0.619^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~618~^2.039^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~619~^0.167^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~620~^0.005^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~626~^0.017^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20077~^~645~^0.637^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20077~^~646~^2.212^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~312~^0.796^6^0.034^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~315~^13.301^9^2.224^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~404~^1.882^7^0.189^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~405~^0.499^7^0.059^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~406~^6.813^7^1.221^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~410~^2.257^6^0.141^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~415~^1.300^7^0.190^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~501~^0.317^3^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~502~^0.968^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~503~^0.847^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~504~^1.571^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~505~^1.468^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~506~^0.456^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~507~^0.458^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~508~^0.928^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~509~^0.704^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~510~^1.198^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~511~^1.867^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~512~^0.643^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~513~^1.477^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~514~^2.070^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~515~^3.995^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~516~^1.424^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~517~^1.231^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~518~^1.102^12^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~606~^1.665^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~612~^0.013^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~613~^1.587^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~614~^0.055^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~617~^1.332^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~618~^5.287^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~619~^0.723^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~626~^0.034^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~645~^1.365^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20078~^~646~^6.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20080~^~312~^0.410^3^0.012^~1~^~A~^^^1^0.390^0.430^2^0.360^0.460^~2, 3~^~01/01/2010~ -~20080~^~315~^4.067^3^0.376^~1~^~A~^^^1^3.400^4.700^2^2.450^5.683^~2, 3~^~01/01/2010~ -~20080~^~404~^0.502^3^0.018^~1~^~A~^^^1^0.475^0.535^2^0.426^0.578^~2, 3~^~01/01/2010~ -~20080~^~405~^0.165^3^0.002^~1~^~A~^^^1^0.162^0.170^2^0.155^0.176^~2, 3~^~01/01/2010~ -~20080~^~406~^4.957^3^0.231^~1~^~A~^^^1^4.510^5.280^2^3.964^5.949^~2, 3~^~01/01/2010~ -~20080~^~410~^0.603^3^0.015^~1~^~A~^^^1^0.574^0.622^2^0.540^0.666^~2, 3~^~01/01/2010~ -~20080~^~415~^0.407^3^0.023^~1~^~A~^^^1^0.368^0.447^2^0.309^0.505^~2, 3~^~01/01/2010~ -~20080~^~501~^0.174^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~502~^0.367^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~503~^0.443^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~504~^0.898^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~505~^0.359^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~506~^0.228^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~507~^0.275^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~508~^0.682^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~509~^0.275^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~510~^0.564^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~511~^0.648^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~512~^0.357^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~513~^0.489^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~514~^0.722^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~515~^4.328^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~516~^0.569^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~517~^2.075^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~518~^0.620^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20080~^~606~^0.430^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20080~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20080~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~613~^0.410^3^0.015^~1~^~A~^^^1^0.390^0.440^2^0.344^0.476^~2, 3~^~01/01/2010~ -~20080~^~614~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~01/01/2010~ -~20080~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~617~^0.273^3^0.003^~1~^~A~^^^1^0.270^0.280^2^0.259^0.288^~2, 3~^~01/01/2010~ -~20080~^~618~^1.093^3^0.035^~1~^~A~^^^1^1.040^1.160^2^0.942^1.245^~2, 3~^~01/01/2010~ -~20080~^~619~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~01/01/2010~ -~20080~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~628~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~01/01/2010~ -~20080~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~645~^0.283^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~646~^1.167^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~ -~20080~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20080~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2010~ -~20081~^~312~^0.144^49^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~315~^0.682^48^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~404~^0.785^36^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~405~^0.494^32^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~406~^5.904^19^0.123^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~410~^0.438^10^0.093^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~415~^0.044^45^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~501~^0.127^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~502~^0.281^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~503~^0.357^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~504~^0.710^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~505~^0.228^69^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~506~^0.183^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~507~^0.219^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~508~^0.520^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~509~^0.312^56^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~510~^0.415^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~511~^0.417^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~512~^0.230^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~513~^0.332^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~514~^0.435^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~515~^3.479^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~516~^0.371^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~517~^1.198^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~518~^0.516^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~606~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~613~^0.148^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~614~^0.007^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~617~^0.087^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~618~^0.391^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~619~^0.022^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20081~^~645~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20081~^~646~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~312~^0.112^5^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~315~^1.000^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~404~^0.674^34^0.010^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~405~^0.414^34^0.011^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~406~^5.832^43^0.204^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~410~^0.438^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20082~^~415~^0.050^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~501~^0.121^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~502~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~503~^0.342^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~504~^0.680^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~505~^0.219^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~506~^0.175^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~507~^0.210^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~508~^0.498^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~509~^0.298^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~510~^0.397^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~511~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~512~^0.220^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~513~^0.317^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~514~^0.416^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~515~^3.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~516~^0.356^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~517~^1.146^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~518~^0.494^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~606~^0.154^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~613~^0.147^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~614~^0.007^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~617~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~618~^0.388^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~619~^0.022^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20082~^~645~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20082~^~646~^0.410^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~312~^0.182^35^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~315~^0.792^55^0.029^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~404~^0.812^12^0.032^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~405~^0.512^15^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~406~^7.554^9^0.676^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~410~^0.438^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20083~^~415~^0.037^46^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~501~^0.139^13^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~502~^0.320^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~503~^0.444^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~504~^0.828^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~505~^0.231^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~506~^0.210^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~507~^0.269^22^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~508~^0.591^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~509~^0.328^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~510~^0.502^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~511~^0.416^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~512~^0.254^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~513~^0.366^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~514~^0.484^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~515~^4.198^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~516~^0.410^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~517~^1.409^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~518~^0.580^23^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~606~^0.244^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~612~^0.001^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~613~^0.218^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~614~^0.010^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~617~^0.135^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~618~^0.685^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~619~^0.043^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~626~^0.005^79^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20083~^~645~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20083~^~646~^0.727^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~312~^0.139^23^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~315~^0.634^29^0.039^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~404~^0.892^2^^~1~^^^^^^^^^^^~05/01/2002~ -~20084~^~405~^0.430^2^^~1~^^^^^^^^^^^~05/01/2002~ -~20084~^~406~^6.790^2^^~1~^^^^^^^^^^^~05/01/2002~ -~20084~^~410~^0.458^3^0.019^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~415~^0.033^25^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~501~^0.118^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~502~^0.227^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~503~^0.311^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~504~^0.558^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~505~^0.285^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~506~^0.138^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~507~^0.178^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~508~^0.388^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~509~^0.234^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~510~^0.360^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~511~^0.314^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~512~^0.167^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~513~^0.247^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~514~^0.342^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~515~^2.710^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~516~^0.278^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~517~^0.913^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~518~^0.432^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~606~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~613~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~614~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~617~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~618~^0.357^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~619~^0.022^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20084~^~645~^0.073^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20084~^~646~^0.379^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~312~^0.100^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~315~^0.614^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~404~^0.735^27^0.023^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~405~^0.493^27^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~406~^5.820^27^0.187^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~410~^0.394^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20086~^~415~^0.040^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~501~^0.119^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~502~^0.263^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~503~^0.334^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~504~^0.664^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~505~^0.213^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~506~^0.171^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~507~^0.205^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~508~^0.486^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~509~^0.291^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~510~^0.388^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~511~^0.390^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~512~^0.215^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~513~^0.310^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~514~^0.407^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~515~^3.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~516~^0.347^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~517~^1.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~518~^0.483^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~606~^4.100^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~610~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~611~^0.021^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~612~^0.132^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~613~^2.557^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~614~^1.379^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~617~^4.270^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~618~^1.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~619~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~626~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~645~^4.541^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20086~^~646~^1.522^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~312~^0.261^8^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~315~^1.858^8^0.197^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~404~^0.225^8^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~405~^0.155^8^0.026^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~406~^3.087^8^0.130^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~410~^0.947^8^0.056^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~415~^0.265^8^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~501~^0.115^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~502~^0.254^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~503~^0.287^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~504~^0.507^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~505~^0.245^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~506~^0.116^3^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~507~^0.134^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~508~^0.350^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~509~^0.275^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~510~^0.361^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~511~^0.425^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~512~^0.196^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~513~^0.295^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~514~^0.453^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~515~^1.871^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~516~^0.306^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~517~^0.674^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~518~^0.341^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~606~^0.206^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~613~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~614~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~617~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~618~^0.531^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~619~^0.026^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20087~^~645~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20087~^~646~^0.557^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~312~^0.524^41^0.057^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~315~^1.329^38^0.032^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~404~^0.115^40^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~405~^0.262^40^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~406~^6.733^40^0.188^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~410~^1.074^7^0.235^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~415~^0.391^6^0.096^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~501~^0.179^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~502~^0.469^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~503~^0.618^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~504~^1.018^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~505~^0.629^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~506~^0.438^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~507~^0.174^4^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~508~^0.721^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~509~^0.622^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~510~^0.858^7^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~511~^1.136^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~512~^0.384^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~513~^0.825^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~514~^1.419^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~515~^2.565^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~516~^0.672^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~517~^0.519^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~518~^0.778^8^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~606~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~613~^0.145^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~614~^0.011^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~617~^0.159^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~618~^0.377^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~619~^0.300^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20088~^~645~^0.159^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20088~^~646~^0.676^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~312~^0.121^5^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~315~^0.282^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~404~^0.052^5^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~405~^0.087^5^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~406~^1.287^3^0.159^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~410~^0.154^4^0.048^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~415~^0.135^4^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~501~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~502~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~503~^0.167^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~504~^0.276^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~505~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~506~^0.119^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~507~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~508~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~509~^0.169^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~510~^0.232^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~511~^0.308^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~512~^0.104^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~513~^0.223^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~514~^0.384^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~515~^0.695^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~516~^0.182^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~517~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~518~^0.211^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~606~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~612~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~613~^0.046^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~617~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~618~^0.119^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~619~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20089~^~645~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20089~^~646~^0.213^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~312~^0.230^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~315~^4.013^3^0.607^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~404~^0.443^3^0.062^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~405~^0.080^3^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~406~^6.340^3^0.314^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~410~^1.591^3^0.105^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~415~^0.736^3^0.094^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~501~^0.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~502~^0.265^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~503~^0.306^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~504~^0.598^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~505~^0.276^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~506~^0.163^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~507~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~508~^0.373^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~509~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~510~^0.424^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~511~^0.548^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~512~^0.184^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~513~^0.422^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~514~^0.677^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~515~^1.473^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~516~^0.356^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~517~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~518~^0.374^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~606~^0.557^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~611~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~612~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~613~^0.475^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~614~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~617~^0.998^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~618~^0.954^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~619~^0.042^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~626~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~645~^1.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20090~^~646~^0.996^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~312~^0.202^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~315~^0.483^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~404~^0.231^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~405~^0.087^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~406~^2.430^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~410~^0.484^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~415~^0.206^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20091~^~501~^0.053^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~502~^0.280^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~503~^0.267^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~504~^0.915^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~505~^0.210^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~506~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~507~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~508~^0.366^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~509~^0.303^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~510~^0.378^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~511~^0.372^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~512~^0.228^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~513~^0.558^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~514~^0.519^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~515~^1.400^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~516~^0.306^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~517~^0.651^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~518~^0.354^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~606~^0.290^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~613~^0.247^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~614~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~617~^0.541^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~618~^0.896^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~619~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20091~^~645~^0.543^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20091~^~646~^0.924^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~312~^0.064^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~315~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~404~^0.053^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~405~^0.023^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~406~^0.556^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~410~^0.128^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~415~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~501~^0.019^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~502~^0.099^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~503~^0.094^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~504~^0.322^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~505~^0.074^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~506~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~507~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~508~^0.129^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~509~^0.107^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~510~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~511~^0.131^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~512~^0.080^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~513~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~514~^0.183^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~515~^0.493^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~516~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~517~^0.229^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~518~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~606~^0.102^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~613~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~614~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~617~^0.191^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~618~^0.316^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~619~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20092~^~645~^0.191^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20092~^~646~^0.325^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~312~^0.228^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~315~^0.547^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~404~^0.705^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~405~^0.439^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~406~^3.350^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~410~^0.535^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~415~^0.093^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20093~^~501~^0.143^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~502~^0.295^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~503~^0.431^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~504~^0.763^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~505~^0.214^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~506~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~507~^0.315^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~508~^0.542^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~509~^0.293^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~510~^0.476^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~511~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~512~^0.226^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~513~^0.327^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~514~^0.456^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~515~^4.022^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~516~^0.353^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~517~^1.227^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~518~^0.526^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~606~^0.328^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~612~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~613~^0.287^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~614~^0.037^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~617~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~618~^0.860^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~619~^0.082^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~645~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20093~^~646~^0.942^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~312~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~315~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~404~^0.209^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~405~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~406~^0.992^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~410~^0.183^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~415~^0.034^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~501~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~502~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~503~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~504~^0.348^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~505~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~506~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~507~^0.143^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~508~^0.247^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~509~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~510~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~511~^0.187^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~512~^0.103^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~513~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~514~^0.208^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~515~^1.832^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~516~^0.161^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~517~^0.559^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~518~^0.240^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~606~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~613~^0.131^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~614~^0.017^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~617~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~618~^0.392^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~619~^0.037^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~645~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20094~^~646~^0.429^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~312~^0.197^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~315~^0.781^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~404~^0.609^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~405~^0.398^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~406~^3.460^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~410~^0.688^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~415~^0.315^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20095~^~501~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~502~^0.352^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~503~^0.488^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~504~^0.813^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~505~^0.336^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~506~^0.208^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~507~^0.297^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~508~^0.560^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~509~^0.332^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~510~^0.544^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~511~^0.480^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~512~^0.237^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~513~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~514~^0.601^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~515~^3.449^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~516~^0.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~517~^1.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~518~^0.577^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~606~^0.483^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~612~^0.007^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~613~^0.388^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~614~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~617~^0.595^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~618~^0.403^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~619~^0.064^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~626~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~628~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~645~^0.659^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20095~^~646~^0.467^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~312~^0.080^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~315~^0.316^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~404~^0.178^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~405~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~406~^1.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~410~^0.232^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~415~^0.113^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~501~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~502~^0.158^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~503~^0.219^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~504~^0.365^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~505~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~506~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~507~^0.134^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~508~^0.252^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~509~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~510~^0.245^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~511~^0.216^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~512~^0.107^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~513~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~514~^0.270^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~515~^1.550^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~516~^0.166^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~517~^0.474^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~518~^0.259^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~606~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~613~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~614~^0.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~617~^0.267^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~618~^0.181^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~619~^0.029^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~626~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~628~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~645~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20096~^~646~^0.210^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~312~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~315~^0.183^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~404~^0.173^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~405~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~406~^1.257^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~410~^0.231^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~415~^0.037^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~501~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~502~^0.166^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~503~^0.223^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~504~^0.382^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~505~^0.165^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~506~^0.101^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~507~^0.143^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~508~^0.262^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~509~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~510~^0.247^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~511~^0.223^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~512~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~513~^0.187^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~514~^0.288^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~515~^1.628^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~516~^0.169^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~517~^0.497^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~518~^0.282^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~606~^0.408^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~612~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~613~^0.301^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~614~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~617~^0.473^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~618~^0.459^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~619~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~620~^0.014^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~621~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~626~^0.030^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~628~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~645~^0.508^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20097~^~646~^0.521^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~312~^0.060^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~315~^0.193^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~404~^0.182^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~405~^0.148^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~406~^1.343^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~410~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~415~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~501~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~502~^0.116^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~503~^0.169^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~504~^0.299^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~505~^0.084^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~506~^0.068^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~507~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~508~^0.212^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~509~^0.115^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~510~^0.186^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~511~^0.161^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~512~^0.089^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~513~^0.128^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~514~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~515~^1.577^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~516~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~517~^0.481^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~518~^0.206^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~606~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~613~^0.109^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~614~^0.029^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~617~^0.185^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~618~^0.453^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~619~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~628~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~645~^0.187^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20098~^~646~^0.508^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~312~^0.200^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~315~^3.846^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~404~^1.032^20^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~405~^0.525^18^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~406~^7.328^20^0.215^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~410~^0.752^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~415~^0.129^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~501~^0.168^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~502~^0.354^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~503~^0.508^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~504~^0.896^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~505~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~506~^0.204^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~507~^0.363^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~508~^0.632^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~509~^0.349^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~510~^0.563^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~511~^0.487^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~512~^0.266^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~513~^0.393^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~514~^0.567^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~515~^4.649^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~516~^0.418^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~517~^1.401^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~518~^0.625^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~606~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~613~^0.130^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~614~^0.017^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~617~^0.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~618~^0.376^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~619~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~645~^0.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20105~^~646~^0.426^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~312~^0.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~315~^0.986^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~404~^0.112^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~405~^0.061^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~406~^1.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~410~^0.350^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~415~^0.024^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~501~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~502~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~503~^0.175^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~504~^0.309^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~505~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~506~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~507~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~508~^0.218^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~509~^0.120^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~510~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~511~^0.168^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~512~^0.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~513~^0.135^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~514~^0.196^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~515~^1.603^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~516~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~517~^0.483^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~518~^0.215^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~606~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~613~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~614~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~617~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~618~^0.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~619~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~626~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20106~^~645~^0.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20106~^~646~^0.044^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20109~^~312~^0.297^3^0.006^~1~^~A~^^^1^0.285^0.304^2^0.271^0.323^~2, 3~^~11/01/2004~ -~20109~^~315~^0.855^3^0.034^~1~^~A~^^^1^0.787^0.896^2^0.707^1.003^~2, 3~^~11/01/2004~ -~20109~^~404~^1.133^3^0.060^~1~^~A~^^^1^1.050^1.250^2^0.875^1.392^~2, 3~^~02/01/2009~ -~20109~^~405~^0.426^3^0.034^~1~^~A~^^^1^0.363^0.482^2^0.277^0.574^~2, 3~^~02/01/2009~ -~20109~^~406~^8.387^3^0.174^~1~^~A~^^^1^8.050^8.630^2^7.639^9.134^~2, 3~^~02/01/2009~ -~20109~^~410~^0.912^3^0.057^~1~^~A~^^^1^0.824^1.020^2^0.665^1.159^~2, 3~^~11/01/2004~ -~20109~^~415~^0.216^3^0.003^~1~^~A~^^^1^0.209^0.219^2^0.201^0.230^~2, 3~^~11/01/2004~ -~20109~^~501~^0.133^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~502~^0.430^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~503~^0.593^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~504~^1.139^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~505~^0.429^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~506~^0.268^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~507~^0.299^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~508~^0.748^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~509~^0.293^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~510~^0.686^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~511~^0.600^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~512~^0.378^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~513~^0.516^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~514~^0.762^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~515~^4.580^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~516~^0.496^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~517~^1.544^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~518~^0.803^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20109~^~605~^0.061^1^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~20109~^~606~^1.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20109~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~612~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~11/01/2004~ -~20109~^~613~^0.935^3^0.052^~1~^~A~^^^1^0.843^1.023^2^0.711^1.159^~2, 3~^~11/01/2004~ -~20109~^~614~^0.228^3^0.018^~1~^~A~^^^1^0.195^0.256^2^0.151^0.305^~2, 3~^~11/01/2004~ -~20109~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~617~^1.163^3^0.079^~1~^~A~^^^1^1.016^1.287^2^0.823^1.502^~2, 3~^~11/01/2004~ -~20109~^~618~^1.223^3^0.026^~1~^~A~^^^1^1.183^1.273^2^1.109^1.337^~2, 3~^~11/01/2004~ -~20109~^~619~^0.058^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~ -~20109~^~620~^0.042^3^0.004^~1~^~A~^^^1^0.035^0.047^2^0.027^0.057^~2, 3~^~11/01/2004~ -~20109~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~626~^0.073^3^0.007^~1~^~A~^^^1^0.060^0.082^2^0.044^0.103^~2, 3~^~11/01/2004~ -~20109~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~628~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~11/01/2004~ -~20109~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20109~^~645~^1.252^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~646~^1.331^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20109~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~653~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~11/01/2004~ -~20109~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~11/01/2004~ -~20109~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20109~^~851~^0.058^3^0.001^~1~^~A~^^^1^0.057^0.060^2^0.055^0.062^~2, 3~^~11/01/2004~ -~20110~^~312~^0.098^42^0.005^~1~^~A~^^^13^0.065^0.145^12^0.088^0.108^~1, 2~^~11/01/2004~ -~20110~^~315~^0.315^42^0.012^~1~^~A~^^^13^0.217^0.537^12^0.288^0.342^~2~^~11/01/2004~ -~20110~^~404~^0.289^3^0.006^~1~^~A~^^^1^0.281^0.300^2^0.264^0.314^~2, 3~^~03/01/2005~ -~20110~^~405~^0.136^3^0.014^~1~^~A~^^^1^0.114^0.161^2^0.077^0.194^~2, 3~^~03/01/2005~ -~20110~^~406~^2.077^3^0.088^~1~^~A~^^^1^1.960^2.250^2^1.696^2.457^~2, 3~^~03/01/2005~ -~20110~^~410~^0.263^3^0.014^~1~^~A~^^^1^0.248^0.290^2^0.205^0.321^~2, 3~^~11/01/2004~ -~20110~^~415~^0.046^3^0.003^~1~^~A~^^^1^0.042^0.051^2^0.035^0.057^~2, 3~^~11/01/2004~ -~20110~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~502~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~503~^0.190^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~504~^0.365^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~505~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~508~^0.240^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~511~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~512~^0.121^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~513~^0.165^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~514~^0.244^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~515~^1.468^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~516~^0.159^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~517~^0.495^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~518~^0.257^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20110~^~605~^0.029^0^^~4~^~BFSN~^~20109~^^^^^^^^^~02/01/2009~ -~20110~^~606~^0.419^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~612~^0.005^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~613~^0.341^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~614~^0.073^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~617~^0.537^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~618~^0.522^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~619~^0.028^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~620~^0.001^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~626~^0.045^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~20110~^~645~^0.581^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20110~^~646~^0.552^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~20111~^~312~^0.257^3^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~315~^1.020^3^0.223^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~404~^1.091^3^0.065^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~405~^0.477^3^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~406~^6.575^4^0.360^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~410~^0.899^3^0.133^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~415~^0.412^3^0.074^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~501~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~502~^0.457^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~503~^0.633^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~504~^1.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~505~^0.436^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~506~^0.270^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~507~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~508~^0.727^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~509~^0.431^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~510~^0.706^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~511~^0.623^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~512~^0.308^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~513~^0.517^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~514~^0.780^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~515~^4.476^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~516~^0.479^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~517~^1.370^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~518~^0.749^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~606~^1.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~612~^0.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~613~^0.842^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~614~^0.189^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~617~^1.290^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~618~^0.874^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~619~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~626~^0.137^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~628~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~645~^1.430^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20111~^~646~^1.012^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~312~^0.080^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~315~^0.317^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~404~^0.245^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~405~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~406~^1.474^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~410~^0.233^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~415~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~501~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~502~^0.157^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~503~^0.218^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~504~^0.364^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~505~^0.151^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~506~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~507~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~508~^0.251^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~509~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~510~^0.244^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~511~^0.215^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~512~^0.106^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~513~^0.178^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~514~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~515~^1.543^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~516~^0.165^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~517~^0.472^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~518~^0.258^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~606~^0.361^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~612~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~613~^0.290^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~614~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~617~^0.445^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~618~^0.301^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~619~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~626~^0.047^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~628~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20112~^~645~^0.493^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20112~^~646~^0.349^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20113~^~312~^0.124^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~315~^0.577^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~404~^0.567^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~405~^0.397^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~406~^4.717^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~415~^0.043^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~606~^6.738^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~611~^3.855^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~612~^1.345^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~613~^0.716^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~614~^0.233^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~617~^8.883^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~618~^3.474^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~619~^0.098^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~626~^0.046^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2016~ -~20113~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2012~ -~20113~^~645~^8.929^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20113~^~646~^3.571^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~ -~20114~^~312~^0.230^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~315~^1.291^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20114~^~404~^0.480^3^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~405~^0.130^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~406~^3.210^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~410~^0.954^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20114~^~415~^0.240^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~501~^0.204^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~502~^0.503^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~503~^0.553^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~504~^0.937^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~505~^0.607^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~506~^0.204^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~507~^0.268^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~508~^0.617^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~509~^0.299^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~510~^0.707^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~511~^0.899^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~512~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~513~^0.705^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~514~^1.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~515~^3.113^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~516~^0.942^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~517~^0.868^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~518~^0.738^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~606~^0.136^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~610~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~611~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~612~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~613~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~614~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~617~^0.181^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~618~^0.204^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~619~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~626~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~645~^0.185^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20114~^~646~^0.220^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~312~^0.008^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~315~^0.374^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20115~^~404~^0.094^4^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~405~^0.026^6^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~406~^0.510^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~410~^0.235^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20115~^~415~^0.040^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~501~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~502~^0.177^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~503~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~504~^0.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~505~^0.214^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~506~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~507~^0.094^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~508~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~509~^0.105^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~510~^0.249^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~511~^0.317^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~512~^0.119^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~513~^0.248^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~514~^0.372^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~515~^1.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~516~^0.332^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~517~^0.306^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~518~^0.260^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~606~^0.019^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~613~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~614~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~617~^0.025^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~618~^0.029^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~619~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~645~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20115~^~646~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~312~^0.144^4^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~315~^0.479^3^0.044^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~404~^0.101^5^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~405~^0.026^5^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~406~^0.875^4^0.047^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~410~^0.491^3^0.116^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~415~^0.050^4^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~501~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~502~^0.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~503~^0.439^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~504~^0.776^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~505~^0.218^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~506~^0.177^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~507~^0.320^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~508~^0.551^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~509~^0.298^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~510~^0.484^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~511~^0.418^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~512~^0.230^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~513~^0.333^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~514~^0.464^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~515~^4.092^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~516~^0.359^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~517~^1.249^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~518~^0.535^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~606~^0.115^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~607~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~608~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~609~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~611~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~613~^0.101^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~614~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~617~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~618~^0.302^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~619~^0.029^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~620~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~621~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~626~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~627~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~629~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~630~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~631~^0.000^0^^~1~^^^^^^^^^^^~10/01/1994~ -~20116~^~645~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20116~^~646~^0.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~312~^0.025^3^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~315~^0.251^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~404~^0.020^5^0.010^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~405~^0.033^5^0.028^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~406~^0.097^3^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~410~^0.172^4^0.077^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~415~^0.013^3^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~501~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~502~^0.106^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~503~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~504~^0.274^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~505~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~506~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~507~^0.113^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~508~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~509~^0.105^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~510~^0.171^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~511~^0.148^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~512~^0.081^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~513~^0.117^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~514~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~515~^1.443^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~516~^0.126^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~517~^0.440^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~518~^0.189^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~606~^0.025^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~613~^0.022^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~617~^0.021^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~618~^0.066^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~619~^0.006^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~645~^0.021^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20117~^~646~^0.073^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20118~^~312~^0.122^4^0.010^~1~^~A~^^^1^0.099^0.145^3^0.090^0.154^~2, 3~^~04/01/2008~ -~20118~^~315~^0.363^4^0.038^~1~^~A~^^^1^0.284^0.467^3^0.242^0.485^~2, 3~^~04/01/2008~ -~20118~^~404~^0.195^4^0.066^~1~^~A~^^^1^0.100^0.390^3^-0.015^0.405^~2, 3~^~04/01/2008~ -~20118~^~405~^0.112^4^0.044^~1~^~A~^^^1^0.050^0.240^3^-0.027^0.252^~2, 3~^~04/01/2008~ -~20118~^~406~^2.520^4^0.758^~1~^~A~^^^1^1.220^4.710^3^0.107^4.933^~2, 3~^~04/01/2008~ -~20118~^~410~^0.354^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~415~^0.027^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~ -~20118~^~605~^0.136^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~606~^4.931^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~611~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~04/01/2008~ -~20118~^~612~^0.027^4^0.002^~1~^~A~^^^1^0.023^0.032^3^0.021^0.033^~2, 3~^~04/01/2008~ -~20118~^~613~^3.330^4^0.302^~1~^~A~^^^1^2.762^4.045^3^2.369^4.290^~2, 3~^~04/01/2008~ -~20118~^~614~^1.300^4^0.112^~1~^~A~^^^1^1.077^1.552^3^0.942^1.658^~2, 3~^~04/01/2008~ -~20118~^~615~^0.093^4^0.009^~1~^~A~^^^1^0.076^0.115^3^0.063^0.123^~2, 3~^~04/01/2008~ -~20118~^~617~^7.303^4^0.772^~1~^~AS~^^^1^5.907^9.188^3^4.847^9.758^~2, 3~^~04/01/2008~ -~20118~^~618~^14.908^4^1.831^~1~^~AS~^^^1^11.467^18.969^3^9.079^20.737^~2, 3~^~04/01/2008~ -~20118~^~619~^2.018^4^0.295^~1~^~AS~^^^1^1.455^2.681^3^1.078^2.958^~2, 3~^~04/01/2008~ -~20118~^~620~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.003^0.011^~1, 2, 3~^~04/01/2008~ -~20118~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~624~^0.100^4^0.011^~1~^~A~^^^1^0.081^0.125^3^0.066^0.134^~2, 3~^~04/01/2008~ -~20118~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~626~^0.050^4^0.003^~1~^~AS~^^^1^0.046^0.059^3^0.041^0.060^~2, 3~^~04/01/2008~ -~20118~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~628~^0.236^4^0.025^~1~^~A~^^^1^0.202^0.309^3^0.155^0.316^~2, 3~^~04/01/2008~ -~20118~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.005^3^-0.003^0.005^~2, 3~^~04/01/2008~ -~20118~^~631~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~04/01/2008~ -~20118~^~645~^7.617^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~646~^16.949^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~652~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~04/01/2008~ -~20118~^~653~^0.030^4^0.002^~1~^~A~^^^1^0.025^0.036^3^0.022^0.038^~2, 3~^~04/01/2008~ -~20118~^~654~^0.044^4^0.001^~1~^~A~^^^1^0.042^0.048^3^0.040^0.049^~2, 3~^~04/01/2008~ -~20118~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~663~^0.025^4^0.003^~1~^~A~^^^1^0.017^0.029^3^0.016^0.034^~2, 3~^~04/01/2008~ -~20118~^~664~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~04/01/2008~ -~20118~^~665~^0.110^4^0.009^~1~^~A~^^^1^0.097^0.136^3^0.082^0.138^~2, 3~^~04/01/2008~ -~20118~^~670~^0.022^4^0.003^~1~^~A~^^^1^0.015^0.030^3^0.012^0.032^~2, 3~^~04/01/2008~ -~20118~^~671~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.012^3^0.008^0.013^~2, 3~^~04/01/2008~ -~20118~^~672~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.013^3^0.011^0.014^~2, 3~^~04/01/2008~ -~20118~^~673~^0.050^4^0.003^~1~^~A~^^^1^0.046^0.059^3^0.041^0.060^~2, 3~^~04/01/2008~ -~20118~^~674~^7.277^4^0.772^~1~^~A~^^^1^5.880^9.159^3^4.821^9.734^~2, 3~^~04/01/2008~ -~20118~^~675~^14.776^4^1.828^~1~^~A~^^^1^11.332^18.811^3^8.958^20.594^~2, 3~^~04/01/2008~ -~20118~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2008~ -~20118~^~685~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.006^~2, 3~^~04/01/2008~ -~20118~^~687~^0.016^4^0.002^~1~^~A~^^^1^0.013^0.020^3^0.011^0.021^~2, 3~^~04/01/2008~ -~20118~^~689~^0.003^4^0.002^~1~^~AS~^^^1^0.000^0.007^3^-0.003^0.009^~2, 3~^~04/01/2008~ -~20118~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~695~^0.110^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~ -~20118~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~851~^2.014^4^0.295^~1~^~A~^^^1^1.451^2.675^3^1.075^2.952^~2, 3~^~04/01/2008~ -~20118~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20118~^~853~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.009^~1, 2, 3~^~04/01/2008~ -~20118~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2008~ -~20120~^~312~^0.289^5^0.007^~1~^~A~^^^2^0.271^0.301^2^0.255^0.323^~2, 3~^~05/01/2006~ -~20120~^~315~^0.917^5^0.062^~1~^~A~^^^2^0.636^1.125^3^0.698^1.137^~2, 3~^~05/01/2006~ -~20120~^~404~^0.891^5^0.035^~1~^~A~^^^2^0.810^1.010^2^0.742^1.040^~2, 3~^~08/01/2007~ -~20120~^~405~^0.400^5^0.027^~1~^~A~^^^2^0.330^0.470^3^0.309^0.490^~2, 3~^~08/01/2007~ -~20120~^~406~^7.177^5^0.408^~1~^~A~^^^2^6.081^8.700^2^5.458^8.895^~2, 3~^~08/01/2007~ -~20120~^~410~^0.431^27^0.026^~1~^^^^^^^^^^^~10/01/1989~ -~20120~^~415~^0.142^4^0.000^~1~^~A~^^^2^0.110^0.174^1^0.139^0.145^~2, 3~^~10/01/2004~ -~20120~^~501~^0.185^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~502~^0.462^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~503~^0.511^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~504~^0.988^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~505~^0.298^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~506~^0.147^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~507~^0.255^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~508~^0.668^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~509~^0.243^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~510~^0.588^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~511~^0.474^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~512~^0.298^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~513~^0.438^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~514~^0.624^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~515~^4.596^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~516~^0.441^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~517~^1.569^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~518~^0.617^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20120~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~20120~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~606~^0.277^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~607~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~608~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~609~^0.000^5^0.001^~1~^~A~^^^2^0.000^0.004^2^-0.002^0.004^~1, 2, 3~^~08/01/2007~ -~20120~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~611~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~612~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~613~^0.251^5^0.045^~1~^~A~^^^2^0.246^0.486^2^0.229^0.589^~2, 3~^~08/01/2007~ -~20120~^~614~^0.025^5^0.014^~1~^~A~^^^2^0.000^0.078^2^-0.018^0.100^~1, 2, 3~^~08/01/2007~ -~20120~^~615~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~617~^0.171^5^0.008^~6~^~JA~^^^2^0.256^0.292^1^0.220^0.337^~2, 3~^~08/01/2007~ -~20120~^~618~^0.540^5^0.037^~1~^~A~^^^2^0.700^1.052^3^0.761^1.000^~2, 3~^~08/01/2007~ -~20120~^~619~^0.024^5^0.010^~6~^~JA~^^^2^0.000^0.053^2^-0.003^0.080^~1, 2, 3~^~08/01/2007~ -~20120~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~625~^0.000^5^0.001^~1~^~A~^^^2^0.000^0.004^2^-0.003^0.004^~1, 2, 3~^~08/01/2007~ -~20120~^~626~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~20120~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~630~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2007~ -~20120~^~645~^0.171^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~646~^0.564^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~653~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~674~^0.171^3^0.005^~1~^~A~^^^1^0.276^0.290^2^0.262^0.301^~2, 3~^~08/01/2007~ -~20120~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~ -~20120~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2007~ -~20120~^~851~^0.024^3^0.016^~1~^~A~^^^1^0.000^0.053^2^-0.038^0.100^~1, 2, 3~^~08/01/2007~ -~20121~^~312~^0.100^56^0.003^~1~^~A~^^^14^0.071^0.163^13^0.093^0.107^~1, 2~^~05/01/2006~ -~20121~^~315~^0.322^52^0.015^~1~^~A~^^^14^0.212^0.574^13^0.290^0.355^~2~^~05/01/2006~ -~20121~^~404~^0.274^11^0.014^~1~^~A~^^^2^0.190^0.360^4^0.235^0.313^~2, 3~^~03/01/2005~ -~20121~^~405~^0.136^11^0.005^~1~^~A~^^^2^0.080^0.156^4^0.121^0.150^~2, 3~^~03/01/2005~ -~20121~^~406~^1.689^11^0.078^~1~^~A~^^^2^1.266^2.500^9^1.510^1.867^~2, 3~^~03/01/2005~ -~20121~^~410~^0.112^32^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20121~^~415~^0.049^6^0.004^~1~^~A~^^^2^0.037^0.060^4^0.038^0.059^~1, 2, 3~^~10/01/2004~ -~20121~^~501~^0.081^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~502~^0.203^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~503~^0.224^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~504~^0.434^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~505~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~506~^0.064^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~507~^0.112^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~508~^0.293^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~509~^0.107^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~510~^0.258^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~511~^0.208^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~512~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~513~^0.192^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~514~^0.274^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~515~^2.018^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~516~^0.194^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~517~^0.689^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~518~^0.271^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20121~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~20121~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20121~^~606~^0.176^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20121~^~607~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~608~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~609~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~610~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~611~^0.006^10^0.002^~1~^~A~^^^2^0.000^0.033^2^0.000^0.014^~1, 2, 3~^~09/01/2015~ -~20121~^~612~^0.006^10^0.001^~1~^~A~^^^2^0.000^0.028^2^0.002^0.012^~1, 2, 3~^~09/01/2015~ -~20121~^~613~^0.149^10^0.009^~1~^~A~^^^2^0.122^0.268^5^0.149^0.199^~2, 3~^~09/01/2015~ -~20121~^~614~^0.014^7^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2015~ -~20121~^~615~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~617~^0.131^10^0.020^~6~^~JA~^^^2^0.074^0.376^2^0.081^0.224^~1, 2, 3~^~09/01/2015~ -~20121~^~618~^0.295^10^0.042^~1~^~A~^^^2^0.071^0.495^3^0.195^0.492^~2, 3~^~09/01/2015~ -~20121~^~619~^0.024^10^0.005^~6~^~JA~^^^2^0.000^0.050^8^0.015^0.040^~1, 2, 3~^~09/01/2015~ -~20121~^~620~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~621~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~624~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~626~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~628~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~629~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~630~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~645~^0.131^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20121~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20121~^~652~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~653~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~654~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~674~^0.131^3^0.062^~1~^~A~^^^1^0.168^0.376^2^-0.012^0.524^~2, 3~^~09/01/2015~ -~20121~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20121~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20121~^~851~^0.024^3^0.008^~1~^~A~^^^1^0.000^0.025^2^-0.027^0.043^~1, 2, 3~^~09/01/2015~ -~20124~^~312~^0.497^10^0.009^~1~^~A~^^^1^0.453^0.524^3^0.470^0.523^~2, 3~^~06/01/2015~ -~20124~^~315~^2.983^10^0.088^~1~^~A~^^^1^2.550^3.270^3^2.712^3.255^~2, 3~^~06/01/2015~ -~20124~^~404~^0.407^6^0.032^~1~^~A~^^^1^0.330^0.490^2^0.275^0.540^~2, 3~^~06/01/2015~ -~20124~^~405~^0.218^6^0.037^~1~^~A~^^^1^0.160^0.330^1^-0.188^0.624^~2, 3~^~06/01/2015~ -~20124~^~406~^8.691^6^0.440^~1~^~A~^^^1^7.330^10.100^1^4.091^13.291^~2, 3~^~06/01/2015~ -~20124~^~410~^0.870^4^0.025^~1~^~A~^^^1^0.830^0.960^1^0.555^1.185^~2, 3~^~06/01/2015~ -~20124~^~415~^0.283^6^0.012^~1~^~A~^^^1^0.250^0.310^2^0.221^0.346^~2, 3~^~06/01/2015~ -~20124~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~606~^0.428^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~612~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.004^0.006^~2, 3~^~06/01/2015~ -~20124~^~613~^0.374^6^0.011^~1~^~A~^^^1^0.319^0.397^3^0.339^0.409^~2, 3~^~06/01/2015~ -~20124~^~614~^0.032^6^0.001^~1~^~A~^^^1^0.026^0.035^2^0.028^0.036^~2, 3~^~06/01/2015~ -~20124~^~615~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.005^1^0.000^0.007^~1, 2, 3~^~06/01/2015~ -~20124~^~617~^0.340^6^0.011^~1~^~AS~^^^1^0.276^0.371^3^0.306^0.374^~2, 3~^~06/01/2015~ -~20124~^~618~^1.063^6^0.033^~1~^~AS~^^^1^0.883^1.136^3^0.959^1.167^~2, 3~^~06/01/2015~ -~20124~^~619~^0.070^6^0.002^~1~^~AS~^^^1^0.058^0.074^3^0.063^0.077^~2, 3~^~06/01/2015~ -~20124~^~620~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.005^0.006^~1, 2, 3~^~06/01/2015~ -~20124~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.004^~2, 3~^~06/01/2015~ -~20124~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~626~^0.003^6^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~20124~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~628~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.014^2^0.011^0.016^~2, 3~^~06/01/2015~ -~20124~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.001^0.002^~2, 3~^~06/01/2015~ -~20124~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~645~^0.361^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~646~^1.136^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.004^~2, 3~^~06/01/2015~ -~20124~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~06/01/2015~ -~20124~^~654~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.005^1^-0.001^0.009^~2, 3~^~06/01/2015~ -~20124~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~663~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~06/01/2015~ -~20124~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~20124~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20124~^~673~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~20124~^~674~^0.340^6^0.011^~1~^~A~^^^1^0.276^0.371^3^0.306^0.374^~2, 3~^~06/01/2015~ -~20124~^~675~^1.061^6^0.033^~1~^~A~^^^1^0.882^1.134^3^0.957^1.165^~2, 3~^~06/01/2015~ -~20124~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20124~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~687~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.004^0.006^~1, 2, 3~^~06/01/2015~ -~20124~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20124~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20124~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~851~^0.070^6^0.002^~1~^~A~^^^1^0.058^0.074^3^0.063^0.077^~2, 3~^~06/01/2015~ -~20124~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20124~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20125~^~312~^0.225^10^0.003^~1~^~A~^^^1^0.207^0.250^3^0.215^0.234^~2, 3~^~05/01/2015~ -~20125~^~315~^1.321^10^0.031^~1~^~A~^^^1^1.190^1.530^3^1.228^1.415^~2, 3~^~05/01/2015~ -~20125~^~404~^0.156^6^0.007^~1~^~A~^^^1^0.120^0.180^3^0.131^0.182^~2, 3~^~05/01/2015~ -~20125~^~405~^0.099^6^0.009^~1~^~A~^^^1^0.071^0.130^1^0.024^0.174^~2, 3~^~05/01/2015~ -~20125~^~406~^3.126^6^0.090^~1~^~A~^^^1^2.350^4.130^2^2.782^3.471^~2, 3~^~05/01/2015~ -~20125~^~410~^0.268^4^0.006^~1~^~A~^^^1^0.220^0.330^1^0.195^0.341^~2, 3~^~05/01/2015~ -~20125~^~415~^0.093^6^0.006^~1~^~A~^^^1^0.070^0.110^2^0.058^0.127^~2, 3~^~05/01/2015~ -~20125~^~501~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~502~^0.161^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~503~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~504~^0.409^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~505~^0.133^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~506~^0.097^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~507~^0.125^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~508~^0.298^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~509~^0.156^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~510~^0.259^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~511~^0.211^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~512~^0.140^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~513~^0.186^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~514~^0.270^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~515~^2.074^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~516~^0.217^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~517~^0.638^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~518~^0.292^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~ -~20125~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~606~^0.243^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~612~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~05/01/2015~ -~20125~^~613~^0.207^3^0.006^~1~^~A~^^^1^0.200^0.218^2^0.183^0.231^~2, 3~^~05/01/2015~ -~20125~^~614~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.024^2^0.013^0.029^~2, 3~^~05/01/2015~ -~20125~^~615~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2015~ -~20125~^~617~^0.168^3^0.009^~1~^~AS~^^^1^0.156^0.185^2^0.130^0.206^~2, 3~^~05/01/2015~ -~20125~^~618~^0.538^3^0.025^~1~^~AS~^^^1^0.493^0.579^2^0.431^0.645^~2, 3~^~05/01/2015~ -~20125~^~619~^0.036^3^0.002^~1~^~AS~^^^1^0.032^0.039^2^0.027^0.044^~2, 3~^~05/01/2015~ -~20125~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~20125~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~626~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~10/01/1989~ -~20125~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~628~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2015~ -~20125~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/1995~ -~20125~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/1995~ -~20125~^~645~^0.176^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~646~^0.574^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~20125~^~653~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~20125~^~654~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2015~ -~20125~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~673~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~674~^0.168^3^0.009^~1~^~A~^^^1^0.156^0.185^2^0.130^0.206^~2, 3~^~05/01/2015~ -~20125~^~675~^0.538^3^0.025^~1~^~A~^^^1^0.493^0.579^2^0.431^0.645^~2, 3~^~05/01/2015~ -~20125~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2015~ -~20125~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~20125~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~851~^0.036^3^0.002^~1~^~A~^^^1^0.032^0.039^2^0.027^0.044^~2, 3~^~05/01/2015~ -~20125~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20125~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~20126~^~312~^0.499^3^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~315~^2.645^3^0.599^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~404~^0.373^4^0.078^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~405~^0.196^4^0.067^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~406~^4.550^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~410~^1.214^4^0.061^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~415~^0.323^3^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~501~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~502~^0.360^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~503~^0.516^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~504~^0.911^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~505~^0.273^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~506~^0.208^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~507~^0.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~508~^0.642^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~509~^0.355^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~510~^0.572^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~511~^0.495^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~512~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~513~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~514~^0.577^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~515~^4.726^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~516~^0.425^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~517~^1.424^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~518~^0.635^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~606~^0.226^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~609~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~610~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~611~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~612~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~613~^0.196^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~614~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~617~^0.180^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~618~^0.566^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~619~^0.074^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~20126~^~645~^0.181^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20126~^~646~^0.641^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~312~^0.205^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~315~^1.504^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~404~^0.097^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~405~^0.103^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~406~^1.530^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~410~^0.183^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~415~^0.096^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~501~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~502~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~503~^0.177^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~504~^0.312^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~505~^0.094^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~506~^0.071^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~507~^0.126^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~508~^0.220^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~509~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~510~^0.196^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~511~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~512~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~513~^0.137^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~514~^0.198^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~515~^1.619^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~516~^0.146^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~517~^0.488^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~518~^0.218^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~606~^0.091^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~613~^0.078^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~614~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~617~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~618~^0.227^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~619~^0.030^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~626~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~628~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~645~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20127~^~646~^0.257^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20129~^~312~^0.182^35^0.008^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~315~^0.792^55^0.029^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~404~^0.080^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20129~^~405~^0.060^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20129~^~406~^1.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~20129~^~410~^0.438^0^^~4~^^^^^^^^^^^~02/01/1995~ -~20129~^~415~^0.037^46^0.003^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~501~^0.139^13^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~502~^0.320^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~503~^0.444^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~504~^0.828^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~505~^0.231^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~506~^0.210^22^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~507~^0.269^22^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~508~^0.591^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~509~^0.328^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~510~^0.502^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~511~^0.416^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~512~^0.254^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~513~^0.366^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~514~^0.484^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~515~^4.198^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~516~^0.410^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~517~^1.409^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~518~^0.580^23^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~606~^0.244^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~612~^0.001^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~613~^0.218^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~614~^0.010^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~617~^0.135^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~618~^0.685^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~619~^0.043^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~626~^0.005^79^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~645~^0.140^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20129~^~646~^0.727^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20130~^~312~^0.343^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~315~^1.034^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~404~^0.370^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~405~^0.114^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~406~^6.269^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~410~^0.145^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~415~^0.396^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20130~^~501~^0.175^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~502~^0.356^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20130~^~503~^0.383^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~504~^0.713^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~505~^0.391^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~506~^0.202^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~507~^0.232^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~508~^0.589^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~509~^0.301^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~510~^0.515^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~511~^0.526^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~512~^0.236^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~513~^0.409^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~514~^0.655^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~515~^2.741^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20130~^~516~^0.380^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~517~^1.247^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20130~^~518~^0.443^0^^~1~^^^^^^^^^^^~11/01/1996~ -~20130~^~606~^0.335^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~611~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~612~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~613~^0.286^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~614~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~617~^0.168^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~618~^0.695^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~619~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~620~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~626~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~ -~20130~^~645~^0.205^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20130~^~646~^0.771^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~312~^0.270^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~315~^1.193^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~404~^0.309^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~405~^0.308^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~406~^5.636^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~410~^0.577^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~415~^0.655^2^^~1~^~A~^^^^^^^^^^~11/01/1996~ -~20131~^~501~^0.132^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~502~^0.407^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~503~^0.361^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~504~^0.746^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~505~^0.535^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~506~^0.294^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~507~^0.157^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~508~^0.225^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~509~^0.341^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~510~^0.503^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~511~^0.836^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~512~^0.275^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~513~^0.516^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~514~^0.776^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~515~^1.825^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~516~^0.440^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~517~^1.123^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~518~^0.465^0^^~1~^^^^^^^^^^^~06/01/1997~ -~20131~^~606~^0.386^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~607~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~608~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~609~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~610~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~611~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~612~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~613~^0.353^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~614~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~617~^0.207^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~618~^0.859^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~619~^0.095^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~620~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~621~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~626~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~627~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~628~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~629~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~630~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~631~^0.000^0^^~4~^~BFFN~^~20130~^^^^^^^^^~09/01/2002~ -~20131~^~645~^0.254^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20131~^~646~^0.953^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20132~^~312~^0.437^2^^~1~^~A~^^^1^0.434^0.440^1^^^^~09/01/2002~ -~20132~^~315~^4.019^2^^~1~^~A~^^^1^3.943^4.095^1^^^^~09/01/2002~ -~20132~^~404~^0.692^2^^~1~^~A~^^^1^0.685^0.698^1^^^^~09/01/2002~ -~20132~^~405~^0.125^2^^~1~^~A~^^^1^0.115^0.135^1^^^^~09/01/2002~ -~20132~^~406~^1.474^2^^~1~^~A~^^^1^1.391^1.556^1^^^^~09/01/2002~ -~20132~^~410~^0.201^2^^~1~^~A~^^^1^0.195^0.207^1^^^^~09/01/2002~ -~20132~^~415~^0.125^2^^~1~^~A~^^^1^0.112^0.138^1^^^^~09/01/2002~ -~20132~^~606~^1.607^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~607~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~608~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~609~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~610~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~611~^0.029^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~612~^0.014^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~613~^1.361^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~614~^0.087^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~617~^2.852^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~618~^3.185^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~619~^0.145^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~620~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~621~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~626~^0.014^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~627~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~628~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~629~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~630~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~631~^0.000^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~645~^2.866^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20132~^~646~^3.329^0^^~4~^~BFFN~^~08120~^^^^^^^^^~10/01/2002~ -~20133~^~312~^0.078^3^0.049^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~315~^0.498^3^0.095^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~404~^0.031^3^0.022^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~405~^0.017^3^0.005^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~406~^0.221^3^0.075^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~410~^0.051^3^0.029^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~415~^0.015^3^0.002^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20133~^~501~^0.072^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~502~^0.210^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~503~^0.244^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~504~^0.488^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~505~^0.207^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~506~^0.144^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~507~^0.107^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~508~^0.317^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~509~^0.314^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~510~^0.348^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~511~^0.516^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~512~^0.149^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~513~^0.332^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~514~^0.549^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~515~^1.098^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~516~^0.267^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~517~^0.278^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~518~^0.310^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20133~^~606~^0.153^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~612~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~613~^0.137^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~614~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~617~^0.172^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~20133~^~618~^0.124^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~619~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2013~ -~20133~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~626~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~645~^0.175^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20133~^~646~^0.150^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~312~^0.038^3^0.012^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~315~^0.114^3^0.053^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~404~^0.018^3^0.007^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~405~^0.004^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~406~^0.072^3^0.013^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~410~^0.011^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~415~^0.006^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2013~ -~20134~^~501~^0.022^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~502~^0.063^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~503~^0.073^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~504~^0.147^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~505~^0.062^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~506~^0.043^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~507~^0.032^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~508~^0.095^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~509~^0.094^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~510~^0.104^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~511~^0.155^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~512~^0.045^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~513~^0.100^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~514~^0.165^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~515~^0.329^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~516~^0.080^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~517~^0.083^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~518~^0.093^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~ -~20134~^~606~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~612~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~613~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~614~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~617~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~618~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~619~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~620~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~626~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~645~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20134~^~646~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~ -~20135~^~312~^0.426^6^0.002^~1~^~A~^^^1^0.374^0.476^4^0.420^0.431^~2, 3~^~06/01/2015~ -~20135~^~315~^2.242^6^0.021^~1~^~A~^^^1^1.790^2.680^4^2.185^2.300^~2, 3~^~06/01/2015~ -~20135~^~404~^0.371^4^0.002^~1~^~A~^^^1^0.310^0.450^2^0.362^0.379^~2, 3~^~06/01/2015~ -~20135~^~405~^0.193^4^0.004^~1~^~A~^^^1^0.130^0.270^2^0.176^0.209^~2, 3~^~06/01/2015~ -~20135~^~406~^7.948^4^0.228^~1~^~A~^^^1^7.320^9.140^2^6.969^8.928^~2, 3~^~06/01/2015~ -~20135~^~410~^0.800^2^^~1~^~A~^^^1^0.760^0.840^1^^^^~06/01/2015~ -~20135~^~415~^0.280^3^0.029^~1~^~A~^^^1^0.230^0.330^2^0.156^0.404^~2, 3~^~06/01/2015~ -~20135~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~606~^0.351^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~612~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~20135~^~613~^0.307^3^0.023^~1~^~A~^^^1^0.276^0.351^2^0.209^0.404^~2, 3~^~06/01/2015~ -~20135~^~614~^0.026^3^0.002^~1~^~A~^^^1^0.023^0.029^2^0.019^0.034^~2, 3~^~06/01/2015~ -~20135~^~615~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20135~^~617~^0.265^3^0.019^~1~^~AS~^^^1^0.242^0.302^2^0.185^0.345^~2, 3~^~06/01/2015~ -~20135~^~618~^0.865^3^0.063^~1~^~AS~^^^1^0.789^0.990^2^0.593^1.136^~2, 3~^~06/01/2015~ -~20135~^~619~^0.062^3^0.005^~1~^~AS~^^^1^0.056^0.071^2^0.042^0.082^~2, 3~^~06/01/2015~ -~20135~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~624~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~20135~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~626~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~06/01/2015~ -~20135~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~628~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.016^~2, 3~^~06/01/2015~ -~20135~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~06/01/2015~ -~20135~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~645~^0.281^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~646~^0.928^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2015~ -~20135~^~653~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~20135~^~654~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~06/01/2015~ -~20135~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20135~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~665~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~20135~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20135~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~20135~^~673~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~06/01/2015~ -~20135~^~674~^0.265^3^0.019^~1~^~A~^^^1^0.242^0.302^2^0.185^0.345^~2, 3~^~06/01/2015~ -~20135~^~675~^0.863^3^0.063^~1~^~A~^^^1^0.787^0.987^2^0.594^1.132^~2, 3~^~06/01/2015~ -~20135~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20135~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20135~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20135~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20135~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~851~^0.062^3^0.005^~1~^~A~^^^1^0.056^0.071^2^0.042^0.082^~2, 3~^~06/01/2015~ -~20135~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20135~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~312~^0.199^6^0.003^~1~^~A~^^^1^0.175^0.229^4^0.191^0.206^~2, 3~^~06/01/2015~ -~20136~^~315~^1.032^6^0.020^~1~^~A~^^^1^0.822^1.270^4^0.978^1.086^~2, 3~^~06/01/2015~ -~20136~^~404~^0.157^4^0.007^~1~^~A~^^^1^0.120^0.180^2^0.128^0.186^~2, 3~^~06/01/2015~ -~20136~^~405~^0.103^4^0.002^~1~^~A~^^^1^0.075^0.130^2^0.093^0.112^~2, 3~^~06/01/2015~ -~20136~^~406~^2.887^4^0.126^~1~^~A~^^^1^2.440^3.580^2^2.346^3.427^~2, 3~^~06/01/2015~ -~20136~^~410~^0.230^2^^~1~^~A~^^^1^0.230^0.230^^^^^~06/01/2015~ -~20136~^~415~^0.097^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.082^0.111^~2, 3~^~06/01/2015~ -~20136~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~606~^0.239^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~612~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~20136~^~613~^0.206^3^0.002^~1~^~A~^^^1^0.204^0.210^2^0.197^0.215^~2, 3~^~06/01/2015~ -~20136~^~614~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.016^0.023^~2, 3~^~06/01/2015~ -~20136~^~615~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20136~^~617~^0.164^3^0.007^~1~^~AS~^^^1^0.156^0.177^2^0.135^0.192^~2, 3~^~06/01/2015~ -~20136~^~618~^0.545^3^0.008^~1~^~AS~^^^1^0.530^0.558^2^0.510^0.580^~2, 3~^~06/01/2015~ -~20136~^~619~^0.039^3^0.001^~1~^~AS~^^^1^0.038^0.040^2^0.036^0.041^~2, 3~^~06/01/2015~ -~20136~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~624~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~06/01/2015~ -~20136~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~626~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2015~ -~20136~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~628~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~06/01/2015~ -~20136~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20136~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~645~^0.171^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~646~^0.584^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2015~ -~20136~^~653~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~654~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~20136~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~665~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20136~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~673~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~20136~^~674~^0.164^3^0.007^~1~^~A~^^^1^0.156^0.177^2^0.135^0.192^~2, 3~^~06/01/2015~ -~20136~^~675~^0.545^3^0.008^~1~^~A~^^^1^0.530^0.557^2^0.511^0.579^~2, 3~^~06/01/2015~ -~20136~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20136~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20136~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~851~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.040^2^0.036^0.041^~2, 3~^~06/01/2015~ -~20136~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20136~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20137~^~312~^0.192^3^0.031^~1~^~A~^^^1^0.138^0.244^2^0.060^0.324^~2, 3~^~03/01/2007~ -~20137~^~315~^0.631^3^0.145^~1~^~A~^^^1^0.427^0.911^2^0.007^1.254^~2, 3~^~03/01/2007~ -~20137~^~404~^0.107^3^0.022^~1~^~A~^^^1^0.080^0.150^2^0.012^0.201^~2, 3~^~03/01/2007~ -~20137~^~405~^0.110^3^0.021^~1~^~A~^^^1^0.070^0.140^2^0.020^0.199^~2, 3~^~03/01/2007~ -~20137~^~406~^0.412^3^0.073^~1~^~A~^^^1^0.335^0.558^2^0.099^0.726^~2, 3~^~03/01/2007~ -~20137~^~415~^0.123^3^0.033^~1~^~A~^^^1^0.090^0.190^2^-0.020^0.267^~2, 3~^~03/01/2007~ -~20137~^~501~^0.052^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~502~^0.131^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~503~^0.157^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~504~^0.261^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~505~^0.239^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~506~^0.096^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~507~^0.063^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~508~^0.185^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~509~^0.083^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~510~^0.185^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~511~^0.340^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~512~^0.127^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~513~^0.183^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~514~^0.353^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~515~^0.580^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~516~^0.216^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~517~^0.240^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~20137~^~518~^0.176^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~20137~^~606~^0.231^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~ -~20137~^~609~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~610~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~611~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~612~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~613~^0.196^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~614~^0.012^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~617~^0.465^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~618~^0.974^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~619~^0.085^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~620~^0.003^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~621~^0.015^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~626~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~627~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~628~^0.031^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~629~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~630~^0.027^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~631~^0.000^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~645~^0.528^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20137~^~646~^1.078^0^^~4~^~BFSN~^~20035~^^^^^^^^^~05/01/2012~ -~20138~^~312~^0.506^2^^~1~^~A~^^^1^0.469^0.543^^^^^~06/01/2013~ -~20138~^~315~^2.735^2^^~1~^~A~^^^1^2.470^3.000^^^^^~06/01/2013~ -~20138~^~404~^0.566^2^^~1~^~A~^^^1^0.556^0.577^^^^^~06/01/2013~ -~20138~^~405~^0.184^2^^~1~^~A~^^^1^0.166^0.203^^^^^~06/01/2013~ -~20138~^~406~^6.375^2^^~1~^~A~^^^1^5.890^6.860^^^^^~06/01/2013~ -~20138~^~410~^0.949^2^^~1~^~A~^^^1^0.912^0.985^^^^^~06/01/2013~ -~20138~^~415~^0.259^2^^~1~^~A~^^^1^0.236^0.283^^^^^~06/01/2013~ -~20138~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~502~^0.442^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~503~^0.566^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~504~^1.112^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~505~^0.416^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~506~^0.251^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~507~^0.309^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~508~^0.772^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~509~^0.352^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~510~^0.687^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~511~^0.696^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~512~^0.379^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~513~^0.543^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~514~^0.802^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~515~^4.839^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~516~^0.579^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~517~^1.594^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~518~^0.759^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20138~^~605~^0.005^2^^~1~^~A~^^^1^0.000^0.010^^^^~1~^~06/01/2013~ -~20138~^~606~^0.196^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20138~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~613~^0.182^2^^~1~^~A~^^^1^0.176^0.188^^^^^~06/01/2013~ -~20138~^~614~^0.012^2^^~1~^~A~^^^1^0.012^0.012^^^^^~03/01/2007~ -~20138~^~615~^0.002^2^^~1~^~A~^^^1^0.001^0.002^^^^~1~^~03/01/2007~ -~20138~^~617~^0.201^2^^~1~^~A~^^^1^0.192^0.209^^^^^~03/01/2007~ -~20138~^~618~^0.573^2^^~1~^~A~^^^1^0.568^0.577^^^^^~06/01/2013~ -~20138~^~619~^0.048^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~ -~20138~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~626~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^^~03/01/2007~ -~20138~^~628~^0.011^2^^~1~^~A~^^^1^0.010^0.012^^^^^~03/01/2007~ -~20138~^~645~^0.213^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20138~^~646~^0.621^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~ -~20138~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~20138~^~851~^0.048^2^^~1~^~A~^^^1^0.048^0.049^^^^^~06/01/2013~ -~20139~^~312~^0.207^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~315~^1.030^1^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~404~^0.095^2^^~1~^~A~^^^1^0.090^0.100^^^^^~06/01/2013~ -~20139~^~405~^0.030^2^^~1~^~A~^^^1^0.020^0.040^^^^^~01/01/2009~ -~20139~^~406~^2.305^2^^~1~^~A~^^^1^2.300^2.310^^^^^~06/01/2013~ -~20139~^~415~^0.070^2^^~1~^~A~^^^1^0.070^0.070^^^^^~06/01/2013~ -~20139~^~501~^0.051^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~503~^0.220^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~504~^0.432^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~505~^0.161^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~506~^0.097^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~508~^0.300^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~509~^0.137^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~510~^0.267^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~511~^0.270^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~512~^0.147^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~513~^0.211^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~514~^0.312^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~515~^1.880^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~516~^0.225^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~517~^0.619^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~20139~^~605~^0.002^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~606~^0.077^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~645~^0.084^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20139~^~646~^0.243^0^^~4~^~BFSN~^~20138~^^^^^^^^^~06/01/2013~ -~20140~^~312~^0.511^3^0.051^~1~^~A~^^^1^0.412^0.582^2^0.291^0.731^~4~^~04/01/2007~ -~20140~^~315~^2.983^3^0.212^~1~^~A~^^^1^2.560^3.220^2^2.070^3.896^~4~^~04/01/2007~ -~20140~^~404~^0.364^3^0.005^~1~^~A~^^^1^0.353^0.370^2^0.341^0.387^~4~^~04/01/2007~ -~20140~^~405~^0.113^3^0.007^~1~^~A~^^^1^0.101^0.125^2^0.084^0.142^~4~^~04/01/2007~ -~20140~^~406~^6.843^3^0.159^~1~^~A~^^^1^6.620^7.150^2^6.161^7.526^~4~^~04/01/2007~ -~20140~^~410~^1.068^3^0.076^~1~^~A~^^^1^0.923^1.180^2^0.741^1.394^~4~^~04/01/2007~ -~20140~^~415~^0.230^3^0.011^~1~^~A~^^^1^0.210^0.247^2^0.184^0.276^~4~^~04/01/2007~ -~20140~^~501~^0.132^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~502~^0.443^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~503~^0.552^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~504~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~505~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~506~^0.258^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~507~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~508~^0.737^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~509~^0.377^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~510~^0.681^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~511~^0.687^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~513~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~514~^0.757^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~515~^4.651^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~516~^0.602^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~517~^1.625^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~518~^0.725^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~20140~^~606~^0.406^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20140~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~613~^0.370^3^0.034^~1~^~A~^^^1^0.306^0.421^2^0.224^0.516^~4~^~04/01/2007~ -~20140~^~614~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.022^0.026^~4~^~04/01/2007~ -~20140~^~615~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^2^0.004^0.004^~4~^~04/01/2007~ -~20140~^~617~^0.423^3^0.053^~1~^~A~^^^1^0.335^0.519^2^0.194^0.652^~4~^~04/01/2007~ -~20140~^~618~^1.193^3^0.110^~1~^~A~^^^1^0.985^1.358^2^0.721^1.666^~4~^~04/01/2007~ -~20140~^~619~^0.065^3^0.002^~1~^~AS~^^^1^0.062^0.068^2^0.057^0.072^~4~^~04/01/2007~ -~20140~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~624~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~04/01/2007~ -~20140~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~626~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~04/01/2007~ -~20140~^~628~^0.019^3^0.003^~1~^~A~^^^1^0.013^0.024^2^0.005^0.033^~4~^~04/01/2007~ -~20140~^~645~^0.445^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20140~^~646~^1.258^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~20140~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2007~ -~20140~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2007~ -~20140~^~851~^0.065^3^0.002^~1~^~A~^^^1^0.062^0.068^2^0.057^0.072^~4~^~04/01/2007~ -~20141~^~312~^0.215^3^0.008^~1~^~A~^^^1^0.199^0.223^2^0.181^0.248^~4~^~04/01/2007~ -~20141~^~315~^1.091^3^0.060^~1~^~A~^^^1^0.973^1.170^2^0.832^1.350^~4~^~04/01/2007~ -~20141~^~404~^0.103^3^0.009^~1~^~A~^^^1^0.090^0.120^2^0.065^0.141^~4~^~04/01/2007~ -~20141~^~405~^0.030^3^0.010^~1~^~A~^^^1^0.020^0.050^2^-0.013^0.073^~4~^~04/01/2007~ -~20141~^~406~^2.570^3^0.175^~1~^~A~^^^1^2.390^2.920^2^1.817^3.323^~4~^~04/01/2007~ -~20141~^~415~^0.080^3^0.000^~1~^~A~^^^1^0.080^0.080^2^0.080^0.080^~4~^~04/01/2007~ -~20142~^~312~^0.810^3^0.080^~1~^~A~^^^1^0.658^0.927^2^0.467^1.152^~2, 3~^~04/01/2007~ -~20142~^~315~^9.240^3^1.216^~1~^~A~^^^1^6.870^10.900^2^4.006^14.473^~2, 3~^~04/01/2007~ -~20142~^~404~^0.390^3^0.081^~1~^~A~^^^1^0.241^0.520^2^0.041^0.739^~2, 3~^~04/01/2007~ -~20142~^~405~^0.270^3^0.010^~1~^~A~^^^1^0.254^0.287^2^0.229^0.311^~2, 3~^~04/01/2007~ -~20142~^~406~^3.363^3^0.314^~1~^~A~^^^1^2.750^3.790^2^2.011^4.716^~2, 3~^~04/01/2007~ -~20142~^~410~^0.942^3^0.111^~1~^~A~^^^1^0.756^1.140^2^0.464^1.419^~2, 3~^~04/01/2007~ -~20142~^~415~^0.482^3^0.065^~1~^~A~^^^1^0.388^0.606^2^0.204^0.760^~2, 3~^~04/01/2007~ -~20142~^~501~^0.139^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~502~^0.510^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~503~^0.501^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~504~^1.068^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~505~^0.376^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~506~^0.428^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~507~^0.236^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~508~^0.698^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~509~^0.458^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~510~^0.686^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~511~^0.517^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~512~^0.301^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~513~^0.747^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~514~^0.820^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~515~^3.349^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~516~^0.477^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~517~^0.664^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~518~^0.622^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20142~^~606~^0.449^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20142~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~613~^0.328^2^^~1~^~A~^^^1^0.313^0.343^1^^^^~04/01/2007~ -~20142~^~614~^0.096^2^^~1~^~A~^^^1^0.088^0.104^1^^^^~04/01/2007~ -~20142~^~615~^0.018^2^^~1~^~A~^^^1^0.017^0.020^1^^^^~04/01/2007~ -~20142~^~617~^0.574^2^^~1~^~A~^^^1^0.565^0.583^1^^^^~04/01/2007~ -~20142~^~618~^0.936^2^^~1~^~A~^^^1^0.873^0.999^1^^^^~04/01/2007~ -~20142~^~619~^0.135^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~20142~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~624~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~04/01/2007~ -~20142~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~626~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~04/01/2007~ -~20142~^~628~^0.011^2^^~1~^~A~^^^1^0.010^0.013^1^^^^~04/01/2007~ -~20142~^~645~^0.589^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20142~^~646~^1.071^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~20142~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2007~ -~20142~^~851~^0.135^2^^~1~^~A~^^^1^0.125^0.146^1^^^^~04/01/2007~ -~20143~^~312~^0.226^2^^~1~^~A~^^^1^0.195^0.256^1^^^^~01/01/2009~ -~20143~^~315~^2.860^2^^~1~^~A~^^^1^2.850^2.870^1^^^^~01/01/2009~ -~20143~^~404~^0.183^3^0.020^~1~^~A~^^^1^0.150^0.220^2^0.096^0.270^~4~^~01/01/2009~ -~20143~^~405~^0.033^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.019^0.048^~4~^~01/01/2009~ -~20143~^~406~^0.909^3^0.080^~1~^~A~^^^1^0.790^1.060^2^0.567^1.251^~4~^~01/01/2009~ -~20143~^~415~^0.097^3^0.007^~1~^~A~^^^1^0.090^0.110^2^0.068^0.125^~4~^~01/01/2009~ -~20143~^~501~^0.041^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~502~^0.149^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~503~^0.146^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~504~^0.311^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~505~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~506~^0.125^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~507~^0.069^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~508~^0.203^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~509~^0.133^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~510~^0.200^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~511~^0.151^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~512~^0.088^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~513~^0.218^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~514~^0.239^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~515~^0.975^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~516~^0.139^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~517~^0.193^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20143~^~518~^0.181^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~20310~^~312~^0.098^42^0.005^~1~^~A~^^^13^0.065^0.145^12^0.088^0.108^~1, 2~^~11/01/2004~ -~20310~^~315~^0.315^42^0.012^~1~^~A~^^^13^0.217^0.537^12^0.288^0.342^~2~^~11/01/2004~ -~20310~^~404~^0.289^3^0.006^~1~^~A~^^^1^0.281^0.300^2^0.264^0.314^~2, 3~^~11/01/2004~ -~20310~^~405~^0.136^3^0.014^~1~^~A~^^^1^0.114^0.161^2^0.077^0.194^~2, 3~^~11/01/2004~ -~20310~^~406~^2.077^3^0.088^~1~^~A~^^^1^1.960^2.250^2^1.696^2.457^~2, 3~^~11/01/2004~ -~20310~^~410~^0.263^3^0.014^~1~^~A~^^^1^0.248^0.290^2^0.205^0.321^~2, 3~^~11/01/2004~ -~20310~^~415~^0.046^3^0.003^~1~^~A~^^^1^0.042^0.051^2^0.035^0.057^~2, 3~^~11/01/2004~ -~20310~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~502~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~503~^0.190^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~504~^0.365^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~505~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~508~^0.240^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~511~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~512~^0.121^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~513~^0.165^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~514~^0.244^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~515~^1.468^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~516~^0.159^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~517~^0.495^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~518~^0.257^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20310~^~605~^0.029^0^^~4~^~BFZN~^~20110~^^^^^^^^^~12/01/2006~ -~20310~^~606~^0.419^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20310~^~612~^0.005^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~613~^0.341^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~614~^0.073^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~617~^0.537^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~618~^0.522^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~619~^0.028^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~620~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~626~^0.045^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20310~^~645~^0.581^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20310~^~646~^0.552^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20314~^~312~^0.314^6^0.071^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~315~^0.485^3^0.125^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~404~^0.385^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~405~^0.201^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~406~^3.627^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~410~^0.424^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20314~^~415~^0.622^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~501~^0.067^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~502~^0.354^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~503~^0.337^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~504~^1.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~505~^0.265^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~506~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~507~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~508~^0.463^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~509~^0.383^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~510~^0.477^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~511~^0.470^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~512~^0.287^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~513~^0.705^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~514~^0.655^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~515~^1.768^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~516~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~517~^0.822^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~518~^0.447^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~606~^0.667^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~613~^0.569^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~614~^0.075^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~617~^1.247^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~618~^2.097^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~619~^0.065^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~626~^0.004^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~645~^1.251^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20314~^~646~^2.163^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20315~^~312~^0.154^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~315~^0.540^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~406~^2.600^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~410~^0.550^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20315~^~415~^0.470^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~20316~^~312~^0.230^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~315~^0.460^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~404~^0.246^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~405~^0.080^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~406~^1.900^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~410~^0.658^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~415~^0.370^0^^~4~^^^^^^^^^^^~04/01/1989~ -~20316~^~501~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~502~^0.261^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~503~^0.248^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~504~^0.850^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~505~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~506~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~507~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~508~^0.340^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~509~^0.282^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~510~^0.351^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~511~^0.345^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~512~^0.211^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~513~^0.518^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~514~^0.482^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~515~^1.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~516~^0.284^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~517~^0.605^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~518~^0.329^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~606~^0.543^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~613~^0.463^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~614~^0.061^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~617~^1.015^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~618~^1.706^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~619~^0.053^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20316~^~645~^1.018^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20316~^~646~^1.759^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~312~^0.209^5^0.048^~1~^~A~^^^4^0.128^0.340^3^0.056^0.362^~1, 2~^~07/01/2014~ -~20317~^~315~^0.376^3^0.049^~1~^~A~^^^2^0.326^0.450^1^-0.252^1.003^~2~^~07/01/2014~ -~20317~^~404~^1.475^20^0.065^~1~^~A~^^^2^1.410^1.540^1^0.649^2.301^~2~^~12/01/2009~ -~20317~^~405~^0.805^20^0.015^~1~^~A~^^^2^0.790^0.820^1^0.614^0.996^~2~^~12/01/2009~ -~20317~^~406~^9.932^20^0.462^~1~^~A~^^^2^9.470^10.394^1^4.062^15.802^~2~^~12/01/2009~ -~20317~^~410~^0.192^3^0.018^~1~^~A~^^^2^0.174^0.212^1^-0.033^0.417^~2~^~12/01/2009~ -~20317~^~415~^0.475^3^0.035^~1~^~A~^^^2^0.426^0.510^1^0.030^0.920^~2~^~12/01/2009~ -~20317~^~501~^0.062^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~502~^0.245^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~503~^0.276^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~504~^1.025^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~505~^0.219^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~506~^0.167^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~507~^0.182^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~508~^0.411^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~509~^0.229^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~510~^0.380^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~511~^0.375^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~513~^0.635^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~514~^0.546^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~515~^1.577^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~516~^0.313^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~517~^0.676^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~518~^0.416^0^^~1~^~A~^^^^^^^^^^~07/01/2014~ -~20317~^~606~^0.532^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~613~^0.453^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~614~^0.060^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~617~^0.994^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~618~^1.672^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~619~^0.052^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~645~^0.997^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20317~^~646~^1.724^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~312~^0.193^6^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~315~^0.498^3^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~404~^0.385^8^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~405~^0.201^9^0.034^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~406~^3.632^8^0.537^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~410~^0.425^6^0.054^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~415~^0.304^3^0.035^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~501~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~502~^0.305^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~503~^0.291^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~504~^0.996^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~505~^0.228^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~506~^0.170^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~507~^0.146^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~508~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~509~^0.330^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~510~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~511~^0.405^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~512~^0.248^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~513~^0.608^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~514~^0.565^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~515~^1.525^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~516~^0.333^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~517~^0.709^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~518~^0.386^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~606~^0.505^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~613~^0.431^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~614~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~617~^0.945^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~618~^1.589^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~619~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~626~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20320~^~645~^0.948^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20320~^~646~^1.638^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20321~^~312~^0.100^56^0.003^~1~^~A~^^^14^0.071^0.163^13^0.093^0.107^~1, 2~^~05/01/2006~ -~20321~^~315~^0.322^52^0.015^~1~^~A~^^^14^0.212^0.574^13^0.290^0.355^~2~^~05/01/2006~ -~20321~^~404~^0.274^11^0.014^~1~^~A~^^^2^0.190^0.360^4^0.235^0.313^~2, 3~^~10/01/2004~ -~20321~^~405~^0.136^11^0.005^~1~^~A~^^^2^0.080^0.156^4^0.121^0.150^~2, 3~^~10/01/2004~ -~20321~^~406~^1.689^11^0.078^~1~^~A~^^^2^1.266^2.500^9^1.510^1.867^~2, 3~^~10/01/2004~ -~20321~^~410~^0.112^32^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20321~^~415~^0.049^6^0.004^~1~^~A~^^^2^0.037^0.060^4^0.038^0.059^~1, 2, 3~^~10/01/2004~ -~20321~^~501~^0.081^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~502~^0.203^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~503~^0.224^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~504~^0.434^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~505~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~506~^0.064^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~507~^0.112^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~508~^0.293^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~509~^0.107^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~510~^0.258^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~511~^0.208^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~512~^0.131^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~513~^0.192^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~514~^0.274^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~515~^2.018^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~516~^0.194^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~517~^0.689^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~518~^0.271^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20321~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~10/01/2004~ -~20321~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~606~^0.176^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~607~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~608~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~609~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~610~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~611~^0.006^10^0.002^~1~^~A~^^^2^0.000^0.033^2^0.000^0.014^~1, 2, 3~^~05/01/2006~ -~20321~^~612~^0.006^10^0.001^~1~^~A~^^^2^0.000^0.028^2^0.002^0.012^~1, 2, 3~^~05/01/2006~ -~20321~^~613~^0.149^10^0.009^~1~^~A~^^^2^0.122^0.268^5^0.149^0.199^~2, 3~^~05/01/2006~ -~20321~^~614~^0.014^7^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~615~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~617~^0.131^10^0.020^~6~^~JA~^^^2^0.074^0.376^2^0.081^0.224^~1, 2, 3~^~05/01/2006~ -~20321~^~618~^0.295^10^0.042^~1~^~A~^^^2^0.071^0.495^3^0.195^0.492^~2, 3~^~05/01/2006~ -~20321~^~619~^0.024^10^0.005^~6~^~JA~^^^2^0.000^0.050^8^0.015^0.040^~1, 2, 3~^~05/01/2006~ -~20321~^~620~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~621~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~624~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~626~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~628~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~629~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~630~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~645~^0.131^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20321~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20321~^~652~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~653~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~654~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~674~^0.131^3^0.062^~1~^~A~^^^1^0.168^0.376^2^-0.012^0.524^~2, 3~^~09/01/2015~ -~20321~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20321~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20321~^~851~^0.024^3^0.008^~1~^~A~^^^1^0.000^0.025^2^-0.027^0.043^~1, 2, 3~^~09/01/2015~ -~20322~^~312~^0.076^7^0.006^~1~^~A~^^^2^0.052^0.099^4^0.058^0.094^~2, 3~^~12/01/2009~ -~20322~^~315~^0.174^7^0.018^~1~^~A~^^^2^0.113^0.264^4^0.123^0.224^~2, 3~^~12/01/2009~ -~20322~^~404~^0.551^14^0.089^~1~^~A~^^^2^0.376^1.124^1^-0.582^1.685^~2~^~12/01/2009~ -~20322~^~405~^0.382^14^0.042^~1~^~A~^^^2^0.250^0.694^1^-0.153^0.918^~2~^~12/01/2009~ -~20322~^~406~^4.968^14^0.468^~1~^~A~^^^2^2.920^7.930^1^-0.977^10.913^~2~^~12/01/2009~ -~20322~^~410~^0.240^5^0.004^~1~^~A~^^^2^0.166^0.330^2^0.221^0.259^~2, 3~^~12/01/2009~ -~20322~^~415~^0.182^7^0.028^~1~^~A~^^^2^0.088^0.324^4^0.103^0.260^~2, 3~^~12/01/2009~ -~20322~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~503~^0.242^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~504~^1.006^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~505~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~508~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~509~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~510~^0.337^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~511~^0.239^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~513~^0.560^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~514~^0.465^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~515~^1.455^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~516~^0.217^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~518~^0.341^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20322~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2009~ -~20322~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20322~^~606~^0.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20322~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20322~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20322~^~609~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~611~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.004^1^-0.007^0.009^~1, 2, 3~^~12/01/2009~ -~20322~^~612~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^1^-0.003^0.004^~1, 2, 3~^~12/01/2009~ -~20322~^~613~^0.175^5^0.009^~1~^~A~^^^2^0.080^0.177^2^0.097^0.171^~2, 3~^~07/01/2013~ -~20322~^~614~^0.038^5^0.003^~1~^~A~^^^2^0.020^0.043^3^0.019^0.039^~2, 3~^~07/01/2013~ -~20322~^~615~^0.004^5^0.000^~1~^~A~^^^2^0.000^0.007^1^0.002^0.003^~1, 2, 3~^~07/01/2013~ -~20322~^~617~^0.386^5^0.023^~6~^~JA~^^^2^0.160^0.395^2^0.198^0.393^~2, 3~^~07/01/2013~ -~20322~^~618~^0.808^5^0.052^~1~^~A~^^^2^0.330^0.836^2^0.409^0.829^~2, 3~^~07/01/2013~ -~20322~^~619~^0.020^5^0.001^~6~^~JA~^^^2^0.007^0.025^3^0.013^0.017^~1, 2, 3~^~07/01/2013~ -~20322~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~625~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~626~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^1^-0.001^0.006^~1, 2, 3~^~07/01/2013~ -~20322~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~630~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~07/01/2013~ -~20322~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~645~^0.390^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20322~^~646~^0.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20322~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~653~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~07/01/2013~ -~20322~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~11/01/2006~ -~20322~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~672~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20322~^~687~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~689~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~20322~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20322~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20322~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20323~^~312~^0.150^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~404~^0.661^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20323~^~405~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~406~^5.291^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20323~^~410~^0.425^1^^~4~^^^^^^^^^^^~10/01/1989~ -~20323~^~415~^0.540^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~501~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~502~^0.311^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~503~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~504~^1.015^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~505~^0.233^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~506~^0.174^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~507~^0.149^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~508~^0.407^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~509~^0.337^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~510~^0.419^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~511~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~512~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~513~^0.620^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~514~^0.576^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~515~^1.554^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~516~^0.339^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~517~^0.723^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~518~^0.393^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~606~^0.478^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~613~^0.408^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~614~^0.054^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~617~^0.894^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~618~^1.503^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~619~^0.047^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~626~^0.003^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~645~^0.897^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20323~^~646~^1.550^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~312~^0.139^10^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~404~^0.713^6^0.160^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~405~^0.433^6^0.099^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~406~^5.202^8^0.899^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~410~^0.383^10^0.065^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~415~^0.385^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~501~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~502~^0.305^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~503~^0.300^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~504~^0.973^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~505~^0.230^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~506~^0.173^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~507~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~508~^0.414^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~509~^0.332^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~510~^0.415^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~511~^0.410^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~512~^0.249^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~513~^0.584^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~514~^0.555^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~515~^1.736^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~516~^0.340^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~517~^0.765^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~518~^0.402^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~606~^0.400^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~613~^0.341^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~614~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~617~^0.748^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~618~^1.258^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~619~^0.039^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~645~^0.751^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20324~^~646~^1.297^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~312~^0.130^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~404~^0.678^20^0.025^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~405~^0.387^21^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~406~^4.566^21^0.196^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~415~^0.390^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~606~^0.234^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~610~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~611~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~613~^0.194^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~614~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~617~^0.424^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~618~^0.719^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~619~^0.020^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~626~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~645~^0.429^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20325~^~646~^0.739^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~312~^0.030^5^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~315~^0.070^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~404~^0.003^8^0.002^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~405~^0.006^8^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~406~^0.033^6^0.013^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~410~^0.154^4^0.052^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~415~^0.005^4^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~501~^0.008^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~502~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~503~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~504~^0.202^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~505~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~506~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~507~^0.033^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~508~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~509~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~510~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~511~^0.068^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~512~^0.045^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~513~^0.107^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~514~^0.115^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~515~^0.299^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~516~^0.052^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~517~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~518~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~606~^0.123^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~613~^0.105^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~614~^0.014^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~617~^0.230^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~618~^0.387^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~619~^0.012^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~626~^0.001^197^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~645~^0.231^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20330~^~646~^0.399^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~312~^0.069^42^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~315~^0.472^35^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~404~^0.163^17^0.014^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~405~^0.013^9^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~406~^1.476^17^0.075^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~410~^0.390^13^0.033^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~415~^0.093^12^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~501~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~502~^0.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~503~^0.116^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~504~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~505~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~506~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~507~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~508~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~509~^0.090^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~510~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~511~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~512~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~513~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~514~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~515~^0.524^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~516~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~517~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~518~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~606~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~613~^0.069^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~614~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~617~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~618~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20345~^~645~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20345~^~646~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~312~^0.144^49^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~315~^0.682^48^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~404~^0.785^36^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~405~^0.494^32^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~406~^5.904^19^0.123^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~410~^0.438^10^0.093^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~415~^0.044^45^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~501~^0.127^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~502~^0.281^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~503~^0.357^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~504~^0.710^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~505~^0.228^69^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~506~^0.183^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~507~^0.219^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~508~^0.520^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~509~^0.312^56^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~510~^0.415^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~511~^0.417^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~512~^0.230^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~513~^0.332^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~514~^0.435^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~515~^3.479^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~516~^0.371^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~517~^1.198^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~518~^0.516^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~606~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~613~^0.148^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~614~^0.007^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~617~^0.087^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~618~^0.391^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~619~^0.022^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~645~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20381~^~646~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20409~^~312~^0.297^3^0.006^~1~^~A~^^^1^0.285^0.304^2^0.271^0.323^~2, 3~^~11/01/2004~ -~20409~^~315~^0.855^3^0.034^~1~^~A~^^^1^0.787^0.896^2^0.707^1.003^~2, 3~^~11/01/2004~ -~20409~^~404~^0.170^1^^~1~^^^^^^^^^^^~03/01/2005~ -~20409~^~405~^0.090^1^^~1~^^^^^^^^^^^~03/01/2005~ -~20409~^~406~^2.100^0^^~1~^^^^^^^^^^^~03/01/2005~ -~20409~^~410~^0.912^3^0.057^~1~^~A~^^^1^0.824^1.020^2^0.665^1.159^~2, 3~^~11/01/2004~ -~20409~^~415~^0.216^3^0.003^~1~^~A~^^^1^0.209^0.219^2^0.201^0.230^~2, 3~^~11/01/2004~ -~20409~^~501~^0.133^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~502~^0.430^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~503~^0.593^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~504~^1.139^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~505~^0.429^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~506~^0.268^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~507~^0.299^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~508~^0.748^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~509~^0.293^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~510~^0.686^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~511~^0.600^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~512~^0.378^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~513~^0.516^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~514~^0.762^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~515~^4.580^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~516~^0.496^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~517~^1.544^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~518~^0.803^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20409~^~605~^0.061^1^^~12~^~MA~^^^^^^^^^^~03/01/2005~ -~20409~^~606~^1.180^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~20409~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~612~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~11/01/2004~ -~20409~^~613~^0.935^3^0.052^~1~^~A~^^^1^0.843^1.023^2^0.711^1.159^~2, 3~^~11/01/2004~ -~20409~^~614~^0.228^3^0.018^~1~^~A~^^^1^0.195^0.256^2^0.151^0.305^~2, 3~^~11/01/2004~ -~20409~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~617~^1.163^3^0.079^~1~^~A~^^^1^1.016^1.287^2^0.823^1.502^~2, 3~^~11/01/2004~ -~20409~^~618~^1.223^3^0.026^~1~^~A~^^^1^1.183^1.273^2^1.109^1.337^~2, 3~^~11/01/2004~ -~20409~^~619~^0.058^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~20409~^~620~^0.042^3^0.004^~1~^~A~^^^1^0.035^0.047^2^0.027^0.057^~2, 3~^~11/01/2004~ -~20409~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~626~^0.073^3^0.007^~1~^~A~^^^1^0.060^0.082^2^0.044^0.103^~2, 3~^~11/01/2004~ -~20409~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~20409~^~628~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~11/01/2004~ -~20409~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20409~^~645~^1.252^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~ -~20409~^~646~^1.331^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20409~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~653~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~11/01/2004~ -~20409~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~11/01/2004~ -~20409~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2004~ -~20409~^~851~^0.058^3^0.001^~1~^~A~^^^1^0.057^0.060^2^0.055^0.062^~2, 3~^~11/01/2004~ -~20410~^~312~^0.098^42^0.005^~1~^~A~^^^13^0.065^0.145^12^0.088^0.108^~1, 2~^~11/01/2004~ -~20410~^~315~^0.315^42^0.012^~1~^~A~^^^13^0.217^0.537^12^0.288^0.342^~2~^~11/01/2004~ -~20410~^~404~^0.030^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20410~^~405~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20410~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20410~^~410~^0.263^3^0.014^~1~^~A~^^^1^0.248^0.290^2^0.205^0.321^~2, 3~^~11/01/2004~ -~20410~^~415~^0.046^3^0.003^~1~^~A~^^^1^0.042^0.051^2^0.035^0.057^~2, 3~^~11/01/2004~ -~20410~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~502~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~503~^0.190^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~504~^0.365^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~505~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~508~^0.240^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~511~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~512~^0.121^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~513~^0.165^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~514~^0.244^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~515~^1.468^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~516~^0.159^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~517~^0.495^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~518~^0.257^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20410~^~605~^0.029^0^^~4~^~BFSN~^~20109~^^^^^^^^^~03/01/2009~ -~20410~^~606~^0.419^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~612~^0.005^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~613~^0.341^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~614~^0.073^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~617~^0.537^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~618~^0.522^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~619~^0.028^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~620~^0.001^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~626~^0.045^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~20410~^~645~^0.581^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20410~^~646~^0.552^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~20420~^~312~^0.289^5^0.007^~1~^~A~^^^2^0.271^0.301^2^0.255^0.323^~2, 3~^~05/01/2006~ -~20420~^~315~^0.917^5^0.062^~1~^~A~^^^2^0.636^1.125^3^0.698^1.137^~2, 3~^~05/01/2006~ -~20420~^~404~^0.090^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~405~^0.060^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~406~^1.700^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~410~^0.431^27^0.026^~1~^^^^^^^^^^^~10/01/1989~ -~20420~^~415~^0.142^4^0.000^~1~^~A~^^^2^0.110^0.174^1^0.139^0.145^~2, 3~^~03/01/2005~ -~20420~^~501~^0.185^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~502~^0.462^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~503~^0.511^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~504~^0.988^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~505~^0.298^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~506~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~507~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~508~^0.668^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~509~^0.243^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~510~^0.588^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~511~^0.474^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~512~^0.298^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~513~^0.438^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~514~^0.624^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~515~^4.596^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~516~^0.441^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~517~^1.569^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~518~^0.617^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20420~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20420~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~606~^0.277^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~607~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~608~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~609~^0.000^5^0.001^~1~^~A~^^^2^0.000^0.004^2^-0.002^0.004^~1, 2, 3~^~05/01/2006~ -~20420~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~611~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~612~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~613~^0.251^5^0.045^~1~^~A~^^^2^0.246^0.486^2^0.229^0.589^~2, 3~^~05/01/2006~ -~20420~^~614~^0.025^5^0.014^~1~^~A~^^^2^0.000^0.078^2^-0.018^0.100^~1, 2, 3~^~05/01/2006~ -~20420~^~615~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~617~^0.171^5^0.008^~6~^~JA~^^^2^0.256^0.292^1^0.220^0.337^~2, 3~^~05/01/2006~ -~20420~^~618~^0.540^5^0.037^~1~^~A~^^^2^0.700^1.052^3^0.761^1.000^~2, 3~^~05/01/2006~ -~20420~^~619~^0.024^5^0.010^~6~^~JA~^^^2^0.000^0.053^2^-0.003^0.080^~1, 2, 3~^~05/01/2006~ -~20420~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~625~^0.000^5^0.001^~1~^~A~^^^2^0.000^0.004^2^-0.003^0.004^~1, 2, 3~^~05/01/2006~ -~20420~^~626~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20420~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~630~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20420~^~645~^0.171^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~646~^0.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~653~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~674~^0.171^3^0.005^~1~^~A~^^^1^0.276^0.290^2^0.262^0.301^~2, 3~^~05/01/2006~ -~20420~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20420~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20420~^~851~^0.024^3^0.016^~1~^~A~^^^1^0.000^0.053^2^-0.038^0.100^~1, 2, 3~^~05/01/2006~ -~20421~^~312~^0.100^56^0.003^~1~^~A~^^^14^0.071^0.163^13^0.093^0.107^~1, 2~^~05/01/2006~ -~20421~^~315~^0.322^52^0.015^~1~^~A~^^^14^0.212^0.574^13^0.290^0.355^~2~^~05/01/2006~ -~20421~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20421~^~405~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20421~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20421~^~410~^0.112^32^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20421~^~415~^0.049^6^0.004^~1~^~A~^^^2^0.037^0.060^4^0.038^0.059^~1, 2, 3~^~03/01/2005~ -~20421~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~502~^0.206^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~503~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~504~^0.440^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~505~^0.133^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~507~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~508~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~509~^0.108^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~510~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~511~^0.211^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~512~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~513~^0.195^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~514~^0.278^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~515~^2.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~516~^0.196^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~517~^0.698^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~518~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20421~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20421~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~606~^0.176^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~607~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~608~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~609~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~610~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~611~^0.006^10^0.002^~1~^~A~^^^2^0.000^0.033^2^0.000^0.014^~1, 2, 3~^~05/01/2006~ -~20421~^~612~^0.006^10^0.001^~1~^~A~^^^2^0.000^0.028^2^0.002^0.012^~1, 2, 3~^~05/01/2006~ -~20421~^~613~^0.149^10^0.009^~1~^~A~^^^2^0.122^0.268^5^0.149^0.199^~2, 3~^~05/01/2006~ -~20421~^~614~^0.014^7^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~615~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~617~^0.131^10^0.020^~6~^~JA~^^^2^0.074^0.376^2^0.081^0.224^~1, 2, 3~^~05/01/2006~ -~20421~^~618~^0.295^10^0.042^~1~^~A~^^^2^0.071^0.495^3^0.195^0.492^~2, 3~^~05/01/2006~ -~20421~^~619~^0.024^10^0.005^~6~^~JA~^^^2^0.000^0.050^8^0.015^0.040^~1, 2, 3~^~05/01/2006~ -~20421~^~620~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~621~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~624~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~626~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~628~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~629~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~630~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~645~^0.131^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~ -~20421~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20421~^~652~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~653~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~654~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~674~^0.131^3^0.062^~1~^~A~^^^1^0.168^0.376^2^-0.012^0.524^~2, 3~^~09/01/2015~ -~20421~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20421~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20421~^~851~^0.024^3^0.008^~1~^~A~^^^1^0.000^0.025^2^-0.027^0.043^~1, 2, 3~^~09/01/2015~ -~20422~^~312~^0.076^7^0.006^~1~^~A~^^^2^0.052^0.099^4^0.058^0.094^~2, 3~^~12/01/2009~ -~20422~^~315~^0.174^7^0.018^~1~^~A~^^^2^0.113^0.264^4^0.123^0.224^~2, 3~^~12/01/2009~ -~20422~^~404~^0.140^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20422~^~405~^0.050^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20422~^~406~^1.000^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20422~^~410~^0.240^5^0.004^~1~^~A~^^^2^0.166^0.330^2^0.221^0.259^~2, 3~^~12/01/2009~ -~20422~^~415~^0.182^7^0.028^~1~^~A~^^^2^0.088^0.324^4^0.103^0.260^~2, 3~^~12/01/2009~ -~20422~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~503~^0.242^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~504~^1.006^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~505~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~508~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~509~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~510~^0.337^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~511~^0.239^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~513~^0.560^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~514~^0.465^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~515~^1.455^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~516~^0.217^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~518~^0.341^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20422~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20422~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20422~^~606~^0.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20422~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20422~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20422~^~609~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~611~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.004^1^-0.007^0.009^~1, 2, 3~^~12/01/2009~ -~20422~^~612~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^1^-0.003^0.004^~1, 2, 3~^~12/01/2009~ -~20422~^~613~^0.175^5^0.009^~1~^~A~^^^2^0.080^0.177^2^0.097^0.171^~2, 3~^~07/01/2013~ -~20422~^~614~^0.038^5^0.003^~1~^~A~^^^2^0.020^0.043^3^0.019^0.039^~2, 3~^~07/01/2013~ -~20422~^~615~^0.004^5^0.000^~1~^~A~^^^2^0.000^0.007^1^0.002^0.003^~1, 2, 3~^~07/01/2013~ -~20422~^~617~^0.386^5^0.023^~6~^~JA~^^^2^0.160^0.395^2^0.198^0.393^~2, 3~^~07/01/2013~ -~20422~^~618~^0.808^5^0.052^~1~^~A~^^^2^0.330^0.836^2^0.409^0.829^~2, 3~^~07/01/2013~ -~20422~^~619~^0.020^5^0.001^~6~^~JA~^^^2^0.007^0.025^3^0.013^0.017^~1, 2, 3~^~07/01/2013~ -~20422~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~625~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~626~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^1^-0.001^0.006^~1, 2, 3~^~07/01/2013~ -~20422~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~630~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~07/01/2013~ -~20422~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~645~^0.390^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20422~^~646~^0.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20422~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~653~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~07/01/2013~ -~20422~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2006~ -~20422~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~672~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20422~^~687~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~689~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~20422~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20422~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20422~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20444~^~312~^0.220^13^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~315~^1.088^6^0.049^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~404~^0.070^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~405~^0.049^19^0.011^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~406~^1.600^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~410~^1.014^6^0.194^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~415~^0.164^7^0.008^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~501~^0.083^95^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~502~^0.255^127^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~503~^0.308^109^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~504~^0.589^125^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~505~^0.258^141^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~506~^0.168^121^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~507~^0.146^53^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~508~^0.381^104^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~509~^0.238^173^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~510~^0.435^109^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~511~^0.594^96^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~512~^0.168^96^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~513~^0.413^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~514~^0.670^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~515~^1.389^83^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~516~^0.325^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~517~^0.335^98^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~518~^0.375^84^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~606~^0.180^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~612~^0.004^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~613~^0.161^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~614~^0.012^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~617~^0.203^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~618~^0.146^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~619~^0.031^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~626~^0.002^19^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20444~^~645~^0.206^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20444~^~646~^0.177^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~312~^0.069^42^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~315~^0.472^35^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~405~^0.013^9^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~410~^0.390^13^0.033^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~415~^0.093^12^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~501~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~502~^0.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~503~^0.116^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~504~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~505~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~506~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~507~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~508~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~509~^0.090^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~510~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~511~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~512~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~513~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~514~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~515~^0.524^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~516~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~517~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~518~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~606~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~613~^0.069^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~614~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~617~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~618~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20445~^~645~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20445~^~646~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20446~^~312~^0.284^2^^~1~^~A~^^^2^0.267^0.300^^^^^~01/01/2010~ -~20446~^~315~^1.035^2^^~1~^~A~^^^2^0.960^1.110^^^^^~01/01/2010~ -~20446~^~404~^0.224^3^0.013^~1~^~A~^^^1^0.198^0.238^2^0.168^0.279^~4~^~03/01/2005~ -~20446~^~405~^0.050^2^^~1~^~A~^^^2^0.045^0.055^^^^^~01/01/2010~ -~20446~^~406~^5.048^6^0.415^~6~^~JA~^^^4^3.780^5.800^3^3.728^6.367^~2~^~01/01/2010~ -~20446~^~410~^0.672^1^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~415~^0.452^2^^~1~^~A~^^^2^0.449^0.455^^^^^~01/01/2010~ -~20446~^~501~^0.103^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~502~^0.271^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~503~^0.339^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~504~^0.656^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~505~^0.215^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~506~^0.183^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~508~^0.398^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~509~^0.216^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~510~^0.470^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~511~^0.651^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~512~^0.185^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~513~^0.433^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~514~^0.795^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~515~^1.395^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~516~^0.358^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~517~^0.484^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~518~^0.366^0^^~1~^~A~^^^^^^^^^^~01/01/2010~ -~20446~^~606~^0.294^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20446~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~613~^0.277^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~614~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~617~^0.258^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~618~^0.305^1^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20446~^~619~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~645~^0.258^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20446~^~646~^0.322^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20446~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20446~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~312~^0.070^3^0.010^~1~^~A~^^^1^0.054^0.089^2^0.027^0.114^~2, 3~^~03/01/2005~ -~20447~^~315~^0.354^3^0.030^~1~^~A~^^^1^0.296^0.394^2^0.226^0.483^~2, 3~^~03/01/2005~ -~20447~^~404~^0.074^0^^~4~^~BFSN~^~20446~^^^^^^^^^~01/01/2010~ -~20447~^~405~^0.019^2^^~1~^~A~^^^1^0.019^0.019^1^^^^~03/01/2005~ -~20447~^~406~^2.309^2^^~1~^~A~^^^1^1.250^3.368^1^^^^~03/01/2005~ -~20447~^~410~^0.323^2^^~1~^~A~^^^1^0.296^0.349^1^^^^~03/01/2005~ -~20447~^~415~^0.156^2^^~1~^~A~^^^1^0.125^0.187^1^^^^~03/01/2005~ -~20447~^~501~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~502~^0.107^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~503~^0.133^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~504~^0.257^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~505~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~507~^0.060^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~508~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~509~^0.086^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~510~^0.185^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~511~^0.256^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~512~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~513~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~514~^0.313^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~515~^0.545^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~516~^0.140^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~517~^0.187^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~518~^0.141^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20447~^~606~^0.074^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20447~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~613~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~614~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~617~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~618~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~619~^0.017^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~645~^0.074^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20447~^~646~^0.091^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~20447~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20447~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~ -~20450~^~312~^0.110^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~315~^1.100^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~404~^0.070^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~405~^0.048^5^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~406~^1.600^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~410~^1.342^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~415~^0.145^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~501~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~502~^0.236^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~503~^0.285^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~504~^0.546^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~505~^0.239^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~506~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~507~^0.135^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~508~^0.353^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~509~^0.221^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~510~^0.403^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~511~^0.551^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~512~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~513~^0.383^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~514~^0.621^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~515~^1.288^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~516~^0.301^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~517~^0.311^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~518~^0.347^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~606~^0.158^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~613~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~614~^0.011^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~617~^0.179^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~618~^0.128^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~619~^0.027^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~645~^0.181^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20450~^~646~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~312~^0.038^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~315~^0.377^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~405~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~410~^0.411^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~415~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~501~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~502~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~503~^0.103^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~504~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~505~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~506~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~507~^0.049^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~508~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~509~^0.080^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~510~^0.145^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~511~^0.198^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~512~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~513~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~514~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~515~^0.464^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~516~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~517~^0.112^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~518~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~606~^0.057^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~613~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~614~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~617~^0.064^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~618~^0.046^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~619~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~645~^0.065^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20451~^~646~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~312~^0.210^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~315~^1.037^3^0.085^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~404~^0.070^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~405~^0.048^0^^~4~^^^^^^^^^^^~10/01/1989~ -~20452~^~406~^1.600^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~410~^1.287^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~415~^0.171^3^0.017^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~501~^0.075^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~502~^0.233^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~503~^0.281^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~504~^0.538^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~505~^0.235^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~506~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~507~^0.133^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~508~^0.348^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~509~^0.217^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~510~^0.397^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~511~^0.542^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~512~^0.153^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~513~^0.377^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~514~^0.611^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~515~^1.268^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~516~^0.296^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~517~^0.306^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~518~^0.342^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~606~^0.140^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~612~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~613~^0.125^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~614~^0.010^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~617~^0.159^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~618~^0.114^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~619~^0.024^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~626~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~645~^0.161^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20452~^~646~^0.138^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~312~^0.072^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~315~^0.357^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~405~^0.016^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~410~^0.397^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~415~^0.059^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~501~^0.027^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~502~^0.084^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~503~^0.102^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~504~^0.195^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~505~^0.085^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~506~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~507~^0.048^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~508~^0.126^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~509~^0.079^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~510~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~511~^0.197^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~512~^0.056^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~513~^0.137^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~514~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~515~^0.460^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~516~^0.108^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~517~^0.111^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~518~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~606~^0.051^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~612~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~613~^0.046^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~617~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~618~^0.041^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~619~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~645~^0.058^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20453~^~646~^0.050^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~312~^0.189^4^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~315~^0.619^4^0.021^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~404~^0.280^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~405~^0.080^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~406~^3.310^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~410~^0.580^2^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~415~^0.103^4^0.004^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~501~^0.162^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~502~^0.335^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~503~^0.490^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~504~^0.867^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~505~^0.243^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~506~^0.198^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~507~^0.358^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~508~^0.616^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~509~^0.333^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~510~^0.540^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~511~^0.467^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~512~^0.257^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~513~^0.372^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~514~^0.518^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~515~^4.571^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~516~^0.401^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~517~^1.395^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~518~^0.598^6^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~606~^0.150^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~609~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~610~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~611~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~612~^0.002^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~613~^0.131^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~614~^0.017^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~617~^0.124^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~618~^0.393^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~619~^0.037^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~620~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~621~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~626~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~627~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~628~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~629~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~630~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~631~^0.000^0^^~1~^^^^^^^^^^^~03/01/1994~ -~20466~^~645~^0.124^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20466~^~646~^0.430^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~312~^0.144^49^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~315~^0.682^48^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~404~^0.120^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~405~^0.040^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~406~^1.250^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~410~^0.438^10^0.093^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~415~^0.044^45^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~501~^0.127^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~502~^0.281^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~503~^0.357^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~504~^0.710^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~505~^0.228^69^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~506~^0.183^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~507~^0.219^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~508~^0.520^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~509~^0.312^56^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~510~^0.415^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~511~^0.417^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~512~^0.230^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~513~^0.332^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~514~^0.435^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~515~^3.479^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~516~^0.371^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~517~^1.198^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~518~^0.516^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~606~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~612~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~613~^0.148^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~614~^0.007^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~617~^0.087^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~618~^0.391^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~619~^0.022^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~626~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20481~^~645~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20481~^~646~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~312~^0.098^42^0.005^~1~^~A~^^^13^0.065^0.145^12^0.088^0.108^~1, 2~^~11/01/2004~ -~20510~^~315~^0.315^42^0.012^~1~^~A~^^^13^0.217^0.537^12^0.288^0.342^~2~^~11/01/2004~ -~20510~^~404~^0.030^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~405~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20510~^~410~^0.263^3^0.014^~1~^~A~^^^1^0.248^0.290^2^0.205^0.321^~2, 3~^~11/01/2004~ -~20510~^~415~^0.046^3^0.003^~1~^~A~^^^1^0.042^0.051^2^0.035^0.057^~2, 3~^~11/01/2004~ -~20510~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~502~^0.138^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~503~^0.190^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~504~^0.365^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~505~^0.137^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~507~^0.096^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~508~^0.240^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~510~^0.220^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~511~^0.192^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~512~^0.121^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~513~^0.165^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~514~^0.244^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~515~^1.468^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~516~^0.159^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~517~^0.495^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~518~^0.257^0^^~1~^~A~^^^^^^^^^^~11/01/2004~ -~20510~^~605~^0.029^0^^~4~^~BFZN~^~20110~^^^^^^^^^~12/01/2006~ -~20510~^~606~^0.419^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20510~^~612~^0.005^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~613~^0.341^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~614~^0.073^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~617~^0.537^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~618~^0.522^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~619~^0.028^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~620~^0.001^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~626~^0.045^0^^~1~^^^^^^^^^^^~12/01/2006~ -~20510~^~645~^0.581^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20510~^~646~^0.552^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20521~^~312~^0.100^56^0.003^~1~^~A~^^^14^0.071^0.163^13^0.093^0.107^~1, 2~^~05/01/2006~ -~20521~^~315~^0.322^52^0.015^~1~^~A~^^^14^0.212^0.574^13^0.290^0.355^~2~^~05/01/2006~ -~20521~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~405~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~410~^0.112^32^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20521~^~415~^0.049^6^0.004^~1~^~A~^^^2^0.037^0.060^4^0.038^0.059^~1, 2, 3~^~03/01/2005~ -~20521~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~502~^0.206^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~503~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~504~^0.440^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~505~^0.133^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~507~^0.113^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~508~^0.297^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~509~^0.108^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~510~^0.262^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~511~^0.211^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~512~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~513~^0.195^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~514~^0.278^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~515~^2.046^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~516~^0.196^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~517~^0.698^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~518~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~20521~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20521~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~606~^0.176^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~607~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~608~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~609~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~610~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~611~^0.006^10^0.002^~1~^~A~^^^2^0.000^0.033^2^0.000^0.014^~1, 2, 3~^~05/01/2006~ -~20521~^~612~^0.006^10^0.001^~1~^~A~^^^2^0.000^0.028^2^0.002^0.012^~1, 2, 3~^~05/01/2006~ -~20521~^~613~^0.149^10^0.009^~1~^~A~^^^2^0.122^0.268^5^0.149^0.199^~2, 3~^~05/01/2006~ -~20521~^~614~^0.014^7^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~615~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~617~^0.131^10^0.020^~6~^~JA~^^^2^0.074^0.376^2^0.081^0.224^~1, 2, 3~^~05/01/2006~ -~20521~^~618~^0.295^10^0.042^~1~^~A~^^^2^0.071^0.495^3^0.195^0.492^~2, 3~^~05/01/2006~ -~20521~^~619~^0.024^10^0.005^~6~^~JA~^^^2^0.000^0.050^8^0.015^0.040^~1, 2, 3~^~05/01/2006~ -~20521~^~620~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~621~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~624~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~626~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~628~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~629~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~630~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~631~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~645~^0.351^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~20521~^~646~^0.319^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~652~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~653~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~654~^0.000^10^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~674~^0.153^3^0.062^~1~^~A~^^^1^0.168^0.376^2^-0.012^0.524^~2, 3~^~09/01/2015~ -~20521~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20521~^~696~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~20521~^~851~^0.027^3^0.008^~1~^~A~^^^1^0.000^0.025^2^-0.027^0.043^~1, 2, 3~^~09/01/2015~ -~20522~^~312~^0.076^7^0.006^~1~^~A~^^^2^0.052^0.099^4^0.058^0.094^~2, 3~^~12/01/2009~ -~20522~^~315~^0.174^7^0.018^~1~^~A~^^^2^0.113^0.264^4^0.123^0.224^~2, 3~^~12/01/2009~ -~20522~^~404~^0.140^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20522~^~405~^0.050^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20522~^~406~^1.000^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20522~^~410~^0.240^5^0.004^~1~^~A~^^^2^0.166^0.330^2^0.221^0.259^~2, 3~^~12/01/2009~ -~20522~^~415~^0.182^7^0.028^~1~^~A~^^^2^0.088^0.324^4^0.103^0.260^~2, 3~^~12/01/2009~ -~20522~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~503~^0.242^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~504~^1.006^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~505~^0.105^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~508~^0.366^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~509~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~510~^0.337^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~511~^0.239^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~512~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~513~^0.560^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~514~^0.465^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~515~^1.455^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~516~^0.217^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~517~^0.746^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~518~^0.341^0^^~1~^~A~^^^^^^^^^^~12/01/2009~ -~20522~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2009~ -~20522~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~20522~^~606~^0.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20522~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20522~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20522~^~609~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~610~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~611~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.004^1^-0.007^0.009^~1, 2, 3~^~12/01/2009~ -~20522~^~612~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.003^1^-0.003^0.004^~1, 2, 3~^~12/01/2009~ -~20522~^~613~^0.175^5^0.009^~1~^~A~^^^2^0.080^0.177^2^0.097^0.171^~2, 3~^~07/01/2013~ -~20522~^~614~^0.038^5^0.003^~1~^~A~^^^2^0.020^0.043^3^0.019^0.039^~2, 3~^~07/01/2013~ -~20522~^~615~^0.004^5^0.000^~1~^~A~^^^2^0.000^0.007^1^0.002^0.003^~1, 2, 3~^~07/01/2013~ -~20522~^~617~^0.386^5^0.023^~6~^~JA~^^^2^0.160^0.395^2^0.198^0.393^~2, 3~^~07/01/2013~ -~20522~^~618~^0.808^5^0.052^~1~^~A~^^^2^0.330^0.836^2^0.409^0.829^~2, 3~^~07/01/2013~ -~20522~^~619~^0.020^5^0.001^~6~^~JA~^^^2^0.007^0.025^3^0.013^0.017^~1, 2, 3~^~07/01/2013~ -~20522~^~620~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~621~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~624~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~625~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~626~^0.003^5^0.000^~1~^~A~^^^2^0.002^0.004^1^-0.001^0.006^~1, 2, 3~^~07/01/2013~ -~20522~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~628~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~629~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~630~^0.002^5^0.000^~1~^~A~^^^2^0.000^0.003^^^^~1, 2, 3~^~07/01/2013~ -~20522~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~645~^0.390^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20522~^~646~^0.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~20522~^~652~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~653~^0.001^5^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~07/01/2013~ -~20522~^~654~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2009~ -~20522~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~672~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20522~^~687~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~689~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~20522~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2006~ -~20522~^~697~^0.000^5^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~857~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20522~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2009~ -~20523~^~312~^0.084^3^0.034^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~315~^0.417^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~404~^0.298^5^0.020^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~405~^0.161^5^0.009^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~406~^1.837^3^0.168^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~410~^0.286^4^0.073^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~415~^0.064^3^0.007^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~501~^0.103^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~502~^0.228^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~503~^0.319^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~504~^0.557^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~505~^0.191^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~506~^0.129^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~507~^0.220^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~508~^0.391^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~509~^0.220^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~510~^0.354^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~511~^0.315^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~512~^0.169^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~513~^0.259^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~514~^0.367^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~515~^2.782^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~516~^0.269^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~517~^0.848^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~518~^0.383^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~606~^0.032^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~612~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~613~^0.028^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~614~^0.003^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~617~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~618~^0.086^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~619~^0.009^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~626~^0.000^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~645~^0.026^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20523~^~646~^0.095^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~312~^0.069^42^0.005^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~315~^0.472^35^0.024^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~404~^0.020^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~405~^0.013^9^0.001^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~406~^0.400^1^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~410~^0.390^13^0.033^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~415~^0.093^12^0.012^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~501~^0.031^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~502~^0.096^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~503~^0.116^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~504~^0.222^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~505~^0.097^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~506~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~507~^0.055^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~508~^0.144^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~509~^0.090^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~510~^0.164^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~511~^0.224^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~512~^0.063^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~513~^0.156^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~514~^0.253^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~515~^0.524^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~516~^0.122^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~517~^0.127^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~518~^0.141^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~606~^0.077^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~608~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~609~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~610~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~611~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~612~^0.002^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~613~^0.069^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~614~^0.005^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~617~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~618~^0.062^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~619~^0.013^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~20545~^~645~^0.088^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20545~^~646~^0.076^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~312~^0.144^49^0.006^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~315~^0.682^48^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~404~^0.785^36^0.015^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~405~^0.494^32^0.016^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~406~^5.904^19^0.123^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~410~^0.438^10^0.093^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~415~^0.044^45^0.003^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~501~^0.127^39^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~502~^0.281^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~503~^0.357^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~504~^0.710^68^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~505~^0.228^69^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~506~^0.183^67^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~507~^0.219^63^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~508~^0.520^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~509~^0.312^56^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~510~^0.415^58^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~511~^0.417^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~512~^0.230^51^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~513~^0.332^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~514~^0.435^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~515~^3.479^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~516~^0.371^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~517~^1.198^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~518~^0.516^49^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~606~^0.155^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~607~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~608~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~609~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~610~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~611~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~612~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~613~^0.148^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~614~^0.007^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~617~^0.087^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~618~^0.391^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~619~^0.022^10^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~620~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~621~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~626~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~627~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~628~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~629~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~630~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~631~^0.000^0^^~4~^~BFZN~^~20081~^^^^^^^^^~09/01/2002~ -~20581~^~645~^0.087^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20581~^~646~^0.413^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~312~^0.278^6^0.053^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~315~^0.910^3^0.251^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~404~^1.187^19^0.059^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~405~^0.475^20^0.022^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~406~^7.654^18^0.503^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~410~^0.684^4^0.085^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~415~^0.178^5^0.030^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~501~^0.254^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~502~^0.561^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~503~^0.784^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~504~^1.369^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~505~^0.470^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~506~^0.317^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~507~^0.540^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~508~^0.962^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~509~^0.540^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~510~^0.871^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~511~^0.774^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~512~^0.415^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~513~^0.638^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~514~^0.902^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~515~^6.840^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~516~^0.662^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~517~^2.084^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~518~^0.941^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~606~^0.328^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~612~^0.004^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~613~^0.291^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~614~^0.032^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~617~^0.270^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~618~^0.893^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~619~^0.093^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~626~^0.001^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~645~^0.271^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20622~^~646~^0.986^0^^~1~^^^^^^^^^^^~10/01/1989~ -~20623~^~312~^0.165^4^0.011^~1~^~A~^^^1^0.140^0.194^3^0.130^0.201^~2, 3~^~08/01/2004~ -~20623~^~315~^0.628^4^0.058^~1~^~A~^^^1^0.524^0.736^3^0.444^0.811^~2, 3~^~08/01/2004~ -~20623~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~08/01/2004~ -~20623~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~08/01/2004~ -~20623~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~08/01/2004~ -~20623~^~410~^0.187^4^0.021^~1~^~A~^^^1^0.142^0.242^3^0.121^0.253^~2, 3~^~08/01/2004~ -~20623~^~415~^0.037^4^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~501~^0.095^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~502~^0.229^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~503~^0.306^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~504~^0.584^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~505~^0.239^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~506~^0.127^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~508~^0.373^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~509~^0.112^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~510~^0.363^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~511~^0.313^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~512~^0.177^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~513~^0.261^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~514~^0.360^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~515~^2.736^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~516~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~517~^0.931^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~518~^0.375^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20623~^~606~^0.340^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20623~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20623~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~613~^0.340^4^0.033^~1~^~A~^^^1^0.275^0.432^3^0.235^0.445^~2, 3~^~08/01/2004~ -~20623~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20623~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~617~^0.120^4^0.019^~1~^~A~^^^1^0.075^0.153^3^0.060^0.179^~1, 2, 3~^~08/01/2004~ -~20623~^~618~^0.585^4^0.061^~1~^~A~^^^1^0.457^0.729^3^0.391^0.780^~2, 3~^~08/01/2004~ -~20623~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20623~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20623~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~645~^0.120^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20623~^~646~^0.602^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~20623~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20623~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~312~^0.165^4^0.011^~1~^~A~^^^1^0.140^0.194^3^0.130^0.201^~2, 3~^~08/01/2004~ -~20624~^~315~^0.628^4^0.058^~1~^~A~^^^1^0.524^0.736^3^0.444^0.811^~2, 3~^~08/01/2004~ -~20624~^~404~^0.194^28^0.010^~1~^~A~^^^1^0.124^0.371^27^0.172^0.215^~2, 3~^~08/01/2004~ -~20624~^~405~^0.072^27^0.006^~1~^~A~^^^1^0.037^0.187^26^0.060^0.083^~1, 2, 3~^~08/01/2004~ -~20624~^~406~^1.198^27^0.063^~1~^~A~^^^1^0.775^2.517^26^1.068^1.327^~2, 3~^~08/01/2004~ -~20624~^~410~^0.187^4^0.021^~1~^~A~^^^1^0.142^0.242^3^0.121^0.253^~2, 3~^~08/01/2004~ -~20624~^~415~^0.037^4^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~501~^0.095^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~502~^0.229^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~503~^0.306^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~504~^0.584^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~505~^0.239^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~506~^0.127^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~507~^0.226^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~508~^0.373^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~509~^0.112^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~510~^0.363^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~511~^0.313^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~512~^0.177^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~513~^0.261^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~514~^0.360^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~515~^2.736^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~516~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~517~^0.931^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~518~^0.375^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20624~^~606~^0.340^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20624~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~613~^0.340^4^0.033^~1~^~A~^^^1^0.275^0.432^3^0.235^0.445^~2, 3~^~08/01/2004~ -~20624~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20624~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~617~^0.120^4^0.019^~1~^~A~^^^1^0.075^0.153^3^0.060^0.179^~1, 2, 3~^~08/01/2004~ -~20624~^~618~^0.585^4^0.061^~1~^~A~^^^1^0.457^0.729^3^0.391^0.780^~2, 3~^~08/01/2004~ -~20624~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20624~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20624~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~645~^0.120^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~646~^0.602^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20624~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20624~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~20628~^~312~^0.188^3^0.026^~1~^~A~^^^1^0.138^0.224^2^0.077^0.298^~2, 3~^~09/01/2004~ -~20628~^~315~^0.818^3^0.040^~1~^~A~^^^1^0.737^0.859^2^0.644^0.991^~2, 3~^~09/01/2004~ -~20628~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~07/01/2007~ -~20628~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~07/01/2007~ -~20628~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~07/01/2007~ -~20628~^~410~^0.248^3^0.014^~1~^~A~^^^1^0.228^0.275^2^0.188^0.308^~2, 3~^~09/01/2004~ -~20628~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~502~^0.264^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~503~^0.327^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~504~^0.627^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~505~^0.260^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~506~^0.150^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~507~^0.243^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~508~^0.399^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~509~^0.127^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~510~^0.390^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~511~^0.367^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~512~^0.197^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~514~^0.397^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~515~^2.958^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~516~^0.330^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~517~^1.010^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~518~^0.413^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20628~^~606~^0.302^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~613~^0.302^3^0.032^~1~^~A~^^^1^0.239^0.341^2^0.165^0.440^~2, 3~^~09/01/2004~ -~20628~^~614~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~617~^0.193^3^0.020^~1~^~A~^^^1^0.155^0.223^2^0.107^0.280^~2, 3~^~09/01/2004~ -~20628~^~618~^0.828^3^0.077^~1~^~A~^^^1^0.684^0.947^2^0.497^1.160^~2, 3~^~09/01/2004~ -~20628~^~619~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~645~^0.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~646~^0.845^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20628~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20628~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~312~^0.188^3^0.026^~1~^~A~^^^1^0.138^0.224^2^0.077^0.298^~2, 3~^~09/01/2004~ -~20629~^~315~^0.818^3^0.040^~1~^~A~^^^1^0.737^0.859^2^0.644^0.991^~2, 3~^~09/01/2004~ -~20629~^~404~^0.194^28^0.010^~1~^~A~^^^1^0.124^0.371^27^0.172^0.215^~2, 3~^~09/01/2004~ -~20629~^~405~^0.072^27^0.006^~1~^~A~^^^1^0.037^0.187^26^0.060^0.083^~1, 2, 3~^~09/01/2004~ -~20629~^~406~^1.198^27^0.063^~1~^~A~^^^1^0.775^2.517^26^1.068^1.327^~2, 3~^~09/01/2004~ -~20629~^~410~^0.248^3^0.014^~1~^~A~^^^1^0.228^0.275^2^0.188^0.308^~2, 3~^~09/01/2004~ -~20629~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~502~^0.264^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~503~^0.327^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~504~^0.627^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~505~^0.260^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~506~^0.150^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~507~^0.243^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~508~^0.399^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~509~^0.127^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~510~^0.390^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~511~^0.367^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~512~^0.197^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~514~^0.397^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~515~^2.958^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~516~^0.330^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~517~^1.010^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~518~^0.413^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20629~^~606~^0.302^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~613~^0.302^3^0.032^~1~^~A~^^^1^0.239^0.341^2^0.165^0.440^~2, 3~^~09/01/2004~ -~20629~^~614~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~617~^0.193^3^0.020^~1~^~A~^^^1^0.155^0.223^2^0.107^0.280^~2, 3~^~09/01/2004~ -~20629~^~618~^0.828^3^0.077^~1~^~A~^^^1^0.684^0.947^2^0.497^1.160^~2, 3~^~09/01/2004~ -~20629~^~619~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~645~^0.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~646~^0.845^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20629~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20629~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20630~^~312~^0.188^3^0.026^~1~^~A~^^^1^0.138^0.224^2^0.077^0.298^~2, 3~^~10/01/2004~ -~20630~^~315~^0.818^3^0.040^~1~^~A~^^^1^0.737^0.859^2^0.644^0.991^~2, 3~^~10/01/2004~ -~20630~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~10/01/2004~ -~20630~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~10/01/2004~ -~20630~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~10/01/2004~ -~20630~^~410~^0.248^3^0.014^~1~^~A~^^^1^0.228^0.275^2^0.188^0.308^~2, 3~^~10/01/2004~ -~20630~^~415~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~502~^0.264^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~503~^0.327^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~504~^0.627^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~505~^0.260^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~506~^0.150^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~507~^0.243^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~508~^0.399^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~509~^0.127^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~510~^0.390^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~511~^0.367^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~512~^0.197^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~514~^0.397^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~515~^2.958^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~516~^0.330^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~517~^1.010^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~518~^0.413^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20630~^~606~^0.302^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~612~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~613~^0.302^3^0.032^~1~^~A~^^^1^0.239^0.341^2^0.165^0.440^~2, 3~^~10/01/2004~ -~20630~^~614~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~617~^0.193^3^0.020^~1~^~A~^^^1^0.155^0.223^2^0.107^0.280^~2, 3~^~10/01/2004~ -~20630~^~618~^0.828^3^0.077^~1~^~A~^^^1^0.684^0.947^2^0.497^1.160^~2, 3~^~10/01/2004~ -~20630~^~619~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~645~^0.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~646~^0.845^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20630~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~653~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20630~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20634~^~312~^0.161^4^0.004^~1~^~A~^^^1^0.148^0.167^3^0.147^0.174^~2, 3~^~09/01/2004~ -~20634~^~315~^0.679^4^0.019^~1~^~A~^^^1^0.640^0.730^3^0.620^0.739^~2, 3~^~09/01/2004~ -~20634~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~09/01/2004~ -~20634~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~09/01/2004~ -~20634~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~09/01/2004~ -~20634~^~410~^0.405^4^0.019^~1~^~A~^^^1^0.377^0.457^3^0.346^0.464^~2, 3~^~09/01/2004~ -~20634~^~415~^0.032^4^0.011^~1~^~A~^^^1^0.000^0.054^3^-0.004^0.068^~1, 2, 3~^~09/01/2004~ -~20634~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~502~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~503~^0.388^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~504~^0.737^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~505~^0.270^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~506~^0.163^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~508~^0.506^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~509~^0.158^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~510~^0.477^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~511~^0.474^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~512~^0.223^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~513~^0.331^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~514~^0.433^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~515~^3.679^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~516~^0.383^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~517~^1.245^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~518~^0.481^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20634~^~606~^0.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~613~^0.268^4^0.028^~1~^~A~^^^1^0.196^0.330^3^0.180^0.356^~2, 3~^~09/01/2004~ -~20634~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~617~^0.166^4^0.006^~1~^~A~^^^1^0.151^0.179^3^0.147^0.185^~2, 3~^~09/01/2004~ -~20634~^~618~^0.733^4^0.050^~1~^~A~^^^1^0.611^0.855^3^0.573^0.892^~2, 3~^~09/01/2004~ -~20634~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~645~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~646~^0.749^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20634~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20634~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~312~^0.161^4^0.004^~1~^~A~^^^1^0.148^0.167^3^0.147^0.174^~2, 3~^~09/01/2004~ -~20635~^~315~^0.679^4^0.019^~1~^~A~^^^1^0.640^0.730^3^0.620^0.739^~2, 3~^~09/01/2004~ -~20635~^~404~^0.194^28^0.010^~1~^~A~^^^1^0.124^0.371^27^0.172^0.215^~2, 3~^~09/01/2004~ -~20635~^~405~^0.072^27^0.006^~1~^~A~^^^1^0.037^0.187^26^0.060^0.083^~1, 2, 3~^~09/01/2004~ -~20635~^~406~^1.198^27^0.063^~1~^~A~^^^1^0.775^2.517^26^1.068^1.327^~2, 3~^~09/01/2004~ -~20635~^~410~^0.405^4^0.019^~1~^~A~^^^1^0.377^0.457^3^0.346^0.464^~2, 3~^~09/01/2004~ -~20635~^~415~^0.032^4^0.011^~1~^~A~^^^1^0.000^0.054^3^-0.004^0.068^~1, 2, 3~^~09/01/2004~ -~20635~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~502~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~503~^0.388^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~504~^0.737^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~505~^0.270^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~506~^0.163^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~508~^0.506^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~509~^0.158^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~510~^0.477^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~511~^0.474^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~512~^0.223^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~513~^0.331^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~514~^0.433^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~515~^3.679^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~516~^0.383^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~517~^1.245^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~518~^0.481^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20635~^~606~^0.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~613~^0.268^4^0.028^~1~^~A~^^^1^0.196^0.330^3^0.180^0.356^~2, 3~^~09/01/2004~ -~20635~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~617~^0.166^4^0.006^~1~^~A~^^^1^0.151^0.179^3^0.147^0.185^~2, 3~^~09/01/2004~ -~20635~^~618~^0.733^4^0.050^~1~^~A~^^^1^0.611^0.855^3^0.573^0.892^~2, 3~^~09/01/2004~ -~20635~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~645~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~646~^0.749^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20635~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20635~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20636~^~312~^0.161^4^0.004^~1~^~A~^^^1^0.148^0.167^3^0.147^0.174^~2, 3~^~10/01/2004~ -~20636~^~315~^0.679^4^0.019^~1~^~A~^^^1^0.640^0.730^3^0.620^0.739^~2, 3~^~10/01/2004~ -~20636~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~10/01/2004~ -~20636~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~10/01/2004~ -~20636~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~10/01/2004~ -~20636~^~410~^0.405^4^0.019^~1~^~A~^^^1^0.377^0.457^3^0.346^0.464^~2, 3~^~10/01/2004~ -~20636~^~415~^0.032^4^0.011^~1~^~A~^^^1^0.000^0.054^3^-0.004^0.068^~1, 2, 3~^~10/01/2004~ -~20636~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~502~^0.296^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~503~^0.388^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~504~^0.737^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~505~^0.270^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~506~^0.163^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~508~^0.506^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~509~^0.158^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~510~^0.477^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~511~^0.474^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~512~^0.223^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~513~^0.331^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~514~^0.433^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~515~^3.679^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~516~^0.383^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~517~^1.245^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~518~^0.481^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~20636~^~606~^0.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~613~^0.268^4^0.028^~1~^~A~^^^1^0.196^0.330^3^0.180^0.356^~2, 3~^~10/01/2004~ -~20636~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~617~^0.166^4^0.006^~1~^~A~^^^1^0.151^0.179^3^0.147^0.185^~2, 3~^~10/01/2004~ -~20636~^~618~^0.733^4^0.050^~1~^~A~^^^1^0.611^0.855^3^0.573^0.892^~2, 3~^~10/01/2004~ -~20636~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~645~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~646~^0.749^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20636~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20636~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~20640~^~312~^0.187^4^0.009^~1~^~A~^^^1^0.174^0.213^3^0.158^0.215^~2, 3~^~09/01/2004~ -~20640~^~315~^0.624^4^0.041^~1~^~A~^^^1^0.552^0.738^3^0.495^0.753^~2, 3~^~09/01/2004~ -~20640~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~07/01/2007~ -~20640~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~07/01/2007~ -~20640~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~07/01/2007~ -~20640~^~410~^0.386^4^0.029^~1~^~A~^^^1^0.342^0.467^3^0.293^0.479^~2, 3~^~09/01/2004~ -~20640~^~415~^0.045^4^0.005^~1~^~A~^^^1^0.037^0.056^3^0.030^0.061^~1, 2, 3~^~09/01/2004~ -~20640~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~502~^0.319^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~503~^0.433^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~504~^0.825^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~505~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~506~^0.180^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~507~^0.299^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~508~^0.598^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~509~^0.202^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~510~^0.501^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~511~^0.424^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~512~^0.252^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~513~^0.356^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~514~^0.476^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~515~^4.238^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~516~^0.429^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~517~^1.442^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~518~^0.546^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20640~^~606~^0.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~613~^0.189^4^0.041^~1~^~A~^^^1^0.075^0.259^3^0.060^0.318^~1, 2, 3~^~09/01/2004~ -~20640~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~617~^0.152^4^0.014^~1~^~A~^^^1^0.114^0.182^3^0.107^0.197^~2, 3~^~09/01/2004~ -~20640~^~618~^0.666^4^0.042^~1~^~A~^^^1^0.546^0.736^3^0.534^0.799^~2, 3~^~09/01/2004~ -~20640~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~645~^0.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~646~^0.683^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20640~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20640~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~312~^0.187^4^0.009^~1~^~A~^^^1^0.174^0.213^3^0.158^0.215^~2, 3~^~09/01/2004~ -~20641~^~315~^0.624^4^0.041^~1~^~A~^^^1^0.552^0.738^3^0.495^0.753^~2, 3~^~09/01/2004~ -~20641~^~404~^0.194^28^0.010^~1~^~A~^^^1^0.124^0.371^27^0.172^0.215^~2, 3~^~09/01/2004~ -~20641~^~405~^0.072^27^0.006^~1~^~A~^^^1^0.037^0.187^26^0.060^0.083^~1, 2, 3~^~09/01/2004~ -~20641~^~406~^1.198^27^0.063^~1~^~A~^^^1^0.775^2.517^26^1.068^1.327^~2, 3~^~09/01/2004~ -~20641~^~410~^0.386^4^0.029^~1~^~A~^^^1^0.342^0.467^3^0.293^0.479^~2, 3~^~09/01/2004~ -~20641~^~415~^0.045^4^0.005^~1~^~A~^^^1^0.037^0.056^3^0.030^0.061^~1, 2, 3~^~09/01/2004~ -~20641~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~502~^0.319^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~503~^0.433^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~504~^0.825^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~505~^0.296^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~506~^0.180^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~507~^0.299^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~508~^0.598^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~509~^0.202^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~510~^0.501^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~511~^0.424^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~512~^0.252^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~513~^0.356^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~514~^0.476^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~515~^4.238^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~516~^0.429^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~517~^1.442^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~518~^0.546^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20641~^~606~^0.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~613~^0.189^4^0.041^~1~^~A~^^^1^0.075^0.259^3^0.060^0.318^~1, 2, 3~^~09/01/2004~ -~20641~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~617~^0.152^4^0.014^~1~^~A~^^^1^0.114^0.182^3^0.107^0.197^~2, 3~^~09/01/2004~ -~20641~^~618~^0.666^4^0.042^~1~^~A~^^^1^0.546^0.736^3^0.534^0.799^~2, 3~^~09/01/2004~ -~20641~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~626~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~645~^0.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~646~^0.683^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20641~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20641~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~312~^0.195^4^0.013^~1~^~A~^^^1^0.177^0.235^3^0.152^0.238^~2, 3~^~09/01/2004~ -~20645~^~315~^0.569^4^0.065^~1~^~A~^^^1^0.492^0.763^3^0.363^0.775^~2, 3~^~09/01/2004~ -~20645~^~404~^0.736^26^0.036^~1~^~A~^^^1^0.479^1.275^25^0.662^0.810^~2, 3~^~07/01/2007~ -~20645~^~405~^0.445^27^0.022^~1~^~A~^^^1^0.211^0.878^26^0.399^0.491^~2, 3~^~07/01/2007~ -~20645~^~406~^5.953^27^0.262^~1~^~A~^^^1^2.868^10.443^26^5.414^6.493^~2, 3~^~07/01/2007~ -~20645~^~410~^0.427^4^0.021^~1~^~A~^^^1^0.366^0.454^3^0.362^0.492^~2, 3~^~09/01/2004~ -~20645~^~415~^0.045^4^0.004^~1~^~A~^^^1^0.037^0.054^3^0.031^0.059^~1, 2, 3~^~09/01/2004~ -~20645~^~501~^0.169^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~502~^0.366^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~503~^0.503^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~504~^0.949^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~505~^0.314^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~506~^0.202^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~507~^0.341^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~508~^0.775^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~509~^0.214^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~510~^0.575^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~511~^0.521^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~512~^0.304^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~514~^0.593^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~515~^5.017^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~516~^0.488^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~517~^1.634^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~518~^0.623^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20645~^~606~^0.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~613~^0.272^4^0.025^~1~^~A~^^^1^0.227^0.343^3^0.192^0.352^~2, 3~^~09/01/2004~ -~20645~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~617~^0.153^4^0.012^~1~^~A~^^^1^0.133^0.183^3^0.116^0.190^~2, 3~^~09/01/2004~ -~20645~^~618~^0.695^4^0.039^~1~^~A~^^^1^0.638^0.802^3^0.572^0.818^~2, 3~^~09/01/2004~ -~20645~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~645~^0.153^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~646~^0.712^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20645~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20645~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~312~^0.195^4^0.013^~1~^~A~^^^1^0.177^0.235^3^0.152^0.238^~2, 3~^~09/01/2004~ -~20646~^~315~^0.569^4^0.065^~1~^~A~^^^1^0.492^0.763^3^0.363^0.775^~2, 3~^~09/01/2004~ -~20646~^~404~^0.194^28^0.010^~1~^~A~^^^1^0.124^0.371^27^0.172^0.215^~2, 3~^~09/01/2004~ -~20646~^~405~^0.072^27^0.006^~1~^~A~^^^1^0.037^0.187^26^0.060^0.083^~1, 2, 3~^~09/01/2004~ -~20646~^~406~^1.198^27^0.063^~1~^~A~^^^1^0.775^2.517^26^1.068^1.327^~2, 3~^~09/01/2004~ -~20646~^~410~^0.427^4^0.021^~1~^~A~^^^1^0.366^0.454^3^0.362^0.492^~2, 3~^~09/01/2004~ -~20646~^~415~^0.045^4^0.004^~1~^~A~^^^1^0.037^0.054^3^0.031^0.059^~1, 2, 3~^~09/01/2004~ -~20646~^~501~^0.169^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~502~^0.366^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~503~^0.503^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~504~^0.949^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~505~^0.314^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~506~^0.202^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~507~^0.341^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~508~^0.775^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~509~^0.214^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~510~^0.575^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~511~^0.521^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~512~^0.304^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~514~^0.593^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~515~^5.017^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~516~^0.488^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~517~^1.634^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~518~^0.623^0^^~1~^~A~^^^^^^^^^^~09/01/2004~ -~20646~^~606~^0.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~613~^0.272^4^0.025^~1~^~A~^^^1^0.227^0.343^3^0.192^0.352^~2, 3~^~09/01/2004~ -~20646~^~614~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~617~^0.153^4^0.012^~1~^~A~^^^1^0.133^0.183^3^0.116^0.190^~2, 3~^~09/01/2004~ -~20646~^~618~^0.695^4^0.039^~1~^~A~^^^1^0.638^0.802^3^0.572^0.818^~2, 3~^~09/01/2004~ -~20646~^~619~^0.017^4^0.000^~1~^~A~^^^1^0.017^0.017^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~645~^0.153^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~646~^0.712^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~20646~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20646~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2004~ -~20647~^~312~^0.535^7^0.006^~1~^~A~^^^2^0.450^0.620^1^0.466^0.605^~2~^~06/01/2010~ -~20647~^~315~^1.002^7^0.007^~1~^~A~^^^2^0.900^1.140^1^0.909^1.096^~2~^~06/01/2010~ -~20647~^~404~^0.413^4^0.003^~1~^~A~^^^2^0.350^0.510^1^0.371^0.456^~2~^~06/01/2010~ -~20647~^~405~^0.073^6^0.013^~1~^~A~^^^2^0.060^0.100^1^-0.096^0.243^~2~^~06/01/2010~ -~20647~^~406~^6.020^3^0.340^~1~^~A~^^^1^5.660^6.700^2^4.556^7.484^~2, 3~^~06/01/2010~ -~20647~^~410~^1.267^3^0.033^~1~^~A~^^^1^1.200^1.300^2^1.123^1.410^~2, 3~^~06/01/2010~ -~20647~^~415~^0.372^3^0.014^~1~^~A~^^^1^0.346^0.395^2^0.311^0.433^~2, 3~^~06/01/2010~ -~20647~^~501~^0.170^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~502~^0.354^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~503~^0.473^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~504~^1.537^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~505~^0.144^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~506~^0.319^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~507~^0.178^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~508~^0.675^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~509~^0.326^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~510~^0.584^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~511~^0.370^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~512~^0.257^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~513~^1.282^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~514~^0.710^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~515~^2.599^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~516~^0.271^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~517~^0.911^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~518~^0.782^0^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~20647~^~605~^0.002^5^0.000^~11~^~JO~^^^2^0.000^0.003^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~606~^0.536^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20647~^~607~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~06/01/2010~ -~20647~^~608~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20647~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~610~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.012^2^-0.001^0.017^~2, 3~^~06/01/2010~ -~20647~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20647~^~612~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~06/01/2010~ -~20647~^~613~^0.393^3^0.010^~1~^~A~^^^1^0.378^0.413^2^0.348^0.438^~2, 3~^~06/01/2010~ -~20647~^~614~^0.071^3^0.002^~1~^~A~^^^1^0.068^0.075^2^0.062^0.080^~2, 3~^~06/01/2010~ -~20647~^~615~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~06/01/2010~ -~20647~^~617~^0.895^3^0.029^~1~^~AS~^^^1^0.840^0.936^2^0.772^1.018^~2, 3~^~06/01/2010~ -~20647~^~618~^2.552^3^0.120^~1~^~AS~^^^1^2.412^2.790^2^2.037^3.067^~2, 3~^~06/01/2010~ -~20647~^~619~^0.044^3^0.003^~1~^~AS~^^^1^0.038^0.048^2^0.031^0.057^~2, 3~^~06/01/2010~ -~20647~^~620~^0.020^3^0.000^~1~^~A~^^^1^0.019^0.020^2^0.018^0.021^~2, 3~^~06/01/2010~ -~20647~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~624~^0.015^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~06/01/2010~ -~20647~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2010~ -~20647~^~626~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2010~ -~20647~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~628~^0.020^3^0.001^~1~^~A~^^^1^0.017^0.021^2^0.014^0.025^~2, 3~^~06/01/2010~ -~20647~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2010~ -~20647~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~645~^0.924^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20647~^~646~^2.618^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20647~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20647~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~06/01/2010~ -~20647~^~654~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~06/01/2010~ -~20647~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~663~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~665~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2010~ -~20647~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2010~ -~20647~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20647~^~673~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2010~ -~20647~^~674~^0.895^3^0.029^~1~^~A~^^^1^0.840^0.936^2^0.772^1.018^~2, 3~^~06/01/2010~ -~20647~^~675~^2.549^3^0.120^~1~^~A~^^^1^2.409^2.787^2^2.034^3.064^~2, 3~^~06/01/2010~ -~20647~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2010~ -~20647~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20647~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20647~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~851~^0.044^3^0.003^~1~^~A~^^^1^0.038^0.048^2^0.031^0.057^~2, 3~^~06/01/2010~ -~20647~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20647~^~858~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2010~ -~20648~^~312~^0.253^9^0.031^~1~^~A~^^^3^0.190^0.354^2^0.119^0.387^~2~^~04/01/2014~ -~20648~^~315~^1.258^9^0.025^~1~^~A~^^^3^1.060^1.510^2^1.151^1.365^~2~^~04/01/2014~ -~20648~^~404~^0.329^8^0.053^~1~^~A~^^^3^0.120^0.500^2^0.102^0.557^~2~^~04/01/2014~ -~20648~^~405~^0.061^8^0.008^~1~^~A~^^^3^0.030^0.090^2^0.025^0.096^~2~^~04/01/2014~ -~20648~^~406~^4.496^5^0.690^~1~^~A~^^^2^3.634^5.620^1^-4.275^13.268^~2~^~04/01/2014~ -~20648~^~410~^0.539^8^0.201^~1~^~A~^^^3^0.110^0.950^2^-0.327^1.405^~2~^~04/01/2014~ -~20648~^~415~^0.325^5^0.020^~1~^~A~^^^2^0.267^0.368^1^0.074^0.576^~2~^~04/01/2014~ -~20648~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~502~^0.312^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~503~^0.309^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~504~^1.085^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~505~^0.174^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~506~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~507~^0.165^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~508~^0.441^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~509~^0.225^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~510~^0.387^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~511~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~512~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~513~^0.758^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~514~^0.556^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~515~^1.741^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~516~^0.313^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~517~^0.651^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~518~^0.411^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20648~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~606~^0.528^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~607~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~06/01/2010~ -~20648~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~610~^0.007^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.011^~2, 3~^~04/01/2014~ -~20648~^~611~^0.001^4^0.001^~1~^~A~^^^2^0.001^0.002^1^-0.005^0.008^~2~^~04/01/2014~ -~20648~^~612~^0.002^4^0.000^~1~^~A~^^^2^0.002^0.003^1^-0.001^0.005^~2~^~06/01/2010~ -~20648~^~613~^0.446^6^0.073^~1~^~A~^^^2^0.378^0.561^1^-0.458^1.393^~2~^~04/01/2014~ -~20648~^~614~^0.043^6^0.005^~1~^~A~^^^2^0.039^0.056^1^-0.017^0.107^~2~^~04/01/2014~ -~20648~^~615~^0.006^6^0.001^~1~^~A~^^^2^0.005^0.008^1^-0.001^0.013^~2~^~06/01/2010~ -~20648~^~617~^0.920^6^0.111^~6~^~JA~^^^2^0.818^1.149^1^-0.445^2.374^~2~^~04/01/2014~ -~20648~^~618~^1.336^6^0.101^~6~^~JA~^^^2^1.234^1.618^1^0.114^2.686^~2~^~04/01/2014~ -~20648~^~619~^0.061^6^0.002^~6~^~JA~^^^2^0.058^0.072^1^0.039^0.089^~2~^~04/01/2014~ -~20648~^~620~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~06/01/2010~ -~20648~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~624~^0.004^5^0.000^~1~^~A~^^^2^0.003^0.005^1^0.000^0.008^~2~^~06/01/2010~ -~20648~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~06/01/2010~ -~20648~^~626~^0.011^6^0.002^~6~^~JA~^^^2^0.000^0.014^1^-0.013^0.036^~2~^~04/01/2014~ -~20648~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~628~^0.009^6^0.000^~1~^~A~^^^2^0.009^0.011^1^0.009^0.010^~2~^~04/01/2014~ -~20648~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2010~ -~20648~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2010~ -~20648~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~645~^0.943^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~646~^1.403^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~06/01/2010~ -~20648~^~653~^0.003^6^0.000^~1~^~A~^^^2^0.002^0.003^1^0.002^0.004^~2~^~06/01/2010~ -~20648~^~654~^0.007^6^0.000^~1~^~A~^^^2^0.006^0.008^1^0.003^0.012^~2~^~06/01/2010~ -~20648~^~662~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.011^0.013^~1, 2~^~04/01/2014~ -~20648~^~663~^0.001^4^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.011^0.013^~1, 2~^~04/01/2014~ -~20648~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~665~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2010~ -~20648~^~670~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20648~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2010~ -~20648~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~673~^0.010^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.010^0.016^~2, 3~^~04/01/2014~ -~20648~^~674~^0.919^3^0.019^~1~^~A~^^^1^0.818^0.882^2^0.773^0.934^~2, 3~^~04/01/2014~ -~20648~^~675~^1.331^3^0.033^~1~^~A~^^^1^1.231^1.342^2^1.152^1.437^~2, 3~^~04/01/2014~ -~20648~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2010~ -~20648~^~687~^0.001^5^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.008^0.010^~1, 2~^~04/01/2014~ -~20648~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2010~ -~20648~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20648~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~20648~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~851~^0.061^3^0.002^~1~^~A~^^^1^0.058^0.064^2^0.053^0.071^~2, 3~^~04/01/2014~ -~20648~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2010~ -~20648~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2010~ -~20649~^~312~^0.475^24^0.034^~1~^~A~^^^1^0.283^0.928^23^0.406^0.545^~4~^~07/01/2011~ -~20649~^~315~^3.399^24^0.135^~1~^~A~^^^1^1.990^4.547^23^3.119^3.679^~4~^~07/01/2011~ -~20649~^~404~^0.297^24^0.007^~1~^~A~^^^1^0.230^0.371^23^0.282^0.312^~4~^~07/01/2011~ -~20649~^~405~^0.188^24^0.009^~1~^~A~^^^1^0.131^0.311^23^0.170^0.206^~4~^~07/01/2011~ -~20649~^~406~^5.347^24^0.114^~1~^~A~^^^1^4.405^7.086^23^5.111^5.584^~4~^~07/01/2011~ -~20649~^~410~^1.011^24^0.031^~1~^~A~^^^1^0.695^1.470^23^0.947^1.076^~4~^~07/01/2011~ -~20649~^~415~^0.191^23^0.005^~1~^~A~^^^1^0.142^0.233^22^0.180^0.202^~4~^~07/01/2011~ -~20649~^~606~^0.430^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~645~^0.283^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20649~^~646~^1.167^0^^~4~^~BFZN~^~20080~^^^^^^^^^~07/01/2011~ -~20650~^~312~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~315~^0.430^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~404~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~405~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~20650~^~406~^1.329^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~410~^0.184^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~415~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~605~^0.001^1^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~606~^0.303^1^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~613~^0.269^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~614~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~617~^0.376^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~618~^0.475^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~626~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~645~^0.385^1^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~646~^0.475^1^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20650~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~653~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~662~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~20650~^~693~^0.001^1^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~20651~^~312~^0.129^6^0.005^~1~^~A~^^^1^0.110^0.141^5^0.117^0.140^~2, 3~^~03/01/2015~ -~20651~^~315~^1.140^6^0.054^~1~^~A~^^^1^0.928^1.310^5^1.000^1.280^~2, 3~^~03/01/2015~ -~20651~^~404~^0.097^3^0.007^~1~^~A~^^^1^0.090^0.110^2^0.068^0.125^~2, 3~^~03/01/2015~ -~20651~^~405~^0.070^3^0.001^~1~^~A~^^^1^0.068^0.072^2^0.065^0.075^~2, 3~^~03/01/2015~ -~20651~^~406~^1.903^3^0.137^~1~^~A~^^^1^1.640^2.100^2^1.314^2.492^~2, 3~^~03/01/2015~ -~20651~^~410~^0.275^2^^~1~^~A~^^^1^0.270^0.280^1^^^^~03/01/2015~ -~20651~^~415~^0.110^3^0.006^~1~^~A~^^^1^0.100^0.120^2^0.085^0.135^~2, 3~^~03/01/2015~ -~20651~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~606~^0.213^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~609~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2015~ -~20651~^~610~^0.013^2^^~1~^~A~^^^1^0.015^0.019^1^^^^~03/01/2015~ -~20651~^~611~^0.003^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2015~ -~20651~^~612~^0.008^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~03/01/2015~ -~20651~^~613~^0.161^2^^~1~^~A~^^^1^0.196^0.223^1^^^^~03/01/2015~ -~20651~^~614~^0.020^2^^~1~^~A~^^^1^0.021^0.031^1^^^^~03/01/2015~ -~20651~^~615~^0.003^2^^~1~^~A~^^^1^0.004^0.004^^^^^~03/01/2015~ -~20651~^~617~^0.297^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~618~^0.259^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~628~^0.002^2^^~1~^~A~^^^1^0.003^0.003^^^^^~03/01/2015~ -~20651~^~629~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~03/01/2015~ -~20651~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~645~^0.300^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~646~^0.269^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~652~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~03/01/2015~ -~20651~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~654~^0.003^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2015~ -~20651~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~665~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~673~^0.001^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~03/01/2015~ -~20651~^~674~^0.297^2^^~1~^~A~^^^1^0.362^0.410^1^^^^~03/01/2015~ -~20651~^~675~^0.259^2^^~1~^~A~^^^1^0.325^0.350^1^^^^~03/01/2015~ -~20651~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~ -~20651~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~20651~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~851~^0.008^2^^~1~^~A~^^^1^0.010^0.012^1^^^^~03/01/2015~ -~20651~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20651~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2015~ -~20652~^~312~^0.180^3^0.006^~1~^~A~^^^1^0.167^0.188^2^0.152^0.207^~2, 3~^~06/01/2015~ -~20652~^~315~^0.986^3^0.027^~1~^~A~^^^1^0.938^1.030^2^0.871^1.100^~2, 3~^~06/01/2015~ -~20652~^~404~^0.197^3^0.013^~1~^~A~^^^1^0.170^0.210^2^0.139^0.254^~2, 3~^~06/01/2015~ -~20652~^~405~^0.133^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.104^0.162^~2, 3~^~06/01/2015~ -~20652~^~406~^2.657^3^0.070^~1~^~A~^^^1^2.520^2.750^2^2.356^2.957^~2, 3~^~06/01/2015~ -~20652~^~410~^0.260^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20652~^~415~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~06/01/2015~ -~20653~^~312~^0.390^3^0.008^~1~^~A~^^^1^0.376^0.405^2^0.353^0.426^~2, 3~^~06/01/2015~ -~20653~^~315~^2.110^3^0.030^~1~^~A~^^^1^2.080^2.170^2^1.981^2.239^~2, 3~^~06/01/2015~ -~20653~^~404~^0.550^3^0.042^~1~^~A~^^^1^0.470^0.610^2^0.371^0.729^~2, 3~^~06/01/2015~ -~20653~^~405~^0.313^3^0.012^~1~^~A~^^^1^0.290^0.330^2^0.261^0.365^~2, 3~^~06/01/2015~ -~20653~^~406~^8.630^3^0.096^~1~^~A~^^^1^8.510^8.820^2^8.217^9.043^~2, 3~^~06/01/2015~ -~20653~^~410~^0.700^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20653~^~415~^0.240^2^^~1~^~A~^^^1^0.230^0.250^1^^^^~06/01/2015~ -~20653~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~606~^0.324^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~612~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2015~ -~20653~^~613~^0.282^2^^~1~^~A~^^^1^0.253^0.311^1^^^^~06/01/2015~ -~20653~^~614~^0.026^2^^~1~^~A~^^^1^0.025^0.027^1^^^^~06/01/2015~ -~20653~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~20653~^~617~^0.227^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~618~^0.791^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~619~^0.053^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~624~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~06/01/2015~ -~20653~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~628~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~06/01/2015~ -~20653~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~645~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~646~^0.846^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~20653~^~653~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20653~^~654~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~06/01/2015~ -~20653~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~665~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20653~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~671~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2015~ -~20653~^~672~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20653~^~673~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2015~ -~20653~^~674~^0.227^2^^~1~^~A~^^^1^0.205^0.250^1^^^^~06/01/2015~ -~20653~^~675~^0.790^2^^~1~^~A~^^^1^0.696^0.884^1^^^^~06/01/2015~ -~20653~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2015~ -~20653~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~687~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2015~ -~20653~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20653~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20653~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~851~^0.053^2^^~1~^~A~^^^1^0.044^0.062^1^^^^~06/01/2015~ -~20653~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20653~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20654~^~312~^0.069^6^0.005^~1~^~A~^^^1^0.054^0.084^5^0.056^0.082^~2, 3~^~06/01/2015~ -~20654~^~315~^1.227^6^0.049^~1~^~A~^^^1^1.030^1.330^5^1.101^1.352^~2, 3~^~06/01/2015~ -~20654~^~404~^0.095^2^^~1~^~A~^^^1^0.090^0.100^1^^^^~06/01/2015~ -~20654~^~405~^0.082^2^^~1~^~A~^^^1^0.081^0.083^1^^^^~06/01/2015~ -~20654~^~406~^1.465^2^^~1~^~A~^^^1^1.350^1.580^1^^^^~06/01/2015~ -~20654~^~410~^0.260^2^^~1~^~A~^^^1^0.220^0.300^1^^^^~06/01/2015~ -~20654~^~415~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~06/01/2015~ -~20654~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~502~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~503~^0.114^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~504~^0.264^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~505~^0.208^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~506~^0.079^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~507~^0.070^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~508~^0.174^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~509~^0.149^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~510~^0.134^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~511~^0.308^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~512~^0.084^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~513~^0.174^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~514~^0.289^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~515~^0.478^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~516~^0.154^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~517~^0.155^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~518~^0.174^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20654~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20654~^~605~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~606~^0.203^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~610~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~06/01/2015~ -~20654~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~612~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.013^3^0.012^0.014^~2, 3~^~06/01/2015~ -~20654~^~613~^0.136^4^0.078^~1~^~A~^^^1^0.000^0.272^3^-0.114^0.385^~2, 3~^~06/01/2015~ -~20654~^~614~^0.030^4^0.003^~1~^~A~^^^1^0.023^0.037^3^0.021^0.040^~2, 3~^~06/01/2015~ -~20654~^~615~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~06/01/2015~ -~20654~^~617~^0.463^4^0.017^~1~^~AS~^^^1^0.414^0.492^3^0.409^0.518^~2, 3~^~06/01/2015~ -~20654~^~618~^0.428^4^0.017^~1~^~AS~^^^1^0.378^0.455^3^0.373^0.482^~2, 3~^~06/01/2015~ -~20654~^~619~^0.014^4^0.002^~1~^~AS~^^^1^0.010^0.016^3^0.010^0.019^~2, 3~^~06/01/2015~ -~20654~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~624~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~06/01/2015~ -~20654~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~626~^0.002^4^0.000^~1~^~AS~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~06/01/2015~ -~20654~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~628~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~06/01/2015~ -~20654~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~20654~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20654~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~645~^0.596^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~646~^0.446^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.004^~1, 2, 3~^~06/01/2015~ -~20654~^~653~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~20654~^~654~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~06/01/2015~ -~20654~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~663~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~06/01/2015~ -~20654~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~665~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20654~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~20654~^~673~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~06/01/2015~ -~20654~^~674~^0.463^4^0.017^~1~^~A~^^^1^0.414^0.492^3^0.409^0.517^~2, 3~^~06/01/2015~ -~20654~^~675~^0.427^4^0.017^~1~^~A~^^^1^0.377^0.455^3^0.372^0.482^~2, 3~^~06/01/2015~ -~20654~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20654~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20654~^~697~^0.123^4^0.071^~1~^~A~^^^1^0.000^0.262^3^-0.104^0.349^~1, 2, 3~^~06/01/2015~ -~20654~^~851~^0.014^4^0.002^~1~^~A~^^^1^0.010^0.016^3^0.010^0.019^~2, 3~^~06/01/2015~ -~20654~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20654~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~312~^0.064^3^0.002^~1~^~A~^^^1^0.062^0.067^2^0.056^0.071^~2, 3~^~06/01/2015~ -~20655~^~315~^0.206^3^0.003^~1~^~A~^^^1^0.202^0.212^2^0.192^0.219^~2, 3~^~06/01/2015~ -~20655~^~404~^0.120^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~405~^0.093^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~406~^0.450^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~410~^0.210^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20655~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~502~^0.099^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~503~^0.089^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~504~^0.355^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~505~^0.158^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~506~^0.059^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~507~^0.069^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~508~^0.148^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~509~^0.118^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~510~^0.108^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~511~^0.178^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~512~^0.089^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~513~^0.207^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~514~^0.187^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~515~^0.464^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~516~^0.118^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~517~^0.286^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~518~^0.148^0^^~1~^~A~^^^^^^^^^^~09/01/2015~ -~20655~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20655~^~605~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~606~^0.152^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~610~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~06/01/2015~ -~20655~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~06/01/2015~ -~20655~^~612~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.009^2^-0.003^0.013^~2, 3~^~06/01/2015~ -~20655~^~613~^0.088^3^0.088^~1~^~A~^^^1^0.000^0.263^2^-0.290^0.465^~2, 3~^~06/01/2015~ -~20655~^~614~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.040^2^0.028^0.045^~2, 3~^~06/01/2015~ -~20655~^~615~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~06/01/2015~ -~20655~^~617~^0.477^3^0.005^~1~^~AS~^^^1^0.470^0.487^2^0.455^0.499^~2, 3~^~06/01/2015~ -~20655~^~618~^0.912^3^0.016^~1~^~AS~^^^1^0.888^0.943^2^0.842^0.982^~2, 3~^~06/01/2015~ -~20655~^~619~^0.032^3^0.001^~1~^~AS~^^^1^0.030^0.033^2^0.028^0.035^~2, 3~^~06/01/2015~ -~20655~^~620~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~624~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~06/01/2015~ -~20655~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~20655~^~626~^0.003^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2015~ -~20655~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~628~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~06/01/2015~ -~20655~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2015~ -~20655~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~645~^0.663^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~646~^0.947^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~20655~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~663~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~20655~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~665~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~06/01/2015~ -~20655~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~673~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~674~^0.474^3^0.005^~1~^~A~^^^1^0.466^0.483^2^0.452^0.495^~2, 3~^~06/01/2015~ -~20655~^~675~^0.909^3^0.015^~1~^~A~^^^1^0.887^0.939^2^0.843^0.976^~2, 3~^~06/01/2015~ -~20655~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~20655~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~687~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~06/01/2015~ -~20655~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~20655~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20655~^~697~^0.170^3^0.085^~1~^~A~^^^1^0.000^0.255^2^-0.195^0.535^~1, 2, 3~^~06/01/2015~ -~20655~^~851~^0.032^3^0.001^~1~^~A~^^^1^0.030^0.033^2^0.028^0.035^~2, 3~^~06/01/2015~ -~20655~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20655~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~20656~^~312~^0.125^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20656~^~315~^1.940^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20657~^~312~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.026^1^-0.005^0.045^~1, 2, 3~^~06/01/2015~ -~20657~^~315~^0.094^3^0.002^~1~^~A~^^^1^0.070^0.114^1^0.069^0.119^~2, 3~^~06/01/2015~ -~20657~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~20657~^~405~^0.079^2^^~1~^~A~^^^1^0.078^0.080^^^^^~06/01/2015~ -~20657~^~406~^0.240^2^^~1~^~A~^^^1^0.230^0.250^^^^^~06/01/2015~ -~20657~^~410~^0.140^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20657~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~06/01/2015~ -~20657~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~20657~^~502~^0.103^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~503~^0.103^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~504~^0.452^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~505~^0.164^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~506~^0.072^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~507~^0.072^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~508~^0.175^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~509~^0.144^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~510~^0.103^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~511~^0.154^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~512~^0.092^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~513~^0.236^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~514~^0.175^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~515~^0.544^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~516~^0.103^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~517~^0.349^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~518~^0.164^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~20657~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~20657~^~605~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~606~^0.150^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~612~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~06/01/2015~ -~20657~^~613~^0.106^2^^~1~^~A~^^^1^0.000^0.212^1^^^^~06/01/2015~ -~20657~^~614~^0.029^2^^~1~^~A~^^^1^0.027^0.031^1^^^^~06/01/2015~ -~20657~^~615~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2015~ -~20657~^~617~^0.155^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~618~^0.315^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~624~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20657~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~628~^0.003^2^^~1~^~A~^^^1^0.002^0.004^1^^^~1~^~06/01/2015~ -~20657~^~629~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20657~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~645~^0.259^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~646~^0.329^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~20657~^~653~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20657~^~654~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~20657~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~663~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~06/01/2015~ -~20657~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~665~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~20657~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~673~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~06/01/2015~ -~20657~^~674~^0.153^2^^~1~^~A~^^^1^0.153^0.154^1^^^^~06/01/2015~ -~20657~^~675~^0.314^2^^~1~^~A~^^^1^0.303^0.325^1^^^^~06/01/2015~ -~20657~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~20657~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~20657~^~697~^0.100^2^^~1~^~A~^^^1^0.000^0.199^1^^^~1~^~06/01/2015~ -~20657~^~851~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~06/01/2015~ -~20657~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~20657~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~21003~^~312~^0.075^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~315~^0.186^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~404~^0.090^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~405~^0.150^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~406~^1.600^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~410~^0.810^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~415~^0.090^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21003~^~501~^0.144^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~502~^0.453^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~503~^0.548^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~504~^0.875^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~505~^0.683^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~506~^0.281^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~508~^0.540^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~509~^0.396^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~510~^0.635^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~511~^0.624^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~512~^0.287^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~513~^0.559^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~514~^0.890^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~515~^2.036^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~516~^0.513^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~517~^0.727^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~518~^0.624^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21003~^~606~^5.300^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21003~^~607~^0.013^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~608~^0.008^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~609~^0.006^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~610~^0.022^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~611~^0.022^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~612~^0.147^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~613~^3.416^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~614~^1.647^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~617~^8.587^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~618~^4.551^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~619~^0.341^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~620~^0.069^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~621~^0.014^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~626~^0.357^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~628~^0.011^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~629~^0.001^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~630~^0.001^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21003~^~645~^8.960^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21003~^~646~^4.980^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21004~^~312~^0.072^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~315~^0.159^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~404~^0.350^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~405~^0.310^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~406~^1.040^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~410~^0.870^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~415~^0.140^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21004~^~501~^0.142^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~502~^0.456^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~503~^0.521^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~504~^0.863^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~505~^0.722^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~506~^0.281^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~508~^0.519^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~509~^0.383^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~510~^0.564^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~511~^0.620^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~512~^0.311^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~513~^0.556^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~514~^0.907^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~515~^1.974^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~516~^0.439^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~517~^0.620^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~518~^0.575^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21004~^~606~^3.080^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21004~^~607~^0.015^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~608~^0.009^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~609~^0.007^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~610~^0.014^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~611~^0.015^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~612~^0.075^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~613~^2.043^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~614~^0.890^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~617~^5.530^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~618~^3.691^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~619~^0.243^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~620~^0.061^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~621~^0.016^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~626~^0.168^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~628~^0.012^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~629~^0.002^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~630~^0.001^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1994~ -~21004~^~645~^5.710^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21004~^~646~^4.010^0^^~4~^^^^^^^^^^^~02/01/1995~ -~21005~^~312~^0.244^4^0.047^~1~^~A~^^^1^0.111^0.315^3^0.093^0.395^~2, 3~^~09/01/2006~ -~21005~^~315~^0.138^4^0.005^~1~^~A~^^^1^0.129^0.147^3^0.123^0.153^~2, 3~^~09/01/2006~ -~21005~^~404~^0.282^4^0.022^~1~^~A~^^^1^0.230^0.335^3^0.213^0.351^~2, 3~^~09/01/2006~ -~21005~^~405~^0.263^4^0.009^~1~^~A~^^^1^0.240^0.282^3^0.235^0.291^~2, 3~^~09/01/2006~ -~21005~^~406~^2.467^4^0.052^~1~^~A~^^^1^2.360^2.580^3^2.301^2.633^~2, 3~^~09/01/2006~ -~21005~^~410~^0.939^4^0.072^~1~^~A~^^^1^0.848^1.150^3^0.710^1.167^~2, 3~^~09/01/2006~ -~21005~^~415~^0.068^4^0.002^~1~^~A~^^^1^0.062^0.072^3^0.061^0.074^~2, 3~^~09/01/2006~ -~21005~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~502~^0.446^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~503~^0.435^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~504~^0.776^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~505~^0.608^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~506~^0.220^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~507~^0.193^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~508~^0.460^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~509~^0.318^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~510~^0.533^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~511~^0.558^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~512~^0.268^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~513~^0.508^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~514~^0.934^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~515~^1.914^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~516~^0.463^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~517~^0.628^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~518~^0.591^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21005~^~606~^6.449^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~607~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~21005~^~608~^0.000^0^^~1~^^^^^^^^^^^~03/01/2009~ -~21005~^~609~^0.007^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.023^~1, 2, 3~^~09/01/2006~ -~21005~^~610~^0.010^4^0.006^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.028^~1, 2, 3~^~09/01/2006~ -~21005~^~611~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.030^3^-0.011^0.036^~1, 2, 3~^~09/01/2006~ -~21005~^~612~^0.177^4^0.022^~1~^~A~^^^1^0.130^0.220^3^0.107^0.248^~2, 3~^~09/01/2006~ -~21005~^~613~^3.852^4^0.123^~1~^~A~^^^1^3.510^4.090^3^3.462^4.243^~2, 3~^~09/01/2006~ -~21005~^~614~^2.222^4^0.073^~1~^~A~^^^1^2.010^2.340^3^1.991^2.454^~2, 3~^~09/01/2006~ -~21005~^~615~^0.095^4^0.003^~1~^~A~^^^1^0.090^0.100^3^0.086^0.104^~2, 3~^~09/01/2006~ -~21005~^~617~^9.532^4^0.241^~1~^~A~^^^1^8.850^9.890^3^8.767^10.298^~2, 3~^~09/01/2006~ -~21005~^~618~^2.415^4^0.112^~1~^~A~^^^1^2.160^2.650^3^2.057^2.773^~2, 3~^~09/01/2006~ -~21005~^~619~^0.127^4^0.009^~1~^~A~^^^1^0.100^0.140^3^0.097^0.158^~2, 3~^~09/01/2006~ -~21005~^~620~^0.082^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.062^0.102^~2, 3~^~09/01/2006~ -~21005~^~621~^0.037^4^0.014^~1~^~A~^^^1^0.020^0.080^3^-0.008^0.083^~2, 3~^~09/01/2006~ -~21005~^~624~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~09/01/2006~ -~21005~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~626~^0.352^4^0.012^~1~^~A~^^^1^0.320^0.370^3^0.315^0.390^~2, 3~^~09/01/2006~ -~21005~^~627~^0.037^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.029^0.045^~2, 3~^~09/01/2006~ -~21005~^~628~^0.100^4^0.004^~1~^~A~^^^1^0.090^0.110^3^0.087^0.113^~2, 3~^~09/01/2006~ -~21005~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~631~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~09/01/2006~ -~21005~^~645~^9.985^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~646~^2.967^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21005~^~652~^0.007^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.023^~1, 2, 3~^~09/01/2006~ -~21005~^~653~^0.035^4^0.012^~1~^~A~^^^1^0.000^0.050^3^-0.003^0.073^~1, 2, 3~^~09/01/2006~ -~21005~^~654~^0.010^4^0.010^~1~^~A~^^^1^0.000^0.040^3^-0.022^0.042^~1, 2, 3~^~09/01/2006~ -~21005~^~672~^0.225^4^0.009^~1~^~A~^^^1^0.200^0.240^3^0.197^0.252^~2, 3~^~09/01/2006~ -~21005~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21005~^~689~^0.020^4^0.007^~1~^~A~^^^1^0.000^0.030^3^-0.003^0.042^~1, 2, 3~^~09/01/2006~ -~21005~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~312~^0.273^4^0.057^~1~^~A~^^^1^0.114^0.382^3^0.091^0.455^~2, 3~^~09/01/2006~ -~21007~^~315~^0.136^4^0.004^~1~^~A~^^^1^0.124^0.143^3^0.123^0.150^~2, 3~^~09/01/2006~ -~21007~^~404~^0.269^4^0.025^~1~^~A~^^^1^0.220^0.335^3^0.189^0.349^~2, 3~^~09/01/2006~ -~21007~^~405~^0.247^4^0.030^~1~^~A~^^^1^0.192^0.326^3^0.153^0.341^~2, 3~^~09/01/2006~ -~21007~^~406~^2.350^4^0.137^~1~^~A~^^^1^1.980^2.580^3^1.915^2.784^~2, 3~^~09/01/2006~ -~21007~^~410~^0.772^4^0.025^~1~^~A~^^^1^0.722^0.841^3^0.691^0.852^~2, 3~^~09/01/2006~ -~21007~^~415~^0.113^4^0.067^~1~^~A~^^^1^0.043^0.313^3^-0.100^0.325^~2, 3~^~09/01/2006~ -~21007~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~502~^0.500^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~503~^0.515^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~504~^0.931^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~505~^0.695^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~506~^0.295^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~507~^0.208^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~508~^0.561^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~509~^0.393^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~510~^0.636^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~511~^0.590^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~512~^0.303^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~513~^0.528^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~514~^1.005^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~515~^2.253^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~516~^0.431^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~517~^0.788^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~518~^0.696^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21007~^~606~^5.893^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~607~^0.206^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~608~^0.070^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21007~^~609~^0.062^4^0.005^~1~^~A~^^^1^0.050^0.070^3^0.047^0.078^~2, 3~^~09/01/2006~ -~21007~^~610~^0.072^4^0.005^~1~^~A~^^^1^0.060^0.080^3^0.057^0.088^~2, 3~^~09/01/2006~ -~21007~^~611~^0.085^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.064^0.106^~2, 3~^~09/01/2006~ -~21007~^~612~^0.347^4^0.026^~1~^~A~^^^1^0.290^0.400^3^0.266^0.429^~2, 3~^~09/01/2006~ -~21007~^~613~^3.060^4^0.038^~1~^~A~^^^1^2.980^3.150^3^2.940^3.180^~2, 3~^~09/01/2006~ -~21007~^~614~^1.837^4^0.025^~1~^~A~^^^1^1.780^1.900^3^1.757^1.918^~2, 3~^~09/01/2006~ -~21007~^~615~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~09/01/2006~ -~21007~^~617~^7.775^4^0.157^~1~^~A~^^^1^7.520^8.230^3^7.276^8.273^~2, 3~^~09/01/2006~ -~21007~^~618~^1.567^4^0.008^~1~^~A~^^^1^1.560^1.590^3^1.543^1.591^~2, 3~^~09/01/2006~ -~21007~^~619~^0.097^4^0.005^~1~^~A~^^^1^0.090^0.110^3^0.082^0.113^~2, 3~^~09/01/2006~ -~21007~^~620~^0.062^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.054^0.070^~2, 3~^~09/01/2006~ -~21007~^~621~^0.052^4^0.005^~1~^~A~^^^1^0.040^0.060^3^0.037^0.068^~2, 3~^~09/01/2006~ -~21007~^~624~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~09/01/2006~ -~21007~^~626~^0.212^4^0.005^~1~^~A~^^^1^0.200^0.220^3^0.197^0.228^~2, 3~^~09/01/2006~ -~21007~^~627~^0.042^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.034^0.050^~2, 3~^~09/01/2006~ -~21007~^~628~^0.047^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.039^0.056^~2, 3~^~09/01/2006~ -~21007~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~631~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~09/01/2006~ -~21007~^~645~^8.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~646~^1.922^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21007~^~652~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~09/01/2006~ -~21007~^~653~^0.037^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.029^0.045^~2, 3~^~09/01/2006~ -~21007~^~654~^0.027^4^0.009^~1~^~A~^^^1^0.000^0.040^3^-0.003^0.057^~1, 2, 3~^~09/01/2006~ -~21007~^~672~^0.075^4^0.009^~1~^~A~^^^1^0.060^0.100^3^0.047^0.103^~2, 3~^~09/01/2006~ -~21007~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21007~^~689~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~09/01/2006~ -~21007~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21008~^~312~^0.032^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~315~^0.320^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~404~^0.450^4^0.053^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~405~^0.280^4^0.062^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~406~^3.080^4^0.585^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~410~^0.360^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~415~^0.120^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~501~^0.147^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~502~^0.481^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~503~^0.513^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~504~^0.937^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~505~^0.818^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~506~^0.289^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~507~^0.196^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~508~^0.547^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~509~^0.400^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~510~^0.533^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~511~^0.680^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~512~^0.382^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~513~^0.604^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~514~^0.957^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~515~^2.558^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~516~^0.549^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~517~^0.794^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~518~^0.533^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~606~^10.096^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~607~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~608~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~609~^0.363^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~610~^0.346^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~611~^2.997^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~612~^1.280^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~613~^2.357^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~614~^2.644^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~617~^4.064^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~618~^0.808^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~619~^0.081^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~620~^0.029^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~626~^0.182^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/1994~ -~21008~^~645~^4.277^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21008~^~646~^0.918^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21009~^~312~^0.255^4^0.023^~1~^~A~^^^1^0.226^0.324^3^0.182^0.329^~2, 3~^~09/01/2006~ -~21009~^~315~^0.179^4^0.010^~1~^~A~^^^1^0.153^0.194^3^0.149^0.210^~2, 3~^~09/01/2006~ -~21009~^~404~^0.385^4^0.038^~1~^~A~^^^1^0.344^0.500^3^0.264^0.507^~2, 3~^~09/01/2006~ -~21009~^~405~^0.217^4^0.020^~1~^~A~^^^1^0.163^0.256^3^0.155^0.280^~2, 3~^~09/01/2006~ -~21009~^~406~^3.445^4^0.139^~1~^~A~^^^1^3.220^3.790^3^3.003^3.887^~2, 3~^~09/01/2006~ -~21009~^~410~^0.467^4^0.027^~1~^~A~^^^1^0.425^0.544^3^0.380^0.554^~2, 3~^~09/01/2006~ -~21009~^~415~^0.063^4^0.006^~1~^~A~^^^1^0.047^0.075^3^0.045^0.081^~2, 3~^~09/01/2006~ -~21009~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~502~^0.353^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~503~^0.358^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~504~^0.661^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~505~^0.521^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~509~^0.246^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~510~^0.416^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~512~^0.250^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~513~^0.434^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~515~^2.029^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~516~^0.491^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~518~^0.411^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21009~^~606~^7.427^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21009~^~608~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21009~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~610~^0.012^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.004^0.020^~2, 3~^~09/01/2006~ -~21009~^~611~^0.012^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.004^0.020^~2, 3~^~09/01/2006~ -~21009~^~612~^0.202^4^0.014^~1~^~A~^^^1^0.170^0.240^3^0.157^0.248^~2, 3~^~09/01/2006~ -~21009~^~613~^4.277^4^0.149^~1~^~A~^^^1^3.920^4.590^3^3.804^4.751^~2, 3~^~09/01/2006~ -~21009~^~614~^2.705^4^0.077^~1~^~A~^^^1^2.550^2.870^3^2.460^2.950^~2, 3~^~09/01/2006~ -~21009~^~615~^0.132^4^0.003^~1~^~A~^^^1^0.130^0.140^3^0.124^0.140^~2, 3~^~09/01/2006~ -~21009~^~617~^11.650^4^0.240^~1~^~A~^^^1^11.200^12.200^3^10.887^12.413^~2, 3~^~09/01/2006~ -~21009~^~618~^2.620^4^0.109^~1~^~A~^^^1^2.390^2.900^3^2.272^2.968^~2, 3~^~09/01/2006~ -~21009~^~619~^0.140^4^0.006^~1~^~A~^^^1^0.130^0.150^3^0.121^0.158^~2, 3~^~09/01/2006~ -~21009~^~620~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~09/01/2006~ -~21009~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21009~^~624~^0.025^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.016^0.034^~2, 3~^~09/01/2006~ -~21009~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~626~^0.380^4^0.019^~1~^~A~^^^1^0.330^0.420^3^0.320^0.439^~2, 3~^~09/01/2006~ -~21009~^~627~^0.030^4^0.004^~1~^~A~^^^1^0.020^0.040^3^0.017^0.043^~2, 3~^~09/01/2006~ -~21009~^~628~^0.127^4^0.005^~1~^~A~^^^1^0.120^0.140^3^0.112^0.143^~2, 3~^~09/01/2006~ -~21009~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21009~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21009~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21009~^~645~^12.157^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~646~^3.107^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21009~^~652~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~09/01/2006~ -~21009~^~653~^0.057^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.050^0.065^~2, 3~^~09/01/2006~ -~21009~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~672~^0.282^4^0.016^~1~^~A~^^^1^0.240^0.310^3^0.233^0.332^~2, 3~^~09/01/2006~ -~21009~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21009~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21010~^~312~^0.060^3^0.008^~1~^~A~^^^1^0.051^0.075^2^0.027^0.092^~2, 3~^~05/01/2015~ -~21010~^~315~^0.241^3^0.009^~1~^~A~^^^1^0.224^0.255^2^0.202^0.280^~2, 3~^~05/01/2015~ -~21010~^~404~^0.250^2^^~1~^~A~^^^1^0.240^0.260^1^^^^~09/01/1988~ -~21010~^~405~^0.260^3^0.017^~1~^~A~^^^1^0.230^0.290^2^0.186^0.334^~2, 3~^~02/01/2016~ -~21010~^~406~^4.797^3^0.237^~1~^~A~^^^1^4.330^5.100^2^3.778^5.816^~2, 3~^~02/01/2016~ -~21010~^~415~^0.207^2^^~1~^~A~^^^1^0.207^0.207^^^^^~05/01/2015~ -~21010~^~605~^0.070^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~606~^5.712^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~607~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.006^0.016^~1, 2, 3~^~05/01/2015~ -~21010~^~608~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~05/01/2015~ -~21010~^~609~^0.056^3^0.002^~1~^~A~^^^1^0.052^0.060^2^0.046^0.066^~2, 3~^~05/01/2015~ -~21010~^~610~^0.053^3^0.006^~1~^~A~^^^1^0.047^0.065^2^0.028^0.078^~2, 3~^~05/01/2015~ -~21010~^~611~^0.658^3^0.045^~1~^~A~^^^1^0.602^0.746^2^0.466^0.850^~2, 3~^~05/01/2015~ -~21010~^~612~^0.295^3^0.015^~1~^~A~^^^1^0.276^0.325^2^0.229^0.360^~2, 3~^~05/01/2015~ -~21010~^~613~^3.823^3^0.030^~1~^~A~^^^1^3.780^3.882^2^3.692^3.954^~2, 3~^~05/01/2015~ -~21010~^~614~^0.702^3^0.032^~1~^~A~^^^1^0.647^0.758^2^0.564^0.840^~2, 3~^~05/01/2015~ -~21010~^~615~^0.057^3^0.003^~1~^~A~^^^1^0.052^0.062^2^0.044^0.069^~2, 3~^~05/01/2015~ -~21010~^~617~^5.326^3^0.266^~1~^~AS~^^^1^4.964^5.845^2^4.181^6.471^~2, 3~^~05/01/2015~ -~21010~^~618~^3.037^3^0.243^~1~^~AS~^^^1^2.629^3.470^2^1.991^4.083^~2, 3~^~05/01/2015~ -~21010~^~619~^0.215^3^0.029^~1~^~AS~^^^1^0.183^0.274^2^0.089^0.342^~2, 3~^~05/01/2015~ -~21010~^~620~^0.027^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.017^0.036^~2, 3~^~05/01/2015~ -~21010~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21010~^~624~^0.025^3^0.002^~1~^~A~^^^1^0.023^0.028^2^0.018^0.032^~2, 3~^~05/01/2015~ -~21010~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21010~^~626~^0.043^3^0.001^~1~^~AS~^^^1^0.041^0.044^2^0.039^0.047^~2, 3~^~05/01/2015~ -~21010~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~628~^0.070^3^0.006^~1~^~A~^^^1^0.060^0.081^2^0.044^0.097^~2, 3~^~05/01/2015~ -~21010~^~629~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2015~ -~21010~^~630~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~05/01/2015~ -~21010~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21010~^~645~^5.455^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~646~^3.308^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~05/01/2015~ -~21010~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~05/01/2015~ -~21010~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~05/01/2015~ -~21010~^~662~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21010~^~663~^0.039^3^0.010^~1~^~A~^^^1^0.029^0.060^2^-0.005^0.084^~2, 3~^~05/01/2015~ -~21010~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21010~^~665~^0.029^3^0.006^~1~^~A~^^^1^0.021^0.040^2^0.004^0.053^~2, 3~^~05/01/2015~ -~21010~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~05/01/2015~ -~21010~^~671~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21010~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~05/01/2015~ -~21010~^~673~^0.041^3^0.001^~1~^~A~^^^1^0.040^0.043^2^0.037^0.045^~2, 3~^~05/01/2015~ -~21010~^~674~^5.287^3^0.269^~1~^~A~^^^1^4.935^5.816^2^4.128^6.446^~2, 3~^~05/01/2015~ -~21010~^~675~^2.999^3^0.241^~1~^~A~^^^1^2.600^3.434^2^1.960^4.038^~2, 3~^~05/01/2015~ -~21010~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~05/01/2015~ -~21010~^~685~^0.015^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.007^0.023^~2, 3~^~05/01/2015~ -~21010~^~687~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~05/01/2015~ -~21010~^~689~^0.005^3^0.000^~1~^~AS~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21010~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21010~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~851~^0.201^3^0.028^~1~^~A~^^^1^0.172^0.257^2^0.079^0.322^~2, 3~^~05/01/2015~ -~21010~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~853~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21010~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21010~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~05/01/2015~ -~21012~^~312~^0.072^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~315~^0.146^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~404~^0.227^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~405~^0.296^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~406~^2.007^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~410~^1.006^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21012~^~415~^0.090^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21012~^~606~^7.031^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~607~^0.233^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~608~^0.149^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~609~^0.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~610~^0.207^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~611~^0.229^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~612~^0.849^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~613~^3.517^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~614~^1.549^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~617~^5.232^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~618~^1.653^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~619~^0.179^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~620~^0.076^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~621~^0.019^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~626~^0.324^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~628~^0.058^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~629~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~631~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~645~^5.753^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~646~^1.989^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21012~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2017~ -~21013~^~312~^0.083^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~315~^0.145^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~404~^0.340^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~405~^0.200^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~406~^2.100^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21013~^~410~^0.820^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~415~^0.150^1^^~4~^^^^^^^^^^^~09/01/1988~ -~21013~^~606~^5.161^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~607~^0.191^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~608~^0.123^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~609~^0.075^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~610~^0.172^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~611~^0.190^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~612~^0.683^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~613~^2.486^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~614~^1.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~617~^4.284^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~618~^1.212^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~619~^0.158^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~620~^0.066^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~621~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~626~^0.283^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~628~^0.042^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~631~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~645~^4.738^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21013~^~646~^1.485^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~21014~^~312~^0.070^6^0.001^~1~^~A~^^^1^0.066^0.074^5^0.067^0.072^~2, 3~^~04/01/2013~ -~21014~^~315~^0.184^6^0.011^~1~^~A~^^^1^0.147^0.225^5^0.156^0.212^~2, 3~^~04/01/2013~ -~21014~^~404~^0.237^3^0.009^~1~^~A~^^^1^0.220^0.250^2^0.199^0.275^~2, 3~^~04/01/2013~ -~21014~^~405~^0.370^3^0.015^~1~^~A~^^^1^0.340^0.390^2^0.304^0.436^~2, 3~^~04/01/2013~ -~21014~^~406~^2.754^3^0.153^~1~^~A~^^^1^2.463^2.980^2^2.097^3.411^~2, 3~^~04/01/2013~ -~21014~^~410~^0.750^2^^~1~^~A~^^^1^0.740^0.760^1^^^^~04/01/2013~ -~21014~^~415~^0.159^3^0.009^~1~^~A~^^^1^0.147^0.177^2^0.119^0.199^~2, 3~^~04/01/2013~ -~21014~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~502~^0.455^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~503~^0.551^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~504~^0.929^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~505~^0.609^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~506~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~508~^0.542^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~509~^0.339^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~510~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~511~^0.619^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~512~^0.329^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~514~^0.977^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~515~^2.399^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~516~^0.503^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~517~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~518~^0.561^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21014~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~606~^8.342^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~607~^0.047^3^0.003^~1~^~A~^^^1^0.043^0.052^2^0.035^0.058^~2, 3~^~04/01/2013~ -~21014~^~608~^0.035^3^0.002^~1~^~A~^^^1^0.031^0.039^2^0.024^0.045^~2, 3~^~04/01/2013~ -~21014~^~609~^0.028^3^0.002^~1~^~A~^^^1^0.024^0.032^2^0.018^0.038^~2, 3~^~04/01/2013~ -~21014~^~610~^0.067^3^0.003^~1~^~A~^^^1^0.064^0.073^2^0.055^0.079^~2, 3~^~04/01/2013~ -~21014~^~611~^0.084^3^0.004^~1~^~A~^^^1^0.077^0.089^2^0.068^0.099^~2, 3~^~04/01/2013~ -~21014~^~612~^0.385^3^0.004^~1~^~A~^^^1^0.378^0.391^2^0.369^0.402^~2, 3~^~04/01/2013~ -~21014~^~613~^5.758^3^0.117^~1~^~A~^^^1^5.544^5.949^2^5.253^6.264^~2, 3~^~04/01/2013~ -~21014~^~614~^1.773^3^0.024^~1~^~A~^^^1^1.725^1.802^2^1.669^1.877^~2, 3~^~04/01/2013~ -~21014~^~615~^0.049^3^0.001^~1~^~A~^^^1^0.048^0.051^2^0.045^0.053^~2, 3~^~04/01/2013~ -~21014~^~617~^7.403^3^0.064^~1~^~AS~^^^1^7.274^7.472^2^7.125^7.680^~2, 3~^~04/01/2013~ -~21014~^~618~^3.797^3^0.153^~1~^~AS~^^^1^3.551^4.079^2^3.137^4.457^~2, 3~^~04/01/2013~ -~21014~^~619~^0.192^3^0.003^~1~^~AS~^^^1^0.187^0.196^2^0.181^0.203^~2, 3~^~04/01/2013~ -~21014~^~620~^0.093^3^0.003^~1~^~A~^^^1^0.089^0.099^2^0.079^0.106^~2, 3~^~04/01/2013~ -~21014~^~621~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~04/01/2013~ -~21014~^~624~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.012^0.020^~2, 3~^~04/01/2013~ -~21014~^~625~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~04/01/2013~ -~21014~^~626~^0.270^3^0.005^~1~^~AS~^^^1^0.262^0.278^2^0.250^0.289^~2, 3~^~04/01/2013~ -~21014~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~628~^0.108^3^0.001^~1~^~A~^^^1^0.106^0.110^2^0.103^0.113^~2, 3~^~04/01/2013~ -~21014~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21014~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~04/01/2013~ -~21014~^~631~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~04/01/2013~ -~21014~^~645~^7.838^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~646~^4.212^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~652~^0.033^3^0.001^~1~^~A~^^^1^0.032^0.034^2^0.030^0.035^~2, 3~^~04/01/2013~ -~21014~^~653~^0.057^3^0.001^~1~^~A~^^^1^0.055^0.058^2^0.053^0.060^~2, 3~^~04/01/2013~ -~21014~^~654~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~04/01/2013~ -~21014~^~662~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~04/01/2013~ -~21014~^~663~^0.100^3^0.004^~1~^~A~^^^1^0.095^0.108^2^0.082^0.118^~2, 3~^~04/01/2013~ -~21014~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~665~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.041^2^0.035^0.043^~2, 3~^~04/01/2013~ -~21014~^~670~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~04/01/2013~ -~21014~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~672~^0.068^3^0.004^~1~^~A~^^^1^0.064^0.076^2^0.051^0.085^~2, 3~^~04/01/2013~ -~21014~^~673~^0.259^3^0.004^~1~^~A~^^^1^0.253^0.267^2^0.241^0.277^~2, 3~^~04/01/2013~ -~21014~^~674~^7.303^3^0.069^~1~^~A~^^^1^7.166^7.377^2^7.008^7.598^~2, 3~^~04/01/2013~ -~21014~^~675~^3.734^3^0.154^~1~^~A~^^^1^3.489^4.018^2^3.072^4.397^~2, 3~^~04/01/2013~ -~21014~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~21014~^~685~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~21014~^~687~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.034^2^0.027^0.036^~2, 3~^~04/01/2013~ -~21014~^~689~^0.021^3^0.003^~1~^~AS~^^^1^0.018^0.028^2^0.007^0.036^~2, 3~^~04/01/2013~ -~21014~^~693~^0.110^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~695~^0.039^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21014~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~851~^0.183^3^0.002^~1~^~A~^^^1^0.178^0.185^2^0.173^0.193^~2, 3~^~04/01/2013~ -~21014~^~852~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~04/01/2013~ -~21014~^~853~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~04/01/2013~ -~21014~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21014~^~858~^0.017^3^0.001^~1~^~A~^^^1^0.014^0.019^2^0.011^0.023^~2, 3~^~04/01/2013~ -~21018~^~312~^0.067^4^0.009^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~315~^0.043^4^0.003^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~404~^0.080^5^0.006^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~405~^0.520^5^0.077^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~406~^0.210^5^0.081^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~410~^0.940^3^0.286^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~415~^0.190^3^0.011^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~501~^0.212^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~502~^0.657^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~503~^0.836^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~504~^1.185^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~505~^0.913^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~506~^0.427^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~507~^0.307^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~508~^0.750^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~509~^0.562^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~510~^0.960^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~511~^0.836^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~512~^0.325^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~513~^0.763^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~514~^1.311^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~515~^1.773^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~516~^0.438^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~517~^0.577^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~518~^1.002^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~606~^6.153^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~607~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~608~^0.158^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~609~^0.048^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~610~^0.104^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~611~^0.134^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~612~^0.085^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~613~^3.909^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~614~^1.522^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~617~^5.374^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~618~^1.649^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~619~^0.118^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~620~^0.202^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~626~^0.515^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/1995~ -~21018~^~645~^5.889^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21018~^~646~^1.969^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21020~^~312~^0.252^4^0.031^~1~^~A~^^^1^0.170^0.316^3^0.152^0.352^~2, 3~^~09/01/2006~ -~21020~^~315~^0.284^4^0.031^~1~^~A~^^^1^0.239^0.375^3^0.186^0.383^~2, 3~^~09/01/2006~ -~21020~^~404~^0.481^4^0.052^~1~^~A~^^^1^0.337^0.564^3^0.316^0.647^~2, 3~^~09/01/2006~ -~21020~^~405~^0.197^4^0.029^~1~^~A~^^^1^0.131^0.251^3^0.104^0.289^~2, 3~^~09/01/2006~ -~21020~^~406~^4.217^4^0.256^~1~^~A~^^^1^3.830^4.960^3^3.404^5.031^~2, 3~^~09/01/2006~ -~21020~^~410~^0.696^4^0.046^~1~^~A~^^^1^0.559^0.751^3^0.550^0.843^~2, 3~^~09/01/2006~ -~21020~^~415~^0.086^4^0.003^~1~^~A~^^^1^0.082^0.094^3^0.078^0.095^~2, 3~^~09/01/2006~ -~21020~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~502~^0.477^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~503~^0.497^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~504~^0.930^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~505~^0.688^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~506~^0.235^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~507~^0.185^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~508~^0.545^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~509~^0.363^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~510~^0.592^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~511~^0.585^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~512~^0.338^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~513~^0.547^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~514~^0.943^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~515~^2.900^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~516~^0.600^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~517~^1.033^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~518~^0.590^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21020~^~606~^8.152^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~607~^0.000^0^^~1~^^^^^^^^^^^~09/01/2006~ -~21020~^~608~^0.000^0^^~1~^^^^^^^^^^^~09/01/2006~ -~21020~^~609~^0.085^4^0.006^~1~^~A~^^^1^0.070^0.100^3^0.064^0.106^~2, 3~^~09/01/2006~ -~21020~^~610~^0.107^4^0.005^~1~^~A~^^^1^0.100^0.120^3^0.092^0.123^~2, 3~^~09/01/2006~ -~21020~^~611~^0.120^4^0.004^~1~^~A~^^^1^0.110^0.130^3^0.107^0.133^~2, 3~^~09/01/2006~ -~21020~^~612~^0.587^4^0.020^~1~^~A~^^^1^0.540^0.630^3^0.523^0.652^~2, 3~^~09/01/2006~ -~21020~^~613~^4.687^4^0.043^~1~^~A~^^^1^4.610^4.780^3^4.552^4.823^~2, 3~^~09/01/2006~ -~21020~^~614~^2.350^4^0.045^~1~^~A~^^^1^2.240^2.460^3^2.207^2.493^~2, 3~^~09/01/2006~ -~21020~^~615~^0.080^4^0.000^~1~^~A~^^^1^0.080^0.080^^^^~2, 3~^~09/01/2006~ -~21020~^~617~^7.272^4^0.038^~1~^~A~^^^1^7.160^7.320^3^7.152^7.393^~2, 3~^~09/01/2006~ -~21020~^~618~^2.465^4^0.081^~1~^~A~^^^1^2.280^2.620^3^2.207^2.723^~2, 3~^~09/01/2006~ -~21020~^~619~^0.157^4^0.005^~1~^~A~^^^1^0.150^0.170^3^0.142^0.173^~2, 3~^~09/01/2006~ -~21020~^~620~^0.052^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.045^0.060^~2, 3~^~09/01/2006~ -~21020~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~625~^0.060^4^0.004^~1~^~A~^^^1^0.050^0.070^3^0.047^0.073^~2, 3~^~09/01/2006~ -~21020~^~626~^0.452^4^0.003^~1~^~A~^^^1^0.450^0.460^3^0.444^0.460^~2, 3~^~09/01/2006~ -~21020~^~627~^0.052^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.045^0.060^~2, 3~^~09/01/2006~ -~21020~^~628~^0.120^4^0.004^~1~^~A~^^^1^0.110^0.130^3^0.107^0.133^~2, 3~^~09/01/2006~ -~21020~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~631~^0.035^4^0.012^~1~^~A~^^^1^0.000^0.050^3^-0.003^0.073^~1, 2, 3~^~09/01/2006~ -~21020~^~645~^7.905^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~646~^3.115^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21020~^~652~^0.047^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.039^0.056^~2, 3~^~09/01/2006~ -~21020~^~653~^0.075^4^0.003^~1~^~A~^^^1^0.070^0.080^3^0.066^0.084^~2, 3~^~09/01/2006~ -~21020~^~654~^0.012^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.003^0.028^~1, 2, 3~^~09/01/2006~ -~21020~^~672~^0.305^4^0.019^~1~^~A~^^^1^0.250^0.340^3^0.243^0.367^~2, 3~^~09/01/2006~ -~21020~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21020~^~689~^0.047^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.039^0.056^~2, 3~^~09/01/2006~ -~21020~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21021~^~312~^0.084^6^0.002^~1~^~A~^^^1^0.077^0.091^5^0.079^0.089^~2, 3~^~08/01/2012~ -~21021~^~315~^0.235^6^0.005^~1~^~A~^^^1^0.215^0.247^5^0.222^0.247^~2, 3~^~08/01/2012~ -~21021~^~404~^0.378^4^0.009^~1~^~A~^^^1^0.359^0.401^3^0.350^0.405^~2, 3~^~09/01/2006~ -~21021~^~405~^0.293^4^0.070^~1~^~A~^^^1^0.117^0.432^3^0.071^0.515^~2, 3~^~09/01/2006~ -~21021~^~406~^3.187^4^0.197^~1~^~A~^^^1^2.950^3.770^3^2.562^3.813^~2, 3~^~09/01/2006~ -~21021~^~415~^0.071^4^0.004^~1~^~A~^^^1^0.063^0.080^3^0.059^0.082^~2, 3~^~09/01/2006~ -~21021~^~605~^0.109^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~606~^3.592^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~607~^0.063^3^0.003^~1~^~A~^^^1^0.057^0.067^2^0.050^0.076^~2, 3~^~08/01/2012~ -~21021~^~608~^0.054^3^0.004^~1~^~A~^^^1^0.046^0.061^2^0.035^0.072^~2, 3~^~08/01/2012~ -~21021~^~609~^0.080^3^0.009^~1~^~A~^^^1^0.066^0.096^2^0.042^0.117^~2, 3~^~08/01/2012~ -~21021~^~610~^0.107^3^0.005^~1~^~A~^^^1^0.101^0.118^2^0.084^0.130^~2, 3~^~08/01/2012~ -~21021~^~611~^0.098^3^0.003^~1~^~A~^^^1^0.094^0.105^2^0.084^0.113^~2, 3~^~08/01/2012~ -~21021~^~612~^0.329^3^0.008^~1~^~A~^^^1^0.320^0.344^2^0.295^0.362^~2, 3~^~08/01/2012~ -~21021~^~613~^2.007^3^0.020^~1~^~A~^^^1^1.982^2.047^2^1.921^2.094^~2, 3~^~08/01/2012~ -~21021~^~614~^0.760^3^0.010^~1~^~A~^^^1^0.740^0.774^2^0.716^0.804^~2, 3~^~08/01/2012~ -~21021~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~08/01/2012~ -~21021~^~617~^2.490^3^0.051^~1~^~AS~^^^1^2.398^2.573^2^2.271^2.708^~2, 3~^~08/01/2012~ -~21021~^~618~^1.471^3^0.103^~1~^~AS~^^^1^1.277^1.630^2^1.026^1.916^~2, 3~^~08/01/2012~ -~21021~^~619~^0.115^3^0.011^~1~^~AS~^^^1^0.094^0.132^2^0.067^0.163^~2, 3~^~08/01/2012~ -~21021~^~620~^0.088^3^0.003^~1~^~A~^^^1^0.084^0.094^2^0.075^0.101^~2, 3~^~08/01/2012~ -~21021~^~621~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~08/01/2012~ -~21021~^~624~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~08/01/2012~ -~21021~^~625~^0.033^3^0.001^~1~^~A~^^^1^0.032^0.035^2^0.029^0.037^~2, 3~^~08/01/2012~ -~21021~^~626~^0.153^3^0.007^~1~^~AS~^^^1^0.144^0.167^2^0.123^0.183^~2, 3~^~08/01/2012~ -~21021~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21021~^~628~^0.031^3^0.002^~1~^~A~^^^1^0.028^0.034^2^0.023^0.038^~2, 3~^~08/01/2012~ -~21021~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~21021~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~08/01/2012~ -~21021~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~21021~^~645~^2.721^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~646~^1.735^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~652~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.038^2^0.034^0.039^~2, 3~^~08/01/2012~ -~21021~^~653~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~2, 3~^~08/01/2012~ -~21021~^~654~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~08/01/2012~ -~21021~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~2, 3~^~08/01/2012~ -~21021~^~663~^0.063^3^0.031^~1~^~A~^^^1^0.002^0.100^2^-0.069^0.196^~1, 2, 3~^~08/01/2012~ -~21021~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21021~^~665~^0.033^3^0.003^~1~^~A~^^^1^0.028^0.038^2^0.021^0.045^~2, 3~^~08/01/2012~ -~21021~^~670~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.030^~2, 3~^~08/01/2012~ -~21021~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~21021~^~672~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~08/01/2012~ -~21021~^~673~^0.140^3^0.007^~1~^~A~^^^1^0.132^0.154^2^0.111^0.170^~2, 3~^~08/01/2012~ -~21021~^~674~^2.427^3^0.077^~1~^~A~^^^1^2.310^2.571^2^2.097^2.756^~2, 3~^~08/01/2012~ -~21021~^~675~^1.416^3^0.105^~1~^~A~^^^1^1.220^1.578^2^0.965^1.866^~2, 3~^~08/01/2012~ -~21021~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~08/01/2012~ -~21021~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~08/01/2012~ -~21021~^~687~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~08/01/2012~ -~21021~^~689~^0.015^3^0.000^~1~^~AS~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~08/01/2012~ -~21021~^~693~^0.076^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21021~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21021~^~851~^0.114^3^0.011^~1~^~A~^^^1^0.094^0.132^2^0.067^0.161^~2, 3~^~08/01/2012~ -~21021~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~08/01/2012~ -~21021~^~853~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~08/01/2012~ -~21021~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~08/01/2012~ -~21022~^~312~^0.211^4^0.037^~1~^~A~^^^1^0.111^0.271^3^0.094^0.328^~2, 3~^~09/01/2006~ -~21022~^~315~^0.192^4^0.019^~1~^~A~^^^1^0.158^0.247^3^0.131^0.253^~2, 3~^~09/01/2006~ -~21022~^~404~^0.390^4^0.063^~1~^~A~^^^1^0.291^0.575^3^0.190^0.591^~2, 3~^~09/01/2006~ -~21022~^~405~^0.270^4^0.021^~1~^~A~^^^1^0.236^0.324^3^0.203^0.336^~2, 3~^~09/01/2006~ -~21022~^~406~^3.192^4^0.141^~1~^~A~^^^1^2.950^3.590^3^2.742^3.643^~2, 3~^~09/01/2006~ -~21022~^~410~^1.080^4^0.006^~1~^~A~^^^1^1.070^1.090^3^1.062^1.098^~2, 3~^~09/01/2006~ -~21022~^~415~^0.073^4^0.003^~1~^~A~^^^1^0.069^0.080^3^0.065^0.082^~2, 3~^~09/01/2006~ -~21022~^~501~^0.163^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~502~^0.523^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~503~^0.540^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~504~^0.978^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~505~^0.750^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~506~^0.287^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~507~^0.198^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~508~^0.588^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~509~^0.405^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~510~^0.653^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~511~^0.653^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~512~^0.330^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~513~^0.598^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~514~^1.063^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~515~^2.497^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~516~^0.540^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~517~^0.898^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~518~^0.703^0^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21022~^~606~^6.928^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~607~^0.214^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~608~^0.073^0^^~4~^~BFFN~^~21021~^^^^^^^^^~03/01/2009~ -~21022~^~609~^0.060^4^0.004^~1~^~A~^^^1^0.050^0.070^3^0.047^0.073^~2, 3~^~09/01/2006~ -~21022~^~610~^0.077^4^0.002^~1~^~A~^^^1^0.070^0.080^3^0.070^0.085^~2, 3~^~09/01/2006~ -~21022~^~611~^0.087^4^0.003^~1~^~A~^^^1^0.080^0.090^3^0.079^0.096^~2, 3~^~09/01/2006~ -~21022~^~612~^0.420^4^0.011^~1~^~A~^^^1^0.390^0.440^3^0.386^0.454^~2, 3~^~09/01/2006~ -~21022~^~613~^3.985^4^0.068^~1~^~A~^^^1^3.860^4.160^3^3.770^4.200^~2, 3~^~09/01/2006~ -~21022~^~614~^1.895^4^0.017^~1~^~A~^^^1^1.850^1.930^3^1.841^1.949^~2, 3~^~09/01/2006~ -~21022~^~615~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~09/01/2006~ -~21022~^~617~^6.220^4^0.170^~1~^~A~^^^1^5.860^6.670^3^5.678^6.761^~2, 3~^~09/01/2006~ -~21022~^~618~^2.132^4^0.093^~1~^~A~^^^1^1.910^2.300^3^1.837^2.428^~2, 3~^~09/01/2006~ -~21022~^~619~^0.120^4^0.004^~1~^~A~^^^1^0.110^0.130^3^0.107^0.133^~2, 3~^~09/01/2006~ -~21022~^~620~^0.080^4^0.004^~1~^~A~^^^1^0.070^0.090^3^0.067^0.093^~2, 3~^~09/01/2006~ -~21022~^~621~^0.070^4^0.004^~1~^~A~^^^1^0.060^0.080^3^0.057^0.083^~2, 3~^~09/01/2006~ -~21022~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~625~^0.042^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.034^0.050^~2, 3~^~09/01/2006~ -~21022~^~626~^0.402^4^0.011^~1~^~A~^^^1^0.380^0.430^3^0.367^0.438^~2, 3~^~09/01/2006~ -~21022~^~627~^0.045^4^0.005^~1~^~A~^^^1^0.030^0.050^3^0.029^0.061^~2, 3~^~09/01/2006~ -~21022~^~628~^0.100^4^0.004^~1~^~A~^^^1^0.090^0.110^3^0.087^0.113^~2, 3~^~09/01/2006~ -~21022~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~631~^0.052^4^0.006^~1~^~A~^^^1^0.040^0.070^3^0.032^0.073^~2, 3~^~09/01/2006~ -~21022~^~645~^6.765^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~646~^2.772^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21022~^~652~^0.037^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.029^0.045^~2, 3~^~09/01/2006~ -~21022~^~653~^0.060^4^0.000^~1~^~A~^^^1^0.060^0.060^^^^~2, 3~^~09/01/2006~ -~21022~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~672~^0.245^4^0.012^~1~^~A~^^^1^0.210^0.260^3^0.207^0.283^~2, 3~^~09/01/2006~ -~21022~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21022~^~689~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~09/01/2006~ -~21022~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2006~ -~21024~^~312~^0.085^4^0.004^~1~^~A~^^^1^0.076^0.094^3^0.072^0.098^~2, 3~^~03/01/2007~ -~21024~^~315~^0.390^4^0.023^~1~^~A~^^^1^0.327^0.430^3^0.318^0.463^~2, 3~^~03/01/2007~ -~21024~^~404~^0.284^4^0.009^~1~^~A~^^^1^0.257^0.299^3^0.254^0.313^~2, 3~^~03/01/2007~ -~21024~^~405~^0.175^4^0.010^~1~^~A~^^^1^0.148^0.194^3^0.144^0.206^~2, 3~^~03/01/2007~ -~21024~^~406~^2.575^4^0.112^~1~^~A~^^^1^2.310^2.840^3^2.217^2.933^~2, 3~^~03/01/2007~ -~21024~^~410~^0.336^4^0.012^~1~^~A~^^^1^0.309^0.360^3^0.297^0.376^~2, 3~^~03/01/2007~ -~21024~^~415~^0.053^4^0.005^~1~^~A~^^^1^0.045^0.068^3^0.036^0.069^~2, 3~^~03/01/2007~ -~21024~^~606~^3.989^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~21024~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~612~^0.007^4^0.007^~1~^~A~^^^1^0.000^0.027^3^-0.015^0.028^~1, 2, 3~^~03/01/2007~ -~21024~^~613~^1.961^4^0.122^~1~^~A~^^^1^1.710^2.291^3^1.572^2.350^~2, 3~^~03/01/2007~ -~21024~^~614~^1.892^4^0.129^~1~^~A~^^^1^1.616^2.240^3^1.480^2.304^~2, 3~^~03/01/2007~ -~21024~^~615~^0.058^4^0.004^~1~^~A~^^^1^0.050^0.068^3^0.046^0.071^~2, 3~^~03/01/2007~ -~21024~^~617~^9.406^4^0.806^~1~^~A~^^^1^7.374^11.267^3^6.841^11.972^~2, 3~^~03/01/2007~ -~21024~^~618~^2.421^4^0.154^~1~^~A~^^^1^2.226^2.881^3^1.931^2.911^~2, 3~^~03/01/2007~ -~21024~^~619~^0.145^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~21024~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~624~^0.059^4^0.005^~1~^~A~^^^1^0.047^0.069^3^0.044^0.073^~2, 3~^~03/01/2007~ -~21024~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~626~^0.031^4^0.002^~1~^~A~^^^1^0.027^0.038^3^0.023^0.039^~2, 3~^~03/01/2007~ -~21024~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~628~^0.065^4^0.008^~1~^~A~^^^1^0.049^0.080^3^0.039^0.092^~2, 3~^~03/01/2007~ -~21024~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~ -~21024~^~645~^9.502^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~646~^2.566^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21024~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~653~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.026^3^-0.010^0.034^~1, 2, 3~^~03/01/2007~ -~21024~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~21024~^~851~^0.145^4^0.029^~1~^~A~^^^1^0.108^0.231^3^0.053^0.237^~2, 3~^~03/01/2007~ -~21026~^~312~^0.100^16^0.009^~1~^~A~^^^1^0.049^0.167^6^0.079^0.121^~2, 3~^~05/01/2014~ -~21026~^~315~^0.158^16^0.009^~1~^~A~^^^1^0.125^0.214^6^0.136^0.180^~2, 3~^~05/01/2014~ -~21026~^~404~^0.137^9^0.009^~1~^~A~^^^1^0.110^0.200^3^0.104^0.169^~2, 3~^~05/01/2014~ -~21026~^~405~^0.038^9^0.007^~1~^~A~^^^1^0.015^0.070^2^0.007^0.070^~1, 2, 3~^~05/01/2014~ -~21026~^~406~^1.838^9^0.276^~1~^~A~^^^1^1.260^2.630^2^0.655^3.022^~2, 3~^~05/01/2014~ -~21026~^~410~^0.380^6^0.042^~1~^~A~^^^1^0.290^0.550^1^0.005^0.756^~2, 3~^~05/01/2014~ -~21026~^~415~^0.186^9^0.007^~1~^~A~^^^1^0.170^0.240^2^0.156^0.216^~2, 3~^~05/01/2014~ -~21026~^~605~^0.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~606~^2.540^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~609~^0.009^9^0.002^~1~^~A~^^^1^0.005^0.017^2^0.003^0.015^~2, 3~^~05/01/2014~ -~21026~^~610~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~611~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.010^3^0.004^0.005^~2, 3~^~05/01/2014~ -~21026~^~612~^0.020^9^0.001^~1~^~A~^^^1^0.012^0.049^2^0.015^0.024^~2, 3~^~05/01/2014~ -~21026~^~613~^1.422^9^0.044^~1~^~A~^^^1^0.991^2.641^4^1.295^1.550^~2, 3~^~05/01/2014~ -~21026~^~614~^0.903^9^0.026^~1~^~A~^^^1^0.426^1.094^2^0.803^1.003^~2, 3~^~05/01/2014~ -~21026~^~615~^0.089^9^0.002^~1~^~A~^^^1^0.067^0.108^2^0.081^0.096^~2, 3~^~05/01/2014~ -~21026~^~617~^7.629^9^0.183^~1~^~AS~^^^1^5.063^10.736^2^6.948^8.310^~2, 3~^~05/01/2014~ -~21026~^~618~^5.180^9^0.216^~1~^~AS~^^^1^3.047^8.686^2^4.297^6.062^~2, 3~^~05/01/2014~ -~21026~^~619~^0.471^9^0.019^~1~^~AS~^^^1^0.388^0.673^2^0.395^0.548^~2, 3~^~05/01/2014~ -~21026~^~620~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^2^0.003^0.007^~2, 3~^~05/01/2014~ -~21026~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~624~^0.047^9^0.001^~1~^~A~^^^1^0.035^0.051^3^0.045^0.048^~2, 3~^~05/01/2014~ -~21026~^~625~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~626~^0.030^9^0.001^~1~^~AS~^^^1^0.027^0.044^3^0.028^0.033^~2, 3~^~05/01/2014~ -~21026~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~628~^0.143^9^0.002^~1~^~A~^^^1^0.058^0.213^4^0.138^0.148^~2, 3~^~05/01/2014~ -~21026~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~630~^0.004^9^0.000^~1~^~AS~^^^1^0.002^0.013^3^0.003^0.005^~2, 3~^~05/01/2014~ -~21026~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~645~^7.827^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~646~^5.665^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~652~^0.006^9^0.000^~1~^~A~^^^1^0.006^0.008^2^0.005^0.007^~2, 3~^~05/01/2014~ -~21026~^~653~^0.011^9^0.001^~1~^~A~^^^1^0.009^0.016^2^0.009^0.014^~2, 3~^~05/01/2014~ -~21026~^~654~^0.027^9^0.001^~1~^~A~^^^1^0.026^0.030^2^0.025^0.030^~2, 3~^~05/01/2014~ -~21026~^~662~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~663~^0.024^9^0.002^~1~^~A~^^^1^0.019^0.040^3^0.017^0.030^~2, 3~^~05/01/2014~ -~21026~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~21026~^~665~^0.032^9^0.002^~1~^~A~^^^1^0.021^0.071^3^0.024^0.040^~2, 3~^~05/01/2014~ -~21026~^~670~^0.016^9^0.001^~1~^~A~^^^1^0.011^0.033^3^0.013^0.019^~2, 3~^~05/01/2014~ -~21026~^~671~^0.013^9^0.001^~1~^~A~^^^1^0.001^0.022^2^0.011^0.015^~1, 2, 3~^~05/01/2014~ -~21026~^~672~^0.008^9^0.000^~1~^~A~^^^1^0.006^0.011^3^0.007^0.010^~2, 3~^~05/01/2014~ -~21026~^~673~^0.030^9^0.001^~1~^~A~^^^1^0.027^0.044^3^0.028^0.033^~2, 3~^~05/01/2014~ -~21026~^~674~^7.605^9^0.184^~1~^~A~^^^1^5.044^10.715^2^6.916^8.294^~2, 3~^~05/01/2014~ -~21026~^~675~^5.131^9^0.218^~1~^~A~^^^1^3.014^8.582^2^4.240^6.023^~2, 3~^~05/01/2014~ -~21026~^~676~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.013^3^0.003^0.005^~1, 2, 3~^~05/01/2014~ -~21026~^~685~^0.030^9^0.001^~1~^~A~^^^1^0.025^0.042^3^0.025^0.035^~2, 3~^~05/01/2014~ -~21026~^~687~^0.008^9^0.000^~1~^~A~^^^1^0.008^0.009^2^0.008^0.008^~2, 3~^~05/01/2014~ -~21026~^~689~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.002^^^^~2, 3~^~02/01/2006~ -~21026~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21026~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2006~ -~21026~^~851~^0.441^9^0.021^~1~^~A~^^^1^0.357^0.633^2^0.358^0.525^~2, 3~^~05/01/2014~ -~21026~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~853~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21026~^~858~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21028~^~312~^0.023^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~315~^0.038^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~404~^0.043^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~405~^0.246^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~406~^0.498^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~410~^0.728^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~415~^0.054^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~605~^0.280^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21028~^~606~^2.542^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21028~^~607~^0.085^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~608~^0.047^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~609~^0.037^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~610~^0.087^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~611~^0.101^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~612~^0.365^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~613~^1.171^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~614~^0.580^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~615~^0.007^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~617~^1.130^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~618~^0.269^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~619~^0.022^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~624~^0.001^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~625~^0.025^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~626~^0.042^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~628~^0.001^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~ -~21028~^~645~^1.206^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21028~^~646~^0.297^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21028~^~652~^0.038^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~653~^0.023^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21028~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21032~^~312~^0.053^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~315~^0.060^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~404~^0.040^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~405~^0.190^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~406~^0.610^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~410~^0.240^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~415~^0.030^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~501~^0.063^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~502~^0.202^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~503~^0.272^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~504~^0.439^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~505~^0.355^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~506~^0.112^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~507~^0.041^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~508~^0.217^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~509~^0.217^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~510~^0.301^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~511~^0.162^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~512~^0.123^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~513~^0.154^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~514~^0.340^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~515~^0.939^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~516~^0.095^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~517~^0.434^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~518~^0.244^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~606~^2.910^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~608~^0.110^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~609~^0.037^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~610~^0.100^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~611~^0.131^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~612~^0.420^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~613~^1.355^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~614~^0.639^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~617~^1.754^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~618~^0.552^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~619~^0.074^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~620~^0.028^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~626~^0.129^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~645~^1.957^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21032~^~646~^0.653^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~312~^0.082^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~315~^0.080^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~404~^0.040^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~405~^0.190^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~406~^0.680^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~410~^0.210^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~415~^0.080^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~501~^0.045^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~502~^0.137^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~503~^0.172^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~504~^0.276^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~505~^0.224^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~506~^0.066^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~507~^0.032^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~508~^0.152^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~509~^0.143^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~510~^0.205^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~511~^0.132^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~512~^0.077^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~513~^0.119^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~514~^0.260^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~515~^0.607^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~516~^0.087^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~517~^0.257^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~518~^0.162^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~606~^3.179^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~608~^0.073^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~609~^0.096^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~610~^0.124^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~611~^0.697^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~612~^0.471^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~613~^0.993^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~614~^0.640^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~617~^1.350^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~618~^0.445^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~619~^0.051^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~620~^0.015^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~626~^0.081^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~645~^1.475^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21033~^~646~^0.511^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~312~^0.050^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~315~^0.110^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~404~^0.040^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~405~^0.180^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~406~^0.590^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~410~^0.290^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~415~^0.050^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~501~^0.054^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~502~^0.174^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~503~^0.230^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~504~^0.373^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~505~^0.302^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~506~^0.094^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~507~^0.036^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~508~^0.185^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~509~^0.186^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~510~^0.255^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~511~^0.142^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~512~^0.105^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~513~^0.136^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~514~^0.321^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~515~^0.805^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~516~^0.085^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~517~^0.366^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~518~^0.209^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~606~^2.444^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~608~^0.072^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~609~^0.025^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~610~^0.087^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~611~^0.106^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~612~^0.354^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~613~^1.152^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~614~^0.528^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~617~^1.564^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~618~^0.594^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~619~^0.050^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~620~^0.023^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~626~^0.093^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~628~^0.029^2^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~645~^1.739^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21034~^~646~^0.667^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21059~^~312~^0.097^6^0.005^~1~^~A~^^^1^0.084^0.108^5^0.085^0.108^~4~^~03/01/2011~ -~21059~^~315~^0.172^6^0.005^~1~^~A~^^^1^0.152^0.184^5^0.160^0.184^~4~^~03/01/2011~ -~21059~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~406~^1.240^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21059~^~605~^0.011^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~606~^3.843^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21059~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~611~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~612~^0.033^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~613~^2.516^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~614~^1.272^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~615~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~617~^11.734^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~618~^1.458^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~619~^0.108^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~620~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~621~^0.010^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~626~^0.127^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~628~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~629~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~645~^11.905^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21059~^~646~^1.593^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21059~^~652~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~653~^0.010^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~654~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~687~^0.042^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~689~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21059~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~21060~^~312~^0.174^6^0.013^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~315~^0.400^7^0.049^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~404~^0.290^7^0.049^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~405~^0.280^7^0.022^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~406~^1.870^7^0.072^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~410~^0.920^7^0.089^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~415~^0.140^7^0.018^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~501~^0.079^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~502~^0.244^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~503~^0.270^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~504~^0.504^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~505~^0.343^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~506~^0.107^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~507~^0.098^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~508~^0.351^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~509~^0.192^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~510~^0.319^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~511~^0.359^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~512~^0.172^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~513~^0.255^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~514~^0.610^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~515~^1.469^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~516~^0.251^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~517~^0.463^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~518~^0.351^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~606~^3.174^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~612~^0.230^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~613~^1.965^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~614~^0.980^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~617~^2.184^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~618~^0.439^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~619~^0.112^1^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~645~^2.184^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21060~^~646~^0.551^0^^~1~^^^^^^^^^^^~09/01/1988~ -~21061~^~312~^0.164^6^0.002^~1~^~A~^^^1^0.160^0.172^5^0.160^0.169^~2, 3~^~03/01/2011~ -~21061~^~315~^0.456^6^0.007^~1~^~A~^^^1^0.441^0.479^5^0.439^0.473^~2, 3~^~03/01/2011~ -~21061~^~404~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21061~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21061~^~406~^2.020^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21061~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21061~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~606~^2.309^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~607~^0.033^6^0.005^~1~^~A~^^^1^0.014^0.047^5^0.021^0.045^~2, 3~^~03/01/2011~ -~21061~^~608~^0.024^6^0.004^~1~^~A~^^^1^0.009^0.035^5^0.014^0.033^~2, 3~^~03/01/2011~ -~21061~^~609~^0.016^6^0.002^~1~^~A~^^^1^0.007^0.022^5^0.010^0.021^~2, 3~^~03/01/2011~ -~21061~^~610~^0.037^6^0.005^~1~^~A~^^^1^0.016^0.052^5^0.023^0.051^~2, 3~^~03/01/2011~ -~21061~^~611~^0.044^6^0.007^~1~^~A~^^^1^0.019^0.063^5^0.027^0.061^~2, 3~^~03/01/2011~ -~21061~^~612~^0.154^6^0.024^~1~^~A~^^^1^0.066^0.233^5^0.093^0.215^~2, 3~^~03/01/2011~ -~21061~^~613~^0.980^6^0.064^~1~^~A~^^^1^0.738^1.179^5^0.817^1.144^~2, 3~^~03/01/2011~ -~21061~^~614~^0.941^6^0.033^~1~^~A~^^^1^0.820^1.028^5^0.857^1.025^~2, 3~^~03/01/2011~ -~21061~^~615~^0.018^6^0.000^~1~^~A~^^^1^0.016^0.019^5^0.017^0.020^~2, 3~^~03/01/2011~ -~21061~^~617~^1.174^6^0.054^~1~^~AS~^^^1^0.983^1.326^5^1.037^1.312^~2, 3~^~03/01/2011~ -~21061~^~618~^1.873^6^0.026^~1~^~AS~^^^1^1.807^1.962^5^1.806^1.940^~2, 3~^~03/01/2011~ -~21061~^~619~^0.336^6^0.003^~1~^~AS~^^^1^0.327^0.351^5^0.327^0.344^~2, 3~^~03/01/2011~ -~21061~^~620~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.008^5^0.003^0.007^~2, 3~^~03/01/2011~ -~21061~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21061~^~624~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.017^5^0.015^0.017^~2, 3~^~03/01/2011~ -~21061~^~625~^0.011^6^0.002^~1~^~A~^^^1^0.004^0.017^5^0.006^0.016^~2, 3~^~03/01/2011~ -~21061~^~626~^0.030^6^0.004^~1~^~AS~^^^1^0.015^0.044^5^0.020^0.041^~2, 3~^~03/01/2011~ -~21061~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21061~^~628~^0.034^6^0.001^~1~^~A~^^^1^0.030^0.039^5^0.031^0.038^~2, 3~^~03/01/2011~ -~21061~^~629~^0.004^6^0.002^~1~^~A~^^^1^0.001^0.011^5^0.000^0.008^~1, 2, 3~^~03/01/2011~ -~21061~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.002^~2, 3~^~03/01/2011~ -~21061~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~21061~^~645~^1.258^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~646~^2.229^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~652~^0.018^6^0.003^~1~^~A~^^^1^0.009^0.027^5^0.012^0.025^~2, 3~^~03/01/2011~ -~21061~^~653~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.021^5^0.013^0.020^~2, 3~^~03/01/2011~ -~21061~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~03/01/2011~ -~21061~^~662~^0.006^6^0.001^~1~^~A~^^^1^0.002^0.009^5^0.003^0.008^~1, 2, 3~^~03/01/2011~ -~21061~^~663~^0.065^6^0.006^~1~^~A~^^^1^0.041^0.083^5^0.049^0.081^~2, 3~^~03/01/2011~ -~21061~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21061~^~665~^0.035^6^0.002^~1~^~A~^^^1^0.029^0.043^5^0.029^0.041^~2, 3~^~03/01/2011~ -~21061~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.007^0.017^5^0.008^0.015^~2, 3~^~03/01/2011~ -~21061~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21061~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~21061~^~673~^0.025^6^0.003^~1~^~A~^^^1^0.013^0.035^5^0.017^0.033^~2, 3~^~03/01/2011~ -~21061~^~674~^1.109^6^0.048^~1~^~A~^^^1^0.942^1.247^5^0.985^1.234^~2, 3~^~03/01/2011~ -~21061~^~675~^1.826^6^0.027^~1~^~A~^^^1^1.747^1.914^5^1.756^1.896^~2, 3~^~03/01/2011~ -~21061~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~21061~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~21061~^~687~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.004^0.007^~2, 3~^~03/01/2011~ -~21061~^~689~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~03/01/2011~ -~21061~^~693~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21061~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21061~^~851~^0.335^6^0.004^~1~^~A~^^^1^0.325^0.351^5^0.326^0.344^~2, 3~^~03/01/2011~ -~21061~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21061~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~21061~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~21063~^~312~^0.110^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~315~^0.247^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~404~^0.173^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~405~^0.115^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~406~^2.184^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~410~^0.312^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~415~^0.197^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~606~^2.905^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~607~^0.059^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~608~^0.030^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~609~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~610~^0.034^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~611~^0.033^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~612~^0.289^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~613~^1.534^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~614~^0.786^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~617~^2.864^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~618~^0.468^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~619~^0.083^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~620~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~626~^0.211^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~628~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~645~^3.257^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21063~^~646~^0.577^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~21064~^~312~^0.106^6^0.002^~1~^~A~^^^1^0.099^0.112^5^0.100^0.112^~2, 3~^~04/01/2013~ -~21064~^~315~^0.298^6^0.003^~1~^~A~^^^1^0.287^0.304^5^0.291^0.305^~2, 3~^~04/01/2013~ -~21064~^~404~^0.213^3^0.015^~1~^~A~^^^1^0.190^0.240^2^0.151^0.276^~2, 3~^~04/01/2013~ -~21064~^~405~^0.223^3^0.007^~1~^~A~^^^1^0.210^0.230^2^0.194^0.252^~2, 3~^~04/01/2013~ -~21064~^~406~^2.090^3^0.104^~1~^~A~^^^1^1.890^2.240^2^1.642^2.538^~2, 3~^~04/01/2013~ -~21064~^~410~^0.345^2^^~1~^~A~^^^1^0.330^0.360^1^^^^~04/01/2013~ -~21064~^~415~^0.097^3^0.003^~1~^~A~^^^1^0.094^0.103^2^0.085^0.110^~2, 3~^~04/01/2013~ -~21064~^~501~^0.063^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~502~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~503~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~504~^0.474^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~505~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~506~^0.107^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~508~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~509~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~510~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~511~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~512~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~513~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~514~^0.501^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~515~^1.476^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~516~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~517~^0.662^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21064~^~605~^0.151^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~606~^2.733^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~607~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.040^2^0.027^0.045^~2, 3~^~04/01/2013~ -~21064~^~608~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.028^2^0.023^0.031^~2, 3~^~04/01/2013~ -~21064~^~609~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.015^0.020^~2, 3~^~04/01/2013~ -~21064~^~610~^0.047^3^0.001^~1~^~A~^^^1^0.046^0.050^2^0.042^0.053^~2, 3~^~04/01/2013~ -~21064~^~611~^0.052^3^0.002^~1~^~A~^^^1^0.050^0.055^2^0.045^0.059^~2, 3~^~04/01/2013~ -~21064~^~612~^0.221^3^0.005^~1~^~A~^^^1^0.211^0.228^2^0.199^0.243^~2, 3~^~04/01/2013~ -~21064~^~613~^1.271^3^0.042^~1~^~A~^^^1^1.193^1.337^2^1.090^1.452^~2, 3~^~04/01/2013~ -~21064~^~614~^0.965^3^0.043^~1~^~A~^^^1^0.881^1.024^2^0.779^1.150^~2, 3~^~04/01/2013~ -~21064~^~615~^0.016^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~04/01/2013~ -~21064~^~617~^1.651^3^0.059^~1~^~AS~^^^1^1.555^1.759^2^1.396^1.905^~2, 3~^~04/01/2013~ -~21064~^~618~^1.345^3^0.049^~1~^~AS~^^^1^1.248^1.399^2^1.135^1.555^~2, 3~^~04/01/2013~ -~21064~^~619~^0.209^3^0.008^~1~^~AS~^^^1^0.193^0.218^2^0.175^0.243^~2, 3~^~04/01/2013~ -~21064~^~620~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2013~ -~21064~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~624~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~04/01/2013~ -~21064~^~625~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.033^2^0.029^0.034^~2, 3~^~04/01/2013~ -~21064~^~626~^0.084^3^0.006^~1~^~AS~^^^1^0.073^0.095^2^0.057^0.111^~2, 3~^~04/01/2013~ -~21064~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~628~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.021^2^0.012^0.024^~2, 3~^~04/01/2013~ -~21064~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~21064~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~21064~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~21064~^~645~^1.803^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~646~^1.575^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~652~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.032^~2, 3~^~04/01/2013~ -~21064~^~653~^0.035^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.023^0.048^~2, 3~^~04/01/2013~ -~21064~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21064~^~662~^0.007^3^0.003^~1~^~A~^^^1^0.001^0.012^2^-0.007^0.021^~1, 2, 3~^~04/01/2013~ -~21064~^~663~^0.119^3^0.009^~1~^~A~^^^1^0.108^0.137^2^0.079^0.158^~2, 3~^~04/01/2013~ -~21064~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~665~^0.025^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~2, 3~^~04/01/2013~ -~21064~^~670~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~04/01/2013~ -~21064~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~21064~^~673~^0.077^3^0.003^~1~^~A~^^^1^0.072^0.083^2^0.063^0.091^~2, 3~^~04/01/2013~ -~21064~^~674~^1.532^3^0.051^~1~^~A~^^^1^1.447^1.622^2^1.314^1.749^~2, 3~^~04/01/2013~ -~21064~^~675~^1.305^3^0.049^~1~^~A~^^^1^1.208^1.357^2^1.096^1.514^~2, 3~^~04/01/2013~ -~21064~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~685~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21064~^~687~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.022^2^0.012^0.026^~2, 3~^~04/01/2013~ -~21064~^~689~^0.004^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21064~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21064~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~851~^0.202^3^0.008^~1~^~A~^^^1^0.186^0.212^2^0.167^0.238^~2, 3~^~04/01/2013~ -~21064~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21064~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21064~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~21078~^~312~^0.064^6^0.003^~1~^~A~^^^1^0.057^0.078^5^0.056^0.072^~2, 3~^~04/01/2013~ -~21078~^~315~^0.187^6^0.007^~1~^~A~^^^1^0.167^0.208^5^0.170^0.204^~2, 3~^~04/01/2013~ -~21078~^~404~^0.123^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.109^0.138^~2, 3~^~04/01/2013~ -~21078~^~405~^0.133^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.104^0.162^~2, 3~^~04/01/2013~ -~21078~^~406~^0.630^3^0.012^~1~^~A~^^^1^0.610^0.650^2^0.580^0.679^~2, 3~^~04/01/2013~ -~21078~^~410~^0.380^2^^~1~^~A~^^^1^0.370^0.390^1^^^^~04/01/2013~ -~21078~^~415~^0.215^3^0.003^~1~^~A~^^^1^0.209^0.221^2^0.200^0.230^~2, 3~^~04/01/2013~ -~21078~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~502~^0.156^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~503~^0.187^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~504~^0.521^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~505~^0.156^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~506~^0.094^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~508~^0.229^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~509~^0.135^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~510~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~511~^0.208^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~512~^0.135^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~513~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~514~^0.344^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~515~^0.916^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~516~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~517~^0.531^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~518~^0.219^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21078~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21078~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~606~^2.173^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~607~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~21078~^~608~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~21078~^~609~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~21078~^~610~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.023^2^0.011^0.028^~2, 3~^~04/01/2013~ -~21078~^~611~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.023^2^0.010^0.028^~2, 3~^~04/01/2013~ -~21078~^~612~^0.068^3^0.007^~1~^~A~^^^1^0.059^0.081^2^0.039^0.097^~2, 3~^~04/01/2013~ -~21078~^~613~^1.286^3^0.070^~1~^~A~^^^1^1.188^1.421^2^0.986^1.586^~2, 3~^~04/01/2013~ -~21078~^~614~^0.494^3^0.031^~1~^~A~^^^1^0.434^0.539^2^0.360^0.628^~2, 3~^~04/01/2013~ -~21078~^~615~^0.129^3^0.009^~1~^~A~^^^1^0.114^0.144^2^0.091^0.166^~2, 3~^~04/01/2013~ -~21078~^~617~^13.650^3^0.965^~1~^~AS~^^^1^12.200^15.478^2^9.498^17.802^~2, 3~^~04/01/2013~ -~21078~^~618~^4.372^3^0.322^~1~^~AS~^^^1^3.734^4.772^2^2.984^5.759^~2, 3~^~04/01/2013~ -~21078~^~619~^0.649^3^0.122^~1~^~AS~^^^1^0.525^0.893^2^0.123^1.174^~2, 3~^~04/01/2013~ -~21078~^~620~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~21078~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~624~^0.068^3^0.005^~1~^~A~^^^1^0.059^0.076^2^0.047^0.089^~2, 3~^~04/01/2013~ -~21078~^~625~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~21078~^~626~^0.057^3^0.003^~1~^~AS~^^^1^0.054^0.063^2^0.044^0.070^~2, 3~^~04/01/2013~ -~21078~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~628~^0.281^3^0.011^~1~^~A~^^^1^0.262^0.301^2^0.232^0.329^~2, 3~^~04/01/2013~ -~21078~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~630~^0.011^3^0.002^~1~^~AS~^^^1^0.008^0.015^2^0.002^0.020^~2, 3~^~04/01/2013~ -~21078~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~645~^14.020^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~646~^5.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~652~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~21078~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~04/01/2013~ -~21078~^~654~^0.039^3^0.003^~1~^~A~^^^1^0.034^0.043^2^0.028^0.051^~2, 3~^~04/01/2013~ -~21078~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~663~^0.032^3^0.005^~1~^~A~^^^1^0.024^0.042^2^0.009^0.055^~2, 3~^~04/01/2013~ -~21078~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~665~^0.024^3^0.002^~1~^~A~^^^1^0.020^0.028^2^0.014^0.034^~2, 3~^~04/01/2013~ -~21078~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~04/01/2013~ -~21078~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~672~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~04/01/2013~ -~21078~^~673~^0.055^3^0.003^~1~^~A~^^^1^0.052^0.061^2^0.042^0.068^~2, 3~^~04/01/2013~ -~21078~^~674~^13.619^3^0.967^~1~^~A~^^^1^12.171^15.454^2^9.456^17.781^~2, 3~^~04/01/2013~ -~21078~^~675~^4.343^3^0.321^~1~^~A~^^^1^3.708^4.742^2^2.962^5.724^~2, 3~^~04/01/2013~ -~21078~^~676~^0.011^3^0.002^~1~^~A~^^^1^0.008^0.015^2^0.002^0.020^~2, 3~^~04/01/2013~ -~21078~^~685~^0.032^3^0.009^~1~^~A~^^^1^0.020^0.050^2^-0.008^0.071^~2, 3~^~04/01/2013~ -~21078~^~687~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.010^0.022^~2, 3~^~04/01/2013~ -~21078~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~21078~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21078~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~851~^0.617^3^0.113^~1~^~A~^^^1^0.502^0.843^2^0.130^1.103^~2, 3~^~04/01/2013~ -~21078~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21078~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~312~^0.104^6^0.002^~1~^~A~^^^1^0.098^0.110^5^0.099^0.109^~2, 3~^~04/01/2013~ -~21080~^~315~^0.202^6^0.004^~1~^~A~^^^1^0.190^0.214^5^0.191^0.212^~2, 3~^~04/01/2013~ -~21080~^~404~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~04/01/2013~ -~21080~^~405~^0.137^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.122^0.151^~2, 3~^~04/01/2013~ -~21080~^~406~^1.010^3^0.071^~1~^~A~^^^1^0.920^1.150^2^0.705^1.315^~2, 3~^~04/01/2013~ -~21080~^~410~^0.330^2^^~1~^~A~^^^1^0.330^0.330^^^^^~04/01/2013~ -~21080~^~415~^0.158^3^0.009^~1~^~A~^^^1^0.149^0.176^2^0.119^0.197^~2, 3~^~04/01/2013~ -~21080~^~501~^0.059^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~502~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~503~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~504~^0.541^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~505~^0.344^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~506~^0.118^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~508~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~510~^0.325^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~511~^0.354^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~512~^0.187^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~513~^0.354^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~514~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~515~^1.053^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~516~^0.325^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~517~^0.511^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~518~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21080~^~605~^0.167^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~606~^2.549^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~607~^0.021^3^0.002^~1~^~A~^^^1^0.017^0.025^2^0.011^0.031^~2, 3~^~04/01/2013~ -~21080~^~608~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.017^2^0.011^0.019^~2, 3~^~04/01/2013~ -~21080~^~609~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~04/01/2013~ -~21080~^~610~^0.029^3^0.002^~1~^~A~^^^1^0.027^0.032^2^0.022^0.036^~2, 3~^~04/01/2013~ -~21080~^~611~^0.033^3^0.002^~1~^~A~^^^1^0.030^0.036^2^0.025^0.040^~2, 3~^~04/01/2013~ -~21080~^~612~^0.174^3^0.005^~1~^~A~^^^1^0.167^0.183^2^0.154^0.194^~2, 3~^~04/01/2013~ -~21080~^~613~^1.373^3^0.025^~1~^~A~^^^1^1.324^1.409^2^1.264^1.482^~2, 3~^~04/01/2013~ -~21080~^~614~^0.724^3^0.024^~1~^~A~^^^1^0.677^0.749^2^0.623^0.825^~2, 3~^~04/01/2013~ -~21080~^~615~^0.055^3^0.001^~1~^~A~^^^1^0.054^0.058^2^0.050^0.061^~2, 3~^~04/01/2013~ -~21080~^~617~^6.378^3^0.179^~1~^~AS~^^^1^6.095^6.708^2^5.610^7.146^~2, 3~^~04/01/2013~ -~21080~^~618~^2.142^3^0.086^~1~^~AS~^^^1^1.983^2.279^2^1.771^2.512^~2, 3~^~04/01/2013~ -~21080~^~619~^0.327^3^0.023^~1~^~AS~^^^1^0.303^0.373^2^0.229^0.426^~2, 3~^~04/01/2013~ -~21080~^~620~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~21080~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~624~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.026^0.034^~2, 3~^~04/01/2013~ -~21080~^~625~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.026^0.034^~2, 3~^~04/01/2013~ -~21080~^~626~^0.109^3^0.002^~1~^~AS~^^^1^0.106^0.111^2^0.102^0.116^~2, 3~^~04/01/2013~ -~21080~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~628~^0.112^3^0.004^~1~^~A~^^^1^0.104^0.116^2^0.095^0.128^~2, 3~^~04/01/2013~ -~21080~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2013~ -~21080~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~21080~^~645~^6.661^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~646~^2.496^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~652~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~2, 3~^~04/01/2013~ -~21080~^~653~^0.041^3^0.003^~1~^~A~^^^1^0.036^0.044^2^0.030^0.053^~2, 3~^~04/01/2013~ -~21080~^~654~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~04/01/2013~ -~21080~^~662~^0.008^3^0.003^~1~^~A~^^^1^0.001^0.012^2^-0.007^0.022^~1, 2, 3~^~04/01/2013~ -~21080~^~663~^0.133^3^0.011^~1~^~A~^^^1^0.112^0.147^2^0.087^0.178^~2, 3~^~04/01/2013~ -~21080~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~665~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.032^~2, 3~^~04/01/2013~ -~21080~^~670~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~04/01/2013~ -~21080~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~21080~^~673~^0.102^3^0.002^~1~^~A~^^^1^0.099^0.105^2^0.094^0.109^~2, 3~^~04/01/2013~ -~21080~^~674~^6.245^3^0.175^~1~^~A~^^^1^5.956^6.561^2^5.492^6.999^~2, 3~^~04/01/2013~ -~21080~^~675~^2.098^3^0.085^~1~^~A~^^^1^1.941^2.234^2^1.731^2.465^~2, 3~^~04/01/2013~ -~21080~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2013~ -~21080~^~685~^0.012^3^0.002^~1~^~A~^^^1^0.009^0.016^2^0.003^0.021^~2, 3~^~04/01/2013~ -~21080~^~687~^0.028^3^0.001^~1~^~A~^^^1^0.025^0.030^2^0.022^0.034^~2, 3~^~04/01/2013~ -~21080~^~689~^0.004^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~21080~^~693~^0.140^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21080~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~851~^0.315^3^0.021^~1~^~A~^^^1^0.294^0.357^2^0.225^0.405^~2, 3~^~04/01/2013~ -~21080~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~21080~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21080~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~21082~^~312~^0.077^6^0.004^~1~^~A~^^^1^0.067^0.095^5^0.067^0.087^~2, 3~^~03/01/2011~ -~21082~^~315~^0.249^6^0.007^~1~^~A~^^^1^0.231^0.277^5^0.231^0.267^~2, 3~^~03/01/2011~ -~21082~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21082~^~405~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21082~^~406~^1.650^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21082~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21082~^~605~^0.467^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~606~^4.384^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~607~^0.045^6^0.004^~1~^~A~^^^1^0.034^0.059^5^0.035^0.054^~2, 3~^~03/01/2011~ -~21082~^~608~^0.034^6^0.003^~1~^~A~^^^1^0.025^0.045^5^0.027^0.041^~2, 3~^~03/01/2011~ -~21082~^~609~^0.023^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.019^0.028^~2, 3~^~03/01/2011~ -~21082~^~610~^0.055^6^0.005^~1~^~A~^^^1^0.040^0.070^5^0.044^0.067^~2, 3~^~03/01/2011~ -~21082~^~611~^0.066^6^0.006^~1~^~A~^^^1^0.047^0.086^5^0.052^0.081^~2, 3~^~03/01/2011~ -~21082~^~612~^0.388^6^0.023^~1~^~A~^^^1^0.328^0.485^5^0.329^0.447^~2, 3~^~03/01/2011~ -~21082~^~613~^2.414^6^0.103^~1~^~A~^^^1^2.182^2.858^5^2.150^2.678^~2, 3~^~03/01/2011~ -~21082~^~614~^1.160^6^0.055^~1~^~A~^^^1^1.045^1.393^5^1.018^1.301^~2, 3~^~03/01/2011~ -~21082~^~615~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.029^5^0.026^0.029^~2, 3~^~03/01/2011~ -~21082~^~617~^4.016^6^0.141^~1~^~AS~^^^1^3.643^4.573^5^3.655^4.378^~2, 3~^~03/01/2011~ -~21082~^~618~^2.819^6^0.055^~1~^~AS~^^^1^2.568^2.946^5^2.678^2.961^~2, 3~^~03/01/2011~ -~21082~^~619~^0.168^6^0.015^~1~^~AS~^^^1^0.125^0.205^5^0.129^0.208^~2, 3~^~03/01/2011~ -~21082~^~620~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.023^5^0.019^0.022^~2, 3~^~03/01/2011~ -~21082~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21082~^~624~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.013^0.017^~2, 3~^~03/01/2011~ -~21082~^~625~^0.060^6^0.004^~1~^~A~^^^1^0.050^0.074^5^0.050^0.069^~2, 3~^~03/01/2011~ -~21082~^~626~^0.231^6^0.013^~1~^~AS~^^^1^0.193^0.276^5^0.197^0.265^~2, 3~^~03/01/2011~ -~21082~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~21082~^~628~^0.046^6^0.002^~1~^~A~^^^1^0.040^0.053^5^0.041^0.051^~2, 3~^~03/01/2011~ -~21082~^~629~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~03/01/2011~ -~21082~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~03/01/2011~ -~21082~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~03/01/2011~ -~21082~^~645~^4.411^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~646~^3.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~652~^0.052^6^0.003^~1~^~A~^^^1^0.044^0.064^5^0.045^0.060^~2, 3~^~03/01/2011~ -~21082~^~653~^0.091^6^0.003^~1~^~A~^^^1^0.076^0.100^5^0.082^0.100^~2, 3~^~03/01/2011~ -~21082~^~654~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~03/01/2011~ -~21082~^~662~^0.027^6^0.001^~1~^~A~^^^1^0.022^0.032^5^0.023^0.030^~2, 3~^~03/01/2011~ -~21082~^~663~^0.382^6^0.017^~1~^~A~^^^1^0.330^0.431^5^0.337^0.427^~2, 3~^~03/01/2011~ -~21082~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21082~^~665~^0.058^6^0.003^~1~^~A~^^^1^0.051^0.072^5^0.051^0.066^~2, 3~^~03/01/2011~ -~21082~^~670~^0.053^6^0.004^~1~^~A~^^^1^0.043^0.072^5^0.042^0.064^~2, 3~^~03/01/2011~ -~21082~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~21082~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~03/01/2011~ -~21082~^~673~^0.204^6^0.012^~1~^~A~^^^1^0.171^0.244^5^0.174^0.235^~2, 3~^~03/01/2011~ -~21082~^~674~^3.634^6^0.131^~1~^~A~^^^1^3.308^4.158^5^3.297^3.972^~2, 3~^~03/01/2011~ -~21082~^~675~^2.708^6^0.055^~1~^~A~^^^1^2.464^2.835^5^2.568^2.849^~2, 3~^~03/01/2011~ -~21082~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21082~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~21082~^~687~^0.055^6^0.002^~1~^~A~^^^1^0.046^0.060^5^0.050^0.061^~2, 3~^~03/01/2011~ -~21082~^~689~^0.011^6^0.001^~1~^~AS~^^^1^0.009^0.014^5^0.010^0.013^~2, 3~^~03/01/2011~ -~21082~^~693~^0.409^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~695~^0.058^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21082~^~697~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21082~^~851~^0.166^6^0.015^~1~^~A~^^^1^0.123^0.203^5^0.127^0.206^~2, 3~^~03/01/2011~ -~21082~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~21082~^~853~^0.011^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.010^0.012^~2, 3~^~03/01/2011~ -~21082~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~03/01/2011~ -~21089~^~312~^0.111^6^0.003^~1~^~A~^^^1^0.094^0.117^5^0.102^0.120^~2, 3~^~04/01/2013~ -~21089~^~315~^0.316^6^0.010^~1~^~A~^^^1^0.293^0.357^5^0.289^0.342^~2, 3~^~04/01/2013~ -~21089~^~404~^0.293^3^0.019^~1~^~A~^^^1^0.270^0.330^2^0.213^0.373^~2, 3~^~04/01/2013~ -~21089~^~405~^0.363^3^0.013^~1~^~A~^^^1^0.350^0.390^2^0.306^0.421^~2, 3~^~04/01/2013~ -~21089~^~406~^5.217^3^0.113^~1~^~A~^^^1^5.080^5.440^2^4.732^5.701^~2, 3~^~04/01/2013~ -~21089~^~410~^0.545^2^^~1~^~A~^^^1^0.540^0.550^1^^^^~04/01/2013~ -~21089~^~415~^0.228^3^0.012^~1~^~A~^^^1^0.212^0.252^2^0.174^0.281^~2, 3~^~04/01/2013~ -~21089~^~501~^0.155^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~502~^0.571^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~503~^0.755^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~504~^1.316^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~505~^0.784^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~506~^0.377^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~508~^0.755^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~509~^0.464^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~510~^0.881^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~511~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~512~^0.445^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~513~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~514~^1.229^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~515~^3.987^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~516~^0.909^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~517~^1.945^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~518~^0.716^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~521~^0.290^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21089~^~605~^0.570^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~606~^6.473^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~607~^0.076^3^0.003^~1~^~A~^^^1^0.071^0.082^2^0.063^0.090^~2, 3~^~04/01/2013~ -~21089~^~608~^0.059^3^0.002^~1~^~A~^^^1^0.056^0.063^2^0.050^0.068^~2, 3~^~04/01/2013~ -~21089~^~609~^0.042^3^0.001^~1~^~A~^^^1^0.039^0.043^2^0.036^0.047^~2, 3~^~04/01/2013~ -~21089~^~610~^0.108^3^0.004^~1~^~A~^^^1^0.101^0.114^2^0.092^0.125^~2, 3~^~04/01/2013~ -~21089~^~611~^0.126^3^0.006^~1~^~A~^^^1^0.114^0.135^2^0.099^0.153^~2, 3~^~04/01/2013~ -~21089~^~612~^0.648^3^0.031^~1~^~A~^^^1^0.585^0.683^2^0.512^0.783^~2, 3~^~04/01/2013~ -~21089~^~613~^3.331^3^0.141^~1~^~A~^^^1^3.052^3.502^2^2.726^3.936^~2, 3~^~04/01/2013~ -~21089~^~614~^1.825^3^0.107^~1~^~A~^^^1^1.671^2.031^2^1.364^2.286^~2, 3~^~04/01/2013~ -~21089~^~615~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.024^^^^~2, 3~^~04/01/2013~ -~21089~^~617~^4.826^3^0.188^~1~^~AS~^^^1^4.455^5.062^2^4.018^5.633^~2, 3~^~04/01/2013~ -~21089~^~618~^1.462^3^0.031^~1~^~AS~^^^1^1.406^1.515^2^1.326^1.597^~2, 3~^~04/01/2013~ -~21089~^~619~^0.131^3^0.004^~1~^~AS~^^^1^0.124^0.137^2^0.115^0.147^~2, 3~^~04/01/2013~ -~21089~^~620~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.023^0.027^~2, 3~^~04/01/2013~ -~21089~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21089~^~624~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.007^0.016^~2, 3~^~04/01/2013~ -~21089~^~625~^0.111^3^0.008^~1~^~A~^^^1^0.095^0.121^2^0.076^0.147^~2, 3~^~04/01/2013~ -~21089~^~626~^0.360^3^0.024^~1~^~AS~^^^1^0.313^0.388^2^0.258^0.461^~2, 3~^~04/01/2013~ -~21089~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~628~^0.041^3^0.003^~1~^~A~^^^1^0.035^0.047^2^0.026^0.056^~2, 3~^~04/01/2013~ -~21089~^~629~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~21089~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~21089~^~631~^0.010^3^0.002^~1~^~A~^^^1^0.007^0.012^2^0.003^0.016^~2, 3~^~04/01/2013~ -~21089~^~645~^5.413^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~646~^1.658^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~652~^0.086^3^0.005^~1~^~A~^^^1^0.079^0.095^2^0.066^0.106^~2, 3~^~04/01/2013~ -~21089~^~653~^0.129^3^0.011^~1~^~A~^^^1^0.116^0.151^2^0.082^0.176^~2, 3~^~04/01/2013~ -~21089~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21089~^~662~^0.043^3^0.002^~1~^~A~^^^1^0.040^0.047^2^0.035^0.052^~2, 3~^~04/01/2013~ -~21089~^~663~^0.450^3^0.020^~1~^~A~^^^1^0.410^0.477^2^0.362^0.538^~2, 3~^~04/01/2013~ -~21089~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~665~^0.076^3^0.006^~1~^~A~^^^1^0.065^0.083^2^0.052^0.100^~2, 3~^~04/01/2013~ -~21089~^~670~^0.064^3^0.007^~1~^~A~^^^1^0.051^0.074^2^0.034^0.093^~2, 3~^~04/01/2013~ -~21089~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~21089~^~673~^0.316^3^0.022^~1~^~A~^^^1^0.273^0.345^2^0.222^0.411^~2, 3~^~04/01/2013~ -~21089~^~674~^4.376^3^0.192^~1~^~A~^^^1^3.992^4.585^2^3.549^5.202^~2, 3~^~04/01/2013~ -~21089~^~675~^1.322^3^0.043^~1~^~A~^^^1^1.252^1.399^2^1.139^1.505^~2, 3~^~04/01/2013~ -~21089~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21089~^~685~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~21089~^~687~^0.075^3^0.007^~1~^~A~^^^1^0.066^0.088^2^0.047^0.103^~2, 3~^~04/01/2013~ -~21089~^~689~^0.015^3^0.001^~1~^~AS~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~04/01/2013~ -~21089~^~693~^0.493^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~695~^0.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21089~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21089~^~851~^0.125^3^0.004^~1~^~A~^^^1^0.119^0.133^2^0.107^0.143^~2, 3~^~04/01/2013~ -~21089~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21089~^~853~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~04/01/2013~ -~21089~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~21089~^~858~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~21090~^~312~^0.098^3^^~1~^~A~^^^3^0.075^0.110^^^^~1, 2, 3~^~11/01/2005~ -~21090~^~315~^0.254^3^^~1~^~A~^^^3^0.231^0.290^^^^~2, 3~^~11/01/2005~ -~21090~^~404~^0.320^3^^~1~^~A~^^^3^0.295^0.361^^^^~2, 3~^~11/01/2005~ -~21090~^~405~^0.190^3^^~1~^~A~^^^3^0.158^0.240^^^^~2, 3~^~11/01/2005~ -~21090~^~406~^3.510^3^^~1~^~A~^^^3^3.080^4.050^^^^~2, 3~^~11/01/2005~ -~21090~^~410~^0.417^3^^~1~^~A~^^^3^0.230^0.720^^^^~2, 3~^~11/01/2005~ -~21090~^~415~^0.374^3^^~1~^~A~^^^3^0.075^0.956^^^^~2, 3~^~11/01/2005~ -~21090~^~606~^5.797^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~607~^0.092^2^^~1~^~A~^^^2^0.079^0.104^^^^^~03/01/2009~ -~21090~^~608~^0.057^2^^~1~^~A~^^^2^0.049^0.065^^^^^~03/01/2009~ -~21090~^~609~^0.043^3^^~1~^~A~^^^3^0.040^0.045^^^^~2, 3~^~03/01/2009~ -~21090~^~610~^0.083^3^^~1~^~A~^^^3^0.075^0.090^^^^~2, 3~^~03/01/2009~ -~21090~^~611~^0.104^3^^~1~^~A~^^^3^0.096^0.110^^^^~2, 3~^~03/01/2009~ -~21090~^~612~^0.577^3^^~1~^~A~^^^3^0.477^0.684^^^^~2, 3~^~03/01/2009~ -~21090~^~613~^2.997^3^^~1~^~A~^^^3^2.658^3.583^^^^~2, 3~^~03/01/2009~ -~21090~^~614~^1.616^3^^~1~^~A~^^^3^1.443^1.955^^^^~2, 3~^~03/01/2009~ -~21090~^~615~^0.023^3^^~1~^~A~^^^3^0.020^0.028^^^^~2, 3~^~03/01/2009~ -~21090~^~617~^4.456^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~618~^1.186^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~619~^0.123^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~620~^0.020^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~621~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~624~^0.008^3^^~1~^~A~^^^3^0.004^0.010^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~625~^0.083^3^^~1~^~A~^^^3^0.080^0.088^^^^~2, 3~^~03/01/2009~ -~21090~^~626~^0.418^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~627~^0.033^3^^~1~^~A~^^^3^0.000^0.070^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~628~^0.032^3^^~1~^~A~^^^3^0.024^0.040^^^^~2, 3~^~03/01/2009~ -~21090~^~629~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~630~^0.007^3^^~1~^~A~^^^3^0.000^0.010^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~631~^0.000^3^^~1~^~A~^^^3^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~645~^5.035^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~646~^1.363^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21090~^~652~^0.071^3^^~1~^~A~^^^3^0.062^0.081^^^^~2, 3~^~03/01/2009~ -~21090~^~653~^0.121^3^^~1~^~A~^^^3^0.110^0.139^^^^~2, 3~^~03/01/2009~ -~21090~^~654~^0.006^3^^~1~^~A~^^^3^0.000^0.010^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~662~^0.041^2^^~1~^~A~^^^2^0.035^0.046^^^^^~03/01/2009~ -~21090~^~663~^0.506^2^^~1~^~A~^^^2^0.386^0.626^^^^^~03/01/2009~ -~21090~^~666~^0.075^2^^~1~^~A~^^^2^0.046^0.104^^^^^~03/01/2009~ -~21090~^~672~^0.002^3^^~1~^~A~^^^3^0.000^0.005^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~673~^0.377^2^^~1~^~A~^^^2^0.342^0.413^^^^^~03/01/2009~ -~21090~^~674~^3.950^2^^~1~^~A~^^^2^3.476^4.423^^^^^~03/01/2009~ -~21090~^~675~^1.111^2^^~1~^~A~^^^2^0.963^1.258^^^^^~03/01/2009~ -~21090~^~687~^0.040^3^^~1~^~A~^^^3^0.000^0.083^^^^~1, 2, 3~^~03/01/2009~ -~21090~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21090~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~03/01/2009~ -~21090~^~851~^0.123^2^^~1~^~A~^^^2^0.122^0.123^^^^^~03/01/2009~ -~21090~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21090~^~855~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21091~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~315~^0.242^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~404~^0.361^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~405~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~406~^3.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~410~^0.302^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~415~^0.956^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~605~^0.466^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~606~^5.181^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~607~^0.104^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~608~^0.065^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~609~^0.045^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~610~^0.083^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~611~^0.096^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~612~^0.477^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~613~^2.658^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~614~^1.443^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~617~^3.862^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~618~^1.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~619~^0.122^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~620~^0.020^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~624~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~625~^0.082^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~626~^0.377^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~627~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~630~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~645~^4.398^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~646~^1.181^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~652~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~653~^0.113^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~654~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~662~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~663~^0.386^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~666~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~673~^0.342^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~674~^3.476^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~675~^0.963^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~687~^0.036^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~ -~21091~^~693~^0.420^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21091~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~851~^0.122^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21091~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~ -~21091~^~855~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21094~^~312~^0.081^18^0.006^~1~^~A~^^^1^0.077^0.093^2^0.056^0.106^~4~^~01/01/2013~ -~21094~^~315~^0.198^18^0.014^~1~^~A~^^^1^0.173^0.210^2^0.140^0.256^~4~^~01/01/2013~ -~21094~^~404~^0.231^0^^~1~^~RKA~^^^^^^^^^^~01/01/2013~ -~21094~^~405~^0.204^0^^~1~^~RKA~^^^^^^^^^^~01/01/2013~ -~21094~^~406~^3.462^0^^~1~^~RKA~^^^^^^^^^^~01/01/2013~ -~21094~^~415~^0.214^0^^~1~^~RKA~^^^^^^^^^^~01/01/2013~ -~21094~^~605~^0.721^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~606~^6.960^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~607~^0.082^9^0.016^~1~^~A~^^^1^0.047^0.093^2^0.011^0.153^~4~^~01/01/2013~ -~21094~^~608~^0.070^9^0.016^~1~^~A~^^^1^0.035^0.080^2^0.000^0.139^~4~^~01/01/2013~ -~21094~^~609~^0.049^9^0.011^~1~^~A~^^^1^0.025^0.057^2^0.000^0.098^~4~^~01/01/2013~ -~21094~^~610~^0.121^9^0.025^~1~^~A~^^^1^0.067^0.138^2^0.013^0.229^~4~^~01/01/2013~ -~21094~^~611~^0.138^9^0.029^~1~^~A~^^^1^0.075^0.158^2^0.012^0.265^~4~^~01/01/2013~ -~21094~^~612~^0.714^9^0.056^~1~^~A~^^^1^0.594^0.752^2^0.474^0.954^~4~^~01/01/2013~ -~21094~^~613~^3.556^9^0.048^~1~^~A~^^^1^3.512^3.642^2^3.351^3.760^~4~^~01/01/2013~ -~21094~^~614~^1.940^9^0.060^~1~^~A~^^^1^1.893^2.060^2^1.682^2.198^~4~^~01/01/2013~ -~21094~^~615~^0.023^9^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.031^~4~^~01/01/2013~ -~21094~^~617~^5.304^9^0.517^~1~^~AS~^^^1^4.999^6.420^2^3.079^7.530^~4~^~01/01/2013~ -~21094~^~618~^1.115^9^0.042^~1~^~AS~^^^1^1.028^1.147^2^0.935^1.295^~4~^~01/01/2013~ -~21094~^~619~^0.116^9^0.009^~1~^~AS~^^^1^0.098^0.123^2^0.077^0.155^~4~^~01/01/2013~ -~21094~^~620~^0.031^9^0.003^~1~^~A~^^^1^0.029^0.037^2^0.018^0.045^~4~^~01/01/2013~ -~21094~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 4~^~01/01/2013~ -~21094~^~624~^0.010^9^0.001^~1~^~A~^^^1^0.009^0.011^2^0.008^0.013^~4~^~01/01/2013~ -~21094~^~625~^0.129^9^0.004^~1~^~A~^^^1^0.127^0.138^2^0.111^0.147^~4~^~01/01/2013~ -~21094~^~626~^0.410^9^0.039^~1~^~AS~^^^1^0.391^0.492^2^0.245^0.576^~4~^~01/01/2013~ -~21094~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 4~^~01/01/2013~ -~21094~^~628~^0.050^9^0.006^~1~^~A~^^^1^0.046^0.063^2^0.024^0.075^~4~^~01/01/2013~ -~21094~^~629~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.006^3^0.001^0.008^~1, 4~^~01/01/2013~ -~21094~^~630~^0.009^9^0.006^~1~^~AS~^^^1^0.005^0.021^2^-0.016^0.035^~4~^~01/01/2013~ -~21094~^~631~^0.011^9^0.001^~1~^~A~^^^1^0.010^0.014^2^0.005^0.018^~4~^~01/01/2013~ -~21094~^~645~^6.001^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~646~^1.314^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~652~^0.095^9^0.003^~1~^~A~^^^1^0.089^0.096^2^0.082^0.107^~4~^~01/01/2013~ -~21094~^~653~^0.153^9^0.014^~1~^~A~^^^1^0.144^0.183^2^0.094^0.212^~4~^~01/01/2013~ -~21094~^~654~^0.006^9^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.007^~4~^~01/01/2013~ -~21094~^~662~^0.051^9^0.001^~1~^~A~^^^1^0.050^0.052^2^0.047^0.054^~4~^~01/01/2013~ -~21094~^~663~^0.569^9^0.093^~1~^~A~^^^1^0.524^0.765^2^0.168^0.970^~4~^~01/01/2013~ -~21094~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~01/01/2013~ -~21094~^~665~^0.101^9^0.001^~1~^~A~^^^1^0.101^0.104^2^0.097^0.106^~4~^~01/01/2013~ -~21094~^~670~^0.083^9^0.004^~1~^~A~^^^1^0.080^0.092^2^0.064^0.102^~4~^~01/01/2013~ -~21094~^~671~^0.003^18^0.001^~1~^~A~^^^1^0.002^0.005^5^0.001^0.005^~1, 4~^~01/01/2013~ -~21094~^~672~^0.005^9^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.006^~4~^~01/01/2013~ -~21094~^~673~^0.360^9^0.038^~1~^~A~^^^1^0.341^0.441^2^0.195^0.524^~4~^~01/01/2013~ -~21094~^~674~^4.735^9^0.426^~1~^~A~^^^1^4.475^5.655^2^2.904^6.567^~4~^~01/01/2013~ -~21094~^~675~^0.931^9^0.045^~1~^~A~^^^1^0.840^0.966^2^0.737^1.125^~4~^~01/01/2013~ -~21094~^~676~^0.009^9^0.006^~1~^~A~^^^1^0.005^0.021^2^-0.016^0.035^~4~^~01/01/2013~ -~21094~^~685~^0.004^15^0.001^~1~^~A~^^^1^0.001^0.005^4^0.001^0.006^~1, 4~^~01/01/2013~ -~21094~^~687~^0.096^9^0.017^~1~^~A~^^^1^0.086^0.133^2^0.023^0.170^~4~^~01/01/2013~ -~21094~^~689~^0.021^9^0.001^~1~^~AS~^^^1^0.020^0.022^2^0.018^0.023^~4~^~01/01/2013~ -~21094~^~693~^0.620^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~21094~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~01/01/2013~ -~21094~^~851~^0.112^9^0.009^~1~^~A~^^^1^0.093^0.119^2^0.072^0.151^~4~^~01/01/2013~ -~21094~^~852~^0.002^15^0.000^~1~^~A~^^^1^0.002^0.003^4^0.001^0.003^~1, 4~^~01/01/2013~ -~21094~^~853~^0.018^9^0.001^~1~^~A~^^^1^0.017^0.020^2^0.013^0.023^~4~^~01/01/2013~ -~21094~^~858~^0.007^9^0.001^~1~^~A~^^^1^0.006^0.010^2^0.001^0.013^~4~^~01/01/2013~ -~21096~^~312~^0.097^6^0.004^~1~^~A~^^^1^0.088^0.112^5^0.088^0.106^~2, 3~^~04/01/2013~ -~21096~^~315~^0.259^6^0.004^~1~^~A~^^^1^0.248^0.274^5^0.249^0.269^~2, 3~^~04/01/2013~ -~21096~^~404~^0.260^3^0.040^~1~^~A~^^^1^0.190^0.330^2^0.086^0.434^~2, 3~^~04/01/2013~ -~21096~^~405~^0.353^3^0.020^~1~^~A~^^^1^0.320^0.390^2^0.266^0.440^~2, 3~^~04/01/2013~ -~21096~^~406~^4.597^3^0.231^~1~^~A~^^^1^4.150^4.920^2^3.604^5.589^~2, 3~^~04/01/2013~ -~21096~^~410~^0.575^2^^~1~^~A~^^^1^0.520^0.630^1^^^^~04/01/2013~ -~21096~^~415~^0.224^3^0.008^~1~^~A~^^^1^0.211^0.238^2^0.190^0.258^~2, 3~^~04/01/2013~ -~21096~^~501~^0.159^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~502~^0.585^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~503~^0.773^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~504~^1.348^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~505~^0.981^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~506~^0.386^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~508~^0.763^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~509~^0.486^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~510~^0.882^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~511~^0.922^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~512~^0.486^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~513~^0.892^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~514~^1.328^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~515~^3.796^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~516~^0.912^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~517~^1.824^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~518~^0.724^0^^~4~^~RA~^^^^^^^^^^~04/01/2013~ -~21096~^~521~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21096~^~605~^0.626^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~606~^6.873^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~607~^0.081^3^0.012^~1~^~A~^^^1^0.060^0.100^2^0.031^0.131^~2, 3~^~04/01/2013~ -~21096~^~608~^0.060^3^0.007^~1~^~A~^^^1^0.048^0.071^2^0.031^0.089^~2, 3~^~04/01/2013~ -~21096~^~609~^0.043^3^0.003^~1~^~A~^^^1^0.037^0.049^2^0.028^0.057^~2, 3~^~04/01/2013~ -~21096~^~610~^0.111^3^0.004^~1~^~A~^^^1^0.104^0.119^2^0.092^0.130^~2, 3~^~04/01/2013~ -~21096~^~611~^0.130^3^0.003^~1~^~A~^^^1^0.123^0.134^2^0.115^0.144^~2, 3~^~04/01/2013~ -~21096~^~612~^0.685^3^0.006^~1~^~A~^^^1^0.676^0.697^2^0.659^0.712^~2, 3~^~04/01/2013~ -~21096~^~613~^3.554^3^0.054^~1~^~A~^^^1^3.463^3.651^2^3.321^3.788^~2, 3~^~04/01/2013~ -~21096~^~614~^1.939^3^0.078^~1~^~A~^^^1^1.803^2.074^2^1.602^2.276^~2, 3~^~04/01/2013~ -~21096~^~615~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.022^0.026^~2, 3~^~04/01/2013~ -~21096~^~617~^5.119^3^0.099^~1~^~AS~^^^1^4.971^5.307^2^4.693^5.545^~2, 3~^~04/01/2013~ -~21096~^~618~^1.302^3^0.026^~1~^~AS~^^^1^1.251^1.335^2^1.190^1.413^~2, 3~^~04/01/2013~ -~21096~^~619~^0.124^3^0.003^~1~^~AS~^^^1^0.118^0.127^2^0.111^0.136^~2, 3~^~04/01/2013~ -~21096~^~620~^0.029^3^0.001^~1~^~A~^^^1^0.028^0.030^2^0.027^0.031^~2, 3~^~04/01/2013~ -~21096~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21096~^~624~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.008^0.016^~2, 3~^~04/01/2013~ -~21096~^~625~^0.123^3^0.004^~1~^~A~^^^1^0.117^0.131^2^0.104^0.141^~2, 3~^~04/01/2013~ -~21096~^~626~^0.400^3^0.009^~1~^~AS~^^^1^0.384^0.415^2^0.361^0.438^~2, 3~^~04/01/2013~ -~21096~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21096~^~628~^0.046^3^0.002^~1~^~A~^^^1^0.043^0.049^2^0.039^0.053^~2, 3~^~04/01/2013~ -~21096~^~629~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~04/01/2013~ -~21096~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~21096~^~631~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2013~ -~21096~^~645~^5.769^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~646~^1.502^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~652~^0.090^3^0.004^~1~^~A~^^^1^0.083^0.096^2^0.073^0.106^~2, 3~^~04/01/2013~ -~21096~^~653~^0.138^3^0.016^~1~^~A~^^^1^0.111^0.165^2^0.071^0.205^~2, 3~^~04/01/2013~ -~21096~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2013~ -~21096~^~662~^0.048^3^0.002^~1~^~A~^^^1^0.045^0.051^2^0.041^0.056^~2, 3~^~04/01/2013~ -~21096~^~663~^0.488^3^0.046^~1~^~A~^^^1^0.404^0.562^2^0.291^0.685^~2, 3~^~04/01/2013~ -~21096~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~665~^0.088^3^0.009^~1~^~A~^^^1^0.070^0.099^2^0.049^0.127^~2, 3~^~04/01/2013~ -~21096~^~670~^0.074^3^0.003^~1~^~A~^^^1^0.069^0.078^2^0.062^0.085^~2, 3~^~04/01/2013~ -~21096~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~21096~^~673~^0.351^3^0.010^~1~^~A~^^^1^0.335^0.370^2^0.308^0.395^~2, 3~^~04/01/2013~ -~21096~^~674~^4.631^3^0.090^~1~^~A~^^^1^4.518^4.809^2^4.244^5.018^~2, 3~^~04/01/2013~ -~21096~^~675~^1.140^3^0.029^~1~^~A~^^^1^1.083^1.175^2^1.016^1.264^~2, 3~^~04/01/2013~ -~21096~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21096~^~685~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~21096~^~687~^0.081^3^0.007^~1~^~A~^^^1^0.071^0.095^2^0.050^0.112^~2, 3~^~04/01/2013~ -~21096~^~689~^0.016^3^0.001^~1~^~AS~^^^1^0.014^0.018^2^0.011^0.022^~2, 3~^~04/01/2013~ -~21096~^~693~^0.536^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~695~^0.090^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21096~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~851~^0.117^3^0.003^~1~^~A~^^^1^0.111^0.120^2^0.104^0.129^~2, 3~^~04/01/2013~ -~21096~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21096~^~853~^0.016^3^0.001^~1~^~A~^^^1^0.014^0.017^2^0.012^0.019^~2, 3~^~04/01/2013~ -~21096~^~856~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~21096~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~21102~^~312~^0.067^3^0.002^~1~^~A~^^^1^0.064^0.070^2^0.060^0.073^~2, 3~^~06/01/2015~ -~21102~^~315~^0.219^3^0.005^~1~^~A~^^^1^0.208^0.226^2^0.195^0.242^~2, 3~^~06/01/2015~ -~21102~^~404~^0.230^3^0.021^~1~^~A~^^^1^0.190^0.260^2^0.140^0.319^~2, 3~^~06/01/2015~ -~21102~^~405~^0.300^3^0.025^~1~^~A~^^^1^0.270^0.350^2^0.192^0.408^~2, 3~^~06/01/2015~ -~21102~^~406~^7.720^3^0.471^~1~^~A~^^^1^6.910^8.540^2^5.695^9.745^~2, 3~^~06/01/2015~ -~21102~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21102~^~415~^0.383^2^^~1~^~A~^^^1^0.349^0.417^1^^^^~06/01/2015~ -~21102~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~606~^2.123^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~609~^0.011^3^0.002^~1~^~A~^^^1^0.007^0.015^2^0.001^0.021^~2, 3~^~06/01/2015~ -~21102~^~610~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~09/01/1988~ -~21102~^~611~^0.165^3^0.030^~1~^~A~^^^1^0.129^0.224^2^0.036^0.293^~2, 3~^~06/01/2015~ -~21102~^~612~^0.062^3^0.010^~1~^~A~^^^1^0.050^0.081^2^0.021^0.103^~2, 3~^~06/01/2015~ -~21102~^~613~^1.122^3^0.009^~1~^~A~^^^1^1.110^1.140^2^1.083^1.161^~2, 3~^~06/01/2015~ -~21102~^~614~^0.374^3^0.004^~1~^~A~^^^1^0.367^0.381^2^0.356^0.391^~2, 3~^~06/01/2015~ -~21102~^~615~^0.086^3^0.004^~1~^~A~^^^1^0.078^0.090^2^0.069^0.102^~2, 3~^~06/01/2015~ -~21102~^~617~^4.295^3^0.057^~1~^~AS~^^^1^4.193^4.391^2^4.049^4.541^~2, 3~^~06/01/2015~ -~21102~^~618~^2.909^3^0.032^~1~^~AS~^^^1^2.845^2.948^2^2.770^3.048^~2, 3~^~06/01/2015~ -~21102~^~619~^0.206^3^0.014^~1~^~AS~^^^1^0.192^0.234^2^0.147^0.266^~2, 3~^~06/01/2015~ -~21102~^~620~^0.030^3^0.002^~1~^~A~^^^1^0.026^0.033^2^0.021^0.038^~2, 3~^~06/01/2015~ -~21102~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21102~^~624~^0.190^3^0.007^~1~^~A~^^^1^0.176^0.198^2^0.160^0.220^~2, 3~^~06/01/2015~ -~21102~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21102~^~626~^0.057^3^0.004^~1~^~AS~^^^1^0.051^0.064^2^0.041^0.073^~2, 3~^~06/01/2015~ -~21102~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~628~^0.108^3^0.001^~1~^~A~^^^1^0.105^0.110^2^0.101^0.114^~2, 3~^~06/01/2015~ -~21102~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2015~ -~21102~^~630~^0.013^3^0.001^~1~^~AS~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~06/01/2015~ -~21102~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21102~^~645~^4.481^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~646~^3.177^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~06/01/2015~ -~21102~^~653~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21102~^~654~^0.100^3^0.003^~1~^~A~^^^1^0.094^0.103^2^0.087^0.113^~2, 3~^~06/01/2015~ -~21102~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~663~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~06/01/2015~ -~21102~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~665~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~06/01/2015~ -~21102~^~670~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~06/01/2015~ -~21102~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~21102~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2015~ -~21102~^~673~^0.057^3^0.004^~1~^~A~^^^1^0.051^0.064^2^0.041^0.073^~2, 3~^~06/01/2015~ -~21102~^~674~^4.284^3^0.057^~1~^~A~^^^1^4.182^4.379^2^4.039^4.529^~2, 3~^~06/01/2015~ -~21102~^~675~^2.884^3^0.032^~1~^~A~^^^1^2.822^2.925^2^2.748^3.019^~2, 3~^~06/01/2015~ -~21102~^~676~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~06/01/2015~ -~21102~^~685~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~06/01/2015~ -~21102~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~06/01/2015~ -~21102~^~689~^0.008^3^0.000^~1~^~AS~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21102~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21102~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~851~^0.197^3^0.013^~1~^~A~^^^1^0.184^0.222^2^0.143^0.251^~2, 3~^~06/01/2015~ -~21102~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~853~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21102~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21102~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~06/01/2015~ -~21105~^~312~^0.075^6^0.002^~1~^~A~^^^1^0.067^0.081^5^0.070^0.080^~4~^~07/01/2012~ -~21105~^~315~^0.264^6^0.008^~1~^~A~^^^1^0.242^0.287^5^0.244^0.284^~4~^~07/01/2012~ -~21105~^~404~^0.210^12^0.021^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~405~^0.140^12^0.015^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~406~^2.150^12^0.175^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~410~^0.370^3^0.182^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~415~^0.070^7^0.008^~1~^^^^^^^^^^^~09/01/1988~ -~21105~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~606~^1.949^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21105~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21105~^~609~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 4~^~07/01/2012~ -~21105~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21105~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21105~^~612~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.024^2^0.018^0.026^~4~^~07/01/2012~ -~21105~^~613~^1.435^3^0.102^~1~^~A~^^^1^1.264^1.618^2^0.995^1.875^~4~^~07/01/2012~ -~21105~^~614~^0.389^3^0.045^~1~^~A~^^^1^0.302^0.451^2^0.196^0.582^~4~^~07/01/2012~ -~21105~^~615~^0.037^3^0.003^~1~^~A~^^^1^0.031^0.042^2^0.023^0.050^~4~^~07/01/2012~ -~21105~^~617~^2.498^3^0.232^~1~^~AS~^^^1^2.097^2.902^2^1.498^3.498^~4~^~07/01/2012~ -~21105~^~618~^5.627^3^0.490^~1~^~AS~^^^1^4.818^6.511^2^3.517^7.736^~4~^~07/01/2012~ -~21105~^~619~^0.512^3^0.094^~1~^~AS~^^^1^0.328^0.636^2^0.108^0.916^~4~^~07/01/2012~ -~21105~^~620~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~4~^~07/01/2012~ -~21105~^~621~^0.064^3^0.004^~1~^~A~^^^1^0.059^0.071^2^0.049^0.080^~4~^~07/01/2012~ -~21105~^~624~^0.029^3^0.005^~1~^~A~^^^1^0.020^0.036^2^0.009^0.049^~4~^~07/01/2012~ -~21105~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21105~^~626~^0.028^3^0.002^~1~^~AS~^^^1^0.025^0.032^2^0.019^0.037^~4~^~07/01/2012~ -~21105~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 4~^~07/01/2012~ -~21105~^~628~^0.055^3^0.008^~1~^~A~^^^1^0.046^0.070^2^0.022^0.088^~4~^~07/01/2012~ -~21105~^~629~^0.029^3^0.001^~1~^~A~^^^1^0.026^0.031^2^0.023^0.035^~4~^~07/01/2012~ -~21105~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~4~^~07/01/2012~ -~21105~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21105~^~645~^2.595^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~646~^6.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~07/01/2012~ -~21105~^~653~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.006^0.017^~4~^~07/01/2012~ -~21105~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~4~^~07/01/2012~ -~21105~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21105~^~663~^0.027^3^0.003^~1~^~A~^^^1^0.021^0.032^2^0.013^0.041^~4~^~07/01/2012~ -~21105~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21105~^~665~^0.053^3^0.012^~1~^~A~^^^1^0.028^0.068^2^-0.001^0.106^~4~^~07/01/2012~ -~21105~^~670~^0.013^3^0.004^~1~^~A~^^^1^0.006^0.017^2^-0.002^0.028^~4~^~07/01/2012~ -~21105~^~671~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.012^~1, 4~^~07/01/2012~ -~21105~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~4~^~07/01/2012~ -~21105~^~673~^0.028^3^0.002^~1~^~A~^^^1^0.025^0.032^2^0.018^0.037^~4~^~07/01/2012~ -~21105~^~674~^2.471^3^0.229^~1~^~A~^^^1^2.076^2.870^2^1.485^3.457^~4~^~07/01/2012~ -~21105~^~675~^5.561^3^0.476^~1~^~A~^^^1^4.784^6.426^2^3.513^7.609^~4~^~07/01/2012~ -~21105~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~4~^~07/01/2012~ -~21105~^~685~^0.023^3^0.011^~1~^~A~^^^1^0.000^0.034^2^-0.026^0.071^~1, 4~^~07/01/2012~ -~21105~^~687~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.001^0.011^~4~^~07/01/2012~ -~21105~^~689~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.005^2^0.000^0.007^~4~^~07/01/2012~ -~21105~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21105~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21105~^~851~^0.489^3^0.083^~1~^~A~^^^1^0.328^0.602^2^0.133^0.845^~4~^~07/01/2012~ -~21105~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 4~^~07/01/2012~ -~21105~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21105~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21106~^~312~^0.066^6^0.001^~1~^~A~^^^1^0.062^0.072^5^0.062^0.070^~2, 3~^~07/01/2012~ -~21106~^~315~^0.262^6^0.007^~1~^~A~^^^1^0.245^0.295^5^0.243^0.281^~2, 3~^~07/01/2012~ -~21106~^~404~^0.250^12^0.044^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~405~^0.230^13^0.048^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~406~^2.310^12^0.236^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~410~^0.240^5^0.047^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~415~^0.060^5^0.010^~1~^^^^^^^^^^^~09/01/1988~ -~21106~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~606~^2.833^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~607~^0.025^3^0.005^~1~^~A~^^^1^0.018^0.034^2^0.005^0.045^~2, 3~^~07/01/2012~ -~21106~^~608~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.022^0.026^~2, 3~^~07/01/2012~ -~21106~^~609~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~07/01/2012~ -~21106~^~610~^0.045^3^0.003^~1~^~A~^^^1^0.040^0.049^2^0.033^0.056^~2, 3~^~09/01/1988~ -~21106~^~611~^0.048^3^0.002^~1~^~A~^^^1^0.044^0.052^2^0.038^0.058^~2, 3~^~07/01/2012~ -~21106~^~612~^0.164^3^0.006^~1~^~A~^^^1^0.154^0.176^2^0.136^0.192^~2, 3~^~07/01/2012~ -~21106~^~613~^1.613^3^0.005^~1~^~A~^^^1^1.606^1.623^2^1.591^1.635^~2, 3~^~07/01/2012~ -~21106~^~614~^0.750^3^0.010^~1~^~A~^^^1^0.738^0.770^2^0.707^0.793^~2, 3~^~07/01/2012~ -~21106~^~615~^0.048^3^0.001^~1~^~A~^^^1^0.047^0.049^2^0.045^0.050^~2, 3~^~07/01/2012~ -~21106~^~617~^3.849^3^0.033^~1~^~AS~^^^1^3.785^3.890^2^3.709^3.989^~2, 3~^~07/01/2012~ -~21106~^~618~^5.187^3^0.121^~1~^~AS~^^^1^4.947^5.326^2^4.668^5.706^~2, 3~^~07/01/2012~ -~21106~^~619~^0.639^3^0.017^~1~^~AS~^^^1^0.604^0.659^2^0.564^0.714^~2, 3~^~07/01/2012~ -~21106~^~620~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~07/01/2012~ -~21106~^~621~^0.061^3^0.002^~1~^~A~^^^1^0.059^0.064^2^0.053^0.068^~2, 3~^~07/01/2012~ -~21106~^~624~^0.038^3^0.000^~1~^~A~^^^1^0.037^0.038^2^0.036^0.039^~2, 3~^~07/01/2012~ -~21106~^~625~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.009^0.020^~2, 3~^~07/01/2012~ -~21106~^~626~^0.049^3^0.001^~1~^~AS~^^^1^0.048^0.050^2^0.046^0.052^~2, 3~^~07/01/2012~ -~21106~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~07/01/2012~ -~21106~^~628~^0.070^3^0.001^~1~^~A~^^^1^0.069^0.072^2^0.066^0.074^~2, 3~^~07/01/2012~ -~21106~^~629~^0.030^3^0.000^~1~^~A~^^^1^0.029^0.030^2^0.028^0.031^~2, 3~^~07/01/2012~ -~21106~^~630~^0.007^3^0.000^~1~^~AS~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~07/01/2012~ -~21106~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~07/01/2012~ -~21106~^~645~^4.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~646~^5.952^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~652~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~07/01/2012~ -~21106~^~653~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~07/01/2012~ -~21106~^~654~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^^^^~2, 3~^~07/01/2012~ -~21106~^~662~^0.006^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.011^~2, 3~^~07/01/2012~ -~21106~^~663~^0.061^3^0.005^~1~^~A~^^^1^0.055^0.070^2^0.041^0.081^~2, 3~^~07/01/2012~ -~21106~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21106~^~665~^0.061^3^0.005^~1~^~A~^^^1^0.056^0.070^2^0.042^0.080^~2, 3~^~07/01/2012~ -~21106~^~670~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.013^0.027^~2, 3~^~07/01/2012~ -~21106~^~671~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 2, 3~^~07/01/2012~ -~21106~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~07/01/2012~ -~21106~^~673~^0.044^3^0.001^~1~^~A~^^^1^0.043^0.045^2^0.041^0.047^~2, 3~^~07/01/2012~ -~21106~^~674~^3.788^3^0.031^~1~^~A~^^^1^3.727^3.820^2^3.656^3.920^~2, 3~^~07/01/2012~ -~21106~^~675~^5.106^3^0.127^~1~^~A~^^^1^4.854^5.252^2^4.561^5.651^~2, 3~^~07/01/2012~ -~21106~^~676~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~07/01/2012~ -~21106~^~685~^0.024^3^0.012^~1~^~A~^^^1^0.000^0.037^2^-0.028^0.077^~1, 2, 3~^~07/01/2012~ -~21106~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~07/01/2012~ -~21106~^~689~^0.006^3^0.001^~1~^~AS~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~07/01/2012~ -~21106~^~693~^0.067^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21106~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21106~^~851~^0.614^3^0.025^~1~^~A~^^^1^0.568^0.653^2^0.508^0.721^~2, 3~^~07/01/2012~ -~21106~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~21106~^~853~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~07/01/2012~ -~21106~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~07/01/2012~ -~21107~^~312~^0.121^6^0.005^~1~^~A~^^^1^0.102^0.135^5^0.107^0.135^~2, 3~^~04/01/2013~ -~21107~^~315~^0.357^6^0.006^~1~^~A~^^^1^0.342^0.384^5^0.342^0.373^~2, 3~^~04/01/2013~ -~21107~^~404~^0.317^3^0.020^~1~^~A~^^^1^0.280^0.350^2^0.229^0.404^~2, 3~^~04/01/2013~ -~21107~^~405~^0.363^3^0.003^~1~^~A~^^^1^0.360^0.370^2^0.349^0.378^~2, 3~^~04/01/2013~ -~21107~^~406~^5.617^3^0.242^~1~^~A~^^^1^5.370^6.100^2^4.577^6.656^~2, 3~^~04/01/2013~ -~21107~^~410~^0.530^2^^~1~^~A~^^^1^0.520^0.540^1^^^^~04/01/2013~ -~21107~^~415~^0.212^3^0.009^~1~^~A~^^^1^0.199^0.229^2^0.173^0.250^~2, 3~^~04/01/2013~ -~21107~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~502~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~503~^0.642^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~504~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~505~^0.785^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~506~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~508~^0.670^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~509~^0.373^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~510~^0.728^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~511~^0.852^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~512~^0.402^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~513~^0.785^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~514~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~515~^3.639^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~516~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~517~^1.666^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~518~^0.632^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~521~^0.240^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21107~^~605~^0.514^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~606~^4.493^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~610~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~04/01/2013~ -~21107~^~611~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~04/01/2013~ -~21107~^~612~^0.279^3^0.019^~1~^~A~^^^1^0.256^0.316^2^0.198^0.360^~2, 3~^~04/01/2013~ -~21107~^~613~^2.432^3^0.101^~1~^~A~^^^1^2.316^2.632^2^1.999^2.864^~2, 3~^~04/01/2013~ -~21107~^~614~^1.564^3^0.107^~1~^~A~^^^1^1.455^1.778^2^1.103^2.025^~2, 3~^~04/01/2013~ -~21107~^~615~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~04/01/2013~ -~21107~^~617~^4.325^3^0.146^~1~^~AS~^^^1^4.085^4.589^2^3.697^4.953^~2, 3~^~04/01/2013~ -~21107~^~618~^1.502^3^0.056^~1~^~AS~^^^1^1.431^1.613^2^1.261^1.744^~2, 3~^~04/01/2013~ -~21107~^~619~^0.126^3^0.004^~1~^~AS~^^^1^0.120^0.134^2^0.107^0.144^~2, 3~^~04/01/2013~ -~21107~^~620~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.015^0.026^~2, 3~^~04/01/2013~ -~21107~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~21107~^~624~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2013~ -~21107~^~625~^0.080^3^0.003^~1~^~A~^^^1^0.075^0.087^2^0.065^0.095^~2, 3~^~04/01/2013~ -~21107~^~626~^0.318^3^0.016^~1~^~AS~^^^1^0.298^0.349^2^0.249^0.386^~2, 3~^~04/01/2013~ -~21107~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~628~^0.035^3^0.003^~1~^~A~^^^1^0.030^0.041^2^0.021^0.049^~2, 3~^~04/01/2013~ -~21107~^~629~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~21107~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~21107~^~631~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~21107~^~645~^4.835^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~646~^1.680^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~652~^0.048^3^0.004^~1~^~A~^^^1^0.043^0.057^2^0.030^0.067^~2, 3~^~04/01/2013~ -~21107~^~653~^0.119^3^0.011^~1~^~A~^^^1^0.106^0.140^2^0.072^0.165^~2, 3~^~04/01/2013~ -~21107~^~654~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21107~^~662~^0.034^3^0.002^~1~^~A~^^^1^0.030^0.038^2^0.024^0.044^~2, 3~^~04/01/2013~ -~21107~^~663~^0.420^3^0.019^~1~^~A~^^^1^0.383^0.445^2^0.339^0.500^~2, 3~^~04/01/2013~ -~21107~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~665~^0.060^3^0.003^~1~^~A~^^^1^0.057^0.066^2^0.047^0.073^~2, 3~^~04/01/2013~ -~21107~^~670~^0.051^3^0.003^~1~^~A~^^^1^0.047^0.058^2^0.037^0.066^~2, 3~^~04/01/2013~ -~21107~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~21107~^~673~^0.284^3^0.014^~1~^~A~^^^1^0.264^0.311^2^0.223^0.344^~2, 3~^~04/01/2013~ -~21107~^~674~^3.905^3^0.150^~1~^~A~^^^1^3.640^4.158^2^3.261^4.549^~2, 3~^~04/01/2013~ -~21107~^~675~^1.391^3^0.060^~1~^~A~^^^1^1.307^1.507^2^1.133^1.649^~2, 3~^~04/01/2013~ -~21107~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21107~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.000^0.008^~2, 3~^~04/01/2013~ -~21107~^~687~^0.077^3^0.007^~1~^~A~^^^1^0.070^0.091^2^0.047^0.107^~2, 3~^~04/01/2013~ -~21107~^~689~^0.010^3^0.001^~1~^~AS~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~21107~^~693~^0.454^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21107~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21107~^~851~^0.121^3^0.005^~1~^~A~^^^1^0.116^0.131^2^0.099^0.142^~2, 3~^~04/01/2013~ -~21107~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21107~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~21107~^~856~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~21107~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21108~^~312~^0.101^12^0.002^~1~^~A~^^^1^0.089^0.129^6^0.096^0.105^~2, 3~^~07/01/2012~ -~21108~^~315~^0.323^12^0.010^~1~^~A~^^^1^0.295^0.374^5^0.298^0.348^~2, 3~^~07/01/2012~ -~21108~^~404~^0.349^12^0.018^~1~^~A~^^^3^0.292^0.422^9^0.309^0.390^~2, 3~^~01/01/2006~ -~21108~^~405~^0.186^11^0.025^~1~^~A~^^^3^0.065^0.235^4^0.116^0.256^~2, 3~^~01/01/2006~ -~21108~^~406~^4.061^12^0.085^~1~^~A~^^^3^3.887^4.347^7^3.858^4.263^~2, 3~^~01/01/2006~ -~21108~^~410~^0.370^12^0.039^~1~^~A~^^^3^0.222^0.540^3^0.252^0.487^~2, 3~^~01/01/2006~ -~21108~^~415~^0.108^12^0.010^~1~^~A~^^^3^0.099^0.124^6^0.084^0.132^~2, 3~^~01/01/2006~ -~21108~^~605~^0.436^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~606~^3.567^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~21108~^~610~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^2^0.008^0.012^~2, 3~^~07/01/2012~ -~21108~^~611~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^2^0.007^0.009^~2, 3~^~07/01/2012~ -~21108~^~612~^0.222^6^0.006^~1~^~A~^^^1^0.206^0.252^2^0.198^0.247^~2, 3~^~07/01/2012~ -~21108~^~613~^1.952^6^0.031^~1~^~A~^^^1^1.865^2.218^3^1.860^2.044^~2, 3~^~07/01/2012~ -~21108~^~614~^1.210^6^0.026^~1~^~A~^^^1^1.128^1.461^3^1.131^1.289^~2, 3~^~07/01/2012~ -~21108~^~615~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.019^2^0.013^0.018^~2, 3~^~07/01/2012~ -~21108~^~617~^3.419^6^0.042^~1~^~AS~^^^1^3.284^3.967^3^3.294^3.544^~2, 3~^~07/01/2012~ -~21108~^~618~^1.203^6^0.013^~1~^~AS~^^^1^0.982^1.245^3^1.163^1.244^~2, 3~^~07/01/2012~ -~21108~^~619~^0.132^6^0.003^~1~^~AS~^^^1^0.095^0.145^3^0.121^0.143^~2, 3~^~07/01/2012~ -~21108~^~620~^0.017^6^0.000^~1~^~A~^^^1^0.016^0.018^2^0.015^0.019^~2, 3~^~07/01/2012~ -~21108~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.001^~1, 2, 3~^~02/01/2007~ -~21108~^~624~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~07/01/2012~ -~21108~^~625~^0.067^6^0.002^~1~^~A~^^^1^0.063^0.078^3^0.062^0.072^~2, 3~^~07/01/2012~ -~21108~^~626~^0.262^6^0.008^~1~^~AS~^^^1^0.240^0.301^2^0.233^0.292^~2, 3~^~07/01/2012~ -~21108~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~07/01/2012~ -~21108~^~628~^0.037^6^0.002^~1~^~A~^^^1^0.032^0.054^3^0.032^0.042^~2, 3~^~07/01/2012~ -~21108~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^2^0.001^0.003^~1, 2, 3~^~07/01/2012~ -~21108~^~630~^0.010^6^0.002^~1~^~AS~^^^1^0.003^0.035^3^0.002^0.019^~2, 3~^~07/01/2012~ -~21108~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.010^3^0.006^0.008^~2, 3~^~07/01/2012~ -~21108~^~645~^3.864^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~646~^1.385^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~652~^0.039^6^0.002^~1~^~A~^^^1^0.033^0.046^2^0.031^0.047^~2, 3~^~07/01/2012~ -~21108~^~653~^0.097^6^0.005^~1~^~A~^^^1^0.081^0.112^2^0.074^0.120^~2, 3~^~07/01/2012~ -~21108~^~654~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.006^~2, 3~^~07/01/2012~ -~21108~^~662~^0.028^6^0.001^~1~^~A~^^^1^0.026^0.036^4^0.026^0.030^~2, 3~^~07/01/2012~ -~21108~^~663~^0.351^6^0.028^~1~^~A~^^^1^0.276^0.406^2^0.233^0.470^~2, 3~^~07/01/2012~ -~21108~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21108~^~665~^0.057^6^0.003^~1~^~A~^^^1^0.050^0.069^2^0.046^0.068^~2, 3~^~07/01/2012~ -~21108~^~670~^0.046^6^0.002^~1~^~A~^^^1^0.040^0.056^2^0.036^0.055^~2, 3~^~07/01/2012~ -~21108~^~671~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.011^3^-0.005^0.012^~1, 2, 3~^~07/01/2012~ -~21108~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.005^~2, 3~^~07/01/2012~ -~21108~^~673~^0.235^6^0.008^~1~^~A~^^^1^0.214^0.265^2^0.205^0.264^~2, 3~^~07/01/2012~ -~21108~^~674~^3.067^6^0.042^~1~^~A~^^^1^2.904^3.606^4^2.946^3.189^~2, 3~^~07/01/2012~ -~21108~^~675~^1.101^6^0.014^~1~^~A~^^^1^0.874^1.149^4^1.062^1.141^~2, 3~^~07/01/2012~ -~21108~^~676~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.035^3^0.002^0.019^~2, 3~^~07/01/2012~ -~21108~^~685~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.004^0.010^~1, 2, 3~^~07/01/2012~ -~21108~^~687~^0.065^6^0.004^~1~^~A~^^^1^0.054^0.072^2^0.048^0.081^~2, 3~^~07/01/2012~ -~21108~^~689~^0.013^6^0.001^~1~^~AS~^^^1^0.010^0.015^2^0.008^0.018^~2, 3~^~07/01/2012~ -~21108~^~693~^0.379^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21108~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~21108~^~851~^0.128^6^0.002^~1~^~A~^^^1^0.092^0.138^4^0.122^0.135^~2, 3~^~07/01/2012~ -~21108~^~852~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.004^~1, 2, 3~^~07/01/2012~ -~21108~^~853~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.013^2^0.009^0.014^~2, 3~^~07/01/2012~ -~21108~^~858~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^2^0.005^0.009^~2, 3~^~07/01/2012~ -~21121~^~312~^0.109^3^0.002^~1~^~A~^^^1^0.106^0.112^2^0.102^0.117^~2, 3~^~06/01/2015~ -~21121~^~315~^0.234^3^0.012^~1~^~A~^^^1^0.212^0.255^2^0.180^0.287^~2, 3~^~06/01/2015~ -~21121~^~404~^0.217^3^0.029^~1~^~A~^^^1^0.170^0.270^2^0.092^0.342^~2, 3~^~06/01/2015~ -~21121~^~405~^0.287^3^0.029^~1~^~A~^^^1^0.240^0.340^2^0.161^0.412^~2, 3~^~06/01/2015~ -~21121~^~406~^4.343^3^0.259^~1~^~A~^^^1^4.050^4.860^2^3.228^5.458^~2, 3~^~06/01/2015~ -~21121~^~415~^0.215^2^^~1~^~A~^^^1^0.214^0.217^1^^^^~06/01/2015~ -~21121~^~605~^0.389^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~606~^3.399^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~612~^0.200^3^0.007^~1~^~A~^^^1^0.187^0.213^2^0.168^0.233^~2, 3~^~06/01/2015~ -~21121~^~613~^1.951^3^0.023^~1~^~A~^^^1^1.905^1.980^2^1.851^2.051^~2, 3~^~06/01/2015~ -~21121~^~614~^1.108^3^0.053^~1~^~A~^^^1^1.048^1.213^2^0.882^1.334^~2, 3~^~06/01/2015~ -~21121~^~615~^0.015^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~06/01/2015~ -~21121~^~617~^3.561^3^0.048^~1~^~AS~^^^1^3.473^3.640^2^3.352^3.769^~2, 3~^~06/01/2015~ -~21121~^~618~^1.552^3^0.083^~1~^~AS~^^^1^1.390^1.666^2^1.194^1.911^~2, 3~^~06/01/2015~ -~21121~^~619~^0.159^3^0.013^~1~^~AS~^^^1^0.134^0.176^2^0.104^0.215^~2, 3~^~06/01/2015~ -~21121~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~06/01/2015~ -~21121~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~06/01/2015~ -~21121~^~625~^0.062^3^0.001^~1~^~A~^^^1^0.060^0.065^2^0.056^0.068^~2, 3~^~06/01/2015~ -~21121~^~626~^0.279^3^0.007^~1~^~AS~^^^1^0.267^0.292^2^0.247^0.310^~2, 3~^~06/01/2015~ -~21121~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~628~^0.034^3^0.001^~1~^~A~^^^1^0.031^0.036^2^0.027^0.040^~2, 3~^~06/01/2015~ -~21121~^~629~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~21121~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~06/01/2015~ -~21121~^~631~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~06/01/2015~ -~21121~^~645~^3.987^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~646~^1.762^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~652~^0.032^3^0.001^~1~^~A~^^^1^0.030^0.035^2^0.026^0.039^~2, 3~^~06/01/2015~ -~21121~^~653~^0.079^3^0.003^~1~^~A~^^^1^0.075^0.084^2^0.068^0.090^~2, 3~^~06/01/2015~ -~21121~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~21121~^~662~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~06/01/2015~ -~21121~^~663~^0.326^3^0.013^~1~^~A~^^^1^0.299^0.340^2^0.268^0.383^~2, 3~^~06/01/2015~ -~21121~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~665~^0.043^3^0.000^~1~^~A~^^^1^0.043^0.043^^^^~2, 3~^~06/01/2015~ -~21121~^~670~^0.044^3^0.000^~1~^~A~^^^1^0.044^0.045^2^0.043^0.046^~2, 3~^~06/01/2015~ -~21121~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~06/01/2015~ -~21121~^~673~^0.258^3^0.008^~1~^~A~^^^1^0.246^0.272^2^0.226^0.291^~2, 3~^~06/01/2015~ -~21121~^~674~^3.235^3^0.037^~1~^~A~^^^1^3.174^3.302^2^3.075^3.395^~2, 3~^~06/01/2015~ -~21121~^~675~^1.465^3^0.083^~1~^~A~^^^1^1.303^1.579^2^1.107^1.823^~2, 3~^~06/01/2015~ -~21121~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21121~^~685~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~06/01/2015~ -~21121~^~687~^0.052^3^0.002^~1~^~A~^^^1^0.048^0.054^2^0.044^0.060^~2, 3~^~06/01/2015~ -~21121~^~689~^0.010^3^0.001^~1~^~AS~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~06/01/2015~ -~21121~^~693~^0.346^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21121~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~851~^0.152^3^0.012^~1~^~A~^^^1^0.129^0.168^2^0.101^0.203^~2, 3~^~06/01/2015~ -~21121~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21121~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~06/01/2015~ -~21121~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21121~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21124~^~312~^0.084^6^0.001^~1~^~A~^^^1^0.081^0.086^5^0.082^0.086^~2, 3~^~04/01/2013~ -~21124~^~315~^0.354^6^0.008^~1~^~A~^^^1^0.335^0.384^5^0.333^0.375^~2, 3~^~04/01/2013~ -~21124~^~404~^0.343^3^0.003^~1~^~A~^^^1^0.340^0.350^2^0.329^0.357^~2, 3~^~04/01/2013~ -~21124~^~405~^0.267^3^0.009^~1~^~A~^^^1^0.250^0.280^2^0.229^0.305^~2, 3~^~04/01/2013~ -~21124~^~406~^4.323^3^0.095^~1~^~A~^^^1^4.160^4.490^2^3.913^4.733^~2, 3~^~04/01/2013~ -~21124~^~410~^0.555^2^^~1~^~A~^^^1^0.520^0.590^1^^^^~04/01/2013~ -~21124~^~415~^0.203^3^0.005^~1~^~A~^^^1^0.195^0.212^2^0.182^0.224^~2, 3~^~04/01/2013~ -~21124~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~502~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~503~^0.431^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~504~^0.752^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~505~^0.491^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~506~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~508~^0.431^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~509~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~510~^0.501^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~511~^0.501^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~512~^0.301^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~513~^0.481^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~514~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~515~^2.455^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~516~^0.451^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~518~^0.411^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~521~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21124~^~605~^0.119^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~606~^3.554^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~607~^0.013^3^0.006^~1~^~A~^^^1^0.000^0.020^2^-0.015^0.041^~1, 2, 3~^~04/01/2013~ -~21124~^~608~^0.009^3^0.004^~1~^~A~^^^1^0.000^0.013^2^-0.010^0.027^~1, 2, 3~^~04/01/2013~ -~21124~^~609~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.007^0.019^~1, 2, 3~^~04/01/2013~ -~21124~^~610~^0.024^3^0.007^~1~^~A~^^^1^0.010^0.031^2^-0.006^0.053^~2, 3~^~04/01/2013~ -~21124~^~611~^0.023^3^0.008^~1~^~A~^^^1^0.007^0.032^2^-0.012^0.058^~2, 3~^~04/01/2013~ -~21124~^~612~^0.178^3^0.030^~1~^~A~^^^1^0.118^0.213^2^0.049^0.307^~2, 3~^~04/01/2013~ -~21124~^~613~^2.077^3^0.100^~1~^~A~^^^1^1.888^2.230^2^1.645^2.509^~2, 3~^~04/01/2013~ -~21124~^~614~^1.138^3^0.058^~1~^~A~^^^1^1.042^1.241^2^0.891^1.386^~2, 3~^~04/01/2013~ -~21124~^~615~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~04/01/2013~ -~21124~^~617~^3.408^3^0.097^~1~^~AS~^^^1^3.275^3.597^2^2.991^3.826^~2, 3~^~04/01/2013~ -~21124~^~618~^1.698^3^0.020^~1~^~AS~^^^1^1.659^1.722^2^1.613^1.782^~2, 3~^~04/01/2013~ -~21124~^~619~^0.107^3^0.002^~1~^~AS~^^^1^0.103^0.111^2^0.097^0.117^~2, 3~^~04/01/2013~ -~21124~^~620~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.040^2^0.026^0.045^~2, 3~^~04/01/2013~ -~21124~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~21124~^~624~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~04/01/2013~ -~21124~^~625~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.021^2^0.002^0.031^~2, 3~^~04/01/2013~ -~21124~^~626~^0.191^3^0.008^~1~^~AS~^^^1^0.178^0.206^2^0.156^0.226^~2, 3~^~04/01/2013~ -~21124~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~628~^0.066^3^0.002^~1~^~A~^^^1^0.064^0.069^2^0.059^0.072^~2, 3~^~04/01/2013~ -~21124~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~630~^0.008^3^0.000^~1~^~AS~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~21124~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~21124~^~645~^3.716^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~646~^1.927^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~652~^0.016^3^0.003^~1~^~A~^^^1^0.010^0.019^2^0.003^0.029^~2, 3~^~04/01/2013~ -~21124~^~653~^0.041^3^0.003^~1~^~A~^^^1^0.036^0.044^2^0.030^0.053^~2, 3~^~04/01/2013~ -~21124~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2013~ -~21124~^~662~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~21124~^~663~^0.093^3^0.010^~1~^~A~^^^1^0.073^0.105^2^0.050^0.135^~2, 3~^~04/01/2013~ -~21124~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~665~^0.018^3^0.002^~1~^~A~^^^1^0.014^0.021^2^0.009^0.028^~2, 3~^~04/01/2013~ -~21124~^~670~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.024^~2, 3~^~04/01/2013~ -~21124~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~672~^0.048^3^0.001^~1~^~A~^^^1^0.045^0.049^2^0.042^0.053^~2, 3~^~04/01/2013~ -~21124~^~673~^0.183^3^0.007^~1~^~A~^^^1^0.172^0.197^2^0.151^0.215^~2, 3~^~04/01/2013~ -~21124~^~674~^3.316^3^0.092^~1~^~A~^^^1^3.202^3.497^2^2.921^3.710^~2, 3~^~04/01/2013~ -~21124~^~675~^1.665^3^0.023^~1~^~A~^^^1^1.622^1.698^2^1.568^1.762^~2, 3~^~04/01/2013~ -~21124~^~676~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~21124~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21124~^~687~^0.026^3^0.001^~1~^~A~^^^1^0.025^0.027^2^0.024^0.028^~2, 3~^~04/01/2013~ -~21124~^~689~^0.017^3^0.002^~1~^~AS~^^^1^0.014^0.019^2^0.010^0.023^~2, 3~^~04/01/2013~ -~21124~^~693~^0.101^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21124~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~851~^0.104^3^0.002^~1~^~A~^^^1^0.100^0.108^2^0.094^0.114^~2, 3~^~04/01/2013~ -~21124~^~852~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.014^~1, 2, 3~^~04/01/2013~ -~21124~^~853~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~04/01/2013~ -~21124~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21124~^~858~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~04/01/2013~ -~21125~^~312~^0.081^6^0.003^~1~^~A~^^^1^0.074^0.092^5^0.074^0.088^~2, 3~^~04/01/2013~ -~21125~^~315~^0.267^6^0.007^~1~^~A~^^^1^0.246^0.286^5^0.250^0.285^~2, 3~^~04/01/2013~ -~21125~^~404~^0.230^3^0.006^~1~^~A~^^^1^0.220^0.240^2^0.205^0.255^~2, 3~^~04/01/2013~ -~21125~^~405~^0.257^3^0.009^~1~^~A~^^^1^0.240^0.270^2^0.219^0.295^~2, 3~^~04/01/2013~ -~21125~^~406~^4.183^3^0.144^~1~^~A~^^^1^3.900^4.370^2^3.564^4.803^~2, 3~^~04/01/2013~ -~21125~^~410~^0.415^2^^~1~^~A~^^^1^0.400^0.430^1^^^^~04/01/2013~ -~21125~^~415~^0.275^3^0.010^~1~^~A~^^^1^0.264^0.295^2^0.233^0.318^~2, 3~^~04/01/2013~ -~21125~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~502~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~503~^0.553^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~504~^0.953^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~505~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~506~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~508~^0.522^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~509~^0.328^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~510~^0.615^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~511~^0.645^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~512~^0.379^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~513~^0.604^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~514~^0.932^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~515~^2.828^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~516~^0.502^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~517~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~518~^0.492^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~521~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21125~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~606~^0.972^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~607~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.020^2^-0.022^0.035^~1, 2, 3~^~04/01/2013~ -~21125~^~608~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~04/01/2013~ -~21125~^~609~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~04/01/2013~ -~21125~^~610~^0.010^3^0.006^~1~^~A~^^^1^0.003^0.022^2^-0.016^0.036^~2, 3~^~04/01/2013~ -~21125~^~611~^0.010^3^0.007^~1~^~A~^^^1^0.002^0.024^2^-0.021^0.041^~1, 2, 3~^~04/01/2013~ -~21125~^~612~^0.055^3^0.025^~1~^~A~^^^1^0.018^0.103^2^-0.054^0.163^~2, 3~^~04/01/2013~ -~21125~^~613~^0.517^3^0.090^~1~^~A~^^^1^0.345^0.649^2^0.130^0.905^~2, 3~^~04/01/2013~ -~21125~^~614~^0.328^3^0.051^~1~^~A~^^^1^0.232^0.403^2^0.111^0.546^~2, 3~^~04/01/2013~ -~21125~^~615~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~21125~^~617~^0.708^3^0.100^~1~^~AS~^^^1^0.515^0.848^2^0.279^1.137^~2, 3~^~04/01/2013~ -~21125~^~618~^0.617^3^0.014^~1~^~AS~^^^1^0.590^0.635^2^0.558^0.676^~2, 3~^~04/01/2013~ -~21125~^~619~^0.065^3^0.003^~1~^~AS~^^^1^0.059^0.071^2^0.050^0.080^~2, 3~^~04/01/2013~ -~21125~^~620~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~04/01/2013~ -~21125~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~21125~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~21125~^~625~^0.010^3^0.003^~1~^~A~^^^1^0.005^0.013^2^-0.001^0.021^~2, 3~^~04/01/2013~ -~21125~^~626~^0.049^3^0.008^~1~^~AS~^^^1^0.033^0.061^2^0.013^0.086^~2, 3~^~04/01/2013~ -~21125~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~628~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.014^2^-0.001^0.020^~2, 3~^~04/01/2013~ -~21125~^~629~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~1, 2, 3~^~04/01/2013~ -~21125~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~21125~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~04/01/2013~ -~21125~^~645~^0.789^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~646~^0.718^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~652~^0.009^3^0.003^~1~^~A~^^^1^0.004^0.014^2^-0.004^0.021^~2, 3~^~04/01/2013~ -~21125~^~653~^0.015^3^0.003^~1~^~A~^^^1^0.010^0.021^2^0.002^0.029^~2, 3~^~04/01/2013~ -~21125~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21125~^~662~^0.005^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.001^0.010^~1, 2, 3~^~04/01/2013~ -~21125~^~663~^0.039^3^0.009^~1~^~A~^^^1^0.026^0.056^2^0.001^0.077^~2, 3~^~04/01/2013~ -~21125~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~665~^0.008^3^0.002^~1~^~A~^^^1^0.004^0.011^2^-0.001^0.016^~2, 3~^~04/01/2013~ -~21125~^~670~^0.006^3^0.002^~1~^~A~^^^1^0.002^0.009^2^-0.003^0.015^~1, 2, 3~^~04/01/2013~ -~21125~^~671~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2013~ -~21125~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~21125~^~673~^0.045^3^0.007^~1~^~A~^^^1^0.031^0.055^2^0.014^0.075^~2, 3~^~04/01/2013~ -~21125~^~674~^0.669^3^0.092^~1~^~A~^^^1^0.489^0.792^2^0.273^1.064^~2, 3~^~04/01/2013~ -~21125~^~675~^0.603^3^0.010^~1~^~A~^^^1^0.584^0.617^2^0.560^0.646^~2, 3~^~04/01/2013~ -~21125~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21125~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21125~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.004^0.016^~2, 3~^~04/01/2013~ -~21125~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21125~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21125~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~851~^0.063^3^0.004^~1~^~A~^^^1^0.057^0.071^2^0.046^0.081^~2, 3~^~04/01/2013~ -~21125~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~853~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21125~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21125~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21126~^~312~^0.075^6^0.001^~1~^~A~^^^1^0.074^0.077^5^0.073^0.077^~2, 3~^~04/01/2013~ -~21126~^~315~^0.214^6^0.009^~1~^~A~^^^1^0.188^0.245^5^0.190^0.237^~2, 3~^~04/01/2013~ -~21126~^~404~^0.190^3^0.006^~1~^~A~^^^1^0.180^0.200^2^0.165^0.215^~2, 3~^~04/01/2013~ -~21126~^~405~^0.217^3^0.009^~1~^~A~^^^1^0.200^0.230^2^0.179^0.255^~2, 3~^~04/01/2013~ -~21126~^~406~^7.727^3^0.348^~1~^~A~^^^1^7.040^8.170^2^6.229^9.225^~2, 3~^~04/01/2013~ -~21126~^~410~^0.350^2^^~1~^~A~^^^1^0.350^0.350^^^^^~04/01/2013~ -~21126~^~415~^0.271^3^0.002^~1~^~A~^^^1^0.268^0.276^2^0.261^0.282^~2, 3~^~04/01/2013~ -~21126~^~501~^0.118^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~502~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~503~^0.547^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~504~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~505~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~508~^0.515^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~509~^0.343^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~510~^0.643^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~511~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~512~^0.686^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~514~^0.965^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~515~^2.434^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~516~^0.493^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~517~^0.965^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~518~^0.482^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21126~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21126~^~605~^0.043^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~606~^2.059^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~607~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.016^2^-0.018^0.028^~1, 2, 3~^~04/01/2013~ -~21126~^~608~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~04/01/2013~ -~21126~^~609~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~04/01/2013~ -~21126~^~610~^0.007^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.016^0.032^~1, 2, 3~^~04/01/2013~ -~21126~^~611~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.018^2^-0.018^0.031^~1, 2, 3~^~04/01/2013~ -~21126~^~612~^0.036^3^0.016^~1~^~A~^^^1^0.019^0.072^2^-0.028^0.110^~2, 3~^~04/01/2013~ -~21126~^~613~^1.285^3^0.070^~1~^~A~^^^1^1.344^1.579^2^1.140^1.745^~2, 3~^~04/01/2013~ -~21126~^~614~^0.605^3^0.023^~1~^~A~^^^1^0.644^0.721^2^0.582^0.776^~2, 3~^~04/01/2013~ -~21126~^~615~^0.037^3^0.004^~1~^~A~^^^1^0.034^0.046^2^0.025^0.057^~2, 3~^~04/01/2013~ -~21126~^~617~^2.573^3^0.193^~1~^~AS~^^^1^2.524^3.180^2^2.059^3.717^~2, 3~^~04/01/2013~ -~21126~^~618~^5.579^3^0.523^~1~^~AS~^^^1^5.258^7.020^2^4.010^8.515^~2, 3~^~04/01/2013~ -~21126~^~619~^0.724^3^0.070^~1~^~AS~^^^1^0.681^0.918^2^0.513^1.112^~2, 3~^~04/01/2013~ -~21126~^~620~^0.020^3^0.002^~1~^~A~^^^1^0.020^0.027^2^0.014^0.032^~2, 3~^~04/01/2013~ -~21126~^~621~^0.115^3^0.025^~1~^~A~^^^1^0.104^0.179^2^0.022^0.236^~2, 3~^~04/01/2013~ -~21126~^~624~^0.036^3^0.003^~1~^~A~^^^1^0.034^0.045^2^0.026^0.055^~2, 3~^~04/01/2013~ -~21126~^~625~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~04/01/2013~ -~21126~^~626~^0.035^3^0.003^~1~^~AS~^^^1^0.034^0.045^2^0.026^0.053^~2, 3~^~04/01/2013~ -~21126~^~627~^0.003^3^0.002^~1~^~A~^^^1^0.001^0.007^2^-0.004^0.011^~1, 2, 3~^~04/01/2013~ -~21126~^~628~^0.044^3^0.011^~1~^~A~^^^1^0.035^0.070^2^0.003^0.095^~2, 3~^~04/01/2013~ -~21126~^~629~^0.024^3^0.009^~1~^~A~^^^1^0.015^0.044^2^-0.011^0.065^~2, 3~^~04/01/2013~ -~21126~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~04/01/2013~ -~21126~^~631~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~04/01/2013~ -~21126~^~645~^2.663^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~646~^6.479^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~652~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~21126~^~653~^0.016^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~04/01/2013~ -~21126~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~04/01/2013~ -~21126~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~21126~^~663~^0.011^3^0.003^~1~^~A~^^^1^0.008^0.019^2^-0.003^0.027^~2, 3~^~04/01/2013~ -~21126~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~665~^0.030^3^0.008^~1~^~A~^^^1^0.024^0.049^2^0.000^0.067^~2, 3~^~04/01/2013~ -~21126~^~670~^0.004^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~21126~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~21126~^~673~^0.033^3^0.003^~1~^~A~^^^1^0.032^0.042^2^0.024^0.049^~2, 3~^~04/01/2013~ -~21126~^~674~^2.562^3^0.196^~1~^~A~^^^1^2.505^3.172^2^2.032^3.720^~2, 3~^~04/01/2013~ -~21126~^~675~^5.544^3^0.521^~1~^~A~^^^1^5.228^6.988^2^3.982^8.466^~2, 3~^~04/01/2013~ -~21126~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2013~ -~21126~^~685~^0.032^3^0.004^~1~^~A~^^^1^0.028^0.041^2^0.019^0.053^~2, 3~^~04/01/2013~ -~21126~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~04/01/2013~ -~21126~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~04/01/2013~ -~21126~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21126~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~851~^0.692^3^0.066^~1~^~A~^^^1^0.653^0.880^2^0.491^1.062^~2, 3~^~04/01/2013~ -~21126~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~853~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~21126~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21126~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21127~^~312~^0.015^8^0.001^~1~^~A~^^^2^0.014^0.016^1^0.004^0.027^~2~^~05/01/2009~ -~21127~^~315~^0.102^8^0.019^~1~^~A~^^^2^0.083^0.121^1^-0.137^0.342^~2~^~05/01/2009~ -~21127~^~404~^0.026^8^0.011^~1~^~A~^^^2^0.015^0.037^1^-0.118^0.170^~2~^~05/01/2009~ -~21127~^~405~^0.020^8^0.005^~1~^~A~^^^2^0.015^0.025^1^-0.044^0.084^~2~^~05/01/2009~ -~21127~^~406~^0.206^8^0.000^~1~^~A~^^^2^0.206^0.206^1^0.203^0.209^~2~^~05/01/2009~ -~21127~^~410~^0.246^8^0.004^~1~^~A~^^^2^0.242^0.250^1^0.198^0.294^~2~^~05/01/2009~ -~21127~^~415~^0.112^8^0.010^~1~^~A~^^^2^0.102^0.121^1^-0.010^0.233^~2~^~05/01/2009~ -~21127~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~606~^1.599^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~607~^0.002^8^0.002^~1~^~A~^^^2^0.000^0.005^1^-0.028^0.032^~2~^~05/01/2009~ -~21127~^~608~^0.005^8^0.006^~1~^~A~^^^2^0.000^0.011^1^-0.067^0.079^~2~^~05/01/2009~ -~21127~^~609~^0.004^8^0.005^~1~^~A~^^^2^0.000^0.009^1^-0.055^0.065^~2~^~05/01/2009~ -~21127~^~610~^0.007^8^0.007^~1~^~A~^^^2^0.000^0.015^1^-0.085^0.099^~2~^~05/01/2009~ -~21127~^~611~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.012^0.014^~2~^~05/01/2009~ -~21127~^~612~^0.005^8^0.000^~1~^~A~^^^2^0.005^0.006^1^0.001^0.010^~2~^~05/01/2009~ -~21127~^~613~^1.037^8^0.249^~1~^~A~^^^2^0.877^1.375^1^-2.040^4.292^~2~^~05/01/2009~ -~21127~^~614~^0.438^8^0.119^~1~^~A~^^^2^0.357^0.595^1^-1.033^1.985^~2~^~05/01/2009~ -~21127~^~615~^0.032^8^0.012^~1~^~A~^^^2^0.023^0.046^1^-0.113^0.182^~2~^~05/01/2009~ -~21127~^~617~^2.232^8^0.511^~1~^~AS~^^^2^1.914^2.935^1^-4.065^8.914^~2~^~05/01/2009~ -~21127~^~618~^5.021^8^1.152^~1~^~AS~^^^2^4.301^6.606^1^-9.190^20.098^~2~^~05/01/2009~ -~21127~^~619~^0.302^8^0.258^~1~^~AS~^^^2^0.071^0.586^1^-2.943^3.600^~2~^~05/01/2009~ -~21127~^~620~^0.004^8^0.004^~1~^~A~^^^2^0.000^0.008^1^-0.045^0.053^~2~^~05/01/2009~ -~21127~^~621~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.009^0.010^~2~^~05/01/2009~ -~21127~^~624~^0.034^8^0.011^~1~^~A~^^^2^0.025^0.048^1^-0.106^0.179^~2~^~05/01/2009~ -~21127~^~625~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2~^~05/01/2009~ -~21127~^~626~^0.018^8^0.011^~1~^~AS~^^^2^0.008^0.031^1^-0.122^0.161^~2~^~05/01/2009~ -~21127~^~627~^0.003^8^0.004^~1~^~A~^^^2^0.000^0.007^1^-0.042^0.049^~2~^~05/01/2009~ -~21127~^~628~^0.400^8^0.407^~1~^~A~^^^2^0.028^0.841^1^-4.730^5.600^~2~^~05/01/2009~ -~21127~^~629~^0.006^8^0.006^~1~^~A~^^^2^0.000^0.012^1^-0.072^0.084^~2~^~05/01/2009~ -~21127~^~630~^0.008^8^0.002^~1~^~AS~^^^2^0.007^0.011^1^-0.021^0.039^~2~^~05/01/2009~ -~21127~^~631~^0.000^8^0.001^~1~^~A~^^^2^0.000^0.001^1^-0.006^0.007^~2~^~05/01/2009~ -~21127~^~645~^2.671^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~646~^5.348^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~652~^0.002^8^0.002^~1~^~A~^^^2^0.000^0.005^1^-0.028^0.033^~2~^~05/01/2009~ -~21127~^~653~^0.016^8^0.010^~1~^~A~^^^2^0.007^0.027^1^-0.108^0.143^~2~^~05/01/2009~ -~21127~^~654~^0.016^8^0.009^~1~^~A~^^^2^0.008^0.026^1^-0.094^0.128^~2~^~05/01/2009~ -~21127~^~662~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.001^1^-0.004^0.005^~2~^~05/01/2009~ -~21127~^~663~^0.005^8^0.002^~1~^~A~^^^2^0.004^0.007^1^-0.014^0.025^~2~^~05/01/2009~ -~21127~^~664~^0.003^8^0.003^~1~^~A~^^^2^0.000^0.005^1^-0.032^0.038^~2~^~05/01/2009~ -~21127~^~665~^0.029^8^0.008^~1~^~A~^^^2^0.024^0.040^1^-0.070^0.133^~2~^~05/01/2009~ -~21127~^~670~^0.013^8^0.013^~1~^~A~^^^2^0.001^0.027^1^-0.156^0.184^~2~^~05/01/2009~ -~21127~^~671~^0.004^8^0.002^~1~^~A~^^^2^0.002^0.006^1^-0.022^0.031^~2~^~05/01/2009~ -~21127~^~672~^0.002^8^0.001^~1~^~A~^^^2^0.001^0.004^1^-0.015^0.020^~2~^~05/01/2009~ -~21127~^~673~^0.018^8^0.011^~1~^~A~^^^2^0.008^0.030^1^-0.117^0.156^~2~^~05/01/2009~ -~21127~^~674~^2.227^8^0.512^~1~^~A~^^^2^1.907^2.931^1^-4.090^8.928^~2~^~05/01/2009~ -~21127~^~675~^4.979^8^1.131^~1~^~A~^^^2^4.277^6.539^1^-8.964^19.780^~2~^~05/01/2009~ -~21127~^~676~^0.006^8^0.000^~1~^~A~^^^2^0.006^0.007^1^0.001^0.011^~2~^~05/01/2009~ -~21127~^~685~^0.024^8^0.006^~1~^~A~^^^2^0.020^0.031^1^-0.044^0.096^~2~^~05/01/2009~ -~21127~^~687~^0.008^8^0.005^~1~^~A~^^^2^0.004^0.014^1^-0.056^0.074^~2~^~05/01/2009~ -~21127~^~689~^0.007^8^0.007^~1~^~AS~^^^2^0.000^0.015^1^-0.086^0.101^~2~^~05/01/2009~ -~21127~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21127~^~697~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~2~^~05/01/2009~ -~21127~^~851~^0.279^8^0.263^~1~^~A~^^^2^0.040^0.566^1^-3.039^3.645^~2~^~05/01/2009~ -~21127~^~852~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.003^1^-0.016^0.019^~2~^~05/01/2009~ -~21127~^~853~^0.006^8^0.006^~1~^~A~^^^2^0.000^0.012^1^-0.070^0.082^~2~^~05/01/2009~ -~21127~^~858~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.014^0.017^~2~^~05/01/2009~ -~21129~^~312~^0.145^6^0.003^~1~^~A~^^^1^0.137^0.159^5^0.136^0.154^~4~^~03/01/2011~ -~21129~^~315~^0.411^6^0.015^~1~^~A~^^^1^0.363^0.447^5^0.374^0.449^~4~^~03/01/2011~ -~21129~^~404~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21129~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21129~^~406~^2.130^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21129~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21129~^~606~^2.621^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~612~^0.016^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~613~^1.774^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~614~^0.830^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~617~^7.730^6^0.385^~1~^~AS~^^^1^6.001^8.588^5^6.739^8.720^~4~^~03/01/2011~ -~21129~^~618~^1.626^6^0.230^~1~^~AS~^^^1^1.051^2.659^5^1.036^2.217^~4~^~03/01/2011~ -~21129~^~619~^0.120^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~626~^0.071^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.003^~4~^~03/01/2011~ -~21129~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~ -~21129~^~645~^7.806^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21129~^~646~^1.762^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21130~^~312~^0.075^6^0.004^~1~^~A~^^^1^0.067^0.094^5^0.065^0.085^~2, 3~^~08/01/2012~ -~21130~^~315~^0.342^6^0.008^~1~^~A~^^^1^0.317^0.372^5^0.321^0.362^~2, 3~^~08/01/2012~ -~21130~^~404~^0.110^3^0.000^~1~^~A~^^^1^0.110^0.110^^^^~2, 3~^~08/01/2012~ -~21130~^~405~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~08/01/2012~ -~21130~^~406~^0.673^3^0.027^~1~^~A~^^^1^0.620^0.700^2^0.559^0.788^~2, 3~^~08/01/2012~ -~21130~^~410~^0.325^2^^~1~^~A~^^^1^0.310^0.340^1^^^^~08/01/2012~ -~21130~^~415~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~08/01/2012~ -~21130~^~605~^0.164^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~606~^4.194^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~607~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 2, 3~^~08/01/2012~ -~21130~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21130~^~609~^0.015^6^0.001^~1~^~A~^^^1^0.009^0.018^5^0.011^0.018^~2, 3~^~08/01/2012~ -~21130~^~610~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.019^5^0.009^0.016^~2, 3~^~08/01/2012~ -~21130~^~611~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.004^0.008^~2, 3~^~08/01/2012~ -~21130~^~612~^0.058^6^0.004^~1~^~A~^^^1^0.039^0.071^5^0.047^0.069^~2, 3~^~08/01/2012~ -~21130~^~613~^3.242^6^0.127^~1~^~A~^^^1^2.776^3.731^5^2.916^3.568^~2, 3~^~08/01/2012~ -~21130~^~614~^0.655^6^0.026^~1~^~A~^^^1^0.560^0.739^5^0.589^0.722^~2, 3~^~08/01/2012~ -~21130~^~615~^0.087^6^0.003^~1~^~A~^^^1^0.080^0.100^5^0.080^0.095^~2, 3~^~08/01/2012~ -~21130~^~617~^6.729^6^0.240^~1~^~AS~^^^1^5.922^7.541^5^6.112^7.346^~2, 3~^~08/01/2012~ -~21130~^~618~^11.507^6^0.328^~1~^~AS~^^^1^10.363^12.394^5^10.663^12.351^~2, 3~^~08/01/2012~ -~21130~^~619~^0.619^6^0.040^~1~^~AS~^^^1^0.473^0.740^5^0.516^0.722^~2, 3~^~08/01/2012~ -~21130~^~620~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.006^0.009^~2, 3~^~08/01/2012~ -~21130~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~624~^0.052^6^0.002^~1~^~A~^^^1^0.044^0.056^5^0.047^0.056^~2, 3~^~08/01/2012~ -~21130~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~626~^0.053^6^0.003^~1~^~AS~^^^1^0.041^0.060^5^0.045^0.060^~2, 3~^~08/01/2012~ -~21130~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~628~^0.081^6^0.005^~1~^~A~^^^1^0.065^0.098^5^0.068^0.094^~2, 3~^~08/01/2012~ -~21130~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21130~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.005^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21130~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~645~^6.885^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~646~^12.149^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~08/01/2012~ -~21130~^~653~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.022^5^0.018^0.022^~2, 3~^~08/01/2012~ -~21130~^~654~^0.036^6^0.001^~1~^~A~^^^1^0.034^0.040^5^0.034^0.039^~2, 3~^~08/01/2012~ -~21130~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~663~^0.029^6^0.005^~1~^~A~^^^1^0.020^0.051^5^0.017^0.041^~2, 3~^~08/01/2012~ -~21130~^~664~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~21130~^~665~^0.133^6^0.006^~1~^~A~^^^1^0.121^0.159^5^0.117^0.148^~2, 3~^~08/01/2012~ -~21130~^~670~^0.037^6^0.003^~1~^~A~^^^1^0.026^0.049^5^0.029^0.045^~2, 3~^~08/01/2012~ -~21130~^~671~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~08/01/2012~ -~21130~^~672~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~2, 3~^~08/01/2012~ -~21130~^~673~^0.053^6^0.003^~1~^~A~^^^1^0.041^0.060^5^0.045^0.060^~2, 3~^~08/01/2012~ -~21130~^~674~^6.700^6^0.238^~1~^~A~^^^1^5.902^7.513^5^6.089^7.311^~2, 3~^~08/01/2012~ -~21130~^~675~^11.338^6^0.323^~1~^~A~^^^1^10.207^12.213^5^10.508^12.169^~2, 3~^~08/01/2012~ -~21130~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~21130~^~685~^0.042^6^0.004^~1~^~A~^^^1^0.027^0.054^5^0.032^0.052^~2, 3~^~08/01/2012~ -~21130~^~687~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~08/01/2012~ -~21130~^~689~^0.004^6^0.000^~1~^~AS~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21130~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~695~^0.133^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21130~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~851~^0.577^6^0.037^~1~^~A~^^^1^0.446^0.691^5^0.483^0.671^~2, 3~^~08/01/2012~ -~21130~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21130~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21130~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21138~^~312~^0.124^18^0.009^~1~^~A~^^^1^0.072^0.212^6^0.102^0.145^~2, 3~^~08/01/2012~ -~21138~^~315~^0.247^18^0.010^~1~^~A~^^^1^0.183^0.343^7^0.224^0.270^~2, 3~^~08/01/2012~ -~21138~^~404~^0.170^9^0.004^~1~^~A~^^^1^0.140^0.190^3^0.156^0.184^~2, 3~^~08/01/2012~ -~21138~^~405~^0.039^9^0.002^~1~^~A~^^^1^0.030^0.060^3^0.031^0.047^~2, 3~^~08/01/2012~ -~21138~^~406~^3.004^9^0.156^~1~^~A~^^^1^2.090^3.660^2^2.351^3.657^~2, 3~^~08/01/2012~ -~21138~^~410~^0.580^6^0.023^~1~^~A~^^^1^0.470^0.700^2^0.461^0.699^~2, 3~^~08/01/2012~ -~21138~^~415~^0.372^9^0.034^~1~^~A~^^^1^0.280^0.440^2^0.238^0.507^~2, 3~^~08/01/2012~ -~21138~^~605~^0.060^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~606~^2.336^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~607~^0.080^18^0.059^~1~^~A~^^^1^0.002^0.807^7^-0.059^0.220^~1, 2, 3~^~08/01/2012~ -~21138~^~608~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2010~ -~21138~^~609~^0.014^18^0.001^~1~^~A~^^^1^0.006^0.041^9^0.012^0.016^~2, 3~^~08/01/2012~ -~21138~^~610~^0.013^18^0.000^~1~^~A~^^^1^0.009^0.029^10^0.012^0.014^~2, 3~^~08/01/2012~ -~21138~^~611~^0.004^18^0.001^~1~^~A~^^^1^0.002^0.009^5^0.003^0.006^~1, 2, 3~^~08/01/2012~ -~21138~^~612~^0.018^18^0.001^~1~^~A~^^^1^0.011^0.040^12^0.017^0.019^~2, 3~^~08/01/2012~ -~21138~^~613~^1.220^18^0.022^~1~^~A~^^^1^0.869^1.952^10^1.171^1.268^~2, 3~^~08/01/2012~ -~21138~^~614~^0.838^18^0.028^~1~^~A~^^^1^0.281^1.115^5^0.767^0.908^~2, 3~^~08/01/2012~ -~21138~^~615~^0.070^18^0.002^~1~^~A~^^^1^0.000^0.091^10^0.066^0.075^~1, 2, 3~^~08/01/2012~ -~21138~^~617~^5.821^18^0.132^~1~^~AS~^^^1^2.753^7.844^6^5.492^6.151^~2, 3~^~08/01/2012~ -~21138~^~618~^4.948^18^0.098^~1~^~AS~^^^1^3.861^7.295^8^4.723^5.173^~2, 3~^~08/01/2012~ -~21138~^~619~^0.436^18^0.011^~1~^~AS~^^^1^0.249^0.782^10^0.412^0.460^~2, 3~^~08/01/2012~ -~21138~^~620~^0.004^18^0.000^~1~^~A~^^^1^0.003^0.006^7^0.004^0.005^~2, 3~^~08/01/2012~ -~21138~^~621~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21138~^~624~^0.040^18^0.001^~1~^~A~^^^1^0.019^0.050^6^0.038^0.043^~2, 3~^~08/01/2012~ -~21138~^~625~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21138~^~626~^0.026^18^0.000^~1~^~AS~^^^1^0.022^0.030^9^0.025^0.027^~2, 3~^~08/01/2012~ -~21138~^~627~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21138~^~628~^0.107^18^0.002^~1~^~A~^^^1^0.016^0.156^10^0.102^0.112^~2, 3~^~08/01/2012~ -~21138~^~629~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.001^~1, 2, 3~^~06/01/2005~ -~21138~^~630~^0.004^18^0.000^~1~^~AS~^^^1^0.000^0.007^6^0.004^0.005^~2, 3~^~08/01/2012~ -~21138~^~631~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21138~^~645~^5.969^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~646~^5.398^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~652~^0.005^18^0.000^~1~^~A~^^^1^0.003^0.007^9^0.004^0.005^~2, 3~^~08/01/2012~ -~21138~^~653~^0.011^18^0.000^~1~^~A~^^^1^0.009^0.015^7^0.011^0.012^~2, 3~^~08/01/2012~ -~21138~^~654~^0.022^18^0.000^~1~^~A~^^^1^0.016^0.026^6^0.021^0.023^~2, 3~^~08/01/2012~ -~21138~^~662~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21138~^~663~^0.026^18^0.001^~1~^~A~^^^1^0.009^0.034^8^0.023^0.028^~2, 3~^~08/01/2012~ -~21138~^~664~^0.002^18^0.000^~1~^~A~^^^1^0.000^0.004^6^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~21138~^~665~^0.033^18^0.001^~1~^~A~^^^1^0.024^0.049^6^0.031^0.035^~2, 3~^~08/01/2012~ -~21138~^~670~^0.017^18^0.001^~1~^~A~^^^1^0.013^0.024^7^0.015^0.019^~2, 3~^~08/01/2012~ -~21138~^~671~^0.003^18^0.000^~1~^~A~^^^1^0.002^0.004^10^0.003^0.003^~1, 2, 3~^~08/01/2012~ -~21138~^~672~^0.007^18^0.000^~1~^~A~^^^1^0.003^0.010^6^0.007^0.008^~2, 3~^~08/01/2012~ -~21138~^~673~^0.026^18^0.000^~1~^~A~^^^1^0.022^0.030^9^0.025^0.027^~2, 3~^~08/01/2012~ -~21138~^~674~^5.796^18^0.132^~1~^~A~^^^1^2.741^7.810^6^5.467^6.124^~2, 3~^~08/01/2012~ -~21138~^~675~^4.898^18^0.098^~1~^~A~^^^1^3.811^7.234^8^4.674^5.122^~2, 3~^~08/01/2012~ -~21138~^~676~^0.003^18^0.000^~1~^~A~^^^1^0.000^0.004^11^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~21138~^~685~^0.029^18^0.001^~1~^~A~^^^1^0.013^0.045^10^0.027^0.031^~2, 3~^~08/01/2012~ -~21138~^~687~^0.008^18^0.000^~1~^~A~^^^1^0.005^0.009^6^0.007^0.008^~2, 3~^~08/01/2012~ -~21138~^~689~^0.001^18^0.000^~1~^~AS~^^^1^0.000^0.003^7^0.000^0.001^~2, 3~^~08/01/2012~ -~21138~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21138~^~697~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21138~^~851~^0.407^18^0.010^~1~^~A~^^^1^0.235^0.737^10^0.385^0.430^~2, 3~^~08/01/2012~ -~21138~^~852~^0.001^18^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21138~^~853~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21138~^~858~^0.000^18^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21139~^~312~^0.035^6^0.002^~1~^~A~^^^1^0.027^0.042^5^0.029^0.041^~2, 3~^~03/01/2011~ -~21139~^~315~^0.098^6^0.004^~1~^~A~^^^1^0.085^0.109^5^0.087^0.110^~2, 3~^~03/01/2011~ -~21139~^~404~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21139~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2011~ -~21139~^~406~^1.080^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~415~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21139~^~605~^0.105^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~606~^0.577^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~607~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~03/01/2011~ -~21139~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~609~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~612~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.001^0.011^~2, 3~^~03/01/2011~ -~21139~^~613~^0.319^3^0.047^~1~^~A~^^^1^0.231^0.391^2^0.117^0.520^~2, 3~^~03/01/2011~ -~21139~^~614~^0.217^3^0.028^~1~^~A~^^^1^0.161^0.254^2^0.094^0.340^~2, 3~^~03/01/2011~ -~21139~^~615~^0.010^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.015^~2, 3~^~03/01/2011~ -~21139~^~617~^0.696^3^0.114^~1~^~AS~^^^1^0.493^0.888^2^0.205^1.188^~2, 3~^~03/01/2011~ -~21139~^~618~^1.163^3^0.203^~1~^~AS~^^^1^0.802^1.503^2^0.291^2.035^~2, 3~^~03/01/2011~ -~21139~^~619~^0.174^3^0.028^~1~^~AS~^^^1^0.124^0.222^2^0.052^0.296^~2, 3~^~03/01/2011~ -~21139~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~624~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.011^2^0.002^0.016^~2, 3~^~03/01/2011~ -~21139~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~626~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2011~ -~21139~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~628~^0.018^3^0.003^~1~^~A~^^^1^0.013^0.023^2^0.005^0.030^~2, 3~^~03/01/2011~ -~21139~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2011~ -~21139~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~03/01/2011~ -~21139~^~631~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2011~ -~21139~^~645~^0.720^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~646~^1.342^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2011~ -~21139~^~654~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~03/01/2011~ -~21139~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~663~^0.090^3^0.035^~1~^~A~^^^1^0.039^0.156^2^-0.060^0.239^~2, 3~^~03/01/2011~ -~21139~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~665~^0.015^3^0.004^~1~^~A~^^^1^0.008^0.023^2^-0.003^0.034^~2, 3~^~03/01/2011~ -~21139~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~03/01/2011~ -~21139~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21139~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~673~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2011~ -~21139~^~674~^0.607^3^0.096^~1~^~A~^^^1^0.419^0.732^2^0.195^1.018^~2, 3~^~03/01/2011~ -~21139~^~675~^1.146^3^0.197^~1~^~A~^^^1^0.794^1.477^2^0.297^1.996^~2, 3~^~03/01/2011~ -~21139~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21139~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~03/01/2011~ -~21139~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2011~ -~21139~^~693~^0.090^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21139~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~851~^0.174^3^0.028^~1~^~A~^^^1^0.124^0.222^2^0.052^0.296^~2, 3~^~03/01/2011~ -~21139~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21139~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21141~^~312~^0.190^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~315~^0.061^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~406~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~410~^0.620^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~415~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~605~^0.296^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~606~^5.335^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~607~^0.198^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~608~^0.152^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~609~^0.093^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~610~^0.227^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~611~^0.249^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~612~^0.825^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~613~^2.388^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~614~^1.039^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~615~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~617~^2.204^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~21141~^~620~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~625~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~626~^0.172^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~21141~^~627~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~631~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~645~^2.470^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~646~^0.434^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~652~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~653~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~654~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~662~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~663~^0.207^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~665~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~670~^0.047^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~673~^0.143^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~674~^1.997^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~675~^0.255^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~687~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~693~^0.237^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21141~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21141~^~851~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21141~^~853~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21142~^~312~^0.081^12^0.001^~1~^~A~^^^1^0.065^0.091^5^0.078^0.084^~2, 3~^~04/01/2014~ -~21142~^~315~^0.388^12^0.008^~1~^~A~^^^1^0.287^0.449^5^0.369^0.407^~2, 3~^~04/01/2014~ -~21142~^~404~^0.441^6^0.008^~1~^~A~^^^1^0.420^0.480^4^0.417^0.464^~2, 3~^~04/01/2014~ -~21142~^~405~^0.303^6^0.009^~1~^~A~^^^1^0.250^0.330^3^0.271^0.335^~2, 3~^~04/01/2014~ -~21142~^~406~^3.713^6^0.075^~1~^~A~^^^1^2.950^4.070^3^3.491^3.934^~2, 3~^~04/01/2014~ -~21142~^~410~^0.415^4^0.014^~1~^~A~^^^1^0.380^0.460^1^0.239^0.591^~2, 3~^~04/01/2014~ -~21142~^~415~^0.059^6^0.003^~1~^~A~^^^1^0.040^0.070^3^0.050^0.068^~2, 3~^~04/01/2014~ -~21142~^~605~^0.208^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~606~^11.803^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~607~^0.004^6^0.000^~1~^~A~^^^1^0.000^0.014^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~608~^0.031^6^0.001^~1~^~A~^^^1^0.007^0.041^2^0.028^0.034^~2, 3~^~04/01/2014~ -~21142~^~609~^0.367^6^0.007^~1~^~A~^^^1^0.009^0.517^2^0.337^0.398^~2, 3~^~04/01/2014~ -~21142~^~610~^0.298^6^0.006^~1~^~A~^^^1^0.013^0.417^2^0.274^0.322^~2, 3~^~04/01/2014~ -~21142~^~611~^3.239^6^0.071^~1~^~A~^^^1^0.060^4.616^2^2.936^3.543^~2, 3~^~04/01/2014~ -~21142~^~612~^1.048^6^0.022^~1~^~A~^^^1^0.227^1.411^2^0.951^1.144^~2, 3~^~04/01/2014~ -~21142~^~613~^3.760^6^0.059^~1~^~A~^^^1^1.310^9.878^3^3.583^3.937^~2, 3~^~04/01/2014~ -~21142~^~614~^2.950^6^0.086^~1~^~A~^^^1^1.213^3.788^2^2.612^3.288^~2, 3~^~04/01/2014~ -~21142~^~615~^0.055^6^0.002^~1~^~A~^^^1^0.040^0.082^2^0.046^0.063^~2, 3~^~04/01/2014~ -~21142~^~617~^2.458^6^0.128^~1~^~AS~^^^1^1.030^5.927^3^2.000^2.915^~2, 3~^~04/01/2014~ -~21142~^~618~^1.989^6^0.288^~1~^~AS~^^^1^0.646^4.918^3^1.089^2.890^~2, 3~^~04/01/2014~ -~21142~^~619~^0.205^6^0.041^~1~^~AS~^^^1^0.046^0.551^3^0.077^0.334^~2, 3~^~04/01/2014~ -~21142~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^4^0.003^0.005^~2, 3~^~04/01/2014~ -~21142~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~624~^0.020^6^0.002^~1~^~A~^^^1^0.012^0.036^3^0.015^0.025^~2, 3~^~04/01/2014~ -~21142~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~21142~^~626~^0.010^6^0.001^~1~^~AS~^^^1^0.003^0.026^2^0.008^0.013^~2, 3~^~04/01/2014~ -~21142~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~628~^0.016^6^0.001^~1~^~A~^^^1^0.007^0.037^4^0.013^0.019^~2, 3~^~04/01/2014~ -~21142~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~21142~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~645~^2.487^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~646~^2.199^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.000^0.016^2^0.004^0.005^~1, 2, 3~^~04/01/2014~ -~21142~^~653~^0.012^6^0.000^~1~^~A~^^^1^0.006^0.027^3^0.011^0.014^~2, 3~^~04/01/2014~ -~21142~^~654~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.021^3^0.013^0.018^~2, 3~^~04/01/2014~ -~21142~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~663~^0.173^6^0.059^~1~^~A~^^^1^0.033^0.338^2^-0.083^0.428^~2, 3~^~04/01/2014~ -~21142~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~665~^0.035^6^0.010^~1~^~A~^^^1^0.011^0.056^2^-0.007^0.076^~2, 3~^~04/01/2014~ -~21142~^~670~^0.006^6^0.000^~1~^~A~^^^1^0.003^0.012^2^0.004^0.008^~2, 3~^~04/01/2014~ -~21142~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~21142~^~673~^0.010^6^0.001^~1~^~A~^^^1^0.003^0.026^2^0.008^0.013^~2, 3~^~04/01/2014~ -~21142~^~674~^2.285^6^0.094^~1~^~A~^^^1^0.823^5.870^3^1.981^2.589^~2, 3~^~04/01/2014~ -~21142~^~675~^1.949^6^0.294^~1~^~A~^^^1^0.600^4.875^3^1.021^2.877^~2, 3~^~04/01/2014~ -~21142~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~685~^0.008^6^0.002^~1~^~A~^^^1^0.002^0.016^2^0.001^0.016^~1, 2, 3~^~04/01/2014~ -~21142~^~687~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.007^3^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~21142~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.001^~2, 3~^~04/01/2014~ -~21142~^~693~^0.173^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21142~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~851~^0.197^6^0.039^~1~^~A~^^^1^0.044^0.535^3^0.076^0.318^~2, 3~^~04/01/2014~ -~21142~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~21142~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21142~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21143~^~312~^0.060^4^0.004^~1~^~A~^^^1^0.055^0.072^3^0.047^0.072^~2, 3~^~05/01/2014~ -~21143~^~315~^0.121^4^0.008^~1~^~A~^^^1^0.108^0.144^3^0.097^0.146^~2, 3~^~05/01/2014~ -~21143~^~404~^0.153^3^0.003^~1~^~A~^^^1^0.150^0.160^2^0.139^0.167^~2, 3~^~05/01/2014~ -~21143~^~405~^0.270^3^0.006^~1~^~A~^^^1^0.260^0.280^2^0.245^0.295^~2, 3~^~05/01/2014~ -~21143~^~406~^8.763^3^0.254^~1~^~A~^^^1^8.490^9.270^2^7.672^9.855^~2, 3~^~05/01/2014~ -~21143~^~410~^1.550^2^^~1~^~A~^^^1^1.400^1.700^1^^^^~05/01/2014~ -~21143~^~415~^0.476^3^0.015^~1~^~A~^^^1^0.460^0.507^2^0.410^0.542^~2, 3~^~05/01/2014~ -~21143~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~606~^2.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~609~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~21143~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~612~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~05/01/2014~ -~21143~^~613~^1.102^3^0.022^~1~^~A~^^^1^1.062^1.139^2^1.006^1.198^~2, 3~^~05/01/2014~ -~21143~^~614~^0.332^3^0.006^~1~^~A~^^^1^0.321^0.341^2^0.307^0.358^~2, 3~^~05/01/2014~ -~21143~^~615~^0.122^3^0.004^~1~^~A~^^^1^0.115^0.128^2^0.106^0.138^~2, 3~^~05/01/2014~ -~21143~^~617~^5.894^3^0.187^~1~^~AS~^^^1^5.521^6.109^2^5.088^6.699^~2, 3~^~05/01/2014~ -~21143~^~618~^2.302^3^0.071^~1~^~AS~^^^1^2.198^2.438^2^1.996^2.608^~2, 3~^~05/01/2014~ -~21143~^~619~^0.033^3^0.001^~1~^~AS~^^^1^0.031^0.035^2^0.027^0.038^~2, 3~^~05/01/2014~ -~21143~^~620~^0.040^3^0.002^~1~^~A~^^^1^0.036^0.043^2^0.031^0.048^~2, 3~^~05/01/2014~ -~21143~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~21143~^~624~^0.300^3^0.010^~1~^~A~^^^1^0.282^0.317^2^0.257^0.344^~2, 3~^~05/01/2014~ -~21143~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~626~^0.045^3^0.002^~1~^~AS~^^^1^0.040^0.047^2^0.035^0.055^~2, 3~^~05/01/2014~ -~21143~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~628~^0.190^3^0.008^~1~^~A~^^^1^0.174^0.199^2^0.155^0.225^~2, 3~^~05/01/2014~ -~21143~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~630~^0.024^3^0.001^~1~^~AS~^^^1^0.022^0.026^2^0.019^0.030^~2, 3~^~05/01/2014~ -~21143~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2014~ -~21143~^~645~^6.165^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~646~^2.409^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~21143~^~653~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~05/01/2014~ -~21143~^~654~^0.178^3^0.006^~1~^~A~^^^1^0.166^0.186^2^0.152^0.204^~2, 3~^~05/01/2014~ -~21143~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~663~^0.014^3^0.005^~1~^~A~^^^1^0.009^0.024^2^-0.008^0.036^~2, 3~^~05/01/2014~ -~21143~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~665~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.029^~2, 3~^~05/01/2014~ -~21143~^~670~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~21143~^~671~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2014~ -~21143~^~672~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~21143~^~673~^0.045^3^0.002^~1~^~A~^^^1^0.040^0.047^2^0.035^0.055^~2, 3~^~05/01/2014~ -~21143~^~674~^5.880^3^0.185^~1~^~A~^^^1^5.512^6.100^2^5.083^6.677^~2, 3~^~05/01/2014~ -~21143~^~675~^2.276^3^0.070^~1~^~A~^^^1^2.175^2.411^2^1.974^2.578^~2, 3~^~05/01/2014~ -~21143~^~676~^0.024^3^0.001^~1~^~A~^^^1^0.022^0.026^2^0.019^0.030^~2, 3~^~05/01/2014~ -~21143~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~21143~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21143~^~689~^0.011^3^0.000^~1~^~AS~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2014~ -~21143~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21143~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~851~^0.031^3^0.001^~1~^~A~^^^1^0.030^0.033^2^0.027^0.035^~2, 3~^~05/01/2014~ -~21143~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~853~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2014~ -~21143~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21143~^~858~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2014~ -~21144~^~312~^0.108^4^0.014^~1~^~A~^^^1^0.089^0.149^3^0.064^0.152^~2, 3~^~05/01/2014~ -~21144~^~315~^0.163^4^0.004^~1~^~A~^^^1^0.157^0.171^3^0.152^0.175^~2, 3~^~05/01/2014~ -~21144~^~404~^0.163^3^0.009^~1~^~A~^^^1^0.150^0.180^2^0.125^0.201^~2, 3~^~05/01/2014~ -~21144~^~405~^0.060^3^0.006^~1~^~A~^^^1^0.050^0.070^2^0.035^0.085^~2, 3~^~05/01/2014~ -~21144~^~406~^2.407^3^0.114^~1~^~A~^^^1^2.260^2.630^2^1.918^2.895^~2, 3~^~05/01/2014~ -~21144~^~410~^0.520^2^^~1~^~A~^^^1^0.490^0.550^1^^^^~05/01/2014~ -~21144~^~415~^0.230^3^0.006^~1~^~A~^^^1^0.220^0.240^2^0.205^0.255^~2, 3~^~05/01/2014~ -~21144~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~606~^2.778^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~609~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~21144~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~611~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2014~ -~21144~^~612~^0.042^3^0.001^~1~^~A~^^^1^0.041^0.044^2^0.039^0.046^~2, 3~^~05/01/2014~ -~21144~^~613~^2.070^3^0.040^~1~^~A~^^^1^2.024^2.150^2^1.896^2.243^~2, 3~^~05/01/2014~ -~21144~^~614~^0.449^3^0.012^~1~^~A~^^^1^0.426^0.461^2^0.399^0.498^~2, 3~^~05/01/2014~ -~21144~^~615~^0.105^3^0.003^~1~^~A~^^^1^0.100^0.108^2^0.094^0.117^~2, 3~^~05/01/2014~ -~21144~^~617~^10.415^3^0.293^~1~^~AS~^^^1^9.831^10.736^2^9.156^11.674^~2, 3~^~05/01/2014~ -~21144~^~618~^3.220^3^0.087^~1~^~AS~^^^1^3.047^3.326^2^2.845^3.595^~2, 3~^~05/01/2014~ -~21144~^~619~^0.652^3^0.011^~1~^~AS~^^^1^0.637^0.673^2^0.605^0.698^~2, 3~^~05/01/2014~ -~21144~^~620~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2014~ -~21144~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~624~^0.049^3^0.002^~1~^~A~^^^1^0.046^0.051^2^0.042^0.055^~2, 3~^~05/01/2014~ -~21144~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~626~^0.036^3^0.001^~1~^~AS~^^^1^0.034^0.037^2^0.032^0.039^~2, 3~^~05/01/2014~ -~21144~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~628~^0.207^3^0.003^~1~^~A~^^^1^0.201^0.213^2^0.192^0.222^~2, 3~^~05/01/2014~ -~21144~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~630~^0.012^3^0.001^~1~^~AS~^^^1^0.009^0.013^2^0.006^0.018^~2, 3~^~05/01/2014~ -~21144~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~645~^10.700^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~646~^3.887^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~21144~^~653~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2014~ -~21144~^~654~^0.029^3^0.001^~1~^~A~^^^1^0.027^0.030^2^0.025^0.032^~2, 3~^~05/01/2014~ -~21144~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~663~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~05/01/2014~ -~21144~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~665~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.024^2^0.018^0.026^~2, 3~^~05/01/2014~ -~21144~^~670~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~05/01/2014~ -~21144~^~671~^0.022^3^0.000^~1~^~A~^^^1^0.021^0.022^2^0.020^0.023^~2, 3~^~05/01/2014~ -~21144~^~672~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~05/01/2014~ -~21144~^~673~^0.036^3^0.001^~1~^~A~^^^1^0.034^0.037^2^0.032^0.039^~2, 3~^~05/01/2014~ -~21144~^~674~^10.393^3^0.293^~1~^~A~^^^1^9.808^10.715^2^9.132^11.655^~2, 3~^~05/01/2014~ -~21144~^~675~^3.185^3^0.086^~1~^~A~^^^1^3.014^3.292^2^2.813^3.557^~2, 3~^~05/01/2014~ -~21144~^~676~^0.012^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.018^~2, 3~^~05/01/2014~ -~21144~^~685~^0.038^3^0.002^~1~^~A~^^^1^0.035^0.040^2^0.031^0.045^~2, 3~^~05/01/2014~ -~21144~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~05/01/2014~ -~21144~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~21144~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21144~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~851~^0.614^3^0.010^~1~^~A~^^^1^0.597^0.633^2^0.569^0.659^~2, 3~^~05/01/2014~ -~21144~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21144~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21145~^~404~^0.230^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~405~^0.170^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~406~^3.080^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~415~^0.099^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~605~^0.300^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~606~^4.140^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~645~^2.290^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21145~^~646~^1.040^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~404~^0.200^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~405~^0.270^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~406~^2.393^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~415~^0.136^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~605~^0.290^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~606~^3.990^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~645~^2.750^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21146~^~646~^1.150^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~404~^0.270^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~405~^0.330^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~406~^2.846^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~415~^0.155^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~605~^0.200^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~606~^2.790^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~645~^1.700^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21147~^~646~^2.300^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~404~^0.330^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~405~^0.320^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~406~^3.543^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~415~^0.178^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~605~^0.180^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~606~^2.810^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~645~^2.120^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21148~^~646~^2.230^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~404~^0.260^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~405~^0.280^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~406~^3.125^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~415~^0.097^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~605~^0.170^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~606~^3.470^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~645~^2.470^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21149~^~646~^2.980^1^^~9~^~MC~^^^^^^^^^^~06/01/2014~ -~21150~^~312~^0.071^6^0.002^~1~^~A~^^^1^0.064^0.077^5^0.065^0.077^~2, 3~^~04/01/2015~ -~21150~^~315~^0.282^6^0.007^~1~^~A~^^^1^0.260^0.302^5^0.265^0.300^~2, 3~^~04/01/2015~ -~21150~^~404~^0.273^3^0.009^~1~^~A~^^^1^0.260^0.290^2^0.235^0.311^~2, 3~^~04/01/2015~ -~21150~^~405~^0.213^3^0.012^~1~^~A~^^^1^0.190^0.230^2^0.161^0.265^~2, 3~^~04/01/2015~ -~21150~^~406~^5.063^3^0.276^~1~^~A~^^^1^4.680^5.600^2^3.874^6.253^~2, 3~^~04/01/2015~ -~21150~^~410~^0.655^2^^~1~^~A~^^^1^0.650^0.660^1^^^^~04/01/2015~ -~21150~^~415~^0.282^3^0.023^~1~^~A~^^^1^0.236^0.310^2^0.182^0.383^~2, 3~^~04/01/2015~ -~21150~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~606~^0.505^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21150~^~610~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21150~^~612~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~21150~^~613~^0.372^3^0.014^~1~^~A~^^^1^0.346^0.395^2^0.311^0.433^~2, 3~^~04/01/2015~ -~21150~^~614~^0.106^3^0.003^~1~^~A~^^^1^0.101^0.111^2^0.094^0.118^~2, 3~^~04/01/2015~ -~21150~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2015~ -~21150~^~617~^0.564^3^0.031^~1~^~AS~^^^1^0.515^0.620^2^0.432^0.695^~2, 3~^~04/01/2015~ -~21150~^~618~^0.724^3^0.007^~1~^~AS~^^^1^0.715^0.737^2^0.696^0.752^~2, 3~^~04/01/2015~ -~21150~^~619~^0.063^3^0.001^~1~^~AS~^^^1^0.062^0.064^2^0.060^0.065^~2, 3~^~04/01/2015~ -~21150~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~04/01/2015~ -~21150~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21150~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2015~ -~21150~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21150~^~626~^0.048^3^0.004^~1~^~AS~^^^1^0.042^0.054^2^0.033^0.063^~2, 3~^~04/01/2015~ -~21150~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~04/01/2015~ -~21150~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~630~^0.011^3^0.001^~1~^~AS~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~04/01/2015~ -~21150~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21150~^~645~^0.642^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~646~^0.831^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21150~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21150~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~663~^0.006^3^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.006^0.019^~2, 3~^~04/01/2015~ -~21150~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2015~ -~21150~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2015~ -~21150~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21150~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21150~^~673~^0.048^3^0.004^~1~^~A~^^^1^0.042^0.054^2^0.033^0.063^~2, 3~^~04/01/2015~ -~21150~^~674~^0.557^3^0.028^~1~^~A~^^^1^0.512^0.608^2^0.438^0.677^~2, 3~^~04/01/2015~ -~21150~^~675~^0.717^3^0.007^~1~^~A~^^^1^0.708^0.731^2^0.687^0.747^~2, 3~^~04/01/2015~ -~21150~^~676~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~04/01/2015~ -~21150~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21150~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21150~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2015~ -~21150~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21150~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~851~^0.061^3^0.001^~1~^~A~^^^1^0.060^0.062^2^0.058^0.063^~2, 3~^~04/01/2015~ -~21150~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~853~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2015~ -~21150~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21150~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~04/01/2015~ -~21151~^~312~^0.071^6^0.002^~1~^~A~^^^1^0.064^0.077^5^0.065^0.077^~2, 3~^~05/01/2015~ -~21151~^~315~^0.282^6^0.007^~1~^~A~^^^1^0.260^0.302^5^0.265^0.300^~2, 3~^~05/01/2015~ -~21151~^~404~^0.273^3^0.009^~1~^~A~^^^1^0.260^0.290^2^0.235^0.311^~2, 3~^~05/01/2015~ -~21151~^~405~^0.213^3^0.012^~1~^~A~^^^1^0.190^0.230^2^0.161^0.265^~2, 3~^~05/01/2015~ -~21151~^~406~^5.063^3^0.276^~1~^~A~^^^1^4.680^5.600^2^3.874^6.253^~2, 3~^~05/01/2015~ -~21151~^~410~^0.655^2^^~1~^~A~^^^1^0.650^0.660^1^^^^~05/01/2015~ -~21151~^~415~^0.282^3^0.023^~1~^~A~^^^1^0.236^0.310^2^0.182^0.383^~2, 3~^~05/01/2015~ -~21151~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~606~^0.505^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21151~^~610~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21151~^~612~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2015~ -~21151~^~613~^0.372^3^0.014^~1~^~A~^^^1^0.346^0.395^2^0.311^0.433^~2, 3~^~05/01/2015~ -~21151~^~614~^0.106^3^0.003^~1~^~A~^^^1^0.101^0.111^2^0.094^0.118^~2, 3~^~05/01/2015~ -~21151~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21151~^~617~^0.564^3^0.031^~1~^~AS~^^^1^0.515^0.620^2^0.432^0.695^~2, 3~^~05/01/2015~ -~21151~^~618~^0.724^3^0.007^~1~^~AS~^^^1^0.715^0.737^2^0.696^0.752^~2, 3~^~05/01/2015~ -~21151~^~619~^0.063^3^0.001^~1~^~AS~^^^1^0.062^0.064^2^0.060^0.065^~2, 3~^~05/01/2015~ -~21151~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~05/01/2015~ -~21151~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21151~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21151~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21151~^~626~^0.048^3^0.004^~1~^~AS~^^^1^0.042^0.054^2^0.033^0.063^~2, 3~^~05/01/2015~ -~21151~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~05/01/2015~ -~21151~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~630~^0.011^3^0.001^~1~^~AS~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~05/01/2015~ -~21151~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21151~^~645~^0.642^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~646~^0.831^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21151~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21151~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~663~^0.006^3^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.006^0.019^~2, 3~^~05/01/2015~ -~21151~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2015~ -~21151~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2015~ -~21151~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21151~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21151~^~673~^0.048^3^0.004^~1~^~A~^^^1^0.042^0.054^2^0.033^0.063^~2, 3~^~05/01/2015~ -~21151~^~674~^0.557^3^0.028^~1~^~A~^^^1^0.512^0.608^2^0.438^0.677^~2, 3~^~05/01/2015~ -~21151~^~675~^0.717^3^0.007^~1~^~A~^^^1^0.708^0.731^2^0.687^0.747^~2, 3~^~05/01/2015~ -~21151~^~676~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~05/01/2015~ -~21151~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21151~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21151~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~05/01/2015~ -~21151~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21151~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~851~^0.061^3^0.001^~1~^~A~^^^1^0.060^0.062^2^0.058^0.063^~2, 3~^~05/01/2015~ -~21151~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~853~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~05/01/2015~ -~21151~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21151~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21152~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.076^0.086^5^0.076^0.085^~2, 3~^~04/01/2015~ -~21152~^~315~^0.278^6^0.010^~1~^~A~^^^1^0.250^0.309^5^0.252^0.304^~2, 3~^~04/01/2015~ -~21152~^~404~^0.277^3^0.012^~1~^~A~^^^1^0.260^0.300^2^0.225^0.328^~2, 3~^~04/01/2015~ -~21152~^~405~^0.240^3^0.012^~1~^~A~^^^1^0.220^0.260^2^0.190^0.290^~2, 3~^~04/01/2015~ -~21152~^~406~^4.507^3^0.165^~1~^~A~^^^1^4.210^4.780^2^3.797^5.216^~2, 3~^~04/01/2015~ -~21152~^~410~^0.445^2^^~1~^~A~^^^1^0.430^0.460^1^^^^~04/01/2015~ -~21152~^~415~^0.222^3^0.010^~1~^~A~^^^1^0.202^0.234^2^0.179^0.265^~2, 3~^~04/01/2015~ -~21152~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~606~^0.570^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21152~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21152~^~612~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~2, 3~^~04/01/2015~ -~21152~^~613~^0.376^3^0.009^~1~^~A~^^^1^0.357^0.385^2^0.335^0.416^~2, 3~^~04/01/2015~ -~21152~^~614~^0.153^3^0.001^~1~^~A~^^^1^0.151^0.155^2^0.148^0.159^~2, 3~^~04/01/2015~ -~21152~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2015~ -~21152~^~617~^0.568^3^0.016^~1~^~AS~^^^1^0.542^0.596^2^0.500^0.635^~2, 3~^~04/01/2015~ -~21152~^~618~^0.744^3^0.021^~1~^~AS~^^^1^0.705^0.778^2^0.653^0.836^~2, 3~^~04/01/2015~ -~21152~^~619~^0.069^3^0.003^~1~^~AS~^^^1^0.063^0.072^2^0.056^0.082^~2, 3~^~04/01/2015~ -~21152~^~620~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~04/01/2015~ -~21152~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21152~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2015~ -~21152~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21152~^~626~^0.030^3^0.001^~1~^~AS~^^^1^0.028^0.032^2^0.025^0.035^~2, 3~^~04/01/2015~ -~21152~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~628~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2015~ -~21152~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2015~ -~21152~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2015~ -~21152~^~631~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2015~ -~21152~^~645~^0.615^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21152~^~653~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2015~ -~21152~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21152~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21152~^~663~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.025^2^0.018^0.027^~2, 3~^~04/01/2015~ -~21152~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~665~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.012^~2, 3~^~04/01/2015~ -~21152~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21152~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21152~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21152~^~673~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.033^~2, 3~^~04/01/2015~ -~21152~^~674~^0.545^3^0.016^~1~^~A~^^^1^0.520^0.574^2^0.477^0.613^~2, 3~^~04/01/2015~ -~21152~^~675~^0.734^3^0.021^~1~^~A~^^^1^0.695^0.766^2^0.645^0.824^~2, 3~^~04/01/2015~ -~21152~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21152~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2015~ -~21152~^~689~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~04/01/2015~ -~21152~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21152~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~851~^0.067^3^0.003^~1~^~A~^^^1^0.061^0.070^2^0.054^0.079^~2, 3~^~04/01/2015~ -~21152~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2015~ -~21152~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21152~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2015~ -~21153~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.076^0.086^5^0.076^0.085^~2, 3~^~05/01/2015~ -~21153~^~315~^0.278^6^0.010^~1~^~A~^^^1^0.250^0.309^5^0.252^0.304^~2, 3~^~05/01/2015~ -~21153~^~404~^0.277^3^0.012^~1~^~A~^^^1^0.260^0.300^2^0.225^0.328^~2, 3~^~05/01/2015~ -~21153~^~405~^0.240^3^0.012^~1~^~A~^^^1^0.220^0.260^2^0.190^0.290^~2, 3~^~05/01/2015~ -~21153~^~406~^4.507^3^0.165^~1~^~A~^^^1^4.210^4.780^2^3.797^5.216^~2, 3~^~05/01/2015~ -~21153~^~410~^0.445^2^^~1~^~A~^^^1^0.430^0.460^1^^^^~05/01/2015~ -~21153~^~415~^0.222^3^0.010^~1~^~A~^^^1^0.202^0.234^2^0.179^0.265^~2, 3~^~05/01/2015~ -~21153~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~606~^0.570^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21153~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21153~^~612~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~2, 3~^~05/01/2015~ -~21153~^~613~^0.376^3^0.009^~1~^~A~^^^1^0.357^0.385^2^0.335^0.416^~2, 3~^~05/01/2015~ -~21153~^~614~^0.153^3^0.001^~1~^~A~^^^1^0.151^0.155^2^0.148^0.159^~2, 3~^~05/01/2015~ -~21153~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21153~^~617~^0.568^3^0.016^~1~^~AS~^^^1^0.542^0.596^2^0.500^0.635^~2, 3~^~05/01/2015~ -~21153~^~618~^0.744^3^0.021^~1~^~AS~^^^1^0.705^0.778^2^0.653^0.836^~2, 3~^~05/01/2015~ -~21153~^~619~^0.069^3^0.003^~1~^~AS~^^^1^0.063^0.072^2^0.056^0.082^~2, 3~^~05/01/2015~ -~21153~^~620~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~05/01/2015~ -~21153~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21153~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2015~ -~21153~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21153~^~626~^0.030^3^0.001^~1~^~AS~^^^1^0.028^0.032^2^0.025^0.035^~2, 3~^~05/01/2015~ -~21153~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~628~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~05/01/2015~ -~21153~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2015~ -~21153~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~21153~^~631~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21153~^~645~^0.615^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21153~^~653~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~05/01/2015~ -~21153~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21153~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21153~^~663~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.025^2^0.018^0.027^~2, 3~^~05/01/2015~ -~21153~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~665~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.012^~2, 3~^~05/01/2015~ -~21153~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21153~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21153~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21153~^~673~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.033^~2, 3~^~05/01/2015~ -~21153~^~674~^0.545^3^0.016^~1~^~A~^^^1^0.520^0.574^2^0.477^0.613^~2, 3~^~05/01/2015~ -~21153~^~675~^0.734^3^0.021^~1~^~A~^^^1^0.695^0.766^2^0.645^0.824^~2, 3~^~05/01/2015~ -~21153~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21153~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21153~^~689~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~05/01/2015~ -~21153~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21153~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~851~^0.067^3^0.003^~1~^~A~^^^1^0.061^0.070^2^0.054^0.079^~2, 3~^~05/01/2015~ -~21153~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~05/01/2015~ -~21153~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21153~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~05/01/2015~ -~21154~^~312~^0.076^6^0.002^~1~^~A~^^^1^0.070^0.080^5^0.071^0.080^~2, 3~^~05/01/2015~ -~21154~^~315~^0.282^6^0.012^~1~^~A~^^^1^0.257^0.323^5^0.253^0.312^~2, 3~^~05/01/2015~ -~21154~^~404~^1.157^3^0.109^~1~^~A~^^^1^0.940^1.290^2^0.686^1.627^~2, 3~^~05/01/2015~ -~21154~^~405~^0.230^3^0.010^~1~^~A~^^^1^0.210^0.240^2^0.187^0.273^~2, 3~^~05/01/2015~ -~21154~^~406~^5.210^3^0.175^~1~^~A~^^^1^4.860^5.400^2^4.456^5.964^~2, 3~^~05/01/2015~ -~21154~^~410~^0.650^2^^~1~^~A~^^^1^0.630^0.670^1^^^^~05/01/2015~ -~21154~^~415~^0.259^3^0.025^~1~^~A~^^^1^0.227^0.307^2^0.153^0.364^~2, 3~^~05/01/2015~ -~21154~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~606~^0.724^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21154~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21154~^~612~^0.010^3^0.002^~1~^~A~^^^1^0.008^0.013^2^0.003^0.017^~2, 3~^~05/01/2015~ -~21154~^~613~^0.549^3^0.068^~1~^~A~^^^1^0.414^0.624^2^0.258^0.841^~2, 3~^~05/01/2015~ -~21154~^~614~^0.145^3^0.016^~1~^~A~^^^1^0.112^0.162^2^0.074^0.215^~2, 3~^~05/01/2015~ -~21154~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2015~ -~21154~^~617~^0.817^3^0.110^~1~^~AS~^^^1^0.597^0.928^2^0.344^1.289^~2, 3~^~05/01/2015~ -~21154~^~618~^0.841^3^0.060^~1~^~AS~^^^1^0.724^0.924^2^0.582^1.099^~2, 3~^~05/01/2015~ -~21154~^~619~^0.068^3^0.004^~1~^~AS~^^^1^0.063^0.076^2^0.052^0.085^~2, 3~^~05/01/2015~ -~21154~^~620~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.020^2^0.015^0.022^~2, 3~^~05/01/2015~ -~21154~^~621~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2015~ -~21154~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.010^~2, 3~^~05/01/2015~ -~21154~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21154~^~626~^0.094^3^0.015^~1~^~AS~^^^1^0.063^0.109^2^0.028^0.159^~2, 3~^~05/01/2015~ -~21154~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~628~^0.016^3^0.002^~1~^~A~^^^1^0.011^0.018^2^0.006^0.026^~2, 3~^~05/01/2015~ -~21154~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21154~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~21154~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~645~^0.932^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~646~^0.952^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~653~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21154~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21154~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~663~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.001^0.014^~2, 3~^~05/01/2015~ -~21154~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~665~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21154~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21154~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21154~^~673~^0.094^3^0.015^~1~^~A~^^^1^0.063^0.109^2^0.028^0.159^~2, 3~^~05/01/2015~ -~21154~^~674~^0.809^3^0.108^~1~^~A~^^^1^0.592^0.919^2^0.343^1.275^~2, 3~^~05/01/2015~ -~21154~^~675~^0.831^3^0.059^~1~^~A~^^^1^0.716^0.914^2^0.576^1.087^~2, 3~^~05/01/2015~ -~21154~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21154~^~687~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2015~ -~21154~^~689~^0.008^3^0.002^~1~^~AS~^^^1^0.004^0.010^2^0.000^0.016^~2, 3~^~05/01/2015~ -~21154~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21154~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~851~^0.066^3^0.004^~1~^~A~^^^1^0.061^0.073^2^0.051^0.081^~2, 3~^~05/01/2015~ -~21154~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21154~^~853~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.009^2^0.000^0.013^~2, 3~^~05/01/2015~ -~21154~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21154~^~858~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2015~ -~21155~^~312~^0.075^6^0.002^~1~^~A~^^^1^0.068^0.080^5^0.070^0.079^~2, 3~^~05/01/2015~ -~21155~^~315~^0.297^6^0.014^~1~^~A~^^^1^0.269^0.350^5^0.262^0.332^~2, 3~^~05/01/2015~ -~21155~^~404~^0.270^3^0.015^~1~^~A~^^^1^0.250^0.300^2^0.204^0.336^~2, 3~^~05/01/2015~ -~21155~^~405~^0.227^3^0.013^~1~^~A~^^^1^0.200^0.240^2^0.169^0.284^~2, 3~^~05/01/2015~ -~21155~^~406~^4.617^3^0.197^~1~^~A~^^^1^4.350^5.000^2^3.771^5.462^~2, 3~^~05/01/2015~ -~21155~^~410~^0.425^2^^~1~^~A~^^^1^0.420^0.430^1^^^^~05/01/2015~ -~21155~^~415~^0.176^3^0.014^~1~^~A~^^^1^0.150^0.198^2^0.116^0.236^~2, 3~^~05/01/2015~ -~21155~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~606~^0.476^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21155~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21155~^~612~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~05/01/2015~ -~21155~^~613~^0.339^3^0.017^~1~^~A~^^^1^0.322^0.372^2^0.267^0.410^~2, 3~^~05/01/2015~ -~21155~^~614~^0.107^3^0.006^~1~^~A~^^^1^0.100^0.118^2^0.083^0.131^~2, 3~^~05/01/2015~ -~21155~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21155~^~617~^0.486^3^0.030^~1~^~AS~^^^1^0.455^0.546^2^0.357^0.615^~2, 3~^~05/01/2015~ -~21155~^~618~^0.919^3^0.027^~1~^~AS~^^^1^0.886^0.972^2^0.803^1.034^~2, 3~^~05/01/2015~ -~21155~^~619~^0.088^3^0.001^~1~^~AS~^^^1^0.087^0.089^2^0.085^0.091^~2, 3~^~05/01/2015~ -~21155~^~620~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~05/01/2015~ -~21155~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21155~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21155~^~626~^0.020^3^0.003^~1~^~AS~^^^1^0.016^0.025^2^0.009^0.031^~2, 3~^~05/01/2015~ -~21155~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~628~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~05/01/2015~ -~21155~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21155~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~21155~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~645~^0.521^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~646~^1.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21155~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21155~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21155~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~663~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~05/01/2015~ -~21155~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~665~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~05/01/2015~ -~21155~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21155~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21155~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21155~^~673~^0.020^3^0.003^~1~^~A~^^^1^0.016^0.025^2^0.009^0.031^~2, 3~^~05/01/2015~ -~21155~^~674~^0.478^3^0.030^~1~^~A~^^^1^0.447^0.539^2^0.347^0.609^~2, 3~^~05/01/2015~ -~21155~^~675~^0.908^3^0.027^~1~^~A~^^^1^0.872^0.961^2^0.791^1.025^~2, 3~^~05/01/2015~ -~21155~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21155~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~689~^0.002^3^0.001^~1~^~AS~^^^1^0.001^0.004^2^-0.001^0.006^~2, 3~^~05/01/2015~ -~21155~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21155~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~851~^0.084^3^0.001^~1~^~A~^^^1^0.083^0.085^2^0.081^0.087^~2, 3~^~05/01/2015~ -~21155~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~853~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~05/01/2015~ -~21155~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21155~^~858~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2015~ -~21156~^~312~^0.082^6^0.001^~1~^~A~^^^1^0.079^0.084^5^0.079^0.084^~2, 3~^~05/01/2015~ -~21156~^~315~^0.302^6^0.013^~1~^~A~^^^1^0.270^0.346^5^0.269^0.335^~2, 3~^~05/01/2015~ -~21156~^~404~^0.377^3^0.007^~1~^~A~^^^1^0.370^0.390^2^0.348^0.405^~2, 3~^~05/01/2015~ -~21156~^~405~^0.243^3^0.018^~1~^~A~^^^1^0.210^0.270^2^0.167^0.319^~2, 3~^~05/01/2015~ -~21156~^~406~^4.180^3^0.023^~1~^~A~^^^1^4.140^4.220^2^4.081^4.279^~2, 3~^~05/01/2015~ -~21156~^~410~^0.435^2^^~1~^~A~^^^1^0.420^0.450^1^^^^~05/01/2015~ -~21156~^~415~^0.174^3^0.005^~1~^~A~^^^1^0.165^0.181^2^0.154^0.194^~2, 3~^~05/01/2015~ -~21156~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~606~^0.626^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2015~ -~21156~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2015~ -~21156~^~612~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~05/01/2015~ -~21156~^~613~^0.428^3^0.014^~1~^~A~^^^1^0.400^0.449^2^0.365^0.490^~2, 3~^~05/01/2015~ -~21156~^~614~^0.162^3^0.009^~1~^~A~^^^1^0.146^0.177^2^0.123^0.201^~2, 3~^~05/01/2015~ -~21156~^~615~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2015~ -~21156~^~617~^0.706^3^0.017^~1~^~AS~^^^1^0.674^0.731^2^0.634^0.779^~2, 3~^~05/01/2015~ -~21156~^~618~^0.735^3^0.026^~1~^~AS~^^^1^0.687^0.775^2^0.624^0.846^~2, 3~^~05/01/2015~ -~21156~^~619~^0.065^3^0.004^~1~^~AS~^^^1^0.059^0.072^2^0.048^0.081^~2, 3~^~05/01/2015~ -~21156~^~620~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~05/01/2015~ -~21156~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21156~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21156~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~626~^0.039^3^0.002^~1~^~AS~^^^1^0.035^0.042^2^0.030^0.047^~2, 3~^~05/01/2015~ -~21156~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~05/01/2015~ -~21156~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~21156~^~631~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21156~^~645~^0.763^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~646~^0.831^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21156~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21156~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~663~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21156~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~665~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2015~ -~21156~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21156~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21156~^~672~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2015~ -~21156~^~673~^0.039^3^0.002^~1~^~A~^^^1^0.035^0.042^2^0.030^0.047^~2, 3~^~05/01/2015~ -~21156~^~674~^0.701^3^0.017^~1~^~A~^^^1^0.668^0.726^2^0.627^0.775^~2, 3~^~05/01/2015~ -~21156~^~675~^0.726^3^0.026^~1~^~A~^^^1^0.677^0.764^2^0.615^0.836^~2, 3~^~05/01/2015~ -~21156~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21156~^~687~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2015~ -~21156~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~05/01/2015~ -~21156~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21156~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~851~^0.062^3^0.004^~1~^~A~^^^1^0.057^0.069^2^0.047^0.077^~2, 3~^~05/01/2015~ -~21156~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2015~ -~21156~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21156~^~858~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21157~^~312~^0.133^6^0.002^~1~^~A~^^^1^0.125^0.140^5^0.127^0.139^~2, 3~^~04/01/2015~ -~21157~^~315~^0.426^6^0.015^~1~^~A~^^^1^0.387^0.474^5^0.388^0.463^~2, 3~^~04/01/2015~ -~21157~^~404~^0.250^3^0.025^~1~^~A~^^^1^0.220^0.300^2^0.142^0.358^~2, 3~^~04/01/2015~ -~21157~^~405~^0.253^3^0.023^~1~^~A~^^^1^0.210^0.290^2^0.153^0.354^~2, 3~^~04/01/2015~ -~21157~^~406~^3.547^3^0.365^~1~^~A~^^^1^3.100^4.270^2^1.976^5.117^~2, 3~^~04/01/2015~ -~21157~^~410~^0.425^2^^~1~^~A~^^^1^0.420^0.430^1^^^^~04/01/2015~ -~21157~^~415~^0.132^3^0.015^~1~^~A~^^^1^0.108^0.161^2^0.066^0.199^~2, 3~^~04/01/2015~ -~21157~^~605~^0.421^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~606~^3.124^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~610~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2015~ -~21157~^~611~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2015~ -~21157~^~612~^0.215^3^0.006^~1~^~A~^^^1^0.204^0.224^2^0.189^0.240^~2, 3~^~04/01/2015~ -~21157~^~613~^1.775^3^0.054^~1~^~A~^^^1^1.717^1.883^2^1.542^2.008^~2, 3~^~04/01/2015~ -~21157~^~614~^0.980^3^0.035^~1~^~A~^^^1^0.912^1.026^2^0.831^1.129^~2, 3~^~04/01/2015~ -~21157~^~615~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2015~ -~21157~^~617~^3.148^3^0.094^~1~^~AS~^^^1^3.046^3.335^2^2.745^3.551^~2, 3~^~04/01/2015~ -~21157~^~618~^0.998^3^0.054^~1~^~AS~^^^1^0.895^1.078^2^0.766^1.229^~2, 3~^~04/01/2015~ -~21157~^~619~^0.101^3^0.005^~1~^~AS~^^^1^0.091^0.108^2^0.079^0.122^~2, 3~^~04/01/2015~ -~21157~^~620~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2015~ -~21157~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~624~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~21157~^~625~^0.062^3^0.002^~1~^~A~^^^1^0.059^0.067^2^0.052^0.073^~2, 3~^~04/01/2015~ -~21157~^~626~^0.275^3^0.008^~1~^~AS~^^^1^0.262^0.288^2^0.242^0.307^~2, 3~^~04/01/2015~ -~21157~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~628~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.033^~2, 3~^~04/01/2015~ -~21157~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~04/01/2015~ -~21157~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21157~^~645~^3.573^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~646~^1.125^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~652~^0.035^3^0.002^~1~^~A~^^^1^0.031^0.037^2^0.026^0.044^~2, 3~^~04/01/2015~ -~21157~^~653~^0.088^3^0.003^~1~^~A~^^^1^0.082^0.091^2^0.075^0.100^~2, 3~^~04/01/2015~ -~21157~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2015~ -~21157~^~662~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.014^0.025^~2, 3~^~04/01/2015~ -~21157~^~663~^0.364^3^0.014^~1~^~A~^^^1^0.336^0.379^2^0.304^0.424^~2, 3~^~04/01/2015~ -~21157~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~665~^0.037^3^0.002^~1~^~A~^^^1^0.034^0.040^2^0.030^0.045^~2, 3~^~04/01/2015~ -~21157~^~670~^0.040^3^0.001^~1~^~A~^^^1^0.038^0.042^2^0.034^0.045^~2, 3~^~04/01/2015~ -~21157~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21157~^~673~^0.255^3^0.008^~1~^~A~^^^1^0.243^0.270^2^0.221^0.289^~2, 3~^~04/01/2015~ -~21157~^~674~^2.784^3^0.088^~1~^~A~^^^1^2.669^2.956^2^2.407^3.161^~2, 3~^~04/01/2015~ -~21157~^~675~^0.921^3^0.052^~1~^~A~^^^1^0.822^0.996^2^0.699^1.142^~2, 3~^~04/01/2015~ -~21157~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21157~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2015~ -~21157~^~687~^0.059^3^0.002^~1~^~A~^^^1^0.055^0.063^2^0.048^0.069^~2, 3~^~04/01/2015~ -~21157~^~689~^0.006^3^0.001^~1~^~AS~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~04/01/2015~ -~21157~^~693~^0.384^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21157~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21157~^~851~^0.096^3^0.005^~1~^~A~^^^1^0.088^0.104^2^0.076^0.116^~2, 3~^~04/01/2015~ -~21157~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21157~^~853~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.001^0.010^~2, 3~^~04/01/2015~ -~21157~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21157~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~04/01/2015~ -~21158~^~312~^0.133^6^0.002^~1~^~A~^^^1^0.125^0.140^5^0.127^0.139^~2, 3~^~05/01/2015~ -~21158~^~315~^0.426^6^0.015^~1~^~A~^^^1^0.387^0.474^5^0.388^0.463^~2, 3~^~05/01/2015~ -~21158~^~404~^0.250^3^0.025^~1~^~A~^^^1^0.220^0.300^2^0.142^0.358^~2, 3~^~05/01/2015~ -~21158~^~405~^0.253^3^0.023^~1~^~A~^^^1^0.210^0.290^2^0.153^0.354^~2, 3~^~05/01/2015~ -~21158~^~406~^3.547^3^0.365^~1~^~A~^^^1^3.100^4.270^2^1.976^5.117^~2, 3~^~05/01/2015~ -~21158~^~410~^0.425^2^^~1~^~A~^^^1^0.420^0.430^1^^^^~05/01/2015~ -~21158~^~415~^0.132^3^0.015^~1~^~A~^^^1^0.108^0.161^2^0.066^0.199^~2, 3~^~05/01/2015~ -~21158~^~605~^0.421^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~606~^3.124^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~610~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2015~ -~21158~^~611~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21158~^~612~^0.215^3^0.006^~1~^~A~^^^1^0.204^0.224^2^0.189^0.240^~2, 3~^~05/01/2015~ -~21158~^~613~^1.775^3^0.054^~1~^~A~^^^1^1.717^1.883^2^1.542^2.008^~2, 3~^~05/01/2015~ -~21158~^~614~^0.980^3^0.035^~1~^~A~^^^1^0.912^1.026^2^0.831^1.129^~2, 3~^~05/01/2015~ -~21158~^~615~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~05/01/2015~ -~21158~^~617~^3.148^3^0.094^~1~^~AS~^^^1^3.046^3.335^2^2.745^3.551^~2, 3~^~05/01/2015~ -~21158~^~618~^0.998^3^0.054^~1~^~AS~^^^1^0.895^1.078^2^0.766^1.229^~2, 3~^~05/01/2015~ -~21158~^~619~^0.101^3^0.005^~1~^~AS~^^^1^0.091^0.108^2^0.079^0.122^~2, 3~^~05/01/2015~ -~21158~^~620~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~05/01/2015~ -~21158~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~624~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2015~ -~21158~^~625~^0.062^3^0.002^~1~^~A~^^^1^0.059^0.067^2^0.052^0.073^~2, 3~^~05/01/2015~ -~21158~^~626~^0.275^3^0.008^~1~^~AS~^^^1^0.262^0.288^2^0.242^0.307^~2, 3~^~05/01/2015~ -~21158~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~628~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.033^~2, 3~^~05/01/2015~ -~21158~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~05/01/2015~ -~21158~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21158~^~645~^3.573^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~646~^1.125^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~652~^0.035^3^0.002^~1~^~A~^^^1^0.031^0.037^2^0.026^0.044^~2, 3~^~05/01/2015~ -~21158~^~653~^0.088^3^0.003^~1~^~A~^^^1^0.082^0.091^2^0.075^0.100^~2, 3~^~05/01/2015~ -~21158~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2015~ -~21158~^~662~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.014^0.025^~2, 3~^~05/01/2015~ -~21158~^~663~^0.364^3^0.014^~1~^~A~^^^1^0.336^0.379^2^0.304^0.424^~2, 3~^~05/01/2015~ -~21158~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~665~^0.037^3^0.002^~1~^~A~^^^1^0.034^0.040^2^0.030^0.045^~2, 3~^~05/01/2015~ -~21158~^~670~^0.040^3^0.001^~1~^~A~^^^1^0.038^0.042^2^0.034^0.045^~2, 3~^~05/01/2015~ -~21158~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21158~^~673~^0.255^3^0.008^~1~^~A~^^^1^0.243^0.270^2^0.221^0.289^~2, 3~^~05/01/2015~ -~21158~^~674~^2.784^3^0.088^~1~^~A~^^^1^2.669^2.956^2^2.407^3.161^~2, 3~^~05/01/2015~ -~21158~^~675~^0.921^3^0.052^~1~^~A~^^^1^0.822^0.996^2^0.699^1.142^~2, 3~^~05/01/2015~ -~21158~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21158~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2015~ -~21158~^~687~^0.059^3^0.002^~1~^~A~^^^1^0.055^0.063^2^0.048^0.069^~2, 3~^~05/01/2015~ -~21158~^~689~^0.006^3^0.001^~1~^~AS~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~05/01/2015~ -~21158~^~693~^0.384^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21158~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21158~^~851~^0.096^3^0.005^~1~^~A~^^^1^0.088^0.104^2^0.076^0.116^~2, 3~^~05/01/2015~ -~21158~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21158~^~853~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.001^0.010^~2, 3~^~05/01/2015~ -~21158~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21158~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~05/01/2015~ -~21159~^~312~^0.086^6^0.001^~1~^~A~^^^1^0.083^0.090^5^0.082^0.089^~2, 3~^~04/01/2015~ -~21159~^~315~^0.280^6^0.007^~1~^~A~^^^1^0.262^0.303^5^0.261^0.298^~2, 3~^~04/01/2015~ -~21159~^~404~^0.253^3^0.012^~1~^~A~^^^1^0.230^0.270^2^0.202^0.305^~2, 3~^~04/01/2015~ -~21159~^~405~^0.263^3^0.007^~1~^~A~^^^1^0.250^0.270^2^0.235^0.292^~2, 3~^~04/01/2015~ -~21159~^~406~^3.583^3^0.220^~1~^~A~^^^1^3.220^3.980^2^2.637^4.530^~2, 3~^~04/01/2015~ -~21159~^~410~^0.440^2^^~1~^~A~^^^1^0.430^0.450^1^^^^~04/01/2015~ -~21159~^~415~^0.194^3^0.024^~1~^~A~^^^1^0.147^0.227^2^0.090^0.298^~2, 3~^~04/01/2015~ -~21159~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~606~^2.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~607~^0.031^3^0.006^~1~^~A~^^^1^0.020^0.038^2^0.007^0.056^~2, 3~^~04/01/2015~ -~21159~^~608~^0.021^3^0.005^~1~^~A~^^^1^0.012^0.026^2^0.002^0.040^~2, 3~^~04/01/2015~ -~21159~^~609~^0.012^3^0.003^~1~^~A~^^^1^0.006^0.015^2^-0.001^0.024^~2, 3~^~04/01/2015~ -~21159~^~610~^0.031^3^0.007^~1~^~A~^^^1^0.018^0.039^2^0.003^0.059^~2, 3~^~04/01/2015~ -~21159~^~611~^0.039^3^0.008^~1~^~A~^^^1^0.023^0.049^2^0.004^0.075^~2, 3~^~04/01/2015~ -~21159~^~612~^0.205^3^0.025^~1~^~A~^^^1^0.155^0.237^2^0.096^0.314^~2, 3~^~04/01/2015~ -~21159~^~613~^1.134^3^0.063^~1~^~A~^^^1^1.017^1.232^2^0.864^1.404^~2, 3~^~04/01/2015~ -~21159~^~614~^0.480^3^0.024^~1~^~A~^^^1^0.441^0.523^2^0.377^0.582^~2, 3~^~04/01/2015~ -~21159~^~615~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~21159~^~617~^1.536^3^0.036^~1~^~AS~^^^1^1.493^1.608^2^1.380^1.692^~2, 3~^~04/01/2015~ -~21159~^~618~^0.733^3^0.011^~1~^~AS~^^^1^0.716^0.754^2^0.684^0.781^~2, 3~^~04/01/2015~ -~21159~^~619~^0.070^3^0.000^~1~^~AS~^^^1^0.069^0.070^2^0.068^0.071^~2, 3~^~04/01/2015~ -~21159~^~620~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.021^2^0.012^0.026^~2, 3~^~04/01/2015~ -~21159~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21159~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2015~ -~21159~^~625~^0.033^3^0.002^~1~^~A~^^^1^0.030^0.037^2^0.025^0.042^~2, 3~^~04/01/2015~ -~21159~^~626~^0.126^3^0.007^~1~^~AS~^^^1^0.113^0.137^2^0.096^0.156^~2, 3~^~04/01/2015~ -~21159~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~628~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~04/01/2015~ -~21159~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21159~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2015~ -~21159~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2015~ -~21159~^~645~^1.736^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~652~^0.025^3^0.002^~1~^~A~^^^1^0.021^0.029^2^0.015^0.035^~2, 3~^~04/01/2015~ -~21159~^~653~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.040^2^0.031^0.043^~2, 3~^~04/01/2015~ -~21159~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21159~^~662~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.019^~1, 2, 3~^~04/01/2015~ -~21159~^~663~^0.154^3^0.006^~1~^~A~^^^1^0.146^0.167^2^0.127^0.182^~2, 3~^~04/01/2015~ -~21159~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~665~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.023^2^0.021^0.024^~2, 3~^~04/01/2015~ -~21159~^~670~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~04/01/2015~ -~21159~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21159~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21159~^~673~^0.120^3^0.004^~1~^~A~^^^1^0.113^0.127^2^0.102^0.137^~2, 3~^~04/01/2015~ -~21159~^~674~^1.382^3^0.030^~1~^~A~^^^1^1.343^1.441^2^1.252^1.511^~2, 3~^~04/01/2015~ -~21159~^~675~^0.693^3^0.012^~1~^~A~^^^1^0.675^0.715^2^0.643^0.743^~2, 3~^~04/01/2015~ -~21159~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~685~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2015~ -~21159~^~687~^0.025^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.021^0.029^~2, 3~^~04/01/2015~ -~21159~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2015~ -~21159~^~693~^0.160^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21159~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~851~^0.067^3^0.001^~1~^~A~^^^1^0.066^0.069^2^0.063^0.071^~2, 3~^~04/01/2015~ -~21159~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21159~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2015~ -~21159~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21159~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~04/01/2015~ -~21160~^~312~^0.086^6^0.001^~1~^~A~^^^1^0.083^0.090^5^0.082^0.089^~2, 3~^~05/01/2015~ -~21160~^~315~^0.280^6^0.007^~1~^~A~^^^1^0.262^0.303^5^0.261^0.298^~2, 3~^~05/01/2015~ -~21160~^~404~^0.253^3^0.012^~1~^~A~^^^1^0.230^0.270^2^0.202^0.305^~2, 3~^~05/01/2015~ -~21160~^~405~^0.263^3^0.007^~1~^~A~^^^1^0.250^0.270^2^0.235^0.292^~2, 3~^~05/01/2015~ -~21160~^~406~^3.583^3^0.220^~1~^~A~^^^1^3.220^3.980^2^2.637^4.530^~2, 3~^~05/01/2015~ -~21160~^~410~^0.440^2^^~1~^~A~^^^1^0.430^0.450^1^^^^~05/01/2015~ -~21160~^~415~^0.194^3^0.024^~1~^~A~^^^1^0.147^0.227^2^0.090^0.298^~2, 3~^~05/01/2015~ -~21160~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~606~^2.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~607~^0.031^3^0.006^~1~^~A~^^^1^0.020^0.038^2^0.007^0.056^~2, 3~^~05/01/2015~ -~21160~^~608~^0.021^3^0.005^~1~^~A~^^^1^0.012^0.026^2^0.002^0.040^~2, 3~^~05/01/2015~ -~21160~^~609~^0.012^3^0.003^~1~^~A~^^^1^0.006^0.015^2^-0.001^0.024^~2, 3~^~05/01/2015~ -~21160~^~610~^0.031^3^0.007^~1~^~A~^^^1^0.018^0.039^2^0.003^0.059^~2, 3~^~05/01/2015~ -~21160~^~611~^0.039^3^0.008^~1~^~A~^^^1^0.023^0.049^2^0.004^0.075^~2, 3~^~05/01/2015~ -~21160~^~612~^0.205^3^0.025^~1~^~A~^^^1^0.155^0.237^2^0.096^0.314^~2, 3~^~05/01/2015~ -~21160~^~613~^1.134^3^0.063^~1~^~A~^^^1^1.017^1.232^2^0.864^1.404^~2, 3~^~05/01/2015~ -~21160~^~614~^0.480^3^0.024^~1~^~A~^^^1^0.441^0.523^2^0.377^0.582^~2, 3~^~05/01/2015~ -~21160~^~615~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2015~ -~21160~^~617~^1.536^3^0.036^~1~^~AS~^^^1^1.493^1.608^2^1.380^1.692^~2, 3~^~05/01/2015~ -~21160~^~618~^0.733^3^0.011^~1~^~AS~^^^1^0.716^0.754^2^0.684^0.781^~2, 3~^~05/01/2015~ -~21160~^~619~^0.070^3^0.000^~1~^~AS~^^^1^0.069^0.070^2^0.068^0.071^~2, 3~^~05/01/2015~ -~21160~^~620~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.021^2^0.012^0.026^~2, 3~^~05/01/2015~ -~21160~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21160~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21160~^~625~^0.033^3^0.002^~1~^~A~^^^1^0.030^0.037^2^0.025^0.042^~2, 3~^~05/01/2015~ -~21160~^~626~^0.126^3^0.007^~1~^~AS~^^^1^0.113^0.137^2^0.096^0.156^~2, 3~^~05/01/2015~ -~21160~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~628~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~05/01/2015~ -~21160~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21160~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2015~ -~21160~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21160~^~645~^1.736^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~646~^0.844^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~652~^0.025^3^0.002^~1~^~A~^^^1^0.021^0.029^2^0.015^0.035^~2, 3~^~05/01/2015~ -~21160~^~653~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.040^2^0.031^0.043^~2, 3~^~05/01/2015~ -~21160~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21160~^~662~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.019^~1, 2, 3~^~05/01/2015~ -~21160~^~663~^0.154^3^0.006^~1~^~A~^^^1^0.146^0.167^2^0.127^0.182^~2, 3~^~05/01/2015~ -~21160~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~665~^0.022^3^0.000^~1~^~A~^^^1^0.022^0.023^2^0.021^0.024^~2, 3~^~05/01/2015~ -~21160~^~670~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~05/01/2015~ -~21160~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21160~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21160~^~673~^0.120^3^0.004^~1~^~A~^^^1^0.113^0.127^2^0.102^0.137^~2, 3~^~05/01/2015~ -~21160~^~674~^1.382^3^0.030^~1~^~A~^^^1^1.343^1.441^2^1.252^1.511^~2, 3~^~05/01/2015~ -~21160~^~675~^0.693^3^0.012^~1~^~A~^^^1^0.675^0.715^2^0.643^0.743^~2, 3~^~05/01/2015~ -~21160~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~685~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2015~ -~21160~^~687~^0.025^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.021^0.029^~2, 3~^~05/01/2015~ -~21160~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.007^0.007^^^^~2, 3~^~05/01/2015~ -~21160~^~693~^0.160^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21160~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~851~^0.067^3^0.001^~1~^~A~^^^1^0.066^0.069^2^0.063^0.071^~2, 3~^~05/01/2015~ -~21160~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21160~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~05/01/2015~ -~21160~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21160~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~05/01/2015~ -~21161~^~312~^0.101^6^0.002^~1~^~A~^^^1^0.098^0.109^5^0.097^0.106^~2, 3~^~04/01/2015~ -~21161~^~315~^0.376^6^0.014^~1~^~A~^^^1^0.334^0.421^5^0.341^0.411^~2, 3~^~04/01/2015~ -~21161~^~404~^0.405^2^^~1~^~A~^^^1^0.400^0.410^1^^^^~04/01/2015~ -~21161~^~405~^0.280^3^0.010^~1~^~A~^^^1^0.260^0.290^2^0.237^0.323^~2, 3~^~04/01/2015~ -~21161~^~406~^4.850^3^0.070^~1~^~A~^^^1^4.720^4.960^2^4.549^5.151^~2, 3~^~04/01/2015~ -~21161~^~410~^0.435^2^^~1~^~A~^^^1^0.410^0.460^1^^^^~04/01/2015~ -~21161~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2015~ -~21161~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~606~^1.917^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21161~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21161~^~612~^0.060^3^0.002^~1~^~A~^^^1^0.057^0.063^2^0.053^0.068^~2, 3~^~04/01/2015~ -~21161~^~613~^1.254^3^0.014^~1~^~A~^^^1^1.227^1.272^2^1.195^1.312^~2, 3~^~04/01/2015~ -~21161~^~614~^0.554^3^0.025^~1~^~A~^^^1^0.525^0.604^2^0.447^0.662^~2, 3~^~04/01/2015~ -~21161~^~615~^0.013^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~04/01/2015~ -~21161~^~617~^2.180^3^0.033^~1~^~AS~^^^1^2.115^2.220^2^2.039^2.322^~2, 3~^~04/01/2015~ -~21161~^~618~^1.439^3^0.080^~1~^~AS~^^^1^1.284^1.551^2^1.095^1.784^~2, 3~^~04/01/2015~ -~21161~^~619~^0.105^3^0.002^~1~^~AS~^^^1^0.101^0.108^2^0.096^0.113^~2, 3~^~04/01/2015~ -~21161~^~620~^0.021^3^0.002^~1~^~A~^^^1^0.017^0.023^2^0.013^0.029^~2, 3~^~04/01/2015~ -~21161~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21161~^~624~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2015~ -~21161~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21161~^~626~^0.120^3^0.004^~1~^~AS~^^^1^0.112^0.126^2^0.102^0.138^~2, 3~^~04/01/2015~ -~21161~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~628~^0.042^3^0.002^~1~^~A~^^^1^0.039^0.047^2^0.031^0.053^~2, 3~^~04/01/2015~ -~21161~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21161~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~04/01/2015~ -~21161~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21161~^~645~^2.356^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~646~^1.617^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21161~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~04/01/2015~ -~21161~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21161~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21161~^~663~^0.021^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.014^0.028^~2, 3~^~04/01/2015~ -~21161~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~665~^0.010^3^0.002^~1~^~A~^^^1^0.007^0.012^2^0.003^0.016^~2, 3~^~04/01/2015~ -~21161~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~04/01/2015~ -~21161~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21161~^~672~^0.027^3^0.005^~1~^~A~^^^1^0.018^0.032^2^0.007^0.046^~2, 3~^~04/01/2015~ -~21161~^~673~^0.120^3^0.004^~1~^~A~^^^1^0.112^0.126^2^0.102^0.137^~2, 3~^~04/01/2015~ -~21161~^~674~^2.159^3^0.034^~1~^~A~^^^1^2.091^2.201^2^2.011^2.307^~2, 3~^~04/01/2015~ -~21161~^~675~^1.421^3^0.078^~1~^~A~^^^1^1.269^1.531^2^1.083^1.758^~2, 3~^~04/01/2015~ -~21161~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21161~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21161~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~04/01/2015~ -~21161~^~689~^0.011^3^0.002^~1~^~AS~^^^1^0.007^0.013^2^0.003^0.019^~2, 3~^~04/01/2015~ -~21161~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21161~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~851~^0.101^3^0.002^~1~^~A~^^^1^0.098^0.104^2^0.093^0.109^~2, 3~^~04/01/2015~ -~21161~^~852~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~04/01/2015~ -~21161~^~853~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~04/01/2015~ -~21161~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21161~^~858~^0.009^3^0.002^~1~^~A~^^^1^0.005^0.012^2^0.000^0.019^~2, 3~^~04/01/2015~ -~21162~^~312~^0.101^6^0.002^~1~^~A~^^^1^0.098^0.109^5^0.097^0.106^~2, 3~^~05/01/2015~ -~21162~^~315~^0.376^6^0.014^~1~^~A~^^^1^0.334^0.421^5^0.341^0.411^~2, 3~^~05/01/2015~ -~21162~^~404~^0.405^2^^~1~^~A~^^^1^0.400^0.410^1^^^^~05/01/2015~ -~21162~^~405~^0.280^3^0.010^~1~^~A~^^^1^0.260^0.290^2^0.237^0.323^~2, 3~^~05/01/2015~ -~21162~^~406~^4.850^3^0.070^~1~^~A~^^^1^4.720^4.960^2^4.549^5.151^~2, 3~^~05/01/2015~ -~21162~^~410~^0.435^2^^~1~^~A~^^^1^0.410^0.460^1^^^^~05/01/2015~ -~21162~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21162~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~606~^1.917^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21162~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21162~^~612~^0.060^3^0.002^~1~^~A~^^^1^0.057^0.063^2^0.053^0.068^~2, 3~^~05/01/2015~ -~21162~^~613~^1.254^3^0.014^~1~^~A~^^^1^1.227^1.272^2^1.195^1.312^~2, 3~^~05/01/2015~ -~21162~^~614~^0.554^3^0.025^~1~^~A~^^^1^0.525^0.604^2^0.447^0.662^~2, 3~^~05/01/2015~ -~21162~^~615~^0.013^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~05/01/2015~ -~21162~^~617~^2.180^3^0.033^~1~^~AS~^^^1^2.115^2.220^2^2.039^2.322^~2, 3~^~05/01/2015~ -~21162~^~618~^1.439^3^0.080^~1~^~AS~^^^1^1.284^1.551^2^1.095^1.784^~2, 3~^~05/01/2015~ -~21162~^~619~^0.105^3^0.002^~1~^~AS~^^^1^0.101^0.108^2^0.096^0.113^~2, 3~^~05/01/2015~ -~21162~^~620~^0.021^3^0.002^~1~^~A~^^^1^0.017^0.023^2^0.013^0.029^~2, 3~^~05/01/2015~ -~21162~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21162~^~624~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~05/01/2015~ -~21162~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21162~^~626~^0.120^3^0.004^~1~^~AS~^^^1^0.112^0.126^2^0.102^0.138^~2, 3~^~05/01/2015~ -~21162~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~628~^0.042^3^0.002^~1~^~A~^^^1^0.039^0.047^2^0.031^0.053^~2, 3~^~05/01/2015~ -~21162~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21162~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~05/01/2015~ -~21162~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21162~^~645~^2.356^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~646~^1.617^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21162~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~05/01/2015~ -~21162~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21162~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21162~^~663~^0.021^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.014^0.028^~2, 3~^~05/01/2015~ -~21162~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~665~^0.010^3^0.002^~1~^~A~^^^1^0.007^0.012^2^0.003^0.016^~2, 3~^~05/01/2015~ -~21162~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21162~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21162~^~672~^0.027^3^0.005^~1~^~A~^^^1^0.018^0.032^2^0.007^0.046^~2, 3~^~05/01/2015~ -~21162~^~673~^0.120^3^0.004^~1~^~A~^^^1^0.112^0.126^2^0.102^0.137^~2, 3~^~05/01/2015~ -~21162~^~674~^2.159^3^0.034^~1~^~A~^^^1^2.091^2.201^2^2.011^2.307^~2, 3~^~05/01/2015~ -~21162~^~675~^1.421^3^0.078^~1~^~A~^^^1^1.269^1.531^2^1.083^1.758^~2, 3~^~05/01/2015~ -~21162~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21162~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21162~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~05/01/2015~ -~21162~^~689~^0.011^3^0.002^~1~^~AS~^^^1^0.007^0.013^2^0.003^0.019^~2, 3~^~05/01/2015~ -~21162~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21162~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~851~^0.101^3^0.002^~1~^~A~^^^1^0.098^0.104^2^0.093^0.109^~2, 3~^~05/01/2015~ -~21162~^~852~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2015~ -~21162~^~853~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~05/01/2015~ -~21162~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21162~^~858~^0.009^3^0.002^~1~^~A~^^^1^0.005^0.012^2^0.000^0.019^~2, 3~^~05/01/2015~ -~21202~^~312~^0.101^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~315~^0.193^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~406~^4.650^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~410~^0.394^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~415~^0.148^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21202~^~606~^4.785^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21202~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~612~^0.352^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~613~^2.740^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~614~^1.513^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~615~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~617~^4.833^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~618~^0.999^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~619~^0.105^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~620~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~625~^0.095^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~626~^0.438^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~627~^0.057^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~628~^0.038^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~645~^5.404^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~646~^1.179^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21202~^~652~^0.048^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~653~^0.114^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21202~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21202~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21207~^~312~^0.075^6^0.002^~1~^~A~^^^1^0.068^0.080^5^0.070^0.079^~2, 3~^~04/01/2015~ -~21207~^~315~^0.297^6^0.014^~1~^~A~^^^1^0.269^0.350^5^0.262^0.332^~2, 3~^~04/01/2015~ -~21207~^~404~^0.270^3^0.015^~1~^~A~^^^1^0.250^0.300^2^0.204^0.336^~2, 3~^~04/01/2015~ -~21207~^~405~^0.227^3^0.013^~1~^~A~^^^1^0.200^0.240^2^0.169^0.284^~2, 3~^~04/01/2015~ -~21207~^~406~^4.617^3^0.197^~1~^~A~^^^1^4.350^5.000^2^3.771^5.462^~2, 3~^~04/01/2015~ -~21207~^~410~^0.425^2^^~1~^~A~^^^1^0.420^0.430^1^^^^~04/01/2015~ -~21207~^~415~^0.176^3^0.014^~1~^~A~^^^1^0.150^0.198^2^0.116^0.236^~2, 3~^~04/01/2015~ -~21207~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~606~^0.476^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21207~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21207~^~612~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2015~ -~21207~^~613~^0.339^3^0.017^~1~^~A~^^^1^0.322^0.372^2^0.267^0.410^~2, 3~^~04/01/2015~ -~21207~^~614~^0.107^3^0.006^~1~^~A~^^^1^0.100^0.118^2^0.083^0.131^~2, 3~^~04/01/2015~ -~21207~^~615~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2015~ -~21207~^~617~^0.486^3^0.030^~1~^~AS~^^^1^0.455^0.546^2^0.357^0.615^~2, 3~^~04/01/2015~ -~21207~^~618~^0.919^3^0.027^~1~^~AS~^^^1^0.886^0.972^2^0.803^1.034^~2, 3~^~04/01/2015~ -~21207~^~619~^0.088^3^0.001^~1~^~AS~^^^1^0.087^0.089^2^0.085^0.091^~2, 3~^~04/01/2015~ -~21207~^~620~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~04/01/2015~ -~21207~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2015~ -~21207~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21207~^~626~^0.020^3^0.003^~1~^~AS~^^^1^0.016^0.025^2^0.009^0.031^~2, 3~^~04/01/2015~ -~21207~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~628~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2015~ -~21207~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21207~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2015~ -~21207~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~645~^0.521^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~646~^1.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21207~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21207~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21207~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~663~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~04/01/2015~ -~21207~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~665~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2015~ -~21207~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21207~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21207~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21207~^~673~^0.020^3^0.003^~1~^~A~^^^1^0.016^0.025^2^0.009^0.031^~2, 3~^~04/01/2015~ -~21207~^~674~^0.478^3^0.030^~1~^~A~^^^1^0.447^0.539^2^0.347^0.609^~2, 3~^~04/01/2015~ -~21207~^~675~^0.908^3^0.027^~1~^~A~^^^1^0.872^0.961^2^0.791^1.025^~2, 3~^~04/01/2015~ -~21207~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21207~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~689~^0.002^3^0.001^~1~^~AS~^^^1^0.001^0.004^2^-0.001^0.006^~2, 3~^~04/01/2015~ -~21207~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21207~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~851~^0.084^3^0.001^~1~^~A~^^^1^0.083^0.085^2^0.081^0.087^~2, 3~^~04/01/2015~ -~21207~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~853~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~04/01/2015~ -~21207~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21207~^~858~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~21209~^~312~^0.082^6^0.001^~1~^~A~^^^1^0.079^0.084^5^0.079^0.084^~2, 3~^~04/01/2015~ -~21209~^~315~^0.302^6^0.013^~1~^~A~^^^1^0.270^0.346^5^0.269^0.335^~2, 3~^~04/01/2015~ -~21209~^~404~^0.377^3^0.007^~1~^~A~^^^1^0.370^0.390^2^0.348^0.405^~2, 3~^~04/01/2015~ -~21209~^~405~^0.243^3^0.018^~1~^~A~^^^1^0.210^0.270^2^0.167^0.319^~2, 3~^~04/01/2015~ -~21209~^~406~^4.180^3^0.023^~1~^~A~^^^1^4.140^4.220^2^4.081^4.279^~2, 3~^~04/01/2015~ -~21209~^~410~^0.435^2^^~1~^~A~^^^1^0.420^0.450^1^^^^~04/01/2015~ -~21209~^~415~^0.174^3^0.005^~1~^~A~^^^1^0.165^0.181^2^0.154^0.194^~2, 3~^~04/01/2015~ -~21209~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~606~^0.626^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2015~ -~21209~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2015~ -~21209~^~612~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~04/01/2015~ -~21209~^~613~^0.428^3^0.014^~1~^~A~^^^1^0.400^0.449^2^0.365^0.490^~2, 3~^~04/01/2015~ -~21209~^~614~^0.162^3^0.009^~1~^~A~^^^1^0.146^0.177^2^0.123^0.201^~2, 3~^~04/01/2015~ -~21209~^~615~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2015~ -~21209~^~617~^0.706^3^0.017^~1~^~AS~^^^1^0.674^0.731^2^0.634^0.779^~2, 3~^~04/01/2015~ -~21209~^~618~^0.735^3^0.026^~1~^~AS~^^^1^0.687^0.775^2^0.624^0.846^~2, 3~^~04/01/2015~ -~21209~^~619~^0.065^3^0.004^~1~^~AS~^^^1^0.059^0.072^2^0.048^0.081^~2, 3~^~04/01/2015~ -~21209~^~620~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2015~ -~21209~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21209~^~624~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2015~ -~21209~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~626~^0.039^3^0.002^~1~^~AS~^^^1^0.035^0.042^2^0.030^0.047^~2, 3~^~04/01/2015~ -~21209~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~04/01/2015~ -~21209~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2015~ -~21209~^~631~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2015~ -~21209~^~645~^0.763^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~646~^0.831^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21209~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2015~ -~21209~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~663~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2015~ -~21209~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~665~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2015~ -~21209~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~04/01/2015~ -~21209~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21209~^~672~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2015~ -~21209~^~673~^0.039^3^0.002^~1~^~A~^^^1^0.035^0.042^2^0.030^0.047^~2, 3~^~04/01/2015~ -~21209~^~674~^0.701^3^0.017^~1~^~A~^^^1^0.668^0.726^2^0.627^0.775^~2, 3~^~04/01/2015~ -~21209~^~675~^0.726^3^0.026^~1~^~A~^^^1^0.677^0.764^2^0.615^0.836^~2, 3~^~04/01/2015~ -~21209~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21209~^~687~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21209~^~689~^0.005^3^0.001^~1~^~AS~^^^1^0.004^0.006^2^0.003^0.007^~2, 3~^~04/01/2015~ -~21209~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21209~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~851~^0.062^3^0.004^~1~^~A~^^^1^0.057^0.069^2^0.047^0.077^~2, 3~^~04/01/2015~ -~21209~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2015~ -~21209~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21209~^~858~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2015~ -~21210~^~312~^0.081^6^0.003^~1~^~A~^^^1^0.074^0.092^5^0.074^0.088^~2, 3~^~05/01/2013~ -~21210~^~315~^0.267^6^0.007^~1~^~A~^^^1^0.246^0.286^5^0.250^0.285^~2, 3~^~05/01/2013~ -~21210~^~404~^0.230^3^0.006^~1~^~A~^^^1^0.220^0.240^2^0.205^0.255^~2, 3~^~05/01/2013~ -~21210~^~405~^0.257^3^0.009^~1~^~A~^^^1^0.240^0.270^2^0.219^0.295^~2, 3~^~05/01/2013~ -~21210~^~406~^4.183^3^0.144^~1~^~A~^^^1^3.900^4.370^2^3.564^4.803^~2, 3~^~05/01/2013~ -~21210~^~410~^0.415^2^^~1~^~A~^^^1^0.400^0.430^1^^^^~05/01/2013~ -~21210~^~415~^0.275^3^0.010^~1~^~A~^^^1^0.264^0.295^2^0.233^0.318^~2, 3~^~05/01/2013~ -~21210~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~502~^0.420^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~503~^0.553^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~504~^0.953^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~505~^0.697^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~506~^0.266^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~508~^0.522^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~509~^0.328^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~510~^0.615^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~511~^0.645^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~512~^0.379^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~513~^0.604^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~514~^0.932^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~515~^2.828^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~516~^0.502^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~517~^1.117^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~518~^0.492^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~521~^0.060^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21210~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~606~^0.972^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~607~^0.007^3^0.007^~1~^~A~^^^1^0.000^0.020^2^-0.022^0.035^~1, 2, 3~^~05/01/2013~ -~21210~^~608~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~05/01/2013~ -~21210~^~609~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~05/01/2013~ -~21210~^~610~^0.010^3^0.006^~1~^~A~^^^1^0.003^0.022^2^-0.016^0.036^~2, 3~^~05/01/2013~ -~21210~^~611~^0.010^3^0.007^~1~^~A~^^^1^0.002^0.024^2^-0.021^0.041^~1, 2, 3~^~05/01/2013~ -~21210~^~612~^0.055^3^0.025^~1~^~A~^^^1^0.018^0.103^2^-0.054^0.163^~2, 3~^~05/01/2013~ -~21210~^~613~^0.517^3^0.090^~1~^~A~^^^1^0.345^0.649^2^0.130^0.905^~2, 3~^~05/01/2013~ -~21210~^~614~^0.328^3^0.051^~1~^~A~^^^1^0.232^0.403^2^0.111^0.546^~2, 3~^~05/01/2013~ -~21210~^~615~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2013~ -~21210~^~617~^0.708^3^0.100^~1~^~AS~^^^1^0.515^0.848^2^0.279^1.137^~2, 3~^~05/01/2013~ -~21210~^~618~^0.617^3^0.014^~1~^~AS~^^^1^0.590^0.635^2^0.558^0.676^~2, 3~^~05/01/2013~ -~21210~^~619~^0.065^3^0.003^~1~^~AS~^^^1^0.059^0.071^2^0.050^0.080^~2, 3~^~05/01/2013~ -~21210~^~620~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~05/01/2013~ -~21210~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2013~ -~21210~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2013~ -~21210~^~625~^0.010^3^0.003^~1~^~A~^^^1^0.005^0.013^2^-0.001^0.021^~2, 3~^~05/01/2013~ -~21210~^~626~^0.049^3^0.008^~1~^~AS~^^^1^0.033^0.061^2^0.013^0.086^~2, 3~^~05/01/2013~ -~21210~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~628~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.014^2^-0.001^0.020^~2, 3~^~05/01/2013~ -~21210~^~629~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~1, 2, 3~^~05/01/2013~ -~21210~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~05/01/2013~ -~21210~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~05/01/2013~ -~21210~^~645~^0.789^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~646~^0.718^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~652~^0.009^3^0.003^~1~^~A~^^^1^0.004^0.014^2^-0.004^0.021^~2, 3~^~05/01/2013~ -~21210~^~653~^0.015^3^0.003^~1~^~A~^^^1^0.010^0.021^2^0.002^0.029^~2, 3~^~05/01/2013~ -~21210~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21210~^~662~^0.005^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.001^0.010^~1, 2, 3~^~05/01/2013~ -~21210~^~663~^0.039^3^0.009^~1~^~A~^^^1^0.026^0.056^2^0.001^0.077^~2, 3~^~05/01/2013~ -~21210~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~665~^0.008^3^0.002^~1~^~A~^^^1^0.004^0.011^2^-0.001^0.016^~2, 3~^~05/01/2013~ -~21210~^~670~^0.006^3^0.002^~1~^~A~^^^1^0.002^0.009^2^-0.003^0.015^~1, 2, 3~^~05/01/2013~ -~21210~^~671~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~05/01/2013~ -~21210~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2013~ -~21210~^~673~^0.045^3^0.007^~1~^~A~^^^1^0.031^0.055^2^0.014^0.075^~2, 3~^~05/01/2013~ -~21210~^~674~^0.669^3^0.092^~1~^~A~^^^1^0.489^0.792^2^0.273^1.064^~2, 3~^~05/01/2013~ -~21210~^~675~^0.603^3^0.010^~1~^~A~^^^1^0.584^0.617^2^0.560^0.646^~2, 3~^~05/01/2013~ -~21210~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2013~ -~21210~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2013~ -~21210~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.004^0.016^~2, 3~^~05/01/2013~ -~21210~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2013~ -~21210~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21210~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~851~^0.063^3^0.004^~1~^~A~^^^1^0.057^0.071^2^0.046^0.081^~2, 3~^~05/01/2013~ -~21210~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~853~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2013~ -~21210~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21210~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21211~^~312~^0.076^6^0.002^~1~^~A~^^^1^0.070^0.080^5^0.071^0.080^~2, 3~^~04/01/2015~ -~21211~^~315~^0.282^6^0.012^~1~^~A~^^^1^0.257^0.323^5^0.253^0.312^~2, 3~^~04/01/2015~ -~21211~^~404~^1.157^3^0.109^~1~^~A~^^^1^0.940^1.290^2^0.686^1.627^~2, 3~^~04/01/2015~ -~21211~^~405~^0.230^3^0.010^~1~^~A~^^^1^0.210^0.240^2^0.187^0.273^~2, 3~^~04/01/2015~ -~21211~^~406~^5.210^3^0.175^~1~^~A~^^^1^4.860^5.400^2^4.456^5.964^~2, 3~^~04/01/2015~ -~21211~^~410~^0.650^2^^~1~^~A~^^^1^0.630^0.670^1^^^^~04/01/2015~ -~21211~^~415~^0.259^3^0.025^~1~^~A~^^^1^0.227^0.307^2^0.153^0.364^~2, 3~^~04/01/2015~ -~21211~^~605~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~606~^0.724^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21211~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21211~^~612~^0.010^3^0.002^~1~^~A~^^^1^0.008^0.013^2^0.003^0.017^~2, 3~^~04/01/2015~ -~21211~^~613~^0.549^3^0.068^~1~^~A~^^^1^0.414^0.624^2^0.258^0.841^~2, 3~^~04/01/2015~ -~21211~^~614~^0.145^3^0.016^~1~^~A~^^^1^0.112^0.162^2^0.074^0.215^~2, 3~^~04/01/2015~ -~21211~^~615~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2015~ -~21211~^~617~^0.817^3^0.110^~1~^~AS~^^^1^0.597^0.928^2^0.344^1.289^~2, 3~^~04/01/2015~ -~21211~^~618~^0.841^3^0.060^~1~^~AS~^^^1^0.724^0.924^2^0.582^1.099^~2, 3~^~04/01/2015~ -~21211~^~619~^0.068^3^0.004^~1~^~AS~^^^1^0.063^0.076^2^0.052^0.085^~2, 3~^~04/01/2015~ -~21211~^~620~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.020^2^0.015^0.022^~2, 3~^~04/01/2015~ -~21211~^~621~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2015~ -~21211~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.010^~2, 3~^~04/01/2015~ -~21211~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~04/01/2015~ -~21211~^~626~^0.094^3^0.015^~1~^~AS~^^^1^0.063^0.109^2^0.028^0.159^~2, 3~^~04/01/2015~ -~21211~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~628~^0.016^3^0.002^~1~^~A~^^^1^0.011^0.018^2^0.006^0.026^~2, 3~^~04/01/2015~ -~21211~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21211~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2015~ -~21211~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~645~^0.932^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~646~^0.952^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~653~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2015~ -~21211~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2015~ -~21211~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~663~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.001^0.014^~2, 3~^~04/01/2015~ -~21211~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~665~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2015~ -~21211~^~670~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21211~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2015~ -~21211~^~673~^0.094^3^0.015^~1~^~A~^^^1^0.063^0.109^2^0.028^0.159^~2, 3~^~04/01/2015~ -~21211~^~674~^0.809^3^0.108^~1~^~A~^^^1^0.592^0.919^2^0.343^1.275^~2, 3~^~04/01/2015~ -~21211~^~675~^0.831^3^0.059^~1~^~A~^^^1^0.716^0.914^2^0.576^1.087^~2, 3~^~04/01/2015~ -~21211~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2015~ -~21211~^~687~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2015~ -~21211~^~689~^0.008^3^0.002^~1~^~AS~^^^1^0.004^0.010^2^0.000^0.016^~2, 3~^~04/01/2015~ -~21211~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~21211~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~851~^0.066^3^0.004^~1~^~A~^^^1^0.061^0.073^2^0.051^0.081^~2, 3~^~04/01/2015~ -~21211~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2015~ -~21211~^~853~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.009^2^0.000^0.013^~2, 3~^~04/01/2015~ -~21211~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~21211~^~858~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2015~ -~21213~^~312~^0.084^6^0.001^~1~^~A~^^^1^0.081^0.086^5^0.082^0.086^~2, 3~^~05/01/2013~ -~21213~^~315~^0.354^6^0.008^~1~^~A~^^^1^0.335^0.384^5^0.333^0.375^~2, 3~^~05/01/2013~ -~21213~^~404~^0.343^3^0.003^~1~^~A~^^^1^0.340^0.350^2^0.329^0.357^~2, 3~^~05/01/2013~ -~21213~^~405~^0.267^3^0.009^~1~^~A~^^^1^0.250^0.280^2^0.229^0.305^~2, 3~^~05/01/2013~ -~21213~^~406~^4.323^3^0.095^~1~^~A~^^^1^4.160^4.490^2^3.913^4.733^~2, 3~^~05/01/2013~ -~21213~^~410~^0.555^2^^~1~^~A~^^^1^0.520^0.590^1^^^^~05/01/2013~ -~21213~^~415~^0.203^3^0.005^~1~^~A~^^^1^0.195^0.212^2^0.182^0.224^~2, 3~^~05/01/2013~ -~21213~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~502~^0.331^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~503~^0.431^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~504~^0.752^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~505~^0.491^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~506~^0.210^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~508~^0.431^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~509~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~510~^0.501^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~511~^0.501^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~512~^0.301^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~513~^0.481^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~514~^0.741^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~515~^2.455^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~516~^0.451^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~518~^0.411^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~521~^0.070^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21213~^~605~^0.119^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~606~^3.554^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~607~^0.013^3^0.006^~1~^~A~^^^1^0.000^0.020^2^-0.015^0.041^~1, 2, 3~^~05/01/2013~ -~21213~^~608~^0.009^3^0.004^~1~^~A~^^^1^0.000^0.013^2^-0.010^0.027^~1, 2, 3~^~05/01/2013~ -~21213~^~609~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.007^0.019^~1, 2, 3~^~05/01/2013~ -~21213~^~610~^0.024^3^0.007^~1~^~A~^^^1^0.010^0.031^2^-0.006^0.053^~2, 3~^~05/01/2013~ -~21213~^~611~^0.023^3^0.008^~1~^~A~^^^1^0.007^0.032^2^-0.012^0.058^~2, 3~^~05/01/2013~ -~21213~^~612~^0.178^3^0.030^~1~^~A~^^^1^0.118^0.213^2^0.049^0.307^~2, 3~^~05/01/2013~ -~21213~^~613~^2.077^3^0.100^~1~^~A~^^^1^1.888^2.230^2^1.645^2.509^~2, 3~^~05/01/2013~ -~21213~^~614~^1.138^3^0.058^~1~^~A~^^^1^1.042^1.241^2^0.891^1.386^~2, 3~^~05/01/2013~ -~21213~^~615~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2013~ -~21213~^~617~^3.408^3^0.097^~1~^~AS~^^^1^3.275^3.597^2^2.991^3.826^~2, 3~^~05/01/2013~ -~21213~^~618~^1.698^3^0.020^~1~^~AS~^^^1^1.659^1.722^2^1.613^1.782^~2, 3~^~05/01/2013~ -~21213~^~619~^0.107^3^0.002^~1~^~AS~^^^1^0.103^0.111^2^0.097^0.117^~2, 3~^~05/01/2013~ -~21213~^~620~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.040^2^0.026^0.045^~2, 3~^~05/01/2013~ -~21213~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2013~ -~21213~^~624~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~05/01/2013~ -~21213~^~625~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.021^2^0.002^0.031^~2, 3~^~05/01/2013~ -~21213~^~626~^0.191^3^0.008^~1~^~AS~^^^1^0.178^0.206^2^0.156^0.226^~2, 3~^~05/01/2013~ -~21213~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~628~^0.066^3^0.002^~1~^~A~^^^1^0.064^0.069^2^0.059^0.072^~2, 3~^~05/01/2013~ -~21213~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~630~^0.008^3^0.000^~1~^~AS~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2013~ -~21213~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2013~ -~21213~^~645~^3.716^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~646~^1.927^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~652~^0.016^3^0.003^~1~^~A~^^^1^0.010^0.019^2^0.003^0.029^~2, 3~^~05/01/2013~ -~21213~^~653~^0.041^3^0.003^~1~^~A~^^^1^0.036^0.044^2^0.030^0.053^~2, 3~^~05/01/2013~ -~21213~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2013~ -~21213~^~662~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~05/01/2013~ -~21213~^~663~^0.093^3^0.010^~1~^~A~^^^1^0.073^0.105^2^0.050^0.135^~2, 3~^~05/01/2013~ -~21213~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~665~^0.018^3^0.002^~1~^~A~^^^1^0.014^0.021^2^0.009^0.028^~2, 3~^~05/01/2013~ -~21213~^~670~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.024^~2, 3~^~05/01/2013~ -~21213~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~672~^0.048^3^0.001^~1~^~A~^^^1^0.045^0.049^2^0.042^0.053^~2, 3~^~05/01/2013~ -~21213~^~673~^0.183^3^0.007^~1~^~A~^^^1^0.172^0.197^2^0.151^0.215^~2, 3~^~05/01/2013~ -~21213~^~674~^3.316^3^0.092^~1~^~A~^^^1^3.202^3.497^2^2.921^3.710^~2, 3~^~05/01/2013~ -~21213~^~675~^1.665^3^0.023^~1~^~A~^^^1^1.622^1.698^2^1.568^1.762^~2, 3~^~05/01/2013~ -~21213~^~676~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2013~ -~21213~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21213~^~687~^0.026^3^0.001^~1~^~A~^^^1^0.025^0.027^2^0.024^0.028^~2, 3~^~05/01/2013~ -~21213~^~689~^0.017^3^0.002^~1~^~AS~^^^1^0.014^0.019^2^0.010^0.023^~2, 3~^~05/01/2013~ -~21213~^~693~^0.101^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21213~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~851~^0.104^3^0.002^~1~^~A~^^^1^0.100^0.108^2^0.094^0.114^~2, 3~^~05/01/2013~ -~21213~^~852~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.014^~1, 2, 3~^~05/01/2013~ -~21213~^~853~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~05/01/2013~ -~21213~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21213~^~858~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~05/01/2013~ -~21214~^~312~^0.075^6^0.001^~1~^~A~^^^1^0.074^0.077^5^0.073^0.077^~2, 3~^~05/01/2013~ -~21214~^~315~^0.214^6^0.009^~1~^~A~^^^1^0.188^0.245^5^0.190^0.237^~2, 3~^~05/01/2013~ -~21214~^~404~^0.190^3^0.006^~1~^~A~^^^1^0.180^0.200^2^0.165^0.215^~2, 3~^~05/01/2013~ -~21214~^~405~^0.217^3^0.009^~1~^~A~^^^1^0.200^0.230^2^0.179^0.255^~2, 3~^~05/01/2013~ -~21214~^~406~^7.727^3^0.348^~1~^~A~^^^1^7.040^8.170^2^6.229^9.225^~2, 3~^~05/01/2013~ -~21214~^~410~^0.350^2^^~1~^~A~^^^1^0.350^0.350^^^^^~05/01/2013~ -~21214~^~415~^0.271^3^0.002^~1~^~A~^^^1^0.268^0.276^2^0.261^0.282^~2, 3~^~05/01/2013~ -~21214~^~501~^0.118^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~502~^0.440^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~503~^0.547^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~504~^0.901^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~505~^0.729^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~508~^0.515^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~509~^0.343^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~510~^0.643^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~511~^0.601^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~512~^0.686^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~514~^0.965^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~515~^2.434^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~516~^0.493^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~517~^0.965^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~518~^0.482^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21214~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21214~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~606~^2.192^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~607~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.016^2^-0.018^0.028^~1, 2, 3~^~05/01/2013~ -~21214~^~608~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~05/01/2013~ -~21214~^~609~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~05/01/2013~ -~21214~^~610~^0.008^3^0.006^~1~^~A~^^^1^0.000^0.019^2^-0.016^0.032^~1, 2, 3~^~05/01/2013~ -~21214~^~611~^0.006^3^0.006^~1~^~A~^^^1^0.000^0.018^2^-0.018^0.031^~1, 2, 3~^~05/01/2013~ -~21214~^~612~^0.038^3^0.016^~1~^~A~^^^1^0.019^0.072^2^-0.028^0.110^~2, 3~^~05/01/2013~ -~21214~^~613~^1.368^3^0.070^~1~^~A~^^^1^1.344^1.579^2^1.140^1.745^~2, 3~^~05/01/2013~ -~21214~^~614~^0.644^3^0.023^~1~^~A~^^^1^0.644^0.721^2^0.582^0.776^~2, 3~^~05/01/2013~ -~21214~^~615~^0.039^3^0.004^~1~^~A~^^^1^0.034^0.046^2^0.025^0.057^~2, 3~^~05/01/2013~ -~21214~^~617~^2.739^3^0.193^~1~^~AS~^^^1^2.524^3.180^2^2.059^3.717^~2, 3~^~05/01/2013~ -~21214~^~618~^5.939^3^0.523^~1~^~AS~^^^1^5.258^7.020^2^4.010^8.515^~2, 3~^~05/01/2013~ -~21214~^~619~^0.770^3^0.070^~1~^~AS~^^^1^0.681^0.918^2^0.513^1.112^~2, 3~^~05/01/2013~ -~21214~^~620~^0.022^3^0.002^~1~^~A~^^^1^0.020^0.027^2^0.014^0.032^~2, 3~^~05/01/2013~ -~21214~^~621~^0.123^3^0.025^~1~^~A~^^^1^0.104^0.179^2^0.022^0.236^~2, 3~^~05/01/2013~ -~21214~^~624~^0.039^3^0.003^~1~^~A~^^^1^0.034^0.045^2^0.026^0.055^~2, 3~^~05/01/2013~ -~21214~^~625~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~05/01/2013~ -~21214~^~626~^0.037^3^0.003^~1~^~AS~^^^1^0.034^0.045^2^0.026^0.053^~2, 3~^~05/01/2013~ -~21214~^~627~^0.003^3^0.002^~1~^~A~^^^1^0.001^0.007^2^-0.004^0.011^~1, 2, 3~^~05/01/2013~ -~21214~^~628~^0.046^3^0.011^~1~^~A~^^^1^0.035^0.070^2^0.003^0.095^~2, 3~^~05/01/2013~ -~21214~^~629~^0.025^3^0.009^~1~^~A~^^^1^0.015^0.044^2^-0.011^0.065^~2, 3~^~05/01/2013~ -~21214~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~05/01/2013~ -~21214~^~631~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~05/01/2013~ -~21214~^~645~^2.835^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~646~^6.897^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~652~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~05/01/2013~ -~21214~^~653~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~05/01/2013~ -~21214~^~654~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~05/01/2013~ -~21214~^~662~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2013~ -~21214~^~663~^0.011^3^0.003^~1~^~A~^^^1^0.008^0.019^2^-0.003^0.027^~2, 3~^~05/01/2013~ -~21214~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~665~^0.032^3^0.008^~1~^~A~^^^1^0.024^0.049^2^0.000^0.067^~2, 3~^~05/01/2013~ -~21214~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2013~ -~21214~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2013~ -~21214~^~673~^0.035^3^0.003^~1~^~A~^^^1^0.032^0.042^2^0.024^0.049^~2, 3~^~05/01/2013~ -~21214~^~674~^2.727^3^0.196^~1~^~A~^^^1^2.505^3.172^2^2.032^3.720^~2, 3~^~05/01/2013~ -~21214~^~675~^5.902^3^0.521^~1~^~A~^^^1^5.228^6.988^2^3.982^8.466^~2, 3~^~05/01/2013~ -~21214~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2013~ -~21214~^~685~^0.034^3^0.004^~1~^~A~^^^1^0.028^0.041^2^0.019^0.053^~2, 3~^~05/01/2013~ -~21214~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~05/01/2013~ -~21214~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~05/01/2013~ -~21214~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21214~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~851~^0.736^3^0.066^~1~^~A~^^^1^0.653^0.880^2^0.491^1.062^~2, 3~^~05/01/2013~ -~21214~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~853~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~05/01/2013~ -~21214~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21214~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21224~^~312~^0.227^3^0.019^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~315~^0.291^8^0.037^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~404~^0.211^5^0.016^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~405~^0.258^5^0.008^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~406~^2.196^5^0.276^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~410~^0.219^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~415~^0.083^5^0.005^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~501~^0.170^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~502~^0.379^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~503~^0.469^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~504~^0.871^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~505~^0.589^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~506~^0.184^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~507~^0.106^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~508~^0.529^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~509~^0.320^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~510~^0.596^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~511~^0.398^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~512~^0.279^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~513~^0.328^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~514~^0.645^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~515~^2.852^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~516~^0.272^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~517~^1.243^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~518~^0.558^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~606~^4.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~607~^0.275^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~608~^0.053^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~609~^0.083^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~610~^0.112^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~611~^0.152^7^0.005^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~612~^0.453^8^0.043^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~613~^2.039^8^0.145^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~614~^1.105^8^0.134^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~617~^4.092^8^0.517^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~618~^1.680^8^0.180^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~619~^0.167^7^0.025^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~620~^0.014^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~621~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~626~^0.129^7^0.011^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21224~^~627~^0.041^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~628~^0.025^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~629~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~630~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~631~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21224~^~645~^4.246^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21224~^~646~^1.903^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~312~^0.255^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~315~^0.428^4^0.043^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~404~^0.241^4^0.031^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~405~^0.246^4^0.019^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~406~^1.985^4^0.361^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~410~^0.256^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~415~^0.092^4^0.006^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~501~^0.188^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~502~^0.451^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~503~^0.576^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~504~^1.077^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~505~^0.649^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~506~^0.207^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~507~^0.131^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~508~^0.661^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~509~^0.382^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~510~^0.713^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~511~^0.474^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~512~^0.330^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~513~^0.412^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~514~^0.754^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~515~^3.727^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~516~^0.345^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~517~^1.557^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~518~^0.684^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~606~^3.825^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~607~^0.197^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~608~^0.038^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~609~^0.059^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~610~^0.122^3^0.012^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~611~^0.164^4^0.016^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~612~^0.517^4^0.040^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~613~^1.820^4^0.127^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~614~^0.907^4^0.056^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~617~^2.059^4^0.163^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~618~^1.155^4^0.185^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~619~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21225~^~620~^0.010^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~621~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~626~^0.121^3^0.009^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21225~^~627~^0.030^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~628~^0.018^0^^~4~^~BFFN~^~21299~^^^^^^^^^~05/01/2005~ -~21225~^~629~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~630~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~631~^0.000^0^^~4~^~BFFN~^~21299~^^^^^^^^^~03/01/2007~ -~21225~^~645~^2.198^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21225~^~646~^1.381^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21226~^~312~^0.170^5^0.011^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~315~^0.323^5^0.016^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~404~^0.216^5^0.032^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~405~^0.233^5^0.009^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~406~^2.379^5^0.084^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~410~^0.332^5^0.017^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~415~^0.149^3^0.013^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~606~^5.083^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~607~^0.194^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~608~^0.037^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~609~^0.052^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~610~^0.112^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21226~^~611~^0.121^4^0.009^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~612~^0.442^5^0.026^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~613~^2.663^5^0.044^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~614~^1.462^5^0.074^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~617~^5.559^5^0.241^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~618~^2.291^5^0.226^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~619~^0.220^4^0.056^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~620~^0.029^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~621~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~626~^0.273^5^0.011^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21226~^~627~^0.038^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~628~^0.056^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~629~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~630~^0.002^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~631~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21226~^~645~^5.890^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21226~^~646~^2.578^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~312~^0.210^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~315~^0.323^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~404~^0.250^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~405~^0.206^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~406~^2.155^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~410~^0.435^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21227~^~606~^4.586^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~607~^0.158^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~608~^0.030^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~609~^0.042^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~610~^0.100^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~611~^0.126^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~21227~^~612~^0.426^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~613~^2.418^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~614~^1.286^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~617~^4.015^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~618~^1.669^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~619~^0.167^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~620~^0.024^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~621~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~626~^0.281^2^^~1~^~A~^^^1^^^^^^^~03/01/2004~ -~21227~^~627~^0.031^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~628~^0.046^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~629~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~630~^0.001^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~631~^0.000^0^^~4~^~BFFN~^~21304~^^^^^^^^^~03/01/2009~ -~21227~^~645~^4.343^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21227~^~646~^1.890^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21228~^~312~^0.096^6^0.002^~1~^~A~^^^1^0.089^0.106^5^0.090^0.102^~4~^~07/01/2012~ -~21228~^~315~^0.322^6^0.012^~1~^~A~^^^1^0.295^0.374^5^0.291^0.353^~4~^~07/01/2012~ -~21228~^~404~^0.247^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~405~^0.239^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~406~^4.544^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21228~^~605~^0.428^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~606~^3.504^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~610~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~4~^~07/01/2012~ -~21228~^~611~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~4~^~07/01/2012~ -~21228~^~612~^0.218^3^0.008^~1~^~A~^^^1^0.206^0.232^2^0.186^0.250^~4~^~07/01/2012~ -~21228~^~613~^1.928^3^0.033^~1~^~A~^^^1^1.865^1.975^2^1.787^2.068^~4~^~07/01/2012~ -~21228~^~614~^1.179^3^0.028^~1~^~A~^^^1^1.128^1.224^2^1.059^1.299^~4~^~07/01/2012~ -~21228~^~615~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~4~^~07/01/2012~ -~21228~^~617~^3.335^3^0.044^~1~^~AS~^^^1^3.284^3.423^2^3.145^3.525^~4~^~07/01/2012~ -~21228~^~618~^1.234^3^0.007^~1~^~AS~^^^1^1.221^1.245^2^1.204^1.264^~4~^~07/01/2012~ -~21228~^~619~^0.138^3^0.004^~1~^~AS~^^^1^0.132^0.145^2^0.122^0.154^~4~^~07/01/2012~ -~21228~^~620~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.015^0.019^~4~^~07/01/2012~ -~21228~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~07/01/2012~ -~21228~^~625~^0.066^3^0.002^~1~^~A~^^^1^0.063^0.069^2^0.059^0.074^~4~^~07/01/2012~ -~21228~^~626~^0.259^3^0.010^~1~^~AS~^^^1^0.240^0.271^2^0.217^0.301^~4~^~07/01/2012~ -~21228~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~628~^0.035^3^0.002^~1~^~A~^^^1^0.032^0.038^2^0.027^0.042^~4~^~07/01/2012~ -~21228~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21228~^~630~^0.006^3^0.003^~1~^~AS~^^^1^0.003^0.012^2^-0.006^0.019^~4~^~07/01/2012~ -~21228~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~4~^~07/01/2012~ -~21228~^~645~^3.768^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~646~^1.420^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~652~^0.038^3^0.002^~1~^~A~^^^1^0.033^0.041^2^0.027^0.048^~4~^~07/01/2012~ -~21228~^~653~^0.095^3^0.007^~1~^~A~^^^1^0.081^0.102^2^0.065^0.124^~4~^~07/01/2012~ -~21228~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~07/01/2012~ -~21228~^~662~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.025^0.029^~4~^~07/01/2012~ -~21228~^~663~^0.346^3^0.035^~1~^~A~^^^1^0.276^0.383^2^0.195^0.498^~4~^~07/01/2012~ -~21228~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~665~^0.055^3^0.003^~1~^~A~^^^1^0.050^0.061^2^0.040^0.069^~4~^~07/01/2012~ -~21228~^~670~^0.044^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.031^0.057^~4~^~07/01/2012~ -~21228~^~671~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 4~^~07/01/2012~ -~21228~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21228~^~673~^0.232^3^0.009^~1~^~A~^^^1^0.214^0.244^2^0.192^0.272^~4~^~07/01/2012~ -~21228~^~674~^2.989^3^0.043^~1~^~A~^^^1^2.904^3.040^2^2.805^3.172^~4~^~07/01/2012~ -~21228~^~675~^1.135^3^0.013^~1~^~A~^^^1^1.110^1.149^2^1.081^1.189^~4~^~07/01/2012~ -~21228~^~676~^0.006^3^0.003^~1~^~A~^^^1^0.003^0.012^2^-0.006^0.019^~4~^~07/01/2012~ -~21228~^~685~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.013^~1, 4~^~07/01/2012~ -~21228~^~687~^0.064^3^0.005^~1~^~A~^^^1^0.054^0.069^2^0.043^0.084^~4~^~07/01/2012~ -~21228~^~689~^0.013^3^0.001^~1~^~AS~^^^1^0.010^0.014^2^0.007^0.019^~4~^~07/01/2012~ -~21228~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21228~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21228~^~851~^0.134^3^0.002^~1~^~A~^^^1^0.132^0.138^2^0.125^0.143^~4~^~07/01/2012~ -~21228~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21228~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~4~^~07/01/2012~ -~21228~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~4~^~07/01/2012~ -~21229~^~312~^0.051^12^0.002^~1~^~A~^^^1^0.044^0.077^7^0.047^0.055^~2, 3~^~08/01/2012~ -~21229~^~315~^0.150^12^0.003^~1~^~A~^^^1^0.131^0.221^8^0.143^0.156^~2, 3~^~08/01/2012~ -~21229~^~404~^0.092^4^0.006^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~405~^0.204^4^0.009^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~406~^5.985^4^0.112^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~410~^1.182^4^0.075^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~415~^0.148^4^0.005^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~21229~^~605~^0.123^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~606~^3.566^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~607~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.005^2^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~21229~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~609~^0.012^6^0.001^~1~^~A~^^^1^0.006^0.031^2^0.009^0.015^~2, 3~^~08/01/2012~ -~21229~^~610~^0.008^6^0.000^~1~^~A~^^^1^0.005^0.017^4^0.007^0.009^~2, 3~^~08/01/2012~ -~21229~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.006^2^0.002^0.008^~2, 3~^~08/01/2012~ -~21229~^~612~^0.042^6^0.003^~1~^~A~^^^1^0.031^0.076^3^0.033^0.051^~2, 3~^~08/01/2012~ -~21229~^~613~^2.325^6^0.134^~1~^~A~^^^1^1.816^3.595^2^1.791^2.859^~2, 3~^~08/01/2012~ -~21229~^~614~^1.015^6^0.041^~1~^~A~^^^1^0.925^1.144^2^0.846^1.184^~2, 3~^~08/01/2012~ -~21229~^~615~^0.071^6^0.002^~1~^~A~^^^1^0.056^0.080^2^0.060^0.081^~2, 3~^~08/01/2012~ -~21229~^~617~^7.269^6^0.343^~1~^~AS~^^^1^5.200^8.523^2^5.839^8.699^~2, 3~^~08/01/2012~ -~21229~^~618~^5.986^6^0.253^~1~^~AS~^^^1^4.686^9.426^2^4.923^7.049^~2, 3~^~08/01/2012~ -~21229~^~619~^0.419^6^0.012^~1~^~AS~^^^1^0.301^0.814^2^0.366^0.471^~2, 3~^~08/01/2012~ -~21229~^~620~^0.051^6^0.001^~1~^~A~^^^1^0.047^0.060^3^0.047^0.054^~2, 3~^~08/01/2012~ -~21229~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.003^~2, 3~^~08/01/2012~ -~21229~^~624~^0.041^6^0.002^~1~^~A~^^^1^0.036^0.051^2^0.034^0.048^~2, 3~^~08/01/2012~ -~21229~^~625~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.013^2^0.006^0.014^~2, 3~^~08/01/2012~ -~21229~^~626~^0.296^6^0.024^~1~^~AS~^^^1^0.237^0.425^2^0.210^0.382^~2, 3~^~08/01/2012~ -~21229~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21229~^~628~^0.133^6^0.006^~1~^~A~^^^1^0.073^0.153^3^0.114^0.151^~2, 3~^~08/01/2012~ -~21229~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21229~^~630~^0.004^6^0.001^~1~^~AS~^^^1^0.001^0.008^4^0.002^0.006^~2, 3~^~08/01/2012~ -~21229~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.004^0.005^~2, 3~^~08/01/2012~ -~21229~^~645~^7.735^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~646~^6.511^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~652~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^2^0.006^0.007^~2, 3~^~08/01/2012~ -~21229~^~653~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.024^2^0.013^0.020^~2, 3~^~08/01/2012~ -~21229~^~654~^0.024^6^0.001^~1~^~A~^^^1^0.021^0.027^2^0.020^0.028^~2, 3~^~08/01/2012~ -~21229~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~21229~^~663~^0.050^6^0.003^~1~^~A~^^^1^0.041^0.058^2^0.036^0.064^~2, 3~^~08/01/2012~ -~21229~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21229~^~665~^0.072^6^0.002^~1~^~A~^^^1^0.058^0.126^4^0.066^0.077^~2, 3~^~08/01/2012~ -~21229~^~670~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.032^3^0.019^0.024^~2, 3~^~08/01/2012~ -~21229~^~671~^0.013^6^0.006^~1~^~A~^^^1^0.000^0.025^2^-0.013^0.039^~1, 2, 3~^~08/01/2012~ -~21229~^~672~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.018^2^0.010^0.018^~2, 3~^~08/01/2012~ -~21229~^~673~^0.294^6^0.023^~1~^~A~^^^1^0.236^0.423^3^0.209^0.379^~2, 3~^~08/01/2012~ -~21229~^~674~^7.219^6^0.341^~1~^~A~^^^1^5.159^8.465^2^5.798^8.639^~2, 3~^~08/01/2012~ -~21229~^~675~^5.893^6^0.252^~1~^~A~^^^1^4.604^9.292^2^4.833^6.952^~2, 3~^~08/01/2012~ -~21229~^~676~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.008^4^0.002^0.006^~1, 2, 3~^~08/01/2012~ -~21229~^~685~^0.029^6^0.002^~1~^~A~^^^1^0.022^0.051^3^0.023^0.034^~2, 3~^~08/01/2012~ -~21229~^~687~^0.011^6^0.000^~1~^~A~^^^1^0.009^0.014^2^0.009^0.012^~2, 3~^~08/01/2012~ -~21229~^~689~^0.016^6^0.001^~1~^~AS~^^^1^0.013^0.019^2^0.010^0.022^~2, 3~^~08/01/2012~ -~21229~^~693~^0.052^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~695~^0.072^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21229~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~21229~^~851~^0.390^6^0.013^~1~^~A~^^^1^0.273^0.772^2^0.336^0.444^~2, 3~^~08/01/2012~ -~21229~^~852~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~21229~^~853~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.018^2^0.011^0.019^~2, 3~^~08/01/2012~ -~21229~^~858~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.019^2^0.014^0.018^~2, 3~^~08/01/2012~ -~21230~^~312~^0.082^18^0.002^~1~^~A~^^^1^0.071^0.096^6^0.078^0.086^~2, 3~^~07/01/2012~ -~21230~^~315~^0.349^18^0.007^~1~^~A~^^^1^0.248^0.453^7^0.333^0.364^~2, 3~^~07/01/2012~ -~21230~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~405~^0.183^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~406~^5.110^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~410~^0.804^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~415~^0.126^1^^~1~^~A~^^^^^^^^^^~09/01/2006~ -~21230~^~605~^0.078^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~606~^2.461^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~607~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~21230~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21230~^~609~^0.005^9^0.000^~1~^~A~^^^1^0.003^0.013^4^0.004^0.006^~2, 3~^~07/01/2012~ -~21230~^~610~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.011^3^0.005^0.008^~2, 3~^~07/01/2012~ -~21230~^~611~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^4^0.003^0.004^~1, 2, 3~^~07/01/2012~ -~21230~^~612~^0.026^9^0.001^~1~^~A~^^^1^0.023^0.040^5^0.023^0.029^~2, 3~^~07/01/2012~ -~21230~^~613~^1.663^9^0.031^~1~^~A~^^^1^1.517^2.128^5^1.585^1.741^~2, 3~^~07/01/2012~ -~21230~^~614~^0.651^9^0.009^~1~^~A~^^^1^0.566^0.734^6^0.629^0.674^~2, 3~^~07/01/2012~ -~21230~^~615~^0.041^9^0.001^~1~^~A~^^^1^0.036^0.048^5^0.039^0.043^~2, 3~^~07/01/2012~ -~21230~^~617~^3.817^9^0.096^~1~^~AS~^^^1^2.780^4.302^3^3.526^4.109^~2, 3~^~07/01/2012~ -~21230~^~618~^5.052^9^0.157^~1~^~AS~^^^1^4.212^7.694^4^4.617^5.487^~2, 3~^~07/01/2012~ -~21230~^~619~^0.516^9^0.013^~1~^~AS~^^^1^0.424^0.772^5^0.483^0.549^~2, 3~^~07/01/2012~ -~21230~^~620~^0.028^9^0.001^~1~^~A~^^^1^0.023^0.032^3^0.025^0.031^~2, 3~^~07/01/2012~ -~21230~^~621~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~07/01/2012~ -~21230~^~624~^0.032^9^0.001^~1~^~A~^^^1^0.030^0.043^6^0.030^0.034^~2, 3~^~07/01/2012~ -~21230~^~625~^0.005^9^0.000^~1~^~A~^^^1^0.002^0.006^5^0.004^0.006^~1, 2, 3~^~07/01/2012~ -~21230~^~626~^0.164^9^0.009^~1~^~AS~^^^1^0.077^0.199^5^0.139^0.188^~2, 3~^~07/01/2012~ -~21230~^~627~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~21230~^~628~^0.076^9^0.011^~1~^~A~^^^1^0.036^0.117^2^0.035^0.118^~2, 3~^~07/01/2012~ -~21230~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.001^~1, 2, 3~^~11/01/2006~ -~21230~^~630~^0.004^9^0.000^~1~^~AS~^^^1^0.000^0.005^4^0.003^0.004^~2, 3~^~07/01/2012~ -~21230~^~631~^0.002^9^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.005^~1, 2, 3~^~07/01/2012~ -~21230~^~645~^4.077^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~646~^5.631^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~652~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.001^0.009^~1, 2, 3~^~07/01/2012~ -~21230~^~653~^0.013^9^0.000^~1~^~A~^^^1^0.011^0.017^5^0.012^0.014^~2, 3~^~07/01/2012~ -~21230~^~654~^0.015^9^0.000^~1~^~A~^^^1^0.014^0.019^4^0.014^0.016^~2, 3~^~07/01/2012~ -~21230~^~662~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~21230~^~663~^0.029^9^0.001^~1~^~A~^^^1^0.018^0.035^3^0.026^0.032^~2, 3~^~07/01/2012~ -~21230~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21230~^~665~^0.049^9^0.002^~1~^~A~^^^1^0.043^0.072^5^0.045^0.052^~2, 3~^~07/01/2012~ -~21230~^~670~^0.013^9^0.000^~1~^~A~^^^1^0.011^0.018^3^0.012^0.015^~2, 3~^~07/01/2012~ -~21230~^~671~^0.004^9^0.003^~1~^~A~^^^1^0.000^0.014^2^-0.009^0.017^~1, 2, 3~^~07/01/2012~ -~21230~^~672~^0.009^9^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.009^~2, 3~^~07/01/2012~ -~21230~^~673~^0.163^9^0.009^~1~^~A~^^^1^0.077^0.199^5^0.139^0.187^~2, 3~^~07/01/2012~ -~21230~^~674~^3.788^9^0.097^~1~^~A~^^^1^2.761^4.271^3^3.494^4.083^~2, 3~^~07/01/2012~ -~21230~^~675~^4.991^9^0.157^~1~^~A~^^^1^4.154^7.607^4^4.556^5.425^~2, 3~^~07/01/2012~ -~21230~^~676~^0.004^9^0.000^~1~^~A~^^^1^0.000^0.005^4^0.003^0.004^~1, 2, 3~^~07/01/2012~ -~21230~^~685~^0.019^9^0.006^~1~^~A~^^^1^0.000^0.037^2^-0.002^0.040^~1, 2, 3~^~04/01/2015~ -~21230~^~687~^0.007^9^0.000^~1~^~A~^^^1^0.006^0.009^3^0.006^0.008^~2, 3~^~07/01/2012~ -~21230~^~689~^0.010^9^0.000^~1~^~AS~^^^1^0.006^0.012^2^0.009^0.012^~2, 3~^~07/01/2012~ -~21230~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21230~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21230~^~851~^0.497^9^0.016^~1~^~A~^^^1^0.401^0.772^5^0.456^0.538^~2, 3~^~07/01/2012~ -~21230~^~852~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~07/01/2012~ -~21230~^~853~^0.010^9^0.001^~1~^~A~^^^1^0.006^0.011^3^0.008^0.011^~2, 3~^~07/01/2012~ -~21230~^~858~^0.010^9^0.001^~1~^~A~^^^1^0.000^0.012^4^0.008^0.012^~1, 2, 3~^~04/01/2015~ -~21232~^~312~^0.066^6^0.001^~1~^~A~^^^1^0.062^0.072^5^0.062^0.070^~4~^~07/01/2012~ -~21232~^~315~^0.262^6^0.007^~1~^~A~^^^1^0.245^0.295^5^0.243^0.281^~4~^~07/01/2012~ -~21232~^~404~^0.211^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~406~^2.220^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21232~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~606~^2.833^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~607~^0.025^3^0.005^~1~^~A~^^^1^0.018^0.034^2^0.005^0.045^~4~^~07/01/2012~ -~21232~^~608~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.022^0.026^~4~^~07/01/2012~ -~21232~^~609~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~4~^~07/01/2012~ -~21232~^~610~^0.045^3^0.003^~1~^~A~^^^1^0.040^0.049^2^0.033^0.056^~4~^~07/01/2012~ -~21232~^~611~^0.048^3^0.002^~1~^~A~^^^1^0.044^0.052^2^0.038^0.058^~4~^~07/01/2012~ -~21232~^~612~^0.164^3^0.006^~1~^~A~^^^1^0.154^0.176^2^0.136^0.192^~4~^~07/01/2012~ -~21232~^~613~^1.613^3^0.005^~1~^~A~^^^1^1.606^1.623^2^1.591^1.635^~4~^~07/01/2012~ -~21232~^~614~^0.750^3^0.010^~1~^~A~^^^1^0.738^0.770^2^0.707^0.793^~4~^~07/01/2012~ -~21232~^~615~^0.048^3^0.001^~1~^~A~^^^1^0.047^0.049^2^0.045^0.050^~4~^~07/01/2012~ -~21232~^~617~^3.849^3^0.033^~1~^~AS~^^^1^3.785^3.890^2^3.709^3.989^~4~^~07/01/2012~ -~21232~^~618~^5.187^3^0.121^~1~^~AS~^^^1^4.947^5.326^2^4.668^5.706^~4~^~07/01/2012~ -~21232~^~619~^0.639^3^0.017^~1~^~AS~^^^1^0.604^0.659^2^0.564^0.714^~4~^~07/01/2012~ -~21232~^~620~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~4~^~07/01/2012~ -~21232~^~621~^0.061^3^0.002^~1~^~A~^^^1^0.059^0.064^2^0.053^0.068^~4~^~07/01/2012~ -~21232~^~624~^0.038^3^0.000^~1~^~A~^^^1^0.037^0.038^2^0.036^0.039^~4~^~07/01/2012~ -~21232~^~625~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.009^0.020^~4~^~07/01/2012~ -~21232~^~626~^0.049^3^0.001^~1~^~AS~^^^1^0.048^0.050^2^0.046^0.052^~4~^~07/01/2012~ -~21232~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 4~^~07/01/2012~ -~21232~^~628~^0.070^3^0.001^~1~^~A~^^^1^0.069^0.072^2^0.066^0.074^~4~^~07/01/2012~ -~21232~^~629~^0.030^3^0.000^~1~^~A~^^^1^0.029^0.030^2^0.028^0.031^~4~^~07/01/2012~ -~21232~^~630~^0.007^3^0.000^~1~^~AS~^^^1^0.007^0.008^2^0.006^0.009^~4~^~07/01/2012~ -~21232~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~4~^~07/01/2012~ -~21232~^~645~^4.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~646~^5.952^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~652~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~4~^~07/01/2012~ -~21232~^~653~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~4~^~07/01/2012~ -~21232~^~654~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.017^2^0.017^0.017^~4~^~07/01/2012~ -~21232~^~662~^0.006^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.011^~4~^~07/01/2012~ -~21232~^~663~^0.061^3^0.005^~1~^~A~^^^1^0.055^0.070^2^0.041^0.081^~4~^~07/01/2012~ -~21232~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21232~^~665~^0.061^3^0.005^~1~^~A~^^^1^0.056^0.070^2^0.042^0.080^~4~^~07/01/2012~ -~21232~^~670~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.013^0.027^~4~^~07/01/2012~ -~21232~^~671~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.015^2^-0.016^0.026^~1, 4~^~07/01/2012~ -~21232~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~4~^~07/01/2012~ -~21232~^~673~^0.044^3^0.001^~1~^~A~^^^1^0.043^0.045^2^0.041^0.047^~4~^~07/01/2012~ -~21232~^~674~^3.788^3^0.031^~1~^~A~^^^1^3.727^3.820^2^3.656^3.920^~4~^~07/01/2012~ -~21232~^~675~^5.106^3^0.127^~1~^~A~^^^1^4.854^5.252^2^4.561^5.651^~4~^~07/01/2012~ -~21232~^~676~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~4~^~07/01/2012~ -~21232~^~685~^0.024^3^0.012^~1~^~A~^^^1^0.000^0.037^2^-0.028^0.077^~1, 4~^~07/01/2012~ -~21232~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~07/01/2012~ -~21232~^~689~^0.006^3^0.001^~1~^~AS~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21232~^~693~^0.067^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21232~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21232~^~851~^0.614^3^0.025^~1~^~A~^^^1^0.568^0.653^2^0.508^0.721^~4~^~07/01/2012~ -~21232~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21232~^~853~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21232~^~858~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~4~^~07/01/2012~ -~21233~^~312~^0.097^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~315~^0.230^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~404~^0.223^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~405~^0.260^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~406~^4.026^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21233~^~606~^4.435^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21233~^~645~^3.631^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21233~^~646~^0.355^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~312~^0.107^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~315~^0.199^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~404~^0.183^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~405~^0.344^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~406~^4.452^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~606~^4.008^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~645~^4.202^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21234~^~646~^0.283^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~312~^0.097^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~315~^0.174^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~404~^0.164^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~405~^0.354^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~406~^3.850^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~606~^5.643^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~645~^4.608^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21235~^~646~^0.433^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~312~^0.098^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~315~^0.206^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~404~^0.176^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~405~^0.209^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~406~^3.384^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21237~^~606~^3.803^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~645~^3.474^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21237~^~646~^0.306^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21238~^~312~^0.114^6^0.013^~1~^~A~^^^1^0.072^0.154^5^0.081^0.147^~2, 3~^~08/01/2012~ -~21238~^~315~^0.249^6^0.013^~1~^~A~^^^1^0.215^0.310^5^0.215^0.284^~2, 3~^~08/01/2012~ -~21238~^~404~^0.180^3^0.006^~1~^~A~^^^1^0.170^0.190^2^0.155^0.205^~2, 3~^~08/01/2012~ -~21238~^~405~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~2, 3~^~08/01/2012~ -~21238~^~406~^3.220^3^0.234^~1~^~A~^^^1^2.860^3.660^2^2.211^4.229^~2, 3~^~08/01/2012~ -~21238~^~410~^0.590^2^^~1~^~A~^^^1^0.560^0.620^1^^^^~08/01/2012~ -~21238~^~415~^0.380^3^0.050^~1~^~A~^^^1^0.280^0.430^2^0.165^0.595^~2, 3~^~08/01/2012~ -~21238~^~605~^0.064^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~606~^2.271^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~607~^0.085^6^0.082^~1~^~A~^^^1^0.002^0.494^5^-0.124^0.295^~1, 2, 3~^~08/01/2012~ -~21238~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21238~^~609~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.015^5^0.007^0.013^~2, 3~^~08/01/2012~ -~21238~^~610~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.013^5^0.010^0.013^~2, 3~^~08/01/2012~ -~21238~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.002^0.009^5^0.002^0.008^~1, 2, 3~^~08/01/2012~ -~21238~^~612~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~2, 3~^~08/01/2012~ -~21238~^~613~^0.961^6^0.027^~1~^~A~^^^1^0.869^1.047^5^0.892^1.030^~2, 3~^~08/01/2012~ -~21238~^~614~^1.015^6^0.042^~1~^~A~^^^1^0.831^1.115^5^0.908^1.122^~2, 3~^~08/01/2012~ -~21238~^~615~^0.084^6^0.002^~1~^~A~^^^1^0.075^0.091^5^0.078^0.091^~2, 3~^~08/01/2012~ -~21238~^~617~^7.191^6^0.195^~1~^~AS~^^^1^6.507^7.844^5^6.691^7.692^~2, 3~^~08/01/2012~ -~21238~^~618~^4.298^6^0.129^~1~^~AS~^^^1^3.861^4.735^5^3.968^4.629^~2, 3~^~08/01/2012~ -~21238~^~619~^0.413^6^0.013^~1~^~AS~^^^1^0.361^0.457^5^0.379^0.447^~2, 3~^~08/01/2012~ -~21238~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~08/01/2012~ -~21238~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~624~^0.046^6^0.001^~1~^~A~^^^1^0.041^0.050^5^0.042^0.050^~2, 3~^~08/01/2012~ -~21238~^~625~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21238~^~626~^0.026^6^0.001^~1~^~AS~^^^1^0.024^0.027^5^0.024^0.027^~2, 3~^~08/01/2012~ -~21238~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~628~^0.144^6^0.003^~1~^~A~^^^1^0.139^0.156^5^0.138^0.151^~2, 3~^~08/01/2012~ -~21238~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21238~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21238~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~645~^7.379^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~646~^4.727^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21238~^~653~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~08/01/2012~ -~21238~^~654~^0.024^6^0.001^~1~^~A~^^^1^0.022^0.026^5^0.023^0.026^~2, 3~^~08/01/2012~ -~21238~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~663~^0.031^6^0.001^~1~^~A~^^^1^0.025^0.034^5^0.028^0.035^~2, 3~^~08/01/2012~ -~21238~^~664~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~21238~^~665~^0.030^6^0.001^~1~^~A~^^^1^0.024^0.033^5^0.027^0.034^~2, 3~^~08/01/2012~ -~21238~^~670~^0.017^6^0.001^~1~^~A~^^^1^0.013^0.021^5^0.014^0.020^~2, 3~^~08/01/2012~ -~21238~^~671~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~08/01/2012~ -~21238~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~08/01/2012~ -~21238~^~673~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.027^5^0.024^0.027^~2, 3~^~08/01/2012~ -~21238~^~674~^7.160^6^0.194^~1~^~A~^^^1^6.482^7.810^5^6.662^7.659^~2, 3~^~08/01/2012~ -~21238~^~675~^4.251^6^0.128^~1~^~A~^^^1^3.811^4.686^5^3.922^4.580^~2, 3~^~08/01/2012~ -~21238~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21238~^~685~^0.031^6^0.001^~1~^~A~^^^1^0.026^0.034^5^0.028^0.034^~2, 3~^~08/01/2012~ -~21238~^~687~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~08/01/2012~ -~21238~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^-0.001^0.001^~2, 3~^~07/01/2008~ -~21238~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21238~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21238~^~851~^0.382^6^0.013^~1~^~A~^^^1^0.331^0.423^5^0.350^0.415^~2, 3~^~08/01/2012~ -~21238~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~21238~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21238~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21239~^~312~^0.139^4^0.013^~1~^~A~^^^1^0.106^0.163^3^0.098^0.181^~2, 3~^~08/01/2004~ -~21239~^~315~^0.187^4^0.006^~1~^~A~^^^1^0.171^0.198^3^0.169^0.206^~2, 3~^~08/01/2004~ -~21239~^~404~^0.275^4^0.008^~1~^~A~^^^1^0.258^0.297^3^0.248^0.302^~2, 3~^~08/01/2004~ -~21239~^~405~^0.205^4^0.013^~1~^~A~^^^1^0.184^0.242^3^0.163^0.247^~2, 3~^~08/01/2004~ -~21239~^~406~^3.225^4^0.058^~1~^~A~^^^1^3.080^3.350^3^3.039^3.411^~2, 3~^~08/01/2004~ -~21239~^~410~^0.336^4^0.029^~1~^~A~^^^1^0.264^0.399^3^0.245^0.427^~2, 3~^~08/01/2004~ -~21239~^~415~^0.114^4^0.009^~1~^~A~^^^1^0.087^0.129^3^0.084^0.144^~2, 3~^~08/01/2004~ -~21239~^~501~^0.133^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~502~^0.459^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~503~^0.459^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~504~^0.827^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~505~^0.769^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~506~^0.240^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~508~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~509~^0.251^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~510~^0.524^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~511~^0.666^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~512~^0.301^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~513~^0.699^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~514~^0.997^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~515~^2.145^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~516~^0.801^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~517~^0.754^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~518~^0.491^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21239~^~606~^3.689^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21239~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~612~^0.245^4^0.009^~1~^~A~^^^1^0.230^0.260^3^0.217^0.272^~2, 3~^~08/01/2004~ -~21239~^~613~^2.110^4^0.073^~1~^~A~^^^1^1.960^2.310^3^1.877^2.343^~2, 3~^~08/01/2004~ -~21239~^~614~^1.165^4^0.052^~1~^~A~^^^1^1.080^1.310^3^0.999^1.330^~2, 3~^~08/01/2004~ -~21239~^~615~^0.015^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.006^0.024^~2, 3~^~08/01/2004~ -~21239~^~617~^3.622^4^0.074^~1~^~A~^^^1^3.430^3.780^3^3.387^3.858^~2, 3~^~08/01/2004~ -~21239~^~618~^1.308^4^0.071^~1~^~A~^^^1^1.110^1.450^3^1.080^1.535^~2, 3~^~08/01/2004~ -~21239~^~619~^0.172^4^0.011^~1~^~A~^^^1^0.140^0.190^3^0.137^0.208^~2, 3~^~08/01/2004~ -~21239~^~620~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~08/01/2004~ -~21239~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~625~^0.075^4^0.003^~1~^~A~^^^1^0.070^0.080^3^0.066^0.084^~2, 3~^~08/01/2004~ -~21239~^~626~^0.330^4^0.011^~1~^~A~^^^1^0.310^0.360^3^0.296^0.364^~2, 3~^~08/01/2004~ -~21239~^~627~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~08/01/2004~ -~21239~^~628~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~08/01/2004~ -~21239~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~630~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~08/01/2004~ -~21239~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~645~^4.077^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21239~^~646~^1.550^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21239~^~652~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~08/01/2004~ -~21239~^~653~^0.105^4^0.005^~1~^~A~^^^1^0.090^0.110^3^0.089^0.121^~2, 3~^~08/01/2004~ -~21239~^~654~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~08/01/2004~ -~21239~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21239~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21240~^~312~^0.075^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~315~^0.162^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~404~^0.260^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~405~^0.256^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~406~^3.190^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~410~^0.291^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~415~^0.106^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~501~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~502~^0.450^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~503~^0.470^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~504~^0.850^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~505~^0.780^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~506~^0.250^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~508~^0.470^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~509~^0.270^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~510~^0.530^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~511~^0.630^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~512~^0.310^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~513~^0.630^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~514~^0.980^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~515~^2.200^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~516~^0.690^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~517~^0.790^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~518~^0.510^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~606~^5.191^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~607~^0.122^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~608~^0.071^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~609~^0.045^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~610~^0.073^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~611~^0.081^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~612~^0.419^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~613~^2.719^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~614~^1.451^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~617~^3.854^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~618~^1.195^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~619~^0.161^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~620~^0.019^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~624~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~625~^0.089^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~626~^0.393^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~627~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~628~^0.031^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~630~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~645~^4.407^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~646~^1.405^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21240~^~652~^0.057^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~653~^0.113^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~654~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~662~^0.032^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~663~^0.311^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~666~^0.052^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~673~^0.361^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~674~^3.543^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~675~^1.143^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~687~^0.036^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21240~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~851~^0.161^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21240~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21240~^~855~^0.019^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~312~^0.117^4^0.004^~1~^~A~^^^1^0.106^0.126^3^0.103^0.130^~2, 3~^~08/01/2004~ -~21241~^~315~^0.281^4^0.009^~1~^~A~^^^1^0.255^0.295^3^0.253^0.309^~2, 3~^~08/01/2004~ -~21241~^~404~^0.422^4^0.032^~1~^~A~^^^1^0.368^0.504^3^0.321^0.522^~2, 3~^~08/01/2004~ -~21241~^~405~^0.235^4^0.064^~1~^~A~^^^1^0.139^0.423^3^0.033^0.438^~2, 3~^~08/01/2004~ -~21241~^~406~^3.887^4^0.087^~1~^~A~^^^1^3.740^4.120^3^3.611^4.164^~2, 3~^~08/01/2004~ -~21241~^~410~^0.346^4^0.027^~1~^~A~^^^1^0.302^0.416^3^0.262^0.431^~2, 3~^~08/01/2004~ -~21241~^~415~^0.124^4^0.024^~1~^~A~^^^1^0.077^0.179^3^0.048^0.200^~2, 3~^~08/01/2004~ -~21241~^~501~^0.117^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~502~^0.410^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~503~^0.425^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~504~^0.781^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~505~^0.618^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~506~^0.222^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~507~^0.160^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~508~^0.458^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~509~^0.210^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~510~^0.483^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~511~^0.565^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~512~^0.283^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~513~^0.596^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~514~^0.853^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~515~^2.390^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~516~^0.683^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~517~^0.836^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~518~^0.488^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21241~^~605~^0.269^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~606~^3.466^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21241~^~607~^0.007^2^^~1~^~A~^^^1^0.005^0.008^1^^^^~08/01/2004~ -~21241~^~608~^0.007^2^^~1~^~A~^^^1^0.006^0.008^1^^^^~08/01/2004~ -~21241~^~609~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.003^0.011^~1, 2, 3~^~08/01/2004~ -~21241~^~610~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.004^0.013^~1, 2, 3~^~08/01/2004~ -~21241~^~611~^0.031^4^0.018^~1~^~A~^^^1^0.000^0.065^3^-0.026^0.089^~1, 2, 3~^~08/01/2004~ -~21241~^~612~^0.232^4^0.006^~1~^~A~^^^1^0.220^0.250^3^0.212^0.252^~2, 3~^~08/01/2004~ -~21241~^~613~^1.928^4^0.066^~1~^~A~^^^1^1.800^2.056^3^1.718^2.138^~2, 3~^~08/01/2004~ -~21241~^~614~^1.105^4^0.055^~1~^~A~^^^1^1.000^1.245^3^0.931^1.279^~2, 3~^~08/01/2004~ -~21241~^~615~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.008^0.017^~2, 3~^~08/01/2004~ -~21241~^~617~^3.062^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~618~^0.980^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~619~^0.103^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~620~^0.012^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~624~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.010^~1, 2, 3~^~08/01/2004~ -~21241~^~625~^0.069^4^0.003^~1~^~A~^^^1^0.060^0.073^3^0.059^0.078^~2, 3~^~08/01/2004~ -~21241~^~626~^0.334^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~627~^0.020^4^0.012^~1~^~A~^^^1^0.000^0.040^3^-0.017^0.057^~1, 2, 3~^~08/01/2004~ -~21241~^~628~^0.028^4^0.007^~1~^~A~^^^1^0.011^0.040^3^0.004^0.051^~2, 3~^~08/01/2004~ -~21241~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~630~^0.010^4^0.006^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.028^~1, 2, 3~^~08/01/2004~ -~21241~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~645~^3.531^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21241~^~646~^1.116^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21241~^~652~^0.037^4^0.002^~1~^~A~^^^1^0.032^0.040^3^0.030^0.043^~2, 3~^~08/01/2004~ -~21241~^~653~^0.090^4^0.006^~1~^~A~^^^1^0.075^0.100^3^0.071^0.109^~2, 3~^~08/01/2004~ -~21241~^~654~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.010^~1, 2, 3~^~08/01/2004~ -~21241~^~662~^0.027^2^^~1~^~A~^^^1^0.025^0.029^1^^^^~08/01/2004~ -~21241~^~663~^0.205^2^^~1~^~A~^^^1^0.190^0.220^1^^^^~08/01/2004~ -~21241~^~666~^0.038^2^^~1~^~A~^^^1^0.027^0.049^1^^^^~08/01/2004~ -~21241~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~673~^0.307^4^0.014^~1~^~A~^^^1^0.270^0.336^3^0.261^0.353^~2, 3~^~08/01/2004~ -~21241~^~674~^2.857^2^^~1~^~A~^^^1^2.856^2.859^1^^^^~08/01/2004~ -~21241~^~675~^0.943^4^0.033^~1~^~A~^^^1^0.870^1.020^3^0.837^1.048^~2, 3~^~08/01/2004~ -~21241~^~687~^0.029^4^0.017^~1~^~A~^^^1^0.000^0.058^3^-0.024^0.082^~1, 2, 3~^~08/01/2004~ -~21241~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21241~^~693~^0.231^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21241~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~08/01/2004~ -~21241~^~851~^0.103^4^0.006^~1~^~A~^^^1^0.090^0.120^3^0.083^0.123^~2, 3~^~08/01/2004~ -~21241~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21241~^~855~^0.012^4^0.001^~1~^~A~^^^1^0.010^0.016^3^0.008^0.017^~2, 3~^~08/01/2004~ -~21242~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~315~^0.242^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~404~^0.361^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~405~^0.171^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~406~^3.080^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~410~^0.302^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~415~^0.956^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~502~^0.440^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~503~^0.480^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~504~^0.870^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~505~^0.700^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~506~^0.250^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~507~^0.160^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~508~^0.500^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~509~^0.260^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~510~^0.550^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~511~^0.580^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~512~^0.300^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~514~^0.920^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~515~^2.480^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~516~^0.650^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~517~^0.900^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~518~^0.540^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~605~^0.466^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~606~^5.181^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~607~^0.104^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~608~^0.065^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~609~^0.045^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~610~^0.083^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~611~^0.096^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~612~^0.477^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~613~^2.658^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~614~^1.443^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~617~^3.862^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~618~^1.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~619~^0.122^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~620~^0.020^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~624~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~625~^0.082^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~626~^0.377^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~627~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~630~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~645~^4.398^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~646~^1.181^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~652~^0.062^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~653~^0.113^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~654~^0.009^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~662~^0.035^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~663~^0.386^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~666~^0.046^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~673~^0.342^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~674~^3.476^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~675~^0.963^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~687~^0.036^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21242~^~693~^0.420^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21242~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~851~^0.122^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21242~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21242~^~855~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~312~^0.075^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~315~^0.133^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~404~^0.242^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~405~^0.251^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~406~^3.520^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~410~^0.359^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~415~^0.189^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~501~^0.160^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~502~^0.570^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~503~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~504~^1.060^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~505~^1.010^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~506~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~508~^0.570^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~509~^0.350^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~510~^0.680^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~511~^0.810^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~512~^0.380^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~513~^0.860^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~514~^1.230^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~515~^2.440^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~516~^0.930^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~517~^0.900^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~518~^0.600^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~606~^5.890^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~609~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~610~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~611~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~612~^0.500^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~613~^3.240^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~614~^1.750^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~617~^5.090^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~618~^1.040^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~619~^0.150^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~625~^0.110^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~626~^0.490^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~627~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~628~^0.050^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~645~^5.740^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~646~^1.300^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21243~^~652~^0.070^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~653~^0.160^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~654~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21243~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21243~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~312~^0.135^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~315~^0.230^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~404~^0.295^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~406~^3.300^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~410~^0.526^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~415~^0.189^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~502~^0.500^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~503~^0.540^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~504~^0.930^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~505~^0.830^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~506~^0.290^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~508~^0.510^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~509~^0.270^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~510~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~511~^0.650^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~512~^0.380^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~513~^0.650^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~514~^1.060^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~515~^2.360^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~516~^0.520^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~517~^0.680^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~518~^0.530^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~606~^1.618^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21244~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~610~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~611~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~612~^0.012^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~613~^1.056^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~614~^0.487^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~615~^0.023^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~617~^2.764^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~618~^2.826^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~619~^0.233^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~620~^0.017^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~624~^0.021^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~625~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~626~^0.131^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~627~^0.010^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~645~^2.921^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21244~^~646~^3.086^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21244~^~652~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~653~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~654~^0.008^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~687~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~ -~21244~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~851~^0.233^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21244~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21244~^~855~^0.017^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~312~^0.075^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~315~^0.196^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~404~^0.392^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~405~^0.260^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~406~^4.160^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~415~^0.141^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~501~^0.170^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~502~^0.570^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~503~^0.620^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~504~^1.040^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~505~^0.990^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~506~^0.320^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~507~^0.190^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~509~^0.320^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~510~^0.660^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~511~^0.760^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~512~^0.420^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~513~^0.730^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~514~^1.230^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~515~^2.450^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~516~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~517~^0.680^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~518~^0.580^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~606~^1.030^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~613~^0.730^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~614~^0.280^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~617~^1.300^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~618~^1.600^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~619~^0.190^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~626~^0.130^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~630~^0.010^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21245~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~645~^1.460^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~646~^1.810^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~ -~21245~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21245~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21246~^~312~^0.061^6^0.003^~1~^~A~^^^1^0.055^0.077^5^0.052^0.069^~4~^~08/01/2012~ -~21246~^~315~^0.190^6^0.008^~1~^~A~^^^1^0.173^0.221^5^0.171^0.209^~4~^~08/01/2012~ -~21246~^~404~^0.079^4^0.004^~1~^~A~^^^1^0.070^0.089^3^0.067^0.092^~2, 3~^~08/01/2004~ -~21246~^~405~^0.122^4^0.008^~1~^~A~^^^1^0.101^0.138^3^0.097^0.146^~2, 3~^~08/01/2004~ -~21246~^~406~^6.042^4^0.237^~1~^~A~^^^1^5.400^6.480^3^5.289^6.796^~2, 3~^~08/01/2004~ -~21246~^~410~^0.905^3^0.044^~1~^~A~^^^1^0.817^0.960^2^0.714^1.096^~2, 3~^~08/01/2004~ -~21246~^~415~^0.254^4^0.013^~1~^~A~^^^1^0.214^0.271^3^0.211^0.297^~2, 3~^~08/01/2004~ -~21246~^~605~^0.161^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~606~^4.787^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~607~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 4~^~08/01/2012~ -~21246~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~08/01/2004~ -~21246~^~609~^0.028^3^0.001^~1~^~A~^^^1^0.027^0.031^2^0.023^0.034^~4~^~08/01/2012~ -~21246~^~610~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.021^~4~^~08/01/2012~ -~21246~^~611~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~08/01/2012~ -~21246~^~612~^0.070^3^0.005^~1~^~A~^^^1^0.060^0.076^2^0.048^0.091^~4~^~08/01/2012~ -~21246~^~613~^3.395^3^0.140^~1~^~A~^^^1^3.125^3.595^2^2.792^3.997^~4~^~08/01/2012~ -~21246~^~614~^1.111^3^0.029^~1~^~A~^^^1^1.053^1.144^2^0.986^1.236^~4~^~08/01/2012~ -~21246~^~615~^0.058^3^0.001^~1~^~A~^^^1^0.056^0.060^2^0.053^0.063^~4~^~08/01/2012~ -~21246~^~617~^5.645^3^0.224^~1~^~AS~^^^1^5.200^5.909^2^4.682^6.609^~4~^~08/01/2012~ -~21246~^~618~^9.186^3^0.138^~1~^~AS~^^^1^8.947^9.426^2^8.591^9.781^~4~^~08/01/2012~ -~21246~^~619~^0.809^3^0.003^~1~^~AS~^^^1^0.805^0.814^2^0.798^0.820^~4~^~08/01/2012~ -~21246~^~620~^0.056^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.043^0.070^~4~^~08/01/2012~ -~21246~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~08/01/2012~ -~21246~^~624~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.051^2^0.043^0.054^~4~^~08/01/2012~ -~21246~^~625~^0.012^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.018^~4~^~08/01/2012~ -~21246~^~626~^0.358^3^0.038^~1~^~AS~^^^1^0.295^0.425^2^0.196^0.520^~4~^~08/01/2012~ -~21246~^~627~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~08/01/2012~ -~21246~^~628~^0.100^3^0.014^~1~^~A~^^^1^0.073^0.116^2^0.041^0.159^~4~^~08/01/2012~ -~21246~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^2^0.002^0.002^~1, 4~^~08/01/2012~ -~21246~^~630~^0.004^3^0.002^~1~^~AS~^^^1^0.001^0.008^2^-0.006^0.013^~4~^~08/01/2012~ -~21246~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~08/01/2012~ -~21246~^~645~^6.138^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~646~^10.117^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~652~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~08/01/2012~ -~21246~^~653~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~4~^~08/01/2012~ -~21246~^~654~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~4~^~08/01/2012~ -~21246~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~08/01/2012~ -~21246~^~663~^0.044^3^0.002^~1~^~A~^^^1^0.041^0.047^2^0.037^0.052^~4~^~08/01/2012~ -~21246~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~08/01/2012~ -~21246~^~665~^0.114^3^0.007^~1~^~A~^^^1^0.103^0.126^2^0.085^0.143^~4~^~08/01/2012~ -~21246~^~670~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.032^2^0.025^0.035^~4~^~08/01/2012~ -~21246~^~671~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~4~^~08/01/2012~ -~21246~^~672~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.013^0.020^~4~^~08/01/2012~ -~21246~^~673~^0.356^3^0.038^~1~^~A~^^^1^0.293^0.423^2^0.194^0.517^~4~^~08/01/2012~ -~21246~^~674~^5.601^3^0.222^~1~^~A~^^^1^5.159^5.864^2^4.644^6.558^~4~^~08/01/2012~ -~21246~^~675~^9.042^3^0.140^~1~^~A~^^^1^8.806^9.292^2^8.437^9.646^~4~^~08/01/2012~ -~21246~^~676~^0.004^3^0.002^~1~^~A~^^^1^0.001^0.008^2^-0.006^0.013^~1, 4~^~08/01/2012~ -~21246~^~685~^0.044^3^0.003^~1~^~A~^^^1^0.040^0.051^2^0.030^0.059^~4~^~08/01/2012~ -~21246~^~687~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.010^0.016^~4~^~08/01/2012~ -~21246~^~689~^0.018^3^0.000^~1~^~AS~^^^1^0.017^0.018^2^0.016^0.019^~4~^~08/01/2012~ -~21246~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~695~^0.114^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21246~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~08/01/2012~ -~21246~^~851~^0.765^3^0.006^~1~^~A~^^^1^0.754^0.772^2^0.741^0.789^~4~^~08/01/2012~ -~21246~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 4~^~08/01/2012~ -~21246~^~853~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.014^0.019^~4~^~08/01/2012~ -~21246~^~858~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.016^0.020^~4~^~08/01/2012~ -~21247~^~312~^0.159^6^0.018^~1~^~A~^^^1^0.084^0.212^5^0.114^0.204^~2, 3~^~08/01/2012~ -~21247~^~315~^0.271^6^0.022^~1~^~A~^^^1^0.209^0.343^5^0.215^0.327^~2, 3~^~08/01/2012~ -~21247~^~404~^0.157^3^0.009^~1~^~A~^^^1^0.140^0.170^2^0.119^0.195^~2, 3~^~08/01/2012~ -~21247~^~405~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~08/01/2012~ -~21247~^~406~^3.007^3^0.094^~1~^~A~^^^1^2.820^3.120^2^2.602^3.411^~2, 3~^~08/01/2012~ -~21247~^~410~^0.630^2^^~1~^~A~^^^1^0.560^0.700^1^^^^~08/01/2012~ -~21247~^~415~^0.387^3^0.039^~1~^~A~^^^1^0.310^0.440^2^0.218^0.556^~2, 3~^~08/01/2012~ -~21247~^~605~^0.062^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~606~^2.790^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~607~^0.137^6^0.134^~1~^~A~^^^1^0.002^0.807^5^-0.207^0.481^~1, 2, 3~^~08/01/2012~ -~21247~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2004~ -~21247~^~609~^0.033^6^0.003^~1~^~A~^^^1^0.021^0.041^5^0.025^0.041^~2, 3~^~08/01/2012~ -~21247~^~610~^0.022^6^0.002^~1~^~A~^^^1^0.016^0.029^5^0.017^0.027^~2, 3~^~08/01/2012~ -~21247~^~611~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.005^~1, 2, 3~^~08/01/2012~ -~21247~^~612~^0.032^6^0.001^~1~^~A~^^^1^0.027^0.037^5^0.028^0.035^~2, 3~^~08/01/2012~ -~21247~^~613~^1.767^6^0.054^~1~^~A~^^^1^1.615^1.952^5^1.628^1.906^~2, 3~^~08/01/2012~ -~21247~^~614~^0.675^6^0.025^~1~^~A~^^^1^0.586^0.748^5^0.612^0.738^~2, 3~^~08/01/2012~ -~21247~^~615~^0.049^6^0.001^~1~^~A~^^^1^0.045^0.053^5^0.046^0.052^~2, 3~^~08/01/2012~ -~21247~^~617~^3.124^6^0.076^~1~^~AS~^^^1^2.969^3.442^5^2.929^3.318^~2, 3~^~08/01/2012~ -~21247~^~618~^6.771^6^0.245^~1~^~AS~^^^1^5.885^7.295^5^6.142^7.401^~2, 3~^~08/01/2012~ -~21247~^~619~^0.672^6^0.031^~1~^~AS~^^^1^0.581^0.782^5^0.593^0.751^~2, 3~^~08/01/2012~ -~21247~^~620~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21247~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21247~^~624~^0.036^6^0.001^~1~^~A~^^^1^0.032^0.041^5^0.033^0.039^~2, 3~^~08/01/2012~ -~21247~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~08/01/2012~ -~21247~^~626~^0.026^6^0.001^~1~^~AS~^^^1^0.023^0.030^5^0.023^0.028^~2, 3~^~08/01/2012~ -~21247~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21247~^~628~^0.032^6^0.003^~1~^~A~^^^1^0.025^0.043^5^0.025^0.038^~2, 3~^~08/01/2012~ -~21247~^~629~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~21247~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.005^5^0.002^0.004^~2, 3~^~08/01/2012~ -~21247~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21247~^~645~^3.195^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~646~^7.456^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~652~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.006^~2, 3~^~08/01/2012~ -~21247~^~653~^0.014^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.012^0.015^~2, 3~^~08/01/2012~ -~21247~^~654~^0.018^6^0.000^~1~^~A~^^^1^0.017^0.020^5^0.017^0.019^~2, 3~^~08/01/2012~ -~21247~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~663~^0.017^6^0.002^~1~^~A~^^^1^0.009^0.023^5^0.012^0.022^~2, 3~^~08/01/2012~ -~21247~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21247~^~665~^0.043^6^0.001^~1~^~A~^^^1^0.039^0.049^5^0.039^0.047^~2, 3~^~08/01/2012~ -~21247~^~670~^0.019^6^0.001^~1~^~A~^^^1^0.015^0.024^5^0.016^0.023^~2, 3~^~08/01/2012~ -~21247~^~671~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21247~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21247~^~673~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.030^5^0.023^0.028^~2, 3~^~08/01/2012~ -~21247~^~674~^3.107^6^0.074^~1~^~A~^^^1^2.954^3.419^5^2.915^3.298^~2, 3~^~08/01/2012~ -~21247~^~675~^6.709^6^0.244^~1~^~A~^^^1^5.823^7.234^5^6.083^7.336^~2, 3~^~08/01/2012~ -~21247~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~21247~^~685~^0.033^6^0.003^~1~^~A~^^^1^0.025^0.045^5^0.026^0.041^~2, 3~^~08/01/2012~ -~21247~^~687~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~08/01/2012~ -~21247~^~689~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.002^~2, 3~^~08/01/2012~ -~21247~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21247~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~851~^0.639^6^0.029^~1~^~A~^^^1^0.547^0.737^5^0.565^0.713^~2, 3~^~08/01/2012~ -~21247~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21247~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21247~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21248~^~312~^0.075^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21248~^~315~^0.063^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~405~^0.720^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~406~^0.348^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~410~^0.601^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21248~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~502~^0.150^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~503~^0.150^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~504~^0.290^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~505~^0.250^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~507~^0.040^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~508~^0.140^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~509~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~510~^0.180^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~511~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~512~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~513~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~514~^0.280^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~515~^0.640^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~516~^0.070^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~517~^0.270^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~518~^0.170^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21248~^~606~^1.635^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~609~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~610~^0.067^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~611~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~612~^0.259^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~613~^0.776^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~614~^0.384^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~617~^0.634^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~618~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~619~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~625~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~626~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~645~^0.692^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~646~^0.117^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21248~^~652~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~653~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~21248~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21248~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~21249~^~312~^0.127^6^0.005^~1~^~A~^^^1^0.109^0.142^5^0.114^0.140^~2, 3~^~08/01/2012~ -~21249~^~315~^0.213^6^0.011^~1~^~A~^^^1^0.183^0.256^5^0.184^0.242^~2, 3~^~08/01/2012~ -~21249~^~404~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~08/01/2012~ -~21249~^~405~^0.033^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.019^0.048^~2, 3~^~08/01/2012~ -~21249~^~406~^2.163^3^0.055^~1~^~A~^^^1^2.090^2.270^2^1.929^2.398^~2, 3~^~08/01/2012~ -~21249~^~410~^0.490^2^^~1~^~A~^^^1^0.470^0.510^1^^^^~08/01/2012~ -~21249~^~415~^0.327^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.289^0.365^~2, 3~^~08/01/2012~ -~21249~^~501~^0.028^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~502~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~503~^0.108^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~504~^0.170^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~505~^0.265^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~506~^0.060^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~507~^0.011^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~508~^0.146^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~509~^0.096^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~510~^0.164^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~511~^0.182^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~512~^0.065^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~513~^0.104^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~514~^0.677^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~515~^0.504^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~516~^0.095^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~517~^0.133^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~518~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21249~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2004~ -~21249~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~606~^2.137^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~607~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~08/01/2012~ -~21249~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~609~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~08/01/2012~ -~21249~^~610~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.009^0.011^~2, 3~^~08/01/2012~ -~21249~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~08/01/2012~ -~21249~^~612~^0.031^6^0.002^~1~^~A~^^^1^0.026^0.040^5^0.026^0.037^~2, 3~^~08/01/2012~ -~21249~^~613~^1.676^6^0.051^~1~^~A~^^^1^1.550^1.894^5^1.546^1.806^~2, 3~^~08/01/2012~ -~21249~^~614~^0.313^6^0.014^~1~^~A~^^^1^0.281^0.379^5^0.275^0.350^~2, 3~^~08/01/2012~ -~21249~^~615~^0.038^6^0.008^~1~^~A~^^^1^0.000^0.050^5^0.018^0.058^~1, 2, 3~^~08/01/2012~ -~21249~^~617~^3.199^6^0.171^~1~^~AS~^^^1^2.753^3.760^5^2.759^3.639^~2, 3~^~08/01/2012~ -~21249~^~618~^5.648^6^0.160^~1~^~AS~^^^1^5.200^6.215^5^5.237^6.059^~2, 3~^~08/01/2012~ -~21249~^~619~^0.289^6^0.019^~1~^~AS~^^^1^0.249^0.373^5^0.241^0.337^~2, 3~^~08/01/2012~ -~21249~^~620~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21249~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~624~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.023^5^0.020^0.022^~2, 3~^~08/01/2012~ -~21249~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~626~^0.025^6^0.001^~1~^~AS~^^^1^0.022^0.028^5^0.022^0.027^~2, 3~^~08/01/2012~ -~21249~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~628~^0.037^6^0.007^~1~^~A~^^^1^0.016^0.066^5^0.019^0.055^~2, 3~^~08/01/2012~ -~21249~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.002^~2, 3~^~08/01/2012~ -~21249~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~645~^3.270^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~646~^5.946^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21249~^~653~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.010^5^0.009^0.010^~2, 3~^~08/01/2012~ -~21249~^~654~^0.017^6^0.000^~1~^~A~^^^1^0.016^0.018^5^0.016^0.018^~2, 3~^~08/01/2012~ -~21249~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~663~^0.013^6^0.002^~1~^~A~^^^1^0.009^0.023^5^0.007^0.018^~2, 3~^~08/01/2012~ -~21249~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21249~^~665~^0.033^6^0.001^~1~^~A~^^^1^0.031^0.036^5^0.031^0.035^~2, 3~^~08/01/2012~ -~21249~^~670~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.018^5^0.013^0.017^~2, 3~^~08/01/2012~ -~21249~^~671~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~08/01/2012~ -~21249~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21249~^~673~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.027^~2, 3~^~08/01/2012~ -~21249~^~674~^3.186^6^0.170^~1~^~A~^^^1^2.741^3.737^5^2.750^3.622^~2, 3~^~08/01/2012~ -~21249~^~675~^5.599^6^0.159^~1~^~A~^^^1^5.155^6.163^5^5.190^6.009^~2, 3~^~08/01/2012~ -~21249~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21249~^~685~^0.016^6^0.001^~1~^~A~^^^1^0.013^0.023^5^0.013^0.020^~2, 3~^~08/01/2012~ -~21249~^~687~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~08/01/2012~ -~21249~^~689~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.003^~2, 3~^~08/01/2012~ -~21249~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21249~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~851~^0.273^6^0.017^~1~^~A~^^^1^0.235^0.350^5^0.229^0.317^~2, 3~^~08/01/2012~ -~21249~^~852~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~21249~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21249~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21250~^~312~^0.121^6^0.002^~1~^~A~^^^1^0.116^0.129^5^0.115^0.127^~4~^~07/01/2012~ -~21250~^~315~^0.327^6^0.005^~1~^~A~^^^1^0.307^0.340^5^0.313^0.340^~4~^~07/01/2012~ -~21250~^~404~^0.334^4^0.027^~1~^~A~^^^1^0.258^0.388^3^0.247^0.421^~2, 3~^~07/01/2004~ -~21250~^~405~^0.227^4^0.006^~1~^~A~^^^1^0.210^0.240^3^0.207^0.247^~2, 3~^~07/01/2004~ -~21250~^~406~^3.947^4^0.146^~1~^~A~^^^1^3.510^4.100^3^3.483^4.412^~2, 3~^~07/01/2004~ -~21250~^~410~^0.222^4^0.005^~1~^~A~^^^1^0.210^0.230^3^0.207^0.238^~2, 3~^~07/01/2004~ -~21250~^~415~^0.101^4^0.005^~1~^~A~^^^1^0.088^0.111^3^0.085^0.118^~2, 3~^~07/01/2004~ -~21250~^~605~^0.467^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~606~^3.821^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2004~ -~21250~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2004~ -~21250~^~609~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21250~^~610~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^2^0.009^0.009^~4~^~07/01/2012~ -~21250~^~611~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~07/01/2012~ -~21250~^~612~^0.239^3^0.007^~1~^~A~^^^1^0.231^0.252^2^0.211^0.267^~4~^~07/01/2012~ -~21250~^~613~^2.050^3^0.085^~1~^~A~^^^1^1.945^2.218^2^1.684^2.415^~4~^~07/01/2012~ -~21250~^~614~^1.332^3^0.065^~1~^~A~^^^1^1.250^1.461^2^1.052^1.613^~4~^~07/01/2012~ -~21250~^~615~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~4~^~07/01/2012~ -~21250~^~617~^3.754^3^0.111^~1~^~AS~^^^1^3.597^3.967^2^3.278^4.229^~4~^~07/01/2012~ -~21250~^~618~^1.082^3^0.056^~1~^~AS~^^^1^0.982^1.176^2^0.840^1.323^~4~^~07/01/2012~ -~21250~^~619~^0.107^3^0.008^~1~^~AS~^^^1^0.095^0.123^2^0.072^0.143^~4~^~07/01/2012~ -~21250~^~620~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~4~^~07/01/2012~ -~21250~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 4~^~07/01/2012~ -~21250~^~624~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^2^0.009^0.009^~4~^~07/01/2012~ -~21250~^~625~^0.072^3^0.003^~1~^~A~^^^1^0.068^0.078^2^0.058^0.085^~4~^~07/01/2012~ -~21250~^~626~^0.275^3^0.013^~1~^~AS~^^^1^0.262^0.301^2^0.220^0.330^~4~^~07/01/2012~ -~21250~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21250~^~628~^0.047^3^0.004^~1~^~A~^^^1^0.042^0.054^2^0.030^0.063^~4~^~07/01/2012~ -~21250~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21250~^~630~^0.026^3^0.005^~1~^~AS~^^^1^0.018^0.035^2^0.004^0.047^~4~^~07/01/2012~ -~21250~^~631~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~4~^~07/01/2012~ -~21250~^~645~^4.249^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~646~^1.244^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~652~^0.043^3^0.002^~1~^~A~^^^1^0.041^0.046^2^0.035^0.050^~4~^~07/01/2012~ -~21250~^~653~^0.107^3^0.003^~1~^~A~^^^1^0.103^0.112^2^0.096^0.118^~4~^~07/01/2012~ -~21250~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~07/01/2012~ -~21250~^~662~^0.031^3^0.003^~1~^~A~^^^1^0.027^0.036^2^0.019^0.042^~4~^~07/01/2012~ -~21250~^~663~^0.372^3^0.018^~1~^~A~^^^1^0.348^0.406^2^0.296^0.447^~4~^~07/01/2012~ -~21250~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21250~^~665~^0.065^3^0.002^~1~^~A~^^^1^0.061^0.069^2^0.055^0.075^~4~^~07/01/2012~ -~21250~^~670~^0.050^3^0.003^~1~^~A~^^^1^0.047^0.056^2^0.038^0.063^~4~^~07/01/2012~ -~21250~^~671~^0.007^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.008^0.023^~1, 4~^~07/01/2012~ -~21250~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21250~^~673~^0.245^3^0.010^~1~^~A~^^^1^0.233^0.265^2^0.201^0.288^~4~^~07/01/2012~ -~21250~^~674~^3.382^3^0.121^~1~^~A~^^^1^3.191^3.606^2^2.862^3.902^~4~^~07/01/2012~ -~21250~^~675~^0.967^3^0.051^~1~^~A~^^^1^0.874^1.051^2^0.746^1.187^~4~^~07/01/2012~ -~21250~^~676~^0.026^3^0.005^~1~^~A~^^^1^0.018^0.035^2^0.004^0.047^~4~^~07/01/2012~ -~21250~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 4~^~07/01/2012~ -~21250~^~687~^0.069^3^0.001^~1~^~A~^^^1^0.068^0.072^2^0.064^0.075^~4~^~07/01/2012~ -~21250~^~689~^0.014^3^0.001^~1~^~AS~^^^1^0.013^0.015^2^0.011^0.017^~4~^~07/01/2012~ -~21250~^~693~^0.402^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~695~^0.065^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21250~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2004~ -~21250~^~851~^0.106^3^0.009^~1~^~A~^^^1^0.092^0.123^2^0.068^0.145^~4~^~07/01/2012~ -~21250~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21250~^~853~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~4~^~07/01/2012~ -~21250~^~858~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21251~^~312~^0.110^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~315~^0.290^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~404~^0.303^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~405~^0.240^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~406~^3.400^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~410~^0.230^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~501~^0.080^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~502~^0.500^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~503~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~504~^1.090^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~505~^0.940^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~508~^0.660^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~509~^0.430^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~510~^0.650^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~511~^0.770^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~512~^0.370^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~513~^0.620^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~514~^0.970^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~515~^3.120^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~516~^0.890^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~517~^1.170^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~518~^0.600^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21251~^~521~^0.160^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~606~^6.842^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21251~^~607~^0.079^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~608~^0.049^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~609~^0.043^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~610~^0.075^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~611~^0.105^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~612~^0.684^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~613~^3.583^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~614~^1.955^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~615~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~617~^5.050^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21251~^~618~^1.362^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21251~^~619~^0.123^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21251~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~625~^0.088^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~626~^0.459^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21251~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~628~^0.024^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~645~^5.704^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21251~^~646~^1.521^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21251~^~652~^0.081^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~653~^0.139^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~666~^0.104^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21251~^~675~^1.258^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~687~^0.083^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~689~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21251~^~851~^0.123^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21252~^~312~^0.013^3^0.001^~1~^~A~^^^1^0.013^0.014^2^0.011^0.015^~1, 2, 3~^~07/01/2004~ -~21252~^~315~^0.180^3^0.015^~1~^~A~^^^1^0.150^0.200^2^0.114^0.246^~2, 3~^~07/01/2004~ -~21252~^~404~^0.215^4^0.006^~1~^~A~^^^1^0.205^0.228^3^0.196^0.234^~2, 3~^~07/01/2004~ -~21252~^~405~^0.175^4^0.006^~1~^~A~^^^1^0.160^0.190^3^0.154^0.195^~2, 3~^~07/01/2004~ -~21252~^~406~^2.873^4^0.095^~1~^~A~^^^1^2.720^3.130^3^2.571^3.174^~2, 3~^~07/01/2004~ -~21252~^~410~^0.173^4^0.003^~1~^~A~^^^1^0.170^0.180^3^0.165^0.180^~2, 3~^~07/01/2004~ -~21252~^~415~^0.091^4^0.005^~1~^~A~^^^1^0.079^0.101^3^0.075^0.108^~2, 3~^~07/01/2004~ -~21252~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~502~^0.374^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~503~^0.345^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~504~^0.762^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~505~^0.593^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~506~^0.208^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~508~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~509~^0.268^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~510~^0.416^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~511~^0.574^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~512~^0.253^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~513~^0.511^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~514~^0.754^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~515~^2.311^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~516~^0.760^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~517~^0.990^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~518~^0.461^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21252~^~521~^0.175^4^0.012^~1~^~A~^^^1^0.150^0.200^3^0.137^0.213^~2, 3~^~07/01/2004~ -~21252~^~606~^4.250^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21252~^~607~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.006^~1, 2, 3~^~07/01/2004~ -~21252~^~608~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.006^~1, 2, 3~^~07/01/2004~ -~21252~^~609~^0.006^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.017^~1, 2, 3~^~07/01/2004~ -~21252~^~610~^0.006^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.017^~1, 2, 3~^~07/01/2004~ -~21252~^~611~^0.038^4^0.022^~1~^~A~^^^1^0.000^0.088^3^-0.033^0.109^~1, 2, 3~^~07/01/2004~ -~21252~^~612~^0.249^4^0.013^~1~^~A~^^^1^0.225^0.280^3^0.209^0.289^~2, 3~^~07/01/2004~ -~21252~^~613~^2.435^4^0.049^~1~^~A~^^^1^2.339^2.522^3^2.279^2.590^~2, 3~^~07/01/2004~ -~21252~^~614~^1.342^4^0.032^~1~^~A~^^^1^1.265^1.412^3^1.239^1.445^~2, 3~^~07/01/2004~ -~21252~^~615~^0.013^4^0.007^~1~^~A~^^^1^0.000^0.027^3^-0.011^0.036^~1, 2, 3~^~07/01/2004~ -~21252~^~617~^4.203^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21252~^~618~^0.071^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21252~^~619~^0.275^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~ -~21252~^~620~^0.006^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.017^~1, 2, 3~^~07/01/2004~ -~21252~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~624~^0.010^4^0.006^~1~^~A~^^^1^0.000^0.022^3^-0.008^0.028^~1, 2, 3~^~07/01/2004~ -~21252~^~625~^0.072^4^0.005^~1~^~A~^^^1^0.062^0.085^3^0.057^0.088^~2, 3~^~07/01/2004~ -~21252~^~626~^0.328^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21252~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2004~ -~21252~^~628~^0.013^4^0.007^~1~^~A~^^^1^0.000^0.026^3^-0.011^0.036^~1, 2, 3~^~07/01/2004~ -~21252~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2004~ -~21252~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2004~ -~21252~^~645~^4.685^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21252~^~646~^3.389^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21252~^~652~^0.040^4^0.003^~1~^~A~^^^1^0.034^0.049^3^0.029^0.050^~2, 3~^~07/01/2004~ -~21252~^~653~^0.102^4^0.005^~1~^~A~^^^1^0.089^0.111^3^0.086^0.119^~2, 3~^~07/01/2004~ -~21252~^~654~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.015^3^-0.006^0.020^~1, 2, 3~^~07/01/2004~ -~21252~^~666~^0.071^2^^~1~^~A~^^^1^0.049^0.093^1^^^^~07/01/2004~ -~21252~^~672~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~07/01/2004~ -~21252~^~675~^2.757^2^^~1~^~A~^^^1^2.459^3.055^1^^^^~07/01/2004~ -~21252~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2004~ -~21252~^~687~^0.069^4^0.003^~1~^~A~^^^1^0.063^0.074^3^0.060^0.078^~2, 3~^~07/01/2004~ -~21252~^~689~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.003^0.010^~1, 2, 3~^~07/01/2004~ -~21252~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2004~ -~21252~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2004~ -~21252~^~851~^0.275^4^0.085^~1~^~A~^^^1^0.037^0.430^3^0.004^0.546^~2, 3~^~07/01/2004~ -~21253~^~312~^0.053^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~315~^0.180^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~404~^0.213^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~406~^2.560^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~410~^0.180^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~415~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~502~^0.440^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~503~^0.510^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~504~^0.960^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~505~^0.840^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~506~^0.260^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~509~^0.380^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~510~^0.600^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~511~^0.690^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~512~^0.320^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~514~^0.920^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~515~^2.500^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~516~^0.840^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~517~^0.930^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~518~^0.480^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21253~^~521~^0.150^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~606~^5.782^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21253~^~607~^0.134^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~608~^0.055^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~609~^0.042^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~610~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~611~^0.101^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~612~^0.523^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~613~^3.155^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~614~^1.482^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~617~^4.504^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21253~^~618~^3.315^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~619~^0.469^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21253~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~625~^0.131^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~626~^0.350^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~645~^5.058^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21253~^~646~^3.784^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21253~^~652~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~653~^0.117^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~687~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21253~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21253~^~851~^0.469^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~315~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~404~^0.193^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~405~^0.190^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~406~^3.230^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~410~^0.190^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~415~^0.114^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~502~^0.410^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~503~^0.550^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~504~^0.980^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~505~^0.950^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~506~^0.270^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~509~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~510~^0.630^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~511~^0.770^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~513~^0.660^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~514~^0.970^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~515~^2.450^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~516~^0.980^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~517~^0.970^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~518~^0.330^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21254~^~521~^0.190^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~606~^5.773^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21254~^~607~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~608~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~609~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~611~^0.061^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~612~^0.372^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~613~^3.249^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~614~^1.795^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~615~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~617~^5.442^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21254~^~618~^2.662^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21254~^~619~^0.315^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21254~^~620~^0.025^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~625~^0.096^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~626~^0.461^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21254~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~628~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~645~^6.117^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21254~^~646~^3.016^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21254~^~652~^0.055^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~653~^0.146^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~654~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~666~^0.057^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~672~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21254~^~675~^2.606^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~687~^0.095^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~689~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21254~^~851~^0.315^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~312~^0.078^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~315~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~404~^0.267^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~406~^3.000^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~410~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~415~^0.112^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~502~^0.400^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~503~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~504~^1.060^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~505~^1.010^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~506~^0.290^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~508~^0.610^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~509~^0.380^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~510~^0.690^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~511~^0.760^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~512~^0.370^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~513~^0.640^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~514~^0.980^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~515~^2.550^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~516~^0.940^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~517~^1.230^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~518~^0.340^0^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21255~^~521~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~606~^6.998^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21255~^~607~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~608~^0.092^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~610~^0.095^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~611~^0.096^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~612~^0.614^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~613~^3.820^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~614~^1.976^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~617~^5.551^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21255~^~618~^2.595^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~619~^0.392^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~ -~21255~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~625~^0.145^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~626~^0.487^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~645~^6.298^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21255~^~646~^2.987^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~21255~^~652~^0.081^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~653~^0.163^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~687~^0.114^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21255~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2004~ -~21255~^~851~^0.392^1^^~1~^~A~^^^^^^^^^^~07/01/2004~ -~21256~^~312~^0.073^6^0.003^~1~^~A~^^^1^0.064^0.086^5^0.065^0.081^~2, 3~^~05/01/2014~ -~21256~^~315~^0.278^6^0.007^~1~^~A~^^^1^0.260^0.307^5^0.260^0.295^~2, 3~^~05/01/2014~ -~21256~^~404~^0.090^3^0.000^~1~^~A~^^^1^0.090^0.090^^^^~2, 3~^~05/01/2014~ -~21256~^~405~^0.137^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.122^0.151^~2, 3~^~05/01/2014~ -~21256~^~406~^7.960^3^0.359^~1~^~A~^^^1^7.290^8.520^2^6.414^9.506^~2, 3~^~05/01/2014~ -~21256~^~410~^1.100^2^^~1~^~A~^^^1^1.100^1.100^^^^^~05/01/2014~ -~21256~^~415~^0.402^3^0.011^~1~^~A~^^^1^0.381^0.418^2^0.355^0.449^~2, 3~^~05/01/2014~ -~21256~^~501~^0.210^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~502~^0.760^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~503~^0.800^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~504~^1.470^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~505~^1.530^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~506~^0.490^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~508~^1.360^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~509~^0.510^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~510~^0.860^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~511~^1.150^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~512~^0.620^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~513~^0.960^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~514~^1.530^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~515~^3.020^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~516~^0.800^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~517~^1.510^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~518~^0.750^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~521~^0.040^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21256~^~605~^0.060^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~606~^2.699^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21256~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21256~^~609~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2014~ -~21256~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~21256~^~612~^0.034^3^0.005^~1~^~A~^^^1^0.026^0.044^2^0.012^0.057^~2, 3~^~05/01/2014~ -~21256~^~613~^2.085^3^0.128^~1~^~A~^^^1^1.915^2.337^2^1.533^2.638^~2, 3~^~05/01/2014~ -~21256~^~614~^0.452^3^0.033^~1~^~A~^^^1^0.400^0.513^2^0.311^0.594^~2, 3~^~05/01/2014~ -~21256~^~615~^0.055^3^0.003^~1~^~A~^^^1^0.049^0.059^2^0.042^0.068^~2, 3~^~05/01/2014~ -~21256~^~617~^4.074^3^0.277^~1~^~AS~^^^1^3.534^4.452^2^2.882^5.266^~2, 3~^~05/01/2014~ -~21256~^~618~^6.983^3^0.280^~1~^~AS~^^^1^6.605^7.530^2^5.779^8.188^~2, 3~^~05/01/2014~ -~21256~^~619~^0.317^3^0.036^~1~^~AS~^^^1^0.255^0.380^2^0.161^0.472^~2, 3~^~05/01/2014~ -~21256~^~620~^0.040^3^0.002^~1~^~A~^^^1^0.037^0.045^2^0.030^0.051^~2, 3~^~05/01/2014~ -~21256~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~21256~^~624~^0.028^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.019^0.037^~2, 3~^~05/01/2014~ -~21256~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~21256~^~626~^0.051^3^0.002^~1~^~AS~^^^1^0.047^0.053^2^0.042^0.060^~2, 3~^~05/01/2014~ -~21256~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~628~^0.067^3^0.008^~1~^~A~^^^1^0.053^0.082^2^0.031^0.103^~2, 3~^~05/01/2014~ -~21256~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~05/01/2014~ -~21256~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~21256~^~645~^4.202^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~646~^7.371^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~21256~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2014~ -~21256~^~654~^0.023^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.017^0.029^~2, 3~^~05/01/2014~ -~21256~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~663~^0.015^3^0.002^~1~^~A~^^^1^0.011^0.019^2^0.005^0.025^~2, 3~^~05/01/2014~ -~21256~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21256~^~665~^0.044^3^0.001^~1~^~A~^^^1^0.043^0.046^2^0.040^0.048^~2, 3~^~05/01/2014~ -~21256~^~670~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2014~ -~21256~^~671~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~05/01/2014~ -~21256~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~21256~^~673~^0.051^3^0.002^~1~^~A~^^^1^0.047^0.053^2^0.042^0.060^~2, 3~^~05/01/2014~ -~21256~^~674~^4.059^3^0.275^~1~^~A~^^^1^3.523^4.436^2^2.875^5.243^~2, 3~^~05/01/2014~ -~21256~^~675~^6.928^3^0.279^~1~^~A~^^^1^6.550^7.473^2^5.726^8.130^~2, 3~^~05/01/2014~ -~21256~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~21256~^~685~^0.021^3^0.003^~1~^~A~^^^1^0.016^0.026^2^0.008^0.033^~2, 3~^~05/01/2014~ -~21256~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21256~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21256~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21256~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21256~^~851~^0.296^3^0.033^~1~^~A~^^^1^0.239^0.354^2^0.153^0.439^~2, 3~^~05/01/2014~ -~21256~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21256~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21256~^~858~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2014~ -~21258~^~312~^0.075^6^0.002^~1~^~A~^^^1^0.067^0.081^5^0.070^0.080^~4~^~07/01/2012~ -~21258~^~315~^0.264^6^0.008^~1~^~A~^^^1^0.242^0.287^5^0.244^0.284^~4~^~07/01/2012~ -~21258~^~404~^0.197^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~406~^2.090^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~410~^0.170^1^^~1~^~A~^^^^^^^^^^~08/01/2004~ -~21258~^~415~^0.036^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21258~^~501~^0.081^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~502~^0.356^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~503~^0.386^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~504~^0.803^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~505~^0.661^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~506~^0.234^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~508~^0.478^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~509~^0.336^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~510~^0.458^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~511~^0.488^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~512~^0.213^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~513~^0.376^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~514~^0.712^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~515~^2.471^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~516~^0.407^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~517~^0.712^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~518~^0.488^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21258~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2004~ -~21258~^~605~^0.080^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~606~^1.949^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21258~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21258~^~609~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 4~^~07/01/2012~ -~21258~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21258~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21258~^~612~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.024^2^0.018^0.026^~4~^~07/01/2012~ -~21258~^~613~^1.435^3^0.102^~1~^~A~^^^1^1.264^1.618^2^0.995^1.875^~4~^~07/01/2012~ -~21258~^~614~^0.389^3^0.045^~1~^~A~^^^1^0.302^0.451^2^0.196^0.582^~4~^~07/01/2012~ -~21258~^~615~^0.037^3^0.003^~1~^~A~^^^1^0.031^0.042^2^0.023^0.050^~4~^~07/01/2012~ -~21258~^~617~^2.498^3^0.232^~1~^~AS~^^^1^2.097^2.902^2^1.498^3.498^~4~^~07/01/2012~ -~21258~^~618~^5.627^3^0.490^~1~^~AS~^^^1^4.818^6.511^2^3.517^7.736^~4~^~07/01/2012~ -~21258~^~619~^0.512^3^0.094^~1~^~AS~^^^1^0.328^0.636^2^0.108^0.916^~4~^~07/01/2012~ -~21258~^~620~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~4~^~08/01/2004~ -~21258~^~621~^0.064^3^0.004^~1~^~A~^^^1^0.059^0.071^2^0.049^0.080^~4~^~07/01/2012~ -~21258~^~624~^0.029^3^0.005^~1~^~A~^^^1^0.020^0.036^2^0.009^0.049^~4~^~07/01/2012~ -~21258~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21258~^~626~^0.028^3^0.002^~1~^~AS~^^^1^0.025^0.032^2^0.019^0.037^~4~^~07/01/2012~ -~21258~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 4~^~07/01/2012~ -~21258~^~628~^0.055^3^0.008^~1~^~A~^^^1^0.046^0.070^2^0.022^0.088^~4~^~07/01/2012~ -~21258~^~629~^0.029^3^0.001^~1~^~A~^^^1^0.026^0.031^2^0.023^0.035^~4~^~07/01/2012~ -~21258~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~4~^~07/01/2012~ -~21258~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21258~^~645~^2.595^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~646~^6.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~07/01/2012~ -~21258~^~653~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.006^0.017^~4~^~07/01/2012~ -~21258~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~4~^~07/01/2012~ -~21258~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21258~^~663~^0.027^3^0.003^~1~^~A~^^^1^0.021^0.032^2^0.013^0.041^~4~^~07/01/2012~ -~21258~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21258~^~665~^0.053^3^0.012^~1~^~A~^^^1^0.028^0.068^2^-0.001^0.106^~4~^~07/01/2012~ -~21258~^~670~^0.013^3^0.004^~1~^~A~^^^1^0.006^0.017^2^-0.002^0.028^~4~^~07/01/2012~ -~21258~^~671~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.012^~1, 4~^~07/01/2012~ -~21258~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~4~^~07/01/2012~ -~21258~^~673~^0.028^3^0.002^~1~^~A~^^^1^0.025^0.032^2^0.018^0.037^~4~^~07/01/2012~ -~21258~^~674~^2.471^3^0.229^~1~^~A~^^^1^2.076^2.870^2^1.485^3.457^~4~^~07/01/2012~ -~21258~^~675~^5.561^3^0.476^~1~^~A~^^^1^4.784^6.426^2^3.513^7.609^~4~^~07/01/2012~ -~21258~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~4~^~07/01/2012~ -~21258~^~685~^0.023^3^0.011^~1~^~A~^^^1^0.000^0.034^2^-0.026^0.071^~1, 4~^~07/01/2012~ -~21258~^~687~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.001^0.011^~4~^~07/01/2012~ -~21258~^~689~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.005^2^0.000^0.007^~4~^~07/01/2012~ -~21258~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21258~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21258~^~851~^0.489^3^0.083^~1~^~A~^^^1^0.328^0.602^2^0.133^0.845^~4~^~07/01/2012~ -~21258~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 4~^~07/01/2012~ -~21258~^~853~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21258~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21259~^~312~^0.089^6^0.002^~1~^~A~^^^1^0.080^0.096^5^0.083^0.095^~4~^~07/01/2012~ -~21259~^~315~^0.401^6^0.015^~1~^~A~^^^1^0.350^0.453^5^0.362^0.440^~4~^~07/01/2012~ -~21259~^~404~^0.281^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~406~^4.710^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~410~^0.430^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~415~^0.154^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~502~^0.367^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~503~^0.550^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~504~^0.936^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~505~^0.811^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~506~^0.270^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~507~^0.212^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~508~^0.560^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~509~^0.328^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~510~^0.608^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~511~^0.685^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~512~^0.367^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~513~^0.521^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~514~^0.879^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~515~^2.732^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~516~^0.637^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~517~^1.091^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~518~^0.357^0^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~21259~^~521~^0.080^1^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21259~^~605~^0.082^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~606~^2.723^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21259~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21259~^~609~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21259~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~4~^~07/01/2012~ -~21259~^~611~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 4~^~07/01/2012~ -~21259~^~612~^0.030^3^0.002^~1~^~A~^^^1^0.027^0.034^2^0.022^0.039^~4~^~07/01/2012~ -~21259~^~613~^1.950^3^0.101^~1~^~A~^^^1^1.779^2.128^2^1.516^2.384^~4~^~07/01/2012~ -~21259~^~614~^0.616^3^0.025^~1~^~A~^^^1^0.566^0.648^2^0.507^0.725^~4~^~07/01/2012~ -~21259~^~615~^0.042^3^0.003^~1~^~A~^^^1^0.038^0.048^2^0.029^0.055^~4~^~07/01/2012~ -~21259~^~617~^3.475^3^0.208^~1~^~AS~^^^1^3.075^3.774^2^2.580^4.369^~4~^~07/01/2012~ -~21259~^~618~^6.491^3^0.602^~1~^~AS~^^^1^5.872^7.694^2^3.902^9.079^~4~^~07/01/2012~ -~21259~^~619~^0.668^3^0.053^~1~^~AS~^^^1^0.598^0.772^2^0.439^0.896^~4~^~07/01/2012~ -~21259~^~620~^0.027^3^0.003^~1~^~A~^^^1^0.023^0.032^2^0.016^0.038^~4~^~07/01/2012~ -~21259~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^2^0.002^0.002^~1, 4~^~07/01/2012~ -~21259~^~624~^0.037^3^0.003^~1~^~A~^^^1^0.033^0.043^2^0.023^0.050^~4~^~07/01/2012~ -~21259~^~625~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~4~^~07/01/2012~ -~21259~^~626~^0.144^3^0.015^~1~^~AS~^^^1^0.128^0.173^2^0.081^0.207^~4~^~07/01/2012~ -~21259~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21259~^~628~^0.068^3^0.011^~1~^~A~^^^1^0.051^0.089^2^0.020^0.116^~4~^~07/01/2012~ -~21259~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21259~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~4~^~07/01/2012~ -~21259~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21259~^~645~^3.704^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~646~^7.220^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~652~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~4~^~07/01/2012~ -~21259~^~653~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~4~^~07/01/2012~ -~21259~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.011^0.022^~4~^~07/01/2012~ -~21259~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 4~^~07/01/2012~ -~21259~^~663~^0.022^3^0.002^~1~^~A~^^^1^0.020^0.025^2^0.015^0.029^~4~^~07/01/2012~ -~21259~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21259~^~665~^0.059^3^0.007^~1~^~A~^^^1^0.051^0.072^2^0.031^0.087^~4~^~07/01/2012~ -~21259~^~670~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^2^0.015^0.015^~4~^~07/01/2012~ -~21259~^~671~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.008^0.014^~1, 4~^~07/01/2012~ -~21259~^~672~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~4~^~07/01/2012~ -~21259~^~673~^0.143^3^0.014^~1~^~A~^^^1^0.127^0.171^2^0.082^0.203^~4~^~07/01/2012~ -~21259~^~674~^3.453^3^0.208^~1~^~A~^^^1^3.054^3.754^2^2.558^4.347^~4~^~07/01/2012~ -~21259~^~675~^6.417^3^0.595^~1~^~A~^^^1^5.806^7.607^2^3.857^8.977^~4~^~07/01/2012~ -~21259~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21259~^~685~^0.018^3^0.009^~1~^~A~^^^1^0.000^0.029^2^-0.021^0.058^~1, 4~^~07/01/2012~ -~21259~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~07/01/2012~ -~21259~^~689~^0.010^3^0.001^~1~^~AS~^^^1^0.009^0.011^2^0.008^0.012^~4~^~07/01/2012~ -~21259~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21259~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21259~^~851~^0.649^3^0.062^~1~^~A~^^^1^0.572^0.772^2^0.382^0.916^~4~^~07/01/2012~ -~21259~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21259~^~853~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~07/01/2012~ -~21259~^~858~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~4~^~07/01/2012~ -~21260~^~312~^0.077^6^0.004^~1~^~A~^^^1^0.067^0.095^5^0.067^0.087^~4~^~02/01/2011~ -~21260~^~315~^0.249^6^0.007^~1~^~A~^^^1^0.231^0.277^5^0.231^0.267^~4~^~02/01/2011~ -~21260~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21260~^~405~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21260~^~406~^1.650^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21260~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21260~^~605~^0.467^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~606~^4.384^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~607~^0.045^6^0.004^~1~^~A~^^^1^0.034^0.059^5^0.035^0.054^~4~^~02/01/2011~ -~21260~^~608~^0.034^6^0.003^~1~^~A~^^^1^0.025^0.045^5^0.027^0.041^~4~^~02/01/2011~ -~21260~^~609~^0.023^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.019^0.028^~4~^~02/01/2011~ -~21260~^~610~^0.055^6^0.005^~1~^~A~^^^1^0.040^0.070^5^0.044^0.067^~4~^~02/01/2011~ -~21260~^~611~^0.066^6^0.006^~1~^~A~^^^1^0.047^0.086^5^0.052^0.081^~4~^~02/01/2011~ -~21260~^~612~^0.388^6^0.023^~1~^~A~^^^1^0.328^0.485^5^0.329^0.447^~4~^~02/01/2011~ -~21260~^~613~^2.414^6^0.103^~1~^~A~^^^1^2.182^2.858^5^2.150^2.678^~4~^~02/01/2011~ -~21260~^~614~^1.160^6^0.055^~1~^~A~^^^1^1.045^1.393^5^1.018^1.301^~4~^~02/01/2011~ -~21260~^~615~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.029^5^0.026^0.029^~4~^~02/01/2011~ -~21260~^~617~^4.016^6^0.141^~1~^~AS~^^^1^3.643^4.573^5^3.655^4.378^~4~^~02/01/2011~ -~21260~^~618~^2.819^6^0.055^~1~^~AS~^^^1^2.568^2.946^5^2.678^2.961^~4~^~02/01/2011~ -~21260~^~619~^0.168^6^0.015^~1~^~AS~^^^1^0.125^0.205^5^0.129^0.208^~4~^~02/01/2011~ -~21260~^~620~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.023^5^0.019^0.022^~4~^~02/01/2011~ -~21260~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~10/01/2004~ -~21260~^~624~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.013^0.017^~4~^~02/01/2011~ -~21260~^~625~^0.060^6^0.004^~1~^~A~^^^1^0.050^0.074^5^0.050^0.069^~4~^~02/01/2011~ -~21260~^~626~^0.231^6^0.013^~1~^~AS~^^^1^0.193^0.276^5^0.197^0.265^~4~^~02/01/2011~ -~21260~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21260~^~628~^0.046^6^0.002^~1~^~A~^^^1^0.040^0.053^5^0.041^0.051^~4~^~02/01/2011~ -~21260~^~629~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~4~^~02/01/2011~ -~21260~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~4~^~02/01/2011~ -~21260~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21260~^~645~^4.411^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~646~^3.042^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~652~^0.052^6^0.003^~1~^~A~^^^1^0.044^0.064^5^0.045^0.060^~4~^~10/01/2004~ -~21260~^~653~^0.091^6^0.003^~1~^~A~^^^1^0.076^0.100^5^0.082^0.100^~4~^~02/01/2011~ -~21260~^~654~^0.011^6^0.000^~1~^~A~^^^1^0.011^0.011^5^0.011^0.011^~4~^~02/01/2011~ -~21260~^~662~^0.027^6^0.001^~1~^~A~^^^1^0.022^0.032^5^0.023^0.030^~4~^~02/01/2011~ -~21260~^~663~^0.382^6^0.017^~1~^~A~^^^1^0.330^0.431^5^0.337^0.427^~4~^~02/01/2011~ -~21260~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21260~^~665~^0.058^6^0.003^~1~^~A~^^^1^0.051^0.072^5^0.051^0.066^~4~^~02/01/2011~ -~21260~^~670~^0.053^6^0.004^~1~^~A~^^^1^0.043^0.072^5^0.042^0.064^~4~^~02/01/2011~ -~21260~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21260~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21260~^~673~^0.204^6^0.012^~1~^~A~^^^1^0.171^0.244^5^0.174^0.235^~4~^~02/01/2011~ -~21260~^~674~^3.634^6^0.131^~1~^~A~^^^1^3.308^4.158^5^3.297^3.972^~4~^~02/01/2011~ -~21260~^~675~^2.708^6^0.055^~1~^~A~^^^1^2.464^2.835^5^2.568^2.849^~4~^~02/01/2011~ -~21260~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21260~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21260~^~687~^0.055^6^0.002^~1~^~A~^^^1^0.046^0.060^5^0.050^0.061^~4~^~02/01/2011~ -~21260~^~689~^0.011^6^0.001^~1~^~AS~^^^1^0.009^0.014^5^0.010^0.013^~4~^~02/01/2011~ -~21260~^~693~^0.409^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~695~^0.058^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21260~^~697~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21260~^~851~^0.166^6^0.015^~1~^~A~^^^1^0.123^0.203^5^0.127^0.206^~4~^~02/01/2011~ -~21260~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21260~^~853~^0.011^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21260~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~02/01/2011~ -~21261~^~312~^0.067^6^0.001^~1~^~A~^^^1^0.062^0.071^5^0.064^0.071^~4~^~03/01/2011~ -~21261~^~315~^0.310^6^0.007^~1~^~A~^^^1^0.284^0.331^5^0.292^0.327^~4~^~03/01/2011~ -~21261~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21261~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21261~^~406~^2.880^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21261~^~410~^0.206^4^0.013^~1~^~A~^^^1^0.171^0.233^3^0.165^0.247^~2, 3~^~10/01/2004~ -~21261~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21261~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~502~^0.369^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~503~^0.377^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~504~^0.721^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~505~^0.624^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~506~^0.195^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~508~^0.419^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~509~^0.300^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~510~^0.454^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~511~^0.489^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~513~^0.462^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~514~^0.766^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~515~^2.127^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~516~^0.519^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~517~^0.721^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~518~^0.447^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21261~^~605~^0.403^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~606~^4.155^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~607~^0.046^6^0.006^~1~^~A~^^^1^0.032^0.070^5^0.030^0.062^~4~^~03/01/2011~ -~21261~^~608~^0.035^6^0.005^~1~^~A~^^^1^0.023^0.053^5^0.023^0.047^~4~^~03/01/2011~ -~21261~^~609~^0.023^6^0.003^~1~^~A~^^^1^0.016^0.036^5^0.015^0.032^~4~^~03/01/2011~ -~21261~^~610~^0.057^6^0.008^~1~^~A~^^^1^0.039^0.087^5^0.038^0.077^~4~^~03/01/2011~ -~21261~^~611~^0.068^6^0.009^~1~^~A~^^^1^0.046^0.101^5^0.046^0.090^~4~^~03/01/2011~ -~21261~^~612~^0.366^6^0.031^~1~^~A~^^^1^0.292^0.489^5^0.286^0.445^~4~^~03/01/2011~ -~21261~^~613~^2.019^6^0.110^~1~^~A~^^^1^1.764^2.424^5^1.737^2.300^~4~^~03/01/2011~ -~21261~^~614~^1.376^6^0.052^~1~^~A~^^^1^1.203^1.556^5^1.243^1.509^~4~^~03/01/2011~ -~21261~^~615~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.020^5^0.016^0.020^~4~^~03/01/2011~ -~21261~^~617~^2.909^6^0.123^~1~^~AS~^^^1^2.631^3.310^5^2.594^3.224^~4~^~03/01/2011~ -~21261~^~618~^1.365^6^0.043^~1~^~AS~^^^1^1.237^1.520^5^1.254^1.475^~4~^~03/01/2011~ -~21261~^~619~^0.159^6^0.006^~1~^~AS~^^^1^0.145^0.176^5^0.145^0.173^~4~^~03/01/2011~ -~21261~^~620~^0.018^6^0.001^~1~^~A~^^^1^0.017^0.021^5^0.017^0.020^~4~^~03/01/2011~ -~21261~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 4~^~10/01/2004~ -~21261~^~624~^0.013^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.014^~4~^~03/01/2011~ -~21261~^~625~^0.052^6^0.003^~1~^~A~^^^1^0.046^0.066^5^0.043^0.061^~4~^~03/01/2011~ -~21261~^~626~^0.196^6^0.010^~1~^~AS~^^^1^0.172^0.232^5^0.170^0.223^~4~^~03/01/2011~ -~21261~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21261~^~628~^0.036^6^0.001^~1~^~A~^^^1^0.033^0.040^5^0.033^0.039^~4~^~03/01/2011~ -~21261~^~629~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.017^5^0.004^0.016^~4~^~03/01/2011~ -~21261~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.002^~4~^~03/01/2011~ -~21261~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~03/01/2011~ -~21261~^~645~^3.243^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~646~^1.578^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~652~^0.048^6^0.003^~1~^~A~^^^1^0.042^0.061^5^0.040^0.056^~4~^~03/01/2011~ -~21261~^~653~^0.078^6^0.002^~1~^~A~^^^1^0.068^0.084^5^0.072^0.085^~4~^~03/01/2011~ -~21261~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~4~^~03/01/2011~ -~21261~^~662~^0.024^6^0.002^~1~^~A~^^^1^0.019^0.030^5^0.019^0.028^~4~^~03/01/2011~ -~21261~^~663~^0.331^6^0.010^~1~^~A~^^^1^0.297^0.360^5^0.305^0.356^~4~^~03/01/2011~ -~21261~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21261~^~665~^0.049^6^0.004^~1~^~A~^^^1^0.040^0.065^5^0.038^0.059^~4~^~03/01/2011~ -~21261~^~670~^0.043^6^0.003^~1~^~A~^^^1^0.035^0.054^5^0.036^0.050^~4~^~03/01/2011~ -~21261~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21261~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~03/01/2011~ -~21261~^~673~^0.173^6^0.009^~1~^~A~^^^1^0.151^0.202^5^0.151^0.195^~4~^~03/01/2011~ -~21261~^~674~^2.578^6^0.119^~1~^~A~^^^1^2.325^2.967^5^2.273^2.884^~4~^~03/01/2011~ -~21261~^~675~^1.273^6^0.038^~1~^~A~^^^1^1.156^1.407^5^1.174^1.372^~4~^~03/01/2011~ -~21261~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.002^~1, 4~^~03/01/2011~ -~21261~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2011~ -~21261~^~687~^0.046^6^0.002^~1~^~A~^^^1^0.039^0.051^5^0.042^0.051^~4~^~03/01/2011~ -~21261~^~689~^0.010^6^0.000^~1~^~AS~^^^1^0.009^0.012^5^0.009^0.011^~4~^~03/01/2011~ -~21261~^~693~^0.354^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21261~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~10/01/2004~ -~21261~^~851~^0.157^6^0.005^~1~^~A~^^^1^0.144^0.174^5^0.144^0.171^~4~^~03/01/2011~ -~21261~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21261~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~4~^~03/01/2011~ -~21261~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~03/01/2011~ -~21262~^~312~^0.060^6^0.001^~1~^~A~^^^1^0.058^0.067^5^0.057^0.064^~4~^~03/01/2011~ -~21262~^~315~^0.245^6^0.004^~1~^~A~^^^1^0.233^0.263^5^0.234^0.256^~4~^~03/01/2011~ -~21262~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21262~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21262~^~406~^5.170^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21262~^~410~^0.747^4^0.016^~1~^~A~^^^1^0.720^0.791^3^0.697^0.796^~2, 3~^~10/01/2004~ -~21262~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21262~^~501~^0.153^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~502~^0.568^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~503~^0.596^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~504~^1.073^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~505~^0.997^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~506~^0.315^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~508~^0.589^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~509~^0.442^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~510~^0.682^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~511~^0.720^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~512~^0.451^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~513~^0.640^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~514~^1.191^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~515~^2.721^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~516~^0.512^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~517~^0.804^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~518~^0.609^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21262~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~606~^2.559^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~607~^0.044^6^0.003^~1~^~A~^^^1^0.037^0.055^5^0.037^0.051^~4~^~03/01/2011~ -~21262~^~608~^0.033^6^0.002^~1~^~A~^^^1^0.027^0.040^5^0.028^0.038^~4~^~03/01/2011~ -~21262~^~609~^0.023^6^0.001^~1~^~A~^^^1^0.019^0.026^5^0.020^0.026^~4~^~03/01/2011~ -~21262~^~610~^0.053^6^0.002^~1~^~A~^^^1^0.045^0.059^5^0.047^0.059^~4~^~03/01/2011~ -~21262~^~611~^0.063^6^0.002^~1~^~A~^^^1^0.056^0.069^5^0.057^0.069^~4~^~03/01/2011~ -~21262~^~612~^0.220^6^0.010^~1~^~A~^^^1^0.189^0.253^5^0.194^0.246^~4~^~03/01/2011~ -~21262~^~613~^1.210^6^0.043^~1~^~A~^^^1^1.058^1.316^5^1.099^1.320^~4~^~03/01/2011~ -~21262~^~614~^0.834^6^0.033^~1~^~A~^^^1^0.737^0.929^5^0.750^0.917^~4~^~03/01/2011~ -~21262~^~615~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~4~^~03/01/2011~ -~21262~^~617~^1.454^6^0.058^~1~^~AS~^^^1^1.259^1.611^5^1.304^1.605^~4~^~03/01/2011~ -~21262~^~618~^1.386^6^0.040^~1~^~AS~^^^1^1.256^1.530^5^1.283^1.488^~4~^~03/01/2011~ -~21262~^~619~^0.157^6^0.004^~1~^~AS~^^^1^0.145^0.174^5^0.147^0.168^~4~^~03/01/2011~ -~21262~^~620~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.029^5^0.025^0.028^~4~^~03/01/2011~ -~21262~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^5^0.002^0.002^~1, 4~^~03/01/2011~ -~21262~^~624~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.014^~4~^~03/01/2011~ -~21262~^~625~^0.018^6^0.001^~1~^~A~^^^1^0.014^0.020^5^0.015^0.020^~4~^~03/01/2011~ -~21262~^~626~^0.115^6^0.010^~1~^~AS~^^^1^0.093^0.156^5^0.088^0.141^~4~^~03/01/2011~ -~21262~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21262~^~628~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.028^~4~^~03/01/2011~ -~21262~^~629~^0.008^6^0.002^~1~^~A~^^^1^0.001^0.016^5^0.002^0.014^~1, 4~^~03/01/2011~ -~21262~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~4~^~03/01/2011~ -~21262~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~03/01/2011~ -~21262~^~645~^1.621^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~646~^1.607^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~652~^0.025^6^0.001^~1~^~A~^^^1^0.021^0.029^5^0.022^0.028^~4~^~10/01/2004~ -~21262~^~653~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.017^0.022^~4~^~03/01/2011~ -~21262~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~03/01/2011~ -~21262~^~662~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.007^0.010^~4~^~03/01/2011~ -~21262~^~663~^0.077^6^0.005^~1~^~A~^^^1^0.057^0.090^5^0.065^0.090^~4~^~03/01/2011~ -~21262~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21262~^~665~^0.027^6^0.002^~1~^~A~^^^1^0.021^0.033^5^0.022^0.032^~4~^~03/01/2011~ -~21262~^~670~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.019^5^0.013^0.018^~4~^~03/01/2011~ -~21262~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2011~ -~21262~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~03/01/2011~ -~21262~^~673~^0.106^6^0.010^~1~^~A~^^^1^0.083^0.147^5^0.080^0.132^~4~^~03/01/2011~ -~21262~^~674~^1.377^6^0.056^~1~^~A~^^^1^1.202^1.538^5^1.232^1.522^~4~^~03/01/2011~ -~21262~^~675~^1.343^6^0.038^~1~^~A~^^^1^1.221^1.484^5^1.245^1.442^~4~^~03/01/2011~ -~21262~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2011~ -~21262~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~03/01/2011~ -~21262~^~687~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~4~^~03/01/2011~ -~21262~^~689~^0.010^6^0.000^~1~^~AS~^^^1^0.009^0.011^5^0.009^0.011^~4~^~03/01/2011~ -~21262~^~693~^0.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21262~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~10/01/2004~ -~21262~^~851~^0.153^6^0.004^~1~^~A~^^^1^0.142^0.170^5^0.143^0.164^~4~^~03/01/2011~ -~21262~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21262~^~853~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~4~^~03/01/2011~ -~21262~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~4~^~03/01/2011~ -~21263~^~312~^0.113^4^0.015^~1~^~A~^^^1^0.075^0.146^3^0.066^0.159^~1, 2, 3~^~10/01/2004~ -~21263~^~315~^0.220^4^0.005^~1~^~A~^^^1^0.210^0.233^3^0.204^0.236^~2, 3~^~10/01/2004~ -~21263~^~404~^0.307^4^0.022^~1~^~A~^^^1^0.280^0.372^3^0.238^0.376^~2, 3~^~10/01/2004~ -~21263~^~405~^0.194^4^0.014^~1~^~A~^^^1^0.159^0.227^3^0.150^0.239^~2, 3~^~10/01/2004~ -~21263~^~406~^2.975^4^0.128^~1~^~A~^^^1^2.670^3.220^3^2.567^3.383^~2, 3~^~10/01/2004~ -~21263~^~410~^0.260^4^0.004^~1~^~A~^^^1^0.249^0.264^3^0.248^0.271^~2, 3~^~10/01/2004~ -~21263~^~415~^0.085^4^0.002^~1~^~A~^^^1^0.079^0.090^3^0.078^0.092^~2, 3~^~10/01/2004~ -~21263~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~502~^0.502^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~503~^0.500^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~504~^0.927^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~505~^0.815^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~506~^0.252^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~507~^0.147^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~508~^0.545^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~509~^0.388^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~510~^0.562^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~511~^0.618^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~512~^0.325^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~513~^0.567^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~514~^1.055^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~515~^2.399^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~516~^0.460^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~517~^0.760^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~518~^0.547^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21263~^~606~^3.369^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~609~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~10/01/2004~ -~21263~^~610~^0.052^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.045^0.060^~2, 3~^~10/01/2004~ -~21263~^~611~^0.057^4^0.005^~1~^~A~^^^1^0.050^0.070^3^0.042^0.073^~2, 3~^~10/01/2004~ -~21263~^~612~^0.250^4^0.009^~1~^~A~^^^1^0.230^0.270^3^0.221^0.279^~2, 3~^~10/01/2004~ -~21263~^~613~^1.877^4^0.052^~1~^~A~^^^1^1.800^2.020^3^1.712^2.043^~2, 3~^~10/01/2004~ -~21263~^~614~^0.992^4^0.019^~1~^~A~^^^1^0.960^1.030^3^0.932^1.052^~2, 3~^~10/01/2004~ -~21263~^~615~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21263~^~617~^3.755^4^0.148^~1~^~A~^^^1^3.450^4.150^3^3.284^4.226^~2, 3~^~10/01/2004~ -~21263~^~618~^3.095^4^0.231^~1~^~A~^^^1^2.430^3.500^3^2.359^3.831^~2, 3~^~10/01/2004~ -~21263~^~619~^0.370^4^0.032^~1~^~A~^^^1^0.280^0.430^3^0.267^0.473^~2, 3~^~10/01/2004~ -~21263~^~620~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~10/01/2004~ -~21263~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~624~^0.017^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.009^0.025^~2, 3~^~10/01/2004~ -~21263~^~625~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21263~^~626~^0.122^4^0.003^~1~^~A~^^^1^0.120^0.130^3^0.114^0.130^~2, 3~^~10/01/2004~ -~21263~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~628~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21263~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~645~^3.937^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~646~^3.485^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21263~^~652~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21263~^~653~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~10/01/2004~ -~21263~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21263~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21264~^~312~^0.164^6^0.002^~1~^~A~^^^1^0.160^0.172^5^0.160^0.169^~4~^~03/01/2011~ -~21264~^~315~^0.456^6^0.007^~1~^~A~^^^1^0.441^0.479^5^0.439^0.473^~4~^~03/01/2011~ -~21264~^~404~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21264~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21264~^~406~^2.020^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21264~^~410~^0.168^4^0.005^~1~^~A~^^^1^0.160^0.179^3^0.153^0.183^~2, 3~^~10/01/2004~ -~21264~^~415~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21264~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~502~^0.298^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~503~^0.312^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~504~^0.602^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~505~^0.468^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~506~^0.115^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~507~^0.093^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~508~^0.390^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~509~^0.245^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~510~^0.375^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~511~^0.365^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~512~^0.210^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~513~^0.275^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~514~^0.690^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~515~^1.803^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~516~^0.280^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~517~^0.598^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~518~^0.427^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21264~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~606~^2.309^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~607~^0.033^6^0.005^~1~^~A~^^^1^0.014^0.047^5^0.021^0.045^~4~^~03/01/2011~ -~21264~^~608~^0.024^6^0.004^~1~^~A~^^^1^0.009^0.035^5^0.014^0.033^~4~^~03/01/2011~ -~21264~^~609~^0.016^6^0.002^~1~^~A~^^^1^0.007^0.022^5^0.010^0.021^~4~^~03/01/2011~ -~21264~^~610~^0.037^6^0.005^~1~^~A~^^^1^0.016^0.052^5^0.023^0.051^~4~^~03/01/2011~ -~21264~^~611~^0.044^6^0.007^~1~^~A~^^^1^0.019^0.063^5^0.027^0.061^~4~^~03/01/2011~ -~21264~^~612~^0.154^6^0.024^~1~^~A~^^^1^0.066^0.233^5^0.093^0.215^~4~^~03/01/2011~ -~21264~^~613~^0.980^6^0.064^~1~^~A~^^^1^0.738^1.179^5^0.817^1.144^~4~^~03/01/2011~ -~21264~^~614~^0.941^6^0.033^~1~^~A~^^^1^0.820^1.028^5^0.857^1.025^~4~^~03/01/2011~ -~21264~^~615~^0.018^6^0.000^~1~^~A~^^^1^0.016^0.019^5^0.017^0.020^~4~^~03/01/2011~ -~21264~^~617~^1.174^6^0.054^~1~^~AS~^^^1^0.983^1.326^5^1.037^1.312^~4~^~03/01/2011~ -~21264~^~618~^1.873^6^0.026^~1~^~AS~^^^1^1.807^1.962^5^1.806^1.940^~4~^~03/01/2011~ -~21264~^~619~^0.336^6^0.003^~1~^~AS~^^^1^0.327^0.351^5^0.327^0.344^~4~^~03/01/2011~ -~21264~^~620~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.008^5^0.003^0.007^~4~^~03/01/2011~ -~21264~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21264~^~624~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.017^5^0.015^0.017^~4~^~03/01/2011~ -~21264~^~625~^0.011^6^0.002^~1~^~A~^^^1^0.004^0.017^5^0.006^0.016^~4~^~03/01/2011~ -~21264~^~626~^0.030^6^0.004^~1~^~AS~^^^1^0.015^0.044^5^0.020^0.041^~4~^~03/01/2011~ -~21264~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~10/01/2004~ -~21264~^~628~^0.034^6^0.001^~1~^~A~^^^1^0.030^0.039^5^0.031^0.038^~4~^~03/01/2011~ -~21264~^~629~^0.004^6^0.002^~1~^~A~^^^1^0.001^0.011^5^0.000^0.008^~1, 4~^~03/01/2011~ -~21264~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.002^~4~^~03/01/2011~ -~21264~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 4~^~03/01/2011~ -~21264~^~645~^1.258^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~646~^2.229^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~652~^0.018^6^0.003^~1~^~A~^^^1^0.009^0.027^5^0.012^0.025^~4~^~03/01/2011~ -~21264~^~653~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.021^5^0.013^0.020^~4~^~03/01/2011~ -~21264~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.009^5^0.009^0.009^~4~^~03/01/2011~ -~21264~^~662~^0.006^6^0.001^~1~^~A~^^^1^0.002^0.009^5^0.003^0.008^~1, 4~^~03/01/2011~ -~21264~^~663~^0.065^6^0.006^~1~^~A~^^^1^0.041^0.083^5^0.049^0.081^~4~^~03/01/2011~ -~21264~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21264~^~665~^0.035^6^0.002^~1~^~A~^^^1^0.029^0.043^5^0.029^0.041^~4~^~03/01/2011~ -~21264~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.007^0.017^5^0.008^0.015^~4~^~03/01/2011~ -~21264~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2011~ -~21264~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~03/01/2011~ -~21264~^~673~^0.025^6^0.003^~1~^~A~^^^1^0.013^0.035^5^0.017^0.033^~4~^~03/01/2011~ -~21264~^~674~^1.109^6^0.048^~1~^~A~^^^1^0.942^1.247^5^0.985^1.234^~4~^~03/01/2011~ -~21264~^~675~^1.826^6^0.027^~1~^~A~^^^1^1.747^1.914^5^1.756^1.896^~4~^~03/01/2011~ -~21264~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~03/01/2011~ -~21264~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~03/01/2011~ -~21264~^~687~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.004^0.007^~4~^~03/01/2011~ -~21264~^~689~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^5^0.002^0.004^~4~^~03/01/2011~ -~21264~^~693~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21264~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~10/01/2004~ -~21264~^~851~^0.335^6^0.004^~1~^~A~^^^1^0.325^0.351^5^0.326^0.344^~4~^~03/01/2011~ -~21264~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21264~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~03/01/2011~ -~21264~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~03/01/2011~ -~21265~^~312~^0.106^6^0.002^~1~^~A~^^^1^0.099^0.112^5^0.100^0.112^~2, 3~^~05/01/2013~ -~21265~^~315~^0.298^6^0.003^~1~^~A~^^^1^0.287^0.304^5^0.291^0.305^~2, 3~^~05/01/2013~ -~21265~^~404~^0.213^3^0.015^~1~^~A~^^^1^0.190^0.240^2^0.151^0.276^~2, 3~^~05/01/2013~ -~21265~^~405~^0.223^3^0.007^~1~^~A~^^^1^0.210^0.230^2^0.194^0.252^~2, 3~^~05/01/2013~ -~21265~^~406~^2.090^3^0.104^~1~^~A~^^^1^1.890^2.240^2^1.642^2.538^~2, 3~^~05/01/2013~ -~21265~^~410~^0.345^2^^~1~^~A~^^^1^0.330^0.360^1^^^^~05/01/2013~ -~21265~^~415~^0.097^3^0.003^~1~^~A~^^^1^0.094^0.103^2^0.085^0.110^~2, 3~^~05/01/2013~ -~21265~^~501~^0.063^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~502~^0.188^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~503~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~504~^0.474^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~505~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~506~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~508~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~509~^0.152^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~510~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~511~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~512~^0.161^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~513~^0.286^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~514~^0.501^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~515~^1.476^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~516~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~517~^0.662^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21265~^~605~^0.151^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~606~^2.733^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~607~^0.036^3^0.002^~1~^~A~^^^1^0.033^0.040^2^0.027^0.045^~2, 3~^~05/01/2013~ -~21265~^~608~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.028^2^0.023^0.031^~2, 3~^~05/01/2013~ -~21265~^~609~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.015^0.020^~2, 3~^~05/01/2013~ -~21265~^~610~^0.047^3^0.001^~1~^~A~^^^1^0.046^0.050^2^0.042^0.053^~2, 3~^~05/01/2013~ -~21265~^~611~^0.052^3^0.002^~1~^~A~^^^1^0.050^0.055^2^0.045^0.059^~2, 3~^~05/01/2013~ -~21265~^~612~^0.221^3^0.005^~1~^~A~^^^1^0.211^0.228^2^0.199^0.243^~2, 3~^~05/01/2013~ -~21265~^~613~^1.271^3^0.042^~1~^~A~^^^1^1.193^1.337^2^1.090^1.452^~2, 3~^~05/01/2013~ -~21265~^~614~^0.965^3^0.043^~1~^~A~^^^1^0.881^1.024^2^0.779^1.150^~2, 3~^~05/01/2013~ -~21265~^~615~^0.016^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~05/01/2013~ -~21265~^~617~^1.651^3^0.059^~1~^~AS~^^^1^1.555^1.759^2^1.396^1.905^~2, 3~^~05/01/2013~ -~21265~^~618~^1.345^3^0.049^~1~^~AS~^^^1^1.248^1.399^2^1.135^1.555^~2, 3~^~05/01/2013~ -~21265~^~619~^0.209^3^0.008^~1~^~AS~^^^1^0.193^0.218^2^0.175^0.243^~2, 3~^~05/01/2013~ -~21265~^~620~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2013~ -~21265~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21265~^~624~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~05/01/2013~ -~21265~^~625~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.033^2^0.029^0.034^~2, 3~^~10/01/2004~ -~21265~^~626~^0.084^3^0.006^~1~^~AS~^^^1^0.073^0.095^2^0.057^0.111^~2, 3~^~05/01/2013~ -~21265~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21265~^~628~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.021^2^0.012^0.024^~2, 3~^~05/01/2013~ -~21265~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2013~ -~21265~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2004~ -~21265~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2013~ -~21265~^~645~^1.803^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~646~^1.575^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~652~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.032^~2, 3~^~05/01/2013~ -~21265~^~653~^0.035^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.023^0.048^~2, 3~^~05/01/2013~ -~21265~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2013~ -~21265~^~662~^0.007^3^0.003^~1~^~A~^^^1^0.001^0.012^2^-0.007^0.021^~1, 2, 3~^~05/01/2013~ -~21265~^~663~^0.119^3^0.009^~1~^~A~^^^1^0.108^0.137^2^0.079^0.158^~2, 3~^~05/01/2013~ -~21265~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~665~^0.025^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~2, 3~^~05/01/2013~ -~21265~^~670~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~05/01/2013~ -~21265~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2013~ -~21265~^~673~^0.077^3^0.003^~1~^~A~^^^1^0.072^0.083^2^0.063^0.091^~2, 3~^~05/01/2013~ -~21265~^~674~^1.532^3^0.051^~1~^~A~^^^1^1.447^1.622^2^1.314^1.749^~2, 3~^~05/01/2013~ -~21265~^~675~^1.305^3^0.049^~1~^~A~^^^1^1.208^1.357^2^1.096^1.514^~2, 3~^~05/01/2013~ -~21265~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~685~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2013~ -~21265~^~687~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.022^2^0.012^0.026^~2, 3~^~05/01/2013~ -~21265~^~689~^0.004^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21265~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21265~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21265~^~851~^0.202^3^0.008^~1~^~A~^^^1^0.186^0.212^2^0.167^0.238^~2, 3~^~05/01/2013~ -~21265~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21265~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21265~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2013~ -~21266~^~312~^0.100^4^0.008^~1~^~A~^^^1^0.075^0.109^3^0.073^0.126^~1, 2, 3~^~10/01/2004~ -~21266~^~315~^0.270^4^0.008^~1~^~A~^^^1^0.258^0.293^3^0.244^0.295^~2, 3~^~10/01/2004~ -~21266~^~404~^0.174^4^0.012^~1~^~A~^^^1^0.140^0.193^3^0.137^0.211^~2, 3~^~10/01/2004~ -~21266~^~405~^0.171^4^0.020^~1~^~A~^^^1^0.146^0.231^3^0.107^0.235^~2, 3~^~10/01/2004~ -~21266~^~406~^3.900^4^0.354^~1~^~A~^^^1^3.170^4.870^3^2.774^5.026^~2, 3~^~10/01/2004~ -~21266~^~410~^0.566^4^0.078^~1~^~A~^^^1^0.445^0.791^3^0.319^0.813^~2, 3~^~10/01/2004~ -~21266~^~415~^0.126^4^0.006^~1~^~A~^^^1^0.113^0.141^3^0.107^0.144^~2, 3~^~10/01/2004~ -~21266~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~502~^0.373^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~503~^0.383^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~504~^0.696^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~505~^0.627^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~506~^0.178^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~508~^0.420^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~509~^0.283^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~510~^0.439^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~511~^0.473^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~512~^0.283^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~513~^0.400^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~514~^0.838^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~515~^1.845^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~516~^0.343^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~517~^0.561^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~518~^0.444^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21266~^~606~^2.352^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~609~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~10/01/2004~ -~21266~^~610~^0.057^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.050^0.065^~2, 3~^~10/01/2004~ -~21266~^~611~^0.065^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.056^0.074^~2, 3~^~10/01/2004~ -~21266~^~612~^0.230^4^0.007^~1~^~A~^^^1^0.210^0.240^3^0.207^0.252^~2, 3~^~10/01/2004~ -~21266~^~613~^1.205^4^0.038^~1~^~A~^^^1^1.110^1.270^3^1.086^1.324^~2, 3~^~10/01/2004~ -~21266~^~614~^0.707^4^0.043^~1~^~A~^^^1^0.630^0.820^3^0.570^0.845^~2, 3~^~10/01/2004~ -~21266~^~615~^0.017^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.009^0.025^~2, 3~^~10/01/2004~ -~21266~^~617~^2.445^4^0.119^~1~^~A~^^^1^2.200^2.720^3^2.066^2.824^~2, 3~^~10/01/2004~ -~21266~^~618~^0.685^4^0.021^~1~^~A~^^^1^0.640^0.730^3^0.618^0.752^~2, 3~^~10/01/2004~ -~21266~^~619~^0.095^4^0.003^~1~^~A~^^^1^0.090^0.100^3^0.086^0.104^~2, 3~^~10/01/2004~ -~21266~^~620~^0.015^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.006^0.024^~2, 3~^~10/01/2004~ -~21266~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~624~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~10/01/2004~ -~21266~^~625~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~10/01/2004~ -~21266~^~626~^0.080^4^0.004^~1~^~A~^^^1^0.070^0.090^3^0.067^0.093^~2, 3~^~10/01/2004~ -~21266~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~628~^0.015^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.006^0.024^~2, 3~^~10/01/2004~ -~21266~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~645~^2.560^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~646~^0.795^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21266~^~652~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~10/01/2004~ -~21266~^~653~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~10/01/2004~ -~21266~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21266~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~312~^0.115^4^0.006^~1~^~A~^^^1^0.100^0.129^3^0.096^0.134^~2, 3~^~10/01/2004~ -~21267~^~315~^0.274^4^0.007^~1~^~A~^^^1^0.261^0.286^3^0.253^0.295^~2, 3~^~10/01/2004~ -~21267~^~404~^0.252^4^0.011^~1~^~A~^^^1^0.231^0.282^3^0.218^0.286^~2, 3~^~10/01/2004~ -~21267~^~405~^0.183^4^0.011^~1~^~A~^^^1^0.160^0.211^3^0.149^0.216^~2, 3~^~10/01/2004~ -~21267~^~406~^2.250^4^0.061^~1~^~A~^^^1^2.070^2.330^3^2.057^2.443^~2, 3~^~10/01/2004~ -~21267~^~410~^0.219^4^0.006^~1~^~A~^^^1^0.207^0.231^3^0.199^0.239^~2, 3~^~10/01/2004~ -~21267~^~415~^0.101^4^0.004^~1~^~A~^^^1^0.092^0.110^3^0.088^0.113^~2, 3~^~10/01/2004~ -~21267~^~501~^0.108^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~502~^0.373^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~503~^0.373^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~504~^0.694^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~505~^0.616^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~506~^0.165^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~508~^0.416^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~509~^0.273^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~510~^0.428^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~511~^0.463^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~512~^0.248^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~513~^0.410^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~514~^0.817^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~515~^1.895^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~516~^0.379^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~517~^0.586^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~518~^0.441^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21267~^~606~^2.674^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~609~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~10/01/2004~ -~21267~^~610~^0.062^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.054^0.070^~2, 3~^~10/01/2004~ -~21267~^~611~^0.070^4^0.004^~1~^~A~^^^1^0.060^0.080^3^0.057^0.083^~2, 3~^~10/01/2004~ -~21267~^~612~^0.272^4^0.013^~1~^~A~^^^1^0.250^0.310^3^0.231^0.314^~2, 3~^~10/01/2004~ -~21267~^~613~^1.365^4^0.036^~1~^~A~^^^1^1.310^1.470^3^1.251^1.479^~2, 3~^~10/01/2004~ -~21267~^~614~^0.805^4^0.009^~1~^~A~^^^1^0.790^0.830^3^0.777^0.832^~2, 3~^~10/01/2004~ -~21267~^~615~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~10/01/2004~ -~21267~^~617~^2.685^4^0.025^~1~^~A~^^^1^2.620^2.730^3^2.604^2.766^~2, 3~^~10/01/2004~ -~21267~^~618~^0.672^4^0.010^~1~^~A~^^^1^0.650^0.700^3^0.640^0.705^~2, 3~^~10/01/2004~ -~21267~^~619~^0.087^4^0.003^~1~^~A~^^^1^0.080^0.090^3^0.079^0.096^~2, 3~^~10/01/2004~ -~21267~^~620~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~10/01/2004~ -~21267~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~625~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~10/01/2004~ -~21267~^~626~^0.090^4^0.004^~1~^~A~^^^1^0.080^0.100^3^0.077^0.103^~2, 3~^~10/01/2004~ -~21267~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~628~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~10/01/2004~ -~21267~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~645~^2.822^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~646~^0.770^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21267~^~652~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21267~^~653~^0.032^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.024^0.040^~2, 3~^~10/01/2004~ -~21267~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21267~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21268~^~312~^0.064^6^0.003^~1~^~A~^^^1^0.057^0.078^5^0.056^0.072^~2, 3~^~05/01/2013~ -~21268~^~315~^0.187^6^0.007^~1~^~A~^^^1^0.167^0.208^5^0.170^0.204^~2, 3~^~05/01/2013~ -~21268~^~404~^0.123^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.109^0.138^~2, 3~^~05/01/2013~ -~21268~^~405~^0.133^3^0.007^~1~^~A~^^^1^0.120^0.140^2^0.104^0.162^~2, 3~^~05/01/2013~ -~21268~^~406~^0.630^3^0.012^~1~^~A~^^^1^0.610^0.650^2^0.580^0.679^~2, 3~^~05/01/2013~ -~21268~^~410~^0.380^2^^~1~^~A~^^^1^0.370^0.390^1^^^^~05/01/2013~ -~21268~^~415~^0.215^3^0.003^~1~^~A~^^^1^0.209^0.221^2^0.200^0.230^~2, 3~^~05/01/2013~ -~21268~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~502~^0.156^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~503~^0.187^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~504~^0.521^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~505~^0.156^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~506~^0.094^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~508~^0.229^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~509~^0.135^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~510~^0.250^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~511~^0.208^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~512~^0.135^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~513~^0.292^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~514~^0.344^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~515~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~516~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~517~^0.531^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~518~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21268~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21268~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~606~^2.173^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~607~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2013~ -~21268~^~608~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2013~ -~21268~^~609~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~05/01/2013~ -~21268~^~610~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.023^2^0.011^0.028^~2, 3~^~05/01/2013~ -~21268~^~611~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.023^2^0.010^0.028^~2, 3~^~05/01/2013~ -~21268~^~612~^0.068^3^0.007^~1~^~A~^^^1^0.059^0.081^2^0.039^0.097^~2, 3~^~05/01/2013~ -~21268~^~613~^1.286^3^0.070^~1~^~A~^^^1^1.188^1.421^2^0.986^1.586^~2, 3~^~05/01/2013~ -~21268~^~614~^0.494^3^0.031^~1~^~A~^^^1^0.434^0.539^2^0.360^0.628^~2, 3~^~05/01/2013~ -~21268~^~615~^0.129^3^0.009^~1~^~A~^^^1^0.114^0.144^2^0.091^0.166^~2, 3~^~05/01/2013~ -~21268~^~617~^13.650^3^0.965^~1~^~AS~^^^1^12.200^15.478^2^9.498^17.802^~2, 3~^~05/01/2013~ -~21268~^~618~^4.372^3^0.322^~1~^~AS~^^^1^3.734^4.772^2^2.984^5.759^~2, 3~^~05/01/2013~ -~21268~^~619~^0.649^3^0.122^~1~^~AS~^^^1^0.525^0.893^2^0.123^1.174^~2, 3~^~05/01/2013~ -~21268~^~620~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2013~ -~21268~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21268~^~624~^0.068^3^0.005^~1~^~A~^^^1^0.059^0.076^2^0.047^0.089^~2, 3~^~05/01/2013~ -~21268~^~625~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~05/01/2013~ -~21268~^~626~^0.057^3^0.003^~1~^~AS~^^^1^0.054^0.063^2^0.044^0.070^~2, 3~^~05/01/2013~ -~21268~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~628~^0.281^3^0.011^~1~^~A~^^^1^0.262^0.301^2^0.232^0.329^~2, 3~^~05/01/2013~ -~21268~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21268~^~630~^0.011^3^0.002^~1~^~AS~^^^1^0.008^0.015^2^0.002^0.020^~2, 3~^~05/01/2013~ -~21268~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21268~^~645~^14.020^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~646~^5.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~652~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~05/01/2013~ -~21268~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~05/01/2013~ -~21268~^~654~^0.039^3^0.003^~1~^~A~^^^1^0.034^0.043^2^0.028^0.051^~2, 3~^~05/01/2013~ -~21268~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~663~^0.032^3^0.005^~1~^~A~^^^1^0.024^0.042^2^0.009^0.055^~2, 3~^~05/01/2013~ -~21268~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~665~^0.024^3^0.002^~1~^~A~^^^1^0.020^0.028^2^0.014^0.034^~2, 3~^~05/01/2013~ -~21268~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.009^~2, 3~^~05/01/2013~ -~21268~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~672~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~05/01/2013~ -~21268~^~673~^0.055^3^0.003^~1~^~A~^^^1^0.052^0.061^2^0.042^0.068^~2, 3~^~05/01/2013~ -~21268~^~674~^13.619^3^0.967^~1~^~A~^^^1^12.171^15.454^2^9.456^17.781^~2, 3~^~05/01/2013~ -~21268~^~675~^4.343^3^0.321^~1~^~A~^^^1^3.708^4.742^2^2.962^5.724^~2, 3~^~05/01/2013~ -~21268~^~676~^0.011^3^0.002^~1~^~A~^^^1^0.008^0.015^2^0.002^0.020^~2, 3~^~05/01/2013~ -~21268~^~685~^0.032^3^0.009^~1~^~A~^^^1^0.020^0.050^2^-0.008^0.071^~2, 3~^~05/01/2013~ -~21268~^~687~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.010^0.022^~2, 3~^~05/01/2013~ -~21268~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~10/01/2004~ -~21268~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21268~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21268~^~851~^0.617^3^0.113^~1~^~A~^^^1^0.502^0.843^2^0.130^1.103^~2, 3~^~05/01/2013~ -~21268~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21268~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~312~^0.104^6^0.002^~1~^~A~^^^1^0.098^0.110^5^0.099^0.109^~2, 3~^~05/01/2013~ -~21269~^~315~^0.202^6^0.004^~1~^~A~^^^1^0.190^0.214^5^0.191^0.212^~2, 3~^~05/01/2013~ -~21269~^~404~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~05/01/2013~ -~21269~^~405~^0.137^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.122^0.151^~2, 3~^~05/01/2013~ -~21269~^~406~^1.010^3^0.071^~1~^~A~^^^1^0.920^1.150^2^0.705^1.315^~2, 3~^~05/01/2013~ -~21269~^~410~^0.330^2^^~1~^~A~^^^1^0.330^0.330^^^^^~05/01/2013~ -~21269~^~415~^0.158^3^0.009^~1~^~A~^^^1^0.149^0.176^2^0.119^0.197^~2, 3~^~05/01/2013~ -~21269~^~501~^0.059^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~502~^0.216^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~503~^0.275^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~504~^0.541^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~505~^0.344^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~506~^0.118^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~508~^0.285^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~509~^0.167^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~510~^0.325^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21269~^~511~^0.354^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~512~^0.187^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~513~^0.354^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~514~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~515~^1.053^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~516~^0.325^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~517~^0.511^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~518~^0.285^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21269~^~605~^0.167^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~606~^2.549^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~607~^0.021^3^0.002^~1~^~A~^^^1^0.017^0.025^2^0.011^0.031^~2, 3~^~05/01/2013~ -~21269~^~608~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.017^2^0.011^0.019^~2, 3~^~05/01/2013~ -~21269~^~609~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~05/01/2013~ -~21269~^~610~^0.029^3^0.002^~1~^~A~^^^1^0.027^0.032^2^0.022^0.036^~2, 3~^~05/01/2013~ -~21269~^~611~^0.033^3^0.002^~1~^~A~^^^1^0.030^0.036^2^0.025^0.040^~2, 3~^~05/01/2013~ -~21269~^~612~^0.174^3^0.005^~1~^~A~^^^1^0.167^0.183^2^0.154^0.194^~2, 3~^~05/01/2013~ -~21269~^~613~^1.373^3^0.025^~1~^~A~^^^1^1.324^1.409^2^1.264^1.482^~2, 3~^~05/01/2013~ -~21269~^~614~^0.724^3^0.024^~1~^~A~^^^1^0.677^0.749^2^0.623^0.825^~2, 3~^~05/01/2013~ -~21269~^~615~^0.055^3^0.001^~1~^~A~^^^1^0.054^0.058^2^0.050^0.061^~2, 3~^~05/01/2013~ -~21269~^~617~^6.378^3^0.179^~1~^~AS~^^^1^6.095^6.708^2^5.610^7.146^~2, 3~^~05/01/2013~ -~21269~^~618~^2.142^3^0.086^~1~^~AS~^^^1^1.983^2.279^2^1.771^2.512^~2, 3~^~05/01/2013~ -~21269~^~619~^0.327^3^0.023^~1~^~AS~^^^1^0.303^0.373^2^0.229^0.426^~2, 3~^~05/01/2013~ -~21269~^~620~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2013~ -~21269~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21269~^~624~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.026^0.034^~2, 3~^~05/01/2013~ -~21269~^~625~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.026^0.034^~2, 3~^~05/01/2013~ -~21269~^~626~^0.109^3^0.002^~1~^~AS~^^^1^0.106^0.111^2^0.102^0.116^~2, 3~^~05/01/2013~ -~21269~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21269~^~628~^0.112^3^0.004^~1~^~A~^^^1^0.104^0.116^2^0.095^0.128^~2, 3~^~05/01/2013~ -~21269~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~05/01/2013~ -~21269~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2013~ -~21269~^~645~^6.661^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~646~^2.496^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~652~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~2, 3~^~05/01/2013~ -~21269~^~653~^0.041^3^0.003^~1~^~A~^^^1^0.036^0.044^2^0.030^0.053^~2, 3~^~05/01/2013~ -~21269~^~654~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~05/01/2013~ -~21269~^~662~^0.008^3^0.003^~1~^~A~^^^1^0.001^0.012^2^-0.007^0.022^~1, 2, 3~^~05/01/2013~ -~21269~^~663~^0.133^3^0.011^~1~^~A~^^^1^0.112^0.147^2^0.087^0.178^~2, 3~^~05/01/2013~ -~21269~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~665~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.032^~2, 3~^~05/01/2013~ -~21269~^~670~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~05/01/2013~ -~21269~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2013~ -~21269~^~673~^0.102^3^0.002^~1~^~A~^^^1^0.099^0.105^2^0.094^0.109^~2, 3~^~05/01/2013~ -~21269~^~674~^6.245^3^0.175^~1~^~A~^^^1^5.956^6.561^2^5.492^6.999^~2, 3~^~05/01/2013~ -~21269~^~675~^2.098^3^0.085^~1~^~A~^^^1^1.941^2.234^2^1.731^2.465^~2, 3~^~05/01/2013~ -~21269~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~05/01/2013~ -~21269~^~685~^0.012^3^0.002^~1~^~A~^^^1^0.009^0.016^2^0.003^0.021^~2, 3~^~05/01/2013~ -~21269~^~687~^0.028^3^0.001^~1~^~A~^^^1^0.025^0.030^2^0.022^0.034^~2, 3~^~05/01/2013~ -~21269~^~689~^0.004^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2013~ -~21269~^~693~^0.140^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21269~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21269~^~851~^0.315^3^0.021^~1~^~A~^^^1^0.294^0.357^2^0.225^0.405^~2, 3~^~05/01/2013~ -~21269~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2013~ -~21269~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21269~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2013~ -~21270~^~312~^0.151^4^0.034^~1~^~A~^^^1^0.107^0.252^3^0.044^0.259^~2, 3~^~10/01/2004~ -~21270~^~315~^0.256^4^0.008^~1~^~A~^^^1^0.236^0.272^3^0.230^0.281^~2, 3~^~10/01/2004~ -~21270~^~404~^0.150^4^0.029^~1~^~A~^^^1^0.107^0.236^3^0.058^0.243^~2, 3~^~10/01/2004~ -~21270~^~405~^0.106^4^0.011^~1~^~A~^^^1^0.077^0.131^3^0.070^0.141^~2, 3~^~10/01/2004~ -~21270~^~406~^1.505^4^0.094^~1~^~A~^^^1^1.290^1.750^3^1.205^1.805^~2, 3~^~10/01/2004~ -~21270~^~410~^0.205^4^0.003^~1~^~A~^^^1^0.201^0.215^3^0.195^0.216^~2, 3~^~10/01/2004~ -~21270~^~415~^0.103^4^0.011^~1~^~A~^^^1^0.087^0.137^3^0.066^0.139^~2, 3~^~10/01/2004~ -~21270~^~501~^0.086^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~502~^0.266^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~503~^0.268^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~504~^0.519^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~505~^0.441^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~506~^0.120^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~507~^0.078^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~508~^0.340^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~509~^0.218^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~510~^0.311^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~511~^0.346^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~512~^0.180^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~513~^0.321^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~514~^0.651^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~515~^1.336^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~516~^0.306^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~517~^0.473^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~518~^0.336^0^^~1~^~A~^^^^^^^^^^~10/01/2004~ -~21270~^~606~^2.979^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~609~^0.025^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.016^0.034^~2, 3~^~10/01/2004~ -~21270~^~610~^0.055^4^0.003^~1~^~A~^^^1^0.050^0.060^3^0.046^0.064^~2, 3~^~10/01/2004~ -~21270~^~611~^0.060^4^0.004^~1~^~A~^^^1^0.050^0.070^3^0.047^0.073^~2, 3~^~10/01/2004~ -~21270~^~612~^0.262^4^0.017^~1~^~A~^^^1^0.230^0.300^3^0.210^0.315^~2, 3~^~10/01/2004~ -~21270~^~613~^1.547^4^0.065^~1~^~A~^^^1^1.420^1.670^3^1.339^1.755^~2, 3~^~10/01/2004~ -~21270~^~614~^0.927^4^0.041^~1~^~A~^^^1^0.820^1.000^3^0.798^1.057^~2, 3~^~10/01/2004~ -~21270~^~615~^0.017^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.009^0.025^~2, 3~^~10/01/2004~ -~21270~^~617~^3.812^4^0.153^~1~^~A~^^^1^3.420^4.140^3^3.325^4.300^~2, 3~^~10/01/2004~ -~21270~^~618~^0.655^4^0.025^~1~^~A~^^^1^0.620^0.730^3^0.574^0.736^~2, 3~^~10/01/2004~ -~21270~^~619~^0.098^4^0.003^~1~^~A~^^^1^0.090^0.100^3^0.090^0.105^~2, 3~^~10/01/2004~ -~21270~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~624~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~10/01/2004~ -~21270~^~625~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21270~^~626~^0.115^4^0.006^~1~^~A~^^^1^0.100^0.130^3^0.094^0.135^~2, 3~^~10/01/2004~ -~21270~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~628~^0.015^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.006^0.024^~2, 3~^~10/01/2004~ -~21270~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~645~^3.972^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~646~^0.752^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~ -~21270~^~652~^0.030^4^0.003^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~10/01/2004~ -~21270~^~653~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.036^0.054^~2, 3~^~10/01/2004~ -~21270~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21270~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2004~ -~21271~^~312~^0.092^4^0.005^~1~^~A~^^^1^0.079^0.101^3^0.076^0.107^~2, 3~^~01/01/2005~ -~21271~^~315~^0.308^4^0.011^~1~^~A~^^^1^0.289^0.338^3^0.272^0.344^~2, 3~^~01/01/2005~ -~21271~^~404~^0.264^4^0.018^~1~^~A~^^^1^0.222^0.308^3^0.208^0.321^~2, 3~^~01/01/2005~ -~21271~^~405~^0.256^4^0.006^~1~^~A~^^^1^0.240^0.267^3^0.236^0.277^~2, 3~^~01/01/2005~ -~21271~^~406~^3.295^4^0.148^~1~^~A~^^^1^2.890^3.580^3^2.823^3.767^~2, 3~^~01/01/2005~ -~21271~^~410~^0.285^4^0.021^~1~^~A~^^^1^0.238^0.339^3^0.219^0.352^~2, 3~^~01/01/2005~ -~21271~^~415~^0.114^4^0.012^~1~^~A~^^^1^0.089^0.147^3^0.074^0.153^~2, 3~^~01/01/2005~ -~21271~^~501~^0.128^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~502~^0.411^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~503~^0.565^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~504~^1.140^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~505~^0.771^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~506~^0.264^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~507~^0.163^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~508~^0.665^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~509~^0.522^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~510~^0.721^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~511~^0.487^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~512~^0.355^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~513~^0.419^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~514~^0.840^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~515~^3.539^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~516~^0.341^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~517~^1.358^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~518~^0.701^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21271~^~606~^5.040^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~609~^0.083^4^0.002^~1~^~A~^^^1^0.080^0.089^3^0.077^0.090^~2, 3~^~01/01/2005~ -~21271~^~610~^0.191^4^0.004^~1~^~A~^^^1^0.185^0.203^3^0.178^0.204^~2, 3~^~01/01/2005~ -~21271~^~611~^0.218^4^0.005^~1~^~A~^^^1^0.211^0.233^3^0.203^0.234^~2, 3~^~01/01/2005~ -~21271~^~612~^0.745^4^0.022^~1~^~A~^^^1^0.690^0.796^3^0.675^0.816^~2, 3~^~01/01/2005~ -~21271~^~613~^2.498^4^0.053^~1~^~A~^^^1^2.357^2.613^3^2.328^2.667^~2, 3~^~01/01/2005~ -~21271~^~614~^1.146^4^0.059^~1~^~A~^^^1^1.031^1.249^3^0.959^1.333^~2, 3~^~01/01/2005~ -~21271~^~615~^0.021^4^0.001^~1~^~A~^^^1^0.020^0.024^3^0.018^0.024^~2, 3~^~01/01/2005~ -~21271~^~617~^2.697^4^0.126^~1~^~A~^^^1^2.481^3.022^3^2.295^3.100^~2, 3~^~01/01/2005~ -~21271~^~618~^1.628^4^0.194^~1~^~A~^^^1^1.328^2.151^3^1.010^2.246^~2, 3~^~01/01/2005~ -~21271~^~619~^0.196^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~21271~^~620~^0.015^4^0.001^~1~^~A~^^^1^0.014^0.017^3^0.013^0.018^~2, 3~^~01/01/2005~ -~21271~^~624~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.017^3^0.010^0.017^~2, 3~^~01/01/2005~ -~21271~^~625~^0.055^4^0.004^~1~^~A~^^^1^0.048^0.065^3^0.044^0.066^~2, 3~^~01/01/2005~ -~21271~^~626~^0.131^4^0.008^~1~^~A~^^^1^0.109^0.145^3^0.106^0.156^~2, 3~^~01/01/2005~ -~21271~^~628~^0.025^4^0.001^~1~^~A~^^^1^0.023^0.027^3^0.022^0.028^~2, 3~^~01/01/2005~ -~21271~^~645~^2.919^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~646~^1.839^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21271~^~652~^0.076^4^0.002^~1~^~A~^^^1^0.069^0.080^3^0.068^0.084^~2, 3~^~01/01/2005~ -~21271~^~653~^0.048^4^0.002^~1~^~A~^^^1^0.044^0.051^3^0.043^0.054^~2, 3~^~01/01/2005~ -~21271~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~687~^0.010^4^0.006^~1~^~A~^^^1^0.000^0.022^3^-0.009^0.029^~1, 2, 3~^~01/01/2005~ -~21271~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21271~^~851~^0.196^4^0.026^~1~^~A~^^^1^0.153^0.270^3^0.113^0.280^~2, 3~^~01/01/2005~ -~21272~^~312~^0.101^4^0.004^~1~^~A~^^^1^0.090^0.110^3^0.087^0.114^~2, 3~^~01/01/2005~ -~21272~^~315~^0.305^4^0.007^~1~^~A~^^^1^0.292^0.320^3^0.283^0.328^~2, 3~^~01/01/2005~ -~21272~^~404~^0.243^4^0.010^~1~^~A~^^^1^0.231^0.272^3^0.212^0.274^~2, 3~^~01/01/2005~ -~21272~^~405~^0.251^4^0.011^~1~^~A~^^^1^0.231^0.277^3^0.214^0.287^~2, 3~^~01/01/2005~ -~21272~^~406~^3.910^4^0.831^~1~^~A~^^^1^3.020^6.400^3^1.266^6.554^~2, 3~^~01/01/2005~ -~21272~^~410~^0.285^4^0.016^~1~^~A~^^^1^0.249^0.321^3^0.233^0.337^~2, 3~^~01/01/2005~ -~21272~^~415~^0.107^4^0.007^~1~^~A~^^^1^0.090^0.123^3^0.085^0.129^~2, 3~^~01/01/2005~ -~21272~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~502~^0.379^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~503~^0.518^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~504~^1.044^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~505~^0.693^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~506~^0.266^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~507~^0.156^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~508~^0.615^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~509~^0.479^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~510~^0.658^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~511~^0.451^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~512~^0.326^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~513~^0.386^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~514~^0.753^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~515~^3.323^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~516~^0.322^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~517~^1.253^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~518~^0.648^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21272~^~606~^5.184^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21272~^~609~^0.082^4^0.003^~1~^~A~^^^1^0.075^0.087^3^0.073^0.091^~2, 3~^~01/01/2005~ -~21272~^~610~^0.187^4^0.007^~1~^~A~^^^1^0.169^0.201^3^0.163^0.210^~2, 3~^~01/01/2005~ -~21272~^~611~^0.212^4^0.009^~1~^~A~^^^1^0.190^0.227^3^0.184^0.240^~2, 3~^~01/01/2005~ -~21272~^~612~^0.723^4^0.025^~1~^~A~^^^1^0.663^0.780^3^0.642^0.804^~2, 3~^~01/01/2005~ -~21272~^~613~^2.611^4^0.070^~1~^~A~^^^1^2.530^2.820^3^2.388^2.834^~2, 3~^~01/01/2005~ -~21272~^~614~^1.203^4^0.009^~1~^~A~^^^1^1.183^1.220^3^1.173^1.233^~2, 3~^~01/01/2005~ -~21272~^~615~^0.025^4^0.002^~1~^~A~^^^1^0.022^0.029^3^0.021^0.030^~2, 3~^~01/01/2005~ -~21272~^~617~^2.997^4^0.112^~1~^~A~^^^1^2.731^3.249^3^2.642^3.353^~2, 3~^~01/01/2005~ -~21272~^~618~^2.433^4^0.216^~1~^~A~^^^1^1.934^2.860^3^1.745^3.122^~2, 3~^~01/01/2005~ -~21272~^~619~^0.304^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21272~^~620~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.016^3^0.013^0.017^~2, 3~^~01/01/2005~ -~21272~^~624~^0.018^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.015^0.022^~2, 3~^~01/01/2005~ -~21272~^~625~^0.053^4^0.004^~1~^~A~^^^1^0.047^0.063^3^0.041^0.064^~2, 3~^~01/01/2005~ -~21272~^~626~^0.124^4^0.007^~1~^~A~^^^1^0.116^0.146^3^0.101^0.147^~2, 3~^~01/01/2005~ -~21272~^~628~^0.027^4^0.002^~1~^~A~^^^1^0.023^0.032^3^0.020^0.034^~2, 3~^~01/01/2005~ -~21272~^~645~^3.213^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21272~^~646~^2.752^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21272~^~652~^0.074^4^0.001^~1~^~A~^^^1^0.070^0.076^3^0.070^0.078^~2, 3~^~01/01/2005~ -~21272~^~653~^0.048^4^0.001^~1~^~A~^^^1^0.047^0.050^3^0.046^0.051^~2, 3~^~01/01/2005~ -~21272~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~687~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.026^3^-0.010^0.034^~1, 2, 3~^~01/01/2005~ -~21272~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21272~^~851~^0.304^4^0.031^~1~^~A~^^^1^0.230^0.372^3^0.204^0.404^~2, 3~^~01/01/2005~ -~21273~^~312~^0.096^4^0.003^~1~^~A~^^^1^0.090^0.102^3^0.088^0.105^~2, 3~^~01/01/2005~ -~21273~^~315~^0.297^4^0.012^~1~^~A~^^^1^0.270^0.322^3^0.258^0.336^~2, 3~^~01/01/2005~ -~21273~^~404~^0.218^4^0.016^~1~^~A~^^^1^0.177^0.249^3^0.167^0.269^~2, 3~^~01/01/2005~ -~21273~^~405~^0.276^4^0.014^~1~^~A~^^^1^0.242^0.311^3^0.231^0.322^~2, 3~^~01/01/2005~ -~21273~^~406~^2.895^4^0.177^~1~^~A~^^^1^2.540^3.290^3^2.332^3.458^~2, 3~^~01/01/2005~ -~21273~^~410~^0.320^4^0.014^~1~^~A~^^^1^0.294^0.356^3^0.276^0.363^~2, 3~^~01/01/2005~ -~21273~^~415~^0.109^4^0.007^~1~^~A~^^^1^0.094^0.128^3^0.086^0.132^~2, 3~^~01/01/2005~ -~21273~^~501~^0.158^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~502~^0.502^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~503~^0.696^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~504~^1.388^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~505~^0.993^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~506~^0.325^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~507~^0.170^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~508~^0.795^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~509~^0.686^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~510~^0.901^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~511~^0.582^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~512~^0.427^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~513~^0.491^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~514~^1.031^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~515~^4.076^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~516~^0.378^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~517~^1.616^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~518~^0.849^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21273~^~606~^6.896^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~609~^0.119^4^0.004^~1~^~A~^^^1^0.112^0.128^3^0.108^0.131^~2, 3~^~01/01/2005~ -~21273~^~610~^0.271^4^0.009^~1~^~A~^^^1^0.252^0.295^3^0.241^0.300^~2, 3~^~01/01/2005~ -~21273~^~611~^0.308^4^0.009^~1~^~A~^^^1^0.289^0.332^3^0.278^0.337^~2, 3~^~01/01/2005~ -~21273~^~612~^1.051^4^0.024^~1~^~A~^^^1^1.000^1.100^3^0.975^1.126^~2, 3~^~01/01/2005~ -~21273~^~613~^3.347^4^0.095^~1~^~A~^^^1^3.144^3.588^3^3.044^3.650^~2, 3~^~01/01/2005~ -~21273~^~614~^1.588^4^0.097^~1~^~A~^^^1^1.346^1.820^3^1.279^1.897^~2, 3~^~01/01/2005~ -~21273~^~615~^0.025^4^0.000^~1~^~A~^^^1^0.025^0.026^3^0.024^0.026^~2, 3~^~01/01/2005~ -~21273~^~617~^3.534^4^0.170^~1~^~A~^^^1^3.229^4.011^3^2.992^4.076^~2, 3~^~01/01/2005~ -~21273~^~618~^1.496^4^0.051^~1~^~A~^^^1^1.343^1.559^3^1.333^1.659^~2, 3~^~01/01/2005~ -~21273~^~619~^0.180^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21273~^~620~^0.022^4^0.002^~1~^~A~^^^1^0.017^0.025^3^0.016^0.028^~2, 3~^~01/01/2005~ -~21273~^~624~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.013^0.015^~1, 2, 3~^~01/01/2005~ -~21273~^~625~^0.076^4^0.002^~1~^~A~^^^1^0.073^0.080^3^0.072^0.081^~2, 3~^~01/01/2005~ -~21273~^~626~^0.167^4^0.002^~1~^~A~^^^1^0.160^0.170^3^0.159^0.174^~2, 3~^~01/01/2005~ -~21273~^~628~^0.030^4^0.000^~1~^~A~^^^1^0.029^0.031^3^0.029^0.031^~2, 3~^~01/01/2005~ -~21273~^~645~^3.807^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~646~^1.698^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21273~^~652~^0.106^4^0.004^~1~^~A~^^^1^0.097^0.115^3^0.095^0.118^~2, 3~^~01/01/2005~ -~21273~^~653~^0.066^4^0.003^~1~^~A~^^^1^0.060^0.073^3^0.058^0.075^~2, 3~^~01/01/2005~ -~21273~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~685~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.012^3^-0.007^0.013^~1, 2, 3~^~01/01/2005~ -~21273~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21273~^~851~^0.177^4^0.007^~1~^~A~^^^1^0.155^0.186^3^0.153^0.201^~2, 3~^~01/01/2005~ -~21274~^~312~^0.104^4^0.003^~1~^~A~^^^1^0.097^0.110^3^0.095^0.114^~2, 3~^~01/01/2005~ -~21274~^~315~^0.365^4^0.006^~1~^~A~^^^1^0.354^0.382^3^0.346^0.384^~2, 3~^~01/01/2005~ -~21274~^~404~^0.320^4^0.016^~1~^~A~^^^1^0.298^0.367^3^0.268^0.371^~2, 3~^~01/01/2005~ -~21274~^~405~^0.271^4^0.007^~1~^~A~^^^1^0.255^0.291^3^0.247^0.295^~2, 3~^~01/01/2005~ -~21274~^~406~^4.028^4^0.066^~1~^~A~^^^1^3.910^4.210^3^3.819^4.236^~2, 3~^~01/01/2005~ -~21274~^~410~^0.467^4^0.053^~1~^~A~^^^1^0.367^0.615^3^0.299^0.634^~2, 3~^~01/01/2005~ -~21274~^~415~^0.152^4^0.008^~1~^~A~^^^1^0.133^0.168^3^0.126^0.177^~2, 3~^~01/01/2005~ -~21274~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~502~^0.418^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~503~^0.538^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~504~^1.068^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~505~^0.764^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~506~^0.272^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~507~^0.176^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~508~^0.625^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~509~^0.483^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~510~^0.670^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~511~^0.538^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~512~^0.361^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~513~^0.490^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~514~^0.855^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~515~^3.343^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~516~^0.451^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~517~^1.230^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~518~^0.658^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21274~^~606~^5.161^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21274~^~609~^0.060^4^0.001^~1~^~A~^^^1^0.058^0.064^3^0.055^0.064^~2, 3~^~01/01/2005~ -~21274~^~610~^0.138^4^0.003^~1~^~A~^^^1^0.132^0.145^3^0.129^0.147^~2, 3~^~01/01/2005~ -~21274~^~611~^0.158^4^0.004^~1~^~A~^^^1^0.151^0.167^3^0.147^0.170^~2, 3~^~01/01/2005~ -~21274~^~612~^0.589^4^0.015^~1~^~A~^^^1^0.549^0.619^3^0.542^0.635^~2, 3~^~01/01/2005~ -~21274~^~613~^2.764^4^0.076^~1~^~A~^^^1^2.554^2.878^3^2.521^3.007^~2, 3~^~01/01/2005~ -~21274~^~614~^1.309^4^0.058^~1~^~A~^^^1^1.196^1.426^3^1.125^1.493^~2, 3~^~01/01/2005~ -~21274~^~615~^0.022^4^0.001^~1~^~A~^^^1^0.020^0.023^3^0.019^0.024^~2, 3~^~01/01/2005~ -~21274~^~617~^3.703^4^0.151^~1~^~A~^^^1^3.308^4.011^3^3.221^4.185^~2, 3~^~01/01/2005~ -~21274~^~618~^1.792^4^0.064^~1~^~A~^^^1^1.673^1.937^3^1.590^1.995^~2, 3~^~01/01/2005~ -~21274~^~619~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21274~^~620~^0.027^4^0.001^~1~^~A~^^^1^0.024^0.029^3^0.023^0.030^~2, 3~^~01/01/2005~ -~21274~^~624~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.012^3^0.010^0.012^~2, 3~^~01/01/2005~ -~21274~^~625~^0.043^4^0.002^~1~^~A~^^^1^0.038^0.049^3^0.036^0.050^~2, 3~^~01/01/2005~ -~21274~^~626~^0.203^4^0.011^~1~^~A~^^^1^0.174^0.221^3^0.170^0.237^~2, 3~^~01/01/2005~ -~21274~^~628~^0.054^4^0.003^~1~^~A~^^^1^0.048^0.060^3^0.045^0.064^~2, 3~^~01/01/2005~ -~21274~^~645~^4.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21274~^~646~^2.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21274~^~652~^0.058^4^0.001^~1~^~A~^^^1^0.054^0.060^3^0.054^0.063^~2, 3~^~01/01/2005~ -~21274~^~653~^0.052^4^0.002^~1~^~A~^^^1^0.048^0.056^3^0.046^0.058^~2, 3~^~01/01/2005~ -~21274~^~672~^0.025^4^0.001^~1~^~A~^^^1^0.022^0.027^3^0.022^0.029^~2, 3~^~01/01/2005~ -~21274~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~687~^0.014^4^0.008^~1~^~A~^^^1^0.000^0.030^3^-0.012^0.041^~1, 2, 3~^~01/01/2005~ -~21274~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21274~^~851~^0.190^4^0.008^~1~^~A~^^^1^0.174^0.211^3^0.164^0.215^~2, 3~^~01/01/2005~ -~21275~^~312~^0.105^4^0.002^~1~^~A~^^^1^0.102^0.110^3^0.100^0.111^~2, 3~^~01/01/2005~ -~21275~^~315~^0.361^4^0.004^~1~^~A~^^^1^0.354^0.370^3^0.350^0.372^~2, 3~^~01/01/2005~ -~21275~^~404~^0.287^4^0.008^~1~^~A~^^^1^0.269^0.301^3^0.260^0.313^~2, 3~^~01/01/2005~ -~21275~^~405~^0.254^4^0.006^~1~^~A~^^^1^0.241^0.269^3^0.234^0.275^~2, 3~^~01/01/2005~ -~21275~^~406~^3.840^4^0.158^~1~^~A~^^^1^3.540^4.170^3^3.336^4.344^~2, 3~^~01/01/2005~ -~21275~^~410~^0.378^4^0.013^~1~^~A~^^^1^0.342^0.399^3^0.338^0.418^~2, 3~^~01/01/2005~ -~21275~^~415~^0.140^4^0.003^~1~^~A~^^^1^0.134^0.146^3^0.131^0.149^~2, 3~^~01/01/2005~ -~21275~^~501~^0.116^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~502~^0.374^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~503~^0.487^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~504~^0.952^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~505~^0.652^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~506~^0.247^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~507~^0.178^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~508~^0.564^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~509~^0.427^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~510~^0.604^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~511~^0.485^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~512~^0.322^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~513~^0.434^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~514~^0.739^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~515~^3.160^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~516~^0.400^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~517~^1.134^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~518~^0.588^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21275~^~606~^5.271^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~609~^0.055^4^0.003^~1~^~A~^^^1^0.047^0.060^3^0.045^0.064^~2, 3~^~01/01/2005~ -~21275~^~610~^0.127^4^0.007^~1~^~A~^^^1^0.109^0.142^3^0.104^0.150^~2, 3~^~01/01/2005~ -~21275~^~611~^0.144^4^0.008^~1~^~A~^^^1^0.123^0.161^3^0.118^0.170^~2, 3~^~01/01/2005~ -~21275~^~612~^0.541^4^0.025^~1~^~A~^^^1^0.470^0.577^3^0.461^0.622^~2, 3~^~01/01/2005~ -~21275~^~613~^2.876^4^0.042^~1~^~A~^^^1^2.770^2.963^3^2.744^3.009^~2, 3~^~01/01/2005~ -~21275~^~614~^1.372^4^0.015^~1~^~A~^^^1^1.340^1.404^3^1.326^1.418^~2, 3~^~01/01/2005~ -~21275~^~615~^0.030^4^0.001^~1~^~A~^^^1^0.028^0.033^3^0.027^0.033^~2, 3~^~01/01/2005~ -~21275~^~617~^4.114^4^0.028^~1~^~A~^^^1^4.035^4.156^3^4.026^4.203^~2, 3~^~01/01/2005~ -~21275~^~618~^3.058^4^0.159^~1~^~A~^^^1^2.786^3.507^3^2.551^3.565^~2, 3~^~01/01/2005~ -~21275~^~619~^0.357^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21275~^~620~^0.025^4^0.000^~1~^~A~^^^1^0.024^0.026^3^0.024^0.026^~2, 3~^~01/01/2005~ -~21275~^~624~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.023^3^0.017^0.024^~2, 3~^~01/01/2005~ -~21275~^~625~^0.039^4^0.003^~1~^~A~^^^1^0.033^0.046^3^0.031^0.048^~2, 3~^~01/01/2005~ -~21275~^~626~^0.184^4^0.004^~1~^~A~^^^1^0.174^0.194^3^0.169^0.198^~2, 3~^~01/01/2005~ -~21275~^~628~^0.061^4^0.001^~1~^~A~^^^1^0.060^0.063^3^0.059^0.063^~2, 3~^~01/01/2005~ -~21275~^~645~^4.415^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~646~^3.465^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21275~^~652~^0.053^4^0.002^~1~^~A~^^^1^0.048^0.056^3^0.048^0.059^~2, 3~^~01/01/2005~ -~21275~^~653~^0.051^4^0.001^~1~^~A~^^^1^0.049^0.053^3^0.049^0.054^~2, 3~^~01/01/2005~ -~21275~^~672~^0.025^4^0.000^~1~^~A~^^^1^0.024^0.026^3^0.024^0.027^~2, 3~^~01/01/2005~ -~21275~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~687~^0.017^4^0.010^~1~^~A~^^^1^0.000^0.035^3^-0.014^0.048^~1, 2, 3~^~01/01/2005~ -~21275~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21275~^~851~^0.357^4^0.023^~1~^~A~^^^1^0.318^0.418^3^0.285^0.429^~2, 3~^~01/01/2005~ -~21276~^~312~^0.127^4^0.005^~1~^~A~^^^1^0.116^0.137^3^0.110^0.143^~2, 3~^~01/01/2005~ -~21276~^~315~^0.324^4^0.006^~1~^~A~^^^1^0.310^0.341^3^0.303^0.344^~2, 3~^~01/01/2005~ -~21276~^~404~^0.266^4^0.014^~1~^~A~^^^1^0.230^0.298^3^0.220^0.312^~2, 3~^~01/01/2005~ -~21276~^~405~^0.242^4^0.014^~1~^~A~^^^1^0.211^0.274^3^0.196^0.288^~2, 3~^~01/01/2005~ -~21276~^~406~^3.582^4^0.148^~1~^~A~^^^1^3.190^3.890^3^3.111^4.054^~2, 3~^~01/01/2005~ -~21276~^~410~^0.441^4^0.027^~1~^~A~^^^1^0.367^0.495^3^0.356^0.526^~2, 3~^~01/01/2005~ -~21276~^~415~^0.146^4^0.003^~1~^~A~^^^1^0.140^0.155^3^0.135^0.157^~2, 3~^~01/01/2005~ -~21276~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~502~^0.384^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~503~^0.485^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~504~^0.931^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~505~^0.710^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~506~^0.213^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~508~^0.545^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~509~^0.425^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~510~^0.599^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~511~^0.532^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~512~^0.323^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~513~^0.476^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~514~^0.831^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~515~^2.845^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~516~^0.442^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~517~^1.009^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~518~^0.585^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21276~^~606~^4.554^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21276~^~609~^0.047^4^0.006^~1~^~A~^^^1^0.038^0.064^3^0.028^0.066^~2, 3~^~01/01/2005~ -~21276~^~610~^0.109^4^0.013^~1~^~A~^^^1^0.087^0.147^3^0.067^0.152^~2, 3~^~01/01/2005~ -~21276~^~611~^0.124^4^0.015^~1~^~A~^^^1^0.098^0.168^3^0.075^0.173^~2, 3~^~01/01/2005~ -~21276~^~612~^0.489^4^0.051^~1~^~A~^^^1^0.410^0.636^3^0.328^0.650^~2, 3~^~01/01/2005~ -~21276~^~613~^2.482^4^0.080^~1~^~A~^^^1^2.363^2.709^3^2.228^2.737^~2, 3~^~01/01/2005~ -~21276~^~614~^1.180^4^0.022^~1~^~A~^^^1^1.132^1.227^3^1.109^1.252^~2, 3~^~01/01/2005~ -~21276~^~615~^0.020^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.017^0.022^~2, 3~^~01/01/2005~ -~21276~^~617~^3.667^4^0.104^~1~^~A~^^^1^3.448^3.948^3^3.337^3.997^~2, 3~^~01/01/2005~ -~21276~^~618~^1.527^4^0.059^~1~^~A~^^^1^1.410^1.684^3^1.341^1.714^~2, 3~^~01/01/2005~ -~21276~^~619~^0.152^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~21276~^~620~^0.025^4^0.001^~1~^~A~^^^1^0.023^0.026^3^0.022^0.027^~2, 3~^~01/01/2005~ -~21276~^~624~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~01/01/2005~ -~21276~^~625~^0.039^4^0.005^~1~^~A~^^^1^0.029^0.054^3^0.021^0.056^~2, 3~^~01/01/2005~ -~21276~^~626~^0.200^4^0.001^~1~^~A~^^^1^0.198^0.201^3^0.197^0.202^~2, 3~^~01/01/2005~ -~21276~^~628~^0.048^4^0.003^~1~^~A~^^^1^0.042^0.056^3^0.038^0.058^~2, 3~^~01/01/2005~ -~21276~^~645~^3.953^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21276~^~646~^1.729^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21276~^~652~^0.049^4^0.005^~1~^~A~^^^1^0.040^0.063^3^0.033^0.065^~2, 3~^~01/01/2005~ -~21276~^~653~^0.050^4^0.003^~1~^~A~^^^1^0.044^0.056^3^0.042^0.058^~2, 3~^~01/01/2005~ -~21276~^~672~^0.025^4^0.002^~1~^~A~^^^1^0.021^0.030^3^0.019^0.031^~2, 3~^~01/01/2005~ -~21276~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21276~^~851~^0.152^4^0.005^~1~^~A~^^^1^0.139^0.161^3^0.137^0.167^~2, 3~^~01/01/2005~ -~21277~^~312~^0.107^6^0.002^~1~^~A~^^^1^0.102^0.113^5^0.103^0.112^~4~^~02/01/2011~ -~21277~^~315~^0.324^6^0.012^~1~^~A~^^^1^0.300^0.378^5^0.293^0.356^~4~^~02/01/2011~ -~21277~^~404~^0.320^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21277~^~405~^0.170^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21277~^~406~^3.350^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21277~^~410~^0.450^4^0.029^~1~^~A~^^^1^0.400^0.500^3^0.358^0.542^~2, 3~^~01/01/2005~ -~21277~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21277~^~605~^0.229^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~606~^4.110^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~607~^0.095^6^0.007^~1~^~A~^^^1^0.070^0.120^5^0.076^0.114^~4~^~02/01/2011~ -~21277~^~608~^0.075^6^0.005^~1~^~A~^^^1^0.062^0.094^5^0.062^0.088^~4~^~02/01/2011~ -~21277~^~609~^0.051^6^0.003^~1~^~A~^^^1^0.043^0.060^5^0.045^0.058^~4~^~02/01/2011~ -~21277~^~610~^0.133^6^0.005^~1~^~A~^^^1^0.113^0.146^5^0.119^0.147^~4~^~02/01/2011~ -~21277~^~611~^0.163^6^0.006^~1~^~A~^^^1^0.142^0.186^5^0.146^0.179^~4~^~02/01/2011~ -~21277~^~612~^0.563^6^0.022^~1~^~A~^^^1^0.507^0.653^5^0.506^0.621^~4~^~02/01/2011~ -~21277~^~613~^2.047^6^0.053^~1~^~A~^^^1^1.908^2.255^5^1.911^2.184^~4~^~02/01/2011~ -~21277~^~614~^0.839^6^0.012^~1~^~A~^^^1^0.805^0.889^5^0.808^0.869^~4~^~02/01/2011~ -~21277~^~615~^0.018^6^0.000^~1~^~A~^^^1^0.017^0.019^5^0.017^0.019^~4~^~02/01/2011~ -~21277~^~617~^1.969^6^0.033^~1~^~AS~^^^1^1.856^2.093^5^1.884^2.054^~4~^~02/01/2011~ -~21277~^~618~^1.608^6^0.044^~1~^~AS~^^^1^1.470^1.764^5^1.495^1.721^~4~^~02/01/2011~ -~21277~^~619~^0.186^6^0.007^~1~^~AS~^^^1^0.158^0.204^5^0.168^0.204^~4~^~02/01/2011~ -~21277~^~620~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.009^0.013^~4~^~02/01/2011~ -~21277~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21277~^~624~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~4~^~02/01/2011~ -~21277~^~625~^0.045^6^0.003^~1~^~A~^^^1^0.036^0.060^5^0.036^0.054^~4~^~02/01/2011~ -~21277~^~626~^0.103^6^0.007^~1~^~AS~^^^1^0.084^0.132^5^0.086^0.120^~4~^~02/01/2011~ -~21277~^~627~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21277~^~628~^0.031^6^0.001^~1~^~A~^^^1^0.029^0.036^5^0.029^0.034^~4~^~02/01/2011~ -~21277~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21277~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.003^~4~^~02/01/2011~ -~21277~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21277~^~645~^2.165^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~646~^1.833^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~652~^0.059^6^0.003^~1~^~A~^^^1^0.053^0.071^5^0.053^0.066^~4~^~02/01/2011~ -~21277~^~653~^0.041^6^0.001^~1~^~A~^^^1^0.037^0.047^5^0.037^0.044^~4~^~02/01/2011~ -~21277~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~4~^~02/01/2011~ -~21277~^~662~^0.021^6^0.001^~1~^~A~^^^1^0.018^0.025^5^0.018^0.023^~4~^~02/01/2011~ -~21277~^~663~^0.154^6^0.004^~1~^~A~^^^1^0.142^0.167^5^0.144^0.165^~4~^~02/01/2011~ -~21277~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21277~^~665~^0.053^6^0.004^~1~^~A~^^^1^0.038^0.064^5^0.043^0.064^~4~^~02/01/2011~ -~21277~^~670~^0.037^6^0.002^~1~^~A~^^^1^0.032^0.044^5^0.033^0.042^~4~^~02/01/2011~ -~21277~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21277~^~672~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~02/01/2011~ -~21277~^~673~^0.082^6^0.006^~1~^~A~^^^1^0.066^0.107^5^0.068^0.097^~4~^~02/01/2011~ -~21277~^~674~^1.815^6^0.030^~1~^~A~^^^1^1.714^1.926^5^1.739^1.891^~4~^~02/01/2011~ -~21277~^~675~^1.517^6^0.042^~1~^~A~^^^1^1.400^1.669^5^1.409^1.625^~4~^~02/01/2011~ -~21277~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21277~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21277~^~687~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.012^0.015^~4~^~02/01/2011~ -~21277~^~689~^0.008^6^0.000^~1~^~AS~^^^1^0.007^0.010^5^0.007^0.010^~4~^~02/01/2011~ -~21277~^~693~^0.175^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21277~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21277~^~851~^0.184^6^0.007^~1~^~A~^^^1^0.156^0.201^5^0.166^0.202^~4~^~02/01/2011~ -~21277~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21277~^~853~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.007^0.009^~4~^~02/01/2011~ -~21277~^~858~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21278~^~312~^0.110^6^0.003^~1~^~A~^^^1^0.098^0.116^5^0.103^0.117^~4~^~02/01/2011~ -~21278~^~315~^0.275^6^0.006^~1~^~A~^^^1^0.257^0.292^5^0.260^0.290^~4~^~02/01/2011~ -~21278~^~404~^0.340^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~406~^3.510^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~415~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21278~^~501~^0.114^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~502~^0.381^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~503~^0.514^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~504~^0.935^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~505~^0.635^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~506~^0.281^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~507~^0.165^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~508~^0.651^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~509~^0.475^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~510~^0.647^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~511~^0.819^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~513~^0.381^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~514~^0.845^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~515~^3.625^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~516~^0.348^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~517~^1.446^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~518~^0.779^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21278~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21278~^~605~^0.272^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~606~^4.062^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~607~^0.098^6^0.008^~1~^~A~^^^1^0.070^0.120^5^0.077^0.118^~4~^~02/01/2011~ -~21278~^~608~^0.077^6^0.005^~1~^~A~^^^1^0.067^0.093^5^0.065^0.090^~4~^~02/01/2011~ -~21278~^~609~^0.052^6^0.003^~1~^~A~^^^1^0.045^0.061^5^0.046^0.059^~4~^~02/01/2011~ -~21278~^~610~^0.134^6^0.006^~1~^~A~^^^1^0.113^0.158^5^0.118^0.150^~4~^~02/01/2011~ -~21278~^~611~^0.162^6^0.008^~1~^~A~^^^1^0.139^0.194^5^0.142^0.182^~4~^~02/01/2011~ -~21278~^~612~^0.557^6^0.027^~1~^~A~^^^1^0.500^0.676^5^0.489^0.625^~4~^~02/01/2011~ -~21278~^~613~^2.003^6^0.067^~1~^~A~^^^1^1.901^2.323^5^1.830^2.177^~4~^~02/01/2011~ -~21278~^~614~^0.828^6^0.017^~1~^~A~^^^1^0.752^0.868^5^0.784^0.872^~4~^~02/01/2011~ -~21278~^~615~^0.021^6^0.001^~1~^~A~^^^1^0.020^0.023^5^0.020^0.023^~4~^~02/01/2011~ -~21278~^~617~^2.225^6^0.037^~1~^~AS~^^^1^2.133^2.382^5^2.129^2.320^~4~^~02/01/2011~ -~21278~^~618~^2.081^6^0.032^~1~^~AS~^^^1^1.982^2.210^5^1.999^2.164^~4~^~02/01/2011~ -~21278~^~619~^0.265^6^0.002^~1~^~AS~^^^1^0.258^0.273^5^0.260^0.270^~4~^~02/01/2011~ -~21278~^~620~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.015^5^0.009^0.014^~4~^~02/01/2011~ -~21278~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21278~^~624~^0.017^6^0.000^~1~^~A~^^^1^0.016^0.018^5^0.016^0.018^~4~^~02/01/2011~ -~21278~^~625~^0.045^6^0.004^~1~^~A~^^^1^0.037^0.062^5^0.036^0.055^~4~^~02/01/2011~ -~21278~^~626~^0.107^6^0.007^~1~^~AS~^^^1^0.093^0.139^5^0.089^0.125^~4~^~02/01/2011~ -~21278~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21278~^~628~^0.039^6^0.001^~1~^~A~^^^1^0.037^0.042^5^0.037^0.041^~4~^~02/01/2011~ -~21278~^~629~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 4~^~02/01/2011~ -~21278~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~4~^~02/01/2011~ -~21278~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21278~^~645~^2.434^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~646~^2.387^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~652~^0.059^6^0.003^~1~^~A~^^^1^0.053^0.072^5^0.051^0.066^~4~^~02/01/2011~ -~21278~^~653~^0.041^6^0.002^~1~^~A~^^^1^0.037^0.050^5^0.036^0.047^~4~^~02/01/2011~ -~21278~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~4~^~02/01/2011~ -~21278~^~662~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.026^5^0.017^0.024^~4~^~02/01/2011~ -~21278~^~663~^0.189^6^0.004^~1~^~A~^^^1^0.175^0.203^5^0.179^0.200^~4~^~02/01/2011~ -~21278~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21278~^~665~^0.062^6^0.003^~1~^~A~^^^1^0.053^0.076^5^0.054^0.070^~4~^~02/01/2011~ -~21278~^~670~^0.039^6^0.001^~1~^~A~^^^1^0.035^0.044^5^0.036^0.042^~4~^~02/01/2011~ -~21278~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.005^~1, 4~^~02/01/2011~ -~21278~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~02/01/2011~ -~21278~^~673~^0.087^6^0.006^~1~^~A~^^^1^0.075^0.113^5^0.072^0.101^~4~^~02/01/2011~ -~21278~^~674~^2.035^6^0.033^~1~^~A~^^^1^1.958^2.179^5^1.949^2.121^~4~^~02/01/2011~ -~21278~^~675~^1.981^6^0.034^~1~^~A~^^^1^1.880^2.113^5^1.893^2.068^~4~^~02/01/2011~ -~21278~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21278~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21278~^~687~^0.014^6^0.001^~1~^~A~^^^1^0.013^0.019^5^0.012^0.017^~4~^~02/01/2011~ -~21278~^~689~^0.010^6^0.001^~1~^~AS~^^^1^0.008^0.012^5^0.008^0.011^~4~^~02/01/2011~ -~21278~^~693~^0.210^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~695~^0.062^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21278~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~01/01/2005~ -~21278~^~851~^0.262^6^0.002^~1~^~A~^^^1^0.254^0.271^5^0.256^0.269^~4~^~02/01/2011~ -~21278~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21278~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~4~^~02/01/2011~ -~21278~^~858~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.007^5^0.004^0.007^~4~^~02/01/2011~ -~21279~^~312~^0.096^6^0.005^~1~^~A~^^^1^0.082^0.117^5^0.083^0.109^~4~^~02/01/2011~ -~21279~^~315~^0.229^6^0.007^~1~^~A~^^^1^0.209^0.256^5^0.210^0.247^~4~^~02/01/2011~ -~21279~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~406~^1.010^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21279~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~502~^0.420^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~503~^0.585^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~504~^1.203^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~505~^0.880^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~506~^0.330^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~507~^0.153^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~508~^0.695^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~509~^0.505^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~510~^0.752^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~511~^0.505^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~512~^0.367^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~513~^0.395^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~514~^0.966^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~515~^3.664^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~516~^0.323^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~517~^1.873^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~518~^0.828^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21279~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21279~^~605~^0.357^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~606~^6.345^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~607~^0.165^6^0.011^~1~^~A~^^^1^0.129^0.201^5^0.138^0.193^~4~^~02/01/2011~ -~21279~^~608~^0.132^6^0.007^~1~^~A~^^^1^0.105^0.156^5^0.113^0.151^~4~^~02/01/2011~ -~21279~^~609~^0.087^6^0.005^~1~^~A~^^^1^0.067^0.100^5^0.075^0.100^~4~^~02/01/2011~ -~21279~^~610~^0.219^6^0.013^~1~^~A~^^^1^0.157^0.246^5^0.185^0.253^~4~^~02/01/2011~ -~21279~^~611~^0.263^6^0.016^~1~^~A~^^^1^0.187^0.295^5^0.222^0.304^~4~^~02/01/2011~ -~21279~^~612~^0.899^6^0.051^~1~^~A~^^^1^0.668^1.026^5^0.769^1.029^~4~^~02/01/2011~ -~21279~^~613~^3.090^6^0.113^~1~^~A~^^^1^2.608^3.452^5^2.800^3.381^~4~^~02/01/2011~ -~21279~^~614~^1.251^6^0.048^~1~^~A~^^^1^1.065^1.399^5^1.127^1.376^~4~^~02/01/2011~ -~21279~^~615~^0.033^6^0.001^~1~^~A~^^^1^0.031^0.037^5^0.031^0.035^~4~^~02/01/2011~ -~21279~^~617~^3.428^6^0.099^~1~^~AS~^^^1^3.010^3.721^5^3.173^3.682^~4~^~02/01/2011~ -~21279~^~618~^3.248^6^0.063^~1~^~AS~^^^1^3.051^3.415^5^3.086^3.410^~4~^~02/01/2011~ -~21279~^~619~^0.456^6^0.011^~1~^~AS~^^^1^0.425^0.487^5^0.429^0.484^~4~^~02/01/2011~ -~21279~^~620~^0.018^6^0.001^~1~^~A~^^^1^0.013^0.023^5^0.014^0.022^~4~^~02/01/2011~ -~21279~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 4~^~02/01/2011~ -~21279~^~624~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.028^5^0.025^0.028^~4~^~02/01/2011~ -~21279~^~625~^0.073^6^0.006^~1~^~A~^^^1^0.051^0.095^5^0.058^0.088^~4~^~02/01/2011~ -~21279~^~626~^0.161^6^0.010^~1~^~AS~^^^1^0.125^0.199^5^0.136^0.186^~4~^~02/01/2011~ -~21279~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21279~^~628~^0.060^6^0.002^~1~^~A~^^^1^0.053^0.066^5^0.054^0.066^~4~^~02/01/2011~ -~21279~^~629~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~4~^~02/01/2011~ -~21279~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.003^5^0.000^0.003^~4~^~02/01/2011~ -~21279~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~4~^~02/01/2011~ -~21279~^~645~^3.748^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~646~^3.762^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~652~^0.096^6^0.005^~1~^~A~^^^1^0.074^0.114^5^0.082^0.110^~4~^~02/01/2011~ -~21279~^~653~^0.066^6^0.003^~1~^~A~^^^1^0.053^0.075^5^0.058^0.074^~4~^~02/01/2011~ -~21279~^~654~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.013^5^0.010^0.013^~4~^~02/01/2011~ -~21279~^~662~^0.032^6^0.001^~1~^~A~^^^1^0.027^0.038^5^0.028^0.036^~4~^~02/01/2011~ -~21279~^~663~^0.236^6^0.012^~1~^~A~^^^1^0.184^0.267^5^0.205^0.268^~4~^~02/01/2011~ -~21279~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21279~^~665~^0.089^6^0.003^~1~^~A~^^^1^0.079^0.100^5^0.081^0.096^~4~^~02/01/2011~ -~21279~^~670~^0.062^6^0.004^~1~^~A~^^^1^0.044^0.069^5^0.052^0.072^~4~^~02/01/2011~ -~21279~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.004^~1, 4~^~02/01/2011~ -~21279~^~672~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21279~^~673~^0.129^6^0.008^~1~^~A~^^^1^0.098^0.161^5^0.107^0.150^~4~^~02/01/2011~ -~21279~^~674~^3.191^6^0.087^~1~^~A~^^^1^2.826^3.454^5^2.967^3.416^~4~^~02/01/2011~ -~21279~^~675~^3.097^6^0.065^~1~^~A~^^^1^2.895^3.264^5^2.931^3.264^~4~^~02/01/2011~ -~21279~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21279~^~685~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21279~^~687~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.028^5^0.021^0.026^~4~^~02/01/2011~ -~21279~^~689~^0.013^6^0.001^~1~^~AS~^^^1^0.009^0.015^5^0.010^0.015^~4~^~02/01/2011~ -~21279~^~693~^0.269^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~695~^0.089^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21279~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2005~ -~21279~^~851~^0.453^6^0.010^~1~^~A~^^^1^0.421^0.484^5^0.427^0.479^~4~^~02/01/2011~ -~21279~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21279~^~853~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.010^0.014^~4~^~02/01/2011~ -~21279~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21280~^~312~^0.119^6^0.004^~1~^~A~^^^1^0.110^0.138^5^0.108^0.130^~4~^~02/01/2011~ -~21280~^~315~^0.352^6^0.016^~1~^~A~^^^1^0.317^0.422^5^0.310^0.393^~4~^~02/01/2011~ -~21280~^~404~^0.310^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~406~^3.460^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21280~^~501~^0.081^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~502~^0.306^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~503~^0.419^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~504~^0.825^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~505~^0.562^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~506~^0.212^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~507~^0.165^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~508~^0.529^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~509~^0.301^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~510~^0.508^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~511~^0.436^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~512~^0.268^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~513~^0.362^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~514~^0.688^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~515~^3.069^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~516~^0.384^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~517~^1.308^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~518~^0.575^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21280~^~605~^0.313^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~606~^4.779^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~607~^0.081^6^0.007^~1~^~A~^^^1^0.049^0.099^5^0.063^0.100^~4~^~02/01/2011~ -~21280~^~608~^0.065^6^0.003^~1~^~A~^^^1^0.054^0.077^5^0.057^0.073^~4~^~02/01/2011~ -~21280~^~609~^0.044^6^0.002^~1~^~A~^^^1^0.039^0.054^5^0.039^0.050^~4~^~02/01/2011~ -~21280~^~610~^0.112^6^0.005^~1~^~A~^^^1^0.099^0.133^5^0.099^0.125^~4~^~02/01/2011~ -~21280~^~611~^0.137^6^0.007^~1~^~A~^^^1^0.119^0.162^5^0.119^0.154^~4~^~02/01/2011~ -~21280~^~612~^0.532^6^0.025^~1~^~A~^^^1^0.461^0.635^5^0.468^0.597^~4~^~02/01/2011~ -~21280~^~613~^2.499^6^0.077^~1~^~A~^^^1^2.331^2.861^5^2.301^2.696^~4~^~02/01/2011~ -~21280~^~614~^1.144^6^0.019^~1~^~A~^^^1^1.101^1.224^5^1.096^1.193^~4~^~02/01/2011~ -~21280~^~615~^0.021^6^0.000^~1~^~A~^^^1^0.021^0.023^5^0.021^0.022^~4~^~02/01/2011~ -~21280~^~617~^3.056^6^0.091^~1~^~AS~^^^1^2.841^3.465^5^2.823^3.288^~4~^~02/01/2011~ -~21280~^~618~^1.847^6^0.035^~1~^~AS~^^^1^1.747^1.957^5^1.756^1.939^~4~^~02/01/2011~ -~21280~^~619~^0.190^6^0.006^~1~^~AS~^^^1^0.169^0.206^5^0.175^0.206^~4~^~02/01/2011~ -~21280~^~620~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.017^0.022^~4~^~02/01/2011~ -~21280~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2005~ -~21280~^~624~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~4~^~02/01/2011~ -~21280~^~625~^0.048^6^0.003^~1~^~A~^^^1^0.040^0.064^5^0.039^0.057^~4~^~02/01/2011~ -~21280~^~626~^0.175^6^0.008^~1~^~AS~^^^1^0.159^0.211^5^0.155^0.196^~4~^~02/01/2011~ -~21280~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21280~^~628~^0.051^6^0.002^~1~^~A~^^^1^0.045^0.060^5^0.046^0.057^~4~^~02/01/2011~ -~21280~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21280~^~630~^0.006^6^0.001^~1~^~AS~^^^1^0.000^0.008^5^0.003^0.009^~4~^~02/01/2011~ -~21280~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21280~^~645~^3.368^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~646~^2.106^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~652~^0.057^6^0.003^~1~^~A~^^^1^0.051^0.069^5^0.051^0.064^~4~^~02/01/2011~ -~21280~^~653~^0.062^6^0.002^~1~^~A~^^^1^0.057^0.074^5^0.056^0.069^~4~^~02/01/2011~ -~21280~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~4~^~02/01/2011~ -~21280~^~662~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.026^5^0.020^0.025^~4~^~02/01/2011~ -~21280~^~663~^0.236^6^0.008^~1~^~A~^^^1^0.217^0.269^5^0.216^0.257^~4~^~02/01/2011~ -~21280~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21280~^~665~^0.054^6^0.004^~1~^~A~^^^1^0.040^0.065^5^0.044^0.064^~4~^~02/01/2011~ -~21280~^~670~^0.044^6^0.002^~1~^~A~^^^1^0.039^0.050^5^0.039^0.049^~4~^~02/01/2011~ -~21280~^~671~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21280~^~672~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.014^0.019^~4~^~02/01/2011~ -~21280~^~673~^0.152^6^0.008^~1~^~A~^^^1^0.138^0.186^5^0.133^0.172^~4~^~02/01/2011~ -~21280~^~674~^2.819^6^0.084^~1~^~A~^^^1^2.622^3.196^5^2.604^3.035^~4~^~02/01/2011~ -~21280~^~675~^1.749^6^0.036^~1~^~A~^^^1^1.668^1.871^5^1.657^1.842^~4~^~02/01/2011~ -~21280~^~676~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.009^~1, 4~^~02/01/2011~ -~21280~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~02/01/2011~ -~21280~^~687~^0.031^6^0.001^~1~^~A~^^^1^0.029^0.037^5^0.027^0.034^~4~^~02/01/2011~ -~21280~^~689~^0.012^6^0.001^~1~^~AS~^^^1^0.009^0.013^5^0.010^0.013^~4~^~02/01/2011~ -~21280~^~693~^0.259^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21280~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21280~^~851~^0.187^6^0.006^~1~^~A~^^^1^0.165^0.204^5^0.171^0.203^~4~^~02/01/2011~ -~21280~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21280~^~853~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.012^5^0.008^0.011^~4~^~02/01/2011~ -~21280~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~4~^~02/01/2011~ -~21281~^~312~^0.114^6^0.002^~1~^~A~^^^1^0.108^0.120^5^0.109^0.118^~4~^~02/01/2011~ -~21281~^~315~^0.298^6^0.006^~1~^~A~^^^1^0.276^0.313^5^0.282^0.314^~4~^~02/01/2011~ -~21281~^~404~^0.360^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~405~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~406~^3.250^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21281~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~502~^0.359^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~503~^0.465^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~504~^0.958^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~505~^0.657^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~506~^0.246^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~507~^0.186^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~508~^0.599^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~509~^0.365^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~510~^0.586^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~511~^0.478^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~512~^0.301^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~513~^0.398^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~514~^0.792^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~515~^3.417^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~516~^0.402^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~517~^1.570^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~518~^0.683^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21281~^~605~^0.358^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~606~^4.856^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~607~^0.086^6^0.009^~1~^~A~^^^1^0.049^0.116^5^0.063^0.109^~4~^~02/01/2011~ -~21281~^~608~^0.067^6^0.006^~1~^~A~^^^1^0.048^0.088^5^0.053^0.082^~4~^~02/01/2011~ -~21281~^~609~^0.046^6^0.003^~1~^~A~^^^1^0.036^0.057^5^0.038^0.053^~4~^~02/01/2011~ -~21281~^~610~^0.118^6^0.007^~1~^~A~^^^1^0.095^0.143^5^0.101^0.136^~4~^~02/01/2011~ -~21281~^~611~^0.145^6^0.007^~1~^~A~^^^1^0.118^0.166^5^0.127^0.163^~4~^~02/01/2011~ -~21281~^~612~^0.559^6^0.022^~1~^~A~^^^1^0.467^0.623^5^0.501^0.616^~4~^~02/01/2011~ -~21281~^~613~^2.513^6^0.061^~1~^~A~^^^1^2.361^2.778^5^2.355^2.671^~4~^~02/01/2011~ -~21281~^~614~^1.146^6^0.023^~1~^~A~^^^1^1.074^1.232^5^1.086^1.206^~4~^~02/01/2011~ -~21281~^~615~^0.024^6^0.000^~1~^~A~^^^1^0.022^0.025^5^0.022^0.025^~4~^~02/01/2011~ -~21281~^~617~^3.291^6^0.076^~1~^~AS~^^^1^3.096^3.545^5^3.096^3.486^~4~^~02/01/2011~ -~21281~^~618~^2.226^6^0.065^~1~^~AS~^^^1^1.992^2.365^5^2.059^2.392^~4~^~02/01/2011~ -~21281~^~619~^0.255^6^0.008^~1~^~AS~^^^1^0.222^0.279^5^0.234^0.276^~4~^~02/01/2011~ -~21281~^~620~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.024^5^0.018^0.023^~4~^~02/01/2011~ -~21281~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21281~^~624~^0.017^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.016^0.018^~4~^~02/01/2011~ -~21281~^~625~^0.050^6^0.002^~1~^~A~^^^1^0.045^0.061^5^0.044^0.057^~4~^~02/01/2011~ -~21281~^~626~^0.181^6^0.007^~1~^~AS~^^^1^0.163^0.213^5^0.163^0.200^~4~^~02/01/2011~ -~21281~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21281~^~628~^0.055^6^0.002^~1~^~A~^^^1^0.049^0.061^5^0.050^0.060^~4~^~02/01/2011~ -~21281~^~629~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 4~^~02/01/2011~ -~21281~^~630~^0.007^6^0.000^~1~^~AS~^^^1^0.005^0.008^5^0.006^0.008^~4~^~02/01/2011~ -~21281~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~02/01/2011~ -~21281~^~645~^3.618^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~646~^2.550^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~652~^0.061^6^0.002^~1~^~A~^^^1^0.052^0.068^5^0.055^0.067^~4~^~02/01/2011~ -~21281~^~653~^0.064^6^0.002^~1~^~A~^^^1^0.059^0.072^5^0.058^0.069^~4~^~02/01/2011~ -~21281~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~4~^~02/01/2011~ -~21281~^~662~^0.023^6^0.001^~1~^~A~^^^1^0.019^0.026^5^0.021^0.026^~4~^~02/01/2011~ -~21281~^~663~^0.269^6^0.010^~1~^~A~^^^1^0.241^0.311^5^0.244^0.295^~4~^~02/01/2011~ -~21281~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21281~^~665~^0.066^6^0.002^~1~^~A~^^^1^0.062^0.073^5^0.062^0.070^~4~^~02/01/2011~ -~21281~^~670~^0.045^6^0.001^~1~^~A~^^^1^0.041^0.049^5^0.042^0.048^~4~^~02/01/2011~ -~21281~^~671~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.006^~1, 4~^~02/01/2011~ -~21281~^~672~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.019^5^0.014^0.019^~4~^~02/01/2011~ -~21281~^~673~^0.158^6^0.007^~1~^~A~^^^1^0.139^0.187^5^0.141^0.176^~4~^~02/01/2011~ -~21281~^~674~^3.021^6^0.068^~1~^~A~^^^1^2.855^3.265^5^2.847^3.196^~4~^~02/01/2011~ -~21281~^~675~^2.115^6^0.065^~1~^~A~^^^1^1.881^2.256^5^1.948^2.281^~4~^~02/01/2011~ -~21281~^~676~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.006^0.008^~4~^~02/01/2011~ -~21281~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~02/01/2011~ -~21281~^~687~^0.031^6^0.002^~1~^~A~^^^1^0.027^0.036^5^0.027^0.035^~4~^~02/01/2011~ -~21281~^~689~^0.013^6^0.000^~1~^~AS~^^^1^0.012^0.015^5^0.012^0.014^~4~^~02/01/2011~ -~21281~^~693~^0.292^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~695~^0.066^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21281~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2005~ -~21281~^~851~^0.252^6^0.008^~1~^~A~^^^1^0.218^0.276^5^0.230^0.273^~4~^~02/01/2011~ -~21281~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21281~^~853~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21281~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~4~^~02/01/2011~ -~21282~^~312~^0.111^4^0.005^~1~^~A~^^^1^0.099^0.124^3^0.094^0.127^~2, 3~^~01/01/2005~ -~21282~^~315~^0.260^4^0.006^~1~^~A~^^^1^0.248^0.276^3^0.239^0.280^~2, 3~^~01/01/2005~ -~21282~^~404~^0.135^4^0.032^~1~^~A~^^^1^0.063^0.220^3^0.032^0.238^~2, 3~^~01/01/2005~ -~21282~^~405~^0.220^4^0.014^~1~^~A~^^^1^0.200^0.260^3^0.177^0.263^~2, 3~^~01/01/2005~ -~21282~^~406~^3.250^4^0.144^~1~^~A~^^^1^2.900^3.600^3^2.791^3.709^~2, 3~^~01/01/2005~ -~21282~^~410~^0.500^4^0.000^~1~^~A~^^^1^0.500^0.500^^^^~2, 3~^~01/01/2005~ -~21282~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~502~^0.319^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~503~^0.435^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~504~^0.856^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~505~^0.531^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~506~^0.227^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~507~^0.137^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~508~^0.524^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~509~^0.337^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~510~^0.529^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~511~^0.462^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~512~^0.385^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~513~^0.379^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~514~^0.751^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~515~^2.845^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~516~^0.387^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~517~^1.468^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~518~^0.581^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21282~^~606~^4.386^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~609~^0.043^4^0.003^~1~^~A~^^^1^0.034^0.049^3^0.033^0.054^~2, 3~^~01/01/2005~ -~21282~^~610~^0.102^4^0.008^~1~^~A~^^^1^0.080^0.115^3^0.076^0.129^~2, 3~^~01/01/2005~ -~21282~^~611~^0.117^4^0.009^~1~^~A~^^^1^0.092^0.133^3^0.088^0.147^~2, 3~^~01/01/2005~ -~21282~^~612~^0.484^4^0.021^~1~^~A~^^^1^0.435^0.532^3^0.416^0.551^~2, 3~^~01/01/2005~ -~21282~^~613~^2.326^4^0.073^~1~^~A~^^^1^2.183^2.501^3^2.095^2.558^~2, 3~^~01/01/2005~ -~21282~^~614~^1.184^4^0.047^~1~^~A~^^^1^1.072^1.278^3^1.034^1.335^~2, 3~^~01/01/2005~ -~21282~^~615~^0.019^4^0.001^~1~^~A~^^^1^0.018^0.021^3^0.017^0.021^~2, 3~^~01/01/2005~ -~21282~^~617~^3.365^4^0.099^~1~^~A~^^^1^3.099^3.577^3^3.049^3.682^~2, 3~^~01/01/2005~ -~21282~^~618~^1.260^4^0.024^~1~^~A~^^^1^1.203^1.322^3^1.183^1.338^~2, 3~^~01/01/2005~ -~21282~^~619~^0.127^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~ -~21282~^~620~^0.021^4^0.001^~1~^~A~^^^1^0.019^0.023^3^0.017^0.024^~2, 3~^~01/01/2005~ -~21282~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~625~^0.046^4^0.002^~1~^~A~^^^1^0.042^0.049^3^0.041^0.052^~2, 3~^~01/01/2005~ -~21282~^~626~^0.184^4^0.008^~1~^~A~^^^1^0.162^0.197^3^0.159^0.210^~2, 3~^~01/01/2005~ -~21282~^~628~^0.031^4^0.002^~1~^~A~^^^1^0.027^0.036^3^0.025^0.037^~2, 3~^~01/01/2005~ -~21282~^~645~^3.627^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~646~^1.425^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21282~^~652~^0.052^4^0.002^~1~^~A~^^^1^0.048^0.056^3^0.047^0.057^~2, 3~^~01/01/2005~ -~21282~^~653~^0.057^4^0.002^~1~^~A~^^^1^0.051^0.063^3^0.049^0.065^~2, 3~^~01/01/2005~ -~21282~^~672~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.018^3^0.014^0.020^~2, 3~^~01/01/2005~ -~21282~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2005~ -~21282~^~851~^0.127^4^0.004^~1~^~A~^^^1^0.118^0.136^3^0.115^0.139^~2, 3~^~01/01/2005~ -~21283~^~312~^0.125^9^0.003^~1~^~A~^^^1^0.110^0.136^8^0.119^0.132^~1, 2, 3~^~01/01/2005~ -~21283~^~315~^0.338^9^0.009^~1~^~A~^^^1^0.298^0.382^8^0.316^0.359^~2, 3~^~01/01/2005~ -~21283~^~404~^0.453^9^0.018^~1~^~A~^^^1^0.385^0.520^8^0.412^0.494^~2, 3~^~01/01/2005~ -~21283~^~405~^1.225^9^0.187^~1~^~A~^^^1^0.498^2.400^8^0.793^1.657^~2, 3~^~01/01/2005~ -~21283~^~406~^3.064^9^0.071^~1~^~A~^^^1^2.733^3.413^8^2.900^3.228^~2, 3~^~01/01/2005~ -~21283~^~410~^0.180^4^0.002^~1~^~A~^^^1^0.174^0.184^3^0.173^0.187^~2, 3~^~01/01/2005~ -~21283~^~415~^0.122^9^0.005^~1~^~A~^^^1^0.103^0.142^8^0.110^0.133^~2, 3~^~01/01/2005~ -~21283~^~606~^3.871^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~609~^0.058^9^0.002^~1~^~A~^^^1^0.051^0.068^8^0.054^0.061^~2, 3~^~01/01/2005~ -~21283~^~610~^0.137^9^0.005^~1~^~A~^^^1^0.116^0.169^8^0.125^0.149^~2, 3~^~01/01/2005~ -~21283~^~611~^0.157^9^0.007^~1~^~A~^^^1^0.125^0.196^8^0.142^0.172^~2, 3~^~01/01/2005~ -~21283~^~612~^0.564^9^0.021^~1~^~A~^^^1^0.465^0.697^8^0.515^0.612^~2, 3~^~01/01/2005~ -~21283~^~613~^1.961^9^0.047^~1~^~A~^^^1^1.701^2.214^8^1.852^2.070^~2, 3~^~01/01/2005~ -~21283~^~614~^0.872^9^0.017^~1~^~A~^^^1^0.788^0.961^8^0.834^0.910^~2, 3~^~01/01/2005~ -~21283~^~615~^0.019^9^0.001^~1~^~A~^^^1^0.014^0.020^8^0.018^0.020^~2, 3~^~01/01/2005~ -~21283~^~617~^2.316^9^0.042^~1~^~A~^^^1^2.104^2.502^8^2.219^2.413^~2, 3~^~01/01/2005~ -~21283~^~618~^1.590^9^0.027^~1~^~A~^^^1^1.474^1.713^8^1.529^1.652^~2, 3~^~01/01/2005~ -~21283~^~619~^0.171^9^0.004^~1~^~A~^^^1^0.150^0.190^8^0.162^0.180^~2, 3~^~01/01/2005~ -~21283~^~620~^0.010^9^0.000^~1~^~A~^^^1^0.009^0.011^8^0.009^0.011^~1, 2, 3~^~01/01/2005~ -~21283~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~624~^0.012^9^0.000^~1~^~A~^^^1^0.011^0.012^8^0.011^0.012^~1, 2, 3~^~01/01/2005~ -~21283~^~625~^0.041^9^0.003^~1~^~A~^^^1^0.031^0.061^8^0.035^0.048^~2, 3~^~01/01/2005~ -~21283~^~626~^0.091^9^0.004^~1~^~A~^^^1^0.076^0.120^8^0.081^0.100^~2, 3~^~01/01/2005~ -~21283~^~627~^0.031^9^0.002^~1~^~A~^^^1^0.020^0.040^8^0.026^0.036^~2, 3~^~01/01/2005~ -~21283~^~628~^0.021^9^0.001^~1~^~A~^^^1^0.016^0.023^8^0.019^0.022^~2, 3~^~01/01/2005~ -~21283~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~630~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~645~^2.476^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~646~^1.970^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~ -~21283~^~652~^0.056^9^0.002^~1~^~A~^^^1^0.049^0.065^8^0.052^0.059^~2, 3~^~01/01/2005~ -~21283~^~653~^0.035^9^0.001^~1~^~A~^^^1^0.028^0.041^8^0.032^0.039^~2, 3~^~01/01/2005~ -~21283~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~672~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~687~^0.007^9^0.001^~1~^~A~^^^1^0.005^0.012^8^0.005^0.010^~1, 2, 3~^~01/01/2005~ -~21283~^~689~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.005^8^-0.001^0.002^~1, 2, 3~^~01/01/2005~ -~21283~^~696~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2008~ -~21283~^~851~^0.167^9^0.003^~1~^~A~^^^1^0.151^0.181^8^0.159^0.174^~2, 3~^~01/01/2005~ -~21284~^~312~^0.128^9^0.004^~1~^~A~^^^1^0.120^0.158^8^0.119^0.138^~1, 2, 3~^~01/01/2005~ -~21284~^~315~^0.348^9^0.006^~1~^~A~^^^1^0.308^0.366^8^0.335^0.361^~2, 3~^~01/01/2005~ -~21284~^~404~^0.431^9^0.025^~1~^~A~^^^1^0.260^0.535^8^0.372^0.490^~2, 3~^~01/01/2005~ -~21284~^~405~^0.486^8^0.094^~1~^~A~^^^1^0.236^0.885^7^0.264^0.708^~2, 3~^~01/01/2005~ -~21284~^~406~^3.225^9^0.144^~1~^~A~^^^1^2.537^4.177^8^2.893^3.557^~2, 3~^~01/01/2005~ -~21284~^~410~^0.266^4^0.004^~1~^~A~^^^1^0.256^0.275^3^0.252^0.280^~2, 3~^~01/01/2005~ -~21284~^~415~^0.162^9^0.016^~1~^~A~^^^1^0.126^0.280^8^0.127^0.198^~2, 3~^~01/01/2005~ -~21284~^~501~^0.127^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~502~^0.480^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~503~^0.527^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~504~^1.070^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~505~^0.697^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~506~^0.212^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~507~^0.155^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~508~^0.655^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~509~^0.452^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~510~^0.655^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~511~^0.505^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~512~^0.335^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~513~^0.487^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~514~^0.902^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~515~^3.420^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~516~^0.427^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~517~^1.372^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~518~^0.690^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21284~^~606~^4.908^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~609~^0.051^9^0.003^~1~^~A~^^^1^0.039^0.071^8^0.043^0.059^~2, 3~^~01/01/2005~ -~21284~^~610~^0.123^9^0.008^~1~^~A~^^^1^0.094^0.160^8^0.105^0.141^~2, 3~^~01/01/2005~ -~21284~^~611~^0.143^9^0.009^~1~^~A~^^^1^0.106^0.188^8^0.122^0.165^~2, 3~^~01/01/2005~ -~21284~^~612~^0.587^9^0.031^~1~^~A~^^^1^0.469^0.760^8^0.517^0.657^~2, 3~^~01/01/2005~ -~21284~^~613~^2.605^9^0.056^~1~^~A~^^^1^2.310^2.878^8^2.476^2.734^~2, 3~^~01/01/2005~ -~21284~^~614~^1.242^9^0.025^~1~^~A~^^^1^1.115^1.375^8^1.184^1.301^~2, 3~^~01/01/2005~ -~21284~^~615~^0.021^9^0.000^~1~^~A~^^^1^0.020^0.021^8^0.020^0.021^~2, 3~^~01/01/2005~ -~21284~^~617~^3.602^9^0.038^~1~^~A~^^^1^3.408^3.703^8^3.515^3.690^~2, 3~^~01/01/2005~ -~21284~^~618~^1.774^9^0.024^~1~^~A~^^^1^1.672^1.920^8^1.719^1.830^~2, 3~^~01/01/2005~ -~21284~^~619~^0.180^9^0.004^~1~^~A~^^^1^0.170^0.200^8^0.171^0.189^~2, 3~^~01/01/2005~ -~21284~^~620~^0.019^9^0.001^~1~^~A~^^^1^0.014^0.021^8^0.018^0.021^~2, 3~^~01/01/2005~ -~21284~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~624~^0.012^9^0.000^~1~^~A~^^^1^0.011^0.013^8^0.011^0.013^~1, 2, 3~^~01/01/2005~ -~21284~^~625~^0.052^9^0.003^~1~^~A~^^^1^0.038^0.067^8^0.045^0.059^~2, 3~^~01/01/2005~ -~21284~^~626~^0.187^9^0.004^~1~^~A~^^^1^0.160^0.207^8^0.178^0.197^~2, 3~^~01/01/2005~ -~21284~^~627~^0.042^9^0.002^~1~^~A~^^^1^0.040^0.060^8^0.037^0.047^~2, 3~^~01/01/2005~ -~21284~^~628~^0.042^9^0.001^~1~^~A~^^^1^0.035^0.048^8^0.039^0.045^~2, 3~^~01/01/2005~ -~21284~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~630~^0.010^9^0.003^~1~^~A~^^^1^0.000^0.020^8^0.003^0.017^~1, 2, 3~^~01/01/2005~ -~21284~^~631~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~645~^3.912^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~646~^2.206^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21284~^~652~^0.060^9^0.003^~1~^~A~^^^1^0.049^0.077^8^0.053^0.067^~2, 3~^~01/01/2005~ -~21284~^~653~^0.064^9^0.002^~1~^~A~^^^1^0.055^0.076^8^0.059^0.069^~2, 3~^~01/01/2005~ -~21284~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~672~^0.015^9^0.001^~1~^~A~^^^1^0.012^0.017^8^0.014^0.016^~2, 3~^~01/01/2005~ -~21284~^~685~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~687~^0.019^9^0.001^~1~^~A~^^^1^0.015^0.020^8^0.017^0.021^~1, 2, 3~^~01/01/2005~ -~21284~^~689~^0.001^9^0.001^~1~^~A~^^^1^0.000^0.005^8^-0.001^0.002^~1, 2, 3~^~01/01/2005~ -~21284~^~696~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21284~^~851~^0.175^9^0.003^~1~^~A~^^^1^0.166^0.186^8^0.169^0.181^~2, 3~^~01/01/2005~ -~21285~^~312~^0.149^4^0.000^~1~^~A~^^^1^0.149^0.149^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~315~^0.282^4^0.010^~1~^~A~^^^1^0.260^0.300^3^0.250^0.315^~2, 3~^~01/01/2005~ -~21285~^~404~^0.233^4^0.009^~1~^~A~^^^1^0.207^0.251^3^0.204^0.263^~2, 3~^~01/01/2005~ -~21285~^~405~^0.292^4^0.064^~1~^~A~^^^1^0.140^0.452^3^0.087^0.496^~2, 3~^~01/01/2005~ -~21285~^~406~^3.205^4^0.040^~1~^~A~^^^1^3.130^3.300^3^3.079^3.331^~2, 3~^~01/01/2005~ -~21285~^~410~^0.325^4^0.008^~1~^~A~^^^1^0.306^0.346^3^0.299^0.351^~2, 3~^~01/01/2005~ -~21285~^~501~^0.105^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~502~^0.395^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~503~^0.415^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~504~^0.830^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~505~^0.545^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~506~^0.167^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~508~^0.520^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~509~^0.338^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~510~^0.500^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~511~^0.440^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~512~^0.275^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~513~^0.428^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~514~^0.768^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~515~^2.861^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~516~^0.380^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~517~^1.030^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~518~^0.543^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21285~^~606~^3.765^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~609~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~01/01/2005~ -~21285~^~610~^0.077^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.062^0.093^~2, 3~^~01/01/2005~ -~21285~^~611~^0.087^4^0.005^~1~^~A~^^^1^0.080^0.100^3^0.072^0.103^~2, 3~^~01/01/2005~ -~21285~^~612~^0.382^4^0.013^~1~^~A~^^^1^0.360^0.420^3^0.341^0.424^~2, 3~^~01/01/2005~ -~21285~^~613~^2.117^4^0.055^~1~^~A~^^^1^1.980^2.240^3^1.942^2.293^~2, 3~^~01/01/2005~ -~21285~^~614~^0.967^4^0.018^~1~^~A~^^^1^0.920^1.010^3^0.909^1.026^~2, 3~^~01/01/2005~ -~21285~^~615~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~01/01/2005~ -~21285~^~617~^3.385^4^0.085^~1~^~A~^^^1^3.130^3.480^3^3.114^3.656^~2, 3~^~01/01/2005~ -~21285~^~618~^1.675^4^0.050^~1~^~A~^^^1^1.530^1.760^3^1.514^1.835^~2, 3~^~01/01/2005~ -~21285~^~619~^0.155^4^0.006^~1~^~A~^^^1^0.140^0.170^3^0.134^0.175^~2, 3~^~01/01/2005~ -~21285~^~620~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~01/01/2005~ -~21285~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~624~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~1, 2, 3~^~01/01/2005~ -~21285~^~625~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~01/01/2005~ -~21285~^~626~^0.165^4^0.006^~1~^~A~^^^1^0.150^0.180^3^0.144^0.186^~2, 3~^~01/01/2005~ -~21285~^~627~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~01/01/2005~ -~21285~^~628~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.036^0.054^~2, 3~^~01/01/2005~ -~21285~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~630~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~01/01/2005~ -~21285~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~645~^3.652^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~646~^1.877^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21285~^~652~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~01/01/2005~ -~21285~^~653~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~01/01/2005~ -~21285~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~687~^0.027^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.019^0.035^~2, 3~^~01/01/2005~ -~21285~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21285~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~312~^0.149^4^0.000^~1~^~A~^^^1^0.149^0.149^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~315~^0.210^4^0.000^~1~^~A~^^^1^0.210^0.210^^^^~2, 3~^~01/01/2005~ -~21286~^~404~^0.469^4^0.041^~1~^~A~^^^1^0.403^0.586^3^0.338^0.600^~2, 3~^~01/01/2005~ -~21286~^~405~^0.216^4^0.054^~1~^~A~^^^1^0.160^0.379^3^0.043^0.389^~2, 3~^~01/01/2005~ -~21286~^~406~^0.895^4^0.028^~1~^~A~^^^1^0.846^0.976^3^0.806^0.985^~2, 3~^~01/01/2005~ -~21286~^~410~^0.139^4^0.002^~1~^~A~^^^1^0.134^0.145^3^0.132^0.147^~2, 3~^~01/01/2005~ -~21286~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~502~^0.478^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~503~^0.547^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~504~^1.105^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~505~^0.740^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~506~^0.225^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~507~^0.130^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~508~^0.663^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~509~^0.485^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~510~^0.698^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~511~^0.455^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~512~^0.330^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~513~^0.423^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~514~^1.051^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~515~^3.442^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~516~^0.310^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~517~^1.366^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~518~^0.715^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~21286~^~606~^6.202^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~609~^0.080^4^0.004^~1~^~A~^^^1^0.070^0.090^3^0.067^0.093^~2, 3~^~01/01/2005~ -~21286~^~610~^0.192^4^0.011^~1~^~A~^^^1^0.160^0.210^3^0.157^0.228^~2, 3~^~01/01/2005~ -~21286~^~611~^0.223^4^0.015^~1~^~A~^^^1^0.180^0.250^3^0.175^0.270^~2, 3~^~01/01/2005~ -~21286~^~612~^0.817^4^0.052^~1~^~A~^^^1^0.680^0.930^3^0.653^0.982^~2, 3~^~01/01/2005~ -~21286~^~613~^3.015^4^0.118^~1~^~A~^^^1^2.690^3.250^3^2.641^3.389^~2, 3~^~01/01/2005~ -~21286~^~614~^1.697^4^0.028^~1~^~A~^^^1^1.650^1.760^3^1.608^1.787^~2, 3~^~01/01/2005~ -~21286~^~615~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~01/01/2005~ -~21286~^~617~^5.745^4^0.041^~1~^~A~^^^1^5.640^5.820^3^5.614^5.876^~2, 3~^~01/01/2005~ -~21286~^~618~^1.500^4^0.014^~1~^~A~^^^1^1.460^1.520^3^1.455^1.545^~2, 3~^~01/01/2005~ -~21286~^~619~^0.102^4^0.005^~1~^~A~^^^1^0.090^0.110^3^0.087^0.118^~2, 3~^~01/01/2005~ -~21286~^~620~^0.011^4^0.003^~1~^~A~^^^1^0.007^0.020^3^0.001^0.020^~1, 2, 3~^~01/01/2005~ -~21286~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~624~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~01/01/2005~ -~21286~^~625~^0.062^4^0.006^~1~^~A~^^^1^0.050^0.080^3^0.042^0.082^~2, 3~^~01/01/2005~ -~21286~^~626~^0.137^4^0.013^~1~^~A~^^^1^0.110^0.170^3^0.098^0.177^~2, 3~^~01/01/2005~ -~21286~^~627~^0.047^4^0.005^~1~^~A~^^^1^0.040^0.060^3^0.032^0.063^~2, 3~^~01/01/2005~ -~21286~^~628~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~01/01/2005~ -~21286~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~645~^6.002^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~646~^1.663^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21286~^~652~^0.077^4^0.006^~1~^~A~^^^1^0.060^0.090^3^0.057^0.098^~2, 3~^~01/01/2005~ -~21286~^~653~^0.050^4^0.004^~1~^~A~^^^1^0.040^0.060^3^0.037^0.063^~2, 3~^~01/01/2005~ -~21286~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~687~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~01/01/2005~ -~21286~^~689~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~01/01/2005~ -~21286~^~696~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21286~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2005~ -~21287~^~312~^0.126^8^0.006^~1~^~A~^^^1^0.106^0.148^7^0.112^0.139^~2, 3~^~02/01/2005~ -~21287~^~315~^0.321^8^0.017^~1~^~A~^^^1^0.260^0.388^7^0.281^0.360^~2, 3~^~02/01/2005~ -~21287~^~404~^0.377^8^0.015^~1~^~A~^^^1^0.319^0.444^7^0.342^0.411^~2, 3~^~02/01/2005~ -~21287~^~405~^0.297^8^0.007^~1~^~A~^^^1^0.270^0.320^7^0.281^0.314^~2, 3~^~02/01/2005~ -~21287~^~406~^3.237^8^0.200^~1~^~A~^^^1^2.500^4.200^7^2.765^3.710^~2, 3~^~02/01/2005~ -~21287~^~410~^0.447^3^0.015^~1~^~A~^^^1^0.420^0.470^2^0.384^0.509^~2, 3~^~02/01/2005~ -~21287~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~502~^0.393^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~503~^0.547^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~504~^1.137^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~505~^0.523^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~507~^0.335^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~508~^0.717^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~509~^0.503^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~510~^0.700^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~511~^0.513^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~513~^0.256^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~514~^0.860^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~515~^3.997^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~516~^0.350^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~517~^1.090^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~518~^0.542^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21287~^~606~^4.206^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~609~^0.069^8^0.005^~1~^~A~^^^1^0.048^0.088^7^0.057^0.081^~2, 3~^~02/01/2005~ -~21287~^~610~^0.159^8^0.012^~1~^~A~^^^1^0.111^0.204^7^0.131^0.186^~2, 3~^~02/01/2005~ -~21287~^~611~^0.187^8^0.014^~1~^~A~^^^1^0.131^0.237^7^0.155^0.219^~2, 3~^~02/01/2005~ -~21287~^~612~^0.634^8^0.045^~1~^~A~^^^1^0.450^0.788^7^0.529^0.739^~2, 3~^~02/01/2005~ -~21287~^~613~^2.115^8^0.127^~1~^~A~^^^1^1.600^2.576^7^1.814^2.415^~2, 3~^~02/01/2005~ -~21287~^~614~^0.913^8^0.062^~1~^~A~^^^1^0.654^1.109^7^0.768^1.059^~2, 3~^~02/01/2005~ -~21287~^~615~^0.016^8^0.001^~1~^~A~^^^1^0.013^0.019^7^0.015^0.018^~2, 3~^~02/01/2005~ -~21287~^~617~^2.201^8^0.127^~1~^~A~^^^1^1.691^2.648^7^1.899^2.502^~2, 3~^~02/01/2005~ -~21287~^~618~^1.294^8^0.043^~1~^~A~^^^1^1.037^1.436^7^1.192^1.397^~2, 3~^~02/01/2005~ -~21287~^~619~^0.155^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21287~^~620~^0.011^8^0.001^~1~^~A~^^^1^0.007^0.015^7^0.009^0.014^~1, 2, 3~^~02/01/2005~ -~21287~^~624~^0.009^8^0.001^~1~^~A~^^^1^0.007^0.012^7^0.008^0.011^~1, 2, 3~^~02/01/2005~ -~21287~^~625~^0.050^8^0.003^~1~^~A~^^^1^0.036^0.062^7^0.042^0.058^~2, 3~^~02/01/2005~ -~21287~^~626~^0.111^8^0.007^~1~^~A~^^^1^0.083^0.135^7^0.095^0.128^~2, 3~^~02/01/2005~ -~21287~^~628~^0.019^8^0.001^~1~^~A~^^^1^0.015^0.022^7^0.017^0.020^~2, 3~^~02/01/2005~ -~21287~^~645~^2.380^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~646~^1.461^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21287~^~652~^0.064^8^0.004^~1~^~A~^^^1^0.046^0.079^7^0.054^0.075^~2, 3~^~02/01/2005~ -~21287~^~653~^0.039^8^0.002^~1~^~A~^^^1^0.029^0.047^7^0.033^0.045^~2, 3~^~02/01/2005~ -~21287~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~687~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21287~^~851~^0.155^8^0.005^~1~^~A~^^^1^0.126^0.171^7^0.143^0.167^~2, 3~^~02/01/2005~ -~21288~^~312~^0.125^8^0.003^~1~^~A~^^^1^0.114^0.140^7^0.117^0.132^~2, 3~^~02/01/2005~ -~21288~^~315~^0.338^8^0.022^~1~^~A~^^^1^0.263^0.452^7^0.286^0.389^~2, 3~^~02/01/2005~ -~21288~^~404~^0.338^8^0.015^~1~^~A~^^^1^0.284^0.400^7^0.304^0.373^~2, 3~^~02/01/2005~ -~21288~^~405~^0.311^8^0.007^~1~^~A~^^^1^0.280^0.350^7^0.294^0.328^~2, 3~^~02/01/2005~ -~21288~^~406~^3.737^8^0.143^~1~^~A~^^^1^3.200^4.400^7^3.400^4.075^~2, 3~^~02/01/2005~ -~21288~^~410~^0.530^3^0.021^~1~^~A~^^^1^0.490^0.560^2^0.440^0.620^~2, 3~^~02/01/2005~ -~21288~^~501~^0.130^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~502~^0.430^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~503~^0.623^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~504~^1.220^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~505~^0.927^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~506~^0.323^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~507~^0.353^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~508~^0.753^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~509~^0.497^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~510~^0.777^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~511~^0.603^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~512~^0.393^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~513~^0.293^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~514~^0.980^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~515~^4.107^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~516~^0.440^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~517~^1.430^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~518~^0.823^0^^~1~^~A~^^^^^^^^^^~03/01/2005~ -~21288~^~606~^4.541^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21288~^~609~^0.065^8^0.004^~1~^~A~^^^1^0.048^0.078^7^0.056^0.075^~2, 3~^~02/01/2005~ -~21288~^~610~^0.146^8^0.009^~1~^~A~^^^1^0.107^0.168^7^0.125^0.166^~2, 3~^~02/01/2005~ -~21288~^~611~^0.167^8^0.010^~1~^~A~^^^1^0.123^0.195^7^0.143^0.191^~2, 3~^~02/01/2005~ -~21288~^~612~^0.599^8^0.034^~1~^~A~^^^1^0.448^0.694^7^0.520^0.679^~2, 3~^~02/01/2005~ -~21288~^~613~^2.370^8^0.091^~1~^~A~^^^1^1.920^2.710^7^2.154^2.586^~2, 3~^~02/01/2005~ -~21288~^~614~^1.060^8^0.044^~1~^~A~^^^1^0.843^1.239^7^0.956^1.164^~2, 3~^~02/01/2005~ -~21288~^~615~^0.017^8^0.001^~1~^~A~^^^1^0.015^0.021^7^0.016^0.019^~2, 3~^~02/01/2005~ -~21288~^~617~^2.862^8^0.094^~1~^~A~^^^1^2.440^3.246^7^2.640^3.083^~2, 3~^~02/01/2005~ -~21288~^~618~^1.420^8^0.056^~1~^~A~^^^1^1.181^1.597^7^1.288^1.551^~2, 3~^~02/01/2005~ -~21288~^~619~^0.158^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21288~^~620~^0.016^8^0.001^~1~^~A~^^^1^0.013^0.020^7^0.014^0.018^~2, 3~^~02/01/2005~ -~21288~^~624~^0.008^8^0.001^~1~^~A~^^^1^0.007^0.011^7^0.007^0.010^~1, 2, 3~^~02/01/2005~ -~21288~^~625~^0.050^8^0.002^~1~^~A~^^^1^0.038^0.060^7^0.044^0.056^~2, 3~^~02/01/2005~ -~21288~^~626~^0.162^8^0.006^~1~^~A~^^^1^0.135^0.181^7^0.149^0.175^~2, 3~^~02/01/2005~ -~21288~^~628~^0.034^8^0.001^~1~^~A~^^^1^0.031^0.037^7^0.032^0.035^~2, 3~^~02/01/2005~ -~21288~^~645~^3.108^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21288~^~646~^1.603^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~ -~21288~^~652~^0.061^8^0.003^~1~^~A~^^^1^0.046^0.071^7^0.053^0.069^~2, 3~^~02/01/2005~ -~21288~^~653~^0.047^8^0.002^~1~^~A~^^^1^0.038^0.054^7^0.043^0.052^~2, 3~^~02/01/2005~ -~21288~^~672~^0.010^8^0.002^~1~^~A~^^^1^0.000^0.015^7^0.005^0.015^~1, 2, 3~^~02/01/2005~ -~21288~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~687~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21288~^~851~^0.158^8^0.006^~1~^~A~^^^1^0.133^0.182^7^0.143^0.173^~2, 3~^~02/01/2005~ -~21289~^~312~^0.142^3^0.012^~1~^~A~^^^1^0.128^0.166^2^0.091^0.193^~2, 3~^~02/01/2005~ -~21289~^~315~^0.265^3^0.021^~1~^~A~^^^1^0.237^0.305^2^0.176^0.353^~2, 3~^~02/01/2005~ -~21289~^~404~^0.286^3^0.011^~1~^~A~^^^1^0.274^0.308^2^0.239^0.333^~2, 3~^~02/01/2005~ -~21289~^~405~^0.263^3^0.009^~1~^~A~^^^1^0.250^0.280^2^0.225^0.301^~2, 3~^~02/01/2005~ -~21289~^~406~^3.567^3^0.203^~1~^~A~^^^1^3.200^3.900^2^2.694^4.439^~2, 3~^~02/01/2005~ -~21289~^~410~^0.573^3^0.038^~1~^~A~^^^1^0.530^0.650^2^0.408^0.739^~2, 3~^~02/01/2005~ -~21289~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~502~^0.393^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~503~^0.554^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~504~^1.024^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~505~^0.576^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~506~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~507~^0.345^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~508~^0.604^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~509~^0.447^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~510~^0.647^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~511~^0.577^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~512~^0.350^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~513~^0.474^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~514~^0.934^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~515~^3.152^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~516~^0.468^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~517~^0.952^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~518~^0.691^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21289~^~606~^4.561^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~609~^0.048^3^0.000^~1~^~A~^^^1^0.048^0.048^^^^~2, 3~^~02/01/2005~ -~21289~^~610~^0.108^3^0.001^~1~^~A~^^^1^0.107^0.109^2^0.106^0.110^~2, 3~^~02/01/2005~ -~21289~^~611~^0.123^3^0.000^~1~^~A~^^^1^0.122^0.123^2^0.121^0.124^~2, 3~^~02/01/2005~ -~21289~^~612~^0.486^3^0.002^~1~^~A~^^^1^0.482^0.489^2^0.477^0.496^~2, 3~^~02/01/2005~ -~21289~^~613~^2.509^3^0.059^~1~^~A~^^^1^2.423^2.623^2^2.253^2.764^~2, 3~^~02/01/2005~ -~21289~^~614~^1.167^3^0.032^~1~^~A~^^^1^1.116^1.227^2^1.028^1.306^~2, 3~^~02/01/2005~ -~21289~^~615~^0.019^3^0.000^~1~^~A~^^^1^0.019^0.020^2^0.018^0.021^~2, 3~^~02/01/2005~ -~21289~^~617~^3.757^3^0.117^~1~^~A~^^^1^3.588^3.981^2^3.256^4.259^~2, 3~^~02/01/2005~ -~21289~^~618~^1.525^3^0.041^~1~^~A~^^^1^1.481^1.608^2^1.347^1.703^~2, 3~^~02/01/2005~ -~21289~^~619~^0.149^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21289~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.024^2^0.018^0.026^~2, 3~^~02/01/2005~ -~21289~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~625~^0.043^3^0.001^~1~^~A~^^^1^0.041^0.045^2^0.038^0.048^~2, 3~^~02/01/2005~ -~21289~^~626~^0.214^3^0.006^~1~^~A~^^^1^0.204^0.226^2^0.187^0.242^~2, 3~^~02/01/2005~ -~21289~^~628~^0.048^3^0.000^~1~^~A~^^^1^0.048^0.049^2^0.047^0.050^~2, 3~^~02/01/2005~ -~21289~^~645~^4.063^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~646~^1.720^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21289~^~652~^0.049^3^0.000^~1~^~A~^^^1^0.049^0.050^2^0.048^0.051^~2, 3~^~02/01/2005~ -~21289~^~653~^0.051^3^0.001^~1~^~A~^^^1^0.049^0.053^2^0.046^0.056^~2, 3~^~02/01/2005~ -~21289~^~672~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.025^2^0.021^0.027^~2, 3~^~02/01/2005~ -~21289~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21289~^~851~^0.149^3^0.004^~1~^~A~^^^1^0.144^0.156^2^0.132^0.165^~2, 3~^~02/01/2005~ -~21290~^~312~^0.116^3^0.009^~1~^~A~^^^1^0.101^0.132^2^0.078^0.154^~2, 3~^~02/01/2005~ -~21290~^~315~^0.311^3^0.028^~1~^~A~^^^1^0.259^0.357^2^0.189^0.433^~2, 3~^~02/01/2005~ -~21290~^~404~^0.440^3^0.037^~1~^~A~^^^1^0.367^0.490^2^0.280^0.600^~2, 3~^~02/01/2005~ -~21290~^~405~^0.273^3^0.007^~1~^~A~^^^1^0.260^0.280^2^0.244^0.302^~2, 3~^~02/01/2005~ -~21290~^~406~^2.967^3^0.186^~1~^~A~^^^1^2.600^3.200^2^2.168^3.765^~2, 3~^~02/01/2005~ -~21290~^~410~^0.570^3^0.020^~1~^~A~^^^1^0.550^0.610^2^0.484^0.656^~2, 3~^~02/01/2005~ -~21290~^~501~^0.156^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~502~^0.435^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~503~^0.632^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~504~^1.280^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~505~^1.112^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~506~^0.313^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~507~^0.473^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~508~^0.766^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~509~^0.506^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~510~^0.806^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~511~^0.618^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~512~^0.291^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~513~^0.347^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~514~^0.939^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~515~^4.217^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~516~^0.445^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~517~^1.608^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~518~^0.872^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21290~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21290~^~606~^4.237^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~609~^0.067^3^0.018^~1~^~A~^^^1^0.040^0.102^2^-0.011^0.146^~2, 3~^~02/01/2005~ -~21290~^~610~^0.154^3^0.040^~1~^~A~^^^1^0.097^0.232^2^-0.019^0.327^~2, 3~^~02/01/2005~ -~21290~^~611~^0.181^3^0.046^~1~^~A~^^^1^0.117^0.270^2^-0.017^0.379^~2, 3~^~02/01/2005~ -~21290~^~612~^0.614^3^0.148^~1~^~A~^^^1^0.411^0.903^2^-0.025^1.252^~2, 3~^~02/01/2005~ -~21290~^~613~^2.166^3^0.395^~1~^~A~^^^1^1.623^2.935^2^0.466^3.866^~2, 3~^~02/01/2005~ -~21290~^~614~^0.922^3^0.189^~1~^~A~^^^1^0.662^1.289^2^0.111^1.734^~2, 3~^~02/01/2005~ -~21290~^~615~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~02/01/2005~ -~21290~^~617~^2.576^3^0.295^~1~^~A~^^^1^2.182^3.153^2^1.306^3.845^~2, 3~^~02/01/2005~ -~21290~^~618~^1.534^3^0.109^~1~^~A~^^^1^1.327^1.697^2^1.065^2.004^~2, 3~^~02/01/2005~ -~21290~^~619~^0.183^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21290~^~620~^0.011^3^0.003^~1~^~A~^^^1^0.007^0.017^2^-0.003^0.024^~1, 2, 3~^~02/01/2005~ -~21290~^~624~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~02/01/2005~ -~21290~^~625~^0.048^3^0.011^~1~^~A~^^^1^0.032^0.070^2^-0.002^0.097^~2, 3~^~02/01/2005~ -~21290~^~626~^0.113^3^0.023^~1~^~A~^^^1^0.081^0.158^2^0.013^0.213^~2, 3~^~02/01/2005~ -~21290~^~628~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.012^0.030^~2, 3~^~02/01/2005~ -~21290~^~645~^2.757^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~646~^1.728^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21290~^~652~^0.062^3^0.014^~1~^~A~^^^1^0.043^0.090^2^0.001^0.123^~2, 3~^~02/01/2005~ -~21290~^~653~^0.039^3^0.008^~1~^~A~^^^1^0.028^0.054^2^0.005^0.072^~2, 3~^~02/01/2005~ -~21290~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21290~^~851~^0.183^3^0.014^~1~^~A~^^^1^0.159^0.206^2^0.124^0.242^~2, 3~^~02/01/2005~ -~21291~^~312~^0.121^3^0.001^~1~^~A~^^^1^0.120^0.124^2^0.115^0.127^~2, 3~^~02/01/2005~ -~21291~^~315~^0.316^3^0.018^~1~^~A~^^^1^0.284^0.347^2^0.238^0.395^~2, 3~^~02/01/2005~ -~21291~^~404~^0.373^3^0.026^~1~^~A~^^^1^0.337^0.424^2^0.260^0.486^~2, 3~^~02/01/2005~ -~21291~^~405~^0.280^3^0.010^~1~^~A~^^^1^0.260^0.290^2^0.237^0.323^~2, 3~^~02/01/2005~ -~21291~^~406~^3.767^3^0.176^~1~^~A~^^^1^3.500^4.100^2^3.008^4.525^~2, 3~^~02/01/2005~ -~21291~^~410~^0.483^3^0.029^~1~^~A~^^^1^0.430^0.530^2^0.358^0.608^~2, 3~^~02/01/2005~ -~21291~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~502~^0.369^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~503~^0.515^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~504~^1.066^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~505~^0.795^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~506~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~507~^0.463^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~508~^0.661^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~509~^0.456^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~510~^0.640^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~511~^0.520^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~512~^0.342^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~513~^0.403^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~514~^0.842^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~515~^3.689^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~516~^0.384^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~517~^1.026^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~518~^0.751^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21291~^~606~^4.314^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~609~^0.061^3^0.010^~1~^~A~^^^1^0.044^0.080^2^0.016^0.106^~2, 3~^~02/01/2005~ -~21291~^~610~^0.138^3^0.026^~1~^~A~^^^1^0.097^0.187^2^0.024^0.251^~2, 3~^~02/01/2005~ -~21291~^~611~^0.158^3^0.031^~1~^~A~^^^1^0.111^0.217^2^0.024^0.292^~2, 3~^~02/01/2005~ -~21291~^~612~^0.560^3^0.105^~1~^~A~^^^1^0.398^0.757^2^0.107^1.012^~2, 3~^~02/01/2005~ -~21291~^~613~^2.274^3^0.342^~1~^~A~^^^1^1.709^2.889^2^0.804^3.743^~2, 3~^~02/01/2005~ -~21291~^~614~^0.997^3^0.160^~1~^~A~^^^1^0.736^1.288^2^0.308^1.685^~2, 3~^~02/01/2005~ -~21291~^~615~^0.019^3^0.001^~1~^~A~^^^1^0.016^0.021^2^0.012^0.025^~2, 3~^~02/01/2005~ -~21291~^~617~^2.925^3^0.351^~1~^~A~^^^1^2.301^3.515^2^1.416^4.435^~2, 3~^~02/01/2005~ -~21291~^~618~^1.557^3^0.098^~1~^~A~^^^1^1.395^1.734^2^1.134^1.979^~2, 3~^~02/01/2005~ -~21291~^~619~^0.177^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21291~^~620~^0.014^3^0.003^~1~^~A~^^^1^0.011^0.020^2^0.002^0.026^~2, 3~^~02/01/2005~ -~21291~^~624~^0.009^3^0.002^~1~^~A~^^^1^0.007^0.012^2^0.002^0.016^~1, 2, 3~^~02/01/2005~ -~21291~^~625~^0.046^3^0.008^~1~^~A~^^^1^0.033^0.060^2^0.012^0.079^~2, 3~^~02/01/2005~ -~21291~^~626~^0.148^3^0.020^~1~^~A~^^^1^0.115^0.184^2^0.062^0.234^~2, 3~^~02/01/2005~ -~21291~^~628~^0.032^3^0.001^~1~^~A~^^^1^0.029^0.034^2^0.025^0.038^~2, 3~^~02/01/2005~ -~21291~^~645~^3.151^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~646~^1.756^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21291~^~652~^0.056^3^0.010^~1~^~A~^^^1^0.041^0.075^2^0.013^0.099^~2, 3~^~02/01/2005~ -~21291~^~653~^0.043^3^0.007^~1~^~A~^^^1^0.032^0.055^2^0.015^0.072^~2, 3~^~02/01/2005~ -~21291~^~672~^0.008^3^0.004^~1~^~A~^^^1^0.000^0.013^2^-0.009^0.025^~1, 2, 3~^~02/01/2005~ -~21291~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21291~^~851~^0.177^3^0.011^~1~^~A~^^^1^0.160^0.197^2^0.131^0.223^~2, 3~^~02/01/2005~ -~21292~^~312~^0.082^2^^~1~^~A~^^^1^0.078^0.085^1^^^^~02/01/2005~ -~21292~^~315~^0.211^2^^~1~^~A~^^^1^0.178^0.243^1^^^^~02/01/2005~ -~21292~^~404~^0.139^2^^~1~^~A~^^^1^0.130^0.148^1^^^^~02/01/2005~ -~21292~^~405~^0.185^2^^~1~^~A~^^^1^0.160^0.210^1^^^^~02/01/2005~ -~21292~^~406~^0.850^2^^~1~^~A~^^^1^0.800^0.900^1^^^^~02/01/2005~ -~21292~^~410~^0.425^2^^~1~^~A~^^^1^0.410^0.440^1^^^^~02/01/2005~ -~21292~^~501~^0.136^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~502~^0.556^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~503~^0.798^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~504~^1.655^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~505~^1.328^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~506~^0.461^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~507~^0.436^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~508~^0.963^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~509~^0.818^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~510~^1.051^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~511~^0.699^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~512~^0.257^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~513~^0.514^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~514~^1.303^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~515~^4.781^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~516~^0.396^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~517~^1.688^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~518~^1.122^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21292~^~606~^7.327^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~609~^0.120^2^^~1~^~A~^^^1^0.095^0.146^1^^^^~02/01/2005~ -~21292~^~610~^0.274^2^^~1~^~A~^^^1^0.218^0.331^1^^^^~02/01/2005~ -~21292~^~611~^0.318^2^^~1~^~A~^^^1^0.253^0.384^1^^^^~02/01/2005~ -~21292~^~612~^1.078^2^^~1~^~A~^^^1^0.859^1.297^1^^^^~02/01/2005~ -~21292~^~613~^3.669^2^^~1~^~A~^^^1^3.057^4.282^1^^^^~02/01/2005~ -~21292~^~614~^1.636^2^^~1~^~A~^^^1^1.331^1.941^1^^^^~02/01/2005~ -~21292~^~615~^0.032^2^^~1~^~A~^^^1^0.030^0.034^1^^^^~02/01/2005~ -~21292~^~617~^4.118^2^^~1~^~A~^^^1^3.561^4.675^1^^^^~02/01/2005~ -~21292~^~618~^2.763^2^^~1~^~A~^^^1^2.572^2.953^1^^^^~02/01/2005~ -~21292~^~619~^0.378^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~21292~^~620~^0.021^2^^~1~^~A~^^^1^0.016^0.025^1^^^^~02/01/2005~ -~21292~^~624~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2005~ -~21292~^~625~^0.084^2^^~1~^~A~^^^1^0.067^0.100^1^^^^~02/01/2005~ -~21292~^~626~^0.185^2^^~1~^~A~^^^1^0.148^0.222^1^^^^~02/01/2005~ -~21292~^~628~^0.034^2^^~1~^~A~^^^1^0.031^0.037^1^^^^~02/01/2005~ -~21292~^~645~^4.420^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~646~^3.161^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21292~^~652~^0.109^2^^~1~^~A~^^^1^0.088^0.130^1^^^^~02/01/2005~ -~21292~^~653~^0.068^2^^~1~^~A~^^^1^0.056^0.080^1^^^^~02/01/2005~ -~21292~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21292~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21292~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21292~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21292~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~21292~^~851~^0.378^2^^~1~^~A~^^^1^0.353^0.403^1^^^^~02/01/2005~ -~21293~^~312~^0.103^6^0.003^~1~^~A~^^^1^0.093^0.116^5^0.094^0.112^~4~^~02/01/2011~ -~21293~^~315~^0.396^6^0.008^~1~^~A~^^^1^0.371^0.429^5^0.376^0.416^~4~^~02/01/2011~ -~21293~^~404~^0.460^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~406~^4.300^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~410~^0.330^4^0.010^~1~^~A~^^^1^0.313^0.359^3^0.299^0.362^~2, 3~^~02/01/2005~ -~21293~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21293~^~605~^0.252^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~606~^4.819^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~607~^0.107^6^0.006^~1~^~A~^^^1^0.080^0.122^5^0.091^0.123^~4~^~02/01/2011~ -~21293~^~608~^0.086^6^0.004^~1~^~A~^^^1^0.076^0.097^5^0.076^0.095^~4~^~02/01/2011~ -~21293~^~609~^0.059^6^0.002^~1~^~A~^^^1^0.053^0.064^5^0.054^0.064^~4~^~02/01/2011~ -~21293~^~610~^0.150^6^0.006^~1~^~A~^^^1^0.130^0.165^5^0.134^0.166^~4~^~02/01/2011~ -~21293~^~611~^0.187^6^0.008^~1~^~A~^^^1^0.161^0.212^5^0.168^0.207^~4~^~02/01/2011~ -~21293~^~612~^0.641^6^0.027^~1~^~A~^^^1^0.529^0.739^5^0.571^0.712^~4~^~02/01/2011~ -~21293~^~613~^2.548^6^0.063^~1~^~A~^^^1^2.336^2.758^5^2.386^2.711^~4~^~02/01/2011~ -~21293~^~614~^0.877^6^0.010^~1~^~A~^^^1^0.835^0.912^5^0.851^0.902^~4~^~02/01/2011~ -~21293~^~615~^0.024^6^0.000^~1~^~A~^^^1^0.023^0.025^5^0.023^0.025^~4~^~02/01/2011~ -~21293~^~617~^2.808^6^0.045^~1~^~AS~^^^1^2.612^2.919^5^2.692^2.923^~4~^~02/01/2011~ -~21293~^~618~^1.319^6^0.079^~1~^~AS~^^^1^0.975^1.516^5^1.116^1.521^~4~^~02/01/2011~ -~21293~^~619~^0.168^6^0.011^~1~^~AS~^^^1^0.118^0.191^5^0.140^0.196^~4~^~02/01/2011~ -~21293~^~620~^0.013^6^0.001^~1~^~A~^^^1^0.008^0.016^5^0.009^0.016^~4~^~02/01/2011~ -~21293~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 4~^~02/01/2005~ -~21293~^~624~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.012^0.015^~4~^~02/01/2011~ -~21293~^~625~^0.051^6^0.003^~1~^~A~^^^1^0.037^0.061^5^0.043^0.059^~4~^~02/01/2011~ -~21293~^~626~^0.130^6^0.007^~1~^~AS~^^^1^0.102^0.152^5^0.113^0.147^~4~^~02/01/2011~ -~21293~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21293~^~628~^0.043^6^0.002^~1~^~A~^^^1^0.040^0.051^5^0.039^0.048^~4~^~02/01/2011~ -~21293~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21293~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~4~^~02/01/2011~ -~21293~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21293~^~645~^3.050^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~646~^1.530^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~652~^0.068^6^0.003^~1~^~A~^^^1^0.054^0.078^5^0.060^0.076^~4~^~02/01/2011~ -~21293~^~653~^0.046^6^0.002^~1~^~A~^^^1^0.037^0.052^5^0.040^0.051^~4~^~02/01/2005~ -~21293~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~4~^~02/01/2011~ -~21293~^~662~^0.024^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.020^0.028^~4~^~02/01/2011~ -~21293~^~663~^0.167^6^0.004^~1~^~A~^^^1^0.152^0.177^5^0.157^0.177^~4~^~02/01/2011~ -~21293~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21293~^~665~^0.061^6^0.002^~1~^~A~^^^1^0.054^0.067^5^0.055^0.067^~4~^~02/01/2011~ -~21293~^~670~^0.040^6^0.002^~1~^~A~^^^1^0.037^0.046^5^0.037^0.044^~4~^~02/01/2011~ -~21293~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21293~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~02/01/2011~ -~21293~^~673~^0.106^6^0.005^~1~^~A~^^^1^0.085^0.123^5^0.093^0.119^~4~^~02/01/2011~ -~21293~^~674~^2.640^6^0.046^~1~^~A~^^^1^2.437^2.747^5^2.523^2.758^~4~^~02/01/2011~ -~21293~^~675~^1.217^6^0.081^~1~^~A~^^^1^0.869^1.418^5^1.010^1.424^~4~^~02/01/2011~ -~21293~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21293~^~685~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 4~^~02/01/2011~ -~21293~^~687~^0.016^6^0.001^~1~^~A~^^^1^0.012^0.018^5^0.013^0.018^~4~^~02/01/2011~ -~21293~^~689~^0.011^6^0.000^~1~^~AS~^^^1^0.010^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21293~^~693~^0.191^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21293~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21293~^~851~^0.165^6^0.011^~1~^~A~^^^1^0.114^0.189^5^0.137^0.194^~4~^~02/01/2011~ -~21293~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21293~^~853~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.012^5^0.009^0.012^~4~^~02/01/2011~ -~21293~^~858~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21294~^~312~^0.098^6^0.004^~1~^~A~^^^1^0.089^0.115^5^0.089^0.108^~4~^~02/01/2011~ -~21294~^~315~^0.395^6^0.010^~1~^~A~^^^1^0.358^0.423^5^0.370^0.420^~4~^~02/01/2011~ -~21294~^~404~^0.390^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~406~^3.480^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~410~^0.231^4^0.012^~1~^~A~^^^1^0.205^0.253^3^0.193^0.269^~2, 3~^~02/01/2005~ -~21294~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21294~^~605~^0.258^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~606~^4.390^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~607~^0.105^6^0.008^~1~^~A~^^^1^0.066^0.122^5^0.084^0.127^~4~^~02/01/2011~ -~21294~^~608~^0.084^6^0.004^~1~^~A~^^^1^0.064^0.097^5^0.072^0.096^~4~^~02/01/2011~ -~21294~^~609~^0.057^6^0.002^~1~^~A~^^^1^0.047^0.063^5^0.051^0.063^~4~^~02/01/2011~ -~21294~^~610~^0.143^6^0.006^~1~^~A~^^^1^0.118^0.161^5^0.126^0.160^~4~^~02/01/2011~ -~21294~^~611~^0.173^6^0.009^~1~^~A~^^^1^0.139^0.200^5^0.150^0.197^~4~^~02/01/2011~ -~21294~^~612~^0.592^6^0.031^~1~^~A~^^^1^0.466^0.698^5^0.511^0.672^~4~^~02/01/2011~ -~21294~^~613~^2.198^6^0.057^~1~^~A~^^^1^2.032^2.412^5^2.051^2.344^~4~^~02/01/2011~ -~21294~^~614~^0.871^6^0.024^~1~^~A~^^^1^0.781^0.940^5^0.808^0.934^~4~^~02/01/2011~ -~21294~^~615~^0.024^6^0.001^~1~^~A~^^^1^0.020^0.029^5^0.021^0.028^~4~^~02/01/2011~ -~21294~^~617~^2.521^6^0.083^~1~^~AS~^^^1^2.254^2.753^5^2.309^2.733^~4~^~02/01/2011~ -~21294~^~618~^2.724^6^0.230^~1~^~AS~^^^1^2.097^3.628^5^2.132^3.317^~4~^~02/01/2011~ -~21294~^~619~^0.353^6^0.031^~1~^~AS~^^^1^0.259^0.472^5^0.273^0.433^~4~^~02/01/2011~ -~21294~^~620~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.009^0.013^~4~^~02/01/2011~ -~21294~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21294~^~624~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.026^5^0.017^0.024^~4~^~02/01/2011~ -~21294~^~625~^0.048^6^0.003^~1~^~A~^^^1^0.034^0.059^5^0.040^0.057^~4~^~02/01/2011~ -~21294~^~626~^0.121^6^0.007^~1~^~AS~^^^1^0.092^0.145^5^0.103^0.139^~4~^~02/01/2011~ -~21294~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21294~^~628~^0.046^6^0.003^~1~^~A~^^^1^0.038^0.059^5^0.038^0.054^~4~^~02/01/2011~ -~21294~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21294~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~4~^~02/01/2011~ -~21294~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21294~^~645~^2.755^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~646~^3.118^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~652~^0.064^6^0.004^~1~^~A~^^^1^0.049^0.076^5^0.054^0.073^~4~^~02/01/2011~ -~21294~^~653~^0.044^6^0.002^~1~^~A~^^^1^0.036^0.053^5^0.039^0.050^~4~^~02/01/2011~ -~21294~^~654~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~4~^~02/01/2011~ -~21294~^~662~^0.022^6^0.001^~1~^~A~^^^1^0.016^0.027^5^0.018^0.026^~4~^~02/01/2011~ -~21294~^~663~^0.178^6^0.028^~1~^~A~^^^1^0.129^0.316^5^0.106^0.250^~4~^~02/01/2011~ -~21294~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21294~^~665~^0.058^6^0.002^~1~^~A~^^^1^0.051^0.065^5^0.053^0.064^~4~^~02/01/2011~ -~21294~^~670~^0.039^6^0.001^~1~^~A~^^^1^0.034^0.043^5^0.036^0.042^~4~^~02/01/2011~ -~21294~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21294~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21294~^~673~^0.099^6^0.006^~1~^~A~^^^1^0.076^0.118^5^0.085^0.113^~4~^~02/01/2011~ -~21294~^~674~^2.343^6^0.071^~1~^~A~^^^1^2.111^2.521^5^2.161^2.525^~4~^~02/01/2011~ -~21294~^~675~^2.627^6^0.231^~1~^~A~^^^1^1.999^3.538^5^2.032^3.221^~4~^~02/01/2011~ -~21294~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21294~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21294~^~687~^0.016^6^0.001^~1~^~A~^^^1^0.012^0.019^5^0.013^0.018^~4~^~02/01/2011~ -~21294~^~689~^0.010^6^0.001^~1~^~AS~^^^1^0.008^0.012^5^0.008^0.011^~4~^~02/01/2011~ -~21294~^~693~^0.200^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~695~^0.058^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21294~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21294~^~851~^0.350^6^0.031^~1~^~A~^^^1^0.256^0.470^5^0.270^0.430^~4~^~02/01/2011~ -~21294~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21294~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~4~^~02/01/2011~ -~21294~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21295~^~312~^0.103^6^0.002^~1~^~A~^^^1^0.093^0.109^5^0.097^0.109^~4~^~02/01/2011~ -~21295~^~315~^0.381^6^0.010^~1~^~A~^^^1^0.357^0.423^5^0.356^0.406^~4~^~02/01/2011~ -~21295~^~404~^0.350^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~405~^0.240^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~406~^4.180^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~410~^0.241^4^0.009^~1~^~A~^^^1^0.216^0.260^3^0.211^0.271^~2, 3~^~02/01/2005~ -~21295~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21295~^~605~^0.350^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~606~^6.103^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~607~^0.165^6^0.008^~1~^~A~^^^1^0.134^0.191^5^0.145^0.186^~4~^~02/01/2011~ -~21295~^~608~^0.131^6^0.004^~1~^~A~^^^1^0.118^0.147^5^0.122^0.141^~4~^~02/01/2011~ -~21295~^~609~^0.089^6^0.002^~1~^~A~^^^1^0.084^0.097^5^0.084^0.095^~4~^~02/01/2011~ -~21295~^~610~^0.224^6^0.005^~1~^~A~^^^1^0.211^0.240^5^0.211^0.238^~4~^~02/01/2011~ -~21295~^~611~^0.271^6^0.006^~1~^~A~^^^1^0.249^0.291^5^0.255^0.286^~4~^~02/01/2011~ -~21295~^~612~^0.920^6^0.023^~1~^~A~^^^1^0.833^1.001^5^0.861^0.980^~4~^~02/01/2011~ -~21295~^~613~^2.929^6^0.067^~1~^~A~^^^1^2.730^3.175^5^2.758^3.101^~4~^~02/01/2011~ -~21295~^~614~^1.153^6^0.024^~1~^~A~^^^1^1.071^1.220^5^1.092^1.214^~4~^~02/01/2011~ -~21295~^~615~^0.024^6^0.000^~1~^~A~^^^1^0.023^0.025^5^0.023^0.025^~4~^~02/01/2011~ -~21295~^~617~^2.962^6^0.053^~1~^~AS~^^^1^2.814^3.171^5^2.827^3.097^~4~^~02/01/2011~ -~21295~^~618~^2.024^6^0.082^~1~^~AS~^^^1^1.720^2.288^5^1.813^2.235^~4~^~02/01/2011~ -~21295~^~619~^0.247^6^0.013^~1~^~AS~^^^1^0.203^0.299^5^0.214^0.279^~4~^~02/01/2011~ -~21295~^~620~^0.018^6^0.001^~1~^~A~^^^1^0.014^0.023^5^0.015^0.022^~4~^~02/01/2011~ -~21295~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2005~ -~21295~^~624~^0.018^6^0.000^~1~^~A~^^^1^0.016^0.019^5^0.017^0.019^~4~^~02/01/2011~ -~21295~^~625~^0.076^6^0.004^~1~^~A~^^^1^0.061^0.086^5^0.067^0.085^~4~^~02/01/2011~ -~21295~^~626~^0.165^6^0.008^~1~^~AS~^^^1^0.132^0.193^5^0.144^0.187^~4~^~02/01/2011~ -~21295~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21295~^~628~^0.037^6^0.003^~1~^~A~^^^1^0.026^0.042^5^0.030^0.043^~4~^~02/01/2011~ -~21295~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.001^0.007^~1, 4~^~02/01/2011~ -~21295~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.003^~4~^~02/01/2011~ -~21295~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21295~^~645~^3.265^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~646~^2.327^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~652~^0.098^6^0.003^~1~^~A~^^^1^0.086^0.110^5^0.090^0.106^~4~^~02/01/2011~ -~21295~^~653~^0.064^6^0.002^~1~^~A~^^^1^0.057^0.072^5^0.059^0.070^~4~^~02/01/2011~ -~21295~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~4~^~02/01/2011~ -~21295~^~662~^0.032^6^0.002^~1~^~A~^^^1^0.023^0.038^5^0.026^0.038^~4~^~02/01/2011~ -~21295~^~663~^0.236^6^0.004^~1~^~A~^^^1^0.226^0.248^5^0.225^0.247^~4~^~02/01/2011~ -~21295~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21295~^~665~^0.082^6^0.003^~1~^~A~^^^1^0.073^0.094^5^0.074^0.090^~4~^~02/01/2011~ -~21295~^~670~^0.058^6^0.002^~1~^~A~^^^1^0.051^0.063^5^0.053^0.062^~4~^~02/01/2011~ -~21295~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21295~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.005^~4~^~02/01/2011~ -~21295~^~673~^0.133^6^0.007^~1~^~A~^^^1^0.103^0.155^5^0.115^0.152^~4~^~02/01/2011~ -~21295~^~674~^2.726^6^0.050^~1~^~A~^^^1^2.572^2.923^5^2.597^2.855^~4~^~02/01/2011~ -~21295~^~675~^1.884^6^0.082^~1~^~A~^^^1^1.588^2.151^5^1.673^2.095^~4~^~02/01/2011~ -~21295~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21295~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21295~^~687~^0.022^6^0.001^~1~^~A~^^^1^0.017^0.025^5^0.019^0.024^~4~^~02/01/2011~ -~21295~^~689~^0.014^6^0.000^~1~^~AS~^^^1^0.013^0.015^5^0.013^0.015^~4~^~02/01/2011~ -~21295~^~693~^0.268^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~695~^0.082^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21295~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21295~^~851~^0.243^6^0.013^~1~^~A~^^^1^0.200^0.296^5^0.210^0.276^~4~^~02/01/2011~ -~21295~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21295~^~853~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.011^0.015^~4~^~02/01/2011~ -~21295~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21296~^~312~^0.106^6^0.003^~1~^~A~^^^1^0.099^0.117^5^0.099^0.114^~4~^~02/01/2011~ -~21296~^~315~^0.418^6^0.006^~1~^~A~^^^1^0.401^0.437^5^0.402^0.434^~4~^~02/01/2011~ -~21296~^~404~^0.550^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~405~^0.240^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~406~^4.820^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~410~^0.400^4^0.004^~1~^~A~^^^1^0.392^0.412^3^0.386^0.414^~2, 3~^~02/01/2005~ -~21296~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21296~^~605~^0.259^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~606~^5.404^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~607~^0.090^6^0.004^~1~^~A~^^^1^0.077^0.105^5^0.078^0.101^~4~^~02/01/2011~ -~21296~^~608~^0.071^6^0.002^~1~^~A~^^^1^0.064^0.079^5^0.065^0.077^~4~^~02/01/2011~ -~21296~^~609~^0.049^6^0.002^~1~^~A~^^^1^0.044^0.054^5^0.044^0.054^~4~^~02/01/2011~ -~21296~^~610~^0.123^6^0.004^~1~^~A~^^^1^0.111^0.138^5^0.112^0.134^~4~^~02/01/2011~ -~21296~^~611~^0.151^6^0.005^~1~^~A~^^^1^0.135^0.172^5^0.137^0.165^~4~^~02/01/2011~ -~21296~^~612~^0.557^6^0.021^~1~^~A~^^^1^0.484^0.643^5^0.502^0.612^~4~^~02/01/2011~ -~21296~^~613~^2.997^6^0.070^~1~^~A~^^^1^2.776^3.207^5^2.816^3.179^~4~^~02/01/2011~ -~21296~^~614~^1.195^6^0.024^~1~^~A~^^^1^1.108^1.279^5^1.133^1.256^~4~^~02/01/2011~ -~21296~^~615~^0.030^6^0.001^~1~^~A~^^^1^0.028^0.036^5^0.027^0.033^~4~^~02/01/2011~ -~21296~^~617~^3.967^6^0.077^~1~^~AS~^^^1^3.761^4.266^5^3.768^4.166^~4~^~02/01/2011~ -~21296~^~618~^1.748^6^0.049^~1~^~AS~^^^1^1.583^1.936^5^1.622^1.875^~4~^~02/01/2011~ -~21296~^~619~^0.186^6^0.008^~1~^~AS~^^^1^0.154^0.208^5^0.167^0.205^~4~^~02/01/2011~ -~21296~^~620~^0.025^6^0.001^~1~^~A~^^^1^0.023^0.027^5^0.023^0.027^~4~^~02/01/2011~ -~21296~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21296~^~624~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.016^5^0.013^0.015^~4~^~02/01/2011~ -~21296~^~625~^0.046^6^0.002^~1~^~A~^^^1^0.038^0.053^5^0.041^0.051^~4~^~02/01/2011~ -~21296~^~626~^0.197^6^0.005^~1~^~AS~^^^1^0.176^0.214^5^0.184^0.211^~4~^~02/01/2011~ -~21296~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21296~^~628~^0.075^6^0.004^~1~^~A~^^^1^0.064^0.092^5^0.065^0.085^~4~^~02/01/2011~ -~21296~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.005^~1, 4~^~02/01/2011~ -~21296~^~630~^0.022^6^0.001^~1~^~AS~^^^1^0.018^0.026^5^0.020^0.025^~4~^~02/01/2011~ -~21296~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21296~^~645~^4.338^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~646~^2.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~652~^0.058^6^0.003^~1~^~A~^^^1^0.049^0.068^5^0.051^0.065^~4~^~02/01/2011~ -~21296~^~653~^0.057^6^0.002^~1~^~A~^^^1^0.051^0.062^5^0.053^0.061^~4~^~02/01/2011~ -~21296~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~4~^~02/01/2011~ -~21296~^~662~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.025^5^0.019^0.024^~4~^~02/01/2011~ -~21296~^~663~^0.182^6^0.005^~1~^~A~^^^1^0.165^0.197^5^0.170^0.195^~4~^~02/01/2011~ -~21296~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21296~^~665~^0.055^6^0.001^~1~^~A~^^^1^0.052^0.060^5^0.052^0.058^~4~^~02/01/2011~ -~21296~^~670~^0.041^6^0.002^~1~^~A~^^^1^0.036^0.047^5^0.037^0.046^~4~^~02/01/2011~ -~21296~^~671~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.005^~1, 4~^~02/01/2011~ -~21296~^~672~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.030^5^0.022^0.029^~4~^~02/01/2011~ -~21296~^~673~^0.176^6^0.005^~1~^~A~^^^1^0.157^0.189^5^0.164^0.188^~4~^~02/01/2011~ -~21296~^~674~^3.785^6^0.076^~1~^~A~^^^1^3.596^4.084^5^3.589^3.981^~4~^~02/01/2011~ -~21296~^~675~^1.652^6^0.050^~1~^~A~^^^1^1.484^1.843^5^1.523^1.781^~4~^~02/01/2011~ -~21296~^~676~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.026^5^0.020^0.025^~4~^~02/01/2011~ -~21296~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~02/01/2011~ -~21296~^~687~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.030^5^0.025^0.030^~4~^~02/01/2011~ -~21296~^~689~^0.015^6^0.001^~1~^~AS~^^^1^0.014^0.017^5^0.014^0.017^~4~^~02/01/2011~ -~21296~^~693~^0.204^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21296~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21296~^~851~^0.182^6^0.008^~1~^~A~^^^1^0.150^0.205^5^0.163^0.202^~4~^~02/01/2011~ -~21296~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21296~^~853~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.013^~4~^~02/01/2011~ -~21296~^~858~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~4~^~02/01/2011~ -~21297~^~312~^0.104^6^0.002^~1~^~A~^^^1^0.098^0.113^5^0.098^0.111^~4~^~02/01/2011~ -~21297~^~315~^0.425^6^0.010^~1~^~A~^^^1^0.395^0.466^5^0.399^0.450^~4~^~02/01/2011~ -~21297~^~404~^0.420^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~406~^3.750^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~410~^0.323^4^0.022^~1~^~A~^^^1^0.280^0.383^3^0.255^0.392^~2, 3~^~02/01/2005~ -~21297~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21297~^~605~^0.236^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~606~^4.823^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~607~^0.084^6^0.007^~1~^~A~^^^1^0.059^0.108^5^0.066^0.103^~4~^~02/01/2011~ -~21297~^~608~^0.066^6^0.004^~1~^~A~^^^1^0.056^0.079^5^0.055^0.077^~4~^~02/01/2011~ -~21297~^~609~^0.045^6^0.002^~1~^~A~^^^1^0.039^0.052^5^0.038^0.051^~4~^~02/01/2011~ -~21297~^~610~^0.112^6^0.004^~1~^~A~^^^1^0.101^0.127^5^0.101^0.123^~4~^~02/01/2011~ -~21297~^~611~^0.134^6^0.004^~1~^~A~^^^1^0.123^0.145^5^0.124^0.144^~4~^~02/01/2011~ -~21297~^~612~^0.501^6^0.011^~1~^~A~^^^1^0.451^0.530^5^0.473^0.529^~4~^~02/01/2011~ -~21297~^~613~^2.574^6^0.047^~1~^~A~^^^1^2.356^2.686^5^2.453^2.694^~4~^~02/01/2011~ -~21297~^~614~^1.141^6^0.019^~1~^~A~^^^1^1.070^1.189^5^1.093^1.189^~4~^~02/01/2011~ -~21297~^~615~^0.027^6^0.001^~1~^~A~^^^1^0.023^0.030^5^0.024^0.030^~4~^~02/01/2005~ -~21297~^~617~^3.506^6^0.073^~1~^~AS~^^^1^3.241^3.719^5^3.317^3.695^~4~^~02/01/2011~ -~21297~^~618~^2.976^6^0.170^~1~^~AS~^^^1^2.473^3.568^5^2.540^3.413^~4~^~02/01/2011~ -~21297~^~619~^0.350^6^0.025^~1~^~AS~^^^1^0.269^0.437^5^0.285^0.415^~4~^~02/01/2011~ -~21297~^~620~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.028^~4~^~02/01/2011~ -~21297~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21297~^~624~^0.020^6^0.001^~1~^~A~^^^1^0.016^0.024^5^0.017^0.024^~4~^~02/01/2011~ -~21297~^~625~^0.041^6^0.001^~1~^~A~^^^1^0.038^0.044^5^0.039^0.043^~4~^~02/01/2011~ -~21297~^~626~^0.179^6^0.004^~1~^~AS~^^^1^0.165^0.191^5^0.168^0.189^~4~^~02/01/2011~ -~21297~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21297~^~628~^0.074^6^0.002^~1~^~A~^^^1^0.067^0.080^5^0.069^0.080^~4~^~02/01/2011~ -~21297~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.008^5^0.001^0.006^~1, 4~^~02/01/2011~ -~21297~^~630~^0.015^6^0.003^~1~^~AS~^^^1^0.000^0.022^5^0.006^0.024^~4~^~02/01/2011~ -~21297~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~02/01/2011~ -~21297~^~645~^3.844^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~646~^3.409^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~652~^0.053^6^0.001^~1~^~A~^^^1^0.048^0.056^5^0.050^0.056^~4~^~02/01/2011~ -~21297~^~653~^0.053^6^0.001^~1~^~A~^^^1^0.049^0.057^5^0.050^0.057^~4~^~02/01/2011~ -~21297~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.008^0.010^~4~^~02/01/2011~ -~21297~^~662~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.021^5^0.018^0.021^~4~^~02/01/2011~ -~21297~^~663~^0.165^6^0.005^~1~^~A~^^^1^0.154^0.187^5^0.151^0.178^~4~^~02/01/2011~ -~21297~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21297~^~665~^0.052^6^0.002^~1~^~A~^^^1^0.046^0.058^5^0.047^0.058^~4~^~02/01/2011~ -~21297~^~670~^0.039^6^0.001^~1~^~A~^^^1^0.034^0.042^5^0.036^0.042^~4~^~02/01/2011~ -~21297~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.001^0.004^~1, 4~^~02/01/2011~ -~21297~^~672~^0.024^6^0.001^~1~^~A~^^^1^0.022^0.027^5^0.022^0.026^~4~^~02/01/2011~ -~21297~^~673~^0.159^6^0.004^~1~^~A~^^^1^0.144^0.170^5^0.149^0.169^~4~^~02/01/2011~ -~21297~^~674~^3.342^6^0.069^~1~^~A~^^^1^3.087^3.532^5^3.163^3.520^~4~^~02/01/2011~ -~21297~^~675~^2.885^6^0.170^~1~^~A~^^^1^2.392^3.482^5^2.448^3.322^~4~^~02/01/2011~ -~21297~^~676~^0.015^6^0.003^~1~^~A~^^^1^0.000^0.022^5^0.006^0.024^~1, 4~^~02/01/2011~ -~21297~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~02/01/2011~ -~21297~^~687~^0.026^6^0.001^~1~^~A~^^^1^0.022^0.029^5^0.023^0.029^~4~^~02/01/2011~ -~21297~^~689~^0.014^6^0.001^~1~^~AS~^^^1^0.011^0.017^5^0.012^0.016^~4~^~02/01/2011~ -~21297~^~693~^0.184^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21297~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2005~ -~21297~^~851~^0.347^6^0.025^~1~^~A~^^^1^0.266^0.433^5^0.283^0.412^~4~^~02/01/2011~ -~21297~^~852~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.004^~1, 4~^~02/01/2011~ -~21297~^~853~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.009^0.013^~4~^~02/01/2011~ -~21297~^~858~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.007^0.010^~4~^~02/01/2011~ -~21298~^~312~^0.149^4^0.000^~1~^~A~^^^1^0.149^0.149^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~315~^0.285^4^0.006^~1~^~A~^^^1^0.270^0.300^3^0.264^0.305^~2, 3~^~02/01/2005~ -~21298~^~404~^0.367^4^0.010^~1~^~A~^^^1^0.340^0.390^3^0.335^0.400^~2, 3~^~02/01/2005~ -~21298~^~405~^0.290^4^0.012^~1~^~A~^^^1^0.267^0.324^3^0.252^0.329^~2, 3~^~02/01/2005~ -~21298~^~406~^2.380^4^0.248^~1~^~A~^^^1^1.810^3.020^3^1.591^3.169^~2, 3~^~02/01/2005~ -~21298~^~410~^0.422^4^0.006^~1~^~A~^^^1^0.410^0.436^3^0.401^0.443^~2, 3~^~02/01/2005~ -~21298~^~415~^0.098^4^0.002^~1~^~A~^^^1^0.093^0.102^3^0.092^0.105^~2, 3~^~02/01/2005~ -~21298~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~502~^0.504^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~503~^0.527^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~504~^0.976^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~505~^0.711^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~506~^0.200^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~507~^0.133^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~508~^0.570^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~509~^0.381^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~510~^0.624^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~511~^0.534^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~512~^0.331^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~513~^0.489^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~514~^1.047^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~515~^2.923^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~516~^0.438^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~517~^1.020^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~518~^0.587^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21298~^~606~^4.217^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~609~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~02/01/2005~ -~21298~^~610~^0.082^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.067^0.098^~2, 3~^~02/01/2005~ -~21298~^~611~^0.100^4^0.007^~1~^~A~^^^1^0.080^0.110^3^0.077^0.122^~2, 3~^~02/01/2005~ -~21298~^~612~^0.437^4^0.018^~1~^~A~^^^1^0.390^0.470^3^0.380^0.495^~2, 3~^~02/01/2005~ -~21298~^~613~^2.367^4^0.060^~1~^~A~^^^1^2.210^2.480^3^2.176^2.559^~2, 3~^~02/01/2005~ -~21298~^~614~^1.082^4^0.045^~1~^~A~^^^1^0.990^1.190^3^0.939^1.226^~2, 3~^~02/01/2005~ -~21298~^~615~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~02/01/2005~ -~21298~^~617~^3.480^4^0.191^~1~^~A~^^^1^3.030^3.870^3^2.873^4.087^~2, 3~^~02/01/2005~ -~21298~^~618~^1.625^4^0.046^~1~^~A~^^^1^1.490^1.700^3^1.478^1.772^~2, 3~^~02/01/2005~ -~21298~^~619~^0.167^4^0.003^~1~^~A~^^^1^0.160^0.170^3^0.159^0.176^~2, 3~^~02/01/2005~ -~21298~^~620~^0.025^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.009^0.041^~2, 3~^~02/01/2005~ -~21298~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~625~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~2, 3~^~02/01/2005~ -~21298~^~626~^0.215^4^0.010^~1~^~A~^^^1^0.190^0.240^3^0.182^0.248^~2, 3~^~02/01/2005~ -~21298~^~627~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~02/01/2005~ -~21298~^~628~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.036^0.054^~2, 3~^~02/01/2005~ -~21298~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~645~^3.805^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~646~^1.875^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~21298~^~652~^0.042^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.034^0.050^~2, 3~^~02/01/2005~ -~21298~^~653~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~02/01/2005~ -~21298~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~672~^0.027^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.012^0.043^~2, 3~^~02/01/2005~ -~21298~^~687~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~02/01/2005~ -~21298~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21298~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21299~^~312~^0.105^12^0.002^~1~^~A~^^^1^0.093^0.116^11^0.101^0.109^~4~^~02/01/2011~ -~21299~^~315~^0.360^12^0.013^~1~^~A~^^^1^0.300^0.429^11^0.332^0.388^~4~^~02/01/2011~ -~21299~^~404~^0.390^2^^~1~^~A~^^^1^0.320^0.460^1^^^^~02/01/2011~ -~21299~^~405~^0.195^2^^~1~^~A~^^^1^0.170^0.220^1^^^^~02/01/2011~ -~21299~^~406~^3.825^2^^~1~^~A~^^^1^3.350^4.300^1^^^^~02/01/2011~ -~21299~^~415~^0.080^2^^~1~^~A~^^^1^0.080^0.080^1^^^^~02/01/2011~ -~21299~^~502~^0.410^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~503~^0.564^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~504~^1.139^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~505~^0.770^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~506~^0.264^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~507~^0.163^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~508~^0.664^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~509~^0.522^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~510~^0.720^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~511~^0.486^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~512~^0.355^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~513~^0.419^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~514~^0.839^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~515~^3.535^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~516~^0.341^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~517~^1.357^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~518~^0.700^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21299~^~521~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~02/01/2005~ -~21299~^~605~^0.241^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~606~^4.465^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~607~^0.101^12^0.005^~1~^~A~^^^1^0.070^0.122^11^0.090^0.112^~4~^~02/01/2011~ -~21299~^~608~^0.080^12^0.003^~1~^~A~^^^1^0.062^0.097^11^0.073^0.088^~4~^~02/01/2011~ -~21299~^~609~^0.055^12^0.002^~1~^~A~^^^1^0.043^0.064^11^0.051^0.060^~4~^~02/01/2011~ -~21299~^~610~^0.141^12^0.005^~1~^~A~^^^1^0.113^0.165^11^0.131^0.152^~4~^~02/01/2011~ -~21299~^~611~^0.175^12^0.006^~1~^~A~^^^1^0.142^0.212^11^0.162^0.188^~4~^~02/01/2011~ -~21299~^~612~^0.602^12^0.021^~1~^~A~^^^1^0.507^0.739^11^0.557^0.648^~4~^~02/01/2011~ -~21299~^~613~^2.298^12^0.085^~1~^~A~^^^1^1.908^2.758^11^2.111^2.485^~4~^~02/01/2011~ -~21299~^~614~^0.858^12^0.009^~1~^~A~^^^1^0.805^0.912^11^0.837^0.878^~4~^~02/01/2011~ -~21299~^~615~^0.021^12^0.001^~1~^~A~^^^1^0.017^0.025^11^0.019^0.023^~4~^~02/01/2011~ -~21299~^~617~^2.388^12^0.129^~1~^~AS~^^^1^1.856^2.919^11^2.104^2.673^~4~^~02/01/2011~ -~21299~^~618~^1.463^12^0.061^~1~^~AS~^^^1^0.975^1.764^11^1.329^1.598^~4~^~02/01/2011~ -~21299~^~619~^0.177^12^0.007^~1~^~AS~^^^1^0.118^0.204^11^0.162^0.192^~4~^~02/01/2011~ -~21299~^~620~^0.012^12^0.001^~1~^~A~^^^1^0.008^0.016^11^0.010^0.014^~4~^~02/01/2011~ -~21299~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 4~^~02/01/2005~ -~21299~^~624~^0.014^12^0.000^~1~^~A~^^^1^0.011^0.015^11^0.013^0.015^~4~^~02/01/2011~ -~21299~^~625~^0.048^12^0.002^~1~^~A~^^^1^0.036^0.061^11^0.043^0.053^~4~^~02/01/2011~ -~21299~^~626~^0.117^12^0.006^~1~^~AS~^^^1^0.084^0.152^11^0.103^0.130^~4~^~02/01/2011~ -~21299~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21299~^~628~^0.037^12^0.002^~1~^~A~^^^1^0.029^0.051^11^0.033^0.042^~4~^~02/01/2011~ -~21299~^~629~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.007^11^0.003^0.005^~1, 4~^~02/01/2011~ -~21299~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.003^11^0.001^0.002^~4~^~02/01/2011~ -~21299~^~631~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.005^11^0.004^0.005^~4~^~02/01/2011~ -~21299~^~645~^2.608^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~646~^1.681^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~652~^0.064^12^0.002^~1~^~A~^^^1^0.053^0.078^11^0.059^0.069^~4~^~02/01/2011~ -~21299~^~653~^0.043^12^0.001^~1~^~A~^^^1^0.037^0.052^11^0.040^0.046^~4~^~02/01/2011~ -~21299~^~654~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.009^11^0.008^0.009^~4~^~02/01/2011~ -~21299~^~662~^0.022^12^0.001^~1~^~A~^^^1^0.017^0.029^11^0.020^0.025^~4~^~02/01/2011~ -~21299~^~663~^0.161^12^0.003^~1~^~A~^^^1^0.142^0.177^11^0.154^0.168^~4~^~02/01/2011~ -~21299~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21299~^~665~^0.057^12^0.002^~1~^~A~^^^1^0.038^0.067^11^0.052^0.063^~4~^~02/01/2011~ -~21299~^~670~^0.039^12^0.001^~1~^~A~^^^1^0.032^0.046^11^0.036^0.042^~4~^~02/01/2011~ -~21299~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 4~^~02/01/2011~ -~21299~^~672~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.004^~1, 4~^~02/01/2011~ -~21299~^~673~^0.094^12^0.005^~1~^~A~^^^1^0.066^0.123^11^0.083^0.105^~4~^~02/01/2011~ -~21299~^~674~^2.227^12^0.127^~1~^~A~^^^1^1.714^2.747^11^1.948^2.507^~4~^~02/01/2011~ -~21299~^~675~^1.367^12^0.063^~1~^~A~^^^1^0.869^1.669^11^1.229^1.505^~4~^~02/01/2011~ -~21299~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21299~^~685~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.002^0.003^~1, 4~^~02/01/2011~ -~21299~^~687~^0.015^12^0.001^~1~^~A~^^^1^0.012^0.018^11^0.013^0.016^~4~^~02/01/2011~ -~21299~^~689~^0.010^12^0.000^~1~^~AS~^^^1^0.007^0.012^11^0.009^0.011^~4~^~02/01/2011~ -~21299~^~693~^0.183^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21299~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21299~^~851~^0.175^12^0.007^~1~^~A~^^^1^0.114^0.201^11^0.160^0.190^~4~^~02/01/2011~ -~21299~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 4~^~02/01/2011~ -~21299~^~853~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.012^11^0.008^0.010^~4~^~02/01/2011~ -~21299~^~858~^0.004^12^0.000^~1~^~A~^^^1^0.004^0.005^11^0.004^0.005^~4~^~02/01/2011~ -~21300~^~312~^0.104^12^0.003^~1~^~A~^^^1^0.089^0.116^11^0.098^0.110^~2, 3~^~02/01/2011~ -~21300~^~315~^0.335^12^0.019^~1~^~A~^^^1^0.257^0.423^11^0.293^0.377^~2, 3~^~02/01/2011~ -~21300~^~404~^0.365^2^^~1~^~A~^^^1^0.340^0.390^1^^^^~02/01/2011~ -~21300~^~405~^0.200^2^^~1~^~A~^^^1^0.180^0.220^1^^^^~02/01/2011~ -~21300~^~406~^3.495^2^^~1~^~A~^^^1^3.480^3.510^1^^^^~02/01/2011~ -~21300~^~415~^0.060^2^^~1~^~A~^^^1^0.040^0.080^1^^^^~02/01/2011~ -~21300~^~605~^0.265^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~606~^4.226^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~607~^0.102^12^0.006^~1~^~A~^^^1^0.066^0.122^11^0.089^0.114^~2, 3~^~02/01/2011~ -~21300~^~608~^0.081^12^0.003^~1~^~A~^^^1^0.064^0.097^11^0.073^0.088^~2, 3~^~02/01/2011~ -~21300~^~609~^0.054^12^0.002^~1~^~A~^^^1^0.045^0.063^11^0.051^0.058^~2, 3~^~02/01/2011~ -~21300~^~610~^0.139^12^0.004^~1~^~A~^^^1^0.113^0.161^11^0.129^0.149^~2, 3~^~02/01/2011~ -~21300~^~611~^0.168^12^0.006^~1~^~A~^^^1^0.139^0.200^11^0.155^0.181^~2, 3~^~02/01/2011~ -~21300~^~612~^0.574^12^0.020^~1~^~A~^^^1^0.466^0.698^11^0.530^0.619^~2, 3~^~02/01/2011~ -~21300~^~613~^2.101^12^0.051^~1~^~A~^^^1^1.901^2.412^11^1.988^2.213^~2, 3~^~02/01/2011~ -~21300~^~614~^0.849^12^0.016^~1~^~A~^^^1^0.752^0.940^11^0.815^0.884^~2, 3~^~02/01/2011~ -~21300~^~615~^0.023^12^0.001^~1~^~A~^^^1^0.020^0.029^11^0.021^0.025^~2, 3~^~02/01/2011~ -~21300~^~617~^2.373^12^0.062^~1~^~AS~^^^1^2.133^2.753^11^2.236^2.509^~2, 3~^~02/01/2011~ -~21300~^~618~^2.403^12^0.147^~1~^~AS~^^^1^1.982^3.628^11^2.079^2.727^~2, 3~^~02/01/2011~ -~21300~^~619~^0.309^12^0.020^~1~^~AS~^^^1^0.258^0.472^11^0.265^0.353^~2, 3~^~02/01/2011~ -~21300~^~620~^0.011^12^0.001^~1~^~A~^^^1^0.009^0.015^11^0.010^0.013^~2, 3~^~06/01/2005~ -~21300~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~21300~^~624~^0.019^12^0.001^~1~^~A~^^^1^0.016^0.026^11^0.017^0.021^~2, 3~^~02/01/2011~ -~21300~^~625~^0.047^12^0.002^~1~^~A~^^^1^0.034^0.062^11^0.041^0.052^~2, 3~^~02/01/2011~ -~21300~^~626~^0.114^12^0.005^~1~^~AS~^^^1^0.092^0.145^11^0.103^0.125^~2, 3~^~02/01/2011~ -~21300~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21300~^~628~^0.042^12^0.002^~1~^~A~^^^1^0.037^0.059^11^0.038^0.047^~2, 3~^~02/01/2011~ -~21300~^~629~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~21300~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.002^11^0.001^0.002^~2, 3~^~02/01/2011~ -~21300~^~631~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.005^11^0.004^0.005^~2, 3~^~02/01/2011~ -~21300~^~645~^2.595^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~646~^2.752^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~652~^0.061^12^0.002^~1~^~A~^^^1^0.049^0.076^11^0.056^0.066^~2, 3~^~02/01/2011~ -~21300~^~653~^0.043^12^0.001^~1~^~A~^^^1^0.036^0.053^11^0.040^0.046^~2, 3~^~02/01/2011~ -~21300~^~654~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.011^11^0.008^0.009^~2, 3~^~02/01/2011~ -~21300~^~662~^0.021^12^0.001^~1~^~A~^^^1^0.016^0.027^11^0.019^0.023^~2, 3~^~02/01/2011~ -~21300~^~663~^0.184^12^0.014^~1~^~A~^^^1^0.129^0.316^11^0.154^0.214^~2, 3~^~02/01/2011~ -~21300~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21300~^~665~^0.060^12^0.002^~1~^~A~^^^1^0.051^0.076^11^0.056^0.065^~2, 3~^~02/01/2011~ -~21300~^~670~^0.039^12^0.001^~1~^~A~^^^1^0.034^0.044^11^0.037^0.041^~2, 3~^~02/01/2011~ -~21300~^~671~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~21300~^~672~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.005^11^0.003^0.005^~2, 3~^~02/01/2011~ -~21300~^~673~^0.093^12^0.004^~1~^~A~^^^1^0.075^0.118^11^0.083^0.102^~2, 3~^~02/01/2011~ -~21300~^~674~^2.189^12^0.060^~1~^~A~^^^1^1.958^2.521^11^2.058^2.320^~2, 3~^~02/01/2011~ -~21300~^~675~^2.304^12^0.148^~1~^~A~^^^1^1.880^3.538^11^1.978^2.629^~2, 3~^~02/01/2011~ -~21300~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21300~^~685~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~21300~^~687~^0.015^12^0.001^~1~^~A~^^^1^0.012^0.019^11^0.014^0.017^~2, 3~^~02/01/2011~ -~21300~^~689~^0.010^12^0.000^~1~^~AS~^^^1^0.008^0.012^11^0.009^0.011^~2, 3~^~02/01/2011~ -~21300~^~693~^0.205^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~695~^0.060^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21300~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21300~^~851~^0.306^12^0.020^~1~^~A~^^^1^0.254^0.470^11^0.262^0.350^~2, 3~^~02/01/2011~ -~21300~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~21300~^~853~^0.009^12^0.000^~1~^~A~^^^1^0.008^0.011^11^0.009^0.010^~2, 3~^~02/01/2011~ -~21300~^~858~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.005^0.006^~2, 3~^~02/01/2011~ -~21301~^~312~^0.100^12^0.003^~1~^~A~^^^1^0.082^0.117^11^0.093^0.106^~2, 3~^~02/01/2011~ -~21301~^~315~^0.305^12^0.024^~1~^~A~^^^1^0.209^0.423^11^0.253^0.357^~2, 3~^~02/01/2011~ -~21301~^~404~^0.205^2^^~1~^~A~^^^1^0.060^0.350^1^^^^~02/01/2011~ -~21301~^~405~^0.160^2^^~1~^~A~^^^1^0.080^0.240^1^^^^~02/01/2011~ -~21301~^~406~^2.595^2^^~1~^~A~^^^1^1.010^4.180^1^^^^~02/01/2011~ -~21301~^~415~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~02/01/2011~ -~21301~^~605~^0.354^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~606~^6.224^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~607~^0.165^12^0.006^~1~^~A~^^^1^0.129^0.201^11^0.151^0.179^~2, 3~^~02/01/2011~ -~21301~^~608~^0.132^12^0.004^~1~^~A~^^^1^0.105^0.156^11^0.123^0.140^~2, 3~^~02/01/2011~ -~21301~^~609~^0.088^12^0.002^~1~^~A~^^^1^0.067^0.100^11^0.083^0.094^~2, 3~^~02/01/2011~ -~21301~^~610~^0.222^12^0.007^~1~^~A~^^^1^0.157^0.246^11^0.207^0.237^~2, 3~^~02/01/2011~ -~21301~^~611~^0.267^12^0.008^~1~^~A~^^^1^0.187^0.295^11^0.249^0.285^~2, 3~^~02/01/2011~ -~21301~^~612~^0.909^12^0.027^~1~^~A~^^^1^0.668^1.026^11^0.851^0.968^~2, 3~^~02/01/2011~ -~21301~^~613~^3.010^12^0.067^~1~^~A~^^^1^2.608^3.452^11^2.862^3.158^~2, 3~^~02/01/2011~ -~21301~^~614~^1.202^12^0.030^~1~^~A~^^^1^1.065^1.399^11^1.137^1.267^~2, 3~^~02/01/2011~ -~21301~^~615~^0.029^12^0.001^~1~^~A~^^^1^0.023^0.037^11^0.026^0.032^~2, 3~^~02/01/2011~ -~21301~^~617~^3.195^12^0.088^~1~^~AS~^^^1^2.814^3.721^11^3.001^3.389^~2, 3~^~02/01/2011~ -~21301~^~618~^2.636^12^0.191^~1~^~AS~^^^1^1.720^3.415^11^2.216^3.056^~2, 3~^~02/01/2011~ -~21301~^~619~^0.352^12^0.033^~1~^~AS~^^^1^0.203^0.487^11^0.280^0.423^~2, 3~^~02/01/2011~ -~21301~^~620~^0.018^12^0.001^~1~^~A~^^^1^0.013^0.023^11^0.016^0.021^~2, 3~^~02/01/2011~ -~21301~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~21301~^~624~^0.022^12^0.001^~1~^~A~^^^1^0.016^0.028^11^0.019^0.025^~2, 3~^~02/01/2011~ -~21301~^~625~^0.075^12^0.003^~1~^~A~^^^1^0.051^0.095^11^0.068^0.082^~2, 3~^~02/01/2011~ -~21301~^~626~^0.163^12^0.006^~1~^~AS~^^^1^0.125^0.199^11^0.150^0.177^~2, 3~^~02/01/2011~ -~21301~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~21301~^~628~^0.048^12^0.004^~1~^~A~^^^1^0.026^0.066^11^0.040^0.057^~2, 3~^~02/01/2011~ -~21301~^~629~^0.005^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.003^0.006^~1, 2, 3~^~02/01/2011~ -~21301~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.003^11^0.001^0.002^~2, 3~^~02/01/2011~ -~21301~^~631~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.008^11^0.006^0.007^~2, 3~^~02/01/2011~ -~21301~^~645~^3.507^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~646~^3.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~652~^0.097^12^0.003^~1~^~A~^^^1^0.074^0.114^11^0.090^0.104^~2, 3~^~02/01/2011~ -~21301~^~653~^0.065^12^0.002^~1~^~A~^^^1^0.053^0.075^11^0.061^0.069^~2, 3~^~02/01/2011~ -~21301~^~654~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.013^11^0.009^0.011^~2, 3~^~02/01/2011~ -~21301~^~662~^0.032^12^0.001^~1~^~A~^^^1^0.023^0.038^11^0.029^0.035^~2, 3~^~02/01/2011~ -~21301~^~663~^0.236^12^0.006^~1~^~A~^^^1^0.184^0.267^11^0.223^0.250^~2, 3~^~02/01/2011~ -~21301~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21301~^~665~^0.085^12^0.002^~1~^~A~^^^1^0.073^0.100^11^0.081^0.090^~2, 3~^~02/01/2011~ -~21301~^~670~^0.060^12^0.002^~1~^~A~^^^1^0.044^0.069^11^0.055^0.064^~2, 3~^~02/01/2011~ -~21301~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21301~^~672~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.004^0.006^~2, 3~^~02/01/2011~ -~21301~^~673~^0.131^12^0.005^~1~^~A~^^^1^0.098^0.161^11^0.120^0.143^~2, 3~^~02/01/2011~ -~21301~^~674~^2.959^12^0.085^~1~^~A~^^^1^2.572^3.454^11^2.772^3.146^~2, 3~^~02/01/2011~ -~21301~^~675~^2.491^12^0.190^~1~^~A~^^^1^1.588^3.264^11^2.073^2.908^~2, 3~^~02/01/2011~ -~21301~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21301~^~685~^0.004^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~21301~^~687~^0.022^12^0.001^~1~^~A~^^^1^0.017^0.028^11^0.021^0.024^~2, 3~^~02/01/2011~ -~21301~^~689~^0.014^12^0.001^~1~^~AS~^^^1^0.009^0.015^11^0.012^0.015^~2, 3~^~02/01/2011~ -~21301~^~693~^0.268^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21301~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21301~^~851~^0.348^12^0.033^~1~^~A~^^^1^0.200^0.484^11^0.276^0.420^~2, 3~^~02/01/2011~ -~21301~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~02/01/2011~ -~21301~^~853~^0.013^12^0.001^~1~^~A~^^^1^0.009^0.014^11^0.011^0.014^~2, 3~^~02/01/2011~ -~21301~^~858~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~02/01/2011~ -~21302~^~312~^0.113^12^0.003^~1~^~A~^^^1^0.099^0.138^11^0.106^0.120^~2, 3~^~02/01/2011~ -~21302~^~315~^0.385^12^0.013^~1~^~A~^^^1^0.317^0.437^11^0.356^0.413^~2, 3~^~02/01/2011~ -~21302~^~404~^0.430^2^^~1~^~A~^^^1^0.310^0.550^1^^^^~02/01/2011~ -~21302~^~405~^0.220^2^^~1~^~A~^^^1^0.200^0.240^1^^^^~02/01/2011~ -~21302~^~406~^4.140^2^^~1~^~A~^^^1^3.460^4.820^1^^^^~02/01/2011~ -~21302~^~415~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~02/01/2011~ -~21302~^~605~^0.286^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~606~^5.092^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~607~^0.086^12^0.004^~1~^~A~^^^1^0.049^0.105^11^0.076^0.095^~2, 3~^~02/01/2011~ -~21302~^~608~^0.068^12^0.002^~1~^~A~^^^1^0.054^0.079^11^0.063^0.072^~2, 3~^~02/01/2011~ -~21302~^~609~^0.047^12^0.002^~1~^~A~^^^1^0.039^0.054^11^0.043^0.050^~2, 3~^~02/01/2011~ -~21302~^~610~^0.118^12^0.004^~1~^~A~^^^1^0.099^0.138^11^0.110^0.126^~2, 3~^~02/01/2011~ -~21302~^~611~^0.144^12^0.005^~1~^~A~^^^1^0.119^0.172^11^0.134^0.154^~2, 3~^~02/01/2011~ -~21302~^~612~^0.545^12^0.016^~1~^~A~^^^1^0.461^0.643^11^0.509^0.581^~2, 3~^~02/01/2011~ -~21302~^~613~^2.748^12^0.090^~1~^~A~^^^1^2.331^3.207^11^2.550^2.946^~2, 3~^~02/01/2011~ -~21302~^~614~^1.170^12^0.016^~1~^~A~^^^1^1.101^1.279^11^1.133^1.206^~2, 3~^~02/01/2011~ -~21302~^~615~^0.026^12^0.001^~1~^~A~^^^1^0.021^0.036^11^0.023^0.029^~2, 3~^~02/01/2011~ -~21302~^~617~^3.511^12^0.149^~1~^~AS~^^^1^2.841^4.266^11^3.184^3.839^~2, 3~^~02/01/2011~ -~21302~^~618~^1.798^12^0.033^~1~^~AS~^^^1^1.583^1.957^11^1.726^1.869^~2, 3~^~02/01/2011~ -~21302~^~619~^0.188^12^0.005^~1~^~AS~^^^1^0.154^0.208^11^0.178^0.198^~2, 3~^~02/01/2011~ -~21302~^~620~^0.022^12^0.001^~1~^~A~^^^1^0.017^0.027^11^0.020^0.024^~2, 3~^~02/01/2011~ -~21302~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~21302~^~624~^0.014^12^0.000^~1~^~A~^^^1^0.013^0.016^11^0.014^0.015^~2, 3~^~02/01/2011~ -~21302~^~625~^0.047^12^0.002^~1~^~A~^^^1^0.038^0.064^11^0.043^0.051^~2, 3~^~02/01/2011~ -~21302~^~626~^0.186^12^0.006^~1~^~AS~^^^1^0.159^0.214^11^0.174^0.199^~2, 3~^~02/01/2011~ -~21302~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21302~^~628~^0.063^12^0.004^~1~^~A~^^^1^0.045^0.092^11^0.054^0.073^~2, 3~^~02/01/2011~ -~21302~^~629~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~21302~^~630~^0.014^12^0.003^~1~^~AS~^^^1^0.000^0.026^11^0.008^0.020^~2, 3~^~02/01/2011~ -~21302~^~631~^0.006^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.005^0.006^~2, 3~^~02/01/2011~ -~21302~^~645~^3.853^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~646~^2.064^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~652~^0.058^12^0.002^~1~^~A~^^^1^0.049^0.069^11^0.054^0.062^~2, 3~^~02/01/2011~ -~21302~^~653~^0.059^12^0.002^~1~^~A~^^^1^0.051^0.074^11^0.056^0.063^~2, 3~^~02/01/2011~ -~21302~^~654~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.009^11^0.007^0.008^~2, 3~^~02/01/2011~ -~21302~^~662~^0.022^12^0.001^~1~^~A~^^^1^0.019^0.026^11^0.021^0.024^~2, 3~^~02/01/2011~ -~21302~^~663~^0.209^12^0.009^~1~^~A~^^^1^0.165^0.269^11^0.189^0.230^~2, 3~^~02/01/2011~ -~21302~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21302~^~665~^0.054^12^0.002^~1~^~A~^^^1^0.040^0.065^11^0.050^0.059^~2, 3~^~02/01/2011~ -~21302~^~670~^0.043^12^0.001^~1~^~A~^^^1^0.036^0.050^11^0.040^0.046^~2, 3~^~02/01/2011~ -~21302~^~671~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~21302~^~672~^0.021^12^0.002^~1~^~A~^^^1^0.014^0.030^11^0.018^0.024^~2, 3~^~02/01/2011~ -~21302~^~673~^0.164^12^0.006^~1~^~A~^^^1^0.138^0.189^11^0.152^0.176^~2, 3~^~02/01/2011~ -~21302~^~674~^3.302^12^0.155^~1~^~A~^^^1^2.622^4.084^11^2.960^3.644^~2, 3~^~02/01/2011~ -~21302~^~675~^1.701^12^0.033^~1~^~A~^^^1^1.484^1.871^11^1.628^1.773^~2, 3~^~02/01/2011~ -~21302~^~676~^0.014^12^0.003^~1~^~A~^^^1^0.000^0.026^11^0.008^0.020^~1, 2, 3~^~02/01/2011~ -~21302~^~685~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.004^~1, 2, 3~^~02/01/2011~ -~21302~^~687~^0.029^12^0.001^~1~^~A~^^^1^0.025^0.037^11^0.027^0.031^~2, 3~^~02/01/2011~ -~21302~^~689~^0.014^12^0.001^~1~^~AS~^^^1^0.009^0.017^11^0.012^0.015^~2, 3~^~02/01/2011~ -~21302~^~693~^0.231^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21302~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21302~^~851~^0.185^12^0.005^~1~^~A~^^^1^0.150^0.205^11^0.174^0.195^~2, 3~^~02/01/2011~ -~21302~^~852~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~21302~^~853~^0.011^12^0.001^~1~^~A~^^^1^0.007^0.014^11^0.010^0.012^~2, 3~^~02/01/2011~ -~21302~^~858~^0.008^12^0.000^~1~^~A~^^^1^0.008^0.009^11^0.008^0.009^~2, 3~^~02/01/2011~ -~21303~^~312~^0.109^12^0.002^~1~^~A~^^^1^0.098^0.120^11^0.105^0.114^~2, 3~^~02/01/2011~ -~21303~^~315~^0.361^12^0.020^~1~^~A~^^^1^0.276^0.466^11^0.317^0.405^~2, 3~^~02/01/2011~ -~21303~^~404~^0.390^2^^~1~^~A~^^^1^0.360^0.420^1^^^^~02/01/2011~ -~21303~^~405~^0.200^2^^~1~^~A~^^^1^0.190^0.210^1^^^^~02/01/2011~ -~21303~^~406~^3.500^2^^~1~^~A~^^^1^3.250^3.750^1^^^^~02/01/2011~ -~21303~^~415~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~02/01/2011~ -~21303~^~605~^0.297^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~606~^4.839^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~607~^0.085^12^0.006^~1~^~A~^^^1^0.049^0.116^11^0.073^0.097^~2, 3~^~02/01/2011~ -~21303~^~608~^0.066^12^0.003^~1~^~A~^^^1^0.048^0.088^11^0.059^0.074^~2, 3~^~02/01/2011~ -~21303~^~609~^0.045^12^0.002^~1~^~A~^^^1^0.036^0.057^11^0.041^0.049^~2, 3~^~02/01/2011~ -~21303~^~610~^0.115^12^0.004^~1~^~A~^^^1^0.095^0.143^11^0.107^0.124^~2, 3~^~02/01/2011~ -~21303~^~611~^0.139^12^0.004^~1~^~A~^^^1^0.118^0.166^11^0.130^0.149^~2, 3~^~02/01/2011~ -~21303~^~612~^0.530^12^0.015^~1~^~A~^^^1^0.451^0.623^11^0.497^0.562^~2, 3~^~02/01/2011~ -~21303~^~613~^2.544^12^0.038^~1~^~A~^^^1^2.356^2.778^11^2.460^2.627^~2, 3~^~02/01/2011~ -~21303~^~614~^1.144^12^0.014^~1~^~A~^^^1^1.070^1.232^11^1.112^1.175^~2, 3~^~02/01/2011~ -~21303~^~615~^0.025^12^0.001^~1~^~A~^^^1^0.022^0.030^11^0.024^0.027^~2, 3~^~02/01/2011~ -~21303~^~617~^3.399^12^0.060^~1~^~AS~^^^1^3.096^3.719^11^3.267^3.530^~2, 3~^~02/01/2011~ -~21303~^~618~^2.601^12^0.143^~1~^~AS~^^^1^1.992^3.568^11^2.287^2.915^~2, 3~^~02/01/2011~ -~21303~^~619~^0.303^12^0.019^~1~^~AS~^^^1^0.222^0.437^11^0.260^0.345^~2, 3~^~02/01/2011~ -~21303~^~620~^0.023^12^0.001^~1~^~A~^^^1^0.017^0.028^11^0.021^0.025^~2, 3~^~02/01/2011~ -~21303~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~02/01/2005~ -~21303~^~624~^0.019^12^0.001^~1~^~A~^^^1^0.015^0.024^11^0.017^0.021^~2, 3~^~02/01/2011~ -~21303~^~625~^0.046^12^0.002^~1~^~A~^^^1^0.038^0.061^11^0.042^0.050^~2, 3~^~06/01/2005~ -~21303~^~626~^0.180^12^0.004^~1~^~AS~^^^1^0.163^0.213^11^0.171^0.189^~2, 3~^~02/01/2011~ -~21303~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~21303~^~628~^0.065^12^0.003^~1~^~A~^^^1^0.049^0.080^11^0.058^0.072^~2, 3~^~02/01/2011~ -~21303~^~629~^0.003^12^0.001^~1~^~A~^^^1^0.002^0.008^11^0.002^0.005^~1, 2, 3~^~02/01/2011~ -~21303~^~630~^0.011^12^0.002^~1~^~AS~^^^1^0.000^0.022^11^0.006^0.015^~2, 3~^~02/01/2011~ -~21303~^~631~^0.005^12^0.000^~1~^~A~^^^1^0.005^0.006^11^0.005^0.006^~2, 3~^~02/01/2011~ -~21303~^~645~^3.731^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~646~^2.980^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~652~^0.057^12^0.002^~1~^~A~^^^1^0.048^0.068^11^0.053^0.061^~2, 3~^~02/01/2011~ -~21303~^~653~^0.058^12^0.002^~1~^~A~^^^1^0.049^0.072^11^0.054^0.063^~2, 3~^~02/01/2011~ -~21303~^~654~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.010^11^0.007^0.009^~2, 3~^~02/01/2011~ -~21303~^~662~^0.021^12^0.001^~1~^~A~^^^1^0.017^0.026^11^0.020^0.023^~2, 3~^~02/01/2011~ -~21303~^~663~^0.217^12^0.017^~1~^~A~^^^1^0.154^0.311^11^0.180^0.254^~2, 3~^~02/01/2011~ -~21303~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~21303~^~665~^0.059^12^0.002^~1~^~A~^^^1^0.046^0.073^11^0.054^0.065^~2, 3~^~02/01/2011~ -~21303~^~670~^0.042^12^0.001^~1~^~A~^^^1^0.034^0.049^11^0.040^0.045^~2, 3~^~02/01/2011~ -~21303~^~671~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.001^0.004^~1, 2, 3~^~02/01/2011~ -~21303~^~672~^0.020^12^0.001^~1~^~A~^^^1^0.014^0.027^11^0.017^0.023^~2, 3~^~02/01/2011~ -~21303~^~673~^0.159^12^0.004^~1~^~A~^^^1^0.139^0.187^11^0.151^0.167^~2, 3~^~02/01/2011~ -~21303~^~674~^3.182^12^0.067^~1~^~A~^^^1^2.855^3.532^11^3.034^3.329^~2, 3~^~02/01/2011~ -~21303~^~675~^2.500^12^0.145^~1~^~A~^^^1^1.881^3.482^11^2.181^2.819^~2, 3~^~02/01/2011~ -~21303~^~676~^0.011^12^0.002^~1~^~A~^^^1^0.000^0.022^11^0.006^0.015^~1, 2, 3~^~02/01/2011~ -~21303~^~685~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.003^0.003^~1, 2, 3~^~06/01/2005~ -~21303~^~687~^0.028^12^0.001^~1~^~A~^^^1^0.022^0.036^11^0.026^0.031^~2, 3~^~02/01/2011~ -~21303~^~689~^0.014^12^0.000^~1~^~AS~^^^1^0.011^0.017^11^0.013^0.015^~2, 3~^~02/01/2011~ -~21303~^~693~^0.238^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21303~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2005~ -~21303~^~851~^0.299^12^0.019^~1~^~A~^^^1^0.218^0.433^11^0.257^0.342^~2, 3~^~02/01/2011~ -~21303~^~852~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~21303~^~853~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.014^11^0.010^0.012^~2, 3~^~02/01/2011~ -~21303~^~858~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.011^11^0.008^0.009^~2, 3~^~02/01/2011~ -~21304~^~312~^0.138^15^0.009^~1~^~A~^^^4^0.111^0.149^3^0.109^0.167^~4~^~06/01/2005~ -~21304~^~315~^0.273^15^0.006^~1~^~A~^^^4^0.260^0.285^3^0.253^0.293^~4~^~06/01/2005~ -~21304~^~404~^0.256^15^0.049^~1~^~A~^^^4^0.135^0.367^3^0.101^0.410^~4~^~06/01/2005~ -~21304~^~405~^0.266^15^0.017^~1~^~A~^^^4^0.220^0.292^3^0.213^0.320^~4~^~06/01/2005~ -~21304~^~406~^3.100^15^0.253^~1~^~A~^^^4^2.380^3.567^3^2.294^3.906^~4~^~06/01/2005~ -~21304~^~410~^0.455^15^0.053^~1~^~A~^^^4^0.325^0.573^3^0.286^0.624^~4~^~06/01/2005~ -~21304~^~415~^0.098^4^0.002^~1~^~A~^^^^0.093^0.102^^^^^~07/01/2008~ -~21304~^~501~^0.109^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~502~^0.399^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~503~^0.482^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~504~^0.923^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~505~^0.615^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~506~^0.217^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~507~^0.178^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~508~^0.553^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~509~^0.385^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~510~^0.579^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~511~^0.508^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~512~^0.334^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~513~^0.449^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~514~^0.864^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~515~^2.930^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~516~^0.423^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~517~^1.107^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~518~^0.597^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21304~^~521~^0.012^6^0.012^~1~^~A~^^^2^0.000^0.025^1^-0.146^0.171^~4~^~02/01/2005~ -~21304~^~606~^4.407^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~607~^0.147^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21304~^~608~^0.028^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~21304~^~609~^0.039^15^0.004^~1~^~A~^^^4^0.030^0.048^3^0.026^0.052^~4~^~06/01/2005~ -~21304~^~610~^0.093^15^0.007^~1~^~A~^^^4^0.077^0.108^3^0.069^0.116^~4~^~06/01/2005~ -~21304~^~611~^0.107^15^0.008^~1~^~A~^^^4^0.087^0.123^3^0.081^0.133^~4~^~06/01/2005~ -~21304~^~612~^0.447^15^0.024^~1~^~A~^^^4^0.382^0.486^3^0.370^0.525^~4~^~06/01/2005~ -~21304~^~613~^2.330^15^0.081^~1~^~A~^^^4^2.117^2.509^3^2.073^2.588^~4~^~06/01/2005~ -~21304~^~614~^1.100^15^0.050^~1~^~A~^^^4^0.967^1.184^3^0.943^1.258^~4~^~06/01/2005~ -~21304~^~615~^0.019^15^0.000^~1~^~A~^^^4^0.019^0.020^3^0.019^0.020^~4~^~06/01/2005~ -~21304~^~617~^3.497^15^0.090^~1~^~A~^^^4^3.365^3.757^3^3.209^3.784^~4~^~06/01/2005~ -~21304~^~618~^1.521^15^0.092^~1~^~A~^^^4^1.260^1.675^3^1.227^1.815^~4~^~06/01/2005~ -~21304~^~619~^0.157^8^0.006^~6~^~JA~^^^3^0.149^0.167^2^0.133^0.181^~4~^~02/01/2005~ -~21304~^~620~^0.022^15^0.001^~1~^~A~^^^4^0.020^0.025^3^0.018^0.025^~4~^~06/01/2005~ -~21304~^~621~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~02/01/2005~ -~21304~^~624~^0.002^15^0.002^~1~^~A~^^^4^0.000^0.008^3^-0.004^0.008^~4~^~06/01/2005~ -~21304~^~625~^0.038^15^0.004^~1~^~A~^^^4^0.027^0.046^3^0.024^0.051^~4~^~06/01/2005~ -~21304~^~626~^0.195^15^0.012^~1~^~A~^^^4^0.165^0.215^3^0.156^0.233^~4~^~06/01/2005~ -~21304~^~627~^0.029^8^0.001^~1~^~A~^^^2^0.027^0.030^1^0.013^0.045^~4~^~02/01/2005~ -~21304~^~628~^0.042^15^0.004^~1~^~A~^^^4^0.031^0.048^3^0.030^0.054^~4~^~06/01/2005~ -~21304~^~629~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~02/01/2005~ -~21304~^~630~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.002^1^-0.014^0.017^~4~^~02/01/2005~ -~21304~^~631~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~02/01/2005~ -~21304~^~645~^3.787^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~646~^1.890^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~21304~^~652~^0.045^15^0.004^~1~^~A~^^^4^0.035^0.052^3^0.032^0.057^~4~^~06/01/2005~ -~21304~^~653~^0.050^15^0.004^~1~^~A~^^^4^0.040^0.057^3^0.038^0.061^~4~^~06/01/2005~ -~21304~^~654~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~02/01/2005~ -~21304~^~672~^0.023^11^0.003^~1~^~A~^^^3^0.017^0.027^2^0.009^0.036^~4~^~06/01/2005~ -~21304~^~685~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~06/01/2005~ -~21304~^~687~^0.014^15^0.008^~1~^~A~^^^4^0.000^0.030^3^-0.012^0.041^~4~^~06/01/2005~ -~21304~^~689~^0.000^15^0.000^~1~^~A~^^^4^0.000^0.000^3^0.000^0.000^~4~^~06/01/2005~ -~21304~^~696~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~02/01/2005~ -~21304~^~697~^0.000^15^0.000^~1~^~A~^^^4^0.000^0.000^3^0.000^0.000^~4~^~06/01/2005~ -~21304~^~851~^0.138^7^0.011^~1~^~A~^^^2^0.127^0.149^1^0.000^0.275^~4~^~06/01/2005~ -~21305~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21305~^~315~^0.143^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21305~^~404~^0.170^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21305~^~405~^0.290^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~406~^2.111^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~410~^0.590^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21305~^~415~^0.128^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~605~^0.822^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21305~^~606~^5.649^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21305~^~607~^0.101^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~608~^0.038^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~609~^0.058^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~610~^0.078^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~611~^0.201^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~612~^0.463^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~613~^3.103^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~614~^1.498^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~617~^6.119^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~618~^1.980^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~619~^0.101^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~620~^0.072^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~621~^0.010^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~626~^0.444^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~628~^0.105^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21305~^~645~^6.718^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21305~^~646~^2.260^0^^~6~^~RKI~^^^^^^^^^^~03/01/2007~ -~21306~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~315~^0.198^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~404~^0.209^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~405~^0.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~406~^3.082^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~410~^0.384^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~415~^0.108^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21306~^~605~^0.956^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21306~^~606~^5.363^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21306~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~609~^0.002^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~611~^0.089^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~612~^0.206^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~613~^3.259^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~614~^1.806^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~617~^6.904^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~618~^2.300^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~619~^0.056^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~620~^0.059^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~626~^0.445^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~628~^0.183^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21306~^~645~^7.531^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21306~^~646~^2.414^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21307~^~312~^0.092^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~404~^0.126^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21307~^~405~^0.300^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~406~^1.319^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~410~^0.522^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~415~^0.083^0^^~1~^~RKA~^^^^^^^^^^~03/01/2007~ -~21307~^~605~^0.903^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21307~^~606~^4.121^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~21307~^~607~^0.088^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~608~^0.034^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~609~^0.053^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~610~^0.070^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~611~^0.194^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~612~^0.381^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~613~^2.230^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~614~^1.071^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~617~^4.280^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~618~^1.130^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~619~^0.128^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~620~^0.061^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~621~^0.012^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~626~^0.315^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~628~^0.040^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~629~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~630~^0.001^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21307~^~645~^4.635^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~21307~^~646~^1.331^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~21309~^~312~^0.049^6^0.002^~1~^~A~^^^1^0.044^0.058^5^0.044^0.054^~4~^~08/01/2012~ -~21309~^~315~^0.140^6^0.003^~1~^~A~^^^1^0.131^0.151^5^0.132^0.148^~4~^~08/01/2012~ -~21309~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21309~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21309~^~406~^7.400^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21309~^~410~^0.880^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21309~^~415~^0.398^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21309~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~606~^3.261^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~06/01/2008~ -~21309~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~06/01/2008~ -~21309~^~609~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.012^~4~^~08/01/2012~ -~21309~^~610~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~08/01/2012~ -~21309~^~611~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~4~^~08/01/2012~ -~21309~^~612~^0.035^3^0.003^~1~^~A~^^^1^0.031^0.041^2^0.022^0.048^~4~^~08/01/2012~ -~21309~^~613~^2.058^3^0.164^~1~^~A~^^^1^1.816^2.371^2^1.352^2.764^~4~^~08/01/2012~ -~21309~^~614~^0.991^3^0.051^~1~^~A~^^^1^0.925^1.090^2^0.773^1.208^~4~^~08/01/2012~ -~21309~^~615~^0.074^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.061^0.087^~4~^~08/01/2012~ -~21309~^~617~^7.675^3^0.425^~1~^~AS~^^^1^7.197^8.523^2^5.845^9.504^~4~^~08/01/2012~ -~21309~^~618~^5.186^3^0.314^~1~^~AS~^^^1^4.686^5.765^2^3.835^6.537^~4~^~08/01/2012~ -~21309~^~619~^0.321^3^0.015^~1~^~AS~^^^1^0.301^0.351^2^0.255^0.387^~4~^~08/01/2012~ -~21309~^~620~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.051^2^0.044^0.054^~4~^~08/01/2012~ -~21309~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~08/01/2012~ -~21309~^~624~^0.039^3^0.002^~1~^~A~^^^1^0.036^0.043^2^0.030^0.048^~4~^~08/01/2012~ -~21309~^~625~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~4~^~08/01/2012~ -~21309~^~626~^0.281^3^0.028^~1~^~AS~^^^1^0.237^0.333^2^0.160^0.401^~4~^~08/01/2012~ -~21309~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~08/01/2012~ -~21309~^~628~^0.141^3^0.006^~1~^~A~^^^1^0.132^0.153^2^0.113^0.168^~4~^~08/01/2012~ -~21309~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~08/01/2012~ -~21309~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.006^~4~^~08/01/2012~ -~21309~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~4~^~08/01/2012~ -~21309~^~645~^8.134^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~646~^5.610^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~652~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^2^0.006^0.006^~4~^~08/01/2012~ -~21309~^~653~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.017^2^0.011^0.019^~4~^~08/01/2012~ -~21309~^~654~^0.025^3^0.001^~1~^~A~^^^1^0.023^0.027^2^0.019^0.030^~4~^~08/01/2012~ -~21309~^~662~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~08/01/2012~ -~21309~^~663~^0.052^3^0.004^~1~^~A~^^^1^0.044^0.058^2^0.034^0.069^~4~^~08/01/2012~ -~21309~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~08/01/2012~ -~21309~^~665~^0.061^3^0.002^~1~^~A~^^^1^0.058^0.063^2^0.054^0.068^~4~^~08/01/2012~ -~21309~^~670~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.016^0.023^~4~^~08/01/2012~ -~21309~^~671~^0.015^3^0.008^~1~^~A~^^^1^0.000^0.025^2^-0.018^0.048^~1, 4~^~08/01/2012~ -~21309~^~672~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.008^0.019^~4~^~08/01/2012~ -~21309~^~673~^0.279^3^0.028^~1~^~A~^^^1^0.236^0.331^2^0.159^0.399^~4~^~08/01/2012~ -~21309~^~674~^7.623^3^0.422^~1~^~A~^^^1^7.144^8.465^2^5.806^9.440^~4~^~08/01/2012~ -~21309~^~675~^5.105^3^0.313^~1~^~A~^^^1^4.604^5.681^2^3.758^6.453^~4~^~08/01/2012~ -~21309~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~4~^~08/01/2012~ -~21309~^~685~^0.025^3^0.002^~1~^~A~^^^1^0.022^0.028^2^0.017^0.032^~4~^~08/01/2012~ -~21309~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~4~^~08/01/2012~ -~21309~^~689~^0.016^3^0.002^~1~^~AS~^^^1^0.013^0.019^2^0.009^0.023^~4~^~08/01/2012~ -~21309~^~693~^0.053^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21309~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~06/01/2008~ -~21309~^~851~^0.296^3^0.016^~1~^~A~^^^1^0.273^0.327^2^0.228^0.365^~4~^~08/01/2012~ -~21309~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~08/01/2012~ -~21309~^~853~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.009^0.020^~4~^~08/01/2012~ -~21309~^~858~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~4~^~08/01/2012~ -~21319~^~312~^0.093^6^0.011^~1~^~A~^^^1^0.049^0.133^5^0.064^0.122^~2, 3~^~05/01/2014~ -~21319~^~315~^0.153^6^0.012^~1~^~A~^^^1^0.128^0.207^5^0.123^0.183^~2, 3~^~05/01/2014~ -~21319~^~404~^0.127^3^0.012^~1~^~A~^^^1^0.110^0.150^2^0.075^0.178^~2, 3~^~05/01/2014~ -~21319~^~405~^0.032^3^0.010^~1~^~A~^^^1^0.015^0.050^2^-0.012^0.075^~1, 2, 3~^~05/01/2014~ -~21319~^~406~^1.733^3^0.378^~1~^~A~^^^1^1.260^2.480^2^0.108^3.359^~2, 3~^~05/01/2014~ -~21319~^~410~^0.345^2^^~1~^~A~^^^1^0.290^0.400^1^^^^~05/01/2014~ -~21319~^~415~^0.180^3^0.010^~1~^~A~^^^1^0.170^0.200^2^0.137^0.223^~2, 3~^~05/01/2014~ -~21319~^~605~^0.049^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~606~^2.327^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21319~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21319~^~609~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.012^2^-0.001^0.017^~2, 3~^~05/01/2014~ -~21319~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21319~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2014~ -~21319~^~612~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~07/01/2008~ -~21319~^~613~^1.081^3^0.050^~1~^~A~^^^1^0.991^1.162^2^0.867^1.294^~2, 3~^~05/01/2014~ -~21319~^~614~^1.038^3^0.034^~1~^~A~^^^1^0.976^1.094^2^0.891^1.185^~2, 3~^~05/01/2014~ -~21319~^~615~^0.091^3^0.003^~1~^~A~^^^1^0.087^0.096^2^0.080^0.103^~2, 3~^~05/01/2014~ -~21319~^~617~^7.848^3^0.240^~1~^~AS~^^^1^7.431^8.261^2^6.817^8.879^~2, 3~^~05/01/2014~ -~21319~^~618~^4.613^3^0.292^~1~^~AS~^^^1^4.039^4.991^2^3.357^5.869^~2, 3~^~05/01/2014~ -~21319~^~619~^0.439^3^0.026^~1~^~AS~^^^1^0.388^0.471^2^0.328^0.551^~2, 3~^~05/01/2014~ -~21319~^~620~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~05/01/2014~ -~21319~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~624~^0.049^3^0.001^~1~^~A~^^^1^0.048^0.050^2^0.046^0.052^~2, 3~^~05/01/2014~ -~21319~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21319~^~626~^0.028^3^0.001^~1~^~AS~^^^1^0.027^0.029^2^0.025^0.030^~2, 3~^~05/01/2014~ -~21319~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~628~^0.154^3^0.001^~1~^~A~^^^1^0.151^0.155^2^0.148^0.160^~2, 3~^~05/01/2014~ -~21319~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~630~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~21319~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~645~^8.055^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~646~^5.065^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~652~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21319~^~653~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~07/01/2008~ -~21319~^~654~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.031^~2, 3~^~05/01/2014~ -~21319~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~663~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.028^2^0.012^0.034^~2, 3~^~05/01/2014~ -~21319~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~665~^0.026^3^0.003^~1~^~A~^^^1^0.021^0.031^2^0.014^0.039^~2, 3~^~05/01/2014~ -~21319~^~670~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~05/01/2014~ -~21319~^~671~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~05/01/2014~ -~21319~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~05/01/2014~ -~21319~^~673~^0.028^3^0.001^~1~^~A~^^^1^0.027^0.029^2^0.025^0.030^~2, 3~^~05/01/2014~ -~21319~^~674~^7.825^3^0.242^~1~^~A~^^^1^7.403^8.240^2^6.786^8.865^~2, 3~^~05/01/2014~ -~21319~^~675~^4.574^3^0.295^~1~^~A~^^^1^3.993^4.950^2^3.306^5.841^~2, 3~^~05/01/2014~ -~21319~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2014~ -~21319~^~685~^0.027^3^0.002^~1~^~A~^^^1^0.025^0.031^2^0.019^0.035^~2, 3~^~05/01/2014~ -~21319~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~05/01/2014~ -~21319~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2008~ -~21319~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21319~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2008~ -~21319~^~851~^0.412^3^0.028^~1~^~A~^^^1^0.357^0.445^2^0.293^0.531^~2, 3~^~05/01/2014~ -~21319~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21319~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21321~^~312~^0.091^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~315~^0.253^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~404~^0.299^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~405~^0.267^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~406~^2.170^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~410~^0.711^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~415~^0.077^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~21321~^~606~^1.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21321~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~613~^0.678^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~614~^0.443^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~615~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~617~^1.210^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~618~^2.657^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~21321~^~619~^0.321^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~21321~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~624~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~626~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~628~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~645~^1.236^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21321~^~646~^2.978^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~21321~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~669~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~675~^2.638^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21321~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~ -~21321~^~851~^0.321^1^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~21327~^~404~^0.126^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21327~^~405~^0.300^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~406~^1.319^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21327~^~605~^0.903^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~606~^4.201^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~645~^4.686^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21327~^~646~^1.775^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21328~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~315~^0.198^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~404~^0.209^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~405~^0.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~406~^3.082^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~410~^0.384^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~415~^0.108^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21328~^~605~^0.956^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21328~^~606~^5.435^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21328~^~645~^7.532^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21328~^~646~^2.591^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21329~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~315~^0.143^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~404~^0.170^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21329~^~405~^0.290^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~406~^2.111^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~410~^0.590^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21329~^~606~^5.649^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21329~^~645~^6.718^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21329~^~646~^2.260^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21333~^~312~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~315~^0.038^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~404~^0.043^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~405~^0.246^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~406~^0.498^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~410~^0.728^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~415~^0.054^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~605~^0.280^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21333~^~606~^2.410^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21333~^~609~^0.037^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~610~^0.087^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~611~^0.101^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~612~^0.365^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~613~^1.171^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~614~^0.580^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~615~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~617~^1.130^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~618~^0.269^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~619~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~624~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~625~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~626~^0.042^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~628~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~645~^1.206^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21333~^~646~^0.297^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21333~^~652~^0.038^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~653~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21333~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~312~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~315~^0.071^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~404~^0.039^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~405~^0.195^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~406~^0.131^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~410~^0.613^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~415~^0.050^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~605~^0.224^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21334~^~606~^2.008^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21334~^~609~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~610~^0.073^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~611~^0.086^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~612~^0.308^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~613~^0.967^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~614~^0.485^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~615~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~617~^0.912^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~618~^0.171^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~619~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~624~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~625~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~626~^0.036^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~628~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~645~^0.976^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21334~^~646~^0.190^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21334~^~652~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~653~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~687~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21334~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~312~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~315~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~404~^0.037^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~405~^0.223^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~406~^0.114^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~410~^0.681^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~415~^0.049^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~605~^0.271^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21335~^~606~^2.468^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21335~^~609~^0.040^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~610~^0.093^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~611~^0.108^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~612~^0.385^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~613~^1.184^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~614~^0.586^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~615~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~617~^1.130^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~618~^0.208^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~619~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~620~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~624~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~625~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~626~^0.046^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~628~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~645~^1.210^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21335~^~646~^0.232^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21335~^~652~^0.040^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~653~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~687~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21335~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~312~^0.051^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~315~^0.066^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~404~^0.042^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~405~^0.226^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~406~^0.151^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~410~^0.749^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~415~^0.052^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~605~^0.242^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21336~^~606~^3.592^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21336~^~609~^0.086^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~610~^0.125^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~611~^0.799^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~612~^0.550^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~613~^1.135^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~614~^0.836^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~615~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~617~^0.981^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~618~^0.198^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~619~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~624~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~625~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~626~^0.035^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~628~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~645~^1.045^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21336~^~646~^0.220^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21336~^~652~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~653~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~687~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21336~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~312~^0.044^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~315~^0.046^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~404~^0.051^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~405~^0.243^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~406~^0.139^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~410~^0.730^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~415~^0.053^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~605~^0.281^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21338~^~606~^3.402^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21338~^~609~^0.040^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~610~^0.094^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~611~^0.109^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~612~^0.392^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~613~^1.577^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~614~^1.095^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~615~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~617~^1.586^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~618~^0.254^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~619~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~624~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~625~^0.028^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~626~^0.049^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~628~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~645~^1.670^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21338~^~646~^0.282^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21338~^~652~^0.041^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~653~^0.028^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21338~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~312~^0.030^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~315~^0.042^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~404~^0.048^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~405~^0.229^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~406~^0.264^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~410~^0.722^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~415~^0.058^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~605~^0.565^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21339~^~606~^2.577^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21339~^~609~^0.038^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~610~^0.087^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~611~^0.102^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~612~^0.367^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~613~^1.254^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~614~^0.653^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~615~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~617~^1.639^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~618~^0.339^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~619~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~624~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~625~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~626~^0.042^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~628~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~645~^1.716^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21339~^~646~^0.364^0^^~6~^~RKI~^^^^^^^^^^~04/01/2005~ -~21339~^~652~^0.038^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~653~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21339~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21340~^~312~^0.075^6^0.001^~1~^~A~^^^1^0.072^0.079^5^0.072^0.078^~2, 3~^~06/01/2015~ -~21340~^~315~^0.218^6^0.004^~1~^~A~^^^1^0.204^0.232^5^0.207^0.229^~2, 3~^~06/01/2015~ -~21340~^~404~^0.210^3^0.020^~1~^~A~^^^1^0.190^0.250^2^0.124^0.296^~2, 3~^~06/01/2015~ -~21340~^~405~^0.417^3^0.023^~1~^~A~^^^1^0.380^0.460^2^0.316^0.517^~2, 3~^~06/01/2015~ -~21340~^~406~^2.133^3^0.310^~1~^~A~^^^1^1.720^2.740^2^0.800^3.467^~2, 3~^~06/01/2015~ -~21340~^~410~^0.665^2^^~1~^~A~^^^1^0.610^0.720^1^^^^~06/01/2015~ -~21340~^~415~^0.102^3^0.003^~1~^~A~^^^1^0.097^0.108^2^0.088^0.116^~2, 3~^~06/01/2015~ -~21340~^~501~^0.126^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~502~^0.408^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~503~^0.461^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~504~^0.901^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~505~^0.785^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~506~^0.262^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~507~^0.209^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~508~^0.576^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~509~^0.398^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~510~^0.524^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~511~^0.586^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~512~^0.272^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~513~^0.471^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~514~^0.817^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~515~^2.356^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~516~^0.408^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~517~^1.016^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~521~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21340~^~605~^0.201^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~606~^6.404^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~607~^0.083^3^0.005^~1~^~A~^^^1^0.074^0.090^2^0.063^0.104^~2, 3~^~06/01/2015~ -~21340~^~608~^0.065^3^0.005^~1~^~A~^^^1^0.056^0.071^2^0.045^0.085^~2, 3~^~06/01/2015~ -~21340~^~609~^0.066^3^0.004^~1~^~A~^^^1^0.058^0.072^2^0.048^0.085^~2, 3~^~06/01/2015~ -~21340~^~610~^0.120^3^0.007^~1~^~A~^^^1^0.107^0.127^2^0.092^0.148^~2, 3~^~06/01/2015~ -~21340~^~611~^0.121^3^0.009^~1~^~A~^^^1^0.103^0.131^2^0.082^0.161^~2, 3~^~06/01/2015~ -~21340~^~612~^0.441^3^0.027^~1~^~A~^^^1^0.387^0.470^2^0.325^0.557^~2, 3~^~06/01/2015~ -~21340~^~613~^3.333^3^0.149^~1~^~A~^^^1^3.036^3.495^2^2.693^3.974^~2, 3~^~06/01/2015~ -~21340~^~614~^2.030^3^0.090^~1~^~A~^^^1^1.854^2.149^2^1.644^2.415^~2, 3~^~06/01/2015~ -~21340~^~615~^0.029^3^0.001^~1~^~A~^^^1^0.027^0.030^2^0.025^0.033^~2, 3~^~06/01/2015~ -~21340~^~617~^4.678^3^0.216^~1~^~AS~^^^1^4.246^4.900^2^3.749^5.607^~2, 3~^~06/01/2015~ -~21340~^~618~^2.929^3^0.103^~1~^~AS~^^^1^2.739^3.094^2^2.484^3.373^~2, 3~^~06/01/2015~ -~21340~^~619~^0.245^3^0.010^~1~^~AS~^^^1^0.230^0.265^2^0.200^0.290^~2, 3~^~06/01/2015~ -~21340~^~620~^0.085^3^0.002^~1~^~A~^^^1^0.082^0.090^2^0.075^0.096^~2, 3~^~06/01/2015~ -~21340~^~621~^0.019^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~06/01/2015~ -~21340~^~624~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~06/01/2015~ -~21340~^~625~^0.038^3^0.002^~1~^~A~^^^1^0.035^0.040^2^0.031^0.044^~2, 3~^~06/01/2015~ -~21340~^~626~^0.250^3^0.014^~1~^~AS~^^^1^0.223^0.265^2^0.192^0.308^~2, 3~^~06/01/2015~ -~21340~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2015~ -~21340~^~628~^0.082^3^0.005^~1~^~A~^^^1^0.072^0.087^2^0.060^0.103^~2, 3~^~06/01/2015~ -~21340~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~21340~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~06/01/2015~ -~21340~^~631~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~06/01/2015~ -~21340~^~645~^5.073^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~646~^3.366^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~652~^0.045^3^0.003^~1~^~A~^^^1^0.040^0.048^2^0.034^0.056^~2, 3~^~06/01/2015~ -~21340~^~653~^0.045^3^0.002^~1~^~A~^^^1^0.042^0.047^2^0.038^0.052^~2, 3~^~06/01/2015~ -~21340~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~06/01/2015~ -~21340~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.010^0.015^2^0.006^0.019^~2, 3~^~06/01/2015~ -~21340~^~663~^0.142^3^0.002^~1~^~A~^^^1^0.138^0.146^2^0.132^0.152^~2, 3~^~06/01/2015~ -~21340~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21340~^~665~^0.045^3^0.004^~1~^~A~^^^1^0.040^0.052^2^0.029^0.061^~2, 3~^~06/01/2015~ -~21340~^~670~^0.031^3^0.002^~1~^~A~^^^1^0.028^0.034^2^0.024^0.038^~2, 3~^~06/01/2015~ -~21340~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2015~ -~21340~^~672~^0.040^3^0.005^~1~^~A~^^^1^0.031^0.046^2^0.020^0.061^~2, 3~^~06/01/2015~ -~21340~^~673~^0.237^3^0.012^~1~^~A~^^^1^0.213^0.250^2^0.185^0.290^~2, 3~^~06/01/2015~ -~21340~^~674~^4.536^3^0.216^~1~^~A~^^^1^4.105^4.754^2^3.608^5.464^~2, 3~^~06/01/2015~ -~21340~^~675~^2.853^3^0.099^~1~^~A~^^^1^2.668^3.008^2^2.426^3.280^~2, 3~^~06/01/2015~ -~21340~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~06/01/2015~ -~21340~^~685~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~06/01/2015~ -~21340~^~687~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.015^0.026^~2, 3~^~06/01/2015~ -~21340~^~689~^0.022^3^0.001^~1~^~AS~^^^1^0.020^0.024^2^0.017^0.028^~2, 3~^~06/01/2015~ -~21340~^~693~^0.155^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21340~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~21340~^~851~^0.230^3^0.011^~1~^~A~^^^1^0.214^0.250^2^0.184^0.276^~2, 3~^~06/01/2015~ -~21340~^~852~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~06/01/2015~ -~21340~^~853~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~06/01/2015~ -~21340~^~856~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2015~ -~21340~^~858~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.018^~2, 3~^~06/01/2015~ -~21341~^~312~^0.082^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~315~^0.119^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~404~^0.229^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~405~^0.352^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~406~^2.273^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~410~^0.745^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~415~^0.174^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~606~^6.405^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~609~^0.047^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~610~^0.039^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~611~^0.462^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~612~^0.267^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~613~^4.030^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~614~^1.447^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~615~^0.043^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~617~^7.029^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~618~^2.915^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~619~^0.193^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~620~^0.042^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~624~^0.017^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~625~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21341~^~626~^0.245^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~628~^0.098^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~645~^7.372^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~646~^3.195^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21341~^~652~^0.002^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~653~^0.035^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~672~^0.045^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21341~^~687~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21341~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21341~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2005~ -~21344~^~312~^0.077^6^0.003^~1~^~A~^^^1^0.067^0.085^5^0.069^0.084^~4~^~07/01/2012~ -~21344~^~315~^0.202^6^0.006^~1~^~A~^^^1^0.178^0.223^5^0.186^0.218^~4~^~07/01/2012~ -~21344~^~404~^0.162^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21344~^~405~^0.247^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21344~^~406~^3.860^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21344~^~605~^0.675^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~606~^6.998^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~607~^0.093^3^0.002^~1~^~A~^^^1^0.090^0.096^2^0.085^0.100^~4~^~07/01/2012~ -~21344~^~608~^0.080^3^0.002^~1~^~A~^^^1^0.077^0.082^2^0.073^0.088^~4~^~07/01/2012~ -~21344~^~609~^0.057^3^0.002^~1~^~A~^^^1^0.054^0.059^2^0.050^0.063^~4~^~07/01/2012~ -~21344~^~610~^0.138^3^0.003^~1~^~A~^^^1^0.133^0.141^2^0.127^0.149^~4~^~07/01/2012~ -~21344~^~611~^0.158^3^0.004^~1~^~A~^^^1^0.150^0.163^2^0.141^0.175^~4~^~07/01/2012~ -~21344~^~612~^0.752^3^0.003^~1~^~A~^^^1^0.746^0.757^2^0.738^0.766^~4~^~07/01/2012~ -~21344~^~613~^3.545^3^0.041^~1~^~A~^^^1^3.480^3.622^2^3.366^3.723^~4~^~07/01/2012~ -~21344~^~614~^1.893^3^0.023^~1~^~A~^^^1^1.868^1.939^2^1.793^1.992^~4~^~07/01/2012~ -~21344~^~615~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~4~^~07/01/2012~ -~21344~^~617~^4.999^3^0.015^~1~^~AS~^^^1^4.981^5.029^2^4.935^5.064^~4~^~07/01/2012~ -~21344~^~618~^1.147^3^0.008^~1~^~AS~^^^1^1.132^1.157^2^1.114^1.180^~4~^~07/01/2012~ -~21344~^~619~^0.123^3^0.002^~1~^~AS~^^^1^0.120^0.125^2^0.116^0.129^~4~^~07/01/2012~ -~21344~^~620~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~4~^~07/01/2012~ -~21344~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21344~^~624~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~4~^~07/01/2012~ -~21344~^~625~^0.127^3^0.003^~1~^~A~^^^1^0.122^0.131^2^0.116^0.138^~4~^~07/01/2012~ -~21344~^~626~^0.391^3^0.013^~1~^~AS~^^^1^0.366^0.412^2^0.333^0.448^~4~^~07/01/2012~ -~21344~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21344~^~628~^0.046^3^0.000^~1~^~A~^^^1^0.045^0.046^2^0.044^0.047^~4~^~07/01/2012~ -~21344~^~629~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^2^0.005^0.005^~4~^~07/01/2012~ -~21344~^~630~^0.005^3^0.002^~1~^~AS~^^^1^0.003^0.008^2^-0.003^0.012^~4~^~07/01/2012~ -~21344~^~631~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~4~^~07/01/2012~ -~21344~^~645~^5.655^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~646~^1.351^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~652~^0.096^3^0.002^~1~^~A~^^^1^0.093^0.099^2^0.089^0.104^~4~^~07/01/2012~ -~21344~^~653~^0.144^3^0.007^~1~^~A~^^^1^0.131^0.154^2^0.115^0.173^~4~^~07/01/2012~ -~21344~^~654~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~4~^~07/01/2012~ -~21344~^~662~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^2^0.050^0.050^~4~^~07/01/2012~ -~21344~^~663~^0.524^3^0.046^~1~^~A~^^^1^0.433^0.582^2^0.325^0.723^~4~^~07/01/2012~ -~21344~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21344~^~665~^0.101^3^0.002^~1~^~A~^^^1^0.096^0.104^2^0.090^0.111^~4~^~07/01/2012~ -~21344~^~670~^0.080^3^0.002^~1~^~A~^^^1^0.077^0.082^2^0.073^0.087^~4~^~07/01/2012~ -~21344~^~671~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 4~^~07/01/2012~ -~21344~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~07/01/2012~ -~21344~^~673~^0.341^3^0.013^~1~^~A~^^^1^0.316^0.362^2^0.283^0.398^~4~^~07/01/2012~ -~21344~^~674~^4.475^3^0.041^~1~^~A~^^^1^4.406^4.548^2^4.299^4.651^~4~^~07/01/2012~ -~21344~^~675~^0.966^3^0.006^~1~^~A~^^^1^0.955^0.976^2^0.940^0.993^~4~^~07/01/2012~ -~21344~^~676~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.008^2^-0.003^0.012^~4~^~07/01/2012~ -~21344~^~685~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.005^0.013^~1, 4~^~07/01/2012~ -~21344~^~687~^0.086^3^0.005^~1~^~A~^^^1^0.076^0.092^2^0.064^0.108^~4~^~07/01/2012~ -~21344~^~689~^0.021^3^0.000^~1~^~AS~^^^1^0.020^0.021^2^0.019^0.022^~4~^~07/01/2012~ -~21344~^~693~^0.574^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21344~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21344~^~851~^0.119^3^0.003^~1~^~A~^^^1^0.114^0.124^2^0.107^0.131^~4~^~07/01/2012~ -~21344~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21344~^~853~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.016^0.021^~4~^~07/01/2012~ -~21344~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~4~^~07/01/2012~ -~21345~^~312~^0.091^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~315~^0.133^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~404~^0.127^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~405~^0.303^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~406~^4.213^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~605~^1.027^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21345~^~606~^6.473^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~645~^5.855^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21345~^~646~^0.480^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~312~^0.105^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~315~^0.218^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~404~^0.190^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~405~^0.223^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~406~^3.693^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21350~^~606~^4.162^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~645~^3.802^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21350~^~646~^0.334^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21355~^~312~^0.082^6^0.002^~1~^~A~^^^1^0.074^0.091^5^0.076^0.088^~4~^~07/01/2012~ -~21355~^~315~^0.358^6^0.009^~1~^~A~^^^1^0.323^0.394^5^0.334^0.382^~4~^~07/01/2012~ -~21355~^~404~^0.212^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21355~^~405~^0.200^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21355~^~406~^3.942^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21355~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~606~^2.346^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21355~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21355~^~609~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21355~^~610~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21355~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~07/01/2012~ -~21355~^~612~^0.024^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.020^0.028^~4~^~07/01/2012~ -~21355~^~613~^1.552^3^0.020^~1~^~A~^^^1^1.517^1.587^2^1.465^1.639^~4~^~07/01/2012~ -~21355~^~614~^0.655^3^0.009^~1~^~A~^^^1^0.639^0.669^2^0.617^0.693^~4~^~07/01/2012~ -~21355~^~615~^0.041^3^0.001^~1~^~A~^^^1^0.040^0.043^2^0.037^0.045^~4~^~07/01/2012~ -~21355~^~617~^4.114^3^0.127^~1~^~AS~^^^1^3.872^4.302^2^3.567^4.660^~4~^~07/01/2012~ -~21355~^~618~^4.453^3^0.179^~1~^~AS~^^^1^4.212^4.802^2^3.683^5.222^~4~^~07/01/2012~ -~21355~^~619~^0.447^3^0.011^~1~^~AS~^^^1^0.424^0.459^2^0.398^0.495^~4~^~07/01/2012~ -~21355~^~620~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.030^2^0.023^0.033^~4~^~07/01/2012~ -~21355~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~07/01/2012~ -~21355~^~624~^0.031^3^0.001^~1~^~A~^^^1^0.030^0.032^2^0.028^0.034^~4~^~07/01/2012~ -~21355~^~625~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~07/01/2012~ -~21355~^~626~^0.180^3^0.009^~1~^~AS~^^^1^0.170^0.198^2^0.140^0.219^~4~^~07/01/2012~ -~21355~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21355~^~628~^0.086^3^0.016^~1~^~A~^^^1^0.067^0.117^2^0.018^0.153^~4~^~07/01/2012~ -~21355~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21355~^~630~^0.005^3^0.000^~1~^~AS~^^^1^0.005^0.005^2^0.005^0.005^~4~^~07/01/2012~ -~21355~^~631~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 4~^~07/01/2012~ -~21355~^~645~^4.401^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~646~^4.964^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~652~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.012^~1, 4~^~07/01/2012~ -~21355~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~4~^~07/01/2012~ -~21355~^~654~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~4~^~07/01/2012~ -~21355~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 4~^~07/01/2012~ -~21355~^~663~^0.033^3^0.001^~1~^~A~^^^1^0.031^0.035^2^0.028^0.038^~4~^~07/01/2012~ -~21355~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21355~^~665~^0.045^3^0.001^~1~^~A~^^^1^0.043^0.046^2^0.041^0.049^~4~^~07/01/2012~ -~21355~^~670~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~4~^~07/01/2012~ -~21355~^~671~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.015^0.025^~1, 4~^~07/01/2012~ -~21355~^~672~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^2^0.009^0.009^~4~^~07/01/2012~ -~21355~^~673~^0.179^3^0.009^~1~^~A~^^^1^0.169^0.196^2^0.141^0.216^~4~^~07/01/2012~ -~21355~^~674~^4.081^3^0.128^~1~^~A~^^^1^3.837^4.271^2^3.529^4.632^~4~^~07/01/2012~ -~21355~^~675~^4.396^3^0.179^~1~^~A~^^^1^4.154^4.746^2^3.624^5.167^~4~^~07/01/2012~ -~21355~^~676~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^2^0.005^0.005^~4~^~07/01/2012~ -~21355~^~685~^0.016^3^0.008^~1~^~A~^^^1^0.000^0.026^2^-0.019^0.052^~1, 4~^~07/01/2012~ -~21355~^~687~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~4~^~07/01/2012~ -~21355~^~689~^0.011^3^0.000^~1~^~AS~^^^1^0.011^0.011^2^0.011^0.011^~4~^~07/01/2012~ -~21355~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21355~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21355~^~851~^0.430^3^0.016^~1~^~A~^^^1^0.401^0.457^2^0.360^0.500^~4~^~07/01/2012~ -~21355~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21355~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.013^~4~^~07/01/2012~ -~21355~^~858~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~4~^~07/01/2012~ -~21356~^~312~^0.073^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~315~^0.294^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~404~^0.234^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~405~^0.216^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~406~^4.371^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21356~^~605~^0.103^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~606~^1.636^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~645~^3.405^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21356~^~646~^2.881^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21357~^~312~^0.084^6^0.002^~1~^~A~^^^1^0.077^0.091^5^0.079^0.089^~4~^~07/01/2012~ -~21357~^~315~^0.235^6^0.005^~1~^~A~^^^1^0.215^0.247^5^0.222^0.247^~4~^~07/01/2012~ -~21357~^~404~^0.262^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~405~^0.368^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~406~^3.102^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~410~^0.836^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~415~^0.145^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21357~^~605~^0.109^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~606~^3.592^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~607~^0.063^3^0.003^~1~^~A~^^^1^0.057^0.067^2^0.050^0.076^~4~^~07/01/2012~ -~21357~^~608~^0.054^3^0.004^~1~^~A~^^^1^0.046^0.061^2^0.035^0.072^~4~^~07/01/2012~ -~21357~^~609~^0.080^3^0.009^~1~^~A~^^^1^0.066^0.096^2^0.042^0.117^~4~^~07/01/2012~ -~21357~^~610~^0.107^3^0.005^~1~^~A~^^^1^0.101^0.118^2^0.084^0.130^~4~^~07/01/2012~ -~21357~^~611~^0.098^3^0.003^~1~^~A~^^^1^0.094^0.105^2^0.084^0.113^~4~^~07/01/2012~ -~21357~^~612~^0.329^3^0.008^~1~^~A~^^^1^0.320^0.344^2^0.295^0.362^~4~^~07/01/2012~ -~21357~^~613~^2.007^3^0.020^~1~^~A~^^^1^1.982^2.047^2^1.921^2.094^~4~^~07/01/2012~ -~21357~^~614~^0.760^3^0.010^~1~^~A~^^^1^0.740^0.774^2^0.716^0.804^~4~^~07/01/2012~ -~21357~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~4~^~07/01/2012~ -~21357~^~617~^2.490^3^0.051^~1~^~AS~^^^1^2.398^2.573^2^2.271^2.708^~4~^~07/01/2012~ -~21357~^~618~^1.471^3^0.103^~1~^~AS~^^^1^1.277^1.630^2^1.026^1.916^~4~^~07/01/2012~ -~21357~^~619~^0.115^3^0.011^~1~^~AS~^^^1^0.094^0.132^2^0.067^0.163^~4~^~07/01/2012~ -~21357~^~620~^0.088^3^0.003^~1~^~A~^^^1^0.084^0.094^2^0.075^0.101^~4~^~07/01/2012~ -~21357~^~621~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~4~^~07/01/2012~ -~21357~^~624~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~4~^~07/01/2012~ -~21357~^~625~^0.033^3^0.001^~1~^~A~^^^1^0.032^0.035^2^0.029^0.037^~4~^~07/01/2012~ -~21357~^~626~^0.153^3^0.007^~1~^~AS~^^^1^0.144^0.167^2^0.123^0.183^~4~^~07/01/2012~ -~21357~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21357~^~628~^0.031^3^0.002^~1~^~A~^^^1^0.028^0.034^2^0.023^0.038^~4~^~07/01/2012~ -~21357~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~07/01/2012~ -~21357~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~4~^~07/01/2012~ -~21357~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~07/01/2012~ -~21357~^~645~^2.721^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~646~^1.735^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~652~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.038^2^0.034^0.039^~4~^~07/01/2012~ -~21357~^~653~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~4~^~07/01/2012~ -~21357~^~654~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~4~^~07/01/2012~ -~21357~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~4~^~07/01/2012~ -~21357~^~663~^0.063^3^0.031^~1~^~A~^^^1^0.002^0.100^2^-0.069^0.196^~1, 4~^~07/01/2012~ -~21357~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21357~^~665~^0.033^3^0.003^~1~^~A~^^^1^0.028^0.038^2^0.021^0.045^~4~^~07/01/2012~ -~21357~^~670~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.030^~4~^~07/01/2012~ -~21357~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 4~^~07/01/2012~ -~21357~^~672~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~07/01/2012~ -~21357~^~673~^0.140^3^0.007^~1~^~A~^^^1^0.132^0.154^2^0.111^0.170^~4~^~07/01/2012~ -~21357~^~674~^2.427^3^0.077^~1~^~A~^^^1^2.310^2.571^2^2.097^2.756^~4~^~07/01/2012~ -~21357~^~675~^1.416^3^0.105^~1~^~A~^^^1^1.220^1.578^2^0.965^1.866^~4~^~07/01/2012~ -~21357~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21357~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 4~^~07/01/2012~ -~21357~^~687~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~4~^~07/01/2012~ -~21357~^~689~^0.015^3^0.000^~1~^~AS~^^^1^0.014^0.015^2^0.013^0.016^~4~^~07/01/2012~ -~21357~^~693~^0.076^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21357~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21357~^~851~^0.114^3^0.011^~1~^~A~^^^1^0.094^0.132^2^0.067^0.161^~4~^~07/01/2012~ -~21357~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 4~^~07/01/2012~ -~21357~^~853~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~4~^~07/01/2012~ -~21357~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~4~^~07/01/2012~ -~21358~^~312~^0.091^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~315~^0.254^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~404~^0.347^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~405~^0.288^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~406~^4.184^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~410~^0.554^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~415~^0.153^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21358~^~606~^7.253^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~645~^7.749^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21358~^~646~^3.234^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~312~^0.094^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~315~^0.189^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~404~^0.262^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~405~^0.344^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~406~^2.930^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~410~^0.818^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~415~^0.149^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21359~^~605~^0.339^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~606~^6.008^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~645~^6.581^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21359~^~646~^2.768^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21360~^~312~^0.073^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~315~^0.137^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~404~^0.262^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~405~^0.416^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~406~^1.959^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~410~^0.642^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~415~^0.093^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21360~^~605~^0.395^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21360~^~606~^8.262^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21360~^~645~^5.546^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21360~^~646~^2.625^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21361~^~312~^0.074^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~315~^0.174^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~404~^0.403^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~405~^0.281^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~406~^4.284^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~410~^0.521^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~415~^0.128^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~606~^10.659^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21361~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~608~^0.010^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~609~^0.113^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~610~^0.094^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~611~^1.111^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~612~^0.598^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~613~^6.601^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~614~^1.999^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~615~^0.054^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~617~^8.372^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~618~^3.123^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~619~^0.193^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~620~^0.033^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~624~^0.011^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~625~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21361~^~626~^0.337^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~628~^0.123^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~645~^8.832^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21361~^~646~^3.420^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21361~^~652~^0.005^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~653~^0.054^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~672~^0.070^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21361~^~687~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21361~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21361~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~312~^0.078^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~315~^0.130^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~404~^0.308^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~405~^0.381^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~406~^2.968^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~410~^0.716^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~415~^0.144^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~606~^8.628^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21362~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~608~^0.007^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~609~^0.078^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~610~^0.064^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~611~^0.764^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~612~^0.425^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~613~^5.466^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~614~^1.718^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~615~^0.039^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~617~^7.340^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~618~^2.880^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~619~^0.184^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~620~^0.046^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~624~^0.010^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~625~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~626~^0.313^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~628~^0.095^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~645~^7.748^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21362~^~646~^3.169^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21362~^~652~^0.003^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~653~^0.046^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~672~^0.060^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21362~^~687~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21362~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~03/01/2006~ -~21363~^~312~^0.073^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~315~^0.130^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~404~^0.207^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~405~^0.275^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~406~^1.879^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~410~^0.616^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~415~^0.124^0^^~1~^~RKA~^^^^^^^^^^~07/01/2008~ -~21363~^~606~^4.642^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21363~^~645~^5.217^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21363~^~646~^2.811^0^^~6~^~RKI~^^^^^^^^^^~07/01/2008~ -~21364~^~312~^0.066^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~315~^0.148^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~404~^0.216^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~405~^0.178^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~406~^1.979^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~410~^0.514^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~415~^0.087^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21364~^~605~^0.082^0^^~6~^~RKI~^^^^^^^^^^~05/01/2014~ -~21364~^~606~^3.646^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~ -~21365~^~312~^0.066^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~315~^0.171^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~404~^0.202^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~405~^0.180^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~406~^1.464^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~410~^0.480^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~415~^0.052^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21365~^~605~^1.788^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21365~^~606~^0.818^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21365~^~645~^0.863^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21365~^~646~^2.087^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21376~^~404~^0.056^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~405~^0.083^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~406~^3.703^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~410~^0.487^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~605~^0.091^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~606~^1.235^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~645~^1.014^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21376~^~646~^0.431^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~404~^0.060^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~405~^0.071^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~406~^3.025^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~410~^0.561^0^^~6~^~RKI~^^^^^^^^^^~03/01/2006~ -~21377~^~605~^0.105^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~606~^1.622^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~645~^2.467^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21377~^~646~^1.619^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21378~^~404~^0.044^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~405~^0.058^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~406~^0.206^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21378~^~605~^0.111^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21378~^~606~^1.507^0^^~6~^~RKI~^^^^^^^^^^~06/01/2005~ -~21378~^~645~^1.057^0^^~6~^~RKI~^^^^^^^^^^~06/01/2005~ -~21378~^~646~^0.327^0^^~6~^~RKI~^^^^^^^^^^~06/01/2005~ -~21379~^~404~^0.045^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~405~^0.038^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~406~^0.208^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~605~^0.000^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~606~^0.020^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~645~^0.006^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21379~^~646~^0.079^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~312~^0.051^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~315~^0.203^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~404~^0.046^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~405~^0.115^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~406~^0.237^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~410~^0.418^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21380~^~605~^0.052^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~ -~21380~^~606~^0.041^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~645~^0.106^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21380~^~646~^0.095^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~312~^0.041^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~315~^0.122^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~404~^0.033^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~405~^0.117^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~406~^0.188^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~410~^0.398^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~605~^0.054^0^^~1~^~RKA~^^^^^^^^^^~05/01/2005~ -~21381~^~606~^0.004^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~645~^0.010^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21381~^~646~^0.033^0^^~6~^~RKI~^^^^^^^^^^~05/01/2005~ -~21382~^~312~^0.065^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~315~^0.230^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~404~^0.283^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~405~^0.201^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~406~^2.748^0^^~1~^~RKA~^^^^^^^^^^~06/01/2008~ -~21382~^~605~^0.160^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~606~^1.773^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~645~^2.768^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21382~^~646~^2.323^0^^~6~^~RKI~^^^^^^^^^^~06/01/2008~ -~21383~^~312~^0.070^6^0.001^~1~^~A~^^^1^0.066^0.074^5^0.067^0.072^~2, 3~^~05/01/2013~ -~21383~^~315~^0.184^6^0.011^~1~^~A~^^^1^0.147^0.225^5^0.156^0.212^~2, 3~^~05/01/2013~ -~21383~^~404~^0.237^3^0.009^~1~^~A~^^^1^0.220^0.250^2^0.199^0.275^~2, 3~^~05/01/2013~ -~21383~^~405~^0.370^3^0.015^~1~^~A~^^^1^0.340^0.390^2^0.304^0.436^~2, 3~^~05/01/2013~ -~21383~^~406~^2.754^3^0.153^~1~^~A~^^^1^2.463^2.980^2^2.097^3.411^~2, 3~^~05/01/2013~ -~21383~^~410~^0.750^2^^~1~^~A~^^^1^0.740^0.760^1^^^^~05/01/2013~ -~21383~^~415~^0.159^3^0.009^~1~^~A~^^^1^0.147^0.177^2^0.119^0.199^~2, 3~^~05/01/2013~ -~21383~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~502~^0.455^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~503~^0.551^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~504~^0.929^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~505~^0.609^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~506~^0.290^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~508~^0.542^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~509~^0.339^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~510~^0.658^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~511~^0.619^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~512~^0.329^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~514~^0.977^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~515~^2.399^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~516~^0.503^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~517~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~518~^0.561^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21383~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~606~^8.342^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~607~^0.047^3^0.003^~1~^~A~^^^1^0.043^0.052^2^0.035^0.058^~2, 3~^~05/01/2013~ -~21383~^~608~^0.035^3^0.002^~1~^~A~^^^1^0.031^0.039^2^0.024^0.045^~2, 3~^~05/01/2013~ -~21383~^~609~^0.028^3^0.002^~1~^~A~^^^1^0.024^0.032^2^0.018^0.038^~2, 3~^~05/01/2013~ -~21383~^~610~^0.067^3^0.003^~1~^~A~^^^1^0.064^0.073^2^0.055^0.079^~2, 3~^~05/01/2013~ -~21383~^~611~^0.084^3^0.004^~1~^~A~^^^1^0.077^0.089^2^0.068^0.099^~2, 3~^~05/01/2013~ -~21383~^~612~^0.385^3^0.004^~1~^~A~^^^1^0.378^0.391^2^0.369^0.402^~2, 3~^~05/01/2013~ -~21383~^~613~^5.758^3^0.117^~1~^~A~^^^1^5.544^5.949^2^5.253^6.264^~2, 3~^~05/01/2013~ -~21383~^~614~^1.773^3^0.024^~1~^~A~^^^1^1.725^1.802^2^1.669^1.877^~2, 3~^~05/01/2013~ -~21383~^~615~^0.049^3^0.001^~1~^~A~^^^1^0.048^0.051^2^0.045^0.053^~2, 3~^~05/01/2013~ -~21383~^~617~^7.403^3^0.064^~1~^~AS~^^^1^7.274^7.472^2^7.125^7.680^~2, 3~^~05/01/2013~ -~21383~^~618~^3.797^3^0.153^~1~^~AS~^^^1^3.551^4.079^2^3.137^4.457^~2, 3~^~05/01/2013~ -~21383~^~619~^0.192^3^0.003^~1~^~AS~^^^1^0.187^0.196^2^0.181^0.203^~2, 3~^~05/01/2013~ -~21383~^~620~^0.093^3^0.003^~1~^~A~^^^1^0.089^0.099^2^0.079^0.106^~2, 3~^~05/01/2013~ -~21383~^~621~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.011^0.018^~2, 3~^~05/01/2013~ -~21383~^~624~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.012^0.020^~2, 3~^~05/01/2013~ -~21383~^~625~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~11/01/2005~ -~21383~^~626~^0.270^3^0.005^~1~^~AS~^^^1^0.262^0.278^2^0.250^0.289^~2, 3~^~05/01/2013~ -~21383~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21383~^~628~^0.108^3^0.001^~1~^~A~^^^1^0.106^0.110^2^0.103^0.113^~2, 3~^~05/01/2013~ -~21383~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2013~ -~21383~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~05/01/2013~ -~21383~^~631~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~05/01/2013~ -~21383~^~645~^7.838^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~646~^4.212^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~652~^0.033^3^0.001^~1~^~A~^^^1^0.032^0.034^2^0.030^0.035^~2, 3~^~05/01/2013~ -~21383~^~653~^0.057^3^0.001^~1~^~A~^^^1^0.055^0.058^2^0.053^0.060^~2, 3~^~05/01/2013~ -~21383~^~654~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~05/01/2013~ -~21383~^~662~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~05/01/2013~ -~21383~^~663~^0.100^3^0.004^~1~^~A~^^^1^0.095^0.108^2^0.082^0.118^~2, 3~^~05/01/2013~ -~21383~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21383~^~665~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.041^2^0.035^0.043^~2, 3~^~05/01/2013~ -~21383~^~670~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~05/01/2013~ -~21383~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21383~^~672~^0.068^3^0.004^~1~^~A~^^^1^0.064^0.076^2^0.051^0.085^~2, 3~^~05/01/2013~ -~21383~^~673~^0.259^3^0.004^~1~^~A~^^^1^0.253^0.267^2^0.241^0.277^~2, 3~^~05/01/2013~ -~21383~^~674~^7.303^3^0.069^~1~^~A~^^^1^7.166^7.377^2^7.008^7.598^~2, 3~^~05/01/2013~ -~21383~^~675~^3.734^3^0.154^~1~^~A~^^^1^3.489^4.018^2^3.072^4.397^~2, 3~^~05/01/2013~ -~21383~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2013~ -~21383~^~685~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~05/01/2013~ -~21383~^~687~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.034^2^0.027^0.036^~2, 3~^~05/01/2013~ -~21383~^~689~^0.021^3^0.003^~1~^~AS~^^^1^0.018^0.028^2^0.007^0.036^~2, 3~^~05/01/2013~ -~21383~^~693~^0.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~695~^0.039^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21383~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21383~^~851~^0.183^3^0.002^~1~^~A~^^^1^0.178^0.185^2^0.173^0.193^~2, 3~^~05/01/2013~ -~21383~^~852~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~05/01/2013~ -~21383~^~853~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2013~ -~21383~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21383~^~858~^0.017^3^0.001^~1~^~A~^^^1^0.014^0.019^2^0.011^0.023^~2, 3~^~05/01/2013~ -~21384~^~312~^0.072^4^0.002^~1~^~A~^^^1^0.068^0.077^3^0.065^0.079^~2, 3~^~11/01/2005~ -~21384~^~315~^0.257^4^0.008^~1~^~A~^^^1^0.245^0.279^3^0.232^0.282^~2, 3~^~11/01/2005~ -~21384~^~404~^0.329^4^0.010^~1~^~A~^^^1^0.299^0.348^3^0.295^0.362^~2, 3~^~11/01/2005~ -~21384~^~405~^0.317^4^0.084^~1~^~A~^^^1^0.214^0.569^3^0.049^0.585^~2, 3~^~11/01/2005~ -~21384~^~406~^4.090^4^0.157^~1~^~A~^^^1^3.670^4.340^3^3.591^4.589^~2, 3~^~11/01/2005~ -~21384~^~410~^0.651^4^0.052^~1~^~A~^^^1^0.540^0.776^3^0.487^0.816^~2, 3~^~11/01/2005~ -~21384~^~415~^0.182^4^0.011^~1~^~A~^^^1^0.159^0.211^3^0.148^0.217^~2, 3~^~11/01/2005~ -~21384~^~501~^0.111^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~502~^0.480^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~503~^0.578^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~504~^1.047^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~505~^0.819^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~506~^0.261^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~507~^0.178^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~508~^0.587^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~509~^0.463^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~510~^0.687^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~511~^0.679^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~512~^0.411^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~513~^0.651^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~514~^1.002^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~515~^3.075^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~516~^0.679^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~518~^0.636^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21384~^~606~^8.595^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~609~^0.041^4^0.001^~1~^~A~^^^1^0.038^0.044^3^0.037^0.046^~2, 3~^~11/01/2005~ -~21384~^~610~^0.093^4^0.005^~1~^~A~^^^1^0.080^0.103^3^0.077^0.109^~2, 3~^~11/01/2005~ -~21384~^~611~^0.108^4^0.004^~1~^~A~^^^1^0.100^0.118^3^0.094^0.121^~2, 3~^~11/01/2005~ -~21384~^~612~^0.517^4^0.012^~1~^~A~^^^1^0.490^0.546^3^0.477^0.556^~2, 3~^~11/01/2005~ -~21384~^~613~^5.044^4^0.049^~1~^~A~^^^1^4.950^5.152^3^4.888^5.199^~2, 3~^~11/01/2005~ -~21384~^~614~^2.608^4^0.015^~1~^~A~^^^1^2.573^2.644^3^2.561^2.656^~2, 3~^~11/01/2005~ -~21384~^~615~^0.049^4^0.001^~1~^~A~^^^1^0.047^0.052^3^0.046^0.053^~2, 3~^~11/01/2005~ -~21384~^~617~^11.433^4^0.253^~1~^~A~^^^1^10.787^11.938^3^10.629^12.237^~2, 3~^~11/01/2005~ -~21384~^~618~^2.824^4^0.154^~1~^~A~^^^1^2.539^3.260^3^2.333^3.315^~2, 3~^~11/01/2005~ -~21384~^~619~^0.150^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~21384~^~620~^0.059^4^0.002^~1~^~A~^^^1^0.056^0.063^3^0.053^0.064^~2, 3~^~11/01/2005~ -~21384~^~624~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.028^3^-0.011^0.036^~1, 2, 3~^~11/01/2005~ -~21384~^~625~^0.015^4^0.009^~1~^~A~^^^1^0.000^0.032^3^-0.013^0.043^~1, 2, 3~^~11/01/2005~ -~21384~^~626~^0.442^4^0.013^~1~^~A~^^^1^0.422^0.479^3^0.401^0.482^~2, 3~^~11/01/2005~ -~21384~^~628~^0.134^4^0.004^~1~^~A~^^^1^0.123^0.140^3^0.121^0.147^~2, 3~^~11/01/2005~ -~21384~^~645~^12.025^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~646~^3.114^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21384~^~652~^0.046^4^0.001^~1~^~A~^^^1^0.043^0.050^3^0.041^0.051^~2, 3~^~11/01/2005~ -~21384~^~653~^0.076^4^0.005^~1~^~A~^^^1^0.067^0.090^3^0.061^0.092^~2, 3~^~11/01/2005~ -~21384~^~672~^0.081^4^0.004^~1~^~A~^^^1^0.073^0.090^3^0.069^0.094^~2, 3~^~11/01/2005~ -~21384~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21384~^~851~^0.150^4^0.011^~1~^~A~^^^1^0.128^0.180^3^0.114^0.186^~2, 3~^~11/01/2005~ -~21385~^~312~^0.074^4^0.001^~1~^~A~^^^1^0.072^0.078^3^0.069^0.079^~2, 3~^~11/01/2005~ -~21385~^~315~^0.227^4^0.002^~1~^~A~^^^1^0.223^0.232^3^0.220^0.235^~2, 3~^~11/01/2005~ -~21385~^~404~^0.243^4^0.006^~1~^~A~^^^1^0.225^0.251^3^0.223^0.263^~2, 3~^~11/01/2005~ -~21385~^~405~^0.426^4^0.026^~1~^~A~^^^1^0.366^0.471^3^0.344^0.507^~2, 3~^~11/01/2005~ -~21385~^~406~^2.052^4^0.019^~1~^~A~^^^1^2.010^2.100^3^1.992^2.112^~2, 3~^~11/01/2005~ -~21385~^~410~^0.828^3^0.046^~1~^~A~^^^1^0.770^0.919^2^0.629^1.026^~2, 3~^~11/01/2005~ -~21385~^~415~^0.117^4^0.015^~1~^~A~^^^1^0.097^0.162^3^0.069^0.165^~2, 3~^~11/01/2005~ -~21385~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~502~^0.360^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~503~^0.486^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~504~^0.865^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~505~^0.548^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~506~^0.231^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~507~^0.197^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~508~^0.528^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~509~^0.394^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~510~^0.606^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~511~^0.484^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~512~^0.263^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~513~^0.451^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~514~^0.771^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~515~^2.566^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~516~^0.336^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~517~^0.883^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~518~^0.648^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21385~^~606~^4.766^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~609~^0.175^4^0.007^~1~^~A~^^^1^0.157^0.187^3^0.154^0.197^~2, 3~^~11/01/2005~ -~21385~^~610~^0.150^4^0.005^~1~^~A~^^^1^0.140^0.161^3^0.135^0.165^~2, 3~^~11/01/2005~ -~21385~^~611~^0.097^4^0.003^~1~^~A~^^^1^0.093^0.105^3^0.088^0.105^~2, 3~^~11/01/2005~ -~21385~^~612~^0.347^4^0.008^~1~^~A~^^^1^0.327^0.366^3^0.322^0.373^~2, 3~^~11/01/2005~ -~21385~^~613~^2.722^4^0.076^~1~^~A~^^^1^2.508^2.844^3^2.481^2.963^~2, 3~^~11/01/2005~ -~21385~^~614~^1.150^4^0.051^~1~^~A~^^^1^1.066^1.293^3^0.988^1.311^~2, 3~^~11/01/2005~ -~21385~^~615~^0.029^4^0.001^~1~^~A~^^^1^0.027^0.033^3^0.025^0.034^~2, 3~^~11/01/2005~ -~21385~^~617~^6.443^4^0.096^~1~^~A~^^^1^6.221^6.643^3^6.137^6.749^~2, 3~^~11/01/2005~ -~21385~^~618~^2.601^4^0.107^~1~^~A~^^^1^2.384^2.875^3^2.259^2.942^~2, 3~^~11/01/2005~ -~21385~^~619~^0.269^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~21385~^~620~^0.060^4^0.002^~1~^~A~^^^1^0.056^0.064^3^0.054^0.066^~2, 3~^~11/01/2005~ -~21385~^~624~^0.025^4^0.002^~1~^~A~^^^1^0.023^0.030^3^0.020^0.030^~2, 3~^~11/01/2005~ -~21385~^~625~^0.028^4^0.001^~1~^~A~^^^1^0.027^0.030^3^0.025^0.030^~2, 3~^~11/01/2005~ -~21385~^~626~^0.162^4^0.003^~1~^~A~^^^1^0.154^0.170^3^0.152^0.173^~2, 3~^~11/01/2005~ -~21385~^~628~^0.034^4^0.002^~1~^~A~^^^1^0.031^0.039^3^0.029^0.040^~2, 3~^~11/01/2005~ -~21385~^~645~^6.668^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~646~^2.930^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21385~^~652~^0.038^4^0.001^~1~^~A~^^^1^0.035^0.040^3^0.034^0.041^~2, 3~^~11/01/2005~ -~21385~^~653~^0.033^4^0.001^~1~^~A~^^^1^0.030^0.036^3^0.029^0.037^~2, 3~^~11/01/2005~ -~21385~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21385~^~851~^0.269^4^0.014^~1~^~A~^^^1^0.238^0.304^3^0.225^0.314^~2, 3~^~11/01/2005~ -~21386~^~312~^0.085^4^0.004^~1~^~A~^^^1^0.076^0.094^3^0.072^0.098^~2, 3~^~11/01/2005~ -~21386~^~315~^0.390^4^0.023^~1~^~A~^^^1^0.327^0.430^3^0.318^0.463^~2, 3~^~11/01/2005~ -~21386~^~404~^0.284^4^0.009^~1~^~A~^^^1^0.257^0.299^3^0.254^0.313^~2, 3~^~11/01/2005~ -~21386~^~405~^0.175^4^0.010^~1~^~A~^^^1^0.148^0.194^3^0.144^0.206^~2, 3~^~11/01/2005~ -~21386~^~406~^2.575^4^0.112^~1~^~A~^^^1^2.310^2.840^3^2.217^2.933^~2, 3~^~11/01/2005~ -~21386~^~410~^0.336^4^0.012^~1~^~A~^^^1^0.309^0.360^3^0.297^0.376^~2, 3~^~11/01/2005~ -~21386~^~415~^0.053^4^0.005^~1~^~A~^^^1^0.045^0.068^3^0.036^0.069^~2, 3~^~11/01/2005~ -~21386~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~502~^0.178^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~503~^0.234^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~504~^0.440^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~505~^0.154^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~506~^0.086^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~507~^0.135^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~508~^0.296^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~509~^0.185^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~510~^0.278^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~511~^0.258^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~512~^0.146^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~513~^0.225^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~514~^0.324^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~515~^1.999^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~516~^0.238^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~517~^0.621^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~518~^0.305^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21386~^~606~^3.989^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~612~^0.007^4^0.007^~1~^~A~^^^1^0.000^0.027^3^-0.015^0.028^~1, 2, 3~^~11/01/2005~ -~21386~^~613~^1.961^4^0.122^~1~^~A~^^^1^1.710^2.291^3^1.572^2.350^~2, 3~^~11/01/2005~ -~21386~^~614~^1.892^4^0.129^~1~^~A~^^^1^1.616^2.240^3^1.480^2.304^~2, 3~^~11/01/2005~ -~21386~^~615~^0.058^4^0.004^~1~^~A~^^^1^0.050^0.068^3^0.046^0.071^~2, 3~^~11/01/2005~ -~21386~^~617~^9.406^4^0.806^~1~^~A~^^^1^7.374^11.267^3^6.841^11.972^~2, 3~^~11/01/2005~ -~21386~^~618~^2.421^4^0.154^~1~^~A~^^^1^2.226^2.881^3^1.931^2.911^~2, 3~^~11/01/2005~ -~21386~^~619~^0.145^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~ -~21386~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~624~^0.059^4^0.005^~1~^~A~^^^1^0.047^0.069^3^0.044^0.073^~2, 3~^~11/01/2005~ -~21386~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~626~^0.031^4^0.002^~1~^~A~^^^1^0.027^0.038^3^0.023^0.039^~2, 3~^~11/01/2005~ -~21386~^~628~^0.065^4^0.008^~1~^~A~^^^1^0.049^0.080^3^0.039^0.092^~2, 3~^~11/01/2005~ -~21386~^~645~^9.502^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~646~^2.566^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21386~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~653~^0.012^4^0.007^~1~^~A~^^^1^0.000^0.026^3^-0.010^0.034^~1, 2, 3~^~11/01/2005~ -~21386~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2005~ -~21386~^~851~^0.145^4^0.029^~1~^~A~^^^1^0.108^0.231^3^0.053^0.237^~2, 3~^~11/01/2005~ -~21387~^~312~^0.127^6^0.013^~1~^~A~^^^1^0.092^0.167^5^0.093^0.160^~2, 3~^~05/01/2014~ -~21387~^~315~^0.176^6^0.015^~1~^~A~^^^1^0.125^0.214^5^0.138^0.215^~2, 3~^~05/01/2014~ -~21387~^~404~^0.163^3^0.019^~1~^~A~^^^1^0.140^0.200^2^0.083^0.243^~2, 3~^~05/01/2014~ -~21387~^~405~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~05/01/2014~ -~21387~^~406~^1.980^3^0.038^~1~^~A~^^^1^1.910^2.040^2^1.817^2.143^~2, 3~^~05/01/2014~ -~21387~^~410~^0.455^2^^~1~^~A~^^^1^0.390^0.520^1^^^^~05/01/2014~ -~21387~^~415~^0.187^3^0.007^~1~^~A~^^^1^0.180^0.200^2^0.158^0.215^~2, 3~^~05/01/2014~ -~21387~^~501~^0.034^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~502~^0.119^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~503~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~504~^0.178^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~505~^0.173^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~506~^0.036^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~507~^0.041^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~508~^0.124^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~509~^0.090^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~510~^0.139^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~511~^0.134^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~512~^0.049^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~513~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~514~^0.502^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~515~^0.379^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~516~^0.095^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~517~^0.105^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~518~^0.122^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21387~^~605~^0.090^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~606~^3.285^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~609~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.006^0.022^~2, 3~^~05/01/2014~ -~21387~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2014~ -~21387~^~612~^0.041^3^0.006^~1~^~A~^^^1^0.029^0.049^2^0.015^0.066^~2, 3~^~05/01/2014~ -~21387~^~613~^2.485^3^0.136^~1~^~A~^^^1^2.214^2.641^2^1.900^3.070^~2, 3~^~05/01/2014~ -~21387~^~614~^0.585^3^0.034^~1~^~A~^^^1^0.521^0.635^2^0.440^0.729^~2, 3~^~05/01/2014~ -~21387~^~615~^0.071^3^0.003^~1~^~A~^^^1^0.067^0.076^2^0.060^0.082^~2, 3~^~05/01/2014~ -~21387~^~617~^5.347^3^0.251^~1~^~AS~^^^1^5.063^5.848^2^4.267^6.428^~2, 3~^~05/01/2014~ -~21387~^~618~^8.457^3^0.199^~1~^~AS~^^^1^8.061^8.686^2^7.602^9.311^~2, 3~^~05/01/2014~ -~21387~^~619~^0.512^3^0.023^~1~^~AS~^^^1^0.483^0.557^2^0.413^0.610^~2, 3~^~05/01/2014~ -~21387~^~620~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~21387~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~624~^0.038^3^0.001^~1~^~A~^^^1^0.035^0.039^2^0.032^0.043^~2, 3~^~05/01/2014~ -~21387~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~626~^0.039^3^0.005^~1~^~AS~^^^1^0.030^0.044^2^0.019^0.058^~2, 3~^~05/01/2014~ -~21387~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~628~^0.067^3^0.008^~1~^~A~^^^1^0.058^0.082^2^0.034^0.100^~2, 3~^~05/01/2014~ -~21387~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~05/01/2014~ -~21387~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~645~^5.466^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~646~^8.984^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~652~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~05/01/2014~ -~21387~^~653~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~05/01/2014~ -~21387~^~654~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.024^0.030^~2, 3~^~05/01/2014~ -~21387~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~663~^0.028^3^0.006^~1~^~A~^^^1^0.019^0.040^2^0.002^0.055^~2, 3~^~05/01/2014~ -~21387~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~21387~^~665~^0.061^3^0.005^~1~^~A~^^^1^0.055^0.071^2^0.039^0.083^~2, 3~^~05/01/2014~ -~21387~^~670~^0.029^3^0.002^~1~^~A~^^^1^0.025^0.033^2^0.019^0.039^~2, 3~^~05/01/2014~ -~21387~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~05/01/2014~ -~21387~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~05/01/2014~ -~21387~^~673~^0.039^3^0.005^~1~^~A~^^^1^0.030^0.044^2^0.019^0.058^~2, 3~^~05/01/2014~ -~21387~^~674~^5.319^3^0.245^~1~^~A~^^^1^5.044^5.808^2^4.264^6.374^~2, 3~^~05/01/2014~ -~21387~^~675~^8.367^3^0.196^~1~^~A~^^^1^7.975^8.582^2^7.523^9.211^~2, 3~^~05/01/2014~ -~21387~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~685~^0.037^3^0.004^~1~^~A~^^^1^0.030^0.042^2^0.021^0.052^~2, 3~^~05/01/2014~ -~21387~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2014~ -~21387~^~689~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~05/01/2014~ -~21387~^~693~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21387~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~851~^0.475^3^0.020^~1~^~A~^^^1^0.453^0.515^2^0.389^0.561^~2, 3~^~05/01/2014~ -~21387~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21387~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21388~^~312~^0.070^4^0.001^~1~^~A~^^^1^0.068^0.072^3^0.068^0.073^~2, 3~^~11/01/2005~ -~21388~^~315~^0.561^4^0.017^~1~^~A~^^^1^0.526^0.595^3^0.508^0.614^~2, 3~^~11/01/2005~ -~21388~^~404~^0.254^4^0.025^~1~^~A~^^^1^0.206^0.299^3^0.173^0.334^~2, 3~^~11/01/2005~ -~21388~^~405~^0.303^4^0.005^~1~^~A~^^^1^0.290^0.316^3^0.286^0.320^~2, 3~^~11/01/2005~ -~21388~^~406~^3.160^4^0.115^~1~^~A~^^^1^3.010^3.500^3^2.795^3.524^~2, 3~^~11/01/2005~ -~21388~^~410~^0.507^4^0.029^~1~^~A~^^^1^0.437^0.576^3^0.416^0.598^~2, 3~^~11/01/2005~ -~21388~^~415~^0.044^4^0.001^~1~^~A~^^^1^0.042^0.046^3^0.041^0.047^~2, 3~^~11/01/2005~ -~21388~^~501~^0.054^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~502~^0.218^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~503~^0.276^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~504~^0.510^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~505~^0.181^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~506~^0.110^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~507~^0.158^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~508~^0.334^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~509~^0.213^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~510~^0.334^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~511~^0.259^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~512~^0.162^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~513~^0.250^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~514~^0.365^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~515~^2.247^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~516~^0.251^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~517~^0.708^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~518~^0.368^0^^~1~^~A~^^^^^^^^^^~11/01/2005~ -~21388~^~606~^4.701^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~ -~21388~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~612~^0.031^4^0.001^~1~^~A~^^^1^0.030^0.032^3^0.029^0.032^~2, 3~^~11/01/2005~ -~21388~^~613~^2.317^4^0.035^~1~^~A~^^^1^2.220^2.378^3^2.207^2.427^~2, 3~^~11/01/2005~ -~21388~^~614~^2.224^4^0.034^~1~^~A~^^^1^2.152^2.313^3^2.116^2.331^~2, 3~^~11/01/2005~ -~21388~^~615~^0.055^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.048^0.062^~2, 3~^~11/01/2005~ -~21388~^~617~^9.127^4^0.075^~1~^~A~^^^1^8.941^9.298^3^8.887^9.367^~2, 3~^~11/01/2005~ -~21388~^~618~^2.287^4^0.225^~1~^~A~^^^1^1.820^2.894^3^1.571^3.003^~2, 3~^~11/01/2005~ -~21388~^~619~^0.128^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~ -~21388~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~624~^0.054^4^0.002^~1~^~A~^^^1^0.050^0.059^3^0.047^0.060^~2, 3~^~11/01/2005~ -~21388~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~626~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.041^3^0.039^0.041^~2, 3~^~11/01/2005~ -~21388~^~628~^0.053^4^0.002^~1~^~A~^^^1^0.050^0.059^3^0.047^0.060^~2, 3~^~11/01/2005~ -~21388~^~645~^9.221^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21388~^~646~^2.415^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~21388~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~653~^0.021^4^0.001^~1~^~A~^^^1^0.020^0.022^3^0.020^0.023^~2, 3~^~11/01/2005~ -~21388~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21388~^~851~^0.128^4^0.018^~1~^~A~^^^1^0.090^0.176^3^0.072^0.185^~2, 3~^~11/01/2005~ -~21389~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~315~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~404~^0.193^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~405~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~406~^3.230^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~410~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~415~^0.114^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~605~^0.402^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~606~^5.773^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~607~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~608~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~609~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~611~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~612~^0.372^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~613~^3.249^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~614~^1.795^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~615~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~617~^5.442^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21389~^~618~^2.662^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21389~^~619~^0.315^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21389~^~620~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~625~^0.096^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~626~^0.461^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~ -~21389~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~628~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~645~^6.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~646~^3.016^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~652~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~653~^0.146^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~654~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~662~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~663~^0.315^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~666~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~672~^0.006^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21389~^~673~^0.430^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~674~^5.128^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~675~^2.606^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~687~^0.095^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~689~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21389~^~693~^0.346^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21389~^~851~^0.315^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~312~^0.081^7^0.037^~11~^~JO~^^^0^0.013^0.139^2^-0.077^0.239^~4~^~02/01/2006~ -~21390~^~315~^0.183^7^0.002^~11~^~JO~^^^0^0.180^0.187^2^0.174^0.193^~4~^~02/01/2006~ -~21390~^~404~^0.211^8^0.038^~11~^~JO~^^^0^0.143^0.275^2^0.047^0.375^~4~^~02/01/2006~ -~21390~^~405~^0.213^8^0.025^~11~^~JO~^^^0^0.175^0.260^2^0.106^0.320^~4~^~02/01/2006~ -~21390~^~406~^3.141^8^0.137^~11~^~JO~^^^0^2.873^3.325^2^2.550^3.731^~4~^~02/01/2006~ -~21390~^~410~^0.254^8^0.082^~1~^~A~^^^0^0.173^0.336^1^-0.784^1.292^~4~^~02/01/2006~ -~21390~^~415~^0.103^8^0.011^~1~^~A~^^^0^0.091^0.114^1^-0.042^0.247^~4~^~02/01/2006~ -~21390~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~502~^0.415^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~503~^0.400^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~504~^0.797^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~506~^0.224^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~508~^0.464^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~509~^0.262^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~510~^0.468^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~511~^0.621^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~512~^0.277^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~513~^0.601^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~514~^0.872^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~515~^2.250^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~516~^0.784^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~517~^0.887^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~518~^0.478^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21390~^~606~^3.972^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~607~^0.002^4^0.001^~1~^~A~^^^^0.000^0.004^^^^^~02/01/2007~ -~21390~^~608~^0.002^4^0.001^~1~^~A~^^^^0.000^0.004^^^^^~02/01/2007~ -~21390~^~609~^0.003^8^0.003^~1~^~A~^^^0^0.000^0.006^1^-0.034^0.040^~4~^~02/01/2007~ -~21390~^~610~^0.003^8^0.003^~1~^~A~^^^0^0.000^0.006^1^-0.034^0.040^~4~^~02/01/2007~ -~21390~^~611~^0.019^8^0.019^~1~^~A~^^^0^0.000^0.038^1^-0.220^0.258^~4~^~02/01/2007~ -~21390~^~612~^0.247^8^0.002^~1~^~A~^^^0^0.245^0.249^1^0.222^0.272^~4~^~02/01/2007~ -~21390~^~613~^2.272^8^0.162^~1~^~A~^^^0^2.110^2.435^1^0.210^4.335^~4~^~02/01/2007~ -~21390~^~614~^1.254^8^0.089^~1~^~A~^^^0^1.165^1.342^1^0.128^2.379^~4~^~02/01/2007~ -~21390~^~615~^0.014^8^0.001^~1~^~A~^^^0^0.013^0.015^1^-0.001^0.029^~4~^~02/01/2007~ -~21390~^~617~^4.203^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21390~^~618~^2.828^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21390~^~619~^0.275^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21390~^~620~^0.013^8^0.007^~1~^~A~^^^0^0.006^0.020^1^-0.077^0.103^~4~^~02/01/2007~ -~21390~^~621~^0.000^8^0.000^~1~^~A~^^^0^0.000^0.000^1^0.000^0.000^~4~^~02/01/2007~ -~21390~^~624~^0.005^8^0.005^~1~^~A~^^^0^0.000^0.010^1^-0.057^0.067^~4~^~02/01/2007~ -~21390~^~625~^0.074^8^0.001^~1~^~A~^^^0^0.072^0.075^1^0.058^0.090^~4~^~02/01/2007~ -~21390~^~626~^0.328^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~21390~^~627~^0.025^6^0.025^~1~^~A~^^^0^0.000^0.050^1^-0.293^0.343^~4~^~02/01/2007~ -~21390~^~628~^0.026^8^0.014^~1~^~A~^^^0^0.013^0.040^1^-0.148^0.200^~4~^~02/01/2007~ -~21390~^~629~^0.000^8^0.000^~1~^~A~^^^0^0.000^0.000^1^0.000^0.000^~4~^~02/01/2007~ -~21390~^~630~^0.005^8^0.005^~1~^~A~^^^0^0.000^0.010^1^-0.058^0.068^~4~^~07/01/2009~ -~21390~^~631~^0.000^6^0.000^~1~^~A~^^^0^0.000^0.000^1^0.000^0.000^~4~^~02/01/2007~ -~21390~^~645~^4.670^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~646~^3.144^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21390~^~652~^0.040^8^0.000^~1~^~A~^^^0^0.040^0.040^1^0.037^0.042^~4~^~02/01/2007~ -~21390~^~653~^0.104^8^0.001^~1~^~A~^^^0^0.102^0.105^1^0.088^0.119^~4~^~02/01/2007~ -~21390~^~654~^0.008^8^0.001^~1~^~A~^^^0^0.007^0.010^1^-0.010^0.027^~4~^~02/01/2007~ -~21390~^~662~^0.025^2^^~1~^~A~^^^^0.023^0.027^^^^^~02/01/2007~ -~21390~^~663~^0.411^4^0.024^~1~^~A~^^^^0.351^0.467^^^^^~02/01/2007~ -~21390~^~666~^0.071^2^^~1~^~A~^^^^0.049^0.093^^^^^~02/01/2007~ -~21390~^~672~^0.001^8^0.001^~1~^~A~^^^0^0.000^0.002^1^-0.013^0.015^~4~^~02/01/2007~ -~21390~^~673~^0.303^2^^~1~^~A~^^^^0.294^0.313^^^^^~02/01/2007~ -~21390~^~674~^3.791^4^0.087^~1~^~A~^^^^3.615^4.024^^^^^~02/01/2007~ -~21390~^~675~^2.757^2^^~1~^~A~^^^^2.459^3.055^^^^^~02/01/2007~ -~21390~^~685~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~02/01/2007~ -~21390~^~687~^0.035^8^0.035^~1~^~A~^^^0^0.000^0.069^1^-0.404^0.474^~4~^~02/01/2007~ -~21390~^~689~^0.002^8^0.002^~1~^~A~^^^0^0.000^0.003^1^-0.020^0.023^~4~^~02/01/2007~ -~21390~^~696~^0.000^2^^~1~^~A~^^^^0.000^0.000^^^^^~02/01/2007~ -~21390~^~697~^0.000^6^0.000^~1~^~A~^^^0^0.000^0.000^1^0.000^0.000^~4~^~02/01/2007~ -~21390~^~851~^0.275^4^0.085^~1~^~A~^^^^0.037^0.430^^^^^~02/01/2007~ -~21393~^~312~^0.101^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~315~^0.235^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~404~^0.231^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~405~^0.227^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~406~^3.940^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~410~^0.463^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~415~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~502~^0.390^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~503~^0.430^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~504~^0.770^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~505~^0.640^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~506~^0.210^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~508~^0.440^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~509~^0.220^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~510~^0.500^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~511~^0.590^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~512~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~513~^0.640^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~514~^0.740^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~515~^2.400^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~516~^0.750^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~517~^0.810^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~518~^0.420^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~606~^4.240^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21393~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~612~^0.240^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~613~^2.490^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~614~^1.320^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~615~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~617~^4.650^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~618~^3.560^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~619~^0.480^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~624~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~625~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~627~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~628~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~630~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~645~^4.780^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21393~^~646~^4.100^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~21393~^~652~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~653~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21393~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21393~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21395~^~312~^0.081^18^0.002^~1~^~A~^^^1^0.067^0.101^6^0.076^0.086^~2, 3~^~07/01/2012~ -~21395~^~315~^0.198^18^0.004^~1~^~A~^^^1^0.160^0.223^6^0.188^0.209^~2, 3~^~07/01/2012~ -~21395~^~404~^0.231^0^^~1~^~RKA~^^^^^^^^^^~03/01/2011~ -~21395~^~405~^0.204^0^^~1~^~RKA~^^^^^^^^^^~03/01/2011~ -~21395~^~406~^3.462^0^^~1~^~RKA~^^^^^^^^^^~03/01/2011~ -~21395~^~415~^0.214^0^^~1~^~RKA~^^^^^^^^^^~03/01/2011~ -~21395~^~605~^0.721^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~606~^6.960^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~607~^0.082^9^0.002^~1~^~A~^^^1^0.039^0.096^4^0.076^0.088^~2, 3~^~07/01/2012~ -~21395~^~608~^0.070^9^0.002^~1~^~A~^^^1^0.030^0.082^5^0.066^0.074^~2, 3~^~07/01/2012~ -~21395~^~609~^0.049^9^0.001^~1~^~A~^^^1^0.022^0.059^4^0.046^0.053^~2, 3~^~07/01/2012~ -~21395~^~610~^0.121^9^0.002^~1~^~A~^^^1^0.062^0.141^4^0.115^0.127^~2, 3~^~07/01/2012~ -~21395~^~611~^0.138^9^0.003^~1~^~A~^^^1^0.068^0.163^4^0.130^0.147^~2, 3~^~07/01/2012~ -~21395~^~612~^0.714^9^0.006^~1~^~A~^^^1^0.551^0.757^5^0.699^0.729^~2, 3~^~07/01/2012~ -~21395~^~613~^3.556^9^0.034^~1~^~A~^^^1^3.469^3.856^4^3.459^3.652^~2, 3~^~07/01/2012~ -~21395~^~614~^1.940^9^0.024^~1~^~A~^^^1^1.868^2.165^6^1.881^1.999^~2, 3~^~07/01/2012~ -~21395~^~615~^0.023^9^0.000^~1~^~A~^^^1^0.018^0.025^2^0.021^0.024^~2, 3~^~07/01/2012~ -~21395~^~617~^5.304^9^0.058^~1~^~AS~^^^1^4.981^7.053^3^5.106^5.502^~2, 3~^~07/01/2012~ -~21395~^~618~^1.115^9^0.009^~1~^~AS~^^^1^0.999^1.157^5^1.092^1.139^~2, 3~^~07/01/2012~ -~21395~^~619~^0.116^9^0.002^~1~^~AS~^^^1^0.091^0.125^5^0.112^0.120^~2, 3~^~07/01/2012~ -~21395~^~620~^0.031^9^0.001^~1~^~A~^^^1^0.026^0.037^3^0.029^0.034^~2, 3~^~07/01/2012~ -~21395~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~21395~^~624~^0.010^9^0.000^~1~^~A~^^^1^0.008^0.011^3^0.009^0.011^~2, 3~^~07/01/2012~ -~21395~^~625~^0.129^9^0.002^~1~^~A~^^^1^0.122^0.141^2^0.122^0.135^~2, 3~^~07/01/2012~ -~21395~^~626~^0.410^9^0.009^~1~^~AS~^^^1^0.366^0.509^3^0.378^0.443^~2, 3~^~07/01/2012~ -~21395~^~627~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^3^0.000^0.002^~1, 2, 3~^~07/01/2012~ -~21395~^~628~^0.050^9^0.001^~1~^~A~^^^1^0.045^0.069^5^0.048^0.052^~2, 3~^~07/01/2012~ -~21395~^~629~^0.005^9^0.000^~1~^~A~^^^1^0.002^0.007^3^0.004^0.005^~1, 2, 3~^~04/01/2015~ -~21395~^~630~^0.009^9^0.001^~1~^~AS~^^^1^0.003^0.028^3^0.006^0.013^~2, 3~^~07/01/2012~ -~21395~^~631~^0.011^9^0.000^~1~^~A~^^^1^0.009^0.015^3^0.010^0.013^~2, 3~^~07/01/2012~ -~21395~^~645~^6.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~646~^1.314^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~652~^0.095^9^0.001^~1~^~A~^^^1^0.079^0.099^4^0.091^0.099^~2, 3~^~07/01/2012~ -~21395~^~653~^0.153^9^0.005^~1~^~A~^^^1^0.131^0.213^3^0.137^0.169^~2, 3~^~07/01/2012~ -~21395~^~654~^0.006^9^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.007^~2, 3~^~07/01/2012~ -~21395~^~662~^0.051^9^0.000^~1~^~A~^^^1^0.048^0.055^4^0.049^0.052^~2, 3~^~07/01/2012~ -~21395~^~663~^0.569^9^0.033^~1~^~A~^^^1^0.433^0.881^3^0.457^0.681^~2, 3~^~07/01/2012~ -~21395~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21395~^~665~^0.101^9^0.002^~1~^~A~^^^1^0.088^0.116^4^0.096^0.107^~2, 3~^~07/01/2012~ -~21395~^~670~^0.083^9^0.001^~1~^~A~^^^1^0.077^0.102^5^0.079^0.087^~2, 3~^~07/01/2012~ -~21395~^~671~^0.003^9^0.002^~1~^~A~^^^1^0.000^0.008^2^-0.003^0.009^~1, 2, 3~^~07/01/2012~ -~21395~^~672~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.007^4^0.004^0.006^~2, 3~^~07/01/2012~ -~21395~^~673~^0.360^9^0.009^~1~^~A~^^^1^0.316^0.458^3^0.327^0.393^~2, 3~^~07/01/2012~ -~21395~^~674~^4.735^9^0.063^~1~^~A~^^^1^4.406^6.257^4^4.556^4.915^~2, 3~^~07/01/2012~ -~21395~^~675~^0.931^9^0.007^~1~^~A~^^^1^0.808^0.976^5^0.913^0.949^~2, 3~^~07/01/2012~ -~21395~^~676~^0.009^9^0.001^~1~^~A~^^^1^0.003^0.028^3^0.006^0.013^~2, 3~^~07/01/2012~ -~21395~^~685~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.002^0.009^~1, 2, 3~^~07/01/2012~ -~21395~^~687~^0.096^9^0.004^~1~^~A~^^^1^0.076^0.157^3^0.084^0.108^~2, 3~^~07/01/2012~ -~21395~^~689~^0.021^9^0.000^~1~^~AS~^^^1^0.019^0.022^3^0.020^0.021^~2, 3~^~07/01/2012~ -~21395~^~693~^0.620^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21395~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~21395~^~851~^0.112^9^0.002^~1~^~A~^^^1^0.087^0.124^3^0.105^0.119^~2, 3~^~07/01/2012~ -~21395~^~852~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.003^3^0.002^0.003^~1, 2, 3~^~07/01/2012~ -~21395~^~853~^0.018^9^0.000^~1~^~A~^^^1^0.016^0.021^2^0.017^0.020^~2, 3~^~07/01/2012~ -~21395~^~858~^0.007^9^0.000^~1~^~A~^^^1^0.006^0.010^2^0.005^0.009^~2, 3~^~07/01/2012~ -~21396~^~312~^0.091^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~315~^0.133^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~404~^0.127^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~405~^0.303^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~406~^4.213^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~605~^1.005^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~606~^6.473^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~645~^5.855^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21396~^~646~^0.480^0^^~6~^~RKI~^^^^^^^^^^~02/01/2006~ -~21397~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.075^0.092^5^0.075^0.087^~2, 3~^~08/01/2012~ -~21397~^~315~^0.186^6^0.005^~1~^~A~^^^1^0.172^0.200^5^0.172^0.199^~2, 3~^~08/01/2012~ -~21397~^~404~^0.177^3^0.012^~1~^~A~^^^1^0.160^0.200^2^0.125^0.228^~2, 3~^~08/01/2012~ -~21397~^~405~^0.257^3^0.009^~1~^~A~^^^1^0.240^0.270^2^0.219^0.295^~2, 3~^~08/01/2012~ -~21397~^~406~^3.143^3^0.154^~1~^~A~^^^1^2.850^3.370^2^2.482^3.805^~2, 3~^~08/01/2012~ -~21397~^~410~^0.755^2^^~1~^~A~^^^1^0.510^1.000^1^^^^~08/01/2012~ -~21397~^~415~^0.186^3^0.003^~1~^~A~^^^1^0.181^0.192^2^0.172^0.200^~2, 3~^~08/01/2012~ -~21397~^~605~^0.628^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~606~^5.746^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~607~^0.077^3^0.007^~1~^~A~^^^1^0.064^0.089^2^0.046^0.109^~2, 3~^~08/01/2012~ -~21397~^~608~^0.060^3^0.005^~1~^~A~^^^1^0.050^0.068^2^0.037^0.082^~2, 3~^~08/01/2012~ -~21397~^~609~^0.043^3^0.004^~1~^~A~^^^1^0.036^0.048^2^0.027^0.058^~2, 3~^~02/01/2006~ -~21397~^~610~^0.100^3^0.007^~1~^~A~^^^1^0.086^0.110^2^0.069^0.132^~2, 3~^~08/01/2012~ -~21397~^~611~^0.112^3^0.008^~1~^~A~^^^1^0.097^0.122^2^0.079^0.144^~2, 3~^~08/01/2012~ -~21397~^~612~^0.565^3^0.022^~1~^~A~^^^1^0.530^0.605^2^0.472^0.659^~2, 3~^~08/01/2012~ -~21397~^~613~^3.017^3^0.047^~1~^~A~^^^1^2.949^3.108^2^2.813^3.221^~2, 3~^~08/01/2012~ -~21397~^~614~^1.527^3^0.041^~1~^~A~^^^1^1.448^1.585^2^1.351^1.704^~2, 3~^~08/01/2012~ -~21397~^~615~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~08/01/2012~ -~21397~^~617~^4.776^3^0.151^~1~^~AS~^^^1^4.473^4.930^2^4.124^5.427^~2, 3~^~08/01/2012~ -~21397~^~618~^2.045^3^0.186^~1~^~AS~^^^1^1.677^2.269^2^1.247^2.844^~2, 3~^~08/01/2012~ -~21397~^~619~^0.252^3^0.024^~1~^~AS~^^^1^0.203^0.276^2^0.147^0.356^~2, 3~^~08/01/2012~ -~21397~^~620~^0.029^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.033^~2, 3~^~08/01/2012~ -~21397~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~21397~^~624~^0.015^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.020^~2, 3~^~08/01/2012~ -~21397~^~625~^0.101^3^0.003^~1~^~A~^^^1^0.098^0.108^2^0.087^0.116^~2, 3~^~08/01/2012~ -~21397~^~626~^0.335^3^0.005^~1~^~AS~^^^1^0.327^0.343^2^0.315^0.354^~2, 3~^~08/01/2012~ -~21397~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~628~^0.049^3^0.003^~1~^~A~^^^1^0.045^0.055^2^0.036^0.062^~2, 3~^~08/01/2012~ -~21397~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~21397~^~630~^0.007^3^0.003^~1~^~AS~^^^1^0.001^0.013^2^-0.008^0.022^~2, 3~^~08/01/2012~ -~21397~^~631~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~08/01/2012~ -~21397~^~645~^5.352^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~646~^2.366^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~652~^0.075^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.089^~2, 3~^~08/01/2012~ -~21397~^~653~^0.122^3^0.008^~1~^~A~^^^1^0.107^0.132^2^0.089^0.155^~2, 3~^~08/01/2012~ -~21397~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~08/01/2012~ -~21397~^~662~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.041^2^0.035^0.043^~2, 3~^~08/01/2012~ -~21397~^~663~^0.512^3^0.043^~1~^~A~^^^1^0.444^0.593^2^0.325^0.699^~2, 3~^~08/01/2012~ -~21397~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21397~^~665~^0.077^3^0.005^~1~^~A~^^^1^0.069^0.087^2^0.054^0.100^~2, 3~^~08/01/2012~ -~21397~^~670~^0.067^3^0.005^~1~^~A~^^^1^0.059^0.075^2^0.047^0.087^~2, 3~^~08/01/2012~ -~21397~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~08/01/2012~ -~21397~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~21397~^~673~^0.295^3^0.005^~1~^~A~^^^1^0.286^0.305^2^0.272^0.319^~2, 3~^~08/01/2012~ -~21397~^~674~^4.264^3^0.121^~1~^~A~^^^1^4.029^4.431^2^3.744^4.784^~2, 3~^~08/01/2012~ -~21397~^~675~^1.901^3^0.185^~1~^~A~^^^1^1.533^2.115^2^1.105^2.697^~2, 3~^~08/01/2012~ -~21397~^~676~^0.007^3^0.003^~1~^~A~^^^1^0.001^0.013^2^-0.008^0.022^~1, 2, 3~^~08/01/2012~ -~21397~^~685~^0.012^3^0.003^~1~^~A~^^^1^0.009^0.017^2^0.001^0.023^~2, 3~^~08/01/2012~ -~21397~^~687~^0.083^3^0.006^~1~^~A~^^^1^0.072^0.092^2^0.058^0.108^~2, 3~^~08/01/2012~ -~21397~^~689~^0.018^3^0.001^~1~^~AS~^^^1^0.017^0.019^2^0.015^0.020^~2, 3~^~08/01/2012~ -~21397~^~693~^0.551^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~695~^0.077^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21397~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~21397~^~851~^0.240^3^0.023^~1~^~A~^^^1^0.194^0.266^2^0.141^0.338^~2, 3~^~08/01/2012~ -~21397~^~852~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~08/01/2012~ -~21397~^~853~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~08/01/2012~ -~21397~^~858~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~08/01/2012~ -~21398~^~312~^0.075^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2006~ -~21398~^~315~^0.163^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~404~^0.119^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~405~^0.260^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~406~^4.050^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~410~^0.590^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~415~^0.093^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21398~^~606~^7.033^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~607~^0.194^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~608~^0.066^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~ -~21398~^~609~^0.049^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~610~^0.108^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~611~^0.127^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~612~^0.725^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~613~^3.627^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~614~^1.892^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~615~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~617~^5.342^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~618~^1.009^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~619~^0.127^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~620~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~625~^0.108^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~626~^0.461^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~627~^0.078^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~628~^0.049^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~645~^5.959^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~646~^1.264^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~21398~^~652~^0.088^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~653~^0.137^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21398~^~689~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2009~ -~21398~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~21399~^~312~^0.076^2^^~1~^~A~^^^2^0.075^0.078^^^^~1~^~02/01/2006~ -~21399~^~315~^0.137^2^^~1~^~A~^^^2^0.133^0.140^^^^^~02/01/2006~ -~21399~^~404~^0.254^2^^~1~^~A~^^^2^0.242^0.267^^^^^~02/01/2006~ -~21399~^~405~^0.230^2^^~1~^~A~^^^2^0.210^0.251^^^^^~02/01/2006~ -~21399~^~406~^3.260^2^^~1~^~A~^^^2^3.000^3.520^^^^^~02/01/2006~ -~21399~^~410~^0.279^2^^~1~^~A~^^^2^0.200^0.359^^^^^~02/01/2006~ -~21399~^~415~^0.150^2^^~1~^~A~^^^2^0.112^0.189^^^^^~02/01/2006~ -~21399~^~605~^0.620^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~21399~^~606~^6.519^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~607~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~608~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~609~^0.010^2^^~1~^~A~^^^2^0.000^0.020^^^^~1~^~02/01/2006~ -~21399~^~610~^0.073^2^^~1~^~A~^^^2^0.050^0.095^^^^^~02/01/2006~ -~21399~^~611~^0.078^2^^~1~^~A~^^^2^0.060^0.096^^^^^~02/01/2006~ -~21399~^~612~^0.557^2^^~1~^~A~^^^2^0.500^0.614^^^^^~02/01/2006~ -~21399~^~613~^3.530^2^^~1~^~A~^^^2^3.240^3.820^^^^^~02/01/2006~ -~21399~^~614~^1.863^2^^~1~^~A~^^^2^1.750^1.976^^^^^~02/01/2006~ -~21399~^~615~^0.010^2^^~1~^~A~^^^2^0.000^0.020^^^^~1~^~02/01/2006~ -~21399~^~617~^5.551^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~21399~^~618~^1.817^2^^~1~^~A~^^^2^1.040^2.595^^^^^~02/01/2006~ -~21399~^~619~^0.392^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~21399~^~620~^0.015^2^^~1~^~A~^^^2^0.000^0.030^^^^~1~^~02/01/2006~ -~21399~^~621~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~624~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~625~^0.128^2^^~1~^~A~^^^2^0.110^0.145^^^^^~02/01/2006~ -~21399~^~626~^0.489^2^^~1~^~A~^^^2^0.487^0.490^^^^^~02/01/2006~ -~21399~^~627~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~628~^0.025^2^^~1~^~A~^^^2^0.000^0.050^^^^~1~^~02/01/2006~ -~21399~^~629~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~630~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~645~^6.249^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~646~^2.299^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21399~^~652~^0.076^2^^~1~^~A~^^^2^0.070^0.081^^^^^~02/01/2006~ -~21399~^~653~^0.161^2^^~1~^~A~^^^2^0.160^0.163^^^^^~02/01/2006~ -~21399~^~654~^0.010^2^^~1~^~A~^^^2^0.000^0.020^^^^~1~^~02/01/2006~ -~21399~^~663~^0.620^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~672~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~674~^4.931^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21399~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~687~^0.057^2^^~1~^~A~^^^2^0.000^0.114^^^^~1~^~02/01/2006~ -~21399~^~689~^0.005^2^^~1~^~A~^^^2^0.000^0.010^^^^~1~^~02/01/2006~ -~21399~^~696~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2007~ -~21399~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^^^^~1~^~04/01/2007~ -~21399~^~851~^0.392^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~312~^0.131^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~315~^0.212^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~404~^0.184^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~406~^3.630^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~410~^0.441^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~415~^0.170^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~502~^0.390^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~503~^0.440^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~504~^0.810^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~505~^0.670^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~506~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~508~^0.450^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~509~^0.240^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~510~^0.520^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~511~^0.580^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~512~^0.290^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~513~^0.610^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~514~^0.740^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~515~^2.350^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~516~^0.700^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~517~^0.860^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~518~^0.440^0^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~21400~^~606~^5.045^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~607~^0.086^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~608~^0.029^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~ -~21400~^~609~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~610~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~611~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~612~^0.404^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~613~^2.781^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~614~^1.430^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~615~^0.029^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~617~^4.664^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~618~^3.303^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~619~^0.454^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~625~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~626~^0.286^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~627~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~628~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~630~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~645~^5.088^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~646~^3.826^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21400~^~652~^0.049^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~653~^0.089^1^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~21400~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21400~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2009~ -~21401~^~312~^0.069^10^0.003^~1~^~A~^^^1^0.055^0.086^8^0.063^0.075^~2, 3~^~05/01/2014~ -~21401~^~315~^0.228^10^0.005^~1~^~A~^^^1^0.108^0.307^7^0.215^0.240^~2, 3~^~05/01/2014~ -~21401~^~404~^0.110^6^0.001^~1~^~A~^^^1^0.090^0.160^2^0.106^0.115^~2, 3~^~05/01/2014~ -~21401~^~405~^0.179^6^0.003^~1~^~A~^^^1^0.130^0.280^4^0.171^0.188^~2, 3~^~05/01/2014~ -~21401~^~406~^8.217^6^0.257^~1~^~A~^^^1^7.290^9.270^2^7.279^9.155^~2, 3~^~05/01/2014~ -~21401~^~410~^1.244^4^0.048^~1~^~A~^^^1^1.100^1.700^1^0.634^1.854^~2, 3~^~05/01/2014~ -~21401~^~415~^0.426^6^0.009^~1~^~A~^^^1^0.381^0.507^4^0.399^0.452^~2, 3~^~05/01/2014~ -~21401~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~502~^0.803^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~503~^0.845^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~504~^1.553^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~505~^1.616^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~506~^0.518^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~508~^1.437^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~509~^0.539^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~510~^0.908^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~511~^1.215^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~512~^0.655^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~513~^1.014^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~514~^1.616^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~515~^3.190^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~516~^0.845^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~517~^1.595^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~518~^0.792^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~521~^0.040^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~21401~^~605~^0.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~606~^2.493^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~21401~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~21401~^~609~^0.004^6^0.000^~1~^~A~^^^1^0.001^0.005^3^0.003^0.004^~1, 2, 3~^~05/01/2014~ -~21401~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~611~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~21401~^~612~^0.026^6^0.004^~1~^~A~^^^1^0.009^0.044^2^0.011^0.041^~2, 3~^~05/01/2014~ -~21401~^~613~^1.771^6^0.088^~1~^~A~^^^1^1.062^2.337^2^1.398^2.143^~2, 3~^~05/01/2014~ -~21401~^~614~^0.414^6^0.022^~1~^~A~^^^1^0.321^0.513^2^0.319^0.509^~2, 3~^~05/01/2014~ -~21401~^~615~^0.076^6^0.002^~1~^~A~^^^1^0.049^0.128^3^0.069^0.084^~2, 3~^~05/01/2014~ -~21401~^~617~^4.656^6^0.198^~1~^~AS~^^^1^3.534^6.109^2^3.928^5.385^~2, 3~^~05/01/2014~ -~21401~^~618~^5.485^6^0.192^~1~^~AS~^^^1^2.198^7.530^2^4.682^6.289^~2, 3~^~05/01/2014~ -~21401~^~619~^0.226^6^0.025^~1~^~AS~^^^1^0.031^0.380^2^0.120^0.331^~2, 3~^~05/01/2014~ -~21401~^~620~^0.040^6^0.002^~1~^~A~^^^1^0.036^0.045^3^0.034^0.046^~2, 3~^~05/01/2014~ -~21401~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~21401~^~624~^0.115^6^0.004^~1~^~A~^^^1^0.024^0.317^3^0.103^0.127^~2, 3~^~05/01/2014~ -~21401~^~625~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~21401~^~626~^0.049^6^0.002^~1~^~AS~^^^1^0.040^0.053^3^0.044^0.054^~2, 3~^~05/01/2014~ -~21401~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~628~^0.106^6^0.006^~1~^~A~^^^1^0.053^0.199^3^0.085^0.127^~2, 3~^~05/01/2014~ -~21401~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~630~^0.009^6^0.000^~1~^~AS~^^^1^0.001^0.026^3^0.008^0.010^~2, 3~^~05/01/2014~ -~21401~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.004^~2, 3~^~05/01/2014~ -~21401~^~645~^4.830^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~646~^5.783^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~21401~^~653~^0.011^6^0.000^~1~^~A~^^^1^0.008^0.012^4^0.010^0.012^~2, 3~^~05/01/2014~ -~21401~^~654~^0.072^6^0.002^~1~^~A~^^^1^0.020^0.186^3^0.065^0.079^~2, 3~^~05/01/2014~ -~21401~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~663~^0.015^6^0.002^~1~^~A~^^^1^0.009^0.024^4^0.009^0.021^~2, 3~^~05/01/2014~ -~21401~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~21401~^~665~^0.037^6^0.001^~1~^~A~^^^1^0.019^0.046^4^0.035^0.039^~2, 3~^~05/01/2014~ -~21401~^~670~^0.009^6^0.000^~1~^~A~^^^1^0.003^0.012^3^0.008^0.010^~2, 3~^~05/01/2014~ -~21401~^~671~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.002^0.007^~1, 2, 3~^~05/01/2014~ -~21401~^~672~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~05/01/2014~ -~21401~^~673~^0.049^6^0.002^~1~^~A~^^^1^0.040^0.053^3^0.044^0.054^~2, 3~^~05/01/2014~ -~21401~^~674~^4.641^6^0.196^~1~^~A~^^^1^3.523^6.100^2^3.918^5.365^~2, 3~^~05/01/2014~ -~21401~^~675~^5.439^6^0.191^~1~^~A~^^^1^2.175^7.473^2^4.637^6.241^~2, 3~^~05/01/2014~ -~21401~^~676~^0.009^6^0.000^~1~^~A~^^^1^0.001^0.026^3^0.008^0.010^~1, 2, 3~^~05/01/2014~ -~21401~^~685~^0.015^6^0.002^~1~^~A~^^^1^0.001^0.026^2^0.006^0.023^~1, 2, 3~^~05/01/2014~ -~21401~^~687~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^3^0.006^0.007^~2, 3~^~05/01/2014~ -~21401~^~689~^0.008^6^0.000^~1~^~AS~^^^1^0.006^0.012^3^0.007^0.009^~2, 3~^~05/01/2014~ -~21401~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~21401~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~21401~^~851~^0.211^6^0.023^~1~^~A~^^^1^0.030^0.354^2^0.114^0.308^~2, 3~^~05/01/2014~ -~21401~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~853~^0.008^6^0.000^~1~^~A~^^^1^0.006^0.012^3^0.007^0.009^~2, 3~^~05/01/2014~ -~21401~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~21401~^~858~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^3^0.009^0.012^~2, 3~^~05/01/2014~ -~21410~^~312~^0.327^3^0.080^~1~^~A~^^^1^0.234^0.487^2^-0.019^0.673^~2, 3~^~09/01/2005~ -~21410~^~315~^0.179^3^0.014^~1~^~A~^^^1^0.151^0.197^2^0.118^0.239^~2, 3~^~09/01/2005~ -~21410~^~404~^0.305^3^0.010^~1~^~A~^^^1^0.286^0.322^2^0.260^0.350^~2, 3~^~09/01/2005~ -~21410~^~405~^0.218^3^0.027^~1~^~A~^^^1^0.166^0.256^2^0.102^0.333^~2, 3~^~09/01/2005~ -~21410~^~406~^2.877^3^0.084^~1~^~A~^^^1^2.710^2.970^2^2.517^3.236^~2, 3~^~09/01/2005~ -~21410~^~410~^0.896^3^0.039^~1~^~A~^^^1^0.835^0.969^2^0.727^1.064^~2, 3~^~09/01/2005~ -~21410~^~415~^0.091^3^0.006^~1~^~A~^^^1^0.079^0.098^2^0.065^0.118^~2, 3~^~09/01/2005~ -~21410~^~606~^6.396^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~607~^0.000^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~608~^0.000^0^^~4~^~BFPN~^~21005~^^^^^^^^^~03/01/2007~ -~21410~^~609~^0.077^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.062^0.091^~2, 3~^~09/01/2005~ -~21410~^~610~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.117^~2, 3~^~09/01/2005~ -~21410~^~611~^0.113^3^0.003^~1~^~A~^^^1^0.110^0.120^2^0.099^0.128^~2, 3~^~09/01/2005~ -~21410~^~612~^0.503^3^0.023^~1~^~A~^^^1^0.480^0.550^2^0.403^0.604^~2, 3~^~09/01/2005~ -~21410~^~613~^3.757^3^0.192^~1~^~A~^^^1^3.490^4.130^2^2.929^4.584^~2, 3~^~09/01/2005~ -~21410~^~614~^1.690^3^0.092^~1~^~A~^^^1^1.570^1.870^2^1.296^2.084^~2, 3~^~09/01/2005~ -~21410~^~615~^0.047^3^0.013^~1~^~A~^^^1^0.020^0.060^2^-0.011^0.104^~2, 3~^~09/01/2005~ -~21410~^~617~^5.550^3^0.313^~1~^~A~^^^1^5.120^6.160^2^4.201^6.898^~2, 3~^~09/01/2005~ -~21410~^~618~^2.113^3^0.119^~1~^~A~^^^1^1.880^2.270^2^1.602^2.625^~2, 3~^~09/01/2005~ -~21410~^~619~^0.150^3^0.012^~1~^~A~^^^1^0.130^0.170^2^0.100^0.200^~2, 3~^~09/01/2005~ -~21410~^~620~^0.070^3^0.000^~1~^~A~^^^1^0.070^0.070^^^^~2, 3~^~09/01/2005~ -~21410~^~621~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~2, 3~^~09/01/2005~ -~21410~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~625~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^^^^~2, 3~^~09/01/2005~ -~21410~^~626~^0.340^3^0.021^~1~^~A~^^^1^0.310^0.380^2^0.251^0.429^~2, 3~^~09/01/2005~ -~21410~^~627~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~09/01/2005~ -~21410~^~628~^0.077^3^0.009^~1~^~A~^^^1^0.060^0.090^2^0.039^0.115^~2, 3~^~09/01/2005~ -~21410~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~631~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~09/01/2005~ -~21410~^~645~^6.026^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~646~^2.603^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21410~^~652~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~09/01/2005~ -~21410~^~653~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~09/01/2005~ -~21410~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~672~^0.150^3^0.055^~1~^~A~^^^1^0.040^0.210^2^-0.087^0.387^~2, 3~^~09/01/2005~ -~21410~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21410~^~689~^0.030^3^0.006^~1~^~A~^^^1^0.020^0.040^2^0.005^0.055^~2, 3~^~09/01/2005~ -~21410~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~312~^0.337^4^0.038^~1~^~A~^^^1^0.240^0.400^3^0.217^0.457^~2, 3~^~09/01/2005~ -~21411~^~315~^0.188^4^0.011^~1~^~A~^^^1^0.170^0.220^3^0.152^0.225^~2, 3~^~09/01/2005~ -~21411~^~404~^0.236^4^0.010^~1~^~A~^^^1^0.212^0.260^3^0.204^0.268^~2, 3~^~09/01/2005~ -~21411~^~405~^0.255^4^0.025^~1~^~A~^^^1^0.196^0.297^3^0.177^0.334^~2, 3~^~09/01/2005~ -~21411~^~406~^3.355^4^0.118^~1~^~A~^^^1^3.020^3.570^3^2.980^3.730^~2, 3~^~09/01/2005~ -~21411~^~410~^0.765^4^0.014^~1~^~A~^^^1^0.740^0.791^3^0.720^0.811^~2, 3~^~09/01/2005~ -~21411~^~415~^0.132^4^0.010^~1~^~A~^^^1^0.102^0.144^3^0.100^0.164^~2, 3~^~09/01/2005~ -~21411~^~606~^5.419^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~607~^0.018^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~608~^0.011^0^^~4~^~BFPN~^~21003~^^^^^^^^^~03/01/2007~ -~21411~^~609~^0.070^4^0.007^~1~^~A~^^^1^0.050^0.080^3^0.048^0.092^~2, 3~^~09/01/2005~ -~21411~^~610~^0.082^4^0.009^~1~^~A~^^^1^0.060^0.100^3^0.055^0.110^~2, 3~^~09/01/2005~ -~21411~^~611~^0.092^4^0.009^~1~^~A~^^^1^0.070^0.110^3^0.065^0.120^~2, 3~^~09/01/2005~ -~21411~^~612~^0.512^4^0.024^~1~^~A~^^^1^0.480^0.580^3^0.437^0.587^~2, 3~^~09/01/2005~ -~21411~^~613~^3.062^4^0.090^~1~^~A~^^^1^2.860^3.280^3^2.777^3.348^~2, 3~^~09/01/2005~ -~21411~^~614~^1.382^4^0.033^~1~^~A~^^^1^1.310^1.460^3^1.277^1.488^~2, 3~^~09/01/2005~ -~21411~^~615~^0.030^4^0.007^~1~^~A~^^^1^0.010^0.040^3^0.007^0.052^~2, 3~^~09/01/2005~ -~21411~^~617~^4.480^4^0.187^~1~^~A~^^^1^4.000^4.900^3^3.886^5.074^~2, 3~^~09/01/2005~ -~21411~^~618~^1.500^4^0.141^~1~^~A~^^^1^1.130^1.790^3^1.053^1.947^~2, 3~^~09/01/2005~ -~21411~^~619~^0.145^4^0.016^~1~^~A~^^^1^0.100^0.170^3^0.096^0.194^~2, 3~^~09/01/2005~ -~21411~^~620~^0.057^4^0.002^~1~^~A~^^^1^0.050^0.060^3^0.050^0.065^~2, 3~^~09/01/2005~ -~21411~^~621~^0.022^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.014^0.030^~2, 3~^~09/01/2005~ -~21411~^~624~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~09/01/2005~ -~21411~^~625~^0.152^4^0.013^~1~^~A~^^^1^0.130^0.180^3^0.111^0.194^~2, 3~^~09/01/2005~ -~21411~^~626~^0.332^4^0.026^~1~^~A~^^^1^0.280^0.390^3^0.251^0.414^~2, 3~^~09/01/2005~ -~21411~^~627~^0.045^4^0.015^~1~^~A~^^^1^0.000^0.060^3^-0.003^0.093^~1, 2, 3~^~09/01/2005~ -~21411~^~628~^0.032^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.024^0.040^~2, 3~^~09/01/2005~ -~21411~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~631~^0.025^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.009^0.041^~2, 3~^~09/01/2005~ -~21411~^~645~^4.997^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~646~^1.849^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21411~^~652~^0.062^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.054^0.070^~2, 3~^~09/01/2005~ -~21411~^~653~^0.092^4^0.006^~1~^~A~^^^1^0.080^0.110^3^0.072^0.112^~2, 3~^~09/01/2005~ -~21411~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~672~^0.030^4^0.007^~1~^~A~^^^1^0.010^0.040^3^0.007^0.052^~2, 3~^~09/01/2005~ -~21411~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21411~^~689~^0.025^4^0.005^~1~^~A~^^^1^0.010^0.030^3^0.009^0.041^~2, 3~^~09/01/2005~ -~21411~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21412~^~312~^0.044^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~315~^0.046^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~404~^0.051^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~405~^0.243^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~406~^0.139^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~410~^0.730^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~415~^0.053^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~606~^3.633^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21412~^~607~^0.156^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~608~^0.076^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21412~^~609~^0.040^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~610~^0.094^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~611~^0.109^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~612~^0.392^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~613~^1.577^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~614~^1.095^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~615~^0.022^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~617~^1.586^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~618~^0.254^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~619~^0.023^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~624~^0.003^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~625~^0.028^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~626~^0.049^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~628~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21412~^~645~^1.670^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21412~^~646~^0.282^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21412~^~652~^0.041^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~653~^0.028^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21412~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~312~^0.030^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~315~^0.042^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~404~^0.048^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~405~^0.229^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~406~^0.264^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~410~^0.722^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~415~^0.058^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~606~^2.754^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21413~^~607~^0.114^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~608~^0.063^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~ -~21413~^~609~^0.038^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~610~^0.087^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~611~^0.102^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~612~^0.367^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~613~^1.254^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~614~^0.653^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~615~^0.010^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~617~^1.639^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~618~^0.339^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~619~^0.020^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~620~^0.005^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~624~^0.003^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~625~^0.025^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~626~^0.042^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~628~^0.002^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~ -~21413~^~645~^1.716^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21413~^~646~^0.364^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21413~^~652~^0.038^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~653~^0.025^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~672~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~687~^0.008^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~689~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21413~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~ -~21415~^~312~^0.066^6^0.001^~1~^~A~^^^1^0.065^0.069^5^0.065^0.068^~2, 3~^~04/01/2014~ -~21415~^~315~^0.300^6^0.004^~1~^~A~^^^1^0.287^0.311^5^0.291^0.310^~2, 3~^~04/01/2014~ -~21415~^~404~^0.460^3^0.020^~1~^~A~^^^1^0.420^0.480^2^0.374^0.546^~2, 3~^~04/01/2014~ -~21415~^~405~^0.277^3^0.013^~1~^~A~^^^1^0.250^0.290^2^0.219^0.334^~2, 3~^~04/01/2014~ -~21415~^~406~^3.240^3^0.145^~1~^~A~^^^1^2.950^3.390^2^2.616^3.864^~2, 3~^~04/01/2014~ -~21415~^~410~^0.455^2^^~1~^~A~^^^1^0.450^0.460^1^^^^~04/01/2014~ -~21415~^~415~^0.047^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.032^0.061^~2, 3~^~04/01/2014~ -~21415~^~501~^0.073^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~502~^0.178^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~503~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~504~^0.439^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~505~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~506~^0.105^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~507~^0.125^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~508~^0.293^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~509~^0.157^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~510~^0.272^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~511~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~512~^0.125^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~513~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~514~^0.314^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~515~^1.915^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~516~^0.188^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~517~^0.649^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~518~^0.283^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21415~^~605~^0.073^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~606~^11.515^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~607~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.014^^^^~2, 3~^~04/01/2014~ -~21415~^~608~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2014~ -~21415~^~609~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2014~ -~21415~^~610~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~04/01/2009~ -~21415~^~611~^0.064^3^0.002^~1~^~A~^^^1^0.060^0.068^2^0.054^0.074^~2, 3~^~04/01/2014~ -~21415~^~612~^0.235^3^0.004^~1~^~A~^^^1^0.227^0.239^2^0.218^0.251^~2, 3~^~04/01/2014~ -~21415~^~613~^9.706^3^0.113^~1~^~A~^^^1^9.493^9.878^2^9.220^10.193^~2, 3~^~04/01/2014~ -~21415~^~614~^1.298^3^0.071^~1~^~A~^^^1^1.213^1.439^2^0.992^1.603^~2, 3~^~04/01/2014~ -~21415~^~615~^0.077^3^0.003^~1~^~A~^^^1^0.074^0.082^2^0.066^0.088^~2, 3~^~04/01/2014~ -~21415~^~617~^5.621^3^0.155^~1~^~AS~^^^1^5.428^5.927^2^4.955^6.287^~2, 3~^~04/01/2014~ -~21415~^~618~^3.957^3^0.495^~1~^~AS~^^^1^3.269^4.918^2^1.826^6.088^~2, 3~^~04/01/2014~ -~21415~^~619~^0.416^3^0.070^~1~^~AS~^^^1^0.320^0.551^2^0.116^0.715^~2, 3~^~04/01/2014~ -~21415~^~620~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2014~ -~21415~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~624~^0.030^3^0.003^~1~^~A~^^^1^0.025^0.036^2^0.016^0.044^~2, 3~^~04/01/2014~ -~21415~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~21415~^~626~^0.025^3^0.001^~1~^~AS~^^^1^0.024^0.026^2^0.023^0.027^~2, 3~^~04/01/2014~ -~21415~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~628~^0.033^3^0.002^~1~^~A~^^^1^0.031^0.037^2^0.024^0.042^~2, 3~^~04/01/2014~ -~21415~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~21415~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~645~^5.686^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~646~^4.379^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~652~^0.016^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~04/01/2014~ -~21415~^~653~^0.026^3^0.001^~1~^~A~^^^1^0.025^0.027^2^0.023^0.029^~2, 3~^~04/01/2014~ -~21415~^~654~^0.019^3^0.001^~1~^~A~^^^1^0.017^0.021^2^0.014^0.024^~2, 3~^~04/01/2014~ -~21415~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~663~^0.043^3^0.007^~1~^~A~^^^1^0.033^0.057^2^0.012^0.074^~2, 3~^~04/01/2014~ -~21415~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~665~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.031^2^0.027^0.032^~2, 3~^~04/01/2014~ -~21415~^~670~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~04/01/2014~ -~21415~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~21415~^~673~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.023^0.027^~2, 3~^~04/01/2014~ -~21415~^~674~^5.578^3^0.148^~1~^~A~^^^1^5.389^5.870^2^4.941^6.215^~2, 3~^~04/01/2014~ -~21415~^~675~^3.916^3^0.494^~1~^~A~^^^1^3.229^4.875^2^1.789^6.043^~2, 3~^~04/01/2014~ -~21415~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~685~^0.015^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.020^~2, 3~^~04/01/2014~ -~21415~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2014~ -~21415~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2014~ -~21415~^~693~^0.043^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21415~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~851~^0.401^3^0.069^~1~^~A~^^^1^0.308^0.535^2^0.105^0.696^~2, 3~^~04/01/2014~ -~21415~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~21415~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21415~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21415~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21416~^~312~^0.014^4^0.002^~1~^~A~^^^1^0.010^0.017^3^0.009^0.020^~1, 2, 3~^~01/01/2007~ -~21416~^~315~^0.083^4^0.008^~1~^~A~^^^1^0.071^0.104^3^0.059^0.108^~2, 3~^~01/01/2007~ -~21416~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~01/01/2007~ -~21416~^~405~^0.025^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.005^0.044^~1, 2, 3~^~01/01/2007~ -~21416~^~406~^0.206^4^0.024^~1~^~A~^^^1^0.167^0.274^3^0.131^0.281^~2, 3~^~01/01/2007~ -~21416~^~410~^0.250^4^0.007^~1~^~A~^^^1^0.230^0.260^3^0.228^0.272^~2, 3~^~01/01/2007~ -~21416~^~415~^0.102^4^0.005^~1~^~A~^^^1^0.091^0.113^3^0.085^0.119^~2, 3~^~01/01/2007~ -~21416~^~501~^0.007^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~502~^0.030^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~504~^0.030^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~505~^0.030^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~506~^0.007^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~508~^0.020^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~509~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~510~^0.040^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~511~^0.050^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~512~^0.020^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~513~^0.050^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~514~^0.070^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~515~^0.110^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~516~^0.020^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~517~^0.010^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~518~^0.040^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21416~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~606~^1.887^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~607~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.003^0.006^~2, 3~^~02/01/2007~ -~21416~^~608~^0.010^4^0.005^~1~^~A~^^^1^0.002^0.025^3^-0.005^0.028^~2, 3~^~02/01/2007~ -~21416~^~609~^0.008^4^0.001^~1~^~A~^^^1^0.008^0.011^3^0.007^0.012^~2, 3~^~02/01/2007~ -~21416~^~610~^0.013^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.012^0.017^~2, 3~^~02/01/2007~ -~21416~^~611~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~2, 3~^~02/01/2007~ -~21416~^~612~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.016^~1, 2, 3~^~02/01/2007~ -~21416~^~613~^1.196^4^0.025^~1~^~A~^^^1^1.308^1.427^3^1.296^1.454^~2, 3~^~02/01/2007~ -~21416~^~614~^0.517^4^0.006^~1~^~A~^^^1^0.582^0.612^3^0.575^0.615^~2, 3~^~02/01/2007~ -~21416~^~615~^0.040^4^0.002^~1~^~A~^^^1^0.043^0.050^3^0.041^0.052^~2, 3~^~02/01/2007~ -~21416~^~617~^2.553^4^0.038^~1~^~AS~^^^1^2.828^3.006^3^2.815^3.056^~2, 3~^~02/01/2007~ -~21416~^~618~^5.745^4^0.143^~1~^~AS~^^^1^6.234^6.923^3^6.150^7.063^~2, 3~^~02/01/2007~ -~21416~^~619~^0.062^4^0.011^~1~^~AS~^^^1^0.050^0.102^3^0.035^0.107^~2, 3~^~02/01/2007~ -~21416~^~620~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.009^~2, 3~^~02/01/2007~ -~21416~^~621~^0.001^4^0.001^~1~^~A~^^^1^0.001^0.003^3^0.000^0.003^~2, 3~^~02/01/2007~ -~21416~^~624~^0.042^4^0.004^~1~^~A~^^^1^0.039^0.059^3^0.035^0.061^~2, 3~^~02/01/2007~ -~21416~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~21416~^~626~^0.027^4^0.001^~1~^~AS~^^^1^0.027^0.033^3^0.027^0.035^~2, 3~^~02/01/2007~ -~21416~^~627~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.010^3^0.003^0.011^~2, 3~^~02/01/2007~ -~21416~^~628~^0.732^4^0.012^~1~^~A~^^^1^0.809^0.867^3^0.803^0.880^~2, 3~^~02/01/2007~ -~21416~^~629~^0.011^4^0.005^~1~^~A~^^^1^0.002^0.026^3^-0.005^0.029^~2, 3~^~02/01/2007~ -~21416~^~630~^0.010^4^0.003^~1~^~AS~^^^1^0.006^0.019^3^0.002^0.021^~2, 3~^~02/01/2007~ -~21416~^~631~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~02/01/2007~ -~21416~^~645~^3.339^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~646~^5.852^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~652~^0.004^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.002^0.007^~2, 3~^~02/01/2007~ -~21416~^~653~^0.024^4^0.002^~1~^~A~^^^1^0.024^0.033^3^0.021^0.033^~2, 3~^~02/01/2007~ -~21416~^~654~^0.023^4^0.002^~1~^~A~^^^1^0.020^0.031^3^0.018^0.033^~2, 3~^~02/01/2007~ -~21416~^~662~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~02/01/2007~ -~21416~^~663~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.003^0.011^~1, 2, 3~^~02/01/2007~ -~21416~^~664~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.010^3^0.000^0.011^~2, 3~^~02/01/2007~ -~21416~^~665~^0.035^4^0.003^~1~^~A~^^^1^0.032^0.047^3^0.029^0.051^~2, 3~^~02/01/2007~ -~21416~^~670~^0.024^4^0.003^~1~^~A~^^^1^0.023^0.037^3^0.017^0.038^~2, 3~^~02/01/2007~ -~21416~^~671~^0.006^4^0.002^~1~^~A~^^^1^0.004^0.012^3^0.001^0.012^~2, 3~^~02/01/2007~ -~21416~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~02/01/2007~ -~21416~^~673~^0.026^4^0.001^~1~^~A~^^^1^0.026^0.032^3^0.026^0.034^~2, 3~^~02/01/2007~ -~21416~^~674~^2.549^4^0.039^~1~^~A~^^^1^2.821^3.006^3^2.806^3.056^~2, 3~^~02/01/2007~ -~21416~^~675~^5.686^4^0.138^~1~^~A~^^^1^6.179^6.839^3^6.101^6.977^~2, 3~^~02/01/2007~ -~21416~^~676~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.009^3^0.003^0.009^~2, 3~^~02/01/2007~ -~21416~^~685~^0.027^4^0.003^~1~^~A~^^^1^0.024^0.037^3^0.021^0.041^~2, 3~^~02/01/2007~ -~21416~^~687~^0.012^4^0.001^~1~^~A~^^^1^0.012^0.017^3^0.010^0.018^~2, 3~^~02/01/2007~ -~21416~^~689~^0.013^4^0.002^~1~^~AS~^^^1^0.008^0.019^3^0.007^0.022^~2, 3~^~02/01/2007~ -~21416~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21416~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2007~ -~21416~^~851~^0.035^4^0.009^~1~^~A~^^^1^0.026^0.065^3^0.012^0.067^~2, 3~^~02/01/2007~ -~21416~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~2, 3~^~02/01/2007~ -~21416~^~853~^0.010^4^0.002^~1~^~A~^^^1^0.006^0.017^3^0.005^0.019^~2, 3~^~02/01/2007~ -~21416~^~858~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.004^0.009^~1, 2, 3~^~02/01/2007~ -~21417~^~312~^0.062^4^0.001^~1~^~A~^^^1^0.060^0.064^3^0.059^0.065^~2, 3~^~01/01/2007~ -~21417~^~315~^0.207^4^0.006^~1~^~A~^^^1^0.191^0.220^3^0.187^0.228^~2, 3~^~01/01/2007~ -~21417~^~404~^0.120^4^0.014^~1~^~A~^^^1^0.080^0.140^3^0.075^0.165^~2, 3~^~01/01/2007~ -~21417~^~405~^0.122^4^0.009^~1~^~A~^^^1^0.110^0.150^3^0.092^0.153^~2, 3~^~01/01/2007~ -~21417~^~406~^8.317^4^0.406^~1~^~A~^^^1^7.310^9.260^3^7.025^9.609^~2, 3~^~01/01/2007~ -~21417~^~410~^1.060^4^0.040^~1~^~A~^^^1^0.940^1.100^3^0.933^1.187^~2, 3~^~01/01/2007~ -~21417~^~415~^0.486^4^0.019^~1~^~A~^^^1^0.433^0.524^3^0.425^0.548^~2, 3~^~01/01/2007~ -~21417~^~501~^0.230^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~502~^0.770^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~503~^0.820^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~504~^1.450^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~505~^1.360^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~506~^0.460^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~507~^0.260^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~508~^0.780^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~509~^0.500^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~510~^0.870^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~511~^1.100^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~512~^0.620^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~513~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~514~^1.600^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~515~^3.960^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~516~^0.790^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~517~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~518~^0.760^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21417~^~605~^0.675^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~606~^5.442^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~607~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.007^3^0.001^0.007^~2, 3~^~02/01/2007~ -~21417~^~608~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.011^3^-0.001^0.012^~2, 3~^~02/01/2007~ -~21417~^~609~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~02/01/2007~ -~21417~^~610~^0.016^4^0.004^~1~^~A~^^^1^0.009^0.026^3^0.004^0.027^~2, 3~^~02/01/2007~ -~21417~^~611~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.009^3^0.006^0.010^~2, 3~^~02/01/2007~ -~21417~^~612~^0.313^4^0.011^~1~^~A~^^^1^0.291^0.346^3^0.284^0.356^~2, 3~^~02/01/2007~ -~21417~^~613~^3.052^4^0.056^~1~^~A~^^^1^2.987^3.238^3^2.949^3.305^~2, 3~^~02/01/2007~ -~21417~^~614~^1.761^4^0.053^~1~^~A~^^^1^1.646^1.867^3^1.635^1.973^~2, 3~^~02/01/2007~ -~21417~^~615~^0.017^4^0.001^~1~^~A~^^^1^0.016^0.020^3^0.015^0.020^~2, 3~^~02/01/2007~ -~21417~^~617~^5.279^4^0.075^~1~^~AS~^^^1^5.183^5.494^3^5.168^5.648^~2, 3~^~02/01/2007~ -~21417~^~618~^1.082^4^0.020^~1~^~AS~^^^1^1.063^1.157^3^1.045^1.173^~2, 3~^~02/01/2007~ -~21417~^~619~^0.013^4^0.002^~1~^~AS~^^^1^0.009^0.017^3^0.008^0.019^~2, 3~^~02/01/2007~ -~21417~^~620~^0.050^4^0.003^~1~^~A~^^^1^0.046^0.057^3^0.042^0.060^~2, 3~^~02/01/2007~ -~21417~^~621~^0.016^4^0.014^~1~^~A~^^^1^0.001^0.060^3^-0.030^0.063^~2, 3~^~02/01/2007~ -~21417~^~624~^0.013^4^0.002^~1~^~A~^^^1^0.008^0.020^3^0.006^0.021^~2, 3~^~02/01/2007~ -~21417~^~625~^0.087^4^0.004^~1~^~A~^^^1^0.084^0.100^3^0.077^0.101^~2, 3~^~02/01/2007~ -~21417~^~626~^0.618^4^0.022^~1~^~AS~^^^1^0.573^0.680^3^0.561^0.704^~2, 3~^~02/01/2007~ -~21417~^~627~^0.018^4^0.004^~1~^~A~^^^1^0.013^0.030^3^0.006^0.031^~2, 3~^~02/01/2007~ -~21417~^~628~^0.087^4^0.004^~1~^~A~^^^1^0.082^0.101^3^0.075^0.102^~2, 3~^~02/01/2007~ -~21417~^~629~^0.026^4^0.021^~1~^~A~^^^1^0.003^0.090^3^-0.041^0.094^~2, 3~^~02/01/2007~ -~21417~^~630~^0.009^4^0.003^~1~^~AS~^^^1^0.005^0.016^3^0.001^0.017^~2, 3~^~02/01/2007~ -~21417~^~631~^0.006^4^0.002^~1~^~A~^^^1^0.002^0.013^3^-0.002^0.014^~2, 3~^~02/01/2007~ -~21417~^~645~^6.201^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~646~^1.257^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~652~^0.051^4^0.002^~1~^~A~^^^1^0.047^0.057^3^0.045^0.059^~2, 3~^~02/01/2007~ -~21417~^~653~^0.150^4^0.004^~1~^~A~^^^1^0.145^0.165^3^0.141^0.167^~2, 3~^~02/01/2007~ -~21417~^~654~^0.048^4^0.035^~1~^~A~^^^1^0.004^0.153^3^-0.063^0.160^~2, 3~^~02/01/2007~ -~21417~^~662~^0.039^4^0.002^~1~^~A~^^^1^0.038^0.045^3^0.035^0.045^~2, 3~^~02/01/2007~ -~21417~^~663~^0.550^4^0.018^~1~^~A~^^^1^0.530^0.600^3^0.507^0.619^~2, 3~^~02/01/2007~ -~21417~^~664~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.007^3^0.001^0.008^~2, 3~^~02/01/2007~ -~21417~^~665~^0.081^4^0.004^~1~^~A~^^^1^0.077^0.093^3^0.072^0.095^~2, 3~^~02/01/2007~ -~21417~^~670~^0.058^4^0.008^~1~^~A~^^^1^0.048^0.083^3^0.033^0.085^~2, 3~^~02/01/2007~ -~21417~^~671~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.002^0.008^~2, 3~^~02/01/2007~ -~21417~^~672~^0.012^4^0.002^~1~^~A~^^^1^0.009^0.017^3^0.007^0.018^~2, 3~^~02/01/2007~ -~21417~^~673~^0.579^4^0.021^~1~^~A~^^^1^0.534^0.635^3^0.525^0.661^~2, 3~^~02/01/2007~ -~21417~^~674~^4.729^4^0.067^~1~^~A~^^^1^4.653^4.957^3^4.633^5.057^~2, 3~^~02/01/2007~ -~21417~^~675~^0.943^4^0.021^~1~^~A~^^^1^0.928^1.024^3^0.901^1.032^~2, 3~^~02/01/2007~ -~21417~^~676~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.009^3^0.000^0.010^~2, 3~^~02/01/2007~ -~21417~^~685~^0.007^4^0.002^~1~^~A~^^^1^0.002^0.010^3^0.001^0.013^~2, 3~^~02/01/2007~ -~21417~^~687~^0.116^4^0.002^~1~^~A~^^^1^0.116^0.126^3^0.111^0.126^~2, 3~^~02/01/2007~ -~21417~^~689~^0.023^4^0.004^~1~^~AS~^^^1^0.016^0.035^3^0.011^0.037^~2, 3~^~02/01/2007~ -~21417~^~693~^0.593^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~21417~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~02/01/2007~ -~21417~^~851~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~02/01/2007~ -~21417~^~852~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.001^0.005^~2, 3~^~02/01/2007~ -~21417~^~853~^0.021^4^0.003^~1~^~A~^^^1^0.015^0.031^3^0.010^0.032^~2, 3~^~02/01/2007~ -~21417~^~858~^0.011^4^0.002^~1~^~A~^^^1^0.009^0.016^3^0.006^0.017^~2, 3~^~02/01/2007~ -~21418~^~312~^0.071^4^0.002^~1~^~A~^^^1^0.068^0.077^3^0.065^0.078^~2, 3~^~01/01/2007~ -~21418~^~315~^0.222^4^0.004^~1~^~A~^^^1^0.212^0.229^3^0.209^0.234^~2, 3~^~01/01/2007~ -~21418~^~404~^0.117^4^0.012^~1~^~A~^^^1^0.100^0.150^3^0.080^0.155^~2, 3~^~01/01/2007~ -~21418~^~405~^0.130^4^0.009^~1~^~A~^^^1^0.110^0.150^3^0.101^0.159^~2, 3~^~01/01/2007~ -~21418~^~406~^8.690^4^0.300^~1~^~A~^^^1^7.870^9.190^3^7.735^9.644^~2, 3~^~01/01/2007~ -~21418~^~410~^1.100^4^0.041^~1~^~A~^^^1^1.000^1.200^3^0.970^1.230^~2, 3~^~01/01/2007~ -~21418~^~415~^0.426^4^0.007^~1~^~A~^^^1^0.415^0.446^3^0.404^0.448^~2, 3~^~01/01/2007~ -~21418~^~501~^0.235^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~502~^0.780^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~503~^0.809^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~504~^1.469^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~505~^1.389^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~506~^0.475^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~507~^0.262^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~508~^0.787^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~509~^0.512^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~510~^0.857^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~511~^1.097^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~512~^0.630^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~513~^1.012^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~514~^1.647^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~515~^3.562^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~516~^0.777^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~517~^0.992^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~518~^0.767^0^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~21418~^~605~^0.568^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~606~^4.743^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~607~^0.004^4^0.001^~1~^~A~^^^1^0.001^0.007^3^0.000^0.008^~2, 3~^~01/01/2007~ -~21418~^~608~^0.012^4^0.002^~1~^~A~^^^1^0.009^0.017^3^0.006^0.017^~2, 3~^~01/01/2007~ -~21418~^~609~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~01/01/2007~ -~21418~^~610~^0.019^4^0.002^~1~^~A~^^^1^0.015^0.024^3^0.013^0.025^~2, 3~^~01/01/2007~ -~21418~^~611~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.012^3^0.006^0.013^~2, 3~^~01/01/2007~ -~21418~^~612~^0.277^4^0.019^~1~^~A~^^^1^0.227^0.322^3^0.215^0.339^~2, 3~^~01/01/2007~ -~21418~^~613~^2.652^4^0.174^~1~^~A~^^^1^2.184^3.013^3^2.097^3.207^~2, 3~^~01/01/2007~ -~21418~^~614~^1.553^4^0.117^~1~^~A~^^^1^1.263^1.830^3^1.180^1.926^~2, 3~^~01/01/2007~ -~21418~^~615~^0.015^4^0.001^~1~^~A~^^^1^0.013^0.017^3^0.012^0.018^~2, 3~^~01/01/2007~ -~21418~^~617~^4.554^4^0.333^~1~^~AS~^^^1^3.677^5.223^3^3.493^5.615^~2, 3~^~01/01/2007~ -~21418~^~618~^0.977^4^0.059^~1~^~AS~^^^1^0.808^1.057^3^0.790^1.164^~2, 3~^~01/01/2007~ -~21418~^~619~^0.015^4^0.001^~1~^~AS~^^^1^0.014^0.017^3^0.013^0.017^~2, 3~^~01/01/2007~ -~21418~^~620~^0.055^4^0.002^~1~^~A~^^^1^0.050^0.059^3^0.048^0.061^~2, 3~^~01/01/2007~ -~21418~^~621~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.005^~2, 3~^~01/01/2007~ -~21418~^~624~^0.009^4^0.001^~1~^~A~^^^1^0.006^0.012^3^0.005^0.014^~2, 3~^~01/01/2007~ -~21418~^~625~^0.072^4^0.009^~1~^~A~^^^1^0.053^0.093^3^0.042^0.102^~2, 3~^~01/01/2007~ -~21418~^~626~^0.515^4^0.032^~1~^~AS~^^^1^0.442^0.595^3^0.413^0.618^~2, 3~^~01/01/2007~ -~21418~^~627~^0.010^4^0.001^~1~^~A~^^^1^0.007^0.012^3^0.006^0.013^~2, 3~^~01/01/2007~ -~21418~^~628~^0.067^4^0.008^~1~^~A~^^^1^0.050^0.085^3^0.041^0.092^~2, 3~^~01/01/2007~ -~21418~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~01/01/2007~ -~21418~^~630~^0.007^4^0.001^~1~^~AS~^^^1^0.006^0.010^3^0.004^0.010^~2, 3~^~01/01/2007~ -~21418~^~631~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.006^3^0.002^0.007^~2, 3~^~01/01/2007~ -~21418~^~645~^5.321^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~646~^1.112^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~652~^0.044^4^0.004^~1~^~A~^^^1^0.037^0.055^3^0.031^0.057^~2, 3~^~01/01/2007~ -~21418~^~653~^0.138^4^0.009^~1~^~A~^^^1^0.119^0.164^3^0.108^0.168^~2, 3~^~01/01/2007~ -~21418~^~654~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.007^3^0.000^0.007^~2, 3~^~01/01/2007~ -~21418~^~662~^0.021^4^0.008^~1~^~A~^^^1^0.000^0.036^3^-0.004^0.045^~1, 2, 3~^~01/01/2007~ -~21418~^~663~^0.478^4^0.045^~1~^~A~^^^1^0.373^0.556^3^0.336^0.621^~2, 3~^~01/01/2007~ -~21418~^~664~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~2, 3~^~01/01/2007~ -~21418~^~665~^0.066^4^0.007^~1~^~A~^^^1^0.046^0.078^3^0.043^0.090^~2, 3~^~01/01/2007~ -~21418~^~670~^0.045^4^0.004^~1~^~A~^^^1^0.038^0.052^3^0.034^0.057^~2, 3~^~01/01/2007~ -~21418~^~671~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.001^0.006^~2, 3~^~01/01/2007~ -~21418~^~672~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.011^3^0.003^0.011^~2, 3~^~01/01/2007~ -~21418~^~673~^0.495^4^0.038^~1~^~A~^^^1^0.414^0.595^3^0.375^0.614^~2, 3~^~01/01/2007~ -~21418~^~674~^4.076^4^0.291^~1~^~A~^^^1^3.304^4.673^3^3.149^5.002^~2, 3~^~01/01/2007~ -~21418~^~675~^0.865^4^0.049^~1~^~A~^^^1^0.724^0.938^3^0.708^1.023^~2, 3~^~01/01/2007~ -~21418~^~676~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.006^3^0.003^0.006^~2, 3~^~01/01/2007~ -~21418~^~685~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~01/01/2007~ -~21418~^~687~^0.102^4^0.008^~1~^~A~^^^1^0.084^0.124^3^0.076^0.129^~2, 3~^~01/01/2007~ -~21418~^~689~^0.023^4^0.002^~1~^~AS~^^^1^0.019^0.027^3^0.018^0.029^~2, 3~^~01/01/2007~ -~21418~^~693~^0.502^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~695~^0.066^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~21418~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~01/01/2007~ -~21418~^~851~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.006^0.010^~2, 3~^~01/01/2007~ -~21418~^~852~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.003^3^0.000^0.004^~2, 3~^~01/01/2007~ -~21418~^~853~^0.021^4^0.001^~1~^~A~^^^1^0.018^0.024^3^0.017^0.025^~2, 3~^~01/01/2007~ -~21418~^~858~^0.011^4^0.001^~1~^~A~^^^1^0.009^0.014^3^0.008^0.015^~2, 3~^~01/01/2007~ -~21419~^~312~^0.087^6^0.002^~1~^~A~^^^1^0.082^0.091^5^0.083^0.091^~2, 3~^~04/01/2014~ -~21419~^~315~^0.422^6^0.010^~1~^~A~^^^1^0.394^0.449^5^0.395^0.448^~2, 3~^~04/01/2014~ -~21419~^~404~^0.433^3^0.009^~1~^~A~^^^1^0.420^0.450^2^0.395^0.471^~2, 3~^~04/01/2014~ -~21419~^~405~^0.313^3^0.012^~1~^~A~^^^1^0.290^0.330^2^0.261^0.365^~2, 3~^~04/01/2014~ -~21419~^~406~^3.897^3^0.087^~1~^~A~^^^1^3.800^4.070^2^3.523^4.270^~2, 3~^~04/01/2014~ -~21419~^~410~^0.400^2^^~1~^~A~^^^1^0.380^0.420^1^^^^~04/01/2014~ -~21419~^~415~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~04/01/2014~ -~21419~^~501~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~502~^0.256^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~503~^0.308^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~504~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~505~^0.256^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~506~^0.113^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~507~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~508~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~509~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~510~^0.359^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~511~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~512~^0.174^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~513~^0.256^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~514~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~515~^2.533^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~516~^0.256^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~517~^0.892^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~518~^0.379^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21419~^~605~^0.260^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~606~^11.916^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~608~^0.040^3^0.001^~1~^~A~^^^1^0.038^0.041^2^0.036^0.044^~2, 3~^~04/01/2014~ -~21419~^~609~^0.507^3^0.010^~1~^~A~^^^1^0.487^0.517^2^0.464^0.549^~2, 3~^~04/01/2014~ -~21419~^~610~^0.409^3^0.008^~1~^~A~^^^1^0.393^0.417^2^0.375^0.442^~2, 3~^~04/01/2014~ -~21419~^~611~^4.474^3^0.098^~1~^~A~^^^1^4.286^4.616^2^4.052^4.896^~2, 3~^~04/01/2014~ -~21419~^~612~^1.364^3^0.031^~1~^~A~^^^1^1.305^1.411^2^1.230^1.498^~2, 3~^~04/01/2014~ -~21419~^~613~^1.447^3^0.070^~1~^~A~^^^1^1.310^1.535^2^1.148^1.746^~2, 3~^~04/01/2014~ -~21419~^~614~^3.593^3^0.117^~1~^~A~^^^1^3.384^3.788^2^3.090^4.095^~2, 3~^~04/01/2014~ -~21419~^~615~^0.046^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.033^0.059^~2, 3~^~04/01/2014~ -~21419~^~617~^1.228^3^0.168^~1~^~AS~^^^1^1.030^1.561^2^0.506^1.949^~2, 3~^~04/01/2014~ -~21419~^~618~^1.224^3^0.351^~1~^~AS~^^^1^0.646^1.859^2^-0.287^2.736^~2, 3~^~04/01/2014~ -~21419~^~619~^0.124^3^0.050^~1~^~AS~^^^1^0.046^0.217^2^-0.091^0.339^~2, 3~^~04/01/2014~ -~21419~^~620~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2014~ -~21419~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~624~^0.016^3^0.002^~1~^~A~^^^1^0.012^0.018^2^0.007^0.024^~2, 3~^~04/01/2014~ -~21419~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~626~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2014~ -~21419~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~628~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~04/01/2014~ -~21419~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~21419~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21419~^~645~^1.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~646~^1.352^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21419~^~653~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2014~ -~21419~^~654~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~04/01/2014~ -~21419~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~663~^0.223^3^0.083^~1~^~A~^^^1^0.063^0.338^2^-0.132^0.579^~2, 3~^~04/01/2014~ -~21419~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~665~^0.037^3^0.013^~1~^~A~^^^1^0.011^0.056^2^-0.021^0.094^~2, 3~^~04/01/2014~ -~21419~^~670~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2014~ -~21419~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~11/01/2006~ -~21419~^~673~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2014~ -~21419~^~674~^1.004^3^0.117^~1~^~A~^^^1^0.823^1.223^2^0.501^1.508^~2, 3~^~04/01/2014~ -~21419~^~675~^1.184^3^0.361^~1~^~A~^^^1^0.600^1.843^2^-0.369^2.736^~2, 3~^~04/01/2014~ -~21419~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~685~^0.006^3^0.003^~1~^~A~^^^1^0.002^0.011^2^-0.005^0.017^~1, 2, 3~^~04/01/2014~ -~21419~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~21419~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~21419~^~693~^0.223^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21419~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~851~^0.118^3^0.047^~1~^~A~^^^1^0.044^0.206^2^-0.086^0.321^~2, 3~^~04/01/2014~ -~21419~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21419~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21419~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~312~^0.016^4^0.001^~1~^~A~^^^1^0.014^0.019^3^0.013^0.020^~2, 3~^~11/01/2006~ -~21420~^~315~^0.121^4^0.006^~1~^~A~^^^1^0.109^0.137^3^0.103^0.140^~2, 3~^~11/01/2006~ -~21420~^~404~^0.037^4^0.011^~1~^~A~^^^1^0.020^0.070^3^0.002^0.073^~2, 3~^~11/01/2006~ -~21420~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~406~^0.206^4^0.004^~1~^~A~^^^1^0.196^0.213^3^0.194^0.218^~2, 3~^~11/01/2006~ -~21420~^~410~^0.242^4^0.024^~1~^~A~^^^1^0.190^0.300^3^0.166^0.319^~2, 3~^~11/01/2006~ -~21420~^~415~^0.121^4^0.002^~1~^~A~^^^1^0.117^0.127^3^0.114^0.129^~2, 3~^~11/01/2006~ -~21420~^~501~^0.008^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~502~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~503~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~504~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~505~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~506~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~507~^0.008^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~508~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~509~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~510~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~511~^0.043^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~512~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~513~^0.051^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~514~^0.068^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~515~^0.162^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~516~^0.025^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~517~^0.051^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~518~^0.034^1^^~1~^~A~^^^^^^^^^^~11/01/2006~ -~21420~^~605~^0.031^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~606~^1.303^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~612~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.008^3^-0.001^0.011^~1, 2, 3~^~11/01/2006~ -~21420~^~613~^0.877^4^0.035^~1~^~A~^^^1^0.803^0.973^3^0.764^0.989^~2, 3~^~11/01/2006~ -~21420~^~614~^0.357^4^0.015^~1~^~A~^^^1^0.329^0.399^3^0.310^0.404^~2, 3~^~11/01/2006~ -~21420~^~615~^0.023^4^0.001^~1~^~A~^^^1^0.021^0.026^3^0.019^0.026^~2, 3~^~11/01/2006~ -~21420~^~617~^1.914^4^0.081^~1~^~AS~^^^1^1.748^2.136^3^1.656^2.172^~2, 3~^~11/01/2006~ -~21420~^~618~^4.301^4^0.175^~1~^~AS~^^^1^3.906^4.760^3^3.744^4.859^~2, 3~^~11/01/2006~ -~21420~^~619~^0.586^4^0.025^~1~^~AS~^^^1^0.533^0.655^3^0.505^0.667^~2, 3~^~11/01/2006~ -~21420~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~624~^0.025^4^0.001^~1~^~A~^^^1^0.023^0.029^3^0.021^0.029^~2, 3~^~11/01/2006~ -~21420~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~626~^0.008^4^0.000^~1~^~AS~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~11/01/2006~ -~21420~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~628~^0.028^4^0.002^~1~^~A~^^^1^0.023^0.032^3^0.022^0.035^~2, 3~^~11/01/2006~ -~21420~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~630~^0.007^4^0.000^~1~^~AS~^^^1^0.006^0.007^3^0.006^0.008^~2, 3~^~11/01/2006~ -~21420~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~645~^1.963^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~646~^4.888^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~653~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.009^3^0.006^0.009^~2, 3~^~11/01/2006~ -~21420~^~654~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~11/01/2006~ -~21420~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~663~^0.007^4^0.005^~1~^~A~^^^1^0.000^0.023^3^-0.010^0.024^~1, 2, 3~^~11/01/2006~ -~21420~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~665~^0.024^4^0.002^~1~^~A~^^^1^0.020^0.028^3^0.019^0.029^~2, 3~^~11/01/2006~ -~21420~^~670~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~11/01/2006~ -~21420~^~671~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^0.000^0.005^~1, 2, 3~^~11/01/2006~ -~21420~^~672~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~11/01/2006~ -~21420~^~673~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~11/01/2006~ -~21420~^~674~^1.907^4^0.076^~1~^~A~^^^1^1.748^2.113^3^1.665^2.149^~2, 3~^~11/01/2006~ -~21420~^~675~^4.277^4^0.175^~1~^~A~^^^1^3.886^4.736^3^3.721^4.833^~2, 3~^~11/01/2006~ -~21420~^~676~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.006^0.008^~2, 3~^~11/01/2006~ -~21420~^~685~^0.020^4^0.002^~1~^~A~^^^1^0.016^0.024^3^0.015^0.025^~2, 3~^~11/01/2006~ -~21420~^~687~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.004^~2, 3~^~11/01/2006~ -~21420~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~11/01/2006~ -~21420~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~ -~21420~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~851~^0.566^4^0.025^~1~^~A~^^^1^0.517^0.634^3^0.487^0.645^~2, 3~^~11/01/2006~ -~21420~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21420~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~11/01/2006~ -~21421~^~312~^0.074^4^0.004^~1~^~A~^^^1^0.063^0.082^3^0.060^0.087^~2, 3~^~11/01/2006~ -~21421~^~315~^0.258^4^0.025^~1~^~A~^^^1^0.203^0.310^3^0.180^0.337^~2, 3~^~11/01/2006~ -~21421~^~404~^0.083^4^0.008^~1~^~A~^^^1^0.070^0.100^3^0.059^0.106^~2, 3~^~11/01/2006~ -~21421~^~405~^0.051^4^0.013^~1~^~A~^^^1^0.015^0.070^3^0.010^0.093^~1, 2, 3~^~11/01/2006~ -~21421~^~406~^8.562^4^0.296^~1~^~A~^^^1^8.070^9.260^3^7.619^9.506^~2, 3~^~11/01/2006~ -~21421~^~410~^1.300^4^0.041^~1~^~A~^^^1^1.200^1.400^3^1.170^1.430^~2, 3~^~11/01/2006~ -~21421~^~415~^0.474^4^0.007^~1~^~A~^^^1^0.457^0.486^3^0.453^0.495^~2, 3~^~11/01/2006~ -~21421~^~501~^0.267^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~502~^0.918^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~503~^0.921^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~504~^1.624^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~505~^1.631^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~506~^0.435^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~507~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~508~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~509~^0.827^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~510~^1.031^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~511~^1.257^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~512~^0.687^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~513~^1.189^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~514~^1.914^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~515~^3.792^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~516~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~517~^0.889^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~518~^0.817^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21421~^~605~^0.119^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~606~^2.887^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21421~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21421~^~609~^0.005^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.003^0.007^~2, 3~^~04/01/2009~ -~21421~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21421~^~611~^0.007^6^0.002^~1~^~A~^^^1^0.003^0.017^5^0.001^0.012^~2, 3~^~04/01/2009~ -~21421~^~612~^0.032^6^0.002^~1~^~A~^^^1^0.027^0.038^5^0.027^0.037^~2, 3~^~04/01/2009~ -~21421~^~613~^2.030^6^0.056^~1~^~A~^^^1^1.905^2.292^5^1.886^2.173^~2, 3~^~04/01/2009~ -~21421~^~614~^0.694^6^0.035^~1~^~A~^^^1^0.584^0.835^5^0.604^0.784^~2, 3~^~04/01/2009~ -~21421~^~615~^0.038^6^0.002^~1~^~A~^^^1^0.029^0.046^5^0.032^0.044^~2, 3~^~04/01/2009~ -~21421~^~617~^4.001^6^0.097^~1~^~AS~^^^1^3.784^4.396^5^3.751^4.251^~2, 3~^~04/01/2009~ -~21421~^~618~^6.450^6^0.353^~1~^~AS~^^^1^5.558^7.705^5^5.542^7.357^~2, 3~^~04/01/2009~ -~21421~^~619~^0.326^6^0.023^~1~^~AS~^^^1^0.250^0.395^5^0.268^0.385^~2, 3~^~04/01/2009~ -~21421~^~620~^0.046^6^0.003^~1~^~A~^^^1^0.040^0.059^5^0.039^0.054^~2, 3~^~04/01/2009~ -~21421~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21421~^~624~^0.038^6^0.002^~1~^~A~^^^1^0.029^0.045^5^0.032^0.043^~2, 3~^~04/01/2009~ -~21421~^~625~^0.006^6^0.001^~1~^~A~^^^1^0.002^0.008^5^0.004^0.009^~2, 3~^~04/01/2009~ -~21421~^~626~^0.221^6^0.030^~1~^~AS~^^^1^0.097^0.296^5^0.144^0.298^~2, 3~^~04/01/2009~ -~21421~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21421~^~628~^0.056^6^0.002^~1~^~A~^^^1^0.047^0.062^5^0.050^0.062^~2, 3~^~04/01/2009~ -~21421~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21421~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21421~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21421~^~645~^4.308^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~646~^6.881^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21421~^~653~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.017^5^0.014^0.017^~2, 3~^~04/01/2009~ -~21421~^~654~^0.016^6^0.001^~1~^~A~^^^1^0.012^0.019^5^0.013^0.018^~2, 3~^~04/01/2009~ -~21421~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21421~^~663~^0.044^6^0.011^~1~^~A~^^^1^0.027^0.101^5^0.015^0.073^~2, 3~^~04/01/2009~ -~21421~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21421~^~665~^0.074^6^0.004^~1~^~A~^^^1^0.058^0.082^5^0.064^0.083^~2, 3~^~04/01/2009~ -~21421~^~670~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.022^5^0.018^0.022^~2, 3~^~04/01/2009~ -~21421~^~671~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~04/01/2009~ -~21421~^~672~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.014^~2, 3~^~04/01/2009~ -~21421~^~673~^0.219^6^0.030^~1~^~A~^^^1^0.096^0.294^5^0.143^0.295^~2, 3~^~04/01/2009~ -~21421~^~674~^3.957^6^0.100^~1~^~A~^^^1^3.750^4.361^5^3.699^4.215^~2, 3~^~04/01/2009~ -~21421~^~675~^6.356^6^0.351^~1~^~A~^^^1^5.483^7.606^5^5.454^7.258^~2, 3~^~04/01/2009~ -~21421~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21421~^~685~^0.006^6^0.001^~1~^~A~^^^1^0.002^0.009^5^0.003^0.008^~2, 3~^~04/01/2009~ -~21421~^~687~^0.010^6^0.001^~1~^~A~^^^1^0.005^0.012^5^0.007^0.013^~2, 3~^~04/01/2009~ -~21421~^~689~^0.015^6^0.001^~1~^~AS~^^^1^0.011^0.018^5^0.012^0.017^~2, 3~^~04/01/2009~ -~21421~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~695~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21421~^~697~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.006^5^0.001^0.006^~2, 3~^~04/01/2009~ -~21421~^~851~^0.321^6^0.023^~1~^~A~^^^1^0.241^0.388^5^0.261^0.380^~2, 3~^~04/01/2009~ -~21421~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21421~^~853~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.017^5^0.011^0.016^~2, 3~^~04/01/2009~ -~21421~^~858~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.027^5^0.017^0.024^~2, 3~^~04/01/2009~ -~21422~^~312~^0.078^4^0.003^~1~^~A~^^^1^0.072^0.087^3^0.068^0.089^~2, 3~^~11/01/2006~ -~21422~^~315~^0.232^4^0.004^~1~^~A~^^^1^0.223^0.238^3^0.220^0.244^~2, 3~^~11/01/2006~ -~21422~^~404~^0.177^4^0.014^~1~^~A~^^^1^0.150^0.210^3^0.134^0.221^~2, 3~^~11/01/2006~ -~21422~^~405~^0.130^4^0.012^~1~^~A~^^^1^0.100^0.160^3^0.091^0.169^~2, 3~^~11/01/2006~ -~21422~^~406~^8.108^4^0.327^~1~^~A~^^^1^7.260^8.710^3^7.068^9.147^~2, 3~^~11/01/2006~ -~21422~^~410~^1.125^4^0.025^~1~^~A~^^^1^1.100^1.200^3^1.045^1.205^~2, 3~^~11/01/2006~ -~21422~^~415~^0.502^4^0.015^~1~^~A~^^^1^0.476^0.542^3^0.455^0.550^~2, 3~^~11/01/2006~ -~21422~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~502~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~503~^0.791^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~504~^1.379^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~505~^1.293^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~506~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~507~^0.212^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~508~^0.743^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~509~^0.473^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~510~^0.859^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~511~^1.042^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~512~^0.579^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~513~^0.974^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~514~^1.563^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~515~^3.772^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~516~^0.762^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~517~^0.878^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~518~^0.714^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21422~^~605~^0.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~606~^3.954^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21422~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21422~^~609~^0.009^6^0.001^~1~^~A~^^^1^0.005^0.012^5^0.006^0.011^~2, 3~^~04/01/2009~ -~21422~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21422~^~611~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21422~^~612~^0.037^6^0.002^~1~^~A~^^^1^0.032^0.046^5^0.032^0.043^~2, 3~^~04/01/2009~ -~21422~^~613~^2.689^6^0.075^~1~^~A~^^^1^2.522^2.944^5^2.496^2.883^~2, 3~^~04/01/2009~ -~21422~^~614~^1.044^6^0.061^~1~^~A~^^^1^0.855^1.272^5^0.887^1.201^~2, 3~^~04/01/2009~ -~21422~^~615~^0.057^6^0.003^~1~^~A~^^^1^0.052^0.070^5^0.049^0.064^~2, 3~^~04/01/2009~ -~21422~^~617~^5.311^6^0.201^~1~^~AS~^^^1^4.842^6.034^5^4.793^5.829^~2, 3~^~04/01/2009~ -~21422~^~618~^9.420^6^0.606^~1~^~AS~^^^1^8.324^12.343^5^7.861^10.979^~2, 3~^~04/01/2009~ -~21422~^~619~^0.583^6^0.028^~1~^~AS~^^^1^0.473^0.655^5^0.512^0.654^~2, 3~^~04/01/2009~ -~21422~^~620~^0.035^6^0.001^~1~^~A~^^^1^0.031^0.040^5^0.032^0.039^~2, 3~^~04/01/2009~ -~21422~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21422~^~624~^0.057^6^0.003^~1~^~A~^^^1^0.050^0.073^5^0.048^0.066^~2, 3~^~04/01/2009~ -~21422~^~625~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.011^5^0.004^0.010^~2, 3~^~04/01/2009~ -~21422~^~626~^0.233^6^0.028^~1~^~AS~^^^1^0.139^0.351^5^0.161^0.305^~2, 3~^~04/01/2009~ -~21422~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21422~^~628~^0.081^6^0.002^~1~^~A~^^^1^0.073^0.087^5^0.077^0.086^~2, 3~^~04/01/2009~ -~21422~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2009~ -~21422~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21422~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21422~^~645~^5.660^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~646~^10.093^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21422~^~653~^0.022^6^0.001^~1~^~A~^^^1^0.020^0.024^5^0.019^0.024^~2, 3~^~04/01/2009~ -~21422~^~654~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.028^5^0.019^0.026^~2, 3~^~04/01/2009~ -~21422~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21422~^~663~^0.052^6^0.007^~1~^~A~^^^1^0.036^0.082^5^0.035^0.069^~2, 3~^~04/01/2009~ -~21422~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21422~^~665~^0.104^6^0.003^~1~^~A~^^^1^0.093^0.112^5^0.097^0.111^~2, 3~^~04/01/2009~ -~21422~^~670~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.031^5^0.025^0.030^~2, 3~^~04/01/2009~ -~21422~^~671~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.009^0.013^~2, 3~^~04/01/2009~ -~21422~^~672~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~2, 3~^~04/01/2009~ -~21422~^~673~^0.231^6^0.028^~1~^~A~^^^1^0.138^0.348^5^0.160^0.303^~2, 3~^~04/01/2009~ -~21422~^~674~^5.259^6^0.205^~1~^~A~^^^1^4.790^5.998^5^4.732^5.785^~2, 3~^~04/01/2009~ -~21422~^~675~^9.288^6^0.607^~1~^~A~^^^1^8.203^12.219^5^7.727^10.849^~2, 3~^~04/01/2009~ -~21422~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21422~^~685~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.004^0.007^~2, 3~^~04/01/2009~ -~21422~^~687~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.015^5^0.005^0.015^~2, 3~^~04/01/2009~ -~21422~^~689~^0.012^6^0.001^~1~^~AS~^^^1^0.009^0.016^5^0.009^0.014^~2, 3~^~04/01/2009~ -~21422~^~693~^0.054^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~695~^0.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21422~^~697~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21422~^~851~^0.577^6^0.028^~1~^~A~^^^1^0.465^0.651^5^0.505^0.649^~2, 3~^~04/01/2009~ -~21422~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21422~^~853~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.015^5^0.009^0.013^~2, 3~^~04/01/2009~ -~21422~^~858~^0.022^6^0.001^~1~^~A~^^^1^0.018^0.026^5^0.019^0.025^~2, 3~^~04/01/2009~ -~21424~^~312~^0.082^6^0.007^~1~^~A~^^^1^0.065^0.114^5^0.064^0.100^~2, 3~^~04/01/2014~ -~21424~^~315~^0.298^6^0.015^~1~^~A~^^^1^0.238^0.335^5^0.260^0.336^~2, 3~^~04/01/2014~ -~21424~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~405~^0.197^3^0.018^~1~^~A~^^^1^0.170^0.230^2^0.121^0.273^~2, 3~^~04/01/2014~ -~21424~^~406~^5.420^3^0.510^~1~^~A~^^^1^4.790^6.430^2^3.225^7.615^~2, 3~^~04/01/2014~ -~21424~^~410~^0.880^2^^~1~^~A~^^^1^0.850^0.910^1^^^^~04/01/2014~ -~21424~^~415~^0.140^3^0.000^~1~^~A~^^^1^0.140^0.140^^^^~2, 3~^~04/01/2014~ -~21424~^~501~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~502~^0.467^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~503~^0.416^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~504~^0.864^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~505~^0.615^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~506~^0.205^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~507~^0.164^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~508~^0.542^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~509~^0.434^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~510~^0.516^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~511~^0.801^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~512~^0.337^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~513~^0.807^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~514~^0.962^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~515~^3.313^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~516~^1.191^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~517~^1.137^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~518~^0.552^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21424~^~521~^0.371^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~21424~^~605~^0.214^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~606~^6.343^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~609~^0.007^5^0.001^~1~^~A~^^^1^0.005^0.009^4^0.005^0.009^~2, 3~^~04/01/2014~ -~21424~^~610~^0.010^5^0.001^~1~^~A~^^^1^0.008^0.012^4^0.008^0.012^~2, 3~^~04/01/2014~ -~21424~^~611~^0.013^5^0.002^~1~^~A~^^^1^0.007^0.017^4^0.009^0.018^~2, 3~^~04/01/2014~ -~21424~^~612~^0.147^5^0.040^~1~^~A~^^^1^0.097^0.307^4^0.036^0.258^~2, 3~^~04/01/2014~ -~21424~^~613~^4.427^5^0.242^~1~^~A~^^^1^3.870^5.314^4^3.754^5.099^~2, 3~^~04/01/2014~ -~21424~^~614~^1.524^5^0.208^~1~^~A~^^^1^1.230^2.346^4^0.947^2.100^~2, 3~^~04/01/2014~ -~21424~^~615~^0.079^5^0.005^~1~^~A~^^^1^0.067^0.096^4^0.066^0.092^~2, 3~^~04/01/2014~ -~21424~^~617~^12.926^5^0.418^~1~^~AS~^^^1^11.995^14.476^4^11.767^14.086^~2, 3~^~04/01/2014~ -~21424~^~618~^4.415^5^0.245^~1~^~AS~^^^1^3.756^5.141^4^3.735^5.095^~2, 3~^~04/01/2014~ -~21424~^~619~^0.809^5^0.056^~1~^~AS~^^^1^0.632^0.987^4^0.653^0.965^~2, 3~^~04/01/2014~ -~21424~^~620~^0.065^5^0.005^~1~^~A~^^^1^0.054^0.081^4^0.050^0.080^~2, 3~^~04/01/2014~ -~21424~^~621~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.001^0.004^~1, 2, 3~^~04/01/2009~ -~21424~^~624~^0.051^5^0.004^~1~^~A~^^^1^0.040^0.063^4^0.040^0.061^~2, 3~^~04/01/2014~ -~21424~^~625~^0.045^5^0.010^~1~^~A~^^^1^0.033^0.084^4^0.018^0.072^~2, 3~^~04/01/2014~ -~21424~^~626~^1.110^5^0.030^~1~^~AS~^^^1^0.994^1.168^4^1.027^1.194^~2, 3~^~04/01/2014~ -~21424~^~627~^0.003^5^0.001^~1~^~A~^^^1^0.000^0.005^4^0.001^0.006^~1, 2, 3~^~04/01/2014~ -~21424~^~628~^0.280^5^0.015^~1~^~A~^^^1^0.239^0.330^4^0.239^0.321^~2, 3~^~04/01/2014~ -~21424~^~629~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21424~^~630~^0.034^5^0.005^~1~^~AS~^^^1^0.021^0.047^4^0.021^0.048^~2, 3~^~04/01/2014~ -~21424~^~631~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^4^0.005^0.007^~2, 3~^~04/01/2009~ -~21424~^~645~^14.448^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~646~^5.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~652~^0.021^5^0.007^~1~^~A~^^^1^0.013^0.049^4^0.001^0.040^~2, 3~^~04/01/2014~ -~21424~^~653~^0.044^5^0.021^~1~^~A~^^^1^0.021^0.127^4^-0.014^0.102^~2, 3~^~04/01/2014~ -~21424~^~654~^0.021^5^0.002^~1~^~A~^^^1^0.016^0.027^4^0.016^0.026^~2, 3~^~04/01/2014~ -~21424~^~662~^0.013^5^0.006^~1~^~A~^^^1^0.006^0.036^4^-0.004^0.029^~2, 3~^~04/01/2014~ -~21424~^~663~^0.156^5^0.076^~1~^~A~^^^1^0.070^0.460^4^-0.056^0.367^~2, 3~^~04/01/2014~ -~21424~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21424~^~665~^0.045^5^0.008^~1~^~A~^^^1^0.034^0.076^4^0.024^0.067^~2, 3~^~04/01/2014~ -~21424~^~670~^0.027^5^0.006^~1~^~A~^^^1^0.019^0.049^4^0.011^0.042^~2, 3~^~04/01/2014~ -~21424~^~671~^0.022^5^0.002^~1~^~A~^^^1^0.017^0.027^4^0.017^0.026^~2, 3~^~04/01/2014~ -~21424~^~672~^0.023^5^0.001^~1~^~A~^^^1^0.020^0.025^4^0.020^0.025^~2, 3~^~04/01/2014~ -~21424~^~673~^1.098^5^0.028^~1~^~A~^^^1^0.988^1.132^4^1.021^1.174^~2, 3~^~04/01/2014~ -~21424~^~674~^12.771^5^0.422^~1~^~A~^^^1^11.916^14.393^4^11.598^13.943^~2, 3~^~04/01/2014~ -~21424~^~675~^4.343^5^0.252^~1~^~A~^^^1^3.631^5.075^4^3.642^5.043^~2, 3~^~04/01/2014~ -~21424~^~676~^0.034^5^0.005^~1~^~A~^^^1^0.021^0.047^4^0.021^0.048^~2, 3~^~04/01/2014~ -~21424~^~685~^0.045^5^0.005^~1~^~A~^^^1^0.031^0.060^4^0.032^0.058^~2, 3~^~04/01/2014~ -~21424~^~687~^0.031^5^0.011^~1~^~A~^^^1^0.018^0.075^4^0.000^0.061^~2, 3~^~04/01/2014~ -~21424~^~689~^0.030^5^0.001^~1~^~AS~^^^1^0.026^0.034^4^0.027^0.034^~2, 3~^~04/01/2014~ -~21424~^~693~^0.168^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21424~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~851~^0.764^5^0.052^~1~^~A~^^^1^0.601^0.927^4^0.621^0.908^~2, 3~^~04/01/2014~ -~21424~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21424~^~853~^0.029^5^0.001^~1~^~A~^^^1^0.025^0.032^4^0.025^0.032^~2, 3~^~04/01/2014~ -~21424~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21424~^~858~^0.015^5^0.001^~1~^~A~^^^1^0.013^0.019^4^0.012^0.019^~2, 3~^~04/01/2014~ -~21425~^~312~^0.063^6^0.005^~1~^~A~^^^1^0.052^0.085^5^0.051^0.076^~2, 3~^~04/01/2014~ -~21425~^~315~^0.042^6^0.003^~1~^~A~^^^1^0.035^0.052^5^0.035^0.049^~2, 3~^~04/01/2014~ -~21425~^~404~^0.102^3^0.005^~1~^~A~^^^1^0.094^0.110^2^0.082^0.122^~2, 3~^~04/01/2014~ -~21425~^~405~^0.223^3^0.018^~1~^~A~^^^1^0.190^0.250^2^0.147^0.299^~2, 3~^~04/01/2014~ -~21425~^~406~^8.667^3^0.285^~1~^~A~^^^1^8.210^9.190^2^7.441^9.892^~2, 3~^~04/01/2014~ -~21425~^~410~^1.140^2^^~1~^~A~^^^1^0.880^1.400^1^^^^~04/01/2014~ -~21425~^~415~^0.280^3^0.006^~1~^~A~^^^1^0.270^0.290^2^0.255^0.305^~2, 3~^~04/01/2014~ -~21425~^~501~^0.206^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~502~^0.887^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~503~^0.789^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~504~^1.639^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~505~^1.166^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~506~^0.389^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~507~^0.311^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~508~^1.028^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~509~^0.823^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~510~^0.980^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~511~^1.520^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~512~^0.640^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~513~^1.531^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~514~^1.826^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~515~^6.287^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~516~^2.260^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~517~^2.158^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~518~^1.047^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21425~^~521~^0.704^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~21425~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~606~^1.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~607~^0.008^5^0.000^~1~^~A~^^^1^0.007^0.008^4^0.007^0.008^~2, 3~^~04/01/2014~ -~21425~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21425~^~610~^0.017^5^0.002^~1~^~A~^^^1^0.014^0.022^4^0.013^0.022^~2, 3~^~04/01/2014~ -~21425~^~611~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~04/01/2009~ -~21425~^~612~^0.018^5^0.001^~1~^~A~^^^1^0.014^0.021^4^0.014^0.021^~2, 3~^~04/01/2009~ -~21425~^~613~^0.716^5^0.052^~1~^~A~^^^1^0.595^0.909^4^0.571^0.860^~2, 3~^~04/01/2014~ -~21425~^~614~^0.247^5^0.012^~1~^~A~^^^1^0.228^0.293^4^0.215^0.280^~2, 3~^~04/01/2014~ -~21425~^~615~^0.009^5^0.000^~1~^~A~^^^1^0.007^0.010^4^0.007^0.010^~2, 3~^~04/01/2014~ -~21425~^~617~^1.744^5^0.089^~1~^~AS~^^^1^1.566^2.075^4^1.496^1.992^~2, 3~^~04/01/2014~ -~21425~^~618~^0.650^5^0.040^~1~^~AS~^^^1^0.551^0.793^4^0.538^0.762^~2, 3~^~04/01/2014~ -~21425~^~619~^0.088^5^0.005^~1~^~AS~^^^1^0.071^0.100^4^0.075^0.102^~2, 3~^~04/01/2014~ -~21425~^~620~^0.051^5^0.003^~1~^~A~^^^1^0.039^0.059^4^0.042^0.060^~2, 3~^~04/01/2014~ -~21425~^~621~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~04/01/2009~ -~21425~^~624~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2014~ -~21425~^~625~^0.006^5^0.000^~1~^~A~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~04/01/2014~ -~21425~^~626~^0.169^5^0.017^~1~^~AS~^^^1^0.123^0.228^4^0.122^0.216^~2, 3~^~04/01/2014~ -~21425~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21425~^~628~^0.038^5^0.002^~1~^~A~^^^1^0.032^0.043^4^0.033^0.042^~2, 3~^~04/01/2014~ -~21425~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~630~^0.004^5^0.000^~1~^~AS~^^^1^0.002^0.005^4^0.002^0.005^~2, 3~^~04/01/2014~ -~21425~^~631~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2014~ -~21425~^~645~^2.313^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~646~^0.982^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~652~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~04/01/2009~ -~21425~^~653~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~04/01/2014~ -~21425~^~654~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21425~^~662~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21425~^~663~^0.012^5^0.001^~1~^~A~^^^1^0.010^0.013^4^0.010^0.013^~2, 3~^~04/01/2014~ -~21425~^~665~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.006^4^0.003^0.006^~2, 3~^~04/01/2014~ -~21425~^~670~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~21425~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~672~^0.008^5^0.000^~1~^~A~^^^1^0.007^0.008^4^0.007^0.008^~2, 3~^~04/01/2009~ -~21425~^~673~^0.168^5^0.017^~1~^~A~^^^1^0.122^0.227^4^0.121^0.214^~2, 3~^~04/01/2014~ -~21425~^~674~^1.733^5^0.089^~1~^~A~^^^1^1.553^2.063^4^1.485^1.980^~2, 3~^~04/01/2014~ -~21425~^~675~^0.642^5^0.040^~1~^~A~^^^1^0.543^0.785^4^0.531^0.754^~2, 3~^~04/01/2014~ -~21425~^~676~^0.004^5^0.000^~1~^~A~^^^1^0.002^0.005^4^0.002^0.005^~1, 2, 3~^~04/01/2014~ -~21425~^~685~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2009~ -~21425~^~687~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21425~^~689~^0.019^5^0.001^~1~^~AS~^^^1^0.017^0.021^4^0.017^0.021^~2, 3~^~04/01/2009~ -~21425~^~693~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21425~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~851~^0.084^5^0.005^~1~^~A~^^^1^0.067^0.095^4^0.071^0.096^~2, 3~^~04/01/2014~ -~21425~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21425~^~853~^0.017^5^0.001^~1~^~A~^^^1^0.015^0.020^4^0.015^0.019^~2, 3~^~04/01/2014~ -~21425~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21425~^~858~^0.013^5^0.001^~1~^~A~^^^1^0.010^0.015^4^0.011^0.015^~2, 3~^~04/01/2009~ -~21426~^~312~^0.083^6^0.003^~1~^~A~^^^1^0.071^0.089^5^0.076^0.091^~2, 3~^~04/01/2007~ -~21426~^~315~^0.056^6^0.004^~1~^~A~^^^1^0.041^0.070^5^0.046^0.065^~2, 3~^~04/01/2007~ -~21426~^~404~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~04/01/2007~ -~21426~^~405~^0.264^4^0.006^~1~^~A~^^^1^0.255^0.280^3^0.246^0.281^~2, 3~^~04/01/2007~ -~21426~^~406~^5.277^4^0.210^~1~^~A~^^^1^4.830^5.740^3^4.609^5.946^~2, 3~^~04/01/2007~ -~21426~^~410~^1.300^4^0.071^~1~^~A~^^^1^1.200^1.500^3^1.075^1.525^~2, 3~^~04/01/2007~ -~21426~^~415~^0.248^4^0.037^~1~^~A~^^^1^0.138^0.291^3^0.131^0.365^~2, 3~^~04/01/2007~ -~21426~^~501~^0.201^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~502~^0.868^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~503~^0.772^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~504~^1.604^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~505~^1.141^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~506~^0.381^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~507~^0.305^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~508~^1.006^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~509~^0.805^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~510~^0.958^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~511~^1.487^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~512~^0.627^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~513~^1.498^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~514~^1.787^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~515~^6.150^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~516~^2.211^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~517~^2.111^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~518~^1.025^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21426~^~521~^0.705^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21426~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~606~^1.838^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~607~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21426~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21426~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21426~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21426~^~611~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.003^0.006^~2, 3~^~04/01/2009~ -~21426~^~612~^0.030^6^0.001^~1~^~A~^^^1^0.027^0.032^5^0.027^0.032^~2, 3~^~04/01/2009~ -~21426~^~613~^1.336^6^0.028^~1~^~A~^^^1^1.230^1.432^5^1.263^1.409^~2, 3~^~04/01/2009~ -~21426~^~614~^0.426^6^0.011^~1~^~A~^^^1^0.385^0.459^5^0.397^0.454^~2, 3~^~04/01/2009~ -~21426~^~615~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.011^~2, 3~^~04/01/2009~ -~21426~^~617~^2.343^6^0.047^~1~^~AS~^^^1^2.157^2.446^5^2.223^2.462^~2, 3~^~04/01/2009~ -~21426~^~618~^1.721^6^0.096^~1~^~AS~^^^1^1.360^2.053^5^1.473^1.968^~2, 3~^~04/01/2009~ -~21426~^~619~^0.083^6^0.004^~1~^~AS~^^^1^0.066^0.095^5^0.071^0.094^~2, 3~^~04/01/2009~ -~21426~^~620~^0.083^6^0.003^~1~^~A~^^^1^0.071^0.091^5^0.075^0.091^~2, 3~^~04/01/2009~ -~21426~^~621~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21426~^~624~^0.010^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.009^0.011^~2, 3~^~04/01/2009~ -~21426~^~625~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.013^~2, 3~^~04/01/2009~ -~21426~^~626~^0.415^6^0.020^~1~^~AS~^^^1^0.337^0.458^5^0.362^0.467^~2, 3~^~04/01/2009~ -~21426~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21426~^~628~^0.028^6^0.001^~1~^~A~^^^1^0.026^0.029^5^0.026^0.029^~2, 3~^~04/01/2009~ -~21426~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21426~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21426~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~04/01/2009~ -~21426~^~645~^2.816^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~646~^1.963^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~652~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21426~^~653~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~04/01/2009~ -~21426~^~654~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21426~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21426~^~663~^0.023^6^0.001^~1~^~A~^^^1^0.021^0.028^5^0.020^0.026^~2, 3~^~04/01/2009~ -~21426~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21426~^~665~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.016^0.020^~2, 3~^~04/01/2009~ -~21426~^~670~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~04/01/2009~ -~21426~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~04/01/2009~ -~21426~^~672~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.009^0.011^~2, 3~^~04/01/2009~ -~21426~^~673~^0.412^6^0.020^~1~^~A~^^^1^0.335^0.454^5^0.360^0.464^~2, 3~^~04/01/2009~ -~21426~^~674~^2.319^6^0.046^~1~^~A~^^^1^2.135^2.425^5^2.200^2.439^~2, 3~^~04/01/2009~ -~21426~^~675~^1.694^6^0.095^~1~^~A~^^^1^1.336^2.022^5^1.449^1.939^~2, 3~^~04/01/2009~ -~21426~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21426~^~685~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.008^0.011^~2, 3~^~04/01/2009~ -~21426~^~687~^0.009^6^0.003^~1~^~A~^^^1^0.005^0.022^5^0.002^0.016^~2, 3~^~04/01/2009~ -~21426~^~689~^0.026^6^0.000^~1~^~AS~^^^1^0.025^0.027^5^0.025^0.026^~2, 3~^~04/01/2009~ -~21426~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21426~^~697~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21426~^~851~^0.073^6^0.004^~1~^~A~^^^1^0.057^0.087^5^0.062^0.084^~2, 3~^~04/01/2009~ -~21426~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2009~ -~21426~^~853~^0.025^6^0.000^~1~^~A~^^^1^0.024^0.026^5^0.024^0.025^~2, 3~^~04/01/2009~ -~21426~^~858~^0.024^6^0.001^~1~^~A~^^^1^0.021^0.027^5^0.022^0.026^~2, 3~^~04/01/2009~ -~21427~^~312~^0.082^6^0.005^~1~^~A~^^^1^0.067^0.096^5^0.070^0.094^~2, 3~^~04/01/2014~ -~21427~^~315~^0.050^6^0.005^~1~^~A~^^^1^0.031^0.063^5^0.037^0.062^~2, 3~^~04/01/2014~ -~21427~^~404~^0.089^3^0.004^~1~^~A~^^^1^0.081^0.095^2^0.070^0.107^~2, 3~^~04/01/2014~ -~21427~^~405~^0.310^3^0.010^~1~^~A~^^^1^0.290^0.320^2^0.267^0.353^~2, 3~^~04/01/2014~ -~21427~^~406~^5.610^3^0.303^~1~^~A~^^^1^5.170^6.190^2^4.308^6.912^~2, 3~^~04/01/2014~ -~21427~^~410~^1.050^2^^~1~^~A~^^^1^1.000^1.100^1^^^^~04/01/2014~ -~21427~^~415~^0.137^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.122^0.151^~2, 3~^~04/01/2014~ -~21427~^~501~^0.174^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~502~^0.752^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~503~^0.669^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~504~^1.389^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~505~^0.988^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~506~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~507~^0.264^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~508~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~509~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~510~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~511~^1.288^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~512~^0.543^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~513~^1.298^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~514~^1.547^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~515~^5.327^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~516~^1.915^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~517~^1.828^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~518~^0.887^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21427~^~521~^0.596^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~21427~^~605~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~606~^2.308^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21427~^~610~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.005^~1, 2, 3~^~04/01/2014~ -~21427~^~611~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.006^~1, 2, 3~^~04/01/2014~ -~21427~^~612~^0.043^6^0.001^~1~^~A~^^^1^0.040^0.048^5^0.040^0.046^~2, 3~^~04/01/2014~ -~21427~^~613~^1.712^6^0.059^~1~^~A~^^^1^1.494^1.872^5^1.561^1.863^~2, 3~^~04/01/2014~ -~21427~^~614~^0.504^6^0.012^~1~^~A~^^^1^0.464^0.534^5^0.473^0.536^~2, 3~^~04/01/2014~ -~21427~^~615~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.015^5^0.011^0.015^~2, 3~^~04/01/2014~ -~21427~^~617~^3.276^6^0.118^~1~^~AS~^^^1^2.822^3.562^5^2.973^3.579^~2, 3~^~04/01/2014~ -~21427~^~618~^1.312^6^0.048^~1~^~AS~^^^1^1.108^1.425^5^1.188^1.435^~2, 3~^~04/01/2014~ -~21427~^~619~^0.113^6^0.006^~1~^~AS~^^^1^0.094^0.135^5^0.097^0.128^~2, 3~^~04/01/2014~ -~21427~^~620~^0.072^6^0.001^~1~^~A~^^^1^0.066^0.075^5^0.068^0.075^~2, 3~^~04/01/2014~ -~21427~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21427~^~624~^0.010^6^0.002^~1~^~A~^^^1^0.007^0.017^5^0.006^0.014^~2, 3~^~04/01/2014~ -~21427~^~625~^0.014^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.013^0.015^~2, 3~^~04/01/2014~ -~21427~^~626~^0.461^6^0.018^~1~^~AS~^^^1^0.392^0.509^5^0.415^0.508^~2, 3~^~04/01/2014~ -~21427~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~21427~^~628~^0.063^6^0.002^~1~^~A~^^^1^0.055^0.069^5^0.057^0.068^~2, 3~^~04/01/2014~ -~21427~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21427~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~04/01/2014~ -~21427~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21427~^~645~^3.830^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~646~^1.561^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~04/01/2009~ -~21427~^~653~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.008^~2, 3~^~04/01/2014~ -~21427~^~654~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.004^0.008^~2, 3~^~04/01/2014~ -~21427~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21427~^~663~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.031^5^0.025^0.031^~2, 3~^~04/01/2014~ -~21427~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~21427~^~665~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~2, 3~^~04/01/2014~ -~21427~^~670~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.006^0.008^~2, 3~^~04/01/2014~ -~21427~^~671~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.010^5^0.003^0.010^~1, 2, 3~^~04/01/2009~ -~21427~^~672~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.010^0.011^~2, 3~^~04/01/2014~ -~21427~^~673~^0.459^6^0.018^~1~^~A~^^^1^0.389^0.506^5^0.412^0.505^~2, 3~^~04/01/2014~ -~21427~^~674~^3.248^6^0.118^~1~^~A~^^^1^2.791^3.533^5^2.943^3.552^~2, 3~^~04/01/2014~ -~21427~^~675~^1.293^6^0.048^~1~^~A~^^^1^1.089^1.406^5^1.169^1.417^~2, 3~^~04/01/2014~ -~21427~^~676~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~04/01/2014~ -~21427~^~685~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~04/01/2014~ -~21427~^~687~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~04/01/2014~ -~21427~^~689~^0.024^6^0.001^~1~^~AS~^^^1^0.021^0.027^5^0.022^0.026^~2, 3~^~04/01/2014~ -~21427~^~693~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21427~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~851~^0.108^6^0.006^~1~^~A~^^^1^0.090^0.128^5^0.093^0.122^~2, 3~^~04/01/2014~ -~21427~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~21427~^~853~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.026^5^0.021^0.025^~2, 3~^~04/01/2014~ -~21427~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21427~^~858~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.022^5^0.016^0.020^~2, 3~^~04/01/2009~ -~21428~^~312~^0.069^6^0.009^~1~^~A~^^^1^0.054^0.112^5^0.045^0.092^~2, 3~^~04/01/2014~ -~21428~^~315~^0.061^6^0.004^~1~^~A~^^^1^0.049^0.072^5^0.051^0.070^~2, 3~^~04/01/2014~ -~21428~^~404~^0.064^3^0.003^~1~^~A~^^^1^0.059^0.070^2^0.051^0.078^~2, 3~^~04/01/2014~ -~21428~^~405~^0.243^3^0.012^~1~^~A~^^^1^0.220^0.260^2^0.192^0.295^~2, 3~^~04/01/2014~ -~21428~^~406~^7.180^3^0.297^~1~^~A~^^^1^6.590^7.530^2^5.903^8.457^~2, 3~^~04/01/2014~ -~21428~^~410~^1.045^2^^~1~^~A~^^^1^0.990^1.100^1^^^^~04/01/2014~ -~21428~^~415~^0.233^3^0.014^~1~^~A~^^^1^0.210^0.260^2^0.171^0.296^~2, 3~^~04/01/2014~ -~21428~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~502~^0.945^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~503~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~504~^1.747^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~505~^1.243^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~506~^0.415^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~507~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~508~^1.096^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~509~^0.877^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~510~^1.044^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~511~^1.620^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~512~^0.682^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~513~^1.632^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~514~^1.946^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~515~^6.698^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~516~^2.408^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~517~^2.299^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~518~^1.116^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21428~^~521~^0.803^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21428~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~606~^2.321^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2007~ -~21428~^~610~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21428~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.003^0.006^~1, 2, 3~^~04/01/2009~ -~21428~^~612~^0.041^6^0.002^~1~^~A~^^^1^0.034^0.047^5^0.036^0.045^~2, 3~^~04/01/2014~ -~21428~^~613~^1.654^6^0.057^~1~^~A~^^^1^1.381^1.773^5^1.508^1.801^~2, 3~^~04/01/2014~ -~21428~^~614~^0.550^6^0.015^~1~^~A~^^^1^0.484^0.583^5^0.511^0.589^~2, 3~^~04/01/2014~ -~21428~^~615~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.033^5^0.024^0.031^~2, 3~^~04/01/2014~ -~21428~^~617~^4.541^6^0.188^~1~^~AS~^^^1^3.927^5.118^5^4.059^5.023^~2, 3~^~04/01/2014~ -~21428~^~618~^1.660^6^0.058^~1~^~AS~^^^1^1.412^1.798^5^1.512^1.808^~2, 3~^~04/01/2014~ -~21428~^~619~^0.269^6^0.018^~1~^~AS~^^^1^0.228^0.350^5^0.222^0.317^~2, 3~^~04/01/2014~ -~21428~^~620~^0.081^6^0.002^~1~^~A~^^^1^0.071^0.088^5^0.074^0.087^~2, 3~^~04/01/2014~ -~21428~^~621~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.005^0.007^~2, 3~^~04/01/2014~ -~21428~^~624~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.021^5^0.017^0.020^~2, 3~^~04/01/2014~ -~21428~^~625~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.014^~2, 3~^~04/01/2009~ -~21428~^~626~^0.432^6^0.017^~1~^~AS~^^^1^0.357^0.476^5^0.390^0.475^~2, 3~^~04/01/2014~ -~21428~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~628~^0.101^6^0.005^~1~^~A~^^^1^0.085^0.117^5^0.088^0.114^~2, 3~^~04/01/2014~ -~21428~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21428~^~630~^0.011^6^0.001^~1~^~AS~^^^1^0.007^0.016^5^0.007^0.015^~2, 3~^~04/01/2014~ -~21428~^~631~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~04/01/2014~ -~21428~^~645~^5.115^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~646~^2.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~04/01/2009~ -~21428~^~653~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~04/01/2014~ -~21428~^~654~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.010^~2, 3~^~04/01/2014~ -~21428~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21428~^~663~^0.031^6^0.001^~1~^~A~^^^1^0.027^0.036^5^0.028^0.034^~2, 3~^~04/01/2014~ -~21428~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2007~ -~21428~^~665~^0.013^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.012^0.015^~2, 3~^~04/01/2014~ -~21428~^~670~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.008^0.010^~2, 3~^~04/01/2014~ -~21428~^~671~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.014^~2, 3~^~04/01/2014~ -~21428~^~672~^0.014^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.013^0.015^~2, 3~^~04/01/2014~ -~21428~^~673~^0.430^6^0.016^~1~^~A~^^^1^0.355^0.473^5^0.388^0.472^~2, 3~^~04/01/2014~ -~21428~^~674~^4.509^6^0.187^~1~^~A~^^^1^3.896^5.087^5^4.028^4.990^~2, 3~^~04/01/2014~ -~21428~^~675~^1.638^6^0.057^~1~^~A~^^^1^1.393^1.773^5^1.492^1.784^~2, 3~^~04/01/2014~ -~21428~^~676~^0.011^6^0.001^~1~^~A~^^^1^0.007^0.016^5^0.007^0.015^~2, 3~^~04/01/2014~ -~21428~^~685~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.013^0.017^~2, 3~^~04/01/2014~ -~21428~^~687~^0.005^6^0.002^~1~^~A~^^^1^0.000^0.008^5^0.001^0.009^~1, 2, 3~^~04/01/2014~ -~21428~^~689~^0.030^6^0.001^~1~^~AS~^^^1^0.027^0.033^5^0.028^0.032^~2, 3~^~04/01/2014~ -~21428~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21428~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~851~^0.255^6^0.018^~1~^~A~^^^1^0.216^0.333^5^0.209^0.300^~2, 3~^~04/01/2014~ -~21428~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~21428~^~853~^0.029^6^0.001^~1~^~A~^^^1^0.026^0.032^5^0.027^0.031^~2, 3~^~04/01/2014~ -~21428~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21428~^~858~^0.022^6^0.001^~1~^~A~^^^1^0.020^0.024^5^0.021^0.024^~2, 3~^~04/01/2014~ -~21429~^~312~^1.011^12^0.935^~1~^~A~^^^1^0.058^11.300^11^-1.048^3.070^~2, 3~^~04/01/2007~ -~21429~^~315~^0.308^12^0.013^~1~^~A~^^^1^0.204^0.370^11^0.278^0.337^~2, 3~^~04/01/2007~ -~21429~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~04/01/2007~ -~21429~^~405~^0.072^4^0.005^~1~^~A~^^^1^0.060^0.080^3^0.057^0.088^~2, 3~^~04/01/2007~ -~21429~^~406~^3.423^4^0.055^~1~^~A~^^^1^3.300^3.543^3^3.250^3.597^~2, 3~^~04/01/2007~ -~21429~^~410~^0.812^4^0.021^~1~^~A~^^^1^0.760^0.850^3^0.747^0.878^~2, 3~^~04/01/2007~ -~21429~^~415~^0.127^4^0.003^~1~^~A~^^^1^0.119^0.133^3^0.117^0.138^~2, 3~^~04/01/2007~ -~21429~^~501~^0.084^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~502~^0.362^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~503~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~504~^0.668^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~505~^0.475^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~506~^0.159^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~507~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~508~^0.419^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~509~^0.335^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~510~^0.399^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~511~^0.620^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~512~^0.261^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~513~^0.624^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~514~^0.744^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~515~^2.562^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~516~^0.921^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~517~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~518~^0.427^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21429~^~521~^0.257^4^0.018^~1~^~A~^^^1^0.230^0.310^3^0.200^0.315^~2, 3~^~04/01/2009~ -~21429~^~605~^0.235^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~606~^7.541^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21429~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21429~^~609~^0.012^6^0.002^~1~^~A~^^^1^0.008^0.023^5^0.006^0.018^~2, 3~^~04/01/2009~ -~21429~^~610~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21429~^~611~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.012^5^0.007^0.013^~2, 3~^~04/01/2009~ -~21429~^~612~^0.099^6^0.004^~1~^~A~^^^1^0.087^0.112^5^0.089^0.109^~2, 3~^~04/01/2009~ -~21429~^~613~^5.563^6^0.125^~1~^~A~^^^1^5.262^5.959^5^5.241^5.885^~2, 3~^~04/01/2009~ -~21429~^~614~^1.625^6^0.055^~1~^~A~^^^1^1.420^1.784^5^1.482^1.767^~2, 3~^~04/01/2009~ -~21429~^~615~^0.075^6^0.002^~1~^~A~^^^1^0.064^0.080^5^0.069^0.081^~2, 3~^~04/01/2009~ -~21429~^~617~^10.510^6^0.182^~1~^~AS~^^^1^9.845^10.947^5^10.042^10.978^~2, 3~^~04/01/2009~ -~21429~^~618~^13.425^6^0.284^~1~^~AS~^^^1^12.497^14.036^5^12.696^14.155^~2, 3~^~04/01/2009~ -~21429~^~619~^0.675^6^0.018^~1~^~AS~^^^1^0.618^0.738^5^0.628^0.722^~2, 3~^~04/01/2009~ -~21429~^~620~^0.048^6^0.005^~1~^~A~^^^1^0.037^0.063^5^0.036^0.060^~2, 3~^~04/01/2009~ -~21429~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21429~^~624~^0.072^6^0.003^~1~^~A~^^^1^0.061^0.078^5^0.065^0.079^~2, 3~^~04/01/2009~ -~21429~^~625~^0.033^6^0.002^~1~^~A~^^^1^0.025^0.040^5^0.027^0.039^~2, 3~^~04/01/2009~ -~21429~^~626~^1.096^6^0.079^~1~^~AS~^^^1^0.861^1.316^5^0.892^1.300^~2, 3~^~04/01/2009~ -~21429~^~627~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21429~^~628~^0.134^6^0.003^~1~^~A~^^^1^0.127^0.146^5^0.128^0.141^~2, 3~^~04/01/2009~ -~21429~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21429~^~630~^0.006^6^0.000^~1~^~AS~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21429~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21429~^~645~^11.816^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~646~^14.238^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~652~^0.013^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.012^0.015^~2, 3~^~04/01/2009~ -~21429~^~653~^0.035^6^0.001^~1~^~A~^^^1^0.031^0.039^5^0.032^0.038^~2, 3~^~04/01/2009~ -~21429~^~654~^0.029^6^0.002^~1~^~A~^^^1^0.023^0.036^5^0.025^0.034^~2, 3~^~04/01/2009~ -~21429~^~662~^0.007^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~04/01/2009~ -~21429~^~663~^0.091^6^0.012^~1~^~A~^^^1^0.070^0.151^5^0.059^0.123^~2, 3~^~04/01/2009~ -~21429~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21429~^~665~^0.137^6^0.010^~1~^~A~^^^1^0.112^0.162^5^0.111^0.162^~2, 3~^~04/01/2009~ -~21429~^~670~^0.044^6^0.002^~1~^~A~^^^1^0.040^0.050^5^0.040^0.048^~2, 3~^~04/01/2009~ -~21429~^~671~^0.016^6^0.001^~1~^~A~^^^1^0.013^0.020^5^0.013^0.018^~2, 3~^~04/01/2009~ -~21429~^~672~^0.026^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.023^0.028^~2, 3~^~04/01/2009~ -~21429~^~673~^1.089^6^0.079^~1~^~A~^^^1^0.856^1.308^5^0.886^1.293^~2, 3~^~04/01/2009~ -~21429~^~674~^10.419^6^0.188^~1~^~A~^^^1^9.755^10.877^5^9.936^10.902^~2, 3~^~04/01/2009~ -~21429~^~675~^13.244^6^0.276^~1~^~A~^^^1^12.343^13.827^5^12.535^13.954^~2, 3~^~04/01/2009~ -~21429~^~676~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21429~^~685~^0.029^6^0.003^~1~^~A~^^^1^0.021^0.039^5^0.022^0.036^~2, 3~^~04/01/2009~ -~21429~^~687~^0.018^6^0.003^~1~^~A~^^^1^0.002^0.024^5^0.009^0.027^~2, 3~^~04/01/2009~ -~21429~^~689~^0.026^6^0.002^~1~^~AS~^^^1^0.021^0.034^5^0.020^0.032^~2, 3~^~04/01/2009~ -~21429~^~693~^0.098^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~695~^0.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21429~^~697~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21429~^~851~^0.646^6^0.019^~1~^~A~^^^1^0.579^0.704^5^0.597^0.695^~2, 3~^~04/01/2009~ -~21429~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21429~^~853~^0.025^6^0.002^~1~^~A~^^^1^0.019^0.032^5^0.019^0.031^~2, 3~^~04/01/2009~ -~21429~^~858~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.027^5^0.020^0.025^~2, 3~^~04/01/2009~ -~21430~^~312~^0.044^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~315~^0.048^0^^~4~^~BFNN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~404~^0.060^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~405~^0.127^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~406~^10.897^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~410~^1.626^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~415~^0.416^0^^~4~^~BFPN~^~21425~^^^^^^^^^~04/01/2007~ -~21430~^~501~^0.208^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~502~^0.899^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~503~^0.800^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~504~^1.661^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~505~^1.182^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~506~^0.395^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~507~^0.316^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~508~^1.042^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~509~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~510~^0.993^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~511~^1.541^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~512~^0.649^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~513~^1.552^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~514~^1.851^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~515~^6.372^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~516~^2.291^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~517~^2.187^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~518~^1.062^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21430~^~521~^0.772^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21430~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~606~^1.196^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21430~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21430~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21430~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21430~^~611~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21430~^~612~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.019^5^0.015^0.018^~2, 3~^~04/01/2009~ -~21430~^~613~^0.851^6^0.054^~1~^~A~^^^1^0.657^1.058^5^0.712^0.990^~2, 3~^~04/01/2009~ -~21430~^~614~^0.290^6^0.017^~1~^~A~^^^1^0.236^0.346^5^0.247^0.333^~2, 3~^~04/01/2009~ -~21430~^~615~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.007^0.011^~2, 3~^~04/01/2009~ -~21430~^~617~^1.466^6^0.091^~1~^~AS~^^^1^1.121^1.791^5^1.233^1.699^~2, 3~^~04/01/2009~ -~21430~^~618~^1.452^6^0.107^~1~^~AS~^^^1^1.061^1.794^5^1.177^1.728^~2, 3~^~04/01/2009~ -~21430~^~619~^0.070^6^0.006^~1~^~AS~^^^1^0.051^0.091^5^0.055^0.084^~2, 3~^~04/01/2009~ -~21430~^~620~^0.043^6^0.001^~1~^~A~^^^1^0.040^0.047^5^0.040^0.046^~2, 3~^~04/01/2009~ -~21430~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21430~^~624~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.007^0.010^~2, 3~^~04/01/2009~ -~21430~^~625~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21430~^~626~^0.175^6^0.016^~1~^~AS~^^^1^0.126^0.237^5^0.133^0.217^~2, 3~^~04/01/2009~ -~21430~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21430~^~628~^0.020^6^0.001^~1~^~A~^^^1^0.015^0.025^5^0.016^0.023^~2, 3~^~04/01/2009~ -~21430~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2009~ -~21430~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21430~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21430~^~645~^1.683^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~646~^1.620^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21430~^~653~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21430~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21430~^~662~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21430~^~663~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.024^5^0.017^0.022^~2, 3~^~04/01/2009~ -~21430~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21430~^~665~^0.018^6^0.002^~1~^~A~^^^1^0.014^0.025^5^0.012^0.024^~2, 3~^~04/01/2009~ -~21430~^~670~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~2, 3~^~04/01/2009~ -~21430~^~671~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21430~^~672~^0.008^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.007^0.010^~2, 3~^~04/01/2009~ -~21430~^~673~^0.174^6^0.017^~1~^~A~^^^1^0.125^0.236^5^0.131^0.216^~2, 3~^~04/01/2009~ -~21430~^~674~^1.446^6^0.090^~1~^~A~^^^1^1.101^1.770^5^1.214^1.679^~2, 3~^~04/01/2009~ -~21430~^~675~^1.428^6^0.105^~1~^~A~^^^1^1.042^1.761^5^1.158^1.697^~2, 3~^~04/01/2009~ -~21430~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21430~^~685~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~04/01/2009~ -~21430~^~687~^0.008^6^0.004^~1~^~A~^^^1^0.004^0.028^5^-0.002^0.018^~2, 3~^~04/01/2009~ -~21430~^~689~^0.020^6^0.001^~1~^~AS~^^^1^0.017^0.023^5^0.018^0.022^~2, 3~^~04/01/2009~ -~21430~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21430~^~697~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.001^0.005^~2, 3~^~04/01/2009~ -~21430~^~851~^0.065^6^0.005^~1~^~A~^^^1^0.048^0.084^5^0.051^0.078^~2, 3~^~04/01/2009~ -~21430~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21430~^~853~^0.019^6^0.001^~1~^~A~^^^1^0.016^0.022^5^0.017^0.021^~2, 3~^~04/01/2009~ -~21430~^~858~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.014^0.019^~2, 3~^~04/01/2009~ -~21431~^~312~^0.084^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~315~^0.056^0^^~4~^~BFNN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~404~^0.050^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~405~^0.262^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~406~^5.244^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~410~^1.292^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~415~^0.247^0^^~4~^~BFPN~^~21426~^^^^^^^^^~04/01/2007~ -~21431~^~501~^0.198^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~502~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~503~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~504~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~505~^1.123^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~506~^0.375^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~507~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~508~^0.990^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~509~^0.792^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~510~^0.944^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~511~^1.464^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~512~^0.617^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~513~^1.475^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~514~^1.759^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~515~^6.055^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~516~^2.177^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~517~^2.078^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~518~^1.009^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21431~^~521~^0.700^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21431~^~605~^0.048^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~606~^1.893^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21431~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21431~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21431~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21431~^~611~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.006^~2, 3~^~04/01/2009~ -~21431~^~612~^0.031^6^0.001^~1~^~A~^^^1^0.028^0.033^5^0.029^0.034^~2, 3~^~04/01/2009~ -~21431~^~613~^1.375^6^0.030^~1~^~A~^^^1^1.285^1.465^5^1.297^1.452^~2, 3~^~04/01/2009~ -~21431~^~614~^0.437^6^0.012^~1~^~A~^^^1^0.392^0.485^5^0.406^0.468^~2, 3~^~04/01/2009~ -~21431~^~615~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.012^~2, 3~^~04/01/2009~ -~21431~^~617~^2.420^6^0.065^~1~^~AS~^^^1^2.236^2.641^5^2.253^2.587^~2, 3~^~04/01/2009~ -~21431~^~618~^1.799^6^0.131^~1~^~AS~^^^1^1.213^2.082^5^1.462^2.137^~2, 3~^~04/01/2009~ -~21431~^~619~^0.089^6^0.007^~1~^~AS~^^^1^0.057^0.104^5^0.070^0.107^~2, 3~^~04/01/2009~ -~21431~^~620~^0.085^6^0.003^~1~^~A~^^^1^0.074^0.091^5^0.078^0.092^~2, 3~^~04/01/2009~ -~21431~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21431~^~624~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.012^~2, 3~^~04/01/2009~ -~21431~^~625~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~2, 3~^~04/01/2009~ -~21431~^~626~^0.425^6^0.014^~1~^~AS~^^^1^0.367^0.452^5^0.390^0.460^~2, 3~^~04/01/2009~ -~21431~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21431~^~628~^0.029^6^0.001^~1~^~A~^^^1^0.025^0.032^5^0.026^0.032^~2, 3~^~04/01/2009~ -~21431~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21431~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21431~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21431~^~645~^2.903^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~646~^2.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2009~ -~21431~^~653~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21431~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21431~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2009~ -~21431~^~663~^0.026^6^0.002^~1~^~A~^^^1^0.021^0.032^5^0.022^0.031^~2, 3~^~04/01/2009~ -~21431~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21431~^~665~^0.019^6^0.002^~1~^~A~^^^1^0.014^0.025^5^0.015^0.023^~2, 3~^~04/01/2009~ -~21431~^~670~^0.009^6^0.001^~1~^~A~^^^1^0.007^0.012^5^0.007^0.011^~2, 3~^~04/01/2009~ -~21431~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21431~^~672~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.012^~2, 3~^~04/01/2009~ -~21431~^~673~^0.422^6^0.014^~1~^~A~^^^1^0.364^0.449^5^0.387^0.457^~2, 3~^~04/01/2009~ -~21431~^~674~^2.393^6^0.064^~1~^~A~^^^1^2.213^2.616^5^2.228^2.559^~2, 3~^~04/01/2009~ -~21431~^~675~^1.771^6^0.130^~1~^~A~^^^1^1.191^2.052^5^1.438^2.104^~2, 3~^~04/01/2009~ -~21431~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21431~^~685~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.009^0.011^~2, 3~^~04/01/2009~ -~21431~^~687~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.002^0.008^~1, 2, 3~^~04/01/2009~ -~21431~^~689~^0.026^6^0.001^~1~^~AS~^^^1^0.023^0.029^5^0.024^0.029^~2, 3~^~04/01/2009~ -~21431~^~693~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21431~^~697~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 2, 3~^~04/01/2009~ -~21431~^~851~^0.079^6^0.007^~1~^~A~^^^1^0.047^0.095^5^0.060^0.097^~2, 3~^~04/01/2009~ -~21431~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21431~^~853~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.023^0.028^~2, 3~^~04/01/2009~ -~21431~^~858~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.027^~2, 3~^~04/01/2009~ -~21432~^~312~^0.087^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~315~^0.054^0^^~4~^~BFNN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~404~^0.055^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~405~^0.245^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~406~^5.317^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~410~^1.349^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~415~^0.288^0^^~4~^~BFPN~^~21427~^^^^^^^^^~04/01/2007~ -~21432~^~501~^0.171^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~502~^0.739^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~503~^0.658^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~504~^1.366^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~505~^0.972^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~506~^0.324^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~507~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~508~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~509~^0.686^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~510~^0.816^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~511~^1.267^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~512~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~513~^1.276^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~514~^1.522^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~515~^5.239^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~516~^1.883^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~517~^1.798^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~518~^0.873^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21432~^~521~^0.615^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21432~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~606~^2.709^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~607~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~04/01/2009~ -~21432~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21432~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21432~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21432~^~611~^0.007^6^0.001^~1~^~A~^^^1^0.003^0.011^5^0.004^0.009^~2, 3~^~04/01/2009~ -~21432~^~612~^0.048^6^0.002^~1~^~A~^^^1^0.042^0.056^5^0.043^0.053^~2, 3~^~04/01/2009~ -~21432~^~613~^2.043^6^0.102^~1~^~A~^^^1^1.836^2.483^5^1.781^2.305^~2, 3~^~04/01/2009~ -~21432~^~614~^0.564^6^0.019^~1~^~A~^^^1^0.528^0.651^5^0.516^0.612^~2, 3~^~04/01/2009~ -~21432~^~615~^0.011^6^0.000^~1~^~A~^^^1^0.009^0.012^5^0.009^0.012^~2, 3~^~04/01/2009~ -~21432~^~617~^3.475^6^0.184^~1~^~AS~^^^1^3.057^4.256^5^3.003^3.947^~2, 3~^~04/01/2009~ -~21432~^~618~^2.018^6^0.045^~1~^~AS~^^^1^1.883^2.152^5^1.902^2.133^~2, 3~^~04/01/2009~ -~21432~^~619~^0.103^6^0.002^~1~^~AS~^^^1^0.095^0.108^5^0.097^0.108^~2, 3~^~04/01/2009~ -~21432~^~620~^0.073^6^0.001^~1~^~A~^^^1^0.068^0.078^5^0.069^0.077^~2, 3~^~04/01/2009~ -~21432~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21432~^~624~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~04/01/2009~ -~21432~^~625~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.022^5^0.014^0.020^~2, 3~^~04/01/2009~ -~21432~^~626~^0.614^6^0.044^~1~^~AS~^^^1^0.493^0.770^5^0.502^0.726^~2, 3~^~04/01/2009~ -~21432~^~627~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21432~^~628~^0.040^6^0.002^~1~^~A~^^^1^0.036^0.048^5^0.035^0.045^~2, 3~^~04/01/2009~ -~21432~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2009~ -~21432~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21432~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21432~^~645~^4.164^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~646~^2.267^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21432~^~653~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~2, 3~^~04/01/2009~ -~21432~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~04/01/2009~ -~21432~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21432~^~663~^0.034^6^0.001^~1~^~A~^^^1^0.028^0.038^5^0.030^0.037^~2, 3~^~04/01/2009~ -~21432~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21432~^~665~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.021^5^0.018^0.020^~2, 3~^~04/01/2009~ -~21432~^~670~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.013^5^0.010^0.012^~2, 3~^~04/01/2009~ -~21432~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.007^~2, 3~^~04/01/2009~ -~21432~^~672~^0.012^6^0.000^~1~^~A~^^^1^0.012^0.013^5^0.012^0.013^~2, 3~^~04/01/2009~ -~21432~^~673~^0.610^6^0.043^~1~^~A~^^^1^0.490^0.765^5^0.498^0.721^~2, 3~^~04/01/2009~ -~21432~^~674~^3.441^6^0.183^~1~^~A~^^^1^3.023^4.218^5^2.972^3.911^~2, 3~^~04/01/2009~ -~21432~^~675~^1.988^6^0.044^~1~^~A~^^^1^1.856^2.119^5^1.875^2.100^~2, 3~^~04/01/2009~ -~21432~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21432~^~685~^0.016^6^0.002^~1~^~A~^^^1^0.012^0.022^5^0.012^0.020^~2, 3~^~04/01/2009~ -~21432~^~687~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.006^0.010^~2, 3~^~04/01/2009~ -~21432~^~689~^0.027^6^0.001^~1~^~AS~^^^1^0.024^0.031^5^0.024^0.029^~2, 3~^~04/01/2009~ -~21432~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21432~^~697~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~21432~^~851~^0.087^6^0.002^~1~^~A~^^^1^0.082^0.094^5^0.082^0.092^~2, 3~^~04/01/2009~ -~21432~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2009~ -~21432~^~853~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.030^5^0.023^0.028^~2, 3~^~04/01/2009~ -~21432~^~858~^0.020^6^0.000^~1~^~A~^^^1^0.018^0.021^5^0.018^0.021^~2, 3~^~04/01/2009~ -~21433~^~312~^0.061^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~315~^0.094^0^^~4~^~BFNN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~404~^0.028^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~405~^0.149^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~406~^7.136^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~410~^1.200^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~415~^0.401^0^^~4~^~BFPN~^~21428~^^^^^^^^^~04/01/2007~ -~21433~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~502~^0.946^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~503~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~504~^1.748^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~505~^1.244^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~506~^0.415^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~507~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~508~^1.096^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~509~^0.877^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~510~^1.044^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~511~^1.621^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~512~^0.683^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~513~^1.633^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~514~^1.947^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~515~^6.703^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~516~^2.410^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~517~^2.300^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~518~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21433~^~521~^0.787^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21433~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~606~^2.603^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~2, 3~^~04/01/2009~ -~21433~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21433~^~609~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.001^0.005^~2, 3~^~04/01/2009~ -~21433~^~610~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~2, 3~^~04/01/2009~ -~21433~^~611~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.007^~2, 3~^~04/01/2009~ -~21433~^~612~^0.037^6^0.003^~1~^~A~^^^1^0.032^0.050^5^0.029^0.044^~2, 3~^~04/01/2009~ -~21433~^~613~^1.879^6^0.109^~1~^~A~^^^1^1.617^2.370^5^1.598^2.159^~2, 3~^~04/01/2009~ -~21433~^~614~^0.604^6^0.041^~1~^~A~^^^1^0.495^0.782^5^0.499^0.708^~2, 3~^~04/01/2009~ -~21433~^~615~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.025^5^0.018^0.024^~2, 3~^~04/01/2009~ -~21433~^~617~^3.416^6^0.180^~1~^~AS~^^^1^2.893^4.173^5^2.953^3.879^~2, 3~^~04/01/2009~ -~21433~^~618~^3.699^6^0.205^~1~^~AS~^^^1^2.997^4.420^5^3.173^4.225^~2, 3~^~04/01/2009~ -~21433~^~619~^0.186^6^0.012^~1~^~AS~^^^1^0.144^0.232^5^0.155^0.217^~2, 3~^~04/01/2009~ -~21433~^~620~^0.073^6^0.003^~1~^~A~^^^1^0.063^0.081^5^0.067^0.080^~2, 3~^~04/01/2009~ -~21433~^~621~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21433~^~624~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.026^5^0.018^0.025^~2, 3~^~04/01/2009~ -~21433~^~625~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.010^0.013^~2, 3~^~04/01/2009~ -~21433~^~626~^0.422^6^0.018^~1~^~AS~^^^1^0.375^0.504^5^0.375^0.470^~2, 3~^~04/01/2009~ -~21433~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21433~^~628~^0.044^6^0.002^~1~^~A~^^^1^0.037^0.054^5^0.038^0.051^~2, 3~^~04/01/2009~ -~21433~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2009~ -~21433~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21433~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21433~^~645~^3.917^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~646~^4.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~2, 3~^~04/01/2009~ -~21433~^~653~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.009^0.013^~2, 3~^~04/01/2009~ -~21433~^~654~^0.010^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.008^0.012^~2, 3~^~04/01/2009~ -~21433~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21433~^~663~^0.035^6^0.005^~1~^~A~^^^1^0.025^0.055^5^0.022^0.048^~2, 3~^~04/01/2009~ -~21433~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21433~^~665~^0.040^6^0.004^~1~^~A~^^^1^0.029^0.056^5^0.029^0.051^~2, 3~^~04/01/2009~ -~21433~^~670~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.019^5^0.011^0.017^~2, 3~^~04/01/2009~ -~21433~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21433~^~672~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.018^5^0.011^0.016^~2, 3~^~04/01/2009~ -~21433~^~673~^0.419^6^0.018^~1~^~A~^^^1^0.372^0.500^5^0.372^0.466^~2, 3~^~04/01/2009~ -~21433~^~674~^3.381^6^0.176^~1~^~A~^^^1^2.867^4.128^5^2.927^3.834^~2, 3~^~04/01/2009~ -~21433~^~675~^3.645^6^0.200^~1~^~A~^^^1^2.957^4.345^5^3.132^4.158^~2, 3~^~04/01/2009~ -~21433~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21433~^~685~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.013^~2, 3~^~04/01/2009~ -~21433~^~687~^0.011^6^0.003^~1~^~A~^^^1^0.004^0.027^5^0.003^0.020^~2, 3~^~04/01/2009~ -~21433~^~689~^0.029^6^0.001^~1~^~AS~^^^1^0.025^0.033^5^0.025^0.032^~2, 3~^~04/01/2009~ -~21433~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21433~^~697~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.001^0.004^~2, 3~^~04/01/2009~ -~21433~^~851~^0.175^6^0.012^~1~^~A~^^^1^0.134^0.219^5^0.145^0.205^~2, 3~^~04/01/2009~ -~21433~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21433~^~853~^0.028^6^0.001^~1~^~A~^^^1^0.024^0.032^5^0.024^0.031^~2, 3~^~04/01/2009~ -~21433~^~858~^0.025^6^0.001^~1~^~A~^^^1^0.023^0.028^5^0.023^0.027^~2, 3~^~04/01/2009~ -~21434~^~312~^0.054^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~315~^0.142^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~404~^0.046^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~405~^0.116^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~406~^8.596^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~410~^1.397^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~415~^0.326^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~501~^0.166^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~502~^0.714^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~503~^0.636^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~504~^1.320^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~505~^0.939^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~506~^0.314^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~507~^0.251^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~508~^0.828^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~509~^0.663^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~510~^0.789^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~511~^1.225^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~512~^0.516^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~513~^1.233^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~514~^1.471^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~515~^5.063^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~516~^1.820^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~517~^1.738^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~518~^0.844^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~521~^0.633^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~605~^0.078^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~606~^2.981^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~609~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~610~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~611~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~612~^0.047^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~613~^2.239^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~614~^0.614^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~615~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~617~^4.011^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~618~^3.866^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~619~^0.189^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~620~^0.046^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~624~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~625~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~626~^0.554^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~628~^0.048^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~631~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~645~^4.653^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~646~^4.166^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21434~^~652~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~653~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~654~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~671~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~672~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21434~^~687~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~689~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21434~^~858~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~312~^0.080^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~315~^0.135^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~404~^0.041^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~405~^0.213^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~406~^4.993^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~410~^1.202^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~415~^0.221^0^^~1~^~RKA~^^^^^^^^^^~04/01/2007~ -~21435~^~501~^0.169^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~502~^0.727^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~503~^0.647^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~504~^1.344^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~505~^0.957^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~506~^0.319^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~507~^0.255^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~508~^0.843^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~509~^0.675^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~510~^0.803^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~511~^1.247^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~512~^0.525^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~513~^1.256^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~514~^1.498^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~515~^5.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~516~^1.853^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~517~^1.769^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~518~^0.859^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~521~^0.605^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~605~^0.081^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~606~^3.240^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~607~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~609~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~610~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~611~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~612~^0.051^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~613~^2.423^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~614~^0.681^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~615~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~617~^4.354^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~618~^3.940^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~619~^0.192^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~620~^0.076^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~624~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~625~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~626~^0.667^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~628~^0.051^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~645~^5.115^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~646~^4.290^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~652~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~653~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~654~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~662~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~663~^0.037^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~05/01/2007~ -~21435~^~665~^0.039^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~670~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~671~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~672~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~673~^0.663^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~674~^4.317^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~675~^3.885^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~676~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~685~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~687~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~689~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~693~^0.041^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~695~^0.039^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21435~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~851~^0.176^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~853~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21435~^~858~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21436~^~312~^0.082^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~315~^0.161^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~404~^0.085^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~405~^0.259^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~406~^5.524^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~410~^0.974^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~415~^0.138^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~501~^0.145^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~502~^0.624^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~503~^0.555^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~504~^1.153^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~505~^0.820^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~506~^0.274^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~507~^0.219^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~508~^0.723^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~509~^0.579^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~510~^0.689^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~511~^1.069^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~512~^0.450^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~513~^1.077^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~514~^1.284^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~515~^4.420^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~516~^1.589^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~517~^1.517^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~518~^0.736^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~521~^0.495^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~605~^0.119^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~606~^4.123^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~610~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~611~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~612~^0.090^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~613~^2.934^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~614~^0.963^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~615~^0.043^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~617~^7.618^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~618~^2.708^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~619~^0.426^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~620~^0.069^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21436~^~624~^0.029^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~625~^0.028^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~626~^0.753^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~627~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~628~^0.160^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~630~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21436~^~645~^8.608^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~646~^3.277^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21436~^~652~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~653~^0.024^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~654~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~671~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~672~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21436~^~687~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~689~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21436~^~858~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~312~^0.075^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~315~^0.175^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~404~^0.072^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~405~^0.221^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~406~^6.335^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~410~^0.966^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~415~^0.188^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~501~^0.166^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~502~^0.716^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~503~^0.637^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~504~^1.323^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~505~^0.941^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~506~^0.314^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~507~^0.251^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~508~^0.830^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~509~^0.664^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~510~^0.790^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~511~^1.227^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~512~^0.517^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~513~^1.236^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~514~^1.474^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~515~^5.073^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~516~^1.824^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~517~^1.741^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~518~^0.845^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~521~^0.596^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~605~^0.127^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~606~^4.251^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~609~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~610~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~611~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~612~^0.092^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~613~^2.985^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~614~^1.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~615~^0.052^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~617~^8.566^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~618~^2.982^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~619~^0.529^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~620~^0.073^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21437~^~624~^0.034^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~625~^0.028^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~626~^0.758^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~627~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~628~^0.187^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21437~^~630~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~631~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~645~^9.595^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~646~^3.669^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21437~^~652~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~653~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~654~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~671~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~672~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~687~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~689~^0.030^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21437~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21437~^~858~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21438~^~312~^0.400^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~315~^0.144^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~404~^0.043^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~405~^0.107^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~406~^8.139^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~410~^1.326^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~415~^0.309^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21438~^~501~^0.162^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~502~^0.701^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~503~^0.623^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~504~^1.295^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~505~^0.921^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~506~^0.308^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~507~^0.246^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~508~^0.812^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~509~^0.650^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~510~^0.774^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~511~^1.201^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~512~^0.506^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~513~^1.210^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~514~^1.443^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~515~^4.966^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~516~^1.785^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~517~^1.704^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~518~^0.827^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~521~^0.582^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~605~^0.111^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~606~^3.538^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~609~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~610~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~611~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~612~^0.047^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~613~^2.590^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~614~^0.782^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~615~^0.033^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~617~^4.803^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~618~^5.870^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~619~^0.293^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~620~^0.045^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~624~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~625~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~626~^0.515^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~628~^0.062^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~631~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~645~^5.422^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~646~^6.276^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~652~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~653~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~654~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~662~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~663~^0.046^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~665~^0.062^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~670~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~671~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~672~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~673~^0.512^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~674~^4.757^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~675~^5.788^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~676~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~685~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~687~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~689~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~693~^0.049^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~695~^0.062^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21438~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~851~^0.279^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~853~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21438~^~858~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~312~^0.411^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~315~^0.145^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~404~^0.037^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~405~^0.195^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~406~^4.601^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~410~^1.122^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~415~^0.204^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21439~^~501~^0.158^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~502~^0.680^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~503~^0.605^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~504~^1.257^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~505~^0.895^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~506~^0.299^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~507~^0.239^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~508~^0.789^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~509~^0.631^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~510~^0.751^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~511~^1.166^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~512~^0.491^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~513~^1.175^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~514~^1.401^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~515~^4.822^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~516~^1.734^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~517~^1.655^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~518~^0.803^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~521~^0.544^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~605~^0.114^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~606~^3.887^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~609~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~610~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~611~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~612~^0.055^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~613~^2.853^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~614~^0.856^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~615~^0.033^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~617~^5.276^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~618~^5.903^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~619~^0.296^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~620~^0.072^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~624~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~625~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~626~^0.662^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~628~^0.066^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~630~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~645~^6.049^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~646~^6.353^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~652~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~653~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~654~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~662~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~663~^0.049^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~665~^0.061^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~670~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~671~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~672~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~673~^0.658^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~674~^5.226^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~675~^5.821^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~676~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~685~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~687~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~689~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~693~^0.054^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~695~^0.061^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21439~^~697~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~851~^0.279^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~853~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21439~^~858~^0.024^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~312~^0.509^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~315~^0.170^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~404~^0.037^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~405~^0.166^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~406~^4.451^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~410~^1.104^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~415~^0.215^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21440~^~501~^0.131^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~502~^0.567^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~503~^0.504^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~504~^1.047^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~505~^0.745^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~506~^0.249^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~507~^0.199^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~508~^0.657^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~509~^0.526^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~510~^0.626^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~511~^0.971^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~512~^0.409^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~513~^0.978^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~514~^1.167^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~515~^4.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~516~^1.444^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~517~^1.378^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~518~^0.669^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~521~^0.452^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~605~^0.138^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~606~^4.917^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~607~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~609~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~610~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~611~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~612~^0.071^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~613~^3.651^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~614~^1.049^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~615~^0.040^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~617~^6.690^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~618~^7.231^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~619~^0.364^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~620~^0.061^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~624~^0.038^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~625~^0.024^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~626~^0.834^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~627~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~628~^0.083^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~630~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~631~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~645~^7.661^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~646~^7.738^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~652~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~653~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~654~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~662~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~663~^0.060^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~665~^0.073^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~670~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~671~^0.011^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~672~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~673~^0.829^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~674~^6.630^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~675~^7.132^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~676~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~685~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~687~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~689~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~693~^0.065^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~695~^0.073^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21440~^~697~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~851~^0.342^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~853~^0.025^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21440~^~858~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~312~^0.483^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~315~^0.189^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~404~^0.022^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~405~^0.115^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~406~^5.488^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~410~^1.028^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~415~^0.280^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21441~^~501~^0.159^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~502~^0.686^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~503~^0.611^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~504~^1.268^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~505~^0.903^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~506~^0.301^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~507~^0.241^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~508~^0.796^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~509~^0.637^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~510~^0.758^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~511~^1.177^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~512~^0.496^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~513~^1.185^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~514~^1.413^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~515~^4.865^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~516~^1.749^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~517~^1.670^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~518~^0.810^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~521~^0.552^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~605~^0.148^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~606~^4.796^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~609~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~610~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~611~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~612~^0.065^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~613~^3.514^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~614~^1.057^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~615~^0.045^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~617~^6.566^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~618~^8.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~619~^0.403^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~620~^0.062^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~624~^0.044^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~625~^0.021^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~626~^0.721^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~627~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~628~^0.084^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~630~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~645~^7.424^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~646~^8.570^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~652~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~653~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~654~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~662~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~663~^0.060^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~665~^0.083^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~670~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~671~^0.011^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~672~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~673~^0.717^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~674~^6.506^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~675~^7.907^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~676~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~685~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~687~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~689~^0.028^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~693~^0.065^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~695~^0.083^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21441~^~697~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~851~^0.384^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~853~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21441~^~858~^0.024^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21442~^~312~^0.052^6^0.005^~1~^~A~^^^1^0.041^0.078^5^0.039^0.066^~2, 3~^~04/01/2014~ -~21442~^~315~^0.030^6^0.002^~1~^~A~^^^1^0.025^0.034^5^0.026^0.034^~2, 3~^~04/01/2014~ -~21442~^~404~^0.107^3^0.010^~1~^~A~^^^1^0.092^0.125^2^0.066^0.148^~2, 3~^~04/01/2014~ -~21442~^~405~^0.240^3^0.006^~1~^~A~^^^1^0.230^0.250^2^0.215^0.265^~2, 3~^~04/01/2014~ -~21442~^~406~^9.393^3^0.419^~1~^~A~^^^1^8.650^10.100^2^7.590^11.196^~2, 3~^~04/01/2014~ -~21442~^~410~^1.500^2^^~1~^~A~^^^1^1.500^1.500^^^^^~04/01/2014~ -~21442~^~415~^0.370^3^0.035^~1~^~A~^^^1^0.330^0.440^2^0.219^0.521^~2, 3~^~04/01/2014~ -~21442~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~502~^0.956^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~503~^0.851^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~504~^1.767^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~505~^1.257^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~506~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~508~^1.108^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~509~^0.887^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~510~^1.056^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~511~^1.639^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~512~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~513~^1.651^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~514~^1.969^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~515~^6.776^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~516~^2.436^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~517~^2.326^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~518~^1.129^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21442~^~521~^0.759^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~ -~21442~^~605~^0.083^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~606~^1.368^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~607~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.009^~2, 3~^~04/01/2014~ -~21442~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~610~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.020^3^0.013^0.021^~2, 3~^~04/01/2014~ -~21442~^~611~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.007^3^0.002^0.007^~2, 3~^~04/01/2014~ -~21442~^~612~^0.049^4^0.005^~1~^~A~^^^1^0.039^0.060^3^0.034^0.064^~2, 3~^~04/01/2014~ -~21442~^~613~^0.868^4^0.044^~1~^~A~^^^1^0.752^0.969^3^0.726^1.009^~2, 3~^~04/01/2014~ -~21442~^~614~^0.389^4^0.025^~1~^~A~^^^1^0.317^0.429^3^0.310^0.467^~2, 3~^~04/01/2014~ -~21442~^~615~^0.004^4^0.002^~1~^~A~^^^1^0.002^0.009^3^-0.001^0.009^~1, 2, 3~^~04/01/2014~ -~21442~^~617~^1.561^4^0.217^~1~^~AS~^^^1^1.192^2.187^3^0.872^2.251^~2, 3~^~04/01/2014~ -~21442~^~618~^0.474^4^0.092^~1~^~AS~^^^1^0.364^0.749^3^0.179^0.768^~2, 3~^~04/01/2014~ -~21442~^~619~^0.035^4^0.019^~1~^~AS~^^^1^0.013^0.093^3^-0.027^0.096^~2, 3~^~04/01/2014~ -~21442~^~620~^0.043^4^0.004^~1~^~A~^^^1^0.036^0.055^3^0.029^0.056^~2, 3~^~04/01/2014~ -~21442~^~621~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~04/01/2009~ -~21442~^~624~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.005^3^0.000^0.006^~1, 2, 3~^~04/01/2009~ -~21442~^~625~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.016^3^0.011^0.017^~2, 3~^~04/01/2014~ -~21442~^~626~^0.178^4^0.010^~1~^~AS~^^^1^0.159^0.206^3^0.146^0.210^~2, 3~^~04/01/2014~ -~21442~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21442~^~628~^0.024^4^0.006^~1~^~A~^^^1^0.017^0.043^3^0.004^0.044^~2, 3~^~04/01/2014~ -~21442~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~630~^0.002^4^0.001^~1~^~AS~^^^1^0.001^0.005^3^-0.001^0.005^~2, 3~^~04/01/2009~ -~21442~^~631~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~04/01/2009~ -~21442~^~645~^1.789^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~646~^0.596^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~652~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.011^3^0.006^0.012^~2, 3~^~04/01/2009~ -~21442~^~653~^0.017^4^0.002^~1~^~A~^^^1^0.013^0.022^3^0.010^0.024^~2, 3~^~04/01/2014~ -~21442~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~21442~^~662~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.008^~2, 3~^~04/01/2014~ -~21442~^~663~^0.070^4^0.009^~1~^~A~^^^1^0.050^0.092^3^0.041^0.099^~2, 3~^~04/01/2014~ -~21442~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21442~^~665~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.010^3^0.005^0.010^~2, 3~^~04/01/2014~ -~21442~^~670~^0.006^4^0.001^~1~^~A~^^^1^0.004^0.006^3^0.004^0.007^~2, 3~^~04/01/2014~ -~21442~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~672~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.009^~2, 3~^~04/01/2014~ -~21442~^~673~^0.173^4^0.010^~1~^~A~^^^1^0.155^0.202^3^0.140^0.206^~2, 3~^~04/01/2014~ -~21442~^~674~^1.491^4^0.217^~1~^~A~^^^1^1.142^2.125^3^0.800^2.183^~2, 3~^~04/01/2014~ -~21442~^~675~^0.460^4^0.091^~1~^~A~^^^1^0.354^0.733^3^0.169^0.752^~2, 3~^~04/01/2014~ -~21442~^~676~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.005^3^-0.001^0.005^~1, 2, 3~^~04/01/2009~ -~21442~^~685~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~04/01/2014~ -~21442~^~687~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.012^3^0.006^0.013^~2, 3~^~04/01/2014~ -~21442~^~689~^0.018^4^0.001^~1~^~AS~^^^1^0.016^0.022^3^0.013^0.022^~2, 3~^~04/01/2009~ -~21442~^~693~^0.075^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21442~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~851~^0.033^4^0.018^~1~^~A~^^^1^0.013^0.088^3^-0.024^0.091^~2, 3~^~04/01/2014~ -~21442~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21442~^~853~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.013^0.020^~2, 3~^~04/01/2014~ -~21442~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21442~^~858~^0.010^4^0.001^~1~^~A~^^^1^0.009^0.014^3^0.007^0.014^~2, 3~^~04/01/2014~ -~21443~^~312~^0.084^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~315~^0.046^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2007~ -~21443~^~404~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21443~^~405~^0.341^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21443~^~406~^6.150^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21443~^~410~^1.469^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21443~^~415~^0.296^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2007~ -~21443~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~502~^0.875^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~503~^0.778^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~504~^1.616^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~505~^1.150^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~506~^0.384^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~507~^0.307^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~508~^1.014^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~509~^0.811^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~510~^0.966^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~511~^1.499^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~512~^0.632^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~513~^1.510^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~514~^1.801^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~515~^6.199^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~516~^2.228^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~517~^2.127^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~518~^1.033^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21443~^~521~^0.686^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21443~^~605~^0.130^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~606~^2.282^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~607~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~04/01/2009~ -~21443~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2009~ -~21443~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21443~^~610~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21443~^~611~^0.007^6^0.001^~1~^~A~^^^1^0.003^0.011^5^0.004^0.010^~2, 3~^~04/01/2009~ -~21443~^~612~^0.077^6^0.004^~1~^~A~^^^1^0.064^0.088^5^0.067^0.088^~2, 3~^~04/01/2009~ -~21443~^~613~^1.526^6^0.049^~1~^~A~^^^1^1.358^1.643^5^1.399^1.652^~2, 3~^~04/01/2009~ -~21443~^~614~^0.612^6^0.020^~1~^~A~^^^1^0.537^0.676^5^0.562^0.663^~2, 3~^~04/01/2009~ -~21443~^~615~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~2, 3~^~04/01/2009~ -~21443~^~617~^2.558^6^0.077^~1~^~AS~^^^1^2.316^2.765^5^2.361^2.755^~2, 3~^~04/01/2009~ -~21443~^~618~^0.838^6^0.041^~1~^~AS~^^^1^0.743^0.957^5^0.734^0.942^~2, 3~^~04/01/2009~ -~21443~^~619~^0.042^6^0.003^~1~^~AS~^^^1^0.035^0.051^5^0.035^0.050^~2, 3~^~04/01/2009~ -~21443~^~620~^0.066^6^0.002^~1~^~A~^^^1^0.061^0.074^5^0.061^0.071^~2, 3~^~04/01/2009~ -~21443~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21443~^~624~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2009~ -~21443~^~625~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.024^5^0.018^0.023^~2, 3~^~04/01/2009~ -~21443~^~626~^0.448^6^0.012^~1~^~AS~^^^1^0.401^0.475^5^0.418^0.478^~2, 3~^~04/01/2009~ -~21443~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2009~ -~21443~^~628~^0.028^6^0.001^~1~^~A~^^^1^0.025^0.030^5^0.026^0.030^~2, 3~^~04/01/2009~ -~21443~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21443~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21443~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2009~ -~21443~^~645~^3.079^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~646~^1.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~652~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.010^0.013^~2, 3~^~04/01/2009~ -~21443~^~653~^0.024^6^0.001^~1~^~A~^^^1^0.020^0.028^5^0.021^0.027^~2, 3~^~04/01/2009~ -~21443~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~04/01/2009~ -~21443~^~662~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~04/01/2009~ -~21443~^~663~^0.103^6^0.005^~1~^~A~^^^1^0.091^0.123^5^0.089^0.117^~2, 3~^~04/01/2009~ -~21443~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~21443~^~665~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.020^5^0.017^0.019^~2, 3~^~04/01/2009~ -~21443~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.011^0.013^~2, 3~^~04/01/2009~ -~21443~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~04/01/2009~ -~21443~^~672~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~2, 3~^~04/01/2009~ -~21443~^~673~^0.440^6^0.012^~1~^~A~^^^1^0.393^0.466^5^0.410^0.470^~2, 3~^~04/01/2009~ -~21443~^~674~^2.455^6^0.073^~1~^~A~^^^1^2.225^2.649^5^2.268^2.643^~2, 3~^~04/01/2009~ -~21443~^~675~^0.808^6^0.040^~1~^~A~^^^1^0.712^0.923^5^0.705^0.911^~2, 3~^~04/01/2009~ -~21443~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21443~^~685~^0.008^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.009^~2, 3~^~04/01/2009~ -~21443~^~687~^0.013^6^0.002^~1~^~A~^^^1^0.006^0.018^5^0.008^0.019^~2, 3~^~04/01/2009~ -~21443~^~689~^0.023^6^0.000^~1~^~AS~^^^1^0.022^0.025^5^0.022^0.024^~2, 3~^~04/01/2009~ -~21443~^~693~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~21443~^~697~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2009~ -~21443~^~851~^0.035^6^0.003^~1~^~A~^^^1^0.027^0.042^5^0.028^0.041^~2, 3~^~04/01/2009~ -~21443~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~04/01/2009~ -~21443~^~853~^0.022^6^0.000^~1~^~A~^^^1^0.021^0.024^5^0.021^0.023^~2, 3~^~04/01/2009~ -~21443~^~858~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.020^5^0.017^0.020^~2, 3~^~04/01/2009~ -~21444~^~312~^0.069^6^0.004^~1~^~A~^^^1^0.059^0.084^5^0.059^0.078^~2, 3~^~04/01/2014~ -~21444~^~315~^0.241^6^0.005^~1~^~A~^^^1^0.221^0.260^5^0.227^0.255^~2, 3~^~04/01/2014~ -~21444~^~404~^0.165^2^^~1~^~A~^^^1^0.150^0.180^1^^^^~04/01/2014~ -~21444~^~405~^0.283^3^0.003^~1~^~A~^^^1^0.280^0.290^2^0.269^0.297^~2, 3~^~04/01/2014~ -~21444~^~406~^5.353^3^0.174^~1~^~A~^^^1^5.070^5.670^2^4.605^6.102^~2, 3~^~04/01/2014~ -~21444~^~410~^0.740^2^^~1~^~A~^^^1^0.720^0.760^1^^^^~04/01/2014~ -~21444~^~415~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~2, 3~^~04/01/2014~ -~21444~^~501~^0.107^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~502~^0.461^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~503~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~504~^0.851^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~505~^0.606^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~506~^0.202^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~508~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~509~^0.427^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~510~^0.509^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~511~^0.789^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~512~^0.333^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~513~^0.795^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~514~^0.948^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~515~^3.264^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~516~^1.173^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~517~^1.120^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~518~^0.544^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21444~^~521~^0.315^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21444~^~605~^1.240^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~606~^11.750^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~609~^0.005^5^0.001^~1~^~A~^^^1^0.003^0.007^4^0.003^0.007^~2, 3~^~04/01/2014~ -~21444~^~610~^0.014^5^0.001^~1~^~A~^^^1^0.012^0.016^4^0.012^0.016^~2, 3~^~04/01/2014~ -~21444~^~611~^0.022^5^0.001^~1~^~A~^^^1^0.020^0.023^4^0.020^0.023^~2, 3~^~04/01/2014~ -~21444~^~612~^0.617^5^0.016^~1~^~A~^^^1^0.573^0.666^4^0.574^0.660^~2, 3~^~04/01/2014~ -~21444~^~613~^7.004^5^0.210^~1~^~A~^^^1^6.585^7.790^4^6.422^7.587^~2, 3~^~04/01/2014~ -~21444~^~614~^3.679^5^0.100^~1~^~A~^^^1^3.405^4.003^4^3.402^3.956^~2, 3~^~04/01/2014~ -~21444~^~615~^0.033^5^0.001^~1~^~A~^^^1^0.031^0.036^4^0.030^0.035^~2, 3~^~04/01/2014~ -~21444~^~617~^12.332^5^0.334^~1~^~AS~^^^1^11.505^13.491^4^11.405^13.258^~2, 3~^~04/01/2014~ -~21444~^~618~^2.803^5^0.074^~1~^~AS~^^^1^2.550^2.967^4^2.597^3.008^~2, 3~^~04/01/2014~ -~21444~^~619~^0.154^5^0.002^~1~^~AS~^^^1^0.149^0.159^4^0.149^0.159^~2, 3~^~04/01/2014~ -~21444~^~620~^0.054^5^0.002^~1~^~A~^^^1^0.047^0.059^4^0.048^0.061^~2, 3~^~04/01/2014~ -~21444~^~621~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21444~^~624~^0.014^5^0.001^~1~^~A~^^^1^0.011^0.015^4^0.012^0.016^~2, 3~^~04/01/2014~ -~21444~^~625~^0.167^5^0.006^~1~^~A~^^^1^0.148^0.185^4^0.150^0.183^~2, 3~^~04/01/2014~ -~21444~^~626~^1.351^5^0.051^~1~^~AS~^^^1^1.209^1.476^4^1.208^1.493^~2, 3~^~04/01/2014~ -~21444~^~627~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~04/01/2014~ -~21444~^~628~^0.144^5^0.004^~1~^~A~^^^1^0.134^0.158^4^0.132^0.155^~2, 3~^~04/01/2014~ -~21444~^~629~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~21444~^~630~^0.004^5^0.000^~1~^~AS~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~04/01/2014~ -~21444~^~631~^0.007^5^0.000^~1~^~A~^^^1^0.006^0.008^4^0.006^0.008^~2, 3~^~04/01/2009~ -~21444~^~645~^14.151^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~646~^3.094^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~652~^0.099^5^0.002^~1~^~A~^^^1^0.094^0.103^4^0.093^0.104^~2, 3~^~04/01/2014~ -~21444~^~653~^0.259^5^0.006^~1~^~A~^^^1^0.243^0.275^4^0.243^0.274^~2, 3~^~04/01/2014~ -~21444~^~654~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.006^4^0.004^0.006^~2, 3~^~04/01/2014~ -~21444~^~662~^0.076^5^0.002^~1~^~A~^^^1^0.073^0.081^4^0.072^0.080^~2, 3~^~04/01/2014~ -~21444~^~663~^1.039^5^0.011^~1~^~A~^^^1^1.001^1.063^4^1.008^1.069^~2, 3~^~04/01/2014~ -~21444~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21444~^~665~^0.124^5^0.003^~1~^~A~^^^1^0.118^0.133^4^0.116^0.131^~2, 3~^~04/01/2014~ -~21444~^~670~^0.089^5^0.006^~1~^~A~^^^1^0.068^0.102^4^0.073^0.104^~2, 3~^~04/01/2014~ -~21444~^~671~^0.005^5^0.000^~1~^~A~^^^1^0.003^0.006^4^0.003^0.006^~2, 3~^~04/01/2009~ -~21444~^~672~^0.019^5^0.000^~1~^~A~^^^1^0.018^0.019^4^0.018^0.019^~2, 3~^~04/01/2014~ -~21444~^~673~^1.275^5^0.051^~1~^~A~^^^1^1.136^1.399^4^1.132^1.417^~2, 3~^~04/01/2014~ -~21444~^~674~^11.293^5^0.334^~1~^~A~^^^1^10.472^12.452^4^10.366^12.220^~2, 3~^~04/01/2014~ -~21444~^~675~^2.590^5^0.077^~1~^~A~^^^1^2.328^2.740^4^2.377^2.803^~2, 3~^~04/01/2014~ -~21444~^~676~^0.004^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~04/01/2014~ -~21444~^~685~^0.007^5^0.000^~1~^~A~^^^1^0.006^0.007^4^0.006^0.007^~2, 3~^~04/01/2014~ -~21444~^~687~^0.150^5^0.004^~1~^~A~^^^1^0.140^0.158^4^0.139^0.160^~2, 3~^~04/01/2014~ -~21444~^~689~^0.032^5^0.001^~1~^~AS~^^^1^0.030^0.034^4^0.030^0.034^~2, 3~^~04/01/2014~ -~21444~^~693~^1.115^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~695~^0.125^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21444~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21444~^~851~^0.146^5^0.001^~1~^~A~^^^1^0.142^0.150^4^0.142^0.150^~2, 3~^~04/01/2014~ -~21444~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2009~ -~21444~^~853~^0.030^5^0.001^~1~^~A~^^^1^0.028^0.032^4^0.028^0.032^~2, 3~^~04/01/2014~ -~21444~^~856~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21444~^~858~^0.015^5^0.001^~1~^~A~^^^1^0.013^0.017^4^0.013^0.018^~2, 3~^~04/01/2014~ -~21445~^~312~^0.098^6^0.002^~1~^~A~^^^1^0.094^0.103^5^0.094^0.102^~2, 3~^~06/01/2014~ -~21445~^~315~^0.037^6^0.002^~1~^~A~^^^1^0.032^0.046^5^0.031^0.043^~2, 3~^~06/01/2014~ -~21445~^~404~^0.111^3^0.003^~1~^~A~^^^1^0.107^0.118^2^0.097^0.126^~2, 3~^~06/01/2014~ -~21445~^~405~^0.407^3^0.015^~1~^~A~^^^1^0.380^0.430^2^0.344^0.469^~2, 3~^~06/01/2014~ -~21445~^~406~^6.020^3^0.243^~1~^~A~^^^1^5.540^6.330^2^4.973^7.067^~2, 3~^~06/01/2014~ -~21445~^~410~^1.605^2^^~1~^~A~^^^1^1.510^1.700^1^^^^~06/01/2014~ -~21445~^~415~^0.364^3^0.031^~1~^~A~^^^1^0.319^0.423^2^0.232^0.497^~2, 3~^~06/01/2014~ -~21445~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~502~^0.791^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~503~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~504~^1.461^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~505~^1.040^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~506~^0.347^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~508~^0.917^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~509~^0.733^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~510~^0.873^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~511~^1.355^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~512~^0.571^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~513~^1.365^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~514~^1.628^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~515~^5.605^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~516~^2.015^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~517~^1.923^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~518~^0.934^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21445~^~521~^0.633^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21445~^~605~^0.104^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~606~^2.938^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~607~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~06/01/2014~ -~21445~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2009~ -~21445~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2009~ -~21445~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2014~ -~21445~^~611~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~06/01/2014~ -~21445~^~612~^0.083^6^0.004^~1~^~A~^^^1^0.072^0.092^5^0.073^0.092^~2, 3~^~06/01/2014~ -~21445~^~613~^2.101^6^0.047^~1~^~A~^^^1^1.965^2.299^5^1.980^2.223^~2, 3~^~06/01/2014~ -~21445~^~614~^0.696^6^0.024^~1~^~A~^^^1^0.614^0.779^5^0.634^0.757^~2, 3~^~06/01/2014~ -~21445~^~615~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~06/01/2014~ -~21445~^~617~^3.464^6^0.100^~1~^~AS~^^^1^3.205^3.884^5^3.206^3.721^~2, 3~^~06/01/2014~ -~21445~^~618~^1.305^6^0.038^~1~^~AS~^^^1^1.174^1.461^5^1.207^1.403^~2, 3~^~06/01/2014~ -~21445~^~619~^0.061^6^0.004^~1~^~AS~^^^1^0.052^0.078^5^0.051^0.070^~2, 3~^~06/01/2014~ -~21445~^~620~^0.071^6^0.003^~1~^~A~^^^1^0.061^0.076^5^0.065^0.078^~2, 3~^~06/01/2014~ -~21445~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~06/01/2014~ -~21445~^~624~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~625~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.027^5^0.022^0.027^~2, 3~^~06/01/2014~ -~21445~^~626~^0.548^6^0.011^~1~^~AS~^^^1^0.522^0.599^5^0.520^0.577^~2, 3~^~06/01/2014~ -~21445~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2009~ -~21445~^~628~^0.051^6^0.001^~1~^~A~^^^1^0.046^0.056^5^0.047^0.055^~2, 3~^~06/01/2014~ -~21445~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~06/01/2014~ -~21445~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~06/01/2014~ -~21445~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~06/01/2014~ -~21445~^~645~^4.107^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~646~^1.499^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~652~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.014^5^0.010^0.014^~2, 3~^~06/01/2014~ -~21445~^~653~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.027^5^0.019^0.027^~2, 3~^~06/01/2014~ -~21445~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~06/01/2014~ -~21445~^~662~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~06/01/2014~ -~21445~^~663~^0.084^6^0.006^~1~^~A~^^^1^0.068^0.101^5^0.069^0.100^~2, 3~^~06/01/2014~ -~21445~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21445~^~665~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.014^~2, 3~^~06/01/2014~ -~21445~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.013^5^0.010^0.013^~2, 3~^~06/01/2014~ -~21445~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~672~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.013^5^0.010^0.012^~2, 3~^~06/01/2014~ -~21445~^~673~^0.542^6^0.011^~1~^~A~^^^1^0.514^0.592^5^0.513^0.570^~2, 3~^~06/01/2014~ -~21445~^~674~^3.379^6^0.097^~1~^~A~^^^1^3.137^3.789^5^3.131^3.628^~2, 3~^~06/01/2014~ -~21445~^~675~^1.280^6^0.038^~1~^~A~^^^1^1.149^1.433^5^1.183^1.377^~2, 3~^~06/01/2014~ -~21445~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~21445~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~06/01/2014~ -~21445~^~687~^0.018^6^0.001^~1~^~A~^^^1^0.016^0.022^5^0.016^0.021^~2, 3~^~06/01/2014~ -~21445~^~689~^0.022^6^0.001^~1~^~AS~^^^1^0.020^0.024^5^0.020^0.023^~2, 3~^~06/01/2014~ -~21445~^~693~^0.091^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21445~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~851~^0.060^6^0.004^~1~^~A~^^^1^0.051^0.076^5^0.051^0.069^~2, 3~^~06/01/2014~ -~21445~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2009~ -~21445~^~853~^0.021^6^0.001^~1~^~A~^^^1^0.019^0.023^5^0.019^0.022^~2, 3~^~06/01/2014~ -~21445~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2014~ -~21445~^~858~^0.016^6^0.000^~1~^~A~^^^1^0.014^0.017^5^0.015^0.017^~2, 3~^~06/01/2014~ -~21446~^~312~^0.093^6^0.014^~1~^~A~^^^1^0.063^0.143^5^0.057^0.128^~2, 3~^~04/01/2014~ -~21446~^~315~^0.041^6^0.003^~1~^~A~^^^1^0.032^0.051^5^0.033^0.049^~2, 3~^~04/01/2014~ -~21446~^~404~^0.098^3^0.007^~1~^~A~^^^1^0.086^0.109^2^0.070^0.126^~2, 3~^~04/01/2014~ -~21446~^~405~^0.297^3^0.009^~1~^~A~^^^1^0.280^0.310^2^0.259^0.335^~2, 3~^~04/01/2014~ -~21446~^~406~^8.127^3^0.530^~1~^~A~^^^1^7.500^9.180^2^5.847^10.406^~2, 3~^~04/01/2014~ -~21446~^~410~^1.350^2^^~1~^~A~^^^1^1.300^1.400^1^^^^~04/01/2014~ -~21446~^~415~^0.300^3^0.006^~1~^~A~^^^1^0.290^0.310^2^0.275^0.325^~2, 3~^~04/01/2014~ -~21446~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~502~^0.955^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~503~^0.849^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~504~^1.764^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~505~^1.255^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~506~^0.419^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~507~^0.335^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~508~^1.107^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~509~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~510~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~511~^1.636^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~512~^0.689^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~21446~^~513~^1.648^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~514~^1.966^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~515~^6.767^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~516~^2.432^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~517~^2.322^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~518~^1.127^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~21446~^~521~^0.769^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2009~ -~21446~^~605~^0.196^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~606~^3.079^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21446~^~610~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21446~^~611~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.007^5^0.004^0.007^~2, 3~^~04/01/2014~ -~21446~^~612~^0.111^6^0.009^~1~^~A~^^^1^0.085^0.137^5^0.089^0.134^~2, 3~^~04/01/2014~ -~21446~^~613~^2.050^6^0.167^~1~^~A~^^^1^1.611^2.680^5^1.621^2.480^~2, 3~^~04/01/2014~ -~21446~^~614~^0.834^6^0.060^~1~^~A~^^^1^0.659^1.016^5^0.681^0.988^~2, 3~^~04/01/2014~ -~21446~^~615~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.012^5^0.008^0.011^~2, 3~^~04/01/2014~ -~21446~^~617~^3.430^6^0.285^~1~^~AS~^^^1^2.654^4.527^5^2.697^4.164^~2, 3~^~04/01/2014~ -~21446~^~618~^1.171^6^0.137^~1~^~AS~^^^1^0.885^1.803^5^0.820^1.522^~2, 3~^~04/01/2014~ -~21446~^~619~^0.053^6^0.007^~1~^~AS~^^^1^0.036^0.084^5^0.035^0.070^~2, 3~^~04/01/2014~ -~21446~^~620~^0.082^6^0.003^~1~^~A~^^^1^0.069^0.090^5^0.074^0.090^~2, 3~^~04/01/2014~ -~21446~^~621~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2014~ -~21446~^~624~^0.006^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.007^~2, 3~^~04/01/2009~ -~21446~^~625~^0.031^6^0.002^~1~^~A~^^^1^0.024^0.037^5^0.025^0.037^~2, 3~^~04/01/2014~ -~21446~^~626~^0.480^6^0.036^~1~^~AS~^^^1^0.390^0.619^5^0.387^0.572^~2, 3~^~04/01/2014~ -~21446~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~21446~^~628~^0.050^6^0.004^~1~^~A~^^^1^0.040^0.067^5^0.040^0.061^~2, 3~^~04/01/2014~ -~21446~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2009~ -~21446~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~04/01/2014~ -~21446~^~631~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.009^~2, 3~^~04/01/2014~ -~21446~^~645~^4.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~646~^1.391^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~652~^0.017^6^0.001^~1~^~A~^^^1^0.013^0.021^5^0.013^0.020^~2, 3~^~04/01/2014~ -~21446~^~653~^0.039^6^0.004^~1~^~A~^^^1^0.028^0.050^5^0.030^0.049^~2, 3~^~04/01/2014~ -~21446~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.005^~2, 3~^~04/01/2014~ -~21446~^~662~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.016^5^0.010^0.016^~2, 3~^~04/01/2014~ -~21446~^~663~^0.160^6^0.015^~1~^~A~^^^1^0.114^0.198^5^0.122^0.198^~2, 3~^~04/01/2014~ -~21446~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~21446~^~665~^0.023^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.017^0.028^~2, 3~^~04/01/2014~ -~21446~^~670~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.020^5^0.011^0.018^~2, 3~^~04/01/2014~ -~21446~^~671~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2009~ -~21446~^~672~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.018^5^0.011^0.016^~2, 3~^~04/01/2009~ -~21446~^~673~^0.466^6^0.035^~1~^~A~^^^1^0.380^0.603^5^0.377^0.556^~2, 3~^~04/01/2014~ -~21446~^~674~^3.270^6^0.272^~1~^~A~^^^1^2.540^4.329^5^2.571^3.969^~2, 3~^~04/01/2014~ -~21446~^~675~^1.134^6^0.134^~1~^~A~^^^1^0.858^1.757^5^0.789^1.479^~2, 3~^~04/01/2014~ -~21446~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21446~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~21446~^~687~^0.023^6^0.002^~1~^~A~^^^1^0.017^0.029^5^0.018^0.029^~2, 3~^~04/01/2014~ -~21446~^~689~^0.030^6^0.001^~1~^~AS~^^^1^0.025^0.033^5^0.027^0.034^~2, 3~^~04/01/2009~ -~21446~^~693~^0.173^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21446~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~851~^0.052^6^0.007^~1~^~A~^^^1^0.036^0.082^5^0.035^0.069^~2, 3~^~04/01/2014~ -~21446~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~21446~^~853~^0.030^6^0.001^~1~^~A~^^^1^0.025^0.032^5^0.027^0.032^~2, 3~^~04/01/2014~ -~21446~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21446~^~858~^0.022^6^0.001^~1~^~A~^^^1^0.019^0.025^5^0.020^0.025^~2, 3~^~04/01/2014~ -~21456~^~312~^0.043^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~315~^0.109^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~404~^0.102^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~405~^0.164^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~406~^8.988^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~410~^1.401^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~415~^0.389^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~501~^0.166^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~502~^0.715^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~503~^0.636^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~504~^1.321^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~505~^0.940^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~506~^0.314^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~507~^0.251^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~508~^0.829^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~509~^0.663^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~510~^0.790^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~511~^1.226^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~512~^0.516^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~513~^1.235^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~514~^1.472^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~515~^5.068^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~516~^1.822^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~517~^1.739^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~518~^0.844^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~521~^0.588^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~605~^0.488^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~606~^5.765^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~610~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~611~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~612~^0.275^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~613~^3.687^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~614~^1.619^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~615~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~617~^6.227^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~618~^1.628^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~619~^0.093^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~620~^0.043^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~624~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~625~^0.066^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~626~^0.866^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~628~^0.061^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~631~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~645~^7.281^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~646~^1.832^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21456~^~652~^0.041^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~653~^0.093^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~654~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~671~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~672~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~687~^0.050^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~689~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21456~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21456~^~858~^0.014^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21457~^~312~^0.074^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~315~^0.121^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~404~^0.101^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~405~^0.250^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~406~^5.443^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~410~^1.205^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~415~^0.235^0^^~6~^~RKI~^^^^^^^^^^~04/01/2007~ -~21457~^~501~^0.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~502~^0.674^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~503~^0.600^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~504~^1.246^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~505~^0.887^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~506~^0.296^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~507~^0.237^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~508~^0.782^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~509~^0.625^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~510~^0.745^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~511~^1.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~512~^0.487^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~513~^1.164^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~514~^1.388^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~515~^4.779^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~516~^1.718^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~517~^1.640^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~518~^0.796^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~521~^0.528^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~605~^0.535^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~606~^6.591^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~610~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~611~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~612~^0.306^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~613~^4.248^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~614~^1.830^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~615~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~617~^7.215^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~618~^1.970^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~619~^0.113^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~620~^0.062^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~624~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~625~^0.075^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~626~^1.061^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~628~^0.070^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~630~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~645~^8.488^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~646~^2.226^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~652~^0.045^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~653~^0.103^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~654~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~662~^0.030^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~663~^0.451^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~664~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~665~^0.053^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~670~^0.042^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~671~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~672~^0.017^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~673~^1.031^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~674~^6.764^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~675~^1.875^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~676~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~685~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~687~^0.053^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~689~^0.030^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~693~^0.482^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~695~^0.053^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21457~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~851~^0.093^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~852~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~853~^0.029^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21457~^~858~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~312~^0.084^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~315~^0.139^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~404~^0.138^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~405~^0.345^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~406~^5.687^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~410~^1.172^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~415~^0.235^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~501~^0.145^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~502~^0.626^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~503~^0.557^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~504~^1.156^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~505~^0.823^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~506~^0.275^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~507~^0.220^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~508~^0.725^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~509~^0.580^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~510~^0.691^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~511~^1.072^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~512~^0.452^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~513~^1.080^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~514~^1.288^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~515~^4.434^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~516~^1.594^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~517~^1.522^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~518~^0.739^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~521~^0.474^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~605~^0.672^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~606~^7.344^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~607~^0.002^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~610~^0.009^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~611~^0.014^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~612~^0.350^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~613~^4.553^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~614~^2.187^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~615~^0.020^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~617~^7.898^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~618~^2.054^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~619~^0.107^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~620~^0.063^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~624~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~625~^0.096^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~626~^0.949^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~628~^0.097^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21458~^~645~^9.129^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~646~^2.297^0^^~6~^~RKI~^^^^^^^^^^~06/01/2014~ -~21458~^~652~^0.055^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~653~^0.141^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~654~^0.003^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~671~^0.002^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~672~^0.015^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~687~^0.084^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~689~^0.027^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21458~^~858~^0.016^0^^~1~^~RKA~^^^^^^^^^^~06/01/2014~ -~21459~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~315~^0.155^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~404~^0.136^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~405~^0.289^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~406~^6.546^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~410~^1.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~415~^0.190^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~501~^0.156^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~502~^0.673^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~503~^0.599^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~504~^1.244^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~505~^0.885^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~506~^0.295^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~507~^0.236^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~508~^0.780^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~509~^0.624^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~510~^0.743^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~511~^1.154^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~512~^0.486^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~513~^1.162^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~514~^1.386^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~515~^4.770^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~516~^1.715^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~517~^1.637^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~518~^0.795^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~521~^0.510^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~605~^0.791^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~606~^8.021^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~610~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21459~^~611~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~612~^0.400^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~613~^4.874^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~614~^2.456^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~615~^0.023^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~617~^8.504^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~618~^2.101^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~619~^0.110^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~620~^0.066^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21459~^~624~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~625~^0.108^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~626~^0.976^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~628~^0.104^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21459~^~630~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~631~^0.008^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~645~^9.796^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~646~^2.362^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21459~^~652~^0.063^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~653~^0.164^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~654~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21459~^~671~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21459~^~672~^0.016^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~687~^0.095^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~689~^0.031^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21459~^~858~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2009~ -~21461~^~312~^0.089^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~404~^0.172^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~405~^0.186^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~406~^5.575^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~410~^0.826^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21461~^~415~^0.296^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~605~^0.071^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~606~^3.109^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21461~^~607~^0.086^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~608~^0.038^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~609~^0.023^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~610~^0.049^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~611~^0.044^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~612~^0.288^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~613~^1.764^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~614~^0.816^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~617~^2.702^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~618~^1.623^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~619~^0.211^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~620~^0.032^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~621~^0.007^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~626~^0.210^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~627~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~628~^0.037^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~629~^0.004^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~630~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~631~^0.004^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21461~^~645~^2.949^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21461~^~646~^1.880^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21462~^~312~^0.097^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~404~^0.176^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~405~^0.169^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~406~^4.748^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~410~^0.911^0^^~1~^~RKA~^^^^^^^^^^~03/01/2009~ -~21462~^~415~^0.279^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~606~^3.372^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21462~^~607~^0.085^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~608~^0.038^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~609~^0.022^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~610~^0.049^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~611~^0.040^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~612~^0.280^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~613~^1.915^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~614~^0.943^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~617~^4.216^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~618~^2.884^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~619~^0.287^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~620~^0.036^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~621~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~626~^0.210^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~627~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~628~^0.063^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~629~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~630~^0.011^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~631~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~ -~21462~^~645~^4.500^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21462~^~646~^3.207^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~21463~^~312~^0.054^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~404~^0.070^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~405~^0.173^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~406~^0.714^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~415~^0.233^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~605~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~606~^0.525^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~607~^0.021^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~608~^0.014^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~609~^0.009^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~610~^0.021^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~611~^0.025^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~612~^0.076^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~613~^0.249^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~614~^0.077^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~617~^0.273^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~618~^0.106^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~619~^0.016^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~620~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~621~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~626~^0.016^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~627~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~628~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~629~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~630~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~631~^0.000^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~645~^0.307^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21463~^~646~^0.122^0^^~6~^~RKI~^^^^^^^^^^~04/01/2009~ -~21464~^~312~^0.058^12^0.004^~1~^~A~^^^1^0.041^0.085^11^0.049^0.066^~2, 3~^~04/01/2014~ -~21464~^~315~^0.036^12^0.002^~1~^~A~^^^1^0.025^0.052^11^0.031^0.041^~2, 3~^~04/01/2014~ -~21464~^~404~^0.104^6^0.005^~1~^~A~^^^1^0.092^0.125^5^0.092^0.117^~2, 3~^~04/01/2014~ -~21464~^~405~^0.232^6^0.009^~1~^~A~^^^1^0.190^0.250^5^0.208^0.255^~2, 3~^~04/01/2014~ -~21464~^~406~^9.030^6^0.279^~1~^~A~^^^1^8.210^10.100^5^8.313^9.747^~2, 3~^~04/01/2014~ -~21464~^~410~^1.320^4^0.149^~1~^~A~^^^1^0.880^1.500^3^0.847^1.793^~2, 3~^~04/01/2014~ -~21464~^~415~^0.325^6^0.026^~1~^~A~^^^1^0.270^0.440^5^0.259^0.391^~2, 3~^~04/01/2014~ -~21464~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~606~^1.180^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~607~^0.007^9^0.000^~1~^~A~^^^1^0.006^0.008^8^0.007^0.008^~2, 3~^~04/01/2014~ -~21464~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~610~^0.017^9^0.001^~1~^~A~^^^1^0.014^0.022^8^0.015^0.019^~2, 3~^~04/01/2014~ -~21464~^~611~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.007^8^0.003^0.005^~1, 2, 3~^~04/01/2014~ -~21464~^~612~^0.031^9^0.006^~1~^~A~^^^1^0.014^0.060^8^0.018^0.045^~2, 3~^~05/01/2009~ -~21464~^~613~^0.783^9^0.042^~1~^~A~^^^1^0.595^0.969^8^0.685^0.881^~2, 3~^~04/01/2014~ -~21464~^~614~^0.310^9^0.028^~1~^~A~^^^1^0.228^0.429^8^0.247^0.374^~2, 3~^~04/01/2014~ -~21464~^~615~^0.007^9^0.001^~1~^~A~^^^1^0.002^0.010^8^0.004^0.009^~1, 2, 3~^~05/01/2009~ -~21464~^~617~^1.663^9^0.105^~1~^~AS~^^^1^1.192^2.187^8^1.420^1.906^~2, 3~^~04/01/2014~ -~21464~^~618~^0.572^9^0.053^~1~^~AS~^^^1^0.364^0.793^8^0.449^0.694^~2, 3~^~04/01/2014~ -~21464~^~619~^0.065^9^0.013^~1~^~AS~^^^1^0.013^0.100^8^0.036^0.094^~2, 3~^~04/01/2014~ -~21464~^~620~^0.047^9^0.003^~1~^~A~^^^1^0.036^0.059^8^0.041^0.054^~2, 3~^~04/01/2014~ -~21464~^~621~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.005^8^0.003^0.004^~1, 2, 3~^~05/01/2009~ -~21464~^~624~^0.004^9^0.001^~1~^~A~^^^1^0.001^0.005^8^0.002^0.005^~1, 2, 3~^~04/01/2014~ -~21464~^~625~^0.009^9^0.002^~1~^~A~^^^1^0.004^0.016^8^0.006^0.013^~2, 3~^~04/01/2014~ -~21464~^~626~^0.173^9^0.010^~1~^~AS~^^^1^0.123^0.228^8^0.150^0.196^~2, 3~^~04/01/2014~ -~21464~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21464~^~628~^0.032^9^0.004^~1~^~A~^^^1^0.017^0.043^8^0.023^0.040^~2, 3~^~04/01/2014~ -~21464~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~630~^0.003^9^0.001^~1~^~AS~^^^1^0.001^0.005^8^0.002^0.004^~2, 3~^~04/01/2014~ -~21464~^~631~^0.005^9^0.000^~1~^~A~^^^1^0.004^0.005^8^0.004^0.005^~2, 3~^~04/01/2014~ -~21464~^~645~^2.080^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~646~^0.810^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~652~^0.006^9^0.001^~1~^~A~^^^1^0.003^0.011^8^0.003^0.008^~2, 3~^~04/01/2014~ -~21464~^~653~^0.009^9^0.003^~1~^~A~^^^1^0.003^0.022^8^0.003^0.015^~2, 3~^~05/01/2009~ -~21464~^~654~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~21464~^~662~^0.003^9^0.001^~1~^~A~^^^1^0.001^0.007^8^0.001^0.005^~1, 2, 3~^~05/01/2009~ -~21464~^~663~^0.038^9^0.011^~1~^~A~^^^1^0.010^0.092^8^0.012^0.063^~2, 3~^~04/01/2014~ -~21464~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~21464~^~665~^0.006^9^0.001^~1~^~A~^^^1^0.004^0.010^8^0.004^0.008^~2, 3~^~04/01/2014~ -~21464~^~670~^0.004^9^0.001^~1~^~A~^^^1^0.002^0.006^8^0.003^0.005^~1, 2, 3~^~04/01/2014~ -~21464~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~672~^0.008^9^0.000^~1~^~A~^^^1^0.007^0.008^8^0.007^0.008^~2, 3~^~05/01/2009~ -~21464~^~673~^0.170^9^0.010^~1~^~A~^^^1^0.122^0.227^8^0.147^0.193^~2, 3~^~04/01/2014~ -~21464~^~674~^1.625^9^0.109^~1~^~A~^^^1^1.142^2.125^8^1.374^1.877^~2, 3~^~04/01/2014~ -~21464~^~675~^0.562^9^0.054^~1~^~A~^^^1^0.354^0.785^8^0.438^0.685^~2, 3~^~04/01/2014~ -~21464~^~676~^0.003^9^0.001^~1~^~A~^^^1^0.001^0.005^8^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~21464~^~685~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.005^8^0.001^0.005^~1, 2, 3~^~04/01/2014~ -~21464~^~687~^0.005^9^0.001^~1~^~A~^^^1^0.002^0.012^8^0.002^0.008^~1, 2, 3~^~04/01/2014~ -~21464~^~689~^0.018^9^0.001^~1~^~AS~^^^1^0.016^0.022^8^0.017^0.020^~2, 3~^~04/01/2014~ -~21464~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21464~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~851~^0.061^9^0.012^~1~^~A~^^^1^0.013^0.095^8^0.034^0.089^~2, 3~^~04/01/2014~ -~21464~^~852~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.002^8^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21464~^~853~^0.017^9^0.001^~1~^~A~^^^1^0.015^0.020^8^0.015^0.018^~2, 3~^~04/01/2014~ -~21464~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21464~^~858~^0.012^9^0.001^~1~^~A~^^^1^0.009^0.015^8^0.010^0.014^~2, 3~^~04/01/2014~ -~21465~^~312~^0.082^12^0.001^~1~^~A~^^^2^0.080^0.083^1^0.063^0.101^~2~^~05/01/2009~ -~21465~^~315~^0.050^12^0.006^~1~^~A~^^^2^0.044^0.056^1^-0.025^0.125^~2~^~05/01/2009~ -~21465~^~404~^0.079^8^0.029^~1~^~A~^^^2^0.050^0.107^1^-0.286^0.443^~2~^~05/01/2009~ -~21465~^~405~^0.303^8^0.039^~1~^~A~^^^2^0.264^0.343^1^-0.198^0.804^~2~^~05/01/2009~ -~21465~^~406~^5.726^8^0.449^~1~^~A~^^^2^5.277^6.175^1^0.024^11.428^~2~^~05/01/2009~ -~21465~^~410~^1.387^8^0.087^~1~^~A~^^^2^1.300^1.475^1^0.276^2.499^~2~^~05/01/2009~ -~21465~^~415~^0.272^8^0.024^~1~^~A~^^^2^0.248^0.297^1^-0.036^0.581^~2~^~05/01/2009~ -~21465~^~605~^0.074^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~606~^2.004^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~607~^0.002^18^^~1~^~A~^^^1^0.002^0.003^^^^~2~^~05/01/2009~ -~21465~^~608~^0.001^18^^~1~^~A~^^^1^0.001^0.001^^^^~2~^~05/01/2009~ -~21465~^~609~^0.001^18^^~1~^~A~^^^1^0.001^0.001^^^^~2~^~05/01/2009~ -~21465~^~610~^0.003^18^^~1~^~A~^^^1^0.003^0.004^^^^~2~^~05/01/2009~ -~21465~^~611~^0.005^18^^~1~^~A~^^^1^0.004^0.007^^^^~2~^~05/01/2009~ -~21465~^~612~^0.046^18^^~1~^~A~^^^1^0.030^0.077^^^^~2~^~05/01/2009~ -~21465~^~613~^1.412^18^^~1~^~A~^^^1^1.336^1.526^^^^~2~^~05/01/2009~ -~21465~^~614~^0.492^18^^~1~^~A~^^^1^0.426^0.612^^^^~2~^~05/01/2009~ -~21465~^~615~^0.009^18^^~1~^~A~^^^1^0.007^0.010^^^^~2~^~05/01/2009~ -~21465~^~617~^2.440^18^^~1~^~AS~^^^1^2.343^2.558^^^^~2~^~05/01/2009~ -~21465~^~618~^1.453^18^^~1~^~AS~^^^1^0.838^1.799^^^^~2~^~05/01/2009~ -~21465~^~619~^0.071^18^^~1~^~AS~^^^1^0.042^0.089^^^^~2~^~05/01/2009~ -~21465~^~620~^0.078^18^^~1~^~A~^^^1^0.066^0.085^^^^~2~^~05/01/2009~ -~21465~^~621~^0.004^18^^~1~^~A~^^^1^0.003^0.005^^^^~2~^~05/01/2009~ -~21465~^~624~^0.008^18^^~1~^~A~^^^1^0.005^0.010^^^^~2~^~05/01/2009~ -~21465~^~625~^0.015^18^^~1~^~A~^^^1^0.011^0.020^^^^~2~^~05/01/2009~ -~21465~^~626~^0.430^18^^~1~^~AS~^^^1^0.415^0.448^^^^~2~^~05/01/2009~ -~21465~^~627~^0.002^18^^~1~^~A~^^^1^0.002^0.002^^^^~2~^~05/01/2009~ -~21465~^~628~^0.028^18^^~1~^~A~^^^1^0.028^0.029^^^^~2~^~05/01/2009~ -~21465~^~629~^0.003^18^^~1~^~A~^^^1^0.003^0.003^^^^~2~^~05/01/2009~ -~21465~^~630~^0.003^18^^~1~^~AS~^^^1^0.002^0.003^^^^~2~^~05/01/2009~ -~21465~^~631~^0.007^18^^~1~^~A~^^^1^0.006^0.007^^^^~2~^~05/01/2009~ -~21465~^~645~^2.933^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~646~^1.675^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~652~^0.007^18^^~1~^~A~^^^1^0.004^0.012^^^^~2~^~05/01/2009~ -~21465~^~653~^0.012^18^^~1~^~A~^^^1^0.007^0.024^^^^~2~^~05/01/2009~ -~21465~^~654~^0.005^18^^~1~^~A~^^^1^0.004^0.006^^^^~2~^~05/01/2009~ -~21465~^~662~^0.005^18^^~1~^~A~^^^1^0.003^0.008^^^^~2~^~05/01/2009~ -~21465~^~663~^0.051^18^^~1~^~A~^^^1^0.023^0.103^^^^~2~^~05/01/2009~ -~21465~^~664~^0.000^18^^~1~^~A~^^^1^0.000^0.000^^^^~2~^~05/01/2009~ -~21465~^~665~^0.018^18^^~1~^~A~^^^1^0.018^0.019^^^^~2~^~05/01/2009~ -~21465~^~670~^0.010^18^^~1~^~A~^^^1^0.009^0.012^^^^~2~^~05/01/2009~ -~21465~^~671~^0.007^18^^~1~^~A~^^^1^0.007^0.007^^^^~2~^~05/01/2009~ -~21465~^~672~^0.010^18^^~1~^~A~^^^1^0.009^0.011^^^^~2~^~05/01/2009~ -~21465~^~673~^0.425^18^^~1~^~A~^^^1^0.412^0.440^^^^~2~^~05/01/2009~ -~21465~^~674~^2.389^18^^~1~^~A~^^^1^2.319^2.455^^^^~2~^~05/01/2009~ -~21465~^~675~^1.424^18^^~1~^~A~^^^1^0.808^1.771^^^^~2~^~05/01/2009~ -~21465~^~676~^0.002^18^^~1~^~A~^^^1^0.002^0.003^^^^~2~^~05/01/2009~ -~21465~^~685~^0.009^18^^~1~^~A~^^^1^0.008^0.010^^^^~2~^~05/01/2009~ -~21465~^~687~^0.009^18^^~1~^~A~^^^1^0.005^0.013^^^^~2~^~05/01/2009~ -~21465~^~689~^0.025^18^^~1~^~AS~^^^1^0.023^0.026^^^^~2~^~05/01/2009~ -~21465~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~21465~^~697~^0.002^18^^~1~^~A~^^^1^0.002^0.002^^^^~2~^~05/01/2009~ -~21465~^~851~^0.062^18^^~1~^~A~^^^1^0.035^0.079^^^^~2~^~05/01/2009~ -~21465~^~852~^0.001^18^^~1~^~A~^^^1^0.001^0.001^^^^~2~^~05/01/2009~ -~21465~^~853~^0.024^18^^~1~^~A~^^^1^0.022^0.025^^^^~2~^~05/01/2009~ -~21465~^~858~^0.022^18^^~1~^~A~^^^1^0.019^0.025^^^^~2~^~05/01/2009~ -~21466~^~312~^0.086^12^0.003^~1~^~A~^^^1^0.067^0.103^5^0.078^0.095^~2, 3~^~07/01/2014~ -~21466~^~315~^0.046^12^0.004^~1~^~A~^^^1^0.031^0.063^5^0.037^0.055^~2, 3~^~07/01/2014~ -~21466~^~404~^0.095^6^0.003^~1~^~A~^^^1^0.081^0.118^2^0.083^0.107^~2, 3~^~07/01/2014~ -~21466~^~405~^0.337^6^0.008^~1~^~A~^^^1^0.290^0.430^3^0.311^0.363^~2, 3~^~07/01/2014~ -~21466~^~406~^5.725^6^0.228^~1~^~A~^^^1^5.170^6.330^2^4.880^6.569^~2, 3~^~07/01/2014~ -~21466~^~410~^1.205^4^0.045^~1~^~A~^^^1^1.000^1.700^2^0.996^1.415^~2, 3~^~07/01/2014~ -~21466~^~415~^0.200^6^0.009^~1~^~A~^^^1^0.130^0.423^2^0.167^0.234^~2, 3~^~07/01/2014~ -~21466~^~605~^0.059^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~606~^2.484^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~607~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.005^5^0.001^0.001^~1, 2, 3~^~07/01/2014~ -~21466~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.000^~1, 2, 3~^~04/01/2014~ -~21466~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~21466~^~610~^0.002^12^0.001^~1~^~A~^^^1^0.001^0.007^5^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~21466~^~611~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.006^5^0.003^0.006^~1, 2, 3~^~04/01/2014~ -~21466~^~612~^0.054^12^0.001^~1~^~A~^^^1^0.040^0.092^9^0.051^0.057^~2, 3~^~07/01/2014~ -~21466~^~613~^1.821^12^0.044^~1~^~A~^^^1^1.494^2.299^6^1.712^1.930^~2, 3~^~07/01/2014~ -~21466~^~614~^0.558^12^0.011^~1~^~A~^^^1^0.464^0.779^9^0.533^0.583^~2, 3~^~07/01/2014~ -~21466~^~615~^0.011^12^0.001^~1~^~A~^^^1^0.006^0.015^5^0.009^0.012^~2, 3~^~07/01/2014~ -~21466~^~617~^3.328^12^0.089^~1~^~AS~^^^1^2.822^3.884^6^3.110^3.546^~2, 3~^~07/01/2014~ -~21466~^~618~^1.310^12^0.036^~1~^~AS~^^^1^1.108^1.461^6^1.221^1.398^~2, 3~^~07/01/2014~ -~21466~^~619~^0.098^12^0.004^~1~^~AS~^^^1^0.052^0.135^6^0.087^0.109^~2, 3~^~07/01/2014~ -~21466~^~620~^0.071^12^0.001^~1~^~A~^^^1^0.061^0.076^9^0.069^0.074^~2, 3~^~07/01/2014~ -~21466~^~621~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.004^7^0.003^0.004^~2, 3~^~04/01/2014~ -~21466~^~624~^0.008^12^0.001^~1~^~A~^^^1^0.001^0.017^5^0.005^0.010^~1, 2, 3~^~07/01/2014~ -~21466~^~625~^0.017^12^0.000^~1~^~A~^^^1^0.012^0.027^9^0.016^0.018^~2, 3~^~07/01/2014~ -~21466~^~626~^0.486^12^0.013^~1~^~AS~^^^1^0.392^0.599^6^0.452^0.519^~2, 3~^~07/01/2014~ -~21466~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~21466~^~628~^0.059^12^0.002^~1~^~A~^^^1^0.046^0.069^6^0.055^0.063^~2, 3~^~07/01/2014~ -~21466~^~629~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^10^0.002^0.002^~1, 2, 3~^~04/01/2014~ -~21466~^~630~^0.004^12^0.000^~1~^~AS~^^^1^0.001^0.006^5^0.003^0.005^~2, 3~^~07/01/2014~ -~21466~^~631~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.007^6^0.006^0.007^~2, 3~^~05/01/2009~ -~21466~^~645~^3.908^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~646~^1.543^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~652~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.014^9^0.007^0.008^~2, 3~^~07/01/2014~ -~21466~^~653~^0.012^12^0.001^~1~^~A~^^^1^0.007^0.027^8^0.011^0.013^~2, 3~^~07/01/2014~ -~21466~^~654~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.010^5^0.003^0.006^~1, 2, 3~^~07/01/2014~ -~21466~^~662~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.008^10^0.003^0.004^~1, 2, 3~^~07/01/2014~ -~21466~^~663~^0.044^12^0.002^~1~^~A~^^^1^0.024^0.101^8^0.039^0.048^~2, 3~^~07/01/2014~ -~21466~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~21466~^~665~^0.012^12^0.000^~1~^~A~^^^1^0.011^0.015^10^0.011^0.013^~2, 3~^~04/01/2014~ -~21466~^~670~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.013^7^0.007^0.009^~2, 3~^~07/01/2014~ -~21466~^~671~^0.005^12^0.001^~1~^~A~^^^1^0.000^0.010^5^0.002^0.007^~1, 2, 3~^~07/01/2014~ -~21466~^~672~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.013^8^0.010^0.011^~2, 3~^~07/01/2014~ -~21466~^~673~^0.482^12^0.013^~1~^~A~^^^1^0.389^0.592^6^0.449^0.515^~2, 3~^~07/01/2014~ -~21466~^~674~^3.284^12^0.089^~1~^~A~^^^1^2.791^3.789^6^3.066^3.503^~2, 3~^~07/01/2014~ -~21466~^~675~^1.289^12^0.036^~1~^~A~^^^1^1.089^1.433^6^1.200^1.378^~2, 3~^~07/01/2014~ -~21466~^~676~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.006^5^0.003^0.005^~1, 2, 3~^~07/01/2014~ -~21466~^~685~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.007^5^0.003^0.005^~1, 2, 3~^~07/01/2014~ -~21466~^~687~^0.009^12^0.000^~1~^~A~^^^1^0.006^0.022^5^0.009^0.010^~2, 3~^~07/01/2014~ -~21466~^~689~^0.023^12^0.001^~1~^~AS~^^^1^0.020^0.027^6^0.022^0.025^~2, 3~^~07/01/2014~ -~21466~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21466~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21466~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~851~^0.094^12^0.004^~1~^~A~^^^1^0.051^0.128^6^0.084^0.105^~2, 3~^~07/01/2014~ -~21466~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~05/01/2009~ -~21466~^~853~^0.022^12^0.001^~1~^~A~^^^1^0.019^0.026^6^0.021^0.024^~2, 3~^~07/01/2014~ -~21466~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21466~^~858~^0.017^12^0.001^~1~^~A~^^^1^0.014^0.022^6^0.016^0.019^~2, 3~^~07/01/2014~ -~21467~^~312~^0.080^12^0.009^~1~^~A~^^^1^0.054^0.143^9^0.059^0.101^~2, 3~^~07/01/2014~ -~21467~^~315~^0.053^12^0.003^~1~^~A~^^^1^0.032^0.072^8^0.046^0.060^~2, 3~^~07/01/2014~ -~21467~^~404~^0.080^6^0.008^~1~^~A~^^^1^0.059^0.109^3^0.055^0.106^~2, 3~^~07/01/2014~ -~21467~^~405~^0.267^6^0.009^~1~^~A~^^^1^0.220^0.310^3^0.239^0.295^~2, 3~^~07/01/2014~ -~21467~^~406~^7.590^6^0.263^~1~^~A~^^^1^6.590^9.180^2^6.591^8.590^~2, 3~^~07/01/2014~ -~21467~^~410~^1.130^4^0.042^~1~^~A~^^^1^0.990^1.400^1^0.791^1.469^~2, 3~^~07/01/2014~ -~21467~^~415~^0.264^6^0.013^~1~^~A~^^^1^0.210^0.310^3^0.224^0.303^~2, 3~^~07/01/2014~ -~21467~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~606~^2.651^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~607~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21467~^~610~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^8^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~21467~^~611~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.007^7^0.004^0.006^~1, 2, 3~^~04/01/2014~ -~21467~^~612~^0.069^12^0.010^~1~^~A~^^^1^0.034^0.137^7^0.044^0.093^~2, 3~^~07/01/2014~ -~21467~^~613~^1.835^12^0.117^~1~^~A~^^^1^1.381^2.680^7^1.560^2.110^~2, 3~^~07/01/2014~ -~21467~^~614~^0.667^12^0.051^~1~^~A~^^^1^0.484^1.016^7^0.546^0.788^~2, 3~^~07/01/2014~ -~21467~^~615~^0.021^12^0.002^~1~^~A~^^^1^0.008^0.033^6^0.016^0.025^~2, 3~^~07/01/2014~ -~21467~^~617~^4.167^12^0.130^~1~^~AS~^^^1^2.654^5.118^9^3.872^4.462^~2, 3~^~07/01/2014~ -~21467~^~618~^1.503^12^0.042^~1~^~AS~^^^1^0.885^1.803^8^1.407^1.599^~2, 3~^~07/01/2014~ -~21467~^~619~^0.188^12^0.022^~1~^~AS~^^^1^0.036^0.350^6^0.134^0.242^~2, 3~^~07/01/2014~ -~21467~^~620~^0.081^12^0.002^~1~^~A~^^^1^0.069^0.090^9^0.077^0.086^~2, 3~^~04/01/2014~ -~21467~^~621~^0.006^12^0.000^~1~^~A~^^^1^0.004^0.007^7^0.005^0.007^~2, 3~^~04/01/2014~ -~21467~^~624~^0.014^12^0.001^~1~^~A~^^^1^0.004^0.021^6^0.011^0.017^~2, 3~^~07/01/2014~ -~21467~^~625~^0.020^12^0.003^~1~^~A~^^^1^0.011^0.037^7^0.014^0.026^~2, 3~^~07/01/2014~ -~21467~^~626~^0.457^12^0.023^~1~^~AS~^^^1^0.357^0.619^8^0.403^0.511^~2, 3~^~07/01/2014~ -~21467~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.000^~1, 2, 3~^~04/01/2014~ -~21467~^~628~^0.082^12^0.005^~1~^~A~^^^1^0.040^0.117^6^0.071^0.094^~2, 3~^~07/01/2014~ -~21467~^~629~^0.003^12^0.000^~1~^~A~^^^1^0.003^0.004^8^0.003^0.004^~2, 3~^~05/01/2009~ -~21467~^~630~^0.008^12^0.001^~1~^~AS~^^^1^0.001^0.016^6^0.004^0.011^~2, 3~^~07/01/2014~ -~21467~^~631~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.010^8^0.008^0.009^~2, 3~^~04/01/2014~ -~21467~^~645~^4.756^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~646~^1.857^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~652~^0.010^12^0.002^~1~^~A~^^^1^0.005^0.021^7^0.006^0.014^~2, 3~^~07/01/2014~ -~21467~^~653~^0.021^12^0.004^~1~^~A~^^^1^0.007^0.050^7^0.010^0.031^~2, 3~^~07/01/2014~ -~21467~^~654~^0.008^12^0.000^~1~^~A~^^^1^0.004^0.011^6^0.007^0.009^~2, 3~^~07/01/2014~ -~21467~^~662~^0.007^12^0.001^~1~^~A~^^^1^0.002^0.016^7^0.003^0.010^~1, 2, 3~^~07/01/2014~ -~21467~^~663~^0.082^12^0.018^~1~^~A~^^^1^0.027^0.198^7^0.040^0.125^~2, 3~^~07/01/2014~ -~21467~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~21467~^~665~^0.017^12^0.002^~1~^~A~^^^1^0.012^0.029^7^0.013^0.021^~2, 3~^~07/01/2014~ -~21467~^~670~^0.011^12^0.001^~1~^~A~^^^1^0.007^0.020^9^0.009^0.013^~2, 3~^~07/01/2014~ -~21467~^~671~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.015^6^0.009^0.012^~2, 3~^~04/01/2014~ -~21467~^~672~^0.014^12^0.001^~1~^~A~^^^1^0.011^0.018^8^0.013^0.015^~2, 3~^~04/01/2014~ -~21467~^~673~^0.450^12^0.022^~1~^~A~^^^1^0.355^0.603^8^0.399^0.501^~2, 3~^~07/01/2014~ -~21467~^~674~^4.085^12^0.129^~1~^~A~^^^1^2.540^5.087^9^3.790^4.379^~2, 3~^~07/01/2014~ -~21467~^~675~^1.474^12^0.040^~1~^~A~^^^1^0.858^1.773^8^1.382^1.567^~2, 3~^~07/01/2014~ -~21467~^~676~^0.008^12^0.001^~1~^~A~^^^1^0.001^0.016^6^0.004^0.011^~1, 2, 3~^~07/01/2014~ -~21467~^~685~^0.010^12^0.001^~1~^~A~^^^1^0.000^0.017^6^0.006^0.013^~1, 2, 3~^~07/01/2014~ -~21467~^~687~^0.012^12^0.003^~1~^~A~^^^1^0.000^0.029^7^0.006^0.019^~1, 2, 3~^~07/01/2014~ -~21467~^~689~^0.030^12^0.001^~1~^~AS~^^^1^0.025^0.033^10^0.029^0.032^~2, 3~^~04/01/2014~ -~21467~^~693~^0.089^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~21467~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~851~^0.178^12^0.021^~1~^~A~^^^1^0.036^0.333^6^0.128^0.229^~2, 3~^~07/01/2014~ -~21467~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^7^0.001^0.002^~1, 2, 3~^~05/01/2009~ -~21467~^~853~^0.029^12^0.001^~1~^~A~^^^1^0.025^0.032^10^0.028^0.031^~2, 3~^~04/01/2014~ -~21467~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21467~^~858~^0.022^12^0.001^~1~^~A~^^^1^0.019^0.025^10^0.021^0.024^~2, 3~^~04/01/2014~ -~21468~^~312~^0.078^12^0.005^~1~^~A~^^^1^0.059^0.114^5^0.065^0.091^~2, 3~^~04/01/2014~ -~21468~^~315~^0.282^12^0.011^~1~^~A~^^^1^0.221^0.335^5^0.255^0.309^~2, 3~^~04/01/2014~ -~21468~^~404~^0.104^3^0.004^~1~^~A~^^^1^0.080^0.180^1^0.050^0.157^~2, 3~^~04/01/2014~ -~21468~^~405~^0.221^6^0.013^~1~^~A~^^^1^0.170^0.290^2^0.167^0.275^~2, 3~^~04/01/2014~ -~21468~^~406~^5.401^6^0.371^~1~^~A~^^^1^4.790^6.430^2^3.858^6.945^~2, 3~^~04/01/2014~ -~21468~^~410~^0.841^4^0.022^~1~^~A~^^^1^0.720^0.910^1^0.625^1.056^~2, 3~^~04/01/2014~ -~21468~^~415~^0.131^6^0.001^~1~^~A~^^^1^0.100^0.140^2^0.127^0.135^~2, 3~^~04/01/2014~ -~21468~^~605~^0.501^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~606~^7.857^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21468~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21468~^~609~^0.007^10^0.001^~1~^~A~^^^1^0.003^0.009^5^0.005^0.008^~2, 3~^~05/01/2009~ -~21468~^~610~^0.011^10^0.001^~1~^~A~^^^1^0.008^0.016^6^0.010^0.012^~2, 3~^~04/01/2014~ -~21468~^~611~^0.016^10^0.001^~1~^~A~^^^1^0.007^0.023^4^0.012^0.019^~2, 3~^~05/01/2009~ -~21468~^~612~^0.279^10^0.029^~1~^~A~^^^1^0.097^0.666^4^0.199^0.358^~2, 3~^~04/01/2014~ -~21468~^~613~^5.148^10^0.184^~1~^~A~^^^1^3.870^7.790^5^4.672^5.625^~2, 3~^~04/01/2014~ -~21468~^~614~^2.127^10^0.152^~1~^~A~^^^1^1.230^4.003^4^1.715^2.539^~2, 3~^~04/01/2014~ -~21468~^~615~^0.066^10^0.003^~1~^~A~^^^1^0.031^0.096^4^0.057^0.076^~2, 3~^~04/01/2014~ -~21468~^~617~^12.760^10^0.315^~1~^~AS~^^^1^11.505^14.476^5^11.938^13.581^~2, 3~^~04/01/2014~ -~21468~^~618~^3.963^10^0.178^~1~^~AS~^^^1^2.550^5.141^4^3.476^4.451^~2, 3~^~04/01/2014~ -~21468~^~619~^0.626^10^0.040^~1~^~AS~^^^1^0.149^0.987^4^0.513^0.738^~2, 3~^~04/01/2014~ -~21468~^~620~^0.062^10^0.004^~1~^~A~^^^1^0.047^0.081^4^0.051^0.073^~2, 3~^~04/01/2014~ -~21468~^~621~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~1, 2, 3~^~05/01/2009~ -~21468~^~624~^0.041^10^0.003^~1~^~A~^^^1^0.011^0.063^4^0.033^0.048^~2, 3~^~05/01/2009~ -~21468~^~625~^0.079^10^0.007^~1~^~A~^^^1^0.033^0.185^5^0.060^0.098^~2, 3~^~04/01/2014~ -~21468~^~626~^1.178^10^0.026^~1~^~AS~^^^1^0.994^1.476^7^1.116^1.239^~2, 3~^~04/01/2014~ -~21468~^~627~^0.004^10^0.001^~1~^~A~^^^1^0.000^0.005^4^0.002^0.005^~1, 2, 3~^~04/01/2014~ -~21468~^~628~^0.242^10^0.011^~1~^~A~^^^1^0.134^0.330^4^0.212^0.271^~2, 3~^~04/01/2014~ -~21468~^~629~^0.002^10^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2009~ -~21468~^~630~^0.026^10^0.004^~1~^~AS~^^^1^0.003^0.047^4^0.016^0.035^~2, 3~^~04/01/2014~ -~21468~^~631~^0.006^10^0.000^~1~^~A~^^^1^0.005^0.008^6^0.006^0.007^~2, 3~^~05/01/2009~ -~21468~^~645~^14.364^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~646~^4.736^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~652~^0.043^10^0.005^~1~^~A~^^^1^0.013^0.103^4^0.029^0.057^~2, 3~^~04/01/2014~ -~21468~^~653~^0.104^10^0.015^~1~^~A~^^^1^0.021^0.275^4^0.062^0.145^~2, 3~^~04/01/2014~ -~21468~^~654~^0.016^10^0.001^~1~^~A~^^^1^0.004^0.027^4^0.013^0.020^~2, 3~^~04/01/2014~ -~21468~^~662~^0.030^10^0.004^~1~^~A~^^^1^0.006^0.081^4^0.019^0.042^~2, 3~^~04/01/2014~ -~21468~^~663~^0.403^10^0.055^~1~^~A~^^^1^0.070^1.063^4^0.251^0.555^~2, 3~^~04/01/2014~ -~21468~^~664~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~21468~^~665~^0.067^10^0.006^~1~^~A~^^^1^0.034^0.133^4^0.052^0.083^~2, 3~^~04/01/2014~ -~21468~^~670~^0.044^10^0.004^~1~^~A~^^^1^0.019^0.102^5^0.033^0.055^~2, 3~^~04/01/2014~ -~21468~^~671~^0.017^10^0.001^~1~^~A~^^^1^0.003^0.027^4^0.014^0.020^~2, 3~^~04/01/2014~ -~21468~^~672~^0.021^10^0.001^~1~^~A~^^^1^0.018^0.025^4^0.020^0.023^~2, 3~^~04/01/2014~ -~21468~^~673~^1.147^10^0.024^~1~^~A~^^^1^0.988^1.399^7^1.090^1.205^~2, 3~^~04/01/2014~ -~21468~^~674~^12.357^10^0.318^~1~^~A~^^^1^10.472^14.393^5^11.526^13.188^~2, 3~^~04/01/2014~ -~21468~^~675~^3.852^10^0.183^~1~^~A~^^^1^2.328^5.075^4^3.350^4.354^~2, 3~^~04/01/2014~ -~21468~^~676~^0.026^10^0.004^~1~^~A~^^^1^0.003^0.047^4^0.016^0.035^~2, 3~^~04/01/2014~ -~21468~^~685~^0.034^10^0.003^~1~^~A~^^^1^0.006^0.060^4^0.025^0.043^~2, 3~^~04/01/2014~ -~21468~^~687~^0.064^10^0.008^~1~^~A~^^^1^0.018^0.158^4^0.042^0.086^~2, 3~^~04/01/2014~ -~21468~^~689~^0.031^10^0.001^~1~^~AS~^^^1^0.026^0.034^4^0.028^0.033^~2, 3~^~04/01/2014~ -~21468~^~693~^0.433^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~21468~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~21468~^~851~^0.591^10^0.037^~1~^~A~^^^1^0.142^0.927^4^0.488^0.694^~2, 3~^~04/01/2014~ -~21468~^~852~^0.002^10^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~05/01/2009~ -~21468~^~853~^0.029^10^0.001^~1~^~A~^^^1^0.025^0.032^5^0.027^0.031^~2, 3~^~04/01/2014~ -~21468~^~856~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~21468~^~858~^0.015^10^0.001^~1~^~A~^^^1^0.013^0.019^5^0.013^0.018^~2, 3~^~04/01/2014~ -~21469~^~312~^0.064^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~315~^0.115^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~404~^0.104^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~405~^0.228^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~406~^7.869^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~410~^1.167^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~415~^0.263^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~605~^0.192^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~606~^3.316^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~607~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~609~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~610~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~611~^0.008^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~612~^0.111^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~613~^2.180^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~614~^0.892^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~615~^0.026^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~617~^5.214^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~618~^1.657^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~619~^0.244^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~620~^0.052^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~624~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~625~^0.032^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~626~^0.494^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~627~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~628~^0.099^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~629~^0.001^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~630~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~631~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~645~^6.011^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~646~^2.066^0^^~6~^~RKI~^^^^^^^^^^~04/01/2014~ -~21469~^~652~^0.018^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~653~^0.040^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~654~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~671~^0.005^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~672~^0.012^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~687~^0.024^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21469~^~689~^0.022^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21469~^~858~^0.013^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21470~^~312~^0.162^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~315~^0.130^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~404~^0.069^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~405~^0.234^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~406~^5.209^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~410~^1.209^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~415~^0.227^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~605~^0.225^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~606~^4.458^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~607~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~608~^0.001^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~610~^0.005^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~611~^0.009^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~612~^0.127^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~613~^3.117^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~614~^1.080^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~615~^0.024^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~617~^5.528^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~618~^4.052^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~619~^0.205^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~620~^0.070^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~624~^0.020^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~625~^0.036^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~626~^0.784^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~627~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~628~^0.062^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~630~^0.004^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~645~^6.446^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~646~^4.408^0^^~6~^~RKI~^^^^^^^^^^~05/01/2009~ -~21470~^~652~^0.018^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~653~^0.040^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~654~^0.009^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~671~^0.007^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~672~^0.015^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~687~^0.023^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~689~^0.028^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~697~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21470~^~858~^0.022^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~312~^0.083^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~315~^0.149^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~404~^0.099^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~405~^0.286^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~406~^5.583^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~410~^1.046^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~415~^0.170^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~605~^0.252^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~606~^4.832^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~607~^0.001^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~609~^0.003^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~610~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~611~^0.009^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~612~^0.152^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~613~^3.275^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~614~^1.244^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~615~^0.035^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~617~^7.450^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~618~^2.469^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~619~^0.329^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~620~^0.067^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~621~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~624~^0.022^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~625~^0.044^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~626~^0.788^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~627~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~628~^0.139^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~629~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~630~^0.013^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~631~^0.006^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21471~^~645~^8.477^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~646~^2.939^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21471~^~652~^0.023^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~653~^0.052^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~654~^0.010^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~671~^0.010^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~672~^0.015^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~687~^0.033^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21471~^~689~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21471~^~858~^0.016^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~312~^0.079^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~315~^0.172^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~404~^0.092^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~405~^0.243^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~406~^6.452^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~410~^0.980^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~415~^0.194^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~605~^0.312^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~606~^5.358^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~607~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~608~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~609~^0.004^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~610~^0.006^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~611~^0.011^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~612~^0.178^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~613~^3.558^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~614~^1.426^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~615~^0.044^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~617~^8.635^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~618~^2.782^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~619~^0.416^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~620~^0.071^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~621~^0.004^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~624~^0.028^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~625~^0.051^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~626~^0.832^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~627~^0.002^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~628~^0.165^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~629~^0.003^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~630~^0.017^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~631~^0.007^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~645~^9.753^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~646~^3.354^0^^~6~^~RKI~^^^^^^^^^^~07/01/2014~ -~21472~^~652~^0.027^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~653~^0.064^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~654~^0.012^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~671~^0.014^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~672~^0.018^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~687~^0.039^0^^~1~^~RKA~^^^^^^^^^^~07/01/2014~ -~21472~^~689~^0.031^0^^~1~^~RKA~^^^^^^^^^^~05/01/2009~ -~21472~^~697~^0.000^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21472~^~858~^0.019^0^^~1~^~RKA~^^^^^^^^^^~04/01/2014~ -~21473~^~312~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~4~^~03/01/2010~ -~21473~^~315~^0.313^3^0.003^~1~^~A~^^^1^0.310^0.320^2^0.299^0.328^~4~^~03/01/2010~ -~21473~^~404~^0.337^3^0.015^~1~^~A~^^^1^0.310^0.360^2^0.274^0.399^~4~^~03/01/2010~ -~21473~^~405~^0.253^3^0.012^~1~^~A~^^^1^0.230^0.270^2^0.202^0.305^~4~^~03/01/2010~ -~21473~^~406~^3.553^3^0.139^~1~^~A~^^^1^3.310^3.790^2^2.957^4.150^~4~^~03/01/2010~ -~21473~^~410~^0.457^3^0.009^~1~^~A~^^^1^0.440^0.470^2^0.419^0.495^~4~^~03/01/2010~ -~21473~^~415~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.118^~4~^~03/01/2010~ -~21473~^~605~^0.287^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~606~^5.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~607~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.118^~4~^~03/01/2010~ -~21473~^~608~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~4~^~03/01/2010~ -~21473~^~609~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.088^~4~^~03/01/2010~ -~21473~^~610~^0.200^3^0.006^~1~^~A~^^^1^0.190^0.210^2^0.175^0.225^~4~^~03/01/2010~ -~21473~^~611~^0.250^3^0.006^~1~^~A~^^^1^0.240^0.260^2^0.225^0.275^~4~^~03/01/2010~ -~21473~^~612~^0.860^3^0.023^~1~^~A~^^^1^0.820^0.900^2^0.761^0.959^~4~^~03/01/2010~ -~21473~^~613~^2.753^3^0.084^~1~^~A~^^^1^2.600^2.890^2^2.391^3.115^~4~^~03/01/2010~ -~21473~^~614~^1.100^3^0.046^~1~^~A~^^^1^1.010^1.160^2^0.903^1.297^~4~^~03/01/2010~ -~21473~^~615~^0.017^3^0.003^~1~^~A~^^^1^0.010^0.020^2^0.002^0.031^~4~^~03/01/2010~ -~21473~^~617~^2.657^3^0.111^~1~^~AS~^^^1^2.440^2.810^2^2.177^3.136^~4~^~03/01/2010~ -~21473~^~618~^1.577^3^0.044^~1~^~AS~^^^1^1.490^1.630^2^1.389^1.765^~4~^~03/01/2010~ -~21473~^~619~^0.169^3^0.004^~1~^~AS~^^^1^0.162^0.173^2^0.154^0.184^~4~^~03/01/2010~ -~21473~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21473~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21473~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21473~^~625~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^2^0.060^0.060^~4~^~03/01/2010~ -~21473~^~626~^0.163^3^0.009^~1~^~AS~^^^1^0.150^0.180^2^0.125^0.201^~4~^~03/01/2010~ -~21473~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21473~^~628~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^2^0.020^0.020^~4~^~03/01/2010~ -~21473~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~03/01/2010~ -~21473~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~4~^~03/01/2010~ -~21473~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~4~^~03/01/2010~ -~21473~^~645~^2.905^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~646~^1.790^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~652~^0.087^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.072^0.101^~4~^~03/01/2010~ -~21473~^~653~^0.057^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.042^0.071^~4~^~03/01/2010~ -~21473~^~654~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~4~^~03/01/2010~ -~21473~^~662~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.009^0.038^~4~^~03/01/2010~ -~21473~^~663~^0.203^3^0.009^~1~^~A~^^^1^0.190^0.220^2^0.165^0.241^~4~^~03/01/2010~ -~21473~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21473~^~665~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^2^0.060^0.060^~4~^~03/01/2010~ -~21473~^~670~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~4~^~03/01/2010~ -~21473~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21473~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^2^0.004^0.004^~4~^~03/01/2010~ -~21473~^~673~^0.140^3^0.006^~1~^~A~^^^1^0.130^0.150^2^0.115^0.165^~4~^~03/01/2010~ -~21473~^~674~^2.453^3^0.104^~1~^~A~^^^1^2.250^2.590^2^2.007^2.899^~4~^~03/01/2010~ -~21473~^~675~^1.473^3^0.042^~1~^~A~^^^1^1.390^1.520^2^1.294^1.653^~4~^~03/01/2010~ -~21473~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~03/01/2010~ -~21473~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~03/01/2010~ -~21473~^~687~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 4~^~03/01/2010~ -~21473~^~689~^0.011^3^0.000^~1~^~AS~^^^1^0.011^0.011^2^0.011^0.011^~4~^~03/01/2010~ -~21473~^~693~^0.227^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~695~^0.060^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21473~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21473~^~851~^0.167^3^0.003^~1~^~A~^^^1^0.160^0.170^2^0.152^0.181^~4~^~03/01/2010~ -~21473~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21473~^~853~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21473~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~4~^~03/01/2010~ -~21474~^~312~^0.114^5^0.002^~1~^~A~^^^1^0.110^0.120^4^0.107^0.121^~4~^~03/01/2010~ -~21474~^~315~^0.366^5^0.004^~1~^~A~^^^1^0.360^0.380^4^0.355^0.377^~4~^~03/01/2010~ -~21474~^~404~^0.094^5^0.008^~1~^~A~^^^1^0.070^0.110^4^0.071^0.117^~4~^~03/01/2010~ -~21474~^~405~^0.096^5^0.002^~1~^~A~^^^1^0.090^0.100^4^0.089^0.103^~4~^~03/01/2010~ -~21474~^~406~^1.268^5^0.023^~1~^~A~^^^1^1.210^1.340^4^1.205^1.331^~4~^~03/01/2010~ -~21474~^~410~^0.420^3^0.021^~1~^~A~^^^1^0.390^0.460^2^0.330^0.510^~4~^~03/01/2010~ -~21474~^~415~^0.112^5^0.004^~1~^~A~^^^1^0.100^0.120^4^0.102^0.122^~4~^~03/01/2010~ -~21474~^~605~^0.172^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~606~^3.514^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~607~^0.058^5^0.002^~1~^~A~^^^1^0.050^0.060^4^0.052^0.064^~4~^~03/01/2010~ -~21474~^~608~^0.060^5^0.000^~1~^~A~^^^1^0.060^0.060^4^0.060^0.060^~4~^~03/01/2010~ -~21474~^~609~^0.040^5^0.000^~1~^~A~^^^1^0.040^0.040^4^0.040^0.040^~4~^~03/01/2010~ -~21474~^~610~^0.110^5^0.000^~1~^~A~^^^1^0.110^0.110^4^0.110^0.110^~4~^~03/01/2010~ -~21474~^~611~^0.138^5^0.002^~1~^~A~^^^1^0.130^0.140^4^0.132^0.144^~4~^~03/01/2010~ -~21474~^~612~^0.486^5^0.007^~1~^~A~^^^1^0.470^0.500^4^0.467^0.505^~4~^~03/01/2010~ -~21474~^~613~^1.686^5^0.015^~1~^~A~^^^1^1.650^1.720^4^1.644^1.728^~4~^~03/01/2010~ -~21474~^~614~^0.826^5^0.014^~1~^~A~^^^1^0.780^0.860^4^0.787^0.865^~4~^~03/01/2010~ -~21474~^~615~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21474~^~617~^1.716^5^0.010^~1~^~AS~^^^1^1.690^1.740^4^1.687^1.745^~4~^~03/01/2010~ -~21474~^~618~^1.292^5^0.016^~1~^~AS~^^^1^1.240^1.330^4^1.248^1.336^~4~^~03/01/2010~ -~21474~^~619~^0.136^5^0.002^~1~^~AS~^^^1^0.132^0.142^4^0.129^0.143^~4~^~03/01/2010~ -~21474~^~620~^0.008^5^0.000^~1~^~A~^^^1^0.008^0.009^4^0.008^0.009^~4~^~03/01/2010~ -~21474~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21474~^~624~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21474~^~625~^0.032^5^0.002^~1~^~A~^^^1^0.030^0.040^4^0.026^0.038^~4~^~03/01/2010~ -~21474~^~626~^0.088^5^0.002^~1~^~AS~^^^1^0.080^0.090^4^0.082^0.094^~4~^~03/01/2010~ -~21474~^~627~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2010~ -~21474~^~628~^0.014^5^0.002^~1~^~A~^^^1^0.010^0.020^4^0.007^0.021^~4~^~03/01/2010~ -~21474~^~629~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^4^0.002^0.002^~1, 4~^~03/01/2010~ -~21474~^~630~^0.001^5^0.000^~1~^~AS~^^^1^0.001^0.001^4^0.001^0.001^~4~^~03/01/2010~ -~21474~^~631~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.004^4^0.004^0.004^~4~^~03/01/2010~ -~21474~^~645~^1.854^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~646~^1.461^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~652~^0.050^5^0.000^~1~^~A~^^^1^0.050^0.050^4^0.050^0.050^~4~^~03/01/2010~ -~21474~^~653~^0.030^5^0.000^~1~^~A~^^^1^0.030^0.030^4^0.030^0.030^~4~^~03/01/2010~ -~21474~^~654~^0.007^5^0.000^~1~^~A~^^^1^0.006^0.007^4^0.006^0.007^~4~^~03/01/2010~ -~21474~^~662~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21474~^~663~^0.122^5^0.004^~1~^~A~^^^1^0.110^0.130^4^0.112^0.132^~4~^~03/01/2010~ -~21474~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21474~^~665~^0.040^5^0.000^~1~^~A~^^^1^0.040^0.040^4^0.040^0.040^~4~^~03/01/2010~ -~21474~^~670~^0.028^5^0.002^~1~^~A~^^^1^0.020^0.030^4^0.022^0.034^~4~^~03/01/2010~ -~21474~^~671~^0.003^5^0.002^~1~^~A~^^^1^0.000^0.010^4^-0.003^0.008^~1, 4~^~03/01/2010~ -~21474~^~672~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.003^4^0.003^0.003^~4~^~03/01/2010~ -~21474~^~673~^0.078^5^0.002^~1~^~A~^^^1^0.070^0.080^4^0.072^0.084^~4~^~03/01/2010~ -~21474~^~674~^1.594^5^0.009^~1~^~A~^^^1^1.580^1.620^4^1.570^1.618^~4~^~03/01/2010~ -~21474~^~675~^1.224^5^0.017^~1~^~A~^^^1^1.170^1.270^4^1.176^1.272^~4~^~03/01/2010~ -~21474~^~676~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^4^0.001^0.001^~1, 4~^~03/01/2010~ -~21474~^~685~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^4^0.002^0.002^~1, 4~^~03/01/2010~ -~21474~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 4~^~03/01/2010~ -~21474~^~689~^0.008^5^0.000^~1~^~AS~^^^1^0.007^0.008^4^0.007^0.008^~4~^~03/01/2010~ -~21474~^~693~^0.132^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21474~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21474~^~851~^0.134^5^0.002^~1~^~A~^^^1^0.130^0.140^4^0.127^0.141^~4~^~03/01/2010~ -~21474~^~852~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^4^0.001^0.001^~1, 4~^~03/01/2010~ -~21474~^~853~^0.007^5^0.000^~1~^~A~^^^1^0.006^0.007^4^0.006^0.007^~4~^~03/01/2010~ -~21474~^~858~^0.007^5^0.001^~1~^~A~^^^1^0.005^0.008^4^0.005^0.008^~4~^~03/01/2010~ -~21475~^~312~^0.097^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.082^0.111^~4~^~03/01/2010~ -~21475~^~315~^0.227^3^0.003^~1~^~A~^^^1^0.220^0.230^2^0.212^0.241^~4~^~03/01/2010~ -~21475~^~404~^0.103^3^0.018^~1~^~A~^^^1^0.070^0.130^2^0.027^0.179^~4~^~03/01/2010~ -~21475~^~405~^0.127^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.112^0.141^~4~^~03/01/2010~ -~21475~^~406~^1.283^3^0.022^~1~^~A~^^^1^1.240^1.310^2^1.189^1.377^~4~^~03/01/2010~ -~21475~^~410~^0.497^3^0.027^~1~^~A~^^^1^0.460^0.550^2^0.379^0.614^~4~^~03/01/2010~ -~21475~^~415~^0.130^3^0.000^~1~^~A~^^^1^0.130^0.130^2^0.130^0.130^~4~^~03/01/2010~ -~21475~^~605~^0.487^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~606~^4.601^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~607~^0.083^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.069^0.098^~4~^~03/01/2010~ -~21475~^~608~^0.087^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.072^0.101^~4~^~03/01/2010~ -~21475~^~609~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^2^0.060^0.060^~4~^~03/01/2010~ -~21475~^~610~^0.163^3^0.003^~1~^~A~^^^1^0.160^0.170^2^0.149^0.178^~4~^~03/01/2010~ -~21475~^~611~^0.197^3^0.007^~1~^~A~^^^1^0.190^0.210^2^0.168^0.225^~4~^~03/01/2010~ -~21475~^~612~^0.690^3^0.025^~1~^~A~^^^1^0.660^0.740^2^0.582^0.798^~4~^~03/01/2010~ -~21475~^~613~^2.193^3^0.074^~1~^~A~^^^1^2.110^2.340^2^1.877^2.510^~4~^~03/01/2010~ -~21475~^~614~^0.983^3^0.023^~1~^~A~^^^1^0.940^1.020^2^0.883^1.084^~4~^~03/01/2010~ -~21475~^~615~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21475~^~617~^2.530^3^0.058^~1~^~AS~^^^1^2.430^2.630^2^2.282^2.778^~4~^~03/01/2010~ -~21475~^~618~^1.010^3^0.038^~1~^~AS~^^^1^0.940^1.070^2^0.847^1.173^~4~^~03/01/2010~ -~21475~^~619~^0.109^3^0.003^~1~^~AS~^^^1^0.102^0.112^2^0.094^0.123^~4~^~03/01/2010~ -~21475~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21475~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~03/01/2010~ -~21475~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21475~^~625~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^2^0.050^0.050^~4~^~03/01/2010~ -~21475~^~626~^0.133^3^0.003^~1~^~AS~^^^1^0.130^0.140^2^0.119^0.148^~4~^~03/01/2010~ -~21475~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~03/01/2010~ -~21475~^~628~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^2^0.020^0.020^~4~^~03/01/2010~ -~21475~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~03/01/2010~ -~21475~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^2^0.001^0.001^~4~^~03/01/2010~ -~21475~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~03/01/2010~ -~21475~^~645~^2.736^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~646~^1.158^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~652~^0.067^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.052^0.081^~4~^~03/01/2010~ -~21475~^~653~^0.047^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.032^0.061^~4~^~03/01/2010~ -~21475~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~4~^~03/01/2010~ -~21475~^~662~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^2^0.020^0.020^~4~^~03/01/2010~ -~21475~^~663~^0.410^3^0.012^~1~^~A~^^^1^0.390^0.430^2^0.360^0.460^~4~^~03/01/2010~ -~21475~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21475~^~665~^0.057^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.042^0.071^~4~^~03/01/2010~ -~21475~^~670~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~4~^~03/01/2010~ -~21475~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~03/01/2010~ -~21475~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~03/01/2010~ -~21475~^~673~^0.113^3^0.003^~1~^~A~^^^1^0.110^0.120^2^0.099^0.128^~4~^~03/01/2010~ -~21475~^~674~^2.120^3^0.053^~1~^~A~^^^1^2.040^2.220^2^1.892^2.348^~4~^~03/01/2010~ -~21475~^~675~^0.917^3^0.039^~1~^~A~^^^1^0.840^0.970^2^0.748^1.086^~4~^~03/01/2010~ -~21475~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21475~^~685~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^2^0.002^0.002^~1, 4~^~03/01/2010~ -~21475~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~03/01/2010~ -~21475~^~689~^0.010^3^0.000^~1~^~AS~^^^1^0.009^0.010^2^0.008^0.011^~4~^~03/01/2010~ -~21475~^~693~^0.430^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21475~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21475~^~851~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~4~^~03/01/2010~ -~21475~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21475~^~853~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~03/01/2010~ -~21475~^~858~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~4~^~03/01/2010~ -~21476~^~312~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~4~^~03/01/2010~ -~21476~^~315~^0.333^3^0.023^~1~^~A~^^^1^0.310^0.380^2^0.233^0.434^~4~^~03/01/2010~ -~21476~^~404~^0.273^3^0.030^~1~^~A~^^^1^0.230^0.330^2^0.146^0.401^~4~^~03/01/2010~ -~21476~^~405~^0.247^3^0.007^~1~^~A~^^^1^0.240^0.260^2^0.218^0.275^~4~^~03/01/2010~ -~21476~^~406~^3.723^3^0.107^~1~^~A~^^^1^3.550^3.920^2^3.261^4.186^~4~^~03/01/2010~ -~21476~^~410~^0.490^1^^~1~^~A~^^^^^^^^^^~03/01/2010~ -~21476~^~415~^0.120^3^0.000^~1~^~A~^^^1^0.120^0.120^2^0.120^0.120^~4~^~03/01/2010~ -~21476~^~605~^0.237^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~606~^5.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~607~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.088^~4~^~03/01/2010~ -~21476~^~608~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.088^~4~^~03/01/2010~ -~21476~^~609~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.068^~4~^~03/01/2010~ -~21476~^~610~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~4~^~03/01/2010~ -~21476~^~611~^0.177^3^0.007^~1~^~A~^^^1^0.170^0.190^2^0.148^0.205^~4~^~03/01/2010~ -~21476~^~612~^0.643^3^0.009^~1~^~A~^^^1^0.630^0.660^2^0.605^0.681^~4~^~03/01/2010~ -~21476~^~613~^2.603^3^0.035^~1~^~A~^^^1^2.540^2.660^2^2.454^2.753^~4~^~03/01/2010~ -~21476~^~614~^1.090^3^0.010^~1~^~A~^^^1^1.070^1.100^2^1.047^1.133^~4~^~03/01/2010~ -~21476~^~615~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^2^0.020^0.020^~4~^~03/01/2010~ -~21476~^~617~^2.993^3^0.027^~1~^~AS~^^^1^2.940^3.030^2^2.876^3.111^~4~^~03/01/2010~ -~21476~^~618~^1.763^3^0.013^~1~^~AS~^^^1^1.750^1.790^2^1.706^1.821^~4~^~03/01/2010~ -~21476~^~619~^0.183^3^0.000^~1~^~AS~^^^1^0.183^0.184^2^0.182^0.185^~4~^~03/01/2010~ -~21476~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21476~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~625~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^2^0.050^0.050^~4~^~03/01/2010~ -~21476~^~626~^0.193^3^0.003^~1~^~AS~^^^1^0.190^0.200^2^0.179^0.208^~4~^~03/01/2010~ -~21476~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^2^0.001^0.001^~1, 4~^~03/01/2010~ -~21476~^~628~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^2^0.040^0.040^~4~^~03/01/2010~ -~21476~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~03/01/2010~ -~21476~^~630~^0.010^3^0.000^~1~^~AS~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^2^0.006^0.006^~4~^~03/01/2010~ -~21476~^~645~^3.289^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~646~^2.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~652~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^2^0.060^0.060^~4~^~03/01/2010~ -~21476~^~653~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^2^0.050^0.050^~4~^~03/01/2010~ -~21476~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^2^0.007^0.007^~4~^~03/01/2010~ -~21476~^~662~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^2^0.020^0.020^~4~^~03/01/2010~ -~21476~^~663~^0.167^3^0.003^~1~^~A~^^^1^0.160^0.170^2^0.152^0.181^~4~^~03/01/2010~ -~21476~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21476~^~665~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^2^0.050^0.050^~4~^~03/01/2010~ -~21476~^~670~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^2^0.040^0.040^~4~^~03/01/2010~ -~21476~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 4~^~03/01/2010~ -~21476~^~672~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~673~^0.173^3^0.003^~1~^~A~^^^1^0.170^0.180^2^0.159^0.188^~4~^~03/01/2010~ -~21476~^~674~^2.827^3^0.030^~1~^~A~^^^1^2.770^2.870^2^2.699^2.954^~4~^~03/01/2010~ -~21476~^~675~^1.673^3^0.013^~1~^~A~^^^1^1.660^1.700^2^1.616^1.731^~4~^~03/01/2010~ -~21476~^~676~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~685~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~4~^~03/01/2010~ -~21476~^~687~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 4~^~03/01/2010~ -~21476~^~689~^0.013^3^0.000^~1~^~AS~^^^1^0.012^0.013^2^0.011^0.014^~4~^~03/01/2010~ -~21476~^~693~^0.187^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21476~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~03/01/2010~ -~21476~^~851~^0.180^3^0.000^~1~^~A~^^^1^0.180^0.180^2^0.180^0.180^~4~^~03/01/2010~ -~21476~^~852~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~03/01/2010~ -~21476~^~853~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^2^0.010^0.010^~4~^~03/01/2010~ -~21476~^~858~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~03/01/2010~ -~21477~^~312~^0.120^5^0.003^~1~^~A~^^^1^0.110^0.130^4^0.111^0.129^~4~^~03/01/2010~ -~21477~^~315~^0.392^5^0.005^~1~^~A~^^^1^0.380^0.410^4^0.378^0.406^~4~^~03/01/2010~ -~21477~^~404~^0.132^5^0.008^~1~^~A~^^^1^0.110^0.160^4^0.110^0.154^~4~^~03/01/2010~ -~21477~^~405~^0.083^4^0.005^~1~^~A~^^^1^0.070^0.090^3^0.067^0.098^~4~^~03/01/2010~ -~21477~^~406~^1.564^5^0.030^~1~^~A~^^^1^1.480^1.640^4^1.481^1.647^~4~^~03/01/2010~ -~21477~^~410~^0.450^3^0.000^~1~^~A~^^^1^0.450^0.450^2^0.450^0.450^~4~^~03/01/2010~ -~21477~^~415~^0.136^5^0.002^~1~^~A~^^^1^0.130^0.140^4^0.129^0.143^~4~^~03/01/2010~ -~21477~^~605~^0.158^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~606~^3.761^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~607~^0.040^5^0.000^~1~^~A~^^^1^0.040^0.040^4^0.040^0.040^~4~^~03/01/2010~ -~21477~^~608~^0.040^5^0.000^~1~^~A~^^^1^0.040^0.040^4^0.040^0.040^~4~^~03/01/2010~ -~21477~^~609~^0.030^5^0.000^~1~^~A~^^^1^0.030^0.030^4^0.030^0.030^~4~^~03/01/2010~ -~21477~^~610~^0.084^5^0.002^~1~^~A~^^^1^0.080^0.090^4^0.077^0.091^~4~^~03/01/2010~ -~21477~^~611~^0.106^5^0.004^~1~^~A~^^^1^0.100^0.120^4^0.095^0.117^~4~^~03/01/2010~ -~21477~^~612~^0.412^5^0.009^~1~^~A~^^^1^0.390^0.440^4^0.388^0.436^~4~^~03/01/2010~ -~21477~^~613~^2.000^5^0.053^~1~^~A~^^^1^1.830^2.120^4^1.853^2.147^~4~^~03/01/2010~ -~21477~^~614~^0.946^5^0.026^~1~^~A~^^^1^0.860^1.000^4^0.874^1.018^~4~^~03/01/2010~ -~21477~^~615~^0.012^5^0.002^~1~^~A~^^^1^0.010^0.020^4^0.006^0.018^~4~^~03/01/2010~ -~21477~^~617~^2.536^5^0.090^~1~^~AS~^^^1^2.270^2.760^4^2.286^2.786^~4~^~03/01/2010~ -~21477~^~618~^1.576^5^0.033^~1~^~AS~^^^1^1.480^1.670^4^1.485^1.667^~4~^~03/01/2010~ -~21477~^~619~^0.149^5^0.002^~1~^~AS~^^^1^0.143^0.153^4^0.142^0.156^~4~^~03/01/2010~ -~21477~^~620~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~621~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 4~^~03/01/2010~ -~21477~^~624~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~625~^0.030^5^0.000^~1~^~A~^^^1^0.030^0.030^4^0.030^0.030^~4~^~03/01/2010~ -~21477~^~626~^0.156^5^0.006^~1~^~AS~^^^1^0.140^0.170^4^0.139^0.173^~4~^~03/01/2010~ -~21477~^~627~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^4^0.001^0.001^~1, 4~^~03/01/2010~ -~21477~^~628~^0.036^5^0.002^~1~^~A~^^^1^0.030^0.040^4^0.029^0.043^~4~^~03/01/2010~ -~21477~^~629~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^4^0.002^0.002^~1, 4~^~03/01/2010~ -~21477~^~630~^0.010^5^0.000^~1~^~AS~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~631~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~4~^~03/01/2010~ -~21477~^~645~^2.770^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~646~^1.775^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~652~^0.040^5^0.000^~1~^~A~^^^1^0.040^0.040^4^0.040^0.040^~4~^~03/01/2010~ -~21477~^~653~^0.032^5^0.002^~1~^~A~^^^1^0.030^0.040^4^0.026^0.038^~4~^~03/01/2010~ -~21477~^~654~^0.006^5^0.000^~1~^~A~^^^1^0.006^0.007^4^0.006^0.007^~4~^~03/01/2010~ -~21477~^~662~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~663~^0.114^5^0.005^~1~^~A~^^^1^0.100^0.130^4^0.100^0.128^~4~^~03/01/2010~ -~21477~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21477~^~665~^0.034^5^0.002^~1~^~A~^^^1^0.030^0.040^4^0.027^0.041^~4~^~03/01/2010~ -~21477~^~670~^0.026^5^0.002^~1~^~A~^^^1^0.020^0.030^4^0.019^0.033^~4~^~03/01/2010~ -~21477~^~671~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^4^0.002^0.002^~1, 4~^~03/01/2010~ -~21477~^~672~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~673~^0.146^5^0.006^~1~^~A~^^^1^0.130^0.160^4^0.129^0.163^~4~^~03/01/2010~ -~21477~^~674~^2.422^5^0.085^~1~^~A~^^^1^2.170^2.630^4^2.186^2.658^~4~^~03/01/2010~ -~21477~^~675~^1.516^5^0.029^~1~^~A~^^^1^1.430^1.600^4^1.437^1.595^~4~^~03/01/2010~ -~21477~^~676~^0.010^5^0.000^~1~^~A~^^^1^0.010^0.010^4^0.010^0.010^~4~^~03/01/2010~ -~21477~^~685~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.003^4^0.003^0.003^~4~^~03/01/2010~ -~21477~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21477~^~689~^0.011^5^0.000^~1~^~AS~^^^1^0.010^0.012^4^0.010^0.013^~4~^~03/01/2010~ -~21477~^~693~^0.124^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21477~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~03/01/2010~ -~21477~^~851~^0.146^5^0.002^~1~^~A~^^^1^0.140^0.150^4^0.139^0.153^~4~^~03/01/2010~ -~21477~^~852~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.003^4^0.002^0.003^~1, 4~^~03/01/2010~ -~21477~^~853~^0.009^5^0.000^~1~^~A~^^^1^0.008^0.009^4^0.008^0.009^~4~^~03/01/2010~ -~21477~^~858~^0.009^5^0.000^~1~^~A~^^^1^0.008^0.010^4^0.008^0.010^~4~^~03/01/2010~ -~21478~^~312~^0.108^4^0.003^~1~^~A~^^^1^0.100^0.110^3^0.100^0.115^~4~^~03/01/2010~ -~21478~^~315~^0.305^4^0.006^~1~^~A~^^^1^0.290^0.320^3^0.284^0.326^~4~^~03/01/2010~ -~21478~^~404~^0.143^4^0.005^~1~^~A~^^^1^0.130^0.150^3^0.127^0.158^~4~^~03/01/2010~ -~21478~^~405~^0.125^4^0.005^~1~^~A~^^^1^0.110^0.130^3^0.109^0.141^~4~^~03/01/2010~ -~21478~^~406~^2.053^4^0.046^~1~^~A~^^^1^1.920^2.130^3^1.905^2.200^~4~^~03/01/2010~ -~21478~^~410~^0.537^3^0.041^~1~^~A~^^^1^0.470^0.610^2^0.362^0.711^~4~^~03/01/2010~ -~21478~^~415~^0.160^4^0.004^~1~^~A~^^^1^0.150^0.170^3^0.147^0.173^~4~^~03/01/2010~ -~21478~^~605~^0.508^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~606~^4.973^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~607~^0.055^4^0.003^~1~^~A~^^^1^0.050^0.060^3^0.046^0.064^~4~^~03/01/2010~ -~21478~^~608~^0.055^4^0.003^~1~^~A~^^^1^0.050^0.060^3^0.046^0.064^~4~^~03/01/2010~ -~21478~^~609~^0.038^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.030^0.045^~4~^~03/01/2010~ -~21478~^~610~^0.108^4^0.005^~1~^~A~^^^1^0.100^0.120^3^0.092^0.123^~4~^~03/01/2010~ -~21478~^~611~^0.135^4^0.006^~1~^~A~^^^1^0.120^0.150^3^0.114^0.156^~4~^~03/01/2010~ -~21478~^~612~^0.528^4^0.027^~1~^~A~^^^1^0.460^0.590^3^0.443^0.612^~4~^~03/01/2010~ -~21478~^~613~^2.670^4^0.072^~1~^~A~^^^1^2.490^2.800^3^2.442^2.898^~4~^~03/01/2010~ -~21478~^~614~^1.248^4^0.028^~1~^~A~^^^1^1.200^1.310^3^1.158^1.337^~4~^~03/01/2010~ -~21478~^~615~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^3^0.020^0.020^~4~^~03/01/2010~ -~21478~^~617~^4.008^4^0.097^~1~^~AS~^^^1^3.860^4.270^3^3.698^4.317^~4~^~03/01/2010~ -~21478~^~618~^1.613^4^0.019^~1~^~AS~^^^1^1.560^1.650^3^1.551^1.674^~4~^~03/01/2010~ -~21478~^~619~^0.137^4^0.005^~1~^~AS~^^^1^0.124^0.144^3^0.121^0.152^~4~^~03/01/2010~ -~21478~^~620~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^3^0.020^0.020^~4~^~03/01/2010~ -~21478~^~621~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~1, 4~^~03/01/2010~ -~21478~^~624~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~4~^~03/01/2010~ -~21478~^~625~^0.038^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.030^0.045^~4~^~03/01/2010~ -~21478~^~626~^0.230^4^0.009^~1~^~AS~^^^1^0.210^0.250^3^0.201^0.259^~4~^~03/01/2010~ -~21478~^~627~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.003^3^0.000^0.004^~1, 4~^~03/01/2010~ -~21478~^~628~^0.053^4^0.003^~1~^~A~^^^1^0.050^0.060^3^0.045^0.060^~4~^~03/01/2010~ -~21478~^~629~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 4~^~03/01/2010~ -~21478~^~630~^0.018^4^0.003^~1~^~AS~^^^1^0.010^0.020^3^0.010^0.025^~4~^~03/01/2010~ -~21478~^~631~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.006^0.007^~4~^~03/01/2010~ -~21478~^~645~^4.354^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~646~^1.827^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~652~^0.050^4^0.004^~1~^~A~^^^1^0.040^0.060^3^0.037^0.063^~4~^~03/01/2010~ -~21478~^~653~^0.048^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.040^0.055^~4~^~03/01/2010~ -~21478~^~654~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.009^~4~^~03/01/2010~ -~21478~^~662~^0.013^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.005^0.020^~4~^~03/01/2010~ -~21478~^~663~^0.445^4^0.005^~1~^~A~^^^1^0.440^0.460^3^0.429^0.461^~4~^~03/01/2010~ -~21478~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2010~ -~21478~^~665~^0.050^4^0.000^~1~^~A~^^^1^0.050^0.050^3^0.050^0.050^~4~^~03/01/2010~ -~21478~^~670~^0.035^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.026^0.044^~4~^~03/01/2010~ -~21478~^~671~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 4~^~03/01/2010~ -~21478~^~672~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^3^0.020^0.020^~4~^~03/01/2010~ -~21478~^~673~^0.218^4^0.009^~1~^~A~^^^1^0.200^0.240^3^0.190^0.245^~4~^~03/01/2010~ -~21478~^~674~^3.563^4^0.093^~1~^~A~^^^1^3.420^3.810^3^3.267^3.858^~4~^~03/01/2010~ -~21478~^~675~^1.528^4^0.021^~1~^~A~^^^1^1.470^1.570^3^1.461^1.594^~4~^~03/01/2010~ -~21478~^~676~^0.018^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.010^0.025^~4~^~03/01/2010~ -~21478~^~685~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^3^0.004^0.004^~4~^~03/01/2010~ -~21478~^~687~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.021^~1, 4~^~03/01/2010~ -~21478~^~689~^0.014^4^0.000^~1~^~AS~^^^1^0.014^0.014^3^0.014^0.014^~4~^~03/01/2010~ -~21478~^~693~^0.458^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21478~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2010~ -~21478~^~851~^0.133^4^0.005^~1~^~A~^^^1^0.120^0.140^3^0.117^0.148^~4~^~03/01/2010~ -~21478~^~852~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.004^3^0.004^0.004^~4~^~03/01/2010~ -~21478~^~853~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~4~^~03/01/2010~ -~21478~^~858~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~4~^~03/01/2010~ -~21479~^~312~^0.118^6^0.003^~1~^~A~^^^1^0.110^0.130^5^0.110^0.126^~4~^~03/01/2010~ -~21479~^~315~^0.382^6^0.005^~1~^~A~^^^1^0.360^0.400^5^0.368^0.396^~4~^~03/01/2010~ -~21479~^~404~^0.153^6^0.006^~1~^~A~^^^1^0.130^0.170^5^0.138^0.169^~4~^~03/01/2010~ -~21479~^~405~^0.080^6^0.004^~1~^~A~^^^1^0.070^0.090^5^0.071^0.089^~4~^~03/01/2010~ -~21479~^~406~^1.605^6^0.021^~1~^~A~^^^1^1.540^1.650^5^1.552^1.658^~4~^~03/01/2010~ -~21479~^~410~^0.467^3^0.015^~1~^~A~^^^1^0.440^0.490^2^0.404^0.529^~4~^~03/01/2010~ -~21479~^~415~^0.137^6^0.002^~1~^~A~^^^1^0.130^0.140^5^0.131^0.142^~4~^~03/01/2010~ -~21479~^~605~^0.143^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~606~^3.965^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~607~^0.040^6^0.000^~1~^~A~^^^1^0.040^0.040^5^0.040^0.040^~4~^~03/01/2010~ -~21479~^~608~^0.038^6^0.002^~1~^~A~^^^1^0.030^0.040^5^0.034^0.043^~4~^~03/01/2010~ -~21479~^~609~^0.028^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.024^0.033^~4~^~03/01/2010~ -~21479~^~610~^0.080^6^0.003^~1~^~A~^^^1^0.070^0.090^5^0.073^0.087^~4~^~03/01/2010~ -~21479~^~611~^0.097^6^0.003^~1~^~A~^^^1^0.090^0.110^5^0.088^0.105^~4~^~03/01/2010~ -~21479~^~612~^0.380^6^0.008^~1~^~A~^^^1^0.360^0.410^5^0.360^0.400^~4~^~03/01/2010~ -~21479~^~613~^2.158^6^0.039^~1~^~A~^^^1^2.050^2.330^5^2.058^2.259^~4~^~03/01/2010~ -~21479~^~614~^1.037^6^0.019^~1~^~A~^^^1^0.990^1.120^5^0.988^1.086^~4~^~03/01/2010~ -~21479~^~615~^0.020^6^0.000^~1~^~A~^^^1^0.020^0.020^5^0.020^0.020^~4~^~03/01/2010~ -~21479~^~617~^3.108^6^0.062^~1~^~AS~^^^1^2.890^3.350^5^2.950^3.267^~4~^~03/01/2010~ -~21479~^~618~^1.670^6^0.021^~1~^~AS~^^^1^1.590^1.740^5^1.616^1.724^~4~^~03/01/2010~ -~21479~^~619~^0.148^6^0.002^~1~^~AS~^^^1^0.143^0.154^5^0.142^0.154^~4~^~03/01/2010~ -~21479~^~620~^0.018^6^0.002^~1~^~A~^^^1^0.010^0.020^5^0.014^0.023^~4~^~03/01/2010~ -~21479~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2010~ -~21479~^~624~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^5^0.010^0.010^~4~^~03/01/2010~ -~21479~^~625~^0.025^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.019^0.031^~4~^~03/01/2010~ -~21479~^~626~^0.178^6^0.005^~1~^~AS~^^^1^0.170^0.200^5^0.166^0.191^~4~^~03/01/2010~ -~21479~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~1, 4~^~03/01/2010~ -~21479~^~628~^0.047^6^0.002^~1~^~A~^^^1^0.040^0.050^5^0.041^0.052^~4~^~03/01/2010~ -~21479~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^5^0.002^0.002^~1, 4~^~03/01/2010~ -~21479~^~630~^0.009^6^0.000^~1~^~AS~^^^1^0.007^0.010^5^0.008^0.010^~4~^~03/01/2010~ -~21479~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~4~^~03/01/2010~ -~21479~^~645~^3.372^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~646~^1.891^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~652~^0.033^6^0.002^~1~^~A~^^^1^0.030^0.040^5^0.028^0.039^~4~^~03/01/2010~ -~21479~^~653~^0.035^6^0.002^~1~^~A~^^^1^0.030^0.040^5^0.029^0.041^~4~^~03/01/2010~ -~21479~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~4~^~03/01/2010~ -~21479~^~662~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^5^0.010^0.010^~4~^~03/01/2010~ -~21479~^~663~^0.103^6^0.003^~1~^~A~^^^1^0.090^0.110^5^0.095^0.112^~4~^~03/01/2010~ -~21479~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2010~ -~21479~^~665~^0.030^6^0.000^~1~^~A~^^^1^0.030^0.030^5^0.030^0.030^~4~^~03/01/2010~ -~21479~^~670~^0.025^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.019^0.031^~4~^~03/01/2010~ -~21479~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~03/01/2010~ -~21479~^~672~^0.020^6^0.000^~1~^~A~^^^1^0.020^0.020^5^0.020^0.020^~4~^~03/01/2010~ -~21479~^~673~^0.168^6^0.005^~1~^~A~^^^1^0.160^0.190^5^0.156^0.181^~4~^~03/01/2010~ -~21479~^~674~^3.005^6^0.060^~1~^~A~^^^1^2.790^3.240^5^2.850^3.160^~4~^~03/01/2010~ -~21479~^~675~^1.615^6^0.019^~1~^~A~^^^1^1.540^1.680^5^1.566^1.664^~4~^~03/01/2010~ -~21479~^~676~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.008^0.010^~4~^~03/01/2010~ -~21479~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~03/01/2010~ -~21479~^~687~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.010^5^-0.001^0.007^~1, 4~^~03/01/2010~ -~21479~^~689~^0.014^6^0.000^~1~^~AS~^^^1^0.012^0.014^5^0.013^0.014^~4~^~03/01/2010~ -~21479~^~693~^0.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21479~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2010~ -~21479~^~851~^0.145^6^0.002^~1~^~A~^^^1^0.140^0.150^5^0.139^0.151^~4~^~03/01/2010~ -~21479~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~03/01/2010~ -~21479~^~853~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.010^5^0.009^0.010^~4~^~03/01/2010~ -~21479~^~858~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^5^0.010^0.010^~4~^~03/01/2010~ -~21480~^~312~^0.110^4^0.000^~1~^~A~^^^1^0.110^0.110^3^0.110^0.110^~4~^~03/01/2010~ -~21480~^~315~^0.313^4^0.003^~1~^~A~^^^1^0.310^0.320^3^0.305^0.320^~4~^~03/01/2010~ -~21480~^~404~^0.148^4^0.020^~1~^~A~^^^1^0.090^0.180^3^0.083^0.212^~4~^~03/01/2010~ -~21480~^~405~^0.098^4^0.006^~1~^~A~^^^1^0.080^0.110^3^0.077^0.118^~4~^~03/01/2010~ -~21480~^~406~^2.013^4^0.034^~1~^~A~^^^1^1.910^2.050^3^1.904^2.121^~4~^~03/01/2010~ -~21480~^~410~^0.537^3^0.009^~1~^~A~^^^1^0.520^0.550^2^0.499^0.575^~4~^~03/01/2010~ -~21480~^~415~^0.163^4^0.008^~1~^~A~^^^1^0.150^0.180^3^0.139^0.186^~4~^~03/01/2010~ -~21480~^~605~^0.460^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~606~^4.377^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~607~^0.043^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.035^0.050^~4~^~03/01/2010~ -~21480~^~608~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^3^0.040^0.040^~4~^~03/01/2010~ -~21480~^~609~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^3^0.030^0.030^~4~^~03/01/2010~ -~21480~^~610~^0.090^4^0.004^~1~^~A~^^^1^0.080^0.100^3^0.077^0.103^~4~^~03/01/2010~ -~21480~^~611~^0.113^4^0.006^~1~^~A~^^^1^0.100^0.130^3^0.092^0.133^~4~^~03/01/2010~ -~21480~^~612~^0.438^4^0.019^~1~^~A~^^^1^0.400^0.490^3^0.377^0.498^~4~^~03/01/2010~ -~21480~^~613~^2.370^4^0.076^~1~^~A~^^^1^2.150^2.500^3^2.127^2.613^~4~^~03/01/2010~ -~21480~^~614~^1.133^4^0.040^~1~^~A~^^^1^1.020^1.210^3^1.004^1.261^~4~^~03/01/2010~ -~21480~^~615~^0.020^4^0.000^~1~^~A~^^^1^0.020^0.020^3^0.020^0.020^~4~^~03/01/2010~ -~21480~^~617~^3.680^4^0.163^~1~^~AS~^^^1^3.270^4.040^3^3.163^4.197^~4~^~03/01/2010~ -~21480~^~618~^1.600^4^0.046^~1~^~AS~^^^1^1.480^1.690^3^1.454^1.746^~4~^~03/01/2010~ -~21480~^~619~^0.121^4^0.007^~1~^~AS~^^^1^0.104^0.133^3^0.098^0.143^~4~^~03/01/2010~ -~21480~^~620~^0.018^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.010^0.025^~4~^~03/01/2010~ -~21480~^~621~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 4~^~03/01/2010~ -~21480~^~624~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~4~^~03/01/2010~ -~21480~^~625~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^3^0.030^0.030^~4~^~03/01/2010~ -~21480~^~626~^0.190^4^0.011^~1~^~AS~^^^1^0.160^0.210^3^0.156^0.224^~4~^~03/01/2010~ -~21480~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^3^0.001^0.001^~1, 4~^~03/01/2010~ -~21480~^~628~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.036^0.054^~4~^~03/01/2010~ -~21480~^~629~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^3^0.002^0.002^~1, 4~^~03/01/2010~ -~21480~^~630~^0.009^4^0.001^~1~^~AS~^^^1^0.007^0.010^3^0.007^0.012^~4~^~03/01/2010~ -~21480~^~631~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~4~^~03/01/2010~ -~21480~^~645~^3.957^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~646~^1.790^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~652~^0.043^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.035^0.050^~4~^~03/01/2010~ -~21480~^~653~^0.040^4^0.000^~1~^~A~^^^1^0.040^0.040^3^0.040^0.040^~4~^~03/01/2010~ -~21480~^~654~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^3^0.007^0.007^~4~^~03/01/2010~ -~21480~^~662~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.010^3^0.010^0.010^~4~^~03/01/2010~ -~21480~^~663~^0.403^4^0.005^~1~^~A~^^^1^0.390^0.410^3^0.387^0.418^~4~^~03/01/2010~ -~21480~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2010~ -~21480~^~665~^0.048^4^0.003^~1~^~A~^^^1^0.040^0.050^3^0.040^0.055^~4~^~03/01/2010~ -~21480~^~670~^0.028^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.020^0.035^~4~^~03/01/2010~ -~21480~^~671~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 4~^~03/01/2010~ -~21480~^~672~^0.018^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.010^0.025^~4~^~03/01/2010~ -~21480~^~673~^0.180^4^0.011^~1~^~A~^^^1^0.150^0.200^3^0.146^0.214^~4~^~03/01/2010~ -~21480~^~674~^3.278^4^0.166^~1~^~A~^^^1^2.860^3.650^3^2.750^3.805^~4~^~03/01/2010~ -~21480~^~675~^1.525^4^0.043^~1~^~A~^^^1^1.410^1.610^3^1.387^1.663^~4~^~03/01/2010~ -~21480~^~676~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.010^3^0.007^0.012^~4~^~03/01/2010~ -~21480~^~685~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 4~^~03/01/2010~ -~21480~^~687~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 4~^~03/01/2010~ -~21480~^~689~^0.013^4^0.001^~1~^~AS~^^^1^0.011^0.014^3^0.011^0.016^~4~^~03/01/2010~ -~21480~^~693~^0.413^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~695~^0.048^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~ -~21480~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 4~^~03/01/2010~ -~21480~^~851~^0.118^4^0.008^~1~^~A~^^^1^0.100^0.130^3^0.094^0.141^~4~^~03/01/2010~ -~21480~^~852~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~4~^~03/01/2010~ -~21480~^~853~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~4~^~03/01/2010~ -~21480~^~858~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~4~^~03/01/2010~ -~21482~^~312~^0.107^12^0.003^~1~^~A~^^^1^0.095^0.124^11^0.101^0.112^~4~^~02/01/2011~ -~21482~^~315~^0.323^12^0.016^~1~^~A~^^^1^0.242^0.402^11^0.287^0.359^~4~^~02/01/2011~ -~21482~^~404~^0.385^2^^~1~^~A~^^^1^0.370^0.400^1^^^^~02/01/2011~ -~21482~^~405~^0.190^2^^~1~^~A~^^^1^0.180^0.200^1^^^^~02/01/2011~ -~21482~^~406~^3.570^2^^~1~^~A~^^^1^3.310^3.830^1^^^^~02/01/2011~ -~21482~^~415~^0.070^2^^~1~^~A~^^^1^0.050^0.090^1^^^^~02/01/2011~ -~21482~^~605~^0.231^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~606~^4.805^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~607~^0.079^12^0.005^~1~^~A~^^^1^0.053^0.121^11^0.067^0.091^~4~^~02/01/2011~ -~21482~^~608~^0.063^12^0.004^~1~^~A~^^^1^0.047^0.091^11^0.055^0.071^~4~^~02/01/2011~ -~21482~^~609~^0.043^12^0.002^~1~^~A~^^^1^0.034^0.060^11^0.039^0.048^~4~^~02/01/2011~ -~21482~^~610~^0.110^12^0.005^~1~^~A~^^^1^0.089^0.144^11^0.100^0.121^~4~^~02/01/2011~ -~21482~^~611~^0.132^12^0.006^~1~^~A~^^^1^0.107^0.171^11^0.120^0.145^~4~^~02/01/2011~ -~21482~^~612~^0.493^12^0.017^~1~^~A~^^^1^0.399^0.614^11^0.455^0.530^~4~^~02/01/2011~ -~21482~^~613~^2.585^12^0.050^~1~^~A~^^^1^2.277^2.824^11^2.474^2.696^~4~^~02/01/2011~ -~21482~^~614~^1.147^12^0.025^~1~^~A~^^^1^1.005^1.284^11^1.093^1.201^~4~^~02/01/2011~ -~21482~^~615~^0.027^12^0.001^~1~^~A~^^^1^0.024^0.033^11^0.025^0.029^~4~^~02/01/2011~ -~21482~^~617~^3.623^12^0.115^~1~^~AS~^^^1^3.035^4.207^11^3.371^3.875^~4~^~02/01/2011~ -~21482~^~618~^2.815^12^0.163^~1~^~AS~^^^1^2.198^4.003^11^2.456^3.173^~4~^~02/01/2011~ -~21482~^~619~^0.304^12^0.021^~1~^~AS~^^^1^0.235^0.468^11^0.258^0.349^~4~^~02/01/2011~ -~21482~^~620~^0.026^12^0.001^~1~^~A~^^^1^0.020^0.038^11^0.023^0.030^~4~^~02/01/2011~ -~21482~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21482~^~624~^0.018^12^0.001^~1~^~A~^^^1^0.015^0.024^11^0.016^0.020^~4~^~02/01/2011~ -~21482~^~625~^0.037^12^0.002^~1~^~A~^^^1^0.026^0.048^11^0.033^0.041^~4~^~02/01/2011~ -~21482~^~626~^0.183^12^0.007^~1~^~AS~^^^1^0.147^0.224^11^0.168^0.199^~4~^~02/01/2011~ -~21482~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 4~^~02/01/2011~ -~21482~^~628~^0.071^12^0.003^~1~^~A~^^^1^0.053^0.089^11^0.063^0.078^~4~^~02/01/2011~ -~21482~^~629~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.002^0.004^~1, 4~^~02/01/2011~ -~21482~^~630~^0.003^12^0.000^~1~^~AS~^^^1^0.002^0.003^11^0.002^0.003^~4~^~02/01/2011~ -~21482~^~631~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.008^11^0.006^0.007^~4~^~02/01/2011~ -~21482~^~645~^3.941^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~646~^3.217^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~652~^0.050^12^0.002^~1~^~A~^^^1^0.039^0.062^11^0.046^0.054^~4~^~02/01/2011~ -~21482~^~653~^0.047^12^0.001^~1~^~A~^^^1^0.042^0.053^11^0.045^0.049^~4~^~02/01/2011~ -~21482~^~654~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.010^11^0.008^0.009^~4~^~02/01/2011~ -~21482~^~662~^0.018^12^0.001^~1~^~A~^^^1^0.014^0.022^11^0.016^0.019^~4~^~02/01/2011~ -~21482~^~663~^0.154^12^0.008^~1~^~A~^^^1^0.114^0.193^11^0.136^0.172^~4~^~02/01/2011~ -~21482~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21482~^~665~^0.059^12^0.003^~1~^~A~^^^1^0.048^0.075^11^0.053^0.065^~4~^~02/01/2011~ -~21482~^~670~^0.038^12^0.001^~1~^~A~^^^1^0.032^0.042^11^0.036^0.040^~4~^~02/01/2011~ -~21482~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21482~^~672~^0.032^12^0.002^~1~^~A~^^^1^0.024^0.051^11^0.027^0.038^~4~^~02/01/2011~ -~21482~^~673~^0.166^12^0.007^~1~^~A~^^^1^0.130^0.209^11^0.150^0.181^~4~^~02/01/2011~ -~21482~^~674~^3.469^12^0.120^~1~^~A~^^^1^2.868^4.072^11^3.204^3.734^~4~^~02/01/2011~ -~21482~^~675~^2.717^12^0.164^~1~^~A~^^^1^2.081^3.899^11^2.356^3.079^~4~^~02/01/2011~ -~21482~^~676~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.003^11^0.002^0.003^~1, 4~^~02/01/2011~ -~21482~^~685~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.003^0.004^~1, 4~^~02/01/2011~ -~21482~^~687~^0.023^12^0.001^~1~^~A~^^^1^0.018^0.026^11^0.021^0.024^~4~^~02/01/2011~ -~21482~^~689~^0.018^12^0.001^~1~^~AS~^^^1^0.015^0.024^11^0.016^0.020^~4~^~02/01/2011~ -~21482~^~693~^0.172^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21482~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21482~^~851~^0.300^12^0.021^~1~^~A~^^^1^0.231^0.464^11^0.255^0.345^~4~^~02/01/2011~ -~21482~^~852~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.004^0.006^~4~^~02/01/2011~ -~21482~^~853~^0.013^12^0.001^~1~^~A~^^^1^0.011^0.016^11^0.012^0.014^~4~^~02/01/2011~ -~21482~^~858~^0.010^12^0.001^~1~^~A~^^^1^0.007^0.013^11^0.009^0.011^~4~^~02/01/2011~ -~21483~^~312~^0.105^12^0.003^~1~^~A~^^^1^0.094^0.129^11^0.099^0.111^~4~^~02/01/2011~ -~21483~^~315~^0.301^12^0.017^~1~^~A~^^^1^0.221^0.378^11^0.264^0.337^~4~^~02/01/2011~ -~21483~^~404~^0.225^2^^~1~^~A~^^^1^0.090^0.360^1^^^^~02/01/2011~ -~21483~^~405~^0.150^2^^~1~^~A~^^^1^0.080^0.220^1^^^^~02/01/2011~ -~21483~^~406~^3.060^2^^~1~^~A~^^^1^1.620^4.500^1^^^^~02/01/2011~ -~21483~^~415~^0.075^2^^~1~^~A~^^^1^0.070^0.080^1^^^^~02/01/2011~ -~21483~^~605~^0.298^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~606~^6.888^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~607~^0.123^12^0.007^~1~^~A~^^^1^0.084^0.173^11^0.108^0.138^~4~^~02/01/2011~ -~21483~^~608~^0.097^12^0.004^~1~^~A~^^^1^0.081^0.124^11^0.088^0.106^~4~^~02/01/2011~ -~21483~^~609~^0.065^12^0.002^~1~^~A~^^^1^0.055^0.076^11^0.061^0.070^~4~^~02/01/2011~ -~21483~^~610~^0.166^12^0.004^~1~^~A~^^^1^0.144^0.194^11^0.157^0.176^~4~^~02/01/2011~ -~21483~^~611~^0.198^12^0.006^~1~^~A~^^^1^0.172^0.229^11^0.186^0.211^~4~^~02/01/2011~ -~21483~^~612~^0.739^12^0.020^~1~^~A~^^^1^0.647^0.866^11^0.696^0.783^~4~^~02/01/2011~ -~21483~^~613~^3.668^12^0.086^~1~^~A~^^^1^3.207^4.326^11^3.479^3.857^~4~^~02/01/2011~ -~21483~^~614~^1.618^12^0.035^~1~^~A~^^^1^1.452^1.789^11^1.540^1.696^~4~^~02/01/2011~ -~21483~^~615~^0.035^12^0.001^~1~^~A~^^^1^0.028^0.043^11^0.032^0.038^~4~^~02/01/2011~ -~21483~^~617~^5.075^12^0.146^~1~^~AS~^^^1^4.367^5.922^11^4.755^5.395^~4~^~02/01/2011~ -~21483~^~618~^3.412^12^0.176^~1~^~AS~^^^1^2.633^4.322^11^3.024^3.800^~4~^~02/01/2011~ -~21483~^~619~^0.366^12^0.031^~1~^~AS~^^^1^0.237^0.510^11^0.298^0.434^~4~^~02/01/2011~ -~21483~^~620~^0.040^12^0.002^~1~^~A~^^^1^0.031^0.053^11^0.036^0.045^~4~^~02/01/2011~ -~21483~^~621~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.002^0.003^~1, 4~^~02/01/2011~ -~21483~^~624~^0.021^12^0.001^~1~^~A~^^^1^0.015^0.029^11^0.018^0.025^~4~^~02/01/2011~ -~21483~^~625~^0.055^12^0.002^~1~^~A~^^^1^0.044^0.071^11^0.050^0.060^~4~^~02/01/2011~ -~21483~^~626~^0.262^12^0.010^~1~^~AS~^^^1^0.212^0.321^11^0.240^0.285^~4~^~02/01/2011~ -~21483~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21483~^~628~^0.094^12^0.003^~1~^~A~^^^1^0.080^0.113^11^0.087^0.102^~4~^~02/01/2011~ -~21483~^~629~^0.005^12^0.002^~1~^~A~^^^1^0.002^0.025^11^0.001^0.009^~1, 4~^~02/01/2011~ -~21483~^~630~^0.003^12^0.000^~1~^~AS~^^^1^0.002^0.005^11^0.002^0.003^~4~^~02/01/2011~ -~21483~^~631~^0.009^12^0.000^~1~^~A~^^^1^0.008^0.011^11^0.009^0.010^~4~^~02/01/2011~ -~21483~^~645~^5.523^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~646~^3.926^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~652~^0.074^12^0.002^~1~^~A~^^^1^0.064^0.085^11^0.069^0.078^~4~^~02/01/2011~ -~21483~^~653~^0.069^12^0.002^~1~^~A~^^^1^0.063^0.082^11^0.066^0.073^~4~^~02/01/2011~ -~21483~^~654~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.012^11^0.009^0.010^~4~^~02/01/2011~ -~21483~^~662~^0.026^12^0.001^~1~^~A~^^^1^0.018^0.032^11^0.023^0.028^~4~^~02/01/2011~ -~21483~^~663~^0.198^12^0.008^~1~^~A~^^^1^0.113^0.235^11^0.179^0.217^~4~^~02/01/2011~ -~21483~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21483~^~665~^0.075^12^0.002^~1~^~A~^^^1^0.065^0.094^11^0.070^0.080^~4~^~02/01/2011~ -~21483~^~670~^0.055^12^0.002^~1~^~A~^^^1^0.045^0.065^11^0.051^0.058^~4~^~02/01/2011~ -~21483~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.002^~1, 4~^~02/01/2011~ -~21483~^~672~^0.048^12^0.003^~1~^~A~^^^1^0.032^0.068^11^0.041^0.054^~4~^~02/01/2011~ -~21483~^~673~^0.237^12^0.010^~1~^~A~^^^1^0.190^0.289^11^0.216^0.258^~4~^~02/01/2011~ -~21483~^~674~^4.877^12^0.141^~1~^~A~^^^1^4.254^5.704^11^4.567^5.187^~4~^~02/01/2011~ -~21483~^~675~^3.283^12^0.173^~1~^~A~^^^1^2.502^4.163^11^2.901^3.664^~4~^~02/01/2011~ -~21483~^~676~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.002^0.003^~1, 4~^~02/01/2011~ -~21483~^~685~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.005^0.006^~4~^~02/01/2011~ -~21483~^~687~^0.033^12^0.001^~1~^~A~^^^1^0.025^0.040^11^0.030^0.035^~4~^~02/01/2011~ -~21483~^~689~^0.026^12^0.001^~1~^~AS~^^^1^0.019^0.034^11^0.024^0.029^~4~^~02/01/2011~ -~21483~^~693~^0.224^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~695~^0.075^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21483~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21483~^~851~^0.361^12^0.031^~1~^~A~^^^1^0.231^0.505^11^0.292^0.429^~4~^~02/01/2011~ -~21483~^~852~^0.008^12^0.000^~1~^~A~^^^1^0.005^0.010^11^0.007^0.009^~4~^~02/01/2011~ -~21483~^~853~^0.018^12^0.001^~1~^~A~^^^1^0.014^0.024^11^0.017^0.020^~4~^~02/01/2011~ -~21483~^~858~^0.014^12^0.001^~1~^~A~^^^1^0.011^0.018^11^0.012^0.015^~4~^~02/01/2011~ -~21484~^~312~^0.111^12^0.003^~1~^~A~^^^1^0.096^0.128^11^0.104^0.117^~4~^~02/01/2011~ -~21484~^~315~^0.352^12^0.008^~1~^~A~^^^1^0.313^0.397^11^0.335^0.368^~4~^~02/01/2011~ -~21484~^~404~^0.345^2^^~1~^~A~^^^1^0.330^0.360^1^^^^~02/01/2011~ -~21484~^~405~^0.190^2^^~1~^~A~^^^1^0.160^0.220^1^^^^~02/01/2011~ -~21484~^~406~^3.800^2^^~1~^~A~^^^1^3.350^4.250^1^^^^~02/01/2011~ -~21484~^~415~^0.080^2^^~1~^~A~^^^1^0.070^0.090^1^^^^~02/01/2011~ -~21484~^~605~^0.216^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~606~^5.033^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~607~^0.081^12^0.006^~1~^~A~^^^1^0.055^0.124^11^0.068^0.094^~4~^~02/01/2011~ -~21484~^~608~^0.065^12^0.004^~1~^~A~^^^1^0.052^0.095^11^0.057^0.073^~4~^~02/01/2011~ -~21484~^~609~^0.044^12^0.002^~1~^~A~^^^1^0.036^0.054^11^0.040^0.047^~4~^~02/01/2011~ -~21484~^~610~^0.111^12^0.003^~1~^~A~^^^1^0.099^0.127^11^0.105^0.117^~4~^~02/01/2011~ -~21484~^~611~^0.135^12^0.003^~1~^~A~^^^1^0.118^0.158^11^0.128^0.142^~4~^~02/01/2011~ -~21484~^~612~^0.505^12^0.013^~1~^~A~^^^1^0.430^0.590^11^0.476^0.534^~4~^~02/01/2011~ -~21484~^~613~^2.776^12^0.110^~1~^~A~^^^1^2.263^3.257^11^2.533^3.018^~4~^~02/01/2011~ -~21484~^~614~^1.170^12^0.031^~1~^~A~^^^1^1.012^1.377^11^1.102^1.238^~4~^~02/01/2011~ -~21484~^~615~^0.026^12^0.001^~1~^~A~^^^1^0.022^0.031^11^0.024^0.028^~4~^~02/01/2011~ -~21484~^~617~^3.732^12^0.213^~1~^~AS~^^^1^2.754^4.935^11^3.263^4.200^~4~^~02/01/2011~ -~21484~^~618~^2.057^12^0.060^~1~^~AS~^^^1^1.625^2.363^11^1.925^2.190^~4~^~02/01/2011~ -~21484~^~619~^0.193^12^0.006^~1~^~AS~^^^1^0.142^0.217^11^0.180^0.206^~4~^~02/01/2011~ -~21484~^~620~^0.027^12^0.002^~1~^~A~^^^1^0.019^0.038^11^0.023^0.031^~4~^~02/01/2011~ -~21484~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 4~^~02/01/2011~ -~21484~^~624~^0.014^12^0.000^~1~^~A~^^^1^0.012^0.015^11^0.013^0.014^~4~^~02/01/2011~ -~21484~^~625~^0.037^12^0.002^~1~^~A~^^^1^0.028^0.050^11^0.033^0.040^~4~^~02/01/2011~ -~21484~^~626~^0.187^12^0.011^~1~^~AS~^^^1^0.137^0.248^11^0.163^0.212^~4~^~02/01/2011~ -~21484~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 4~^~02/01/2011~ -~21484~^~628~^0.068^12^0.004^~1~^~A~^^^1^0.044^0.086^11^0.059^0.077^~4~^~02/01/2011~ -~21484~^~629~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.007^11^0.003^0.004^~1, 4~^~02/01/2011~ -~21484~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.003^11^0.002^0.002^~4~^~02/01/2011~ -~21484~^~631~^0.006^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.005^0.007^~1, 4~^~02/01/2011~ -~21484~^~645~^4.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~646~^2.352^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~652~^0.050^12^0.001^~1~^~A~^^^1^0.043^0.060^11^0.047^0.053^~4~^~02/01/2011~ -~21484~^~653~^0.047^12^0.001^~1~^~A~^^^1^0.039^0.054^11^0.044^0.050^~4~^~02/01/2011~ -~21484~^~654~^0.007^12^0.000^~1~^~A~^^^1^0.006^0.008^11^0.007^0.008^~4~^~02/01/2011~ -~21484~^~662~^0.018^12^0.001^~1~^~A~^^^1^0.014^0.021^11^0.016^0.019^~4~^~02/01/2011~ -~21484~^~663~^0.145^12^0.004^~1~^~A~^^^1^0.128^0.168^11^0.137^0.153^~4~^~02/01/2011~ -~21484~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21484~^~665~^0.054^12^0.002^~1~^~A~^^^1^0.046^0.066^11^0.050^0.058^~4~^~02/01/2011~ -~21484~^~670~^0.037^12^0.001^~1~^~A~^^^1^0.033^0.041^11^0.036^0.039^~4~^~02/01/2011~ -~21484~^~671~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.001^0.003^~1, 4~^~02/01/2011~ -~21484~^~672~^0.033^12^0.003^~1~^~A~^^^1^0.023^0.055^11^0.027^0.039^~4~^~02/01/2011~ -~21484~^~673~^0.169^12^0.011^~1~^~A~^^^1^0.122^0.233^11^0.146^0.193^~4~^~02/01/2011~ -~21484~^~674~^3.587^12^0.211^~1~^~A~^^^1^2.626^4.801^11^3.122^4.052^~4~^~02/01/2011~ -~21484~^~675~^1.966^12^0.060^~1~^~A~^^^1^1.535^2.282^11^1.834^2.097^~4~^~02/01/2011~ -~21484~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.002^0.002^~1, 4~^~02/01/2011~ -~21484~^~685~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.005^11^0.003^0.004^~4~^~02/01/2011~ -~21484~^~687~^0.022^12^0.001^~1~^~A~^^^1^0.017^0.027^11^0.020^0.024^~4~^~02/01/2011~ -~21484~^~689~^0.019^12^0.001^~1~^~AS~^^^1^0.013^0.026^11^0.016^0.021^~4~^~02/01/2011~ -~21484~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21484~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21484~^~851~^0.189^12^0.006^~1~^~A~^^^1^0.137^0.214^11^0.175^0.203^~4~^~02/01/2011~ -~21484~^~852~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.004^0.006^~4~^~02/01/2011~ -~21484~^~853~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.018^11^0.012^0.015^~4~^~02/01/2011~ -~21484~^~858~^0.010^12^0.001^~1~^~A~^^^1^0.008^0.016^11^0.009^0.011^~4~^~02/01/2011~ -~21485~^~312~^0.110^12^0.004^~1~^~A~^^^1^0.092^0.140^11^0.102^0.118^~4~^~02/01/2011~ -~21485~^~315~^0.355^12^0.024^~1~^~A~^^^1^0.251^0.458^11^0.303^0.407^~4~^~02/01/2011~ -~21485~^~404~^0.225^2^^~1~^~A~^^^1^0.110^0.340^1^^^^~02/01/2011~ -~21485~^~405~^0.170^2^^~1~^~A~^^^1^0.110^0.230^1^^^^~02/01/2011~ -~21485~^~406~^3.310^2^^~1~^~A~^^^1^2.070^4.550^1^^^^~02/01/2011~ -~21485~^~415~^0.095^2^^~1~^~A~^^^1^0.080^0.110^1^^^^~02/01/2011~ -~21485~^~605~^0.425^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~606~^7.115^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~607~^0.110^12^0.008^~1~^~A~^^^1^0.068^0.154^11^0.092^0.128^~4~^~02/01/2011~ -~21485~^~608~^0.091^12^0.005^~1~^~A~^^^1^0.059^0.117^11^0.080^0.103^~4~^~02/01/2011~ -~21485~^~609~^0.063^12^0.003^~1~^~A~^^^1^0.044^0.077^11^0.056^0.070^~4~^~02/01/2011~ -~21485~^~610~^0.162^12^0.006^~1~^~A~^^^1^0.122^0.187^11^0.148^0.175^~4~^~02/01/2011~ -~21485~^~611~^0.196^12^0.006^~1~^~A~^^^1^0.159^0.228^11^0.182^0.209^~4~^~02/01/2011~ -~21485~^~612~^0.772^12^0.024^~1~^~A~^^^1^0.606^0.920^11^0.718^0.826^~4~^~02/01/2011~ -~21485~^~613~^3.750^12^0.088^~1~^~A~^^^1^3.150^4.334^11^3.557^3.942^~4~^~02/01/2011~ -~21485~^~614~^1.725^12^0.036^~1~^~A~^^^1^1.505^1.904^11^1.645^1.805^~4~^~02/01/2011~ -~21485~^~615~^0.035^12^0.001^~1~^~A~^^^1^0.030^0.042^11^0.033^0.037^~4~^~02/01/2011~ -~21485~^~617~^5.114^12^0.129^~1~^~AS~^^^1^4.384^5.877^11^4.830^5.398^~4~^~02/01/2011~ -~21485~^~618~^3.176^12^0.149^~1~^~AS~^^^1^2.503^3.993^11^2.848^3.503^~4~^~02/01/2011~ -~21485~^~619~^0.319^12^0.038^~1~^~AS~^^^1^0.007^0.479^11^0.236^0.402^~4~^~02/01/2011~ -~21485~^~620~^0.036^12^0.001^~1~^~A~^^^1^0.031^0.041^11^0.034^0.038^~4~^~02/01/2011~ -~21485~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 4~^~02/01/2011~ -~21485~^~624~^0.023^12^0.001^~1~^~A~^^^1^0.018^0.028^11^0.020^0.025^~4~^~02/01/2011~ -~21485~^~625~^0.067^12^0.004^~1~^~A~^^^1^0.044^0.094^11^0.058^0.076^~4~^~02/01/2011~ -~21485~^~626~^0.278^12^0.008^~1~^~AS~^^^1^0.228^0.335^11^0.260^0.295^~4~^~02/01/2011~ -~21485~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.001^0.003^~1, 4~^~02/01/2011~ -~21485~^~628~^0.094^12^0.002^~1~^~A~^^^1^0.084^0.109^11^0.088^0.099^~4~^~02/01/2011~ -~21485~^~629~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.004^0.005^~4~^~02/01/2011~ -~21485~^~630~^0.021^12^0.003^~1~^~AS~^^^1^0.011^0.034^11^0.015^0.028^~4~^~02/01/2011~ -~21485~^~631~^0.008^12^0.000^~1~^~A~^^^1^0.007^0.010^11^0.008^0.009^~4~^~02/01/2011~ -~21485~^~645~^5.623^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~646~^3.617^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~652~^0.082^12^0.003^~1~^~A~^^^1^0.060^0.101^11^0.076^0.089^~4~^~02/01/2011~ -~21485~^~653~^0.092^12^0.005^~1~^~A~^^^1^0.067^0.121^11^0.081^0.103^~4~^~02/01/2011~ -~21485~^~654~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.012^11^0.009^0.011^~4~^~02/01/2011~ -~21485~^~662~^0.033^12^0.002^~1~^~A~^^^1^0.022^0.040^11^0.029^0.036^~4~^~02/01/2011~ -~21485~^~663~^0.317^12^0.022^~1~^~A~^^^1^0.225^0.431^11^0.268^0.366^~4~^~02/01/2011~ -~21485~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21485~^~665~^0.076^12^0.003^~1~^~A~^^^1^0.059^0.090^11^0.070^0.082^~4~^~02/01/2011~ -~21485~^~670~^0.064^12^0.003^~1~^~A~^^^1^0.051^0.081^11^0.058^0.071^~4~^~02/01/2011~ -~21485~^~671~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.001^0.004^~1, 4~^~02/01/2011~ -~21485~^~672~^0.035^12^0.002^~1~^~A~^^^1^0.026^0.044^11^0.031^0.039^~4~^~02/01/2011~ -~21485~^~673~^0.245^12^0.007^~1~^~A~^^^1^0.206^0.295^11^0.230^0.260^~4~^~02/01/2011~ -~21485~^~674~^4.798^12^0.112^~1~^~A~^^^1^4.159^5.463^11^4.550^5.045^~4~^~02/01/2011~ -~21485~^~675~^3.035^12^0.145^~1~^~A~^^^1^2.361^3.845^11^2.717^3.354^~4~^~02/01/2011~ -~21485~^~676~^0.021^12^0.003^~1~^~A~^^^1^0.011^0.034^11^0.015^0.028^~4~^~02/01/2011~ -~21485~^~685~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.006^11^0.004^0.005^~4~^~02/01/2011~ -~21485~^~687~^0.046^12^0.003^~1~^~A~^^^1^0.032^0.063^11^0.040^0.052^~4~^~02/01/2011~ -~21485~^~689~^0.022^12^0.001^~1~^~AS~^^^1^0.019^0.025^11^0.021^0.023^~4~^~02/01/2011~ -~21485~^~693~^0.349^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~695~^0.076^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21485~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^11^0.000^0.000^~1, 4~^~02/01/2011~ -~21485~^~851~^0.314^12^0.038^~1~^~A~^^^1^0.002^0.474^11^0.231^0.398^~1, 4~^~02/01/2011~ -~21485~^~852~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^11^0.004^0.006^~4~^~02/01/2011~ -~21485~^~853~^0.017^12^0.000^~1~^~A~^^^1^0.015^0.019^11^0.016^0.017^~4~^~02/01/2011~ -~21485~^~858~^0.012^12^0.000^~1~^~A~^^^1^0.009^0.014^11^0.011^0.013^~4~^~02/01/2011~ -~21486~^~312~^0.067^6^0.001^~1~^~A~^^^1^0.062^0.071^5^0.064^0.071^~2, 3~^~03/01/2011~ -~21486~^~315~^0.310^6^0.007^~1~^~A~^^^1^0.284^0.331^5^0.292^0.327^~2, 3~^~03/01/2011~ -~21486~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21486~^~405~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21486~^~406~^2.880^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21486~^~415~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21486~^~605~^0.403^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~606~^4.155^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~607~^0.046^6^0.006^~1~^~A~^^^1^0.032^0.070^5^0.030^0.062^~2, 3~^~03/01/2011~ -~21486~^~608~^0.035^6^0.005^~1~^~A~^^^1^0.023^0.053^5^0.023^0.047^~2, 3~^~03/01/2011~ -~21486~^~609~^0.023^6^0.003^~1~^~A~^^^1^0.016^0.036^5^0.015^0.032^~2, 3~^~03/01/2011~ -~21486~^~610~^0.057^6^0.008^~1~^~A~^^^1^0.039^0.087^5^0.038^0.077^~2, 3~^~03/01/2011~ -~21486~^~611~^0.068^6^0.009^~1~^~A~^^^1^0.046^0.101^5^0.046^0.090^~2, 3~^~03/01/2011~ -~21486~^~612~^0.366^6^0.031^~1~^~A~^^^1^0.292^0.489^5^0.286^0.445^~2, 3~^~03/01/2011~ -~21486~^~613~^2.019^6^0.110^~1~^~A~^^^1^1.764^2.424^5^1.737^2.300^~2, 3~^~03/01/2011~ -~21486~^~614~^1.376^6^0.052^~1~^~A~^^^1^1.203^1.556^5^1.243^1.509^~2, 3~^~03/01/2011~ -~21486~^~615~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.020^5^0.016^0.020^~2, 3~^~03/01/2011~ -~21486~^~617~^2.909^6^0.123^~1~^~AS~^^^1^2.631^3.310^5^2.594^3.224^~2, 3~^~03/01/2011~ -~21486~^~618~^1.365^6^0.043^~1~^~AS~^^^1^1.237^1.520^5^1.254^1.475^~2, 3~^~03/01/2011~ -~21486~^~619~^0.159^6^0.006^~1~^~AS~^^^1^0.145^0.176^5^0.145^0.173^~2, 3~^~03/01/2011~ -~21486~^~620~^0.018^6^0.001^~1~^~A~^^^1^0.017^0.021^5^0.017^0.020^~2, 3~^~03/01/2011~ -~21486~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~03/01/2011~ -~21486~^~624~^0.013^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.014^~2, 3~^~03/01/2011~ -~21486~^~625~^0.052^6^0.003^~1~^~A~^^^1^0.046^0.066^5^0.043^0.061^~2, 3~^~03/01/2011~ -~21486~^~626~^0.196^6^0.010^~1~^~AS~^^^1^0.172^0.232^5^0.170^0.223^~2, 3~^~03/01/2011~ -~21486~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21486~^~628~^0.036^6^0.001^~1~^~A~^^^1^0.033^0.040^5^0.033^0.039^~2, 3~^~03/01/2011~ -~21486~^~629~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.017^5^0.004^0.016^~2, 3~^~03/01/2011~ -~21486~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.002^~2, 3~^~03/01/2011~ -~21486~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~03/01/2011~ -~21486~^~645~^3.243^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~646~^1.578^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~652~^0.048^6^0.003^~1~^~A~^^^1^0.042^0.061^5^0.040^0.056^~2, 3~^~03/01/2011~ -~21486~^~653~^0.078^6^0.002^~1~^~A~^^^1^0.068^0.084^5^0.072^0.085^~2, 3~^~03/01/2011~ -~21486~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.007^5^0.006^0.007^~2, 3~^~03/01/2011~ -~21486~^~662~^0.024^6^0.002^~1~^~A~^^^1^0.019^0.030^5^0.019^0.028^~2, 3~^~03/01/2011~ -~21486~^~663~^0.331^6^0.010^~1~^~A~^^^1^0.297^0.360^5^0.305^0.356^~2, 3~^~03/01/2011~ -~21486~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21486~^~665~^0.049^6^0.004^~1~^~A~^^^1^0.040^0.065^5^0.038^0.059^~2, 3~^~03/01/2011~ -~21486~^~670~^0.043^6^0.003^~1~^~A~^^^1^0.035^0.054^5^0.036^0.050^~2, 3~^~03/01/2011~ -~21486~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21486~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~03/01/2011~ -~21486~^~673~^0.173^6^0.009^~1~^~A~^^^1^0.151^0.202^5^0.151^0.195^~2, 3~^~03/01/2011~ -~21486~^~674~^2.578^6^0.119^~1~^~A~^^^1^2.325^2.967^5^2.273^2.884^~2, 3~^~03/01/2011~ -~21486~^~675~^1.273^6^0.038^~1~^~A~^^^1^1.156^1.407^5^1.174^1.372^~2, 3~^~03/01/2011~ -~21486~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21486~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21486~^~687~^0.046^6^0.002^~1~^~A~^^^1^0.039^0.051^5^0.042^0.051^~2, 3~^~03/01/2011~ -~21486~^~689~^0.010^6^0.000^~1~^~AS~^^^1^0.009^0.012^5^0.009^0.011^~2, 3~^~03/01/2011~ -~21486~^~693~^0.354^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21486~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21486~^~851~^0.157^6^0.005^~1~^~A~^^^1^0.144^0.174^5^0.144^0.171^~2, 3~^~03/01/2011~ -~21486~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21486~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~2, 3~^~03/01/2011~ -~21486~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~03/01/2011~ -~21487~^~312~^0.060^6^0.001^~1~^~A~^^^1^0.058^0.067^5^0.057^0.064^~2, 3~^~03/01/2011~ -~21487~^~315~^0.245^6^0.004^~1~^~A~^^^1^0.233^0.263^5^0.234^0.256^~2, 3~^~03/01/2011~ -~21487~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21487~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21487~^~406~^5.170^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21487~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21487~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~606~^2.559^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~607~^0.044^6^0.003^~1~^~A~^^^1^0.037^0.055^5^0.037^0.051^~2, 3~^~03/01/2011~ -~21487~^~608~^0.033^6^0.002^~1~^~A~^^^1^0.027^0.040^5^0.028^0.038^~2, 3~^~03/01/2011~ -~21487~^~609~^0.023^6^0.001^~1~^~A~^^^1^0.019^0.026^5^0.020^0.026^~2, 3~^~03/01/2011~ -~21487~^~610~^0.053^6^0.002^~1~^~A~^^^1^0.045^0.059^5^0.047^0.059^~2, 3~^~03/01/2011~ -~21487~^~611~^0.063^6^0.002^~1~^~A~^^^1^0.056^0.069^5^0.057^0.069^~2, 3~^~03/01/2011~ -~21487~^~612~^0.220^6^0.010^~1~^~A~^^^1^0.189^0.253^5^0.194^0.246^~2, 3~^~03/01/2011~ -~21487~^~613~^1.210^6^0.043^~1~^~A~^^^1^1.058^1.316^5^1.099^1.320^~2, 3~^~03/01/2011~ -~21487~^~614~^0.834^6^0.033^~1~^~A~^^^1^0.737^0.929^5^0.750^0.917^~2, 3~^~03/01/2011~ -~21487~^~615~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~2, 3~^~03/01/2011~ -~21487~^~617~^1.454^6^0.058^~1~^~AS~^^^1^1.259^1.611^5^1.304^1.605^~2, 3~^~03/01/2011~ -~21487~^~618~^1.386^6^0.040^~1~^~AS~^^^1^1.256^1.530^5^1.283^1.488^~2, 3~^~03/01/2011~ -~21487~^~619~^0.157^6^0.004^~1~^~AS~^^^1^0.145^0.174^5^0.147^0.168^~2, 3~^~03/01/2011~ -~21487~^~620~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.029^5^0.025^0.028^~2, 3~^~03/01/2011~ -~21487~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~624~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.014^5^0.011^0.014^~2, 3~^~03/01/2011~ -~21487~^~625~^0.018^6^0.001^~1~^~A~^^^1^0.014^0.020^5^0.015^0.020^~2, 3~^~03/01/2011~ -~21487~^~626~^0.115^6^0.010^~1~^~AS~^^^1^0.093^0.156^5^0.088^0.141^~2, 3~^~03/01/2011~ -~21487~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~21487~^~628~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.028^~2, 3~^~03/01/2011~ -~21487~^~629~^0.008^6^0.002^~1~^~A~^^^1^0.001^0.016^5^0.002^0.014^~1, 2, 3~^~03/01/2011~ -~21487~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~03/01/2011~ -~21487~^~631~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~03/01/2011~ -~21487~^~645~^1.621^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~646~^1.607^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~652~^0.025^6^0.001^~1~^~A~^^^1^0.021^0.029^5^0.022^0.028^~2, 3~^~03/01/2011~ -~21487~^~653~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.017^0.022^~2, 3~^~03/01/2011~ -~21487~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~03/01/2011~ -~21487~^~662~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.007^0.010^~2, 3~^~03/01/2011~ -~21487~^~663~^0.077^6^0.005^~1~^~A~^^^1^0.057^0.090^5^0.065^0.090^~2, 3~^~03/01/2011~ -~21487~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~665~^0.027^6^0.002^~1~^~A~^^^1^0.021^0.033^5^0.022^0.032^~2, 3~^~03/01/2011~ -~21487~^~670~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.019^5^0.013^0.018^~2, 3~^~03/01/2011~ -~21487~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21487~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~03/01/2011~ -~21487~^~673~^0.106^6^0.010^~1~^~A~^^^1^0.083^0.147^5^0.080^0.132^~2, 3~^~03/01/2011~ -~21487~^~674~^1.377^6^0.056^~1~^~A~^^^1^1.202^1.538^5^1.232^1.522^~2, 3~^~03/01/2011~ -~21487~^~675~^1.343^6^0.038^~1~^~A~^^^1^1.221^1.484^5^1.245^1.442^~2, 3~^~03/01/2011~ -~21487~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~21487~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~03/01/2011~ -~21487~^~687~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~03/01/2011~ -~21487~^~689~^0.010^6^0.000^~1~^~AS~^^^1^0.009^0.011^5^0.009^0.011^~2, 3~^~03/01/2011~ -~21487~^~693~^0.086^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21487~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~851~^0.153^6^0.004^~1~^~A~^^^1^0.142^0.170^5^0.143^0.164^~2, 3~^~03/01/2011~ -~21487~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~21487~^~853~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~2, 3~^~03/01/2011~ -~21487~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~2, 3~^~03/01/2011~ -~21488~^~312~^0.076^6^0.003^~1~^~A~^^^1^0.066^0.083^5^0.070^0.082^~4~^~03/01/2011~ -~21488~^~315~^0.266^6^0.005^~1~^~A~^^^1^0.246^0.281^5^0.253^0.280^~4~^~03/01/2011~ -~21488~^~404~^0.200^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21488~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21488~^~406~^4.200^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21488~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2011~ -~21488~^~605~^0.322^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~606~^6.154^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~607~^0.140^6^0.009^~1~^~A~^^^1^0.120^0.166^5^0.117^0.163^~4~^~03/01/2011~ -~21488~^~608~^0.111^6^0.008^~1~^~A~^^^1^0.088^0.137^5^0.092^0.131^~4~^~03/01/2011~ -~21488~^~609~^0.073^6^0.005^~1~^~A~^^^1^0.057^0.088^5^0.060^0.086^~4~^~03/01/2011~ -~21488~^~610~^0.178^6^0.012^~1~^~A~^^^1^0.136^0.216^5^0.146^0.209^~4~^~03/01/2011~ -~21488~^~611~^0.211^6^0.015^~1~^~A~^^^1^0.159^0.253^5^0.173^0.249^~4~^~03/01/2011~ -~21488~^~612~^0.714^6^0.045^~1~^~A~^^^1^0.566^0.870^5^0.598^0.831^~4~^~03/01/2011~ -~21488~^~613~^2.903^6^0.113^~1~^~A~^^^1^2.620^3.375^5^2.612^3.195^~4~^~03/01/2011~ -~21488~^~614~^1.609^6^0.011^~1~^~A~^^^1^1.565^1.635^5^1.581^1.637^~4~^~03/01/2011~ -~21488~^~615~^0.035^6^0.001^~1~^~A~^^^1^0.033^0.038^5^0.033^0.038^~4~^~03/01/2011~ -~21488~^~617~^3.447^6^0.108^~1~^~AS~^^^1^3.170^3.902^5^3.170^3.724^~4~^~03/01/2011~ -~21488~^~618~^3.556^6^0.152^~1~^~AS~^^^1^3.069^4.055^5^3.166^3.946^~4~^~03/01/2011~ -~21488~^~619~^0.459^6^0.023^~1~^~AS~^^^1^0.381^0.533^5^0.400^0.517^~4~^~03/01/2011~ -~21488~^~620~^0.032^6^0.001^~1~^~A~^^^1^0.030^0.035^5^0.030^0.035^~4~^~03/01/2011~ -~21488~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~03/01/2011~ -~21488~^~624~^0.029^6^0.001^~1~^~A~^^^1^0.026^0.034^5^0.026^0.033^~4~^~03/01/2011~ -~21488~^~625~^0.054^6^0.004^~1~^~A~^^^1^0.041^0.070^5^0.044^0.065^~4~^~03/01/2011~ -~21488~^~626~^0.171^6^0.013^~1~^~AS~^^^1^0.144^0.222^5^0.136^0.205^~4~^~03/01/2011~ -~21488~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^5^0.002^0.002^~1, 4~^~03/01/2011~ -~21488~^~628~^0.069^6^0.003^~1~^~A~^^^1^0.059^0.079^5^0.061^0.077^~4~^~03/01/2011~ -~21488~^~629~^0.006^6^0.001^~1~^~A~^^^1^0.003^0.010^5^0.003^0.008^~4~^~03/01/2011~ -~21488~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~4~^~03/01/2011~ -~21488~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~03/01/2011~ -~21488~^~645~^3.765^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~646~^4.094^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~652~^0.077^6^0.005^~1~^~A~^^^1^0.063^0.095^5^0.065^0.090^~4~^~03/01/2011~ -~21488~^~653~^0.056^6^0.003^~1~^~A~^^^1^0.048^0.066^5^0.049^0.063^~4~^~03/01/2011~ -~21488~^~654~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~4~^~03/01/2011~ -~21488~^~662~^0.026^6^0.002^~1~^~A~^^^1^0.022^0.032^5^0.022^0.030^~4~^~03/01/2011~ -~21488~^~663~^0.215^6^0.010^~1~^~A~^^^1^0.193^0.245^5^0.190^0.240^~4~^~03/01/2011~ -~21488~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~03/01/2011~ -~21488~^~665~^0.081^6^0.003^~1~^~A~^^^1^0.071^0.092^5^0.073^0.088^~4~^~03/01/2011~ -~21488~^~670~^0.049^6^0.002^~1~^~A~^^^1^0.041^0.056^5^0.042^0.055^~4~^~03/01/2011~ -~21488~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~03/01/2011~ -~21488~^~672~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~4~^~03/01/2011~ -~21488~^~673~^0.144^6^0.012^~1~^~A~^^^1^0.120^0.190^5^0.114^0.175^~4~^~03/01/2011~ -~21488~^~674~^3.232^6^0.102^~1~^~A~^^^1^2.955^3.660^5^2.971^3.493^~4~^~03/01/2011~ -~21488~^~675~^3.427^6^0.153^~1~^~A~^^^1^2.928^3.928^5^3.033^3.821^~4~^~03/01/2011~ -~21488~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~03/01/2011~ -~21488~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.005^~4~^~03/01/2011~ -~21488~^~687~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.024^5^0.018^0.022^~4~^~03/01/2011~ -~21488~^~689~^0.015^6^0.001^~1~^~AS~^^^1^0.012^0.017^5^0.012^0.017^~4~^~03/01/2011~ -~21488~^~693~^0.241^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~21488~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21488~^~851~^0.454^6^0.023^~1~^~A~^^^1^0.375^0.529^5^0.395^0.513^~4~^~03/01/2011~ -~21488~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~03/01/2011~ -~21488~^~853~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.016^5^0.012^0.016^~4~^~03/01/2011~ -~21488~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~4~^~03/01/2011~ -~21490~^~312~^0.071^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~315~^0.200^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~404~^0.234^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~405~^0.121^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~406~^7.780^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~415~^0.309^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~606~^0.949^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~607~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~608~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~609~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~610~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~611~^0.005^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~612~^0.014^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~613~^0.631^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~614~^0.275^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~617~^1.233^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~618~^1.585^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~619~^0.185^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~620~^0.028^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~621~^0.009^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~626~^0.071^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~627~^0.000^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~628~^0.020^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~629~^0.005^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~630~^0.006^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~631~^0.005^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~645~^1.339^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21490~^~646~^1.839^0^^~6~^~RKI~^^^^^^^^^^~03/01/2011~ -~21491~^~312~^0.116^6^0.005^~1~^~A~^^^1^0.104^0.140^5^0.102^0.130^~4~^~02/01/2011~ -~21491~^~315~^0.431^6^0.007^~1~^~A~^^^1^0.405^0.458^5^0.413^0.450^~4~^~02/01/2011~ -~21491~^~404~^0.340^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21491~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21491~^~406~^4.550^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21491~^~415~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21491~^~605~^0.345^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~606~^6.674^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~607~^0.095^6^0.011^~1~^~A~^^^1^0.068^0.130^5^0.067^0.123^~4~^~02/01/2011~ -~21491~^~608~^0.079^6^0.007^~1~^~A~^^^1^0.059^0.101^5^0.061^0.097^~4~^~02/01/2011~ -~21491~^~609~^0.055^6^0.004^~1~^~A~^^^1^0.044^0.064^5^0.046^0.065^~4~^~02/01/2011~ -~21491~^~610~^0.146^6^0.007^~1~^~A~^^^1^0.122^0.164^5^0.127^0.165^~4~^~02/01/2011~ -~21491~^~611~^0.179^6^0.006^~1~^~A~^^^1^0.159^0.196^5^0.164^0.195^~4~^~02/01/2011~ -~21491~^~612~^0.704^6^0.021^~1~^~A~^^^1^0.606^0.758^5^0.650^0.759^~4~^~02/01/2011~ -~21491~^~613~^3.563^6^0.112^~1~^~A~^^^1^3.150^3.961^5^3.274^3.852^~4~^~02/01/2011~ -~21491~^~614~^1.636^6^0.044^~1~^~A~^^^1^1.505^1.790^5^1.524^1.749^~4~^~02/01/2011~ -~21491~^~615~^0.033^6^0.001^~1~^~A~^^^1^0.030^0.037^5^0.029^0.036^~4~^~02/01/2011~ -~21491~^~617~^4.826^6^0.146^~1~^~AS~^^^1^4.384^5.367^5^4.450^5.202^~4~^~02/01/2011~ -~21491~^~618~^2.732^6^0.052^~1~^~AS~^^^1^2.503^2.852^5^2.598^2.866^~4~^~02/01/2011~ -~21491~^~619~^0.271^6^0.008^~1~^~AS~^^^1^0.238^0.291^5^0.251^0.290^~4~^~02/01/2011~ -~21491~^~620~^0.037^6^0.002^~1~^~A~^^^1^0.031^0.040^5^0.032^0.041^~4~^~02/01/2011~ -~21491~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21491~^~624~^0.019^6^0.000^~1~^~A~^^^1^0.018^0.021^5^0.018^0.020^~4~^~02/01/2011~ -~21491~^~625~^0.055^6^0.003^~1~^~A~^^^1^0.044^0.063^5^0.048^0.062^~4~^~02/01/2011~ -~21491~^~626~^0.259^6^0.008^~1~^~AS~^^^1^0.228^0.279^5^0.239^0.279^~4~^~02/01/2011~ -~21491~^~627~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21491~^~628~^0.094^6^0.003^~1~^~A~^^^1^0.088^0.107^5^0.086^0.101^~4~^~02/01/2011~ -~21491~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21491~^~630~^0.030^6^0.002^~1~^~AS~^^^1^0.022^0.034^5^0.026^0.035^~4~^~02/01/2011~ -~21491~^~631~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~4~^~02/01/2011~ -~21491~^~645~^5.305^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~646~^3.132^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~652~^0.074^6^0.003^~1~^~A~^^^1^0.060^0.078^5^0.066^0.081^~4~^~02/01/2011~ -~21491~^~653~^0.077^6^0.003^~1~^~A~^^^1^0.067^0.086^5^0.070^0.084^~4~^~02/01/2011~ -~21491~^~654~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~4~^~02/01/2011~ -~21491~^~662~^0.028^6^0.002^~1~^~A~^^^1^0.022^0.033^5^0.025^0.032^~4~^~02/01/2011~ -~21491~^~663~^0.247^6^0.008^~1~^~A~^^^1^0.225^0.276^5^0.227^0.267^~4~^~02/01/2011~ -~21491~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21491~^~665~^0.069^6^0.004^~1~^~A~^^^1^0.059^0.081^5^0.060^0.078^~4~^~02/01/2011~ -~21491~^~670~^0.055^6^0.001^~1~^~A~^^^1^0.051^0.061^5^0.052^0.059^~4~^~02/01/2011~ -~21491~^~671~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.006^5^0.001^0.005^~1, 4~^~02/01/2011~ -~21491~^~672~^0.040^6^0.002^~1~^~A~^^^1^0.034^0.044^5^0.036^0.044^~4~^~02/01/2011~ -~21491~^~673~^0.230^6^0.006^~1~^~A~^^^1^0.206^0.248^5^0.214^0.247^~4~^~02/01/2011~ -~21491~^~674~^4.579^6^0.141^~1~^~A~^^^1^4.159^5.113^5^4.217^4.941^~4~^~02/01/2011~ -~21491~^~675~^2.607^6^0.054^~1~^~A~^^^1^2.361^2.723^5^2.469^2.746^~4~^~02/01/2011~ -~21491~^~676~^0.030^6^0.002^~1~^~A~^^^1^0.022^0.034^5^0.026^0.035^~4~^~02/01/2011~ -~21491~^~685~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21491~^~687~^0.038^6^0.002^~1~^~A~^^^1^0.032^0.044^5^0.033^0.042^~4~^~02/01/2011~ -~21491~^~689~^0.023^6^0.001^~1~^~AS~^^^1^0.021^0.025^5^0.021^0.024^~4~^~02/01/2011~ -~21491~^~693~^0.276^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~695~^0.069^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21491~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21491~^~851~^0.266^6^0.008^~1~^~A~^^^1^0.232^0.286^5^0.246^0.285^~4~^~02/01/2011~ -~21491~^~852~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21491~^~853~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.019^5^0.015^0.018^~4~^~02/01/2011~ -~21491~^~858~^0.013^6^0.000^~1~^~A~^^^1^0.012^0.014^5^0.012^0.014^~4~^~02/01/2011~ -~21492~^~312~^0.104^6^0.003^~1~^~A~^^^1^0.092^0.113^5^0.096^0.112^~4~^~02/01/2011~ -~21492~^~315~^0.279^6^0.010^~1~^~A~^^^1^0.251^0.312^5^0.255^0.304^~4~^~02/01/2011~ -~21492~^~404~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~406~^2.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21492~^~605~^0.506^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~606~^7.557^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~607~^0.125^6^0.009^~1~^~A~^^^1^0.098^0.154^5^0.102^0.149^~4~^~02/01/2011~ -~21492~^~608~^0.103^6^0.004^~1~^~A~^^^1^0.093^0.117^5^0.094^0.112^~4~^~02/01/2011~ -~21492~^~609~^0.071^6^0.002^~1~^~A~^^^1^0.065^0.077^5^0.066^0.075^~4~^~02/01/2011~ -~21492~^~610~^0.178^6^0.003^~1~^~A~^^^1^0.167^0.187^5^0.170^0.186^~4~^~02/01/2011~ -~21492~^~611~^0.212^6^0.004^~1~^~A~^^^1^0.201^0.228^5^0.201^0.223^~4~^~02/01/2011~ -~21492~^~612~^0.839^6^0.019^~1~^~A~^^^1^0.797^0.920^5^0.792^0.887^~4~^~02/01/2011~ -~21492~^~613~^3.937^6^0.084^~1~^~A~^^^1^3.761^4.334^5^3.720^4.153^~4~^~02/01/2011~ -~21492~^~614~^1.814^6^0.027^~1~^~A~^^^1^1.722^1.904^5^1.744^1.885^~4~^~02/01/2011~ -~21492~^~615~^0.037^6^0.001^~1~^~A~^^^1^0.033^0.042^5^0.034^0.041^~4~^~02/01/2011~ -~21492~^~617~^5.402^6^0.137^~1~^~AS~^^^1^4.989^5.877^5^5.051^5.754^~4~^~02/01/2011~ -~21492~^~618~^3.619^6^0.126^~1~^~AS~^^^1^3.320^3.993^5^3.294^3.945^~4~^~02/01/2011~ -~21492~^~619~^0.367^6^0.073^~1~^~AS~^^^1^0.007^0.479^5^0.181^0.554^~4~^~02/01/2011~ -~21492~^~620~^0.035^6^0.001^~1~^~A~^^^1^0.032^0.041^5^0.032^0.039^~4~^~02/01/2011~ -~21492~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21492~^~624~^0.026^6^0.000^~1~^~A~^^^1^0.025^0.028^5^0.025^0.028^~4~^~02/01/2011~ -~21492~^~625~^0.079^6^0.003^~1~^~A~^^^1^0.072^0.094^5^0.071^0.088^~4~^~02/01/2011~ -~21492~^~626~^0.296^6^0.009^~1~^~AS~^^^1^0.275^0.335^5^0.274^0.319^~4~^~02/01/2011~ -~21492~^~627~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21492~^~628~^0.094^6^0.004^~1~^~A~^^^1^0.084^0.109^5^0.083^0.105^~4~^~02/01/2011~ -~21492~^~629~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.008^5^0.003^0.007^~4~^~02/01/2011~ -~21492~^~630~^0.012^6^0.001^~1~^~AS~^^^1^0.011^0.015^5^0.011^0.014^~4~^~02/01/2011~ -~21492~^~631~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.007^0.009^~4~^~02/01/2011~ -~21492~^~645~^5.941^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~646~^4.102^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~652~^0.091^6^0.002^~1~^~A~^^^1^0.087^0.101^5^0.086^0.097^~4~^~02/01/2011~ -~21492~^~653~^0.107^6^0.003^~1~^~A~^^^1^0.100^0.121^5^0.098^0.116^~4~^~02/01/2011~ -~21492~^~654~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21492~^~662~^0.037^6^0.001^~1~^~A~^^^1^0.034^0.040^5^0.034^0.039^~4~^~02/01/2011~ -~21492~^~663~^0.386^6^0.014^~1~^~A~^^^1^0.349^0.431^5^0.351^0.421^~4~^~02/01/2011~ -~21492~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21492~^~665~^0.083^6^0.002^~1~^~A~^^^1^0.074^0.090^5^0.076^0.089^~4~^~02/01/2011~ -~21492~^~670~^0.073^6^0.002^~1~^~A~^^^1^0.067^0.081^5^0.068^0.079^~4~^~02/01/2011~ -~21492~^~671~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21492~^~672~^0.030^6^0.002^~1~^~A~^^^1^0.026^0.038^5^0.025^0.035^~4~^~02/01/2011~ -~21492~^~673~^0.259^6^0.008^~1~^~A~^^^1^0.239^0.295^5^0.238^0.281^~4~^~02/01/2011~ -~21492~^~674~^5.016^6^0.129^~1~^~A~^^^1^4.635^5.463^5^4.685^5.347^~4~^~02/01/2011~ -~21492~^~675~^3.463^6^0.126^~1~^~A~^^^1^3.170^3.845^5^3.140^3.787^~4~^~02/01/2011~ -~21492~^~676~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.014^~4~^~02/01/2011~ -~21492~^~685~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21492~^~687~^0.055^6^0.002^~1~^~A~^^^1^0.050^0.063^5^0.050^0.060^~4~^~02/01/2011~ -~21492~^~689~^0.021^6^0.001^~1~^~AS~^^^1^0.019^0.023^5^0.019^0.022^~4~^~02/01/2011~ -~21492~^~693~^0.423^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~695~^0.083^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21492~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21492~^~851~^0.363^6^0.073^~1~^~A~^^^1^0.002^0.474^5^0.176^0.550^~1, 4~^~02/01/2011~ -~21492~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21492~^~853~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.015^0.018^~4~^~02/01/2011~ -~21492~^~858~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21493~^~312~^0.110^6^0.005^~1~^~A~^^^1^0.098^0.129^5^0.098^0.122^~4~^~02/01/2011~ -~21493~^~315~^0.248^6^0.008^~1~^~A~^^^1^0.221^0.271^5^0.228^0.268^~4~^~02/01/2011~ -~21493~^~404~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~406~^1.620^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21493~^~605~^0.314^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~606~^7.079^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~607~^0.126^6^0.007^~1~^~A~^^^1^0.107^0.151^5^0.108^0.145^~4~^~02/01/2011~ -~21493~^~608~^0.100^6^0.005^~1~^~A~^^^1^0.084^0.118^5^0.087^0.114^~4~^~02/01/2011~ -~21493~^~609~^0.068^6^0.003^~1~^~A~^^^1^0.061^0.076^5^0.061^0.076^~4~^~02/01/2011~ -~21493~^~610~^0.175^6^0.007^~1~^~A~^^^1^0.155^0.194^5^0.158^0.193^~4~^~02/01/2011~ -~21493~^~611~^0.210^6^0.008^~1~^~A~^^^1^0.188^0.229^5^0.191^0.230^~4~^~02/01/2011~ -~21493~^~612~^0.776^6^0.027^~1~^~A~^^^1^0.708^0.866^5^0.706^0.846^~4~^~02/01/2011~ -~21493~^~613~^3.752^6^0.131^~1~^~A~^^^1^3.415^4.326^5^3.416^4.088^~4~^~02/01/2011~ -~21493~^~614~^1.641^6^0.056^~1~^~A~^^^1^1.480^1.789^5^1.495^1.786^~4~^~02/01/2011~ -~21493~^~615~^0.039^6^0.001^~1~^~A~^^^1^0.035^0.043^5^0.036^0.042^~4~^~02/01/2011~ -~21493~^~617~^5.155^6^0.220^~1~^~AS~^^^1^4.527^5.922^5^4.590^5.719^~4~^~02/01/2011~ -~21493~^~618~^3.923^6^0.158^~1~^~AS~^^^1^3.397^4.322^5^3.517^4.329^~4~^~02/01/2011~ -~21493~^~619~^0.464^6^0.015^~1~^~AS~^^^1^0.418^0.510^5^0.426^0.503^~4~^~02/01/2011~ -~21493~^~620~^0.037^6^0.003^~1~^~A~^^^1^0.031^0.047^5^0.030^0.044^~4~^~02/01/2011~ -~21493~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21493~^~624~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.029^5^0.024^0.028^~4~^~02/01/2011~ -~21493~^~625~^0.059^6^0.003^~1~^~A~^^^1^0.049^0.071^5^0.050^0.067^~4~^~02/01/2011~ -~21493~^~626~^0.254^6^0.014^~1~^~AS~^^^1^0.217^0.321^5^0.217^0.291^~4~^~02/01/2011~ -~21493~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21493~^~628~^0.098^6^0.005^~1~^~A~^^^1^0.080^0.113^5^0.084^0.111^~4~^~02/01/2011~ -~21493~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21493~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.005^5^0.002^0.004^~4~^~02/01/2011~ -~21493~^~631~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~4~^~02/01/2011~ -~21493~^~645~^5.602^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~646~^4.522^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~652~^0.078^6^0.002^~1~^~A~^^^1^0.072^0.085^5^0.072^0.084^~4~^~02/01/2011~ -~21493~^~653~^0.071^6^0.003^~1~^~A~^^^1^0.064^0.082^5^0.064^0.078^~4~^~02/01/2011~ -~21493~^~654~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~4~^~02/01/2011~ -~21493~^~662~^0.026^6^0.002^~1~^~A~^^^1^0.018^0.032^5^0.021^0.031^~4~^~02/01/2011~ -~21493~^~663~^0.209^6^0.007^~1~^~A~^^^1^0.190^0.235^5^0.191^0.226^~4~^~02/01/2011~ -~21493~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21493~^~665~^0.080^6^0.003^~1~^~A~^^^1^0.070^0.094^5^0.071^0.088^~4~^~02/01/2011~ -~21493~^~670~^0.059^6^0.002^~1~^~A~^^^1^0.052^0.065^5^0.053^0.064^~4~^~02/01/2011~ -~21493~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21493~^~672~^0.043^6^0.004^~1~^~A~^^^1^0.032^0.057^5^0.033^0.052^~4~^~02/01/2011~ -~21493~^~673~^0.228^6^0.013^~1~^~A~^^^1^0.199^0.289^5^0.195^0.261^~4~^~02/01/2011~ -~21493~^~674~^4.946^6^0.217^~1~^~A~^^^1^4.334^5.704^5^4.389^5.503^~4~^~02/01/2011~ -~21493~^~675~^3.784^6^0.155^~1~^~A~^^^1^3.272^4.163^5^3.386^4.183^~4~^~02/01/2011~ -~21493~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 4~^~02/01/2011~ -~21493~^~685~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~4~^~02/01/2011~ -~21493~^~687~^0.033^6^0.002^~1~^~A~^^^1^0.029^0.040^5^0.029^0.037^~4~^~02/01/2011~ -~21493~^~689~^0.024^6^0.002^~1~^~AS~^^^1^0.019^0.030^5^0.020^0.028^~4~^~02/01/2011~ -~21493~^~693~^0.235^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~695~^0.080^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21493~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21493~^~851~^0.459^6^0.015^~1~^~A~^^^1^0.414^0.505^5^0.421^0.498^~4~^~02/01/2011~ -~21493~^~852~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.005^0.008^~4~^~02/01/2011~ -~21493~^~853~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.015^0.020^~4~^~02/01/2011~ -~21493~^~858~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.015^5^0.011^0.014^~4~^~02/01/2011~ -~21494~^~312~^0.118^6^0.003^~1~^~A~^^^1^0.111^0.128^5^0.110^0.125^~4~^~02/01/2011~ -~21494~^~315~^0.340^6^0.013^~1~^~A~^^^1^0.313^0.397^5^0.307^0.374^~4~^~02/01/2011~ -~21494~^~404~^0.330^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~406~^3.350^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21494~^~605~^0.212^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~606~^4.607^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~607~^0.080^6^0.008^~1~^~A~^^^1^0.055^0.099^5^0.061^0.100^~4~^~02/01/2011~ -~21494~^~608~^0.064^6^0.004^~1~^~A~^^^1^0.052^0.077^5^0.053^0.075^~4~^~02/01/2011~ -~21494~^~609~^0.043^6^0.002^~1~^~A~^^^1^0.036^0.050^5^0.036^0.049^~4~^~02/01/2011~ -~21494~^~610~^0.109^6^0.005^~1~^~A~^^^1^0.100^0.127^5^0.097^0.121^~4~^~02/01/2011~ -~21494~^~611~^0.133^6^0.006^~1~^~A~^^^1^0.118^0.158^5^0.118^0.147^~4~^~02/01/2011~ -~21494~^~612~^0.491^6^0.022^~1~^~A~^^^1^0.430^0.590^5^0.433^0.548^~4~^~02/01/2011~ -~21494~^~613~^2.460^6^0.100^~1~^~A~^^^1^2.263^2.927^5^2.201^2.718^~4~^~02/01/2011~ -~21494~^~614~^1.088^6^0.028^~1~^~A~^^^1^1.012^1.206^5^1.016^1.160^~4~^~02/01/2011~ -~21494~^~615~^0.023^6^0.000^~1~^~A~^^^1^0.022^0.025^5^0.021^0.024^~4~^~02/01/2011~ -~21494~^~617~^3.092^6^0.134^~1~^~AS~^^^1^2.754^3.695^5^2.748^3.435^~4~^~02/01/2011~ -~21494~^~618~^2.100^6^0.064^~1~^~AS~^^^1^1.913^2.339^5^1.936^2.264^~4~^~02/01/2011~ -~21494~^~619~^0.201^6^0.007^~1~^~AS~^^^1^0.171^0.217^5^0.184^0.218^~4~^~02/01/2011~ -~21494~^~620~^0.022^6^0.001^~1~^~A~^^^1^0.019^0.024^5^0.020^0.024^~4~^~02/01/2011~ -~21494~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21494~^~624~^0.014^6^0.000^~1~^~A~^^^1^0.012^0.015^5^0.013^0.015^~4~^~02/01/2011~ -~21494~^~625~^0.037^6^0.003^~1~^~A~^^^1^0.028^0.050^5^0.029^0.044^~4~^~02/01/2011~ -~21494~^~626~^0.159^6^0.012^~1~^~AS~^^^1^0.137^0.212^5^0.129^0.189^~4~^~02/01/2011~ -~21494~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21494~^~628~^0.056^6^0.004^~1~^~A~^^^1^0.044^0.070^5^0.047^0.065^~4~^~02/01/2011~ -~21494~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 4~^~02/01/2011~ -~21494~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.001^0.003^~4~^~02/01/2011~ -~21494~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21494~^~645~^3.366^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~646~^2.385^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~652~^0.049^6^0.002^~1~^~A~^^^1^0.043^0.060^5^0.043^0.055^~4~^~02/01/2011~ -~21494~^~653~^0.044^6^0.002^~1~^~A~^^^1^0.039^0.054^5^0.039^0.050^~4~^~02/01/2011~ -~21494~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~4~^~02/01/2011~ -~21494~^~662~^0.017^6^0.001^~1~^~A~^^^1^0.014^0.021^5^0.015^0.019^~4~^~02/01/2011~ -~21494~^~663~^0.140^6^0.005^~1~^~A~^^^1^0.128^0.157^5^0.128^0.152^~4~^~02/01/2011~ -~21494~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21494~^~665~^0.055^6^0.003^~1~^~A~^^^1^0.046^0.066^5^0.048^0.063^~4~^~02/01/2011~ -~21494~^~670~^0.036^6^0.001^~1~^~A~^^^1^0.033^0.041^5^0.034^0.039^~4~^~02/01/2011~ -~21494~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21494~^~672~^0.026^6^0.002^~1~^~A~^^^1^0.023^0.036^5^0.021^0.032^~4~^~02/01/2011~ -~21494~^~673~^0.142^6^0.011^~1~^~A~^^^1^0.122^0.191^5^0.114^0.170^~4~^~02/01/2011~ -~21494~^~674~^2.951^6^0.130^~1~^~A~^^^1^2.626^3.538^5^2.617^3.286^~4~^~02/01/2011~ -~21494~^~675~^2.008^6^0.060^~1~^~A~^^^1^1.831^2.232^5^1.854^2.163^~4~^~02/01/2011~ -~21494~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.003^~1, 4~^~02/01/2011~ -~21494~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~4~^~02/01/2011~ -~21494~^~687~^0.020^6^0.001^~1~^~A~^^^1^0.017^0.026^5^0.016^0.023^~4~^~02/01/2011~ -~21494~^~689~^0.016^6^0.001^~1~^~AS~^^^1^0.013^0.018^5^0.014^0.018^~4~^~02/01/2011~ -~21494~^~693~^0.157^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21494~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21494~^~851~^0.198^6^0.007^~1~^~A~^^^1^0.168^0.214^5^0.181^0.215^~4~^~02/01/2011~ -~21494~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21494~^~853~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.013^5^0.010^0.013^~4~^~02/01/2011~ -~21494~^~858~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.010^~4~^~02/01/2011~ -~21495~^~312~^0.112^6^0.004^~1~^~A~^^^1^0.102^0.124^5^0.103^0.121^~4~^~02/01/2011~ -~21495~^~315~^0.272^6^0.008^~1~^~A~^^^1^0.242^0.293^5^0.252^0.292^~4~^~02/01/2011~ -~21495~^~404~^0.370^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~406~^3.310^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21495~^~605~^0.261^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~606~^4.755^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~607~^0.084^6^0.010^~1~^~A~^^^1^0.060^0.121^5^0.060^0.109^~4~^~02/01/2011~ -~21495~^~608~^0.069^6^0.006^~1~^~A~^^^1^0.056^0.091^5^0.054^0.084^~4~^~02/01/2011~ -~21495~^~609~^0.048^6^0.003^~1~^~A~^^^1^0.038^0.060^5^0.039^0.056^~4~^~02/01/2011~ -~21495~^~610~^0.122^6^0.006^~1~^~A~^^^1^0.109^0.144^5^0.107^0.137^~4~^~02/01/2011~ -~21495~^~611~^0.147^6^0.006^~1~^~A~^^^1^0.134^0.171^5^0.132^0.163^~4~^~02/01/2011~ -~21495~^~612~^0.535^6^0.019^~1~^~A~^^^1^0.487^0.614^5^0.487^0.583^~4~^~02/01/2011~ -~21495~^~613~^2.494^6^0.066^~1~^~A~^^^1^2.277^2.674^5^2.325^2.662^~4~^~02/01/2011~ -~21495~^~614~^1.102^6^0.028^~1~^~A~^^^1^1.005^1.180^5^1.031^1.173^~4~^~02/01/2011~ -~21495~^~615~^0.025^6^0.000^~1~^~A~^^^1^0.024^0.026^5^0.024^0.026^~4~^~02/01/2011~ -~21495~^~617~^3.312^6^0.091^~1~^~AS~^^^1^3.035^3.606^5^3.080^3.545^~4~^~02/01/2011~ -~21495~^~618~^2.371^6^0.067^~1~^~AS~^^^1^2.198^2.645^5^2.197^2.544^~4~^~02/01/2011~ -~21495~^~619~^0.255^6^0.007^~1~^~AS~^^^1^0.235^0.280^5^0.237^0.274^~4~^~02/01/2011~ -~21495~^~620~^0.022^6^0.001^~1~^~A~^^^1^0.020^0.025^5^0.021^0.024^~4~^~02/01/2011~ -~21495~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21495~^~624~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.015^0.017^~4~^~02/01/2011~ -~21495~^~625~^0.040^6^0.002^~1~^~A~^^^1^0.035^0.048^5^0.035^0.046^~4~^~02/01/2011~ -~21495~^~626~^0.169^6^0.008^~1~^~AS~^^^1^0.147^0.197^5^0.148^0.190^~4~^~02/01/2011~ -~21495~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21495~^~628~^0.061^6^0.003^~1~^~A~^^^1^0.053^0.071^5^0.055^0.068^~4~^~02/01/2011~ -~21495~^~629~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 4~^~02/01/2011~ -~21495~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~4~^~02/01/2011~ -~21495~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21495~^~645~^3.608^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~646~^2.711^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~652~^0.054^6^0.002^~1~^~A~^^^1^0.048^0.062^5^0.049^0.059^~4~^~02/01/2011~ -~21495~^~653~^0.047^6^0.002^~1~^~A~^^^1^0.043^0.053^5^0.043^0.052^~4~^~02/01/2011~ -~21495~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~4~^~02/01/2011~ -~21495~^~662~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.022^5^0.017^0.021^~4~^~02/01/2011~ -~21495~^~663~^0.179^6^0.004^~1~^~A~^^^1^0.167^0.193^5^0.169^0.189^~4~^~02/01/2011~ -~21495~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21495~^~665~^0.063^6^0.004^~1~^~A~^^^1^0.048^0.075^5^0.054^0.073^~4~^~02/01/2011~ -~21495~^~670~^0.040^6^0.000^~1~^~A~^^^1^0.039^0.042^5^0.039^0.041^~4~^~02/01/2011~ -~21495~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21495~^~672~^0.026^6^0.001^~1~^~A~^^^1^0.024^0.033^5^0.023^0.030^~4~^~02/01/2011~ -~21495~^~673~^0.150^6^0.008^~1~^~A~^^^1^0.130^0.178^5^0.130^0.171^~4~^~02/01/2011~ -~21495~^~674~^3.133^6^0.089^~1~^~A~^^^1^2.868^3.429^5^2.905^3.361^~4~^~02/01/2011~ -~21495~^~675~^2.267^6^0.067^~1~^~A~^^^1^2.081^2.540^5^2.094^2.440^~4~^~02/01/2011~ -~21495~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21495~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.002^0.005^~1, 4~^~02/01/2011~ -~21495~^~687~^0.021^6^0.001^~1~^~A~^^^1^0.018^0.025^5^0.018^0.024^~4~^~02/01/2011~ -~21495~^~689~^0.016^6^0.000^~1~^~AS~^^^1^0.015^0.017^5^0.015^0.017^~4~^~02/01/2011~ -~21495~^~693~^0.198^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21495~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21495~^~851~^0.252^6^0.007^~1~^~A~^^^1^0.231^0.276^5^0.233^0.271^~4~^~02/01/2011~ -~21495~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~4~^~02/01/2011~ -~21495~^~853~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.012^5^0.011^0.012^~4~^~02/01/2011~ -~21495~^~858~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.008^0.009^~4~^~02/01/2011~ -~21496~^~312~^0.101^6^0.002^~1~^~A~^^^1^0.094^0.105^5^0.096^0.105^~4~^~02/01/2011~ -~21496~^~315~^0.354^6^0.006^~1~^~A~^^^1^0.333^0.378^5^0.337^0.370^~4~^~02/01/2011~ -~21496~^~404~^0.360^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~406~^4.500^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21496~^~605~^0.282^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~606~^6.698^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~607~^0.120^6^0.012^~1~^~A~^^^1^0.084^0.173^5^0.088^0.151^~4~^~02/01/2011~ -~21496~^~608~^0.094^6^0.007^~1~^~A~^^^1^0.081^0.124^5^0.076^0.111^~4~^~02/01/2011~ -~21496~^~609~^0.063^6^0.003^~1~^~A~^^^1^0.055^0.074^5^0.056^0.070^~4~^~02/01/2011~ -~21496~^~610~^0.158^6^0.003^~1~^~A~^^^1^0.144^0.166^5^0.149^0.167^~4~^~02/01/2011~ -~21496~^~611~^0.186^6^0.005^~1~^~A~^^^1^0.172^0.203^5^0.175^0.198^~4~^~02/01/2011~ -~21496~^~612~^0.703^6^0.020^~1~^~A~^^^1^0.647^0.768^5^0.651^0.754^~4~^~02/01/2011~ -~21496~^~613~^3.583^6^0.112^~1~^~A~^^^1^3.207^3.881^5^3.296^3.870^~4~^~02/01/2011~ -~21496~^~614~^1.595^6^0.046^~1~^~A~^^^1^1.452^1.775^5^1.477^1.714^~4~^~02/01/2011~ -~21496~^~615~^0.031^6^0.001^~1~^~A~^^^1^0.028^0.033^5^0.029^0.033^~4~^~02/01/2011~ -~21496~^~617~^4.995^6^0.206^~1~^~AS~^^^1^4.367^5.714^5^4.466^5.525^~4~^~02/01/2011~ -~21496~^~618~^2.901^6^0.088^~1~^~AS~^^^1^2.633^3.192^5^2.676^3.127^~4~^~02/01/2011~ -~21496~^~619~^0.267^6^0.010^~1~^~AS~^^^1^0.237^0.298^5^0.241^0.294^~4~^~02/01/2011~ -~21496~^~620~^0.044^6^0.002^~1~^~A~^^^1^0.039^0.053^5^0.039^0.049^~4~^~02/01/2011~ -~21496~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21496~^~624~^0.017^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.016^0.018^~4~^~02/01/2011~ -~21496~^~625~^0.051^6^0.003^~1~^~A~^^^1^0.044^0.060^5^0.044^0.059^~4~^~02/01/2011~ -~21496~^~626~^0.270^6^0.015^~1~^~AS~^^^1^0.212^0.305^5^0.233^0.308^~4~^~02/01/2011~ -~21496~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21496~^~628~^0.090^6^0.004^~1~^~A~^^^1^0.080^0.109^5^0.079^0.102^~4~^~02/01/2011~ -~21496~^~629~^0.007^6^0.004^~1~^~A~^^^1^0.002^0.025^5^-0.002^0.016^~1, 4~^~02/01/2011~ -~21496~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~4~^~02/01/2011~ -~21496~^~631~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~4~^~02/01/2011~ -~21496~^~645~^5.444^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~646~^3.330^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~652~^0.070^6^0.002^~1~^~A~^^^1^0.064^0.079^5^0.064^0.076^~4~^~02/01/2011~ -~21496~^~653~^0.067^6^0.002^~1~^~A~^^^1^0.063^0.073^5^0.063^0.072^~4~^~02/01/2011~ -~21496~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.009^5^0.007^0.009^~4~^~02/01/2011~ -~21496~^~662~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.029^5^0.023^0.028^~4~^~02/01/2011~ -~21496~^~663~^0.187^6^0.015^~1~^~A~^^^1^0.113^0.211^5^0.149^0.226^~4~^~02/01/2011~ -~21496~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21496~^~665~^0.070^6^0.002^~1~^~A~^^^1^0.065^0.077^5^0.065^0.074^~4~^~02/01/2011~ -~21496~^~670~^0.050^6^0.001^~1~^~A~^^^1^0.045^0.054^5^0.047^0.054^~4~^~02/01/2011~ -~21496~^~671~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21496~^~672~^0.053^6^0.003^~1~^~A~^^^1^0.046^0.068^5^0.044^0.061^~4~^~02/01/2011~ -~21496~^~673~^0.245^6^0.014^~1~^~A~^^^1^0.190^0.279^5^0.208^0.282^~4~^~02/01/2011~ -~21496~^~674~^4.808^6^0.197^~1~^~A~^^^1^4.254^5.509^5^4.302^5.314^~4~^~02/01/2011~ -~21496~^~675~^2.781^6^0.088^~1~^~A~^^^1^2.502^3.069^5^2.555^3.007^~4~^~02/01/2011~ -~21496~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21496~^~685~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~4~^~02/01/2011~ -~21496~^~687~^0.033^6^0.002^~1~^~A~^^^1^0.025^0.038^5^0.028^0.038^~4~^~02/01/2011~ -~21496~^~689~^0.028^6^0.001^~1~^~AS~^^^1^0.025^0.034^5^0.024^0.032^~4~^~02/01/2011~ -~21496~^~693~^0.213^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~695~^0.070^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21496~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21496~^~851~^0.262^6^0.010^~1~^~A~^^^1^0.231^0.293^5^0.236^0.288^~4~^~02/01/2011~ -~21496~^~852~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.007^0.010^~4~^~02/01/2011~ -~21496~^~853~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.024^5^0.017^0.022^~4~^~02/01/2011~ -~21496~^~858~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.018^5^0.013^0.017^~4~^~02/01/2011~ -~21497~^~312~^0.104^6^0.003^~1~^~A~^^^1^0.096^0.116^5^0.096^0.112^~4~^~02/01/2011~ -~21497~^~315~^0.363^6^0.005^~1~^~A~^^^1^0.351^0.384^5^0.351^0.376^~4~^~02/01/2011~ -~21497~^~404~^0.360^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~406~^4.250^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21497~^~605~^0.220^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~606~^5.459^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~607~^0.082^6^0.010^~1~^~A~^^^1^0.058^0.124^5^0.056^0.107^~4~^~02/01/2011~ -~21497~^~608~^0.067^6^0.006^~1~^~A~^^^1^0.055^0.095^5^0.051^0.082^~4~^~02/01/2011~ -~21497~^~609~^0.045^6^0.002^~1~^~A~^^^1^0.037^0.054^5^0.039^0.051^~4~^~02/01/2011~ -~21497~^~610~^0.113^6^0.003^~1~^~A~^^^1^0.099^0.122^5^0.104^0.121^~4~^~02/01/2011~ -~21497~^~611~^0.137^6^0.003^~1~^~A~^^^1^0.122^0.143^5^0.129^0.146^~4~^~02/01/2011~ -~21497~^~612~^0.519^6^0.014^~1~^~A~^^^1^0.466^0.552^5^0.484^0.555^~4~^~02/01/2011~ -~21497~^~613~^3.092^6^0.057^~1~^~A~^^^1^2.891^3.257^5^2.945^3.238^~4~^~02/01/2011~ -~21497~^~614~^1.251^6^0.028^~1~^~A~^^^1^1.184^1.377^5^1.180^1.322^~4~^~02/01/2011~ -~21497~^~615~^0.029^6^0.001^~1~^~A~^^^1^0.028^0.031^5^0.027^0.030^~4~^~02/01/2011~ -~21497~^~617~^4.372^6^0.133^~1~^~AS~^^^1^4.044^4.935^5^4.030^4.713^~4~^~02/01/2011~ -~21497~^~618~^2.015^6^0.106^~1~^~AS~^^^1^1.625^2.363^5^1.743^2.287^~4~^~02/01/2011~ -~21497~^~619~^0.184^6^0.010^~1~^~AS~^^^1^0.142^0.211^5^0.160^0.209^~4~^~02/01/2011~ -~21497~^~620~^0.032^6^0.001^~1~^~A~^^^1^0.029^0.038^5^0.029^0.036^~4~^~02/01/2011~ -~21497~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~02/01/2011~ -~21497~^~624~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.014^5^0.013^0.014^~4~^~02/01/2011~ -~21497~^~625~^0.037^6^0.002^~1~^~A~^^^1^0.030^0.042^5^0.032^0.042^~4~^~02/01/2011~ -~21497~^~626~^0.215^6^0.010^~1~^~AS~^^^1^0.172^0.248^5^0.189^0.241^~4~^~02/01/2011~ -~21497~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21497~^~628~^0.079^6^0.002^~1~^~A~^^^1^0.072^0.086^5^0.074^0.085^~4~^~02/01/2011~ -~21497~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 4~^~02/01/2011~ -~21497~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~4~^~02/01/2011~ -~21497~^~631~^0.006^6^0.001^~1~^~A~^^^1^0.000^0.008^5^0.003^0.009^~1, 4~^~02/01/2011~ -~21497~^~645~^4.732^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~646~^2.318^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~652~^0.051^6^0.002^~1~^~A~^^^1^0.044^0.056^5^0.046^0.056^~4~^~02/01/2011~ -~21497~^~653~^0.050^6^0.001^~1~^~A~^^^1^0.045^0.052^5^0.047^0.053^~4~^~02/01/2011~ -~21497~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~4~^~02/01/2011~ -~21497~^~662~^0.018^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.016^0.021^~4~^~02/01/2011~ -~21497~^~663~^0.149^6^0.005^~1~^~A~^^^1^0.134^0.168^5^0.135^0.163^~4~^~02/01/2011~ -~21497~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21497~^~665~^0.053^6^0.002^~1~^~A~^^^1^0.046^0.062^5^0.047^0.059^~4~^~02/01/2011~ -~21497~^~670~^0.038^6^0.001^~1~^~A~^^^1^0.035^0.041^5^0.035^0.041^~4~^~02/01/2011~ -~21497~^~671~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.006^5^0.000^0.004^~1, 4~^~02/01/2011~ -~21497~^~672~^0.040^6^0.003^~1~^~A~^^^1^0.035^0.055^5^0.032^0.048^~4~^~02/01/2011~ -~21497~^~673~^0.196^6^0.010^~1~^~A~^^^1^0.156^0.233^5^0.170^0.223^~4~^~02/01/2011~ -~21497~^~674~^4.223^6^0.134^~1~^~A~^^^1^3.903^4.801^5^3.878^4.568^~4~^~02/01/2011~ -~21497~^~675~^1.923^6^0.107^~1~^~A~^^^1^1.535^2.282^5^1.649^2.198^~4~^~02/01/2011~ -~21497~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21497~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~02/01/2011~ -~21497~^~687~^0.024^6^0.001^~1~^~A~^^^1^0.019^0.027^5^0.021^0.027^~4~^~02/01/2011~ -~21497~^~689~^0.022^6^0.001^~1~^~AS~^^^1^0.019^0.026^5^0.019^0.025^~4~^~02/01/2011~ -~21497~^~693~^0.167^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21497~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21497~^~851~^0.180^6^0.010^~1~^~A~^^^1^0.137^0.207^5^0.155^0.205^~4~^~02/01/2011~ -~21497~^~852~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~4~^~02/01/2011~ -~21497~^~853~^0.015^6^0.001^~1~^~A~^^^1^0.014^0.018^5^0.013^0.017^~4~^~02/01/2011~ -~21497~^~858~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.016^5^0.009^0.014^~4~^~02/01/2011~ -~21498~^~312~^0.101^6^0.002^~1~^~A~^^^1^0.095^0.106^5^0.096^0.106^~4~^~02/01/2011~ -~21498~^~315~^0.375^6^0.008^~1~^~A~^^^1^0.342^0.402^5^0.353^0.396^~4~^~02/01/2011~ -~21498~^~404~^0.400^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~406~^3.830^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~21498~^~605~^0.200^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~606~^4.855^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~607~^0.073^6^0.005^~1~^~A~^^^1^0.053^0.085^5^0.059^0.087^~4~^~02/01/2011~ -~21498~^~608~^0.056^6^0.003^~1~^~A~^^^1^0.047^0.065^5^0.049^0.064^~4~^~02/01/2011~ -~21498~^~609~^0.039^6^0.001^~1~^~A~^^^1^0.034^0.043^5^0.036^0.042^~4~^~02/01/2011~ -~21498~^~610~^0.099^6^0.003^~1~^~A~^^^1^0.089^0.110^5^0.092^0.106^~4~^~02/01/2011~ -~21498~^~611~^0.117^6^0.004^~1~^~A~^^^1^0.107^0.133^5^0.108^0.126^~4~^~02/01/2011~ -~21498~^~612~^0.450^6^0.014^~1~^~A~^^^1^0.399^0.509^5^0.413^0.488^~4~^~02/01/2011~ -~21498~^~613~^2.676^6^0.060^~1~^~A~^^^1^2.488^2.824^5^2.523^2.830^~4~^~02/01/2011~ -~21498~^~614~^1.191^6^0.033^~1~^~A~^^^1^1.075^1.284^5^1.105^1.277^~4~^~02/01/2011~ -~21498~^~615~^0.029^6^0.001^~1~^~A~^^^1^0.027^0.033^5^0.027^0.031^~4~^~02/01/2011~ -~21498~^~617~^3.934^6^0.105^~1~^~AS~^^^1^3.571^4.207^5^3.665^4.202^~4~^~02/01/2011~ -~21498~^~618~^3.258^6^0.183^~1~^~AS~^^^1^2.747^4.003^5^2.787^3.730^~4~^~02/01/2011~ -~21498~^~619~^0.352^6^0.030^~1~^~AS~^^^1^0.248^0.468^5^0.275^0.428^~4~^~02/01/2011~ -~21498~^~620~^0.030^6^0.002^~1~^~A~^^^1^0.027^0.038^5^0.026^0.035^~4~^~02/01/2011~ -~21498~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 4~^~02/01/2011~ -~21498~^~624~^0.020^6^0.001^~1~^~A~^^^1^0.015^0.024^5^0.017^0.023^~4~^~02/01/2011~ -~21498~^~625~^0.033^6^0.002^~1~^~A~^^^1^0.026^0.038^5^0.029^0.037^~4~^~02/01/2011~ -~21498~^~626~^0.197^6^0.009^~1~^~AS~^^^1^0.170^0.224^5^0.175^0.220^~4~^~02/01/2011~ -~21498~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21498~^~628~^0.080^6^0.003^~1~^~A~^^^1^0.071^0.089^5^0.073^0.088^~4~^~02/01/2011~ -~21498~^~629~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 4~^~02/01/2011~ -~21498~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~4~^~02/01/2011~ -~21498~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~4~^~02/01/2011~ -~21498~^~645~^4.273^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~646~^3.723^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~652~^0.045^6^0.002^~1~^~A~^^^1^0.039^0.052^5^0.041^0.050^~4~^~02/01/2011~ -~21498~^~653~^0.047^6^0.001^~1~^~A~^^^1^0.042^0.051^5^0.044^0.050^~4~^~02/01/2011~ -~21498~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.007^0.010^5^0.007^0.010^~4~^~02/01/2011~ -~21498~^~662~^0.016^6^0.001^~1~^~A~^^^1^0.014^0.019^5^0.015^0.018^~4~^~02/01/2011~ -~21498~^~663~^0.129^6^0.004^~1~^~A~^^^1^0.114^0.135^5^0.119^0.138^~4~^~02/01/2011~ -~21498~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~02/01/2011~ -~21498~^~665~^0.055^6^0.003^~1~^~A~^^^1^0.048^0.066^5^0.047^0.062^~4~^~02/01/2011~ -~21498~^~670~^0.036^6^0.001^~1~^~A~^^^1^0.032^0.040^5^0.033^0.039^~4~^~02/01/2011~ -~21498~^~671~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.000^0.003^~1, 4~^~02/01/2011~ -~21498~^~672~^0.038^6^0.003^~1~^~A~^^^1^0.032^0.051^5^0.031^0.046^~4~^~02/01/2011~ -~21498~^~673~^0.181^6^0.009^~1~^~A~^^^1^0.156^0.209^5^0.159^0.203^~4~^~02/01/2011~ -~21498~^~674~^3.805^6^0.103^~1~^~A~^^^1^3.436^4.072^5^3.540^4.070^~4~^~02/01/2011~ -~21498~^~675~^3.168^6^0.181^~1~^~A~^^^1^2.665^3.899^5^2.702^3.633^~4~^~02/01/2011~ -~21498~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 4~^~02/01/2011~ -~21498~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.004^5^0.004^0.004^~4~^~02/01/2011~ -~21498~^~687~^0.024^6^0.001^~1~^~A~^^^1^0.021^0.026^5^0.022^0.026^~4~^~02/01/2011~ -~21498~^~689~^0.020^6^0.001^~1~^~AS~^^^1^0.016^0.024^5^0.016^0.023^~4~^~02/01/2011~ -~21498~^~693~^0.145^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~21498~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~02/01/2011~ -~21498~^~851~^0.348^6^0.030^~1~^~A~^^^1^0.244^0.464^5^0.271^0.424^~4~^~02/01/2011~ -~21498~^~852~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.007^~4~^~02/01/2011~ -~21498~^~853~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.016^5^0.011^0.016^~4~^~02/01/2011~ -~21498~^~858~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.013^~4~^~02/01/2011~ -~21505~^~312~^0.091^12^0.002^~1~^~A~^^^1^0.080^0.100^6^0.085^0.096^~2, 3~^~06/01/2014~ -~21505~^~315~^0.328^12^0.006^~1~^~A~^^^1^0.280^0.370^10^0.314^0.341^~2, 3~^~06/01/2014~ -~21505~^~404~^0.103^3^0.018^~1~^~A~^^^1^0.070^0.130^2^0.027^0.179^~4~^~01/01/2013~ -~21505~^~405~^0.127^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.112^0.141^~4~^~01/01/2013~ -~21505~^~406~^1.283^3^0.022^~1~^~A~^^^1^1.240^1.310^2^1.189^1.377^~4~^~01/01/2013~ -~21505~^~410~^0.497^3^0.027^~1~^~A~^^^1^0.460^0.550^2^0.379^0.614^~4~^~01/01/2013~ -~21505~^~415~^0.130^3^0.000^~1~^~A~^^^1^0.130^0.130^2^0.130^0.130^~4~^~01/01/2013~ -~21505~^~605~^0.277^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~606~^5.698^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~607~^0.159^6^0.002^~1~^~A~^^^1^0.150^0.170^3^0.151^0.167^~2, 3~^~06/01/2014~ -~21505~^~608~^0.125^6^0.002^~1~^~A~^^^1^0.120^0.130^3^0.117^0.132^~2, 3~^~05/01/2012~ -~21505~^~609~^0.075^6^0.002^~1~^~A~^^^1^0.070^0.080^3^0.067^0.082^~2, 3~^~05/01/2012~ -~21505~^~610~^0.183^6^0.002^~1~^~A~^^^1^0.180^0.190^3^0.176^0.191^~2, 3~^~05/01/2012~ -~21505~^~611~^0.205^6^0.004^~1~^~A~^^^1^0.200^0.220^2^0.189^0.222^~2, 3~^~05/01/2012~ -~21505~^~612~^0.713^6^0.011^~1~^~A~^^^1^0.690^0.740^2^0.670^0.756^~2, 3~^~06/01/2014~ -~21505~^~613~^3.096^6^0.040^~1~^~A~^^^1^2.430^3.510^2^2.943^3.248^~2, 3~^~06/01/2014~ -~21505~^~614~^0.976^6^0.011^~1~^~A~^^^1^0.870^1.060^2^0.935^1.018^~2, 3~^~06/01/2014~ -~21505~^~615~^0.020^6^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~05/01/2012~ -~21505~^~617~^2.799^6^0.019^~1~^~AS~^^^1^2.650^2.930^2^2.720^2.877^~2, 3~^~06/01/2014~ -~21505~^~618~^1.547^6^0.013^~1~^~AS~^^^1^1.340^1.850^2^1.490^1.603^~2, 3~^~06/01/2014~ -~21505~^~619~^0.110^6^0.002^~1~^~AS~^^^1^0.072^0.135^2^0.100^0.119^~2, 3~^~06/01/2014~ -~21505~^~620~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~05/01/2012~ -~21505~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.002^~1, 2, 3~^~06/01/2014~ -~21505~^~624~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.010^2^0.009^0.010^~2, 3~^~05/01/2012~ -~21505~^~625~^0.054^6^0.000^~1~^~A~^^^1^0.050^0.060^^^^~2, 3~^~06/01/2014~ -~21505~^~626~^0.143^6^0.002^~1~^~AS~^^^1^0.130^0.160^3^0.135^0.150^~2, 3~^~06/01/2014~ -~21505~^~627~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.003^~1, 2, 3~^~05/01/2012~ -~21505~^~628~^0.021^6^0.001^~1~^~A~^^^1^0.020^0.030^2^0.016^0.026^~2, 3~^~06/01/2014~ -~21505~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.004^~2, 3~^~05/01/2012~ -~21505~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.000^0.002^2^0.001^0.003^~2, 3~^~05/01/2012~ -~21505~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^2^0.004^0.007^~2, 3~^~05/01/2012~ -~21505~^~645~^3.028^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~646~^1.695^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~652~^0.076^6^0.002^~1~^~A~^^^1^0.070^0.080^2^0.067^0.085^~2, 3~^~06/01/2014~ -~21505~^~653~^0.048^6^0.002^~1~^~A~^^^1^0.040^0.050^2^0.039^0.057^~2, 3~^~05/01/2012~ -~21505~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.009^2^0.006^0.008^~2, 3~^~06/01/2014~ -~21505~^~662~^0.020^6^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~05/01/2012~ -~21505~^~663~^0.190^6^0.002^~1~^~A~^^^1^0.180^0.200^3^0.182^0.197^~2, 3~^~06/01/2014~ -~21505~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~21505~^~665~^0.068^6^0.001^~1~^~A~^^^1^0.060^0.070^2^0.062^0.073^~2, 3~^~06/01/2014~ -~21505~^~670~^0.048^6^0.001^~1~^~A~^^^1^0.040^0.050^2^0.042^0.053^~2, 3~^~06/01/2014~ -~21505~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~21505~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2012~ -~21505~^~673~^0.123^6^0.002^~1~^~A~^^^1^0.110^0.140^3^0.115^0.130^~2, 3~^~06/01/2014~ -~21505~^~674~^2.609^6^0.017^~1~^~A~^^^1^2.470^2.730^2^2.539^2.679^~2, 3~^~06/01/2014~ -~21505~^~675~^1.432^6^0.013^~1~^~A~^^^1^1.220^1.740^2^1.375^1.488^~2, 3~^~06/01/2014~ -~21505~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.001^0.003^~1, 2, 3~^~05/01/2012~ -~21505~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^2^0.003^0.004^~1, 2, 3~^~05/01/2012~ -~21505~^~687~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~05/01/2012~ -~21505~^~689~^0.010^6^0.000^~1~^~AS~^^^1^0.009^0.011^4^0.009^0.011^~2, 3~^~05/01/2012~ -~21505~^~693~^0.210^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~21505~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~21505~^~851~^0.106^6^0.002^~1~^~A~^^^1^0.070^0.130^2^0.097^0.115^~2, 3~^~06/01/2014~ -~21505~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~05/01/2012~ -~21505~^~853~^0.009^6^0.000^~1~^~A~^^^1^0.009^0.010^3^0.009^0.010^~2, 3~^~05/01/2012~ -~21505~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~1, 2, 3~^~05/01/2012~ -~21506~^~312~^0.093^6^0.003^~1~^~A~^^^1^0.085^0.101^5^0.086^0.100^~4~^~07/01/2012~ -~21506~^~315~^0.210^6^0.006^~1~^~A~^^^1^0.185^0.221^5^0.195^0.224^~4~^~07/01/2012~ -~21506~^~605~^0.702^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~606~^6.922^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~607~^0.077^3^0.010^~1~^~A~^^^1^0.061^0.096^2^0.033^0.121^~4~^~07/01/2012~ -~21506~^~608~^0.064^3^0.006^~1~^~A~^^^1^0.052^0.072^2^0.038^0.090^~4~^~07/01/2012~ -~21506~^~609~^0.043^3^0.004^~1~^~A~^^^1^0.035^0.048^2^0.025^0.061^~4~^~07/01/2012~ -~21506~^~610~^0.110^3^0.008^~1~^~A~^^^1^0.095^0.121^2^0.076^0.143^~4~^~07/01/2012~ -~21506~^~611~^0.128^3^0.009^~1~^~A~^^^1^0.110^0.142^2^0.087^0.168^~4~^~07/01/2012~ -~21506~^~612~^0.685^3^0.022^~1~^~A~^^^1^0.642^0.709^2^0.592^0.778^~4~^~07/01/2012~ -~21506~^~613~^3.512^3^0.019^~1~^~A~^^^1^3.474^3.537^2^3.429^3.594^~4~^~07/01/2012~ -~21506~^~614~^2.004^3^0.065^~1~^~A~^^^1^1.888^2.113^2^1.724^2.284^~4~^~07/01/2012~ -~21506~^~615~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~4~^~07/01/2012~ -~21506~^~617~^5.372^3^0.118^~1~^~AS~^^^1^5.137^5.514^2^4.863^5.881^~4~^~07/01/2012~ -~21506~^~618~^1.028^3^0.021^~1~^~AS~^^^1^0.999^1.070^2^0.936^1.121^~4~^~07/01/2012~ -~21506~^~619~^0.105^3^0.007^~1~^~AS~^^^1^0.097^0.118^2^0.077^0.133^~4~^~07/01/2012~ -~21506~^~620~^0.029^3^0.001^~1~^~A~^^^1^0.026^0.031^2^0.022^0.035^~4~^~07/01/2012~ -~21506~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21506~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~07/01/2012~ -~21506~^~625~^0.129^3^0.002^~1~^~A~^^^1^0.124^0.132^2^0.118^0.139^~4~^~07/01/2012~ -~21506~^~626~^0.406^3^0.013^~1~^~AS~^^^1^0.382^0.425^2^0.351^0.460^~4~^~07/01/2012~ -~21506~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 4~^~07/01/2012~ -~21506~^~628~^0.054^3^0.003^~1~^~A~^^^1^0.050^0.059^2^0.042^0.065^~4~^~07/01/2012~ -~21506~^~629~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21506~^~630~^0.016^3^0.002^~1~^~AS~^^^1^0.014^0.019^2^0.009^0.022^~4~^~07/01/2012~ -~21506~^~631~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~4~^~07/01/2012~ -~21506~^~645~^6.079^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~646~^1.215^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~652~^0.095^3^0.002^~1~^~A~^^^1^0.092^0.097^2^0.088^0.103^~4~^~07/01/2012~ -~21506~^~653~^0.161^3^0.002^~1~^~A~^^^1^0.158^0.165^2^0.151^0.170^~4~^~07/01/2012~ -~21506~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~4~^~07/01/2012~ -~21506~^~662~^0.052^3^0.002^~1~^~A~^^^1^0.050^0.055^2^0.045^0.058^~4~^~07/01/2012~ -~21506~^~663~^0.547^3^0.011^~1~^~A~^^^1^0.525^0.562^2^0.499^0.595^~4~^~07/01/2012~ -~21506~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21506~^~665~^0.104^3^0.002^~1~^~A~^^^1^0.099^0.107^2^0.093^0.114^~4~^~07/01/2012~ -~21506~^~670~^0.085^3^0.003^~1~^~A~^^^1^0.079^0.089^2^0.072^0.097^~4~^~07/01/2012~ -~21506~^~671~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.006^0.016^~1, 4~^~07/01/2012~ -~21506~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~4~^~07/01/2012~ -~21506~^~673~^0.354^3^0.011^~1~^~A~^^^1^0.332^0.370^2^0.305^0.402^~4~^~07/01/2012~ -~21506~^~674~^4.825^3^0.125^~1~^~A~^^^1^4.575^4.961^2^4.286^5.365^~4~^~07/01/2012~ -~21506~^~675~^0.840^3^0.019^~1~^~A~^^^1^0.808^0.874^2^0.758^0.922^~4~^~07/01/2012~ -~21506~^~676~^0.016^3^0.002^~1~^~A~^^^1^0.014^0.019^2^0.009^0.022^~4~^~07/01/2012~ -~21506~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 4~^~07/01/2012~ -~21506~^~687~^0.099^3^0.000^~1~^~A~^^^1^0.098^0.099^2^0.097^0.100^~4~^~07/01/2012~ -~21506~^~689~^0.020^3^0.000^~1~^~AS~^^^1^0.019^0.020^2^0.018^0.021^~4~^~07/01/2012~ -~21506~^~693~^0.599^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~695~^0.104^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21506~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21506~^~851~^0.104^3^0.005^~1~^~A~^^^1^0.097^0.114^2^0.081^0.126^~4~^~07/01/2012~ -~21506~^~852~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^2^0.003^0.003^~4~^~07/01/2012~ -~21506~^~853~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~4~^~07/01/2012~ -~21506~^~858~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^2^0.006^0.006^~4~^~07/01/2012~ -~21507~^~312~^0.086^6^0.002^~1~^~A~^^^1^0.079^0.093^5^0.081^0.092^~4~^~07/01/2012~ -~21507~^~315~^0.173^6^0.005^~1~^~A~^^^1^0.160^0.191^5^0.160^0.187^~4~^~07/01/2012~ -~21507~^~605~^0.919^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~606~^6.851^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~607~^0.047^3^0.004^~1~^~A~^^^1^0.039^0.052^2^0.030^0.064^~4~^~07/01/2012~ -~21507~^~608~^0.035^3^0.003^~1~^~A~^^^1^0.030^0.038^2^0.024^0.046^~4~^~07/01/2012~ -~21507~^~609~^0.025^3^0.001^~1~^~A~^^^1^0.022^0.026^2^0.019^0.031^~4~^~07/01/2012~ -~21507~^~610~^0.067^3^0.003^~1~^~A~^^^1^0.062^0.073^2^0.053^0.081^~4~^~07/01/2012~ -~21507~^~611~^0.075^3^0.004^~1~^~A~^^^1^0.068^0.083^2^0.056^0.094^~4~^~07/01/2012~ -~21507~^~612~^0.594^3^0.023^~1~^~A~^^^1^0.551^0.629^2^0.495^0.692^~4~^~07/01/2012~ -~21507~^~613~^3.642^3^0.114^~1~^~A~^^^1^3.469^3.856^2^3.153^4.131^~4~^~07/01/2012~ -~21507~^~614~^2.060^3^0.085^~1~^~A~^^^1^1.892^2.165^2^1.695^2.426^~4~^~07/01/2012~ -~21507~^~615~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.020^2^0.016^0.022^~4~^~07/01/2012~ -~21507~^~617~^6.420^3^0.317^~1~^~AS~^^^1^6.092^7.053^2^5.057^7.782^~4~^~07/01/2012~ -~21507~^~618~^1.079^3^0.039^~1~^~AS~^^^1^1.001^1.126^2^0.910^1.248^~4~^~07/01/2012~ -~21507~^~619~^0.098^3^0.004^~1~^~AS~^^^1^0.091^0.103^2^0.082^0.113^~4~^~07/01/2012~ -~21507~^~620~^0.037^3^0.000^~1~^~A~^^^1^0.037^0.037^2^0.037^0.037^~4~^~07/01/2012~ -~21507~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21507~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~4~^~07/01/2012~ -~21507~^~625~^0.138^3^0.002^~1~^~A~^^^1^0.134^0.141^2^0.129^0.147^~4~^~07/01/2012~ -~21507~^~626~^0.492^3^0.015^~1~^~AS~^^^1^0.462^0.509^2^0.427^0.558^~4~^~07/01/2012~ -~21507~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21507~^~628~^0.063^3^0.003^~1~^~A~^^^1^0.059^0.069^2^0.049^0.076^~4~^~07/01/2012~ -~21507~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21507~^~630~^0.021^3^0.004^~1~^~AS~^^^1^0.016^0.028^2^0.006^0.037^~4~^~07/01/2012~ -~21507~^~631~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~4~^~07/01/2012~ -~21507~^~645~^7.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~646~^1.264^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~652~^0.089^3^0.005^~1~^~A~^^^1^0.079^0.096^2^0.067^0.110^~4~^~07/01/2012~ -~21507~^~653~^0.183^3^0.017^~1~^~A~^^^1^0.155^0.213^2^0.110^0.255^~4~^~07/01/2012~ -~21507~^~654~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^2^0.006^0.006^~4~^~07/01/2012~ -~21507~^~662~^0.052^3^0.002^~1~^~A~^^^1^0.048^0.055^2^0.043^0.060^~4~^~07/01/2012~ -~21507~^~663~^0.765^3^0.078^~1~^~A~^^^1^0.617^0.881^2^0.430^1.099^~4~^~07/01/2012~ -~21507~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21507~^~665~^0.103^3^0.008^~1~^~A~^^^1^0.088^0.116^2^0.068^0.138^~4~^~07/01/2012~ -~21507~^~670~^0.092^3^0.005^~1~^~A~^^^1^0.087^0.102^2^0.071^0.113^~4~^~07/01/2012~ -~21507~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 4~^~07/01/2012~ -~21507~^~672~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~4~^~07/01/2012~ -~21507~^~673~^0.441^3^0.017^~1~^~A~^^^1^0.407^0.458^2^0.368^0.513^~4~^~07/01/2012~ -~21507~^~674~^5.655^3^0.309^~1~^~A~^^^1^5.233^6.257^2^4.325^6.984^~4~^~07/01/2012~ -~21507~^~675~^0.884^3^0.029^~1~^~A~^^^1^0.826^0.920^2^0.758^1.010^~4~^~07/01/2012~ -~21507~^~676~^0.021^3^0.004^~1~^~A~^^^1^0.016^0.028^2^0.006^0.037^~4~^~07/01/2012~ -~21507~^~685~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~4~^~07/01/2012~ -~21507~^~687~^0.133^3^0.012^~1~^~A~^^^1^0.120^0.157^2^0.081^0.185^~4~^~07/01/2012~ -~21507~^~689~^0.022^3^0.000^~1~^~AS~^^^1^0.021^0.022^2^0.020^0.023^~4~^~07/01/2012~ -~21507~^~693~^0.816^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21507~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21507~^~851~^0.093^3^0.003^~1~^~A~^^^1^0.087^0.097^2^0.080^0.106^~4~^~07/01/2012~ -~21507~^~852~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 4~^~07/01/2012~ -~21507~^~853~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~4~^~07/01/2012~ -~21507~^~858~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~4~^~07/01/2012~ -~21508~^~312~^0.074^6^0.001^~1~^~A~^^^1^0.071^0.077^5^0.072^0.076^~4~^~07/01/2012~ -~21508~^~315~^0.260^6^0.005^~1~^~A~^^^1^0.248^0.279^5^0.248^0.272^~4~^~07/01/2012~ -~21508~^~605~^0.073^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~606~^2.641^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21508~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21508~^~609~^0.012^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.018^~4~^~07/01/2012~ -~21508~^~610~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~4~^~07/01/2012~ -~21508~^~611~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 4~^~07/01/2012~ -~21508~^~612~^0.031^3^0.004^~1~^~A~^^^1^0.026^0.040^2^0.012^0.050^~4~^~07/01/2012~ -~21508~^~613~^1.810^3^0.128^~1~^~A~^^^1^1.666^2.066^2^1.258^2.362^~4~^~07/01/2012~ -~21508~^~614~^0.671^3^0.032^~1~^~A~^^^1^0.635^0.734^2^0.534^0.807^~4~^~07/01/2012~ -~21508~^~615~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.040^2^0.031^0.043^~4~^~07/01/2012~ -~21508~^~617~^3.009^3^0.181^~1~^~AS~^^^1^2.780^3.367^2^2.228^3.789^~4~^~07/01/2012~ -~21508~^~618~^5.942^3^0.119^~1~^~AS~^^^1^5.776^6.173^2^5.430^6.454^~4~^~07/01/2012~ -~21508~^~619~^0.635^3^0.035^~1~^~AS~^^^1^0.599^0.705^2^0.483^0.786^~4~^~07/01/2012~ -~21508~^~620~^0.028^3^0.001^~1~^~A~^^^1^0.027^0.029^2^0.025^0.030^~4~^~07/01/2012~ -~21508~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^2^0.002^0.002^~1, 4~^~07/01/2012~ -~21508~^~624~^0.035^3^0.002^~1~^~A~^^^1^0.032^0.039^2^0.025^0.044^~4~^~07/01/2012~ -~21508~^~625~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~1, 4~^~07/01/2012~ -~21508~^~626~^0.122^3^0.039^~1~^~AS~^^^1^0.077^0.199^2^-0.045^0.289^~4~^~07/01/2012~ -~21508~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21508~^~628~^0.050^3^0.010^~1~^~A~^^^1^0.036^0.070^2^0.005^0.094^~4~^~07/01/2012~ -~21508~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 4~^~07/01/2012~ -~21508~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~4~^~07/01/2012~ -~21508~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 4~^~07/01/2012~ -~21508~^~645~^3.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~646~^6.634^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~4~^~07/01/2012~ -~21508~^~653~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.017^~4~^~07/01/2012~ -~21508~^~654~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~4~^~07/01/2012~ -~21508~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21508~^~663~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.011^0.030^~4~^~07/01/2012~ -~21508~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21508~^~665~^0.052^3^0.005^~1~^~A~^^^1^0.043^0.059^2^0.032^0.072^~4~^~07/01/2012~ -~21508~^~670~^0.016^3^0.001^~1~^~A~^^^1^0.014^0.018^2^0.011^0.021^~4~^~07/01/2012~ -~21508~^~671~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 4~^~07/01/2012~ -~21508~^~672~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~4~^~07/01/2012~ -~21508~^~673~^0.122^3^0.039^~1~^~A~^^^1^0.077^0.199^2^-0.045^0.289^~4~^~07/01/2012~ -~21508~^~674~^2.988^3^0.179^~1~^~A~^^^1^2.761^3.342^2^2.216^3.760^~4~^~07/01/2012~ -~21508~^~675~^5.875^3^0.123^~1~^~A~^^^1^5.708^6.115^2^5.345^6.404^~4~^~07/01/2012~ -~21508~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21508~^~685~^0.032^3^0.003^~1~^~A~^^^1^0.028^0.037^2^0.021^0.043^~4~^~07/01/2012~ -~21508~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~4~^~07/01/2012~ -~21508~^~689~^0.009^3^0.002^~1~^~AS~^^^1^0.006^0.012^2^0.002^0.016^~4~^~07/01/2012~ -~21508~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~21508~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~07/01/2012~ -~21508~^~851~^0.603^3^0.033^~1~^~A~^^^1^0.568^0.668^2^0.462^0.743^~4~^~07/01/2012~ -~21508~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 4~^~07/01/2012~ -~21508~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.006^0.011^2^0.002^0.015^~4~^~07/01/2012~ -~21508~^~858~^0.007^3^0.003^~1~^~A~^^^1^0.000^0.011^2^-0.008^0.021^~1, 4~^~07/01/2012~ -~21509~^~312~^0.075^6^0.004^~1~^~A~^^^1^0.067^0.094^5^0.065^0.085^~2, 3~^~08/01/2012~ -~21509~^~315~^0.342^6^0.008^~1~^~A~^^^1^0.317^0.372^5^0.321^0.362^~2, 3~^~08/01/2012~ -~21509~^~404~^0.110^3^0.000^~1~^~A~^^^1^0.110^0.110^^^^~2, 3~^~08/01/2012~ -~21509~^~405~^0.063^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.049^0.078^~2, 3~^~08/01/2012~ -~21509~^~406~^0.673^3^0.027^~1~^~A~^^^1^0.620^0.700^2^0.559^0.788^~2, 3~^~08/01/2012~ -~21509~^~410~^0.325^2^^~1~^~A~^^^1^0.310^0.340^1^^^^~08/01/2012~ -~21509~^~415~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~08/01/2012~ -~21509~^~605~^0.164^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~606~^4.194^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~607~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.002^0.006^~1, 2, 3~^~08/01/2012~ -~21509~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~21509~^~609~^0.015^6^0.001^~1~^~A~^^^1^0.009^0.018^5^0.011^0.018^~2, 3~^~08/01/2012~ -~21509~^~610~^0.012^6^0.001^~1~^~A~^^^1^0.010^0.019^5^0.009^0.016^~2, 3~^~08/01/2012~ -~21509~^~611~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.004^0.008^~2, 3~^~08/01/2012~ -~21509~^~612~^0.058^6^0.004^~1~^~A~^^^1^0.039^0.071^5^0.047^0.069^~2, 3~^~08/01/2012~ -~21509~^~613~^3.242^6^0.127^~1~^~A~^^^1^2.776^3.731^5^2.916^3.568^~2, 3~^~08/01/2012~ -~21509~^~614~^0.655^6^0.026^~1~^~A~^^^1^0.560^0.739^5^0.589^0.722^~2, 3~^~08/01/2012~ -~21509~^~615~^0.087^6^0.003^~1~^~A~^^^1^0.080^0.100^5^0.080^0.095^~2, 3~^~08/01/2012~ -~21509~^~617~^6.729^6^0.240^~1~^~AS~^^^1^5.922^7.541^5^6.112^7.346^~2, 3~^~08/01/2012~ -~21509~^~618~^11.507^6^0.328^~1~^~AS~^^^1^10.363^12.394^5^10.663^12.351^~2, 3~^~08/01/2012~ -~21509~^~619~^0.619^6^0.040^~1~^~AS~^^^1^0.473^0.740^5^0.516^0.722^~2, 3~^~08/01/2012~ -~21509~^~620~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.006^0.009^~2, 3~^~08/01/2012~ -~21509~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~624~^0.052^6^0.002^~1~^~A~^^^1^0.044^0.056^5^0.047^0.056^~2, 3~^~08/01/2012~ -~21509~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~626~^0.053^6^0.003^~1~^~AS~^^^1^0.041^0.060^5^0.045^0.060^~2, 3~^~08/01/2012~ -~21509~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~628~^0.081^6^0.005^~1~^~A~^^^1^0.065^0.098^5^0.068^0.094^~2, 3~^~08/01/2012~ -~21509~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21509~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.005^5^0.004^0.006^~2, 3~^~08/01/2012~ -~21509~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~645~^6.885^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~646~^12.149^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~652~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~08/01/2012~ -~21509~^~653~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.022^5^0.018^0.022^~2, 3~^~08/01/2012~ -~21509~^~654~^0.036^6^0.001^~1~^~A~^^^1^0.034^0.040^5^0.034^0.039^~2, 3~^~08/01/2012~ -~21509~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~663~^0.029^6^0.005^~1~^~A~^^^1^0.020^0.051^5^0.017^0.041^~2, 3~^~08/01/2012~ -~21509~^~664~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~21509~^~665~^0.133^6^0.006^~1~^~A~^^^1^0.121^0.159^5^0.117^0.148^~2, 3~^~08/01/2012~ -~21509~^~670~^0.037^6^0.003^~1~^~A~^^^1^0.026^0.049^5^0.029^0.045^~2, 3~^~08/01/2012~ -~21509~^~671~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.005^0.008^~2, 3~^~08/01/2012~ -~21509~^~672~^0.009^6^0.001^~1~^~A~^^^1^0.008^0.011^5^0.008^0.011^~2, 3~^~08/01/2012~ -~21509~^~673~^0.053^6^0.003^~1~^~A~^^^1^0.041^0.060^5^0.045^0.060^~2, 3~^~08/01/2012~ -~21509~^~674~^6.700^6^0.238^~1~^~A~^^^1^5.902^7.513^5^6.089^7.311^~2, 3~^~08/01/2012~ -~21509~^~675~^11.338^6^0.323^~1~^~A~^^^1^10.207^12.213^5^10.508^12.169^~2, 3~^~08/01/2012~ -~21509~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~21509~^~685~^0.042^6^0.004^~1~^~A~^^^1^0.027^0.054^5^0.032^0.052^~2, 3~^~08/01/2012~ -~21509~^~687~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~08/01/2012~ -~21509~^~689~^0.004^6^0.000^~1~^~AS~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21509~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~695~^0.133^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21509~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~851~^0.577^6^0.037^~1~^~A~^^^1^0.446^0.691^5^0.483^0.671^~2, 3~^~08/01/2012~ -~21509~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~08/01/2012~ -~21509~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21509~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~21510~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.075^0.092^5^0.075^0.087^~2, 3~^~08/01/2012~ -~21510~^~315~^0.186^6^0.005^~1~^~A~^^^1^0.172^0.200^5^0.172^0.199^~2, 3~^~08/01/2012~ -~21510~^~404~^0.177^3^0.012^~1~^~A~^^^1^0.160^0.200^2^0.125^0.228^~2, 3~^~08/01/2012~ -~21510~^~405~^0.257^3^0.009^~1~^~A~^^^1^0.240^0.270^2^0.219^0.295^~2, 3~^~08/01/2012~ -~21510~^~406~^3.143^3^0.154^~1~^~A~^^^1^2.850^3.370^2^2.482^3.805^~2, 3~^~08/01/2012~ -~21510~^~410~^0.755^2^^~1~^~A~^^^1^0.510^1.000^1^^^^~08/01/2012~ -~21510~^~415~^0.186^3^0.003^~1~^~A~^^^1^0.181^0.192^2^0.172^0.200^~2, 3~^~08/01/2012~ -~21510~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~502~^0.521^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~503~^0.494^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~504~^1.036^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~505~^1.004^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~506~^0.295^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~507~^0.215^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~508~^0.558^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~509~^0.413^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~510~^0.574^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~511~^0.751^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~513~^0.692^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~514~^0.982^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~515~^2.802^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~516~^0.827^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~517~^1.320^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~518~^0.590^0^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~21510~^~521~^0.195^2^^~1~^~A~^^^1^0.170^0.220^1^^^^~08/01/2012~ -~21510~^~605~^0.628^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~606~^5.746^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~607~^0.077^3^0.007^~1~^~A~^^^1^0.064^0.089^2^0.046^0.109^~2, 3~^~08/01/2012~ -~21510~^~608~^0.060^3^0.005^~1~^~A~^^^1^0.050^0.068^2^0.037^0.082^~2, 3~^~08/01/2012~ -~21510~^~609~^0.043^3^0.004^~1~^~A~^^^1^0.036^0.048^2^0.027^0.058^~2, 3~^~08/01/2012~ -~21510~^~610~^0.100^3^0.007^~1~^~A~^^^1^0.086^0.110^2^0.069^0.132^~2, 3~^~08/01/2012~ -~21510~^~611~^0.112^3^0.008^~1~^~A~^^^1^0.097^0.122^2^0.079^0.144^~2, 3~^~08/01/2012~ -~21510~^~612~^0.565^3^0.022^~1~^~A~^^^1^0.530^0.605^2^0.472^0.659^~2, 3~^~08/01/2012~ -~21510~^~613~^3.017^3^0.047^~1~^~A~^^^1^2.949^3.108^2^2.813^3.221^~2, 3~^~08/01/2012~ -~21510~^~614~^1.527^3^0.041^~1~^~A~^^^1^1.448^1.585^2^1.351^1.704^~2, 3~^~08/01/2012~ -~21510~^~615~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~08/01/2012~ -~21510~^~617~^4.776^3^0.151^~1~^~AS~^^^1^4.473^4.930^2^4.124^5.427^~2, 3~^~08/01/2012~ -~21510~^~618~^2.045^3^0.186^~1~^~AS~^^^1^1.677^2.269^2^1.247^2.844^~2, 3~^~08/01/2012~ -~21510~^~619~^0.252^3^0.024^~1~^~AS~^^^1^0.203^0.276^2^0.147^0.356^~2, 3~^~08/01/2012~ -~21510~^~620~^0.029^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.033^~2, 3~^~08/01/2012~ -~21510~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~624~^0.015^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.020^~2, 3~^~08/01/2012~ -~21510~^~625~^0.101^3^0.003^~1~^~A~^^^1^0.098^0.108^2^0.087^0.116^~2, 3~^~08/01/2012~ -~21510~^~626~^0.335^3^0.005^~1~^~AS~^^^1^0.327^0.343^2^0.315^0.354^~2, 3~^~08/01/2012~ -~21510~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~628~^0.049^3^0.003^~1~^~A~^^^1^0.045^0.055^2^0.036^0.062^~2, 3~^~08/01/2012~ -~21510~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~21510~^~630~^0.007^3^0.003^~1~^~AS~^^^1^0.001^0.013^2^-0.008^0.022^~2, 3~^~08/01/2012~ -~21510~^~631~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~08/01/2012~ -~21510~^~645~^5.352^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~646~^2.366^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~652~^0.075^3^0.003^~1~^~A~^^^1^0.070^0.081^2^0.061^0.089^~2, 3~^~08/01/2012~ -~21510~^~653~^0.122^3^0.008^~1~^~A~^^^1^0.107^0.132^2^0.089^0.155^~2, 3~^~08/01/2012~ -~21510~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~08/01/2012~ -~21510~^~662~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.041^2^0.035^0.043^~2, 3~^~08/01/2012~ -~21510~^~663~^0.512^3^0.043^~1~^~A~^^^1^0.444^0.593^2^0.325^0.699^~2, 3~^~08/01/2012~ -~21510~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~665~^0.077^3^0.005^~1~^~A~^^^1^0.069^0.087^2^0.054^0.100^~2, 3~^~08/01/2012~ -~21510~^~670~^0.067^3^0.005^~1~^~A~^^^1^0.059^0.075^2^0.047^0.087^~2, 3~^~08/01/2012~ -~21510~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~08/01/2012~ -~21510~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~21510~^~673~^0.295^3^0.005^~1~^~A~^^^1^0.286^0.305^2^0.272^0.319^~2, 3~^~08/01/2012~ -~21510~^~674~^4.264^3^0.121^~1~^~A~^^^1^4.029^4.431^2^3.744^4.784^~2, 3~^~08/01/2012~ -~21510~^~675~^1.901^3^0.185^~1~^~A~^^^1^1.533^2.115^2^1.105^2.697^~2, 3~^~08/01/2012~ -~21510~^~676~^0.007^3^0.003^~1~^~A~^^^1^0.001^0.013^2^-0.008^0.022^~1, 2, 3~^~08/01/2012~ -~21510~^~685~^0.012^3^0.003^~1~^~A~^^^1^0.009^0.017^2^0.001^0.023^~2, 3~^~08/01/2012~ -~21510~^~687~^0.083^3^0.006^~1~^~A~^^^1^0.072^0.092^2^0.058^0.108^~2, 3~^~08/01/2012~ -~21510~^~689~^0.018^3^0.001^~1~^~AS~^^^1^0.017^0.019^2^0.015^0.020^~2, 3~^~08/01/2012~ -~21510~^~693~^0.551^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~695~^0.077^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~21510~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~21510~^~851~^0.240^3^0.023^~1~^~A~^^^1^0.194^0.266^2^0.141^0.338^~2, 3~^~08/01/2012~ -~21510~^~852~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.004^2^-0.001^0.006^~1, 2, 3~^~08/01/2012~ -~21510~^~853~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~08/01/2012~ -~21510~^~858~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~08/01/2012~ -~21511~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.071^0.087^5^0.075^0.087^~2, 3~^~04/01/2013~ -~21511~^~315~^0.351^6^0.005^~1~^~A~^^^1^0.334^0.365^5^0.339^0.364^~2, 3~^~04/01/2013~ -~21511~^~404~^0.323^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.285^0.361^~2, 3~^~04/01/2013~ -~21511~^~405~^0.333^3^0.009^~1~^~A~^^^1^0.320^0.350^2^0.295^0.371^~2, 3~^~04/01/2013~ -~21511~^~406~^3.763^3^0.061^~1~^~A~^^^1^3.650^3.860^2^3.500^4.026^~2, 3~^~04/01/2013~ -~21511~^~410~^0.450^2^^~1~^~A~^^^1^0.430^0.470^1^^^^~04/01/2013~ -~21511~^~415~^0.119^3^0.001^~1~^~A~^^^1^0.118^0.122^2^0.114^0.125^~2, 3~^~04/01/2013~ -~21511~^~501~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~502~^0.392^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~503~^0.573^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~504~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~505~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~506~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~508~^0.640^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~509~^0.401^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~510~^0.707^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~511~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~512~^0.315^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~513~^0.382^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~514~^0.812^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~515~^3.393^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~516~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~517~^1.739^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~518~^0.583^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~21511~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~21511~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~606~^5.825^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~607~^0.175^3^0.005^~1~^~A~^^^1^0.170^0.185^2^0.153^0.197^~2, 3~^~04/01/2013~ -~21511~^~608~^0.143^3^0.002^~1~^~A~^^^1^0.140^0.147^2^0.133^0.152^~2, 3~^~04/01/2013~ -~21511~^~609~^0.091^3^0.001^~1~^~A~^^^1^0.090^0.092^2^0.088^0.094^~2, 3~^~04/01/2013~ -~21511~^~610~^0.233^3^0.002^~1~^~A~^^^1^0.229^0.237^2^0.223^0.243^~2, 3~^~04/01/2013~ -~21511~^~611~^0.275^3^0.002^~1~^~A~^^^1^0.272^0.279^2^0.265^0.284^~2, 3~^~04/01/2013~ -~21511~^~612~^0.898^3^0.000^~1~^~A~^^^1^0.898^0.899^2^0.897^0.900^~2, 3~^~04/01/2013~ -~21511~^~613~^2.820^3^0.010^~1~^~A~^^^1^2.801^2.834^2^2.778^2.862^~2, 3~^~04/01/2013~ -~21511~^~614~^0.997^3^0.009^~1~^~A~^^^1^0.988^1.014^2^0.959^1.034^~2, 3~^~04/01/2013~ -~21511~^~615~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~04/01/2013~ -~21511~^~617~^2.463^3^0.012^~1~^~AS~^^^1^2.440^2.480^2^2.412^2.515^~2, 3~^~04/01/2013~ -~21511~^~618~^1.348^3^0.048^~1~^~AS~^^^1^1.259^1.423^2^1.142^1.553^~2, 3~^~04/01/2013~ -~21511~^~619~^0.155^3^0.008^~1~^~AS~^^^1^0.140^0.165^2^0.122^0.188^~2, 3~^~04/01/2013~ -~21511~^~620~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~04/01/2013~ -~21511~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~624~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~04/01/2013~ -~21511~^~625~^0.092^3^0.002^~1~^~A~^^^1^0.089^0.094^2^0.085^0.100^~2, 3~^~04/01/2013~ -~21511~^~626~^0.168^3^0.003^~1~^~AS~^^^1^0.163^0.171^2^0.157^0.180^~2, 3~^~04/01/2013~ -~21511~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~628~^0.027^3^0.000^~1~^~A~^^^1^0.027^0.028^2^0.026^0.029^~2, 3~^~04/01/2013~ -~21511~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~21511~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~21511~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~21511~^~645~^2.771^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~646~^1.547^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~652~^0.096^3^0.000^~1~^~A~^^^1^0.096^0.097^2^0.095^0.098^~2, 3~^~04/01/2013~ -~21511~^~653~^0.059^3^0.000^~1~^~A~^^^1^0.058^0.059^2^0.057^0.060^~2, 3~^~04/01/2013~ -~21511~^~654~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~21511~^~662~^0.030^3^0.000^~1~^~A~^^^1^0.029^0.030^2^0.028^0.031^~2, 3~^~04/01/2013~ -~21511~^~663~^0.190^3^0.001^~1~^~A~^^^1^0.188^0.193^2^0.184^0.197^~2, 3~^~04/01/2013~ -~21511~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~665~^0.072^3^0.004^~1~^~A~^^^1^0.064^0.079^2^0.053^0.090^~2, 3~^~04/01/2013~ -~21511~^~670~^0.042^3^0.001^~1~^~A~^^^1^0.041^0.044^2^0.039^0.046^~2, 3~^~04/01/2013~ -~21511~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~21511~^~673~^0.139^3^0.003^~1~^~A~^^^1^0.133^0.142^2^0.126^0.151^~2, 3~^~04/01/2013~ -~21511~^~674~^2.273^3^0.012^~1~^~A~^^^1^2.250^2.287^2^2.223^2.323^~2, 3~^~04/01/2013~ -~21511~^~675~^1.234^3^0.043^~1~^~A~^^^1^1.154^1.300^2^1.050^1.417^~2, 3~^~04/01/2013~ -~21511~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~21511~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~21511~^~687~^0.019^3^0.000^~1~^~A~^^^1^0.019^0.020^2^0.018^0.021^~2, 3~^~04/01/2013~ -~21511~^~689~^0.011^3^0.001^~1~^~AS~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~21511~^~693~^0.220^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~21511~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~851~^0.150^3^0.008^~1~^~A~^^^1^0.135^0.160^2^0.117^0.184^~2, 3~^~04/01/2013~ -~21511~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~21511~^~856~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~21511~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2013~ -~21512~^~312~^0.081^6^0.002^~1~^~A~^^^1^0.071^0.087^5^0.075^0.087^~2, 3~^~05/01/2013~ -~21512~^~315~^0.351^6^0.005^~1~^~A~^^^1^0.334^0.365^5^0.339^0.364^~2, 3~^~05/01/2013~ -~21512~^~404~^0.323^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.285^0.361^~2, 3~^~05/01/2013~ -~21512~^~405~^0.333^3^0.009^~1~^~A~^^^1^0.320^0.350^2^0.295^0.371^~2, 3~^~05/01/2013~ -~21512~^~406~^3.763^3^0.061^~1~^~A~^^^1^3.650^3.860^2^3.500^4.026^~2, 3~^~05/01/2013~ -~21512~^~410~^0.450^2^^~1~^~A~^^^1^0.430^0.470^1^^^^~05/01/2013~ -~21512~^~415~^0.119^3^0.001^~1~^~A~^^^1^0.118^0.122^2^0.114^0.125^~2, 3~^~05/01/2013~ -~21512~^~501~^0.124^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~502~^0.392^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~503~^0.573^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~504~^1.070^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~505~^0.593^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~506~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~508~^0.640^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~509~^0.401^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~510~^0.707^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~511~^0.440^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~512~^0.315^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~513~^0.382^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~514~^0.812^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~515~^3.393^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~516~^0.306^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~517~^1.739^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~518~^0.583^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~21512~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~21512~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~606~^5.825^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~607~^0.175^3^0.005^~1~^~A~^^^1^0.170^0.185^2^0.153^0.197^~2, 3~^~05/01/2013~ -~21512~^~608~^0.143^3^0.002^~1~^~A~^^^1^0.140^0.147^2^0.133^0.152^~2, 3~^~05/01/2013~ -~21512~^~609~^0.091^3^0.001^~1~^~A~^^^1^0.090^0.092^2^0.088^0.094^~2, 3~^~05/01/2013~ -~21512~^~610~^0.233^3^0.002^~1~^~A~^^^1^0.229^0.237^2^0.223^0.243^~2, 3~^~05/01/2013~ -~21512~^~611~^0.275^3^0.002^~1~^~A~^^^1^0.272^0.279^2^0.265^0.284^~2, 3~^~05/01/2013~ -~21512~^~612~^0.898^3^0.000^~1~^~A~^^^1^0.898^0.899^2^0.897^0.900^~2, 3~^~05/01/2013~ -~21512~^~613~^2.820^3^0.010^~1~^~A~^^^1^2.801^2.834^2^2.778^2.862^~2, 3~^~05/01/2013~ -~21512~^~614~^0.997^3^0.009^~1~^~A~^^^1^0.988^1.014^2^0.959^1.034^~2, 3~^~05/01/2013~ -~21512~^~615~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~05/01/2013~ -~21512~^~617~^2.463^3^0.012^~1~^~AS~^^^1^2.440^2.480^2^2.412^2.515^~2, 3~^~05/01/2013~ -~21512~^~618~^1.348^3^0.048^~1~^~AS~^^^1^1.259^1.423^2^1.142^1.553^~2, 3~^~05/01/2013~ -~21512~^~619~^0.155^3^0.008^~1~^~AS~^^^1^0.140^0.165^2^0.122^0.188^~2, 3~^~05/01/2013~ -~21512~^~620~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2013~ -~21512~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~624~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~05/01/2013~ -~21512~^~625~^0.092^3^0.002^~1~^~A~^^^1^0.089^0.094^2^0.085^0.100^~2, 3~^~05/01/2013~ -~21512~^~626~^0.168^3^0.003^~1~^~AS~^^^1^0.163^0.171^2^0.157^0.180^~2, 3~^~05/01/2013~ -~21512~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~628~^0.027^3^0.000^~1~^~A~^^^1^0.027^0.028^2^0.026^0.029^~2, 3~^~05/01/2013~ -~21512~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2013~ -~21512~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~05/01/2013~ -~21512~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~05/01/2013~ -~21512~^~645~^2.771^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~646~^1.547^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~652~^0.096^3^0.000^~1~^~A~^^^1^0.096^0.097^2^0.095^0.098^~2, 3~^~05/01/2013~ -~21512~^~653~^0.059^3^0.000^~1~^~A~^^^1^0.058^0.059^2^0.057^0.060^~2, 3~^~05/01/2013~ -~21512~^~654~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2013~ -~21512~^~662~^0.030^3^0.000^~1~^~A~^^^1^0.029^0.030^2^0.028^0.031^~2, 3~^~05/01/2013~ -~21512~^~663~^0.190^3^0.001^~1~^~A~^^^1^0.188^0.193^2^0.184^0.197^~2, 3~^~05/01/2013~ -~21512~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~665~^0.072^3^0.004^~1~^~A~^^^1^0.064^0.079^2^0.053^0.090^~2, 3~^~05/01/2013~ -~21512~^~670~^0.042^3^0.001^~1~^~A~^^^1^0.041^0.044^2^0.039^0.046^~2, 3~^~05/01/2013~ -~21512~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2013~ -~21512~^~673~^0.139^3^0.003^~1~^~A~^^^1^0.133^0.142^2^0.126^0.151^~2, 3~^~05/01/2013~ -~21512~^~674~^2.273^3^0.012^~1~^~A~^^^1^2.250^2.287^2^2.223^2.323^~2, 3~^~05/01/2013~ -~21512~^~675~^1.234^3^0.043^~1~^~A~^^^1^1.154^1.300^2^1.050^1.417^~2, 3~^~05/01/2013~ -~21512~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2013~ -~21512~^~685~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2013~ -~21512~^~687~^0.019^3^0.000^~1~^~A~^^^1^0.019^0.020^2^0.018^0.021^~2, 3~^~05/01/2013~ -~21512~^~689~^0.011^3^0.001^~1~^~AS~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2013~ -~21512~^~693~^0.220^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~21512~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~851~^0.150^3^0.008^~1~^~A~^^^1^0.135^0.160^2^0.117^0.184^~2, 3~^~05/01/2013~ -~21512~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2013~ -~21512~^~856~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2013~ -~21512~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2013~ -~21517~^~312~^0.069^4^0.002^~1~^~A~^^^1^0.065^0.075^3^0.062^0.076^~2, 3~^~05/01/2015~ -~21517~^~315~^0.269^4^0.013^~1~^~A~^^^1^0.238^0.300^3^0.228^0.311^~2, 3~^~05/01/2015~ -~21517~^~404~^0.170^2^^~1~^~A~^^^1^0.140^0.200^1^^^^~05/01/2015~ -~21517~^~405~^0.237^3^0.035^~1~^~A~^^^1^0.180^0.300^2^0.087^0.386^~2, 3~^~02/01/2016~ -~21517~^~406~^3.523^3^0.198^~1~^~A~^^^1^3.260^3.910^2^2.673^4.373^~2, 3~^~02/01/2016~ -~21517~^~415~^0.166^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21517~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~606~^3.837^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~607~^0.035^3^0.018^~1~^~A~^^^1^0.000^0.060^2^-0.043^0.113^~1, 2, 3~^~05/01/2015~ -~21517~^~608~^0.037^3^0.005^~1~^~A~^^^1^0.029^0.046^2^0.016^0.058^~2, 3~^~05/01/2015~ -~21517~^~609~^0.030^3^0.003^~1~^~A~^^^1^0.025^0.036^2^0.016^0.044^~2, 3~^~05/01/2015~ -~21517~^~610~^0.066^3^0.007^~1~^~A~^^^1^0.058^0.079^2^0.038^0.094^~2, 3~^~05/01/2015~ -~21517~^~611~^0.074^3^0.007^~1~^~A~^^^1^0.066^0.089^2^0.043^0.106^~2, 3~^~05/01/2015~ -~21517~^~612~^0.241^3^0.018^~1~^~A~^^^1^0.208^0.271^2^0.162^0.319^~2, 3~^~05/01/2015~ -~21517~^~613~^1.833^3^0.059^~1~^~A~^^^1^1.737^1.941^2^1.579^2.088^~2, 3~^~05/01/2015~ -~21517~^~614~^1.373^3^0.038^~1~^~A~^^^1^1.319^1.447^2^1.208^1.538^~2, 3~^~05/01/2015~ -~21517~^~615~^0.050^3^0.003^~1~^~A~^^^1^0.045^0.054^2^0.038^0.061^~2, 3~^~05/01/2015~ -~21517~^~617~^4.215^3^0.131^~1~^~AS~^^^1^4.050^4.474^2^3.650^4.779^~2, 3~^~05/01/2015~ -~21517~^~618~^4.380^3^0.148^~1~^~AS~^^^1^4.093^4.587^2^3.742^5.018^~2, 3~^~05/01/2015~ -~21517~^~619~^0.485^3^0.024^~1~^~AS~^^^1^0.439^0.521^2^0.381^0.590^~2, 3~^~05/01/2015~ -~21517~^~620~^0.028^3^0.002^~1~^~A~^^^1^0.023^0.030^2^0.018^0.037^~2, 3~^~05/01/2015~ -~21517~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21517~^~624~^0.033^3^0.002^~1~^~A~^^^1^0.029^0.036^2^0.024^0.041^~2, 3~^~05/01/2015~ -~21517~^~625~^0.023^3^0.002^~1~^~A~^^^1^0.019^0.025^2^0.015^0.031^~2, 3~^~05/01/2015~ -~21517~^~626~^0.071^3^0.003^~1~^~AS~^^^1^0.067^0.077^2^0.058^0.084^~2, 3~^~05/01/2015~ -~21517~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2015~ -~21517~^~628~^0.078^3^0.003^~1~^~A~^^^1^0.074^0.084^2^0.066^0.091^~2, 3~^~05/01/2015~ -~21517~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2015~ -~21517~^~630~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~05/01/2015~ -~21517~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21517~^~645~^4.407^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~646~^4.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~652~^0.026^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.016^0.036^~2, 3~^~05/01/2015~ -~21517~^~653~^0.024^3^0.001^~1~^~A~^^^1^0.022^0.026^2^0.018^0.029^~2, 3~^~05/01/2015~ -~21517~^~654~^0.016^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~05/01/2015~ -~21517~^~662~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.012^~2, 3~^~05/01/2015~ -~21517~^~663~^0.095^3^0.009^~1~^~A~^^^1^0.079^0.111^2^0.055^0.135^~2, 3~^~05/01/2015~ -~21517~^~664~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21517~^~665~^0.040^3^0.004^~1~^~A~^^^1^0.034^0.047^2^0.024^0.056^~2, 3~^~05/01/2015~ -~21517~^~670~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.013^0.025^~2, 3~^~05/01/2015~ -~21517~^~671~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21517~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21517~^~673~^0.064^3^0.002^~1~^~A~^^^1^0.062^0.068^2^0.056^0.072^~2, 3~^~05/01/2015~ -~21517~^~674~^4.120^3^0.133^~1~^~A~^^^1^3.939^4.379^2^3.547^4.692^~2, 3~^~05/01/2015~ -~21517~^~675~^4.321^3^0.146^~1~^~A~^^^1^4.036^4.518^2^3.693^4.949^~2, 3~^~05/01/2015~ -~21517~^~676~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~05/01/2015~ -~21517~^~685~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.031^~2, 3~^~05/01/2015~ -~21517~^~687~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~05/01/2015~ -~21517~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21517~^~693~^0.104^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21517~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21517~^~851~^0.458^3^0.025^~1~^~A~^^^1^0.410^0.493^2^0.351^0.564^~2, 3~^~05/01/2015~ -~21517~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21517~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21517~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21517~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.003^0.011^~2, 3~^~05/01/2015~ -~21518~^~312~^0.062^6^0.002^~1~^~A~^^^1^0.054^0.067^5^0.057^0.067^~2, 3~^~05/01/2015~ -~21518~^~315~^0.209^6^0.007^~1~^~A~^^^1^0.188^0.237^5^0.191^0.226^~2, 3~^~05/01/2015~ -~21518~^~404~^0.170^2^^~1~^~A~^^^1^0.140^0.200^1^^^^~05/01/2015~ -~21518~^~405~^0.233^3^0.026^~1~^~A~^^^1^0.190^0.280^2^0.121^0.345^~2, 3~^~02/01/2016~ -~21518~^~406~^5.333^3^0.859^~1~^~A~^^^1^4.250^7.030^2^1.637^9.030^~2, 3~^~02/01/2016~ -~21518~^~410~^0.590^2^^~1~^~A~^^^1^0.560^0.620^1^^^^~05/01/2015~ -~21518~^~415~^0.194^2^^~1~^~A~^^^1^0.168^0.220^1^^^^~05/01/2015~ -~21518~^~605~^0.130^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~606~^3.363^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~607~^0.057^3^0.006^~1~^~A~^^^1^0.045^0.064^2^0.031^0.083^~2, 3~^~05/01/2015~ -~21518~^~608~^0.045^3^0.005^~1~^~A~^^^1^0.035^0.051^2^0.023^0.066^~2, 3~^~05/01/2015~ -~21518~^~609~^0.029^3^0.004^~1~^~A~^^^1^0.022^0.034^2^0.013^0.045^~2, 3~^~05/01/2015~ -~21518~^~610~^0.073^3^0.007^~1~^~A~^^^1^0.059^0.082^2^0.042^0.104^~2, 3~^~05/01/2015~ -~21518~^~611~^0.083^3^0.010^~1~^~A~^^^1^0.063^0.096^2^0.039^0.127^~2, 3~^~05/01/2015~ -~21518~^~612~^0.251^3^0.027^~1~^~A~^^^1^0.197^0.287^2^0.133^0.369^~2, 3~^~05/01/2015~ -~21518~^~613~^1.552^3^0.118^~1~^~A~^^^1^1.318^1.687^2^1.046^2.058^~2, 3~^~05/01/2015~ -~21518~^~614~^1.166^3^0.072^~1~^~A~^^^1^1.024^1.260^2^0.855^1.477^~2, 3~^~05/01/2015~ -~21518~^~615~^0.026^3^0.002^~1~^~A~^^^1^0.022^0.028^2^0.018^0.034^~2, 3~^~05/01/2015~ -~21518~^~617~^2.157^3^0.143^~1~^~AS~^^^1^1.878^2.352^2^1.541^2.773^~2, 3~^~05/01/2015~ -~21518~^~618~^2.963^3^0.252^~1~^~AS~^^^1^2.459^3.233^2^1.878^4.047^~2, 3~^~05/01/2015~ -~21518~^~619~^0.383^3^0.039^~1~^~AS~^^^1^0.306^0.423^2^0.217^0.550^~2, 3~^~05/01/2015~ -~21518~^~620~^0.034^3^0.004^~1~^~A~^^^1^0.028^0.042^2^0.016^0.052^~2, 3~^~05/01/2015~ -~21518~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21518~^~624~^0.023^3^0.002^~1~^~A~^^^1^0.019^0.025^2^0.014^0.032^~2, 3~^~05/01/2015~ -~21518~^~625~^0.025^3^0.003^~1~^~A~^^^1^0.019^0.029^2^0.012^0.037^~2, 3~^~05/01/2015~ -~21518~^~626~^0.078^3^0.007^~1~^~AS~^^^1^0.064^0.086^2^0.048^0.108^~2, 3~^~05/01/2015~ -~21518~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~628~^0.040^3^0.003^~1~^~A~^^^1^0.037^0.045^2^0.029^0.051^~2, 3~^~05/01/2015~ -~21518~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21518~^~630~^0.005^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2015~ -~21518~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21518~^~645~^2.313^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~646~^3.415^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~652~^0.028^3^0.003^~1~^~A~^^^1^0.022^0.032^2^0.015^0.041^~2, 3~^~05/01/2015~ -~21518~^~653~^0.022^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.013^0.031^~2, 3~^~05/01/2015~ -~21518~^~654~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~05/01/2015~ -~21518~^~662~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~05/01/2015~ -~21518~^~663~^0.085^3^0.001^~1~^~A~^^^1^0.083^0.088^2^0.079^0.092^~2, 3~^~05/01/2015~ -~21518~^~664~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~665~^0.035^3^0.005^~1~^~A~^^^1^0.030^0.045^2^0.014^0.056^~2, 3~^~05/01/2015~ -~21518~^~670~^0.017^3^0.001^~1~^~A~^^^1^0.014^0.019^2^0.010^0.023^~2, 3~^~05/01/2015~ -~21518~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2015~ -~21518~^~673~^0.071^3^0.006^~1~^~A~^^^1^0.058^0.078^2^0.043^0.098^~2, 3~^~05/01/2015~ -~21518~^~674~^2.072^3^0.142^~1~^~A~^^^1^1.795^2.264^2^1.461^2.682^~2, 3~^~05/01/2015~ -~21518~^~675~^2.911^3^0.248^~1~^~A~^^^1^2.415^3.169^2^1.844^3.977^~2, 3~^~05/01/2015~ -~21518~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21518~^~685~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~05/01/2015~ -~21518~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21518~^~689~^0.009^3^0.001^~1~^~AS~^^^1^0.008^0.010^2^0.007^0.012^~2, 3~^~05/01/2015~ -~21518~^~693~^0.095^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21518~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~851~^0.364^3^0.038^~1~^~A~^^^1^0.288^0.404^2^0.200^0.528^~2, 3~^~05/01/2015~ -~21518~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21518~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~05/01/2015~ -~21518~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21518~^~858~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21519~^~312~^0.075^6^0.001^~1~^~A~^^^1^0.072^0.079^5^0.072^0.078^~2, 3~^~05/01/2015~ -~21519~^~315~^0.218^6^0.004^~1~^~A~^^^1^0.204^0.232^5^0.207^0.229^~2, 3~^~05/01/2015~ -~21519~^~404~^0.210^3^0.020^~1~^~A~^^^1^0.190^0.250^2^0.124^0.296^~2, 3~^~05/01/2015~ -~21519~^~405~^0.417^3^0.023^~1~^~A~^^^1^0.380^0.460^2^0.316^0.517^~2, 3~^~05/01/2015~ -~21519~^~406~^2.133^3^0.310^~1~^~A~^^^1^1.720^2.740^2^0.800^3.467^~2, 3~^~05/01/2015~ -~21519~^~410~^0.665^2^^~1~^~A~^^^1^0.610^0.720^1^^^^~05/01/2015~ -~21519~^~415~^0.102^3^0.003^~1~^~A~^^^1^0.097^0.108^2^0.088^0.116^~2, 3~^~05/01/2015~ -~21519~^~501~^0.126^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~502~^0.408^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~503~^0.461^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~504~^0.901^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~505~^0.785^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~506~^0.262^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~507~^0.209^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~508~^0.576^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~509~^0.398^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~510~^0.524^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~511~^0.586^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~512~^0.272^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~513~^0.471^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~514~^0.817^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~515~^2.356^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~516~^0.408^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~517~^1.016^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~521~^0.040^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21519~^~605~^0.201^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~606~^6.404^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~607~^0.083^3^0.005^~1~^~A~^^^1^0.074^0.090^2^0.063^0.104^~2, 3~^~05/01/2015~ -~21519~^~608~^0.065^3^0.005^~1~^~A~^^^1^0.056^0.071^2^0.045^0.085^~2, 3~^~05/01/2015~ -~21519~^~609~^0.066^3^0.004^~1~^~A~^^^1^0.058^0.072^2^0.048^0.085^~2, 3~^~05/01/2015~ -~21519~^~610~^0.120^3^0.007^~1~^~A~^^^1^0.107^0.127^2^0.092^0.148^~2, 3~^~05/01/2015~ -~21519~^~611~^0.121^3^0.009^~1~^~A~^^^1^0.103^0.131^2^0.082^0.161^~2, 3~^~05/01/2015~ -~21519~^~612~^0.441^3^0.027^~1~^~A~^^^1^0.387^0.470^2^0.325^0.557^~2, 3~^~05/01/2015~ -~21519~^~613~^3.333^3^0.149^~1~^~A~^^^1^3.036^3.495^2^2.693^3.974^~2, 3~^~05/01/2015~ -~21519~^~614~^2.030^3^0.090^~1~^~A~^^^1^1.854^2.149^2^1.644^2.415^~2, 3~^~05/01/2015~ -~21519~^~615~^0.029^3^0.001^~1~^~A~^^^1^0.027^0.030^2^0.025^0.033^~2, 3~^~05/01/2015~ -~21519~^~617~^4.678^3^0.216^~1~^~AS~^^^1^4.246^4.900^2^3.749^5.607^~2, 3~^~05/01/2015~ -~21519~^~618~^2.929^3^0.103^~1~^~AS~^^^1^2.739^3.094^2^2.484^3.373^~2, 3~^~05/01/2015~ -~21519~^~619~^0.245^3^0.010^~1~^~AS~^^^1^0.230^0.265^2^0.200^0.290^~2, 3~^~05/01/2015~ -~21519~^~620~^0.085^3^0.002^~1~^~A~^^^1^0.082^0.090^2^0.075^0.096^~2, 3~^~05/01/2015~ -~21519~^~621~^0.019^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~05/01/2015~ -~21519~^~624~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~05/01/2015~ -~21519~^~625~^0.038^3^0.002^~1~^~A~^^^1^0.035^0.040^2^0.031^0.044^~2, 3~^~05/01/2015~ -~21519~^~626~^0.250^3^0.014^~1~^~AS~^^^1^0.223^0.265^2^0.192^0.308^~2, 3~^~05/01/2015~ -~21519~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21519~^~628~^0.082^3^0.005^~1~^~A~^^^1^0.072^0.087^2^0.060^0.103^~2, 3~^~05/01/2015~ -~21519~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21519~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2015~ -~21519~^~631~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~05/01/2015~ -~21519~^~645~^5.073^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~646~^3.366^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~652~^0.045^3^0.003^~1~^~A~^^^1^0.040^0.048^2^0.034^0.056^~2, 3~^~05/01/2015~ -~21519~^~653~^0.045^3^0.002^~1~^~A~^^^1^0.042^0.047^2^0.038^0.052^~2, 3~^~05/01/2015~ -~21519~^~654~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~05/01/2015~ -~21519~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.010^0.015^2^0.006^0.019^~2, 3~^~05/01/2015~ -~21519~^~663~^0.142^3^0.002^~1~^~A~^^^1^0.138^0.146^2^0.132^0.152^~2, 3~^~05/01/2015~ -~21519~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21519~^~665~^0.045^3^0.004^~1~^~A~^^^1^0.040^0.052^2^0.029^0.061^~2, 3~^~05/01/2015~ -~21519~^~670~^0.031^3^0.002^~1~^~A~^^^1^0.028^0.034^2^0.024^0.038^~2, 3~^~05/01/2015~ -~21519~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21519~^~672~^0.040^3^0.005^~1~^~A~^^^1^0.031^0.046^2^0.020^0.061^~2, 3~^~05/01/2015~ -~21519~^~673~^0.237^3^0.012^~1~^~A~^^^1^0.213^0.250^2^0.185^0.290^~2, 3~^~05/01/2015~ -~21519~^~674~^4.536^3^0.216^~1~^~A~^^^1^4.105^4.754^2^3.608^5.464^~2, 3~^~05/01/2015~ -~21519~^~675~^2.853^3^0.099^~1~^~A~^^^1^2.668^3.008^2^2.426^3.280^~2, 3~^~05/01/2015~ -~21519~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~05/01/2015~ -~21519~^~685~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~05/01/2015~ -~21519~^~687~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.015^0.026^~2, 3~^~05/01/2015~ -~21519~^~689~^0.022^3^0.001^~1~^~AS~^^^1^0.020^0.024^2^0.017^0.028^~2, 3~^~05/01/2015~ -~21519~^~693~^0.155^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21519~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21519~^~851~^0.230^3^0.011^~1~^~A~^^^1^0.214^0.250^2^0.184^0.276^~2, 3~^~05/01/2015~ -~21519~^~852~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~05/01/2015~ -~21519~^~853~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~05/01/2015~ -~21519~^~856~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21519~^~858~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.018^~2, 3~^~05/01/2015~ -~21520~^~312~^0.107^3^0.003^~1~^~A~^^^1^0.102^0.111^2^0.095^0.119^~2, 3~^~06/01/2015~ -~21520~^~315~^0.488^3^0.015^~1~^~A~^^^1^0.470^0.519^2^0.422^0.555^~2, 3~^~06/01/2015~ -~21520~^~404~^0.493^3^0.158^~1~^~A~^^^1^0.180^0.690^2^-0.188^1.175^~2, 3~^~06/01/2015~ -~21520~^~405~^0.560^3^0.006^~1~^~A~^^^1^0.550^0.570^2^0.535^0.585^~2, 3~^~06/01/2015~ -~21520~^~406~^7.080^3^0.423^~1~^~A~^^^1^6.390^7.850^2^5.258^8.901^~2, 3~^~06/01/2015~ -~21520~^~410~^0.390^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21520~^~415~^0.103^2^^~1~^~A~^^^1^0.090^0.116^1^^^^~06/01/2015~ -~21520~^~605~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~606~^2.966^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~607~^0.038^3^0.020^~1~^~A~^^^1^0.000^0.070^2^-0.050^0.125^~1, 2, 3~^~06/01/2015~ -~21520~^~608~^0.028^3^0.016^~1~^~A~^^^1^0.000^0.057^2^-0.042^0.099^~1, 2, 3~^~06/01/2015~ -~21520~^~609~^0.016^3^0.007^~1~^~A~^^^1^0.004^0.028^2^-0.014^0.046^~2, 3~^~06/01/2015~ -~21520~^~610~^0.042^3^0.023^~1~^~A~^^^1^0.000^0.079^2^-0.057^0.141^~1, 2, 3~^~06/01/2015~ -~21520~^~611~^0.061^3^0.026^~1~^~A~^^^1^0.015^0.104^2^-0.050^0.172^~2, 3~^~06/01/2015~ -~21520~^~612~^0.221^3^0.087^~1~^~A~^^^1^0.060^0.360^2^-0.155^0.597^~2, 3~^~06/01/2015~ -~21520~^~613~^1.777^3^0.139^~1~^~A~^^^1^1.529^2.011^2^1.178^2.377^~2, 3~^~06/01/2015~ -~21520~^~614~^0.666^3^0.028^~1~^~A~^^^1^0.612^0.704^2^0.547^0.785^~2, 3~^~06/01/2015~ -~21520~^~615~^0.032^3^0.004^~1~^~A~^^^1^0.025^0.037^2^0.016^0.047^~2, 3~^~06/01/2015~ -~21520~^~617~^2.626^3^0.182^~1~^~AS~^^^1^2.264^2.843^2^1.842^3.410^~2, 3~^~06/01/2015~ -~21520~^~618~^5.410^3^0.875^~1~^~AS~^^^1^3.685^6.524^2^1.647^9.174^~2, 3~^~06/01/2015~ -~21520~^~619~^0.724^3^0.121^~1~^~AS~^^^1^0.483^0.853^2^0.205^1.243^~2, 3~^~06/01/2015~ -~21520~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~06/01/2015~ -~21520~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~624~^0.022^3^0.012^~1~^~A~^^^1^0.000^0.042^2^-0.030^0.074^~1, 2, 3~^~06/01/2015~ -~21520~^~625~^0.021^3^0.007^~1~^~A~^^^1^0.008^0.031^2^-0.008^0.051^~2, 3~^~06/01/2015~ -~21520~^~626~^0.067^3^0.013^~1~^~AS~^^^1^0.043^0.086^2^0.013^0.122^~2, 3~^~06/01/2015~ -~21520~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~628~^0.053^3^0.006^~1~^~A~^^^1^0.042^0.064^2^0.025^0.080^~2, 3~^~06/01/2015~ -~21520~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~21520~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.004^2^-0.003^0.007^~2, 3~^~06/01/2015~ -~21520~^~631~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~06/01/2015~ -~21520~^~645~^2.778^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~646~^6.160^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~652~^0.025^3^0.008^~1~^~A~^^^1^0.010^0.036^2^-0.009^0.059^~2, 3~^~06/01/2015~ -~21520~^~653~^0.023^3^0.004^~1~^~A~^^^1^0.016^0.028^2^0.007^0.039^~2, 3~^~06/01/2015~ -~21520~^~654~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.023^~2, 3~^~06/01/2015~ -~21520~^~662~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.011^2^-0.001^0.016^~2, 3~^~06/01/2015~ -~21520~^~663~^0.054^3^0.020^~1~^~A~^^^1^0.021^0.091^2^-0.033^0.141^~2, 3~^~06/01/2015~ -~21520~^~664~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21520~^~665~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.033^2^0.024^0.036^~2, 3~^~06/01/2015~ -~21520~^~670~^0.018^3^0.003^~1~^~A~^^^1^0.012^0.024^2^0.003^0.033^~2, 3~^~06/01/2015~ -~21520~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~21520~^~673~^0.060^3^0.011^~1~^~A~^^^1^0.039^0.075^2^0.013^0.106^~2, 3~^~06/01/2015~ -~21520~^~674~^2.572^3^0.200^~1~^~A~^^^1^2.173^2.793^2^1.712^3.432^~2, 3~^~06/01/2015~ -~21520~^~675~^5.362^3^0.877^~1~^~A~^^^1^3.633^6.482^2^1.588^9.136^~2, 3~^~06/01/2015~ -~21520~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21520~^~685~^0.028^3^0.004^~1~^~A~^^^1^0.022^0.034^2^0.013^0.043^~2, 3~^~06/01/2015~ -~21520~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~06/01/2015~ -~21520~^~689~^0.003^3^0.002^~1~^~AS~^^^1^0.000^0.006^2^-0.004^0.011^~2, 3~^~06/01/2015~ -~21520~^~693~^0.063^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21520~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~851~^0.696^3^0.117^~1~^~A~^^^1^0.461^0.819^2^0.190^1.201^~2, 3~^~06/01/2015~ -~21520~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~853~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.011^~1, 2, 3~^~06/01/2015~ -~21520~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21520~^~858~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21521~^~312~^0.038^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~315~^0.212^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~404~^0.023^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~405~^0.028^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~406~^0.217^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~415~^0.108^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~21521~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~617~^0.042^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~618~^0.033^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~619~^0.019^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~626~^0.007^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~645~^0.049^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21521~^~646~^0.052^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~21522~^~312~^0.060^3^0.008^~1~^~A~^^^1^0.051^0.075^2^0.027^0.092^~2, 3~^~05/01/2015~ -~21522~^~315~^0.241^3^0.009^~1~^~A~^^^1^0.224^0.255^2^0.202^0.280^~2, 3~^~05/01/2015~ -~21522~^~404~^0.250^2^^~1~^~A~^^^1^0.240^0.260^1^^^^~05/01/2015~ -~21522~^~405~^0.260^3^0.017^~1~^~A~^^^1^0.230^0.290^2^0.186^0.334^~2, 3~^~02/01/2016~ -~21522~^~406~^4.797^3^0.237^~1~^~A~^^^1^4.330^5.100^2^3.778^5.816^~2, 3~^~02/01/2016~ -~21522~^~415~^0.207^2^^~1~^~A~^^^1^0.207^0.207^^^^^~05/01/2015~ -~21522~^~605~^0.070^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~606~^5.712^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~607~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.006^0.016^~1, 2, 3~^~05/01/2015~ -~21522~^~608~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~05/01/2015~ -~21522~^~609~^0.056^3^0.002^~1~^~A~^^^1^0.052^0.060^2^0.046^0.066^~2, 3~^~05/01/2015~ -~21522~^~610~^0.053^3^0.006^~1~^~A~^^^1^0.047^0.065^2^0.028^0.078^~2, 3~^~05/01/2015~ -~21522~^~611~^0.658^3^0.045^~1~^~A~^^^1^0.602^0.746^2^0.466^0.850^~2, 3~^~05/01/2015~ -~21522~^~612~^0.295^3^0.015^~1~^~A~^^^1^0.276^0.325^2^0.229^0.360^~2, 3~^~05/01/2015~ -~21522~^~613~^3.823^3^0.030^~1~^~A~^^^1^3.780^3.882^2^3.692^3.954^~2, 3~^~05/01/2015~ -~21522~^~614~^0.702^3^0.032^~1~^~A~^^^1^0.647^0.758^2^0.564^0.840^~2, 3~^~05/01/2015~ -~21522~^~615~^0.057^3^0.003^~1~^~A~^^^1^0.052^0.062^2^0.044^0.069^~2, 3~^~05/01/2015~ -~21522~^~617~^5.326^3^0.266^~1~^~AS~^^^1^4.964^5.845^2^4.181^6.471^~2, 3~^~05/01/2015~ -~21522~^~618~^3.037^3^0.243^~1~^~AS~^^^1^2.629^3.470^2^1.991^4.083^~2, 3~^~05/01/2015~ -~21522~^~619~^0.215^3^0.029^~1~^~AS~^^^1^0.183^0.274^2^0.089^0.342^~2, 3~^~05/01/2015~ -~21522~^~620~^0.027^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.017^0.036^~2, 3~^~05/01/2015~ -~21522~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21522~^~624~^0.025^3^0.002^~1~^~A~^^^1^0.023^0.028^2^0.018^0.032^~2, 3~^~05/01/2015~ -~21522~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21522~^~626~^0.043^3^0.001^~1~^~AS~^^^1^0.041^0.044^2^0.039^0.047^~2, 3~^~05/01/2015~ -~21522~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~628~^0.070^3^0.006^~1~^~A~^^^1^0.060^0.081^2^0.044^0.097^~2, 3~^~05/01/2015~ -~21522~^~629~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2015~ -~21522~^~630~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~05/01/2015~ -~21522~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21522~^~645~^5.455^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~646~^3.308^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~652~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~05/01/2015~ -~21522~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~05/01/2015~ -~21522~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~05/01/2015~ -~21522~^~662~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2015~ -~21522~^~663~^0.039^3^0.010^~1~^~A~^^^1^0.029^0.060^2^-0.005^0.084^~2, 3~^~05/01/2015~ -~21522~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21522~^~665~^0.029^3^0.006^~1~^~A~^^^1^0.021^0.040^2^0.004^0.053^~2, 3~^~05/01/2015~ -~21522~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~05/01/2015~ -~21522~^~671~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2015~ -~21522~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~05/01/2015~ -~21522~^~673~^0.041^3^0.001^~1~^~A~^^^1^0.040^0.043^2^0.037^0.045^~2, 3~^~05/01/2015~ -~21522~^~674~^5.287^3^0.269^~1~^~A~^^^1^4.935^5.816^2^4.128^6.446^~2, 3~^~05/01/2015~ -~21522~^~675~^2.999^3^0.241^~1~^~A~^^^1^2.600^3.434^2^1.960^4.038^~2, 3~^~05/01/2015~ -~21522~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~05/01/2015~ -~21522~^~685~^0.015^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.007^0.023^~2, 3~^~05/01/2015~ -~21522~^~687~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~05/01/2015~ -~21522~^~689~^0.005^3^0.000^~1~^~AS~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21522~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21522~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~851~^0.201^3^0.028^~1~^~A~^^^1^0.172^0.257^2^0.079^0.322^~2, 3~^~05/01/2015~ -~21522~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~853~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2015~ -~21522~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21522~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~05/01/2015~ -~21523~^~312~^0.069^4^0.002^~1~^~A~^^^1^0.065^0.075^3^0.062^0.076^~2, 3~^~05/01/2015~ -~21523~^~315~^0.269^4^0.013^~1~^~A~^^^1^0.238^0.300^3^0.228^0.311^~2, 3~^~05/01/2015~ -~21523~^~404~^0.170^2^^~1~^~A~^^^1^0.140^0.200^1^^^^~05/01/2015~ -~21523~^~405~^0.237^3^0.035^~1~^~A~^^^1^0.180^0.300^2^0.087^0.386^~2, 3~^~02/01/2016~ -~21523~^~406~^3.523^3^0.198^~1~^~A~^^^1^3.260^3.910^2^2.673^4.373^~2, 3~^~02/01/2016~ -~21523~^~415~^0.166^1^^~1~^~A~^^^^^^^^^^~05/01/2015~ -~21523~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~606~^3.837^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~607~^0.035^3^0.018^~1~^~A~^^^1^0.000^0.060^2^-0.043^0.113^~1, 2, 3~^~05/01/2015~ -~21523~^~608~^0.037^3^0.005^~1~^~A~^^^1^0.029^0.046^2^0.016^0.058^~2, 3~^~05/01/2015~ -~21523~^~609~^0.030^3^0.003^~1~^~A~^^^1^0.025^0.036^2^0.016^0.044^~2, 3~^~05/01/2015~ -~21523~^~610~^0.066^3^0.007^~1~^~A~^^^1^0.058^0.079^2^0.038^0.094^~2, 3~^~05/01/2015~ -~21523~^~611~^0.074^3^0.007^~1~^~A~^^^1^0.066^0.089^2^0.043^0.106^~2, 3~^~05/01/2015~ -~21523~^~612~^0.241^3^0.018^~1~^~A~^^^1^0.208^0.271^2^0.162^0.319^~2, 3~^~05/01/2015~ -~21523~^~613~^1.833^3^0.059^~1~^~A~^^^1^1.737^1.941^2^1.579^2.088^~2, 3~^~05/01/2015~ -~21523~^~614~^1.373^3^0.038^~1~^~A~^^^1^1.319^1.447^2^1.208^1.538^~2, 3~^~05/01/2015~ -~21523~^~615~^0.050^3^0.003^~1~^~A~^^^1^0.045^0.054^2^0.038^0.061^~2, 3~^~05/01/2015~ -~21523~^~617~^4.215^3^0.131^~1~^~AS~^^^1^4.050^4.474^2^3.650^4.779^~2, 3~^~05/01/2015~ -~21523~^~618~^4.380^3^0.148^~1~^~AS~^^^1^4.093^4.587^2^3.742^5.018^~2, 3~^~05/01/2015~ -~21523~^~619~^0.485^3^0.024^~1~^~AS~^^^1^0.439^0.521^2^0.381^0.590^~2, 3~^~05/01/2015~ -~21523~^~620~^0.028^3^0.002^~1~^~A~^^^1^0.023^0.030^2^0.018^0.037^~2, 3~^~05/01/2015~ -~21523~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2015~ -~21523~^~624~^0.033^3^0.002^~1~^~A~^^^1^0.029^0.036^2^0.024^0.041^~2, 3~^~05/01/2015~ -~21523~^~625~^0.023^3^0.002^~1~^~A~^^^1^0.019^0.025^2^0.015^0.031^~2, 3~^~05/01/2015~ -~21523~^~626~^0.071^3^0.003^~1~^~AS~^^^1^0.067^0.077^2^0.058^0.084^~2, 3~^~05/01/2015~ -~21523~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2015~ -~21523~^~628~^0.078^3^0.003^~1~^~A~^^^1^0.074^0.084^2^0.066^0.091^~2, 3~^~05/01/2015~ -~21523~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2015~ -~21523~^~630~^0.005^3^0.001^~1~^~AS~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~05/01/2015~ -~21523~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2015~ -~21523~^~645~^4.407^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~646~^4.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~652~^0.026^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.016^0.036^~2, 3~^~05/01/2015~ -~21523~^~653~^0.024^3^0.001^~1~^~A~^^^1^0.022^0.026^2^0.018^0.029^~2, 3~^~05/01/2015~ -~21523~^~654~^0.016^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~05/01/2015~ -~21523~^~662~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.012^~2, 3~^~05/01/2015~ -~21523~^~663~^0.095^3^0.009^~1~^~A~^^^1^0.079^0.111^2^0.055^0.135^~2, 3~^~05/01/2015~ -~21523~^~664~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21523~^~665~^0.040^3^0.004^~1~^~A~^^^1^0.034^0.047^2^0.024^0.056^~2, 3~^~05/01/2015~ -~21523~^~670~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.013^0.025^~2, 3~^~05/01/2015~ -~21523~^~671~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21523~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21523~^~673~^0.064^3^0.002^~1~^~A~^^^1^0.062^0.068^2^0.056^0.072^~2, 3~^~05/01/2015~ -~21523~^~674~^4.120^3^0.133^~1~^~A~^^^1^3.939^4.379^2^3.547^4.692^~2, 3~^~05/01/2015~ -~21523~^~675~^4.321^3^0.146^~1~^~A~^^^1^4.036^4.518^2^3.693^4.949^~2, 3~^~05/01/2015~ -~21523~^~676~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~05/01/2015~ -~21523~^~685~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.031^~2, 3~^~05/01/2015~ -~21523~^~687~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~05/01/2015~ -~21523~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21523~^~693~^0.104^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21523~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21523~^~851~^0.458^3^0.025^~1~^~A~^^^1^0.410^0.493^2^0.351^0.564^~2, 3~^~05/01/2015~ -~21523~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21523~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2015~ -~21523~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21523~^~858~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.003^0.011^~2, 3~^~05/01/2015~ -~21524~^~312~^0.062^6^0.002^~1~^~A~^^^1^0.054^0.067^5^0.057^0.067^~2, 3~^~05/01/2015~ -~21524~^~315~^0.209^6^0.007^~1~^~A~^^^1^0.188^0.237^5^0.191^0.226^~2, 3~^~05/01/2015~ -~21524~^~404~^0.170^2^^~1~^~A~^^^1^0.140^0.200^1^^^^~05/01/2015~ -~21524~^~405~^0.233^3^0.026^~1~^~A~^^^1^0.190^0.280^2^0.121^0.345^~2, 3~^~02/01/2016~ -~21524~^~406~^5.333^3^0.859^~1~^~A~^^^1^4.250^7.030^2^1.637^9.030^~2, 3~^~02/01/2016~ -~21524~^~410~^0.590^2^^~1~^~A~^^^1^0.560^0.620^1^^^^~05/01/2015~ -~21524~^~415~^0.194^2^^~1~^~A~^^^1^0.168^0.220^1^^^^~05/01/2015~ -~21524~^~605~^0.130^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~606~^3.363^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~607~^0.057^3^0.006^~1~^~A~^^^1^0.045^0.064^2^0.031^0.083^~2, 3~^~05/01/2015~ -~21524~^~608~^0.045^3^0.005^~1~^~A~^^^1^0.035^0.051^2^0.023^0.066^~2, 3~^~05/01/2015~ -~21524~^~609~^0.029^3^0.004^~1~^~A~^^^1^0.022^0.034^2^0.013^0.045^~2, 3~^~05/01/2015~ -~21524~^~610~^0.073^3^0.007^~1~^~A~^^^1^0.059^0.082^2^0.042^0.104^~2, 3~^~05/01/2015~ -~21524~^~611~^0.083^3^0.010^~1~^~A~^^^1^0.063^0.096^2^0.039^0.127^~2, 3~^~05/01/2015~ -~21524~^~612~^0.251^3^0.027^~1~^~A~^^^1^0.197^0.287^2^0.133^0.369^~2, 3~^~05/01/2015~ -~21524~^~613~^1.552^3^0.118^~1~^~A~^^^1^1.318^1.687^2^1.046^2.058^~2, 3~^~05/01/2015~ -~21524~^~614~^1.166^3^0.072^~1~^~A~^^^1^1.024^1.260^2^0.855^1.477^~2, 3~^~05/01/2015~ -~21524~^~615~^0.026^3^0.002^~1~^~A~^^^1^0.022^0.028^2^0.018^0.034^~2, 3~^~05/01/2015~ -~21524~^~617~^2.157^3^0.143^~1~^~AS~^^^1^1.878^2.352^2^1.541^2.773^~2, 3~^~05/01/2015~ -~21524~^~618~^2.963^3^0.252^~1~^~AS~^^^1^2.459^3.233^2^1.878^4.047^~2, 3~^~05/01/2015~ -~21524~^~619~^0.383^3^0.039^~1~^~AS~^^^1^0.306^0.423^2^0.217^0.550^~2, 3~^~05/01/2015~ -~21524~^~620~^0.034^3^0.004^~1~^~A~^^^1^0.028^0.042^2^0.016^0.052^~2, 3~^~05/01/2015~ -~21524~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21524~^~624~^0.023^3^0.002^~1~^~A~^^^1^0.019^0.025^2^0.014^0.032^~2, 3~^~05/01/2015~ -~21524~^~625~^0.025^3^0.003^~1~^~A~^^^1^0.019^0.029^2^0.012^0.037^~2, 3~^~05/01/2015~ -~21524~^~626~^0.078^3^0.007^~1~^~AS~^^^1^0.064^0.086^2^0.048^0.108^~2, 3~^~05/01/2015~ -~21524~^~627~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~628~^0.040^3^0.003^~1~^~A~^^^1^0.037^0.045^2^0.029^0.051^~2, 3~^~05/01/2015~ -~21524~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21524~^~630~^0.005^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2015~ -~21524~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~05/01/2015~ -~21524~^~645~^2.313^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~646~^3.415^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~652~^0.028^3^0.003^~1~^~A~^^^1^0.022^0.032^2^0.015^0.041^~2, 3~^~05/01/2015~ -~21524~^~653~^0.022^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.013^0.031^~2, 3~^~05/01/2015~ -~21524~^~654~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~05/01/2015~ -~21524~^~662~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~05/01/2015~ -~21524~^~663~^0.085^3^0.001^~1~^~A~^^^1^0.083^0.088^2^0.079^0.092^~2, 3~^~05/01/2015~ -~21524~^~664~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~665~^0.035^3^0.005^~1~^~A~^^^1^0.030^0.045^2^0.014^0.056^~2, 3~^~05/01/2015~ -~21524~^~670~^0.017^3^0.001^~1~^~A~^^^1^0.014^0.019^2^0.010^0.023^~2, 3~^~05/01/2015~ -~21524~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2015~ -~21524~^~673~^0.071^3^0.006^~1~^~A~^^^1^0.058^0.078^2^0.043^0.098^~2, 3~^~05/01/2015~ -~21524~^~674~^2.072^3^0.142^~1~^~A~^^^1^1.795^2.264^2^1.461^2.682^~2, 3~^~05/01/2015~ -~21524~^~675~^2.911^3^0.248^~1~^~A~^^^1^2.415^3.169^2^1.844^3.977^~2, 3~^~05/01/2015~ -~21524~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~05/01/2015~ -~21524~^~685~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~05/01/2015~ -~21524~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21524~^~689~^0.009^3^0.001^~1~^~AS~^^^1^0.008^0.010^2^0.007^0.012^~2, 3~^~05/01/2015~ -~21524~^~693~^0.095^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~21524~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~851~^0.364^3^0.038^~1~^~A~^^^1^0.288^0.404^2^0.200^0.528^~2, 3~^~05/01/2015~ -~21524~^~852~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2015~ -~21524~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~05/01/2015~ -~21524~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2015~ -~21524~^~858~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~05/01/2015~ -~21525~^~312~^0.107^3^0.003^~1~^~A~^^^1^0.102^0.111^2^0.095^0.119^~2, 3~^~06/01/2015~ -~21525~^~315~^0.488^3^0.015^~1~^~A~^^^1^0.470^0.519^2^0.422^0.555^~2, 3~^~06/01/2015~ -~21525~^~404~^0.493^3^0.158^~1~^~A~^^^1^0.180^0.690^2^-0.188^1.175^~2, 3~^~06/01/2015~ -~21525~^~405~^0.560^3^0.006^~1~^~A~^^^1^0.550^0.570^2^0.535^0.585^~2, 3~^~06/01/2015~ -~21525~^~406~^7.080^3^0.423^~1~^~A~^^^1^6.390^7.850^2^5.258^8.901^~2, 3~^~06/01/2015~ -~21525~^~410~^0.390^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21525~^~415~^0.103^2^^~1~^~A~^^^1^0.090^0.116^1^^^^~06/01/2015~ -~21525~^~605~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~606~^2.966^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~607~^0.038^3^0.020^~1~^~A~^^^1^0.000^0.070^2^-0.050^0.125^~1, 2, 3~^~06/01/2015~ -~21525~^~608~^0.028^3^0.016^~1~^~A~^^^1^0.000^0.057^2^-0.042^0.099^~1, 2, 3~^~06/01/2015~ -~21525~^~609~^0.016^3^0.007^~1~^~A~^^^1^0.004^0.028^2^-0.014^0.046^~2, 3~^~06/01/2015~ -~21525~^~610~^0.042^3^0.023^~1~^~A~^^^1^0.000^0.079^2^-0.057^0.141^~1, 2, 3~^~06/01/2015~ -~21525~^~611~^0.061^3^0.026^~1~^~A~^^^1^0.015^0.104^2^-0.050^0.172^~2, 3~^~06/01/2015~ -~21525~^~612~^0.221^3^0.087^~1~^~A~^^^1^0.060^0.360^2^-0.155^0.597^~2, 3~^~06/01/2015~ -~21525~^~613~^1.777^3^0.139^~1~^~A~^^^1^1.529^2.011^2^1.178^2.377^~2, 3~^~06/01/2015~ -~21525~^~614~^0.666^3^0.028^~1~^~A~^^^1^0.612^0.704^2^0.547^0.785^~2, 3~^~06/01/2015~ -~21525~^~615~^0.032^3^0.004^~1~^~A~^^^1^0.025^0.037^2^0.016^0.047^~2, 3~^~06/01/2015~ -~21525~^~617~^2.626^3^0.182^~1~^~AS~^^^1^2.264^2.843^2^1.842^3.410^~2, 3~^~06/01/2015~ -~21525~^~618~^5.410^3^0.875^~1~^~AS~^^^1^3.685^6.524^2^1.647^9.174^~2, 3~^~06/01/2015~ -~21525~^~619~^0.724^3^0.121^~1~^~AS~^^^1^0.483^0.853^2^0.205^1.243^~2, 3~^~06/01/2015~ -~21525~^~620~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~06/01/2015~ -~21525~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~624~^0.022^3^0.012^~1~^~A~^^^1^0.000^0.042^2^-0.030^0.074^~1, 2, 3~^~06/01/2015~ -~21525~^~625~^0.021^3^0.007^~1~^~A~^^^1^0.008^0.031^2^-0.008^0.051^~2, 3~^~06/01/2015~ -~21525~^~626~^0.067^3^0.013^~1~^~AS~^^^1^0.043^0.086^2^0.013^0.122^~2, 3~^~06/01/2015~ -~21525~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~628~^0.053^3^0.006^~1~^~A~^^^1^0.042^0.064^2^0.025^0.080^~2, 3~^~06/01/2015~ -~21525~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~21525~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.004^2^-0.003^0.007^~2, 3~^~06/01/2015~ -~21525~^~631~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~06/01/2015~ -~21525~^~645~^2.778^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~646~^6.160^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~652~^0.025^3^0.008^~1~^~A~^^^1^0.010^0.036^2^-0.009^0.059^~2, 3~^~06/01/2015~ -~21525~^~653~^0.023^3^0.004^~1~^~A~^^^1^0.016^0.028^2^0.007^0.039^~2, 3~^~06/01/2015~ -~21525~^~654~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.023^~2, 3~^~06/01/2015~ -~21525~^~662~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.011^2^-0.001^0.016^~2, 3~^~06/01/2015~ -~21525~^~663~^0.054^3^0.020^~1~^~A~^^^1^0.021^0.091^2^-0.033^0.141^~2, 3~^~06/01/2015~ -~21525~^~664~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21525~^~665~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.033^2^0.024^0.036^~2, 3~^~06/01/2015~ -~21525~^~670~^0.018^3^0.003^~1~^~A~^^^1^0.012^0.024^2^0.003^0.033^~2, 3~^~06/01/2015~ -~21525~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~21525~^~673~^0.060^3^0.011^~1~^~A~^^^1^0.039^0.075^2^0.013^0.106^~2, 3~^~06/01/2015~ -~21525~^~674~^2.572^3^0.200^~1~^~A~^^^1^2.173^2.793^2^1.712^3.432^~2, 3~^~06/01/2015~ -~21525~^~675~^5.362^3^0.877^~1~^~A~^^^1^3.633^6.482^2^1.588^9.136^~2, 3~^~06/01/2015~ -~21525~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21525~^~685~^0.028^3^0.004^~1~^~A~^^^1^0.022^0.034^2^0.013^0.043^~2, 3~^~06/01/2015~ -~21525~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~06/01/2015~ -~21525~^~689~^0.003^3^0.002^~1~^~AS~^^^1^0.000^0.006^2^-0.004^0.011^~2, 3~^~06/01/2015~ -~21525~^~693~^0.063^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21525~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~851~^0.696^3^0.117^~1~^~A~^^^1^0.461^0.819^2^0.190^1.201^~2, 3~^~06/01/2015~ -~21525~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~853~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.011^~1, 2, 3~^~06/01/2015~ -~21525~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21525~^~858~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21526~^~312~^0.067^3^0.002^~1~^~A~^^^1^0.064^0.070^2^0.060^0.073^~2, 3~^~06/01/2015~ -~21526~^~315~^0.219^3^0.005^~1~^~A~^^^1^0.208^0.226^2^0.195^0.242^~2, 3~^~06/01/2015~ -~21526~^~404~^0.230^3^0.021^~1~^~A~^^^1^0.190^0.260^2^0.140^0.319^~2, 3~^~06/01/2015~ -~21526~^~405~^0.300^3^0.025^~1~^~A~^^^1^0.270^0.350^2^0.192^0.408^~2, 3~^~06/01/2015~ -~21526~^~406~^7.720^3^0.471^~1~^~A~^^^1^6.910^8.540^2^5.695^9.745^~2, 3~^~06/01/2015~ -~21526~^~410~^1.200^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~21526~^~415~^0.383^2^^~1~^~A~^^^1^0.349^0.417^1^^^^~06/01/2015~ -~21526~^~605~^0.030^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~606~^2.123^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~609~^0.011^3^0.002^~1~^~A~^^^1^0.007^0.015^2^0.001^0.021^~2, 3~^~06/01/2015~ -~21526~^~610~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.009^0.014^~1, 2, 3~^~06/01/2015~ -~21526~^~611~^0.165^3^0.030^~1~^~A~^^^1^0.129^0.224^2^0.036^0.293^~2, 3~^~06/01/2015~ -~21526~^~612~^0.062^3^0.010^~1~^~A~^^^1^0.050^0.081^2^0.021^0.103^~2, 3~^~06/01/2015~ -~21526~^~613~^1.122^3^0.009^~1~^~A~^^^1^1.110^1.140^2^1.083^1.161^~2, 3~^~06/01/2015~ -~21526~^~614~^0.374^3^0.004^~1~^~A~^^^1^0.367^0.381^2^0.356^0.391^~2, 3~^~06/01/2015~ -~21526~^~615~^0.086^3^0.004^~1~^~A~^^^1^0.078^0.090^2^0.069^0.102^~2, 3~^~06/01/2015~ -~21526~^~617~^4.295^3^0.057^~1~^~AS~^^^1^4.193^4.391^2^4.049^4.541^~2, 3~^~06/01/2015~ -~21526~^~618~^2.909^3^0.032^~1~^~AS~^^^1^2.845^2.948^2^2.770^3.048^~2, 3~^~06/01/2015~ -~21526~^~619~^0.206^3^0.014^~1~^~AS~^^^1^0.192^0.234^2^0.147^0.266^~2, 3~^~06/01/2015~ -~21526~^~620~^0.030^3^0.002^~1~^~A~^^^1^0.026^0.033^2^0.021^0.038^~2, 3~^~06/01/2015~ -~21526~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21526~^~624~^0.190^3^0.007^~1~^~A~^^^1^0.176^0.198^2^0.160^0.220^~2, 3~^~06/01/2015~ -~21526~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2015~ -~21526~^~626~^0.057^3^0.004^~1~^~AS~^^^1^0.051^0.064^2^0.041^0.073^~2, 3~^~06/01/2015~ -~21526~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~628~^0.108^3^0.001^~1~^~A~^^^1^0.105^0.110^2^0.101^0.114^~2, 3~^~06/01/2015~ -~21526~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2015~ -~21526~^~630~^0.013^3^0.001^~1~^~AS~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~06/01/2015~ -~21526~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21526~^~645~^4.481^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~646~^3.177^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~06/01/2015~ -~21526~^~653~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21526~^~654~^0.100^3^0.003^~1~^~A~^^^1^0.094^0.103^2^0.087^0.113^~2, 3~^~06/01/2015~ -~21526~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~663~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~06/01/2015~ -~21526~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~665~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~06/01/2015~ -~21526~^~670~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~06/01/2015~ -~21526~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~21526~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2015~ -~21526~^~673~^0.057^3^0.004^~1~^~A~^^^1^0.051^0.064^2^0.041^0.073^~2, 3~^~06/01/2015~ -~21526~^~674~^4.284^3^0.057^~1~^~A~^^^1^4.182^4.379^2^4.039^4.529^~2, 3~^~06/01/2015~ -~21526~^~675~^2.884^3^0.032^~1~^~A~^^^1^2.822^2.925^2^2.748^3.019^~2, 3~^~06/01/2015~ -~21526~^~676~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~06/01/2015~ -~21526~^~685~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~06/01/2015~ -~21526~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~06/01/2015~ -~21526~^~689~^0.008^3^0.000^~1~^~AS~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21526~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21526~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~851~^0.197^3^0.013^~1~^~A~^^^1^0.184^0.222^2^0.143^0.251^~2, 3~^~06/01/2015~ -~21526~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~853~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~06/01/2015~ -~21526~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21526~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~06/01/2015~ -~21527~^~312~^0.109^3^0.002^~1~^~A~^^^1^0.106^0.112^2^0.102^0.117^~2, 3~^~06/01/2015~ -~21527~^~315~^0.234^3^0.012^~1~^~A~^^^1^0.212^0.255^2^0.180^0.287^~2, 3~^~06/01/2015~ -~21527~^~404~^0.217^3^0.029^~1~^~A~^^^1^0.170^0.270^2^0.092^0.342^~2, 3~^~06/01/2015~ -~21527~^~405~^0.287^3^0.029^~1~^~A~^^^1^0.240^0.340^2^0.161^0.412^~2, 3~^~06/01/2015~ -~21527~^~406~^4.343^3^0.259^~1~^~A~^^^1^4.050^4.860^2^3.228^5.458^~2, 3~^~06/01/2015~ -~21527~^~415~^0.215^2^^~1~^~A~^^^1^0.214^0.217^1^^^^~06/01/2015~ -~21527~^~605~^0.389^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~606~^3.399^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~612~^0.200^3^0.007^~1~^~A~^^^1^0.187^0.213^2^0.168^0.233^~2, 3~^~06/01/2015~ -~21527~^~613~^1.951^3^0.023^~1~^~A~^^^1^1.905^1.980^2^1.851^2.051^~2, 3~^~06/01/2015~ -~21527~^~614~^1.108^3^0.053^~1~^~A~^^^1^1.048^1.213^2^0.882^1.334^~2, 3~^~06/01/2015~ -~21527~^~615~^0.015^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~06/01/2015~ -~21527~^~617~^3.561^3^0.048^~1~^~AS~^^^1^3.473^3.640^2^3.352^3.769^~2, 3~^~06/01/2015~ -~21527~^~618~^1.552^3^0.083^~1~^~AS~^^^1^1.390^1.666^2^1.194^1.911^~2, 3~^~06/01/2015~ -~21527~^~619~^0.159^3^0.013^~1~^~AS~^^^1^0.134^0.176^2^0.104^0.215^~2, 3~^~06/01/2015~ -~21527~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~06/01/2015~ -~21527~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~06/01/2015~ -~21527~^~625~^0.062^3^0.001^~1~^~A~^^^1^0.060^0.065^2^0.056^0.068^~2, 3~^~06/01/2015~ -~21527~^~626~^0.279^3^0.007^~1~^~AS~^^^1^0.267^0.292^2^0.247^0.310^~2, 3~^~06/01/2015~ -~21527~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~628~^0.034^3^0.001^~1~^~A~^^^1^0.031^0.036^2^0.027^0.040^~2, 3~^~06/01/2015~ -~21527~^~629~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~21527~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~06/01/2015~ -~21527~^~631~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~06/01/2015~ -~21527~^~645~^3.987^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~646~^1.762^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~652~^0.032^3^0.001^~1~^~A~^^^1^0.030^0.035^2^0.026^0.039^~2, 3~^~06/01/2015~ -~21527~^~653~^0.079^3^0.003^~1~^~A~^^^1^0.075^0.084^2^0.068^0.090^~2, 3~^~06/01/2015~ -~21527~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~21527~^~662~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~06/01/2015~ -~21527~^~663~^0.326^3^0.013^~1~^~A~^^^1^0.299^0.340^2^0.268^0.383^~2, 3~^~06/01/2015~ -~21527~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~665~^0.043^3^0.000^~1~^~A~^^^1^0.043^0.043^^^^~2, 3~^~06/01/2015~ -~21527~^~670~^0.044^3^0.000^~1~^~A~^^^1^0.044^0.045^2^0.043^0.046^~2, 3~^~06/01/2015~ -~21527~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~06/01/2015~ -~21527~^~673~^0.258^3^0.008^~1~^~A~^^^1^0.246^0.272^2^0.226^0.291^~2, 3~^~06/01/2015~ -~21527~^~674~^3.235^3^0.037^~1~^~A~^^^1^3.174^3.302^2^3.075^3.395^~2, 3~^~06/01/2015~ -~21527~^~675~^1.465^3^0.083^~1~^~A~^^^1^1.303^1.579^2^1.107^1.823^~2, 3~^~06/01/2015~ -~21527~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21527~^~685~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~06/01/2015~ -~21527~^~687~^0.052^3^0.002^~1~^~A~^^^1^0.048^0.054^2^0.044^0.060^~2, 3~^~06/01/2015~ -~21527~^~689~^0.010^3^0.001^~1~^~AS~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~06/01/2015~ -~21527~^~693~^0.346^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~21527~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~851~^0.152^3^0.012^~1~^~A~^^^1^0.129^0.168^2^0.101^0.203^~2, 3~^~06/01/2015~ -~21527~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~21527~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~06/01/2015~ -~21527~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~21527~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~21600~^~312~^0.098^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~315~^0.314^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~404~^0.284^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~405~^0.347^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~406~^2.996^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~415~^0.163^0^^~4~^~BFYN~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~606~^4.000^0^^~4~^~NC~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~607~^0.138^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~608~^0.116^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~609~^0.073^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~610~^0.175^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~611~^0.199^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~612~^0.640^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~613~^1.921^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~614~^0.737^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~617~^1.719^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~618~^0.662^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~619~^0.067^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~620~^0.011^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~626~^0.104^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~628~^0.015^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~629~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~631~^0.004^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21600~^~645~^1.837^0^^~4~^~NC~^~21147~^^^^^^^^^~05/01/2015~ -~21600~^~646~^0.745^0^^~4~^~NC~^~21147~^^^^^^^^^~05/01/2015~ -~21601~^~312~^0.174^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~315~^1.405^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~404~^0.242^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~405~^0.179^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~406~^3.242^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~415~^0.104^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~605~^0.316^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~606~^4.358^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~607~^0.132^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~608~^0.111^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~609~^0.070^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~610~^0.168^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~611~^0.191^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~612~^0.612^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~613~^1.962^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~614~^0.771^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~617~^1.996^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~618~^0.835^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~619~^0.077^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~620~^0.010^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~626~^0.098^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~628~^0.018^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~629~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~631~^0.004^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21601~^~645~^2.411^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21601~^~646~^1.095^0^^~4~^~BFYN~^~21145~^^^^^^^^^~05/01/2015~ -~21602~^~312~^0.100^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~315~^0.335^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~404~^0.347^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~405~^0.337^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~406~^3.729^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~415~^0.187^0^^~4~^~BFYN~^~21148~^^^^^^^^^~05/01/2015~ -~21602~^~605~^0.262^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~606~^2.810^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~607~^0.089^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~608~^0.075^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~609~^0.047^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~610~^0.114^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~611~^0.129^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~612~^0.422^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~613~^1.324^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~614~^0.521^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~617~^1.905^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~618~^1.954^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~619~^0.188^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~620~^0.033^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~626~^0.118^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~628~^0.017^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~629~^0.006^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~631~^0.011^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~645~^2.120^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~646~^2.230^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21602~^~689~^0.023^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~312~^0.079^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~315~^0.453^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~404~^0.211^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~405~^0.284^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~406~^2.519^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~415~^0.143^0^^~4~^~BFYN~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~606~^4.219^0^^~4~^~NC~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~607~^0.120^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~608~^0.101^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~609~^0.063^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~610~^0.153^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~611~^0.174^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~612~^0.600^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~613~^2.114^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~614~^0.894^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~617~^2.315^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~618~^0.701^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~619~^0.062^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~620~^0.014^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~626~^0.149^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~628~^0.024^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~629~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~631~^0.004^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21603~^~645~^2.890^0^^~4~^~NC~^~21146~^^^^^^^^^~05/01/2015~ -~21603~^~646~^1.210^0^^~4~^~NC~^~21146~^^^^^^^^^~05/01/2015~ -~21604~^~312~^0.102^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~404~^0.274^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~405~^0.340^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~406~^3.759^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~415~^0.189^0^^~4~^~BFNN~^~21602~^^^^^^^^^~05/01/2015~ -~21604~^~605~^0.000^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2015~ -~21604~^~606~^3.488^0^^~4~^~BFYN~^^^^^^^^^^~05/01/2015~ -~21604~^~607~^0.112^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~608~^0.094^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~609~^0.059^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~610~^0.142^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~611~^0.162^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~612~^0.524^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~613~^1.675^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~614~^0.636^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~617~^1.991^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~618~^0.864^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~619~^0.081^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~620~^0.019^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~621~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~626~^0.154^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~628~^0.016^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~629~^0.002^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~631~^0.005^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~645~^2.244^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~646~^0.986^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21604~^~652~^0.054^0^^~4~^~FLM~^^^^^^^^^^~05/01/2015~ -~21605~^~312~^0.123^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~315~^0.375^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~404~^0.326^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~405~^0.311^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~406~^4.100^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~410~^0.436^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~415~^0.122^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~605~^0.150^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~606~^4.219^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~607~^0.112^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~608~^0.094^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~609~^0.059^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~610~^0.142^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~611~^0.164^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~612~^0.542^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~613~^2.148^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~614~^0.782^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~617~^2.493^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~618~^1.069^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~619~^0.085^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~620~^0.032^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~621~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~626~^0.292^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~628~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~629~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~630~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~631~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~645~^2.890^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21605~^~646~^1.210^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~312~^0.097^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~315~^0.284^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~404~^0.097^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~405~^0.162^0^^~4~^~BFNN~^~21611~^^^^^^^^^~05/01/2015~ -~21610~^~406~^5.104^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~415~^0.195^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~606~^2.642^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~613~^2.162^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~614~^0.481^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~617~^4.035^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~618~^6.419^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~619~^0.175^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~626~^0.361^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21610~^~645~^4.396^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21610~^~646~^6.593^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~312~^0.074^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~315~^0.294^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~404~^0.092^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~405~^0.204^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~406~^5.985^0^^~4~^~BFZN~^~21229~^^^^^^^^^~05/01/2015~ -~21611~^~415~^0.309^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~606~^2.830^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~609~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~610~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~612~^0.041^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~613~^2.191^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~614~^0.494^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~615~^0.036^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~617~^3.248^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~618~^3.865^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~619~^0.267^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~620~^0.026^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~624~^0.022^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~626~^0.273^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~628~^0.052^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~630~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~631~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~21611~^~645~^3.593^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~646~^4.189^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~21611~^~654~^0.015^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~22247~^~312~^0.296^2^^~1~^~A~^^^1^0.289^0.303^1^^^^~06/01/2004~ -~22247~^~315~^0.224^2^^~1~^~A~^^^1^0.224^0.224^^^^~1~^~06/01/2004~ -~22247~^~404~^0.101^2^^~1~^~A~^^^1^0.092^0.110^1^^^^~06/01/2004~ -~22247~^~405~^0.114^2^^~1~^~A~^^^1^0.102^0.125^1^^^^~06/01/2004~ -~22247~^~406~^1.183^2^^~1~^~A~^^^1^1.173^1.193^1^^^^~06/01/2004~ -~22247~^~410~^0.074^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22247~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~06/01/2004~ -~22247~^~606~^0.881^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~612~^0.175^2^^~1~^~A~^^^1^0.173^0.177^1^^^^~06/01/2009~ -~22247~^~613~^0.591^2^^~1~^~A~^^^1^0.579^0.602^1^^^^~06/01/2009~ -~22247~^~614~^0.115^2^^~1~^~A~^^^1^0.000^0.230^1^^^~1~^~06/01/2009~ -~22247~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~617~^0.600^2^^~1~^~A~^^^1^0.578^0.622^1^^^^~06/01/2009~ -~22247~^~618~^0.303^2^^~1~^~A~^^^1^0.302^0.304^1^^^^~06/01/2009~ -~22247~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22247~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~645~^0.600^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~646~^0.303^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22247~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~ -~22247~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22247~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22401~^~312~^0.125^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~315~^0.213^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~404~^0.122^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~405~^1.333^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~406~^0.177^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~410~^0.071^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~415~^0.070^0^^~4~^~FLM~^^^^^^^^^^~07/01/1997~ -~22401~^~501~^0.079^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~502~^0.210^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~503~^0.240^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~504~^0.440^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~505~^0.204^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~506~^0.073^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~507~^0.101^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~508~^0.292^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~509~^0.133^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~510~^0.265^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~511~^0.267^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~512~^0.141^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~513~^0.218^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~514~^0.390^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~515~^1.848^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~516~^0.215^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~517~^0.593^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~518~^0.277^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~521~^0.004^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~606~^0.350^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~610~^0.001^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~612~^0.020^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~613~^0.224^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~614~^0.092^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~615~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~617~^0.297^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~618~^0.287^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~619~^0.028^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~620~^0.003^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~624~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~625~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~626~^0.024^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~10/01/1996~ -~22401~^~645~^0.330^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~646~^0.320^3^^~12~^~MA~^^^^^^^^^^~10/01/1996~ -~22401~^~652~^0.001^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~653~^0.002^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22401~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~ -~22402~^~312~^0.123^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~315~^0.174^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~404~^0.116^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~405~^0.092^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~406~^1.806^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~410~^0.237^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~415~^0.117^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~501~^0.053^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~502~^0.214^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~503~^0.234^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~504~^0.425^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~505~^0.334^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~506~^0.111^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~507~^0.080^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~508~^0.243^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~509~^0.149^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~510~^0.263^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~511~^0.309^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~512~^0.163^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~513~^0.281^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~514~^0.456^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~515~^1.418^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~516~^0.276^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~517~^0.414^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~518~^0.238^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~521~^0.036^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~605~^0.025^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~606~^0.443^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~612~^0.019^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~613~^0.261^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~614~^0.143^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~615~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~617~^0.765^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~618~^0.201^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~619~^0.024^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~620~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~625~^0.005^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~626~^0.036^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~628~^0.006^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22402~^~645~^0.816^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~646~^0.228^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~22402~^~652~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~653~^0.008^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22402~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~22522~^~312~^0.136^0^^~4~^~FLM~^^^^^^^^^^~01/01/2007~ -~22522~^~315~^0.129^0^^~4~^~FLM~^^^^^^^^^^~01/01/2007~ -~22522~^~404~^0.078^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~405~^0.069^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~406~^1.157^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~410~^0.240^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~415~^0.073^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~606~^0.791^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~607~^0.003^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~608~^0.002^0^^~4~^~FLM~^^^^^^^^^^~07/01/2010~ -~22522~^~609~^0.001^0^^~4~^~FLM~^^^^^^^^^^~07/01/2010~ -~22522~^~610~^0.007^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~611~^0.006^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~612~^0.045^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~613~^0.471^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~614~^0.256^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2010~ -~22522~^~617~^0.898^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~618~^0.277^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~619~^0.051^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~626~^0.093^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~628~^0.006^0^^~4~^~FLM~^^^^^^^^^^~07/01/2010~ -~22522~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~630~^0.027^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~22522~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~645~^1.024^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~646~^0.328^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22522~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~07/01/2010~ -~22522~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2009~ -~22522~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22522~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2005~ -~22528~^~606~^2.880^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~645~^3.460^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22528~^~646~^1.380^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22529~^~312~^0.030^4^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~315~^0.207^4^0.009^~1~^~A~^^^1^0.180^0.220^3^0.177^0.237^~2, 3~^~12/01/2007~ -~22529~^~404~^0.197^4^0.042^~1~^~A~^^^1^0.121^0.282^3^0.064^0.330^~2, 3~^~12/01/2007~ -~22529~^~405~^0.087^4^0.020^~1~^~A~^^^1^0.051^0.125^3^0.022^0.152^~2, 3~^~12/01/2007~ -~22529~^~406~^1.633^4^0.525^~1~^~A~^^^1^0.432^2.600^3^-0.037^3.302^~2, 3~^~12/01/2007~ -~22529~^~410~^0.145^3^0.005^~1~^~A~^^^1^0.135^0.154^2^0.121^0.169^~2, 3~^~12/01/2007~ -~22529~^~415~^0.133^3^0.021^~1~^~A~^^^1^0.108^0.175^2^0.041^0.224^~2, 3~^~12/01/2007~ -~22529~^~501~^0.077^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~502~^0.267^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~503~^0.271^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~504~^0.517^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~505~^0.419^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~506~^0.133^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~507~^0.106^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~508~^0.299^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~509~^0.200^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~510~^0.316^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~511~^0.402^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~512~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~513~^0.370^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~514~^0.542^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~515~^1.546^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~516~^0.370^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~517~^0.550^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~518~^0.289^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22529~^~606~^4.149^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~22529~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~12/01/2007~ -~22529~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~610~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.010^3^-0.004^0.014^~1, 2, 3~^~12/01/2007~ -~22529~^~611~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~12/01/2007~ -~22529~^~612~^0.177^4^0.046^~1~^~A~^^^1^0.050^0.250^3^0.031^0.324^~2, 3~^~12/01/2007~ -~22529~^~613~^2.360^4^0.311^~1~^~A~^^^1^1.480^2.850^3^1.371^3.349^~2, 3~^~12/01/2007~ -~22529~^~614~^1.497^4^0.073^~1~^~A~^^^1^1.290^1.630^3^1.266^1.729^~2, 3~^~12/01/2007~ -~22529~^~615~^0.025^4^0.005^~1~^~A~^^^1^0.020^0.040^3^0.009^0.041^~2, 3~^~12/01/2007~ -~22529~^~617~^4.940^4^0.371^~1~^~A~^^^1^4.430^6.040^3^3.760^6.120^~2, 3~^~12/01/2007~ -~22529~^~618~^1.345^4^0.107^~1~^~A~^^^1^1.200^1.660^3^1.004^1.686^~2, 3~^~12/01/2007~ -~22529~^~619~^0.065^4^0.003^~1~^~A~^^^1^0.060^0.070^3^0.056^0.074^~2, 3~^~12/01/2007~ -~22529~^~620~^0.005^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.011^0.021^~1, 2, 3~^~12/01/2007~ -~22529~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~624~^0.007^4^0.007^~1~^~A~^^^1^0.000^0.030^3^-0.016^0.031^~1, 2, 3~^~12/01/2007~ -~22529~^~625~^0.025^4^0.010^~1~^~A~^^^1^0.000^0.040^3^-0.005^0.055^~1, 2, 3~^~12/01/2007~ -~22529~^~626~^0.245^4^0.070^~1~^~A~^^^1^0.050^0.350^3^0.024^0.466^~2, 3~^~12/01/2007~ -~22529~^~627~^0.020^4^0.007^~1~^~A~^^^1^0.000^0.030^3^-0.003^0.042^~1, 2, 3~^~12/01/2007~ -~22529~^~628~^0.057^4^0.009^~1~^~A~^^^1^0.030^0.070^3^0.027^0.088^~2, 3~^~12/01/2007~ -~22529~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~645~^5.312^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~646~^1.462^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22529~^~652~^0.015^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.001^0.031^~1, 2, 3~^~12/01/2007~ -~22529~^~653~^0.060^4^0.014^~1~^~A~^^^1^0.020^0.080^3^0.015^0.105^~2, 3~^~12/01/2007~ -~22529~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~672~^0.027^4^0.009^~1~^~A~^^^1^0.000^0.040^3^-0.003^0.057^~1, 2, 3~^~12/01/2007~ -~22529~^~687~^0.045^4^0.010^~1~^~A~^^^1^0.020^0.060^3^0.014^0.075^~2, 3~^~12/01/2007~ -~22529~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~857~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22529~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22535~^~312~^0.113^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~404~^0.417^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~405~^0.273^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~406~^3.425^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~415~^0.095^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~606~^2.620^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~607~^0.006^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~608~^0.014^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~609~^0.020^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~610~^0.035^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~611~^0.173^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~612~^0.179^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~613~^1.629^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~614~^0.565^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~617~^3.256^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~618~^1.165^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~619~^0.115^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~620~^0.014^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~621~^0.002^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~626~^0.118^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~627~^0.000^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~628~^0.045^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~629~^0.001^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~630~^0.000^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~631~^0.002^0^^~4~^~BFZN~^~22537~^^^^^^^^^~05/01/2011~ -~22535~^~645~^3.420^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22535~^~646~^1.300^1^^~1~^~A~^^^^^^^^^^~10/01/1997~ -~22537~^~312~^0.113^4^0.038^~1~^~A~^^^1^0.066^0.227^3^-0.009^0.234^~2, 3~^~06/01/2009~ -~22537~^~315~^0.270^4^0.022^~1~^~A~^^^1^0.226^0.313^3^0.199^0.341^~2, 3~^~06/01/2009~ -~22537~^~404~^0.417^4^0.010^~1~^~A~^^^1^0.390^0.440^3^0.385^0.450^~2, 3~^~06/01/2009~ -~22537~^~405~^0.273^4^0.008^~1~^~A~^^^1^0.250^0.280^3^0.249^0.296^~2, 3~^~06/01/2009~ -~22537~^~406~^3.425^4^0.079^~1~^~A~^^^1^3.210^3.590^3^3.173^3.677^~2, 3~^~06/01/2009~ -~22537~^~410~^0.850^2^^~1~^~A~^^^1^0.840^0.860^1^^^^~06/01/2009~ -~22537~^~415~^0.095^4^0.003^~1~^~A~^^^1^0.090^0.100^3^0.086^0.104^~2, 3~^~06/01/2009~ -~22537~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~502~^0.354^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~503~^0.394^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~504~^0.728^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~505~^0.543^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~506~^0.189^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~507~^0.129^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~508~^0.409^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~509~^0.264^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~510~^0.453^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~511~^0.468^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~512~^0.284^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~513~^0.399^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~514~^0.653^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~515~^2.133^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~516~^0.389^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~517~^0.757^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~518~^0.418^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22537~^~605~^0.180^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~606~^3.545^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~607~^0.008^4^0.001^~1~^~A~^^^1^0.005^0.011^3^0.004^0.012^~2, 3~^~06/01/2009~ -~22537~^~608~^0.019^4^0.001^~1~^~A~^^^1^0.017^0.020^3^0.017^0.021^~2, 3~^~06/01/2009~ -~22537~^~609~^0.026^4^0.001^~1~^~A~^^^1^0.025^0.028^3^0.024^0.028^~2, 3~^~06/01/2009~ -~22537~^~610~^0.047^4^0.001^~1~^~A~^^^1^0.045^0.050^3^0.043^0.050^~2, 3~^~06/01/2009~ -~22537~^~611~^0.229^4^0.010^~1~^~A~^^^1^0.201^0.244^3^0.199^0.260^~2, 3~^~06/01/2009~ -~22537~^~612~^0.237^4^0.005^~1~^~A~^^^1^0.226^0.248^3^0.220^0.254^~2, 3~^~06/01/2009~ -~22537~^~613~^2.161^4^0.046^~1~^~A~^^^1^2.038^2.260^3^2.015^2.307^~2, 3~^~06/01/2009~ -~22537~^~614~^0.749^4^0.022^~1~^~A~^^^1^0.684^0.779^3^0.679^0.819^~2, 3~^~06/01/2009~ -~22537~^~615~^0.015^4^0.005^~1~^~A~^^^1^0.000^0.021^3^-0.001^0.030^~1, 2, 3~^~06/01/2009~ -~22537~^~617~^2.401^4^0.089^~1~^~AS~^^^1^2.136^2.511^3^2.116^2.686^~2, 3~^~06/01/2009~ -~22537~^~618~^1.710^4^0.115^~1~^~AS~^^^1^1.478^1.947^3^1.342^2.077^~2, 3~^~06/01/2009~ -~22537~^~619~^0.169^4^0.014^~1~^~AS~^^^1^0.144^0.197^3^0.124^0.215^~2, 3~^~06/01/2009~ -~22537~^~620~^0.021^4^0.001^~1~^~A~^^^1^0.018^0.022^3^0.018^0.024^~2, 3~^~06/01/2009~ -~22537~^~621~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~06/01/2009~ -~22537~^~624~^0.011^4^0.001^~1~^~A~^^^1^0.009^0.014^3^0.007^0.014^~2, 3~^~06/01/2009~ -~22537~^~625~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~06/01/2009~ -~22537~^~626~^0.087^4^0.005^~1~^~AS~^^^1^0.074^0.096^3^0.072^0.102^~2, 3~^~06/01/2009~ -~22537~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22537~^~628~^0.033^4^0.001^~1~^~A~^^^1^0.030^0.035^3^0.030^0.037^~2, 3~^~06/01/2009~ -~22537~^~629~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.004^~1, 2, 3~^~06/01/2009~ -~22537~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^-0.001^0.001^~2, 3~^~06/01/2009~ -~22537~^~631~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~06/01/2009~ -~22537~^~645~^2.547^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~646~^1.936^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~652~^0.016^4^0.000^~1~^~A~^^^1^0.015^0.017^3^0.015^0.017^~2, 3~^~06/01/2009~ -~22537~^~653~^0.021^4^0.001^~1~^~A~^^^1^0.019^0.023^3^0.019^0.024^~2, 3~^~06/01/2009~ -~22537~^~654~^0.005^4^0.001^~1~^~A~^^^1^0.002^0.007^3^0.002^0.008^~2, 3~^~06/01/2009~ -~22537~^~662~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.005^0.007^~2, 3~^~06/01/2009~ -~22537~^~663~^0.129^4^0.004^~1~^~A~^^^1^0.122^0.141^3^0.115^0.142^~2, 3~^~06/01/2009~ -~22537~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22537~^~665~^0.046^4^0.005^~1~^~A~^^^1^0.035^0.056^3^0.031^0.060^~2, 3~^~06/01/2009~ -~22537~^~670~^0.014^4^0.000^~1~^~A~^^^1^0.013^0.015^3^0.012^0.015^~2, 3~^~06/01/2009~ -~22537~^~671~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.002^0.006^~1, 2, 3~^~06/01/2009~ -~22537~^~672~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.016^3^0.012^0.017^~2, 3~^~06/01/2009~ -~22537~^~673~^0.081^4^0.005^~1~^~A~^^^1^0.069^0.090^3^0.067^0.096^~2, 3~^~06/01/2009~ -~22537~^~674~^2.272^4^0.087^~1~^~A~^^^1^2.014^2.385^3^1.995^2.550^~2, 3~^~06/01/2009~ -~22537~^~675~^1.650^4^0.111^~1~^~A~^^^1^1.430^1.884^3^1.297^2.004^~2, 3~^~06/01/2009~ -~22537~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~06/01/2009~ -~22537~^~685~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~2, 3~^~06/01/2009~ -~22537~^~687~^0.014^4^0.004^~1~^~A~^^^1^0.006^0.026^3^0.001^0.028^~2, 3~^~06/01/2009~ -~22537~^~689~^0.008^4^0.001^~1~^~AS~^^^1^0.007^0.009^3^0.007^0.010^~2, 3~^~06/01/2009~ -~22537~^~693~^0.134^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22537~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22537~^~851~^0.168^4^0.014^~1~^~A~^^^1^0.142^0.195^3^0.123^0.212^~2, 3~^~06/01/2009~ -~22537~^~852~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~06/01/2009~ -~22537~^~853~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~06/01/2009~ -~22537~^~858~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~06/01/2009~ -~22899~^~312~^0.142^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~315~^0.176^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~404~^0.074^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~405~^0.080^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~406~^1.060^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~410~^0.272^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~415~^0.102^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~606~^0.723^2^^~8~^~LC~^^^1^0.620^0.826^1^^^^~03/01/2011~ -~22899~^~607~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~608~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~609~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~610~^0.019^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~611~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~612~^0.107^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~613~^0.351^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~614~^0.136^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~617~^0.360^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~618~^0.156^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~619~^0.026^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~626~^0.039^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~645~^0.418^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~646~^0.182^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22899~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~ -~22900~^~312~^0.053^17^0.004^~1~^~A~^^^1^0.037^0.078^5^0.042^0.064^~2, 3~^~07/01/2014~ -~22900~^~315~^0.144^17^0.001^~1~^~A~^^^1^0.140^0.168^10^0.142^0.145^~2, 3~^~07/01/2014~ -~22900~^~404~^0.057^8^0.003^~1~^~A~^^^1^0.050^0.070^2^0.046^0.068^~2, 3~^~04/01/2011~ -~22900~^~405~^0.057^8^0.003^~1~^~A~^^^1^0.050^0.070^2^0.045^0.069^~2, 3~^~07/01/2014~ -~22900~^~406~^1.245^8^0.032^~1~^~A~^^^1^1.180^1.450^2^1.110^1.380^~2, 3~^~07/01/2014~ -~22900~^~415~^0.055^8^0.002^~1~^~A~^^^1^0.050^0.083^2^0.046^0.065^~2, 3~^~07/01/2014~ -~22900~^~501~^0.032^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~502~^0.109^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~503~^0.131^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~504~^0.222^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~505~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~506~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~507~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~508~^0.155^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~509~^0.105^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~510~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~511~^0.166^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~512~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~513~^0.162^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~514~^0.277^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~515~^0.935^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~516~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~517~^0.255^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~518~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22900~^~521~^0.015^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22900~^~605~^0.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~606~^1.460^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~607~^0.002^17^0.000^~1~^~A~^^^1^0.000^0.003^6^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22900~^~608~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~609~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~22900~^~610~^0.002^17^0.000^~1~^~A~^^^1^0.001^0.003^5^0.002^0.002^~1, 2, 3~^~04/01/2011~ -~22900~^~611~^0.003^17^0.000^~1~^~A~^^^1^0.003^0.005^6^0.003^0.004^~2, 3~^~07/01/2014~ -~22900~^~612~^0.103^17^0.002^~1~^~A~^^^1^0.081^0.120^6^0.098^0.109^~2, 3~^~07/01/2014~ -~22900~^~613~^0.816^17^0.021^~1~^~A~^^^1^0.640^0.959^5^0.763^0.870^~2, 3~^~07/01/2014~ -~22900~^~614~^0.462^17^0.013^~1~^~A~^^^1^0.347^0.526^5^0.430^0.493^~2, 3~^~07/01/2014~ -~22900~^~615~^0.004^17^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.004^~2, 3~^~04/01/2011~ -~22900~^~617~^1.429^17^0.045^~1~^~AS~^^^1^1.088^1.650^5^1.314^1.545^~2, 3~^~07/01/2014~ -~22900~^~618~^0.213^17^0.005^~1~^~AS~^^^1^0.187^0.240^6^0.200^0.225^~2, 3~^~07/01/2014~ -~22900~^~619~^0.013^17^0.001^~1~^~AS~^^^1^0.010^0.020^5^0.011^0.014^~2, 3~^~07/01/2014~ -~22900~^~620~^0.002^17^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.003^~1, 2, 3~^~07/01/2014~ -~22900~^~621~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~624~^0.002^17^0.000^~1~^~A~^^^1^0.000^0.003^6^0.002^0.002^~1, 2, 3~^~04/01/2011~ -~22900~^~625~^0.025^17^0.002^~1~^~A~^^^1^0.019^0.033^5^0.021^0.029^~2, 3~^~07/01/2014~ -~22900~^~626~^0.116^17^0.006^~1~^~AS~^^^1^0.084^0.155^5^0.101^0.132^~2, 3~^~07/01/2014~ -~22900~^~627~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22900~^~628~^0.013^17^0.001^~1~^~A~^^^1^0.009^0.018^5^0.011^0.016^~2, 3~^~04/01/2011~ -~22900~^~629~^0.002^17^0.001^~1~^~A~^^^1^0.000^0.006^5^0.000^0.004^~1, 2, 3~^~07/01/2014~ -~22900~^~630~^0.001^17^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~04/01/2011~ -~22900~^~631~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22900~^~645~^1.617^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~646~^0.237^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~652~^0.017^17^0.001^~1~^~A~^^^1^0.013^0.022^5^0.016^0.019^~2, 3~^~07/01/2014~ -~22900~^~653~^0.045^17^0.002^~1~^~A~^^^1^0.032^0.056^5^0.039^0.051^~2, 3~^~07/01/2014~ -~22900~^~654~^0.001^17^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22900~^~662~^0.011^17^0.000^~1~^~A~^^^1^0.008^0.015^5^0.010^0.012^~2, 3~^~04/01/2011~ -~22900~^~663~^0.161^17^0.013^~1~^~A~^^^1^0.110^0.207^5^0.127^0.195^~2, 3~^~07/01/2014~ -~22900~^~664~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~665~^0.019^17^0.002^~1~^~A~^^^1^0.008^0.031^5^0.014^0.025^~2, 3~^~07/01/2014~ -~22900~^~670~^0.020^17^0.001^~1~^~A~^^^1^0.016^0.025^5^0.018^0.022^~2, 3~^~04/01/2011~ -~22900~^~671~^0.001^17^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~04/01/2011~ -~22900~^~672~^0.001^17^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22900~^~673~^0.105^17^0.006^~1~^~A~^^^1^0.075^0.140^5^0.090^0.120^~2, 3~^~07/01/2014~ -~22900~^~674~^1.268^17^0.057^~1~^~A~^^^1^0.957^1.515^5^1.123^1.414^~2, 3~^~07/01/2014~ -~22900~^~675~^0.173^17^0.004^~1~^~A~^^^1^0.154^0.199^6^0.163^0.184^~2, 3~^~07/01/2014~ -~22900~^~676~^0.001^17^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22900~^~685~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22900~^~687~^0.031^17^0.002^~1~^~A~^^^1^0.021^0.042^5^0.025^0.036^~2, 3~^~04/01/2011~ -~22900~^~689~^0.004^17^0.000^~1~^~AS~^^^1^0.003^0.006^5^0.003^0.004^~2, 3~^~04/01/2011~ -~22900~^~693~^0.172^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22900~^~697~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22900~^~851~^0.012^17^0.001^~1~^~A~^^^1^0.010^0.020^5^0.011^0.014^~2, 3~^~07/01/2014~ -~22900~^~852~^0.000^17^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22900~^~853~^0.003^17^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~07/01/2014~ -~22900~^~858~^0.002^17^0.000^~1~^~A~^^^1^0.000^0.003^6^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22901~^~312~^0.080^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~404~^0.313^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~405~^0.310^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~406~^2.696^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~415~^0.043^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~606~^3.600^0^^~8~^~LC~^^^^^^^^^^~10/01/1996~ -~22901~^~607~^0.262^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~608~^0.089^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~609~^0.052^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~610~^0.126^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~611~^0.159^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~612~^0.597^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~613~^1.632^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~614~^0.534^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~617~^1.822^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~618~^0.372^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~619~^0.084^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~620~^0.004^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~626~^0.133^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~645~^2.066^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22901~^~646~^0.461^0^^~4~^~FLC~^^^^^^^^^^~10/01/1996~ -~22902~^~312~^0.113^17^0.007^~1~^~A~^^^2^0.107^0.120^1^0.028^0.199^~4~^~06/01/2015~ -~22902~^~315~^0.358^17^0.034^~1~^~A~^^^2^0.323^0.392^1^-0.078^0.793^~4~^~06/01/2015~ -~22902~^~404~^0.259^7^0.127^~1~^~A~^^^2^0.132^0.385^1^-1.349^1.866^~4~^~06/01/2015~ -~22902~^~405~^0.136^6^0.054^~1~^~A~^^^2^0.083^0.190^1^-0.547^0.819^~4~^~06/01/2015~ -~22902~^~406~^2.567^7^1.003^~1~^~A~^^^2^1.564^3.570^1^-10.177^15.311^~4~^~06/01/2015~ -~22902~^~410~^0.450^3^0.000^~1~^~A~^^^^0.450^0.450^^^^^~06/01/2015~ -~22902~^~415~^0.103^7^0.033^~1~^~A~^^^2^0.070^0.136^1^-0.316^0.522^~4~^~06/01/2015~ -~22902~^~605~^0.194^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~606~^4.283^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~607~^0.059^17^0.019^~1~^~A~^^^2^0.040^0.079^1^-0.187^0.306^~4~^~06/01/2015~ -~22902~^~608~^0.051^17^0.011^~1~^~A~^^^2^0.040^0.063^1^-0.093^0.196^~4~^~06/01/2015~ -~22902~^~609~^0.037^17^0.007^~1~^~A~^^^2^0.030^0.043^1^-0.048^0.121^~4~^~06/01/2015~ -~22902~^~610~^0.097^17^0.013^~1~^~A~^^^2^0.084^0.110^1^-0.071^0.265^~4~^~06/01/2015~ -~22902~^~611~^0.119^17^0.013^~1~^~A~^^^2^0.106^0.132^1^-0.048^0.286^~4~^~06/01/2015~ -~22902~^~612~^0.452^17^0.040^~1~^~A~^^^2^0.412^0.493^1^-0.061^0.966^~4~^~06/01/2015~ -~22902~^~613~^2.293^17^0.293^~1~^~A~^^^2^2.000^2.585^1^-1.425^6.010^~4~^~06/01/2015~ -~22902~^~614~^1.046^17^0.100^~1~^~A~^^^2^0.946^1.147^1^-0.228^2.321^~4~^~06/01/2015~ -~22902~^~615~^0.019^17^0.007^~1~^~A~^^^2^0.012^0.027^1^-0.076^0.115^~4~^~06/01/2015~ -~22902~^~617~^3.079^17^0.543^~1~^~AS~^^^2^2.536^3.623^1^-3.826^9.985^~4~^~06/01/2015~ -~22902~^~618~^2.195^17^0.619^~1~^~AS~^^^2^1.576^2.815^1^-5.673^10.064^~4~^~06/01/2015~ -~22902~^~619~^0.226^17^0.077^~1~^~AS~^^^2^0.149^0.304^1^-0.756^1.208^~4~^~06/01/2015~ -~22902~^~620~^0.018^17^0.008^~1~^~A~^^^2^0.010^0.026^1^-0.087^0.123^~4~^~06/01/2015~ -~22902~^~621~^0.001^17^0.000^~1~^~A~^^^2^0.001^0.001^1^0.001^0.001^~4~^~06/01/2015~ -~22902~^~624~^0.014^17^0.004^~1~^~A~^^^2^0.010^0.018^1^-0.038^0.066^~4~^~06/01/2015~ -~22902~^~625~^0.033^17^0.003^~1~^~A~^^^2^0.030^0.037^1^-0.009^0.076^~4~^~06/01/2015~ -~22902~^~626~^0.170^17^0.014^~1~^~AS~^^^2^0.156^0.183^1^-0.003^0.343^~4~^~06/01/2015~ -~22902~^~627~^0.001^17^0.000^~1~^~A~^^^2^0.001^0.001^1^0.000^0.001^~4~^~06/01/2015~ -~22902~^~628~^0.053^17^0.017^~1~^~A~^^^2^0.036^0.071^1^-0.168^0.275^~4~^~06/01/2015~ -~22902~^~629~^0.003^17^0.001^~1~^~A~^^^2^0.002^0.003^1^-0.006^0.012^~4~^~06/01/2015~ -~22902~^~630~^0.006^17^0.004^~1~^~AS~^^^2^0.003^0.010^1^-0.041^0.053^~4~^~06/01/2015~ -~22902~^~631~^0.005^17^0.001^~1~^~A~^^^2^0.005^0.006^1^-0.005^0.016^~4~^~06/01/2015~ -~22902~^~645~^3.355^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~646~^2.496^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~652~^0.045^17^0.005^~1~^~A~^^^2^0.040^0.050^1^-0.017^0.106^~4~^~06/01/2015~ -~22902~^~653~^0.040^17^0.008^~1~^~A~^^^2^0.032^0.047^1^-0.057^0.136^~4~^~06/01/2015~ -~22902~^~654~^0.007^17^0.001^~1~^~A~^^^2^0.006^0.008^1^-0.003^0.018^~4~^~06/01/2015~ -~22902~^~662~^0.014^17^0.004^~1~^~A~^^^2^0.010^0.018^1^-0.035^0.063^~4~^~06/01/2015~ -~22902~^~663~^0.134^17^0.020^~1~^~A~^^^2^0.114^0.154^1^-0.120^0.388^~4~^~06/01/2015~ -~22902~^~664~^0.000^17^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.000^~4~^~06/01/2015~ -~22902~^~665~^0.046^17^0.012^~1~^~A~^^^2^0.034^0.059^1^-0.112^0.205^~4~^~06/01/2015~ -~22902~^~670~^0.032^17^0.006^~1~^~A~^^^2^0.026^0.038^1^-0.045^0.109^~4~^~06/01/2015~ -~22902~^~671~^0.002^17^0.000^~1~^~A~^^^2^0.001^0.002^1^-0.002^0.005^~4~^~06/01/2015~ -~22902~^~672~^0.021^17^0.011^~1~^~A~^^^2^0.010^0.032^1^-0.121^0.163^~4~^~06/01/2015~ -~22902~^~673~^0.156^17^0.010^~1~^~A~^^^2^0.146^0.166^1^0.031^0.280^~4~^~06/01/2015~ -~22902~^~674~^2.945^17^0.523^~1~^~A~^^^2^2.422^3.469^1^-3.706^9.597^~4~^~06/01/2015~ -~22902~^~675~^2.117^17^0.601^~1~^~A~^^^2^1.516^2.717^1^-5.516^9.749^~4~^~06/01/2015~ -~22902~^~676~^0.006^17^0.004^~1~^~A~^^^2^0.003^0.010^1^-0.041^0.053^~4~^~06/01/2015~ -~22902~^~685~^0.003^17^0.000^~1~^~A~^^^2^0.003^0.004^1^-0.001^0.008^~4~^~06/01/2015~ -~22902~^~687~^0.011^17^0.011^~1~^~A~^^^2^0.000^0.023^1^-0.133^0.156^~4~^~06/01/2015~ -~22902~^~689~^0.014^17^0.003^~1~^~AS~^^^2^0.011^0.018^1^-0.027^0.055^~4~^~06/01/2015~ -~22902~^~693~^0.148^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22902~^~697~^0.000^17^0.000^~1~^~A~^^^2^0.000^0.000^1^0.000^0.001^~4~^~06/01/2015~ -~22902~^~851~^0.223^17^0.077^~1~^~A~^^^2^0.146^0.300^1^-0.755^1.201^~4~^~06/01/2015~ -~22902~^~852~^0.004^17^0.001^~1~^~A~^^^2^0.003^0.005^1^-0.011^0.018^~4~^~06/01/2015~ -~22902~^~853~^0.011^17^0.002^~1~^~A~^^^2^0.009^0.013^1^-0.016^0.037^~4~^~06/01/2015~ -~22902~^~858~^0.009^17^0.000^~1~^~A~^^^2^0.009^0.010^1^0.004^0.015^~4~^~06/01/2015~ -~22903~^~312~^0.114^4^0.003^~1~^~A~^^^1^0.103^0.120^1^0.074^0.153^~2, 3~^~06/01/2015~ -~22903~^~315~^0.354^4^0.008^~1~^~A~^^^1^0.328^0.447^1^0.257^0.451^~2, 3~^~06/01/2015~ -~22903~^~404~^0.310^2^^~1~^~A~^^^1^0.300^0.320^1^^^^~06/01/2015~ -~22903~^~405~^0.330^2^^~1~^~A~^^^1^0.320^0.340^1^^^^~06/01/2015~ -~22903~^~406~^3.235^2^^~1~^~A~^^^1^3.170^3.300^1^^^^~06/01/2015~ -~22903~^~410~^0.274^5^0.006^~1~^~A~^^^1^^^^^^^~04/01/2004~ -~22903~^~415~^0.151^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~22903~^~605~^0.210^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~606~^4.827^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~607~^0.089^4^0.001^~1~^~A~^^^1^0.047^0.135^1^0.071^0.107^~2, 3~^~06/01/2015~ -~22903~^~608~^0.065^4^0.000^~1~^~A~^^^1^0.032^0.094^1^0.061^0.070^~2, 3~^~06/01/2015~ -~22903~^~609~^0.038^4^0.000^~1~^~A~^^^1^0.021^0.055^1^0.034^0.042^~2, 3~^~06/01/2015~ -~22903~^~610~^0.099^4^0.005^~1~^~A~^^^1^0.048^0.137^1^0.032^0.165^~2, 3~^~06/01/2015~ -~22903~^~611~^0.113^4^0.006^~1~^~A~^^^1^0.058^0.143^1^0.037^0.189^~2, 3~^~06/01/2015~ -~22903~^~612~^0.469^4^0.012^~1~^~A~^^^1^0.244^0.522^1^0.322^0.616^~2, 3~^~06/01/2015~ -~22903~^~613~^2.832^4^0.013^~1~^~A~^^^1^2.507^2.906^1^2.663^3.000^~2, 3~^~06/01/2015~ -~22903~^~614~^0.999^4^0.006^~1~^~A~^^^1^0.765^1.054^1^0.918^1.079^~2, 3~^~06/01/2015~ -~22903~^~615~^0.022^4^0.000^~1~^~A~^^^1^0.020^0.028^1^0.017^0.026^~2, 3~^~06/01/2015~ -~22903~^~617~^3.719^4^0.011^~1~^~AS~^^^1^3.007^3.975^1^3.581^3.857^~2, 3~^~06/01/2015~ -~22903~^~618~^2.482^4^0.046^~1~^~AS~^^^1^1.990^2.789^1^1.900^3.064^~2, 3~^~06/01/2015~ -~22903~^~619~^0.139^4^0.000^~1~^~AS~^^^1^0.087^0.310^1^0.135^0.144^~2, 3~^~06/01/2015~ -~22903~^~620~^0.025^4^0.001^~1~^~A~^^^1^0.013^0.030^1^0.007^0.042^~2, 3~^~06/01/2015~ -~22903~^~621~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.008^0.010^~1, 2, 3~^~06/01/2015~ -~22903~^~624~^0.009^4^0.000^~1~^~A~^^^1^0.007^0.017^^^^~2, 3~^~06/01/2015~ -~22903~^~625~^0.049^4^0.003^~1~^~A~^^^1^0.040^0.054^1^0.013^0.084^~2, 3~^~06/01/2015~ -~22903~^~626~^0.228^4^0.004^~1~^~AS~^^^1^0.130^0.266^1^0.176^0.281^~2, 3~^~06/01/2015~ -~22903~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~628~^0.066^4^0.003^~1~^~A~^^^1^0.052^0.100^1^0.031^0.102^~2, 3~^~06/01/2015~ -~22903~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^1^-0.001^0.008^~2, 3~^~06/01/2015~ -~22903~^~630~^0.017^4^0.001^~1~^~AS~^^^1^0.004^0.023^1^-0.001^0.035^~2, 3~^~06/01/2015~ -~22903~^~631~^0.005^4^0.000^~1~^~A~^^^1^0.003^0.006^1^0.000^0.010^~2, 3~^~06/01/2015~ -~22903~^~645~^4.100^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~646~^2.700^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~652~^0.045^4^0.000^~1~^~A~^^^1^0.026^0.058^1^0.041^0.049^~2, 3~^~06/01/2015~ -~22903~^~653~^0.043^4^0.002^~1~^~A~^^^1^0.028^0.048^1^0.011^0.074^~2, 3~^~06/01/2015~ -~22903~^~654~^0.006^4^0.000^~1~^~A~^^^1^0.005^0.008^1^0.001^0.011^~2, 3~^~06/01/2015~ -~22903~^~662~^0.015^4^0.001^~1~^~A~^^^1^0.009^0.020^1^0.006^0.025^~2, 3~^~06/01/2015~ -~22903~^~663~^0.148^4^0.006^~1~^~A~^^^1^0.081^0.211^1^0.073^0.224^~2, 3~^~06/01/2015~ -~22903~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~665~^0.046^4^0.002^~1~^~A~^^^1^0.029^0.076^1^0.024^0.068^~2, 3~^~06/01/2015~ -~22903~^~670~^0.032^4^0.003^~1~^~A~^^^1^0.020^0.042^1^-0.003^0.067^~2, 3~^~06/01/2015~ -~22903~^~671~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^1^-0.002^0.007^~1, 2, 3~^~06/01/2015~ -~22903~^~672~^0.023^4^0.001^~1~^~A~^^^1^0.017^0.026^1^0.014^0.031^~2, 3~^~06/01/2015~ -~22903~^~673~^0.213^4^0.005^~1~^~A~^^^1^0.121^0.251^1^0.151^0.274^~2, 3~^~06/01/2015~ -~22903~^~674~^3.570^4^0.005^~1~^~A~^^^1^2.926^3.817^1^3.508^3.632^~2, 3~^~06/01/2015~ -~22903~^~675~^2.404^4^0.041^~1~^~A~^^^1^1.872^2.740^1^1.879^2.929^~2, 3~^~06/01/2015~ -~22903~^~676~^0.017^4^0.001^~1~^~A~^^^1^0.003^0.023^1^-0.001^0.035^~2, 3~^~06/01/2015~ -~22903~^~685~^0.005^4^0.000^~1~^~A~^^^1^0.002^0.014^1^0.001^0.009^~1, 2, 3~^~06/01/2015~ -~22903~^~687~^0.019^4^0.001^~1~^~A~^^^1^0.013^0.024^1^0.011^0.028^~2, 3~^~06/01/2015~ -~22903~^~689~^0.013^4^0.000^~1~^~AS~^^^1^0.008^0.014^^^^~2, 3~^~06/01/2015~ -~22903~^~693~^0.164^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22903~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~851~^0.134^4^0.000^~1~^~A~^^^1^0.085^0.296^^^^~2, 3~^~06/01/2015~ -~22903~^~852~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~853~^0.010^4^0.000^~1~^~A~^^^1^0.006^0.011^^^^~2, 3~^~06/01/2015~ -~22903~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~06/01/2015~ -~22903~^~858~^0.008^4^0.000^~1~^~A~^^^1^0.004^0.009^^^^~2, 3~^~06/01/2015~ -~22904~^~312~^0.096^11^0.004^~1~^~A~^^^1^0.081^0.128^10^0.088^0.105^~2, 3~^~04/01/2011~ -~22904~^~315~^0.205^11^0.007^~1~^~A~^^^1^0.165^0.230^10^0.191^0.220^~2, 3~^~04/01/2011~ -~22904~^~404~^0.019^11^0.002^~1~^~A~^^^1^0.015^0.040^10^0.013^0.024^~1, 2, 3~^~04/01/2011~ -~22904~^~405~^0.029^11^0.002^~1~^~A~^^^1^0.020^0.040^10^0.025^0.033^~2, 3~^~04/01/2011~ -~22904~^~406~^0.782^11^0.010^~1~^~A~^^^1^0.720^0.830^10^0.760^0.804^~2, 3~^~04/01/2011~ -~22904~^~410~^0.297^3^0.003^~1~^~A~^^^1^0.290^0.300^2^0.282^0.311^~2, 3~^~04/01/2011~ -~22904~^~415~^0.105^6^0.002^~1~^~A~^^^1^0.098^0.109^5^0.100^0.109^~2, 3~^~04/01/2011~ -~22904~^~605~^0.166^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~606~^1.253^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~607~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22904~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~609~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22904~^~610~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22904~^~611~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^10^0.003^0.004^~1, 2, 3~^~04/01/2011~ -~22904~^~612~^0.086^11^0.004^~1~^~A~^^^1^0.068^0.112^10^0.078^0.094^~2, 3~^~04/01/2011~ -~22904~^~613~^0.709^11^0.026^~1~^~A~^^^1^0.580^0.905^10^0.650^0.768^~2, 3~^~04/01/2011~ -~22904~^~614~^0.390^11^0.019^~1~^~A~^^^1^0.304^0.508^10^0.347^0.432^~2, 3~^~04/01/2011~ -~22904~^~615~^0.005^11^0.000^~1~^~A~^^^1^0.003^0.007^10^0.004^0.005^~2, 3~^~04/01/2011~ -~22904~^~617~^1.251^11^0.052^~1~^~AS~^^^1^1.019^1.667^10^1.136^1.367^~2, 3~^~04/01/2011~ -~22904~^~618~^0.270^11^0.006^~1~^~AS~^^^1^0.243^0.311^10^0.255^0.284^~2, 3~^~04/01/2011~ -~22904~^~619~^0.115^11^0.001^~1~^~AS~^^^1^0.109^0.121^10^0.113^0.117^~2, 3~^~04/01/2011~ -~22904~^~620~^0.006^11^0.000^~1~^~A~^^^1^0.004^0.008^10^0.005^0.007^~2, 3~^~04/01/2011~ -~22904~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~624~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.003^10^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~22904~^~625~^0.023^11^0.001^~1~^~A~^^^1^0.016^0.033^10^0.020^0.027^~2, 3~^~04/01/2011~ -~22904~^~626~^0.101^11^0.005^~1~^~AS~^^^1^0.076^0.138^10^0.089^0.113^~2, 3~^~04/01/2011~ -~22904~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~628~^0.011^11^0.000^~1~^~A~^^^1^0.008^0.013^10^0.010^0.012^~2, 3~^~04/01/2011~ -~22904~^~629~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2011~ -~22904~^~631~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22904~^~645~^1.412^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~646~^0.400^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~652~^0.015^11^0.001^~1~^~A~^^^1^0.012^0.020^10^0.014^0.017^~2, 3~^~04/01/2011~ -~22904~^~653~^0.037^11^0.002^~1~^~A~^^^1^0.030^0.049^10^0.032^0.041^~2, 3~^~04/01/2011~ -~22904~^~654~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^10^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~22904~^~662~^0.009^11^0.000^~1~^~A~^^^1^0.007^0.012^10^0.008^0.010^~2, 3~^~04/01/2011~ -~22904~^~663~^0.136^11^0.008^~1~^~A~^^^1^0.105^0.181^10^0.118^0.153^~2, 3~^~04/01/2011~ -~22904~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~665~^0.021^11^0.003^~1~^~A~^^^1^0.013^0.044^10^0.015^0.027^~2, 3~^~04/01/2011~ -~22904~^~670~^0.016^11^0.001^~1~^~A~^^^1^0.011^0.020^10^0.014^0.017^~2, 3~^~04/01/2011~ -~22904~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~672~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22904~^~673~^0.092^11^0.005^~1~^~A~^^^1^0.067^0.126^10^0.081^0.103^~2, 3~^~04/01/2011~ -~22904~^~674~^1.115^11^0.046^~1~^~A~^^^1^0.914^1.486^10^1.013^1.218^~2, 3~^~04/01/2011~ -~22904~^~675~^0.233^11^0.005^~1~^~A~^^^1^0.211^0.260^10^0.221^0.245^~2, 3~^~04/01/2011~ -~22904~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22904~^~687~^0.026^11^0.001^~1~^~A~^^^1^0.021^0.034^10^0.023^0.029^~2, 3~^~04/01/2011~ -~22904~^~689~^0.004^11^0.000^~1~^~AS~^^^1^0.003^0.005^10^0.003^0.004^~2, 3~^~04/01/2011~ -~22904~^~693~^0.145^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22904~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~851~^0.115^11^0.001^~1~^~A~^^^1^0.109^0.120^10^0.113^0.117^~2, 3~^~04/01/2011~ -~22904~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22904~^~853~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.005^10^0.003^0.004^~2, 3~^~04/01/2011~ -~22904~^~858~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22905~^~312~^0.141^4^0.036^~1~^~A~^^^2^0.032^0.260^2^-0.014^0.297^~2, 3~^~11/01/2008~ -~22905~^~315~^0.059^4^0.020^~1~^~A~^^^2^0.022^0.114^2^-0.028^0.147^~2, 3~^~11/01/2008~ -~22905~^~404~^0.073^2^^~1~^~A~^^^2^0.034^0.113^^^^^~11/01/2008~ -~22905~^~405~^0.053^3^0.008^~1~^~A~^^^2^0.039^0.064^1^-0.053^0.159^~2, 3~^~11/01/2008~ -~22905~^~406~^1.096^3^0.086^~1~^~A~^^^2^1.005^1.262^1^0.007^2.184^~2, 3~^~11/01/2008~ -~22905~^~410~^0.120^3^0.013^~1~^~A~^^^2^0.106^0.145^1^-0.046^0.285^~2, 3~^~11/01/2008~ -~22905~^~415~^0.087^4^0.007^~1~^~A~^^^2^0.069^0.098^2^0.059^0.115^~2, 3~^~11/01/2008~ -~22905~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~502~^0.157^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~503~^0.148^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~504~^0.271^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~505~^0.239^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~506~^0.090^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~507~^0.040^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~508~^0.147^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~509~^0.084^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~510~^0.182^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~511~^0.200^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~512~^0.103^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~513~^0.242^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~514~^0.382^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~515~^0.705^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~516~^0.252^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~517~^0.208^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~518~^0.156^0^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~606~^2.185^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22905~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22905~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~ -~22905~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~611~^0.010^3^0.000^~1~^~A~^^^2^0.000^0.019^1^0.008^0.017^~1, 2, 3~^~11/01/2008~ -~22905~^~612~^0.169^3^0.027^~1~^~A~^^^2^0.100^0.296^1^-0.144^0.551^~2, 3~^~11/01/2008~ -~22905~^~613~^1.232^3^0.205^~1~^~A~^^^2^0.760^2.155^1^-1.115^4.086^~2, 3~^~11/01/2008~ -~22905~^~614~^0.673^3^0.097^~1~^~A~^^^2^0.420^1.153^1^-0.425^2.048^~2, 3~^~11/01/2008~ -~22905~^~615~^0.007^3^0.001^~1~^~A~^^^2^0.000^0.015^1^-0.008^0.026^~1, 2, 3~^~11/01/2008~ -~22905~^~617~^2.150^3^0.394^~1~^~A~^^^2^1.270^3.843^1^-2.410^7.594^~2, 3~^~11/01/2008~ -~22905~^~618~^0.200^3^0.027^~1~^~A~^^^2^0.130^0.337^1^-0.098^0.580^~2, 3~^~11/01/2008~ -~22905~^~619~^0.034^3^0.004^~1~^~A~^^^2^0.020^0.058^1^-0.010^0.092^~2, 3~^~11/01/2008~ -~22905~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~625~^0.056^3^0.011^~1~^~A~^^^2^0.030^0.102^1^-0.073^0.207^~2, 3~^~11/01/2008~ -~22905~^~626~^0.227^3^0.045^~1~^~A~^^^2^0.120^0.417^1^-0.294^0.841^~2, 3~^~11/01/2008~ -~22905~^~627~^0.017^1^^~1~^~A~^^^^^^^^^^~11/01/2008~ -~22905~^~628~^0.036^3^0.007^~1~^~A~^^^2^0.000^0.075^1^-0.046^0.132^~1, 2, 3~^~11/01/2008~ -~22905~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~630~^0.010^2^^~1~^~A~^^^2^0.000^0.024^^^^~1~^~11/01/2008~ -~22905~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~645~^2.543^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22905~^~646~^0.251^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22905~^~652~^0.028^3^0.005^~1~^~A~^^^2^0.020^0.048^1^-0.030^0.097^~2, 3~^~11/01/2008~ -~22905~^~653~^0.066^3^0.012^~1~^~A~^^^2^0.040^0.116^1^-0.069^0.227^~2, 3~^~11/01/2008~ -~22905~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~687~^0.064^3^0.011^~1~^~A~^^^2^0.030^0.118^1^-0.062^0.217^~2, 3~^~11/01/2008~ -~22905~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22905~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2008~ -~22906~^~312~^0.042^12^0.001^~1~^~A~^^^1^0.040^0.050^5^0.040^0.044^~2, 3~^~07/01/2014~ -~22906~^~315~^0.187^12^0.002^~1~^~A~^^^1^0.180^0.220^7^0.182^0.193^~2, 3~^~07/01/2014~ -~22906~^~404~^0.104^6^0.003^~1~^~A~^^^1^0.050^0.210^2^0.090^0.118^~2, 3~^~07/01/2014~ -~22906~^~405~^0.041^6^0.001^~1~^~A~^^^1^0.010^0.100^2^0.036^0.046^~2, 3~^~07/01/2014~ -~22906~^~406~^1.871^6^0.036^~1~^~A~^^^1^1.150^3.100^4^1.766^1.976^~2, 3~^~07/01/2014~ -~22906~^~410~^0.368^6^0.011^~1~^~A~^^^1^0.310^0.430^2^0.324^0.412^~2, 3~^~07/01/2014~ -~22906~^~415~^0.092^6^0.004^~1~^~A~^^^1^0.070^0.150^2^0.076^0.108^~2, 3~^~07/01/2014~ -~22906~^~501~^0.071^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~502~^0.211^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~503~^0.222^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~504~^0.418^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~505~^0.313^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~506~^0.096^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~507~^0.089^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~508~^0.244^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~510~^0.250^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~511~^0.309^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~512~^0.166^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~513~^0.273^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~514~^0.420^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~515~^1.319^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~516~^0.239^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~517~^0.532^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~518~^0.244^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22906~^~521~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~06/01/2012~ -~22906~^~605~^0.085^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~606~^4.365^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~607~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.010^2^0.000^0.009^~1, 2, 3~^~07/01/2014~ -~22906~^~608~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.008^2^0.002^0.003^~1, 2, 3~^~07/01/2014~ -~22906~^~609~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.007^^^^~1, 2, 3~^~07/01/2014~ -~22906~^~610~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~06/01/2012~ -~22906~^~611~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.020^2^0.006^0.017^~2, 3~^~07/01/2014~ -~22906~^~612~^0.100^6^0.002^~1~^~A~^^^1^0.060^0.130^2^0.091^0.109^~2, 3~^~07/01/2014~ -~22906~^~613~^2.171^6^0.028^~1~^~A~^^^1^1.680^2.490^3^2.072^2.270^~2, 3~^~07/01/2014~ -~22906~^~614~^1.980^6^0.027^~1~^~A~^^^1^1.320^3.070^4^1.901^2.059^~2, 3~^~07/01/2014~ -~22906~^~615~^0.027^6^0.000^~1~^~A~^^^1^0.020^0.040^^^^~2, 3~^~07/01/2014~ -~22906~^~617~^3.312^6^0.050^~1~^~AS~^^^1^2.460^3.880^3^3.140^3.483^~2, 3~^~07/01/2014~ -~22906~^~618~^2.971^6^0.033^~1~^~AS~^^^1^2.110^4.457^4^2.876^3.066^~2, 3~^~07/01/2014~ -~22906~^~619~^0.247^6^0.007^~1~^~AS~^^^1^0.084^0.550^2^0.223^0.272^~2, 3~^~07/01/2014~ -~22906~^~620~^0.023^6^0.000^~1~^~A~^^^1^0.010^0.030^^^^~2, 3~^~07/01/2014~ -~22906~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.001^0.003^~1, 2, 3~^~06/01/2012~ -~22906~^~624~^0.011^6^0.004^~1~^~A~^^^1^0.000^0.030^2^-0.004^0.027^~1, 2, 3~^~07/01/2014~ -~22906~^~625~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^3^0.006^0.009^~2, 3~^~07/01/2014~ -~22906~^~626~^0.208^6^0.004^~1~^~AS~^^^1^0.083^0.285^2^0.191^0.225^~2, 3~^~07/01/2014~ -~22906~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~07/01/2014~ -~22906~^~628~^0.066^6^0.002^~1~^~A~^^^1^0.050^0.080^3^0.058^0.073^~2, 3~^~07/01/2014~ -~22906~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~06/01/2012~ -~22906~^~630~^0.005^6^0.000^~1~^~AS~^^^1^0.003^0.008^2^0.004^0.006^~2, 3~^~07/01/2014~ -~22906~^~631~^0.005^6^0.001^~1~^~A~^^^1^0.000^0.007^4^0.003^0.006^~1, 2, 3~^~06/01/2012~ -~22906~^~645~^3.613^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~646~^3.302^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~652~^0.010^6^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~12/01/2007~ -~22906~^~653~^0.029^6^0.002^~1~^~A~^^^1^0.010^0.040^3^0.022^0.037^~2, 3~^~07/01/2014~ -~22906~^~654~^0.005^6^0.001^~1~^~A~^^^1^0.001^0.010^2^0.003^0.008^~1, 2, 3~^~07/01/2014~ -~22906~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.005^3^0.003^0.004^~1, 2, 3~^~06/01/2012~ -~22906~^~663~^0.056^6^0.004^~1~^~A~^^^1^0.040^0.070^3^0.042^0.070^~2, 3~^~07/01/2014~ -~22906~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.002^~1, 2, 3~^~06/01/2012~ -~22906~^~665~^0.024^6^0.002^~1~^~A~^^^1^0.010^0.060^2^0.013^0.034^~2, 3~^~07/01/2014~ -~22906~^~670~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.010^2^0.008^0.010^~2, 3~^~07/01/2014~ -~22906~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22906~^~672~^0.034^6^0.000^~1~^~A~^^^1^0.006^0.050^2^0.033^0.034^~2, 3~^~07/01/2014~ -~22906~^~673~^0.204^6^0.004^~1~^~A~^^^1^0.080^0.280^2^0.188^0.221^~2, 3~^~07/01/2014~ -~22906~^~674~^3.255^6^0.048^~1~^~A~^^^1^2.400^3.820^3^3.088^3.423^~2, 3~^~07/01/2014~ -~22906~^~675~^2.938^6^0.033^~1~^~A~^^^1^2.090^4.410^4^2.844^3.033^~2, 3~^~07/01/2014~ -~22906~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.004^~2, 3~^~06/01/2012~ -~22906~^~685~^0.012^6^0.002^~1~^~A~^^^1^0.004^0.040^2^0.002^0.023^~2, 3~^~07/01/2014~ -~22906~^~687~^0.016^6^0.000^~1~^~A~^^^1^0.008^0.020^^^^~2, 3~^~07/01/2014~ -~22906~^~689~^0.013^6^0.000^~1~^~AS~^^^1^0.004^0.018^3^0.011^0.014^~2, 3~^~07/01/2014~ -~22906~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22906~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2007~ -~22906~^~851~^0.235^6^0.007^~1~^~A~^^^1^0.080^0.530^2^0.208^0.262^~2, 3~^~07/01/2014~ -~22906~^~852~^0.004^6^0.000^~1~^~A~^^^1^0.000^0.008^2^0.003^0.006^~1, 2, 3~^~07/01/2014~ -~22906~^~853~^0.008^6^0.000^~1~^~A~^^^1^0.004^0.010^2^0.007^0.009^~2, 3~^~07/01/2014~ -~22906~^~858~^0.007^6^0.000^~1~^~A~^^^1^0.000^0.010^2^0.005^0.009^~1, 2, 3~^~07/01/2014~ -~22908~^~312~^0.000^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~315~^0.084^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~404~^0.069^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~405~^0.050^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~406~^1.572^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~410~^0.403^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~415~^0.231^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~501~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~502~^0.223^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~503~^0.253^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~504~^0.430^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~505~^0.454^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~506~^0.137^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~507~^0.073^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~508~^0.229^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~509~^0.186^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~510~^0.288^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~511~^0.347^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~512~^0.170^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~513~^0.312^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~514~^0.682^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~515~^0.871^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~516~^0.312^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~517~^0.258^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~518~^0.228^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~521~^0.048^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~606~^4.320^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~610~^0.029^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~611~^0.019^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~612~^0.342^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~613~^2.545^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~614~^1.202^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~617~^4.489^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~618~^0.234^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~619~^0.065^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~620~^0.002^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~626~^0.767^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~ -~22908~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~22908~^~645~^5.260^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22908~^~646~^0.300^1^^~1~^^^^^^^^^^^~03/01/2003~ -~22910~^~312~^0.109^2^^~1~^~A~^^^1^0.104^0.113^1^^^^~05/01/2013~ -~22910~^~315~^0.197^2^^~1~^~A~^^^1^0.196^0.197^1^^^^~02/01/2004~ -~22910~^~404~^0.114^2^^~1~^~A~^^^1^0.100^0.127^1^^^^~05/01/2013~ -~22910~^~405~^0.154^2^^~1~^~A~^^^1^0.145^0.162^1^^^^~05/01/2013~ -~22910~^~406~^1.361^2^^~1~^~A~^^^1^1.305^1.417^1^^^^~05/01/2013~ -~22910~^~410~^0.204^2^^~1~^~A~^^^1^0.196^0.211^1^^^^~02/01/2004~ -~22910~^~415~^0.069^2^^~1~^~A~^^^1^0.068^0.070^1^^^^~05/01/2013~ -~22910~^~501~^0.065^2^^~1~^~A~^^^1^0.060^0.070^1^^^^~02/01/2006~ -~22910~^~502~^0.205^2^^~1~^~A~^^^1^0.200^0.210^1^^^^~02/01/2006~ -~22910~^~503~^0.200^2^^~1~^~A~^^^1^0.190^0.210^1^^^^~02/01/2006~ -~22910~^~504~^0.530^2^^~1~^~A~^^^1^0.510^0.550^1^^^^~02/01/2006~ -~22910~^~505~^0.360^2^^~1~^~A~^^^1^0.360^0.360^^^^^~02/01/2006~ -~22910~^~506~^0.145^2^^~1~^~A~^^^1^0.140^0.150^1^^^^~02/01/2006~ -~22910~^~507~^0.105^2^^~1~^~A~^^^1^0.090^0.120^1^^^^~02/01/2006~ -~22910~^~508~^0.285^2^^~1~^~A~^^^1^0.280^0.290^1^^^^~02/01/2006~ -~22910~^~509~^0.235^2^^~1~^~A~^^^1^0.230^0.240^1^^^^~02/01/2006~ -~22910~^~510~^0.255^2^^~1~^~A~^^^1^0.240^0.270^1^^^^~02/01/2006~ -~22910~^~511~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~02/01/2006~ -~22910~^~512~^0.145^2^^~1~^~A~^^^1^0.140^0.150^1^^^^~02/01/2006~ -~22910~^~513~^0.215^2^^~1~^~A~^^^1^0.210^0.220^1^^^^~02/01/2006~ -~22910~^~514~^0.555^2^^~1~^~A~^^^1^0.540^0.570^1^^^^~02/01/2006~ -~22910~^~515~^1.825^2^^~1~^~A~^^^1^1.820^1.830^1^^^^~02/01/2006~ -~22910~^~516~^0.150^2^^~1~^~A~^^^1^0.150^0.150^^^^^~02/01/2006~ -~22910~^~517~^2.180^1^^~1~^~A~^^^^^^^^^^~02/01/2006~ -~22910~^~518~^0.390^2^^~1~^~A~^^^1^0.380^0.400^1^^^^~02/01/2006~ -~22910~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2006~ -~22910~^~605~^0.000^0^^~4~^~BFYN~^~32019~^^^^^^^^^~04/01/2013~ -~22910~^~606~^2.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~611~^0.061^2^^~1~^~A~^^^1^0.000^0.121^1^^^~1~^~05/01/2013~ -~22910~^~612~^0.369^2^^~1~^~A~^^^1^0.326^0.412^1^^^^~05/01/2013~ -~22910~^~613~^1.212^2^^~1~^~A~^^^1^1.100^1.323^1^^^^~05/01/2013~ -~22910~^~614~^0.469^2^^~1~^~A~^^^1^0.435^0.503^1^^^^~05/01/2013~ -~22910~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~617~^1.462^2^^~1~^~A~^^^1^1.413^1.510^1^^^^~05/01/2013~ -~22910~^~618~^0.893^2^^~1~^~A~^^^1^0.792^0.993^1^^^^~05/01/2013~ -~22910~^~619~^0.129^2^^~1~^~A~^^^1^0.128^0.130^1^^^^~05/01/2013~ -~22910~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~626~^0.111^2^^~1~^~A~^^^1^0.102^0.120^1^^^^~05/01/2013~ -~22910~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22910~^~645~^1.573^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~646~^1.022^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~22910~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2004~ -~22910~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2004~ -~22910~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2013~ -~22911~^~312~^0.188^12^0.040^~1~^~A~^^^1^0.020^0.390^11^0.101^0.275^~2, 3~^~02/01/2004~ -~22911~^~315~^0.276^12^0.041^~1~^~A~^^^1^0.079^0.590^11^0.186^0.366^~2, 3~^~02/01/2004~ -~22911~^~404~^0.031^5^0.005^~1~^~A~^^^1^0.019^0.048^4^0.017^0.045^~2, 3~^~02/01/2004~ -~22911~^~405~^0.111^6^0.005^~1~^~A~^^^1^0.101^0.132^5^0.099^0.123^~2, 3~^~02/01/2004~ -~22911~^~406~^1.245^6^0.110^~1~^~A~^^^1^1.016^1.777^5^0.961^1.529^~2, 3~^~02/01/2004~ -~22911~^~410~^0.157^3^0.006^~1~^~A~^^^1^0.144^0.163^2^0.129^0.184^~2, 3~^~02/01/2004~ -~22911~^~415~^0.129^6^0.011^~1~^~A~^^^1^0.101^0.182^5^0.099^0.158^~2, 3~^~02/01/2004~ -~22911~^~502~^0.309^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~503~^0.298^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~504~^0.559^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~505~^0.393^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~506~^0.103^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~508~^0.284^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~509~^0.188^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~510~^0.378^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~511~^0.406^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~512~^0.168^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~513~^0.522^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~514~^0.636^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~515~^1.240^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~516~^0.625^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~517~^0.457^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~518~^0.332^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~606~^2.255^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~22911~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~611~^0.015^6^0.005^~1~^~A~^^^1^0.005^0.039^5^0.001^0.029^~2, 3~^~02/01/2004~ -~22911~^~612~^0.164^6^0.031^~1~^~A~^^^1^0.087^0.281^5^0.083^0.244^~2, 3~^~02/01/2004~ -~22911~^~613~^1.260^6^0.236^~1~^~A~^^^1^0.676^2.115^5^0.654^1.866^~2, 3~^~02/01/2004~ -~22911~^~614~^0.687^6^0.140^~1~^~A~^^^1^0.348^1.188^5^0.326^1.047^~2, 3~^~02/01/2004~ -~22911~^~615~^0.011^6^0.002^~1~^~A~^^^1^0.006^0.020^5^0.006^0.017^~2, 3~^~02/01/2004~ -~22911~^~617~^2.057^5^0.400^~1~^~A~^^^1^1.241^3.311^4^0.947^3.168^~2, 3~^~02/01/2004~ -~22911~^~618~^0.408^6^0.044^~1~^~A~^^^1^0.271^0.565^5^0.294^0.522^~2, 3~^~02/01/2004~ -~22911~^~619~^0.052^6^0.007^~1~^~A~^^^1^0.031^0.077^5^0.033^0.071^~2, 3~^~02/01/2004~ -~22911~^~620~^0.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~624~^0.008^5^0.001^~1~^~A~^^^1^0.006^0.011^4^0.006^0.010^~2, 3~^~02/01/2004~ -~22911~^~625~^0.054^6^0.010^~1~^~A~^^^1^0.029^0.093^5^0.028^0.081^~2, 3~^~02/01/2004~ -~22911~^~626~^0.241^6^0.046^~1~^~A~^^^1^0.129^0.408^5^0.124^0.358^~2, 3~^~02/01/2004~ -~22911~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~628~^0.047^6^0.009^~1~^~A~^^^1^0.024^0.073^5^0.024^0.070^~2, 3~^~02/01/2004~ -~22911~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~630~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~02/01/2004~ -~22911~^~631~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~22911~^~645~^2.469^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~ -~22911~^~646~^0.501^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~22911~^~652~^0.030^6^0.006^~1~^~A~^^^1^0.015^0.049^5^0.015^0.045^~2, 3~^~02/01/2004~ -~22911~^~653~^0.075^6^0.015^~1~^~A~^^^1^0.037^0.124^5^0.036^0.114^~2, 3~^~02/01/2004~ -~22911~^~654~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2004~ -~22911~^~687~^0.066^5^0.013^~1~^~A~^^^1^0.038^0.109^4^0.029^0.102^~2, 3~^~02/01/2004~ -~22911~^~689~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.011^5^0.005^0.010^~2, 3~^~02/01/2004~ -~22912~^~312~^0.053^18^0.001^~1~^~A~^^^1^0.040^0.060^8^0.050^0.056^~2, 3~^~07/01/2014~ -~22912~^~315~^0.144^18^0.002^~1~^~A~^^^1^0.130^0.180^10^0.139^0.150^~2, 3~^~07/01/2014~ -~22912~^~404~^0.081^9^0.005^~1~^~A~^^^1^0.030^0.180^4^0.068^0.094^~2, 3~^~07/01/2014~ -~22912~^~405~^0.066^9^0.004^~1~^~A~^^^1^0.020^0.180^4^0.054^0.078^~2, 3~^~07/01/2014~ -~22912~^~406~^2.017^9^0.063^~1~^~A~^^^1^1.360^3.640^3^1.822^2.211^~2, 3~^~07/01/2014~ -~22912~^~410~^0.293^6^0.006^~1~^~A~^^^1^0.280^0.310^1^0.236^0.350^~2, 3~^~07/01/2014~ -~22912~^~415~^0.069^9^0.002^~1~^~A~^^^1^0.060^0.100^2^0.063^0.076^~2, 3~^~07/01/2014~ -~22912~^~501~^0.032^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~502~^0.118^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~503~^0.121^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~504~^0.268^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~505~^0.131^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~506~^0.065^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~507~^0.053^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~508~^0.160^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~509~^0.112^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~510~^0.146^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~511~^0.194^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~512~^0.083^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~513~^0.185^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~514~^0.321^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~515~^1.048^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~516~^0.189^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~517~^0.359^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~518~^0.174^0^^~1~^~A~^^^^^^^^^^~06/01/2013~ -~22912~^~521~^0.059^3^^~1~^~A~^^^1^0.030^0.070^^^^~2, 3~^~07/01/2014~ -~22912~^~605~^0.113^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~606~^1.459^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~607~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.006^2^0.000^0.005^~1, 2, 3~^~06/01/2012~ -~22912~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~609~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~610~^0.009^9^0.001^~1~^~A~^^^1^0.006^0.010^3^0.007^0.011^~2, 3~^~06/01/2012~ -~22912~^~611~^0.006^9^0.000^~1~^~A~^^^1^0.004^0.007^3^0.005^0.007^~2, 3~^~06/01/2012~ -~22912~^~612~^0.077^9^0.002^~1~^~A~^^^1^0.040^0.120^4^0.070^0.083^~2, 3~^~07/01/2014~ -~22912~^~613~^0.841^9^0.013^~1~^~A~^^^1^0.560^1.110^3^0.794^0.888^~2, 3~^~07/01/2014~ -~22912~^~614~^0.483^9^0.009^~1~^~A~^^^1^0.270^0.670^2^0.445^0.522^~2, 3~^~07/01/2014~ -~22912~^~615~^0.007^9^0.000^~1~^~A~^^^1^0.004^0.008^4^0.006^0.007^~2, 3~^~07/01/2014~ -~22912~^~617~^1.485^9^0.028^~1~^~AS~^^^1^0.970^1.970^3^1.403^1.567^~2, 3~^~07/01/2014~ -~22912~^~618~^0.509^9^0.008^~1~^~AS~^^^1^0.380^0.600^4^0.485^0.532^~2, 3~^~07/01/2014~ -~22912~^~619~^0.021^9^0.000^~1~^~AS~^^^1^0.020^0.022^2^0.019^0.022^~2, 3~^~07/01/2014~ -~22912~^~620~^0.009^9^0.000^~1~^~A~^^^1^0.008^0.010^4^0.009^0.010^~2, 3~^~02/01/2004~ -~22912~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~06/01/2012~ -~22912~^~624~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~06/01/2012~ -~22912~^~625~^0.011^9^0.001^~1~^~A~^^^1^0.004^0.030^4^0.009^0.013^~2, 3~^~07/01/2014~ -~22912~^~626~^0.105^9^0.002^~1~^~AS~^^^1^0.053^0.170^3^0.098^0.113^~2, 3~^~07/01/2014~ -~22912~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~628~^0.016^9^0.000^~1~^~A~^^^1^0.010^0.020^2^0.014^0.018^~2, 3~^~07/01/2014~ -~22912~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.001^~2, 3~^~06/01/2012~ -~22912~^~631~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^3^0.003^0.004^~1, 2, 3~^~06/01/2012~ -~22912~^~645~^1.633^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~646~^0.563^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~652~^0.010^9^0.001^~1~^~A~^^^1^0.005^0.020^4^0.008^0.012^~2, 3~^~07/01/2014~ -~22912~^~653~^0.021^9^0.002^~1~^~A~^^^1^0.010^0.040^2^0.014^0.029^~2, 3~^~07/01/2014~ -~22912~^~654~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22912~^~662~^0.007^9^0.000^~1~^~A~^^^1^0.003^0.010^5^0.006^0.008^~2, 3~^~06/01/2012~ -~22912~^~663~^0.093^9^0.009^~1~^~A~^^^1^0.030^0.220^5^0.069^0.118^~2, 3~^~07/01/2014~ -~22912~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~665~^0.013^9^0.002^~1~^~A~^^^1^0.007^0.030^3^0.006^0.020^~2, 3~^~07/01/2014~ -~22912~^~670~^0.013^9^0.002^~1~^~A~^^^1^0.005^0.020^2^0.005^0.020^~2, 3~^~07/01/2014~ -~22912~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~672~^0.010^9^0.000^~1~^~A~^^^1^0.008^0.010^2^0.009^0.011^~2, 3~^~06/01/2012~ -~22912~^~673~^0.098^9^0.002^~1~^~A~^^^1^0.050^0.160^3^0.091^0.106^~2, 3~^~07/01/2014~ -~22912~^~674~^1.391^9^0.022^~1~^~A~^^^1^0.910^1.770^4^1.329^1.454^~2, 3~^~07/01/2014~ -~22912~^~675~^0.483^9^0.010^~1~^~A~^^^1^0.360^0.580^3^0.454^0.512^~2, 3~^~07/01/2014~ -~22912~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~06/01/2012~ -~22912~^~685~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~07/01/2014~ -~22912~^~687~^0.015^9^0.002^~1~^~A~^^^1^0.008^0.030^2^0.008^0.023^~2, 3~^~07/01/2014~ -~22912~^~689~^0.007^9^0.000^~1~^~AS~^^^1^0.002^0.009^3^0.006^0.008^~2, 3~^~07/01/2014~ -~22912~^~693~^0.100^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22912~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22912~^~851~^0.020^9^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~06/01/2012~ -~22912~^~852~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.004^4^0.002^0.003^~1, 2, 3~^~06/01/2012~ -~22912~^~853~^0.005^9^0.000^~1~^~A~^^^1^0.002^0.006^5^0.004^0.005^~1, 2, 3~^~07/01/2014~ -~22912~^~858~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.005^4^0.003^0.005^~1, 2, 3~^~07/01/2014~ -~22914~^~312~^0.054^11^0.005^~1~^~A~^^^1^0.026^0.082^10^0.042^0.066^~2, 3~^~04/01/2011~ -~22914~^~315~^0.162^11^0.007^~1~^~A~^^^1^0.116^0.188^10^0.146^0.177^~2, 3~^~04/01/2011~ -~22914~^~404~^0.058^6^0.005^~1~^~A~^^^1^0.040^0.070^5^0.046^0.071^~2, 3~^~04/01/2011~ -~22914~^~405~^0.052^6^0.007^~1~^~A~^^^1^0.030^0.080^5^0.034^0.070^~2, 3~^~04/01/2011~ -~22914~^~406~^1.302^6^0.054^~1~^~A~^^^1^1.140^1.460^5^1.164^1.440^~2, 3~^~04/01/2011~ -~22914~^~410~^0.111^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22914~^~415~^0.058^6^0.004^~1~^~A~^^^1^0.044^0.068^5^0.048^0.067^~2, 3~^~04/01/2011~ -~22914~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~606~^0.167^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~22914~^~607~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22914~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22914~^~609~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~610~^0.004^11^0.002^~1~^~A~^^^1^0.001^0.023^10^-0.001^0.008^~1, 2, 3~^~07/01/2017~ -~22914~^~611~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^10^0.002^0.004^~1, 2, 3~^~07/01/2017~ -~22914~^~612~^0.011^11^0.001^~1~^~A~^^^1^0.007^0.015^10^0.009^0.013^~2, 3~^~07/01/2017~ -~22914~^~613~^0.113^11^0.006^~1~^~A~^^^1^0.088^0.140^10^0.100^0.126^~2, 3~^~07/01/2017~ -~22914~^~614~^0.025^11^0.001^~1~^~A~^^^1^0.019^0.032^10^0.022^0.028^~2, 3~^~07/01/2017~ -~22914~^~615~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22914~^~617~^0.100^11^0.008^~1~^~AS~^^^1^0.061^0.141^10^0.082^0.117^~2, 3~^~07/01/2017~ -~22914~^~618~^0.190^11^0.014^~1~^~AS~^^^1^0.102^0.255^10^0.158^0.222^~2, 3~^~07/01/2017~ -~22914~^~619~^0.015^11^0.001^~1~^~AS~^^^1^0.006^0.022^10^0.012^0.018^~2, 3~^~07/01/2017~ -~22914~^~620~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~624~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~22914~^~625~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~626~^0.002^11^0.000^~1~^~AS~^^^1^0.000^0.004^10^0.001^0.003^~2, 3~^~04/01/2011~ -~22914~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~628~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.002^0.003^~1, 2, 3~^~07/01/2017~ -~22914~^~629~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.007^10^0.000^0.003^~1, 2, 3~^~07/01/2017~ -~22914~^~630~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.002^10^0.000^0.001^~2, 3~^~04/01/2011~ -~22914~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22914~^~645~^0.109^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~646~^0.210^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~652~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.002^0.002^~1, 2, 3~^~07/01/2017~ -~22914~^~653~^0.001^11^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~654~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22914~^~662~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22914~^~663~^0.005^11^0.000^~1~^~A~^^^1^0.003^0.007^10^0.004^0.006^~2, 3~^~07/01/2017~ -~22914~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~665~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.003^10^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~22914~^~670~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~671~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.007^10^0.001^0.005^~1, 2, 3~^~07/01/2017~ -~22914~^~672~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~04/01/2011~ -~22914~^~673~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22914~^~674~^0.095^11^0.008^~1~^~A~^^^1^0.057^0.134^10^0.078^0.112^~2, 3~^~07/01/2017~ -~22914~^~675~^0.188^11^0.015^~1~^~A~^^^1^0.099^0.253^10^0.155^0.220^~2, 3~^~07/01/2017~ -~22914~^~676~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~687~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22914~^~689~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.003^10^0.000^0.002^~2, 3~^~03/01/2004~ -~22914~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~22914~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22914~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~851~^0.015^11^0.001^~1~^~A~^^^1^0.006^0.022^10^0.012^0.018^~2, 3~^~07/01/2017~ -~22914~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22914~^~853~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.000^0.002^~1, 2, 3~^~04/01/2011~ -~22914~^~858~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.003^~1, 2, 3~^~07/01/2017~ -~22915~^~312~^0.167^3^0.058^~1~^~A~^^^1^0.062^0.260^2^-0.080^0.415^~2, 3~^~03/01/2004~ -~22915~^~315~^0.213^3^0.007^~1~^~A~^^^1^0.200^0.220^2^0.185^0.242^~2, 3~^~03/01/2004~ -~22915~^~404~^0.038^2^^~1~^~A~^^^1^0.037^0.039^1^^^^~03/01/2004~ -~22915~^~405~^0.126^2^^~1~^~A~^^^1^0.108^0.143^1^^^^~03/01/2004~ -~22915~^~406~^1.221^2^^~1~^~A~^^^1^1.065^1.376^1^^^^~03/01/2004~ -~22915~^~410~^0.107^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~415~^0.122^2^^~1~^~A~^^^1^0.120^0.124^1^^^^~03/01/2004~ -~22915~^~606~^0.967^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~609~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~610~^0.016^2^^~1~^~A~^^^1^0.006^0.026^1^^^^~03/01/2004~ -~22915~^~611~^0.029^2^^~1~^~A~^^^1^0.012^0.045^1^^^^~03/01/2004~ -~22915~^~612~^0.119^2^^~1~^~A~^^^1^0.047^0.190^1^^^^~03/01/2004~ -~22915~^~613~^0.516^2^^~1~^~A~^^^1^0.284^0.748^1^^^^~03/01/2004~ -~22915~^~614~^0.240^2^^~1~^~A~^^^1^0.131^0.349^1^^^^~03/01/2004~ -~22915~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~617~^0.602^2^^~1~^~A~^^^1^0.389^0.814^1^^^^~03/01/2004~ -~22915~^~618~^0.244^2^^~1~^~A~^^^1^0.237^0.250^1^^^^~03/01/2004~ -~22915~^~619~^0.034^2^^~1~^~A~^^^1^0.026^0.041^1^^^^~03/01/2004~ -~22915~^~624~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~03/01/2004~ -~22915~^~625~^0.019^2^^~1~^~A~^^^1^0.010^0.027^1^^^^~03/01/2004~ -~22915~^~626~^0.049^2^^~1~^~A~^^^1^0.028^0.069^1^^^^~03/01/2004~ -~22915~^~630~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~03/01/2004~ -~22915~^~645~^0.698^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~646~^0.279^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~ -~22915~^~652~^0.018^2^^~1~^~A~^^^1^0.009^0.026^1^^^^~03/01/2004~ -~22915~^~653~^0.019^2^^~1~^~A~^^^1^0.013^0.024^1^^^^~03/01/2004~ -~22915~^~687~^0.025^2^^~1~^~A~^^^1^0.023^0.027^1^^^^~03/01/2004~ -~22915~^~689~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22915~^~696~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2004~ -~22916~^~312~^0.086^12^0.001^~1~^~A~^^^1^0.064^0.096^9^0.083^0.089^~2, 3~^~07/01/2014~ -~22916~^~315~^0.178^12^0.003^~1~^~A~^^^1^0.163^0.208^5^0.171^0.184^~2, 3~^~07/01/2014~ -~22916~^~404~^0.052^6^0.002^~1~^~A~^^^1^0.040^0.120^2^0.045^0.059^~2, 3~^~07/01/2014~ -~22916~^~405~^0.050^6^0.001^~1~^~A~^^^1^0.040^0.110^2^0.045^0.055^~2, 3~^~07/01/2014~ -~22916~^~406~^1.426^6^0.012^~1~^~A~^^^1^1.350^1.710^3^1.385^1.467^~2, 3~^~07/01/2014~ -~22916~^~410~^0.298^4^0.004^~1~^~A~^^^1^0.280^0.410^1^0.244^0.352^~2, 3~^~07/01/2014~ -~22916~^~415~^0.124^6^0.002^~1~^~A~^^^1^0.094^0.131^4^0.118^0.131^~2, 3~^~07/01/2014~ -~22916~^~501~^0.077^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~502~^0.199^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~503~^0.204^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~504~^0.525^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~505~^0.442^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~506~^0.149^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~507~^0.105^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~508~^0.299^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~509~^0.217^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~510~^0.260^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~511~^0.298^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~512~^0.166^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~513~^0.271^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~514~^0.526^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~515~^1.700^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~516~^0.255^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~517~^0.715^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~518~^0.338^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22916~^~521~^0.052^2^^~1~^~A~^^^1^0.050^0.060^^^^^~07/01/2014~ -~22916~^~605~^0.180^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~606~^2.067^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~607~^0.037^6^0.004^~1~^~A~^^^1^0.025^0.054^2^0.021^0.052^~2, 3~^~07/01/2014~ -~22916~^~608~^0.026^6^0.003^~1~^~A~^^^1^0.015^0.041^2^0.011^0.040^~2, 3~^~07/01/2014~ -~22916~^~609~^0.016^6^0.002^~1~^~A~^^^1^0.011^0.026^2^0.010^0.023^~2, 3~^~07/01/2014~ -~22916~^~610~^0.045^6^0.004^~1~^~A~^^^1^0.031^0.073^2^0.028^0.062^~2, 3~^~07/01/2014~ -~22916~^~611~^0.050^6^0.004^~1~^~A~^^^1^0.034^0.081^2^0.031^0.068^~2, 3~^~07/01/2014~ -~22916~^~612~^0.230^6^0.018^~1~^~A~^^^1^0.175^0.308^2^0.155^0.305^~2, 3~^~07/01/2014~ -~22916~^~613~^1.060^6^0.080^~1~^~A~^^^1^0.831^1.313^2^0.719^1.402^~2, 3~^~07/01/2014~ -~22916~^~614~^0.522^6^0.046^~1~^~A~^^^1^0.407^0.592^2^0.324^0.720^~2, 3~^~07/01/2014~ -~22916~^~615~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.008^2^0.004^0.009^~2, 3~^~07/01/2014~ -~22916~^~617~^1.411^6^0.101^~1~^~AS~^^^1^1.164^1.626^2^0.977^1.845^~2, 3~^~07/01/2014~ -~22916~^~618~^0.315^6^0.008^~1~^~AS~^^^1^0.263^0.504^2^0.282^0.347^~2, 3~^~07/01/2014~ -~22916~^~619~^0.023^6^0.002^~1~^~AS~^^^1^0.018^0.031^2^0.016^0.031^~2, 3~^~07/01/2014~ -~22916~^~620~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.012^2^0.004^0.009^~2, 3~^~07/01/2014~ -~22916~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~06/01/2012~ -~22916~^~625~^0.030^6^0.002^~1~^~A~^^^1^0.025^0.035^2^0.021^0.039^~2, 3~^~07/01/2014~ -~22916~^~626~^0.124^6^0.010^~1~^~AS~^^^1^0.105^0.148^2^0.080^0.169^~2, 3~^~07/01/2014~ -~22916~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~06/01/2012~ -~22916~^~628~^0.013^6^0.001^~1~^~A~^^^1^0.010^0.020^2^0.010^0.016^~2, 3~^~07/01/2014~ -~22916~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2012~ -~22916~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^2^0.000^0.000^~2, 3~^~06/01/2012~ -~22916~^~631~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.005^~1, 2, 3~^~06/01/2012~ -~22916~^~645~^1.600^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~646~^0.358^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~652~^0.028^6^0.002^~1~^~A~^^^1^0.023^0.033^2^0.020^0.037^~2, 3~^~07/01/2014~ -~22916~^~653~^0.038^6^0.003^~1~^~A~^^^1^0.031^0.046^2^0.024^0.052^~2, 3~^~07/01/2014~ -~22916~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.004^~1, 2, 3~^~06/01/2012~ -~22916~^~662~^0.013^6^0.001^~1~^~A~^^^1^0.011^0.015^2^0.009^0.017^~2, 3~^~06/01/2012~ -~22916~^~663~^0.140^6^0.007^~1~^~A~^^^1^0.106^0.156^2^0.111^0.169^~2, 3~^~07/01/2014~ -~22916~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~665~^0.027^6^0.001^~1~^~A~^^^1^0.022^0.029^3^0.024^0.030^~2, 3~^~06/01/2012~ -~22916~^~670~^0.020^6^0.001^~1~^~A~^^^1^0.016^0.023^2^0.016^0.024^~2, 3~^~06/01/2012~ -~22916~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~672~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.012^3^0.002^0.004^~1, 2, 3~^~07/01/2014~ -~22916~^~673~^0.111^6^0.009^~1~^~A~^^^1^0.094^0.133^2^0.071^0.152^~2, 3~^~07/01/2014~ -~22916~^~674~^1.271^6^0.102^~1~^~A~^^^1^1.008^1.515^2^0.832^1.710^~2, 3~^~07/01/2014~ -~22916~^~675~^0.267^6^0.006^~1~^~A~^^^1^0.218^0.462^2^0.243^0.291^~2, 3~^~07/01/2014~ -~22916~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~06/01/2012~ -~22916~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~06/01/2012~ -~22916~^~687~^0.022^6^0.003^~1~^~A~^^^1^0.015^0.029^2^0.011^0.033^~2, 3~^~07/01/2014~ -~22916~^~689~^0.005^6^0.000^~1~^~AS~^^^1^0.004^0.010^3^0.004^0.006^~2, 3~^~07/01/2014~ -~22916~^~693~^0.153^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22916~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22916~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22916~^~851~^0.023^6^0.002^~1~^~A~^^^1^0.018^0.031^2^0.016^0.030^~2, 3~^~07/01/2014~ -~22916~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22916~^~853~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.008^3^0.004^0.006^~2, 3~^~07/01/2014~ -~22916~^~858~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^2^-0.001^0.005^~1, 2, 3~^~07/01/2014~ -~22917~^~312~^0.211^2^^~1~^~A~^^^1^0.190^0.233^1^^^^~01/01/2007~ -~22917~^~315~^0.481^2^^~1~^~A~^^^1^0.449^0.512^1^^^^~01/01/2007~ -~22917~^~404~^0.393^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~22917~^~405~^0.236^2^^~1~^~A~^^^1^0.235^0.238^1^^^^~01/01/2007~ -~22917~^~406~^2.889^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~ -~22917~^~410~^0.008^2^^~1~^~A~^^^1^0.004^0.011^1^^^^~04/01/2004~ -~22917~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~01/01/2007~ -~22917~^~606~^2.949^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22917~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~612~^0.196^2^^~1~^~A~^^^1^0.196^0.197^1^^^^~01/01/2007~ -~22917~^~613~^1.777^2^^~1~^~A~^^^1^1.774^1.780^1^^^^~01/01/2007~ -~22917~^~614~^0.976^2^^~1~^~A~^^^1^0.970^0.981^1^^^^~01/01/2007~ -~22917~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~617~^3.502^2^^~1~^~A~^^^1^3.489^3.515^1^^^^~01/01/2007~ -~22917~^~618~^1.199^2^^~1~^~A~^^^1^1.184^1.214^1^^^^~01/01/2007~ -~22917~^~619~^0.159^2^^~1~^~A~^^^1^0.155^0.163^1^^^^~01/01/2007~ -~22917~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~626~^0.287^2^^~1~^~A~^^^1^0.282^0.291^1^^^^~01/01/2007~ -~22917~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~645~^3.789^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22917~^~646~^1.358^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22917~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22917~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2007~ -~22918~^~312~^0.129^11^0.004^~1~^~A~^^^1^0.105^0.154^1^0.102^0.156^~2, 3~^~03/01/2011~ -~22918~^~315~^0.408^11^0.014^~1~^~A~^^^1^0.330^0.531^4^0.367^0.450^~2, 3~^~03/01/2011~ -~22918~^~404~^0.287^11^0.013^~1~^~A~^^^1^0.200^0.370^7^0.258^0.317^~2, 3~^~03/01/2011~ -~22918~^~405~^0.143^11^0.009^~1~^~A~^^^1^0.100^0.200^4^0.118^0.167^~2, 3~^~03/01/2011~ -~22918~^~406~^2.480^11^0.064^~1~^~A~^^^1^2.000^2.910^6^2.324^2.637^~2, 3~^~03/01/2011~ -~22918~^~410~^0.403^4^0.003^~1~^~A~^^^1^0.370^0.470^1^0.365^0.441^~2, 3~^~03/01/2011~ -~22918~^~415~^0.085^9^0.002^~1~^~A~^^^1^0.071^0.098^4^0.079^0.092^~2, 3~^~03/01/2011~ -~22918~^~605~^0.041^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~606~^1.343^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~607~^0.021^11^0.001^~1~^~A~^^^1^0.009^0.029^7^0.019^0.022^~2, 3~^~03/01/2011~ -~22918~^~608~^0.015^11^0.001^~1~^~A~^^^1^0.008^0.024^2^0.012^0.018^~2, 3~^~03/01/2011~ -~22918~^~609~^0.011^11^0.000^~1~^~A~^^^1^0.005^0.016^6^0.010^0.012^~2, 3~^~03/01/2011~ -~22918~^~610~^0.022^11^0.001^~1~^~A~^^^1^0.011^0.035^2^0.020^0.024^~2, 3~^~03/01/2011~ -~22918~^~611~^0.026^11^0.001^~1~^~A~^^^1^0.013^0.039^2^0.023^0.028^~2, 3~^~03/01/2011~ -~22918~^~612~^0.083^11^0.002^~1~^~A~^^^1^0.043^0.125^2^0.075^0.091^~2, 3~^~03/01/2011~ -~22918~^~613~^0.795^11^0.013^~1~^~A~^^^1^0.651^1.006^2^0.726^0.864^~2, 3~^~03/01/2011~ -~22918~^~614~^0.310^11^0.006^~1~^~A~^^^1^0.242^0.406^2^0.288^0.333^~2, 3~^~03/01/2011~ -~22918~^~615~^0.017^11^0.000^~1~^~A~^^^1^0.014^0.021^1^0.013^0.020^~2, 3~^~03/01/2011~ -~22918~^~617~^1.252^11^0.024^~1~^~AS~^^^1^1.064^1.539^2^1.146^1.357^~2, 3~^~03/01/2011~ -~22918~^~618~^2.649^11^0.046^~1~^~AS~^^^1^2.261^3.123^2^2.472^2.826^~2, 3~^~03/01/2011~ -~22918~^~619~^0.446^11^0.008^~1~^~AS~^^^1^0.359^0.542^2^0.414^0.478^~2, 3~^~03/01/2011~ -~22918~^~620~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^6^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~22918~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~624~^0.015^11^0.000^~1~^~A~^^^1^0.013^0.019^2^0.013^0.017^~2, 3~^~03/01/2011~ -~22918~^~625~^0.006^11^0.000^~1~^~A~^^^1^0.003^0.010^3^0.006^0.007^~2, 3~^~03/01/2011~ -~22918~^~626~^0.019^11^0.001^~1~^~AS~^^^1^0.012^0.026^2^0.016^0.021^~2, 3~^~03/01/2011~ -~22918~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~628~^0.016^11^0.001^~1~^~A~^^^1^0.012^0.019^8^0.014^0.017^~2, 3~^~03/01/2011~ -~22918~^~629~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~22918~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.002^6^0.000^0.001^~2, 3~^~12/01/2006~ -~22918~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2006~ -~22918~^~645~^1.298^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~646~^3.104^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~652~^0.010^11^0.000^~1~^~A~^^^1^0.007^0.015^2^0.008^0.012^~2, 3~^~03/01/2011~ -~22918~^~653~^0.011^11^0.000^~1~^~A~^^^1^0.008^0.015^2^0.009^0.013^~2, 3~^~03/01/2011~ -~22918~^~654~^0.007^11^0.000^~1~^~A~^^^1^0.005^0.009^4^0.006^0.008^~2, 3~^~03/01/2011~ -~22918~^~662~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.004^2^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~22918~^~663~^0.024^11^0.001^~1~^~A~^^^1^0.013^0.034^6^0.022^0.026^~2, 3~^~03/01/2011~ -~22918~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22918~^~665~^0.014^11^0.000^~1~^~A~^^^1^0.009^0.017^5^0.013^0.014^~2, 3~^~03/01/2011~ -~22918~^~670~^0.007^11^0.000^~1~^~A~^^^1^0.003^0.010^6^0.006^0.007^~2, 3~^~03/01/2011~ -~22918~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.002^~1, 2, 3~^~03/01/2011~ -~22918~^~672~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.004^6^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22918~^~673~^0.016^11^0.000^~1~^~A~^^^1^0.010^0.022^3^0.014^0.017^~2, 3~^~03/01/2011~ -~22918~^~674~^1.228^11^0.024^~1~^~A~^^^1^1.051^1.507^2^1.116^1.339^~2, 3~^~03/01/2011~ -~22918~^~675~^2.628^11^0.046^~1~^~A~^^^1^2.240^3.096^2^2.453^2.804^~2, 3~^~03/01/2011~ -~22918~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22918~^~685~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~687~^0.005^11^0.000^~1~^~A~^^^1^0.004^0.007^3^0.004^0.006^~2, 3~^~03/01/2011~ -~22918~^~689~^0.001^11^0.000^~1~^~AS~^^^1^0.000^0.002^4^0.000^0.001^~2, 3~^~03/01/2011~ -~22918~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22918~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~851~^0.446^11^0.008^~1~^~A~^^^1^0.359^0.542^2^0.414^0.478^~2, 3~^~03/01/2011~ -~22918~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22918~^~853~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22918~^~858~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^7^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22919~^~312~^0.260^2^^~1~^~A~^^^1^0.226^0.293^1^^^^~06/01/2004~ -~22919~^~315~^0.220^2^^~1~^~A~^^^1^0.183^0.257^1^^^^~06/01/2004~ -~22919~^~404~^0.076^2^^~1~^~A~^^^1^0.074^0.077^1^^^^~06/01/2004~ -~22919~^~405~^0.186^2^^~1~^~A~^^^1^0.181^0.190^1^^^^~06/01/2004~ -~22919~^~406~^1.046^2^^~1~^~A~^^^1^0.994^1.098^1^^^^~06/01/2004~ -~22919~^~410~^0.130^1^^~1~^~A~^^^^^^^^^^~06/01/2004~ -~22919~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~06/01/2004~ -~22919~^~606~^3.665^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22919~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~610~^0.142^2^^~1~^~A~^^^1^0.123^0.140^1^^^^~06/01/2015~ -~22919~^~611~^0.190^2^^~1~^~A~^^^1^0.170^0.182^1^^^^~06/01/2015~ -~22919~^~612~^0.622^2^^~1~^~A~^^^1^0.545^0.609^1^^^^~06/01/2015~ -~22919~^~613~^1.836^2^^~1~^~A~^^^1^1.622^1.782^1^^^^~06/01/2015~ -~22919~^~614~^0.875^2^^~1~^~A~^^^1^0.773^0.850^1^^^^~06/01/2015~ -~22919~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~617~^1.654^2^^~1~^~A~^^^1^1.473^1.593^1^^^^~06/01/2015~ -~22919~^~618~^0.431^2^^~1~^~A~^^^1^0.384^0.415^1^^^^~06/01/2015~ -~22919~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~626~^0.119^2^^~1~^~A~^^^1^0.104^0.117^1^^^^~06/01/2015~ -~22919~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~645~^1.773^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22919~^~646~^0.431^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22919~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2004~ -~22919~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22919~^~696~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2004~ -~22928~^~312~^0.228^6^0.024^~1~^~A~^^^1^0.158^0.307^5^0.166^0.291^~2, 3~^~01/01/2007~ -~22928~^~315~^0.531^6^0.051^~1~^~A~^^^1^0.328^0.682^5^0.401^0.662^~2, 3~^~01/01/2007~ -~22928~^~404~^0.461^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~405~^0.230^6^0.025^~1~^~A~^^^1^0.134^0.283^5^0.166^0.295^~2, 3~^~01/01/2007~ -~22928~^~406~^3.566^0^^~4~^~RA~^^^^^^^^^^~06/01/2009~ -~22928~^~410~^0.008^2^^~1~^~A~^^^1^0.005^0.012^1^^^^~01/01/2007~ -~22928~^~415~^0.132^3^0.018^~1~^~A~^^^1^0.095^0.154^2^0.052^0.211^~2, 3~^~01/01/2007~ -~22928~^~606~^4.072^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22928~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~612~^0.264^3^0.009^~1~^~A~^^^1^0.252^0.282^2^0.224^0.304^~2, 3~^~01/01/2007~ -~22928~^~613~^2.386^3^0.070^~1~^~A~^^^1^2.293^2.523^2^2.085^2.687^~2, 3~^~01/01/2007~ -~22928~^~614~^1.348^3^0.034^~1~^~A~^^^1^1.308^1.416^2^1.200^1.495^~2, 3~^~01/01/2007~ -~22928~^~615~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~617~^4.624^3^0.144^~1~^~A~^^^1^4.466^4.911^2^4.006^5.242^~2, 3~^~01/01/2007~ -~22928~^~618~^1.553^3^0.047^~1~^~A~^^^1^1.470^1.631^2^1.353^1.753^~2, 3~^~01/01/2007~ -~22928~^~619~^0.210^3^0.006^~1~^~A~^^^1^0.199^0.216^2^0.186^0.235^~2, 3~^~01/01/2007~ -~22928~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~625~^0.036^3^0.036^~1~^~A~^^^1^0.000^0.107^2^-0.118^0.189^~1, 2, 3~^~01/01/2007~ -~22928~^~626~^0.375^3^0.013^~1~^~A~^^^1^0.356^0.399^2^0.321^0.429^~2, 3~^~01/01/2007~ -~22928~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~628~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~630~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~645~^5.035^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22928~^~646~^1.763^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~ -~22928~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22928~^~653~^0.075^3^0.037^~1~^~A~^^^1^0.000^0.117^2^-0.086^0.236^~1, 2, 3~^~01/01/2007~ -~22928~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~01/01/2007~ -~22953~^~312~^0.092^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~315~^0.332^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~404~^0.240^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~406~^2.250^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~410~^0.490^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~415~^0.173^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~502~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~503~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~504~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~505~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~506~^0.160^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~508~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~509~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~510~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~511~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~512~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~513~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~514~^0.620^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~515~^2.270^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~516~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~517~^0.740^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~518~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~606~^1.650^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22953~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~612~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~613~^1.060^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~614~^0.448^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~617~^2.241^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22953~^~618~^2.212^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22953~^~619~^0.208^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22953~^~620~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~621~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~626~^0.067^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22953~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~629~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~22953~^~631~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~645~^2.350^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22953~^~646~^2.464^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~ -~22953~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~654~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~671~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~687~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22953~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22953~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22953~^~858~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~312~^0.105^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~315~^0.404^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~404~^0.240^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~405~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~406~^3.630^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~410~^0.660^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~415~^0.287^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~501~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~502~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~503~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~504~^0.680^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~505~^0.480^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~508~^0.430^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~509~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~510~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~511~^0.480^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~512~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~513~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~514~^0.740^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~515~^2.280^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~516~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~517~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~518~^0.430^0^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~606~^0.964^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~22954~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~613~^0.739^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~614~^0.185^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~617~^1.223^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22954~^~618~^1.674^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22954~^~619~^0.117^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22954~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~626~^0.089^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22954~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~ -~22954~^~631~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~645~^1.329^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~22954~^~646~^1.813^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~22954~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22954~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~ -~22954~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~ -~22954~^~858~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2007~ -~22955~^~312~^0.096^6^0.002^~1~^~A~^^^1^0.057^0.120^2^0.087^0.105^~2, 3~^~04/01/2014~ -~22955~^~315~^0.419^6^0.013^~1~^~A~^^^1^0.328^0.720^3^0.377^0.461^~2, 3~^~04/01/2014~ -~22955~^~404~^0.279^3^^~1~^~A~^^^1^0.070^0.380^^^^~2, 3~^~04/01/2014~ -~22955~^~405~^0.245^3^^~1~^~A~^^^1^0.098^0.320^^^^~2, 3~^~04/01/2014~ -~22955~^~406~^2.519^3^^~1~^~A~^^^1^0.740^3.450^^^^~2, 3~^~04/01/2014~ -~22955~^~410~^0.317^2^^~1~^~A~^^^1^0.290^0.330^^^^^~04/01/2014~ -~22955~^~415~^0.095^3^^~1~^~A~^^^1^0.077^0.104^^^^~2, 3~^~04/01/2014~ -~22955~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~502~^0.121^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~503~^0.151^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~504~^0.302^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~505~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~506~^0.071^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~507~^0.081^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~508~^0.202^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~509~^0.101^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~510~^0.151^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~511~^0.212^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~512~^0.091^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~513~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~514~^0.212^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~515~^1.290^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~516~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~517~^0.504^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~518~^0.212^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~22955~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~22955~^~605~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~606~^1.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~607~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~608~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~609~^0.001^3^^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~610~^0.007^3^^~1~^~A~^^^1^0.006^0.007^^^^~2, 3~^~04/01/2014~ -~22955~^~611~^0.004^3^^~1~^~A~^^^1^0.003^0.006^^^^~2, 3~^~04/01/2014~ -~22955~^~612~^0.013^3^^~1~^~A~^^^1^0.007^0.026^^^^~2, 3~^~04/01/2014~ -~22955~^~613~^0.779^3^^~1~^~A~^^^1^0.644^0.848^^^^~2, 3~^~04/01/2014~ -~22955~^~614~^0.271^3^^~1~^~A~^^^1^0.103^0.352^^^^~2, 3~^~04/01/2014~ -~22955~^~615~^0.024^3^^~1~^~A~^^^1^0.010^0.065^^^^~2, 3~^~04/01/2014~ -~22955~^~617~^1.769^3^^~1~^~AS~^^^1^0.695^6.524^^^^~2, 3~^~04/01/2014~ -~22955~^~618~^3.033^3^^~1~^~AS~^^^1^1.609^3.761^^^^~2, 3~^~04/01/2014~ -~22955~^~619~^0.366^3^^~1~^~AS~^^^1^0.048^0.722^^^^~2, 3~^~04/01/2014~ -~22955~^~620~^0.004^3^^~1~^~A~^^^1^0.002^0.009^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~621~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~624~^0.021^3^^~1~^~A~^^^1^0.007^0.032^^^^~2, 3~^~04/01/2014~ -~22955~^~625~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~626~^0.012^3^^~1~^~AS~^^^1^0.007^0.030^^^^~2, 3~^~04/01/2014~ -~22955~^~627~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~628~^0.027^3^^~1~^~A~^^^1^0.006^0.186^^^^~2, 3~^~04/01/2014~ -~22955~^~629~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~630~^0.000^3^^~1~^~AS~^^^1^0.000^0.003^^^^~2, 3~^~07/01/2009~ -~22955~^~631~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~645~^1.811^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~646~^3.406^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~652~^0.002^3^^~1~^~A~^^^1^0.002^0.004^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~653~^0.006^3^^~1~^~A~^^^1^0.004^0.007^^^^~2, 3~^~04/01/2014~ -~22955~^~654~^0.010^3^^~1~^~A~^^^1^0.005^0.020^^^^~2, 3~^~04/01/2014~ -~22955~^~662~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~663~^0.026^3^^~1~^~A~^^^1^0.004^0.036^^^^~2, 3~^~04/01/2014~ -~22955~^~664~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~665~^0.024^3^^~1~^~A~^^^1^0.023^0.027^^^^~2, 3~^~04/01/2014~ -~22955~^~670~^0.006^3^^~1~^~A~^^^1^0.005^0.009^^^^~2, 3~^~04/01/2014~ -~22955~^~671~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~672~^0.003^3^^~1~^~A~^^^1^0.001^0.008^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~673~^0.012^3^^~1~^~A~^^^1^0.007^0.030^^^^~2, 3~^~04/01/2014~ -~22955~^~674~^1.743^3^^~1~^~A~^^^1^0.691^6.492^^^^~2, 3~^~04/01/2014~ -~22955~^~675~^3.003^3^^~1~^~A~^^^1^1.577^3.731^^^^~2, 3~^~04/01/2014~ -~22955~^~676~^0.000^3^^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~685~^0.021^3^^~1~^~A~^^^1^0.001^0.062^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~687~^0.004^3^^~1~^~A~^^^1^0.002^0.006^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~689~^0.000^3^^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2009~ -~22955~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~22955~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22955~^~851~^0.345^3^^~1~^~A~^^^1^0.047^0.660^^^^~2, 3~^~04/01/2014~ -~22955~^~852~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~853~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~856~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~22955~^~858~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2009~ -~22956~^~312~^0.073^2^^~1~^~A~^^^1^0.051^0.095^1^^^^~06/01/2007~ -~22956~^~315~^0.191^2^^~1~^~A~^^^1^0.150^0.231^1^^^^~06/01/2007~ -~22956~^~404~^0.117^2^^~1~^~A~^^^1^0.069^0.164^1^^^^~06/01/2007~ -~22956~^~405~^0.185^2^^~1~^~A~^^^1^0.158^0.213^1^^^^~06/01/2007~ -~22956~^~406~^0.810^2^^~1~^~A~^^^1^0.490^1.130^1^^^^~06/01/2007~ -~22956~^~410~^0.197^2^^~1~^~A~^^^1^0.165^0.228^1^^^^~06/01/2007~ -~22956~^~415~^0.102^2^^~1~^~A~^^^1^0.070^0.134^1^^^^~06/01/2007~ -~22956~^~501~^0.111^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~502~^0.250^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~503~^0.293^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~504~^0.517^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~505~^0.295^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~506~^0.121^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~507~^0.093^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~508~^0.294^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~509~^0.244^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~510~^0.343^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~511~^0.189^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~512~^0.151^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~513~^0.207^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~514~^0.422^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~515~^1.519^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~516~^0.158^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~517~^0.664^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~518~^0.260^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~521~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~606~^2.866^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22956~^~607~^0.134^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~22956~^~608~^0.035^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~ -~22956~^~609~^0.041^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~06/01/2015~ -~22956~^~610~^0.101^2^^~1~^~A~^^^1^0.080^0.090^1^^^^~06/01/2015~ -~22956~^~611~^0.112^2^^~1~^~A~^^^1^0.090^0.100^1^^^^~06/01/2015~ -~22956~^~612~^0.396^2^^~1~^~A~^^^1^0.330^0.340^1^^^^~06/01/2015~ -~22956~^~613~^1.384^2^^~1~^~A~^^^1^1.050^1.290^1^^^^~06/01/2015~ -~22956~^~614~^0.597^2^^~1~^~A~^^^1^0.440^0.570^1^^^^~06/01/2015~ -~22956~^~615~^0.006^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~06/01/2015~ -~22956~^~617~^1.627^2^^~1~^~A~^^^1^1.160^1.590^1^^^^~06/01/2015~ -~22956~^~618~^1.154^2^^~1~^~A~^^^1^0.390^1.560^1^^^^~06/01/2015~ -~22956~^~619~^0.160^2^^~1~^~A~^^^1^0.060^0.210^1^^^^~06/01/2015~ -~22956~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~625~^0.024^2^^~1~^~A~^^^1^0.020^0.020^^^^^~06/01/2015~ -~22956~^~626~^0.059^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~22956~^~627~^0.024^2^^~1~^~A~^^^1^0.020^0.020^^^^^~06/01/2015~ -~22956~^~628~^0.006^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~06/01/2015~ -~22956~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~645~^1.721^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22956~^~646~^1.337^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~22956~^~652~^0.035^2^^~1~^~A~^^^1^0.030^0.030^^^^^~06/01/2015~ -~22956~^~653~^0.024^2^^~1~^~A~^^^1^0.020^0.020^^^^^~06/01/2015~ -~22956~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~687~^0.006^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~06/01/2015~ -~22956~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2007~ -~22956~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~857~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22956~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2007~ -~22957~^~312~^0.056^4^0.004^~1~^~A~^^^1^0.048^0.064^3^0.043^0.069^~2, 3~^~10/01/2007~ -~22957~^~315~^0.157^4^0.012^~1~^~A~^^^1^0.126^0.186^3^0.118^0.196^~2, 3~^~10/01/2007~ -~22957~^~404~^0.138^4^0.016^~1~^~A~^^^1^0.109^0.183^3^0.088^0.188^~2, 3~^~10/01/2007~ -~22957~^~405~^0.252^4^0.108^~1~^~A~^^^1^0.103^0.572^3^-0.091^0.595^~2, 3~^~10/01/2007~ -~22957~^~406~^3.057^4^0.183^~1~^~A~^^^1^2.590^3.350^3^2.474^3.641^~2, 3~^~10/01/2007~ -~22957~^~410~^0.233^4^0.013^~1~^~A~^^^1^0.212^0.272^3^0.191^0.276^~2, 3~^~10/01/2007~ -~22957~^~415~^0.177^4^0.007^~1~^~A~^^^1^0.165^0.198^3^0.154^0.201^~2, 3~^~10/01/2007~ -~22957~^~501~^0.104^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~502~^0.271^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~503~^0.295^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~504~^0.509^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~505~^0.496^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~506~^0.156^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~507~^0.093^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~508~^0.278^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~509~^0.179^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~510~^0.323^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~511~^0.387^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~512~^0.196^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~513~^0.346^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~514~^0.664^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~515~^1.303^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~516~^0.266^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~517~^0.336^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~518~^0.278^0^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~22957~^~606~^0.877^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~22957~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~22957~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~ -~22957~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~610~^0.007^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.023^~1, 2, 3~^~10/01/2007~ -~22957~^~611~^0.010^4^0.006^~1~^~A~^^^1^0.000^0.020^3^-0.008^0.028^~1, 2, 3~^~10/01/2007~ -~22957~^~612~^0.050^4^0.018^~1~^~A~^^^1^0.020^0.090^3^-0.007^0.107^~2, 3~^~10/01/2007~ -~22957~^~613~^0.572^4^0.056^~1~^~A~^^^1^0.470^0.670^3^0.393^0.752^~2, 3~^~10/01/2007~ -~22957~^~614~^0.237^4^0.021^~1~^~A~^^^1^0.200^0.290^3^0.172^0.303^~2, 3~^~10/01/2007~ -~22957~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~617~^1.180^4^0.024^~1~^~A~^^^1^1.130^1.230^3^1.104^1.256^~2, 3~^~10/01/2007~ -~22957~^~618~^0.965^4^0.038^~1~^~A~^^^1^0.880^1.050^3^0.846^1.084^~2, 3~^~10/01/2007~ -~22957~^~619~^0.102^4^0.014^~1~^~A~^^^1^0.070^0.130^3^0.059^0.146^~2, 3~^~10/01/2007~ -~22957~^~620~^0.020^4^0.004^~1~^~A~^^^1^0.010^0.030^3^0.007^0.033^~2, 3~^~10/01/2007~ -~22957~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~626~^0.055^4^0.006^~1~^~A~^^^1^0.040^0.070^3^0.034^0.076^~2, 3~^~10/01/2007~ -~22957~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~628~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~645~^1.235^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~22957~^~646~^1.087^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~ -~22957~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~857~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22957~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2007~ -~22958~^~312~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~1, 2, 3~^~12/01/2007~ -~22958~^~315~^0.207^3^0.018^~1~^~A~^^^1^0.180^0.240^2^0.131^0.282^~2, 3~^~12/01/2007~ -~22958~^~404~^0.073^3^0.005^~1~^~A~^^^1^0.062^0.079^2^0.050^0.096^~2, 3~^~12/01/2007~ -~22958~^~405~^0.055^3^0.012^~1~^~A~^^^1^0.037^0.079^2^0.003^0.108^~2, 3~^~12/01/2007~ -~22958~^~406~^2.270^3^0.185^~1~^~A~^^^1^1.900^2.460^2^1.474^3.066^~2, 3~^~12/01/2007~ -~22958~^~410~^0.355^3^0.052^~1~^~A~^^^1^0.261^0.440^2^0.132^0.578^~2, 3~^~12/01/2007~ -~22958~^~415~^0.160^3^0.003^~1~^~A~^^^1^0.155^0.166^2^0.147^0.174^~2, 3~^~12/01/2007~ -~22958~^~501~^0.066^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~502~^0.251^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~503~^0.267^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~504~^0.461^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~505~^0.424^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~506~^0.134^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~507~^0.082^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~508~^0.255^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~509~^0.158^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~510~^0.307^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~511~^0.387^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~512~^0.187^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~513~^0.342^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~514~^0.572^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~515~^0.930^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~516~^0.257^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~517~^0.241^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~518~^0.245^0^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~606~^0.327^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~ -~22958~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~612~^0.006^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~613~^0.245^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~614~^0.075^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~617~^0.465^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~618~^0.384^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~619~^0.019^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~620~^0.013^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~626~^0.038^1^^~1~^~A~^^^^^^^^^^~12/01/2007~ -~22958~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~645~^0.503^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~22958~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22958~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2007~ -~22959~^~312~^0.193^12^0.002^~1~^~A~^^^1^0.183^0.205^7^0.188^0.198^~2, 3~^~08/01/2012~ -~22959~^~315~^0.696^12^0.011^~1~^~A~^^^1^0.609^0.768^6^0.669^0.723^~2, 3~^~07/01/2014~ -~22959~^~404~^1.040^2^^~1~^~A~^^^1^0.818^1.261^1^^^^~12/01/2008~ -~22959~^~405~^0.626^2^^~1~^~A~^^^1^0.571^0.680^1^^^^~12/01/2008~ -~22959~^~406~^3.882^2^^~1~^~A~^^^1^3.833^3.930^1^^^^~12/01/2008~ -~22959~^~410~^1.252^1^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~415~^0.142^2^^~1~^~A~^^^1^0.138^0.145^1^^^^~12/01/2008~ -~22959~^~501~^0.221^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~502~^0.492^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~503~^0.581^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~504~^1.082^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~505~^0.405^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~506~^0.167^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~508~^0.692^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~509~^0.223^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~510~^0.639^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~511~^0.504^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~512~^0.327^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~513~^0.472^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~514~^0.760^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~515~^4.554^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~516~^0.444^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~517~^1.785^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~518~^0.728^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22959~^~521~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22959~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22959~^~606~^1.151^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22959~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~612~^0.164^2^^~1~^~A~^^^1^0.107^0.220^1^^^^~07/01/2014~ -~22959~^~613~^0.770^2^^~1~^~A~^^^1^0.607^0.933^1^^^^~07/01/2014~ -~22959~^~614~^0.217^2^^~1~^~A~^^^1^0.160^0.274^1^^^^~07/01/2014~ -~22959~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~617~^0.665^2^^~1~^~A~^^^1^0.551^0.778^1^^^^~07/01/2014~ -~22959~^~618~^0.813^2^^~1~^~A~^^^1^0.751^0.874^1^^^^~07/01/2014~ -~22959~^~619~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~626~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~645~^0.665^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22959~^~646~^0.813^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22959~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22959~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2008~ -~22960~^~312~^0.074^12^0.001^~1~^~A~^^^1^0.066^0.079^9^0.071^0.077^~2, 3~^~08/01/2012~ -~22960~^~315~^0.236^12^0.003^~1~^~A~^^^1^0.193^0.275^10^0.229^0.244^~2, 3~^~08/01/2012~ -~22960~^~404~^0.177^6^0.003^~1~^~A~^^^1^0.150^0.200^3^0.166^0.187^~2, 3~^~08/01/2012~ -~22960~^~405~^0.178^6^0.005^~1~^~A~^^^1^0.170^0.200^3^0.162^0.195^~2, 3~^~08/01/2012~ -~22960~^~406~^1.183^6^0.021^~1~^~A~^^^1^0.920^1.450^4^1.124^1.242^~2, 3~^~08/01/2012~ -~22960~^~410~^0.432^4^0.015^~1~^~A~^^^1^0.410^0.470^1^0.262^0.603^~2, 3~^~08/01/2012~ -~22960~^~415~^0.061^6^0.001^~1~^~A~^^^1^0.058^0.064^3^0.058^0.064^~2, 3~^~08/01/2012~ -~22960~^~501~^0.060^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~502~^0.204^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~503~^0.248^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~504~^0.452^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~505~^0.190^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~506~^0.063^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~507~^0.114^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~508~^0.288^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~509~^0.172^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~510~^0.280^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~511~^0.224^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~512~^0.122^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~513~^0.196^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~514~^0.297^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~515~^1.805^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~516~^0.180^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~517~^0.677^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~518~^0.302^0^^~1~^~A~^^^^^^^^^^~12/01/2008~ -~22960~^~605~^1.244^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~606~^1.816^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~607~^0.018^12^0.000^~1~^~A~^^^1^0.008^0.029^10^0.017^0.019^~2, 3~^~08/01/2012~ -~22960~^~608~^0.014^12^0.000^~1~^~A~^^^1^0.004^0.022^6^0.013^0.015^~2, 3~^~08/01/2012~ -~22960~^~609~^0.010^12^0.000^~1~^~A~^^^1^0.004^0.015^9^0.009^0.010^~2, 3~^~08/01/2012~ -~22960~^~610~^0.024^12^0.001^~1~^~A~^^^1^0.010^0.035^6^0.023^0.025^~2, 3~^~08/01/2012~ -~22960~^~611~^0.029^12^0.001^~1~^~A~^^^1^0.010^0.043^5^0.027^0.031^~2, 3~^~08/01/2012~ -~22960~^~612~^0.093^12^0.003^~1~^~A~^^^1^0.033^0.139^6^0.087^0.099^~2, 3~^~08/01/2012~ -~22960~^~613~^1.032^12^0.011^~1~^~A~^^^1^0.888^1.181^7^1.007^1.058^~2, 3~^~08/01/2012~ -~22960~^~614~^0.514^12^0.006^~1~^~A~^^^1^0.448^0.582^8^0.501^0.528^~2, 3~^~08/01/2012~ -~22960~^~615~^0.023^12^0.000^~1~^~A~^^^1^0.021^0.024^7^0.022^0.024^~2, 3~^~08/01/2012~ -~22960~^~617~^3.638^12^0.048^~1~^~AS~^^^1^3.219^3.926^7^3.526^3.751^~2, 3~^~08/01/2012~ -~22960~^~618~^1.673^12^0.018^~1~^~AS~^^^1^1.559^1.793^7^1.630^1.716^~2, 3~^~08/01/2012~ -~22960~^~619~^0.199^12^0.002^~1~^~AS~^^^1^0.185^0.212^7^0.194^0.204^~2, 3~^~08/01/2012~ -~22960~^~620~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.007^9^0.005^0.006^~2, 3~^~08/01/2012~ -~22960~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~624~^0.023^12^0.000^~1~^~A~^^^1^0.022^0.025^10^0.022^0.023^~2, 3~^~08/01/2012~ -~22960~^~625~^0.007^12^0.000^~1~^~A~^^^1^0.002^0.011^7^0.007^0.008^~1, 2, 3~^~08/01/2012~ -~22960~^~626~^0.021^12^0.001^~1~^~AS~^^^1^0.009^0.030^7^0.019^0.022^~2, 3~^~08/01/2012~ -~22960~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~628~^0.015^12^0.000^~1~^~A~^^^1^0.013^0.018^10^0.014^0.017^~2, 3~^~08/01/2012~ -~22960~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~12/01/2008~ -~22960~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~12/01/2008~ -~22960~^~645~^3.687^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~646~^1.880^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~652~^0.011^12^0.000^~1~^~A~^^^1^0.005^0.016^7^0.011^0.012^~2, 3~^~08/01/2012~ -~22960~^~653~^0.013^12^0.000^~1~^~A~^^^1^0.009^0.017^7^0.013^0.014^~2, 3~^~08/01/2012~ -~22960~^~654~^0.010^12^0.000^~1~^~A~^^^1^0.008^0.010^9^0.009^0.010^~2, 3~^~08/01/2012~ -~22960~^~662~^0.004^12^0.000^~1~^~A~^^^1^0.000^0.007^6^0.003^0.005^~1, 2, 3~^~08/01/2012~ -~22960~^~663~^1.142^12^0.015^~1~^~A~^^^1^1.034^1.215^7^1.107^1.177^~2, 3~^~08/01/2012~ -~22960~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22960~^~665~^0.098^12^0.002^~1~^~A~^^^1^0.078^0.106^7^0.092^0.103^~2, 3~^~08/01/2012~ -~22960~^~670~^0.012^12^0.000^~1~^~A~^^^1^0.008^0.015^10^0.011^0.012^~2, 3~^~08/01/2012~ -~22960~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22960~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^7^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~22960~^~673~^0.017^12^0.000^~1~^~A~^^^1^0.009^0.023^9^0.016^0.018^~2, 3~^~08/01/2012~ -~22960~^~674~^2.496^12^0.033^~1~^~A~^^^1^2.185^2.711^7^2.418^2.574^~2, 3~^~08/01/2012~ -~22960~^~675~^1.563^12^0.016^~1~^~A~^^^1^1.472^1.677^7^1.525^1.602^~2, 3~^~08/01/2012~ -~22960~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22960~^~685~^0.009^12^0.000^~1~^~A~^^^1^0.007^0.010^10^0.008^0.009^~2, 3~^~08/01/2012~ -~22960~^~687~^0.005^12^0.000^~1~^~A~^^^1^0.004^0.006^5^0.005^0.005^~2, 3~^~08/01/2012~ -~22960~^~689~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.005^7^0.000^0.002^~2, 3~^~08/01/2012~ -~22960~^~693~^1.146^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~695~^0.098^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22960~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22960~^~851~^0.190^12^0.002^~1~^~A~^^^1^0.177^0.203^7^0.185^0.195^~2, 3~^~08/01/2012~ -~22960~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22960~^~853~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.005^7^0.000^0.002^~1, 2, 3~^~08/01/2012~ -~22960~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22961~^~312~^0.086^5^0.002^~1~^~A~^^^1^0.079^0.091^4^0.079^0.092^~2, 3~^~06/01/2009~ -~22961~^~315~^0.340^5^0.014^~1~^~A~^^^1^0.317^0.392^4^0.302^0.379^~2, 3~^~06/01/2009~ -~22961~^~404~^0.386^5^0.026^~1~^~A~^^^1^0.290^0.430^4^0.314^0.458^~2, 3~^~06/01/2009~ -~22961~^~405~^0.208^5^0.009^~1~^~A~^^^1^0.180^0.230^4^0.184^0.232^~2, 3~^~06/01/2009~ -~22961~^~406~^2.922^5^0.098^~1~^~A~^^^1^2.690^3.170^4^2.650^3.194^~2, 3~^~06/01/2009~ -~22961~^~410~^0.685^2^^~1~^~A~^^^1^0.670^0.700^1^^^^~06/01/2009~ -~22961~^~415~^0.061^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~ -~22961~^~605~^0.156^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~606~^3.930^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~22961~^~607~^0.019^5^0.005^~1~^~A~^^^1^0.009^0.039^4^0.004^0.033^~2, 3~^~06/01/2009~ -~22961~^~608~^0.025^5^0.002^~1~^~A~^^^1^0.020^0.028^4^0.021^0.030^~2, 3~^~06/01/2009~ -~22961~^~609~^0.029^5^0.002^~1~^~A~^^^1^0.022^0.033^4^0.024^0.035^~2, 3~^~06/01/2009~ -~22961~^~610~^0.060^5^0.005^~1~^~A~^^^1^0.045^0.074^4^0.046^0.073^~2, 3~^~06/01/2009~ -~22961~^~611~^0.225^5^0.014^~1~^~A~^^^1^0.179^0.262^4^0.187^0.263^~2, 3~^~06/01/2009~ -~22961~^~612~^0.273^5^0.013^~1~^~A~^^^1^0.238^0.309^4^0.238^0.309^~2, 3~^~06/01/2009~ -~22961~^~613~^2.442^5^0.006^~1~^~A~^^^1^2.430^2.463^4^2.425^2.458^~2, 3~^~06/01/2009~ -~22961~^~614~^0.847^5^0.016^~1~^~A~^^^1^0.796^0.886^4^0.801^0.892^~2, 3~^~06/01/2009~ -~22961~^~615~^0.024^5^0.000^~1~^~A~^^^1^0.023^0.025^4^0.023^0.026^~2, 3~^~06/01/2009~ -~22961~^~617~^2.632^5^0.017^~1~^~AS~^^^1^2.583^2.670^4^2.585^2.678^~2, 3~^~06/01/2009~ -~22961~^~618~^2.304^5^0.034^~1~^~AS~^^^1^2.177^2.366^4^2.210^2.397^~2, 3~^~06/01/2009~ -~22961~^~619~^0.256^5^0.006^~1~^~AS~^^^1^0.233^0.265^4^0.239^0.272^~2, 3~^~06/01/2009~ -~22961~^~620~^0.018^5^0.000^~1~^~A~^^^1^0.018^0.019^4^0.018^0.019^~2, 3~^~06/01/2009~ -~22961~^~621~^0.002^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.003^~1, 2, 3~^~06/01/2009~ -~22961~^~624~^0.013^5^0.001^~1~^~A~^^^1^0.011^0.014^4^0.012^0.015^~2, 3~^~06/01/2009~ -~22961~^~625~^0.012^5^0.001^~1~^~A~^^^1^0.011^0.014^4^0.010^0.014^~2, 3~^~06/01/2009~ -~22961~^~626~^0.098^5^0.007^~1~^~AS~^^^1^0.086^0.127^4^0.078^0.119^~2, 3~^~06/01/2009~ -~22961~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22961~^~628~^0.037^5^0.001^~1~^~A~^^^1^0.036^0.040^4^0.035^0.039^~2, 3~^~06/01/2009~ -~22961~^~629~^0.002^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.000^0.004^~2, 3~^~06/01/2009~ -~22961~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~22961~^~631~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~06/01/2009~ -~22961~^~645~^2.787^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~646~^2.611^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~652~^0.020^5^0.001^~1~^~A~^^^1^0.017^0.023^4^0.016^0.024^~2, 3~^~06/01/2009~ -~22961~^~653~^0.025^5^0.001^~1~^~A~^^^1^0.024^0.027^4^0.024^0.027^~2, 3~^~06/01/2009~ -~22961~^~654~^0.004^5^0.001^~1~^~A~^^^1^0.002^0.006^4^0.001^0.006^~2, 3~^~06/01/2009~ -~22961~^~662~^0.006^5^0.001^~1~^~A~^^^1^0.005^0.008^4^0.005^0.008^~2, 3~^~06/01/2009~ -~22961~^~663~^0.098^5^0.004^~1~^~A~^^^1^0.082^0.105^4^0.086^0.110^~2, 3~^~06/01/2009~ -~22961~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22961~^~665~^0.051^5^0.006^~1~^~A~^^^1^0.027^0.061^4^0.034^0.069^~2, 3~^~06/01/2009~ -~22961~^~670~^0.016^5^0.001^~1~^~A~^^^1^0.014^0.018^4^0.014^0.018^~2, 3~^~06/01/2009~ -~22961~^~671~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~2, 3~^~06/01/2009~ -~22961~^~672~^0.015^5^0.000^~1~^~A~^^^1^0.014^0.016^4^0.014^0.016^~2, 3~^~06/01/2009~ -~22961~^~673~^0.092^5^0.007^~1~^~A~^^^1^0.080^0.119^4^0.073^0.111^~2, 3~^~06/01/2009~ -~22961~^~674~^2.534^5^0.014^~1~^~A~^^^1^2.488^2.565^4^2.495^2.573^~2, 3~^~06/01/2009~ -~22961~^~675~^2.236^5^0.028^~1~^~A~^^^1^2.136^2.299^4^2.158^2.314^~2, 3~^~06/01/2009~ -~22961~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22961~^~685~^0.002^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~2, 3~^~06/01/2009~ -~22961~^~687~^0.006^5^0.002^~1~^~A~^^^1^0.000^0.011^4^0.000^0.012^~1, 2, 3~^~06/01/2009~ -~22961~^~689~^0.007^5^0.000^~1~^~AS~^^^1^0.006^0.008^4^0.006^0.009^~2, 3~^~06/01/2009~ -~22961~^~693~^0.104^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22961~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22961~^~851~^0.254^5^0.006^~1~^~A~^^^1^0.231^0.263^4^0.238^0.270^~2, 3~^~06/01/2009~ -~22961~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~06/01/2009~ -~22961~^~853~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.006^4^0.004^0.007^~2, 3~^~06/01/2009~ -~22961~^~858~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.006^4^0.004^0.006^~2, 3~^~06/01/2009~ -~22962~^~312~^0.076^4^0.001^~1~^~A~^^^1^0.074^0.078^3^0.073^0.080^~2, 3~^~06/01/2009~ -~22962~^~315~^0.286^4^0.010^~1~^~A~^^^1^0.262^0.307^3^0.254^0.318^~2, 3~^~06/01/2009~ -~22962~^~404~^0.412^4^0.022^~1~^~A~^^^1^0.370^0.470^3^0.343^0.482^~2, 3~^~06/01/2009~ -~22962~^~405~^0.307^4^0.015^~1~^~A~^^^1^0.280^0.350^3^0.260^0.355^~2, 3~^~06/01/2009~ -~22962~^~406~^3.462^4^0.201^~1~^~A~^^^1^3.100^4.030^3^2.823^4.102^~2, 3~^~06/01/2009~ -~22962~^~415~^0.102^4^0.006^~1~^~A~^^^1^0.090^0.120^3^0.083^0.122^~2, 3~^~06/01/2009~ -~22962~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~502~^0.386^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~503~^0.445^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~504~^0.827^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~505~^0.619^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~506~^0.218^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~507~^0.128^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~508~^0.465^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~509~^0.306^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~510~^0.520^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~511~^0.475^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~512~^0.312^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~514~^0.708^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~515~^2.345^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~516~^0.386^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~517~^0.886^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~518~^0.480^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22962~^~605~^0.178^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~606~^2.389^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~607~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.001^0.005^~2, 3~^~06/01/2009~ -~22962~^~608~^0.011^4^0.000^~1~^~A~^^^1^0.010^0.012^3^0.010^0.012^~2, 3~^~06/01/2009~ -~22962~^~609~^0.020^4^0.001^~1~^~A~^^^1^0.017^0.023^3^0.016^0.024^~2, 3~^~06/01/2009~ -~22962~^~610~^0.033^4^0.001^~1~^~A~^^^1^0.030^0.036^3^0.028^0.038^~2, 3~^~06/01/2009~ -~22962~^~611~^0.217^4^0.014^~1~^~A~^^^1^0.186^0.250^3^0.171^0.262^~2, 3~^~06/01/2009~ -~22962~^~612~^0.168^4^0.007^~1~^~A~^^^1^0.155^0.179^3^0.146^0.189^~2, 3~^~06/01/2009~ -~22962~^~613~^1.223^4^0.012^~1~^~A~^^^1^1.190^1.247^3^1.183^1.263^~2, 3~^~06/01/2009~ -~22962~^~614~^0.668^4^0.008^~1~^~A~^^^1^0.649^0.689^3^0.641^0.694^~2, 3~^~06/01/2009~ -~22962~^~615~^0.013^4^0.000^~1~^~A~^^^1^0.012^0.014^3^0.012^0.014^~2, 3~^~06/01/2009~ -~22962~^~617~^1.469^4^0.010^~1~^~AS~^^^1^1.453^1.493^3^1.438^1.501^~2, 3~^~06/01/2009~ -~22962~^~618~^1.248^4^0.053^~1~^~AS~^^^1^1.154^1.386^3^1.080^1.416^~2, 3~^~06/01/2009~ -~22962~^~619~^0.116^4^0.007^~1~^~AS~^^^1^0.101^0.136^3^0.092^0.139^~2, 3~^~06/01/2009~ -~22962~^~620~^0.018^4^0.000^~1~^~A~^^^1^0.017^0.018^3^0.017^0.018^~2, 3~^~06/01/2009~ -~22962~^~621~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.003^~2, 3~^~06/01/2009~ -~22962~^~624~^0.008^4^0.000^~1~^~A~^^^1^0.008^0.009^3^0.008^0.009^~2, 3~^~06/01/2009~ -~22962~^~625~^0.006^4^0.000^~1~^~A~^^^1^0.006^0.007^3^0.005^0.007^~2, 3~^~06/01/2009~ -~22962~^~626~^0.052^4^0.001^~1~^~AS~^^^1^0.050^0.054^3^0.049^0.054^~2, 3~^~06/01/2009~ -~22962~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22962~^~628~^0.021^4^0.001^~1~^~A~^^^1^0.019^0.022^3^0.018^0.023^~2, 3~^~06/01/2009~ -~22962~^~629~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~06/01/2009~ -~22962~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~22962~^~631~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~06/01/2009~ -~22962~^~645~^1.551^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~646~^1.403^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~652~^0.010^4^0.001^~1~^~A~^^^1^0.010^0.012^3^0.009^0.012^~2, 3~^~06/01/2009~ -~22962~^~653~^0.013^4^0.000^~1~^~A~^^^1^0.013^0.014^3^0.012^0.014^~2, 3~^~06/01/2009~ -~22962~^~654~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~06/01/2009~ -~22962~^~662~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2009~ -~22962~^~663~^0.131^4^0.003^~1~^~A~^^^1^0.124^0.136^3^0.123^0.139^~2, 3~^~06/01/2009~ -~22962~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22962~^~665~^0.045^4^0.003^~1~^~A~^^^1^0.040^0.052^3^0.036^0.053^~2, 3~^~06/01/2009~ -~22962~^~670~^0.008^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.007^0.008^~2, 3~^~06/01/2009~ -~22962~^~671~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2009~ -~22962~^~672~^0.008^4^0.001^~1~^~A~^^^1^0.007^0.009^3^0.006^0.010^~2, 3~^~06/01/2009~ -~22962~^~673~^0.049^4^0.001^~1~^~A~^^^1^0.047^0.051^3^0.046^0.051^~2, 3~^~06/01/2009~ -~22962~^~674~^1.339^4^0.011^~1~^~A~^^^1^1.317^1.361^3^1.303^1.374^~2, 3~^~06/01/2009~ -~22962~^~675~^1.195^4^0.050^~1~^~A~^^^1^1.106^1.327^3^1.035^1.356^~2, 3~^~06/01/2009~ -~22962~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22962~^~685~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2009~ -~22962~^~687~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~2, 3~^~06/01/2009~ -~22962~^~689~^0.005^4^0.000^~1~^~AS~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~06/01/2009~ -~22962~^~693~^0.134^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22962~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2009~ -~22962~^~851~^0.115^4^0.007^~1~^~A~^^^1^0.100^0.135^3^0.091^0.138^~2, 3~^~06/01/2009~ -~22962~^~852~^0.001^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.000^0.002^~2, 3~^~06/01/2009~ -~22962~^~853~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.003^0.005^~2, 3~^~06/01/2009~ -~22962~^~858~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.005^~2, 3~^~06/01/2009~ -~22963~^~312~^0.082^5^0.003^~1~^~A~^^^1^0.077^0.093^4^0.074^0.090^~2, 3~^~06/01/2009~ -~22963~^~315~^0.289^5^0.007^~1~^~A~^^^1^0.266^0.304^4^0.271^0.307^~2, 3~^~06/01/2009~ -~22963~^~404~^0.428^5^0.012^~1~^~A~^^^1^0.390^0.460^4^0.396^0.460^~2, 3~^~06/01/2009~ -~22963~^~405~^0.248^5^0.004^~1~^~A~^^^1^0.240^0.260^4^0.238^0.258^~2, 3~^~06/01/2009~ -~22963~^~406~^2.982^5^0.100^~1~^~A~^^^1^2.660^3.270^4^2.706^3.258^~2, 3~^~06/01/2009~ -~22963~^~410~^0.655^2^^~1~^~A~^^^1^0.650^0.660^1^^^^~06/01/2009~ -~22963~^~415~^0.102^5^0.007^~1~^~A~^^^1^0.080^0.120^4^0.084^0.120^~2, 3~^~06/01/2009~ -~22963~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~502~^0.380^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~503~^0.457^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~504~^0.857^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~505~^0.636^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~506~^0.205^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~507~^0.128^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~508~^0.503^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~509~^0.355^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~510~^0.560^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~511~^0.488^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~512~^0.313^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~513~^0.406^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~514~^0.765^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~515~^2.504^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~516~^0.375^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~517~^0.944^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~518~^0.503^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~22963~^~605~^0.148^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~606~^3.087^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~607~^0.014^5^0.008^~1~^~A~^^^1^0.005^0.044^4^-0.008^0.035^~2, 3~^~06/01/2009~ -~22963~^~608~^0.019^5^0.003^~1~^~A~^^^1^0.014^0.033^4^0.010^0.029^~2, 3~^~06/01/2009~ -~22963~^~609~^0.028^5^0.003^~1~^~A~^^^1^0.024^0.042^4^0.019^0.038^~2, 3~^~06/01/2009~ -~22963~^~610~^0.053^5^0.008^~1~^~A~^^^1^0.044^0.084^4^0.031^0.074^~2, 3~^~06/01/2009~ -~22963~^~611~^0.266^5^0.021^~1~^~A~^^^1^0.224^0.348^4^0.206^0.325^~2, 3~^~06/01/2009~ -~22963~^~612~^0.243^5^0.017^~1~^~A~^^^1^0.219^0.308^4^0.197^0.289^~2, 3~^~06/01/2009~ -~22963~^~613~^1.539^5^0.064^~1~^~A~^^^1^1.372^1.767^4^1.362^1.717^~2, 3~^~06/01/2009~ -~22963~^~614~^0.860^5^0.039^~1~^~A~^^^1^0.768^1.003^4^0.752^0.968^~2, 3~^~06/01/2009~ -~22963~^~615~^0.015^5^0.001^~1~^~A~^^^1^0.014^0.017^4^0.014^0.017^~2, 3~^~06/01/2009~ -~22963~^~617~^1.853^5^0.071^~1~^~AS~^^^1^1.654^2.095^4^1.655^2.052^~2, 3~^~06/01/2009~ -~22963~^~618~^1.313^5^0.024^~1~^~AS~^^^1^1.264^1.395^4^1.247^1.380^~2, 3~^~06/01/2009~ -~22963~^~619~^0.118^5^0.005^~1~^~AS~^^^1^0.110^0.137^4^0.104^0.132^~2, 3~^~06/01/2009~ -~22963~^~620~^0.016^5^0.001^~1~^~A~^^^1^0.014^0.017^4^0.015^0.018^~2, 3~^~06/01/2009~ -~22963~^~621~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.003^~1, 2, 3~^~06/01/2009~ -~22963~^~624~^0.008^5^0.000^~1~^~A~^^^1^0.008^0.009^4^0.008^0.009^~2, 3~^~06/01/2009~ -~22963~^~625~^0.010^5^0.001^~1~^~A~^^^1^0.009^0.013^4^0.008^0.012^~2, 3~^~06/01/2009~ -~22963~^~626~^0.079^5^0.003^~1~^~AS~^^^1^0.070^0.087^4^0.071^0.087^~2, 3~^~06/01/2009~ -~22963~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22963~^~628~^0.027^5^0.001^~1~^~A~^^^1^0.025^0.029^4^0.025^0.029^~2, 3~^~06/01/2009~ -~22963~^~629~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.005^4^-0.001^0.004^~1, 2, 3~^~06/01/2009~ -~22963~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~22963~^~631~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2009~ -~22963~^~645~^1.971^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~646~^1.479^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~652~^0.017^5^0.001^~1~^~A~^^^1^0.015^0.020^4^0.014^0.019^~2, 3~^~06/01/2009~ -~22963~^~653~^0.020^5^0.001^~1~^~A~^^^1^0.017^0.023^4^0.017^0.023^~2, 3~^~06/01/2009~ -~22963~^~654~^0.004^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.002^0.006^~2, 3~^~06/01/2009~ -~22963~^~662~^0.005^5^0.000^~1~^~A~^^^1^0.005^0.006^4^0.005^0.006^~2, 3~^~06/01/2009~ -~22963~^~663~^0.101^5^0.006^~1~^~A~^^^1^0.094^0.125^4^0.085^0.118^~2, 3~^~06/01/2009~ -~22963~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22963~^~665~^0.042^5^0.003^~1~^~A~^^^1^0.032^0.047^4^0.034^0.050^~2, 3~^~06/01/2009~ -~22963~^~670~^0.011^5^0.000^~1~^~A~^^^1^0.010^0.012^4^0.010^0.012^~2, 3~^~06/01/2009~ -~22963~^~671~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.002^~1, 2, 3~^~06/01/2009~ -~22963~^~672~^0.014^5^0.000^~1~^~A~^^^1^0.012^0.015^4^0.012^0.015^~2, 3~^~06/01/2009~ -~22963~^~673~^0.074^5^0.003^~1~^~A~^^^1^0.065^0.081^4^0.066^0.081^~2, 3~^~06/01/2009~ -~22963~^~674~^1.752^5^0.066^~1~^~A~^^^1^1.559^1.970^4^1.568^1.937^~2, 3~^~06/01/2009~ -~22963~^~675~^1.261^5^0.026^~1~^~A~^^^1^1.207^1.351^4^1.190^1.332^~2, 3~^~06/01/2009~ -~22963~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~22963~^~685~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~2, 3~^~06/01/2009~ -~22963~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~22963~^~689~^0.007^5^0.000^~1~^~AS~^^^1^0.007^0.007^^^^~2, 3~^~06/01/2009~ -~22963~^~693~^0.106^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~695~^0.042^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~22963~^~851~^0.117^5^0.005^~1~^~A~^^^1^0.108^0.135^4^0.103^0.130^~2, 3~^~06/01/2009~ -~22963~^~852~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~06/01/2009~ -~22963~^~853~^0.005^5^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~06/01/2009~ -~22963~^~858~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^4^0.004^0.005^~2, 3~^~06/01/2009~ -~22969~^~312~^0.080^9^0.003^~1~^~A~^^^1^0.066^0.100^7^0.074^0.086^~2, 3~^~03/01/2011~ -~22969~^~315~^0.205^9^0.004^~1~^~A~^^^1^0.179^0.224^5^0.194^0.217^~2, 3~^~03/01/2011~ -~22969~^~404~^0.019^9^0.003^~1~^~A~^^^1^0.015^0.040^3^0.009^0.029^~1, 2, 3~^~03/01/2011~ -~22969~^~405~^0.029^9^0.002^~1~^~A~^^^1^0.020^0.040^4^0.023^0.035^~2, 3~^~03/01/2011~ -~22969~^~406~^0.941^9^0.024^~1~^~A~^^^1^0.740^1.190^6^0.880^1.002^~2, 3~^~03/01/2011~ -~22969~^~410~^0.299^5^0.008^~1~^~A~^^^1^0.290^0.320^1^0.220^0.378^~2, 3~^~03/01/2011~ -~22969~^~415~^0.109^9^0.003^~1~^~A~^^^1^0.091^0.121^7^0.102^0.117^~2, 3~^~03/01/2011~ -~22969~^~605~^0.195^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~606~^1.372^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~ -~22969~^~608~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22969~^~609~^0.002^9^0.000^~1~^~A~^^^1^0.002^0.003^6^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22969~^~610~^0.002^9^0.000^~1~^~A~^^^1^0.000^0.002^4^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22969~^~611~^0.004^9^0.000^~1~^~A~^^^1^0.002^0.005^7^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~22969~^~612~^0.102^9^0.002^~1~^~A~^^^1^0.074^0.128^7^0.096^0.108^~2, 3~^~03/01/2011~ -~22969~^~613~^0.785^9^0.017^~1~^~A~^^^1^0.618^0.951^7^0.745^0.825^~2, 3~^~03/01/2011~ -~22969~^~614~^0.410^9^0.011^~1~^~A~^^^1^0.326^0.503^7^0.384^0.437^~2, 3~^~03/01/2011~ -~22969~^~615~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.005^7^0.004^0.005^~2, 3~^~03/01/2011~ -~22969~^~617~^1.406^9^0.029^~1~^~AS~^^^1^1.098^1.703^7^1.338^1.475^~2, 3~^~03/01/2011~ -~22969~^~618~^0.290^9^0.006^~1~^~AS~^^^1^0.230^0.336^7^0.275^0.304^~2, 3~^~03/01/2011~ -~22969~^~619~^0.093^9^0.002^~1~^~AS~^^^1^0.076^0.111^6^0.087^0.099^~2, 3~^~03/01/2011~ -~22969~^~620~^0.008^9^0.000^~1~^~A~^^^1^0.006^0.010^5^0.007^0.009^~2, 3~^~03/01/2011~ -~22969~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22969~^~624~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.003^7^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22969~^~625~^0.028^9^0.001^~1~^~A~^^^1^0.020^0.035^7^0.026^0.029^~2, 3~^~03/01/2011~ -~22969~^~626~^0.120^9^0.002^~1~^~AS~^^^1^0.091^0.148^6^0.114^0.125^~2, 3~^~03/01/2011~ -~22969~^~627~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22969~^~628~^0.011^9^0.000^~1~^~A~^^^1^0.009^0.013^6^0.011^0.012^~2, 3~^~03/01/2011~ -~22969~^~629~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22969~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2011~ -~22969~^~631~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.003^7^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22969~^~645~^1.595^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~646~^0.401^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~652~^0.017^9^0.001^~1~^~A~^^^1^0.012^0.023^7^0.016^0.019^~2, 3~^~03/01/2011~ -~22969~^~653~^0.039^9^0.001^~1~^~A~^^^1^0.029^0.050^7^0.037^0.042^~2, 3~^~03/01/2011~ -~22969~^~654~^0.003^9^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22969~^~662~^0.010^9^0.000^~1~^~A~^^^1^0.007^0.014^5^0.009^0.011^~2, 3~^~03/01/2011~ -~22969~^~663~^0.164^9^0.004^~1~^~A~^^^1^0.108^0.210^5^0.154^0.174^~2, 3~^~03/01/2011~ -~22969~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~665~^0.021^9^0.002^~1~^~A~^^^1^0.011^0.031^6^0.017^0.024^~2, 3~^~03/01/2011~ -~22969~^~670~^0.021^9^0.001^~1~^~A~^^^1^0.014^0.028^7^0.019^0.023^~2, 3~^~03/01/2011~ -~22969~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~672~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.002^6^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22969~^~673~^0.110^9^0.002^~1~^~A~^^^1^0.083^0.134^7^0.105^0.114^~2, 3~^~03/01/2011~ -~22969~^~674~^1.242^9^0.026^~1~^~A~^^^1^0.973^1.493^7^1.180^1.305^~2, 3~^~03/01/2011~ -~22969~^~675~^0.248^9^0.005^~1~^~A~^^^1^0.205^0.285^7^0.236^0.260^~2, 3~^~03/01/2011~ -~22969~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~685~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22969~^~687~^0.029^9^0.001^~1~^~A~^^^1^0.021^0.037^7^0.027^0.031^~2, 3~^~03/01/2011~ -~22969~^~689~^0.004^9^0.000^~1~^~AS~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~03/01/2011~ -~22969~^~693~^0.174^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22969~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~851~^0.092^9^0.002^~1~^~A~^^^1^0.075^0.111^6^0.086^0.098^~2, 3~^~03/01/2011~ -~22969~^~852~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22969~^~853~^0.004^9^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~03/01/2011~ -~22969~^~858~^0.002^9^0.000^~1~^~A~^^^1^0.001^0.002^6^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22970~^~312~^0.051^20^0.002^~1~^~A~^^^1^0.019^0.089^15^0.047^0.055^~1, 2, 3~^~03/01/2011~ -~22970~^~315~^0.216^20^0.006^~1~^~A~^^^1^0.112^0.338^13^0.204^0.229^~2, 3~^~03/01/2011~ -~22970~^~404~^0.054^20^0.005^~1~^~A~^^^1^0.015^0.180^5^0.041^0.066^~1, 2, 3~^~03/01/2011~ -~22970~^~405~^0.057^20^0.003^~1~^~A~^^^1^0.020^0.090^11^0.051^0.063^~2, 3~^~03/01/2011~ -~22970~^~406~^0.739^20^0.018^~1~^~A~^^^1^0.350^1.400^5^0.692^0.785^~2, 3~^~03/01/2011~ -~22970~^~410~^0.388^7^0.006^~1~^~A~^^^1^0.300^0.490^2^0.359^0.418^~2, 3~^~03/01/2011~ -~22970~^~415~^0.042^14^0.001^~1~^~A~^^^1^0.031^0.052^7^0.039^0.045^~2, 3~^~03/01/2011~ -~22970~^~605~^0.153^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~606~^2.608^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~607~^0.069^20^0.008^~1~^~A~^^^1^0.003^0.129^4^0.047^0.092^~2, 3~^~03/01/2011~ -~22970~^~608~^0.065^20^0.001^~1~^~A~^^^1^0.031^0.104^10^0.063^0.068^~2, 3~^~03/01/2011~ -~22970~^~609~^0.043^20^0.001^~1~^~A~^^^1^0.022^0.068^10^0.041^0.045^~2, 3~^~03/01/2011~ -~22970~^~610~^0.100^20^0.002^~1~^~A~^^^1^0.049^0.166^10^0.097^0.103^~2, 3~^~03/01/2011~ -~22970~^~611~^0.117^20^0.002^~1~^~A~^^^1^0.053^0.213^8^0.112^0.122^~2, 3~^~03/01/2011~ -~22970~^~612~^0.378^20^0.007^~1~^~A~^^^1^0.172^0.671^7^0.360^0.395^~2, 3~^~03/01/2011~ -~22970~^~613~^1.275^20^0.024^~1~^~A~^^^1^0.678^1.973^7^1.218^1.333^~2, 3~^~03/01/2011~ -~22970~^~614~^0.468^20^0.010^~1~^~A~^^^1^0.253^0.680^7^0.445^0.492^~2, 3~^~03/01/2011~ -~22970~^~615~^0.011^20^0.000^~1~^~A~^^^1^0.007^0.016^13^0.011^0.012^~2, 3~^~03/01/2011~ -~22970~^~617~^1.305^20^0.025^~1~^~AS~^^^1^0.731^1.608^8^1.246^1.363^~2, 3~^~03/01/2011~ -~22970~^~618~^1.195^20^0.019^~1~^~AS~^^^1^0.420^1.827^6^1.149^1.241^~2, 3~^~03/01/2011~ -~22970~^~619~^0.147^20^0.003^~1~^~AS~^^^1^0.041^0.234^8^0.140^0.154^~2, 3~^~03/01/2011~ -~22970~^~620~^0.006^20^0.000^~1~^~A~^^^1^0.003^0.009^15^0.006^0.007^~2, 3~^~03/01/2011~ -~22970~^~621~^0.000^20^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22970~^~624~^0.008^20^0.000^~1~^~A~^^^1^0.004^0.013^5^0.008^0.009^~2, 3~^~03/01/2011~ -~22970~^~625~^0.032^20^0.001^~1~^~A~^^^1^0.014^0.057^8^0.031^0.034^~2, 3~^~03/01/2011~ -~22970~^~626~^0.070^20^0.003^~1~^~AS~^^^1^0.034^0.140^4^0.063^0.077^~2, 3~^~03/01/2011~ -~22970~^~627~^0.000^19^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22970~^~628~^0.016^20^0.001^~1~^~A~^^^1^0.011^0.026^13^0.014^0.018^~2, 3~^~03/01/2011~ -~22970~^~629~^0.002^20^0.000^~1~^~A~^^^1^0.000^0.004^16^0.002^0.002^~1, 2, 3~^~03/01/2011~ -~22970~^~630~^0.001^19^0.000^~1~^~AS~^^^1^0.000^0.005^8^0.001^0.001^~2, 3~^~03/01/2011~ -~22970~^~631~^0.003^20^0.000^~1~^~A~^^^1^0.001^0.006^9^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~22970~^~645~^1.433^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~646~^1.363^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~652~^0.041^20^0.001^~1~^~A~^^^1^0.019^0.069^8^0.039^0.042^~2, 3~^~03/01/2011~ -~22970~^~653~^0.026^20^0.001^~1~^~A~^^^1^0.012^0.043^7^0.024^0.027^~2, 3~^~03/01/2011~ -~22970~^~654~^0.004^20^0.000^~1~^~A~^^^1^0.002^0.005^13^0.003^0.004^~1, 2, 3~^~03/01/2011~ -~22970~^~662~^0.014^20^0.000^~1~^~A~^^^1^0.006^0.026^6^0.013^0.015^~2, 3~^~03/01/2011~ -~22970~^~663~^0.106^20^0.009^~1~^~A~^^^1^0.046^0.272^3^0.080^0.131^~2, 3~^~03/01/2011~ -~22970~^~664~^0.000^19^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22970~^~665~^0.034^20^0.001^~1~^~A~^^^1^0.017^0.054^9^0.032^0.036^~2, 3~^~03/01/2011~ -~22970~^~670~^0.023^20^0.001^~1~^~A~^^^1^0.011^0.041^8^0.022^0.025^~2, 3~^~03/01/2011~ -~22970~^~671~^0.000^20^0.000^~1~^~A~^^^1^0.000^0.003^4^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22970~^~672~^0.002^20^0.000^~1~^~A~^^^1^0.001^0.005^17^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22970~^~673~^0.056^20^0.002^~1~^~A~^^^1^0.028^0.114^4^0.050^0.063^~2, 3~^~03/01/2011~ -~22970~^~674~^1.199^20^0.019^~1~^~A~^^^1^0.685^1.488^8^1.154^1.244^~2, 3~^~03/01/2011~ -~22970~^~675~^1.138^20^0.018^~1~^~A~^^^1^0.343^1.767^6^1.093^1.182^~2, 3~^~03/01/2011~ -~22970~^~676~^0.001^19^0.000^~1~^~A~^^^1^0.000^0.005^8^0.001^0.001^~1, 2, 3~^~03/01/2011~ -~22970~^~685~^0.001^20^0.000^~1~^~A~^^^1^0.000^0.003^7^0.001^0.001^~1, 2, 3~^~03/01/2011~ -~22970~^~687~^0.009^19^0.000^~1~^~A~^^^1^0.005^0.013^13^0.008^0.009^~2, 3~^~03/01/2011~ -~22970~^~689~^0.004^20^0.000^~1~^~AS~^^^1^0.002^0.007^13^0.004^0.005^~2, 3~^~03/01/2011~ -~22970~^~693~^0.119^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22970~^~697~^0.000^19^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22970~^~851~^0.146^20^0.003^~1~^~A~^^^1^0.039^0.233^8^0.139^0.153^~2, 3~^~03/01/2011~ -~22970~^~852~^0.000^20^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22970~^~853~^0.004^20^0.000^~1~^~A~^^^1^0.002^0.006^16^0.004^0.005^~1, 2, 3~^~03/01/2011~ -~22970~^~858~^0.001^20^0.000^~1~^~A~^^^1^0.000^0.003^10^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22971~^~312~^0.041^10^0.006^~1~^~A~^^^1^0.019^0.071^9^0.027^0.054^~1, 2, 3~^~03/01/2011~ -~22971~^~315~^0.112^10^0.004^~1~^~A~^^^1^0.091^0.126^9^0.103^0.121^~2, 3~^~03/01/2011~ -~22971~^~404~^0.032^10^0.004^~1~^~A~^^^1^0.015^0.060^9^0.024^0.041^~1, 2, 3~^~03/01/2011~ -~22971~^~405~^0.017^10^0.003^~1~^~A~^^^1^0.015^0.040^9^0.012^0.023^~1, 2, 3~^~03/01/2011~ -~22971~^~406~^0.800^10^0.057^~1~^~A~^^^1^0.610^1.230^9^0.671^0.929^~2, 3~^~03/01/2011~ -~22971~^~410~^0.443^3^0.024^~1~^~A~^^^1^0.410^0.490^2^0.340^0.547^~2, 3~^~03/01/2011~ -~22971~^~415~^0.115^6^0.010^~1~^~A~^^^1^0.079^0.151^5^0.088^0.142^~2, 3~^~03/01/2011~ -~22971~^~605~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~606~^1.437^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22971~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~609~^0.002^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~22971~^~610~^0.002^10^0.001^~1~^~A~^^^1^0.000^0.004^9^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~22971~^~611~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22971~^~612~^0.008^10^0.001^~1~^~A~^^^1^0.005^0.013^9^0.006^0.010^~2, 3~^~03/01/2011~ -~22971~^~613~^0.965^10^0.097^~1~^~A~^^^1^0.559^1.639^9^0.745^1.184^~2, 3~^~03/01/2011~ -~22971~^~614~^0.387^10^0.033^~1~^~A~^^^1^0.218^0.554^9^0.311^0.463^~2, 3~^~03/01/2011~ -~22971~^~615~^0.027^10^0.003^~1~^~A~^^^1^0.012^0.048^9^0.020^0.033^~2, 3~^~03/01/2011~ -~22971~^~617~^1.931^10^0.200^~1~^~AS~^^^1^1.036^3.325^9^1.479^2.382^~2, 3~^~03/01/2011~ -~22971~^~618~^4.330^10^0.462^~1~^~AS~^^^1^2.077^7.443^9^3.284^5.376^~2, 3~^~03/01/2011~ -~22971~^~619~^0.631^10^0.059^~1~^~AS~^^^1^0.325^0.925^9^0.498^0.764^~2, 3~^~03/01/2011~ -~22971~^~620~^0.013^10^0.003^~1~^~A~^^^1^0.006^0.034^9^0.007^0.019^~2, 3~^~03/01/2011~ -~22971~^~621~^0.003^10^0.001^~1~^~A~^^^1^0.000^0.011^9^0.000^0.006^~1, 2, 3~^~03/01/2011~ -~22971~^~624~^0.026^10^0.003^~1~^~A~^^^1^0.013^0.051^9^0.019^0.034^~2, 3~^~03/01/2011~ -~22971~^~625~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22971~^~626~^0.020^10^0.004^~1~^~AS~^^^1^0.011^0.047^9^0.012^0.028^~2, 3~^~03/01/2011~ -~22971~^~627~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~628~^0.027^10^0.002^~1~^~A~^^^1^0.018^0.040^9^0.022^0.033^~2, 3~^~03/01/2011~ -~22971~^~629~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~630~^0.016^10^0.003^~1~^~AS~^^^1^0.005^0.028^9^0.010^0.022^~2, 3~^~03/01/2011~ -~22971~^~631~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22971~^~645~^2.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~646~^4.983^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~652~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.004^9^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22971~^~653~^0.009^10^0.001^~1~^~A~^^^1^0.006^0.014^9^0.008^0.011^~2, 3~^~03/01/2011~ -~22971~^~654~^0.009^10^0.001^~1~^~A~^^^1^0.003^0.020^9^0.006^0.012^~2, 3~^~03/01/2011~ -~22971~^~662~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.001^9^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22971~^~663~^0.004^10^0.000^~1~^~A~^^^1^0.003^0.007^9^0.003^0.005^~2, 3~^~03/01/2011~ -~22971~^~664~^0.002^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~22971~^~665~^0.018^10^0.004^~1~^~A~^^^1^0.006^0.047^9^0.010^0.027^~2, 3~^~03/01/2011~ -~22971~^~670~^0.004^10^0.001^~1~^~A~^^^1^0.002^0.007^9^0.003^0.006^~1, 2, 3~^~03/01/2011~ -~22971~^~671~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22971~^~672~^0.004^10^0.000^~1~^~A~^^^1^0.003^0.008^9^0.003^0.005^~2, 3~^~03/01/2011~ -~22971~^~673~^0.020^10^0.003^~1~^~A~^^^1^0.011^0.046^9^0.012^0.028^~2, 3~^~03/01/2011~ -~22971~^~674~^1.926^10^0.199^~1~^~A~^^^1^1.031^3.318^9^1.475^2.377^~2, 3~^~03/01/2011~ -~22971~^~675~^4.307^10^0.459^~1~^~A~^^^1^2.069^7.389^9^3.270^5.345^~2, 3~^~03/01/2011~ -~22971~^~676~^0.014^10^0.003^~1~^~A~^^^1^0.002^0.026^9^0.007^0.020^~1, 2, 3~^~03/01/2011~ -~22971~^~685~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^9^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22971~^~687~^0.006^10^0.000^~1~^~A~^^^1^0.003^0.008^9^0.004^0.007^~2, 3~^~03/01/2011~ -~22971~^~689~^0.001^10^0.000^~1~^~AS~^^^1^0.000^0.003^9^0.000^0.002^~2, 3~^~03/01/2011~ -~22971~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22971~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~851~^0.630^10^0.059^~1~^~A~^^^1^0.324^0.925^9^0.497^0.764^~2, 3~^~03/01/2011~ -~22971~^~852~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22971~^~853~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.002^~1, 2, 3~^~03/01/2011~ -~22971~^~858~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22972~^~312~^0.097^11^0.004^~1~^~A~^^^1^0.079^0.135^8^0.087^0.107^~2, 3~^~03/01/2011~ -~22972~^~315~^0.090^11^0.006^~1~^~A~^^^1^0.051^0.115^4^0.074^0.105^~2, 3~^~03/01/2011~ -~22972~^~404~^0.166^11^0.013^~1~^~A~^^^1^0.090^0.230^4^0.130^0.203^~2, 3~^~03/01/2011~ -~22972~^~405~^0.128^11^0.002^~1~^~A~^^^1^0.120^0.140^7^0.123^0.134^~2, 3~^~03/01/2011~ -~22972~^~406~^3.032^11^0.056^~1~^~A~^^^1^2.720^3.220^8^2.903^3.162^~2, 3~^~03/01/2011~ -~22972~^~410~^0.814^5^0.019^~1~^~A~^^^1^0.720^0.860^3^0.749^0.880^~2, 3~^~03/01/2011~ -~22972~^~415~^0.248^11^0.006^~1~^~A~^^^1^0.181^0.292^6^0.234^0.262^~2, 3~^~03/01/2011~ -~22972~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~606~^1.416^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~ -~22972~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~609~^0.002^11^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~610~^0.004^11^0.001^~1~^~A~^^^1^0.002^0.011^5^0.003^0.006^~1, 2, 3~^~03/01/2011~ -~22972~^~611~^0.004^11^0.000^~1~^~A~^^^1^0.003^0.008^4^0.003^0.005^~2, 3~^~03/01/2011~ -~22972~^~612~^0.051^11^0.007^~1~^~A~^^^1^0.030^0.123^4^0.031^0.070^~2, 3~^~03/01/2011~ -~22972~^~613~^0.886^11^0.125^~1~^~A~^^^1^0.531^2.168^4^0.541^1.232^~2, 3~^~03/01/2011~ -~22972~^~614~^0.442^11^0.068^~1~^~A~^^^1^0.251^1.134^4^0.255^0.629^~2, 3~^~03/01/2011~ -~22972~^~615~^0.007^11^0.001^~1~^~A~^^^1^0.004^0.018^4^0.004^0.010^~2, 3~^~03/01/2011~ -~22972~^~617~^1.667^11^0.220^~1~^~AS~^^^1^1.004^3.943^4^1.059^2.275^~2, 3~^~03/01/2011~ -~22972~^~618~^0.623^11^0.080^~1~^~AS~^^^1^0.409^1.431^4^0.402^0.844^~2, 3~^~03/01/2011~ -~22972~^~619~^0.031^11^0.004^~1~^~AS~^^^1^0.021^0.068^4^0.020^0.041^~2, 3~^~03/01/2011~ -~22972~^~620~^0.049^11^0.002^~1~^~A~^^^1^0.038^0.071^4^0.043^0.055^~2, 3~^~03/01/2011~ -~22972~^~621~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.004^8^0.001^0.003^~1, 2, 3~^~03/01/2011~ -~22972~^~624~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.006^9^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~22972~^~625~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^9^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22972~^~626~^0.099^11^0.011^~1~^~AS~^^^1^0.063^0.213^4^0.069^0.129^~2, 3~^~03/01/2011~ -~22972~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~628~^0.032^11^0.005^~1~^~A~^^^1^0.018^0.079^4^0.019^0.045^~2, 3~^~03/01/2011~ -~22972~^~629~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.002^8^0.001^0.002^~1, 2, 3~^~03/01/2011~ -~22972~^~630~^0.003^11^0.001^~1~^~AS~^^^1^0.000^0.010^4^0.002^0.005^~2, 3~^~03/01/2011~ -~22972~^~631~^0.005^11^0.000^~1~^~A~^^^1^0.003^0.010^5^0.004^0.007^~2, 3~^~03/01/2011~ -~22972~^~645~^1.813^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~646~^0.757^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~652~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.006^5^0.002^0.004^~1, 2, 3~^~03/01/2011~ -~22972~^~653~^0.013^11^0.002^~1~^~A~^^^1^0.007^0.031^4^0.008^0.018^~2, 3~^~03/01/2011~ -~22972~^~654~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^9^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22972~^~662~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~03/01/2011~ -~22972~^~663~^0.015^11^0.002^~1~^~A~^^^1^0.007^0.040^4^0.008^0.022^~2, 3~^~03/01/2011~ -~22972~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~665~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.009^5^0.001^0.005^~1, 2, 3~^~03/01/2011~ -~22972~^~670~^0.005^11^0.001^~1~^~A~^^^1^0.002^0.013^5^0.003^0.008^~1, 2, 3~^~03/01/2011~ -~22972~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.000^~1, 2, 3~^~03/01/2011~ -~22972~^~672~^0.023^11^0.003^~1~^~A~^^^1^0.014^0.058^4^0.013^0.032^~2, 3~^~03/01/2011~ -~22972~^~673~^0.098^11^0.011^~1~^~A~^^^1^0.063^0.211^4^0.068^0.127^~2, 3~^~03/01/2011~ -~22972~^~674~^1.652^11^0.218^~1~^~A~^^^1^0.997^3.903^4^1.051^2.253^~2, 3~^~03/01/2011~ -~22972~^~675~^0.615^11^0.079^~1~^~A~^^^1^0.405^1.409^4^0.397^0.832^~2, 3~^~03/01/2011~ -~22972~^~676~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.010^4^0.002^0.005^~1, 2, 3~^~03/01/2011~ -~22972~^~685~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.005^8^0.002^0.003^~1, 2, 3~^~03/01/2011~ -~22972~^~687~^0.011^11^0.002^~1~^~A~^^^1^0.006^0.027^4^0.007^0.015^~2, 3~^~03/01/2011~ -~22972~^~689~^0.012^11^0.001^~1~^~AS~^^^1^0.008^0.023^4^0.009^0.015^~2, 3~^~03/01/2011~ -~22972~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~ -~22972~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2011~ -~22972~^~851~^0.028^11^0.004^~1~^~A~^^^1^0.020^0.064^4^0.018^0.038^~2, 3~^~03/01/2011~ -~22972~^~852~^0.003^11^0.000^~1~^~A~^^^1^0.002^0.008^4^0.002^0.005^~1, 2, 3~^~03/01/2011~ -~22972~^~853~^0.008^11^0.001^~1~^~A~^^^1^0.006^0.015^5^0.007^0.010^~2, 3~^~03/01/2011~ -~22972~^~858~^0.010^11^0.001^~1~^~A~^^^1^0.007^0.017^5^0.008^0.012^~2, 3~^~03/01/2011~ -~22973~^~312~^0.072^12^0.007^~1~^~A~^^^1^0.048^0.105^4^0.053^0.092^~2, 3~^~07/01/2014~ -~22973~^~315~^0.171^12^0.003^~1~^~A~^^^1^0.144^0.181^4^0.163^0.179^~2, 3~^~07/01/2014~ -~22973~^~404~^0.141^6^0.008^~1~^~A~^^^1^0.120^0.180^2^0.108^0.173^~2, 3~^~07/01/2014~ -~22973~^~405~^0.155^6^0.003^~1~^~A~^^^1^0.120^0.160^3^0.144^0.166^~2, 3~^~07/01/2014~ -~22973~^~406~^2.786^6^0.146^~1~^~A~^^^1^2.550^3.100^2^2.173^3.398^~2, 3~^~07/01/2014~ -~22973~^~410~^0.406^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~ -~22973~^~415~^0.117^6^0.005^~1~^~A~^^^1^0.068^0.129^2^0.098^0.135^~2, 3~^~07/01/2014~ -~22973~^~501~^0.089^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~502~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~503~^0.328^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~504~^0.630^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~505~^0.452^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~506~^0.148^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~507~^0.117^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~508~^0.366^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~509~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~510~^0.408^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~511~^0.391^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~512~^0.217^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~513~^0.403^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~514~^0.589^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~515~^1.805^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~516~^0.415^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~517~^0.596^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~518~^0.355^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22973~^~605~^0.170^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~606~^3.466^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~607~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^4^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22973~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~609~^0.003^12^0.001^~1~^~A~^^^1^0.001^0.006^4^0.001^0.004^~1, 2, 3~^~04/01/2011~ -~22973~^~610~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.008^5^0.001^0.003^~1, 2, 3~^~07/01/2014~ -~22973~^~611~^0.011^12^0.002^~1~^~A~^^^1^0.004^0.029^4^0.006^0.017^~2, 3~^~07/01/2014~ -~22973~^~612~^0.081^12^0.006^~1~^~A~^^^1^0.047^0.360^9^0.067^0.095^~2, 3~^~07/01/2014~ -~22973~^~613~^2.569^12^0.055^~1~^~A~^^^1^2.205^3.026^5^2.424^2.714^~2, 3~^~07/01/2014~ -~22973~^~614~^0.724^12^0.021^~1~^~A~^^^1^0.616^1.666^7^0.674^0.774^~2, 3~^~07/01/2014~ -~22973~^~615~^0.019^12^0.002^~1~^~A~^^^1^0.015^0.030^4^0.014^0.024^~2, 3~^~07/01/2014~ -~22973~^~617~^4.115^12^0.074^~1~^~AS~^^^1^3.771^5.601^5^3.921^4.310^~2, 3~^~07/01/2014~ -~22973~^~618~^3.055^12^0.323^~1~^~AS~^^^1^1.813^4.489^4^2.165^3.945^~2, 3~^~07/01/2014~ -~22973~^~619~^0.193^12^0.058^~1~^~AS~^^^1^0.093^0.459^4^0.031^0.355^~2, 3~^~07/01/2014~ -~22973~^~620~^0.043^12^0.004^~1~^~A~^^^1^0.010^0.059^4^0.032^0.053^~2, 3~^~07/01/2014~ -~22973~^~621~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^4^0.002^0.004^~1, 2, 3~^~04/01/2011~ -~22973~^~624~^0.016^12^0.002^~1~^~A~^^^1^0.012^0.025^4^0.010^0.021^~2, 3~^~07/01/2014~ -~22973~^~625~^0.018^12^0.002^~1~^~A~^^^1^0.007^0.085^10^0.015^0.022^~2, 3~^~07/01/2014~ -~22973~^~626~^0.483^12^0.022^~1~^~AS~^^^1^0.210^0.571^4^0.423^0.543^~2, 3~^~07/01/2014~ -~22973~^~627~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^4^0.002^0.002^~1, 2, 3~^~07/01/2014~ -~22973~^~628~^0.068^12^0.010^~1~^~A~^^^1^0.054^0.111^4^0.041^0.095^~2, 3~^~07/01/2014~ -~22973~^~629~^0.004^12^0.001^~1~^~A~^^^1^0.001^0.006^4^0.002^0.005^~1, 2, 3~^~07/01/2014~ -~22973~^~630~^0.028^12^0.001^~1~^~AS~^^^1^0.002^0.034^5^0.025^0.031^~2, 3~^~07/01/2014~ -~22973~^~631~^0.006^12^0.001^~1~^~A~^^^1^0.004^0.009^4^0.004^0.007^~2, 3~^~04/01/2011~ -~22973~^~645~^4.732^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~646~^3.354^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~652~^0.011^12^0.001^~1~^~A~^^^1^0.007^0.061^9^0.008^0.013^~2, 3~^~07/01/2014~ -~22973~^~653~^0.022^12^0.002^~1~^~A~^^^1^0.015^0.155^6^0.017^0.027^~2, 3~^~07/01/2014~ -~22973~^~654~^0.007^12^0.001^~1~^~A~^^^1^0.006^0.011^4^0.005^0.010^~2, 3~^~04/01/2011~ -~22973~^~662~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.039^10^0.004^0.007^~2, 3~^~07/01/2014~ -~22973~^~663~^0.116^12^0.017^~1~^~A~^^^1^0.032^0.685^7^0.077^0.155^~2, 3~^~07/01/2014~ -~22973~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~665~^0.048^12^0.003^~1~^~A~^^^1^0.035^0.111^5^0.041^0.055^~2, 3~^~07/01/2014~ -~22973~^~670~^0.019^12^0.001^~1~^~A~^^^1^0.015^0.079^8^0.016^0.021^~2, 3~^~07/01/2014~ -~22973~^~671~^0.004^12^0.001^~1~^~A~^^^1^0.001^0.007^4^0.001^0.006^~1, 2, 3~^~04/01/2011~ -~22973~^~672~^0.014^12^0.001^~1~^~A~^^^1^0.005^0.053^9^0.012^0.016^~2, 3~^~07/01/2014~ -~22973~^~673~^0.478^12^0.022^~1~^~A~^^^1^0.203^0.566^4^0.418^0.537^~2, 3~^~07/01/2014~ -~22973~^~674~^3.999^12^0.077^~1~^~A~^^^1^3.656^5.055^4^3.791^4.207^~2, 3~^~07/01/2014~ -~22973~^~675~^2.988^12^0.321^~1~^~A~^^^1^1.623^4.421^4^2.103^3.873^~2, 3~^~07/01/2014~ -~22973~^~676~^0.028^12^0.001^~1~^~A~^^^1^0.002^0.034^5^0.025^0.031^~1, 2, 3~^~07/01/2014~ -~22973~^~685~^0.015^12^0.000^~1~^~A~^^^1^0.002^0.018^5^0.014^0.017^~1, 2, 3~^~07/01/2014~ -~22973~^~687~^0.015^12^0.001^~1~^~A~^^^1^0.010^0.101^6^0.012^0.018^~2, 3~^~07/01/2014~ -~22973~^~689~^0.020^12^0.001^~1~^~AS~^^^1^0.011^0.025^4^0.017^0.024^~2, 3~^~07/01/2014~ -~22973~^~693~^0.122^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~695~^0.048^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22973~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22973~^~851~^0.178^12^0.058^~1~^~A~^^^1^0.091^0.442^4^0.016^0.339^~2, 3~^~07/01/2014~ -~22973~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.008^5^0.000^0.002^~1, 2, 3~^~07/01/2014~ -~22973~^~853~^0.019^12^0.001^~1~^~A~^^^1^0.010^0.023^4^0.016^0.022^~2, 3~^~07/01/2014~ -~22973~^~858~^0.014^12^0.001^~1~^~A~^^^1^0.006^0.019^4^0.010^0.017^~2, 3~^~07/01/2014~ -~22974~^~312~^0.100^15^0.003^~1~^~A~^^^1^0.048^0.215^3^0.092^0.108^~2, 3~^~04/01/2016~ -~22974~^~315~^0.311^15^0.008^~1~^~A~^^^1^0.160^0.557^10^0.293^0.328^~2, 3~^~04/01/2016~ -~22974~^~404~^0.087^8^0.001^~1~^~A~^^^1^0.070^0.100^2^0.084^0.091^~2, 3~^~04/01/2016~ -~22974~^~405~^0.147^8^0.006^~1~^~A~^^^1^0.090^0.200^4^0.129^0.165^~2, 3~^~04/01/2016~ -~22974~^~406~^3.275^8^0.197^~1~^~A~^^^1^1.640^4.520^2^2.539^4.011^~2, 3~^~04/01/2016~ -~22974~^~410~^0.628^6^0.025^~1~^~A~^^^1^0.520^0.710^1^0.378^0.878^~2, 3~^~04/01/2016~ -~22974~^~415~^0.221^8^0.010^~1~^~A~^^^1^0.134^0.291^2^0.180^0.263^~2, 3~^~04/01/2016~ -~22974~^~605~^0.069^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~606~^3.598^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~607~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~608~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~22974~^~609~^0.004^10^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.004^~2, 3~^~08/01/2010~ -~22974~^~610~^0.001^10^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.001^~1, 2, 3~^~04/01/2016~ -~22974~^~611~^0.005^10^0.000^~1~^~A~^^^1^0.002^0.019^3^0.004^0.006^~1, 2, 3~^~06/01/2014~ -~22974~^~612~^0.050^10^0.001^~1~^~A~^^^1^0.031^0.079^2^0.045^0.055^~2, 3~^~04/01/2016~ -~22974~^~613~^2.734^10^0.037^~1~^~A~^^^1^1.919^2.989^5^2.637^2.831^~2, 3~^~04/01/2016~ -~22974~^~614~^0.701^10^0.007^~1~^~A~^^^1^0.484^0.800^6^0.683^0.718^~2, 3~^~04/01/2016~ -~22974~^~615~^0.036^10^0.001^~1~^~A~^^^1^0.030^0.055^2^0.033^0.039^~2, 3~^~04/01/2016~ -~22974~^~617~^4.962^10^0.066^~1~^~AS~^^^1^3.552^5.531^6^4.796^5.127^~2, 3~^~01/01/2017~ -~22974~^~618~^6.240^10^0.134^~1~^~AS~^^^1^5.362^8.404^4^5.860^6.620^~2, 3~^~01/01/2017~ -~22974~^~619~^0.474^10^0.007^~1~^~AS~^^^1^0.193^0.673^5^0.456^0.492^~2, 3~^~01/01/2017~ -~22974~^~620~^0.043^10^0.001^~1~^~A~^^^1^0.025^0.053^3^0.038^0.047^~2, 3~^~01/01/2017~ -~22974~^~621~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.003^3^0.003^0.003^~1, 2, 3~^~01/01/2017~ -~22974~^~624~^0.030^10^0.001^~1~^~A~^^^1^0.018^0.034^5^0.028^0.031^~2, 3~^~04/01/2016~ -~22974~^~625~^0.013^10^0.000^~1~^~A~^^^1^0.006^0.020^3^0.012^0.015^~2, 3~^~01/01/2017~ -~22974~^~626~^0.435^10^0.010^~1~^~AS~^^^1^0.205^0.572^4^0.409^0.462^~2, 3~^~01/01/2017~ -~22974~^~627~^0.003^10^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~01/01/2017~ -~22974~^~628~^0.096^10^0.002^~1~^~A~^^^1^0.073^0.112^3^0.090^0.102^~2, 3~^~01/01/2017~ -~22974~^~629~^0.004^10^0.000^~1~^~A~^^^1^0.002^0.007^3^0.002^0.006^~1, 2, 3~^~01/01/2017~ -~22974~^~630~^0.006^10^0.000^~1~^~AS~^^^1^0.003^0.007^2^0.005^0.006^~2, 3~^~01/01/2017~ -~22974~^~631~^0.004^10^0.000^~1~^~A~^^^1^0.004^0.005^2^0.004^0.005^~2, 3~^~01/01/2017~ -~22974~^~645~^5.524^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~646~^6.810^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~652~^0.007^10^0.000^~1~^~A~^^^1^0.005^0.011^3^0.007^0.008^~2, 3~^~04/01/2016~ -~22974~^~653~^0.016^10^0.000^~1~^~A~^^^1^0.013^0.023^5^0.014^0.017^~2, 3~^~04/01/2016~ -~22974~^~654~^0.015^10^0.001^~1~^~A~^^^1^0.011^0.025^3^0.013^0.016^~2, 3~^~04/01/2016~ -~22974~^~662~^0.003^10^0.000^~1~^~A~^^^1^0.001^0.006^2^0.002^0.003^~1, 2, 3~^~08/01/2010~ -~22974~^~663~^0.031^10^0.002^~1~^~A~^^^1^0.020^0.076^2^0.025^0.037^~2, 3~^~04/01/2016~ -~22974~^~664~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.002^2^0.001^0.001^~1, 2, 3~^~08/01/2010~ -~22974~^~665~^0.034^10^0.001^~1~^~A~^^^1^0.024^0.045^5^0.030^0.037^~2, 3~^~04/01/2016~ -~22974~^~670~^0.014^10^0.000^~1~^~A~^^^1^0.012^0.025^4^0.012^0.015^~2, 3~^~04/01/2016~ -~22974~^~671~^0.001^10^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.001^~1, 2, 3~^~01/01/2017~ -~22974~^~672~^0.013^10^0.000^~1~^~A~^^^1^0.009^0.016^3^0.012^0.014^~2, 3~^~01/01/2017~ -~22974~^~673~^0.433^10^0.010^~1~^~A~^^^1^0.204^0.569^4^0.407^0.459^~2, 3~^~04/01/2016~ -~22974~^~674~^4.931^10^0.065^~1~^~A~^^^1^3.532^5.506^6^4.768^5.093^~2, 3~^~04/01/2016~ -~22974~^~675~^6.193^10^0.133^~1~^~A~^^^1^5.319^8.354^4^5.815^6.570^~2, 3~^~04/01/2016~ -~22974~^~676~^0.004^10^0.000^~1~^~A~^^^1^0.003^0.005^2^0.003^0.005^~2, 3~^~08/01/2010~ -~22974~^~685~^0.026^10^0.001^~1~^~A~^^^1^0.007^0.036^2^0.022^0.030^~2, 3~^~04/01/2016~ -~22974~^~687~^0.011^10^0.000^~1~^~A~^^^1^0.008^0.017^4^0.010^0.013^~2, 3~^~01/01/2017~ -~22974~^~689~^0.016^10^0.000^~1~^~AS~^^^1^0.010^0.020^3^0.014^0.017^~2, 3~^~01/01/2017~ -~22974~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~ -~22974~^~697~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~22974~^~851~^0.447^10^0.006^~1~^~A~^^^1^0.186^0.644^4^0.430^0.465^~2, 3~^~04/01/2016~ -~22974~^~852~^0.001^10^0.000^~1~^~A~^^^1^0.000^0.001^2^0.001^0.001^~1, 2, 3~^~01/01/2017~ -~22974~^~853~^0.015^10^0.000^~1~^~A~^^^1^0.009^0.019^3^0.014^0.016^~2, 3~^~01/01/2017~ -~22974~^~856~^0.000^10^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2016~ -~22974~^~858~^0.011^10^0.000^~1~^~A~^^^1^0.006^0.013^3^0.009^0.012^~2, 3~^~01/01/2017~ -~22975~^~312~^0.139^14^0.005^~1~^~A~^^^1^0.040^0.169^8^0.129^0.150^~2, 3~^~05/01/2013~ -~22975~^~315~^0.460^14^0.017^~1~^~A~^^^1^0.155^0.678^9^0.422^0.498^~2, 3~^~05/01/2013~ -~22975~^~404~^0.106^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~405~^0.055^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~406~^6.736^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~415~^0.331^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2011~ -~22975~^~605~^0.082^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~606~^3.366^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~607~^0.002^7^0.000^~1~^~A~^^^1^0.001^0.002^6^0.001^0.002^~2, 3~^~08/01/2010~ -~22975~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~22975~^~609~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.003^0.004^~2, 3~^~08/01/2010~ -~22975~^~610~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.005^6^0.003^0.004^~2, 3~^~08/01/2010~ -~22975~^~611~^0.005^7^0.001^~1~^~A~^^^1^0.002^0.009^6^0.003^0.007^~2, 3~^~08/01/2010~ -~22975~^~612~^0.054^7^0.012^~1~^~A~^^^1^0.026^0.123^6^0.024^0.085^~2, 3~^~08/01/2010~ -~22975~^~613~^2.533^7^0.281^~1~^~A~^^^1^1.681^3.755^6^1.844^3.222^~2, 3~^~08/01/2010~ -~22975~^~614~^0.675^7^0.054^~1~^~A~^^^1^0.490^0.899^6^0.544^0.806^~2, 3~^~08/01/2010~ -~22975~^~615~^0.031^7^0.002^~1~^~A~^^^1^0.021^0.037^6^0.025^0.036^~2, 3~^~08/01/2010~ -~22975~^~617~^4.161^7^0.337^~1~^~AS~^^^1^2.932^5.609^6^3.337^4.984^~2, 3~^~08/01/2010~ -~22975~^~618~^5.518^7^0.283^~1~^~AS~^^^1^4.395^6.437^6^4.826^6.210^~2, 3~^~08/01/2010~ -~22975~^~619~^0.561^7^0.073^~1~^~AS~^^^1^0.147^0.696^6^0.383^0.739^~2, 3~^~08/01/2010~ -~22975~^~620~^0.039^7^0.002^~1~^~A~^^^1^0.032^0.049^6^0.033^0.045^~2, 3~^~08/01/2010~ -~22975~^~621~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.003^0.004^~2, 3~^~08/01/2010~ -~22975~^~624~^0.027^7^0.003^~1~^~A~^^^1^0.018^0.037^6^0.021^0.034^~2, 3~^~08/01/2010~ -~22975~^~625~^0.014^7^0.001^~1~^~A~^^^1^0.009^0.020^6^0.010^0.018^~2, 3~^~08/01/2010~ -~22975~^~626~^0.406^7^0.041^~1~^~AS~^^^1^0.278^0.585^6^0.306^0.505^~2, 3~^~08/01/2010~ -~22975~^~627~^0.002^7^0.000^~1~^~A~^^^1^0.002^0.003^6^0.002^0.003^~2, 3~^~08/01/2010~ -~22975~^~628~^0.066^7^0.008^~1~^~A~^^^1^0.042^0.090^6^0.048^0.085^~2, 3~^~08/01/2010~ -~22975~^~629~^0.003^7^0.001^~1~^~A~^^^1^0.002^0.009^6^0.001^0.006^~2, 3~^~08/01/2010~ -~22975~^~630~^0.005^7^0.000^~1~^~AS~^^^1^0.003^0.007^6^0.004^0.006^~2, 3~^~08/01/2010~ -~22975~^~631~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.007^6^0.003^0.006^~2, 3~^~08/01/2010~ -~22975~^~645~^4.667^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~646~^6.168^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~652~^0.007^7^0.001^~1~^~A~^^^1^0.005^0.011^6^0.005^0.009^~2, 3~^~08/01/2010~ -~22975~^~653~^0.016^7^0.002^~1~^~A~^^^1^0.011^0.024^6^0.012^0.020^~2, 3~^~08/01/2010~ -~22975~^~654~^0.009^7^0.001^~1~^~A~^^^1^0.007^0.011^6^0.008^0.011^~2, 3~^~08/01/2010~ -~22975~^~662~^0.003^7^0.001^~1~^~A~^^^1^0.001^0.006^6^0.001^0.004^~2, 3~^~08/01/2010~ -~22975~^~663~^0.027^7^0.006^~1~^~A~^^^1^0.013^0.056^6^0.013^0.040^~2, 3~^~08/01/2010~ -~22975~^~664~^0.002^7^0.000^~1~^~A~^^^1^0.001^0.003^6^0.001^0.003^~2, 3~^~08/01/2010~ -~22975~^~665~^0.051^7^0.008^~1~^~A~^^^1^0.022^0.081^6^0.032^0.070^~2, 3~^~08/01/2010~ -~22975~^~670~^0.016^7^0.003^~1~^~A~^^^1^0.008^0.031^6^0.009^0.023^~2, 3~^~08/01/2010~ -~22975~^~671~^0.002^7^0.000^~1~^~A~^^^1^0.001^0.004^6^0.001^0.003^~2, 3~^~08/01/2010~ -~22975~^~672~^0.012^7^0.001^~1~^~A~^^^1^0.007^0.016^6^0.009^0.014^~2, 3~^~08/01/2010~ -~22975~^~673~^0.403^7^0.040^~1~^~A~^^^1^0.276^0.582^6^0.304^0.502^~2, 3~^~08/01/2010~ -~22975~^~674~^4.134^7^0.333^~1~^~A~^^^1^2.919^5.575^6^3.319^4.949^~2, 3~^~08/01/2010~ -~22975~^~675~^5.451^7^0.278^~1~^~A~^^^1^4.346^6.368^6^4.772^6.131^~2, 3~^~08/01/2010~ -~22975~^~676~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.003^0.004^~2, 3~^~08/01/2010~ -~22975~^~685~^0.013^7^0.001^~1~^~A~^^^1^0.010^0.020^6^0.010^0.017^~2, 3~^~08/01/2010~ -~22975~^~687~^0.012^7^0.001^~1~^~A~^^^1^0.009^0.020^6^0.009^0.016^~2, 3~^~08/01/2010~ -~22975~^~689~^0.014^7^0.001^~1~^~AS~^^^1^0.011^0.016^6^0.012^0.015^~2, 3~^~08/01/2010~ -~22975~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~22975~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2010~ -~22975~^~851~^0.548^7^0.073^~1~^~A~^^^1^0.133^0.686^6^0.370^0.726^~2, 3~^~08/01/2010~ -~22975~^~852~^0.001^7^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~08/01/2010~ -~22975~^~853~^0.013^7^0.001^~1~^~A~^^^1^0.010^0.015^6^0.011^0.014^~2, 3~^~08/01/2010~ -~22975~^~858~^0.010^7^0.001^~1~^~A~^^^1^0.007^0.013^6^0.008^0.012^~2, 3~^~08/01/2010~ -~22976~^~312~^0.079^15^0.003^~1~^~A~^^^1^0.060^0.099^14^0.073^0.086^~2, 3~^~04/01/2011~ -~22976~^~315~^0.184^15^0.008^~1~^~A~^^^1^0.139^0.244^14^0.167^0.201^~2, 3~^~04/01/2011~ -~22976~^~404~^0.118^9^0.007^~1~^~A~^^^1^0.100^0.160^8^0.103^0.133^~2, 3~^~04/01/2011~ -~22976~^~405~^0.116^9^0.006^~1~^~A~^^^1^0.100^0.140^8^0.103^0.128^~2, 3~^~04/01/2011~ -~22976~^~406~^1.267^9^0.069^~1~^~A~^^^1^0.940^1.530^8^1.108^1.425^~2, 3~^~04/01/2011~ -~22976~^~415~^0.108^9^0.006^~1~^~A~^^^1^0.091^0.133^8^0.094^0.122^~2, 3~^~04/01/2011~ -~22976~^~501~^0.056^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~502~^0.154^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~503~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~504~^0.349^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~505~^0.231^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~506~^0.077^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~507~^0.082^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~508~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~509~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~510~^0.226^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~511~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~512~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~513~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~514~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~515~^1.303^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~516~^0.118^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~517~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~518~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2011~ -~22976~^~605~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~606~^1.191^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~607~^0.025^15^0.003^~1~^~A~^^^1^0.013^0.048^14^0.019^0.030^~2, 3~^~04/01/2011~ -~22976~^~608~^0.020^15^0.002^~1~^~A~^^^1^0.010^0.038^14^0.016^0.024^~2, 3~^~04/01/2011~ -~22976~^~609~^0.019^15^0.001^~1~^~A~^^^1^0.016^0.026^14^0.017^0.020^~2, 3~^~04/01/2011~ -~22976~^~610~^0.046^15^0.004^~1~^~A~^^^1^0.030^0.076^14^0.038^0.053^~2, 3~^~04/01/2011~ -~22976~^~611~^0.049^15^0.004^~1~^~A~^^^1^0.030^0.084^14^0.040^0.058^~2, 3~^~04/01/2011~ -~22976~^~612~^0.169^15^0.015^~1~^~A~^^^1^0.102^0.287^14^0.137^0.200^~2, 3~^~04/01/2011~ -~22976~^~613~^0.610^15^0.038^~1~^~A~^^^1^0.462^0.998^14^0.529^0.690^~2, 3~^~04/01/2011~ -~22976~^~614~^0.208^15^0.015^~1~^~A~^^^1^0.139^0.357^14^0.175^0.241^~2, 3~^~04/01/2011~ -~22976~^~615~^0.005^15^0.000^~1~^~A~^^^1^0.004^0.008^14^0.005^0.006^~2, 3~^~04/01/2011~ -~22976~^~617~^0.627^15^0.050^~1~^~AS~^^^1^0.503^1.284^14^0.521^0.734^~2, 3~^~04/01/2011~ -~22976~^~618~^0.367^15^0.038^~1~^~AS~^^^1^0.209^0.554^14^0.286^0.448^~2, 3~^~04/01/2011~ -~22976~^~619~^0.033^15^0.003^~1~^~AS~^^^1^0.020^0.052^14^0.026^0.040^~2, 3~^~04/01/2011~ -~22976~^~620~^0.005^15^0.000^~1~^~A~^^^1^0.003^0.007^14^0.005^0.006^~2, 3~^~04/01/2011~ -~22976~^~621~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~22976~^~624~^0.005^15^0.000^~1~^~A~^^^1^0.003^0.006^14^0.005^0.006^~2, 3~^~04/01/2011~ -~22976~^~625~^0.012^15^0.001^~1~^~A~^^^1^0.008^0.021^14^0.010^0.014^~2, 3~^~04/01/2011~ -~22976~^~626~^0.035^15^0.003^~1~^~AS~^^^1^0.023^0.068^14^0.028^0.042^~2, 3~^~04/01/2011~ -~22976~^~627~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22976~^~628~^0.007^15^0.000^~1~^~A~^^^1^0.005^0.011^14^0.006^0.008^~2, 3~^~04/01/2011~ -~22976~^~629~^0.004^15^0.001^~1~^~A~^^^1^0.000^0.011^14^0.003^0.006^~1, 2, 3~^~04/01/2011~ -~22976~^~630~^0.001^15^0.000^~1~^~AS~^^^1^0.000^0.001^14^0.000^0.001^~2, 3~^~04/01/2011~ -~22976~^~631~^0.002^15^0.000^~1~^~A~^^^1^0.000^0.003^14^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22976~^~645~^0.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~646~^0.420^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~652~^0.019^15^0.002^~1~^~A~^^^1^0.012^0.031^14^0.015^0.022^~2, 3~^~04/01/2011~ -~22976~^~653~^0.012^15^0.001^~1~^~A~^^^1^0.007^0.021^14^0.010^0.015^~2, 3~^~04/01/2011~ -~22976~^~654~^0.004^15^0.000^~1~^~A~^^^1^0.003^0.005^14^0.003^0.004^~2, 3~^~04/01/2011~ -~22976~^~662~^0.006^15^0.001^~1~^~A~^^^1^0.004^0.011^14^0.005^0.008^~2, 3~^~04/01/2011~ -~22976~^~663~^0.049^15^0.004^~1~^~A~^^^1^0.021^0.087^14^0.042^0.057^~2, 3~^~04/01/2011~ -~22976~^~664~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~665~^0.018^15^0.001^~1~^~A~^^^1^0.011^0.024^14^0.016^0.020^~2, 3~^~04/01/2011~ -~22976~^~670~^0.011^15^0.001^~1~^~A~^^^1^0.006^0.020^14^0.009^0.013^~2, 3~^~04/01/2011~ -~22976~^~671~^0.002^15^0.000^~1~^~A~^^^1^0.000^0.004^14^0.001^0.003^~1, 2, 3~^~04/01/2011~ -~22976~^~672~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.001^0.002^~1, 2, 3~^~04/01/2011~ -~22976~^~673~^0.029^15^0.003^~1~^~A~^^^1^0.019^0.057^14^0.023^0.034^~2, 3~^~04/01/2011~ -~22976~^~674~^0.578^15^0.046^~1~^~A~^^^1^0.463^1.197^14^0.478^0.677^~2, 3~^~04/01/2011~ -~22976~^~675~^0.338^15^0.038^~1~^~A~^^^1^0.177^0.528^14^0.256^0.420^~2, 3~^~04/01/2011~ -~22976~^~676~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.001^14^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~22976~^~685~^0.001^15^0.000^~1~^~A~^^^1^0.000^0.002^14^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~22976~^~687~^0.004^15^0.000^~1~^~A~^^^1^0.003^0.008^14^0.004^0.005^~2, 3~^~04/01/2011~ -~22976~^~689~^0.003^15^0.000^~1~^~AS~^^^1^0.002^0.005^14^0.003^0.004^~2, 3~^~04/01/2011~ -~22976~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~22976~^~697~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~851~^0.032^15^0.003^~1~^~A~^^^1^0.019^0.051^14^0.025^0.039^~2, 3~^~04/01/2011~ -~22976~^~852~^0.000^15^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2011~ -~22976~^~853~^0.003^15^0.000^~1~^~A~^^^1^0.002^0.005^14^0.003^0.004^~1, 2, 3~^~04/01/2011~ -~22976~^~858~^0.002^15^0.000^~1~^~A~^^^1^0.001^0.003^14^0.002^0.003^~1, 2, 3~^~04/01/2011~ -~22977~^~312~^0.090^12^0.001^~1~^~A~^^^1^0.079^0.100^6^0.087^0.094^~2, 3~^~06/01/2012~ -~22977~^~315~^0.193^12^0.004^~1~^~A~^^^1^0.157^0.216^6^0.183^0.203^~2, 3~^~06/01/2012~ -~22977~^~404~^0.070^6^0.005^~1~^~A~^^^1^0.040^0.120^3^0.054^0.085^~2, 3~^~06/01/2012~ -~22977~^~405~^0.074^6^0.002^~1~^~A~^^^1^0.050^0.130^2^0.066^0.083^~2, 3~^~06/01/2012~ -~22977~^~406~^1.528^6^0.055^~1~^~A~^^^1^1.310^1.750^3^1.339^1.717^~2, 3~^~06/01/2012~ -~22977~^~410~^0.323^4^0.008^~1~^~A~^^^1^0.280^0.400^2^0.286^0.361^~2, 3~^~06/01/2012~ -~22977~^~415~^0.122^6^0.003^~1~^~A~^^^1^0.095^0.133^4^0.113^0.130^~2, 3~^~06/01/2012~ -~22977~^~501~^0.085^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~502~^0.219^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~503~^0.224^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~504~^0.578^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~505~^0.486^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~506~^0.164^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~507~^0.116^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~508~^0.329^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~509~^0.238^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~510~^0.285^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~511~^0.328^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~512~^0.183^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~513~^0.298^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~514~^0.578^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~515~^1.869^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~516~^0.280^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~517~^0.786^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~518~^0.371^0^^~1~^~A~^^^^^^^^^^~01/01/2013~ -~22977~^~605~^0.196^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~606~^2.348^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~607~^0.046^6^0.003^~1~^~A~^^^1^0.037^0.059^2^0.035^0.058^~2, 3~^~06/01/2012~ -~22977~^~608~^0.033^6^0.002^~1~^~A~^^^1^0.025^0.045^3^0.026^0.040^~2, 3~^~06/01/2012~ -~22977~^~609~^0.021^6^0.001^~1~^~A~^^^1^0.017^0.027^3^0.019^0.023^~2, 3~^~06/01/2012~ -~22977~^~610~^0.056^6^0.002^~1~^~A~^^^1^0.044^0.074^3^0.049^0.063^~2, 3~^~06/01/2012~ -~22977~^~611~^0.063^6^0.002^~1~^~A~^^^1^0.051^0.084^4^0.058^0.068^~2, 3~^~06/01/2012~ -~22977~^~612~^0.273^6^0.007^~1~^~A~^^^1^0.241^0.323^4^0.253^0.293^~2, 3~^~06/01/2012~ -~22977~^~613~^1.196^6^0.024^~1~^~A~^^^1^1.090^1.371^3^1.121^1.272^~2, 3~^~06/01/2012~ -~22977~^~614~^0.571^6^0.014^~1~^~A~^^^1^0.546^0.609^3^0.526^0.617^~2, 3~^~06/01/2012~ -~22977~^~615~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.009^2^0.007^0.008^~2, 3~^~06/01/2012~ -~22977~^~617~^1.557^6^0.043^~1~^~AS~^^^1^1.403^1.675^2^1.386^1.728^~2, 3~^~06/01/2012~ -~22977~^~618~^0.379^6^0.006^~1~^~AS~^^^1^0.298^0.518^4^0.363^0.394^~2, 3~^~06/01/2012~ -~22977~^~619~^0.026^6^0.001^~1~^~AS~^^^1^0.022^0.031^2^0.023^0.028^~2, 3~^~06/01/2012~ -~22977~^~620~^0.009^6^0.000^~1~^~A~^^^1^0.007^0.013^2^0.008^0.009^~2, 3~^~06/01/2012~ -~22977~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~06/01/2012~ -~22977~^~625~^0.032^6^0.001^~1~^~A~^^^1^0.026^0.036^3^0.029^0.035^~2, 3~^~06/01/2012~ -~22977~^~626~^0.129^6^0.003^~1~^~AS~^^^1^0.111^0.146^2^0.117^0.142^~2, 3~^~06/01/2012~ -~22977~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22977~^~628~^0.016^6^0.000^~1~^~A~^^^1^0.013^0.022^4^0.015^0.017^~2, 3~^~06/01/2012~ -~22977~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22977~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^2^0.000^0.001^~2, 3~^~06/01/2012~ -~22977~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^2^0.003^0.004^~2, 3~^~06/01/2012~ -~22977~^~645~^1.758^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~646~^0.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~652~^0.033^6^0.001^~1~^~A~^^^1^0.031^0.036^4^0.031^0.035^~2, 3~^~06/01/2012~ -~22977~^~653~^0.039^6^0.002^~1~^~A~^^^1^0.032^0.047^2^0.034^0.045^~2, 3~^~06/01/2012~ -~22977~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2012~ -~22977~^~662~^0.013^6^0.000^~1~^~A~^^^1^0.010^0.015^4^0.013^0.014^~2, 3~^~06/01/2012~ -~22977~^~663~^0.148^6^0.012^~1~^~A~^^^1^0.112^0.201^2^0.096^0.200^~2, 3~^~06/01/2012~ -~22977~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~665~^0.034^6^0.002^~1~^~A~^^^1^0.026^0.040^4^0.029^0.039^~2, 3~^~06/01/2012~ -~22977~^~670~^0.023^6^0.001^~1~^~A~^^^1^0.018^0.027^3^0.018^0.028^~2, 3~^~06/01/2012~ -~22977~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.001^0.010^2^0.003^0.006^~1, 2, 3~^~06/01/2012~ -~22977~^~673~^0.116^6^0.003^~1~^~A~^^^1^0.100^0.131^2^0.103^0.129^~2, 3~^~06/01/2012~ -~22977~^~674~^1.409^6^0.040^~1~^~A~^^^1^1.265^1.549^2^1.248^1.570^~2, 3~^~06/01/2012~ -~22977~^~675~^0.322^6^0.004^~1~^~A~^^^1^0.242^0.467^4^0.310^0.334^~2, 3~^~06/01/2012~ -~22977~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22977~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~687~^0.022^6^0.001^~1~^~A~^^^1^0.016^0.028^2^0.016^0.028^~2, 3~^~06/01/2012~ -~22977~^~689~^0.007^6^0.000^~1~^~AS~^^^1^0.005^0.010^3^0.005^0.008^~2, 3~^~06/01/2012~ -~22977~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~ -~22977~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22977~^~851~^0.026^6^0.001^~1~^~A~^^^1^0.022^0.031^2^0.023^0.028^~2, 3~^~06/01/2012~ -~22977~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~06/01/2012~ -~22977~^~853~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.009^4^0.005^0.008^~2, 3~^~06/01/2012~ -~22977~^~858~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.005^2^0.002^0.005^~1, 2, 3~^~06/01/2012~ -~22978~^~312~^0.085^13^0.003^~1~^~A~^^^1^0.047^0.201^4^0.077^0.093^~2, 3~^~07/01/2014~ -~22978~^~315~^0.310^13^0.014^~1~^~A~^^^1^0.182^0.521^4^0.272^0.347^~2, 3~^~07/01/2014~ -~22978~^~404~^0.132^7^0.002^~1~^~A~^^^1^0.110^0.170^1^0.117^0.147^~2, 3~^~07/01/2014~ -~22978~^~405~^0.064^7^0.001^~1~^~A~^^^1^0.030^0.080^2^0.060^0.069^~2, 3~^~07/01/2014~ -~22978~^~406~^5.917^7^0.278^~1~^~A~^^^1^3.450^7.280^1^2.498^9.336^~2, 3~^~07/01/2014~ -~22978~^~410~^0.647^5^0.031^~1~^~A~^^^1^0.590^0.780^1^0.369^0.926^~2, 3~^~07/01/2014~ -~22978~^~415~^0.338^7^0.011^~1~^~A~^^^1^0.203^0.436^1^0.203^0.472^~2, 3~^~07/01/2014~ -~22978~^~501~^0.148^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~502~^0.416^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~503~^0.364^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~504~^0.910^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~505~^0.958^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~506~^0.287^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~507~^0.173^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~508~^0.470^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~509~^0.365^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~510~^0.408^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~511~^0.740^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~512~^0.367^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~513~^0.641^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~514~^1.090^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~515~^2.094^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~516~^0.556^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~517~^0.858^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~518~^0.573^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~22978~^~521~^0.088^2^^~1~^~A~^^^1^0.070^0.100^^^^^~07/01/2014~ -~22978~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~606~^2.437^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~609~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.007^1^0.001^0.008^~2, 3~^~06/01/2012~ -~22978~^~610~^0.006^7^0.000^~1~^~A~^^^1^0.004^0.008^2^0.006^0.007^~2, 3~^~07/01/2014~ -~22978~^~611~^0.005^7^0.000^~1~^~A~^^^1^0.002^0.007^1^0.001^0.010^~1, 2, 3~^~07/01/2014~ -~22978~^~612~^0.026^7^0.001^~1~^~A~^^^1^0.017^0.036^1^0.014^0.037^~2, 3~^~07/01/2014~ -~22978~^~613~^1.829^7^0.014^~1~^~A~^^^1^1.678^1.998^2^1.776^1.882^~2, 3~^~07/01/2014~ -~22978~^~614~^0.463^7^0.010^~1~^~A~^^^1^0.330^0.600^1^0.351^0.575^~2, 3~^~07/01/2014~ -~22978~^~615~^0.041^7^0.001^~1~^~A~^^^1^0.033^0.047^1^0.034^0.049^~2, 3~^~07/01/2014~ -~22978~^~617~^3.815^7^0.185^~1~^~AS~^^^1^3.277^5.226^1^1.544^6.085^~2, 3~^~07/01/2014~ -~22978~^~618~^5.811^7^0.104^~1~^~AS~^^^1^4.547^6.489^1^4.961^6.660^~2, 3~^~07/01/2014~ -~22978~^~619~^0.356^7^0.021^~1~^~AS~^^^1^0.127^0.685^1^0.090^0.622^~2, 3~^~07/01/2014~ -~22978~^~620~^0.030^7^0.001^~1~^~A~^^^1^0.020^0.042^1^0.020^0.040^~2, 3~^~07/01/2014~ -~22978~^~621~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.003^^^^~1, 2, 3~^~07/01/2014~ -~22978~^~624~^0.027^7^0.001^~1~^~A~^^^1^0.016^0.040^1^0.015^0.038^~2, 3~^~07/01/2014~ -~22978~^~625~^0.006^7^0.000^~1~^~A~^^^1^0.005^0.010^1^0.003^0.008^~2, 3~^~06/01/2012~ -~22978~^~626~^0.177^7^0.005^~1~^~AS~^^^1^0.152^0.265^2^0.154^0.201^~2, 3~^~07/01/2014~ -~22978~^~627~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.003^1^0.000^0.002^~1, 2, 3~^~06/01/2012~ -~22978~^~628~^0.069^7^0.005^~1~^~A~^^^1^0.053^0.119^1^0.011^0.127^~2, 3~^~07/01/2014~ -~22978~^~629~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~06/01/2012~ -~22978~^~630~^0.003^7^0.000^~1~^~AS~^^^1^0.001^0.004^1^-0.001^0.006^~2, 3~^~07/01/2014~ -~22978~^~631~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^1^0.002^0.004^~1, 2, 3~^~06/01/2012~ -~22978~^~645~^4.081^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~646~^6.235^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~652~^0.004^7^0.000^~1~^~A~^^^1^0.003^0.007^1^0.002^0.006^~2, 3~^~06/01/2012~ -~22978~^~653~^0.012^7^0.000^~1~^~A~^^^1^0.011^0.015^1^0.011^0.013^~2, 3~^~07/01/2014~ -~22978~^~654~^0.018^7^0.000^~1~^~A~^^^1^0.014^0.022^1^0.015^0.021^~2, 3~^~07/01/2014~ -~22978~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.001^~1, 2, 3~^~07/01/2014~ -~22978~^~663~^0.023^7^0.002^~1~^~A~^^^1^0.015^0.038^1^0.002^0.045^~2, 3~^~07/01/2014~ -~22978~^~664~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~665~^0.031^7^0.001^~1~^~A~^^^1^0.023^0.049^3^0.029^0.034^~2, 3~^~07/01/2014~ -~22978~^~670~^0.009^7^0.000^~1~^~A~^^^1^0.005^0.014^3^0.008^0.010^~2, 3~^~07/01/2014~ -~22978~^~671~^0.005^7^0.000^~1~^~A~^^^1^0.000^0.008^^^^~1, 2, 3~^~07/01/2014~ -~22978~^~672~^0.010^7^0.000^~1~^~A~^^^1^0.007^0.014^1^0.005^0.015^~2, 3~^~07/01/2014~ -~22978~^~673~^0.177^7^0.005^~1~^~A~^^^1^0.152^0.263^2^0.153^0.201^~2, 3~^~07/01/2014~ -~22978~^~674~^3.791^7^0.184^~1~^~A~^^^1^3.250^5.188^1^1.543^6.039^~2, 3~^~07/01/2014~ -~22978~^~675~^5.770^7^0.104^~1~^~A~^^^1^4.489^6.460^1^4.936^6.604^~2, 3~^~07/01/2014~ -~22978~^~676~^0.003^7^0.000^~1~^~A~^^^1^0.001^0.004^1^-0.001^0.006^~1, 2, 3~^~07/01/2014~ -~22978~^~685~^0.019^7^0.000^~1~^~A~^^^1^0.003^0.034^1^0.018^0.021^~2, 3~^~07/01/2014~ -~22978~^~687~^0.007^7^0.000^~1~^~A~^^^1^0.006^0.009^2^0.006^0.007^~2, 3~^~06/01/2012~ -~22978~^~689~^0.011^7^0.000^~1~^~AS~^^^1^0.007^0.013^2^0.010^0.011^~2, 3~^~07/01/2014~ -~22978~^~693~^0.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~22978~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~851~^0.337^7^0.021^~1~^~A~^^^1^0.123^0.651^1^0.073^0.600^~2, 3~^~07/01/2014~ -~22978~^~852~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2012~ -~22978~^~853~^0.011^7^0.000^~1~^~A~^^^1^0.007^0.013^2^0.010^0.011^~2, 3~^~07/01/2014~ -~22978~^~858~^0.011^7^0.000^~1~^~A~^^^1^0.008^0.016^1^0.007^0.016^~2, 3~^~07/01/2014~ -~22998~^~312~^0.176^6^0.003^~1~^~A~^^^1^0.169^0.187^5^0.169^0.184^~2, 3~^~08/01/2012~ -~22998~^~315~^1.007^6^0.014^~1~^~A~^^^1^0.945^1.040^5^0.971^1.042^~2, 3~^~08/01/2012~ -~22998~^~404~^0.593^3^0.018^~1~^~A~^^^1^0.560^0.620^2^0.517^0.669^~2, 3~^~08/01/2012~ -~22998~^~405~^0.097^3^0.012^~1~^~A~^^^1^0.080^0.120^2^0.045^0.148^~2, 3~^~08/01/2012~ -~22998~^~406~^5.123^3^0.382^~1~^~A~^^^1^4.400^5.700^2^3.478^6.768^~2, 3~^~08/01/2012~ -~22998~^~410~^0.565^2^^~1~^~A~^^^1^0.550^0.580^1^^^^~08/01/2012~ -~22998~^~415~^0.183^3^0.015^~1~^~A~^^^1^0.160^0.210^2^0.121^0.246^~2, 3~^~08/01/2012~ -~22998~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~606~^0.389^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~612~^0.013^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~613~^0.327^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~614~^0.034^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~617~^0.296^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~618~^0.429^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~620~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~626~^0.007^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~631~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~645~^0.328^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~646~^0.463^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~654~^0.006^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~663~^0.006^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~665~^0.007^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~670~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~671~^0.019^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~672~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~673~^0.007^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~674~^0.290^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~675~^0.420^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~676~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~689~^0.004^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~22998~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22998~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~851~^0.017^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~ -~22998~^~853~^0.004^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22998~^~858~^0.009^1^^~1~^~A~^^^^^^^^^^~08/01/2012~ -~22999~^~312~^0.058^6^0.003^~1~^~A~^^^1^0.049^0.071^5^0.050^0.066^~2, 3~^~08/01/2012~ -~22999~^~315~^0.315^6^0.024^~1~^~A~^^^1^0.282^0.434^5^0.254^0.377^~2, 3~^~08/01/2012~ -~22999~^~404~^0.150^3^0.006^~1~^~A~^^^1^0.140^0.160^2^0.125^0.175^~2, 3~^~08/01/2012~ -~22999~^~405~^0.027^3^0.007^~1~^~A~^^^1^0.020^0.040^2^-0.002^0.055^~2, 3~^~08/01/2012~ -~22999~^~406~^1.423^3^0.058^~1~^~A~^^^1^1.330^1.530^2^1.173^1.673^~2, 3~^~08/01/2012~ -~22999~^~410~^0.160^2^^~1~^~A~^^^1^0.160^0.160^^^^^~08/01/2012~ -~22999~^~415~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~08/01/2012~ -~22999~^~605~^0.485^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~606~^0.746^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~607~^0.060^3^0.060^~1~^~A~^^^1^0.000^0.179^2^-0.197^0.316^~1, 2, 3~^~08/01/2012~ -~22999~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~612~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~08/01/2012~ -~22999~^~613~^0.418^3^0.012^~1~^~A~^^^1^0.397^0.437^2^0.368^0.467^~2, 3~^~08/01/2012~ -~22999~^~614~^0.230^3^0.007^~1~^~A~^^^1^0.216^0.239^2^0.200^0.260^~2, 3~^~08/01/2012~ -~22999~^~615~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~08/01/2012~ -~22999~^~617~^1.397^3^0.041^~1~^~AS~^^^1^1.323^1.465^2^1.220^1.574^~2, 3~^~08/01/2012~ -~22999~^~618~^1.023^3^0.031^~1~^~AS~^^^1^0.979^1.084^2^0.888^1.158^~2, 3~^~08/01/2012~ -~22999~^~619~^0.134^3^0.004^~1~^~AS~^^^1^0.128^0.141^2^0.117^0.150^~2, 3~^~08/01/2012~ -~22999~^~620~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~22999~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~08/01/2012~ -~22999~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~626~^0.004^3^0.000^~1~^~AS~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2012~ -~22999~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~08/01/2012~ -~22999~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~22999~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~22999~^~645~^1.421^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~646~^1.161^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~08/01/2012~ -~22999~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~22999~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~663~^0.464^3^0.014^~1~^~A~^^^1^0.438^0.484^2^0.405^0.522^~2, 3~^~08/01/2012~ -~22999~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~665~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.016^0.026^~2, 3~^~08/01/2012~ -~22999~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~08/01/2012~ -~22999~^~671~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.007^2^-0.002^0.011^~1, 2, 3~^~08/01/2012~ -~22999~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~673~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~08/01/2012~ -~22999~^~674~^0.933^3^0.028^~1~^~A~^^^1^0.885^0.981^2^0.814^1.053^~2, 3~^~08/01/2012~ -~22999~^~675~^1.000^3^0.030^~1~^~A~^^^1^0.957^1.058^2^0.871^1.129^~2, 3~^~08/01/2012~ -~22999~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~22999~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~08/01/2012~ -~22999~^~693~^0.464^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~22999~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~851~^0.134^3^0.004^~1~^~A~^^^1^0.128^0.141^2^0.117^0.150^~2, 3~^~08/01/2012~ -~22999~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~22999~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~22999~^~858~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~08/01/2012~ -~23000~^~312~^0.073^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~315~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~405~^0.209^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~406~^4.577^6^0.100^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~410~^0.786^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~415~^0.577^6^0.034^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~501~^0.241^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~502~^0.941^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~503~^0.910^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~504~^1.721^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~505~^1.870^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~506~^0.607^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~507~^0.225^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~508~^0.814^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~509~^0.738^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~510~^0.967^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~511~^1.408^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~512~^0.693^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~513~^1.220^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~514~^1.918^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~515~^3.383^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~516~^0.976^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~517~^0.879^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~518~^0.822^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~521~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23000~^~605~^0.256^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23000~^~606~^2.033^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23000~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~612~^0.133^6^0.009^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~613~^1.132^6^0.081^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~614~^0.701^6^0.043^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~617~^2.247^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23000~^~618~^0.272^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23000~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23000~^~620~^0.049^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~625~^0.030^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~626~^0.171^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23000~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~628~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23000~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~645~^2.497^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23000~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23000~^~653~^0.059^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~654~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~663~^0.256^6^0.016^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~670~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~673~^0.171^6^0.009^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~674~^1.991^6^0.117^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~675~^0.253^6^0.012^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~687~^0.047^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23000~^~693~^0.256^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23000~^~851~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23000~^~859~^0.136^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23001~^~312~^0.057^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~404~^0.050^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23001~^~405~^0.226^6^0.011^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~406~^4.923^6^0.152^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~415~^0.622^6^0.020^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~501~^0.229^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~502~^0.966^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~503~^0.954^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~504~^1.766^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~505~^1.963^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~506~^0.554^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~507~^0.209^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~508~^0.822^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~509~^0.763^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~510~^1.024^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~511~^1.395^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~512~^0.768^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~513~^1.270^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~514~^1.996^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~515~^3.350^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~516~^1.008^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~517~^0.919^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~518~^0.844^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~521~^0.140^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23001~^~605~^0.849^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~606~^5.981^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~610~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~611~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~612~^0.416^6^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~613~^3.310^6^0.084^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~614~^1.983^6^0.054^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~615~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~617~^5.803^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23001~^~618~^0.560^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23001~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23001~^~620~^0.038^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~625~^0.107^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~626~^0.491^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23001~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23001~^~628~^0.034^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23001~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~645~^6.549^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~646~^0.659^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~652~^0.070^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~653~^0.166^6^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~654~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~662~^0.042^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~663~^0.725^6^0.012^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~665~^0.081^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~670~^0.072^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~673~^0.449^6^0.011^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~674~^5.077^6^0.125^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~675~^0.407^6^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~687~^0.115^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23001~^~693~^0.768^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23001~^~851~^0.026^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23001~^~853~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~312~^0.065^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~404~^0.057^0^^~4~^~BFPN~^~13910~^^^^^^^^^~03/01/2013~ -~23002~^~405~^0.232^6^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~406~^5.523^6^0.148^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~415~^0.623^6^0.020^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~501~^0.284^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~502~^1.197^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~503~^1.183^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~504~^2.189^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~505~^2.433^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~506~^0.687^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~507~^0.259^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~508~^1.019^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~509~^0.946^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~510~^1.269^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~511~^1.729^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~512~^0.952^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~513~^1.574^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~514~^2.474^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~515~^4.152^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~516~^1.249^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~517~^1.139^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~518~^1.046^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~521~^0.174^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23002~^~605~^1.117^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~606~^7.481^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~610~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~611~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~612~^0.520^6^0.019^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~613~^4.118^6^0.115^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~614~^2.505^6^0.068^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~615~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~617~^7.343^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23002~^~618~^0.703^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23002~^~619~^0.032^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23002~^~620~^0.046^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~625~^0.138^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~626~^0.618^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23002~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23002~^~628~^0.043^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23002~^~631~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~645~^8.287^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~646~^0.822^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~652~^0.086^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~653~^0.208^6^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~654~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~662~^0.055^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~663~^0.960^6^0.029^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~665~^0.102^6^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~670~^0.086^6^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~672~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~673~^0.563^6^0.022^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~674~^6.383^6^0.107^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~675~^0.516^6^0.018^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~687~^0.145^6^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23002~^~693~^1.015^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~695~^0.102^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23002~^~851~^0.032^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23002~^~853~^0.021^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~312~^0.065^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~404~^0.053^0^^~4~^~BFPN~^~13913~^^^^^^^^^~03/01/2013~ -~23003~^~405~^0.202^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~406~^4.865^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~410~^0.355^0^^~4~^~BFPN~^~13913~^^^^^^^^^~03/01/2013~ -~23003~^~415~^0.672^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~501~^0.232^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~502~^0.994^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~503~^0.981^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~504~^1.833^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~505~^2.046^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~506~^0.572^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~508~^0.844^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~509~^0.793^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~510~^1.049^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~511~^1.447^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~512~^0.809^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~513~^1.302^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~514~^2.069^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~515~^3.455^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~516~^1.024^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~517~^0.955^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~518~^0.877^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~521~^0.141^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~605~^0.829^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~606~^5.696^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~610~^0.010^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~611~^0.011^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~612~^0.407^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~613~^3.142^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~614~^1.881^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~615~^0.011^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~617~^5.410^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23003~^~618~^0.521^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23003~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23003~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~625~^0.103^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~626~^0.466^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23003~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23003~^~628~^0.031^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~645~^6.119^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~646~^0.613^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~652~^0.071^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~653~^0.161^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~662~^0.040^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~663~^0.712^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~665~^0.078^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~670~^0.068^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~673~^0.426^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~674~^4.698^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~675~^0.375^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~687~^0.109^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23003~^~693~^0.752^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23003~^~851~^0.024^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23003~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~312~^0.068^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~404~^0.060^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23004~^~405~^0.229^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~406~^5.304^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~415~^0.572^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~501~^0.294^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~502~^1.259^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~503~^1.243^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~504~^2.322^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~505~^2.592^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~506~^0.724^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~507~^0.275^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~508~^1.070^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~509~^1.005^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~510~^1.329^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~511~^1.833^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~512~^1.025^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~513~^1.649^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~514~^2.621^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~515~^4.377^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~516~^1.298^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~517~^1.209^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~518~^1.111^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~521~^0.179^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23004~^~605~^1.049^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~606~^6.843^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~610~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~611~^0.014^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~612~^0.476^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~613~^3.747^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~614~^2.301^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~615~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~617~^6.619^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23004~^~618~^0.628^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23004~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23004~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~625~^0.125^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~626~^0.551^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23004~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23004~^~628~^0.040^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23004~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~645~^7.469^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~646~^0.737^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~652~^0.083^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~653~^0.195^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~662~^0.051^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~663~^0.904^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~665~^0.094^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~670~^0.077^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~673~^0.500^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~674~^5.715^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~675~^0.457^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~687~^0.134^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23004~^~693~^0.955^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~695~^0.094^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23004~^~851~^0.027^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23004~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~312~^0.051^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~315~^0.002^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~404~^0.049^0^^~4~^~BFPN~^~13909~^^^^^^^^^~03/01/2013~ -~23005~^~405~^0.187^6^0.011^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~406~^5.153^6^0.089^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~415~^0.572^6^0.010^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~501~^0.225^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~502~^0.948^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~503~^0.937^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~504~^1.734^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~505~^1.927^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~506~^0.544^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~507~^0.205^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~508~^0.807^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~509~^0.749^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~510~^1.005^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~511~^1.370^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~512~^0.754^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~513~^1.247^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~514~^1.960^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~515~^3.289^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~516~^0.990^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~517~^0.902^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~518~^0.828^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~521~^0.137^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~605~^0.903^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~606~^6.495^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~610~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~611~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~612~^0.452^6^0.025^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~613~^3.577^6^0.183^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~614~^2.171^6^0.113^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~615~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~617~^6.270^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23005~^~618~^0.593^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23005~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23005~^~620~^0.039^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~625~^0.112^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~626~^0.531^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23005~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23005~^~628~^0.036^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23005~^~631~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~645~^7.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~646~^0.698^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~652~^0.075^6^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~653~^0.181^6^0.010^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~654~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~662~^0.046^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~663~^0.769^6^0.063^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~665~^0.088^6^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~670~^0.079^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~672~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~673~^0.486^6^0.027^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~674~^5.500^6^0.273^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~675~^0.427^6^0.024^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~687~^0.122^6^0.011^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23005~^~693~^0.815^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~695~^0.088^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23005~^~851~^0.028^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23005~^~853~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~312~^0.064^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~404~^0.055^0^^~4~^~BFPN~^~13910~^^^^^^^^^~03/01/2013~ -~23006~^~405~^0.222^6^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~406~^5.480^6^0.108^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~415~^0.662^6^0.013^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~501~^0.275^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~502~^1.159^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~503~^1.146^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~504~^2.120^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~505~^2.356^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~506~^0.666^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~507~^0.251^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~508~^0.987^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~509~^0.917^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~510~^1.229^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~511~^1.675^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~512~^0.922^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~513~^1.525^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~514~^2.397^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~515~^4.022^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~516~^1.210^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~517~^1.104^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~518~^1.013^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~521~^0.168^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~605~^1.270^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~606~^8.356^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~610~^0.014^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~611~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~612~^0.584^6^0.031^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~613~^4.584^6^0.194^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~614~^2.808^6^0.121^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~615~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~617~^8.123^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23006~^~618~^0.783^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23006~^~619~^0.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23006~^~620~^0.049^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~625~^0.145^6^0.007^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~626~^0.698^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23006~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23006~^~628~^0.045^6^0.003^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23006~^~631~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~645~^9.174^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~646~^0.910^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~652~^0.097^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~653~^0.232^6^0.012^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~654~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~662~^0.060^6^0.004^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~663~^1.091^6^0.053^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~665~^0.119^6^0.006^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~670~^0.098^6^0.005^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~672~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~673~^0.638^6^0.032^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~674~^7.032^6^0.259^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~675~^0.567^6^0.022^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~687~^0.164^6^0.008^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23006~^~693~^1.152^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~695~^0.119^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23006~^~851~^0.035^6^0.001^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23006~^~853~^0.022^6^0.000^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~312~^0.047^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~404~^0.052^0^^~4~^~BFPN~^~13913~^^^^^^^^^~03/01/2013~ -~23007~^~405~^0.175^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~406~^5.136^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~415~^0.576^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~501~^0.227^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~502~^0.974^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~503~^0.962^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~504~^1.796^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~505~^2.005^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~506~^0.560^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~507~^0.213^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~508~^0.828^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~509~^0.777^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~510~^1.028^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~511~^1.418^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~512~^0.793^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~513~^1.276^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~514~^2.028^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~515~^3.386^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~516~^1.004^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~517~^0.936^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~518~^0.859^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~605~^0.892^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~606~^6.211^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~610~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~611~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~612~^0.439^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~613~^3.414^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~614~^2.069^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~615~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~617~^5.937^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23007~^~618~^0.562^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23007~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23007~^~620~^0.038^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~625~^0.109^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~626~^0.508^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23007~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23007~^~628~^0.034^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23007~^~631~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~645~^6.707^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~646~^0.663^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~652~^0.075^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~653~^0.175^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~662~^0.046^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~663~^0.762^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~665~^0.085^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~670~^0.075^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~673~^0.462^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~674~^5.175^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~675~^0.402^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~687~^0.120^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23007~^~693~^0.808^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23007~^~851~^0.026^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23007~^~853~^0.019^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~312~^0.056^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~404~^0.058^0^^~4~^~BFPN~^~13914~^^^^^^^^^~03/01/2013~ -~23008~^~405~^0.203^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~406~^5.274^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~415~^0.663^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~501~^0.282^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~502~^1.209^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~503~^1.194^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~504~^2.230^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~505~^2.490^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~506~^0.696^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~507~^0.264^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~508~^1.028^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~509~^0.965^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~510~^1.277^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~511~^1.761^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~512~^0.985^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~513~^1.584^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~514~^2.518^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~515~^4.204^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~516~^1.246^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~517~^1.162^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~518~^1.067^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~521~^0.172^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~605~^1.228^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~606~^7.806^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~610~^0.013^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~611~^0.015^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~612~^0.551^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~613~^4.266^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~614~^2.623^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~615~^0.014^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~617~^7.455^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23008~^~618~^0.735^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23008~^~619~^0.032^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23008~^~620~^0.047^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~625~^0.134^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~626~^0.641^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23008~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23008~^~628~^0.040^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23008~^~631~^0.012^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~645~^8.425^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~646~^0.853^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~652~^0.097^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~653~^0.222^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~662~^0.057^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~663~^1.055^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~665~^0.116^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~670~^0.092^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~672~^0.006^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~673~^0.584^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~674~^6.400^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~675~^0.527^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~687~^0.155^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~23008~^~693~^1.112^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~695~^0.116^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~23008~^~851~^0.032^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23008~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23030~^~312~^0.093^2^^~1~^~A~^^^1^0.092^0.094^^^^^~01/01/2005~ -~23030~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23030~^~404~^0.059^2^^~1~^~A~^^^1^0.058^0.061^^^^^~01/01/2005~ -~23030~^~405~^0.170^2^^~1~^~A~^^^1^0.167^0.173^^^^^~01/01/2005~ -~23030~^~406~^5.455^2^^~1~^~A~^^^1^5.270^5.640^^^^^~01/01/2005~ -~23030~^~410~^0.727^2^^~1~^~A~^^^1^0.677^0.778^^^^^~01/01/2005~ -~23030~^~415~^0.612^2^^~1~^~A~^^^1^0.608^0.617^^^^^~01/01/2005~ -~23030~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~502~^0.855^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~503~^0.974^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~504~^1.703^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~505~^1.809^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~506~^0.558^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~507~^0.276^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~508~^0.846^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~509~^0.682^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~510~^1.062^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~511~^1.384^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~512~^0.683^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~513~^1.302^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~514~^1.950^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~515~^3.214^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~516~^1.304^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~517~^1.021^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~518~^0.843^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23030~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~606~^1.755^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~612~^0.123^2^^~1~^~A~^^^1^0.122^0.123^^^^^~01/01/2005~ -~23030~^~613~^1.081^2^^~1~^~A~^^^1^1.068^1.095^^^^^~01/01/2005~ -~23030~^~614~^0.474^2^^~1~^~A~^^^1^0.471^0.478^^^^^~01/01/2005~ -~23030~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~617~^1.933^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23030~^~618~^0.216^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23030~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23030~^~620~^0.052^2^^~1~^~A~^^^1^0.051^0.054^^^^^~01/01/2005~ -~23030~^~624~^0.017^2^^~1~^~A~^^^1^0.016^0.017^^^^^~01/01/2005~ -~23030~^~625~^0.036^2^^~1~^~A~^^^1^0.035^0.038^^^^^~01/01/2005~ -~23030~^~626~^0.175^2^^~1~^~A~^^^1^0.167^0.184^^^^^~01/01/2005~ -~23030~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23030~^~628~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^^~01/01/2005~ -~23030~^~645~^2.152^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~646~^0.277^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~652~^0.017^2^^~1~^~A~^^^1^0.017^0.018^^^^^~01/01/2005~ -~23030~^~653~^0.043^2^^~1~^~A~^^^1^0.042^0.044^^^^^~01/01/2005~ -~23030~^~663~^0.115^2^^~1~^~A~^^^1^0.113^0.118^^^^^~01/01/2005~ -~23030~^~669~^0.035^2^^~1~^~A~^^^1^0.034^0.036^^^^^~01/01/2005~ -~23030~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~674~^1.818^2^^~1~^~A~^^^1^1.798^1.838^^^^^~01/01/2005~ -~23030~^~675~^0.182^2^^~1~^~A~^^^1^0.179^0.184^^^^^~01/01/2005~ -~23030~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~693~^0.115^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23030~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23030~^~851~^0.008^2^^~1~^~A~^^^1^0.008^0.009^^^^^~01/01/2005~ -~23031~^~312~^0.097^2^^~1~^~A~^^^1^0.069^0.126^^^^^~01/01/2005~ -~23031~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23031~^~404~^0.067^2^^~1~^~A~^^^1^0.056^0.078^^^^^~02/01/2005~ -~23031~^~405~^0.192^2^^~1~^~A~^^^1^0.189^0.195^^^^^~01/01/2005~ -~23031~^~406~^5.815^2^^~1~^~A~^^^1^5.550^6.080^^^^^~01/01/2005~ -~23031~^~410~^0.766^2^^~1~^~A~^^^1^0.678^0.855^^^^^~01/01/2005~ -~23031~^~415~^0.577^2^^~1~^~A~^^^1^0.557^0.597^^^^^~01/01/2005~ -~23031~^~501~^0.189^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~502~^1.150^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~503~^1.310^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~504~^2.290^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~505~^2.433^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~506~^0.750^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~507~^0.372^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~508~^1.137^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~509~^0.917^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~510~^1.428^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~511~^1.862^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~512~^0.919^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~513~^1.750^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~514~^2.622^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~515~^4.322^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~516~^1.753^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~517~^1.373^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~518~^1.134^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23031~^~521~^0.302^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23031~^~605~^0.195^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~606~^2.218^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~612~^0.148^2^^~1~^~A~^^^1^0.121^0.176^^^^^~01/01/2005~ -~23031~^~613~^1.368^2^^~1~^~A~^^^1^1.140^1.597^^^^^~01/01/2005~ -~23031~^~614~^0.606^2^^~1~^~A~^^^1^0.513^0.700^^^^^~01/01/2005~ -~23031~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~617~^2.406^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23031~^~618~^0.265^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23031~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23031~^~620~^0.054^2^^~1~^~A~^^^1^0.047^0.062^^^^^~01/01/2005~ -~23031~^~624~^0.019^2^^~1~^~A~^^^1^0.017^0.021^^^^^~01/01/2005~ -~23031~^~625~^0.043^2^^~1~^~A~^^^1^0.033^0.054^^^^^~01/01/2005~ -~23031~^~626~^0.211^2^^~1~^~A~^^^1^0.163^0.259^^^^^~01/01/2005~ -~23031~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23031~^~628~^0.005^2^^~1~^~A~^^^1^0.000^0.010^^^^~1~^~01/01/2005~ -~23031~^~645~^2.666^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~646~^0.325^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~652~^0.022^2^^~1~^~A~^^^1^0.019^0.025^^^^^~01/01/2005~ -~23031~^~653~^0.054^2^^~1~^~A~^^^1^0.046^0.061^^^^^~01/01/2005~ -~23031~^~663~^0.152^2^^~1~^~A~^^^1^0.117^0.187^^^^^~01/01/2005~ -~23031~^~669~^0.044^2^^~1~^~A~^^^1^0.035^0.052^^^^^~01/01/2005~ -~23031~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~674~^2.254^2^^~1~^~A~^^^1^1.820^2.689^^^^^~01/01/2005~ -~23031~^~675~^0.222^2^^~1~^~A~^^^1^0.205^0.239^^^^^~01/01/2005~ -~23031~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~693~^0.152^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23031~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23031~^~851~^0.005^2^^~1~^~A~^^^1^0.000^0.010^^^^~1~^~01/01/2005~ -~23032~^~312~^0.098^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~405~^0.204^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~406~^5.760^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~410~^0.820^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~415~^0.622^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~502~^0.877^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~503~^0.999^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~504~^1.747^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~505~^1.856^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~506~^0.572^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~508~^0.867^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~509~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~510~^1.089^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~511~^1.420^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~512~^0.701^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~513~^1.335^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~514~^2.000^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~515~^3.296^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~516~^1.337^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~517~^1.047^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~518~^0.865^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~521~^0.087^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~605~^0.117^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~606~^1.225^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~612~^0.084^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~613~^0.712^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~614~^0.370^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~617~^1.216^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~618~^0.211^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23032~^~620~^0.049^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~625~^0.022^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~626~^0.095^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23032~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~645~^1.338^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~646~^0.269^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~652~^0.013^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~653~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~663~^0.091^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~669~^0.026^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~674~^1.125^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~675~^0.185^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23032~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~693~^0.091^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23032~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23032~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~312~^0.142^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~315~^0.019^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~404~^0.065^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~406~^5.990^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~410~^0.859^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~415~^0.524^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~502~^1.168^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~503~^1.330^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~504~^2.326^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~505~^2.471^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~506~^0.761^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~507~^0.377^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~508~^1.155^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~509~^0.932^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~510~^1.451^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~511~^1.891^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~512~^0.933^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~513~^1.778^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~514~^2.663^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~515~^4.390^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~516~^1.781^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~517~^1.394^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~518~^1.152^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~521~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23033~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~606~^1.267^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~612~^0.083^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~613~^0.740^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~614~^0.385^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~617~^1.257^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~618~^0.208^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23033~^~620~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~624~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~625~^0.022^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~626~^0.101^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23033~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~645~^1.385^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~652~^0.013^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~653~^0.032^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~663~^0.088^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~669~^0.026^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~674~^1.169^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~675~^0.182^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23033~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~693~^0.088^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23033~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23033~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~312~^0.131^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23034~^~315~^0.014^2^^~1~^~A~^^^1^0.011^0.016^^^^~1~^~01/01/2005~ -~23034~^~404~^0.085^2^^~1~^~A~^^^1^0.084^0.087^^^^^~01/01/2005~ -~23034~^~405~^0.235^2^^~1~^~A~^^^1^0.202^0.269^^^^^~01/01/2005~ -~23034~^~406~^4.580^2^^~1~^~A~^^^1^4.510^4.650^^^^^~01/01/2005~ -~23034~^~410~^0.779^2^^~1~^~A~^^^1^0.759^0.799^^^^^~01/01/2005~ -~23034~^~415~^0.516^2^^~1~^~A~^^^1^0.503^0.529^^^^^~01/01/2005~ -~23034~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~502~^0.819^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~503~^0.933^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~504~^1.632^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~505~^1.733^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~506~^0.534^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~507~^0.265^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~508~^0.810^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~509~^0.654^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~510~^1.018^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~511~^1.326^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~512~^0.655^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~513~^1.247^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~514~^1.868^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~515~^3.079^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~516~^1.249^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~517~^0.978^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~518~^0.808^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~521~^0.085^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23034~^~605~^0.219^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~606~^2.328^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~612~^0.164^2^^~1~^~A~^^^1^0.147^0.181^^^^^~01/01/2005~ -~23034~^~613~^1.374^2^^~1~^~A~^^^1^1.211^1.538^^^^^~01/01/2005~ -~23034~^~614~^0.683^2^^~1~^~A~^^^1^0.636^0.731^^^^^~01/01/2005~ -~23034~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~617~^2.215^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23034~^~618~^0.266^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23034~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23034~^~620~^0.050^2^^~1~^~A~^^^1^0.045^0.054^^^^^~01/01/2005~ -~23034~^~624~^0.017^2^^~1~^~A~^^^1^0.017^0.018^^^^^~01/01/2005~ -~23034~^~625~^0.037^2^^~1~^~A~^^^1^0.031^0.043^^^^^~01/01/2005~ -~23034~^~626~^0.173^2^^~1~^~A~^^^1^0.151^0.196^^^^^~01/01/2005~ -~23034~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23034~^~628~^0.005^2^^~1~^~A~^^^1^0.000^0.010^^^^~1~^~01/01/2005~ -~23034~^~645~^2.430^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~652~^0.025^2^^~1~^~A~^^^1^0.022^0.029^^^^^~01/01/2005~ -~23034~^~653~^0.063^2^^~1~^~A~^^^1^0.055^0.071^^^^^~01/01/2005~ -~23034~^~663~^0.175^2^^~1~^~A~^^^1^0.175^0.176^^^^^~01/01/2005~ -~23034~^~669~^0.043^2^^~1~^~A~^^^1^0.040^0.047^^^^^~01/01/2005~ -~23034~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~674~^2.039^2^^~1~^~A~^^^1^1.779^2.300^^^^^~01/01/2005~ -~23034~^~675~^0.223^2^^~1~^~A~^^^1^0.210^0.236^^^^^~01/01/2005~ -~23034~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~693~^0.175^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23034~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23034~^~851~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~01/01/2005~ -~23035~^~312~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23035~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23035~^~404~^0.081^2^^~1~^~A~^^^1^0.080^0.082^^^^^~01/01/2005~ -~23035~^~405~^0.223^2^^~1~^~A~^^^1^0.200^0.246^^^^^~01/01/2005~ -~23035~^~406~^5.035^2^^~1~^~A~^^^1^4.860^5.210^^^^^~01/01/2005~ -~23035~^~410~^0.858^2^^~1~^~A~^^^1^0.858^0.858^^^^^~01/01/2005~ -~23035~^~415~^0.586^2^^~1~^~A~^^^1^0.565^0.608^^^^^~01/01/2005~ -~23035~^~501~^0.171^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~502~^1.042^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~503~^1.186^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~504~^2.074^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~505~^2.204^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~506~^0.679^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~508~^1.030^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~509~^0.831^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~510~^1.294^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~511~^1.686^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~512~^0.832^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~513~^1.585^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~514~^2.375^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~515~^3.914^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~516~^1.588^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~517~^1.243^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~518~^1.027^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23035~^~521~^0.274^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23035~^~605~^0.251^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~606~^2.737^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~612~^0.188^2^^~1~^~A~^^^1^0.167^0.210^^^^^~01/01/2005~ -~23035~^~613~^1.619^2^^~1~^~A~^^^1^1.423^1.816^^^^^~01/01/2005~ -~23035~^~614~^0.806^2^^~1~^~A~^^^1^0.746^0.866^^^^^~01/01/2005~ -~23035~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~617~^2.618^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23035~^~618~^0.312^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23035~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23035~^~620~^0.057^2^^~1~^~A~^^^1^0.050^0.065^^^^^~01/01/2005~ -~23035~^~624~^0.020^2^^~1~^~A~^^^1^0.019^0.022^^^^^~01/01/2005~ -~23035~^~625~^0.042^2^^~1~^~A~^^^1^0.035^0.049^^^^^~01/01/2005~ -~23035~^~626~^0.205^2^^~1~^~A~^^^1^0.178^0.233^^^^^~01/01/2005~ -~23035~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23035~^~628~^0.007^2^^~1~^~A~^^^1^0.000^0.013^^^^~1~^~01/01/2005~ -~23035~^~645~^2.872^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~646~^0.381^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~652~^0.029^2^^~1~^~A~^^^1^0.025^0.033^^^^^~01/01/2005~ -~23035~^~653~^0.073^2^^~1~^~A~^^^1^0.063^0.084^^^^^~01/01/2005~ -~23035~^~663~^0.202^2^^~1~^~A~^^^1^0.198^0.206^^^^^~01/01/2005~ -~23035~^~669~^0.049^2^^~1~^~A~^^^1^0.047^0.052^^^^^~01/01/2005~ -~23035~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~674~^2.416^2^^~1~^~A~^^^1^2.093^2.740^^^^^~01/01/2005~ -~23035~^~675~^0.263^2^^~1~^~A~^^^1^0.241^0.285^^^^^~01/01/2005~ -~23035~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~693~^0.202^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23035~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23035~^~851~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~01/01/2005~ -~23036~^~312~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~315~^0.018^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~404~^0.089^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~405~^0.269^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~406~^5.570^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~410~^0.921^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~415~^0.519^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~502~^0.836^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~503~^0.952^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~504~^1.665^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~505~^1.769^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~506~^0.545^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~508~^0.827^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~509~^0.667^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~510~^1.038^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~511~^1.353^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~512~^0.668^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~513~^1.273^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~514~^1.907^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~515~^3.142^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~516~^1.275^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~517~^0.998^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~518~^0.825^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~521~^0.075^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~605~^0.214^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~606~^1.988^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~612~^0.144^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~613~^1.106^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~614~^0.642^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~617~^1.814^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23036~^~618~^0.278^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23036~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23036~^~620~^0.048^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~624~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~626~^0.134^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23036~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~645~^1.979^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~646~^0.337^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~652~^0.023^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~653~^0.056^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~663~^0.172^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~669~^0.042^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~674~^1.642^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~675~^0.236^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23036~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~693~^0.172^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~695~^0.042^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23036~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23036~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~312~^0.088^2^^~1~^~A~^^^1^0.079^0.097^^^^^~01/01/2005~ -~23037~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23037~^~404~^0.072^2^^~1~^~A~^^^1^0.072^0.073^^^^^~01/01/2005~ -~23037~^~405~^0.230^2^^~1~^~A~^^^1^0.223^0.237^^^^^~01/01/2005~ -~23037~^~406~^5.130^2^^~1~^~A~^^^1^4.640^5.620^^^^^~01/01/2005~ -~23037~^~410~^0.731^2^^~1~^~A~^^^1^0.727^0.736^^^^^~01/01/2005~ -~23037~^~415~^0.673^2^^~1~^~A~^^^1^0.601^0.746^^^^^~01/01/2005~ -~23037~^~501~^0.134^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~502~^0.815^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~503~^0.928^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~504~^1.622^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~505~^1.723^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~506~^0.531^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~507~^0.263^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~508~^0.805^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~509~^0.650^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~510~^1.012^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~511~^1.318^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~512~^0.651^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~513~^1.240^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~514~^1.857^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~515~^3.061^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~516~^1.242^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~517~^0.972^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~518~^0.803^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~521~^0.068^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23037~^~605~^0.199^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23037~^~606~^2.083^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23037~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~612~^0.151^2^^~1~^~A~^^^1^0.144^0.158^^^^^~01/01/2005~ -~23037~^~613~^1.272^2^^~1~^~A~^^^1^1.205^1.339^^^^^~01/01/2005~ -~23037~^~614~^0.579^2^^~1~^~A~^^^1^0.555^0.604^^^^^~01/01/2005~ -~23037~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~617~^2.108^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~618~^0.253^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23037~^~620~^0.048^2^^~1~^~A~^^^1^0.043^0.052^^^^^~01/01/2005~ -~23037~^~624~^0.009^2^^~1~^~A~^^^1^0.000^0.018^^^^~1~^~01/01/2005~ -~23037~^~625~^0.042^2^^~1~^~A~^^^1^0.042^0.042^^^^^~01/01/2005~ -~23037~^~626~^0.181^2^^~1~^~A~^^^1^0.174^0.188^^^^^~01/01/2005~ -~23037~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23037~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~645~^3.439^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23037~^~646~^0.554^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23037~^~652~^0.021^2^^~1~^~A~^^^1^0.020^0.023^^^^^~01/01/2005~ -~23037~^~653~^0.050^2^^~1~^~A~^^^1^0.045^0.055^^^^^~01/01/2005~ -~23037~^~663~^0.159^2^^~1~^~A~^^^1^0.150^0.168^^^^^~01/01/2005~ -~23037~^~669~^0.040^2^^~1~^~A~^^^1^0.040^0.041^^^^^~01/01/2005~ -~23037~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~674~^1.949^2^^~1~^~A~^^^1^1.831^2.067^^^^^~01/01/2005~ -~23037~^~675~^0.213^2^^~1~^~A~^^^1^0.207^0.219^^^^^~01/01/2005~ -~23037~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~693~^0.159^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23037~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23037~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23037~^~851~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~01/01/2005~ -~23038~^~312~^0.097^2^^~1~^~A~^^^1^0.097^0.098^^^^^~01/01/2005~ -~23038~^~315~^0.013^2^^~1~^~A~^^^1^0.011^0.015^^^^~1~^~01/01/2005~ -~23038~^~404~^0.068^2^^~1~^~A~^^^1^0.062^0.075^^^^^~01/01/2005~ -~23038~^~405~^0.268^2^^~1~^~A~^^^1^0.257^0.280^^^^^~01/01/2005~ -~23038~^~406~^5.165^2^^~1~^~A~^^^1^4.190^6.140^^^^^~01/01/2005~ -~23038~^~410~^0.784^2^^~1~^~A~^^^1^0.779^0.789^^^^^~01/01/2005~ -~23038~^~415~^0.567^2^^~1~^~A~^^^1^0.550^0.585^^^^^~01/01/2005~ -~23038~^~501~^0.171^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~502~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~503~^1.186^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~504~^2.074^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~505~^2.203^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~506~^0.679^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~508~^1.030^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~509~^0.831^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~510~^1.293^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~511~^1.686^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~512~^0.832^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~513~^1.585^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~514~^2.374^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~515~^3.913^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~516~^1.587^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~517~^1.243^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~518~^1.027^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23038~^~521~^0.274^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23038~^~605~^0.291^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~606~^3.031^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~612~^0.223^2^^~1~^~A~^^^1^0.215^0.230^^^^^~01/01/2005~ -~23038~^~613~^1.855^2^^~1~^~A~^^^1^1.806^1.905^^^^^~01/01/2005~ -~23038~^~614~^0.848^2^^~1~^~A~^^^1^0.839^0.857^^^^^~01/01/2005~ -~23038~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~617~^3.047^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23038~^~618~^0.340^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23038~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23038~^~620~^0.053^2^^~1~^~A~^^^1^0.046^0.060^^^^^~01/01/2005~ -~23038~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~625~^0.061^2^^~1~^~A~^^^1^0.059^0.063^^^^^~01/01/2005~ -~23038~^~626~^0.260^2^^~1~^~A~^^^1^0.252^0.269^^^^^~01/01/2005~ -~23038~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23038~^~628~^0.011^2^^~1~^~A~^^^1^0.010^0.012^^^^^~01/01/2005~ -~23038~^~645~^3.380^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~646~^0.405^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~652~^0.031^2^^~1~^~A~^^^1^0.029^0.033^^^^^~01/01/2005~ -~23038~^~653~^0.074^2^^~1~^~A~^^^1^0.068^0.080^^^^^~01/01/2005~ -~23038~^~663~^0.232^2^^~1~^~A~^^^1^0.223^0.242^^^^^~01/01/2005~ -~23038~^~669~^0.058^2^^~1~^~A~^^^1^0.058^0.059^^^^^~01/01/2005~ -~23038~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~674~^2.815^2^^~1~^~A~^^^1^2.714^2.916^^^^^~01/01/2005~ -~23038~^~675~^0.281^2^^~1~^~A~^^^1^0.278^0.285^^^^^~01/01/2005~ -~23038~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~693~^0.232^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~695~^0.058^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23038~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23038~^~851~^0.013^2^^~1~^~A~^^^1^0.012^0.013^^^^^~01/01/2005~ -~23039~^~312~^0.107^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~315~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~404~^0.093^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~405~^0.253^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~406~^5.320^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~410~^0.861^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~415~^0.622^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~501~^0.139^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~502~^0.844^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~503~^0.961^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~504~^1.681^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~505~^1.786^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~506~^0.550^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~508~^0.835^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~509~^0.673^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~510~^1.048^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~511~^1.366^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~512~^0.674^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~513~^1.285^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~514~^1.925^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~515~^3.172^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~516~^1.287^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~517~^1.007^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~518~^0.832^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~521~^0.119^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~605~^0.188^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~606~^1.791^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~612~^0.126^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~613~^1.025^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~614~^0.572^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~617~^1.762^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23039~^~618~^0.277^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23039~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23039~^~620~^0.053^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~625~^0.032^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~626~^0.132^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23039~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~645~^1.933^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~646~^0.341^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~653~^0.048^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~663~^0.150^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~669~^0.038^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~674~^1.612^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~675~^0.239^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23039~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~693~^0.150^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23039~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23039~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~312~^0.073^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~315~^0.019^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~404~^0.087^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~405~^0.344^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23040~^~406~^5.490^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~410~^0.949^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~415~^0.593^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~501~^0.171^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~502~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~503~^1.186^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~504~^2.074^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~505~^2.203^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~506~^0.679^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~508~^1.030^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~509~^0.831^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~510~^1.293^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~511~^1.686^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~512~^0.832^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~513~^1.585^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~514~^2.374^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~515~^3.913^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~516~^1.587^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~517~^1.243^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~518~^1.027^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~521~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23040~^~605~^0.242^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~606~^2.235^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~612~^0.157^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~613~^1.264^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~614~^0.727^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~617~^2.178^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~618~^0.313^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23040~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~625~^0.037^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~626~^0.158^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23040~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~645~^2.373^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~646~^0.376^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~652~^0.025^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~653~^0.062^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~663~^0.191^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~669~^0.051^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~674~^1.987^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~675~^0.262^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23040~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~693~^0.191^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~695~^0.051^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23040~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23040~^~851~^0.013^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~312~^0.121^2^^~1~^~A~^^^1^0.111^0.131^^^^^~02/01/2005~ -~23041~^~315~^0.015^2^^~1~^~A~^^^1^0.011^0.019^^^^~1~^~01/01/2005~ -~23041~^~404~^0.079^2^^~1~^~A~^^^1^0.076^0.082^^^^^~01/01/2005~ -~23041~^~405~^0.211^2^^~1~^~A~^^^1^0.200^0.222^^^^^~01/01/2005~ -~23041~^~406~^3.380^2^^~1~^~A~^^^1^3.300^3.460^^^^^~02/01/2005~ -~23041~^~410~^0.933^2^^~1~^~A~^^^1^0.898^0.968^^^^^~01/01/2005~ -~23041~^~415~^0.375^2^^~1~^~A~^^^1^0.353^0.398^^^^^~01/01/2005~ -~23041~^~501~^0.123^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~502~^0.749^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~503~^0.853^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~504~^1.491^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~505~^1.584^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~506~^0.488^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~507~^0.242^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~508~^0.740^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~509~^0.597^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~510~^0.930^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~511~^1.212^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~512~^0.598^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~513~^1.140^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~514~^1.708^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~515~^2.814^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~516~^1.142^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~517~^0.894^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~518~^0.738^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~521~^0.135^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23041~^~605~^0.389^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~606~^4.186^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~612~^0.307^2^^~1~^~A~^^^1^0.278^0.337^^^^^~01/01/2005~ -~23041~^~613~^2.448^2^^~1~^~A~^^^1^2.219^2.677^^^^^~01/01/2005~ -~23041~^~614~^1.281^2^^~1~^~A~^^^1^1.145^1.418^^^^^~01/01/2005~ -~23041~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~617~^4.027^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23041~^~618~^0.397^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23041~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23041~^~620~^0.050^2^^~1~^~A~^^^1^0.049^0.052^^^^^~01/01/2005~ -~23041~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~625~^0.068^2^^~1~^~A~^^^1^0.064^0.071^^^^^~01/01/2005~ -~23041~^~626~^0.299^2^^~1~^~A~^^^1^0.276^0.323^^^^^~01/01/2005~ -~23041~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23041~^~628~^0.015^2^^~1~^~A~^^^1^0.012^0.017^^^^^~01/01/2005~ -~23041~^~645~^4.408^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~646~^0.463^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~652~^0.041^2^^~1~^~A~^^^1^0.035^0.046^^^^^~01/01/2005~ -~23041~^~653~^0.109^2^^~1~^~A~^^^1^0.093^0.125^^^^^~01/01/2005~ -~23041~^~663~^0.311^2^^~1~^~A~^^^1^0.300^0.322^^^^^~01/01/2005~ -~23041~^~669~^0.078^2^^~1~^~A~^^^1^0.074^0.083^^^^^~01/01/2005~ -~23041~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~674~^3.716^2^^~1~^~A~^^^1^3.316^4.116^^^^^~01/01/2005~ -~23041~^~675~^0.318^2^^~1~^~A~^^^1^0.318^0.319^^^^^~01/01/2005~ -~23041~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~693~^0.311^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23041~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23041~^~851~^0.016^2^^~1~^~A~^^^1^0.014^0.017^^^^^~01/01/2005~ -~23042~^~312~^0.139^2^^~1~^~A~^^^1^0.131^0.148^^^^^~01/01/2005~ -~23042~^~315~^0.018^2^^~1~^~A~^^^1^0.018^0.019^^^^^~01/01/2005~ -~23042~^~404~^0.070^2^^~1~^~A~^^^1^0.068^0.072^^^^^~01/01/2005~ -~23042~^~405~^0.247^2^^~1~^~A~^^^1^0.216^0.277^^^^^~01/01/2005~ -~23042~^~406~^3.720^2^^~1~^~A~^^^1^3.240^4.200^^^^^~01/01/2005~ -~23042~^~410~^0.881^2^^~1~^~A~^^^1^0.880^0.882^^^^^~01/01/2005~ -~23042~^~415~^0.376^2^^~1~^~A~^^^1^0.372^0.380^^^^^~01/01/2005~ -~23042~^~501~^0.162^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~502~^0.987^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~503~^1.124^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~504~^1.965^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~505~^2.087^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~506~^0.643^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~507~^0.319^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~508~^0.975^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~509~^0.787^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~510~^1.225^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~511~^1.597^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~512~^0.788^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~513~^1.501^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~514~^2.250^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~515~^3.708^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~516~^1.504^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~517~^1.177^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~518~^0.973^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23042~^~521~^0.259^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23042~^~605~^0.524^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~606~^5.432^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~611~^0.010^2^^~1~^~A~^^^1^0.010^0.011^^^^^~01/01/2005~ -~23042~^~612~^0.400^2^^~1~^~A~^^^1^0.367^0.432^^^^^~01/01/2005~ -~23042~^~613~^3.161^2^^~1~^~A~^^^1^2.861^3.460^^^^^~01/01/2005~ -~23042~^~614~^1.668^2^^~1~^~A~^^^1^1.508^1.828^^^^^~01/01/2005~ -~23042~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~617~^5.209^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23042~^~618~^0.490^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23042~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23042~^~620~^0.050^2^^~1~^~A~^^^1^0.043^0.056^^^^^~01/01/2005~ -~23042~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~625~^0.092^2^^~1~^~A~^^^1^0.089^0.095^^^^^~01/01/2005~ -~23042~^~626~^0.392^2^^~1~^~A~^^^1^0.361^0.423^^^^^~01/01/2005~ -~23042~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23042~^~628~^0.018^2^^~1~^~A~^^^1^0.015^0.021^^^^^~01/01/2005~ -~23042~^~645~^5.711^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~646~^0.558^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~652~^0.054^2^^~1~^~A~^^^1^0.049^0.059^^^^^~01/01/2005~ -~23042~^~653~^0.139^2^^~1~^~A~^^^1^0.119^0.160^^^^^~01/01/2005~ -~23042~^~663~^0.420^2^^~1~^~A~^^^1^0.416^0.423^^^^^~01/01/2005~ -~23042~^~669~^0.105^2^^~1~^~A~^^^1^0.099^0.111^^^^^~01/01/2005~ -~23042~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~674~^4.789^2^^~1~^~A~^^^1^4.245^5.334^^^^^~01/01/2005~ -~23042~^~675~^0.385^2^^~1~^~A~^^^1^0.367^0.403^^^^^~01/01/2005~ -~23042~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~693~^0.420^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~695~^0.105^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23042~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23042~^~851~^0.019^2^^~1~^~A~^^^1^0.017^0.021^^^^^~01/01/2005~ -~23043~^~312~^0.116^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~315~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~404~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23043~^~405~^0.258^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~406~^3.500^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~410~^0.990^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~415~^0.358^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~501~^0.127^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~502~^0.774^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~503~^0.882^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~504~^1.542^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~505~^1.638^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~506~^0.505^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~508~^0.766^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~509~^0.618^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~510~^0.962^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~511~^1.253^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~512~^0.619^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~513~^1.178^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~514~^1.765^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~515~^2.910^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~516~^1.180^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~517~^0.924^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~518~^0.763^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~605~^0.335^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~606~^3.464^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~612~^0.257^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~613~^1.931^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~614~^1.135^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~617~^3.316^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23043~^~618~^0.415^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23043~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23043~^~620~^0.064^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~625~^0.055^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~626~^0.234^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23043~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~645~^3.616^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~646~^0.498^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~652~^0.038^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~653~^0.103^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~663~^0.264^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~669~^0.071^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~674~^3.052^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~675~^0.344^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23043~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~693~^0.264^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~695~^0.071^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23043~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23043~^~851~^0.019^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~312~^0.122^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~315~^0.017^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~404~^0.079^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~405~^0.382^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~406~^4.060^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~410~^1.070^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23044~^~415~^0.410^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~501~^0.166^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~502~^1.010^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~503~^1.151^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~504~^2.012^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~505~^2.138^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~506~^0.659^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~507~^0.326^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~508~^0.999^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~509~^0.806^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~510~^1.255^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~511~^1.636^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~512~^0.807^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~513~^1.538^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~514~^2.304^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~515~^3.797^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~516~^1.540^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~517~^1.206^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~518~^0.996^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~521~^0.266^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23044~^~605~^0.487^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~606~^4.423^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~612~^0.333^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~613~^2.451^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~614~^1.446^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~617~^4.179^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23044~^~618~^0.494^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23044~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23044~^~620~^0.055^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~625~^0.075^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~626~^0.299^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23044~^~628~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~645~^4.568^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~646~^0.572^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~652~^0.053^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~653~^0.130^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~663~^0.388^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~669~^0.099^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~674~^3.791^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~675~^0.395^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23044~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~693~^0.388^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~695~^0.099^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23044~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23044~^~851~^0.023^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~312~^0.077^2^^~1~^~A~^^^1^0.067^0.087^^^^^~01/01/2005~ -~23045~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23045~^~404~^0.073^2^^~1~^~A~^^^1^0.062^0.084^^^^^~02/01/2005~ -~23045~^~405~^0.176^2^^~1~^~A~^^^1^0.144^0.209^^^^^~01/01/2005~ -~23045~^~406~^4.895^2^^~1~^~A~^^^1^4.410^5.380^^^^^~01/01/2005~ -~23045~^~410~^0.711^2^^~1~^~A~^^^1^0.670^0.752^^^^^~01/01/2005~ -~23045~^~415~^0.526^2^^~1~^~A~^^^1^0.510^0.543^^^^^~01/01/2005~ -~23045~^~501~^0.136^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~502~^0.828^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~503~^0.943^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~504~^1.649^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~505~^1.752^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~506~^0.540^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~508~^0.819^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~509~^0.661^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~510~^1.029^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~511~^1.341^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~512~^0.662^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~513~^1.261^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~514~^1.889^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~515~^3.113^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~516~^1.263^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~517~^0.989^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~518~^0.817^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23045~^~605~^0.210^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~606~^2.300^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~612~^0.164^2^^~1~^~A~^^^1^0.146^0.183^^^^^~01/01/2005~ -~23045~^~613~^1.392^2^^~1~^~A~^^^1^1.209^1.575^^^^^~01/01/2005~ -~23045~^~614~^0.645^2^^~1~^~A~^^^1^0.568^0.723^^^^^~01/01/2005~ -~23045~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~617~^2.279^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23045~^~618~^0.259^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23045~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23045~^~620~^0.051^2^^~1~^~A~^^^1^0.051^0.051^^^^^~01/01/2005~ -~23045~^~624~^0.018^2^^~1~^~A~^^^1^0.018^0.019^^^^^~01/01/2005~ -~23045~^~625~^0.039^2^^~1~^~A~^^^1^0.035^0.043^^^^^~01/01/2005~ -~23045~^~626~^0.180^2^^~1~^~A~^^^1^0.165^0.194^^^^^~01/01/2005~ -~23045~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23045~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~645~^2.497^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~646~^0.321^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~652~^0.023^2^^~1~^~A~^^^1^0.020^0.026^^^^^~01/01/2005~ -~23045~^~653~^0.056^2^^~1~^~A~^^^1^0.048^0.065^^^^^~01/01/2005~ -~23045~^~663~^0.164^2^^~1~^~A~^^^1^0.143^0.184^^^^^~01/01/2005~ -~23045~^~669~^0.047^2^^~1~^~A~^^^1^0.041^0.052^^^^^~01/01/2005~ -~23045~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~674~^2.115^2^^~1~^~A~^^^1^1.857^2.374^^^^^~01/01/2005~ -~23045~^~675~^0.213^2^^~1~^~A~^^^1^0.207^0.219^^^^^~01/01/2005~ -~23045~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~693~^0.164^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~695~^0.047^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23045~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23045~^~851~^0.011^2^^~1~^~A~^^^1^0.010^0.012^^^^^~01/01/2005~ -~23046~^~312~^0.090^2^^~1~^~A~^^^1^0.084^0.096^^^^^~01/01/2005~ -~23046~^~315~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^~1~^~01/01/2005~ -~23046~^~404~^0.054^2^^~1~^~A~^^^1^0.053^0.056^^^^^~01/01/2005~ -~23046~^~405~^0.213^2^^~1~^~A~^^^1^0.202^0.225^^^^^~01/01/2005~ -~23046~^~406~^5.435^2^^~1~^~A~^^^1^5.400^5.470^^^^^~01/01/2005~ -~23046~^~410~^0.702^2^^~1~^~A~^^^1^0.693^0.711^^^^^~01/01/2005~ -~23046~^~415~^0.515^2^^~1~^~A~^^^1^0.490^0.540^^^^^~01/01/2005~ -~23046~^~501~^0.177^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~502~^1.074^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~503~^1.223^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~504~^2.139^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~505~^2.272^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~506~^0.700^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~507~^0.347^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~508~^1.062^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~509~^0.857^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~510~^1.334^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~511~^1.738^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~512~^0.858^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~513~^1.634^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~514~^2.449^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~515~^4.036^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~516~^1.637^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~517~^1.282^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~518~^1.059^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23046~^~521~^0.282^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2006~ -~23046~^~605~^0.246^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~ -~23046~^~606~^2.759^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23046~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~612~^0.198^2^^~1~^~A~^^^1^0.174^0.222^^^^^~01/01/2005~ -~23046~^~613~^1.686^2^^~1~^~A~^^^1^1.469^1.903^^^^^~01/01/2005~ -~23046~^~614~^0.758^2^^~1~^~A~^^^1^0.687^0.829^^^^^~01/01/2005~ -~23046~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~617~^2.717^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23046~^~618~^0.300^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23046~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23046~^~620~^0.055^2^^~1~^~A~^^^1^0.055^0.056^^^^^~01/01/2005~ -~23046~^~624~^0.021^2^^~1~^~A~^^^1^0.020^0.022^^^^^~01/01/2005~ -~23046~^~625~^0.047^2^^~1~^~A~^^^1^0.042^0.053^^^^^~01/01/2005~ -~23046~^~626~^0.218^2^^~1~^~A~^^^1^0.197^0.240^^^^^~01/01/2005~ -~23046~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23046~^~628~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~645~^2.983^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23046~^~646~^0.367^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23046~^~652~^0.028^2^^~1~^~A~^^^1^0.024^0.032^^^^^~01/01/2005~ -~23046~^~653~^0.069^2^^~1~^~A~^^^1^0.059^0.078^^^^^~01/01/2005~ -~23046~^~663~^0.194^2^^~1~^~A~^^^1^0.173^0.216^^^^^~01/01/2005~ -~23046~^~669~^0.052^2^^~1~^~A~^^^1^0.046^0.057^^^^^~01/01/2005~ -~23046~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~674~^2.522^2^^~1~^~A~^^^1^2.227^2.818^^^^^~01/01/2005~ -~23046~^~675~^0.248^2^^~1~^~A~^^^1^0.246^0.251^^^^^~01/01/2005~ -~23046~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~693~^0.194^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23046~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23046~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23046~^~851~^0.011^2^^~1~^~A~^^^1^0.010^0.013^^^^^~01/01/2005~ -~23047~^~312~^0.068^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23047~^~404~^0.067^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~406~^5.240^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~410~^0.776^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~415~^0.527^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~502~^0.838^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~503~^0.954^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~504~^1.669^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~505~^1.773^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~506~^0.546^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~507~^0.271^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~508~^0.829^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~509~^0.668^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~510~^1.041^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~511~^1.356^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~512~^0.669^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~513~^1.275^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~514~^1.911^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~515~^3.149^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~516~^1.277^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~517~^1.000^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~518~^0.826^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~521~^0.117^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~605~^0.206^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~606~^1.890^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~612~^0.150^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~613~^1.129^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~614~^0.523^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~617~^1.810^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23047~^~618~^0.239^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23047~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23047~^~620~^0.044^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~625~^0.041^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~626~^0.157^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23047~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~645~^2.014^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~646~^0.295^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~652~^0.023^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~663~^0.162^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~669~^0.044^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~674~^1.648^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~675~^0.195^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23047~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23047~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23047~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~312~^0.088^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23048~^~404~^0.067^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~405~^0.225^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~406~^4.660^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~410~^0.848^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~415~^0.457^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~501~^0.175^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~502~^1.063^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~503~^1.211^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~504~^2.117^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~505~^2.249^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~506~^0.693^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~507~^0.343^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~508~^1.051^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~509~^0.848^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~510~^1.320^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~511~^1.721^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~512~^0.849^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~513~^1.618^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~514~^2.424^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~515~^3.995^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~516~^1.620^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~517~^1.269^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~518~^1.048^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~521~^0.280^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2006~ -~23048~^~605~^0.212^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~606~^2.063^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~612~^0.155^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~613~^1.220^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~614~^0.592^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~617~^1.967^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23048~^~618~^0.279^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23048~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23048~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~624~^0.018^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~625~^0.041^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~626~^0.164^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23048~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~645~^2.172^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~646~^0.341^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~652~^0.024^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~653~^0.054^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~663~^0.167^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~669~^0.045^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~674~^1.800^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~675~^0.234^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23048~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~693~^0.167^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23048~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23048~^~851~^0.012^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~312~^0.136^2^^~1~^~A~^^^1^0.093^0.178^^^^^~01/01/2005~ -~23049~^~315~^0.018^2^^~1~^~A~^^^1^0.016^0.020^^^^^~01/01/2005~ -~23049~^~404~^0.064^2^^~1~^~A~^^^1^0.062^0.067^^^^^~01/01/2005~ -~23049~^~405~^0.186^2^^~1~^~A~^^^1^0.171^0.200^^^^^~01/01/2005~ -~23049~^~406~^6.390^2^^~1~^~A~^^^1^6.210^6.570^^^^^~01/01/2005~ -~23049~^~410~^0.650^2^^~1~^~A~^^^1^0.608^0.693^^^^^~01/01/2005~ -~23049~^~415~^0.720^2^^~1~^~A~^^^1^0.666^0.773^^^^^~01/01/2005~ -~23049~^~501~^0.140^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~502~^0.848^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~503~^0.966^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~504~^1.689^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~505~^1.795^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~506~^0.553^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~508~^0.839^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~509~^0.677^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~510~^1.054^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~511~^1.373^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~512~^0.678^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~513~^1.291^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~514~^1.934^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~515~^3.188^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~516~^1.293^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~517~^1.012^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~518~^0.837^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~521~^0.109^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23049~^~605~^0.185^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~606~^2.301^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~612~^0.176^2^^~1~^~A~^^^1^0.165^0.188^^^^^~01/01/2005~ -~23049~^~613~^1.428^2^^~1~^~A~^^^1^1.301^1.556^^^^^~01/01/2005~ -~23049~^~614~^0.594^2^^~1~^~A~^^^1^0.568^0.620^^^^^~01/01/2005~ -~23049~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~617~^2.595^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23049~^~618~^0.250^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23049~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23049~^~620~^0.060^2^^~1~^~A~^^^1^0.056^0.063^^^^^~01/01/2005~ -~23049~^~624~^0.019^2^^~1~^~A~^^^1^0.018^0.020^^^^^~01/01/2005~ -~23049~^~625~^0.059^2^^~1~^~A~^^^1^0.055^0.063^^^^^~01/01/2005~ -~23049~^~626~^0.280^2^^~1~^~A~^^^1^0.263^0.297^^^^^~01/01/2005~ -~23049~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23049~^~628~^0.006^2^^~1~^~A~^^^1^0.000^0.012^^^^~1~^~01/01/2005~ -~23049~^~645~^2.940^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~646~^0.309^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~652~^0.025^2^^~1~^~A~^^^1^0.023^0.027^^^^^~01/01/2005~ -~23049~^~653~^0.058^2^^~1~^~A~^^^1^0.054^0.062^^^^^~01/01/2005~ -~23049~^~663~^0.144^2^^~1~^~A~^^^1^0.141^0.147^^^^^~01/01/2005~ -~23049~^~669~^0.041^2^^~1~^~A~^^^1^0.040^0.042^^^^^~01/01/2005~ -~23049~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~674~^2.451^2^^~1~^~A~^^^1^2.277^2.626^^^^^~01/01/2005~ -~23049~^~675~^0.209^2^^~1~^~A~^^^1^0.207^0.211^^^^^~01/01/2005~ -~23049~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~693~^0.144^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23049~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23049~^~851~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~312~^0.109^2^^~1~^~A~^^^1^0.098^0.120^^^^^~01/01/2005~ -~23050~^~315~^0.014^2^^~1~^~A~^^^1^0.011^0.016^^^^~1~^~01/01/2005~ -~23050~^~404~^0.058^2^^~1~^~A~^^^1^0.057^0.060^^^^^~01/01/2005~ -~23050~^~405~^0.196^2^^~1~^~A~^^^1^0.167^0.226^^^^^~01/01/2005~ -~23050~^~406~^7.310^2^^~1~^~A~^^^1^7.310^7.310^^^^^~01/01/2005~ -~23050~^~410~^0.763^2^^~1~^~A~^^^1^0.756^0.771^^^^^~01/01/2005~ -~23050~^~415~^0.680^2^^~1~^~A~^^^1^0.625^0.734^^^^^~01/01/2005~ -~23050~^~501~^0.179^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~502~^1.087^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~503~^1.238^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~504~^2.165^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~505~^2.300^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~506~^0.709^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~507~^0.351^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~508~^1.075^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~509~^0.867^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~510~^1.350^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~511~^1.760^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~512~^0.869^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~513~^1.655^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~514~^2.479^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~515~^4.086^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~516~^1.657^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~517~^1.298^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~518~^1.072^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23050~^~521~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23050~^~605~^0.239^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~606~^2.954^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~612~^0.225^2^^~1~^~A~^^^1^0.196^0.254^^^^^~01/01/2005~ -~23050~^~613~^1.834^2^^~1~^~A~^^^1^1.571^2.097^^^^^~01/01/2005~ -~23050~^~614~^0.768^2^^~1~^~A~^^^1^0.690^0.846^^^^^~01/01/2005~ -~23050~^~615~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~617~^3.317^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23050~^~618~^0.282^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23050~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23050~^~620~^0.050^2^^~1~^~A~^^^1^0.047^0.054^^^^^~01/01/2005~ -~23050~^~624~^0.018^2^^~1~^~A~^^^1^0.017^0.020^^^^^~01/01/2005~ -~23050~^~625~^0.074^2^^~1~^~A~^^^1^0.066^0.083^^^^^~01/01/2005~ -~23050~^~626~^0.354^2^^~1~^~A~^^^1^0.322^0.387^^^^^~01/01/2005~ -~23050~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23050~^~628~^0.013^2^^~1~^~A~^^^1^0.010^0.016^^^^^~01/01/2005~ -~23050~^~645~^3.759^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~646~^0.338^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~652~^0.033^2^^~1~^~A~^^^1^0.028^0.037^^^^^~01/01/2005~ -~23050~^~653~^0.076^2^^~1~^~A~^^^1^0.066^0.086^^^^^~01/01/2005~ -~23050~^~663~^0.184^2^^~1~^~A~^^^1^0.172^0.196^^^^^~01/01/2005~ -~23050~^~669~^0.055^2^^~1~^~A~^^^1^0.050^0.060^^^^^~01/01/2005~ -~23050~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~674~^3.133^2^^~1~^~A~^^^1^2.767^3.499^^^^^~01/01/2005~ -~23050~^~675~^0.227^2^^~1~^~A~^^^1^0.219^0.236^^^^^~01/01/2005~ -~23050~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~693~^0.184^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~695~^0.055^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23050~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~02/01/2005~ -~23050~^~851~^0.005^2^^~1~^~A~^^^1^0.000^0.011^^^^~1~^~01/01/2005~ -~23051~^~312~^0.132^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~315~^0.020^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~404~^0.089^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~405~^0.241^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~406~^6.360^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~410~^0.768^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~415~^0.724^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~501~^0.146^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~502~^0.885^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~503~^1.008^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~504~^1.762^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~505~^1.872^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~506~^0.577^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~508~^0.875^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~509~^0.706^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~510~^1.099^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~511~^1.432^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~512~^0.707^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~513~^1.346^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~514~^2.017^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~515~^3.325^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~516~^1.349^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~517~^1.056^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~518~^0.872^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~521~^0.088^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~605~^0.136^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~606~^1.400^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~612~^0.112^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~613~^0.824^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~614~^0.400^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~617~^1.447^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~618~^0.247^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23051~^~620~^0.054^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~624~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~626~^0.146^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~ -~23051~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~645~^1.630^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~646~^0.309^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~652~^0.015^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~653~^0.034^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~663~^0.108^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~669~^0.028^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~674~^1.339^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~675~^0.219^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23051~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~693~^0.108^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23051~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2005~ -~23051~^~851~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~312~^0.127^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~315~^0.032^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~404~^0.081^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~405~^0.242^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~406~^8.050^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~410~^0.850^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~415~^0.660^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~501~^0.184^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~502~^1.119^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~503~^1.274^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~504~^2.228^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~505~^2.367^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~506~^0.729^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~507~^0.361^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~508~^1.106^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~509~^0.893^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~510~^1.390^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~511~^1.811^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~512~^0.894^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~513~^1.703^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~514~^2.551^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~515~^4.205^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~516~^1.706^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~517~^1.335^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~518~^1.103^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~521~^0.294^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23052~^~605~^0.154^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~606~^1.716^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~612~^0.136^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~613~^1.017^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~614~^0.488^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~617~^1.773^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23052~^~618~^0.242^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23052~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23052~^~620~^0.037^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~624~^0.014^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~625~^0.039^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~626~^0.186^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23052~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~645~^2.006^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~646~^0.286^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~652~^0.019^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~653~^0.042^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~663~^0.121^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~669~^0.033^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~674~^1.652^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~675~^0.209^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23052~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~693~^0.121^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23052~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23052~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~312~^0.131^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~404~^0.087^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~405~^0.269^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~406~^4.510^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~410~^0.799^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~415~^0.503^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~501~^0.135^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~502~^0.820^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~503~^0.934^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~504~^1.634^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~505~^1.736^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~506~^0.535^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~507~^0.265^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~508~^0.811^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~509~^0.654^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~510~^1.019^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~511~^1.328^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~512~^0.655^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~513~^1.249^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~514~^1.871^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~515~^3.083^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~516~^1.251^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~517~^0.979^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~518~^0.809^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~521~^0.216^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23053~^~605~^0.215^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~606~^2.088^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~612~^0.147^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~613~^1.211^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~614~^0.636^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~617~^1.954^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23053~^~618~^0.276^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23053~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23053~^~620~^0.054^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~624~^0.018^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~626~^0.151^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23053~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~645~^2.136^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~646~^0.340^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~652~^0.022^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~653~^0.055^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~663~^0.175^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~669~^0.040^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~674~^1.779^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~675~^0.236^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23053~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~693~^0.175^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23053~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23053~^~851~^0.010^1^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~312~^0.171^2^^~1~^~A~^^^1^0.090^0.253^^^^^~02/01/2005~ -~23054~^~315~^0.014^3^^~1~^~A~^^^1^0.011^0.021^^^^~1, 2~^~01/01/2005~ -~23054~^~404~^0.078^3^^~1~^~A~^^^1^0.072^0.082^^^^~2~^~01/01/2005~ -~23054~^~405~^0.267^3^^~1~^~A~^^^1^0.200^0.354^^^^~2~^~02/01/2005~ -~23054~^~406~^5.187^3^^~1~^~A~^^^1^4.860^5.490^^^^~2~^~01/01/2005~ -~23054~^~410~^0.856^3^^~1~^~A~^^^1^0.852^0.858^^^^~2~^~01/01/2005~ -~23054~^~415~^0.596^3^^~1~^~A~^^^1^0.565^0.615^^^^~2~^~01/01/2005~ -~23054~^~501~^0.172^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~502~^1.047^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~503~^1.193^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~504~^2.086^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~505~^2.216^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~506~^0.683^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~507~^0.338^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~508~^1.036^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~509~^0.835^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~510~^1.301^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~511~^1.695^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~512~^0.837^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~513~^1.594^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~514~^2.388^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~515~^3.936^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~516~^1.596^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~517~^1.250^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~518~^1.033^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23054~^~521~^0.275^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23054~^~605~^0.273^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~606~^2.833^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~612~^0.199^3^^~1~^~A~^^^1^0.167^0.219^^^^~2~^~01/01/2005~ -~23054~^~613~^1.646^3^^~1~^~A~^^^1^1.423^1.816^^^^~2~^~01/01/2005~ -~23054~^~614~^0.858^3^^~1~^~A~^^^1^0.746^0.963^^^^~2~^~01/01/2005~ -~23054~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~617~^2.676^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23054~^~618~^0.338^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23054~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23054~^~620~^0.060^3^^~1~^~A~^^^1^0.050^0.065^^^^~2~^~01/01/2005~ -~23054~^~624~^0.022^3^^~1~^~A~^^^1^0.019^0.024^^^^~2~^~01/01/2005~ -~23054~^~625~^0.044^3^^~1~^~A~^^^1^0.035^0.049^^^^~2~^~01/01/2005~ -~23054~^~626~^0.207^3^^~1~^~A~^^^1^0.178^0.233^^^^~2~^~01/01/2005~ -~23054~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23054~^~628~^0.008^3^^~1~^~A~^^^1^0.000^0.013^^^^~1, 2~^~01/01/2005~ -~23054~^~645~^2.933^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~646~^0.410^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~652~^0.031^3^^~1~^~A~^^^1^0.025^0.036^^^^~2~^~01/01/2005~ -~23054~^~653~^0.078^3^^~1~^~A~^^^1^0.063^0.086^^^^~2~^~01/01/2005~ -~23054~^~663~^0.220^3^^~1~^~A~^^^1^0.198^0.255^^^^~2~^~01/01/2005~ -~23054~^~669~^0.053^3^^~1~^~A~^^^1^0.047^0.061^^^^~2~^~01/01/2005~ -~23054~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~674~^2.456^3^^~1~^~A~^^^1^2.093^2.740^^^^~2~^~01/01/2005~ -~23054~^~675~^0.284^3^^~1~^~A~^^^1^0.241^0.327^^^^~2~^~01/01/2005~ -~23054~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~693~^0.220^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23054~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23054~^~851~^0.013^3^^~1~^~A~^^^1^0.011^0.016^^^^~2~^~01/01/2005~ -~23055~^~312~^0.095^3^^~1~^~A~^^^1^0.092^0.098^^^^~2~^~01/01/2005~ -~23055~^~315~^0.011^3^^~1~^~A~^^^1^0.011^0.011^^^^~1, 2~^~01/01/2005~ -~23055~^~404~^0.066^3^^~1~^~A~^^^1^0.058^0.080^^^^~2~^~01/01/2005~ -~23055~^~405~^0.181^3^^~1~^~A~^^^1^0.167^0.204^^^^~2~^~01/01/2005~ -~23055~^~406~^5.557^3^^~1~^~A~^^^1^5.270^5.760^^^^~2~^~01/01/2005~ -~23055~^~410~^0.758^3^^~1~^~A~^^^1^0.677^0.820^^^^~2~^~01/01/2005~ -~23055~^~415~^0.616^3^^~1~^~A~^^^1^0.608^0.622^^^^~2~^~01/01/2005~ -~23055~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~502~^0.866^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~503~^0.987^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~504~^1.725^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~505~^1.833^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~506~^0.565^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~508~^0.857^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~509~^0.691^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~510~^1.076^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~511~^1.402^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~512~^0.692^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~513~^1.319^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~514~^1.976^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~515~^3.256^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~516~^1.321^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~517~^1.034^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~518~^0.854^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23055~^~521~^0.093^2^^~1~^~A~^^^1^0.087^0.100^^^^^~01/01/2005~ -~23055~^~605~^0.139^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~606~^1.578^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~612~^0.110^3^^~1~^~A~^^^1^0.084^0.123^^^^~2~^~01/01/2005~ -~23055~^~613~^0.958^3^^~1~^~A~^^^1^0.712^1.095^^^^~2~^~01/01/2005~ -~23055~^~614~^0.440^3^^~1~^~A~^^^1^0.370^0.478^^^^~2~^~01/01/2005~ -~23055~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~617~^1.694^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23055~^~618~^0.215^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23055~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23055~^~620~^0.051^3^^~1~^~A~^^^1^0.049^0.054^^^^~2~^~01/01/2005~ -~23055~^~624~^0.016^3^^~1~^~A~^^^1^0.015^0.017^^^^~2~^~01/01/2005~ -~23055~^~625~^0.032^3^^~1~^~A~^^^1^0.022^0.038^^^^~2~^~01/01/2005~ -~23055~^~626~^0.149^3^^~1~^~A~^^^1^0.095^0.184^^^^~2~^~01/01/2005~ -~23055~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23055~^~628~^0.006^3^^~1~^~A~^^^1^0.005^0.007^^^^~2~^~01/01/2005~ -~23055~^~645~^1.881^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~646~^0.275^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~652~^0.016^3^^~1~^~A~^^^1^0.013^0.018^^^^~2~^~01/01/2005~ -~23055~^~653~^0.039^3^^~1~^~A~^^^1^0.031^0.044^^^^~2~^~01/01/2005~ -~23055~^~663~^0.107^3^^~1~^~A~^^^1^0.091^0.118^^^^~2~^~01/01/2005~ -~23055~^~669~^0.032^3^^~1~^~A~^^^1^0.026^0.036^^^^~2~^~01/01/2005~ -~23055~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~674~^1.587^3^^~1~^~A~^^^1^1.125^1.838^^^^~2~^~01/01/2005~ -~23055~^~675~^0.183^3^^~1~^~A~^^^1^0.179^0.185^^^^~2~^~01/01/2005~ -~23055~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~693~^0.107^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23055~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23055~^~851~^0.009^3^^~1~^~A~^^^1^0.008^0.009^^^^~2~^~01/01/2005~ -~23056~^~312~^0.112^3^^~1~^~A~^^^1^0.069^0.142^^^^~2~^~01/01/2005~ -~23056~^~315~^0.014^3^^~1~^~A~^^^1^0.011^0.019^^^^~1, 2~^~01/01/2005~ -~23056~^~404~^0.066^3^^~1~^~A~^^^1^0.056^0.078^^^^~2~^~02/01/2005~ -~23056~^~405~^0.198^3^^~1~^~A~^^^1^0.189^0.210^^^^~2~^~01/01/2005~ -~23056~^~406~^5.873^3^^~1~^~A~^^^1^5.550^6.080^^^^~2~^~01/01/2005~ -~23056~^~410~^0.797^3^^~1~^~A~^^^1^0.678^0.859^^^^~2~^~01/01/2005~ -~23056~^~415~^0.559^3^^~1~^~A~^^^1^0.524^0.597^^^^~2~^~01/01/2005~ -~23056~^~501~^0.191^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~502~^1.162^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~503~^1.323^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~504~^2.313^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~505~^2.458^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~506~^0.757^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~507~^0.375^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~508~^1.149^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~509~^0.927^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~510~^1.443^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~511~^1.880^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~512~^0.928^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~513~^1.768^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~514~^2.649^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~515~^4.366^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~516~^1.771^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~517~^1.386^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~518~^1.146^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23056~^~521~^0.306^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23056~^~605~^0.168^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~606~^1.901^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~612~^0.127^3^^~1~^~A~^^^1^0.083^0.176^^^^~2~^~01/01/2005~ -~23056~^~613~^1.159^3^^~1~^~A~^^^1^0.740^1.597^^^^~2~^~01/01/2005~ -~23056~^~614~^0.533^3^^~1~^~A~^^^1^0.385^0.700^^^^~2~^~01/01/2005~ -~23056~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~617~^2.023^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23056~^~618~^0.246^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23056~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23056~^~620~^0.050^3^^~1~^~A~^^^1^0.040^0.062^^^^~2~^~01/01/2005~ -~23056~^~624~^0.017^3^^~1~^~A~^^^1^0.014^0.021^^^^~2~^~01/01/2005~ -~23056~^~625~^0.036^3^^~1~^~A~^^^1^0.022^0.054^^^^~2~^~01/01/2005~ -~23056~^~626~^0.174^3^^~1~^~A~^^^1^0.101^0.259^^^^~2~^~01/01/2005~ -~23056~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23056~^~628~^0.005^3^^~1~^~A~^^^1^0.000^0.010^^^^~1, 2~^~01/01/2005~ -~23056~^~645~^2.239^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~646~^0.301^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~652~^0.019^3^^~1~^~A~^^^1^0.013^0.025^^^^~2~^~01/01/2005~ -~23056~^~653~^0.046^3^^~1~^~A~^^^1^0.032^0.061^^^^~2~^~01/01/2005~ -~23056~^~663~^0.131^3^^~1~^~A~^^^1^0.088^0.187^^^^~2~^~01/01/2005~ -~23056~^~669~^0.038^3^^~1~^~A~^^^1^0.026^0.052^^^^~2~^~01/01/2005~ -~23056~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~674~^1.893^3^^~1~^~A~^^^1^1.169^2.689^^^^~2~^~01/01/2005~ -~23056~^~675~^0.209^3^^~1~^~A~^^^1^0.182^0.239^^^^~2~^~01/01/2005~ -~23056~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~693~^0.131^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23056~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23056~^~851~^0.006^3^^~1~^~A~^^^1^0.000^0.010^^^^~1, 2~^~01/01/2005~ -~23057~^~312~^0.094^3^^~1~^~A~^^^1^0.079^0.107^^^^~2~^~01/01/2005~ -~23057~^~315~^0.014^3^^~1~^~A~^^^1^0.011^0.020^^^^~1, 2~^~01/01/2005~ -~23057~^~404~^0.079^3^^~1~^~A~^^^1^0.072^0.093^^^^~2~^~01/01/2005~ -~23057~^~405~^0.238^3^^~1~^~A~^^^1^0.223^0.253^^^^~2~^~01/01/2005~ -~23057~^~406~^5.193^3^^~1~^~A~^^^1^4.640^5.620^^^^~2~^~01/01/2005~ -~23057~^~410~^0.775^3^^~1~^~A~^^^1^0.727^0.861^^^^~2~^~01/01/2005~ -~23057~^~415~^0.656^3^^~1~^~A~^^^1^0.601^0.746^^^^~2~^~01/01/2005~ -~23057~^~501~^0.136^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~502~^0.826^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~503~^0.941^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~504~^1.645^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~505~^1.747^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~506~^0.538^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~507~^0.267^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~508~^0.817^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~509~^0.659^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~510~^1.026^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~511~^1.337^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~512~^0.660^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~513~^1.257^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~514~^1.883^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~515~^3.104^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~516~^1.259^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~517~^0.986^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~518~^0.814^0^^~1~^~A~^^^^^^^^^^~01/01/2005~ -~23057~^~521~^0.094^2^^~1~^~A~^^^1^0.068^0.119^^^^^~01/01/2005~ -~23057~^~605~^0.196^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~606~^1.985^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~612~^0.143^3^^~1~^~A~^^^1^0.126^0.158^^^^~2~^~01/01/2005~ -~23057~^~613~^1.190^3^^~1~^~A~^^^1^1.025^1.339^^^^~2~^~01/01/2005~ -~23057~^~614~^0.577^3^^~1~^~A~^^^1^0.555^0.604^^^^~2~^~01/01/2005~ -~23057~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~617~^1.993^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23057~^~618~^0.261^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23057~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~01/01/2005~ -~23057~^~620~^0.049^3^^~1~^~A~^^^1^0.043^0.053^^^^~2~^~01/01/2005~ -~23057~^~624~^0.006^3^^~1~^~A~^^^1^0.000^0.018^^^^~1, 2~^~01/01/2005~ -~23057~^~625~^0.039^3^^~1~^~A~^^^1^0.032^0.042^^^^~2~^~01/01/2005~ -~23057~^~626~^0.165^3^^~1~^~A~^^^1^0.132^0.188^^^^~2~^~01/01/2005~ -~23057~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23057~^~628~^0.002^3^^~1~^~A~^^^1^0.000^0.007^^^^~1, 2~^~01/01/2005~ -~23057~^~645~^2.937^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~646~^0.397^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~652~^0.021^3^^~1~^~A~^^^1^0.020^0.023^^^^~2~^~01/01/2005~ -~23057~^~653~^0.049^3^^~1~^~A~^^^1^0.045^0.055^^^^~2~^~01/01/2005~ -~23057~^~663~^0.156^3^^~1~^~A~^^^1^0.150^0.168^^^^~2~^~01/01/2005~ -~23057~^~669~^0.040^3^^~1~^~A~^^^1^0.038^0.041^^^^~2~^~01/01/2005~ -~23057~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~674~^1.837^3^^~1~^~A~^^^1^1.612^2.067^^^^~2~^~01/01/2005~ -~23057~^~675~^0.222^3^^~1~^~A~^^^1^0.207^0.239^^^^~2~^~01/01/2005~ -~23057~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~693~^0.156^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~ -~23057~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23057~^~851~^0.004^3^^~1~^~A~^^^1^0.000^0.011^^^^~1, 2~^~01/01/2005~ -~23058~^~312~^0.089^3^^~1~^~A~^^^1^0.073^0.098^^^^~2~^~02/01/2005~ -~23058~^~315~^0.015^3^^~1~^~A~^^^1^0.011^0.019^^^^~1, 2~^~02/01/2005~ -~23058~^~404~^0.075^3^^~1~^~A~^^^1^0.062^0.087^^^^~2~^~02/01/2005~ -~23058~^~405~^0.294^3^^~1~^~A~^^^1^0.257^0.344^^^^~2~^~02/01/2005~ -~23058~^~406~^5.273^3^^~1~^~A~^^^1^4.190^6.140^^^^~2~^~02/01/2005~ -~23058~^~410~^0.839^3^^~1~^~A~^^^1^0.779^0.949^^^^~2~^~02/01/2005~ -~23058~^~415~^0.576^3^^~1~^~A~^^^1^0.550^0.593^^^^~2~^~02/01/2005~ -~23058~^~501~^0.173^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~502~^1.051^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~503~^1.196^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~504~^2.092^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~505~^2.222^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~506~^0.685^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~507~^0.339^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~508~^1.039^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~509~^0.838^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~510~^1.305^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~511~^1.700^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~512~^0.839^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~513~^1.599^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~514~^2.395^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~515~^3.948^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~516~^1.601^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~517~^1.254^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~518~^1.036^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~521~^0.276^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23058~^~605~^0.275^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~606~^2.765^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~612~^0.201^3^^~1~^~A~^^^1^0.157^0.230^^^^~2~^~02/01/2005~ -~23058~^~613~^1.658^3^^~1~^~A~^^^1^1.264^1.905^^^^~2~^~02/01/2005~ -~23058~^~614~^0.808^3^^~1~^~A~^^^1^0.727^0.857^^^^~2~^~02/01/2005~ -~23058~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~617~^2.758^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~618~^0.331^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23058~^~620~^0.052^3^^~1~^~A~^^^1^0.046^0.060^^^^~2~^~02/01/2005~ -~23058~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~625~^0.053^3^^~1~^~A~^^^1^0.037^0.063^^^^~2~^~02/01/2005~ -~23058~^~626~^0.226^3^^~1~^~A~^^^1^0.158^0.269^^^^~2~^~02/01/2005~ -~23058~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23058~^~628~^0.007^3^^~1~^~A~^^^1^0.000^0.012^^^^~1, 2~^~02/01/2005~ -~23058~^~645~^3.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~646~^0.395^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~652~^0.029^3^^~1~^~A~^^^1^0.025^0.033^^^^~2~^~02/01/2005~ -~23058~^~653~^0.070^3^^~1~^~A~^^^1^0.062^0.080^^^^~2~^~02/01/2005~ -~23058~^~663~^0.219^3^^~1~^~A~^^^1^0.191^0.242^^^^~2~^~02/01/2005~ -~23058~^~669~^0.056^3^^~1~^~A~^^^1^0.051^0.059^^^^~2~^~02/01/2005~ -~23058~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~674~^2.539^3^^~1~^~A~^^^1^1.987^2.916^^^^~2~^~02/01/2005~ -~23058~^~675~^0.275^3^^~1~^~A~^^^1^0.262^0.285^^^^~2~^~02/01/2005~ -~23058~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~693~^0.219^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~695~^0.056^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23058~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23058~^~851~^0.013^3^^~1~^~A~^^^1^0.012^0.013^^^^~2~^~02/01/2005~ -~23059~^~312~^0.119^3^^~1~^~A~^^^1^0.111^0.131^^^^~2~^~02/01/2005~ -~23059~^~315~^0.016^3^^~1~^~A~^^^1^0.011^0.019^^^^~1, 2~^~02/01/2005~ -~23059~^~404~^0.099^3^^~1~^~A~^^^1^0.076^0.140^^^^~2~^~02/01/2005~ -~23059~^~405~^0.227^3^^~1~^~A~^^^1^0.200^0.258^^^^~2~^~02/01/2005~ -~23059~^~406~^3.420^3^^~1~^~A~^^^1^3.300^3.500^^^^~2~^~02/01/2005~ -~23059~^~410~^0.952^3^^~1~^~A~^^^1^0.898^0.990^^^^~2~^~02/01/2005~ -~23059~^~415~^0.370^3^^~1~^~A~^^^1^0.353^0.398^^^^~2~^~02/01/2005~ -~23059~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~502~^0.759^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~503~^0.864^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~504~^1.511^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~505~^1.605^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~506~^0.495^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~507~^0.245^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~508~^0.750^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~509~^0.605^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~510~^0.942^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~511~^1.228^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~512~^0.606^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~513~^1.155^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~514~^1.730^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~515~^2.851^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~516~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~517~^0.905^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~518~^0.748^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23059~^~521~^0.118^2^^~1~^~A~^^^1^0.100^0.135^^^^^~02/01/2005~ -~23059~^~605~^0.371^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~606~^3.945^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~612~^0.291^3^^~1~^~A~^^^1^0.257^0.337^^^^~2~^~02/01/2005~ -~23059~^~613~^2.276^3^^~1~^~A~^^^1^1.931^2.677^^^^~2~^~02/01/2005~ -~23059~^~614~^1.233^3^^~1~^~A~^^^1^1.135^1.418^^^^~2~^~02/01/2005~ -~23059~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~617~^3.790^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~618~^0.403^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23059~^~620~^0.055^3^^~1~^~A~^^^1^0.049^0.064^^^^~2~^~02/01/2005~ -~23059~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~625~^0.063^3^^~1~^~A~^^^1^0.055^0.071^^^^~2~^~02/01/2005~ -~23059~^~626~^0.278^3^^~1~^~A~^^^1^0.234^0.323^^^^~2~^~02/01/2005~ -~23059~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23059~^~628~^0.013^3^^~1~^~A~^^^1^0.011^0.017^^^^~2~^~02/01/2005~ -~23059~^~645~^4.144^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~646~^0.475^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~652~^0.040^3^^~1~^~A~^^^1^0.035^0.046^^^^~2~^~02/01/2005~ -~23059~^~653~^0.107^3^^~1~^~A~^^^1^0.093^0.125^^^^~2~^~02/01/2005~ -~23059~^~663~^0.295^3^^~1~^~A~^^^1^0.264^0.322^^^^~2~^~02/01/2005~ -~23059~^~669~^0.076^3^^~1~^~A~^^^1^0.071^0.083^^^^~2~^~02/01/2005~ -~23059~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~674~^3.495^3^^~1~^~A~^^^1^3.052^4.116^^^^~2~^~02/01/2005~ -~23059~^~675~^0.327^3^^~1~^~A~^^^1^0.318^0.344^^^^~2~^~02/01/2005~ -~23059~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~693~^0.295^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~695~^0.076^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23059~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23059~^~851~^0.017^3^^~1~^~A~^^^1^0.014^0.019^^^^~2~^~02/01/2005~ -~23060~^~312~^0.134^3^^~1~^~A~^^^1^0.122^0.148^^^^~2~^~04/01/2005~ -~23060~^~315~^0.018^3^^~1~^~A~^^^1^0.017^0.019^^^^~2~^~04/01/2005~ -~23060~^~404~^0.073^3^^~1~^~A~^^^1^0.068^0.079^^^^~2~^~04/01/2005~ -~23060~^~405~^0.292^3^^~1~^~A~^^^1^0.216^0.382^^^^~2~^~04/01/2005~ -~23060~^~406~^3.833^3^^~1~^~A~^^^1^3.240^4.200^^^^~2~^~04/01/2005~ -~23060~^~410~^0.944^3^^~1~^~A~^^^1^0.880^1.070^^^^~2~^~04/01/2005~ -~23060~^~415~^0.387^3^^~1~^~A~^^^1^0.372^0.410^^^^~2~^~04/01/2005~ -~23060~^~501~^0.173^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~502~^1.051^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~503~^1.196^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~504~^2.092^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~505~^2.222^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~506~^0.685^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~507~^0.339^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~508~^1.039^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~509~^0.838^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~510~^1.305^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~511~^1.700^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~512~^0.839^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~513~^1.599^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~514~^2.395^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~515~^3.948^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~516~^1.601^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~517~^1.254^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~518~^1.036^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23060~^~521~^0.276^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2005~ -~23060~^~605~^0.512^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~606~^5.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~611~^0.010^3^^~1~^~A~^^^1^0.010^0.011^^^^~2~^~04/01/2005~ -~23060~^~612~^0.377^3^^~1~^~A~^^^1^0.333^0.432^^^^~2~^~04/01/2005~ -~23060~^~613~^2.924^3^^~1~^~A~^^^1^2.451^3.460^^^^~2~^~04/01/2005~ -~23060~^~614~^1.594^3^^~1~^~A~^^^1^1.446^1.828^^^^~2~^~04/01/2005~ -~23060~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~617~^4.866^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~23060~^~618~^0.491^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~23060~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~ -~23060~^~620~^0.051^3^^~1~^~A~^^^1^0.043^0.056^^^^~2~^~04/01/2005~ -~23060~^~624~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~625~^0.086^3^^~1~^~A~^^^1^0.075^0.095^^^^~2~^~04/01/2005~ -~23060~^~626~^0.361^3^^~1~^~A~^^^1^0.299^0.423^^^^~2~^~04/01/2005~ -~23060~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23060~^~628~^0.017^3^^~1~^~A~^^^1^0.015^0.021^^^^~2~^~04/01/2005~ -~23060~^~645~^5.330^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~646~^0.563^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~652~^0.054^3^^~1~^~A~^^^1^0.049^0.059^^^^~2~^~04/01/2005~ -~23060~^~653~^0.136^3^^~1~^~A~^^^1^0.119^0.160^^^^~2~^~04/01/2005~ -~23060~^~663~^0.409^3^^~1~^~A~^^^1^0.388^0.423^^^^~2~^~04/01/2005~ -~23060~^~669~^0.103^3^^~1~^~A~^^^1^0.099^0.111^^^^~2~^~04/01/2005~ -~23060~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~674~^4.457^3^^~1~^~A~^^^1^3.791^5.334^^^^~2~^~04/01/2005~ -~23060~^~675~^0.388^3^^~1~^~A~^^^1^0.367^0.403^^^^~2~^~04/01/2005~ -~23060~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~693~^0.409^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~ -~23060~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23060~^~851~^0.020^3^^~1~^~A~^^^1^0.017^0.023^^^^~2~^~04/01/2005~ -~23061~^~312~^0.074^3^^~1~^~A~^^^1^0.067^0.087^^^^~2~^~02/01/2005~ -~23061~^~315~^0.011^3^^~1~^~A~^^^1^0.011^0.011^^^^~1, 2~^~02/01/2005~ -~23061~^~404~^0.071^3^^~1~^~A~^^^1^0.062^0.084^^^^~2~^~02/01/2005~ -~23061~^~405~^0.185^3^^~1~^~A~^^^1^0.144^0.209^^^^~2~^~02/01/2005~ -~23061~^~406~^5.010^3^^~1~^~A~^^^1^4.410^5.380^^^^~2~^~02/01/2005~ -~23061~^~410~^0.733^3^^~1~^~A~^^^1^0.670^0.776^^^^~2~^~02/01/2005~ -~23061~^~415~^0.527^3^^~1~^~A~^^^1^0.510^0.543^^^^~2~^~02/01/2005~ -~23061~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~502~^0.836^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~503~^0.952^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~504~^1.665^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~505~^1.769^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~506~^0.545^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~508~^0.827^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~509~^0.667^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~510~^1.039^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~511~^1.354^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~512~^0.668^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~513~^1.273^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~514~^1.907^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~515~^3.143^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~516~^1.275^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~517~^0.998^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~518~^0.825^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23061~^~521~^0.108^2^^~1~^~A~^^^1^0.100^0.117^^^^^~02/01/2005~ -~23061~^~605~^0.209^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~606~^2.163^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~612~^0.160^3^^~1~^~A~^^^1^0.146^0.183^^^^~2~^~02/01/2005~ -~23061~^~613~^1.304^3^^~1~^~A~^^^1^1.129^1.575^^^^~2~^~02/01/2005~ -~23061~^~614~^0.605^3^^~1~^~A~^^^1^0.523^0.723^^^^~2~^~02/01/2005~ -~23061~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~617~^2.123^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~618~^0.253^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23061~^~620~^0.049^3^^~1~^~A~^^^1^0.044^0.051^^^^~2~^~02/01/2005~ -~23061~^~624~^0.017^3^^~1~^~A~^^^1^0.015^0.019^^^^~2~^~02/01/2005~ -~23061~^~625~^0.040^3^^~1~^~A~^^^1^0.035^0.043^^^^~2~^~02/01/2005~ -~23061~^~626~^0.172^3^^~1~^~A~^^^1^0.157^0.194^^^^~2~^~02/01/2005~ -~23061~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23061~^~628~^0.002^3^^~1~^~A~^^^1^0.000^0.006^^^^~1, 2~^~02/01/2005~ -~23061~^~645~^2.336^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~646~^0.312^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~652~^0.023^3^^~1~^~A~^^^1^0.020^0.026^^^^~2~^~02/01/2005~ -~23061~^~653~^0.054^3^^~1~^~A~^^^1^0.048^0.065^^^^~2~^~02/01/2005~ -~23061~^~663~^0.163^3^^~1~^~A~^^^1^0.143^0.184^^^^~2~^~02/01/2005~ -~23061~^~669~^0.046^3^^~1~^~A~^^^1^0.041^0.052^^^^~2~^~02/01/2005~ -~23061~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~674~^1.960^3^^~1~^~A~^^^1^1.648^2.374^^^^~2~^~02/01/2005~ -~23061~^~675~^0.207^3^^~1~^~A~^^^1^0.195^0.219^^^^~2~^~02/01/2005~ -~23061~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~693~^0.163^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23061~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23061~^~851~^0.011^3^^~1~^~A~^^^1^0.010^0.012^^^^~2~^~02/01/2005~ -~23062~^~312~^0.089^3^^~1~^~A~^^^1^0.084^0.096^^^^~2~^~02/01/2005~ -~23062~^~315~^0.011^3^^~1~^~A~^^^1^0.011^0.011^^^^~1, 2~^~02/01/2005~ -~23062~^~404~^0.059^3^^~1~^~A~^^^1^0.053^0.067^^^^~2~^~02/01/2005~ -~23062~^~405~^0.217^3^^~1~^~A~^^^1^0.202^0.225^^^^~2~^~02/01/2005~ -~23062~^~406~^5.177^3^^~1~^~A~^^^1^4.660^5.470^^^^~2~^~02/01/2005~ -~23062~^~410~^0.751^3^^~1~^~A~^^^1^0.693^0.848^^^^~2~^~02/01/2005~ -~23062~^~415~^0.496^3^^~1~^~A~^^^1^0.457^0.540^^^^~2~^~02/01/2005~ -~23062~^~501~^0.178^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~502~^1.083^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~503~^1.234^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~504~^2.157^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~505~^2.292^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~506~^0.706^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~507~^0.350^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~508~^1.071^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~509~^0.864^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~510~^1.345^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~511~^1.753^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~512~^0.865^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~513~^1.648^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~514~^2.470^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~515~^4.071^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~516~^1.651^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~517~^1.293^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~518~^1.068^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23062~^~521~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2006~ -~23062~^~605~^0.235^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~606~^2.527^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~612~^0.184^3^^~1~^~A~^^^1^0.155^0.222^^^^~2~^~02/01/2005~ -~23062~^~613~^1.531^3^^~1~^~A~^^^1^1.220^1.903^^^^~2~^~02/01/2005~ -~23062~^~614~^0.703^3^^~1~^~A~^^^1^0.592^0.829^^^^~2~^~02/01/2005~ -~23062~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~617~^2.467^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23062~^~618~^0.293^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23062~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23062~^~620~^0.054^3^^~1~^~A~^^^1^0.050^0.056^^^^~2~^~02/01/2005~ -~23062~^~624~^0.020^3^^~1~^~A~^^^1^0.018^0.022^^^^~2~^~02/01/2005~ -~23062~^~625~^0.045^3^^~1~^~A~^^^1^0.041^0.053^^^^~2~^~02/01/2005~ -~23062~^~626~^0.200^3^^~1~^~A~^^^1^0.164^0.240^^^^~2~^~02/01/2005~ -~23062~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23062~^~628~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~645~^2.712^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~646~^0.358^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~652~^0.027^3^^~1~^~A~^^^1^0.024^0.032^^^^~2~^~02/01/2005~ -~23062~^~653~^0.064^3^^~1~^~A~^^^1^0.054^0.078^^^^~2~^~02/01/2005~ -~23062~^~663~^0.185^3^^~1~^~A~^^^1^0.167^0.216^^^^~2~^~02/01/2005~ -~23062~^~669~^0.049^3^^~1~^~A~^^^1^0.045^0.057^^^^~2~^~02/01/2005~ -~23062~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~674~^2.282^3^^~1~^~A~^^^1^1.800^2.818^^^^~2~^~02/01/2005~ -~23062~^~675~^0.244^3^^~1~^~A~^^^1^0.234^0.251^^^^~2~^~02/01/2005~ -~23062~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23062~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23062~^~851~^0.012^3^^~1~^~A~^^^1^0.010^0.013^^^^~2~^~02/01/2005~ -~23063~^~312~^0.134^3^^~1~^~A~^^^1^0.093^0.178^^^^~2~^~02/01/2005~ -~23063~^~315~^0.019^3^^~1~^~A~^^^1^0.016^0.020^^^^~2~^~02/01/2005~ -~23063~^~404~^0.073^3^^~1~^~A~^^^1^0.062^0.089^^^^~2~^~02/01/2005~ -~23063~^~405~^0.204^3^^~1~^~A~^^^1^0.171^0.241^^^^~2~^~02/01/2005~ -~23063~^~406~^6.380^3^^~1~^~A~^^^1^6.210^6.570^^^^~2~^~02/01/2005~ -~23063~^~410~^0.690^3^^~1~^~A~^^^1^0.608^0.768^^^^~2~^~02/01/2005~ -~23063~^~415~^0.721^3^^~1~^~A~^^^1^0.666^0.773^^^^~2~^~02/01/2005~ -~23063~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~502~^0.862^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~503~^0.982^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~504~^1.717^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~505~^1.824^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~507~^0.279^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~508~^0.853^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~509~^0.688^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~510~^1.071^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~511~^1.396^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~512~^0.689^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~513~^1.312^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~514~^1.966^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~515~^3.241^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~516~^1.314^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~517~^1.029^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~518~^0.850^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23063~^~521~^0.098^2^^~1~^~A~^^^1^0.088^0.109^^^^^~02/01/2005~ -~23063~^~605~^0.169^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~606~^2.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~612~^0.155^3^^~1~^~A~^^^1^0.112^0.188^^^^~2~^~02/01/2005~ -~23063~^~613~^1.227^3^^~1~^~A~^^^1^0.824^1.556^^^^~2~^~02/01/2005~ -~23063~^~614~^0.529^3^^~1~^~A~^^^1^0.400^0.620^^^^~2~^~02/01/2005~ -~23063~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~617~^2.213^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~618~^0.249^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23063~^~620~^0.058^3^^~1~^~A~^^^1^0.054^0.063^^^^~2~^~02/01/2005~ -~23063~^~624~^0.018^3^^~1~^~A~^^^1^0.015^0.020^^^^~2~^~02/01/2005~ -~23063~^~625~^0.050^3^^~1~^~A~^^^1^0.031^0.063^^^^~2~^~02/01/2005~ -~23063~^~626~^0.235^3^^~1~^~A~^^^1^0.146^0.297^^^^~2~^~02/01/2005~ -~23063~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23063~^~628~^0.006^3^^~1~^~A~^^^1^0.000^0.012^^^^~1, 2~^~02/01/2005~ -~23063~^~645~^2.503^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~646~^0.309^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~652~^0.022^3^^~1~^~A~^^^1^0.015^0.027^^^^~2~^~02/01/2005~ -~23063~^~653~^0.050^3^^~1~^~A~^^^1^0.034^0.062^^^^~2~^~02/01/2005~ -~23063~^~663~^0.132^3^^~1~^~A~^^^1^0.108^0.147^^^^~2~^~02/01/2005~ -~23063~^~669~^0.037^3^^~1~^~A~^^^1^0.028^0.042^^^^~2~^~02/01/2005~ -~23063~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~674~^2.081^3^^~1~^~A~^^^1^1.339^2.626^^^^~2~^~02/01/2005~ -~23063~^~675~^0.212^3^^~1~^~A~^^^1^0.207^0.219^^^^~2~^~02/01/2005~ -~23063~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~693~^0.132^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23063~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23063~^~851~^0.003^3^^~1~^~A~^^^1^0.000^0.008^^^^~1, 2~^~02/01/2005~ -~23064~^~312~^0.115^3^^~1~^~A~^^^1^0.098^0.127^^^^~2~^~02/01/2005~ -~23064~^~315~^0.020^3^^~1~^~A~^^^1^0.011^0.032^^^^~1, 2~^~02/01/2005~ -~23064~^~404~^0.066^3^^~1~^~A~^^^1^0.057^0.081^^^^~2~^~02/01/2005~ -~23064~^~405~^0.212^3^^~1~^~A~^^^1^0.167^0.242^^^^~2~^~02/01/2005~ -~23064~^~406~^7.557^3^^~1~^~A~^^^1^7.310^8.050^^^^~2~^~02/01/2005~ -~23064~^~410~^0.792^3^^~1~^~A~^^^1^0.756^0.850^^^^~2~^~02/01/2005~ -~23064~^~415~^0.673^3^^~1~^~A~^^^1^0.625^0.734^^^^~2~^~02/01/2005~ -~23064~^~501~^0.181^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~502~^1.100^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~503~^1.252^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~504~^2.190^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~505~^2.326^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~506~^0.717^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~507~^0.355^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~508~^1.087^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~509~^0.877^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~510~^1.365^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~511~^1.780^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~512~^0.878^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~513~^1.673^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~514~^2.507^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~515~^4.132^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~516~^1.676^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~517~^1.312^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~518~^1.084^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~521~^0.289^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23064~^~605~^0.211^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~606~^2.541^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~609~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~610~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~611~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~612~^0.195^3^^~1~^~A~^^^1^0.136^0.254^^^^~2~^~02/01/2005~ -~23064~^~613~^1.562^3^^~1~^~A~^^^1^1.017^2.097^^^^~2~^~02/01/2005~ -~23064~^~614~^0.675^3^^~1~^~A~^^^1^0.488^0.846^^^^~2~^~02/01/2005~ -~23064~^~615~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~617~^2.802^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~618~^0.269^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23064~^~620~^0.046^3^^~1~^~A~^^^1^0.037^0.054^^^^~2~^~02/01/2005~ -~23064~^~624~^0.017^3^^~1~^~A~^^^1^0.014^0.020^^^^~2~^~02/01/2005~ -~23064~^~625~^0.063^3^^~1~^~A~^^^1^0.039^0.083^^^^~2~^~02/01/2005~ -~23064~^~626~^0.298^3^^~1~^~A~^^^1^0.186^0.387^^^^~2~^~02/01/2005~ -~23064~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23064~^~628~^0.011^3^^~1~^~A~^^^1^0.008^0.016^^^^~2~^~02/01/2005~ -~23064~^~645~^3.174^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~646~^0.321^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~652~^0.028^3^^~1~^~A~^^^1^0.019^0.037^^^^~2~^~02/01/2005~ -~23064~^~653~^0.065^3^^~1~^~A~^^^1^0.042^0.086^^^^~2~^~02/01/2005~ -~23064~^~663~^0.163^3^^~1~^~A~^^^1^0.121^0.196^^^^~2~^~02/01/2005~ -~23064~^~669~^0.048^3^^~1~^~A~^^^1^0.033^0.060^^^^~2~^~02/01/2005~ -~23064~^~672~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~674~^2.639^3^^~1~^~A~^^^1^1.652^3.499^^^^~2~^~02/01/2005~ -~23064~^~675~^0.221^3^^~1~^~A~^^^1^0.209^0.236^^^^~2~^~02/01/2005~ -~23064~^~685~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~687~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~689~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~693~^0.163^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~695~^0.048^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23064~^~697~^0.000^3^^~1~^~A~^^^1^0.000^0.000^^^^~1, 2~^~02/01/2005~ -~23064~^~851~^0.006^3^^~1~^~A~^^^1^0.000^0.011^^^^~1, 2~^~02/01/2005~ -~23065~^~312~^0.253^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~315~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~404~^0.072^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~405~^0.354^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~406~^5.490^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~410~^0.852^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~415~^0.615^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~501~^0.174^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~502~^1.056^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~503~^1.203^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~504~^2.104^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~505~^2.235^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~506~^0.689^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~507~^0.341^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~508~^1.045^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~509~^0.843^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~510~^1.312^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~511~^1.710^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~512~^0.844^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~513~^1.608^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~514~^2.409^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~515~^3.970^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~516~^1.610^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~517~^1.261^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~518~^1.042^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~521~^0.278^0^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~605~^0.177^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~606~^1.700^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~612~^0.123^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~613~^0.954^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~614~^0.541^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~617~^1.567^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~618~^0.218^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~ -~23065~^~620~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~624~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~626~^0.117^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~ -~23065~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~645~^3.284^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~646~^0.490^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~653~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~663~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~669~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~674~^1.424^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~675~^0.184^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23065~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~693~^0.143^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~23065~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~ -~23065~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2005~ -~23066~^~312~^0.079^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~405~^0.200^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~406~^3.567^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~415~^0.311^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~501~^0.222^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~502~^0.878^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~503~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~504~^1.604^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~505~^1.743^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~506~^0.565^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~507~^0.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~508~^0.755^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~509~^0.687^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~510~^0.896^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~511~^1.303^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~512~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~513~^1.120^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~514~^1.784^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~515~^3.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~516~^0.863^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~517~^0.798^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~518~^0.761^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~521~^0.098^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~605~^0.489^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~606~^4.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23066~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~612~^0.282^4^0.022^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~613~^2.522^4^0.192^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~614~^1.589^4^0.128^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~615~^0.009^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~617~^5.166^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23066~^~618~^0.363^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23066~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23066~^~620~^0.044^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~625~^0.063^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~626~^0.359^4^0.023^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~628~^0.028^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23066~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~645~^5.723^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23066~^~646~^0.427^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23066~^~653~^0.138^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~663~^0.474^4^0.054^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~670~^0.031^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23066~^~674~^4.692^4^0.384^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~675~^0.333^4^0.032^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~687~^0.107^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~693~^0.489^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23066~^~851~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23066~^~859~^0.330^4^0.039^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~312~^0.081^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~315~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~405~^0.200^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~406~^3.560^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~410~^0.720^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~415~^0.323^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~501~^0.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~502~^0.912^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~503~^0.882^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~504~^1.667^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~505~^1.812^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~506~^0.587^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~507~^0.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~508~^0.785^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~509~^0.714^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~510~^0.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~511~^1.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~512~^0.664^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~513~^1.164^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~514~^1.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~515~^3.280^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~516~^0.897^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~517~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~518~^0.791^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~521~^0.102^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~605~^0.721^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23067~^~606~^3.940^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23067~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~612~^0.248^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~613~^2.089^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~614~^1.450^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~617~^4.173^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23067~^~618~^0.361^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23067~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23067~^~620~^0.036^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~625~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~626~^0.271^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~628~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23067~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~645~^4.590^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23067~^~646~^0.410^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23067~^~653~^0.147^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~663~^0.721^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~670~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23067~^~674~^3.452^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~675~^0.330^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~687~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~693~^0.721^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23067~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23067~^~859~^0.561^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~312~^0.080^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~315~^0.013^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~405~^0.200^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~406~^3.523^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~410~^0.730^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~415~^0.311^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~501~^0.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~502~^0.891^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~503~^0.862^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~504~^1.629^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~505~^1.771^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~506~^0.574^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~507~^0.210^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~508~^0.767^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~509~^0.698^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~510~^0.911^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~511~^1.324^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~512~^0.649^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~513~^1.138^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~514~^1.812^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~515~^3.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~516~^0.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~517~^0.810^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~518~^0.773^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~521~^0.099^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~605~^0.598^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~606~^4.312^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23068~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~612~^0.269^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~613~^2.352^6^0.154^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~614~^1.536^6^0.103^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~615~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~617~^4.776^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23068~^~618~^0.368^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23068~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23068~^~620~^0.041^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~625~^0.056^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~626~^0.325^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~628~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23068~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~645~^5.278^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23068~^~646~^0.426^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23068~^~653~^0.142^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~663~^0.576^6^0.043^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~670~^0.031^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23068~^~674~^4.200^6^0.309^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~675~^0.337^6^0.026^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~687~^0.103^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~693~^0.598^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23068~^~851~^0.016^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23068~^~859~^0.422^6^0.031^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~312~^0.114^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~315~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~405~^0.240^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~406~^4.140^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~415~^0.286^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~501~^0.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~502~^1.401^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~503~^1.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~504~^2.561^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~505~^2.784^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~506~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~507~^0.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~508~^1.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~509~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~510~^1.431^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~511~^2.081^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~512~^1.021^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~513~^1.789^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~514~^2.849^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~515~^5.040^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~516~^1.378^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~517~^1.274^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~518~^1.216^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~521~^0.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~605~^0.629^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23069~^~606~^5.380^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23069~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~612~^0.324^4^0.058^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~613~^2.936^4^0.476^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~614~^1.936^4^0.313^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~615~^0.011^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~617~^5.627^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23069~^~618~^0.482^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23069~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23069~^~620~^0.044^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~625~^0.063^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~626~^0.399^4^0.061^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~628~^0.027^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23069~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~645~^6.230^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23069~^~646~^0.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23069~^~653~^0.162^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~654~^0.011^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~663~^0.629^4^0.104^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~670~^0.047^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23069~^~674~^4.998^4^0.859^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~675~^0.435^4^0.081^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~687~^0.114^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~693~^0.629^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23069~^~851~^0.024^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23069~^~859~^0.449^4^0.073^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~312~^0.095^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~315~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~405~^0.240^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~406~^4.220^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~410~^0.670^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~415~^0.295^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~501~^0.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~502~^1.454^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~503~^1.405^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~504~^2.657^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~505~^2.888^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~506~^0.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~507~^0.342^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~508~^1.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~509~^1.138^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~510~^1.485^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~511~^2.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~512~^1.059^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~513~^1.855^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~514~^2.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~515~^5.228^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~516~^1.430^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~517~^1.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~518~^1.261^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~521~^0.162^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~605~^0.746^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23070~^~606~^3.000^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23070~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~612~^0.197^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~613~^1.671^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~614~^1.030^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~617~^5.775^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23070~^~618~^0.608^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23070~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23070~^~620~^0.053^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~625~^0.060^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~626~^0.427^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~628~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23070~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~645~^6.400^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23070~^~646~^0.690^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23070~^~653~^0.094^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~663~^0.746^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~670~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23070~^~674~^5.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~675~^0.559^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~687~^0.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~693~^0.746^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23070~^~851~^0.029^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23070~^~859~^0.485^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~312~^0.109^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~315~^0.017^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~404~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~405~^0.240^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~406~^4.147^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~410~^0.705^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~415~^0.289^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~501~^0.360^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~502~^1.422^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~503~^1.375^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~504~^2.600^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~505~^2.826^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~506~^0.916^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~507~^0.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~508~^1.224^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~509~^1.114^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~510~^1.453^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~511~^2.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~512~^1.036^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~513~^1.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~514~^2.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~515~^5.115^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~516~^1.399^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~517~^1.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~518~^1.234^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~605~^0.614^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23071~^~606~^4.990^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23071~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~612~^0.310^6^0.047^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~613~^2.745^6^0.383^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~614~^1.765^6^0.252^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~615~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~617~^5.192^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23071~^~618~^0.483^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23071~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23071~^~620~^0.043^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~625~^0.057^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~626~^0.374^6^0.049^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~628~^0.021^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23071~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~645~^5.750^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23071~^~646~^0.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23071~^~653~^0.152^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~654~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~663~^0.614^6^0.084^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~670~^0.044^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23071~^~674~^4.578^6^0.691^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~675~^0.439^6^0.066^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~687~^0.107^6^0.014^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~693~^0.614^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23071~^~851~^0.024^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23071~^~859~^0.463^6^0.059^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~312~^0.092^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~405~^0.190^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~406~^4.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~410~^0.680^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~415~^0.355^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~501~^0.239^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~502~^0.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~503~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~504~^1.727^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~505~^1.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~506~^0.609^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~507~^0.222^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~508~^0.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~509~^0.740^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~510~^0.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~511~^1.403^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~512~^0.688^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~513~^1.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~514~^1.921^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~515~^3.398^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~516~^0.929^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~517~^0.859^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~518~^0.820^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~521~^0.105^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~605~^0.384^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~606~^3.419^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~612~^0.202^4^0.023^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~613~^1.860^4^0.203^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~614~^1.245^4^0.135^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~615~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~617~^3.692^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23072~^~618~^0.322^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23072~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23072~^~620~^0.040^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~625~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~626~^0.254^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~628~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23072~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~645~^4.071^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~646~^0.378^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~653~^0.098^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~663~^0.384^4^0.046^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~670~^0.027^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~674~^3.308^4^0.383^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~675~^0.295^4^0.038^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~687~^0.069^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~693~^0.384^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23072~^~851~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23072~^~859~^0.255^4^0.031^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~312~^0.094^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~315~^0.015^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~405~^0.180^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~406~^4.250^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~415~^0.357^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~501~^0.242^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~502~^0.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~503~^0.924^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~504~^1.746^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~505~^1.898^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~506~^0.615^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~507~^0.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~508~^0.822^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~509~^0.748^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~510~^0.976^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~511~^1.419^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~512~^0.696^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~513~^1.220^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~514~^1.942^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~515~^3.436^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~516~^0.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~517~^0.868^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~518~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~521~^0.107^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~605~^0.372^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23073~^~606~^2.570^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23073~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~612~^0.162^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~613~^1.410^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~614~^0.906^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~617~^2.681^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23073~^~618~^0.279^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23073~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23073~^~620~^0.029^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~625~^0.030^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~626~^0.177^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~628~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23073~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~645~^2.950^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23073~^~646~^0.320^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23073~^~653~^0.087^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~663~^0.372^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~670~^0.029^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23073~^~674~^2.308^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~675~^0.250^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~687~^0.057^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~693~^0.372^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23073~^~851~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23073~^~859~^0.265^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~312~^0.093^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~404~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~405~^0.187^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~406~^4.167^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~410~^0.710^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~415~^0.357^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~501~^0.240^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~502~^0.949^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~503~^0.918^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~504~^1.735^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~505~^1.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~506~^0.611^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~507~^0.223^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~508~^0.817^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~509~^0.743^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~510~^0.970^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~511~^1.410^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~512~^0.691^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~513~^1.211^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~514~^1.930^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~515~^3.413^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~516~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~517~^0.863^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~518~^0.823^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~521~^0.106^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~605~^0.373^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23074~^~606~^3.030^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23074~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~612~^0.183^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~613~^1.653^6^0.164^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~614~^1.091^6^0.109^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~617~^3.222^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23074~^~618~^0.292^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23074~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23074~^~620~^0.034^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~625~^0.034^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~626~^0.218^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~628~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23074~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~645~^3.550^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23074~^~646~^0.340^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23074~^~653~^0.092^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~663~^0.373^6^0.037^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~670~^0.027^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23074~^~674~^2.849^6^0.308^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~675~^0.266^6^0.030^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~687~^0.064^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~693~^0.373^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23074~^~851~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23074~^~859~^0.259^6^0.025^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~312~^0.091^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~405~^0.213^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~406~^5.180^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~410~^0.830^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~415~^0.393^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~501~^0.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~502~^1.267^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~503~^1.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~504~^2.315^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~505~^2.517^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~506~^0.816^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~507~^0.298^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~508~^1.091^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~509~^0.992^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~510~^1.294^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~511~^1.881^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~512~^0.923^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~513~^1.617^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~514~^2.576^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~515~^4.556^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~516~^1.246^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~517~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~518~^1.099^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~521~^0.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~605~^0.622^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~606~^4.895^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~612~^0.305^4^0.053^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~613~^2.638^4^0.466^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~614~^1.777^4^0.294^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~615~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~617~^4.951^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23075~^~618~^0.416^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23075~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23075~^~620~^0.035^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~625~^0.057^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~626~^0.331^4^0.055^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~628~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23075~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~645~^5.461^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~646~^0.478^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~653~^0.157^4^0.023^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~654~^0.008^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~663~^0.622^4^0.104^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~670~^0.039^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~674~^4.329^4^0.770^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~675~^0.377^4^0.070^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~687~^0.100^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~693~^0.622^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23075~^~851~^0.023^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23075~^~859~^0.453^4^0.074^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~312~^0.082^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~315~^0.015^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~405~^0.220^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~406~^5.310^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~410~^0.840^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~415~^0.454^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~502~^1.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~503~^1.221^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~504~^2.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~505~^2.509^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~506~^0.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~507~^0.297^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~508~^1.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~509~^0.989^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~510~^1.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~511~^1.875^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~512~^0.920^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~513~^1.612^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~514~^2.567^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~515~^4.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~516~^1.242^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~517~^1.148^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~518~^1.095^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~521~^0.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~605~^0.710^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23076~^~606~^2.900^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23076~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~612~^0.195^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~613~^1.616^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~614~^1.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~617~^5.530^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23076~^~618~^0.509^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23076~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23076~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~625~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~626~^0.411^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~628~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23076~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~645~^6.130^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23076~^~646~^0.580^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23076~^~653~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~663~^0.710^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~670~^0.055^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23076~^~674~^4.821^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~675~^0.455^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~687~^0.105^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~693~^0.710^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23076~^~851~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23076~^~859~^0.451^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~312~^0.088^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~315~^0.015^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~404~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~405~^0.217^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~406~^5.190^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~410~^0.835^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~415~^0.412^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~502~^1.265^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~503~^1.223^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~504~^2.312^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~505~^2.513^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~506~^0.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~507~^0.297^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~508~^1.089^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~509~^0.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~510~^1.292^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~511~^1.879^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~512~^0.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~513~^1.615^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~514~^2.572^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~515~^4.550^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~516~^1.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~517~^1.150^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~518~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~521~^0.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~605~^0.618^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23077~^~606~^4.830^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23077~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~612~^0.310^6^0.043^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~613~^2.639^6^0.375^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~614~^1.718^6^0.237^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~615~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~617~^4.877^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23077~^~618~^0.421^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23077~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23077~^~620~^0.036^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~625~^0.056^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~626~^0.341^6^0.044^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~628~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23077~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~645~^5.390^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23077~^~646~^0.480^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23077~^~653~^0.147^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~663~^0.618^6^0.084^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~670~^0.042^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~674~^4.259^6^0.620^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~675~^0.379^6^0.056^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~687~^0.096^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23077~^~693~^0.618^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23077~^~851~^0.023^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23077~^~859~^0.452^6^0.059^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~315~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~405~^0.167^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~406~^4.803^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~410~^0.720^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~415~^0.346^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~501~^0.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~502~^0.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~503~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~504~^1.764^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~505~^1.917^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~506~^0.621^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~508~^0.831^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~509~^0.756^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~510~^0.986^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~511~^1.433^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~512~^0.703^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~513~^1.232^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~514~^1.962^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~515~^3.470^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~516~^0.949^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~517~^0.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~518~^0.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~521~^0.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~605~^0.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~606~^3.605^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~612~^0.214^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~613~^1.960^4^0.142^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~614~^1.317^4^0.092^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~617~^3.715^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23078~^~618~^0.308^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23078~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23078~^~620~^0.037^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~625~^0.040^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~626~^0.248^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~628~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23078~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~645~^4.088^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~646~^0.359^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~653~^0.105^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~654~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~663~^0.433^4^0.029^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~670~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~674~^3.282^4^0.265^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~675~^0.281^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~687~^0.070^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~693~^0.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23078~^~851~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23078~^~859~^0.296^4^0.019^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~312~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~315~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~405~^0.170^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~406~^4.870^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~410~^0.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~415~^0.446^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~501~^0.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~502~^0.963^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~503~^0.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~504~^1.761^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~505~^1.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~506~^0.620^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~507~^0.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~508~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~509~^0.754^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~510~^0.984^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~511~^1.431^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~512~^0.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~513~^1.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~514~^1.959^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~515~^3.465^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~516~^0.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~517~^0.876^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~518~^0.836^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~521~^0.107^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~605~^0.386^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~606~^2.759^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~612~^0.171^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~613~^1.491^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~614~^1.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~617~^2.858^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23079~^~618~^0.336^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23079~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23079~^~620~^0.042^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~625~^0.032^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~626~^0.193^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~628~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23079~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~645~^3.143^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~646~^0.392^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~653~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~663~^0.386^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~674~^2.471^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~675~^0.308^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~687~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~693~^0.386^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23079~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23079~^~859~^0.268^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~312~^0.072^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~315~^0.010^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~404~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~405~^0.170^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~406~^4.827^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~410~^0.730^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~415~^0.392^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~501~^0.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~502~^0.964^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~503~^0.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~504~^1.763^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~505~^1.916^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~506~^0.621^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~508~^0.830^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~509~^0.755^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~510~^0.985^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~511~^1.432^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~512~^0.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~513~^1.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~514~^1.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~515~^3.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~516~^0.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~517~^0.876^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~518~^0.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~521~^0.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~605~^0.414^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~606~^3.267^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~612~^0.197^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~613~^1.772^6^0.115^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~614~^1.192^6^0.074^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~617~^3.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23080~^~618~^0.319^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23080~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23080~^~620~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~625~^0.037^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~626~^0.226^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~628~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23080~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~645~^3.710^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~646~^0.372^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~653~^0.096^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~663~^0.414^6^0.023^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~670~^0.027^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~674~^2.958^6^0.214^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~675~^0.292^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~687~^0.064^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~693~^0.414^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23080~^~851~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23080~^~859~^0.285^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~312~^0.140^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~405~^0.282^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~406~^4.923^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~410~^0.830^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~415~^0.512^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~501~^0.359^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~502~^1.418^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~503~^1.371^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~504~^2.593^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~505~^2.818^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~506~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~507~^0.333^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~508~^1.221^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~509~^1.111^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~510~^1.449^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~511~^2.106^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~512~^1.033^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~513~^1.811^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~514~^2.884^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~515~^5.101^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~516~^1.395^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~517~^1.289^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~518~^1.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~521~^0.158^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~606~^2.835^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~612~^0.175^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~613~^1.613^4^0.176^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~614~^0.948^4^0.070^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~617~^3.367^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23081~^~618~^0.378^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23081~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23081~^~620~^0.075^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~625~^0.045^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~626~^0.264^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~629~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23081~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~645~^3.757^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~646~^0.470^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~653~^0.087^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~663~^0.307^4^0.022^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~670~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~674~^3.060^4^0.248^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~675~^0.353^4^0.030^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~687~^0.074^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~693~^0.307^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23081~^~851~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23081~^~859~^0.205^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~312~^0.118^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~315~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~405~^0.265^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~406~^4.405^4^0.201^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~410~^0.810^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~415~^0.590^4^0.042^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~501~^0.364^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~502~^1.436^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~503~^1.388^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~504~^2.625^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~505~^2.853^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~506~^0.925^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~507~^0.338^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~508~^1.236^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~509~^1.124^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~510~^1.467^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~511~^2.132^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~512~^1.046^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~513~^1.833^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~514~^2.919^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~515~^5.164^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~516~^1.412^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~517~^1.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~518~^1.246^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~521~^0.160^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~605~^0.285^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~606~^2.239^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~612~^0.136^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~613~^1.254^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~614~^0.770^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~617~^2.461^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23082~^~618~^0.392^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23082~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23082~^~620~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~625~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~626~^0.187^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~629~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23082~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~645~^2.731^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~646~^0.480^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~653~^0.069^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~663~^0.285^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~670~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~674~^2.176^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~675~^0.390^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~687~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~693~^0.285^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23082~^~851~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23082~^~859~^0.204^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~312~^0.131^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~315~^0.015^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~405~^0.275^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~406~^4.716^6^0.121^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~410~^0.820^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~415~^0.543^6^0.025^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~501~^0.361^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~502~^1.425^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~503~^1.378^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~504~^2.605^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~505~^2.832^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~506~^0.918^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~507~^0.335^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~508~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~509~^1.116^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~510~^1.456^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~511~^2.117^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~512~^1.038^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~513~^1.819^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~514~^2.898^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~515~^5.126^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~516~^1.402^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~517~^1.295^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~518~^1.237^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~605~^0.298^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~606~^2.596^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~612~^0.159^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~613~^1.470^6^0.142^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~614~^0.877^6^0.056^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~617~^3.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23083~^~618~^0.383^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23083~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23083~^~620~^0.075^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~625~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~626~^0.233^6^0.014^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~628~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~629~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23083~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~645~^3.346^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~646~^0.474^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~653~^0.080^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~663~^0.298^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~670~^0.016^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~674~^2.707^6^0.200^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~675~^0.368^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~687~^0.066^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~693~^0.298^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23083~^~851~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23083~^~859~^0.205^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~312~^0.150^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~405~^0.287^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~406~^3.867^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~410~^0.930^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~415~^0.381^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~501~^0.385^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~502~^1.519^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~503~^1.469^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~504~^2.777^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~505~^3.018^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~506~^0.978^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~507~^0.357^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~508~^1.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~509~^1.190^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~510~^1.552^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~511~^2.256^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~512~^1.107^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~513~^1.939^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~514~^3.089^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~515~^5.463^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~516~^1.494^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~517~^1.381^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~518~^1.318^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~521~^0.169^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~605~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~606~^2.708^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~612~^0.144^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~613~^1.502^4^0.105^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~614~^0.966^4^0.067^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~617~^2.976^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23084~^~618~^0.414^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23084~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23084~^~620~^0.090^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~625~^0.031^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~626~^0.204^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~628~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~629~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23084~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~645~^3.275^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~646~^0.522^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~653~^0.080^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~654~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~663~^0.282^4^0.021^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~670~^0.023^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~674~^2.694^4^0.211^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~675~^0.391^4^0.034^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~687~^0.061^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~693~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23084~^~851~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23084~^~859~^0.181^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~312~^0.147^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~315~^0.049^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~405~^0.290^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~406~^3.940^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~410~^0.930^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~415~^0.407^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~501~^0.378^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~502~^1.493^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~503~^1.443^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~504~^2.728^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~505~^2.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~506~^0.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~507~^0.351^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~508~^1.285^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~509~^1.169^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~510~^1.525^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~511~^2.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~512~^1.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~513~^1.905^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~514~^3.035^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~515~^5.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~516~^1.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~517~^1.357^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~518~^1.295^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~521~^0.166^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~605~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~606~^2.238^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~612~^0.121^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~613~^1.244^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~614~^0.785^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~617~^2.449^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23085~^~618~^0.408^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23085~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23085~^~620~^0.069^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~625~^0.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~626~^0.164^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23085~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~645~^2.695^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~646~^0.493^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~653~^0.076^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~663~^0.282^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~670~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~674~^2.167^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~675~^0.386^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~687~^0.057^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~693~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23085~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23085~^~859~^0.200^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~312~^0.150^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~315~^0.026^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~404~^0.085^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~405~^0.287^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~406~^3.880^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~410~^0.930^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~415~^0.390^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~501~^0.382^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~502~^1.508^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~503~^1.459^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~504~^2.757^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~505~^2.997^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~506~^0.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~507~^0.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~508~^1.299^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~509~^1.181^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~510~^1.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~511~^2.240^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~512~^1.099^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~513~^1.926^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~514~^3.067^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~515~^5.425^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~516~^1.484^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~517~^1.371^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~518~^1.309^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~521~^0.168^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~605~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~606~^2.520^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~612~^0.134^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~613~^1.399^6^0.084^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~614~^0.894^6^0.054^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~617~^2.765^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23086~^~618~^0.411^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23086~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23086~^~620~^0.082^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~625~^0.029^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~626~^0.188^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~628~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~629~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23086~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~645~^3.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~646~^0.511^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~653~^0.078^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~654~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~663~^0.282^6^0.017^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~670~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~674~^2.483^6^0.170^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~675~^0.389^6^0.028^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~687~^0.060^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~693~^0.282^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23086~^~851~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23086~^~859~^0.189^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~312~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~405~^0.217^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~406~^3.527^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~410~^0.820^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~415~^0.409^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~501~^0.245^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~502~^0.967^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~503~^0.935^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~504~^1.768^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~505~^1.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~506~^0.623^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~508~^0.833^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~509~^0.757^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~510~^0.988^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~511~^1.436^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~512~^0.705^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~513~^1.235^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~514~^1.966^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~515~^3.478^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~516~^0.951^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~517~^0.879^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~518~^0.839^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~521~^0.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~606~^1.884^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~612~^0.101^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~613~^1.046^4^0.079^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~614~^0.671^4^0.051^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~617~^2.111^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23087~^~618~^0.286^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23087~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23087~^~620~^0.061^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~625~^0.023^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~626~^0.149^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~628~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23087~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~645~^2.328^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~646~^0.348^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~653~^0.055^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~663~^0.183^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~670~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~674~^1.929^4^0.161^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~675~^0.271^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~687~^0.044^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~693~^0.183^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23087~^~851~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23087~^~859~^0.117^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~312~^0.084^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~315~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~405~^0.220^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~406~^3.740^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~410~^0.910^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~415~^0.448^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~501~^0.243^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~502~^0.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~503~^0.929^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~504~^1.756^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~505~^1.909^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~506~^0.619^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~507~^0.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~508~^0.827^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~509~^0.753^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~510~^0.982^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~511~^1.427^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~512~^0.700^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~513~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~514~^1.954^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~515~^3.456^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~516~^0.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~517~^0.873^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~518~^0.834^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~521~^0.107^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~605~^0.164^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23088~^~606~^1.470^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23088~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~612~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~613~^0.834^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~614~^0.500^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~617~^1.544^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23088~^~618~^0.270^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23088~^~619~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23088~^~620~^0.050^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~625~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~626~^0.107^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23088~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~645~^1.700^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23088~^~646~^0.320^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23088~^~653~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~663~^0.164^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~670~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~674~^1.380^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~675~^0.257^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~687~^0.035^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23088~^~693~^0.164^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23088~^~851~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23088~^~859~^0.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~312~^0.088^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~315~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~405~^0.217^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~406~^3.603^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~410~^0.865^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~415~^0.416^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~501~^0.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~502~^0.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~503~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~504~^1.763^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~505~^1.917^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~506~^0.621^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~508~^0.830^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~509~^0.755^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~510~^0.985^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~511~^1.433^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~512~^0.703^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~513~^1.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~514~^1.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~515~^3.469^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~516~^0.949^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~517~^0.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~518~^0.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~521~^0.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~605~^0.185^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~606~^1.700^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23089~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~612~^0.093^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~613~^0.952^6^0.064^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~614~^0.595^6^0.041^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~617~^1.906^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23089~^~618~^0.291^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23089~^~619~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23089~^~620~^0.059^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~625~^0.020^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~626~^0.133^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~628~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23089~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~645~^2.100^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23089~^~646~^0.350^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23089~^~653~^0.051^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~663~^0.178^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~670~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~674~^1.728^6^0.129^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~675~^0.276^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~687~^0.040^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23089~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23089~^~851~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23089~^~859~^0.120^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~312~^0.120^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~315~^0.017^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~404~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~405~^0.250^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~406~^4.117^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~410~^0.710^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~415~^0.511^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~501~^0.372^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~502~^1.467^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~503~^1.419^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~504~^2.682^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~505~^2.916^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~506~^0.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~507~^0.345^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~508~^1.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~509~^1.149^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~510~^1.499^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~511~^2.179^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~512~^1.069^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~513~^1.873^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~514~^2.984^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~515~^5.278^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~516~^1.443^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~517~^1.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~518~^1.273^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~521~^0.164^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~605~^0.366^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~606~^2.800^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23090~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~612~^0.173^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~613~^1.546^6^0.106^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~614~^0.989^6^0.035^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~615~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~617~^3.146^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23090~^~618~^0.366^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23090~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23090~^~620~^0.065^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~625~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~626~^0.238^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~628~^0.011^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~629~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23090~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~645~^3.500^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23090~^~646~^0.450^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23090~^~653~^0.081^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~654~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~663~^0.351^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~670~^0.025^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~674~^2.795^6^0.139^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~675~^0.341^6^0.030^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~687~^0.065^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23090~^~693~^0.366^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23090~^~851~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23090~^~859~^0.260^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~312~^0.116^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~315~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~405~^0.300^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~406~^4.850^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~410~^0.700^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~415~^0.522^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~501~^0.370^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~502~^1.462^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~503~^1.414^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~504~^2.673^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~505~^2.905^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~506~^0.942^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~507~^0.344^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~508~^1.259^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~509~^1.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~510~^1.494^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~511~^2.171^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~512~^1.065^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~513~^1.866^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~514~^2.973^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~515~^5.258^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~516~^1.438^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~517~^1.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~518~^1.268^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~521~^0.163^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~605~^0.310^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~606~^2.514^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~612~^0.157^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~613~^1.406^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~614~^0.871^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~617~^2.843^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23091~^~618~^0.354^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23091~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23091~^~620~^0.060^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~625~^0.036^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~626~^0.220^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~628~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~629~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23091~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~645~^3.164^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~646~^0.432^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~653~^0.072^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~663~^0.310^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~670~^0.023^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~674~^2.534^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~675~^0.330^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~687~^0.059^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~693~^0.310^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23091~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23091~^~859~^0.236^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~312~^0.125^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~315~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~405~^0.227^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~406~^4.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~410~^0.720^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~415~^0.505^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~501~^0.373^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~502~^1.471^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~503~^1.422^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~504~^2.689^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~505~^2.923^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~506~^0.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~507~^0.346^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~508~^1.266^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~509~^1.152^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~510~^1.503^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~511~^2.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~512~^1.072^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~513~^1.878^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~514~^2.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~515~^5.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~516~^1.447^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~517~^1.337^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~518~^1.276^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~521~^0.164^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~605~^0.405^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~23092~^~606~^2.870^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23092~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~612~^0.177^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~613~^1.574^4^0.131^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~614~^1.024^4^0.044^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~615~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~617~^3.147^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23092~^~618~^0.299^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23092~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23092~^~620~^0.055^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~625~^0.039^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~626~^0.236^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~628~^0.013^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23092~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~645~^3.570^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23092~^~646~^0.410^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23092~^~653~^0.084^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~654~^0.010^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~663~^0.405^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~670~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~674~^3.164^4^0.173^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~675~^0.369^4^0.037^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~687~^0.065^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23092~^~693~^0.405^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~ -~23092~^~851~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23092~^~859~^0.276^4^0.020^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~312~^0.088^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~405~^0.170^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~406~^5.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~410~^0.665^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~415~^0.567^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~501~^0.249^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~502~^0.985^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~503~^0.952^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~504~^1.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~505~^1.956^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~506~^0.634^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~507~^0.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~508~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~509~^0.771^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~510~^1.006^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~511~^1.462^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~512~^0.717^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~513~^1.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~514~^2.002^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~515~^3.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~516~^0.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~517~^0.895^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~518~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~521~^0.110^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~605~^0.231^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23093~^~606~^1.860^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23093~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~612~^0.113^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~613~^1.022^6^0.033^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~614~^0.665^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~617~^2.091^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23093~^~618~^0.247^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23093~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23093~^~620~^0.047^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~625~^0.026^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~626~^0.159^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~628~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~629~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23093~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~645~^2.320^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23093~^~646~^0.300^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23093~^~653~^0.053^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~654~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~663~^0.231^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~670~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~674~^1.862^6^0.040^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~675~^0.232^6^0.014^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~687~^0.043^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23093~^~693~^0.231^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23093~^~851~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23093~^~859~^0.164^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~312~^0.093^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~315~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~405~^0.170^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~406~^5.190^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~410~^0.670^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~415~^0.568^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~501~^0.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~502~^0.992^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~503~^0.959^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~504~^1.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~505~^1.970^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~506~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~507~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~508~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~509~^0.777^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~510~^1.013^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~511~^1.473^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~512~^0.722^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~513~^1.266^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~514~^2.016^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~515~^3.566^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~516~^0.975^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~517~^0.901^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~518~^0.860^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~521~^0.111^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~605~^0.213^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~606~^1.748^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~612~^0.106^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~613~^0.959^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~614~^0.627^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~617~^1.951^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23094~^~618~^0.236^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23094~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23094~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~625~^0.023^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~626~^0.146^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~628~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23094~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~645~^2.160^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~646~^0.287^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~653~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~663~^0.213^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~674~^1.738^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~675~^0.221^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~687~^0.039^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~693~^0.213^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~23094~^~851~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23094~^~859~^0.145^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~312~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~405~^0.170^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~406~^4.887^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~410~^0.660^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~415~^0.568^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~501~^0.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~502~^0.980^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~503~^0.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~504~^1.791^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~505~^1.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~506~^0.631^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~508~^0.844^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~509~^0.767^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~510~^1.001^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~511~^1.455^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~512~^0.714^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~513~^1.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~514~^1.993^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~515~^3.525^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~516~^0.964^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~517~^0.891^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~518~^0.850^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~521~^0.109^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~605~^0.250^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23095~^~606~^1.988^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23095~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~612~^0.121^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~613~^1.092^4^0.041^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~614~^0.710^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~617~^2.260^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23095~^~618~^0.255^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23095~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~23095~^~620~^0.048^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~625~^0.028^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~626~^0.173^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~628~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23095~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~645~^2.510^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23095~^~646~^0.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23095~^~653~^0.058^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~654~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~663~^0.250^4^0.018^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~670~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~674~^2.010^4^0.050^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~675~^0.240^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~687~^0.047^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23095~^~693~^0.250^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23095~^~851~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23095~^~859~^0.177^4^0.016^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~312~^0.098^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~315~^0.016^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23096~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~405~^0.252^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~406~^4.020^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~410~^0.782^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~415~^0.325^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23096~^~501~^0.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~502~^1.400^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~503~^1.353^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~504~^2.559^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~505~^2.781^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~506~^0.901^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~507~^0.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~508~^1.205^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~509~^1.096^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~510~^1.430^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~511~^2.079^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~512~^1.020^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~513~^1.787^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~514~^2.846^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~515~^5.034^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~516~^1.377^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~517~^1.272^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~518~^1.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~521~^0.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23096~^~605~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~606~^4.253^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~612~^0.256^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~613~^2.396^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~614~^1.460^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~615~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~617~^4.991^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~618~^0.422^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~620~^0.063^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~625~^0.063^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~626~^0.368^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~628~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~629~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23096~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~645~^5.551^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~646~^0.508^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~653~^0.124^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~654~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~663~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~670~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~672~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~674~^4.564^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~675~^0.388^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~687~^0.101^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~693~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~851~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23096~^~859~^0.290^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~312~^0.107^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~315~^0.015^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23097~^~404~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~405~^0.256^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~406~^3.908^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~410~^0.783^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~415~^0.329^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23097~^~501~^0.367^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~502~^1.449^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~503~^1.401^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~504~^2.649^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~505~^2.880^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~506~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~507~^0.341^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~508~^1.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~509~^1.135^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~510~^1.481^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~511~^2.153^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~512~^1.056^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~513~^1.850^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~514~^2.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~515~^5.213^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~516~^1.426^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~517~^1.317^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~518~^1.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23097~^~521~^0.162^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23097~^~605~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~606~^3.567^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~612~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~613~^2.032^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~614~^1.187^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~615~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~617~^3.818^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~618~^0.442^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~620~^0.064^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~621~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~625~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~626~^0.300^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~628~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~629~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23097~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~645~^4.259^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~646~^0.531^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~653~^0.103^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~654~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~663~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~670~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~672~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~674~^3.390^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~675~^0.410^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~687~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~693~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~851~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23097~^~859~^0.308^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~315~^0.016^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2010~ -~23098~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~405~^0.254^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~406~^3.976^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~410~^0.780^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~415~^0.326^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~ -~23098~^~501~^0.360^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~502~^1.420^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~503~^1.373^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~504~^2.595^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~505~^2.821^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~506~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~507~^0.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~508~^1.222^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~509~^1.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~510~^1.450^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~511~^2.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~512~^1.034^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~513~^1.812^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~514~^2.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~515~^5.105^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~516~^1.396^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~517~^1.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~518~^1.232^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~521~^0.158^0^^~1~^~AR~^^^^^^^^^^~06/01/2010~ -~23098~^~605~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~606~^3.981^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~612~^0.245^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~613~^2.251^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~614~^1.352^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~615~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~617~^4.528^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~618~^0.430^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~620~^0.063^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~625~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~626~^0.341^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~628~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~629~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~ -~23098~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~645~^5.041^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~646~^0.516^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~653~^0.116^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~654~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~663~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~670~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~672~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~674~^4.101^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~675~^0.396^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~687~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~693~^0.427^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~851~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23098~^~859~^0.297^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2010~ -~23099~^~312~^0.086^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~315~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~404~^0.066^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~405~^0.213^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~406~^3.568^6^0.109^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~410~^0.685^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~415~^0.295^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~501~^0.301^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~502~^1.175^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~503~^1.135^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~504~^2.148^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~505~^2.335^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~506~^0.758^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~507~^0.280^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~508~^1.016^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~509~^0.921^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~510~^1.207^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~511~^1.758^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~512~^0.865^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~513~^1.523^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~514~^2.395^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~515~^4.223^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~516~^1.218^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~517~^1.097^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~518~^1.026^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~521~^0.182^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23099~^~605~^1.187^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~606~^8.261^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~612~^0.569^6^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~613~^4.504^6^0.291^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~614~^2.919^6^0.182^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~615~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~617~^8.551^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~618~^0.743^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23099~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~620~^0.060^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~625~^0.119^6^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~626~^0.599^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23099~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~628~^0.051^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~629~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23099~^~631~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~645~^9.478^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~646~^0.857^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23099~^~653~^0.241^6^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~654~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~663~^1.187^6^0.071^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~670~^0.098^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23099~^~672~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~673~^0.599^6^0.042^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~674~^7.364^6^0.518^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~675~^0.645^6^0.048^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~687~^0.157^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~693~^1.187^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23099~^~851~^0.038^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23099~^~859~^0.403^6^0.033^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23100~^~312~^0.090^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~315~^0.090^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~405~^0.323^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~406~^5.799^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~410~^0.595^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~415~^0.558^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~501~^0.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~502~^1.437^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~503~^1.426^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~504~^2.631^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~505~^2.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~506~^0.812^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~507~^0.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~508~^1.218^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~509~^1.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~510~^1.507^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~511~^2.051^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~512~^1.135^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~513~^1.825^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~514~^2.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~515~^4.986^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~516~^1.318^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~517~^1.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~518~^1.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~521~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23100~^~605~^0.517^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~606~^4.200^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~610~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~611~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~612~^0.269^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~613~^2.330^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~614~^1.385^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~615~^0.002^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~617~^4.321^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~618~^0.437^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~620~^0.060^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~625~^0.057^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~626~^0.325^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~628~^0.014^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~629~^0.001^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23100~^~631~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~645~^4.866^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~646~^0.548^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~652~^0.055^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~653~^0.136^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~654~^0.011^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~662~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~663~^0.501^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~665~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~670~^0.030^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~673~^0.316^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~674~^3.820^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~675~^0.400^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~687~^0.098^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23100~^~693~^0.509^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23100~^~697~^0.051^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~851~^0.017^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23100~^~853~^0.018^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~312~^0.086^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~315~^0.086^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~405~^0.328^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~406~^5.478^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~410~^0.680^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~415~^0.517^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~501~^0.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~502~^1.335^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~503~^1.328^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~504~^2.434^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~505~^2.710^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~506~^0.754^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~507~^0.283^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~508~^1.131^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~509~^1.058^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~510~^1.405^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~511~^1.896^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~512~^1.039^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~513~^1.695^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~514~^2.731^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~515~^4.632^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~516~^1.221^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~517~^1.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~518~^1.148^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23101~^~605~^0.666^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~606~^5.606^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~610~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~611~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~612~^0.358^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~613~^3.142^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~614~^1.815^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~615~^0.005^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~617~^5.881^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~618~^0.537^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~620~^0.061^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~625~^0.084^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~626~^0.443^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~628~^0.027^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23101~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~645~^6.622^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~646~^0.658^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~652~^0.077^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~653~^0.179^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~654~^0.012^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~662~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~663~^0.651^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~665~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~670~^0.048^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~673~^0.438^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~674~^5.229^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~675~^0.480^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~687~^0.133^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23101~^~693~^0.657^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23101~^~697~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~851~^0.022^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23101~^~853~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23102~^~312~^0.071^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~315~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~404~^0.079^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~405~^0.167^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~406~^4.032^6^0.160^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~410~^0.679^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~415~^0.397^6^0.017^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~502~^0.844^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~503~^0.815^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~504~^1.542^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~505~^1.676^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~506~^0.545^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~508~^0.730^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~509~^0.661^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~510~^0.866^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~511~^1.262^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~512~^0.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~513~^1.094^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~514~^1.719^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~515~^3.032^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~516~^0.875^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~517~^0.788^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~518~^0.736^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23102~^~605~^0.831^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~606~^5.726^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~612~^0.410^6^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~613~^3.115^6^0.284^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~614~^2.020^6^0.182^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~615~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~617~^5.912^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~618~^0.506^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23102~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~620~^0.044^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~625~^0.084^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~626~^0.432^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23102~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~628~^0.027^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23102~^~631~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~645~^6.568^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~646~^0.576^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23102~^~653~^0.166^6^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~663~^0.831^6^0.073^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~670~^0.062^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23102~^~672~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~673~^0.432^6^0.039^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~674~^5.082^6^0.483^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~675~^0.444^6^0.045^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~687~^0.113^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~693~^0.831^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23102~^~851~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23102~^~859~^0.277^6^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~312~^0.073^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~315~^0.011^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~405~^0.167^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~406~^3.983^4^0.199^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~410~^0.630^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~415~^0.380^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~502~^0.843^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~503~^0.815^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~504~^1.541^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~505~^1.675^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~506~^0.544^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~508~^0.729^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~509~^0.660^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~510~^0.866^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~511~^1.261^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~512~^0.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~513~^1.093^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~514~^1.718^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~515~^3.029^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~516~^0.874^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~517~^0.787^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~518~^0.736^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23103~^~605~^0.846^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~606~^5.896^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~612~^0.424^4^0.046^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~613~^3.216^4^0.353^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~614~^2.071^4^0.226^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~615~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~617~^6.107^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~618~^0.515^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23103~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~620~^0.045^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~625~^0.091^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~626~^0.451^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23103~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~628~^0.031^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23103~^~631~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~645~^6.794^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~646~^0.588^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23103~^~653~^0.169^4^0.019^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~654~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~663~^0.846^4^0.091^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~670~^0.064^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23103~^~672~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~673~^0.451^4^0.048^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~674~^5.261^4^0.600^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~675~^0.451^4^0.056^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~687~^0.115^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~693~^0.846^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23103~^~851~^0.021^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23103~^~859~^0.278^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~312~^0.067^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~315~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~405~^0.167^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~406~^4.106^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~410~^0.728^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~415~^0.421^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~502~^0.845^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~503~^0.816^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~504~^1.544^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~505~^1.679^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~506~^0.545^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~507~^0.202^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~508~^0.731^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~509~^0.662^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~510~^0.868^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~511~^1.264^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~512~^0.622^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~513~^1.095^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~514~^1.722^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~515~^3.036^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~516~^0.876^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~517~^0.789^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~518~^0.737^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23104~^~605~^0.807^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~606~^5.473^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~612~^0.388^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~613~^2.965^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~614~^1.943^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~617~^5.621^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~618~^0.493^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23104~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~620~^0.042^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~625~^0.073^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~626~^0.405^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23104~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~628~^0.021^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23104~^~631~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~645~^6.229^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~646~^0.557^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23104~^~653~^0.163^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~663~^0.807^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~670~^0.060^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23104~^~672~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~673~^0.405^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~674~^4.814^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~675~^0.433^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~687~^0.110^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~693~^0.807^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23104~^~851~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23104~^~859~^0.275^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~312~^0.108^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~315~^0.016^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~404~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~405~^0.243^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~406~^3.591^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~410~^0.909^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~415~^0.413^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~501~^0.295^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~502~^1.152^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~503~^1.113^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~504~^2.106^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~505~^2.289^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~506~^0.743^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~507~^0.275^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~508~^0.996^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~509~^0.903^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~510~^1.183^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~511~^1.723^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~512~^0.848^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~513~^1.493^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~514~^2.348^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~515~^4.140^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~516~^1.194^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~517~^1.076^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~518~^1.005^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~521~^0.179^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23105~^~605~^0.868^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~606~^5.692^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~612~^0.378^6^0.028^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~613~^3.084^6^0.227^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~614~^2.035^6^0.115^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~615~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~617~^6.133^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23105~^~618~^0.673^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23105~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23105~^~620~^0.088^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~625~^0.075^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~626~^0.447^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23105~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~628~^0.026^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23105~^~631~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~645~^6.809^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~646~^0.790^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23105~^~653~^0.176^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~654~^0.015^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~663~^0.868^6^0.072^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~670~^0.057^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23105~^~672~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~673~^0.447^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~674~^5.266^6^0.282^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~675~^0.615^6^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~687~^0.127^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~693~^0.868^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23105~^~851~^0.025^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23105~^~859~^0.564^6^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~312~^0.110^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~315~^0.017^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~404~^0.089^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~405~^0.240^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~406~^3.575^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~410~^0.860^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~415~^0.395^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~501~^0.294^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~502~^1.148^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~503~^1.110^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~504~^2.099^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~505~^2.282^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~506~^0.741^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~507~^0.274^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~508~^0.993^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~509~^0.900^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~510~^1.179^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~511~^1.718^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~512~^0.845^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~513~^1.488^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~514~^2.340^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~515~^4.127^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~516~^1.190^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~517~^1.072^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~518~^1.002^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~521~^0.178^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23106~^~605~^0.882^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~606~^5.963^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~612~^0.395^4^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~613~^3.190^4^0.282^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~614~^2.175^4^0.143^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~615~^0.006^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~617~^6.337^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23106~^~618~^0.685^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23106~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23106~^~620~^0.094^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~625~^0.077^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~626~^0.454^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23106~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~628~^0.025^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23106~^~631~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~645~^7.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~646~^0.806^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23106~^~653~^0.181^4^0.018^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~654~^0.016^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~663~^0.882^4^0.090^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~670~^0.058^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23106~^~672~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~673~^0.454^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~674~^5.455^4^0.350^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~675~^0.627^4^0.044^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~687~^0.128^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~693~^0.882^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23106~^~851~^0.023^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23106~^~859~^0.562^4^0.047^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~312~^0.103^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~315~^0.016^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~404~^0.089^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~405~^0.246^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~406~^3.681^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~410~^0.957^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~415~^0.456^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~501~^0.296^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~502~^1.157^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~503~^1.118^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~504~^2.115^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~505~^2.299^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~506~^0.747^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~507~^0.276^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~508~^1.001^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~509~^0.907^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~510~^1.188^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~511~^1.731^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~512~^0.852^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~513~^1.500^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~514~^2.358^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~515~^4.159^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~516~^1.200^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~517~^1.081^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~518~^1.010^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~521~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23107~^~605~^0.846^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23107~^~606~^5.285^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23107~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~612~^0.352^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~613~^2.926^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~614~^1.824^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~617~^5.828^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23107~^~618~^0.654^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23107~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23107~^~620~^0.079^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~625~^0.072^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~626~^0.436^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23107~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~628~^0.028^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23107~^~631~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~645~^6.491^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23107~^~646~^0.766^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23107~^~653~^0.167^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~654~^0.013^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~663~^0.846^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~670~^0.057^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23107~^~673~^0.436^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~674~^4.983^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~675~^0.597^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~687~^0.127^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~693~^0.846^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23107~^~851~^0.028^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23107~^~859~^0.566^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~312~^0.075^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~405~^0.191^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~406~^3.252^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~410~^0.786^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~415~^0.399^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~501~^0.214^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~502~^0.835^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~503~^0.808^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~504~^1.528^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~505~^1.660^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~506~^0.539^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~507~^0.199^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~508~^0.723^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~509~^0.655^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~510~^0.858^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~511~^1.250^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~512~^0.615^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~513~^1.083^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~514~^1.703^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~515~^3.003^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~516~^0.866^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~517~^0.780^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~518~^0.729^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~521~^0.130^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23108~^~605~^0.730^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~606~^4.831^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~612~^0.319^6^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~613~^2.602^6^0.090^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~614~^1.747^6^0.093^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~615~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~617~^5.093^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23108~^~618~^0.504^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23108~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23108~^~620~^0.052^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~625~^0.066^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~626~^0.359^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23108~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~628~^0.019^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23108~^~631~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~645~^5.643^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~646~^0.579^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23108~^~653~^0.151^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~654~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~663~^0.730^6^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~670~^0.046^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23108~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~673~^0.359^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~674~^4.363^6^0.128^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~675~^0.458^6^0.034^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~687~^0.106^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~693~^0.730^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23108~^~851~^0.022^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23108~^~859~^0.438^6^0.039^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~312~^0.075^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~405~^0.195^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~406~^3.316^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~410~^0.853^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~415~^0.402^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~501~^0.212^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~502~^0.829^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~503~^0.802^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~504~^1.516^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~505~^1.648^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~506~^0.535^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~508~^0.717^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~509~^0.650^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~510~^0.852^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~511~^1.241^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~512~^0.611^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~513~^1.075^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~514~^1.691^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~515~^2.981^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~516~^0.860^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~517~^0.775^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~518~^0.724^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23109~^~605~^0.770^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~606~^5.137^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~612~^0.337^4^0.019^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~613~^2.760^4^0.111^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~614~^1.866^4^0.115^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~615~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~617~^5.449^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23109~^~618~^0.536^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23109~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23109~^~620~^0.056^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~625~^0.069^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~626~^0.385^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23109~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~628~^0.022^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23109~^~631~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~645~^6.040^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~646~^0.617^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23109~^~653~^0.161^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~663~^0.770^4^0.044^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~670~^0.049^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23109~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~673~^0.385^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~674~^4.680^4^0.159^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~675~^0.487^4^0.042^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~687~^0.115^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~693~^0.770^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23109~^~851~^0.024^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23109~^~859~^0.475^4^0.048^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~312~^0.076^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~315~^0.014^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~405~^0.183^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~406~^3.292^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~410~^0.720^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~415~^0.421^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~501~^0.216^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~502~^0.845^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~503~^0.816^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~504~^1.544^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~505~^1.678^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~506~^0.545^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~507~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~508~^0.731^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~509~^0.662^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~510~^0.868^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~511~^1.264^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~512~^0.622^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~513~^1.095^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~514~^1.721^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~515~^3.036^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~516~^0.876^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~517~^0.789^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~518~^0.737^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23110~^~605~^0.669^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~606~^4.370^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~612~^0.293^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~613~^2.365^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~614~^1.568^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~617~^4.558^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23110~^~618~^0.457^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23110~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23110~^~620~^0.046^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~625~^0.061^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~626~^0.320^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23110~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~628~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23110~^~631~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~645~^5.047^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~646~^0.522^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23110~^~653~^0.134^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~663~^0.669^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~670~^0.042^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23110~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~673~^0.320^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~674~^3.889^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~675~^0.414^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~687~^0.093^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~693~^0.669^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23110~^~851~^0.018^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23110~^~859~^0.383^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~312~^0.071^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~315~^0.013^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~405~^0.206^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~406~^4.549^4^0.124^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~410~^0.760^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~415~^0.564^4^0.043^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~501~^0.238^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~502~^0.931^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~503~^0.900^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~504~^1.703^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~505~^1.851^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~506~^0.601^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~507~^0.222^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~508~^0.806^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~509~^0.730^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~510~^0.957^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~511~^1.394^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~512~^0.686^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~513~^1.207^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~514~^1.898^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~515~^3.348^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~516~^0.966^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~517~^0.870^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~518~^0.813^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23111~^~605~^0.247^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~606~^2.124^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~612~^0.136^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~613~^1.178^4^0.101^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~614~^0.742^4^0.053^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~615~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~617~^2.381^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23111~^~618~^0.270^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23111~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23111~^~620~^0.053^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~625~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~626~^0.182^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23111~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~628~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23111~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~645~^2.648^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~646~^0.329^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23111~^~653~^0.060^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~654~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~663~^0.247^4^0.020^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~670~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23111~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~673~^0.182^4^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~674~^2.134^4^0.146^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~675~^0.253^4^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~687~^0.049^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~693~^0.247^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23111~^~851~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23111~^~859~^0.124^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~312~^0.076^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~405~^0.212^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~406~^4.619^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~410~^0.812^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~415~^0.595^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~501~^0.245^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~502~^0.956^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~503~^0.924^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~504~^1.747^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~505~^1.899^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~506~^0.617^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~507~^0.228^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~508~^0.827^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~509~^0.749^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~510~^0.982^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~511~^1.430^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~512~^0.704^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~513~^1.239^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~514~^1.948^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~515~^3.435^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~516~^0.991^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~517~^0.893^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~518~^0.834^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~521~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23112~^~605~^0.269^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23112~^~606~^1.897^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23112~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~612~^0.129^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~613~^1.063^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~614~^0.640^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~617~^2.046^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23112~^~618~^0.274^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23112~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23112~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~625~^0.027^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~626~^0.154^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23112~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~628~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23112~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~645~^2.271^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23112~^~646~^0.320^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23112~^~653~^0.058^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~663~^0.269^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~670~^0.020^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~673~^0.154^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~674~^1.777^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~675~^0.254^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~687~^0.043^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23112~^~693~^0.269^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23112~^~851~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23112~^~859~^0.154^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~312~^0.071^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~315~^0.012^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~404~^0.072^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~405~^0.178^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~406~^4.368^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~410~^0.678^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~415~^0.380^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~501~^0.277^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~502~^1.084^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~503~^1.047^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~504~^1.981^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~505~^2.153^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~506~^0.699^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~507~^0.259^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~508~^0.937^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~509~^0.849^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~510~^1.113^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~511~^1.621^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~512~^0.798^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~513~^1.405^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~514~^2.209^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~515~^3.895^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~516~^1.123^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~517~^1.012^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~518~^0.946^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~521~^0.168^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23113~^~605~^0.888^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~606~^6.354^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~612~^0.420^6^0.032^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~613~^3.417^6^0.252^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~614~^2.312^6^0.171^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~615~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~617~^6.580^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23113~^~618~^0.576^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23113~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23113~^~620~^0.049^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~625~^0.082^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~626~^0.432^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23113~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~628~^0.032^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23113~^~631~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~645~^7.243^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~646~^0.664^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23113~^~653~^0.185^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~654~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~663~^0.888^6^0.070^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~670~^0.071^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23113~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~673~^0.432^6^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~674~^5.692^6^0.439^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~675~^0.504^6^0.039^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~687~^0.117^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~693~^0.888^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23113~^~851~^0.029^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23113~^~859~^0.328^6^0.024^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~315~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~404~^0.076^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~405~^0.182^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~406~^4.303^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~410~^0.693^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~415~^0.374^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~501~^0.276^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~502~^1.077^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~503~^1.041^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~504~^1.969^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~505~^2.140^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~506~^0.695^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~507~^0.257^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~508~^0.931^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~509~^0.844^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~510~^1.106^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~511~^1.611^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~512~^0.793^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~513~^1.396^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~514~^2.195^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~515~^3.871^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~516~^1.116^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~517~^1.006^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~518~^0.940^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~521~^0.167^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23114~^~605~^0.882^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~606~^6.462^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~612~^0.424^4^0.040^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~613~^3.477^4^0.314^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~614~^2.352^4^0.213^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~615~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~617~^6.817^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23114~^~618~^0.500^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23114~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23114~^~620~^0.050^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~625~^0.086^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~626~^0.448^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23114~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~628~^0.037^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23114~^~631~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~645~^7.509^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~646~^0.590^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23114~^~653~^0.188^4^0.016^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~654~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~663~^0.882^4^0.087^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~670~^0.007^4^0.055^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23114~^~672~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~673~^0.448^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~674~^5.935^4^0.545^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~675~^0.493^4^0.049^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~687~^0.122^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~693~^0.882^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23114~^~851~^0.030^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23114~^~859~^0.336^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~312~^0.067^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~315~^0.012^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~404~^0.067^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~405~^0.174^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~406~^4.314^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~410~^0.663^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~415~^0.382^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~501~^0.280^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~502~^1.094^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~503~^1.057^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~504~^1.999^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~505~^2.173^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~506~^0.706^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~508~^0.946^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~509~^0.857^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~510~^1.123^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~511~^1.637^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~512~^0.805^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~513~^1.418^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~514~^2.229^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~515~^3.931^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~516~^1.134^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~517~^1.021^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~518~^0.955^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~521~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23115~^~605~^0.896^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~606~^6.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~612~^0.414^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~613~^3.327^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~614~^2.250^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~615~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~617~^6.224^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23115~^~618~^0.594^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23115~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23115~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~625~^0.076^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~626~^0.408^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23115~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~628~^0.024^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23115~^~631~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~645~^6.843^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~646~^0.679^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23115~^~653~^0.182^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~663~^0.896^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~670~^0.072^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23115~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~673~^0.408^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~674~^5.328^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~675~^0.522^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~687~^0.111^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~693~^0.896^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23115~^~851~^0.028^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23115~^~859~^0.315^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~312~^0.090^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23116~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~405~^0.225^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~406~^3.772^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~410~^0.724^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~415~^0.312^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23116~^~501~^0.318^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~502~^1.242^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~503~^1.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~504~^2.271^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~505~^2.469^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~506~^0.802^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~507~^0.296^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~508~^1.074^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~509~^0.974^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~510~^1.276^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~511~^1.859^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~512~^0.915^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~513~^1.610^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~514~^2.532^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~515~^4.465^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~516~^1.288^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~517~^1.160^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~518~^1.084^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~521~^0.193^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23116~^~605~^1.043^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~606~^7.256^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~612~^0.500^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~613~^3.956^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~614~^2.564^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~615~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~617~^7.511^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~618~^1.220^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~619~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~620~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~625~^0.105^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~626~^0.526^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~628~^0.045^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~629~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23116~^~631~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~645~^8.325^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~646~^1.319^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~653~^0.211^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~654~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~663~^1.043^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~670~^0.653^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~672~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~674~^6.468^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~675~^0.567^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~687~^0.138^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~693~^1.043^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~851~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23116~^~859~^0.354^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~312~^0.086^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23117~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~405~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~406~^3.804^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~410~^0.725^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~415~^0.310^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23117~^~501~^0.311^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~502~^1.215^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~503~^1.174^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~504~^2.220^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~505~^2.414^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~506~^0.784^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~507~^0.290^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~508~^1.051^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~509~^0.952^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~510~^1.248^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~511~^1.817^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~512~^0.894^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~513~^1.574^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~514~^2.476^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~515~^4.366^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~516~^1.259^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~517~^1.134^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~518~^1.060^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~521~^0.189^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23117~^~605~^1.072^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~606~^7.666^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~612~^0.523^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~613~^4.178^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~614~^2.717^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~615~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~617~^8.071^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~618~^1.245^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~619~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~620~^0.054^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~625~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~626~^0.562^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~628~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~629~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23117~^~631~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~645~^8.944^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~646~^1.347^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~653~^0.223^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~654~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~663~^1.072^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~670~^0.667^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~672~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~674~^6.999^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~675~^0.578^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~687~^0.149^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~693~^1.072^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~851~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23117~^~859~^0.361^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~312~^0.095^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~ -~23118~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~405~^0.227^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~406~^3.720^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~410~^0.726^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~415~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23118~^~501~^0.329^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~502~^1.284^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~503~^1.241^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~504~^2.347^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~505~^2.551^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~506~^0.829^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~507~^0.306^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~508~^1.110^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~509~^1.006^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~510~^1.319^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~511~^1.921^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~512~^0.945^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~513~^1.664^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~514~^2.617^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~515~^4.614^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~516~^1.331^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~517~^1.199^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~518~^1.121^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~521~^0.199^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23118~^~605~^0.994^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~606~^6.629^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~612~^0.464^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~613~^3.618^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~614~^2.332^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~615~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~617~^6.671^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~618~^1.175^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~619~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~620~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~625~^0.092^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~626~^0.473^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~628~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~629~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23118~^~631~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~645~^7.397^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~646~^1.271^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~653~^0.193^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~654~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~663~^0.994^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~670~^0.628^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~672~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~674~^5.677^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~675~^0.547^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~687~^0.123^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~693~^0.994^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~851~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23118~^~859~^0.343^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23119~^~312~^0.144^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~315~^0.025^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~404~^0.083^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~405~^0.277^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~406~^3.809^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~410~^0.905^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~415~^0.381^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~501~^0.361^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~502~^1.411^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~503~^1.364^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~504~^2.579^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~505~^2.804^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~506~^0.911^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~507~^0.337^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~508~^1.220^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~509~^1.106^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~510~^1.449^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~511~^2.111^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~512~^1.039^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~513~^1.829^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~514~^2.876^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~515~^5.071^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~516~^1.463^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~517~^1.318^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~518~^1.232^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~521~^0.219^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~605~^0.475^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~606~^3.638^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~612~^0.219^6^0.016^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~613~^1.992^6^0.116^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~614~^1.300^6^0.077^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~617~^3.835^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23119~^~618~^0.939^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23119~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23119~^~620~^0.080^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~625~^0.045^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~626~^0.259^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23119~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~628~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~629~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23119~^~631~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~645~^4.225^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~646~^1.044^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~653~^0.111^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~654~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~663~^0.475^6^0.029^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~670~^0.489^6^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~673~^0.259^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~674~^3.360^6^0.212^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~675~^0.450^6^0.028^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~687~^0.077^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~693~^0.475^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23119~^~851~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23119~^~859~^0.220^6^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~312~^0.144^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~315~^0.015^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~404~^0.088^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~405~^0.276^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~406~^3.787^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~410~^0.904^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~415~^0.372^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~501~^0.363^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~502~^1.417^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~503~^1.370^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~504~^2.591^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~505~^2.816^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~506~^0.915^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~507~^0.338^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~508~^1.226^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~509~^1.111^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~510~^1.455^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~511~^2.120^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~512~^1.043^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~513~^1.837^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~514~^2.888^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~515~^5.093^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~516~^1.469^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~517~^1.323^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~518~^1.237^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~521~^0.220^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23120~^~605~^0.488^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~606~^3.888^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~612~^0.233^4^0.020^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~613~^2.127^4^0.144^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~614~^1.394^4^0.096^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~615~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~617~^4.103^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23120~^~618~^0.497^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23120~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23120~^~620~^0.088^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~625~^0.049^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~626~^0.279^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23120~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~628~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~629~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23120~^~631~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~645~^4.521^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~646~^0.611^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23120~^~653~^0.115^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~654~^0.016^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~663~^0.488^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~670~^0.041^4^0.003^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23120~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~673~^0.279^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~674~^3.616^4^0.264^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~675~^0.456^4^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~687~^0.080^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~693~^0.488^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23120~^~851~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23120~^~859~^0.214^4^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~312~^0.142^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~315~^0.047^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~405~^0.281^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~406~^3.870^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~410~^0.906^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~415~^0.398^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~501~^0.359^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~502~^1.402^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~503~^1.355^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~504~^2.562^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~505~^2.785^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~506~^0.905^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~507~^0.334^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~508~^1.212^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~509~^1.098^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~510~^1.440^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~511~^2.097^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~512~^1.032^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~513~^1.817^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~514~^2.857^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~515~^5.038^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~516~^1.453^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~517~^1.309^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~518~^1.224^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~521~^0.218^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23121~^~605~^0.457^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~606~^3.263^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~612~^0.198^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~613~^1.788^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~614~^1.158^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~617~^3.432^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23121~^~618~^0.478^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23121~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23121~^~620~^0.068^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~625~^0.041^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~626~^0.229^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23121~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~628~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23121~^~631~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~645~^3.782^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~646~^0.569^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23121~^~653~^0.105^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~654~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~663~^0.457^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~670~^0.036^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23121~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~673~^0.229^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~674~^2.975^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~675~^0.442^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~687~^0.073^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~693~^0.457^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23121~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23121~^~859~^0.228^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~312~^0.087^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~315~^0.012^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~405~^0.214^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~406~^3.587^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~410~^0.858^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~415~^0.413^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~501~^0.238^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~502~^0.930^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~503~^0.899^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~504~^1.700^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~505~^1.848^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~506~^0.600^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~507~^0.222^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~508~^0.804^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~509~^0.729^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~510~^0.955^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~511~^1.391^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~512~^0.685^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~513~^1.205^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~514~^1.895^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~515~^3.342^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~516~^0.964^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~517~^0.869^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~518~^0.812^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23122~^~605~^0.229^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~606~^2.059^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23122~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~612~^0.118^6^0.008^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~613~^1.143^6^0.066^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~614~^0.726^6^0.043^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23122~^~617~^2.229^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23122~^~618~^0.315^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23122~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23122~^~620~^0.060^6^0.005^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~625~^0.024^6^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~626~^0.155^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23122~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~628~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23122~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~645~^2.457^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23122~^~646~^0.377^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23122~^~653~^0.061^6^0.003^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~663~^0.229^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~670~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~673~^0.155^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~674~^2.001^6^0.133^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~675~^0.297^6^0.021^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~687~^0.047^6^0.002^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23122~^~693~^0.229^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23122~^~851~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23122~^~859~^0.126^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~312~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~405~^0.215^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~406~^3.513^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~410~^0.814^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~415~^0.407^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~501~^0.239^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~502~^0.932^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~503~^0.901^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~504~^1.705^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~505~^1.853^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~506~^0.602^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~507~^0.222^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~508~^0.807^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~509~^0.731^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~510~^0.958^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~511~^1.395^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~512~^0.687^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~513~^1.209^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~514~^1.901^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~515~^3.352^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~516~^0.967^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~517~^0.871^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~518~^0.814^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23123~^~605~^0.222^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23123~^~606~^2.114^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23123~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~612~^0.119^4^0.010^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~613~^1.167^4^0.082^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~614~^0.756^4^0.053^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~617~^2.336^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23123~^~618~^0.302^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23123~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23123~^~620~^0.061^4^0.007^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~625~^0.026^4^0.002^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~626~^0.164^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23123~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~628~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23123~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~645~^2.576^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23123~^~646~^0.365^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23123~^~653~^0.062^4^0.004^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~663~^0.222^4^0.016^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~670~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~673~^0.164^4^0.010^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~674~^2.114^4^0.165^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~675~^0.284^4^0.026^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~687~^0.048^4^0.003^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23123~^~693~^0.222^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23123~^~851~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23123~^~859~^0.123^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~312~^0.083^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~315~^0.012^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~405~^0.217^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~406~^3.720^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~410~^0.902^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~415~^0.445^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~501~^0.237^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~502~^0.926^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~503~^0.895^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~504~^1.693^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~505~^1.840^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~506~^0.598^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~507~^0.221^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~508~^0.801^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~509~^0.726^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~510~^0.951^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~511~^1.386^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~512~^0.682^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~513~^1.200^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~514~^1.887^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~515~^3.329^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~516~^0.960^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~517~^0.865^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~518~^0.808^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23124~^~605~^0.239^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~606~^1.976^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23124~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~612~^0.116^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~613~^1.108^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~614~^0.681^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~617~^2.069^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23124~^~618~^0.335^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23124~^~619~^0.002^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23124~^~620~^0.059^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~625~^0.021^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~626~^0.142^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23124~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~628~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23124~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~645~^2.279^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23124~^~646~^0.396^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23124~^~653~^0.061^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~663~^0.239^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~670~^0.018^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23124~^~673~^0.142^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~674~^1.831^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~675~^0.317^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~687~^0.045^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~693~^0.239^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23124~^~851~^0.002^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23124~^~859~^0.131^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~312~^0.097^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~315~^0.013^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~405~^0.227^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~406~^3.299^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~410~^0.749^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~415~^0.287^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~501~^0.287^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~502~^1.121^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~503~^1.084^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~504~^2.050^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~505~^2.228^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~506~^0.724^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~508~^0.970^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~509~^0.879^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~510~^1.152^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~511~^1.678^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~512~^0.826^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~513~^1.454^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~514~^2.285^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~515~^4.030^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~516~^1.163^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~517~^1.047^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~518~^0.979^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~521~^0.174^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23125~^~605~^1.431^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23125~^~606~^10.040^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23125~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~612~^0.680^6^0.040^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~613~^5.432^6^0.321^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~614~^3.588^6^0.208^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~615~^0.019^6^0.002^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~617~^10.334^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23125~^~618~^0.866^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23125~^~619~^0.044^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23125~^~620~^0.050^6^0.005^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~625~^0.139^6^0.007^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~626~^0.705^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23125~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~628~^0.059^6^0.003^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23125~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23125~^~631~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~645~^11.436^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23125~^~646~^0.972^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23125~^~653~^0.308^6^0.017^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~654~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~663~^1.431^6^0.068^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~670~^0.106^6^0.005^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~672~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~673~^0.705^6^0.041^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~674~^8.903^6^0.614^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~675~^0.761^6^0.051^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~687~^0.199^6^0.012^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~693~^1.431^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23125~^~851~^0.044^6^0.003^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23125~^~859~^0.580^6^0.044^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~312~^0.096^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~315~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~404~^0.089^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~405~^0.221^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~406~^3.246^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~410~^0.713^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~415~^0.273^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~501~^0.285^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~502~^1.112^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~503~^1.074^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~504~^2.032^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~505~^2.209^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~506~^0.718^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~507~^0.265^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~508~^0.961^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~509~^0.871^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~510~^1.142^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~511~^1.663^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~512~^0.818^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~513~^1.441^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~514~^2.266^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~515~^3.996^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~516~^1.152^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~517~^1.038^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~518~^0.970^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~521~^0.173^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23126~^~605~^1.520^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23126~^~606~^10.638^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23126~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~612~^0.720^4^0.050^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~613~^5.748^4^0.399^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~614~^3.803^4^0.258^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~615~^0.021^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~617~^11.090^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23126~^~618~^0.897^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23126~^~619~^0.045^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23126~^~620~^0.050^4^0.006^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~625~^0.153^4^0.009^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~626~^0.756^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23126~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~628~^0.067^4^0.004^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23126~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23126~^~631~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~645~^12.282^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23126~^~646~^1.005^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23126~^~653~^0.331^4^0.021^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~654~^0.015^4^0.002^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~663~^1.520^4^0.084^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~670~^0.109^4^0.006^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~672~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~673~^0.756^4^0.051^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~674~^9.570^4^0.762^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~675~^0.788^4^0.063^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~687~^0.217^4^0.015^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~693~^1.520^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23126~^~851~^0.045^4^0.004^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23126~^~859~^0.596^4^0.054^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~312~^0.096^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~315~^0.013^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~404~^0.091^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~405~^0.245^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~406~^3.501^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~410~^0.786^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~415~^0.308^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~501~^0.291^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~502~^1.136^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~503~^1.098^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~504~^2.076^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~505~^2.257^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~506~^0.733^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~507~^0.271^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~508~^0.982^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~509~^0.890^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~510~^1.167^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~511~^1.699^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~512~^0.836^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~513~^1.472^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~514~^2.315^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~515~^4.082^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~516~^1.178^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~517~^1.061^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~518~^0.991^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~521~^0.176^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23127~^~605~^1.297^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~606~^9.144^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23127~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~612~^0.621^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~613~^4.957^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~614~^3.266^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~615~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~617~^9.200^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23127~^~618~^0.819^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23127~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23127~^~620~^0.048^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~625~^0.118^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~626~^0.630^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23127~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~628~^0.047^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23127~^~631~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~645~^10.166^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23127~^~646~^0.922^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23127~^~653~^0.272^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~663~^1.297^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~670~^0.100^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~672~^0.007^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~673~^0.630^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~674~^7.903^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~675~^0.720^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~687~^0.172^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23127~^~693~^1.297^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23127~^~851~^0.043^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23127~^~859~^0.557^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~312~^0.070^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~315~^0.011^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~404~^0.078^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~405~^0.168^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~406~^3.293^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~410~^0.649^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~415~^0.296^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~501~^0.197^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~502~^0.769^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~503~^0.743^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~504~^1.406^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~505~^1.528^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~506~^0.496^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~507~^0.183^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~508~^0.665^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~509~^0.603^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~510~^0.790^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~511~^1.151^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~512~^0.566^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~513~^0.997^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~514~^1.568^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~515~^2.765^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~516~^0.797^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~517~^0.718^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~518~^0.671^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~521~^0.119^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23128~^~605~^1.207^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~606~^7.979^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~612~^0.555^6^0.040^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~613~^4.266^6^0.296^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~614~^2.893^6^0.205^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~615~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~617~^8.331^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23128~^~618~^0.641^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23128~^~619~^0.035^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23128~^~620~^0.041^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~625~^0.110^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~626~^0.561^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23128~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~628~^0.044^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23128~^~631~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~645~^9.206^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~646~^0.726^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23128~^~653~^0.245^6^0.016^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~663~^1.207^6^0.090^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~670~^0.081^6^0.006^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23128~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~673~^0.561^6^0.036^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~674~^7.123^6^0.507^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~675~^0.560^6^0.040^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~687~^0.160^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~693~^1.207^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23128~^~851~^0.035^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23128~^~859~^0.464^6^0.028^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~312~^0.069^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~315~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~404~^0.078^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~405~^0.168^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~406~^3.323^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~410~^0.659^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~415~^0.296^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~501~^0.194^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~502~^0.758^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~503~^0.732^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~504~^1.385^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~505~^1.505^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~506~^0.489^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~507~^0.181^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~508~^0.655^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~509~^0.594^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~510~^0.778^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~511~^1.134^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~512~^0.558^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~513~^0.982^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~514~^1.544^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~515~^2.723^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~516~^0.785^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~517~^0.708^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~518~^0.661^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~521~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23129~^~605~^1.118^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~606~^8.141^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~612~^0.564^4^0.050^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~613~^4.388^4^0.368^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~614~^2.924^4^0.255^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~615~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~617~^8.615^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23129~^~618~^0.635^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23129~^~619~^0.037^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23129~^~620~^0.043^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~625~^0.116^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~626~^0.588^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23129~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~628~^0.051^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23129~^~631~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~645~^9.532^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~646~^0.723^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23129~^~653~^0.240^4^0.020^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~663~^1.118^4^0.112^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~670~^0.080^4^0.008^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23129~^~672~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~673~^0.588^4^0.045^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~674~^7.497^4^0.630^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~675~^0.555^4^0.050^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~687~^0.162^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~693~^1.118^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23129~^~851~^0.037^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23129~^~859~^0.391^4^0.035^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~312~^0.072^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~315~^0.010^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~404~^0.078^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~405~^0.167^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~406~^3.318^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~410~^0.640^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~415~^0.306^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~501~^0.201^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~502~^0.786^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~503~^0.760^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~504~^1.438^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~505~^1.563^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~506~^0.508^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~507~^0.188^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~508~^0.680^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~509~^0.616^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~510~^0.808^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~511~^1.177^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~512~^0.579^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~513~^1.019^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~514~^1.603^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~515~^2.827^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~516~^0.815^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~517~^0.734^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~518~^0.686^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~521~^0.122^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2015~ -~23130~^~605~^1.341^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~606~^7.738^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23130~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~612~^0.543^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~613~^4.083^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~614~^2.846^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~615~^0.008^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~617~^7.904^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23130~^~618~^0.650^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23130~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23130~^~620~^0.038^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~625~^0.102^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~626~^0.521^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~ -~23130~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~628~^0.033^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23130~^~631~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~645~^8.716^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23130~^~646~^0.729^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~ -~23130~^~653~^0.251^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~663~^1.341^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~670~^0.082^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23130~^~673~^0.521^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~674~^6.563^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~675~^0.568^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~687~^0.156^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~693~^1.341^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23130~^~851~^0.033^2^^~1~^~AR~^^^^^^^^^^~09/01/2015~ -~23130~^~859~^0.575^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~312~^0.129^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~315~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~404~^0.079^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~405~^0.271^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~406~^4.662^6^0.117^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~410~^0.810^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~415~^0.535^6^0.024^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~501~^0.350^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~502~^1.365^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~503~^1.320^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~504~^2.496^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~505~^2.713^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~506~^0.881^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~507~^0.326^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~508~^1.181^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~509~^1.070^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~510~^1.402^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~511~^2.043^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~512~^1.005^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~513~^1.770^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~514~^2.783^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~515~^4.907^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~516~^1.416^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~517~^1.275^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~518~^1.192^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~521~^0.212^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23131~^~605~^0.387^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~606~^3.112^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~612~^0.198^6^0.012^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~613~^1.742^6^0.143^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~614~^1.065^6^0.059^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~617~^3.495^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23131~^~618~^0.420^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23131~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23131~^~620~^0.074^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~625~^0.047^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~626~^0.264^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23131~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~628~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~629~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23131~^~631~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~645~^3.887^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~646~^0.513^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23131~^~653~^0.095^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~663~^0.387^6^0.020^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~670~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23131~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~673~^0.264^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~674~^3.108^6^0.200^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~675~^0.396^6^0.024^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~687~^0.074^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~693~^0.387^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23131~^~851~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23131~^~859~^0.219^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~312~^0.138^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~315~^0.015^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~405~^0.278^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~406~^4.873^4^0.146^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~410~^0.821^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~415~^0.506^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~501~^0.348^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~502~^1.361^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~503~^1.315^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~504~^2.488^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~505~^2.705^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~506~^0.879^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~507~^0.325^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~508~^1.177^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~509~^1.067^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~510~^1.398^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~511~^2.037^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~512~^1.002^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~513~^1.764^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~514~^2.774^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~515~^4.892^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~516~^1.411^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~517~^1.271^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~518~^1.188^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~521~^0.211^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23132~^~605~^0.382^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~606~^3.264^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~612~^0.207^4^0.015^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~613~^1.840^4^0.177^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~614~^1.105^4^0.073^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~615~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~617~^3.772^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23132~^~618~^0.409^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23132~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23132~^~620~^0.074^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~625~^0.051^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~626~^0.289^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23132~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~628~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~629~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23132~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~645~^4.203^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~646~^0.502^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23132~^~653~^0.099^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~663~^0.382^4^0.025^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~670~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23132~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~673~^0.289^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~674~^3.391^4^0.248^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~675~^0.377^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~687~^0.081^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~693~^0.382^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23132~^~851~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23132~^~859~^0.217^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~312~^0.116^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~405~^0.260^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~406~^4.347^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~410~^0.798^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~415~^0.578^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~501~^0.351^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~502~^1.372^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~503~^1.326^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~504~^2.508^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~505~^2.726^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~506~^0.885^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~507~^0.327^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~508~^1.186^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~509~^1.075^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~510~^1.409^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~511~^2.053^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~512~^1.010^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~513~^1.778^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~514~^2.796^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~515~^4.931^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~516~^1.422^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~517~^1.281^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~518~^1.197^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~521~^0.213^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23133~^~605~^0.394^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~606~^2.884^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~612~^0.184^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~613~^1.596^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~614~^1.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~617~^3.079^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23133~^~618~^0.437^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23133~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23133~^~620~^0.074^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~625~^0.040^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~626~^0.227^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23133~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~628~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~629~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23133~^~631~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~645~^3.414^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23133~^~653~^0.087^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~663~^0.394^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~670~^0.012^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23133~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~673~^0.227^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~674~^2.685^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~675~^0.425^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~687~^0.064^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~693~^0.394^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23133~^~851~^0.010^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23133~^~859~^0.221^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23134~^~312~^0.093^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~315~^0.014^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~404~^0.066^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~405~^0.209^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~406~^3.804^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~410~^0.644^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~415~^0.272^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~501~^0.312^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~502~^1.218^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~503~^1.177^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~504~^2.227^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~505~^2.421^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~506~^0.786^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~507~^0.291^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~508~^1.054^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~509~^0.955^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~510~^1.251^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~511~^1.823^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~512~^0.897^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~513~^1.579^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~514~^2.483^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~515~^4.378^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~516~^1.263^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~517~^1.138^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~518~^1.063^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~521~^0.189^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23134~^~605~^1.316^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~606~^9.009^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~612~^0.614^6^0.052^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~613~^4.873^6^0.407^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~614~^3.226^6^0.271^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~615~^0.017^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~617~^9.038^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23134~^~618~^0.786^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23134~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23134~^~620~^0.045^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~625~^0.118^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~626~^0.624^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23134~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~628~^0.048^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23134~^~631~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~645~^9.997^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~646~^0.884^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23134~^~653~^0.268^6^0.021^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~663~^1.316^6^0.101^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~670~^0.104^6^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23134~^~672~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~673~^0.624^6^0.051^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~674~^7.722^6^0.700^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~675~^0.682^6^0.063^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~687~^0.169^6^0.014^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~693~^1.316^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23134~^~851~^0.043^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23134~^~859~^0.529^6^0.051^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~312~^0.097^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~315~^0.014^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~405~^0.208^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~406~^3.791^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~410~^0.669^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~415~^0.269^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~501~^0.306^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~502~^1.195^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~503~^1.155^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~504~^2.185^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~505~^2.375^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~506~^0.771^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~507~^0.285^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~508~^1.034^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~509~^0.937^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~510~^1.228^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~511~^1.788^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~512~^0.880^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~513~^1.549^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~514~^2.436^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~515~^4.296^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~516~^1.239^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~517~^1.116^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~518~^1.043^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~521~^0.186^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23135~^~605~^1.333^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~606~^9.268^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~612~^0.623^4^0.065^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~613~^4.994^4^0.506^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~614~^3.346^4^0.336^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~615~^0.019^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~617~^9.367^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23135~^~618~^0.781^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23135~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23135~^~620~^0.045^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~625~^0.123^4^0.013^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~626~^0.642^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23135~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~628~^0.054^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23135~^~631~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~645~^10.359^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~646~^0.880^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23135~^~653~^0.275^4^0.026^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~654~^0.012^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~663~^1.333^4^0.125^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~670~^0.107^4^0.009^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23135~^~672~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~673~^0.642^4^0.063^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~674~^8.034^4^0.869^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~675~^0.674^4^0.079^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~687~^0.173^4^0.017^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~693~^1.333^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23135~^~851~^0.043^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23135~^~859~^0.519^4^0.063^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~312~^0.083^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~315~^0.014^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~405~^0.211^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~406~^3.886^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~410~^0.619^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~415~^0.278^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~501~^0.321^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~502~^1.253^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~503~^1.211^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~504~^2.290^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~505~^2.489^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~506~^0.809^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~507~^0.299^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~508~^1.083^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~509~^0.982^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~510~^1.287^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~511~^1.874^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~512~^0.922^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~513~^1.624^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~514~^2.553^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~515~^4.502^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~516~^1.299^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~517~^1.170^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~518~^1.093^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~521~^0.195^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23136~^~605~^1.291^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23136~^~606~^8.621^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23136~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~612~^0.601^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~613~^4.691^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~614~^3.045^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~615~^0.013^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~617~^8.544^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23136~^~618~^0.793^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23136~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23136~^~620~^0.046^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~625~^0.110^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~626~^0.598^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23136~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~628~^0.039^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23136~^~631~^0.004^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~645~^9.454^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23136~^~646~^0.891^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23136~^~653~^0.259^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~663~^1.291^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~670~^0.099^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23136~^~673~^0.598^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~674~^7.254^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~675~^0.694^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~687~^0.162^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~693~^1.291^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23136~^~851~^0.043^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23136~^~859~^0.545^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~312~^0.083^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~315~^0.012^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~404~^0.070^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~405~^0.162^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~406~^3.875^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~410~^0.646^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~415~^0.338^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~501~^0.214^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~502~^0.834^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~503~^0.806^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~504~^1.526^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~505~^1.658^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~506~^0.539^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~507~^0.199^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~508~^0.722^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~509~^0.654^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~510~^0.857^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~511~^1.249^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~512~^0.614^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~513~^1.082^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~514~^1.701^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~515~^2.999^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~516~^0.865^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~517~^0.779^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~518~^0.728^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~521~^0.130^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23137~^~605~^0.909^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~606~^6.154^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~612~^0.425^6^0.039^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~613~^3.288^6^0.291^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~614~^2.243^6^0.200^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~615~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~617~^6.304^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23137~^~618~^0.532^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23137~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23137~^~620~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~625~^0.080^6^0.008^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~626~^0.424^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23137~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~628~^0.033^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23137~^~631~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~645~^6.957^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~646~^0.605^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23137~^~653~^0.181^6^0.015^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~663~^0.909^6^0.082^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~670~^0.068^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23137~^~672~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~673~^0.424^6^0.036^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~674~^5.395^6^0.496^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~675~^0.464^6^0.042^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~687~^0.115^6^0.010^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~693~^0.909^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23137~^~851~^0.030^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23137~^~859~^0.317^6^0.026^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~312~^0.083^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~315~^0.012^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~405~^0.166^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~406~^3.821^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~410~^0.620^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~415~^0.337^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~501~^0.213^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~502~^0.830^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~503~^0.803^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~504~^1.518^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~505~^1.650^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~506~^0.536^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~508~^0.718^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~509~^0.651^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~510~^0.853^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~511~^1.243^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~512~^0.612^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~513~^1.077^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~514~^1.693^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~515~^2.985^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~516~^0.861^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~517~^0.776^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~518~^0.725^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23138~^~605~^0.906^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~606~^6.387^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~612~^0.435^4^0.048^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~613~^3.411^4^0.361^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~614~^2.339^4^0.249^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~615~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~617~^6.590^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23138~^~618~^0.538^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23138~^~619~^0.031^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23138~^~620~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~625~^0.083^4^0.010^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~626~^0.446^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23138~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~628~^0.037^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23138~^~631~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~645~^7.274^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~646~^0.614^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23138~^~653~^0.183^4^0.019^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~663~^0.906^4^0.102^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~670~^0.066^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23138~^~672~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~673~^0.446^4^0.044^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~674~^5.684^4^0.616^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~675~^0.471^4^0.052^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~687~^0.118^4^0.012^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~693~^0.906^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23138~^~851~^0.031^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23138~^~859~^0.313^4^0.032^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~312~^0.084^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~315~^0.012^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~405~^0.157^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~406~^3.950^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~410~^0.672^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~415~^0.338^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~501~^0.215^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~502~^0.840^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~503~^0.812^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~504~^1.536^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~505~^1.670^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~506~^0.542^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~507~^0.200^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~508~^0.727^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~509~^0.659^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~510~^0.863^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~511~^1.258^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~512~^0.619^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~513~^1.089^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~514~^1.713^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~515~^3.021^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~516~^0.871^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~517~^0.785^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~518~^0.734^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~521~^0.131^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23139~^~605~^0.915^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~606~^5.805^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~612~^0.410^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~613~^3.104^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~614~^2.100^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~617~^5.877^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23139~^~618~^0.525^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23139~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23139~^~620~^0.032^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~625~^0.077^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~626~^0.391^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23139~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~628~^0.027^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23139~^~631~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~645~^6.482^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~646~^0.591^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23139~^~653~^0.178^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~663~^0.915^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~670~^0.071^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23139~^~672~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~673~^0.391^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~674~^4.962^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~675~^0.454^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~687~^0.111^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~693~^0.915^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23139~^~851~^0.028^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23139~^~859~^0.324^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~312~^0.077^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~315~^0.012^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~404~^0.066^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~405~^0.191^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~406~^4.663^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~410~^0.752^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~415~^0.373^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~501~^0.281^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~502~^1.099^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~503~^1.062^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~504~^2.009^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~505~^2.184^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~506~^0.709^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~507~^0.262^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~508~^0.951^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~509~^0.861^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~510~^1.129^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~511~^1.645^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~512~^0.809^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~513~^1.425^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~514~^2.240^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~515~^3.951^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~516~^1.140^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~517~^1.027^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~518~^0.959^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~521~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23140~^~605~^1.287^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~606~^8.660^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~612~^0.600^6^0.042^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~613~^4.667^6^0.357^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~614~^3.110^6^0.227^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~615~^0.016^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~617~^8.558^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23140~^~618~^0.719^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23140~^~619~^0.041^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23140~^~620~^0.039^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~625~^0.114^6^0.007^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~626~^0.581^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23140~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~628~^0.047^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23140~^~631~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~645~^9.457^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~646~^0.810^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23140~^~653~^0.258^6^0.018^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~663~^1.287^6^0.085^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~670~^0.100^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23140~^~672~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~673~^0.581^6^0.042^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~674~^7.272^6^0.579^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~675~^0.619^6^0.052^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~687~^0.156^6^0.012^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~693~^1.287^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23140~^~851~^0.041^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23140~^~859~^0.519^6^0.050^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~312~^0.079^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~315~^0.012^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~405~^0.188^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~406~^4.649^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~410~^0.746^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~415~^0.357^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~501~^0.281^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~502~^1.098^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~503~^1.061^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~504~^2.007^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~505~^2.181^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~506~^0.709^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~507~^0.262^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~508~^0.949^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~509~^0.860^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~510~^1.127^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~511~^1.642^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~512~^0.808^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~513~^1.423^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~514~^2.237^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~515~^3.945^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~516~^1.138^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~517~^1.025^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~518~^0.958^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~521~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23141~^~605~^1.289^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~606~^8.677^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~612~^0.593^4^0.053^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~613~^4.646^4^0.443^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~614~^3.146^4^0.282^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~615~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~617~^8.587^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23141~^~618~^0.708^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23141~^~619~^0.041^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23141~^~620~^0.037^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~625~^0.115^4^0.009^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~626~^0.571^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23141~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~628~^0.048^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23141~^~631~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~645~^9.479^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~646~^0.799^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23141~^~653~^0.264^4^0.022^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~663~^1.289^4^0.106^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~670~^0.097^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23141~^~672~^0.007^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~673~^0.571^4^0.052^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~674~^7.299^4^0.719^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~675~^0.610^4^0.064^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~687~^0.158^4^0.014^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~693~^1.289^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23141~^~851~^0.041^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23141~^~859~^0.521^4^0.062^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~312~^0.072^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~315~^0.012^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~405~^0.194^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~406~^4.773^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~410~^0.758^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~415~^0.408^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~501~^0.282^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~502~^1.101^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~503~^1.064^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~504~^2.013^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~505~^2.188^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~506~^0.711^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~507~^0.263^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~508~^0.952^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~509~^0.863^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~510~^1.131^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~511~^1.648^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~512~^0.811^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~513~^1.428^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~514~^2.244^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~515~^3.958^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~516~^1.142^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~517~^1.029^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~518~^0.961^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~521~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23142~^~605~^1.284^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23142~^~606~^8.633^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23142~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~612~^0.609^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~613~^4.698^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~614~^3.056^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~615~^0.014^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~617~^8.515^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23142~^~618~^0.735^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23142~^~619~^0.041^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23142~^~620~^0.041^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~625~^0.113^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~626~^0.597^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23142~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~628~^0.045^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23142~^~631~^0.004^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23142~^~645~^9.422^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23142~^~646~^0.827^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23142~^~653~^0.248^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~663~^1.284^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~670~^0.104^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~673~^0.597^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~674~^7.231^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~675~^0.631^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~687~^0.153^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~693~^1.284^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23142~^~851~^0.041^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23142~^~859~^0.516^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~312~^0.064^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~315~^0.009^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~404~^0.074^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~405~^0.144^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~406~^4.351^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~410~^0.649^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~415~^0.362^3^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~501~^0.212^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~502~^0.830^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~503~^0.802^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~504~^1.517^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~505~^1.649^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~506~^0.536^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~508~^0.718^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~509~^0.650^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~510~^0.852^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~511~^1.242^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~512~^0.611^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~513~^1.076^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~514~^1.691^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~515~^2.983^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~516~^0.860^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~517~^0.775^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~518~^0.724^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23143~^~605~^1.052^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~606~^6.963^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~612~^0.486^6^0.025^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~613~^3.705^6^0.196^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~614~^2.553^6^0.133^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~615~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~617~^7.016^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23143~^~618~^0.587^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23143~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23143~^~620~^0.038^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~625~^0.092^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~626~^0.469^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23143~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~628~^0.037^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23143~^~631~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~645~^7.739^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~646~^0.666^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23143~^~653~^0.202^6^0.010^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~663~^1.052^6^0.053^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~670~^0.076^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23143~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~673~^0.469^6^0.023^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~674~^5.965^6^0.333^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~675~^0.511^6^0.027^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~687~^0.124^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~693~^1.052^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23143~^~851~^0.033^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23143~^~859~^0.352^6^0.017^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~312~^0.065^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~315~^0.008^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~405~^0.141^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~406~^4.340^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~410~^0.642^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~415~^0.326^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~501~^0.212^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~502~^0.830^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~503~^0.802^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~504~^1.517^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~505~^1.649^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~506~^0.536^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~508~^0.718^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~509~^0.650^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~510~^0.852^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~511~^1.242^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~512~^0.611^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~513~^1.076^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~514~^1.691^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~515~^2.983^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~516~^0.860^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~517~^0.775^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~518~^0.724^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23144~^~605~^1.056^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~606~^7.176^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~612~^0.495^4^0.031^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~613~^3.825^4^0.243^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~614~^2.632^4^0.165^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~615~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~617~^7.233^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23144~^~618~^0.573^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23144~^~619~^0.032^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23144~^~620~^0.036^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~625~^0.094^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~626~^0.483^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23144~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~628~^0.040^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~629~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23144~^~631~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~645~^7.978^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~646~^0.650^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23144~^~653~^0.208^4^0.012^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~654~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~663~^1.056^4^0.066^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~670~^0.075^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23144~^~672~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~673~^0.483^4^0.029^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~674~^6.177^4^0.414^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~675~^0.499^4^0.034^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~687~^0.129^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~693~^1.056^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23144~^~851~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23144~^~859~^0.360^4^0.021^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~312~^0.062^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~315~^0.009^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~404~^0.078^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~405~^0.143^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~406~^4.377^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~410~^0.656^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~415~^0.405^1^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~501~^0.212^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~502~^0.830^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~503~^0.802^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~504~^1.517^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~505~^1.649^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~506~^0.536^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~508~^0.718^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~509~^0.650^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~510~^0.853^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~511~^1.242^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~512~^0.611^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~513~^1.076^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~514~^1.692^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~515~^2.983^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~516~^0.861^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~517~^0.775^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~518~^0.725^0^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2015~ -~23145~^~605~^1.045^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~606~^6.644^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~612~^0.472^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~613~^3.526^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~614~^2.436^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~615~^0.010^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~617~^6.692^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23145~^~618~^0.608^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23145~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23145~^~620~^0.040^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~625~^0.089^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~626~^0.448^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~ -~23145~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~628~^0.034^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~ -~23145~^~631~^0.004^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~645~^7.381^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~646~^0.689^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23145~^~653~^0.193^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~663~^1.045^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~670~^0.078^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23145~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~673~^0.448^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~674~^5.647^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~675~^0.530^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~687~^0.118^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~693~^1.045^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23145~^~851~^0.033^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23145~^~859~^0.340^2^^~1~^~AR~^^^^^^^^^^~08/01/2010~ -~23146~^~312~^0.085^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~315~^0.085^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~404~^0.095^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~405~^0.329^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~406~^5.561^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~410~^0.685^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~415~^0.544^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~501~^0.332^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~502~^1.393^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~503~^1.382^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~504~^2.550^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~505~^2.850^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~506~^0.787^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~507~^0.298^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~508~^1.181^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~509~^1.107^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~510~^1.461^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~511~^1.988^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~512~^1.100^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~513~^1.770^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~514~^2.863^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~515~^4.834^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~516~^1.277^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~517~^1.245^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~518~^1.203^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23146~^~605~^0.639^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~606~^5.258^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~610~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~611~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~612~^0.345^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~613~^2.944^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~614~^1.714^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~615~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~617~^5.391^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~618~^0.507^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~620~^0.058^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~625~^0.081^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~626~^0.421^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~628~^0.024^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~629~^0.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23146~^~631~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~645~^6.085^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~646~^0.619^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~652~^0.066^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~653~^0.156^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~654~^0.011^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~662~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~663~^0.619^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~665~^0.008^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~670~^0.046^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~672~^0.001^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~673~^0.410^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~674~^4.772^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~675~^0.452^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~687~^0.114^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23146~^~693~^0.631^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23146~^~697~^0.054^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~851~^0.020^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23146~^~853~^0.018^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~312~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~315~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~405~^0.330^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~406~^5.685^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~410~^0.690^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~415~^0.584^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~501~^0.352^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~502~^1.505^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~503~^1.491^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~504~^2.779^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~505~^3.118^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~506~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~507~^0.325^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~508~^1.274^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~509~^1.207^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~510~^1.573^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~511~^2.169^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~512~^1.220^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~513~^1.911^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~514~^3.118^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~515~^5.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~516~^1.383^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~517~^1.369^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~518~^1.315^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~521~^0.136^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23147~^~605~^0.597^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~606~^4.736^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~611~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~612~^0.325^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~613~^2.647^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~614~^1.563^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~615~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~617~^4.657^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~618~^0.461^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~620~^0.053^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~625~^0.077^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~626~^0.388^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~628~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23147~^~631~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~645~^5.281^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~646~^0.562^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~652~^0.049^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~653~^0.122^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~662~^0.020^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~663~^0.572^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~665~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~670~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~672~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~673~^0.369^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~674~^4.085^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~675~^0.411^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~687~^0.086^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23147~^~693~^0.592^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23147~^~697~^0.052^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23147~^~853~^0.015^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~312~^0.087^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~315~^0.087^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~405~^0.335^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~406~^5.545^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~410~^0.590^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~415~^0.514^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~501~^0.323^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~502~^1.341^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~503~^1.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~504~^2.445^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~505~^2.722^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~506~^0.758^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~508~^1.136^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~509~^1.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~510~^1.412^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~511~^1.904^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~512~^1.044^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~513~^1.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~514~^2.744^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~515~^4.652^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~516~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~517~^1.190^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~518~^1.153^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~521~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23148~^~605~^0.572^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~606~^4.645^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~612~^0.295^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~613~^2.571^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~614~^1.538^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~615~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~617~^4.837^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~618~^0.449^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~620~^0.056^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~625~^0.062^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~626~^0.359^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~628~^0.015^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23148~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~645~^5.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~646~^0.554^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~652~^0.061^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~653~^0.154^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~662~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~663~^0.552^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~665~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~670~^0.032^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~673~^0.347^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~674~^4.285^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~675~^0.411^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~687~^0.112^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23148~^~693~^0.565^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23148~^~697~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~851~^0.017^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23148~^~853~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~312~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~315~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~405~^0.305^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~406~^6.180^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~410~^0.600^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~415~^0.623^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~501~^0.378^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~502~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~503~^1.599^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~504~^2.979^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~505~^3.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~506~^0.916^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~507~^0.349^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~508~^1.366^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~509~^1.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~510~^1.686^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~511~^2.325^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~512~^1.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~513~^2.049^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~514~^3.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~515~^5.610^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~516~^1.482^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~517~^1.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~518~^1.410^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~521~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23149~^~605~^0.434^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~606~^3.534^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~611~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~612~^0.229^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~613~^1.969^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~614~^1.156^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~617~^3.546^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~618~^0.419^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~620~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~625~^0.050^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~626~^0.273^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23149~^~631~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~645~^4.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~646~^0.539^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~652~^0.048^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~653~^0.109^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~662~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~663~^0.424^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~665~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~673~^0.271^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~674~^3.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~675~^0.383^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~687~^0.079^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23149~^~693~^0.426^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23149~^~697~^0.055^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23149~^~853~^0.020^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~312~^0.073^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~315~^0.073^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~404~^0.100^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~405~^0.269^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~406~^5.080^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~410~^0.540^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~415~^0.488^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~501~^0.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~502~^1.090^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~503~^1.082^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~504~^1.996^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~505~^2.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~506~^0.616^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~507~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~508~^0.924^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~509~^0.866^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~510~^1.143^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~511~^1.556^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~512~^0.861^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~513~^1.385^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~514~^2.240^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~515~^3.782^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~516~^0.999^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~517~^0.974^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~518~^0.941^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~521~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23150~^~605~^0.447^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~606~^3.544^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~610~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~611~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~612~^0.235^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~613~^1.984^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~614~^1.159^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~615~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~617~^3.656^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~618~^0.358^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~620~^0.046^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~625~^0.051^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~626~^0.292^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~628~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~629~^0.001^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23150~^~631~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~645~^4.130^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~646~^0.436^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~652~^0.041^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~653~^0.105^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~654~^0.009^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~662~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~663~^0.429^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~665~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~670~^0.028^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~673~^0.280^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~674~^3.227^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~675~^0.323^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~687~^0.079^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23150~^~693~^0.441^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23150~^~697~^0.043^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~851~^0.009^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23150~^~853~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~312~^0.073^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~315~^0.073^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~405~^0.278^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~406~^4.907^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~410~^0.520^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~415~^0.467^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~501~^0.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~502~^1.028^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~503~^1.023^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~504~^1.874^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~505~^2.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~506~^0.581^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~507~^0.218^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~508~^0.871^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~509~^0.815^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~510~^1.082^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~511~^1.460^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~512~^0.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~513~^1.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~514~^2.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~515~^3.567^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~516~^0.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~517~^0.912^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~518~^0.884^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~521~^0.106^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23151~^~605~^0.486^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~606~^3.880^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~612~^0.257^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~613~^2.187^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~614~^1.248^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~615~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~617~^4.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~618~^0.383^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~620~^0.048^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~625~^0.054^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~626~^0.322^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~628~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23151~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~645~^4.531^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~646~^0.464^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~652~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~653~^0.119^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~654~^0.009^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~662~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~663~^0.467^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~665~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~670~^0.030^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~673~^0.310^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~674~^3.546^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~675~^0.346^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~687~^0.090^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23151~^~693~^0.479^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23151~^~697~^0.042^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~851~^0.009^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23151~^~853~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~312~^0.072^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~315~^0.072^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~405~^0.255^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~406~^5.340^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~410~^0.560^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~415~^0.521^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~501~^0.282^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~502~^1.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~503~^1.195^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~504~^2.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~505~^2.498^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~506~^0.684^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~508~^1.021^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~509~^0.967^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~510~^1.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~511~^1.738^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~512~^0.977^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~513~^1.531^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~514~^2.498^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~515~^4.192^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~516~^1.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~517~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~518~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~521~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23152~^~605~^0.388^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~606~^3.039^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~611~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~612~^0.202^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~613~^1.681^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~614~^1.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~617~^3.123^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~618~^0.320^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~625~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~626~^0.247^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23152~^~631~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~645~^3.528^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~646~^0.393^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~652~^0.029^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~653~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~662~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~663~^0.373^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~665~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~670~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~673~^0.236^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~674~^2.750^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~675~^0.289^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~687~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23152~^~693~^0.383^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23152~^~697~^0.043^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~851~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23152~^~853~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~312~^0.076^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~315~^0.075^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~404~^0.115^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~405~^0.271^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~406~^5.555^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~410~^0.530^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~415~^0.467^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~501~^0.270^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~502~^1.130^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~503~^1.121^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~504~^2.068^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~505~^2.312^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~506~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~508~^0.958^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~509~^0.898^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~510~^1.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~511~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~512~^0.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~513~^1.435^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~514~^2.322^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~515~^3.920^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~516~^1.036^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~517~^1.009^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~518~^0.976^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~521~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23153~^~605~^0.313^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~606~^2.759^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~610~^0.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~611~^0.004^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~612~^0.167^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~613~^1.540^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~614~^0.914^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~615~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~617~^2.934^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~618~^0.349^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~620~^0.061^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~625~^0.036^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~626~^0.201^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~628~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~629~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23153~^~631~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~645~^3.277^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~646~^0.439^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~652~^0.034^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~653~^0.088^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~654~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~662~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~663~^0.304^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~665~^0.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~670~^0.021^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~673~^0.194^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~674~^2.630^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~675~^0.325^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~687~^0.066^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23153~^~693~^0.310^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23153~^~697~^0.034^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~851~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23153~^~853~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~312~^0.071^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~315~^0.071^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~404~^0.130^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~405~^0.278^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~406~^5.538^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~410~^0.530^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~415~^0.479^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~501~^0.256^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~502~^1.062^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~503~^1.057^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~504~^1.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~505~^2.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~506~^0.600^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~507~^0.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~508~^0.900^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~509~^0.842^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~510~^1.118^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~511~^1.508^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~512~^0.827^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~513~^1.348^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~514~^2.173^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~515~^3.685^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~516~^0.971^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~517~^0.943^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~518~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~521~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23154~^~605~^0.362^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~606~^3.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~612~^0.184^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~613~^1.699^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~614~^1.018^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~615~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~617~^3.204^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~618~^0.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~620~^0.064^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~625~^0.040^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~626~^0.215^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~628~^0.007^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23154~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~645~^3.576^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~646~^0.467^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~652~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~653~^0.099^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~662~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~663~^0.349^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~665~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~670~^0.024^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~673~^0.208^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~674~^2.855^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~675~^0.342^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~687~^0.075^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23154~^~693~^0.356^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23154~^~697~^0.035^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~851~^0.007^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23154~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~312~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~315~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~405~^0.260^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~406~^5.580^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~410~^0.530^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~415~^0.449^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~501~^0.294^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~502~^1.255^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~503~^1.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~504~^2.318^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~505~^2.601^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~506~^0.712^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~507~^0.271^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~508~^1.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~509~^1.007^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~510~^1.312^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~511~^1.810^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~512~^1.018^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~513~^1.595^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~514~^2.601^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~515~^4.366^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~516~^1.154^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~517~^1.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~518~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23155~^~605~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~606~^2.313^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~610~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~611~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~612~^0.141^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~613~^1.302^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~614~^0.759^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~617~^2.528^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~618~^0.314^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~620~^0.056^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~625~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~626~^0.178^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~628~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23155~^~631~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~645~^2.830^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~646~^0.396^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~652~^0.028^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~653~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~662~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~663~^0.236^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~665~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~673~^0.173^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~674~^2.292^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~675~^0.299^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~687~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23155~^~693~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23155~^~697~^0.034^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~851~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23155~^~853~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~312~^0.081^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~315~^0.081^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~404~^0.105^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~405~^0.334^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~406~^5.683^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~410~^0.625^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~415~^0.547^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~501~^0.336^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~502~^1.408^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~503~^1.397^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~504~^2.577^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~505~^2.880^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~506~^0.796^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~507~^0.301^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~508~^1.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~509~^1.118^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~510~^1.476^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~511~^2.009^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~512~^1.112^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~513~^1.788^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~514~^2.893^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~515~^4.885^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~516~^1.291^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~517~^1.258^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~518~^1.216^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~521~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23156~^~605~^0.602^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~606~^4.794^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~610~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~611~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~612~^0.322^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~613~^2.682^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~614~^1.555^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~615~^0.005^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~617~^4.978^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~618~^0.482^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~620~^0.059^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~625~^0.078^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~626~^0.390^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~628~^0.017^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~629~^0.002^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23156~^~631~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~645~^5.628^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~646~^0.594^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~652~^0.060^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~653~^0.143^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~654~^0.011^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~662~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~663~^0.589^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~665~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~670~^0.039^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~672~^0.002^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~673~^0.384^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~674~^4.389^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~675~^0.436^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~687~^0.108^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23156~^~693~^0.595^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23156~^~697~^0.057^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~851~^0.017^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23156~^~853~^0.019^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~312~^0.083^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~315~^0.083^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~405~^0.337^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~406~^5.675^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~410~^0.640^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~415~^0.530^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~502~^1.327^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~503~^1.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~504~^2.420^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~505~^2.695^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~506~^0.750^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~507~^0.281^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~508~^1.125^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~509~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~510~^1.398^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~511~^1.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~512~^1.033^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~513~^1.685^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~514~^2.717^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~515~^4.607^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~516~^1.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~517~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~518~^1.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23157~^~605~^0.612^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~606~^4.897^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~611~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~612~^0.319^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~613~^2.760^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~614~^1.565^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~615~^0.003^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~617~^5.161^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~618~^0.491^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~620~^0.064^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~625~^0.075^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~626~^0.402^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~628~^0.015^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23157~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~645~^5.828^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~646~^0.607^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~652~^0.066^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~653~^0.157^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~654~^0.012^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~662~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~663~^0.597^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~665~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~670~^0.034^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~673~^0.394^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~674~^4.564^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~675~^0.449^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~687~^0.120^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23157~^~693~^0.605^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23157~^~697~^0.055^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~851~^0.017^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23157~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~312~^0.078^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~315~^0.078^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~405~^0.330^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~406~^5.695^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~410~^0.610^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~415~^0.573^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~501~^0.365^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~502~^1.557^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~503~^1.543^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~504~^2.875^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~505~^3.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~506~^0.883^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~507~^0.337^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~508~^1.318^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~509~^1.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~510~^1.627^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~511~^2.244^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~512~^1.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~513~^1.977^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~514~^3.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~515~^5.413^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~516~^1.430^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~517~^1.416^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~518~^1.360^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~521~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23158~^~605~^0.587^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~606~^4.639^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~611~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~612~^0.328^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~613~^2.567^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~614~^1.541^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~615~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~617~^4.703^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~618~^0.469^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~620~^0.052^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~625~^0.081^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~626~^0.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~628~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23158~^~631~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~645~^5.327^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~646~^0.573^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~652~^0.050^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~653~^0.122^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~662~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~663~^0.577^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~665~^0.007^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~670~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~672~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~673~^0.369^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~674~^4.126^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~675~^0.416^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~687~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23158~^~693~^0.580^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23158~^~697~^0.060^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23158~^~853~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~312~^0.089^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~315~^0.089^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~405~^0.292^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~406~^5.850^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~410~^0.645^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~415~^0.540^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~501~^0.346^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~502~^1.450^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~503~^1.438^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~504~^2.653^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~505~^2.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~506~^0.819^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~507~^0.310^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~508~^1.229^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~509~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~510~^1.520^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~511~^2.069^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~512~^1.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~513~^1.841^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~514~^2.979^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~515~^5.029^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~516~^1.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~517~^1.295^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~518~^1.252^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23159~^~605~^0.583^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~606~^4.535^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~610~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~611~^0.008^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~612~^0.275^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~613~^2.488^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~614~^1.534^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~615~^0.003^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~617~^4.700^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~618~^0.548^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~620~^0.086^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~621~^0.002^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~625~^0.060^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~626~^0.342^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~628~^0.012^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~629~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23159~^~631~^0.015^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~645~^5.269^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~646~^0.696^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~652~^0.059^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~653~^0.148^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~654~^0.015^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~662~^0.008^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~663~^0.567^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~665~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~670~^0.041^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~673~^0.335^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~674~^4.133^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~675~^0.499^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~687~^0.108^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23159~^~693~^0.575^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23159~^~697~^0.048^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~851~^0.020^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23159~^~853~^0.020^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~312~^0.093^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~315~^0.093^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~405~^0.277^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~406~^5.657^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~410~^0.660^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~415~^0.534^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~501~^0.330^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~502~^1.369^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~503~^1.362^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~504~^2.496^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~505~^2.779^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~506~^0.773^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~507~^0.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~508~^1.160^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~509~^1.085^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~510~^1.441^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~511~^1.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~512~^1.066^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~513~^1.738^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~514~^2.801^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~515~^4.750^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~516~^1.252^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~517~^1.215^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~518~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~521~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23160~^~605~^0.667^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~606~^5.187^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~611~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~612~^0.313^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~613~^2.851^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~614~^1.750^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~615~^0.004^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~617~^5.441^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~618~^0.613^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~620~^0.097^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~621~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~625~^0.069^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~626~^0.394^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~628~^0.014^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~629~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23160~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~645~^6.091^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~646~^0.777^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~652~^0.066^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~653~^0.170^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~654~^0.018^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~662~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~663~^0.646^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~665~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~670~^0.046^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~673~^0.385^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~674~^4.795^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~675~^0.556^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~687~^0.124^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23160~^~693~^0.655^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23160~^~697~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~851~^0.022^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23160~^~853~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~312~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~315~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~405~^0.315^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~406~^6.140^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~410~^0.630^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~415~^0.549^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~501~^0.375^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~502~^1.599^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~503~^1.585^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~504~^2.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~505~^3.313^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~506~^0.908^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~507~^0.346^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~508~^1.354^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~509~^1.282^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~510~^1.671^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~511~^2.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~512~^1.296^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~513~^2.031^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~514~^3.313^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~515~^5.560^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~516~^1.469^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~517~^1.455^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~518~^1.397^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23161~^~605~^0.459^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~606~^3.556^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~611~^0.007^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~612~^0.216^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~613~^1.943^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~614~^1.208^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~617~^3.588^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~618~^0.451^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~620~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~625~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~626~^0.265^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23161~^~631~^0.015^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~645~^4.037^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~646~^0.574^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~652~^0.049^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~653~^0.116^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~662~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~663~^0.449^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~665~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~670~^0.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~673~^0.259^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~674~^3.139^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~675~^0.413^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~687~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23161~^~693~^0.455^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23161~^~697~^0.047^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~851~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23161~^~853~^0.018^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~312~^0.109^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~315~^0.109^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~404~^0.085^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~405~^0.353^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~406~^6.471^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~410~^0.690^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~415~^0.492^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~501~^0.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~502~^1.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~503~^1.529^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~504~^2.821^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~505~^3.152^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~506~^0.871^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~507~^0.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~508~^1.306^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~509~^1.224^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~510~^1.616^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~511~^2.199^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~512~^1.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~513~^1.957^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~514~^3.167^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~515~^5.347^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~516~^1.413^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~517~^1.377^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~518~^1.331^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~521~^0.151^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23162~^~605~^0.525^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~606~^4.315^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~610~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~611~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~612~^0.296^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~613~^2.501^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~614~^1.317^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~615~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~617~^4.777^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~618~^0.441^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~620~^0.068^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~625~^0.086^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~626~^0.453^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~628~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~629~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23162~^~631~^0.015^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~645~^5.490^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~646~^0.553^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~652~^0.051^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~653~^0.126^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~654~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~662~^0.013^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~663~^0.507^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~665~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~670~^0.032^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~673~^0.440^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~674~^4.270^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~675~^0.404^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~687~^0.112^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23162~^~693~^0.520^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23162~^~697~^0.052^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~851~^0.008^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23162~^~853~^0.020^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~312~^0.088^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~315~^0.088^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~404~^0.058^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~405~^0.299^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~406~^5.439^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~410~^0.610^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~415~^0.438^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~501~^0.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~502~^1.088^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~503~^1.079^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~504~^1.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~505~^2.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~506~^0.615^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~507~^0.232^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~508~^0.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~509~^0.864^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~510~^1.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~511~^1.553^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~512~^0.859^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~513~^1.382^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~514~^2.236^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~515~^3.775^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~516~^0.997^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~517~^0.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~518~^0.939^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~521~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23163~^~605~^0.403^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~606~^3.233^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~610~^0.004^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~611~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~612~^0.214^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~613~^1.842^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~614~^1.023^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~615~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~617~^3.467^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~618~^0.350^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~620~^0.053^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~625~^0.054^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~626~^0.294^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~628~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~629~^0.004^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23163~^~631~^0.010^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~645~^3.943^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~646~^0.442^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~652~^0.040^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~653~^0.095^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~654~^0.009^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~662~^0.010^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~663~^0.388^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~665~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~670~^0.027^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~673~^0.284^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~674~^3.079^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~675~^0.318^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~687~^0.078^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23163~^~693~^0.398^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23163~^~697~^0.038^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~851~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23163~^~853~^0.015^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~312~^0.107^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~315~^0.107^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~404~^0.090^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~405~^0.355^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~406~^6.365^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~410~^0.700^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~415~^0.471^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~501~^0.350^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~502~^1.452^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~503~^1.445^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~504~^2.647^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~505~^2.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~506~^0.820^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~507~^0.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~508~^1.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~509~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~510~^1.529^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~511~^2.062^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~512~^1.130^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~513~^1.843^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~514~^2.971^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~515~^5.038^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~516~^1.328^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~517~^1.289^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~518~^1.249^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~521~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23164~^~605~^0.582^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~606~^4.760^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~612~^0.326^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~613~^2.757^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~614~^1.445^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~615~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~617~^5.299^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~618~^0.484^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~620~^0.071^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~621~^0.000^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~625~^0.094^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~626~^0.504^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~628~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23164~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~645~^6.088^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~646~^0.597^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~652~^0.060^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~653~^0.148^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~662~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~663~^0.564^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~665~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~670~^0.036^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~673~^0.491^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~674~^4.735^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~675~^0.443^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~687~^0.131^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23164~^~693~^0.578^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23164~^~697~^0.048^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~851~^0.009^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23164~^~853~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~312~^0.087^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~315~^0.087^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~404~^0.055^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~405~^0.285^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~406~^5.282^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~410~^0.640^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~415~^0.440^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~501~^0.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~502~^1.026^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~503~^1.021^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~504~^1.870^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~505~^2.083^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~506~^0.580^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~508~^0.869^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~509~^0.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~510~^1.080^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~511~^1.457^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~512~^0.798^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~513~^1.302^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~514~^2.099^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~515~^3.559^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~516~^0.938^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~517~^0.910^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~518~^0.882^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~521~^0.105^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23165~^~605~^0.443^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~606~^3.546^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~612~^0.232^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~613~^2.024^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~614~^1.113^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~615~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~617~^3.896^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~618~^0.385^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~620~^0.058^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~625~^0.059^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~626~^0.330^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~628~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23165~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~645~^4.430^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~646~^0.483^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~652~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~653~^0.110^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~654~^0.009^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~662~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~663~^0.428^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~665~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~670~^0.029^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~673~^0.320^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~674~^3.468^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~675~^0.350^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~687~^0.094^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23165~^~693~^0.438^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23165~^~697~^0.040^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~851~^0.010^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23165~^~853~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~312~^0.107^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~315~^0.107^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~405~^0.350^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~406~^6.630^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~410~^0.680^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~415~^0.524^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~501~^0.400^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~502~^1.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~503~^1.691^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~504~^3.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~505~^3.535^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~506~^0.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~507~^0.369^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~508~^1.445^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~509~^1.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~510~^1.783^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~511~^2.459^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~512~^1.383^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~513~^2.167^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~514~^3.535^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~515~^5.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~516~^1.568^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~517~^1.552^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~518~^1.491^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~521~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23166~^~605~^0.440^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~606~^3.647^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~611~^0.007^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~612~^0.250^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~613~^2.118^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~614~^1.125^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~617~^3.993^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~618~^0.377^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~620~^0.063^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~625~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~626~^0.376^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23166~^~631~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~645~^4.594^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~646~^0.486^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~652~^0.039^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~653~^0.093^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~662~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~663~^0.422^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~665~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~670~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~673~^0.363^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~674~^3.572^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~675~^0.345^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~687~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~689~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23166~^~693~^0.435^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23166~^~697~^0.059^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~851~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23166~^~853~^0.023^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~312~^0.083^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~315~^0.083^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~404~^0.060^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~405~^0.320^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~406~^5.675^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~410~^0.580^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~415~^0.435^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~501~^0.282^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~502~^1.203^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~503~^1.192^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~504~^2.222^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~505~^2.493^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~506~^0.683^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~507~^0.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~508~^1.019^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~509~^0.965^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~510~^1.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~511~^1.734^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~512~^0.975^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~513~^1.528^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~514~^2.493^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~515~^4.183^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~516~^1.105^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~517~^1.095^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~518~^1.051^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~521~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23167~^~605~^0.343^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~606~^2.765^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~611~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~612~^0.188^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~613~^1.568^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~614~^0.887^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~617~^2.824^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~618~^0.298^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~625~^0.047^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~626~^0.241^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23167~^~631~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~645~^3.212^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~646~^0.380^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~652~^0.032^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~653~^0.073^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~662~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~663~^0.328^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~665~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~670~^0.023^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~673~^0.231^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~674~^2.496^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~675~^0.269^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~687~^0.055^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23167~^~693~^0.338^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23167~^~697~^0.036^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~851~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23167~^~853~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~312~^0.211^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~315~^0.210^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~404~^0.125^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~405~^0.853^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~406~^5.198^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~410~^1.360^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~415~^0.458^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~501~^0.339^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~502~^1.422^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~503~^1.411^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~504~^2.603^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~505~^2.909^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~506~^0.804^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~507~^0.304^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~508~^1.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~509~^1.130^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~510~^1.491^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~511~^2.029^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~512~^1.123^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~513~^1.806^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~514~^2.922^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~515~^4.934^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~516~^1.304^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~517~^1.270^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~518~^1.228^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~521~^0.140^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23168~^~605~^0.819^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~606~^6.674^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~610~^0.008^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~611~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~612~^0.391^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~613~^3.494^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~614~^2.474^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~615~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~617~^6.686^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23168~^~618~^0.844^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23168~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23168~^~620~^0.142^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~625~^0.075^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~626~^0.427^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23168~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~628~^0.016^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~629~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23168~^~631~^0.024^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~645~^7.443^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~646~^1.078^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~652~^0.065^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~653~^0.206^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~654~^0.020^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~662~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~663~^0.796^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~665~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~670~^0.052^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~673~^0.416^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~674~^5.890^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~675~^0.781^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~687~^0.137^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~689~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23168~^~693~^0.808^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23168~^~697~^0.101^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~851~^0.023^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23168~^~853~^0.039^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~312~^0.181^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~315~^0.180^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~404~^0.110^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~405~^0.588^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~406~^4.251^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~410~^1.185^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~415~^0.402^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~501~^0.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~502~^0.963^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~503~^0.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~504~^1.762^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~505~^1.969^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~506~^0.544^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~507~^0.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~508~^0.816^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~509~^0.765^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~510~^1.010^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~511~^1.374^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~512~^0.760^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~513~^1.223^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~514~^1.978^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~515~^3.340^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~516~^0.883^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~517~^0.860^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~518~^0.831^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~521~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23169~^~605~^0.744^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~606~^5.618^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~610~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~611~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~612~^0.333^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~613~^2.888^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~614~^2.129^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~615~^0.008^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~617~^5.492^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23169~^~618~^0.619^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23169~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23169~^~620~^0.079^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~621~^0.002^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~625~^0.060^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~626~^0.333^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23169~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~628~^0.021^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~629~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23169~^~631~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~645~^6.082^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~646~^0.766^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~652~^0.055^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~653~^0.178^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~654~^0.013^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~662~^0.004^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~663~^0.729^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~665~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~670~^0.048^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~673~^0.329^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~674~^4.763^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~675~^0.560^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~687~^0.110^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23169~^~693~^0.732^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23169~^~697~^0.065^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~851~^0.023^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23169~^~853~^0.024^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~312~^0.210^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~315~^0.208^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~404~^0.130^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~405~^0.848^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~406~^4.927^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~410~^1.390^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~415~^0.445^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~502~^1.328^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~503~^1.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~504~^2.421^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~505~^2.696^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~506~^0.750^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~507~^0.281^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~508~^1.125^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~509~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~510~^1.398^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~511~^1.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~512~^1.033^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~513~^1.685^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~514~^2.717^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~515~^4.607^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~516~^1.215^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~517~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~518~^1.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23170~^~605~^0.872^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~606~^7.035^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~610~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~611~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~612~^0.412^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~613~^3.706^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~614~^2.569^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~615~^0.005^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~617~^7.168^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23170~^~618~^0.891^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23170~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23170~^~620~^0.150^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~625~^0.079^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~626~^0.460^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23170~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~628~^0.017^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23170~^~631~^0.024^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~645~^7.979^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~646~^1.128^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~652~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~653~^0.233^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~654~^0.022^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~662~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~663~^0.849^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~665~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~670~^0.051^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~673~^0.448^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~674~^6.318^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~675~^0.831^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~687~^0.156^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~689~^0.038^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23170~^~693~^0.862^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23170~^~697~^0.099^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~851~^0.020^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23170~^~853~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~312~^0.182^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~315~^0.182^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~405~^0.597^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~406~^4.212^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~410~^1.230^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~415~^0.392^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~501~^0.218^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~502~^0.907^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~503~^0.903^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~504~^1.654^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~505~^1.841^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~506~^0.512^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~507~^0.192^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~508~^0.769^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~509~^0.719^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~510~^0.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~511~^1.288^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~512~^0.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~513~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~514~^1.856^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~515~^3.147^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~516~^0.830^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~517~^0.805^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~518~^0.780^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~521~^0.093^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23171~^~605~^0.769^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~606~^5.798^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~612~^0.340^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~613~^2.988^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~614~^2.185^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~615~^0.007^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~617~^5.749^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23171~^~618~^0.645^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23171~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23171~^~620~^0.080^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~621~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~625~^0.062^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~626~^0.346^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23171~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~628~^0.020^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~629~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23171~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~645~^6.363^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~646~^0.797^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~652~^0.058^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~653~^0.193^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~654~^0.013^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~662~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~663~^0.754^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~665~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~670~^0.049^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~673~^0.342^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~674~^4.995^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~675~^0.585^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~687~^0.120^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23171~^~693~^0.758^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23171~^~697~^0.067^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~851~^0.024^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23171~^~853~^0.025^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~312~^0.217^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~315~^0.217^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~404~^0.120^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~405~^0.860^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~406~^5.605^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~410~^1.330^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~415~^0.479^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~501~^0.374^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~502~^1.595^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~503~^1.580^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~504~^2.945^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~505~^3.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~506~^0.905^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~507~^0.345^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~508~^1.351^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~509~^1.279^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~510~^1.667^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~511~^2.299^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~512~^1.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~513~^2.026^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~514~^3.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~515~^5.546^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~516~^1.465^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~517~^1.451^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~518~^1.394^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23172~^~605~^0.740^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~606~^6.132^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~610~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~611~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~612~^0.359^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~613~^3.175^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~614~^2.331^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~615~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~617~^5.965^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23172~^~618~^0.772^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23172~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23172~^~620~^0.130^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~625~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~626~^0.378^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23172~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~628~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~629~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23172~^~631~^0.023^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~645~^6.639^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~646~^1.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~652~^0.058^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~653~^0.167^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~654~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~662~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~663~^0.717^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~665~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~670~^0.053^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~673~^0.368^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~674~^5.248^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~675~^0.707^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~687~^0.108^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~689~^0.040^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23172~^~693~^0.727^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~695~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23172~^~697~^0.104^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~851~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23172~^~853~^0.040^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~312~^0.175^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~315~^0.175^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~404~^0.110^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~405~^0.575^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~406~^4.310^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~410~^1.140^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~415~^0.417^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~501~^0.250^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~502~^1.066^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~503~^1.056^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~504~^1.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~505~^2.208^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~506~^0.605^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~508~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~509~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~510~^1.114^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~511~^1.536^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~512~^0.864^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~513~^1.354^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~514~^2.208^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~515~^3.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~516~^0.979^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~517~^0.970^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~518~^0.931^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~521~^0.097^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23173~^~605~^0.706^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~606~^5.349^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~611~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~612~^0.322^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~613~^2.739^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~614~^2.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~615~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~617~^5.107^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23173~^~618~^0.580^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23173~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23173~^~620~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~625~^0.058^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~626~^0.312^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23173~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~628~^0.023^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~629~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23173~^~631~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~645~^5.659^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~646~^0.718^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~652~^0.051^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~653~^0.157^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~654~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~662~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~663~^0.691^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~665~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~670~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~673~^0.309^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~674~^4.416^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~675~^0.523^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~687~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~689~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23173~^~693~^0.694^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23173~^~697~^0.064^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~851~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23173~^~853~^0.023^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~312~^0.090^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~315~^0.090^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~405~^0.323^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~406~^5.799^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~410~^0.595^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~415~^0.558^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~501~^0.345^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~502~^1.444^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~503~^1.433^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~504~^2.644^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~505~^2.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~506~^0.816^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~507~^0.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~508~^1.224^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~509~^1.147^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~510~^1.515^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~511~^2.061^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~512~^1.140^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~513~^1.834^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~514~^2.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~515~^5.011^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~516~^1.324^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~517~^1.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~518~^1.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23174~^~605~^0.517^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~606~^4.200^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~610~^0.005^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~611~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~612~^0.269^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~613~^2.330^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~614~^1.385^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~615~^0.002^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~617~^4.321^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~618~^0.437^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~620~^0.060^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~621~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~625~^0.057^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~626~^0.325^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~628~^0.014^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~629~^0.001^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23174~^~631~^0.014^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~645~^4.866^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~646~^0.548^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~652~^0.055^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~653~^0.136^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~654~^0.011^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~662~^0.009^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~663~^0.501^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~665~^0.007^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~670~^0.030^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~673~^0.316^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~674~^3.820^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~675~^0.400^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~687~^0.098^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23174~^~693~^0.509^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23174~^~697~^0.051^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~851~^0.017^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23174~^~853~^0.018^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~312~^0.076^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~315~^0.075^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~404~^0.115^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~405~^0.271^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~406~^5.555^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~410~^0.530^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~415~^0.467^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~501~^0.270^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~502~^1.130^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~503~^1.121^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~504~^2.068^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~505~^2.312^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~506~^0.639^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~508~^0.958^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~509~^0.898^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~510~^1.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~511~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~512~^0.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~513~^1.435^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~514~^2.322^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~515~^3.920^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~516~^1.036^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~517~^1.009^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~518~^0.976^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~521~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23175~^~605~^0.313^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~606~^2.759^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~610~^0.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~611~^0.004^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~612~^0.167^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~613~^1.540^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~614~^0.914^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~615~^0.001^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~617~^2.934^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~618~^0.349^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~620~^0.061^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~625~^0.036^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~626~^0.201^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~628~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~629~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23175~^~631~^0.011^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~645~^3.277^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~646~^0.439^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~652~^0.034^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~653~^0.088^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~654~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~662~^0.006^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~663~^0.304^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~665~^0.003^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~670~^0.021^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~673~^0.194^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~674~^2.630^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~675~^0.325^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~687~^0.066^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23175~^~693~^0.310^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23175~^~697~^0.034^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~851~^0.006^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23175~^~853~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~312~^0.087^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~315~^0.087^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~405~^0.335^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~406~^5.545^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~410~^0.590^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~415~^0.514^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~501~^0.323^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~502~^1.341^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~503~^1.334^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~504~^2.445^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~505~^2.722^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~506~^0.758^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~508~^1.136^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~509~^1.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~510~^1.412^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~511~^1.904^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~512~^1.044^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~513~^1.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~514~^2.744^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~515~^4.652^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~516~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~517~^1.190^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~518~^1.153^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~521~^0.138^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23176~^~605~^0.572^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~606~^4.645^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~612~^0.295^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~613~^2.571^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~614~^1.538^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~615~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~617~^4.837^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~618~^0.449^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~620~^0.056^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~625~^0.062^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~626~^0.359^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~628~^0.015^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23176~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~645~^5.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~646~^0.554^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~652~^0.061^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~653~^0.154^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~662~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~663~^0.552^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~665~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~670~^0.032^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~673~^0.347^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~674~^4.285^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~675~^0.411^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~687~^0.112^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23176~^~693~^0.565^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23176~^~697~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~851~^0.017^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23176~^~853~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~312~^0.071^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~315~^0.071^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~404~^0.130^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~405~^0.278^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~406~^5.538^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~410~^0.530^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~415~^0.479^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~501~^0.256^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~502~^1.062^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~503~^1.057^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~504~^1.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~505~^2.156^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~506~^0.600^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~507~^0.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~508~^0.900^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~509~^0.842^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~510~^1.118^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~511~^1.508^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~512~^0.827^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~513~^1.348^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~514~^2.173^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~515~^3.685^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~516~^0.971^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~517~^0.943^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~518~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~521~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23177~^~605~^0.362^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~606~^3.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~612~^0.184^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~613~^1.699^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~614~^1.018^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~615~^0.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~617~^3.204^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~618~^0.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~620~^0.064^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~625~^0.040^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~626~^0.215^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~628~^0.007^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23177~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~645~^3.576^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~646~^0.467^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~652~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~653~^0.099^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~662~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~663~^0.349^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~665~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~670~^0.024^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~673~^0.208^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~674~^2.855^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~675~^0.342^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~687~^0.075^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23177~^~693~^0.356^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23177~^~697~^0.035^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~851~^0.007^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23177~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~312~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~315~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~404~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~405~^0.305^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~406~^6.180^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~410~^0.600^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~415~^0.623^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~501~^0.378^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~502~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~503~^1.599^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~504~^2.979^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~505~^3.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~506~^0.916^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~507~^0.349^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~508~^1.366^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~509~^1.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~510~^1.686^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~511~^2.325^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~512~^1.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~513~^2.049^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~514~^3.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~515~^5.610^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~516~^1.482^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~517~^1.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~518~^1.410^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~521~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23178~^~605~^0.434^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~606~^3.534^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~610~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~611~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~612~^0.229^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~613~^1.969^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~614~^1.156^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~617~^3.546^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~618~^0.419^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~620~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~625~^0.050^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~626~^0.273^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23178~^~631~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~645~^4.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~646~^0.539^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~652~^0.048^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~653~^0.109^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~662~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~663~^0.424^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~665~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~673~^0.271^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~674~^3.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~675~^0.383^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~687~^0.079^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23178~^~693~^0.426^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23178~^~697~^0.055^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~851~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23178~^~853~^0.020^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~312~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~315~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~404~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~405~^0.260^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~406~^5.580^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~410~^0.530^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~415~^0.449^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~501~^0.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~502~^1.251^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~503~^1.239^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~504~^2.310^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~505~^2.591^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~506~^0.710^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~508~^1.059^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~509~^1.003^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~510~^1.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~511~^1.803^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~512~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~513~^1.589^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~514~^2.591^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~515~^4.349^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~516~^1.149^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~517~^1.138^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~518~^1.093^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~521~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23179~^~605~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~606~^2.313^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~610~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~611~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~612~^0.141^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~613~^1.302^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~614~^0.759^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~617~^2.528^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~618~^0.314^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~620~^0.056^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~625~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~626~^0.178^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~628~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23179~^~631~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~645~^2.830^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~646~^0.396^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~652~^0.028^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~653~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~662~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~663~^0.236^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~665~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~670~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~673~^0.173^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~674~^2.292^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~675~^0.299^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~687~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23179~^~693~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23179~^~697~^0.034^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~851~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23179~^~853~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~312~^0.082^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23180~^~404~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~405~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~406~^5.882^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~415~^0.567^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~501~^0.348^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~502~^1.457^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~503~^1.446^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~504~^2.667^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~505~^2.981^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~506~^0.824^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~507~^0.311^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~508~^1.235^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~509~^1.158^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~510~^1.528^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~511~^2.080^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~512~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~513~^1.851^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~514~^2.995^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~515~^5.056^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~516~^1.336^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~517~^1.302^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~518~^1.258^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23180~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23180~^~606~^8.103^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~612~^0.514^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~613~^4.365^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~614~^2.813^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~617~^8.294^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~618~^0.677^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~619~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~620~^0.056^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~626~^0.593^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~628~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23180~^~631~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~645~^9.271^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23180~^~646~^0.805^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23181~^~312~^0.068^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23181~^~404~^0.090^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~405~^0.242^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~406~^4.576^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~415~^0.440^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23181~^~605~^0.973^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~606~^7.055^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~610~^0.008^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~611~^0.013^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~612~^0.448^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~613~^3.801^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~614~^2.449^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~615~^0.007^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~617~^7.221^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23181~^~618~^0.590^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23181~^~619~^0.031^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23181~^~620~^0.049^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~621~^0.000^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~625~^0.096^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~626~^0.517^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23181~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~628~^0.033^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~629~^0.001^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23181~^~631~^0.012^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~645~^8.072^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~646~^0.701^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~652~^0.094^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~653~^0.226^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~654~^0.010^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~662~^0.027^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~663~^0.931^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~665~^0.015^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~670~^0.064^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~672~^0.000^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~673~^0.489^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~674~^6.290^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~675~^0.511^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~687~^0.154^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23181~^~693~^0.959^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23181~^~697~^0.051^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~851~^0.031^6^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23181~^~853~^0.019^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~312~^0.084^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23182~^~404~^0.103^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~405~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~406~^5.826^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~415~^0.544^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~501~^0.328^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~502~^1.363^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~503~^1.356^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~504~^2.485^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~505~^2.767^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~506~^0.770^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~507~^0.289^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~508~^1.155^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~509~^1.081^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~510~^1.435^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~511~^1.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~512~^1.061^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~513~^1.730^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~514~^2.789^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~515~^4.729^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~516~^1.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~517~^1.210^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~518~^1.172^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23182~^~521~^0.140^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23182~^~606~^8.763^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~610~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~611~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~612~^0.551^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~613~^4.727^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~614~^3.043^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~617~^8.995^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~618~^0.718^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~619~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~620~^0.057^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~626~^0.641^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~628~^0.042^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23182~^~631~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~645~^10.042^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23182~^~646~^0.846^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23183~^~312~^0.068^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23183~^~404~^0.089^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~405~^0.249^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~406~^4.388^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~415~^0.417^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~501~^0.221^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~502~^0.919^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~503~^0.915^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~504~^1.676^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~505~^1.866^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~506~^0.519^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~507~^0.195^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~508~^0.779^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~509~^0.729^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~510~^0.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~511~^1.306^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~512~^0.716^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~513~^1.167^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~514~^1.881^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~515~^3.190^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~516~^0.841^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~517~^0.816^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~518~^0.791^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~521~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23183~^~605~^1.045^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~606~^7.812^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~611~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~612~^0.491^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~613~^4.214^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~614~^2.713^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~615~^0.008^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~617~^8.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23183~^~618~^0.640^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23183~^~619~^0.034^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23183~^~620~^0.051^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~625~^0.103^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~626~^0.571^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23183~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~628~^0.038^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23183~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~645~^8.952^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~646~^0.754^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~652~^0.104^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~653~^0.250^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~654~^0.011^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~662~^0.027^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~663~^1.002^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~665~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~670~^0.063^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~673~^0.545^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~674~^7.017^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~675~^0.561^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~687~^0.171^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23183~^~693~^1.028^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23183~^~697~^0.050^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~851~^0.034^4^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23183~^~853~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23184~^~404~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~405~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~406~^5.964^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~415~^0.600^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~501~^0.382^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~502~^1.630^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~503~^1.615^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~504~^3.010^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~505~^3.377^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~506~^0.925^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~507~^0.352^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~508~^1.380^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~509~^1.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~510~^1.703^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~511~^2.350^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~512~^1.322^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~513~^2.070^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~514~^3.377^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~515~^5.668^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~516~^1.498^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~517~^1.483^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~518~^1.424^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23184~^~521~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23184~^~606~^7.091^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~612~^0.459^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~613~^3.811^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~614~^2.461^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~617~^7.217^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~618~^0.616^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~619~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~620~^0.055^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~626~^0.520^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~629~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23184~^~631~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~645~^8.088^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23184~^~646~^0.745^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23185~^~312~^0.068^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23185~^~404~^0.091^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~405~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~406~^4.861^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~415~^0.475^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~501~^0.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~502~^1.097^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~503~^1.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~504~^2.027^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~505~^2.274^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~506~^0.623^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~507~^0.237^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~508~^0.929^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~509~^0.880^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~510~^1.147^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~511~^1.582^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~512~^0.890^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~513~^1.394^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~514~^2.274^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~515~^3.816^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~516~^1.008^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~517~^0.998^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~518~^0.959^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~521~^0.100^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23185~^~605~^0.865^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~606~^5.920^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~611~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~612~^0.383^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~613~^3.181^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~614~^2.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~617~^6.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~618~^0.514^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~620~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~625~^0.086^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~626~^0.435^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~628~^0.027^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23185~^~631~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~645~^6.752^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~646~^0.622^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~652~^0.079^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~653~^0.190^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~662~^0.028^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~663~^0.825^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~665~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~670~^0.067^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~672~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~673~^0.406^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~674~^5.200^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~675~^0.436^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~687~^0.128^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23185~^~693~^0.853^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23185~^~697~^0.053^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~851~^0.028^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23185~^~853~^0.019^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~312~^0.073^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~315~^0.073^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~404~^0.085^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~405~^0.296^4^0.016^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~406~^4.752^4^0.123^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~410~^0.567^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~415~^0.450^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~501~^0.255^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~502~^1.065^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~503~^1.055^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~504~^1.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~505~^2.148^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~506~^0.612^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~507~^0.229^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~508~^0.906^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~509~^0.840^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~510~^1.134^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~511~^1.533^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~512~^0.836^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~513~^1.404^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~514~^2.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~515~^3.694^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~516~^1.120^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~517~^1.012^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~518~^0.928^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~521~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23186~^~605~^1.613^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~606~^10.566^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~610~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~611~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~612~^0.707^4^0.052^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~613~^5.613^4^0.379^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~614~^3.705^4^0.227^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~615~^0.018^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~617~^10.378^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~618~^0.958^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~620~^0.058^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~625~^0.149^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~626~^0.788^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~628~^0.049^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23186~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~645~^11.620^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~646~^1.103^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~652~^0.141^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~653~^0.333^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~662~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~663~^1.454^4^0.117^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~665~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~670~^0.104^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~672~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~673~^0.726^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~674~^8.925^4^0.433^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~675~^0.757^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~687~^0.213^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23186~^~693~^1.516^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~695~^0.097^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23186~^~697~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~851~^0.039^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23186~^~853~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~312~^0.069^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~315~^0.069^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~404~^0.092^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~405~^0.288^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~406~^4.705^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~410~^0.540^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~415~^0.477^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~501~^0.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~502~^1.114^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~503~^1.100^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~504~^2.055^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~505~^2.294^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~506~^0.641^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~507~^0.243^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~508~^0.947^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~509~^0.889^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~510~^1.176^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~511~^1.622^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~512~^0.907^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~513~^1.460^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~514~^2.319^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~515~^3.873^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~516~^1.148^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~517~^1.070^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~518~^0.983^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~521~^0.158^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23187~^~605~^1.654^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~606~^10.723^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~610~^0.018^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~611~^0.020^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~612~^0.738^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~613~^5.646^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~614~^3.819^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~615~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~617~^10.362^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~618~^0.968^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~619~^0.040^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~620~^0.049^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~625~^0.158^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~626~^0.790^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~628~^0.056^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23187~^~631~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~645~^11.609^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~646~^1.105^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~652~^0.132^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~653~^0.318^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~662~^0.061^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~663~^1.492^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~665~^0.101^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~670~^0.117^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~672~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~673~^0.729^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~674~^8.870^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~675~^0.751^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~687~^0.197^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23187~^~693~^1.553^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23187~^~697~^0.047^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~851~^0.040^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23187~^~853~^0.024^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~312~^0.071^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~315~^0.071^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~404~^0.088^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~405~^0.293^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~406~^4.733^6^0.099^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~410~^0.553^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~415~^0.461^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~501~^0.256^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~502~^1.079^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~503~^1.067^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~504~^1.974^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~505~^2.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~506~^0.620^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~507~^0.233^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~508~^0.919^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~509~^0.853^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~510~^1.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~511~^1.560^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~512~^0.858^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~513~^1.420^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~514~^2.232^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~515~^3.745^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~516~^1.127^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~517~^1.028^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~518~^0.943^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~521~^0.157^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23188~^~605~^1.629^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~606~^10.629^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~610~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~611~^0.020^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~612~^0.720^6^0.042^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~613~^5.627^6^0.305^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~614~^3.750^6^0.183^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~615~^0.020^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~617~^10.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~618~^0.962^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~619~^0.040^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~620~^0.055^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~625~^0.153^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~626~^0.789^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~628~^0.052^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~629~^0.002^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23188~^~631~^0.013^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~645~^11.616^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~646~^1.104^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~652~^0.138^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~653~^0.327^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~662~^0.062^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~663~^1.469^6^0.094^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~665~^0.099^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~670~^0.109^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~672~^0.007^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~673~^0.727^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~674~^8.903^6^0.348^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~675~^0.754^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~687~^0.206^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23188~^~693~^1.531^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~695~^0.099^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23188~^~697~^0.045^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~851~^0.040^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23188~^~853~^0.025^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~312~^0.077^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~315~^0.077^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~404~^0.096^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~405~^0.297^4^0.028^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~406~^4.749^4^0.107^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~410~^0.611^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~415~^0.453^4^0.023^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~501~^0.264^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~502~^1.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~503~^1.093^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~504~^2.010^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~505~^2.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~506~^0.634^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~507~^0.237^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~508~^0.939^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~509~^0.870^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~510~^1.175^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~511~^1.589^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~512~^0.866^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~513~^1.455^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~514~^2.273^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~515~^3.828^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~516~^1.160^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~517~^1.049^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~518~^0.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~521~^0.161^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23189~^~605~^1.481^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~606~^10.097^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~610~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~611~^0.019^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~612~^0.667^4^0.080^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~613~^5.395^4^0.546^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~614~^3.510^4^0.353^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~615~^0.017^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~617~^9.990^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~618~^0.916^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~620~^0.057^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~625~^0.141^4^0.019^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~626~^0.751^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~628~^0.052^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23189~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~645~^11.184^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~646~^1.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~652~^0.141^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~653~^0.319^4^0.035^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~662~^0.054^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~663~^1.338^4^0.170^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~665~^0.089^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~670~^0.102^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~673~^0.697^4^0.045^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~674~^8.652^4^0.656^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~675~^0.725^4^0.044^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~687~^0.205^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23189~^~693~^1.392^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~695~^0.089^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23189~^~697~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~851~^0.039^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23189~^~853~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~315~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~404~^0.071^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~405~^0.296^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~406~^4.897^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~410~^0.618^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~415~^0.507^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~501~^0.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~502~^1.122^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~503~^1.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~504~^2.070^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~505~^2.310^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~506~^0.646^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~507~^0.245^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~508~^0.954^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~509~^0.896^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~510~^1.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~511~^1.634^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~512~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~513~^1.470^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~514~^2.336^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~515~^3.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~516~^1.157^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~517~^1.078^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~518~^0.990^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~521~^0.160^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23190~^~605~^1.462^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~606~^9.562^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~610~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~611~^0.019^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~612~^0.651^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~613~^5.078^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~614~^3.365^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~615~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~617~^9.161^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23190~^~618~^0.874^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23190~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23190~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~625~^0.138^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~626~^0.723^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23190~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~628~^0.048^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23190~^~631~^0.011^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~645~^10.284^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~646~^1.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~652~^0.126^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~653~^0.278^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~662~^0.069^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~663~^1.300^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~665~^0.093^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~670~^0.101^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~672~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~673~^0.654^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~674~^7.862^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~675~^0.680^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~687~^0.172^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23190~^~693~^1.369^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~695~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23190~^~697~^0.042^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~851~^0.036^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23190~^~853~^0.022^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~312~^0.076^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~315~^0.076^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~404~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~405~^0.297^6^0.023^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~406~^4.808^6^0.086^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~410~^0.614^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~415~^0.475^6^0.019^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~501~^0.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~502~^1.106^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~503~^1.093^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~504~^2.022^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~505~^2.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~506~^0.635^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~508~^0.941^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~509~^0.874^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~510~^1.173^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~511~^1.598^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~512~^0.879^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~513~^1.455^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~514~^2.286^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~515~^3.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~516~^1.154^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~517~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~518~^0.966^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~521~^0.160^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23191~^~605~^1.473^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~606~^9.883^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~610~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~611~^0.019^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~612~^0.661^6^0.065^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~613~^5.269^6^0.440^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~614~^3.452^6^0.284^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~615~^0.017^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~617~^9.658^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~618~^0.899^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~620~^0.055^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~625~^0.140^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~626~^0.740^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~628~^0.051^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~629~^0.003^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23191~^~631~^0.012^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~645~^10.824^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~646~^1.036^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~652~^0.135^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~653~^0.303^6^0.028^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~662~^0.060^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~663~^1.323^6^0.137^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~665~^0.090^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~670~^0.102^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~672~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~673~^0.680^6^0.036^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~674~^8.336^6^0.528^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~675~^0.707^6^0.035^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~687~^0.192^6^0.014^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23191~^~693~^1.383^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~695~^0.090^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23191~^~697~^0.044^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~851~^0.038^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23191~^~853~^0.025^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~312~^0.064^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~315~^0.064^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~404~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~405~^0.236^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~406~^4.273^6^0.098^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~410~^0.481^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~415~^0.413^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~501~^0.203^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~502~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~503~^0.844^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~504~^1.563^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~505~^1.736^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~506~^0.491^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~507~^0.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~508~^0.727^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~509~^0.675^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~510~^0.906^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~511~^1.234^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~512~^0.679^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~513~^1.124^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~514~^1.766^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~515~^2.964^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~516~^0.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~517~^0.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~518~^0.746^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~521~^0.124^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23192~^~605~^1.309^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~606~^9.097^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~610~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~611~^0.016^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~612~^0.620^6^0.039^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~613~^4.849^6^0.284^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~614~^3.174^6^0.180^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~615~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~617~^8.691^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~618~^0.798^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~620~^0.044^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~625~^0.120^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~626~^0.667^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~628~^0.040^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~629~^0.000^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23192~^~631~^0.010^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~645~^9.717^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~646~^0.907^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~652~^0.119^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~653~^0.277^6^0.017^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~662~^0.062^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~663~^1.154^6^0.082^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~665~^0.093^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~670~^0.093^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~672~^0.004^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~673~^0.605^6^0.022^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~674~^7.537^6^0.371^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~675~^0.612^6^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~687~^0.164^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23192~^~693~^1.216^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~695~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23192~^~697~^0.034^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~851~^0.029^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23192~^~853~^0.022^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~312~^0.064^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~315~^0.064^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~404~^0.084^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~405~^0.244^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~406~^4.153^4^0.122^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~410~^0.466^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~415~^0.397^4^0.025^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~501~^0.201^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~502~^0.840^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~503~^0.833^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~504~^1.531^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~505~^1.695^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~506~^0.483^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~507~^0.180^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~508~^0.715^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~509~^0.663^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~510~^0.895^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~511~^1.210^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~512~^0.660^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~513~^1.108^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~514~^1.731^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~515~^2.915^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~516~^0.884^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~517~^0.799^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~518~^0.732^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~521~^0.122^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23193~^~605~^1.324^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~606~^9.265^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~610~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~611~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~612~^0.631^4^0.049^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~613~^4.960^4^0.353^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~614~^3.209^4^0.223^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~615~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~617~^8.879^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~618~^0.809^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~620~^0.045^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~625~^0.121^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~626~^0.683^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~628~^0.041^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23193~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~645~^9.929^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~646~^0.921^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~652~^0.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~653~^0.285^4^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~662~^0.061^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~663~^1.171^4^0.102^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~665~^0.092^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~670~^0.092^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~673~^0.622^4^0.027^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~674~^7.709^4^0.460^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~675~^0.625^4^0.032^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~687~^0.171^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23193~^~693~^1.232^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~695~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23193~^~697~^0.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~851~^0.029^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23193~^~853~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~312~^0.063^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~315~^0.063^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~404~^0.084^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~405~^0.224^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~406~^4.454^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~410~^0.495^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~415~^0.437^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~501~^0.207^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~502~^0.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~503~^0.875^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~504~^1.633^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~505~^1.823^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~506~^0.509^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~507~^0.193^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~508~^0.753^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~509~^0.707^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~510~^0.935^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~511~^1.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~512~^0.721^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~513~^1.160^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~514~^1.844^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~515~^3.079^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~516~^0.913^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~517~^0.851^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~518~^0.781^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~521~^0.126^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23194~^~605~^1.287^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~606~^8.844^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~610~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~611~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~612~^0.604^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~613~^4.684^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~614~^3.122^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~615~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~617~^8.410^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~618~^0.780^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~620~^0.042^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~625~^0.119^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~626~^0.643^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~628~^0.040^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23194~^~631~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~645~^9.399^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~646~^0.886^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~652~^0.113^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~653~^0.265^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~662~^0.063^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~663~^1.129^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~665~^0.095^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~670~^0.093^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~672~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~673~^0.580^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~674~^7.280^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~675~^0.592^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~687~^0.154^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23194~^~693~^1.192^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~695~^0.095^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23194~^~697~^0.034^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~851~^0.029^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23194~^~853~^0.021^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~312~^0.076^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~315~^0.076^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~404~^0.070^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~405~^0.294^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~406~^4.666^4^0.215^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~410~^0.529^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~415~^0.439^4^0.031^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~501~^0.257^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~502~^1.075^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~503~^1.065^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~504~^1.958^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~505~^2.167^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~506~^0.618^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~507~^0.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~508~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~509~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~510~^1.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~511~^1.547^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~512~^0.844^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~513~^1.417^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~514~^2.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~515~^3.729^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~516~^1.130^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~517~^1.022^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~518~^0.936^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~521~^0.157^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23195~^~605~^1.571^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~606~^10.307^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~610~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~611~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~612~^0.685^4^0.048^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~613~^5.436^4^0.328^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~614~^3.657^4^0.185^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~615~^0.017^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~617~^10.066^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~618~^0.923^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~620~^0.053^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~625~^0.138^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~626~^0.751^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~628~^0.049^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23195~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~645~^11.247^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~646~^1.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~652~^0.138^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~653~^0.329^4^0.027^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~654~^0.011^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~662~^0.066^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~663~^1.408^4^0.131^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~665~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~670~^0.101^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~672~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~673~^0.685^4^0.035^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~674~^8.658^4^0.415^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~675~^0.724^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~687~^0.205^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~689~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23195~^~693~^1.473^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~695~^0.097^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23195~^~697~^0.039^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~851~^0.039^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23195~^~853~^0.023^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~312~^0.085^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~315~^0.085^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~404~^0.071^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~405~^0.275^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~406~^5.270^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~410~^0.544^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~415~^0.534^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~501~^0.278^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~502~^1.193^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~503~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~504~^2.200^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~505~^2.456^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~506~^0.686^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~508~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~509~^0.952^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~510~^1.259^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~511~^1.737^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~512~^0.971^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~513~^1.563^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~514~^2.483^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~515~^4.147^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~516~^1.229^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~517~^1.146^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~518~^1.052^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~521~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23196~^~605~^1.338^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~606~^8.749^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~610~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~611~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~612~^0.586^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~613~^4.619^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~614~^3.102^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~615~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~617~^8.419^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~618~^0.838^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~620~^0.060^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~625~^0.119^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~626~^0.633^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~628~^0.042^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23196~^~631~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~645~^9.426^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~646~^0.981^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~652~^0.114^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~653~^0.273^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~662~^0.049^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~663~^1.206^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~665~^0.083^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~670~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~672~^0.005^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~673~^0.584^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~674~^7.213^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~675~^0.665^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~687~^0.168^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23196~^~693~^1.255^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~695~^0.083^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23196~^~697~^0.045^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~851~^0.036^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23196~^~853~^0.025^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~312~^0.080^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~315~^0.080^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~404~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~405~^0.287^6^0.014^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~406~^4.908^6^0.173^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~410~^0.536^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~415~^0.477^6^0.025^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~501~^0.265^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~502~^1.116^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~503~^1.103^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~504~^2.041^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~505~^2.269^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~506~^0.641^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~508~^0.950^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~509~^0.883^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~510~^1.184^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~511~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~512~^0.888^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~513~^1.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~514~^2.308^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~515~^3.873^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~516~^1.165^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~517~^1.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~518~^0.975^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~521~^0.162^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23197~^~605~^1.478^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~606~^9.684^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~610~^0.016^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~611~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~612~^0.645^6^0.039^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~613~^5.109^6^0.264^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~614~^3.435^6^0.149^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~615~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~617~^9.407^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~618~^0.889^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~620~^0.056^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~625~^0.130^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~626~^0.704^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~628~^0.046^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~629~^0.001^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23197~^~631~^0.014^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~645~^10.519^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~646~^1.027^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~652~^0.128^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~653~^0.307^6^0.022^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~654~^0.011^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~662~^0.059^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~663~^1.327^6^0.105^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~665~^0.092^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~670~^0.097^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~672~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~673~^0.645^6^0.028^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~674~^8.080^6^0.334^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~675~^0.700^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~687~^0.190^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23197~^~693~^1.386^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~695~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23197~^~697~^0.042^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~851~^0.038^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23197~^~853~^0.024^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~312~^0.079^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~315~^0.079^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~404~^0.080^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~405~^0.265^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~406~^5.023^6^0.096^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~410~^0.580^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~415~^0.470^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~501~^0.272^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~502~^1.145^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~503~^1.132^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~504~^2.094^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~505~^2.327^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~506~^0.657^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~507~^0.248^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~508~^0.974^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~509~^0.905^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~510~^1.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~511~^1.654^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~512~^0.911^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~513~^1.506^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~514~^2.367^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~515~^3.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~516~^1.195^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~517~^1.090^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~518~^1.000^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~521~^0.166^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23198~^~605~^1.438^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~606~^9.419^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~610~^0.015^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~611~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~612~^0.613^6^0.043^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~613~^4.968^6^0.249^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~614~^3.351^6^0.135^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~615~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~617~^9.207^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~618~^0.936^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~620~^0.077^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~625~^0.124^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~626~^0.677^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~628~^0.041^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~629~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23198~^~631~^0.015^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~645~^10.277^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~646~^1.101^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~652~^0.124^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~653~^0.301^6^0.018^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~654~^0.014^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~662~^0.054^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~663~^1.299^6^0.090^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~665~^0.084^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~670~^0.099^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~672~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~673~^0.623^6^0.030^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~674~^7.907^6^0.298^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~675~^0.753^6^0.043^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~687~^0.188^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23198~^~693~^1.353^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~695~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23198~^~697~^0.040^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~851~^0.038^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23198~^~853~^0.025^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~312~^0.082^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~315~^0.082^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~404~^0.087^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~405~^0.252^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~406~^4.851^4^0.120^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~410~^0.590^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~415~^0.464^4^0.017^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~501~^0.268^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~502~^1.122^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~503~^1.111^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~504~^2.043^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~505~^2.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~506~^0.645^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~508~^0.954^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~509~^0.885^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~510~^1.195^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~511~^1.615^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~512~^0.880^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~513~^1.479^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~514~^2.311^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~515~^3.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~516~^1.180^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~517~^1.066^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~518~^0.977^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~521~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23199~^~605~^1.520^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~606~^10.044^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~610~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~611~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~612~^0.652^4^0.054^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~613~^5.313^4^0.310^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~614~^3.562^4^0.168^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~615~^0.017^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~617~^9.894^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~618~^0.994^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~619~^0.040^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~620~^0.086^4^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~621~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~625~^0.133^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~626~^0.724^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~628~^0.044^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~629~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23199~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~645~^11.039^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~646~^1.173^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~652~^0.130^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~653~^0.321^4^0.022^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~654~^0.016^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~662~^0.055^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~663~^1.378^4^0.111^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~665~^0.087^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~670~^0.104^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~673~^0.669^4^0.037^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~674~^8.516^4^0.370^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~675~^0.804^4^0.054^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~687~^0.203^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23199~^~693~^1.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~695~^0.087^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23199~^~697~^0.041^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~851~^0.040^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23199~^~853~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~312~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~315~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~404~^0.072^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~405~^0.285^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~406~^5.281^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~410~^0.570^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~415~^0.480^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~501~^0.279^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~502~^1.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~503~^1.179^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~504~^2.202^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~505~^2.458^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~506~^0.687^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~507~^0.261^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~508~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~509~^0.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~510~^1.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~511~^1.738^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~512~^0.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~513~^1.564^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~514~^2.485^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~515~^4.150^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~516~^1.230^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~517~^1.147^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~518~^1.053^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~521~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23200~^~605~^1.314^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~606~^8.482^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~610~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~611~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~612~^0.556^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~613~^4.452^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~614~^3.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~615~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~617~^8.175^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~618~^0.847^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~619~^0.034^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~620~^0.065^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~625~^0.111^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~626~^0.607^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~628~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~629~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23200~^~631~^0.015^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~645~^9.135^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~646~^0.992^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~652~^0.116^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~653~^0.270^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~662~^0.052^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~663~^1.181^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~665~^0.080^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~670~^0.091^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~672~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~673~^0.555^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~674~^6.994^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~675~^0.676^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~687~^0.165^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23200~^~693~^1.233^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~695~^0.080^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23200~^~697~^0.039^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~851~^0.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23200~^~853~^0.024^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~312~^0.067^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~315~^0.067^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~404~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~405~^0.239^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~406~^4.681^6^0.053^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~410~^0.477^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~415~^0.398^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~501~^0.211^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~502~^0.889^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~503~^0.878^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~504~^1.625^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~505~^1.806^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~506~^0.510^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~507~^0.192^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~508~^0.756^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~509~^0.703^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~510~^0.942^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~511~^1.284^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~512~^0.707^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~513~^1.169^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~514~^1.837^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~515~^3.083^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~516~^0.928^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~517~^0.846^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~518~^0.776^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~521~^0.129^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23201~^~605~^1.168^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~606~^8.251^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~610~^0.015^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~611~^0.014^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~612~^0.550^6^0.036^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~613~^4.381^6^0.234^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~614~^2.903^6^0.128^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~615~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~617~^7.927^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~618~^0.772^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~620~^0.056^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~625~^0.106^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~626~^0.580^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~628~^0.036^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~629~^0.000^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23201~^~631~^0.012^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~645~^8.830^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~646~^0.889^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~652~^0.108^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~653~^0.257^6^0.017^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~654~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~662~^0.054^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~663~^1.029^6^0.067^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~665~^0.085^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~670~^0.084^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~672~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~673~^0.526^6^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~674~^6.898^6^0.288^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~675~^0.603^6^0.022^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~687~^0.152^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23201~^~693~^1.083^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23201~^~697~^0.028^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~851~^0.025^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23201~^~853~^0.020^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~312~^0.063^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~315~^0.063^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~404~^0.107^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~405~^0.244^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~406~^4.629^4^0.066^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~410~^0.474^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~415~^0.404^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~501~^0.206^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~502~^0.862^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~503~^0.854^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~504~^1.571^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~505~^1.739^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~506~^0.496^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~507~^0.185^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~508~^0.734^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~509~^0.680^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~510~^0.919^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~511~^1.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~512~^0.677^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~513~^1.137^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~514~^1.776^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~515~^2.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~516~^0.907^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~517~^0.820^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~518~^0.751^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~521~^0.126^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23202~^~605~^1.244^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~606~^8.741^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~610~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~611~^0.015^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~612~^0.581^4^0.045^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~613~^4.639^4^0.291^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~614~^3.077^4^0.158^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~615~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~617~^8.372^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~618~^0.809^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~620~^0.058^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~625~^0.113^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~626~^0.609^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~628~^0.038^4^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23202~^~631~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~645~^9.322^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~646~^0.932^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~652~^0.114^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~653~^0.273^4^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~654~^0.011^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~662~^0.057^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~663~^1.098^4^0.083^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~665~^0.090^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~670~^0.090^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~672~^0.005^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~673~^0.553^4^0.032^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~674~^7.274^4^0.357^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~675~^0.629^4^0.028^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~687~^0.162^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23202~^~693~^1.154^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~695~^0.090^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23202~^~697~^0.029^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~851~^0.027^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23202~^~853~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~312~^0.074^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~315~^0.072^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~404~^0.086^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~405~^0.233^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~406~^4.759^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~410~^0.480^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~415~^0.388^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~501~^0.219^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~502~^0.939^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~503~^0.928^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~504~^1.732^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~505~^1.934^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~506~^0.540^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~507~^0.205^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~508~^0.798^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~509~^0.750^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~510~^0.991^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~511~^1.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~512~^0.765^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~513~^1.231^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~514~^1.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~515~^3.265^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~516~^0.968^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~517~^0.902^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~518~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~521~^0.134^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23213~^~605~^1.054^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~606~^7.515^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~610~^0.013^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~611~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~612~^0.503^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~613~^3.993^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~614~^2.642^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~615~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~617~^7.260^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~618~^0.716^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~620~^0.052^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~625~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~626~^0.537^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~628~^0.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23213~^~631~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~645~^8.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~646~^0.825^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~652~^0.100^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~653~^0.231^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~662~^0.051^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~663~^0.925^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~665~^0.078^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~670~^0.075^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~672~^0.004^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~673~^0.486^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~674~^6.335^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~675~^0.563^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~687~^0.136^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23213~^~693~^0.976^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23213~^~697~^0.028^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~851~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23213~^~853~^0.019^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~312~^0.108^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~315~^0.108^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~404~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~405~^0.348^6^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~406~^6.338^6^0.161^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~410~^0.683^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~415~^0.483^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~501~^0.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~502~^1.384^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~503~^1.368^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~504~^2.531^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~505~^2.813^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~506~^0.794^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~507~^0.299^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~508~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~509~^1.094^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~510~^1.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~511~^1.999^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~512~^1.101^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~513~^1.820^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~514~^2.861^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~515~^4.801^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~516~^1.445^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~517~^1.317^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~518~^1.209^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~521~^0.201^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23214~^~605~^0.657^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~606~^5.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~610~^0.008^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~611~^0.007^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~612~^0.345^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~613~^2.868^6^0.140^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~614~^1.606^6^0.130^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~615~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~617~^5.479^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~618~^0.501^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~620~^0.067^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~625~^0.097^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~626~^0.509^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~628~^0.015^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~629~^0.000^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23214~^~631~^0.015^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~645~^6.278^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~646~^0.616^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~652~^0.061^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~653~^0.148^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~662~^0.020^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~663~^0.620^6^0.060^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~665~^0.017^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~670~^0.043^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~672~^0.001^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~673~^0.489^6^0.039^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~674~^4.859^6^0.082^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~675~^0.442^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~687~^0.127^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23214~^~693~^0.641^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23214~^~697~^0.051^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~851~^0.011^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23214~^~853~^0.021^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~312~^0.105^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~315~^0.105^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~404~^0.088^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~405~^0.350^4^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~406~^6.224^4^0.200^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~410~^0.692^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~415~^0.462^4^0.020^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~501~^0.324^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~502~^1.355^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~503~^1.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~504~^2.468^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~505~^2.733^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~506~^0.779^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~507~^0.291^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~508~^1.153^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~509~^1.069^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~510~^1.444^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~511~^1.951^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~512~^1.064^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~513~^1.786^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~514~^2.791^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~515~^4.701^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~516~^1.425^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~517~^1.288^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~518~^1.181^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~521~^0.197^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23215~^~605~^0.724^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~606~^5.554^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~612~^0.379^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~613~^3.148^4^0.174^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~614~^1.756^4^0.161^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~615~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~617~^6.048^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23215~^~618~^0.548^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23215~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23215~^~620~^0.071^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~625~^0.106^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~626~^0.564^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23215~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~628~^0.016^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23215~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~645~^6.927^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~646~^0.665^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~652~^0.070^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~653~^0.171^4^0.019^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~654~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~662~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~663~^0.686^4^0.075^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~665~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~670~^0.047^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~673~^0.543^4^0.048^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~674~^5.362^4^0.102^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~675~^0.484^4^0.029^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~687~^0.147^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23215~^~693~^0.707^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23215~^~697~^0.047^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~851~^0.012^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23215~^~853~^0.019^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~312~^0.106^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~315~^0.106^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~404~^0.078^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~405~^0.346^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~406~^6.509^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~410~^0.674^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~415~^0.515^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~501~^0.337^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~502~^1.444^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~503~^1.426^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~504~^2.663^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~505~^2.973^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~506~^0.831^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~507~^0.315^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~508~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~509~^1.152^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~510~^1.524^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~511~^2.102^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~512~^1.176^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~513~^1.892^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~514~^3.006^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~515~^5.020^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~516~^1.488^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~517~^1.387^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~518~^1.274^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~521~^0.205^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23216~^~605~^0.557^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~606~^4.311^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~611~^0.008^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~612~^0.295^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~613~^2.448^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~614~^1.383^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~617~^4.626^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~618~^0.430^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~620~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~625~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~626~^0.427^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~629~^0.000^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23216~^~631~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~645~^5.304^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~646~^0.543^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~652~^0.048^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~653~^0.113^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~662~^0.019^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~663~^0.522^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~665~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~670~^0.036^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~672~^0.001^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~673~^0.408^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~674~^4.104^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~675~^0.379^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~687~^0.097^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23216~^~693~^0.541^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23216~^~697~^0.058^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~851~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23216~^~853~^0.024^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~312~^0.085^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~315~^0.085^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~404~^0.055^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~405~^0.289^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~406~^5.241^6^0.095^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~410~^0.594^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~415~^0.421^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~501~^0.228^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~502~^0.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~503~^0.949^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~504~^1.757^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~505~^1.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~506~^0.552^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~507~^0.208^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~508~^0.818^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~509~^0.760^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~510~^1.019^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~511~^1.388^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~512~^0.764^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~513~^1.264^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~514~^1.986^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~515~^3.333^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~516~^1.003^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~517~^0.914^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~518~^0.839^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~521~^0.139^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23217~^~605~^0.628^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~606~^4.626^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~610~^0.007^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~611~^0.007^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~612~^0.309^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~613~^2.542^6^0.091^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~614~^1.558^6^0.052^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~617~^4.795^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~618~^0.449^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~620~^0.052^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~621~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~625~^0.077^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~626~^0.398^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~628~^0.019^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~629~^0.003^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23217~^~631~^0.011^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~645~^5.431^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~646~^0.548^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~652~^0.054^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~653~^0.136^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~662~^0.019^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~663~^0.589^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~665~^0.021^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~670~^0.045^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~672~^0.002^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~673~^0.379^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~674~^4.207^6^0.063^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~675~^0.384^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~687~^0.105^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23217~^~693~^0.608^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23217~^~697~^0.037^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~851~^0.015^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23217~^~853~^0.016^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~312~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~315~^0.084^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~404~^0.053^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~405~^0.275^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~406~^5.076^4^0.117^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~410~^0.621^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~415~^0.422^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~501~^0.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~502~^0.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~503~^0.932^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~504~^1.713^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~505~^1.897^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~506~^0.540^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~507~^0.202^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~508~^0.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~509~^0.742^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~510~^1.002^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~511~^1.354^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~512~^0.738^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~513~^1.240^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~514~^1.937^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~515~^3.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~516~^0.989^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~517~^0.894^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~518~^0.819^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23218~^~605~^0.685^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~606~^5.034^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~611~^0.008^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~612~^0.333^4^0.018^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~613~^2.771^4^0.113^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~614~^1.686^4^0.065^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~615~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~617~^5.307^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~618~^0.491^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~620~^0.056^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~625~^0.083^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~626~^0.441^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~628~^0.020^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23218~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~645~^6.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~646~^0.596^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~652~^0.062^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~653~^0.154^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~662~^0.021^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~663~^0.642^4^0.030^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~665~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~670~^0.049^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~673~^0.420^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~674~^4.665^4^0.079^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~675~^0.420^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~687~^0.121^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23218~^~693~^0.663^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23218~^~697~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~851~^0.015^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23218~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~312~^0.081^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~315~^0.081^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~404~^0.058^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~405~^0.310^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~406~^5.490^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~410~^0.567^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~415~^0.420^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~501~^0.234^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~502~^1.002^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~503~^0.990^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~504~^1.849^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~505~^2.064^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~506~^0.577^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~507~^0.219^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~508~^0.852^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~509~^0.800^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~510~^1.058^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~511~^1.460^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~512~^0.817^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~513~^1.314^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~514~^2.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~515~^3.485^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~516~^1.033^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~517~^0.963^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~518~^0.884^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23219~^~605~^0.543^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~606~^4.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~610~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~611~^0.007^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~612~^0.273^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~613~^2.200^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~614~^1.365^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~617~^4.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~618~^0.387^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~620~^0.045^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~625~^0.068^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~626~^0.334^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~628~^0.016^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23219~^~631~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~645~^4.561^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~646~^0.475^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~652~^0.043^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~653~^0.110^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~662~^0.017^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~663~^0.508^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~665~^0.018^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~670~^0.040^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~672~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~673~^0.317^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~674~^3.520^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~675~^0.329^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~687~^0.079^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23219~^~693~^0.525^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23219~^~697~^0.035^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~851~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23219~^~853~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23220~^~312~^0.081^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~315~^0.012^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~404~^0.043^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~405~^0.180^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~406~^5.682^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~410~^0.681^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~415~^0.380^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~501~^0.281^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~502~^1.175^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~503~^1.165^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~504~^2.141^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~505~^2.371^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~506~^0.676^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~507~^0.252^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~508~^1.000^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~509~^0.927^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~510~^1.252^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~511~^1.692^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~512~^0.923^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~513~^1.550^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~514~^2.421^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~515~^4.078^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~516~^1.236^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~517~^1.117^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~518~^1.024^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~521~^0.402^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~606~^5.600^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~610~^0.000^0^^~4~^~PAE~^^^^^^^^^^~07/01/2011~ -~23220~^~611~^0.011^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~612~^0.419^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~613~^3.162^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~614~^1.768^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~615~^0.012^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~617~^5.612^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~618~^0.340^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~619~^0.049^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~620~^0.044^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23220~^~624~^0.000^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~625~^0.114^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~626~^0.528^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~628~^0.048^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23220~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23220~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23220~^~645~^6.398^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~646~^0.486^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23220~^~652~^0.069^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~653~^0.160^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~672~^0.000^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~685~^0.012^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~687~^0.097^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~689~^0.000^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~697~^0.000^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23220~^~851~^0.041^0^^~4~^~PIE~^^^^^^^^^^~07/01/2011~ -~23221~^~312~^0.206^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~315~^0.205^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~404~^0.122^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~405~^0.831^6^0.027^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~406~^5.096^6^0.137^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~410~^1.330^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~415~^0.450^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~501~^0.303^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~502~^1.275^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~503~^1.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~504~^2.332^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~505~^2.592^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~506~^0.732^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~507~^0.276^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~508~^1.085^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~509~^1.008^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~510~^1.352^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~511~^1.842^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~512~^1.014^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~513~^1.677^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~514~^2.636^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~515~^4.424^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~516~^1.331^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~517~^1.214^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~518~^1.114^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~521~^0.185^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23221~^~605~^0.951^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~606~^7.405^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~610~^0.010^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~611~^0.010^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~612~^0.442^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~613~^3.861^6^0.053^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~614~^2.752^6^0.265^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~615~^0.008^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~617~^7.388^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~618~^0.894^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~620~^0.138^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~621~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~625~^0.088^6^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~626~^0.488^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~628~^0.021^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~629~^0.006^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23221~^~631~^0.023^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~645~^8.235^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~646~^1.128^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~652~^0.074^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~653~^0.228^6^0.022^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~654~^0.020^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~662~^0.018^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~663~^0.911^6^0.062^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~665~^0.022^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~670~^0.062^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~672~^0.001^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~673~^0.470^6^0.061^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~674~^6.478^6^0.088^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~675~^0.810^6^0.053^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~687~^0.152^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~689~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23221~^~693~^0.929^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23221~^~697~^0.098^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~851~^0.026^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23221~^~853~^0.039^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~312~^0.205^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~315~^0.204^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~404~^0.126^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~405~^0.827^4^0.033^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~406~^4.836^4^0.170^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~410~^1.360^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~415~^0.437^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~501~^0.297^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~502~^1.240^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~503~^1.229^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~504~^2.260^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~505~^2.502^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~506~^0.713^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~507~^0.266^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~508~^1.056^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~509~^0.979^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~510~^1.322^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~511~^1.786^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~512~^0.974^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~513~^1.636^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~514~^2.556^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~515~^4.304^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~516~^1.305^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~517~^1.179^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~518~^1.081^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~521~^0.181^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23222~^~605~^1.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~606~^7.733^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~610~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~611~^0.011^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~612~^0.461^4^0.014^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~613~^4.056^4^0.066^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~614~^2.835^4^0.330^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~615~^0.007^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~617~^7.834^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~618~^0.940^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~620~^0.146^4^0.020^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~621~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~625~^0.092^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~626~^0.519^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~628~^0.021^4^0.012^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23222~^~631~^0.024^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~645~^8.732^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~646~^1.176^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~652~^0.079^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~653~^0.253^4^0.027^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~654~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~662~^0.019^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~663~^0.959^4^0.078^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~665~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~670~^0.061^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~673~^0.500^4^0.076^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~674~^6.876^4^0.110^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~675~^0.857^4^0.065^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~687~^0.170^4^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~689~^0.039^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23222~^~693~^0.978^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23222~^~697~^0.096^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~851~^0.023^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23222~^~853~^0.039^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~312~^0.212^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~315~^0.212^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~404~^0.117^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~405~^0.837^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~406~^5.485^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~410~^1.300^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~415~^0.470^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~501~^0.313^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~502~^1.343^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~503~^1.326^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~504~^2.476^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~505~^2.764^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~506~^0.772^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~507~^0.293^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~508~^1.141^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~509~^1.071^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~510~^1.417^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~511~^1.955^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~512~^1.094^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~513~^1.759^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~514~^2.795^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~515~^4.668^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~516~^1.384^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~517~^1.290^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~518~^1.184^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~521~^0.191^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23223~^~605~^0.877^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~606~^6.911^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~610~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~611~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~612~^0.413^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~613~^3.568^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~614~^2.628^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~615~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~617~^6.720^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~618~^0.826^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~620~^0.126^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~625~^0.083^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~626~^0.442^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~628~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~629~^0.010^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23223~^~631~^0.023^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~645~^7.490^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~646~^1.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~652~^0.066^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~653~^0.190^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~654~^0.018^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~662~^0.016^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~663~^0.839^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~665~^0.023^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~670~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~672~^0.001^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~673~^0.426^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~674~^5.881^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~675~^0.740^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~687~^0.125^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~689~^0.040^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23223~^~693~^0.855^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23223~^~697~^0.101^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~851~^0.030^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23223~^~853~^0.040^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~312~^0.170^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~315~^0.170^3^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~404~^0.104^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~405~^0.556^6^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~406~^4.092^6^0.056^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~410~^1.127^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~415~^0.385^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~501~^0.201^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~502~^0.848^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~503~^0.838^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~504~^1.550^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~505~^1.723^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~506~^0.487^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~507~^0.183^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~508~^0.721^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~509~^0.670^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~510~^0.899^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~511~^1.225^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~512~^0.674^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~513~^1.115^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~514~^1.752^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~515~^2.940^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~516~^0.885^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~517~^0.807^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~518~^0.740^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~521~^0.123^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23224~^~605~^0.987^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~606~^7.138^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~610~^0.009^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~611~^0.009^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~612~^0.439^6^0.024^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~613~^3.661^6^0.150^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~614~^2.706^6^0.110^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~615~^0.012^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~617~^6.959^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~618~^0.718^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~620~^0.076^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~625~^0.087^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~626~^0.451^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~628~^0.030^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~629~^0.005^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23224~^~631~^0.014^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~645~^7.730^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~646~^0.869^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~652~^0.068^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~653~^0.222^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~654~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~662~^0.013^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~663~^0.947^6^0.051^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~665~^0.026^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~670~^0.068^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~672~^0.002^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~673~^0.438^6^0.063^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~674~^6.011^6^0.173^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~675~^0.623^6^0.007^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~687~^0.140^6^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~689~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23224~^~693~^0.960^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23224~^~697~^0.063^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~851~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23224~^~853~^0.025^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~312~^0.171^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~315~^0.171^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~404~^0.103^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~405~^0.562^4^0.016^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~406~^4.043^4^0.070^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~410~^1.163^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~415~^0.374^4^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~501~^0.198^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~502~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~503~^0.822^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~504~^1.511^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~505~^1.672^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~506~^0.477^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~507~^0.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~508~^0.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~509~^0.654^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~510~^0.883^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~511~^1.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~512~^0.651^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~513~^1.093^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~514~^1.708^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~515~^2.877^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~516~^0.872^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~517~^0.788^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~518~^0.723^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~521~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23225~^~605~^1.028^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~606~^7.426^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~611~^0.009^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~612~^0.454^4^0.030^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~613~^3.816^4^0.186^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~614~^2.805^4^0.136^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~615~^0.011^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~617~^7.317^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~618~^0.749^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~620~^0.078^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~621~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~625~^0.090^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~626~^0.473^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~628~^0.030^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~629~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23225~^~631~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~645~^8.126^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~646~^0.907^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~652~^0.071^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~653~^0.240^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~654~^0.013^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~662~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~663~^0.988^4^0.063^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~665~^0.027^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~670~^0.071^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~672~^0.003^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~673~^0.460^4^0.078^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~674~^6.329^4^0.215^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~675~^0.652^4^0.008^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~687~^0.151^4^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23225~^~693~^1.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23225~^~697~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~851~^0.029^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23225~^~853~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~312~^0.167^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~315~^0.167^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~404~^0.105^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~405~^0.548^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~406~^4.166^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~410~^1.091^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~415~^0.400^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~501~^0.207^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~502~^0.885^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~503~^0.874^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~504~^1.633^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~505~^1.822^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~506~^0.509^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~507~^0.193^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~508~^0.752^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~509~^0.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~510~^0.934^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~511~^1.289^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~512~^0.721^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~513~^1.160^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~514~^1.843^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~515~^3.077^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~516~^0.912^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~517~^0.850^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~518~^0.781^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~521~^0.126^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23226~^~605~^0.924^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~606~^6.705^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~610~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~611~^0.009^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~612~^0.416^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~613~^3.430^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~614~^2.557^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~615~^0.013^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~617~^6.422^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~618~^0.670^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~620~^0.073^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~625~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~626~^0.419^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~628~^0.031^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~629~^0.003^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23226~^~631~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~645~^7.137^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~646~^0.813^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~652~^0.064^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~653~^0.197^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~654~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~662~^0.012^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~663~^0.887^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~665~^0.025^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~670~^0.064^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~672~^0.002^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~673~^0.407^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~674~^5.535^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~675~^0.581^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~687~^0.123^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23226~^~693~^0.899^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~695~^0.025^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23226~^~697~^0.061^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~851~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23226~^~853~^0.024^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~312~^0.085^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23227~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~405~^0.301^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~406~^5.149^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~415~^0.500^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~501~^0.278^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~502~^1.171^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~503~^1.157^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~504~^2.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~505~^2.380^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~506~^0.672^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~508~^0.997^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~509~^0.926^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~510~^1.242^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~511~^1.692^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~512~^0.931^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~513~^1.541^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~514~^2.421^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~515~^4.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~516~^1.223^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~517~^1.115^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~518~^1.023^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23227~^~521~^0.170^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23227~^~606~^8.443^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~610~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~611~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~612~^0.562^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~613~^4.455^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~614~^2.995^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~617~^8.202^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~618~^0.775^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~619~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~620~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~626~^0.613^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~628~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23227~^~631~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~645~^9.171^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23227~^~646~^0.896^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~312~^0.081^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23228~^~404~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~405~^0.306^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~406~^4.863^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~415~^0.458^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~501~^0.268^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~502~^1.120^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~503~^1.110^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~504~^2.040^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~505~^2.259^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~506~^0.644^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~508~^0.953^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~509~^0.883^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~510~^1.193^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~511~^1.613^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~512~^0.879^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~513~^1.476^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~514~^2.307^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~515~^3.886^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~516~^1.178^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~517~^1.065^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~518~^0.976^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23228~^~521~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23228~^~606~^9.244^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~610~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~611~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~612~^0.614^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~613~^4.876^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~614~^3.280^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~617~^9.028^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~618~^0.828^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~619~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~620~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~621~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~626~^0.673^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~628~^0.043^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23228~^~631~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~645~^10.087^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23228~^~646~^0.949^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~312~^0.091^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23229~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~405~^0.291^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~406~^5.580^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~415~^0.565^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~501~^0.295^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~502~^1.263^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~503~^1.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~504~^2.329^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~505~^2.600^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~506~^0.727^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~507~^0.276^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~508~^1.073^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~509~^1.008^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~510~^1.333^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~511~^1.839^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~512~^1.029^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~513~^1.655^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~514~^2.629^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~515~^4.391^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~516~^1.302^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~517~^1.213^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~518~^1.114^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23229~^~521~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23229~^~606~^7.226^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~612~^0.484^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~613~^3.815^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~614~^2.562^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~617~^6.954^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~618~^0.692^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~619~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~620~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~626~^0.523^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~628~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23229~^~631~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~645~^7.786^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23229~^~646~^0.810^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~312~^0.070^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23230~^~404~^0.099^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~405~^0.244^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~406~^4.782^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~415~^0.407^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~501~^0.215^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~502~^0.908^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~503~^0.897^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~504~^1.660^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~505~^1.845^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~506~^0.521^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~507~^0.196^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~508~^0.772^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~509~^0.718^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~510~^0.963^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~511~^1.311^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~512~^0.722^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~513~^1.194^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~514~^1.876^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~515~^3.149^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~516~^0.948^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~517~^0.864^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~518~^0.793^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23230~^~521~^0.132^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23230~^~606~^7.363^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~610~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~612~^0.491^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~613~^3.909^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~614~^2.590^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~617~^7.074^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~618~^0.689^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~619~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~620~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~626~^0.518^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23230~^~631~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~645~^7.880^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23230~^~646~^0.794^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~312~^0.065^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23231~^~404~^0.109^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~405~^0.248^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~406~^4.704^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~415~^0.411^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~501~^0.210^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~502~^0.876^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~503~^0.868^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~504~^1.596^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~505~^1.767^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~506~^0.504^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~507~^0.188^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~508~^0.746^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~509~^0.691^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~510~^0.933^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~511~^1.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~512~^0.688^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~513~^1.155^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~514~^1.805^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~515~^3.040^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~516~^0.921^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~517~^0.833^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~518~^0.763^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23231~^~521~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23231~^~606~^8.074^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~610~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~611~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~612~^0.537^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~613~^4.285^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~614~^2.842^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~617~^7.733^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~618~^0.747^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~619~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~620~^0.053^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~626~^0.563^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~628~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23231~^~631~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~645~^8.611^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23231~^~646~^0.861^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~312~^0.078^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23232~^~404~^0.088^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~405~^0.239^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~406~^4.896^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~415~^0.399^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~501~^0.226^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~502~^0.966^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~503~^0.954^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~504~^1.782^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~505~^1.989^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~506~^0.556^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~507~^0.211^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~508~^0.821^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~509~^0.771^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~510~^1.020^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~511~^1.407^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~512~^0.787^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~513~^1.266^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~514~^2.012^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~515~^3.359^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~516~^0.996^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~517~^0.928^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~518~^0.852^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23232~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23232~^~606~^6.290^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~612~^0.421^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~613~^3.342^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~614~^2.211^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~617~^6.077^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~618~^0.599^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~619~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~620~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~626~^0.449^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~628~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23232~^~631~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~645~^6.773^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23232~^~646~^0.691^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23233~^~404~^0.093^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~405~^0.309^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~406~^5.006^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~415~^0.487^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~501~^0.271^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~502~^1.142^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~503~^1.128^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~504~^2.088^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~505~^2.321^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~506~^0.655^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~507~^0.247^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~508~^0.972^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~509~^0.903^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~510~^1.211^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~511~^1.650^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~512~^0.908^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~513~^1.502^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~514~^2.360^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~515~^3.961^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~516~^1.192^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~517~^1.087^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~518~^0.997^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23233~^~521~^0.166^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23233~^~606~^12.990^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~610~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~611~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~612~^0.861^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~613~^6.819^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~614~^4.660^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~617~^12.693^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~618~^1.059^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~619~^0.050^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~620~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~626~^0.956^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~628~^0.066^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23233~^~631~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~645~^14.191^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23233~^~646~^1.203^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23234~^~404~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~405~^0.304^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~406~^4.884^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~415~^0.462^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~501~^0.262^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~502~^1.094^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~503~^1.084^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~504~^1.993^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~505~^2.207^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~506~^0.629^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~507~^0.235^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~508~^0.931^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~509~^0.863^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~510~^1.166^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~511~^1.576^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~512~^0.859^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~513~^1.443^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~514~^2.254^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~515~^3.797^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~516~^1.151^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~517~^1.040^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~518~^0.954^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23234~^~521~^0.159^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23234~^~606~^13.770^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~610~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~611~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~612~^0.908^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~613~^7.238^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~614~^4.934^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~617~^13.488^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~618~^1.115^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~619~^0.052^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~620~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~626~^1.013^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~628~^0.070^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23234~^~631~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~645~^15.072^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23234~^~646~^1.263^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23235~^~404~^0.101^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~405~^0.317^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~406~^5.184^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~415~^0.525^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~501~^0.287^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~502~^1.227^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~503~^1.212^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~504~^2.264^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~505~^2.527^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~506~^0.706^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~507~^0.268^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~508~^1.043^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~509~^0.980^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~510~^1.296^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~511~^1.788^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~512~^1.000^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~513~^1.608^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~514~^2.556^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~515~^4.268^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~516~^1.265^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~517~^1.179^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~518~^1.083^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23235~^~521~^0.175^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23235~^~606~^11.822^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~610~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~611~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~612~^0.791^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~613~^6.191^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~614~^4.248^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~617~^11.501^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~618~^0.976^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~619~^0.046^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~620~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~626~^0.871^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~628~^0.060^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~629~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23235~^~631~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~645~^12.872^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23235~^~646~^1.115^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2011~ -~23236~^~312~^0.060^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23236~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~405~^0.210^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~406~^3.807^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~415~^0.368^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~501~^0.181^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~502~^0.761^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~503~^0.752^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~504~^1.392^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~505~^1.547^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~506~^0.437^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~507~^0.165^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~508~^0.648^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~509~^0.602^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~510~^0.807^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~511~^1.100^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~512~^0.605^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~513~^1.001^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~514~^1.574^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~515~^2.641^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~516~^0.795^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~517~^0.725^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~518~^0.665^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~521~^0.110^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23236~^~605~^1.881^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~606~^12.643^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~610~^0.021^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~611~^0.023^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~612~^0.838^6^0.040^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~613~^6.637^6^0.263^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~614~^4.535^6^0.170^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~615~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~617~^12.353^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~618~^1.031^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~619~^0.049^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~620~^0.046^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~625~^0.178^6^0.009^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~626~^0.930^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~628~^0.064^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~629~^0.001^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23236~^~631~^0.013^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~645~^13.811^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~646~^1.171^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~652~^0.168^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~653~^0.390^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~654~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~662~^0.080^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~663~^1.690^6^0.106^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~665~^0.111^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~670~^0.135^6^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~672~^0.006^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~673~^0.850^6^0.020^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~674~^10.663^6^0.306^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~675~^0.786^6^0.021^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~687~^0.246^6^0.010^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23236~^~693~^1.770^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~695~^0.111^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23236~^~697~^0.039^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~851~^0.049^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23236~^~853~^0.026^3^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~312~^0.059^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23237~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~405~^0.214^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~406~^3.649^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~415~^0.349^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~501~^0.177^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~502~^0.738^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~503~^0.732^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~504~^1.345^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~505~^1.489^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~506~^0.424^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~507~^0.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~508~^0.628^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~509~^0.582^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~510~^0.787^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~511~^1.063^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~512~^0.580^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~513~^0.974^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~514~^1.521^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~515~^2.562^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~516~^0.777^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~517~^0.702^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~518~^0.643^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~521~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23237~^~605~^1.949^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~606~^13.296^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~610~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~611~^0.024^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~612~^0.877^4^0.050^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~613~^6.990^4^0.326^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~614~^4.765^4^0.211^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~615~^0.022^4^0.002^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~617~^13.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23237~^~618~^1.076^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23237~^~619~^0.051^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23237~^~620~^0.047^4^0.005^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~625~^0.185^4^0.011^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~626~^0.978^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23237~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~628~^0.068^4^0.003^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23237~^~631~^0.012^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~645~^14.553^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~646~^1.219^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~652~^0.176^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~653~^0.410^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~654~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~662~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~663~^1.753^4^0.132^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~665~^0.114^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~670~^0.135^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~672~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~673~^0.897^4^0.025^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~674~^11.271^4^0.380^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~675~^0.827^4^0.026^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~687~^0.260^4^0.013^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23237~^~693~^1.835^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~695~^0.114^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23237~^~697~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~851~^0.051^4^0.004^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23237~^~853~^0.026^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~312~^0.060^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2011~ -~23238~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~405~^0.203^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~406~^4.046^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~415~^0.397^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~501~^0.188^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~502~^0.804^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~503~^0.795^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~504~^1.484^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~505~^1.656^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~506~^0.463^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~507~^0.176^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~508~^0.684^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~509~^0.642^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~510~^0.849^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~511~^1.172^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~512~^0.655^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~513~^1.054^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~514~^1.675^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~515~^2.797^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~516~^0.829^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~517~^0.773^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~518~^0.710^0^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~ -~23238~^~605~^1.779^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~606~^11.663^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~610~^0.020^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~611~^0.021^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~612~^0.781^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~613~^6.108^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~614~^4.191^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~615~^0.020^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~617~^11.346^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23238~^~618~^0.963^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23238~^~619~^0.046^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23238~^~620~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~625~^0.169^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~626~^0.859^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23238~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~628~^0.059^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~629~^0.001^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~ -~23238~^~631~^0.014^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~645~^12.698^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~646~^1.100^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~652~^0.154^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~653~^0.360^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~662~^0.079^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~663~^1.595^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~665~^0.105^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~670~^0.135^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~672~^0.006^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~673~^0.780^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~674~^9.751^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~675~^0.724^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~687~^0.225^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~689~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2011~ -~23238~^~693~^1.674^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~695~^0.105^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~ -~23238~^~697~^0.041^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~851~^0.046^2^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23238~^~853~^0.026^1^^~1~^~AR~^^^^^^^^^^~06/01/2011~ -~23239~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23239~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23239~^~405~^0.193^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23239~^~406~^5.851^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23239~^~415~^0.581^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23239~^~501~^0.343^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~502~^1.423^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~503~^1.416^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~504~^2.594^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~505~^2.889^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~506~^0.804^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~507~^0.301^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~508~^1.206^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~509~^1.128^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~510~^1.498^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~511~^2.021^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~512~^1.107^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~513~^1.806^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~514~^2.912^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~515~^4.937^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~516~^1.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~517~^1.263^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~518~^1.224^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23239~^~521~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23239~^~605~^0.320^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~606~^1.994^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~610~^0.003^0^^~4~^~BFFN~^~23176~^^^^^^^^^~07/01/2011~ -~23239~^~611~^0.004^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23239~^~612~^0.139^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~613~^1.151^4^0.088^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~614~^0.641^4^0.041^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~615~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~617~^2.403^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23239~^~618~^0.178^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23239~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23239~^~620~^0.040^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~625~^0.026^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~626~^0.199^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~628~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23239~^~631~^0.007^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23239~^~645~^2.693^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~646~^0.235^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23239~^~653~^0.054^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~654~^0.007^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~663~^0.320^4^0.035^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~670~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~672~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~674~^2.083^4^0.113^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~675~^0.159^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~685~^0.016^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~687~^0.053^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23239~^~693~^0.320^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23240~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23240~^~405~^0.183^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23240~^~406~^5.867^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23240~^~415~^0.659^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23240~^~501~^0.273^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~502~^1.134^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~503~^1.128^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~504~^2.068^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~505~^2.302^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~506~^0.641^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~507~^0.240^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~508~^0.961^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~509~^0.899^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~510~^1.194^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~511~^1.611^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~512~^0.883^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~513~^1.440^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~514~^2.321^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~515~^3.935^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~516~^1.037^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~517~^1.007^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~518~^0.976^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~521~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23240~^~605~^0.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~606~^1.392^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~610~^0.002^0^^~4~^~BFFN~^~23177~^^^^^^^^^~07/01/2011~ -~23240~^~611~^0.002^0^^~4~^~BFFN~^~23177~^^^^^^^^^~07/01/2011~ -~23240~^~612~^0.090^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~613~^0.812^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~614~^0.443^4^0.027^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~617~^1.751^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23240~^~618~^0.115^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23240~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23240~^~620~^0.021^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~625~^0.018^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~626~^0.117^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23240~^~631~^0.006^0^^~4~^~BFFN~^~23177~^^^^^^^^^~10/01/2001~ -~23240~^~645~^1.917^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~646~^0.143^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23240~^~653~^0.043^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~654~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~663~^0.189^4^0.041^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~670~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~674~^1.562^4^0.065^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~675~^0.105^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~685~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~687~^0.026^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23240~^~693~^0.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~312~^0.094^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~404~^0.067^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~405~^0.129^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~406~^7.440^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~415~^0.525^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23241~^~501~^0.346^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~502~^1.452^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~503~^1.440^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~504~^2.658^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~505~^2.970^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~506~^0.821^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~507~^0.310^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~508~^1.231^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~509~^1.153^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~510~^1.523^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~511~^2.072^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~512~^1.146^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~513~^1.844^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~514~^2.984^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~515~^5.037^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~516~^1.331^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~517~^1.297^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~518~^1.254^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23241~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23241~^~605~^0.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~606~^2.653^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~610~^0.004^0^^~4~^~BFFN~^~23100~^^^^^^^^^~07/01/2011~ -~23241~^~611~^0.005^0^^~4~^~BFFN~^~23100~^^^^^^^^^~07/01/2011~ -~23241~^~612~^0.176^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~613~^1.531^6^0.034^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~614~^0.866^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~617~^3.037^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23241~^~618~^0.205^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23241~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23241~^~620~^0.042^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~625~^0.038^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~626~^0.246^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~628~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23241~^~631~^0.010^0^^~4~^~BFFN~^~23100~^^^^^^^^^~07/01/2011~ -~23241~^~645~^3.404^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~646~^0.268^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23241~^~653~^0.069^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~663~^0.348^6^0.047^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~670~^0.022^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~674~^2.689^6^0.043^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~675~^0.183^6^0.029^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~685~^0.019^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~687~^0.068^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23241~^~693~^0.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~312~^0.095^0^^~4~^~BFNN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~404~^0.067^0^^~4~^~BFPN~^~23629~^^^^^^^^^~07/01/2011~ -~23242~^~405~^0.129^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~406~^7.423^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~415~^0.524^0^^~4~^~BFPN~^~23629~^^^^^^^^^~10/01/2001~ -~23242~^~501~^0.333^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~502~^1.384^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~503~^1.378^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~504~^2.524^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~505~^2.811^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~506~^0.782^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~507~^0.293^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~508~^1.173^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~509~^1.098^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~510~^1.458^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~511~^1.967^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~512~^1.078^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~513~^1.758^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~514~^2.833^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~515~^4.804^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~516~^1.267^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~517~^1.229^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~518~^1.191^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23242~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23242~^~605~^0.400^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~606~^2.905^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~610~^0.004^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23242~^~611~^0.005^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23242~^~612~^0.202^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~613~^1.653^4^0.042^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~614~^0.959^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~617~^3.334^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23242~^~618~^0.225^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23242~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23242~^~620~^0.044^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~625~^0.043^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~626~^0.289^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~628~^0.016^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23242~^~631~^0.009^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23242~^~645~^3.763^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~646~^0.292^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23242~^~653~^0.079^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~663~^0.400^4^0.059^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~670~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~672~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~674~^2.934^4^0.053^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~675~^0.198^4^0.037^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~685~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~687~^0.081^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23242~^~693~^0.400^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~312~^0.080^0^^~4~^~BFNN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~404~^0.081^0^^~4~^~BFPN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~405~^0.150^0^^~4~^~BFPN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~406~^8.287^0^^~4~^~BFPN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~415~^0.627^0^^~4~^~BFPN~^~23588~^^^^^^^^^~10/01/2001~ -~23243~^~501~^0.370^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~502~^1.579^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~503~^1.565^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~504~^2.916^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~505~^3.271^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~506~^0.896^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~507~^0.341^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~508~^1.337^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~509~^1.266^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~510~^1.650^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~511~^2.276^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~512~^1.280^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~513~^2.005^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~514~^3.271^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~515~^5.490^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~516~^1.451^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~517~^1.437^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~518~^1.380^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23243~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23243~^~605~^0.270^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~606~^2.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~610~^0.003^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23243~^~611~^0.005^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23243~^~612~^0.137^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~613~^1.347^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~614~^0.727^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~617~^2.592^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23243~^~618~^0.176^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23243~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23243~^~620~^0.040^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~625~^0.032^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~626~^0.181^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23243~^~631~^0.012^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23243~^~645~^2.864^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~646~^0.231^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23243~^~653~^0.055^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~654~^0.010^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~663~^0.270^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~670~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~674~^2.322^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~675~^0.160^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~685~^0.015^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~687~^0.050^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23243~^~693~^0.270^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23244~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23244~^~405~^0.182^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23244~^~406~^5.048^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23244~^~415~^0.543^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23244~^~501~^0.262^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~502~^1.099^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~503~^1.090^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~504~^2.011^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~505~^2.247^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~506~^0.621^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~507~^0.235^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~508~^0.931^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~509~^0.873^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~510~^1.152^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~511~^1.568^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~512~^0.868^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~513~^1.395^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~514~^2.258^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~515~^3.812^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~516~^1.007^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~517~^0.981^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~518~^0.949^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23244~^~521~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23244~^~605~^0.253^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~606~^1.875^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~610~^0.002^0^^~4~^~BFFN~^~23153~^^^^^^^^^~07/01/2011~ -~23244~^~611~^0.003^0^^~4~^~BFFN~^~23153~^^^^^^^^^~07/01/2011~ -~23244~^~612~^0.115^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~613~^1.090^6^0.054^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~614~^0.606^6^0.036^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~617~^2.152^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23244~^~618~^0.154^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23244~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23244~^~620~^0.027^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~625~^0.020^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~626~^0.142^6^0.009^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~628~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23244~^~631~^0.008^0^^~4~^~BFFN~^~23153~^^^^^^^^^~07/01/2011~ -~23244~^~645~^2.354^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~646~^0.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23244~^~653~^0.058^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~654~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~663~^0.253^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~670~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~674~^1.899^6^0.099^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~675~^0.142^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~685~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~687~^0.033^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23244~^~693~^0.253^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~312~^0.090^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23245~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23245~^~405~^0.169^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23245~^~406~^5.438^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23245~^~415~^0.610^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23245~^~501~^0.252^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~502~^1.048^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~503~^1.043^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~504~^1.911^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~505~^2.128^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~506~^0.592^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~507~^0.222^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~508~^0.888^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~509~^0.831^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~510~^1.104^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~511~^1.489^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~512~^0.816^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~513~^1.331^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~514~^2.145^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~515~^3.637^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~516~^0.959^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~517~^0.930^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~518~^0.902^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23245~^~521~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23245~^~605~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~606~^2.080^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~610~^0.003^0^^~4~^~BFFN~^~23154~^^^^^^^^^~10/01/2001~ -~23245~^~611~^0.003^0^^~4~^~BFFN~^~23154~^^^^^^^^^~07/01/2011~ -~23245~^~612~^0.116^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~613~^1.186^4^0.067^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~614~^0.714^4^0.045^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~617~^2.315^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23245~^~618~^0.156^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23245~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23245~^~620~^0.029^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~625~^0.022^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~626~^0.155^4^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23245~^~631~^0.008^0^^~4~^~BFFN~^~23154~^^^^^^^^^~10/01/2001~ -~23245~^~645~^2.536^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~646~^0.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23245~^~653~^0.055^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~654~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~663~^0.257^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~670~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~674~^2.058^4^0.123^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~675~^0.143^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~685~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~687~^0.036^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23245~^~693~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~312~^0.067^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23246~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23246~^~405~^0.205^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23246~^~406~^5.356^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23246~^~415~^0.539^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23246~^~501~^0.280^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~502~^1.194^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~503~^1.183^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~504~^2.205^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~505~^2.474^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~506~^0.678^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~507~^0.258^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~508~^1.011^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~509~^0.957^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~510~^1.248^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~511~^1.721^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~512~^0.968^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~513~^1.516^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~514~^2.474^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~515~^4.151^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~516~^1.097^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~517~^1.086^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~518~^1.043^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23246~^~521~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23246~^~605~^0.248^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~606~^1.568^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~610~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23246~^~611~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2011~ -~23246~^~612~^0.113^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~613~^0.946^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~614~^0.444^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~617~^1.907^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23246~^~618~^0.152^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23246~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23246~^~620~^0.023^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~625~^0.017^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~626~^0.123^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23246~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23246~^~645~^2.083^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~646~^0.180^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23246~^~653~^0.061^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~663~^0.248^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~670~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~674~^1.660^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~675~^0.139^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~685~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~687~^0.028^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23246~^~693~^0.248^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~312~^0.096^0^^~4~^~BFNN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~404~^0.078^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23247~^~405~^0.150^0^^~4~^~BFPN~^~23630~^^^^^^^^^~07/01/2011~ -~23247~^~406~^8.654^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23247~^~415~^0.610^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23247~^~501~^0.360^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~502~^1.507^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~503~^1.495^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~504~^2.759^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~505~^3.083^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~506~^0.852^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~507~^0.322^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~508~^1.278^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~509~^1.197^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~510~^1.581^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~511~^2.151^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~512~^1.190^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~513~^1.914^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~514~^3.097^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~515~^5.229^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~516~^1.382^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~517~^1.346^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~518~^1.301^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23247~^~521~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23247~^~605~^0.340^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~606~^2.987^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~610~^0.004^0^^~4~^~BFFN~^~23100~^^^^^^^^^~10/01/2001~ -~23247~^~611~^0.005^0^^~4~^~BFFN~^~23100~^^^^^^^^^~10/01/2001~ -~23247~^~612~^0.174^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~613~^1.696^6^0.071^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~614~^1.029^6^0.032^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~615~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~617~^3.244^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23247~^~618~^0.226^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23247~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23247~^~620~^0.043^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~625~^0.045^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~626~^0.264^6^0.027^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~628~^0.014^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23247~^~631~^0.011^0^^~4~^~BFFN~^~23100~^^^^^^^^^~10/01/2001~ -~23247~^~645~^3.628^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~646~^0.293^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23247~^~653~^0.073^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~663~^0.340^6^0.045^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~670~^0.024^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~672~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~674~^2.904^6^0.121^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~675~^0.202^6^0.027^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~685~^0.019^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~687~^0.061^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23247~^~693~^0.340^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~312~^0.095^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~404~^0.077^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~405~^0.148^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~406~^8.553^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~415~^0.603^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23248~^~501~^0.343^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~502~^1.424^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~503~^1.417^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~504~^2.596^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~505~^2.891^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~506~^0.804^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~507~^0.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~508~^1.207^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~509~^1.129^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~510~^1.499^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~511~^2.022^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~512~^1.108^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~513~^1.807^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~514~^2.913^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~515~^4.940^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~516~^1.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~517~^1.264^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~518~^1.225^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23248~^~521~^0.146^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23248~^~605~^0.363^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~606~^3.361^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~610~^0.005^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23248~^~611~^0.006^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23248~^~612~^0.196^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~613~^1.878^4^0.088^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~614~^1.180^4^0.040^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~615~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~617~^3.634^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23248~^~618~^0.251^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23248~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23248~^~620~^0.045^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~625~^0.052^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~626~^0.253^4^0.033^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~628~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~629~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23248~^~631~^0.010^0^^~4~^~BFFN~^~23148~^^^^^^^^^~10/01/2001~ -~23248~^~645~^4.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~646~^0.317^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23248~^~653~^0.092^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~654~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~663~^0.363^4^0.056^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~670~^0.023^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~672~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~674~^3.272^4^0.151^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~675~^0.228^4^0.033^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~685~^0.015^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~687~^0.058^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23248~^~693~^0.363^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~312~^0.084^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~404~^0.085^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~405~^0.158^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~406~^8.724^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~415~^0.660^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23249~^~501~^0.389^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~502~^1.662^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~503~^1.647^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~504~^3.069^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~505~^3.443^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~506~^0.943^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~507~^0.359^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~508~^1.407^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~509~^1.332^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~510~^1.737^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~511~^2.395^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~512~^1.347^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~513~^2.111^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~514~^3.443^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~515~^5.779^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~516~^1.527^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~517~^1.512^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~518~^1.452^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23249~^~521~^0.151^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23249~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~606~^2.425^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~610~^0.004^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23249~^~611~^0.005^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23249~^~612~^0.141^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~613~^1.423^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~614~^0.803^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~617~^2.659^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23249~^~618~^0.189^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23249~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23249~^~620~^0.041^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~625~^0.035^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~626~^0.280^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~628~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23249~^~631~^0.013^0^^~4~^~BFFN~^~23149~^^^^^^^^^~10/01/2001~ -~23249~^~645~^3.054^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~646~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23249~^~653~^0.044^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~663~^0.307^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~670~^0.024^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~674~^2.352^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~675~^0.164^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~685~^0.026^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~687~^0.066^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23249~^~693~^0.307^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~312~^0.094^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~404~^0.075^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~405~^0.145^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~406~^8.359^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~415~^0.590^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23250~^~501~^0.347^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~502~^1.456^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~503~^1.444^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~504~^2.665^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~505~^2.978^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~506~^0.823^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~507~^0.311^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~508~^1.234^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~509~^1.156^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~510~^1.527^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~511~^2.077^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~512~^1.150^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~513~^1.849^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~514~^2.992^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~515~^5.051^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~516~^1.335^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~517~^1.300^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~518~^1.257^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23250~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23250~^~605~^0.444^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~606~^3.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~610~^0.004^0^^~4~^~BFFN~^~23159~^^^^^^^^^~07/01/2011~ -~23250~^~611~^0.006^0^^~4~^~BFFN~^~23159~^^^^^^^^^~07/01/2011~ -~23250~^~612~^0.190^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~613~^1.728^6^0.117^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~614~^0.985^6^0.047^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~615~^0.003^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~617~^3.515^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23250~^~618~^0.286^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23250~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23250~^~620~^0.055^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~625~^0.032^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~626~^0.243^6^0.015^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~628~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23250~^~631~^0.011^0^^~4~^~BFFN~^~23159~^^^^^^^^^~10/01/2001~ -~23250~^~645~^3.862^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~646~^0.355^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23250~^~653~^0.098^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~663~^0.444^6^0.032^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~670~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~672~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~674~^3.071^6^0.197^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~675~^0.262^6^0.040^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~685~^0.013^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~687~^0.057^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23250~^~693~^0.444^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~312~^0.094^0^^~4~^~BFNN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~404~^0.075^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~405~^0.145^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~406~^8.330^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~415~^0.588^0^^~4~^~BFPN~^~23630~^^^^^^^^^~10/01/2001~ -~23251~^~501~^0.334^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~502~^1.387^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~503~^1.380^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~504~^2.528^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~505~^2.815^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~506~^0.783^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~507~^0.294^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~508~^1.175^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~509~^1.099^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~510~^1.460^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~511~^1.970^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~512~^1.079^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~513~^1.760^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~514~^2.838^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~515~^4.812^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~516~^1.269^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~517~^1.231^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~518~^1.193^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23251~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23251~^~605~^0.502^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~606~^3.498^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~610~^0.005^0^^~4~^~BFFN~^~23160~^^^^^^^^^~10/01/2001~ -~23251~^~611~^0.007^0^^~4~^~BFFN~^~23160~^^^^^^^^^~10/01/2001~ -~23251~^~612~^0.205^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~613~^1.962^4^0.146^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~614~^1.207^4^0.058^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~615~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~617~^4.011^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23251~^~618~^0.291^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23251~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23251~^~620~^0.066^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~625~^0.036^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~626~^0.288^4^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~628~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23251~^~631~^0.011^0^^~4~^~BFFN~^~23160~^^^^^^^^^~10/01/2001~ -~23251~^~645~^4.421^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23251~^~653~^0.104^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~654~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~663~^0.502^4^0.040^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~670~^0.028^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~672~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~674~^3.509^4^0.244^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~675~^0.263^4^0.050^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~685~^0.018^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~687~^0.068^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23251~^~693~^0.502^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~312~^0.082^0^^~4~^~BFNN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~404~^0.081^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~405~^0.151^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~406~^8.324^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~415~^0.629^0^^~4~^~BFPN~^~23589~^^^^^^^^^~10/01/2001~ -~23252~^~501~^0.371^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~502~^1.586^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~503~^1.571^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~504~^2.929^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~505~^3.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~506~^0.900^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~507~^0.343^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~508~^1.343^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~509~^1.271^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~510~^1.657^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~511~^2.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~512~^1.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~513~^2.014^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~514~^3.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~515~^5.514^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~516~^1.457^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~517~^1.443^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~518~^1.386^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23252~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23252~^~605~^0.356^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~606~^2.290^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~610~^0.003^0^^~4~^~BFFN~^~23161~^^^^^^^^^~10/01/2001~ -~23252~^~611~^0.005^0^^~4~^~BFFN~^~23161~^^^^^^^^^~10/01/2001~ -~23252~^~612~^0.166^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~613~^1.376^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~614~^0.651^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~617~^2.771^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23252~^~618~^0.278^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23252~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23252~^~620~^0.039^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~625~^0.026^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~626~^0.176^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23252~^~631~^0.011^0^^~4~^~BFFN~^~23161~^^^^^^^^^~10/01/2001~ -~23252~^~645~^3.024^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~646~^0.326^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23252~^~653~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~663~^0.356^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~670~^0.019^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~674~^2.414^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~675~^0.259^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~685~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~687~^0.039^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23252~^~693~^0.356^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~312~^0.086^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23253~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23253~^~405~^0.192^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23253~^~406~^5.337^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23253~^~415~^0.574^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23253~^~501~^0.277^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~502~^1.162^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~503~^1.153^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~504~^2.126^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~505~^2.376^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~506~^0.657^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~507~^0.248^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~508~^0.985^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~509~^0.923^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~510~^1.218^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~511~^1.658^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~512~^0.917^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~513~^1.475^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~514~^2.387^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~515~^4.030^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~516~^1.065^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~517~^1.038^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~518~^1.003^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23253~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23253~^~605~^0.213^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~606~^2.100^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~610~^0.002^0^^~4~^~BFFN~^~23153~^^^^^^^^^~07/01/2011~ -~23253~^~611~^0.003^0^^~4~^~BFFN~^~23153~^^^^^^^^^~07/01/2011~ -~23253~^~612~^0.132^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~613~^1.171^6^0.079^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~614~^0.721^6^0.039^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~615~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~617~^2.302^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23253~^~618~^0.161^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23253~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23253~^~620~^0.036^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~625~^0.035^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~626~^0.158^6^0.009^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~628~^0.010^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23253~^~631~^0.008^0^^~4~^~BFFN~^~23153~^^^^^^^^^~10/01/2001~ -~23253~^~645~^2.545^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~646~^0.208^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23253~^~653~^0.064^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~663~^0.213^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~670~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~674~^2.089^6^0.141^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~675~^0.144^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~685~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~687~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23253~^~693~^0.213^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23254~^~404~^0.062^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23254~^~405~^0.179^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23254~^~406~^5.733^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23254~^~415~^0.644^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23254~^~501~^0.266^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~502~^1.105^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~503~^1.100^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~504~^2.015^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~505~^2.244^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~506~^0.624^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~507~^0.234^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~508~^0.937^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~509~^0.876^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~510~^1.164^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~511~^1.570^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~512~^0.860^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~513~^1.403^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~514~^2.262^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~515~^3.835^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~516~^1.011^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~517~^0.981^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~518~^0.951^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23254~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23254~^~605~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~606~^2.419^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~610~^0.003^0^^~4~^~BFFN~^~23154~^^^^^^^^^~10/01/2001~ -~23254~^~611~^0.004^0^^~4~^~BFFN~^~23154~^^^^^^^^^~10/01/2001~ -~23254~^~612~^0.156^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~613~^1.359^4^0.098^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~614~^0.810^4^0.048^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~615~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~617~^2.592^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23254~^~618~^0.202^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23254~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23254~^~620~^0.046^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~625~^0.038^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~626~^0.181^4^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~628~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23254~^~631~^0.008^0^^~4~^~BFFN~^~23154~^^^^^^^^^~10/01/2001~ -~23254~^~645~^2.866^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~646~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23254~^~653~^0.082^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~663~^0.256^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~670~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~674~^2.336^4^0.175^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~675~^0.183^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~685~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~687~^0.044^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23254~^~693~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~312~^0.098^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23255~^~404~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23255~^~405~^0.211^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23255~^~406~^5.973^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23255~^~415~^0.645^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23255~^~501~^0.297^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~502~^1.268^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~503~^1.256^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~504~^2.341^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~505~^2.627^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~506~^0.719^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~507~^0.274^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~508~^1.074^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~509~^1.016^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~510~^1.325^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~511~^1.827^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~512~^1.028^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~513~^1.610^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~514~^2.627^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~515~^4.408^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~516~^1.165^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~517~^1.153^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~518~^1.108^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23255~^~521~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23255~^~605~^0.149^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~606~^1.621^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~610~^0.001^0^^~4~^~BFFN~^~23155~^^^^^^^^^~10/01/2001~ -~23255~^~611~^0.002^0^^~4~^~BFFN~^~23155~^^^^^^^^^~10/01/2001~ -~23255~^~612~^0.096^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~613~^0.891^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~614~^0.589^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~617~^1.866^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23255~^~618~^0.100^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23255~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23255~^~620~^0.022^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~625~^0.032^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~626~^0.124^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23255~^~631~^0.008^0^^~4~^~BFFN~^~23155~^^^^^^^^^~10/01/2001~ -~23255~^~645~^2.062^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~646~^0.134^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23255~^~653~^0.038^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~663~^0.149^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~670~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~674~^1.718^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~675~^0.087^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~685~^0.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~687~^0.032^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23255~^~693~^0.149^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~312~^0.106^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23256~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23256~^~405~^0.204^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23256~^~406~^6.176^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23256~^~415~^0.613^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23256~^~501~^0.375^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~502~^1.571^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~503~^1.559^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~504~^2.876^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~505~^3.214^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~506~^0.888^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~507~^0.335^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~508~^1.332^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~509~^1.248^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~510~^1.648^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~511~^2.242^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~512~^1.241^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~513~^1.995^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~514~^3.229^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~515~^5.451^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~516~^1.440^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~517~^1.403^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~518~^1.357^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23256~^~521~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23256~^~605~^0.282^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~606~^1.803^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~610~^0.003^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23256~^~611~^0.004^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23256~^~612~^0.116^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~613~^1.085^6^0.021^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~614~^0.539^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~617~^2.291^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23256~^~618~^0.131^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23256~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23256~^~620~^0.026^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~625~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~626~^0.144^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~628~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23256~^~631~^0.007^0^^~4~^~BFFN~^~23174~^^^^^^^^^~10/01/2001~ -~23256~^~645~^2.498^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~646~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23256~^~653~^0.054^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~654~^0.008^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~663~^0.282^6^0.017^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~670~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~674~^2.009^6^0.048^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~675~^0.118^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~685~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~687~^0.037^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23256~^~693~^0.282^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~312~^0.106^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23257~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23257~^~405~^0.203^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23257~^~406~^6.149^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23257~^~415~^0.610^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23257~^~501~^0.360^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~502~^1.495^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~503~^1.488^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~504~^2.726^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~505~^3.036^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~506~^0.845^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~507~^0.317^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~508~^1.267^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~509~^1.185^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~510~^1.574^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~511~^2.124^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~512~^1.164^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~513~^1.898^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~514~^3.060^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~515~^5.188^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~516~^1.368^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~517~^1.327^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~518~^1.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23257~^~521~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23257~^~605~^0.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~606~^1.978^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~610~^0.003^0^^~4~^~BFFN~^~23176~^^^^^^^^^~07/01/2011~ -~23257~^~611~^0.004^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23257~^~612~^0.121^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~613~^1.177^4^0.026^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~614~^0.608^4^0.016^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~615~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~617~^2.496^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23257~^~618~^0.130^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23257~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23257~^~620~^0.029^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~625~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~626~^0.155^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23257~^~631~^0.006^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23257~^~645~^2.718^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~646~^0.170^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23257~^~653~^0.063^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~654~^0.009^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~663~^0.288^4^0.021^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~670~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~674~^2.207^4^0.060^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~675~^0.117^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~685~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~687~^0.040^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23257~^~693~^0.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~312~^0.152^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23258~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23258~^~405~^0.221^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23258~^~406~^6.305^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23258~^~415~^0.551^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23258~^~501~^0.401^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~502~^1.714^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~503~^1.698^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~504~^3.165^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~505~^3.551^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~506~^0.973^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~507~^0.371^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~508~^1.451^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~509~^1.374^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~510~^1.791^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~511~^2.470^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~512~^1.389^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~513~^2.177^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~514~^3.551^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~515~^5.959^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~516~^1.575^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~517~^1.559^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~518~^1.498^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23258~^~521~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23258~^~605~^0.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~606~^1.541^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~610~^0.002^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23258~^~611~^0.004^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23258~^~612~^0.110^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~613~^0.948^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~614~^0.436^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~617~^1.983^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23258~^~618~^0.131^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23258~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23258~^~620~^0.020^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~625~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~626~^0.128^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~628~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23258~^~631~^0.009^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23258~^~645~^2.167^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~646~^0.161^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23258~^~653~^0.041^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~663~^0.272^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~670~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~674~^1.712^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~675~^0.119^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~685~^0.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~687~^0.032^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23258~^~693~^0.272^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23259~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23259~^~405~^0.194^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23259~^~406~^5.882^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23259~^~415~^0.584^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23259~^~501~^0.357^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~502~^1.496^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~503~^1.484^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~504~^2.739^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~505~^3.061^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~506~^0.846^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~507~^0.319^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~508~^1.268^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~509~^1.189^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~510~^1.569^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~511~^2.135^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~512~^1.181^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~513~^1.900^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~514~^3.075^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~515~^5.191^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~516~^1.372^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~517~^1.337^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~518~^1.292^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23259~^~521~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23259~^~605~^0.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~606~^1.742^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~610~^0.003^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23259~^~611~^0.004^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23259~^~612~^0.121^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~613~^1.014^6^0.070^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~614~^0.554^6^0.033^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~617~^2.069^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23259~^~618~^0.152^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23259~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23259~^~620~^0.034^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~625~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~626~^0.176^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~628~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23259~^~631~^0.008^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23259~^~645~^2.323^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~646~^0.200^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23259~^~653~^0.046^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~654~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~663~^0.275^6^0.028^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~670~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~672~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~674~^1.794^6^0.091^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~675~^0.135^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~685~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~687~^0.046^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23259~^~693~^0.275^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23260~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23260~^~405~^0.240^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23260~^~406~^4.969^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23260~^~415~^0.487^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23260~^~501~^0.383^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~502~^1.634^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~503~^1.619^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~504~^3.018^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~505~^3.386^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~506~^0.927^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~507~^0.353^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~508~^1.384^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~509~^1.310^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~510~^1.708^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~511~^2.356^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~512~^1.325^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~513~^2.076^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~514~^3.386^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~515~^5.683^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~516~^1.502^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~517~^1.487^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~518~^1.428^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23260~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23260~^~605~^0.206^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~606~^1.364^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~610~^0.003^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23260~^~611~^0.004^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23260~^~612~^0.095^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~613~^0.808^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~614~^0.423^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~617~^1.568^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23260~^~618~^0.113^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23260~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23260~^~620~^0.025^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~625~^0.017^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~626~^0.140^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23260~^~631~^0.010^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23260~^~645~^1.767^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~646~^0.149^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23260~^~653~^0.033^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~663~^0.206^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~670~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~674~^1.362^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~675~^0.100^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~685~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~687~^0.035^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23260~^~693~^0.206^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23261~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23261~^~405~^0.183^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23261~^~406~^5.869^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23261~^~415~^0.659^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23261~^~501~^0.282^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~502~^1.184^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~503~^1.174^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~504~^2.167^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~505~^2.421^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~506~^0.669^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~508~^1.003^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~509~^0.940^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~510~^1.241^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~511~^1.689^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~512~^0.935^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~513~^1.503^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~514~^2.432^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~515~^4.106^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~516~^1.085^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~517~^1.057^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~518~^1.022^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23261~^~521~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23261~^~605~^0.176^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~606~^1.285^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~610~^0.001^0^^~4~^~BFFN~^~23175~^^^^^^^^^~10/01/2001~ -~23261~^~611~^0.002^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23261~^~612~^0.081^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~613~^0.747^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~614~^0.412^6^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~615~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~617~^1.554^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23261~^~618~^0.098^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23261~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23261~^~620~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~625~^0.015^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~626~^0.106^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~628~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23261~^~631~^0.006^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23261~^~645~^1.704^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~646~^0.125^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23261~^~653~^0.041^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~654~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~663~^0.176^6^0.033^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~670~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~674~^1.378^6^0.052^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~675~^0.089^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~685~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~687~^0.024^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23261~^~693~^0.176^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23262~^~404~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23262~^~405~^0.214^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23262~^~406~^6.046^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23262~^~415~^0.653^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23262~^~501~^0.301^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~502~^1.283^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~503~^1.272^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~504~^2.370^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~505~^2.659^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~506~^0.728^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~507~^0.277^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~508~^1.087^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~509~^1.029^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~510~^1.341^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~511~^1.850^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~512~^1.040^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~513~^1.630^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~514~^2.659^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~515~^4.463^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~516~^1.179^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~517~^1.168^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~518~^1.121^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23262~^~521~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23262~^~605~^0.157^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~606~^1.125^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~610~^0.001^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23262~^~611~^0.001^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23262~^~612~^0.068^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~613~^0.649^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~614~^0.367^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~617~^1.258^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23262~^~618~^0.073^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23262~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23262~^~620~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~625~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~626~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~628~^0.004^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23262~^~631~^0.006^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23262~^~645~^1.384^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~646~^0.096^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23262~^~653~^0.036^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~663~^0.157^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~670~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~674~^1.101^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~675~^0.066^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~685~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~687~^0.021^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23262~^~693~^0.157^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23263~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23263~^~405~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23263~^~406~^5.774^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23263~^~415~^0.648^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23263~^~501~^0.278^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~502~^1.164^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~503~^1.155^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~504~^2.131^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~505~^2.382^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~506~^0.658^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~507~^0.249^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~508~^0.987^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~509~^0.925^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~510~^1.221^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~511~^1.662^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~512~^0.919^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~513~^1.479^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~514~^2.393^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~515~^4.040^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~516~^1.068^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~517~^1.040^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~518~^1.005^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23263~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23263~^~605~^0.215^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~606~^1.683^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~610~^0.002^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23263~^~611~^0.002^0^^~4~^~BFFN~^~23175~^^^^^^^^^~10/01/2001~ -~23263~^~612~^0.115^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~613~^1.011^6^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~614~^0.491^6^0.024^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~617~^1.972^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23263~^~618~^0.150^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23263~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23263~^~620~^0.031^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~625~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~626~^0.126^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~628~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23263~^~631~^0.007^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23263~^~645~^2.164^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~646~^0.191^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23263~^~653~^0.056^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~654~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~663~^0.215^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~670~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~672~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~674~^1.757^6^0.071^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~675~^0.138^6^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~685~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~687~^0.036^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23263~^~693~^0.215^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23264~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23264~^~405~^0.179^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23264~^~406~^5.736^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23264~^~415~^0.644^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23264~^~501~^0.266^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~502~^1.106^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~503~^1.100^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~504~^2.016^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~505~^2.245^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~506~^0.625^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~507~^0.234^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~508~^0.937^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~509~^0.877^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~510~^1.164^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~511~^1.571^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~512~^0.861^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~513~^1.404^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~514~^2.263^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~515~^3.837^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~516~^1.012^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~517~^0.981^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~518~^0.951^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23264~^~521~^0.114^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23264~^~605~^0.233^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~606~^1.962^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~610~^0.002^0^^~4~^~BFFN~^~23177~^^^^^^^^^~07/01/2011~ -~23264~^~611~^0.003^0^^~4~^~BFFN~^~23177~^^^^^^^^^~10/01/2001~ -~23264~^~612~^0.130^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~613~^1.162^4^0.027^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~614~^0.594^4^0.030^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~617~^2.220^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23264~^~618~^0.169^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23264~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23264~^~620~^0.035^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~625~^0.028^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~626~^0.140^4^0.009^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23264~^~631~^0.007^0^^~4~^~BFFN~^~23177~^^^^^^^^^~10/01/2001~ -~23264~^~645~^2.436^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~646~^0.216^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23264~^~653~^0.066^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~663~^0.233^4^0.016^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~670~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~672~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~674~^1.987^4^0.088^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~675~^0.156^4^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~685~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~687~^0.040^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23264~^~693~^0.233^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23265~^~404~^0.073^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23265~^~405~^0.219^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23265~^~406~^5.717^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23265~^~415~^0.575^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23265~^~501~^0.285^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~502~^1.218^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~503~^1.207^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~504~^2.249^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~505~^2.524^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~506~^0.691^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~507~^0.263^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~508~^1.031^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~509~^0.977^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~510~^1.273^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~511~^1.756^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~512~^0.988^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~513~^1.547^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~514~^2.524^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~515~^4.236^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~516~^1.119^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~517~^1.108^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~518~^1.064^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~521~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23265~^~605~^0.188^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~606~^1.265^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~610~^0.001^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23265~^~611~^0.001^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23265~^~612~^0.093^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~613~^0.785^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~614~^0.338^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~617~^1.600^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23265~^~618~^0.121^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23265~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23265~^~620~^0.025^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~625~^0.016^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~626~^0.103^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~628~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23265~^~631~^0.007^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23265~^~645~^1.757^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~646~^0.152^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23265~^~653~^0.043^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~663~^0.188^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~670~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~674~^1.412^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~675~^0.111^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~685~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~687~^0.030^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23265~^~693~^0.188^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~312~^0.154^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23266~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23266~^~405~^0.246^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23266~^~406~^3.714^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23266~^~415~^0.375^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23266~^~501~^0.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~502~^1.267^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~503~^1.257^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~504~^2.319^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~505~^2.591^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~506~^0.716^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~508~^1.074^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~509~^1.006^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~510~^1.328^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~511~^1.808^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~512~^1.000^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~513~^1.609^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~514~^2.603^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~515~^4.395^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~516~^1.161^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~517~^1.132^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~518~^1.094^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23266~^~521~^0.125^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23266~^~605~^0.582^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~606~^5.566^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~610~^0.008^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23266~^~611~^0.010^0^^~4~^~BFFN~^~23174~^^^^^^^^^~10/01/2001~ -~23266~^~612~^0.367^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~613~^3.099^6^0.072^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~614~^1.904^6^0.117^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~615~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~617~^6.161^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23266~^~618~^0.457^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23266~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23266~^~620~^0.103^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~621~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~625~^0.089^6^0.009^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~626~^0.454^6^0.036^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~628~^0.027^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23266~^~631~^0.021^0^^~4~^~BFFN~^~23174~^^^^^^^^^~10/01/2001~ -~23266~^~645~^6.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~646~^0.586^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23266~^~653~^0.170^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~654~^0.020^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~663~^0.582^6^0.024^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~670~^0.047^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~672~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~674~^5.579^6^0.272^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~675~^0.410^6^0.015^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~685~^0.022^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~687~^0.098^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23266~^~693~^0.582^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~312~^0.154^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23267~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23267~^~405~^0.242^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23267~^~406~^3.651^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23267~^~415~^0.369^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23267~^~501~^0.287^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~502~^1.190^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~503~^1.185^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~504~^2.171^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~505~^2.417^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~506~^0.673^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~507~^0.252^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~508~^1.009^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~509~^0.944^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~510~^1.253^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~511~^1.691^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~512~^0.927^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~513~^1.511^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~514~^2.436^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~515~^4.131^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~516~^1.089^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~517~^1.057^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~518~^1.024^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23267~^~521~^0.122^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23267~^~605~^0.622^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~606~^5.961^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~610~^0.009^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23267~^~611~^0.010^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23267~^~612~^0.388^4^0.017^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~613~^3.315^4^0.090^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~614~^2.057^4^0.146^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~615~^0.007^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~617~^6.633^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23267~^~618~^0.493^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23267~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23267~^~620~^0.111^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~621~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~625~^0.094^4^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~626~^0.489^4^0.045^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~628~^0.028^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~629~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23267~^~631~^0.019^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23267~^~645~^7.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~646~^0.635^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23267~^~653~^0.173^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~654~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~663~^0.622^4^0.029^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~670~^0.049^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~672~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~674~^6.011^4^0.337^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~675~^0.444^4^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~685~^0.024^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~687~^0.104^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23267~^~693~^0.622^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~312~^0.127^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23268~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23268~^~405~^0.382^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23268~^~406~^4.057^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23268~^~415~^0.410^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23268~^~501~^0.330^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~502~^1.407^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~503~^1.394^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~504~^2.599^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~505~^2.916^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~506~^0.799^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~507~^0.304^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~508~^1.192^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~509~^1.128^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~510~^1.471^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~511~^2.028^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~512~^1.141^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~513~^1.787^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~514~^2.916^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~515~^4.893^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~516~^1.293^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~517~^1.280^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~518~^1.230^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23268~^~521~^0.128^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23268~^~605~^0.522^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~606~^4.974^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~610~^0.007^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23268~^~611~^0.010^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23268~^~612~^0.336^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~613~^2.774^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~614~^1.675^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~617~^5.454^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23268~^~618~^0.402^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23268~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23268~^~620~^0.090^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~625~^0.081^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~626~^0.401^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~628~^0.025^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23268~^~631~^0.026^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23268~^~645~^6.050^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~646~^0.513^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23268~^~653~^0.166^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~654~^0.018^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~663~^0.522^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~670~^0.043^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~674~^4.932^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~675~^0.360^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~685~^0.018^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~687~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23268~^~693~^0.522^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~312~^0.143^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23269~^~404~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23269~^~405~^0.222^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23269~^~406~^3.551^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23269~^~415~^0.394^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23269~^~501~^0.239^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~502~^1.003^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~503~^0.995^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~504~^1.836^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~505~^2.052^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~506~^0.567^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~507~^0.214^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~508~^0.850^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~509~^0.797^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~510~^1.052^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~511~^1.431^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~512~^0.792^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~513~^1.274^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~514~^2.061^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~515~^3.480^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~516~^0.919^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~517~^0.896^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~518~^0.866^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~521~^0.099^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23269~^~605~^0.450^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~606~^4.066^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~610~^0.004^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23269~^~611~^0.005^0^^~4~^~BFFN~^~23175~^^^^^^^^^~10/01/2001~ -~23269~^~612~^0.254^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~613~^2.324^6^0.045^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~614~^1.364^6^0.058^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~615~^0.000^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~617~^4.289^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23269~^~618~^0.324^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23269~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23269~^~620~^0.068^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~625~^0.055^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~626~^0.310^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~628~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~629~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23269~^~631~^0.016^0^^~4~^~BFFN~^~23175~^^^^^^^^^~07/01/2011~ -~23269~^~645~^4.735^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~646~^0.409^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23269~^~653~^0.111^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~654~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~663~^0.450^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~670~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~674~^3.839^6^0.108^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~675~^0.294^6^0.016^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~685~^0.016^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~687~^0.063^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23269~^~693~^0.450^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~312~^0.143^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23270~^~404~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23270~^~405~^0.219^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23270~^~406~^3.509^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23270~^~415~^0.390^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23270~^~501~^0.230^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~502~^0.956^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~503~^0.951^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~504~^1.743^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~505~^1.940^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~506~^0.540^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~507~^0.202^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~508~^0.810^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~509~^0.758^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~510~^1.006^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~511~^1.358^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~512~^0.744^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~513~^1.213^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~514~^1.956^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~515~^3.316^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~516~^0.874^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~517~^0.848^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~518~^0.822^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23270~^~521~^0.098^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23270~^~605~^0.480^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~606~^4.359^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~610~^0.005^0^^~4~^~BFFN~^~23177~^^^^^^^^^~10/01/2001~ -~23270~^~611~^0.006^0^^~4~^~BFFN~^~23177~^^^^^^^^^~07/01/2011~ -~23270~^~612~^0.275^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~613~^2.457^4^0.056^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~614~^1.490^4^0.072^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~615~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~617~^4.672^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23270~^~618~^0.357^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23270~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23270~^~620~^0.077^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~625~^0.061^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~626~^0.347^4^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~628~^0.020^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~629~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23270~^~631~^0.014^0^^~4~^~BFFN~^~23177~^^^^^^^^^~10/01/2001~ -~23270~^~645~^5.171^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~646~^0.453^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23270~^~653~^0.122^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~654~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~663~^0.480^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~670~^0.034^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~672~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~674~^4.192^4^0.134^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~675~^0.323^4^0.020^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~685~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~687~^0.071^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23270~^~693~^0.480^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23271~^~312~^0.131^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23271~^~404~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23271~^~405~^0.267^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23271~^~406~^3.620^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23271~^~415~^0.370^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23271~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~502~^1.116^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~503~^1.106^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~504~^2.061^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~505~^2.313^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~506~^0.633^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~508~^0.945^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~509~^0.895^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~510~^1.166^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~511~^1.609^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~512~^0.905^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~513~^1.418^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~514~^2.313^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~515~^3.881^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~516~^1.026^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~517~^1.016^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~518~^0.975^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23271~^~521~^0.101^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23271~^~605~^0.405^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23271~^~606~^3.626^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23271~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~610~^0.003^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23271~^~611~^0.004^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23271~^~612~^0.221^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~613~^2.125^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~614~^1.176^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~617~^3.715^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23271~^~618~^0.274^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23271~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23271~^~620~^0.056^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~625~^0.047^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~626~^0.254^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~628~^0.015^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23271~^~631~^0.018^0^^~4~^~BFFN~^~23179~^^^^^^^^^~10/01/2001~ -~23271~^~645~^4.082^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23271~^~646~^0.344^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23271~^~653~^0.093^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~663~^0.405^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~670~^0.024^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~674~^3.310^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~675~^0.250^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~685~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~687~^0.052^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23271~^~693~^0.405^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23272~^~404~^0.058^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~ -~23272~^~405~^0.228^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23272~^~406~^5.816^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23272~^~415~^0.551^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23272~^~501~^0.353^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~502~^1.478^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~503~^1.467^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~504~^2.706^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~505~^3.024^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~506~^0.835^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~507~^0.316^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~508~^1.253^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~509~^1.174^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~510~^1.550^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~511~^2.109^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~512~^1.167^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~513~^1.877^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~514~^3.038^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~515~^5.128^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~516~^1.355^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~517~^1.320^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~518~^1.276^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23272~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23272~^~605~^0.398^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~606~^3.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~610~^0.005^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23272~^~611~^0.006^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23272~^~612~^0.165^6^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~613~^1.780^6^0.048^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~614~^1.178^6^0.048^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~615~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~617~^3.528^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23272~^~618~^0.262^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23272~^~619~^0.026^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23272~^~620~^0.058^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~625~^0.037^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~626~^0.309^6^0.014^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~628~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23272~^~631~^0.013^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23272~^~645~^3.962^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~646~^0.347^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23272~^~653~^0.067^6^0.012^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~654~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~663~^0.398^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~670~^0.027^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~674~^3.130^6^0.111^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~675~^0.234^6^0.013^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~685~^0.026^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~687~^0.071^6^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23272~^~693~^0.398^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~312~^0.099^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2011~ -~23273~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23273~^~405~^0.225^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23273~^~406~^5.732^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23273~^~415~^0.543^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23273~^~501~^0.335^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~502~^1.392^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~503~^1.386^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~504~^2.539^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~505~^2.827^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~506~^0.787^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~507~^0.295^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~508~^1.180^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~509~^1.104^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~510~^1.466^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~511~^1.978^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~512~^1.084^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~513~^1.768^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~514~^2.850^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~515~^4.832^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~516~^1.274^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~517~^1.236^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~518~^1.198^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23273~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23273~^~605~^0.466^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~606~^3.616^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~610~^0.005^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23273~^~611~^0.006^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23273~^~612~^0.193^4^0.006^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~613~^2.037^4^0.060^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~614~^1.292^4^0.059^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~615~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~617~^3.985^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23273~^~618~^0.309^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23273~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23273~^~620~^0.069^4^0.005^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~625~^0.040^4^0.003^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~626~^0.344^4^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~628~^0.018^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23273~^~631~^0.011^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23273~^~645~^4.463^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~646~^0.407^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23273~^~653~^0.078^4^0.015^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~654~^0.016^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~663~^0.466^4^0.012^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~670~^0.031^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~674~^3.519^4^0.138^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~675~^0.278^4^0.016^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~685~^0.028^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~687~^0.076^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23273~^~693~^0.466^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~312~^0.140^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23274~^~404~^0.092^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23274~^~405~^0.444^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23274~^~406~^4.718^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23274~^~415~^0.476^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23274~^~501~^0.361^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~502~^1.542^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~503~^1.528^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~504~^2.847^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~505~^3.194^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~506~^0.875^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~507~^0.333^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~508~^1.305^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~509~^1.236^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~510~^1.611^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~511~^2.222^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~512~^1.250^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~513~^1.958^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~514~^3.194^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~515~^5.361^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~516~^1.417^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~517~^1.403^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~518~^1.347^0^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~521~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23274~^~605~^0.295^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~606~^2.588^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~610~^0.004^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23274~^~611~^0.006^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23274~^~612~^0.124^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~613~^1.394^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~614~^1.009^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~617~^2.842^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23274~^~618~^0.190^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23274~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23274~^~620~^0.042^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~625~^0.034^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~626~^0.257^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~628~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23274~^~631~^0.015^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23274~^~645~^3.209^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23274~^~653~^0.049^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~654~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~663~^0.295^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~670~^0.022^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~674~^2.547^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~675~^0.168^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~685~^0.023^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~687~^0.064^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23274~^~693~^0.295^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~312~^0.096^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23275~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23275~^~405~^0.224^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23275~^~406~^5.691^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23275~^~415~^0.539^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23275~^~501~^0.345^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~502~^1.446^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~503~^1.435^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~504~^2.648^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~505~^2.959^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~506~^0.817^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~507~^0.309^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~508~^1.226^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~509~^1.149^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~510~^1.517^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~511~^2.064^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~512~^1.142^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~513~^1.837^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~514~^2.972^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~515~^5.018^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~516~^1.326^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~517~^1.292^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~518~^1.249^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23275~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23275~^~605~^0.338^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~606~^2.587^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~610~^0.004^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23275~^~611~^0.005^0^^~4~^~BFFN~^~23174~^^^^^^^^^~07/01/2011~ -~23275~^~612~^0.166^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~613~^1.474^6^0.044^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~614~^0.849^6^0.025^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~615~^0.000^6^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~617~^2.876^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23275~^~618~^0.204^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23275~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23275~^~620~^0.041^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~625~^0.029^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~626~^0.177^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~628~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~629~^0.001^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23275~^~631~^0.010^0^^~4~^~BFFN~^~23174~^^^^^^^^^~10/01/2001~ -~23275~^~645~^3.133^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~646~^0.255^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23275~^~653~^0.090^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~663~^0.338^6^0.018^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~670~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~674~^2.538^6^0.124^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~675~^0.186^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~685~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~687~^0.040^6^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23275~^~693~^0.338^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23276~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23276~^~405~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23276~^~406~^5.655^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23276~^~415~^0.561^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23276~^~501~^0.331^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~502~^1.375^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~503~^1.368^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~504~^2.507^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~505~^2.792^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~506~^0.777^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~507~^0.291^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~508~^1.165^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~509~^1.090^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~510~^1.448^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~511~^1.953^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~512~^1.070^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~513~^1.746^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~514~^2.814^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~515~^4.772^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~516~^1.258^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~517~^1.221^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~518~^1.183^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23276~^~521~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23276~^~605~^0.375^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~606~^3.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~610~^0.004^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23276~^~611~^0.005^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23276~^~612~^0.185^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~613~^1.701^4^0.055^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~614~^1.059^4^0.031^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~615~^0.000^4^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~617~^3.276^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23276~^~618~^0.237^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23276~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23276~^~620~^0.048^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~625~^0.034^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~626~^0.211^4^0.010^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~628~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~629~^0.001^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23276~^~631~^0.009^0^^~4~^~BFFN~^~23176~^^^^^^^^^~10/01/2001~ -~23276~^~645~^3.581^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~646~^0.297^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23276~^~653~^0.097^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~663~^0.375^4^0.022^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~670~^0.021^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~674~^2.901^4^0.154^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~675~^0.216^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~685~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~687~^0.046^4^0.002^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23276~^~693~^0.375^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~312~^0.136^0^^~4~^~BFNN~^^^^^^^^^^~10/01/2001~ -~23277~^~404~^0.089^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23277~^~405~^0.428^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23277~^~406~^4.554^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23277~^~415~^0.460^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23277~^~501~^0.370^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~502~^1.580^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~503~^1.565^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~504~^2.917^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~505~^3.273^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~506~^0.897^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~507~^0.342^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~508~^1.338^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~509~^1.267^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~510~^1.651^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~511~^2.277^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~512~^1.281^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~513~^2.007^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~514~^3.273^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~515~^5.493^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~516~^1.452^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~517~^1.437^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~518~^1.380^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23277~^~521~^0.143^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23277~^~605~^0.281^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~606~^1.887^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~610~^0.003^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23277~^~611~^0.004^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23277~^~612~^0.137^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~613~^1.132^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~614~^0.533^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~617~^2.274^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23277~^~618~^0.153^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23277~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~ -~23277~^~620~^0.031^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~625~^0.021^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~626~^0.126^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~ -~23277~^~631~^0.011^0^^~4~^~BFFN~^~23178~^^^^^^^^^~10/01/2001~ -~23277~^~645~^2.461^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~646~^0.192^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23277~^~653~^0.080^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~654~^0.006^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~663~^0.281^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~670~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~674~^1.993^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~675~^0.140^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~685~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~687~^0.031^2^^~1~^~AR~^^^^^^^^^^~07/01/2011~ -~23277~^~693~^0.281^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~ -~23278~^~312~^0.159^0^^~4~^~BFNN~^~23042~^^^^^^^^^~08/01/2011~ -~23278~^~404~^0.074^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23278~^~405~^0.260^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23278~^~406~^3.916^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23278~^~415~^0.396^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23278~^~501~^0.291^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~502~^1.225^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~503~^1.211^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~504~^2.241^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~505~^2.490^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~506~^0.703^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~507~^0.265^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~508~^1.043^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~509~^0.969^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~510~^1.300^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~511~^1.770^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~512~^0.974^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~513~^1.612^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~514~^2.533^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~515~^4.251^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~516~^1.279^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~517~^1.166^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~518~^1.071^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23278~^~521~^0.178^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23278~^~605~^0.704^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~606~^5.350^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23278~^~611~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23278~^~612~^0.347^6^0.021^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~613~^3.089^6^0.185^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~614~^1.739^6^0.100^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~617~^6.688^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23278~^~618~^0.468^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23278~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23278~^~620~^0.050^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~625~^0.116^6^0.010^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~626~^0.501^6^0.032^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~628~^0.030^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23278~^~631~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23278~^~645~^7.497^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~646~^0.553^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23278~^~653~^0.161^6^0.010^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~654~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~663~^0.704^6^0.060^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~670~^0.075^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~674~^5.984^6^0.402^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~675~^0.393^6^0.036^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~685~^0.033^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~687~^0.162^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23278~^~693~^0.704^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~312~^0.162^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~404~^0.074^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~405~^0.263^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~406~^3.961^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~415~^0.400^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23279~^~501~^0.295^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~502~^1.233^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~503~^1.222^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~504~^2.246^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~505~^2.487^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~506~^0.709^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~507~^0.265^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~508~^1.049^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~509~^0.973^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~510~^1.314^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~511~^1.775^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~512~^0.968^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~513~^1.626^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~514~^2.540^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~515~^4.278^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~516~^1.297^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~517~^1.172^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~518~^1.074^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23279~^~521~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23279~^~605~^0.685^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~606~^5.092^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~610~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23279~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23279~^~612~^0.339^4^0.026^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~613~^2.919^4^0.230^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~614~^1.666^4^0.124^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~615~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~617~^6.300^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23279~^~618~^0.439^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23279~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23279~^~620~^0.050^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~625~^0.106^4^0.012^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~626~^0.493^4^0.039^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~628~^0.030^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23279~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23279~^~645~^7.085^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~646~^0.523^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23279~^~653~^0.154^4^0.012^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~654~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~663~^0.685^4^0.075^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~670~^0.070^4^0.008^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~674~^5.615^4^0.499^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~675~^0.369^4^0.045^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~685~^0.033^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~687~^0.156^4^0.014^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23279~^~693~^0.685^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~312~^0.125^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~404~^0.080^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~405~^0.385^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~406~^4.093^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~415~^0.413^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23280~^~501~^0.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~502~^1.225^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~503~^1.210^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~504~^2.259^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~505~^2.522^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~506~^0.705^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~508~^1.041^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~509~^0.977^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~510~^1.293^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~511~^1.784^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~512~^0.998^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~513~^1.605^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~514~^2.550^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~515~^4.258^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~516~^1.262^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~517~^1.177^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~518~^1.081^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23280~^~521~^0.174^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23280~^~605~^0.731^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~606~^5.737^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23280~^~611~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23280~^~612~^0.358^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~613~^3.343^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~614~^1.849^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~617~^7.270^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23280~^~618~^0.513^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23280~^~619~^0.033^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23280~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~625~^0.130^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~626~^0.512^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~628~^0.031^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23280~^~631~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23280~^~645~^8.115^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~646~^0.598^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23280~^~653~^0.173^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~654~^0.009^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~663~^0.731^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~670~^0.084^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~674~^6.538^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~675~^0.429^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~685~^0.033^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~687~^0.171^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23280~^~693~^0.731^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~312~^0.131^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23281~^~404~^0.084^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23281~^~405~^0.224^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23281~^~406~^3.588^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23281~^~415~^0.399^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23281~^~501~^0.223^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~502~^0.938^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~503~^0.927^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~504~^1.715^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~505~^1.906^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~506~^0.538^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~507~^0.203^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~508~^0.798^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~509~^0.741^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~510~^0.995^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~511~^1.355^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~512~^0.746^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~513~^1.234^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~514~^1.939^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~515~^3.254^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~516~^0.979^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~517~^0.893^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~518~^0.819^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23281~^~521~^0.136^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23281~^~605~^0.755^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~606~^4.619^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~610~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23281~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23281~^~612~^0.300^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~613~^2.679^6^0.116^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~614~^1.486^6^0.073^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~617~^5.832^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23281~^~618~^0.352^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23281~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23281~^~620~^0.034^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~625~^0.104^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~626~^0.435^6^0.019^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~628~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~629~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23281~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23281~^~645~^6.500^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~646~^0.406^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23281~^~653~^0.145^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~654~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~663~^0.755^6^0.029^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~670~^0.054^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~674~^5.078^6^0.220^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~675~^0.298^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~685~^0.019^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~687~^0.105^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23281~^~693~^0.755^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~312~^0.130^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~404~^0.083^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~405~^0.222^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~406~^3.552^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~415~^0.395^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23282~^~501~^0.221^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~502~^0.924^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~503~^0.915^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~504~^1.683^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~505~^1.863^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~506~^0.531^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~507~^0.198^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~508~^0.786^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~509~^0.729^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~510~^0.984^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~511~^1.330^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~512~^0.725^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~513~^1.218^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~514~^1.903^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~515~^3.205^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~516~^0.971^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~517~^0.878^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~518~^0.805^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23282~^~521~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23282~^~605~^0.809^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~606~^5.079^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23282~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23282~^~612~^0.319^4^0.013^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~613~^2.925^4^0.143^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~614~^1.670^4^0.090^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~615~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~617~^6.351^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23282~^~618~^0.373^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23282~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23282~^~620~^0.037^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~625~^0.115^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~626~^0.476^4^0.023^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~628~^0.025^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23282~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23282~^~645~^7.083^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~646~^0.433^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23282~^~653~^0.152^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~663~^0.809^4^0.037^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~670~^0.058^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~674~^5.542^4^0.273^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~675~^0.315^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~685~^0.022^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~687~^0.115^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23282~^~693~^0.809^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~312~^0.121^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~404~^0.145^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~405~^0.267^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~406~^3.630^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~415~^0.371^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23283~^~501~^0.225^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~502~^0.965^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~503~^0.954^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~504~^1.781^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~505~^1.988^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~506~^0.555^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~507~^0.211^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~508~^0.820^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~509~^0.770^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~510~^1.019^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~511~^1.406^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~512~^0.786^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~513~^1.265^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~514~^2.010^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~515~^3.357^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~516~^0.995^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~517~^0.927^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~518~^0.852^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23283~^~521~^0.137^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23283~^~605~^0.673^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~606~^3.930^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23283~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23283~^~612~^0.270^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~613~^2.309^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~614~^1.209^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~617~^5.053^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23283~^~618~^0.319^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23283~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23283~^~620~^0.030^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~625~^0.089^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~626~^0.373^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~628~^0.021^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~629~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23283~^~631~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23283~^~645~^5.626^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~646~^0.366^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23283~^~653~^0.135^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~663~^0.673^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~670~^0.047^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~674~^4.381^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~675~^0.272^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~685~^0.016^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~687~^0.090^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23283~^~693~^0.673^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~312~^0.166^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~404~^0.078^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~405~^0.273^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~406~^4.127^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~415~^0.417^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23284~^~501~^0.307^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~502~^1.291^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~503~^1.276^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~504~^2.362^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~505~^2.625^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~506~^0.741^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~507~^0.279^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~508~^1.099^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~509~^1.021^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~510~^1.369^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~511~^1.866^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~512~^1.027^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~513~^1.699^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~514~^2.670^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~515~^4.480^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~516~^1.348^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~517~^1.229^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~518~^1.128^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23284~^~521~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23284~^~605~^0.698^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~606~^4.817^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~610~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23284~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23284~^~612~^0.283^6^0.018^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~613~^2.668^6^0.181^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~614~^1.726^6^0.114^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~617~^5.632^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23284~^~618~^0.400^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23284~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23284~^~620~^0.046^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~625~^0.096^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~626~^0.467^6^0.038^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~628~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23284~^~631~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23284~^~645~^6.354^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~646~^0.476^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23284~^~653~^0.127^6^0.012^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~663~^0.698^6^0.074^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~670~^0.052^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~674~^4.934^6^0.349^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~675~^0.348^6^0.036^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~685~^0.027^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~687~^0.135^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23284~^~693~^0.698^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~312~^0.162^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~404~^0.076^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~405~^0.267^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~406~^4.037^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~415~^0.408^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23285~^~501~^0.301^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~502~^1.256^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~503~^1.245^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~504~^2.289^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~505~^2.534^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~506~^0.722^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~508~^1.069^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~509~^0.991^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~510~^1.339^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~511~^1.809^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~512~^0.986^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~513~^1.657^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~514~^2.588^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~515~^4.360^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~516~^1.321^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~517~^1.195^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~518~^1.095^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23285~^~521~^0.183^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23285~^~605~^0.776^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~606~^5.454^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~610~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23285~^~611~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23285~^~612~^0.321^4^0.022^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~613~^2.991^4^0.224^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~614~^1.976^4^0.141^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~615~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~617~^6.373^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23285~^~618~^0.450^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23285~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23285~^~620~^0.047^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~625~^0.110^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~626~^0.491^4^0.048^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~628~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23285~^~631~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23285~^~645~^7.142^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~646~^0.527^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23285~^~653~^0.153^4^0.015^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~654~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~663~^0.776^4^0.092^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~670~^0.056^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~674~^5.597^4^0.433^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~675~^0.395^4^0.045^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~685~^0.024^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~687~^0.144^4^0.014^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23285~^~693~^0.776^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23286~^~312~^0.138^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~404~^0.088^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~405~^0.427^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~406~^4.542^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~415~^0.459^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23286~^~501~^0.294^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~502~^1.258^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~503~^1.242^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~504~^2.320^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~505~^2.590^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~506~^0.724^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~507~^0.275^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~508~^1.069^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~509~^1.004^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~510~^1.328^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~511~^1.832^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~512~^1.024^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~513~^1.648^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~514~^2.618^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~515~^4.373^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~516~^1.296^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~517~^1.208^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~518~^1.110^0^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~521~^0.193^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23286~^~605~^0.581^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23286~^~606~^3.862^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23286~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23286~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23286~^~612~^0.226^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~613~^2.184^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~614~^1.351^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~617~^4.521^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23286~^~618~^0.324^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23286~^~619~^0.031^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23286~^~620~^0.043^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~625~^0.074^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~626~^0.433^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~628~^0.021^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23286~^~631~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23286~^~645~^5.171^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23286~^~646~^0.399^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23286~^~653~^0.088^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~654~^0.011^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~663~^0.581^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~670~^0.046^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~674~^3.940^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~675~^0.278^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~685~^0.031^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~687~^0.121^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23286~^~693~^0.581^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~312~^0.166^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~404~^0.076^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~405~^0.269^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~406~^4.067^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~415~^0.411^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23287~^~501~^0.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~502~^1.272^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~503~^1.258^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~504~^2.327^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~505~^2.586^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~506~^0.731^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~507~^0.275^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~508~^1.083^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~509~^1.006^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~510~^1.350^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~511~^1.839^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~512~^1.012^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~513~^1.674^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~514~^2.631^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~515~^4.415^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~516~^1.328^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~517~^1.211^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~518~^1.112^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23287~^~521~^0.184^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23287~^~605~^0.700^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~606~^4.361^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23287~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23287~^~612~^0.269^6^0.017^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~613~^2.442^6^0.143^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~614~^1.501^6^0.090^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~615~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~617~^5.252^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23287~^~618~^0.410^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23287~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23287~^~620~^0.056^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~625~^0.070^6^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~626~^0.393^6^0.024^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~628~^0.022^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23287~^~631~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23287~^~645~^5.848^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~646~^0.486^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23287~^~653~^0.136^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~654~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~663~^0.700^6^0.037^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~670~^0.045^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~674~^4.552^6^0.336^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~675~^0.365^6^0.036^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~685~^0.019^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~687~^0.111^6^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23287~^~693~^0.700^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~312~^0.165^0^^~4~^~BFNN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~404~^0.076^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~405~^0.267^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~406~^4.037^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~415~^0.408^0^^~4~^~BFPN~^~23042~^^^^^^^^^~10/01/2001~ -~23288~^~501~^0.301^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~502~^1.256^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~503~^1.245^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~504~^2.289^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~505~^2.534^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~506~^0.722^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~508~^1.069^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~509~^0.991^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~510~^1.339^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~511~^1.809^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~512~^0.986^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~513~^1.657^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~514~^2.588^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~515~^4.360^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~516~^1.321^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~517~^1.195^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~518~^1.095^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23288~^~521~^0.183^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23288~^~605~^0.757^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~606~^4.824^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23288~^~611~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23288~^~612~^0.284^4^0.021^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~613~^2.668^4^0.177^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~614~^1.713^4^0.112^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~615~^0.004^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~617~^5.731^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23288~^~618~^0.416^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23288~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23288~^~620~^0.066^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~625~^0.074^4^0.009^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~626~^0.437^4^0.030^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~628~^0.024^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23288~^~631~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23288~^~645~^6.388^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~646~^0.506^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23288~^~653~^0.142^4^0.013^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~654~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~663~^0.757^4^0.046^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~670~^0.048^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~674~^4.974^4^0.418^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~675~^0.368^4^0.045^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~685~^0.023^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~687~^0.122^4^0.009^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23288~^~693~^0.757^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23289~^~312~^0.135^0^^~4~^~BFNN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~404~^0.085^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~405~^0.409^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~406~^4.350^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~415~^0.439^0^^~4~^~BFPN~^~23044~^^^^^^^^^~10/01/2001~ -~23289~^~501~^0.304^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~502~^1.302^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~503~^1.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~504~^2.401^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~505~^2.680^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~506~^0.749^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~508~^1.106^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~509~^1.039^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~510~^1.374^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~511~^1.896^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~512~^1.060^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~513~^1.705^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~514~^2.710^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~515~^4.526^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~516~^1.342^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~517~^1.250^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~518~^1.148^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23289~^~521~^0.185^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23289~^~605~^0.614^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23289~^~606~^3.666^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23289~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~610~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23289~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23289~^~612~^0.245^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~613~^2.103^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~614~^1.183^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~615~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~617~^4.534^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23289~^~618~^0.401^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23289~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23289~^~620~^0.041^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~625~^0.064^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~626~^0.328^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~628~^0.019^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23289~^~631~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23289~^~645~^5.038^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23289~^~646~^0.457^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23289~^~653~^0.127^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~663~^0.614^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~670~^0.040^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~674~^3.920^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~675~^0.361^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~685~^0.013^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~687~^0.094^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23289~^~693~^0.614^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~312~^0.144^0^^~4~^~BFNN~^~23041~^^^^^^^^^~08/01/2011~ -~23290~^~404~^0.089^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~405~^0.237^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~406~^3.804^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~415~^0.423^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23290~^~501~^0.236^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~502~^0.994^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~503~^0.983^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~504~^1.819^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~505~^2.021^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~506~^0.571^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~507~^0.215^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~508~^0.846^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~509~^0.786^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~510~^1.055^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~511~^1.437^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~512~^0.791^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~513~^1.308^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~514~^2.056^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~515~^3.450^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~516~^1.038^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~517~^0.947^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~518~^0.869^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23290~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23290~^~605~^0.602^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~606~^3.547^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~610~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23290~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2011~ -~23290~^~612~^0.231^6^0.011^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~613~^1.957^6^0.113^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~614~^1.223^6^0.055^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~615~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~617~^4.336^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23290~^~618~^0.302^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23290~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23290~^~620~^0.037^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~625~^0.082^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~626~^0.265^6^0.014^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~628~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~629~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23290~^~631~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23290~^~645~^4.801^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~646~^0.358^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23290~^~653~^0.121^6^0.008^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~654~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~663~^0.602^6^0.030^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~670~^0.045^6^0.002^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~674~^3.733^6^0.218^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~675~^0.258^6^0.010^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~685~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~687~^0.101^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23290~^~693~^0.602^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~312~^0.144^0^^~4~^~BFNN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~404~^0.088^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~405~^0.234^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~406~^3.750^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~415~^0.417^0^^~4~^~BFPN~^~23041~^^^^^^^^^~10/01/2001~ -~23291~^~501~^0.233^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~502~^0.975^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~503~^0.966^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~504~^1.777^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~505~^1.967^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~506~^0.560^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~507~^0.209^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~508~^0.830^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~509~^0.769^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~510~^1.039^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~511~^1.404^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~512~^0.765^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~513~^1.286^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~514~^2.009^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~515~^3.384^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~516~^1.026^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~517~^0.927^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~518~^0.850^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23291~^~521~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23291~^~605~^0.697^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~606~^4.043^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~610~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23291~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23291~^~612~^0.267^4^0.014^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~613~^2.239^4^0.141^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~614~^1.375^4^0.068^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~615~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~617~^4.889^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23291~^~618~^0.359^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23291~^~619~^0.019^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23291~^~620~^0.046^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~625~^0.090^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~626~^0.301^4^0.018^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~628~^0.021^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~629~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23291~^~631~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23291~^~645~^5.414^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~646~^0.425^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23291~^~653~^0.145^4^0.010^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~654~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~663~^0.697^4^0.037^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~670~^0.051^4^0.003^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~674~^4.192^4^0.271^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~675~^0.309^4^0.012^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~685~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~687~^0.114^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23291~^~693~^0.697^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23292~^~312~^0.132^0^^~4~^~BFNN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~404~^0.156^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~405~^0.287^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~406~^3.901^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~415~^0.399^0^^~4~^~BFPN~^~23043~^^^^^^^^^~10/01/2001~ -~23292~^~501~^0.242^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~502~^1.037^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~503~^1.025^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~504~^1.914^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~505~^2.136^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~506~^0.597^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~508~^0.882^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~509~^0.828^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~510~^1.095^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~511~^1.511^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~512~^0.845^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~513~^1.359^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~514~^2.160^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~515~^3.607^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~516~^1.069^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~517~^0.997^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~518~^0.915^0^^~1~^~AR~^^^^^^^^^^~10/01/2001~ -~23292~^~521~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2001~ -~23292~^~605~^0.461^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23292~^~606~^2.803^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23292~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23292~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23292~^~612~^0.177^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~613~^1.534^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~614~^0.996^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~617~^3.506^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23292~^~618~^0.216^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23292~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~08/01/2011~ -~23292~^~620~^0.024^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~625~^0.069^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~626~^0.211^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~628~^0.014^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~629~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~ -~23292~^~631~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~10/01/2001~ -~23292~^~645~^3.882^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23292~^~646~^0.259^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23292~^~653~^0.085^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~654~^0.008^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~663~^0.461^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~670~^0.035^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~674~^3.046^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~675~^0.181^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~685~^0.016^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~687~^0.081^2^^~1~^~AR~^^^^^^^^^^~08/01/2011~ -~23292~^~693~^0.461^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~ -~23293~^~501~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~502~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~503~^0.753^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~504~^1.425^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~505~^1.549^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~506~^0.503^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~507~^0.186^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~508~^0.674^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~509~^0.611^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~510~^0.801^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~511~^1.167^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~512~^0.574^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~513~^1.011^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~514~^1.589^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~515~^2.802^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~516~^0.808^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~517~^0.728^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~518~^0.681^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~521~^0.121^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23293~^~605~^0.906^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~606~^7.938^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~611~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~612~^0.539^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~613~^4.363^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~614~^2.678^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~615~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~617~^7.165^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23293~^~618~^0.503^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23293~^~619~^0.126^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23293~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~624~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~625~^0.153^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~626~^0.626^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23293~^~628~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~645~^7.969^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~646~^0.699^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~652~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~653~^0.198^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~663~^0.663^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~665~^0.219^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~674~^6.501^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~675~^0.285^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~693~^0.663^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~695~^0.242^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23293~^~851~^0.102^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23293~^~856~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~501~^0.239^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~502~^0.944^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~503~^0.913^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~504~^1.726^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~505~^1.876^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~506~^0.608^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~507~^0.222^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~508~^0.813^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~509~^0.739^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~510~^0.964^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~511~^1.402^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~512~^0.688^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~513~^1.205^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~514~^1.920^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~515~^3.395^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~516~^0.929^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~517~^0.858^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~518~^0.819^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~521~^0.105^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23294~^~605~^0.264^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~606~^2.725^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23294~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23294~^~612~^0.154^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~613~^1.428^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~614~^0.994^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~617~^2.220^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23294~^~618~^0.220^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23294~^~619~^0.055^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23294~^~620~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23294~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~626~^0.153^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23294~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~631~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~645~^2.408^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~646~^0.386^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~652~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~653~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~663~^0.214^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~665~^0.045^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~674~^2.007^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~675~^0.175^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~693~^0.214^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23294~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23294~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23295~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~502~^0.914^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~503~^0.884^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~504~^1.671^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~505~^1.817^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~506~^0.589^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~507~^0.215^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~508~^0.787^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~509~^0.716^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~510~^0.934^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~511~^1.358^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~512~^0.666^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~513~^1.167^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~514~^1.859^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~515~^3.288^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~516~^0.899^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~517~^0.831^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~518~^0.793^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23295~^~605~^0.464^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~606~^5.507^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23295~^~611~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~612~^0.355^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~613~^3.119^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~614~^1.766^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~615~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~617~^4.860^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23295~^~618~^0.374^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23295~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23295~^~620~^0.066^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~625~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~626~^0.302^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23295~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23295~^~631~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~645~^5.246^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~646~^0.494^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~652~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~653~^0.173^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~663~^0.399^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~665~^0.054^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23295~^~674~^4.461^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~675~^0.320^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~693~^0.399^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~695~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23295~^~851~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23295~^~856~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~605~^2.763^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~606~^22.650^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~610~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~611~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~612~^1.705^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~613~^12.407^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~614~^7.391^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~615~^0.092^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~617~^19.155^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23296~^~618~^1.020^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23296~^~619~^0.288^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23296~^~620~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~624~^0.041^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~625~^0.482^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~626~^1.723^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~627~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~628~^0.067^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~631~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~645~^21.426^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~646~^1.419^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~652~^0.312^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~653~^0.625^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~663~^2.017^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~665~^0.648^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~674~^17.138^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~675~^0.372^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23296~^~693~^2.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~695~^0.745^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23296~^~851~^0.191^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~856~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23296~^~859~^1.696^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~605~^3.209^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~606~^26.584^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~610~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~611~^0.049^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~612~^1.866^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~613~^13.715^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~614~^9.610^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~615~^0.124^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~617~^20.881^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23297~^~618~^1.116^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23297~^~619~^0.315^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23297~^~620~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~624~^0.052^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~625~^0.412^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~626~^1.558^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~627~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~628~^0.078^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~629~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~631~^0.049^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~645~^22.930^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~646~^1.552^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~652~^0.362^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~653~^0.762^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~654~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~663~^2.407^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~665~^0.691^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23297~^~674~^18.474^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~675~^0.424^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~689~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~693~^2.407^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~695~^0.801^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23297~^~851~^0.205^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~856~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23297~^~859~^1.987^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~605~^3.304^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~606~^22.504^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~610~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~611~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~612~^1.683^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~613~^12.691^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~614~^6.980^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~615~^0.051^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~617~^28.657^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23298~^~618~^1.372^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23298~^~619~^0.137^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23298~^~620~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~625~^0.532^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~626~^2.216^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~627~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~628~^0.178^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~629~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~631~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~645~^31.583^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~646~^1.575^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~652~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~653~^0.752^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~663~^2.814^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~665~^0.407^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~672~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~674~^25.843^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~675~^0.966^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23298~^~693~^2.814^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~695~^0.490^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23298~^~851~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~856~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23298~^~859~^2.483^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~605~^3.398^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~606~^23.155^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~610~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~611~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~612~^1.649^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~613~^12.894^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~614~^7.438^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~615~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~617~^28.174^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23299~^~618~^1.349^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23299~^~619~^0.143^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23299~^~620~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~625~^0.480^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~626~^2.053^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~627~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~628~^0.181^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~629~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~631~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~645~^30.887^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~646~^1.555^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~652~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~653~^0.772^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~663~^2.912^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~665~^0.402^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~674~^25.262^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~675~^0.947^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23299~^~693~^2.912^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~695~^0.486^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23299~^~851~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~856~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23299~^~859~^2.579^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~605~^2.842^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~606~^22.395^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~610~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~611~^0.036^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~612~^1.736^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~613~^13.607^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~614~^6.137^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~615~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~617~^31.821^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23300~^~618~^2.157^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23300~^~619~^0.200^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23300~^~620~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~625~^0.737^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~626~^3.031^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~627~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~628~^0.232^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~629~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~645~^35.821^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~646~^2.448^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~652~^0.248^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~653~^0.546^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~663~^2.262^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~665~^0.478^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~672~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~674~^29.560^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~675~^1.680^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23300~^~693~^2.262^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~695~^0.580^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23300~^~851~^0.098^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~856~^0.102^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23300~^~859~^1.877^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~605~^3.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~606~^22.467^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~610~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~611~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~612~^1.597^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~613~^13.310^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~614~^6.566^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~615~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~617~^31.829^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23301~^~618~^1.894^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23301~^~619~^0.192^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23301~^~620~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~625~^0.675^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~626~^2.405^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~627~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~628~^0.249^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~629~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~645~^35.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~646~^2.164^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~652~^0.250^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~653~^0.621^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~654~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~663~^2.458^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~665~^0.466^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~672~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~674~^29.371^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~675~^1.429^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23301~^~693~^2.458^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~695~^0.571^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23301~^~851~^0.087^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~856~^0.105^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23301~^~859~^2.094^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23302~^~501~^0.231^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~502~^0.912^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~503~^0.882^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~504~^1.668^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~505~^1.813^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~506~^0.588^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~507~^0.214^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~508~^0.786^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~509~^0.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~510~^0.932^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~511~^1.355^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~512~^0.665^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~513~^1.165^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~514~^1.855^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~515~^3.281^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~516~^0.897^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~517~^0.829^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~518~^0.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~521~^0.102^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~605~^0.347^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~606~^3.393^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~612~^0.206^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~613~^1.796^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~614~^1.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~617~^2.788^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~618~^0.247^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~619~^0.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~620~^0.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~625~^0.041^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~626~^0.206^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~628~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~631~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~645~^3.046^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~646~^0.420^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23302~^~652~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~653~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23302~^~859~^0.057^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23303~^~501~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~502~^0.987^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~503~^0.954^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~504~^1.804^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~505~^1.961^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~506~^0.636^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~507~^0.232^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~508~^0.850^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~509~^0.773^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~510~^1.008^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~511~^1.466^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~512~^0.719^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~513~^1.260^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~514~^2.006^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~515~^3.549^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~516~^0.971^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~517~^0.897^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~518~^0.856^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~521~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23303~^~605~^0.164^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~606~^2.090^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23303~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23303~^~612~^0.131^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~613~^1.239^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~614~^0.623^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23303~^~617~^1.877^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23303~^~618~^0.125^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23303~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23303~^~620~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23303~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~626~^0.153^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23303~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23303~^~629~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~631~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~645~^2.067^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~646~^0.225^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~652~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~653~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~663~^0.131^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~665~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~674~^1.747^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~675~^0.097^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~693~^0.131^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23303~^~851~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23303~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23304~^~501~^0.223^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~502~^0.882^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~503~^0.853^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~504~^1.613^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~505~^1.753^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~506~^0.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~507~^0.207^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~508~^0.760^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~509~^0.691^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~510~^0.901^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~511~^1.310^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~512~^0.643^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~513~^1.126^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~514~^1.794^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~515~^3.173^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~516~^0.868^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~517~^0.802^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~518~^0.765^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~521~^0.098^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~605~^0.564^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~606~^6.105^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~611~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~612~^0.402^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~613~^3.455^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~614~^1.950^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~617~^5.692^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~618~^0.409^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~619~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~620~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~625~^0.084^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~626~^0.368^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~628~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~631~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~645~^6.167^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~646~^0.531^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23304~^~652~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~653~^0.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~672~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23304~^~859~^0.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~501~^0.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~502~^0.820^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~503~^0.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~504~^1.498^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~505~^1.629^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~506~^0.528^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~507~^0.193^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~508~^0.706^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~509~^0.642^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~510~^0.837^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~511~^1.217^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~512~^0.597^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~513~^1.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~514~^1.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~515~^2.948^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~516~^0.806^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~517~^0.745^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~518~^0.711^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~521~^0.091^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~605~^0.634^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~606~^5.837^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~611~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~612~^0.408^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~613~^3.218^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~614~^1.918^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~617~^4.920^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~618~^0.283^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~619~^0.075^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~620~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~624~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~625~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~626~^0.408^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~627~^0.004^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~628~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~629~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~645~^5.447^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~646~^0.436^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23305~^~652~^0.074^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~653~^0.161^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23305~^~859~^0.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23306~^~501~^0.251^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~502~^0.992^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~503~^0.959^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~504~^1.813^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~505~^1.970^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~506~^0.639^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~507~^0.233^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~508~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~509~^0.777^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~510~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~511~^1.473^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~512~^0.722^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~513~^1.266^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~514~^2.016^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~515~^3.566^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~516~^0.975^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~517~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~518~^0.860^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~521~^0.111^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23306~^~605~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~606~^1.601^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23306~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23306~^~612~^0.079^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~613~^0.843^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~614~^0.597^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23306~^~617~^1.385^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23306~^~618~^0.166^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23306~^~619~^0.045^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23306~^~620~^0.062^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23306~^~625~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~626~^0.093^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23306~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23306~^~629~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~631~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~645~^1.495^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~646~^0.338^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~652~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~653~^0.046^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~663~^0.102^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~665~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~674~^1.284^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~675~^0.148^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~693~^0.102^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23306~^~851~^0.040^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23306~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23307~^~501~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~502~^0.972^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~503~^0.940^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~504~^1.777^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~505~^1.931^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~506~^0.626^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~508~^0.837^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~509~^0.761^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~510~^0.993^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~511~^1.444^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~512~^0.708^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~513~^1.241^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~514~^1.976^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~515~^3.496^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~516~^0.956^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~517~^0.884^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~518~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~521~^0.108^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23307~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~606~^3.596^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23307~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23307~^~612~^0.220^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~613~^2.049^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~614~^1.176^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~617~^3.235^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23307~^~618~^0.180^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23307~^~619~^0.049^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23307~^~620~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~625~^0.042^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~626~^0.232^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23307~^~628~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~631~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~645~^3.522^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~646~^0.285^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~652~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~653~^0.091^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~663~^0.228^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~665~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~674~^3.007^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~675~^0.125^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~693~^0.228^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23307~^~851~^0.041^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23307~^~856~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~501~^0.245^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~502~^0.969^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~503~^0.937^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~504~^1.771^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~505~^1.925^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~506~^0.624^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~508~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~509~^0.759^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~510~^0.990^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~511~^1.439^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~513~^1.237^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~514~^1.970^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~515~^3.485^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~516~^0.953^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~517~^0.881^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~518~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~521~^0.108^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23308~^~605~^0.179^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~606~^1.959^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23308~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23308~^~612~^0.125^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~613~^1.113^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~614~^0.627^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23308~^~617~^1.901^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23308~^~618~^0.178^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23308~^~619~^0.058^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23308~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23308~^~625~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~626~^0.186^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23308~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23308~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~631~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~645~^2.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~646~^0.349^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~652~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~653~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~663~^0.135^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~665~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~674~^1.766^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~675~^0.139^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~693~^0.135^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23308~^~851~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23308~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~501~^0.257^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~502~^1.015^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~503~^0.981^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~504~^1.855^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~505~^2.016^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~506~^0.653^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~507~^0.238^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~508~^0.873^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~509~^0.795^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~510~^1.036^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~511~^1.507^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~512~^0.739^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~513~^1.295^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~514~^2.063^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~515~^3.649^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~516~^0.998^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~517~^0.922^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~518~^0.880^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~521~^0.113^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~ -~23309~^~605~^0.141^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~606~^1.783^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~610~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~611~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~612~^0.092^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~613~^0.989^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~614~^0.611^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~615~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~617~^1.726^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23309~^~618~^0.158^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23309~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23309~^~620~^0.047^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~625~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~626~^0.111^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23309~^~628~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23309~^~629~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~631~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~645~^1.860^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~646~^0.293^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~652~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~653~^0.052^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~663~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~665~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~674~^1.606^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~675~^0.141^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~693~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23309~^~851~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23309~^~856~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23310~^~501~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~502~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~503~^0.826^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~504~^1.562^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~505~^1.698^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~506~^0.550^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~507~^0.201^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~508~^0.736^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~509~^0.669^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~510~^0.873^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~511~^1.269^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~512~^0.622^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~513~^1.091^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~514~^1.737^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~515~^3.073^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~516~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~517~^0.777^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~518~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~521~^0.095^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23310~^~605~^0.645^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~606~^7.377^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~610~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~612~^0.469^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~613~^4.406^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~614~^2.178^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~617~^7.513^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23310~^~618~^0.575^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23310~^~619~^0.038^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23310~^~620~^0.066^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23310~^~625~^0.085^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~626~^0.539^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23310~^~628~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23310~^~631~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~645~^8.170^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~646~^0.698^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~652~^0.075^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~653~^0.211^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~663~^0.546^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~665~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23310~^~674~^6.967^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~675~^0.491^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~693~^0.546^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~695~^0.100^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23310~^~851~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23310~^~856~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~502~^0.912^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~503~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~504~^1.668^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~505~^1.813^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~506~^0.588^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~507~^0.214^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~508~^0.785^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~509~^0.715^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~510~^0.932^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~511~^1.355^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~512~^0.665^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~513~^1.165^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~514~^1.855^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~515~^3.281^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~516~^0.897^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~517~^0.829^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~518~^0.792^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~521~^0.102^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23311~^~605~^0.524^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~606~^5.909^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~612~^0.444^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~613~^3.534^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~614~^1.659^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~617~^7.263^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23311~^~618~^0.362^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23311~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23311~^~620~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23311~^~625~^0.130^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~626~^0.593^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23311~^~628~^0.036^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23311~^~631~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~645~^8.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~646~^0.441^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~652~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~653~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~663~^0.446^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~665~^0.065^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23311~^~674~^6.817^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~675~^0.298^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~693~^0.446^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23311~^~851~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23311~^~856~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~502~^0.766^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~503~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~504~^1.401^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~505~^1.523^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~506~^0.494^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~507~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~508~^0.660^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~509~^0.600^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~510~^0.783^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~511~^1.138^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~512~^0.558^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~513~^0.978^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~514~^1.558^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~515~^2.756^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~516~^0.754^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~517~^0.697^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~518~^0.665^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~521~^0.085^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23312~^~605~^0.891^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~606~^10.309^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~610~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~611~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~612~^0.799^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~613~^6.590^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~614~^2.550^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~615~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~617~^13.668^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23312~^~618~^0.943^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23312~^~619~^0.077^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23312~^~620~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23312~^~625~^0.310^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~626~^1.307^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23312~^~628~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23312~^~631~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~645~^15.368^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~646~^1.079^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~652~^0.094^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~653~^0.226^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~663~^0.689^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~665~^0.167^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~674~^12.978^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~675~^0.776^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~693~^0.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~695~^0.202^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23312~^~851~^0.042^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23312~^~856~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~501~^0.233^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~502~^0.921^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~503~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~504~^1.684^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~505~^1.831^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~506~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~507~^0.217^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~508~^0.793^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~509~^0.722^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~510~^0.941^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~511~^1.369^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~512~^0.671^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~513~^1.176^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~514~^1.874^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~515~^3.314^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~516~^0.906^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~517~^0.838^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~518~^0.799^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~521~^0.103^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23313~^~605~^0.758^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~606~^6.536^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~612~^0.474^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~613~^3.998^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~614~^1.769^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~617~^7.600^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23313~^~618~^0.434^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23313~^~619~^0.034^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23313~^~620~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23313~^~625~^0.143^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~626~^0.670^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23313~^~628~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23313~^~631~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~645~^8.451^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~646~^0.523^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~652~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~653~^0.193^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~663~^0.655^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~665~^0.085^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23313~^~674~^6.945^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~675~^0.349^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~693~^0.655^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23313~^~851~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23313~^~856~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~501~^0.202^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~502~^0.798^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~503~^0.771^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~504~^1.458^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~505~^1.585^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~506~^0.514^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~507~^0.187^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~508~^0.687^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~509~^0.625^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~510~^0.815^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~511~^1.184^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~512~^0.581^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~513~^1.018^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~514~^1.622^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~515~^2.868^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~516~^0.784^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~517~^0.725^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~518~^0.692^0^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~521~^0.089^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23314~^~605~^0.911^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~606~^11.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~611~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~612~^0.863^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~613~^7.071^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~614~^2.776^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~615~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~617~^12.842^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23314~^~618~^0.675^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23314~^~619~^0.054^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~ -~23314~^~620~^0.041^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~624~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23314~^~625~^0.294^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~626~^1.135^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~ -~23314~^~628~^0.073^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~629~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23314~^~631~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~645~^14.343^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~646~^0.789^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~652~^0.107^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~653~^0.256^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~663~^0.744^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~665~^0.139^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~672~^0.005^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2012~ -~23314~^~674~^12.098^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~675~^0.536^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~693~^0.744^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~695~^0.167^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~ -~23314~^~851~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23314~^~856~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2012~ -~23315~^~501~^0.248^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~502~^0.980^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~503~^0.948^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~504~^1.792^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~505~^1.948^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~506~^0.631^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~507~^0.230^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~508~^0.844^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~509~^0.768^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~510~^1.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~511~^1.456^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~512~^0.714^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~513~^1.251^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~514~^1.993^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~515~^3.526^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~516~^0.964^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~517~^0.891^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~518~^0.850^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~521~^0.110^0^^~1~^~A~^^^^^^^^^^~10/01/2002~ -~23315~^~605~^0.158^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~606~^1.859^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~612~^0.098^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~613~^0.981^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~614~^0.684^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~617~^1.596^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~618~^0.176^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~619~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~620~^0.061^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~626~^0.111^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~629~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~631~^0.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~645~^1.730^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~646~^0.351^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23315~^~652~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~653~^0.053^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23315~^~859~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~501~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~502~^0.825^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~503~^0.798^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~504~^1.508^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~505~^1.640^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~506~^0.532^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~507~^0.194^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~508~^0.710^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~509~^0.646^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~510~^0.843^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~511~^1.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~512~^0.601^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~513~^1.053^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~514~^1.678^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~515~^2.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~516~^0.812^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~517~^0.750^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~518~^0.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~521~^0.092^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~605~^0.700^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~606~^6.782^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~612~^0.456^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~613~^3.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~614~^2.288^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~617~^5.775^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~618~^0.314^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~619~^0.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~620~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~624~^0.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~625~^0.103^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~626~^0.444^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~627~^0.003^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~628~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~629~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~645~^6.344^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~646~^0.467^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23316~^~652~^0.079^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~653~^0.182^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23316~^~859~^0.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~501~^0.239^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~502~^0.944^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~503~^0.913^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~504~^1.725^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~505~^1.876^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~506~^0.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~507~^0.222^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~508~^0.813^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~509~^0.739^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~510~^0.964^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~511~^1.402^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~512~^0.688^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~513~^1.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~514~^1.919^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~515~^3.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~516~^0.928^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~517~^0.858^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~518~^0.819^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~521~^0.105^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~605~^0.248^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~606~^2.510^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~612~^0.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~613~^1.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~614~^0.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~617~^2.354^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~618~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~619~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~620~^0.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~625~^0.049^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~626~^0.225^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~631~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~645~^2.634^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~646~^0.377^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23317~^~652~^0.031^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~653~^0.066^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23317~^~859~^0.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~501~^0.255^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~502~^1.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~503~^0.974^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~504~^1.841^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~505~^2.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~506~^0.649^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~507~^0.237^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~508~^0.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~509~^0.789^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~510~^1.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~511~^1.496^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~512~^0.734^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~513~^1.286^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~514~^2.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~515~^3.622^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~516~^0.991^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~517~^0.915^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~518~^0.874^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~521~^0.112^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~605~^0.140^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~606~^1.770^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~612~^0.092^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~613~^0.982^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~614~^0.606^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~615~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~617~^1.713^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~618~^0.156^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~619~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~620~^0.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~625~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~626~^0.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~629~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~631~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~645~^1.846^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~646~^0.291^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23318~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~653~^0.051^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23318~^~859~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~501~^0.190^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~502~^0.749^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~503~^0.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~504~^1.370^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~505~^1.489^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~506~^0.483^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~507~^0.176^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~508~^0.645^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~509~^0.587^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~510~^0.765^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~511~^1.113^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~512~^0.546^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~513~^0.956^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~514~^1.523^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~515~^2.695^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~516~^0.737^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~517~^0.681^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~518~^0.650^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~521~^0.084^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~605~^1.028^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~606~^8.928^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~612~^0.663^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~613~^5.188^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~614~^2.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~615~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~617~^11.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~618~^0.541^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~619~^0.044^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~620~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~625~^0.198^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~626~^0.870^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~628~^0.062^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~645~^12.179^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~646~^0.642^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23319~^~652~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~653~^0.284^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~672~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23319~^~859~^0.452^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~501~^0.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~502~^0.611^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~503~^0.591^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~504~^1.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~505~^1.214^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~506~^0.394^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~507~^0.144^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~508~^0.526^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~509~^0.479^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~510~^0.624^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~511~^0.907^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~512~^0.445^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~513~^0.780^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~514~^1.242^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~515~^2.197^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~516~^0.601^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~517~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~518~^0.530^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~521~^0.068^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~605~^1.302^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~606~^12.765^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~610~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~612~^0.977^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~613~^7.987^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~614~^3.313^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~617~^17.348^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~618~^1.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~619~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~625~^0.391^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~626~^1.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~627~^0.001^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~628~^0.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~631~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~645~^19.457^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~646~^1.333^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23320~^~652~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~653~^0.298^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~672~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~689~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23320~^~859~^0.399^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~501~^0.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~502~^0.709^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~503~^0.685^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~504~^1.295^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~505~^1.408^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~506~^0.456^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~507~^0.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~508~^0.610^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~509~^0.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~510~^0.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~511~^1.052^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~512~^0.516^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~513~^0.904^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~514~^1.441^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~515~^2.548^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~516~^0.697^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~517~^0.644^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~518~^0.615^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~521~^0.079^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~605~^1.361^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~606~^10.329^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~611~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~612~^0.748^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~613~^6.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~614~^3.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~617~^12.389^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~618~^0.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~619~^0.059^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~620~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~625~^0.224^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~626~^1.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~627~^0.002^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~628~^0.071^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~631~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~645~^13.685^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~646~^0.763^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23321~^~652~^0.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~653~^0.326^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~672~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23321~^~859~^0.589^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~501~^0.152^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~502~^0.599^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~503~^0.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~504~^1.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~505~^1.190^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~506~^0.386^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~507~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~508~^0.516^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~509~^0.469^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~510~^0.612^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~511~^0.890^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~512~^0.436^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~513~^0.765^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~514~^1.218^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~515~^2.154^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~516~^0.589^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~517~^0.544^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~518~^0.520^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~521~^0.067^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~605~^1.423^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~606~^13.942^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~610~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~612~^1.056^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~613~^8.647^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~614~^3.687^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~615~^0.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~617~^17.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~618~^0.999^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~619~^0.089^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~625~^0.393^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~626~^1.499^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~627~^0.002^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~628~^0.116^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~629~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~631~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~645~^19.576^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~646~^1.153^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23322~^~652~^0.142^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~653~^0.341^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~672~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~689~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23322~^~859~^0.505^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~501~^0.210^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~502~^0.831^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~503~^0.804^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~504~^1.519^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~505~^1.651^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~506~^0.535^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~507~^0.195^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~508~^0.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~509~^0.651^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~510~^0.849^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~511~^1.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~512~^0.605^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~513~^1.061^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~514~^1.690^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~515~^2.989^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~516~^0.817^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~517~^0.755^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~518~^0.721^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~521~^0.093^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~605~^0.705^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~606~^7.788^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~612~^0.504^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~613~^4.657^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~614~^2.287^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~617~^8.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~618~^0.618^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~619~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~620~^0.065^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~625~^0.103^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~626~^0.607^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~628~^0.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~629~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~631~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~645~^8.926^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~646~^0.746^0^^~4~^~PIK~^^^^^^^^^^~04/01/2012~ -~23323~^~652~^0.079^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~653~^0.220^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~672~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~689~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23323~^~859~^0.051^0^^~1~^~PAK~^^^^^^^^^^~04/01/2012~ -~23324~^~312~^0.048^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~404~^0.064^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~405~^0.235^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~406~^6.433^6^0.283^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~410~^0.357^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~415~^0.632^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~501~^0.263^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~502~^1.107^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~503~^1.094^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~504~^2.025^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~505~^2.250^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~506~^0.636^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~508~^0.942^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~509~^0.875^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~510~^1.174^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~511~^1.600^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~512~^0.880^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~513~^1.456^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~514~^2.289^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~515~^3.841^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~516~^1.156^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~517~^1.054^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~518~^0.967^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~521~^0.161^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~605~^0.163^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~606~^1.287^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~611~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~612~^0.077^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~613~^0.735^6^0.068^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~614~^0.417^6^0.031^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~617~^1.323^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23324~^~618~^0.171^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23324~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23324~^~620~^0.035^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~625~^0.020^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~626~^0.105^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23324~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~628~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23324~^~631~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~645~^1.481^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~646~^0.238^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~652~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~653~^0.036^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~654~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~662~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~663~^0.141^6^0.013^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~665~^0.014^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~670~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~673~^0.097^6^0.009^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~674~^1.182^6^0.098^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~675~^0.145^6^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~687~^0.027^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23324~^~693~^0.149^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23324~^~851~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23324~^~853~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~312~^0.048^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~405~^0.225^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~406~^6.635^4^0.352^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~410~^0.349^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~415~^0.639^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~501~^0.264^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~502~^1.101^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~503~^1.091^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~504~^2.006^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~505~^2.221^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~506~^0.633^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~507~^0.237^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~508~^0.937^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~509~^0.869^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~510~^1.173^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~511~^1.586^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~512~^0.865^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~513~^1.452^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~514~^2.269^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~515~^3.821^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~516~^1.158^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~517~^1.047^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~518~^0.960^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~521~^0.161^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~605~^0.171^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~606~^1.424^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~611~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~612~^0.087^4^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~613~^0.820^4^0.085^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~614~^0.453^4^0.039^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~617~^1.493^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~618~^0.179^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~620~^0.035^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~625~^0.023^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~626~^0.122^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23325~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~645~^1.678^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~646~^0.247^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~652~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~653~^0.040^4^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~654~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~662~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~663~^0.145^4^0.016^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~665~^0.017^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~670~^0.013^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~673~^0.114^4^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~674~^1.349^4^0.122^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~675~^0.148^4^0.014^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~687~^0.031^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23325~^~693~^0.153^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23325~^~851~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23325~^~853~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~312~^0.047^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~405~^0.249^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~406~^6.130^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~410~^0.369^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~415~^0.623^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~501~^0.263^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~502~^1.128^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~503~^1.115^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~504~^2.081^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~505~^2.323^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~506~^0.649^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~507~^0.246^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~508~^0.959^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~509~^0.901^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~510~^1.191^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~511~^1.643^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~512~^0.919^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~513~^1.478^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~514~^2.349^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~515~^3.923^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~516~^1.163^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~517~^1.084^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~518~^0.996^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~521~^0.161^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~605~^0.152^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~606~^1.082^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~612~^0.062^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~613~^0.607^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~614~^0.362^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~617~^1.067^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~618~^0.158^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~620~^0.036^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~625~^0.015^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~626~^0.079^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~628~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23326~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~645~^1.185^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~646~^0.225^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~652~^0.010^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~653~^0.032^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~662~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~663~^0.136^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~665~^0.010^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~670~^0.008^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~673~^0.072^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~674~^0.931^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~675~^0.141^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~687~^0.021^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23326~^~693~^0.142^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23326~^~851~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23326~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~312~^0.048^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~404~^0.063^0^^~4~^~BFPN~^~23324~^^^^^^^^^~02/01/2013~ -~23327~^~405~^0.234^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~406~^6.422^6^0.283^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~410~^0.356^0^^~4~^~BFPN~^~23324~^^^^^^^^^~02/01/2013~ -~23327~^~415~^0.631^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~501~^0.262^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~502~^1.105^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~503~^1.092^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~504~^2.021^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~505~^2.246^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~506~^0.635^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~508~^0.941^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~509~^0.874^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~510~^1.172^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~511~^1.597^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~512~^0.879^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~513~^1.454^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~514~^2.285^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~515~^3.834^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~516~^1.154^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~517~^1.052^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~518~^0.966^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~521~^0.160^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~605~^0.173^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~606~^1.353^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~611~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~612~^0.082^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~613~^0.771^6^0.057^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~614~^0.439^6^0.027^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~617~^1.387^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~618~^0.176^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~620~^0.035^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~625~^0.021^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~626~^0.111^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~628~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23327~^~631~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~645~^1.554^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~646~^0.244^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~652~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~653~^0.038^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~654~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~662~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~663~^0.150^6^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~665~^0.015^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~670~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~673~^0.103^6^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~674~^1.237^6^0.085^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~675~^0.149^6^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~687~^0.028^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23327~^~693~^0.158^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23327~^~851~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23327~^~853~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~312~^0.048^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~404~^0.064^0^^~4~^~BFPN~^~23325~^^^^^^^^^~02/01/2013~ -~23328~^~405~^0.225^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~406~^6.624^4^0.352^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~410~^0.349^0^^~4~^~BFPN~^~23325~^^^^^^^^^~02/01/2013~ -~23328~^~415~^0.638^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~501~^0.263^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~502~^1.100^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~503~^1.090^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~504~^2.003^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~505~^2.218^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~506~^0.632^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~507~^0.236^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~508~^0.936^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~509~^0.868^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~510~^1.172^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~511~^1.584^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~512~^0.863^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~513~^1.450^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~514~^2.266^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~515~^3.816^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~516~^1.157^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~517~^1.046^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~518~^0.958^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~521~^0.160^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~605~^0.180^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~606~^1.488^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~611~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~612~^0.092^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~613~^0.855^4^0.071^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~614~^0.475^4^0.034^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~617~^1.555^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~618~^0.184^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~620~^0.035^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~625~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~626~^0.128^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~628~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23328~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~645~^1.748^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~646~^0.253^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~652~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~653~^0.041^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~654~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~662~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~663~^0.153^4^0.014^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~665~^0.018^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~670~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~673~^0.119^4^0.009^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~674~^1.402^4^0.105^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~675~^0.152^4^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~687~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23328~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23328~^~851~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23328~^~853~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~312~^0.047^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~404~^0.063^0^^~4~^~BFPN~^~23326~^^^^^^^^^~02/01/2013~ -~23329~^~405~^0.248^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~406~^6.120^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~410~^0.368^0^^~4~^~BFPN~^~23326~^^^^^^^^^~02/01/2013~ -~23329~^~415~^0.622^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~501~^0.263^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~502~^1.126^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~503~^1.112^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~504~^2.077^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~505~^2.318^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~506~^0.648^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~507~^0.246^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~508~^0.957^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~509~^0.899^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~510~^1.189^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~511~^1.640^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~512~^0.917^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~513~^1.475^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~514~^2.344^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~515~^3.915^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~516~^1.161^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~517~^1.082^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~518~^0.993^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~521~^0.160^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~605~^0.163^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~606~^1.151^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~611~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~612~^0.067^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~613~^0.645^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~614~^0.385^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~617~^1.135^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~618~^0.164^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~620~^0.036^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~625~^0.016^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~626~^0.085^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~628~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23329~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~645~^1.262^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~646~^0.231^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~652~^0.011^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~653~^0.033^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~662~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~663~^0.145^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~665~^0.011^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~670~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~673~^0.078^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~674~^0.990^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~675~^0.145^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~687~^0.022^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23329~^~693~^0.152^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23329~^~851~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23329~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~312~^0.042^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~315~^0.001^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~405~^0.183^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~406~^6.687^6^0.272^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~410~^0.354^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23330~^~415~^0.641^6^0.021^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~501~^0.260^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~502~^1.097^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~503~^1.084^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~504~^2.006^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~505~^2.229^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~506~^0.630^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~507~^0.237^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~508~^0.933^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~509~^0.867^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~510~^1.163^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~511~^1.585^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~512~^0.872^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~513~^1.443^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~514~^2.267^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~515~^3.805^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~516~^1.145^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~517~^1.044^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~518~^0.958^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~605~^0.169^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~606~^1.276^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~611~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~612~^0.084^6^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~613~^0.734^6^0.057^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~614~^0.398^6^0.041^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~617~^1.305^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~618~^0.178^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~620~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~625~^0.025^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~626~^0.116^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~628~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23330~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~645~^1.482^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~646~^0.250^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~652~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~653~^0.035^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~654~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~662~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~663~^0.142^6^0.013^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~665~^0.017^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~670~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~673~^0.105^6^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~674~^1.162^6^0.113^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~675~^0.146^6^0.009^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~687~^0.028^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23330~^~693~^0.152^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23330~^~851~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23330~^~853~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~312~^0.049^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~315~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23331~^~405~^0.183^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~406~^6.779^4^0.337^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~410~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23331~^~415~^0.645^4^0.026^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~502~^1.090^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~503~^1.081^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~504~^1.987^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~505~^2.200^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~506~^0.627^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~507~^0.234^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~508~^0.928^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~509~^0.860^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~510~^1.162^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~511~^1.570^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~512~^0.856^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~513~^1.438^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~514~^2.247^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~515~^3.784^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~516~^1.147^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~517~^1.037^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~518~^0.950^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~605~^0.169^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~606~^1.308^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~611~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~612~^0.085^4^0.009^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~613~^0.759^4^0.071^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~614~^0.404^4^0.051^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~617~^1.361^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~618~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~620~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~621~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~625~^0.026^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~626~^0.123^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~628~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23331~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~645~^1.547^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~646~^0.263^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~652~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~653~^0.035^4^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~654~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~662~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~663~^0.140^4^0.016^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~665~^0.018^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~670~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~673~^0.112^4^0.014^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~674~^1.222^4^0.140^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~675~^0.156^4^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~687~^0.029^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23331~^~693~^0.150^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23331~^~851~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23331~^~853~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~312~^0.035^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23332~^~405~^0.184^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~406~^6.548^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~410~^0.366^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23332~^~415~^0.634^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~502~^1.118^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~503~^1.105^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~504~^2.063^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~505~^2.303^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~506~^0.643^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~508~^0.950^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~510~^1.181^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~511~^1.629^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~512~^0.911^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~513~^1.465^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~514~^2.328^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~515~^3.888^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~516~^1.153^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~517~^1.074^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~518~^0.987^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~605~^0.170^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~606~^1.229^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~612~^0.082^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~613~^0.697^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~614~^0.390^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~617~^1.219^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~618~^0.159^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~625~^0.023^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~626~^0.105^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23332~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~645~^1.383^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~646~^0.231^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~652~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~653~^0.035^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~662~^0.010^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~663~^0.146^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~665~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~670~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~673~^0.095^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~674~^1.073^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~675~^0.131^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~687~^0.027^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23332~^~693~^0.156^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23332~^~851~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23332~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~312~^0.042^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~315~^0.001^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~405~^0.183^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~406~^6.685^6^0.273^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~410~^0.354^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23333~^~415~^0.641^6^0.020^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~501~^0.260^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~502~^1.096^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~503~^1.084^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~504~^2.005^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~505~^2.228^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~506~^0.629^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~507~^0.237^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~508~^0.933^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~509~^0.867^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~510~^1.163^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~511~^1.584^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~512~^0.872^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~513~^1.442^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~514~^2.267^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~515~^3.804^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~516~^1.145^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~517~^1.044^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~518~^0.958^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~605~^0.170^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~606~^1.285^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~611~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~612~^0.084^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~613~^0.739^6^0.035^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~614~^0.401^6^0.029^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~615~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~617~^1.312^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~618~^0.179^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~620~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~625~^0.025^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~626~^0.116^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~628~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23333~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~645~^1.490^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~646~^0.251^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~652~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~653~^0.035^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~654~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~662~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~663~^0.143^6^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~665~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~670~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~673~^0.106^6^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~674~^1.169^6^0.078^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~675~^0.147^6^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~687~^0.028^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23333~^~693~^0.154^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23333~^~851~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23333~^~853~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~312~^0.049^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~315~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23334~^~405~^0.182^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~406~^6.773^4^0.339^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~410~^0.345^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23334~^~415~^0.645^4^0.025^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~502~^1.090^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~503~^1.080^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~504~^1.985^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~505~^2.198^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~506~^0.626^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~507~^0.234^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~508~^0.927^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~509~^0.859^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~510~^1.161^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~511~^1.569^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~512~^0.855^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~513~^1.437^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~514~^2.245^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~515~^3.780^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~516~^1.146^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~517~^1.036^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~518~^0.949^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~605~^0.174^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~606~^1.343^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~611~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~612~^0.087^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~613~^0.778^4^0.044^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~614~^0.416^4^0.037^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~615~^0.003^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~617~^1.395^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~618~^0.193^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~620~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~621~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~625~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~626~^0.126^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~628~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23334~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~645~^1.585^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~646~^0.266^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~652~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~653~^0.036^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~654~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~662~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~663~^0.144^4^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~665~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~670~^0.016^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~673~^0.115^4^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~674~^1.251^4^0.097^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~675~^0.158^4^0.009^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~687~^0.029^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23334~^~693~^0.155^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23334~^~851~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23334~^~853~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~312~^0.035^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23335~^~405~^0.184^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~406~^6.552^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~410~^0.366^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23335~^~415~^0.635^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~502~^1.119^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~503~^1.105^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~504~^2.064^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~505~^2.304^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~506~^0.644^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~508~^0.951^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~510~^1.181^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~511~^1.630^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~512~^0.911^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~513~^1.466^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~514~^2.330^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~515~^3.891^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~516~^1.153^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~517~^1.075^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~518~^0.987^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~521~^0.159^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23335~^~605~^0.165^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~606~^1.199^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~612~^0.080^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~613~^0.680^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~614~^0.380^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~617~^1.188^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~618~^0.157^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~625~^0.022^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~626~^0.102^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23335~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~645~^1.346^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~646~^0.228^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~652~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~653~^0.034^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~662~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~663~^0.142^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~665~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~670~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~673~^0.092^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~674~^1.046^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~675~^0.129^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~687~^0.026^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23335~^~693~^0.151^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23335~^~851~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23335~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~312~^0.062^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~315~^0.007^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~405~^0.312^6^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~406~^4.705^6^0.101^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~410~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23336~^~415~^0.607^6^0.015^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~501~^0.242^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~502~^1.021^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~503~^1.009^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~504~^1.867^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~505~^2.075^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~506~^0.586^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~507~^0.221^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~508~^0.869^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~509~^0.807^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~510~^1.083^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~511~^1.475^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~512~^0.812^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~513~^1.343^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~514~^2.111^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~515~^3.542^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~516~^1.066^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~517~^0.972^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~518~^0.892^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~521~^0.148^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~605~^0.350^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~606~^2.479^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~610~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~611~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~612~^0.163^6^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~613~^1.362^6^0.084^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~614~^0.832^6^0.059^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~615~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~617~^2.402^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23336~^~618~^0.362^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23336~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23336~^~620~^0.056^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~625~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~626~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23336~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~628~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23336~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~645~^2.695^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~646~^0.463^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~652~^0.030^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~653~^0.072^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~654~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~662~^0.022^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~663~^0.293^6^0.025^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~665~^0.036^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~670~^0.031^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~672~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~673~^0.169^6^0.016^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~674~^2.110^6^0.175^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~675~^0.295^6^0.015^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~687~^0.049^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23336~^~693~^0.315^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~695~^0.036^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23336~^~851~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23336~^~853~^0.017^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~312~^0.061^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~315~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~404~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23337~^~405~^0.300^4^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~406~^4.461^4^0.125^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~410~^0.350^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23337~^~415~^0.601^4^0.018^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~501~^0.241^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~502~^1.008^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~503~^0.999^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~504~^1.837^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~505~^2.033^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~506~^0.579^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~508~^0.858^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~509~^0.795^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~510~^1.074^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~511~^1.452^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~512~^0.791^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~513~^1.329^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~514~^2.077^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~515~^3.498^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~516~^1.060^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~517~^0.958^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~518~^0.879^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~521~^0.147^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~605~^0.378^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~606~^2.687^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~610~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~611~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~612~^0.177^4^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~613~^1.490^4^0.104^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~614~^0.889^4^0.073^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~615~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~617~^2.632^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23337~^~618~^0.390^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23337~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23337~^~620~^0.059^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~621~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~625~^0.043^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~626~^0.212^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23337~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~628~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23337~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~645~^2.956^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~646~^0.496^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~652~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~653~^0.078^4^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~654~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~662~^0.024^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~663~^0.315^4^0.031^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~665~^0.039^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~670~^0.033^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~672~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~673~^0.188^4^0.020^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~674~^2.317^4^0.217^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~675~^0.318^4^0.019^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~687~^0.055^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23337~^~693~^0.339^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~695~^0.039^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23337~^~851~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23337~^~853~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~312~^0.067^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~315~^0.008^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~404~^0.056^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23338~^~405~^0.329^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~406~^5.072^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~410~^0.376^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23338~^~415~^0.614^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~501~^0.246^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~502~^1.052^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~503~^1.039^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~504~^1.941^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~505~^2.166^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~506~^0.605^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~508~^0.894^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~509~^0.840^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~510~^1.111^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~511~^1.532^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~512~^0.857^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~513~^1.379^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~514~^2.191^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~515~^3.658^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~516~^1.085^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~517~^1.011^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~518~^0.928^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~521~^0.150^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~605~^0.309^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~606~^2.166^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~612~^0.142^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~613~^1.170^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~614~^0.746^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~615~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~617~^2.058^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23338~^~618~^0.320^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23338~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23338~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~625~^0.032^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~626~^0.158^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23338~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23338~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~645~^2.302^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~646~^0.414^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~652~^0.027^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~653~^0.063^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~662~^0.019^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~663~^0.259^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~665~^0.031^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~670~^0.029^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~673~^0.139^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~674~^1.799^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~675~^0.260^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~687~^0.042^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23338~^~693~^0.278^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23338~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23338~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~312~^0.043^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~315~^0.002^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~404~^0.055^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~405~^0.203^6^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~406~^6.515^6^0.231^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~410~^0.373^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23339~^~415~^0.563^6^0.023^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~501~^0.251^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~502~^1.057^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~503~^1.045^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~504~^1.933^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~505~^2.148^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~506~^0.607^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~507~^0.228^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~508~^0.900^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~509~^0.836^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~510~^1.121^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~511~^1.527^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~512~^0.841^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~513~^1.390^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~514~^2.185^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~515~^3.667^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~516~^1.103^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~517~^1.006^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~518~^0.923^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~521~^0.153^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23339~^~605~^0.473^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~606~^3.478^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~610~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~611~^0.007^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~612~^0.234^6^0.018^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~613~^1.972^6^0.145^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~614~^1.111^6^0.054^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~615~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~617~^3.503^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23339~^~618~^0.393^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23339~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23339~^~620~^0.045^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~625~^0.054^6^0.008^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~626~^0.297^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23339~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~628~^0.017^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23339~^~631~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~645~^3.941^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~646~^0.480^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~652~^0.040^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~653~^0.097^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~654~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~662~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~663~^0.400^6^0.026^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~665~^0.048^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~670~^0.039^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~673~^0.273^6^0.024^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~674~^3.103^6^0.196^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~675~^0.306^6^0.019^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~687~^0.071^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23339~^~693~^0.424^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~695~^0.048^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23339~^~851~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23339~^~853~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~312~^0.041^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~404~^0.052^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23340~^~405~^0.197^4^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~406~^6.681^4^0.287^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~410~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23340~^~415~^0.570^4^0.028^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~501~^0.249^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~502~^1.040^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~503~^1.031^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~504~^1.895^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~505~^2.098^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~506~^0.598^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~507~^0.223^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~508~^0.885^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~509~^0.821^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~510~^1.108^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~511~^1.498^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~512~^0.817^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~513~^1.372^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~514~^2.143^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~515~^3.609^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~516~^1.094^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~517~^0.989^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~518~^0.906^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~521~^0.152^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23340~^~605~^0.503^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~606~^3.790^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~610~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~611~^0.008^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~612~^0.257^4^0.022^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~613~^2.155^4^0.180^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~614~^1.203^4^0.068^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~615~^0.006^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~617~^3.840^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23340~^~618~^0.412^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23340~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23340~^~620~^0.049^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~625~^0.063^4^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~626~^0.329^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23340~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~628~^0.019^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23340~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~645~^4.328^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~646~^0.505^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~652~^0.042^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~653~^0.105^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~662~^0.025^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~663~^0.429^4^0.033^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~665~^0.049^4^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~670~^0.041^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~673~^0.304^4^0.030^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~674~^3.411^4^0.243^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~675~^0.322^4^0.024^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~687~^0.079^4^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23340~^~693~^0.454^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23340~^~851~^0.015^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23340~^~853~^0.015^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~312~^0.044^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23341~^~405~^0.213^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~406~^6.267^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~410~^0.391^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23341~^~415~^0.552^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~501~^0.255^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~502~^1.094^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~503~^1.081^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~504~^2.019^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~505~^2.253^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~506~^0.630^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~508~^0.930^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~509~^0.874^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~510~^1.155^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~511~^1.594^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~512~^0.891^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~513~^1.434^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~514~^2.279^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~515~^3.805^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~516~^1.128^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~517~^1.051^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~518~^0.966^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~521~^0.156^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23341~^~605~^0.412^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23341~^~606~^2.910^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23341~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~612~^0.192^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~613~^1.641^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~614~^0.939^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~617~^2.898^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23341~^~618~^0.345^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23341~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23341~^~620~^0.038^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~625~^0.039^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~626~^0.241^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23341~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~628~^0.015^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23341~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~645~^3.250^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23341~^~646~^0.420^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23341~^~652~^0.035^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~653~^0.082^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~662~^0.022^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~663~^0.345^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~665~^0.044^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~670~^0.034^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~673~^0.218^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~674~^2.553^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~675~^0.267^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~687~^0.058^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23341~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23341~^~693~^0.367^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23341~^~695~^0.047^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23341~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23341~^~853~^0.014^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23342~^~312~^0.063^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~315~^0.007^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~405~^0.313^6^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~406~^4.717^6^0.098^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~410~^0.362^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23342~^~415~^0.609^6^0.016^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~501~^0.243^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~502~^1.024^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~503~^1.012^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~504~^1.872^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~505~^2.081^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~506~^0.588^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~507~^0.221^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~508~^0.871^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~509~^0.809^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~510~^1.086^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~511~^1.479^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~512~^0.814^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~513~^1.347^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~514~^2.116^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~515~^3.552^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~516~^1.069^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~517~^0.975^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~518~^0.894^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~521~^0.148^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23342~^~605~^0.333^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~606~^2.363^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~610~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~611~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~612~^0.154^6^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~613~^1.300^6^0.061^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~614~^0.792^6^0.047^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~615~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~617~^2.298^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23342~^~618~^0.353^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23342~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23342~^~620~^0.056^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~625~^0.037^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~626~^0.182^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23342~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~628~^0.013^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23342~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~645~^2.578^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~646~^0.454^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~652~^0.029^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~653~^0.069^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~654~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~662~^0.021^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~663~^0.278^6^0.020^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~665~^0.034^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~670~^0.030^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~672~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~673~^0.161^6^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~674~^2.020^6^0.135^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~675~^0.289^6^0.013^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~687~^0.048^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23342~^~693~^0.299^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23342~^~851~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23342~^~853~^0.017^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~312~^0.061^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~315~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~404~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23343~^~405~^0.302^4^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~406~^4.473^4^0.122^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~410~^0.359^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23343~^~415~^0.603^4^0.020^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~501~^0.242^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~502~^1.011^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~503~^1.002^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~504~^1.842^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~505~^2.040^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~506~^0.581^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~508~^0.861^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~509~^0.798^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~510~^1.077^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~511~^1.456^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~512~^0.794^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~513~^1.333^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~514~^2.083^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~515~^3.509^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~516~^1.064^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~517~^0.962^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~518~^0.881^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~521~^0.147^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~605~^0.357^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~606~^2.548^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~610~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~611~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~612~^0.167^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~613~^1.415^4^0.076^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~614~^0.841^4^0.058^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~615~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~617~^2.504^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23343~^~618~^0.379^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23343~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23343~^~620~^0.059^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~621~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~625~^0.041^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~626~^0.202^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23343~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~628~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23343~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~645~^2.813^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~646~^0.485^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~652~^0.030^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~653~^0.074^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~654~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~662~^0.023^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~663~^0.297^4^0.025^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~665~^0.037^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~670~^0.031^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~672~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~673~^0.179^4^0.015^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~674~^2.207^4^0.168^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~675~^0.311^4^0.016^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~687~^0.052^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23343~^~693~^0.320^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23343~^~851~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23343~^~853~^0.018^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~312~^0.067^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~315~^0.008^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23344~^~405~^0.330^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~406~^5.082^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~410~^0.377^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2013~ -~23344~^~415~^0.616^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~501~^0.246^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~502~^1.054^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~503~^1.041^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~504~^1.944^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~505~^2.171^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~506~^0.606^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~507~^0.230^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~508~^0.896^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~509~^0.841^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~510~^1.113^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~511~^1.535^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~512~^0.859^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~513~^1.381^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~514~^2.195^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~515~^3.665^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~516~^1.087^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~517~^1.013^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~518~^0.930^0^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~521~^0.150^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23344~^~605~^0.297^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~606~^2.087^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~611~^0.005^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~612~^0.136^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~613~^1.128^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~614~^0.719^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~615~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~617~^1.988^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~618~^0.313^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~625~^0.031^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~626~^0.153^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~628~^0.012^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~ -~23344~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~645~^2.224^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~646~^0.407^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~652~^0.026^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~653~^0.060^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~662~^0.018^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~663~^0.249^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~665~^0.030^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~670~^0.028^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~673~^0.134^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~674~^1.739^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~675~^0.256^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~687~^0.041^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23344~^~693~^0.267^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23344~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23344~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~312~^0.091^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~315~^0.009^3^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~405~^0.391^6^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~406~^5.556^6^0.216^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~410~^0.353^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23345~^~415~^0.681^6^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~501~^0.306^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~502~^1.287^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~503~^1.272^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~504~^2.354^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~505~^2.616^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~506~^0.739^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~507~^0.278^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~508~^1.095^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~509~^1.018^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~510~^1.365^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~511~^1.860^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~512~^1.024^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~513~^1.693^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~514~^2.661^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~515~^4.465^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~516~^1.344^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~517~^1.225^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~518~^1.124^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23345~^~521~^0.187^0^^~1~^~AR~^^^^^^^^^^~06/01/2013~ -~23345~^~605~^0.446^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~606~^3.245^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~610~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~611~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~612~^0.207^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~613~^1.791^6^0.059^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~614~^1.087^6^0.044^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~615~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~617~^3.179^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23345~^~618~^0.469^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23345~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23345~^~620~^0.069^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~625~^0.049^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~626~^0.242^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23345~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~628~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23345~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~645~^3.550^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~646~^0.590^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~652~^0.037^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~653~^0.095^6^0.004^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~654~^0.007^6^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~662~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~663~^0.374^6^0.011^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~665~^0.045^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~670~^0.040^6^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~672~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~673~^0.214^6^0.018^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~674~^2.805^6^0.171^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~675~^0.385^6^0.010^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~687~^0.065^6^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23345~^~693~^0.402^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23345~^~851~^0.016^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23345~^~853~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~312~^0.086^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~315~^0.009^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23346~^~405~^0.388^4^0.015^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~406~^5.438^4^0.269^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~410~^0.333^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23346~^~415~^0.691^4^0.014^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~501~^0.306^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~502~^1.278^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~503~^1.266^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~504~^2.329^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~505~^2.578^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~506~^0.735^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~507~^0.275^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~508~^1.088^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~509~^1.008^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~510~^1.362^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~511~^1.840^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~512~^1.003^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~513~^1.685^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~514~^2.633^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~515~^4.435^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~516~^1.344^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~517~^1.215^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~518~^1.114^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~521~^0.186^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23346~^~605~^0.470^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~606~^3.533^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~610~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~611~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~612~^0.227^4^0.007^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~613~^1.968^4^0.074^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~614~^1.166^4^0.055^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~615~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~617~^3.515^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23346~^~618~^0.492^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23346~^~619~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23346~^~620~^0.071^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~625~^0.057^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~626~^0.276^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23346~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~628~^0.017^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23346~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~645~^3.937^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~646~^0.617^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~652~^0.041^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~653~^0.102^4^0.005^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~654~^0.007^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~662~^0.030^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~663~^0.391^4^0.014^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~665~^0.049^4^0.002^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~670~^0.041^4^0.003^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~672~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~673~^0.246^4^0.023^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~674~^3.124^4^0.212^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~675~^0.402^4^0.012^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~687~^0.073^4^0.006^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23346~^~693~^0.421^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23346~^~851~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23346~^~853~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~312~^0.097^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~315~^0.008^1^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23347~^~405~^0.397^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~406~^5.732^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~410~^0.381^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23347~^~415~^0.665^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~501~^0.307^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~502~^1.315^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~503~^1.299^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~504~^2.425^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~505~^2.707^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~506~^0.756^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~507~^0.287^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~508~^1.117^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~509~^1.049^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~510~^1.388^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~511~^1.915^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~512~^1.071^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~513~^1.723^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~514~^2.738^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~515~^4.572^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~516~^1.355^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~517~^1.263^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~518~^1.160^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~521~^0.187^0^^~1~^~AR~^^^^^^^^^^~03/01/2013~ -~23347~^~605~^0.410^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~606~^2.812^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~611~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~612~^0.177^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~613~^1.527^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~614~^0.969^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~615~^0.006^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~617~^2.675^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23347~^~618~^0.434^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23347~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23347~^~620~^0.067^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~625~^0.036^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~626~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23347~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~628~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23347~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~645~^2.969^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~646~^0.550^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~652~^0.033^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~653~^0.083^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~662~^0.024^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~663~^0.349^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~665~^0.037^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~670~^0.037^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~673~^0.166^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~674~^2.326^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~675~^0.360^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~687~^0.054^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~23347~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~23347~^~851~^0.014^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23347~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~02/01/2013~ -~23348~^~312~^0.059^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~315~^0.005^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~404~^0.078^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~405~^0.289^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~406~^7.929^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~410~^0.440^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~415~^0.779^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~501~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~502~^1.455^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~503~^1.438^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~504~^2.662^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~505~^2.958^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~506~^0.836^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~507~^0.315^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~508~^1.238^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~509~^1.151^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~510~^1.543^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~511~^2.103^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~512~^1.157^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~513~^1.914^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~514~^3.009^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~515~^5.049^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~516~^1.519^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~517~^1.385^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~518~^1.271^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~ -~23348~^~521~^0.139^3^^~4~^~BFPN~^^^1^0.136^0.144^^^^~2, 3~^~06/01/2013~ -~23348~^~605~^0.214^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~606~^1.671^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~610~^0.005^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~611~^0.003^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~612~^0.101^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~613~^0.951^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~614~^0.542^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~615~^0.002^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~617~^1.712^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~618~^0.218^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~619~^0.006^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~620~^0.044^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~621~^0.001^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~625~^0.026^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~626~^0.137^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~628~^0.008^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~629~^0.002^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23348~^~631~^0.011^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~645~^1.918^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~646~^0.301^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~652~^0.016^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~653~^0.047^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~654~^0.002^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~662~^0.010^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~663~^0.185^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~665~^0.019^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~670~^0.015^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~672~^0.002^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~673~^0.127^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~674~^1.527^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~675~^0.184^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~687~^0.035^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~689~^0.017^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~693~^0.195^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~695~^0.019^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~851~^0.006^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23348~^~853~^0.017^0^^~4~^~BFYN~^~23327~^^^^^^^^^~03/01/2013~ -~23349~^~312~^0.059^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~315~^0.005^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~404~^0.078^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~405~^0.278^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~406~^8.178^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~410~^0.430^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~415~^0.787^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~501~^0.346^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~502~^1.445^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~503~^1.432^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~504~^2.632^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~505~^2.914^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~506~^0.830^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~507~^0.310^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~508~^1.229^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~509~^1.140^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~510~^1.539^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~511~^2.080^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~512~^1.134^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~513~^1.905^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~514~^2.977^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~515~^5.013^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~516~^1.520^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~517~^1.374^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~518~^1.259^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~521~^0.211^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23349~^~605~^0.222^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~606~^1.837^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~610~^0.005^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~611~^0.004^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~612~^0.114^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~613~^1.055^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~614~^0.586^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~615~^0.003^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~617~^1.919^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~618~^0.227^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~619~^0.008^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~620~^0.043^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~621~^0.001^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~625~^0.030^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~626~^0.158^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~628~^0.010^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~629~^0.002^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23349~^~631~^0.012^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~645~^2.158^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~646~^0.312^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~652~^0.018^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~653~^0.051^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~654~^0.002^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~662~^0.011^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~663~^0.189^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~665~^0.022^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~670~^0.018^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~672~^0.002^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~673~^0.147^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~674~^1.731^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~675~^0.187^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~687~^0.040^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~689~^0.018^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~693~^0.200^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~695~^0.022^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~851~^0.008^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23349~^~853~^0.018^0^^~4~^~BFYN~^~23328~^^^^^^^^^~03/01/2013~ -~23350~^~312~^0.058^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~315~^0.003^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~404~^0.078^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~405~^0.306^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~406~^7.555^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~410~^0.455^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~415~^0.768^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~501~^0.347^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~502~^1.487^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~503~^1.469^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~504~^2.744^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~505~^3.063^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~506~^0.856^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~507~^0.325^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~508~^1.264^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~509~^1.187^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~510~^1.570^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~511~^2.166^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~512~^1.212^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~513~^1.949^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~514~^3.097^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~515~^5.172^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~516~^1.533^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~517~^1.429^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~518~^1.312^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~521~^0.212^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23350~^~605~^0.201^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~606~^1.421^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~610~^0.005^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~611~^0.003^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~612~^0.082^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~613~^0.796^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~614~^0.475^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~615~^0.002^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~617~^1.401^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~618~^0.203^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~619~^0.005^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~620~^0.045^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~621~^0.002^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~625~^0.020^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~626~^0.105^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~628~^0.005^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~629~^0.002^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23350~^~631~^0.011^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~645~^1.558^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~646~^0.285^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~652~^0.014^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~653~^0.041^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~654~^0.002^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~662~^0.009^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~663~^0.179^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~665~^0.014^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~670~^0.011^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~672~^0.001^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~673~^0.096^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~674~^1.222^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~675~^0.178^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~687~^0.028^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~689~^0.016^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~693~^0.187^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~695~^0.014^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~851~^0.005^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23350~^~853~^0.016^0^^~4~^~BFYN~^~23329~^^^^^^^^^~03/01/2013~ -~23351~^~312~^0.055^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~315~^0.002^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~404~^0.082^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~405~^0.238^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~406~^8.682^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~410~^0.459^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~415~^0.832^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~501~^0.332^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~502~^1.398^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~503~^1.382^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~504~^2.556^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~505~^2.841^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~506~^0.803^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~507~^0.302^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~508~^1.190^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~509~^1.105^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~510~^1.482^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~511~^2.020^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~512~^1.112^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~513~^1.839^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~514~^2.890^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~515~^4.849^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~516~^1.459^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~517~^1.331^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~518~^1.221^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~521~^0.203^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23351~^~605~^0.221^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~606~^1.669^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~610~^0.005^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~611~^0.003^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~612~^0.109^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~613~^0.960^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~614~^0.521^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~615~^0.003^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~617~^1.704^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~618~^0.232^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~619~^0.009^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~620~^0.047^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~621~^0.002^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~625~^0.033^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~626~^0.151^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~628~^0.011^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~629~^0.005^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23351~^~631~^0.013^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~645~^1.935^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~646~^0.326^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~652~^0.018^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~653~^0.046^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~654~^0.004^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~662~^0.014^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~663~^0.186^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~665~^0.022^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~670~^0.020^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~672~^0.002^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~673~^0.137^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~674~^1.518^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~675~^0.190^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~687~^0.037^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~689~^0.016^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~693~^0.199^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~695~^0.022^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~851~^0.009^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23351~^~853~^0.016^0^^~4~^~BFYN~^~23333~^^^^^^^^^~03/01/2013~ -~23352~^~312~^0.063^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~315~^0.001^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~404~^0.082^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~405~^0.237^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~406~^8.797^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~410~^0.449^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~415~^0.837^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~501~^0.334^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~502~^1.397^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~503~^1.384^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~504~^2.544^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~505~^2.817^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~506~^0.803^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~507~^0.300^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~508~^1.188^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~509~^1.102^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~510~^1.488^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~511~^2.011^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~512~^1.096^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~513~^1.841^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~514~^2.877^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~515~^4.846^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~516~^1.469^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~517~^1.328^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~518~^1.217^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~521~^0.204^0^^~4~^~O~^^^^^^^^^^~03/01/2013~ -~23352~^~605~^0.225^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~606~^1.744^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~610~^0.005^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~611~^0.004^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~612~^0.113^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~613~^1.011^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~614~^0.540^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~615~^0.003^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~617~^1.811^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~618~^0.251^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~619~^0.010^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~620~^0.049^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~621~^0.002^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~625~^0.035^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~626~^0.163^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~628~^0.011^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~629~^0.005^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~ -~23352~^~631~^0.012^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~645~^2.059^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~646~^0.346^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~652~^0.018^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~653~^0.047^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~654~^0.004^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~662~^0.014^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~663~^0.187^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~665~^0.024^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~670~^0.021^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~672~^0.002^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~673~^0.149^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~674~^1.624^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~675~^0.205^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~687~^0.038^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~689~^0.016^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~693~^0.201^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~695~^0.024^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~851~^0.010^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23352~^~853~^0.016^0^^~4~^~BFYN~^~23334~^^^^^^^^^~03/01/2013~ -~23353~^~312~^0.046^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~315~^0.002^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~404~^0.082^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~405~^0.239^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~406~^8.509^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~410~^0.475^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~415~^0.824^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~501~^0.330^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~502~^1.415^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~503~^1.398^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~504~^2.611^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~505~^2.914^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~506~^0.814^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~507~^0.309^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~508~^1.203^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~509~^1.130^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~510~^1.494^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~511~^2.061^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~512~^1.153^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~513~^1.855^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~514~^2.947^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~515~^4.921^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~516~^1.459^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~517~^1.360^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~518~^1.249^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~521~^0.201^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23353~^~605~^0.215^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~606~^1.557^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~610~^0.005^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~611~^0.003^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~612~^0.103^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~613~^0.883^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~614~^0.494^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~615~^0.003^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~617~^1.542^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~618~^0.204^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~619~^0.008^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~620~^0.044^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~621~^0.003^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~625~^0.029^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~626~^0.132^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~628~^0.011^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~629~^0.005^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23353~^~631~^0.015^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~645~^1.748^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~646~^0.296^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~652~^0.018^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~653~^0.044^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~654~^0.004^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~662~^0.012^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~663~^0.184^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~665~^0.018^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~670~^0.018^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~672~^0.002^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~673~^0.120^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~674~^1.358^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~675~^0.168^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~687~^0.034^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~689~^0.017^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~693~^0.196^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~695~^0.018^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~851~^0.008^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23353~^~853~^0.017^0^^~4~^~BFYN~^~23335~^^^^^^^^^~04/01/2013~ -~23354~^~312~^0.048^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~404~^0.064^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~405~^0.236^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~406~^6.462^6^0.286^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~410~^0.358^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~415~^0.635^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~501~^0.289^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~502~^1.212^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~503~^1.203^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~504~^2.219^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~505~^2.480^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~506~^0.685^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~507~^0.259^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~508~^1.028^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~509~^0.963^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~510~^1.271^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~511~^1.730^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~512~^0.957^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~513~^1.540^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~514~^2.491^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~515~^4.206^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~516~^1.111^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~517~^1.083^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~518~^1.047^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~605~^0.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~606~^1.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~611~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~612~^0.065^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~613~^0.643^6^0.065^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~614~^0.361^6^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~617~^1.158^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~618~^0.157^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~620~^0.035^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~625~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~626~^0.089^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~628~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23354~^~631~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~645~^1.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~646~^0.223^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~652~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~653~^0.032^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~654~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~662~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~663~^0.119^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~665~^0.012^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~670~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~673~^0.083^6^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~674~^1.038^6^0.089^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~675~^0.136^6^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~687~^0.023^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23354~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23354~^~851~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23354~^~853~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~312~^0.048^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~405~^0.227^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~406~^6.667^4^0.356^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~410~^0.350^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~415~^0.641^4^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~501~^0.279^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~502~^1.159^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~503~^1.153^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~504~^2.113^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~505~^2.353^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~506~^0.655^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~507~^0.245^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~508~^0.982^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~509~^0.919^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~510~^1.220^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~511~^1.646^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~512~^0.902^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~513~^1.471^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~514~^2.371^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~515~^4.021^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~516~^1.060^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~517~^1.029^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~518~^0.997^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~606~^1.253^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~611~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~612~^0.075^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~613~^0.726^4^0.081^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~614~^0.396^4^0.032^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~617~^1.324^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~618~^0.165^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~620~^0.035^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~625~^0.020^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~626~^0.106^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23355~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~645~^1.484^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~652~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~653~^0.035^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~654~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~662~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~663~^0.122^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~665~^0.015^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~670~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~673~^0.099^4^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~674~^1.202^4^0.110^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~675~^0.139^4^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~687~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23355~^~693~^0.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23355~^~851~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23355~^~853~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~312~^0.047^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~405~^0.250^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~406~^6.155^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~410~^0.370^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~415~^0.626^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~501~^0.308^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~502~^1.313^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~503~^1.302^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~504~^2.426^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~505~^2.721^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~506~^0.745^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~508~^1.112^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~509~^1.053^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~510~^1.373^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~511~^1.893^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~512~^1.065^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~513~^1.668^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~514~^2.721^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~515~^4.567^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~516~^1.207^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~517~^1.195^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~518~^1.148^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~606~^0.920^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~612~^0.050^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~613~^0.519^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~614~^0.308^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~617~^0.908^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~618~^0.145^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~620~^0.036^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~625~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~626~^0.064^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~628~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23356~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~645~^1.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~646~^0.210^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~652~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~653~^0.027^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~662~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~663~^0.115^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~665~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~670~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~673~^0.059^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~674~^0.793^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~675~^0.132^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~687~^0.018^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23356~^~693~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23356~^~851~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23356~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~312~^0.048^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~404~^0.064^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~405~^0.236^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~406~^6.462^6^0.286^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~410~^0.358^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~415~^0.635^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~501~^0.289^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~502~^1.212^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~503~^1.203^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~504~^2.219^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~505~^2.480^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~506~^0.685^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~507~^0.259^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~508~^1.028^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~509~^0.963^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~510~^1.271^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~511~^1.730^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~512~^0.957^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~513~^1.540^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~514~^2.491^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~515~^4.206^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~516~^1.111^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~517~^1.083^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~518~^1.047^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~605~^0.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~606~^1.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~610~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~611~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~612~^0.065^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~613~^0.643^6^0.065^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~614~^0.361^6^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~617~^1.158^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~618~^0.157^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~619~^0.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~620~^0.035^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~625~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~626~^0.089^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~628~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23357~^~631~^0.009^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~645~^1.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~646~^0.223^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~652~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~653~^0.032^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~654~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~662~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~663~^0.119^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~665~^0.012^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~670~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~673~^0.083^6^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~674~^1.038^6^0.089^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~675~^0.136^6^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~687~^0.023^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23357~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23357~^~851~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23357~^~853~^0.014^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~312~^0.048^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~315~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~405~^0.227^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~406~^6.667^4^0.356^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~410~^0.350^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~415~^0.641^4^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~501~^0.279^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~502~^1.159^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~503~^1.153^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~504~^2.113^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~505~^2.353^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~506~^0.655^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~507~^0.245^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~508~^0.982^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~509~^0.919^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~510~^1.220^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~511~^1.646^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~512~^0.902^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~513~^1.471^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~514~^2.371^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~515~^4.021^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~516~^1.060^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~517~^1.029^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~518~^0.997^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~605~^0.144^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~606~^1.253^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~610~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~611~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~612~^0.075^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~613~^0.726^4^0.081^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~614~^0.396^4^0.032^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~617~^1.324^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~618~^0.165^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~620~^0.035^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~621~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~625~^0.020^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~626~^0.106^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23358~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~645~^1.484^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~652~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~653~^0.035^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~654~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~662~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~663~^0.122^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~665~^0.015^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~670~^0.011^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~673~^0.099^4^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~674~^1.202^4^0.110^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~675~^0.139^4^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~687~^0.027^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23358~^~693~^0.129^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23358~^~851~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23358~^~853~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~312~^0.047^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~315~^0.003^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~404~^0.064^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~405~^0.250^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~406~^6.155^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~410~^0.370^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~415~^0.626^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~501~^0.308^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~502~^1.313^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~503~^1.302^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~504~^2.426^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~505~^2.721^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~506~^0.745^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~508~^1.112^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~509~^1.053^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~510~^1.373^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~511~^1.893^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~512~^1.065^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~513~^1.668^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~514~^2.721^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~515~^4.567^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~516~^1.207^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~517~^1.195^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~518~^1.148^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~521~^0.119^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~606~^0.920^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~610~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~612~^0.050^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~613~^0.519^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~614~^0.308^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~615~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~617~^0.908^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~618~^0.145^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~619~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~620~^0.036^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~625~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~626~^0.064^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~628~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23359~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~645~^1.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~646~^0.210^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~652~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~653~^0.027^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~654~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~662~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~663~^0.115^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~665~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~670~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~673~^0.059^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~674~^0.793^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~675~^0.132^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~687~^0.018^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23359~^~693~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23359~^~851~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23359~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~312~^0.042^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~315~^0.001^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~405~^0.184^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~406~^6.720^6^0.269^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~410~^0.355^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23360~^~415~^0.644^6^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~501~^0.287^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~502~^1.201^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~503~^1.192^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~504~^2.198^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~505~^2.457^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~506~^0.679^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~507~^0.256^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~508~^1.018^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~509~^0.954^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~510~^1.259^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~511~^1.714^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~512~^0.948^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~513~^1.525^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~514~^2.468^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~515~^4.167^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~516~^1.101^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~517~^1.073^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~518~^1.037^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~605~^0.140^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~606~^1.086^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~610~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~611~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~612~^0.070^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~613~^0.631^6^0.033^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~614~^0.335^6^0.019^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~617~^1.116^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~618~^0.162^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~620~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~625~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~628~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23360~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~645~^1.266^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~646~^0.233^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~652~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~653~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~654~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~662~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~663~^0.117^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~665~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~670~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~673~^0.089^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~674~^0.999^6^0.063^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~675~^0.136^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~687~^0.024^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23360~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23360~^~851~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23360~^~853~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~312~^0.049^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~315~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23361~^~405~^0.183^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~406~^6.810^4^0.334^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~410~^0.354^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23361~^~415~^0.648^4^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~501~^0.276^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~502~^1.147^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~503~^1.141^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~504~^2.091^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~505~^2.329^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~506~^0.648^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~507~^0.243^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~508~^0.972^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~509~^0.909^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~510~^1.208^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~511~^1.629^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~512~^0.893^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~513~^1.456^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~514~^2.347^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~515~^3.980^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~516~^1.049^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~517~^1.018^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~518~^0.987^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23361~^~605~^0.142^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~606~^1.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~610~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~611~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~612~^0.072^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~613~^0.666^4^0.041^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~614~^0.346^4^0.023^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~617~^1.191^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~618~^0.176^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~620~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~621~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~625~^0.023^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~626~^0.107^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23361~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~646~^0.248^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~652~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~653~^0.030^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~654~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~662~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~663~^0.117^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~665~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~670~^0.013^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~673~^0.097^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~674~^1.074^4^0.078^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~675~^0.147^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~687~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23361~^~693~^0.127^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23361~^~851~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23361~^~853~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~312~^0.035^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23362~^~405~^0.185^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~406~^6.585^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~410~^0.367^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23362~^~415~^0.637^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~501~^0.305^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~502~^1.303^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~503~^1.291^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~504~^2.407^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~505~^2.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~506~^0.740^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~508~^1.104^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~509~^1.045^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~510~^1.362^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~511~^1.878^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~512~^1.057^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~513~^1.655^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~514~^2.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~515~^4.532^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~516~^1.197^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~517~^1.186^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~518~^1.139^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~605~^0.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~606~^1.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~610~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~612~^0.066^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~613~^0.578^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~614~^0.317^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~617~^1.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~618~^0.141^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~625~^0.019^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~626~^0.084^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~628~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23362~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~645~^1.136^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~646~^0.211^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~652~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~653~^0.029^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~662~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~663~^0.118^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~665~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~670~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~673~^0.076^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~674~^0.886^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~675~^0.119^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~687~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23362~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23362~^~851~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23362~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~312~^0.042^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~315~^0.001^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~405~^0.184^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~406~^6.720^6^0.269^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~410~^0.355^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23363~^~415~^0.644^6^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~501~^0.287^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~502~^1.201^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~503~^1.192^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~504~^2.198^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~505~^2.457^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~506~^0.679^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~507~^0.256^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~508~^1.018^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~509~^0.954^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~510~^1.259^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~511~^1.714^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~512~^0.948^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~513~^1.525^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~514~^2.468^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~515~^4.167^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~516~^1.101^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~517~^1.073^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~518~^1.037^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~605~^0.140^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~606~^1.086^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~610~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~611~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~612~^0.070^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~613~^0.631^6^0.033^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~614~^0.335^6^0.019^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~617~^1.116^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~618~^0.162^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~620~^0.036^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~621~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~625~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~628~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23363~^~631~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~645~^1.266^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~646~^0.233^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~652~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~653~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~654~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~662~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~663~^0.117^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~665~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~670~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~673~^0.089^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~674~^0.999^6^0.063^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~675~^0.136^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~687~^0.024^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23363~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23363~^~851~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23363~^~853~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~312~^0.049^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~315~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23364~^~405~^0.183^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~406~^6.810^4^0.334^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~410~^0.346^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23364~^~415~^0.648^4^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~501~^0.276^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~502~^1.147^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~503~^1.141^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~504~^2.091^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~505~^2.329^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~506~^0.648^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~507~^0.243^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~508~^0.972^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~509~^0.909^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~510~^1.208^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~511~^1.629^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~512~^0.893^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~513~^1.456^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~514~^2.347^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~515~^3.980^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~516~^1.049^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~517~^1.018^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~518~^0.987^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~605~^0.142^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~606~^1.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~610~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~611~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~612~^0.072^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~613~^0.666^4^0.041^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~614~^0.346^4^0.023^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~615~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~617~^1.191^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~618~^0.176^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~620~^0.038^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~621~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~625~^0.023^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~626~^0.107^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~628~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~629~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23364~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~646~^0.248^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~652~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~653~^0.030^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~654~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~662~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~663~^0.117^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~665~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~670~^0.013^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~673~^0.097^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~674~^1.074^4^0.078^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~675~^0.147^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~687~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23364~^~693~^0.127^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23364~^~851~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23364~^~853~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~312~^0.035^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~404~^0.064^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23365~^~405~^0.185^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~406~^6.585^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~410~^0.367^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23365~^~415~^0.637^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~501~^0.305^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~502~^1.303^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~503~^1.291^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~504~^2.407^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~505~^2.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~506~^0.740^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~508~^1.104^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~509~^1.045^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~510~^1.362^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~511~^1.878^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~512~^1.057^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~513~^1.655^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~514~^2.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~515~^4.532^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~516~^1.197^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~517~^1.186^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~518~^1.139^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~605~^0.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~606~^1.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~610~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~611~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~612~^0.066^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~613~^0.578^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~614~^0.317^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~615~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~617~^1.004^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~618~^0.141^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~620~^0.034^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~625~^0.019^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~626~^0.084^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~628~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23365~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~645~^1.136^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~646~^0.211^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~652~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~653~^0.029^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~662~^0.008^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~663~^0.118^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~665~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~670~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~673~^0.076^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~674~^0.886^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~675~^0.119^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~687~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23365~^~693~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23365~^~851~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23365~^~853~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~312~^0.063^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~315~^0.007^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~405~^0.318^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~406~^4.755^6^0.095^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~410~^0.354^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23366~^~415~^0.615^6^0.016^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~501~^0.269^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~502~^1.127^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~503~^1.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~504~^2.063^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~505~^2.305^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~506~^0.637^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~508~^0.955^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~509~^0.895^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~510~^1.182^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~511~^1.608^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~512~^0.890^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~513~^1.431^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~514~^2.316^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~515~^3.910^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~516~^1.033^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~517~^1.007^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~518~^0.973^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~521~^0.111^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~605~^0.271^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~606~^1.956^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~610~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~611~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~612~^0.125^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~613~^1.078^6^0.034^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~614~^0.655^6^0.023^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~617~^1.899^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~618~^0.321^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~620~^0.056^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~625~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~626~^0.145^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~628~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23366~^~631~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~645~^2.122^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~646~^0.420^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~652~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~653~^0.057^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~654~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~662~^0.018^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~663~^0.225^6^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~665~^0.028^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~670~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~672~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~673~^0.127^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~674~^1.674^6^0.082^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~675~^0.269^6^0.011^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~687~^0.039^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23366~^~693~^0.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23366~^~851~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23366~^~853~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~312~^0.062^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~315~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23367~^~405~^0.307^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~406~^4.508^4^0.118^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~410~^0.351^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23367~^~415~^0.610^4^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~501~^0.258^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~502~^1.070^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~503~^1.064^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~504~^1.950^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~505~^2.172^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~506~^0.604^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~508~^0.907^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~509~^0.848^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~510~^1.126^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~511~^1.520^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~512~^0.833^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~513~^1.358^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~514~^2.189^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~515~^3.712^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~516~^0.979^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~517~^0.950^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~518~^0.920^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~521~^0.110^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~606~^2.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~610~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~611~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~612~^0.136^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~613~^1.183^4^0.042^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~614~^0.698^4^0.028^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~615~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~617~^2.089^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~618~^0.346^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~620~^0.060^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~621~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~625~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~626~^0.163^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~628~^0.011^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23367~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~645~^2.338^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~646~^0.450^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~652~^0.025^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~653~^0.063^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~654~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~662~^0.020^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~663~^0.242^4^0.017^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~665~^0.031^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~670~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~672~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~673~^0.143^4^0.009^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~674~^1.847^4^0.102^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~675~^0.290^4^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~687~^0.044^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23367~^~693~^0.261^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23367~^~851~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23367~^~853~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~312~^0.068^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~315~^0.008^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23368~^~405~^0.335^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~406~^5.125^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~410~^0.371^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23368~^~415~^0.622^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~501~^0.289^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~502~^1.234^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~503~^1.223^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~504~^2.279^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~505~^2.557^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~506~^0.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~508~^1.045^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~509~^0.989^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~510~^1.290^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~511~^1.779^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~512~^1.001^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~513~^1.568^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~514~^2.557^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~515~^4.291^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~516~^1.134^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~517~^1.123^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~518~^1.078^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~521~^0.112^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~605~^0.239^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~606~^1.706^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~611~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~612~^0.108^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~613~^0.919^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~614~^0.591^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~617~^1.615^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~618~^0.283^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~625~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~626~^0.118^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23368~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~645~^1.799^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~652~^0.021^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~653~^0.050^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~662~^0.016^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~663~^0.199^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~665~^0.024^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~670~^0.022^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~673~^0.102^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~674~^1.416^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~675~^0.236^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~687~^0.033^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23368~^~693~^0.215^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23368~^~851~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23368~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~312~^0.044^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~315~^0.002^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~404~^0.056^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~405~^0.211^6^0.009^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~406~^6.742^6^0.241^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~410~^0.372^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~415~^0.578^6^0.023^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~501~^0.283^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~502~^1.186^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~503~^1.176^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~504~^2.170^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~505~^2.425^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~506~^0.670^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~508~^1.005^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~509~^0.942^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~510~^1.243^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~511~^1.692^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~512~^0.936^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~513~^1.506^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~514~^2.436^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~515~^4.113^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~516~^1.087^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~517~^1.059^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~518~^1.024^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~521~^0.117^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~605~^0.299^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~606~^2.345^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~610~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~611~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~612~^0.152^6^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~613~^1.360^6^0.118^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~614~^0.723^6^0.045^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~617~^2.420^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~618~^0.300^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~620~^0.046^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~625~^0.031^6^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~626~^0.200^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~628~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23369~^~631~^0.008^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~645~^2.711^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~646~^0.381^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~652~^0.026^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~653~^0.065^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~662~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~663~^0.252^6^0.016^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~665~^0.032^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~670~^0.022^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~673~^0.184^6^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~674~^2.168^6^0.168^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~675~^0.247^6^0.024^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~687~^0.050^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23369~^~693~^0.267^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23369~^~851~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23369~^~853~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~312~^0.042^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~404~^0.053^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~405~^0.205^4^0.011^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~406~^6.947^4^0.299^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~410~^0.360^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~415~^0.589^4^0.028^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~501~^0.271^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~502~^1.126^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~503~^1.120^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~504~^2.053^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~505~^2.286^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~506~^0.636^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~508~^0.954^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~510~^1.185^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~511~^1.599^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~512~^0.876^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~513~^1.429^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~514~^2.304^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~515~^3.907^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~516~^1.030^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~517~^0.999^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~518~^0.969^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~521~^0.116^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~606~^2.515^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~610~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~611~^0.006^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~612~^0.164^4^0.017^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~613~^1.467^4^0.147^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~614~^0.766^4^0.056^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~615~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~617~^2.625^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~618~^0.309^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~620~^0.049^4^0.008^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~625~^0.038^4^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~626~^0.221^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~628~^0.010^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23370~^~631~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~645~^2.948^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~646~^0.393^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~652~^0.026^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~653~^0.070^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~662~^0.015^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~663~^0.262^4^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~665~^0.030^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~670~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~673~^0.205^4^0.025^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~674~^2.363^4^0.209^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~675~^0.257^4^0.030^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~687~^0.054^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23370~^~693~^0.277^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23370~^~851~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23370~^~853~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~312~^0.045^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~404~^0.060^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~405~^0.220^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~406~^6.435^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~410~^0.390^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~415~^0.563^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~501~^0.304^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~502~^1.297^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~503~^1.285^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~504~^2.396^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~505~^2.688^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~506~^0.736^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~507~^0.280^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~508~^1.098^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~509~^1.040^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~510~^1.356^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~511~^1.870^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~512~^1.052^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~513~^1.648^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~514~^2.688^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~515~^4.511^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~516~^1.192^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~517~^1.180^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~518~^1.134^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~521~^0.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~605~^0.250^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~606~^1.824^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~611~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~612~^0.115^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~613~^1.046^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~614~^0.574^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~617~^1.844^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~23371~^~618~^0.252^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~23371~^~619~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~23371~^~620~^0.035^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~625~^0.018^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~626~^0.147^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~23371~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~628~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23371~^~631~^0.008^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~645~^2.055^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~646~^0.317^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~652~^0.022^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~653~^0.052^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~654~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~662~^0.014^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~663~^0.207^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~665~^0.029^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~670~^0.019^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23371~^~673~^0.133^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~674~^1.637^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~675~^0.203^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~687~^0.037^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~23371~^~693~^0.221^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~23371~^~851~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23371~^~853~^0.012^2^^~1~^~AR~^^^^^^^^^^~07/01/2015~ -~23372~^~312~^0.063^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~315~^0.007^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~404~^0.053^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~405~^0.318^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~406~^4.755^6^0.095^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~410~^0.354^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23372~^~415~^0.615^6^0.016^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~501~^0.269^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~502~^1.127^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~503~^1.118^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~504~^2.063^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~505~^2.305^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~506~^0.637^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~508~^0.955^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~509~^0.895^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~510~^1.182^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~511~^1.608^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~512~^0.890^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~513~^1.431^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~514~^2.316^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~515~^3.910^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~516~^1.033^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~517~^1.007^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~518~^0.973^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~521~^0.111^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~605~^0.271^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~606~^1.956^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~610~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~611~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~612~^0.125^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~613~^1.078^6^0.034^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~614~^0.655^6^0.023^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~617~^1.899^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~618~^0.321^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~620~^0.056^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~625~^0.028^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~626~^0.145^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~628~^0.010^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23372~^~631~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~645~^2.122^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~646~^0.420^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~652~^0.023^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~653~^0.057^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~654~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~662~^0.018^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~663~^0.225^6^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~665~^0.028^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~670~^0.024^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~672~^0.002^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~673~^0.127^6^0.007^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~674~^1.674^6^0.082^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~675~^0.269^6^0.011^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~687~^0.039^6^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23372~^~693~^0.243^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23372~^~851~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23372~^~853~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~312~^0.062^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~315~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~404~^0.050^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23373~^~405~^0.307^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~406~^4.508^4^0.118^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~410~^0.342^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23373~^~415~^0.610^4^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~501~^0.258^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~502~^1.070^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~503~^1.064^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~504~^1.950^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~505~^2.172^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~506~^0.604^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~507~^0.227^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~508~^0.907^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~509~^0.848^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~510~^1.126^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~511~^1.520^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~512~^0.833^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~513~^1.358^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~514~^2.189^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~515~^3.712^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~516~^0.979^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~517~^0.950^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~518~^0.920^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~521~^0.110^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~605~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~606~^2.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~610~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~611~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~612~^0.136^4^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~613~^1.183^4^0.042^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~614~^0.698^4^0.028^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~615~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~617~^2.089^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~618~^0.346^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~620~^0.060^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~621~^0.000^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~625~^0.032^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~626~^0.163^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~628~^0.011^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23373~^~631~^0.009^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~645~^2.338^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~646~^0.450^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~652~^0.025^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~653~^0.063^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~654~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~662~^0.020^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~663~^0.242^4^0.017^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~665~^0.031^4^0.000^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~670~^0.025^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~672~^0.002^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~673~^0.143^4^0.009^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~674~^1.847^4^0.102^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~675~^0.290^4^0.014^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~687~^0.044^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23373~^~693~^0.261^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23373~^~851~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23373~^~853~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~312~^0.068^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~315~^0.008^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23374~^~405~^0.335^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~406~^5.125^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~410~^0.371^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~ -~23374~^~415~^0.622^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~501~^0.289^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~502~^1.234^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~503~^1.223^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~504~^2.279^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~505~^2.557^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~506~^0.700^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~508~^1.045^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~509~^0.989^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~510~^1.290^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~511~^1.779^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~512~^1.001^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~513~^1.568^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~514~^2.557^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~515~^4.291^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~516~^1.134^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~517~^1.123^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~518~^1.078^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~521~^0.112^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~605~^0.239^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~606~^1.706^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~611~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~612~^0.108^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~613~^0.919^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~614~^0.591^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~617~^1.615^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~618~^0.283^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~620~^0.051^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~625~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~626~^0.118^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23374~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~645~^1.799^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~652~^0.021^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~653~^0.050^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~662~^0.016^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~663~^0.199^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~665~^0.024^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~670~^0.022^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~673~^0.102^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~674~^1.416^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~675~^0.236^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~687~^0.033^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23374~^~693~^0.215^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23374~^~851~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23374~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~312~^0.091^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~315~^0.009^3^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~404~^0.069^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23375~^~405~^0.395^6^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~406~^5.586^6^0.216^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~410~^0.459^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23375~^~415~^0.686^6^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~501~^0.337^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~502~^1.413^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~503~^1.402^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~504~^2.587^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~505~^2.891^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~506~^0.799^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~507~^0.302^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~508~^1.198^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~509~^1.123^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~510~^1.482^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~511~^2.017^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~512~^1.116^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~513~^1.795^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~514~^2.904^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~515~^4.903^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~516~^1.296^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~517~^1.262^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~518~^1.220^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~521~^0.139^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23375~^~605~^0.404^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~606~^2.990^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~610~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~611~^0.007^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~612~^0.188^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~613~^1.655^6^0.047^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~614~^0.997^6^0.044^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~615~^0.006^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~617~^2.936^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~618~^0.449^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~620~^0.070^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~621~^0.002^6^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~625~^0.044^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~626~^0.221^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~628~^0.014^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~629~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23375~^~631~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~645~^3.275^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~646~^0.569^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~652~^0.034^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~653~^0.088^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~654~^0.007^6^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~662~^0.026^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~663~^0.337^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~665~^0.041^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~670~^0.036^6^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~672~^0.003^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~673~^0.195^6^0.016^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~674~^2.599^6^0.153^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~675~^0.372^6^0.010^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~687~^0.061^6^0.005^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23375~^~693~^0.363^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23375~^~851~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23375~^~853~^0.018^6^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~312~^0.086^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~315~^0.009^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~404~^0.065^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23376~^~405~^0.392^4^0.015^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~406~^5.470^4^0.268^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~410~^0.444^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23376~^~415~^0.696^4^0.015^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~501~^0.325^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~502~^1.349^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~503~^1.343^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~504~^2.461^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~505~^2.740^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~506~^0.762^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~507~^0.286^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~508~^1.144^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~509~^1.070^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~510~^1.421^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~511~^1.917^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~512~^1.050^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~513~^1.713^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~514~^2.762^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~515~^4.683^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~516~^1.235^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~517~^1.198^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~518~^1.161^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~605~^0.423^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~606~^3.252^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~610~^0.007^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~611~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~612~^0.207^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~613~^1.818^4^0.058^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~614~^1.067^4^0.055^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~615~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~617~^3.248^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~618~^0.471^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~620~^0.071^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~621~^0.001^4^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~625~^0.051^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~626~^0.253^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~628~^0.015^4^0.003^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23376~^~631~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~645~^3.636^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~646~^0.594^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~652~^0.037^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~653~^0.095^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~654~^0.007^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~662~^0.028^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~663~^0.350^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~665~^0.045^4^0.002^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~670~^0.038^4^0.004^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~672~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~673~^0.225^4^0.020^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~674~^2.898^4^0.190^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~675~^0.388^4^0.012^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~687~^0.068^4^0.006^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23376~^~693~^0.378^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23376~^~851~^0.016^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23376~^~853~^0.019^4^0.001^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~312~^0.097^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~315~^0.009^1^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~404~^0.074^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23377~^~405~^0.400^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~406~^5.760^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~410~^0.481^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~ -~23377~^~415~^0.669^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~501~^0.359^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~502~^1.534^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~503~^1.520^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~504~^2.833^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~505~^3.178^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~506~^0.871^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~507~^0.332^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~508~^1.299^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~509~^1.230^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~510~^1.603^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~511~^2.211^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~512~^1.244^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~513~^1.948^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~514~^3.178^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~515~^5.334^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~516~^1.409^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~517~^1.396^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~518~^1.340^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~521~^0.139^0^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~605~^0.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~606~^2.595^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~610~^0.006^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~612~^0.161^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~613~^1.411^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~614~^0.893^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~615~^0.005^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~617~^2.467^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~618~^0.417^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~620~^0.068^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~621~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~625~^0.032^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~626~^0.172^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~628~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23377~^~631~^0.011^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~645~^2.734^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~646~^0.532^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~652~^0.030^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~653~^0.077^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~654~^0.007^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~662~^0.023^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~663~^0.318^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~665~^0.034^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~670~^0.034^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~673~^0.149^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~674~^2.150^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~675~^0.349^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~687~^0.050^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~23377~^~693~^0.341^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~23377~^~851~^0.013^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23377~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~04/01/2013~ -~23378~^~312~^0.059^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~315~^0.005^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~404~^0.079^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~405~^0.291^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~406~^7.978^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~410~^0.442^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~415~^0.784^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~501~^0.381^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~502~^1.595^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~503~^1.583^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~504~^2.920^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~505~^3.263^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~506~^0.902^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~507~^0.341^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~508~^1.352^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~509~^1.267^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~510~^1.673^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~511~^2.277^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~512~^1.260^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~513~^2.026^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~514~^3.278^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~515~^5.535^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~516~^1.463^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~517~^1.425^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~518~^1.378^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23378~^~521~^0.157^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2013~ -~23378~^~605~^0.170^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~606~^1.383^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~610~^0.005^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~611~^0.003^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~612~^0.080^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~613~^0.794^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~614~^0.445^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~615~^0.002^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~617~^1.429^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~618~^0.193^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~619~^0.005^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~620~^0.044^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~621~^0.001^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~625~^0.020^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~626~^0.110^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~628~^0.006^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~629~^0.002^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23378~^~631~^0.011^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~645~^1.594^0^^~4~^~BFYN~^~23357~^^^^^^^^^~07/01/2013~ -~23378~^~646~^0.275^0^^~4~^~BFYN~^~23357~^^^^^^^^^~07/01/2013~ -~23378~^~652~^0.013^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~653~^0.039^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~654~^0.002^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~662~^0.008^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~663~^0.147^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~665~^0.015^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~670~^0.011^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~672~^0.001^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~673~^0.102^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~674~^1.282^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~675~^0.168^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~687~^0.029^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~689~^0.017^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~693~^0.155^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~695~^0.015^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~851~^0.005^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23378~^~853~^0.017^0^^~4~^~BFYN~^~23357~^^^^^^^^^~04/01/2013~ -~23379~^~312~^0.059^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~315~^0.005^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~404~^0.079^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~405~^0.280^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~406~^8.230^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~410~^0.432^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~415~^0.792^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~501~^0.364^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~502~^1.512^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~503~^1.505^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~504~^2.757^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~505~^3.070^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~506~^0.854^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~507~^0.320^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~508~^1.281^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~509~^1.199^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~510~^1.592^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~511~^2.148^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~512~^1.177^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~513~^1.920^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~514~^3.094^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~515~^5.247^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~516~^1.383^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~517~^1.342^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~518~^1.301^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~521~^0.155^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23379~^~605~^0.178^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~606~^1.547^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~610~^0.005^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~611~^0.003^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~612~^0.092^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~613~^0.897^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~614~^0.488^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~615~^0.002^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~617~^1.634^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~618~^0.203^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~619~^0.006^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~620~^0.043^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~621~^0.001^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~625~^0.024^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~626~^0.131^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~628~^0.008^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~629~^0.002^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23379~^~631~^0.012^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~645~^1.832^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~646~^0.286^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~652~^0.014^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~653~^0.043^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~654~^0.002^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~662~^0.009^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~663~^0.150^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~665~^0.018^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~670~^0.013^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~672~^0.001^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~673~^0.122^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~674~^1.484^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~675~^0.172^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~687~^0.034^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~689~^0.017^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~693~^0.160^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~695~^0.018^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~851~^0.006^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23379~^~853~^0.017^0^^~4~^~BFYN~^~23358~^^^^^^^^^~04/01/2013~ -~23380~^~312~^0.059^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~315~^0.004^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~404~^0.079^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~405~^0.309^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~406~^7.599^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~410~^0.457^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~415~^0.772^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~501~^0.408^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~502~^1.742^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~503~^1.726^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~504~^3.217^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~505~^3.610^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~506~^0.989^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~507~^0.377^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~508~^1.475^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~509~^1.397^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~510~^1.820^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~511~^2.511^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~512~^1.412^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~513~^2.213^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~514~^3.610^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~515~^6.058^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~516~^1.601^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~517~^1.585^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~518~^1.522^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~521~^0.158^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23380~^~605~^0.158^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~606~^1.136^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~610~^0.005^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~611~^0.003^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~612~^0.061^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~613~^0.640^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~614~^0.380^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~615~^0.001^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~617~^1.121^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~618~^0.179^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~619~^0.004^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~620~^0.045^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~621~^0.002^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~625~^0.013^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~626~^0.079^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~628~^0.003^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~629~^0.002^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23380~^~631~^0.011^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~645~^1.238^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~646~^0.260^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~652~^0.010^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~653~^0.033^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~654~^0.002^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~662~^0.006^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~663~^0.142^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~665~^0.009^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~670~^0.006^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~672~^0.001^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~673~^0.072^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~674~^0.979^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~675~^0.163^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~687~^0.022^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~689~^0.016^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~693~^0.148^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~695~^0.009^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~851~^0.004^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23380~^~853~^0.016^0^^~4~^~BFYN~^~23359~^^^^^^^^^~04/01/2013~ -~23381~^~312~^0.055^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~315~^0.002^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~404~^0.082^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~405~^0.239^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~406~^8.727^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~410~^0.461^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~415~^0.836^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~501~^0.366^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~502~^1.534^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~503~^1.522^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~504~^2.807^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~505~^3.137^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~506~^0.867^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~507~^0.327^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~508~^1.300^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~509~^1.218^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~510~^1.608^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~511~^2.189^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~512~^1.211^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~513~^1.948^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~514~^3.152^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~515~^5.321^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~516~^1.406^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~517~^1.370^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~518~^1.324^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~521~^0.151^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23381~^~605~^0.182^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~606~^1.410^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~610~^0.004^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~611~^0.003^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~612~^0.091^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~613~^0.819^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~614~^0.435^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~615~^0.003^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~617~^1.449^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~618~^0.210^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~619~^0.008^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~620~^0.047^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~621~^0.002^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~625~^0.027^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~626~^0.127^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~628~^0.010^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~629~^0.005^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23381~^~631~^0.013^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~645~^1.644^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~646~^0.302^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~652~^0.015^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~653~^0.039^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~654~^0.004^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~662~^0.012^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~663~^0.152^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~665~^0.018^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~670~^0.016^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~672~^0.002^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~673~^0.115^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~674~^1.297^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~675~^0.176^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~687~^0.031^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~689~^0.016^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~693~^0.164^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~695~^0.018^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~851~^0.008^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23381~^~853~^0.016^0^^~4~^~BFYN~^~23363~^^^^^^^^^~04/01/2013~ -~23382~^~312~^0.064^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~315~^0.001^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~404~^0.082^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~405~^0.238^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~406~^8.844^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~410~^0.450^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~415~^0.842^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~501~^0.354^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~502~^1.470^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~503~^1.463^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~504~^2.681^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~505~^2.985^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~506~^0.831^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~507~^0.312^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~508~^1.246^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~509~^1.166^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~510~^1.548^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~511~^2.089^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~512~^1.145^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~513~^1.867^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~514~^3.009^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~515~^5.102^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~516~^1.345^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~517~^1.305^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~518~^1.265^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~521~^0.151^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23382~^~605~^0.185^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~606~^1.476^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~610~^0.004^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~611~^0.003^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~612~^0.094^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~613~^0.864^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~614~^0.450^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~615~^0.003^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~617~^1.547^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~618~^0.229^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~619~^0.008^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~620~^0.049^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~621~^0.002^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~625~^0.029^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~626~^0.139^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~628~^0.010^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~629~^0.005^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23382~^~631~^0.012^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~645~^1.757^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~646~^0.322^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~652~^0.015^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~653~^0.039^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~654~^0.004^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~662~^0.012^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~663~^0.152^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~665~^0.020^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~670~^0.017^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~672~^0.002^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~673~^0.126^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~674~^1.395^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~675~^0.191^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~687~^0.032^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~689~^0.015^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~693~^0.164^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~695~^0.020^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~851~^0.008^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23382~^~853~^0.015^0^^~4~^~BFYN~^~23364~^^^^^^^^^~04/01/2013~ -~23383~^~312~^0.046^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~315~^0.002^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~404~^0.082^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~405~^0.240^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~406~^8.552^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~410~^0.477^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~415~^0.828^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~501~^0.385^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~502~^1.643^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~503~^1.629^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~504~^3.035^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~505~^3.405^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~506~^0.933^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~507~^0.355^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~508~^1.392^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~509~^1.318^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~510~^1.718^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~511~^2.369^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~512~^1.333^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~513~^2.088^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~514~^3.405^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~515~^5.715^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~516~^1.510^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~517~^1.495^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~518~^1.436^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~521~^0.149^0^^~4~^~O~^^^^^^^^^^~04/01/2013~ -~23383~^~605~^0.178^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~606~^1.313^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~610~^0.004^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~611~^0.003^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~612~^0.086^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~613~^0.750^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~614~^0.412^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~615~^0.003^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~617~^1.303^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~618~^0.183^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~619~^0.007^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~620~^0.044^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~621~^0.003^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~625~^0.024^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~626~^0.110^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~628~^0.009^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~629~^0.005^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~ -~23383~^~631~^0.014^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~645~^1.476^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~646~^0.273^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~652~^0.014^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~653~^0.038^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~654~^0.003^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~662~^0.011^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~663~^0.153^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~665~^0.014^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~670~^0.014^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~672~^0.001^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~673~^0.099^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~674~^1.151^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~675~^0.154^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~687~^0.029^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~689~^0.016^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~693~^0.163^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~695~^0.014^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~851~^0.007^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23383~^~853~^0.016^0^^~4~^~BFYN~^~23365~^^^^^^^^^~04/01/2013~ -~23384~^~312~^0.045^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~404~^0.060^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~405~^0.220^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~406~^6.435^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~410~^0.390^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~415~^0.563^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~501~^0.261^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~502~^1.119^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~503~^1.105^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~504~^2.064^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~505~^2.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~506~^0.644^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~507~^0.244^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~508~^0.951^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~510~^1.181^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~511~^1.630^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~512~^0.911^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~513~^1.466^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~514~^2.330^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~515~^3.891^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~516~^1.153^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~517~^1.075^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~518~^0.987^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~521~^0.159^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23384~^~605~^0.287^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~606~^2.090^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~610~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~611~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~612~^0.132^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~613~^1.199^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~614~^0.658^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~617~^2.113^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23384~^~618~^0.288^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23384~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23384~^~620~^0.041^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~625~^0.021^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~626~^0.169^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23384~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~628~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23384~^~631~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~645~^2.355^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~646~^0.363^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~652~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~653~^0.059^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~662~^0.016^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~663~^0.237^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~665~^0.034^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~670~^0.022^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~672~^0.001^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~673~^0.153^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~674~^1.876^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~675~^0.233^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~687~^0.043^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23384~^~693~^0.253^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23384~^~851~^0.008^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23384~^~853~^0.014^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~312~^0.042^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~404~^0.053^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~405~^0.205^4^0.011^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~406~^6.947^4^0.299^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~410~^0.360^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~415~^0.589^4^0.028^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~501~^0.271^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~502~^1.126^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~503~^1.120^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~504~^2.053^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~505~^2.286^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~506~^0.636^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~507~^0.239^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~508~^0.954^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~509~^0.893^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~510~^1.185^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~511~^1.599^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~512~^0.876^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~513~^1.429^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~514~^2.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~515~^3.907^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~516~^1.030^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~517~^0.999^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~518~^0.969^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~521~^0.116^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23385~^~605~^0.307^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~606~^2.515^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~610~^0.006^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~611~^0.006^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~612~^0.164^4^0.017^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~613~^1.467^4^0.147^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~614~^0.766^4^0.056^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~615~^0.004^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~617~^2.625^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23385~^~618~^0.309^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23385~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23385~^~620~^0.049^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~625~^0.038^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~626~^0.221^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23385~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~628~^0.010^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~629~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23385~^~631~^0.008^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~645~^2.948^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~646~^0.393^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~652~^0.026^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~653~^0.070^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~662~^0.015^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~663~^0.262^4^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~665~^0.030^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~670~^0.022^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~672~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~673~^0.205^4^0.025^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~674~^2.363^4^0.209^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~675~^0.257^4^0.030^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~687~^0.054^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23385~^~693~^0.277^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23385~^~851~^0.009^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23385~^~853~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~312~^0.044^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~315~^0.002^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~404~^0.056^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~405~^0.211^6^0.009^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~406~^6.742^6^0.241^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~410~^0.372^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~415~^0.578^6^0.023^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~501~^0.283^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~502~^1.186^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~503~^1.176^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~504~^2.170^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~505~^2.425^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~506~^0.670^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~508~^1.005^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~509~^0.942^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~510~^1.243^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~511~^1.692^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~512~^0.936^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~513~^1.506^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~514~^2.436^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~515~^4.113^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~516~^1.087^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~517~^1.059^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~518~^1.024^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~521~^0.117^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23386~^~605~^0.299^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~606~^2.345^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~610~^0.006^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~611~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~612~^0.152^6^0.014^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~613~^1.360^6^0.118^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~614~^0.723^6^0.045^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~617~^2.420^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23386~^~618~^0.300^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23386~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23386~^~620~^0.046^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~625~^0.031^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~626~^0.200^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23386~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~628~^0.010^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23386~^~631~^0.008^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~645~^2.711^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~646~^0.381^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~652~^0.026^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~653~^0.065^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~662~^0.016^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~663~^0.252^6^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~665~^0.032^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~670~^0.022^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~672~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~673~^0.184^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~674~^2.168^6^0.168^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~675~^0.247^6^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~687~^0.050^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23386~^~693~^0.267^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23386~^~851~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23386~^~853~^0.014^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~312~^0.041^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~315~^0.002^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~404~^0.056^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~405~^0.197^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~406~^5.879^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~410~^0.370^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~415~^0.523^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~501~^0.241^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~502~^1.034^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~503~^1.022^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~504~^1.908^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~505~^2.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~506~^0.595^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~507~^0.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~508~^0.879^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~509~^0.826^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~510~^1.092^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~511~^1.507^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~512~^0.843^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~513~^1.355^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~514~^2.154^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~515~^3.597^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~516~^1.066^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~517~^0.994^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~518~^0.913^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~521~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23387~^~605~^0.760^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~606~^5.202^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~610~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~611~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~612~^0.359^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~613~^2.890^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~614~^1.710^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~615~^0.009^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~617~^5.150^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23387~^~618~^0.541^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23387~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23387~^~620~^0.040^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~625~^0.089^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~626~^0.452^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23387~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~628~^0.029^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~629~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23387~^~631~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~645~^5.826^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~646~^0.636^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~652~^0.064^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~653~^0.146^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~662~^0.038^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~663~^0.644^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~665~^0.079^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~670~^0.069^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~673~^0.414^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~674~^4.506^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~675~^0.393^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~687~^0.107^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23387~^~693~^0.682^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~695~^0.079^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23387~^~851~^0.021^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23387~^~853~^0.017^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~312~^0.040^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~315~^0.002^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~404~^0.052^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~405~^0.189^6^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~406~^6.123^6^0.193^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~410~^0.354^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~415~^0.535^6^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~501~^0.238^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~502~^1.004^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~503~^0.992^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~504~^1.835^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~505~^2.040^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~506~^0.576^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~507~^0.217^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~508~^0.854^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~509~^0.793^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~510~^1.064^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~511~^1.450^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~512~^0.798^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~513~^1.320^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~514~^2.075^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~515~^3.481^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~516~^1.048^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~517~^0.955^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~518~^0.877^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23388~^~605~^0.782^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~606~^5.491^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~610~^0.010^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~611~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~612~^0.381^6^0.012^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~613~^3.066^6^0.091^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~614~^1.791^6^0.038^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~615~^0.010^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~617~^5.477^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23388~^~618~^0.557^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23388~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23388~^~620~^0.045^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~625~^0.099^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~626~^0.483^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23388~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~628~^0.030^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23388~^~631~^0.010^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~645~^6.204^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~646~^0.657^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~652~^0.066^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~653~^0.153^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~654~^0.005^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~662~^0.038^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~663~^0.666^6^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~665~^0.078^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~670~^0.070^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~672~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~673~^0.445^6^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~674~^4.811^6^0.132^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~675~^0.409^6^0.021^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~687~^0.114^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23388~^~693~^0.704^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23388~^~851~^0.022^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23388~^~853~^0.017^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~312~^0.064^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~404~^0.056^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~405~^0.191^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~406~^6.734^4^0.208^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~410~^0.314^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~415~^0.642^4^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~501~^0.288^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~502~^1.204^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~503~^1.193^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~504~^2.194^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~505~^2.429^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~506~^0.692^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~507~^0.259^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~508~^1.025^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~509~^0.950^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~510~^1.283^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~511~^1.734^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~512~^0.945^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~513~^1.588^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~514~^2.481^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~515~^4.179^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~516~^1.267^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~517~^1.145^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~518~^1.050^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~521~^0.176^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23389~^~605~^1.112^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~606~^7.505^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~610~^0.014^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~611~^0.014^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~612~^0.525^4^0.016^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~613~^4.183^4^0.122^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~614~^2.455^4^0.088^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~615~^0.012^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~617~^7.589^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23389~^~618~^0.744^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23389~^~619~^0.028^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23389~^~620~^0.051^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~625~^0.135^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~626~^0.668^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23389~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~628~^0.040^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23389~^~631~^0.012^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~645~^8.590^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~646~^0.862^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~652~^0.087^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~653~^0.211^4^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~654~^0.004^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~662~^0.052^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~663~^0.958^4^0.036^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~665~^0.103^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~670~^0.091^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~672~^0.005^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~673~^0.616^4^0.017^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~674~^6.630^4^0.216^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~675~^0.550^4^0.025^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~687~^0.159^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~689~^0.021^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23389~^~693~^1.010^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23389~^~851~^0.028^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23389~^~853~^0.021^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~312~^0.064^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~315~^0.004^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~404~^0.062^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~405~^0.214^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~406~^6.510^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~410~^0.375^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~415~^0.663^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~501~^0.302^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~502~^1.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~503~^1.277^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~504~^2.385^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~505~^2.662^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~506~^0.744^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~507~^0.282^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~508~^1.099^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~509~^1.032^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~510~^1.365^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~511~^1.883^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~512~^1.053^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~513~^1.694^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~514~^2.692^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~515~^4.496^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~516~^1.333^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~517~^1.242^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~518~^1.141^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~521~^0.184^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23390~^~605~^0.931^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~606~^6.056^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~610~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~611~^0.011^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~612~^0.419^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~613~^3.332^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~614~^2.038^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~615~^0.010^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~617~^6.030^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23390~^~618~^0.623^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23390~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23390~^~620~^0.052^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~625~^0.108^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~626~^0.520^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23390~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~628~^0.036^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23390~^~631~^0.013^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~645~^6.821^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~646~^0.738^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~652~^0.059^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~653~^0.172^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~662~^0.043^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~663~^0.806^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~665~^0.082^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~670~^0.076^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~672~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~673~^0.477^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~674~^5.224^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~675~^0.465^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~687~^0.128^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23390~^~693~^0.849^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~695~^0.082^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23390~^~851~^0.025^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23390~^~853~^0.018^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~312~^0.067^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~315~^0.003^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~404~^0.058^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~405~^0.200^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~406~^6.644^6^0.168^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~410~^0.338^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~415~^0.650^6^0.011^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~501~^0.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~502~^1.234^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~503~^1.220^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~504~^2.257^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~505~^2.508^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~506~^0.708^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~508~^1.050^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~509~^0.976^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~510~^1.309^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~511~^1.783^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~512~^0.981^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~513~^1.623^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~514~^2.551^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~515~^4.281^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~516~^1.288^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~517~^1.175^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~518~^1.078^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~521~^0.179^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23391~^~605~^1.040^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~606~^6.925^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~610~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~611~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~612~^0.483^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~613~^3.842^6^0.098^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~614~^2.288^6^0.071^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~615~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~617~^6.965^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23391~^~618~^0.695^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23391~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23391~^~620~^0.051^6^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~625~^0.124^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~626~^0.609^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23391~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~628~^0.039^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~629~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23391~^~631~^0.012^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~645~^7.883^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~646~^0.813^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~652~^0.076^6^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~653~^0.195^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~662~^0.048^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~663~^0.897^6^0.029^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~665~^0.094^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~670~^0.085^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~672~^0.005^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~673~^0.560^6^0.013^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~674~^6.068^6^0.174^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~675~^0.516^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~687~^0.146^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~689~^0.020^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23391~^~693~^0.946^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~695~^0.094^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23391~^~851~^0.027^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23391~^~853~^0.020^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~312~^0.071^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~315~^0.003^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~404~^0.060^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~405~^0.212^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~406~^7.460^4^0.248^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~410~^0.320^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~415~^0.714^4^0.014^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~501~^0.339^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~502~^1.407^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~503~^1.401^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~504~^2.566^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~505~^2.858^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~506~^0.795^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~507~^0.298^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~508~^1.193^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~509~^1.116^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~510~^1.482^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~511~^1.999^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~512~^1.096^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~513~^1.787^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~514~^2.880^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~515~^4.884^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~516~^1.288^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~517~^1.249^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~518~^1.211^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~521~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2013~ -~23392~^~605~^0.504^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~606~^3.917^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~610~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~611~^0.009^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~612~^0.260^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~613~^2.275^4^0.037^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~614~^1.200^4^0.058^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~615~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~617~^4.094^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23392~^~618~^0.448^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23392~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23392~^~620~^0.053^4^0.010^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~625~^0.053^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~626~^0.341^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23392~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~628~^0.016^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23392~^~631~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~645~^4.590^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~646~^0.545^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~652~^0.043^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~653~^0.112^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~654~^0.004^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~662~^0.024^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~663~^0.430^4^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~665~^0.050^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~670~^0.037^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~672~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~673~^0.317^4^0.007^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~674~^3.664^4^0.124^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~675~^0.361^4^0.029^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~687~^0.086^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23392~^~693~^0.454^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23392~^~851~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23392~^~853~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~312~^0.070^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~315~^0.004^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~404~^0.066^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~405~^0.235^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~406~^7.110^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~410~^0.390^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~415~^0.728^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~501~^0.387^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~502~^1.652^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~503~^1.637^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~504~^3.051^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~505~^3.423^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~506~^0.937^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~507~^0.357^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~508~^1.399^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~509~^1.324^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~510~^1.726^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~511~^2.381^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~512~^1.339^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~513~^2.098^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~514~^3.423^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~515~^5.744^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~516~^1.518^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~517~^1.503^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~518~^1.443^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~521~^0.150^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23393~^~605~^0.375^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~606~^2.713^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~610~^0.007^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~611~^0.006^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~612~^0.173^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~613~^1.541^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~614~^0.883^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~615~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~617~^2.746^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23393~^~618~^0.347^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23393~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23393~^~620~^0.053^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~621~^0.000^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~625~^0.033^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~626~^0.212^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23393~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~628~^0.014^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~629~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23393~^~631~^0.012^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~645~^3.064^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~646~^0.442^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~652~^0.016^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~653~^0.080^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~654~^0.004^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~662~^0.018^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~663~^0.324^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~665~^0.033^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~670~^0.027^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~672~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~673~^0.194^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~674~^2.422^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~675~^0.286^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~687~^0.059^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23393~^~693~^0.342^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23393~^~851~^0.011^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23393~^~853~^0.015^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~312~^0.074^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~315~^0.004^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~404~^0.062^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~405~^0.221^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~406~^7.320^6^0.200^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~410~^0.348^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~415~^0.719^6^0.011^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~501~^0.356^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~502~^1.493^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~503~^1.482^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~504~^2.733^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~505~^3.055^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~506~^0.844^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~507~^0.319^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~508~^1.266^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~509~^1.186^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~510~^1.566^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~511~^2.131^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~512~^1.179^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~513~^1.896^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~514~^3.069^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~515~^5.181^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~516~^1.369^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~517~^1.334^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~518~^1.289^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~521~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23394~^~605~^0.453^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~606~^3.435^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~610~^0.009^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~611~^0.008^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~612~^0.225^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~613~^1.981^6^0.030^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~614~^1.073^6^0.047^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~615~^0.004^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~617~^3.555^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23394~^~618~^0.407^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23394~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23394~^~620~^0.053^6^0.008^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~621~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~625~^0.045^6^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~626~^0.290^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23394~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~628~^0.015^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~629~^0.003^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23394~^~631~^0.011^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~645~^3.980^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~646~^0.504^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~652~^0.032^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~653~^0.099^6^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~654~^0.004^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~662~^0.022^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~663~^0.388^6^0.012^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~665~^0.043^6^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~670~^0.033^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~672~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~673~^0.268^6^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~674~^3.167^6^0.100^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~675~^0.331^6^0.023^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~687~^0.075^6^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23394~^~693~^0.410^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~695~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23394~^~851~^0.012^6^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23394~^~853~^0.016^6^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~312~^0.038^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~315~^0.002^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~404~^0.049^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~405~^0.184^4^0.010^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~406~^6.286^4^0.239^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~410~^0.344^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~415~^0.543^4^0.024^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~501~^0.237^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~502~^0.991^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~503~^0.982^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~504~^1.805^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~505~^1.998^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~506~^0.569^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~507~^0.213^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~508~^0.843^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~509~^0.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~510~^1.055^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~511~^1.426^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~512~^0.778^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~513~^1.306^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~514~^2.041^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~515~^3.437^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~516~^1.042^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~517~^0.942^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~518~^0.863^0^^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23395~^~605~^0.796^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~606~^5.685^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~610~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~611~^0.011^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~612~^0.396^4^0.015^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~613~^3.184^4^0.113^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~614~^1.845^4^0.047^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~615~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~617~^5.696^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23395~^~618~^0.568^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23395~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23395~^~620~^0.047^4^0.006^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~625~^0.105^4^0.005^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~626~^0.504^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23395~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~628~^0.031^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~629~^0.002^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~ -~23395~^~631~^0.010^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~645~^6.455^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~646~^0.671^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~652~^0.067^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~653~^0.158^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~654~^0.005^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~662~^0.038^4^0.002^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~663~^0.680^4^0.019^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~665~^0.078^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~670~^0.071^4^0.003^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~672~^0.004^4^0.000^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~673~^0.466^4^0.020^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~674~^5.015^4^0.164^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~675~^0.420^4^0.026^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~687~^0.119^4^0.004^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~689~^0.017^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~ -~23395~^~693~^0.719^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~695~^0.078^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23395~^~851~^0.023^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23395~^~853~^0.017^4^0.001^~1~^~AR~^^^^^^^^^^~05/01/2013~ -~23397~^~312~^0.128^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~404~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~405~^0.142^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~406~^2.232^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~410~^0.399^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~415~^0.191^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~501~^0.351^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~502~^1.214^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~503~^1.394^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~504~^2.529^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~505~^2.654^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~506~^1.103^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~508~^1.303^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~509~^1.128^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~510~^1.480^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~511~^2.205^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~512~^1.208^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~513~^1.745^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~515~^4.675^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~516~^1.826^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~517~^1.076^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~518~^1.179^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~605~^0.069^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~606~^1.881^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23397~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~612~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~613~^1.096^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~614~^0.619^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~617~^2.115^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~618~^0.136^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~619~^0.063^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~620~^0.042^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~625~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~626~^0.204^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23397~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~631~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~645~^2.366^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~646~^0.341^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~653~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~662~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~663~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23397~^~670~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23397~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~673~^0.186^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~674~^2.065^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~675~^0.110^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~676~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23397~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23397~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23397~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~851~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~853~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23397~^~855~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~312~^0.145^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~404~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~405~^0.109^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~406~^3.142^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~410~^0.546^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~415~^0.331^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~501~^0.231^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~502~^0.800^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~503~^0.918^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~504~^1.667^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~505~^1.749^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~506~^0.727^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~508~^0.859^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~509~^0.743^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~510~^0.975^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~511~^1.453^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~512~^0.796^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~513~^1.150^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~515~^3.081^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~516~^1.203^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~517~^0.709^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~518~^0.777^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~605~^0.048^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~606~^1.347^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23398~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~612~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~613~^0.777^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~614~^0.451^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~617~^1.500^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~618~^0.095^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~619~^0.046^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~620~^0.030^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~625~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~626~^0.146^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~631~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~645~^1.680^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~646~^0.242^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~653~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~662~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~663~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23398~^~670~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~671~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~673~^0.133^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~674~^1.466^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~675~^0.077^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23398~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23398~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23398~^~693~^0.048^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23398~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~851~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~853~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23398~^~855~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~312~^0.068^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~404~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~405~^0.093^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~406~^2.450^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~415~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~501~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~502~^1.063^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~503~^1.220^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~504~^2.214^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~505~^2.323^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~506~^0.965^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~508~^1.141^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~509~^0.987^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~510~^1.295^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~511~^1.930^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~512~^1.057^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~513~^1.527^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~515~^4.093^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~516~^1.598^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~517~^0.942^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~518~^1.032^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~605~^0.285^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~606~^5.527^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~611~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~612~^0.395^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~613~^3.276^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~614~^1.630^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~617~^6.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~618~^0.301^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~619~^0.100^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~620~^0.029^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~625~^0.177^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~626~^0.776^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23399~^~628~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~631~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~645~^6.997^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~646~^0.509^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~653~^0.195^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~662~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~663~^0.223^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~670~^0.137^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~673~^0.714^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~674~^5.799^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~675~^0.164^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23399~^~693~^0.285^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23399~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~851~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23399~^~853~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23399~^~855~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~312~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~404~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~406~^3.578^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~410~^0.325^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~415~^0.237^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~501~^0.207^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~502~^0.715^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~503~^0.821^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~504~^1.489^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~505~^1.563^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~506~^0.649^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~508~^0.768^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~509~^0.664^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~510~^0.871^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~511~^1.299^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~512~^0.711^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~513~^1.027^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~515~^2.753^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~516~^1.075^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~517~^0.634^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~518~^0.694^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~605~^0.240^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~606~^4.351^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~612~^0.312^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~613~^2.659^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~614~^1.216^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~617~^4.705^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~618~^0.249^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~619~^0.076^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~620~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~625~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~626~^0.615^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23401~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~629~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~631~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~645~^5.484^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~646~^0.385^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~653~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~662~^0.043^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~663~^0.196^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~670~^0.117^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~673~^0.572^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~674~^4.509^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~675~^0.132^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~689~^0.008^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23401~^~693~^0.240^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23401~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~851~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23401~^~853~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23401~^~855~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~312~^0.113^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~404~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~405~^0.117^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~406~^3.485^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23402~^~415~^0.195^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~501~^0.362^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~502~^1.250^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~503~^1.435^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~504~^2.604^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~505~^2.732^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~506~^1.135^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~508~^1.342^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~509~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~510~^1.523^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~511~^2.270^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~512~^1.243^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~513~^1.796^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~515~^4.813^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~516~^1.880^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~517~^1.108^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~518~^1.213^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~605~^0.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~606~^2.220^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23402~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~612~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~613~^1.339^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~614~^0.646^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~617~^2.560^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~618~^0.187^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~619~^0.078^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~620~^0.057^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~625~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~626~^0.331^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23402~^~628~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~629~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~631~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~645~^2.976^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~646~^0.435^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~653~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~662~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~663~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23402~^~670~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~673~^0.308^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~674~^2.484^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~675~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23402~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23402~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23402~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23402~^~697~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~851~^0.073^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~853~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23402~^~855~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~312~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~404~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~405~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~406~^4.335^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~410~^0.268^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~415~^0.322^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~502~^0.758^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~503~^0.870^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~504~^1.579^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~505~^1.656^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~506~^0.688^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~508~^0.813^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~510~^0.923^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~511~^1.376^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~512~^0.754^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~513~^1.089^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~515~^2.918^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~516~^1.140^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~517~^0.672^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~518~^0.736^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~605~^0.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~606~^1.648^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23403~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~612~^0.099^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~613~^0.984^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~614~^0.497^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~617~^1.989^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~618~^0.117^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~619~^0.049^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~620~^0.032^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~625~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~626~^0.235^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23403~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~645~^2.279^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~646~^0.264^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~653~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~662~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~663~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23403~^~670~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~673~^0.216^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~674~^1.933^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~675~^0.085^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23403~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23403~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23403~^~693~^0.074^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23403~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~851~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23403~^~855~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~312~^0.075^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~404~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~405~^0.119^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~406~^2.878^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~410~^0.269^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~415~^0.187^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~501~^0.336^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~502~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~503~^1.334^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~504~^2.420^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~505~^2.540^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~506~^1.055^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~508~^1.247^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~509~^1.079^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~510~^1.416^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~511~^2.110^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~512~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~513~^1.669^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~515~^4.473^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~516~^1.747^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~517~^1.030^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~518~^1.128^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~605~^0.072^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~606~^1.756^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23404~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~612~^0.084^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~613~^0.949^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~614~^0.652^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~617~^1.811^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~618~^0.106^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~619~^0.051^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~625~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~626~^0.152^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23404~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~631~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~645~^1.996^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~646~^0.248^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~653~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~662~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~663~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23404~^~670~^0.024^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23404~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~673~^0.135^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~674~^1.757^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~675~^0.082^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23404~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23404~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23404~^~693~^0.072^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23404~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23404~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~851~^0.048^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23404~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23404~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23405~^~312~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~404~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~405~^0.142^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~406~^2.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23405~^~415~^0.147^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~501~^0.336^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~502~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~503~^1.334^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~504~^2.420^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~505~^2.540^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~506~^1.055^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~508~^1.247^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~509~^1.079^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~510~^1.416^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~511~^2.110^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~512~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~513~^1.669^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~515~^4.473^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~516~^1.747^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~517~^1.030^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~518~^1.128^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~605~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~606~^2.894^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~612~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~613~^1.562^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~614~^1.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~617~^2.877^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~618~^0.163^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~619~^0.078^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~620~^0.040^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~621~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~625~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~626~^0.242^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23405~^~628~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~631~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~645~^3.172^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~646~^0.382^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~653~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~662~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~663~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23405~^~670~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23405~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~673~^0.213^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~674~^2.789^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~675~^0.129^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23405~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23405~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23405~^~693~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23405~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~851~^0.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~853~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23405~^~855~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~312~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23406~^~404~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~405~^0.148^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~406~^4.177^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~410~^0.438^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~415~^0.305^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~501~^0.315^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~502~^1.090^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~503~^1.251^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~504~^2.270^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~505~^2.383^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~506~^0.990^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~508~^1.170^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~509~^1.012^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~510~^1.328^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~511~^1.980^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~512~^1.084^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~513~^1.566^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~515~^4.197^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~516~^1.639^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~517~^0.966^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~518~^1.058^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~605~^0.242^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~606~^4.523^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23406~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~612~^0.270^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~613~^2.365^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~614~^1.722^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~617~^3.606^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~618~^0.163^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~619~^0.088^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~620~^0.026^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~625~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~626~^0.317^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23406~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~631~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~645~^4.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~646~^0.363^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~653~^0.135^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~662~^0.043^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~663~^0.199^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23406~^~670~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~671~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~673~^0.274^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~674~^3.407^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~675~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23406~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23406~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23406~^~693~^0.242^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23406~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~851~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~852~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~853~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23406~^~855~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~312~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~404~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~405~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~406~^3.257^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~410~^0.313^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~415~^0.280^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~501~^0.207^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~502~^0.716^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~503~^0.822^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~504~^1.492^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~505~^1.565^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~506~^0.650^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~508~^0.769^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~509~^0.665^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~510~^0.873^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~511~^1.301^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~512~^0.712^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~513~^1.029^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~515~^2.757^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~516~^1.077^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~517~^0.635^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~518~^0.695^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~605~^0.207^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~606~^3.689^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23407~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~612~^0.203^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~613~^1.857^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~614~^1.490^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~617~^2.762^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~618~^0.108^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~619~^0.070^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~620~^0.020^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~625~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~626~^0.238^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23407~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~629~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~631~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~645~^3.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~646~^0.261^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~653~^0.116^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~662~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~663~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23407~^~670~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~673~^0.203^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~674~^2.590^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~675~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23407~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23407~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23407~^~693~^0.207^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23407~^~697~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~851~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23407~^~855~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~312~^0.063^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~404~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~405~^0.112^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~406~^3.983^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~410~^0.353^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~415~^0.337^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~501~^0.311^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~502~^1.075^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~503~^1.234^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~504~^2.239^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~505~^2.350^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~506~^0.976^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~508~^1.154^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~509~^0.998^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~510~^1.310^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~511~^1.952^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~512~^1.069^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~513~^1.544^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~515~^4.139^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~516~^1.616^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~517~^0.953^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~518~^1.043^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~605~^0.089^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~606~^1.623^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~612~^0.085^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~613~^0.975^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~614~^0.490^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~617~^1.618^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~618~^0.116^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~619~^0.053^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~620~^0.030^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~625~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~626~^0.171^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23408~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~631~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~645~^1.831^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~646~^0.269^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~653~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~662~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~663~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~670~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~673~^0.153^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~674~^1.547^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~675~^0.086^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23408~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23408~^~693~^0.089^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23408~^~697~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~851~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~853~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23408~^~855~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~312~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~404~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~406~^3.494^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~410~^0.265^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~415~^0.329^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~501~^0.211^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~502~^0.730^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~503~^0.838^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~504~^1.520^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~505~^1.595^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~506~^0.663^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~508~^0.783^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~509~^0.678^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~510~^0.889^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~511~^1.325^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~512~^0.726^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~513~^1.049^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~515~^2.810^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~516~^1.097^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~517~^0.647^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~518~^0.708^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~605~^0.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~606~^0.875^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~612~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~613~^0.535^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~614~^0.260^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~617~^0.887^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~618~^0.081^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~620~^0.026^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~621~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~625~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~626~^0.097^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23409~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~645~^1.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~646~^0.198^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~653~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~662~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~663~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~673~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~674~^0.853^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~675~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23409~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23409~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23409~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~851~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~853~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23409~^~855~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~312~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~404~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~405~^0.086^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~406~^3.467^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~410~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~415~^0.120^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~501~^0.322^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~502~^1.113^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~503~^1.278^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~504~^2.320^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~505~^2.434^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~506~^1.011^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~508~^1.195^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~509~^1.034^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~510~^1.357^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~511~^2.023^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~512~^1.108^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~513~^1.600^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~515~^4.288^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~516~^1.675^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~517~^0.987^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~518~^1.081^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~605~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~606~^2.862^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23410~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23410~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~612~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~613~^1.606^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~614~^0.971^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~617~^2.426^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~618~^0.118^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~619~^0.061^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~620~^0.034^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~625~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~626~^0.231^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~629~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~631~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~645~^2.712^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~646~^0.288^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~653~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~662~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~663~^0.091^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23410~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~671~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~673~^0.205^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~674~^2.335^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~675~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23410~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23410~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23410~^~693~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23410~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~851~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~853~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23410~^~855~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~312~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~404~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~405~^0.082^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~406~^4.730^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~410~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~415~^0.205^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~501~^0.215^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~502~^0.743^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~503~^0.853^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~504~^1.549^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~505~^1.625^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~506~^0.675^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~508~^0.798^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~509~^0.691^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~510~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~511~^1.350^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~512~^0.740^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~513~^1.068^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~515~^2.862^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~516~^1.118^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~517~^0.659^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~518~^0.722^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~605~^0.097^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~606~^2.299^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23411~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~612~^0.137^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~613~^1.309^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~614~^0.763^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~617~^1.895^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~618~^0.080^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~620~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~621~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~625~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~626~^0.181^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23411~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~629~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~645~^2.121^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~646~^0.179^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~653~^0.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~662~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~663~^0.076^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23411~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~673~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~674~^1.819^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~675~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23411~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23411~^~689~^0.008^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23411~^~693~^0.097^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23411~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~851~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23411~^~855~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~312~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~404~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~405~^0.192^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~406~^2.292^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~415~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~501~^0.348^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~502~^1.203^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~503~^1.381^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~504~^2.507^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~505~^2.630^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~506~^1.093^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~508~^1.292^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~509~^1.118^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~510~^1.466^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~511~^2.185^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~512~^1.197^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~513~^1.729^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~515~^4.633^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~516~^1.810^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~517~^1.066^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~518~^1.168^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~605~^0.174^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~606~^3.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~612~^0.182^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~613~^1.830^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~614~^0.969^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~617~^3.280^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~618~^0.245^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~619~^0.104^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~620~^0.052^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~625~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~626~^0.391^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23412~^~628~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~629~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~631~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~645~^3.761^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~646~^0.517^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~653~^0.112^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~662~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~663~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~670~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~672~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~673~^0.355^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~674~^3.141^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~675~^0.165^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23412~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23412~^~693~^0.174^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23412~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~851~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~852~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~853~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23412~^~855~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~404~^0.045^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~405~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~406~^3.328^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~410~^0.320^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~415~^0.276^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~502~^0.771^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~503~^0.886^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~504~^1.607^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~505~^1.687^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~506~^0.701^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~508~^0.828^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~509~^0.717^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~510~^0.940^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~511~^1.401^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~512~^0.767^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~513~^1.109^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~515~^2.971^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~516~^1.160^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~517~^0.684^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~518~^0.749^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~605~^0.147^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~606~^2.525^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~612~^0.149^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~613~^1.480^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~614~^0.784^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~617~^2.756^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~618~^0.157^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~619~^0.073^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~620~^0.029^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~625~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~626~^0.313^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23413~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~629~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~631~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~645~^3.144^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~646~^0.328^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~653~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~662~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~663~^0.119^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~670~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~673~^0.285^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~674~^2.638^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~675~^0.107^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23413~^~689~^0.013^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23413~^~693~^0.147^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23413~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~851~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~853~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23413~^~855~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~312~^0.648^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~315~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~404~^0.237^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~405~^0.983^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~406~^3.365^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~410~^1.231^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~415~^0.122^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~501~^0.328^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~502~^1.133^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~503~^1.301^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~504~^2.361^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~505~^2.478^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~506~^1.029^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~508~^1.217^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~509~^1.053^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~510~^1.381^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~511~^2.059^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~512~^1.127^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~513~^1.629^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~515~^4.364^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~516~^1.704^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~517~^1.004^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~518~^1.100^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~605~^0.124^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~606~^1.825^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23414~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~612~^0.049^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~613~^0.680^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~614~^0.999^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~617~^0.923^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~618~^0.504^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~619~^0.120^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~620~^0.189^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~621~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~626~^0.078^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23414~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~629~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~631~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~645~^1.025^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~646~^1.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~653~^0.073^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~654~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~662~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~663~^0.097^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23414~^~670~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~671~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~672~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~673~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~674~^0.826^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~675~^0.486^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23414~^~685~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23414~^~689~^0.051^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23414~^~693~^0.124^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23414~^~697~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~851~^0.114^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~852~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~853~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23414~^~855~^0.189^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~312~^0.373^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~315~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~404~^0.252^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~405~^0.682^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~406~^4.444^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~410~^1.787^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~415~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~502~^0.671^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~503~^0.770^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~504~^1.397^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~505~^1.466^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~506~^0.609^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~508~^0.720^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~509~^0.623^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~510~^0.818^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~511~^1.218^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~512~^0.667^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~513~^0.964^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~515~^2.583^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~516~^1.009^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~517~^0.595^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~518~^0.651^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~606~^0.857^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23415~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~612~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~613~^0.322^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~614~^0.471^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~617~^0.478^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~618~^0.259^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~620~^0.111^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~625~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~626~^0.041^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23415~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~629~^0.064^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~631~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~645~^0.533^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~646~^0.579^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~653~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~662~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~663~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23415~^~670~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~673~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~674~^0.437^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~675~^0.251^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23415~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23415~^~689~^0.027^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23415~^~693~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23415~^~697~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~851~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~853~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23415~^~855~^0.111^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~312~^0.111^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~404~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~405~^0.118^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~406~^2.698^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~410~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~415~^0.144^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~501~^0.327^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~502~^1.131^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~503~^1.298^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~504~^2.356^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~505~^2.473^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~506~^1.027^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~508~^1.214^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~509~^1.051^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~510~^1.378^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~511~^2.054^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~512~^1.125^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~513~^1.625^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~515~^4.355^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~516~^1.701^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~517~^1.002^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~518~^1.098^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~605~^0.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~606~^1.369^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23416~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~612~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~613~^0.775^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~614~^0.468^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~617~^1.597^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~618~^0.115^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~620~^0.040^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~621~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~625~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~626~^0.149^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23416~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~629~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~631~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~645~^1.781^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~646~^0.308^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~653~^0.049^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~662~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~663~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23416~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~673~^0.134^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~674~^1.559^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~675~^0.095^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23416~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23416~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23416~^~693~^0.054^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23416~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~851~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~853~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23416~^~855~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~312~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~315~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~404~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~405~^0.115^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~406~^3.286^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~410~^0.518^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~415~^0.259^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~501~^0.225^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~502~^0.777^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~503~^0.892^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~504~^1.619^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~505~^1.699^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~506~^0.706^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~508~^0.834^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~509~^0.722^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~510~^0.947^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~511~^1.412^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~512~^0.773^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~513~^1.117^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~515~^2.993^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~516~^1.169^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~517~^0.689^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~518~^0.754^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~606~^0.881^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~612~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~613~^0.517^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~614~^0.284^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~617~^1.136^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~618~^0.066^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~620~^0.017^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~625~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~626~^0.101^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23417~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~631~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~645~^1.257^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~646~^0.146^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~653~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~663~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~670~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~673~^0.101^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~674~^1.115^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~675~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23417~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23417~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23417~^~851~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~853~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23417~^~855~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~312~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~404~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~405~^0.072^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~406~^3.955^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~410~^0.282^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~415~^0.367^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~501~^0.232^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~502~^0.802^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~503~^0.921^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~504~^1.672^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~505~^1.754^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~506~^0.729^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~508~^0.862^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~509~^0.746^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~510~^0.978^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~511~^1.458^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~512~^0.798^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~513~^1.153^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~515~^3.090^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~516~^1.207^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~517~^0.711^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~518~^0.779^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~605~^0.082^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~606~^1.528^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23418~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~612~^0.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~613~^0.873^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~614~^0.511^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~617~^1.391^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~618~^0.101^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~619~^0.050^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~620~^0.024^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~625~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~626~^0.123^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23418~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~629~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~631~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~645~^1.541^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~646~^0.228^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~653~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~662~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~663~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23418~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23418~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~673~^0.107^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~674~^1.326^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~675~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23418~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23418~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23418~^~693~^0.082^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23418~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~851~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~853~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23418~^~855~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~312~^0.033^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~315~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~404~^0.046^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~405~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~406~^1.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~410~^0.209^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~415~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~502~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~503~^0.328^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~504~^0.596^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~505~^0.625^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~506~^0.260^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~508~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~509~^0.266^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~510~^0.349^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~511~^0.520^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~512~^0.285^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~513~^0.411^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~515~^1.102^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~516~^0.430^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~517~^0.254^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~518~^0.278^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~605~^2.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~606~^25.250^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~610~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~611~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~612~^1.320^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~613~^11.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~614~^11.720^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~615~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~617~^16.520^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~618~^0.810^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~619~^0.390^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~624~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~625~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~626~^1.072^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23419~^~628~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~631~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~645~^17.852^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~646~^1.270^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~653~^0.920^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~662~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~663~^1.970^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~669~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~670~^0.400^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~673~^1.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~674~^14.550^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~675~^0.380^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23419~^~693~^2.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~695~^0.030^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23419~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~851~^0.390^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23419~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23419~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~312~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~315~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~405~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~406~^1.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~410~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~415~^0.063^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~501~^0.073^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~502~^0.252^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~503~^0.290^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~504~^0.526^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~505~^0.552^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~506~^0.229^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~508~^0.271^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~509~^0.234^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~510~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~511~^0.458^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~512~^0.251^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~513~^0.363^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~515~^0.972^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~516~^0.379^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~517~^0.224^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~518~^0.245^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~605~^2.133^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~606~^28.500^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~610~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~611~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~612~^1.370^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~613~^11.410^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~614~^14.420^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~615~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~617~^16.750^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~618~^0.818^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~619~^0.450^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~624~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~625~^0.150^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~626~^0.933^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23420~^~628~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~631~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~645~^17.893^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~646~^1.338^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~653~^1.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~662~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~663~^2.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~669~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~670~^0.398^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~673~^0.880^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~674~^14.710^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~675~^0.380^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23420~^~693~^2.093^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23420~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~851~^0.450^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23420~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23420~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~312~^0.563^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~315~^0.155^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~404~^0.403^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~405~^2.945^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~406~^3.903^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~410~^3.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~415~^0.254^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~501~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~502~^0.988^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~503~^1.134^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~504~^2.058^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~505~^2.160^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~506~^0.897^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~508~^1.061^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~509~^0.918^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~510~^1.204^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~511~^1.794^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~512~^0.983^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~513~^1.420^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~515~^3.804^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~516~^1.486^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~517~^0.876^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~518~^0.959^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~605~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~606~^1.173^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~612~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~613~^0.552^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~614~^0.486^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~615~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~617~^0.564^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~618~^0.392^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~619~^0.087^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~620~^0.370^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~621~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~624~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~625~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~626~^0.051^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23421~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~629~^0.153^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~631~^0.103^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~645~^0.650^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~646~^1.238^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~653~^0.045^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~654~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~662~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~663~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~670~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~671~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~672~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~673~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~674~^0.534^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~675~^0.380^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~685~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23421~^~689~^0.077^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23421~^~693~^0.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23421~^~697~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~851~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~852~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~853~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23421~^~855~^0.370^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~312~^0.093^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~404~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~406~^3.229^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~410~^0.359^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~415~^0.319^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~501~^0.288^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~502~^0.996^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~503~^1.144^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~504~^2.076^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~505~^2.178^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~506~^0.905^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~508~^1.070^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~509~^0.926^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~510~^1.214^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~511~^1.810^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~512~^0.991^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~513~^1.432^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~515~^3.837^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~516~^1.498^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~517~^0.883^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~518~^0.967^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~606~^2.299^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~612~^0.114^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~613~^1.337^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~614~^0.749^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~617~^2.135^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~618~^0.157^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~619~^0.070^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~620~^0.032^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~626~^0.181^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23422~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~629~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~631~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~645~^2.353^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~646~^0.337^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~653~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~662~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~663~^0.103^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23422~^~670~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23422~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~673~^0.155^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~674~^2.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~675~^0.107^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23422~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23422~^~689~^0.014^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23422~^~693~^0.128^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23422~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~851~^0.067^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~853~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23422~^~855~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~312~^0.409^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~315~^0.109^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~404~^0.559^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~405~^2.116^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~406~^4.878^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~410~^3.974^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~415~^0.316^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~501~^0.164^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~502~^0.568^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~503~^0.652^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~504~^1.183^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~505~^1.242^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~506~^0.516^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~508~^0.610^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~509~^0.528^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~510~^0.692^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~511~^1.032^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~512~^0.565^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~513~^0.816^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~515~^2.187^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~516~^0.854^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~517~^0.503^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~518~^0.551^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~606~^0.616^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23423~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23423~^~612~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~613~^0.288^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~614~^0.258^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~617~^0.299^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~618~^0.197^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~619~^0.043^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~620~^0.171^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~621~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~624~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~629~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23423~^~631~^0.051^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~645~^0.345^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~646~^0.606^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~653~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~654~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~663~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~669~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~670~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~671~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~673~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~674~^0.281^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~675~^0.189^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23423~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23423~^~689~^0.038^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23423~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23423~^~697~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~851~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~852~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~853~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23423~^~855~^0.171^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~312~^5.730^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~315~^328.000^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~404~^0.376^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~405~^3.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~406~^13.800^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~410~^9.800^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~415~^0.452^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~501~^0.244^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~502~^0.844^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~503~^0.969^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~504~^1.758^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~505~^1.845^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~506~^0.766^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~508~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~509~^0.784^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~510~^1.028^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~511~^1.533^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~512~^0.839^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~513~^1.213^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~515~^3.249^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~516~^1.269^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~517~^0.748^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~518~^0.819^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~605~^0.090^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~606~^1.392^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23424~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23424~^~612~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~613~^0.394^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~614~^0.902^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~617~^0.465^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~618~^0.153^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~619~^0.061^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~620~^0.180^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~621~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~626~^0.056^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23424~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~629~^0.102^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~631~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~645~^0.533^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~646~^0.824^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~653~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~654~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~662~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~663~^0.071^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23424~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~672~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~673~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~674~^0.394^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~675~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23424~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23424~^~689~^0.096^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23424~^~693~^0.090^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23424~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~853~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23424~^~855~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~312~^5.300^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~315~^299.000^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~404~^0.371^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~405~^2.347^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~406~^15.400^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~410~^10.300^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~415~^0.428^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~501~^0.215^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~502~^0.742^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~503~^0.852^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~504~^1.547^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~505~^1.623^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~506~^0.674^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~508~^0.797^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~509~^0.690^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~510~^0.905^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~511~^1.348^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~512~^0.739^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~513~^1.067^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~515~^2.859^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~516~^1.117^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~517~^0.658^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~518~^0.721^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~605~^0.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~606~^1.185^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~612~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~613~^0.337^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~614~^0.767^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~617~^0.406^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~618~^0.158^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~619~^0.062^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~620~^0.190^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~621~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~626~^0.047^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23425~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~629~^0.112^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~631~^0.144^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~645~^0.464^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~646~^0.880^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~653~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~654~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~662~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~663~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~670~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~672~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~673~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~674~^0.345^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~675~^0.140^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23425~^~689~^0.100^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23425~^~693~^0.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23425~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~851~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~853~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23425~^~855~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~312~^0.108^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~315~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~404~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~405~^0.096^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~406~^1.759^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~410~^0.287^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~415~^0.160^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~501~^0.254^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~502~^0.877^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~503~^1.007^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~504~^1.827^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~505~^1.917^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~506~^0.796^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~508~^0.941^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~509~^0.815^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~510~^1.069^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~511~^1.593^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~512~^0.872^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~513~^1.260^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~515~^3.376^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~516~^1.319^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~517~^0.777^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~518~^0.851^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~605~^0.078^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~606~^1.154^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23426~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~612~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~613~^0.514^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~614~^0.536^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~617~^0.815^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~618~^0.108^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~619~^0.063^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~620~^0.024^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~621~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~626~^0.066^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23426~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~629~^0.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~645~^0.897^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~646~^0.246^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~653~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~662~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~663~^0.064^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23426~^~670~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~671~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~673~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~674~^0.751^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~675~^0.092^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23426~^~685~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23426~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23426~^~693~^0.078^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23426~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~851~^0.062^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~853~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23426~^~855~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~312~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~404~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~405~^0.107^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~406~^2.908^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~410~^0.532^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~415~^0.194^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~502~^0.769^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~503~^0.883^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~504~^1.602^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~505~^1.681^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~506~^0.698^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~508~^0.825^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~509~^0.714^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~510~^0.937^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~511~^1.396^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~512~^0.765^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~513~^1.105^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~515~^2.960^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~516~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~517~^0.681^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~518~^0.746^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~605~^0.114^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~606~^1.650^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23427~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~612~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~613~^0.728^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~614~^0.772^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~617~^1.112^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~618~^0.103^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~619~^0.063^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~620~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~625~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~626~^0.090^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23427~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~629~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~631~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~645~^1.219^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~646~^0.226^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~653~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~662~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~663~^0.095^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23427~^~670~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23427~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~673~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~674~^1.017^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~675~^0.084^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23427~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23427~^~689~^0.006^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23427~^~693~^0.114^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23427~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~851~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~853~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23427~^~855~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~312~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~315~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~404~^0.023^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~405~^0.148^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~406~^1.647^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23428~^~415~^0.099^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~501~^0.313^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~502~^1.082^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~503~^1.242^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~504~^2.254^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~505~^2.365^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~506~^0.982^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~508~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~509~^1.005^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~510~^1.318^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~511~^1.965^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~512~^1.076^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~513~^1.554^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~515~^4.165^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~516~^1.627^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~517~^0.959^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~518~^1.050^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~605~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~606~^2.925^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23428~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~612~^0.157^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~613~^1.562^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~614~^1.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~617~^2.728^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~618~^0.148^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~619~^0.077^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~620~^0.035^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~625~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~626~^0.237^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23428~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~629~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~631~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~645~^3.022^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~646~^0.348^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~653~^0.105^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~662~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~663~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23428~^~670~^0.033^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~671~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~673~^0.207^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~674~^2.641^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~675~^0.115^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23428~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23428~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23428~^~693~^0.117^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23428~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~851~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~852~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~853~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23428~^~855~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~312~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~404~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~405~^0.121^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~406~^2.361^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~410~^0.864^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~415~^0.156^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~501~^0.229^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~502~^0.791^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~503~^0.908^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~504~^1.647^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~505~^1.729^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~506~^0.718^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~508~^0.849^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~509~^0.735^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~510~^0.964^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~511~^1.436^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~512~^0.787^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~513~^1.136^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~515~^3.045^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~516~^1.189^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~517~^0.701^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~518~^0.767^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~606~^2.589^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~612~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~613~^1.377^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~614~^0.961^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~617~^2.407^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~618~^0.126^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~619~^0.059^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~620~^0.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~621~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~625~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~626~^0.201^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23429~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~631~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~645~^2.648^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~646~^0.268^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~653~^0.089^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~663~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~670~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~673~^0.201^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~674~^2.329^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~675~^0.091^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23429~^~693~^0.079^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23429~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~851~^0.059^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23429~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23429~^~855~^0.022^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~312~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~315~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~404~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~405~^0.117^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~406~^5.053^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~410~^0.389^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~415~^0.266^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~501~^0.285^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~502~^0.986^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~503~^1.132^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~504~^2.055^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~505~^2.156^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~506~^0.896^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~508~^1.059^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~509~^0.916^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~510~^1.202^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~511~^1.791^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~512~^0.981^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~513~^1.417^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~515~^3.798^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~516~^1.483^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~517~^0.874^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~518~^0.957^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~606~^3.585^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23430~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~612~^0.190^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~613~^1.866^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~614~^1.372^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~617~^2.694^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~618~^0.108^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~619~^0.053^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~620~^0.021^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~621~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~625~^0.035^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~626~^0.231^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23430~^~628~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~629~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~645~^2.975^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~646~^0.236^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~653~^0.128^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~662~^0.038^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~663~^0.145^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23430~^~670~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~671~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~673~^0.193^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~674~^2.549^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~675~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23430~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23430~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23430~^~693~^0.183^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23430~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~851~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23430~^~855~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~312~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~406~^4.306^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~410~^0.293^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~415~^0.255^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~501~^0.223^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~502~^0.772^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~503~^0.886^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~504~^1.608^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~505~^1.687^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~506~^0.701^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~508~^0.828^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~509~^0.717^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~510~^0.941^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~511~^1.402^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~512~^0.768^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~513~^1.109^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~515~^2.972^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~516~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~517~^0.684^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~518~^0.749^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~605~^0.123^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~606~^2.453^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23431~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~612~^0.133^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~613~^1.329^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~614~^0.886^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~617~^2.052^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~618~^0.087^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~619~^0.041^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~620~^0.018^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~625~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~626~^0.185^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23431~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~629~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~631~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~645~^2.279^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~646~^0.191^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~653~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~662~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~663~^0.096^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23431~^~670~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~673~^0.158^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~674~^1.957^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~675~^0.061^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23431~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23431~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23431~^~693~^0.123^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23431~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~851~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~852~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23431~^~855~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~312~^0.145^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~404~^0.081^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~405~^0.199^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~406~^3.922^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~410~^0.777^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~415~^0.276^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~501~^0.316^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~502~^1.092^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~503~^1.254^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~504~^2.276^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~505~^2.389^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~506~^0.992^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~508~^1.173^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~509~^1.015^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~510~^1.332^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~511~^1.985^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~512~^1.087^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~513~^1.570^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~515~^4.207^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~516~^1.643^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~517~^0.968^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~518~^1.061^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~605~^0.156^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~606~^2.609^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23432~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~612~^0.118^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~613~^1.441^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~614~^0.936^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~617~^2.400^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~618~^0.183^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~619~^0.088^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~620~^0.037^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~625~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~626~^0.183^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23432~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~631~^0.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~645~^2.622^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~646~^0.398^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~653~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~662~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~663~^0.127^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23432~^~670~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23432~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~673~^0.154^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~674~^2.273^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~675~^0.143^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23432~^~685~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23432~^~689~^0.016^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23432~^~693~^0.156^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23432~^~697~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~851~^0.082^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~853~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23432~^~855~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~312~^0.078^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~315~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23433~^~404~^0.053^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~405~^0.086^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~406~^4.842^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~410~^0.410^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~415~^0.323^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~501~^0.299^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~502~^1.033^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~503~^1.186^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~504~^2.153^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~505~^2.259^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~506~^0.938^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~508~^1.109^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~509~^0.960^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~510~^1.259^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~511~^1.877^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~512~^1.028^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~513~^1.485^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~515~^3.979^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~516~^1.554^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~517~^0.916^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~518~^1.003^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~605~^0.205^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~606~^3.918^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23433~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~611~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~612~^0.272^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~613~^2.296^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~614~^1.202^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~615~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~617~^4.102^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~618~^0.164^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~619~^0.077^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~625~^0.109^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~626~^0.467^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23433~^~628~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~631~^0.024^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~645~^4.703^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~646~^0.338^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~653~^0.125^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~662~^0.042^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~663~^0.163^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23433~^~670~^0.075^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~671~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~673~^0.425^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~674~^3.940^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~675~^0.089^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23433~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23433~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23433~^~693~^0.205^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23433~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~851~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~852~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23433~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~312~^0.055^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~315~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~404~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~405~^0.086^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~406~^4.243^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~410~^0.303^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~415~^0.316^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~501~^0.219^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~502~^0.758^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~503~^0.870^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~504~^1.579^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~505~^1.657^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~506~^0.688^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~508~^0.814^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~510~^0.924^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~511~^1.377^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~512~^0.754^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~513~^1.089^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~515~^2.919^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~516~^1.140^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~517~^0.672^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~518~^0.736^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~605~^0.125^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~606~^2.488^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23434~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~612~^0.168^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~613~^1.438^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~614~^0.789^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~617~^2.476^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~618~^0.110^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~620~^0.020^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~625~^0.056^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~626~^0.268^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23434~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~631~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~645~^2.814^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~646~^0.243^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~653~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~662~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~663~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23434~^~670~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~673~^0.243^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~674~^2.376^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~675~^0.066^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23434~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23434~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23434~^~693~^0.125^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23434~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~851~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23434~^~855~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~312~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~404~^0.063^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~405~^0.034^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~406~^1.270^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~410~^0.092^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~415~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~501~^0.068^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~502~^0.235^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~503~^0.270^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~504~^0.490^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~505~^0.515^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~506~^0.214^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~508~^0.253^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~509~^0.219^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~510~^0.287^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~511~^0.428^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~512~^0.234^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~513~^0.338^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~515~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~516~^0.354^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~517~^0.209^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~518~^0.229^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~605~^2.698^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~606~^30.256^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~610~^0.026^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~611~^0.060^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~612~^1.940^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~613~^14.940^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~614~^12.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~615~^0.080^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~617~^22.850^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~618~^1.156^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~619~^0.510^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~624~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~625~^0.440^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~626~^2.003^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23435~^~628~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~631~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~645~^25.342^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~646~^1.702^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~653~^1.030^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~662~^0.073^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~663~^2.590^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~669~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~670~^0.690^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~673~^1.930^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~674~^20.260^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~675~^0.430^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23435~^~693~^2.663^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~695~^0.036^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23435~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~851~^0.510^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23435~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23435~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~312~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~315~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~404~^0.132^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~405~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~406~^0.740^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~410~^0.092^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~415~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~501~^0.089^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~502~^0.308^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~503~^0.353^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~504~^0.641^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~505~^0.673^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~506~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~508~^0.330^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~509~^0.286^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~510~^0.375^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~511~^0.559^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~512~^0.306^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~513~^0.442^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~515~^1.185^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~516~^0.463^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~517~^0.273^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~518~^0.299^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~605~^2.712^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~606~^31.514^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~610~^0.029^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~611~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~612~^1.970^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~613~^14.940^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~614~^13.300^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~615~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~617~^22.340^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~618~^1.143^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~619~^0.510^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~620~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~624~^0.047^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~625~^0.400^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~626~^1.922^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23436~^~628~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~631~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~645~^24.702^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~646~^1.680^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~653~^1.080^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~662~^0.082^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~663~^2.590^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~669~^0.040^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~670~^0.664^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~673~^1.840^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~674~^19.750^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~675~^0.440^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23436~^~693~^2.672^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23436~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~851~^0.510^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23436~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23436~^~855~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~312~^5.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~404~^0.077^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~405~^0.114^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~406~^1.600^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~410~^0.500^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~415~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~501~^0.131^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~502~^0.454^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~503~^0.521^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~504~^0.945^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~505~^0.992^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~506~^0.412^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~508~^0.487^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~509~^0.422^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~510~^0.553^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~511~^0.824^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~512~^0.451^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~513~^0.652^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~515~^1.747^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~516~^0.682^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~517~^0.402^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~518~^0.440^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~605~^0.586^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~606~^12.473^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~610~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~611~^0.045^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~612~^0.738^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~613~^5.872^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~614~^5.364^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~615~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~617~^7.251^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~618~^0.323^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~619~^0.137^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~620~^0.048^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~625~^0.065^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~626~^0.494^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23437~^~628~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~631~^0.052^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~645~^7.837^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~646~^0.631^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~653~^0.402^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~662~^0.113^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~663~^0.473^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~670~^0.098^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~673~^0.381^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~674~^6.778^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~675~^0.226^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23437~^~693~^0.586^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23437~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23437~^~851~^0.137^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~852~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~853~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23437~^~855~^0.048^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~312~^5.100^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~404~^0.087^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~405~^0.122^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~406~^2.000^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~410~^0.600^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~415~^0.041^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~501~^0.121^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~502~^0.417^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~503~^0.479^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~504~^0.868^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~505~^0.911^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~506~^0.379^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~508~^0.448^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~509~^0.387^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~510~^0.508^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~511~^0.757^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~512~^0.415^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~513~^0.599^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~515~^1.605^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~516~^0.627^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~517~^0.369^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~518~^0.405^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~605~^0.595^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~606~^12.294^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~610~^0.013^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~611~^0.054^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~612~^0.739^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~613~^5.913^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~614~^5.137^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~615~^0.039^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~617~^7.435^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~618~^0.358^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~619~^0.126^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~620~^0.044^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~625~^0.079^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~626~^0.526^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23438~^~628~^0.032^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~629~^0.018^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~631~^0.049^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~645~^8.072^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~646~^0.646^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~653~^0.399^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~662~^0.115^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~663~^0.480^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~670~^0.130^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~672~^0.014^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~673~^0.411^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~674~^6.956^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~675~^0.228^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~689~^0.019^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23438~^~693~^0.595^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23438~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~851~^0.126^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23438~^~853~^0.019^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23438~^~855~^0.044^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~312~^0.180^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~315~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~404~^0.058^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~405~^0.210^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~406~^5.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~410~^0.820^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~415~^0.230^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~501~^0.308^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~502~^1.064^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~503~^1.221^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~504~^2.216^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~505~^2.326^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~506~^0.966^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~508~^1.142^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~509~^0.988^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~510~^1.297^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~511~^1.932^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~512~^1.058^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~513~^1.529^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~515~^4.096^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~516~^1.600^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~517~^0.943^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~518~^1.033^0^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~605~^0.175^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~606~^3.596^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23439~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~612~^0.161^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~613~^1.713^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~614~^1.569^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~615~^0.011^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~617~^2.466^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~618~^0.146^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~619~^0.099^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~620~^0.037^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~625~^0.016^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~626~^0.165^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~ -~23439~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~629~^0.028^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~631~^0.031^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~645~^2.661^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~646~^0.370^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~653~^0.131^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~662~^0.036^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~663~^0.139^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23439~^~670~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~673~^0.129^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~674~^2.327^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~675~^0.121^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23439~^~685~^0.005^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~ -~23439~^~689~^0.012^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~ -~23439~^~693~^0.175^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~ -~23439~^~697~^0.004^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~851~^0.094^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23439~^~855~^0.037^1^^~1~^~A~^^^^^^^^^^~02/01/2014~ -~23440~^~312~^0.058^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~404~^0.057^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~405~^0.117^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~406~^2.293^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~410~^0.831^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~415~^0.152^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~501~^0.223^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~502~^0.770^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~503~^0.884^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~504~^1.605^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~505~^1.684^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~506~^0.700^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~508~^0.827^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~509~^0.716^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~510~^0.939^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~511~^1.399^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~512~^0.766^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~513~^1.107^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~515~^2.966^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~516~^1.158^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~517~^0.683^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~518~^0.748^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~605~^0.190^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~606~^3.815^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~612~^0.217^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~613~^1.952^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~614~^1.484^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~617~^3.252^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~618~^0.169^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~619~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~621~^0.012^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~624~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~625~^0.049^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~626~^0.274^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~629~^0.015^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~631~^0.024^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~645~^3.583^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~646~^0.328^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~653~^0.131^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~662~^0.003^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~663~^0.185^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~670~^0.061^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~673~^0.271^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~674~^3.067^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~675~^0.106^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~693~^0.189^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~02/01/2014~ -~23440~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~851~^0.078^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23440~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~02/01/2014~ -~23441~^~312~^0.104^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~315~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~404~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~405~^0.119^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~406~^4.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~410~^0.575^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~415~^0.267^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~501~^0.222^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~502~^0.767^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~503~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~504~^1.598^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~505~^1.677^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~506~^0.697^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~508~^0.824^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~509~^0.713^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~510~^0.935^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~511~^1.394^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~512~^0.763^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~513~^1.103^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~515~^2.954^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~516~^1.154^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~517~^0.680^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~518~^0.745^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~605~^0.121^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~606~^2.446^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23441~^~610~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~612~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~613~^1.127^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~614~^1.107^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~617~^1.632^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~618~^0.098^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~619~^0.062^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~620~^0.026^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~625~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~626~^0.108^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23441~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~629~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~645~^1.762^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~646~^0.251^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~653~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~654~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~662~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~663~^0.096^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23441~^~670~^0.017^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~672~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~673~^0.083^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~674~^1.536^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~675~^0.081^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23441~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23441~^~689~^0.009^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23441~^~693~^0.121^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23441~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~851~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~853~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23441~^~855~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~312~^0.163^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~404~^0.059^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~405~^0.227^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~406~^2.580^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~410~^0.709^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~415~^0.072^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~502~^0.663^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~503~^0.761^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~504~^1.381^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~505~^1.450^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~506~^0.602^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~508~^0.712^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~509~^0.616^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~510~^0.808^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~511~^1.204^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~512~^0.660^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~513~^0.953^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~515~^2.553^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~516~^0.997^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~517~^0.588^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~518~^0.644^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~605~^0.358^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~606~^7.019^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~612~^0.459^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~613~^3.445^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~614~^2.767^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~615~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~617~^5.989^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~618~^0.398^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~619~^0.147^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~620~^0.045^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~625~^0.084^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~626~^0.522^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23442~^~628~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~629~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~631~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~645~^6.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~646~^0.715^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~653~^0.310^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~662~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~663~^0.273^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~670~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~673~^0.437^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~674~^5.716^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~675~^0.299^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23442~^~689~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23442~^~693~^0.358^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23442~^~697~^0.009^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~851~^0.147^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~852~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~853~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23442~^~855~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~315~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~404~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~405~^0.212^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~406~^2.996^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~410~^0.434^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~415~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~501~^0.186^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~502~^0.644^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~503~^0.739^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~504~^1.341^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~505~^1.407^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~506~^0.585^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~508~^0.691^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~509~^0.598^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~510~^0.784^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~511~^1.169^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~512~^0.640^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~513~^0.925^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~515~^2.478^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~516~^0.968^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~517~^0.570^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~518~^0.625^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~605~^0.785^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~606~^6.689^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~611~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~612~^0.438^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~613~^3.333^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~614~^2.573^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~615~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~617~^6.032^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~618~^0.382^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~619~^0.134^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~620~^0.031^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~625~^0.079^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~626~^0.518^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23443~^~628~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~631~^0.042^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~645~^6.656^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~646~^0.638^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~653~^0.307^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~662~^0.087^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~663~^0.698^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~670~^0.109^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~673~^0.430^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~674~^5.334^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~675~^0.273^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~689~^0.015^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23443~^~693~^0.785^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23443~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~851~^0.134^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23443~^~853~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23443~^~855~^0.031^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~312~^0.106^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~315~^6.066^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~404~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~405~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~406~^2.616^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~410~^0.226^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~415~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~501~^0.199^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~502~^0.688^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~503~^0.790^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~504~^1.433^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~505~^1.504^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~506~^0.625^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~508~^0.739^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~509~^0.639^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~510~^0.839^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~511~^1.250^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~512~^0.684^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~513~^0.989^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~515~^2.649^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~516~^1.035^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~517~^0.610^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~518~^0.668^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~605~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~606~^0.922^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~612~^0.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~613~^0.408^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~614~^0.407^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~617~^0.650^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~618~^0.069^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~619~^0.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~626~^0.056^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23444~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~629~^0.012^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~631~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~645~^0.718^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~646~^0.159^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~653~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~663~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~670~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~673~^0.056^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~674~^0.580^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~675~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~676~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23444~^~693~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23444~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~851~^0.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23444~^~853~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23444~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~312~^0.094^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~315~^4.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~404~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~405~^0.191^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~406~^7.943^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~410~^0.741^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~415~^0.035^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~501~^0.156^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~502~^0.538^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~503~^0.618^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~504~^1.121^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~505~^1.176^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~506~^0.489^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~508~^0.578^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~509~^0.500^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~510~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~511~^0.977^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~512~^0.535^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~513~^0.773^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~515~^2.072^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~516~^0.809^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~517~^0.477^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~518~^0.522^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~605~^0.101^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23445~^~606~^1.020^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23445~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23445~^~610~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~612~^0.049^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~613~^0.449^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~614~^0.450^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~617~^0.703^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~618~^0.067^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~619~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~620~^0.027^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~625~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~626~^0.055^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~ -~23445~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~629~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~23445~^~631~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~645~^0.770^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23445~^~646~^0.170^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23445~^~653~^0.055^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~654~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~662~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~663~^0.085^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23445~^~670~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~673~^0.039^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~674~^0.617^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~675~^0.057^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23445~^~685~^0.001^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~23445~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23445~^~693~^0.101^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23445~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~23445~^~697~^0.002^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~23445~^~851~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23445~^~855~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2014~ -~23446~^~312~^0.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~404~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~405~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~406~^2.132^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~410~^0.377^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~415~^0.180^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~501~^0.328^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~502~^1.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~503~^1.301^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~504~^2.361^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~505~^2.478^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~506~^1.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~508~^1.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~509~^1.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~510~^1.381^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~511~^2.059^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~512~^1.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~513~^1.629^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~515~^4.364^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~516~^1.704^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~517~^1.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~518~^1.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~605~^0.242^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~606~^4.117^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~612~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~613~^1.962^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~614~^1.778^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~617~^3.344^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~618~^0.194^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~619~^0.095^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~625~^0.043^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~626~^0.266^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~628~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~629~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~630~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~631~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~645~^3.670^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~646~^0.424^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~653~^0.143^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~662~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~663~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~669~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~670~^0.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~672~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~673~^0.244^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~674~^3.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~675~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~676~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~693~^0.239^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23446~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~851~^0.093^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~853~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23446~^~855~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~312~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~315~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~404~^0.051^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~405~^0.105^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~406~^3.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~410~^0.521^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~415~^0.315^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~501~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~502~^0.771^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~503~^0.885^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~504~^1.606^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~505~^1.686^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~506~^0.700^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~508~^0.828^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~509~^0.716^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~510~^0.940^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~511~^1.401^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~512~^0.767^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~513~^1.108^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~515~^2.969^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~516~^1.160^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~517~^0.683^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~518~^0.749^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~605~^0.190^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~606~^3.017^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~612~^0.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~613~^1.529^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~614~^1.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~617~^2.600^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~618~^0.149^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~619~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~625~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~626~^0.232^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~631~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~645~^2.884^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~646~^0.318^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~653~^0.102^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~662~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~663~^0.171^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~673~^0.215^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~674~^2.428^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~693~^0.188^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23447~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~851~^0.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23447~^~855~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~312~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~315~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~404~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~405~^0.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~406~^1.974^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~410~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~415~^0.084^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~501~^0.211^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~502~^0.729^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~503~^0.837^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~504~^1.519^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~505~^1.594^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~506~^0.662^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~508~^0.783^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~509~^0.678^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~510~^0.889^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~511~^1.325^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~512~^0.726^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~513~^1.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~515~^2.808^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~516~^1.097^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~517~^0.646^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~518~^0.708^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~605~^1.258^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~606~^15.494^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~610~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~611~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~612~^1.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~613~^7.977^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~614~^5.862^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~615~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~617~^12.804^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~618~^0.645^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~619~^0.265^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~620~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~624~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~625~^0.283^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~626~^1.270^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~628~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~629~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~631~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~645~^14.391^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~646~^0.990^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~653~^0.531^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~662~^0.066^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~663~^1.177^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~669~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~670~^0.360^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~673~^1.204^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~674~^11.627^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~675~^0.271^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~693~^1.243^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~695~^0.014^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23448~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~851~^0.265^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23448~^~855~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~312~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~315~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~404~^0.056^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~405~^0.076^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~406~^2.683^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~410~^0.255^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~415~^0.177^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~501~^0.166^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~502~^0.572^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~503~^0.657^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~504~^1.193^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~505~^1.252^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~506~^0.520^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~508~^0.615^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~509~^0.532^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~510~^0.698^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~511~^1.040^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~512~^0.570^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~513~^0.823^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~515~^2.205^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~516~^0.861^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~517~^0.507^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~518~^0.556^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~605~^0.977^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~606~^12.915^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~610~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~611~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~612~^0.777^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~613~^6.229^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~614~^5.369^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~615~^0.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~617~^9.760^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~618~^0.499^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~619~^0.211^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~620~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~624~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~625~^0.193^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~626~^0.910^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~628~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~629~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~645~^10.892^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~646~^0.766^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~653~^0.446^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~662~^0.052^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~663~^0.911^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~669~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~670~^0.261^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~673~^0.858^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~674~^8.848^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~675~^0.225^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~693~^0.963^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23449~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~851~^0.211^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~852~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23449~^~855~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~312~^0.104^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~404~^0.020^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~405~^0.109^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~406~^3.282^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~410~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~415~^0.182^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~501~^0.335^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~502~^1.156^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~503~^1.328^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~504~^2.409^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~505~^2.528^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~506~^1.050^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~508~^1.242^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~509~^1.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~510~^1.410^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~511~^2.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~512~^1.151^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~513~^1.662^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~515~^4.454^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~516~^1.739^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~517~^1.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~518~^1.123^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~605~^0.338^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~606~^4.796^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~611~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~612~^0.305^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~613~^2.589^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~614~^1.701^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~617~^4.425^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~618~^0.276^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~619~^0.117^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~620~^0.052^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~624~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~625~^0.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~626~^0.485^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~628~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~629~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~631~^0.045^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~645~^5.031^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~646~^0.551^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~653~^0.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~662~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~663~^0.307^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~669~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~670~^0.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~673~^0.457^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~674~^4.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~675~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~689~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~693~^0.334^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23450~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~851~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~853~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23450~^~855~^0.052^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~312~^0.095^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~404~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~405~^0.050^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~406~^4.089^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~410~^0.256^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~415~^0.303^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~501~^0.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~502~^0.726^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~503~^0.834^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~504~^1.513^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~505~^1.587^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~506~^0.659^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~508~^0.780^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~509~^0.675^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~510~^0.885^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~511~^1.319^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~512~^0.722^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~513~^1.043^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~515~^2.796^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~516~^1.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~517~^0.644^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~518~^0.705^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~605~^0.251^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~606~^3.685^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~612~^0.223^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~613~^1.917^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~614~^1.392^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~617~^3.346^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~618~^0.185^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~619~^0.081^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~620~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~625~^0.061^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~626~^0.342^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~628~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~629~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~631~^0.028^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~645~^3.768^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~646~^0.359^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23451~^~653~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23451~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~312~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~315~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~404~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~405~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~406~^1.970^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~410~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~415~^0.139^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~501~^0.313^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~502~^1.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~503~^1.244^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~504~^2.257^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~505~^2.369^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~506~^0.984^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~508~^1.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~509~^1.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~510~^1.321^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~511~^1.968^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~512~^1.078^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~513~^1.557^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~515~^4.173^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~516~^1.630^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~517~^0.960^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~518~^1.052^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~605~^0.335^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~606~^5.199^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~612~^0.291^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~613~^2.689^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~614~^2.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~615~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~617~^4.560^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~618~^0.247^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~619~^0.115^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~625~^0.071^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~626~^0.390^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~628~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~631~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~645~^5.040^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~646~^0.494^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23452~^~653~^0.177^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23452~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~404~^0.058^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~405~^0.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~406~^2.685^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~410~^0.253^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~415~^0.175^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~501~^0.314^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~502~^1.085^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~503~^1.245^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~504~^2.260^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~505~^2.371^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~506~^0.985^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~508~^1.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~509~^1.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~510~^1.322^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~511~^1.970^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~512~^1.079^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~513~^1.559^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~515~^4.177^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~516~^1.631^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~517~^0.961^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~518~^1.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~605~^0.310^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~606~^4.437^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~612~^0.254^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~613~^2.210^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~614~^1.791^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~615~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~617~^3.661^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~618~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~619~^0.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~620~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~625~^0.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~626~^0.312^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~628~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~629~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~645~^4.042^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~646~^0.377^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~653~^0.152^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~662~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~663~^0.283^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~670~^0.082^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~673~^0.288^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~674~^3.378^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~675~^0.114^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~693~^0.306^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23453~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~851~^0.090^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23453~^~855~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~312~^0.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~404~^0.066^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~405~^0.137^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~406~^3.889^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~410~^0.405^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~415~^0.281^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~501~^0.291^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~502~^1.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~503~^1.155^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~504~^2.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~505~^2.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~506~^0.914^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~508~^1.080^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~509~^0.935^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~510~^1.226^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~511~^1.828^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~512~^1.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~513~^1.446^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~515~^3.875^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~516~^1.513^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~517~^0.892^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~518~^0.977^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~605~^0.478^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~606~^7.012^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~612~^0.429^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~613~^3.570^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~614~^2.742^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~615~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~617~^5.446^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~618~^0.258^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~619~^0.128^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~620~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~625~^0.094^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~626~^0.475^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~628~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~631~^0.036^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~645~^6.037^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~646~^0.491^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~653~^0.222^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~662~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~663~^0.429^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~669~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~670~^0.121^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~671~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~674~^5.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~675~^0.133^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~689~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~693~^0.475^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~695~^0.003^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23454~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~851~^0.125^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23454~^~855~^0.024^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~312~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~404~^0.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~405~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~406~^3.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~410~^0.290^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~415~^0.254^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~501~^0.191^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~502~^0.660^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~503~^0.758^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~504~^1.375^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~505~^1.443^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~506~^0.599^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~508~^0.708^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~509~^0.613^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~510~^0.804^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~511~^1.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~512~^0.657^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~513~^0.948^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~515~^2.541^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~516~^0.992^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~517~^0.585^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~518~^0.641^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~605~^0.488^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~606~^6.734^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~612~^0.394^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~613~^3.321^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~614~^2.751^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~615~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~617~^4.999^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~618~^0.224^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~619~^0.119^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~620~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~625~^0.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~626~^0.425^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~628~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~629~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~631~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~645~^5.524^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~646~^0.422^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~653~^0.222^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~662~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~663~^0.444^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~669~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~670~^0.101^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~673~^0.386^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~674~^4.554^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~675~^0.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~693~^0.484^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23455~^~697~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~851~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23455~^~855~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~312~^0.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~404~^0.041^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~405~^0.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~406~^3.962^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~410~^0.350^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~415~^0.335^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~501~^0.309^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~502~^1.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~503~^1.226^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~504~^2.225^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~505~^2.335^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~506~^0.970^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~508~^1.147^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~509~^0.992^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~510~^1.302^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~511~^1.940^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~512~^1.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~513~^1.535^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~515~^4.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~516~^1.606^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~517~^0.947^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~518~^1.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~605~^0.109^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~606~^1.850^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~612~^0.100^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~613~^1.086^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~614~^0.582^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~617~^1.786^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~618~^0.124^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~619~^0.057^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~620~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~624~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~625~^0.033^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~626~^0.186^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~631~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~645~^2.017^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~646~^0.280^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~653~^0.065^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~662~^0.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~663~^0.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~670~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~673~^0.167^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~674~^1.695^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~675~^0.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~689~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~693~^0.109^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23456~^~697~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~851~^0.054^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23456~^~855~^0.030^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~312~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~315~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~404~^0.039^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~405~^0.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~406~^3.431^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~410~^0.261^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~415~^0.323^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~501~^0.208^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~502~^0.720^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~503~^0.827^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~504~^1.500^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~505~^1.574^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~506~^0.654^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~508~^0.773^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~509~^0.669^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~510~^0.878^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~511~^1.308^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~512~^0.716^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~513~^1.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~515~^2.773^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~516~^1.083^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~517~^0.638^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~518~^0.699^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~605~^0.105^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~606~^1.573^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~611~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~612~^0.088^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~613~^0.863^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~614~^0.558^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~617~^1.376^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~618~^0.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~619~^0.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~620~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~626~^0.139^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~629~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~631~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~645~^1.549^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~646~^0.232^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~653~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~662~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~663~^0.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~669~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~670~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~673~^0.127^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~674~^1.284^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~675~^0.070^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~693~^0.104^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~695~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23457~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~851~^0.045^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23457~^~855~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~312~^0.065^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~404~^0.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~405~^0.085^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~406~^3.410^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~410~^0.129^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~415~^0.118^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~501~^0.316^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~502~^1.091^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~503~^1.252^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~504~^2.273^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~505~^2.385^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~506~^0.991^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~508~^1.171^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~509~^1.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~510~^1.330^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~511~^1.982^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~512~^1.085^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~513~^1.568^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~515~^4.201^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~516~^1.641^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~517~^0.967^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~518~^1.059^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~605~^0.183^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~606~^3.566^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~612~^0.216^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~613~^1.949^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~614~^1.258^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~617~^2.950^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~618~^0.145^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~619~^0.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~620~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~625~^0.049^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~626~^0.277^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~628~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~645~^3.293^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~646~^0.324^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~653~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~662~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~663~^0.155^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~669~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~670~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~671~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~673~^0.249^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~674~^2.796^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~675~^0.107^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~689~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~693~^0.182^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~695~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23458~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~851~^0.069^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~853~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23458~^~855~^0.034^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~312~^0.044^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~315~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~404~^0.035^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~405~^0.080^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~406~^4.594^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~410~^0.138^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~415~^0.200^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~501~^0.211^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~502~^0.728^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~503~^0.836^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~504~^1.518^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~505~^1.593^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~506~^0.662^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~508~^0.782^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~509~^0.677^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~510~^0.888^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~511~^1.323^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~512~^0.725^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~513~^1.047^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~515~^2.805^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~516~^1.096^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~517~^0.646^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~518~^0.707^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~605~^0.186^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~606~^3.292^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~612~^0.199^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~613~^1.772^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~614~^1.189^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~617~^2.590^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~618~^0.116^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~619~^0.055^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~620~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~621~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~625~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~626~^0.240^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~629~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~631~^0.016^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~645~^2.888^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~646~^0.230^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~653~^0.109^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~662~^0.023^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~663~^0.162^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~669~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~670~^0.042^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~673~^0.217^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~674~^2.428^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~675~^0.073^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~693~^0.185^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~695~^0.001^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23459~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~851~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23459~^~855~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~312~^0.181^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~404~^0.026^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~405~^0.184^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~406~^2.240^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~410~^0.147^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~415~^0.165^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~501~^0.334^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~502~^1.153^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~503~^1.324^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~504~^2.403^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~505~^2.522^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~506~^1.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~508~^1.239^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~509~^1.072^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~510~^1.406^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~511~^2.095^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~512~^1.148^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~513~^1.658^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~515~^4.442^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~516~^1.735^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~517~^1.022^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~518~^1.120^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~605~^0.303^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~606~^4.507^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~611~^0.007^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~612~^0.272^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~613~^2.501^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~614~^1.541^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~617~^4.282^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~618~^0.292^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~619~^0.125^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~620~^0.049^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~624~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~625~^0.090^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~626~^0.473^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~628~^0.014^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~629~^0.031^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~631~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~645~^4.867^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~646~^0.578^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~653~^0.159^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~662~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~663~^0.264^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~670~^0.111^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~672~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~673~^0.436^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~674~^4.018^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~675~^0.179^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~689~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~693~^0.301^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23460~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~851~^0.121^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~852~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~853~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23460~^~855~^0.049^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~312~^0.115^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~315~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~404~^0.046^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~405~^0.135^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~406~^3.212^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~410~^0.311^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~415~^0.265^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~502~^0.745^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~503~^0.855^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~504~^1.552^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~505~^1.629^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~506~^0.677^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~508~^0.800^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~509~^0.692^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~510~^0.908^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~511~^1.353^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~512~^0.741^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~513~^1.071^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~515~^2.869^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~516~^1.120^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~517~^0.660^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~518~^0.723^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~605~^0.248^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~606~^3.847^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~612~^0.211^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~613~^1.985^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~614~^1.478^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~615~^0.012^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~617~^3.469^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~618~^0.190^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~619~^0.092^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~620~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~625~^0.063^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~626~^0.345^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~628~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~631~^0.025^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~645~^3.894^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~646~^0.380^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~653~^0.142^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~662~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~663~^0.216^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~670~^0.068^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~673~^0.315^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~674~^3.252^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~675~^0.121^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~689~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~693~^0.246^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23461~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~851~^0.089^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~853~^0.010^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23461~^~855~^0.027^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~312~^0.106^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~404~^0.021^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~405~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~406~^2.611^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~410~^0.187^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~415~^0.139^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~501~^0.312^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~502~^1.080^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~503~^1.240^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~504~^2.250^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~505~^2.361^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~506~^0.981^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~508~^1.159^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~509~^1.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~510~^1.316^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~511~^1.961^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~512~^1.074^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~513~^1.552^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~515~^4.158^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~516~^1.624^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~517~^0.957^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~518~^1.048^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~605~^0.195^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~606~^2.948^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~612~^0.163^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~613~^1.520^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~614~^1.140^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~617~^2.703^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~618~^0.168^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~619~^0.081^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~621~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~624~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~625~^0.042^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~626~^0.238^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~628~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~629~^0.029^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~631~^0.037^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~645~^2.998^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~646~^0.380^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~653~^0.104^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~662~^0.019^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~663~^0.174^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~670~^0.053^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~671~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~673~^0.219^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~674~^2.529^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~675~^0.113^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~689~^0.013^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~693~^0.193^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~ -~23462~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~851~^0.078^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~853~^0.011^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23462~^~855~^0.038^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~312~^0.063^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~404~^0.040^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~405~^0.109^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~406~^3.136^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~410~^0.492^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~415~^0.246^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~501~^0.216^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~502~^0.746^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~503~^0.857^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~504~^1.555^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~505~^1.632^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~506~^0.678^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~508~^0.801^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~509~^0.693^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~510~^0.910^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~511~^1.356^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~512~^0.742^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~513~^1.072^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~515~^2.874^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~516~^1.122^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~517~^0.661^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~518~^0.724^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~605~^0.173^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~606~^2.711^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~611~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~612~^0.148^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~613~^1.319^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~614~^1.130^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~617~^2.304^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~618~^0.124^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~619~^0.058^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~620~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~625~^0.032^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~626~^0.187^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~628~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~629~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~631~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~645~^2.530^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~646~^0.233^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~653~^0.093^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~654~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~663~^0.167^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~670~^0.049^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~673~^0.183^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~674~^2.138^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~675~^0.072^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~693~^0.171^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~695~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~ -~23463~^~697~^0.000^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~851~^0.058^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23463~^~852~^0.001^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~ -~23463~^~855~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~ -~23464~^~312~^0.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~315~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~404~^0.023^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~405~^0.147^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~406~^1.645^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~410~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~415~^0.099^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~501~^0.312^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~502~^1.079^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~503~^1.239^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~504~^2.248^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~505~^2.359^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~506~^0.980^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~508~^1.158^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~509~^1.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~510~^1.315^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~511~^1.960^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~512~^1.073^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~513~^1.550^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~515~^4.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~516~^1.623^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~517~^0.956^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~518~^1.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~605~^0.125^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~606~^3.013^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~610~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~612~^0.163^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~613~^1.605^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~614~^1.116^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~615~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~617~^2.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~618~^0.151^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~619~^0.078^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~620~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~625~^0.043^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~626~^0.243^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~628~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~629~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~631~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~645~^3.094^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~646~^0.352^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~653~^0.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~662~^0.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~663~^0.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~670~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~673~^0.213^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~674~^2.698^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~675~^0.116^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~689~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~693~^0.125^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23464~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~851~^0.076^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~853~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23464~^~855~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~312~^0.144^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~404~^0.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~405~^0.198^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~406~^3.904^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~410~^0.772^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~415~^0.274^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~501~^0.314^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~502~^1.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~503~^1.248^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~504~^2.264^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~505~^2.376^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~506~^0.987^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~508~^1.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~509~^1.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~510~^1.325^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~511~^1.974^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~512~^1.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~513~^1.562^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~515~^4.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~516~^1.634^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~517~^0.963^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~518~^1.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~605~^0.173^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~606~^2.795^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~612~^0.130^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~613~^1.532^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~614~^1.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~617~^2.538^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~618~^0.190^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~619~^0.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~620~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~621~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~625~^0.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~626~^0.195^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~628~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~629~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~631~^0.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~645~^2.776^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~646~^0.406^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~653~^0.104^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~662~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~663~^0.144^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~670~^0.045^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~671~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~672~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~673~^0.166^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~674~^2.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~675~^0.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~685~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~689~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~693~^0.173^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23465~^~697~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~851~^0.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~853~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23465~^~855~^0.037^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23466~^~312~^0.107^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~315~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~404~^0.066^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~405~^0.118^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~406~^2.729^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~410~^0.581^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~415~^0.276^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~502~^0.787^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~503~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~505~^1.721^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~506~^0.715^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~508~^0.845^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~509~^0.731^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~510~^0.960^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~511~^1.430^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~512~^0.783^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~513~^1.131^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~515~^3.032^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~516~^1.184^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~517~^0.698^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~518~^0.764^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~605~^0.133^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~606~^1.999^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~23466~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~612~^0.085^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~613~^1.078^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~614~^0.739^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~617~^1.876^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~618~^0.140^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~619~^0.067^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~620~^0.025^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~621~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~625~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~626~^0.140^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~ -~23466~^~628~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~629~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~631~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~645~^2.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~646~^0.295^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~653~^0.082^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~654~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~662~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~663~^0.109^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~669~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~23466~^~670~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~671~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~672~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~673~^0.116^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~674~^1.767^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~675~^0.108^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~23466~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~23466~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~ -~23466~^~693~^0.133^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~23466~^~697~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~851~^0.064^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~853~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23466~^~855~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~23467~^~312~^0.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~315~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~404~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~405~^0.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~406~^2.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~410~^0.577^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~415~^0.274^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~501~^0.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~502~^0.784^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~503~^0.900^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~504~^1.633^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~505~^1.714^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~506~^0.712^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~508~^0.842^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~509~^0.728^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~510~^0.956^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~511~^1.424^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~512~^0.780^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~513~^1.127^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~515~^3.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~516~^1.179^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~517~^0.695^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~518~^0.761^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~605~^0.150^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~606~^2.200^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~610~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~612~^0.098^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~613~^1.173^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~614~^0.824^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~615~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~617~^2.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~618~^0.147^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~619~^0.070^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~620~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~625~^0.020^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~626~^0.152^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~629~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~631~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~645~^2.199^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~646~^0.304^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~653~^0.089^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~654~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~662~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~663~^0.126^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~670~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~672~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~673~^0.128^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~674~^1.889^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~675~^0.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~689~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~693~^0.150^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23467~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~851~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23467~^~855~^0.025^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~312~^0.068^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~315~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~404~^0.054^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~405~^0.077^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~406~^4.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~410~^0.358^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~415~^0.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~501~^0.261^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~502~^0.901^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~503~^1.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~504~^1.878^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~505~^1.971^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~506~^0.819^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~508~^0.968^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~509~^0.838^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~510~^1.099^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~511~^1.638^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~512~^0.897^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~513~^1.296^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~515~^3.472^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~516~^1.356^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~517~^0.799^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~518~^0.875^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~605~^0.613^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~606~^8.244^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~612~^0.544^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~613~^4.363^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~614~^3.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~617~^7.164^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~618~^0.326^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~619~^0.148^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~620~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~624~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~625~^0.162^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~626~^0.715^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~628~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~629~^0.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~631~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~645~^8.070^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~646~^0.561^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~653~^0.274^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~662~^0.047^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~663~^0.560^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~669~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~670~^0.175^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~671~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~672~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~673~^0.668^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~674~^6.603^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~675~^0.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~689~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~693~^0.607^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~695~^0.006^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23468~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~851~^0.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23468~^~855~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~312~^0.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~315~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~404~^0.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~405~^0.075^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~406~^3.569^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~410~^0.263^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~415~^0.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~501~^0.194^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~502~^0.670^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~503~^0.769^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~504~^1.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~505~^1.464^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~506~^0.608^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~508~^0.719^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~509~^0.622^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~510~^0.816^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~511~^1.216^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~512~^0.666^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~513~^0.962^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~515~^2.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~516~^1.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~517~^0.594^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~518~^0.650^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~605~^0.616^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~606~^8.064^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~610~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~611~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~612~^0.507^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~613~^3.993^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~614~^3.236^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~615~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~617~^6.228^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~618~^0.304^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~619~^0.143^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~620~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~621~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~624~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~625~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~626~^0.571^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~628~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~629~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~631~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~645~^6.937^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~646~^0.515^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~653~^0.272^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~662~^0.035^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~663~^0.573^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~669~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~670~^0.159^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~672~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~673~^0.536^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~674~^5.655^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~675~^0.137^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~685~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~693~^0.609^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23469~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~851~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23469~^~855~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~312~^0.180^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~315~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~404~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~405~^0.209^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~406~^4.985^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~410~^0.817^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~415~^0.229^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~501~^0.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~502~^1.060^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~503~^1.217^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~504~^2.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~505~^2.317^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~506~^0.962^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~508~^1.138^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~509~^0.984^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~510~^1.291^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~511~^1.925^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~512~^1.054^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~513~^1.523^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~515~^4.080^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~516~^1.594^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~517~^0.939^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~518~^1.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~605~^0.188^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~606~^3.729^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~610~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~611~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~612~^0.169^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~613~^1.779^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~614~^1.621^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~615~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~617~^2.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~618~^0.151^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~619~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~620~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~624~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~625~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~626~^0.174^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~628~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~629~^0.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~631~^0.031^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~645~^2.775^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~646~^0.376^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~653~^0.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~662~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~663~^0.151^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~670~^0.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~672~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~673~^0.138^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~674~^2.416^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~675~^0.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~685~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~689~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~693~^0.187^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23470~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~851~^0.096^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~852~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23470~^~855~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~312~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~315~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~404~^0.055^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~405~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~406~^4.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~410~^0.569^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~415~^0.264^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~501~^0.220^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~502~^0.762^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~503~^0.875^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~504~^1.587^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~505~^1.665^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~506~^0.692^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~508~^0.818^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~509~^0.708^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~510~^0.929^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~511~^1.384^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~512~^0.758^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~513~^1.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~515~^2.934^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~516~^1.146^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~517~^0.675^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~518~^0.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~605~^0.151^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~606~^2.788^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~610~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~611~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~612~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~613~^1.289^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~614~^1.250^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~615~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~617~^1.876^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~618~^0.110^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~619~^0.067^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~620~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~621~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~624~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~626~^0.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~629~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~631~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~645~^2.032^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~646~^0.268^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~653~^0.102^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~654~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~662~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~663~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~669~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~670~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~671~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~672~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~673~^0.104^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~674~^1.750^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~675~^0.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~676~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~685~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~687~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~693~^0.151^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~695~^0.000^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~ -~23471~^~697~^0.003^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~851~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~852~^0.002^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23471~^~855~^0.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~ -~23472~^~312~^0.075^36^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~404~^0.041^36^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~406~^5.325^36^0.148^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~410~^0.632^6^0.052^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~415~^0.383^36^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~501~^0.106^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~502~^0.807^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~503~^0.922^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~504~^1.627^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~505~^1.728^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~506~^0.537^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~507~^0.215^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~508~^0.814^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~509~^0.642^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~510~^1.025^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~511~^1.358^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~512~^0.678^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~513~^1.307^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~514~^1.878^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~515~^3.128^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~516~^1.416^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~517~^1.063^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~518~^0.835^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~605~^0.348^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23472~^~606~^2.878^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23472~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~610~^0.000^0^^~4~^~BFFN~^~23477~^^^^^^^^^~06/01/2014~ -~23472~^~611~^0.006^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~612~^0.185^47^0.016^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~613~^1.559^47^0.089^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~614~^1.011^47^0.060^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~615~^0.010^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~617~^2.677^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23472~^~618~^0.216^47^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~619~^0.040^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23472~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~621~^0.000^0^^~4~^~BFFN~^~23477~^^^^^^^^^~06/01/2014~ -~23472~^~625~^0.042^47^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~626~^0.230^47^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23472~^~628~^0.021^47^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~629~^0.000^0^^~4~^~BFFN~^~23477~^^^^^^^^^~06/01/2014~ -~23472~^~630~^0.000^0^^~4~^~BFFN~^~23477~^^^^^^^^^~06/01/2014~ -~23472~^~631~^0.000^0^^~4~^~BFFN~^~23477~^^^^^^^^^~06/01/2014~ -~23472~^~645~^2.866^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23472~^~646~^0.292^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23472~^~652~^0.032^47^0.003^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~653~^0.074^47^0.007^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23472~^~663~^0.348^26^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23472~^~685~^0.009^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~687~^0.041^39^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23472~^~693~^0.348^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23472~^~851~^0.031^35^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~312~^0.094^36^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~315~^0.014^36^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~404~^0.043^36^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~406~^5.827^36^0.223^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~415~^0.406^36^0.018^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~501~^0.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~502~^1.014^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~503~^1.158^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~504~^2.043^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~505~^2.170^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~506~^0.674^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~508~^1.022^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~509~^0.806^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~510~^1.287^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~511~^1.705^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~512~^0.851^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~513~^1.641^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~514~^2.359^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~515~^3.928^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~516~^1.778^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~517~^1.335^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~518~^1.049^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~605~^0.254^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23473~^~606~^3.684^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23473~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~610~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23473~^~611~^0.008^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~612~^0.233^47^0.013^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~613~^1.961^47^0.086^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~614~^1.328^47^0.085^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~617~^3.371^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23473~^~618~^0.266^47^0.018^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23473~^~620~^0.047^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~621~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23473~^~625~^0.050^47^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~626~^0.286^47^0.022^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23473~^~628~^0.027^47^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~629~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23473~^~630~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23473~^~631~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23473~^~645~^3.669^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23473~^~646~^0.368^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23473~^~652~^0.042^47^0.003^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~653~^0.098^47^0.005^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~663~^0.254^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23473~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23473~^~687~^0.077^36^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23473~^~693~^0.254^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23473~^~851~^0.043^35^0.003^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23474~^~312~^0.089^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~406~^6.175^12^0.303^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~410~^0.642^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23474~^~415~^0.386^12^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~501~^0.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~502~^0.990^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~503~^1.131^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~504~^1.995^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~505~^2.119^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~506~^0.658^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~507~^0.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~508~^0.998^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~509~^0.787^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~510~^1.257^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~511~^1.665^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~512~^0.831^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~513~^1.602^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~514~^2.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~515~^3.836^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~516~^1.736^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~517~^1.304^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~518~^1.024^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~605~^0.266^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23474~^~606~^3.286^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23474~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~610~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~612~^0.220^8^0.025^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~613~^1.777^8^0.188^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~614~^1.094^8^0.117^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~617~^2.998^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23474~^~618~^0.225^8^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23474~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~621~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~625~^0.054^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~626~^0.267^8^0.027^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23474~^~628~^0.025^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~629~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~630~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~631~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23474~^~645~^3.273^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23474~^~646~^0.328^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23474~^~652~^0.038^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~653~^0.089^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~663~^0.266^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23474~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~687~^0.065^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23474~^~693~^0.266^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23475~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~315~^0.010^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~404~^0.035^12^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~406~^5.408^12^0.246^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~410~^0.643^6^0.049^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~415~^0.353^12^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~501~^0.137^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~502~^1.046^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~503~^1.195^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~504~^2.107^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~505~^2.238^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~506~^0.695^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~507~^0.278^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~508~^1.054^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~509~^0.831^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~510~^1.328^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~511~^1.758^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~512~^0.878^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~513~^1.692^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~514~^2.433^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~515~^4.051^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~516~^1.834^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~517~^1.377^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~518~^1.082^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~605~^0.253^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23475~^~606~^3.480^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23475~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~610~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23475~^~611~^0.006^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~612~^0.236^8^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~613~^1.847^8^0.118^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~614~^1.124^7^0.087^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~615~^0.012^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~617~^3.230^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23475~^~618~^0.226^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23475~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~621~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23475~^~625~^0.058^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~626~^0.286^8^0.029^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23475~^~628~^0.027^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~629~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23475~^~630~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23475~^~631~^0.000^0^^~4~^~BFFN~^~23473~^^^^^^^^^~06/01/2014~ -~23475~^~645~^3.465^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23475~^~646~^0.348^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23475~^~652~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~653~^0.095^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~663~^0.253^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23475~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~687~^0.071^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23475~^~693~^0.253^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23476~^~312~^0.103^12^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~315~^0.013^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~404~^0.042^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~406~^7.096^12^0.220^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~501~^0.147^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~502~^1.117^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~503~^1.276^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~504~^2.251^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~505~^2.391^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~506~^0.742^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~507~^0.297^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~508~^1.126^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~509~^0.888^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~510~^1.418^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~511~^1.879^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~512~^0.938^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~513~^1.808^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~514~^2.599^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~515~^4.328^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~516~^1.959^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~517~^1.471^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~518~^1.156^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~605~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23476~^~606~^3.897^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23476~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~610~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23476~^~611~^0.005^8^0.000^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~612~^0.264^8^0.042^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~613~^2.099^8^0.283^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~614~^1.203^6^0.163^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~617~^3.565^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23476~^~618~^0.251^6^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23476~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~621~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23476~^~625~^0.065^8^0.013^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~626~^0.317^8^0.053^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23476~^~628~^0.031^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~629~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23476~^~630~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23476~^~631~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23476~^~645~^3.881^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23476~^~646~^0.389^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23476~^~652~^0.045^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~653~^0.105^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~663~^0.241^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23476~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~687~^0.079^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23476~^~693~^0.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23477~^~312~^0.080^36^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~404~^0.041^36^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~406~^5.663^36^0.177^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~410~^0.673^6^0.069^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~415~^0.401^36^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~501~^0.112^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~502~^0.851^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~503~^0.972^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~504~^1.715^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~505~^1.822^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~506~^0.566^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~507~^0.226^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~508~^0.858^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~509~^0.677^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~510~^1.081^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~511~^1.432^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~512~^0.715^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~513~^1.378^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~514~^1.981^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~515~^3.298^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~516~^1.493^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~517~^1.121^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~518~^0.881^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~605~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23477~^~606~^1.480^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23477~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~610~^0.000^0^^~4~^~BFFN~^~23577~^^^^^^^^^~06/01/2014~ -~23477~^~611~^0.004^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~612~^0.063^47^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~613~^0.748^47^0.116^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23477~^~614~^0.614^47^0.076^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23477~^~615~^0.008^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~617~^1.140^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23477~^~618~^0.154^47^0.022^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~619~^0.032^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23477~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23477~^~625~^0.005^47^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~626~^0.078^47^0.027^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23477~^~628~^0.007^47^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23477~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23477~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23477~^~645~^1.134^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23477~^~646~^0.222^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23477~^~652~^0.013^47^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23477~^~653~^0.029^47^0.009^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23477~^~663~^0.092^26^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23477~^~685~^0.007^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~687~^0.003^39^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23477~^~693~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23477~^~851~^0.025^35^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~312~^0.098^36^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~315~^0.015^36^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~404~^0.041^36^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~406~^6.051^36^0.241^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~415~^0.418^36^0.023^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~501~^0.134^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~502~^1.020^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~503~^1.165^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~504~^2.054^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~505~^2.182^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~506~^0.678^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~507~^0.271^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~508~^1.028^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~509~^0.810^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~510~^1.294^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~511~^1.715^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~512~^0.856^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~513~^1.650^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~514~^2.372^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~515~^3.950^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~516~^1.788^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~517~^1.342^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~518~^1.055^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~605~^0.094^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23478~^~606~^2.207^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23478~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~610~^0.000^0^^~4~^~BFFN~^~13497~^^^^^^^^^~06/01/2014~ -~23478~^~611~^0.007^47^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~612~^0.109^47^0.026^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~613~^1.105^47^0.176^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~614~^0.894^47^0.170^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~617~^1.754^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23478~^~618~^0.186^47^0.028^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~619~^0.052^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23478~^~620~^0.043^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23478~^~625~^0.007^47^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~626~^0.113^47^0.045^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23478~^~628~^0.016^47^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23478~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23478~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23478~^~645~^1.691^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23478~^~646~^0.281^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23478~^~652~^0.023^47^0.005^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~653~^0.057^47^0.011^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~663~^0.094^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23478~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23478~^~687~^0.039^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23478~^~693~^0.094^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23478~^~851~^0.040^35^0.003^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~312~^0.093^12^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~406~^6.374^12^0.380^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~410~^0.650^0^^~4~^~BFPN~^~23478~^^^^^^^^^~07/01/2014~ -~23479~^~415~^0.396^12^0.035^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~501~^0.132^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~502~^1.009^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~503~^1.153^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~504~^2.033^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~505~^2.160^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~506~^0.671^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~507~^0.268^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~508~^1.017^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~509~^0.802^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~510~^1.281^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~511~^1.697^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~512~^0.847^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~513~^1.633^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~514~^2.348^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~515~^3.909^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~516~^1.770^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~517~^1.329^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~518~^1.044^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~605~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23479~^~606~^1.797^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23479~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~610~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23479~^~611~^0.006^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23479~^~612~^0.115^8^0.046^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~613~^0.960^8^0.342^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~614~^0.638^8^0.213^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~615~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23479~^~617~^1.775^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23479~^~618~^0.142^8^0.034^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23479~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23479~^~625~^0.028^8^0.011^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~626~^0.146^8^0.048^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23479~^~628~^0.014^8^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23479~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23479~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23479~^~645~^1.377^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23479~^~646~^0.229^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23479~^~652~^0.021^8^0.007^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~653~^0.048^8^0.018^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~663~^0.092^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~ -~23479~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23479~^~687~^0.031^8^0.013^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23479~^~693~^0.092^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23480~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~315~^0.011^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~404~^0.032^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~406~^5.648^12^0.302^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~410~^0.666^6^0.065^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~415~^0.360^12^0.025^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~501~^0.140^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~502~^1.067^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~503~^1.219^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~504~^2.150^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~505~^2.283^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~506~^0.709^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~507~^0.284^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~508~^1.075^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~509~^0.848^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~510~^1.354^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~511~^1.794^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~512~^0.896^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~513~^1.727^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~514~^2.482^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~515~^4.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~516~^1.871^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~517~^1.405^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~518~^1.104^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~605~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23480~^~606~^2.011^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23480~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~610~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23480~^~611~^0.004^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~612~^0.094^8^0.043^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~613~^0.932^8^0.216^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~614~^0.623^7^0.143^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~615~^0.012^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~617~^1.368^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23480~^~618~^0.137^8^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23480~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~621~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23480~^~625~^0.019^8^0.013^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~626~^0.110^8^0.053^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23480~^~628~^0.010^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~629~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23480~^~630~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23480~^~631~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23480~^~645~^1.541^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23480~^~646~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23480~^~652~^0.018^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~653~^0.041^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~663~^0.093^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23480~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~687~^0.022^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23480~^~693~^0.093^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23481~^~312~^0.108^12^0.012^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~315~^0.013^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~404~^0.041^12^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~406~^7.485^12^0.294^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~501~^0.150^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~502~^1.140^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~503~^1.302^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~504~^2.296^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~505~^2.439^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~506~^0.757^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~507~^0.303^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~508~^1.148^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~509~^0.906^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~510~^1.447^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~511~^1.916^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~512~^0.957^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~513~^1.844^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~514~^2.651^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~515~^4.415^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~516~^1.998^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~517~^1.500^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~518~^1.179^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23481~^~606~^2.686^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23481~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~610~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23481~^~611~^0.004^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~612~^0.088^8^0.076^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~613~^0.793^8^0.514^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~614~^0.636^6^0.273^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~617~^1.304^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23481~^~618~^0.125^6^0.040^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23481~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~621~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23481~^~625~^0.018^8^0.023^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~626~^0.103^8^0.097^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23481~^~628~^0.006^8^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~629~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23481~^~630~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23481~^~631~^0.000^0^^~4~^~BFFN~^~23478~^^^^^^^^^~06/01/2014~ -~23481~^~645~^2.058^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23481~^~646~^0.342^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23481~^~652~^0.017^8^0.012^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~653~^0.039^8^0.027^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~663~^0.084^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23481~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~687~^0.020^8^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23481~^~693~^0.084^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23482~^~312~^0.069^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~315~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~404~^0.073^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~405~^0.195^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~406~^5.340^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~410~^0.470^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~415~^0.527^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~501~^0.210^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~502~^0.914^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~503~^0.921^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~504~^1.695^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~505~^1.859^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~506~^0.553^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~507~^0.219^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~508~^0.801^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~509~^0.722^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~510~^0.987^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~511~^1.357^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~512~^0.712^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~513~^1.225^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~514~^1.913^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~515~^3.244^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~516~^1.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~517~^0.897^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~518~^0.814^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~521~^0.145^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~605~^0.381^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~606~^3.845^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~610~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~612~^0.265^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~613~^2.143^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~614~^1.295^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~617~^3.904^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~618~^0.449^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~619~^0.026^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~620~^0.040^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~625~^0.042^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~626~^0.319^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~628~^0.016^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~645~^4.365^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~646~^0.532^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~653~^0.081^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~662~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~663~^0.352^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~665~^0.015^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~670~^0.109^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~673~^0.174^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~674~^2.499^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~675~^0.235^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~687~^0.051^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~693~^0.361^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~695~^0.020^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23482~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~851~^0.010^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23482~^~859~^0.066^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~312~^0.081^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~315~^0.029^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~404~^0.085^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~405~^0.187^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~406~^6.139^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~410~^0.552^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~415~^0.589^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~501~^0.200^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~502~^0.995^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~503~^1.061^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~504~^1.902^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~505~^2.071^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~506~^0.606^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~507~^0.267^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~508~^0.914^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~509~^0.792^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~510~^1.141^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~511~^1.516^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~512~^0.790^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~513~^1.390^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~514~^2.158^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~515~^3.597^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~516~^1.217^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~517~^1.040^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~518~^0.921^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~521~^0.180^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~605~^0.136^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~606~^1.974^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~610~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~612~^0.128^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~613~^1.152^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~614~^0.638^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~617~^2.059^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~618~^0.217^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~619~^0.009^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~620~^0.038^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~625~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~626~^0.169^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~628~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~631~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~645~^2.285^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~646~^0.277^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~652~^0.014^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~653~^0.036^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~663~^0.125^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~665~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~670~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~673~^0.083^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~674~^1.087^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~675~^0.125^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~687~^0.026^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~693~^0.130^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~695~^0.006^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23483~^~697~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~851~^0.003^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23483~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~312~^0.083^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~315~^0.031^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~404~^0.074^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~405~^0.213^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~406~^6.222^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~410~^0.549^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~415~^0.536^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~501~^0.259^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~502~^1.292^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~503~^1.380^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~504~^2.473^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~505~^2.690^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~506~^0.788^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~507~^0.349^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~508~^1.189^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~509~^1.029^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~510~^1.484^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~511~^1.972^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~512~^1.027^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~513~^1.809^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~514~^2.806^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~515~^4.676^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~516~^1.589^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~517~^1.354^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~518~^1.198^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~521~^0.237^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~605~^0.251^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~606~^3.108^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~611~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~612~^0.205^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~613~^1.779^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~614~^1.024^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~617~^3.181^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~618~^0.318^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~619~^0.017^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~620~^0.048^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~625~^0.026^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~626~^0.262^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~628~^0.007^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~629~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~645~^3.533^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~646~^0.408^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~652~^0.024^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~653~^0.060^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~663~^0.233^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~665~^0.011^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~670~^0.017^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~673~^0.141^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~674~^1.722^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~675~^0.192^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~687~^0.043^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~689~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~693~^0.239^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~695~^0.011^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23484~^~697~^0.013^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~851~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23484~^~853~^0.008^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~312~^0.067^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~315~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~404~^0.075^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~405~^0.203^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~406~^5.727^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~410~^0.494^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~415~^0.558^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~501~^0.231^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~502~^0.994^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~503~^1.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~504~^1.842^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~505~^2.029^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~506~^0.594^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~507~^0.233^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~508~^0.866^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~509~^0.787^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~510~^1.063^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~511~^1.460^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~512~^0.771^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~513~^1.300^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~514~^2.069^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~515~^3.523^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~516~^1.014^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~517~^0.934^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~518~^0.877^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~521~^0.120^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~605~^0.233^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~606~^2.151^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~610~^0.003^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~612~^0.137^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~613~^1.228^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~614~^0.707^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~617~^2.304^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~618~^0.244^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~619~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~620~^0.041^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~625~^0.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~626~^0.180^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~628~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~ -~23485~^~645~^2.563^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~646~^0.307^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~652~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~653~^0.056^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~654~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~662~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~663~^0.218^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~665~^0.009^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~670~^0.016^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~673~^0.085^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~674~^1.761^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~675~^0.191^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~687~^0.042^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23485~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~693~^0.224^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~695~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23485~^~697~^0.005^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~851~^0.006^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~06/01/2015~ -~23485~^~859~^0.056^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~312~^0.078^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~315~^0.028^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~404~^0.088^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~405~^0.195^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~406~^6.310^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~410~^0.511^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~415~^0.582^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~501~^0.194^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~502~^0.961^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~503~^1.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~504~^1.836^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~505~^1.994^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~506~^0.586^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~507~^0.259^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~508~^0.885^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~509~^0.765^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~510~^1.106^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~511~^1.464^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~512~^0.759^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~513~^1.346^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~514~^2.084^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~515~^3.479^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~516~^1.183^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~517~^1.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~518~^0.890^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~521~^0.179^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~605~^0.152^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~606~^2.222^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~610~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~612~^0.143^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~613~^1.295^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~614~^0.720^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~617~^2.315^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~618~^0.240^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~619~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~620~^0.041^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~625~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~626~^0.189^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~628~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~631~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~645~^2.566^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~646~^0.307^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~652~^0.015^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~653~^0.040^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~663~^0.140^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~670~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~673~^0.091^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~674~^1.204^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~675~^0.134^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~687~^0.029^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~693~^0.145^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~695~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23490~^~697~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~851~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23490~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~312~^0.085^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~315~^0.032^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~404~^0.076^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~405~^0.213^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~406~^6.148^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~410~^0.525^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~415~^0.523^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~501~^0.252^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~502~^1.254^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~503~^1.344^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~504~^2.399^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~505~^2.604^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~506~^0.766^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~507~^0.339^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~508~^1.157^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~509~^0.998^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~510~^1.446^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~511~^1.913^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~512~^0.990^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~513~^1.760^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~514~^2.722^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~515~^4.544^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~516~^1.551^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~517~^1.316^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~518~^1.163^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~521~^0.235^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~605~^0.279^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~606~^3.536^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~610~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~612~^0.233^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~613~^2.028^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~614~^1.165^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~617~^3.656^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~618~^0.358^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~619~^0.020^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~620~^0.054^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~626~^0.302^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~628~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~629~^0.003^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~631~^0.010^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~645~^4.059^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~646~^0.455^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~652~^0.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~653~^0.067^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~654~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~662~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~663~^0.259^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~665~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~670~^0.019^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~673~^0.162^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~674~^1.982^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~675~^0.213^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~687~^0.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~689~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~693~^0.266^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~695~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23491~^~697~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~851~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23491~^~853~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~312~^0.071^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~315~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~404~^0.071^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~405~^0.192^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~406~^5.513^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~410~^0.484^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~415~^0.524^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~501~^0.207^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~502~^0.898^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~503~^0.908^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~504~^1.665^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~505~^1.819^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~506~^0.547^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~507~^0.217^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~508~^0.790^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~509~^0.708^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~510~^0.975^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~511~^1.336^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~512~^0.694^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~513~^1.210^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~514~^1.880^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~515~^3.195^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~516~^1.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~517~^0.887^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~518~^0.801^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~521~^0.156^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~605~^0.403^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~606~^4.122^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~610~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~611~^0.006^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~612~^0.284^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~613~^2.302^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~614~^1.383^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~615~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~617~^4.205^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~618~^0.479^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~619~^0.024^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~620~^0.044^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~625~^0.048^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~626~^0.336^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~628~^0.018^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~645~^4.683^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~646~^0.563^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~652~^0.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~653~^0.087^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~662~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~663~^0.372^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~665~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~669~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~670~^0.116^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~673~^0.194^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~674~^2.768^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~675~^0.250^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~687~^0.055^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~693~^0.381^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~695~^0.022^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23494~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~851~^0.011^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23494~^~859~^0.070^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~312~^0.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~315~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~404~^0.072^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~405~^0.205^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~406~^5.519^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~410~^0.518^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~415~^0.548^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~501~^0.218^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~502~^0.929^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~503~^0.934^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~504~^1.719^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~505~^1.882^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~506~^0.567^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~507~^0.221^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~508~^0.812^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~509~^0.734^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~510~^0.992^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~511~^1.372^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~512~^0.707^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~513~^1.217^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~514~^1.929^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~515~^3.312^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~516~^0.960^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~517~^0.875^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~518~^0.819^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~521~^0.129^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~605~^0.274^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~606~^2.755^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~610~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~612~^0.176^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~613~^1.580^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~614~^0.903^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~615~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~617~^3.023^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~618~^0.277^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~619~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~620~^0.043^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~625~^0.036^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~626~^0.237^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~628~^0.009^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~631~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~645~^3.406^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~646~^0.353^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~652~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~653~^0.070^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~654~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~663~^0.261^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~665~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~669~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~670~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~673~^0.075^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~674~^2.300^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~675~^0.214^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~687~^0.051^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~693~^0.266^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~695~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23495~^~697~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~851~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23495~^~859~^0.078^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~312~^0.073^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~315~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~404~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~405~^0.214^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~406~^5.558^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~410~^0.551^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~415~^0.552^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~501~^0.249^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~502~^1.091^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~503~^1.100^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~504~^2.035^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~505~^2.244^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~506~^0.655^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~507~^0.260^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~508~^0.953^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~509~^0.869^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~510~^1.168^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~511~^1.616^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~512~^0.860^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~513~^1.432^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~514~^2.286^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~515~^3.876^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~516~^1.128^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~517~^1.043^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~518~^0.971^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~521~^0.129^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~605~^0.228^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~606~^1.973^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~610~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~612~^0.127^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~613~^1.115^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~614~^0.655^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~617~^2.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~618~^0.241^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~619~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~620~^0.041^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~625~^0.024^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~626~^0.158^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~628~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~645~^2.644^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~646~^0.337^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~652~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~653~^0.055^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~654~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~662~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~663~^0.212^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~670~^0.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~673~^0.061^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~674~^1.685^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~675~^0.199^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~687~^0.035^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~693~^0.217^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~695~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23496~^~697~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~851~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23496~^~859~^0.057^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~312~^0.069^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~315~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~404~^0.077^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~405~^0.201^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~406~^5.327^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~410~^0.517^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~415~^0.533^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~501~^0.215^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~502~^0.957^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~503~^0.970^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~504~^1.790^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~505~^1.963^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~506~^0.584^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~507~^0.235^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~508~^0.844^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~509~^0.760^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~510~^1.039^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~511~^1.435^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~512~^0.755^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~513~^1.291^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~514~^2.020^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~515~^3.414^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~516~^1.082^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~517~^0.957^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~518~^0.862^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~521~^0.149^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~605~^0.354^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~606~^3.351^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~610~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~611~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~612~^0.228^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~613~^1.852^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~614~^1.143^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~615~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~617~^3.409^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~618~^0.421^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~619~^0.020^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~620~^0.040^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~624~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~625~^0.036^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~626~^0.267^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~628~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~631~^0.005^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~645~^3.788^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~646~^0.495^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~652~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~653~^0.074^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~662~^0.008^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~663~^0.328^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~665~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~669~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~670~^0.102^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~672~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~673~^0.152^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~674~^2.221^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~675~^0.227^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~685~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~687~^0.046^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~689~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~693~^0.336^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~695~^0.018^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23497~^~697~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~851~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~853~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23497~^~859~^0.067^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~312~^0.076^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~315~^0.029^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~404~^0.071^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~405~^0.201^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~406~^5.897^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~410~^0.540^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~415~^0.499^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~501~^0.249^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~502~^1.263^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~503~^1.350^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~504~^2.428^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~505~^2.645^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~506~^0.773^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~507~^0.344^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~508~^1.164^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~509~^1.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~510~^1.451^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~511~^1.938^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~512~^1.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~513~^1.772^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~514~^2.755^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~515~^4.578^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~516~^1.564^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~517~^1.338^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~518~^1.178^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~521~^0.229^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~605~^0.181^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~606~^2.354^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~610~^0.003^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~611~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~612~^0.156^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~613~^1.347^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~614~^0.778^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~615~^0.001^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~617~^2.367^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~618~^0.246^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~619~^0.013^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~620~^0.038^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~621~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~625~^0.017^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~626~^0.197^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~628~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~629~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~631~^0.012^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~645~^2.629^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~646~^0.319^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~652~^0.018^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~653~^0.043^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~663~^0.170^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~665~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~670~^0.012^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~673~^0.097^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~674~^1.163^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~675~^0.144^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~687~^0.030^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~689~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~693~^0.174^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~695~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23498~^~697~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~851~^0.006^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23498~^~853~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~312~^0.085^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~315~^0.030^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~404~^0.080^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~405~^0.180^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~406~^6.021^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~410~^0.552^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~415~^0.590^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~501~^0.211^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~502~^1.049^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~503~^1.113^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~504~^2.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~505~^2.195^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~506~^0.637^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~507~^0.280^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~508~^0.959^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~509~^0.839^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~510~^1.194^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~511~^1.600^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~512~^0.844^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~513~^1.458^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~514~^2.277^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~515~^3.787^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~516~^1.267^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~517~^1.096^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~518~^0.973^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~521~^0.181^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~605~^0.111^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~606~^1.664^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~607~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~608~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~609~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~610~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~611~^0.002^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~612~^0.109^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~613~^0.973^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~614~^0.533^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~615~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~617~^1.739^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~618~^0.188^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~619~^0.007^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~620~^0.034^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~621~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~625~^0.013^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~626~^0.145^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~627~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~628~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~629~^0.001^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~630~^0.000^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~631~^0.008^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~645~^1.932^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~646~^0.243^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~652~^0.012^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~653~^0.030^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~654~^0.003^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~662~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~663~^0.103^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~665~^0.004^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~670~^0.007^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~672~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~673~^0.071^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~674~^0.914^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~675~^0.112^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~687~^0.022^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~689~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~693~^0.107^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~695~^0.004^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~ -~23499~^~697~^0.009^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~851~^0.002^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23499~^~853~^0.005^0^^~1~^~PAK~^^^^^^^^^^~07/01/2015~ -~23509~^~312~^0.118^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~404~^0.111^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~405~^0.230^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~406~^3.635^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~415~^0.322^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~501~^0.280^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~502~^1.197^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~503~^1.337^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~504~^2.290^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~505~^2.431^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~506~^0.735^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~507~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~508~^1.123^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~509~^0.949^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~510~^1.400^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~511~^1.745^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~512~^0.835^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~513~^1.565^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~514~^2.582^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~515~^4.152^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~516~^1.231^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~517~^1.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~518~^1.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~521~^0.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~606~^1.828^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23509~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23509~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23509~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~612~^0.082^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~613~^1.081^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~614~^0.655^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~617~^2.432^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~618~^0.292^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~619~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~620~^0.056^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~625~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~626~^0.136^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23509~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23509~^~645~^2.608^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23509~^~646~^0.384^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~312~^0.112^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~404~^0.124^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~405~^0.230^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~406~^3.821^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~415~^0.387^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~501~^0.282^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~502~^1.208^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~503~^1.349^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~504~^2.310^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~505~^2.452^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~506~^0.741^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~508~^1.133^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~509~^0.958^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~510~^1.413^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~511~^1.761^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~512~^0.842^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~513~^1.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~514~^2.605^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~515~^4.189^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~516~^1.242^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~517~^1.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~518~^1.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~521~^0.121^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~606~^3.250^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~611~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~612~^0.200^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~613~^1.910^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~614~^1.112^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~615~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~617~^4.434^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~618~^0.297^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~619~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~620~^0.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~625~^0.072^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~626~^0.247^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23511~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23511~^~645~^4.753^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23511~^~646~^0.369^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23513~^~312~^0.090^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~404~^0.120^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~405~^0.194^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~406~^3.444^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~415~^0.406^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~501~^0.212^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~502~^0.907^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~503~^1.014^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~504~^1.735^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~505~^1.842^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~506~^0.557^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~507~^0.211^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~508~^0.851^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~509~^0.719^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~510~^1.062^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~511~^1.323^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~512~^0.633^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~513~^1.187^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~514~^1.957^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~515~^3.147^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~516~^0.933^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~517~^0.830^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~518~^0.788^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~521~^0.091^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~606~^1.414^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~612~^0.082^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~613~^0.851^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~614~^0.471^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~617~^1.839^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~618~^0.218^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~619~^0.022^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~620~^0.046^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~625~^0.030^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~626~^0.096^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23513~^~645~^1.965^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23513~^~646~^0.286^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23514~^~312~^0.100^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~404~^0.090^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~405~^0.252^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~406~^3.529^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~415~^0.278^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~501~^0.289^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~502~^1.240^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~503~^1.385^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~504~^2.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~505~^2.517^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~506~^0.761^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~507~^0.288^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~508~^1.163^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~509~^0.983^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~510~^1.450^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~511~^1.807^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~512~^0.865^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~513~^1.621^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~514~^2.674^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~515~^4.299^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~516~^1.275^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~517~^1.134^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~518~^1.076^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~521~^0.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~606~^2.037^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~612~^0.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~613~^1.229^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~614~^0.676^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~617~^3.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~618~^0.224^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~619~^0.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~620~^0.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~625~^0.044^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~626~^0.192^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23514~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23514~^~645~^3.270^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23514~^~646~^0.287^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23515~^~312~^0.100^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~404~^0.089^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~405~^0.247^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~406~^3.469^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~415~^0.273^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~501~^0.285^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~502~^1.219^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~503~^1.361^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~504~^2.331^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~505~^2.474^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~506~^0.748^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~507~^0.283^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~508~^1.143^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~509~^0.966^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~510~^1.426^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~511~^1.776^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~512~^0.850^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~513~^1.594^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~514~^2.628^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~515~^4.226^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~516~^1.253^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~517~^1.115^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~518~^1.058^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~521~^0.122^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~606~^2.144^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~612~^0.132^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~613~^1.319^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~614~^0.683^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~617~^3.038^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~618~^0.226^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~619~^0.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~620~^0.038^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~625~^0.052^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~626~^0.203^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23515~^~645~^3.294^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23515~^~646~^0.290^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23516~^~312~^0.105^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~315~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~404~^0.090^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~405~^0.225^6^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~406~^5.542^6^0.112^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~410~^0.790^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~415~^0.678^6^0.010^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~501~^0.328^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~502~^1.295^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~503~^1.252^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~504~^2.368^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~505~^2.573^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~506~^0.834^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~507~^0.304^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~508~^1.115^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~509~^1.014^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~510~^1.323^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~511~^1.924^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~512~^0.944^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~513~^1.653^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~514~^2.633^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~515~^4.658^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~516~^1.274^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~517~^1.177^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~518~^1.124^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~521~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23516~^~605~^0.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23516~^~606~^2.430^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23516~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23516~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23516~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23516~^~612~^0.157^6^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~613~^1.348^6^0.162^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~614~^0.847^6^0.080^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~615~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~617~^2.686^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23516~^~618~^0.292^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~23516~^~619~^0.011^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~ -~23516~^~620~^0.052^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~625~^0.035^6^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~626~^0.203^6^0.016^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~ -~23516~^~628~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~645~^2.980^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23516~^~646~^0.360^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23516~^~653~^0.070^6^0.006^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~663~^0.310^6^0.032^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~670~^0.021^6^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~674~^2.376^6^0.232^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~675~^0.271^6^0.027^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~687~^0.055^6^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23516~^~693~^0.310^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23516~^~851~^0.011^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23516~^~859~^0.213^6^0.022^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23517~^~312~^0.148^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~404~^0.075^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~405~^0.254^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~406~^3.121^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~415~^0.261^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~501~^0.317^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~502~^1.359^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~503~^1.518^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~504~^2.599^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~505~^2.759^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~506~^0.834^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~507~^0.316^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~508~^1.275^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~509~^1.078^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~510~^1.590^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~511~^1.981^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~512~^0.948^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~513~^1.777^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~514~^2.931^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~515~^4.713^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~516~^1.398^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~517~^1.243^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~518~^1.180^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~521~^0.136^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~606~^2.271^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~612~^0.140^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~613~^1.388^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~614~^0.727^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~615~^0.016^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~617~^3.186^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~618~^0.254^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~619~^0.026^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~620~^0.028^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~625~^0.050^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~626~^0.214^0^^~1~^~PAK~^^^^^^^^^^~07/01/2001~ -~23517~^~645~^3.450^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23517~^~646~^0.308^0^^~4~^~PIK~^^^^^^^^^^~07/01/2001~ -~23519~^~312~^0.121^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~404~^0.110^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~405~^0.229^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~406~^3.612^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~410~^0.000^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~ -~23519~^~415~^0.320^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~501~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~502~^1.189^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~503~^1.329^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~504~^2.275^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~505~^2.415^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~506~^0.730^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~508~^1.116^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~509~^0.943^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~510~^1.392^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~511~^1.734^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~512~^0.830^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~513~^1.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~514~^2.565^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~515~^4.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~516~^1.223^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~517~^1.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~518~^1.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~521~^0.119^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~606~^1.721^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~612~^0.071^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~613~^1.027^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~614~^0.613^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~617~^2.540^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~618~^0.301^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~619~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~620~^0.060^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~625~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~626~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23519~^~645~^2.721^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23519~^~646~^0.401^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~312~^0.112^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~404~^0.112^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~405~^0.232^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~406~^3.660^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~410~^0.742^0^^~4~^~BFPN~^~23121~^^^^^^^^^~07/01/2011~ -~23521~^~415~^0.324^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~501~^0.281^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~502~^1.205^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~503~^1.346^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~504~^2.305^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~505~^2.447^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~507~^0.280^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~508~^1.131^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~509~^0.956^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~510~^1.410^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~511~^1.757^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~512~^0.841^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~513~^1.576^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~514~^2.599^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~515~^4.180^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~516~^1.240^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~517~^1.103^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~518~^1.046^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~521~^0.120^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~606~^2.090^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~610~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~611~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~612~^0.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~613~^1.226^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~614~^0.744^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~617~^2.374^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~618~^0.285^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~619~^0.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~620~^0.050^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~625~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~626~^0.140^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~628~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23521~^~645~^2.555^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23521~^~646~^0.368^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~312~^0.111^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~404~^0.110^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~405~^0.229^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~406~^3.619^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~410~^0.892^0^^~4~^~BFPN~^~13650~^^^^^^^^^~07/01/2011~ -~23523~^~415~^0.320^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~501~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~502~^1.191^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~503~^1.329^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~504~^2.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~505~^2.416^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~506~^0.730^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~507~^0.277^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~508~^1.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~509~^0.944^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~510~^1.392^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~511~^1.736^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~512~^0.831^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~513~^1.558^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~514~^2.567^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~515~^4.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~516~^1.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~517~^1.090^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~518~^1.034^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~521~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~606~^4.162^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~610~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~611~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~612~^0.266^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~613~^2.471^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~614~^1.375^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~615~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~617~^5.825^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~618~^0.358^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~619~^0.072^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~625~^0.078^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~626~^0.362^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23523~^~645~^6.269^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23523~^~646~^0.459^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~312~^0.110^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~404~^0.138^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~405~^0.224^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~406~^3.970^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~410~^0.980^0^^~4~^~BFPN~^~13862~^^^^^^^^^~07/01/2011~ -~23525~^~415~^0.467^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~501~^0.277^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~502~^1.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~503~^1.323^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~504~^2.266^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~505~^2.405^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~506~^0.727^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~508~^1.111^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~509~^0.940^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~510~^1.386^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~511~^1.728^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~512~^0.828^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~513~^1.551^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~514~^2.556^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~515~^4.111^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~516~^1.223^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~517~^1.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~518~^1.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~521~^0.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~606~^3.533^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~611~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~612~^0.240^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~613~^2.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~614~^1.161^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~617~^3.867^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~618~^0.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~619~^0.053^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~620~^0.039^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~625~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~626~^0.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~628~^0.005^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23525~^~645~^4.195^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23525~^~646~^0.385^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23528~^~312~^0.095^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~315~^0.001^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~404~^0.082^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~405~^0.230^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~406~^3.251^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~410~^0.653^0^^~4~^~BFPN~^~23132~^^^^^^^^^~07/01/2011~ -~23528~^~415~^0.257^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~501~^0.266^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~502~^1.135^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~503~^1.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~504~^2.167^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~505~^2.300^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~506~^0.696^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~507~^0.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~508~^1.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~509~^0.899^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~510~^1.326^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~511~^1.654^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~512~^0.795^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~513~^1.487^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~514~^2.446^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~515~^3.936^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~516~^1.177^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~517~^1.042^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~518~^0.986^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~521~^0.109^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~606~^4.285^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~610~^0.024^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~611~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~612~^0.306^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~613~^2.633^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~614~^1.291^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~617~^5.361^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~618~^0.324^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~619~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~620~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~625~^0.036^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~626~^0.458^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~628~^0.015^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23528~^~645~^5.870^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23528~^~646~^0.461^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~312~^0.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~404~^0.092^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~405~^0.256^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~406~^3.599^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~410~^0.699^0^^~4~^~BFPN~^~23133~^^^^^^^^^~07/01/2011~ -~23531~^~415~^0.284^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~501~^0.295^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~502~^1.260^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~503~^1.406^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~504~^2.409^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~505~^2.557^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~506~^0.773^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~507~^0.293^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~508~^1.182^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~509~^0.999^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~510~^1.473^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~511~^1.837^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~512~^0.881^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~513~^1.650^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~514~^2.717^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~515~^4.371^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~516~^1.301^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~517~^1.155^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~518~^1.094^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~521~^0.124^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~606~^3.349^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~610~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~611~^0.011^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~612~^0.241^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~613~^2.049^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~614~^1.026^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~617~^3.802^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~618~^0.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~619~^0.076^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~625~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~626~^0.315^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2009~ -~23531~^~645~^4.173^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23531~^~646~^0.446^0^^~4~^~PIK~^^^^^^^^^^~04/01/2009~ -~23533~^~312~^0.106^4^0.004^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~315~^0.013^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~404~^0.079^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~405~^0.216^4^0.008^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~406~^5.553^4^0.151^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~410~^0.732^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~415~^0.673^4^0.014^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~501~^0.318^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~502~^1.241^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~503~^1.200^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~504~^2.270^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~505~^2.467^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~506~^0.801^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~507~^0.296^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~508~^1.074^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~509~^0.973^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~510~^1.275^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~511~^1.858^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~512~^0.914^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~513~^1.609^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~514~^2.531^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~515~^4.463^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~516~^1.287^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~517~^1.160^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~518~^1.084^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~521~^0.193^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23533~^~605~^0.368^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23533~^~606~^3.090^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23533~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~612~^0.199^4^0.024^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~613~^1.731^4^0.238^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~614~^1.063^4^0.126^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~615~^0.001^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~617~^3.406^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23533~^~618~^0.363^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23533~^~619~^0.014^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23533~^~620~^0.069^4^0.007^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~621~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23533~^~625~^0.047^4^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~626~^0.260^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23533~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~628~^0.003^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~629~^0.005^4^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23533~^~631~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23533~^~645~^3.785^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23533~^~646~^0.453^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23533~^~653~^0.087^4^0.010^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~654~^0.010^4^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~663~^0.368^4^0.053^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~670~^0.029^4^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~672~^0.000^4^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23533~^~673~^0.260^4^0.024^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~674~^3.038^4^0.341^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~675~^0.333^4^0.037^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~687~^0.069^4^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~693~^0.368^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23533~^~851~^0.014^4^0.002^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23533~^~859~^0.207^4^0.028^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~312~^0.101^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~315~^0.013^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~404~^0.099^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~405~^0.232^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~406~^5.375^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~410~^0.831^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~415~^0.664^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~501~^0.320^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~502~^1.250^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~503~^1.208^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~504~^2.285^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~505~^2.484^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~506~^0.807^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~507~^0.298^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~508~^1.081^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~509~^0.980^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~510~^1.284^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~511~^1.870^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~512~^0.920^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~513~^1.620^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~514~^2.548^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~515~^4.493^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~516~^1.296^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~517~^1.168^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~518~^1.091^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~521~^0.194^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23536~^~605~^0.424^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23536~^~606~^2.642^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23536~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~612~^0.183^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~613~^1.416^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~614~^0.957^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~615~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~617~^2.790^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23536~^~618~^0.295^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23536~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23536~^~620~^0.032^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~621~^0.001^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~625~^0.036^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~626~^0.195^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23536~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~628~^0.007^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~629~^0.003^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23536~^~631~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23536~^~645~^3.081^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23536~^~646~^0.343^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23536~^~653~^0.078^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~654~^0.005^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23536~^~663~^0.424^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~670~^0.027^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~672~^0.000^2^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23536~^~673~^0.195^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~674~^2.366^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~675~^0.267^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~687~^0.053^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~693~^0.424^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23536~^~851~^0.012^2^^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23536~^~859~^0.250^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23540~^~312~^0.093^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~404~^0.090^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~405~^0.191^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~406~^3.745^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~410~^0.608^0^^~4~^~BFPN~^~23214~^^^^^^^^^~07/01/2011~ -~23540~^~415~^0.321^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~501~^0.282^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~502~^1.207^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~503~^1.347^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~504~^2.307^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~505~^2.449^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~506~^0.740^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~507~^0.281^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~508~^1.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~509~^0.957^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~510~^1.411^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~511~^1.759^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~512~^0.843^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~513~^1.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~514~^2.602^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~515~^4.185^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~516~^1.245^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~517~^1.105^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~518~^1.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~521~^0.119^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~606~^4.666^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~610~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~612~^0.320^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~613~^2.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~614~^1.507^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~617~^5.568^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~618~^0.344^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~619~^0.063^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~620~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~625~^0.087^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~626~^0.394^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23540~^~645~^6.055^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23540~^~646~^0.436^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~312~^0.087^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~404~^0.115^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~405~^0.190^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~406~^4.193^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~410~^1.155^0^^~4~^~BFPN~^~23221~^^^^^^^^^~07/01/2011~ -~23541~^~415~^0.477^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~501~^0.254^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~502~^1.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~503~^1.211^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~504~^2.074^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~505~^2.201^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~506~^0.666^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~507~^0.253^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~508~^1.017^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~509~^0.860^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~510~^1.269^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~511~^1.582^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~512~^0.759^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~513~^1.421^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~514~^2.339^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~515~^3.764^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~516~^1.121^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~517~^0.995^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~518~^0.942^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~521~^0.106^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~606~^7.083^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~610~^0.013^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~611~^0.022^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~612~^0.373^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~613~^3.853^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~614~^2.793^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~615~^0.029^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~617~^8.014^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~618~^0.546^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~619~^0.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~620~^0.048^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~625~^0.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~626~^0.412^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~628~^0.008^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23541~^~645~^8.520^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23541~^~646~^0.702^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~312~^0.158^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~404~^0.128^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~405~^0.286^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~406~^4.225^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~410~^0.590^0^^~4~^~BFPN~^~13452~^^^^^^^^^~07/01/2011~ -~23545~^~415~^0.443^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~501~^0.324^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~502~^1.384^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~503~^1.545^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~504~^2.646^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~505~^2.809^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~506~^0.849^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~507~^0.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~508~^1.298^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~509~^1.097^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~510~^1.619^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~511~^2.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~512~^0.967^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~513~^1.811^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~514~^2.985^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~515~^4.801^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~516~^1.428^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~517~^1.268^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~518~^1.202^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~521~^0.137^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~606~^5.707^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~610~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~612~^0.363^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~613~^3.610^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~614~^1.687^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~615~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~617~^7.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~618~^0.395^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~619~^0.085^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~620~^0.058^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~625~^0.125^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~626~^0.516^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~628~^0.006^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23545~^~645~^7.763^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23545~^~646~^0.538^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~312~^0.117^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~404~^0.111^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~405~^0.230^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~406~^3.632^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~410~^0.730^0^^~4~^~BFPN~^~23119~^^^^^^^^^~07/01/2011~ -~23547~^~415~^0.321^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~501~^0.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~502~^1.196^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~503~^1.336^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~504~^2.287^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~505~^2.428^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~506~^0.734^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~507~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~508~^1.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~509~^0.948^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~510~^1.399^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~511~^1.743^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~512~^0.834^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~513~^1.564^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~514~^2.579^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~515~^4.147^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~516~^1.230^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~517~^1.094^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~518~^1.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~521~^0.119^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~606~^1.871^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~610~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~611~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~612~^0.086^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~613~^1.108^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~614~^0.666^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~615~^0.010^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~617~^2.473^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~618~^0.294^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~619~^0.038^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~620~^0.056^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~625~^0.040^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~626~^0.141^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~628~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23547~^~645~^2.654^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23547~^~646~^0.387^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~312~^0.111^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~404~^0.121^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~405~^0.227^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~406~^3.761^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~410~^0.937^0^^~4~^~BFPN~^~13598~^^^^^^^^^~07/01/2011~ -~23549~^~415~^0.380^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~501~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~502~^1.188^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~503~^1.327^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~504~^2.272^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~505~^2.412^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~506~^0.729^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~508~^1.114^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~509~^0.942^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~510~^1.390^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~511~^1.732^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~512~^0.830^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~513~^1.555^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~514~^2.563^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~515~^4.122^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~516~^1.225^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~517~^1.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~518~^1.032^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~521~^0.118^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~606~^3.906^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~610~^0.007^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~611~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~612~^0.255^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~613~^2.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~614~^1.288^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~615~^0.021^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~617~^5.028^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~618~^0.332^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~619~^0.064^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~620~^0.033^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~625~^0.070^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~626~^0.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~628~^0.004^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23549~^~645~^5.425^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23549~^~646~^0.429^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~312~^0.096^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~315~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~404~^0.086^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~405~^0.240^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~406~^3.393^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~410~^0.671^0^^~4~^~BFPN~^~23131~^^^^^^^^^~07/01/2011~ -~23552~^~415~^0.268^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~501~^0.278^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~502~^1.186^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~503~^1.322^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~504~^2.265^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~505~^2.404^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~506~^0.727^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~507~^0.276^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~508~^1.111^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~509~^0.940^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~510~^1.386^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~511~^1.729^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~512~^0.830^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~513~^1.553^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~514~^2.556^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~515~^4.113^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~516~^1.227^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~517~^1.088^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~518~^1.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~521~^0.115^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~606~^3.904^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~607~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~608~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~609~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~610~^0.019^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~611~^0.018^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~612~^0.279^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~613~^2.396^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~614~^1.183^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~615~^0.009^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~617~^4.727^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~618~^0.323^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~619~^0.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~620~^0.030^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~621~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~625~^0.041^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~626~^0.399^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~627~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~628~^0.012^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~629~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~630~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~631~^0.000^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~ -~23552~^~645~^5.179^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23552~^~646~^0.455^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~ -~23554~^~312~^0.104^6^0.003^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~315~^0.013^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~404~^0.089^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~405~^0.222^6^0.007^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~406~^5.481^6^0.121^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~410~^0.782^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~415~^0.669^6^0.011^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~501~^0.319^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~502~^1.245^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~503~^1.203^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~504~^2.276^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~505~^2.474^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~506~^0.804^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~507~^0.297^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~508~^1.077^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~509~^0.976^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~510~^1.279^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~511~^1.863^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~512~^0.917^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~513~^1.614^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~514~^2.537^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~515~^4.475^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~516~^1.291^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~517~^1.163^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~518~^1.087^0^^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~521~^0.193^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23554~^~605~^0.390^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23554~^~606~^2.911^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23554~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~610~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~611~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~612~^0.192^6^0.019^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~613~^1.605^6^0.192^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~614~^1.020^6^0.101^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~615~^0.002^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~617~^3.159^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23554~^~618~^0.335^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23554~^~619~^0.013^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23554~^~620~^0.054^6^0.006^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~621~^0.001^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~625~^0.043^6^0.004^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~626~^0.234^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~ -~23554~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~628~^0.005^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~629~^0.004^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~ -~23554~^~631~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~645~^3.503^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23554~^~646~^0.409^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23554~^~653~^0.084^6^0.008^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~654~^0.008^6^0.001^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23554~^~663~^0.390^6^0.043^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~670~^0.028^6^0.003^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~672~^0.000^6^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23554~^~673~^0.234^6^0.020^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~674~^2.769^6^0.275^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~675~^0.307^6^0.030^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~687~^0.063^6^0.005^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~693~^0.390^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~ -~23554~^~851~^0.013^6^0.001^~1~^~AR~^^^^^^^^^^~08/01/2015~ -~23554~^~859~^0.224^6^0.023^~1~^~AR~^^^^^^^^^^~07/01/2010~ -~23557~^~312~^0.078^36^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23557~^~404~^0.041^36^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~406~^5.494^36^0.162^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~410~^0.652^6^0.061^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~415~^0.392^36^0.019^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23557~^~501~^0.109^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~502~^0.829^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~503~^0.947^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~504~^1.671^0^^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~23557~^~505~^1.775^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~506~^0.551^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~507~^0.221^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~508~^0.836^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~509~^0.659^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~510~^1.053^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~511~^1.395^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~512~^0.696^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~513~^1.342^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~514~^1.930^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~515~^3.213^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~516~^1.454^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~517~^1.092^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~518~^0.858^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~605~^0.220^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23557~^~606~^2.182^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23557~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23557~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23557~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23557~^~610~^0.000^12^^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~611~^0.005^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~612~^0.125^47^0.019^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23557~^~613~^1.156^47^0.102^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23557~^~614~^0.813^47^0.068^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23557~^~615~^0.009^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~617~^1.909^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23557~^~618~^0.185^47^0.020^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23557~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23557~^~625~^0.023^47^0.006^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~626~^0.154^47^0.024^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23557~^~628~^0.014^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23557~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23557~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23557~^~645~^1.994^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23557~^~646~^0.257^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23557~^~652~^0.023^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~653~^0.052^47^0.008^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23557~^~663~^0.220^26^0.013^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23557~^~685~^0.008^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23557~^~687~^0.022^39^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23557~^~693~^0.220^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23557~^~851~^0.029^35^0.005^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23558~^~312~^0.096^36^0.009^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~315~^0.014^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~404~^0.042^36^0.005^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~406~^5.939^36^0.232^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~415~^0.412^36^0.021^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23558~^~501~^0.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~502~^1.017^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~503~^1.162^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~504~^2.049^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~505~^2.176^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~506~^0.676^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~507~^0.271^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~508~^1.025^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~509~^0.808^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~510~^1.291^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~511~^1.710^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~512~^0.854^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~513~^1.646^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~514~^2.366^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~515~^3.939^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~516~^1.783^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~517~^1.339^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~518~^1.052^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~605~^0.174^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23558~^~606~^2.976^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23558~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23558~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23558~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23558~^~610~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23558~^~611~^0.007^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~612~^0.173^47^0.018^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~613~^1.549^47^0.125^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~614~^1.122^47^0.121^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~617~^2.596^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23558~^~618~^0.228^47^0.022^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~619~^0.054^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23558~^~620~^0.045^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23558~^~625~^0.030^47^0.008^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23558~^~626~^0.203^47^0.032^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23558~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23558~^~628~^0.022^47^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23558~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23558~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23558~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23558~^~645~^2.720^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23558~^~646~^0.327^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23558~^~652~^0.033^47^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~653~^0.078^47^0.008^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~663~^0.174^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23558~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23558~^~687~^0.059^36^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23558~^~693~^0.174^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23558~^~851~^0.042^35^0.003^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~312~^0.091^12^0.006^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2011~ -~23559~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23559~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~406~^6.275^12^0.340^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~410~^0.646^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23559~^~415~^0.391^12^0.031^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23559~^~501~^0.131^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~502~^1.000^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~503~^1.142^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~504~^2.014^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~505~^2.139^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~506~^0.664^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~507~^0.266^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~508~^1.007^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~509~^0.794^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~510~^1.269^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~511~^1.681^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~512~^0.839^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~513~^1.618^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~514~^2.326^0^^~1~^~AR~^^^^^^^^^^~07/01/2002~ -~23559~^~515~^3.872^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~516~^1.753^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~517~^1.316^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~518~^1.034^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~605~^0.179^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23559~^~606~^2.589^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23559~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23559~^~610~^0.000^0^^~4~^~BFFN~^~23558~^^^^^^^^^~07/01/2014~ -~23559~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~612~^0.172^8^0.032^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~613~^1.408^8^0.240^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~614~^0.892^8^0.149^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~617~^2.409^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23559~^~618~^0.186^8^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23559~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~625~^0.041^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~626~^0.209^8^0.034^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~628~^0.020^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~ -~23559~^~645~^2.365^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23559~^~646~^0.284^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23559~^~652~^0.030^8^0.005^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~653~^0.071^8^0.013^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23559~^~663~^0.179^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23559~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~687~^0.049^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23559~^~693~^0.179^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23560~^~312~^0.106^12^0.011^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~315~^0.013^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~404~^0.042^12^0.007^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~406~^7.290^12^0.256^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~501~^0.148^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~502~^1.128^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~503~^1.289^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~504~^2.273^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23560~^~505~^2.415^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~506~^0.750^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~507~^0.300^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~508~^1.137^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~509~^0.897^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~510~^1.433^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~511~^1.898^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~512~^0.947^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~513~^1.826^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~514~^2.625^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~515~^4.371^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~516~^1.979^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~517~^1.486^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~518~^1.167^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~605~^0.162^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23560~^~606~^3.298^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23560~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23560~^~610~^0.000^0^^~4~^~BFFN~^~23558~^^^^^^^^^~03/01/2003~ -~23560~^~611~^0.005^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~612~^0.182^8^0.053^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~613~^1.495^8^0.360^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~614~^0.925^6^0.176^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~617~^2.516^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23560~^~618~^0.192^6^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23560~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~625~^0.043^8^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~626~^0.218^8^0.068^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~628~^0.020^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23560~^~645~^3.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23560~^~646~^0.362^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23560~^~652~^0.032^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~653~^0.075^8^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~663~^0.162^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23560~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~687~^0.051^8^0.018^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23560~^~693~^0.162^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23561~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~315~^0.010^12^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~404~^0.034^12^0.005^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~406~^5.528^12^0.273^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~410~^0.654^6^0.057^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~415~^0.357^12^0.023^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~501~^0.139^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~502~^1.056^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~503~^1.207^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~504~^2.128^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23561~^~505~^2.261^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~506~^0.702^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~507~^0.281^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~508~^1.065^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~509~^0.840^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~510~^1.341^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~511~^1.776^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~512~^0.887^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~513~^1.709^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~514~^2.458^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~515~^4.092^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~516~^1.852^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~517~^1.391^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~518~^1.093^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~605~^0.173^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23561~^~606~^2.788^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23561~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23561~^~610~^0.000^0^^~4~^~BFFN~^~23558~^^^^^^^^^~03/01/2003~ -~23561~^~611~^0.005^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~612~^0.169^8^0.030^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~613~^1.408^8^0.148^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~614~^0.885^7^0.102^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~615~^0.012^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~617~^2.357^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23561~^~618~^0.184^8^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23561~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~625~^0.040^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~626~^0.203^8^0.037^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~628~^0.019^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23561~^~645~^2.547^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23561~^~646~^0.306^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23561~^~652~^0.030^8^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~653~^0.070^8^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~663~^0.173^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23561~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~687~^0.047^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23561~^~693~^0.173^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23562~^~312~^0.072^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~04/01/2009~ -~23562~^~404~^0.042^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~406~^5.072^36^0.131^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~410~^0.601^6^0.040^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~415~^0.369^36^0.015^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23562~^~501~^0.102^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~502~^0.775^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~503~^0.885^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~504~^1.560^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~505~^1.658^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~506~^0.515^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~507~^0.206^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~508~^0.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~509~^0.616^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~510~^0.983^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~511~^1.302^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~512~^0.650^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~513~^1.253^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~514~^1.802^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~515~^3.000^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~516~^1.358^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~517~^1.020^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~518~^0.801^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~605~^0.540^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23562~^~606~^3.927^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23562~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23562~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23562~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23562~^~610~^0.000^12^^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~611~^0.008^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~612~^0.276^47^0.013^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23562~^~613~^2.167^47^0.071^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23562~^~614~^1.311^47^0.050^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23562~^~615~^0.011^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~617~^3.830^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23562~^~618~^0.263^47^0.018^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~619~^0.046^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23562~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23562~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23562~^~625~^0.070^47^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~626~^0.344^47^0.016^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23562~^~628~^0.032^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23562~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23562~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23562~^~645~^4.194^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23562~^~646~^0.345^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23562~^~652~^0.046^47^0.002^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23562~^~653~^0.108^47^0.006^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23562~^~663~^0.540^26^0.009^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23562~^~685~^0.010^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~687~^0.069^39^0.016^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23562~^~693~^0.540^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23562~^~851~^0.036^35^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~312~^0.090^36^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~315~^0.013^36^0.001^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~404~^0.044^36^0.004^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~406~^5.659^36^0.214^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~415~^0.397^36^0.016^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23563~^~501~^0.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~502~^1.010^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~503~^1.154^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~504~^2.035^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~505~^2.161^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~506~^0.671^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~507~^0.269^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~508~^1.018^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~509~^0.803^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~510~^1.282^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~511~^1.698^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~512~^0.848^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~513~^1.634^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~514~^2.350^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~515~^3.912^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~516~^1.771^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~517~^1.330^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~518~^1.045^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~605~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23563~^~606~^4.628^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23563~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23563~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23563~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23563~^~610~^0.000^0^^~4~^~BFFN~^~23562~^^^^^^^^^~06/01/2014~ -~23563~^~611~^0.009^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~612~^0.315^47^0.009^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23563~^~613~^2.517^47^0.054^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23563~^~614~^1.595^47^0.057^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23563~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~617~^4.407^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23563~^~618~^0.314^47^0.015^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23563~^~620~^0.048^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23563~^~625~^0.078^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~626~^0.396^47^0.014^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23563~^~628~^0.034^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23563~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23563~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23563~^~645~^4.943^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23563~^~646~^0.421^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23563~^~652~^0.054^47^0.002^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23563~^~653~^0.125^47^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23563~^~663~^0.373^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23563~^~685~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23563~^~687~^0.102^36^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23563~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23563~^~851~^0.045^35^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~312~^0.086^12^0.005^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2011~ -~23564~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~406~^6.027^12^0.255^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~410~^0.636^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23564~^~415~^0.379^12^0.020^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~501~^0.128^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~502~^0.976^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~503~^1.115^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~504~^1.967^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~505~^2.089^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~506~^0.649^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~507~^0.260^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~508~^0.984^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~509~^0.776^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~510~^1.239^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~511~^1.641^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~512~^0.819^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~513~^1.580^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~514~^2.271^0^^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23564~^~515~^3.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~516~^1.712^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~517~^1.285^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~518~^1.010^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~605~^0.397^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23564~^~606~^4.189^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23564~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23564~^~610~^0.000^0^^~4~^~BFFN~^~23563~^^^^^^^^^~03/01/2003~ -~23564~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~612~^0.282^8^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~613~^2.239^8^0.192^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~614~^1.337^8^0.119^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~617~^3.797^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23564~^~618~^0.274^8^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23564~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~625~^0.071^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~626~^0.346^8^0.027^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~628~^0.032^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23564~^~645~^4.473^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23564~^~646~^0.381^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23564~^~652~^0.047^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~653~^0.112^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~663~^0.397^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23564~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~687~^0.088^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23564~^~693~^0.397^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23565~^~312~^0.099^12^0.009^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~315~^0.013^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~404~^0.043^12^0.004^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~406~^6.804^12^0.170^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~501~^0.144^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~502~^1.100^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~503~^1.257^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~504~^2.217^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23565~^~505~^2.355^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~506~^0.731^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~507~^0.293^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~508~^1.109^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~509~^0.875^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~510~^1.397^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~511~^1.850^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~512~^0.924^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~513~^1.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~514~^2.560^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~515~^4.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~516~^1.930^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~517~^1.449^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~518~^1.138^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~605~^0.359^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23565~^~606~^4.712^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23565~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23565~^~610~^0.000^0^^~4~^~BFFN~^~23563~^^^^^^^^^~03/01/2003~ -~23565~^~611~^0.006^8^0.000^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~612~^0.341^8^0.043^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23565~^~613~^2.659^8^0.289^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23565~^~614~^1.506^6^0.175^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23565~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~617~^4.833^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23565~^~618~^0.323^6^0.026^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23565~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~625~^0.093^8^0.013^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~626~^0.439^8^0.055^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~628~^0.045^8^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23565~^~645~^5.033^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23565~^~646~^0.428^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23565~^~652~^0.058^8^0.007^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23565~^~653~^0.134^8^0.015^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23565~^~663~^0.359^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23565~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~687~^0.112^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23565~^~693~^0.359^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23566~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~315~^0.010^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~404~^0.037^12^0.003^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~406~^5.228^12^0.212^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23566~^~410~^0.626^6^0.038^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~415~^0.347^12^0.018^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~501~^0.135^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~502~^1.030^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~503~^1.176^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~504~^2.075^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~505~^2.204^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~506~^0.684^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~507~^0.274^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~508~^1.038^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~509~^0.818^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~510~^1.307^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~511~^1.732^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~512~^0.864^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~513~^1.666^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~514~^2.396^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~515~^3.989^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~516~^1.806^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~517~^1.356^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~518~^1.065^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~605~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23566~^~606~^4.375^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23566~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23566~^~610~^0.000^0^^~4~^~BFFN~^~23563~^^^^^^^^^~03/01/2003~ -~23566~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~612~^0.319^8^0.024^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23566~^~613~^2.423^8^0.125^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23566~^~614~^1.434^7^0.093^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23566~^~615~^0.012^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~617~^4.324^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23566~^~618~^0.282^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23566~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~625~^0.082^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~626~^0.391^8^0.030^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~628~^0.038^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23566~^~645~^4.672^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23566~^~646~^0.398^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23566~^~652~^0.054^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~653~^0.126^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~663~^0.373^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23566~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~687~^0.099^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23566~^~693~^0.373^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~312~^0.067^36^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~404~^0.042^36^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~406~^4.649^36^0.116^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~410~^0.549^6^0.028^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~415~^0.346^36^0.013^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~501~^0.094^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~502~^0.720^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~503~^0.822^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~504~^1.450^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~505~^1.540^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~506~^0.478^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~507~^0.191^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~508~^0.725^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~509~^0.572^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~510~^0.914^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~511~^1.210^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~512~^0.604^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~513~^1.165^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~514~^1.674^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~515~^2.788^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~516~^1.262^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~517~^0.948^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~518~^0.744^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~605~^0.860^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~606~^5.715^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23567~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23567~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23567~^~610~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~611~^0.011^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~612~^0.431^47^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~613~^3.200^47^0.052^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~614~^1.824^47^0.040^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~615~^0.014^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~617~^5.751^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23567~^~618~^0.331^47^0.016^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~619~^0.054^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23567~^~620~^0.034^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~624~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~625~^0.116^47^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~626~^0.534^47^0.012^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23567~^~628~^0.049^47^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23567~^~631~^0.012^15^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~645~^6.469^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~646~^0.433^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~652~^0.070^47^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~653~^0.165^47^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~663~^0.860^26^0.010^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23567~^~672~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~687~^0.117^39^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23567~^~689~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~693~^0.860^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23567~^~697~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23567~^~851~^0.042^35^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~312~^0.085^36^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~315~^0.012^36^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~404~^0.046^36^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~406~^5.378^36^0.206^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~415~^0.382^36^0.013^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~501~^0.094^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~502~^0.720^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~503~^0.822^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~504~^1.450^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~505~^1.540^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~506~^0.478^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~507~^0.191^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~508~^0.725^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~509~^0.572^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~510~^0.914^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~511~^1.210^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~512~^0.604^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~513~^1.165^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~514~^1.674^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~515~^2.788^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~516~^1.262^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~517~^0.948^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~518~^0.744^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~521~^0.376^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2014~ -~23568~^~605~^0.572^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~606~^5.895^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23568~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23568~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23568~^~610~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~611~^0.011^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2003~ -~23568~^~612~^0.428^47^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~613~^3.278^47^0.058^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~614~^1.930^47^0.063^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~617~^5.799^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23568~^~618~^0.361^47^0.016^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23568~^~620~^0.047^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~624~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~06/01/2003~ -~23568~^~625~^0.115^47^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~626~^0.544^47^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23568~^~628~^0.045^47^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23568~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~645~^6.668^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~646~^0.484^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~652~^0.071^47^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~653~^0.164^47^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~663~^0.572^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23568~^~672~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~06/01/2003~ -~23568~^~685~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23568~^~687~^0.136^36^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23568~^~689~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~06/01/2003~ -~23568~^~693~^0.572^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23568~^~697~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~06/01/2003~ -~23568~^~851~^0.044^35^0.003^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23569~^~312~^0.081^12^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23569~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~406~^5.778^12^0.212^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~410~^0.728^0^^~4~^~BFPN~^~23568~^^^^^^^^^~05/01/2014~ -~23569~^~415~^0.367^12^0.014^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~501~^0.125^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~502~^0.952^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~503~^1.088^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~504~^1.919^0^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~505~^2.038^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~506~^0.633^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~508~^0.960^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~509~^0.757^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~510~^1.209^0^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~511~^1.602^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~512~^0.800^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~513~^1.541^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~514~^2.216^0^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23569~^~515~^3.690^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~516~^1.670^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~517~^1.254^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~518~^0.985^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~521~^0.357^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~ -~23569~^~605~^0.615^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23569~^~606~^5.331^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23569~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23569~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23569~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23569~^~610~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23569~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~612~^0.367^8^0.029^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~613~^2.851^8^0.220^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~614~^1.640^8^0.136^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~617~^4.902^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23569~^~618~^0.331^8^0.022^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23569~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23569~^~624~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23569~^~625~^0.097^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~626~^0.454^8^0.031^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~627~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2003~ -~23569~^~628~^0.042^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23569~^~630~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2003~ -~23569~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23569~^~645~^6.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23569~^~646~^0.438^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23569~^~652~^0.061^8^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~653~^0.143^8^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~663~^0.615^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23569~^~672~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23569~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~687~^0.119^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23569~^~689~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23569~^~693~^0.615^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23569~^~697~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23569~^~851~^0.047^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2003~ -~23570~^~312~^0.093^12^0.007^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~404~^0.044^12^0.003^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~406~^6.318^12^0.118^~1~^~AR~^^^^^^^^^^~06/01/2002~ -~23570~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~501~^0.141^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~502~^1.073^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~503~^1.225^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~504~^2.161^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23570~^~505~^2.295^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~506~^0.713^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~507~^0.285^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~508~^1.081^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~509~^0.852^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~510~^1.362^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~511~^1.804^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~512~^0.900^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~513~^1.736^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~514~^2.495^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~515~^4.155^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~516~^1.881^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~517~^1.412^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~518~^1.109^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~521~^0.402^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2014~ -~23570~^~605~^0.556^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23570~^~606~^5.806^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23570~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23570~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23570~^~610~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~03/01/2003~ -~23570~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~612~^0.415^8^0.049^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~613~^3.175^8^0.330^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~614~^1.973^6^0.208^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~615~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~617~^6.132^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23570~^~618~^0.400^6^0.031^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23570~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~621~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2014~ -~23570~^~625~^0.123^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~626~^0.568^8^0.062^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~627~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2003~ -~23570~^~628~^0.057^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~629~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2014~ -~23570~^~630~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2003~ -~23570~^~631~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~06/01/2014~ -~23570~^~645~^6.572^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~646~^0.477^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23570~^~652~^0.069^8^0.008^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~653~^0.160^8^0.017^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23570~^~663~^0.556^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23570~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~687~^0.147^8^0.017^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23570~^~693~^0.556^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23571~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~315~^0.010^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~404~^0.040^12^0.002^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~406~^4.927^12^0.182^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~410~^0.598^6^0.027^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~415~^0.338^12^0.016^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~501~^0.132^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~502~^1.003^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~503~^1.146^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~504~^2.021^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~505~^2.147^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~506~^0.667^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~507~^0.267^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~508~^1.011^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~509~^0.797^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~510~^1.274^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~511~^1.687^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~512~^0.842^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~513~^1.624^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~514~^2.334^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23571~^~515~^3.886^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~516~^1.759^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~517~^1.321^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~518~^1.038^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~521~^0.376^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2014~ -~23571~^~605~^0.573^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23571~^~606~^5.497^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23571~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23571~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23571~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23571~^~610~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~611~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~612~^0.400^8^0.028^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~613~^3.083^8^0.135^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~614~^1.774^7^0.095^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~615~^0.011^8^0.002^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~617~^5.570^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23571~^~618~^0.354^8^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23571~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23571~^~624~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~625~^0.111^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~626~^0.513^8^0.034^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~627~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~628~^0.051^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23571~^~630~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~631~^0.016^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23571~^~645~^6.222^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23571~^~646~^0.452^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~23571~^~652~^0.066^8^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~653~^0.155^8^0.010^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23571~^~663~^0.573^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23571~^~672~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~687~^0.133^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23571~^~689~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~693~^0.573^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23571~^~697~^0.000^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23571~^~851~^0.048^0^^~4~^~BFFN~^~23568~^^^^^^^^^~04/01/2005~ -~23572~^~312~^0.061^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~315~^0.010^36^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23572~^~404~^0.043^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~406~^4.227^36^0.122^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~410~^0.498^6^0.035^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~415~^0.323^36^0.014^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23572~^~501~^0.087^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~502~^0.665^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~503~^0.759^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~504~^1.339^0^^~1~^~AR~^^^^^^^^^^~10/01/2003~ -~23572~^~505~^1.423^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~506~^0.442^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~507~^0.177^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~508~^0.670^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~509~^0.528^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~510~^0.844^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~511~^1.118^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~512~^0.558^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~513~^1.076^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~514~^1.547^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~515~^2.575^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~516~^1.166^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~517~^0.875^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~518~^0.688^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~605~^1.180^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23572~^~606~^7.581^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23572~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23572~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23572~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23572~^~610~^0.000^12^^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~611~^0.014^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~612~^0.592^47^0.011^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~613~^4.279^47^0.061^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~614~^2.362^47^0.044^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~615~^0.016^47^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~617~^7.672^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23572~^~618~^0.420^47^0.017^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23572~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23572~^~625~^0.162^47^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~626~^0.724^47^0.014^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23572~^~628~^0.066^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23572~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23572~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23572~^~645~^8.848^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23572~^~646~^0.521^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23572~^~652~^0.095^47^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~653~^0.224^47^0.005^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~663~^1.180^26^0.015^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23572~^~685~^0.015^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23572~^~687~^0.164^39^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23572~^~693~^1.180^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23572~^~851~^0.051^35^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~312~^0.080^36^0.008^~1~^~AR~^^^^^^^^^^~04/01/2005~ -~23573~^~315~^0.011^36^0.001^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~404~^0.047^36^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~406~^5.098^36^0.209^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~415~^0.366^36^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~501~^0.131^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~502~^0.996^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~503~^1.138^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~504~^2.007^0^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23573~^~505~^2.131^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~506~^0.662^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~507~^0.265^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~508~^1.004^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~509~^0.792^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~510~^1.264^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~511~^1.675^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~512~^0.836^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~513~^1.612^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~514~^2.317^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~515~^3.858^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~516~^1.747^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~517~^1.311^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~518~^1.030^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~605~^0.771^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~606~^6.764^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23573~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23573~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23573~^~610~^0.000^0^^~4~^~BFFN~^~23572~^^^^^^^^^~06/01/2014~ -~23573~^~611~^0.012^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~612~^0.507^47^0.009^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~613~^3.787^47^0.055^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~614~^2.104^47^0.059^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~617~^6.772^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23573~^~618~^0.398^47^0.015^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23573~^~620~^0.048^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23573~^~625~^0.142^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~626~^0.646^47^0.015^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23573~^~628~^0.056^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23573~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23573~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23573~^~645~^7.895^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~646~^0.517^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~652~^0.082^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~653~^0.191^47^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~663~^0.771^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23573~^~685~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23573~^~687~^0.161^36^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23573~^~693~^0.771^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23573~^~851~^0.045^35^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~312~^0.076^12^0.004^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23574~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~406~^5.530^12^0.235^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~410~^0.615^0^^~4~^~BFPN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~415~^0.356^12^0.018^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~501~^0.122^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~502~^0.930^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~503~^1.062^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~504~^1.873^0^^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23574~^~505~^1.990^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~506~^0.618^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~507~^0.247^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~508~^0.937^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~509~^0.739^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~510~^1.180^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~511~^1.564^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~512~^0.781^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~513~^1.505^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~514~^2.163^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~515~^3.602^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~516~^1.631^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~517~^1.224^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~518~^0.962^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~605~^0.833^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~606~^6.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23574~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23574~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23574~^~610~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~03/01/2003~ -~23574~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~612~^0.431^8^0.028^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~613~^3.265^8^0.209^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~614~^1.815^8^0.129^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~617~^5.724^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23574~^~618~^0.359^8^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23574~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~621~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~625~^0.120^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~626~^0.534^8^0.030^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23574~^~628~^0.049^8^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~629~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23574~^~631~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23574~^~645~^7.037^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~646~^0.461^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23574~^~652~^0.071^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~653~^0.165^8^0.011^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~663~^0.833^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23574~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~687~^0.141^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23574~^~693~^0.833^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~312~^0.087^12^0.008^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~404~^0.045^12^0.004^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~406~^5.831^12^0.142^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23575~^~501~^0.137^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~502~^1.045^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~503~^1.193^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~504~^2.105^0^^~1~^~AR~^^^^^^^^^^~04/01/2003~ -~23575~^~505~^2.235^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~506~^0.694^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~507~^0.278^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~508~^1.053^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~509~^0.830^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~510~^1.326^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~511~^1.756^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~512~^0.877^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~513~^1.690^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~514~^2.430^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~515~^4.046^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~516~^1.832^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~517~^1.375^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~518~^1.080^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~605~^0.753^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~606~^6.546^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~607~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~06/01/2014~ -~23575~^~608~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~06/01/2014~ -~23575~^~609~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~06/01/2014~ -~23575~^~610~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~03/01/2003~ -~23575~^~611~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~612~^0.443^8^0.047^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~613~^3.344^8^0.313^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~614~^2.501^6^0.695^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~615~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~617~^6.414^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23575~^~618~^0.424^6^0.102^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23575~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~621~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~625~^0.135^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~626~^0.603^8^0.059^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~627~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~628~^0.057^8^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~629~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~630~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~631~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23575~^~645~^7.640^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~646~^0.501^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23575~^~652~^0.072^8^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~653~^0.169^8^0.016^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23575~^~663~^0.753^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23575~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~687~^0.157^8^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23575~^~693~^0.753^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~315~^0.009^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~404~^0.044^12^0.003^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~406~^4.627^12^0.198^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~410~^0.569^6^0.033^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~415~^0.329^12^0.017^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~501~^0.128^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~502~^0.977^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~503~^1.116^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~504~^1.968^0^^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23576~^~505~^2.090^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~506~^0.649^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~507~^0.260^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~508~^0.984^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~509~^0.776^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~510~^1.240^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~511~^1.642^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~512~^0.820^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~513~^1.580^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~514~^2.272^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~515~^3.783^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~516~^1.713^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~517~^1.286^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~518~^1.010^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~605~^0.773^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~606~^6.159^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23576~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23576~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~23576~^~610~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~03/01/2003~ -~23576~^~611~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~612~^0.429^8^0.026^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~613~^3.504^8^0.178^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~614~^1.974^7^0.117^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~615~^0.011^8^0.002^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~617~^6.096^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23576~^~618~^0.399^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23576~^~620~^0.041^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~621~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23576~^~625~^0.127^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~626~^0.568^8^0.032^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23576~^~628~^0.060^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~629~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23576~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23576~^~631~^0.000^0^^~4~^~BFFN~^~23573~^^^^^^^^^~05/01/2014~ -~23576~^~645~^7.189^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~646~^0.471^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23576~^~652~^0.070^8^0.004^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~653~^0.164^8^0.009^~1~^~AR~^^^^^^^^^^~07/01/2014~ -~23576~^~663~^0.773^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23576~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~687~^0.147^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23576~^~693~^0.773^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~312~^0.056^36^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~315~^0.009^36^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23577~^~404~^0.044^36^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~405~^0.151^36^0.010^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~406~^3.804^36^0.148^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~410~^0.446^6^0.054^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~415~^0.301^36^0.017^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23577~^~501~^0.080^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~502~^0.610^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~503~^0.697^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~504~^1.229^0^^~1~^~AR~^^^^^^^^^^~07/01/2002~ -~23577~^~505~^1.305^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~506~^0.405^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~507~^0.162^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~508~^0.615^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~509~^0.485^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~510~^0.774^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~511~^1.026^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~512~^0.512^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~513~^0.987^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~514~^1.419^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~515~^2.363^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~516~^1.070^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~517~^0.803^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~518~^0.631^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~521~^0.272^12^0.024^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~605~^1.500^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~606~^9.568^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23577~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23577~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23577~^~610~^0.000^12^^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~611~^0.017^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~612~^0.759^47^0.016^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~613~^5.405^47^0.088^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~614~^2.924^47^0.058^~1~^~AR~^^^^^^^^^^~07/01/2004~ -~23577~^~615~^0.019^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~617~^9.593^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23577~^~618~^0.498^47^0.019^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~619~^0.074^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23577~^~620~^0.035^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23577~^~625~^0.209^47^0.005^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~626~^0.914^47^0.021^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23577~^~628~^0.084^47^0.002^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23577~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23577~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23577~^~645~^11.383^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~646~^0.609^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~652~^0.122^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~653~^0.286^47^0.007^~1~^~AR~^^^^^^^^^^~07/01/2004~ -~23577~^~663~^1.500^26^0.021^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23577~^~685~^0.017^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23577~^~687~^0.211^39^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23577~^~693~^1.500^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23577~^~851~^0.058^35^0.004^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~312~^0.075^36^0.009^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~315~^0.010^36^0.002^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~404~^0.049^36^0.005^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~405~^0.176^36^0.016^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~406~^4.818^36^0.223^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~410~^0.658^6^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~415~^0.351^36^0.018^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23578~^~501~^0.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~502~^0.989^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~503~^1.130^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~504~^1.992^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~505~^2.116^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~506~^0.657^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~507~^0.263^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~508~^0.997^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~509~^0.786^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~510~^1.255^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~511~^1.663^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~512~^0.830^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~513~^1.600^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~514~^2.301^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~515~^3.831^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~516~^1.734^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~517~^1.302^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~518~^1.023^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~605~^0.969^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~606~^7.248^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23578~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23578~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23578~^~610~^0.000^47^0.000^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~611~^0.014^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~612~^0.554^47^0.012^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~613~^4.077^47^0.078^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~614~^2.136^47^0.075^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~615~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~617~^7.325^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23578~^~618~^0.409^47^0.017^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23578~^~620~^0.048^47^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23578~^~625~^0.157^47^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~626~^0.703^47^0.020^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23578~^~628~^0.065^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23578~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23578~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23578~^~645~^8.624^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~646~^0.520^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~652~^0.089^47^0.003^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~653~^0.209^47^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~663~^0.969^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23578~^~685~^0.013^47^0.001^~1~^~AR~^^^^^^^^^^~03/01/2003~ -~23578~^~687~^0.176^36^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23578~^~693~^0.969^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23578~^~851~^0.045^35^0.003^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~312~^0.071^12^0.005^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~03/01/2009~ -~23579~^~404~^0.043^12^0.003^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~405~^0.177^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~406~^5.282^12^0.310^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~410~^0.604^0^^~4~^~BFPN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~415~^0.344^12^0.027^~1~^~AR~^^^^^^^^^^~03/01/2002~ -~23579~^~501~^0.119^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~502~^0.905^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~503~^1.034^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~504~^1.824^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~505~^1.938^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~506~^0.602^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~507~^0.241^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~508~^0.912^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~509~^0.720^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~510~^1.149^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~511~^1.523^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~512~^0.760^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~513~^1.465^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~514~^2.106^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~515~^3.507^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~516~^1.588^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~517~^1.192^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~518~^0.937^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~605~^1.052^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~606~^6.281^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23579~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23579~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~ -~23579~^~610~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~02/01/2006~ -~23579~^~611~^0.007^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~612~^0.474^8^0.050^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~613~^3.481^8^0.378^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~614~^1.860^8^0.234^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~617~^6.265^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23579~^~618~^0.358^8^0.037^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23579~^~620~^0.043^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~621~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~625~^0.138^8^0.012^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~626~^0.585^8^0.053^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~627~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~02/01/2006~ -~23579~^~628~^0.054^8^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~629~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~630~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~02/01/2006~ -~23579~^~631~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23579~^~645~^7.472^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~646~^0.451^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23579~^~652~^0.078^8^0.008^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~653~^0.178^8^0.020^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~663~^1.052^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23579~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~687~^0.156^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23579~^~693~^1.052^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~312~^0.080^12^0.010^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~315~^0.012^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~404~^0.046^12^0.006^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~405~^0.191^12^0.009^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~406~^5.345^12^0.219^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23580~^~410~^0.807^6^0.036^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~415~^0.428^12^0.019^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~501~^0.133^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~502~^1.017^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~503~^1.161^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~504~^2.048^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~505~^2.176^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~506~^0.676^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~507~^0.270^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~508~^1.024^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~509~^0.808^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~510~^1.291^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~511~^1.709^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~512~^0.853^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~513~^1.645^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~514~^2.365^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~515~^3.938^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~516~^1.783^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~517~^1.338^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~518~^1.052^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~605~^0.950^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~606~^6.926^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23580~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23580~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23580~^~610~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~04/01/2005~ -~23580~^~611~^0.010^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~612~^0.420^8^0.084^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23580~^~613~^3.112^8^0.567^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23580~^~614~^3.151^6^1.569^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23580~^~615~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~617~^5.679^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23580~^~618~^0.394^6^0.231^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23580~^~620~^0.046^8^0.004^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~621~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23580~^~625~^0.128^8^0.025^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~626~^0.546^8^0.107^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~627~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~04/01/2005~ -~23580~^~628~^0.045^8^0.021^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~629~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23580~^~630~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~04/01/2005~ -~23580~^~631~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23580~^~645~^8.240^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~646~^0.497^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23580~^~652~^0.067^8^0.013^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23580~^~653~^0.157^8^0.030^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23580~^~663~^0.950^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23580~^~685~^0.009^8^0.001^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~687~^0.141^8^0.029^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23580~^~693~^0.950^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~312~^0.079^12^0.006^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~315~^0.009^12^0.001^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~404~^0.047^12^0.004^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~405~^0.171^12^0.005^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~406~^4.327^12^0.251^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~410~^0.541^6^0.051^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~415~^0.320^12^0.021^~1~^~AR~^^^^^^^^^^~04/01/2002~ -~23581~^~501~^0.125^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~502~^0.950^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~503~^1.085^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~504~^1.914^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~505~^2.033^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~506~^0.631^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~507~^0.253^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~508~^0.957^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~509~^0.755^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~510~^1.206^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~511~^1.598^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~512~^0.797^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~513~^1.537^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~514~^2.210^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~515~^3.680^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~516~^1.666^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~517~^1.251^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~518~^0.983^0^^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~605~^0.973^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~606~^6.356^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23581~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23581~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~ -~23581~^~610~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~03/01/2003~ -~23581~^~611~^0.008^8^0.002^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~612~^0.407^8^0.048^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~613~^3.682^8^0.403^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~614~^2.031^7^0.271^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~615~^0.011^8^0.002^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~617~^5.900^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23581~^~618~^0.408^8^0.031^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~619~^0.008^0^^~1~^~AS~^^^^^^^^^^~08/01/2017~ -~23581~^~620~^0.040^8^0.004^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~621~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23581~^~625~^0.130^8^0.014^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~626~^0.558^8^0.059^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23581~^~628~^0.063^8^0.007^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~629~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23581~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~ -~23581~^~631~^0.000^0^^~4~^~BFFN~^~23578~^^^^^^^^^~05/01/2014~ -~23581~^~645~^7.562^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~646~^0.456^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23581~^~652~^0.065^8^0.007^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~653~^0.153^8^0.017^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~663~^0.973^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~23581~^~685~^0.008^8^0.001^~1~^~AR~^^^^^^^^^^~06/01/2014~ -~23581~^~687~^0.144^8^0.015^~1~^~AR~^^^^^^^^^^~05/01/2014~ -~23581~^~693~^0.973^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~23582~^~312~^0.076^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23582~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~405~^0.121^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~406~^6.544^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~410~^0.662^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~415~^0.635^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23582~^~501~^0.148^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~502~^0.900^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~503~^1.025^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~504~^1.792^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~505~^1.904^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~506~^0.587^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~507~^0.291^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~508~^0.890^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~509~^0.718^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~510~^1.118^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~511~^1.457^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~512~^0.719^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~513~^1.370^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~514~^2.052^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~515~^3.382^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~516~^1.372^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~517~^1.074^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~518~^0.887^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23582~^~521~^0.237^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23582~^~606~^1.553^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23582~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~23582~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~612~^0.106^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~613~^0.932^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~614~^0.515^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~617~^1.558^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~618~^0.146^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~619~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~626~^0.130^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23582~^~645~^1.690^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23582~^~646~^0.182^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~312~^0.076^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23583~^~404~^0.074^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~405~^0.118^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~406~^6.408^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~410~^0.648^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~415~^0.622^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23583~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~502~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~503~^1.003^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~504~^1.754^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~505~^1.864^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~506~^0.574^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~508~^0.871^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~509~^0.703^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~510~^1.094^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~511~^1.426^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~512~^0.704^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~513~^1.341^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~514~^2.009^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~515~^3.311^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~516~^1.343^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~517~^1.051^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~518~^0.869^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23583~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23583~^~606~^2.191^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~612~^0.150^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~613~^1.315^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~614~^0.726^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~617~^2.198^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~618~^0.206^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~619~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~620~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~626~^0.183^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23583~^~645~^2.384^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23583~^~646~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~312~^0.077^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23584~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~405~^0.120^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~406~^6.469^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~410~^0.654^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~415~^0.628^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23584~^~501~^0.146^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~502~^0.889^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~503~^1.013^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~504~^1.771^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~505~^1.882^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~506~^0.580^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~507~^0.287^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~508~^0.879^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~509~^0.710^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~510~^1.105^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~511~^1.440^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~512~^0.711^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~513~^1.354^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~514~^2.028^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~515~^3.343^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~516~^1.356^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~517~^1.061^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~518~^0.877^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23584~^~521~^0.234^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23584~^~606~^1.307^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23584~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23584~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23584~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~612~^0.089^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~613~^0.784^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~614~^0.433^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~617~^1.311^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~618~^0.123^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23584~^~626~^0.109^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23584~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23584~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23584~^~645~^1.422^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23584~^~646~^0.167^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23585~^~312~^0.078^3^0.007^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~315~^0.011^3^0.000^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~404~^0.078^3^0.013^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~405~^0.124^3^0.023^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~406~^6.703^3^0.392^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~410~^0.678^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23585~^~415~^0.651^3^0.026^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~501~^0.152^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~502~^0.922^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~503~^1.050^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~504~^1.835^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~505~^1.950^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~506~^0.601^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~507~^0.298^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~508~^0.911^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~509~^0.735^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~510~^1.145^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~511~^1.492^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~512~^0.736^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~513~^1.403^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~514~^2.102^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~515~^3.464^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~516~^1.405^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~517~^1.100^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~518~^0.909^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~521~^0.242^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23585~^~606~^1.432^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23585~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23585~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23585~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23585~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~612~^0.098^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~613~^0.860^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~614~^0.475^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~617~^1.437^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~618~^0.135^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~619~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~626~^0.120^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23585~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23585~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23585~^~645~^1.559^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23585~^~646~^0.168^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23586~^~312~^0.085^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23586~^~404~^0.088^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~405~^0.164^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~406~^9.020^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~410~^0.608^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~415~^0.682^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23586~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~502~^1.233^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~503~^1.404^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~504~^2.455^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~505~^2.608^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~506~^0.804^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~507~^0.398^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~508~^1.219^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~509~^0.984^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~510~^1.531^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~511~^1.996^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~512~^0.985^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~513~^1.876^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~514~^2.811^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~515~^4.634^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~516~^1.879^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~517~^1.471^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~518~^1.216^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23586~^~521~^0.324^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23586~^~606~^2.369^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23586~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~612~^0.168^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~613~^1.380^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~614~^0.812^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~617~^2.294^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~618~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~619~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~626~^0.187^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23586~^~645~^2.484^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23586~^~646~^0.222^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23587~^~312~^0.080^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23587~^~404~^0.083^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~405~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~406~^8.494^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~410~^0.573^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~415~^0.642^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23587~^~501~^0.191^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~502~^1.161^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~503~^1.322^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~504~^2.312^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~505~^2.456^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~506~^0.757^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~507~^0.375^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~508~^1.148^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~509~^0.926^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~510~^1.442^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~511~^1.879^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~512~^0.928^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~513~^1.767^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~514~^2.648^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~515~^4.363^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~516~^1.770^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~517~^1.386^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~518~^1.145^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23587~^~521~^0.305^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23587~^~606~^2.953^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23587~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~612~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~613~^1.720^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~614~^1.012^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~617~^2.860^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~618~^0.222^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~626~^0.233^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23587~^~645~^3.096^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23587~^~646~^0.277^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~ -~23588~^~312~^0.080^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23588~^~404~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~405~^0.155^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~406~^8.574^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~410~^0.578^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~415~^0.648^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23588~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~502~^1.172^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~503~^1.335^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~504~^2.334^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~505~^2.479^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~506~^0.764^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~507~^0.379^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~508~^1.159^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~509~^0.935^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~510~^1.455^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~511~^1.897^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~512~^0.936^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~513~^1.784^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~514~^2.672^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~515~^4.404^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~516~^1.786^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~517~^1.399^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~518~^1.156^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23588~^~521~^0.308^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23588~^~606~^1.889^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23588~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23588~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23588~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23588~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~612~^0.134^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~613~^1.100^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~614~^0.647^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~617~^1.829^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~618~^0.142^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~619~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23588~^~626~^0.149^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23588~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23588~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23588~^~645~^1.980^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23588~^~646~^0.196^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23589~^~312~^0.080^3^0.003^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~315~^0.011^3^0.000^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~404~^0.084^3^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~405~^0.156^3^0.018^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~406~^8.603^3^0.775^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~410~^0.580^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23589~^~415~^0.650^3^0.035^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~502~^1.176^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~503~^1.339^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~504~^2.342^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~505~^2.488^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~506~^0.767^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~507~^0.380^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~508~^1.163^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~509~^0.938^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~510~^1.460^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~511~^1.904^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~512~^0.939^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~513~^1.790^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~514~^2.681^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~515~^4.419^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~516~^1.792^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~517~^1.403^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~518~^1.160^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23589~^~521~^0.309^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23589~^~606~^2.183^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23589~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~612~^0.155^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~613~^1.271^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~614~^0.748^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~617~^2.114^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~618~^0.164^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~626~^0.172^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23589~^~645~^2.288^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23589~^~646~^0.205^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23590~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~405~^0.154^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~406~^4.893^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~410~^0.561^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~415~^0.375^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23590~^~501~^0.187^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~502~^1.136^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~503~^1.294^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~504~^2.263^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~505~^2.404^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~506~^0.741^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~507~^0.367^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~508~^1.124^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~509~^0.906^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~510~^1.411^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~511~^1.840^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~512~^0.908^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~513~^1.729^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~514~^2.591^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~515~^4.271^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~516~^1.732^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~517~^1.356^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~518~^1.121^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23590~^~521~^0.299^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23590~^~606~^1.608^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~612~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~613~^1.005^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~614~^0.491^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~617~^1.766^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~618~^0.147^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23590~^~626~^0.184^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23590~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23590~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23590~^~645~^1.951^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23590~^~646~^0.207^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23591~^~312~^0.082^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23591~^~404~^0.071^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~405~^0.160^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~406~^5.089^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~410~^0.583^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~415~^0.390^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23591~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~502~^1.182^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~503~^1.346^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~504~^2.354^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~505~^2.501^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~506~^0.771^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~507~^0.382^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~508~^1.169^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~509~^0.943^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~510~^1.468^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~511~^1.914^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~512~^0.944^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~513~^1.799^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~514~^2.695^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~515~^4.442^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~516~^1.802^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~517~^1.411^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~518~^1.166^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23591~^~521~^0.311^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23591~^~606~^1.416^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23591~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~612~^0.100^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~613~^0.885^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~614~^0.432^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~617~^1.555^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~618~^0.129^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~620~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~626~^0.162^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23591~^~645~^1.718^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23591~^~646~^0.166^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~312~^0.090^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23592~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~405~^0.171^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~406~^5.436^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~410~^0.623^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~415~^0.417^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23592~^~501~^0.208^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~502~^1.263^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~503~^1.438^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~504~^2.515^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~505~^2.671^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~506~^0.823^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~507~^0.408^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~508~^1.249^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~509~^1.007^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~510~^1.568^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~511~^2.044^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~512~^1.009^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~513~^1.922^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~514~^2.879^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~515~^4.745^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~516~^1.925^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~517~^1.507^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~518~^1.245^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23592~^~521~^0.332^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23592~^~606~^1.602^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~612~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~613~^1.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~614~^0.489^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~617~^1.760^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~618~^0.146^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~626~^0.183^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23592~^~645~^1.944^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23592~^~646~^0.188^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~312~^0.096^3^0.014^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~315~^0.013^3^0.000^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~404~^0.082^3^0.007^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~405~^0.187^3^0.017^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~406~^5.927^3^0.358^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~410~^0.679^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23593~^~415~^0.455^3^0.029^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~501~^0.226^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~502~^1.377^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~503~^1.568^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~504~^2.741^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~505~^2.912^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~506~^0.897^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~507~^0.445^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~508~^1.361^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~509~^1.098^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~510~^1.710^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~511~^2.228^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~512~^1.100^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~513~^2.095^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~514~^3.139^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~515~^5.174^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~516~^2.098^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~517~^1.643^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~518~^1.358^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23593~^~521~^0.362^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23593~^~606~^2.216^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~612~^0.156^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~613~^1.384^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~614~^0.676^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~617~^2.434^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~618~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~619~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~620~^0.039^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~626~^0.253^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23593~^~645~^2.688^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23593~^~646~^0.260^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~312~^0.099^5^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~315~^0.014^5^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~404~^0.090^5^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~405~^0.144^5^0.018^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~406~^6.661^5^0.271^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~410~^0.656^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23594~^~415~^0.656^5^0.021^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23594~^~501~^0.148^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~502~^0.902^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~503~^1.027^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~504~^1.795^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~505~^1.907^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~506~^0.588^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~507~^0.291^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~508~^0.891^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~509~^0.719^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~510~^1.120^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~511~^1.459^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~512~^0.720^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~513~^1.372^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~514~^2.056^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~515~^3.388^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~516~^1.374^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~517~^1.076^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~518~^0.889^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23594~^~521~^0.237^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23594~^~606~^1.476^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~612~^0.101^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~613~^0.936^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~614~^0.439^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~617~^1.636^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~618~^0.145^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~619~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~626~^0.178^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23594~^~645~^1.816^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23594~^~646~^0.185^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23595~^~312~^0.115^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23595~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~405~^0.208^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~406~^4.825^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~410~^0.652^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~415~^0.317^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23595~^~501~^0.218^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~502~^1.324^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~503~^1.508^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~504~^2.637^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~505~^2.802^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~506~^0.863^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~507~^0.428^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~508~^1.310^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~509~^1.056^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~510~^1.645^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~511~^2.144^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~512~^1.058^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~513~^2.016^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~514~^3.020^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~515~^4.977^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~516~^2.019^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~517~^1.581^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~518~^1.306^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23595~^~521~^0.348^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23595~^~606~^2.274^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23595~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~612~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~613~^1.340^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~614~^0.754^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~617~^2.338^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~618~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~620~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~626~^0.213^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23595~^~645~^2.554^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23595~^~646~^0.207^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23596~^~312~^0.093^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23596~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~405~^0.156^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~406~^4.947^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~410~^0.638^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~415~^0.519^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23596~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~502~^0.862^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~503~^0.981^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~505~^1.823^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~508~^0.852^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~509~^0.687^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~510~^1.070^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~511~^1.395^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~512~^0.688^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~513~^1.311^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~514~^1.965^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~515~^3.238^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~516~^1.313^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~517~^1.028^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~518~^0.850^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23596~^~521~^0.227^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23596~^~606~^1.425^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23596~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~611~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~612~^0.101^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~613~^0.853^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~614~^0.469^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~617~^1.468^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~618~^0.133^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~619~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~620~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~626~^0.140^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23596~^~645~^1.611^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23596~^~646~^0.166^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23597~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23597~^~404~^0.091^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~405~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~406~^6.780^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~410~^0.668^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~415~^0.667^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23597~^~501~^0.149^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~502~^0.903^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~503~^1.028^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~504~^1.797^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~505~^1.910^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~506~^0.588^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~507~^0.292^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~508~^0.892^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~509~^0.720^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~510~^1.121^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~511~^1.461^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~512~^0.721^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~513~^1.374^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~514~^2.058^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~515~^3.392^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~516~^1.376^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~517~^1.077^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~518~^0.890^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23597~^~521~^0.237^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23597~^~606~^1.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23597~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~612~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~613~^0.651^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~614~^0.305^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~617~^1.138^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~618~^0.101^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~619~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~620~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~626~^0.124^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23597~^~645~^1.263^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23597~^~646~^0.129^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23598~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~405~^0.168^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~406~^5.341^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~410~^0.585^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~415~^0.399^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23598~^~501~^0.195^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~502~^1.188^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~503~^1.353^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~504~^2.365^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~505~^2.513^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~506~^0.774^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~507~^0.384^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~508~^1.174^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~509~^0.947^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~510~^1.475^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~511~^1.923^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~512~^0.949^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~513~^1.808^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~514~^2.708^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~515~^4.464^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~516~^1.810^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~517~^1.417^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~518~^1.171^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23598~^~521~^0.312^0^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23598~^~606~^1.624^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23598~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23598~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23598~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~612~^0.115^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~613~^1.015^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~614~^0.495^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~617~^1.784^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~618~^0.148^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23598~^~626~^0.185^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23598~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23598~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23598~^~645~^1.970^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23598~^~646~^0.209^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23599~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23599~^~404~^0.069^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~405~^0.112^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~406~^6.916^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~410~^0.660^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~415~^0.625^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23599~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~502~^0.892^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~503~^1.016^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~504~^1.776^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~505~^1.887^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~506~^0.581^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~508~^0.882^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~510~^1.108^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~511~^1.444^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~512~^0.712^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~513~^1.357^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~514~^2.034^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~515~^3.352^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~516~^1.359^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~517~^1.064^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~518~^0.879^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23599~^~521~^0.235^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23599~^~606~^1.864^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23599~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~612~^0.128^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~613~^1.119^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~614~^0.618^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~617~^1.870^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~618~^0.176^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~626~^0.156^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23599~^~645~^2.029^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23599~^~646~^0.218^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~312~^0.086^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23600~^~404~^0.079^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~405~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~406~^8.310^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~410~^0.582^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~415~^0.623^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23600~^~501~^0.191^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~502~^1.160^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~503~^1.321^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~504~^2.310^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~505~^2.454^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~506~^0.756^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~507~^0.375^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~508~^1.147^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~509~^0.925^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~510~^1.441^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~511~^1.878^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~512~^0.927^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~513~^1.765^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~514~^2.645^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~515~^4.360^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~516~^1.768^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~517~^1.384^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~518~^1.144^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23600~^~521~^0.305^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23600~^~606~^3.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23600~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23600~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23600~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~612~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~613~^1.861^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~614~^1.094^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~617~^3.094^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~618~^0.240^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~619~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23600~^~626~^0.252^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23600~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23600~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23600~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23600~^~645~^3.350^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23600~^~646~^0.319^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23601~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23601~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~405~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~406~^6.851^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~410~^0.654^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~415~^0.619^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23601~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~502~^0.884^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~503~^1.006^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~504~^1.759^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~505~^1.869^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~506~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~508~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~509~^0.705^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~510~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~511~^1.430^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~513~^1.345^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~514~^2.015^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~515~^3.320^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~516~^1.347^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~517~^1.054^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~518~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23601~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23601~^~606~^2.412^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23601~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~612~^0.165^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~613~^1.448^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~614~^0.799^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~617~^2.419^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~618~^0.227^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~626~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23601~^~645~^2.624^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23601~^~646~^0.282^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~312~^0.120^5^0.012^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~315~^0.012^5^0.000^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~404~^0.070^5^0.003^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~405~^0.217^5^0.011^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~406~^5.044^5^0.177^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~410~^0.682^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~415~^0.332^5^0.011^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~502~^1.385^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~503~^1.577^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~504~^2.757^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~505~^2.929^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~506~^0.903^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~507~^0.447^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~508~^1.369^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~509~^1.104^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~510~^1.719^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~511~^2.241^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~512~^1.106^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~513~^2.107^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~514~^3.157^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~515~^5.203^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~516~^2.110^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~517~^1.652^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~518~^1.365^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23602~^~521~^0.364^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23602~^~606~^2.788^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23602~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23602~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23602~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~612~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~613~^1.644^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~614~^0.925^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~617~^2.868^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~618~^0.210^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~620~^0.028^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23602~^~626~^0.261^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23602~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23602~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23602~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23602~^~645~^3.132^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23602~^~646~^0.273^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23603~^~312~^0.093^5^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~315~^0.014^5^0.002^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~404~^0.081^5^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~405~^0.160^5^0.007^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~406~^5.069^5^0.060^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~410~^0.654^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~415~^0.532^5^0.036^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~502~^0.883^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~503~^1.006^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~504~^1.758^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~505~^1.868^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~506~^0.576^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~508~^0.873^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~510~^1.097^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~511~^1.429^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~512~^0.705^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~513~^1.344^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~514~^2.013^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~515~^3.318^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~516~^1.346^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~517~^1.054^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~518~^0.871^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23603~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23603~^~606~^1.553^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23603~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~611~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~612~^0.110^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~613~^0.929^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~614~^0.511^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~617~^1.600^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~618~^0.145^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~620~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~626~^0.153^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23603~^~645~^1.756^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23603~^~646~^0.181^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23604~^~312~^0.070^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23604~^~404~^0.063^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~405~^0.158^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~406~^5.030^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~410~^0.551^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~415~^0.376^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23604~^~501~^0.184^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~502~^1.119^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~503~^1.274^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~504~^2.227^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~505~^2.366^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~506~^0.729^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~507~^0.361^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~508~^1.106^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~509~^0.892^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~510~^1.389^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~511~^1.811^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~512~^0.894^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~513~^1.702^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~514~^2.551^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~515~^4.204^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~516~^1.705^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~517~^1.335^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~518~^1.103^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23604~^~521~^0.294^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23604~^~606~^1.972^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23604~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~612~^0.139^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~613~^1.231^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~614~^0.601^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~617~^2.165^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~618~^0.180^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~626~^0.225^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23604~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23604~^~645~^2.391^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23604~^~646~^0.231^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~312~^0.085^5^0.012^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~315~^0.012^5^0.000^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~404~^0.078^5^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~405~^0.194^5^0.012^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~406~^6.169^5^0.245^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~410~^0.676^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23605~^~415~^0.461^5^0.023^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~501~^0.226^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~502~^1.372^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~503~^1.562^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~504~^2.732^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~505~^2.902^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~506~^0.894^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~507~^0.443^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~508~^1.356^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~509~^1.094^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~510~^1.704^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~511~^2.221^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~512~^1.096^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~513~^2.088^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~514~^3.128^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~515~^5.156^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~516~^2.091^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~517~^1.637^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~518~^1.353^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23605~^~521~^0.361^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~23605~^~606~^2.663^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23605~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23605~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23605~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~612~^0.188^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~613~^1.663^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~614~^0.812^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~617~^2.924^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~618~^0.243^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~619~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~620~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23605~^~626~^0.304^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23605~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23605~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23605~^~645~^3.230^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23605~^~646~^0.331^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23606~^~312~^0.086^5^0.005^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~315~^0.011^5^0.001^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~404~^0.080^5^0.004^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~405~^0.148^5^0.013^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~406~^8.384^5^0.467^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~410~^0.576^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23606~^~415~^0.629^5^0.030^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~502~^1.170^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~503~^1.333^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~504~^2.331^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~505~^2.476^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~506~^0.763^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~507~^0.378^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~508~^1.157^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~509~^0.934^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~510~^1.454^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~511~^1.895^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~512~^0.935^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~513~^1.781^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~514~^2.669^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~515~^4.399^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~516~^1.784^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~517~^1.397^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~518~^1.154^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23606~^~521~^0.308^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23606~^~606~^2.700^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23606~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23606~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23606~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23606~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~612~^0.192^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~613~^1.573^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~614~^0.925^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~617~^2.615^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~618~^0.203^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~619~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23606~^~626~^0.213^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23606~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23606~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23606~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23606~^~645~^2.831^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23606~^~646~^0.272^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23607~^~312~^0.076^5^0.004^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~315~^0.013^5^0.001^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~404~^0.070^5^0.009^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~405~^0.115^5^0.015^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~406~^7.101^5^0.374^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~410~^0.678^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~ -~23607~^~415~^0.642^5^0.027^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~502~^0.916^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~503~^1.043^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~504~^1.824^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~505~^1.937^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~506~^0.597^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~508~^0.906^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~509~^0.731^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~510~^1.137^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~511~^1.482^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~512~^0.732^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~513~^1.394^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~514~^2.088^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~515~^3.442^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~516~^1.396^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~517~^1.093^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~518~^0.903^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~521~^0.241^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23607~^~606~^1.905^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23607~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~612~^0.130^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~613~^1.144^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~614~^0.631^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~617~^1.911^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~618~^0.180^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~626~^0.159^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23607~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~23607~^~645~^2.073^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23607~^~646~^0.223^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~23608~^~312~^0.080^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23608~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~405~^0.180^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~406~^5.717^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~410~^0.626^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~415~^0.427^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23608~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~502~^1.271^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~503~^1.448^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~504~^2.532^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~505~^2.690^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~506~^0.829^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~507~^0.411^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~508~^1.257^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~509~^1.014^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~510~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~511~^2.058^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~512~^1.016^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~513~^1.935^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~514~^2.899^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~515~^4.778^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~516~^1.938^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~517~^1.517^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~518~^1.254^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23608~^~521~^0.334^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23608~^~606~^1.878^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23608~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23608~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23608~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23608~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~612~^0.132^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~613~^1.173^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~614~^0.573^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~617~^2.063^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~618~^0.171^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~619~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~620~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23608~^~626~^0.214^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~23608~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23608~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23608~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23608~^~645~^2.278^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23608~^~646~^0.239^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23609~^~312~^0.102^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23609~^~404~^0.093^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~406~^6.873^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~410~^0.677^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~415~^0.677^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23609~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~502~^0.915^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~503~^1.042^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~504~^1.822^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~505~^1.936^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~506~^0.597^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~507~^0.296^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~508~^0.905^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~509~^0.730^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~510~^1.136^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~511~^1.481^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~512~^0.731^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~513~^1.393^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~514~^2.087^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~515~^3.439^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~516~^1.395^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~517~^1.092^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~518~^0.902^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23609~^~521~^0.241^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23609~^~606~^1.399^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23609~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~612~^0.096^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~613~^0.887^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~614~^0.416^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~617~^1.550^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~618~^0.137^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~619~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~626~^0.168^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23609~^~645~^1.721^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23609~^~646~^0.175^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~312~^0.087^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23610~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~406~^8.420^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~410~^0.626^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~415~^0.631^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23610~^~501~^0.193^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~502~^1.175^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~503~^1.339^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~504~^2.341^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~505~^2.487^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~506~^0.766^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~507~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~508~^1.162^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~509~^0.938^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~510~^1.460^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~511~^1.903^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~512~^0.939^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~513~^1.789^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~514~^2.680^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~515~^4.417^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~516~^1.792^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~517~^1.403^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~518~^1.159^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23610~^~521~^0.309^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~23610~^~606~^2.224^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23610~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23610~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23610~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~612~^0.158^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~613~^1.295^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~614~^0.762^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~617~^2.154^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~618~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23610~^~626~^0.176^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23610~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23610~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23610~^~645~^2.331^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23610~^~646~^0.227^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23611~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23611~^~404~^0.068^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~405~^0.111^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~406~^6.843^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~410~^0.653^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~415~^0.619^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23611~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~502~^0.882^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~503~^1.005^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~504~^1.757^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~505~^1.867^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~506~^0.575^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~508~^0.872^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~509~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~510~^1.096^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~511~^1.428^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~512~^0.705^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~513~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~514~^2.012^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~515~^3.316^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~516~^1.345^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~517~^1.053^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~518~^0.870^0^^~1~^~A~^^^^^^^^^^~04/01/2005~ -~23611~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23611~^~606~^1.508^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23611~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23611~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23611~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23611~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~612~^0.103^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~613~^0.905^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~614~^0.500^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~617~^1.513^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~618~^0.142^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~619~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~620~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23611~^~626~^0.126^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23611~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23611~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23611~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23611~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23611~^~645~^1.641^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23611~^~646~^0.190^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23612~^~312~^0.091^3^0.003^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~315~^0.015^3^0.004^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~404~^0.077^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~405~^0.168^3^0.008^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~406~^5.221^3^0.188^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~410~^0.654^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~415~^0.489^3^0.013^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23612~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~502~^0.877^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~503~^0.999^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~504~^1.746^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~505~^1.855^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~506~^0.572^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~508~^0.867^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~509~^0.700^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~510~^1.089^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~511~^1.420^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~512~^0.701^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~513~^1.335^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~514~^2.000^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~515~^3.296^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~516~^1.337^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~517~^1.047^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~518~^0.865^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23612~^~521~^0.231^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23612~^~606~^1.875^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23612~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23612~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23612~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23612~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23612~^~611~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~612~^0.133^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~613~^1.121^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~614~^0.616^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~617~^1.931^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~618~^0.176^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23612~^~626~^0.184^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23612~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23612~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23612~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23612~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23612~^~645~^2.119^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23612~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23613~^~312~^0.092^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~315~^0.015^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23613~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~405~^0.166^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~406~^5.158^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~410~^0.646^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~415~^0.483^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23613~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~502~^0.866^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~503~^0.987^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~504~^1.725^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~505~^1.833^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~506~^0.565^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~508~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~509~^0.691^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~510~^1.076^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~511~^1.403^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~512~^0.692^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~513~^1.319^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~514~^1.976^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~515~^3.256^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~516~^1.321^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~517~^1.034^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~518~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23613~^~521~^0.228^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23613~^~606~^1.508^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23613~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~611~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~612~^0.107^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~613~^0.902^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~614~^0.496^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~617~^1.553^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~618~^0.141^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~620~^0.021^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~626~^0.148^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23613~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23613~^~645~^1.705^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23613~^~646~^0.176^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23614~^~312~^0.129^3^0.005^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~315~^0.012^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~404~^0.070^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~405~^0.231^3^0.005^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~406~^5.243^3^0.453^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~410~^0.682^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~415~^0.344^3^0.024^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23614~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~502~^1.387^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~503~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~504~^2.762^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~505~^2.934^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~506~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~507~^0.448^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~508~^1.371^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~509~^1.106^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~510~^1.722^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~511~^2.245^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~512~^1.108^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~513~^2.110^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~514~^3.162^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~515~^5.212^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~516~^2.114^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~517~^1.655^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~518~^1.367^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23614~^~521~^0.365^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23614~^~606~^3.170^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23614~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23614~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23614~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23614~^~610~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~612~^0.238^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~613~^1.869^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~614~^1.052^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~617~^3.260^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~618~^0.238^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~620~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23614~^~626~^0.297^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23614~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23614~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23614~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23614~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23614~^~645~^3.561^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23614~^~646~^0.308^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23615~^~312~^0.122^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23615~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~405~^0.221^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~406~^5.003^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~410~^0.651^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~415~^0.328^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23615~^~501~^0.218^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~502~^1.323^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~503~^1.507^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~504~^2.635^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~505~^2.800^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~506~^0.863^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~507~^0.428^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~508~^1.309^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~509~^1.056^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~510~^1.644^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~511~^2.142^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~512~^1.057^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~513~^2.014^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~514~^3.018^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~515~^4.974^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~516~^2.017^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~517~^1.579^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~518~^1.305^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23615~^~521~^0.348^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23615~^~606~^2.572^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23615~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~612~^0.194^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~613~^1.516^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~614~^0.853^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~617~^2.645^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~618~^0.194^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~619~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~620~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~626~^0.241^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23615~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23615~^~645~^2.889^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23615~^~646~^0.235^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23616~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23616~^~404~^0.096^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~405~^0.165^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~406~^6.958^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~410~^0.681^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~415~^0.672^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23616~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~502~^0.914^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~503~^1.041^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~504~^1.820^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~505~^1.933^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~506~^0.596^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~507~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~508~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~509~^0.729^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~510~^1.135^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~511~^1.479^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~512~^0.730^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~513~^1.391^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~514~^2.084^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~515~^3.434^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~516~^1.393^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~517~^1.091^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~518~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23616~^~521~^0.240^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23616~^~606~^1.158^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23616~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23616~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23616~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23616~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~612~^0.080^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~613~^0.734^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~614~^0.344^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~617~^1.284^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~618~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23616~^~626~^0.139^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23616~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23616~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23616~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23616~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23616~^~645~^1.425^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23616~^~646~^0.159^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23617~^~312~^0.101^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23617~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2003~ -~23617~^~404~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~405~^0.163^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~406~^6.901^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~410~^0.675^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~415~^0.666^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23617~^~501~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~502~^0.906^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~503~^1.032^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~504~^1.805^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~505~^1.917^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~506~^0.591^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~507~^0.293^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~508~^0.896^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~509~^0.723^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~510~^1.126^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~511~^1.467^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~512~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~513~^1.379^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~514~^2.067^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~515~^3.406^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~516~^1.381^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~517~^1.082^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~518~^0.894^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23617~^~521~^0.238^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~ -~23617~^~606~^1.637^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23617~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~612~^0.112^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~613~^1.038^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~614~^0.487^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~617~^1.814^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~618~^0.160^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~620~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23617~^~626~^0.197^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23617~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23617~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23617~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23617~^~645~^2.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23617~^~646~^0.219^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23618~^~312~^0.098^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~315~^0.014^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~404~^0.093^3^0.011^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~405~^0.160^3^0.019^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~406~^6.757^3^0.135^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~410~^0.436^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23618~^~415~^0.653^3^0.007^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23618~^~501~^0.146^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~502~^0.887^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~503~^1.011^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~504~^1.767^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~505~^1.877^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~506~^0.579^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~507~^0.287^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~508~^0.877^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~509~^0.708^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~510~^1.102^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~511~^1.436^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~512~^0.709^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~513~^1.351^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~514~^2.024^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~515~^3.335^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~516~^1.353^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~517~^1.059^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~518~^0.875^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23618~^~521~^0.233^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23618~^~606~^1.699^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23618~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~612~^0.117^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~613~^1.077^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~614~^0.505^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~617~^1.882^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~618~^0.166^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~620~^0.035^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~626~^0.204^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23618~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23618~^~645~^2.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23618~^~646~^0.213^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~312~^0.065^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23619~^~404~^0.057^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~405~^0.172^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~406~^5.294^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~410~^0.541^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~415~^0.385^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23619~^~501~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~502~^1.101^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~503~^1.254^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~504~^2.192^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~505~^2.329^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~506~^0.718^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~507~^0.356^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~508~^1.088^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~509~^0.878^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~510~^1.367^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~511~^1.782^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~512~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~513~^1.675^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~514~^2.510^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~515~^4.137^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~516~^1.678^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~517~^1.314^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~518~^1.085^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23619~^~521~^0.289^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23619~^~606~^2.334^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~612~^0.165^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~613~^1.458^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~614~^0.712^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~617~^2.563^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~618~^0.213^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~620~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~626~^0.267^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23619~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23619~^~645~^2.831^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23619~^~646~^0.274^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~312~^0.069^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23620~^~404~^0.062^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~405~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~406~^5.740^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~410~^0.587^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~415~^0.417^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23620~^~501~^0.196^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~502~^1.193^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~503~^1.359^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~504~^2.376^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~505~^2.525^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~506~^0.778^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~507~^0.386^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~508~^1.180^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~509~^0.952^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~510~^1.482^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~511~^1.932^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~512~^0.953^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~513~^1.816^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~514~^2.721^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~515~^4.485^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~516~^1.819^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~517~^1.424^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~518~^1.177^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23620~^~521~^0.314^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23620~^~606~^1.828^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~612~^0.129^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~613~^1.141^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~614~^0.557^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~617~^2.007^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~618~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~626~^0.209^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~628~^0.001^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23620~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23620~^~645~^2.217^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23620~^~646~^0.214^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23621~^~404~^0.067^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~405~^0.200^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~406~^6.156^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~410~^0.629^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~415~^0.447^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23621~^~501~^0.211^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~502~^1.280^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~503~^1.458^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~504~^2.549^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~505~^2.708^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~506~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~507~^0.413^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~508~^1.266^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~509~^1.021^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~510~^1.589^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~511~^2.072^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~512~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~513~^1.948^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~514~^2.918^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~515~^4.810^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~516~^1.951^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~517~^1.527^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~518~^1.262^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23621~^~521~^0.337^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23621~^~606~^2.154^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~612~^0.152^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~613~^1.345^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~614~^0.657^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~617~^2.365^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~618~^0.196^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~626~^0.246^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23621~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23621~^~645~^2.613^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23621~^~646~^0.252^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~312~^0.080^3^0.016^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~315~^0.012^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~404~^0.071^3^0.002^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~405~^0.214^3^0.020^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~406~^6.575^3^0.318^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~410~^0.672^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23622~^~415~^0.478^3^0.037^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23622~^~501~^0.225^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~502~^1.367^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~503~^1.557^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~504~^2.722^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~505~^2.892^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~506~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~507~^0.442^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~508~^1.352^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~509~^1.091^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~510~^1.698^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~511~^2.213^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~512~^1.092^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~513~^2.081^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~514~^3.117^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~515~^5.138^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~516~^2.084^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~517~^1.631^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~518~^1.348^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23622~^~521~^0.360^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23622~^~606~^3.109^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23622~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23622~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23622~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23622~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23622~^~612~^0.219^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~613~^1.942^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~614~^0.948^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~617~^3.414^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~618~^0.284^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~619~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~620~^0.055^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23622~^~626~^0.355^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23622~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23622~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23622~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23622~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23622~^~645~^3.771^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23622~^~646~^0.383^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23623~^~312~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23623~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~405~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~406~^7.491^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~410~^0.659^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~415~^0.607^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23623~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~502~^0.884^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~503~^1.006^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~504~^1.760^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~505~^1.870^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~506~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~508~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~509~^0.705^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~510~^1.098^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~511~^1.431^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~513~^1.345^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~514~^2.015^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~515~^3.321^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~516~^1.347^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~517~^1.055^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~518~^0.871^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23623~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~ -~23623~^~606~^2.183^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23623~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~612~^0.149^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~613~^1.311^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~614~^0.723^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~617~^2.190^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~618~^0.206^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~619~^0.013^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~620~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~626~^0.183^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23623~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23623~^~645~^2.376^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23623~^~646~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~312~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23624~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~405~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~406~^7.491^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~410~^0.659^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~415~^0.607^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2003~ -~23624~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~502~^0.884^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~503~^1.006^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~504~^1.760^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~505~^1.870^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~506~^0.576^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~507~^0.285^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~508~^0.874^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~509~^0.705^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~510~^1.098^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~511~^1.431^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~513~^1.345^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~514~^2.015^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~515~^3.321^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~516~^1.347^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~517~^1.055^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~518~^0.871^0^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23624~^~521~^0.232^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23624~^~606~^2.612^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~612~^0.179^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~613~^1.568^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~614~^0.865^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~617~^2.620^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~618~^0.246^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~619~^0.016^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~620~^0.044^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~626~^0.218^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23624~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23624~^~645~^2.842^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23624~^~646~^0.306^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23625~^~404~^0.061^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~405~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~406~^7.420^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~410~^0.652^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~415~^0.601^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23625~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~502~^0.875^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~503~^0.997^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~504~^1.743^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~505~^1.852^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~506~^0.571^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~507~^0.283^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~508~^0.865^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~509~^0.698^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~510~^1.087^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~511~^1.417^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~512~^0.699^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~513~^1.332^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~514~^1.996^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~515~^3.289^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~516~^1.334^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~517~^1.045^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~518~^0.863^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23625~^~521~^0.230^0^^~4~^~BFPN~^^^^^^^^^^~11/01/2006~ -~23625~^~606~^1.709^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23625~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23625~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23625~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23625~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23625~^~612~^0.117^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~613~^1.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~614~^0.566^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~617~^1.715^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~618~^0.161^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~619~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23625~^~626~^0.143^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23625~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23625~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23625~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23625~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23625~^~645~^1.860^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23625~^~646~^0.214^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23626~^~312~^0.089^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23626~^~404~^0.075^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~405~^0.145^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~406~^8.347^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~410~^0.556^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~415~^0.589^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23626~^~501~^0.186^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~502~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~503~^1.287^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~504~^2.250^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~505~^2.391^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~506~^0.737^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~507~^0.365^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~508~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~509~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~510~^1.404^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~511~^1.829^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~512~^0.903^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~513~^1.720^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~514~^2.577^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~515~^4.247^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~516~^1.723^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~517~^1.349^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~518~^1.114^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23626~^~521~^0.297^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~ -~23626~^~606~^3.445^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23626~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23626~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23626~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23626~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~612~^0.245^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~613~^2.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~614~^1.180^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~617~^3.337^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~618~^0.259^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~619~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~620~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23626~^~626~^0.272^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23626~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23626~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23626~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23626~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23626~^~645~^3.612^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23626~^~646~^0.342^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23627~^~312~^0.074^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~315~^0.015^3^0.002^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~404~^0.063^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~405~^0.112^3^0.016^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~406~^7.713^3^0.371^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~410~^0.678^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23627~^~415~^0.625^3^0.042^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23627~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~502~^0.910^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~503~^1.036^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~504~^1.812^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~505~^1.925^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~506~^0.593^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~507~^0.294^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~508~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~509~^0.726^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~510~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~511~^1.473^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~512~^0.727^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~513~^1.385^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~514~^2.075^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~515~^3.419^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~516~^1.387^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~517~^1.086^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~518~^0.897^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23627~^~521~^0.239^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~23627~^~606~^2.378^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23627~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~612~^0.163^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~613~^1.428^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~614~^0.788^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~617~^2.386^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~618~^0.224^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~619~^0.014^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~626~^0.199^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~628~^0.004^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23627~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23627~^~645~^2.588^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23627~^~646~^0.278^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~312~^0.091^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23628~^~404~^0.077^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~406~^8.559^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~410~^0.570^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~415~^0.604^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23628~^~501~^0.191^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~502~^1.159^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~503~^1.320^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~504~^2.308^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~505~^2.452^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~506~^0.755^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~507~^0.374^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~508~^1.146^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~509~^0.924^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~510~^1.439^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~511~^1.876^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~512~^0.926^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~513~^1.764^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~514~^2.642^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~515~^4.355^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~516~^1.766^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~517~^1.383^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~518~^1.143^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23628~^~521~^0.305^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23628~^~606~^3.465^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~612~^0.246^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~613~^2.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~614~^1.187^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~617~^3.356^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~618~^0.260^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~619~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~620~^0.041^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~626~^0.274^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23628~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23628~^~645~^3.633^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23628~^~646~^0.325^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~312~^0.094^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23629~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~405~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~406~^7.770^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~410~^0.517^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~415~^0.548^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23629~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~502~^1.179^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~503~^1.343^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~504~^2.347^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~505~^2.494^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~506~^0.768^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~507~^0.381^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~508~^1.166^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~509~^0.940^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~510~^1.464^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~511~^1.908^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~512~^0.942^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~513~^1.794^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~514~^2.688^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~515~^4.430^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~516~^1.797^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~517~^1.407^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~518~^1.162^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23629~^~521~^0.310^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~23629~^~606~^2.560^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23629~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23629~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2010~ -~23629~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~611~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~612~^0.182^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~613~^1.491^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~614~^0.877^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~617~^2.479^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~618~^0.192^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~619~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~620~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23629~^~626~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23629~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23629~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23629~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23629~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23629~^~645~^2.684^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23629~^~646~^0.259^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23630~^~312~^0.092^3^0.007^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~315~^0.011^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~404~^0.077^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~405~^0.149^3^0.021^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~406~^8.604^3^0.635^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~410~^0.573^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23630~^~415~^0.607^3^0.035^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23630~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~502~^1.165^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~503~^1.327^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~504~^2.320^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~505~^2.465^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~506~^0.759^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~507~^0.376^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~508~^1.152^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~509~^0.929^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~510~^1.447^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~511~^1.886^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~512~^0.931^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~513~^1.773^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~514~^2.656^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~515~^4.378^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~516~^1.776^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~517~^1.390^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~518~^1.149^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23630~^~521~^0.306^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23630~^~606~^3.217^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23630~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~612~^0.229^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~613~^1.874^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~614~^1.102^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~617~^3.116^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~618~^0.241^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~619~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~620~^0.038^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~626~^0.254^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23630~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23630~^~645~^3.373^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23630~^~646~^0.302^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~312~^0.094^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~315~^0.012^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~404~^0.085^3^0.006^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~405~^0.146^3^0.017^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~406~^4.908^3^0.233^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~410~^0.654^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~415~^0.556^3^0.060^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23631~^~501~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~502~^0.889^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~503~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~504~^1.770^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~505~^1.881^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~506~^0.580^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~507~^0.287^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~508~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~509~^0.709^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~510~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~511~^1.439^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~512~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~513~^1.353^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~514~^2.027^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~515~^3.341^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~516~^1.355^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~517~^1.061^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~518~^0.877^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23631~^~521~^0.234^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~ -~23631~^~606~^1.232^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23631~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23631~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23631~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~611~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~612~^0.087^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~613~^0.737^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~614~^0.405^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~617~^1.269^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~618~^0.115^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~620~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~621~^0.001^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23631~^~626~^0.121^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23631~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23631~^~629~^0.002^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23631~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23631~^~631~^0.011^15^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23631~^~645~^1.392^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23631~^~646~^0.157^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23632~^~312~^0.092^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23632~^~404~^0.082^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~405~^0.140^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~406~^4.731^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~410~^0.630^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~415~^0.536^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23632~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~502~^0.857^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~503~^0.976^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~504~^1.706^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~505~^1.813^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~506~^0.559^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~507~^0.277^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~508~^0.847^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~509~^0.684^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~510~^1.064^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~511~^1.387^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~512~^0.685^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~513~^1.304^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~514~^1.954^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~515~^3.220^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~516~^1.306^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~517~^1.023^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~518~^0.845^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23632~^~521~^0.225^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23632~^~606~^1.340^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23632~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~611~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~612~^0.095^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~613~^0.802^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~614~^0.441^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~617~^1.380^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~618~^0.125^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~620~^0.018^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~626~^0.132^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23632~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23632~^~645~^1.514^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23632~^~646~^0.156^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23633~^~312~^0.113^3^0.020^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~315~^0.012^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~404~^0.073^3^0.003^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~405~^0.213^3^0.021^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~406~^5.007^3^0.031^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~410~^0.682^1^^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~415~^0.321^3^0.018^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23633~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~502~^1.382^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~503~^1.574^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~504~^2.753^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~505~^2.924^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~506~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~507~^0.447^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~508~^1.367^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~509~^1.103^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~510~^1.717^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~511~^2.238^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~512~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~513~^2.104^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~514~^3.152^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~515~^5.195^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~516~^2.107^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~517~^1.650^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~518~^1.363^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23633~^~521~^0.364^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~23633~^~606~^2.406^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23633~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23633~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23633~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23633~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~612~^0.181^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~613~^1.418^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~614~^0.798^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~617~^2.475^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~618~^0.181^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~619~^0.015^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23633~^~626~^0.226^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23633~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23633~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23633~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23633~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23633~^~645~^2.703^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23633~^~646~^0.239^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23634~^~312~^0.109^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23634~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~405~^0.204^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~406~^4.801^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~410~^0.654^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~415~^0.308^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23634~^~501~^0.218^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~502~^1.325^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~503~^1.509^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~504~^2.639^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~505~^2.804^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~506~^0.864^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~507~^0.428^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~508~^1.310^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~509~^1.057^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~510~^1.646^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~511~^2.145^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~512~^1.059^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~513~^2.017^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~514~^3.022^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~515~^4.981^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~516~^2.020^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~517~^1.582^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~518~^1.307^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23634~^~521~^0.349^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23634~^~606~^1.973^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23634~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~610~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~611~^0.005^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~612~^0.148^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~613~^1.163^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~614~^0.654^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~617~^2.029^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~618~^0.148^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~620~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~626~^0.185^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23634~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23634~^~645~^2.216^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23634~^~646~^0.180^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23635~^~312~^0.104^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23635~^~404~^0.091^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~405~^0.142^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~406~^6.637^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~410~^0.655^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~415~^0.655^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23635~^~501~^0.147^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~502~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~503~^1.015^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~504~^1.775^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~505~^1.886^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~506~^0.581^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~507~^0.288^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~508~^0.881^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~509~^0.711^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~510~^1.107^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~511~^1.443^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~512~^0.712^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~513~^1.356^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~514~^2.032^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~515~^3.350^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~516~^1.359^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~517~^1.064^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~518~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23635~^~521~^0.234^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23635~^~606~^0.898^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23635~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~612~^0.062^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~613~^0.570^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~614~^0.267^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~617~^0.996^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~618~^0.088^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~619~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~620~^0.019^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~626~^0.108^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23635~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23635~^~645~^1.105^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23635~^~646~^0.113^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~312~^0.107^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~315~^0.014^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23636~^~404~^0.095^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~405~^0.147^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~406~^6.879^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~410~^0.679^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~415~^0.679^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23636~^~501~^0.152^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~502~^0.924^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~503~^1.052^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~504~^1.840^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~505~^1.954^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~506~^0.602^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~507~^0.298^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~508~^0.913^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~509~^0.737^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~510~^1.147^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~511~^1.495^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~512~^0.738^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~513~^1.406^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~514~^2.106^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~515~^3.472^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~516~^1.408^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~517~^1.102^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~518~^0.911^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23636~^~521~^0.243^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23636~^~606~^1.154^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~612~^0.079^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~613~^0.732^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~614~^0.343^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~617~^1.279^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~618~^0.113^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~619~^0.008^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~626~^0.139^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23636~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23636~^~645~^1.420^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23636~^~646~^0.145^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~312~^0.103^3^0.010^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~315~^0.014^3^0.001^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~404~^0.091^3^0.002^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~405~^0.141^3^0.028^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~406~^6.598^3^0.471^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~410~^0.651^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23637~^~415~^0.652^3^0.039^~1~^~A~^^^^^^^^^^~03/01/2003~ -~23637~^~501~^0.146^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~502~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~503~^1.009^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~504~^1.764^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~505~^1.875^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~506~^0.578^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~508~^0.876^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~509~^0.707^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~510~^1.100^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~511~^1.434^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~512~^0.708^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~513~^1.349^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~514~^2.020^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~515~^3.330^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~516~^1.351^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~517~^1.057^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~518~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23637~^~521~^0.233^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23637~^~606~^1.253^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~612~^0.086^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~613~^0.795^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~614~^0.373^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~617~^1.389^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~618~^0.123^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~619~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~626~^0.151^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~628~^0.002^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23637~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23637~^~645~^1.542^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23637~^~646~^0.157^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~312~^0.087^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~ -~23638~^~404~^0.081^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~405~^0.150^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~406~^8.464^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~410~^0.582^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~415~^0.635^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2003~ -~23638~^~501~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~502~^1.182^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~503~^1.346^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~504~^2.353^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~505~^2.500^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~506~^0.770^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~507~^0.382^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~508~^1.168^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~509~^0.943^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~510~^1.467^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~511~^1.913^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~512~^0.944^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~513~^1.798^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~514~^2.694^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~515~^4.440^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~516~^1.801^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~517~^1.410^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~518~^1.165^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23638~^~521~^0.311^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2004~ -~23638~^~606~^2.907^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23638~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23638~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~ -~23638~^~610~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~611~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~612~^0.207^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~613~^1.693^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~614~^0.996^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~617~^2.816^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~618~^0.218^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~620~^0.034^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~621~^0.001^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23638~^~626~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23638~^~628~^0.003^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~ -~23638~^~629~^0.003^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23638~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2003~ -~23638~^~631~^0.015^18^^~1~^~AR~^^^^^^^^^^~05/01/2011~ -~23638~^~645~^3.048^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23638~^~646~^0.292^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~23640~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~315~^0.103^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~404~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~405~^0.025^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~406~^0.461^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~410~^0.097^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~605~^0.200^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~606~^1.357^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~612~^0.074^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~613~^0.681^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~614~^0.480^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~617~^1.477^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~618~^0.137^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~619~^0.008^0^^~4~^~NR~^^^^^^^^^^~01/01/2008~ -~23640~^~620~^0.057^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~625~^0.015^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~626~^0.091^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~23640~^~645~^1.604^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~646~^0.208^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~652~^0.027^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~653~^0.088^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23640~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~23640~^~851~^0.008^1^^~1~^~A~^^^^^^^^^^~02/01/2003~ -~23646~^~312~^0.072^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23646~^~404~^0.065^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~405~^0.107^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~406~^6.585^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~410~^0.629^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~415~^0.595^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23646~^~501~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~502~^0.849^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~503~^0.967^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~504~^1.691^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~505~^1.797^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~506~^0.554^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~507~^0.274^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~508~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~509~^0.677^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~510~^1.055^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~511~^1.375^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~512~^0.678^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~513~^1.292^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~514~^1.936^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~515~^3.191^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~516~^1.294^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~517~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~518~^0.837^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23646~^~521~^0.223^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23646~^~606~^1.729^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23646~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~612~^0.107^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~613~^1.095^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~614~^0.527^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~617~^2.303^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~618~^0.187^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~619~^0.020^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~626~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23646~^~645~^2.470^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23646~^~646~^0.234^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23647~^~312~^0.082^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23647~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~405~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~406~^7.770^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~410~^0.517^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~415~^0.548^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23647~^~501~^0.173^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~502~^1.052^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~503~^1.198^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~504~^2.095^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~505~^2.226^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~506~^0.686^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~507~^0.340^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~508~^1.040^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~509~^0.839^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~510~^1.307^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~511~^1.703^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~512~^0.840^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~513~^1.601^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~514~^2.399^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~515~^3.954^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~516~^1.604^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~517~^1.255^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~518~^1.037^0^^~1~^~A~^^^^^^^^^^~05/01/2003~ -~23647~^~521~^0.277^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23647~^~606~^3.527^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23647~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~611~^0.010^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~612~^0.202^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~613~^2.247^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~614~^1.068^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~617~^4.615^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~618~^0.242^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~619~^0.030^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~620~^0.040^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~626~^0.292^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~ -~23647~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23647~^~645~^4.907^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23647~^~646~^0.312^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23648~^~312~^0.069^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23648~^~404~^0.059^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~405~^0.104^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~406~^7.170^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~410~^0.630^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~415~^0.581^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23648~^~501~^0.139^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~502~^0.846^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~503~^0.963^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~504~^1.684^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~505~^1.789^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~506~^0.551^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~507~^0.273^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~508~^0.836^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~509~^0.675^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~510~^1.050^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~511~^1.369^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~512~^0.676^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~513~^1.287^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~514~^1.929^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~515~^3.179^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~516~^1.289^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~517~^1.009^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~518~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23648~^~521~^0.222^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23648~^~606~^2.132^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23648~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~612~^0.132^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~613~^1.350^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~614~^0.650^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~617~^2.840^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~618~^0.230^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~619~^0.025^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~620~^0.033^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~626~^0.206^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23648~^~645~^3.045^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23648~^~646~^0.288^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23649~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23649~^~404~^0.078^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~405~^0.144^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~406~^7.939^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~410~^0.535^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~415~^0.600^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23649~^~501~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~502~^1.085^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~503~^1.236^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~504~^2.161^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~505~^2.296^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~506~^0.707^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~507~^0.351^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~508~^1.073^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~509~^0.866^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~510~^1.348^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~511~^1.757^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~512~^0.867^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~513~^1.652^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~514~^2.475^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~515~^4.078^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~516~^1.654^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~517~^1.295^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~518~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23649~^~521~^0.285^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23649~^~606~^2.517^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23649~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~612~^0.144^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~613~^1.604^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~614~^0.762^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~617~^3.294^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~618~^0.173^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~619~^0.022^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~620~^0.029^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~626~^0.209^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23649~^~645~^3.502^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23649~^~646~^0.223^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23650~^~312~^0.074^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23650~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~405~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~406~^6.201^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~410~^0.627^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~415~^0.602^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23650~^~501~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~502~^0.853^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~503~^0.971^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~504~^1.698^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~505~^1.804^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~506~^0.556^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~507~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~508~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~509~^0.680^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~510~^1.059^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~511~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~512~^0.681^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~513~^1.298^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~514~^1.944^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~515~^3.204^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~516~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~517~^1.018^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~518~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23650~^~521~^0.224^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23650~^~606~^1.500^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23650~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~612~^0.093^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~613~^0.950^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~614~^0.458^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~617~^1.999^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~618~^0.162^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~619~^0.017^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~620~^0.023^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~626~^0.145^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23650~^~645~^2.144^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23650~^~646~^0.203^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~ -~23651~^~312~^0.091^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23651~^~404~^0.084^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~405~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~406~^6.217^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~410~^0.623^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~415~^0.612^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23651~^~501~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~502~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~503~^0.959^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~504~^1.676^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~505~^1.781^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~506~^0.549^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~507~^0.272^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~508~^0.832^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~509~^0.671^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~510~^1.045^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~511~^1.362^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~512~^0.672^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~513~^1.281^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~514~^1.919^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~515~^3.163^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~516~^1.283^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~517~^1.004^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~518~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23651~^~521~^0.221^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23651~^~606~^1.376^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23651~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~612~^0.095^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~613~^0.836^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~614~^0.445^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~617~^1.503^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~618~^0.159^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~619~^0.011^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~626~^0.138^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23651~^~645~^1.641^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23651~^~646~^0.201^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~312~^0.091^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23652~^~404~^0.087^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~405~^0.149^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~406~^6.314^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~410~^0.618^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~415~^0.610^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23652~^~501~^0.136^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~502~^0.829^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~503~^0.944^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~504~^1.651^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~505~^1.754^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~506~^0.541^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~507~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~508~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~509~^0.661^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~510~^1.030^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~511~^1.342^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~512~^0.662^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~513~^1.262^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~514~^1.891^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~515~^3.116^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~516~^1.264^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~517~^0.990^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~518~^0.818^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23652~^~521~^0.218^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23652~^~606~^1.556^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~612~^0.108^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~613~^0.946^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~614~^0.503^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~617~^1.700^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~618~^0.180^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~619~^0.012^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~626~^0.156^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23652~^~645~^1.855^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23652~^~646~^0.227^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~312~^0.097^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23653~^~404~^0.088^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~405~^0.136^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~406~^6.359^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~410~^0.628^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~415~^0.628^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23653~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~502~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~503~^0.973^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~504~^1.701^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~505~^1.807^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~506~^0.557^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~507~^0.276^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~508~^0.844^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~509~^0.681^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~510~^1.061^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~511~^1.382^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~512~^0.682^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~513~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~514~^1.947^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~515~^3.210^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~516~^1.302^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~517~^1.019^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~518~^0.842^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23653~^~521~^0.288^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2008~ -~23653~^~606~^1.147^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~610~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~611~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~612~^0.079^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~613~^0.697^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~614~^0.370^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~617~^1.253^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~618~^0.132^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~619~^0.009^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~620~^0.026^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~626~^0.115^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~628~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23653~^~645~^1.367^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23653~^~646~^0.168^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~312~^0.081^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23654~^~404~^0.076^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~405~^0.141^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~406~^7.981^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~410~^0.549^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~415~^0.599^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23654~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~502~^1.114^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~503~^1.269^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~504~^2.218^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~505~^2.357^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~506~^0.726^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~507~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~508~^1.102^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~509~^0.889^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~510~^1.384^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~511~^1.803^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~512~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~513~^1.695^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~514~^2.540^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~515~^4.187^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~516~^1.698^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~517~^1.330^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~518~^1.099^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23654~^~521~^0.293^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23654~^~606~^3.070^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~612~^0.212^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~613~^1.974^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~614~^0.870^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~617~^2.654^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~618~^0.183^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~619~^0.073^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~620~^0.037^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~626~^0.256^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~628~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23654~^~645~^2.917^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23654~^~646~^0.292^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~312~^0.076^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23655~^~404~^0.080^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~405~^0.148^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~406~^8.171^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~410~^0.551^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~415~^0.618^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23655~^~501~^0.184^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~502~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~503~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~504~^2.224^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~505~^2.363^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~506~^0.728^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~507~^0.361^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~508~^1.104^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~509~^0.891^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~510~^1.387^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~511~^1.808^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~512~^0.892^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~513~^1.700^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~514~^2.547^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~515~^4.197^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~516~^1.702^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~517~^1.333^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~518~^1.101^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23655~^~521~^0.294^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23655~^~606~^2.688^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~610~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~611~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~612~^0.186^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~613~^1.728^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~614~^0.762^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~617~^2.324^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~618~^0.160^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~619~^0.064^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~620~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~626~^0.224^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~628~^0.006^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23655~^~645~^2.554^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23655~^~646~^0.256^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~315~^0.013^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23656~^~404~^0.066^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~405~^0.108^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~406~^6.683^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~410~^0.638^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~415~^0.604^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23656~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~502~^0.862^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~503~^0.982^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~504~^1.716^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~505~^1.823^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~506~^0.562^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~507~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~508~^0.852^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~509~^0.687^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~510~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~511~^1.395^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~512~^0.689^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~513~^1.312^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~514~^1.965^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~515~^3.239^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~516~^1.314^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~517~^1.029^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~518~^0.850^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23656~^~521~^0.227^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23656~^~606~^2.058^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~612~^0.140^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~613~^1.325^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~614~^0.579^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~617~^1.778^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~618~^0.120^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~619~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~626~^0.167^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~628~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23656~^~645~^1.951^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23656~^~646~^0.193^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~312~^0.073^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~315~^0.011^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23657~^~404~^0.072^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~405~^0.115^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~406~^6.227^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~410~^0.630^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~415~^0.605^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23657~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~502~^0.856^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~503~^0.975^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~504~^1.705^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~505~^1.811^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~506~^0.558^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~507~^0.277^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~508~^0.847^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~509~^0.683^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~510~^1.063^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~511~^1.386^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~512~^0.684^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~513~^1.303^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~514~^1.952^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~515~^3.218^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~516~^1.305^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~517~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~518~^0.844^0^^~1~^~A~^^^^^^^^^^~04/01/2003~ -~23657~^~521~^0.225^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23657~^~606~^2.074^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~610~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~611~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~612~^0.141^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~613~^1.336^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~614~^0.584^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~617~^1.793^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~618~^0.121^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~619~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~620~^0.027^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~626~^0.168^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~628~^0.007^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23657~^~645~^1.967^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23657~^~646~^0.195^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~312~^0.079^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~315~^0.012^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23658~^~404~^0.060^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23658~^~405~^0.135^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23658~^~406~^4.098^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23658~^~410~^0.529^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~415~^0.403^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23658~^~501~^0.119^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~502~^0.724^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~503~^0.824^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~504~^1.441^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~505~^1.531^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~506~^0.472^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~507~^0.234^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~508~^0.716^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~509~^0.577^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~510~^0.899^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~511~^1.172^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~512~^0.578^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~513~^1.101^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~514~^1.650^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~515~^2.720^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~516~^1.103^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~517~^0.864^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~518~^0.714^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23658~^~521~^0.190^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23658~^~606~^8.939^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~610~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~611~^0.047^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~612~^0.700^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~613~^5.382^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~614~^2.738^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~617~^8.374^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~618~^0.542^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~619~^0.265^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~626~^1.080^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23658~^~645~^9.485^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23658~^~646~^0.843^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~312~^0.075^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~315~^0.009^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23659~^~404~^0.070^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23659~^~405~^0.124^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23659~^~406~^3.984^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23659~^~410~^0.503^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~415~^0.446^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23659~^~501~^0.117^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~502~^0.710^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~503~^0.808^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~504~^1.413^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~505~^1.502^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~506~^0.463^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~507~^0.229^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~508~^0.702^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~509~^0.566^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~510~^0.881^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~511~^1.149^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~512~^0.567^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~513~^1.080^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~514~^1.618^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~515~^2.667^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~516~^1.082^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~517~^0.847^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~518~^0.700^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23659~^~521~^0.187^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23659~^~606~^8.963^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~610~^0.071^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~611~^0.048^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~612~^0.702^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~613~^5.396^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~614~^2.746^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~617~^8.396^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~618~^0.544^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~619~^0.266^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~620~^0.036^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~626~^1.083^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~628~^0.032^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23659~^~645~^9.511^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23659~^~646~^0.845^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~312~^0.109^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~315~^0.010^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~ -~23660~^~404~^0.054^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23660~^~405~^0.183^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23660~^~406~^4.001^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23660~^~410~^0.564^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~415~^0.278^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~ -~23660~^~501~^0.188^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~502~^1.145^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~503~^1.304^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~504~^2.280^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~505~^2.422^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~506~^0.746^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~507~^0.370^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~508~^1.132^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~509~^0.913^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~510~^1.422^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~511~^1.853^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~512~^0.915^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~513~^1.742^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~514~^2.611^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~515~^4.303^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~516~^1.745^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~517~^1.366^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~518~^1.129^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~ -~23660~^~521~^0.301^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2008~ -~23660~^~606~^8.219^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~608~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~609~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~610~^0.551^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~611~^0.051^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~612~^0.618^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~613~^4.733^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~614~^2.266^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~617~^7.542^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~618~^0.484^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~619~^0.212^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~620~^0.024^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~621~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~626~^0.814^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~628~^0.031^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~630~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2003~ -~23660~^~645~^8.388^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~23660~^~646~^0.720^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~25000~^~312~^0.262^8^0.029^~1~^~A~^^^1^0.226^0.298^4^0.181^0.342^~2, 3~^~03/01/2008~ -~25000~^~315~^1.085^8^0.058^~1~^~A~^^^1^0.895^1.275^6^0.943^1.227^~2, 3~^~03/01/2008~ -~25000~^~404~^0.070^4^0.027^~1~^~A~^^^^0.030^0.150^^^^^~03/01/2008~ -~25000~^~405~^0.151^8^0.007^~1~^~A~^^^1^0.095^0.207^5^0.133^0.170^~2, 3~^~03/01/2008~ -~25000~^~406~^2.099^8^0.088^~1~^~A~^^^1^2.050^2.147^6^1.883^2.315^~2, 3~^~03/01/2008~ -~25000~^~415~^0.210^8^0.003^~1~^~A~^^^1^0.202^0.217^4^0.200^0.219^~2, 3~^~03/01/2008~ -~25000~^~501~^0.077^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~502~^0.372^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~503~^0.388^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~504~^1.480^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~505~^0.349^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~506~^0.199^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~507~^0.184^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~508~^0.529^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~509~^0.404^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~510~^0.520^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~511~^0.307^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~512~^0.241^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~513~^0.800^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~514~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~515~^2.117^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~516~^0.338^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~517~^0.749^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~518~^0.500^0^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~25000~^~605~^0.885^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~606~^1.184^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~607~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~608~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~609~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~610~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~611~^0.002^4^0.001^~1~^~A~^^^^0.000^0.006^^^^^~03/01/2008~ -~25000~^~612~^0.008^4^0.002^~1~^~A~^^^^0.005^0.013^^^^^~03/01/2008~ -~25000~^~613~^0.738^4^0.095^~1~^~A~^^^^0.597^1.009^^^^^~03/01/2008~ -~25000~^~614~^0.380^4^0.100^~1~^~A~^^^^0.168^0.652^^^^^~03/01/2008~ -~25000~^~615~^0.024^4^0.004^~1~^~A~^^^^0.019^0.035^^^^^~03/01/2008~ -~25000~^~617~^2.746^4^0.370^~1~^~AS~^^^^2.152^3.820^^^^^~03/01/2008~ -~25000~^~618~^2.161^4^0.287^~1~^~AS~^^^^1.529^2.803^^^^^~03/01/2008~ -~25000~^~619~^0.055^4^0.004^~1~^~AS~^^^^0.046^0.067^^^^^~03/01/2008~ -~25000~^~620~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~621~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~624~^0.015^4^0.002^~1~^~A~^^^^0.012^0.021^^^^^~03/01/2008~ -~25000~^~625~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~626~^0.006^4^0.000^~1~^~AS~^^^^0.005^0.007^^^^^~03/01/2008~ -~25000~^~627~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~628~^0.012^4^0.002^~1~^~A~^^^^0.008^0.015^^^^^~03/01/2008~ -~25000~^~629~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~630~^0.000^4^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~631~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~645~^2.767^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~646~^2.216^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~652~^0.001^4^0.001^~1~^~A~^^^^0.000^0.002^^^^^~03/01/2008~ -~25000~^~653~^0.006^4^0.001^~1~^~A~^^^^0.004^0.008^^^^^~03/01/2008~ -~25000~^~654~^0.010^4^0.001^~1~^~A~^^^^0.008^0.013^^^^^~03/01/2008~ -~25000~^~662~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~663~^0.817^4^0.177^~1~^~A~^^^^0.369^1.235^^^^^~03/01/2008~ -~25000~^~664~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~665~^0.068^4^0.012^~1~^~A~^^^^0.053^0.105^^^^^~03/01/2008~ -~25000~^~670~^0.000^4^0.000^~1~^~A~^^^^0.000^0.001^^^^^~03/01/2008~ -~25000~^~671~^0.001^4^0.001^~1~^~A~^^^^0.000^0.003^^^^^~03/01/2008~ -~25000~^~672~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~673~^0.006^4^0.000^~1~^~A~^^^^0.005^0.007^^^^^~03/01/2008~ -~25000~^~674~^1.930^4^0.223^~1~^~A~^^^^1.585^2.585^^^^^~03/01/2008~ -~25000~^~675~^2.093^4^0.282^~1~^~A~^^^^1.473^2.743^^^^^~03/01/2008~ -~25000~^~676~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~685~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~687~^0.002^4^0.000^~1~^~A~^^^^0.001^0.003^^^^^~03/01/2008~ -~25000~^~689~^0.000^4^0.000^~1~^~AS~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~693~^0.817^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~25000~^~697~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~851~^0.055^4^0.004^~1~^~A~^^^^0.046^0.067^^^^^~03/01/2008~ -~25000~^~852~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~853~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25000~^~858~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25001~^~312~^0.545^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~404~^0.350^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~405~^0.110^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~406~^2.070^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~415~^0.170^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~606~^1.415^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~612~^0.010^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~613~^0.931^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~614~^0.475^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~617~^4.037^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~618~^3.315^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~619~^0.247^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~626~^0.038^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~645~^4.085^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25001~^~646~^3.572^0^^~4~^^^^^^^^^^^~05/01/2007~ -~25003~^~312~^0.114^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~315~^0.082^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~405~^0.025^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~406~^0.100^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~410~^0.043^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~415~^0.026^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~606~^5.096^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~608~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~609~^0.204^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~610~^0.229^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~611~^2.910^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~612~^1.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~613~^0.539^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~614~^0.182^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~617~^0.751^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~618~^0.225^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~619~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~645~^0.753^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25003~^~646~^0.238^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25004~^~404~^2.727^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~405~^3.091^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~406~^36.364^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~410~^18.182^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~415~^3.636^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25004~^~605~^0.204^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25004~^~606~^4.728^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~404~^2.727^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~405~^3.091^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~406~^36.364^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~410~^18.182^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~415~^3.636^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25005~^~605~^0.197^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25005~^~606~^4.794^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25006~^~406~^45.249^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~ -~25006~^~410~^22.624^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25006~^~415~^4.525^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25006~^~605~^0.103^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25006~^~606~^4.847^1^^~4~^~FLM~^^^^^^^^^^~04/01/2006~ -~25007~^~605~^0.319^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25007~^~606~^10.411^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~312~^0.452^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~404~^3.394^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~405~^3.846^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~406~^45.249^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~410~^22.624^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~415~^4.525^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25008~^~605~^0.052^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25008~^~606~^4.481^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~605~^0.062^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25009~^~606~^6.802^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~415~^0.909^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25010~^~605~^0.037^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25010~^~606~^4.326^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25012~^~312~^0.412^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~315~^1.349^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~404~^0.088^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~405~^0.161^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~406~^2.088^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~410~^1.551^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~415~^0.535^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~501~^0.098^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~502~^0.260^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~503~^0.170^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~504~^0.287^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~505~^0.205^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~506~^0.090^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~507~^0.067^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~508~^0.278^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~509~^0.107^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~510~^0.267^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~511~^0.172^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~512~^0.096^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~513~^0.240^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~514~^1.190^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~515~^0.482^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~516~^0.197^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~517~^0.163^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~518~^0.276^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~606~^2.941^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~ -~25012~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~613~^1.394^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~614~^0.804^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~617~^8.842^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~618~^11.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~619~^1.144^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~626~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~628~^0.187^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~630~^0.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~ -~25012~^~645~^9.155^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25012~^~646~^12.224^0^^~4~^~FLC~^^^^^^^^^^~02/01/2011~ -~25013~^~312~^0.227^4^0.004^~1~^~A~^^^1^0.222^0.240^3^0.214^0.241^~2, 3~^~04/01/2006~ -~25013~^~315~^1.310^4^0.018^~1~^~A~^^^1^1.280^1.360^3^1.253^1.367^~2, 3~^~04/01/2006~ -~25013~^~404~^0.140^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~405~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~406~^2.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~410~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~415~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~25013~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~502~^0.230^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~503~^0.180^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~504~^0.880^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~505~^0.200^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~506~^0.150^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~508~^0.340^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~509~^0.170^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~510~^0.280^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~511~^0.340^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~512~^0.160^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~513~^0.430^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~514~^0.610^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~515~^1.970^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~516~^0.350^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~517~^0.700^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~518~^0.500^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25013~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25013~^~605~^0.088^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~25013~^~606~^2.166^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~613~^1.265^4^0.017^~1~^~A~^^^1^1.214^1.292^3^1.210^1.320^~2, 3~^~04/01/2006~ -~25013~^~614~^0.687^4^0.010^~1~^~A~^^^1^0.657^0.702^3^0.654^0.720^~2, 3~^~04/01/2006~ -~25013~^~615~^0.062^4^0.001^~1~^~A~^^^1^0.058^0.064^3^0.057^0.066^~2, 3~^~04/01/2006~ -~25013~^~617~^11.447^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25013~^~618~^6.420^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25013~^~619~^0.093^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~ -~25013~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~621~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~624~^0.152^4^0.002^~1~^~A~^^^1^0.145^0.155^3^0.144^0.159^~2, 3~^~04/01/2006~ -~25013~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~626~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~628~^0.054^4^0.001^~1~^~A~^^^1^0.051^0.056^3^0.050^0.057^~2, 3~^~04/01/2006~ -~25013~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25013~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~25013~^~645~^11.501^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~646~^6.513^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~663~^0.025^4^0.001^~1~^~A~^^^1^0.022^0.026^3^0.022^0.028^~2, 3~^~04/01/2006~ -~25013~^~669~^0.063^4^0.004^~1~^~A~^^^1^0.052^0.073^3^0.050^0.077^~2, 3~^~04/01/2006~ -~25013~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~674~^11.423^4^0.178^~1~^~A~^^^1^10.891^11.634^3^10.855^11.990^~2, 3~^~04/01/2006~ -~25013~^~675~^6.357^4^0.052^~1~^~A~^^^1^6.212^6.449^3^6.192^6.521^~2, 3~^~04/01/2006~ -~25013~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~695~^0.063^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~25013~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2006~ -~25013~^~851~^0.093^4^0.001^~1~^~A~^^^1^0.091^0.096^3^0.089^0.096^~2, 3~^~04/01/2006~ -~25014~^~312~^0.188^12^0.007^~1~^~A~^^^1^0.143^0.236^11^0.172^0.205^~2, 3~^~07/01/2013~ -~25014~^~315~^0.771^12^0.038^~1~^~A~^^^1^0.541^0.975^11^0.686^0.856^~2, 3~^~07/01/2013~ -~25014~^~404~^0.032^5^0.004^~1~^~A~^^^1^0.020^0.040^4^0.022^0.042^~2, 3~^~07/01/2013~ -~25014~^~405~^0.046^5^0.004^~1~^~A~^^^1^0.040^0.060^4^0.035^0.057^~2, 3~^~07/01/2013~ -~25014~^~406~^1.432^5^0.093^~1~^~A~^^^1^1.130^1.660^4^1.174^1.690^~2, 3~^~07/01/2013~ -~25014~^~410~^0.180^5^0.014^~1~^~A~^^^1^0.150^0.220^4^0.140^0.220^~2, 3~^~07/01/2013~ -~25014~^~415~^0.282^5^0.009^~1~^~A~^^^1^0.263^0.316^4^0.257^0.308^~2, 3~^~07/01/2013~ -~25014~^~501~^0.051^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~502~^0.218^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~503~^0.253^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~504~^1.028^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~505~^0.263^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~506~^0.132^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~507~^0.143^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~508~^0.323^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~509~^0.271^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~510~^0.343^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~511~^0.216^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~512~^0.182^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~513~^0.528^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~514~^0.541^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~515~^1.421^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~516~^0.231^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~517~^0.634^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~518~^0.334^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~25014~^~521~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25014~^~605~^9.802^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~606~^7.216^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~610~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~612~^0.030^8^0.001^~1~^~A~^^^1^0.025^0.035^7^0.027^0.033^~2, 3~^~07/01/2013~ -~25014~^~613~^3.551^8^0.143^~1~^~A~^^^1^3.078^4.064^7^3.213^3.889^~2, 3~^~07/01/2013~ -~25014~^~614~^3.347^8^0.257^~1~^~A~^^^1^2.422^4.215^7^2.739^3.954^~2, 3~^~07/01/2013~ -~25014~^~615~^0.113^8^0.007^~1~^~A~^^^1^0.090^0.144^7^0.095^0.130^~2, 3~^~07/01/2013~ -~25014~^~617~^21.091^8^1.061^~1~^~AS~^^^1^16.979^24.765^7^18.581^23.601^~2, 3~^~07/01/2013~ -~25014~^~618~^2.305^8^0.107^~1~^~AS~^^^1^1.848^2.769^7^2.051^2.559^~2, 3~^~07/01/2013~ -~25014~^~619~^0.074^8^0.007^~1~^~AS~^^^1^0.055^0.108^7^0.057^0.091^~2, 3~^~07/01/2013~ -~25014~^~620~^0.012^8^0.001^~1~^~A~^^^1^0.009^0.015^7^0.010^0.014^~2, 3~^~07/01/2013~ -~25014~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~624~^0.097^8^0.007^~1~^~A~^^^1^0.076^0.122^7^0.082^0.113^~2, 3~^~07/01/2013~ -~25014~^~626~^0.016^8^0.002^~1~^~AS~^^^1^0.012^0.024^7^0.012^0.020^~2, 3~^~07/01/2013~ -~25014~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25014~^~628~^0.029^8^0.002^~1~^~A~^^^1^0.021^0.039^7^0.024^0.034^~2, 3~^~07/01/2013~ -~25014~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~630~^0.000^8^0.000^~1~^~AS~^^^1^0.000^0.003^7^-0.001^0.001^~2, 3~^~03/01/2008~ -~25014~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~645~^21.143^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~646~^2.392^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~652~^0.007^8^0.000^~1~^~A~^^^1^0.005^0.009^7^0.006^0.008^~2, 3~^~07/01/2013~ -~25014~^~653~^0.034^8^0.002^~1~^~A~^^^1^0.029^0.041^7^0.030^0.039^~2, 3~^~03/01/2008~ -~25014~^~654~^0.037^8^0.002^~1~^~A~^^^1^0.032^0.045^7^0.033^0.042^~2, 3~^~07/01/2013~ -~25014~^~662~^0.002^8^0.001^~1~^~A~^^^1^0.000^0.009^7^-0.001^0.005^~1, 2, 3~^~07/01/2013~ -~25014~^~663~^9.339^8^0.551^~1~^~A~^^^1^7.373^11.287^7^8.037^10.641^~2, 3~^~07/01/2013~ -~25014~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~665~^0.462^8^0.021^~1~^~A~^^^1^0.362^0.537^7^0.413^0.510^~2, 3~^~07/01/2013~ -~25014~^~670~^0.017^8^0.001^~1~^~A~^^^1^0.014^0.021^7^0.015^0.018^~2, 3~^~07/01/2013~ -~25014~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~03/01/2008~ -~25014~^~673~^0.014^8^0.000^~1~^~A~^^^1^0.012^0.015^7^0.013^0.015^~2, 3~^~07/01/2013~ -~25014~^~674~^11.752^8^0.517^~1~^~A~^^^1^9.606^13.478^7^10.531^12.973^~2, 3~^~07/01/2013~ -~25014~^~675~^1.827^8^0.104^~1~^~A~^^^1^1.417^2.248^7^1.582^2.072^~2, 3~^~07/01/2013~ -~25014~^~676~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.003^7^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~25014~^~685~^0.005^8^0.001^~1~^~A~^^^1^0.000^0.009^7^0.002^0.007^~1, 2, 3~^~07/01/2013~ -~25014~^~687~^0.007^8^0.001^~1~^~A~^^^1^0.006^0.010^7^0.006^0.009^~2, 3~^~07/01/2013~ -~25014~^~689~^0.001^8^0.000^~1~^~AS~^^^1^0.000^0.002^7^0.000^0.002^~2, 3~^~07/01/2013~ -~25014~^~693~^9.341^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~695~^0.462^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25014~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2011~ -~25014~^~851~^0.069^8^0.006^~1~^~A~^^^1^0.050^0.099^7^0.055^0.084^~2, 3~^~07/01/2013~ -~25014~^~852~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^7^0.000^0.002^~1, 2, 3~^~07/01/2013~ -~25014~^~853~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~25014~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2013~ -~25015~^~312~^0.977^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~315~^1.322^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~404~^1.875^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~405~^2.125^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~406~^25.000^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~410~^12.500^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~415~^2.500^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~501~^0.314^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~502~^0.956^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~503~^1.156^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~504~^1.937^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~505~^1.414^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~506~^0.345^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~507~^0.332^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~508~^1.337^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~509~^0.997^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~510~^1.208^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~511~^2.257^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~512~^0.671^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~513~^1.067^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~514~^3.032^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~515~^5.185^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~516~^1.209^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~517~^1.424^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~518~^1.352^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~606~^6.250^1^^~8~^~LC~^^^^^^^^^^~09/01/2009~ -~25015~^~607~^0.074^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~608~^0.026^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~609~^0.016^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~610~^0.030^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~611~^0.031^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~612~^0.124^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~613~^1.564^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~614~^1.008^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~615~^0.023^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~617~^2.572^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~618~^2.671^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~619~^0.220^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~625~^0.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~626~^0.038^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~628~^0.023^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~645~^2.645^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~646~^2.892^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~652~^0.009^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~653~^0.009^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25015~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~09/01/2009~ -~25015~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~ -~25016~^~312~^0.452^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~315~^1.058^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~404~^2.949^3^0.222^~8~^~LC~^^^0^2.727^3.394^2^1.994^3.905^~2, 3~^~05/01/2006~ -~25016~^~405~^3.343^3^0.252^~8~^~LC~^^^0^3.091^3.846^2^2.259^4.426^~2, 3~^~05/01/2006~ -~25016~^~406~^45.249^1^^~12~^~MA~^^^^^^^^^^~05/01/2006~ -~25016~^~410~^22.624^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~415~^4.525^1^^~8~^~LC~^^^^^^^^^^~05/01/2006~ -~25016~^~501~^0.221^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~502~^0.682^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~503~^0.833^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~504~^1.405^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~505~^0.972^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~506~^0.266^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~507~^0.236^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~508~^0.976^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~509~^0.736^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~510~^0.898^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~511~^1.669^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~512~^0.485^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~513~^0.764^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~514~^2.175^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~515~^3.827^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~516~^0.881^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~517~^1.061^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~518~^0.967^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~521~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~605~^0.151^3^0.050^~12~^~MA~^^^0^0.052^0.204^2^-0.062^0.364^~2, 3~^~05/01/2006~ -~25016~^~606~^4.753^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25016~^~607~^0.145^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~608~^0.052^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~609~^0.030^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~610~^0.058^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~611~^0.062^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~612~^0.208^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~613~^2.287^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~614~^1.822^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~615~^0.048^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~617~^3.802^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~618~^1.882^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~619~^0.034^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~620~^0.001^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~624~^0.005^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~625~^0.018^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~626~^0.046^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~628~^0.049^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~645~^3.920^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25016~^~646~^1.917^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25016~^~652~^0.019^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~653~^0.018^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~687~^0.005^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~857~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25016~^~858~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~ -~25017~^~312~^1.430^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~315~^1.610^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~404~^8.060^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~405~^1.920^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~406~^32.600^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~410~^15.900^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~415~^2.200^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~502~^0.540^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~503~^0.660^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~504~^1.330^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~505~^0.980^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~506~^0.290^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~507~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~508~^0.740^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~509~^0.270^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~510~^0.830^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~511~^0.610^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~512~^0.360^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~513~^0.510^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~514~^1.250^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~515~^3.100^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~516~^0.420^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~517~^1.230^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~518~^0.860^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~606~^1.320^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~612~^0.013^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~613~^0.644^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~614~^0.632^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~615~^0.019^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~617~^1.030^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~618~^0.565^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~624~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~626~^0.010^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~645~^1.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~646~^0.589^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~663~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~665~^0.004^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~673~^0.010^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~674~^1.025^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~675~^0.561^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~ -~25017~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~25017~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~851~^0.025^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~25017~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25017~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~25018~^~415~^1.364^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~ -~25018~^~605~^0.037^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25018~^~606~^3.870^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~25020~^~312~^0.284^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~315~^0.743^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~404~^1.700^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~405~^1.900^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~406~^21.200^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~410~^10.100^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~415~^2.100^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~502~^0.570^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~503~^0.560^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~504~^1.250^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~505~^0.580^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~506~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~508~^0.870^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~509~^0.580^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~510~^0.740^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~511~^1.370^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~512~^0.400^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~25020~^~513~^0.660^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~514~^1.880^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~515~^3.370^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~516~^0.780^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~518~^0.960^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~605~^0.208^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25020~^~606~^5.360^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~25020~^~607~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~608~^0.013^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~609~^0.168^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~610~^0.169^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~611~^2.074^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~612~^0.713^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~613~^0.931^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~614~^1.105^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~615~^0.048^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~617~^2.193^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~618~^0.998^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~619~^0.035^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~624~^0.075^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~626~^0.006^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~628~^0.039^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~629~^0.001^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~645~^2.428^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~25020~^~646~^1.132^0^^~4~^~T~^^^^^^^^^^~05/01/2009~ -~25020~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~653~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~654~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~25020~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~663~^0.176^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~665~^0.032^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~673~^0.006^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~674~^2.017^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~675~^0.966^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~676~^0.002^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~ -~25020~^~693~^0.176^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25020~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25020~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~851~^0.035^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25020~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25020~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~ -~25021~^~312~^1.410^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~315~^2.590^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~404~^0.120^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~405~^3.000^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~406~^37.100^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~410~^15.900^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~415~^2.400^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~501~^0.330^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~502~^0.790^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~503~^0.950^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~504~^1.650^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~505~^1.020^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~506~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~508~^1.110^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~509~^0.670^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~510~^0.930^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~511~^1.700^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~512~^0.500^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~513~^0.990^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~514~^2.530^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~515~^4.180^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~516~^0.990^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~517~^1.630^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~518~^1.190^0^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~25021~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25021~^~606~^5.523^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25021~^~607~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~608~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~609~^0.084^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~610~^0.148^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~611~^2.272^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~612~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~613~^1.267^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~614~^0.512^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~615~^0.081^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~617~^2.840^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~618~^2.582^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~619~^0.124^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~624~^0.155^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~626~^0.012^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~628~^0.071^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~629~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~630~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~645~^2.933^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25021~^~646~^2.714^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25021~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~653~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~654~^0.082^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~663~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~665~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~673~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~674~^2.835^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~675~^2.575^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~676~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~ -~25021~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25021~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~ -~25021~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~851~^0.124^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25021~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25021~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~25022~^~404~^0.187^1^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~405~^0.018^1^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~406~^2.399^1^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~415~^0.289^1^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25022~^~605~^0.095^0^^~4~^~T~^^^^^^^^^^~01/01/2007~ -~25022~^~606~^2.469^0^^~4~^~O~^^^^^^^^^^~08/01/2009~ -~25022~^~645~^12.698^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25022~^~646~^6.513^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~ -~25023~^~404~^0.169^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~405~^0.120^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~406~^1.975^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~415~^0.269^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~ -~25023~^~605~^0.176^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~606~^2.892^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~645~^12.557^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25023~^~646~^6.631^0^^~4~^~O~^^^^^^^^^^~01/01/2007~ -~25024~^~312~^0.126^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~404~^0.410^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~405~^0.290^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~406~^4.270^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~415~^0.020^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~606~^0.695^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~612~^0.009^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~613~^0.446^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~614~^0.243^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~617~^1.070^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~618~^0.892^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~619~^0.055^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~645~^1.071^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25024~^~646~^0.948^0^^~4~^^^^^^^^^^^~02/01/2007~ -~25025~^~312~^2.456^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~315~^2.039^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~404~^0.333^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~405~^0.349^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~406~^2.978^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~410~^1.395^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~415~^0.513^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~501~^0.376^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~502~^1.125^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~503~^1.262^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~504~^2.140^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~505~^1.681^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~506~^0.384^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~507~^0.427^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~508~^1.371^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~509~^1.028^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~510~^1.337^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~511~^2.069^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~512~^0.704^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~513~^1.263^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~514~^3.213^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~515~^5.057^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~516~^1.214^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~517~^1.500^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~518~^1.503^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~605~^0.000^1^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~606~^1.102^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~612~^0.020^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~613~^0.809^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~614~^0.269^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~617~^1.628^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~618~^3.621^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~619~^0.398^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~626~^0.033^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~645~^1.661^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~646~^4.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~25025~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25025~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~ -~25026~^~312~^0.204^8^0.026^~1~^~A~^^^1^0.153^0.275^1^-0.114^0.521^~2, 3~^~07/01/2014~ -~25026~^~315~^0.772^8^0.044^~1~^~A~^^^1^0.626^0.918^1^0.387^1.156^~2, 3~^~07/01/2014~ -~25026~^~404~^0.047^5^0.001^~1~^~A~^^^1^0.030^0.060^2^0.040^0.053^~2, 3~^~07/01/2014~ -~25026~^~405~^0.060^5^0.000^~1~^~A~^^^1^0.060^0.060^^^^~2, 3~^~09/01/2012~ -~25026~^~406~^1.615^5^0.021^~1~^~A~^^^1^1.300^1.860^2^1.525^1.705^~2, 3~^~07/01/2014~ -~25026~^~410~^0.201^5^0.003^~1~^~A~^^^1^0.140^0.250^2^0.190^0.211^~2, 3~^~07/01/2014~ -~25026~^~415~^0.310^5^0.000^~1~^~A~^^^1^0.264^0.347^2^0.309^0.312^~2, 3~^~07/01/2014~ -~25026~^~501~^0.061^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~502~^0.327^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~503~^0.312^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~504~^1.065^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~505~^0.244^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~506~^0.182^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~507~^0.157^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~508~^0.426^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~509~^0.353^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~510~^0.439^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~511~^0.432^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~512~^0.265^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~513~^0.651^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~514~^0.604^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~515~^1.630^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~516~^0.356^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~517~^0.758^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~518~^0.413^0^^~4~^~FLC~^^^^^^^^^^~03/01/2008~ -~25026~^~521~^0.000^4^0.000^~1~^~A~^^^^0.000^0.000^^^^^~03/01/2008~ -~25026~^~605~^0.853^0^^~4~^~NR~^^^^^^^^^^~02/01/2017~ -~25026~^~606~^14.598^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~ -~25026~^~607~^0.003^6^0.000^~1~^~A~^^^1^0.000^0.006^2^0.002^0.004^~1, 2, 3~^~06/01/2013~ -~25026~^~608~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^-0.001^0.003^~1, 2, 3~^~06/01/2013~ -~25026~^~609~^0.013^6^0.002^~1~^~A~^^^1^0.000^0.025^1^-0.004^0.031^~1, 2, 3~^~07/01/2014~ -~25026~^~610~^0.030^6^0.007^~1~^~A~^^^1^0.000^0.060^2^0.002^0.059^~1, 2, 3~^~07/01/2014~ -~25026~^~611~^0.063^6^0.012^~1~^~A~^^^1^0.000^0.096^1^-0.076^0.201^~1, 2, 3~^~07/01/2014~ -~25026~^~612~^0.298^6^0.007^~1~^~A~^^^1^0.238^0.346^1^0.219^0.377^~2, 3~^~07/01/2014~ -~25026~^~613~^12.646^6^0.375^~1~^~A~^^^1^10.521^14.394^1^8.571^16.721^~2, 3~^~07/01/2014~ -~25026~^~614~^1.346^6^0.102^~1~^~A~^^^1^1.120^1.594^1^0.093^2.600^~2, 3~^~07/01/2014~ -~25026~^~615~^0.106^6^0.003^~1~^~A~^^^1^0.093^0.115^1^0.066^0.145^~2, 3~^~06/01/2013~ -~25026~^~617~^0.273^0^^~4~^~NR~^^^^^^^^^^~02/01/2017~ -~25026~^~618~^4.104^0^^~4~^~NR~^^^^^^^^^^~02/01/2017~ -~25026~^~619~^0.012^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~25026~^~620~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^1^0.002^0.007^~2, 3~^~06/01/2013~ -~25026~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~624~^0.022^6^0.002^~1~^~A~^^^1^0.019^0.028^1^-0.002^0.046^~2, 3~^~06/01/2013~ -~25026~^~625~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~626~^0.042^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~ -~25026~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~628~^0.052^6^0.000^~1~^~A~^^^1^0.044^0.061^3^0.050^0.053^~2, 3~^~07/01/2014~ -~25026~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~25026~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~645~^10.538^0^^~4~^~NR~^^^^^^^^^^~07/01/2016~ -~25026~^~646~^4.124^0^^~4~^~NR~^^^^^^^^^^~02/01/2017~ -~25026~^~652~^0.015^6^0.001^~1~^~A~^^^1^0.012^0.018^3^0.013^0.017^~2, 3~^~06/01/2013~ -~25026~^~653~^0.030^6^0.001^~1~^~A~^^^1^0.025^0.034^1^0.018^0.042^~2, 3~^~07/01/2014~ -~25026~^~654~^0.024^6^0.001^~1~^~A~^^^1^0.022^0.026^1^0.017^0.031^~2, 3~^~06/01/2013~ -~25026~^~662~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~663~^0.273^6^0.179^~1~^~A~^^^1^0.042^0.956^1^-1.924^2.470^~2, 3~^~07/01/2014~ -~25026~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~665~^0.127^6^0.018^~1~^~A~^^^1^0.051^0.258^3^0.070^0.184^~2, 3~^~07/01/2014~ -~25026~^~670~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.019^2^0.008^0.015^~2, 3~^~06/01/2013~ -~25026~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~09/01/2012~ -~25026~^~673~^0.042^6^0.001^~1~^~A~^^^1^0.035^0.048^1^0.036^0.048^~2, 3~^~07/01/2014~ -~25026~^~675~^3.512^6^0.039^~1~^~A~^^^1^3.245^3.840^2^3.350^3.675^~2, 3~^~07/01/2014~ -~25026~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~685~^0.012^6^0.000^~1~^~A~^^^1^0.009^0.015^3^0.011^0.013^~2, 3~^~06/01/2013~ -~25026~^~687~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^1^0.005^0.010^~2, 3~^~09/01/2012~ -~25026~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~ -~25026~^~693~^0.273^0^^~4~^~NR~^^^^^^^^^^~02/01/2017~ -~25026~^~695~^0.127^0^^~1~^~A~^^^^^^^^^^~07/01/2016~ -~25026~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~852~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^^^^~2, 3~^~09/01/2012~ -~25026~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25026~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~09/01/2012~ -~25027~^~312~^0.198^4^0.012^~1~^~A~^^^1^0.177^0.231^3^0.160^0.236^~2, 3~^~05/01/2009~ -~25027~^~315~^0.276^4^0.006^~1~^~A~^^^1^0.262^0.287^3^0.258^0.295^~2, 3~^~05/01/2009~ -~25027~^~404~^0.065^4^0.009^~1~^~A~^^^1^0.040^0.080^3^0.037^0.093^~2, 3~^~05/01/2009~ -~25027~^~405~^0.040^4^0.006^~1~^~A~^^^1^0.030^0.050^3^0.021^0.058^~2, 3~^~05/01/2009~ -~25027~^~406~^0.802^4^0.056^~1~^~A~^^^1^0.700^0.960^3^0.625^0.980^~2, 3~^~05/01/2009~ -~25027~^~410~^1.100^2^^~1~^~A~^^^1^1.100^1.100^^^^^~05/01/2009~ -~25027~^~415~^0.460^4^0.007^~1~^~A~^^^1^0.450^0.480^3^0.437^0.482^~2, 3~^~05/01/2009~ -~25027~^~605~^0.185^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~606~^8.337^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~607~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.009^3^0.003^0.009^~2, 3~^~05/01/2009~ -~25027~^~608~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~05/01/2009~ -~25027~^~609~^0.019^4^0.005^~1~^~A~^^^1^0.011^0.030^3^0.004^0.035^~2, 3~^~05/01/2009~ -~25027~^~610~^0.036^4^0.004^~1~^~A~^^^1^0.027^0.043^3^0.023^0.049^~2, 3~^~05/01/2009~ -~25027~^~611~^0.033^4^0.029^~1~^~A~^^^1^0.003^0.121^3^-0.060^0.126^~2, 3~^~05/01/2009~ -~25027~^~612~^0.210^4^0.021^~1~^~A~^^^1^0.174^0.262^3^0.144^0.276^~2, 3~^~05/01/2009~ -~25027~^~613~^7.084^4^0.785^~1~^~A~^^^1^5.900^9.343^3^4.585^9.583^~2, 3~^~05/01/2009~ -~25027~^~614~^0.781^4^0.088^~1~^~A~^^^1^0.648^1.039^3^0.500^1.063^~2, 3~^~05/01/2009~ -~25027~^~615~^0.076^4^0.005^~1~^~A~^^^1^0.066^0.085^3^0.061^0.090^~2, 3~^~05/01/2009~ -~25027~^~617~^5.473^4^1.142^~1~^~AS~^^^1^3.995^8.870^3^1.838^9.108^~2, 3~^~05/01/2009~ -~25027~^~618~^11.617^4^3.170^~1~^~AS~^^^1^2.118^15.148^3^1.527^21.706^~2, 3~^~05/01/2009~ -~25027~^~619~^0.078^4^0.004^~1~^~AS~^^^1^0.068^0.087^3^0.064^0.091^~2, 3~^~05/01/2009~ -~25027~^~620~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~05/01/2009~ -~25027~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~624~^0.031^4^0.005^~1~^~A~^^^1^0.017^0.038^3^0.016^0.046^~2, 3~^~05/01/2009~ -~25027~^~625~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.000^0.003^~2, 3~^~05/01/2009~ -~25027~^~626~^0.116^4^0.025^~1~^~AS~^^^1^0.044^0.156^3^0.037^0.195^~2, 3~^~05/01/2009~ -~25027~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~628~^0.028^4^0.005^~1~^~A~^^^1^0.021^0.044^3^0.010^0.045^~2, 3~^~05/01/2009~ -~25027~^~629~^0.028^4^0.010^~1~^~A~^^^1^0.008^0.054^3^-0.002^0.059^~2, 3~^~05/01/2009~ -~25027~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~05/01/2009~ -~25027~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~645~^5.632^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~646~^11.739^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~652~^0.009^4^0.002^~1~^~A~^^^1^0.006^0.014^3^0.003^0.014^~2, 3~^~05/01/2009~ -~25027~^~653~^0.023^4^0.001^~1~^~A~^^^1^0.022^0.025^3^0.021^0.025^~2, 3~^~05/01/2009~ -~25027~^~654~^0.027^4^0.003^~1~^~A~^^^1^0.019^0.033^3^0.018^0.037^~2, 3~^~05/01/2009~ -~25027~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~663~^0.073^4^0.012^~1~^~A~^^^1^0.046^0.101^3^0.035^0.112^~2, 3~^~05/01/2009~ -~25027~^~664~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~25027~^~665~^0.111^4^0.009^~1~^~A~^^^1^0.087^0.131^3^0.081^0.141^~2, 3~^~05/01/2009~ -~25027~^~670~^0.026^4^0.004^~1~^~A~^^^1^0.015^0.033^3^0.014^0.038^~2, 3~^~05/01/2009~ -~25027~^~671~^0.013^4^0.004^~1~^~A~^^^1^0.002^0.019^3^0.001^0.026^~2, 3~^~05/01/2009~ -~25027~^~672~^0.007^4^0.003^~1~^~A~^^^1^0.003^0.015^3^-0.002^0.016^~2, 3~^~05/01/2009~ -~25027~^~673~^0.116^4^0.025^~1~^~A~^^^1^0.044^0.156^3^0.037^0.195^~2, 3~^~05/01/2009~ -~25027~^~674~^5.399^4^1.134^~1~^~A~^^^1^3.932^8.769^3^1.791^9.007^~2, 3~^~05/01/2009~ -~25027~^~675~^11.480^4^3.165^~1~^~A~^^^1^1.997^14.996^3^1.408^21.552^~2, 3~^~05/01/2009~ -~25027~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~25027~^~693~^0.074^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~695~^0.111^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25027~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~851~^0.078^4^0.004^~1~^~A~^^^1^0.068^0.087^3^0.064^0.091^~2, 3~^~05/01/2009~ -~25027~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25027~^~858~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.007^~2, 3~^~05/01/2009~ -~25028~^~312~^0.105^19^0.003^~1~^~A~^^^2^0.078^0.131^17^0.098^0.111^~2, 3~^~04/01/2011~ -~25028~^~315~^0.357^19^0.007^~1~^~A~^^^2^0.282^0.449^17^0.342^0.372^~2, 3~^~07/01/2013~ -~25028~^~404~^0.130^13^0.012^~1~^~A~^^^2^0.080^0.240^7^0.101^0.159^~2, 3~^~04/01/2011~ -~25028~^~405~^0.043^13^0.006^~1~^~A~^^^2^0.020^0.100^7^0.028^0.058^~2, 3~^~04/01/2011~ -~25028~^~406~^1.498^13^0.118^~1~^~A~^^^2^0.890^2.550^8^1.223^1.772^~2, 3~^~04/01/2011~ -~25028~^~410~^0.411^7^0.012^~1~^~A~^^^1^0.370^0.460^6^0.381^0.441^~2, 3~^~07/01/2008~ -~25028~^~415~^0.202^13^0.008^~1~^~A~^^^2^0.150^0.270^9^0.184^0.219^~2, 3~^~04/01/2011~ -~25028~^~605~^0.066^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~606~^2.776^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~607~^0.007^19^0.001^~1~^~A~^^^2^0.000^0.011^7^0.006^0.009^~1, 2, 3~^~07/01/2008~ -~25028~^~608~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~07/01/2008~ -~25028~^~609~^0.010^19^0.001^~1~^~A~^^^2^0.004^0.020^15^0.008^0.011^~2, 3~^~07/01/2013~ -~25028~^~610~^0.023^19^0.002^~1~^~A~^^^2^0.000^0.054^11^0.018^0.027^~1, 2, 3~^~07/01/2013~ -~25028~^~611~^0.002^19^0.001^~1~^~A~^^^2^0.000^0.022^7^0.000^0.005^~1, 2, 3~^~07/01/2013~ -~25028~^~612~^0.021^19^0.005^~1~^~A~^^^2^0.007^0.082^15^0.009^0.032^~2, 3~^~07/01/2013~ -~25028~^~613~^2.123^19^0.184^~1~^~A~^^^2^1.096^3.784^14^1.730^2.516^~2, 3~^~07/01/2013~ -~25028~^~614~^0.471^19^0.018^~1~^~A~^^^2^0.335^0.693^8^0.430^0.513^~2, 3~^~07/01/2013~ -~25028~^~615~^0.056^19^0.002^~1~^~A~^^^2^0.000^0.103^11^0.051^0.060^~1, 2, 3~^~07/01/2013~ -~25028~^~617~^8.445^19^0.624^~1~^~AS~^^^2^4.763^13.610^15^7.119^9.771^~2, 3~^~07/01/2013~ -~25028~^~618~^8.847^19^0.632^~1~^~AS~^^^2^3.469^13.276^12^7.475^10.220^~2, 3~^~07/01/2013~ -~25028~^~619~^0.313^19^0.070^~1~^~AS~^^^2^0.060^1.281^8^0.152^0.474^~2, 3~^~07/01/2013~ -~25028~^~620~^0.003^19^0.001^~1~^~A~^^^2^0.000^0.006^12^0.002^0.004^~1, 2, 3~^~07/01/2013~ -~25028~^~621~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.002^6^0.000^0.000^~1, 2, 3~^~07/01/2008~ -~25028~^~624~^0.021^19^0.002^~1~^~A~^^^2^0.000^0.060^11^0.017^0.026^~1, 2, 3~^~07/01/2013~ -~25028~^~625~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~626~^0.027^19^0.003^~1~^~AS~^^^2^0.016^0.062^16^0.020^0.033^~2, 3~^~07/01/2013~ -~25028~^~627~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~628~^0.101^19^0.014^~1~^~A~^^^2^0.047^0.272^16^0.071^0.131^~2, 3~^~07/01/2013~ -~25028~^~629~^0.005^19^0.001^~1~^~A~^^^2^0.000^0.023^6^0.003^0.006^~1, 2, 3~^~07/01/2013~ -~25028~^~630~^0.003^19^0.001^~1~^~AS~^^^2^0.000^0.016^11^0.002^0.005^~2, 3~^~04/01/2011~ -~25028~^~631~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~645~^8.584^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~646~^9.179^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~652~^0.004^19^0.000^~1~^~A~^^^2^0.003^0.006^15^0.004^0.004^~2, 3~^~04/01/2011~ -~25028~^~653~^0.013^19^0.001^~1~^~A~^^^2^0.007^0.016^17^0.011^0.014^~2, 3~^~04/01/2011~ -~25028~^~654~^0.025^19^0.001^~1~^~A~^^^2^0.000^0.044^11^0.023^0.026^~1, 2, 3~^~07/01/2013~ -~25028~^~662~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~663~^0.020^19^0.003^~1~^~A~^^^2^0.009^0.050^17^0.014^0.026^~2, 3~^~07/01/2013~ -~25028~^~664~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~07/01/2008~ -~25028~^~665~^0.046^19^0.005^~1~^~A~^^^2^0.009^0.083^17^0.036^0.057^~2, 3~^~07/01/2013~ -~25028~^~670~^0.011^19^0.001^~1~^~A~^^^2^0.006^0.019^13^0.009^0.012^~2, 3~^~07/01/2013~ -~25028~^~671~^0.003^19^0.001^~1~^~A~^^^2^0.000^0.021^6^0.000^0.005^~1, 2, 3~^~04/01/2011~ -~25028~^~672~^0.009^19^0.001^~1~^~A~^^^2^0.005^0.031^13^0.006^0.012^~2, 3~^~07/01/2013~ -~25028~^~673~^0.027^19^0.003^~1~^~A~^^^2^0.016^0.062^16^0.020^0.033^~2, 3~^~07/01/2013~ -~25028~^~674~^8.425^19^0.622^~1~^~A~^^^2^4.734^13.584^16^7.103^9.748^~2, 3~^~07/01/2013~ -~25028~^~675~^8.790^19^0.629^~1~^~A~^^^2^3.452^13.202^12^7.424^10.156^~2, 3~^~07/01/2013~ -~25028~^~676~^0.003^19^0.001^~1~^~A~^^^2^0.000^0.016^11^0.001^0.005^~1, 2, 3~^~04/01/2011~ -~25028~^~685~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~687~^0.005^19^0.001^~1~^~A~^^^2^0.000^0.017^11^0.004^0.006^~1, 2, 3~^~04/01/2011~ -~25028~^~689~^0.000^19^0.000^~1~^~AS~^^^2^0.000^0.003^6^0.000^0.001^~2, 3~^~04/01/2011~ -~25028~^~693~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~695~^0.046^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~25028~^~697~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~25028~^~851~^0.313^19^0.070^~1~^~A~^^^2^0.060^1.281^8^0.152^0.474^~2, 3~^~07/01/2013~ -~25028~^~852~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.001^6^0.000^0.000^~1, 2, 3~^~07/01/2008~ -~25028~^~853~^0.000^19^0.000^~1~^~A~^^^2^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~04/01/2011~ -~25028~^~858~^0.001^19^0.000^~1~^~A~^^^2^0.000^0.003^6^0.001^0.001^~1, 2, 3~^~04/01/2011~ -~25030~^~312~^0.433^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~315~^1.205^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~404~^0.227^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~405~^0.131^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~406~^1.768^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~410~^1.721^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~415~^0.530^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~605~^0.095^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~606~^1.887^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~612~^0.003^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~613~^1.118^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~614~^0.525^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~615~^0.157^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~617~^15.029^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~618~^4.696^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~619~^2.231^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~624~^0.080^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~626~^0.055^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~628~^0.318^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~645~^15.409^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~646~^6.930^0^^~4~^~FLC~^^^^^^^^^^~12/01/2008~ -~25030~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25030~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25031~^~312~^0.774^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~315~^0.846^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~404~^0.750^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~405~^1.700^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~406~^20.000^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~410~^5.000^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~415~^2.000^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~605~^0.000^1^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~606~^4.499^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25031~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~608~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~609~^0.138^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~610~^0.156^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~611~^1.969^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~612~^0.693^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~613~^0.989^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~614~^0.544^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~617~^3.811^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~618~^4.731^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~619~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~626~^0.017^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~645~^3.828^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25031~^~646~^4.804^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25031~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25031~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~312~^0.382^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~315~^0.562^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~404~^0.135^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~405~^0.151^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~406~^0.680^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~410~^0.503^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~415~^0.095^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25032~^~606~^3.227^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~607~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~608~^0.044^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~609~^0.094^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~610~^0.133^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~611~^1.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~612~^0.512^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~613~^0.960^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~614~^0.395^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~615~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~617~^2.471^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~618~^1.033^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~619~^0.195^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~626~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~628~^0.030^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~630~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~645~^2.558^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~646~^1.228^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25032~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~653~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25032~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~312~^0.506^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~315~^0.779^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~404~^0.115^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~405~^0.289^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~406~^1.158^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~410~^0.389^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~415~^0.063^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~605~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~606~^1.213^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~612~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~613~^0.934^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~614~^0.210^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~615~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~617~^9.291^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~618~^3.876^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~619~^0.193^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~626~^0.071^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~628~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~630~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~645~^9.486^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~646~^4.181^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~687~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25033~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~312~^0.790^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~315~^1.108^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~404~^0.259^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~405~^0.179^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~406~^1.888^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~410~^0.316^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~415~^1.073^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~ -~25034~^~605~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~606~^4.687^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~608~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~609~^0.164^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~610~^0.180^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~611~^2.242^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~612~^0.788^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~613~^0.895^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~614~^0.406^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~615~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~617~^2.480^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~618~^1.222^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~619~^0.045^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~626~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~628~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~645~^2.498^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~646~^1.268^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25034~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25035~^~312~^0.163^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~315~^1.133^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~404~^0.190^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~405~^0.116^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~406~^1.049^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~410~^0.418^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~415~^0.089^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~501~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~502~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~503~^0.050^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~504~^0.098^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~505~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~506~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~507~^0.030^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~508~^0.072^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~509~^0.043^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~510~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~511~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~512~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~513~^0.046^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~514~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~515~^0.481^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~516~^0.052^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~517~^0.166^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~518~^0.072^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~ -~25035~^~606~^5.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~608~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~609~^0.240^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~610~^0.190^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~611~^1.413^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~612~^0.547^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~613~^1.521^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~614~^1.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~615~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~617~^5.287^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~618~^1.415^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~619~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~624~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~626~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~645~^5.303^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~646~^1.440^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~652~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~653~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25035~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~312~^0.247^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~315~^1.682^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~404~^0.199^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~405~^0.146^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~406~^2.318^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~410~^0.450^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~415~^0.143^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~501~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~502~^0.065^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~503~^0.065^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~504~^0.115^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~505~^0.075^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~506~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~507~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~508~^0.077^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~509~^0.062^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~510~^0.073^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~511~^0.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~512~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~513~^0.066^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~514~^0.185^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~515~^0.326^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~516~^0.082^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~517~^0.081^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~518~^0.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~606~^9.888^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~607~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~608~^0.031^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~609~^0.346^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~610~^0.257^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~611~^2.987^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~612~^0.962^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~613~^4.395^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~614~^0.866^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~615~^0.039^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~617~^3.173^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~618~^2.321^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~619~^0.226^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~626~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~645~^3.194^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25036~^~646~^2.546^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25037~^~312~^0.141^6^0.006^~1~^~A~^^^1^0.126^0.169^5^0.126^0.157^~2, 3~^~04/01/2009~ -~25037~^~315~^0.656^6^0.023^~1~^~A~^^^1^0.596^0.738^5^0.597^0.716^~2, 3~^~04/01/2009~ -~25037~^~404~^0.560^3^0.020^~1~^~A~^^^1^0.520^0.580^2^0.474^0.646^~2, 3~^~04/01/2009~ -~25037~^~405~^0.307^3^0.009^~1~^~A~^^^1^0.290^0.320^2^0.269^0.345^~2, 3~^~04/01/2009~ -~25037~^~406~^7.043^3^0.491^~1~^~A~^^^1^6.300^7.970^2^4.932^9.155^~2, 3~^~04/01/2009~ -~25037~^~410~^0.500^3^0.006^~1~^~A~^^^1^0.490^0.510^2^0.475^0.525^~2, 3~^~04/01/2009~ -~25037~^~415~^0.109^3^0.002^~1~^~A~^^^1^0.107^0.112^2^0.102^0.116^~2, 3~^~04/01/2009~ -~25037~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~502~^0.351^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~503~^0.482^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~504~^0.874^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~505~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~506~^0.166^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~508~^0.642^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~509~^0.331^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~510~^0.542^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~511~^0.462^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~512~^0.261^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~513~^0.391^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~514~^0.522^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~515~^4.609^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~516~^0.482^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~517~^1.576^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~518~^0.562^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25037~^~605~^0.038^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~606~^1.342^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~607~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.010^~1, 2, 3~^~04/01/2009~ -~25037~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2009~ -~25037~^~609~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2009~ -~25037~^~610~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2009~ -~25037~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~612~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2009~ -~25037~^~613~^0.676^3^0.021^~1~^~A~^^^1^0.637^0.707^2^0.587^0.765^~2, 3~^~04/01/2009~ -~25037~^~614~^0.448^3^0.017^~1~^~A~^^^1^0.420^0.478^2^0.376^0.520^~2, 3~^~04/01/2009~ -~25037~^~615~^0.041^3^0.002^~1~^~A~^^^1^0.039^0.044^2^0.034^0.047^~2, 3~^~04/01/2009~ -~25037~^~617~^10.768^3^0.307^~1~^~AS~^^^1^10.444^11.381^2^9.447^12.088^~2, 3~^~04/01/2009~ -~25037~^~618~^2.024^3^0.136^~1~^~AS~^^^1^1.752^2.164^2^1.439^2.609^~2, 3~^~04/01/2009~ -~25037~^~619~^0.099^3^0.013^~1~^~AS~^^^1^0.082^0.124^2^0.044^0.154^~2, 3~^~04/01/2009~ -~25037~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2009~ -~25037~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~624~^0.111^3^0.004^~1~^~A~^^^1^0.106^0.118^2^0.096^0.127^~2, 3~^~04/01/2009~ -~25037~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2009~ -~25037~^~626~^0.017^3^0.001^~1~^~AS~^^^1^0.016^0.018^2^0.015^0.019^~2, 3~^~04/01/2009~ -~25037~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~628~^0.049^3^0.001^~1~^~A~^^^1^0.048^0.051^2^0.046^0.053^~2, 3~^~04/01/2009~ -~25037~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2009~ -~25037~^~630~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2009~ -~25037~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~645~^10.842^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~646~^2.130^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2009~ -~25037~^~653~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2009~ -~25037~^~654~^0.042^3^0.002^~1~^~A~^^^1^0.040^0.045^2^0.035^0.049^~2, 3~^~04/01/2009~ -~25037~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~663~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.024^2^0.015^0.029^~2, 3~^~04/01/2009~ -~25037~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~665~^0.016^3^0.000^~1~^~A~^^^1^0.016^0.017^2^0.015^0.018^~2, 3~^~04/01/2009~ -~25037~^~670~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2009~ -~25037~^~671~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2009~ -~25037~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2009~ -~25037~^~673~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.015^0.019^~2, 3~^~04/01/2009~ -~25037~^~674~^10.746^3^0.306^~1~^~A~^^^1^10.420^11.358^2^9.427^12.064^~2, 3~^~04/01/2009~ -~25037~^~675~^2.003^3^0.136^~1~^~A~^^^1^1.731^2.142^2^1.418^2.587^~2, 3~^~04/01/2009~ -~25037~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2009~ -~25037~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~25037~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25037~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~851~^0.099^3^0.013^~1~^~A~^^^1^0.082^0.124^2^0.044^0.154^~2, 3~^~04/01/2009~ -~25037~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25037~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~04/01/2009~ -~25038~^~312~^0.337^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~315~^0.933^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~404~^0.102^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~405~^0.360^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~406~^1.318^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~410~^0.379^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~415~^0.072^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~605~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~606~^5.668^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~607~^0.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~608~^0.022^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~609~^0.177^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~610~^0.207^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~611~^2.431^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~612~^0.908^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~613~^1.506^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~614~^0.392^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~615~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~617~^9.399^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~618~^3.628^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~619~^0.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~626~^0.082^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~628~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~645~^9.491^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~646~^3.643^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~687~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25038~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~312~^0.173^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~315~^1.547^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~404~^0.500^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~405~^0.567^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~406~^6.667^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~410~^0.628^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~415~^0.667^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25039~^~501~^0.095^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~502~^0.198^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~503~^0.254^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~504~^0.484^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~505~^0.322^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~506~^0.124^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~507~^0.192^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~508~^0.322^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~509~^0.216^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~510~^0.347^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~511~^0.420^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~512~^0.148^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~513~^0.297^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~514~^0.575^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~515~^1.231^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~516~^0.298^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~517~^0.257^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~518~^0.333^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~605~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~606~^1.299^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25039~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~611~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~612~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~613~^1.076^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~614~^0.199^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~615~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~617~^1.478^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~618~^2.329^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~619~^0.207^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~620~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~621~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~626~^0.040^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~628~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~629~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~645~^1.531^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25039~^~646~^2.559^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25039~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25039~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25040~^~312~^0.232^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~315~^0.275^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~404~^0.133^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~405~^0.059^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~406~^2.767^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~410~^0.474^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~415~^0.545^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~501~^0.083^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~502~^0.206^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~503~^0.217^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~504~^0.309^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~505~^0.302^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~506~^0.077^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~507~^0.052^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~508~^0.230^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~509~^0.162^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~510~^0.257^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~511~^0.269^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~512~^0.123^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~513~^0.244^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~514~^0.903^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~515~^0.915^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~516~^0.186^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~517~^0.195^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~518~^0.175^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~605~^0.091^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~606~^1.762^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~611~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~613~^1.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~614~^0.491^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~615~^0.150^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~617~^14.212^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~618~^4.475^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~619~^2.127^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~624~^0.076^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~626~^0.051^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~628~^0.303^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~645~^14.566^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~646~^6.602^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25040~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~ -~25041~^~312~^0.678^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~315~^3.137^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~404~^0.486^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~405~^0.163^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~406~^2.403^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~410~^0.979^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~415~^0.536^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~ -~25041~^~606~^1.436^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25041~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~612~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~613~^1.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~614~^0.294^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~615~^0.074^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~617~^7.745^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~618~^3.764^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~619~^1.241^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~624~^0.037^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~626~^0.037^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~628~^0.150^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~645~^7.932^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25041~^~646~^5.006^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~25041~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25041~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~25043~^~312~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~315~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~404~^0.079^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~405~^0.343^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~406~^0.173^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~410~^0.620^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~415~^0.069^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~606~^1.389^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~607~^0.006^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~610~^0.004^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~612~^0.026^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~613~^1.076^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~614~^0.268^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~617~^0.941^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~618~^3.444^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~619~^0.442^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~626~^0.039^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25043~^~645~^0.983^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25043~^~646~^3.886^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~25045~^~312~^0.262^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~315~^3.407^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~404~^0.688^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~405~^0.091^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~406~^7.903^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~410~^1.755^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~415~^0.963^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~501~^0.050^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~502~^0.179^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~503~^0.192^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~504~^0.352^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~505~^0.212^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~506~^0.098^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~507~^0.113^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~508~^0.230^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~509~^0.143^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~510~^0.286^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~511~^0.343^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~512~^0.115^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~513~^0.288^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~514~^0.437^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~515~^0.788^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~516~^0.267^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~517~^0.264^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~518~^0.228^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~605~^0.007^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~606~^3.397^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~608~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~609~^0.059^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~610~^0.066^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~611~^0.838^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~612~^0.310^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~613~^1.417^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~614~^0.670^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~615~^0.025^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~617~^3.476^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~618~^2.089^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~619~^0.245^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~624~^0.007^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~626~^0.023^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~628~^0.023^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~645~^3.522^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~646~^2.334^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25045~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~ -~25046~^~312~^0.167^6^0.008^~1~^~A~^^^1^0.134^0.185^5^0.147^0.188^~2, 3~^~04/01/2009~ -~25046~^~315~^0.672^6^0.017^~1~^~A~^^^1^0.608^0.731^5^0.627^0.716^~2, 3~^~04/01/2009~ -~25046~^~404~^0.523^3^0.013^~1~^~A~^^^1^0.510^0.550^2^0.466^0.581^~2, 3~^~04/01/2009~ -~25046~^~405~^0.337^3^0.023^~1~^~A~^^^1^0.300^0.380^2^0.236^0.437^~2, 3~^~04/01/2009~ -~25046~^~406~^7.660^3^0.310^~1~^~A~^^^1^7.260^8.270^2^6.327^8.993^~2, 3~^~04/01/2009~ -~25046~^~410~^0.467^3^0.022^~1~^~A~^^^1^0.440^0.510^2^0.373^0.561^~2, 3~^~04/01/2009~ -~25046~^~415~^0.117^3^0.002^~1~^~A~^^^1^0.114^0.120^2^0.110^0.125^~2, 3~^~04/01/2009~ -~25046~^~501~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~502~^0.357^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~503~^0.511^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~504~^0.919^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~505~^0.194^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~506~^0.184^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~507~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~508~^0.684^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~509~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~510~^0.572^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~511~^0.449^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~512~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~513~^0.409^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~514~^0.531^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~515~^4.820^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~516~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~517~^1.624^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~518~^0.613^0^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~25046~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~606~^6.835^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~607~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2009~ -~25046~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2009~ -~25046~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2009~ -~25046~^~610~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2009~ -~25046~^~611~^0.062^3^0.006^~1~^~A~^^^1^0.053^0.072^2^0.038^0.086^~2, 3~^~04/01/2009~ -~25046~^~612~^0.161^3^0.004^~1~^~A~^^^1^0.154^0.167^2^0.145^0.178^~2, 3~^~04/01/2009~ -~25046~^~613~^5.883^3^0.088^~1~^~A~^^^1^5.711^5.996^2^5.507^6.260^~2, 3~^~04/01/2009~ -~25046~^~614~^0.613^3^0.011^~1~^~A~^^^1^0.591^0.625^2^0.565^0.661^~2, 3~^~04/01/2009~ -~25046~^~615~^0.052^3^0.001^~1~^~A~^^^1^0.050^0.053^2^0.048^0.055^~2, 3~^~04/01/2009~ -~25046~^~617~^5.975^3^0.061^~1~^~AS~^^^1^5.853^6.044^2^5.712^6.238^~2, 3~^~04/01/2009~ -~25046~^~618~^2.015^3^0.032^~1~^~AS~^^^1^1.950^2.049^2^1.876^2.154^~2, 3~^~04/01/2009~ -~25046~^~619~^0.059^3^0.001^~1~^~AS~^^^1^0.057^0.060^2^0.055^0.062^~2, 3~^~04/01/2009~ -~25046~^~620~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2009~ -~25046~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~624~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~04/01/2009~ -~25046~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2009~ -~25046~^~626~^0.031^3^0.000^~1~^~AS~^^^1^0.030^0.031^2^0.029^0.032^~2, 3~^~04/01/2009~ -~25046~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~628~^0.034^3^0.000^~1~^~A~^^^1^0.034^0.034^^^^~2, 3~^~04/01/2009~ -~25046~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2009~ -~25046~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~04/01/2009~ -~25046~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~645~^6.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~646~^2.085^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~652~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2009~ -~25046~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~04/01/2009~ -~25046~^~654~^0.014^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~04/01/2009~ -~25046~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~663~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.018^2^0.015^0.019^~2, 3~^~04/01/2009~ -~25046~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~665~^0.040^3^0.001^~1~^~A~^^^1^0.039^0.041^2^0.037^0.042^~2, 3~^~04/01/2009~ -~25046~^~670~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2009~ -~25046~^~671~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2009~ -~25046~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2009~ -~25046~^~673~^0.031^3^0.000^~1~^~A~^^^1^0.030^0.031^2^0.029^0.032^~2, 3~^~04/01/2009~ -~25046~^~674~^5.958^3^0.061^~1~^~A~^^^1^5.837^6.026^2^5.697^6.219^~2, 3~^~04/01/2009~ -~25046~^~675~^1.971^3^0.033^~1~^~A~^^^1^1.906^2.005^2^1.831^2.111^~2, 3~^~04/01/2009~ -~25046~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~04/01/2009~ -~25046~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~25046~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~25046~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~851~^0.059^3^0.001^~1~^~A~^^^1^0.057^0.060^2^0.055^0.062^~2, 3~^~04/01/2009~ -~25046~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~25046~^~858~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~04/01/2009~ -~25048~^~312~^0.436^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~315~^1.441^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~404~^0.465^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~405~^0.616^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~406~^6.442^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~410~^0.261^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~415~^0.612^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~606~^1.930^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~608~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~609~^0.050^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~610~^0.041^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~611~^0.561^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~612~^0.175^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~613~^0.766^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~614~^0.328^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~615~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~617~^5.664^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~618~^2.520^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~619~^0.061^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~626~^0.034^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~628~^0.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~645~^5.705^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~646~^2.581^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25048~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~25050~^~312~^0.115^4^0.020^~1~^~A~^^^1^0.085^0.173^3^0.052^0.179^~2, 3~^~05/01/2009~ -~25050~^~315~^0.282^4^0.086^~1~^~A~^^^1^0.128^0.508^3^0.010^0.554^~2, 3~^~05/01/2009~ -~25050~^~404~^0.050^4^0.010^~1~^~A~^^^1^0.040^0.080^3^0.018^0.082^~2, 3~^~05/01/2009~ -~25050~^~405~^0.027^4^0.011^~1~^~A~^^^1^0.015^0.060^3^-0.007^0.062^~1, 2, 3~^~05/01/2009~ -~25050~^~406~^1.197^4^0.215^~1~^~A~^^^1^0.840^1.820^3^0.513^1.882^~2, 3~^~05/01/2009~ -~25050~^~410~^0.890^2^^~1~^~A~^^^1^0.810^0.970^1^^^^~05/01/2009~ -~25050~^~415~^0.130^4^0.020^~1~^~A~^^^1^0.100^0.190^3^0.065^0.195^~2, 3~^~05/01/2009~ -~25050~^~605~^0.150^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~606~^8.689^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~607~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.007^3^0.004^0.007^~2, 3~^~05/01/2009~ -~25050~^~608~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~05/01/2009~ -~25050~^~609~^0.010^4^0.002^~1~^~A~^^^1^0.006^0.017^3^0.002^0.018^~2, 3~^~05/01/2009~ -~25050~^~610~^0.037^4^0.002^~1~^~A~^^^1^0.031^0.041^3^0.030^0.044^~2, 3~^~05/01/2009~ -~25050~^~611~^0.039^4^0.022^~1~^~A~^^^1^0.002^0.092^3^-0.031^0.109^~2, 3~^~05/01/2009~ -~25050~^~612~^0.201^4^0.044^~1~^~A~^^^1^0.128^0.308^3^0.061^0.341^~2, 3~^~05/01/2009~ -~25050~^~613~^7.431^4^1.918^~1~^~A~^^^1^4.340^12.411^3^1.328^13.535^~2, 3~^~05/01/2009~ -~25050~^~614~^0.812^4^0.203^~1~^~A~^^^1^0.478^1.339^3^0.165^1.460^~2, 3~^~05/01/2009~ -~25050~^~615~^0.077^4^0.016^~1~^~A~^^^1^0.049^0.121^3^0.025^0.128^~2, 3~^~05/01/2009~ -~25050~^~617~^7.322^4^2.570^~1~^~AS~^^^1^3.197^14.033^3^-0.857^15.501^~2, 3~^~05/01/2009~ -~25050~^~618~^6.804^4^2.322^~1~^~AS~^^^1^2.076^10.951^3^-0.584^14.192^~2, 3~^~05/01/2009~ -~25050~^~619~^0.058^4^0.003^~1~^~AS~^^^1^0.051^0.067^3^0.047^0.069^~2, 3~^~05/01/2009~ -~25050~^~620~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.004^0.010^~1, 2, 3~^~05/01/2009~ -~25050~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~624~^0.023^4^0.002^~1~^~A~^^^1^0.017^0.026^3^0.016^0.030^~2, 3~^~05/01/2009~ -~25050~^~625~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~05/01/2009~ -~25050~^~626~^0.071^4^0.014^~1~^~AS~^^^1^0.040^0.094^3^0.028^0.114^~2, 3~^~05/01/2009~ -~25050~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~628~^0.037^4^0.012^~1~^~A~^^^1^0.015^0.061^3^-0.001^0.075^~2, 3~^~05/01/2009~ -~25050~^~629~^0.033^4^0.024^~1~^~A~^^^1^0.000^0.106^3^-0.044^0.111^~1, 2, 3~^~05/01/2009~ -~25050~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~25050~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~645~^7.443^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~646~^6.912^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~652~^0.009^4^0.002^~1~^~A~^^^1^0.005^0.014^3^0.002^0.016^~2, 3~^~05/01/2009~ -~25050~^~653~^0.021^4^0.003^~1~^~A~^^^1^0.016^0.028^3^0.012^0.029^~2, 3~^~05/01/2009~ -~25050~^~654~^0.022^4^0.001^~1~^~A~^^^1^0.020^0.026^3^0.017^0.027^~2, 3~^~05/01/2009~ -~25050~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~663~^0.069^4^0.035^~1~^~A~^^^1^0.024^0.174^3^-0.043^0.181^~2, 3~^~05/01/2009~ -~25050~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~665~^0.081^4^0.011^~1~^~A~^^^1^0.061^0.107^3^0.044^0.117^~2, 3~^~05/01/2009~ -~25050~^~670~^0.014^4^0.003^~1~^~A~^^^1^0.008^0.020^3^0.004^0.025^~2, 3~^~05/01/2009~ -~25050~^~671~^0.011^4^0.005^~1~^~A~^^^1^0.003^0.022^3^-0.004^0.026^~2, 3~^~05/01/2009~ -~25050~^~672~^0.006^4^0.003^~1~^~A~^^^1^0.003^0.015^3^-0.003^0.015^~2, 3~^~05/01/2009~ -~25050~^~673~^0.071^4^0.014^~1~^~A~^^^1^0.040^0.094^3^0.028^0.114^~2, 3~^~05/01/2009~ -~25050~^~674~^7.253^4^2.591^~1~^~A~^^^1^3.023^14.009^3^-0.992^15.498^~2, 3~^~05/01/2009~ -~25050~^~675~^6.709^4^2.329^~1~^~A~^^^1^1.973^10.870^3^-0.704^14.121^~2, 3~^~05/01/2009~ -~25050~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~25050~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~25050~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~851~^0.058^4^0.003^~1~^~A~^^^1^0.051^0.067^3^0.047^0.069^~2, 3~^~05/01/2009~ -~25050~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~25050~^~858~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~05/01/2009~ -~25051~^~312~^0.441^2^^~8~^~LC~^^^1^0.441^0.441^^^^^~04/01/2011~ -~25051~^~315~^2.146^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~404~^0.551^2^^~8~^~LC~^^^1^0.551^0.551^1^^^^~04/01/2011~ -~25051~^~405~^0.375^2^^~8~^~LC~^^^1^0.375^0.375^^^^^~04/01/2011~ -~25051~^~406~^4.412^2^^~8~^~LC~^^^1^4.412^4.412^^^^^~04/01/2011~ -~25051~^~410~^2.206^2^^~8~^~LC~^^^1^1.471^2.941^^^^^~04/01/2011~ -~25051~^~415~^0.588^2^^~8~^~LC~^^^1^0.588^0.588^^^^^~04/01/2011~ -~25051~^~605~^0.000^2^^~8~^~LC~^^^1^0.000^0.000^^^^^~04/01/2011~ -~25051~^~606~^1.471^2^^~8~^~LC~^^^1^0.735^2.206^^^^^~04/01/2011~ -~25051~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~612~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~613~^0.533^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~614~^0.117^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~617~^1.082^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~618~^1.963^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~619~^0.219^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~645~^1.093^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~646~^2.182^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25051~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~312~^0.307^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~315~^1.389^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~404~^0.189^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~405~^0.076^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~406~^1.064^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~410~^0.506^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~415~^0.122^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~605~^0.000^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~606~^2.083^1^^~4~^~FLM~^^^^^^^^^^~05/01/2011~ -~25052~^~607~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~608~^0.005^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~609~^0.024^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~610~^0.024^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~611~^0.137^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~612~^0.070^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~613~^0.884^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~614~^0.887^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~615~^0.030^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~617~^2.893^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~618~^1.798^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~619~^0.129^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~624~^0.007^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~625~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~626~^0.025^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~628~^0.020^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~630~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~645~^2.945^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~646~^1.929^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~ -~25052~^~653~^0.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~654~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2012~ -~25052~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25052~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~312~^0.339^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~315~^1.157^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~404~^0.357^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~405~^0.528^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~406~^3.413^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~410~^0.644^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~415~^0.320^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~501~^0.106^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~502~^0.312^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~503~^0.358^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~504~^0.698^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~505~^0.397^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~506~^0.131^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~507~^0.158^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~508~^0.471^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~509~^0.277^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~510~^0.429^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~511~^0.784^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~512~^0.239^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~513~^0.404^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~514~^0.977^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~515~^2.122^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~516~^0.488^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~517~^0.525^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~518~^0.447^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~605~^0.000^1^^~4~^~FLC~^^^^^^^^^^~07/01/2012~ -~25053~^~606~^6.857^1^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~25053~^~607~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~608~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~610~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~612~^0.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~613~^5.238^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~614~^1.299^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~615~^0.128^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~617~^8.939^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~618~^4.552^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~619~^0.589^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~624~^0.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~626~^0.068^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~628~^0.066^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~645~^9.083^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~646~^5.141^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~653~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~687~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25053~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~312~^0.173^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~315~^1.297^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~404~^0.905^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~405~^0.542^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~406~^7.302^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~410~^0.499^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~415~^0.708^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~502~^0.164^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~503~^0.223^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~504~^0.430^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~505~^0.303^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~506~^0.097^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~507~^0.192^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~508~^0.294^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~509~^0.171^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~510~^0.316^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~511~^0.373^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~512~^0.128^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~513~^0.247^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~514~^0.520^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~515~^1.218^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~516~^0.279^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~517~^0.179^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~518~^0.281^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~605~^0.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~606~^1.372^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~607~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~608~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~610~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~612~^0.020^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~613~^1.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~614~^0.241^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~615~^0.060^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~617~^6.212^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~618~^2.661^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~619~^0.815^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~624~^0.032^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~626~^0.027^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~628~^0.132^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~645~^6.372^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~646~^3.476^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25054~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~312~^0.226^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~315~^1.057^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~404~^0.640^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~405~^0.391^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~406~^5.443^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~410~^0.422^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~415~^0.520^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~501~^0.074^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~502~^0.171^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~503~^0.218^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~504~^0.409^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~505~^0.259^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~506~^0.089^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~507~^0.151^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~508~^0.289^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~509~^0.171^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~510~^0.292^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~511~^0.456^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~512~^0.132^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~513~^0.248^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~514~^0.565^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~515~^1.263^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~516~^0.302^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~517~^0.207^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~518~^0.271^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~605~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25055~^~606~^1.435^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~25055~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~612~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~613~^1.117^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~614~^0.260^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~615~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~617~^4.486^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~618~^3.619^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~619~^0.408^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~624~^0.020^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~626~^0.028^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~628~^0.068^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~645~^4.585^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25055~^~646~^4.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~25055~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~654~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25055~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~312~^0.217^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~315~^1.138^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~404~^0.132^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~405~^0.097^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~406~^1.007^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~410~^0.393^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~415~^0.115^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~501~^0.054^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~502~^0.126^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~503~^0.153^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~504~^0.294^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~505~^0.172^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~506~^0.069^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~507~^0.098^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~508~^0.200^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~509~^0.110^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~510~^0.203^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~511~^0.294^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~512~^0.094^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~513~^0.166^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~514~^0.316^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~515~^1.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~516~^0.173^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~517~^0.343^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~518~^0.200^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~ -~25056~^~606~^8.693^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~608~^0.048^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~609~^0.587^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~610~^0.467^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~611~^3.675^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~612~^1.441^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~613~^1.545^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~614~^0.913^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~615~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~617~^3.468^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~618~^6.893^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~619~^0.159^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~628~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~645~^3.499^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~646~^7.051^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25056~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~25059~^~312~^0.445^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~315~^3.730^1^^~4~^^^^^^^^^^^~05/01/2013~ -~25059~^~404~^0.061^9^0.012^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~405~^0.165^8^0.036^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~406~^7.806^7^0.419^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~410~^1.000^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~415~^0.150^2^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~501~^0.104^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~502~^0.299^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~503~^0.346^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~504~^0.675^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~505~^0.311^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~506~^0.184^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~507~^0.099^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~508~^0.421^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~509~^0.306^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~510~^0.479^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~511~^0.618^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~512~^0.207^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~513~^0.476^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~514~^0.764^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~515~^1.662^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~516~^0.402^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~517~^0.383^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~518~^0.422^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~606~^0.642^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~607~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~608~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~609~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~610~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~611~^0.000^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~612~^0.010^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~613~^0.480^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~614~^0.050^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~615~^0.064^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~617~^1.020^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~618~^0.970^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~619~^0.010^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~620~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~621~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~624~^0.038^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~626~^0.010^1^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~627~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~628~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~629~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~630~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~631~^0.000^0^^~1~^^^^^^^^^^^~05/01/2013~ -~25059~^~645~^1.030^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~646~^0.980^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25059~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25059~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~312~^0.262^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~315~^0.452^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~404~^0.360^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~405~^0.317^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~406~^2.398^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~410~^0.364^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~415~^0.031^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~501~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~502~^0.103^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~503~^0.131^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~504~^0.261^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~505~^0.084^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~506~^0.067^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~507~^0.080^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~508~^0.191^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~509~^0.115^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~510~^0.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~511~^0.153^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~512~^0.084^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~513~^0.122^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~514~^0.160^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~515~^1.277^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~516~^0.136^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~517~^0.440^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~518~^0.189^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~606~^8.611^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~607~^0.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~608~^0.042^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~609~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~610~^0.104^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~611~^0.108^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~612~^0.507^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~613~^4.147^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~614~^3.465^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~615~^0.030^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~617~^3.102^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~618~^2.522^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~619~^0.298^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~624~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~626~^0.191^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~645~^3.293^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~646~^2.820^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~25060~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~653~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25060~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~312~^0.244^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~315~^1.963^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~404~^0.283^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~405~^0.285^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~406~^0.858^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~410~^1.104^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~415~^0.116^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~605~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~606~^3.846^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~607~^0.145^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~608~^0.100^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~609~^0.065^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~610~^0.144^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~611~^0.186^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~612~^0.531^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~613~^2.136^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~614~^0.536^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~617~^2.780^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~618~^1.933^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~619~^0.125^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~626~^0.116^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~645~^2.897^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~646~^2.058^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25062~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~25062~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~25063~^~312~^0.141^10^0.002^~1~^~A~^^^1^0.129^0.148^9^0.137^0.145^~2, 3~^~04/01/2013~ -~25063~^~315~^0.761^10^0.010^~1~^~A~^^^1^0.720^0.809^9^0.738^0.784^~2, 3~^~04/01/2013~ -~25063~^~404~^0.132^6^0.003^~1~^~A~^^^1^0.120^0.140^5^0.124^0.140^~2, 3~^~04/01/2013~ -~25063~^~405~^0.085^6^0.014^~1~^~A~^^^1^0.030^0.130^5^0.049^0.121^~2, 3~^~04/01/2013~ -~25063~^~406~^2.558^6^0.053^~1~^~A~^^^1^2.400^2.720^5^2.423^2.694^~2, 3~^~04/01/2013~ -~25063~^~410~^0.603^3^0.009^~1~^~A~^^^1^0.590^0.620^2^0.565^0.641^~2, 3~^~04/01/2013~ -~25063~^~415~^0.252^6^0.011^~1~^~A~^^^1^0.220^0.290^5^0.224^0.279^~2, 3~^~04/01/2013~ -~25063~^~605~^0.149^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~606~^6.307^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~607~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~608~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~609~^0.016^8^0.005^~1~^~A~^^^1^0.000^0.034^7^0.003^0.029^~1, 2, 3~^~04/01/2013~ -~25063~^~610~^0.029^8^0.005^~1~^~A~^^^1^0.013^0.044^7^0.017^0.041^~2, 3~^~04/01/2013~ -~25063~^~611~^0.088^8^0.030^~1~^~A~^^^1^0.008^0.181^7^0.017^0.158^~2, 3~^~04/01/2013~ -~25063~^~612~^0.242^8^0.014^~1~^~A~^^^1^0.201^0.288^7^0.208^0.276^~2, 3~^~04/01/2013~ -~25063~^~613~^5.206^8^0.054^~1~^~A~^^^1^4.995^5.420^7^5.077^5.334^~2, 3~^~04/01/2013~ -~25063~^~614~^0.583^8^0.004^~1~^~A~^^^1^0.571^0.599^7^0.573^0.593^~2, 3~^~04/01/2013~ -~25063~^~615~^0.064^8^0.001^~1~^~A~^^^1^0.060^0.072^7^0.061^0.068^~2, 3~^~04/01/2013~ -~25063~^~617~^4.134^8^0.049^~1~^~AS~^^^1^3.951^4.356^7^4.018^4.250^~2, 3~^~04/01/2013~ -~25063~^~618~^10.558^8^0.148^~1~^~AS~^^^1^10.049^11.257^7^10.208^10.907^~2, 3~^~04/01/2013~ -~25063~^~619~^0.043^8^0.001^~1~^~AS~^^^1^0.039^0.048^7^0.041^0.045^~2, 3~^~04/01/2013~ -~25063~^~620~^0.006^8^0.000^~1~^~A~^^^1^0.005^0.007^7^0.005^0.007^~2, 3~^~04/01/2013~ -~25063~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~624~^0.029^8^0.001^~1~^~A~^^^1^0.025^0.033^7^0.026^0.031^~2, 3~^~04/01/2013~ -~25063~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~626~^0.124^8^0.001^~1~^~AS~^^^1^0.120^0.129^7^0.122^0.127^~2, 3~^~04/01/2013~ -~25063~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~628~^0.020^8^0.001^~1~^~A~^^^1^0.017^0.025^7^0.017^0.022^~2, 3~^~04/01/2013~ -~25063~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~630~^0.001^8^0.001^~1~^~AS~^^^1^0.000^0.010^7^-0.002^0.004^~2, 3~^~04/01/2013~ -~25063~^~631~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~645~^4.285^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~646~^10.614^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~652~^0.008^8^0.000^~1~^~A~^^^1^0.007^0.010^7^0.007^0.009^~2, 3~^~04/01/2013~ -~25063~^~653~^0.019^8^0.000^~1~^~A~^^^1^0.018^0.020^7^0.018^0.019^~2, 3~^~04/01/2013~ -~25063~^~654~^0.024^8^0.001^~1~^~A~^^^1^0.021^0.027^7^0.022^0.026^~2, 3~^~04/01/2013~ -~25063~^~662~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~663~^0.036^8^0.002^~1~^~A~^^^1^0.028^0.044^7^0.032^0.040^~2, 3~^~04/01/2013~ -~25063~^~664~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.005^7^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~25063~^~665~^0.112^8^0.002^~1~^~A~^^^1^0.105^0.125^7^0.107^0.118^~2, 3~^~04/01/2013~ -~25063~^~670~^0.012^8^0.001^~1~^~A~^^^1^0.009^0.016^7^0.010^0.014^~2, 3~^~04/01/2013~ -~25063~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~672~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.003^7^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~25063~^~673~^0.124^8^0.001^~1~^~A~^^^1^0.120^0.129^7^0.122^0.127^~2, 3~^~04/01/2013~ -~25063~^~674~^4.098^8^0.049^~1~^~A~^^^1^3.916^4.321^7^3.981^4.214^~2, 3~^~04/01/2013~ -~25063~^~675~^10.433^8^0.146^~1~^~A~^^^1^9.929^11.123^7^10.088^10.778^~2, 3~^~04/01/2013~ -~25063~^~676~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.005^7^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~25063~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~687~^0.006^8^0.001^~1~^~A~^^^1^0.000^0.010^7^0.003^0.009^~1, 2, 3~^~04/01/2013~ -~25063~^~689~^0.007^8^0.006^~1~^~AS~^^^1^0.000^0.052^7^-0.008^0.022^~2, 3~^~04/01/2013~ -~25063~^~693~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~695~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~25063~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~851~^0.043^8^0.001^~1~^~A~^^^1^0.039^0.048^7^0.041^0.045^~2, 3~^~04/01/2013~ -~25063~^~852~^0.006^8^0.006^~1~^~A~^^^1^0.000^0.045^7^-0.007^0.019^~1, 2, 3~^~04/01/2013~ -~25063~^~853~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.007^7^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~25063~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25063~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~25064~^~312~^0.299^16^0.017^~1~^~A~^^^2^0.080^0.398^12^0.262^0.336^~2, 3~^~05/01/2013~ -~25064~^~315~^0.478^16^0.074^~1~^~A~^^^2^0.287^0.664^5^0.292^0.665^~2, 3~^~05/01/2013~ -~25064~^~404~^0.158^6^0.010^~1~^~A~^^^2^0.063^0.290^2^0.122^0.194^~2, 3~^~05/01/2013~ -~25064~^~405~^0.173^6^0.100^~1~^~A~^^^2^0.090^0.230^2^-0.253^0.600^~2, 3~^~05/01/2013~ -~25064~^~406~^5.476^6^0.436^~1~^~A~^^^2^4.182^8.000^3^3.981^6.970^~2, 3~^~05/01/2013~ -~25064~^~410~^0.815^2^^~1~^~A~^^^1^0.760^0.870^1^^^^~05/01/2013~ -~25064~^~415~^0.651^6^0.036^~1~^~A~^^^2^0.490^0.723^4^0.550^0.753^~2, 3~^~05/01/2013~ -~25064~^~605~^0.215^8^0.081^~11~^~JO~^^^2^0.039^0.665^7^0.024^0.406^~2, 3~^~05/01/2013~ -~25064~^~606~^5.490^8^1.175^~11~^~JO~^^^2^2.367^9.715^7^2.711^8.269^~2, 3~^~05/01/2013~ -~25064~^~607~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~608~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~609~^0.002^8^0.002^~11~^~JO~^^^2^0.000^0.012^7^-0.002^0.006^~1, 2, 3~^~05/01/2013~ -~25064~^~610~^0.019^8^0.001^~11~^~JO~^^^2^0.001^0.024^7^0.016^0.021^~2, 3~^~05/01/2013~ -~25064~^~611~^0.007^8^0.001^~11~^~JO~^^^2^0.005^0.010^7^0.006^0.009^~2, 3~^~05/01/2013~ -~25064~^~612~^0.130^8^0.054^~11~^~JO~^^^2^0.006^0.327^7^0.003^0.257^~2, 3~^~05/01/2013~ -~25064~^~613~^4.291^8^1.105^~11~^~JO~^^^2^1.279^8.198^7^1.679^6.903^~2, 3~^~05/01/2013~ -~25064~^~614~^0.727^8^0.050^~11~^~JO~^^^2^0.573^1.084^7^0.609^0.845^~2, 3~^~05/01/2013~ -~25064~^~615~^0.157^8^0.019^~11~^~JO~^^^2^0.073^0.234^7^0.112^0.201^~2, 3~^~05/01/2013~ -~25064~^~617~^14.557^8^2.967^~11~^~JO~^^^2^5.730^26.481^7^7.542^21.573^~2, 3~^~05/01/2013~ -~25064~^~618~^11.985^8^2.187^~11~^~JO~^^^2^4.474^18.013^7^6.814^17.155^~2, 3~^~05/01/2013~ -~25064~^~619~^0.414^8^0.115^~11~^~JO~^^^2^0.067^0.876^7^0.142^0.686^~2, 3~^~05/01/2013~ -~25064~^~620~^0.009^8^0.001^~11~^~JO~^^^2^0.000^0.011^7^0.008^0.010^~2, 3~^~05/01/2013~ -~25064~^~621~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~624~^0.073^8^0.011^~11~^~JO~^^^2^0.000^0.123^7^0.047^0.100^~2, 3~^~05/01/2013~ -~25064~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~626~^0.117^8^0.025^~11~^~JO~^^^2^0.032^0.209^7^0.057^0.176^~2, 3~^~05/01/2013~ -~25064~^~627~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~628~^0.239^8^0.071^~11~^~JO~^^^2^0.029^0.519^7^0.070^0.407^~2, 3~^~05/01/2013~ -~25064~^~629~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~630~^0.004^8^0.002^~11~^~JO~^^^2^0.000^0.013^7^0.000^0.008^~2, 3~^~05/01/2013~ -~25064~^~631~^0.000^8^0.000^~11~^~JO~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~645~^14.938^8^3.026^~11~^~JO~^^^2^5.962^27.137^7^7.783^22.094^~2, 3~^~05/01/2013~ -~25064~^~646~^12.416^8^2.082^~11~^~JO~^^^2^5.185^18.351^7^7.494^17.339^~2, 3~^~05/01/2013~ -~25064~^~652~^0.008^8^0.001^~11~^~JO~^^^2^0.000^0.010^7^0.007^0.010^~2, 3~^~05/01/2013~ -~25064~^~653~^0.024^8^0.002^~11~^~JO~^^^2^0.011^0.030^7^0.020^0.028^~2, 3~^~05/01/2013~ -~25064~^~654~^0.052^8^0.004^~1~^~A~^^^1^0.035^0.064^7^0.042^0.062^~2, 3~^~05/01/2013~ -~25064~^~662~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~663~^0.028^8^0.007^~1~^~A~^^^1^0.012^0.066^7^0.013^0.044^~2, 3~^~05/01/2013~ -~25064~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~665~^0.186^8^0.081^~1~^~A~^^^1^0.020^0.641^7^-0.005^0.377^~2, 3~^~05/01/2013~ -~25064~^~670~^0.014^8^0.004^~1~^~A~^^^1^0.006^0.030^7^0.005^0.023^~2, 3~^~05/01/2013~ -~25064~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~672~^0.006^8^0.003^~1~^~A~^^^1^0.000^0.018^7^0.001^0.012^~1, 2, 3~^~05/01/2013~ -~25064~^~673~^0.117^8^0.025^~1~^~A~^^^1^0.032^0.209^7^0.057^0.176^~2, 3~^~05/01/2013~ -~25064~^~674~^14.529^8^2.967^~1~^~A~^^^1^5.686^26.463^7^7.512^21.546^~2, 3~^~05/01/2013~ -~25064~^~675~^11.785^8^2.130^~1~^~A~^^^1^4.437^17.863^7^6.749^16.821^~2, 3~^~05/01/2013~ -~25064~^~676~^0.004^8^0.002^~1~^~A~^^^1^0.000^0.013^7^0.000^0.008^~1, 2, 3~^~05/01/2013~ -~25064~^~685~^0.021^8^0.006^~1~^~A~^^^1^0.004^0.046^7^0.008^0.035^~2, 3~^~05/01/2013~ -~25064~^~687~^0.022^8^0.004^~1~^~A~^^^1^0.009^0.039^7^0.013^0.030^~2, 3~^~05/01/2013~ -~25064~^~689~^0.002^8^0.001^~1~^~AS~^^^1^0.000^0.006^7^0.000^0.005^~2, 3~^~05/01/2013~ -~25064~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~695~^0.187^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~25064~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~851~^0.392^8^0.110^~1~^~A~^^^1^0.056^0.830^7^0.132^0.651^~2, 3~^~05/01/2013~ -~25064~^~852~^0.002^8^0.001^~1~^~A~^^^1^0.000^0.006^7^0.000^0.005^~1, 2, 3~^~05/01/2013~ -~25064~^~853~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25064~^~856~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~05/01/2013~ -~25064~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2013~ -~25065~^~312~^0.052^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~315~^0.065^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~404~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~405~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~406~^0.232^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~410~^0.031^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~415~^0.051^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~501~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~502~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~503~^0.027^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~504~^0.056^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~505~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~506~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~507~^0.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~508~^0.031^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~509~^0.022^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~510~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~511~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~512~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~513~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~514~^0.093^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~515~^0.102^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~516~^0.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~517~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~518~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~606~^3.307^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~611~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~612~^0.068^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~613~^2.940^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~614~^0.291^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~617~^2.380^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~618~^0.615^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~619~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~626~^0.020^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~628~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~645~^2.406^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25065~^~646~^0.630^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~312~^0.444^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~315~^1.254^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~404~^0.614^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~405~^0.314^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~406~^5.060^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~410~^0.479^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~415~^0.548^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~606~^5.290^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~ -~25066~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~611~^0.010^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~612~^0.105^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~613~^4.672^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~614~^0.461^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~617~^5.730^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~618~^1.820^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~619~^0.131^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~626~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~628~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~645~^5.792^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25066~^~646~^1.951^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~312~^0.846^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~315~^1.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~404~^0.176^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~405~^0.437^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~406~^1.268^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~410~^1.987^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~415~^0.226^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~605~^0.091^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~606~^3.384^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~608~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~609~^0.139^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~610~^0.112^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~611~^0.800^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~612~^0.323^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~613~^1.416^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~614~^0.508^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~615~^0.038^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~617~^4.184^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~618~^4.667^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~619~^0.659^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~624~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~626~^0.038^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~628~^0.067^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~645~^4.290^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~646~^5.326^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~652~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~654~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25067~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~312~^0.771^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~315~^0.712^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~404~^1.628^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~405~^1.708^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~406~^8.991^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~410~^0.702^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~415~^0.890^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~605~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~606~^1.149^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~607~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~612~^0.008^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~613~^0.631^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~614~^0.417^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~615~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~617~^8.035^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~618~^1.827^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~619~^0.141^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~624~^0.046^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~628~^0.066^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~630~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~645~^8.115^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~646~^1.969^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~652~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25068~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~25070~^~312~^0.221^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~315~^2.140^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~404~^0.264^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~405~^0.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~406~^2.631^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~410~^0.321^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~415~^0.216^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~501~^0.094^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~502~^0.200^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~503~^0.242^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~504~^0.489^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~505~^0.208^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~506~^0.126^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~507~^0.147^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~508~^0.367^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~509~^0.152^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~510~^0.306^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~511~^0.360^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~512~^0.192^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~513~^0.269^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~514~^0.401^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~515~^2.309^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~516~^0.311^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~517~^1.100^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~518~^0.334^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~605~^0.066^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~606~^5.357^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~613~^3.435^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~614~^1.320^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~615~^0.398^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~617~^7.802^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~618~^2.802^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~619~^1.167^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~624~^0.202^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~626~^0.027^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~628~^0.168^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~629~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~645~^7.997^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~646~^3.971^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25070~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~312~^0.301^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~315~^4.071^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~404~^0.436^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~405~^0.101^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~406~^5.537^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~410~^1.624^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~415~^0.554^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~605~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~617~^3.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~618~^1.582^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~619~^0.059^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~626~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~628~^0.006^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~25071~^~645~^3.021^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~25071~^~646~^1.641^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~27000~^~312~^0.019^4^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~03/01/2008~ -~27000~^~315~^0.011^4^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~03/01/2008~ -~27000~^~404~^0.019^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.007^0.031^~1, 2, 3~^~03/01/2008~ -~27000~^~405~^0.019^4^0.004^~1~^~A~^^^1^0.015^0.030^3^0.007^0.031^~1, 2, 3~^~03/01/2008~ -~27000~^~406~^0.156^4^0.110^~1~^~A~^^^1^0.022^0.480^3^-0.192^0.505^~1, 2, 3~^~03/01/2008~ -~27000~^~410~^0.120^4^0.047^~1~^~A~^^^1^0.060^0.260^3^-0.030^0.270^~2, 3~^~03/01/2008~ -~27000~^~415~^0.020^4^0.007^~1~^~A~^^^1^0.011^0.040^3^-0.001^0.042^~2, 3~^~03/01/2008~ -~27000~^~501~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~502~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~503~^0.028^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~504~^0.047^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~505~^0.052^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~506~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~507~^0.026^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~508~^0.028^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~509~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~510~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~511~^0.037^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~512~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~513~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~514~^0.067^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~515~^0.767^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~516~^0.032^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~517~^0.043^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~518~^0.033^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27000~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~606~^0.166^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~610~^0.006^4^0.006^~1~^~A~^^^1^0.000^0.021^3^-0.008^0.027^~1, 2, 3~^~03/01/2009~ -~27000~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~612~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.002^0.007^~1, 2, 3~^~03/01/2009~ -~27000~^~613~^0.115^4^0.065^~1~^~A~^^^1^0.078^0.357^3^-0.036^0.375^~2, 3~^~03/01/2009~ -~27000~^~614~^0.042^4^0.021^~1~^~A~^^^1^0.032^0.123^3^-0.005^0.128^~2, 3~^~03/01/2009~ -~27000~^~615~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2009~ -~27000~^~617~^0.179^4^0.099^~1~^~AS~^^^1^0.128^0.552^3^-0.052^0.580^~2, 3~^~03/01/2009~ -~27000~^~618~^0.113^4^0.073^~1~^~AS~^^^1^0.047^0.366^3^-0.068^0.400^~2, 3~^~03/01/2009~ -~27000~^~619~^0.008^4^0.010^~1~^~AS~^^^1^0.000^0.040^3^-0.019^0.042^~2, 3~^~03/01/2009~ -~27000~^~620~^0.007^4^0.005^~1~^~A~^^^1^0.004^0.026^3^-0.006^0.027^~2, 3~^~03/01/2009~ -~27000~^~621~^0.001^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~03/01/2009~ -~27000~^~624~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2009~ -~27000~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~626~^0.011^4^0.008^~1~^~AS~^^^1^0.006^0.041^3^-0.011^0.043^~2, 3~^~03/01/2009~ -~27000~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~628~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2009~ -~27000~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~27000~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~645~^0.191^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~646~^0.129^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27000~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~653~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2009~ -~27000~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~663~^0.001^4^0.002^~1~^~A~^^^1^0.000^0.006^3^-0.003^0.006^~1, 2, 3~^~03/01/2009~ -~27000~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~665~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2009~ -~27000~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~672~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2009~ -~27000~^~673~^0.011^4^0.008^~1~^~A~^^^1^0.006^0.041^3^-0.011^0.043^~2, 3~^~03/01/2009~ -~27000~^~674~^0.178^4^0.098^~1~^~A~^^^1^0.128^0.546^3^-0.049^0.574^~2, 3~^~03/01/2009~ -~27000~^~675~^0.112^4^0.073^~1~^~A~^^^1^0.047^0.364^3^-0.067^0.398^~2, 3~^~03/01/2009~ -~27000~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~685~^0.000^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2009~ -~27000~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~689~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.003^3^-0.002^0.003^~2, 3~^~03/01/2009~ -~27000~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~851~^0.007^4^0.009^~1~^~A~^^^1^0.000^0.038^3^-0.018^0.040^~1, 2, 3~^~03/01/2009~ -~27000~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27000~^~853~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2009~ -~27000~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27001~^~312~^0.026^4^0.004^~1~^~A~^^^1^0.019^0.035^3^0.012^0.039^~1, 2, 3~^~03/01/2008~ -~27001~^~315~^0.085^4^0.014^~1~^~A~^^^1^0.056^0.123^3^0.041^0.130^~2, 3~^~03/01/2008~ -~27001~^~404~^0.026^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.008^0.044^~1, 2, 3~^~03/01/2008~ -~27001~^~405~^0.031^4^0.008^~1~^~A~^^^1^0.015^0.050^3^0.005^0.058^~1, 2, 3~^~03/01/2008~ -~27001~^~406~^0.507^4^0.144^~1~^~A~^^^1^0.130^0.820^3^0.051^0.964^~2, 3~^~03/01/2008~ -~27001~^~410~^0.227^4^0.035^~1~^~A~^^^1^0.150^0.300^3^0.117^0.338^~2, 3~^~03/01/2008~ -~27001~^~415~^0.064^4^0.007^~1~^~A~^^^1^0.047^0.076^3^0.041^0.087^~2, 3~^~03/01/2008~ -~27001~^~501~^0.019^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~502~^0.111^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~503~^0.080^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~504~^0.151^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~505~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~506~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~507~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~508~^0.085^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~509~^0.061^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~510~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~511~^0.133^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~512~^0.058^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~513~^0.092^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~514~^0.213^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~515~^0.979^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~516~^0.105^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~517~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~518~^0.089^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27001~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~606~^0.229^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~610~^0.021^4^0.002^~1~^~A~^^^1^0.016^0.027^3^0.014^0.028^~2, 3~^~03/01/2008~ -~27001~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~03/01/2008~ -~27001~^~612~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.007^3^0.000^0.007^~2, 3~^~03/01/2008~ -~27001~^~613~^0.162^4^0.044^~1~^~A~^^^1^0.089^0.286^3^0.021^0.303^~2, 3~^~03/01/2008~ -~27001~^~614~^0.040^4^0.014^~1~^~A~^^^1^0.000^0.064^3^-0.004^0.084^~1, 2, 3~^~03/01/2008~ -~27001~^~615~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~03/01/2008~ -~27001~^~617~^0.274^4^0.080^~1~^~AS~^^^1^0.137^0.499^3^0.020^0.528^~2, 3~^~03/01/2008~ -~27001~^~618~^0.273^4^0.056^~1~^~AS~^^^1^0.146^0.412^3^0.095^0.451^~2, 3~^~03/01/2008~ -~27001~^~619~^0.030^4^0.006^~1~^~AS~^^^1^0.014^0.040^3^0.011^0.049^~2, 3~^~03/01/2008~ -~27001~^~620~^0.008^4^0.003^~1~^~A~^^^1^0.004^0.015^3^0.000^0.016^~2, 3~^~03/01/2008~ -~27001~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~626~^0.013^4^0.005^~1~^~AS~^^^1^0.006^0.026^3^-0.002^0.027^~2, 3~^~03/01/2008~ -~27001~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~628~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~03/01/2008~ -~27001~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~27001~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~645~^0.288^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~646~^0.311^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~653~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~03/01/2008~ -~27001~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~663~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~665~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~673~^0.013^4^0.005^~1~^~A~^^^1^0.006^0.026^3^-0.002^0.027^~2, 3~^~03/01/2008~ -~27001~^~674~^0.274^4^0.080^~1~^~A~^^^1^0.137^0.499^3^0.020^0.528^~2, 3~^~03/01/2008~ -~27001~^~675~^0.273^4^0.056^~1~^~A~^^^1^0.146^0.412^3^0.095^0.451^~2, 3~^~03/01/2008~ -~27001~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2008~ -~27001~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~ -~27001~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~851~^0.030^4^0.006^~1~^~A~^^^1^0.014^0.040^3^0.011^0.049^~2, 3~^~03/01/2008~ -~27001~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27001~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2008~ -~27002~^~312~^0.024^4^0.006^~1~^~A~^^^1^0.019^0.041^3^0.006^0.042^~1, 2, 3~^~03/01/2008~ -~27002~^~315~^0.034^4^0.007^~1~^~A~^^^1^0.017^0.046^3^0.013^0.056^~2, 3~^~03/01/2008~ -~27002~^~404~^0.024^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.006^0.041^~1, 2, 3~^~03/01/2008~ -~27002~^~405~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.020^3^0.012^0.020^~1, 2, 3~^~03/01/2008~ -~27002~^~406~^0.580^4^0.201^~1~^~A~^^^1^0.120^1.000^3^-0.060^1.220^~2, 3~^~03/01/2008~ -~27002~^~410~^0.140^4^0.041^~1~^~A~^^^1^0.060^0.220^3^0.010^0.270^~2, 3~^~03/01/2008~ -~27002~^~415~^0.076^4^0.048^~1~^~A~^^^1^0.018^0.219^3^-0.076^0.229^~2, 3~^~03/01/2008~ -~27002~^~501~^0.013^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~502~^0.081^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~503~^0.060^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~504~^0.120^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~505~^0.062^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~506~^0.030^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~507~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~508~^0.070^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~509~^0.049^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~510~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~511~^0.087^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~512~^0.039^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~513~^0.065^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~514~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~515~^1.203^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~516~^0.107^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~517~^0.203^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~518~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2008~ -~27002~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~606~^0.062^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~612~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~03/01/2009~ -~27002~^~613~^0.046^4^0.016^~1~^~A~^^^1^0.045^0.114^3^0.012^0.117^~2, 3~^~03/01/2009~ -~27002~^~614~^0.015^4^0.006^~1~^~A~^^^1^0.012^0.039^3^0.002^0.040^~2, 3~^~03/01/2009~ -~27002~^~615~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~617~^0.071^4^0.027^~1~^~AS~^^^1^0.066^0.180^3^0.014^0.185^~2, 3~^~03/01/2009~ -~27002~^~618~^0.065^4^0.010^~1~^~AS~^^^1^0.067^0.116^3^0.060^0.123^~2, 3~^~03/01/2009~ -~27002~^~619~^0.004^4^0.001^~1~^~AS~^^^1^0.003^0.009^3^0.002^0.010^~2, 3~^~03/01/2009~ -~27002~^~620~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~03/01/2009~ -~27002~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~626~^0.005^4^0.002^~1~^~AS~^^^1^0.004^0.011^3^0.001^0.012^~2, 3~^~03/01/2009~ -~27002~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~628~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2009~ -~27002~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~27002~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~645~^0.077^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~646~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~663~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.003^0.005^~1, 2, 3~^~03/01/2009~ -~27002~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~665~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~673~^0.005^4^0.002^~1~^~A~^^^1^0.004^0.011^3^0.001^0.012^~2, 3~^~03/01/2009~ -~27002~^~674~^0.070^4^0.026^~1~^~A~^^^1^0.066^0.175^3^0.017^0.180^~2, 3~^~03/01/2009~ -~27002~^~675~^0.065^4^0.010^~1~^~A~^^^1^0.067^0.116^3^0.060^0.123^~2, 3~^~03/01/2009~ -~27002~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2009~ -~27002~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~27002~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~851~^0.004^4^0.001^~1~^~A~^^^1^0.003^0.009^3^0.002^0.010^~2, 3~^~03/01/2009~ -~27002~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27002~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2009~ -~27035~^~312~^0.165^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~404~^0.582^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~405~^0.410^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~406~^4.906^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~415~^0.065^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~617~^0.681^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~618~^1.355^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~619~^0.083^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~626~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~645~^0.685^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27035~^~646~^1.438^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~ -~27042~^~312~^0.033^12^0.002^~1~^~A~^^^1^0.025^0.051^11^0.028^0.039^~4~^~02/01/2011~ -~27042~^~315~^0.060^12^0.003^~1~^~A~^^^1^0.046^0.079^11^0.052^0.067^~4~^~02/01/2011~ -~27042~^~404~^0.015^12^0.000^~1~^~A~^^^1^0.015^0.015^11^0.015^0.015^~1, 4~^~02/01/2011~ -~27042~^~405~^0.015^12^0.000^~1~^~A~^^^1^0.015^0.015^11^0.015^0.015^~1, 4~^~02/01/2011~ -~27042~^~406~^0.497^12^0.025^~1~^~A~^^^1^0.330^0.610^11^0.443^0.552^~4~^~02/01/2011~ -~27043~^~312~^0.025^4^0.000^~1~^~A~^^^1^0.025^0.025^3^0.025^0.025^~4~^~04/01/2011~ -~27043~^~315~^0.076^4^0.001^~1~^~A~^^^1^0.072^0.079^3^0.071^0.081^~4~^~04/01/2011~ -~27043~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^3^0.015^0.015^~1, 4~^~04/01/2011~ -~27043~^~405~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^3^0.015^0.015^~1, 4~^~04/01/2011~ -~27043~^~406~^0.422^4^0.040^~1~^~A~^^^1^0.340^0.510^3^0.294^0.551^~4~^~04/01/2011~ -~27043~^~415~^0.130^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~606~^0.701^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~607~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~608~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~610~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~611~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~612~^0.025^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~613~^0.467^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~614~^0.187^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~617~^0.859^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~618~^1.704^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~619~^0.234^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~620~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~621~^0.026^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~626~^0.039^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~627~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~628~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~629~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~631~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27043~^~645~^0.908^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27043~^~646~^1.997^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~ -~27044~^~312~^0.025^12^0.000^~1~^~A~^^^1^0.025^0.026^11^0.025^0.025^~4~^~02/01/2011~ -~27044~^~315~^0.053^12^0.001^~1~^~A~^^^1^0.046^0.064^11^0.050^0.056^~4~^~02/01/2011~ -~27044~^~404~^0.032^12^0.006^~1~^~A~^^^1^0.015^0.060^11^0.019^0.044^~1, 4~^~02/01/2011~ -~27044~^~405~^0.022^12^0.002^~1~^~A~^^^1^0.015^0.030^11^0.017^0.027^~1, 4~^~02/01/2011~ -~27044~^~406~^1.396^12^0.134^~1~^~A~^^^1^0.800^2.020^11^1.102^1.690^~4~^~02/01/2011~ -~27044~^~415~^0.060^2^^~1~^~A~^^^1^0.060^0.060^1^^^^~01/01/2013~ -~27044~^~606~^0.394^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27044~^~607~^0.000^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~608~^0.000^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~01/01/2013~ -~27044~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~01/01/2013~ -~27044~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~01/01/2013~ -~27044~^~612~^0.007^2^^~1~^~A~^^^1^0.002^0.004^1^^^^~01/01/2013~ -~27044~^~613~^0.303^2^^~1~^~A~^^^1^0.078^0.165^1^^^^~01/01/2013~ -~27044~^~614~^0.082^2^^~1~^~A~^^^1^0.021^0.045^1^^^^~01/01/2013~ -~27044~^~617~^0.510^2^^~1~^~A~^^^1^0.137^0.272^1^^^^~01/01/2013~ -~27044~^~618~^0.293^2^^~1~^~A~^^^1^0.079^0.156^1^^^^~01/01/2013~ -~27044~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~ -~27044~^~620~^0.012^2^^~1~^~A~^^^1^0.004^0.006^1^^^^~01/01/2013~ -~27044~^~621~^0.002^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~626~^0.080^2^^~1~^~A~^^^1^0.021^0.043^1^^^^~01/01/2013~ -~27044~^~627~^0.000^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~628~^0.004^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~01/01/2013~ -~27044~^~629~^0.001^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~630~^0.000^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~631~^0.001^0^^~4~^~BFZN~^~06018~^^^^^^^^^~01/01/2013~ -~27044~^~645~^0.594^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27044~^~646~^0.325^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~27045~^~312~^0.026^9^0.001^~1~^~A~^^^1^0.025^0.029^8^0.025^0.027^~4~^~02/01/2011~ -~27045~^~315~^0.048^9^0.001^~1~^~A~^^^1^0.044^0.053^8^0.046^0.051^~4~^~02/01/2011~ -~27045~^~404~^0.015^9^0.000^~1~^~A~^^^1^0.015^0.015^8^0.015^0.015^~1, 4~^~02/01/2011~ -~27045~^~405~^0.015^9^0.001^~1~^~A~^^^1^0.015^0.020^8^0.014^0.017^~1, 4~^~02/01/2011~ -~27045~^~406~^0.907^9^0.057^~1~^~A~^^^1^0.670^1.140^8^0.775^1.038^~4~^~02/01/2011~ -~27046~^~312~^0.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~315~^0.429^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~404~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~405~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~406~^0.239^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~415~^0.032^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~606~^0.051^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~610~^0.029^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~613~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~614~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~617~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~618~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~619~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~645~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27046~^~646~^0.027^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~312~^0.081^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~315~^0.156^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~404~^0.046^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~405~^0.036^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~406~^1.615^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~410~^0.154^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~415~^0.083^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27047~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~312~^0.189^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~315~^0.174^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~404~^0.034^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~405~^0.054^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~406~^0.913^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~415~^0.105^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27048~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~312~^0.023^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~315~^0.107^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~404~^0.016^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~405~^0.029^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~406~^0.093^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~410~^0.073^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~415~^0.044^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~606~^3.333^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~612~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~613~^2.234^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~614~^0.939^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~617~^3.565^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~618~^7.960^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~619~^1.069^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~620~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~621~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~628~^0.037^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~645~^3.605^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27049~^~646~^9.044^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~312~^0.079^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~315~^0.761^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~404~^0.048^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~405~^0.019^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~406~^0.187^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~410~^0.093^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~415~^0.053^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27050~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~312~^0.111^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~315~^0.148^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~404~^0.021^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~405~^0.047^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~406~^0.820^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~410~^0.068^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~415~^0.080^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27051~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~ -~27052~^~312~^0.004^14^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~315~^0.019^14^0.001^~1~^~A~^^^1^0.011^0.027^13^0.017^0.021^~1, 2, 3~^~07/01/2012~ -~27052~^~404~^0.012^8^0.003^~1~^~A~^^^1^0.010^0.030^7^0.006^0.018^~2, 3~^~07/01/2012~ -~27052~^~405~^0.065^8^0.013^~1~^~A~^^^1^0.040^0.150^7^0.035^0.095^~2, 3~^~07/01/2012~ -~27052~^~406~^0.136^8^0.007^~1~^~A~^^^1^0.110^0.160^7^0.119^0.153^~2, 3~^~07/01/2012~ -~27052~^~410~^0.571^6^0.037^~1~^~A~^^^1^0.435^0.680^5^0.475^0.667^~2, 3~^~07/01/2012~ -~27052~^~415~^0.043^8^0.003^~1~^~A~^^^1^0.032^0.063^7^0.035^0.051^~2, 3~^~07/01/2012~ -~27052~^~605~^0.097^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~606~^2.491^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~607~^0.053^8^0.003^~1~^~A~^^^1^0.043^0.072^7^0.045^0.061^~2, 3~^~07/01/2012~ -~27052~^~608~^0.038^8^0.003^~1~^~A~^^^1^0.026^0.050^7^0.032^0.044^~2, 3~^~07/01/2012~ -~27052~^~609~^0.027^8^0.001^~1~^~A~^^^1^0.021^0.035^7^0.023^0.030^~2, 3~^~07/01/2012~ -~27052~^~610~^0.069^8^0.004^~1~^~A~^^^1^0.056^0.093^7^0.060^0.078^~2, 3~^~07/01/2012~ -~27052~^~611~^0.074^8^0.005^~1~^~A~^^^1^0.052^0.100^7^0.063^0.085^~2, 3~^~07/01/2012~ -~27052~^~612~^0.237^8^0.017^~1~^~A~^^^1^0.182^0.332^7^0.198^0.276^~2, 3~^~07/01/2012~ -~27052~^~613~^1.325^8^0.044^~1~^~A~^^^1^1.190^1.596^7^1.221^1.429^~2, 3~^~07/01/2012~ -~27052~^~614~^0.560^8^0.024^~1~^~A~^^^1^0.475^0.686^7^0.503^0.617^~2, 3~^~07/01/2012~ -~27052~^~615~^0.032^8^0.005^~1~^~A~^^^1^0.022^0.068^7^0.019^0.044^~2, 3~^~07/01/2012~ -~27052~^~617~^2.632^8^0.555^~1~^~AS~^^^1^1.824^6.508^7^1.320^3.945^~2, 3~^~07/01/2012~ -~27052~^~618~^3.315^8^0.117^~1~^~AS~^^^1^2.959^3.962^7^3.039^3.591^~2, 3~^~07/01/2012~ -~27052~^~619~^0.317^8^0.115^~1~^~AS~^^^1^0.062^0.985^7^0.046^0.588^~2, 3~^~07/01/2012~ -~27052~^~620~^0.003^8^0.001^~1~^~A~^^^1^0.000^0.005^7^0.001^0.005^~1, 2, 3~^~07/01/2012~ -~27052~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~624~^0.018^8^0.004^~1~^~A~^^^1^0.008^0.039^7^0.009^0.027^~2, 3~^~07/01/2012~ -~27052~^~625~^0.019^8^0.002^~1~^~A~^^^1^0.014^0.027^7^0.015^0.022^~2, 3~^~07/01/2012~ -~27052~^~626~^0.055^8^0.006^~1~^~AS~^^^1^0.042^0.090^7^0.042^0.068^~2, 3~^~07/01/2012~ -~27052~^~627~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~27052~^~628~^0.047^8^0.021^~1~^~A~^^^1^0.020^0.193^7^-0.003^0.096^~2, 3~^~07/01/2012~ -~27052~^~629~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.000^~1, 2, 3~^~07/01/2012~ -~27052~^~630~^0.002^8^0.002^~1~^~AS~^^^1^0.000^0.014^7^-0.002^0.006^~2, 3~^~07/01/2012~ -~27052~^~631~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~07/01/2012~ -~27052~^~645~^2.762^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~646~^3.643^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~652~^0.026^8^0.002^~1~^~A~^^^1^0.020^0.037^7^0.021^0.030^~2, 3~^~07/01/2012~ -~27052~^~653~^0.020^8^0.001^~1~^~A~^^^1^0.016^0.028^7^0.017^0.023^~2, 3~^~07/01/2012~ -~27052~^~654~^0.012^8^0.001^~1~^~A~^^^1^0.007^0.018^7^0.009^0.014^~2, 3~^~07/01/2012~ -~27052~^~662~^0.008^8^0.001^~1~^~A~^^^1^0.005^0.011^7^0.007^0.009^~2, 3~^~07/01/2012~ -~27052~^~663~^0.061^8^0.003^~1~^~A~^^^1^0.049^0.078^7^0.054^0.069^~2, 3~^~07/01/2012~ -~27052~^~664~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.004^7^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~27052~^~665~^0.027^8^0.001^~1~^~A~^^^1^0.021^0.033^7^0.024^0.030^~2, 3~^~07/01/2012~ -~27052~^~670~^0.018^8^0.001^~1~^~A~^^^1^0.015^0.023^7^0.015^0.021^~2, 3~^~07/01/2012~ -~27052~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~672~^0.004^8^0.001^~1~^~A~^^^1^0.002^0.008^7^0.002^0.005^~1, 2, 3~^~07/01/2012~ -~27052~^~673~^0.047^8^0.005^~1~^~A~^^^1^0.034^0.079^7^0.035^0.059^~2, 3~^~07/01/2012~ -~27052~^~674~^2.571^8^0.553^~1~^~A~^^^1^1.773^6.430^7^1.264^3.878^~2, 3~^~07/01/2012~ -~27052~^~675~^3.270^8^0.117^~1~^~A~^^^1^2.919^3.926^7^2.993^3.547^~2, 3~^~07/01/2012~ -~27052~^~676~^0.001^8^0.001^~1~^~A~^^^1^0.000^0.010^7^-0.001^0.004^~1, 2, 3~^~07/01/2012~ -~27052~^~685~^0.006^8^0.002^~1~^~A~^^^1^0.000^0.017^7^0.001^0.011^~1, 2, 3~^~07/01/2012~ -~27052~^~687~^0.008^8^0.001^~1~^~A~^^^1^0.006^0.014^7^0.006^0.010^~2, 3~^~07/01/2012~ -~27052~^~689~^0.002^8^0.001^~1~^~AS~^^^1^0.000^0.004^7^0.001^0.003^~2, 3~^~07/01/2012~ -~27052~^~693~^0.070^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27052~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~851~^0.311^8^0.114^~1~^~A~^^^1^0.062^0.985^7^0.041^0.581^~2, 3~^~07/01/2012~ -~27052~^~852~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27052~^~853~^0.002^8^0.001^~1~^~A~^^^1^0.000^0.004^7^0.001^0.003^~1, 2, 3~^~07/01/2012~ -~27052~^~858~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^7^0.000^0.001^~1, 2, 3~^~07/01/2012~ -~27054~^~312~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.004^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~315~^0.019^6^0.000^~1~^~A~^^^1^0.018^0.021^5^0.018^0.021^~2, 3~^~07/01/2012~ -~27054~^~404~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.010^^^^~2, 3~^~07/01/2012~ -~27054~^~405~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.050^^^^~2, 3~^~07/01/2012~ -~27054~^~406~^0.150^3^0.000^~1~^~A~^^^1^0.150^0.150^^^^~2, 3~^~07/01/2012~ -~27054~^~410~^0.660^2^^~1~^~A~^^^1^0.640^0.680^1^^^^~07/01/2012~ -~27054~^~415~^0.043^3^0.001^~1~^~A~^^^1^0.041^0.046^2^0.037^0.050^~2, 3~^~07/01/2012~ -~27054~^~605~^0.097^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~606~^2.442^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~607~^0.057^3^0.001^~1~^~A~^^^1^0.054^0.059^2^0.050^0.063^~2, 3~^~07/01/2012~ -~27054~^~608~^0.042^3^0.002^~1~^~A~^^^1^0.039^0.044^2^0.035^0.048^~2, 3~^~07/01/2012~ -~27054~^~609~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.029^2^0.024^0.031^~2, 3~^~07/01/2012~ -~27054~^~610~^0.071^3^0.001^~1~^~A~^^^1^0.069^0.072^2^0.067^0.075^~2, 3~^~07/01/2012~ -~27054~^~611~^0.074^3^0.002^~1~^~A~^^^1^0.070^0.076^2^0.066^0.082^~2, 3~^~07/01/2012~ -~27054~^~612~^0.251^3^0.006^~1~^~A~^^^1^0.239^0.258^2^0.225^0.278^~2, 3~^~07/01/2012~ -~27054~^~613~^1.332^3^0.023^~1~^~A~^^^1^1.286^1.357^2^1.233^1.431^~2, 3~^~07/01/2012~ -~27054~^~614~^0.494^3^0.010^~1~^~A~^^^1^0.475^0.504^2^0.453^0.536^~2, 3~^~07/01/2012~ -~27054~^~615~^0.026^3^0.001^~1~^~A~^^^1^0.025^0.027^2^0.024^0.028^~2, 3~^~07/01/2012~ -~27054~^~617~^2.107^3^0.032^~1~^~AS~^^^1^2.043^2.144^2^1.968^2.246^~2, 3~^~07/01/2012~ -~27054~^~618~^3.060^3^0.051^~1~^~AS~^^^1^2.959^3.122^2^2.840^3.280^~2, 3~^~07/01/2012~ -~27054~^~619~^0.067^3^0.003^~1~^~AS~^^^1^0.062^0.070^2^0.056^0.078^~2, 3~^~07/01/2012~ -~27054~^~620~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~07/01/2012~ -~27054~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~624~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~07/01/2012~ -~27054~^~625~^0.021^3^0.000^~1~^~A~^^^1^0.020^0.021^2^0.019^0.022^~2, 3~^~07/01/2012~ -~27054~^~626~^0.057^3^0.001^~1~^~AS~^^^1^0.055^0.058^2^0.053^0.061^~2, 3~^~07/01/2012~ -~27054~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~27054~^~628~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.017^0.027^~2, 3~^~07/01/2012~ -~27054~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~07/01/2012~ -~27054~^~631~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~07/01/2012~ -~27054~^~645~^2.213^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~646~^3.139^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~652~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.025^0.029^~2, 3~^~07/01/2012~ -~27054~^~653~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~07/01/2012~ -~27054~^~654~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~07/01/2012~ -~27054~^~662~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.008^^^^~2, 3~^~07/01/2012~ -~27054~^~663~^0.061^3^0.001^~1~^~A~^^^1^0.059^0.062^2^0.057^0.065^~2, 3~^~07/01/2012~ -~27054~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~665~^0.028^3^0.002^~1~^~A~^^^1^0.025^0.033^2^0.017^0.039^~2, 3~^~07/01/2012~ -~27054~^~670~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~07/01/2012~ -~27054~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2012~ -~27054~^~673~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.050^2^0.045^0.053^~2, 3~^~07/01/2012~ -~27054~^~674~^2.046^3^0.031^~1~^~A~^^^1^1.984^2.082^2^1.912^2.181^~2, 3~^~07/01/2012~ -~27054~^~675~^3.016^3^0.049^~1~^~A~^^^1^2.919^3.072^2^2.806^3.227^~2, 3~^~07/01/2012~ -~27054~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~07/01/2012~ -~27054~^~687~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~07/01/2012~ -~27054~^~689~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~07/01/2012~ -~27054~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27054~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~851~^0.066^3^0.002^~1~^~A~^^^1^0.062^0.068^2^0.058^0.074^~2, 3~^~07/01/2012~ -~27054~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2012~ -~27054~^~853~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~07/01/2012~ -~27054~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2012~ -~27055~^~312~^0.057^6^0.003^~1~^~A~^^^1^0.047^0.068^5^0.049^0.064^~4~^~07/01/2012~ -~27055~^~315~^0.113^6^0.004^~1~^~A~^^^1^0.102^0.130^5^0.102^0.124^~4~^~07/01/2012~ -~27055~^~404~^0.020^3^0.005^~1~^~A~^^^1^0.015^0.030^2^-0.002^0.041^~1, 4~^~07/01/2012~ -~27055~^~405~^0.067^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.052^0.081^~4~^~07/01/2012~ -~27055~^~406~^0.743^3^0.009^~1~^~A~^^^1^0.730^0.760^2^0.705^0.781^~4~^~07/01/2012~ -~27055~^~410~^0.170^2^^~1~^~A~^^^1^0.170^0.170^1^^^^~07/01/2012~ -~27055~^~415~^0.070^3^0.000^~1~^~A~^^^1^0.070^0.070^2^0.070^0.070^~4~^~07/01/2012~ -~27055~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~607~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~612~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~614~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~617~^0.014^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~618~^0.041^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~624~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~645~^0.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~646~^0.050^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~674~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~675~^0.041^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27055~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27055~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27055~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27055~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~312~^0.089^6^0.004^~1~^~A~^^^1^0.079^0.101^5^0.079^0.098^~4~^~07/01/2012~ -~27056~^~315~^0.136^6^0.001^~1~^~A~^^^1^0.132^0.141^5^0.133^0.139^~4~^~07/01/2012~ -~27056~^~404~^0.030^3^0.006^~1~^~A~^^^1^0.020^0.040^2^0.005^0.055^~4~^~07/01/2012~ -~27056~^~405~^0.063^3^0.007^~1~^~A~^^^1^0.050^0.070^2^0.035^0.092^~4~^~07/01/2012~ -~27056~^~406~^0.637^3^0.037^~1~^~A~^^^1^0.590^0.710^2^0.477^0.796^~4~^~07/01/2012~ -~27056~^~410~^0.195^2^^~1~^~A~^^^1^0.170^0.220^1^^^^~07/01/2012~ -~27056~^~415~^0.090^3^0.000^~1~^~A~^^^1^0.090^0.090^2^0.090^0.090^~4~^~07/01/2012~ -~27056~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~606~^0.101^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~607~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~612~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~613~^0.066^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~614~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~617~^0.146^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~618~^0.290^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~619~^0.057^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~628~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~630~^0.044^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~645~^0.216^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~646~^0.349^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~665~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~674~^0.146^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~675~^0.289^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~676~^0.044^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~685~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~ -~27056~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~ -~27056~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~851~^0.057^1^^~1~^~A~^^^^^^^^^^~07/01/2012~ -~27056~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27056~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27057~^~312~^0.072^6^0.002^~1~^~A~^^^1^0.064^0.079^5^0.066^0.078^~4~^~07/01/2012~ -~27057~^~315~^0.178^6^0.007^~1~^~A~^^^1^0.148^0.195^5^0.161^0.196^~4~^~07/01/2012~ -~27057~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~4~^~07/01/2012~ -~27057~^~405~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~4~^~07/01/2012~ -~27057~^~406~^0.787^3^0.015^~1~^~A~^^^1^0.760^0.810^2^0.724^0.849^~4~^~07/01/2012~ -~27057~^~410~^0.205^2^^~1~^~A~^^^1^0.200^0.210^1^^^^~07/01/2012~ -~27057~^~415~^0.093^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.079^0.108^~4~^~07/01/2012~ -~27058~^~312~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^2^0.015^0.015^~1, 4~^~07/01/2012~ -~27058~^~315~^0.071^3^0.002^~1~^~A~^^^1^0.068^0.076^2^0.061^0.082^~4~^~07/01/2012~ -~27058~^~404~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^2^0.015^0.015^~1, 4~^~07/01/2012~ -~27058~^~405~^0.022^3^0.004^~1~^~A~^^^1^0.015^0.030^2^0.002^0.041^~1, 4~^~07/01/2012~ -~27058~^~406~^0.160^3^0.000^~1~^~A~^^^1^0.160^0.160^2^0.160^0.160^~4~^~07/01/2012~ -~27058~^~410~^0.050^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~ -~27058~^~415~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^2^0.015^0.015^~1, 4~^~07/01/2012~ -~27059~^~312~^0.123^5^0.012^~1~^~A~^^^1^0.105^0.169^4^0.090^0.155^~2, 3~^~04/01/2013~ -~27059~^~315~^0.484^5^0.003^~1~^~A~^^^1^0.476^0.495^4^0.475^0.493^~2, 3~^~04/01/2013~ -~27059~^~404~^0.060^3^0.006^~1~^~A~^^^1^0.050^0.070^2^0.035^0.085^~2, 3~^~04/01/2013~ -~27059~^~405~^0.127^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.112^0.141^~2, 3~^~04/01/2013~ -~27059~^~406~^3.200^3^0.093^~1~^~A~^^^1^3.050^3.370^2^2.800^3.600^~2, 3~^~04/01/2013~ -~27059~^~410~^0.310^2^^~1~^~A~^^^1^0.300^0.320^1^^^^~04/01/2013~ -~27059~^~415~^0.190^3^0.015^~1~^~A~^^^1^0.170^0.220^2^0.124^0.256^~2, 3~^~04/01/2013~ -~27059~^~605~^0.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~606~^2.907^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~609~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~27059~^~610~^0.019^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~04/01/2013~ -~27059~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~27059~^~612~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~27059~^~613~^1.421^3^0.006^~1~^~A~^^^1^1.412^1.432^2^1.395^1.446^~2, 3~^~04/01/2013~ -~27059~^~614~^0.742^3^0.009^~1~^~A~^^^1^0.727^0.759^2^0.702^0.782^~2, 3~^~04/01/2013~ -~27059~^~615~^0.176^3^0.003^~1~^~A~^^^1^0.169^0.180^2^0.161^0.190^~2, 3~^~04/01/2013~ -~27059~^~617~^6.816^3^0.166^~1~^~AS~^^^1^6.505^7.071^2^6.103^7.529^~2, 3~^~04/01/2013~ -~27059~^~618~^4.752^3^0.063^~1~^~AS~^^^1^4.687^4.878^2^4.482^5.023^~2, 3~^~04/01/2013~ -~27059~^~619~^0.026^3^0.001^~1~^~AS~^^^1^0.024^0.027^2^0.022^0.029^~2, 3~^~04/01/2013~ -~27059~^~620~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~27059~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~624~^0.359^3^0.009^~1~^~A~^^^1^0.342^0.369^2^0.322^0.397^~2, 3~^~04/01/2013~ -~27059~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~626~^0.012^3^0.000^~1~^~AS~^^^1^0.012^0.012^^^^~2, 3~^~04/01/2013~ -~27059~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~628~^0.140^3^0.004^~1~^~A~^^^1^0.132^0.146^2^0.122^0.157^~2, 3~^~04/01/2013~ -~27059~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~630~^0.010^3^0.000^~1~^~AS~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2013~ -~27059~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~645~^6.986^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~646~^4.786^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~27059~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2013~ -~27059~^~654~^0.156^3^0.003^~1~^~A~^^^1^0.150^0.160^2^0.143^0.169^~2, 3~^~04/01/2013~ -~27059~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~663~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~04/01/2013~ -~27059~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~665~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.020^2^0.016^0.021^~2, 3~^~04/01/2013~ -~27059~^~670~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~27059~^~673~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.012^^^^~2, 3~^~04/01/2013~ -~27059~^~674~^6.800^3^0.166^~1~^~A~^^^1^6.488^7.054^2^6.086^7.513^~2, 3~^~04/01/2013~ -~27059~^~675~^4.734^3^0.063^~1~^~A~^^^1^4.667^4.860^2^4.462^5.006^~2, 3~^~04/01/2013~ -~27059~^~676~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2013~ -~27059~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~27059~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~27059~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~27059~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~851~^0.026^3^0.001^~1~^~A~^^^1^0.024^0.027^2^0.022^0.029^~2, 3~^~04/01/2013~ -~27059~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27059~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~27060~^~312~^0.046^2^^~1~^~A~^^^1^0.036^0.057^1^^^^~02/01/2013~ -~27060~^~315~^0.089^2^^~1~^~A~^^^1^0.080^0.099^1^^^^~02/01/2013~ -~27060~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~406~^0.610^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~410~^0.220^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~02/01/2013~ -~27060~^~606~^0.217^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27060~^~607~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~608~^0.005^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~609~^0.003^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~610~^0.008^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~611~^0.010^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~612~^0.032^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~613~^0.113^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~614~^0.035^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~617~^0.106^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~618~^0.084^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~619~^0.013^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~626~^0.005^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~27060~^~645~^0.111^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27060~^~646~^0.097^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27061~^~312~^0.019^6^0.001^~1~^~A~^^^1^0.018^0.025^5^0.017^0.022^~1, 2, 3~^~02/01/2015~ -~27061~^~315~^0.012^6^0.001^~1~^~A~^^^1^0.011^0.018^5^0.009^0.015^~1, 2, 3~^~02/01/2015~ -~27061~^~404~^0.030^3^0.010^~1~^~A~^^^1^0.010^0.040^2^-0.013^0.073^~2, 3~^~02/01/2015~ -~27061~^~405~^0.057^3^0.009^~1~^~A~^^^1^0.040^0.070^2^0.019^0.095^~2, 3~^~02/01/2015~ -~27061~^~406~^0.280^3^0.010^~1~^~A~^^^1^0.260^0.290^2^0.237^0.323^~2, 3~^~02/01/2015~ -~27061~^~410~^0.130^2^^~1~^~A~^^^1^0.120^0.140^1^^^^~02/01/2015~ -~27061~^~415~^0.027^3^0.000^~1~^~A~^^^1^0.027^0.028^2^0.026^0.029^~2, 3~^~02/01/2015~ -~27061~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~606~^0.656^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~611~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~612~^0.015^6^0.000^~1~^~A~^^^1^0.013^0.016^5^0.014^0.016^~2, 3~^~02/01/2015~ -~27061~^~613~^0.501^6^0.016^~1~^~A~^^^1^0.434^0.550^5^0.460^0.541^~2, 3~^~02/01/2015~ -~27061~^~614~^0.129^6^0.005^~1~^~A~^^^1^0.111^0.141^5^0.118^0.141^~2, 3~^~02/01/2015~ -~27061~^~615~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~27061~^~617~^0.966^6^0.036^~1~^~AS~^^^1^0.811^1.051^5^0.873^1.058^~2, 3~^~02/01/2015~ -~27061~^~618~^0.397^6^0.016^~1~^~AS~^^^1^0.325^0.435^5^0.355^0.439^~2, 3~^~02/01/2015~ -~27061~^~619~^0.022^6^0.001^~1~^~AS~^^^1^0.019^0.024^5^0.020^0.024^~2, 3~^~02/01/2015~ -~27061~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.004^0.005^~2, 3~^~02/01/2015~ -~27061~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~624~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~27061~^~625~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~02/01/2015~ -~27061~^~626~^0.119^6^0.003^~1~^~AS~^^^1^0.103^0.127^5^0.110^0.128^~2, 3~^~02/01/2015~ -~27061~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~628~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.016^5^0.012^0.016^~2, 3~^~02/01/2015~ -~27061~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~02/01/2015~ -~27061~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~645~^1.105^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~646~^0.429^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~02/01/2015~ -~27061~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~27061~^~654~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~663~^0.009^6^0.001^~1~^~A~^^^1^0.006^0.014^5^0.006^0.012^~2, 3~^~02/01/2015~ -~27061~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~27061~^~670~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~672~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~673~^0.119^6^0.003^~1~^~A~^^^1^0.103^0.127^5^0.110^0.128^~2, 3~^~02/01/2015~ -~27061~^~674~^0.957^6^0.035^~1~^~A~^^^1^0.804^1.042^5^0.866^1.048^~2, 3~^~02/01/2015~ -~27061~^~675~^0.396^6^0.016^~1~^~A~^^^1^0.324^0.434^5^0.353^0.438^~2, 3~^~02/01/2015~ -~27061~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~687~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~02/01/2015~ -~27061~^~689~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~02/01/2015~ -~27061~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~ -~27061~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~851~^0.022^6^0.001^~1~^~A~^^^1^0.019^0.024^5^0.020^0.024^~2, 3~^~02/01/2015~ -~27061~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~02/01/2015~ -~27061~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2015~ -~27061~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~02/01/2015~ -~27062~^~312~^0.058^11^0.003^~1~^~A~^^^1^0.045^0.068^10^0.053^0.064^~2, 3~^~04/01/2015~ -~27062~^~315~^0.088^11^0.003^~1~^~A~^^^1^0.076^0.104^10^0.081^0.095^~2, 3~^~04/01/2015~ -~27062~^~404~^0.027^6^0.002^~1~^~A~^^^1^0.020^0.030^5^0.021^0.032^~2, 3~^~04/01/2015~ -~27062~^~405~^0.085^6^0.002^~1~^~A~^^^1^0.081^0.094^5^0.080^0.091^~2, 3~^~04/01/2015~ -~27062~^~406~^0.933^6^0.060^~1~^~A~^^^1^0.680^1.070^5^0.779^1.088^~2, 3~^~04/01/2015~ -~27062~^~410~^0.177^4^0.031^~1~^~A~^^^1^0.100^0.250^3^0.079^0.276^~2, 3~^~04/01/2015~ -~27062~^~415~^0.078^6^0.007^~1~^~A~^^^1^0.058^0.094^5^0.060^0.096^~2, 3~^~04/01/2015~ -~27062~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~606~^0.329^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~609~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.007^~1, 2, 3~^~04/01/2015~ -~27062~^~610~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.012^5^0.004^0.011^~2, 3~^~04/01/2015~ -~27062~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~612~^0.019^6^0.002^~1~^~A~^^^1^0.016^0.033^5^0.020^0.033^~2, 3~^~04/01/2015~ -~27062~^~613~^0.198^6^0.019^~1~^~A~^^^1^0.229^0.348^5^0.239^0.335^~2, 3~^~04/01/2015~ -~27062~^~614~^0.090^6^0.009^~1~^~A~^^^1^0.095^0.151^5^0.107^0.153^~2, 3~^~04/01/2015~ -~27062~^~615~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2015~ -~27062~^~617~^0.312^6^0.038^~1~^~AS~^^^1^0.361^0.584^5^0.354^0.549^~2, 3~^~04/01/2015~ -~27062~^~618~^0.200^6^0.068^~1~^~AS~^^^1^0.125^0.464^5^0.117^0.464^~2, 3~^~04/01/2015~ -~27062~^~619~^0.022^6^0.010^~1~^~AS~^^^1^0.011^0.058^5^0.008^0.057^~2, 3~^~04/01/2015~ -~27062~^~620~^0.004^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2015~ -~27062~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~624~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~04/01/2015~ -~27062~^~625~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.011^5^0.006^0.010^~2, 3~^~04/01/2015~ -~27062~^~626~^0.022^6^0.003^~1~^~AS~^^^1^0.020^0.038^5^0.025^0.039^~2, 3~^~04/01/2015~ -~27062~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~628~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.009^5^0.003^0.008^~2, 3~^~04/01/2015~ -~27062~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27062~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~27062~^~631~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2015~ -~27062~^~645~^0.349^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~646~^0.232^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~652~^0.005^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~04/01/2015~ -~27062~^~653~^0.007^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.008^0.011^~2, 3~^~04/01/2015~ -~27062~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27062~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27062~^~663~^0.027^6^0.004^~1~^~A~^^^1^0.026^0.052^5^0.028^0.049^~2, 3~^~04/01/2015~ -~27062~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~665~^0.005^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.009^~2, 3~^~04/01/2015~ -~27062~^~670~^0.004^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.004^0.007^~2, 3~^~04/01/2015~ -~27062~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2015~ -~27062~^~673~^0.020^6^0.003^~1~^~A~^^^1^0.018^0.035^5^0.023^0.036^~2, 3~^~04/01/2015~ -~27062~^~674~^0.285^6^0.035^~1~^~A~^^^1^0.335^0.532^5^0.323^0.504^~2, 3~^~04/01/2015~ -~27062~^~675~^0.191^6^0.067^~1~^~A~^^^1^0.114^0.451^5^0.105^0.450^~2, 3~^~04/01/2015~ -~27062~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~685~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~04/01/2015~ -~27062~^~687~^0.006^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.006^0.010^~2, 3~^~04/01/2015~ -~27062~^~689~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.003^5^0.002^0.003^~2, 3~^~04/01/2015~ -~27062~^~693~^0.028^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27062~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~851~^0.022^6^0.009^~1~^~A~^^^1^0.011^0.056^5^0.008^0.055^~2, 3~^~04/01/2015~ -~27062~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~853~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27062~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27062~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2015~ -~27063~^~312~^0.031^12^0.002^~1~^~A~^^^1^0.018^0.080^8^0.026^0.036^~1, 2, 3~^~04/01/2015~ -~27063~^~315~^0.047^12^0.003^~1~^~A~^^^1^0.037^0.113^9^0.041^0.053^~2, 3~^~04/01/2015~ -~27063~^~404~^0.040^6^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~04/01/2015~ -~27063~^~405~^0.055^6^0.006^~1~^~A~^^^1^0.020^0.120^1^0.015^0.094^~2, 3~^~04/01/2015~ -~27063~^~406~^0.388^6^0.019^~1~^~A~^^^1^0.250^0.520^2^0.312^0.463^~2, 3~^~04/01/2015~ -~27063~^~410~^0.082^4^0.044^~1~^~A~^^^1^0.030^0.130^1^-0.473^0.636^~1, 2, 3~^~04/01/2015~ -~27063~^~415~^0.059^6^0.009^~1~^~A~^^^1^0.037^0.190^1^-0.008^0.127^~1, 2, 3~^~04/01/2015~ -~27063~^~605~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~606~^0.111^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~610~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^1^0.002^0.004^~2, 3~^~04/01/2015~ -~27063~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27063~^~612~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.016^1^-0.006^0.015^~2, 3~^~04/01/2015~ -~27063~^~613~^0.067^4^0.010^~1~^~A~^^^1^0.039^0.194^1^-0.026^0.160^~2, 3~^~04/01/2015~ -~27063~^~614~^0.029^4^0.004^~1~^~A~^^^1^0.018^0.065^2^0.011^0.046^~2, 3~^~04/01/2015~ -~27063~^~615~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.005^1^0.000^0.005^~1, 2, 3~^~04/01/2015~ -~27063~^~617~^0.064^4^0.042^~1~^~AS~^^^1^0.001^0.284^1^-0.281^0.408^~2, 3~^~04/01/2015~ -~27063~^~618~^0.245^4^0.043^~1~^~AS~^^^1^0.147^0.680^2^0.044^0.446^~2, 3~^~04/01/2015~ -~27063~^~619~^0.031^4^0.006^~1~^~AS~^^^1^0.022^0.089^2^0.003^0.059^~2, 3~^~04/01/2015~ -~27063~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.002^0.002^~1, 2, 3~^~04/01/2015~ -~27063~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~624~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.004^1^0.000^0.004^~1, 2, 3~^~04/01/2015~ -~27063~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~626~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.003^1^-0.001^0.004^~2, 3~^~04/01/2015~ -~27063~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~628~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.007^1^-0.005^0.011^~1, 2, 3~^~04/01/2015~ -~27063~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~27063~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~645~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~646~^0.276^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~652~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^1^-0.004^0.007^~1, 2, 3~^~04/01/2015~ -~27063~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.002^0.002^~1, 2, 3~^~04/01/2015~ -~27063~^~654~^0.002^4^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.002^0.005^~1, 2, 3~^~04/01/2015~ -~27063~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~663~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.002^0.003^~1, 2, 3~^~04/01/2015~ -~27063~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~665~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.006^1^0.000^0.005^~1, 2, 3~^~04/01/2015~ -~27063~^~670~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~04/01/2015~ -~27063~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.002^0.002^~1, 2, 3~^~04/01/2015~ -~27063~^~673~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.001^0.004^~1, 2, 3~^~04/01/2015~ -~27063~^~674~^0.063^4^0.042^~1~^~A~^^^1^0.001^0.281^1^-0.284^0.411^~1, 2, 3~^~04/01/2015~ -~27063~^~675~^0.243^4^0.043^~1~^~A~^^^1^0.141^0.676^2^0.041^0.444^~2, 3~^~04/01/2015~ -~27063~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~685~^0.002^4^0.001^~1~^~A~^^^1^0.001^0.003^1^-0.009^0.013^~1, 2, 3~^~04/01/2015~ -~27063~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2015~ -~27063~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~27063~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~851~^0.029^4^0.006^~1~^~A~^^^1^0.020^0.086^2^0.004^0.054^~2, 3~^~04/01/2015~ -~27063~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27063~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2015~ -~27064~^~312~^0.055^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~315~^0.137^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~406~^0.160^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~606~^2.031^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~612~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~613~^1.662^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~614~^0.196^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~615~^0.071^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~617~^4.309^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~618~^3.458^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~619~^0.159^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~620~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~621~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~624~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~626~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~628~^0.071^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~645~^4.410^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~646~^3.627^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~654~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~665~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~670~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~671~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~673~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~674~^4.295^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~675~^3.426^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~685~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27064~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27064~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~851~^0.151^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27064~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27064~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27065~^~312~^0.196^3^0.001^~1~^~A~^^^1^0.194^0.197^2^0.192^0.199^~2, 3~^~06/01/2015~ -~27065~^~315~^0.341^3^0.003^~1~^~A~^^^1^0.335^0.345^2^0.328^0.353^~2, 3~^~06/01/2015~ -~27065~^~404~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~06/01/2015~ -~27065~^~405~^0.100^3^0.010^~1~^~A~^^^1^0.080^0.110^2^0.057^0.143^~2, 3~^~06/01/2015~ -~27065~^~406~^0.430^3^0.015^~1~^~A~^^^1^0.410^0.460^2^0.364^0.496^~2, 3~^~06/01/2015~ -~27065~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27065~^~415~^0.115^2^^~1~^~A~^^^1^0.110^0.120^1^^^^~06/01/2015~ -~27065~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~606~^0.529^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~609~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27065~^~610~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~27065~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27065~^~612~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~06/01/2015~ -~27065~^~613~^0.423^3^0.014^~1~^~A~^^^1^0.400^0.447^2^0.364^0.481^~2, 3~^~06/01/2015~ -~27065~^~614~^0.061^3^0.002^~1~^~A~^^^1^0.057^0.064^2^0.052^0.070^~2, 3~^~06/01/2015~ -~27065~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.007^0.016^~2, 3~^~06/01/2015~ -~27065~^~617~^0.842^3^0.033^~1~^~AS~^^^1^0.779^0.892^2^0.699^0.986^~2, 3~^~06/01/2015~ -~27065~^~618~^1.760^3^0.062^~1~^~AS~^^^1^1.668^1.877^2^1.495^2.025^~2, 3~^~06/01/2015~ -~27065~^~619~^0.193^3^0.003^~1~^~AS~^^^1^0.189^0.198^2^0.182^0.204^~2, 3~^~06/01/2015~ -~27065~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~624~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~06/01/2015~ -~27065~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~626~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27065~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~628~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~06/01/2015~ -~27065~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~27065~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~645~^0.859^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~646~^1.957^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~652~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~06/01/2015~ -~27065~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27065~^~654~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~06/01/2015~ -~27065~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~663~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~06/01/2015~ -~27065~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~665~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.008^2^-0.002^0.012^~2, 3~^~06/01/2015~ -~27065~^~670~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27065~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27065~^~673~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27065~^~674~^0.840^3^0.033^~1~^~A~^^^1^0.777^0.888^2^0.698^0.981^~2, 3~^~06/01/2015~ -~27065~^~675~^1.754^3^0.060^~1~^~A~^^^1^1.663^1.868^2^1.494^2.013^~2, 3~^~06/01/2015~ -~27065~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~685~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27065~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~27065~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27065~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~851~^0.192^3^0.002^~1~^~A~^^^1^0.188^0.196^2^0.182^0.202^~2, 3~^~06/01/2015~ -~27065~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27065~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27066~^~312~^0.018^4^0.000^~1~^~A~^^^1^0.018^0.019^3^0.018^0.019^~1, 2, 3~^~06/01/2015~ -~27066~^~315~^0.045^4^0.020^~1~^~A~^^^1^0.011^0.084^3^-0.018^0.108^~1, 2, 3~^~06/01/2015~ -~27066~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~27066~^~405~^0.045^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~06/01/2015~ -~27066~^~406~^0.115^2^^~1~^~A~^^^1^0.110^0.120^1^^^^~06/01/2015~ -~27066~^~410~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~27066~^~415~^0.037^2^^~1~^~A~^^^1^0.037^0.037^^^^~1~^~06/01/2015~ -~27066~^~605~^0.179^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~606~^8.233^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~610~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~612~^0.043^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~613~^5.372^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~614~^2.310^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~615~^0.186^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~617~^12.526^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~618~^25.524^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~619~^3.577^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~621~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~624~^0.175^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~626~^0.055^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~627~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~628~^0.340^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~630~^0.129^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~645~^13.087^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~646~^29.169^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~652~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~653~^0.049^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~654~^0.069^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~663~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~664~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~665~^0.148^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~670~^0.048^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~671~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~672~^0.024^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~673~^0.055^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~674~^12.503^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~675~^25.328^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~676~^0.121^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~685~^0.171^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~687~^0.028^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~27066~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~695~^0.148^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27066~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~851~^3.406^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~852~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27066~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27066~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~27068~^~312~^0.196^3^0.001^~1~^~A~^^^1^0.194^0.197^2^0.192^0.199^~2, 3~^~06/01/2015~ -~27068~^~315~^0.341^3^0.003^~1~^~A~^^^1^0.335^0.345^2^0.328^0.353^~2, 3~^~06/01/2015~ -~27068~^~404~^0.090^2^^~1~^~A~^^^1^0.090^0.090^^^^^~06/01/2015~ -~27068~^~405~^0.100^3^0.010^~1~^~A~^^^1^0.080^0.110^2^0.057^0.143^~2, 3~^~06/01/2015~ -~27068~^~406~^0.430^3^0.015^~1~^~A~^^^1^0.410^0.460^2^0.364^0.496^~2, 3~^~06/01/2015~ -~27068~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~27068~^~415~^0.115^2^^~1~^~A~^^^1^0.110^0.120^1^^^^~06/01/2015~ -~27068~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~606~^0.529^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~609~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27068~^~610~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~27068~^~611~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27068~^~612~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~06/01/2015~ -~27068~^~613~^0.423^3^0.014^~1~^~A~^^^1^0.400^0.447^2^0.364^0.481^~2, 3~^~06/01/2015~ -~27068~^~614~^0.061^3^0.002^~1~^~A~^^^1^0.057^0.064^2^0.052^0.070^~2, 3~^~06/01/2015~ -~27068~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.007^0.016^~2, 3~^~06/01/2015~ -~27068~^~617~^0.842^3^0.033^~1~^~AS~^^^1^0.779^0.892^2^0.699^0.986^~2, 3~^~06/01/2015~ -~27068~^~618~^1.760^3^0.062^~1~^~AS~^^^1^1.668^1.877^2^1.495^2.025^~2, 3~^~06/01/2015~ -~27068~^~619~^0.193^3^0.003^~1~^~AS~^^^1^0.189^0.198^2^0.182^0.204^~2, 3~^~06/01/2015~ -~27068~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~624~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~06/01/2015~ -~27068~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~626~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27068~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~628~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~06/01/2015~ -~27068~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~27068~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~645~^0.859^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~646~^1.957^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~652~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~06/01/2015~ -~27068~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27068~^~654~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~06/01/2015~ -~27068~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~663~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~06/01/2015~ -~27068~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~665~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.008^2^-0.002^0.012^~2, 3~^~06/01/2015~ -~27068~^~670~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27068~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27068~^~673~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~27068~^~674~^0.840^3^0.033^~1~^~A~^^^1^0.777^0.888^2^0.698^0.981^~2, 3~^~06/01/2015~ -~27068~^~675~^1.754^3^0.060^~1~^~A~^^^1^1.663^1.868^2^1.494^2.013^~2, 3~^~06/01/2015~ -~27068~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~685~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~27068~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~27068~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~27068~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~851~^0.192^3^0.002^~1~^~A~^^^1^0.188^0.196^2^0.182^0.202^~2, 3~^~06/01/2015~ -~27068~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~27068~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28285~^~312~^0.229^3^^~1~^~A~^^^1^0.144^0.313^^^^~2, 3~^~04/01/2013~ -~28285~^~315~^1.747^3^^~1~^~A~^^^1^1.360^2.370^^^^~2, 3~^~04/01/2013~ -~28285~^~404~^0.450^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~405~^0.180^2^^~1~^~A~^^^1^0.100^0.260^^^^^~04/01/2013~ -~28285~^~406~^4.610^2^^~1~^~A~^^^1^2.490^6.730^^^^^~04/01/2013~ -~28285~^~410~^0.560^2^^~1~^~A~^^^1^0.420^0.700^^^^^~04/01/2013~ -~28285~^~415~^0.280^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~605~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~606~^3.311^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~610~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~611~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~612~^0.065^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~613~^2.791^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~614~^0.383^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~617~^2.070^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~618~^0.729^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~620~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~624~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~626~^0.008^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~645~^2.091^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~646~^0.761^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~653~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~654~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~663~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~665~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~670~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~673~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~674~^2.048^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~675~^0.720^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~685~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~687~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28285~^~693~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28285~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~851~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28285~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28285~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28286~^~312~^0.146^2^^~1~^~A~^^^1^0.069^0.222^^^^^~04/01/2013~ -~28286~^~315~^1.054^2^^~1~^~A~^^^1^0.369^1.740^^^^^~04/01/2013~ -~28286~^~404~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~405~^0.076^2^^~1~^~A~^^^1^0.053^0.100^^^^^~04/01/2013~ -~28286~^~406~^1.830^2^^~1~^~A~^^^1^0.620^3.040^^^^^~04/01/2013~ -~28286~^~410~^0.465^2^^~1~^~A~^^^1^0.310^0.620^^^^^~04/01/2013~ -~28286~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28286~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~606~^5.826^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~609~^0.004^2^^~1~^~A~^^^1^0.000^0.008^^^^~1~^~04/01/2013~ -~28286~^~610~^0.016^2^^~1~^~A~^^^1^0.015^0.018^^^^^~04/01/2013~ -~28286~^~611~^0.051^2^^~1~^~A~^^^1^0.016^0.087^^^^^~04/01/2013~ -~28286~^~612~^0.113^2^^~1~^~A~^^^1^0.055^0.172^^^^^~04/01/2013~ -~28286~^~613~^4.897^2^^~1~^~A~^^^1^2.988^6.807^^^^^~04/01/2013~ -~28286~^~614~^0.644^2^^~1~^~A~^^^1^0.429^0.859^^^^^~04/01/2013~ -~28286~^~615~^0.049^2^^~1~^~A~^^^1^0.049^0.050^^^^^~04/01/2013~ -~28286~^~617~^3.788^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~618~^2.407^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~619~^0.069^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~620~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~28286~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~624~^0.012^2^^~1~^~A~^^^1^0.009^0.015^^^^^~04/01/2013~ -~28286~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~628~^0.027^2^^~1~^~A~^^^1^0.020^0.034^^^^^~04/01/2013~ -~28286~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~645~^3.837^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~646~^2.484^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~652~^0.009^2^^~1~^~A~^^^1^0.009^0.010^^^^^~04/01/2013~ -~28286~^~653~^0.013^2^^~1~^~A~^^^1^0.010^0.016^^^^^~04/01/2013~ -~28286~^~654~^0.015^2^^~1~^~A~^^^1^0.011^0.020^^^^^~04/01/2013~ -~28286~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~663~^0.016^2^^~1~^~A~^^^1^0.014^0.017^^^^^~04/01/2013~ -~28286~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~665~^0.019^2^^~1~^~A~^^^1^0.014^0.023^^^^^~04/01/2013~ -~28286~^~670~^0.003^2^^~1~^~A~^^^1^0.002^0.004^^^^~1~^~04/01/2013~ -~28286~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~672~^0.002^2^^~1~^~A~^^^1^0.000^0.004^^^^~1~^~04/01/2013~ -~28286~^~673~^0.017^2^^~1~^~A~^^^1^0.016^0.018^^^^^~04/01/2013~ -~28286~^~674~^3.773^2^^~1~^~A~^^^1^3.398^4.148^^^^^~04/01/2013~ -~28286~^~675~^2.386^2^^~1~^~A~^^^1^1.289^3.482^^^^^~04/01/2013~ -~28286~^~676~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~04/01/2013~ -~28286~^~685~^0.006^2^^~1~^~A~^^^1^0.004^0.007^^^^^~04/01/2013~ -~28286~^~687~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~04/01/2013~ -~28286~^~689~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28286~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28286~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~851~^0.064^2^^~1~^~A~^^^1^0.041^0.086^^^^^~04/01/2013~ -~28286~^~852~^0.003^2^^~1~^~A~^^^1^0.002^0.003^^^^~1~^~04/01/2013~ -~28286~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28286~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28287~^~312~^0.158^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~315~^1.400^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~404~^0.176^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~405~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~406~^3.580^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28287~^~415~^0.128^0^^~4~^~BFPN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~606~^2.907^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~607~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~608~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~609~^0.002^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~610~^0.008^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~611~^0.026^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~612~^0.058^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~613~^2.486^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~614~^0.327^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~617~^1.923^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~618~^1.222^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~619~^0.035^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~620~^0.002^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~621~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~626~^0.009^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~627~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~628~^0.014^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~629~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~630~^0.001^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~631~^0.000^0^^~4~^~BFFN~^~28286~^^^^^^^^^~04/01/2013~ -~28287~^~645~^1.946^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28287~^~646~^1.258^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~312~^0.135^2^^~1~^~A~^^^1^0.132^0.139^^^^^~04/01/2013~ -~28288~^~315~^0.680^2^^~1~^~A~^^^1^0.626^0.735^^^^^~04/01/2013~ -~28288~^~404~^0.680^2^^~1~^~A~^^^1^0.640^0.720^^^^^~04/01/2013~ -~28288~^~405~^0.430^2^^~1~^~A~^^^1^0.400^0.460^^^^^~04/01/2013~ -~28288~^~406~^5.585^2^^~1~^~A~^^^1^5.400^5.770^^^^^~04/01/2013~ -~28288~^~410~^0.520^2^^~1~^~A~^^^1^0.480^0.560^^^^^~04/01/2013~ -~28288~^~415~^0.105^2^^~1~^~A~^^^1^0.100^0.110^^^^^~04/01/2013~ -~28288~^~605~^0.869^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~606~^1.401^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~610~^0.010^2^^~1~^~A~^^^1^0.010^0.011^^^^^~04/01/2013~ -~28288~^~611~^0.005^2^^~1~^~A~^^^1^0.003^0.006^^^^^~04/01/2013~ -~28288~^~612~^0.009^2^^~1~^~A~^^^1^0.004^0.014^^^^^~04/01/2013~ -~28288~^~613~^0.688^2^^~1~^~A~^^^1^0.284^1.092^^^^^~04/01/2013~ -~28288~^~614~^0.632^2^^~1~^~A~^^^1^0.117^1.148^^^^^~04/01/2013~ -~28288~^~615~^0.019^2^^~1~^~A~^^^1^0.005^0.033^^^^^~04/01/2013~ -~28288~^~617~^2.621^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~618~^0.966^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~619~^0.051^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~620~^0.002^2^^~1~^~A~^^^1^0.000^0.004^^^^~1~^~04/01/2013~ -~28288~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~624~^0.017^2^^~1~^~A~^^^1^0.006^0.028^^^^^~04/01/2013~ -~28288~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~626~^0.021^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~628~^0.014^2^^~1~^~A~^^^1^0.006^0.022^^^^^~04/01/2013~ -~28288~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~645~^2.658^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~646~^1.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~652~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2013~ -~28288~^~653~^0.008^2^^~1~^~A~^^^1^0.003^0.012^^^^^~04/01/2013~ -~28288~^~654~^0.008^2^^~1~^~A~^^^1^0.003^0.012^^^^^~04/01/2013~ -~28288~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~663~^0.757^2^^~1~^~A~^^^1^0.179^1.336^^^^^~04/01/2013~ -~28288~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~665~^0.111^2^^~1~^~A~^^^1^0.028^0.194^^^^^~04/01/2013~ -~28288~^~670~^0.005^2^^~1~^~A~^^^1^0.000^0.011^^^^~1~^~04/01/2013~ -~28288~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~672~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~04/01/2013~ -~28288~^~673~^0.021^2^^~1~^~A~^^^1^0.004^0.037^^^^^~04/01/2013~ -~28288~^~674~^1.864^2^^~1~^~A~^^^1^0.514^3.214^^^^^~04/01/2013~ -~28288~^~675~^0.850^2^^~1~^~A~^^^1^0.536^1.164^^^^^~04/01/2013~ -~28288~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~685~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~28288~^~687~^0.003^2^^~1~^~A~^^^1^0.001^0.004^^^^~1~^~04/01/2013~ -~28288~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28288~^~693~^0.757^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~695~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28288~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~851~^0.047^2^^~1~^~A~^^^1^0.031^0.064^^^^^~04/01/2013~ -~28288~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~04/01/2013~ -~28288~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28288~^~856~^0.001^2^^~1~^~A~^^^1^0.000^0.002^^^^~1~^~04/01/2013~ -~28288~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28289~^~312~^0.380^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~315~^0.227^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~404~^0.140^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~405~^0.120^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~406~^1.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~410~^0.141^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~415~^0.050^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~501~^0.029^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~502~^0.079^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~503~^0.097^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~504~^0.186^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~505~^0.103^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~506~^0.049^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~507~^0.039^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~508~^0.118^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~509~^0.082^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~510~^0.116^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~511~^0.149^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~512~^0.058^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~513~^0.090^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~514~^0.153^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~515~^0.697^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~516~^0.083^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~517~^0.244^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~518~^0.133^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~605~^0.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~606~^17.700^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~607~^0.044^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~608~^0.073^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~609~^0.562^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~610~^0.438^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~611~^3.234^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~612~^1.367^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~613~^6.235^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~614~^5.362^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~615~^0.130^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~617~^2.790^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~618~^3.447^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~619~^0.076^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~624~^0.130^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~626~^0.006^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~645~^2.800^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~646~^3.700^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28289~^~652~^0.014^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~653~^0.047^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~654~^0.002^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28289~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~312~^0.585^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~315~^0.682^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~404~^0.140^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~405~^0.090^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~406~^4.500^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~410~^0.484^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~415~^0.102^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~501~^0.082^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~502~^0.271^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~503~^0.285^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~504~^0.529^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~505~^0.278^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~506~^0.105^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~507~^0.113^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~508~^0.415^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~509~^0.316^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~510~^0.337^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~511~^0.875^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~512~^0.200^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~513~^0.313^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~514~^0.898^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~515~^1.820^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~516~^0.458^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~517~^0.434^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~518~^0.398^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~605~^0.270^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~606~^19.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~612~^0.197^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~613~^13.805^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~614~^4.675^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~617~^8.251^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~618~^6.058^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~619~^0.242^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~626~^0.025^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~628~^0.123^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28290~^~645~^8.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28290~^~646~^6.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~312~^0.052^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~404~^0.280^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~405~^0.150^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~406~^1.700^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~415~^0.014^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~501~^0.041^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~502~^0.092^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~503~^0.116^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~504~^0.232^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~505~^0.074^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~506~^0.060^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~507~^0.071^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~508~^0.170^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~509~^0.102^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~510~^0.135^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~511~^0.136^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~512~^0.075^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~513~^0.108^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~514~^0.142^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~515~^1.135^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~516~^0.121^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~517~^0.391^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~518~^0.168^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~605~^0.515^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~606~^16.200^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~607~^0.013^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~608~^0.059^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~609~^0.708^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~610~^0.603^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~611~^8.232^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~612~^2.528^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~613~^1.373^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~614~^2.647^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~617~^2.400^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~618~^4.261^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~619~^0.239^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28291~^~645~^2.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28291~^~646~^4.500^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~312~^0.151^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~404~^0.520^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~405~^0.280^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~406~^3.400^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~415~^0.117^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~501~^0.088^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~502~^0.193^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~503~^0.237^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~504~^0.481^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~505~^0.182^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~506~^0.122^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~507~^0.147^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~508~^0.347^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~509~^0.185^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~510~^0.291^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~511~^0.320^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~512~^0.168^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~513~^0.252^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~514~^0.350^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~515~^2.204^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~516~^0.277^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~517~^0.870^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~518~^0.336^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~605~^0.190^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~606~^3.300^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~613~^2.256^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~614~^0.891^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~615~^0.072^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~617~^4.948^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~618~^10.438^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~619~^1.362^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~624~^0.073^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~628~^0.052^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~645~^5.000^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~646~^11.800^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~ -~28292~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~653~^0.007^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28292~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~28293~^~312~^0.365^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~404~^0.340^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~405~^0.190^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~406~^2.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~415~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~501~^0.053^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~502~^0.130^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~503~^0.145^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~504~^0.259^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~505~^0.137^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~506~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~507~^0.069^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~508~^0.193^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~509~^0.131^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~510~^0.192^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~511~^0.185^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~512~^0.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~513~^0.150^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~514~^0.264^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~515~^1.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~516~^0.155^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~517~^0.333^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~518~^0.185^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~605~^0.490^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~606~^14.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~607~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~612~^0.100^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~613~^9.284^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~614~^5.362^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~617~^2.669^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~618~^4.730^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~619~^0.357^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~626~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28293~^~645~^2.700^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28293~^~646~^5.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~312~^0.267^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~404~^0.290^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~405~^0.190^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~406~^2.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~415~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~501~^0.057^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~502~^0.135^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~503~^0.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~504~^0.295^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~505~^0.131^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~506~^0.070^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~507~^0.084^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~508~^0.218^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~509~^0.141^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~510~^0.200^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~511~^0.195^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~512~^0.092^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~513~^0.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~514~^0.251^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~515~^1.272^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~516~^0.167^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~517~^0.428^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~518~^0.213^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~605~^0.370^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~606~^16.500^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~607~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~610~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~612~^0.252^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~613~^12.324^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~614~^3.889^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~617~^2.582^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~618~^3.386^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~619~^0.213^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~626~^0.018^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28294~^~645~^2.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28294~^~646~^3.600^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~28295~^~312~^0.266^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~404~^0.823^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~405~^0.289^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~406~^4.858^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~415~^0.312^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~501~^0.129^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~502~^0.312^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~503~^0.353^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~504~^0.671^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~505~^0.370^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~506~^0.163^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~507~^0.187^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~508~^0.488^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~509~^0.217^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~510~^0.444^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~511~^0.480^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~512~^0.255^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~513~^0.400^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~514~^0.626^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~515~^2.871^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~516~^0.429^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~517~^1.307^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~518~^0.462^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~606~^4.878^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28295~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~611~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~612~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~613~^2.556^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~614~^2.197^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~617~^2.986^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~618~^0.959^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~619~^0.033^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~626~^0.068^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~628~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~645~^3.062^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~646~^0.992^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28295~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~312~^0.243^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~404~^0.276^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~405~^0.296^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~406~^2.102^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~410~^0.452^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~415~^0.046^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~606~^5.570^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28296~^~607~^0.129^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~608~^0.067^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~609~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~610~^0.103^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~611~^0.108^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~612~^0.351^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~613~^3.203^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~614~^1.435^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~615~^0.047^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~617~^3.417^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~618~^2.611^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~619~^0.380^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~620~^0.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~621~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~624~^0.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~625~^0.006^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~626~^0.058^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~627~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~628~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~645~^3.517^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~646~^3.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~652~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~653~^0.030^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~672~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28296~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~312~^0.067^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~404~^0.302^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~405~^0.301^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~406~^2.199^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~410~^0.523^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~415~^0.048^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~606~^3.713^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28297~^~607~^0.044^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~608~^0.013^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~609~^0.016^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~610~^0.037^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~611~^0.041^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~612~^0.161^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~613~^2.428^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~614~^0.887^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~615~^0.030^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~617~^3.307^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~618~^2.779^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~619~^0.344^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~620~^0.037^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~621~^0.009^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~624~^0.018^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~625~^0.008^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~626~^0.060^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~627~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~628~^0.031^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~645~^3.406^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~646~^3.179^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~652~^0.016^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~653~^0.016^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~ -~28297~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~672~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28297~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~312~^0.178^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~404~^0.178^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~405~^0.247^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~406~^1.441^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~415~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~606~^2.766^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28298~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~612~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~613~^1.350^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~614~^1.386^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~615~^0.013^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~617~^3.383^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~618~^2.197^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~619~^0.384^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~624~^0.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~626~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~628~^0.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~645~^3.432^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~646~^2.581^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28298~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~312~^0.188^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~404~^0.290^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~405~^0.204^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~406~^2.235^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~410~^0.169^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~415~^0.020^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~606~^2.941^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28299~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~612~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~613~^2.004^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~614~^0.793^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~615~^0.073^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~617~^4.587^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~618~^3.014^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~619~^0.411^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~624~^0.031^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~626~^0.032^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~628~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~630~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~645~^4.660^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~646~^3.425^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~28299~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~654~^0.021^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~ -~28299~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28299~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~312~^0.137^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~315~^0.824^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~404~^0.236^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~405~^0.111^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~406~^1.146^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~410~^0.288^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~415~^0.046^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~606~^5.226^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28300~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~612~^0.084^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~613~^4.091^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~614~^1.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~617~^4.496^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~618~^6.991^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~619~^0.441^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~626~^0.034^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~645~^4.530^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~646~^7.434^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28300~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~312~^0.199^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~404~^0.340^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~405~^0.222^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~406~^5.538^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~415~^0.112^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~606~^8.621^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28301~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~611~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~612~^0.061^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~613~^5.927^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~614~^1.843^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~615~^0.199^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~617~^7.565^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~618~^10.494^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~619~^0.992^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~624~^0.354^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~626~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~628~^0.145^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~645~^7.735^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~646~^11.486^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~653~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~654~^0.090^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28301~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~312~^0.197^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~404~^0.453^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~405~^0.236^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~406~^3.818^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~415~^0.158^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28302~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~617~^1.701^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~618~^3.157^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~619~^0.210^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~626~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~645~^1.718^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~646~^3.367^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28302~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~312~^0.231^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~404~^0.289^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~405~^0.545^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~406~^5.130^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~415~^0.203^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~606~^3.206^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~607~^0.133^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~608~^0.068^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~609~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~610~^0.077^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~611~^0.069^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~612~^0.426^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~613~^1.634^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~614~^0.615^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~615~^0.012^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~617~^7.319^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~618~^2.789^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~619~^0.417^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~624~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~626~^0.454^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~628~^0.059^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~645~^8.015^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~646~^3.206^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28303~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~653~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28303~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~312~^0.193^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~315~^1.711^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~28304~^~404~^0.429^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~405~^0.486^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~406~^5.714^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~410~^0.371^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~28304~^~415~^0.571^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~606~^0.714^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~609~^0.021^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~610~^0.023^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~611~^0.292^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~612~^0.102^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~613~^0.219^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~614~^0.052^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~615~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~617~^0.705^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~618~^1.296^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~619~^0.133^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~628~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~645~^0.714^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~646~^1.429^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~28304~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28304~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~28305~^~312~^0.093^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~404~^0.357^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~405~^0.243^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~406~^2.857^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~415~^0.039^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~28305~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~617~^0.517^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~618~^0.992^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~619~^0.101^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~620~^0.009^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~621~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~28305~^~645~^0.532^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28305~^~646~^1.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~312~^0.252^2^^~1~^~A~^^^1^0.238^0.266^^^^^~04/01/2013~ -~28306~^~315~^1.251^2^^~1~^~A~^^^1^0.992^1.510^^^^^~04/01/2013~ -~28306~^~404~^0.550^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~405~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~406~^6.780^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~410~^0.580^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~415~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~606~^1.953^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~610~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~612~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~613~^1.645^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~614~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~615~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~617~^1.854^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~618~^1.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~619~^0.132^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~624~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~626~^0.008^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~628~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~645~^1.893^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~646~^1.147^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~654~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~663~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~665~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~670~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~672~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~673~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~674~^1.828^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~675~^1.003^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28306~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28306~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~851~^0.129^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28306~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28306~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~28307~^~312~^0.129^2^^~1~^~A~^^^1^0.121^0.138^^^^^~04/01/2013~ -~28307~^~315~^0.514^2^^~1~^~A~^^^1^0.510^0.518^^^^^~04/01/2013~ -~28307~^~404~^0.780^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~405~^0.510^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~406~^5.840^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~28307~^~410~^0.445^2^^~1~^~A~^^^1^0.430^0.460^^^^^~04/01/2013~ -~28307~^~415~^0.095^2^^~1~^~A~^^^1^0.090^0.100^^^^^~04/01/2013~ -~28307~^~605~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~606~^1.393^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~607~^0.014^2^^~1~^~A~^^^1^0.000^0.027^^^^~1~^~04/01/2013~ -~28307~^~608~^0.009^2^^~1~^~A~^^^1^0.000^0.019^^^^~1~^~04/01/2013~ -~28307~^~609~^0.007^2^^~1~^~A~^^^1^0.000^0.013^^^^~1~^~04/01/2013~ -~28307~^~610~^0.019^2^^~1~^~A~^^^1^0.000^0.037^^^^~1~^~04/01/2013~ -~28307~^~611~^0.021^2^^~1~^~A~^^^1^0.000^0.041^^^^~1~^~04/01/2013~ -~28307~^~612~^0.060^2^^~1~^~A~^^^1^0.007^0.113^^^^^~04/01/2013~ -~28307~^~613~^0.933^2^^~1~^~A~^^^1^0.720^1.146^^^^^~04/01/2013~ -~28307~^~614~^0.274^2^^~1~^~A~^^^1^0.242^0.306^^^^^~04/01/2013~ -~28307~^~615~^0.020^2^^~1~^~A~^^^1^0.013^0.026^^^^^~04/01/2013~ -~28307~^~617~^1.739^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~618~^1.806^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~619~^0.286^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~620~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~28307~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~624~^0.013^2^^~1~^~A~^^^1^0.012^0.014^^^^^~04/01/2013~ -~28307~^~625~^0.006^2^^~1~^~A~^^^1^0.000^0.012^^^^~1~^~04/01/2013~ -~28307~^~626~^0.017^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~628~^0.034^2^^~1~^~A~^^^1^0.021^0.048^^^^^~04/01/2013~ -~28307~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~645~^1.801^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~646~^2.098^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~652~^0.012^2^^~1~^~A~^^^1^0.006^0.017^^^^^~04/01/2013~ -~28307~^~653~^0.006^2^^~1~^~A~^^^1^0.005^0.008^^^^^~04/01/2013~ -~28307~^~654~^0.007^2^^~1~^~A~^^^1^0.005^0.009^^^^^~04/01/2013~ -~28307~^~662~^0.002^2^^~1~^~A~^^^1^0.000^0.005^^^^~1~^~04/01/2013~ -~28307~^~663~^0.029^2^^~1~^~A~^^^1^0.000^0.057^^^^~1~^~04/01/2013~ -~28307~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~665~^0.011^2^^~1~^~A~^^^1^0.008^0.015^^^^^~04/01/2013~ -~28307~^~670~^0.007^2^^~1~^~A~^^^1^0.006^0.009^^^^^~04/01/2013~ -~28307~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~672~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~28307~^~673~^0.015^2^^~1~^~A~^^^1^0.009^0.021^^^^^~04/01/2013~ -~28307~^~674~^1.710^2^^~1~^~A~^^^1^0.891^2.530^^^^^~04/01/2013~ -~28307~^~675~^1.787^2^^~1~^~A~^^^1^1.251^2.323^^^^^~04/01/2013~ -~28307~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~685~^0.010^2^^~1~^~A~^^^1^0.008^0.012^^^^^~04/01/2013~ -~28307~^~687~^0.004^2^^~1~^~A~^^^1^0.003^0.005^^^^^~04/01/2013~ -~28307~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~28307~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~28307~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~851~^0.276^2^^~1~^~A~^^^1^0.270^0.283^^^^^~04/01/2013~ -~28307~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28307~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~28308~^~312~^0.197^5^0.002^~1~^~A~^^^1^0.193^0.204^4^0.191^0.202^~2, 3~^~05/01/2014~ -~28308~^~315~^0.916^5^0.009^~1~^~A~^^^1^0.892^0.947^4^0.890^0.942^~2, 3~^~05/01/2014~ -~28308~^~404~^0.320^3^0.065^~1~^~A~^^^1^0.190^0.390^2^0.040^0.600^~2, 3~^~05/01/2014~ -~28308~^~405~^0.243^3^0.013^~1~^~A~^^^1^0.230^0.270^2^0.186^0.301^~2, 3~^~05/01/2014~ -~28308~^~406~^4.453^3^0.105^~1~^~A~^^^1^4.260^4.620^2^4.003^4.904^~2, 3~^~05/01/2014~ -~28308~^~410~^0.475^2^^~1~^~A~^^^1^0.460^0.490^1^^^^~05/01/2014~ -~28308~^~415~^0.180^3^0.015^~1~^~A~^^^1^0.150^0.200^2^0.114^0.246^~2, 3~^~05/01/2014~ -~28308~^~605~^0.607^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~606~^4.345^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~612~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.040^2^0.036^0.041^~2, 3~^~05/01/2014~ -~28308~^~613~^2.187^3^0.043^~1~^~A~^^^1^2.130^2.272^2^2.001^2.373^~2, 3~^~05/01/2014~ -~28308~^~614~^1.958^3^0.129^~1~^~A~^^^1^1.756^2.197^2^1.404^2.512^~2, 3~^~05/01/2014~ -~28308~^~615~^0.062^3^0.002^~1~^~A~^^^1^0.059^0.066^2^0.054^0.071^~2, 3~^~05/01/2014~ -~28308~^~617~^4.474^3^0.057^~1~^~AS~^^^1^4.389^4.582^2^4.229^4.719^~2, 3~^~05/01/2014~ -~28308~^~618~^7.037^3^0.203^~1~^~AS~^^^1^6.731^7.421^2^6.163^7.910^~2, 3~^~05/01/2014~ -~28308~^~619~^0.892^3^0.027^~1~^~AS~^^^1^0.854^0.944^2^0.777^1.008^~2, 3~^~05/01/2014~ -~28308~^~620~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~05/01/2014~ -~28308~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~624~^0.052^3^0.002^~1~^~A~^^^1^0.049^0.055^2^0.045^0.060^~2, 3~^~05/01/2014~ -~28308~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~626~^0.016^3^0.001^~1~^~AS~^^^1^0.014^0.017^2^0.012^0.020^~2, 3~^~05/01/2014~ -~28308~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~628~^0.039^3^0.002^~1~^~A~^^^1^0.036^0.043^2^0.030^0.048^~2, 3~^~05/01/2014~ -~28308~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~28308~^~630~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~05/01/2014~ -~28308~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~645~^4.540^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~646~^7.942^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2014~ -~28308~^~653~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.015^0.023^~2, 3~^~05/01/2014~ -~28308~^~654~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~05/01/2014~ -~28308~^~662~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2014~ -~28308~^~663~^0.571^3^0.026^~1~^~A~^^^1^0.524^0.612^2^0.461^0.680^~2, 3~^~05/01/2014~ -~28308~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~665~^0.035^3^0.001^~1~^~A~^^^1^0.034^0.036^2^0.033^0.037^~2, 3~^~05/01/2014~ -~28308~^~670~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~05/01/2014~ -~28308~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2014~ -~28308~^~673~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~05/01/2014~ -~28308~^~674~^3.903^3^0.082^~1~^~A~^^^1^3.777^4.058^2^3.549^4.258^~2, 3~^~05/01/2014~ -~28308~^~675~^6.991^3^0.203^~1~^~A~^^^1^6.685^7.374^2^6.119^7.863^~2, 3~^~05/01/2014~ -~28308~^~676~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~05/01/2014~ -~28308~^~685~^0.032^3^0.001^~1~^~A~^^^1^0.030^0.034^2^0.026^0.037^~2, 3~^~05/01/2014~ -~28308~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~05/01/2014~ -~28308~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~05/01/2014~ -~28308~^~693~^0.572^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28308~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~851~^0.861^3^0.026^~1~^~A~^^^1^0.823^0.910^2^0.750^0.972^~2, 3~^~05/01/2014~ -~28308~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28308~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~28309~^~312~^0.269^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~404~^0.020^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~405~^0.060^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~406~^0.220^1^^~9~^~MC~^^^^^^^^^^~05/01/2014~ -~28309~^~415~^0.096^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~606~^20.099^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~608~^0.128^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~609~^1.580^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~610~^1.256^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~611~^10.009^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~612~^3.953^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~613~^1.987^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~614~^1.186^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~617~^1.606^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~618~^0.762^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~619~^0.048^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~626~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~ -~28309~^~645~^1.610^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28309~^~646~^0.810^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~28310~^~312~^0.090^12^0.004^~1~^~A~^^^1^0.073^0.126^9^0.081^0.100^~2, 3~^~06/01/2015~ -~28310~^~315~^0.393^12^0.006^~1~^~A~^^^1^0.284^0.555^7^0.377^0.408^~2, 3~^~06/01/2015~ -~28310~^~404~^0.353^6^0.006^~1~^~A~^^^1^0.330^0.370^3^0.333^0.374^~2, 3~^~06/01/2015~ -~28310~^~405~^0.314^6^0.010^~1~^~A~^^^1^0.290^0.340^4^0.286^0.342^~2, 3~^~06/01/2015~ -~28310~^~406~^3.275^6^0.040^~1~^~A~^^^1^2.600^3.880^3^3.140^3.410^~2, 3~^~06/01/2015~ -~28310~^~410~^0.321^4^0.007^~1~^~A~^^^1^0.300^0.340^2^0.289^0.353^~2, 3~^~06/01/2015~ -~28310~^~415~^0.071^6^0.005^~1~^~A~^^^1^0.060^0.090^3^0.054^0.088^~2, 3~^~06/01/2015~ -~28310~^~605~^0.470^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~606~^4.694^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~608~^0.011^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~609~^0.188^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~610~^0.211^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~611~^2.675^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~612~^0.933^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~613~^0.511^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~614~^0.165^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~617~^3.129^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~618~^5.308^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~619~^0.167^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28310~^~645~^3.130^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~646~^6.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28310~^~851~^0.582^6^0.006^~1~^~A~^^^1^0.726^1.005^3^0.866^0.903^~2, 3~^~06/01/2015~ -~28311~^~312~^0.265^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~404~^0.094^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~405~^0.215^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~406~^0.642^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~415~^0.048^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~606~^17.241^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28311~^~607~^0.014^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~608~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~609~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~610~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~612~^0.131^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~613~^10.931^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~614~^6.112^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~617~^4.821^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~618~^3.886^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~619~^0.289^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~626~^0.045^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28311~^~645~^4.866^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28311~^~646~^4.176^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~312~^0.165^11^0.012^~1~^~A~^^^1^0.040^0.241^8^0.136^0.193^~2, 3~^~06/01/2015~ -~28312~^~315~^1.232^11^0.086^~1~^~A~^^^1^0.356^1.920^8^1.035^1.430^~2, 3~^~06/01/2015~ -~28312~^~404~^0.532^8^0.020^~1~^~A~^^^1^0.400^0.640^4^0.476^0.587^~2, 3~^~06/01/2015~ -~28312~^~405~^0.291^8^0.013^~1~^~A~^^^1^0.180^0.350^5^0.258^0.324^~2, 3~^~06/01/2015~ -~28312~^~406~^4.779^8^0.143^~1~^~A~^^^1^4.030^5.220^6^4.428^5.130^~2, 3~^~06/01/2015~ -~28312~^~410~^0.658^5^0.010^~1~^~A~^^^1^0.610^0.740^3^0.626^0.690^~2, 3~^~06/01/2015~ -~28312~^~415~^0.127^6^0.008^~1~^~A~^^^1^0.110^0.160^5^0.106^0.147^~2, 3~^~06/01/2015~ -~28312~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~606~^0.746^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~607~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~608~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~609~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~610~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~611~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.001^0.004^~1, 2, 3~^~06/01/2015~ -~28312~^~612~^0.007^5^0.001^~1~^~A~^^^1^0.006^0.011^3^0.006^0.011^~2, 3~^~06/01/2015~ -~28312~^~613~^0.495^5^0.036^~1~^~A~^^^1^0.461^0.655^3^0.457^0.685^~2, 3~^~06/01/2015~ -~28312~^~614~^0.213^5^0.016^~1~^~A~^^^1^0.206^0.294^3^0.196^0.295^~2, 3~^~06/01/2015~ -~28312~^~615~^0.009^5^0.001^~1~^~A~^^^1^0.008^0.013^3^0.008^0.013^~2, 3~^~06/01/2015~ -~28312~^~617~^0.678^5^0.065^~1~^~AS~^^^1^0.607^0.994^3^0.576^0.989^~2, 3~^~06/01/2015~ -~28312~^~618~^1.609^5^0.139^~1~^~AS~^^^1^1.436^2.278^3^1.412^2.299^~2, 3~^~06/01/2015~ -~28312~^~619~^0.185^5^0.023^~1~^~AS~^^^1^0.148^0.287^3^0.140^0.286^~2, 3~^~06/01/2015~ -~28312~^~620~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~624~^0.009^5^0.001^~1~^~A~^^^1^0.008^0.013^3^0.008^0.013^~2, 3~^~06/01/2015~ -~28312~^~625~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~626~^0.018^5^0.001^~1~^~AS~^^^1^0.019^0.023^3^0.018^0.023^~2, 3~^~06/01/2015~ -~28312~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~628~^0.015^5^0.000^~1~^~A~^^^1^0.016^0.019^3^0.016^0.019^~2, 3~^~06/01/2015~ -~28312~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~28312~^~631~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~645~^0.713^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~646~^1.796^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~652~^0.003^5^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~28312~^~653~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~06/01/2015~ -~28312~^~654~^0.004^5^0.000^~1~^~A~^^^1^0.004^0.006^3^0.004^0.006^~2, 3~^~06/01/2015~ -~28312~^~662~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~663~^0.014^5^0.003^~1~^~A~^^^1^0.005^0.021^3^0.006^0.025^~2, 3~^~06/01/2015~ -~28312~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~665~^0.005^5^0.000^~1~^~A~^^^1^0.005^0.006^3^0.005^0.006^~2, 3~^~06/01/2015~ -~28312~^~670~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~06/01/2015~ -~28312~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~672~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.003^3^0.002^0.003^~1, 2, 3~^~06/01/2015~ -~28312~^~673~^0.018^5^0.001^~1~^~A~^^^1^0.019^0.023^3^0.018^0.023^~2, 3~^~06/01/2015~ -~28312~^~674~^0.665^5^0.064^~1~^~A~^^^1^0.590^0.973^3^0.563^0.970^~2, 3~^~06/01/2015~ -~28312~^~675~^1.604^5^0.139^~1~^~A~^^^1^1.430^2.272^3^1.406^2.293^~2, 3~^~06/01/2015~ -~28312~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~685~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.008^~2, 3~^~06/01/2015~ -~28312~^~687~^0.002^5^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~689~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~28312~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28312~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~851~^0.179^5^0.023^~1~^~A~^^^1^0.143^0.280^3^0.134^0.279^~2, 3~^~06/01/2015~ -~28312~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~853~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28312~^~858~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~312~^0.239^11^0.004^~1~^~A~^^^1^0.174^0.305^9^0.229^0.249^~2, 3~^~06/01/2015~ -~28313~^~315~^2.310^11^0.023^~1~^~A~^^^1^1.840^2.480^9^2.257^2.363^~2, 3~^~06/01/2015~ -~28313~^~404~^0.442^6^0.013^~1~^~A~^^^1^0.410^0.500^5^0.409^0.474^~2, 3~^~06/01/2015~ -~28313~^~405~^0.187^6^0.015^~1~^~A~^^^1^0.160^0.260^5^0.148^0.226^~2, 3~^~06/01/2015~ -~28313~^~406~^4.520^6^0.214^~1~^~A~^^^1^3.980^5.420^5^3.969^5.071^~2, 3~^~06/01/2015~ -~28313~^~410~^0.843^3^0.043^~1~^~A~^^^1^0.760^0.900^2^0.660^1.026^~2, 3~^~06/01/2015~ -~28313~^~415~^0.194^5^0.011^~1~^~A~^^^1^0.160^0.230^4^0.163^0.225^~2, 3~^~06/01/2015~ -~28313~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~606~^0.921^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~607~^0.004^4^0.004^~1~^~A~^^^1^0.000^0.016^3^-0.009^0.017^~1, 2, 3~^~06/01/2015~ -~28313~^~608~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.004^0.007^~1, 2, 3~^~06/01/2015~ -~28313~^~609~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~06/01/2015~ -~28313~^~610~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.007^0.014^~1, 2, 3~^~06/01/2015~ -~28313~^~611~^0.005^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.005^0.014^~1, 2, 3~^~06/01/2015~ -~28313~^~612~^0.017^4^0.009^~1~^~A~^^^1^0.006^0.045^3^-0.013^0.047^~2, 3~^~06/01/2015~ -~28313~^~613~^0.542^4^0.021^~1~^~A~^^^1^0.515^0.603^3^0.476^0.607^~2, 3~^~06/01/2015~ -~28313~^~614~^0.314^4^0.039^~1~^~A~^^^1^0.232^0.384^3^0.190^0.438^~2, 3~^~06/01/2015~ -~28313~^~615~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~2, 3~^~06/01/2015~ -~28313~^~617~^0.677^4^0.043^~1~^~AS~^^^1^0.614^0.802^3^0.541^0.813^~2, 3~^~06/01/2015~ -~28313~^~618~^1.601^4^0.041^~1~^~AS~^^^1^1.522^1.698^3^1.471^1.731^~2, 3~^~06/01/2015~ -~28313~^~619~^0.173^4^0.010^~1~^~AS~^^^1^0.153^0.198^3^0.143^0.203^~2, 3~^~06/01/2015~ -~28313~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~624~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~2, 3~^~06/01/2015~ -~28313~^~625~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~06/01/2015~ -~28313~^~626~^0.021^4^0.002^~1~^~AS~^^^1^0.017^0.027^3^0.014^0.028^~2, 3~^~06/01/2015~ -~28313~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~628~^0.016^4^0.001^~1~^~A~^^^1^0.015^0.017^3^0.014^0.017^~2, 3~^~06/01/2015~ -~28313~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^-0.001^0.001^~2, 3~^~06/01/2015~ -~28313~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~645~^0.717^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~646~^1.776^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~652~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.008^3^0.001^0.008^~2, 3~^~06/01/2015~ -~28313~^~653~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.007^~2, 3~^~06/01/2015~ -~28313~^~654~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~06/01/2015~ -~28313~^~662~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~28313~^~663~^0.017^4^0.005^~1~^~A~^^^1^0.010^0.033^3^0.000^0.034^~2, 3~^~06/01/2015~ -~28313~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~665~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.002^0.008^~2, 3~^~06/01/2015~ -~28313~^~670~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~28313~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~672~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~06/01/2015~ -~28313~^~673~^0.020^4^0.002^~1~^~A~^^^1^0.017^0.025^3^0.014^0.026^~2, 3~^~06/01/2015~ -~28313~^~674~^0.660^4^0.037^~1~^~A~^^^1^0.604^0.769^3^0.542^0.779^~2, 3~^~06/01/2015~ -~28313~^~675~^1.596^4^0.040^~1~^~A~^^^1^1.518^1.688^3^1.469^1.722^~2, 3~^~06/01/2015~ -~28313~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~28313~^~685~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.008^3^0.002^0.008^~2, 3~^~06/01/2015~ -~28313~^~687~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~1, 2, 3~^~06/01/2015~ -~28313~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~28313~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28313~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~851~^0.168^4^0.009^~1~^~A~^^^1^0.149^0.190^3^0.140^0.196^~2, 3~^~06/01/2015~ -~28313~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28313~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28314~^~312~^0.130^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~404~^0.454^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~405~^0.302^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~406~^4.683^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~410~^0.372^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~415~^0.073^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~606~^2.778^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~611~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~612~^0.019^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~613~^1.502^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~614~^0.962^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~615~^0.075^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~617~^5.467^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~618~^6.656^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~619~^0.060^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~620~^0.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~624~^0.139^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~626~^0.009^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~628~^0.046^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~630~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~645~^5.556^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~646~^6.944^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28314~^~652~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~653~^0.011^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~654~^0.051^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~672~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~689~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28314~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28315~^~312~^0.064^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~404~^0.317^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~405~^0.120^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~406~^2.822^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~415~^0.027^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~618~^3.123^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~619~^0.404^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~645~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~646~^3.527^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28315~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28315~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~312~^0.208^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~404~^0.233^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~405~^0.079^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~406~^2.330^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~415~^0.193^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28316~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28316~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28316~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28317~^~312~^0.226^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~404~^0.203^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~405~^0.086^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~406~^2.532^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~415~^0.210^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~605~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~606~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~611~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~612~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~613~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~614~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~615~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~617~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~618~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~619~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~620~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~621~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~624~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~625~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~626~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~627~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~628~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~629~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~630~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~631~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~645~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~646~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~652~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~653~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~671~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~672~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~687~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~689~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~857~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28317~^~858~^0.000^0^^~4~^~RA~^^^^^^^^^^~04/01/2015~ -~28318~^~312~^0.188^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~404~^0.522^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~405~^0.252^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~406~^3.902^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~415~^0.160^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28318~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~617~^0.152^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~618~^0.541^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~619~^0.035^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~626~^0.024^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~645~^0.180^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~646~^0.576^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28318~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28318~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~312~^0.157^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~404~^0.698^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~405~^0.395^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~406~^4.651^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~415~^0.145^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28319~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~645~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~646~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~28319~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28319~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~312~^0.164^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~404~^0.263^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~405~^0.179^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~406~^2.105^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~415~^0.056^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~645~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~646~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~28320~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28320~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~28321~^~312~^0.179^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~315~^0.926^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~404~^0.523^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~405~^0.316^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~406~^4.651^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~415~^0.104^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~606~^1.163^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28321~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~613~^0.680^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~614~^0.247^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~615~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~617~^0.508^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~618~^1.086^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~619~^0.135^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~624~^0.018^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~626~^0.051^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~645~^0.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~646~^1.221^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28321~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28321~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~312~^0.236^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~315~^1.790^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~404~^0.422^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~405~^0.253^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~406~^4.265^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~410~^0.518^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~415~^0.180^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~ -~28322~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~617~^0.307^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~618~^0.549^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~619~^0.150^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~626~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~645~^0.314^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~646~^0.700^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~ -~28322~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28322~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~ -~28324~^~312~^0.284^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~404~^0.395^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~405~^0.895^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~406~^7.895^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~415~^0.114^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28324~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~617~^0.056^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~618~^0.241^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~619~^0.018^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28324~^~645~^0.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28324~^~646~^0.259^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~312~^0.307^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~404~^0.373^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~405~^0.127^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~406~^3.723^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~415~^0.305^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28325~^~606~^3.226^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~613~^2.270^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~614~^0.818^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~615~^0.065^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~617~^3.238^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~618~^7.651^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~619~^0.969^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~624~^0.066^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~628~^0.038^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~645~^3.276^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~646~^8.619^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28325~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~653~^0.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28325~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~312~^0.309^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~404~^0.334^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~405~^0.232^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~406~^6.277^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~415~^0.220^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28326~^~606~^4.525^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~612~^0.009^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~613~^2.594^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~614~^0.799^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~615~^0.319^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~617~^9.526^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~618~^4.013^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~619~^0.478^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~620~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~624~^0.518^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~626~^0.022^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~628~^0.214^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~630~^0.011^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~645~^9.779^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~646~^4.497^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28326~^~652~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~653~^0.016^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~654~^0.266^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~687~^0.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~689~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28326~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~312~^0.133^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~404~^0.111^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~405~^0.037^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~406~^1.154^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~415~^0.041^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28327~^~606~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~617~^4.043^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~618~^2.353^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~619~^0.104^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28327~^~645~^4.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28327~^~646~^2.457^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~312~^0.211^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~404~^0.246^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~405~^0.166^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~406~^1.831^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~415~^0.019^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28328~^~606~^5.882^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~612~^0.065^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~613~^3.819^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~614~^1.952^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~615~^0.036^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~617~^4.474^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~618~^6.019^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~619~^0.372^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~624~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~626~^0.031^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~645~^4.504^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~646~^6.393^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28328~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~653~^0.007^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28328~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~312~^0.180^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~404~^0.347^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~405~^0.401^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~406~^3.539^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~415~^0.328^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~606~^11.290^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28329~^~607~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~608~^0.015^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~609~^0.242^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~610~^0.269^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~611~^3.404^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~612~^1.286^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~613~^5.030^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~614~^1.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~617~^3.935^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~618~^2.859^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~619~^0.154^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~626~^0.026^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~628~^0.005^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~645~^3.966^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~646~^3.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28329~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28329~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~312~^0.432^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~404~^0.682^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~405~^0.773^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~406~^5.455^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~415~^0.909^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~606~^11.364^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28330~^~607~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~608~^0.017^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~609~^0.270^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~610~^0.303^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~611~^3.849^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~612~^1.356^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~613~^2.873^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~614~^2.581^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~615~^0.045^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~617~^4.189^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~618~^1.626^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~619~^0.147^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~626~^0.011^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~628~^0.008^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~645~^4.207^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~646~^1.773^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28330~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~653~^0.008^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28330~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28331~^~312~^0.134^19^0.003^~1~^~A~^^^1^0.100^0.186^5^0.125^0.142^~2, 3~^~06/01/2015~ -~28331~^~315~^0.565^19^0.012^~1~^~A~^^^1^0.453^0.694^11^0.538^0.592^~2, 3~^~06/01/2015~ -~28331~^~404~^0.813^9^0.010^~1~^~A~^^^1^0.740^0.870^3^0.781^0.845^~2, 3~^~06/01/2015~ -~28331~^~405~^0.514^9^0.012^~1~^~A~^^^1^0.400^0.590^4^0.479^0.548^~2, 3~^~06/01/2015~ -~28331~^~406~^6.408^9^0.192^~1~^~A~^^^1^5.360^7.710^4^5.859^6.957^~2, 3~^~06/01/2015~ -~28331~^~410~^0.662^6^0.016^~1~^~A~^^^1^0.570^0.750^1^0.483^0.841^~2, 3~^~06/01/2015~ -~28331~^~415~^0.085^5^0.002^~1~^~A~^^^1^0.050^0.130^2^0.076^0.095^~2, 3~^~06/01/2015~ -~28331~^~605~^0.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~606~^2.059^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~607~^0.026^5^0.000^~1~^~A~^^^1^0.000^0.050^1^0.025^0.028^~1, 2, 3~^~06/01/2015~ -~28331~^~608~^0.021^5^0.000^~1~^~A~^^^1^0.000^0.041^1^0.019^0.022^~1, 2, 3~^~06/01/2015~ -~28331~^~609~^0.012^5^0.000^~1~^~A~^^^1^0.000^0.025^1^0.011^0.014^~1, 2, 3~^~06/01/2015~ -~28331~^~610~^0.034^5^0.000^~1~^~A~^^^1^0.000^0.067^1^0.029^0.039^~1, 2, 3~^~06/01/2015~ -~28331~^~611~^0.041^5^0.000^~1~^~A~^^^1^0.002^0.078^1^0.038^0.043^~1, 2, 3~^~06/01/2015~ -~28331~^~612~^0.137^5^0.001^~1~^~A~^^^1^0.012^0.256^1^0.128^0.146^~2, 3~^~06/01/2015~ -~28331~^~613~^1.125^5^0.009^~1~^~A~^^^1^0.814^1.375^1^1.030^1.221^~2, 3~^~06/01/2015~ -~28331~^~614~^0.454^5^0.004^~1~^~A~^^^1^0.359^0.520^1^0.402^0.506^~2, 3~^~06/01/2015~ -~28331~^~615~^0.099^5^0.001^~1~^~A~^^^1^0.086^0.110^1^0.089^0.108^~2, 3~^~06/01/2015~ -~28331~^~617~^10.030^5^0.086^~1~^~AS~^^^1^8.909^10.965^2^9.590^10.470^~2, 3~^~06/01/2015~ -~28331~^~618~^3.479^5^0.032^~1~^~AS~^^^1^3.034^3.969^1^3.106^3.852^~2, 3~^~06/01/2015~ -~28331~^~619~^0.421^5^0.006^~1~^~AS~^^^1^0.376^0.477^2^0.383^0.460^~2, 3~^~06/01/2015~ -~28331~^~620~^0.002^5^0.000^~1~^~A~^^^1^0.000^0.004^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~624~^0.048^5^0.000^~1~^~A~^^^1^0.040^0.055^1^0.045^0.051^~2, 3~^~06/01/2015~ -~28331~^~625~^0.013^5^0.000^~1~^~A~^^^1^0.000^0.026^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~626~^0.076^5^0.000^~1~^~AS~^^^1^0.054^0.094^2^0.074^0.078^~2, 3~^~06/01/2015~ -~28331~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~628~^0.185^5^0.003^~1~^~A~^^^1^0.158^0.209^2^0.174^0.196^~2, 3~^~06/01/2015~ -~28331~^~629~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~630~^0.005^5^0.000^~1~^~AS~^^^1^0.004^0.005^1^0.003^0.006^~2, 3~^~06/01/2015~ -~28331~^~631~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.003^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~645~^10.342^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~646~^3.917^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~652~^0.017^5^0.000^~1~^~A~^^^1^0.005^0.028^1^0.012^0.022^~2, 3~^~06/01/2015~ -~28331~^~653~^0.015^5^0.000^~1~^~A~^^^1^0.008^0.022^^^^~2, 3~^~06/01/2015~ -~28331~^~654~^0.029^5^0.000^~1~^~A~^^^1^0.026^0.032^^^^~2, 3~^~06/01/2015~ -~28331~^~662~^0.004^5^0.000^~1~^~A~^^^1^0.000^0.008^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~663~^0.035^5^0.001^~1~^~A~^^^1^0.013^0.053^1^0.028^0.041^~2, 3~^~06/01/2015~ -~28331~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~665~^0.020^5^0.000^~1~^~A~^^^1^0.016^0.023^1^0.018^0.022^~2, 3~^~06/01/2015~ -~28331~^~670~^0.012^5^0.000^~1~^~A~^^^1^0.008^0.017^^^^~2, 3~^~06/01/2015~ -~28331~^~671~^0.022^5^0.001^~1~^~A~^^^1^0.019^0.025^1^0.016^0.028^~2, 3~^~06/01/2015~ -~28331~^~672~^0.010^5^0.000^~1~^~A~^^^1^0.009^0.011^1^0.008^0.012^~2, 3~^~06/01/2015~ -~28331~^~673~^0.072^5^0.000^~1~^~A~^^^1^0.054^0.086^2^0.070^0.074^~2, 3~^~06/01/2015~ -~28331~^~674~^9.995^5^0.085^~1~^~A~^^^1^8.856^10.927^2^9.561^10.430^~2, 3~^~06/01/2015~ -~28331~^~675~^3.447^5^0.032^~1~^~A~^^^1^2.994^3.944^1^3.076^3.817^~2, 3~^~06/01/2015~ -~28331~^~676~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.005^1^0.003^0.006^~2, 3~^~06/01/2015~ -~28331~^~685~^0.018^5^0.001^~1~^~A~^^^1^0.014^0.023^1^0.011^0.025^~2, 3~^~06/01/2015~ -~28331~^~687~^0.011^5^0.000^~1~^~A~^^^1^0.009^0.012^^^^~2, 3~^~06/01/2015~ -~28331~^~689~^0.001^5^0.000^~1~^~AS~^^^1^0.000^0.002^^^^~2, 3~^~06/01/2015~ -~28331~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28331~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~851~^0.403^5^0.005^~1~^~A~^^^1^0.362^0.456^2^0.371^0.436^~2, 3~^~06/01/2015~ -~28331~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~853~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~856~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28331~^~858~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28332~^~312~^0.261^3^0.005^~1~^~A~^^^1^0.252^0.267^2^0.241^0.281^~2, 3~^~06/01/2015~ -~28332~^~315~^0.515^3^0.021^~1~^~A~^^^1^0.481^0.554^2^0.423^0.606^~2, 3~^~06/01/2015~ -~28332~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~06/01/2015~ -~28332~^~405~^0.076^2^^~1~^~A~^^^1^0.073^0.079^1^^^^~06/01/2015~ -~28332~^~406~^0.390^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28332~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28332~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~605~^0.099^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~606~^7.905^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~609~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~06/01/2015~ -~28332~^~610~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~06/01/2015~ -~28332~^~611~^0.030^2^^~1~^~A~^^^1^0.025^0.034^1^^^^~06/01/2015~ -~28332~^~612~^0.155^2^^~1~^~A~^^^1^0.153^0.158^1^^^^~06/01/2015~ -~28332~^~613~^6.650^2^^~1~^~A~^^^1^6.603^6.696^1^^^^~06/01/2015~ -~28332~^~614~^0.950^2^^~1~^~A~^^^1^0.934^0.966^1^^^^~06/01/2015~ -~28332~^~615~^0.063^2^^~1~^~A~^^^1^0.063^0.063^^^^^~06/01/2015~ -~28332~^~617~^6.082^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~618~^1.746^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~06/01/2015~ -~28332~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~624~^0.014^2^^~1~^~A~^^^1^0.014^0.014^^^^^~06/01/2015~ -~28332~^~625~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2015~ -~28332~^~626~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~628~^0.029^2^^~1~^~A~^^^1^0.029^0.030^1^^^^~06/01/2015~ -~28332~^~629~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28332~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~645~^6.142^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~646~^1.807^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~652~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~06/01/2015~ -~28332~^~653~^0.017^2^^~1~^~A~^^^1^0.016^0.017^1^^^^~06/01/2015~ -~28332~^~654~^0.014^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~06/01/2015~ -~28332~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~663~^0.061^2^^~1~^~A~^^^1^0.047^0.076^1^^^^~06/01/2015~ -~28332~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~665~^0.038^2^^~1~^~A~^^^1^0.038^0.038^^^^^~06/01/2015~ -~28332~^~670~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~06/01/2015~ -~28332~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~673~^0.025^2^^~1~^~A~^^^1^0.024^0.025^1^^^^~06/01/2015~ -~28332~^~674~^6.020^2^^~1~^~A~^^^1^5.995^6.046^1^^^^~06/01/2015~ -~28332~^~675~^1.702^2^^~1~^~A~^^^1^1.690^1.714^1^^^^~06/01/2015~ -~28332~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~685~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~06/01/2015~ -~28332~^~687~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~06/01/2015~ -~28332~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28332~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28332~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~851~^0.048^2^^~1~^~A~^^^1^0.047^0.050^1^^^^~06/01/2015~ -~28332~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28332~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28333~^~312~^0.259^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~315~^0.411^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~410~^0.430^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~605~^0.102^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~606~^15.299^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~607~^0.061^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~608~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~609~^0.039^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~610~^0.081^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~611~^0.160^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~612~^0.426^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~613~^9.155^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~614~^5.000^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~615~^0.180^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~617~^9.279^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~618~^2.134^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~619~^0.124^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~620~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~624~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~627~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~628~^0.039^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~631~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~645~^9.462^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~646~^2.274^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~652~^0.038^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~653~^0.053^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~654~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~663~^0.056^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~665~^0.038^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~673~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~674~^9.223^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~675~^2.082^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~676~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~685~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28333~^~693~^0.064^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28333~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~851~^0.115^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28333~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28333~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28334~^~315~^0.019^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~06/01/2015~ -~28334~^~404~^0.045^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~06/01/2015~ -~28334~^~405~^0.074^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~406~^0.065^2^^~1~^~A~^^^1^0.040^0.090^1^^^^~06/01/2015~ -~28334~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~605~^0.043^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~606~^10.501^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~611~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~612~^0.227^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~613~^9.124^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~614~^0.939^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~615~^0.077^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~617~^8.230^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~618~^2.557^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~619~^0.098^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~624~^0.019^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~626~^0.030^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~628~^0.043^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~645~^8.312^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~646~^2.670^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~653~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~665~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~670~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~673~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~674~^8.216^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~675~^2.522^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28334~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28334~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~851~^0.088^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~852~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28334~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28334~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28335~^~312~^0.045^2^^~1~^~A~^^^1^0.028^0.062^1^^^^~06/01/2015~ -~28335~^~315~^0.226^2^^~1~^~A~^^^1^0.206^0.247^1^^^^~06/01/2015~ -~28335~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~606~^7.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~609~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~06/01/2015~ -~28335~^~610~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28335~^~611~^0.026^2^^~1~^~A~^^^1^0.020^0.033^1^^^^~06/01/2015~ -~28335~^~612~^0.136^2^^~1~^~A~^^^1^0.105^0.168^1^^^^~06/01/2015~ -~28335~^~613~^5.972^2^^~1~^~A~^^^1^4.954^6.990^1^^^^~06/01/2015~ -~28335~^~614~^0.717^2^^~1~^~A~^^^1^0.652^0.781^1^^^^~06/01/2015~ -~28335~^~615~^0.080^2^^~1~^~A~^^^1^0.061^0.099^1^^^^~06/01/2015~ -~28335~^~617~^8.112^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~618~^2.412^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~619~^0.430^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~06/01/2015~ -~28335~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~624~^0.025^2^^~1~^~A~^^^1^0.013^0.038^1^^^^~06/01/2015~ -~28335~^~625~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~06/01/2015~ -~28335~^~626~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~628~^0.092^2^^~1~^~A~^^^1^0.030^0.155^1^^^^~06/01/2015~ -~28335~^~629~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28335~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~645~^8.251^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~646~^2.851^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~652~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~06/01/2015~ -~28335~^~653~^0.015^2^^~1~^~A~^^^1^0.013^0.016^1^^^^~06/01/2015~ -~28335~^~654~^0.021^2^^~1~^~A~^^^1^0.015^0.027^1^^^^~06/01/2015~ -~28335~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~663~^0.027^2^^~1~^~A~^^^1^0.014^0.039^1^^^^~06/01/2015~ -~28335~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~665~^0.031^2^^~1~^~A~^^^1^0.022^0.040^1^^^^~06/01/2015~ -~28335~^~670~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~06/01/2015~ -~28335~^~671~^0.007^2^^~1~^~A~^^^1^0.000^0.014^1^^^~1~^~06/01/2015~ -~28335~^~672~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~06/01/2015~ -~28335~^~673~^0.029^2^^~1~^~A~^^^1^0.026^0.032^1^^^^~06/01/2015~ -~28335~^~674~^8.085^2^^~1~^~A~^^^1^6.154^10.017^1^^^^~06/01/2015~ -~28335~^~675~^2.378^2^^~1~^~A~^^^1^1.808^2.948^1^^^^~06/01/2015~ -~28335~^~676~^0.004^2^^~1~^~A~^^^1^0.000^0.007^1^^^~1~^~06/01/2015~ -~28335~^~685~^0.019^2^^~1~^~A~^^^1^0.007^0.031^1^^^^~06/01/2015~ -~28335~^~687~^0.006^2^^~1~^~A~^^^1^0.004^0.008^1^^^^~06/01/2015~ -~28335~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28335~^~693~^0.027^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28335~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~851~^0.411^2^^~1~^~A~^^^1^0.051^0.771^1^^^^~06/01/2015~ -~28335~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28335~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28336~^~312~^0.039^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~315~^0.174^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~606~^0.339^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~613~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~614~^0.200^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~615~^0.058^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~617~^6.730^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~618~^1.623^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~619~^0.583^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~624~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~626~^0.025^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~628~^0.130^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~645~^7.363^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~646~^2.218^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~653~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~654~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~665~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~670~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~671~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~673~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~674~^6.716^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~675~^1.611^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~685~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28336~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28336~^~697~^0.447^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~851~^0.571^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28336~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28336~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28337~^~312~^0.075^3^0.012^~1~^~A~^^^1^0.052^0.088^2^0.025^0.126^~2, 3~^~06/01/2015~ -~28337~^~315~^0.210^3^0.035^~1~^~A~^^^1^0.172^0.279^2^0.061^0.359^~2, 3~^~06/01/2015~ -~28337~^~404~^0.375^2^^~1~^~A~^^^1^0.240^0.510^1^^^^~06/01/2015~ -~28337~^~405~^0.505^2^^~1~^~A~^^^1^0.490^0.520^1^^^^~06/01/2015~ -~28337~^~406~^2.775^2^^~1~^~A~^^^1^2.130^3.420^1^^^^~06/01/2015~ -~28337~^~415~^0.073^2^^~1~^~A~^^^1^0.037^0.110^1^^^~1~^~06/01/2015~ -~28337~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~606~^0.977^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~609~^0.018^2^^~1~^~A~^^^1^0.008^0.029^1^^^^~06/01/2015~ -~28337~^~610~^0.019^2^^~1~^~A~^^^1^0.015^0.024^1^^^^~06/01/2015~ -~28337~^~611~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~06/01/2015~ -~28337~^~612~^0.038^2^^~1~^~A~^^^1^0.038^0.038^^^^^~06/01/2015~ -~28337~^~613~^0.709^2^^~1~^~A~^^^1^0.000^1.417^1^^^^~06/01/2015~ -~28337~^~614~^0.147^2^^~1~^~A~^^^1^0.145^0.149^1^^^^~06/01/2015~ -~28337~^~615~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~06/01/2015~ -~28337~^~617~^1.266^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~618~^0.496^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~620~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~28337~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~624~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~06/01/2015~ -~28337~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~626~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~628~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~06/01/2015~ -~28337~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~28337~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~645~^2.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~646~^0.516^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~652~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~06/01/2015~ -~28337~^~653~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~06/01/2015~ -~28337~^~654~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~06/01/2015~ -~28337~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~663~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~06/01/2015~ -~28337~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~665~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~06/01/2015~ -~28337~^~670~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~06/01/2015~ -~28337~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~673~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~06/01/2015~ -~28337~^~674~^1.262^2^^~1~^~A~^^^1^1.248^1.277^1^^^^~06/01/2015~ -~28337~^~675~^0.488^2^^~1~^~A~^^^1^0.487^0.490^1^^^^~06/01/2015~ -~28337~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~685~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~28337~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~28337~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28337~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28337~^~697~^0.721^2^^~1~^~A~^^^1^0.000^1.442^1^^^~1~^~06/01/2015~ -~28337~^~851~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~06/01/2015~ -~28337~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2015~ -~28337~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28337~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~312~^0.053^3^0.002^~1~^~A~^^^1^0.050^0.057^2^0.045^0.062^~2, 3~^~06/01/2015~ -~28338~^~315~^0.439^3^0.027^~1~^~A~^^^1^0.402^0.492^2^0.322^0.556^~2, 3~^~06/01/2015~ -~28338~^~404~^0.135^2^^~1~^~A~^^^1^0.130^0.140^1^^^^~06/01/2015~ -~28338~^~405~^0.270^2^^~1~^~A~^^^1^0.270^0.270^^^^^~06/01/2015~ -~28338~^~406~^1.405^2^^~1~^~A~^^^1^1.380^1.430^1^^^^~06/01/2015~ -~28338~^~415~^0.095^2^^~1~^~A~^^^1^0.090^0.100^1^^^^~06/01/2015~ -~28338~^~501~^0.080^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~502~^0.230^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~503~^0.250^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~504~^0.460^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~505~^0.350^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~508~^0.320^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~509~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~510~^0.280^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~511~^0.370^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~512~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~513~^0.330^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~514~^0.560^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~515~^0.750^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~516~^0.230^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~517~^0.240^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~518~^0.370^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28338~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28338~^~605~^0.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~606~^0.629^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~611~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~06/01/2015~ -~28338~^~612~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~06/01/2015~ -~28338~^~613~^0.379^2^^~1~^~A~^^^1^0.375^0.383^1^^^^~06/01/2015~ -~28338~^~614~^0.136^2^^~1~^~A~^^^1^0.135^0.137^1^^^^~06/01/2015~ -~28338~^~615~^0.044^2^^~1~^~A~^^^1^0.044^0.045^1^^^^~06/01/2015~ -~28338~^~617~^4.546^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~618~^1.427^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~619~^0.520^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~620~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28338~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~624~^0.024^2^^~1~^~A~^^^1^0.024^0.024^^^^^~06/01/2015~ -~28338~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~628~^0.119^2^^~1~^~A~^^^1^0.119^0.119^^^^^~06/01/2015~ -~28338~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~645~^4.721^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~646~^1.957^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~652~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~06/01/2015~ -~28338~^~653~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~06/01/2015~ -~28338~^~654~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^^~06/01/2015~ -~28338~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~663~^0.013^2^^~1~^~A~^^^1^0.010^0.016^1^^^^~06/01/2015~ -~28338~^~664~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28338~^~665~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~06/01/2015~ -~28338~^~670~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~06/01/2015~ -~28338~^~671~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~06/01/2015~ -~28338~^~672~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~06/01/2015~ -~28338~^~673~^0.028^2^^~1~^~A~^^^1^0.027^0.028^1^^^^~06/01/2015~ -~28338~^~674~^4.533^2^^~1~^~A~^^^1^4.509^4.558^1^^^^~06/01/2015~ -~28338~^~675~^1.415^2^^~1~^~A~^^^1^1.398^1.433^1^^^^~06/01/2015~ -~28338~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~06/01/2015~ -~28338~^~685~^0.035^2^^~1~^~A~^^^1^0.035^0.035^^^^^~06/01/2015~ -~28338~^~687~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~06/01/2015~ -~28338~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28338~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28338~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~851~^0.485^2^^~1~^~A~^^^1^0.477^0.494^1^^^^~06/01/2015~ -~28338~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28338~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28339~^~312~^0.074^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~315~^0.505^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~405~^0.320^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~406~^1.410^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~606~^0.266^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~613~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~614~^0.162^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~615~^0.046^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~617~^4.837^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~618~^1.569^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~619~^0.835^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~620~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~624~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~628~^0.123^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~645~^5.438^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~646~^2.415^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~653~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~663~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~665~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~673~^0.028^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~674~^4.827^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~675~^1.555^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~685~^0.036^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28339~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28339~^~697~^0.428^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~851~^0.799^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28339~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28339~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28340~^~312~^0.083^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~315~^0.800^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28340~^~410~^0.500^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28341~^~312~^0.096^2^^~1~^~A~^^^1^0.094^0.097^1^^^^~06/01/2015~ -~28341~^~315~^0.207^2^^~1~^~A~^^^1^0.204^0.211^1^^^^~06/01/2015~ -~28341~^~404~^0.615^2^^~1~^~A~^^^1^0.590^0.640^1^^^^~06/01/2015~ -~28341~^~405~^0.480^2^^~1~^~A~^^^1^0.470^0.490^1^^^^~06/01/2015~ -~28341~^~406~^3.875^2^^~1~^~A~^^^1^3.850^3.900^1^^^^~06/01/2015~ -~28341~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28341~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~606~^0.215^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~610~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2015~ -~28341~^~611~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2015~ -~28341~^~612~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~06/01/2015~ -~28341~^~613~^0.102^2^^~1~^~A~^^^1^0.000^0.205^1^^^^~06/01/2015~ -~28341~^~614~^0.068^2^^~1~^~A~^^^1^0.067^0.069^1^^^^~06/01/2015~ -~28341~^~615~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~06/01/2015~ -~28341~^~617~^1.230^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~618~^0.611^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~620~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~06/01/2015~ -~28341~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~624~^0.014^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~06/01/2015~ -~28341~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~628~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~06/01/2015~ -~28341~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~28341~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~646~^0.637^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~06/01/2015~ -~28341~^~653~^0.003^2^^~1~^~A~^^^1^0.002^0.005^1^^^~1~^~06/01/2015~ -~28341~^~654~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~06/01/2015~ -~28341~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~663~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~06/01/2015~ -~28341~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~665~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~06/01/2015~ -~28341~^~670~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~06/01/2015~ -~28341~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~673~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~06/01/2015~ -~28341~^~674~^1.225^2^^~1~^~A~^^^1^1.213^1.237^1^^^^~06/01/2015~ -~28341~^~675~^0.607^2^^~1~^~A~^^^1^0.595^0.619^1^^^^~06/01/2015~ -~28341~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~06/01/2015~ -~28341~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~06/01/2015~ -~28341~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28341~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28341~^~697~^0.104^2^^~1~^~A~^^^1^0.000^0.207^1^^^~1~^~06/01/2015~ -~28341~^~851~^0.019^2^^~1~^~A~^^^1^0.019^0.020^1^^^^~06/01/2015~ -~28341~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~06/01/2015~ -~28341~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28341~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~06/01/2015~ -~28342~^~312~^0.111^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~315~^0.671^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~404~^0.250^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28342~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~312~^0.259^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~315~^1.690^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~404~^0.380^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~405~^0.360^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~406~^3.790^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~606~^1.381^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~612~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~613~^0.842^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~614~^0.360^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~615~^0.057^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~617~^5.180^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28343~^~618~^3.148^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28343~^~619~^1.772^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28343~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~624~^0.048^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~626~^0.029^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28343~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~628~^0.115^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~629~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28343~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~645~^5.352^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~646~^4.944^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~654~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~663~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~664~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~665~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~671~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~673~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~674~^5.162^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~675~^3.129^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28343~^~685~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~687~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28343~^~693~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28343~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~851~^1.739^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28343~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28343~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~312~^0.087^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~315~^0.299^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~405~^0.100^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~406~^0.630^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~415~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~605~^0.048^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~606~^5.711^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~611~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~612~^0.109^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~613~^4.934^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~614~^0.554^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~615~^0.044^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~617~^4.823^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~618~^1.327^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~619~^0.034^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~620~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~626~^0.026^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~628~^0.025^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~629~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~645~^4.881^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~646~^1.374^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~653~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~662~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~663~^0.017^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~665~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~670~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~673~^0.024^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~674~^4.806^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~675~^1.292^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~685~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~687~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28344~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28344~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~851~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28344~^~852~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~853~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28344~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~312~^0.549^5^0.013^~1~^~A~^^^1^0.281^0.644^1^0.383^0.715^~2, 3~^~06/01/2015~ -~28345~^~315~^2.451^5^0.048^~1~^~A~^^^1^2.350^2.520^1^1.846^3.056^~2, 3~^~06/01/2015~ -~28345~^~404~^0.208^2^^~1~^~A~^^^1^0.140^0.210^^^^^~06/01/2015~ -~28345~^~405~^0.173^3^^~1~^~A~^^^1^0.150^0.240^^^^~2, 3~^~06/01/2015~ -~28345~^~406~^4.833^3^^~1~^~A~^^^1^4.570^5.410^^^^~2, 3~^~06/01/2015~ -~28345~^~410~^0.839^2^^~1~^~A~^^^1^0.790^0.840^^^^^~06/01/2015~ -~28345~^~415~^0.370^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~606~^2.069^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~613~^1.253^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~614~^0.668^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~615~^0.077^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~617~^6.930^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~618~^5.037^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~619~^0.926^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~624~^0.027^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~626~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~628~^0.041^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~629~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~645~^7.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~646~^5.981^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~653~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~654~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~663~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~665~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~670~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~671~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~673~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~674~^6.922^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~675~^5.026^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28345~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28345~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~851~^0.922^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28345~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28345~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28346~^~312~^0.089^5^0.005^~1~^~A~^^^1^0.071^0.100^4^0.075^0.104^~2, 3~^~06/01/2015~ -~28346~^~315~^0.781^5^0.070^~1~^~A~^^^1^0.596^0.979^4^0.586^0.975^~2, 3~^~06/01/2015~ -~28346~^~404~^0.080^5^0.003^~1~^~A~^^^1^0.070^0.090^4^0.071^0.089^~2, 3~^~06/01/2015~ -~28346~^~405~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~06/01/2015~ -~28346~^~406~^1.803^3^0.139^~1~^~A~^^^1^1.640^2.080^2^1.205^2.402^~2, 3~^~06/01/2015~ -~28346~^~410~^0.480^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28346~^~415~^0.067^2^^~1~^~A~^^^1^0.065^0.070^1^^^^~06/01/2015~ -~28346~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~606~^0.781^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~608~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~28346~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~610~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.018^2^0.002^0.024^~2, 3~^~06/01/2015~ -~28346~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~612~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~06/01/2015~ -~28346~^~613~^0.503^3^0.008^~1~^~A~^^^1^0.495^0.518^2^0.471^0.535^~2, 3~^~06/01/2015~ -~28346~^~614~^0.170^3^0.003^~1~^~A~^^^1^0.164^0.176^2^0.155^0.185^~2, 3~^~06/01/2015~ -~28346~^~615~^0.041^3^0.002^~1~^~A~^^^1^0.037^0.043^2^0.033^0.049^~2, 3~^~06/01/2015~ -~28346~^~617~^4.334^3^0.170^~1~^~AS~^^^1^4.024^4.608^2^3.604^5.063^~2, 3~^~06/01/2015~ -~28346~^~618~^1.594^3^0.041^~1~^~AS~^^^1^1.533^1.672^2^1.418^1.770^~2, 3~^~06/01/2015~ -~28346~^~619~^0.770^3^0.122^~1~^~AS~^^^1^0.639^1.014^2^0.245^1.295^~2, 3~^~06/01/2015~ -~28346~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~28346~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~624~^0.013^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.015^0.042^~1, 2, 3~^~06/01/2015~ -~28346~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~626~^0.014^3^0.000^~1~^~AS~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~06/01/2015~ -~28346~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~628~^0.090^3^0.008^~1~^~A~^^^1^0.075^0.103^2^0.055^0.126^~2, 3~^~06/01/2015~ -~28346~^~629~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~06/01/2015~ -~28346~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2015~ -~28346~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~645~^4.456^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~646~^2.375^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2015~ -~28346~^~653~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~06/01/2015~ -~28346~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~06/01/2015~ -~28346~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~663~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.001^0.010^~2, 3~^~06/01/2015~ -~28346~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~665~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~28346~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~06/01/2015~ -~28346~^~671~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~06/01/2015~ -~28346~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~06/01/2015~ -~28346~^~673~^0.014^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~06/01/2015~ -~28346~^~674~^4.328^3^0.170^~1~^~A~^^^1^4.016^4.603^2^3.594^5.061^~2, 3~^~06/01/2015~ -~28346~^~675~^1.585^3^0.041^~1~^~A~^^^1^1.525^1.663^2^1.410^1.761^~2, 3~^~06/01/2015~ -~28346~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~28346~^~685~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~06/01/2015~ -~28346~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2015~ -~28346~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~06/01/2015~ -~28346~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28346~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~28346~^~851~^0.766^3^0.118^~1~^~A~^^^1^0.639^1.002^2^0.259^1.274^~2, 3~^~06/01/2015~ -~28346~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~28346~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28346~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28347~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~315~^0.925^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~406~^1.550^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~415~^0.075^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~606~^0.480^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~608~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~613~^0.317^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~614~^0.085^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~617~^2.301^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~618~^0.942^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~619~^0.291^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~620~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~628~^0.054^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~645~^2.376^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~646~^1.241^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~663~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~665~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~670~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~671~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~673~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~674~^2.292^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~675~^0.934^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~676~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~685~^0.014^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~687~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~28347~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28347~^~697~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~851~^0.277^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28347~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28347~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28348~^~312~^0.097^6^0.002^~1~^~A~^^^1^0.090^0.105^5^0.092^0.103^~2, 3~^~06/01/2015~ -~28348~^~315~^0.397^6^0.006^~1~^~A~^^^1^0.379^0.424^5^0.381^0.413^~2, 3~^~06/01/2015~ -~28348~^~404~^0.480^3^0.010^~1~^~A~^^^1^0.470^0.500^2^0.437^0.523^~2, 3~^~06/01/2015~ -~28348~^~405~^0.327^3^0.012^~1~^~A~^^^1^0.310^0.350^2^0.275^0.378^~2, 3~^~06/01/2015~ -~28348~^~406~^3.787^3^0.081^~1~^~A~^^^1^3.650^3.930^2^3.439^4.135^~2, 3~^~06/01/2015~ -~28348~^~410~^0.595^2^^~1~^~A~^^^1^0.590^0.600^1^^^^~06/01/2015~ -~28348~^~415~^0.110^3^0.000^~1~^~A~^^^1^0.110^0.110^^^^~2, 3~^~06/01/2015~ -~28348~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~502~^0.280^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~503~^0.360^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~504~^0.700^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~505~^0.310^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~506~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~508~^0.480^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~509~^0.240^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~510~^0.380^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~511~^0.410^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~512~^0.200^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~513~^0.330^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~514~^0.510^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~515~^3.000^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~516~^0.360^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~517~^1.480^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~518~^0.510^0^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~28348~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~28348~^~605~^0.168^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~606~^3.516^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~607~^0.101^3^0.002^~1~^~A~^^^1^0.097^0.104^2^0.092^0.111^~2, 3~^~06/01/2015~ -~28348~^~608~^0.078^3^0.003^~1~^~A~^^^1^0.073^0.082^2^0.066^0.089^~2, 3~^~06/01/2015~ -~28348~^~609~^0.047^3^0.002^~1~^~A~^^^1^0.043^0.049^2^0.039^0.055^~2, 3~^~06/01/2015~ -~28348~^~610~^0.129^3^0.001^~1~^~A~^^^1^0.127^0.131^2^0.124^0.134^~2, 3~^~06/01/2015~ -~28348~^~611~^0.136^3^0.004^~1~^~A~^^^1^0.129^0.142^2^0.120^0.153^~2, 3~^~06/01/2015~ -~28348~^~612~^0.461^3^0.011^~1~^~A~^^^1^0.441^0.479^2^0.414^0.508^~2, 3~^~06/01/2015~ -~28348~^~613~^1.680^3^0.040^~1~^~A~^^^1^1.612^1.750^2^1.508^1.852^~2, 3~^~06/01/2015~ -~28348~^~614~^0.787^3^0.033^~1~^~A~^^^1^0.739^0.851^2^0.644^0.930^~2, 3~^~06/01/2015~ -~28348~^~615~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.005^0.014^~2, 3~^~06/01/2015~ -~28348~^~617~^1.675^3^0.045^~1~^~AS~^^^1^1.606^1.760^2^1.480^1.869^~2, 3~^~06/01/2015~ -~28348~^~618~^0.757^3^0.006^~1~^~AS~^^^1^0.746^0.768^2^0.729^0.784^~2, 3~^~06/01/2015~ -~28348~^~619~^0.037^3^0.001^~1~^~AS~^^^1^0.036^0.038^2^0.034^0.039^~2, 3~^~06/01/2015~ -~28348~^~620~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.025^0.029^~2, 3~^~06/01/2015~ -~28348~^~621~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2015~ -~28348~^~624~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~06/01/2015~ -~28348~^~625~^0.042^3^0.001^~1~^~A~^^^1^0.040^0.043^2^0.038^0.046^~2, 3~^~06/01/2015~ -~28348~^~626~^0.105^3^0.004^~1~^~AS~^^^1^0.099^0.111^2^0.090^0.120^~2, 3~^~06/01/2015~ -~28348~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~628~^0.019^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~06/01/2015~ -~28348~^~629~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~06/01/2015~ -~28348~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~28348~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~28348~^~645~^1.851^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~646~^0.855^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~652~^0.051^3^0.001^~1~^~A~^^^1^0.048^0.052^2^0.045^0.056^~2, 3~^~06/01/2015~ -~28348~^~653~^0.030^3^0.001^~1~^~A~^^^1^0.029^0.031^2^0.027^0.032^~2, 3~^~06/01/2015~ -~28348~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~28348~^~662~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.008^0.016^~2, 3~^~06/01/2015~ -~28348~^~663~^0.123^3^0.004^~1~^~A~^^^1^0.115^0.129^2^0.105^0.140^~2, 3~^~06/01/2015~ -~28348~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~665~^0.033^3^0.002^~1~^~A~^^^1^0.030^0.037^2^0.024^0.042^~2, 3~^~06/01/2015~ -~28348~^~670~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.032^~2, 3~^~06/01/2015~ -~28348~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2015~ -~28348~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2015~ -~28348~^~673~^0.093^3^0.003^~1~^~A~^^^1^0.088^0.099^2^0.079^0.107^~2, 3~^~06/01/2015~ -~28348~^~674~^1.552^3^0.041^~1~^~A~^^^1^1.491^1.631^2^1.374^1.730^~2, 3~^~06/01/2015~ -~28348~^~675~^0.697^3^0.005^~1~^~A~^^^1^0.689^0.706^2^0.675^0.718^~2, 3~^~06/01/2015~ -~28348~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~687~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~06/01/2015~ -~28348~^~689~^0.012^3^0.000^~1~^~AS~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~06/01/2015~ -~28348~^~693~^0.135^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28348~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~851~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.038^2^0.034^0.039^~2, 3~^~06/01/2015~ -~28348~^~852~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~28348~^~853~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~06/01/2015~ -~28348~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~28348~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~28349~^~312~^0.131^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~404~^0.234^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~405~^0.404^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~406~^1.537^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~415~^0.044^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~606~^4.090^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28349~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~612~^0.015^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~613~^2.402^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~614~^1.519^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~617~^3.312^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~618~^2.086^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~619~^0.181^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~626~^0.009^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~628~^0.011^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~631~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~645~^3.332^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~646~^2.269^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28349~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28349~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~312~^0.225^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~404~^0.071^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~405~^0.199^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~406~^0.641^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~415~^0.048^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~606~^12.584^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~608~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~612~^0.013^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~613~^7.134^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~614~^5.425^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~617~^2.064^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~618~^6.710^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~619~^0.007^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~626~^0.002^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28350~^~645~^2.065^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28350~^~646~^6.717^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~312~^0.101^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~404~^0.541^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~405~^0.493^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~406~^3.861^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~415~^0.074^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~606~^5.291^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28351~^~607~^0.003^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~608~^0.013^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~609~^0.207^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~610~^0.233^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~611~^2.948^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~612~^1.035^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~613~^0.651^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~614~^0.199^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~617~^2.681^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~618~^1.552^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~619~^0.118^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~626~^0.012^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28351~^~645~^2.694^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28351~^~646~^1.670^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~312~^0.077^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~404~^0.402^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~405~^0.270^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~406~^3.006^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~415~^0.025^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~ -~28352~^~606~^3.175^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~611~^0.005^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~612~^0.021^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~613~^1.640^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~614~^1.404^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~615~^0.042^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~617~^5.592^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~618~^1.092^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~619~^0.026^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~624~^0.043^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~626~^0.007^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~628~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~645~^5.602^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~646~^1.118^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~28352~^~652~^0.004^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28352~^~653~^0.016^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~ -~28354~^~312~^0.111^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~315~^0.671^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~404~^0.250^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28354~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~312~^0.508^2^^~1~^~A~^^^1^0.489^0.528^1^^^^~07/01/2015~ -~28355~^~315~^2.420^2^^~1~^~A~^^^1^2.350^2.490^1^^^^~07/01/2015~ -~28355~^~405~^0.150^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~406~^4.570^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~410~^0.840^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~415~^0.370^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~606~^2.069^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~613~^1.253^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~614~^0.668^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~615~^0.077^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~617~^6.930^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~618~^5.037^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~619~^0.926^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~624~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~626~^0.016^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~628~^0.041^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~629~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~645~^7.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~646~^5.981^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~653~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~654~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~663~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~665~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~670~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~671~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~673~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~674~^6.922^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~675~^5.026^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~685~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28355~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~695~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28355~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~851~^0.922^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28355~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28355~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28356~^~312~^0.261^3^0.005^~1~^~A~^^^1^0.252^0.267^2^0.241^0.281^~2, 3~^~07/01/2015~ -~28356~^~315~^0.515^3^0.021^~1~^~A~^^^1^0.481^0.554^2^0.423^0.606^~2, 3~^~07/01/2015~ -~28356~^~404~^0.050^2^^~1~^~A~^^^1^0.050^0.050^^^^^~07/01/2015~ -~28356~^~405~^0.076^2^^~1~^~A~^^^1^0.073^0.079^1^^^^~07/01/2015~ -~28356~^~406~^0.390^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28356~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28356~^~415~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~605~^0.099^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~606~^7.905^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~609~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~07/01/2015~ -~28356~^~610~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~07/01/2015~ -~28356~^~611~^0.030^2^^~1~^~A~^^^1^0.025^0.034^1^^^^~07/01/2015~ -~28356~^~612~^0.155^2^^~1~^~A~^^^1^0.153^0.158^1^^^^~07/01/2015~ -~28356~^~613~^6.650^2^^~1~^~A~^^^1^6.603^6.696^1^^^^~07/01/2015~ -~28356~^~614~^0.950^2^^~1~^~A~^^^1^0.934^0.966^1^^^^~07/01/2015~ -~28356~^~615~^0.063^2^^~1~^~A~^^^1^0.063^0.063^^^^^~07/01/2015~ -~28356~^~617~^6.082^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~618~^1.746^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~619~^0.056^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~07/01/2015~ -~28356~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~624~^0.014^2^^~1~^~A~^^^1^0.014^0.014^^^^^~07/01/2015~ -~28356~^~625~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~07/01/2015~ -~28356~^~626~^0.025^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~628~^0.029^2^^~1~^~A~^^^1^0.029^0.030^1^^^^~07/01/2015~ -~28356~^~629~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2015~ -~28356~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~645~^6.142^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~646~^1.807^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~652~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~07/01/2015~ -~28356~^~653~^0.017^2^^~1~^~A~^^^1^0.016^0.017^1^^^^~07/01/2015~ -~28356~^~654~^0.014^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~07/01/2015~ -~28356~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~663~^0.061^2^^~1~^~A~^^^1^0.047^0.076^1^^^^~07/01/2015~ -~28356~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~665~^0.038^2^^~1~^~A~^^^1^0.038^0.038^^^^^~07/01/2015~ -~28356~^~670~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~07/01/2015~ -~28356~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~673~^0.025^2^^~1~^~A~^^^1^0.024^0.025^1^^^^~07/01/2015~ -~28356~^~674~^6.020^2^^~1~^~A~^^^1^5.995^6.046^1^^^^~07/01/2015~ -~28356~^~675~^1.702^2^^~1~^~A~^^^1^1.690^1.714^1^^^^~07/01/2015~ -~28356~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~685~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~07/01/2015~ -~28356~^~687~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~28356~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28356~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28356~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~851~^0.048^2^^~1~^~A~^^^1^0.047^0.050^1^^^^~07/01/2015~ -~28356~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28356~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28357~^~312~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~315~^0.247^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~605~^0.079^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~606~^8.094^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~609~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~611~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~612~^0.168^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~613~^6.990^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~614~^0.781^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~615~^0.061^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~617~^6.193^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~618~^1.854^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~619~^0.058^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~620~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~624~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~626~^0.026^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~628~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~645~^6.253^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~646~^1.917^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~653~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~663~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~665~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~670~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~673~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~674~^6.154^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~675~^1.808^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~685~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~687~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28357~^~693~^0.039^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28357~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~851~^0.051^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28357~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28357~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28358~^~315~^0.019^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~07/01/2015~ -~28358~^~404~^0.045^2^^~1~^~A~^^^1^0.040^0.050^1^^^^~07/01/2015~ -~28358~^~405~^0.074^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~406~^0.065^2^^~1~^~A~^^^1^0.040^0.090^1^^^^~07/01/2015~ -~28358~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~605~^0.043^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~606~^10.501^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~611~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~612~^0.227^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~613~^9.124^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~614~^0.939^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~615~^0.077^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~617~^8.230^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~618~^2.557^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~619~^0.098^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~624~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~626~^0.030^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~628~^0.043^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~645~^8.312^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~646~^2.670^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~653~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~665~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~670~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~673~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~674~^8.216^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~675~^2.522^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~685~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~687~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~689~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28358~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28358~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~851~^0.088^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~852~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28358~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28358~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~312~^0.259^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~315~^0.411^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~410~^0.430^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~605~^0.102^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~606~^15.299^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~607~^0.061^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~608~^0.046^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~609~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~610~^0.081^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~611~^0.160^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~612~^0.426^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~613~^9.155^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~614~^5.000^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~615~^0.180^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~617~^9.279^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~618~^2.134^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~619~^0.124^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~620~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~624~^0.036^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~625~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~626~^0.098^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~627~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~628~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~631~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~645~^9.462^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~646~^2.274^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~652~^0.038^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~653~^0.053^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~654~^0.025^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~663~^0.056^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~665~^0.038^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~670~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~672~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~673~^0.090^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~674~^9.223^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~675~^2.082^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~676~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~685~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28359~^~693~^0.064^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~695~^0.038^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28359~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~851~^0.115^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28359~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28359~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28360~^~312~^0.644^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~315~^2.520^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~404~^0.210^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28360~^~406~^5.390^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28361~^~312~^0.133^3^0.008^~1~^~A~^^^1^0.122^0.149^2^0.098^0.168^~2, 3~^~07/01/2015~ -~28361~^~315~^0.598^3^0.048^~1~^~A~^^^1^0.540^0.694^2^0.390^0.806^~2, 3~^~07/01/2015~ -~28362~^~312~^0.109^2^^~1~^~A~^^^1^0.100^0.119^1^^^^~07/01/2015~ -~28362~^~315~^0.626^2^^~1~^~A~^^^1^0.598^0.655^1^^^^~07/01/2015~ -~28362~^~404~^0.780^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~405~^0.550^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~406~^6.490^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~410~^0.730^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28362~^~415~^0.130^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28363~^~312~^0.127^5^0.004^~1~^~A~^^^1^0.114^0.138^4^0.116^0.138^~2, 3~^~07/01/2015~ -~28363~^~315~^0.527^5^0.022^~1~^~A~^^^1^0.453^0.572^4^0.466^0.588^~2, 3~^~07/01/2015~ -~28363~^~404~^0.833^3^0.007^~1~^~A~^^^1^0.820^0.840^2^0.805^0.862^~2, 3~^~07/01/2015~ -~28363~^~405~^0.507^3^0.019^~1~^~A~^^^1^0.470^0.530^2^0.427^0.586^~2, 3~^~07/01/2015~ -~28363~^~406~^6.640^3^0.541^~1~^~A~^^^1^5.970^7.710^2^4.314^8.966^~2, 3~^~07/01/2015~ -~28363~^~410~^0.695^2^^~1~^~A~^^^1^0.640^0.750^1^^^^~07/01/2015~ -~28363~^~415~^0.060^3^0.006^~1~^~A~^^^1^0.050^0.070^2^0.035^0.085^~2, 3~^~07/01/2015~ -~28363~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~606~^1.432^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~611~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~28363~^~612~^0.014^2^^~1~^~A~^^^1^0.012^0.016^1^^^^~07/01/2015~ -~28363~^~613~^0.838^2^^~1~^~A~^^^1^0.814^0.862^1^^^^~07/01/2015~ -~28363~^~614~^0.370^2^^~1~^~A~^^^1^0.359^0.382^1^^^^~07/01/2015~ -~28363~^~615~^0.107^2^^~1~^~A~^^^1^0.105^0.110^1^^^^~07/01/2015~ -~28363~^~617~^10.695^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~618~^3.883^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~619~^0.439^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~624~^0.054^2^^~1~^~A~^^^1^0.053^0.055^1^^^^~07/01/2015~ -~28363~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~626~^0.055^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~628~^0.204^2^^~1~^~A~^^^1^0.199^0.209^1^^^^~07/01/2015~ -~28363~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~645~^10.991^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~646~^4.335^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~652~^0.006^2^^~1~^~A~^^^1^0.005^0.007^1^^^^~07/01/2015~ -~28363~^~653~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~07/01/2015~ -~28363~^~654~^0.032^2^^~1~^~A~^^^1^0.032^0.032^^^^^~07/01/2015~ -~28363~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~663~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~07/01/2015~ -~28363~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~665~^0.017^2^^~1~^~A~^^^1^0.016^0.017^1^^^^~07/01/2015~ -~28363~^~670~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~07/01/2015~ -~28363~^~671~^0.023^2^^~1~^~A~^^^1^0.022^0.025^1^^^^~07/01/2015~ -~28363~^~672~^0.010^2^^~1~^~A~^^^1^0.010^0.011^1^^^^~07/01/2015~ -~28363~^~673~^0.055^2^^~1~^~A~^^^1^0.054^0.056^1^^^^~07/01/2015~ -~28363~^~674~^10.680^2^^~1~^~A~^^^1^10.486^10.873^1^^^^~07/01/2015~ -~28363~^~675~^3.859^2^^~1~^~A~^^^1^3.774^3.944^1^^^^~07/01/2015~ -~28363~^~676~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~28363~^~685~^0.021^2^^~1~^~A~^^^1^0.019^0.023^1^^^^~07/01/2015~ -~28363~^~687~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~07/01/2015~ -~28363~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28363~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28363~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~851~^0.418^2^^~1~^~A~^^^1^0.405^0.431^1^^^^~07/01/2015~ -~28363~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28363~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28364~^~312~^0.139^6^0.004^~1~^~A~^^^1^0.128^0.157^5^0.128^0.150^~2, 3~^~07/01/2015~ -~28364~^~315~^0.559^6^0.025^~1~^~A~^^^1^0.468^0.623^5^0.495^0.623^~2, 3~^~07/01/2015~ -~28364~^~404~^0.840^3^0.021^~1~^~A~^^^1^0.800^0.870^2^0.750^0.930^~2, 3~^~07/01/2015~ -~28364~^~405~^0.463^3^0.033^~1~^~A~^^^1^0.400^0.510^2^0.322^0.604^~2, 3~^~07/01/2015~ -~28364~^~406~^5.887^3^0.309^~1~^~A~^^^1^5.360^6.430^2^4.557^7.216^~2, 3~^~07/01/2015~ -~28364~^~410~^0.580^2^^~1~^~A~^^^1^0.570^0.590^1^^^^~07/01/2015~ -~28364~^~415~^0.080^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~605~^0.084^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~606~^2.614^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~607~^0.050^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~608~^0.041^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~609~^0.025^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~610~^0.067^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~611~^0.078^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~612~^0.256^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~613~^1.375^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~614~^0.520^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~615~^0.086^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~617~^8.909^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~618~^3.034^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~619~^0.376^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~624~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~625~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~626~^0.094^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~628~^0.158^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~630~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~631~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~645~^9.223^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~646~^3.431^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~652~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~653~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~654~^0.026^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~662~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~663~^0.053^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~665~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~670~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~671~^0.019^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~672~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~673~^0.086^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~674~^8.856^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~675~^2.994^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~676~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~685~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28364~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28364~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~851~^0.362^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28364~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~853~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28364~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28365~^~312~^0.161^3^0.013^~1~^~A~^^^1^0.142^0.186^2^0.105^0.217^~2, 3~^~07/01/2015~ -~28365~^~315~^0.552^3^0.024^~1~^~A~^^^1^0.507^0.588^2^0.450^0.654^~2, 3~^~07/01/2015~ -~28365~^~404~^0.775^2^^~1~^~A~^^^1^0.740^0.810^1^^^^~07/01/2015~ -~28365~^~405~^0.565^2^^~1~^~A~^^^1^0.540^0.590^1^^^^~07/01/2015~ -~28365~^~406~^6.785^2^^~1~^~A~^^^1^6.520^7.050^1^^^^~07/01/2015~ -~28365~^~410~^0.670^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28365~^~605~^0.062^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~606~^2.137^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~607~^0.029^2^^~1~^~A~^^^1^0.029^0.030^1^^^^~07/01/2015~ -~28365~^~608~^0.020^2^^~1~^~A~^^^1^0.020^0.021^1^^^^~07/01/2015~ -~28365~^~609~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~07/01/2015~ -~28365~^~610~^0.034^2^^~1~^~A~^^^1^0.033^0.036^1^^^^~07/01/2015~ -~28365~^~611~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~07/01/2015~ -~28365~^~612~^0.136^2^^~1~^~A~^^^1^0.136^0.137^1^^^^~07/01/2015~ -~28365~^~613~^1.168^2^^~1~^~A~^^^1^1.161^1.176^1^^^^~07/01/2015~ -~28365~^~614~^0.476^2^^~1~^~A~^^^1^0.475^0.478^1^^^^~07/01/2015~ -~28365~^~615~^0.105^2^^~1~^~A~^^^1^0.104^0.106^1^^^^~07/01/2015~ -~28365~^~617~^10.778^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~618~^3.564^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~619~^0.466^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~624~^0.051^2^^~1~^~A~^^^1^0.051^0.052^1^^^^~07/01/2015~ -~28365~^~625~^0.014^2^^~1~^~A~^^^1^0.014^0.014^^^^^~07/01/2015~ -~28365~^~626~^0.079^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~628~^0.200^2^^~1~^~A~^^^1^0.193^0.207^1^^^^~07/01/2015~ -~28365~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~645~^11.111^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~646~^4.045^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~652~^0.018^2^^~1~^~A~^^^1^0.018^0.018^^^^^~07/01/2015~ -~28365~^~653~^0.016^2^^~1~^~A~^^^1^0.016^0.016^^^^^~07/01/2015~ -~28365~^~654~^0.030^2^^~1~^~A~^^^1^0.030^0.030^^^^^~07/01/2015~ -~28365~^~662~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~07/01/2015~ -~28365~^~663~^0.037^2^^~1~^~A~^^^1^0.036^0.038^1^^^^~07/01/2015~ -~28365~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~665~^0.021^2^^~1~^~A~^^^1^0.021^0.021^^^^^~07/01/2015~ -~28365~^~670~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~07/01/2015~ -~28365~^~671~^0.024^2^^~1~^~A~^^^1^0.023^0.024^1^^^^~07/01/2015~ -~28365~^~672~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~07/01/2015~ -~28365~^~673~^0.075^2^^~1~^~A~^^^1^0.074^0.076^1^^^^~07/01/2015~ -~28365~^~674~^10.741^2^^~1~^~A~^^^1^10.556^10.927^1^^^^~07/01/2015~ -~28365~^~675~^3.532^2^^~1~^~A~^^^1^3.515^3.550^1^^^^~07/01/2015~ -~28365~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~07/01/2015~ -~28365~^~685~^0.020^2^^~1~^~A~^^^1^0.019^0.021^1^^^^~07/01/2015~ -~28365~^~687~^0.012^2^^~1~^~A~^^^1^0.012^0.012^^^^^~07/01/2015~ -~28365~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28365~^~693~^0.041^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28365~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~851~^0.446^2^^~1~^~A~^^^1^0.436^0.456^1^^^^~07/01/2015~ -~28365~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~853~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2015~ -~28365~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28365~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28366~^~312~^0.039^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~315~^0.174^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~606~^0.339^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~610~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~612~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~613~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~614~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~615~^0.058^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~617~^6.730^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~618~^1.623^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~619~^0.583^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~620~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~624~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~626~^0.025^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~628~^0.130^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~630~^0.004^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~645~^7.363^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~646~^2.218^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~653~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~654~^0.017^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~665~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~670~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~671~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~673~^0.025^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~674~^6.716^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~675~^1.611^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~685~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28366~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28366~^~697~^0.447^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~851~^0.571^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28366~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28366~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~312~^0.062^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~315~^0.206^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~605~^0.036^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~606~^5.918^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~611~^0.020^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~612~^0.105^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~613~^4.954^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~614~^0.652^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~615~^0.099^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~617~^10.031^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~618~^2.970^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~619~^0.802^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~624~^0.038^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~626~^0.032^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~628~^0.155^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~630~^0.007^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~645~^10.249^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~646~^3.785^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~653~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~654~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~663~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~665~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~671~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~673~^0.032^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~674~^10.017^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~675~^2.948^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~676~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~685~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~687~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28367~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~695~^0.022^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28367~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~851~^0.771^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28367~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28367~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28368~^~312~^0.096^2^^~1~^~A~^^^1^0.094^0.097^1^^^^~07/01/2015~ -~28368~^~315~^0.207^2^^~1~^~A~^^^1^0.204^0.211^1^^^^~07/01/2015~ -~28368~^~404~^0.615^2^^~1~^~A~^^^1^0.590^0.640^1^^^^~07/01/2015~ -~28368~^~405~^0.480^2^^~1~^~A~^^^1^0.470^0.490^1^^^^~07/01/2015~ -~28368~^~406~^3.875^2^^~1~^~A~^^^1^3.850^3.900^1^^^^~07/01/2015~ -~28368~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28368~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~606~^0.215^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~610~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~07/01/2015~ -~28368~^~611~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~07/01/2015~ -~28368~^~612~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~07/01/2015~ -~28368~^~613~^0.102^2^^~1~^~A~^^^1^0.000^0.205^1^^^^~07/01/2015~ -~28368~^~614~^0.068^2^^~1~^~A~^^^1^0.067^0.069^1^^^^~07/01/2015~ -~28368~^~615~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~07/01/2015~ -~28368~^~617~^1.230^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~618~^0.611^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~619~^0.020^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~620~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2015~ -~28368~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~624~^0.014^2^^~1~^~A~^^^1^0.014^0.015^1^^^^~07/01/2015~ -~28368~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~628~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~07/01/2015~ -~28368~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~28368~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~646~^0.637^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~28368~^~653~^0.003^2^^~1~^~A~^^^1^0.002^0.005^1^^^~1~^~07/01/2015~ -~28368~^~654~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~07/01/2015~ -~28368~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~663~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~28368~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~665~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~07/01/2015~ -~28368~^~670~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~07/01/2015~ -~28368~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~673~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~07/01/2015~ -~28368~^~674~^1.225^2^^~1~^~A~^^^1^1.213^1.237^1^^^^~07/01/2015~ -~28368~^~675~^0.607^2^^~1~^~A~^^^1^0.595^0.619^1^^^^~07/01/2015~ -~28368~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~07/01/2015~ -~28368~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~28368~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28368~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28368~^~697~^0.104^2^^~1~^~A~^^^1^0.000^0.207^1^^^~1~^~07/01/2015~ -~28368~^~851~^0.019^2^^~1~^~A~^^^1^0.019^0.020^1^^^^~07/01/2015~ -~28368~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~07/01/2015~ -~28368~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28368~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~312~^0.087^2^^~1~^~A~^^^1^0.087^0.088^1^^^^~07/01/2015~ -~28369~^~315~^0.176^2^^~1~^~A~^^^1^0.172^0.179^1^^^^~07/01/2015~ -~28369~^~404~^0.510^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28369~^~405~^0.505^2^^~1~^~A~^^^1^0.490^0.520^1^^^^~07/01/2015~ -~28369~^~406~^3.420^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28369~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28369~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~606~^0.977^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~609~^0.018^2^^~1~^~A~^^^1^0.008^0.029^1^^^^~07/01/2015~ -~28369~^~610~^0.019^2^^~1~^~A~^^^1^0.015^0.024^1^^^^~07/01/2015~ -~28369~^~611~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~07/01/2015~ -~28369~^~612~^0.038^2^^~1~^~A~^^^1^0.038^0.038^^^^^~07/01/2015~ -~28369~^~613~^0.709^2^^~1~^~A~^^^1^0.000^1.417^1^^^^~07/01/2015~ -~28369~^~614~^0.147^2^^~1~^~A~^^^1^0.145^0.149^1^^^^~07/01/2015~ -~28369~^~615~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~07/01/2015~ -~28369~^~617~^1.266^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~618~^0.496^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~619~^0.015^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~620~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~28369~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~624~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~07/01/2015~ -~28369~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~626~^0.013^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~628~^0.008^2^^~1~^~A~^^^1^0.008^0.008^^^^^~07/01/2015~ -~28369~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~28369~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~645~^2.009^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~646~^0.516^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~652~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~07/01/2015~ -~28369~^~653~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~28369~^~654~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~07/01/2015~ -~28369~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~663~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~07/01/2015~ -~28369~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~665~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~07/01/2015~ -~28369~^~670~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2015~ -~28369~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~673~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~07/01/2015~ -~28369~^~674~^1.262^2^^~1~^~A~^^^1^1.248^1.277^1^^^^~07/01/2015~ -~28369~^~675~^0.488^2^^~1~^~A~^^^1^0.487^0.490^1^^^^~07/01/2015~ -~28369~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~685~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~28369~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~28369~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28369~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28369~^~697~^0.721^2^^~1~^~A~^^^1^0.000^1.442^1^^^~1~^~07/01/2015~ -~28369~^~851~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~07/01/2015~ -~28369~^~852~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~07/01/2015~ -~28369~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28369~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28370~^~312~^0.083^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~315~^0.800^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28370~^~410~^0.500^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~312~^0.053^3^0.002^~1~^~A~^^^1^0.050^0.057^2^0.045^0.062^~2, 3~^~07/01/2015~ -~28371~^~315~^0.439^3^0.027^~1~^~A~^^^1^0.402^0.492^2^0.322^0.556^~2, 3~^~07/01/2015~ -~28371~^~404~^0.135^2^^~1~^~A~^^^1^0.130^0.140^1^^^^~07/01/2015~ -~28371~^~405~^0.270^2^^~1~^~A~^^^1^0.270^0.270^^^^^~07/01/2015~ -~28371~^~406~^1.405^2^^~1~^~A~^^^1^1.380^1.430^1^^^^~07/01/2015~ -~28371~^~415~^0.095^2^^~1~^~A~^^^1^0.090^0.100^1^^^^~07/01/2015~ -~28371~^~501~^0.080^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~502~^0.230^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~503~^0.250^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~504~^0.460^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~505~^0.350^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~508~^0.320^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~509~^0.180^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~510~^0.280^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~511~^0.370^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~512~^0.130^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~513~^0.330^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~514~^0.560^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~515~^0.750^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~516~^0.230^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~517~^0.240^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~518~^0.370^0^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28371~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28371~^~605~^0.023^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~606~^0.629^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~611~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~28371~^~612~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~07/01/2015~ -~28371~^~613~^0.379^2^^~1~^~A~^^^1^0.375^0.383^1^^^^~07/01/2015~ -~28371~^~614~^0.136^2^^~1~^~A~^^^1^0.135^0.137^1^^^^~07/01/2015~ -~28371~^~615~^0.044^2^^~1~^~A~^^^1^0.044^0.045^1^^^^~07/01/2015~ -~28371~^~617~^4.546^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~618~^1.427^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~619~^0.520^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~620~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2015~ -~28371~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~624~^0.024^2^^~1~^~A~^^^1^0.024^0.024^^^^^~07/01/2015~ -~28371~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~628~^0.119^2^^~1~^~A~^^^1^0.119^0.119^^^^^~07/01/2015~ -~28371~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~645~^4.721^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~646~^1.957^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~652~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~07/01/2015~ -~28371~^~653~^0.010^2^^~1~^~A~^^^1^0.010^0.010^^^^^~07/01/2015~ -~28371~^~654~^0.015^2^^~1~^~A~^^^1^0.015^0.015^^^^^~07/01/2015~ -~28371~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~663~^0.013^2^^~1~^~A~^^^1^0.010^0.016^1^^^^~07/01/2015~ -~28371~^~664~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2015~ -~28371~^~665~^0.008^2^^~1~^~A~^^^1^0.008^0.009^1^^^^~07/01/2015~ -~28371~^~670~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~07/01/2015~ -~28371~^~671~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~07/01/2015~ -~28371~^~672~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~07/01/2015~ -~28371~^~673~^0.028^2^^~1~^~A~^^^1^0.027^0.028^1^^^^~07/01/2015~ -~28371~^~674~^4.533^2^^~1~^~A~^^^1^4.509^4.558^1^^^^~07/01/2015~ -~28371~^~675~^1.415^2^^~1~^~A~^^^1^1.398^1.433^1^^^^~07/01/2015~ -~28371~^~676~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~07/01/2015~ -~28371~^~685~^0.035^2^^~1~^~A~^^^1^0.035^0.035^^^^^~07/01/2015~ -~28371~^~687~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~07/01/2015~ -~28371~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28371~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28371~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~851~^0.485^2^^~1~^~A~^^^1^0.477^0.494^1^^^^~07/01/2015~ -~28371~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28371~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~28372~^~312~^0.074^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~315~^0.505^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~405~^0.320^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~406~^1.410^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~605~^0.019^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~606~^0.266^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~613~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~614~^0.162^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~615~^0.046^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~617~^4.837^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~618~^1.569^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~619~^0.835^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~620~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~624~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~625~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~626~^0.028^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~628~^0.123^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~629~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~645~^5.438^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~646~^2.415^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~652~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~653~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~654~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~663~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~665~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~673~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~674~^4.827^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~675~^1.555^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~685~^0.036^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28372~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28372~^~697~^0.428^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~851~^0.799^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28372~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28372~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~312~^0.259^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~315~^1.690^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~404~^0.380^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~405~^0.360^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~406~^3.790^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~606~^1.381^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~612~^0.016^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~613~^0.842^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~614~^0.360^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~615~^0.057^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~617~^5.180^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~618~^3.148^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~619~^1.772^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~620~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~624~^0.048^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~626~^0.029^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~628~^0.115^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~629~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~630~^0.006^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~645~^5.352^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~646~^4.944^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~654~^0.031^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~663~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~664~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~665~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~670~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~671~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~672~^0.006^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~673~^0.029^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~674~^5.162^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~675~^3.129^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~676~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~685~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~687~^0.011^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28373~^~693~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28373~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~851~^1.739^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28373~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28373~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~312~^0.109^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~315~^0.925^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~405~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~406~^1.550^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~415~^0.075^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~606~^0.480^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~608~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~612~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~613~^0.317^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~614~^0.085^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~617~^2.301^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~618~^0.942^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~619~^0.291^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~620~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~624~^0.012^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~628~^0.054^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~629~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~645~^2.376^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~646~^1.241^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~663~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~665~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~670~^0.004^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~671~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~672~^0.003^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~673~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~674~^2.292^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~675~^0.934^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~676~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~685~^0.014^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~687~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~28374~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28374~^~697~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~851~^0.277^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28374~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28374~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~ -~28375~^~312~^0.097^3^0.002^~1~^~A~^^^1^0.094^0.100^2^0.090^0.104^~2, 3~^~07/01/2015~ -~28375~^~315~^0.886^3^0.047^~1~^~A~^^^1^0.829^0.979^2^0.685^1.087^~2, 3~^~07/01/2015~ -~28375~^~404~^0.083^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.069^0.098^~2, 3~^~07/01/2015~ -~28375~^~405~^0.040^3^0.000^~1~^~A~^^^1^0.040^0.040^^^^~2, 3~^~07/01/2015~ -~28375~^~406~^1.803^3^0.139^~1~^~A~^^^1^1.640^2.080^2^1.205^2.402^~2, 3~^~07/01/2015~ -~28375~^~410~^0.480^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28375~^~415~^0.067^2^^~1~^~A~^^^1^0.065^0.070^1^^^^~07/01/2015~ -~28375~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~606~^0.781^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~608~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~07/01/2015~ -~28375~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~610~^0.013^3^0.003^~1~^~A~^^^1^0.010^0.018^2^0.002^0.024^~2, 3~^~07/01/2015~ -~28375~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~612~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~07/01/2015~ -~28375~^~613~^0.503^3^0.008^~1~^~A~^^^1^0.495^0.518^2^0.471^0.535^~2, 3~^~07/01/2015~ -~28375~^~614~^0.170^3^0.003^~1~^~A~^^^1^0.164^0.176^2^0.155^0.185^~2, 3~^~07/01/2015~ -~28375~^~615~^0.041^3^0.002^~1~^~A~^^^1^0.037^0.043^2^0.033^0.049^~2, 3~^~07/01/2015~ -~28375~^~617~^4.334^3^0.170^~1~^~AS~^^^1^4.024^4.608^2^3.604^5.063^~2, 3~^~07/01/2015~ -~28375~^~618~^1.594^3^0.041^~1~^~AS~^^^1^1.533^1.672^2^1.418^1.770^~2, 3~^~07/01/2015~ -~28375~^~619~^0.770^3^0.122^~1~^~AS~^^^1^0.639^1.014^2^0.245^1.295^~2, 3~^~07/01/2015~ -~28375~^~620~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2015~ -~28375~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~624~^0.013^3^0.007^~1~^~A~^^^1^0.000^0.021^2^-0.015^0.042^~1, 2, 3~^~07/01/2015~ -~28375~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~626~^0.014^3^0.000^~1~^~AS~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~07/01/2015~ -~28375~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~628~^0.090^3^0.008^~1~^~A~^^^1^0.075^0.103^2^0.055^0.126^~2, 3~^~07/01/2015~ -~28375~^~629~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~07/01/2015~ -~28375~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~07/01/2015~ -~28375~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~645~^4.456^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~646~^2.375^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~07/01/2015~ -~28375~^~653~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~07/01/2015~ -~28375~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~07/01/2015~ -~28375~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~663~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.001^0.010^~2, 3~^~07/01/2015~ -~28375~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~665~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~07/01/2015~ -~28375~^~670~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~07/01/2015~ -~28375~^~671~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~07/01/2015~ -~28375~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~07/01/2015~ -~28375~^~673~^0.014^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~07/01/2015~ -~28375~^~674~^4.328^3^0.170^~1~^~A~^^^1^4.016^4.603^2^3.594^5.061^~2, 3~^~07/01/2015~ -~28375~^~675~^1.585^3^0.041^~1~^~A~^^^1^1.525^1.663^2^1.410^1.761^~2, 3~^~07/01/2015~ -~28375~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~07/01/2015~ -~28375~^~685~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.012^2^-0.013^0.021^~1, 2, 3~^~07/01/2015~ -~28375~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~07/01/2015~ -~28375~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~07/01/2015~ -~28375~^~693~^0.006^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~28375~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2015~ -~28375~^~851~^0.766^3^0.118^~1~^~A~^^^1^0.639^1.002^2^0.259^1.274^~2, 3~^~07/01/2015~ -~28375~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~07/01/2015~ -~28375~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28375~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~28376~^~312~^0.281^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~315~^2.360^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28376~^~410~^0.790^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~28397~^~312~^0.282^4^0.037^~1~^~A~^^^1^0.220^0.390^3^0.164^0.400^~2, 3~^~03/01/2007~ -~28397~^~315~^2.025^4^0.165^~1~^~A~^^^1^1.600^2.400^3^1.499^2.551^~2, 3~^~03/01/2007~ -~28397~^~404~^0.279^4^0.015^~1~^~A~^^^1^0.246^0.309^3^0.230^0.328^~2, 3~^~03/01/2007~ -~28397~^~405~^0.131^4^0.009^~1~^~A~^^^1^0.115^0.155^3^0.102^0.160^~2, 3~^~03/01/2007~ -~28397~^~406~^4.042^4^0.312^~1~^~A~^^^1^3.120^4.430^3^3.049^5.036^~2, 3~^~03/01/2007~ -~28397~^~410~^0.336^4^0.031^~1~^~A~^^^1^0.255^0.392^3^0.236^0.435^~2, 3~^~03/01/2007~ -~28397~^~415~^0.263^4^0.018^~1~^~A~^^^1^0.217^0.304^3^0.206^0.320^~2, 3~^~03/01/2007~ -~28397~^~501~^0.124^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~502~^0.271^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~503~^0.323^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~504~^0.556^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~505~^0.289^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~506~^0.138^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~507~^0.176^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~508~^0.387^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~509~^0.236^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~510~^0.397^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~511~^0.485^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~512~^0.198^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~513~^0.341^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~514~^0.554^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~515~^2.195^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~516~^0.374^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~517~^0.706^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~518~^0.381^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~606~^0.872^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~ -~28397~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~612~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~613~^0.510^4^0.052^~1~^~A~^^^1^0.420^0.660^3^0.344^0.676^~2, 3~^~03/01/2007~ -~28397~^~614~^0.355^4^0.060^~1~^~A~^^^1^0.200^0.480^3^0.164^0.546^~2, 3~^~03/01/2007~ -~28397~^~615~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.005^0.010^~1, 2, 3~^~03/01/2007~ -~28397~^~617~^0.730^4^0.148^~1~^~A~^^^1^0.530^1.170^3^0.259^1.201^~2, 3~^~03/01/2007~ -~28397~^~618~^1.667^4^0.356^~1~^~A~^^^1^1.150^2.720^3^0.535^2.800^~2, 3~^~03/01/2007~ -~28397~^~619~^0.205^4^0.072^~1~^~A~^^^1^0.110^0.420^3^-0.025^0.435^~2, 3~^~03/01/2007~ -~28397~^~620~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~624~^0.005^4^0.005^~1~^~A~^^^1^0.000^0.020^3^-0.011^0.021^~1, 2, 3~^~03/01/2007~ -~28397~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~626~^0.017^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.009^0.025^~2, 3~^~03/01/2007~ -~28397~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~628~^0.012^4^0.003^~1~^~A~^^^1^0.010^0.020^3^0.004^0.020^~2, 3~^~03/01/2007~ -~28397~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~630~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~645~^0.760^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~646~^1.872^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~28397~^~652~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~653~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~672~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~857~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28397~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2007~ -~28399~^~312~^0.157^31^0.012^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~315~^0.423^27^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~404~^0.350^37^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~405~^0.326^34^0.015^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~406~^3.470^35^0.124^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~410~^0.376^2^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~415~^0.022^2^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~501~^0.099^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~502~^0.193^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~503~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~504~^0.470^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~505~^0.242^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~506~^0.116^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~507~^0.149^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~508~^0.324^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~509~^0.196^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~510~^0.303^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~511~^0.263^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~512~^0.140^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~513~^0.209^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~514~^0.292^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~515~^2.262^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~516~^0.231^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~517~^0.763^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~518~^0.362^0^^~1~^^^^^^^^^^^~08/01/1992~ -~28399~^~606~^3.463^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~612~^0.067^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~ -~28399~^~613~^1.797^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~614~^1.591^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~617~^7.663^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~618~^1.776^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~619~^0.096^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~626~^0.003^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~03/01/1994~ -~28399~^~645~^7.666^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~28399~^~646~^1.873^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~ -~31019~^~312~^0.470^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~315~^5.880^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~404~^0.480^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~405~^1.590^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~406~^3.750^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~415~^0.230^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~501~^0.162^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~502~^0.583^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~503~^0.563^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~504~^0.903^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~505~^0.751^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~506~^0.254^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~507~^0.254^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~508~^0.807^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~509~^0.335^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~510~^0.664^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~511~^0.769^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~512~^0.229^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~513~^0.807^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~514~^1.334^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~515~^1.658^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~516~^0.669^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~517~^0.659^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~518~^0.644^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~606~^0.450^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~645~^0.110^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31019~^~646~^0.750^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~312~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~315~^0.710^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~405~^0.190^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~406~^0.460^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~415~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~501~^0.020^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~502~^0.071^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~503~^0.068^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~504~^0.110^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~505~^0.091^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~506~^0.031^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~507~^0.031^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~508~^0.098^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~509~^0.041^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~510~^0.081^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~511~^0.093^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~512~^0.028^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~513~^0.098^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~514~^0.162^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~515~^0.201^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~516~^0.081^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~517~^0.080^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~518~^0.078^0^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~606~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~645~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31020~^~646~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2012~ -~31021~^~312~^0.062^6^0.005^~1~^~A~^^^1^0.047^0.079^5^0.048^0.076^~4~^~02/01/2013~ -~31021~^~315~^0.140^6^0.009^~1~^~A~^^^1^0.120^0.174^5^0.118^0.163^~4~^~02/01/2013~ -~31021~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~4~^~02/01/2013~ -~31021~^~405~^0.022^3^0.004^~1~^~A~^^^1^0.015^0.030^2^0.002^0.041^~1, 4~^~02/01/2013~ -~31021~^~406~^1.777^3^0.079^~1~^~A~^^^1^1.620^1.870^2^1.438^2.116^~4~^~02/01/2013~ -~31021~^~410~^0.555^2^^~1~^~A~^^^1^0.480^0.630^1^^^^~02/01/2013~ -~31021~^~415~^0.257^3^0.003^~1~^~A~^^^1^0.250^0.260^2^0.242^0.271^~4~^~02/01/2013~ -~31022~^~312~^0.107^6^0.012^~1~^~A~^^^1^0.072^0.149^5^0.075^0.138^~4~^~02/01/2013~ -~31022~^~315~^0.225^6^0.011^~1~^~A~^^^1^0.194^0.271^5^0.198^0.253^~4~^~02/01/2013~ -~31022~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~4~^~02/01/2013~ -~31022~^~405~^0.050^3^0.006^~1~^~A~^^^1^0.040^0.060^2^0.025^0.075^~4~^~02/01/2013~ -~31022~^~406~^3.193^3^0.105^~1~^~A~^^^1^3.000^3.360^2^2.743^3.644^~4~^~02/01/2013~ -~31022~^~410~^0.735^2^^~1~^~A~^^^1^0.720^0.750^1^^^^~02/01/2013~ -~31022~^~415~^0.363^3^0.012^~1~^~A~^^^1^0.340^0.380^2^0.312^0.415^~4~^~02/01/2013~ -~31022~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~606~^0.805^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~607~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~02/01/2013~ -~31022~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~609~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~02/01/2013~ -~31022~^~610~^0.007^2^^~1~^~A~^^^1^0.006^0.009^1^^^^~02/01/2013~ -~31022~^~611~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~02/01/2013~ -~31022~^~612~^0.007^2^^~1~^~A~^^^1^0.007^0.007^1^^^^~02/01/2013~ -~31022~^~613~^0.455^2^^~1~^~A~^^^1^0.444^0.466^1^^^^~02/01/2013~ -~31022~^~614~^0.211^2^^~1~^~A~^^^1^0.206^0.216^1^^^^~02/01/2013~ -~31022~^~615~^0.060^2^^~1~^~A~^^^1^0.059^0.061^1^^^^~02/01/2013~ -~31022~^~617~^6.349^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~618~^2.062^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~619~^0.787^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~620~^0.004^2^^~1~^~A~^^^1^0.004^0.004^1^^^^~02/01/2013~ -~31022~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~624~^0.032^2^^~1~^~A~^^^1^0.032^0.033^1^^^^~02/01/2013~ -~31022~^~626~^0.021^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~628~^0.182^2^^~1~^~A~^^^1^0.177^0.186^1^^^^~02/01/2013~ -~31022~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~630~^0.009^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~645~^6.568^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~646~^2.862^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~652~^0.003^2^^~1~^~A~^^^1^0.003^0.003^1^^^^~02/01/2013~ -~31022~^~653~^0.005^2^^~1~^~A~^^^1^0.005^0.005^1^^^^~02/01/2013~ -~31022~^~654~^0.018^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~02/01/2013~ -~31022~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~663~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~02/01/2013~ -~31022~^~664~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~02/01/2013~ -~31022~^~665~^0.017^2^^~1~^~A~^^^1^0.017^0.017^1^^^^~02/01/2013~ -~31022~^~670~^0.007^2^^~1~^~A~^^^1^0.007^0.007^1^^^^~02/01/2013~ -~31022~^~671~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~02/01/2013~ -~31022~^~672~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~02/01/2013~ -~31022~^~673~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~02/01/2013~ -~31022~^~674~^6.340^2^^~1~^~A~^^^1^6.187^6.493^1^^^^~02/01/2013~ -~31022~^~675~^2.038^2^^~1~^~A~^^^1^1.989^2.087^1^^^^~02/01/2013~ -~31022~^~676~^0.003^2^^~1~^~A~^^^1^0.002^0.005^1^^^~1~^~02/01/2013~ -~31022~^~685~^0.070^2^^~1~^~A~^^^1^0.068^0.071^1^^^^~02/01/2013~ -~31022~^~687~^0.006^2^^~1~^~A~^^^1^0.006^0.006^1^^^^~02/01/2013~ -~31022~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~ -~31022~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~31022~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~851~^0.718^2^^~1~^~A~^^^1^0.696^0.740^1^^^^~02/01/2013~ -~31022~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31022~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~02/01/2013~ -~31023~^~312~^0.177^6^0.008^~1~^~A~^^^1^0.148^0.203^2^0.145^0.208^~2, 3~^~06/01/2015~ -~31023~^~315~^0.481^6^0.037^~1~^~A~^^^1^0.308^0.771^2^0.331^0.631^~2, 3~^~06/01/2015~ -~31023~^~404~^0.092^4^0.003^~1~^~A~^^^1^0.080^0.100^1^0.060^0.125^~2, 3~^~06/01/2015~ -~31023~^~405~^0.092^4^0.009^~1~^~A~^^^1^0.080^0.110^2^0.048^0.137^~2, 3~^~06/01/2015~ -~31023~^~406~^0.697^4^0.036^~1~^~A~^^^1^0.590^0.840^1^0.461^0.934^~2, 3~^~06/01/2015~ -~31023~^~410~^0.460^3^0.080^~1~^~A~^^^1^0.370^0.710^1^-0.557^1.476^~2, 3~^~06/01/2015~ -~31023~^~415~^0.177^4^0.013^~1~^~A~^^^1^0.150^0.220^1^0.078^0.277^~2, 3~^~06/01/2015~ -~31023~^~605~^0.042^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~606~^1.157^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~609~^0.006^3^0.000^~1~^~A~^^^1^0.000^0.012^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~610~^0.005^3^0.004^~1~^~A~^^^1^0.000^0.019^1^-0.045^0.056^~1, 2, 3~^~06/01/2015~ -~31023~^~611~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.010^1^-0.029^0.034^~1, 2, 3~^~06/01/2015~ -~31023~^~612~^0.017^3^0.001^~1~^~A~^^^1^0.005^0.027^1^0.007^0.027^~2, 3~^~06/01/2015~ -~31023~^~613~^0.814^3^0.006^~1~^~A~^^^1^0.394^1.224^1^0.744^0.885^~2, 3~^~06/01/2015~ -~31023~^~614~^0.228^3^0.002^~1~^~A~^^^1^0.123^0.329^1^0.200^0.256^~2, 3~^~06/01/2015~ -~31023~^~615~^0.034^3^0.001^~1~^~A~^^^1^0.028^0.042^1^0.018^0.049^~2, 3~^~06/01/2015~ -~31023~^~617~^3.598^3^0.053^~1~^~AS~^^^1^2.657^4.645^1^2.921^4.274^~2, 3~^~06/01/2015~ -~31023~^~618~^2.526^3^0.013^~1~^~AS~^^^1^1.405^3.622^1^2.364^2.688^~2, 3~^~06/01/2015~ -~31023~^~619~^0.325^3^0.006^~1~^~AS~^^^1^0.228^0.436^1^0.243^0.408^~2, 3~^~06/01/2015~ -~31023~^~620~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^1^-0.002^0.010^~1, 2, 3~^~06/01/2015~ -~31023~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~624~^0.026^3^0.001^~1~^~A~^^^1^0.018^0.033^1^0.014^0.039^~2, 3~^~06/01/2015~ -~31023~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~626~^0.018^3^0.000^~1~^~AS~^^^1^0.014^0.022^1^0.015^0.021^~2, 3~^~06/01/2015~ -~31023~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~628~^0.074^3^0.002^~1~^~A~^^^1^0.029^0.122^1^0.055^0.093^~2, 3~^~06/01/2015~ -~31023~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.001^0.005^1^0.000^0.006^~1, 2, 3~^~06/01/2015~ -~31023~^~630~^0.005^3^0.001^~1~^~AS~^^^1^0.000^0.012^1^-0.004^0.014^~2, 3~^~06/01/2015~ -~31023~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~645~^3.703^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~646~^2.863^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.005^1^-0.002^0.010^~2, 3~^~06/01/2015~ -~31023~^~653~^0.006^3^0.000^~1~^~A~^^^1^0.004^0.007^^^^~2, 3~^~06/01/2015~ -~31023~^~654~^0.015^3^0.000^~1~^~A~^^^1^0.013^0.016^^^^~2, 3~^~06/01/2015~ -~31023~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~663~^0.017^3^0.000^~1~^~A~^^^1^0.016^0.019^1^0.014^0.020^~2, 3~^~06/01/2015~ -~31023~^~664~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.002^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~665~^0.024^3^0.001^~1~^~A~^^^1^0.011^0.035^1^0.014^0.034^~2, 3~^~06/01/2015~ -~31023~^~670~^0.016^3^0.001^~1~^~A~^^^1^0.005^0.026^1^0.009^0.023^~2, 3~^~06/01/2015~ -~31023~^~671~^0.004^3^0.000^~1~^~A~^^^1^0.000^0.008^1^0.001^0.007^~1, 2, 3~^~06/01/2015~ -~31023~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~06/01/2015~ -~31023~^~673~^0.018^3^0.000^~1~^~A~^^^1^0.014^0.022^1^0.015^0.021^~2, 3~^~06/01/2015~ -~31023~^~674~^3.580^3^0.053^~1~^~A~^^^1^2.641^4.626^1^2.907^4.254^~2, 3~^~06/01/2015~ -~31023~^~675~^2.486^3^0.011^~1~^~A~^^^1^1.389^3.561^1^2.341^2.632^~2, 3~^~06/01/2015~ -~31023~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.000^0.010^1^-0.005^0.013^~1, 2, 3~^~06/01/2015~ -~31023~^~685~^0.024^3^0.000^~1~^~A~^^^1^0.012^0.035^^^^~2, 3~^~06/01/2015~ -~31023~^~687~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.006^1^0.001^0.008^~2, 3~^~06/01/2015~ -~31023~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2015~ -~31023~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31023~^~697~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^1^-0.006^0.007^~1, 2, 3~^~06/01/2015~ -~31023~^~851~^0.302^3^0.006^~1~^~A~^^^1^0.216^0.401^1^0.220^0.384^~2, 3~^~06/01/2015~ -~31023~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31023~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31024~^~605~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31024~^~606~^0.930^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31025~^~606~^0.310^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31026~^~605~^0.023^3^0.009^~1~^~A~^^^1^0.010^0.040^2^-0.015^0.061^~2, 3~^~04/01/2013~ -~31026~^~606~^0.153^3^0.003^~1~^~A~^^^1^0.150^0.160^2^0.139^0.168^~2, 3~^~04/01/2013~ -~31027~^~605~^0.107^3^0.035^~1~^~A~^^^1^0.050^0.170^2^-0.043^0.256^~2, 3~^~04/01/2013~ -~31027~^~606~^1.427^3^0.432^~1~^~A~^^^1^0.770^2.240^2^-0.430^3.283^~2, 3~^~04/01/2013~ -~31028~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31028~^~606~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~31029~^~605~^0.147^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.132^0.161^~2, 3~^~04/01/2013~ -~31029~^~606~^1.843^3^0.142^~1~^~A~^^^1^1.590^2.080^2^1.234^2.453^~2, 3~^~04/01/2013~ -~31030~^~605~^0.070^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31030~^~606~^0.880^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~605~^0.200^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31031~^~606~^2.590^1^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~31033~^~312~^0.018^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~315~^0.468^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~406~^0.022^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~410~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~415~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~605~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~606~^0.037^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~613~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~614~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~617~^0.013^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~618~^0.029^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~619~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~645~^0.020^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~646~^0.034^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~654~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~665~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~674~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~675~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~676~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31033~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31033~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~851~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31033~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31033~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~312~^0.045^3^0.008^~1~^~A~^^^1^0.037^0.060^2^0.012^0.078^~2, 3~^~06/01/2015~ -~31034~^~315~^0.052^3^0.011^~1~^~A~^^^1^0.037^0.073^2^0.004^0.099^~2, 3~^~06/01/2015~ -~31034~^~404~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~2, 3~^~06/01/2015~ -~31034~^~405~^0.023^3^0.008^~1~^~A~^^^1^0.015^0.040^2^-0.013^0.059^~1, 2, 3~^~06/01/2015~ -~31034~^~406~^0.343^3^0.035^~1~^~A~^^^1^0.290^0.410^2^0.192^0.495^~2, 3~^~06/01/2015~ -~31034~^~410~^0.200^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~415~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~06/01/2015~ -~31034~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~606~^0.061^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~613~^0.037^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~614~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~617~^0.022^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~618~^0.113^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~624~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~645~^0.023^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~646~^0.143^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~654~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~663~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~673~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~674~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~675~^0.113^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31034~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31034~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~851~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31034~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31034~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~312~^0.022^3^0.000^~1~^~A~^^^1^0.021^0.022^2^0.020^0.023^~2, 3~^~06/01/2015~ -~31035~^~315~^0.848^3^0.003^~1~^~A~^^^1^0.843^0.854^2^0.834^0.862^~2, 3~^~06/01/2015~ -~31035~^~404~^0.050^3^0.010^~1~^~A~^^^1^0.030^0.060^2^0.007^0.093^~2, 3~^~03/01/2016~ -~31035~^~405~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~06/01/2015~ -~31035~^~406~^0.193^3^0.007^~1~^~A~^^^1^0.180^0.200^2^0.165^0.222^~2, 3~^~03/01/2016~ -~31035~^~415~^0.320^2^^~1~^~A~^^^1^0.320^0.320^^^^^~06/01/2015~ -~31035~^~605~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~606~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~612~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~613~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~614~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~617~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~618~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~619~^0.010^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~645~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~646~^0.015^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~652~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~663~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~674~^0.008^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~675~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~ -~31035~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31035~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~851~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~31035~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31035~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~ -~31036~^~312~^0.011^8^0.001^~1~^~A~^^^1^0.004^0.046^1^0.003^0.020^~1, 2, 3~^~06/01/2015~ -~31036~^~315~^0.091^8^0.003^~1~^~A~^^^1^0.061^0.128^3^0.080^0.102^~2, 3~^~06/01/2015~ -~31036~^~404~^0.085^4^0.004^~1~^~A~^^^1^0.080^0.090^1^0.059^0.111^~2, 3~^~06/01/2015~ -~31036~^~405~^0.088^6^0.007^~1~^~A~^^^1^0.060^0.110^3^0.066^0.110^~2, 3~^~06/01/2015~ -~31036~^~406~^1.020^6^0.025^~1~^~A~^^^1^0.840^1.130^3^0.945^1.095^~2, 3~^~06/01/2015~ -~31036~^~410~^0.405^2^^~1~^~A~^^^1^0.370^0.450^^^^^~06/01/2015~ -~31036~^~415~^0.109^4^0.006^~1~^~A~^^^1^0.080^0.120^2^0.082^0.135^~2, 3~^~06/01/2015~ -~31036~^~501~^0.034^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~502~^0.098^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~503~^0.117^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~504~^0.200^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~505~^0.183^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~506~^0.054^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~507~^0.021^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~508~^0.120^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~509~^0.111^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~510~^0.152^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~511~^0.086^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~512~^0.066^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~513~^0.080^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~514~^0.358^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~515~^0.497^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~516~^0.058^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~517~^0.183^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~518~^0.132^0^^~4~^~FLC~^^^^^^^^^^~01/01/2016~ -~31036~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~606~^2.632^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~607~^0.087^8^0.003^~1~^~A~^^^1^0.070^0.123^4^0.078^0.097^~2, 3~^~06/01/2015~ -~31036~^~608~^0.068^8^0.003^~1~^~A~^^^1^0.054^0.093^4^0.060^0.076^~2, 3~^~06/01/2015~ -~31036~^~609~^0.043^8^0.002^~1~^~A~^^^1^0.034^0.057^4^0.038^0.048^~2, 3~^~06/01/2015~ -~31036~^~610~^0.109^8^0.004^~1~^~A~^^^1^0.090^0.142^4^0.097^0.121^~2, 3~^~06/01/2015~ -~31036~^~611~^0.123^8^0.005^~1~^~A~^^^1^0.103^0.159^4^0.110^0.136^~2, 3~^~06/01/2015~ -~31036~^~612~^0.400^8^0.016^~1~^~A~^^^1^0.326^0.532^4^0.354^0.445^~2, 3~^~06/01/2015~ -~31036~^~613~^1.255^8^0.055^~1~^~A~^^^1^1.046^1.689^4^1.103^1.408^~2, 3~^~06/01/2015~ -~31036~^~614~^0.462^8^0.019^~1~^~A~^^^1^0.405^0.597^4^0.408^0.516^~2, 3~^~06/01/2015~ -~31036~^~615~^0.009^8^0.000^~1~^~A~^^^1^0.007^0.011^3^0.008^0.010^~2, 3~^~06/01/2015~ -~31036~^~617~^1.095^8^0.045^~1~^~AS~^^^1^0.955^1.415^4^0.970^1.220^~2, 3~^~06/01/2015~ -~31036~^~618~^0.573^8^0.033^~1~^~AS~^^^1^0.183^0.932^2^0.438^0.709^~2, 3~^~06/01/2015~ -~31036~^~619~^0.089^8^0.006^~1~^~AS~^^^1^0.026^0.149^2^0.063^0.115^~2, 3~^~06/01/2015~ -~31036~^~620~^0.007^8^0.000^~1~^~A~^^^1^0.006^0.011^4^0.006^0.008^~2, 3~^~06/01/2015~ -~31036~^~621~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~624~^0.006^8^0.000^~1~^~A~^^^1^0.004^0.008^2^0.004^0.007^~2, 3~^~06/01/2015~ -~31036~^~625~^0.041^8^0.002^~1~^~A~^^^1^0.033^0.054^4^0.036^0.046^~2, 3~^~06/01/2015~ -~31036~^~626~^0.079^8^0.004^~1~^~AS~^^^1^0.062^0.113^4^0.069^0.088^~2, 3~^~06/01/2015~ -~31036~^~627~^0.001^8^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~31036~^~628~^0.013^8^0.001^~1~^~A~^^^1^0.009^0.016^4^0.011^0.014^~2, 3~^~06/01/2015~ -~31036~^~629~^0.002^8^0.000^~1~^~A~^^^1^0.000^0.004^3^0.000^0.003^~1, 2, 3~^~06/01/2015~ -~31036~^~630~^0.001^8^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.001^0.003^~2, 3~^~06/01/2015~ -~31036~^~631~^0.003^8^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 2, 3~^~06/01/2015~ -~31036~^~645~^1.236^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~646~^0.684^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~652~^0.043^8^0.002^~1~^~A~^^^1^0.035^0.058^4^0.038^0.048^~2, 3~^~06/01/2015~ -~31036~^~653~^0.025^8^0.001^~1~^~A~^^^1^0.019^0.032^3^0.020^0.029^~2, 3~^~06/01/2015~ -~31036~^~654~^0.002^8^0.000^~1~^~A~^^^1^0.000^0.003^3^0.001^0.003^~1, 2, 3~^~06/01/2015~ -~31036~^~662~^0.011^8^0.001^~1~^~A~^^^1^0.009^0.019^4^0.009^0.013^~2, 3~^~06/01/2015~ -~31036~^~663~^0.088^8^0.004^~1~^~A~^^^1^0.067^0.131^4^0.077^0.100^~2, 3~^~06/01/2015~ -~31036~^~664~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~31036~^~665~^0.028^8^0.001^~1~^~A~^^^1^0.020^0.038^4^0.025^0.031^~2, 3~^~06/01/2015~ -~31036~^~670~^0.018^8^0.000^~1~^~A~^^^1^0.016^0.024^2^0.017^0.020^~2, 3~^~06/01/2015~ -~31036~^~671~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~672~^0.002^8^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~06/01/2015~ -~31036~^~673~^0.067^8^0.003^~1~^~A~^^^1^0.053^0.094^4^0.059^0.076^~2, 3~^~06/01/2015~ -~31036~^~674~^1.007^8^0.041^~1~^~A~^^^1^0.888^1.284^4^0.892^1.121^~2, 3~^~06/01/2015~ -~31036~^~675~^0.527^8^0.032^~1~^~A~^^^1^0.128^0.891^2^0.395^0.659^~2, 3~^~06/01/2015~ -~31036~^~676~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~31036~^~685~^0.003^8^0.000^~1~^~A~^^^1^0.000^0.006^3^0.003^0.004^~1, 2, 3~^~06/01/2015~ -~31036~^~687~^0.008^8^0.000^~1~^~A~^^^1^0.007^0.010^4^0.007^0.009^~2, 3~^~06/01/2015~ -~31036~^~689~^0.005^8^0.000^~1~^~AS~^^^1^0.004^0.007^3^0.005^0.006^~2, 3~^~06/01/2015~ -~31036~^~693~^0.100^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~31036~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~31036~^~851~^0.085^8^0.006^~1~^~A~^^^1^0.026^0.143^2^0.060^0.111^~2, 3~^~06/01/2015~ -~31036~^~852~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.001^1^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~31036~^~853~^0.005^8^0.000^~1~^~A~^^^1^0.004^0.007^4^0.004^0.006^~2, 3~^~06/01/2015~ -~31036~^~856~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.001^~1, 2, 3~^~06/01/2015~ -~31036~^~858~^0.001^8^0.000^~1~^~A~^^^1^0.001^0.003^2^0.001^0.002^~1, 2, 3~^~06/01/2015~ -~32000~^~312~^0.186^6^0.005^~1~^~A~^^^1^0.171^0.200^5^0.174^0.198^~2, 3~^~08/01/2012~ -~32000~^~315~^0.952^6^0.011^~1~^~A~^^^1^0.904^0.989^5^0.922^0.981^~2, 3~^~08/01/2012~ -~32000~^~404~^0.687^3^0.024^~1~^~A~^^^1^0.640^0.720^2^0.583^0.790^~2, 3~^~08/01/2012~ -~32000~^~405~^0.113^3^0.003^~1~^~A~^^^1^0.110^0.120^2^0.099^0.128^~2, 3~^~08/01/2012~ -~32000~^~406~^5.287^3^0.334^~1~^~A~^^^1^4.630^5.720^2^3.850^6.723^~2, 3~^~08/01/2012~ -~32000~^~410~^0.530^2^^~1~^~A~^^^1^0.530^0.530^^^^^~08/01/2012~ -~32000~^~415~^0.160^3^0.010^~1~^~A~^^^1^0.150^0.180^2^0.117^0.203^~2, 3~^~08/01/2012~ -~32000~^~501~^0.113^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~502~^0.273^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~503~^0.370^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~504~^0.661^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~505~^0.247^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~506~^0.165^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~507~^0.225^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~508~^0.450^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~509~^0.264^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~510~^0.444^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~511~^0.490^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~512~^0.194^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~513~^0.357^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~514~^0.553^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~515~^2.702^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~516~^0.323^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~517~^0.787^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~518~^0.442^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~606~^0.310^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32000~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~611~^0.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~612~^0.013^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~613~^0.231^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~614~^0.063^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~617~^0.270^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~618~^0.340^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~619~^0.042^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~626~^0.012^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~628~^0.001^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32000~^~645~^0.283^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32000~^~646~^0.382^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~ -~32001~^~312~^0.054^6^0.001^~1~^~A~^^^1^0.052^0.056^5^0.052^0.056^~2, 3~^~08/01/2012~ -~32001~^~315~^0.261^6^0.003^~1~^~A~^^^1^0.253^0.276^5^0.252^0.270^~2, 3~^~08/01/2012~ -~32001~^~404~^0.163^3^0.003^~1~^~A~^^^1^0.160^0.170^2^0.149^0.178^~2, 3~^~08/01/2012~ -~32001~^~405~^0.018^3^0.002^~1~^~A~^^^1^0.015^0.020^2^0.011^0.026^~1, 2, 3~^~08/01/2012~ -~32001~^~406~^1.353^3^0.076^~1~^~A~^^^1^1.210^1.470^2^1.025^1.681^~2, 3~^~08/01/2012~ -~32001~^~410~^0.150^2^^~1~^~A~^^^1^0.150^0.150^^^^^~08/01/2012~ -~32001~^~415~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~605~^0.384^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~606~^0.682^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~607~^0.149^3^0.190^~1~^~A~^^^1^0.000^0.571^2^-0.628^1.009^~1, 2, 3~^~06/01/2014~ -~32001~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~612~^0.005^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2014~ -~32001~^~613~^0.322^3^0.011^~1~^~A~^^^1^0.395^0.432^2^0.362^0.458^~2, 3~^~06/01/2014~ -~32001~^~614~^0.181^3^0.006^~1~^~A~^^^1^0.222^0.242^2^0.206^0.256^~2, 3~^~06/01/2014~ -~32001~^~615~^0.009^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~06/01/2014~ -~32001~^~617~^1.111^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~32001~^~618~^0.806^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~32001~^~619~^0.105^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~32001~^~620~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~32001~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~624~^0.009^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~06/01/2014~ -~32001~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~ -~32001~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~628~^0.010^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.008^0.019^~2, 3~^~06/01/2014~ -~32001~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32001~^~631~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~08/01/2012~ -~32001~^~645~^1.126^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~646~^0.915^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~06/01/2014~ -~32001~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~06/01/2014~ -~32001~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~663~^0.366^3^0.012^~1~^~A~^^^1^0.449^0.489^2^0.416^0.517^~2, 3~^~06/01/2014~ -~32001~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~665~^0.019^3^0.002^~1~^~A~^^^1^0.020^0.026^2^0.016^0.032^~2, 3~^~06/01/2014~ -~32001~^~670~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~08/01/2012~ -~32001~^~671~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~08/01/2012~ -~32001~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~673~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2014~ -~32001~^~674~^0.745^3^0.027^~1~^~A~^^^1^0.911^1.002^2^0.834^1.066^~2, 3~^~06/01/2014~ -~32001~^~675~^0.786^3^0.024^~1~^~A~^^^1^0.973^1.049^2^0.901^1.104^~2, 3~^~06/01/2014~ -~32001~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~ -~32001~^~693~^0.366^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~32001~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~851~^0.105^3^0.004^~1~^~A~^^^1^0.130^0.141^2^0.119^0.149^~2, 3~^~06/01/2014~ -~32001~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32001~^~853~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~08/01/2012~ -~32001~^~858~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~08/01/2012~ -~32002~^~312~^0.166^6^0.004^~1~^~A~^^^1^0.157^0.179^5^0.157^0.176^~2, 3~^~08/01/2012~ -~32002~^~315~^0.882^6^0.016^~1~^~A~^^^1^0.831^0.932^5^0.842^0.923^~2, 3~^~08/01/2012~ -~32002~^~404~^0.603^3^0.015^~1~^~A~^^^1^0.580^0.630^2^0.541^0.666^~2, 3~^~08/01/2012~ -~32002~^~405~^0.087^3^0.007^~1~^~A~^^^1^0.080^0.100^2^0.058^0.115^~2, 3~^~08/01/2012~ -~32002~^~406~^6.127^3^0.105^~1~^~A~^^^1^5.960^6.320^2^5.676^6.577^~2, 3~^~08/01/2012~ -~32002~^~410~^0.715^2^^~1~^~A~^^^1^0.650^0.780^1^^^^~08/01/2012~ -~32002~^~415~^0.400^3^0.010^~1~^~A~^^^1^0.390^0.420^2^0.357^0.443^~2, 3~^~08/01/2012~ -~32002~^~501~^0.086^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~502~^0.221^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~503~^0.279^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~504~^0.523^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~505~^0.189^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~506~^0.145^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~507~^0.127^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~508~^0.320^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~509~^0.179^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~510~^0.374^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~511~^0.568^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~512~^0.150^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~513~^0.348^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~514~^0.639^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~515~^1.154^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~516~^0.296^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~517~^0.388^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~518~^0.296^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~605~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~606~^0.307^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32002~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~613~^0.269^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~614~^0.037^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~617~^0.343^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~618~^0.362^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~619~^0.015^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~626~^0.025^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~628~^0.005^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~645~^0.373^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32002~^~646~^0.377^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32002~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32002~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32003~^~312~^0.057^6^0.002^~1~^~A~^^^1^0.052^0.066^5^0.051^0.062^~2, 3~^~08/01/2012~ -~32003~^~315~^0.287^6^0.007^~1~^~A~^^^1^0.260^0.305^5^0.269^0.305^~2, 3~^~08/01/2012~ -~32003~^~404~^0.167^3^0.007^~1~^~A~^^^1^0.160^0.180^2^0.138^0.195^~2, 3~^~08/01/2012~ -~32003~^~405~^0.027^3^0.007^~1~^~A~^^^1^0.020^0.040^2^-0.002^0.055^~2, 3~^~08/01/2012~ -~32003~^~406~^1.853^3^0.043^~1~^~A~^^^1^1.810^1.940^2^1.667^2.040^~2, 3~^~08/01/2012~ -~32003~^~410~^0.245^2^^~1~^~A~^^^1^0.220^0.270^1^^^^~08/01/2012~ -~32003~^~415~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~08/01/2012~ -~32003~^~605~^0.521^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~606~^0.744^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~612~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.009^2^-0.006^0.017^~1, 2, 3~^~08/01/2012~ -~32003~^~613~^0.457^3^0.017^~1~^~A~^^^1^0.423^0.476^2^0.383^0.531^~2, 3~^~08/01/2012~ -~32003~^~614~^0.248^3^0.010^~1~^~A~^^^1^0.229^0.260^2^0.207^0.289^~2, 3~^~08/01/2012~ -~32003~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~08/01/2012~ -~32003~^~617~^1.517^3^0.062^~1~^~AS~^^^1^1.393^1.586^2^1.250^1.783^~2, 3~^~08/01/2012~ -~32003~^~618~^1.119^3^0.044^~1~^~AS~^^^1^1.030^1.164^2^0.928^1.309^~2, 3~^~08/01/2012~ -~32003~^~619~^0.146^3^0.007^~1~^~AS~^^^1^0.133^0.155^2^0.117^0.175^~2, 3~^~08/01/2012~ -~32003~^~620~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~32003~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~624~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~08/01/2012~ -~32003~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~626~^0.006^3^0.000^~1~^~AS~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~32003~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.017^~2, 3~^~08/01/2012~ -~32003~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~32003~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~645~^1.539^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~646~^1.268^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~652~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~32003~^~653~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~08/01/2012~ -~32003~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~32003~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~663~^0.497^3^0.020^~1~^~A~^^^1^0.458^0.524^2^0.411^0.584^~2, 3~^~08/01/2012~ -~32003~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~665~^0.023^3^0.003^~1~^~A~^^^1^0.020^0.029^2^0.011^0.035^~2, 3~^~08/01/2012~ -~32003~^~670~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~08/01/2012~ -~32003~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~08/01/2012~ -~32003~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~673~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~08/01/2012~ -~32003~^~674~^1.019^3^0.043^~1~^~A~^^^1^0.935^1.076^2^0.834^1.204^~2, 3~^~08/01/2012~ -~32003~^~675~^1.094^3^0.043^~1~^~A~^^^1^1.008^1.139^2^0.909^1.278^~2, 3~^~08/01/2012~ -~32003~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~685~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~08/01/2012~ -~32003~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~08/01/2012~ -~32003~^~693~^0.497^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32003~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~851~^0.144^3^0.006^~1~^~A~^^^1^0.133^0.151^2^0.120^0.168^~2, 3~^~08/01/2012~ -~32003~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32003~^~858~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~08/01/2012~ -~32004~^~312~^0.163^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~315~^0.470^12^0.010^~1~^~A~^^^1^0.420^0.538^8^0.447^0.493^~2, 3~^~08/01/2012~ -~32004~^~404~^0.525^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~405~^0.372^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~406~^4.003^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~415~^0.113^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~501~^0.147^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~502~^0.400^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~503~^0.474^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~504~^0.859^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~505~^0.424^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~506~^0.162^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~507~^0.169^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~508~^0.522^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~509~^0.290^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~510~^0.539^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~511~^0.375^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~512~^0.251^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~513~^0.352^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~514~^0.594^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~515~^3.192^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~516~^0.310^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~517~^1.171^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~518~^0.516^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~606~^1.184^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~607~^0.019^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~608~^0.009^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~609~^0.006^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~610~^0.013^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~611~^0.013^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~612~^0.051^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~613~^0.699^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~614~^0.270^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~617~^5.911^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~618~^2.102^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~619~^0.860^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~626~^0.031^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~628~^0.121^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~645~^6.070^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32004~^~646~^2.962^0^^~4~^~FLC~^^^^^^^^^^~01/01/2013~ -~32005~^~312~^0.067^12^0.002^~1~^~A~^^^1^0.060^0.087^6^0.062^0.072^~2, 3~^~08/01/2012~ -~32005~^~315~^0.224^12^0.005^~1~^~A~^^^1^0.197^0.253^9^0.213^0.236^~2, 3~^~08/01/2012~ -~32005~^~404~^0.155^2^^~1~^~A~^^^1^0.150^0.160^^^^^~08/01/2012~ -~32005~^~405~^0.090^2^^~1~^~A~^^^1^0.080^0.100^^^^^~08/01/2012~ -~32005~^~406~^1.150^2^^~1~^~A~^^^1^1.100^1.200^^^^^~08/01/2012~ -~32005~^~410~^0.415^2^^~1~^~A~^^^1^0.410^0.420^^^^^~08/01/2012~ -~32005~^~415~^0.025^2^^~1~^~A~^^^1^0.020^0.030^^^^^~08/01/2012~ -~32005~^~605~^0.092^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~606~^1.636^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~607~^0.045^12^0.001^~1~^~A~^^^1^0.036^0.053^9^0.043^0.046^~2, 3~^~08/01/2012~ -~32005~^~608~^0.033^12^0.001^~1~^~A~^^^1^0.024^0.039^9^0.031^0.034^~2, 3~^~08/01/2012~ -~32005~^~609~^0.028^12^0.001^~1~^~A~^^^1^0.023^0.032^10^0.027^0.029^~2, 3~^~08/01/2012~ -~32005~^~610~^0.059^12^0.001^~1~^~A~^^^1^0.047^0.070^10^0.057^0.061^~2, 3~^~08/01/2012~ -~32005~^~611~^0.066^12^0.001^~1~^~A~^^^1^0.050^0.080^10^0.064^0.068^~2, 3~^~08/01/2012~ -~32005~^~612~^0.218^12^0.003^~1~^~A~^^^1^0.163^0.260^9^0.210^0.225^~2, 3~^~08/01/2012~ -~32005~^~613~^0.810^12^0.012^~1~^~A~^^^1^0.643^0.949^9^0.783^0.837^~2, 3~^~08/01/2012~ -~32005~^~614~^0.299^12^0.004^~1~^~A~^^^1^0.242^0.346^10^0.290^0.309^~2, 3~^~08/01/2012~ -~32005~^~615~^0.019^12^0.000^~1~^~A~^^^1^0.016^0.022^9^0.018^0.020^~2, 3~^~08/01/2012~ -~32005~^~617~^2.089^12^0.028^~1~^~AS~^^^1^1.757^2.407^9^2.026^2.152^~2, 3~^~08/01/2012~ -~32005~^~618~^0.786^12^0.009^~1~^~AS~^^^1^0.692^0.876^9^0.766^0.807^~2, 3~^~08/01/2012~ -~32005~^~619~^0.230^12^0.004^~1~^~AS~^^^1^0.193^0.264^8^0.222^0.238^~2, 3~^~08/01/2012~ -~32005~^~620~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.007^9^0.002^0.005^~1, 2, 3~^~08/01/2012~ -~32005~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.000^~1, 2, 3~^~08/01/2012~ -~32005~^~624~^0.011^12^0.000^~1~^~A~^^^1^0.009^0.013^7^0.011^0.012^~2, 3~^~08/01/2012~ -~32005~^~625~^0.017^12^0.000^~1~^~A~^^^1^0.013^0.020^9^0.016^0.018^~2, 3~^~08/01/2012~ -~32005~^~626~^0.043^12^0.001^~1~^~AS~^^^1^0.031^0.052^9^0.041^0.045^~2, 3~^~08/01/2012~ -~32005~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~08/01/2012~ -~32005~^~628~^0.057^12^0.001^~1~^~A~^^^1^0.048^0.067^9^0.055^0.059^~2, 3~^~08/01/2012~ -~32005~^~629~^0.012^12^0.002^~1~^~A~^^^1^0.002^0.024^10^0.008^0.016^~1, 2, 3~^~08/01/2012~ -~32005~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.001^0.002^10^0.001^0.002^~2, 3~^~08/01/2012~ -~32005~^~631~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^10^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~32005~^~645~^2.216^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~646~^1.044^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~652~^0.024^12^0.000^~1~^~A~^^^1^0.018^0.029^10^0.023^0.025^~2, 3~^~08/01/2012~ -~32005~^~653~^0.016^12^0.000^~1~^~A~^^^1^0.013^0.020^9^0.016^0.017^~2, 3~^~08/01/2012~ -~32005~^~654~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.007^9^0.006^0.007^~2, 3~^~08/01/2012~ -~32005~^~662~^0.008^12^0.000^~1~^~A~^^^1^0.006^0.010^10^0.008^0.008^~2, 3~^~08/01/2012~ -~32005~^~663~^0.061^12^0.001^~1~^~A~^^^1^0.049^0.070^9^0.059^0.064^~2, 3~^~08/01/2012~ -~32005~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~665~^0.022^12^0.001^~1~^~A~^^^1^0.014^0.027^9^0.020^0.024^~2, 3~^~08/01/2012~ -~32005~^~670~^0.015^12^0.000^~1~^~A~^^^1^0.012^0.017^8^0.014^0.016^~2, 3~^~08/01/2012~ -~32005~^~671~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.005^9^0.001^0.003^~1, 2, 3~^~08/01/2012~ -~32005~^~672~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^10^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~32005~^~673~^0.035^12^0.001^~1~^~A~^^^1^0.025^0.043^10^0.033^0.037^~2, 3~^~08/01/2012~ -~32005~^~674~^2.028^12^0.027^~1~^~A~^^^1^1.708^2.337^9^1.967^2.089^~2, 3~^~08/01/2012~ -~32005~^~675~^0.749^12^0.008^~1~^~A~^^^1^0.665^0.833^9^0.730^0.767^~2, 3~^~08/01/2012~ -~32005~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^10^0.001^0.002^~1, 2, 3~^~08/01/2012~ -~32005~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^9^0.001^0.001^~1, 2, 3~^~08/01/2012~ -~32005~^~687~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.008^10^0.006^0.007^~2, 3~^~08/01/2012~ -~32005~^~689~^0.003^12^0.000^~1~^~AS~^^^1^0.003^0.004^9^0.003^0.004^~2, 3~^~08/01/2012~ -~32005~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~ -~32005~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~851~^0.229^12^0.004^~1~^~A~^^^1^0.193^0.263^8^0.221^0.238^~2, 3~^~08/01/2012~ -~32005~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~08/01/2012~ -~32005~^~853~^0.003^12^0.000^~1~^~A~^^^1^0.003^0.004^9^0.003^0.004^~2, 3~^~08/01/2012~ -~32005~^~858~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^10^0.002^0.003^~1, 2, 3~^~08/01/2012~ -~32006~^~312~^0.100^12^0.003^~1~^~A~^^^1^0.081^0.139^7^0.093^0.106^~2, 3~^~04/01/2013~ -~32006~^~315~^0.387^12^0.018^~1~^~A~^^^1^0.301^0.633^6^0.343^0.432^~2, 3~^~04/01/2013~ -~32006~^~404~^0.331^6^0.010^~1~^~A~^^^1^0.260^0.430^3^0.298^0.365^~2, 3~^~04/01/2013~ -~32006~^~405~^0.277^6^0.008^~1~^~A~^^^1^0.230^0.340^3^0.250^0.305^~2, 3~^~04/01/2013~ -~32006~^~406~^3.850^6^0.079^~1~^~A~^^^1^3.250^4.660^3^3.602^4.098^~2, 3~^~04/01/2013~ -~32006~^~410~^0.481^4^0.017^~1~^~A~^^^1^0.460^0.530^1^0.345^0.617^~2, 3~^~04/01/2013~ -~32006~^~415~^0.140^6^0.003^~1~^~A~^^^1^0.128^0.152^4^0.133^0.148^~2, 3~^~04/01/2013~ -~32006~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~502~^0.269^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~503~^0.358^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~504~^0.717^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~505~^0.468^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~506~^0.189^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~507~^0.199^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~508~^0.418^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~509~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~510~^0.428^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~511~^0.478^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~512~^0.249^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~513~^0.368^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~514~^0.627^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~515~^2.549^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~516~^0.408^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~517~^1.145^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~518~^0.468^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32006~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32006~^~605~^0.071^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~606~^2.310^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~607~^0.028^6^0.001^~1~^~A~^^^1^0.019^0.035^4^0.025^0.031^~2, 3~^~04/01/2013~ -~32006~^~608~^0.017^6^0.001^~1~^~A~^^^1^0.009^0.023^4^0.015^0.019^~2, 3~^~04/01/2013~ -~32006~^~609~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.012^2^0.006^0.010^~2, 3~^~04/01/2013~ -~32006~^~610~^0.026^6^0.002^~1~^~A~^^^1^0.013^0.040^3^0.018^0.033^~2, 3~^~04/01/2013~ -~32006~^~611~^0.031^6^0.004^~1~^~A~^^^1^0.017^0.051^3^0.018^0.044^~2, 3~^~04/01/2013~ -~32006~^~612~^0.131^6^0.008^~1~^~A~^^^1^0.095^0.179^3^0.106^0.157^~2, 3~^~04/01/2013~ -~32006~^~613~^1.416^6^0.023^~1~^~A~^^^1^1.034^1.761^3^1.346^1.486^~2, 3~^~04/01/2013~ -~32006~^~614~^0.537^6^0.012^~1~^~A~^^^1^0.422^0.617^2^0.489^0.585^~2, 3~^~04/01/2013~ -~32006~^~615~^0.043^6^0.002^~1~^~A~^^^1^0.027^0.070^2^0.035^0.051^~2, 3~^~04/01/2013~ -~32006~^~617~^4.573^6^0.172^~1~^~AS~^^^1^2.561^7.591^2^3.921^5.225^~2, 3~^~04/01/2013~ -~32006~^~618~^3.619^6^0.065^~1~^~AS~^^^1^2.384^4.722^4^3.438^3.799^~2, 3~^~04/01/2013~ -~32006~^~619~^0.593^6^0.018^~1~^~AS~^^^1^0.505^0.746^2^0.526^0.659^~2, 3~^~04/01/2013~ -~32006~^~620~^0.011^6^0.001^~1~^~A~^^^1^0.009^0.014^3^0.009^0.013^~2, 3~^~04/01/2013~ -~32006~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~624~^0.030^6^0.001^~1~^~A~^^^1^0.027^0.036^2^0.027^0.033^~2, 3~^~04/01/2013~ -~32006~^~625~^0.007^6^0.001^~1~^~A~^^^1^0.000^0.015^2^0.004^0.010^~1, 2, 3~^~04/01/2013~ -~32006~^~626~^0.095^6^0.009^~1~^~AS~^^^1^0.073^0.136^2^0.059^0.131^~2, 3~^~04/01/2013~ -~32006~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~628~^0.153^6^0.003^~1~^~A~^^^1^0.080^0.252^3^0.142^0.165^~2, 3~^~04/01/2013~ -~32006~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~32006~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.003^2^0.000^0.002^~2, 3~^~04/01/2013~ -~32006~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~32006~^~645~^4.835^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~646~^4.235^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~652~^0.015^6^0.001^~1~^~A~^^^1^0.011^0.020^2^0.011^0.018^~2, 3~^~04/01/2013~ -~32006~^~653~^0.015^6^0.001^~1~^~A~^^^1^0.010^0.020^3^0.013^0.017^~2, 3~^~04/01/2013~ -~32006~^~654~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.021^2^0.012^0.016^~2, 3~^~04/01/2013~ -~32006~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~32006~^~663~^0.044^6^0.001^~1~^~A~^^^1^0.040^0.048^4^0.040^0.048^~2, 3~^~04/01/2013~ -~32006~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~665~^0.024^6^0.000^~1~^~A~^^^1^0.019^0.028^4^0.022^0.025^~2, 3~^~04/01/2013~ -~32006~^~670~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.007^2^0.003^0.006^~2, 3~^~04/01/2013~ -~32006~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~672~^0.005^6^0.001^~1~^~A~^^^1^0.004^0.007^4^0.004^0.007^~2, 3~^~04/01/2013~ -~32006~^~673~^0.092^6^0.009^~1~^~A~^^^1^0.071^0.133^2^0.055^0.129^~2, 3~^~04/01/2013~ -~32006~^~674~^4.529^6^0.172^~1~^~A~^^^1^2.513^7.546^2^3.879^5.179^~2, 3~^~04/01/2013~ -~32006~^~675~^3.591^6^0.065^~1~^~A~^^^1^2.362^4.691^4^3.409^3.772^~2, 3~^~04/01/2013~ -~32006~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~32006~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~687~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2013~ -~32006~^~689~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^2^0.003^0.004^~2, 3~^~04/01/2013~ -~32006~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~695~^0.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32006~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~851~^0.593^6^0.018^~1~^~A~^^^1^0.505^0.746^2^0.526^0.659^~2, 3~^~04/01/2013~ -~32006~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.003^0.004^~1, 2, 3~^~04/01/2013~ -~32006~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32006~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~32007~^~312~^0.102^11^0.002^~1~^~A~^^^1^0.086^0.115^7^0.097^0.106^~2, 3~^~04/01/2013~ -~32007~^~315~^0.362^11^0.007^~1~^~A~^^^1^0.308^0.468^8^0.346^0.377^~2, 3~^~04/01/2013~ -~32007~^~404~^0.331^6^0.005^~1~^~A~^^^1^0.270^0.420^3^0.312^0.350^~2, 3~^~04/01/2013~ -~32007~^~405~^0.309^6^0.009^~1~^~A~^^^1^0.250^0.360^3^0.277^0.342^~2, 3~^~04/01/2013~ -~32007~^~406~^3.537^6^0.098^~1~^~A~^^^1^3.000^4.400^4^3.252^3.821^~2, 3~^~04/01/2013~ -~32007~^~410~^0.342^4^0.009^~1~^~A~^^^1^0.290^0.400^2^0.286^0.399^~2, 3~^~04/01/2013~ -~32007~^~415~^0.179^6^0.031^~1~^~A~^^^1^0.139^0.363^2^0.045^0.312^~2, 3~^~04/01/2013~ -~32007~^~501~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~502~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~503~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~504~^0.681^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~505~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~506~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~507~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~508~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~509~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~510~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~511~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~512~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~513~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~514~^0.560^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~515~^2.432^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~516~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~517~^0.901^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~518~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~32007~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~32007~^~605~^0.147^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~606~^2.621^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~607~^0.031^6^0.002^~1~^~A~^^^1^0.011^0.050^2^0.024^0.038^~2, 3~^~04/01/2013~ -~32007~^~608~^0.019^6^0.001^~1~^~A~^^^1^0.007^0.032^2^0.014^0.025^~2, 3~^~04/01/2013~ -~32007~^~609~^0.010^6^0.001^~1~^~A~^^^1^0.000^0.018^4^0.007^0.013^~1, 2, 3~^~04/01/2013~ -~32007~^~610~^0.028^6^0.003^~1~^~A~^^^1^0.000^0.052^4^0.021^0.036^~1, 2, 3~^~04/01/2013~ -~32007~^~611~^0.036^6^0.002^~1~^~A~^^^1^0.010^0.061^3^0.028^0.043^~2, 3~^~04/01/2013~ -~32007~^~612~^0.182^6^0.005^~1~^~A~^^^1^0.066^0.272^4^0.167^0.197^~2, 3~^~04/01/2013~ -~32007~^~613~^1.538^6^0.013^~1~^~A~^^^1^0.982^1.972^4^1.501^1.576^~2, 3~^~04/01/2013~ -~32007~^~614~^0.638^6^0.008^~1~^~A~^^^1^0.460^0.777^4^0.617^0.660^~2, 3~^~04/01/2013~ -~32007~^~615~^0.045^6^0.001^~1~^~A~^^^1^0.030^0.068^2^0.042^0.049^~2, 3~^~04/01/2013~ -~32007~^~617~^4.828^6^0.098^~1~^~AS~^^^1^2.980^7.426^3^4.487^5.169^~2, 3~^~04/01/2013~ -~32007~^~618~^3.551^6^0.052^~1~^~AS~^^^1^2.232^4.633^3^3.396^3.706^~2, 3~^~04/01/2013~ -~32007~^~619~^0.615^6^0.020^~1~^~AS~^^^1^0.513^0.782^3^0.549^0.681^~2, 3~^~04/01/2013~ -~32007~^~620~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.009^4^0.005^0.009^~2, 3~^~04/01/2013~ -~32007~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~624~^0.031^6^0.001^~1~^~A~^^^1^0.026^0.038^3^0.028^0.033^~2, 3~^~04/01/2013~ -~32007~^~625~^0.024^6^0.002^~1~^~A~^^^1^0.000^0.041^4^0.018^0.030^~1, 2, 3~^~04/01/2013~ -~32007~^~626~^0.100^6^0.004^~1~^~AS~^^^1^0.056^0.144^2^0.086^0.115^~2, 3~^~04/01/2013~ -~32007~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~628~^0.156^6^0.004^~1~^~A~^^^1^0.072^0.264^3^0.144^0.167^~2, 3~^~04/01/2013~ -~32007~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^4^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~32007~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.004^2^0.001^0.002^~2, 3~^~04/01/2013~ -~32007~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^4^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~32007~^~645~^5.127^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~646~^4.187^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~652~^0.019^6^0.001^~1~^~A~^^^1^0.009^0.028^4^0.015^0.023^~2, 3~^~04/01/2013~ -~32007~^~653~^0.028^6^0.002^~1~^~A~^^^1^0.014^0.042^3^0.022^0.033^~2, 3~^~04/01/2013~ -~32007~^~654~^0.015^6^0.001^~1~^~A~^^^1^0.011^0.022^3^0.013^0.017^~2, 3~^~04/01/2013~ -~32007~^~662~^0.008^6^0.001^~1~^~A~^^^1^0.003^0.012^3^0.006^0.009^~2, 3~^~04/01/2013~ -~32007~^~663~^0.100^6^0.008^~1~^~A~^^^1^0.066^0.152^2^0.067^0.133^~2, 3~^~04/01/2013~ -~32007~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~665~^0.040^6^0.005^~1~^~A~^^^1^0.019^0.056^4^0.026^0.053^~2, 3~^~04/01/2013~ -~32007~^~670~^0.012^6^0.000^~1~^~A~^^^1^0.003^0.019^3^0.010^0.013^~2, 3~^~04/01/2013~ -~32007~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~672~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.007^3^0.003^0.005^~2, 3~^~04/01/2013~ -~32007~^~673~^0.093^6^0.003^~1~^~A~^^^1^0.053^0.132^2^0.080^0.105^~2, 3~^~04/01/2013~ -~32007~^~674~^4.728^6^0.097^~1~^~A~^^^1^2.873^7.360^2^4.369^5.087^~2, 3~^~04/01/2013~ -~32007~^~675~^3.500^6^0.053^~1~^~A~^^^1^2.183^4.565^4^3.350^3.650^~2, 3~^~04/01/2013~ -~32007~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.004^2^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~32007~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~687~^0.018^6^0.002^~1~^~A~^^^1^0.009^0.030^2^0.011^0.025^~2, 3~^~04/01/2013~ -~32007~^~689~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^2^0.003^0.004^~2, 3~^~04/01/2013~ -~32007~^~693~^0.108^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32007~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~851~^0.615^6^0.020^~1~^~A~^^^1^0.513^0.782^3^0.549^0.681^~2, 3~^~04/01/2013~ -~32007~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^2^0.003^0.004^~1, 2, 3~^~04/01/2013~ -~32007~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~32007~^~858~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^2^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~32008~^~312~^0.140^6^0.007^~1~^~A~^^^1^0.116^0.166^5^0.123^0.157^~2, 3~^~04/01/2013~ -~32008~^~315~^0.655^6^0.024^~1~^~A~^^^1^0.568^0.732^5^0.594^0.717^~2, 3~^~04/01/2013~ -~32008~^~404~^0.860^3^0.107^~1~^~A~^^^1^0.650^1.000^2^0.400^1.320^~2, 3~^~04/01/2013~ -~32008~^~405~^0.433^3^0.047^~1~^~A~^^^1^0.340^0.480^2^0.233^0.634^~2, 3~^~04/01/2013~ -~32008~^~406~^5.703^3^0.617^~1~^~A~^^^1^4.520^6.600^2^3.047^8.359^~2, 3~^~04/01/2013~ -~32008~^~410~^0.595^2^^~1~^~A~^^^1^0.580^0.610^1^^^^~04/01/2013~ -~32008~^~415~^0.127^3^0.009^~1~^~A~^^^1^0.110^0.140^2^0.089^0.165^~2, 3~^~04/01/2013~ -~32008~^~605~^0.054^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~606~^0.368^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~607~^0.015^2^^~1~^~A~^^^1^0.015^0.016^1^^^^~04/01/2013~ -~32008~^~608~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~04/01/2013~ -~32008~^~609~^0.020^2^^~1~^~A~^^^1^0.020^0.020^^^^^~04/01/2013~ -~32008~^~610~^0.021^2^^~1~^~A~^^^1^0.021^0.022^1^^^^~04/01/2013~ -~32008~^~611~^0.018^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~04/01/2013~ -~32008~^~612~^0.017^2^^~1~^~A~^^^1^0.017^0.017^^^^^~04/01/2013~ -~32008~^~613~^0.201^2^^~1~^~A~^^^1^0.200^0.202^1^^^^~04/01/2013~ -~32008~^~614~^0.058^2^^~1~^~A~^^^1^0.057^0.060^1^^^^~04/01/2013~ -~32008~^~615~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~04/01/2013~ -~32008~^~617~^0.283^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~618~^0.470^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~624~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~04/01/2013~ -~32008~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~626~^0.003^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~628~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~04/01/2013~ -~32008~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~645~^0.292^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~646~^0.497^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~652~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~32008~^~653~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2013~ -~32008~^~654~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2013~ -~32008~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~663~^0.045^2^^~1~^~A~^^^1^0.041^0.048^1^^^^~04/01/2013~ -~32008~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~665~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~04/01/2013~ -~32008~^~670~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2013~ -~32008~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~672~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2013~ -~32008~^~673~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~04/01/2013~ -~32008~^~674~^0.239^2^^~1~^~A~^^^1^0.232^0.246^1^^^^~04/01/2013~ -~32008~^~675~^0.459^2^^~1~^~A~^^^1^0.455^0.464^1^^^^~04/01/2013~ -~32008~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~687~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2013~ -~32008~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32008~^~693~^0.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32008~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~851~^0.027^2^^~1~^~A~^^^1^0.026^0.027^1^^^^~04/01/2013~ -~32008~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32008~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~312~^0.163^6^0.003^~1~^~A~^^^1^0.156^0.179^5^0.155^0.172^~2, 3~^~04/01/2013~ -~32009~^~315~^0.657^6^0.009^~1~^~A~^^^1^0.627^0.675^5^0.635^0.680^~2, 3~^~04/01/2013~ -~32009~^~404~^2.360^3^0.081^~1~^~A~^^^1^2.260^2.520^2^2.012^2.708^~2, 3~^~04/01/2013~ -~32009~^~405~^0.423^3^0.027^~1~^~A~^^^1^0.370^0.450^2^0.309^0.538^~2, 3~^~04/01/2013~ -~32009~^~406~^5.240^3^0.730^~1~^~A~^^^1^3.790^6.110^2^2.100^8.380^~2, 3~^~04/01/2013~ -~32009~^~410~^0.570^2^^~1~^~A~^^^1^0.570^0.570^^^^^~04/01/2013~ -~32009~^~415~^0.133^3^0.009^~1~^~A~^^^1^0.120^0.150^2^0.095^0.171^~2, 3~^~04/01/2013~ -~32009~^~605~^0.106^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~606~^0.439^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~609~^0.005^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2013~ -~32009~^~610~^0.019^2^^~1~^~A~^^^1^0.009^0.011^1^^^^~07/01/2013~ -~32009~^~611~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2013~ -~32009~^~612~^0.002^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2013~ -~32009~^~613~^0.280^2^^~1~^~A~^^^1^0.135^0.155^1^^^^~07/01/2013~ -~32009~^~614~^0.110^2^^~1~^~A~^^^1^0.056^0.058^1^^^^~07/01/2013~ -~32009~^~615~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2013~ -~32009~^~617~^0.490^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~32009~^~618~^0.768^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~32009~^~619~^0.039^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~32009~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~624~^0.005^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2013~ -~32009~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2013~ -~32009~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~628~^0.009^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~07/01/2013~ -~32009~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32009~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~645~^0.501^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~646~^0.808^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~652~^0.005^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2013~ -~32009~^~653~^0.002^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2013~ -~32009~^~654~^0.004^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~07/01/2013~ -~32009~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~663~^0.088^2^^~1~^~A~^^^1^0.044^0.047^1^^^^~07/01/2013~ -~32009~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~665~^0.018^2^^~1~^~A~^^^1^0.008^0.011^1^^^^~07/01/2013~ -~32009~^~670~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~672~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2013~ -~32009~^~673~^0.002^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2013~ -~32009~^~674~^0.403^2^^~1~^~A~^^^1^0.199^0.218^1^^^^~07/01/2013~ -~32009~^~675~^0.750^2^^~1~^~A~^^^1^0.367^0.409^1^^^^~07/01/2013~ -~32009~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32009~^~693~^0.088^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32009~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~851~^0.039^2^^~1~^~A~^^^1^0.019^0.022^1^^^^~07/01/2013~ -~32009~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32009~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~312~^0.154^6^0.003^~1~^~A~^^^1^0.142^0.160^5^0.147^0.161^~2, 3~^~04/01/2013~ -~32010~^~315~^0.582^6^0.015^~1~^~A~^^^1^0.550^0.647^5^0.544^0.620^~2, 3~^~04/01/2013~ -~32010~^~404~^0.700^3^0.023^~1~^~A~^^^1^0.660^0.740^2^0.601^0.799^~2, 3~^~04/01/2013~ -~32010~^~405~^0.427^3^0.038^~1~^~A~^^^1^0.370^0.500^2^0.261^0.592^~2, 3~^~04/01/2013~ -~32010~^~406~^5.577^3^0.267^~1~^~A~^^^1^5.140^6.060^2^4.430^6.724^~2, 3~^~04/01/2013~ -~32010~^~410~^0.600^2^^~1~^~A~^^^1^0.560^0.640^1^^^^~04/01/2013~ -~32010~^~415~^0.160^3^0.006^~1~^~A~^^^1^0.150^0.170^2^0.135^0.185^~2, 3~^~04/01/2013~ -~32010~^~605~^0.089^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~606~^0.443^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~607~^0.014^2^^~1~^~A~^^^1^0.013^0.014^1^^^^~04/01/2013~ -~32010~^~608~^0.008^2^^~1~^~A~^^^1^0.007^0.008^1^^^^~04/01/2013~ -~32010~^~609~^0.020^2^^~1~^~A~^^^1^0.018^0.022^1^^^^~04/01/2013~ -~32010~^~610~^0.028^2^^~1~^~A~^^^1^0.027^0.030^1^^^^~04/01/2013~ -~32010~^~611~^0.013^2^^~1~^~A~^^^1^0.012^0.014^1^^^^~04/01/2013~ -~32010~^~612~^0.036^2^^~1~^~A~^^^1^0.036^0.036^^^^^~04/01/2013~ -~32010~^~613~^0.241^2^^~1~^~A~^^^1^0.231^0.250^1^^^^~04/01/2013~ -~32010~^~614~^0.066^2^^~1~^~A~^^^1^0.065^0.067^1^^^^~04/01/2013~ -~32010~^~615~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2013~ -~32010~^~617~^0.405^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~618~^0.388^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~620~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~04/01/2013~ -~32010~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~624~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~32010~^~625~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~32010~^~626~^0.007^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~628~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2013~ -~32010~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~645~^0.423^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~646~^0.415^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~652~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2013~ -~32010~^~653~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2013~ -~32010~^~654~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2013~ -~32010~^~662~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~04/01/2013~ -~32010~^~663~^0.070^2^^~1~^~A~^^^1^0.066^0.075^1^^^^~04/01/2013~ -~32010~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~665~^0.017^2^^~1~^~A~^^^1^0.017^0.018^1^^^^~04/01/2013~ -~32010~^~670~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~32010~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~673~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2013~ -~32010~^~674~^0.335^2^^~1~^~A~^^^1^0.332^0.338^1^^^^~04/01/2013~ -~32010~^~675~^0.367^2^^~1~^~A~^^^1^0.341^0.394^1^^^^~04/01/2013~ -~32010~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~687~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~04/01/2013~ -~32010~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32010~^~693~^0.071^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32010~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~851~^0.027^2^^~1~^~A~^^^1^0.025^0.028^1^^^^~04/01/2013~ -~32010~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32010~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32011~^~312~^0.272^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~404~^0.395^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~405~^0.128^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~406~^3.509^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~415~^0.580^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~606~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~ -~32011~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~617~^0.426^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~618~^0.400^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~619~^0.427^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~620~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~626~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~631~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~645~^0.430^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~646~^0.833^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~ -~32011~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32011~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~ -~32012~^~312~^0.131^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~404~^0.202^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~405~^0.212^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~406~^2.075^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~410~^0.146^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~415~^0.070^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~605~^1.200^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~ -~32012~^~606~^2.494^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32012~^~607~^0.050^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~608~^0.010^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~609~^0.012^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~610~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~611~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~612~^0.168^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~613~^1.475^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~614~^0.678^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~617~^3.758^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~618~^2.646^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~619~^0.200^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~626~^0.066^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~645~^3.849^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~646~^2.853^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32012~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~312~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~404~^0.367^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~405~^0.127^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~406~^2.236^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~410~^0.340^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~415~^0.248^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~606~^1.724^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32013~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~610~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~611~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~612~^0.071^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~613~^1.043^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~614~^0.553^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~615~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~617~^2.276^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~618~^0.684^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~619~^0.057^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~620~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~626~^0.166^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~628~^0.040^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~645~^2.519^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~646~^0.782^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32013~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32014~^~312~^0.168^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~404~^0.540^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~405~^0.383^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~406~^4.118^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~415~^0.117^0^^~4~^~BFPN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32014~^~606~^0.409^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~607~^0.007^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~608~^0.003^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~609~^0.002^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~610~^0.005^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~611~^0.005^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~612~^0.019^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~613~^0.264^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~614~^0.102^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~617~^2.234^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~618~^0.794^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~619~^0.325^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~620~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~621~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~626~^0.012^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~627~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~628~^0.046^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~629~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~630~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~631~^0.000^0^^~4~^~BFFN~^~32004~^^^^^^^^^~04/01/2013~ -~32014~^~645~^2.291^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32014~^~646~^1.119^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32015~^~312~^0.093^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~404~^0.236^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~405~^0.201^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~406~^1.575^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~415~^0.095^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~606~^4.724^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~ -~32015~^~607~^0.194^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~608~^0.049^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~609~^0.052^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~610~^0.104^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~611~^0.175^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~612~^0.628^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~613~^2.500^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~614~^0.822^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~615~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~617~^2.741^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~618~^0.997^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~619~^0.138^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~620~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~624~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~626~^0.188^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~645~^3.014^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~646~^1.140^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~672~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32015~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~ -~32016~^~312~^0.193^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~404~^1.040^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~405~^0.626^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~406~^3.882^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~415~^0.142^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32016~^~606~^2.814^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32016~^~607~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~608~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~609~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~610~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~611~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~612~^0.400^0^^~4~^~BFZN~^~22959~^^^^^^^^^~07/01/2013~ -~32016~^~613~^1.883^0^^~4~^~BFZN~^~22959~^^^^^^^^^~07/01/2013~ -~32016~^~614~^0.531^0^^~4~^~BFZN~^~22959~^^^^^^^^^~07/01/2013~ -~32016~^~617~^1.625^0^^~4~^~BFZN~^~22959~^^^^^^^^^~07/01/2013~ -~32016~^~618~^1.987^0^^~4~^~BFZN~^~22959~^^^^^^^^^~07/01/2013~ -~32016~^~619~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~620~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~621~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~626~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~627~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~628~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~629~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~630~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~631~^0.000^0^^~4~^~BFZN~^~22959~^^^^^^^^^~04/01/2013~ -~32016~^~645~^1.625^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32016~^~646~^1.987^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~32017~^~312~^0.164^6^0.005^~1~^~A~^^^1^0.151^0.188^5^0.150^0.178^~2, 3~^~04/01/2013~ -~32017~^~315~^0.688^6^0.023^~1~^~A~^^^1^0.620^0.786^5^0.630^0.746^~2, 3~^~04/01/2013~ -~32017~^~404~^0.813^3^0.049^~1~^~A~^^^1^0.730^0.900^2^0.602^1.024^~2, 3~^~04/01/2013~ -~32017~^~405~^0.537^3^0.003^~1~^~A~^^^1^0.530^0.540^2^0.522^0.551^~2, 3~^~04/01/2013~ -~32017~^~406~^6.067^3^0.204^~1~^~A~^^^1^5.690^6.390^2^5.190^6.943^~2, 3~^~04/01/2013~ -~32017~^~410~^0.760^2^^~1~^~A~^^^1^0.760^0.760^^^^^~04/01/2013~ -~32017~^~415~^0.153^3^0.012^~1~^~A~^^^1^0.130^0.170^2^0.101^0.205^~2, 3~^~04/01/2013~ -~32017~^~605~^0.099^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~606~^0.697^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~607~^0.018^2^^~1~^~A~^^^1^0.018^0.019^1^^^^~04/01/2013~ -~32017~^~608~^0.013^2^^~1~^~A~^^^1^0.013^0.013^^^^^~04/01/2013~ -~32017~^~609~^0.011^2^^~1~^~A~^^^1^0.011^0.012^1^^^^~04/01/2013~ -~32017~^~610~^0.028^2^^~1~^~A~^^^1^0.028^0.029^1^^^^~04/01/2013~ -~32017~^~611~^0.024^2^^~1~^~A~^^^1^0.024^0.024^^^^^~04/01/2013~ -~32017~^~612~^0.079^2^^~1~^~A~^^^1^0.079^0.080^1^^^^~04/01/2013~ -~32017~^~613~^0.395^2^^~1~^~A~^^^1^0.386^0.404^1^^^^~04/01/2013~ -~32017~^~614~^0.101^2^^~1~^~A~^^^1^0.000^0.202^1^^^~1~^~04/01/2013~ -~32017~^~615~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~04/01/2013~ -~32017~^~617~^0.516^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~618~^0.485^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~619~^0.030^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~620~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2013~ -~32017~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~624~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2013~ -~32017~^~625~^0.008^2^^~1~^~A~^^^1^0.007^0.009^1^^^^~04/01/2013~ -~32017~^~626~^0.013^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~628~^0.007^2^^~1~^~A~^^^1^0.006^0.007^1^^^^~04/01/2013~ -~32017~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~645~^0.546^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~646~^0.519^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~652~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~04/01/2013~ -~32017~^~653~^0.006^2^^~1~^~A~^^^1^0.006^0.006^^^^^~04/01/2013~ -~32017~^~654~^0.003^2^^~1~^~A~^^^1^0.003^0.003^^^^^~04/01/2013~ -~32017~^~662~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2013~ -~32017~^~663~^0.082^2^^~1~^~A~^^^1^0.082^0.083^1^^^^~04/01/2013~ -~32017~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~665~^0.015^2^^~1~^~A~^^^1^0.014^0.016^1^^^^~04/01/2013~ -~32017~^~670~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~04/01/2013~ -~32017~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~672~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2013~ -~32017~^~673~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~04/01/2013~ -~32017~^~674~^0.434^2^^~1~^~A~^^^1^0.423^0.445^1^^^^~04/01/2013~ -~32017~^~675~^0.466^2^^~1~^~A~^^^1^0.445^0.487^1^^^^~04/01/2013~ -~32017~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~687~^0.002^2^^~1~^~A~^^^1^0.002^0.002^^^^~1~^~04/01/2013~ -~32017~^~689~^0.001^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~ -~32017~^~693~^0.084^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~32017~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~851~^0.030^2^^~1~^~A~^^^1^0.029^0.031^1^^^^~04/01/2013~ -~32017~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~853~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~04/01/2013~ -~32017~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32017~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2013~ -~32018~^~312~^0.190^12^0.004^~1~^~A~^^^1^0.167^0.211^8^0.180^0.200^~2, 3~^~04/01/2014~ -~32018~^~315~^0.790^12^0.014^~1~^~A~^^^1^0.577^1.100^9^0.759^0.821^~2, 3~^~04/01/2014~ -~32018~^~404~^0.822^6^0.054^~1~^~A~^^^1^0.600^1.040^2^0.619^1.025^~2, 3~^~04/01/2014~ -~32018~^~405~^0.288^6^0.009^~1~^~A~^^^1^0.200^0.360^2^0.253^0.323^~2, 3~^~04/01/2014~ -~32018~^~406~^7.179^6^0.195^~1~^~A~^^^1^4.120^8.950^3^6.510^7.849^~2, 3~^~04/01/2014~ -~32018~^~410~^0.626^4^0.007^~1~^~A~^^^1^0.610^0.640^2^0.591^0.660^~2, 3~^~04/01/2014~ -~32018~^~415~^0.248^6^0.005^~1~^~A~^^^1^0.180^0.300^4^0.234^0.263^~2, 3~^~04/01/2014~ -~32018~^~605~^0.022^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~606~^0.395^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~607~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~32018~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~32018~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~32018~^~612~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.014^4^0.009^0.015^~2, 3~^~04/01/2014~ -~32018~^~613~^0.329^6^0.002^~1~^~A~^^^1^0.295^0.349^3^0.323^0.335^~2, 3~^~04/01/2014~ -~32018~^~614~^0.037^6^0.003^~1~^~A~^^^1^0.027^0.053^2^0.023^0.051^~2, 3~^~04/01/2014~ -~32018~^~615~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~2, 3~^~04/01/2014~ -~32018~^~617~^0.336^6^0.009^~1~^~AS~^^^1^0.265^0.387^3^0.309^0.362^~2, 3~^~04/01/2014~ -~32018~^~618~^0.574^6^0.006^~1~^~AS~^^^1^0.507^0.619^4^0.556^0.591^~2, 3~^~04/01/2014~ -~32018~^~619~^0.028^6^0.000^~1~^~AS~^^^1^0.024^0.030^2^0.027^0.030^~2, 3~^~04/01/2014~ -~32018~^~620~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~32018~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~624~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~04/01/2014~ -~32018~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~626~^0.002^6^0.000^~1~^~AS~^^^1^0.000^0.002^2^0.001^0.003^~2, 3~^~04/01/2014~ -~32018~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~628~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.005^2^0.001^0.007^~1, 2, 3~^~04/01/2014~ -~32018~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~32018~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~645~^0.341^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~646~^0.604^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~652~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~32018~^~653~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~32018~^~654~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.006^2^0.005^0.006^~2, 3~^~04/01/2014~ -~32018~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~663~^0.016^6^0.009^~1~^~A~^^^1^0.000^0.053^2^-0.020^0.053^~1, 2, 3~^~04/01/2014~ -~32018~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~665~^0.006^6^0.001^~1~^~A~^^^1^0.001^0.012^2^0.002^0.010^~1, 2, 3~^~04/01/2014~ -~32018~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~673~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^2^0.001^0.003^~1, 2, 3~^~04/01/2014~ -~32018~^~674~^0.319^6^0.008^~1~^~A~^^^1^0.262^0.362^4^0.297^0.341^~2, 3~^~04/01/2014~ -~32018~^~675~^0.567^6^0.007^~1~^~A~^^^1^0.504^0.612^4^0.548^0.587^~2, 3~^~04/01/2014~ -~32018~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~687~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~32018~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.002^~2, 3~^~04/01/2014~ -~32018~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32018~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~851~^0.028^6^0.000^~1~^~A~^^^1^0.024^0.030^2^0.027^0.030^~2, 3~^~04/01/2014~ -~32018~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~32018~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32018~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32019~^~312~^0.119^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~315~^0.241^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~404~^0.172^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~405~^0.127^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~406~^1.354^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~415~^0.078^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~606~^2.110^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~ -~32019~^~607~^0.114^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~608~^0.037^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~609~^0.020^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~610~^0.054^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~611~^0.062^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~612~^0.282^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~613~^1.097^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~614~^0.365^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~615~^0.008^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~617~^1.013^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~618~^0.548^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~619~^0.070^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~625~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~626~^0.051^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~628~^0.006^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~645~^1.077^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~646~^0.618^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~32019~^~652~^0.007^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~653~^0.004^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32019~^~687~^0.003^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~689~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~696~^0.001^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~32019~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~ -~32020~^~312~^0.119^6^0.005^~1~^~A~^^^1^0.107^0.139^5^0.106^0.133^~2, 3~^~04/01/2014~ -~32020~^~315~^0.288^6^0.005^~1~^~A~^^^1^0.273^0.301^5^0.276^0.299^~2, 3~^~04/01/2014~ -~32020~^~404~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~32020~^~405~^0.290^3^0.021^~1~^~A~^^^1^0.250^0.320^2^0.201^0.379^~2, 3~^~04/01/2014~ -~32020~^~406~^4.263^3^0.161^~1~^~A~^^^1^4.050^4.580^2^3.569^4.958^~2, 3~^~04/01/2014~ -~32020~^~410~^1.150^2^^~1~^~A~^^^1^1.100^1.200^1^^^^~04/01/2014~ -~32020~^~415~^0.140^3^0.000^~1~^~A~^^^1^0.140^0.140^^^^~2, 3~^~04/01/2014~ -~32020~^~605~^1.263^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~606~^5.207^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32020~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32020~^~609~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2014~ -~32020~^~610~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.009^5^0.006^0.009^~2, 3~^~04/01/2014~ -~32020~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2014~ -~32020~^~612~^0.070^6^0.002^~1~^~A~^^^1^0.066^0.076^5^0.066^0.074^~2, 3~^~04/01/2014~ -~32020~^~613~^3.678^6^0.062^~1~^~A~^^^1^3.501^3.839^5^3.518^3.838^~2, 3~^~04/01/2014~ -~32020~^~614~^1.291^6^0.022^~1~^~A~^^^1^1.221^1.339^5^1.235^1.346^~2, 3~^~04/01/2014~ -~32020~^~615~^0.058^6^0.001^~1~^~A~^^^1^0.054^0.061^5^0.055^0.060^~2, 3~^~04/01/2014~ -~32020~^~617~^9.222^6^0.133^~1~^~AS~^^^1^8.825^9.667^5^8.881^9.564^~2, 3~^~04/01/2014~ -~32020~^~618~^4.419^6^0.080^~1~^~AS~^^^1^4.140^4.586^5^4.213^4.626^~2, 3~^~04/01/2014~ -~32020~^~619~^0.242^6^0.005^~1~^~AS~^^^1^0.224^0.253^5^0.230^0.254^~2, 3~^~04/01/2014~ -~32020~^~620~^0.078^6^0.003^~1~^~A~^^^1^0.071^0.086^5^0.071^0.085^~2, 3~^~04/01/2014~ -~32020~^~621~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~04/01/2014~ -~32020~^~624~^0.048^6^0.001^~1~^~A~^^^1^0.046^0.050^5^0.046^0.050^~2, 3~^~04/01/2014~ -~32020~^~625~^0.023^6^0.001^~1~^~A~^^^1^0.020^0.024^5^0.021^0.024^~2, 3~^~04/01/2014~ -~32020~^~626~^0.751^6^0.013^~1~^~AS~^^^1^0.718^0.787^5^0.719^0.783^~2, 3~^~04/01/2014~ -~32020~^~627~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2014~ -~32020~^~628~^0.109^6^0.002^~1~^~A~^^^1^0.104^0.114^5^0.105^0.113^~2, 3~^~04/01/2014~ -~32020~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~32020~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2014~ -~32020~^~631~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~04/01/2014~ -~32020~^~645~^10.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~646~^4.813^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~652~^0.009^6^0.000^~1~^~A~^^^1^0.008^0.010^5^0.008^0.010^~2, 3~^~04/01/2014~ -~32020~^~653~^0.020^6^0.001^~1~^~A~^^^1^0.018^0.022^5^0.018^0.021^~2, 3~^~04/01/2014~ -~32020~^~654~^0.018^6^0.000^~1~^~A~^^^1^0.016^0.019^5^0.017^0.019^~2, 3~^~04/01/2014~ -~32020~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~04/01/2014~ -~32020~^~663~^1.011^6^0.017^~1~^~A~^^^1^0.959^1.071^5^0.967^1.056^~2, 3~^~04/01/2014~ -~32020~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32020~^~665~^0.246^6^0.004^~1~^~A~^^^1^0.232^0.257^5^0.237^0.255^~2, 3~^~04/01/2014~ -~32020~^~670~^0.027^6^0.001^~1~^~A~^^^1^0.025^0.029^5^0.025^0.028^~2, 3~^~04/01/2014~ -~32020~^~671~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~04/01/2014~ -~32020~^~672~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.015^5^0.013^0.015^~2, 3~^~04/01/2014~ -~32020~^~673~^0.746^6^0.013^~1~^~A~^^^1^0.714^0.782^5^0.714^0.779^~2, 3~^~04/01/2014~ -~32020~^~674~^8.211^6^0.118^~1~^~A~^^^1^7.866^8.596^5^7.909^8.513^~2, 3~^~04/01/2014~ -~32020~^~675~^4.147^6^0.077^~1~^~A~^^^1^3.883^4.306^5^3.949^4.345^~2, 3~^~04/01/2014~ -~32020~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~32020~^~685~^0.014^6^0.000^~1~^~A~^^^1^0.013^0.014^5^0.013^0.014^~2, 3~^~04/01/2014~ -~32020~^~687~^0.012^6^0.000^~1~^~A~^^^1^0.011^0.013^5^0.011^0.013^~2, 3~^~04/01/2014~ -~32020~^~689~^0.027^6^0.001^~1~^~AS~^^^1^0.025^0.029^5^0.025^0.028^~2, 3~^~04/01/2014~ -~32020~^~693~^1.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~695~^0.247^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32020~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32020~^~851~^0.227^6^0.005^~1~^~A~^^^1^0.209^0.238^5^0.215^0.239^~2, 3~^~04/01/2014~ -~32020~^~852~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~32020~^~853~^0.025^6^0.001^~1~^~A~^^^1^0.023^0.027^5^0.024^0.027^~2, 3~^~04/01/2014~ -~32020~^~856~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~32020~^~858~^0.016^6^0.000^~1~^~A~^^^1^0.015^0.018^5^0.015^0.017^~2, 3~^~04/01/2014~ -~32021~^~312~^0.061^12^0.003^~1~^~A~^^^1^0.047^0.075^7^0.055^0.068^~2, 3~^~04/01/2014~ -~32021~^~315~^0.221^12^0.006^~1~^~A~^^^1^0.160^0.313^10^0.209^0.234^~2, 3~^~04/01/2014~ -~32021~^~404~^0.287^6^0.006^~1~^~A~^^^1^0.160^0.390^3^0.265^0.308^~2, 3~^~04/01/2014~ -~32021~^~405~^0.135^6^0.002^~1~^~A~^^^1^0.092^0.170^2^0.126^0.143^~2, 3~^~04/01/2014~ -~32021~^~406~^2.447^6^0.071^~1~^~A~^^^1^1.190^3.260^4^2.248^2.646^~2, 3~^~04/01/2014~ -~32021~^~410~^0.213^4^0.012^~1~^~A~^^^1^0.148^0.250^2^0.142^0.283^~1, 2, 3~^~04/01/2014~ -~32021~^~415~^0.096^6^0.005^~1~^~A~^^^1^0.070^0.120^3^0.082^0.110^~2, 3~^~04/01/2014~ -~32021~^~605~^0.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~606~^0.387^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~607~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~610~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~611~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~612~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^2^0.004^0.005^~2, 3~^~04/01/2014~ -~32021~^~613~^0.247^6^0.008^~1~^~A~^^^1^0.213^0.280^3^0.221^0.274^~2, 3~^~04/01/2014~ -~32021~^~614~^0.109^6^0.004^~1~^~A~^^^1^0.080^0.145^4^0.098^0.121^~2, 3~^~04/01/2014~ -~32021~^~615~^0.010^6^0.000^~1~^~A~^^^1^0.007^0.012^3^0.009^0.010^~2, 3~^~04/01/2014~ -~32021~^~617~^0.817^5^0.035^~1~^~AS~^^^1^0.697^1.128^3^0.799^1.032^~2, 3~^~04/01/2014~ -~32021~^~618~^0.740^6^0.026^~1~^~AS~^^^1^0.497^0.960^3^0.645^0.836^~2, 3~^~04/01/2014~ -~32021~^~619~^0.125^6^0.006^~1~^~AS~^^^1^0.057^0.184^2^0.102^0.147^~2, 3~^~04/01/2014~ -~32021~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~32021~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~624~^0.008^6^0.000^~1~^~A~^^^1^0.006^0.009^4^0.007^0.008^~2, 3~^~04/01/2014~ -~32021~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~626~^0.003^6^0.000^~1~^~AS~^^^1^0.001^0.005^2^0.002^0.004^~2, 3~^~04/01/2014~ -~32021~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~628~^0.013^6^0.001^~1~^~A~^^^1^0.004^0.028^2^0.009^0.022^~2, 3~^~04/01/2014~ -~32021~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~32021~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~645~^0.834^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~646~^0.867^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~652~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^2^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~32021~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~654~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^2^0.004^0.006^~2, 3~^~04/01/2014~ -~32021~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~663~^0.096^5^0.003^~1~^~A~^^^1^0.011^0.243^2^0.096^0.119^~2, 3~^~04/01/2014~ -~32021~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~665~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.013^4^0.006^0.010^~2, 3~^~04/01/2014~ -~32021~^~670~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~32021~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^3^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~32021~^~673~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.005^2^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~32021~^~674~^0.721^5^0.032^~1~^~A~^^^1^0.465^1.108^3^0.696^0.920^~2, 3~^~04/01/2014~ -~32021~^~675~^0.731^6^0.027^~1~^~A~^^^1^0.484^0.953^3^0.636^0.827^~2, 3~^~04/01/2014~ -~32021~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.000^0.007^4^0.003^0.005^~1, 2, 3~^~04/01/2014~ -~32021~^~687~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~32021~^~689~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~32021~^~693~^0.096^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~32021~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~851~^0.120^6^0.005^~1~^~A~^^^1^0.057^0.177^2^0.098^0.142^~2, 3~^~04/01/2014~ -~32021~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~32021~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~32024~^~312~^0.189^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~404~^0.263^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~405~^0.671^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~406~^5.263^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~415~^0.397^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32024~^~606~^1.754^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~607~^0.043^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~608~^0.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~609~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~610~^0.028^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~611~^0.031^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~612~^0.131^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~613~^1.149^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~614~^0.326^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~615~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~617~^0.732^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~618~^0.615^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~619~^0.051^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~624~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~625~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~626~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~645~^0.750^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~646~^0.667^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32024~^~652~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~653~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~687~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32024~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~312~^0.063^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~404~^0.293^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~405~^0.222^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~406~^2.198^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~415~^0.062^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~606~^1.316^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32025~^~607~^0.021^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~608~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~609~^0.004^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~610~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~611~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~612~^0.047^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~613~^0.814^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~614~^0.349^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~615~^0.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~617~^1.228^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~618~^2.970^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~619~^0.267^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~624~^0.018^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~628~^0.009^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~645~^1.243^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~646~^3.236^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32025~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~653~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32025~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~312~^0.110^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~404~^0.234^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~405~^0.196^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~406~^3.053^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~415~^0.231^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~501~^0.162^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~502~^0.409^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~503~^0.465^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~504~^0.803^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~505~^0.615^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~506~^0.229^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~507~^0.125^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~508~^0.470^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~509~^0.369^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~510~^0.531^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~511~^0.505^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~512~^0.299^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~513~^0.448^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~514~^0.803^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~515~^2.248^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~516~^0.379^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~517~^0.869^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~518~^0.422^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~521~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~606~^2.756^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~ -~32026~^~607~^0.086^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~608~^0.071^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~609~^0.046^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~610~^0.110^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~611~^0.131^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~612~^0.399^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~613~^1.315^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~614~^0.517^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~615~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~617~^1.265^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~618~^0.512^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~619~^0.044^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~620~^0.016^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~621~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~624~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~625~^0.036^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~626~^0.087^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~628~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~629~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~631~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~645~^1.407^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~646~^0.590^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~ -~32026~^~652~^0.041^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~653~^0.025^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~672~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~687~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~689~^0.007^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~857~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32026~^~858~^0.003^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~32027~^~312~^0.077^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~404~^0.312^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~405~^0.298^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~406~^2.708^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~415~^0.109^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~606~^2.756^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32027~^~607~^0.090^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~608~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~609~^0.020^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~610~^0.045^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~611~^0.043^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~612~^0.340^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~613~^1.430^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~614~^0.639^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~615~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~617~^1.528^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~618~^0.314^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~619~^0.039^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~620~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~625~^0.010^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~626~^0.126^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~628~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~630~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~645~^1.681^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~646~^0.362^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32027~^~652~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~653~^0.019^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~672~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~687~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32027~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~312~^0.064^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~404~^0.261^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~405~^0.224^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~406~^2.726^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~415~^0.084^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~606~^5.512^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~ -~32028~^~607~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~608~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~609~^0.099^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~610~^0.121^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~611~^1.340^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~612~^0.600^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~613~^2.158^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~614~^1.090^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~615~^0.017^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~617~^4.074^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~618~^1.800^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~619~^0.103^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~620~^0.029^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~621~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~624~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~625~^0.003^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~626~^0.134^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~628~^0.073^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~630~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~631~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~645~^4.298^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~646~^2.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~32028~^~652~^0.005^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~653~^0.019^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~654~^0.001^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~672~^0.051^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~687~^0.012^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~689~^0.015^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32028~^~858~^0.011^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~ -~32029~^~312~^0.095^16^0.004^~1~^~A~^^^1^0.076^0.127^10^0.086^0.104^~2, 3~^~02/01/2017~ -~32029~^~315~^0.347^16^0.009^~1~^~A~^^^1^0.316^0.392^8^0.327^0.367^~2, 3~^~02/01/2017~ -~32029~^~404~^0.200^9^0.021^~1~^~A~^^^1^0.150^0.230^2^0.116^0.284^~2, 3~^~02/01/2017~ -~32029~^~405~^0.098^9^0.003^~1~^~A~^^^1^0.093^0.113^4^0.090^0.105^~2, 3~^~02/01/2017~ -~32029~^~406~^2.198^9^0.069^~1~^~A~^^^1^2.067^2.557^4^1.996^2.399^~2, 3~^~02/01/2017~ -~32029~^~410~^0.379^6^^~1~^~A~^^^1^0.365^0.420^^^^~2, 3~^~02/01/2017~ -~32029~^~415~^0.129^9^0.003^~1~^~A~^^^1^0.123^0.147^4^0.121^0.137^~2, 3~^~02/01/2017~ -~32029~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2017~ -~32029~^~606~^1.071^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~607~^0.009^6^^~1~^~A~^^^1^0.009^0.009^^^^~2, 3~^~01/01/2017~ -~32029~^~608~^0.001^6^^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~01/01/2017~ -~32029~^~609~^0.012^6^^~1~^~A~^^^1^0.010^0.015^^^^~2, 3~^~02/01/2017~ -~32029~^~610~^0.012^6^^~1~^~A~^^^1^0.010^0.014^^^^~2, 3~^~02/01/2017~ -~32029~^~611~^0.159^6^^~1~^~A~^^^1^0.135^0.204^^^^~2, 3~^~02/01/2017~ -~32029~^~612~^0.071^6^^~1~^~A~^^^1^0.063^0.087^^^^~2, 3~^~02/01/2017~ -~32029~^~613~^0.687^6^^~1~^~A~^^^1^0.602^0.835^^^^~2, 3~^~02/01/2017~ -~32029~^~614~^0.100^6^^~1~^~A~^^^1^0.089^0.120^^^^~2, 3~^~02/01/2017~ -~32029~^~615~^0.007^6^^~1~^~A~^^^1^0.007^0.008^^^^~2, 3~^~01/01/2017~ -~32029~^~617~^0.176^0^^~4~^~FLC~^^^^^^^^^^~02/01/2017~ -~32029~^~618~^0.322^0^^~4~^~FLC~^^^^^^^^^^~02/01/2017~ -~32029~^~619~^0.248^0^^~4~^~FLC~^^^^^^^^^^~02/01/2017~ -~32029~^~620~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~621~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~624~^0.004^6^^~1~^~A~^^^1^0.004^0.005^^^^~2, 3~^~01/01/2017~ -~32029~^~625~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~626~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2017~ -~32029~^~627~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~628~^0.006^6^^~1~^~A~^^^1^0.005^0.007^^^^~2, 3~^~02/01/2017~ -~32029~^~629~^0.002^6^^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~01/01/2017~ -~32029~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2017~ -~32029~^~631~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~645~^0.870^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~646~^1.284^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~ -~32029~^~652~^0.002^6^^~1~^~A~^^^1^0.002^0.002^^^^~2, 3~^~01/01/2017~ -~32029~^~653~^0.002^6^^~1~^~A~^^^1^0.002^0.003^^^^~2, 3~^~01/01/2017~ -~32029~^~654~^0.004^6^^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~01/01/2017~ -~32029~^~662~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~663~^0.015^6^^~1~^~A~^^^1^0.013^0.017^^^^~2, 3~^~01/01/2017~ -~32029~^~664~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~665~^0.003^6^^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~01/01/2017~ -~32029~^~670~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~671~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~672~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~673~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~2, 3~^~01/01/2017~ -~32029~^~674~^0.666^6^^~1~^~A~^^^1^0.591^0.807^^^^~2, 3~^~02/01/2017~ -~32029~^~675~^0.624^6^^~1~^~A~^^^1^0.552^0.753^^^^~2, 3~^~02/01/2017~ -~32029~^~676~^0.001^6^^~1~^~A~^^^1^0.001^0.002^^^^~2, 3~^~01/01/2017~ -~32029~^~685~^0.002^6^^~1~^~A~^^^1^0.002^0.003^^^^~2, 3~^~01/01/2017~ -~32029~^~687~^0.001^6^^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~01/01/2017~ -~32029~^~697~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~851~^0.083^6^^~1~^~A~^^^1^0.074^0.098^^^^~2, 3~^~02/01/2017~ -~32029~^~852~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~853~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~856~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32029~^~858~^0.000^6^^~1~^~A~^^^1^0.000^0.000^^^^~2, 3~^~01/01/2017~ -~32031~^~312~^0.083^9^0.004^~1~^~A~^^^1^0.073^0.092^2^0.068^0.098^~2, 3~^~06/01/2015~ -~32031~^~315~^0.174^9^0.004^~1~^~A~^^^1^0.146^0.222^3^0.158^0.190^~2, 3~^~06/01/2015~ -~32031~^~404~^0.059^6^0.000^~1~^~A~^^^1^0.032^0.077^1^0.054^0.064^~1, 2, 3~^~06/01/2015~ -~32031~^~405~^0.118^6^0.000^~1~^~A~^^^1^0.096^0.130^1^0.114^0.122^~2, 3~^~06/01/2015~ -~32031~^~406~^1.320^6^0.016^~1~^~A~^^^1^0.890^1.470^1^1.212^1.427^~2, 3~^~06/01/2015~ -~32031~^~410~^0.203^2^^~1~^~A~^^^1^0.190^0.220^^^^^~06/01/2015~ -~32031~^~415~^0.131^3^^~1~^~A~^^^1^0.098^0.140^^^^~2, 3~^~06/01/2015~ -~32031~^~605~^0.284^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~606~^3.982^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~607~^0.004^7^0.004^~1~^~A~^^^1^0.000^0.010^1^-0.043^0.050^~1, 2, 3~^~06/01/2015~ -~32031~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~609~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~610~^0.010^7^0.005^~1~^~A~^^^1^0.000^0.019^1^-0.052^0.072^~1, 2, 3~^~06/01/2015~ -~32031~^~611~^0.008^7^0.001^~1~^~A~^^^1^0.000^0.010^3^0.005^0.011^~1, 2, 3~^~06/01/2015~ -~32031~^~612~^0.192^7^0.014^~1~^~A~^^^1^0.131^0.243^1^0.017^0.368^~2, 3~^~06/01/2015~ -~32031~^~613~^2.492^7^0.174^~1~^~A~^^^1^1.796^2.935^1^0.304^4.679^~2, 3~^~06/01/2015~ -~32031~^~614~^1.172^7^0.103^~1~^~A~^^^1^0.845^1.390^1^-0.133^2.477^~2, 3~^~06/01/2015~ -~32031~^~615~^0.013^7^0.002^~1~^~A~^^^1^0.000^0.017^1^0.000^0.026^~1, 2, 3~^~06/01/2015~ -~32031~^~617~^4.217^7^0.172^~1~^~AS~^^^1^3.232^4.746^1^2.184^6.249^~2, 3~^~06/01/2015~ -~32031~^~618~^1.327^7^0.075^~1~^~AS~^^^1^0.459^1.583^1^0.385^2.268^~2, 3~^~06/01/2015~ -~32031~^~619~^0.059^7^0.005^~1~^~AS~^^^1^0.022^0.072^1^-0.005^0.123^~2, 3~^~06/01/2015~ -~32031~^~620~^0.030^7^0.001^~1~^~A~^^^1^0.000^0.036^2^0.024^0.037^~1, 2, 3~^~06/01/2015~ -~32031~^~621~^0.002^7^0.000^~1~^~A~^^^1^0.000^0.003^1^-0.002^0.006^~1, 2, 3~^~06/01/2015~ -~32031~^~624~^0.005^7^0.000^~1~^~A~^^^1^0.000^0.006^2^0.002^0.007^~1, 2, 3~^~06/01/2015~ -~32031~^~625~^0.054^7^0.016^~1~^~A~^^^1^0.020^0.080^1^-0.139^0.247^~2, 3~^~06/01/2015~ -~32031~^~626~^0.389^7^0.022^~1~^~AS~^^^1^0.250^0.456^1^0.124^0.654^~2, 3~^~06/01/2015~ -~32031~^~627~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.003^0.006^~1, 2, 3~^~06/01/2015~ -~32031~^~628~^0.094^7^0.033^~1~^~A~^^^1^0.025^0.157^1^-0.328^0.516^~2, 3~^~06/01/2015~ -~32031~^~629~^0.003^7^0.001^~1~^~A~^^^1^0.000^0.012^3^0.001^0.005^~1, 2, 3~^~06/01/2015~ -~32031~^~630~^0.001^7^0.000^~1~^~AS~^^^1^0.000^0.002^1^-0.003^0.006^~2, 3~^~06/01/2015~ -~32031~^~631~^0.004^7^0.000^~1~^~A~^^^1^0.000^0.005^1^0.001^0.008^~1, 2, 3~^~06/01/2015~ -~32031~^~645~^4.798^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~646~^1.483^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~652~^0.024^7^0.001^~1~^~A~^^^1^0.018^0.030^1^0.015^0.033^~2, 3~^~06/01/2015~ -~32031~^~653~^0.062^7^0.006^~1~^~A~^^^1^0.044^0.080^1^-0.017^0.141^~2, 3~^~06/01/2015~ -~32031~^~654~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^1^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~32031~^~662~^0.014^7^0.001^~1~^~A~^^^1^0.009^0.019^1^0.006^0.022^~2, 3~^~06/01/2015~ -~32031~^~663~^0.225^7^0.010^~1~^~A~^^^1^0.135^0.348^2^0.171^0.279^~2, 3~^~06/01/2015~ -~32031~^~664~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~665~^0.045^7^0.011^~1~^~A~^^^1^0.000^0.067^1^-0.068^0.157^~1, 2, 3~^~06/01/2015~ -~32031~^~670~^0.030^7^0.004^~1~^~A~^^^1^0.022^0.044^1^-0.007^0.068^~2, 3~^~06/01/2015~ -~32031~^~671~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~672~^0.030^7^0.002^~1~^~A~^^^1^0.000^0.036^1^0.015^0.045^~1, 2, 3~^~06/01/2015~ -~32031~^~673~^0.375^7^0.021^~1~^~A~^^^1^0.241^0.441^1^0.119^0.631^~2, 3~^~06/01/2015~ -~32031~^~674~^3.992^7^0.164^~1~^~A~^^^1^2.932^4.510^1^2.130^5.853^~2, 3~^~06/01/2015~ -~32031~^~675~^1.252^7^0.061^~1~^~A~^^^1^0.424^1.480^1^0.484^2.019^~2, 3~^~06/01/2015~ -~32031~^~676~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^1^-0.003^0.006^~1, 2, 3~^~06/01/2015~ -~32031~^~685~^0.002^7^0.001^~1~^~A~^^^1^0.000^0.004^1^-0.011^0.015^~1, 2, 3~^~06/01/2015~ -~32031~^~687~^0.043^7^0.004^~1~^~A~^^^1^0.030^0.055^1^-0.004^0.089^~2, 3~^~06/01/2015~ -~32031~^~689~^0.016^7^0.001^~1~^~AS~^^^1^0.000^0.020^2^0.009^0.023^~2, 3~^~06/01/2015~ -~32031~^~693~^0.239^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~695~^0.045^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32031~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.000^~1, 2, 3~^~06/01/2015~ -~32031~^~851~^0.057^7^0.004^~1~^~A~^^^1^0.022^0.068^1^0.006^0.108^~2, 3~^~06/01/2015~ -~32031~^~852~^0.004^7^0.000^~1~^~A~^^^1^0.000^0.005^1^0.001^0.007^~1, 2, 3~^~06/01/2015~ -~32031~^~853~^0.012^7^0.001^~1~^~A~^^^1^0.000^0.015^2^0.008^0.016^~1, 2, 3~^~06/01/2015~ -~32031~^~856~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32031~^~858~^0.009^7^0.000^~1~^~A~^^^1^0.000^0.011^1^0.006^0.013^~1, 2, 3~^~06/01/2015~ -~32032~^~312~^0.070^5^0.004^~1~^~A~^^^1^0.063^0.096^3^0.056^0.085^~2, 3~^~06/01/2015~ -~32032~^~315~^0.216^5^0.026^~1~^~A~^^^1^0.162^0.499^1^-0.020^0.451^~2, 3~^~06/01/2015~ -~32032~^~404~^0.245^2^^~1~^~A~^^^1^0.240^0.250^1^^^^~06/01/2015~ -~32032~^~405~^0.320^3^0.020^~1~^~A~^^^1^0.280^0.340^2^0.234^0.406^~2, 3~^~06/01/2015~ -~32032~^~406~^2.183^3^0.029^~1~^~A~^^^1^2.130^2.230^2^2.058^2.308^~2, 3~^~06/01/2015~ -~32032~^~415~^0.123^2^^~1~^~A~^^^1^0.122^0.124^1^^^^~06/01/2015~ -~32032~^~605~^0.177^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~606~^8.595^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~607~^0.052^3^0.003^~1~^~A~^^^1^0.045^0.055^2^0.037^0.066^~2, 3~^~06/01/2015~ -~32032~^~608~^0.038^3^0.003^~1~^~A~^^^1^0.034^0.044^2^0.024^0.051^~2, 3~^~06/01/2015~ -~32032~^~609~^0.023^3^0.003^~1~^~A~^^^1^0.017^0.027^2^0.010^0.037^~2, 3~^~06/01/2015~ -~32032~^~610~^0.061^3^0.004^~1~^~A~^^^1^0.055^0.068^2^0.045^0.078^~2, 3~^~06/01/2015~ -~32032~^~611~^0.105^3^0.002^~1~^~A~^^^1^0.103^0.108^2^0.097^0.112^~2, 3~^~06/01/2015~ -~32032~^~612~^0.452^3^0.016^~1~^~A~^^^1^0.420^0.473^2^0.382^0.522^~2, 3~^~06/01/2015~ -~32032~^~613~^5.842^3^0.120^~1~^~A~^^^1^5.604^5.995^2^5.323^6.360^~2, 3~^~06/01/2015~ -~32032~^~614~^1.866^3^0.043^~1~^~A~^^^1^1.804^1.950^2^1.679^2.053^~2, 3~^~06/01/2015~ -~32032~^~615~^0.048^3^0.000^~1~^~A~^^^1^0.048^0.048^^^^~2, 3~^~06/01/2015~ -~32032~^~617~^8.041^3^0.180^~1~^~AS~^^^1^7.690^8.285^2^7.267^8.814^~2, 3~^~06/01/2015~ -~32032~^~618~^3.473^3^0.068^~1~^~AS~^^^1^3.382^3.607^2^3.179^3.767^~2, 3~^~06/01/2015~ -~32032~^~619~^0.194^3^0.002^~1~^~AS~^^^1^0.192^0.198^2^0.186^0.202^~2, 3~^~06/01/2015~ -~32032~^~620~^0.066^3^0.001^~1~^~A~^^^1^0.065^0.067^2^0.063^0.069^~2, 3~^~06/01/2015~ -~32032~^~621~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~06/01/2015~ -~32032~^~624~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~06/01/2015~ -~32032~^~625~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.025^0.030^~2, 3~^~06/01/2015~ -~32032~^~626~^0.319^3^0.009^~1~^~AS~^^^1^0.301^0.328^2^0.280^0.357^~2, 3~^~06/01/2015~ -~32032~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32032~^~628~^0.117^3^0.005^~1~^~A~^^^1^0.109^0.127^2^0.095^0.140^~2, 3~^~06/01/2015~ -~32032~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2015~ -~32032~^~630~^0.004^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~32032~^~631~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~06/01/2015~ -~32032~^~645~^8.539^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~646~^3.881^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~652~^0.034^3^0.002^~1~^~A~^^^1^0.031^0.036^2^0.027^0.041^~2, 3~^~06/01/2015~ -~32032~^~653~^0.054^3^0.001^~1~^~A~^^^1^0.051^0.056^2^0.047^0.060^~2, 3~^~06/01/2015~ -~32032~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~06/01/2015~ -~32032~^~662~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~06/01/2015~ -~32032~^~663~^0.117^3^0.002^~1~^~A~^^^1^0.114^0.121^2^0.109^0.126^~2, 3~^~06/01/2015~ -~32032~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32032~^~665~^0.049^3^0.002^~1~^~A~^^^1^0.045^0.053^2^0.039^0.059^~2, 3~^~06/01/2015~ -~32032~^~670~^0.030^3^0.003^~1~^~A~^^^1^0.024^0.034^2^0.017^0.042^~2, 3~^~06/01/2015~ -~32032~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32032~^~672~^0.079^3^0.004^~1~^~A~^^^1^0.074^0.087^2^0.061^0.096^~2, 3~^~06/01/2015~ -~32032~^~673~^0.308^3^0.009^~1~^~A~^^^1^0.290^0.317^2^0.269^0.346^~2, 3~^~06/01/2015~ -~32032~^~674~^7.923^3^0.181^~1~^~A~^^^1^7.569^8.168^2^7.143^8.704^~2, 3~^~06/01/2015~ -~32032~^~675~^3.394^3^0.065^~1~^~A~^^^1^3.313^3.523^2^3.114^3.674^~2, 3~^~06/01/2015~ -~32032~^~676~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~06/01/2015~ -~32032~^~685~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~06/01/2015~ -~32032~^~687~^0.032^3^0.003^~1~^~A~^^^1^0.027^0.037^2^0.019^0.044^~2, 3~^~06/01/2015~ -~32032~^~689~^0.029^3^0.001^~1~^~AS~^^^1^0.028^0.032^2^0.024^0.035^~2, 3~^~06/01/2015~ -~32032~^~693~^0.128^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~32032~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32032~^~851~^0.183^3^0.002^~1~^~A~^^^1^0.180^0.187^2^0.175^0.192^~2, 3~^~06/01/2015~ -~32032~^~852~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~06/01/2015~ -~32032~^~853~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~06/01/2015~ -~32032~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~32032~^~858~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.024^~2, 3~^~06/01/2015~ -~32034~^~312~^0.078^3^0.003^~1~^~A~^^^1^0.073^0.082^2^0.067^0.089^~2, 3~^~07/01/2015~ -~32034~^~315~^0.203^3^0.010^~1~^~A~^^^1^0.188^0.222^2^0.160^0.246^~2, 3~^~07/01/2015~ -~32034~^~404~^0.076^2^^~1~^~A~^^^1^0.075^0.077^1^^^^~07/01/2015~ -~32034~^~405~^0.130^2^^~1~^~A~^^^1^0.130^0.130^^^^^~07/01/2015~ -~32034~^~406~^1.445^2^^~1~^~A~^^^1^1.420^1.470^1^^^^~07/01/2015~ -~32034~^~410~^0.220^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~415~^0.113^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32034~^~605~^0.347^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~606~^3.426^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~611~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~07/01/2015~ -~32034~^~612~^0.236^2^^~1~^~A~^^^1^0.229^0.243^1^^^^~07/01/2015~ -~32034~^~613~^1.990^2^^~1~^~A~^^^1^1.917^2.064^1^^^^~07/01/2015~ -~32034~^~614~^1.079^2^^~1~^~A~^^^1^1.063^1.096^1^^^^~07/01/2015~ -~32034~^~615~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~07/01/2015~ -~32034~^~617~^3.471^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~618~^0.481^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~620~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^~1~^~07/01/2015~ -~32034~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~624~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~07/01/2015~ -~32034~^~625~^0.060^2^^~1~^~A~^^^1^0.051^0.069^1^^^^~07/01/2015~ -~32034~^~626~^0.315^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~628~^0.032^2^^~1~^~A~^^^1^0.025^0.039^1^^^^~07/01/2015~ -~32034~^~629~^0.001^2^^~1~^~A~^^^1^0.000^0.001^1^^^~1~^~07/01/2015~ -~32034~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~631~^0.002^2^^~1~^~A~^^^1^0.000^0.005^1^^^~1~^~07/01/2015~ -~32034~^~645~^3.933^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~646~^0.533^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~652~^0.029^2^^~1~^~A~^^^1^0.029^0.030^1^^^^~07/01/2015~ -~32034~^~653~^0.079^2^^~1~^~A~^^^1^0.078^0.080^1^^^^~07/01/2015~ -~32034~^~654~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~07/01/2015~ -~32034~^~662~^0.019^2^^~1~^~A~^^^1^0.019^0.019^^^^^~07/01/2015~ -~32034~^~663~^0.311^2^^~1~^~A~^^^1^0.274^0.348^1^^^^~07/01/2015~ -~32034~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~665~^0.018^2^^~1~^~A~^^^1^0.000^0.035^1^^^~1~^~07/01/2015~ -~32034~^~670~^0.036^2^^~1~^~A~^^^1^0.028^0.044^1^^^^~07/01/2015~ -~32034~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~672~^0.007^2^^~1~^~A~^^^1^0.000^0.013^1^^^~1~^~07/01/2015~ -~32034~^~673~^0.296^2^^~1~^~A~^^^1^0.281^0.312^1^^^^~07/01/2015~ -~32034~^~674~^3.160^2^^~1~^~A~^^^1^2.932^3.388^1^^^^~07/01/2015~ -~32034~^~675~^0.427^2^^~1~^~A~^^^1^0.424^0.431^1^^^^~07/01/2015~ -~32034~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~685~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~07/01/2015~ -~32034~^~687~^0.054^2^^~1~^~A~^^^1^0.054^0.055^1^^^^~07/01/2015~ -~32034~^~689~^0.005^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32034~^~693~^0.330^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32034~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~851~^0.023^2^^~1~^~A~^^^1^0.022^0.025^1^^^^~07/01/2015~ -~32034~^~852~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~07/01/2015~ -~32034~^~853~^0.004^2^^~1~^~A~^^^1^0.000^0.008^1^^^~1~^~07/01/2015~ -~32034~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32034~^~858~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~07/01/2015~ -~32035~^~312~^0.084^3^0.005^~1~^~A~^^^1^0.075^0.092^2^0.063^0.105^~2, 3~^~07/01/2015~ -~32035~^~315~^0.173^3^0.006^~1~^~A~^^^1^0.162^0.180^2^0.149^0.198^~2, 3~^~07/01/2015~ -~32035~^~404~^0.062^2^^~1~^~A~^^^1^0.062^0.063^1^^^^~07/01/2015~ -~32035~^~405~^0.120^2^^~1~^~A~^^^1^0.120^0.120^^^^^~07/01/2015~ -~32035~^~406~^1.380^2^^~1~^~A~^^^1^1.360^1.400^1^^^^~07/01/2015~ -~32035~^~415~^0.140^1^^~1~^~A~^^^^^^^^^^~07/01/2015~ -~32035~^~605~^0.291^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~606~^4.282^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~607~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^~1~^~07/01/2015~ -~32035~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~610~^0.012^2^^~1~^~A~^^^1^0.005^0.019^1^^^^~07/01/2015~ -~32035~^~611~^0.009^2^^~1~^~A~^^^1^0.008^0.010^1^^^^~07/01/2015~ -~32035~^~612~^0.197^2^^~1~^~A~^^^1^0.178^0.216^1^^^^~07/01/2015~ -~32035~^~613~^2.700^2^^~1~^~A~^^^1^2.465^2.935^1^^^^~07/01/2015~ -~32035~^~614~^1.251^2^^~1~^~A~^^^1^1.112^1.390^1^^^^~07/01/2015~ -~32035~^~615~^0.015^2^^~1~^~A~^^^1^0.013^0.017^1^^^^~07/01/2015~ -~32035~^~617~^4.515^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~618~^1.482^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~619~^0.065^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~620~^0.035^2^^~1~^~A~^^^1^0.034^0.036^1^^^^~07/01/2015~ -~32035~^~621~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~32035~^~624~^0.005^2^^~1~^~A~^^^1^0.005^0.006^1^^^^~07/01/2015~ -~32035~^~625~^0.059^2^^~1~^~A~^^^1^0.038^0.080^1^^^^~07/01/2015~ -~32035~^~626~^0.427^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~627~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~32035~^~628~^0.112^2^^~1~^~A~^^^1^0.067^0.157^1^^^^~07/01/2015~ -~32035~^~629~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~07/01/2015~ -~32035~^~630~^0.002^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~631~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~07/01/2015~ -~32035~^~645~^5.158^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~646~^1.656^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~652~^0.024^2^^~1~^~A~^^^1^0.023^0.025^1^^^^~07/01/2015~ -~32035~^~653~^0.063^2^^~1~^~A~^^^1^0.054^0.071^1^^^^~07/01/2015~ -~32035~^~654~^0.001^2^^~1~^~A~^^^1^0.001^0.001^^^^~1~^~07/01/2015~ -~32035~^~662~^0.014^2^^~1~^~A~^^^1^0.013^0.015^1^^^^~07/01/2015~ -~32035~^~663~^0.224^2^^~1~^~A~^^^1^0.213^0.236^1^^^^~07/01/2015~ -~32035~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~665~^0.053^2^^~1~^~A~^^^1^0.039^0.067^1^^^^~07/01/2015~ -~32035~^~670~^0.031^2^^~1~^~A~^^^1^0.026^0.036^1^^^^~07/01/2015~ -~32035~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~672~^0.033^2^^~1~^~A~^^^1^0.031^0.036^1^^^^~07/01/2015~ -~32035~^~673~^0.413^2^^~1~^~A~^^^1^0.385^0.441^1^^^^~07/01/2015~ -~32035~^~674~^4.291^2^^~1~^~A~^^^1^4.072^4.510^1^^^^~07/01/2015~ -~32035~^~675~^1.398^2^^~1~^~A~^^^1^1.316^1.480^1^^^^~07/01/2015~ -~32035~^~676~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^~1~^~07/01/2015~ -~32035~^~685~^0.003^2^^~1~^~A~^^^1^0.001^0.004^1^^^~1~^~07/01/2015~ -~32035~^~687~^0.043^2^^~1~^~A~^^^1^0.038^0.048^1^^^^~07/01/2015~ -~32035~^~689~^0.018^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~ -~32035~^~693~^0.238^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32035~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~851~^0.063^2^^~1~^~A~^^^1^0.057^0.068^1^^^^~07/01/2015~ -~32035~^~852~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~07/01/2015~ -~32035~^~853~^0.014^2^^~1~^~A~^^^1^0.013^0.015^1^^^^~07/01/2015~ -~32035~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~07/01/2015~ -~32035~^~858~^0.011^2^^~1~^~A~^^^1^0.011^0.011^^^^^~07/01/2015~ -~32036~^~312~^0.068^3^0.004^~1~^~A~^^^1^0.063^0.075^2^0.053^0.083^~2, 3~^~07/01/2015~ -~32036~^~315~^0.180^3^0.009^~1~^~A~^^^1^0.162^0.192^2^0.140^0.220^~2, 3~^~07/01/2015~ -~32036~^~404~^0.245^2^^~1~^~A~^^^1^0.240^0.250^1^^^^~07/01/2015~ -~32036~^~405~^0.320^3^0.020^~1~^~A~^^^1^0.280^0.340^2^0.234^0.406^~2, 3~^~07/01/2015~ -~32036~^~406~^2.183^3^0.029^~1~^~A~^^^1^2.130^2.230^2^2.058^2.308^~2, 3~^~07/01/2015~ -~32036~^~415~^0.123^2^^~1~^~A~^^^1^0.122^0.124^1^^^^~07/01/2015~ -~32036~^~605~^0.177^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~606~^8.595^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~607~^0.052^3^0.003^~1~^~A~^^^1^0.045^0.055^2^0.037^0.066^~2, 3~^~07/01/2015~ -~32036~^~608~^0.038^3^0.003^~1~^~A~^^^1^0.034^0.044^2^0.024^0.051^~2, 3~^~07/01/2015~ -~32036~^~609~^0.023^3^0.003^~1~^~A~^^^1^0.017^0.027^2^0.010^0.037^~2, 3~^~07/01/2015~ -~32036~^~610~^0.061^3^0.004^~1~^~A~^^^1^0.055^0.068^2^0.045^0.078^~2, 3~^~07/01/2015~ -~32036~^~611~^0.105^3^0.002^~1~^~A~^^^1^0.103^0.108^2^0.097^0.112^~2, 3~^~07/01/2015~ -~32036~^~612~^0.452^3^0.016^~1~^~A~^^^1^0.420^0.473^2^0.382^0.522^~2, 3~^~07/01/2015~ -~32036~^~613~^5.842^3^0.120^~1~^~A~^^^1^5.604^5.995^2^5.323^6.360^~2, 3~^~07/01/2015~ -~32036~^~614~^1.866^3^0.043^~1~^~A~^^^1^1.804^1.950^2^1.679^2.053^~2, 3~^~07/01/2015~ -~32036~^~615~^0.048^3^0.000^~1~^~A~^^^1^0.048^0.048^^^^~2, 3~^~07/01/2015~ -~32036~^~617~^8.041^3^0.180^~1~^~AS~^^^1^7.690^8.285^2^7.267^8.814^~2, 3~^~07/01/2015~ -~32036~^~618~^3.473^3^0.068^~1~^~AS~^^^1^3.382^3.607^2^3.179^3.767^~2, 3~^~07/01/2015~ -~32036~^~619~^0.194^3^0.002^~1~^~AS~^^^1^0.192^0.198^2^0.186^0.202^~2, 3~^~07/01/2015~ -~32036~^~620~^0.066^3^0.001^~1~^~A~^^^1^0.065^0.067^2^0.063^0.069^~2, 3~^~07/01/2015~ -~32036~^~621~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~07/01/2015~ -~32036~^~624~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~07/01/2015~ -~32036~^~625~^0.027^3^0.001^~1~^~A~^^^1^0.026^0.028^2^0.025^0.030^~2, 3~^~07/01/2015~ -~32036~^~626~^0.319^3^0.009^~1~^~AS~^^^1^0.301^0.328^2^0.280^0.357^~2, 3~^~07/01/2015~ -~32036~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~32036~^~628~^0.117^3^0.005^~1~^~A~^^^1^0.109^0.127^2^0.095^0.140^~2, 3~^~07/01/2015~ -~32036~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~07/01/2015~ -~32036~^~630~^0.004^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~07/01/2015~ -~32036~^~631~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~07/01/2015~ -~32036~^~645~^8.539^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~646~^3.881^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~652~^0.034^3^0.002^~1~^~A~^^^1^0.031^0.036^2^0.027^0.041^~2, 3~^~07/01/2015~ -~32036~^~653~^0.054^3^0.001^~1~^~A~^^^1^0.051^0.056^2^0.047^0.060^~2, 3~^~07/01/2015~ -~32036~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~07/01/2015~ -~32036~^~662~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~2, 3~^~07/01/2015~ -~32036~^~663~^0.117^3^0.002^~1~^~A~^^^1^0.114^0.121^2^0.109^0.126^~2, 3~^~07/01/2015~ -~32036~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~32036~^~665~^0.049^3^0.002^~1~^~A~^^^1^0.045^0.053^2^0.039^0.059^~2, 3~^~07/01/2015~ -~32036~^~670~^0.030^3^0.003^~1~^~A~^^^1^0.024^0.034^2^0.017^0.042^~2, 3~^~07/01/2015~ -~32036~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~32036~^~672~^0.079^3^0.004^~1~^~A~^^^1^0.074^0.087^2^0.061^0.096^~2, 3~^~07/01/2015~ -~32036~^~673~^0.308^3^0.009^~1~^~A~^^^1^0.290^0.317^2^0.269^0.346^~2, 3~^~07/01/2015~ -~32036~^~674~^7.923^3^0.181^~1~^~A~^^^1^7.569^8.168^2^7.143^8.704^~2, 3~^~07/01/2015~ -~32036~^~675~^3.394^3^0.065^~1~^~A~^^^1^3.313^3.523^2^3.114^3.674^~2, 3~^~07/01/2015~ -~32036~^~676~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~07/01/2015~ -~32036~^~685~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~07/01/2015~ -~32036~^~687~^0.032^3^0.003^~1~^~A~^^^1^0.027^0.037^2^0.019^0.044^~2, 3~^~07/01/2015~ -~32036~^~689~^0.029^3^0.001^~1~^~AS~^^^1^0.028^0.032^2^0.024^0.035^~2, 3~^~07/01/2015~ -~32036~^~693~^0.128^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~695~^0.049^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~ -~32036~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~32036~^~851~^0.183^3^0.002^~1~^~A~^^^1^0.180^0.187^2^0.175^0.192^~2, 3~^~07/01/2015~ -~32036~^~852~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~07/01/2015~ -~32036~^~853~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~07/01/2015~ -~32036~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2015~ -~32036~^~858~^0.014^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.005^0.024^~2, 3~^~07/01/2015~ -~33862~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~315~^77.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~404~^0.410^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~405~^0.710^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~406~^5.100^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~410~^2.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~415~^0.310^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~606~^11.300^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~607~^0.000^0^^~4~^~BFFN~^~33863~^^^^^^^^^~05/01/2013~ -~33862~^~608~^0.040^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~609~^0.430^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~610~^0.320^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~611~^2.400^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~612~^1.050^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~613~^5.900^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~614~^1.000^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~617~^9.200^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~618~^4.400^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~619~^0.410^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~620~^0.173^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~621~^0.087^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~624~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33862~^~626~^0.040^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~627~^0.000^0^^~4~^~BFFN~^~33863~^^^^^^^^^~05/01/2013~ -~33862~^~628~^0.040^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~629~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~630~^0.051^0^^~4~^~BFFN~^~33863~^^^^^^^^^~05/01/2013~ -~33862~^~631~^0.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33862~^~645~^9.300^0^^~12~^~MA~^~33863~^^^^^^^^^~10/01/2016~ -~33862~^~646~^5.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33863~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~315~^0.077^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~404~^0.410^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~405~^0.720^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~406~^5.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33863~^~410~^2.600^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~415~^0.310^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33863~^~606~^11.161^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~607~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~608~^0.071^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~609~^0.441^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~610~^0.294^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~611~^2.376^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~612~^1.099^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~613~^5.778^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~614~^1.102^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~617~^9.766^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~618~^4.551^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~619~^0.441^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~620~^0.147^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~621~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~626~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~627~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~628~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~629~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~630~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~631~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~645~^9.987^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33863~^~646~^5.213^0^^~4~^~BFFN~^~03986~^^^^^^^^^~04/01/2013~ -~33864~^~312~^0.096^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~315~^0.019^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~404~^0.104^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~405~^0.182^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~406~^1.291^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~410~^0.658^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~415~^0.078^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~606~^2.824^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~607~^0.000^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~608~^0.018^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~609~^0.112^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~610~^0.074^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~611~^0.601^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~612~^0.278^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~613~^1.462^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~614~^0.279^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~617~^2.471^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~618~^1.152^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~619~^0.112^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~620~^0.037^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~621~^0.019^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~626~^0.019^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~627~^0.000^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~628~^0.019^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~629~^0.000^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~630~^0.019^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~631~^0.000^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~645~^2.527^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33864~^~646~^1.319^0^^~4~^~BFSN~^~33863~^^^^^^^^^~04/01/2013~ -~33865~^~312~^0.096^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~404~^0.103^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~405~^0.181^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~406~^1.283^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~415~^0.078^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~606~^2.943^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~607~^0.000^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~608~^0.019^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~609~^0.116^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~610~^0.078^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~611~^0.626^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~612~^0.290^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~613~^1.524^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~614~^0.291^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~617~^2.575^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~618~^1.200^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~619~^0.117^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33865~^~620~^0.039^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~621~^0.000^0^^~4~^~NR~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~626~^0.019^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~627~^0.000^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~628~^0.019^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~629~^0.000^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~630~^0.019^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~631~^0.000^0^^~4~^~BFSN~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~645~^2.633^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33865~^~646~^1.355^0^^~4~^~NC~^~33864~^^^^^^^^^~04/01/2013~ -~33866~^~312~^0.370^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~315~^0.075^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~404~^0.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~405~^0.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~406~^5.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~410~^2.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~415~^0.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33866~^~606~^10.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~608~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~609~^0.420^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~610~^0.310^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~611~^2.300^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~612~^1.010^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~613~^5.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~614~^0.950^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~615~^0.070^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~617~^8.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~618~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~619~^0.360^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~620~^0.169^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~621~^0.085^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~626~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~628~^0.040^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~630~^0.077^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33866~^~645~^8.957^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33866~^~646~^4.900^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33867~^~312~^0.410^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~315~^0.077^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~404~^0.512^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~405~^0.717^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~406~^5.376^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~410~^2.304^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~415~^0.384^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33867~^~606~^10.936^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~607~^0.000^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~608~^0.072^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~609~^0.435^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~610~^0.290^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~611~^2.318^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~612~^1.014^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~613~^5.794^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~614~^1.014^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~617~^9.343^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~618~^4.346^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~619~^0.492^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~620~^0.145^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~621~^0.072^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~626~^0.075^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~627~^0.000^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~628~^0.072^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~629~^0.000^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~630~^0.000^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~631~^0.000^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~645~^9.490^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33867~^~646~^5.055^0^^~4~^~BFFN~^~03988~^^^^^^^^^~04/01/2013~ -~33868~^~312~^0.394^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~315~^0.074^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~404~^0.492^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~405~^0.689^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~406~^5.166^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33868~^~410~^2.214^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~415~^0.369^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33868~^~606~^10.517^0^^~4~^~NC~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~607~^0.000^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~608~^0.070^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~609~^0.418^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~610~^0.279^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~611~^2.229^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~612~^0.975^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~613~^5.572^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~614~^0.975^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~617~^8.985^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~618~^4.179^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~619~^0.474^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~620~^0.139^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~621~^0.070^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~626~^0.072^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~627~^0.000^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~628~^0.070^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~629~^0.000^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~630~^0.000^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~631~^0.000^0^^~4~^~BFFN~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~645~^9.126^0^^~4~^~NC~^~03989~^^^^^^^^^~04/01/2013~ -~33868~^~646~^4.862^0^^~4~^~NC~^~03989~^^^^^^^^^~04/01/2013~ -~33869~^~312~^0.410^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~315~^0.077^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~404~^0.512^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~405~^0.717^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~406~^5.376^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~410~^2.304^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~415~^0.384^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33869~^~606~^11.016^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~607~^0.000^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~608~^0.073^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~609~^0.438^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~610~^0.292^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~611~^2.335^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~612~^1.021^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~613~^5.836^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~614~^1.021^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~617~^9.411^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~618~^4.377^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~619~^0.496^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~620~^0.146^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~621~^0.073^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~626~^0.075^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~627~^0.000^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~628~^0.073^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~629~^0.000^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~630~^0.000^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~631~^0.000^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~645~^9.559^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33869~^~646~^5.092^0^^~4~^~BFFN~^~03990~^^^^^^^^^~05/01/2013~ -~33870~^~312~^0.360^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~315~^0.240^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~404~^0.380^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~405~^0.430^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~406~^4.700^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~410~^2.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~415~^0.280^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33870~^~606~^8.700^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~607~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33870~^~608~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~609~^0.330^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~610~^0.240^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~611~^1.830^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~612~^0.800^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~613~^4.600^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~614~^0.543^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~33870~^~615~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~617~^7.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~618~^3.400^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~619~^0.247^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~33870~^~620~^0.161^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~621~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~33870~^~626~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~627~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33870~^~628~^0.030^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~629~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33870~^~630~^0.049^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~ -~33870~^~631~^0.000^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2013~ -~33870~^~645~^7.500^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33870~^~646~^4.000^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33871~^~312~^0.461^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~315~^0.026^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~404~^0.512^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~405~^0.768^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~406~^5.376^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~410~^2.304^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~415~^0.307^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33871~^~606~^11.430^0^^~4~^~NC~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~607~^0.000^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~608~^0.073^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~609~^0.451^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~610~^0.301^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~611~^2.433^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~612~^1.125^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~613~^5.917^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~614~^1.129^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~617~^10.001^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~618~^4.661^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~619~^0.451^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~620~^0.150^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~621~^0.075^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~626~^0.075^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~627~^0.000^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~628~^0.075^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~630~^0.075^0^^~4~^~BFFN~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33871~^~645~^10.227^0^^~4~^~NC~^~03991~^^^^^^^^^~04/01/2013~ -~33871~^~646~^5.338^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33872~^~312~^0.401^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~315~^55.000^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~404~^0.301^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~405~^0.471^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~406~^5.261^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~410~^2.505^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~415~^0.301^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33872~^~606~^11.043^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~607~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~608~^0.030^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~609~^0.402^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~610~^0.303^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~611~^2.409^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~612~^1.004^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~613~^5.823^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~614~^1.004^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~617~^7.931^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~618~^4.718^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~619~^0.500^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~620~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~621~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~626~^0.050^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33872~^~627~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~628~^0.040^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~629~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~630~^0.010^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~631~^0.000^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~645~^8.132^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33872~^~646~^6.024^0^^~4~^~BFFN~^~03928~^^^^^^^^^~05/01/2013~ -~33873~^~312~^0.370^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~315~^0.124^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~404~^0.400^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~405~^0.450^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~406~^5.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~410~^2.500^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~415~^0.300^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33873~^~606~^10.300^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~607~^0.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~608~^0.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~609~^6.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~610~^2.300^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~611~^0.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~612~^0.030^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~613~^1.200^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~614~^0.620^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~615~^0.060^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~617~^8.800^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~618~^4.300^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~619~^0.400^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~620~^0.169^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~621~^0.085^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~624~^0.100^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~ -~33873~^~626~^0.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~627~^0.000^0^^~4~^~BFFN~^~03838~^^^^^^^^^~04/01/2013~ -~33873~^~628~^0.040^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~629~^0.000^0^^~4~^~BFFN~^~03838~^^^^^^^^^~04/01/2013~ -~33873~^~630~^0.000^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~631~^0.000^0^^~4~^~BFFN~^~03838~^^^^^^^^^~04/01/2013~ -~33873~^~645~^8.800^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33873~^~646~^5.500^0^^~12~^~MA~^~03838~^^^^^^^^^~10/01/2016~ -~33874~^~312~^0.079^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~315~^0.004^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~404~^0.131^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~405~^0.197^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~406~^2.623^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~410~^0.787^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~415~^0.098^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33874~^~606~^1.679^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33874~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~608~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~609~^1.020^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~610~^0.381^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~611~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~612~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~613~^0.155^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~614~^0.093^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~618~^1.051^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~619~^0.082^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~620~^0.021^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~621~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~626~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~628~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~630~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33874~^~645~^0.021^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~33874~^~646~^1.164^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~312~^0.079^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~315~^0.004^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~404~^0.131^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~405~^0.197^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~406~^2.623^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~410~^0.787^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~415~^0.098^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~ -~33875~^~606~^1.339^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33875~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~608~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~609~^1.020^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~610~^0.041^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~611~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~612~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~613~^0.155^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~614~^0.093^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~618~^1.056^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~619~^0.082^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~620~^0.021^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~621~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~626~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~628~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~630~^0.010^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~ -~33875~^~645~^0.850^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33875~^~646~^1.169^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~33876~^~312~^0.049^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~315~^0.009^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~404~^0.053^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~405~^0.092^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~406~^0.657^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~410~^0.328^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~415~^0.039^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33876~^~606~^1.027^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~608~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~609~^0.041^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~610~^0.027^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~611~^0.219^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~612~^0.101^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~613~^0.532^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~614~^0.101^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~617~^0.899^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~618~^0.419^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~619~^0.041^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~620~^0.014^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~621~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~626~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~628~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~630~^0.007^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33876~^~645~^0.919^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33876~^~646~^0.480^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~33877~^~312~^0.380^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~315~^0.077^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~404~^0.410^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~405~^0.720^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~406~^5.000^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~ -~33877~^~410~^2.600^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~415~^0.310^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~ -~33877~^~606~^11.161^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~607~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~608~^0.071^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~609~^0.441^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~610~^0.294^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~611~^2.376^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~612~^1.099^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~613~^5.778^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~614~^1.102^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~617~^9.766^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~618~^4.551^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~619~^0.441^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~620~^0.147^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~621~^0.000^0^^~4~^~NR~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~626~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~627~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~628~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~629~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~630~^0.073^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~631~^0.000^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~645~^9.987^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33877~^~646~^5.213^0^^~4~^~BFFN~^~03986~^^^^^^^^^~05/01/2013~ -~33878~^~312~^0.099^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~315~^0.156^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~404~^0.033^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~405~^0.057^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~406~^0.654^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~410~^0.265^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~415~^0.232^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~506~^0.008^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~514~^0.098^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~515~^0.118^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~517~^0.027^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33878~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~33881~^~312~^0.301^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~315~^2.740^1^^~1~^~A~^^^^^^^^^^~04/01/2016~ -~33881~^~404~^2.640^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~405~^2.220^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~406~^31.240^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~415~^0.470^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~501~^0.094^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~502~^0.316^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~503~^0.290^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~504~^0.559^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~505~^0.304^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~506~^0.185^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~507~^0.169^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~508~^0.364^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~509~^0.324^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~510~^0.446^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~511~^0.646^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~512~^0.193^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~513~^0.425^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~514~^0.696^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~515~^1.291^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~516~^0.366^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~517~^0.316^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~518~^0.342^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~606~^0.919^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~607~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~608~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~609~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~610~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~611~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~612~^0.013^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~613~^0.767^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~614~^0.126^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~617~^1.229^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~618~^1.799^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~619~^0.215^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~620~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~621~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~626~^0.027^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~627~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~628~^0.002^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~629~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~630~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~631~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~645~^1.260^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~33881~^~646~^2.060^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~ -~35001~^~312~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~315~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~404~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~405~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~406~^0.550^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~410~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~415~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~606~^7.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~618~^7.100^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35001~^~619~^0.530^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35001~^~645~^14.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35001~^~646~^8.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~312~^0.190^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~315~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~404~^0.180^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~405~^0.660^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~406~^4.260^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~410~^1.950^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~415~^0.230^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~606~^5.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~618~^0.510^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35003~^~619~^0.310^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35003~^~645~^8.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35003~^~646~^3.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~404~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~405~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~406~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~606~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~618~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~619~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~645~^0.120^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35004~^~646~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~404~^0.160^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~405~^0.680^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35007~^~406~^3.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~404~^0.023^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~405~^0.573^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~406~^4.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~606~^0.630^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~618~^0.080^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35008~^~619~^0.010^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35008~^~645~^2.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35008~^~646~^0.460^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35009~^~312~^0.320^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~315~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~404~^0.039^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~405~^0.519^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~406~^15.200^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~410~^1.680^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~415~^0.131^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35009~^~501~^0.797^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~502~^2.726^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~503~^2.684^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~504~^5.778^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~505~^6.313^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~506~^1.353^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~507~^0.419^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~508~^2.947^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~509~^1.887^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~510~^2.810^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~511~^3.838^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~512~^2.999^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~513~^4.268^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~514~^5.841^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~515~^9.595^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~516~^4.079^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~517~^3.481^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~518~^2.422^0^^~6~^~JA~^^^^^^^^^^~04/01/2006~ -~35009~^~606~^1.204^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~611~^0.007^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~612~^0.246^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~613~^0.698^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~614~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~617~^1.330^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~618~^0.047^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~619~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~620~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~621~^0.086^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~625~^0.033^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~626~^1.091^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~627~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~628~^0.638^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~629~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~630~^0.239^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~631~^0.040^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~645~^3.345^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~646~^0.319^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35009~^~652~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~653~^0.027^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~672~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~697~^0.013^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35009~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35009~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35011~^~312~^0.113^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~315~^0.046^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~404~^0.014^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~405~^0.184^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~406~^5.386^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~410~^0.595^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~415~^0.046^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~606~^0.092^0^^~4~^~NC~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~609~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~610~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~611~^0.001^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~612~^0.018^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~613~^0.052^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~614~^0.015^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~615~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~617~^0.147^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~618~^0.003^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~619~^0.002^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~620~^0.004^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~621~^0.006^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~624~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~625~^0.004^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~626~^0.120^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~627~^0.001^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~628~^0.048^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~629~^0.004^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~630~^0.018^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~631~^0.003^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~645~^0.337^0^^~4~^~NC~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~646~^0.025^0^^~4~^~NC~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~652~^0.003^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~653~^0.003^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~654~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~671~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~672~^0.001^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~687~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~689~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~697~^0.001^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~857~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35011~^~858~^0.000^0^^~4~^~BFSN~^~35014~^^^^^^^^^~04/01/2006~ -~35014~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~404~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35014~^~405~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35014~^~406~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35014~^~606~^14.490^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35014~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~610~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~611~^0.980^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~612~^5.940^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~613~^6.570^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~614~^0.650^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~617~^19.160^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~618~^0.710^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~619~^0.470^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~620~^0.490^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~621~^3.940^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~625~^1.430^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~626~^20.330^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~627~^0.360^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~628~^9.560^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~629~^2.800^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~630~^3.520^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~631~^1.590^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~645~^54.190^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35014~^~646~^10.800^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35014~^~652~^0.230^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~671~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~672~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35014~^~689~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~697~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~857~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35014~^~858~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35015~^~312~^0.222^3^0.193^~11~^~JO~^^^1^0.030^0.415^1^-2.224^2.669^~1, 4~^~04/01/2006~ -~35015~^~315~^0.287^3^0.078^~11~^~JO~^^^1^0.210^0.365^1^-0.698^1.273^~4~^~04/01/2006~ -~35015~^~404~^0.060^2^^~1~^~A~^^^1^0.031^0.088^1^^^^~04/01/2006~ -~35015~^~405~^0.144^2^^~1~^~A~^^^1^0.098^0.191^1^^^^~04/01/2006~ -~35015~^~406~^0.314^2^^~1~^~A~^^^1^0.269^0.359^1^^^^~04/01/2006~ -~35015~^~410~^1.258^2^^~1~^~A~^^^1^0.136^2.380^1^^^^~04/01/2006~ -~35015~^~415~^0.039^2^^~1~^~A~^^^1^0.037^0.041^1^^^^~04/01/2006~ -~35016~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~405~^0.370^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35016~^~406~^1.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~404~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~405~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35017~^~406~^0.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~404~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35021~^~406~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~405~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35022~^~406~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~312~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~315~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~404~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~405~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~406~^0.270^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~410~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~415~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~606~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~619~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35024~^~646~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35025~^~404~^0.120^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~404~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~405~^0.340^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35026~^~406~^4.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~404~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~405~^0.070^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35027~^~406~^0.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~405~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35028~^~406~^3.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~404~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~405~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35029~^~406~^0.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~404~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~405~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35030~^~406~^0.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~404~^0.090^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~405~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35034~^~406~^1.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~404~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~405~^0.860^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35038~^~406~^1.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~405~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35039~^~406~^2.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~404~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~405~^0.170^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35040~^~406~^4.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~405~^0.120^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~406~^1.800^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~606~^0.430^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~618~^0.030^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35041~^~619~^0.010^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35041~^~645~^0.420^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35041~^~646~^0.710^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35042~^~406~^2.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~405~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35043~^~406~^0.300^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~404~^0.110^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35046~^~405~^0.360^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~404~^0.220^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35047~^~406~^4.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~312~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~315~^0.090^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~404~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~405~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~406~^1.500^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~410~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~415~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~606~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~618~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~619~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~645~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35048~^~646~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~312~^0.067^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~315~^0.008^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~404~^0.070^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~405~^0.240^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~406~^5.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35049~^~606~^0.220^0^^~4~^~T~^^^^^^^^^^~04/01/2006~ -~35049~^~618~^0.400^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35049~^~619~^0.800^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35049~^~645~^0.150^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35049~^~646~^1.200^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35050~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~405~^0.070^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35050~^~406~^1.300^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~312~^2.789^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~315~^0.413^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~404~^0.196^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~405~^4.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~406~^10.720^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~410~^4.570^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~415~^0.910^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~619~^0.450^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~645~^0.650^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35051~^~646~^1.070^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~405~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35052~^~406~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~405~^0.140^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35053~^~406~^1.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~312~^0.370^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~315~^0.021^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~404~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~405~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~406~^2.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~606~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35054~^~646~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35055~^~404~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~405~^0.630^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~501~^0.795^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~502~^3.228^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~503~^3.134^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~504~^6.386^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~505~^6.690^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~506~^1.684^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~507~^0.444^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~508~^3.275^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~509~^2.152^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~510~^3.228^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~511~^4.655^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~512~^2.947^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~513~^4.725^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~514~^6.877^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~515~^11.041^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~516~^4.351^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~517~^3.789^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~518~^2.994^0^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35055~^~606~^0.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~618~^0.030^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35055~^~619~^0.020^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35055~^~645~^1.330^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35055~^~646~^0.370^1^^~13~^~AI~^^^^^^^^^^~04/01/2006~ -~35056~^~404~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~405~^0.260^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35056~^~406~^5.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35057~^~312~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~05/01/2007~ -~35057~^~315~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~05/01/2007~ -~35057~^~404~^0.011^2^^~6~^~JA~^^^2^0.000^0.022^1^^^^~05/01/2007~ -~35057~^~405~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~05/01/2007~ -~35057~^~406~^0.000^2^^~6~^~JA~^^^2^0.000^0.000^1^^^~1~^~05/01/2007~ -~35057~^~410~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35057~^~415~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35057~^~606~^10.926^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35057~^~609~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2007~ -~35057~^~610~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2007~ -~35057~^~611~^0.080^3^0.006^~1~^~A~^^^2^0.070^0.090^2^0.055^0.105^~4~^~05/01/2007~ -~35057~^~612~^2.520^3^0.057^~1~^~A~^^^2^2.410^2.600^2^2.275^2.764^~4~^~05/01/2007~ -~35057~^~613~^6.903^3^0.295^~1~^~A~^^^2^6.480^7.470^2^5.636^8.171^~4~^~05/01/2007~ -~35057~^~614~^0.940^3^0.131^~1~^~A~^^^2^0.790^1.200^2^0.378^1.502^~4~^~05/01/2007~ -~35057~^~615~^0.017^3^0.009^~1~^~A~^^^2^0.000^0.030^2^-0.021^0.054^~1, 4~^~05/01/2007~ -~35057~^~617~^21.487^3^2.328^~1~^~A~^^^2^17.020^24.860^2^11.469^31.504^~4~^~05/01/2007~ -~35057~^~618~^0.873^4^0.075^~6~^~JA~^^^3^0.630^1.210^1^-0.080^1.825^~2, 3~^~05/01/2007~ -~35057~^~619~^0.855^4^0.065^~6~^~JA~^^^3^0.740^1.000^3^0.648^1.062^~4~^~05/01/2007~ -~35057~^~620~^1.343^3^0.200^~1~^~A~^^^2^1.100^1.740^2^0.483^2.204^~4~^~05/01/2007~ -~35057~^~621~^12.377^3^3.118^~1~^~A~^^^2^6.160^15.910^2^-1.039^25.792^~4~^~05/01/2007~ -~35057~^~624~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2007~ -~35057~^~625~^0.750^3^0.092^~1~^~A~^^^2^0.570^0.870^2^0.356^1.144^~4~^~05/01/2007~ -~35057~^~626~^18.883^3^3.038^~1~^~A~^^^2^15.140^24.900^2^5.811^31.955^~4~^~05/01/2007~ -~35057~^~627~^1.217^3^0.192^~1~^~A~^^^2^1.010^1.600^2^0.391^2.042^~4~^~05/01/2007~ -~35057~^~628~^4.847^3^0.369^~1~^~A~^^^2^4.110^5.250^2^3.259^6.434^~4~^~05/01/2007~ -~35057~^~629~^9.710^3^0.066^~1~^~A~^^^2^9.630^9.840^2^9.428^9.992^~4~^~05/01/2007~ -~35057~^~630~^0.640^3^0.154^~1~^~A~^^^2^0.360^0.890^2^-0.021^1.301^~4~^~05/01/2007~ -~35057~^~631~^5.613^3^0.087^~1~^~A~^^^2^5.460^5.760^2^5.240^5.986^~4~^~05/01/2007~ -~35057~^~645~^47.080^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35057~^~646~^33.001^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35057~^~652~^0.310^3^0.065^~1~^~A~^^^2^0.240^0.440^2^0.030^0.590^~4~^~05/01/2007~ -~35057~^~653~^0.157^3^0.037^~1~^~A~^^^2^0.110^0.230^2^-0.003^0.316^~4~^~05/01/2007~ -~35057~^~654~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^2^0.000^0.000^~1, 4~^~05/01/2007~ -~35057~^~671~^0.080^3^0.046^~1~^~A~^^^2^0.000^0.160^2^-0.119^0.279^~1, 4~^~05/01/2007~ -~35057~^~672~^0.240^3^0.021^~1~^~A~^^^2^0.210^0.280^2^0.150^0.330^~4~^~05/01/2007~ -~35057~^~687~^0.287^3^0.143^~1~^~A~^^^2^0.000^0.430^2^-0.330^0.903^~1, 4~^~05/01/2007~ -~35057~^~689~^0.183^3^0.026^~1~^~A~^^^2^0.140^0.230^2^0.071^0.295^~4~^~05/01/2007~ -~35057~^~697~^0.107^3^0.071^~1~^~A~^^^2^0.000^0.240^2^-0.197^0.410^~1, 4~^~05/01/2007~ -~35057~^~857~^0.350^3^0.110^~1~^~A~^^^2^0.150^0.530^2^-0.124^0.824^~4~^~05/01/2007~ -~35057~^~858~^0.170^3^0.093^~1~^~A~^^^2^0.000^0.320^2^-0.230^0.570^~1, 4~^~05/01/2007~ -~35058~^~405~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35058~^~406~^0.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~405~^0.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35060~^~406~^5.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35063~^~406~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~404~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~405~^0.150^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35064~^~406~^1.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~404~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~405~^0.140^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35065~^~406~^10.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~405~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35066~^~406~^8.500^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~404~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~405~^0.280^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~406~^11.800^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~606~^6.970^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~618~^0.350^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35067~^~619~^0.000^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35067~^~645~^16.900^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35067~^~646~^0.350^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35068~^~404~^0.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~405~^0.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35068~^~406~^5.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~404~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~405~^0.940^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35070~^~406~^3.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~404~^0.140^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~405~^0.530^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~410~^0.650^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~606~^0.820^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~618~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~619~^0.050^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~645~^1.720^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35071~^~646~^0.060^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35072~^~404~^0.180^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~606~^1.170^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~618~^0.060^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35072~^~619~^0.010^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35072~^~645~^1.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35072~^~646~^1.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~315~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~404~^0.070^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~405~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~406~^2.640^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~410~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~415~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35073~^~606~^0.500^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~404~^0.090^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~405~^0.540^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35074~^~406~^1.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~312~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~315~^0.040^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~404~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~405~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~406~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~410~^0.010^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~415~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~606~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~618~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~619~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~645~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35078~^~646~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~404~^0.210^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~405~^0.790^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35079~^~406~^10.100^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~404~^0.200^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~405~^0.360^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~406~^6.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~606~^0.630^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~618~^0.180^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35080~^~619~^0.050^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35080~^~645~^0.340^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35080~^~646~^0.350^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~404~^0.180^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~405~^0.240^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~406~^4.800^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~606~^2.570^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~618~^0.100^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35081~^~619~^0.050^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35081~^~645~^8.420^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35081~^~646~^2.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~404~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35082~^~405~^0.320^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~404~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35083~^~405~^1.910^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~404~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~405~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35084~^~406~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~404~^0.080^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~405~^0.020^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~406~^0.800^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~606~^6.560^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~618~^0.120^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~619~^0.450^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~645~^28.120^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35086~^~646~^7.970^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~404~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~405~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35087~^~406~^0.000^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~404~^0.180^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~405~^0.540^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35088~^~406~^2.700^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~312~^0.072^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~404~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~405~^0.130^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~606~^1.370^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~618~^0.290^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~619~^0.240^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~645~^2.560^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35089~^~646~^1.820^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35093~^~406~^2.300^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35130~^~312~^0.048^2^^~1~^~A~^^^1^0.042^0.054^1^^^^~04/01/2004~ -~35130~^~315~^0.305^2^^~1~^~A~^^^1^0.201^0.410^1^^^^~04/01/2004~ -~35130~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~406~^0.283^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~410~^0.078^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~415~^0.049^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~606~^0.074^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~613~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~614~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~617~^0.108^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~618~^0.202^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~619~^0.006^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~624~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~628~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35130~^~645~^0.109^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~646~^0.208^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35130~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35130~^~851~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35131~^~312~^0.218^2^^~1~^~A~^^^1^0.218^0.219^1^^^^~04/01/2004~ -~35131~^~315~^0.758^2^^~1~^~A~^^^1^0.631^0.886^1^^^^~04/01/2004~ -~35131~^~404~^0.285^2^^~1~^~A~^^^1^0.280^0.290^1^^^^~04/01/2004~ -~35131~^~405~^0.107^2^^~1~^~A~^^^1^0.102^0.113^1^^^^~04/01/2004~ -~35131~^~406~^2.020^2^^~1~^~A~^^^1^1.810^2.230^1^^^^~04/01/2004~ -~35131~^~410~^0.353^2^^~1~^~A~^^^1^0.260^0.446^1^^^^~04/01/2004~ -~35131~^~415~^0.593^2^^~1~^~A~^^^1^0.576^0.610^1^^^^~04/01/2004~ -~35131~^~606~^0.886^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~613~^0.713^2^^~1~^~A~^^^1^0.565^0.861^1^^^^~04/01/2004~ -~35131~^~614~^0.132^2^^~1~^~A~^^^1^0.080^0.185^1^^^^~04/01/2004~ -~35131~^~615~^0.025^2^^~1~^~A~^^^1^0.016^0.034^1^^^^~04/01/2004~ -~35131~^~617~^1.661^2^^~1~^~A~^^^1^0.919^2.403^1^^^^~04/01/2004~ -~35131~^~618~^2.404^2^^~1~^~A~^^^1^2.077^2.731^1^^^^~04/01/2004~ -~35131~^~619~^0.000^2^^~1~^~A~^^^1^0.056^0.066^^^^^~04/01/2004~ -~35131~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~624~^0.016^2^^~1~^~A~^^^1^0.015^0.017^1^^^^~04/01/2004~ -~35131~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~626~^0.003^2^^~1~^~A~^^^1^0.000^0.006^1^^^~1~^~04/01/2004~ -~35131~^~628~^0.015^2^^~1~^~A~^^^1^0.011^0.019^1^^^^~04/01/2004~ -~35131~^~645~^1.679^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~646~^2.465^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35131~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35131~^~851~^0.061^2^^~1~^~A~^^^1^0.056^0.066^1^^^^~04/01/2004~ -~35132~^~312~^0.035^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~315~^0.036^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~405~^0.018^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35132~^~406~^0.460^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~410~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35132~^~415~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~312~^0.019^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~315~^0.074^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~406~^0.248^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~410~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~415~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~606~^0.075^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~613~^0.061^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~614~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~615~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~617~^0.132^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~618~^0.144^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~619~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~624~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~626~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~628~^0.001^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35133~^~645~^0.135^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~646~^0.151^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35133~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35133~^~851~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~312~^0.195^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~315~^0.848^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~404~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~405~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~406~^3.300^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~410~^0.380^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~415~^0.372^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~606~^0.820^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~613~^0.655^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~614~^0.122^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~615~^0.028^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~617~^1.458^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~618~^1.831^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~619~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~624~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~626~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~628~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~645~^1.483^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~646~^1.900^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35134~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35134~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35134~^~851~^0.069^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~312~^0.231^3^0.014^~1~^~A~^^^1^0.203^0.248^2^0.170^0.293^~2, 3~^~04/01/2004~ -~35135~^~315~^0.926^3^0.062^~1~^~A~^^^1^0.857^1.050^2^0.660^1.193^~2, 3~^~04/01/2004~ -~35135~^~404~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~405~^0.067^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~406~^3.310^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~410~^0.300^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~415~^0.289^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~501~^0.056^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~502~^0.305^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~503~^0.354^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~504~^1.044^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~505~^0.302^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~506~^0.231^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~507~^0.142^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~508~^0.429^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~509~^0.201^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~606~^0.830^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~613~^0.650^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~614~^0.132^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~615~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~617~^1.458^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~618~^1.793^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~619~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~624~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~626~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~628~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~645~^1.483^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~646~^1.862^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35135~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35135~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35135~^~851~^0.069^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~312~^0.219^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~315~^0.646^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~404~^0.310^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~405~^0.137^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~406~^2.800^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~410~^2.490^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~415~^0.583^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~501~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~502~^0.345^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~503~^0.404^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~504~^1.375^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~505~^0.319^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~506~^0.258^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~507~^0.217^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~508~^0.543^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~509~^0.412^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~510~^0.554^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~511~^0.474^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~512~^0.292^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~513~^0.836^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~514~^0.724^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~515~^2.043^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~516~^0.399^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~517~^0.906^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~518~^0.510^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~606~^0.853^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~613~^0.671^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~614~^0.133^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~615~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~617~^1.515^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~618~^2.024^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~619~^0.054^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35136~^~645~^1.532^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~646~^2.078^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35136~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35136~^~851~^0.054^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~312~^0.242^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~315~^0.641^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~404~^0.300^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~405~^0.093^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~406~^2.470^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~410~^0.595^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~415~^0.590^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~501~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~502~^0.307^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~503~^0.370^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~504~^1.275^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~505~^0.301^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~506~^0.230^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~507~^0.184^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~508~^0.499^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~509~^0.294^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~510~^0.494^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~511~^0.421^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~512~^0.265^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~513~^0.769^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~514~^0.662^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~515~^1.875^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~516~^0.360^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~517~^0.854^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~518~^0.471^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~606~^1.043^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~613~^0.778^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~614~^0.219^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~615~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~617~^2.126^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~618~^2.292^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~619~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~624~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~628~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35137~^~645~^2.143^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~646~^2.352^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35137~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35137~^~851~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~312~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~315~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~404~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~405~^0.020^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35138~^~406~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~410~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35138~^~415~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~404~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35139~^~406~^0.102^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~410~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35139~^~415~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~312~^0.095^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~315~^0.303^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~404~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~405~^0.132^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~406~^2.490^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~410~^0.354^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~606~^0.353^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~613~^0.286^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~614~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~617~^0.595^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~618~^0.816^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~619~^0.031^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35140~^~645~^0.603^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~646~^0.847^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35140~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35140~^~851~^0.031^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~312~^0.062^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~315~^0.033^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~404~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~405~^0.300^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~406~^6.520^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~410~^0.897^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~415~^0.377^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~501~^0.257^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~502~^1.403^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~503~^1.588^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~504~^2.764^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~505~^2.999^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~506~^0.918^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~507~^0.348^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~508~^1.399^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~509~^1.162^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~510~^1.678^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~511~^2.178^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~512~^0.975^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~513~^1.964^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~514~^3.122^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~515~^5.167^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~516~^1.651^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~517~^1.411^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~518~^1.332^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~521~^0.244^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~606~^5.142^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35141~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~612~^0.258^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~613~^2.474^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~614~^2.145^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~615~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~617~^4.149^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~618~^0.396^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~619~^0.172^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~620~^0.074^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~625~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~626~^0.206^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~628~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~645~^4.459^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35141~^~646~^0.814^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35141~^~652~^0.063^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~653~^0.158^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~685~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~687~^0.085^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35141~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35141~^~851~^0.147^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35142~^~312~^0.091^3^0.006^~1~^~A~^^^1^0.084^0.104^2^0.064^0.119^~2, 3~^~04/01/2004~ -~35142~^~315~^0.297^3^0.071^~1~^~A~^^^1^0.203^0.436^2^-0.007^0.602^~2, 3~^~04/01/2004~ -~35142~^~404~^0.430^3^0.069^~1~^~A~^^^1^0.310^0.550^2^0.132^0.728^~2, 3~^~04/01/2004~ -~35142~^~405~^0.217^3^0.048^~1~^~A~^^^1^0.167^0.314^2^0.009^0.425^~2, 3~^~04/01/2004~ -~35142~^~406~^4.603^3^0.381^~1~^~A~^^^1^4.040^5.330^2^2.963^6.244^~2, 3~^~04/01/2004~ -~35142~^~410~^0.164^3^0.015^~1~^~A~^^^1^0.140^0.191^2^0.100^0.227^~2, 3~^~04/01/2004~ -~35142~^~415~^0.038^3^0.006^~1~^~A~^^^1^0.027^0.048^2^0.012^0.064^~2, 3~^~04/01/2004~ -~35142~^~606~^4.621^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~611~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~04/01/2004~ -~35142~^~612~^0.238^3^0.071^~1~^~A~^^^1^0.113^0.360^2^-0.069^0.545^~2, 3~^~04/01/2004~ -~35142~^~613~^2.548^3^0.298^~1~^~A~^^^1^2.114^3.120^2^1.264^3.832^~2, 3~^~04/01/2004~ -~35142~^~614~^1.676^3^0.281^~1~^~A~^^^1^1.208^2.179^2^0.468^2.885^~2, 3~^~04/01/2004~ -~35142~^~615~^0.022^3^0.002^~1~^~A~^^^1^0.020^0.025^2^0.015^0.029^~2, 3~^~04/01/2004~ -~35142~^~617~^4.024^3^0.623^~1~^~A~^^^1^3.011^5.158^2^1.345^6.703^~2, 3~^~04/01/2004~ -~35142~^~618~^0.978^3^0.042^~1~^~A~^^^1^0.903^1.047^2^0.799^1.158^~2, 3~^~04/01/2004~ -~35142~^~619~^0.004^3^^~1~^~A~^^^1^0.039^0.073^^^^~2, 3~^~04/01/2004~ -~35142~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~625~^0.032^3^0.017^~1~^~A~^^^1^0.000^0.059^2^-0.042^0.105^~1, 2, 3~^~04/01/2004~ -~35142~^~626~^0.234^3^0.038^~1~^~A~^^^1^0.171^0.304^2^0.069^0.400^~2, 3~^~04/01/2004~ -~35142~^~628~^0.063^3^0.003^~1~^~A~^^^1^0.057^0.066^2^0.050^0.076^~2, 3~^~04/01/2004~ -~35142~^~645~^4.411^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~646~^1.055^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35142~^~652~^0.032^3^0.017^~1~^~A~^^^1^0.000^0.057^2^-0.040^0.104^~1, 2, 3~^~04/01/2004~ -~35142~^~653~^0.101^3^0.038^~1~^~A~^^^1^0.032^0.162^2^-0.061^0.264^~2, 3~^~04/01/2004~ -~35142~^~672~^0.018^3^0.005^~1~^~A~^^^1^0.013^0.028^2^-0.004^0.040^~2, 3~^~04/01/2004~ -~35142~^~685~^0.004^3^0.004^~1~^~A~^^^1^0.000^0.011^2^-0.012^0.019^~1, 2, 3~^~04/01/2004~ -~35142~^~687~^0.058^3^0.019^~1~^~A~^^^1^0.025^0.089^2^-0.021^0.138^~2, 3~^~04/01/2004~ -~35142~^~689~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2004~ -~35142~^~851~^0.051^3^0.007^~1~^~A~^^^1^0.039^0.062^2^0.022^0.079^~2, 3~^~04/01/2004~ -~35143~^~312~^0.102^2^^~1~^~A~^^^1^0.102^0.103^1^^^^~04/01/2004~ -~35143~^~315~^0.268^2^^~1~^~A~^^^1^0.194^0.343^1^^^^~04/01/2004~ -~35143~^~404~^0.370^2^^~1~^~A~^^^1^0.240^0.500^1^^^^~04/01/2004~ -~35143~^~405~^0.114^2^^~1~^~A~^^^1^0.090^0.139^1^^^^~04/01/2004~ -~35143~^~406~^4.125^2^^~1~^~A~^^^1^2.560^5.690^1^^^^~04/01/2004~ -~35143~^~410~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~415~^0.060^2^^~1~^~A~^^^1^0.048^0.071^1^^^^~04/01/2004~ -~35143~^~501~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~502~^0.182^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~503~^0.286^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~504~^0.530^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~505~^0.157^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~506~^0.122^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~507~^0.166^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~508~^0.375^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~509~^0.204^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~510~^0.326^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~511~^0.283^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~512~^0.165^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~513~^0.227^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~514~^0.296^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~515~^2.613^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~516~^0.268^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~517~^0.878^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~518~^0.351^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~606~^0.296^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~35143~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~612~^0.008^2^^~1~^~A~^^^1^0.002^0.013^1^^^^~04/01/2004~ -~35143~^~613~^0.211^2^^~1~^~A~^^^1^0.182^0.240^1^^^^~04/01/2004~ -~35143~^~614~^0.066^2^^~1~^~A~^^^1^0.017^0.115^1^^^^~04/01/2004~ -~35143~^~615~^0.002^2^^~1~^~A~^^^1^0.001^0.002^1^^^^~04/01/2004~ -~35143~^~617~^0.175^2^^~1~^~A~^^^1^0.112^0.239^1^^^^~04/01/2004~ -~35143~^~618~^0.372^2^^~1~^~A~^^^1^0.339^0.405^1^^^^~04/01/2004~ -~35143~^~619~^0.000^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35143~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~624~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~04/01/2004~ -~35143~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~626~^0.004^2^^~1~^~A~^^^1^0.001^0.007^1^^^^~04/01/2004~ -~35143~^~628~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~04/01/2004~ -~35143~^~645~^0.185^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~35143~^~646~^0.391^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~ -~35143~^~652~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~04/01/2004~ -~35143~^~653~^0.005^2^^~1~^~A~^^^1^0.001^0.008^1^^^^~04/01/2004~ -~35143~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~687~^0.002^2^^~1~^~A~^^^1^0.000^0.003^1^^^~1~^~04/01/2004~ -~35143~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35143~^~851~^0.019^2^^~1~^~A~^^^1^0.019^0.020^1^^^^~04/01/2004~ -~35144~^~312~^0.053^2^^~1~^~A~^^^1^0.040^0.067^1^^^^~04/01/2004~ -~35144~^~315~^0.064^2^^~1~^~A~^^^1^0.039^0.089^1^^^^~04/01/2004~ -~35144~^~404~^0.065^2^^~1~^~A~^^^1^0.050^0.080^1^^^^~04/01/2004~ -~35144~^~405~^0.091^2^^~1~^~A~^^^1^0.080^0.103^1^^^^~04/01/2004~ -~35144~^~406~^2.005^2^^~1~^~A~^^^1^1.200^2.810^1^^^^~04/01/2004~ -~35144~^~410~^0.162^2^^~1~^~A~^^^1^0.160^0.164^1^^^^~04/01/2004~ -~35144~^~415~^0.041^2^^~1~^~A~^^^1^0.033^0.049^1^^^^~04/01/2004~ -~35144~^~606~^1.709^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~612~^0.082^2^^~1~^~A~^^^1^0.061^0.130^1^^^^~04/01/2004~ -~35144~^~613~^0.808^2^^~1~^~A~^^^1^0.760^1.130^1^^^^~04/01/2004~ -~35144~^~614~^0.736^2^^~1~^~A~^^^1^0.582^1.140^1^^^^~04/01/2004~ -~35144~^~615~^0.006^2^^~1~^~A~^^^1^0.005^0.010^1^^^^~04/01/2004~ -~35144~^~617~^1.438^2^^~1~^~A~^^^1^1.623^1.740^1^^^^~04/01/2004~ -~35144~^~618~^0.193^2^^~1~^~A~^^^1^0.220^0.231^1^^^^~04/01/2004~ -~35144~^~619~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35144~^~620~^0.013^2^^~1~^~A~^^^1^0.007^0.022^1^^^~1~^~04/01/2004~ -~35144~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~626~^0.061^2^^~1~^~A~^^^1^0.062^0.080^1^^^^~04/01/2004~ -~35144~^~628~^0.007^2^^~1~^~A~^^^1^0.007^0.009^1^^^~1~^~04/01/2004~ -~35144~^~645~^1.533^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~646~^0.274^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35144~^~652~^0.021^2^^~1~^~A~^^^1^0.019^0.030^1^^^^~04/01/2004~ -~35144~^~653~^0.056^2^^~1~^~A~^^^1^0.052^0.080^1^^^^~04/01/2004~ -~35144~^~672~^0.002^2^^~1~^~A~^^^1^0.000^0.004^1^^^~1~^~04/01/2004~ -~35144~^~685~^0.007^2^^~1~^~A~^^^1^0.007^0.010^1^^^^~04/01/2004~ -~35144~^~687~^0.027^2^^~1~^~A~^^^1^0.030^0.034^1^^^^~04/01/2004~ -~35144~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2004~ -~35144~^~851~^0.053^2^^~1~^~A~^^^1^0.054^0.070^1^^^^~04/01/2004~ -~35145~^~312~^0.047^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~315~^0.089^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~406~^1.500^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~415~^0.091^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~501~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~502~^0.238^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~503~^0.252^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~504~^0.536^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~505~^0.435^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~506~^0.157^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~507~^0.074^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~508~^0.257^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~509~^0.183^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~510~^0.294^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~511~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~512~^0.164^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~513~^0.423^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~514~^0.526^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~515~^0.986^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~516~^0.447^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~517~^0.385^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~518~^0.251^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~606~^0.733^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~612~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~613~^0.392^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~614~^0.271^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~615~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~617~^0.835^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~618~^0.232^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~619~^0.023^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~620~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~625~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~626~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~645~^0.897^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~646~^0.287^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35145~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~653~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~685~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~687~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35145~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35145~^~851~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~312~^0.063^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~315~^0.087^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~406~^2.000^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~410~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~415~^0.108^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~501~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~502~^0.306^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~503~^0.336^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~504~^0.678^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~505~^0.560^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~506~^0.211^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~507~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~508~^0.330^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~509~^0.233^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~510~^0.385^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~511~^0.470^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~512~^0.217^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~513~^0.550^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~514~^0.679^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~515~^1.241^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~516~^0.553^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~517~^0.474^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~518~^0.314^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~606~^1.735^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35146~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~612~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~613~^0.869^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~614~^0.694^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~617~^1.640^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~618~^0.310^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~619~^0.062^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~620~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~624~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~626~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~628~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~645~^1.748^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35146~^~646~^0.383^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35146~^~652~^0.017^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~653~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~685~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~687~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35146~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35146~^~851~^0.054^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~312~^0.063^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~315~^0.174^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~406~^1.590^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~410~^0.205^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~415~^0.143^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~501~^0.052^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~502~^0.239^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~503~^0.271^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~504~^0.568^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~505~^0.427^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~506~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~507~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~508~^0.275^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~509~^0.204^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~510~^0.318^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~511~^0.391^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~512~^0.196^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~513~^0.422^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~514~^0.556^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~515~^1.029^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~516~^0.384^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~517~^0.382^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~518~^0.273^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~606~^2.396^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~612~^0.165^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~613~^1.395^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~614~^0.743^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~617~^2.439^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~618~^0.646^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~619~^0.029^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~620~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~625~^0.039^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~626~^0.188^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~628~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~645~^2.739^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~646~^0.688^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35147~^~652~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~653~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~687~^0.046^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35147~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35147~^~851~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~312~^0.075^2^^~1~^~A~^^^1^0.073^0.078^1^^^^~04/01/2004~ -~35148~^~315~^0.102^2^^~1~^~A~^^^1^0.085^0.119^1^^^^~04/01/2004~ -~35148~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~405~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~406~^3.020^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~410~^0.400^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~415~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~606~^1.603^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~612~^0.083^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~613~^0.834^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~614~^0.609^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~615~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~617~^1.391^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~618~^0.272^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~619~^0.052^0^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~620~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~625~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~626~^0.069^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~645~^1.497^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~646~^0.392^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~ -~35148~^~652~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~653~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~685~^0.007^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~687~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35148~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~ -~35148~^~851~^0.045^1^^~1~^~A~^^^^^^^^^^~04/01/2004~ -~35149~^~312~^0.042^3^0.002^~1~^~A~^^^1^0.038^0.046^2^0.032^0.052^~2, 3~^~04/01/2006~ -~35149~^~315~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~404~^0.066^4^0.005^~1~^~A~^^^1^0.049^0.093^2^0.045^0.087^~2, 3~^~04/01/2006~ -~35149~^~405~^0.072^4^0.003^~1~^~A~^^^1^0.038^0.091^2^0.059^0.085^~2, 3~^~04/01/2006~ -~35149~^~406~^5.762^4^0.815^~1~^~A~^^^1^2.740^8.330^2^2.254^9.271^~2, 3~^~04/01/2006~ -~35149~^~410~^0.377^4^0.047^~1~^~A~^^^1^0.270^0.466^2^0.177^0.578^~2, 3~^~04/01/2006~ -~35149~^~415~^0.390^4^0.006^~1~^~A~^^^1^0.181^0.475^2^0.366^0.415^~2, 3~^~04/01/2006~ -~35149~^~501~^0.311^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~502~^0.954^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~503~^0.943^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~504~^1.598^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~505~^1.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~506~^0.799^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~507~^0.355^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~508~^0.821^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~509~^0.699^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~510~^1.032^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~511~^1.210^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~512~^0.499^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~513~^1.187^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~514~^2.796^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~515~^3.174^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~516~^0.932^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~517~^0.732^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~518~^0.910^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~521~^0.183^3^0.066^~1~^~A~^^^1^0.090^0.310^2^-0.099^0.466^~2, 3~^~04/01/2006~ -~35149~^~606~^0.726^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35149~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~612~^0.088^4^0.027^~1~^~A~^^^1^0.010^0.185^2^-0.026^0.203^~2, 3~^~04/01/2006~ -~35149~^~613~^0.383^4^0.097^~1~^~A~^^^1^0.080^0.741^2^-0.033^0.798^~2, 3~^~04/01/2006~ -~35149~^~614~^0.088^4^0.018^~1~^~A~^^^1^0.030^0.155^2^0.010^0.167^~2, 3~^~04/01/2006~ -~35149~^~615~^0.005^4^0.001^~1~^~A~^^^1^^^^^^^~04/01/2006~ -~35149~^~617~^0.591^4^0.190^~1~^~A~^^^1^0.090^1.260^2^-0.225^1.407^~2, 3~^~04/01/2006~ -~35149~^~618~^0.018^4^0.006^~1~^~A~^^^1^0.000^0.039^2^-0.007^0.042^~2, 3~^~04/01/2006~ -~35149~^~619~^0.009^4^0.003^~6~^~JA~^^^1^0.000^0.020^2^-0.005^0.022^~2, 3~^~04/01/2006~ -~35149~^~620~^0.028^4^0.009^~1~^~A~^^^1^0.000^0.061^2^-0.011^0.067^~2, 3~^~04/01/2006~ -~35149~^~621~^0.393^4^0.091^~1~^~A~^^^1^0.130^0.718^2^0.002^0.784^~2, 3~^~04/01/2006~ -~35149~^~624~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~625~^0.004^4^0.001^~1~^~A~^^^1^0.000^0.007^2^-0.001^0.008^~1, 2, 3~^~04/01/2006~ -~35149~^~626~^0.231^4^0.075^~1~^~A~^^^1^0.020^0.497^2^-0.094^0.555^~2, 3~^~04/01/2006~ -~35149~^~627~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~628~^0.106^4^0.035^~1~^~A~^^^1^0.030^0.225^2^-0.044^0.257^~2, 3~^~04/01/2006~ -~35149~^~629~^0.217^4^0.091^~1~^~A~^^^1^0.070^0.506^2^-0.176^0.611^~2, 3~^~04/01/2006~ -~35149~^~630~^0.002^4^0.000^~6~^~JA~^^^1^0.000^0.010^^^^~2, 3~^~04/01/2006~ -~35149~^~631~^0.059^4^0.020^~1~^~A~^^^1^0.010^0.128^2^-0.027^0.144^~2, 3~^~04/01/2006~ -~35149~^~645~^1.195^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35149~^~646~^0.912^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35149~^~652~^0.008^4^0.002^~1~^~A~^^^1^0.000^0.015^2^0.000^0.015^~2, 3~^~04/01/2006~ -~35149~^~653~^0.004^4^0.001^~1~^~A~^^^1^0.000^0.007^2^0.001^0.007^~1, 2, 3~^~04/01/2006~ -~35149~^~654~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~672~^0.010^4^0.003^~1~^~A~^^^1^0.000^0.020^2^-0.002^0.021^~2, 3~^~04/01/2006~ -~35149~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~689~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.007^2^-0.001^0.008^~1, 2, 3~^~04/01/2006~ -~35149~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35149~^~851~^0.012^3^0.004^~1~^~A~^^^1^0.006^0.020^2^-0.007^0.030^~2, 3~^~04/01/2006~ -~35149~^~857~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35149~^~858~^0.000^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~312~^0.051^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35150~^~404~^0.152^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~405~^0.189^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~406~^7.930^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~410~^1.230^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~415~^0.225^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35150~^~501~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~502~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~503~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~504~^1.610^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~505~^1.810^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~506~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~508~^0.910^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~509~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~510~^1.030^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~511~^1.140^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~512~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~513~^1.290^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~514~^2.650^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~515~^3.100^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~516~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~517~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~518~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35150~^~606~^0.904^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35150~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~612~^0.157^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~613~^0.605^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~614~^0.109^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~615~^0.009^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~617~^0.629^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~618~^0.089^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~619~^0.089^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~620~^0.067^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~621~^1.385^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~626~^0.169^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~627~^0.089^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~628~^0.581^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~629~^0.491^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~630~^0.363^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~631~^0.178^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~645~^1.790^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~ -~35150~^~646~^2.410^0^^~4~^~T~^^^^^^^^^^~05/01/2006~ -~35150~^~652~^0.012^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~653~^0.012^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~671~^0.036^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~672~^0.022^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~675~^0.089^0^^~13~^~AI~^^^^^^^^^^~05/01/2006~ -~35150~^~687~^0.012^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35150~^~851~^0.089^0^^~13~^~AI~^^^^^^^^^^~05/01/2006~ -~35150~^~855~^0.670^0^^~13~^~AI~^^^^^^^^^^~05/01/2006~ -~35150~^~857~^0.022^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35150~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35151~^~312~^0.052^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35151~^~315~^0.014^0^^~4~^~O~^^^^^^^^^^~04/01/2006~ -~35151~^~404~^0.253^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~405~^0.297^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~406~^8.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~410~^1.140^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~415~^0.282^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~501~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~502~^0.990^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~503~^0.970^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~504~^1.520^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~505~^1.760^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~506~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~507~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~508~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~509~^0.660^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~510~^1.120^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~511~^1.120^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~512~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~513~^1.350^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~514~^2.790^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~515~^3.030^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~516~^0.940^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~517~^0.650^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~518~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35151~^~606~^1.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35151~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~612~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~613~^0.670^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~614~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~615~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35151~^~617~^0.880^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~618~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~619~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~620~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~621~^0.630^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~626~^0.200^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~627~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~628~^0.610^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~629~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~630~^0.450^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~631~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~645~^2.200^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35151~^~646~^1.370^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35151~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~671~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~672~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35151~^~857~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35151~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~312~^0.137^0^^~4~^~BFSN~^~35171~^^^^^^^^^~04/01/2006~ -~35152~^~315~^0.030^0^^~4~^~BFSN~^~35171~^^^^^^^^^~04/01/2006~ -~35152~^~404~^0.156^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~405~^0.217^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~406~^8.790^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~410~^1.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~415~^0.189^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~501~^0.320^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~502~^0.920^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~503~^0.920^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~504~^1.520^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~505~^1.730^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~506~^0.770^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~507~^0.300^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~508~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~509~^1.100^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~510~^1.030^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~511~^1.150^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~512~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~513~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~514~^2.490^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~515~^2.890^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~516~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~517~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~518~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35152~^~606~^0.547^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35152~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~612~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~613~^0.300^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~614~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~615~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35152~^~617~^0.470^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~618~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~619~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~621~^0.410^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~626~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~627~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~628~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~629~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~630~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~631~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~645~^0.940^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35152~^~646~^0.770^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35152~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~653~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~671~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35152~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35152~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~404~^0.161^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~405~^0.169^2^^~11~^~JO~^^^2^0.080^0.258^1^^^^~06/01/2006~ -~35153~^~406~^8.415^2^^~11~^~JO~^^^2^7.200^9.630^1^^^^~06/01/2006~ -~35153~^~410~^0.987^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~415~^0.271^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~606~^1.870^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35153~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~612~^0.300^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~613~^1.230^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~614~^0.290^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~617~^2.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~618~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~619~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~620~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~621~^0.710^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~626~^0.550^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~627~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~628~^0.760^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~629~^0.440^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~630~^0.580^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~631~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~645~^4.090^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35153~^~646~^1.599^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35153~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~653~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~671~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~672~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35153~^~857~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35153~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35154~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35154~^~315~^1.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~404~^0.041^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~405~^0.062^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~406~^0.466^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~410~^0.167^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35154~^~415~^0.078^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35155~^~312~^0.030^2^^~1~^~A~^^^2^0.030^0.030^^^^~1~^~04/01/2006~ -~35155~^~315~^2.000^2^^~1~^~A~^^^2^1.300^2.700^^^^^~04/01/2006~ -~35155~^~404~^0.067^2^^~1~^~A~^^^2^0.048^0.086^^^^^~04/01/2006~ -~35155~^~405~^0.414^2^^~1~^~A~^^^2^0.105^0.723^^^^^~04/01/2006~ -~35155~^~406~^0.597^2^^~1~^~A~^^^2^0.436^0.759^^^^^~04/01/2006~ -~35155~^~410~^0.265^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35155~^~415~^0.026^2^^~1~^~A~^^^2^0.018^0.034^^^^^~04/01/2006~ -~35156~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~ -~35156~^~606~^14.740^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35156~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~611~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~612~^4.880^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~613~^8.810^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~614~^0.670^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~617~^21.940^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~618~^0.950^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~619~^0.790^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~620~^0.720^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~621~^6.520^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~625~^0.560^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~626~^10.960^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~627~^0.970^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~628~^15.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~629~^3.930^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~630~^5.850^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~631~^3.440^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~645~^54.520^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35156~^~646~^18.060^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35156~^~652~^0.280^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~671~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~672~^0.200^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35156~^~689~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~697~^0.060^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~857~^0.280^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35156~^~858~^0.160^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35157~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35157~^~404~^0.015^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~405~^0.206^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~406~^10.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~410~^0.725^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~415~^0.103^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~501~^0.350^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~502~^1.250^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~503~^1.220^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~504~^2.040^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~505~^2.310^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~506~^0.750^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~508~^1.140^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~509~^0.940^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~510~^1.450^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~511~^1.640^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~512~^0.690^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~513~^1.690^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~514~^2.680^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~515~^3.640^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~516~^1.430^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~517~^1.220^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~518~^1.040^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35157~^~606~^0.920^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35157~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~612~^0.170^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~613~^0.590^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~614~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~617~^0.660^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~618~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~619~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~620~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~621~^0.750^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~626~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~627~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~628~^0.750^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~629~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~630~^0.690^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~631~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~645~^2.290^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35157~^~646~^1.610^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35157~^~652~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~653~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~671~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~672~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35157~^~857~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35157~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35158~^~312~^0.220^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~315~^0.220^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~404~^0.088^2^^~6~^~JA~^^^2^0.025^0.150^1^^^^~04/01/2006~ -~35158~^~405~^0.403^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~406~^0.956^2^^~6~^~JA~^^^2^0.512^1.400^1^^^^~04/01/2006~ -~35158~^~410~^1.060^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~415~^0.159^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35158~^~501~^0.280^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~502~^1.010^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~503~^1.070^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~504~^1.640^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~505~^1.600^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~506~^0.560^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~508~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~509~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~510~^1.280^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~511~^1.060^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~512~^0.530^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~513~^1.640^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~514~^1.580^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~515~^2.180^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~516~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~517~^1.100^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~518~^1.180^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35158~^~606~^0.496^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~612~^0.045^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~613~^0.361^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~614~^0.063^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~617~^0.742^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~618~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~619~^0.073^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~620~^0.124^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~621~^0.330^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~626~^0.254^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~627~^0.037^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~628~^0.045^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~629~^0.225^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~631~^0.133^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~645~^1.046^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~646~^1.073^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35158~^~652~^0.009^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~653~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~671~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~672~^0.018^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~689~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35158~^~857~^0.005^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35158~^~858~^0.028^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35160~^~312~^0.600^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~315~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~404~^0.333^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~405~^1.240^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~406~^13.200^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~410~^2.940^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~415~^0.620^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~606~^1.550^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35160~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~612~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~613~^0.790^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~614~^0.670^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~617~^1.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~618~^0.330^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~619~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~620~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~621~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~626~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~629~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~631~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~645~^1.190^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35160~^~646~^0.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35160~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~653~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~672~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~687~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35160~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35160~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2006~ -~35161~^~312~^0.780^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~315~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~404~^0.312^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~405~^1.300^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~406~^14.800^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~410~^4.150^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~415~^0.499^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35161~^~606~^1.586^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~612~^0.060^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~613~^0.861^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~614~^0.604^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~615~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~617~^1.087^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~618~^0.211^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~619~^0.068^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~620~^0.045^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~621~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~626~^0.076^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~628~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~629~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~631~^0.023^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~645~^1.201^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~646~^0.370^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35161~^~652~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~653~^0.030^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~654~^0.008^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~687~^0.015^1^^~1~^~A~^^^^^^^^^^~07/01/2007~ -~35161~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35161~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35162~^~312~^0.270^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~404~^0.442^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~405~^0.962^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~406~^7.150^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~410~^2.090^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~415~^0.351^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~606~^1.270^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35162~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~612~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~613~^0.610^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~614~^0.590^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~615~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~617~^0.860^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~618~^0.260^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~619~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~620~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~621~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~626~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~629~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~631~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~645~^0.940^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35162~^~646~^0.560^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35162~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~653~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35162~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35162~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35164~^~312~^0.270^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35164~^~404~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~405~^0.364^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~406~^6.520^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~410~^0.727^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~415~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~501~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~502~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~503~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~504~^2.730^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~505~^2.860^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~506~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~507~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~508~^1.400^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~509~^0.920^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~510~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~511~^1.990^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~512~^1.260^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~513~^2.020^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~514~^2.940^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~515~^4.720^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~516~^1.860^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~517~^1.620^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~518~^1.280^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35164~^~606~^3.920^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35164~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~611~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~612~^0.690^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~613~^2.450^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~614~^0.540^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~617~^5.320^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~618~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~619~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~620~^0.080^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~621~^0.190^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~625~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~626~^3.900^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~627~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~628~^1.700^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~629~^0.280^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~630~^0.120^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~631~^0.150^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~645~^11.160^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35164~^~646~^1.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~ -~35164~^~652~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~653~^0.100^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~672~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35164~^~689~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~697~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~857~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35164~^~858~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35165~^~312~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~315~^0.230^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~404~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~405~^0.438^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~406~^11.200^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~410~^2.570^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~415~^0.365^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~501~^0.580^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~502~^2.470^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~503~^2.260^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~504~^4.110^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~505~^4.770^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~506~^1.740^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~507~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~508~^2.340^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~509~^1.740^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~510~^2.610^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~511~^3.610^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~512~^1.300^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~513~^3.780^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~514~^5.670^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~515~^8.100^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~516~^4.370^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~517~^2.980^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~518~^2.340^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~606~^2.850^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35165~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~611~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~612~^0.320^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~613~^1.900^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~614~^0.400^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~617~^2.450^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~618~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~619~^0.280^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~620~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~621~^0.650^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~625~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~626~^1.420^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~627~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~628~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~629~^0.420^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~630~^0.070^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~631~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~645~^4.380^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35165~^~646~^2.160^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35165~^~652~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~653~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~671~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~672~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35165~^~689~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~697~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~857~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35165~^~858~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~315~^0.051^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~404~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~405~^0.358^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~406~^13.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~410~^0.656^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~415~^0.182^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~501~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~502~^1.530^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~503~^1.450^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~504~^2.510^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~505~^2.740^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~506~^0.910^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~508~^1.390^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~509~^1.150^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~510~^1.720^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~511~^2.010^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~512~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~513~^2.110^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~514~^3.260^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~515~^4.510^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~516~^1.870^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~517~^1.700^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~518~^1.320^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~606~^1.480^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35166~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~612~^0.210^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~613~^1.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~614~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~617~^1.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~618~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~619~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~620~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~621~^0.970^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~626~^0.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~627~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~628~^0.460^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~629~^0.600^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~630~^0.300^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~631~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~645~^2.290^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35166~^~646~^2.210^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35166~^~652~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~671~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~672~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~689~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35166~^~857~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35166~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35167~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~35167~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2006~ -~35167~^~404~^0.094^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~405~^0.230^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~406~^8.520^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~410~^0.917^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~415~^0.287^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~606~^0.800^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35167~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~612~^0.120^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~613~^0.570^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~614~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~617~^0.670^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~618~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~619~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~620~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~621~^0.540^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~626~^0.150^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~627~^0.060^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~628~^0.580^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~629~^0.260^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~630~^0.400^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~631~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~645~^1.830^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35167~^~646~^1.130^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~ -~35167~^~652~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~671~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~672~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~689~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2006~ -~35167~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35167~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2007~ -~35168~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~404~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~405~^0.201^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~406~^8.610^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~410~^0.822^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~415~^0.378^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~501~^0.256^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~502~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~503~^0.909^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~504~^1.656^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~505~^1.902^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~506~^0.625^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~507~^0.199^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~508~^0.899^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~509~^0.757^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~510~^1.117^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~511~^1.363^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~512~^0.549^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~513~^1.476^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~514~^2.205^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~515~^3.048^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~516~^1.230^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~517~^1.079^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~518~^0.909^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~606~^2.440^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35168~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~612~^0.490^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~613~^1.520^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~614~^0.330^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~617~^2.440^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~618~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~619~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~620~^0.140^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~621~^0.790^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~626~^0.680^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~627~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~628~^1.530^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~629~^0.460^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~630~^1.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~631~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~645~^5.860^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35168~^~646~^2.090^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35168~^~652~^0.040^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~653~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~671~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~672~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~689~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35168~^~857~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35168~^~858~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~404~^0.041^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~405~^0.126^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~406~^2.120^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~410~^0.648^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~415~^0.162^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~501~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~502~^0.940^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~503~^0.860^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~504~^1.520^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~505~^1.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~506~^0.630^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~508~^0.850^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~509~^0.680^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~510~^1.000^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~511~^1.310^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~512~^0.520^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~513~^1.400^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~514~^2.070^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~515~^2.950^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~516~^1.500^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~517~^1.150^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~518~^0.850^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~606~^0.490^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35169~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~612~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~613~^0.350^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~614~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~617~^0.540^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~618~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~619~^0.040^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~620~^0.050^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~621~^0.320^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~626~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~627~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~628~^0.190^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~629~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~630~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~631~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~645~^1.080^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35169~^~646~^0.700^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35169~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~671~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35169~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35169~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35170~^~501~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~502~^0.923^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~503~^0.896^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~504~^1.826^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~505~^1.913^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~506~^0.482^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~507~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~508~^0.937^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~509~^0.616^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~510~^0.923^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~511~^1.331^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~512~^0.843^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~513~^1.351^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~514~^1.967^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~515~^3.158^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~516~^1.244^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~517~^1.084^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35170~^~518~^0.856^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35171~^~312~^0.254^2^^~1~^~A~^^^2^0.148^0.360^1^^^~1~^~07/01/2007~ -~35171~^~315~^0.071^2^^~1~^~A~^^^2^0.063^0.079^1^^^^~07/01/2007~ -~35171~^~404~^0.356^2^^~1~^~A~^^^2^0.114^0.598^1^^^^~07/01/2007~ -~35171~^~405~^0.463^2^^~1~^~A~^^^2^0.461^0.465^1^^^^~07/01/2007~ -~35171~^~406~^14.650^2^^~1~^~A~^^^2^12.100^17.200^1^^^^~07/01/2007~ -~35171~^~410~^2.760^2^^~1~^~A~^^^2^2.380^3.140^1^^^^~07/01/2007~ -~35171~^~415~^0.681^2^^~1~^~A~^^^2^0.492^0.870^1^^^^~07/01/2007~ -~35171~^~606~^2.395^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35171~^~609~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~610~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~611~^0.040^2^^~1~^~A~^^^2^0.030^0.050^1^^^^~07/01/2007~ -~35171~^~612~^0.675^2^^~1~^~A~^^^2^0.500^0.850^1^^^^~07/01/2007~ -~35171~^~613~^1.185^2^^~1~^~A~^^^2^0.930^1.440^1^^^^~07/01/2007~ -~35171~^~614~^0.345^2^^~1~^~A~^^^2^0.300^0.390^1^^^^~07/01/2007~ -~35171~^~615~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~617~^1.990^2^^~1~^~A~^^^2^1.480^2.500^1^^^^~07/01/2007~ -~35171~^~618~^0.125^2^^~1~^~A~^^^2^0.110^0.140^1^^^^~07/01/2007~ -~35171~^~619~^0.115^2^^~1~^~A~^^^2^0.060^0.170^1^^^^~07/01/2007~ -~35171~^~620~^0.115^2^^~1~^~A~^^^2^0.080^0.150^1^^^^~07/01/2007~ -~35171~^~621~^0.950^2^^~1~^~A~^^^2^0.880^1.020^1^^^^~07/01/2007~ -~35171~^~624~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~625~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~626~^0.480^2^^~1~^~A~^^^2^0.360^0.600^1^^^^~07/01/2007~ -~35171~^~627~^0.135^2^^~1~^~A~^^^2^0.080^0.190^1^^^^~07/01/2007~ -~35171~^~628~^1.405^2^^~1~^~A~^^^2^1.340^1.470^1^^^^~07/01/2007~ -~35171~^~629~^0.610^2^^~1~^~A~^^^2^0.470^0.750^1^^^^~07/01/2007~ -~35171~^~630~^1.230^2^^~1~^~A~^^^2^1.120^1.340^1^^^^~07/01/2007~ -~35171~^~631~^0.215^2^^~1~^~A~^^^2^0.190^0.240^1^^^^~07/01/2007~ -~35171~^~645~^5.139^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35171~^~646~^2.323^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~ -~35171~^~652~^0.040^2^^~1~^~A~^^^2^0.030^0.050^1^^^^~07/01/2007~ -~35171~^~653~^0.110^2^^~1~^~A~^^^2^0.050^0.170^1^^^^~07/01/2007~ -~35171~^~654~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~671~^0.030^2^^~1~^~A~^^^2^0.000^0.060^1^^^~1~^~07/01/2007~ -~35171~^~672~^0.025^2^^~1~^~A~^^^2^0.020^0.030^1^^^^~07/01/2007~ -~35171~^~687~^0.004^2^^~1~^~A~^^^2^0.000^0.007^1^^^~1~^~07/01/2007~ -~35171~^~689~^0.010^2^^~1~^~A~^^^2^0.000^0.020^1^^^~1~^~07/01/2007~ -~35171~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35171~^~857~^0.020^2^^~1~^~A~^^^2^0.010^0.030^1^^^^~07/01/2007~ -~35171~^~858~^0.004^2^^~1~^~A~^^^2^0.000^0.007^1^^^~1~^~07/01/2007~ -~35172~^~312~^0.204^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~315~^0.043^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~404~^0.175^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~405~^0.497^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~406~^7.850^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~410~^1.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~415~^0.782^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~501~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~502~^1.206^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~503~^1.380^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~504~^2.647^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~505~^2.288^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~506~^0.911^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~507~^0.365^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~508~^1.285^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~509~^1.099^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~510~^1.493^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~511~^1.990^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~512~^0.999^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~513~^1.883^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~514~^2.903^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~515~^4.884^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~516~^1.481^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~517~^1.298^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~518~^1.440^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~606~^1.138^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~612~^0.093^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~613~^0.712^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~614~^0.292^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~617~^0.623^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35172~^~618~^0.151^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35172~^~619~^0.048^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35172~^~620~^0.032^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~625~^0.037^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~626~^0.286^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~628~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~645~^0.952^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~646~^0.239^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~652~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~653~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~663~^0.034^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~669~^0.031^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~674~^0.589^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~675~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~689~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35172~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35172~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35172~^~851~^0.048^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~312~^0.159^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~315~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~405~^0.309^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~406~^5.970^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~410~^0.840^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~415~^0.630^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~501~^0.185^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~502~^0.825^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~503~^0.944^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~504~^1.811^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~505~^1.565^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~506~^0.623^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~507~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~508~^0.879^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~509~^0.752^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~510~^1.021^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~511~^1.361^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~512~^0.683^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~513~^1.288^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~514~^1.986^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~515~^3.341^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~516~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~517~^0.888^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~518~^0.985^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~521~^0.094^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~605~^0.039^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~606~^0.706^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~612~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~613~^0.440^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~614~^0.182^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~615~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~617~^0.377^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35173~^~618~^0.086^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35173~^~619~^0.024^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35173~^~620~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~625~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~626~^0.171^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~645~^0.574^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~646~^0.130^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~653~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~663~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~669~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~674~^0.356^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~675~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~689~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35173~^~693~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35173~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35173~^~851~^0.024^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~312~^0.117^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~404~^0.153^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~405~^0.325^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~406~^6.920^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~410~^0.760^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~415~^0.780^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~501~^0.225^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~502~^0.849^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~503~^0.928^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~504~^1.710^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~505~^1.494^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~506~^0.597^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~507~^0.229^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~508~^0.825^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~509~^0.721^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~510~^0.959^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~511~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~512~^0.704^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~513~^1.207^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~514~^1.872^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~515~^3.063^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~516~^0.904^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~517~^0.807^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~518~^0.878^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~521~^0.065^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~605~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~606~^0.418^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~611~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~612~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~613~^0.187^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~614~^0.192^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~617~^0.400^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35174~^~618~^0.068^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35174~^~619~^0.016^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35174~^~620~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~625~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~626~^0.022^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~628~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~645~^0.425^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~646~^0.098^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~653~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~663~^0.042^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~669~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~674~^0.358^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~675~^0.045^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~689~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35174~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~695~^0.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35174~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35174~^~851~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~312~^0.310^1^^~1~^~A~^^^^^^^^^^~03/01/2006~ -~35175~^~315~^0.037^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~ -~35175~^~501~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~502~^2.438^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~503~^2.367^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~504~^4.822^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~505~^5.052^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~506~^1.272^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~507~^0.336^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~508~^2.473^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~509~^1.625^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~510~^2.438^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~511~^3.515^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~512~^2.226^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~513~^3.568^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~514~^5.193^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~515~^8.337^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~516~^3.285^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~517~^2.862^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35175~^~518~^2.261^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~312~^0.189^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~404~^0.169^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~405~^0.462^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~406~^7.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~410~^1.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~415~^0.794^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~501~^0.341^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~502~^1.287^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~503~^1.407^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~504~^2.593^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~505~^2.266^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~506~^0.905^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~507~^0.347^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~508~^1.251^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~509~^1.093^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~510~^1.454^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~511~^1.929^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~512~^1.068^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~513~^1.831^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~514~^2.839^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~515~^4.645^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~516~^1.371^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~517~^1.224^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~518~^1.332^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~605~^0.088^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~606~^0.595^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~611~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~612~^0.018^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~613~^0.264^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~614~^0.278^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~617~^0.582^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35176~^~618~^0.113^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35176~^~619~^0.029^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35176~^~620~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~625~^0.002^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~626~^0.026^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~645~^0.614^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~646~^0.171^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~652~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~663~^0.057^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~669~^0.031^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~674~^0.525^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~675~^0.082^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~689~^0.009^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35176~^~693~^0.057^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35176~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35176~^~851~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~312~^0.144^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~404~^0.159^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~405~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~406~^6.630^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~410~^0.630^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~415~^0.893^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~501~^0.228^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~502~^0.746^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~503~^0.954^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~504~^1.760^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~505~^1.544^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~506~^0.645^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~507~^0.252^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~508~^0.854^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~509~^0.751^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~510~^1.530^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~511~^1.319^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~512~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~513~^1.234^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~514~^1.944^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~515~^3.234^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~516~^0.909^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~517~^0.819^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~518~^1.006^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~521~^0.046^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~605~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~606~^0.828^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~612~^0.072^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~613~^0.584^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~614~^0.147^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~617~^0.545^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35177~^~618~^0.082^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35177~^~619~^0.021^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35177~^~620~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~625~^0.038^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~626~^0.309^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~628~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~645~^0.897^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~646~^0.122^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~663~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~669~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~674~^0.529^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~675~^0.066^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~689~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35177~^~693~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~695~^0.016^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35177~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35177~^~851~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~312~^0.154^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~315~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~404~^0.164^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~405~^0.358^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~406~^7.960^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~410~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~415~^0.914^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~501~^0.353^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~502~^1.154^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~503~^1.476^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~504~^2.724^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~505~^2.390^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~506~^0.998^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~507~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~508~^1.322^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~509~^1.162^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~510~^2.368^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~511~^2.041^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~512~^1.114^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~513~^1.910^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~514~^3.009^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~515~^5.005^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~516~^1.407^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~517~^1.268^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~518~^1.557^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~605~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~606~^1.125^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~611~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~612~^0.105^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~613~^0.821^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~614~^0.166^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~615~^0.003^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~617~^0.786^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35178~^~618~^0.092^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35178~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35178~^~620~^0.015^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~625~^0.063^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~626~^0.496^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~628~^0.008^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~645~^1.353^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~646~^0.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~652~^0.013^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~653~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~663~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~669~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~674~^0.767^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~675~^0.071^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~689~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35178~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~695~^0.021^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35178~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35178~^~851~^0.025^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~312~^0.068^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~315~^0.192^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~404~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~405~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~406~^0.672^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~410~^0.330^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35179~^~415~^0.193^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~312~^0.217^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~315~^0.079^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~606~^0.829^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~612~^0.091^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~613~^0.547^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~614~^0.154^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~615~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~617~^0.858^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~618~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~619~^0.037^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35180~^~620~^0.047^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~621~^1.080^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~625~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~626~^0.159^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~628~^0.204^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~629~^0.266^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35180~^~631~^0.208^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~645~^1.228^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~646~^1.739^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35180~^~652~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~653~^0.016^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~672~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~689~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35180~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35180~^~851~^0.037^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~312~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~315~^0.011^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~606~^1.530^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~612~^0.358^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~613~^0.921^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~614~^0.209^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~615~^0.012^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~617~^1.496^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~618~^0.077^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~619~^0.051^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35181~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~621~^0.540^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~625~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~626~^0.492^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~628~^0.228^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~629~^0.376^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35181~^~631~^0.130^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~645~^2.223^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~646~^1.225^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35181~^~652~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~653~^0.011^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~672~^0.014^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35181~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35181~^~851~^0.051^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~315~^0.140^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~404~^0.175^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~405~^0.125^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~406~^2.140^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~410~^0.212^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~415~^0.055^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~502~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~503~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~504~^0.620^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~505~^0.580^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~506~^0.160^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~507~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~508~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~509~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~510~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~511~^0.470^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~512~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~513~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~514~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~515~^1.510^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~516~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~517~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~518~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~606~^1.280^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~612~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~613~^0.750^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~614~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~617~^1.510^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~618~^0.260^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~619~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~625~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~626~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~627~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~628~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~645~^1.680^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~646~^0.297^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35182~^~652~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~653~^0.040^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~672~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~687~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35182~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35182~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~312~^0.293^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~315~^0.900^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~404~^0.261^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~405~^0.181^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~406~^8.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~410~^1.590^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~415~^1.110^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~501~^0.094^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~502~^0.431^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~503~^0.485^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~504~^1.468^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~505~^0.498^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~506~^0.293^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~507~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~508~^0.642^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~509~^0.465^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~510~^0.655^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~511~^0.581^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~512~^0.313^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~513~^1.156^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~514~^1.013^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~515~^2.358^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~516~^0.539^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~517~^1.047^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~518~^0.732^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~606~^1.974^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~613~^1.599^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~614~^0.297^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~615~^0.058^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~617~^3.692^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~618~^4.419^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~619~^0.124^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35183~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~624~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~626~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~628~^0.037^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35183~^~645~^3.750^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~646~^4.543^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35183~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35183~^~851~^0.124^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~312~^0.148^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~315~^0.720^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~404~^0.073^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~405~^0.262^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~406~^5.970^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~410~^2.290^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~415~^0.176^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~501~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~502~^2.390^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~503~^2.150^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~504~^3.820^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~505~^3.690^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~506~^1.240^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~507~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~508~^2.010^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~509~^1.570^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~510~^2.660^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~511~^3.100^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~512~^1.010^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~513~^3.520^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~514~^4.810^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~515~^6.660^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~516~^3.280^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~517~^2.360^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~518~^2.450^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~606~^3.590^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35184~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~611~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~612~^0.760^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~613~^2.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~614~^0.320^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~617~^3.650^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~618~^0.190^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~619~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~620~^0.150^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~621~^1.220^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~625~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~626~^2.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~627~^0.130^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~628~^0.780^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~629~^0.910^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~630~^0.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~631~^0.140^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~645~^6.860^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35184~^~646~^2.884^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35184~^~652~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~653~^0.190^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~672~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~687~^0.090^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~689~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35184~^~857~^0.010^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35184~^~858~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35185~^~312~^0.096^2^^~1~^~A~^^^1^0.076^0.117^1^^^^~04/01/2006~ -~35185~^~315~^0.405^2^^~1~^~A~^^^1^0.289^0.521^1^^^^~04/01/2006~ -~35185~^~404~^0.531^2^^~1~^~A~^^^1^0.523^0.539^1^^^^~04/01/2006~ -~35185~^~405~^0.264^2^^~1~^~A~^^^1^0.255^0.274^1^^^^~04/01/2006~ -~35185~^~406~^4.335^2^^~1~^~A~^^^1^4.110^4.560^1^^^^~04/01/2006~ -~35185~^~415~^0.068^2^^~1~^~A~^^^1^0.058^0.079^1^^^^~04/01/2006~ -~35185~^~606~^3.631^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35185~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~612~^0.165^2^^~1~^~A~^^^1^0.116^0.214^1^^^^~04/01/2006~ -~35185~^~613~^2.105^2^^~1~^~A~^^^1^2.080^2.131^1^^^^~04/01/2006~ -~35185~^~614~^1.250^2^^~1~^~A~^^^1^1.116^1.385^1^^^^~04/01/2006~ -~35185~^~615~^0.019^2^^~1~^~A~^^^1^0.019^0.020^1^^^^~04/01/2006~ -~35185~^~617~^3.258^2^^~1~^~A~^^^1^2.893^3.623^1^^^^~04/01/2006~ -~35185~^~618~^1.211^2^^~1~^~A~^^^1^1.000^1.423^1^^^^~04/01/2006~ -~35185~^~619~^0.075^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35185~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~624~^0.010^2^^~1~^~A~^^^1^0.007^0.012^1^^^~1~^~04/01/2006~ -~35185~^~625~^0.021^2^^~1~^~A~^^^1^0.007^0.034^1^^^~1~^~04/01/2006~ -~35185~^~626~^0.165^2^^~1~^~A~^^^1^0.153^0.177^1^^^^~04/01/2006~ -~35185~^~628~^0.056^2^^~1~^~A~^^^1^0.042^0.071^1^^^^~04/01/2006~ -~35185~^~645~^3.500^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~646~^1.306^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35185~^~652~^0.020^2^^~1~^~A~^^^1^0.007^0.033^1^^^~1~^~04/01/2006~ -~35185~^~653~^0.061^2^^~1~^~A~^^^1^0.031^0.091^1^^^^~04/01/2006~ -~35185~^~672~^0.020^2^^~1~^~A~^^^1^0.011^0.029^1^^^^~04/01/2006~ -~35185~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35185~^~851~^0.075^2^^~1~^~A~^^^1^0.034^0.116^1^^^^~04/01/2006~ -~35186~^~312~^0.066^2^^~1~^~A~^^^1^0.060^0.072^1^^^^~04/01/2006~ -~35186~^~315~^0.310^2^^~1~^~A~^^^1^0.296^0.324^1^^^^~04/01/2006~ -~35186~^~404~^0.277^2^^~1~^~A~^^^1^0.261^0.293^1^^^^~04/01/2006~ -~35186~^~405~^0.135^2^^~1~^~A~^^^1^0.129^0.141^1^^^^~04/01/2006~ -~35186~^~406~^2.545^2^^~1~^~A~^^^1^2.280^2.810^1^^^^~04/01/2006~ -~35186~^~415~^0.214^2^^~1~^~A~^^^1^0.198^0.231^1^^^^~04/01/2006~ -~35186~^~606~^3.366^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~612~^0.178^2^^~1~^~A~^^^1^0.118^0.237^1^^^^~04/01/2006~ -~35186~^~613~^1.801^2^^~1~^~A~^^^1^1.526^2.075^1^^^^~04/01/2006~ -~35186~^~614~^1.272^2^^~1~^~A~^^^1^1.031^1.513^1^^^^~04/01/2006~ -~35186~^~615~^0.018^2^^~1~^~A~^^^1^0.017^0.019^1^^^^~04/01/2006~ -~35186~^~617~^3.091^2^^~1~^~A~^^^1^2.353^3.829^1^^^^~04/01/2006~ -~35186~^~618~^0.781^2^^~1~^~A~^^^1^0.612^0.950^1^^^^~04/01/2006~ -~35186~^~619~^0.070^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~ -~35186~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~625~^0.028^2^^~1~^~A~^^^1^0.013^0.044^1^^^^~04/01/2006~ -~35186~^~626~^0.186^2^^~1~^~A~^^^1^0.153^0.220^1^^^^~04/01/2006~ -~35186~^~628~^0.039^2^^~1~^~A~^^^1^0.036^0.042^1^^^^~04/01/2006~ -~35186~^~645~^3.345^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~646~^0.864^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35186~^~652~^0.027^2^^~1~^~A~^^^1^0.014^0.040^1^^^^~04/01/2006~ -~35186~^~653~^0.071^2^^~1~^~A~^^^1^0.040^0.102^1^^^^~04/01/2006~ -~35186~^~672~^0.014^2^^~1~^~A~^^^1^0.007^0.020^1^^^~1~^~04/01/2006~ -~35186~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2006~ -~35186~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~04/01/2006~ -~35186~^~851~^0.070^2^^~1~^~A~^^^1^0.042^0.098^1^^^^~04/01/2006~ -~35187~^~312~^0.030^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~315~^0.480^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~404~^0.690^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~405~^0.291^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~406~^3.410^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~410~^0.390^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~415~^0.059^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~606~^0.270^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~613~^0.250^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~614~^0.020^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~617~^0.120^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~618~^0.560^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~619~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35187~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~626~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~645~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~646~^0.590^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35187~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~857~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35187~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~ -~35188~^~312~^0.041^3^0.000^~1~^~A~^^^1^0.041^0.042^2^0.040^0.043^~4~^~04/01/2006~ -~35188~^~315~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.011^2^0.011^0.011^~1, 4~^~04/01/2006~ -~35188~^~404~^0.083^3^0.009^~1~^~A~^^^1^0.074^0.101^2^0.045^0.121^~4~^~04/01/2006~ -~35188~^~405~^0.176^3^0.009^~1~^~A~^^^1^0.158^0.187^2^0.137^0.216^~4~^~04/01/2006~ -~35188~^~406~^6.247^3^0.424^~1~^~A~^^^1^5.410^6.780^2^4.424^8.069^~4~^~04/01/2006~ -~35188~^~410~^0.486^3^0.046^~1~^~A~^^^1^0.400^0.555^2^0.290^0.682^~4~^~04/01/2006~ -~35188~^~415~^0.266^3^0.020^~1~^~A~^^^1^0.229^0.297^2^0.181^0.351^~4~^~04/01/2006~ -~35188~^~501~^0.335^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~502~^1.029^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~503~^1.017^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~504~^1.723^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~505~^1.962^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~506~^0.861^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~507~^0.383^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~508~^0.885^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~509~^0.754^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~510~^1.113^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~511~^1.304^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~512~^0.538^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~513~^1.280^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~514~^3.014^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~515~^3.421^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~516~^1.005^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~517~^0.790^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~518~^0.981^0^^~1~^~A~^^^^^^^^^^~04/01/2006~ -~35188~^~521~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~4~^~04/01/2006~ -~35188~^~606~^0.498^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2006~ -~35188~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~612~^0.078^3^0.031^~1~^~A~^^^1^0.024^0.130^2^-0.054^0.210^~4~^~04/01/2006~ -~35188~^~613~^0.333^3^0.116^~1~^~A~^^^1^0.129^0.531^2^-0.167^0.832^~4~^~04/01/2006~ -~35188~^~614~^0.074^3^0.022^~1~^~A~^^^1^0.039^0.115^2^-0.022^0.169^~4~^~04/01/2006~ -~35188~^~615~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.006^2^-0.002^0.009^~1, 4~^~04/01/2006~ -~35188~^~617~^0.541^3^0.214^~1~^~A~^^^1^0.168^0.908^2^-0.378^1.460^~4~^~04/01/2006~ -~35188~^~618~^0.018^3^0.006^~1~^~A~^^^1^0.007^0.028^2^-0.008^0.044^~4~^~04/01/2006~ -~35188~^~619~^0.009^3^0.004^~1~^~AS~^^^1^0.002^0.015^2^-0.007^0.025^~4~^~04/01/2006~ -~35188~^~620~^0.036^3^0.008^~1~^~A~^^^1^0.022^0.051^2^-0.001^0.072^~4~^~04/01/2006~ -~35188~^~621~^0.363^3^0.113^~1~^~A~^^^1^0.184^0.571^2^-0.122^0.847^~4~^~04/01/2006~ -~35188~^~624~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~625~^0.004^3^0.002^~1~^~A~^^^1^0.001^0.007^2^-0.003^0.011^~1, 4~^~04/01/2006~ -~35188~^~626~^0.211^3^0.085^~1~^~A~^^^1^0.057^0.351^2^-0.155^0.577^~4~^~04/01/2006~ -~35188~^~628~^0.085^3^0.033^~1~^~A~^^^1^0.034^0.146^2^-0.055^0.226^~4~^~04/01/2006~ -~35188~^~629~^0.243^3^0.099^~1~^~A~^^^1^0.078^0.422^2^-0.185^0.671^~4~^~04/01/2006~ -~35188~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^2^0.000^0.000^~4~^~04/01/2006~ -~35188~^~631~^0.052^3^0.022^~1~^~A~^^^1^0.019^0.093^2^-0.042^0.146^~4~^~04/01/2006~ -~35188~^~645~^0.842^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~646~^0.731^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~ -~35188~^~652~^0.007^3^0.002^~1~^~A~^^^1^0.003^0.010^2^-0.002^0.015^~4~^~04/01/2006~ -~35188~^~653~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~4~^~04/01/2006~ -~35188~^~654~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~672~^0.008^3^0.003^~1~^~A~^^^1^0.003^0.013^2^-0.004^0.020^~4~^~04/01/2006~ -~35188~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~689~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.005^2^-0.001^0.008^~1, 4~^~04/01/2006~ -~35188~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^2^0.000^0.000^~1, 4~^~04/01/2006~ -~35188~^~851~^0.009^3^0.004^~1~^~A~^^^1^0.002^0.015^2^-0.007^0.025^~4~^~04/01/2006~ -~35190~^~312~^0.148^2^^~1~^~A~^^^2^0.148^0.148^1^^^~1~^~07/01/2007~ -~35190~^~315~^0.051^2^^~1~^~A~^^^2^0.037^0.066^1^^^~1~^~07/01/2007~ -~35190~^~404~^0.494^2^^~1~^~A~^^^2^0.423^0.564^1^^^^~07/01/2007~ -~35190~^~405~^0.543^2^^~1~^~A~^^^2^0.077^1.010^1^^^^~07/01/2007~ -~35190~^~406~^22.750^2^^~1~^~A~^^^2^22.000^23.500^1^^^^~07/01/2007~ -~35190~^~410~^2.745^2^^~1~^~A~^^^2^2.490^3.000^1^^^^~07/01/2007~ -~35190~^~415~^0.816^2^^~1~^~A~^^^2^0.542^1.090^1^^^^~07/01/2007~ -~35190~^~606~^2.593^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35190~^~609~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~610~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~611~^0.004^2^^~1~^~A~^^^2^0.000^0.007^1^^^~1~^~07/01/2007~ -~35190~^~612~^0.375^2^^~1~^~A~^^^2^0.370^0.380^1^^^^~07/01/2007~ -~35190~^~613~^1.760^2^^~1~^~A~^^^2^1.660^1.860^1^^^^~07/01/2007~ -~35190~^~614~^0.330^2^^~1~^~A~^^^2^0.330^0.330^1^^^^~07/01/2007~ -~35190~^~615~^0.005^2^^~1~^~A~^^^2^0.000^0.010^1^^^~1~^~07/01/2007~ -~35190~^~617~^2.175^2^^~1~^~A~^^^2^2.130^2.220^1^^^^~07/01/2007~ -~35190~^~618~^0.185^2^^~1~^~A~^^^2^0.180^0.190^1^^^^~07/01/2007~ -~35190~^~619~^0.130^2^^~1~^~A~^^^2^0.100^0.160^1^^^^~07/01/2007~ -~35190~^~620~^0.185^2^^~1~^~A~^^^2^0.180^0.190^1^^^^~07/01/2007~ -~35190~^~621~^1.520^2^^~1~^~A~^^^2^1.420^1.620^1^^^^~07/01/2007~ -~35190~^~624~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~625~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~626~^0.370^2^^~1~^~A~^^^2^0.340^0.400^1^^^^~07/01/2007~ -~35190~^~627~^0.145^2^^~1~^~A~^^^2^0.120^0.170^1^^^^~07/01/2007~ -~35190~^~628~^0.860^2^^~1~^~A~^^^2^0.850^0.870^1^^^^~07/01/2007~ -~35190~^~629~^0.905^2^^~1~^~A~^^^2^0.900^0.910^1^^^^~07/01/2007~ -~35190~^~630~^0.540^2^^~1~^~A~^^^2^0.520^0.560^1^^^^~07/01/2007~ -~35190~^~631~^0.310^2^^~1~^~A~^^^2^0.280^0.340^1^^^^~07/01/2007~ -~35190~^~645~^4.025^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35190~^~646~^3.469^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35190~^~652~^0.050^2^^~1~^~A~^^^2^0.050^0.050^1^^^^~07/01/2007~ -~35190~^~653~^0.070^2^^~1~^~A~^^^2^0.040^0.100^1^^^^~07/01/2007~ -~35190~^~654~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~671~^0.035^2^^~1~^~A~^^^2^0.000^0.070^1^^^~1~^~07/01/2007~ -~35190~^~672~^0.030^2^^~1~^~A~^^^2^0.030^0.030^1^^^^~07/01/2007~ -~35190~^~687~^0.045^2^^~1~^~A~^^^2^0.040^0.050^1^^^^~07/01/2007~ -~35190~^~689~^0.030^2^^~1~^~A~^^^2^0.030^0.030^1^^^^~07/01/2007~ -~35190~^~697~^0.000^2^^~1~^~A~^^^2^0.000^0.000^1^^^~1~^~07/01/2007~ -~35190~^~857~^0.025^2^^~1~^~A~^^^2^0.020^0.030^1^^^^~07/01/2007~ -~35190~^~858~^0.005^2^^~1~^~A~^^^2^0.000^0.010^1^^^~1~^~07/01/2007~ -~35192~^~312~^0.138^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~315~^0.094^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~404~^0.029^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~405~^0.039^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~406~^0.162^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~410~^0.041^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35192~^~415~^0.055^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~501~^0.008^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~502~^0.014^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~503~^0.014^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~504~^0.025^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~505~^0.028^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~506~^0.009^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~508~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~509~^0.009^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~510~^0.022^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~511~^0.106^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~512~^0.008^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~513~^0.024^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~514~^0.041^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~515~^0.052^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~516~^0.019^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~517~^0.013^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35192~^~518~^0.021^0^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~312~^0.112^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~315~^0.142^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~404~^0.012^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~405~^0.099^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35193~^~406~^0.162^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~410~^0.041^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2006~ -~35193~^~415~^0.087^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~312~^0.189^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~315~^0.337^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~404~^0.021^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~405~^0.644^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~406~^0.870^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~410~^0.150^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35194~^~415~^0.216^1^^~1~^~A~^^^^^^^^^^~05/01/2006~ -~35195~^~312~^0.041^2^^~1~^~A~^^^1^0.034^0.048^1^^^^~05/01/2007~ -~35195~^~315~^0.760^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35195~^~404~^0.023^2^^~1~^~A~^^^1^0.008^0.037^1^^^^~05/01/2007~ -~35195~^~405~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~05/01/2007~ -~35195~^~406~^0.440^2^^~1~^~A~^^^1^0.327^0.554^1^^^^~05/01/2007~ -~35195~^~410~^0.234^2^^~1~^~A~^^^1^0.154^0.315^1^^^^~05/01/2007~ -~35195~^~415~^0.123^2^^~1~^~A~^^^1^0.094^0.151^1^^^^~05/01/2007~ -~35196~^~312~^0.120^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~315~^1.490^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~404~^0.029^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~405~^0.300^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~406~^0.790^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35196~^~415~^0.184^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~312~^0.100^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~315~^1.560^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~404~^0.047^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~405~^0.270^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~406~^0.623^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35197~^~415~^0.232^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~312~^0.019^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35198~^~315~^0.583^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~404~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~405~^0.032^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~406~^0.293^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35198~^~415~^0.079^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~404~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~405~^0.044^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~406~^1.000^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35199~^~415~^0.146^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35200~^~312~^0.053^2^^~1~^~A~^^^1^0.049^0.057^1^^^^~05/01/2007~ -~35200~^~315~^0.266^2^^~1~^~A~^^^1^0.256^0.276^1^^^^~05/01/2007~ -~35200~^~404~^0.178^2^^~1~^~A~^^^1^0.136^0.220^1^^^^~05/01/2007~ -~35200~^~405~^0.090^2^^~1~^~A~^^^1^0.087^0.092^1^^^~1~^~05/01/2007~ -~35200~^~406~^1.071^2^^~1~^~A~^^^1^0.972^1.170^1^^^^~05/01/2007~ -~35200~^~415~^0.470^2^^~1~^~A~^^^1^0.456^0.483^1^^^^~05/01/2007~ -~35201~^~312~^0.038^2^^~1~^~A~^^^1^0.034^0.042^1^^^^~05/01/2007~ -~35201~^~315~^0.209^2^^~1~^~A~^^^1^0.202^0.216^1^^^^~05/01/2007~ -~35201~^~404~^0.126^2^^~1~^~A~^^^1^0.126^0.126^1^^^^~05/01/2007~ -~35201~^~405~^0.039^2^^~1~^~A~^^^1^0.037^0.041^1^^^~1~^~05/01/2007~ -~35201~^~406~^0.708^2^^~1~^~A~^^^1^0.549^0.867^1^^^^~05/01/2007~ -~35201~^~415~^0.379^2^^~1~^~A~^^^1^0.342^0.417^1^^^^~05/01/2007~ -~35202~^~312~^0.097^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~315~^0.368^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~404~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~405~^0.080^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~406~^1.030^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~410~^0.300^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35202~^~415~^0.104^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~312~^0.113^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~315~^1.020^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~404~^0.016^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~405~^0.166^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~406~^1.300^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~410~^0.800^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35203~^~415~^0.076^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35204~^~312~^0.186^3^0.048^~1~^~A~^^^1^0.136^0.282^2^-0.022^0.393^~4~^~05/01/2007~ -~35204~^~315~^0.417^3^0.033^~1~^~A~^^^1^0.356^0.470^2^0.274^0.559^~4~^~05/01/2007~ -~35204~^~404~^0.034^3^0.002^~1~^~A~^^^1^0.031^0.037^2^0.026^0.042^~4~^~05/01/2007~ -~35204~^~405~^0.173^3^0.037^~1~^~A~^^^1^0.114^0.242^2^0.013^0.333^~4~^~05/01/2007~ -~35204~^~406~^0.628^3^0.053^~1~^~A~^^^1^0.563^0.732^2^0.402^0.854^~4~^~05/01/2007~ -~35204~^~410~^0.398^3^0.036^~1~^~A~^^^1^0.338^0.463^2^0.242^0.554^~2, 3~^~05/01/2007~ -~35204~^~415~^0.198^3^0.022^~1~^~A~^^^1^0.155^0.231^2^0.101^0.294^~4~^~05/01/2007~ -~35205~^~312~^0.076^2^^~1~^~A~^^^1^0.066^0.086^1^^^^~05/01/2007~ -~35205~^~315~^0.779^2^^~1~^~A~^^^1^0.591^0.967^1^^^^~05/01/2007~ -~35205~^~404~^0.008^2^^~1~^~A~^^^1^0.008^0.008^1^^^^~05/01/2007~ -~35205~^~405~^0.160^2^^~1~^~A~^^^1^0.152^0.168^1^^^^~05/01/2007~ -~35205~^~406~^0.388^2^^~1~^~A~^^^1^0.371^0.406^1^^^^~05/01/2007~ -~35205~^~415~^0.103^2^^~1~^~A~^^^1^0.100^0.107^1^^^^~05/01/2007~ -~35206~^~312~^0.035^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~315~^0.076^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~404~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~405~^0.042^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~406~^0.367^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~410~^0.301^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35206~^~415~^0.093^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~312~^0.654^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~315~^1.740^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~404~^0.212^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~405~^0.222^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~406~^1.630^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~410~^0.791^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~415~^0.116^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~606~^3.210^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~613~^2.290^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~614~^0.750^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~615~^0.130^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~617~^15.300^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~618~^14.200^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~619~^0.070^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~ -~35207~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~624~^0.040^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~626~^0.060^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~628~^0.210^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~630~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~645~^15.570^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~646~^14.420^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35207~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~672~^0.080^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35207~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~689~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2007~ -~35207~^~851~^0.070^1^^~1~^~A~^^^^^^^^^^~05/01/2007~ -~35211~^~312~^0.325^2^^~1~^~A~^^^1^0.270^0.380^1^^^^~05/01/2007~ -~35211~^~315~^0.043^2^^~1~^~A~^^^1^0.037^0.050^1^^^^~05/01/2007~ -~35211~^~404~^0.291^2^^~1~^~A~^^^1^0.140^0.442^1^^^^~05/01/2007~ -~35211~^~405~^0.814^2^^~1~^~A~^^^1^0.666^0.962^1^^^^~05/01/2007~ -~35211~^~406~^5.890^2^^~1~^~A~^^^1^4.630^7.150^1^^^^~05/01/2007~ -~35211~^~410~^1.487^2^^~1~^~A~^^^1^0.883^2.090^1^^^^~05/01/2007~ -~35211~^~415~^0.373^2^^~1~^~A~^^^1^0.351^0.396^1^^^^~05/01/2007~ -~35211~^~606~^1.880^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35211~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~35211~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~612~^0.060^2^^~1~^~A~^^^1^0.030^0.090^1^^^^~05/01/2007~ -~35211~^~613~^0.950^2^^~1~^~A~^^^1^0.610^1.290^1^^^^~05/01/2007~ -~35211~^~614~^0.795^2^^~1~^~A~^^^1^0.590^1.000^1^^^^~05/01/2007~ -~35211~^~615~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~05/01/2007~ -~35211~^~617~^1.380^2^^~1~^~A~^^^1^0.860^1.900^1^^^^~05/01/2007~ -~35211~^~618~^0.345^2^^~1~^~A~^^^1^0.260^0.430^1^^^^~05/01/2007~ -~35211~^~619~^0.130^2^^~1~^~A~^^^1^0.100^0.160^1^^^^~05/01/2007~ -~35211~^~620~^0.125^2^^~1~^~A~^^^1^0.100^0.150^1^^^^~05/01/2007~ -~35211~^~621~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~05/01/2007~ -~35211~^~624~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~625~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^^~05/01/2007~ -~35211~^~626~^0.085^2^^~1~^~A~^^^1^0.070^0.100^1^^^^~05/01/2007~ -~35211~^~627~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^^~05/01/2007~ -~35211~^~628~^0.015^2^^~1~^~A~^^^1^0.010^0.020^1^^^^~05/01/2007~ -~35211~^~629~^0.035^2^^~1~^~A~^^^1^0.030^0.040^1^^^^~05/01/2007~ -~35211~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~631~^0.060^2^^~1~^~A~^^^1^0.050^0.070^1^^^^~05/01/2007~ -~35211~^~645~^1.495^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35211~^~646~^0.725^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~ -~35211~^~652~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^^~05/01/2007~ -~35211~^~653~^0.040^2^^~1~^~A~^^^1^0.030^0.050^1^^^^~05/01/2007~ -~35211~^~654~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^^~05/01/2007~ -~35211~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~35211~^~672~^0.005^2^^~1~^~A~^^^1^0.000^0.010^1^^^^~05/01/2007~ -~35211~^~687~^0.010^2^^~1~^~A~^^^1^0.000^0.020^1^^^^~05/01/2007~ -~35211~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~857~^0.000^2^^~1~^~A~^^^1^0.000^0.000^1^^^~1~^~05/01/2007~ -~35211~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2007~ -~35225~^~312~^0.030^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~404~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~405~^0.060^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~406~^1.430^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~606~^8.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~618~^16.100^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35225~^~619~^0.500^0^^~13~^~AI~^^^^^^^^^^~01/01/2008~ -~35225~^~645~^15.600^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35225~^~646~^17.300^1^^~13~^~AI~^^^^^^^^^^~04/01/2004~ -~35226~^~312~^1.890^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~315~^0.700^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~501~^0.400^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~502~^1.300^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~503~^1.400^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~506~^0.300^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~510~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~511~^3.400^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~512~^0.500^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~513~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~514~^0.200^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~517~^0.100^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~518~^0.300^0^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~606~^1.300^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~ -~35226~^~614~^0.700^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~645~^0.900^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35226~^~646~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~312~^0.875^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~315~^0.131^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~501~^1.200^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~503~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~505~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~507~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~508~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~509~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~510~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~511~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~512~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~513~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~514~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~515~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~606~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~645~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35227~^~646~^0.300^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35228~^~312~^0.306^1^^~1~^~A~^^^^^^^^^^~05/01/2008~ -~35228~^~315~^0.037^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35229~^~312~^0.527^3^0.436^~1~^~A~^^^1^0.086^1.400^2^-1.350^2.405^~2, 3~^~07/01/2008~ -~35229~^~315~^0.017^4^0.001^~1~^~A~^^^1^0.015^0.019^3^0.014^0.019^~2, 3~^~07/01/2008~ -~35229~^~645~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~312~^0.116^2^^~1~^~A~^^^1^0.088^0.144^1^^^^~07/01/2008~ -~35230~^~315~^0.006^2^^~1~^~A~^^^1^0.000^0.012^1^^^^~07/01/2008~ -~35230~^~501~^1.600^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~504~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~506~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~507~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~512~^0.200^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~514~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~515~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~516~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~517~^0.100^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~518~^0.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35230~^~605~^0.000^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~35230~^~606~^2.900^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~35230~^~645~^3.300^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~35230~^~646~^3.000^1^^~1~^~A~^^^^^^^^^^~07/01/2008~ -~35231~^~605~^0.200^1^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~35232~^~312~^0.073^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~315~^0.937^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~405~^0.070^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~406~^4.190^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~410~^1.300^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~415~^0.957^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~605~^0.010^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~606~^0.147^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~607~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~610~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~611~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~613~^0.083^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~614~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~615~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~617~^0.094^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~618~^0.144^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~619~^0.009^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~624~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~626~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~630~^0.001^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~645~^0.100^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~35232~^~646~^0.161^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~35232~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~654~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~663~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~665~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~672~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~673~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~674~^0.089^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~675~^0.139^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~676~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35232~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~695~^0.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35232~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~851~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35232~^~853~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35232~^~858~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35233~^~312~^1.200^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~315~^7.600^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~404~^0.480^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~405~^0.160^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~406~^3.190^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35233~^~415~^0.550^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~35234~^~312~^0.286^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~315~^1.820^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~404~^0.160^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~405~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~406~^2.920^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~410~^0.720^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~415~^0.542^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~605~^0.006^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~606~^0.819^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~607~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~608~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~610~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~611~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~613~^0.561^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~614~^0.181^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~615~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~617~^1.747^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~618~^1.568^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~619~^0.045^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~620~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~621~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~624~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~625~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~626~^0.007^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~628~^0.021^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~630~^0.003^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~645~^1.783^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~646~^1.623^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~652~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~653~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~654~^0.009^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~663~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~665~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~671~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~673~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~674~^1.744^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~675~^1.565^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~676~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~687~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35234~^~693~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35234~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~851~^0.045^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~852~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35234~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35234~^~858~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~312~^0.004^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~315~^0.952^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~404~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~406~^0.290^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~410~^0.140^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~415~^0.068^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~607~^0.010^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~610~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~613~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~614~^0.007^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~615~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~617~^0.016^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~618~^0.043^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~619~^0.006^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~645~^0.016^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~646~^0.049^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~652~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~674~^0.016^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~675~^0.043^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~35235~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~35235~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~851~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~35235~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35235~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~35236~^~312~^0.036^3^0.014^~1~^~A~^^^1^0.009^0.057^2^-0.025^0.097^~1, 2, 3~^~04/01/2010~ -~35236~^~315~^0.059^3^0.019^~1~^~A~^^^1^0.024^0.088^2^-0.021^0.139^~2, 3~^~04/01/2010~ -~35236~^~404~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~405~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35236~^~406~^0.097^3^0.026^~1~^~A~^^^1^0.050^0.140^2^-0.015^0.209^~2, 3~^~04/01/2010~ -~35236~^~410~^0.200^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~415~^0.036^3^0.011^~1~^~A~^^^1^0.021^0.057^2^-0.011^0.083^~2, 3~^~04/01/2010~ -~35236~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~606~^0.085^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~607~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~610~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~612~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~613~^0.053^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~614~^0.019^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~615~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~617~^0.080^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~618~^0.086^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~619~^0.036^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~624~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~626~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~628~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~645~^0.080^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~646~^0.122^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~653~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~654~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~673~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~674~^0.080^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~675~^0.086^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35236~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35236~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~851~^0.036^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35236~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35236~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35237~^~312~^0.087^3^0.002^~1~^~A~^^^1^0.083^0.089^2^0.078^0.096^~2, 3~^~04/01/2010~ -~35237~^~315~^0.160^3^0.007^~1~^~A~^^^1^0.151^0.173^2^0.131^0.189^~2, 3~^~04/01/2010~ -~35237~^~404~^0.167^3^0.003^~1~^~A~^^^1^0.160^0.170^2^0.152^0.181^~2, 3~^~04/01/2010~ -~35237~^~405~^0.070^3^0.000^~1~^~A~^^^1^0.070^0.070^^^^~2, 3~^~04/01/2010~ -~35237~^~406~^2.823^3^0.107^~1~^~A~^^^1^2.610^2.930^2^2.364^3.282^~2, 3~^~04/01/2010~ -~35237~^~410~^0.820^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35237~^~415~^0.262^3^0.004^~1~^~A~^^^1^0.257^0.271^2^0.244^0.281^~2, 3~^~04/01/2010~ -~35237~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~606~^1.383^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~607~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~35237~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2010~ -~35237~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2010~ -~35237~^~612~^0.049^3^0.003^~1~^~A~^^^1^0.044^0.053^2^0.037^0.061^~2, 3~^~04/01/2010~ -~35237~^~613~^0.910^3^0.041^~1~^~A~^^^1^0.830^0.967^2^0.733^1.087^~2, 3~^~04/01/2010~ -~35237~^~614~^0.388^3^0.022^~1~^~A~^^^1^0.345^0.420^2^0.292^0.483^~2, 3~^~04/01/2010~ -~35237~^~615~^0.010^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2010~ -~35237~^~617~^1.517^3^0.061^~1~^~AS~^^^1^1.397^1.594^2^1.255^1.779^~2, 3~^~04/01/2010~ -~35237~^~618~^0.911^3^0.044^~1~^~AS~^^^1^0.824^0.965^2^0.722^1.100^~2, 3~^~04/01/2010~ -~35237~^~619~^0.032^3^0.001^~1~^~AS~^^^1^0.030^0.034^2^0.027^0.037^~2, 3~^~04/01/2010~ -~35237~^~620~^0.035^3^0.001^~1~^~A~^^^1^0.033^0.038^2^0.029^0.042^~2, 3~^~04/01/2010~ -~35237~^~621~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2010~ -~35237~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~35237~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~626~^0.089^3^0.003^~1~^~AS~^^^1^0.083^0.094^2^0.075^0.103^~2, 3~^~04/01/2010~ -~35237~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~628~^0.031^3^0.002^~1~^~A~^^^1^0.027^0.033^2^0.023^0.039^~2, 3~^~04/01/2010~ -~35237~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2010~ -~35237~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~35237~^~645~^1.649^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~646~^1.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~653~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~04/01/2010~ -~35237~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2010~ -~35237~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~663~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2010~ -~35237~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~665~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2010~ -~35237~^~670~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2010~ -~35237~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2010~ -~35237~^~672~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~04/01/2010~ -~35237~^~673~^0.089^3^0.003^~1~^~A~^^^1^0.083^0.094^2^0.075^0.103^~2, 3~^~04/01/2010~ -~35237~^~674~^1.508^3^0.061^~1~^~A~^^^1^1.388^1.584^2^1.247^1.769^~2, 3~^~04/01/2010~ -~35237~^~675~^0.904^3^0.044^~1~^~A~^^^1^0.817^0.958^2^0.715^1.094^~2, 3~^~04/01/2010~ -~35237~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2010~ -~35237~^~685~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2010~ -~35237~^~689~^0.006^3^0.000^~1~^~AS~^^^1^0.006^0.006^2^0.006^0.006^~2, 3~^~04/01/2010~ -~35237~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~695~^0.003^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35237~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35237~^~851~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.033^2^0.026^0.036^~2, 3~^~04/01/2010~ -~35237~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2010~ -~35237~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2010~ -~35237~^~858~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2010~ -~35238~^~312~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2010~ -~35238~^~315~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^2^0.004^0.004^~1, 2, 3~^~04/01/2010~ -~35239~^~312~^0.126^3^0.007^~1~^~A~^^^1^0.117^0.139^2^0.097^0.155^~2, 3~^~04/01/2010~ -~35239~^~315~^0.604^3^0.019^~1~^~A~^^^1^0.583^0.642^2^0.522^0.686^~2, 3~^~04/01/2010~ -~35239~^~404~^0.387^3^0.003^~1~^~A~^^^1^0.380^0.390^2^0.372^0.401^~2, 3~^~04/01/2010~ -~35239~^~405~^0.170^3^0.006^~1~^~A~^^^1^0.160^0.180^2^0.145^0.195^~2, 3~^~04/01/2010~ -~35239~^~406~^3.930^3^0.089^~1~^~A~^^^1^3.800^4.100^2^3.548^4.312^~2, 3~^~04/01/2010~ -~35239~^~410~^0.620^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~415~^0.111^3^0.003^~1~^~A~^^^1^0.107^0.116^2^0.100^0.122^~2, 3~^~04/01/2010~ -~35239~^~605~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~606~^0.287^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~607~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~609~^0.005^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~610~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~611~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~612~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~613~^0.222^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~614~^0.029^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~615~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~617~^0.223^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~618~^0.662^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~619~^0.027^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~624~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~628~^0.004^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~645~^0.229^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~646~^0.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~652~^0.003^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~653~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~654~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~663~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~665~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~673~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~674~^0.223^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~675~^0.662^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~ -~35239~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~695~^0.000^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~ -~35239~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~851~^0.027^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35239~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35239~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~312~^0.119^3^0.006^~1~^~A~^^^1^0.111^0.130^2^0.095^0.143^~2, 3~^~04/01/2010~ -~35240~^~315~^0.405^3^0.074^~1~^~A~^^^1^0.324^0.552^2^0.087^0.722^~2, 3~^~04/01/2010~ -~35240~^~404~^0.030^3^0.006^~1~^~A~^^^1^0.020^0.040^2^0.005^0.055^~2, 3~^~04/01/2010~ -~35240~^~405~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2010~ -~35240~^~406~^0.550^3^0.050^~1~^~A~^^^1^0.490^0.650^2^0.333^0.766^~2, 3~^~04/01/2010~ -~35240~^~410~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2010~ -~35240~^~415~^0.168^3^0.009^~1~^~A~^^^1^0.157^0.187^2^0.128^0.209^~2, 3~^~04/01/2010~ -~35240~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~606~^0.289^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~607~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~609~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~611~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~612~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~613~^0.217^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~614~^0.037^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~615~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~617~^0.342^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~618~^0.757^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~619~^0.023^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~624~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~626~^0.002^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~628~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~645~^0.347^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~646~^0.779^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~652~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~35240~^~653~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~654~^0.003^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~663~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~665~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~670~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~672~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~673~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2010~ -~35240~^~674~^0.338^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~675~^0.753^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~ -~35240~^~693~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~ -~35240~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~851~^0.023^1^^~1~^~A~^^^^^^^^^^~06/01/2010~ -~35240~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~35240~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~ -~36000~^~312~^0.076^6^0.002^~1~^~A~^^^1^0.072^0.081^5^0.071^0.080^~2, 3~^~03/01/2013~ -~36000~^~315~^0.014^6^0.001^~1~^~A~^^^1^0.011^0.017^5^0.010^0.017^~1, 2, 3~^~03/01/2013~ -~36000~^~404~^0.050^3^0.001^~1~^~A~^^^1^0.048^0.052^2^0.045^0.055^~2, 3~^~03/01/2013~ -~36000~^~405~^0.287^3^0.003^~1~^~A~^^^1^0.280^0.290^2^0.272^0.301^~2, 3~^~03/01/2013~ -~36000~^~406~^4.903^3^0.133^~1~^~A~^^^1^4.670^5.130^2^4.332^5.475^~2, 3~^~03/01/2013~ -~36000~^~410~^0.345^2^^~1~^~A~^^^1^0.320^0.370^1^^^^~03/01/2013~ -~36000~^~415~^0.575^3^0.014^~1~^~A~^^^1^0.558^0.602^2^0.516^0.634^~2, 3~^~03/01/2013~ -~36000~^~501~^0.356^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~502~^1.257^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~503~^1.334^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~504~^2.263^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~505~^2.332^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~506~^0.648^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~507~^0.300^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~508~^1.121^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~509~^0.984^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~510~^1.392^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~511~^1.875^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~512~^0.976^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~513~^1.594^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~514~^2.540^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~515~^4.323^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~516~^1.245^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~517~^1.175^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~518~^1.010^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36000~^~605~^0.314^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~606~^3.477^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36000~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~610~^0.008^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~03/01/2013~ -~36000~^~611~^0.008^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~03/01/2013~ -~36000~^~612~^0.263^3^0.019^~1~^~A~^^^1^0.260^0.325^2^0.214^0.381^~2, 3~^~03/01/2013~ -~36000~^~613~^2.117^3^0.155^~1~^~A~^^^1^2.119^2.654^2^1.729^3.060^~2, 3~^~03/01/2013~ -~36000~^~614~^0.925^3^0.056^~1~^~A~^^^1^0.951^1.146^2^0.805^1.289^~2, 3~^~03/01/2013~ -~36000~^~615~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2009~ -~36000~^~617~^3.716^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~618~^0.399^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~619~^0.025^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~620~^0.056^3^0.003^~1~^~A~^^^1^0.059^0.068^2^0.052^0.075^~2, 3~^~03/01/2013~ -~36000~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36000~^~624~^0.001^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~03/01/2013~ -~36000~^~625~^0.097^3^0.005^~1~^~A~^^^1^0.099^0.115^2^0.087^0.132^~2, 3~^~03/01/2013~ -~36000~^~626~^0.416^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~628~^0.028^3^0.006^~1~^~A~^^^1^0.022^0.042^2^0.007^0.057^~2, 3~^~03/01/2013~ -~36000~^~629~^0.005^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36000~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~631~^0.013^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~03/01/2013~ -~36000~^~645~^4.350^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~646~^0.532^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~652~^0.040^3^0.005^~1~^~A~^^^1^0.037^0.054^2^0.024^0.066^~2, 3~^~03/01/2013~ -~36000~^~653~^0.103^3^0.013^~1~^~A~^^^1^0.100^0.142^2^0.062^0.172^~2, 3~^~03/01/2013~ -~36000~^~654~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~1, 2, 3~^~03/01/2013~ -~36000~^~662~^0.024^3^0.002^~1~^~A~^^^1^0.023^0.031^2^0.017^0.038^~2, 3~^~04/01/2009~ -~36000~^~663~^0.236^3^0.017^~1~^~A~^^^1^0.235^0.294^2^0.193^0.340^~2, 3~^~03/01/2013~ -~36000~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36000~^~665~^0.054^3^0.011^~1~^~A~^^^1^0.041^0.077^2^0.016^0.107^~2, 3~^~03/01/2013~ -~36000~^~670~^0.037^3^0.003^~1~^~A~^^^1^0.036^0.047^2^0.028^0.056^~2, 3~^~03/01/2013~ -~36000~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36000~^~672~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~03/01/2013~ -~36000~^~673~^0.392^3^0.026^~1~^~A~^^^1^0.391^0.470^2^0.331^0.555^~2, 3~^~03/01/2013~ -~36000~^~674~^3.481^3^0.264^~1~^~A~^^^1^3.586^4.456^2^2.800^5.076^~2, 3~^~03/01/2013~ -~36000~^~675~^0.308^3^0.012^~1~^~A~^^^1^0.326^0.367^2^0.297^0.399^~2, 3~^~03/01/2013~ -~36000~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~03/01/2013~ -~36000~^~687~^0.093^3^0.016^~1~^~A~^^^1^0.089^0.136^2^0.038^0.172^~2, 3~^~03/01/2013~ -~36000~^~689~^0.022^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36000~^~693~^0.260^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36000~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36000~^~851~^0.024^3^0.001^~1~^~A~^^^1^0.025^0.028^2^0.023^0.030^~2, 3~^~03/01/2013~ -~36000~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~853~^0.022^3^0.002^~1~^~A~^^^1^0.021^0.028^2^0.016^0.033^~2, 3~^~03/01/2013~ -~36000~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36000~^~858~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.013^2^0.001^0.018^~2, 3~^~03/01/2013~ -~36001~^~312~^0.140^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~315~^0.281^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~404~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~405~^0.089^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~406~^0.900^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~410~^0.340^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~415~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~501~^0.139^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~502~^0.447^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~503~^0.526^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~504~^0.959^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~505~^0.829^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~506~^0.282^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~507~^0.167^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~508~^0.550^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~509~^0.415^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~510~^0.548^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~511~^0.894^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~512~^0.263^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~513~^0.622^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~514~^1.075^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~515~^2.680^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~516~^0.582^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~517~^0.792^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~518~^0.486^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~605~^0.147^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~606~^3.366^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~609~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36001~^~610~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~612~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~613~^1.991^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~614~^1.163^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~615~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~617~^4.058^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~618~^8.505^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~619~^1.067^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~620~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~621~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~624~^0.063^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~626~^0.035^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~628~^0.131^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~629~^0.034^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~631~^0.004^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~645~^4.235^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~646~^9.682^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36001~^~653~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~654~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~662~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~663~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~ -~36001~^~665~^0.105^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~670~^0.021^1^^~1~^~A~^^^^^^^^^^~04/01/2009~ -~36001~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~672~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~673~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~674~^4.018^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~675~^8.379^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~685~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~687~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36001~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~695~^0.105^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36001~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~851~^0.977^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36001~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36001~^~858~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36002~^~312~^0.109^6^0.005^~1~^~A~^^^1^0.091^0.128^5^0.096^0.122^~2, 3~^~03/01/2013~ -~36002~^~315~^0.268^6^0.009^~1~^~A~^^^1^0.244^0.303^5^0.246^0.291^~2, 3~^~03/01/2013~ -~36002~^~404~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.117^~2, 3~^~03/01/2013~ -~36002~^~405~^0.058^3^0.000^~1~^~A~^^^1^0.058^0.059^2^0.057^0.060^~2, 3~^~03/01/2013~ -~36002~^~406~^2.180^3^0.189^~1~^~A~^^^1^1.880^2.530^2^1.365^2.994^~2, 3~^~03/01/2013~ -~36002~^~410~^0.495^2^^~1~^~A~^^^1^0.480^0.510^1^^^^~03/01/2013~ -~36002~^~415~^0.205^3^0.009^~1~^~A~^^^1^0.195^0.223^2^0.166^0.244^~2, 3~^~03/01/2013~ -~36002~^~605~^0.083^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~606~^2.333^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~609~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2009~ -~36002~^~610~^0.005^3^0.002^~1~^~A~^^^1^0.003^0.008^2^-0.002^0.012^~2, 3~^~03/01/2013~ -~36002~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~03/01/2013~ -~36002~^~612~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~03/01/2013~ -~36002~^~613~^1.507^3^0.078^~1~^~A~^^^1^1.353^1.601^2^1.173^1.841^~2, 3~^~03/01/2013~ -~36002~^~614~^0.676^3^0.031^~1~^~A~^^^1^0.614^0.709^2^0.543^0.808^~2, 3~^~03/01/2013~ -~36002~^~615~^0.045^3^0.001^~1~^~A~^^^1^0.043^0.047^2^0.040^0.050^~2, 3~^~03/01/2013~ -~36002~^~617~^3.213^3^0.142^~1~^~AS~^^^1^2.931^3.389^2^2.600^3.826^~2, 3~^~03/01/2013~ -~36002~^~618~^5.018^3^0.102^~1~^~AS~^^^1^4.820^5.160^2^4.579^5.456^~2, 3~^~03/01/2013~ -~36002~^~619~^0.771^3^0.036^~1~^~AS~^^^1^0.708^0.832^2^0.617^0.925^~2, 3~^~03/01/2013~ -~36002~^~620~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36002~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~624~^0.037^3^0.001^~1~^~A~^^^1^0.036^0.038^2^0.034^0.040^~2, 3~^~03/01/2013~ -~36002~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~626~^0.020^3^0.002^~1~^~AS~^^^1^0.018^0.024^2^0.012^0.028^~2, 3~^~03/01/2013~ -~36002~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~628~^0.068^3^0.009^~1~^~A~^^^1^0.050^0.078^2^0.029^0.106^~2, 3~^~03/01/2013~ -~36002~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~03/01/2013~ -~36002~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.006^~2, 3~^~03/01/2013~ -~36002~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~645~^3.310^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~646~^5.802^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2009~ -~36002~^~653~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.009^0.017^~2, 3~^~03/01/2013~ -~36002~^~654~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~03/01/2013~ -~36002~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~663~^0.026^3^0.008^~1~^~A~^^^1^0.013^0.040^2^-0.008^0.059^~2, 3~^~03/01/2013~ -~36002~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~665~^0.057^3^0.008^~1~^~A~^^^1^0.041^0.067^2^0.022^0.093^~2, 3~^~04/01/2009~ -~36002~^~670~^0.011^3^0.003^~1~^~A~^^^1^0.007^0.018^2^-0.004^0.026^~2, 3~^~03/01/2013~ -~36002~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~03/01/2013~ -~36002~^~673~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.024^2^0.012^0.028^~2, 3~^~04/01/2009~ -~36002~^~674~^3.187^3^0.150^~1~^~A~^^^1^2.891^3.376^2^2.542^3.833^~2, 3~^~03/01/2013~ -~36002~^~675~^4.949^3^0.106^~1~^~A~^^^1^4.749^5.111^2^4.492^5.407^~2, 3~^~03/01/2013~ -~36002~^~676~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 2, 3~^~03/01/2013~ -~36002~^~685~^0.043^3^0.005^~1~^~A~^^^1^0.034^0.050^2^0.023^0.064^~2, 3~^~03/01/2013~ -~36002~^~687~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~03/01/2013~ -~36002~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36002~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36002~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36002~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~851~^0.728^3^0.039^~1~^~A~^^^1^0.662^0.798^2^0.559^0.897^~2, 3~^~03/01/2013~ -~36002~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36002~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36002~^~858~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2009~ -~36003~^~312~^0.061^6^0.002^~1~^~A~^^^1^0.056^0.068^5^0.056^0.066^~2, 3~^~03/01/2013~ -~36003~^~315~^0.254^6^0.011^~1~^~A~^^^1^0.228^0.305^5^0.225^0.283^~2, 3~^~03/01/2013~ -~36003~^~404~^0.103^3^0.015^~1~^~A~^^^1^0.080^0.130^2^0.041^0.166^~2, 3~^~03/01/2013~ -~36003~^~405~^0.283^3^0.009^~1~^~A~^^^1^0.270^0.300^2^0.245^0.321^~2, 3~^~03/01/2013~ -~36003~^~406~^0.970^3^0.079^~1~^~A~^^^1^0.820^1.090^2^0.628^1.312^~2, 3~^~03/01/2013~ -~36003~^~410~^0.550^2^^~1~^~A~^^^1^0.550^0.550^^^^^~03/01/2013~ -~36003~^~415~^0.065^3^0.002^~1~^~A~^^^1^0.063^0.069^2^0.057^0.073^~2, 3~^~03/01/2013~ -~36003~^~501~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~502~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~503~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~504~^0.473^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~505~^0.189^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~506~^0.115^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~507~^0.095^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~508~^0.273^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~509~^0.168^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~510~^0.326^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~511~^0.210^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~512~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~513~^0.179^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~514~^0.347^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~515~^1.597^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~516~^0.147^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~517~^0.809^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~518~^0.210^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36003~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36003~^~605~^0.071^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~606~^1.312^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~607~^0.035^3^0.003^~1~^~A~^^^1^0.033^0.042^2^0.026^0.048^~2, 3~^~03/01/2013~ -~36003~^~608~^0.027^3^0.002^~1~^~A~^^^1^0.026^0.032^2^0.020^0.036^~2, 3~^~03/01/2013~ -~36003~^~609~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~03/01/2013~ -~36003~^~610~^0.043^3^0.002^~1~^~A~^^^1^0.043^0.050^2^0.035^0.055^~2, 3~^~03/01/2013~ -~36003~^~611~^0.047^3^0.004^~1~^~A~^^^1^0.045^0.056^2^0.034^0.064^~2, 3~^~03/01/2013~ -~36003~^~612~^0.153^3^0.010^~1~^~A~^^^1^0.150^0.180^2^0.118^0.203^~2, 3~^~03/01/2013~ -~36003~^~613~^0.635^3^0.028^~1~^~A~^^^1^0.637^0.722^2^0.544^0.787^~2, 3~^~03/01/2013~ -~36003~^~614~^0.285^3^0.016^~1~^~A~^^^1^0.283^0.330^2^0.231^0.366^~2, 3~^~03/01/2013~ -~36003~^~615~^0.019^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~04/01/2009~ -~36003~^~617~^1.854^3^0.104^~1~^~AS~^^^1^1.826^2.150^2^1.495^2.390^~2, 3~^~03/01/2013~ -~36003~^~618~^0.714^3^0.019^~1~^~AS~^^^1^0.725^0.785^2^0.667^0.828^~2, 3~^~03/01/2013~ -~36003~^~619~^0.228^3^0.009^~1~^~AS~^^^1^0.229^0.257^2^0.199^0.278^~2, 3~^~03/01/2013~ -~36003~^~620~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.011^2^-0.002^0.016^~2, 3~^~03/01/2013~ -~36003~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~624~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2009~ -~36003~^~625~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.013^0.020^~2, 3~^~03/01/2013~ -~36003~^~626~^0.036^3^0.003^~1~^~AS~^^^1^0.032^0.044^2^0.023^0.052^~2, 3~^~03/01/2013~ -~36003~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~628~^0.039^3^0.001^~1~^~A~^^^1^0.040^0.042^2^0.038^0.044^~2, 3~^~03/01/2013~ -~36003~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36003~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~04/01/2009~ -~36003~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36003~^~645~^1.951^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~646~^0.952^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~652~^0.019^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.013^0.027^~2, 3~^~03/01/2013~ -~36003~^~653~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~03/01/2013~ -~36003~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~03/01/2013~ -~36003~^~662~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~03/01/2013~ -~36003~^~663~^0.046^3^0.004^~1~^~A~^^^1^0.042^0.054^2^0.033^0.063^~2, 3~^~03/01/2013~ -~36003~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~665~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.021^2^0.014^0.024^~2, 3~^~03/01/2013~ -~36003~^~670~^0.010^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~03/01/2013~ -~36003~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36003~^~672~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.005^2^-0.001^0.007^~1, 2, 3~^~04/01/2009~ -~36003~^~673~^0.029^3^0.003^~1~^~A~^^^1^0.025^0.035^2^0.018^0.043^~2, 3~^~03/01/2013~ -~36003~^~674~^1.808^3^0.101^~1~^~A~^^^1^1.777^2.096^2^1.458^2.330^~2, 3~^~03/01/2013~ -~36003~^~675~^0.686^3^0.019^~1~^~A~^^^1^0.696^0.756^2^0.637^0.800^~2, 3~^~03/01/2013~ -~36003~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2009~ -~36003~^~685~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.013^~2, 3~^~03/01/2013~ -~36003~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~03/01/2013~ -~36003~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.005^~2, 3~^~03/01/2013~ -~36003~^~693~^0.053^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~695~^0.018^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36003~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~851~^0.219^3^0.009^~1~^~A~^^^1^0.220^0.247^2^0.192^0.267^~2, 3~^~03/01/2013~ -~36003~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36003~^~853~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~03/01/2013~ -~36003~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36003~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36004~^~312~^0.059^6^0.001^~1~^~A~^^^1^0.057^0.063^5^0.057^0.062^~2, 3~^~03/01/2013~ -~36004~^~315~^0.239^6^0.005^~1~^~A~^^^1^0.219^0.255^5^0.226^0.252^~2, 3~^~03/01/2013~ -~36004~^~404~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.080^2^0.059^0.087^~2, 3~^~03/01/2013~ -~36004~^~405~^0.260^3^0.010^~1~^~A~^^^1^0.240^0.270^2^0.217^0.303^~2, 3~^~03/01/2013~ -~36004~^~406~^0.660^3^0.068^~1~^~A~^^^1^0.560^0.790^2^0.367^0.953^~2, 3~^~03/01/2013~ -~36004~^~410~^0.410^2^^~1~^~A~^^^1^0.410^0.410^^^^^~03/01/2013~ -~36004~^~415~^0.067^3^0.001^~1~^~A~^^^1^0.065^0.070^2^0.061^0.074^~2, 3~^~03/01/2013~ -~36004~^~501~^0.202^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~502~^0.424^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~503~^0.858^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~504~^1.625^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~505~^1.201^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~506~^0.454^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~507~^0.161^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~508~^0.878^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~509~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~510~^1.140^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~511~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~512~^0.505^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~513~^0.525^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~514~^1.140^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~515~^3.865^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~516~^0.373^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~517~^2.029^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~518~^0.606^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36004~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36004~^~605~^0.363^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~606~^6.730^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~607~^0.198^3^0.016^~1~^~A~^^^1^0.167^0.223^2^0.127^0.269^~2, 3~^~03/01/2013~ -~36004~^~608~^0.157^3^0.012^~1~^~A~^^^1^0.134^0.174^2^0.106^0.208^~2, 3~^~03/01/2013~ -~36004~^~609~^0.102^3^0.006^~1~^~A~^^^1^0.091^0.111^2^0.077^0.128^~2, 3~^~03/01/2013~ -~36004~^~610~^0.233^3^0.011^~1~^~A~^^^1^0.210^0.247^2^0.183^0.282^~2, 3~^~03/01/2013~ -~36004~^~611~^0.262^3^0.015^~1~^~A~^^^1^0.234^0.284^2^0.198^0.325^~2, 3~^~03/01/2013~ -~36004~^~612~^0.865^3^0.055^~1~^~A~^^^1^0.765^0.954^2^0.629^1.101^~2, 3~^~03/01/2013~ -~36004~^~613~^3.253^3^0.201^~1~^~A~^^^1^2.936^3.626^2^2.387^4.118^~2, 3~^~03/01/2013~ -~36004~^~614~^1.413^3^0.030^~1~^~A~^^^1^1.374^1.471^2^1.286^1.540^~2, 3~^~03/01/2013~ -~36004~^~615~^0.040^3^0.002^~1~^~A~^^^1^0.038^0.044^2^0.031^0.049^~2, 3~^~04/01/2009~ -~36004~^~617~^3.872^3^0.174^~1~^~AS~^^^1^3.614^4.203^2^3.123^4.620^~2, 3~^~03/01/2013~ -~36004~^~618~^3.986^3^0.166^~1~^~AS~^^^1^3.721^4.293^2^3.270^4.702^~2, 3~^~03/01/2013~ -~36004~^~619~^0.537^3^0.037^~1~^~AS~^^^1^0.488^0.610^2^0.377^0.697^~2, 3~^~03/01/2013~ -~36004~^~620~^0.021^3^0.001^~1~^~A~^^^1^0.019^0.023^2^0.016^0.026^~2, 3~^~03/01/2013~ -~36004~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36004~^~624~^0.032^3^0.002^~1~^~A~^^^1^0.029^0.035^2^0.024^0.040^~2, 3~^~03/01/2013~ -~36004~^~625~^0.086^3^0.008^~1~^~A~^^^1^0.073^0.100^2^0.053^0.120^~2, 3~^~03/01/2013~ -~36004~^~626~^0.166^3^0.018^~1~^~AS~^^^1^0.134^0.197^2^0.088^0.245^~2, 3~^~03/01/2013~ -~36004~^~627~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~03/01/2013~ -~36004~^~628~^0.069^3^0.001^~1~^~A~^^^1^0.068^0.071^2^0.065^0.073^~2, 3~^~03/01/2013~ -~36004~^~629~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~04/01/2009~ -~36004~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~03/01/2013~ -~36004~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~2, 3~^~03/01/2013~ -~36004~^~645~^4.217^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~646~^4.580^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~652~^0.092^3^0.006^~1~^~A~^^^1^0.080^0.102^2^0.064^0.120^~2, 3~^~03/01/2013~ -~36004~^~653~^0.063^3^0.004^~1~^~A~^^^1^0.057^0.071^2^0.046^0.081^~2, 3~^~04/01/2009~ -~36004~^~654~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.016^~2, 3~^~03/01/2013~ -~36004~^~662~^0.032^3^0.001^~1~^~A~^^^1^0.030^0.033^2^0.028^0.036^~2, 3~^~03/01/2013~ -~36004~^~663~^0.228^3^0.004^~1~^~A~^^^1^0.222^0.235^2^0.212^0.244^~2, 3~^~03/01/2013~ -~36004~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36004~^~665~^0.102^3^0.003^~1~^~A~^^^1^0.096^0.105^2^0.089^0.114^~2, 3~^~03/01/2013~ -~36004~^~670~^0.058^3^0.003^~1~^~A~^^^1^0.055^0.063^2^0.046^0.069^~2, 3~^~03/01/2013~ -~36004~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36004~^~672~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~03/01/2013~ -~36004~^~673~^0.134^3^0.017^~1~^~A~^^^1^0.104^0.164^2^0.060^0.209^~2, 3~^~03/01/2013~ -~36004~^~674~^3.643^3^0.173^~1~^~A~^^^1^3.392^3.975^2^2.899^4.388^~2, 3~^~03/01/2013~ -~36004~^~675~^3.827^3^0.166^~1~^~A~^^^1^3.562^4.134^2^3.111^4.543^~2, 3~^~03/01/2013~ -~36004~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2013~ -~36004~^~685~^0.031^3^0.001^~1~^~A~^^^1^0.028^0.033^2^0.024^0.037^~2, 3~^~03/01/2013~ -~36004~^~687~^0.023^3^0.002^~1~^~A~^^^1^0.020^0.027^2^0.014^0.032^~2, 3~^~03/01/2013~ -~36004~^~689~^0.013^3^0.001^~1~^~AS~^^^1^0.011^0.014^2^0.009^0.016^~2, 3~^~03/01/2013~ -~36004~^~693~^0.260^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36004~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36004~^~851~^0.505^3^0.038^~1~^~A~^^^1^0.457^0.580^2^0.342^0.668^~2, 3~^~03/01/2013~ -~36004~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2009~ -~36004~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.016^~2, 3~^~03/01/2013~ -~36004~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~36004~^~858~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.000^0.008^~2, 3~^~03/01/2013~ -~36005~^~312~^0.071^6^0.003^~1~^~A~^^^1^0.062^0.085^5^0.063^0.080^~2, 3~^~03/01/2013~ -~36005~^~315~^0.260^6^0.010^~1~^~A~^^^1^0.231^0.298^5^0.236^0.285^~2, 3~^~03/01/2013~ -~36005~^~404~^0.100^3^0.006^~1~^~A~^^^1^0.090^0.110^2^0.075^0.125^~2, 3~^~03/01/2013~ -~36005~^~405~^0.177^3^0.007^~1~^~A~^^^1^0.170^0.190^2^0.148^0.205^~2, 3~^~03/01/2013~ -~36005~^~406~^7.890^3^0.631^~1~^~A~^^^1^6.930^9.080^2^5.174^10.606^~2, 3~^~03/01/2013~ -~36005~^~410~^1.565^2^^~1~^~A~^^^1^1.430^1.700^1^^^^~03/01/2013~ -~36005~^~415~^0.484^3^0.011^~1~^~A~^^^1^0.469^0.505^2^0.438^0.530^~2, 3~^~03/01/2013~ -~36005~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~502~^0.577^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~503~^0.952^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~504~^1.520^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~505~^1.348^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~506~^0.486^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~507~^0.233^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~508~^0.760^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~509~^0.507^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~510~^1.054^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~511~^1.135^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~512~^0.679^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~513~^1.043^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~514~^1.651^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~515~^3.343^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~516~^0.790^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~517~^1.175^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~518~^0.577^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~521~^0.030^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36005~^~605~^0.116^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~606~^2.852^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~609~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~03/01/2013~ -~36005~^~610~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~03/01/2013~ -~36005~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~03/01/2013~ -~36005~^~612~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.014^0.025^~2, 3~^~03/01/2013~ -~36005~^~613~^1.783^3^0.041^~1~^~A~^^^1^1.738^1.865^2^1.606^1.960^~2, 3~^~03/01/2013~ -~36005~^~614~^0.892^3^0.017^~1~^~A~^^^1^0.862^0.920^2^0.820^0.965^~2, 3~^~03/01/2013~ -~36005~^~615~^0.050^3^0.001^~1~^~A~^^^1^0.048^0.052^2^0.045^0.055^~2, 3~^~03/01/2013~ -~36005~^~617~^3.402^3^0.070^~1~^~AS~^^^1^3.277^3.521^2^3.099^3.706^~2, 3~^~03/01/2013~ -~36005~^~618~^6.880^3^0.011^~1~^~AS~^^^1^6.858^6.891^2^6.833^6.927^~2, 3~^~03/01/2013~ -~36005~^~619~^0.917^3^0.010^~1~^~AS~^^^1^0.899^0.933^2^0.874^0.959^~2, 3~^~03/01/2013~ -~36005~^~620~^0.051^3^0.002^~1~^~A~^^^1^0.046^0.054^2^0.040^0.061^~2, 3~^~03/01/2013~ -~36005~^~621~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.008^~1, 2, 3~^~04/01/2009~ -~36005~^~624~^0.050^3^0.000^~1~^~A~^^^1^0.050^0.051^2^0.049^0.052^~2, 3~^~03/01/2013~ -~36005~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~03/01/2013~ -~36005~^~626~^0.059^3^0.008^~1~^~AS~^^^1^0.050^0.075^2^0.023^0.094^~2, 3~^~03/01/2013~ -~36005~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~628~^0.096^3^0.003^~1~^~A~^^^1^0.090^0.100^2^0.083^0.109^~2, 3~^~03/01/2013~ -~36005~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~03/01/2013~ -~36005~^~631~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~03/01/2013~ -~36005~^~645~^3.568^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~646~^7.894^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~03/01/2013~ -~36005~^~653~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.015^0.020^~2, 3~^~03/01/2013~ -~36005~^~654~^0.019^3^0.001^~1~^~A~^^^1^0.017^0.022^2^0.013^0.025^~2, 3~^~04/01/2009~ -~36005~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~663~^0.037^3^0.004^~1~^~A~^^^1^0.032^0.045^2^0.019^0.055^~2, 3~^~03/01/2013~ -~36005~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36005~^~665~^0.080^3^0.008^~1~^~A~^^^1^0.069^0.095^2^0.046^0.113^~2, 3~^~03/01/2013~ -~36005~^~670~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~03/01/2013~ -~36005~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~672~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.005^0.015^~2, 3~^~03/01/2013~ -~36005~^~673~^0.059^3^0.008^~1~^~A~^^^1^0.050^0.075^2^0.023^0.094^~2, 3~^~03/01/2013~ -~36005~^~674~^3.366^3^0.070^~1~^~A~^^^1^3.245^3.488^2^3.064^3.667^~2, 3~^~03/01/2013~ -~36005~^~675~^6.790^3^0.007^~1~^~A~^^^1^6.781^6.804^2^6.760^6.820^~2, 3~^~03/01/2013~ -~36005~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2013~ -~36005~^~685~^0.058^3^0.004^~1~^~A~^^^1^0.051^0.064^2^0.042^0.074^~2, 3~^~03/01/2013~ -~36005~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~03/01/2013~ -~36005~^~689~^0.009^3^0.001^~1~^~AS~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2009~ -~36005~^~693~^0.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~695~^0.080^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36005~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~851~^0.859^3^0.014^~1~^~A~^^^1^0.835^0.882^2^0.800^0.917^~2, 3~^~03/01/2013~ -~36005~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~03/01/2013~ -~36005~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36005~^~858~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.020^2^0.016^0.021^~2, 3~^~03/01/2013~ -~36006~^~312~^0.138^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~315~^0.252^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~404~^0.070^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~405~^0.091^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~406~^0.760^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~415~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~501~^0.137^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~502~^0.458^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~503~^0.530^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~504~^0.963^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~505~^0.945^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~506~^0.318^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~507~^0.155^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~508~^0.521^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~509~^0.387^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~510~^0.528^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~511~^0.970^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~512~^0.256^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~513~^0.651^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~514~^1.177^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~515~^2.323^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~516~^0.586^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~517~^0.600^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~518~^0.462^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~605~^0.115^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~606~^3.501^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~608~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~609~^0.014^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~611~^0.005^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~612~^0.022^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~613~^2.029^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~614~^1.241^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~615~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~617~^4.199^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~618~^8.371^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~619~^1.018^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~620~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~621~^0.055^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~624~^0.065^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~626~^0.044^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~628~^0.130^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~629~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~631~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~645~^4.383^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~646~^9.527^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~05/01/2009~ -~36006~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~654~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~662~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~663~^0.045^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2009~ -~36006~^~665~^0.069^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~670~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~672~^0.013^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~673~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~674~^4.154^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~675~^8.282^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~685~^0.087^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36006~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~695~^0.069^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36006~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~851~^0.931^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36006~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36006~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36007~^~312~^0.115^6^0.011^~1~^~A~^^^1^0.081^0.147^5^0.086^0.144^~2, 3~^~03/01/2013~ -~36007~^~315~^0.259^6^0.011^~1~^~A~^^^1^0.228^0.308^5^0.231^0.287^~2, 3~^~03/01/2013~ -~36007~^~404~^0.107^3^0.009^~1~^~A~^^^1^0.090^0.120^2^0.069^0.144^~2, 3~^~03/01/2013~ -~36007~^~405~^0.064^3^0.001^~1~^~A~^^^1^0.062^0.066^2^0.059^0.069^~2, 3~^~03/01/2013~ -~36007~^~406~^2.797^3^0.236^~1~^~A~^^^1^2.420^3.230^2^1.783^3.810^~2, 3~^~03/01/2013~ -~36007~^~410~^0.530^2^^~1~^~A~^^^1^0.510^0.550^1^^^^~03/01/2013~ -~36007~^~415~^0.282^3^0.004^~1~^~A~^^^1^0.274^0.289^2^0.263^0.301^~2, 3~^~03/01/2013~ -~36007~^~605~^0.102^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~606~^2.600^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~609~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~03/01/2013~ -~36007~^~610~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~03/01/2013~ -~36007~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~03/01/2013~ -~36007~^~612~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.013^0.020^~2, 3~^~03/01/2013~ -~36007~^~613~^1.510^3^0.037^~1~^~A~^^^1^1.453^1.579^2^1.352^1.669^~2, 3~^~03/01/2013~ -~36007~^~614~^0.931^3^0.064^~1~^~A~^^^1^0.849^1.058^2^0.654^1.208^~2, 3~^~03/01/2013~ -~36007~^~615~^0.050^3^0.002^~1~^~A~^^^1^0.047^0.052^2^0.043^0.057^~2, 3~^~03/01/2013~ -~36007~^~617~^3.252^3^0.049^~1~^~AS~^^^1^3.165^3.334^2^3.042^3.462^~2, 3~^~03/01/2013~ -~36007~^~618~^6.522^3^0.421^~1~^~AS~^^^1^5.738^7.178^2^4.712^8.331^~2, 3~^~03/01/2013~ -~36007~^~619~^0.940^3^0.059^~1~^~AS~^^^1^0.823^1.006^2^0.688^1.191^~2, 3~^~03/01/2013~ -~36007~^~620~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~03/01/2013~ -~36007~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~624~^0.045^3^0.002^~1~^~A~^^^1^0.040^0.048^2^0.034^0.055^~2, 3~^~03/01/2013~ -~36007~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~626~^0.016^3^0.002^~1~^~AS~^^^1^0.014^0.019^2^0.009^0.023^~2, 3~^~03/01/2013~ -~36007~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~628~^0.081^3^0.006^~1~^~A~^^^1^0.074^0.093^2^0.056^0.107^~2, 3~^~03/01/2013~ -~36007~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36007~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~645~^3.356^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~646~^7.473^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2013~ -~36007~^~653~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~2, 3~^~05/01/2009~ -~36007~^~654~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~03/01/2013~ -~36007~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~663~^0.035^3^0.009^~1~^~A~^^^1^0.021^0.053^2^-0.006^0.076^~2, 3~^~03/01/2013~ -~36007~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~665~^0.067^3^0.012^~1~^~A~^^^1^0.048^0.089^2^0.015^0.118^~2, 3~^~03/01/2013~ -~36007~^~670~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~03/01/2013~ -~36007~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~03/01/2013~ -~36007~^~673~^0.016^3^0.002^~1~^~A~^^^1^0.014^0.019^2^0.009^0.023^~2, 3~^~03/01/2013~ -~36007~^~674~^3.217^3^0.052^~1~^~A~^^^1^3.134^3.313^2^2.992^3.441^~2, 3~^~03/01/2013~ -~36007~^~675~^6.447^3^0.414^~1~^~A~^^^1^5.668^7.081^2^4.665^8.229^~2, 3~^~03/01/2013~ -~36007~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~685~^0.048^3^0.008^~1~^~A~^^^1^0.040^0.064^2^0.014^0.082^~2, 3~^~03/01/2013~ -~36007~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~03/01/2013~ -~36007~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36007~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~695~^0.067^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36007~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~851~^0.891^3^0.055^~1~^~A~^^^1^0.783^0.965^2^0.653^1.129^~2, 3~^~03/01/2013~ -~36007~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36007~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36007~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~312~^0.071^6^0.001^~1~^~A~^^^1^0.069^0.073^5^0.070^0.073^~2, 3~^~03/01/2013~ -~36008~^~315~^0.282^6^0.005^~1~^~A~^^^1^0.269^0.296^5^0.270^0.294^~2, 3~^~03/01/2013~ -~36008~^~404~^0.087^3^0.003^~1~^~A~^^^1^0.080^0.090^2^0.072^0.101^~2, 3~^~03/01/2013~ -~36008~^~405~^0.267^3^0.007^~1~^~A~^^^1^0.260^0.280^2^0.238^0.295^~2, 3~^~03/01/2013~ -~36008~^~406~^0.703^3^0.020^~1~^~A~^^^1^0.670^0.740^2^0.616^0.791^~2, 3~^~03/01/2013~ -~36008~^~410~^0.455^2^^~1~^~A~^^^1^0.410^0.500^1^^^^~03/01/2013~ -~36008~^~415~^0.069^3^0.002^~1~^~A~^^^1^0.065^0.072^2^0.060^0.079^~2, 3~^~03/01/2013~ -~36008~^~501~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~502~^0.377^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~503~^0.785^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~504~^1.490^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~505~^1.073^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~506~^0.417^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~507~^0.199^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~508~^0.844^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~509~^0.626^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~510~^1.013^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~511~^0.636^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~512~^0.467^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~513~^0.477^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~514~^1.033^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~515~^3.744^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~516~^0.367^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~517~^1.788^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~518~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36008~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36008~^~605~^0.342^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~606~^7.172^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~607~^0.181^3^0.003^~1~^~A~^^^1^0.177^0.187^2^0.167^0.194^~2, 3~^~03/01/2013~ -~36008~^~608~^0.149^3^0.003^~1~^~A~^^^1^0.145^0.155^2^0.136^0.162^~2, 3~^~03/01/2013~ -~36008~^~609~^0.099^3^0.001^~1~^~A~^^^1^0.098^0.101^2^0.094^0.103^~2, 3~^~03/01/2013~ -~36008~^~610~^0.242^3^0.006^~1~^~A~^^^1^0.235^0.255^2^0.215^0.270^~2, 3~^~03/01/2013~ -~36008~^~611~^0.284^3^0.007^~1~^~A~^^^1^0.276^0.299^2^0.253^0.316^~2, 3~^~03/01/2013~ -~36008~^~612~^0.911^3^0.018^~1~^~A~^^^1^0.891^0.947^2^0.834^0.988^~2, 3~^~03/01/2013~ -~36008~^~613~^3.576^3^0.049^~1~^~A~^^^1^3.500^3.668^2^3.365^3.787^~2, 3~^~03/01/2013~ -~36008~^~614~^1.467^3^0.005^~1~^~A~^^^1^1.459^1.476^2^1.446^1.488^~2, 3~^~03/01/2013~ -~36008~^~615~^0.044^3^0.001^~1~^~A~^^^1^0.043^0.046^2^0.040^0.048^~2, 3~^~03/01/2013~ -~36008~^~617~^4.108^3^0.082^~1~^~AS~^^^1^3.985^4.263^2^3.756^4.460^~2, 3~^~03/01/2013~ -~36008~^~618~^4.579^3^0.104^~1~^~AS~^^^1^4.456^4.786^2^4.130^5.027^~2, 3~^~03/01/2013~ -~36008~^~619~^0.618^3^0.036^~1~^~AS~^^^1^0.568^0.689^2^0.462^0.775^~2, 3~^~03/01/2013~ -~36008~^~620~^0.026^3^0.000^~1~^~A~^^^1^0.025^0.026^2^0.024^0.027^~2, 3~^~03/01/2013~ -~36008~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~624~^0.036^3^0.001^~1~^~A~^^^1^0.035^0.038^2^0.032^0.040^~2, 3~^~03/01/2013~ -~36008~^~625~^0.096^3^0.001^~1~^~A~^^^1^0.094^0.098^2^0.091^0.101^~2, 3~^~03/01/2013~ -~36008~^~626~^0.176^3^0.002^~1~^~AS~^^^1^0.173^0.180^2^0.166^0.185^~2, 3~^~03/01/2013~ -~36008~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~05/01/2009~ -~36008~^~628~^0.076^3^0.004^~1~^~A~^^^1^0.068^0.082^2^0.058^0.093^~2, 3~^~03/01/2013~ -~36008~^~629~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2009~ -~36008~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36008~^~631~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~03/01/2013~ -~36008~^~645~^4.481^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~646~^5.261^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~652~^0.099^3^0.002^~1~^~A~^^^1^0.096^0.103^2^0.089^0.108^~2, 3~^~03/01/2013~ -~36008~^~653~^0.068^3^0.001^~1~^~A~^^^1^0.066^0.070^2^0.062^0.073^~2, 3~^~03/01/2013~ -~36008~^~654~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~05/01/2009~ -~36008~^~662~^0.031^3^0.001^~1~^~A~^^^1^0.029^0.032^2^0.027^0.035^~2, 3~^~03/01/2013~ -~36008~^~663~^0.210^3^0.005^~1~^~A~^^^1^0.201^0.215^2^0.191^0.229^~2, 3~^~03/01/2013~ -~36008~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~665~^0.099^3^0.013^~1~^~A~^^^1^0.078^0.122^2^0.044^0.154^~2, 3~^~03/01/2013~ -~36008~^~670~^0.053^3^0.002^~1~^~A~^^^1^0.048^0.056^2^0.042^0.063^~2, 3~^~03/01/2013~ -~36008~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~672~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.002^0.010^~2, 3~^~03/01/2013~ -~36008~^~673~^0.145^3^0.003^~1~^~A~^^^1^0.142^0.151^2^0.132^0.158^~2, 3~^~03/01/2013~ -~36008~^~674~^3.898^3^0.079^~1~^~A~^^^1^3.784^4.049^2^3.560^4.237^~2, 3~^~03/01/2013~ -~36008~^~675~^4.427^3^0.118^~1~^~A~^^^1^4.280^4.660^2^3.920^4.934^~2, 3~^~03/01/2013~ -~36008~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~685~^0.032^3^0.005^~1~^~A~^^^1^0.023^0.040^2^0.011^0.053^~2, 3~^~03/01/2013~ -~36008~^~687~^0.025^3^0.000^~1~^~A~^^^1^0.025^0.026^2^0.024^0.027^~2, 3~^~03/01/2013~ -~36008~^~689~^0.013^3^0.000^~1~^~AS~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~03/01/2013~ -~36008~^~693~^0.241^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~695~^0.101^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36008~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~851~^0.584^3^0.042^~1~^~A~^^^1^0.524^0.664^2^0.405^0.763^~2, 3~^~03/01/2013~ -~36008~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36008~^~853~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~03/01/2013~ -~36008~^~856~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.007^~1, 2, 3~^~03/01/2013~ -~36008~^~858~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36009~^~312~^0.068^6^0.003^~1~^~A~^^^1^0.054^0.077^5^0.060^0.077^~2, 3~^~03/01/2013~ -~36009~^~315~^0.135^6^0.005^~1~^~A~^^^1^0.125^0.156^5^0.123^0.147^~2, 3~^~03/01/2013~ -~36009~^~404~^0.083^3^0.007^~1~^~A~^^^1^0.070^0.090^2^0.055^0.112^~2, 3~^~03/01/2013~ -~36009~^~405~^0.207^3^0.007^~1~^~A~^^^1^0.200^0.220^2^0.178^0.235^~2, 3~^~03/01/2013~ -~36009~^~406~^0.617^3^0.029^~1~^~A~^^^1^0.570^0.670^2^0.491^0.742^~2, 3~^~03/01/2013~ -~36009~^~410~^0.405^2^^~1~^~A~^^^1^0.350^0.460^1^^^^~03/01/2013~ -~36009~^~415~^0.034^3^0.001^~1~^~A~^^^1^0.033^0.036^2^0.030^0.038^~2, 3~^~03/01/2013~ -~36009~^~501~^0.065^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~502~^0.180^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~503~^0.225^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~504~^0.424^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~505~^0.305^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~506~^0.102^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~507~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~508~^0.251^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~509~^0.182^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~510~^0.285^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~511~^0.180^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~512~^0.135^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~513~^0.164^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~514~^0.307^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~515~^1.343^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~516~^0.128^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~517~^0.529^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~518~^0.252^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36009~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36009~^~605~^0.097^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~606~^1.630^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~607~^0.050^3^0.007^~1~^~A~^^^1^0.036^0.061^2^0.018^0.082^~2, 3~^~03/01/2013~ -~36009~^~608~^0.039^3^0.006^~1~^~A~^^^1^0.028^0.048^2^0.014^0.064^~2, 3~^~03/01/2013~ -~36009~^~609~^0.025^3^0.004^~1~^~A~^^^1^0.017^0.031^2^0.007^0.042^~2, 3~^~03/01/2013~ -~36009~^~610~^0.064^3^0.009^~1~^~A~^^^1^0.048^0.079^2^0.025^0.102^~2, 3~^~03/01/2013~ -~36009~^~611~^0.070^3^0.010^~1~^~A~^^^1^0.052^0.086^2^0.028^0.113^~2, 3~^~03/01/2013~ -~36009~^~612~^0.225^3^0.028^~1~^~A~^^^1^0.175^0.272^2^0.104^0.346^~2, 3~^~03/01/2013~ -~36009~^~613~^0.798^3^0.082^~1~^~A~^^^1^0.642^0.922^2^0.443^1.152^~2, 3~^~03/01/2013~ -~36009~^~614~^0.298^3^0.037^~1~^~A~^^^1^0.231^0.359^2^0.138^0.457^~2, 3~^~03/01/2013~ -~36009~^~615~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~03/01/2013~ -~36009~^~617~^0.815^3^0.071^~1~^~AS~^^^1^0.677^0.911^2^0.511^1.118^~2, 3~^~03/01/2013~ -~36009~^~618~^0.635^3^0.045^~1~^~AS~^^^1^0.560^0.715^2^0.443^0.828^~2, 3~^~03/01/2013~ -~36009~^~619~^0.073^3^0.006^~1~^~AS~^^^1^0.065^0.085^2^0.047^0.099^~2, 3~^~03/01/2013~ -~36009~^~620~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~03/01/2013~ -~36009~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36009~^~625~^0.023^3^0.003^~1~^~A~^^^1^0.018^0.027^2^0.012^0.034^~2, 3~^~03/01/2013~ -~36009~^~626~^0.040^3^0.005^~1~^~AS~^^^1^0.031^0.048^2^0.019^0.061^~2, 3~^~03/01/2013~ -~36009~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~05/01/2009~ -~36009~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36009~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.005^2^-0.004^0.008^~2, 3~^~03/01/2013~ -~36009~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36009~^~645~^0.899^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~646~^0.720^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~652~^0.026^3^0.003^~1~^~A~^^^1^0.021^0.031^2^0.014^0.038^~2, 3~^~03/01/2013~ -~36009~^~653~^0.017^3^0.002^~1~^~A~^^^1^0.013^0.020^2^0.008^0.025^~2, 3~^~03/01/2013~ -~36009~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2013~ -~36009~^~662~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~03/01/2013~ -~36009~^~663~^0.061^3^0.007^~1~^~A~^^^1^0.048^0.071^2^0.032^0.091^~2, 3~^~03/01/2013~ -~36009~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~36009~^~665~^0.027^3^0.002^~1~^~A~^^^1^0.023^0.031^2^0.017^0.037^~2, 3~^~03/01/2013~ -~36009~^~670~^0.014^3^0.004^~1~^~A~^^^1^0.007^0.019^2^-0.002^0.030^~2, 3~^~03/01/2013~ -~36009~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36009~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36009~^~673~^0.032^3^0.004^~1~^~A~^^^1^0.025^0.038^2^0.016^0.048^~2, 3~^~03/01/2013~ -~36009~^~674~^0.753^3^0.064^~1~^~A~^^^1^0.629^0.840^2^0.479^1.028^~2, 3~^~03/01/2013~ -~36009~^~675~^0.594^3^0.041^~1~^~A~^^^1^0.526^0.667^2^0.419^0.769^~2, 3~^~03/01/2013~ -~36009~^~676~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~03/01/2013~ -~36009~^~685~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~03/01/2013~ -~36009~^~687~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36009~^~689~^0.004^3^0.000^~1~^~AS~^^^1^0.004^0.004^^^^~2, 3~^~03/01/2013~ -~36009~^~693~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~695~^0.027^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36009~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~851~^0.070^3^0.006^~1~^~A~^^^1^0.062^0.081^2^0.046^0.095^~2, 3~^~03/01/2013~ -~36009~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36009~^~853~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~03/01/2013~ -~36009~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36009~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~312~^0.064^6^0.001^~1~^~A~^^^1^0.061^0.068^5^0.061^0.066^~2, 3~^~03/01/2013~ -~36010~^~315~^0.236^6^0.017^~1~^~A~^^^1^0.191^0.311^5^0.192^0.280^~2, 3~^~03/01/2013~ -~36010~^~404~^0.100^3^0.017^~1~^~A~^^^1^0.070^0.130^2^0.026^0.174^~2, 3~^~03/01/2013~ -~36010~^~405~^0.183^3^0.007^~1~^~A~^^^1^0.170^0.190^2^0.155^0.212^~2, 3~^~03/01/2013~ -~36010~^~406~^7.983^3^0.554^~1~^~A~^^^1^7.110^9.010^2^5.600^10.366^~2, 3~^~03/01/2013~ -~36010~^~410~^1.720^2^^~1~^~A~^^^1^1.710^1.730^1^^^^~03/01/2013~ -~36010~^~415~^0.430^3^0.029^~1~^~A~^^^1^0.374^0.471^2^0.305^0.555^~2, 3~^~03/01/2013~ -~36010~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~502~^0.574^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~503~^0.841^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~504~^1.395^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~505~^1.475^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~506~^0.445^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~507~^0.228^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~508~^0.683^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~509~^0.455^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~510~^0.930^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~511~^1.079^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~512~^0.614^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~513~^0.940^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~514~^1.455^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~515~^2.890^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~516~^0.752^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~517~^1.049^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~518~^0.594^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36010~^~521~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36010~^~605~^0.152^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~606~^3.916^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~609~^0.010^3^0.004^~1~^~A~^^^1^0.005^0.019^2^-0.008^0.029^~2, 3~^~03/01/2013~ -~36010~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~03/01/2013~ -~36010~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~03/01/2013~ -~36010~^~612~^0.025^3^0.004^~1~^~A~^^^1^0.020^0.032^2^0.009^0.041^~2, 3~^~03/01/2013~ -~36010~^~613~^2.348^3^0.220^~1~^~A~^^^1^2.096^2.787^2^1.401^3.296^~2, 3~^~03/01/2013~ -~36010~^~614~^1.333^3^0.148^~1~^~A~^^^1^1.145^1.626^2^0.694^1.972^~2, 3~^~03/01/2013~ -~36010~^~615~^0.068^3^0.007^~1~^~A~^^^1^0.059^0.082^2^0.038^0.098^~2, 3~^~03/01/2013~ -~36010~^~617~^4.690^3^0.461^~1~^~AS~^^^1^4.133^5.604^2^2.708^6.672^~2, 3~^~03/01/2013~ -~36010~^~618~^9.646^3^0.910^~1~^~AS~^^^1^8.192^11.321^2^5.730^13.561^~2, 3~^~03/01/2013~ -~36010~^~619~^1.279^3^0.093^~1~^~AS~^^^1^1.096^1.396^2^0.880^1.678^~2, 3~^~03/01/2013~ -~36010~^~620~^0.041^3^0.002^~1~^~A~^^^1^0.037^0.043^2^0.033^0.049^~2, 3~^~05/01/2009~ -~36010~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~624~^0.069^3^0.007^~1~^~A~^^^1^0.060^0.084^2^0.037^0.101^~2, 3~^~03/01/2013~ -~36010~^~625~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2009~ -~36010~^~626~^0.061^3^0.006^~1~^~AS~^^^1^0.050^0.071^2^0.035^0.087^~2, 3~^~03/01/2013~ -~36010~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~628~^0.129^3^0.029^~1~^~A~^^^1^0.091^0.186^2^0.004^0.254^~2, 3~^~03/01/2013~ -~36010~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2009~ -~36010~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36010~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~645~^4.893^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~646~^11.003^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~652~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~03/01/2013~ -~36010~^~653~^0.023^3^0.003^~1~^~A~^^^1^0.019^0.028^2^0.011^0.034^~2, 3~^~03/01/2013~ -~36010~^~654~^0.025^3^0.002^~1~^~A~^^^1^0.023^0.028^2^0.018^0.032^~2, 3~^~03/01/2013~ -~36010~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~663~^0.042^3^0.023^~1~^~A~^^^1^0.000^0.078^2^-0.056^0.140^~1, 2, 3~^~03/01/2013~ -~36010~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36010~^~665~^0.110^3^0.031^~1~^~A~^^^1^0.065^0.170^2^-0.025^0.244^~2, 3~^~03/01/2013~ -~36010~^~670~^0.030^3^0.007^~1~^~A~^^^1^0.020^0.043^2^0.000^0.059^~2, 3~^~03/01/2013~ -~36010~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~672~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~03/01/2013~ -~36010~^~673~^0.061^3^0.006^~1~^~A~^^^1^0.050^0.071^2^0.035^0.087^~2, 3~^~03/01/2013~ -~36010~^~674~^4.648^3^0.441^~1~^~A~^^^1^4.133^5.526^2^2.750^6.546^~2, 3~^~03/01/2013~ -~36010~^~675~^9.506^3^0.879^~1~^~A~^^^1^8.078^11.108^2^5.725^13.288^~2, 3~^~03/01/2013~ -~36010~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~685~^0.081^3^0.024^~1~^~A~^^^1^0.051^0.128^2^-0.022^0.183^~2, 3~^~03/01/2013~ -~36010~^~687~^0.012^3^0.001^~1~^~A~^^^1^0.009^0.014^2^0.005^0.018^~2, 3~^~03/01/2013~ -~36010~^~689~^0.011^3^0.001^~1~^~AS~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~03/01/2013~ -~36010~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~695~^0.110^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36010~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~851~^1.198^3^0.083^~1~^~A~^^^1^1.032^1.294^2^0.839^1.557^~2, 3~^~03/01/2013~ -~36010~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2009~ -~36010~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~03/01/2013~ -~36010~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36010~^~858~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.007^0.016^~2, 3~^~03/01/2013~ -~36011~^~312~^0.112^6^0.004^~1~^~A~^^^1^0.100^0.124^5^0.102^0.123^~2, 3~^~03/01/2013~ -~36011~^~315~^0.026^6^0.003^~1~^~A~^^^1^0.018^0.042^5^0.017^0.035^~2, 3~^~03/01/2013~ -~36011~^~404~^0.091^3^0.003^~1~^~A~^^^1^0.086^0.098^2^0.076^0.106^~2, 3~^~03/01/2013~ -~36011~^~405~^0.403^3^0.012^~1~^~A~^^^1^0.380^0.420^2^0.352^0.455^~2, 3~^~03/01/2013~ -~36011~^~406~^5.743^3^0.126^~1~^~A~^^^1^5.500^5.920^2^5.202^6.284^~2, 3~^~03/01/2013~ -~36011~^~410~^0.663^2^^~1~^~A~^^^1^0.550^0.777^1^^^^~03/01/2013~ -~36011~^~415~^0.739^3^0.034^~1~^~A~^^^1^0.693^0.805^2^0.593^0.885^~2, 3~^~03/01/2013~ -~36011~^~501~^0.415^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~502~^1.451^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~503~^1.539^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~504~^2.631^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~505~^2.699^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~506~^0.828^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~507~^0.332^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~508~^1.314^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~509~^1.138^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~510~^1.604^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~511~^2.174^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~512~^1.177^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~513~^1.851^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~514~^2.970^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~515~^4.892^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~516~^1.488^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~517~^1.308^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~518~^1.182^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36011~^~605~^0.280^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~606~^2.451^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36011~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~610~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~03/01/2013~ -~36011~^~611~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2009~ -~36011~^~612~^0.137^3^0.008^~1~^~A~^^^1^0.125^0.153^2^0.102^0.173^~2, 3~^~03/01/2013~ -~36011~^~613~^1.357^3^0.106^~1~^~A~^^^1^1.232^1.569^2^0.899^1.815^~2, 3~^~03/01/2013~ -~36011~^~614~^0.836^3^0.081^~1~^~A~^^^1^0.713^0.990^2^0.485^1.187^~2, 3~^~03/01/2013~ -~36011~^~615~^0.008^3^0.002^~1~^~A~^^^1^0.004^0.012^2^-0.002^0.018^~2, 3~^~03/01/2013~ -~36011~^~617~^2.390^3^0.224^~1~^~AS~^^^1^2.107^2.832^2^1.427^3.353^~2, 3~^~03/01/2013~ -~36011~^~618~^0.500^3^0.054^~1~^~AS~^^^1^0.391^0.560^2^0.265^0.734^~2, 3~^~03/01/2013~ -~36011~^~619~^0.030^3^0.006^~1~^~AS~^^^1^0.019^0.040^2^0.004^0.056^~2, 3~^~03/01/2013~ -~36011~^~620~^0.078^3^0.010^~1~^~A~^^^1^0.068^0.097^2^0.037^0.119^~2, 3~^~03/01/2013~ -~36011~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~03/01/2013~ -~36011~^~624~^0.007^3^0.001^~1~^~A~^^^1^0.004^0.009^2^0.000^0.013^~2, 3~^~03/01/2013~ -~36011~^~625~^0.032^3^0.003^~1~^~A~^^^1^0.028^0.039^2^0.018^0.047^~2, 3~^~03/01/2013~ -~36011~^~626~^0.154^3^0.017^~1~^~AS~^^^1^0.137^0.188^2^0.082^0.226^~2, 3~^~03/01/2013~ -~36011~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~628~^0.016^3^0.002^~1~^~A~^^^1^0.014^0.019^2^0.009^0.023^~2, 3~^~03/01/2013~ -~36011~^~629~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.009^2^0.000^0.012^~2, 3~^~03/01/2013~ -~36011~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2009~ -~36011~^~631~^0.018^3^0.003^~1~^~A~^^^1^0.015^0.024^2^0.006^0.031^~2, 3~^~03/01/2013~ -~36011~^~645~^2.636^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~646~^0.676^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~652~^0.023^3^0.004^~1~^~A~^^^1^0.019^0.030^2^0.007^0.038^~2, 3~^~03/01/2013~ -~36011~^~653~^0.067^3^0.003^~1~^~A~^^^1^0.061^0.073^2^0.052^0.081^~2, 3~^~03/01/2013~ -~36011~^~654~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~03/01/2013~ -~36011~^~662~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.020^2^0.014^0.022^~2, 3~^~03/01/2013~ -~36011~^~663~^0.229^3^0.032^~1~^~A~^^^1^0.188^0.291^2^0.093^0.365^~2, 3~^~03/01/2013~ -~36011~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36011~^~665~^0.033^3^0.003^~1~^~A~^^^1^0.029^0.038^2^0.021^0.044^~2, 3~^~03/01/2013~ -~36011~^~670~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.025^2^0.019^0.027^~2, 3~^~03/01/2013~ -~36011~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~672~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~05/01/2009~ -~36011~^~673~^0.136^3^0.016^~1~^~A~^^^1^0.120^0.168^2^0.068^0.204^~2, 3~^~03/01/2013~ -~36011~^~674~^2.161^3^0.232^~1~^~A~^^^1^1.919^2.624^2^1.165^3.157^~2, 3~^~03/01/2013~ -~36011~^~675~^0.444^3^0.057^~1~^~A~^^^1^0.330^0.509^2^0.198^0.689^~2, 3~^~03/01/2013~ -~36011~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36011~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~03/01/2013~ -~36011~^~687~^0.044^3^0.003^~1~^~A~^^^1^0.038^0.049^2^0.030^0.057^~2, 3~^~03/01/2013~ -~36011~^~689~^0.027^3^0.002^~1~^~AS~^^^1^0.025^0.030^2^0.019^0.034^~2, 3~^~03/01/2013~ -~36011~^~693~^0.247^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36011~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36011~^~851~^0.028^3^0.007^~1~^~A~^^^1^0.016^0.040^2^-0.001^0.058^~2, 3~^~03/01/2013~ -~36011~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~853~^0.026^3^0.002^~1~^~A~^^^1^0.022^0.030^2^0.016^0.036^~2, 3~^~03/01/2013~ -~36011~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36011~^~858~^0.013^3^0.002^~1~^~A~^^^1^0.010^0.017^2^0.003^0.022^~2, 3~^~03/01/2013~ -~36012~^~312~^0.066^18^0.001^~1~^~A~^^^2^0.057^0.073^13^0.063^0.069^~2, 3~^~04/01/2013~ -~36012~^~315~^0.294^18^0.005^~1~^~A~^^^2^0.219^0.378^13^0.283^0.305^~2, 3~^~04/01/2013~ -~36012~^~404~^0.103^9^0.003^~1~^~A~^^^2^0.070^0.160^7^0.096^0.111^~2, 3~^~04/01/2013~ -~36012~^~405~^0.261^9^0.006^~1~^~A~^^^2^0.230^0.280^5^0.245^0.277^~2, 3~^~04/01/2013~ -~36012~^~406~^0.781^9^0.028^~1~^~A~^^^2^0.560^1.080^7^0.715^0.847^~2, 3~^~04/01/2013~ -~36012~^~410~^0.415^6^0.028^~1~^~A~^^^2^0.310^0.500^2^0.289^0.541^~2, 3~^~04/01/2013~ -~36012~^~415~^0.074^9^0.001^~1~^~A~^^^2^0.065^0.086^7^0.071^0.076^~2, 3~^~04/01/2013~ -~36012~^~501~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~502~^0.430^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~503~^0.792^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~504~^1.540^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~505~^1.175^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~506~^0.431^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~508~^0.851^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~509~^0.634^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~510~^1.036^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~511~^0.637^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~512~^0.474^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~513~^0.492^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~514~^1.068^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~515~^3.923^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~516~^0.366^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~517~^2.188^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~518~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36012~^~521~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~605~^0.359^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~606~^6.848^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~607~^0.181^9^0.006^~1~^~A~^^^2^0.156^0.223^6^0.167^0.196^~2, 3~^~04/01/2013~ -~36012~^~608~^0.146^9^0.004^~1~^~A~^^^2^0.126^0.174^6^0.136^0.156^~2, 3~^~04/01/2013~ -~36012~^~609~^0.097^9^0.002^~1~^~A~^^^2^0.087^0.111^7^0.093^0.102^~2, 3~^~04/01/2013~ -~36012~^~610~^0.234^9^0.004^~1~^~A~^^^2^0.210^0.255^6^0.223^0.244^~2, 3~^~04/01/2013~ -~36012~^~611~^0.271^9^0.006^~1~^~A~^^^2^0.234^0.299^6^0.256^0.286^~2, 3~^~06/01/2009~ -~36012~^~612~^0.872^9^0.019^~1~^~A~^^^2^0.765^0.954^5^0.824^0.919^~2, 3~^~04/01/2013~ -~36012~^~613~^3.351^9^0.081^~1~^~A~^^^2^2.936^3.668^6^3.149^3.552^~2, 3~^~04/01/2013~ -~36012~^~614~^1.447^9^0.025^~1~^~A~^^^2^1.358^1.580^3^1.372^1.521^~2, 3~^~04/01/2013~ -~36012~^~615~^0.042^9^0.001^~1~^~A~^^^2^0.038^0.046^7^0.040^0.045^~2, 3~^~04/01/2013~ -~36012~^~617~^3.979^9^0.087^~1~^~AS~^^^2^3.614^4.283^7^3.770^4.187^~2, 3~^~04/01/2013~ -~36012~^~618~^4.346^9^0.117^~1~^~AS~^^^2^3.721^4.786^7^4.067^4.626^~2, 3~^~04/01/2013~ -~36012~^~619~^0.575^9^0.021^~1~^~AS~^^^2^0.488^0.689^6^0.524^0.627^~2, 3~^~04/01/2013~ -~36012~^~620~^0.023^9^0.001^~1~^~A~^^^2^0.019^0.026^7^0.021^0.025^~2, 3~^~04/01/2013~ -~36012~^~621~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~624~^0.034^9^0.001^~1~^~A~^^^2^0.029^0.038^7^0.032^0.036^~2, 3~^~04/01/2013~ -~36012~^~625~^0.088^9^0.003^~1~^~A~^^^2^0.073^0.100^5^0.081^0.095^~2, 3~^~04/01/2013~ -~36012~^~626~^0.162^9^0.006^~1~^~AS~^^^2^0.134^0.197^5^0.148^0.177^~2, 3~^~04/01/2013~ -~36012~^~627~^0.002^9^0.000^~1~^~A~^^^2^0.000^0.004^7^0.001^0.003^~1, 2, 3~^~06/01/2009~ -~36012~^~628~^0.076^9^0.002^~1~^~A~^^^2^0.068^0.092^5^0.069^0.082^~2, 3~^~04/01/2013~ -~36012~^~629~^0.004^9^0.000^~1~^~A~^^^2^0.002^0.005^6^0.003^0.004^~1, 2, 3~^~06/01/2009~ -~36012~^~630~^0.001^9^0.000^~1~^~AS~^^^2^0.000^0.004^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36012~^~631~^0.006^9^0.000^~1~^~A~^^^2^0.004^0.008^7^0.005^0.007^~2, 3~^~04/01/2013~ -~36012~^~645~^4.328^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~646~^4.982^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~652~^0.093^9^0.002^~1~^~A~^^^2^0.080^0.103^5^0.087^0.099^~2, 3~^~06/01/2009~ -~36012~^~653~^0.064^9^0.001^~1~^~A~^^^2^0.057^0.071^5^0.060^0.067^~2, 3~^~04/01/2013~ -~36012~^~654~^0.015^9^0.000^~1~^~A~^^^2^0.013^0.017^7^0.014^0.016^~2, 3~^~04/01/2013~ -~36012~^~662~^0.030^9^0.001^~1~^~A~^^^2^0.027^0.033^7^0.029^0.031^~2, 3~^~04/01/2013~ -~36012~^~663~^0.223^9^0.007^~1~^~A~^^^2^0.193^0.257^3^0.200^0.245^~2, 3~^~04/01/2013~ -~36012~^~664~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36012~^~665~^0.104^9^0.006^~1~^~A~^^^2^0.078^0.126^5^0.090^0.118^~2, 3~^~04/01/2013~ -~36012~^~670~^0.056^9^0.002^~1~^~A~^^^2^0.048^0.065^5^0.051^0.060^~2, 3~^~04/01/2013~ -~36012~^~671~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~672~^0.007^9^0.000^~1~^~A~^^^2^0.005^0.008^6^0.005^0.008^~2, 3~^~06/01/2009~ -~36012~^~673~^0.132^9^0.006^~1~^~A~^^^2^0.104^0.164^5^0.118^0.146^~2, 3~^~04/01/2013~ -~36012~^~674~^3.756^9^0.085^~1~^~A~^^^2^3.392^4.049^7^3.555^3.957^~2, 3~^~04/01/2013~ -~36012~^~675~^4.187^9^0.118^~1~^~A~^^^2^3.562^4.660^7^3.904^4.470^~2, 3~^~04/01/2013~ -~36012~^~676~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.004^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36012~^~685~^0.036^9^0.002^~1~^~A~^^^2^0.023^0.051^7^0.031^0.040^~2, 3~^~04/01/2013~ -~36012~^~687~^0.023^9^0.001^~1~^~A~^^^2^0.020^0.027^5^0.021^0.025^~2, 3~^~04/01/2013~ -~36012~^~689~^0.013^9^0.001^~1~^~AS~^^^2^0.010^0.016^3^0.010^0.015^~2, 3~^~04/01/2013~ -~36012~^~693~^0.253^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~695~^0.106^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36012~^~697~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36012~^~851~^0.538^9^0.022^~1~^~A~^^^2^0.457^0.664^6^0.484^0.591^~2, 3~^~04/01/2013~ -~36012~^~852~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.003^4^-0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36012~^~853~^0.012^9^0.001^~1~^~A~^^^2^0.009^0.013^7^0.010^0.013^~2, 3~^~04/01/2013~ -~36012~^~856~^0.002^9^0.000^~1~^~A~^^^2^0.000^0.004^5^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36012~^~858~^0.005^9^0.000^~1~^~A~^^^2^0.003^0.007^6^0.004^0.006^~2, 3~^~04/01/2013~ -~36013~^~312~^0.100^18^0.004^~1~^~A~^^^2^0.072^0.124^12^0.091^0.109^~2, 3~^~04/01/2013~ -~36013~^~315~^0.020^18^0.002^~1~^~A~^^^2^0.011^0.042^15^0.016^0.024^~1, 2, 3~^~04/01/2013~ -~36013~^~404~^0.077^9^0.006^~1~^~A~^^^2^0.048^0.098^5^0.061^0.093^~2, 3~^~04/01/2013~ -~36013~^~405~^0.347^9^0.019^~1~^~A~^^^2^0.280^0.420^6^0.301^0.393^~2, 3~^~04/01/2013~ -~36013~^~406~^5.683^9^0.194^~1~^~A~^^^2^4.670^7.180^6^5.200^6.166^~2, 3~^~04/01/2013~ -~36013~^~410~^0.593^6^0.074^~1~^~A~^^^2^0.320^0.850^4^0.381^0.804^~2, 3~^~04/01/2013~ -~36013~^~415~^0.668^9^0.028^~1~^~A~^^^2^0.558^0.805^6^0.599^0.737^~2, 3~^~04/01/2013~ -~36013~^~501~^0.393^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~502~^1.411^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~503~^1.483^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~504~^2.547^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~505~^2.549^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~506~^0.766^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~507~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~508~^1.266^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~509~^1.072^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~510~^1.839^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~511~^2.082^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~512~^1.097^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~513~^1.785^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~514~^2.893^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~515~^4.765^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~516~^1.442^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~517~^1.244^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~518~^1.161^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36013~^~605~^0.354^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~606~^3.143^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~607~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~608~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36013~^~609~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~610~^0.008^9^0.001^~1~^~A~^^^2^0.006^0.010^6^0.007^0.009^~2, 3~^~04/01/2013~ -~36013~^~611~^0.007^9^0.001^~1~^~A~^^^2^0.004^0.011^6^0.005^0.009^~2, 3~^~04/01/2013~ -~36013~^~612~^0.207^9^0.026^~1~^~A~^^^2^0.125^0.325^6^0.143^0.270^~2, 3~^~04/01/2013~ -~36013~^~613~^1.819^9^0.169^~1~^~A~^^^2^1.232^2.654^6^1.397^2.241^~2, 3~^~04/01/2013~ -~36013~^~614~^0.960^9^0.048^~1~^~A~^^^2^0.713^1.146^7^0.846^1.074^~2, 3~^~04/01/2013~ -~36013~^~615~^0.008^9^0.001^~1~^~A~^^^2^0.004^0.012^6^0.006^0.010^~2, 3~^~04/01/2013~ -~36013~^~617~^3.212^9^0.292^~1~^~AS~^^^2^2.107^4.750^5^2.465^3.959^~2, 3~^~04/01/2013~ -~36013~^~618~^0.502^9^0.027^~1~^~AS~^^^2^0.391^0.662^6^0.436^0.568^~2, 3~^~04/01/2013~ -~36013~^~619~^0.032^9^0.003^~1~^~AS~^^^2^0.019^0.048^4^0.023^0.040^~2, 3~^~04/01/2013~ -~36013~^~620~^0.073^9^0.004^~1~^~A~^^^2^0.059^0.097^6^0.064^0.082^~2, 3~^~04/01/2013~ -~36013~^~621~^0.001^9^0.001^~1~^~A~^^^2^0.000^0.004^7^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36013~^~624~^0.005^9^0.001^~1~^~A~^^^2^0.000^0.009^5^0.003^0.008^~1, 2, 3~^~04/01/2013~ -~36013~^~625~^0.062^9^0.012^~1~^~A~^^^2^0.028^0.115^5^0.032^0.092^~2, 3~^~04/01/2013~ -~36013~^~626~^0.285^9^0.048^~1~^~AS~^^^2^0.137^0.501^5^0.161^0.408^~2, 3~^~04/01/2013~ -~36013~^~627~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~628~^0.025^9^0.003^~1~^~A~^^^2^0.014^0.042^6^0.017^0.032^~2, 3~^~04/01/2013~ -~36013~^~629~^0.007^9^0.001^~1~^~A~^^^2^0.004^0.011^7^0.006^0.008^~2, 3~^~06/01/2009~ -~36013~^~630~^0.000^9^0.000^~1~^~AS~^^^2^0.000^0.001^2^0.000^0.001^~2, 3~^~04/01/2013~ -~36013~^~631~^0.019^9^0.001^~1~^~A~^^^2^0.015^0.025^7^0.016^0.022^~2, 3~^~04/01/2013~ -~36013~^~645~^3.654^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~646~^0.673^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~652~^0.034^9^0.004^~1~^~A~^^^2^0.019^0.054^6^0.024^0.043^~2, 3~^~04/01/2013~ -~36013~^~653~^0.092^9^0.009^~1~^~A~^^^2^0.061^0.142^5^0.070^0.114^~2, 3~^~04/01/2013~ -~36013~^~654~^0.004^9^0.000^~1~^~A~^^^2^0.002^0.006^6^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36013~^~662~^0.023^9^0.002^~1~^~A~^^^2^0.017^0.031^6^0.019^0.027^~2, 3~^~04/01/2013~ -~36013~^~663~^0.287^9^0.020^~1~^~A~^^^2^0.188^0.423^4^0.232^0.341^~2, 3~^~04/01/2013~ -~36013~^~664~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36013~^~665~^0.044^9^0.006^~1~^~A~^^^2^0.028^0.077^6^0.030^0.057^~2, 3~^~04/01/2013~ -~36013~^~670~^0.032^9^0.003^~1~^~A~^^^2^0.022^0.047^5^0.025^0.040^~2, 3~^~06/01/2009~ -~36013~^~671~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~672~^0.004^9^0.001^~1~^~A~^^^2^0.000^0.007^7^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36013~^~673~^0.262^9^0.047^~1~^~A~^^^2^0.120^0.470^5^0.142^0.381^~2, 3~^~04/01/2013~ -~36013~^~674~^2.925^9^0.286^~1~^~A~^^^2^1.919^4.456^5^2.194^3.657^~2, 3~^~04/01/2013~ -~36013~^~675~^0.426^9^0.029^~1~^~A~^^^2^0.326^0.591^7^0.355^0.497^~2, 3~^~04/01/2013~ -~36013~^~676~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~685~^0.002^9^0.000^~1~^~A~^^^2^0.000^0.003^7^0.001^0.003^~1, 2, 3~^~06/01/2009~ -~36013~^~687~^0.071^9^0.010^~1~^~A~^^^2^0.038^0.136^5^0.044^0.097^~2, 3~^~04/01/2013~ -~36013~^~689~^0.025^9^0.001^~1~^~AS~^^^2^0.021^0.030^6^0.023^0.028^~2, 3~^~04/01/2013~ -~36013~^~693~^0.310^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36013~^~697~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36013~^~851~^0.030^9^0.003^~1~^~A~^^^2^0.016^0.044^6^0.022^0.037^~2, 3~^~04/01/2013~ -~36013~^~852~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36013~^~853~^0.025^9^0.001^~1~^~A~^^^2^0.021^0.030^6^0.023^0.028^~2, 3~^~04/01/2013~ -~36013~^~856~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36013~^~858~^0.011^9^0.001^~1~^~A~^^^2^0.006^0.017^6^0.008^0.013^~2, 3~^~04/01/2013~ -~36014~^~312~^0.112^18^0.004^~1~^~A~^^^2^0.081^0.147^14^0.103^0.121^~2, 3~^~04/01/2013~ -~36014~^~315~^0.235^18^0.005^~1~^~A~^^^2^0.150^0.308^16^0.224^0.246^~2, 3~^~04/01/2013~ -~36014~^~404~^0.110^9^0.003^~1~^~A~^^^2^0.090^0.130^7^0.102^0.118^~2, 3~^~04/01/2013~ -~36014~^~405~^0.057^9^0.001^~1~^~A~^^^2^0.047^0.066^5^0.054^0.059^~2, 3~^~04/01/2013~ -~36014~^~406~^2.564^9^0.150^~1~^~A~^^^2^1.880^3.230^7^2.208^2.920^~2, 3~^~04/01/2013~ -~36014~^~410~^0.545^6^0.010^~1~^~A~^^^2^0.480^0.620^4^0.516^0.574^~2, 3~^~04/01/2013~ -~36014~^~415~^0.236^9^0.013^~1~^~A~^^^2^0.187^0.289^7^0.204^0.268^~2, 3~^~04/01/2013~ -~36014~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~502~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~503~^0.120^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~504~^0.179^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~505~^0.141^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~506~^0.044^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~507~^0.033^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~508~^0.152^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~509~^0.098^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~510~^0.243^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~511~^0.191^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~512~^0.055^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~513~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~514~^0.757^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~515~^0.529^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~516~^0.098^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~517~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~518~^0.125^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36014~^~605~^0.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~606~^2.489^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~607~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~608~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~609~^0.006^9^0.000^~1~^~A~^^^2^0.004^0.009^6^0.006^0.007^~2, 3~^~04/01/2013~ -~36014~^~610~^0.007^9^0.001^~1~^~A~^^^2^0.003^0.013^7^0.005^0.008^~2, 3~^~04/01/2013~ -~36014~^~611~^0.007^9^0.001^~1~^~A~^^^2^0.000^0.020^3^0.003^0.010^~1, 2, 3~^~04/01/2013~ -~36014~^~612~^0.021^9^0.001^~1~^~A~^^^2^0.015^0.029^6^0.019^0.023^~2, 3~^~04/01/2013~ -~36014~^~613~^1.524^9^0.034^~1~^~A~^^^2^1.353^1.665^6^1.441^1.607^~2, 3~^~04/01/2013~ -~36014~^~614~^0.801^9^0.044^~1~^~A~^^^2^0.614^1.058^5^0.689^0.912^~2, 3~^~04/01/2013~ -~36014~^~615~^0.048^9^0.001^~1~^~A~^^^2^0.043^0.053^6^0.045^0.051^~2, 3~^~04/01/2013~ -~36014~^~617~^3.259^9^0.084^~1~^~AS~^^^2^2.928^3.660^4^3.019^3.499^~2, 3~^~04/01/2013~ -~36014~^~618~^5.757^9^0.265^~1~^~AS~^^^2^4.820^7.178^6^5.093^6.421^~2, 3~^~04/01/2013~ -~36014~^~619~^0.839^9^0.033^~1~^~AS~^^^2^0.708^1.006^5^0.756^0.922^~2, 3~^~04/01/2013~ -~36014~^~620~^0.006^9^0.000^~1~^~A~^^^2^0.005^0.008^4^0.005^0.007^~2, 3~^~04/01/2013~ -~36014~^~621~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~624~^0.041^9^0.001^~1~^~A~^^^2^0.036^0.048^6^0.037^0.044^~2, 3~^~04/01/2013~ -~36014~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~626~^0.019^9^0.001^~1~^~AS~^^^2^0.014^0.024^5^0.016^0.022^~2, 3~^~04/01/2013~ -~36014~^~627~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~628~^0.069^9^0.004^~1~^~A~^^^2^0.050^0.093^5^0.060^0.079^~2, 3~^~04/01/2013~ -~36014~^~629~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36014~^~630~^0.003^9^0.001^~1~^~AS~^^^2^0.000^0.009^7^0.002^0.005^~2, 3~^~04/01/2013~ -~36014~^~631~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~645~^3.358^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~646~^6.608^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~652~^0.004^9^0.000^~1~^~A~^^^2^0.003^0.006^7^0.004^0.005^~2, 3~^~06/01/2009~ -~36014~^~653~^0.015^9^0.001^~1~^~A~^^^2^0.012^0.017^7^0.013^0.016^~2, 3~^~04/01/2013~ -~36014~^~654~^0.017^9^0.001^~1~^~A~^^^2^0.015^0.020^7^0.015^0.018^~2, 3~^~04/01/2013~ -~36014~^~662~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~663~^0.034^9^0.005^~1~^~A~^^^2^0.013^0.053^7^0.022^0.046^~2, 3~^~04/01/2013~ -~36014~^~664~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.005^2^0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36014~^~665~^0.068^9^0.006^~1~^~A~^^^2^0.041^0.095^6^0.053^0.084^~2, 3~^~04/01/2013~ -~36014~^~670~^0.013^9^0.001^~1~^~A~^^^2^0.007^0.022^7^0.010^0.016^~2, 3~^~06/01/2009~ -~36014~^~671~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~672~^0.005^9^0.000^~1~^~A~^^^2^0.004^0.006^5^0.005^0.006^~2, 3~^~04/01/2013~ -~36014~^~673~^0.019^9^0.001^~1~^~A~^^^2^0.014^0.024^5^0.016^0.022^~2, 3~^~04/01/2013~ -~36014~^~674~^3.225^9^0.083^~1~^~A~^^^2^2.891^3.610^4^2.995^3.454^~2, 3~^~04/01/2013~ -~36014~^~675~^5.676^9^0.263^~1~^~A~^^^2^4.749^7.081^5^5.016^6.335^~2, 3~^~04/01/2013~ -~36014~^~676~^0.002^9^0.001^~1~^~A~^^^2^0.000^0.005^7^0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36014~^~685~^0.046^9^0.008^~1~^~A~^^^2^0.000^0.071^3^0.017^0.076^~1, 2, 3~^~04/01/2013~ -~36014~^~687~^0.008^9^0.000^~1~^~A~^^^2^0.006^0.010^7^0.007^0.008^~2, 3~^~04/01/2013~ -~36014~^~689~^0.000^9^0.000^~1~^~AS~^^^2^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36014~^~693~^0.036^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36014~^~697~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~851~^0.792^9^0.032^~1~^~A~^^^2^0.662^0.965^5^0.711^0.874^~2, 3~^~04/01/2013~ -~36014~^~852~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36014~^~853~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~856~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36014~^~858~^0.001^9^0.001^~1~^~A~^^^2^0.000^0.005^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36015~^~312~^0.068^18^0.002^~1~^~A~^^^2^0.061^0.085^15^0.065^0.071^~2, 3~^~04/01/2013~ -~36015~^~315~^0.254^18^0.007^~1~^~A~^^^2^0.191^0.311^14^0.239^0.270^~2, 3~^~04/01/2013~ -~36015~^~404~^0.098^9^0.006^~1~^~A~^^^2^0.070^0.130^6^0.084^0.112^~2, 3~^~04/01/2013~ -~36015~^~405~^0.166^9^0.003^~1~^~A~^^^2^0.130^0.190^6^0.158^0.173^~2, 3~^~04/01/2013~ -~36015~^~406~^7.628^9^0.252^~1~^~A~^^^2^6.870^9.080^5^6.984^8.272^~2, 3~^~04/01/2013~ -~36015~^~410~^1.558^6^0.071^~1~^~A~^^^2^1.230^1.730^3^1.314^1.803^~2, 3~^~04/01/2013~ -~36015~^~415~^0.453^9^0.013^~1~^~A~^^^2^0.374^0.505^6^0.421^0.484^~2, 3~^~04/01/2013~ -~36015~^~501~^0.213^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~502~^0.602^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~503~^0.933^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~504~^1.594^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~505~^1.844^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~506~^0.519^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~507~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~508~^0.778^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~509~^0.534^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~510~^1.022^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~511~^1.271^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~512~^0.733^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~513~^1.052^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~514~^1.583^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~515~^3.395^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~516~^0.862^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~517~^1.204^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~518~^0.694^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36015~^~521~^0.022^3^0.008^~1~^~A~^^^2^0.007^0.030^1^-0.073^0.118^~1, 2, 3~^~04/01/2013~ -~36015~^~605~^0.131^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~606~^3.199^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~607~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~608~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~05/01/2009~ -~36015~^~609~^0.008^9^0.001^~1~^~A~^^^2^0.004^0.019^6^0.004^0.011^~2, 3~^~04/01/2013~ -~36015~^~610~^0.005^9^0.000^~1~^~A~^^^2^0.003^0.006^7^0.004^0.005^~2, 3~^~04/01/2013~ -~36015~^~611~^0.003^9^0.001^~1~^~A~^^^2^0.000^0.005^7^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36015~^~612~^0.021^9^0.001^~1~^~A~^^^2^0.016^0.032^6^0.017^0.024^~2, 3~^~06/01/2009~ -~36015~^~613~^1.946^9^0.109^~1~^~A~^^^2^1.655^2.787^5^1.670^2.222^~2, 3~^~04/01/2013~ -~36015~^~614~^1.058^9^0.080^~1~^~A~^^^2^0.862^1.626^5^0.854^1.262^~2, 3~^~04/01/2013~ -~36015~^~615~^0.057^9^0.003^~1~^~A~^^^2^0.048^0.082^5^0.048^0.065^~2, 3~^~04/01/2013~ -~36015~^~617~^3.807^9^0.241^~1~^~AS~^^^2^3.197^5.604^5^3.199^4.415^~2, 3~^~04/01/2013~ -~36015~^~618~^7.890^9^0.494^~1~^~AS~^^^2^6.858^11.321^5^6.621^9.158^~2, 3~^~04/01/2013~ -~36015~^~619~^1.038^9^0.061^~1~^~AS~^^^2^0.899^1.396^5^0.882^1.194^~2, 3~^~04/01/2013~ -~36015~^~620~^0.043^9^0.002^~1~^~A~^^^2^0.034^0.054^6^0.038^0.047^~2, 3~^~04/01/2013~ -~36015~^~621~^0.003^9^0.001^~1~^~A~^^^2^0.000^0.005^5^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36015~^~624~^0.057^9^0.004^~1~^~A~^^^2^0.050^0.084^5^0.048^0.067^~2, 3~^~04/01/2013~ -~36015~^~625~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~06/01/2009~ -~36015~^~626~^0.052^9^0.003^~1~^~AS~^^^2^0.034^0.075^6^0.045^0.060^~2, 3~^~04/01/2013~ -~36015~^~627~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~628~^0.091^9^0.010^~1~^~A~^^^2^0.042^0.186^5^0.065^0.116^~2, 3~^~04/01/2013~ -~36015~^~629~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.002^7^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36015~^~630~^0.001^9^0.000^~1~^~AS~^^^2^0.000^0.003^3^0.000^0.002^~2, 3~^~04/01/2013~ -~36015~^~631~^0.003^9^0.001^~1~^~A~^^^2^0.000^0.007^5^0.001^0.005^~1, 2, 3~^~04/01/2013~ -~36015~^~645~^3.962^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~646~^9.013^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~652~^0.005^9^0.000^~1~^~A~^^^2^0.004^0.006^7^0.004^0.005^~2, 3~^~04/01/2013~ -~36015~^~653~^0.019^9^0.001^~1~^~A~^^^2^0.015^0.028^5^0.016^0.021^~2, 3~^~04/01/2013~ -~36015~^~654~^0.021^9^0.001^~1~^~A~^^^2^0.017^0.028^5^0.019^0.024^~2, 3~^~04/01/2013~ -~36015~^~662~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36015~^~663~^0.036^9^0.007^~1~^~A~^^^2^0.000^0.078^5^0.019^0.054^~1, 2, 3~^~04/01/2013~ -~36015~^~664~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36015~^~665~^0.095^9^0.011^~1~^~A~^^^2^0.065^0.170^6^0.067^0.122^~2, 3~^~04/01/2013~ -~36015~^~670~^0.020^9^0.004^~1~^~A~^^^2^0.008^0.043^6^0.011^0.029^~2, 3~^~04/01/2013~ -~36015~^~671~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~672~^0.012^9^0.001^~1~^~A~^^^2^0.008^0.015^7^0.010^0.014^~2, 3~^~04/01/2013~ -~36015~^~673~^0.052^9^0.003^~1~^~A~^^^2^0.034^0.075^6^0.045^0.060^~2, 3~^~04/01/2013~ -~36015~^~674~^3.771^9^0.237^~1~^~A~^^^2^3.166^5.526^5^3.173^4.369^~2, 3~^~04/01/2013~ -~36015~^~675~^7.775^9^0.483^~1~^~A~^^^2^6.781^11.108^5^6.535^9.014^~2, 3~^~04/01/2013~ -~36015~^~676~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.003^3^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36015~^~685~^0.069^9^0.009^~1~^~A~^^^2^0.051^0.128^6^0.048^0.090^~2, 3~^~04/01/2013~ -~36015~^~687~^0.010^9^0.001^~1~^~A~^^^2^0.008^0.014^5^0.008^0.011^~2, 3~^~04/01/2013~ -~36015~^~689~^0.011^9^0.001^~1~^~AS~^^^2^0.008^0.014^5^0.009^0.012^~2, 3~^~04/01/2013~ -~36015~^~693~^0.036^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~695~^0.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36015~^~697~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~851~^0.969^9^0.057^~1~^~A~^^^2^0.817^1.294^5^0.824^1.114^~2, 3~^~04/01/2013~ -~36015~^~852~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36015~^~853~^0.010^9^0.000^~1~^~A~^^^2^0.008^0.012^7^0.009^0.011^~2, 3~^~04/01/2013~ -~36015~^~856~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36015~^~858~^0.014^9^0.001^~1~^~A~^^^2^0.010^0.020^5^0.011^0.017^~2, 3~^~04/01/2013~ -~36016~^~312~^0.142^4^0.016^~1~^~A~^^^1^0.107^0.183^3^0.092^0.192^~2, 3~^~03/01/2014~ -~36016~^~315~^0.297^4^0.038^~1~^~A~^^^1^0.247^0.408^3^0.177^0.417^~2, 3~^~03/01/2014~ -~36016~^~404~^0.112^4^0.024^~1~^~A~^^^1^0.070^0.180^3^0.036^0.189^~2, 3~^~03/01/2014~ -~36016~^~405~^0.129^4^0.040^~1~^~A~^^^1^0.085^0.250^3^0.000^0.257^~2, 3~^~03/01/2014~ -~36016~^~406~^1.249^4^0.407^~1~^~A~^^^1^0.760^2.467^3^-0.046^2.544^~2, 3~^~03/01/2014~ -~36016~^~410~^0.350^2^^~1~^~A~^^^1^0.340^0.360^1^^^^~03/01/2014~ -~36016~^~415~^0.074^4^0.008^~1~^~A~^^^1^0.055^0.090^3^0.048^0.100^~2, 3~^~03/01/2014~ -~36016~^~501~^0.145^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~502~^0.451^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~503~^0.547^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~504~^0.993^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~505~^0.863^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~506~^0.309^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~507~^0.171^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~508~^0.559^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~509~^0.386^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~510~^0.673^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~511~^0.922^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~512~^0.258^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~513~^0.656^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~514~^1.151^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~515~^2.577^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~516~^0.579^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~517~^0.691^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~518~^0.511^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36016~^~605~^0.138^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~606~^3.361^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~607~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~608~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36016~^~609~^0.007^4^0.003^~1~^~A~^^^1^0.000^0.014^3^-0.003^0.016^~1, 2, 3~^~06/01/2009~ -~36016~^~610~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.007^3^-0.001^0.010^~1, 2, 3~^~03/01/2014~ -~36016~^~611~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.001^0.005^~1, 2, 3~^~03/01/2014~ -~36016~^~612~^0.022^4^0.001^~1~^~A~^^^1^0.020^0.023^3^0.020^0.024^~2, 3~^~03/01/2014~ -~36016~^~613~^1.956^4^0.066^~1~^~A~^^^1^1.761^2.044^3^1.746^2.166^~2, 3~^~03/01/2014~ -~36016~^~614~^1.193^4^0.037^~1~^~A~^^^1^1.105^1.264^3^1.077^1.309^~2, 3~^~03/01/2014~ -~36016~^~615~^0.064^4^0.002^~1~^~A~^^^1^0.057^0.068^3^0.056^0.071^~2, 3~^~03/01/2014~ -~36016~^~617~^4.137^4^0.192^~1~^~AS~^^^1^3.680^4.611^3^3.525^4.749^~2, 3~^~03/01/2014~ -~36016~^~618~^8.182^4^0.255^~1~^~AS~^^^1^7.423^8.505^3^7.372^8.992^~2, 3~^~03/01/2014~ -~36016~^~619~^0.997^4^0.028^~1~^~AS~^^^1^0.951^1.067^3^0.909^1.086^~2, 3~^~03/01/2014~ -~36016~^~620~^0.025^4^0.002^~1~^~A~^^^1^0.019^0.030^3^0.018^0.032^~2, 3~^~03/01/2014~ -~36016~^~621~^0.045^4^0.006^~1~^~A~^^^1^0.030^0.055^3^0.027^0.064^~2, 3~^~03/01/2014~ -~36016~^~624~^0.061^4^0.002^~1~^~A~^^^1^0.054^0.065^3^0.053^0.069^~2, 3~^~03/01/2014~ -~36016~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~626~^0.033^4^0.004^~1~^~AS~^^^1^0.024^0.044^3^0.019^0.047^~2, 3~^~03/01/2014~ -~36016~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~628~^0.114^4^0.015^~1~^~A~^^^1^0.068^0.131^3^0.065^0.162^~2, 3~^~03/01/2014~ -~36016~^~629~^0.045^4^0.004^~1~^~A~^^^1^0.034^0.054^3^0.031^0.060^~2, 3~^~03/01/2014~ -~36016~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36016~^~631~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~06/01/2009~ -~36016~^~645~^4.294^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~646~^9.311^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~652~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~03/01/2014~ -~36016~^~653~^0.023^4^0.000^~1~^~A~^^^1^0.022^0.023^3^0.022^0.024^~2, 3~^~03/01/2014~ -~36016~^~654~^0.023^4^0.001^~1~^~A~^^^1^0.020^0.026^3^0.019^0.027^~2, 3~^~06/01/2009~ -~36016~^~662~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.002^3^0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36016~^~663~^0.060^4^0.010^~1~^~A~^^^1^0.040^0.078^3^0.028^0.092^~2, 3~^~03/01/2014~ -~36016~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36016~^~665~^0.076^4^0.017^~1~^~A~^^^1^0.033^0.105^3^0.024^0.129^~2, 3~^~03/01/2014~ -~36016~^~670~^0.024^4^0.005^~1~^~A~^^^1^0.016^0.038^3^0.008^0.039^~2, 3~^~03/01/2014~ -~36016~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~672~^0.011^4^0.001^~1~^~A~^^^1^0.010^0.013^3^0.009^0.014^~2, 3~^~03/01/2014~ -~36016~^~673~^0.031^4^0.004^~1~^~A~^^^1^0.023^0.043^3^0.018^0.045^~2, 3~^~03/01/2014~ -~36016~^~674~^4.077^4^0.192^~1~^~A~^^^1^3.603^4.533^3^3.466^4.688^~2, 3~^~03/01/2014~ -~36016~^~675~^8.082^4^0.237^~1~^~A~^^^1^7.374^8.379^3^7.328^8.837^~2, 3~^~03/01/2014~ -~36016~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~685~^0.083^4^0.018^~1~^~A~^^^1^0.036^0.121^3^0.027^0.139^~2, 3~^~03/01/2014~ -~36016~^~687~^0.010^4^0.000^~1~^~A~^^^1^0.010^0.011^3^0.009^0.011^~2, 3~^~03/01/2014~ -~36016~^~689~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~03/01/2014~ -~36016~^~693~^0.061^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~695~^0.076^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36016~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~851~^0.914^4^0.031^~1~^~A~^^^1^0.830^0.977^3^0.816^1.012^~2, 3~^~03/01/2014~ -~36016~^~852~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36016~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36016~^~858~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2014~ -~36017~^~312~^0.064^24^0.001^~1~^~A~^^^2^0.050^0.077^22^0.061^0.067^~2, 3~^~04/01/2013~ -~36017~^~315~^0.194^24^0.014^~1~^~A~^^^2^0.097^0.305^22^0.165^0.224^~2, 3~^~04/01/2013~ -~36017~^~404~^0.095^12^0.005^~1~^~A~^^^2^0.070^0.130^9^0.083^0.107^~2, 3~^~04/01/2013~ -~36017~^~405~^0.254^12^0.010^~1~^~A~^^^2^0.200^0.300^8^0.230^0.278^~2, 3~^~04/01/2013~ -~36017~^~406~^0.783^12^0.053^~1~^~A~^^^2^0.510^1.090^9^0.663^0.903^~2, 3~^~04/01/2013~ -~36017~^~410~^0.474^8^0.025^~1~^~A~^^^2^0.350^0.550^3^0.401^0.547^~2, 3~^~04/01/2013~ -~36017~^~415~^0.057^12^0.005^~1~^~A~^^^2^0.033^0.099^10^0.046^0.069^~2, 3~^~04/01/2013~ -~36017~^~501~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36017~^~502~^0.165^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36017~^~503~^0.292^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~504~^0.545^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~505~^0.315^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~506~^0.121^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~507~^0.085^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~508~^0.322^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~509~^0.220^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~510~^0.474^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~511~^0.234^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~512~^0.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~513~^0.209^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~514~^0.391^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~515~^1.761^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~516~^0.166^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~517~^0.674^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~518~^0.323^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36017~^~521~^0.000^4^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36017~^~605~^0.117^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~606~^2.147^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~607~^0.059^12^0.009^~1~^~A~^^^2^0.032^0.118^6^0.036^0.082^~2, 3~^~04/01/2013~ -~36017~^~608~^0.046^12^0.007^~1~^~A~^^^2^0.023^0.096^6^0.027^0.064^~2, 3~^~04/01/2013~ -~36017~^~609~^0.029^12^0.005^~1~^~A~^^^2^0.016^0.061^6^0.018^0.040^~2, 3~^~04/01/2013~ -~36017~^~610~^0.073^12^0.011^~1~^~A~^^^2^0.040^0.147^6^0.046^0.101^~2, 3~^~04/01/2013~ -~36017~^~611~^0.082^12^0.013^~1~^~A~^^^2^0.043^0.169^6^0.050^0.114^~2, 3~^~04/01/2013~ -~36017~^~612~^0.267^12^0.041^~1~^~A~^^^2^0.147^0.546^6^0.164^0.370^~2, 3~^~04/01/2013~ -~36017~^~613~^1.067^12^0.164^~1~^~A~^^^2^0.624^2.214^5^0.649^1.484^~2, 3~^~04/01/2013~ -~36017~^~614~^0.431^12^0.059^~1~^~A~^^^2^0.231^0.853^5^0.280^0.582^~2, 3~^~04/01/2013~ -~36017~^~615~^0.019^12^0.002^~1~^~A~^^^2^0.006^0.031^10^0.014^0.023^~2, 3~^~04/01/2013~ -~36017~^~617~^1.830^12^0.151^~1~^~AS~^^^2^0.677^2.691^8^1.483^2.176^~2, 3~^~04/01/2013~ -~36017~^~618~^1.395^12^0.300^~1~^~AS~^^^2^0.560^3.565^5^0.624^2.166^~2, 3~^~04/01/2013~ -~36017~^~619~^0.251^12^0.030^~1~^~AS~^^^2^0.065^0.478^9^0.183^0.319^~2, 3~^~04/01/2013~ -~36017~^~620~^0.008^12^0.001^~1~^~A~^^^2^0.004^0.013^8^0.006^0.010^~2, 3~^~04/01/2013~ -~36017~^~621~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36017~^~624~^0.014^12^0.002^~1~^~A~^^^2^0.005^0.031^6^0.010^0.019^~2, 3~^~04/01/2013~ -~36017~^~625~^0.027^12^0.004^~1~^~A~^^^2^0.015^0.054^6^0.017^0.038^~2, 3~^~04/01/2013~ -~36017~^~626~^0.051^12^0.007^~1~^~AS~^^^2^0.031^0.098^5^0.034^0.068^~2, 3~^~04/01/2013~ -~36017~^~627~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36017~^~628~^0.037^12^0.003^~1~^~A~^^^2^0.012^0.052^6^0.029^0.045^~2, 3~^~04/01/2013~ -~36017~^~629~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36017~^~630~^0.001^12^0.000^~1~^~AS~^^^2^0.000^0.005^7^0.000^0.002^~2, 3~^~06/01/2009~ -~36017~^~631~^0.001^12^0.000^~1~^~A~^^^2^0.000^0.005^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36017~^~645~^1.954^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~646~^1.663^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~652~^0.031^12^0.004^~1~^~A~^^^2^0.018^0.058^6^0.020^0.041^~2, 3~^~04/01/2013~ -~36017~^~653~^0.021^12^0.003^~1~^~A~^^^2^0.012^0.040^5^0.013^0.028^~2, 3~^~06/01/2009~ -~36017~^~654~^0.008^12^0.001^~1~^~A~^^^2^0.003^0.013^10^0.006^0.010^~2, 3~^~04/01/2013~ -~36017~^~662~^0.010^12^0.002^~1~^~A~^^^2^0.005^0.021^6^0.006^0.014^~2, 3~^~04/01/2013~ -~36017~^~663~^0.073^12^0.011^~1~^~A~^^^2^0.039^0.142^6^0.046^0.100^~2, 3~^~04/01/2013~ -~36017~^~664~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~06/01/2009~ -~36017~^~665~^0.033^12^0.006^~1~^~A~^^^2^0.017^0.070^5^0.019^0.047^~2, 3~^~04/01/2013~ -~36017~^~670~^0.018^12^0.003^~1~^~A~^^^2^0.007^0.037^6^0.010^0.025^~2, 3~^~04/01/2013~ -~36017~^~671~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36017~^~672~^0.003^12^0.000^~1~^~A~^^^2^0.000^0.005^7^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36017~^~673~^0.041^12^0.005^~1~^~A~^^^2^0.025^0.078^5^0.028^0.054^~2, 3~^~04/01/2013~ -~36017~^~674~^1.756^12^0.147^~1~^~A~^^^2^0.629^2.555^8^1.414^2.099^~2, 3~^~04/01/2013~ -~36017~^~675~^1.344^12^0.292^~1~^~A~^^^2^0.526^3.458^5^0.595^2.094^~2, 3~^~04/01/2013~ -~36017~^~676~^0.001^12^0.000^~1~^~A~^^^2^0.000^0.005^7^0.000^0.002^~1, 2, 3~^~06/01/2009~ -~36017~^~685~^0.011^12^0.002^~1~^~A~^^^2^0.002^0.024^7^0.007^0.015^~1, 2, 3~^~04/01/2013~ -~36017~^~687~^0.008^12^0.001^~1~^~A~^^^2^0.005^0.015^5^0.005^0.010^~2, 3~^~04/01/2013~ -~36017~^~689~^0.004^12^0.001^~1~^~AS~^^^2^0.000^0.007^9^0.002^0.005^~2, 3~^~06/01/2009~ -~36017~^~693~^0.084^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36017~^~697~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36017~^~851~^0.240^12^0.029^~1~^~A~^^^2^0.062^0.452^10^0.175^0.304^~2, 3~^~04/01/2013~ -~36017~^~852~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36017~^~853~^0.004^12^0.001^~1~^~A~^^^2^0.000^0.007^9^0.002^0.005^~1, 2, 3~^~06/01/2009~ -~36017~^~856~^0.000^12^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36017~^~858~^0.001^12^0.000^~1~^~A~^^^2^0.000^0.004^5^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36018~^~312~^0.039^6^0.001^~1~^~A~^^^1^0.035^0.041^5^0.036^0.042^~2, 3~^~03/01/2013~ -~36018~^~315~^0.097^6^0.004^~1~^~A~^^^1^0.086^0.113^5^0.087^0.107^~2, 3~^~03/01/2013~ -~36018~^~404~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.067^~2, 3~^~03/01/2013~ -~36018~^~405~^0.093^3^0.002^~1~^~A~^^^1^0.090^0.098^2^0.082^0.104^~2, 3~^~03/01/2013~ -~36018~^~406~^2.290^3^0.107^~1~^~A~^^^1^2.080^2.430^2^1.830^2.750^~2, 3~^~03/01/2013~ -~36018~^~410~^0.400^2^^~1~^~A~^^^1^0.370^0.430^1^^^^~03/01/2013~ -~36018~^~415~^0.201^3^0.007^~1~^~A~^^^1^0.189^0.213^2^0.171^0.231^~2, 3~^~03/01/2013~ -~36018~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~502~^0.432^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~503~^0.693^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~504~^1.152^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~505~^1.197^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~506~^0.414^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~507~^0.162^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~508~^0.540^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~509~^0.414^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~510~^0.765^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~511~^0.846^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~512~^0.333^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~513~^0.810^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~514~^1.323^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~515~^2.241^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~516~^0.666^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~517~^0.693^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~518~^0.432^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36018~^~521~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36018~^~605~^0.077^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~606~^1.613^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.000^0.011^~2, 3~^~03/01/2013~ -~36018~^~610~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~03/01/2013~ -~36018~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36018~^~612~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~03/01/2013~ -~36018~^~613~^1.023^3^0.004^~1~^~A~^^^1^1.016^1.029^2^1.007^1.040^~2, 3~^~03/01/2013~ -~36018~^~614~^0.481^3^0.011^~1~^~A~^^^1^0.460^0.499^2^0.432^0.529^~2, 3~^~03/01/2013~ -~36018~^~615~^0.029^3^0.001^~1~^~A~^^^1^0.028^0.030^2^0.026^0.031^~2, 3~^~03/01/2013~ -~36018~^~617~^1.924^3^0.022^~1~^~AS~^^^1^1.892^1.966^2^1.829^2.018^~2, 3~^~03/01/2013~ -~36018~^~618~^3.856^3^0.087^~1~^~AS~^^^1^3.700^4.001^2^3.482^4.231^~2, 3~^~03/01/2013~ -~36018~^~619~^0.517^3^0.009^~1~^~AS~^^^1^0.500^0.531^2^0.478^0.556^~2, 3~^~03/01/2013~ -~36018~^~620~^0.013^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.005^0.021^~2, 3~^~03/01/2013~ -~36018~^~621~^0.107^3^0.006^~1~^~A~^^^1^0.098^0.117^2^0.083^0.131^~2, 3~^~03/01/2013~ -~36018~^~624~^0.029^3^0.002^~1~^~A~^^^1^0.025^0.033^2^0.019^0.039^~2, 3~^~03/01/2013~ -~36018~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~626~^0.026^3^0.009^~1~^~AS~^^^1^0.015^0.043^2^-0.012^0.063^~2, 3~^~03/01/2013~ -~36018~^~627~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~03/01/2013~ -~36018~^~628~^0.057^3^0.004^~1~^~A~^^^1^0.053^0.064^2^0.042^0.072^~2, 3~^~03/01/2013~ -~36018~^~629~^0.050^3^0.002^~1~^~A~^^^1^0.046^0.054^2^0.040^0.060^~2, 3~^~03/01/2013~ -~36018~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.004^2^-0.004^0.007^~2, 3~^~03/01/2013~ -~36018~^~631~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~03/01/2013~ -~36018~^~645~^2.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~646~^4.559^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~03/01/2013~ -~36018~^~653~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~03/01/2013~ -~36018~^~654~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.006^0.017^~2, 3~^~03/01/2013~ -~36018~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~03/01/2013~ -~36018~^~663~^0.022^3^0.006^~1~^~A~^^^1^0.014^0.033^2^-0.002^0.046^~2, 3~^~03/01/2013~ -~36018~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~665~^0.053^3^0.007^~1~^~A~^^^1^0.043^0.067^2^0.022^0.084^~2, 3~^~03/01/2013~ -~36018~^~670~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~03/01/2013~ -~36018~^~671~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36018~^~672~^0.006^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.019^~1, 2, 3~^~03/01/2013~ -~36018~^~673~^0.025^3^0.008^~1~^~A~^^^1^0.015^0.040^2^-0.009^0.058^~2, 3~^~03/01/2013~ -~36018~^~674~^1.902^3^0.017^~1~^~A~^^^1^1.873^1.933^2^1.827^1.976^~2, 3~^~03/01/2013~ -~36018~^~675~^3.794^3^0.081^~1~^~A~^^^1^3.646^3.925^2^3.445^4.142^~2, 3~^~03/01/2013~ -~36018~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~03/01/2013~ -~36018~^~685~^0.035^3^0.003^~1~^~A~^^^1^0.028^0.040^2^0.020^0.050^~2, 3~^~03/01/2013~ -~36018~^~687~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.006^^^^~2, 3~^~03/01/2013~ -~36018~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36018~^~693~^0.023^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~695~^0.054^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36018~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~851~^0.482^3^0.005^~1~^~A~^^^1^0.472^0.488^2^0.461^0.503^~2, 3~^~03/01/2013~ -~36018~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36018~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~03/01/2013~ -~36018~^~858~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~03/01/2013~ -~36019~^~312~^0.086^6^0.004^~1~^~A~^^^1^0.067^0.094^5^0.076^0.095^~2, 3~^~03/01/2013~ -~36019~^~315~^0.084^6^0.004^~1~^~A~^^^1^0.073^0.104^5^0.073^0.095^~2, 3~^~03/01/2013~ -~36019~^~404~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~2, 3~^~03/01/2013~ -~36019~^~405~^0.207^3^0.013^~1~^~A~^^^1^0.180^0.220^2^0.149^0.264^~2, 3~^~03/01/2013~ -~36019~^~406~^3.557^3^0.325^~1~^~A~^^^1^2.930^4.020^2^2.158^4.955^~2, 3~^~03/01/2013~ -~36019~^~410~^0.405^2^^~1~^~A~^^^1^0.340^0.470^1^^^^~03/01/2013~ -~36019~^~415~^0.321^3^0.031^~1~^~A~^^^1^0.280^0.382^2^0.188^0.455^~2, 3~^~03/01/2013~ -~36019~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~502~^0.402^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~503~^0.556^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~504~^0.927^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~505~^0.844^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~506~^0.278^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~507~^0.123^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~508~^0.474^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~509~^0.340^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~510~^0.639^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~511~^0.772^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~512~^0.371^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~513~^0.793^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~514~^1.195^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~515~^2.070^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~516~^0.834^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~517~^0.855^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~518~^0.371^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~521~^0.240^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36019~^~605~^0.576^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~606~^4.150^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~610~^0.011^3^0.002^~1~^~A~^^^1^0.009^0.015^2^0.004^0.019^~2, 3~^~03/01/2013~ -~36019~^~611~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.015^2^0.006^0.019^~2, 3~^~03/01/2013~ -~36019~^~612~^0.308^3^0.057^~1~^~A~^^^1^0.243^0.440^2^0.090^0.581^~2, 3~^~03/01/2013~ -~36019~^~613~^2.330^3^0.349^~1~^~A~^^^1^1.914^3.119^2^1.040^4.039^~2, 3~^~03/01/2013~ -~36019~^~614~^1.309^3^0.188^~1~^~A~^^^1^1.081^1.728^2^0.617^2.236^~2, 3~^~03/01/2013~ -~36019~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.019^~2, 3~^~03/01/2013~ -~36019~^~617~^4.212^3^0.676^~1~^~AS~^^^1^3.531^5.848^2^1.681^7.500^~2, 3~^~03/01/2013~ -~36019~^~618~^0.542^3^0.053^~1~^~AS~^^^1^0.489^0.667^2^0.363^0.819^~2, 3~^~03/01/2013~ -~36019~^~619~^0.038^3^0.006^~1~^~AS~^^^1^0.034^0.053^2^0.016^0.067^~2, 3~^~03/01/2013~ -~36019~^~620~^0.028^3^0.003^~1~^~A~^^^1^0.025^0.035^2^0.018^0.044^~2, 3~^~03/01/2013~ -~36019~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.002^0.010^~2, 3~^~03/01/2013~ -~36019~^~625~^0.098^3^0.015^~1~^~A~^^^1^0.079^0.129^2^0.044^0.170^~2, 3~^~03/01/2013~ -~36019~^~626~^0.382^3^0.060^~1~^~AS~^^^1^0.301^0.500^2^0.160^0.673^~2, 3~^~03/01/2013~ -~36019~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36019~^~628~^0.034^3^0.004^~1~^~A~^^^1^0.031^0.044^2^0.021^0.054^~2, 3~^~03/01/2013~ -~36019~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~03/01/2013~ -~36019~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36019~^~631~^0.007^3^0.002^~1~^~A~^^^1^0.006^0.012^2^-0.001^0.017^~2, 3~^~03/01/2013~ -~36019~^~645~^4.809^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~646~^0.644^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~652~^0.048^3^0.010^~1~^~A~^^^1^0.038^0.073^2^0.007^0.098^~2, 3~^~03/01/2013~ -~36019~^~653~^0.112^3^0.024^~1~^~A~^^^1^0.086^0.168^2^0.018^0.226^~2, 3~^~03/01/2013~ -~36019~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~03/01/2013~ -~36019~^~662~^0.037^3^0.006^~1~^~A~^^^1^0.032^0.051^2^0.016^0.064^~2, 3~^~03/01/2013~ -~36019~^~663~^0.471^3^0.161^~1~^~A~^^^1^0.350^0.835^2^-0.178^1.205^~2, 3~^~03/01/2013~ -~36019~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~665~^0.067^3^0.007^~1~^~A~^^^1^0.059^0.083^2^0.042^0.103^~2, 3~^~03/01/2013~ -~36019~^~670~^0.066^3^0.013^~1~^~A~^^^1^0.055^0.098^2^0.014^0.129^~2, 3~^~03/01/2013~ -~36019~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~03/01/2013~ -~36019~^~673~^0.345^3^0.055^~1~^~A~^^^1^0.269^0.449^2^0.140^0.612^~2, 3~^~03/01/2013~ -~36019~^~674~^3.740^3^0.529^~1~^~A~^^^1^3.181^5.013^2^1.800^6.354^~2, 3~^~03/01/2013~ -~36019~^~675~^0.410^3^0.036^~1~^~A~^^^1^0.375^0.486^2^0.292^0.602^~2, 3~^~03/01/2013~ -~36019~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~03/01/2013~ -~36019~^~687~^0.083^3^0.018^~1~^~A~^^^1^0.064^0.126^2^0.011^0.170^~2, 3~^~03/01/2013~ -~36019~^~689~^0.016^3^0.002^~1~^~AS~^^^1^0.014^0.021^2^0.009^0.026^~2, 3~^~03/01/2013~ -~36019~^~693~^0.508^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36019~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~851~^0.036^3^0.005^~1~^~A~^^^1^0.034^0.049^2^0.018^0.060^~2, 3~^~03/01/2013~ -~36019~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36019~^~853~^0.016^3^0.002^~1~^~A~^^^1^0.014^0.021^2^0.009^0.026^~2, 3~^~03/01/2013~ -~36019~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36019~^~858~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.018^~1, 2, 3~^~03/01/2013~ -~36020~^~312~^0.066^6^0.003^~1~^~A~^^^1^0.059^0.079^5^0.058^0.074^~2, 3~^~03/01/2013~ -~36020~^~315~^0.230^6^0.017^~1~^~A~^^^1^0.190^0.310^5^0.186^0.275^~2, 3~^~03/01/2013~ -~36020~^~404~^0.103^3^0.012^~1~^~A~^^^1^0.080^0.120^2^0.052^0.155^~2, 3~^~03/01/2013~ -~36020~^~405~^0.180^3^0.006^~1~^~A~^^^1^0.170^0.190^2^0.155^0.205^~2, 3~^~03/01/2013~ -~36020~^~406~^8.387^3^0.125^~1~^~A~^^^1^8.160^8.590^2^7.850^8.923^~2, 3~^~03/01/2013~ -~36020~^~410~^1.620^2^^~1~^~A~^^^1^1.590^1.650^1^^^^~03/01/2013~ -~36020~^~415~^0.455^3^0.022^~1~^~A~^^^1^0.433^0.498^2^0.362^0.547^~2, 3~^~03/01/2013~ -~36020~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~502~^0.555^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~503~^0.881^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~504~^1.437^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~505~^1.475^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~506~^0.469^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~507~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~508~^0.699^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~509~^0.498^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~510~^0.958^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~511~^1.101^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~512~^0.632^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~513~^0.967^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~514~^1.475^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~515~^2.979^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~516~^0.747^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~517~^1.398^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~518~^0.584^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36020~^~521~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36020~^~605~^0.180^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~606~^3.905^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~609~^0.012^2^^~1~^~A~^^^1^0.007^0.016^1^^^^~03/01/2013~ -~36020~^~610~^0.008^2^^~1~^~A~^^^1^0.006^0.010^1^^^^~03/01/2013~ -~36020~^~611~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~03/01/2013~ -~36020~^~612~^0.026^2^^~1~^~A~^^^1^0.024^0.029^1^^^^~03/01/2013~ -~36020~^~613~^2.341^2^^~1~^~A~^^^1^2.145^2.537^1^^^^~03/01/2013~ -~36020~^~614~^1.327^2^^~1~^~A~^^^1^1.186^1.468^1^^^^~03/01/2013~ -~36020~^~615~^0.067^2^^~1~^~A~^^^1^0.062^0.073^1^^^^~03/01/2013~ -~36020~^~617~^4.684^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~618~^9.295^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~619~^1.191^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~620~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~03/01/2013~ -~36020~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~624~^0.068^2^^~1~^~A~^^^1^0.061^0.076^1^^^^~03/01/2013~ -~36020~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~626~^0.064^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~628~^0.140^2^^~1~^~A~^^^1^0.115^0.166^1^^^^~03/01/2013~ -~36020~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~645~^4.901^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~646~^10.560^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~652~^0.006^2^^~1~^~A~^^^1^0.004^0.007^1^^^^~03/01/2013~ -~36020~^~653~^0.022^2^^~1~^~A~^^^1^0.020^0.024^1^^^^~03/01/2013~ -~36020~^~654~^0.024^2^^~1~^~A~^^^1^0.022^0.026^1^^^^~03/01/2013~ -~36020~^~662~^0.001^2^^~1~^~A~^^^1^0.000^0.002^1^^^~1~^~03/01/2013~ -~36020~^~663~^0.055^2^^~1~^~A~^^^1^0.039^0.072^1^^^^~03/01/2013~ -~36020~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~665~^0.123^2^^~1~^~A~^^^1^0.087^0.160^1^^^^~03/01/2013~ -~36020~^~670~^0.026^2^^~1~^~A~^^^1^0.020^0.033^1^^^^~03/01/2013~ -~36020~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~672~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~03/01/2013~ -~36020~^~673~^0.063^2^^~1~^~A~^^^1^0.061^0.065^1^^^^~03/01/2013~ -~36020~^~674~^4.628^2^^~1~^~A~^^^1^4.321^4.936^1^^^^~03/01/2013~ -~36020~^~675~^9.145^2^^~1~^~A~^^^1^8.342^9.948^1^^^^~03/01/2013~ -~36020~^~676~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~685~^0.090^2^^~1~^~A~^^^1^0.065^0.116^1^^^^~03/01/2013~ -~36020~^~687~^0.013^2^^~1~^~A~^^^1^0.012^0.013^1^^^^~03/01/2013~ -~36020~^~689~^0.010^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36020~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~695~^0.123^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36020~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~851~^1.100^2^^~1~^~A~^^^1^1.069^1.132^1^^^^~03/01/2013~ -~36020~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~853~^0.010^2^^~1~^~A~^^^1^0.008^0.012^1^^^^~03/01/2013~ -~36020~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36020~^~858~^0.012^2^^~1~^~A~^^^1^0.011^0.014^1^^^^~03/01/2013~ -~36021~^~312~^0.017^6^0.002^~1~^~A~^^^1^0.015^0.027^5^0.012^0.022^~1, 2, 3~^~03/01/2013~ -~36021~^~315~^0.148^6^0.016^~1~^~A~^^^1^0.086^0.191^5^0.106^0.190^~2, 3~^~03/01/2013~ -~36021~^~404~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~03/01/2013~ -~36021~^~405~^0.063^3^0.003^~1~^~A~^^^1^0.058^0.069^2^0.050^0.077^~2, 3~^~03/01/2013~ -~36021~^~406~^0.300^3^0.006^~1~^~A~^^^1^0.290^0.310^2^0.275^0.325^~2, 3~^~03/01/2013~ -~36021~^~410~^0.205^2^^~1~^~A~^^^1^0.200^0.210^1^^^^~03/01/2013~ -~36021~^~415~^0.129^3^0.019^~1~^~A~^^^1^0.091^0.151^2^0.047^0.211^~2, 3~^~03/01/2013~ -~36021~^~501~^0.006^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~502~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~503~^0.025^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~504~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~505~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~507~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~508~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~509~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~510~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~511~^0.059^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~512~^0.008^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~513~^0.034^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~514~^0.068^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~515~^0.127^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~516~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~517~^0.006^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~518~^0.017^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36021~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36021~^~605~^0.037^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~606~^1.061^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~610~^0.005^2^^~1~^~A~^^^1^0.005^0.005^^^^^~03/01/2013~ -~36021~^~611~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2013~ -~36021~^~612~^0.011^2^^~1~^~A~^^^1^0.010^0.012^1^^^^~03/01/2013~ -~36021~^~613~^0.689^2^^~1~^~A~^^^1^0.599^0.779^1^^^^~03/01/2013~ -~36021~^~614~^0.285^2^^~1~^~A~^^^1^0.247^0.323^1^^^^~03/01/2013~ -~36021~^~615~^0.023^2^^~1~^~A~^^^1^0.020^0.027^1^^^^~03/01/2013~ -~36021~^~617~^1.340^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~618~^3.327^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~619~^0.484^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~620~^0.004^2^^~1~^~A~^^^1^0.004^0.005^1^^^^~03/01/2013~ -~36021~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~624~^0.025^2^^~1~^~A~^^^1^0.019^0.032^1^^^^~03/01/2013~ -~36021~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~626~^0.009^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~628~^0.042^2^^~1~^~A~^^^1^0.039^0.045^1^^^^~03/01/2013~ -~36021~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~630~^0.009^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~645~^1.404^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~646~^3.819^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~652~^0.003^2^^~1~^~A~^^^1^0.002^0.003^1^^^~1~^~03/01/2013~ -~36021~^~653~^0.007^2^^~1~^~A~^^^1^0.005^0.009^1^^^^~03/01/2013~ -~36021~^~654~^0.009^2^^~1~^~A~^^^1^0.009^0.010^1^^^^~03/01/2013~ -~36021~^~662~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~663~^0.005^2^^~1~^~A~^^^1^0.002^0.009^1^^^~1~^~03/01/2013~ -~36021~^~664~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~665~^0.032^2^^~1~^~A~^^^1^0.029^0.035^1^^^^~03/01/2013~ -~36021~^~670~^0.004^2^^~1~^~A~^^^1^0.004^0.004^^^^^~03/01/2013~ -~36021~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~672~^0.004^2^^~1~^~A~^^^1^0.003^0.004^1^^^^~03/01/2013~ -~36021~^~673~^0.009^2^^~1~^~A~^^^1^0.009^0.009^^^^^~03/01/2013~ -~36021~^~674~^1.335^2^^~1~^~A~^^^1^1.162^1.508^1^^^^~03/01/2013~ -~36021~^~675~^3.291^2^^~1~^~A~^^^1^2.838^3.745^1^^^^~03/01/2013~ -~36021~^~676~^0.009^2^^~1~^~A~^^^1^0.007^0.011^1^^^^~03/01/2013~ -~36021~^~685~^0.026^2^^~1~^~A~^^^1^0.024^0.027^1^^^^~03/01/2013~ -~36021~^~687~^0.004^2^^~1~^~A~^^^1^0.003^0.005^1^^^^~03/01/2013~ -~36021~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~ -~36021~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36021~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~851~^0.458^2^^~1~^~A~^^^1^0.372^0.544^1^^^^~03/01/2013~ -~36021~^~852~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~853~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~856~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36021~^~858~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2013~ -~36022~^~312~^0.087^6^0.002^~1~^~A~^^^1^0.082^0.095^5^0.082^0.093^~2, 3~^~03/01/2013~ -~36022~^~315~^0.486^6^0.016^~1~^~A~^^^1^0.441^0.554^5^0.444^0.528^~2, 3~^~03/01/2013~ -~36022~^~404~^0.107^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.092^0.121^~2, 3~^~03/01/2013~ -~36022~^~405~^0.091^3^0.003^~1~^~A~^^^1^0.087^0.097^2^0.077^0.104^~2, 3~^~03/01/2013~ -~36022~^~406~^0.730^3^0.006^~1~^~A~^^^1^0.720^0.740^2^0.705^0.755^~2, 3~^~03/01/2013~ -~36022~^~410~^0.405^2^^~1~^~A~^^^1^0.390^0.420^1^^^^~03/01/2013~ -~36022~^~415~^0.077^3^0.002^~1~^~A~^^^1^0.075^0.081^2^0.069^0.085^~2, 3~^~03/01/2013~ -~36022~^~501~^0.042^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~502~^0.084^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~503~^0.157^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~504~^0.293^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~505~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~506~^0.063^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~507~^0.115^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~508~^0.199^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~509~^0.094^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~510~^0.189^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~511~^0.210^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~512~^0.094^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~513~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~514~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~515~^1.351^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~516~^0.157^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~517~^0.576^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~518~^0.136^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36022~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2013~ -~36022~^~605~^0.139^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~606~^3.574^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~609~^0.009^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.014^~2, 3~^~03/01/2013~ -~36022~^~610~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~03/01/2013~ -~36022~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~03/01/2013~ -~36022~^~612~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.026^2^0.013^0.031^~2, 3~^~03/01/2013~ -~36022~^~613~^2.237^3^0.110^~1~^~A~^^^1^2.030^2.404^2^1.764^2.709^~2, 3~^~03/01/2013~ -~36022~^~614~^1.123^3^0.067^~1~^~A~^^^1^0.991^1.208^2^0.835^1.411^~2, 3~^~03/01/2013~ -~36022~^~615~^0.063^3^0.003^~1~^~A~^^^1^0.058^0.068^2^0.051^0.076^~2, 3~^~03/01/2013~ -~36022~^~617~^4.301^3^0.192^~1~^~AS~^^^1^3.980^4.644^2^3.474^5.127^~2, 3~^~03/01/2013~ -~36022~^~618~^8.983^3^0.371^~1~^~AS~^^^1^8.242^9.391^2^7.386^10.580^~2, 3~^~03/01/2013~ -~36022~^~619~^1.252^3^0.078^~1~^~AS~^^^1^1.109^1.379^2^0.915^1.589^~2, 3~^~03/01/2013~ -~36022~^~620~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.012^~2, 3~^~03/01/2013~ -~36022~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~624~^0.062^3^0.002^~1~^~A~^^^1^0.057^0.064^2^0.052^0.072^~2, 3~^~03/01/2013~ -~36022~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2013~ -~36022~^~626~^0.037^3^0.005^~1~^~AS~^^^1^0.031^0.047^2^0.016^0.058^~2, 3~^~03/01/2013~ -~36022~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~628~^0.057^3^0.002^~1~^~A~^^^1^0.054^0.062^2^0.047^0.068^~2, 3~^~03/01/2013~ -~36022~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~03/01/2013~ -~36022~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~645~^4.408^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~646~^10.255^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~652~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~03/01/2013~ -~36022~^~653~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.016^0.025^~2, 3~^~03/01/2013~ -~36022~^~654~^0.024^3^0.000^~1~^~A~^^^1^0.024^0.025^2^0.023^0.026^~2, 3~^~03/01/2013~ -~36022~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~663~^0.036^3^0.007^~1~^~A~^^^1^0.024^0.049^2^0.005^0.067^~2, 3~^~03/01/2013~ -~36022~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~665~^0.103^3^0.009^~1~^~A~^^^1^0.084^0.114^2^0.062^0.143^~2, 3~^~03/01/2013~ -~36022~^~670~^0.026^3^0.001^~1~^~A~^^^1^0.024^0.029^2^0.020^0.032^~2, 3~^~03/01/2013~ -~36022~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~03/01/2013~ -~36022~^~673~^0.037^3^0.005^~1~^~A~^^^1^0.031^0.047^2^0.016^0.058^~2, 3~^~03/01/2013~ -~36022~^~674~^4.264^3^0.199^~1~^~A~^^^1^3.931^4.620^2^3.407^5.121^~2, 3~^~03/01/2013~ -~36022~^~675~^8.854^3^0.377^~1~^~A~^^^1^8.103^9.283^2^7.232^10.476^~2, 3~^~03/01/2013~ -~36022~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~03/01/2013~ -~36022~^~685~^0.074^3^0.007^~1~^~A~^^^1^0.060^0.084^2^0.043^0.104^~2, 3~^~03/01/2013~ -~36022~^~687~^0.012^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~03/01/2013~ -~36022~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~03/01/2013~ -~36022~^~693~^0.036^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36022~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~851~^1.178^3^0.083^~1~^~A~^^^1^1.032^1.319^2^0.821^1.535^~2, 3~^~03/01/2013~ -~36022~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36022~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36022~^~858~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~03/01/2013~ -~36023~^~312~^0.069^6^0.004^~1~^~A~^^^1^0.060^0.080^5^0.060^0.079^~2, 3~^~03/01/2013~ -~36023~^~315~^0.258^6^0.008^~1~^~A~^^^1^0.222^0.281^5^0.236^0.279^~2, 3~^~03/01/2013~ -~36023~^~404~^0.103^3^0.003^~1~^~A~^^^1^0.100^0.110^2^0.089^0.117^~2, 3~^~03/01/2013~ -~36023~^~405~^0.183^3^0.003^~1~^~A~^^^1^0.180^0.190^2^0.169^0.197^~2, 3~^~03/01/2013~ -~36023~^~406~^7.847^3^0.488^~1~^~A~^^^1^7.020^8.710^2^5.746^9.947^~2, 3~^~03/01/2013~ -~36023~^~410~^1.670^2^^~1~^~A~^^^1^1.660^1.680^1^^^^~03/01/2013~ -~36023~^~415~^0.506^3^0.031^~1~^~A~^^^1^0.444^0.544^2^0.372^0.640^~2, 3~^~03/01/2013~ -~36023~^~501~^0.220^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~502~^0.638^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~503~^1.015^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~504~^1.622^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~505~^1.476^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~506~^0.523^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~507~^0.272^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~508~^0.816^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~509~^0.523^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~510~^1.109^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~511~^1.214^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~512~^0.712^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~513~^1.120^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~514~^1.727^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~515~^3.464^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~516~^0.858^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~517~^0.973^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~518~^0.586^0^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~521~^0.040^1^^~1~^~A~^^^^^^^^^^~03/01/2013~ -~36023~^~605~^0.120^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~606~^2.849^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36023~^~610~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~03/01/2013~ -~36023~^~611~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~03/01/2013~ -~36023~^~612~^0.019^3^0.001^~1~^~A~^^^1^0.018^0.020^2^0.016^0.021^~2, 3~^~03/01/2013~ -~36023~^~613~^1.780^3^0.031^~1~^~A~^^^1^1.737^1.840^2^1.646^1.913^~2, 3~^~03/01/2013~ -~36023~^~614~^0.894^3^0.013^~1~^~A~^^^1^0.869^0.911^2^0.839^0.948^~2, 3~^~03/01/2013~ -~36023~^~615~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.051^2^0.044^0.054^~2, 3~^~03/01/2013~ -~36023~^~617~^3.403^3^0.044^~1~^~AS~^^^1^3.317^3.465^2^3.212^3.594^~2, 3~^~03/01/2013~ -~36023~^~618~^6.893^3^0.079^~1~^~AS~^^^1^6.736^6.974^2^6.555^7.232^~2, 3~^~03/01/2013~ -~36023~^~619~^0.061^3^0.005^~1~^~AS~^^^1^0.051^0.069^2^0.038^0.084^~2, 3~^~03/01/2013~ -~36023~^~620~^0.047^3^0.004^~1~^~A~^^^1^0.041^0.054^2^0.031^0.063^~2, 3~^~03/01/2013~ -~36023~^~621~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.012^~1, 2, 3~^~03/01/2013~ -~36023~^~624~^0.052^3^0.000^~1~^~A~^^^1^0.051^0.052^2^0.050^0.053^~2, 3~^~03/01/2013~ -~36023~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2013~ -~36023~^~626~^0.055^3^0.008^~1~^~AS~^^^1^0.047^0.071^2^0.020^0.089^~2, 3~^~03/01/2013~ -~36023~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~628~^0.917^3^0.005^~1~^~A~^^^1^0.910^0.927^2^0.895^0.939^~2, 3~^~03/01/2013~ -~36023~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~03/01/2013~ -~36023~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2013~ -~36023~^~631~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.005^0.012^~1, 2, 3~^~03/01/2013~ -~36023~^~645~^4.385^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~646~^7.042^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~03/01/2013~ -~36023~^~653~^0.017^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~03/01/2013~ -~36023~^~654~^0.018^3^0.000^~1~^~A~^^^1^0.018^0.019^2^0.017^0.020^~2, 3~^~03/01/2013~ -~36023~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~663~^0.035^3^0.006^~1~^~A~^^^1^0.025^0.047^2^0.007^0.062^~2, 3~^~03/01/2013~ -~36023~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~665~^0.085^3^0.006^~1~^~A~^^^1^0.074^0.095^2^0.059^0.111^~2, 3~^~03/01/2013~ -~36023~^~670~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.016^0.025^~2, 3~^~03/01/2013~ -~36023~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~672~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~03/01/2013~ -~36023~^~673~^0.055^3^0.008^~1~^~A~^^^1^0.047^0.071^2^0.020^0.089^~2, 3~^~03/01/2013~ -~36023~^~674~^3.368^3^0.045^~1~^~A~^^^1^3.285^3.440^2^3.174^3.562^~2, 3~^~03/01/2013~ -~36023~^~675~^6.787^3^0.074^~1~^~A~^^^1^6.639^6.867^2^6.468^7.106^~2, 3~^~03/01/2013~ -~36023~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~685~^0.061^3^0.005^~1~^~A~^^^1^0.051^0.069^2^0.038^0.084^~2, 3~^~03/01/2013~ -~36023~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~03/01/2013~ -~36023~^~689~^0.012^3^0.002^~1~^~AS~^^^1^0.009^0.017^2^0.002^0.023^~2, 3~^~03/01/2013~ -~36023~^~693~^0.035^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~695~^0.085^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~ -~36023~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~851~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~853~^0.012^3^0.002^~1~^~A~^^^1^0.009^0.017^2^0.002^0.023^~2, 3~^~03/01/2013~ -~36023~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2013~ -~36023~^~858~^0.010^3^0.005^~1~^~A~^^^1^0.000^0.016^2^-0.012^0.032^~1, 2, 3~^~03/01/2013~ -~36024~^~312~^0.066^6^0.002^~1~^~A~^^^1^0.061^0.073^5^0.061^0.071^~2, 3~^~04/01/2013~ -~36024~^~315~^0.262^6^0.004^~1~^~A~^^^1^0.251^0.274^5^0.253^0.272^~2, 3~^~04/01/2013~ -~36024~^~404~^0.097^3^0.009^~1~^~A~^^^1^0.080^0.110^2^0.059^0.135^~2, 3~^~04/01/2013~ -~36024~^~405~^0.133^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.119^0.148^~2, 3~^~04/01/2013~ -~36024~^~406~^6.733^3^0.034^~1~^~A~^^^1^6.690^6.800^2^6.588^6.879^~2, 3~^~04/01/2013~ -~36024~^~410~^1.405^2^^~1~^~A~^^^1^1.360^1.450^1^^^^~04/01/2013~ -~36024~^~415~^0.487^3^0.007^~1~^~A~^^^1^0.477^0.500^2^0.457^0.516^~2, 3~^~04/01/2013~ -~36024~^~501~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~502~^0.600^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~503~^0.770^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~504~^1.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~505~^2.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~506~^0.480^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~507~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~508~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~509~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~510~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~511~^1.240^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~512~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~513~^0.890^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~514~^1.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~515~^3.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~516~^0.800^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~517~^1.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~518~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36024~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36024~^~605~^0.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~606~^2.763^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~607~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.005^0.009^~1, 2, 3~^~04/01/2013~ -~36024~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36024~^~610~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36024~^~611~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.005^2^-0.002^0.008^~1, 2, 3~^~04/01/2013~ -~36024~^~612~^0.020^3^0.003^~1~^~A~^^^1^0.016^0.026^2^0.006^0.033^~2, 3~^~04/01/2013~ -~36024~^~613~^1.667^3^0.021^~1~^~A~^^^1^1.631^1.705^2^1.575^1.759^~2, 3~^~04/01/2013~ -~36024~^~614~^0.921^3^0.014^~1~^~A~^^^1^0.897^0.946^2^0.861^0.982^~2, 3~^~04/01/2013~ -~36024~^~615~^0.049^3^0.001^~1~^~A~^^^1^0.047^0.051^2^0.044^0.054^~2, 3~^~04/01/2013~ -~36024~^~617~^3.227^3^0.033^~1~^~AS~^^^1^3.162^3.273^2^3.083^3.371^~2, 3~^~04/01/2013~ -~36024~^~618~^6.927^3^0.241^~1~^~AS~^^^1^6.454^7.241^2^5.891^7.963^~2, 3~^~04/01/2013~ -~36024~^~619~^0.894^3^0.049^~1~^~AS~^^^1^0.796^0.945^2^0.684^1.104^~2, 3~^~04/01/2013~ -~36024~^~620~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.034^2^0.028^0.036^~2, 3~^~04/01/2013~ -~36024~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.001^0.005^2^-0.002^0.008^~1, 2, 3~^~04/01/2013~ -~36024~^~624~^0.051^3^0.002^~1~^~A~^^^1^0.048^0.054^2^0.043^0.058^~2, 3~^~04/01/2013~ -~36024~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36024~^~626~^0.038^3^0.002^~1~^~AS~^^^1^0.036^0.042^2^0.029^0.047^~2, 3~^~04/01/2013~ -~36024~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~628~^0.046^3^0.001^~1~^~A~^^^1^0.044^0.048^2^0.040^0.051^~2, 3~^~04/01/2013~ -~36024~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36024~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36024~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36024~^~645~^3.319^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~646~^7.891^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36024~^~653~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~2, 3~^~04/01/2013~ -~36024~^~654~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~04/01/2013~ -~36024~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~663~^0.031^3^0.002^~1~^~A~^^^1^0.027^0.034^2^0.022^0.040^~2, 3~^~04/01/2013~ -~36024~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~665~^0.092^3^0.008^~1~^~A~^^^1^0.082^0.108^2^0.056^0.127^~2, 3~^~04/01/2013~ -~36024~^~670~^0.019^3^0.002^~1~^~A~^^^1^0.015^0.023^2^0.009^0.029^~2, 3~^~04/01/2013~ -~36024~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~672~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~36024~^~673~^0.038^3^0.002^~1~^~A~^^^1^0.036^0.042^2^0.029^0.047^~2, 3~^~04/01/2013~ -~36024~^~674~^3.196^3^0.034^~1~^~A~^^^1^3.130^3.239^2^3.052^3.340^~2, 3~^~04/01/2013~ -~36024~^~675~^6.816^3^0.250^~1~^~A~^^^1^6.323^7.136^2^5.739^7.893^~2, 3~^~04/01/2013~ -~36024~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36024~^~685~^0.068^3^0.004^~1~^~A~^^^1^0.060^0.075^2^0.049^0.086^~2, 3~^~04/01/2013~ -~36024~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~36024~^~689~^0.009^3^0.001^~1~^~AS~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~04/01/2013~ -~36024~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~695~^0.092^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36024~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~851~^0.826^3^0.052^~1~^~A~^^^1^0.721^0.880^2^0.600^1.052^~2, 3~^~04/01/2013~ -~36024~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36024~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.011^2^0.004^0.014^~2, 3~^~04/01/2013~ -~36024~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36024~^~858~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~04/01/2013~ -~36025~^~312~^0.019^6^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~315~^0.144^6^0.025^~1~^~A~^^^1^0.072^0.256^5^0.080^0.208^~2, 3~^~04/01/2013~ -~36025~^~404~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2013~ -~36025~^~405~^0.052^3^0.001^~1~^~A~^^^1^0.050^0.054^2^0.047^0.057^~2, 3~^~04/01/2013~ -~36025~^~406~^0.280^3^0.023^~1~^~A~^^^1^0.240^0.320^2^0.181^0.379^~2, 3~^~04/01/2013~ -~36025~^~410~^0.255^2^^~1~^~A~^^^1^0.240^0.270^1^^^^~04/01/2013~ -~36025~^~415~^0.125^3^0.011^~1~^~A~^^^1^0.114^0.147^2^0.079^0.172^~2, 3~^~04/01/2013~ -~36025~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~502~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~503~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~504~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~505~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~506~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~507~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~508~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~509~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~510~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~512~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~513~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~514~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~515~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~517~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~518~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36025~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36025~^~605~^0.085^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~606~^2.039^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36025~^~610~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~36025~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36025~^~612~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.007^0.015^~2, 3~^~04/01/2013~ -~36025~^~613~^1.344^3^0.122^~1~^~A~^^^1^1.122^1.542^2^0.820^1.869^~2, 3~^~04/01/2013~ -~36025~^~614~^0.560^3^0.050^~1~^~A~^^^1^0.469^0.642^2^0.344^0.775^~2, 3~^~04/01/2013~ -~36025~^~615~^0.043^3^0.004^~1~^~A~^^^1^0.035^0.050^2^0.024^0.062^~2, 3~^~04/01/2013~ -~36025~^~617~^2.668^3^0.237^~1~^~AS~^^^1^2.229^3.042^2^1.648^3.687^~2, 3~^~04/01/2013~ -~36025~^~618~^6.540^3^0.628^~1~^~AS~^^^1^5.382^7.538^2^3.840^9.240^~2, 3~^~04/01/2013~ -~36025~^~619~^0.897^3^0.080^~1~^~AS~^^^1^0.751^1.026^2^0.553^1.240^~2, 3~^~04/01/2013~ -~36025~^~620~^0.012^3^0.002^~1~^~A~^^^1^0.009^0.015^2^0.005^0.020^~2, 3~^~04/01/2013~ -~36025~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~624~^0.044^3^0.004^~1~^~A~^^^1^0.036^0.051^2^0.025^0.063^~2, 3~^~04/01/2013~ -~36025~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~626~^0.017^3^0.001^~1~^~AS~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~04/01/2013~ -~36025~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36025~^~628~^0.059^3^0.017^~1~^~A~^^^1^0.038^0.093^2^-0.014^0.133^~2, 3~^~04/01/2013~ -~36025~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~630~^0.002^3^0.002^~1~^~AS~^^^1^0.000^0.005^2^-0.006^0.009^~2, 3~^~04/01/2013~ -~36025~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~645~^2.752^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~646~^7.458^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36025~^~653~^0.013^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.019^~2, 3~^~04/01/2013~ -~36025~^~654~^0.017^3^0.002^~1~^~A~^^^1^0.014^0.020^2^0.010^0.024^~2, 3~^~04/01/2013~ -~36025~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36025~^~663~^0.006^3^0.002^~1~^~A~^^^1^0.002^0.009^2^-0.003^0.016^~1, 2, 3~^~04/01/2013~ -~36025~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36025~^~665~^0.076^3^0.010^~1~^~A~^^^1^0.062^0.096^2^0.032^0.120^~2, 3~^~04/01/2013~ -~36025~^~670~^0.015^3^0.002^~1~^~A~^^^1^0.011^0.018^2^0.006^0.023^~2, 3~^~04/01/2013~ -~36025~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~672~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~36025~^~673~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.013^0.021^~2, 3~^~04/01/2013~ -~36025~^~674~^2.661^3^0.235^~1~^~A~^^^1^2.227^3.034^2^1.650^3.672^~2, 3~^~04/01/2013~ -~36025~^~675~^6.449^3^0.616^~1~^~A~^^^1^5.309^7.424^2^3.798^9.100^~2, 3~^~04/01/2013~ -~36025~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36025~^~685~^0.066^3^0.010^~1~^~A~^^^1^0.050^0.085^2^0.021^0.110^~2, 3~^~04/01/2013~ -~36025~^~687~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36025~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~36025~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~695~^0.077^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36025~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~851~^0.831^3^0.070^~1~^~A~^^^1^0.701^0.941^2^0.530^1.132^~2, 3~^~04/01/2013~ -~36025~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36025~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36025~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36025~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~312~^0.087^6^0.001^~1~^~A~^^^1^0.083^0.089^5^0.084^0.090^~2, 3~^~04/01/2013~ -~36026~^~315~^0.531^6^0.008^~1~^~A~^^^1^0.499^0.560^5^0.509^0.553^~2, 3~^~04/01/2013~ -~36026~^~404~^0.123^3^0.003^~1~^~A~^^^1^0.120^0.130^2^0.109^0.138^~2, 3~^~04/01/2013~ -~36026~^~405~^0.073^3^0.003^~1~^~A~^^^1^0.068^0.078^2^0.060^0.085^~2, 3~^~04/01/2013~ -~36026~^~406~^0.860^3^0.047^~1~^~A~^^^1^0.790^0.950^2^0.657^1.063^~2, 3~^~04/01/2013~ -~36026~^~410~^0.355^2^^~1~^~A~^^^1^0.350^0.360^1^^^^~04/01/2013~ -~36026~^~415~^0.084^3^0.002^~1~^~A~^^^1^0.081^0.087^2^0.077^0.091^~2, 3~^~04/01/2013~ -~36026~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~502~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~503~^0.160^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~504~^0.350^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~505~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~506~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~508~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~509~^0.110^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~510~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~511~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~512~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~513~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~514~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~515~^1.490^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~516~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~517~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~518~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36026~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36026~^~605~^0.202^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~606~^2.941^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~609~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.010^2^-0.002^0.014^~2, 3~^~04/01/2013~ -~36026~^~610~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~04/01/2013~ -~36026~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36026~^~612~^0.016^3^0.002^~1~^~A~^^^1^0.013^0.021^2^0.006^0.027^~2, 3~^~04/01/2013~ -~36026~^~613~^1.763^3^0.017^~1~^~A~^^^1^1.738^1.796^2^1.690^1.837^~2, 3~^~04/01/2013~ -~36026~^~614~^1.000^3^0.023^~1~^~A~^^^1^0.955^1.027^2^0.903^1.096^~2, 3~^~04/01/2013~ -~36026~^~615~^0.054^3^0.001^~1~^~A~^^^1^0.052^0.055^2^0.050^0.057^~2, 3~^~04/01/2013~ -~36026~^~617~^3.542^3^0.038^~1~^~AS~^^^1^3.477^3.610^2^3.376^3.707^~2, 3~^~04/01/2013~ -~36026~^~618~^7.673^3^0.268^~1~^~AS~^^^1^7.153^8.045^2^6.520^8.826^~2, 3~^~04/01/2013~ -~36026~^~619~^0.985^3^0.068^~1~^~AS~^^^1^0.861^1.097^2^0.691^1.280^~2, 3~^~04/01/2013~ -~36026~^~620~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~36026~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~624~^0.052^3^0.002^~1~^~A~^^^1^0.047^0.055^2^0.041^0.062^~2, 3~^~04/01/2013~ -~36026~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~626~^0.024^3^0.002^~1~^~AS~^^^1^0.022^0.028^2^0.016^0.032^~2, 3~^~04/01/2013~ -~36026~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~628~^0.046^3^0.002^~1~^~A~^^^1^0.044^0.049^2^0.039^0.052^~2, 3~^~04/01/2013~ -~36026~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~630~^0.010^3^0.002^~1~^~AS~^^^1^0.007^0.014^2^0.000^0.019^~2, 3~^~04/01/2013~ -~36026~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~645~^3.630^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~646~^8.675^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36026~^~653~^0.018^3^0.000^~1~^~A~^^^1^0.017^0.018^2^0.016^0.019^~2, 3~^~04/01/2013~ -~36026~^~654~^0.020^3^0.000^~1~^~A~^^^1^0.019^0.020^2^0.018^0.021^~2, 3~^~04/01/2013~ -~36026~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36026~^~663~^0.094^3^0.001^~1~^~A~^^^1^0.093^0.095^2^0.092^0.096^~2, 3~^~04/01/2013~ -~36026~^~664~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36026~^~665~^0.103^3^0.016^~1~^~A~^^^1^0.072^0.127^2^0.033^0.173^~2, 3~^~04/01/2013~ -~36026~^~670~^0.024^3^0.003^~1~^~A~^^^1^0.018^0.028^2^0.011^0.037^~2, 3~^~04/01/2013~ -~36026~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~672~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.001^0.014^~2, 3~^~04/01/2013~ -~36026~^~673~^0.023^3^0.002^~1~^~A~^^^1^0.020^0.028^2^0.013^0.034^~2, 3~^~04/01/2013~ -~36026~^~674~^3.448^3^0.038^~1~^~A~^^^1^3.383^3.515^2^3.283^3.612^~2, 3~^~04/01/2013~ -~36026~^~675~^7.547^3^0.285^~1~^~A~^^^1^6.998^7.955^2^6.320^8.773^~2, 3~^~04/01/2013~ -~36026~^~676~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.009^2^-0.001^0.013^~2, 3~^~04/01/2013~ -~36026~^~685~^0.069^3^0.009^~1~^~A~^^^1^0.051^0.082^2^0.029^0.109^~2, 3~^~04/01/2013~ -~36026~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2013~ -~36026~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36026~^~693~^0.099^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~695~^0.103^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36026~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~851~^0.916^3^0.077^~1~^~A~^^^1^0.779^1.046^2^0.584^1.248^~2, 3~^~04/01/2013~ -~36026~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36026~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36026~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~312~^0.066^6^0.001^~1~^~A~^^^1^0.061^0.070^5^0.062^0.069^~2, 3~^~04/01/2013~ -~36027~^~315~^0.228^6^0.008^~1~^~A~^^^1^0.196^0.248^5^0.206^0.250^~2, 3~^~04/01/2013~ -~36027~^~404~^0.087^3^0.009^~1~^~A~^^^1^0.070^0.100^2^0.049^0.125^~2, 3~^~04/01/2013~ -~36027~^~405~^0.167^3^0.013^~1~^~A~^^^1^0.140^0.180^2^0.109^0.224^~2, 3~^~04/01/2013~ -~36027~^~406~^8.073^3^0.307^~1~^~A~^^^1^7.570^8.630^2^6.752^9.395^~2, 3~^~04/01/2013~ -~36027~^~410~^1.350^2^^~1~^~A~^^^1^1.030^1.670^1^^^^~04/01/2013~ -~36027~^~415~^0.467^3^0.028^~1~^~A~^^^1^0.416^0.511^2^0.348^0.586^~2, 3~^~04/01/2013~ -~36027~^~501~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~502~^0.630^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~503~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~504~^1.480^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~505~^2.210^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~506~^0.490^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~507~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~508~^0.700^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~509~^0.530^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~510~^0.810^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~511~^1.230^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~512~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~513~^0.900^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~514~^1.310^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~515~^3.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~516~^0.800^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~517~^1.130^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~518~^0.720^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36027~^~605~^0.125^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~606~^2.585^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.009^~2, 3~^~04/01/2013~ -~36027~^~610~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36027~^~611~^0.013^3^0.003^~1~^~A~^^^1^0.009^0.018^2^0.002^0.024^~2, 3~^~04/01/2013~ -~36027~^~612~^0.024^3^0.003^~1~^~A~^^^1^0.019^0.027^2^0.013^0.036^~2, 3~^~04/01/2013~ -~36027~^~613~^1.592^3^0.084^~1~^~A~^^^1^1.435^1.722^2^1.231^1.954^~2, 3~^~04/01/2013~ -~36027~^~614~^0.820^3^0.040^~1~^~A~^^^1^0.751^0.888^2^0.650^0.991^~2, 3~^~04/01/2013~ -~36027~^~615~^0.045^3^0.002^~1~^~A~^^^1^0.041^0.047^2^0.037^0.053^~2, 3~^~04/01/2013~ -~36027~^~617~^3.106^3^0.155^~1~^~AS~^^^1^2.801^3.303^2^2.441^3.770^~2, 3~^~04/01/2013~ -~36027~^~618~^6.209^3^0.222^~1~^~AS~^^^1^5.830^6.599^2^5.253^7.164^~2, 3~^~04/01/2013~ -~36027~^~619~^0.831^3^0.055^~1~^~AS~^^^1^0.752^0.938^2^0.593^1.070^~2, 3~^~04/01/2013~ -~36027~^~620~^0.043^3^0.001^~1~^~A~^^^1^0.041^0.045^2^0.038^0.048^~2, 3~^~04/01/2013~ -~36027~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~36027~^~624~^0.044^3^0.002^~1~^~A~^^^1^0.040^0.048^2^0.033^0.054^~2, 3~^~04/01/2013~ -~36027~^~625~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~626~^0.042^3^0.002^~1~^~AS~^^^1^0.039^0.045^2^0.035^0.049^~2, 3~^~04/01/2013~ -~36027~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~628~^0.041^3^0.003^~1~^~A~^^^1^0.036^0.044^2^0.030^0.052^~2, 3~^~04/01/2013~ -~36027~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~36027~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36027~^~645~^3.200^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~646~^7.123^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2013~ -~36027~^~653~^0.016^3^0.001^~1~^~A~^^^1^0.014^0.018^2^0.011^0.021^~2, 3~^~04/01/2013~ -~36027~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.012^0.022^~2, 3~^~04/01/2013~ -~36027~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~663~^0.042^3^0.007^~1~^~A~^^^1^0.033^0.056^2^0.011^0.073^~2, 3~^~04/01/2013~ -~36027~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~665~^0.083^3^0.008^~1~^~A~^^^1^0.067^0.092^2^0.048^0.118^~2, 3~^~04/01/2013~ -~36027~^~670~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.022^2^0.012^0.026^~2, 3~^~04/01/2013~ -~36027~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~672~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36027~^~673~^0.042^3^0.002^~1~^~A~^^^1^0.039^0.045^2^0.035^0.049^~2, 3~^~04/01/2013~ -~36027~^~674~^3.064^3^0.162^~1~^~A~^^^1^2.745^3.270^2^2.368^3.759^~2, 3~^~04/01/2013~ -~36027~^~675~^6.107^3^0.227^~1~^~A~^^^1^5.723^6.510^2^5.128^7.085^~2, 3~^~04/01/2013~ -~36027~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36027~^~685~^0.063^3^0.001^~1~^~A~^^^1^0.062^0.066^2^0.057^0.069^~2, 3~^~04/01/2013~ -~36027~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2013~ -~36027~^~689~^0.011^3^0.001^~1~^~AS~^^^1^0.009^0.013^2^0.005^0.016^~2, 3~^~04/01/2013~ -~36027~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~695~^0.083^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36027~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~851~^0.768^3^0.056^~1~^~A~^^^1^0.690^0.876^2^0.528^1.008^~2, 3~^~04/01/2013~ -~36027~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36027~^~853~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~36027~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36027~^~858~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~04/01/2013~ -~36028~^~312~^0.019^6^0.000^~1~^~A~^^^1^0.019^0.019^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~315~^0.151^6^0.019^~1~^~A~^^^1^0.089^0.199^5^0.103^0.199^~2, 3~^~04/01/2013~ -~36028~^~404~^0.027^3^0.003^~1~^~A~^^^1^0.020^0.030^2^0.012^0.041^~2, 3~^~04/01/2013~ -~36028~^~405~^0.059^3^0.001^~1~^~A~^^^1^0.057^0.061^2^0.053^0.064^~2, 3~^~04/01/2013~ -~36028~^~406~^0.263^3^0.035^~1~^~A~^^^1^0.200^0.320^2^0.114^0.413^~2, 3~^~04/01/2013~ -~36028~^~410~^0.315^2^^~1~^~A~^^^1^0.310^0.320^1^^^^~04/01/2013~ -~36028~^~415~^0.102^3^0.007^~1~^~A~^^^1^0.090^0.114^2^0.072^0.132^~2, 3~^~04/01/2013~ -~36028~^~501~^0.010^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~502~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~503~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~504~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~505~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~506~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~507~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~508~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~509~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~510~^0.050^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~511~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~512~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~513~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~514~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~515~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~516~^0.030^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~517~^0.007^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~518~^0.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36028~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36028~^~605~^0.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~606~^2.344^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36028~^~611~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36028~^~612~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.007^0.022^~2, 3~^~04/01/2013~ -~36028~^~613~^1.562^3^0.118^~1~^~A~^^^1^1.339^1.739^2^1.055^2.069^~2, 3~^~04/01/2013~ -~36028~^~614~^0.630^3^0.047^~1~^~A~^^^1^0.538^0.691^2^0.428^0.831^~2, 3~^~04/01/2013~ -~36028~^~615~^0.047^3^0.003^~1~^~A~^^^1^0.041^0.053^2^0.032^0.062^~2, 3~^~04/01/2013~ -~36028~^~617~^3.107^3^0.231^~1~^~AS~^^^1^2.667^3.448^2^2.114^4.100^~2, 3~^~04/01/2013~ -~36028~^~618~^7.288^3^0.520^~1~^~AS~^^^1^6.309^8.083^2^5.049^9.527^~2, 3~^~04/01/2013~ -~36028~^~619~^1.118^3^0.081^~1~^~AS~^^^1^0.977^1.259^2^0.768^1.468^~2, 3~^~04/01/2013~ -~36028~^~620~^0.015^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.020^~2, 3~^~04/01/2013~ -~36028~^~621~^0.003^3^0.001^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36028~^~624~^0.046^3^0.003^~1~^~A~^^^1^0.041^0.052^2^0.033^0.060^~2, 3~^~04/01/2013~ -~36028~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~626~^0.023^3^0.002^~1~^~AS~^^^1^0.020^0.026^2^0.016^0.031^~2, 3~^~04/01/2013~ -~36028~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~628~^0.047^3^0.003^~1~^~A~^^^1^0.042^0.052^2^0.034^0.059^~2, 3~^~04/01/2013~ -~36028~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~630~^0.011^3^0.000^~1~^~AS~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~04/01/2013~ -~36028~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~645~^3.197^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~646~^8.432^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2013~ -~36028~^~653~^0.016^3^0.001^~1~^~A~^^^1^0.013^0.017^2^0.010^0.021^~2, 3~^~04/01/2013~ -~36028~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.012^0.023^~2, 3~^~04/01/2013~ -~36028~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~663~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.016^~2, 3~^~04/01/2013~ -~36028~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~665~^0.035^3^0.009^~1~^~A~^^^1^0.020^0.052^2^-0.005^0.075^~2, 3~^~04/01/2013~ -~36028~^~670~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~36028~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~04/01/2013~ -~36028~^~673~^0.023^3^0.002^~1~^~A~^^^1^0.020^0.026^2^0.016^0.031^~2, 3~^~04/01/2013~ -~36028~^~674~^3.096^3^0.230^~1~^~A~^^^1^2.658^3.437^2^2.106^4.086^~2, 3~^~04/01/2013~ -~36028~^~675~^7.242^3^0.515^~1~^~A~^^^1^6.279^8.038^2^5.028^9.456^~2, 3~^~04/01/2013~ -~36028~^~676~^0.011^3^0.000^~1~^~A~^^^1^0.011^0.012^2^0.010^0.013^~2, 3~^~04/01/2013~ -~36028~^~685~^0.022^3^0.013^~1~^~A~^^^1^0.000^0.044^2^-0.032^0.077^~1, 2, 3~^~04/01/2013~ -~36028~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2013~ -~36028~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~36028~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~695~^0.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36028~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~851~^1.096^3^0.076^~1~^~A~^^^1^0.977^1.236^2^0.771^1.421^~2, 3~^~04/01/2013~ -~36028~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~853~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36028~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36028~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~312~^0.049^6^0.001^~1~^~A~^^^1^0.045^0.054^5^0.046^0.053^~2, 3~^~04/01/2013~ -~36029~^~315~^0.161^6^0.004^~1~^~A~^^^1^0.148^0.170^5^0.151^0.172^~2, 3~^~04/01/2013~ -~36029~^~404~^0.067^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.052^0.081^~2, 3~^~04/01/2013~ -~36029~^~405~^0.100^3^0.000^~1~^~A~^^^1^0.100^0.100^^^^~2, 3~^~04/01/2013~ -~36029~^~406~^2.660^3^0.154^~1~^~A~^^^1^2.380^2.910^2^1.999^3.321^~2, 3~^~04/01/2013~ -~36029~^~410~^0.315^2^^~1~^~A~^^^1^0.300^0.330^1^^^^~04/01/2013~ -~36029~^~415~^0.260^3^0.048^~1~^~A~^^^1^0.166^0.326^2^0.052^0.468^~2, 3~^~04/01/2013~ -~36029~^~501~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~502~^0.470^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~503~^0.570^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~504~^1.060^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~505~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~506~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~507~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~508~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~509~^0.420^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~510~^0.660^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~511~^0.810^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~512~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~513~^0.730^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~514~^1.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~515~^2.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~516~^0.610^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~517~^0.760^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~518~^0.580^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36029~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~606~^2.139^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~609~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36029~^~610~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36029~^~611~^0.008^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.000^0.016^~2, 3~^~04/01/2013~ -~36029~^~612~^0.022^3^0.002^~1~^~A~^^^1^0.019^0.026^2^0.013^0.031^~2, 3~^~04/01/2013~ -~36029~^~613~^1.326^3^0.036^~1~^~A~^^^1^1.254^1.367^2^1.170^1.482^~2, 3~^~04/01/2013~ -~36029~^~614~^0.665^3^0.034^~1~^~A~^^^1^0.606^0.724^2^0.519^0.811^~2, 3~^~04/01/2013~ -~36029~^~615~^0.038^3^0.001^~1~^~A~^^^1^0.035^0.039^2^0.032^0.043^~2, 3~^~04/01/2013~ -~36029~^~617~^2.535^3^0.081^~1~^~AS~^^^1^2.430^2.694^2^2.188^2.882^~2, 3~^~04/01/2013~ -~36029~^~618~^5.226^3^0.225^~1~^~AS~^^^1^4.871^5.643^2^4.259^6.194^~2, 3~^~04/01/2013~ -~36029~^~619~^0.690^3^0.050^~1~^~AS~^^^1^0.620^0.787^2^0.474^0.905^~2, 3~^~04/01/2013~ -~36029~^~620~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2013~ -~36029~^~621~^0.110^3^0.006^~1~^~A~^^^1^0.099^0.120^2^0.083^0.136^~2, 3~^~04/01/2013~ -~36029~^~624~^0.037^3^0.002^~1~^~A~^^^1^0.034^0.041^2^0.027^0.046^~2, 3~^~04/01/2013~ -~36029~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36029~^~626~^0.022^3^0.002^~1~^~AS~^^^1^0.018^0.026^2^0.012^0.032^~2, 3~^~04/01/2013~ -~36029~^~627~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2013~ -~36029~^~628~^0.043^3^0.003^~1~^~A~^^^1^0.037^0.049^2^0.028^0.057^~2, 3~^~04/01/2013~ -~36029~^~629~^0.056^3^0.002^~1~^~A~^^^1^0.053^0.058^2^0.049^0.063^~2, 3~^~04/01/2013~ -~36029~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~36029~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36029~^~645~^2.608^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~646~^6.110^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36029~^~653~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~2, 3~^~04/01/2013~ -~36029~^~654~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.010^0.018^~2, 3~^~04/01/2013~ -~36029~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36029~^~663~^0.035^3^0.006^~1~^~A~^^^1^0.024^0.043^2^0.011^0.059^~2, 3~^~04/01/2013~ -~36029~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~665~^0.076^3^0.005^~1~^~A~^^^1^0.067^0.083^2^0.056^0.097^~2, 3~^~04/01/2013~ -~36029~^~670~^0.018^3^0.002^~1~^~A~^^^1^0.015^0.022^2^0.010^0.027^~2, 3~^~04/01/2013~ -~36029~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36029~^~673~^0.021^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.014^0.028^~2, 3~^~04/01/2013~ -~36029~^~674~^2.500^3^0.080^~1~^~A~^^^1^2.387^2.656^2^2.154^2.846^~2, 3~^~04/01/2013~ -~36029~^~675~^5.132^3^0.227^~1~^~A~^^^1^4.777^5.554^2^4.156^6.108^~2, 3~^~04/01/2013~ -~36029~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36029~^~685~^0.058^3^0.005^~1~^~A~^^^1^0.050^0.066^2^0.038^0.077^~2, 3~^~04/01/2013~ -~36029~^~687~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2013~ -~36029~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36029~^~693~^0.036^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~695~^0.076^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36029~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~851~^0.632^3^0.046^~1~^~A~^^^1^0.570^0.721^2^0.436^0.828^~2, 3~^~04/01/2013~ -~36029~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36029~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~312~^0.066^6^0.004^~1~^~A~^^^1^0.053^0.079^5^0.055^0.077^~2, 3~^~04/01/2013~ -~36030~^~315~^0.168^6^0.007^~1~^~A~^^^1^0.150^0.197^5^0.150^0.186^~2, 3~^~04/01/2013~ -~36030~^~404~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~405~^0.048^3^0.001^~1~^~A~^^^1^0.046^0.050^2^0.042^0.053^~2, 3~^~04/01/2013~ -~36030~^~406~^2.170^3^0.175^~1~^~A~^^^1^1.990^2.520^2^1.417^2.923^~2, 3~^~04/01/2013~ -~36030~^~410~^0.455^2^^~1~^~A~^^^1^0.450^0.460^1^^^^~04/01/2013~ -~36030~^~415~^0.203^3^0.021^~1~^~A~^^^1^0.174^0.244^2^0.112^0.294^~2, 3~^~04/01/2013~ -~36030~^~605~^0.048^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~606~^1.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36030~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~609~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36030~^~610~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36030~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~612~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~36030~^~613~^0.964^3^0.054^~1~^~A~^^^1^0.899^1.072^2^0.730^1.198^~2, 3~^~04/01/2013~ -~36030~^~614~^0.618^3^0.029^~1~^~A~^^^1^0.560^0.652^2^0.493^0.742^~2, 3~^~04/01/2013~ -~36030~^~615~^0.031^3^0.001^~1~^~A~^^^1^0.030^0.033^2^0.027^0.035^~2, 3~^~04/01/2013~ -~36030~^~617~^1.993^3^0.100^~1~^~AS~^^^1^1.826^2.173^2^1.560^2.425^~2, 3~^~04/01/2013~ -~36030~^~618~^4.372^3^0.291^~1~^~AS~^^^1^4.012^4.947^2^3.122^5.622^~2, 3~^~04/01/2013~ -~36030~^~619~^0.651^3^0.030^~1~^~AS~^^^1^0.617^0.710^2^0.523^0.779^~2, 3~^~04/01/2013~ -~36030~^~620~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36030~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~624~^0.029^3^0.003^~1~^~A~^^^1^0.026^0.034^2^0.018^0.040^~2, 3~^~04/01/2013~ -~36030~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~626~^0.010^3^0.001^~1~^~AS~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36030~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36030~^~628~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.025^2^0.019^0.027^~2, 3~^~04/01/2013~ -~36030~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~630~^0.004^3^0.002^~1~^~AS~^^^1^0.000^0.007^2^-0.005^0.013^~2, 3~^~04/01/2013~ -~36030~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~645~^2.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~646~^5.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36030~^~653~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.017^~2, 3~^~04/01/2013~ -~36030~^~654~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.017^~2, 3~^~04/01/2013~ -~36030~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~663~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.018^2^0.004^0.023^~2, 3~^~04/01/2013~ -~36030~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36030~^~665~^0.033^3^0.005^~1~^~A~^^^1^0.028^0.043^2^0.011^0.055^~2, 3~^~04/01/2013~ -~36030~^~670~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36030~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36030~^~673~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36030~^~674~^1.979^3^0.100^~1~^~A~^^^1^1.815^2.161^2^1.547^2.410^~2, 3~^~04/01/2013~ -~36030~^~675~^4.331^3^0.284^~1~^~A~^^^1^3.978^4.894^2^3.108^5.555^~2, 3~^~04/01/2013~ -~36030~^~676~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.006^0.012^~1, 2, 3~^~04/01/2013~ -~36030~^~685~^0.027^3^0.007^~1~^~A~^^^1^0.018^0.040^2^-0.001^0.055^~2, 3~^~04/01/2013~ -~36030~^~687~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2013~ -~36030~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36030~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36030~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~851~^0.623^3^0.023^~1~^~A~^^^1^0.599^0.670^2^0.523^0.724^~2, 3~^~04/01/2013~ -~36030~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36030~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~312~^0.088^6^0.003^~1~^~A~^^^1^0.079^0.095^5^0.081^0.095^~2, 3~^~04/01/2013~ -~36031~^~315~^0.397^6^0.009^~1~^~A~^^^1^0.372^0.424^5^0.375^0.420^~2, 3~^~04/01/2013~ -~36031~^~404~^0.120^3^0.006^~1~^~A~^^^1^0.110^0.130^2^0.095^0.145^~2, 3~^~04/01/2013~ -~36031~^~405~^0.070^3^0.003^~1~^~A~^^^1^0.065^0.073^2^0.059^0.082^~2, 3~^~04/01/2013~ -~36031~^~406~^0.863^3^0.035^~1~^~A~^^^1^0.810^0.930^2^0.712^1.015^~2, 3~^~04/01/2013~ -~36031~^~410~^0.380^2^^~1~^~A~^^^1^0.380^0.380^^^^^~04/01/2013~ -~36031~^~415~^0.089^3^0.004^~1~^~A~^^^1^0.084^0.096^2^0.073^0.105^~2, 3~^~04/01/2013~ -~36031~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~502~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~503~^0.177^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~504~^0.364^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~505~^0.138^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~506~^0.079^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~507~^0.128^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~508~^0.246^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~509~^0.108^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~510~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~511~^0.236^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~512~^0.118^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~513~^0.167^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~514~^0.236^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~515~^1.742^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~516~^0.187^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~517~^0.601^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~518~^0.216^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36031~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36031~^~605~^0.207^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~606~^3.729^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~609~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~36031~^~610~^0.011^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~04/01/2013~ -~36031~^~611~^0.014^3^0.003^~1~^~A~^^^1^0.008^0.018^2^0.001^0.027^~2, 3~^~04/01/2013~ -~36031~^~612~^0.030^3^0.002^~1~^~A~^^^1^0.025^0.033^2^0.019^0.040^~2, 3~^~04/01/2013~ -~36031~^~613~^2.244^3^0.027^~1~^~A~^^^1^2.191^2.275^2^2.130^2.358^~2, 3~^~04/01/2013~ -~36031~^~614~^1.237^3^0.014^~1~^~A~^^^1^1.217^1.264^2^1.176^1.297^~2, 3~^~04/01/2013~ -~36031~^~615~^0.068^3^0.001^~1~^~A~^^^1^0.066^0.071^2^0.062^0.075^~2, 3~^~04/01/2013~ -~36031~^~617~^4.481^3^0.178^~1~^~AS~^^^1^4.126^4.679^2^3.716^5.245^~2, 3~^~04/01/2013~ -~36031~^~618~^9.299^3^0.127^~1~^~AS~^^^1^9.084^9.524^2^8.752^9.846^~2, 3~^~04/01/2013~ -~36031~^~619~^1.240^3^0.040^~1~^~AS~^^^1^1.170^1.310^2^1.066^1.413^~2, 3~^~04/01/2013~ -~36031~^~620~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2013~ -~36031~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~624~^0.063^3^0.001^~1~^~A~^^^1^0.060^0.065^2^0.056^0.069^~2, 3~^~04/01/2013~ -~36031~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36031~^~626~^0.032^3^0.005^~1~^~AS~^^^1^0.026^0.041^2^0.011^0.052^~2, 3~^~04/01/2013~ -~36031~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~628~^0.075^3^0.016^~1~^~A~^^^1^0.054^0.107^2^0.005^0.145^~2, 3~^~04/01/2013~ -~36031~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~630~^0.011^3^0.002^~1~^~AS~^^^1^0.008^0.013^2^0.004^0.017^~2, 3~^~04/01/2013~ -~36031~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~645~^4.611^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~646~^10.560^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~652~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36031~^~653~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~04/01/2013~ -~36031~^~654~^0.025^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.021^0.028^~2, 3~^~04/01/2013~ -~36031~^~662~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2013~ -~36031~^~663~^0.064^3^0.015^~1~^~A~^^^1^0.034^0.085^2^-0.002^0.129^~2, 3~^~04/01/2013~ -~36031~^~664~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36031~^~665~^0.137^3^0.025^~1~^~A~^^^1^0.088^0.167^2^0.031^0.243^~2, 3~^~04/01/2013~ -~36031~^~670~^0.033^3^0.001^~1~^~A~^^^1^0.030^0.034^2^0.027^0.039^~2, 3~^~04/01/2013~ -~36031~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~672~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~36031~^~673~^0.030^3^0.003^~1~^~A~^^^1^0.026^0.037^2^0.016^0.045^~2, 3~^~04/01/2013~ -~36031~^~674~^4.417^3^0.163^~1~^~A~^^^1^4.092^4.594^2^3.717^5.117^~2, 3~^~04/01/2013~ -~36031~^~675~^9.130^3^0.106^~1~^~A~^^^1^8.962^9.327^2^8.672^9.587^~2, 3~^~04/01/2013~ -~36031~^~676~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.002^0.010^~2, 3~^~04/01/2013~ -~36031~^~685~^0.100^3^0.008^~1~^~A~^^^1^0.083^0.109^2^0.064^0.136^~2, 3~^~04/01/2013~ -~36031~^~687~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~04/01/2013~ -~36031~^~689~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.003^0.005^~2, 3~^~04/01/2013~ -~36031~^~693~^0.070^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~695~^0.137^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36031~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~851~^1.140^3^0.048^~1~^~A~^^^1^1.061^1.227^2^0.933^1.347^~2, 3~^~04/01/2013~ -~36031~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36031~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36031~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~312~^0.106^6^0.003^~1~^~A~^^^1^0.094^0.117^5^0.098^0.115^~2, 3~^~04/01/2013~ -~36032~^~315~^0.277^6^0.012^~1~^~A~^^^1^0.219^0.300^5^0.246^0.309^~2, 3~^~04/01/2013~ -~36032~^~404~^0.107^3^0.015^~1~^~A~^^^1^0.080^0.130^2^0.044^0.169^~2, 3~^~04/01/2013~ -~36032~^~405~^0.167^3^0.009^~1~^~A~^^^1^0.150^0.180^2^0.129^0.205^~2, 3~^~04/01/2013~ -~36032~^~406~^2.000^3^0.140^~1~^~A~^^^1^1.800^2.270^2^1.397^2.603^~2, 3~^~04/01/2013~ -~36032~^~410~^0.440^2^^~1~^~A~^^^1^0.420^0.460^1^^^^~04/01/2013~ -~36032~^~415~^0.143^3^0.015^~1~^~A~^^^1^0.121^0.171^2^0.079^0.207^~2, 3~^~04/01/2013~ -~36032~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~502~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~503~^0.370^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~504~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~505~^0.560^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~508~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~509~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~510~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~511~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~512~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~513~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~514~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~515~^2.240^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~516~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~517~^0.790^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~518~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~521~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36032~^~605~^0.217^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~606~^3.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~607~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2013~ -~36032~^~608~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36032~^~609~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36032~^~610~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.022^2^0.016^0.024^~2, 3~^~04/01/2013~ -~36032~^~611~^0.022^3^0.003^~1~^~A~^^^1^0.019^0.027^2^0.011^0.033^~2, 3~^~04/01/2013~ -~36032~^~612~^0.199^3^0.021^~1~^~A~^^^1^0.159^0.227^2^0.110^0.288^~2, 3~^~04/01/2013~ -~36032~^~613~^1.824^3^0.145^~1~^~A~^^^1^1.562^2.063^2^1.200^2.448^~2, 3~^~04/01/2013~ -~36032~^~614~^0.916^3^0.081^~1~^~A~^^^1^0.757^1.022^2^0.568^1.263^~2, 3~^~04/01/2013~ -~36032~^~615~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~04/01/2013~ -~36032~^~617~^3.254^3^0.203^~1~^~AS~^^^1^2.873^3.566^2^2.381^4.128^~2, 3~^~04/01/2013~ -~36032~^~618~^1.054^3^0.024^~1~^~AS~^^^1^1.013^1.096^2^0.951^1.157^~2, 3~^~04/01/2013~ -~36032~^~619~^0.085^3^0.007^~1~^~AS~^^^1^0.075^0.099^2^0.054^0.116^~2, 3~^~04/01/2013~ -~36032~^~620~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.012^0.027^~2, 3~^~04/01/2013~ -~36032~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~36032~^~625~^0.041^3^0.006^~1~^~A~^^^1^0.029^0.047^2^0.016^0.066^~2, 3~^~04/01/2013~ -~36032~^~626~^0.210^3^0.020^~1~^~AS~^^^1^0.171^0.238^2^0.123^0.297^~2, 3~^~04/01/2013~ -~36032~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~628~^0.053^3^0.002^~1~^~A~^^^1^0.050^0.057^2^0.043^0.062^~2, 3~^~04/01/2013~ -~36032~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36032~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2013~ -~36032~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36032~^~645~^3.600^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~646~^1.213^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~652~^0.025^3^0.003^~1~^~A~^^^1^0.019^0.028^2^0.012^0.037^~2, 3~^~04/01/2013~ -~36032~^~653~^0.055^3^0.006^~1~^~A~^^^1^0.043^0.062^2^0.029^0.082^~2, 3~^~04/01/2013~ -~36032~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36032~^~662~^0.016^3^0.002^~1~^~A~^^^1^0.012^0.019^2^0.007^0.024^~2, 3~^~04/01/2013~ -~36032~^~663~^0.169^3^0.035^~1~^~A~^^^1^0.108^0.229^2^0.019^0.319^~2, 3~^~04/01/2013~ -~36032~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~665~^0.032^3^0.004^~1~^~A~^^^1^0.024^0.037^2^0.015^0.049^~2, 3~^~04/01/2013~ -~36032~^~670~^0.028^3^0.004^~1~^~A~^^^1^0.021^0.033^2^0.012^0.043^~2, 3~^~04/01/2013~ -~36032~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~672~^0.027^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.019^0.036^~2, 3~^~04/01/2013~ -~36032~^~673~^0.195^3^0.019^~1~^~A~^^^1^0.159^0.222^2^0.114^0.275^~2, 3~^~04/01/2013~ -~36032~^~674~^3.085^3^0.182^~1~^~A~^^^1^2.765^3.396^2^2.301^3.869^~2, 3~^~04/01/2013~ -~36032~^~675~^0.994^3^0.018^~1~^~A~^^^1^0.968^1.029^2^0.916^1.072^~2, 3~^~04/01/2013~ -~36032~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36032~^~687~^0.040^3^0.005^~1~^~A~^^^1^0.031^0.045^2^0.020^0.059^~2, 3~^~04/01/2013~ -~36032~^~689~^0.014^3^0.001^~1~^~AS~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~04/01/2013~ -~36032~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36032~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~851~^0.081^3^0.007^~1~^~A~^^^1^0.072^0.094^2^0.052^0.110^~2, 3~^~04/01/2013~ -~36032~^~852~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36032~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.013^~2, 3~^~04/01/2013~ -~36032~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36032~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~04/01/2013~ -~36033~^~312~^0.044^12^0.001^~1~^~A~^^^2^0.035^0.054^9^0.042^0.046^~2, 3~^~04/01/2013~ -~36033~^~315~^0.129^12^0.003^~1~^~A~^^^2^0.086^0.170^10^0.123^0.135^~2, 3~^~04/01/2013~ -~36033~^~404~^0.060^6^0.002^~1~^~A~^^^2^0.050^0.070^4^0.053^0.067^~2, 3~^~04/01/2013~ -~36033~^~405~^0.096^6^0.001^~1~^~A~^^^2^0.090^0.100^2^0.091^0.102^~2, 3~^~04/01/2013~ -~36033~^~406~^2.475^6^0.094^~1~^~A~^^^2^2.080^2.910^4^2.202^2.748^~2, 3~^~04/01/2013~ -~36033~^~410~^0.358^4^0.017^~1~^~A~^^^2^0.300^0.430^2^0.254^0.461^~2, 3~^~04/01/2013~ -~36033~^~415~^0.231^6^0.024^~1~^~A~^^^2^0.166^0.326^2^0.130^0.332^~2, 3~^~04/01/2013~ -~36033~^~501~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~502~^0.458^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~503~^0.642^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~504~^1.124^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~505~^1.213^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~506~^0.403^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~507~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~508~^0.529^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~509~^0.424^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~510~^0.724^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~511~^0.841^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~512~^0.327^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~513~^0.783^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~514~^1.277^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~515~^2.206^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~516~^0.648^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~517~^0.738^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~518~^0.514^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36033~^~521~^0.004^2^^~1~^~A~^^^2^0.000^0.007^^^^~1~^~04/01/2013~ -~36033~^~605~^0.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~606~^1.876^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~607~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~608~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~609~^0.006^6^0.001^~1~^~A~^^^2^0.004^0.008^2^0.003^0.008^~2, 3~^~04/01/2013~ -~36033~^~610~^0.006^6^0.000^~1~^~A~^^^2^0.005^0.007^3^0.005^0.007^~2, 3~^~04/01/2013~ -~36033~^~611~^0.005^6^0.001^~1~^~A~^^^2^0.000^0.012^3^0.001^0.008^~1, 2, 3~^~04/01/2013~ -~36033~^~612~^0.018^6^0.001^~1~^~A~^^^2^0.012^0.026^3^0.014^0.022^~2, 3~^~04/01/2013~ -~36033~^~613~^1.175^6^0.018^~1~^~A~^^^2^1.016^1.367^2^1.098^1.252^~2, 3~^~04/01/2013~ -~36033~^~614~^0.573^6^0.018^~1~^~A~^^^2^0.460^0.724^2^0.508^0.638^~2, 3~^~04/01/2013~ -~36033~^~615~^0.033^6^0.001^~1~^~A~^^^2^0.028^0.039^3^0.031^0.036^~2, 3~^~04/01/2013~ -~36033~^~617~^2.229^6^0.042^~1~^~AS~^^^2^1.892^2.694^2^2.070^2.389^~2, 3~^~04/01/2013~ -~36033~^~618~^4.541^6^0.121^~1~^~AS~^^^2^3.700^5.643^3^4.121^4.962^~2, 3~^~04/01/2013~ -~36033~^~619~^0.603^6^0.025^~1~^~AS~^^^2^0.500^0.787^2^0.500^0.707^~2, 3~^~04/01/2013~ -~36033~^~620~^0.013^6^0.001^~1~^~A~^^^2^0.011^0.017^2^0.009^0.017^~2, 3~^~04/01/2013~ -~36033~^~621~^0.108^6^0.004^~1~^~A~^^^2^0.098^0.120^4^0.097^0.120^~2, 3~^~04/01/2013~ -~36033~^~624~^0.033^6^0.002^~1~^~A~^^^2^0.025^0.041^4^0.028^0.037^~2, 3~^~04/01/2013~ -~36033~^~625~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36033~^~626~^0.024^6^0.005^~1~^~AS~^^^2^0.015^0.043^2^0.006^0.041^~2, 3~^~04/01/2013~ -~36033~^~627~^0.004^6^0.001^~1~^~A~^^^2^0.000^0.006^3^0.001^0.006^~1, 2, 3~^~04/01/2013~ -~36033~^~628~^0.050^6^0.002^~1~^~A~^^^2^0.037^0.064^4^0.043^0.057^~2, 3~^~04/01/2013~ -~36033~^~629~^0.053^6^0.001^~1~^~A~^^^2^0.046^0.058^4^0.049^0.057^~2, 3~^~04/01/2013~ -~36033~^~630~^0.001^6^0.001^~1~^~AS~^^^2^0.000^0.004^3^-0.001^0.003^~2, 3~^~04/01/2013~ -~36033~^~631~^0.004^6^0.000^~1~^~A~^^^2^0.003^0.006^3^0.003^0.006^~2, 3~^~04/01/2013~ -~36033~^~645~^2.311^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~646~^5.334^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~652~^0.004^6^0.000^~1~^~A~^^^2^0.003^0.005^4^0.003^0.005^~2, 3~^~04/01/2013~ -~36033~^~653~^0.011^6^0.000^~1~^~A~^^^2^0.008^0.014^4^0.010^0.012^~2, 3~^~04/01/2013~ -~36033~^~654~^0.013^6^0.001^~1~^~A~^^^2^0.010^0.015^4^0.011^0.015^~2, 3~^~04/01/2013~ -~36033~^~662~^0.001^6^0.001^~1~^~A~^^^2^0.000^0.003^4^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36033~^~663~^0.028^6^0.004^~1~^~A~^^^2^0.014^0.043^4^0.017^0.040^~2, 3~^~04/01/2013~ -~36033~^~664~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~665~^0.065^6^0.004^~1~^~A~^^^2^0.043^0.083^4^0.052^0.077^~2, 3~^~04/01/2013~ -~36033~^~670~^0.014^6^0.001^~1~^~A~^^^2^0.009^0.022^2^0.010^0.018^~2, 3~^~04/01/2013~ -~36033~^~671~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.002^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36033~^~672~^0.006^6^0.002^~1~^~A~^^^2^0.000^0.010^2^-0.001^0.012^~1, 2, 3~^~04/01/2013~ -~36033~^~673~^0.023^6^0.004^~1~^~A~^^^2^0.015^0.040^2^0.007^0.039^~2, 3~^~04/01/2013~ -~36033~^~674~^2.201^6^0.041^~1~^~A~^^^2^1.873^2.656^2^2.038^2.364^~2, 3~^~04/01/2013~ -~36033~^~675~^4.463^6^0.120^~1~^~A~^^^2^3.646^5.554^3^4.033^4.893^~2, 3~^~04/01/2013~ -~36033~^~676~^0.001^6^0.001^~1~^~A~^^^2^0.000^0.004^3^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36033~^~685~^0.046^6^0.003^~1~^~A~^^^2^0.028^0.066^4^0.038^0.054^~2, 3~^~04/01/2013~ -~36033~^~687~^0.007^6^0.000^~1~^~A~^^^2^0.006^0.007^^^^~2, 3~^~04/01/2013~ -~36033~^~689~^0.000^6^0.000^~1~^~AS~^^^2^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36033~^~693~^0.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~695~^0.065^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36033~^~697~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~851~^0.557^6^0.023^~1~^~A~^^^2^0.472^0.721^2^0.460^0.653^~2, 3~^~04/01/2013~ -~36033~^~852~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~853~^0.000^6^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36033~^~856~^0.001^6^0.001^~1~^~A~^^^2^0.000^0.003^2^-0.002^0.003^~1, 2, 3~^~04/01/2013~ -~36033~^~858~^0.001^6^0.001^~1~^~A~^^^2^0.000^0.004^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36034~^~312~^0.067^24^0.001^~1~^~A~^^^2^0.059^0.080^16^0.064^0.070^~2, 3~^~04/01/2013~ -~36034~^~315~^0.245^24^0.006^~1~^~A~^^^2^0.190^0.310^19^0.232^0.257^~2, 3~^~04/01/2013~ -~36034~^~404~^0.097^12^0.004^~1~^~A~^^^2^0.070^0.120^10^0.088^0.107^~2, 3~^~04/01/2013~ -~36034~^~405~^0.166^12^0.005^~1~^~A~^^^2^0.130^0.190^6^0.153^0.178^~2, 3~^~04/01/2013~ -~36034~^~406~^7.760^12^0.209^~1~^~A~^^^2^6.690^8.710^9^7.291^8.229^~2, 3~^~04/01/2013~ -~36034~^~410~^1.511^8^0.067^~1~^~A~^^^2^1.030^1.680^3^1.302^1.720^~2, 3~^~04/01/2013~ -~36034~^~415~^0.479^12^0.012^~1~^~A~^^^2^0.416^0.544^9^0.451^0.506^~2, 3~^~04/01/2013~ -~36034~^~501~^0.209^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~502~^0.595^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~503~^0.876^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~504~^1.537^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~505~^1.903^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~506~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~507~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~508~^0.745^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~509~^0.527^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~510~^0.947^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~511~^1.236^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~512~^0.706^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~513~^0.996^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~514~^1.473^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~515~^3.228^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~516~^0.828^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~517~^1.178^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~518~^0.674^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36034~^~521~^0.012^4^0.008^~1~^~A~^^^2^0.000^0.040^1^-0.091^0.115^~1, 2, 3~^~04/01/2013~ -~36034~^~605~^0.133^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~606~^2.946^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~607~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.005^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36034~^~608~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~609~^0.007^11^0.001^~1~^~A~^^^2^0.004^0.016^5^0.004^0.009^~2, 3~^~04/01/2013~ -~36034~^~610~^0.006^11^0.000^~1~^~A~^^^2^0.004^0.010^7^0.005^0.007^~2, 3~^~04/01/2013~ -~36034~^~611~^0.006^11^0.001^~1~^~A~^^^2^0.001^0.018^5^0.003^0.010^~1, 2, 3~^~04/01/2013~ -~36034~^~612~^0.022^11^0.002^~1~^~A~^^^2^0.016^0.029^9^0.018^0.025^~2, 3~^~04/01/2013~ -~36034~^~613~^1.800^11^0.073^~1~^~A~^^^2^1.435^2.537^5^1.612^1.988^~2, 3~^~04/01/2013~ -~36034~^~614~^0.960^11^0.055^~1~^~A~^^^2^0.751^1.468^5^0.817^1.103^~2, 3~^~04/01/2013~ -~36034~^~615~^0.051^11^0.002^~1~^~A~^^^2^0.041^0.073^5^0.045^0.057^~2, 3~^~04/01/2013~ -~36034~^~617~^3.507^11^0.156^~1~^~AS~^^^2^2.801^5.008^5^3.095^3.918^~2, 3~^~04/01/2013~ -~36034~^~618~^7.152^11^0.317^~1~^~AS~^^^2^5.830^10.141^5^6.350^7.955^~2, 3~^~04/01/2013~ -~36034~^~619~^0.704^11^0.128^~1~^~AS~^^^2^0.051^1.248^4^0.356^1.051^~2, 3~^~04/01/2013~ -~36034~^~620~^0.041^11^0.002^~1~^~A~^^^2^0.031^0.054^9^0.037^0.045^~2, 3~^~04/01/2013~ -~36034~^~621~^0.003^11^0.001^~1~^~A~^^^2^0.000^0.007^6^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36034~^~624~^0.052^11^0.002^~1~^~A~^^^2^0.040^0.076^6^0.046^0.058^~2, 3~^~04/01/2013~ -~36034~^~625~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.002^9^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36034~^~626~^0.048^11^0.002^~1~^~AS~^^^2^0.036^0.071^5^0.042^0.055^~2, 3~^~04/01/2013~ -~36034~^~627~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~628~^0.299^11^0.087^~1~^~A~^^^2^0.036^0.927^4^0.059^0.539^~2, 3~^~04/01/2013~ -~36034~^~629~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.003^7^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36034~^~630~^0.000^11^0.000^~1~^~AS~^^^2^0.000^0.002^5^0.000^0.001^~2, 3~^~04/01/2013~ -~36034~^~631~^0.003^11^0.001^~1~^~A~^^^2^0.000^0.007^4^0.001^0.005^~1, 2, 3~^~04/01/2013~ -~36034~^~645~^3.865^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~646~^7.935^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~652~^0.005^11^0.000^~1~^~A~^^^2^0.003^0.007^9^0.004^0.005^~2, 3~^~04/01/2013~ -~36034~^~653~^0.017^11^0.001^~1~^~A~^^^2^0.014^0.024^6^0.015^0.019^~2, 3~^~04/01/2013~ -~36034~^~654~^0.019^11^0.001^~1~^~A~^^^2^0.015^0.026^7^0.017^0.021^~2, 3~^~04/01/2013~ -~36034~^~662~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36034~^~663~^0.039^11^0.004^~1~^~A~^^^2^0.025^0.072^7^0.029^0.050^~2, 3~^~04/01/2013~ -~36034~^~664~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~665~^0.093^11^0.008^~1~^~A~^^^2^0.067^0.160^6^0.075^0.112^~2, 3~^~04/01/2013~ -~36034~^~670~^0.021^11^0.001^~1~^~A~^^^2^0.015^0.033^7^0.018^0.024^~2, 3~^~04/01/2013~ -~36034~^~671~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~672~^0.010^11^0.000^~1~^~A~^^^2^0.008^0.013^9^0.009^0.011^~2, 3~^~04/01/2013~ -~36034~^~673~^0.048^11^0.002^~1~^~A~^^^2^0.036^0.071^5^0.042^0.054^~2, 3~^~04/01/2013~ -~36034~^~674~^3.467^11^0.154^~1~^~A~^^^2^2.745^4.936^5^3.064^3.871^~2, 3~^~04/01/2013~ -~36034~^~675~^7.038^11^0.311^~1~^~A~^^^2^5.723^9.948^5^6.255^7.822^~2, 3~^~04/01/2013~ -~36034~^~676~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36034~^~685~^0.069^11^0.005^~1~^~A~^^^2^0.051^0.116^5^0.055^0.083^~2, 3~^~04/01/2013~ -~36034~^~687~^0.009^11^0.001^~1~^~A~^^^2^0.007^0.013^6^0.008^0.010^~2, 3~^~04/01/2013~ -~36034~^~689~^0.011^11^0.001^~1~^~AS~^^^2^0.007^0.017^7^0.009^0.013^~2, 3~^~04/01/2013~ -~36034~^~693~^0.040^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~695~^0.093^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36034~^~697~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~851~^0.635^11^0.124^~1~^~A~^^^2^0.000^1.132^4^0.297^0.973^~1, 2, 3~^~04/01/2013~ -~36034~^~852~^0.001^11^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36034~^~853~^0.010^11^0.001^~1~^~A~^^^2^0.007^0.017^6^0.008^0.012^~2, 3~^~04/01/2013~ -~36034~^~856~^0.000^11^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36034~^~858~^0.012^11^0.001^~1~^~A~^^^2^0.000^0.016^4^0.008^0.015^~1, 2, 3~^~04/01/2013~ -~36035~^~312~^0.018^18^0.001^~1~^~A~^^^2^0.015^0.027^5^0.016^0.020^~1, 2, 3~^~04/01/2013~ -~36035~^~315~^0.148^18^0.011^~1~^~A~^^^2^0.072^0.256^16^0.124^0.172^~2, 3~^~04/01/2013~ -~36035~^~404~^0.029^9^0.001^~1~^~A~^^^2^0.020^0.030^5^0.026^0.032^~2, 3~^~04/01/2013~ -~36035~^~405~^0.058^9^0.002^~1~^~A~^^^2^0.050^0.069^6^0.054^0.062^~2, 3~^~04/01/2013~ -~36035~^~406~^0.281^9^0.013^~1~^~A~^^^2^0.200^0.320^5^0.248^0.314^~2, 3~^~04/01/2013~ -~36035~^~410~^0.258^6^0.012^~1~^~A~^^^2^0.200^0.320^3^0.219^0.297^~2, 3~^~04/01/2013~ -~36035~^~415~^0.119^9^0.008^~1~^~A~^^^2^0.090^0.151^5^0.097^0.140^~2, 3~^~04/01/2013~ -~36035~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~606~^1.909^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~607~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~608~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~609~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~36035~^~610~^0.004^8^0.000^~1~^~A~^^^2^0.002^0.006^5^0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36035~^~611~^0.002^8^0.000^~1~^~A~^^^2^0.001^0.004^5^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~36035~^~612~^0.012^8^0.001^~1~^~A~^^^2^0.009^0.017^6^0.010^0.014^~2, 3~^~04/01/2013~ -~36035~^~613~^1.262^8^0.071^~1~^~A~^^^2^0.599^1.739^6^1.086^1.438^~2, 3~^~04/01/2013~ -~36035~^~614~^0.517^8^0.028^~1~^~A~^^^2^0.247^0.691^6^0.450^0.585^~2, 3~^~04/01/2013~ -~36035~^~615~^0.040^8^0.002^~1~^~A~^^^2^0.020^0.053^6^0.034^0.045^~2, 3~^~04/01/2013~ -~36035~^~617~^2.501^8^0.140^~1~^~AS~^^^2^1.171^3.448^6^2.155^2.846^~2, 3~^~04/01/2013~ -~36035~^~618~^6.017^8^0.321^~1~^~AS~^^^2^2.877^8.083^6^5.229^6.806^~2, 3~^~04/01/2013~ -~36035~^~619~^0.876^8^0.057^~1~^~AS~^^^2^0.399^1.259^6^0.736^1.017^~2, 3~^~04/01/2013~ -~36035~^~620~^0.011^8^0.001^~1~^~A~^^^2^0.004^0.017^5^0.009^0.013^~2, 3~^~04/01/2013~ -~36035~^~621~^0.001^8^0.001^~1~^~A~^^^2^0.000^0.005^5^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36035~^~624~^0.040^8^0.002^~1~^~A~^^^2^0.019^0.052^4^0.033^0.047^~2, 3~^~04/01/2013~ -~36035~^~625~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~626~^0.017^8^0.001^~1~^~AS~^^^2^0.009^0.026^5^0.014^0.021^~2, 3~^~04/01/2013~ -~36035~^~627~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~36035~^~628~^0.050^8^0.006^~1~^~A~^^^2^0.038^0.093^5^0.034^0.066^~2, 3~^~04/01/2013~ -~36035~^~629~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~630~^0.007^8^0.002^~1~^~AS~^^^2^0.000^0.012^6^0.003^0.011^~2, 3~^~04/01/2013~ -~36035~^~631~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~645~^2.582^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~646~^6.913^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~652~^0.003^8^0.000^~1~^~A~^^^2^0.002^0.005^6^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36035~^~653~^0.012^8^0.001^~1~^~A~^^^2^0.005^0.017^6^0.010^0.015^~2, 3~^~04/01/2013~ -~36035~^~654~^0.015^8^0.001^~1~^~A~^^^2^0.009^0.020^5^0.013^0.017^~2, 3~^~04/01/2013~ -~36035~^~662~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~36035~^~663~^0.008^8^0.001^~1~^~A~^^^2^0.002^0.013^5^0.004^0.012^~1, 2, 3~^~04/01/2013~ -~36035~^~664~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.003^5^-0.001^0.001^~1, 2, 3~^~04/01/2013~ -~36035~^~665~^0.050^8^0.008^~1~^~A~^^^2^0.020^0.096^5^0.028^0.071^~2, 3~^~04/01/2013~ -~36035~^~670~^0.011^8^0.001^~1~^~A~^^^2^0.004^0.018^5^0.008^0.013^~2, 3~^~04/01/2013~ -~36035~^~671~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~672~^0.007^8^0.000^~1~^~A~^^^2^0.003^0.009^6^0.006^0.007^~2, 3~^~04/01/2013~ -~36035~^~673~^0.017^8^0.001^~1~^~A~^^^2^0.009^0.026^5^0.014^0.021^~2, 3~^~04/01/2013~ -~36035~^~674~^2.493^8^0.139^~1~^~A~^^^2^1.162^3.437^6^2.149^2.836^~2, 3~^~04/01/2013~ -~36035~^~675~^5.957^8^0.321^~1~^~A~^^^2^2.838^8.038^6^5.169^6.745^~2, 3~^~04/01/2013~ -~36035~^~676~^0.007^8^0.002^~1~^~A~^^^2^0.000^0.012^6^0.002^0.011^~1, 2, 3~^~04/01/2013~ -~36035~^~685~^0.039^8^0.009^~1~^~A~^^^2^0.000^0.085^5^0.016^0.063^~1, 2, 3~^~04/01/2013~ -~36035~^~687~^0.007^8^0.001^~1~^~A~^^^2^0.003^0.010^6^0.005^0.008^~2, 3~^~04/01/2013~ -~36035~^~689~^0.001^8^0.000^~1~^~AS~^^^2^0.000^0.002^5^0.000^0.001^~2, 3~^~04/01/2013~ -~36035~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36035~^~697~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36035~^~851~^0.837^8^0.060^~1~^~A~^^^2^0.372^1.236^6^0.689^0.985^~2, 3~^~04/01/2013~ -~36035~^~852~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36035~^~853~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36035~^~856~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36035~^~858~^0.000^8^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~312~^0.088^18^0.001^~1~^~A~^^^2^0.079^0.095^16^0.085^0.090^~2, 3~^~04/01/2013~ -~36036~^~315~^0.471^18^0.015^~1~^~A~^^^2^0.372^0.560^14^0.439^0.504^~2, 3~^~04/01/2013~ -~36036~^~404~^0.117^9^0.002^~1~^~A~^^^2^0.100^0.130^7^0.111^0.122^~2, 3~^~04/01/2013~ -~36036~^~405~^0.078^9^0.002^~1~^~A~^^^2^0.065^0.097^6^0.074^0.082^~2, 3~^~04/01/2013~ -~36036~^~406~^0.818^9^0.018^~1~^~A~^^^2^0.720^0.950^5^0.773^0.863^~2, 3~^~04/01/2013~ -~36036~^~410~^0.380^6^0.007^~1~^~A~^^^2^0.350^0.420^3^0.357^0.402^~2, 3~^~04/01/2013~ -~36036~^~415~^0.083^9^0.002^~1~^~A~^^^2^0.075^0.096^7^0.080^0.087^~2, 3~^~04/01/2013~ -~36036~^~501~^0.046^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~502~^0.105^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~503~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~504~^0.332^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~505~^0.111^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~506~^0.073^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~508~^0.226^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~509~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~510~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~511~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~512~^0.109^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~513~^0.149^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~514~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~515~^1.508^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~516~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~517~^0.624^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~518~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36036~^~521~^0.000^3^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~605~^0.183^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~606~^3.415^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~607~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~608~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~609~^0.008^9^0.001^~1~^~A~^^^2^0.004^0.011^7^0.006^0.010^~2, 3~^~04/01/2013~ -~36036~^~610~^0.008^9^0.000^~1~^~A~^^^2^0.005^0.011^5^0.007^0.009^~2, 3~^~04/01/2013~ -~36036~^~611~^0.006^9^0.002^~1~^~A~^^^2^0.000^0.018^5^0.001^0.012^~1, 2, 3~^~04/01/2013~ -~36036~^~612~^0.023^9^0.002^~1~^~A~^^^2^0.013^0.033^6^0.017^0.028^~2, 3~^~04/01/2013~ -~36036~^~613~^2.081^9^0.081^~1~^~A~^^^2^1.738^2.404^7^1.889^2.274^~2, 3~^~04/01/2013~ -~36036~^~614~^1.120^9^0.043^~1~^~A~^^^2^0.955^1.264^7^1.019^1.220^~2, 3~^~04/01/2013~ -~36036~^~615~^0.062^9^0.002^~1~^~A~^^^2^0.052^0.071^7^0.056^0.068^~2, 3~^~04/01/2013~ -~36036~^~617~^4.108^9^0.163^~1~^~AS~^^^2^3.477^4.679^7^3.715^4.500^~2, 3~^~04/01/2013~ -~36036~^~618~^8.652^9^0.286^~1~^~AS~^^^2^7.153^9.524^7^7.969^9.335^~2, 3~^~04/01/2013~ -~36036~^~619~^1.159^9^0.052^~1~^~AS~^^^2^0.861^1.379^7^1.036^1.281^~2, 3~^~04/01/2013~ -~36036~^~620~^0.008^9^0.000^~1~^~A~^^^2^0.006^0.010^4^0.007^0.010^~2, 3~^~04/01/2013~ -~36036~^~621~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~624~^0.059^9^0.002^~1~^~A~^^^2^0.047^0.065^6^0.054^0.063^~2, 3~^~04/01/2013~ -~36036~^~625~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.001^6^0.000^0.001^~1, 2, 3~^~04/01/2013~ -~36036~^~626~^0.031^9^0.002^~1~^~AS~^^^2^0.022^0.047^6^0.025^0.037^~2, 3~^~04/01/2013~ -~36036~^~627~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~628~^0.059^9^0.007^~1~^~A~^^^2^0.044^0.107^5^0.043^0.076^~2, 3~^~04/01/2013~ -~36036~^~629~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~630~^0.007^9^0.001^~1~^~AS~^^^2^0.000^0.014^6^0.005^0.009^~2, 3~^~04/01/2013~ -~36036~^~631~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~645~^4.217^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~646~^9.830^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~652~^0.005^9^0.000^~1~^~A~^^^2^0.003^0.007^7^0.004^0.006^~2, 3~^~04/01/2013~ -~36036~^~653~^0.021^9^0.001^~1~^~A~^^^2^0.017^0.024^6^0.018^0.023^~2, 3~^~04/01/2013~ -~36036~^~654~^0.023^9^0.001^~1~^~A~^^^2^0.019^0.026^5^0.021^0.025^~2, 3~^~04/01/2013~ -~36036~^~662~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36036~^~663~^0.065^9^0.007^~1~^~A~^^^2^0.024^0.095^6^0.048^0.081^~2, 3~^~04/01/2013~ -~36036~^~664~^0.003^9^0.000^~1~^~A~^^^2^0.000^0.006^5^0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36036~^~665~^0.114^9^0.011^~1~^~A~^^^2^0.072^0.167^6^0.088^0.140^~2, 3~^~04/01/2013~ -~36036~^~670~^0.027^9^0.002^~1~^~A~^^^2^0.018^0.034^6^0.023^0.032^~2, 3~^~04/01/2013~ -~36036~^~671~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~672~^0.009^9^0.001^~1~^~A~^^^2^0.005^0.012^6^0.007^0.011^~2, 3~^~04/01/2013~ -~36036~^~673~^0.030^9^0.002^~1~^~A~^^^2^0.020^0.047^6^0.025^0.036^~2, 3~^~04/01/2013~ -~36036~^~674~^4.043^9^0.167^~1~^~A~^^^2^3.383^4.620^7^3.642^4.443^~2, 3~^~04/01/2013~ -~36036~^~675~^8.510^9^0.282^~1~^~A~^^^2^6.998^9.327^7^7.837^9.183^~2, 3~^~04/01/2013~ -~36036~^~676~^0.004^9^0.001^~1~^~A~^^^2^0.000^0.009^7^0.003^0.006^~1, 2, 3~^~04/01/2013~ -~36036~^~685~^0.081^9^0.006^~1~^~A~^^^2^0.051^0.109^6^0.065^0.096^~2, 3~^~04/01/2013~ -~36036~^~687~^0.011^9^0.001^~1~^~A~^^^2^0.008^0.014^5^0.009^0.013^~2, 3~^~04/01/2013~ -~36036~^~689~^0.001^9^0.000^~1~^~AS~^^^2^0.000^0.003^7^0.000^0.002^~2, 3~^~04/01/2013~ -~36036~^~693~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~695~^0.114^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36036~^~697~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~851~^1.078^9^0.051^~1~^~A~^^^2^0.779^1.319^7^0.957^1.199^~2, 3~^~04/01/2013~ -~36036~^~852~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.003^7^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36036~^~853~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.001^5^0.000^0.000^~1, 2, 3~^~04/01/2013~ -~36036~^~856~^0.000^9^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36036~^~858~^0.001^9^0.000^~1~^~A~^^^2^0.000^0.004^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36037~^~312~^0.086^6^0.004^~1~^~A~^^^1^0.067^0.094^5^0.076^0.095^~2, 3~^~04/01/2013~ -~36037~^~315~^0.084^6^0.004^~1~^~A~^^^1^0.073^0.104^5^0.073^0.095^~2, 3~^~04/01/2013~ -~36037~^~404~^0.037^3^0.003^~1~^~A~^^^1^0.030^0.040^2^0.022^0.051^~2, 3~^~04/01/2013~ -~36037~^~405~^0.207^3^0.013^~1~^~A~^^^1^0.180^0.220^2^0.149^0.264^~2, 3~^~04/01/2013~ -~36037~^~406~^3.557^3^0.325^~1~^~A~^^^1^2.930^4.020^2^2.158^4.955^~2, 3~^~04/01/2013~ -~36037~^~410~^0.405^2^^~1~^~A~^^^1^0.340^0.470^1^^^^~04/01/2013~ -~36037~^~415~^0.321^3^0.031^~1~^~A~^^^1^0.280^0.382^2^0.188^0.455^~2, 3~^~04/01/2013~ -~36037~^~501~^0.144^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~502~^0.402^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~503~^0.556^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~504~^0.927^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~505~^0.844^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~506~^0.278^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~507~^0.123^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~508~^0.474^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~509~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~510~^0.639^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~511~^0.772^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~512~^0.371^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~513~^0.793^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~514~^1.195^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~515~^2.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~516~^0.834^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~517~^0.855^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~518~^0.371^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~521~^0.240^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36037~^~605~^0.558^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~606~^4.023^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~610~^0.011^3^0.002^~1~^~A~^^^1^0.009^0.015^2^0.004^0.019^~2, 3~^~04/01/2013~ -~36037~^~611~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.015^2^0.006^0.019^~2, 3~^~04/01/2013~ -~36037~^~612~^0.298^3^0.057^~1~^~A~^^^1^0.243^0.440^2^0.090^0.581^~2, 3~^~04/01/2013~ -~36037~^~613~^2.259^3^0.349^~1~^~A~^^^1^1.914^3.119^2^1.040^4.039^~2, 3~^~04/01/2013~ -~36037~^~614~^1.268^3^0.188^~1~^~A~^^^1^1.081^1.728^2^0.617^2.236^~2, 3~^~04/01/2013~ -~36037~^~615~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.019^~2, 3~^~04/01/2013~ -~36037~^~617~^4.083^3^0.676^~1~^~AS~^^^1^3.531^5.848^2^1.681^7.500^~2, 3~^~04/01/2013~ -~36037~^~618~^0.526^3^0.053^~1~^~AS~^^^1^0.489^0.667^2^0.363^0.819^~2, 3~^~04/01/2013~ -~36037~^~619~^0.037^3^0.006^~1~^~AS~^^^1^0.034^0.053^2^0.016^0.067^~2, 3~^~04/01/2013~ -~36037~^~620~^0.028^3^0.003^~1~^~A~^^^1^0.025^0.035^2^0.018^0.044^~2, 3~^~04/01/2013~ -~36037~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.002^0.010^~2, 3~^~04/01/2013~ -~36037~^~625~^0.095^3^0.015^~1~^~A~^^^1^0.079^0.129^2^0.044^0.170^~2, 3~^~04/01/2013~ -~36037~^~626~^0.370^3^0.060^~1~^~AS~^^^1^0.301^0.500^2^0.160^0.673^~2, 3~^~04/01/2013~ -~36037~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36037~^~628~^0.033^3^0.004^~1~^~A~^^^1^0.031^0.044^2^0.021^0.054^~2, 3~^~04/01/2013~ -~36037~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36037~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36037~^~631~^0.007^3^0.002^~1~^~A~^^^1^0.006^0.012^2^-0.001^0.017^~2, 3~^~04/01/2013~ -~36037~^~645~^4.662^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~646~^0.625^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~652~^0.047^3^0.010^~1~^~A~^^^1^0.038^0.073^2^0.007^0.098^~2, 3~^~04/01/2013~ -~36037~^~653~^0.108^3^0.024^~1~^~A~^^^1^0.086^0.168^2^0.018^0.226^~2, 3~^~04/01/2013~ -~36037~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.004^^^^~2, 3~^~04/01/2013~ -~36037~^~662~^0.036^3^0.006^~1~^~A~^^^1^0.032^0.051^2^0.016^0.064^~2, 3~^~04/01/2013~ -~36037~^~663~^0.457^3^0.161^~1~^~A~^^^1^0.350^0.835^2^-0.178^1.205^~2, 3~^~04/01/2013~ -~36037~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~665~^0.065^3^0.007^~1~^~A~^^^1^0.059^0.083^2^0.042^0.103^~2, 3~^~04/01/2013~ -~36037~^~670~^0.064^3^0.013^~1~^~A~^^^1^0.055^0.098^2^0.014^0.129^~2, 3~^~04/01/2013~ -~36037~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~672~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~04/01/2013~ -~36037~^~673~^0.335^3^0.055^~1~^~A~^^^1^0.269^0.449^2^0.140^0.612^~2, 3~^~04/01/2013~ -~36037~^~674~^3.626^3^0.529^~1~^~A~^^^1^3.181^5.013^2^1.800^6.354^~2, 3~^~04/01/2013~ -~36037~^~675~^0.398^3^0.036^~1~^~A~^^^1^0.375^0.486^2^0.292^0.602^~2, 3~^~04/01/2013~ -~36037~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2013~ -~36037~^~687~^0.081^3^0.018^~1~^~A~^^^1^0.064^0.126^2^0.011^0.170^~2, 3~^~04/01/2013~ -~36037~^~689~^0.015^3^0.002^~1~^~AS~^^^1^0.014^0.021^2^0.009^0.026^~2, 3~^~04/01/2013~ -~36037~^~693~^0.493^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~695~^0.066^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36037~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~851~^0.035^3^0.005^~1~^~A~^^^1^0.034^0.049^2^0.018^0.060^~2, 3~^~04/01/2013~ -~36037~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36037~^~853~^0.015^3^0.002^~1~^~A~^^^1^0.014^0.021^2^0.009^0.026^~2, 3~^~04/01/2013~ -~36037~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36037~^~858~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.007^0.018^~1, 2, 3~^~04/01/2013~ -~36038~^~312~^0.106^6^0.003^~1~^~A~^^^1^0.094^0.117^5^0.098^0.115^~2, 3~^~04/01/2013~ -~36038~^~315~^0.277^6^0.012^~1~^~A~^^^1^0.219^0.300^5^0.246^0.309^~2, 3~^~04/01/2013~ -~36038~^~404~^0.107^3^0.015^~1~^~A~^^^1^0.080^0.130^2^0.044^0.169^~2, 3~^~04/01/2013~ -~36038~^~405~^0.167^3^0.009^~1~^~A~^^^1^0.150^0.180^2^0.129^0.205^~2, 3~^~04/01/2013~ -~36038~^~406~^2.000^3^0.140^~1~^~A~^^^1^1.800^2.270^2^1.397^2.603^~2, 3~^~04/01/2013~ -~36038~^~410~^0.440^2^^~1~^~A~^^^1^0.420^0.460^1^^^^~04/01/2013~ -~36038~^~415~^0.143^3^0.015^~1~^~A~^^^1^0.121^0.171^2^0.079^0.207^~2, 3~^~04/01/2013~ -~36038~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~502~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~503~^0.370^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~504~^0.710^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~505~^0.560^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~506~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~507~^0.140^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~508~^0.400^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~509~^0.250^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~510~^0.450^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~511~^0.500^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~512~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~513~^0.440^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~514~^0.690^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~515~^2.240^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~516~^0.460^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~517~^0.790^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~518~^0.390^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~521~^0.060^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36038~^~605~^0.217^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~606~^3.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~607~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2013~ -~36038~^~608~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36038~^~609~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36038~^~610~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.022^2^0.016^0.024^~2, 3~^~04/01/2013~ -~36038~^~611~^0.022^3^0.003^~1~^~A~^^^1^0.019^0.027^2^0.011^0.033^~2, 3~^~04/01/2013~ -~36038~^~612~^0.199^3^0.021^~1~^~A~^^^1^0.159^0.227^2^0.110^0.288^~2, 3~^~04/01/2013~ -~36038~^~613~^1.824^3^0.145^~1~^~A~^^^1^1.562^2.063^2^1.200^2.448^~2, 3~^~04/01/2013~ -~36038~^~614~^0.916^3^0.081^~1~^~A~^^^1^0.757^1.022^2^0.568^1.263^~2, 3~^~04/01/2013~ -~36038~^~615~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~04/01/2013~ -~36038~^~617~^3.254^3^0.203^~1~^~AS~^^^1^2.873^3.566^2^2.381^4.128^~2, 3~^~04/01/2013~ -~36038~^~618~^1.054^3^0.024^~1~^~AS~^^^1^1.013^1.096^2^0.951^1.157^~2, 3~^~04/01/2013~ -~36038~^~619~^0.085^3^0.007^~1~^~AS~^^^1^0.075^0.099^2^0.054^0.116^~2, 3~^~04/01/2013~ -~36038~^~620~^0.020^3^0.002^~1~^~A~^^^1^0.018^0.023^2^0.012^0.027^~2, 3~^~04/01/2013~ -~36038~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~624~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~36038~^~625~^0.041^3^0.006^~1~^~A~^^^1^0.029^0.047^2^0.016^0.066^~2, 3~^~04/01/2013~ -~36038~^~626~^0.210^3^0.020^~1~^~AS~^^^1^0.171^0.238^2^0.123^0.297^~2, 3~^~04/01/2013~ -~36038~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~628~^0.053^3^0.002^~1~^~A~^^^1^0.050^0.057^2^0.043^0.062^~2, 3~^~04/01/2013~ -~36038~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36038~^~630~^0.002^3^0.000^~1~^~AS~^^^1^0.002^0.002^^^^~2, 3~^~04/01/2013~ -~36038~^~631~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36038~^~645~^3.600^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~646~^1.213^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~652~^0.025^3^0.003^~1~^~A~^^^1^0.019^0.028^2^0.012^0.037^~2, 3~^~04/01/2013~ -~36038~^~653~^0.055^3^0.006^~1~^~A~^^^1^0.043^0.062^2^0.029^0.082^~2, 3~^~04/01/2013~ -~36038~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36038~^~662~^0.016^3^0.002^~1~^~A~^^^1^0.012^0.019^2^0.007^0.024^~2, 3~^~04/01/2013~ -~36038~^~663~^0.169^3^0.035^~1~^~A~^^^1^0.108^0.229^2^0.019^0.319^~2, 3~^~04/01/2013~ -~36038~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~665~^0.032^3^0.004^~1~^~A~^^^1^0.024^0.037^2^0.015^0.049^~2, 3~^~04/01/2013~ -~36038~^~670~^0.028^3^0.004^~1~^~A~^^^1^0.021^0.033^2^0.012^0.043^~2, 3~^~04/01/2013~ -~36038~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~672~^0.027^3^0.002^~1~^~A~^^^1^0.024^0.031^2^0.019^0.036^~2, 3~^~04/01/2013~ -~36038~^~673~^0.195^3^0.019^~1~^~A~^^^1^0.159^0.222^2^0.114^0.275^~2, 3~^~04/01/2013~ -~36038~^~674~^3.085^3^0.182^~1~^~A~^^^1^2.765^3.396^2^2.301^3.869^~2, 3~^~04/01/2013~ -~36038~^~675~^0.994^3^0.018^~1~^~A~^^^1^0.968^1.029^2^0.916^1.072^~2, 3~^~04/01/2013~ -~36038~^~676~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36038~^~687~^0.040^3^0.005^~1~^~A~^^^1^0.031^0.045^2^0.020^0.059^~2, 3~^~04/01/2013~ -~36038~^~689~^0.014^3^0.001^~1~^~AS~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~04/01/2013~ -~36038~^~693~^0.185^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36038~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~851~^0.081^3^0.007^~1~^~A~^^^1^0.072^0.094^2^0.052^0.110^~2, 3~^~04/01/2013~ -~36038~^~852~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36038~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.013^~2, 3~^~04/01/2013~ -~36038~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36038~^~858~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~04/01/2013~ -~36039~^~312~^0.066^6^0.004^~1~^~A~^^^1^0.053^0.079^5^0.055^0.077^~2, 3~^~04/01/2013~ -~36039~^~315~^0.168^6^0.007^~1~^~A~^^^1^0.150^0.197^5^0.150^0.186^~2, 3~^~04/01/2013~ -~36039~^~404~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~405~^0.048^3^0.001^~1~^~A~^^^1^0.046^0.050^2^0.042^0.053^~2, 3~^~04/01/2013~ -~36039~^~406~^2.170^3^0.175^~1~^~A~^^^1^1.990^2.520^2^1.417^2.923^~2, 3~^~04/01/2013~ -~36039~^~410~^0.455^2^^~1~^~A~^^^1^0.450^0.460^1^^^^~04/01/2013~ -~36039~^~415~^0.203^3^0.021^~1~^~A~^^^1^0.174^0.244^2^0.112^0.294^~2, 3~^~04/01/2013~ -~36039~^~605~^0.048^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~606~^1.689^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~607~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36039~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~609~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36039~^~610~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36039~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~612~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~36039~^~613~^0.964^3^0.054^~1~^~A~^^^1^0.899^1.072^2^0.730^1.198^~2, 3~^~04/01/2013~ -~36039~^~614~^0.618^3^0.029^~1~^~A~^^^1^0.560^0.652^2^0.493^0.742^~2, 3~^~04/01/2013~ -~36039~^~615~^0.031^3^0.001^~1~^~A~^^^1^0.030^0.033^2^0.027^0.035^~2, 3~^~04/01/2013~ -~36039~^~617~^1.993^3^0.100^~1~^~AS~^^^1^1.826^2.173^2^1.560^2.425^~2, 3~^~04/01/2013~ -~36039~^~618~^4.372^3^0.291^~1~^~AS~^^^1^4.012^4.947^2^3.122^5.622^~2, 3~^~04/01/2013~ -~36039~^~619~^0.651^3^0.030^~1~^~AS~^^^1^0.617^0.710^2^0.523^0.779^~2, 3~^~04/01/2013~ -~36039~^~620~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36039~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~624~^0.029^3^0.003^~1~^~A~^^^1^0.026^0.034^2^0.018^0.040^~2, 3~^~04/01/2013~ -~36039~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~626~^0.010^3^0.001^~1~^~AS~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36039~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36039~^~628~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.025^2^0.019^0.027^~2, 3~^~04/01/2013~ -~36039~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~630~^0.004^3^0.002^~1~^~AS~^^^1^0.000^0.007^2^-0.005^0.013^~2, 3~^~04/01/2013~ -~36039~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~645~^2.035^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~646~^5.029^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36039~^~653~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.017^~2, 3~^~04/01/2013~ -~36039~^~654~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.017^~2, 3~^~04/01/2013~ -~36039~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~663~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.018^2^0.004^0.023^~2, 3~^~04/01/2013~ -~36039~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36039~^~665~^0.033^3^0.005^~1~^~A~^^^1^0.028^0.043^2^0.011^0.055^~2, 3~^~04/01/2013~ -~36039~^~670~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36039~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36039~^~673~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36039~^~674~^1.979^3^0.100^~1~^~A~^^^1^1.815^2.161^2^1.547^2.410^~2, 3~^~04/01/2013~ -~36039~^~675~^4.331^3^0.284^~1~^~A~^^^1^3.978^4.894^2^3.108^5.555^~2, 3~^~04/01/2013~ -~36039~^~676~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.006^0.012^~1, 2, 3~^~04/01/2013~ -~36039~^~685~^0.027^3^0.007^~1~^~A~^^^1^0.018^0.040^2^-0.001^0.055^~2, 3~^~04/01/2013~ -~36039~^~687~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2013~ -~36039~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36039~^~693~^0.015^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36039~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~851~^0.623^3^0.023^~1~^~A~^^^1^0.599^0.670^2^0.523^0.724^~2, 3~^~04/01/2013~ -~36039~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36039~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~312~^0.061^6^0.002^~1~^~A~^^^1^0.054^0.067^5^0.055^0.067^~2, 3~^~04/01/2013~ -~36040~^~315~^0.130^6^0.009^~1~^~A~^^^1^0.105^0.168^5^0.106^0.154^~2, 3~^~04/01/2013~ -~36040~^~404~^0.097^3^0.013^~1~^~A~^^^1^0.070^0.110^2^0.039^0.154^~2, 3~^~04/01/2013~ -~36040~^~405~^0.247^3^0.015^~1~^~A~^^^1^0.220^0.270^2^0.184^0.309^~2, 3~^~04/01/2013~ -~36040~^~406~^0.710^3^0.031^~1~^~A~^^^1^0.650^0.750^2^0.578^0.842^~2, 3~^~04/01/2013~ -~36040~^~410~^0.470^2^^~1~^~A~^^^1^0.430^0.510^1^^^^~04/01/2013~ -~36040~^~415~^0.060^3^0.002^~1~^~A~^^^1^0.056^0.063^2^0.051^0.069^~2, 3~^~04/01/2013~ -~36040~^~501~^0.070^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~502~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~503~^0.310^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~504~^0.660^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~505~^0.590^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~506~^0.170^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~507~^0.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~508~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~509~^0.260^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~510~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~511~^0.290^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~512~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~513~^0.200^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~514~^0.380^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~515~^1.850^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~516~^0.190^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~517~^0.840^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~518~^0.360^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36040~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36040~^~605~^0.222^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~606~^4.178^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~607~^0.112^3^0.006^~1~^~A~^^^1^0.103^0.122^2^0.088^0.136^~2, 3~^~04/01/2013~ -~36040~^~608~^0.089^3^0.004^~1~^~A~^^^1^0.082^0.096^2^0.072^0.106^~2, 3~^~04/01/2013~ -~36040~^~609~^0.056^3^0.003^~1~^~A~^^^1^0.051^0.061^2^0.043^0.069^~2, 3~^~04/01/2013~ -~36040~^~610~^0.137^3^0.007^~1~^~A~^^^1^0.126^0.149^2^0.108^0.165^~2, 3~^~04/01/2013~ -~36040~^~611~^0.159^3^0.007^~1~^~A~^^^1^0.148^0.172^2^0.129^0.189^~2, 3~^~04/01/2013~ -~36040~^~612~^0.522^3^0.022^~1~^~A~^^^1^0.490^0.563^2^0.429^0.615^~2, 3~^~04/01/2013~ -~36040~^~613~^2.122^3^0.091^~1~^~A~^^^1^1.987^2.296^2^1.728^2.515^~2, 3~^~04/01/2013~ -~36040~^~614~^0.816^3^0.044^~1~^~A~^^^1^0.755^0.901^2^0.628^1.005^~2, 3~^~04/01/2013~ -~36040~^~615~^0.030^3^0.001^~1~^~A~^^^1^0.028^0.032^2^0.025^0.035^~2, 3~^~04/01/2013~ -~36040~^~617~^2.604^3^0.122^~1~^~AS~^^^1^2.440^2.842^2^2.079^3.128^~2, 3~^~04/01/2013~ -~36040~^~618~^3.453^3^0.164^~1~^~AS~^^^1^3.204^3.761^2^2.749^4.156^~2, 3~^~04/01/2013~ -~36040~^~619~^0.448^3^0.020^~1~^~AS~^^^1^0.415^0.484^2^0.362^0.534^~2, 3~^~04/01/2013~ -~36040~^~620~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.018^~2, 3~^~04/01/2013~ -~36040~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~624~^0.029^3^0.001^~1~^~A~^^^1^0.027^0.031^2^0.024^0.034^~2, 3~^~04/01/2013~ -~36040~^~625~^0.052^3^0.002^~1~^~A~^^^1^0.049^0.055^2^0.045^0.059^~2, 3~^~04/01/2013~ -~36040~^~626~^0.092^3^0.005^~1~^~AS~^^^1^0.087^0.102^2^0.072^0.113^~2, 3~^~04/01/2013~ -~36040~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36040~^~628~^0.051^3^0.002^~1~^~A~^^^1^0.047^0.055^2^0.041^0.061^~2, 3~^~04/01/2013~ -~36040~^~629~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~04/01/2013~ -~36040~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36040~^~631~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36040~^~645~^2.813^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~646~^3.941^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~652~^0.056^3^0.002^~1~^~A~^^^1^0.052^0.060^2^0.046^0.066^~2, 3~^~04/01/2013~ -~36040~^~653~^0.040^3^0.001^~1~^~A~^^^1^0.038^0.042^2^0.034^0.045^~2, 3~^~04/01/2013~ -~36040~^~654~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~04/01/2013~ -~36040~^~662~^0.019^3^0.001^~1~^~A~^^^1^0.017^0.022^2^0.013^0.025^~2, 3~^~04/01/2013~ -~36040~^~663~^0.134^3^0.007^~1~^~A~^^^1^0.125^0.148^2^0.104^0.164^~2, 3~^~04/01/2013~ -~36040~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~665~^0.068^3^0.006^~1~^~A~^^^1^0.057^0.075^2^0.044^0.093^~2, 3~^~04/01/2013~ -~36040~^~670~^0.035^3^0.002^~1~^~A~^^^1^0.033^0.038^2^0.028^0.041^~2, 3~^~04/01/2013~ -~36040~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~672~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36040~^~673~^0.073^3^0.003^~1~^~A~^^^1^0.069^0.080^2^0.058^0.088^~2, 3~^~04/01/2013~ -~36040~^~674~^2.469^3^0.115^~1~^~A~^^^1^2.315^2.694^2^1.975^2.964^~2, 3~^~04/01/2013~ -~36040~^~675~^3.349^3^0.158^~1~^~A~^^^1^3.114^3.650^2^2.669^4.030^~2, 3~^~04/01/2013~ -~36040~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~685~^0.024^3^0.002^~1~^~A~^^^1^0.021^0.026^2^0.017^0.032^~2, 3~^~04/01/2013~ -~36040~^~687~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.010^0.018^~2, 3~^~04/01/2013~ -~36040~^~689~^0.009^3^0.001^~1~^~AS~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~36040~^~693~^0.154^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36040~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~851~^0.424^3^0.019^~1~^~A~^^^1^0.394^0.458^2^0.343^0.504^~2, 3~^~04/01/2013~ -~36040~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~853~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~36040~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36040~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36041~^~312~^0.070^12^0.004^~1~^~A~^^^1^0.049^0.098^11^0.061^0.080^~2, 3~^~03/01/2014~ -~36041~^~315~^0.139^12^0.009^~1~^~A~^^^1^0.096^0.195^11^0.118^0.159^~2, 3~^~03/01/2014~ -~36041~^~404~^0.140^6^0.009^~1~^~A~^^^1^0.120^0.170^5^0.116^0.164^~2, 3~^~03/01/2014~ -~36041~^~405~^0.237^6^0.017^~1~^~A~^^^1^0.190^0.280^5^0.194^0.280^~2, 3~^~03/01/2014~ -~36041~^~406~^1.843^6^0.095^~1~^~A~^^^1^1.570^2.210^5^1.600^2.086^~2, 3~^~03/01/2014~ -~36041~^~410~^0.492^4^0.014^~1~^~A~^^^1^0.470^0.530^3^0.447^0.538^~2, 3~^~03/01/2014~ -~36041~^~415~^0.122^0^^~4~^~BFZN~^~22977~^^^^^^^^^~03/01/2015~ -~36041~^~501~^0.134^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~502~^0.375^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~503~^0.416^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~504~^0.864^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~505~^0.824^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~506~^0.247^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~507~^0.114^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~508~^0.495^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~509~^0.358^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~510~^0.457^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~511~^0.468^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~512~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~513~^0.407^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~514~^0.768^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~515~^2.057^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~516~^0.347^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~517~^1.121^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~518~^0.499^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36041~^~521~^0.070^2^^~1~^~A~^^^1^0.050^0.090^1^^^^~03/01/2014~ -~36041~^~605~^0.312^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~606~^4.941^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~607~^0.119^12^0.008^~1~^~A~^^^1^0.065^0.161^11^0.101^0.137^~2, 3~^~03/01/2014~ -~36041~^~608~^0.097^12^0.006^~1~^~A~^^^1^0.057^0.131^11^0.084^0.111^~2, 3~^~03/01/2014~ -~36041~^~609~^0.065^12^0.004^~1~^~A~^^^1^0.038^0.085^11^0.056^0.073^~2, 3~^~03/01/2014~ -~36041~^~610~^0.167^12^0.010^~1~^~A~^^^1^0.105^0.211^11^0.146^0.189^~2, 3~^~03/01/2014~ -~36041~^~611~^0.188^12^0.009^~1~^~A~^^^1^0.128^0.228^11^0.168^0.208^~2, 3~^~03/01/2014~ -~36041~^~612~^0.664^12^0.028^~1~^~A~^^^1^0.484^0.795^11^0.602^0.726^~2, 3~^~03/01/2014~ -~36041~^~613~^2.435^12^0.060^~1~^~A~^^^1^2.057^2.752^11^2.302^2.568^~2, 3~^~03/01/2014~ -~36041~^~614~^1.042^12^0.033^~1~^~A~^^^1^0.854^1.195^11^0.970^1.114^~2, 3~^~03/01/2014~ -~36041~^~615~^0.016^12^0.000^~1~^~A~^^^1^0.014^0.019^11^0.015^0.017^~2, 3~^~03/01/2014~ -~36041~^~617~^2.999^12^0.085^~1~^~AS~^^^1^2.610^3.543^11^2.812^3.186^~2, 3~^~03/01/2014~ -~36041~^~618~^0.670^12^0.024^~1~^~AS~^^^1^0.536^0.802^11^0.616^0.723^~2, 3~^~03/01/2014~ -~36041~^~619~^0.057^12^0.003^~1~^~AS~^^^1^0.041^0.069^11^0.051^0.063^~2, 3~^~03/01/2014~ -~36041~^~620~^0.024^12^0.001^~1~^~A~^^^1^0.022^0.027^11^0.023^0.026^~2, 3~^~03/01/2014~ -~36041~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36041~^~624~^0.008^12^0.000^~1~^~A~^^^1^0.006^0.011^11^0.007^0.009^~2, 3~^~03/01/2014~ -~36041~^~625~^0.071^12^0.003^~1~^~A~^^^1^0.051^0.084^11^0.065^0.077^~2, 3~^~03/01/2014~ -~36041~^~626~^0.183^12^0.006^~1~^~AS~^^^1^0.147^0.208^11^0.171^0.196^~2, 3~^~03/01/2014~ -~36041~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~628~^0.030^12^0.001^~1~^~A~^^^1^0.026^0.037^11^0.028^0.032^~2, 3~^~03/01/2014~ -~36041~^~629~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.002^0.003^~1, 2, 3~^~03/01/2014~ -~36041~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.000^0.001^~2, 3~^~03/01/2014~ -~36041~^~631~^0.006^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.004^0.007^~1, 2, 3~^~03/01/2014~ -~36041~^~645~^3.313^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~646~^0.788^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~652~^0.072^12^0.003^~1~^~A~^^^1^0.054^0.086^11^0.066^0.078^~2, 3~^~03/01/2014~ -~36041~^~653~^0.064^12^0.002^~1~^~A~^^^1^0.051^0.071^11^0.059^0.068^~2, 3~^~03/01/2014~ -~36041~^~654~^0.005^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.004^0.006^~1, 2, 3~^~03/01/2014~ -~36041~^~662~^0.027^12^0.001^~1~^~A~^^^1^0.023^0.032^11^0.025^0.029^~2, 3~^~03/01/2014~ -~36041~^~663~^0.226^12^0.007^~1~^~A~^^^1^0.196^0.265^11^0.210^0.242^~2, 3~^~03/01/2014~ -~36041~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~665~^0.058^12^0.004^~1~^~A~^^^1^0.035^0.075^11^0.050^0.066^~2, 3~^~03/01/2014~ -~36041~^~670~^0.039^12^0.002^~1~^~A~^^^1^0.028^0.052^11^0.035^0.044^~2, 3~^~03/01/2014~ -~36041~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~672~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.014^11^0.008^0.011^~2, 3~^~03/01/2014~ -~36041~^~673~^0.156^12^0.005^~1~^~A~^^^1^0.121^0.178^11^0.145^0.167^~2, 3~^~03/01/2014~ -~36041~^~674~^2.773^12^0.082^~1~^~A~^^^1^2.404^3.285^11^2.592^2.954^~2, 3~^~03/01/2014~ -~36041~^~675~^0.572^12^0.023^~1~^~A~^^^1^0.467^0.707^11^0.522^0.622^~2, 3~^~03/01/2014~ -~36041~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36041~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36041~^~687~^0.029^12^0.001^~1~^~A~^^^1^0.023^0.036^11^0.027^0.032^~2, 3~^~03/01/2014~ -~36041~^~689~^0.013^12^0.001^~1~^~AS~^^^1^0.010^0.016^11^0.012^0.014^~2, 3~^~03/01/2014~ -~36041~^~693~^0.253^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36041~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36041~^~851~^0.055^12^0.003^~1~^~A~^^^1^0.041^0.067^11^0.050^0.061^~2, 3~^~03/01/2014~ -~36041~^~852~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.007^11^0.001^0.004^~1, 2, 3~^~03/01/2014~ -~36041~^~853~^0.010^12^0.000^~1~^~A~^^^1^0.009^0.012^11^0.010^0.011^~2, 3~^~03/01/2014~ -~36041~^~856~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36041~^~858~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~03/01/2014~ -~36042~^~312~^0.061^6^0.004^~1~^~A~^^^1^0.049^0.079^5^0.051^0.072^~2, 3~^~03/01/2014~ -~36042~^~315~^0.113^6^0.004^~1~^~A~^^^1^0.096^0.123^5^0.103^0.123^~2, 3~^~03/01/2014~ -~36042~^~404~^0.160^3^0.006^~1~^~A~^^^1^0.150^0.170^2^0.135^0.185^~2, 3~^~03/01/2014~ -~36042~^~405~^0.273^3^0.003^~1~^~A~^^^1^0.270^0.280^2^0.259^0.288^~2, 3~^~03/01/2014~ -~36042~^~406~^1.930^3^0.189^~1~^~A~^^^1^1.570^2.210^2^1.117^2.743^~2, 3~^~03/01/2014~ -~36042~^~410~^0.515^2^^~1~^~A~^^^1^0.500^0.530^1^^^^~03/01/2014~ -~36042~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~502~^0.393^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~503~^0.429^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~504~^0.902^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~505~^0.840^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~506~^0.250^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~507~^0.116^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~508~^0.500^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~509~^0.348^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~510~^0.483^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~511~^0.456^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~512~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~513~^0.429^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~514~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~515~^2.019^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~516~^0.366^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~517~^1.081^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~518~^0.509^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~521~^0.090^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36042~^~605~^0.335^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~606~^5.347^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~607~^0.138^6^0.008^~1~^~A~^^^1^0.111^0.161^5^0.117^0.159^~2, 3~^~03/01/2014~ -~36042~^~608~^0.112^6^0.006^~1~^~A~^^^1^0.090^0.131^5^0.096^0.129^~2, 3~^~03/01/2014~ -~36042~^~609~^0.075^6^0.004^~1~^~A~^^^1^0.062^0.085^5^0.066^0.084^~2, 3~^~03/01/2014~ -~36042~^~610~^0.194^6^0.007^~1~^~A~^^^1^0.166^0.211^5^0.175^0.212^~2, 3~^~03/01/2014~ -~36042~^~611~^0.214^6^0.006^~1~^~A~^^^1^0.188^0.228^5^0.198^0.231^~2, 3~^~03/01/2014~ -~36042~^~612~^0.747^6^0.017^~1~^~A~^^^1^0.683^0.795^5^0.704^0.790^~2, 3~^~03/01/2014~ -~36042~^~613~^2.586^6^0.047^~1~^~A~^^^1^2.482^2.752^5^2.466^2.707^~2, 3~^~03/01/2014~ -~36042~^~614~^1.104^6^0.036^~1~^~A~^^^1^0.957^1.195^5^1.012^1.196^~2, 3~^~03/01/2014~ -~36042~^~615~^0.016^6^0.001^~1~^~A~^^^1^0.015^0.018^5^0.015^0.017^~2, 3~^~03/01/2014~ -~36042~^~617~^2.871^6^0.079^~1~^~AS~^^^1^2.610^3.072^5^2.667^3.074^~2, 3~^~03/01/2014~ -~36042~^~618~^0.664^6^0.026^~1~^~AS~^^^1^0.578^0.733^5^0.597^0.732^~2, 3~^~03/01/2014~ -~36042~^~619~^0.060^6^0.003^~1~^~AS~^^^1^0.049^0.067^5^0.053^0.066^~2, 3~^~03/01/2014~ -~36042~^~620~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.027^5^0.023^0.028^~2, 3~^~03/01/2014~ -~36042~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2014~ -~36042~^~624~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.006^0.010^~2, 3~^~03/01/2014~ -~36042~^~625~^0.079^6^0.002^~1~^~A~^^^1^0.073^0.084^5^0.074^0.084^~2, 3~^~03/01/2014~ -~36042~^~626~^0.194^6^0.006^~1~^~AS~^^^1^0.175^0.208^5^0.179^0.209^~2, 3~^~03/01/2014~ -~36042~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~628~^0.030^6^0.001^~1~^~A~^^^1^0.026^0.033^5^0.027^0.033^~2, 3~^~03/01/2014~ -~36042~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~03/01/2014~ -~36042~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~03/01/2014~ -~36042~^~631~^0.007^6^0.000^~1~^~A~^^^1^0.007^0.008^5^0.007^0.008^~2, 3~^~03/01/2014~ -~36042~^~645~^3.203^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~646~^0.789^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~652~^0.081^6^0.002^~1~^~A~^^^1^0.075^0.086^5^0.076^0.085^~2, 3~^~03/01/2014~ -~36042~^~653~^0.067^6^0.002^~1~^~A~^^^1^0.061^0.071^5^0.062^0.071^~2, 3~^~03/01/2014~ -~36042~^~654~^0.005^6^0.000^~1~^~A~^^^1^0.005^0.006^5^0.005^0.006^~2, 3~^~03/01/2014~ -~36042~^~662~^0.030^6^0.001^~1~^~A~^^^1^0.028^0.032^5^0.028^0.031^~2, 3~^~03/01/2014~ -~36042~^~663~^0.235^6^0.010^~1~^~A~^^^1^0.206^0.265^5^0.210^0.260^~2, 3~^~03/01/2014~ -~36042~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~665~^0.069^6^0.002^~1~^~A~^^^1^0.065^0.075^5^0.064^0.074^~2, 3~^~03/01/2014~ -~36042~^~670~^0.043^6^0.003^~1~^~A~^^^1^0.031^0.052^5^0.035^0.051^~2, 3~^~03/01/2014~ -~36042~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~672~^0.010^6^0.001^~1~^~A~^^^1^0.008^0.014^5^0.008^0.013^~2, 3~^~03/01/2014~ -~36042~^~673~^0.164^6^0.005^~1~^~A~^^^1^0.145^0.178^5^0.150^0.178^~2, 3~^~03/01/2014~ -~36042~^~674~^2.636^6^0.070^~1~^~A~^^^1^2.404^2.812^5^2.455^2.817^~2, 3~^~03/01/2014~ -~36042~^~675~^0.552^6^0.024^~1~^~A~^^^1^0.467^0.623^5^0.489^0.615^~2, 3~^~03/01/2014~ -~36042~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36042~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36042~^~687~^0.029^6^0.001^~1~^~A~^^^1^0.026^0.031^5^0.027^0.032^~2, 3~^~03/01/2014~ -~36042~^~689~^0.012^6^0.001^~1~^~AS~^^^1^0.010^0.014^5^0.011^0.014^~2, 3~^~03/01/2014~ -~36042~^~693~^0.265^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~695~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36042~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36042~^~851~^0.058^6^0.002^~1~^~A~^^^1^0.047^0.064^5^0.051^0.064^~2, 3~^~03/01/2014~ -~36042~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~03/01/2014~ -~36042~^~853~^0.011^6^0.000^~1~^~A~^^^1^0.010^0.012^5^0.010^0.012^~2, 3~^~03/01/2014~ -~36042~^~856~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36042~^~858~^0.005^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.004^0.006^~2, 3~^~03/01/2014~ -~36043~^~312~^0.073^3^0.005^~1~^~A~^^^1^0.065^0.082^2^0.052^0.095^~2, 3~^~03/01/2014~ -~36043~^~315~^0.155^3^0.020^~1~^~A~^^^1^0.132^0.195^2^0.069^0.241^~2, 3~^~03/01/2014~ -~36043~^~404~^0.120^3^0.000^~1~^~A~^^^1^0.120^0.120^^^^~2, 3~^~03/01/2014~ -~36043~^~405~^0.200^3^0.006^~1~^~A~^^^1^0.190^0.210^2^0.175^0.225^~2, 3~^~03/01/2014~ -~36043~^~406~^1.757^3^0.038^~1~^~A~^^^1^1.690^1.820^2^1.595^1.918^~2, 3~^~03/01/2014~ -~36043~^~410~^0.470^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~502~^0.360^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~503~^0.407^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~504~^0.834^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~505~^0.815^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~506~^0.246^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~507~^0.114^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~508~^0.492^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~509~^0.369^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~510~^0.436^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~511~^0.483^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~512~^0.275^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~513~^0.388^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~514~^0.739^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~515~^2.103^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~516~^0.331^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~517~^1.165^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~518~^0.492^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~521~^0.050^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36043~^~605~^0.287^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~606~^4.366^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~607~^0.086^3^0.010^~1~^~A~^^^1^0.065^0.097^2^0.041^0.130^~2, 3~^~03/01/2014~ -~36043~^~608~^0.073^3^0.008^~1~^~A~^^^1^0.057^0.081^2^0.039^0.106^~2, 3~^~03/01/2014~ -~36043~^~609~^0.048^3^0.005^~1~^~A~^^^1^0.038^0.054^2^0.026^0.071^~2, 3~^~03/01/2014~ -~36043~^~610~^0.126^3^0.011^~1~^~A~^^^1^0.105^0.141^2^0.079^0.172^~2, 3~^~03/01/2014~ -~36043~^~611~^0.150^3^0.011^~1~^~A~^^^1^0.128^0.164^2^0.102^0.197^~2, 3~^~03/01/2014~ -~36043~^~612~^0.547^3^0.036^~1~^~A~^^^1^0.484^0.607^2^0.394^0.700^~2, 3~^~03/01/2014~ -~36043~^~613~^2.256^3^0.111^~1~^~A~^^^1^2.057^2.441^2^1.778^2.734^~2, 3~^~03/01/2014~ -~36043~^~614~^0.935^3^0.059^~1~^~A~^^^1^0.854^1.049^2^0.682^1.187^~2, 3~^~03/01/2014~ -~36043~^~615~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~03/01/2014~ -~36043~^~617~^3.292^3^0.146^~1~^~AS~^^^1^3.037^3.543^2^2.664^3.921^~2, 3~^~03/01/2014~ -~36043~^~618~^0.611^3^0.041^~1~^~AS~^^^1^0.536^0.677^2^0.435^0.788^~2, 3~^~03/01/2014~ -~36043~^~619~^0.050^3^0.004^~1~^~AS~^^^1^0.043^0.056^2^0.034^0.066^~2, 3~^~03/01/2014~ -~36043~^~620~^0.023^3^0.001^~1~^~A~^^^1^0.022^0.024^2^0.020^0.026^~2, 3~^~03/01/2014~ -~36043~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~624~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~03/01/2014~ -~36043~^~625~^0.060^3^0.005^~1~^~A~^^^1^0.051^0.069^2^0.038^0.083^~2, 3~^~03/01/2014~ -~36043~^~626~^0.167^3^0.014^~1~^~AS~^^^1^0.147^0.195^2^0.105^0.229^~2, 3~^~03/01/2014~ -~36043~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~628~^0.029^3^0.002^~1~^~A~^^^1^0.026^0.032^2^0.022^0.037^~2, 3~^~03/01/2014~ -~36043~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2014~ -~36043~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~03/01/2014~ -~36043~^~631~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.012^~1, 2, 3~^~03/01/2014~ -~36043~^~645~^3.577^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~646~^0.716^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~652~^0.061^3^0.004^~1~^~A~^^^1^0.054^0.067^2^0.045^0.077^~2, 3~^~03/01/2014~ -~36043~^~653~^0.059^3^0.006^~1~^~A~^^^1^0.051^0.071^2^0.032^0.086^~2, 3~^~03/01/2014~ -~36043~^~654~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.010^~1, 2, 3~^~03/01/2014~ -~36043~^~662~^0.025^3^0.001^~1~^~A~^^^1^0.023^0.026^2^0.021^0.029^~2, 3~^~03/01/2014~ -~36043~^~663~^0.219^3^0.020^~1~^~A~^^^1^0.198^0.258^2^0.134^0.303^~2, 3~^~03/01/2014~ -~36043~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~665~^0.043^3^0.004^~1~^~A~^^^1^0.035^0.049^2^0.025^0.062^~2, 3~^~03/01/2014~ -~36043~^~670~^0.032^3^0.002^~1~^~A~^^^1^0.028^0.035^2^0.023^0.041^~2, 3~^~03/01/2014~ -~36043~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~03/01/2014~ -~36043~^~673~^0.142^3^0.014^~1~^~A~^^^1^0.121^0.169^2^0.081^0.203^~2, 3~^~03/01/2014~ -~36043~^~674~^3.074^3^0.129^~1~^~A~^^^1^2.839^3.285^2^2.517^3.630^~2, 3~^~03/01/2014~ -~36043~^~675~^0.536^3^0.036^~1~^~A~^^^1^0.473^0.596^2^0.383^0.689^~2, 3~^~03/01/2014~ -~36043~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~03/01/2014~ -~36043~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~03/01/2014~ -~36043~^~687~^0.028^3^0.004^~1~^~A~^^^1^0.023^0.036^2^0.010^0.045^~2, 3~^~03/01/2014~ -~36043~^~689~^0.015^3^0.001^~1~^~AS~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~03/01/2014~ -~36043~^~693~^0.244^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~695~^0.044^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36043~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36043~^~851~^0.048^3^0.003^~1~^~A~^^^1^0.043^0.053^2^0.036^0.061^~2, 3~^~03/01/2014~ -~36043~^~852~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~03/01/2014~ -~36043~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~03/01/2014~ -~36043~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36043~^~858~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~03/01/2014~ -~36044~^~312~^0.073^4^0.011^~1~^~A~^^^1^0.058^0.104^3^0.039^0.106^~2, 3~^~03/01/2014~ -~36044~^~315~^0.350^4^0.015^~1~^~A~^^^1^0.327^0.389^3^0.304^0.396^~2, 3~^~03/01/2014~ -~36044~^~404~^0.280^2^^~1~^~A~^^^1^0.260^0.300^1^^^^~03/01/2014~ -~36044~^~405~^0.086^2^^~1~^~A~^^^1^0.085^0.086^1^^^^~03/01/2014~ -~36044~^~406~^2.750^2^^~1~^~A~^^^1^2.620^2.880^1^^^^~03/01/2014~ -~36044~^~410~^0.510^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36044~^~605~^0.025^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~606~^0.886^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~607~^0.002^4^0.002^~1~^~A~^^^1^0.000^0.008^3^-0.004^0.008^~1, 2, 3~^~03/01/2014~ -~36044~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~609~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~612~^0.010^4^0.003^~1~^~A~^^^1^0.000^0.016^3^-0.001^0.021^~1, 2, 3~^~03/01/2014~ -~36044~^~613~^0.550^4^0.012^~1~^~A~^^^1^0.523^0.572^3^0.511^0.589^~2, 3~^~03/01/2014~ -~36044~^~614~^0.292^4^0.012^~1~^~A~^^^1^0.271^0.314^3^0.255^0.330^~2, 3~^~03/01/2014~ -~36044~^~615~^0.013^4^0.005^~1~^~A~^^^1^0.000^0.019^3^-0.001^0.028^~1, 2, 3~^~03/01/2014~ -~36044~^~617~^1.139^4^0.063^~1~^~AS~^^^1^0.996^1.255^3^0.939^1.339^~2, 3~^~03/01/2014~ -~36044~^~618~^2.055^4^0.072^~1~^~AS~^^^1^1.917^2.203^3^1.825^2.284^~2, 3~^~03/01/2014~ -~36044~^~619~^0.242^4^0.013^~1~^~AS~^^^1^0.210^0.264^3^0.202^0.282^~2, 3~^~03/01/2014~ -~36044~^~620~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2014~ -~36044~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~624~^0.010^4^0.003^~1~^~A~^^^1^0.000^0.014^3^-0.001^0.021^~1, 2, 3~^~03/01/2014~ -~36044~^~625~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~626~^0.002^4^0.001^~1~^~AS~^^^1^0.000^0.005^3^-0.002^0.006^~2, 3~^~03/01/2014~ -~36044~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~628~^0.013^4^0.005^~1~^~A~^^^1^0.000^0.021^3^-0.003^0.028^~1, 2, 3~^~03/01/2014~ -~36044~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36044~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~645~^1.155^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~646~^2.298^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~652~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~03/01/2014~ -~36044~^~653~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~03/01/2014~ -~36044~^~654~^0.006^4^0.002^~1~^~A~^^^1^0.000^0.008^3^0.000^0.011^~1, 2, 3~^~03/01/2014~ -~36044~^~662~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~663~^0.018^4^0.007^~1~^~A~^^^1^0.000^0.028^3^-0.003^0.039^~1, 2, 3~^~03/01/2014~ -~36044~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~665~^0.007^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.001^0.016^~1, 2, 3~^~03/01/2014~ -~36044~^~670~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.004^~1, 2, 3~^~03/01/2014~ -~36044~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~672~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36044~^~673~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.002^0.006^~1, 2, 3~^~03/01/2014~ -~36044~^~674~^1.121^4^0.056^~1~^~A~^^^1^0.996^1.227^3^0.942^1.301^~2, 3~^~03/01/2014~ -~36044~^~675~^2.046^4^0.069^~1~^~A~^^^1^1.917^2.186^3^1.826^2.267^~2, 3~^~03/01/2014~ -~36044~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~685~^0.009^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.001^0.019^~1, 2, 3~^~03/01/2014~ -~36044~^~687~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~03/01/2014~ -~36044~^~689~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36044~^~693~^0.018^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36044~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~851~^0.233^4^0.010^~1~^~A~^^^1^0.210^0.251^3^0.202^0.264^~2, 3~^~03/01/2014~ -~36044~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~853~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36044~^~858~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~312~^0.204^4^0.022^~1~^~A~^^^1^0.160^0.248^3^0.135^0.274^~2, 3~^~03/01/2014~ -~36045~^~315~^0.400^4^0.021^~1~^~A~^^^1^0.359^0.457^3^0.335^0.466^~2, 3~^~03/01/2014~ -~36045~^~404~^0.145^2^^~1~^~A~^^^1^0.130^0.160^1^^^^~03/01/2014~ -~36045~^~405~^0.105^2^^~1~^~A~^^^1^0.100^0.110^1^^^^~03/01/2014~ -~36045~^~406~^0.520^2^^~1~^~A~^^^1^0.460^0.580^1^^^^~03/01/2014~ -~36045~^~410~^0.280^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36045~^~605~^0.045^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~606~^1.819^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~607~^0.028^4^0.002^~1~^~A~^^^1^0.022^0.032^3^0.021^0.035^~2, 3~^~03/01/2014~ -~36045~^~608~^0.017^4^0.002^~1~^~A~^^^1^0.012^0.021^3^0.011^0.023^~2, 3~^~03/01/2014~ -~36045~^~609~^0.014^4^0.001^~1~^~A~^^^1^0.011^0.016^3^0.009^0.018^~2, 3~^~03/01/2014~ -~36045~^~610~^0.042^4^0.007^~1~^~A~^^^1^0.030^0.061^3^0.021^0.063^~2, 3~^~03/01/2014~ -~36045~^~611~^0.036^4^0.004^~1~^~A~^^^1^0.027^0.045^3^0.023^0.048^~2, 3~^~03/01/2014~ -~36045~^~612~^0.137^4^0.014^~1~^~A~^^^1^0.108^0.168^3^0.093^0.180^~2, 3~^~03/01/2014~ -~36045~^~613~^1.048^4^0.081^~1~^~A~^^^1^0.903^1.249^3^0.789^1.307^~2, 3~^~03/01/2014~ -~36045~^~614~^0.449^4^0.033^~1~^~A~^^^1^0.385^0.530^3^0.344^0.553^~2, 3~^~03/01/2014~ -~36045~^~615~^0.009^4^0.001^~1~^~A~^^^1^0.008^0.012^3^0.007^0.012^~2, 3~^~03/01/2014~ -~36045~^~617~^1.525^4^0.127^~1~^~AS~^^^1^1.297^1.853^3^1.119^1.930^~2, 3~^~03/01/2014~ -~36045~^~618~^0.764^4^0.063^~1~^~AS~^^^1^0.657^0.937^3^0.564^0.965^~2, 3~^~03/01/2014~ -~36045~^~619~^0.227^4^0.002^~1~^~AS~^^^1^0.222^0.229^3^0.222^0.232^~2, 3~^~03/01/2014~ -~36045~^~620~^0.011^4^0.002^~1~^~A~^^^1^0.008^0.014^3^0.006^0.015^~2, 3~^~03/01/2014~ -~36045~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~624~^0.004^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~03/01/2014~ -~36045~^~625~^0.009^4^0.001^~1~^~A~^^^1^0.007^0.012^3^0.006^0.013^~2, 3~^~03/01/2014~ -~36045~^~626~^0.079^4^0.008^~1~^~AS~^^^1^0.064^0.099^3^0.055^0.104^~2, 3~^~03/01/2014~ -~36045~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~628~^0.025^4^0.003^~1~^~A~^^^1^0.021^0.033^3^0.017^0.034^~2, 3~^~03/01/2014~ -~36045~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36045~^~631~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36045~^~645~^1.648^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~646~^1.034^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~652~^0.014^4^0.001^~1~^~A~^^^1^0.011^0.017^3^0.009^0.018^~2, 3~^~03/01/2014~ -~36045~^~653~^0.017^4^0.001^~1~^~A~^^^1^0.014^0.021^3^0.013^0.022^~2, 3~^~03/01/2014~ -~36045~^~654~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~03/01/2014~ -~36045~^~662~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~03/01/2014~ -~36045~^~663~^0.035^4^0.003^~1~^~A~^^^1^0.029^0.042^3^0.026^0.044^~2, 3~^~03/01/2014~ -~36045~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~665~^0.007^4^0.001^~1~^~A~^^^1^0.004^0.011^3^0.002^0.012^~2, 3~^~03/01/2014~ -~36045~^~670~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.005^0.009^~2, 3~^~03/01/2014~ -~36045~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~672~^0.022^4^0.002^~1~^~A~^^^1^0.019^0.027^3^0.016^0.028^~2, 3~^~03/01/2014~ -~36045~^~673~^0.076^4^0.007^~1~^~A~^^^1^0.062^0.095^3^0.054^0.099^~2, 3~^~03/01/2014~ -~36045~^~674~^1.489^4^0.125^~1~^~A~^^^1^1.264^1.811^3^1.092^1.887^~2, 3~^~03/01/2014~ -~36045~^~675~^0.751^4^0.061^~1~^~A~^^^1^0.648^0.918^3^0.556^0.945^~2, 3~^~03/01/2014~ -~36045~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~685~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36045~^~687~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.012^3^0.007^0.012^~2, 3~^~03/01/2014~ -~36045~^~689~^0.007^4^0.003^~1~^~AS~^^^1^0.000^0.012^3^-0.001^0.015^~2, 3~^~03/01/2014~ -~36045~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36045~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~851~^0.226^4^0.001^~1~^~A~^^^1^0.222^0.228^3^0.222^0.231^~2, 3~^~03/01/2014~ -~36045~^~852~^0.004^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.001^0.008^~1, 2, 3~^~03/01/2014~ -~36045~^~853~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.001^0.008^~1, 2, 3~^~03/01/2014~ -~36045~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36045~^~858~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.004^3^0.000^0.005^~1, 2, 3~^~03/01/2014~ -~36046~^~312~^0.074^12^0.006^~1~^~A~^^^1^0.043^0.099^11^0.062^0.087^~2, 3~^~04/01/2014~ -~36046~^~315~^0.215^12^0.009^~1~^~A~^^^1^0.158^0.267^11^0.195^0.235^~2, 3~^~04/01/2014~ -~36046~^~404~^0.072^6^0.007^~1~^~A~^^^1^0.050^0.090^5^0.054^0.090^~2, 3~^~04/01/2014~ -~36046~^~405~^0.123^6^0.009^~1~^~A~^^^1^0.100^0.150^5^0.100^0.147^~2, 3~^~04/01/2014~ -~36046~^~406~^1.162^6^0.061^~1~^~A~^^^1^0.990^1.440^5^1.006^1.317^~2, 3~^~04/01/2014~ -~36046~^~410~^0.187^4^0.012^~1~^~A~^^^1^0.170^0.220^3^0.150^0.225^~2, 3~^~04/01/2014~ -~36046~^~415~^0.084^6^0.002^~1~^~A~^^^1^0.079^0.090^5^0.079^0.088^~2, 3~^~04/01/2014~ -~36046~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~502~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~503~^0.119^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~504~^0.227^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~505~^0.080^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~506~^0.057^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~507~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~508~^0.165^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~509~^0.085^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~510~^0.142^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~511~^0.154^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~512~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~513~^0.119^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~514~^0.238^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~515~^1.308^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~516~^0.103^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~517~^0.386^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~518~^0.165^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36046~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~36046~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~606~^0.366^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~607~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.010^5^-0.003^0.006^~1, 2, 3~^~04/01/2014~ -~36046~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~609~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~610~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~611~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.004^~1, 2, 3~^~04/01/2014~ -~36046~^~612~^0.011^6^0.002^~1~^~A~^^^1^0.005^0.014^5^0.006^0.015^~2, 3~^~04/01/2014~ -~36046~^~613~^0.259^6^0.018^~1~^~A~^^^1^0.200^0.325^5^0.214^0.305^~2, 3~^~04/01/2014~ -~36046~^~614~^0.071^6^0.004^~1~^~A~^^^1^0.057^0.084^5^0.061^0.082^~2, 3~^~04/01/2014~ -~36046~^~615~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~04/01/2014~ -~36046~^~617~^0.898^6^0.091^~1~^~AS~^^^1^0.659^1.282^5^0.664^1.132^~2, 3~^~04/01/2014~ -~36046~^~618~^0.447^6^0.051^~1~^~AS~^^^1^0.286^0.655^5^0.316^0.579^~2, 3~^~04/01/2014~ -~36046~^~619~^0.077^6^0.020^~1~^~AS~^^^1^0.024^0.146^5^0.025^0.129^~2, 3~^~04/01/2014~ -~36046~^~620~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~621~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36046~^~624~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.006^5^0.003^0.005^~2, 3~^~04/01/2014~ -~36046~^~625~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~626~^0.012^6^0.002^~1~^~AS~^^^1^0.007^0.022^5^0.006^0.018^~2, 3~^~04/01/2014~ -~36046~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~628~^0.014^6^0.003^~1~^~A~^^^1^0.005^0.024^5^0.007^0.021^~2, 3~^~04/01/2014~ -~36046~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.002^5^-0.001^0.001^~1, 2, 3~^~04/01/2014~ -~36046~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~04/01/2014~ -~36046~^~631~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~645~^0.926^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~646~^0.528^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~652~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~653~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~654~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~662~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~663~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.013^5^0.003^0.010^~2, 3~^~04/01/2014~ -~36046~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~665~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~670~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~36046~^~672~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~36046~^~673~^0.012^6^0.002^~1~^~A~^^^1^0.007^0.022^5^0.006^0.018^~2, 3~^~04/01/2014~ -~36046~^~674~^0.891^6^0.092^~1~^~A~^^^1^0.652^1.276^5^0.656^1.126^~2, 3~^~04/01/2014~ -~36046~^~675~^0.444^6^0.051^~1~^~A~^^^1^0.286^0.651^5^0.314^0.574^~2, 3~^~04/01/2014~ -~36046~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~36046~^~685~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.000^0.004^~1, 2, 3~^~04/01/2014~ -~36046~^~687~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~04/01/2014~ -~36046~^~689~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.006^5^-0.001^0.005^~2, 3~^~04/01/2014~ -~36046~^~693~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36046~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~851~^0.075^6^0.019^~1~^~A~^^^1^0.024^0.141^5^0.025^0.125^~2, 3~^~04/01/2014~ -~36046~^~852~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.006^5^-0.001^0.005^~1, 2, 3~^~04/01/2014~ -~36046~^~853~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36046~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~312~^0.067^6^0.007^~1~^~A~^^^1^0.043^0.093^5^0.048^0.085^~2, 3~^~04/01/2014~ -~36047~^~315~^0.213^6^0.008^~1~^~A~^^^1^0.195^0.243^5^0.192^0.234^~2, 3~^~04/01/2014~ -~36047~^~404~^0.067^3^0.007^~1~^~A~^^^1^0.060^0.080^2^0.038^0.095^~2, 3~^~04/01/2014~ -~36047~^~405~^0.117^3^0.012^~1~^~A~^^^1^0.100^0.140^2^0.065^0.168^~2, 3~^~04/01/2014~ -~36047~^~406~^1.140^3^0.006^~1~^~A~^^^1^1.130^1.150^2^1.115^1.165^~2, 3~^~04/01/2014~ -~36047~^~410~^0.180^2^^~1~^~A~^^^1^0.170^0.190^1^^^^~04/01/2014~ -~36047~^~415~^0.082^3^0.002^~1~^~A~^^^1^0.079^0.086^2^0.072^0.091^~2, 3~^~04/01/2014~ -~36047~^~501~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~502~^0.104^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~503~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~504~^0.243^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~505~^0.081^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~506~^0.058^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~507~^0.069^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~508~^0.173^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~509~^0.092^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~510~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~511~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~512~^0.081^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~513~^0.127^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~514~^0.254^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~515~^1.444^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~516~^0.104^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~517~^0.416^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~518~^0.173^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36047~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36047~^~605~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~606~^0.336^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~607~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~04/01/2014~ -~36047~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~610~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.003^0.008^~1, 2, 3~^~04/01/2014~ -~36047~^~612~^0.013^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~04/01/2014~ -~36047~^~613~^0.226^3^0.013^~1~^~A~^^^1^0.200^0.244^2^0.169^0.284^~2, 3~^~04/01/2014~ -~36047~^~614~^0.068^3^0.006^~1~^~A~^^^1^0.057^0.076^2^0.044^0.092^~2, 3~^~04/01/2014~ -~36047~^~615~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~04/01/2014~ -~36047~^~617~^0.806^3^0.099^~1~^~AS~^^^1^0.659^0.994^2^0.381^1.231^~2, 3~^~04/01/2014~ -~36047~^~618~^0.526^3^0.066^~1~^~AS~^^^1^0.437^0.655^2^0.242^0.810^~2, 3~^~04/01/2014~ -~36047~^~619~^0.119^3^0.015^~1~^~AS~^^^1^0.095^0.146^2^0.055^0.182^~2, 3~^~04/01/2014~ -~36047~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~624~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~04/01/2014~ -~36047~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~626~^0.007^3^0.000^~1~^~AS~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2014~ -~36047~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~628~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.024^2^0.009^0.030^~2, 3~^~04/01/2014~ -~36047~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~36047~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~645~^0.836^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~646~^0.645^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~652~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2014~ -~36047~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2014~ -~36047~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~663~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2014~ -~36047~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~665~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~36047~^~670~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~671~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~36047~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36047~^~673~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2014~ -~36047~^~674~^0.801^3^0.100^~1~^~A~^^^1^0.652^0.990^2^0.372^1.230^~2, 3~^~04/01/2014~ -~36047~^~675~^0.522^3^0.066^~1~^~A~^^^1^0.433^0.651^2^0.239^0.806^~2, 3~^~04/01/2014~ -~36047~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2014~ -~36047~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2014~ -~36047~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~695~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36047~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~851~^0.115^3^0.014^~1~^~A~^^^1^0.092^0.141^2^0.053^0.176^~2, 3~^~04/01/2014~ -~36047~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36047~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~312~^0.071^3^0.014^~1~^~A~^^^1^0.043^0.089^2^0.010^0.132^~2, 3~^~04/01/2014~ -~36048~^~315~^0.206^3^0.013^~1~^~A~^^^1^0.180^0.223^2^0.149^0.264^~2, 3~^~04/01/2014~ -~36048~^~404~^0.077^3^0.013^~1~^~A~^^^1^0.050^0.090^2^0.019^0.134^~2, 3~^~04/01/2014~ -~36048~^~405~^0.130^3^0.015^~1~^~A~^^^1^0.100^0.150^2^0.064^0.196^~2, 3~^~04/01/2014~ -~36048~^~406~^1.183^3^0.134^~1~^~A~^^^1^0.990^1.440^2^0.608^1.759^~2, 3~^~04/01/2014~ -~36048~^~410~^0.170^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~415~^0.086^3^0.002^~1~^~A~^^^1^0.083^0.090^2^0.076^0.095^~2, 3~^~04/01/2014~ -~36048~^~501~^0.043^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~502~^0.096^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~503~^0.107^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~504~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~505~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~506~^0.054^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~507~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~508~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~509~^0.075^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~510~^0.129^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~511~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~512~^0.064^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~513~^0.107^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~514~^0.214^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~515~^1.136^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~516~^0.096^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~517~^0.343^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~518~^0.150^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36048~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36048~^~605~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~606~^0.360^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~610~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2014~ -~36048~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2014~ -~36048~^~612~^0.007^3^0.003^~1~^~A~^^^1^0.005^0.013^2^-0.003^0.019^~2, 3~^~04/01/2014~ -~36048~^~613~^0.267^3^0.016^~1~^~A~^^^1^0.271^0.325^2^0.222^0.363^~2, 3~^~04/01/2014~ -~36048~^~614~^0.068^3^0.007^~1~^~A~^^^1^0.062^0.084^2^0.046^0.104^~2, 3~^~04/01/2014~ -~36048~^~615~^0.006^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2014~ -~36048~^~617~^0.902^3^0.153^~1~^~AS~^^^1^0.767^1.282^2^0.332^1.647^~2, 3~^~04/01/2014~ -~36048~^~618~^0.336^3^0.050^~1~^~AS~^^^1^0.286^0.459^2^0.153^0.584^~2, 3~^~04/01/2014~ -~36048~^~619~^0.033^3^0.012^~1~^~AS~^^^1^0.024^0.059^2^-0.013^0.085^~2, 3~^~04/01/2014~ -~36048~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~621~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2014~ -~36048~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2014~ -~36048~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~626~^0.015^3^0.003^~1~^~AS~^^^1^0.013^0.022^2^0.004^0.028^~2, 3~^~04/01/2014~ -~36048~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~628~^0.008^3^0.003^~1~^~A~^^^1^0.005^0.014^2^-0.003^0.020^~2, 3~^~04/01/2014~ -~36048~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2014~ -~36048~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~645~^0.927^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~646~^0.375^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~654~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~663~^0.008^3^0.002^~1~^~A~^^^1^0.006^0.013^2^-0.002^0.018^~2, 3~^~04/01/2014~ -~36048~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~665~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2014~ -~36048~^~670~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2014~ -~36048~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36048~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~673~^0.015^3^0.003^~1~^~A~^^^1^0.013^0.022^2^0.004^0.028^~2, 3~^~04/01/2014~ -~36048~^~674~^0.894^3^0.154^~1~^~A~^^^1^0.754^1.276^2^0.316^1.646^~2, 3~^~04/01/2014~ -~36048~^~675~^0.334^3^0.048^~1~^~A~^^^1^0.286^0.453^2^0.158^0.574^~2, 3~^~04/01/2014~ -~36048~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36048~^~685~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~687~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36048~^~689~^0.004^3^0.001^~1~^~AS~^^^1^0.002^0.006^2^-0.001^0.010^~2, 3~^~04/01/2014~ -~36048~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~695~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36048~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~851~^0.032^3^0.011^~1~^~A~^^^1^0.024^0.057^2^-0.011^0.082^~2, 3~^~04/01/2014~ -~36048~^~852~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.001^0.010^~1, 2, 3~^~04/01/2014~ -~36048~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36048~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36049~^~312~^0.068^4^0.001^~1~^~A~^^^1^0.066^0.070^3^0.064^0.071^~2, 3~^~05/01/2014~ -~36049~^~315~^0.129^4^0.004^~1~^~A~^^^1^0.119^0.140^3^0.115^0.143^~2, 3~^~05/01/2014~ -~36049~^~404~^0.065^2^^~1~^~A~^^^1^0.040^0.090^1^^^^~05/01/2014~ -~36049~^~405~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~05/01/2014~ -~36049~^~406~^0.780^2^^~1~^~A~^^^1^0.710^0.850^1^^^^~05/01/2014~ -~36049~^~410~^0.370^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36049~^~415~^0.125^2^^~1~^~A~^^^1^0.110^0.140^1^^^^~05/01/2014~ -~36049~^~605~^0.421^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~606~^7.520^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~607~^0.230^4^0.020^~1~^~A~^^^1^0.199^0.286^3^0.167^0.294^~2, 3~^~05/01/2014~ -~36049~^~608~^0.190^4^0.017^~1~^~A~^^^1^0.165^0.237^3^0.136^0.243^~2, 3~^~05/01/2014~ -~36049~^~609~^0.120^4^0.010^~1~^~A~^^^1^0.105^0.149^3^0.087^0.152^~2, 3~^~05/01/2014~ -~36049~^~610~^0.290^4^0.024^~1~^~A~^^^1^0.255^0.359^3^0.214^0.367^~2, 3~^~05/01/2014~ -~36049~^~611~^0.330^4^0.028^~1~^~A~^^^1^0.280^0.409^3^0.239^0.420^~2, 3~^~05/01/2014~ -~36049~^~612~^1.078^4^0.099^~1~^~A~^^^1^0.886^1.341^3^0.764^1.392^~2, 3~^~05/01/2014~ -~36049~^~613~^3.522^4^0.284^~1~^~A~^^^1^2.924^4.206^3^2.617^4.426^~2, 3~^~05/01/2014~ -~36049~^~614~^1.515^4^0.122^~1~^~A~^^^1^1.240^1.814^3^1.126^1.903^~2, 3~^~05/01/2014~ -~36049~^~615~^0.028^4^0.001^~1~^~A~^^^1^0.026^0.032^3^0.024^0.032^~2, 3~^~05/01/2014~ -~36049~^~617~^3.711^4^0.274^~1~^~AS~^^^1^3.088^4.321^3^2.839^4.582^~2, 3~^~05/01/2014~ -~36049~^~618~^1.848^4^0.048^~1~^~AS~^^^1^1.769^1.973^3^1.696^2.001^~2, 3~^~05/01/2014~ -~36049~^~619~^0.205^4^0.013^~1~^~AS~^^^1^0.180^0.239^3^0.164^0.247^~2, 3~^~05/01/2014~ -~36049~^~620~^0.022^4^0.002^~1~^~A~^^^1^0.019^0.028^3^0.015^0.029^~2, 3~^~05/01/2014~ -~36049~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~624~^0.015^4^0.000^~1~^~A~^^^1^0.014^0.016^3^0.013^0.016^~2, 3~^~05/01/2014~ -~36049~^~625~^0.105^4^0.009^~1~^~A~^^^1^0.085^0.122^3^0.077^0.133^~2, 3~^~05/01/2014~ -~36049~^~626~^0.209^4^0.029^~1~^~AS~^^^1^0.141^0.278^3^0.116^0.302^~2, 3~^~05/01/2014~ -~36049~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~628~^0.035^4^0.003^~1~^~A~^^^1^0.029^0.042^3^0.025^0.044^~2, 3~^~05/01/2014~ -~36049~^~629~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.004^~2, 3~^~05/01/2014~ -~36049~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~36049~^~631~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.004^0.009^~2, 3~^~05/01/2014~ -~36049~^~645~^4.088^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~646~^2.107^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~652~^0.116^4^0.009^~1~^~A~^^^1^0.096^0.139^3^0.086^0.146^~2, 3~^~05/01/2014~ -~36049~^~653~^0.080^4^0.009^~1~^~A~^^^1^0.058^0.094^3^0.053^0.107^~2, 3~^~05/01/2014~ -~36049~^~654~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~05/01/2014~ -~36049~^~662~^0.037^4^0.004^~1~^~A~^^^1^0.029^0.047^3^0.025^0.050^~2, 3~^~05/01/2014~ -~36049~^~663~^0.297^4^0.027^~1~^~A~^^^1^0.229^0.347^3^0.212^0.381^~2, 3~^~05/01/2014~ -~36049~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~665~^0.087^4^0.006^~1~^~A~^^^1^0.081^0.105^3^0.068^0.106^~2, 3~^~05/01/2014~ -~36049~^~670~^0.062^4^0.006^~1~^~A~^^^1^0.048^0.075^3^0.043^0.080^~2, 3~^~05/01/2014~ -~36049~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~672~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.002^0.005^~2, 3~^~05/01/2014~ -~36049~^~673~^0.171^4^0.027^~1~^~A~^^^1^0.112^0.238^3^0.087^0.256^~2, 3~^~05/01/2014~ -~36049~^~674~^3.414^4^0.248^~1~^~A~^^^1^2.859^3.974^3^2.626^4.202^~2, 3~^~05/01/2014~ -~36049~^~675~^1.699^4^0.051^~1~^~A~^^^1^1.629^1.844^3^1.538^1.860^~2, 3~^~05/01/2014~ -~36049~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~685~^0.012^4^0.001^~1~^~A~^^^1^0.011^0.013^3^0.011^0.014^~2, 3~^~05/01/2014~ -~36049~^~687~^0.028^4^0.004^~1~^~A~^^^1^0.018^0.039^3^0.015^0.042^~2, 3~^~05/01/2014~ -~36049~^~689~^0.013^4^0.001^~1~^~AS~^^^1^0.011^0.017^3^0.009^0.018^~2, 3~^~05/01/2014~ -~36049~^~693~^0.334^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~695~^0.087^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36049~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~851~^0.193^4^0.013^~1~^~A~^^^1^0.168^0.226^3^0.153^0.233^~2, 3~^~05/01/2014~ -~36049~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~05/01/2014~ -~36049~^~853~^0.013^4^0.001^~1~^~A~^^^1^0.010^0.017^3^0.009^0.018^~2, 3~^~05/01/2014~ -~36049~^~856~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36049~^~858~^0.004^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.002^0.006^~1, 2, 3~^~05/01/2014~ -~36050~^~312~^0.055^12^0.003^~1~^~A~^^^1^0.038^0.070^11^0.047^0.062^~2, 3~^~05/01/2014~ -~36050~^~315~^0.118^12^0.004^~1~^~A~^^^1^0.094^0.140^11^0.109^0.127^~2, 3~^~05/01/2014~ -~36050~^~404~^0.063^6^0.007^~1~^~A~^^^1^0.040^0.090^5^0.045^0.082^~2, 3~^~05/01/2014~ -~36050~^~405~^0.223^6^0.008^~1~^~A~^^^1^0.210^0.260^5^0.203^0.244^~2, 3~^~05/01/2014~ -~36050~^~406~^0.627^6^0.053^~1~^~A~^^^1^0.510^0.850^5^0.489^0.764^~2, 3~^~05/01/2014~ -~36050~^~410~^0.332^4^0.015^~1~^~A~^^^1^0.300^0.370^3^0.285^0.380^~2, 3~^~05/01/2014~ -~36050~^~415~^0.122^6^0.011^~1~^~A~^^^1^0.100^0.170^5^0.092^0.151^~2, 3~^~05/01/2014~ -~36050~^~501~^0.151^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~502~^0.418^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~503~^0.520^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~504~^1.128^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~505~^0.914^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~506~^0.306^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~507~^0.117^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~508~^0.603^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~509~^0.535^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~510~^0.686^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~511~^0.457^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~512~^0.306^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~513~^0.374^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~514~^0.788^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~515~^2.480^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~516~^0.248^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~517~^1.585^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~518~^0.647^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36050~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2014~ -~36050~^~605~^0.540^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~606~^8.365^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~607~^0.253^12^0.012^~1~^~A~^^^1^0.199^0.332^11^0.226^0.280^~2, 3~^~05/01/2014~ -~36050~^~608~^0.212^12^0.011^~1~^~A~^^^1^0.165^0.285^11^0.188^0.235^~2, 3~^~05/01/2014~ -~36050~^~609~^0.135^12^0.007^~1~^~A~^^^1^0.105^0.185^11^0.119^0.151^~2, 3~^~05/01/2014~ -~36050~^~610~^0.330^12^0.017^~1~^~A~^^^1^0.255^0.450^11^0.292^0.367^~2, 3~^~05/01/2014~ -~36050~^~611~^0.377^12^0.020^~1~^~A~^^^1^0.280^0.515^11^0.333^0.420^~2, 3~^~05/01/2014~ -~36050~^~612~^1.212^12^0.065^~1~^~A~^^^1^0.886^1.680^11^1.069^1.355^~2, 3~^~05/01/2014~ -~36050~^~613~^3.954^12^0.180^~1~^~A~^^^1^2.924^5.148^11^3.559^4.349^~2, 3~^~05/01/2014~ -~36050~^~614~^1.620^12^0.074^~1~^~A~^^^1^1.240^1.960^11^1.457^1.782^~2, 3~^~05/01/2014~ -~36050~^~615~^0.034^12^0.002^~1~^~A~^^^1^0.026^0.048^11^0.030^0.039^~2, 3~^~05/01/2014~ -~36050~^~617~^4.284^12^0.256^~1~^~AS~^^^1^3.088^6.455^11^3.721^4.848^~2, 3~^~05/01/2014~ -~36050~^~618~^2.427^12^0.193^~1~^~AS~^^^1^1.706^3.890^11^2.002^2.853^~2, 3~^~05/01/2014~ -~36050~^~619~^0.262^12^0.027^~1~^~AS~^^^1^0.164^0.484^11^0.203^0.320^~2, 3~^~05/01/2014~ -~36050~^~620~^0.023^12^0.001^~1~^~A~^^^1^0.019^0.030^11^0.021^0.026^~2, 3~^~05/01/2014~ -~36050~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~624~^0.020^12^0.002^~1~^~A~^^^1^0.013^0.033^11^0.015^0.024^~2, 3~^~05/01/2014~ -~36050~^~625~^0.117^12^0.007^~1~^~A~^^^1^0.085^0.173^11^0.101^0.133^~2, 3~^~05/01/2014~ -~36050~^~626~^0.218^12^0.013^~1~^~AS~^^^1^0.141^0.286^11^0.189^0.247^~2, 3~^~05/01/2014~ -~36050~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~628~^0.039^12^0.002^~1~^~A~^^^1^0.029^0.047^11^0.035^0.043^~2, 3~^~05/01/2014~ -~36050~^~629~^0.004^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.003^0.005^~1, 2, 3~^~05/01/2014~ -~36050~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.000^0.001^~2, 3~^~05/01/2014~ -~36050~^~631~^0.007^12^0.000^~1~^~A~^^^1^0.005^0.010^11^0.006^0.008^~2, 3~^~05/01/2014~ -~36050~^~645~^4.686^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~646~^2.746^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~652~^0.128^12^0.007^~1~^~A~^^^1^0.096^0.178^11^0.112^0.143^~2, 3~^~05/01/2014~ -~36050~^~653~^0.084^12^0.004^~1~^~A~^^^1^0.058^0.109^11^0.075^0.093^~2, 3~^~05/01/2014~ -~36050~^~654~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.013^11^0.008^0.011^~2, 3~^~05/01/2014~ -~36050~^~662~^0.040^12^0.002^~1~^~A~^^^1^0.029^0.056^11^0.035^0.045^~2, 3~^~05/01/2014~ -~36050~^~663~^0.393^12^0.091^~1~^~A~^^^1^0.208^1.365^11^0.193^0.592^~2, 3~^~05/01/2014~ -~36050~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~665~^0.106^12^0.008^~1~^~A~^^^1^0.081^0.164^11^0.089^0.124^~2, 3~^~05/01/2014~ -~36050~^~670~^0.068^12^0.004^~1~^~A~^^^1^0.048^0.099^11^0.059^0.077^~2, 3~^~05/01/2014~ -~36050~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~672~^0.005^12^0.001^~1~^~A~^^^1^0.003^0.015^11^0.003^0.007^~2, 3~^~05/01/2014~ -~36050~^~673~^0.178^12^0.011^~1~^~A~^^^1^0.112^0.238^11^0.153^0.203^~2, 3~^~05/01/2014~ -~36050~^~674~^3.892^12^0.184^~1~^~A~^^^1^2.859^5.090^11^3.487^4.297^~2, 3~^~05/01/2014~ -~36050~^~675~^2.254^12^0.190^~1~^~A~^^^1^1.547^3.738^11^1.835^2.672^~2, 3~^~05/01/2014~ -~36050~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36050~^~685~^0.015^12^0.001^~1~^~A~^^^1^0.011^0.026^11^0.012^0.018^~2, 3~^~05/01/2014~ -~36050~^~687~^0.028^12^0.002^~1~^~A~^^^1^0.018^0.039^11^0.024^0.031^~2, 3~^~05/01/2014~ -~36050~^~689~^0.015^12^0.001^~1~^~AS~^^^1^0.011^0.021^11^0.013^0.017^~2, 3~^~05/01/2014~ -~36050~^~693~^0.433^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~695~^0.107^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36050~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36050~^~851~^0.246^12^0.025^~1~^~A~^^^1^0.150^0.456^11^0.190^0.302^~2, 3~^~05/01/2014~ -~36050~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36050~^~853~^0.014^12^0.001^~1~^~A~^^^1^0.010^0.018^11^0.012^0.015^~2, 3~^~05/01/2014~ -~36050~^~856~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36050~^~858~^0.003^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~36051~^~312~^0.061^4^0.001^~1~^~A~^^^1^0.059^0.064^3^0.057^0.065^~2, 3~^~05/01/2014~ -~36051~^~315~^0.246^4^0.016^~1~^~A~^^^1^0.200^0.272^3^0.196^0.296^~2, 3~^~05/01/2014~ -~36051~^~404~^0.230^2^^~1~^~A~^^^1^0.200^0.260^1^^^^~05/01/2014~ -~36051~^~405~^0.340^2^^~1~^~A~^^^1^0.340^0.340^^^^^~05/01/2014~ -~36051~^~406~^1.985^2^^~1~^~A~^^^1^1.770^2.200^1^^^^~05/01/2014~ -~36051~^~410~^0.390^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36051~^~415~^0.060^2^^~1~^~A~^^^1^0.060^0.060^^^^^~05/01/2014~ -~36051~^~605~^0.635^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~606~^12.976^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~607~^0.393^4^0.015^~1~^~A~^^^1^0.373^0.438^3^0.344^0.441^~2, 3~^~05/01/2014~ -~36051~^~608~^0.329^4^0.014^~1~^~A~^^^1^0.314^0.370^3^0.286^0.373^~2, 3~^~05/01/2014~ -~36051~^~609~^0.210^4^0.009^~1~^~A~^^^1^0.199^0.237^3^0.181^0.239^~2, 3~^~05/01/2014~ -~36051~^~610~^0.504^4^0.021^~1~^~A~^^^1^0.476^0.566^3^0.438^0.571^~2, 3~^~05/01/2014~ -~36051~^~611~^0.581^4^0.022^~1~^~A~^^^1^0.543^0.644^3^0.512^0.651^~2, 3~^~05/01/2014~ -~36051~^~612~^1.810^4^0.072^~1~^~A~^^^1^1.675^2.012^3^1.582^2.039^~2, 3~^~05/01/2014~ -~36051~^~613~^6.202^4^0.198^~1~^~A~^^^1^5.716^6.540^3^5.570^6.833^~2, 3~^~05/01/2014~ -~36051~^~614~^2.567^4^0.058^~1~^~A~^^^1^2.484^2.731^3^2.383^2.751^~2, 3~^~05/01/2014~ -~36051~^~615~^0.043^4^0.002^~1~^~A~^^^1^0.041^0.048^3^0.038^0.049^~2, 3~^~05/01/2014~ -~36051~^~617~^5.752^4^0.162^~1~^~AS~^^^1^5.449^6.044^3^5.236^6.268^~2, 3~^~05/01/2014~ -~36051~^~618~^2.072^4^0.129^~1~^~AS~^^^1^1.735^2.360^3^1.663^2.481^~2, 3~^~05/01/2014~ -~36051~^~619~^0.208^4^0.016^~1~^~AS~^^^1^0.165^0.239^3^0.159^0.257^~2, 3~^~05/01/2014~ -~36051~^~620~^0.033^4^0.002^~1~^~A~^^^1^0.027^0.035^3^0.027^0.039^~2, 3~^~05/01/2014~ -~36051~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36051~^~624~^0.019^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.015^0.022^~2, 3~^~05/01/2014~ -~36051~^~625~^0.161^4^0.007^~1~^~A~^^^1^0.148^0.182^3^0.138^0.184^~2, 3~^~05/01/2014~ -~36051~^~626~^0.313^4^0.024^~1~^~AS~^^^1^0.271^0.381^3^0.237^0.388^~2, 3~^~05/01/2014~ -~36051~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36051~^~628~^0.047^4^0.002^~1~^~A~^^^1^0.042^0.051^3^0.041^0.053^~2, 3~^~05/01/2014~ -~36051~^~629~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.006^~2, 3~^~05/01/2014~ -~36051~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.003^3^-0.002^0.003^~2, 3~^~05/01/2014~ -~36051~^~631~^0.010^4^0.001^~1~^~A~^^^1^0.009^0.011^3^0.009^0.012^~2, 3~^~05/01/2014~ -~36051~^~645~^6.309^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~646~^2.361^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~652~^0.190^4^0.008^~1~^~A~^^^1^0.172^0.211^3^0.164^0.215^~2, 3~^~05/01/2014~ -~36051~^~653~^0.118^4^0.006^~1~^~A~^^^1^0.106^0.133^3^0.100^0.136^~2, 3~^~05/01/2014~ -~36051~^~654~^0.010^4^0.000^~1~^~A~^^^1^0.009^0.011^3^0.009^0.011^~2, 3~^~05/01/2014~ -~36051~^~662~^0.058^4^0.003^~1~^~A~^^^1^0.052^0.066^3^0.049^0.068^~2, 3~^~05/01/2014~ -~36051~^~663~^0.439^4^0.020^~1~^~A~^^^1^0.411^0.497^3^0.377^0.502^~2, 3~^~05/01/2014~ -~36051~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36051~^~665~^0.136^4^0.010^~1~^~A~^^^1^0.115^0.161^3^0.105^0.168^~2, 3~^~05/01/2014~ -~36051~^~670~^0.094^4^0.005^~1~^~A~^^^1^0.083^0.105^3^0.079^0.109^~2, 3~^~05/01/2014~ -~36051~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36051~^~672~^0.006^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.003^0.008^~2, 3~^~05/01/2014~ -~36051~^~673~^0.254^4^0.021^~1~^~A~^^^1^0.215^0.315^3^0.186^0.322^~2, 3~^~05/01/2014~ -~36051~^~674~^5.312^4^0.148^~1~^~A~^^^1^5.029^5.590^3^4.840^5.785^~2, 3~^~05/01/2014~ -~36051~^~675~^1.842^4^0.136^~1~^~A~^^^1^1.469^2.121^3^1.409^2.274^~2, 3~^~05/01/2014~ -~36051~^~676~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.002^0.003^~1, 2, 3~^~05/01/2014~ -~36051~^~685~^0.008^4^0.001^~1~^~A~^^^1^0.006^0.011^3^0.005^0.011^~2, 3~^~05/01/2014~ -~36051~^~687~^0.035^4^0.002^~1~^~A~^^^1^0.032^0.041^3^0.029^0.042^~2, 3~^~05/01/2014~ -~36051~^~689~^0.023^4^0.002^~1~^~AS~^^^1^0.020^0.028^3^0.017^0.029^~2, 3~^~05/01/2014~ -~36051~^~693~^0.498^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~695~^0.137^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36051~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36051~^~851~^0.199^4^0.015^~1~^~A~^^^1^0.157^0.228^3^0.151^0.246^~2, 3~^~05/01/2014~ -~36051~^~852~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~36051~^~853~^0.022^4^0.001^~1~^~A~^^^1^0.020^0.026^3^0.018^0.027^~2, 3~^~05/01/2014~ -~36051~^~856~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36051~^~858~^0.005^4^0.000^~1~^~A~^^^1^0.005^0.006^3^0.004^0.006^~2, 3~^~05/01/2014~ -~36052~^~312~^0.069^12^0.003^~1~^~A~^^^1^0.059^0.091^11^0.061^0.076^~2, 3~^~05/01/2014~ -~36052~^~315~^0.279^12^0.021^~1~^~A~^^^1^0.200^0.452^11^0.234^0.324^~2, 3~^~05/01/2014~ -~36052~^~404~^0.223^6^0.023^~1~^~A~^^^1^0.160^0.280^5^0.163^0.283^~2, 3~^~05/01/2014~ -~36052~^~405~^0.323^6^0.010^~1~^~A~^^^1^0.280^0.340^5^0.298^0.349^~2, 3~^~05/01/2014~ -~36052~^~406~^1.973^6^0.209^~1~^~A~^^^1^1.420^2.750^5^1.437^2.510^~2, 3~^~05/01/2014~ -~36052~^~410~^0.377^4^0.005^~1~^~A~^^^1^0.370^0.390^3^0.362^0.393^~2, 3~^~05/01/2014~ -~36052~^~415~^0.075^6^0.009^~1~^~A~^^^1^0.060^0.120^5^0.051^0.099^~2, 3~^~05/01/2014~ -~36052~^~501~^0.192^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~502~^0.535^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~503~^0.684^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~504~^1.417^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~505~^1.113^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~506~^0.385^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~507~^0.198^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~508~^0.823^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~509~^0.610^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~510~^0.893^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~511~^0.594^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~512~^0.396^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~513~^0.449^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~514~^0.963^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~515~^3.927^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~516~^0.369^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~517~^2.836^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~518~^0.866^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36052~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2014~ -~36052~^~605~^0.955^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~606~^11.559^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~607~^0.336^12^0.017^~1~^~A~^^^1^0.253^0.438^11^0.299^0.373^~2, 3~^~05/01/2014~ -~36052~^~608~^0.284^12^0.014^~1~^~A~^^^1^0.216^0.370^11^0.254^0.314^~2, 3~^~05/01/2014~ -~36052~^~609~^0.182^12^0.009^~1~^~A~^^^1^0.137^0.237^11^0.162^0.201^~2, 3~^~05/01/2014~ -~36052~^~610~^0.443^12^0.020^~1~^~A~^^^1^0.341^0.566^11^0.399^0.486^~2, 3~^~05/01/2014~ -~36052~^~611~^0.511^12^0.024^~1~^~A~^^^1^0.385^0.644^11^0.459^0.563^~2, 3~^~05/01/2014~ -~36052~^~612~^1.611^12^0.074^~1~^~A~^^^1^1.207^2.012^11^1.448^1.775^~2, 3~^~05/01/2014~ -~36052~^~613~^5.527^12^0.247^~1~^~A~^^^1^4.409^6.794^11^4.983^6.070^~2, 3~^~05/01/2014~ -~36052~^~614~^2.320^12^0.077^~1~^~A~^^^1^1.871^2.731^11^2.151^2.489^~2, 3~^~05/01/2014~ -~36052~^~615~^0.042^12^0.002^~1~^~A~^^^1^0.037^0.060^11^0.038^0.046^~2, 3~^~05/01/2014~ -~36052~^~617~^5.866^12^0.322^~1~^~AS~^^^1^5.099^9.243^11^5.158^6.575^~2, 3~^~05/01/2014~ -~36052~^~618~^1.733^12^0.110^~1~^~AS~^^^1^1.244^2.360^11^1.491^1.976^~2, 3~^~05/01/2014~ -~36052~^~619~^0.165^12^0.015^~1~^~AS~^^^1^0.099^0.239^11^0.133^0.197^~2, 3~^~05/01/2014~ -~36052~^~620~^0.030^12^0.001^~1~^~A~^^^1^0.022^0.035^11^0.027^0.032^~2, 3~^~05/01/2014~ -~36052~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~624~^0.020^12^0.001^~1~^~A~^^^1^0.015^0.034^11^0.017^0.023^~2, 3~^~05/01/2014~ -~36052~^~625~^0.149^12^0.007^~1~^~A~^^^1^0.099^0.192^11^0.132^0.165^~2, 3~^~05/01/2014~ -~36052~^~626~^0.270^12^0.016^~1~^~AS~^^^1^0.177^0.381^11^0.235^0.305^~2, 3~^~05/01/2014~ -~36052~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36052~^~628~^0.044^12^0.001^~1~^~A~^^^1^0.037^0.051^11^0.041^0.047^~2, 3~^~05/01/2014~ -~36052~^~629~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~05/01/2014~ -~36052~^~630~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.003^11^0.000^0.002^~2, 3~^~05/01/2014~ -~36052~^~631~^0.010^12^0.000^~1~^~A~^^^1^0.006^0.012^11^0.008^0.011^~2, 3~^~05/01/2014~ -~36052~^~645~^6.362^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~646~^1.971^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~652~^0.168^12^0.008^~1~^~A~^^^1^0.120^0.211^11^0.150^0.186^~2, 3~^~05/01/2014~ -~36052~^~653~^0.106^12^0.005^~1~^~A~^^^1^0.084^0.133^11^0.096^0.116^~2, 3~^~05/01/2014~ -~36052~^~654~^0.010^12^0.001^~1~^~A~^^^1^0.008^0.016^11^0.009^0.011^~2, 3~^~05/01/2014~ -~36052~^~662~^0.053^12^0.002^~1~^~A~^^^1^0.040^0.066^11^0.048^0.058^~2, 3~^~05/01/2014~ -~36052~^~663~^0.733^12^0.156^~1~^~A~^^^1^0.411^2.368^11^0.391^1.076^~2, 3~^~05/01/2014~ -~36052~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~665~^0.168^12^0.011^~1~^~A~^^^1^0.115^0.261^11^0.143^0.192^~2, 3~^~05/01/2014~ -~36052~^~670~^0.088^12^0.003^~1~^~A~^^^1^0.068^0.105^11^0.081^0.096^~2, 3~^~05/01/2014~ -~36052~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~672~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.003^0.005^~1, 2, 3~^~05/01/2014~ -~36052~^~673~^0.217^12^0.014^~1~^~A~^^^1^0.137^0.315^11^0.186^0.247^~2, 3~^~05/01/2014~ -~36052~^~674~^5.133^12^0.200^~1~^~A~^^^1^4.365^6.875^11^4.693^5.573^~2, 3~^~05/01/2014~ -~36052~^~675~^1.477^12^0.116^~1~^~A~^^^1^0.958^2.121^11^1.222^1.733^~2, 3~^~05/01/2014~ -~36052~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36052~^~685~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.011^11^0.005^0.008^~2, 3~^~05/01/2014~ -~36052~^~687~^0.033^12^0.001^~1~^~A~^^^1^0.025^0.041^11^0.030^0.036^~2, 3~^~05/01/2014~ -~36052~^~689~^0.020^12^0.001^~1~^~AS~^^^1^0.014^0.028^11^0.018^0.022^~2, 3~^~05/01/2014~ -~36052~^~693~^0.786^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~695~^0.169^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36052~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36052~^~851~^0.156^12^0.014^~1~^~A~^^^1^0.093^0.228^11^0.125^0.188^~2, 3~^~05/01/2014~ -~36052~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~36052~^~853~^0.019^12^0.001^~1~^~A~^^^1^0.012^0.026^11^0.017^0.021^~2, 3~^~05/01/2014~ -~36052~^~856~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~05/01/2014~ -~36052~^~858~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.004^0.005^~1, 2, 3~^~05/01/2014~ -~36053~^~312~^0.090^3^0.003^~1~^~A~^^^1^0.087^0.096^2^0.078^0.102^~2, 3~^~05/01/2014~ -~36053~^~315~^0.183^3^0.006^~1~^~A~^^^1^0.173^0.193^2^0.158^0.208^~2, 3~^~05/01/2014~ -~36053~^~404~^0.053^3^0.009^~1~^~A~^^^1^0.040^0.070^2^0.015^0.091^~2, 3~^~05/01/2014~ -~36053~^~405~^0.170^3^0.006^~1~^~A~^^^1^0.160^0.180^2^0.145^0.195^~2, 3~^~05/01/2014~ -~36053~^~406~^0.903^3^0.047^~1~^~A~^^^1^0.810^0.960^2^0.701^1.105^~2, 3~^~05/01/2014~ -~36053~^~410~^0.460^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~415~^0.090^3^0.012^~1~^~A~^^^1^0.070^0.110^2^0.040^0.140^~2, 3~^~05/01/2014~ -~36053~^~501~^0.117^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~502~^0.333^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~503~^0.382^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~504~^0.784^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~505~^0.598^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~506~^0.186^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~507~^0.137^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~508~^0.411^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~509~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~510~^0.451^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~511~^0.323^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~512~^0.186^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~513~^0.313^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~514~^0.666^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~515~^2.214^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~516~^0.215^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~517~^1.597^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~518~^0.460^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36053~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36053~^~605~^0.141^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~606~^2.817^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~607~^0.088^3^0.002^~1~^~A~^^^1^0.084^0.090^2^0.079^0.097^~2, 3~^~05/01/2014~ -~36053~^~608~^0.071^3^0.001^~1~^~A~^^^1^0.068^0.073^2^0.065^0.077^~2, 3~^~05/01/2014~ -~36053~^~609~^0.049^3^0.001^~1~^~A~^^^1^0.048^0.050^2^0.046^0.051^~2, 3~^~05/01/2014~ -~36053~^~610~^0.131^3^0.003^~1~^~A~^^^1^0.126^0.137^2^0.117^0.145^~2, 3~^~05/01/2014~ -~36053~^~611~^0.131^3^0.003^~1~^~A~^^^1^0.126^0.136^2^0.119^0.144^~2, 3~^~05/01/2014~ -~36053~^~612~^0.421^3^0.013^~1~^~A~^^^1^0.394^0.437^2^0.363^0.479^~2, 3~^~05/01/2014~ -~36053~^~613~^1.364^3^0.042^~1~^~A~^^^1^1.282^1.417^2^1.185^1.544^~2, 3~^~05/01/2014~ -~36053~^~614~^0.467^3^0.014^~1~^~A~^^^1^0.440^0.482^2^0.408^0.526^~2, 3~^~05/01/2014~ -~36053~^~615~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~05/01/2014~ -~36053~^~617~^1.777^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~618~^0.397^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~619~^0.045^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~620~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~05/01/2014~ -~36053~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~624~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2014~ -~36053~^~625~^0.039^3^0.001^~1~^~A~^^^1^0.036^0.040^2^0.033^0.045^~2, 3~^~05/01/2014~ -~36053~^~626~^0.086^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~628~^0.013^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~05/01/2014~ -~36053~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~36053~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~05/01/2014~ -~36053~^~645~^1.924^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~646~^0.470^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~652~^0.046^3^0.001^~1~^~A~^^^1^0.044^0.049^2^0.040^0.053^~2, 3~^~05/01/2014~ -~36053~^~653~^0.029^3^0.001^~1~^~A~^^^1^0.027^0.030^2^0.025^0.033^~2, 3~^~05/01/2014~ -~36053~^~654~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2014~ -~36053~^~662~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~05/01/2014~ -~36053~^~663~^0.098^3^0.001^~1~^~A~^^^1^0.095^0.099^2^0.092^0.103^~2, 3~^~05/01/2014~ -~36053~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~665~^0.028^3^0.001^~1~^~A~^^^1^0.025^0.029^2^0.022^0.033^~2, 3~^~05/01/2014~ -~36053~^~670~^0.026^3^0.000^~1~^~A~^^^1^0.025^0.026^2^0.024^0.027^~2, 3~^~05/01/2014~ -~36053~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~672~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2014~ -~36053~^~673~^0.070^3^0.002^~1~^~A~^^^1^0.066^0.073^2^0.061^0.079^~2, 3~^~05/01/2014~ -~36053~^~674~^1.679^3^0.117^~1~^~A~^^^1^1.497^1.897^2^1.177^2.182^~2, 3~^~05/01/2014~ -~36053~^~675~^0.343^3^0.006^~1~^~A~^^^1^0.333^0.352^2^0.320^0.367^~2, 3~^~05/01/2014~ -~36053~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~687~^0.010^3^0.000^~1~^~A~^^^1^0.010^0.011^2^0.009^0.012^~2, 3~^~05/01/2014~ -~36053~^~689~^0.011^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~ -~36053~^~693~^0.114^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36053~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~851~^0.045^3^0.005^~1~^~A~^^^1^0.039^0.055^2^0.023^0.066^~2, 3~^~05/01/2014~ -~36053~^~852~^0.006^3^0.002^~1~^~A~^^^1^0.002^0.008^2^-0.002^0.014^~1, 2, 3~^~05/01/2014~ -~36053~^~853~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~05/01/2014~ -~36053~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36053~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~312~^0.076^6^0.004^~1~^~A~^^^1^0.058^0.085^5^0.066^0.087^~2, 3~^~05/01/2014~ -~36054~^~315~^0.180^6^0.003^~1~^~A~^^^1^0.173^0.192^5^0.173^0.188^~2, 3~^~05/01/2014~ -~36054~^~404~^0.150^3^0.006^~1~^~A~^^^1^0.140^0.160^2^0.125^0.175^~2, 3~^~05/01/2014~ -~36054~^~405~^0.237^3^0.009^~1~^~A~^^^1^0.220^0.250^2^0.199^0.275^~2, 3~^~05/01/2014~ -~36054~^~406~^1.753^3^0.124^~1~^~A~^^^1^1.570^1.990^2^1.219^2.287^~2, 3~^~05/01/2014~ -~36054~^~410~^0.460^2^^~1~^~A~^^^1^0.410^0.510^1^^^^~05/01/2014~ -~36054~^~415~^0.090^3^0.006^~1~^~A~^^^1^0.080^0.100^2^0.065^0.115^~2, 3~^~05/01/2014~ -~36054~^~501~^0.165^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~502~^0.279^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~503~^0.321^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~504~^0.673^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~505~^0.507^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~506~^0.176^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~507~^0.124^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~508~^0.362^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~509~^0.259^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~510~^0.383^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~511~^0.310^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~512~^0.165^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~513~^0.259^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~514~^0.538^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~515~^1.976^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~516~^0.197^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~517~^1.014^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~518~^0.403^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36054~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36054~^~605~^0.121^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~606~^2.531^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~607~^0.085^6^0.004^~1~^~A~^^^1^0.071^0.095^5^0.075^0.095^~2, 3~^~05/01/2014~ -~36054~^~608~^0.067^6^0.003^~1~^~A~^^^1^0.057^0.075^5^0.059^0.075^~2, 3~^~05/01/2014~ -~36054~^~609~^0.041^6^0.002^~1~^~A~^^^1^0.034^0.046^5^0.035^0.046^~2, 3~^~05/01/2014~ -~36054~^~610~^0.102^6^0.005^~1~^~A~^^^1^0.087^0.115^5^0.090^0.114^~2, 3~^~05/01/2014~ -~36054~^~611~^0.117^6^0.005^~1~^~A~^^^1^0.102^0.129^5^0.104^0.130^~2, 3~^~05/01/2014~ -~36054~^~612~^0.384^6^0.015^~1~^~A~^^^1^0.328^0.424^5^0.345^0.424^~2, 3~^~05/01/2014~ -~36054~^~613~^1.220^6^0.039^~1~^~A~^^^1^1.076^1.315^5^1.119^1.321^~2, 3~^~05/01/2014~ -~36054~^~614~^0.434^6^0.019^~1~^~A~^^^1^0.372^0.486^5^0.387^0.482^~2, 3~^~05/01/2014~ -~36054~^~615~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~2, 3~^~05/01/2014~ -~36054~^~617~^1.293^6^0.041^~1~^~AS~^^^1^1.191^1.398^5^1.188^1.398^~2, 3~^~05/01/2014~ -~36054~^~618~^0.462^6^0.011^~1~^~AS~^^^1^0.412^0.487^5^0.434^0.490^~2, 3~^~05/01/2014~ -~36054~^~619~^0.067^6^0.004^~1~^~AS~^^^1^0.054^0.081^5^0.057^0.077^~2, 3~^~05/01/2014~ -~36054~^~620~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~2, 3~^~05/01/2014~ -~36054~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~05/01/2014~ -~36054~^~625~^0.037^6^0.002^~1~^~A~^^^1^0.032^0.040^5^0.033^0.041^~2, 3~^~05/01/2014~ -~36054~^~626~^0.075^6^0.005^~1~^~AS~^^^1^0.062^0.087^5^0.063^0.087^~2, 3~^~05/01/2014~ -~36054~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~628~^0.014^6^0.001^~1~^~A~^^^1^0.012^0.017^5^0.012^0.016^~2, 3~^~05/01/2014~ -~36054~^~629~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36054~^~630~^0.000^6^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~36054~^~631~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36054~^~645~^1.428^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~646~^0.547^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~652~^0.041^6^0.001^~1~^~A~^^^1^0.037^0.044^5^0.038^0.045^~2, 3~^~05/01/2014~ -~36054~^~653~^0.025^6^0.001^~1~^~A~^^^1^0.022^0.028^5^0.022^0.028^~2, 3~^~05/01/2014~ -~36054~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36054~^~662~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.013^5^0.010^0.014^~2, 3~^~05/01/2014~ -~36054~^~663~^0.083^6^0.004^~1~^~A~^^^1^0.070^0.098^5^0.072^0.094^~2, 3~^~05/01/2014~ -~36054~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~665~^0.026^6^0.001^~1~^~A~^^^1^0.023^0.031^5^0.023^0.029^~2, 3~^~05/01/2014~ -~36054~^~670~^0.017^6^0.001^~1~^~A~^^^1^0.015^0.021^5^0.015^0.020^~2, 3~^~05/01/2014~ -~36054~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~672~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36054~^~673~^0.063^6^0.004^~1~^~A~^^^1^0.052^0.074^5^0.053^0.074^~2, 3~^~05/01/2014~ -~36054~^~674~^1.210^6^0.038^~1~^~A~^^^1^1.117^1.316^5^1.113^1.307^~2, 3~^~05/01/2014~ -~36054~^~675~^0.418^6^0.010^~1~^~A~^^^1^0.373^0.439^5^0.392^0.444^~2, 3~^~05/01/2014~ -~36054~^~676~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~685~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36054~^~687~^0.008^6^0.000^~1~^~A~^^^1^0.008^0.009^5^0.008^0.009^~2, 3~^~05/01/2014~ -~36054~^~689~^0.005^6^0.000^~1~^~AS~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2014~ -~36054~^~693~^0.095^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36054~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~851~^0.066^6^0.004^~1~^~A~^^^1^0.054^0.079^5^0.057^0.075^~2, 3~^~05/01/2014~ -~36054~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~853~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2014~ -~36054~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36054~^~858~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~312~^0.086^12^0.004^~1~^~A~^^^1^0.058^0.125^11^0.076^0.095^~2, 3~^~05/01/2014~ -~36055~^~315~^0.187^12^0.006^~1~^~A~^^^1^0.155^0.232^11^0.173^0.200^~2, 3~^~05/01/2014~ -~36055~^~404~^0.102^6^0.022^~1~^~A~^^^1^0.040^0.160^5^0.045^0.159^~2, 3~^~05/01/2014~ -~36055~^~405~^0.203^6^0.016^~1~^~A~^^^1^0.160^0.250^5^0.163^0.243^~2, 3~^~05/01/2014~ -~36055~^~406~^1.328^6^0.199^~1~^~A~^^^1^0.810^1.990^5^0.816^1.840^~2, 3~^~05/01/2014~ -~36055~^~410~^0.470^4^0.023^~1~^~A~^^^1^0.410^0.510^3^0.398^0.542^~2, 3~^~05/01/2014~ -~36055~^~415~^0.090^6^0.006^~1~^~A~^^^1^0.070^0.110^5^0.075^0.105^~2, 3~^~05/01/2014~ -~36055~^~501~^0.131^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~502~^0.281^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~503~^0.322^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~504~^0.668^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~505~^0.506^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~506~^0.166^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~508~^0.355^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~509~^0.240^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~510~^0.382^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~511~^0.291^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~512~^0.161^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~513~^0.262^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~514~^0.551^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~515~^1.922^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~516~^0.189^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~517~^1.191^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~518~^0.396^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36055~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~05/01/2014~ -~36055~^~605~^0.123^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~606~^2.556^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~607~^0.084^12^0.002^~1~^~A~^^^1^0.071^0.095^11^0.079^0.089^~2, 3~^~05/01/2014~ -~36055~^~608~^0.067^12^0.002^~1~^~A~^^^1^0.053^0.075^11^0.062^0.071^~2, 3~^~05/01/2014~ -~36055~^~609~^0.043^12^0.002^~1~^~A~^^^1^0.033^0.050^11^0.039^0.046^~2, 3~^~05/01/2014~ -~36055~^~610~^0.110^12^0.005^~1~^~A~^^^1^0.087^0.137^11^0.100^0.121^~2, 3~^~05/01/2014~ -~36055~^~611~^0.119^12^0.004^~1~^~A~^^^1^0.092^0.136^11^0.110^0.128^~2, 3~^~05/01/2014~ -~36055~^~612~^0.386^12^0.013^~1~^~A~^^^1^0.307^0.437^11^0.358^0.414^~2, 3~^~05/01/2014~ -~36055~^~613~^1.235^12^0.039^~1~^~A~^^^1^0.977^1.417^11^1.149^1.321^~2, 3~^~05/01/2014~ -~36055~^~614~^0.430^12^0.016^~1~^~A~^^^1^0.319^0.486^11^0.395^0.464^~2, 3~^~05/01/2014~ -~36055~^~615~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.013^11^0.008^0.010^~2, 3~^~05/01/2014~ -~36055~^~617~^1.423^12^0.077^~1~^~AS~^^^1^1.021^1.996^11^1.254^1.593^~2, 3~^~05/01/2014~ -~36055~^~618~^0.446^12^0.032^~1~^~AS~^^^1^0.301^0.753^11^0.375^0.518^~2, 3~^~05/01/2014~ -~36055~^~619~^0.056^12^0.004^~1~^~AS~^^^1^0.034^0.081^11^0.046^0.065^~2, 3~^~05/01/2014~ -~36055~^~620~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.013^11^0.009^0.011^~2, 3~^~05/01/2014~ -~36055~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~624~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.007^11^0.003^0.005^~1, 2, 3~^~05/01/2014~ -~36055~^~625~^0.037^12^0.001^~1~^~A~^^^1^0.031^0.041^11^0.034^0.039^~2, 3~^~05/01/2014~ -~36055~^~626~^0.078^12^0.003^~1~^~AS~^^^1^0.062^0.092^11^0.072^0.085^~2, 3~^~05/01/2014~ -~36055~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~628~^0.012^12^0.001^~1~^~A~^^^1^0.006^0.017^11^0.010^0.014^~2, 3~^~05/01/2014~ -~36055~^~629~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36055~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2014~ -~36055~^~631~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.002^0.004^~1, 2, 3~^~05/01/2014~ -~36055~^~645~^1.733^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~646~^0.560^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~652~^0.042^12^0.001^~1~^~A~^^^1^0.033^0.049^11^0.039^0.045^~2, 3~^~05/01/2014~ -~36055~^~653~^0.026^12^0.001^~1~^~A~^^^1^0.021^0.030^11^0.024^0.028^~2, 3~^~05/01/2014~ -~36055~^~654~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.002^0.003^~1, 2, 3~^~05/01/2014~ -~36055~^~662~^0.013^12^0.001^~1~^~A~^^^1^0.009^0.017^11^0.011^0.014^~2, 3~^~05/01/2014~ -~36055~^~663~^0.085^12^0.003^~1~^~A~^^^1^0.064^0.099^11^0.078^0.093^~2, 3~^~05/01/2014~ -~36055~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~665~^0.026^12^0.001^~1~^~A~^^^1^0.018^0.031^11^0.023^0.028^~2, 3~^~05/01/2014~ -~36055~^~670~^0.020^12^0.001^~1~^~A~^^^1^0.013^0.026^11^0.017^0.023^~2, 3~^~05/01/2014~ -~36055~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~672~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36055~^~673~^0.066^12^0.003^~1~^~A~^^^1^0.052^0.078^11^0.060^0.071^~2, 3~^~05/01/2014~ -~36055~^~674~^1.338^12^0.074^~1~^~A~^^^1^0.957^1.897^11^1.175^1.502^~2, 3~^~05/01/2014~ -~36055~^~675~^0.401^12^0.032^~1~^~A~^^^1^0.270^0.703^11^0.331^0.471^~2, 3~^~05/01/2014~ -~36055~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36055~^~687~^0.009^12^0.000^~1~^~A~^^^1^0.006^0.011^11^0.008^0.010^~2, 3~^~05/01/2014~ -~36055~^~689~^0.006^12^0.001^~1~^~AS~^^^1^0.003^0.013^11^0.004^0.008^~2, 3~^~05/01/2014~ -~36055~^~693~^0.098^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36055~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~851~^0.055^12^0.004^~1~^~A~^^^1^0.034^0.079^11^0.046^0.064^~2, 3~^~05/01/2014~ -~36055~^~852~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.008^11^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36055~^~853~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~05/01/2014~ -~36055~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36055~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~312~^0.060^9^0.005^~1~^~A~^^^1^0.043^0.079^8^0.049^0.072^~2, 3~^~05/01/2014~ -~36056~^~315~^0.156^9^0.014^~1~^~A~^^^1^0.112^0.235^8^0.124^0.189^~2, 3~^~05/01/2014~ -~36056~^~404~^0.068^5^0.017^~1~^~A~^^^1^0.030^0.130^4^0.021^0.115^~2, 3~^~05/01/2014~ -~36056~^~405~^0.132^5^0.012^~1~^~A~^^^1^0.110^0.170^4^0.099^0.165^~2, 3~^~05/01/2014~ -~36056~^~406~^1.928^5^0.150^~1~^~A~^^^1^1.640^2.490^4^1.512^2.344^~2, 3~^~05/01/2014~ -~36056~^~410~^0.443^3^0.084^~1~^~A~^^^1^0.340^0.610^2^0.081^0.805^~2, 3~^~05/01/2014~ -~36056~^~415~^0.136^5^0.012^~1~^~A~^^^1^0.110^0.180^4^0.102^0.170^~2, 3~^~05/01/2014~ -~36056~^~501~^0.110^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~502~^0.370^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~503~^0.400^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~504~^0.880^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~505~^0.710^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~506~^0.230^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~507~^0.120^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~508~^0.550^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~509~^0.300^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~510~^0.470^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~511~^0.490^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~512~^0.260^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~513~^0.480^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~514~^0.730^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~515~^1.550^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~516~^0.330^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~517~^0.840^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~518~^0.430^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36056~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~ -~36056~^~605~^0.272^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~606~^3.983^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~607~^0.064^9^0.015^~1~^~A~^^^1^0.013^0.143^8^0.028^0.099^~2, 3~^~05/01/2014~ -~36056~^~608~^0.049^9^0.013^~1~^~A~^^^1^0.005^0.119^8^0.018^0.080^~2, 3~^~05/01/2014~ -~36056~^~609~^0.033^9^0.009^~1~^~A~^^^1^0.005^0.078^8^0.013^0.053^~2, 3~^~05/01/2014~ -~36056~^~610~^0.087^9^0.022^~1~^~A~^^^1^0.024^0.199^8^0.037^0.136^~2, 3~^~05/01/2014~ -~36056~^~611~^0.093^9^0.024^~1~^~A~^^^1^0.015^0.218^8^0.037^0.150^~2, 3~^~05/01/2014~ -~36056~^~612~^0.338^9^0.079^~1~^~A~^^^1^0.085^0.744^8^0.155^0.521^~2, 3~^~05/01/2014~ -~36056~^~613~^2.265^9^0.296^~1~^~A~^^^1^1.135^3.735^8^1.583^2.947^~2, 3~^~05/01/2014~ -~36056~^~614~^0.939^9^0.098^~1~^~A~^^^1^0.552^1.301^8^0.712^1.165^~2, 3~^~05/01/2014~ -~36056~^~615~^0.027^9^0.003^~1~^~A~^^^1^0.016^0.043^8^0.020^0.033^~2, 3~^~05/01/2014~ -~36056~^~617~^3.554^9^0.397^~1~^~AS~^^^1^2.198^6.000^8^2.639^4.468^~2, 3~^~05/01/2014~ -~36056~^~618~^2.679^9^0.242^~1~^~AS~^^^1^1.519^3.796^8^2.121^3.236^~2, 3~^~05/01/2014~ -~36056~^~619~^0.209^9^0.034^~1~^~AS~^^^1^0.102^0.401^8^0.132^0.287^~2, 3~^~05/01/2014~ -~36056~^~620~^0.031^9^0.002^~1~^~A~^^^1^0.022^0.040^8^0.026^0.036^~2, 3~^~05/01/2014~ -~36056~^~621~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.002^8^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36056~^~624~^0.014^9^0.002^~1~^~A~^^^1^0.004^0.025^8^0.009^0.019^~2, 3~^~05/01/2014~ -~36056~^~625~^0.031^9^0.007^~1~^~A~^^^1^0.009^0.066^8^0.014^0.048^~2, 3~^~05/01/2014~ -~36056~^~626~^0.173^9^0.020^~1~^~AS~^^^1^0.060^0.245^8^0.126^0.219^~2, 3~^~05/01/2014~ -~36056~^~627~^0.003^9^0.003^~1~^~A~^^^1^0.000^0.029^8^-0.004^0.011^~1, 2, 3~^~05/01/2014~ -~36056~^~628~^0.050^9^0.006^~1~^~A~^^^1^0.028^0.082^8^0.036^0.064^~2, 3~^~05/01/2014~ -~36056~^~629~^0.001^9^0.000^~1~^~A~^^^1^0.000^0.003^8^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36056~^~630~^0.000^9^0.000^~1~^~AS~^^^1^0.000^0.001^8^0.000^0.000^~2, 3~^~05/01/2014~ -~36056~^~631~^0.004^9^0.001^~1~^~A~^^^1^0.000^0.009^8^0.002^0.006^~1, 2, 3~^~05/01/2014~ -~36056~^~645~^3.822^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~646~^2.967^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~652~^0.034^9^0.008^~1~^~A~^^^1^0.010^0.076^8^0.016^0.053^~2, 3~^~05/01/2014~ -~36056~^~653~^0.033^9^0.005^~1~^~A~^^^1^0.014^0.057^8^0.021^0.046^~2, 3~^~05/01/2014~ -~36056~^~654~^0.007^9^0.001^~1~^~A~^^^1^0.003^0.013^8^0.005^0.009^~2, 3~^~05/01/2014~ -~36056~^~662~^0.011^9^0.003^~1~^~A~^^^1^0.003^0.024^8^0.005^0.017^~2, 3~^~05/01/2014~ -~36056~^~663~^0.211^9^0.120^~1~^~A~^^^1^0.042^1.165^8^-0.066^0.488^~2, 3~^~05/01/2014~ -~36056~^~664~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~665~^0.050^9^0.017^~1~^~A~^^^1^0.015^0.171^8^0.011^0.089^~2, 3~^~05/01/2014~ -~36056~^~670~^0.021^9^0.004^~1~^~A~^^^1^0.008^0.038^8^0.011^0.030^~2, 3~^~05/01/2014~ -~36056~^~671~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.004^8^-0.001^0.001^~1, 2, 3~^~05/01/2014~ -~36056~^~672~^0.019^9^0.006^~1~^~A~^^^1^0.000^0.058^8^0.006^0.032^~1, 2, 3~^~05/01/2014~ -~36056~^~673~^0.162^9^0.019^~1~^~A~^^^1^0.057^0.226^8^0.118^0.205^~2, 3~^~05/01/2014~ -~36056~^~674~^3.343^9^0.308^~1~^~A~^^^1^2.150^4.835^8^2.633^4.053^~2, 3~^~05/01/2014~ -~36056~^~675~^2.608^9^0.233^~1~^~A~^^^1^1.485^3.669^8^2.071^3.145^~2, 3~^~05/01/2014~ -~36056~^~676~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.001^8^0.000^0.000^~1, 2, 3~^~05/01/2014~ -~36056~^~685~^0.009^9^0.002^~1~^~A~^^^1^0.003^0.018^8^0.005^0.012^~2, 3~^~05/01/2014~ -~36056~^~687~^0.015^9^0.002^~1~^~A~^^^1^0.006^0.025^8^0.010^0.019^~2, 3~^~05/01/2014~ -~36056~^~689~^0.013^9^0.002^~1~^~AS~^^^1^0.006^0.026^8^0.008^0.018^~2, 3~^~05/01/2014~ -~36056~^~693~^0.222^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36056~^~697~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~851~^0.201^9^0.032^~1~^~A~^^^1^0.097^0.383^8^0.127^0.275^~2, 3~^~05/01/2014~ -~36056~^~852~^0.003^9^0.001^~1~^~A~^^^1^0.000^0.010^8^0.001^0.006^~1, 2, 3~^~05/01/2014~ -~36056~^~853~^0.010^9^0.001^~1~^~A~^^^1^0.005^0.016^8^0.007^0.012^~2, 3~^~05/01/2014~ -~36056~^~856~^0.000^9^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36056~^~858~^0.008^9^0.001^~1~^~A~^^^1^0.005^0.012^8^0.006^0.009^~2, 3~^~05/01/2014~ -~36057~^~312~^0.079^3^0.005^~1~^~A~^^^1^0.074^0.089^2^0.059^0.099^~2, 3~^~05/01/2014~ -~36057~^~315~^0.169^3^0.018^~1~^~A~^^^1^0.140^0.201^2^0.093^0.245^~2, 3~^~05/01/2014~ -~36057~^~404~^0.103^3^0.009^~1~^~A~^^^1^0.090^0.120^2^0.065^0.141^~2, 3~^~05/01/2014~ -~36057~^~405~^0.223^3^0.012^~1~^~A~^^^1^0.200^0.240^2^0.172^0.275^~2, 3~^~05/01/2014~ -~36057~^~406~^6.447^3^0.343^~1~^~A~^^^1^5.820^7.000^2^4.973^7.921^~2, 3~^~05/01/2014~ -~36057~^~410~^1.400^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~415~^0.227^3^0.015^~1~^~A~^^^1^0.200^0.250^2^0.164^0.289^~2, 3~^~05/01/2014~ -~36057~^~501~^0.244^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~502~^0.798^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~503~^0.863^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~504~^1.576^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~505~^1.567^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~506~^0.488^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~507~^0.235^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~508~^1.248^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~509~^0.647^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~510~^0.976^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~511~^1.107^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~512~^0.582^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~513~^0.938^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~514~^1.661^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~515~^3.387^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~516~^0.722^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~517~^1.726^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~518~^0.844^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~521~^0.050^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36057~^~605~^0.141^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~606~^3.517^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~607~^0.072^3^0.001^~1~^~A~^^^1^0.071^0.073^2^0.070^0.075^~2, 3~^~05/01/2014~ -~36057~^~608~^0.055^3^0.001^~1~^~A~^^^1^0.053^0.058^2^0.049^0.061^~2, 3~^~05/01/2014~ -~36057~^~609~^0.036^3^0.001^~1~^~A~^^^1^0.035^0.038^2^0.033^0.040^~2, 3~^~05/01/2014~ -~36057~^~610~^0.092^3^0.003^~1~^~A~^^^1^0.088^0.097^2^0.081^0.104^~2, 3~^~05/01/2014~ -~36057~^~611~^0.112^3^0.003^~1~^~A~^^^1^0.107^0.118^2^0.099^0.126^~2, 3~^~05/01/2014~ -~36057~^~612~^0.375^3^0.012^~1~^~A~^^^1^0.353^0.394^2^0.323^0.426^~2, 3~^~05/01/2014~ -~36057~^~613~^1.999^3^0.106^~1~^~A~^^^1^1.796^2.152^2^1.544^2.455^~2, 3~^~05/01/2014~ -~36057~^~614~^0.657^3^0.025^~1~^~A~^^^1^0.610^0.695^2^0.550^0.764^~2, 3~^~05/01/2014~ -~36057~^~615~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.030^2^0.023^0.033^~2, 3~^~05/01/2014~ -~36057~^~617~^4.388^3^0.472^~1~^~AS~^^^1^3.492^5.092^2^2.358^6.418^~2, 3~^~05/01/2014~ -~36057~^~618~^1.229^3^0.248^~1~^~AS~^^^1^0.976^1.726^2^0.161^2.298^~2, 3~^~05/01/2014~ -~36057~^~619~^0.128^3^0.056^~1~^~AS~^^^1^0.072^0.240^2^-0.112^0.368^~2, 3~^~05/01/2014~ -~36057~^~620~^0.040^3^0.003^~1~^~A~^^^1^0.034^0.046^2^0.025^0.055^~2, 3~^~05/01/2014~ -~36057~^~621~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~05/01/2014~ -~36057~^~624~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.011^0.016^~2, 3~^~05/01/2014~ -~36057~^~625~^0.039^3^0.001^~1~^~A~^^^1^0.037^0.041^2^0.034^0.044^~2, 3~^~05/01/2014~ -~36057~^~626~^0.187^3^0.011^~1~^~AS~^^^1^0.165^0.199^2^0.139^0.235^~2, 3~^~05/01/2014~ -~36057~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~628~^0.035^3^0.002^~1~^~A~^^^1^0.033^0.038^2^0.028^0.041^~2, 3~^~05/01/2014~ -~36057~^~629~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~05/01/2014~ -~36057~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.001^0.003^~2, 3~^~05/01/2014~ -~36057~^~631~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~05/01/2014~ -~36057~^~645~^4.664^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~646~^1.437^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~652~^0.039^3^0.001^~1~^~A~^^^1^0.037^0.041^2^0.034^0.044^~2, 3~^~05/01/2014~ -~36057~^~653~^0.030^3^0.002^~1~^~A~^^^1^0.027^0.032^2^0.023^0.036^~2, 3~^~05/01/2014~ -~36057~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~05/01/2014~ -~36057~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.009^0.017^~2, 3~^~05/01/2014~ -~36057~^~663~^0.098^3^0.009^~1~^~A~^^^1^0.082^0.112^2^0.060^0.135^~2, 3~^~05/01/2014~ -~36057~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~665~^0.031^3^0.002^~1~^~A~^^^1^0.028^0.033^2^0.024^0.037^~2, 3~^~05/01/2014~ -~36057~^~670~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.022^2^0.015^0.025^~2, 3~^~05/01/2014~ -~36057~^~671~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36057~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~05/01/2014~ -~36057~^~673~^0.174^3^0.010^~1~^~A~^^^1^0.154^0.185^2^0.130^0.218^~2, 3~^~05/01/2014~ -~36057~^~674~^4.290^3^0.463^~1~^~A~^^^1^3.410^4.980^2^2.298^6.283^~2, 3~^~05/01/2014~ -~36057~^~675~^1.178^3^0.251^~1~^~A~^^^1^0.921^1.680^2^0.098^2.258^~2, 3~^~05/01/2014~ -~36057~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36057~^~685~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.007^2^-0.004^0.011^~1, 2, 3~^~05/01/2014~ -~36057~^~687~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~05/01/2014~ -~36057~^~689~^0.014^3^0.003^~1~^~AS~^^^1^0.010^0.020^2^0.001^0.027^~2, 3~^~05/01/2014~ -~36057~^~693~^0.110^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~695~^0.031^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36057~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~851~^0.125^3^0.054^~1~^~A~^^^1^0.070^0.233^2^-0.108^0.358^~2, 3~^~05/01/2014~ -~36057~^~852~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.007^0.011^~1, 2, 3~^~05/01/2014~ -~36057~^~853~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.014^2^0.007^0.017^~2, 3~^~05/01/2014~ -~36057~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36057~^~858~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~05/01/2014~ -~36058~^~312~^0.062^6^0.003^~1~^~A~^^^1^0.056^0.074^5^0.055^0.069^~2, 3~^~05/01/2014~ -~36058~^~315~^0.129^6^0.010^~1~^~A~^^^1^0.113^0.176^5^0.104^0.154^~2, 3~^~05/01/2014~ -~36058~^~404~^0.057^3^0.019^~1~^~A~^^^1^0.020^0.080^2^-0.023^0.137^~2, 3~^~05/01/2014~ -~36058~^~405~^0.163^3^0.009^~1~^~A~^^^1^0.150^0.180^2^0.125^0.201^~2, 3~^~05/01/2014~ -~36058~^~406~^5.580^3^0.495^~1~^~A~^^^1^4.760^6.470^2^3.451^7.709^~2, 3~^~05/01/2014~ -~36058~^~410~^0.955^2^^~1~^~A~^^^1^0.910^1.000^1^^^^~05/01/2014~ -~36058~^~415~^0.183^3^0.003^~1~^~A~^^^1^0.180^0.190^2^0.169^0.197^~2, 3~^~05/01/2014~ -~36058~^~501~^0.188^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~502~^0.603^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~503~^0.663^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~504~^1.227^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~505~^1.266^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~506~^0.376^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~507~^0.188^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~508~^0.999^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~509~^0.475^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~510~^0.742^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~511~^0.870^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~512~^0.485^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~513~^0.732^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~514~^1.246^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~515~^2.641^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~516~^0.584^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~517~^1.088^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~518~^0.643^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~521~^0.020^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36058~^~605~^0.095^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~606~^2.113^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~607~^0.049^6^0.001^~1~^~A~^^^1^0.044^0.052^5^0.045^0.052^~2, 3~^~05/01/2014~ -~36058~^~608~^0.033^6^0.001^~1~^~A~^^^1^0.029^0.037^5^0.029^0.036^~2, 3~^~05/01/2014~ -~36058~^~609~^0.022^6^0.001^~1~^~A~^^^1^0.017^0.026^5^0.018^0.025^~2, 3~^~05/01/2014~ -~36058~^~610~^0.052^6^0.002^~1~^~A~^^^1^0.046^0.059^5^0.046^0.057^~2, 3~^~05/01/2014~ -~36058~^~611~^0.062^6^0.003^~1~^~A~^^^1^0.056^0.072^5^0.055^0.068^~2, 3~^~05/01/2014~ -~36058~^~612~^0.206^6^0.008^~1~^~A~^^^1^0.187^0.237^5^0.186^0.226^~2, 3~^~05/01/2014~ -~36058~^~613~^1.117^6^0.040^~1~^~A~^^^1^1.000^1.274^5^1.014^1.220^~2, 3~^~05/01/2014~ -~36058~^~614~^0.444^6^0.016^~1~^~A~^^^1^0.405^0.494^5^0.403^0.485^~2, 3~^~05/01/2014~ -~36058~^~615~^0.048^6^0.001^~1~^~A~^^^1^0.043^0.051^5^0.045^0.051^~2, 3~^~05/01/2014~ -~36058~^~617~^5.562^6^0.153^~1~^~AS~^^^1^4.905^5.885^5^5.169^5.955^~2, 3~^~05/01/2014~ -~36058~^~618~^1.733^6^0.061^~1~^~AS~^^^1^1.526^1.940^5^1.575^1.890^~2, 3~^~05/01/2014~ -~36058~^~619~^0.233^6^0.009^~1~^~AS~^^^1^0.209^0.265^5^0.210^0.256^~2, 3~^~05/01/2014~ -~36058~^~620~^0.027^6^0.002^~1~^~A~^^^1^0.024^0.036^5^0.023^0.032^~2, 3~^~05/01/2014~ -~36058~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36058~^~624~^0.027^6^0.001^~1~^~A~^^^1^0.023^0.029^5^0.025^0.029^~2, 3~^~05/01/2014~ -~36058~^~625~^0.019^6^0.001^~1~^~A~^^^1^0.017^0.023^5^0.017^0.021^~2, 3~^~05/01/2014~ -~36058~^~626~^0.094^6^0.004^~1~^~AS~^^^1^0.079^0.109^5^0.084^0.104^~2, 3~^~05/01/2014~ -~36058~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~628~^0.105^6^0.003^~1~^~A~^^^1^0.093^0.113^5^0.097^0.113^~2, 3~^~05/01/2014~ -~36058~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36058~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2014~ -~36058~^~631~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.004^5^0.003^0.004^~2, 3~^~05/01/2014~ -~36058~^~645~^5.803^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~646~^2.020^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~652~^0.022^6^0.001^~1~^~A~^^^1^0.020^0.026^5^0.020^0.024^~2, 3~^~05/01/2014~ -~36058~^~653~^0.017^6^0.001^~1~^~A~^^^1^0.016^0.020^5^0.016^0.019^~2, 3~^~05/01/2014~ -~36058~^~654~^0.015^6^0.001^~1~^~A~^^^1^0.013^0.017^5^0.014^0.017^~2, 3~^~05/01/2014~ -~36058~^~662~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.007^5^0.005^0.007^~2, 3~^~05/01/2014~ -~36058~^~663~^0.062^6^0.004^~1~^~A~^^^1^0.053^0.076^5^0.053^0.071^~2, 3~^~05/01/2014~ -~36058~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~665~^0.026^6^0.002^~1~^~A~^^^1^0.020^0.035^5^0.020^0.032^~2, 3~^~05/01/2014~ -~36058~^~670~^0.015^6^0.001^~1~^~A~^^^1^0.011^0.018^5^0.012^0.018^~2, 3~^~05/01/2014~ -~36058~^~671~^0.010^6^0.000^~1~^~A~^^^1^0.008^0.011^5^0.009^0.011^~2, 3~^~05/01/2014~ -~36058~^~672~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.008^~2, 3~^~05/01/2014~ -~36058~^~673~^0.088^6^0.004^~1~^~A~^^^1^0.073^0.102^5^0.078^0.098^~2, 3~^~05/01/2014~ -~36058~^~674~^5.500^6^0.154^~1~^~A~^^^1^4.844^5.830^5^5.105^5.895^~2, 3~^~05/01/2014~ -~36058~^~675~^1.691^6^0.060^~1~^~A~^^^1^1.486^1.899^5^1.537^1.846^~2, 3~^~05/01/2014~ -~36058~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2014~ -~36058~^~685~^0.012^6^0.001^~1~^~A~^^^1^0.009^0.014^5^0.009^0.014^~2, 3~^~05/01/2014~ -~36058~^~687~^0.010^6^0.000^~1~^~A~^^^1^0.009^0.011^5^0.009^0.011^~2, 3~^~05/01/2014~ -~36058~^~689~^0.008^6^0.001^~1~^~AS~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~05/01/2014~ -~36058~^~693~^0.069^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~695~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36058~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~851~^0.221^6^0.008^~1~^~A~^^^1^0.199^0.251^5^0.201^0.242^~2, 3~^~05/01/2014~ -~36058~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~853~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.009^~2, 3~^~05/01/2014~ -~36058~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36058~^~858~^0.007^6^0.001^~1~^~A~^^^1^0.006^0.011^5^0.006^0.009^~2, 3~^~05/01/2014~ -~36059~^~312~^0.071^12^0.003^~1~^~A~^^^1^0.056^0.092^11^0.064^0.078^~2, 3~^~05/01/2014~ -~36059~^~315~^0.149^12^0.008^~1~^~A~^^^1^0.113^0.201^11^0.130^0.167^~2, 3~^~05/01/2014~ -~36059~^~404~^0.080^6^0.014^~1~^~A~^^^1^0.020^0.120^5^0.044^0.116^~2, 3~^~05/01/2014~ -~36059~^~405~^0.193^6^0.015^~1~^~A~^^^1^0.150^0.240^5^0.155^0.232^~2, 3~^~05/01/2014~ -~36059~^~406~^6.013^6^0.332^~1~^~A~^^^1^4.760^7.000^5^5.161^6.866^~2, 3~^~05/01/2014~ -~36059~^~410~^1.052^4^0.118^~1~^~A~^^^1^0.900^1.400^3^0.677^1.428^~2, 3~^~05/01/2014~ -~36059~^~415~^0.205^6^0.012^~1~^~A~^^^1^0.180^0.250^5^0.175^0.235^~2, 3~^~05/01/2014~ -~36059~^~501~^0.203^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~502~^0.657^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~503~^0.717^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~504~^1.317^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~505~^1.334^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~506~^0.406^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~507~^0.199^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~508~^1.058^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~509~^0.526^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~510~^0.806^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~511~^0.930^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~512~^0.503^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~513~^0.785^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~514~^1.364^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~515~^2.833^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~516~^0.615^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~517~^1.308^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~518~^0.698^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36059~^~521~^0.035^2^^~1~^~A~^^^1^0.020^0.050^1^^^^~05/01/2014~ -~36059~^~605~^0.108^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~606~^2.550^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~607~^0.056^12^0.003^~1~^~A~^^^1^0.044^0.073^11^0.049^0.064^~2, 3~^~05/01/2014~ -~36059~^~608~^0.040^12^0.003^~1~^~A~^^^1^0.029^0.058^11^0.033^0.047^~2, 3~^~05/01/2014~ -~36059~^~609~^0.026^12^0.002^~1~^~A~^^^1^0.017^0.038^11^0.022^0.031^~2, 3~^~05/01/2014~ -~36059~^~610~^0.065^12^0.005^~1~^~A~^^^1^0.046^0.097^11^0.053^0.076^~2, 3~^~05/01/2014~ -~36059~^~611~^0.077^12^0.007^~1~^~A~^^^1^0.056^0.118^11^0.063^0.092^~2, 3~^~05/01/2014~ -~36059~^~612~^0.257^12^0.022^~1~^~A~^^^1^0.187^0.394^11^0.208^0.305^~2, 3~^~05/01/2014~ -~36059~^~613~^1.384^12^0.115^~1~^~A~^^^1^1.000^2.152^11^1.131^1.637^~2, 3~^~05/01/2014~ -~36059~^~614~^0.526^12^0.032^~1~^~A~^^^1^0.405^0.695^11^0.456^0.596^~2, 3~^~05/01/2014~ -~36059~^~615~^0.038^12^0.003^~1~^~A~^^^1^0.018^0.051^11^0.030^0.045^~2, 3~^~05/01/2014~ -~36059~^~617~^4.635^12^0.360^~1~^~AS~^^^1^1.910^5.885^11^3.843^5.427^~2, 3~^~05/01/2014~ -~36059~^~618~^1.658^12^0.102^~1~^~AS~^^^1^0.976^2.159^11^1.433^1.883^~2, 3~^~05/01/2014~ -~36059~^~619~^0.228^12^0.027^~1~^~AS~^^^1^0.072^0.436^11^0.168^0.287^~2, 3~^~05/01/2014~ -~36059~^~620~^0.033^12^0.003^~1~^~A~^^^1^0.024^0.051^11^0.028^0.039^~2, 3~^~05/01/2014~ -~36059~^~621~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36059~^~624~^0.022^12^0.002^~1~^~A~^^^1^0.013^0.029^11^0.018^0.026^~2, 3~^~05/01/2014~ -~36059~^~625~^0.025^12^0.003^~1~^~A~^^^1^0.017^0.041^11^0.019^0.030^~2, 3~^~05/01/2014~ -~36059~^~626~^0.117^12^0.013^~1~^~AS~^^^1^0.079^0.199^11^0.089^0.145^~2, 3~^~05/01/2014~ -~36059~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~628~^0.074^12^0.010^~1~^~A~^^^1^0.029^0.113^11^0.051^0.096^~2, 3~^~05/01/2014~ -~36059~^~629~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36059~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.003^11^0.001^0.003^~2, 3~^~05/01/2014~ -~36059~^~631~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.003^0.005^~2, 3~^~05/01/2014~ -~36059~^~645~^4.870^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~646~^1.951^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~652~^0.027^12^0.002^~1~^~A~^^^1^0.020^0.041^11^0.022^0.032^~2, 3~^~05/01/2014~ -~36059~^~653~^0.021^12^0.002^~1~^~A~^^^1^0.016^0.032^11^0.017^0.025^~2, 3~^~05/01/2014~ -~36059~^~654~^0.012^12^0.001^~1~^~A~^^^1^0.006^0.017^11^0.009^0.014^~2, 3~^~05/01/2014~ -~36059~^~662~^0.008^12^0.001^~1~^~A~^^^1^0.005^0.014^11^0.006^0.010^~2, 3~^~05/01/2014~ -~36059~^~663~^0.072^12^0.006^~1~^~A~^^^1^0.051^0.112^11^0.060^0.084^~2, 3~^~05/01/2014~ -~36059~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~665~^0.028^12^0.001^~1~^~A~^^^1^0.020^0.035^11^0.025^0.031^~2, 3~^~05/01/2014~ -~36059~^~670~^0.016^12^0.001^~1~^~A~^^^1^0.011^0.022^11^0.014^0.018^~2, 3~^~05/01/2014~ -~36059~^~671~^0.006^12^0.001^~1~^~A~^^^1^0.001^0.011^11^0.004^0.009^~1, 2, 3~^~05/01/2014~ -~36059~^~672~^0.006^12^0.000^~1~^~A~^^^1^0.005^0.008^11^0.006^0.007^~2, 3~^~05/01/2014~ -~36059~^~673~^0.109^12^0.012^~1~^~A~^^^1^0.073^0.185^11^0.083^0.135^~2, 3~^~05/01/2014~ -~36059~^~674~^4.563^12^0.360^~1~^~A~^^^1^1.850^5.830^11^3.771^5.356^~2, 3~^~05/01/2014~ -~36059~^~675~^1.615^12^0.103^~1~^~A~^^^1^0.921^2.123^11^1.387^1.842^~2, 3~^~05/01/2014~ -~36059~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36059~^~685~^0.010^12^0.001^~1~^~A~^^^1^0.002^0.020^11^0.007^0.014^~1, 2, 3~^~05/01/2014~ -~36059~^~687~^0.010^12^0.001^~1~^~A~^^^1^0.007^0.015^11^0.009^0.012^~2, 3~^~05/01/2014~ -~36059~^~689~^0.010^12^0.001^~1~^~AS~^^^1^0.006^0.020^11^0.007^0.012^~2, 3~^~05/01/2014~ -~36059~^~693~^0.080^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36059~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~851~^0.217^12^0.026^~1~^~A~^^^1^0.070^0.416^11^0.161^0.274^~2, 3~^~05/01/2014~ -~36059~^~852~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.006^11^-0.001^0.002^~1, 2, 3~^~05/01/2014~ -~36059~^~853~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.014^11^0.008^0.011^~2, 3~^~05/01/2014~ -~36059~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36059~^~858~^0.009^12^0.001^~1~^~A~^^^1^0.006^0.016^11^0.007^0.010^~2, 3~^~05/01/2014~ -~36060~^~312~^0.130^4^0.004^~1~^~A~^^^1^0.123^0.137^3^0.118^0.143^~2, 3~^~05/01/2014~ -~36060~^~315~^0.377^4^0.013^~1~^~A~^^^1^0.345^0.405^3^0.336^0.418^~2, 3~^~05/01/2014~ -~36060~^~404~^0.160^2^^~1~^~A~^^^1^0.130^0.190^1^^^^~05/01/2014~ -~36060~^~405~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~05/01/2014~ -~36060~^~406~^2.785^2^^~1~^~A~^^^1^2.740^2.830^1^^^^~05/01/2014~ -~36060~^~410~^0.460^1^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36060~^~415~^0.125^2^^~1~^~A~^^^1^0.120^0.130^1^^^^~05/01/2014~ -~36060~^~605~^0.815^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~606~^4.848^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~607~^0.080^4^0.008^~1~^~A~^^^1^0.070^0.104^3^0.055^0.106^~2, 3~^~05/01/2014~ -~36060~^~608~^0.058^4^0.006^~1~^~A~^^^1^0.049^0.075^3^0.039^0.076^~2, 3~^~05/01/2014~ -~36060~^~609~^0.036^4^0.003^~1~^~A~^^^1^0.031^0.046^3^0.025^0.047^~2, 3~^~05/01/2014~ -~36060~^~610~^0.092^4^0.009^~1~^~A~^^^1^0.079^0.120^3^0.063^0.122^~2, 3~^~05/01/2014~ -~36060~^~611~^0.110^4^0.010^~1~^~A~^^^1^0.096^0.141^3^0.078^0.143^~2, 3~^~05/01/2014~ -~36060~^~612~^0.477^4^0.034^~1~^~A~^^^1^0.427^0.572^3^0.368^0.585^~2, 3~^~05/01/2014~ -~36060~^~613~^2.390^4^0.097^~1~^~A~^^^1^2.178^2.647^3^2.081^2.698^~2, 3~^~05/01/2014~ -~36060~^~614~^1.425^4^0.055^~1~^~A~^^^1^1.273^1.531^3^1.249^1.601^~2, 3~^~05/01/2014~ -~36060~^~615~^0.021^4^0.001^~1~^~A~^^^1^0.018^0.024^3^0.017^0.025^~2, 3~^~05/01/2014~ -~36060~^~617~^4.105^4^0.121^~1~^~AS~^^^1^3.867^4.376^3^3.721^4.488^~2, 3~^~05/01/2014~ -~36060~^~618~^0.915^4^0.052^~1~^~AS~^^^1^0.841^1.065^3^0.751^1.079^~2, 3~^~05/01/2014~ -~36060~^~619~^0.058^4^0.002^~1~^~AS~^^^1^0.052^0.062^3^0.051^0.064^~2, 3~^~05/01/2014~ -~36060~^~620~^0.019^4^0.001^~1~^~A~^^^1^0.016^0.021^3^0.015^0.022^~2, 3~^~05/01/2014~ -~36060~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~624~^0.014^4^0.001^~1~^~A~^^^1^0.012^0.015^3^0.011^0.016^~2, 3~^~05/01/2014~ -~36060~^~625~^0.067^4^0.005^~1~^~A~^^^1^0.057^0.076^3^0.052^0.083^~2, 3~^~05/01/2014~ -~36060~^~626~^0.219^4^0.018^~1~^~AS~^^^1^0.176^0.265^3^0.161^0.277^~2, 3~^~05/01/2014~ -~36060~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~628~^0.027^4^0.001^~1~^~A~^^^1^0.025^0.030^3^0.023^0.031^~2, 3~^~05/01/2014~ -~36060~^~629~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36060~^~630~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.001^~2, 3~^~05/01/2014~ -~36060~^~631~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.008^~2, 3~^~05/01/2014~ -~36060~^~645~^4.464^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~646~^1.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~652~^0.058^4^0.004^~1~^~A~^^^1^0.052^0.068^3^0.046^0.071^~2, 3~^~05/01/2014~ -~36060~^~653~^0.080^4^0.004^~1~^~A~^^^1^0.072^0.090^3^0.066^0.094^~2, 3~^~05/01/2014~ -~36060~^~654~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.008^3^0.006^0.008^~2, 3~^~05/01/2014~ -~36060~^~662~^0.026^4^0.003^~1~^~A~^^^1^0.021^0.033^3^0.018^0.035^~2, 3~^~05/01/2014~ -~36060~^~663~^0.657^4^0.026^~1~^~A~^^^1^0.587^0.712^3^0.574^0.739^~2, 3~^~05/01/2014~ -~36060~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~665~^0.131^4^0.009^~1~^~A~^^^1^0.111^0.150^3^0.101^0.161^~2, 3~^~05/01/2014~ -~36060~^~670~^0.043^4^0.003^~1~^~A~^^^1^0.035^0.049^3^0.032^0.054^~2, 3~^~05/01/2014~ -~36060~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~05/01/2014~ -~36060~^~673~^0.193^4^0.017^~1~^~A~^^^1^0.152^0.237^3^0.137^0.248^~2, 3~^~05/01/2014~ -~36060~^~674~^3.448^4^0.103^~1~^~A~^^^1^3.209^3.664^3^3.121^3.775^~2, 3~^~05/01/2014~ -~36060~^~675~^0.742^4^0.045^~1~^~A~^^^1^0.681^0.875^3^0.599^0.884^~2, 3~^~05/01/2014~ -~36060~^~676~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36060~^~685~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~05/01/2014~ -~36060~^~687~^0.045^4^0.003^~1~^~A~^^^1^0.039^0.055^3^0.034^0.056^~2, 3~^~05/01/2014~ -~36060~^~689~^0.009^4^0.000^~1~^~AS~^^^1^0.008^0.010^3^0.008^0.011^~2, 3~^~05/01/2014~ -~36060~^~693~^0.683^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~695~^0.132^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36060~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~851~^0.055^4^0.003^~1~^~A~^^^1^0.049^0.062^3^0.047^0.064^~2, 3~^~05/01/2014~ -~36060~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36060~^~853~^0.009^4^0.000^~1~^~A~^^^1^0.008^0.010^3^0.008^0.011^~2, 3~^~05/01/2014~ -~36060~^~856~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36060~^~858~^0.005^4^0.000^~1~^~A~^^^1^0.004^0.005^3^0.004^0.005^~2, 3~^~05/01/2014~ -~36061~^~312~^0.099^11^0.008^~1~^~A~^^^1^0.073^0.137^10^0.081^0.116^~2, 3~^~05/01/2014~ -~36061~^~315~^0.269^11^0.030^~1~^~A~^^^1^0.125^0.405^10^0.201^0.337^~2, 3~^~05/01/2014~ -~36061~^~404~^0.162^5^0.014^~1~^~A~^^^1^0.130^0.190^4^0.124^0.200^~2, 3~^~05/01/2014~ -~36061~^~405~^0.248^5^0.016^~1~^~A~^^^1^0.210^0.300^4^0.203^0.293^~2, 3~^~05/01/2014~ -~36061~^~406~^2.630^5^0.065^~1~^~A~^^^1^2.520^2.830^4^2.450^2.810^~2, 3~^~05/01/2014~ -~36061~^~410~^0.465^4^0.012^~1~^~A~^^^1^0.450^0.500^3^0.427^0.503^~2, 3~^~05/01/2014~ -~36061~^~415~^0.136^5^0.007^~1~^~A~^^^1^0.120^0.160^4^0.117^0.155^~2, 3~^~05/01/2014~ -~36061~^~501~^0.125^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~502~^0.475^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~503~^0.504^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~504~^1.005^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~505~^0.943^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~506~^0.280^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~507~^0.147^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~508~^0.598^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~509~^0.371^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~510~^0.594^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~511~^0.703^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~512~^0.316^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~513~^0.636^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~514~^0.951^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~515~^2.282^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~516~^0.668^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~517~^1.871^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~518~^0.540^0^^~1~^~A~^^^^^^^^^^~05/01/2014~ -~36061~^~521~^0.265^2^^~1~^~A~^^^1^0.220^0.310^1^^^^~05/01/2014~ -~36061~^~605~^0.616^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~606~^4.486^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~607~^0.063^11^0.006^~1~^~A~^^^1^0.038^0.104^10^0.049^0.077^~2, 3~^~05/01/2014~ -~36061~^~608~^0.045^11^0.005^~1~^~A~^^^1^0.025^0.075^10^0.034^0.055^~2, 3~^~05/01/2014~ -~36061~^~609~^0.028^11^0.003^~1~^~A~^^^1^0.016^0.046^10^0.021^0.035^~2, 3~^~05/01/2014~ -~36061~^~610~^0.072^11^0.007^~1~^~A~^^^1^0.041^0.120^10^0.055^0.088^~2, 3~^~05/01/2014~ -~36061~^~611~^0.086^11^0.009^~1~^~A~^^^1^0.052^0.141^10^0.067^0.105^~2, 3~^~05/01/2014~ -~36061~^~612~^0.412^11^0.029^~1~^~A~^^^1^0.297^0.572^10^0.348^0.477^~2, 3~^~05/01/2014~ -~36061~^~613~^2.350^11^0.134^~1~^~A~^^^1^1.452^3.019^10^2.051^2.648^~2, 3~^~05/01/2014~ -~36061~^~614~^1.265^11^0.098^~1~^~A~^^^1^0.669^1.828^10^1.047^1.482^~2, 3~^~05/01/2014~ -~36061~^~615~^0.019^11^0.001^~1~^~A~^^^1^0.010^0.025^10^0.016^0.022^~2, 3~^~05/01/2014~ -~36061~^~617~^3.841^11^0.238^~1~^~AS~^^^1^2.178^4.965^10^3.310^4.371^~2, 3~^~05/01/2014~ -~36061~^~618~^1.073^11^0.115^~1~^~AS~^^^1^0.693^2.074^10^0.817^1.328^~2, 3~^~05/01/2014~ -~36061~^~619~^0.084^11^0.014^~1~^~AS~^^^1^0.035^0.204^10^0.052^0.116^~2, 3~^~05/01/2014~ -~36061~^~620~^0.020^11^0.002^~1~^~A~^^^1^0.011^0.031^10^0.016^0.024^~2, 3~^~05/01/2014~ -~36061~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~624~^0.011^11^0.001^~1~^~A~^^^1^0.004^0.018^10^0.008^0.014^~2, 3~^~05/01/2014~ -~36061~^~625~^0.069^11^0.005^~1~^~A~^^^1^0.052^0.097^10^0.058^0.079^~2, 3~^~05/01/2014~ -~36061~^~626~^0.242^11^0.017^~1~^~AS~^^^1^0.176^0.349^10^0.203^0.281^~2, 3~^~05/01/2014~ -~36061~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~628~^0.029^11^0.003^~1~^~A~^^^1^0.017^0.051^10^0.023^0.035^~2, 3~^~05/01/2014~ -~36061~^~629~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.005^10^0.001^0.003^~1, 2, 3~^~05/01/2014~ -~36061~^~630~^0.001^11^0.001^~1~^~AS~^^^1^0.000^0.006^10^0.000^0.002^~2, 3~^~05/01/2014~ -~36061~^~631~^0.006^11^0.001^~1~^~A~^^^1^0.004^0.012^10^0.005^0.008^~2, 3~^~05/01/2014~ -~36061~^~645~^4.229^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~646~^1.203^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~652~^0.051^11^0.003^~1~^~A~^^^1^0.035^0.068^10^0.043^0.059^~2, 3~^~05/01/2014~ -~36061~^~653~^0.078^11^0.005^~1~^~A~^^^1^0.049^0.103^10^0.067^0.088^~2, 3~^~05/01/2014~ -~36061~^~654~^0.007^11^0.000^~1~^~A~^^^1^0.005^0.009^10^0.006^0.008^~2, 3~^~05/01/2014~ -~36061~^~662~^0.025^11^0.002^~1~^~A~^^^1^0.016^0.033^10^0.021^0.029^~2, 3~^~05/01/2014~ -~36061~^~663~^0.501^11^0.082^~1~^~A~^^^1^0.158^1.096^10^0.318^0.683^~2, 3~^~05/01/2014~ -~36061~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~665~^0.090^11^0.012^~1~^~A~^^^1^0.033^0.150^10^0.063^0.117^~2, 3~^~05/01/2014~ -~36061~^~670~^0.042^11^0.004^~1~^~A~^^^1^0.028^0.067^10^0.034^0.050^~2, 3~^~05/01/2014~ -~36061~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~672~^0.004^11^0.001^~1~^~A~^^^1^0.002^0.013^10^0.002^0.006^~1, 2, 3~^~05/01/2014~ -~36061~^~673~^0.217^11^0.016^~1~^~A~^^^1^0.152^0.319^10^0.180^0.254^~2, 3~^~05/01/2014~ -~36061~^~674~^3.340^11^0.187^~1~^~A~^^^1^2.020^4.079^10^2.924^3.756^~2, 3~^~05/01/2014~ -~36061~^~675~^0.941^11^0.115^~1~^~A~^^^1^0.632^1.966^10^0.684^1.198^~2, 3~^~05/01/2014~ -~36061~^~676~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.006^10^0.000^0.002^~1, 2, 3~^~05/01/2014~ -~36061~^~685~^0.003^11^0.001^~1~^~A~^^^1^0.000^0.008^10^0.001^0.005^~1, 2, 3~^~05/01/2014~ -~36061~^~687~^0.048^11^0.003^~1~^~A~^^^1^0.035^0.067^10^0.041^0.056^~2, 3~^~05/01/2014~ -~36061~^~689~^0.010^11^0.001^~1~^~AS~^^^1^0.006^0.015^10^0.008^0.012^~2, 3~^~05/01/2014~ -~36061~^~693~^0.525^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~695~^0.091^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~ -~36061~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2014~ -~36061~^~851~^0.080^11^0.014^~1~^~A~^^^1^0.035^0.196^10^0.050^0.111^~2, 3~^~05/01/2014~ -~36061~^~852~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36061~^~853~^0.010^11^0.001^~1~^~A~^^^1^0.006^0.013^10^0.008^0.011^~2, 3~^~05/01/2014~ -~36061~^~856~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~05/01/2014~ -~36061~^~858~^0.005^11^0.000^~1~^~A~^^^1^0.002^0.006^10^0.004^0.005^~1, 2, 3~^~05/01/2014~ -~36401~^~312~^0.076^5^0.002^~1~^~A~^^^1^0.070^0.080^4^0.071^0.081^~2, 3~^~05/01/2009~ -~36401~^~315~^0.304^5^0.032^~1~^~A~^^^1^0.241^0.384^4^0.214^0.394^~2, 3~^~05/01/2009~ -~36401~^~404~^0.104^5^0.020^~1~^~A~^^^1^0.030^0.140^4^0.049^0.159^~2, 3~^~05/01/2009~ -~36401~^~405~^0.056^5^0.004^~1~^~A~^^^1^0.050^0.070^4^0.045^0.067^~2, 3~^~05/01/2009~ -~36401~^~406~^5.558^5^1.184^~1~^~A~^^^1^3.360^8.770^4^2.272^8.844^~2, 3~^~05/01/2009~ -~36401~^~410~^0.962^5^0.129^~1~^~A~^^^1^0.700^1.400^4^0.604^1.320^~2, 3~^~05/01/2009~ -~36401~^~415~^0.176^5^0.036^~1~^~A~^^^1^0.110^0.290^4^0.076^0.276^~2, 3~^~05/01/2009~ -~36401~^~501~^0.158^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~502~^0.498^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~503~^0.549^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~504~^0.933^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~505~^0.925^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~506~^0.306^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~507~^0.150^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~508~^0.514^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~509~^0.349^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~510~^0.619^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~511~^0.796^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~512~^0.398^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~513~^0.680^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~514~^1.109^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~515~^1.879^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~516~^0.585^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~517~^0.510^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~518~^0.469^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36401~^~605~^0.060^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~606~^1.101^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~608~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~610~^0.007^4^0.000^~1~^~A~^^^1^0.006^0.008^3^0.006^0.008^~2, 3~^~05/01/2009~ -~36401~^~611~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.004^~2, 3~^~05/01/2009~ -~36401~^~612~^0.022^4^0.004^~1~^~A~^^^1^0.012^0.031^3^0.010^0.035^~2, 3~^~05/01/2009~ -~36401~^~613~^0.804^4^0.169^~1~^~A~^^^1^0.378^1.197^3^0.267^1.341^~2, 3~^~05/01/2009~ -~36401~^~614~^0.238^4^0.041^~1~^~A~^^^1^0.130^0.319^3^0.108^0.368^~2, 3~^~05/01/2009~ -~36401~^~615~^0.009^4^0.002^~1~^~A~^^^1^0.006^0.015^3^0.003^0.015^~2, 3~^~05/01/2009~ -~36401~^~617~^1.606^4^0.374^~1~^~AS~^^^1^0.752^2.568^3^0.414^2.798^~2, 3~^~05/01/2009~ -~36401~^~618~^1.382^4^0.289^~1~^~AS~^^^1^0.817^2.107^3^0.463^2.301^~2, 3~^~05/01/2009~ -~36401~^~619~^0.121^4^0.022^~1~^~AS~^^^1^0.074^0.181^3^0.049^0.192^~2, 3~^~05/01/2009~ -~36401~^~620~^0.031^4^0.003^~1~^~A~^^^1^0.023^0.037^3^0.022^0.041^~2, 3~^~05/01/2009~ -~36401~^~621~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.005^~2, 3~^~05/01/2009~ -~36401~^~624~^0.006^4^0.001^~1~^~A~^^^1^0.003^0.009^3^0.001^0.010^~2, 3~^~05/01/2009~ -~36401~^~625~^0.005^4^0.002^~1~^~A~^^^1^0.002^0.010^3^-0.001^0.011^~2, 3~^~05/01/2009~ -~36401~^~626~^0.162^4^0.065^~1~^~AS~^^^1^0.060^0.334^3^-0.046^0.369^~2, 3~^~05/01/2009~ -~36401~^~627~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~36401~^~628~^0.016^4^0.003^~1~^~A~^^^1^0.009^0.021^3^0.007^0.025^~2, 3~^~05/01/2009~ -~36401~^~629~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.003^~1, 2, 3~^~05/01/2009~ -~36401~^~630~^0.001^4^0.001^~1~^~AS~^^^1^0.000^0.002^3^-0.001^0.002^~2, 3~^~05/01/2009~ -~36401~^~631~^0.003^4^0.000^~1~^~A~^^^1^0.003^0.004^3^0.002^0.005^~2, 3~^~05/01/2009~ -~36401~^~645~^1.799^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~646~^1.564^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~652~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.002^0.004^~2, 3~^~05/01/2009~ -~36401~^~653~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.008^3^0.002^0.009^~2, 3~^~05/01/2009~ -~36401~^~654~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.005^~2, 3~^~05/01/2009~ -~36401~^~662~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.003^~1, 2, 3~^~05/01/2009~ -~36401~^~663~^0.042^4^0.019^~1~^~A~^^^1^0.009^0.089^3^-0.018^0.103^~2, 3~^~05/01/2009~ -~36401~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~665~^0.017^4^0.007^~1~^~A~^^^1^0.006^0.037^3^-0.005^0.039^~2, 3~^~05/01/2009~ -~36401~^~670~^0.005^4^0.001^~1~^~A~^^^1^0.002^0.007^3^0.002^0.009^~2, 3~^~05/01/2009~ -~36401~^~671~^0.002^4^0.000^~1~^~A~^^^1^0.002^0.003^3^0.001^0.003^~2, 3~^~05/01/2009~ -~36401~^~672~^0.005^4^0.001^~1~^~A~^^^1^0.004^0.007^3^0.003^0.008^~2, 3~^~05/01/2009~ -~36401~^~673~^0.161^4^0.064^~1~^~A~^^^1^0.060^0.331^3^-0.044^0.365^~2, 3~^~05/01/2009~ -~36401~^~674~^1.564^4^0.364^~1~^~A~^^^1^0.743^2.511^3^0.406^2.721^~2, 3~^~05/01/2009~ -~36401~^~675~^1.360^4^0.283^~1~^~A~^^^1^0.809^2.064^3^0.461^2.259^~2, 3~^~05/01/2009~ -~36401~^~676~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~36401~^~685~^0.006^4^0.002^~1~^~A~^^^1^0.002^0.012^3^-0.002^0.013^~2, 3~^~05/01/2009~ -~36401~^~687~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.011^3^0.003^0.011^~2, 3~^~05/01/2009~ -~36401~^~689~^0.010^4^0.001^~1~^~AS~^^^1^0.008^0.013^3^0.006^0.014^~2, 3~^~05/01/2009~ -~36401~^~693~^0.043^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36401~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~851~^0.115^4^0.023^~1~^~A~^^^1^0.062^0.175^3^0.041^0.190^~2, 3~^~05/01/2009~ -~36401~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36401~^~853~^0.010^4^0.001^~1~^~A~^^^1^0.008^0.013^3^0.006^0.014^~2, 3~^~05/01/2009~ -~36401~^~858~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.008^3^0.005^0.009^~2, 3~^~05/01/2009~ -~36403~^~312~^0.097^3^0.024^~1~^~A~^^^1^0.049^0.129^2^-0.008^0.201^~2, 3~^~05/01/2009~ -~36403~^~315~^0.267^3^0.112^~1~^~A~^^^1^0.042^0.387^2^-0.217^0.750^~2, 3~^~05/01/2009~ -~36403~^~404~^0.277^3^0.113^~1~^~A~^^^1^0.070^0.460^2^-0.210^0.764^~2, 3~^~05/01/2009~ -~36403~^~405~^0.190^3^0.055^~1~^~A~^^^1^0.100^0.290^2^-0.047^0.427^~2, 3~^~05/01/2009~ -~36403~^~406~^4.663^3^1.111^~1~^~A~^^^1^2.810^6.650^2^-0.115^9.442^~2, 3~^~05/01/2009~ -~36403~^~410~^0.490^3^0.059^~1~^~A~^^^1^0.380^0.580^2^0.238^0.742^~2, 3~^~05/01/2009~ -~36403~^~415~^0.148^3^0.003^~1~^~A~^^^1^0.142^0.152^2^0.135^0.161^~2, 3~^~05/01/2009~ -~36403~^~501~^0.118^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~502~^0.413^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~503~^0.461^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~504~^0.895^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~505~^0.614^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~506~^0.207^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~507~^0.157^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~508~^0.496^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~509~^0.306^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~510~^0.511^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~511~^0.577^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~512~^0.309^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~513~^0.578^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~514~^0.820^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~515~^2.542^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~516~^0.568^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~517~^0.855^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~518~^0.454^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36403~^~605~^0.826^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~606~^5.156^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~12/01/2012~ -~36403~^~610~^0.021^3^0.003^~1~^~A~^^^1^0.018^0.028^2^0.007^0.036^~2, 3~^~05/01/2009~ -~36403~^~611~^0.009^3^0.001^~1~^~A~^^^1^0.006^0.011^2^0.003^0.015^~2, 3~^~05/01/2009~ -~36403~^~612~^0.191^3^0.017^~1~^~A~^^^1^0.168^0.223^2^0.120^0.262^~2, 3~^~05/01/2009~ -~36403~^~613~^3.102^3^0.187^~1~^~A~^^^1^2.749^3.385^2^2.298^3.906^~2, 3~^~05/01/2009~ -~36403~^~614~^1.675^3^0.204^~1~^~A~^^^1^1.398^2.073^2^0.798^2.553^~2, 3~^~05/01/2009~ -~36403~^~615~^0.039^3^0.002^~1~^~A~^^^1^0.036^0.041^2^0.032^0.046^~2, 3~^~05/01/2009~ -~36403~^~617~^6.703^3^0.583^~1~^~AS~^^^1^5.693^7.714^2^4.192^9.213^~2, 3~^~05/01/2009~ -~36403~^~618~^3.848^3^0.555^~1~^~AS~^^^1^2.807^4.703^2^1.459^6.236^~2, 3~^~05/01/2009~ -~36403~^~619~^0.304^3^0.131^~1~^~AS~^^^1^0.163^0.565^2^-0.257^0.866^~2, 3~^~05/01/2009~ -~36403~^~620~^0.029^3^0.004^~1~^~A~^^^1^0.021^0.035^2^0.011^0.048^~2, 3~^~05/01/2009~ -~36403~^~621~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~2, 3~^~05/01/2009~ -~36403~^~624~^0.020^3^0.009^~1~^~A~^^^1^0.008^0.037^2^-0.017^0.058^~2, 3~^~05/01/2009~ -~36403~^~625~^0.030^3^0.011^~1~^~A~^^^1^0.012^0.049^2^-0.016^0.076^~2, 3~^~05/01/2009~ -~36403~^~626~^0.303^3^0.010^~1~^~AS~^^^1^0.289^0.322^2^0.261^0.345^~2, 3~^~05/01/2009~ -~36403~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~628~^0.082^3^0.015^~1~^~A~^^^1^0.052^0.099^2^0.018^0.146^~2, 3~^~05/01/2009~ -~36403~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~05/01/2009~ -~36403~^~630~^0.001^3^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2009~ -~36403~^~631~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.011^2^0.001^0.016^~2, 3~^~05/01/2009~ -~36403~^~645~^7.121^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~646~^4.268^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~652~^0.021^3^0.003^~1~^~A~^^^1^0.015^0.025^2^0.007^0.035^~2, 3~^~05/01/2009~ -~36403~^~653~^0.067^3^0.006^~1~^~A~^^^1^0.057^0.077^2^0.042^0.092^~2, 3~^~05/01/2009~ -~36403~^~654~^0.010^3^0.002^~1~^~A~^^^1^0.008^0.014^2^0.002^0.018^~2, 3~^~05/01/2009~ -~36403~^~662~^0.013^3^0.001^~1~^~A~^^^1^0.011^0.015^2^0.008^0.018^~2, 3~^~05/01/2009~ -~36403~^~663~^0.672^3^0.282^~1~^~A~^^^1^0.110^0.999^2^-0.543^1.887^~2, 3~^~05/01/2009~ -~36403~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~665~^0.141^3^0.047^~1~^~A~^^^1^0.047^0.197^2^-0.062^0.344^~2, 3~^~05/01/2009~ -~36403~^~670~^0.042^3^0.006^~1~^~A~^^^1^0.030^0.050^2^0.015^0.069^~2, 3~^~05/01/2009~ -~36403~^~671~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~05/01/2009~ -~36403~^~672~^0.045^3^0.017^~1~^~A~^^^1^0.013^0.068^2^-0.026^0.117^~2, 3~^~05/01/2009~ -~36403~^~673~^0.290^3^0.009^~1~^~A~^^^1^0.278^0.307^2^0.252^0.328^~2, 3~^~05/01/2009~ -~36403~^~674~^6.030^3^0.348^~1~^~A~^^^1^5.583^6.715^2^4.534^7.526^~2, 3~^~05/01/2009~ -~36403~^~675~^3.665^3^0.560^~1~^~A~^^^1^2.582^4.456^2^1.254^6.076^~2, 3~^~05/01/2009~ -~36403~^~676~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2009~ -~36403~^~685~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~2, 3~^~05/01/2009~ -~36403~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~05/01/2009~ -~36403~^~689~^0.020^3^0.005^~1~^~AS~^^^1^0.011^0.027^2^-0.001^0.040^~2, 3~^~05/01/2009~ -~36403~^~693~^0.686^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~695~^0.141^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~ -~36403~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36403~^~851~^0.301^3^0.131^~1~^~A~^^^1^0.160^0.563^2^-0.262^0.865^~2, 3~^~05/01/2009~ -~36403~^~852~^0.007^3^0.003^~1~^~A~^^^1^0.002^0.012^2^-0.005^0.020^~2, 3~^~05/01/2009~ -~36403~^~853~^0.012^3^0.002^~1~^~A~^^^1^0.009^0.015^2^0.005^0.020^~2, 3~^~05/01/2009~ -~36403~^~858~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.010^2^0.001^0.014^~2, 3~^~05/01/2009~ -~36404~^~312~^0.031^4^0.006^~1~^~A~^^^1^0.018^0.048^3^0.011^0.052^~1, 2, 3~^~06/01/2009~ -~36404~^~315~^0.129^4^0.015^~1~^~A~^^^1^0.086^0.154^3^0.081^0.177^~2, 3~^~06/01/2009~ -~36404~^~404~^0.025^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.005^0.044^~1, 2, 3~^~06/01/2009~ -~36404~^~405~^0.097^4^0.025^~1~^~A~^^^1^0.030^0.150^3^0.018^0.177^~2, 3~^~06/01/2009~ -~36404~^~406~^0.310^4^0.071^~1~^~A~^^^1^0.140^0.470^3^0.084^0.536^~2, 3~^~06/01/2009~ -~36404~^~410~^0.530^2^^~1~^~A~^^^1^0.310^0.750^1^^^^~06/01/2009~ -~36404~^~415~^0.025^4^0.003^~1~^~A~^^^1^0.020^0.030^3^0.016^0.034^~2, 3~^~06/01/2009~ -~36404~^~501~^0.084^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~502~^0.125^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~503~^0.158^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~504~^0.287^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~505~^0.336^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~506~^0.075^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~507~^0.042^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~508~^0.167^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~509~^0.154^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~510~^0.196^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~511~^0.163^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~512~^0.109^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~513~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~514~^0.259^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~515~^0.634^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~516~^0.084^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~517~^0.292^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~518~^0.158^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36404~^~605~^0.145^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~606~^1.899^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~607~^0.047^4^0.016^~1~^~A~^^^1^0.000^0.073^3^-0.004^0.098^~1, 2, 3~^~06/01/2009~ -~36404~^~608~^0.035^4^0.009^~1~^~A~^^^1^0.011^0.053^3^0.007^0.064^~2, 3~^~06/01/2009~ -~36404~^~609~^0.031^4^0.005^~1~^~A~^^^1^0.022^0.045^3^0.015^0.047^~2, 3~^~06/01/2009~ -~36404~^~610~^0.074^4^0.008^~1~^~A~^^^1^0.058^0.095^3^0.049^0.099^~2, 3~^~06/01/2009~ -~36404~^~611~^0.169^4^0.099^~1~^~A~^^^1^0.058^0.466^3^-0.146^0.484^~2, 3~^~06/01/2009~ -~36404~^~612~^0.246^4^0.021^~1~^~A~^^^1^0.199^0.300^3^0.180^0.312^~2, 3~^~06/01/2009~ -~36404~^~613~^0.914^4^0.176^~1~^~A~^^^1^0.616^1.411^3^0.355^1.473^~2, 3~^~06/01/2009~ -~36404~^~614~^0.335^4^0.031^~1~^~A~^^^1^0.251^0.397^3^0.236^0.433^~2, 3~^~06/01/2009~ -~36404~^~615~^0.007^4^0.003^~1~^~A~^^^1^0.003^0.016^3^-0.003^0.017^~2, 3~^~06/01/2009~ -~36404~^~617~^0.952^4^0.251^~1~^~AS~^^^1^0.589^1.692^3^0.153^1.751^~2, 3~^~06/01/2009~ -~36404~^~618~^0.395^4^0.254^~1~^~AS~^^^1^0.120^1.157^3^-0.414^1.204^~2, 3~^~06/01/2009~ -~36404~^~619~^0.039^4^0.027^~1~^~AS~^^^1^0.009^0.119^3^-0.046^0.124^~2, 3~^~06/01/2009~ -~36404~^~620~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.005^3^0.000^0.007^~1, 2, 3~^~06/01/2009~ -~36404~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~624~^0.003^4^0.003^~1~^~A~^^^1^0.000^0.011^3^-0.005^0.011^~1, 2, 3~^~06/01/2009~ -~36404~^~625~^0.017^4^0.003^~1~^~A~^^^1^0.008^0.023^3^0.006^0.027^~2, 3~^~06/01/2009~ -~36404~^~626~^0.042^4^0.008^~1~^~AS~^^^1^0.021^0.059^3^0.017^0.066^~2, 3~^~06/01/2009~ -~36404~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~06/01/2009~ -~36404~^~628~^0.008^4^0.004^~1~^~A~^^^1^0.002^0.019^3^-0.005^0.020^~2, 3~^~06/01/2009~ -~36404~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~06/01/2009~ -~36404~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^3^0.000^0.000^~2, 3~^~06/01/2009~ -~36404~^~631~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~1, 2, 3~^~06/01/2009~ -~36404~^~645~^1.018^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~646~^0.443^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~652~^0.021^4^0.004^~1~^~A~^^^1^0.011^0.030^3^0.008^0.034^~2, 3~^~06/01/2009~ -~36404~^~653~^0.014^4^0.002^~1~^~A~^^^1^0.010^0.019^3^0.008^0.020^~2, 3~^~06/01/2009~ -~36404~^~654~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.005^3^-0.001^0.005^~1, 2, 3~^~06/01/2009~ -~36404~^~662~^0.007^4^0.002^~1~^~A~^^^1^0.003^0.010^3^0.002^0.012^~2, 3~^~06/01/2009~ -~36404~^~663~^0.109^4^0.041^~1~^~A~^^^1^0.058^0.232^3^-0.021^0.240^~2, 3~^~06/01/2009~ -~36404~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~665~^0.029^4^0.012^~1~^~A~^^^1^0.015^0.065^3^-0.009^0.067^~2, 3~^~06/01/2009~ -~36404~^~670~^0.012^4^0.002^~1~^~A~^^^1^0.008^0.016^3^0.007^0.018^~2, 3~^~06/01/2009~ -~36404~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~06/01/2009~ -~36404~^~672~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36404~^~673~^0.035^4^0.006^~1~^~A~^^^1^0.019^0.049^3^0.015^0.055^~2, 3~^~06/01/2009~ -~36404~^~674~^0.843^4^0.210^~1~^~A~^^^1^0.531^1.460^3^0.174^1.512^~2, 3~^~06/01/2009~ -~36404~^~675~^0.353^4^0.244^~1~^~A~^^^1^0.093^1.085^3^-0.423^1.130^~2, 3~^~06/01/2009~ -~36404~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^3^0.000^0.000^~1, 2, 3~^~06/01/2009~ -~36404~^~685~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36404~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~689~^0.003^4^0.001^~1~^~AS~^^^1^0.001^0.004^3^0.001^0.005^~2, 3~^~06/01/2009~ -~36404~^~693~^0.116^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~695~^0.029^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36404~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~851~^0.038^4^0.027^~1~^~A~^^^1^0.008^0.119^3^-0.047^0.124^~2, 3~^~06/01/2009~ -~36404~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36404~^~853~^0.003^4^0.001^~1~^~A~^^^1^0.001^0.004^3^0.001^0.005^~1, 2, 3~^~06/01/2009~ -~36404~^~858~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36405~^~312~^0.161^4^0.008^~1~^~A~^^^1^0.142^0.180^3^0.137^0.186^~2, 3~^~06/01/2009~ -~36405~^~315~^0.443^4^0.086^~1~^~A~^^^1^0.304^0.695^3^0.169^0.718^~2, 3~^~06/01/2009~ -~36405~^~404~^0.122^4^0.046^~1~^~A~^^^1^0.060^0.260^3^-0.025^0.270^~2, 3~^~06/01/2009~ -~36405~^~405~^0.021^4^0.003^~1~^~A~^^^1^0.015^0.030^3^0.011^0.031^~1, 2, 3~^~06/01/2009~ -~36405~^~406~^1.017^4^0.255^~1~^~A~^^^1^0.520^1.670^3^0.205^1.830^~2, 3~^~06/01/2009~ -~36405~^~410~^0.263^3^0.033^~1~^~A~^^^1^0.230^0.330^2^0.120^0.407^~2, 3~^~06/01/2009~ -~36405~^~415~^0.062^4^0.005^~1~^~A~^^^1^0.050^0.070^3^0.047^0.078^~2, 3~^~06/01/2009~ -~36405~^~501~^0.058^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~502~^0.191^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~503~^0.201^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~504~^0.366^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~505~^0.255^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~506~^0.069^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~507~^0.053^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~508~^0.260^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~509~^0.149^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~510~^0.265^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~511~^0.323^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~512~^0.127^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~513~^0.212^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~514~^0.520^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~515~^0.764^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~516~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~517~^0.164^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~518~^0.260^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36405~^~605~^0.047^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~606~^0.729^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~610~^0.016^4^0.004^~1~^~A~^^^1^0.010^0.028^3^0.003^0.029^~2, 3~^~06/01/2009~ -~36405~^~611~^0.005^4^0.004^~1~^~A~^^^1^0.000^0.017^3^-0.008^0.018^~1, 2, 3~^~06/01/2009~ -~36405~^~612~^0.033^4^0.015^~1~^~A~^^^1^0.004^0.061^3^-0.016^0.081^~2, 3~^~06/01/2009~ -~36405~^~613~^0.463^4^0.139^~1~^~A~^^^1^0.126^0.726^3^0.022^0.905^~2, 3~^~06/01/2009~ -~36405~^~614~^0.176^4^0.064^~1~^~A~^^^1^0.028^0.328^3^-0.027^0.379^~2, 3~^~06/01/2009~ -~36405~^~615~^0.010^4^0.004^~1~^~A~^^^1^0.003^0.020^3^-0.002^0.022^~2, 3~^~06/01/2009~ -~36405~^~617~^0.853^4^0.304^~1~^~AS~^^^1^0.228^1.500^3^-0.114^1.820^~2, 3~^~06/01/2009~ -~36405~^~618~^1.313^4^0.564^~1~^~AS~^^^1^0.298^2.811^3^-0.481^3.107^~2, 3~^~06/01/2009~ -~36405~^~619~^0.239^4^0.064^~1~^~AS~^^^1^0.121^0.416^3^0.035^0.444^~2, 3~^~06/01/2009~ -~36405~^~620~^0.002^4^0.000^~1~^~A~^^^1^0.001^0.003^3^0.001^0.003^~2, 3~^~06/01/2009~ -~36405~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~624~^0.009^4^0.003^~1~^~A~^^^1^0.003^0.018^3^-0.002^0.020^~2, 3~^~06/01/2009~ -~36405~^~625~^0.004^4^0.002^~1~^~A~^^^1^0.000^0.010^3^-0.003^0.011^~1, 2, 3~^~06/01/2009~ -~36405~^~626~^0.020^4^0.011^~1~^~AS~^^^1^0.002^0.052^3^-0.015^0.056^~2, 3~^~06/01/2009~ -~36405~^~627~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~628~^0.012^4^0.004^~1~^~A~^^^1^0.002^0.021^3^-0.002^0.027^~2, 3~^~06/01/2009~ -~36405~^~629~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~36405~^~631~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~645~^0.889^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~646~^1.557^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~652~^0.004^4^0.002^~1~^~A~^^^1^0.001^0.008^3^-0.001^0.010^~2, 3~^~06/01/2009~ -~36405~^~653~^0.008^4^0.004^~1~^~A~^^^1^0.001^0.021^3^-0.006^0.022^~2, 3~^~06/01/2009~ -~36405~^~654~^0.005^4^0.001^~1~^~A~^^^1^0.003^0.009^3^0.001^0.010^~2, 3~^~06/01/2009~ -~36405~^~662~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.004^3^-0.002^0.006^~1, 2, 3~^~06/01/2009~ -~36405~^~663~^0.031^4^0.017^~1~^~A~^^^1^0.002^0.080^3^-0.023^0.085^~2, 3~^~06/01/2009~ -~36405~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~665~^0.014^4^0.003^~1~^~A~^^^1^0.009^0.020^3^0.005^0.022^~2, 3~^~06/01/2009~ -~36405~^~670~^0.003^4^0.001^~1~^~A~^^^1^0.000^0.006^3^-0.001^0.008^~1, 2, 3~^~06/01/2009~ -~36405~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.001^3^-0.001^0.001^~1, 2, 3~^~06/01/2009~ -~36405~^~672~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.002^3^0.000^0.003^~1, 2, 3~^~06/01/2009~ -~36405~^~673~^0.018^4^0.010^~1~^~A~^^^1^0.002^0.048^3^-0.014^0.051^~2, 3~^~06/01/2009~ -~36405~^~674~^0.822^4^0.302^~1~^~A~^^^1^0.208^1.498^3^-0.139^1.782^~2, 3~^~06/01/2009~ -~36405~^~675~^1.296^4^0.562^~1~^~A~^^^1^0.288^2.792^3^-0.492^3.083^~2, 3~^~06/01/2009~ -~36405~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~685~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~689~^0.001^4^0.000^~1~^~AS~^^^1^0.000^0.001^3^0.000^0.001^~2, 3~^~06/01/2009~ -~36405~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36405~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~851~^0.239^4^0.064^~1~^~A~^^^1^0.121^0.416^3^0.035^0.444^~2, 3~^~06/01/2009~ -~36405~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36405~^~853~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~06/01/2009~ -~36405~^~858~^0.001^4^0.000^~1~^~A~^^^1^0.000^0.001^3^0.000^0.002^~1, 2, 3~^~06/01/2009~ -~36406~^~312~^0.139^3^0.017^~1~^~A~^^^1^0.115^0.173^2^0.064^0.214^~2, 3~^~06/01/2009~ -~36406~^~315~^0.419^3^0.021^~1~^~A~^^^1^0.388^0.459^2^0.329^0.509^~2, 3~^~06/01/2009~ -~36406~^~404~^0.043^3^0.019^~1~^~A~^^^1^0.020^0.080^2^-0.037^0.123^~2, 3~^~06/01/2009~ -~36406~^~405~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~406~^0.813^3^0.150^~1~^~A~^^^1^0.560^1.080^2^0.167^1.460^~2, 3~^~06/01/2009~ -~36406~^~410~^0.220^2^^~1~^~A~^^^1^0.210^0.230^1^^^^~06/01/2009~ -~36406~^~415~^0.047^3^0.012^~1~^~A~^^^1^0.030^0.070^2^-0.005^0.098^~2, 3~^~06/01/2009~ -~36406~^~501~^0.051^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~502~^0.150^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~503~^0.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~504~^0.300^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~505~^0.206^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~506~^0.066^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~507~^0.051^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~508~^0.202^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~509~^0.095^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~510~^0.215^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~511~^0.244^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~512~^0.112^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~513~^0.178^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~514~^0.427^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~515~^0.628^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~516~^0.159^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~517~^0.178^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~518~^0.206^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36406~^~605~^0.012^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~606~^0.502^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~610~^0.010^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.001^0.019^~2, 3~^~06/01/2009~ -~36406~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36406~^~612~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~06/01/2009~ -~36406~^~613~^0.348^3^0.053^~1~^~A~^^^1^0.246^0.422^2^0.121^0.574^~2, 3~^~06/01/2009~ -~36406~^~614~^0.110^3^0.023^~1~^~A~^^^1^0.067^0.146^2^0.011^0.210^~2, 3~^~06/01/2009~ -~36406~^~615~^0.009^3^0.002^~1~^~A~^^^1^0.006^0.012^2^0.002^0.016^~2, 3~^~06/01/2009~ -~36406~^~617~^0.672^3^0.099^~1~^~AS~^^^1^0.511^0.851^2^0.248^1.096^~2, 3~^~06/01/2009~ -~36406~^~618~^1.350^3^0.303^~1~^~AS~^^^1^0.788^1.828^2^0.046^2.655^~2, 3~^~06/01/2009~ -~36406~^~619~^0.225^3^0.038^~1~^~AS~^^^1^0.150^0.270^2^0.063^0.387^~2, 3~^~06/01/2009~ -~36406~^~620~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~2, 3~^~06/01/2009~ -~36406~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~624~^0.009^3^0.002^~1~^~A~^^^1^0.005^0.012^2^0.000^0.017^~2, 3~^~06/01/2009~ -~36406~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~626~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~06/01/2009~ -~36406~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~628~^0.014^3^0.001^~1~^~A~^^^1^0.012^0.016^2^0.009^0.019^~2, 3~^~06/01/2009~ -~36406~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~36406~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~645~^0.691^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~646~^1.579^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2009~ -~36406~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~2, 3~^~06/01/2009~ -~36406~^~654~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~06/01/2009~ -~36406~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~663~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~2, 3~^~06/01/2009~ -~36406~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~665~^0.011^3^0.003^~1~^~A~^^^1^0.007^0.016^2^-0.001^0.022^~2, 3~^~06/01/2009~ -~36406~^~670~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2009~ -~36406~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~2, 3~^~06/01/2009~ -~36406~^~673~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.001^0.008^~2, 3~^~06/01/2009~ -~36406~^~674~^0.670^3^0.099^~1~^~A~^^^1^0.510^0.850^2^0.246^1.095^~2, 3~^~06/01/2009~ -~36406~^~675~^1.338^3^0.305^~1~^~A~^^^1^0.771^1.817^2^0.025^2.651^~2, 3~^~06/01/2009~ -~36406~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~687~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~06/01/2009~ -~36406~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36406~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~851~^0.225^3^0.038^~1~^~A~^^^1^0.150^0.270^2^0.063^0.387^~2, 3~^~06/01/2009~ -~36406~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36406~^~858~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~2, 3~^~06/01/2009~ -~36407~^~312~^0.126^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~315~^0.587^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~404~^0.030^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~405~^0.015^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~406~^0.530^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~410~^0.240^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~415~^0.040^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~502~^0.110^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~503~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~504~^0.260^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~505~^0.120^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~506~^0.070^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~507~^0.060^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~508~^0.170^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~509~^0.100^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~510~^0.180^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~511~^0.250^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~512~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~513~^0.170^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~514~^0.310^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~515~^0.840^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~516~^0.140^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~517~^0.110^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~518~^0.160^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~605~^0.013^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~606~^0.763^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~610~^0.029^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~612~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~613~^0.511^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~614~^0.172^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~615~^0.015^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~617~^0.980^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~618~^2.070^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~619~^0.249^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~624~^0.013^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~626~^0.005^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~628~^0.020^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~645~^1.005^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~646~^2.320^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~652~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~653~^0.004^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~654~^0.006^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~663~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~665~^0.011^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~670~^0.002^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~672~^0.001^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~673~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~674~^0.978^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~675~^2.057^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~ -~36407~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~695~^0.011^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36407~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~851~^0.249^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36407~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36407~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36408~^~312~^0.141^6^0.010^~1~^~A~^^^1^0.111^0.171^5^0.115^0.168^~2, 3~^~05/01/2010~ -~36408~^~315~^0.344^6^0.012^~1~^~A~^^^1^0.315^0.374^5^0.314^0.374^~2, 3~^~05/01/2010~ -~36408~^~404~^0.077^3^0.012^~1~^~A~^^^1^0.060^0.100^2^0.025^0.128^~2, 3~^~05/01/2010~ -~36408~^~405~^0.030^3^0.006^~1~^~A~^^^1^0.020^0.040^2^0.005^0.055^~2, 3~^~05/01/2010~ -~36408~^~406~^0.867^3^0.117^~1~^~A~^^^1^0.640^1.030^2^0.363^1.370^~2, 3~^~05/01/2010~ -~36408~^~410~^0.303^3^0.023^~1~^~A~^^^1^0.280^0.350^2^0.203^0.404^~2, 3~^~05/01/2010~ -~36408~^~415~^0.172^3^0.017^~1~^~A~^^^1^0.145^0.204^2^0.098^0.246^~2, 3~^~05/01/2010~ -~36408~^~501~^0.055^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~502~^0.212^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~503~^0.219^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~504~^0.525^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~505~^0.293^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~506~^0.100^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~507~^0.077^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~508~^0.290^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~509~^0.138^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~510~^0.258^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~511~^0.293^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~512~^0.164^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~513~^0.290^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~514~^0.543^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~515~^0.969^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~516~^0.209^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~517~^0.300^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~518~^0.309^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36408~^~605~^0.057^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~606~^2.188^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~607~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.010^5^0.001^0.007^~1, 2, 3~^~05/01/2010~ -~36408~^~608~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.005^~1, 2, 3~^~05/01/2010~ -~36408~^~609~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 2, 3~^~05/01/2010~ -~36408~^~610~^0.008^6^0.002^~1~^~A~^^^1^0.003^0.017^5^0.003^0.013^~2, 3~^~05/01/2010~ -~36408~^~611~^0.007^6^0.002^~1~^~A~^^^1^0.003^0.015^5^0.003^0.012^~2, 3~^~05/01/2010~ -~36408~^~612~^0.069^6^0.012^~1~^~A~^^^1^0.017^0.106^5^0.038^0.100^~2, 3~^~05/01/2010~ -~36408~^~613~^1.417^6^0.182^~1~^~A~^^^1^0.638^1.915^5^0.949^1.885^~2, 3~^~05/01/2010~ -~36408~^~614~^0.607^6^0.106^~1~^~A~^^^1^0.201^0.976^5^0.335^0.880^~2, 3~^~05/01/2010~ -~36408~^~615~^0.023^6^0.002^~1~^~A~^^^1^0.014^0.029^5^0.017^0.030^~2, 3~^~05/01/2010~ -~36408~^~617~^2.804^6^0.376^~1~^~AS~^^^1^1.088^3.680^5^1.837^3.771^~2, 3~^~05/01/2010~ -~36408~^~618~^2.516^6^0.186^~1~^~AS~^^^1^1.991^3.073^5^2.039^2.993^~2, 3~^~05/01/2010~ -~36408~^~619~^0.331^6^0.035^~1~^~AS~^^^1^0.218^0.441^5^0.240^0.422^~2, 3~^~05/01/2010~ -~36408~^~620~^0.011^6^0.002^~1~^~A~^^^1^0.002^0.016^5^0.006^0.016^~1, 2, 3~^~05/01/2010~ -~36408~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36408~^~624~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.015^5^0.009^0.015^~2, 3~^~05/01/2010~ -~36408~^~625~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36408~^~626~^0.104^6^0.014^~1~^~AS~^^^1^0.037^0.128^5^0.069^0.140^~2, 3~^~05/01/2010~ -~36408~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36408~^~628~^0.056^6^0.007^~1~^~A~^^^1^0.028^0.076^5^0.038^0.074^~2, 3~^~05/01/2010~ -~36408~^~629~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36408~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.003^5^0.001^0.003^~2, 3~^~05/01/2010~ -~36408~^~631~^0.003^6^0.001^~1~^~A~^^^1^0.000^0.005^5^0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36408~^~645~^2.986^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~646~^2.907^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~652~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.008^5^0.004^0.007^~2, 3~^~05/01/2010~ -~36408~^~653~^0.021^6^0.003^~1~^~A~^^^1^0.007^0.032^5^0.012^0.030^~2, 3~^~05/01/2010~ -~36408~^~654~^0.008^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.009^~2, 3~^~05/01/2010~ -~36408~^~662~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2010~ -~36408~^~663~^0.035^6^0.005^~1~^~A~^^^1^0.019^0.049^5^0.023^0.048^~2, 3~^~05/01/2010~ -~36408~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36408~^~665~^0.019^6^0.002^~1~^~A~^^^1^0.014^0.023^5^0.014^0.023^~2, 3~^~05/01/2010~ -~36408~^~670~^0.010^6^0.002^~1~^~A~^^^1^0.003^0.014^5^0.006^0.014^~2, 3~^~05/01/2010~ -~36408~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36408~^~672~^0.027^6^0.005^~1~^~A~^^^1^0.003^0.039^5^0.013^0.040^~2, 3~^~05/01/2010~ -~36408~^~673~^0.102^6^0.014^~1~^~A~^^^1^0.036^0.126^5^0.067^0.138^~2, 3~^~05/01/2010~ -~36408~^~674~^2.769^6^0.377^~1~^~A~^^^1^1.056^3.661^5^1.800^3.738^~2, 3~^~05/01/2010~ -~36408~^~675~^2.488^6^0.185^~1~^~A~^^^1^1.963^3.037^5^2.014^2.962^~2, 3~^~05/01/2010~ -~36408~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36408~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36408~^~687~^0.015^6^0.003^~1~^~A~^^^1^0.004^0.022^5^0.009^0.022^~2, 3~^~05/01/2010~ -~36408~^~689~^0.009^6^0.002^~1~^~AS~^^^1^0.002^0.014^5^0.005^0.013^~2, 3~^~05/01/2010~ -~36408~^~693~^0.038^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36408~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36408~^~851~^0.329^6^0.035^~1~^~A~^^^1^0.216^0.440^5^0.238^0.421^~2, 3~^~05/01/2010~ -~36408~^~852~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.008^5^0.002^0.007^~1, 2, 3~^~05/01/2010~ -~36408~^~853~^0.004^6^0.001^~1~^~A~^^^1^0.001^0.006^5^0.003^0.006^~1, 2, 3~^~05/01/2010~ -~36408~^~858~^0.004^6^0.001^~1~^~A~^^^1^0.000^0.007^5^0.002^0.007^~1, 2, 3~^~05/01/2010~ -~36409~^~312~^0.037^6^0.006^~1~^~A~^^^1^0.019^0.050^5^0.022^0.053^~1, 2, 3~^~05/01/2010~ -~36409~^~315~^0.125^6^0.006^~1~^~A~^^^1^0.105^0.141^5^0.111^0.140^~2, 3~^~05/01/2010~ -~36409~^~404~^0.042^3^0.016^~1~^~A~^^^1^0.015^0.070^2^-0.027^0.110^~1, 2, 3~^~05/01/2010~ -~36409~^~405~^0.127^3^0.009^~1~^~A~^^^1^0.110^0.140^2^0.089^0.165^~2, 3~^~05/01/2010~ -~36409~^~406~^0.483^3^0.084^~1~^~A~^^^1^0.390^0.650^2^0.124^0.843^~2, 3~^~05/01/2010~ -~36409~^~410~^0.337^3^0.009^~1~^~A~^^^1^0.320^0.350^2^0.299^0.375^~2, 3~^~05/01/2010~ -~36409~^~415~^0.149^3^0.008^~1~^~A~^^^1^0.139^0.165^2^0.113^0.184^~2, 3~^~05/01/2010~ -~36409~^~501~^0.152^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~502~^0.458^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~503~^0.565^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~504~^1.290^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~505~^0.870^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~506~^0.346^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~507~^0.097^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~508~^0.625^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~509~^0.476^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~510~^0.741^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~511~^0.482^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~512~^0.368^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~513~^0.459^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~514~^0.892^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~515~^2.755^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~516~^0.267^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~517~^1.285^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~518~^0.696^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36409~^~605~^0.359^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~606~^6.479^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~607~^0.231^6^0.011^~1~^~A~^^^1^0.196^0.260^5^0.203^0.260^~2, 3~^~05/01/2010~ -~36409~^~608~^0.189^6^0.010^~1~^~A~^^^1^0.159^0.218^5^0.163^0.216^~2, 3~^~05/01/2010~ -~36409~^~609~^0.117^6^0.006^~1~^~A~^^^1^0.099^0.137^5^0.101^0.134^~2, 3~^~05/01/2010~ -~36409~^~610~^0.269^6^0.015^~1~^~A~^^^1^0.225^0.315^5^0.231^0.306^~2, 3~^~05/01/2010~ -~36409~^~611~^0.297^6^0.016^~1~^~A~^^^1^0.247^0.348^5^0.256^0.339^~2, 3~^~05/01/2010~ -~36409~^~612~^0.963^6^0.051^~1~^~A~^^^1^0.796^1.091^5^0.831^1.095^~2, 3~^~05/01/2010~ -~36409~^~613~^2.948^6^0.188^~1~^~A~^^^1^2.357^3.640^5^2.465^3.431^~2, 3~^~05/01/2010~ -~36409~^~614~^1.245^6^0.080^~1~^~A~^^^1^0.975^1.522^5^1.038^1.452^~2, 3~^~05/01/2010~ -~36409~^~615~^0.025^6^0.001^~1~^~A~^^^1^0.020^0.029^5^0.022^0.028^~2, 3~^~05/01/2010~ -~36409~^~617~^3.079^6^0.283^~1~^~AS~^^^1^2.431^4.394^5^2.352^3.805^~2, 3~^~05/01/2010~ -~36409~^~618~^1.393^6^0.113^~1~^~AS~^^^1^1.094^1.793^5^1.104^1.682^~2, 3~^~05/01/2010~ -~36409~^~619~^0.098^6^0.006^~1~^~AS~^^^1^0.085^0.125^5^0.083^0.113^~2, 3~^~05/01/2010~ -~36409~^~620~^0.020^6^0.002^~1~^~A~^^^1^0.015^0.026^5^0.016^0.024^~2, 3~^~05/01/2010~ -~36409~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36409~^~624~^0.011^6^0.001^~1~^~A~^^^1^0.010^0.013^5^0.009^0.012^~2, 3~^~05/01/2010~ -~36409~^~625~^0.075^6^0.004^~1~^~A~^^^1^0.060^0.081^5^0.065^0.085^~2, 3~^~05/01/2010~ -~36409~^~626~^0.201^6^0.020^~1~^~AS~^^^1^0.152^0.289^5^0.149^0.253^~2, 3~^~05/01/2010~ -~36409~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36409~^~628~^0.030^6^0.004^~1~^~A~^^^1^0.022^0.051^5^0.018^0.041^~2, 3~^~05/01/2010~ -~36409~^~629~^0.006^6^0.000^~1~^~A~^^^1^0.005^0.008^5^0.005^0.007^~2, 3~^~05/01/2010~ -~36409~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.001^0.001^^^^~2, 3~^~05/01/2010~ -~36409~^~631~^0.008^6^0.001^~1~^~A~^^^1^0.006^0.010^5^0.006^0.010^~2, 3~^~05/01/2010~ -~36409~^~645~^3.411^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~646~^1.555^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~652~^0.102^6^0.005^~1~^~A~^^^1^0.085^0.117^5^0.088^0.116^~2, 3~^~05/01/2010~ -~36409~^~653~^0.068^6^0.005^~1~^~A~^^^1^0.054^0.083^5^0.056^0.079^~2, 3~^~05/01/2010~ -~36409~^~654~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.008^5^0.006^0.007^~2, 3~^~05/01/2010~ -~36409~^~662~^0.032^6^0.002^~1~^~A~^^^1^0.026^0.036^5^0.028^0.037^~2, 3~^~05/01/2010~ -~36409~^~663~^0.253^6^0.018^~1~^~A~^^^1^0.194^0.317^5^0.207^0.299^~2, 3~^~05/01/2010~ -~36409~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36409~^~665~^0.074^6^0.005^~1~^~A~^^^1^0.058^0.091^5^0.061^0.086^~2, 3~^~05/01/2010~ -~36409~^~670~^0.061^6^0.004^~1~^~A~^^^1^0.050^0.070^5^0.051^0.071^~2, 3~^~05/01/2010~ -~36409~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2010~ -~36409~^~672~^0.008^6^0.003^~1~^~A~^^^1^0.004^0.024^5^0.000^0.017^~2, 3~^~05/01/2010~ -~36409~^~673~^0.169^6^0.019^~1~^~A~^^^1^0.125^0.254^5^0.120^0.218^~2, 3~^~05/01/2010~ -~36409~^~674~^2.825^6^0.274^~1~^~A~^^^1^2.211^4.113^5^2.122^3.529^~2, 3~^~05/01/2010~ -~36409~^~675~^1.259^6^0.116^~1~^~A~^^^1^0.933^1.685^5^0.961^1.556^~2, 3~^~05/01/2010~ -~36409~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2010~ -~36409~^~685~^0.004^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~2, 3~^~05/01/2010~ -~36409~^~687~^0.024^6^0.003^~1~^~A~^^^1^0.017^0.039^5^0.016^0.032^~2, 3~^~05/01/2010~ -~36409~^~689~^0.015^6^0.001^~1~^~AS~^^^1^0.011^0.020^5^0.011^0.019^~2, 3~^~05/01/2010~ -~36409~^~693~^0.285^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~695~^0.074^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36409~^~697~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2010~ -~36409~^~851~^0.093^6^0.006^~1~^~A~^^^1^0.081^0.120^5^0.078^0.108^~2, 3~^~05/01/2010~ -~36409~^~852~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.000^0.003^~1, 2, 3~^~05/01/2010~ -~36409~^~853~^0.014^6^0.001^~1~^~A~^^^1^0.010^0.017^5^0.011^0.017^~2, 3~^~05/01/2010~ -~36409~^~858~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.006^~2, 3~^~05/01/2010~ -~36410~^~312~^0.065^6^0.010^~1~^~A~^^^1^0.036^0.098^5^0.039^0.092^~2, 3~^~05/01/2010~ -~36410~^~315~^0.159^6^0.005^~1~^~A~^^^1^0.140^0.174^5^0.147^0.172^~2, 3~^~05/01/2010~ -~36410~^~404~^0.083^3^0.038^~1~^~A~^^^1^0.020^0.150^2^-0.078^0.245^~2, 3~^~05/01/2010~ -~36410~^~405~^0.087^3^0.012^~1~^~A~^^^1^0.070^0.110^2^0.035^0.138^~2, 3~^~05/01/2010~ -~36410~^~406~^2.373^3^0.194^~1~^~A~^^^1^2.020^2.690^2^1.537^3.209^~2, 3~^~05/01/2010~ -~36410~^~410~^0.640^3^0.090^~1~^~A~^^^1^0.550^0.820^2^0.253^1.027^~2, 3~^~05/01/2010~ -~36410~^~415~^0.230^3^0.031^~1~^~A~^^^1^0.179^0.285^2^0.099^0.362^~2, 3~^~05/01/2010~ -~36410~^~501~^0.121^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~502~^0.460^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~503~^0.456^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~504~^0.976^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~505~^0.784^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~506~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~507~^0.133^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~508~^0.463^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~509~^0.297^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~510~^0.531^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~511~^0.669^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~512~^0.354^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~513~^0.674^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~514~^0.990^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~515~^1.878^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~516~^0.570^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~517~^0.638^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~518~^0.463^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36410~^~605~^0.083^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~606~^3.166^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~607~^0.009^6^0.006^~1~^~A~^^^1^0.001^0.041^5^-0.008^0.025^~1, 2, 3~^~05/01/2010~ -~36410~^~608~^0.007^6^0.005^~1~^~A~^^^1^0.001^0.033^5^-0.007^0.020^~1, 2, 3~^~05/01/2010~ -~36410~^~609~^0.006^6^0.003^~1~^~A~^^^1^0.002^0.022^5^-0.002^0.014^~1, 2, 3~^~05/01/2010~ -~36410~^~610~^0.017^6^0.008^~1~^~A~^^^1^0.008^0.055^5^-0.002^0.037^~2, 3~^~05/01/2010~ -~36410~^~611~^0.017^6^0.008^~1~^~A~^^^1^0.006^0.059^5^-0.005^0.039^~2, 3~^~05/01/2010~ -~36410~^~612~^0.134^6^0.035^~1~^~A~^^^1^0.070^0.299^5^0.046^0.223^~2, 3~^~05/01/2010~ -~36410~^~613~^1.985^6^0.249^~1~^~A~^^^1^1.274^2.869^5^1.346^2.625^~2, 3~^~05/01/2010~ -~36410~^~614~^0.919^6^0.121^~1~^~A~^^^1^0.588^1.391^5^0.609^1.229^~2, 3~^~05/01/2010~ -~36410~^~615~^0.020^6^0.002^~1~^~A~^^^1^0.012^0.026^5^0.014^0.026^~2, 3~^~05/01/2010~ -~36410~^~617~^3.661^6^0.456^~1~^~AS~^^^1^2.269^4.985^5^2.488^4.834^~2, 3~^~05/01/2010~ -~36410~^~618~^1.986^6^0.231^~1~^~AS~^^^1^1.277^2.847^5^1.393^2.580^~2, 3~^~05/01/2010~ -~36410~^~619~^0.090^6^0.008^~1~^~AS~^^^1^0.054^0.110^5^0.069^0.112^~2, 3~^~05/01/2010~ -~36410~^~620~^0.042^6^0.004^~1~^~A~^^^1^0.027^0.053^5^0.032^0.053^~2, 3~^~05/01/2010~ -~36410~^~621~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.004^5^0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36410~^~624~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.008^5^0.005^0.009^~2, 3~^~05/01/2010~ -~36410~^~625~^0.005^6^0.002^~1~^~A~^^^1^0.002^0.016^5^-0.001^0.011^~1, 2, 3~^~05/01/2010~ -~36410~^~626~^0.198^6^0.028^~1~^~AS~^^^1^0.116^0.278^5^0.127^0.269^~2, 3~^~05/01/2010~ -~36410~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36410~^~628~^0.069^6^0.008^~1~^~A~^^^1^0.042^0.091^5^0.048^0.089^~2, 3~^~05/01/2010~ -~36410~^~629~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.004^~2, 3~^~05/01/2010~ -~36410~^~630~^0.002^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~05/01/2010~ -~36410~^~631~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.009^5^0.004^0.008^~2, 3~^~05/01/2010~ -~36410~^~645~^3.964^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~646~^2.205^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~652~^0.009^6^0.003^~1~^~A~^^^1^0.004^0.026^5^0.000^0.018^~2, 3~^~05/01/2010~ -~36410~^~653~^0.031^6^0.005^~1~^~A~^^^1^0.018^0.055^5^0.018^0.045^~2, 3~^~05/01/2010~ -~36410~^~654~^0.004^6^0.000^~1~^~A~^^^1^0.003^0.005^5^0.003^0.005^~2, 3~^~05/01/2010~ -~36410~^~662~^0.004^6^0.002^~1~^~A~^^^1^0.001^0.012^5^0.000^0.008^~1, 2, 3~^~05/01/2010~ -~36410~^~663~^0.060^6^0.017^~1~^~A~^^^1^0.017^0.140^5^0.016^0.105^~2, 3~^~05/01/2010~ -~36410~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36410~^~665~^0.019^6^0.004^~1~^~A~^^^1^0.008^0.034^5^0.010^0.028^~2, 3~^~05/01/2010~ -~36410~^~670~^0.017^6^0.005^~1~^~A~^^^1^0.006^0.038^5^0.006^0.029^~2, 3~^~05/01/2010~ -~36410~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36410~^~672~^0.045^6^0.006^~1~^~A~^^^1^0.030^0.062^5^0.029^0.060^~2, 3~^~05/01/2010~ -~36410~^~673~^0.194^6^0.027^~1~^~A~^^^1^0.115^0.266^5^0.125^0.263^~2, 3~^~05/01/2010~ -~36410~^~674~^3.601^6^0.445^~1~^~A~^^^1^2.252^4.845^5^2.456^4.745^~2, 3~^~05/01/2010~ -~36410~^~675~^1.950^6^0.226^~1~^~A~^^^1^1.263^2.807^5^1.369^2.531^~2, 3~^~05/01/2010~ -~36410~^~676~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36410~^~685~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.002^0.005^~1, 2, 3~^~05/01/2010~ -~36410~^~687~^0.029^6^0.004^~1~^~A~^^^1^0.018^0.043^5^0.019^0.039^~2, 3~^~05/01/2010~ -~36410~^~689~^0.017^6^0.002^~1~^~AS~^^^1^0.011^0.025^5^0.011^0.023^~2, 3~^~05/01/2010~ -~36410~^~693~^0.064^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36410~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36410~^~851~^0.087^6^0.008^~1~^~A~^^^1^0.052^0.106^5^0.067^0.107^~2, 3~^~05/01/2010~ -~36410~^~852~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.010^5^0.004^0.009^~2, 3~^~05/01/2010~ -~36410~^~853~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.015^5^0.007^0.014^~2, 3~^~05/01/2010~ -~36410~^~858~^0.012^6^0.001^~1~^~A~^^^1^0.008^0.015^5^0.009^0.015^~2, 3~^~05/01/2010~ -~36411~^~312~^0.028^6^0.006^~1~^~A~^^^1^0.019^0.056^5^0.011^0.045^~1, 2, 3~^~05/01/2010~ -~36411~^~315~^0.214^6^0.017^~1~^~A~^^^1^0.178^0.292^5^0.171^0.258^~2, 3~^~05/01/2010~ -~36411~^~404~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~05/01/2010~ -~36411~^~405~^0.053^3^0.015^~1~^~A~^^^1^0.030^0.080^2^-0.009^0.116^~2, 3~^~05/01/2010~ -~36411~^~406~^1.317^3^0.075^~1~^~A~^^^1^1.190^1.450^2^0.993^1.640^~2, 3~^~05/01/2010~ -~36411~^~410~^0.343^3^0.023^~1~^~A~^^^1^0.300^0.380^2^0.243^0.444^~2, 3~^~05/01/2010~ -~36411~^~415~^0.176^3^0.019^~1~^~A~^^^1^0.137^0.197^2^0.092^0.259^~2, 3~^~05/01/2010~ -~36411~^~501~^0.034^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~502~^0.126^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~503~^0.128^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~504~^0.390^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~505~^0.148^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~506~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~507~^0.049^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~508~^0.156^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~509~^0.109^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~510~^0.174^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~511~^0.128^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~512~^0.092^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~513~^0.231^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~514~^0.264^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~515~^0.681^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~516~^0.107^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~517~^0.292^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~518~^0.180^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36411~^~605~^0.365^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~606~^2.629^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~607~^0.031^6^0.025^~1~^~A~^^^1^0.001^0.153^5^-0.033^0.094^~1, 2, 3~^~05/01/2010~ -~36411~^~608~^0.023^6^0.019^~1~^~A~^^^1^0.000^0.120^5^-0.027^0.073^~1, 2, 3~^~05/01/2010~ -~36411~^~609~^0.015^6^0.011^~1~^~A~^^^1^0.001^0.072^5^-0.014^0.044^~1, 2, 3~^~05/01/2010~ -~36411~^~610~^0.033^6^0.026^~1~^~A~^^^1^0.002^0.161^5^-0.034^0.099^~1, 2, 3~^~05/01/2010~ -~36411~^~611~^0.038^6^0.028^~1~^~A~^^^1^0.002^0.176^5^-0.033^0.109^~1, 2, 3~^~05/01/2010~ -~36411~^~612~^0.159^6^0.089^~1~^~A~^^^1^0.008^0.588^5^-0.070^0.388^~2, 3~^~05/01/2010~ -~36411~^~613~^1.682^6^0.355^~1~^~A~^^^1^0.773^2.912^5^0.769^2.595^~2, 3~^~05/01/2010~ -~36411~^~614~^0.565^6^0.096^~1~^~A~^^^1^0.355^0.894^5^0.319^0.810^~2, 3~^~05/01/2010~ -~36411~^~615~^0.022^6^0.002^~1~^~A~^^^1^0.016^0.026^5^0.018^0.026^~2, 3~^~05/01/2010~ -~36411~^~617~^2.322^6^0.277^~1~^~AS~^^^1^1.510^3.250^5^1.609^3.035^~2, 3~^~05/01/2010~ -~36411~^~618~^1.435^6^0.320^~1~^~AS~^^^1^0.908^2.969^5^0.611^2.258^~2, 3~^~05/01/2010~ -~36411~^~619~^0.102^6^0.034^~1~^~AS~^^^1^0.028^0.248^5^0.016^0.189^~2, 3~^~05/01/2010~ -~36411~^~620~^0.004^6^0.002^~1~^~A~^^^1^0.001^0.014^5^-0.002^0.009^~1, 2, 3~^~05/01/2010~ -~36411~^~621~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~624~^0.012^6^0.003^~1~^~A~^^^1^0.006^0.024^5^0.004^0.020^~2, 3~^~05/01/2010~ -~36411~^~625~^0.015^6^0.008^~1~^~A~^^^1^0.000^0.046^5^-0.005^0.035^~1, 2, 3~^~05/01/2010~ -~36411~^~626~^0.061^6^0.029^~1~^~AS~^^^1^0.008^0.158^5^-0.012^0.135^~2, 3~^~05/01/2010~ -~36411~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36411~^~628~^0.025^6^0.007^~1~^~A~^^^1^0.014^0.059^5^0.007^0.043^~2, 3~^~05/01/2010~ -~36411~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36411~^~630~^0.002^6^0.001^~1~^~AS~^^^1^0.000^0.006^5^0.000^0.004^~2, 3~^~05/01/2010~ -~36411~^~631~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.003^~1, 2, 3~^~05/01/2010~ -~36411~^~645~^2.437^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~646~^1.548^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~652~^0.018^6^0.009^~1~^~A~^^^1^0.002^0.060^5^-0.006^0.041^~1, 2, 3~^~05/01/2010~ -~36411~^~653~^0.025^6^0.010^~1~^~A~^^^1^0.007^0.066^5^0.000^0.050^~2, 3~^~05/01/2010~ -~36411~^~654~^0.007^6^0.001^~1~^~A~^^^1^0.004^0.010^5^0.005^0.009^~2, 3~^~05/01/2010~ -~36411~^~662~^0.007^6^0.004^~1~^~A~^^^1^0.001^0.022^5^-0.002^0.016^~1, 2, 3~^~05/01/2010~ -~36411~^~663~^0.304^6^0.128^~1~^~A~^^^1^0.042^0.871^5^-0.024^0.632^~2, 3~^~05/01/2010~ -~36411~^~664~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36411~^~665~^0.053^6^0.012^~1~^~A~^^^1^0.028^0.095^5^0.023^0.083^~2, 3~^~05/01/2010~ -~36411~^~670~^0.013^6^0.006^~1~^~A~^^^1^0.001^0.042^5^-0.004^0.029^~1, 2, 3~^~05/01/2010~ -~36411~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36411~^~672~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.009^5^0.000^0.006^~1, 2, 3~^~05/01/2010~ -~36411~^~673~^0.054^6^0.025^~1~^~A~^^^1^0.007^0.144^5^-0.011^0.119^~2, 3~^~05/01/2010~ -~36411~^~674~^2.018^6^0.217^~1~^~A~^^^1^1.468^2.962^5^1.460^2.575^~2, 3~^~05/01/2010~ -~36411~^~675~^1.369^6^0.315^~1~^~A~^^^1^0.818^2.878^5^0.560^2.178^~2, 3~^~05/01/2010~ -~36411~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.000^0.002^~1, 2, 3~^~05/01/2010~ -~36411~^~685~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.004^5^-0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36411~^~687~^0.012^6^0.006^~1~^~A~^^^1^0.003^0.039^5^-0.003^0.027^~2, 3~^~05/01/2010~ -~36411~^~689~^0.002^6^0.002^~1~^~AS~^^^1^0.000^0.010^5^-0.002^0.006^~2, 3~^~05/01/2010~ -~36411~^~693~^0.312^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~695~^0.053^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36411~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36411~^~851~^0.102^6^0.034^~1~^~A~^^^1^0.028^0.248^5^0.015^0.189^~2, 3~^~05/01/2010~ -~36411~^~852~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36411~^~853~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.006^~1, 2, 3~^~05/01/2010~ -~36411~^~858~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.003^5^-0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36412~^~312~^0.050^6^0.008^~1~^~A~^^^1^0.025^0.083^5^0.028^0.072^~2, 3~^~05/01/2010~ -~36412~^~315~^0.186^6^0.039^~1~^~A~^^^1^0.130^0.377^5^0.086^0.287^~2, 3~^~05/01/2010~ -~36412~^~404~^0.040^2^^~1~^~A~^^^1^0.040^0.040^^^^^~05/01/2010~ -~36412~^~405~^0.050^2^^~1~^~A~^^^1^0.040^0.060^1^^^^~05/01/2010~ -~36412~^~406~^1.295^2^^~1~^~A~^^^1^0.780^1.810^1^^^^~05/01/2010~ -~36412~^~410~^0.365^2^^~1~^~A~^^^1^0.350^0.380^1^^^^~05/01/2010~ -~36412~^~415~^0.132^2^^~1~^~A~^^^1^0.128^0.135^1^^^^~05/01/2010~ -~36412~^~501~^0.067^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~502~^0.281^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~503~^0.275^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~504~^0.561^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~505~^0.496^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~506~^0.188^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~507~^0.086^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~508~^0.265^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~509~^0.193^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~510~^0.315^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~511~^0.401^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~512~^0.198^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~513~^0.396^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~514~^0.626^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~515~^1.172^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~516~^0.314^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~517~^0.338^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~518~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36412~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~606~^2.692^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~607~^0.003^6^0.002^~1~^~A~^^^1^0.000^0.012^5^-0.002^0.007^~1, 2, 3~^~05/01/2010~ -~36412~^~608~^0.001^6^0.001^~1~^~A~^^^1^0.000^0.009^5^-0.002^0.005^~1, 2, 3~^~05/01/2010~ -~36412~^~609~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.005^~1, 2, 3~^~05/01/2010~ -~36412~^~610~^0.009^6^0.002^~1~^~A~^^^1^0.005^0.019^5^0.004^0.014^~2, 3~^~05/01/2010~ -~36412~^~611~^0.009^6^0.002^~1~^~A~^^^1^0.004^0.020^5^0.003^0.015^~2, 3~^~05/01/2010~ -~36412~^~612~^0.098^6^0.012^~1~^~A~^^^1^0.047^0.123^5^0.068^0.128^~2, 3~^~05/01/2010~ -~36412~^~613~^1.693^6^0.161^~1~^~A~^^^1^0.916^2.043^5^1.280^2.107^~2, 3~^~05/01/2010~ -~36412~^~614~^0.817^6^0.082^~1~^~A~^^^1^0.446^1.015^5^0.606^1.027^~2, 3~^~05/01/2010~ -~36412~^~615~^0.018^6^0.002^~1~^~A~^^^1^0.008^0.025^5^0.012^0.024^~2, 3~^~05/01/2010~ -~36412~^~617~^3.011^6^0.280^~1~^~AS~^^^1^1.649^3.520^5^2.290^3.732^~2, 3~^~05/01/2010~ -~36412~^~618~^1.844^6^0.248^~1~^~AS~^^^1^1.116^2.841^5^1.207^2.482^~2, 3~^~05/01/2010~ -~36412~^~619~^0.102^6^0.024^~1~^~AS~^^^1^0.062^0.220^5^0.040^0.164^~2, 3~^~05/01/2010~ -~36412~^~620~^0.034^6^0.001^~1~^~A~^^^1^0.028^0.039^5^0.030^0.038^~2, 3~^~05/01/2010~ -~36412~^~621~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2010~ -~36412~^~624~^0.006^6^0.001^~1~^~A~^^^1^0.004^0.010^5^0.004^0.008^~2, 3~^~05/01/2010~ -~36412~^~625~^0.003^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 2, 3~^~05/01/2010~ -~36412~^~626~^0.151^6^0.015^~1~^~AS~^^^1^0.083^0.183^5^0.112^0.189^~2, 3~^~05/01/2010~ -~36412~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~628~^0.055^6^0.005^~1~^~A~^^^1^0.032^0.064^5^0.043^0.068^~2, 3~^~05/01/2010~ -~36412~^~629~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~05/01/2010~ -~36412~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.001^0.002^5^0.001^0.002^~2, 3~^~05/01/2010~ -~36412~^~631~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.006^5^0.004^0.006^~2, 3~^~05/01/2010~ -~36412~^~645~^3.244^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~646~^2.052^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~652~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.009^5^0.003^0.008^~2, 3~^~05/01/2010~ -~36412~^~653~^0.025^6^0.003^~1~^~A~^^^1^0.013^0.030^5^0.019^0.032^~2, 3~^~05/01/2010~ -~36412~^~654~^0.004^6^0.001^~1~^~A~^^^1^0.002^0.006^5^0.002^0.005^~1, 2, 3~^~05/01/2010~ -~36412~^~662~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36412~^~663~^0.039^6^0.006^~1~^~A~^^^1^0.015^0.054^5^0.025^0.054^~2, 3~^~05/01/2010~ -~36412~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36412~^~665~^0.015^6^0.002^~1~^~A~^^^1^0.011^0.024^5^0.010^0.021^~2, 3~^~05/01/2010~ -~36412~^~670~^0.011^6^0.001^~1~^~A~^^^1^0.006^0.016^5^0.008^0.015^~2, 3~^~05/01/2010~ -~36412~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36412~^~672~^0.038^6^0.004^~1~^~A~^^^1^0.021^0.051^5^0.027^0.049^~2, 3~^~05/01/2010~ -~36412~^~673~^0.148^6^0.015^~1~^~A~^^^1^0.082^0.180^5^0.110^0.186^~2, 3~^~05/01/2010~ -~36412~^~674~^2.972^6^0.276^~1~^~A~^^^1^1.634^3.475^5^2.262^3.681^~2, 3~^~05/01/2010~ -~36412~^~675~^1.817^6^0.246^~1~^~A~^^^1^1.099^2.812^5^1.185^2.449^~2, 3~^~05/01/2010~ -~36412~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36412~^~685~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36412~^~687~^0.022^6^0.002^~1~^~A~^^^1^0.012^0.026^5^0.016^0.027^~2, 3~^~05/01/2010~ -~36412~^~689~^0.014^6^0.001^~1~^~AS~^^^1^0.009^0.016^5^0.011^0.016^~2, 3~^~05/01/2010~ -~36412~^~693~^0.042^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~695~^0.015^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36412~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36412~^~851~^0.099^6^0.024^~1~^~A~^^^1^0.059^0.217^5^0.037^0.161^~2, 3~^~05/01/2010~ -~36412~^~852~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.004^0.007^~2, 3~^~05/01/2010~ -~36412~^~853~^0.008^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.007^0.009^~2, 3~^~05/01/2010~ -~36412~^~858~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.012^5^0.008^0.012^~2, 3~^~05/01/2010~ -~36413~^~312~^0.161^5^0.009^~1~^~A~^^^1^0.138^0.183^4^0.137^0.185^~2, 3~^~05/01/2010~ -~36413~^~315~^0.326^5^0.022^~1~^~A~^^^1^0.275^0.399^4^0.265^0.386^~2, 3~^~05/01/2010~ -~36413~^~404~^0.060^2^^~1~^~A~^^^1^0.050^0.070^1^^^^~05/01/2010~ -~36413~^~405~^0.025^2^^~1~^~A~^^^1^0.020^0.030^1^^^^~05/01/2010~ -~36413~^~406~^0.675^2^^~1~^~A~^^^1^0.540^0.810^1^^^^~05/01/2010~ -~36413~^~410~^0.170^2^^~1~^~A~^^^1^0.150^0.190^1^^^^~05/01/2010~ -~36413~^~415~^0.096^2^^~1~^~A~^^^1^0.084^0.108^1^^^^~05/01/2010~ -~36413~^~501~^0.038^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~502~^0.172^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~503~^0.161^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~504~^0.319^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~505~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~506~^0.097^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~507~^0.038^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~508~^0.159^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~509~^0.130^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~510~^0.205^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~511~^0.348^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~512~^0.087^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~513~^0.349^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~514~^0.384^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~515~^0.723^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~516~^0.579^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~517~^0.363^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~518~^0.202^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36413~^~605~^0.018^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~606~^0.535^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~607~^0.006^5^0.004^~1~^~A~^^^1^0.001^0.021^4^-0.005^0.017^~1, 2, 3~^~05/01/2010~ -~36413~^~608~^0.004^5^0.003^~1~^~A~^^^1^0.000^0.015^4^-0.004^0.012^~1, 2, 3~^~05/01/2010~ -~36413~^~609~^0.004^5^0.002^~1~^~A~^^^1^0.001^0.010^4^0.000^0.008^~1, 2, 3~^~05/01/2010~ -~36413~^~610~^0.007^5^0.004^~1~^~A~^^^1^0.001^0.022^4^-0.004^0.018^~1, 2, 3~^~05/01/2010~ -~36413~^~611~^0.006^5^0.004^~1~^~A~^^^1^0.000^0.023^4^-0.006^0.018^~1, 2, 3~^~05/01/2010~ -~36413~^~612~^0.023^5^0.014^~1~^~A~^^^1^0.001^0.075^4^-0.015^0.061^~1, 2, 3~^~05/01/2010~ -~36413~^~613~^0.349^5^0.070^~1~^~A~^^^1^0.210^0.538^4^0.154^0.543^~2, 3~^~05/01/2010~ -~36413~^~614~^0.109^5^0.027^~1~^~A~^^^1^0.048^0.201^4^0.036^0.183^~2, 3~^~05/01/2010~ -~36413~^~615~^0.008^5^0.003^~1~^~A~^^^1^0.003^0.016^4^0.001^0.015^~2, 3~^~05/01/2010~ -~36413~^~617~^0.998^5^0.587^~1~^~AS~^^^1^0.276^3.308^4^-0.632^2.627^~2, 3~^~05/01/2010~ -~36413~^~618~^0.559^5^0.216^~1~^~AS~^^^1^0.169^1.399^4^-0.042^1.159^~2, 3~^~05/01/2010~ -~36413~^~619~^0.216^5^0.036^~1~^~AS~^^^1^0.156^0.354^4^0.116^0.317^~2, 3~^~05/01/2010~ -~36413~^~620~^0.007^5^0.006^~1~^~A~^^^1^0.001^0.030^4^-0.009^0.023^~1, 2, 3~^~05/01/2010~ -~36413~^~621~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~624~^0.006^5^0.001^~1~^~A~^^^1^0.003^0.011^4^0.002^0.010^~2, 3~^~05/01/2010~ -~36413~^~625~^0.002^5^0.001^~1~^~A~^^^1^0.000^0.007^4^-0.001^0.006^~1, 2, 3~^~05/01/2010~ -~36413~^~626~^0.021^5^0.004^~1~^~AS~^^^1^0.014^0.034^4^0.011^0.031^~2, 3~^~05/01/2010~ -~36413~^~627~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~628~^0.010^5^0.003^~1~^~A~^^^1^0.003^0.020^4^0.001^0.018^~2, 3~^~05/01/2010~ -~36413~^~629~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~630~^0.000^5^0.000^~1~^~AS~^^^1^0.000^0.002^4^-0.001^0.002^~2, 3~^~05/01/2010~ -~36413~^~631~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~645~^1.035^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~646~^0.787^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~652~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.008^4^0.000^0.007^~1, 2, 3~^~05/01/2010~ -~36413~^~653~^0.005^5^0.001^~1~^~A~^^^1^0.002^0.008^4^0.002^0.008^~1, 2, 3~^~05/01/2010~ -~36413~^~654~^0.005^5^0.001^~1~^~A~^^^1^0.003^0.007^4^0.003^0.007^~2, 3~^~05/01/2010~ -~36413~^~662~^0.001^5^0.001^~1~^~A~^^^1^0.000^0.003^4^-0.001^0.003^~1, 2, 3~^~05/01/2010~ -~36413~^~663~^0.010^5^0.003^~1~^~A~^^^1^0.003^0.020^4^0.002^0.018^~2, 3~^~05/01/2010~ -~36413~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~665~^0.007^5^0.002^~1~^~A~^^^1^0.002^0.015^4^0.000^0.013^~1, 2, 3~^~05/01/2010~ -~36413~^~670~^0.002^5^0.001^~1~^~A~^^^1^0.000^0.005^4^0.000^0.005^~1, 2, 3~^~05/01/2010~ -~36413~^~671~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~672~^0.002^5^0.001^~1~^~A~^^^1^0.000^0.005^4^-0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36413~^~673~^0.020^5^0.004^~1~^~A~^^^1^0.013^0.034^4^0.009^0.031^~2, 3~^~05/01/2010~ -~36413~^~674~^0.988^5^0.587^~1~^~A~^^^1^0.256^3.299^4^-0.642^2.618^~2, 3~^~05/01/2010~ -~36413~^~675~^0.550^5^0.214^~1~^~A~^^^1^0.157^1.379^4^-0.045^1.144^~2, 3~^~05/01/2010~ -~36413~^~676~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~685~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~687~^0.003^5^0.001^~1~^~A~^^^1^0.002^0.006^4^0.001^0.006^~1, 2, 3~^~05/01/2010~ -~36413~^~689~^0.001^5^0.000^~1~^~AS~^^^1^0.000^0.002^4^0.000^0.002^~2, 3~^~05/01/2010~ -~36413~^~693~^0.011^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36413~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36413~^~851~^0.216^5^0.036^~1~^~A~^^^1^0.156^0.354^4^0.116^0.317^~2, 3~^~05/01/2010~ -~36413~^~852~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~853~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36413~^~858~^0.001^5^0.000^~1~^~A~^^^1^0.000^0.001^4^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~312~^0.022^6^0.002^~1~^~A~^^^1^0.019^0.032^5^0.016^0.028^~1, 2, 3~^~05/01/2010~ -~36414~^~315~^0.064^6^0.008^~1~^~A~^^^1^0.036^0.092^5^0.044^0.084^~2, 3~^~05/01/2010~ -~36414~^~404~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~405~^0.020^3^0.005^~1~^~A~^^^1^0.015^0.030^2^-0.002^0.041^~1, 2, 3~^~05/01/2010~ -~36414~^~406~^0.523^3^0.191^~1~^~A~^^^1^0.200^0.860^2^-0.297^1.344^~2, 3~^~05/01/2010~ -~36414~^~410~^0.133^3^0.042^~1~^~A~^^^1^0.050^0.180^2^-0.046^0.313^~2, 3~^~05/01/2010~ -~36414~^~415~^0.038^3^0.005^~1~^~A~^^^1^0.029^0.045^2^0.017^0.058^~2, 3~^~05/01/2010~ -~36414~^~501~^0.064^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~502~^0.291^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~503~^0.271^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~504~^0.539^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~505~^0.452^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~506~^0.164^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~507~^0.064^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~508~^0.268^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~509~^0.220^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~510~^0.346^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~511~^0.588^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~512~^0.147^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~513~^0.590^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~514~^0.649^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~515~^1.221^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~516~^0.978^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~517~^0.614^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~518~^0.341^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36414~^~605~^0.111^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~606~^1.045^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~607~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36414~^~608~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~610~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36414~^~611~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.002^0.004^~1, 2, 3~^~05/01/2010~ -~36414~^~612~^0.064^6^0.015^~1~^~A~^^^1^0.025^0.116^5^0.025^0.103^~2, 3~^~05/01/2010~ -~36414~^~613~^0.552^6^0.114^~1~^~A~^^^1^0.263^1.019^5^0.260^0.845^~2, 3~^~05/01/2010~ -~36414~^~614~^0.362^6^0.074^~1~^~A~^^^1^0.138^0.632^5^0.172^0.553^~2, 3~^~05/01/2010~ -~36414~^~615~^0.005^6^0.001^~1~^~A~^^^1^0.003^0.007^5^0.003^0.006^~2, 3~^~05/01/2010~ -~36414~^~617~^0.998^6^0.239^~1~^~AS~^^^1^0.416^2.085^5^0.385^1.612^~2, 3~^~05/01/2010~ -~36414~^~618~^0.236^6^0.051^~1~^~AS~^^^1^0.138^0.474^5^0.105^0.367^~2, 3~^~05/01/2010~ -~36414~^~619~^0.024^6^0.007^~1~^~AS~^^^1^0.011^0.057^5^0.006^0.042^~2, 3~^~05/01/2010~ -~36414~^~620~^0.022^6^0.003^~1~^~A~^^^1^0.011^0.028^5^0.015^0.029^~2, 3~^~05/01/2010~ -~36414~^~621~^0.002^6^0.001^~1~^~A~^^^1^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~05/01/2010~ -~36414~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.002^0.003^~1, 2, 3~^~05/01/2010~ -~36414~^~625~^0.011^6^0.003^~1~^~A~^^^1^0.004^0.023^5^0.004^0.018^~2, 3~^~05/01/2010~ -~36414~^~626~^0.081^6^0.016^~1~^~AS~^^^1^0.044^0.152^5^0.039^0.123^~2, 3~^~05/01/2010~ -~36414~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~628~^0.009^6^0.002^~1~^~A~^^^1^0.004^0.019^5^0.003^0.014^~2, 3~^~05/01/2010~ -~36414~^~629~^0.003^6^0.001^~1~^~A~^^^1^0.001^0.007^5^0.000^0.006^~1, 2, 3~^~05/01/2010~ -~36414~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.001^5^0.000^0.001^~2, 3~^~05/01/2010~ -~36414~^~631~^0.011^6^0.003^~1~^~A~^^^1^0.003^0.018^5^0.005^0.018^~2, 3~^~05/01/2010~ -~36414~^~645~^1.124^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~646~^0.310^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~652~^0.014^6^0.003^~1~^~A~^^^1^0.006^0.026^5^0.006^0.022^~2, 3~^~05/01/2010~ -~36414~^~653~^0.035^6^0.010^~1~^~A~^^^1^0.016^0.076^5^0.011^0.060^~2, 3~^~05/01/2010~ -~36414~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~662~^0.009^6^0.002^~1~^~A~^^^1^0.004^0.014^5^0.005^0.013^~2, 3~^~05/01/2010~ -~36414~^~663~^0.085^6^0.025^~1~^~A~^^^1^0.033^0.187^5^0.021^0.150^~2, 3~^~05/01/2010~ -~36414~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~665~^0.017^6^0.004^~1~^~A~^^^1^0.008^0.028^5^0.008^0.026^~2, 3~^~05/01/2010~ -~36414~^~670~^0.014^6^0.004^~1~^~A~^^^1^0.005^0.030^5^0.004^0.024^~2, 3~^~05/01/2010~ -~36414~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36414~^~672~^0.002^6^0.001^~1~^~A~^^^1^0.001^0.005^5^0.000^0.004^~1, 2, 3~^~05/01/2010~ -~36414~^~673~^0.072^6^0.015^~1~^~A~^^^1^0.035^0.139^5^0.033^0.111^~2, 3~^~05/01/2010~ -~36414~^~674~^0.913^6^0.215^~1~^~A~^^^1^0.383^1.898^5^0.359^1.467^~2, 3~^~05/01/2010~ -~36414~^~675~^0.206^6^0.046^~1~^~A~^^^1^0.123^0.417^5^0.087^0.324^~2, 3~^~05/01/2010~ -~36414~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~685~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~687~^0.024^6^0.007^~1~^~A~^^^1^0.008^0.055^5^0.006^0.041^~2, 3~^~05/01/2010~ -~36414~^~689~^0.006^6^0.001^~1~^~AS~^^^1^0.002^0.008^5^0.003^0.008^~2, 3~^~05/01/2010~ -~36414~^~693~^0.094^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~695~^0.017^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36414~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~851~^0.023^6^0.007^~1~^~A~^^^1^0.011^0.056^5^0.006^0.041^~2, 3~^~05/01/2010~ -~36414~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~05/01/2010~ -~36414~^~853~^0.005^6^0.001^~1~^~A~^^^1^0.002^0.007^5^0.003^0.007^~1, 2, 3~^~05/01/2010~ -~36414~^~858~^0.004^6^0.001^~1~^~A~^^^1^0.003^0.006^5^0.003^0.006^~2, 3~^~05/01/2010~ -~36415~^~312~^0.030^4^0.008^~1~^~A~^^^1^0.019^0.053^3^0.004^0.056^~1, 2, 3~^~05/01/2010~ -~36415~^~315~^0.116^4^0.059^~1~^~A~^^^1^0.025^0.275^3^-0.073^0.305^~2, 3~^~05/01/2010~ -~36415~^~404~^0.070^4^0.042^~1~^~A~^^^1^0.000^0.170^3^-0.064^0.204^~1, 2, 3~^~05/01/2010~ -~36415~^~405~^0.042^4^0.025^~1~^~A~^^^1^0.000^0.090^3^-0.036^0.121^~1, 2, 3~^~05/01/2010~ -~36415~^~406~^0.888^4^0.474^~1~^~A~^^^1^0.150^2.230^3^-0.620^2.395^~2, 3~^~05/01/2010~ -~36415~^~410~^0.202^4^0.036^~1~^~A~^^^1^0.130^0.300^3^0.087^0.318^~2, 3~^~05/01/2010~ -~36415~^~415~^0.107^4^0.040^~1~^~A~^^^1^0.048^0.220^3^-0.021^0.235^~2, 3~^~05/01/2010~ -~36415~^~501~^0.048^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~502~^0.193^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~503~^0.207^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~504~^0.671^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~505~^0.228^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~506~^0.131^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~507~^0.097^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~508~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~509~^0.154^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~510~^0.276^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~511~^0.211^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~512~^0.166^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~513~^0.342^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~514~^0.363^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~515~^1.098^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~516~^0.168^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~517~^0.508^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~518~^0.288^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36415~^~605~^0.157^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~606~^2.902^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~607~^0.100^4^0.046^~1~^~A~^^^1^0.006^0.185^3^-0.048^0.248^~2, 3~^~05/01/2010~ -~36415~^~608~^0.078^4^0.038^~1~^~A~^^^1^0.000^0.148^3^-0.044^0.200^~1, 2, 3~^~05/01/2010~ -~36415~^~609~^0.050^4^0.023^~1~^~A~^^^1^0.003^0.091^3^-0.024^0.125^~2, 3~^~05/01/2010~ -~36415~^~610~^0.112^4^0.053^~1~^~A~^^^1^0.004^0.207^3^-0.057^0.281^~2, 3~^~05/01/2010~ -~36415~^~611~^0.123^4^0.060^~1~^~A~^^^1^0.000^0.230^3^-0.067^0.313^~1, 2, 3~^~05/01/2010~ -~36415~^~612~^0.404^4^0.197^~1~^~A~^^^1^0.002^0.761^3^-0.223^1.032^~1, 2, 3~^~05/01/2010~ -~36415~^~613~^1.452^4^0.601^~1~^~A~^^^1^0.286^2.546^3^-0.461^3.366^~2, 3~^~05/01/2010~ -~36415~^~614~^0.483^4^0.217^~1~^~A~^^^1^0.037^0.875^3^-0.206^1.173^~2, 3~^~05/01/2010~ -~36415~^~615~^0.013^4^0.003^~1~^~A~^^^1^0.007^0.019^3^0.002^0.023^~2, 3~^~05/01/2010~ -~36415~^~617~^1.365^4^0.476^~1~^~AS~^^^1^0.441^2.227^3^-0.151^2.881^~2, 3~^~05/01/2010~ -~36415~^~618~^0.899^4^0.073^~1~^~AS~^^^1^0.732^1.087^3^0.667^1.130^~2, 3~^~05/01/2010~ -~36415~^~619~^0.066^4^0.013^~1~^~AS~^^^1^0.028^0.081^3^0.026^0.107^~2, 3~^~05/01/2010~ -~36415~^~620~^0.007^4^0.003^~1~^~A~^^^1^0.000^0.013^3^-0.003^0.017^~1, 2, 3~^~05/01/2010~ -~36415~^~621~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~624~^0.006^4^0.002^~1~^~A~^^^1^0.002^0.009^3^0.001^0.012^~1, 2, 3~^~05/01/2010~ -~36415~^~625~^0.034^4^0.017^~1~^~A~^^^1^0.000^0.066^3^-0.020^0.089^~1, 2, 3~^~05/01/2010~ -~36415~^~626~^0.084^4^0.041^~1~^~AS~^^^1^0.003^0.158^3^-0.045^0.214^~2, 3~^~05/01/2010~ -~36415~^~627~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36415~^~628~^0.019^4^0.006^~1~^~A~^^^1^0.009^0.030^3^0.001^0.038^~2, 3~^~05/01/2010~ -~36415~^~629~^0.003^4^0.001^~1~^~A~^^^1^0.002^0.005^3^0.001^0.005^~1, 2, 3~^~05/01/2010~ -~36415~^~630~^0.000^4^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2010~ -~36415~^~631~^0.003^4^0.002^~1~^~A~^^^1^0.000^0.006^3^-0.003^0.009^~1, 2, 3~^~05/01/2010~ -~36415~^~645~^1.514^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~646~^0.989^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~652~^0.044^4^0.021^~1~^~A~^^^1^0.002^0.081^3^-0.022^0.109^~1, 2, 3~^~05/01/2010~ -~36415~^~653~^0.028^4^0.013^~1~^~A~^^^1^0.002^0.052^3^-0.013^0.069^~1, 2, 3~^~05/01/2010~ -~36415~^~654~^0.004^4^0.000^~1~^~A~^^^1^0.003^0.005^3^0.003^0.006^~2, 3~^~05/01/2010~ -~36415~^~662~^0.015^4^0.007^~1~^~A~^^^1^0.000^0.028^3^-0.009^0.038^~1, 2, 3~^~05/01/2010~ -~36415~^~663~^0.095^4^0.046^~1~^~A~^^^1^0.000^0.178^3^-0.051^0.241^~1, 2, 3~^~05/01/2010~ -~36415~^~664~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~665~^0.047^4^0.022^~1~^~A~^^^1^0.002^0.086^3^-0.023^0.117^~1, 2, 3~^~05/01/2010~ -~36415~^~670~^0.027^4^0.013^~1~^~A~^^^1^0.000^0.050^3^-0.015^0.068^~1, 2, 3~^~05/01/2010~ -~36415~^~671~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~672~^0.003^4^0.000^~1~^~A~^^^1^0.002^0.004^3^0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36415~^~673~^0.070^4^0.033^~1~^~A~^^^1^0.003^0.130^3^-0.036^0.176^~2, 3~^~05/01/2010~ -~36415~^~674~^1.270^4^0.431^~1~^~A~^^^1^0.441^2.049^3^-0.100^2.640^~2, 3~^~05/01/2010~ -~36415~^~675~^0.825^4^0.087^~1~^~A~^^^1^0.706^1.085^3^0.547^1.103^~2, 3~^~05/01/2010~ -~36415~^~676~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~685~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36415~^~687~^0.010^4^0.004^~1~^~A~^^^1^0.001^0.017^3^-0.004^0.023^~1, 2, 3~^~05/01/2010~ -~36415~^~689~^0.005^4^0.002^~1~^~AS~^^^1^0.000^0.009^3^-0.002^0.012^~2, 3~^~05/01/2010~ -~36415~^~693~^0.109^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~695~^0.047^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36415~^~697~^0.001^4^0.001^~1~^~A~^^^1^0.000^0.002^3^-0.001^0.002^~1, 2, 3~^~05/01/2010~ -~36415~^~851~^0.065^4^0.012^~1~^~A~^^^1^0.028^0.081^3^0.025^0.104^~2, 3~^~05/01/2010~ -~36415~^~852~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36415~^~853~^0.005^4^0.002^~1~^~A~^^^1^0.000^0.009^3^-0.002^0.012^~1, 2, 3~^~05/01/2010~ -~36415~^~858~^0.002^4^0.001^~1~^~A~^^^1^0.000^0.003^3^-0.001^0.004^~1, 2, 3~^~05/01/2010~ -~36416~^~312~^0.041^3^0.016^~1~^~A~^^^1^0.019^0.071^2^-0.027^0.108^~1, 2, 3~^~05/01/2010~ -~36416~^~315~^0.391^3^0.218^~1~^~A~^^^1^0.169^0.827^2^-0.548^1.329^~2, 3~^~05/01/2010~ -~36416~^~404~^0.113^3^0.048^~1~^~A~^^^1^0.060^0.210^2^-0.095^0.322^~2, 3~^~05/01/2010~ -~36416~^~405~^0.143^3^0.023^~1~^~A~^^^1^0.100^0.180^2^0.043^0.244^~2, 3~^~05/01/2010~ -~36416~^~406~^1.967^3^0.331^~1~^~A~^^^1^1.510^2.610^2^0.542^3.391^~2, 3~^~05/01/2010~ -~36416~^~410~^0.343^3^0.050^~1~^~A~^^^1^0.270^0.440^2^0.126^0.560^~2, 3~^~05/01/2010~ -~36416~^~415~^0.063^3^0.008^~1~^~A~^^^1^0.047^0.073^2^0.028^0.097^~2, 3~^~05/01/2010~ -~36416~^~501~^0.091^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~502~^0.251^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~503~^0.311^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~504~^0.632^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~505~^0.332^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~506~^0.162^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~507~^0.121^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~508~^0.381^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~509~^0.223^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~510~^0.385^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~511~^0.302^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~512~^0.190^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~513~^0.251^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~514~^0.451^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~515~^2.295^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~516~^0.224^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~517~^0.824^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~518~^0.418^0^^~1~^~A~^^^^^^^^^^~05/01/2010~ -~36416~^~605~^0.778^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~606~^6.834^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~607~^0.067^3^0.033^~1~^~A~^^^1^0.004^0.115^2^-0.075^0.209^~2, 3~^~05/01/2010~ -~36416~^~608~^0.048^3^0.025^~1~^~A~^^^1^0.000^0.083^2^-0.059^0.155^~1, 2, 3~^~05/01/2010~ -~36416~^~609~^0.042^3^0.013^~1~^~A~^^^1^0.018^0.064^2^-0.015^0.099^~2, 3~^~05/01/2010~ -~36416~^~610~^0.076^3^0.027^~1~^~A~^^^1^0.025^0.116^2^-0.039^0.192^~2, 3~^~05/01/2010~ -~36416~^~611~^0.082^3^0.031^~1~^~A~^^^1^0.022^0.127^2^-0.053^0.216^~2, 3~^~05/01/2010~ -~36416~^~612~^0.366^3^0.039^~1~^~A~^^^1^0.327^0.444^2^0.199^0.533^~2, 3~^~05/01/2010~ -~36416~^~613~^3.888^3^0.909^~1~^~A~^^^1^2.633^5.654^2^-0.021^7.798^~2, 3~^~05/01/2010~ -~36416~^~614~^2.017^3^0.489^~1~^~A~^^^1^1.366^2.974^2^-0.087^4.120^~2, 3~^~05/01/2010~ -~36416~^~615~^0.078^3^0.011^~1~^~A~^^^1^0.058^0.094^2^0.032^0.123^~2, 3~^~05/01/2010~ -~36416~^~617~^8.952^3^1.139^~1~^~AS~^^^1^6.717^10.447^2^4.053^13.850^~2, 3~^~05/01/2010~ -~36416~^~618~^6.301^3^2.218^~1~^~AS~^^^1^3.435^10.665^2^-3.241^15.842^~2, 3~^~05/01/2010~ -~36416~^~619~^0.677^3^0.382^~1~^~AS~^^^1^0.238^1.437^2^-0.965^2.318^~2, 3~^~05/01/2010~ -~36416~^~620~^0.025^3^0.006^~1~^~A~^^^1^0.014^0.034^2^0.000^0.050^~2, 3~^~05/01/2010~ -~36416~^~621~^0.006^3^0.002^~1~^~A~^^^1^0.004^0.009^2^-0.001^0.013^~2, 3~^~05/01/2010~ -~36416~^~624~^0.050^3^0.016^~1~^~A~^^^1^0.019^0.074^2^-0.020^0.120^~2, 3~^~05/01/2010~ -~36416~^~625~^0.024^3^0.009^~1~^~A~^^^1^0.009^0.040^2^-0.014^0.063^~2, 3~^~05/01/2010~ -~36416~^~626~^0.232^3^0.121^~1~^~AS~^^^1^0.083^0.472^2^-0.289^0.753^~2, 3~^~05/01/2010~ -~36416~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36416~^~628~^0.157^3^0.021^~1~^~A~^^^1^0.121^0.195^2^0.064^0.249^~2, 3~^~05/01/2010~ -~36416~^~629~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.002^0.012^~2, 3~^~05/01/2010~ -~36416~^~630~^0.007^3^0.003^~1~^~AS~^^^1^0.003^0.014^2^-0.007^0.022^~2, 3~^~05/01/2010~ -~36416~^~631~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~05/01/2010~ -~36416~^~645~^9.415^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~646~^7.090^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~652~^0.036^3^0.009^~1~^~A~^^^1^0.019^0.050^2^-0.003^0.075^~2, 3~^~05/01/2010~ -~36416~^~653~^0.062^3^0.015^~1~^~A~^^^1^0.046^0.092^2^-0.003^0.127^~2, 3~^~05/01/2010~ -~36416~^~654~^0.020^3^0.006^~1~^~A~^^^1^0.007^0.027^2^-0.008^0.047^~2, 3~^~05/01/2010~ -~36416~^~662~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.017^2^0.006^0.021^~2, 3~^~05/01/2010~ -~36416~^~663~^0.562^3^0.200^~1~^~A~^^^1^0.192^0.878^2^-0.298^1.422^~2, 3~^~05/01/2010~ -~36416~^~664~^0.002^3^0.002^~1~^~A~^^^1^0.000^0.007^2^-0.008^0.012^~1, 2, 3~^~05/01/2010~ -~36416~^~665~^0.200^3^0.071^~1~^~A~^^^1^0.070^0.316^2^-0.107^0.507^~2, 3~^~05/01/2010~ -~36416~^~670~^0.037^3^0.003^~1~^~A~^^^1^0.033^0.044^2^0.023^0.052^~2, 3~^~05/01/2010~ -~36416~^~671~^0.004^3^0.002^~1~^~A~^^^1^0.002^0.009^2^-0.006^0.014^~1, 2, 3~^~05/01/2010~ -~36416~^~672~^0.047^3^0.036^~1~^~A~^^^1^0.011^0.118^2^-0.107^0.200^~2, 3~^~05/01/2010~ -~36416~^~673~^0.219^3^0.121^~1~^~A~^^^1^0.072^0.459^2^-0.303^0.740^~2, 3~^~05/01/2010~ -~36416~^~674~^8.390^3^1.145^~1~^~A~^^^1^6.101^9.569^2^3.465^13.314^~2, 3~^~05/01/2010~ -~36416~^~675~^6.063^3^2.227^~1~^~A~^^^1^3.075^10.418^2^-3.519^15.646^~2, 3~^~05/01/2010~ -~36416~^~676~^0.005^3^0.001^~1~^~A~^^^1^0.003^0.007^2^0.000^0.010^~2, 3~^~05/01/2010~ -~36416~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.006^2^-0.002^0.009^~1, 2, 3~^~05/01/2010~ -~36416~^~687~^0.038^3^0.015^~1~^~A~^^^1^0.019^0.068^2^-0.027^0.103^~2, 3~^~05/01/2010~ -~36416~^~689~^0.015^3^0.008^~1~^~AS~^^^1^0.006^0.031^2^-0.020^0.050^~2, 3~^~05/01/2010~ -~36416~^~693~^0.578^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~695~^0.200^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~ -~36416~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2010~ -~36416~^~851~^0.673^3^0.382^~1~^~A~^^^1^0.235^1.435^2^-0.972^2.318^~2, 3~^~05/01/2010~ -~36416~^~852~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.015^0.025^~1, 2, 3~^~05/01/2010~ -~36416~^~853~^0.010^3^0.003^~1~^~A~^^^1^0.006^0.017^2^-0.004^0.025^~2, 3~^~05/01/2010~ -~36416~^~858~^0.007^3^0.004^~1~^~A~^^^1^0.003^0.015^2^-0.010^0.024^~2, 3~^~05/01/2010~ -~36417~^~312~^0.065^12^0.004^~1~^~A~^^^1^0.049^0.104^11^0.055^0.075^~2, 3~^~03/01/2014~ -~36417~^~315~^0.390^12^0.015^~1~^~A~^^^1^0.327^0.477^11^0.357^0.424^~2, 3~^~03/01/2014~ -~36417~^~404~^0.183^6^0.034^~1~^~A~^^^1^0.090^0.300^5^0.097^0.270^~2, 3~^~03/01/2014~ -~36417~^~405~^0.074^6^0.004^~1~^~A~^^^1^0.065^0.086^5^0.064^0.084^~2, 3~^~03/01/2014~ -~36417~^~406~^2.378^6^0.379^~1~^~A~^^^1^1.320^3.860^5^1.403^3.353^~2, 3~^~03/01/2014~ -~36417~^~410~^0.415^4^0.041^~1~^~A~^^^1^0.310^0.510^3^0.285^0.545^~2, 3~^~03/01/2014~ -~36417~^~415~^0.082^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36417~^~501~^0.044^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~502~^0.098^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~503~^0.109^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~504~^0.240^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~505~^0.131^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~506~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~507~^0.066^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~508~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~509~^0.104^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~510~^0.137^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~511~^0.263^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~512~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~513~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~514~^0.267^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~515~^0.607^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~516~^0.142^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~517~^0.141^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~518~^0.153^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36417~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2014~ -~36417~^~605~^0.070^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~606~^1.005^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~607~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.008^11^-0.001^0.002^~1, 2, 3~^~03/01/2014~ -~36417~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~609~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~610~^0.005^12^0.003^~1~^~A~^^^1^0.000^0.023^11^-0.001^0.011^~1, 2, 3~^~03/01/2014~ -~36417~^~611~^0.003^12^0.002^~1~^~A~^^^1^0.000^0.024^11^-0.001^0.007^~1, 2, 3~^~03/01/2014~ -~36417~^~612~^0.017^12^0.003^~1~^~A~^^^1^0.000^0.038^11^0.010^0.023^~1, 2, 3~^~03/01/2014~ -~36417~^~613~^0.662^12^0.052^~1~^~A~^^^1^0.523^1.138^11^0.546^0.777^~2, 3~^~03/01/2014~ -~36417~^~614~^0.275^12^0.017^~1~^~A~^^^1^0.142^0.355^11^0.237^0.313^~2, 3~^~03/01/2014~ -~36417~^~615~^0.017^12^0.002^~1~^~A~^^^1^0.000^0.027^11^0.013^0.021^~1, 2, 3~^~03/01/2014~ -~36417~^~617~^1.477^12^0.173^~1~^~AS~^^^1^0.996^3.007^11^1.096^1.858^~2, 3~^~03/01/2014~ -~36417~^~618~^2.066^12^0.150^~1~^~AS~^^^1^0.991^3.000^11^1.734^2.397^~2, 3~^~03/01/2014~ -~36417~^~619~^0.249^12^0.023^~1~^~AS~^^^1^0.093^0.394^11^0.199^0.299^~2, 3~^~03/01/2014~ -~36417~^~620~^0.001^12^0.001^~1~^~A~^^^1^0.000^0.005^11^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~36417~^~621~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~624~^0.013^12^0.002^~1~^~A~^^^1^0.000^0.021^11^0.010^0.017^~1, 2, 3~^~03/01/2014~ -~36417~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~626~^0.012^12^0.003^~1~^~AS~^^^1^0.000^0.044^11^0.004^0.019^~2, 3~^~03/01/2014~ -~36417~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~628~^0.020^12^0.003^~1~^~A~^^^1^0.000^0.045^11^0.013^0.027^~1, 2, 3~^~03/01/2014~ -~36417~^~629~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~630~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36417~^~631~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~645~^1.511^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~646~^2.317^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~652~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.004^11^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~36417~^~653~^0.004^12^0.001^~1~^~A~^^^1^0.000^0.009^11^0.003^0.006^~1, 2, 3~^~03/01/2014~ -~36417~^~654~^0.007^12^0.001^~1~^~A~^^^1^0.000^0.009^11^0.005^0.008^~1, 2, 3~^~03/01/2014~ -~36417~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~663~^0.058^12^0.028^~1~^~A~^^^1^0.000^0.284^11^-0.003^0.119^~1, 2, 3~^~03/01/2014~ -~36417~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~665~^0.012^12^0.003^~1~^~A~^^^1^0.000^0.041^11^0.006^0.019^~1, 2, 3~^~03/01/2014~ -~36417~^~670~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~36417~^~671~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~672~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.011^11^0.000^0.004^~1, 2, 3~^~03/01/2014~ -~36417~^~673~^0.012^12^0.003^~1~^~A~^^^1^0.000^0.044^11^0.004^0.019^~1, 2, 3~^~03/01/2014~ -~36417~^~674~^1.419^12^0.159^~1~^~A~^^^1^0.996^2.934^11^1.068^1.769^~2, 3~^~03/01/2014~ -~36417~^~675~^2.052^12^0.149^~1~^~A~^^^1^0.980^2.984^11^1.724^2.380^~2, 3~^~03/01/2014~ -~36417~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~685~^0.011^12^0.001^~1~^~A~^^^1^0.000^0.018^11^0.008^0.014^~1, 2, 3~^~03/01/2014~ -~36417~^~687~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.006^11^0.001^0.004^~1, 2, 3~^~03/01/2014~ -~36417~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36417~^~693~^0.058^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36417~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~851~^0.238^12^0.022^~1~^~A~^^^1^0.082^0.376^11^0.189^0.286^~2, 3~^~03/01/2014~ -~36417~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~856~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36417~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~312~^0.168^12^0.014^~1~^~A~^^^1^0.090^0.248^11^0.137^0.199^~2, 3~^~03/01/2014~ -~36418~^~315~^0.367^12^0.012^~1~^~A~^^^1^0.285^0.457^11^0.341^0.394^~2, 3~^~03/01/2014~ -~36418~^~404~^0.135^6^0.006^~1~^~A~^^^1^0.120^0.160^5^0.120^0.149^~2, 3~^~03/01/2014~ -~36418~^~405~^0.111^6^0.005^~1~^~A~^^^1^0.095^0.130^5^0.097^0.124^~2, 3~^~03/01/2014~ -~36418~^~406~^0.488^6^0.041^~1~^~A~^^^1^0.360^0.630^5^0.383^0.594^~2, 3~^~03/01/2014~ -~36418~^~410~^0.290^4^0.014^~1~^~A~^^^1^0.270^0.330^3^0.247^0.333^~2, 3~^~03/01/2014~ -~36418~^~415~^0.098^0^^~4~^~FLA~^^^^^^^^^^~03/01/2015~ -~36418~^~501~^0.071^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~502~^0.267^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~503~^0.272^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~504~^0.539^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~505~^0.533^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~506~^0.082^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~507~^0.060^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~508~^0.387^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~509~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~510~^0.289^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~511~^0.414^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~512~^0.196^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~513~^0.267^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~514~^0.726^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~515~^0.971^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~516~^0.277^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~517~^0.255^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~518~^0.387^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36418~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2014~ -~36418~^~605~^0.087^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~606~^1.840^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~607~^0.030^11^0.003^~1~^~A~^^^1^0.016^0.046^10^0.023^0.037^~2, 3~^~03/01/2014~ -~36418~^~608~^0.019^11^0.003^~1~^~A~^^^1^0.007^0.033^10^0.013^0.025^~2, 3~^~03/01/2014~ -~36418~^~609~^0.015^11^0.002^~1~^~A~^^^1^0.007^0.024^10^0.011^0.018^~2, 3~^~03/01/2014~ -~36418~^~610~^0.045^11^0.005^~1~^~A~^^^1^0.024^0.075^10^0.033^0.057^~2, 3~^~03/01/2014~ -~36418~^~611~^0.038^11^0.005^~1~^~A~^^^1^0.017^0.067^10^0.027^0.050^~2, 3~^~03/01/2014~ -~36418~^~612~^0.133^11^0.015^~1~^~A~^^^1^0.050^0.215^10^0.099^0.166^~2, 3~^~03/01/2014~ -~36418~^~613~^1.038^11^0.121^~1~^~A~^^^1^0.393^1.930^10^0.768^1.307^~2, 3~^~03/01/2014~ -~36418~^~614~^0.453^11^0.054^~1~^~A~^^^1^0.151^0.878^10^0.332^0.573^~2, 3~^~03/01/2014~ -~36418~^~615~^0.017^11^0.004^~1~^~A~^^^1^0.008^0.058^10^0.007^0.027^~2, 3~^~03/01/2014~ -~36418~^~617~^1.736^11^0.251^~1~^~AS~^^^1^0.734^3.944^10^1.178^2.295^~2, 3~^~03/01/2014~ -~36418~^~618~^1.914^11^0.630^~1~^~AS~^^^1^0.588^7.420^10^0.511^3.318^~2, 3~^~03/01/2014~ -~36418~^~619~^0.405^11^0.088^~1~^~AS~^^^1^0.212^1.151^10^0.209^0.601^~2, 3~^~03/01/2014~ -~36418~^~620~^0.008^11^0.001^~1~^~A~^^^1^0.003^0.014^10^0.006^0.010^~2, 3~^~03/01/2014~ -~36418~^~621~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~624~^0.014^11^0.004^~1~^~A~^^^1^0.004^0.052^10^0.004^0.024^~2, 3~^~03/01/2014~ -~36418~^~625~^0.010^11^0.001^~1~^~A~^^^1^0.004^0.015^10^0.007^0.013^~2, 3~^~03/01/2014~ -~36418~^~626~^0.052^11^0.009^~1~^~AS~^^^1^0.006^0.099^10^0.032^0.073^~2, 3~^~03/01/2014~ -~36418~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~628~^0.027^11^0.006^~1~^~A~^^^1^0.011^0.078^10^0.015^0.040^~2, 3~^~03/01/2014~ -~36418~^~629~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~630~^0.000^11^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~03/01/2014~ -~36418~^~631~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~03/01/2014~ -~36418~^~645~^1.834^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~646~^2.344^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~652~^0.014^11^0.001^~1~^~A~^^^1^0.007^0.022^10^0.011^0.018^~2, 3~^~03/01/2014~ -~36418~^~653~^0.015^11^0.002^~1~^~A~^^^1^0.006^0.023^10^0.012^0.019^~2, 3~^~03/01/2014~ -~36418~^~654~^0.008^11^0.002^~1~^~A~^^^1^0.004^0.022^10^0.004^0.011^~2, 3~^~03/01/2014~ -~36418~^~662~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.005^10^0.001^0.003^~1, 2, 3~^~03/01/2014~ -~36418~^~663~^0.071^11^0.026^~1~^~A~^^^1^0.010^0.250^10^0.013^0.129^~2, 3~^~03/01/2014~ -~36418~^~664~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~665~^0.014^11^0.003^~1~^~A~^^^1^0.004^0.033^10^0.008^0.020^~2, 3~^~03/01/2014~ -~36418~^~670~^0.007^11^0.001^~1~^~A~^^^1^0.000^0.015^10^0.005^0.010^~1, 2, 3~^~03/01/2014~ -~36418~^~671~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~672~^0.012^11^0.003^~1~^~A~^^^1^0.000^0.027^10^0.006^0.019^~1, 2, 3~^~03/01/2014~ -~36418~^~673~^0.050^11^0.009^~1~^~A~^^^1^0.006^0.095^10^0.031^0.070^~2, 3~^~03/01/2014~ -~36418~^~674~^1.665^11^0.251^~1~^~A~^^^1^0.724^3.912^10^1.107^2.224^~2, 3~^~03/01/2014~ -~36418~^~675~^1.893^11^0.627^~1~^~A~^^^1^0.562^7.372^10^0.496^3.290^~2, 3~^~03/01/2014~ -~36418~^~676~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~685~^0.009^11^0.004^~1~^~A~^^^1^0.000^0.042^10^0.000^0.017^~1, 2, 3~^~03/01/2014~ -~36418~^~687~^0.008^11^0.001^~1~^~A~^^^1^0.003^0.012^10^0.006^0.010^~2, 3~^~03/01/2014~ -~36418~^~689~^0.003^11^0.001^~1~^~AS~^^^1^0.000^0.012^10^0.000^0.006^~2, 3~^~03/01/2014~ -~36418~^~693~^0.073^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~695~^0.014^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36418~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~851~^0.396^11^0.084^~1~^~A~^^^1^0.212^1.109^10^0.209^0.584^~2, 3~^~03/01/2014~ -~36418~^~852~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.006^10^0.000^0.003^~1, 2, 3~^~03/01/2014~ -~36418~^~853~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.006^10^0.000^0.004^~1, 2, 3~^~03/01/2014~ -~36418~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~03/01/2014~ -~36418~^~858~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.004^10^0.000^0.002^~1, 2, 3~^~03/01/2014~ -~36601~^~312~^0.148^4^0.000^~1~^~A~^^^1^0.148^0.148^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~315~^0.245^4^0.034^~1~^~A~^^^1^0.170^0.330^3^0.137^0.352^~2, 3~^~10/01/2008~ -~36601~^~404~^0.165^4^0.040^~1~^~A~^^^1^0.100^0.280^3^0.039^0.291^~2, 3~^~10/01/2008~ -~36601~^~405~^0.077^4^0.011^~1~^~A~^^^1^0.060^0.110^3^0.042^0.113^~2, 3~^~10/01/2008~ -~36601~^~406~^2.725^4^0.511^~1~^~A~^^^1^1.900^4.000^3^1.100^4.350^~2, 3~^~10/01/2008~ -~36601~^~410~^0.380^4^0.047^~1~^~A~^^^1^0.320^0.520^3^0.230^0.530^~2, 3~^~10/01/2008~ -~36601~^~415~^0.167^4^0.029^~1~^~A~^^^1^0.132^0.252^3^0.076^0.258^~2, 3~^~10/01/2008~ -~36601~^~501~^0.066^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~502~^0.339^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~503~^0.296^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~504~^0.581^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~505~^0.368^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~506~^0.147^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~507~^0.159^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~508~^0.360^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~509~^0.249^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~510~^0.331^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~511~^0.412^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~512~^0.183^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~513~^0.296^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~514~^0.564^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~515~^2.747^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~516~^0.361^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~517~^0.778^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~518~^0.323^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36601~^~521~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~605~^0.103^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~606~^2.116^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~609~^0.007^4^0.004^~1~^~A~^^^1^0.000^0.015^3^-0.006^0.021^~1, 2, 3~^~10/01/2008~ -~36601~^~610~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~611~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~612~^0.029^4^0.009^~1~^~A~^^^1^0.009^0.049^3^0.003^0.062^~2, 3~^~10/01/2008~ -~36601~^~613~^1.459^4^0.160^~1~^~A~^^^1^1.229^2.006^3^1.112^2.132^~2, 3~^~10/01/2008~ -~36601~^~614~^0.535^4^0.053^~1~^~A~^^^1^0.437^0.665^3^0.426^0.764^~2, 3~^~10/01/2008~ -~36601~^~615~^0.034^4^0.003^~1~^~A~^^^1^0.033^0.044^3^0.029^0.045^~2, 3~^~10/01/2008~ -~36601~^~617~^2.889^4^0.255^~1~^~AS~^^^1^2.556^3.756^3^2.402^4.023^~2, 3~^~10/01/2008~ -~36601~^~618~^4.928^4^0.325^~1~^~AS~^^^1^4.755^6.336^3^4.446^6.514^~2, 3~^~10/01/2008~ -~36601~^~619~^0.656^4^0.066^~1~^~AS~^^^1^0.561^0.861^3^0.520^0.939^~2, 3~^~10/01/2008~ -~36601~^~620~^0.009^4^0.005^~1~^~A~^^^1^0.005^0.026^3^-0.006^0.027^~1, 2, 3~^~10/01/2008~ -~36601~^~624~^0.036^4^0.002^~1~^~A~^^^1^0.037^0.045^3^0.035^0.046^~2, 3~^~10/01/2008~ -~36601~^~625~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.011^3^0.003^0.012^~1, 2, 3~^~10/01/2008~ -~36601~^~626~^0.093^4^0.061^~1~^~A~^^^1^0.018^0.283^3^-0.089^0.296^~2, 3~^~10/01/2008~ -~36601~^~628~^0.048^4^0.003^~1~^~A~^^^1^0.048^0.062^3^0.043^0.063^~2, 3~^~10/01/2008~ -~36601~^~645~^3.036^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~646~^5.601^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~652~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~653~^0.016^4^0.003^~1~^~A~^^^1^0.011^0.024^3^0.009^0.027^~2, 3~^~10/01/2008~ -~36601~^~663~^0.046^4^0.019^~1~^~A~^^^1^0.009^0.091^3^-0.008^0.110^~2, 3~^~10/01/2008~ -~36601~^~669~^0.057^4^0.006^~1~^~A~^^^1^0.048^0.074^3^0.044^0.083^~2, 3~^~10/01/2008~ -~36601~^~672~^0.007^4^0.001^~1~^~A~^^^1^0.005^0.010^3^0.005^0.012^~1, 2, 3~^~10/01/2008~ -~36601~^~674~^2.844^4^0.245^~1~^~A~^^^1^2.547^3.685^3^2.382^3.942^~2, 3~^~10/01/2008~ -~36601~^~675~^4.871^4^0.322^~1~^~A~^^^1^4.695^6.264^3^4.390^6.443^~2, 3~^~10/01/2008~ -~36601~^~685~^0.020^4^0.009^~1~^~A~^^^1^0.005^0.044^3^-0.007^0.052^~1, 2, 3~^~10/01/2008~ -~36601~^~687~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~689~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~693~^0.046^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~695~^0.057^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~ -~36601~^~697~^0.000^4^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2008~ -~36601~^~851~^0.636^4^0.058^~1~^~A~^^^1^0.552^0.817^3^0.523^0.892^~2, 3~^~10/01/2008~ -~36602~^~312~^0.095^28^0.005^~1~^~A~^^^5^0.054^0.130^4^0.080^0.109^~2~^~04/01/2009~ -~36602~^~315~^0.433^28^0.007^~1~^~A~^^^5^0.249^0.569^4^0.414^0.451^~2~^~04/01/2013~ -~36602~^~404~^0.015^4^0.000^~1~^~A~^^^1^0.015^0.015^^^^~1, 2, 3~^~10/01/2008~ -~36602~^~405~^0.026^4^0.006^~1~^~A~^^^1^0.015^0.040^3^0.008^0.044^~1, 2, 3~^~10/01/2008~ -~36602~^~406~^0.637^4^0.123^~1~^~A~^^^1^0.411^0.947^3^0.247^1.027^~2, 3~^~10/01/2008~ -~36602~^~415~^0.032^4^0.003^~1~^~A~^^^1^0.030^0.040^3^0.024^0.040^~2, 3~^~10/01/2008~ -~36602~^~501~^0.052^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~502~^0.173^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~503~^0.173^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~504~^0.335^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~505~^0.173^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~506~^0.114^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~507~^0.084^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~508~^0.225^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~509~^0.154^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~510~^0.251^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~511~^0.335^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~512~^0.094^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~513~^0.241^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~514~^0.407^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~515~^1.073^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~516~^0.178^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~517~^0.188^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~518~^0.210^0^^~1~^~A~^^^^^^^^^^~10/01/2008~ -~36602~^~605~^0.011^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36602~^~606~^0.540^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~607~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~608~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~609~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~610~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~611~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.001^3^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~36602~^~612~^0.012^7^0.001^~1~^~A~^^^2^0.010^0.015^5^0.010^0.014^~2, 3~^~04/01/2013~ -~36602~^~613~^0.386^7^0.030^~1~^~A~^^^2^0.298^0.512^4^0.298^0.475^~2, 3~^~04/01/2013~ -~36602~^~614~^0.121^7^0.013^~1~^~A~^^^2^0.078^0.168^4^0.084^0.158^~2, 3~^~04/01/2013~ -~36602~^~615~^0.007^7^0.001^~1~^~A~^^^2^0.004^0.010^5^0.006^0.008^~2, 3~^~04/01/2013~ -~36602~^~617~^0.625^7^0.062^~1~^~AS~^^^2^0.428^0.849^4^0.444^0.806^~2, 3~^~04/01/2013~ -~36602~^~618~^0.989^7^0.091^~1~^~AS~^^^2^0.732^1.292^5^0.752^1.226^~2, 3~^~04/01/2013~ -~36602~^~619~^0.113^7^0.011^~1~^~AS~^^^2^0.078^0.157^5^0.084^0.142^~2, 3~^~04/01/2013~ -~36602~^~620~^0.006^7^0.002^~1~^~A~^^^2^0.001^0.014^3^0.002^0.011^~1, 2, 3~^~04/01/2013~ -~36602~^~621~^0.002^7^0.001^~1~^~A~^^^2^0.000^0.005^3^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36602~^~624~^0.006^7^0.001^~1~^~A~^^^2^0.004^0.009^5^0.005^0.008^~2, 3~^~04/01/2013~ -~36602~^~625~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~626~^0.013^7^0.003^~1~^~AS~^^^2^0.004^0.027^4^0.006^0.021^~2, 3~^~04/01/2013~ -~36602~^~627~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~628~^0.009^7^0.002^~1~^~A~^^^2^0.004^0.017^3^0.003^0.014^~2, 3~^~04/01/2009~ -~36602~^~629~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~630~^0.000^7^0.000^~1~^~AS~^^^2^0.000^0.000^^^^~2, 3~^~04/01/2009~ -~36602~^~631~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~645~^0.649^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~646~^1.111^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36602~^~652~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~04/01/2009~ -~36602~^~653~^0.002^7^0.000^~1~^~A~^^^2^0.002^0.004^3^0.002^0.003^~1, 2, 3~^~04/01/2009~ -~36602~^~654~^0.004^7^0.001^~1~^~A~^^^2^0.002^0.006^4^0.003^0.006^~2, 3~^~04/01/2013~ -~36602~^~662~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~663~^0.005^7^0.001^~1~^~A~^^^2^0.003^0.009^3^0.002^0.007^~2, 3~^~04/01/2009~ -~36602~^~664~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~665~^0.007^7^0.001^~1~^~A~^^^2^0.004^0.010^4^0.004^0.009^~2, 3~^~04/01/2009~ -~36602~^~670~^0.001^7^0.001^~1~^~A~^^^2^0.000^0.003^5^0.000^0.003^~1, 2, 3~^~04/01/2009~ -~36602~^~671~^0.001^7^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2009~ -~36602~^~672~^0.001^7^0.000^~1~^~A~^^^2^0.000^0.002^3^0.000^0.002^~1, 2, 3~^~04/01/2013~ -~36602~^~673~^0.013^7^0.003^~1~^~A~^^^2^0.004^0.027^4^0.006^0.021^~2, 3~^~04/01/2013~ -~36602~^~674~^0.621^7^0.061^~1~^~A~^^^2^0.424^0.840^4^0.442^0.800^~2, 3~^~04/01/2013~ -~36602~^~675~^0.981^7^0.090^~1~^~A~^^^2^0.727^1.279^5^0.746^1.215^~2, 3~^~04/01/2013~ -~36602~^~676~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~685~^0.002^7^0.000^~1~^~A~^^^2^0.000^0.006^2^0.002^0.003^~1, 2, 3~^~04/01/2013~ -~36602~^~687~^0.001^7^0.000^~1~^~A~^^^2^0.000^0.003^3^-0.001^0.002^~1, 2, 3~^~04/01/2009~ -~36602~^~689~^0.000^7^0.000^~1~^~AS~^^^2^0.000^0.002^3^-0.001^0.001^~2, 3~^~04/01/2009~ -~36602~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36602~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~ -~36602~^~697~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~851~^0.111^7^0.011^~1~^~A~^^^2^0.078^0.151^5^0.082^0.140^~2, 3~^~04/01/2013~ -~36602~^~852~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36602~^~853~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.002^3^-0.001^0.001^~1, 2, 3~^~04/01/2009~ -~36602~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36602~^~858~^0.000^7^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~04/01/2009~ -~36603~^~312~^0.049^24^0.002^~1~^~A~^^^4^0.034^0.075^14^0.045^0.053^~1, 2, 3~^~07/01/2010~ -~36603~^~315~^0.147^24^0.010^~1~^~A~^^^4^0.087^0.252^17^0.126^0.169^~1, 2, 3~^~07/01/2010~ -~36603~^~404~^0.033^6^0.005^~1~^~A~^^^1^0.020^0.050^5^0.021^0.046^~2, 3~^~07/01/2010~ -~36603~^~405~^0.055^6^0.004^~1~^~A~^^^1^0.040^0.070^5^0.044^0.066^~2, 3~^~07/01/2010~ -~36603~^~406~^1.320^6^0.106^~1~^~A~^^^1^1.070^1.790^5^1.048^1.592^~2, 3~^~07/01/2010~ -~36603~^~410~^0.443^3^0.064^~1~^~A~^^^1^0.330^0.550^2^0.170^0.717^~2, 3~^~07/01/2010~ -~36603~^~415~^0.161^6^0.012^~1~^~A~^^^1^0.125^0.199^5^0.130^0.191^~2, 3~^~07/01/2010~ -~36603~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~502~^0.313^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~503~^0.314^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~504~^0.525^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~505~^0.552^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~506~^0.158^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~507~^0.073^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~508~^0.317^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~509~^0.274^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~510~^0.327^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~511~^0.519^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~512~^0.207^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~513~^0.381^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~514~^0.668^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~515~^1.345^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~516~^0.276^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~517~^0.263^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~518~^0.291^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36603~^~605~^0.058^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~606~^0.978^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~607~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.003^~1, 2, 3~^~07/01/2010~ -~36603~^~608~^0.008^12^0.008^~1~^~A~^^^1^0.000^0.098^11^-0.010^0.026^~1, 2, 3~^~07/01/2010~ -~36603~^~609~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.003^~1, 2, 3~^~07/01/2010~ -~36603~^~610~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36603~^~611~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36603~^~612~^0.028^12^0.002^~1~^~A~^^^1^0.010^0.040^11^0.022^0.033^~2, 3~^~07/01/2010~ -~36603~^~613~^0.634^12^0.033^~1~^~A~^^^1^0.411^0.821^11^0.562^0.705^~2, 3~^~07/01/2010~ -~36603~^~614~^0.253^12^0.014^~1~^~A~^^^1^0.175^0.324^11^0.222^0.284^~2, 3~^~07/01/2010~ -~36603~^~615~^0.012^12^0.001^~1~^~A~^^^1^0.007^0.021^11^0.009^0.014^~2, 3~^~07/01/2010~ -~36603~^~617~^1.125^12^0.079^~1~^~AS~^^^1^0.725^1.564^11^0.951^1.298^~2, 3~^~07/01/2010~ -~36603~^~618~^1.834^12^0.161^~1~^~AS~^^^1^1.182^2.980^11^1.480^2.187^~2, 3~^~07/01/2010~ -~36603~^~619~^0.264^12^0.022^~1~^~AS~^^^1^0.094^0.375^11^0.215^0.314^~2, 3~^~07/01/2010~ -~36603~^~620~^0.014^12^0.001^~1~^~A~^^^1^0.007^0.024^11^0.011^0.016^~2, 3~^~07/01/2010~ -~36603~^~621~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~36603~^~624~^0.012^12^0.002^~1~^~A~^^^1^0.001^0.021^11^0.008^0.015^~1, 2, 3~^~07/01/2010~ -~36603~^~625~^0.006^12^0.001^~1~^~A~^^^1^0.001^0.010^11^0.004^0.007^~1, 2, 3~^~07/01/2010~ -~36603~^~626~^0.053^12^0.006^~1~^~AS~^^^1^0.024^0.098^11^0.041^0.066^~2, 3~^~07/01/2010~ -~36603~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~628~^0.020^12^0.003^~1~^~A~^^^1^0.010^0.043^11^0.014^0.026^~2, 3~^~07/01/2010~ -~36603~^~629~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.008^11^0.003^0.005^~1, 2, 3~^~07/01/2010~ -~36603~^~630~^0.002^12^0.000^~1~^~AS~^^^1^0.000^0.005^11^0.001^0.003^~2, 3~^~07/01/2010~ -~36603~^~631~^0.005^12^0.001^~1~^~A~^^^1^0.001^0.008^11^0.003^0.006^~1, 2, 3~^~07/01/2010~ -~36603~^~645~^1.217^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~646~^2.130^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.005^0.006^~2, 3~^~07/01/2010~ -~36603~^~653~^0.013^12^0.001^~1~^~A~^^^1^0.008^0.018^11^0.011^0.015^~2, 3~^~07/01/2010~ -~36603~^~654~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.004^0.005^~2, 3~^~07/01/2010~ -~36603~^~662~^0.004^12^0.001^~1~^~A~^^^1^0.002^0.013^11^0.003^0.006^~1, 2, 3~^~07/01/2010~ -~36603~^~663~^0.032^12^0.006^~1~^~A~^^^1^0.012^0.080^11^0.019^0.046^~2, 3~^~07/01/2010~ -~36603~^~664~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36603~^~665~^0.020^12^0.003^~1~^~A~^^^1^0.010^0.052^11^0.013^0.028^~2, 3~^~07/01/2010~ -~36603~^~670~^0.011^12^0.001^~1~^~A~^^^1^0.007^0.018^11^0.009^0.013^~2, 3~^~07/01/2010~ -~36603~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36603~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.002^0.003^~1, 2, 3~^~07/01/2010~ -~36603~^~673~^0.049^12^0.005^~1~^~A~^^^1^0.021^0.095^11^0.037^0.061^~2, 3~^~07/01/2010~ -~36603~^~674~^1.092^12^0.079^~1~^~A~^^^1^0.699^1.540^11^0.919^1.266^~2, 3~^~07/01/2010~ -~36603~^~675~^1.803^12^0.158^~1~^~A~^^^1^1.161^2.918^11^1.455^2.151^~2, 3~^~07/01/2010~ -~36603~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~36603~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36603~^~687~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.016^11^0.008^0.012^~2, 3~^~07/01/2010~ -~36603~^~689~^0.004^12^0.000^~1~^~AS~^^^1^0.002^0.007^11^0.003^0.005^~2, 3~^~07/01/2010~ -~36603~^~693~^0.037^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36603~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36603~^~851~^0.264^12^0.022^~1~^~A~^^^1^0.094^0.375^11^0.215^0.313^~2, 3~^~07/01/2010~ -~36603~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~36603~^~853~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.007^11^0.003^0.005^~1, 2, 3~^~07/01/2010~ -~36603~^~858~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36604~^~312~^0.069^6^0.002^~1~^~A~^^^1^0.061^0.073^5^0.064^0.074^~2, 3~^~04/01/2013~ -~36604~^~315~^0.266^6^0.008^~1~^~A~^^^1^0.245^0.296^5^0.245^0.288^~2, 3~^~04/01/2013~ -~36604~^~404~^0.093^3^0.007^~1~^~A~^^^1^0.080^0.100^2^0.064^0.122^~2, 3~^~04/01/2013~ -~36604~^~405~^0.137^3^0.003^~1~^~A~^^^1^0.130^0.140^2^0.122^0.151^~2, 3~^~04/01/2013~ -~36604~^~406~^7.010^3^0.070^~1~^~A~^^^1^6.870^7.090^2^6.708^7.312^~2, 3~^~04/01/2013~ -~36604~^~410~^1.390^2^^~1~^~A~^^^1^1.230^1.550^1^^^^~04/01/2013~ -~36604~^~415~^0.444^3^0.010^~1~^~A~^^^1^0.430^0.463^2^0.402^0.486^~2, 3~^~04/01/2013~ -~36604~^~501~^0.206^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~502~^0.535^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~503~^0.823^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~504~^1.554^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~505~^2.336^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~506~^0.525^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~507~^0.267^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~508~^0.741^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~509~^0.535^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~510~^0.885^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~511~^1.348^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~512~^0.762^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~513~^0.967^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~514~^1.338^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~515~^3.293^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~516~^0.875^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~517~^1.153^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~518~^0.772^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~521~^0.030^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36604~^~605~^0.126^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~606~^2.830^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~609~^0.006^3^0.001^~1~^~A~^^^1^0.004^0.008^2^0.001^0.011^~2, 3~^~06/01/2009~ -~36604~^~610~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36604~^~611~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^-0.001^0.005^~1, 2, 3~^~04/01/2013~ -~36604~^~612~^0.017^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.012^0.023^~2, 3~^~04/01/2013~ -~36604~^~613~^1.708^3^0.048^~1~^~A~^^^1^1.655^1.804^2^1.501^1.915^~2, 3~^~04/01/2013~ -~36604~^~614~^0.949^3^0.021^~1~^~A~^^^1^0.927^0.992^2^0.858^1.041^~2, 3~^~04/01/2013~ -~36604~^~615~^0.051^3^0.001^~1~^~A~^^^1^0.050^0.052^2^0.048^0.053^~2, 3~^~04/01/2013~ -~36604~^~617~^3.330^3^0.133^~1~^~AS~^^^1^3.197^3.595^2^2.760^3.900^~2, 3~^~04/01/2013~ -~36604~^~618~^7.144^3^0.084^~1~^~AS~^^^1^7.024^7.306^2^6.782^7.506^~2, 3~^~04/01/2013~ -~36604~^~619~^0.920^3^0.013^~1~^~AS~^^^1^0.902^0.946^2^0.862^0.977^~2, 3~^~04/01/2013~ -~36604~^~620~^0.037^3^0.002^~1~^~A~^^^1^0.034^0.040^2^0.030^0.044^~2, 3~^~04/01/2013~ -~36604~^~621~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36604~^~624~^0.053^3^0.001^~1~^~A~^^^1^0.051^0.054^2^0.049^0.057^~2, 3~^~04/01/2013~ -~36604~^~625~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2009~ -~36604~^~626~^0.038^3^0.002^~1~^~AS~^^^1^0.034^0.042^2^0.028^0.048^~2, 3~^~04/01/2013~ -~36604~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~628~^0.047^3^0.004^~1~^~A~^^^1^0.042^0.054^2^0.031^0.063^~2, 3~^~04/01/2013~ -~36604~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~06/01/2009~ -~36604~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.006^~2, 3~^~04/01/2013~ -~36604~^~631~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2009~ -~36604~^~645~^3.426^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~646~^8.142^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36604~^~653~^0.015^3^0.000^~1~^~A~^^^1^0.015^0.016^2^0.014^0.017^~2, 3~^~04/01/2013~ -~36604~^~654~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.021^2^0.017^0.022^~2, 3~^~04/01/2013~ -~36604~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~663~^0.031^3^0.001^~1~^~A~^^^1^0.028^0.032^2^0.025^0.036^~2, 3~^~04/01/2013~ -~36604~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36604~^~665~^0.095^3^0.012^~1~^~A~^^^1^0.080^0.118^2^0.045^0.145^~2, 3~^~04/01/2013~ -~36604~^~670~^0.021^3^0.003^~1~^~A~^^^1^0.016^0.025^2^0.009^0.032^~2, 3~^~04/01/2013~ -~36604~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~672~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.006^0.016^~2, 3~^~06/01/2009~ -~36604~^~673~^0.038^3^0.002^~1~^~A~^^^1^0.034^0.042^2^0.028^0.048^~2, 3~^~04/01/2013~ -~36604~^~674~^3.299^3^0.132^~1~^~A~^^^1^3.166^3.563^2^2.732^3.866^~2, 3~^~04/01/2013~ -~36604~^~675~^7.028^3^0.072^~1~^~A~^^^1^6.915^7.163^2^6.716^7.340^~2, 3~^~04/01/2013~ -~36604~^~676~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.006^~1, 2, 3~^~04/01/2013~ -~36604~^~685~^0.069^3^0.009^~1~^~A~^^^1^0.053^0.085^2^0.029^0.109^~2, 3~^~04/01/2013~ -~36604~^~687~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~36604~^~689~^0.012^3^0.001^~1~^~AS~^^^1^0.009^0.014^2^0.005^0.018^~2, 3~^~04/01/2013~ -~36604~^~693~^0.031^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~695~^0.095^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36604~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36604~^~851~^0.851^3^0.022^~1~^~A~^^^1^0.817^0.893^2^0.755^0.947^~2, 3~^~04/01/2013~ -~36604~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~06/01/2009~ -~36604~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.012^2^0.006^0.014^~2, 3~^~04/01/2013~ -~36604~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36604~^~858~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~36605~^~312~^0.107^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~315~^0.408^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~404~^0.110^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~405~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~406~^0.870^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~415~^0.066^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~501~^0.148^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~502~^0.402^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~503~^0.518^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~504~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~505~^0.730^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~506~^0.296^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~507~^0.169^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~508~^0.539^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~509~^0.338^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~510~^0.560^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~511~^0.804^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~512~^0.233^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~513~^0.613^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~514~^1.058^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~515~^2.549^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~516~^0.539^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~517~^0.687^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~518~^0.508^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~605~^0.112^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~606~^3.064^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~609~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~610~^0.007^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~611~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~612~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~613~^1.761^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~614~^1.105^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~615~^0.057^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~617~^3.680^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~618~^7.423^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~619~^0.954^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~620~^0.019^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~621~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~624~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~626~^0.029^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~628~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~629~^0.054^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~631~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~645~^3.787^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~646~^8.519^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~652~^0.006^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~654~^0.020^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~662~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36605~^~663~^0.077^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36605~^~665~^0.033^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~670~^0.016^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~672~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~673~^0.027^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~674~^3.603^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~675~^7.374^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~685~^0.036^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~687~^0.010^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~689~^0.002^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36605~^~693~^0.079^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~695~^0.033^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36605~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36605~^~851~^0.918^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36605~^~852~^0.002^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36605~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36605~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36606~^~312~^0.048^5^0.002^~1~^~A~^^^1^0.044^0.057^4^0.041^0.054^~4~^~06/01/2009~ -~36606~^~315~^0.075^5^0.004^~1~^~A~^^^1^0.063^0.086^4^0.064^0.086^~4~^~06/01/2009~ -~36606~^~404~^0.112^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~405~^0.090^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~406~^3.060^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~410~^0.610^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~415~^0.182^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~501~^0.250^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~502~^1.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~503~^1.100^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~504~^1.920^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~505~^2.200^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~506~^0.660^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~507~^0.230^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~508~^0.950^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~509~^0.730^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~510~^2.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~511~^1.460^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~512~^0.510^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~513~^1.360^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~514~^2.360^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~515~^3.610^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~516~^1.140^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~517~^0.910^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~518~^0.940^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36606~^~605~^0.193^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~606~^3.249^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~609~^0.007^5^0.001^~1~^~A~^^^1^0.005^0.009^4^0.005^0.009^~4~^~06/01/2009~ -~36606~^~610~^0.005^5^0.000^~1~^~A~^^^1^0.004^0.006^4^0.003^0.006^~4~^~06/01/2009~ -~36606~^~611~^0.012^5^0.001^~1~^~A~^^^1^0.011^0.016^4^0.010^0.015^~4~^~06/01/2009~ -~36606~^~612~^0.049^5^0.002^~1~^~A~^^^1^0.042^0.056^4^0.042^0.055^~4~^~06/01/2009~ -~36606~^~613~^2.027^5^0.069^~1~^~A~^^^1^1.910^2.269^4^1.836^2.218^~4~^~06/01/2009~ -~36606~^~614~^1.003^5^0.048^~1~^~A~^^^1^0.891^1.165^4^0.871^1.135^~4~^~06/01/2009~ -~36606~^~615~^0.051^5^0.002^~1~^~A~^^^1^0.046^0.059^4^0.045^0.058^~4~^~06/01/2009~ -~36606~^~617~^4.354^5^0.089^~1~^~AS~^^^1^4.068^4.526^4^4.108^4.600^~4~^~06/01/2009~ -~36606~^~618~^6.662^5^0.368^~1~^~AS~^^^1^5.800^7.729^4^5.641^7.682^~4~^~06/01/2009~ -~36606~^~619~^0.692^5^0.034^~1~^~AS~^^^1^0.627^0.792^4^0.597^0.786^~4~^~06/01/2009~ -~36606~^~620~^0.061^5^0.003^~1~^~A~^^^1^0.056^0.069^4^0.054^0.068^~4~^~06/01/2009~ -~36606~^~621~^0.067^5^0.008^~1~^~A~^^^1^0.047^0.094^4^0.046^0.088^~4~^~06/01/2009~ -~36606~^~624~^0.048^5^0.002^~1~^~A~^^^1^0.042^0.055^4^0.041^0.054^~4~^~06/01/2009~ -~36606~^~625~^0.001^5^0.000^~1~^~A~^^^1^0.001^0.001^4^0.001^0.001^~4~^~06/01/2009~ -~36606~^~626~^0.084^5^0.007^~1~^~AS~^^^1^0.075^0.112^4^0.064^0.104^~4~^~06/01/2009~ -~36606~^~627~^0.003^5^0.000^~1~^~A~^^^1^0.003^0.004^4^0.003^0.004^~4~^~06/01/2009~ -~36606~^~628~^0.129^5^0.006^~1~^~A~^^^1^0.110^0.146^4^0.111^0.146^~4~^~06/01/2009~ -~36606~^~629~^0.011^5^0.002^~1~^~A~^^^1^0.005^0.018^4^0.005^0.017^~4~^~06/01/2009~ -~36606~^~630~^0.006^5^0.000^~1~^~AS~^^^1^0.006^0.006^4^0.006^0.006^~4~^~06/01/2009~ -~36606~^~631~^0.015^5^0.001^~1~^~A~^^^1^0.011^0.020^4^0.011^0.019^~4~^~06/01/2009~ -~36606~^~645~^4.577^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~646~^7.612^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~652~^0.006^5^0.000^~1~^~A~^^^1^0.005^0.007^4^0.005^0.008^~4~^~06/01/2009~ -~36606~^~653~^0.018^5^0.001^~1~^~A~^^^1^0.017^0.021^4^0.016^0.020^~4~^~06/01/2009~ -~36606~^~654~^0.020^5^0.001^~1~^~A~^^^1^0.017^0.022^4^0.017^0.022^~4~^~06/01/2009~ -~36606~^~662~^0.003^5^0.001^~1~^~A~^^^1^0.001^0.005^4^0.002^0.005^~4~^~06/01/2009~ -~36606~^~663~^0.087^5^0.030^~1~^~A~^^^1^0.046^0.204^4^0.004^0.169^~4~^~06/01/2009~ -~36606~^~664~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~06/01/2009~ -~36606~^~665~^0.102^5^0.007^~1~^~A~^^^1^0.078^0.122^4^0.082^0.123^~4~^~06/01/2009~ -~36606~^~670~^0.028^5^0.002^~1~^~A~^^^1^0.022^0.032^4^0.023^0.033^~4~^~06/01/2009~ -~36606~^~671~^0.004^5^0.001^~1~^~A~^^^1^0.002^0.006^4^0.002^0.006^~4~^~06/01/2009~ -~36606~^~672~^0.033^5^0.001^~1~^~A~^^^1^0.031^0.035^4^0.030^0.035^~4~^~06/01/2009~ -~36606~^~673~^0.081^5^0.007^~1~^~A~^^^1^0.070^0.108^4^0.061^0.100^~4~^~06/01/2009~ -~36606~^~674~^4.267^5^0.084^~1~^~A~^^^1^3.991^4.480^4^4.033^4.501^~4~^~06/01/2009~ -~36606~^~675~^6.532^5^0.359^~1~^~A~^^^1^5.700^7.575^4^5.534^7.529^~4~^~06/01/2009~ -~36606~^~676~^0.006^5^0.000^~1~^~A~^^^1^0.006^0.006^4^0.006^0.006^~4~^~06/01/2009~ -~36606~^~685~^0.013^5^0.001^~1~^~A~^^^1^0.009^0.017^4^0.009^0.017^~4~^~06/01/2009~ -~36606~^~687~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~06/01/2009~ -~36606~^~689~^0.049^5^0.002^~1~^~AS~^^^1^0.042^0.055^4^0.043^0.055^~4~^~06/01/2009~ -~36606~^~693~^0.090^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~695~^0.102^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36606~^~697~^0.000^5^0.000^~1~^~A~^^^1^0.000^0.000^4^0.000^0.000^~1, 4~^~06/01/2009~ -~36606~^~851~^0.679^5^0.035^~1~^~A~^^^1^0.616^0.783^4^0.582^0.776^~4~^~06/01/2009~ -~36606~^~852~^0.003^5^0.000^~1~^~A~^^^1^0.002^0.004^4^0.002^0.004^~4~^~06/01/2009~ -~36606~^~853~^0.046^5^0.002^~1~^~A~^^^1^0.039^0.052^4^0.040^0.053^~4~^~06/01/2009~ -~36606~^~858~^0.016^5^0.001^~1~^~A~^^^1^0.014^0.019^4^0.013^0.019^~4~^~06/01/2009~ -~36607~^~312~^0.123^6^0.007^~1~^~A~^^^1^0.109^0.154^5^0.105^0.142^~2, 3~^~04/01/2013~ -~36607~^~315~^0.182^6^0.004^~1~^~A~^^^1^0.172^0.200^5^0.171^0.194^~2, 3~^~04/01/2013~ -~36607~^~404~^0.117^3^0.003^~1~^~A~^^^1^0.110^0.120^2^0.102^0.131^~2, 3~^~04/01/2013~ -~36607~^~405~^0.056^3^0.003^~1~^~A~^^^1^0.051^0.062^2^0.042^0.070^~2, 3~^~04/01/2013~ -~36607~^~406~^2.417^3^0.058^~1~^~A~^^^1^2.320^2.520^2^2.168^2.665^~2, 3~^~04/01/2013~ -~36607~^~410~^0.625^2^^~1~^~A~^^^1^0.620^0.630^1^^^^~04/01/2013~ -~36607~^~415~^0.236^3^0.009^~1~^~A~^^^1^0.218^0.246^2^0.197^0.276^~2, 3~^~04/01/2013~ -~36607~^~501~^0.040^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~502~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~503~^0.100^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~504~^0.140^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~505~^0.120^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~506~^0.040^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~507~^0.030^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~508~^0.130^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~509~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~510~^0.150^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~511~^0.170^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~512~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~513~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~514~^0.652^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36607~^~515~^0.471^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36607~^~516~^0.080^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~517~^0.090^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~518~^0.100^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36607~^~605~^0.105^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~606~^2.369^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~609~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2013~ -~36607~^~610~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~04/01/2013~ -~36607~^~611~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2013~ -~36607~^~612~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.016^0.020^~2, 3~^~04/01/2013~ -~36607~^~613~^1.435^3^0.044^~1~^~A~^^^1^1.347^1.491^2^1.244^1.626^~2, 3~^~04/01/2013~ -~36607~^~614~^0.774^3^0.052^~1~^~A~^^^1^0.670^0.827^2^0.550^0.999^~2, 3~^~04/01/2013~ -~36607~^~615~^0.046^3^0.001^~1~^~A~^^^1^0.044^0.047^2^0.042^0.049^~2, 3~^~04/01/2013~ -~36607~^~617~^3.075^3^0.112^~1~^~AS~^^^1^2.851^3.198^2^2.592^3.558^~2, 3~^~04/01/2013~ -~36607~^~618~^6.008^3^0.184^~1~^~AS~^^^1^5.643^6.225^2^5.218^6.798^~2, 3~^~04/01/2013~ -~36607~^~619~^0.810^3^0.018^~1~^~AS~^^^1^0.786^0.845^2^0.734^0.887^~2, 3~^~04/01/2013~ -~36607~^~620~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~04/01/2013~ -~36607~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~624~^0.042^3^0.001^~1~^~A~^^^1^0.040^0.044^2^0.036^0.047^~2, 3~^~04/01/2013~ -~36607~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~626~^0.022^3^0.001^~1~^~AS~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~04/01/2013~ -~36607~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~628~^0.047^3^0.003^~1~^~A~^^^1^0.041^0.053^2^0.032^0.061^~2, 3~^~04/01/2013~ -~36607~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~630~^0.005^3^0.002^~1~^~AS~^^^1^0.000^0.007^2^-0.005^0.015^~2, 3~^~04/01/2013~ -~36607~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~645~^3.156^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~646~^6.833^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~652~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~06/01/2009~ -~36607~^~653~^0.014^3^0.000^~1~^~A~^^^1^0.013^0.014^2^0.012^0.015^~2, 3~^~04/01/2013~ -~36607~^~654~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.020^2^0.013^0.023^~2, 3~^~04/01/2013~ -~36607~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~663~^0.031^3^0.002^~1~^~A~^^^1^0.027^0.033^2^0.022^0.039^~2, 3~^~04/01/2013~ -~36607~^~664~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~04/01/2013~ -~36607~^~665~^0.073^3^0.015^~1~^~A~^^^1^0.045^0.097^2^0.008^0.138^~2, 3~^~04/01/2013~ -~36607~^~670~^0.021^3^0.003^~1~^~A~^^^1^0.017^0.027^2^0.009^0.034^~2, 3~^~04/01/2013~ -~36607~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~672~^0.008^3^0.002^~1~^~A~^^^1^0.005^0.011^2^0.000^0.015^~2, 3~^~04/01/2013~ -~36607~^~673~^0.022^3^0.001^~1~^~A~^^^1^0.021^0.023^2^0.019^0.025^~2, 3~^~04/01/2013~ -~36607~^~674~^3.044^3^0.113^~1~^~A~^^^1^2.818^3.171^2^2.557^3.531^~2, 3~^~04/01/2013~ -~36607~^~675~^5.914^3^0.169^~1~^~A~^^^1^5.581^6.129^2^5.187^6.641^~2, 3~^~04/01/2013~ -~36607~^~676~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.005^2^-0.004^0.009^~1, 2, 3~^~04/01/2013~ -~36607~^~685~^0.057^3^0.011^~1~^~A~^^^1^0.036^0.072^2^0.010^0.103^~2, 3~^~04/01/2013~ -~36607~^~687~^0.008^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~36607~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36607~^~693~^0.033^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~695~^0.073^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36607~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~851~^0.754^3^0.016^~1~^~A~^^^1^0.728^0.783^2^0.685^0.822^~2, 3~^~04/01/2013~ -~36607~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36607~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36607~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~312~^0.112^6^0.003^~1~^~A~^^^1^0.104^0.122^5^0.104^0.119^~2, 3~^~04/01/2013~ -~36608~^~315~^0.020^6^0.003^~1~^~A~^^^1^0.011^0.026^5^0.012^0.027^~1, 2, 3~^~04/01/2013~ -~36608~^~404~^0.089^3^0.002^~1~^~A~^^^1^0.087^0.093^2^0.081^0.097^~2, 3~^~04/01/2013~ -~36608~^~405~^0.350^3^0.020^~1~^~A~^^^1^0.310^0.370^2^0.264^0.436^~2, 3~^~04/01/2013~ -~36608~^~406~^6.403^3^0.415^~1~^~A~^^^1^5.760^7.180^2^4.616^8.190^~2, 3~^~04/01/2013~ -~36608~^~410~^0.770^2^^~1~^~A~^^^1^0.690^0.850^1^^^^~04/01/2013~ -~36608~^~415~^0.691^3^0.022^~1~^~A~^^^1^0.658^0.732^2^0.597^0.784^~2, 3~^~04/01/2013~ -~36608~^~501~^0.410^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~502~^1.523^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~503~^1.618^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~504~^2.795^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~505~^3.100^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~506~^0.830^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~507~^0.315^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~508~^1.376^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~509~^1.145^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~510~^2.889^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~511~^2.238^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~512~^1.219^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~513~^1.923^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~514~^3.142^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~515~^5.127^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~516~^1.502^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~517~^1.345^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~518~^1.271^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36608~^~605~^0.426^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~606~^3.045^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~610~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36608~^~611~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36608~^~612~^0.185^3^0.021^~1~^~A~^^^1^0.155^0.225^2^0.095^0.274^~2, 3~^~04/01/2013~ -~36608~^~613~^1.705^3^0.111^~1~^~A~^^^1^1.553^1.920^2^1.229^2.180^~2, 3~^~04/01/2013~ -~36608~^~614~^0.996^3^0.060^~1~^~A~^^^1^0.879^1.080^2^0.736^1.256^~2, 3~^~04/01/2013~ -~36608~^~615~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.005^0.010^~2, 3~^~06/01/2009~ -~36608~^~617~^3.042^3^0.091^~1~^~AS~^^^1^2.932^3.223^2^2.650^3.434^~2, 3~^~04/01/2013~ -~36608~^~618~^0.556^3^0.056^~1~^~AS~^^^1^0.473^0.662^2^0.316^0.796^~2, 3~^~04/01/2013~ -~36608~^~619~^0.037^3^0.007^~1~^~AS~^^^1^0.023^0.048^2^0.005^0.069^~2, 3~^~04/01/2013~ -~36608~^~620~^0.077^3^0.003^~1~^~A~^^^1^0.073^0.083^2^0.064^0.090^~2, 3~^~04/01/2013~ -~36608~^~621~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~06/01/2009~ -~36608~^~624~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.008^2^0.006^0.009^~2, 3~^~04/01/2013~ -~36608~^~625~^0.044^3^0.005^~1~^~A~^^^1^0.038^0.053^2^0.023^0.064^~2, 3~^~04/01/2013~ -~36608~^~626~^0.229^3^0.006^~1~^~AS~^^^1^0.222^0.241^2^0.203^0.255^~2, 3~^~04/01/2013~ -~36608~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36608~^~628~^0.026^3^0.003^~1~^~A~^^^1^0.023^0.031^2^0.014^0.037^~2, 3~^~04/01/2013~ -~36608~^~629~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~36608~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36608~^~631~^0.022^3^0.002^~1~^~A~^^^1^0.018^0.025^2^0.013^0.032^~2, 3~^~04/01/2013~ -~36608~^~645~^3.405^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~646~^0.742^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~652~^0.033^3^0.003^~1~^~A~^^^1^0.027^0.038^2^0.019^0.047^~2, 3~^~04/01/2013~ -~36608~^~653~^0.093^3^0.003^~1~^~A~^^^1^0.088^0.098^2^0.081^0.105^~2, 3~^~04/01/2013~ -~36608~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36608~^~662~^0.023^3^0.001^~1~^~A~^^^1^0.021^0.026^2^0.017^0.030^~2, 3~^~04/01/2013~ -~36608~^~663~^0.365^3^0.049^~1~^~A~^^^1^0.268^0.423^2^0.155^0.574^~2, 3~^~04/01/2013~ -~36608~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~06/01/2009~ -~36608~^~665~^0.037^3^0.005^~1~^~A~^^^1^0.028^0.043^2^0.017^0.057^~2, 3~^~04/01/2013~ -~36608~^~670~^0.032^3^0.001^~1~^~A~^^^1^0.031^0.034^2^0.028^0.036^~2, 3~^~06/01/2009~ -~36608~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~672~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2013~ -~36608~^~673~^0.206^3^0.006^~1~^~A~^^^1^0.196^0.218^2^0.178^0.233^~2, 3~^~04/01/2013~ -~36608~^~674~^2.677^3^0.067^~1~^~A~^^^1^2.568^2.800^2^2.388^2.967^~2, 3~^~04/01/2013~ -~36608~^~675~^0.486^3^0.057^~1~^~A~^^^1^0.396^0.591^2^0.242^0.731^~2, 3~^~04/01/2013~ -~36608~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~685~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~06/01/2009~ -~36608~^~687~^0.064^3^0.002^~1~^~A~^^^1^0.061^0.067^2^0.057^0.072^~2, 3~^~04/01/2013~ -~36608~^~689~^0.025^3^0.001^~1~^~AS~^^^1^0.024^0.027^2^0.021^0.029^~2, 3~^~04/01/2013~ -~36608~^~693~^0.388^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~695~^0.037^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36608~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36608~^~851~^0.035^3^0.007^~1~^~A~^^^1^0.022^0.044^2^0.006^0.063^~2, 3~^~04/01/2013~ -~36608~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36608~^~853~^0.025^3^0.001^~1~^~A~^^^1^0.024^0.027^2^0.021^0.029^~2, 3~^~04/01/2013~ -~36608~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36608~^~858~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.013^~2, 3~^~04/01/2013~ -~36609~^~312~^0.060^6^0.003^~1~^~A~^^^1^0.050^0.071^5^0.052^0.067^~2, 3~^~04/01/2013~ -~36609~^~315~^0.127^6^0.009^~1~^~A~^^^1^0.097^0.163^5^0.103^0.151^~2, 3~^~04/01/2013~ -~36609~^~404~^0.093^3^0.012^~1~^~A~^^^1^0.070^0.110^2^0.042^0.145^~2, 3~^~04/01/2013~ -~36609~^~405~^0.243^3^0.012^~1~^~A~^^^1^0.220^0.260^2^0.192^0.295^~2, 3~^~04/01/2013~ -~36609~^~406~^0.677^3^0.088^~1~^~A~^^^1^0.510^0.810^2^0.297^1.056^~2, 3~^~04/01/2013~ -~36609~^~410~^0.450^2^^~1~^~A~^^^1^0.450^0.450^^^^^~04/01/2013~ -~36609~^~415~^0.054^3^0.003^~1~^~A~^^^1^0.048^0.058^2^0.041^0.066^~2, 3~^~04/01/2013~ -~36609~^~501~^0.085^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~502~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~503~^0.330^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~504~^0.692^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~505~^0.586^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~506~^0.181^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~507~^0.107^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~508~^0.394^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~509~^0.266^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~510~^0.405^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~511~^0.298^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~512~^0.224^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~513~^0.213^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~514~^0.415^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~515~^1.971^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~516~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~517~^0.820^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~518~^0.384^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36609~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36609~^~605~^0.227^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~606~^4.197^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~607~^0.114^3^0.002^~1~^~A~^^^1^0.111^0.118^2^0.104^0.123^~2, 3~^~04/01/2013~ -~36609~^~608~^0.090^3^0.003^~1~^~A~^^^1^0.086^0.096^2^0.076^0.103^~2, 3~^~04/01/2013~ -~36609~^~609~^0.056^3^0.002^~1~^~A~^^^1^0.053^0.061^2^0.046^0.067^~2, 3~^~04/01/2013~ -~36609~^~610~^0.139^3^0.005^~1~^~A~^^^1^0.131^0.147^2^0.119^0.159^~2, 3~^~04/01/2013~ -~36609~^~611~^0.160^3^0.005^~1~^~A~^^^1^0.153^0.169^2^0.139^0.180^~2, 3~^~04/01/2013~ -~36609~^~612~^0.520^3^0.013^~1~^~A~^^^1^0.502^0.546^2^0.463^0.577^~2, 3~^~04/01/2013~ -~36609~^~613~^2.127^3^0.044^~1~^~A~^^^1^2.068^2.214^2^1.936^2.318^~2, 3~^~04/01/2013~ -~36609~^~614~^0.827^3^0.013^~1~^~A~^^^1^0.813^0.853^2^0.770^0.883^~2, 3~^~04/01/2013~ -~36609~^~615~^0.029^3^0.001^~1~^~A~^^^1^0.028^0.031^2^0.026^0.033^~2, 3~^~04/01/2013~ -~36609~^~617~^2.616^3^0.038^~1~^~AS~^^^1^2.568^2.691^2^2.452^2.780^~2, 3~^~04/01/2013~ -~36609~^~618~^3.438^3^0.064^~1~^~AS~^^^1^3.366^3.565^2^3.164^3.712^~2, 3~^~04/01/2013~ -~36609~^~619~^0.453^3^0.013^~1~^~AS~^^^1^0.436^0.478^2^0.397^0.508^~2, 3~^~04/01/2013~ -~36609~^~620~^0.013^3^0.000^~1~^~A~^^^1^0.013^0.013^^^^~2, 3~^~04/01/2013~ -~36609~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~624~^0.028^3^0.002^~1~^~A~^^^1^0.025^0.031^2^0.021^0.035^~2, 3~^~04/01/2013~ -~36609~^~625~^0.053^3^0.001^~1~^~A~^^^1^0.051^0.054^2^0.049^0.057^~2, 3~^~04/01/2013~ -~36609~^~626~^0.093^3^0.003^~1~^~AS~^^^1^0.089^0.098^2^0.081^0.104^~2, 3~^~04/01/2013~ -~36609~^~627~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~06/01/2009~ -~36609~^~628~^0.049^3^0.002^~1~^~A~^^^1^0.047^0.052^2^0.042^0.056^~2, 3~^~04/01/2013~ -~36609~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36609~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36609~^~631~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36609~^~645~^2.824^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~646~^3.925^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~652~^0.056^3^0.001^~1~^~A~^^^1^0.054^0.058^2^0.051^0.061^~2, 3~^~04/01/2013~ -~36609~^~653~^0.039^3^0.001^~1~^~A~^^^1^0.038^0.040^2^0.036^0.041^~2, 3~^~04/01/2013~ -~36609~^~654~^0.012^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.008^0.016^~2, 3~^~04/01/2013~ -~36609~^~662~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.021^2^0.016^0.023^~2, 3~^~04/01/2013~ -~36609~^~663~^0.139^3^0.002^~1~^~A~^^^1^0.136^0.142^2^0.131^0.146^~2, 3~^~04/01/2013~ -~36609~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36609~^~665~^0.068^3^0.001^~1~^~A~^^^1^0.065^0.070^2^0.061^0.074^~2, 3~^~04/01/2013~ -~36609~^~670~^0.036^3^0.001^~1~^~A~^^^1^0.034^0.037^2^0.032^0.039^~2, 3~^~04/01/2013~ -~36609~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36609~^~673~^0.073^3^0.003^~1~^~A~^^^1^0.070^0.078^2^0.062^0.084^~2, 3~^~04/01/2013~ -~36609~^~674~^2.477^3^0.040^~1~^~A~^^^1^2.426^2.555^2^2.307^2.647^~2, 3~^~04/01/2013~ -~36609~^~675~^3.335^3^0.062^~1~^~A~^^^1^3.267^3.458^2^3.069^3.600^~2, 3~^~04/01/2013~ -~36609~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36609~^~685~^0.023^3^0.001^~1~^~A~^^^1^0.021^0.024^2^0.019^0.027^~2, 3~^~04/01/2013~ -~36609~^~687~^0.014^3^0.000^~1~^~A~^^^1^0.014^0.015^2^0.013^0.016^~2, 3~^~04/01/2013~ -~36609~^~689~^0.007^3^0.000^~1~^~AS~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~06/01/2009~ -~36609~^~693~^0.158^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~695~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36609~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36609~^~851~^0.429^3^0.012^~1~^~A~^^^1^0.412^0.452^2^0.378^0.480^~2, 3~^~04/01/2013~ -~36609~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36609~^~853~^0.007^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~36609~^~856~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36609~^~858~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36610~^~312~^0.111^6^0.004^~1~^~A~^^^1^0.097^0.127^5^0.100^0.122^~2, 3~^~04/01/2013~ -~36610~^~315~^0.179^6^0.007^~1~^~A~^^^1^0.150^0.200^5^0.160^0.198^~2, 3~^~04/01/2013~ -~36610~^~404~^0.120^3^0.006^~1~^~A~^^^1^0.110^0.130^2^0.095^0.145^~2, 3~^~04/01/2013~ -~36610~^~405~^0.048^3^0.000^~1~^~A~^^^1^0.047^0.048^2^0.046^0.049^~2, 3~^~04/01/2013~ -~36610~^~406~^2.717^3^0.234^~1~^~A~^^^1^2.270^3.060^2^1.710^3.723^~2, 3~^~04/01/2013~ -~36610~^~410~^0.610^2^^~1~^~A~^^^1^0.600^0.620^1^^^^~04/01/2013~ -~36610~^~415~^0.220^3^0.019^~1~^~A~^^^1^0.187^0.252^2^0.139^0.300^~2, 3~^~04/01/2013~ -~36610~^~501~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~502~^0.111^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~503~^0.121^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~504~^0.192^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~505~^0.141^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~506~^0.040^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~507~^0.030^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~508~^0.151^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~509~^0.091^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~510~^0.303^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~511~^0.182^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~512~^0.050^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~513~^0.111^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~514~^0.747^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~515~^0.505^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~516~^0.101^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~517~^0.111^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~518~^0.131^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36610~^~605~^0.128^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~606~^2.534^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~609~^0.009^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~04/01/2013~ -~36610~^~610~^0.011^3^0.001^~1~^~A~^^^1^0.009^0.013^2^0.005^0.016^~2, 3~^~04/01/2013~ -~36610~^~611~^0.014^3^0.003^~1~^~A~^^^1^0.009^0.020^2^0.000^0.028^~2, 3~^~04/01/2013~ -~36610~^~612~^0.025^3^0.002^~1~^~A~^^^1^0.023^0.029^2^0.017^0.033^~2, 3~^~04/01/2013~ -~36610~^~613~^1.554^3^0.068^~1~^~A~^^^1^1.429^1.665^2^1.259^1.848^~2, 3~^~04/01/2013~ -~36610~^~614~^0.795^3^0.025^~1~^~A~^^^1^0.746^0.831^2^0.686^0.905^~2, 3~^~04/01/2013~ -~36610~^~615~^0.049^3^0.003^~1~^~A~^^^1^0.044^0.053^2^0.038^0.060^~2, 3~^~04/01/2013~ -~36610~^~617~^3.312^3^0.212^~1~^~AS~^^^1^2.928^3.660^2^2.400^4.224^~2, 3~^~04/01/2013~ -~36610~^~618~^5.731^3^0.175^~1~^~AS~^^^1^5.391^5.974^2^4.977^6.485^~2, 3~^~04/01/2013~ -~36610~^~619~^0.805^3^0.014^~1~^~AS~^^^1^0.779^0.828^2^0.744^0.867^~2, 3~^~04/01/2013~ -~36610~^~620~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~04/01/2013~ -~36610~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~624~^0.040^3^0.001^~1~^~A~^^^1^0.038^0.043^2^0.034^0.047^~2, 3~^~04/01/2013~ -~36610~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~626~^0.021^3^0.001^~1~^~AS~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~06/01/2009~ -~36610~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~628~^0.059^3^0.000^~1~^~A~^^^1^0.058^0.059^2^0.057^0.060^~2, 3~^~04/01/2013~ -~36610~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~630~^0.008^3^0.001^~1~^~AS~^^^1^0.006^0.009^2^0.004^0.012^~2, 3~^~04/01/2013~ -~36610~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~645~^3.408^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~646~^6.548^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~652~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~06/01/2009~ -~36610~^~653~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.013^0.019^~2, 3~^~04/01/2013~ -~36610~^~654~^0.017^3^0.001^~1~^~A~^^^1^0.015^0.018^2^0.013^0.021^~2, 3~^~04/01/2013~ -~36610~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~663~^0.042^3^0.009^~1~^~A~^^^1^0.024^0.053^2^0.003^0.082^~2, 3~^~04/01/2013~ -~36610~^~664~^0.004^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36610~^~665~^0.081^3^0.013^~1~^~A~^^^1^0.056^0.095^2^0.027^0.136^~2, 3~^~04/01/2013~ -~36610~^~670~^0.019^3^0.002^~1~^~A~^^^1^0.016^0.022^2^0.012^0.026^~2, 3~^~04/01/2013~ -~36610~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~672~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.005^^^^~2, 3~^~04/01/2013~ -~36610~^~673~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~04/01/2013~ -~36610~^~674~^3.270^3^0.204^~1~^~A~^^^1^2.904^3.610^2^2.391^4.148^~2, 3~^~04/01/2013~ -~36610~^~675~^5.631^3^0.162^~1~^~A~^^^1^5.319^5.860^2^4.936^6.326^~2, 3~^~04/01/2013~ -~36610~^~676~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~04/01/2013~ -~36610~^~685~^0.047^3^0.024^~1~^~A~^^^1^0.000^0.071^2^-0.054^0.148^~1, 2, 3~^~04/01/2013~ -~36610~^~687~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2013~ -~36610~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36610~^~693~^0.047^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~695~^0.081^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36610~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~851~^0.758^3^0.012^~1~^~A~^^^1^0.738^0.779^2^0.707^0.809^~2, 3~^~04/01/2013~ -~36610~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36610~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36610~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~312~^0.067^6^0.001^~1~^~A~^^^1^0.064^0.071^5^0.064^0.071^~2, 3~^~04/01/2013~ -~36611~^~315~^0.363^6^0.005^~1~^~A~^^^1^0.342^0.378^5^0.350^0.375^~2, 3~^~04/01/2013~ -~36611~^~404~^0.150^3^0.006^~1~^~A~^^^1^0.140^0.160^2^0.125^0.175^~2, 3~^~04/01/2013~ -~36611~^~405~^0.257^3^0.015^~1~^~A~^^^1^0.230^0.280^2^0.194^0.319^~2, 3~^~04/01/2013~ -~36611~^~406~^0.980^3^0.050^~1~^~A~^^^1^0.920^1.080^2^0.763^1.197^~2, 3~^~04/01/2013~ -~36611~^~410~^0.380^2^^~1~^~A~^^^1^0.310^0.450^1^^^^~04/01/2013~ -~36611~^~415~^0.084^3^0.002^~1~^~A~^^^1^0.081^0.086^2^0.077^0.092^~2, 3~^~04/01/2013~ -~36611~^~501~^0.175^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~502~^0.472^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~503~^0.718^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~504~^1.468^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~505~^1.211^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~506~^0.411^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~507~^0.175^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~508~^0.811^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~509~^0.606^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~510~^0.934^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~511~^0.606^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~512~^0.441^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~513~^0.462^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~514~^1.006^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~515~^4.034^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~516~^0.349^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~517~^2.628^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~518~^0.780^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36611~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36611~^~605~^0.372^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~606~^6.643^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~607~^0.165^3^0.005^~1~^~A~^^^1^0.156^0.173^2^0.144^0.187^~2, 3~^~04/01/2013~ -~36611~^~608~^0.132^3^0.003^~1~^~A~^^^1^0.126^0.137^2^0.118^0.146^~2, 3~^~04/01/2013~ -~36611~^~609~^0.091^3^0.003^~1~^~A~^^^1^0.087^0.096^2^0.080^0.103^~2, 3~^~04/01/2013~ -~36611~^~610~^0.226^3^0.005^~1~^~A~^^^1^0.216^0.231^2^0.204^0.248^~2, 3~^~04/01/2013~ -~36611~^~611~^0.268^3^0.005^~1~^~A~^^^1^0.258^0.273^2^0.247^0.289^~2, 3~^~04/01/2013~ -~36611~^~612~^0.839^3^0.011^~1~^~A~^^^1^0.818^0.856^2^0.791^0.886^~2, 3~^~04/01/2013~ -~36611~^~613~^3.223^3^0.060^~1~^~A~^^^1^3.161^3.343^2^2.966^3.481^~2, 3~^~04/01/2013~ -~36611~^~614~^1.460^3^0.065^~1~^~A~^^^1^1.358^1.580^2^1.182^1.739^~2, 3~^~04/01/2013~ -~36611~^~615~^0.042^3^0.002^~1~^~A~^^^1^0.040^0.046^2^0.034^0.050^~2, 3~^~04/01/2013~ -~36611~^~617~^3.956^3^0.166^~1~^~AS~^^^1^3.745^4.283^2^3.244^4.669^~2, 3~^~04/01/2013~ -~36611~^~618~^4.474^3^0.148^~1~^~AS~^^^1^4.272^4.762^2^3.838^5.110^~2, 3~^~04/01/2013~ -~36611~^~619~^0.571^3^0.024^~1~^~AS~^^^1^0.530^0.613^2^0.468^0.674^~2, 3~^~04/01/2013~ -~36611~^~620~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.023^2^0.018^0.026^~2, 3~^~04/01/2013~ -~36611~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~624~^0.033^3^0.001^~1~^~A~^^^1^0.031^0.035^2^0.028^0.039^~2, 3~^~04/01/2013~ -~36611~^~625~^0.081^3^0.001^~1~^~A~^^^1^0.079^0.083^2^0.076^0.087^~2, 3~^~06/01/2009~ -~36611~^~626~^0.146^3^0.002^~1~^~AS~^^^1^0.141^0.148^2^0.136^0.155^~2, 3~^~04/01/2013~ -~36611~^~627~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36611~^~628~^0.082^3^0.006^~1~^~A~^^^1^0.073^0.092^2^0.058^0.106^~2, 3~^~04/01/2013~ -~36611~^~629~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36611~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.004^2^-0.004^0.007^~2, 3~^~04/01/2013~ -~36611~^~631~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36611~^~645~^4.287^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~646~^5.104^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~652~^0.088^3^0.001^~1~^~A~^^^1^0.086^0.089^2^0.084^0.092^~2, 3~^~04/01/2013~ -~36611~^~653~^0.060^3^0.000^~1~^~A~^^^1^0.060^0.060^^^^~2, 3~^~04/01/2013~ -~36611~^~654~^0.015^3^0.001^~1~^~A~^^^1^0.014^0.016^2^0.012^0.017^~2, 3~^~04/01/2013~ -~36611~^~662~^0.028^3^0.001^~1~^~A~^^^1^0.027^0.030^2^0.024^0.032^~2, 3~^~04/01/2013~ -~36611~^~663~^0.230^3^0.019^~1~^~A~^^^1^0.193^0.257^2^0.148^0.312^~2, 3~^~04/01/2013~ -~36611~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36611~^~665~^0.112^3^0.012^~1~^~A~^^^1^0.087^0.126^2^0.058^0.165^~2, 3~^~04/01/2013~ -~36611~^~670~^0.056^3^0.004^~1~^~A~^^^1^0.051^0.065^2^0.037^0.075^~2, 3~^~04/01/2013~ -~36611~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~672~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~36611~^~673~^0.118^3^0.002^~1~^~A~^^^1^0.114^0.121^2^0.109^0.126^~2, 3~^~04/01/2013~ -~36611~^~674~^3.726^3^0.150^~1~^~A~^^^1^3.552^4.026^2^3.079^4.374^~2, 3~^~04/01/2013~ -~36611~^~675~^4.306^3^0.140^~1~^~A~^^^1^4.097^4.571^2^3.706^4.907^~2, 3~^~04/01/2013~ -~36611~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2013~ -~36611~^~685~^0.045^3^0.003^~1~^~A~^^^1^0.039^0.051^2^0.030^0.060^~2, 3~^~04/01/2013~ -~36611~^~687~^0.021^3^0.000^~1~^~A~^^^1^0.021^0.021^^^^~2, 3~^~04/01/2013~ -~36611~^~689~^0.012^3^0.002^~1~^~AS~^^^1^0.010^0.016^2^0.004^0.020^~2, 3~^~06/01/2009~ -~36611~^~693~^0.258^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~695~^0.114^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36611~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36611~^~851~^0.524^3^0.026^~1~^~A~^^^1^0.483^0.572^2^0.413^0.636^~2, 3~^~04/01/2013~ -~36611~^~852~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~06/01/2009~ -~36611~^~853~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.013^2^0.007^0.015^~2, 3~^~06/01/2009~ -~36611~^~856~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36611~^~858~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36612~^~312~^0.183^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~315~^0.247^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~404~^0.180^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~405~^0.250^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~406~^2.467^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~410~^0.360^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~415~^0.085^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~501~^0.157^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~502~^0.495^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~503~^0.615^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~504~^1.110^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~505~^0.941^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~506~^0.338^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~507~^0.193^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~508~^0.627^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~509~^0.398^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~510~^1.098^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~511~^1.013^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~512~^0.278^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~513~^0.736^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~514~^1.291^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~515~^2.751^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~516~^0.603^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~517~^0.676^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~518~^0.591^0^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~605~^0.178^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~606~^3.515^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~608~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~609~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~610~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~611~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~612~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~613~^2.044^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~614~^1.264^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~615~^0.068^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~617~^4.611^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~618~^8.431^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~619~^0.951^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~620~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~621~^0.043^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~624~^0.062^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~625~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~626~^0.024^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~628~^0.126^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~629~^0.051^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~630~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~631~^0.003^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~645~^4.772^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~646~^9.516^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~652~^0.005^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36612~^~653~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~654~^0.026^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~662~^0.001^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~663~^0.078^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~664~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36612~^~665~^0.099^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~670~^0.038^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~671~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~672~^0.012^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36612~^~673~^0.023^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~674~^4.533^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~675~^8.294^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~676~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~685~^0.121^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~687~^0.011^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~689~^0.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~ -~36612~^~693~^0.079^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~695~^0.099^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~ -~36612~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2009~ -~36612~^~851~^0.830^1^^~1~^~A~^^^^^^^^^^~03/01/2014~ -~36612~^~852~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~853~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36612~^~858~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~ -~36613~^~312~^0.066^6^0.002^~1~^~A~^^^1^0.059^0.072^5^0.061^0.071^~2, 3~^~04/01/2013~ -~36613~^~315~^0.260^6^0.012^~1~^~A~^^^1^0.229^0.294^5^0.230^0.291^~2, 3~^~04/01/2013~ -~36613~^~404~^0.100^3^0.006^~1~^~A~^^^1^0.090^0.110^2^0.075^0.125^~2, 3~^~04/01/2013~ -~36613~^~405~^0.283^3^0.007^~1~^~A~^^^1^0.270^0.290^2^0.255^0.312^~2, 3~^~04/01/2013~ -~36613~^~406~^0.870^3^0.015^~1~^~A~^^^1^0.840^0.890^2^0.804^0.936^~2, 3~^~04/01/2013~ -~36613~^~410~^0.490^2^^~1~^~A~^^^1^0.480^0.500^1^^^^~04/01/2013~ -~36613~^~415~^0.077^3^0.011^~1~^~A~^^^1^0.065^0.099^2^0.031^0.124^~2, 3~^~04/01/2013~ -~36613~^~501~^0.067^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~502~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~503~^0.259^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~504~^0.517^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~505~^0.371^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~506~^0.124^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~507~^0.101^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~508~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~509~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~510~^0.292^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~511~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~512~^0.169^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~513~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~514~^0.281^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~515~^1.619^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~516~^0.180^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~517~^0.753^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~518~^0.270^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36613~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~ -~36613~^~605~^0.070^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~606~^1.384^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~607~^0.034^3^0.001^~1~^~A~^^^1^0.032^0.036^2^0.029^0.039^~2, 3~^~04/01/2013~ -~36613~^~608~^0.026^3^0.002^~1~^~A~^^^1^0.023^0.031^2^0.016^0.037^~2, 3~^~04/01/2013~ -~36613~^~609~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.021^~2, 3~^~04/01/2013~ -~36613~^~610~^0.045^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.032^0.058^~2, 3~^~04/01/2013~ -~36613~^~611~^0.049^3^0.003^~1~^~A~^^^1^0.043^0.054^2^0.035^0.063^~2, 3~^~04/01/2013~ -~36613~^~612~^0.162^3^0.008^~1~^~A~^^^1^0.147^0.174^2^0.128^0.196^~2, 3~^~04/01/2013~ -~36613~^~613~^0.676^3^0.029^~1~^~A~^^^1^0.624^0.723^2^0.553^0.800^~2, 3~^~04/01/2013~ -~36613~^~614~^0.302^3^0.012^~1~^~A~^^^1^0.281^0.324^2^0.248^0.356^~2, 3~^~04/01/2013~ -~36613~^~615~^0.018^3^0.001^~1~^~A~^^^1^0.017^0.019^2^0.016^0.021^~2, 3~^~06/01/2009~ -~36613~^~617~^1.946^3^0.088^~1~^~AS~^^^1^1.793^2.099^2^1.566^2.326^~2, 3~^~04/01/2013~ -~36613~^~618~^0.759^3^0.031^~1~^~AS~^^^1^0.699^0.804^2^0.625^0.893^~2, 3~^~04/01/2013~ -~36613~^~619~^0.240^3^0.009^~1~^~AS~^^^1^0.222^0.254^2^0.199^0.281^~2, 3~^~04/01/2013~ -~36613~^~620~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.007^2^0.001^0.009^~2, 3~^~04/01/2013~ -~36613~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~624~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~2, 3~^~04/01/2013~ -~36613~^~625~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.017^2^0.014^0.018^~2, 3~^~04/01/2013~ -~36613~^~626~^0.034^3^0.002^~1~^~AS~^^^1^0.031^0.036^2^0.027^0.040^~2, 3~^~04/01/2013~ -~36613~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~628~^0.044^3^0.002^~1~^~A~^^^1^0.041^0.047^2^0.036^0.051^~2, 3~^~04/01/2013~ -~36613~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2013~ -~36613~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~645~^2.046^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~646~^1.010^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~652~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~04/01/2013~ -~36613~^~653~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.014^2^0.011^0.015^~2, 3~^~04/01/2013~ -~36613~^~654~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.009^2^0.004^0.011^~2, 3~^~06/01/2009~ -~36613~^~662~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36613~^~663~^0.045^3^0.005^~1~^~A~^^^1^0.039^0.055^2^0.024^0.066^~2, 3~^~04/01/2013~ -~36613~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36613~^~665~^0.019^3^0.001^~1~^~A~^^^1^0.017^0.021^2^0.014^0.024^~2, 3~^~04/01/2013~ -~36613~^~670~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.012^2^0.004^0.015^~2, 3~^~04/01/2013~ -~36613~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~06/01/2009~ -~36613~^~673~^0.028^3^0.001^~1~^~A~^^^1^0.026^0.030^2^0.023^0.033^~2, 3~^~04/01/2013~ -~36613~^~674~^1.901^3^0.085^~1~^~A~^^^1^1.751^2.044^2^1.537^2.265^~2, 3~^~04/01/2013~ -~36613~^~675~^0.731^3^0.030^~1~^~A~^^^1^0.674^0.775^2^0.603^0.859^~2, 3~^~04/01/2013~ -~36613~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36613~^~685~^0.010^3^0.001^~1~^~A~^^^1^0.009^0.011^2^0.007^0.012^~2, 3~^~04/01/2013~ -~36613~^~687~^0.005^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2013~ -~36613~^~689~^0.003^3^0.002^~1~^~AS~^^^1^0.001^0.007^2^-0.005^0.011^~2, 3~^~06/01/2009~ -~36613~^~693~^0.051^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~695~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36613~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36613~^~851~^0.230^3^0.009^~1~^~A~^^^1^0.213^0.243^2^0.192^0.268^~2, 3~^~04/01/2013~ -~36613~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36613~^~853~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36613~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36613~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~312~^0.059^6^0.002^~1~^~A~^^^1^0.053^0.065^5^0.055^0.064^~2, 3~^~04/01/2013~ -~36614~^~315~^0.212^6^0.010^~1~^~A~^^^1^0.173^0.249^5^0.186^0.239^~2, 3~^~04/01/2013~ -~36614~^~404~^0.137^3^0.009^~1~^~A~^^^1^0.120^0.150^2^0.099^0.175^~2, 3~^~04/01/2013~ -~36614~^~405~^0.193^3^0.007^~1~^~A~^^^1^0.180^0.200^2^0.165^0.222^~2, 3~^~04/01/2013~ -~36614~^~406~^6.353^3^0.124^~1~^~A~^^^1^6.110^6.520^2^5.818^6.888^~2, 3~^~04/01/2013~ -~36614~^~410~^1.155^2^^~1~^~A~^^^1^1.110^1.200^1^^^^~04/01/2013~ -~36614~^~415~^0.382^3^0.021^~1~^~A~^^^1^0.355^0.423^2^0.293^0.472^~2, 3~^~04/01/2013~ -~36614~^~502~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~503~^0.676^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~504~^1.340^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~505~^2.005^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~506~^0.443^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~507~^0.210^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~508~^0.642^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~509~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~510~^0.742^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~511~^1.219^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~512~^0.631^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~513~^0.886^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~514~^1.208^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~515~^2.792^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~516~^0.942^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~517~^1.008^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~518~^0.676^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~521~^0.110^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36614~^~605~^0.213^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~606~^5.606^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~609~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36614~^~610~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.005^0.009^~2, 3~^~04/01/2013~ -~36614~^~611~^0.019^3^0.003^~1~^~A~^^^1^0.014^0.024^2^0.007^0.031^~2, 3~^~04/01/2013~ -~36614~^~612~^0.078^3^0.004^~1~^~A~^^^1^0.071^0.085^2^0.060^0.095^~2, 3~^~04/01/2013~ -~36614~^~613~^3.791^3^0.149^~1~^~A~^^^1^3.494^3.957^2^3.150^4.431^~2, 3~^~04/01/2013~ -~36614~^~614~^1.484^3^0.087^~1~^~A~^^^1^1.340^1.642^2^1.107^1.860^~2, 3~^~04/01/2013~ -~36614~^~615~^0.083^3^0.003^~1~^~A~^^^1^0.078^0.088^2^0.070^0.095^~2, 3~^~04/01/2013~ -~36614~^~617~^9.056^3^0.334^~1~^~AS~^^^1^8.400^9.497^2^7.617^10.494^~2, 3~^~04/01/2013~ -~36614~^~618~^9.175^3^0.612^~1~^~AS~^^^1^8.399^10.383^2^6.542^11.808^~2, 3~^~04/01/2013~ -~36614~^~619~^1.387^3^0.115^~1~^~AS~^^^1^1.268^1.617^2^0.893^1.882^~2, 3~^~04/01/2013~ -~36614~^~620~^0.064^3^0.003^~1~^~A~^^^1^0.060^0.070^2^0.051^0.077^~2, 3~^~04/01/2013~ -~36614~^~621~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36614~^~624~^0.067^3^0.004^~1~^~A~^^^1^0.061^0.074^2^0.051^0.083^~2, 3~^~04/01/2013~ -~36614~^~625~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.024^2^0.017^0.027^~2, 3~^~04/01/2013~ -~36614~^~626~^0.556^3^0.034^~1~^~AS~^^^1^0.516^0.623^2^0.411^0.701^~2, 3~^~04/01/2013~ -~36614~^~627~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36614~^~628~^0.158^3^0.004^~1~^~A~^^^1^0.154^0.166^2^0.141^0.175^~2, 3~^~04/01/2013~ -~36614~^~629~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~06/01/2009~ -~36614~^~630~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.006^2^0.000^0.008^~2, 3~^~06/01/2009~ -~36614~^~631~^0.006^3^0.000^~1~^~A~^^^1^0.006^0.007^2^0.005^0.008^~2, 3~^~04/01/2013~ -~36614~^~645~^9.817^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~646~^10.701^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~652~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.014^2^0.008^0.016^~2, 3~^~04/01/2013~ -~36614~^~653~^0.031^3^0.002^~1~^~A~^^^1^0.029^0.034^2^0.023^0.038^~2, 3~^~04/01/2013~ -~36614~^~654~^0.027^3^0.001^~1~^~A~^^^1^0.025^0.028^2^0.023^0.030^~2, 3~^~04/01/2013~ -~36614~^~662~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36614~^~663~^0.087^3^0.010^~1~^~A~^^^1^0.068^0.104^2^0.042^0.132^~2, 3~^~04/01/2013~ -~36614~^~664~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2013~ -~36614~^~665~^0.120^3^0.011^~1~^~A~^^^1^0.098^0.133^2^0.072^0.168^~2, 3~^~04/01/2013~ -~36614~^~670~^0.038^3^0.002^~1~^~A~^^^1^0.036^0.042^2^0.029^0.047^~2, 3~^~04/01/2013~ -~36614~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~672~^0.020^3^0.001^~1~^~A~^^^1^0.018^0.023^2^0.014^0.027^~2, 3~^~04/01/2013~ -~36614~^~673~^0.551^3^0.034^~1~^~A~^^^1^0.512^0.618^2^0.406^0.696^~2, 3~^~04/01/2013~ -~36614~^~674~^8.968^3^0.341^~1~^~A~^^^1^8.296^9.407^2^7.500^10.437^~2, 3~^~04/01/2013~ -~36614~^~675~^9.017^3^0.621^~1~^~A~^^^1^8.230^10.243^2^6.345^11.690^~2, 3~^~04/01/2013~ -~36614~^~676~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36614~^~685~^0.098^3^0.003^~1~^~A~^^^1^0.094^0.104^2^0.084^0.111^~2, 3~^~04/01/2013~ -~36614~^~687~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.024^~2, 3~^~04/01/2013~ -~36614~^~689~^0.023^3^0.001^~1~^~AS~^^^1^0.022^0.024^2^0.020^0.025^~2, 3~^~04/01/2013~ -~36614~^~693~^0.093^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~695~^0.120^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36614~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2009~ -~36614~^~851~^1.290^3^0.112^~1~^~A~^^^1^1.174^1.513^2^0.809^1.770^~2, 3~^~04/01/2013~ -~36614~^~852~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36614~^~853~^0.021^3^0.001^~1~^~A~^^^1^0.020^0.022^2^0.018^0.023^~2, 3~^~04/01/2013~ -~36614~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36614~^~858~^0.016^3^0.001^~1~^~A~^^^1^0.015^0.019^2^0.010^0.022^~2, 3~^~04/01/2013~ -~36615~^~312~^0.118^6^0.004^~1~^~A~^^^1^0.101^0.129^5^0.107^0.129^~4~^~06/01/2009~ -~36615~^~315~^0.017^6^0.003^~1~^~A~^^^1^0.011^0.033^5^0.008^0.026^~1, 4~^~06/01/2009~ -~36615~^~404~^0.050^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~405~^0.220^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~406~^5.310^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~410~^0.740^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~415~^0.613^1^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~501~^0.380^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~502~^1.371^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~503~^1.401^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~504~^2.432^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~505~^2.021^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~506~^0.741^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~507~^0.280^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~508~^1.221^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~509~^0.991^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~510~^1.491^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~511~^1.981^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~512~^0.991^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~513~^1.721^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~514~^2.842^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~515~^4.573^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~516~^1.491^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~517~^1.111^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~518~^1.151^0^^~1~^~A~^^^^^^^^^^~06/01/2009~ -~36615~^~605~^0.276^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~606~^2.595^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~609~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~4~^~06/01/2009~ -~36615~^~610~^0.013^6^0.002^~1~^~A~^^^1^0.008^0.018^5^0.009^0.017^~4~^~06/01/2009~ -~36615~^~611~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.007^5^0.004^0.006^~4~^~06/01/2009~ -~36615~^~612~^0.150^6^0.015^~1~^~A~^^^1^0.127^0.224^5^0.111^0.189^~4~^~06/01/2009~ -~36615~^~613~^1.440^6^0.120^~1~^~A~^^^1^1.255^2.034^5^1.131^1.748^~4~^~06/01/2009~ -~36615~^~614~^0.874^6^0.075^~1~^~A~^^^1^0.743^1.231^5^0.682^1.067^~4~^~06/01/2009~ -~36615~^~615~^0.007^6^0.000^~1~^~A~^^^1^0.006^0.009^5^0.006^0.008^~4~^~06/01/2009~ -~36615~^~617~^2.570^6^0.199^~1~^~AS~^^^1^2.197^3.533^5^2.059^3.081^~4~^~06/01/2009~ -~36615~^~618~^0.486^6^0.038^~1~^~AS~^^^1^0.361^0.611^5^0.389^0.584^~4~^~06/01/2009~ -~36615~^~619~^0.036^6^0.004^~1~^~AS~^^^1^0.025^0.049^5^0.026^0.047^~4~^~06/01/2009~ -~36615~^~620~^0.079^6^0.003^~1~^~A~^^^1^0.073^0.089^5^0.072^0.086^~4~^~06/01/2009~ -~36615~^~621~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~4~^~06/01/2009~ -~36615~^~624~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~4~^~06/01/2009~ -~36615~^~625~^0.032^6^0.003^~1~^~A~^^^1^0.026^0.044^5^0.025^0.039^~4~^~06/01/2009~ -~36615~^~626~^0.212^6^0.016^~1~^~AS~^^^1^0.184^0.284^5^0.171^0.253^~4~^~06/01/2009~ -~36615~^~627~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 4~^~06/01/2009~ -~36615~^~628~^0.020^6^0.001^~1~^~A~^^^1^0.016^0.025^5^0.016^0.023^~4~^~06/01/2009~ -~36615~^~629~^0.010^6^0.001^~1~^~A~^^^1^0.007^0.013^5^0.008^0.012^~4~^~06/01/2009~ -~36615~^~630~^0.003^6^0.000^~1~^~AS~^^^1^0.002^0.004^5^0.002^0.004^~4~^~06/01/2009~ -~36615~^~631~^0.020^6^0.001^~1~^~A~^^^1^0.016^0.024^5^0.016^0.024^~4~^~06/01/2009~ -~36615~^~645~^2.840^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~646~^0.672^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~652~^0.026^6^0.002^~1~^~A~^^^1^0.020^0.035^5^0.021^0.031^~4~^~06/01/2009~ -~36615~^~653~^0.070^6^0.005^~1~^~A~^^^1^0.053^0.091^5^0.056^0.083^~4~^~06/01/2009~ -~36615~^~654~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~06/01/2009~ -~36615~^~662~^0.019^6^0.001^~1~^~A~^^^1^0.016^0.025^5^0.016^0.022^~4~^~06/01/2009~ -~36615~^~663~^0.225^6^0.028^~1~^~A~^^^1^0.137^0.316^5^0.153^0.297^~4~^~06/01/2009~ -~36615~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~06/01/2009~ -~36615~^~665~^0.032^6^0.004^~1~^~A~^^^1^0.018^0.048^5^0.022^0.042^~4~^~06/01/2009~ -~36615~^~670~^0.027^6^0.003^~1~^~A~^^^1^0.020^0.041^5^0.019^0.035^~4~^~06/01/2009~ -~36615~^~671~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 4~^~06/01/2009~ -~36615~^~672~^0.005^6^0.000^~1~^~A~^^^1^0.004^0.005^5^0.004^0.005^~4~^~06/01/2009~ -~36615~^~673~^0.193^6^0.015^~1~^~A~^^^1^0.168^0.259^5^0.155^0.231^~4~^~06/01/2009~ -~36615~^~674~^2.345^6^0.183^~1~^~A~^^^1^1.970^3.217^5^1.875^2.816^~4~^~06/01/2009~ -~36615~^~675~^0.428^6^0.036^~1~^~A~^^^1^0.302^0.555^5^0.336^0.519^~4~^~06/01/2009~ -~36615~^~676~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~4~^~06/01/2009~ -~36615~^~685~^0.002^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~4~^~06/01/2009~ -~36615~^~687~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.003^5^0.001^0.003^~1, 4~^~06/01/2009~ -~36615~^~689~^0.024^6^0.002^~1~^~AS~^^^1^0.020^0.030^5^0.020^0.028^~4~^~06/01/2009~ -~36615~^~693~^0.244^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~695~^0.032^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~ -~36615~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^5^0.000^0.000^~1, 4~^~06/01/2009~ -~36615~^~851~^0.034^6^0.004^~1~^~A~^^^1^0.023^0.047^5^0.024^0.044^~4~^~06/01/2009~ -~36615~^~852~^0.001^6^0.000^~1~^~A~^^^1^0.001^0.001^5^0.001^0.001^~4~^~06/01/2009~ -~36615~^~853~^0.023^6^0.002^~1~^~A~^^^1^0.019^0.029^5^0.019^0.027^~4~^~06/01/2009~ -~36615~^~858~^0.008^6^0.001^~1~^~A~^^^1^0.007^0.011^5^0.006^0.010^~4~^~06/01/2009~ -~36617~^~312~^0.040^14^0.002^~1~^~A~^^^2^0.026^0.053^11^0.035^0.045^~2, 3~^~05/01/2013~ -~36617~^~315~^0.089^14^0.008^~1~^~A~^^^2^0.043^0.127^10^0.070^0.108^~2, 3~^~05/01/2013~ -~36617~^~404~^0.053^7^0.005^~1~^~A~^^^2^0.040^0.070^5^0.039^0.066^~2, 3~^~07/01/2010~ -~36617~^~405~^0.070^7^0.006^~1~^~A~^^^2^0.050^0.110^5^0.054^0.086^~2, 3~^~05/01/2013~ -~36617~^~406~^3.776^7^0.323^~1~^~A~^^^2^2.480^4.830^5^2.945^4.606^~2, 3~^~05/01/2013~ -~36617~^~410~^0.520^4^0.059^~1~^~A~^^^2^0.330^0.620^2^0.266^0.774^~2, 3~^~05/01/2013~ -~36617~^~415~^0.250^7^0.026^~1~^~A~^^^2^0.157^0.344^5^0.183^0.316^~2, 3~^~05/01/2013~ -~36617~^~501~^0.141^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~502~^0.513^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~503~^0.537^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~504~^0.978^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~505~^0.958^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~506~^0.330^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~507~^0.142^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~508~^0.478^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~509~^0.369^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~510~^0.570^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~511~^0.521^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~512~^0.365^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~513~^0.671^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~514~^1.102^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~515~^2.265^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~516~^0.506^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~517~^0.524^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~518~^0.513^0^^~1~^~A~^^^^^^^^^^~05/01/2013~ -~36617~^~605~^0.068^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~606~^2.033^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~607~^0.003^13^0.000^~1~^~A~^^^2^0.000^0.005^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~608~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36617~^~609~^0.004^13^0.001^~1~^~A~^^^2^0.001^0.009^11^0.003^0.006^~1, 2, 3~^~07/01/2010~ -~36617~^~610~^0.001^13^0.000^~1~^~A~^^^2^0.000^0.004^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36617~^~611~^0.002^13^0.000^~1~^~A~^^^2^0.001^0.004^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36617~^~612~^0.021^13^0.006^~1~^~A~^^^2^0.007^0.080^11^0.009^0.034^~2, 3~^~05/01/2013~ -~36617~^~613~^1.402^13^0.148^~1~^~A~^^^2^0.713^2.254^11^1.076^1.728^~2, 3~^~05/01/2013~ -~36617~^~614~^0.510^13^0.056^~1~^~A~^^^2^0.266^1.012^11^0.387^0.633^~2, 3~^~05/01/2013~ -~36617~^~615~^0.033^13^0.004^~1~^~A~^^^2^0.015^0.065^11^0.024^0.041^~2, 3~^~05/01/2013~ -~36617~^~617~^2.609^13^0.290^~1~^~AS~^^^2^1.308^4.792^11^1.971^3.247^~2, 3~^~05/01/2013~ -~36617~^~618~^5.353^13^0.568^~1~^~AS~^^^2^2.791^9.724^11^4.103^6.603^~2, 3~^~05/01/2013~ -~36617~^~619~^0.669^13^0.089^~1~^~AS~^^^2^0.025^1.255^11^0.473^0.864^~2, 3~^~05/01/2013~ -~36617~^~620~^0.032^13^0.004^~1~^~A~^^^2^0.015^0.067^11^0.023^0.041^~2, 3~^~05/01/2013~ -~36617~^~621~^0.003^13^0.000^~1~^~A~^^^2^0.001^0.006^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~624~^0.031^13^0.004^~1~^~A~^^^2^0.014^0.061^11^0.023^0.039^~2, 3~^~05/01/2013~ -~36617~^~625~^0.002^13^0.001^~1~^~A~^^^2^0.000^0.009^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~36617~^~626~^0.070^13^0.017^~1~^~AS~^^^2^0.021^0.259^11^0.032^0.108^~2, 3~^~07/01/2010~ -~36617~^~627~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36617~^~628~^0.051^13^0.007^~1~^~A~^^^2^0.015^0.108^11^0.036^0.066^~2, 3~^~05/01/2013~ -~36617~^~629~^0.003^13^0.000^~1~^~A~^^^2^0.001^0.007^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~630~^0.005^13^0.001^~1~^~AS~^^^2^0.000^0.013^11^0.003^0.007^~2, 3~^~07/01/2010~ -~36617~^~631~^0.003^13^0.000^~1~^~A~^^^2^0.002^0.007^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~645~^2.749^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~646~^6.086^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~652~^0.003^13^0.000^~1~^~A~^^^2^0.002^0.006^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~653~^0.012^13^0.001^~1~^~A~^^^2^0.007^0.021^11^0.009^0.014^~2, 3~^~05/01/2013~ -~36617~^~654~^0.011^13^0.001^~1~^~A~^^^2^0.005^0.022^11^0.008^0.014^~2, 3~^~05/01/2013~ -~36617~^~662~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36617~^~663~^0.024^13^0.014^~1~^~A~^^^2^0.004^0.187^11^-0.007^0.054^~2, 3~^~07/01/2010~ -~36617~^~664~^0.002^13^0.000^~1~^~A~^^^2^0.000^0.006^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~36617~^~665~^0.041^13^0.005^~1~^~A~^^^2^0.015^0.080^11^0.030^0.053^~2, 3~^~05/01/2013~ -~36617~^~670~^0.010^13^0.001^~1~^~A~^^^2^0.004^0.019^11^0.007^0.014^~2, 3~^~07/01/2010~ -~36617~^~671~^0.003^13^0.001^~1~^~A~^^^2^0.000^0.007^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~672~^0.008^13^0.001^~1~^~A~^^^2^0.002^0.014^11^0.006^0.009^~1, 2, 3~^~05/01/2013~ -~36617~^~673~^0.069^13^0.017^~1~^~A~^^^2^0.021^0.257^11^0.032^0.107^~2, 3~^~05/01/2013~ -~36617~^~674~^2.585^13^0.283^~1~^~A~^^^2^1.304^4.777^11^1.962^3.208^~2, 3~^~05/01/2013~ -~36617~^~675~^5.301^13^0.562^~1~^~A~^^^2^2.769^9.627^11^4.065^6.538^~2, 3~^~05/01/2013~ -~36617~^~676~^0.003^13^0.001^~1~^~A~^^^2^0.000^0.007^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36617~^~685~^0.006^13^0.001^~1~^~A~^^^2^0.000^0.053^11^0.004^0.007^~1, 2, 3~^~05/01/2013~ -~36617~^~687~^0.009^13^0.001^~1~^~A~^^^2^0.004^0.014^11^0.007^0.011^~2, 3~^~07/01/2010~ -~36617~^~689~^0.006^13^0.001^~1~^~AS~^^^2^0.003^0.014^11^0.004^0.008^~2, 3~^~07/01/2010~ -~36617~^~693~^0.026^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~695~^0.041^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~ -~36617~^~697~^0.000^13^0.000^~1~^~A~^^^2^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36617~^~851~^0.663^13^0.089^~1~^~A~^^^2^0.024^1.254^11^0.468^0.858^~2, 3~^~05/01/2013~ -~36617~^~852~^0.001^13^0.000^~1~^~A~^^^2^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36617~^~853~^0.006^13^0.001^~1~^~A~^^^2^0.003^0.012^11^0.004^0.007^~2, 3~^~07/01/2010~ -~36617~^~856~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2013~ -~36617~^~858~^0.008^13^0.001^~1~^~A~^^^2^0.004^0.018^11^0.006^0.010^~2, 3~^~07/01/2010~ -~36618~^~312~^0.046^12^0.004^~1~^~A~^^^1^0.030^0.074^11^0.038^0.055^~2, 3~^~07/01/2010~ -~36618~^~315~^0.075^12^0.010^~1~^~A~^^^1^0.033^0.155^11^0.053^0.097^~2, 3~^~07/01/2010~ -~36618~^~404~^0.027^6^0.007^~1~^~A~^^^1^0.015^0.060^5^0.010^0.045^~1, 2, 3~^~07/01/2010~ -~36618~^~405~^0.118^6^0.009^~1~^~A~^^^1^0.090^0.140^5^0.096^0.141^~2, 3~^~07/01/2010~ -~36618~^~406~^2.853^6^0.336^~1~^~A~^^^1^2.020^4.190^5^1.989^3.718^~2, 3~^~07/01/2010~ -~36618~^~410~^0.617^3^0.030^~1~^~A~^^^1^0.560^0.660^2^0.489^0.744^~2, 3~^~07/01/2010~ -~36618~^~415~^0.202^6^0.012^~1~^~A~^^^1^0.172^0.248^5^0.171^0.232^~2, 3~^~07/01/2010~ -~36618~^~501~^0.142^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~502~^0.552^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~503~^0.564^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~504~^1.026^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~505~^1.089^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~506~^0.332^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~507~^0.144^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~508~^0.563^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~509~^0.389^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~510~^0.607^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~511~^0.688^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~512~^0.333^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~513~^0.752^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~514~^1.202^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~515~^2.399^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~516~^0.606^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~517~^0.493^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~518~^0.529^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36618~^~605~^0.090^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~606~^2.760^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~607~^0.007^12^0.005^~1~^~A~^^^1^0.001^0.057^11^-0.003^0.017^~1, 2, 3~^~07/01/2010~ -~36618~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36618~^~609~^0.008^12^0.002^~1~^~A~^^^1^0.002^0.025^11^0.004^0.013^~1, 2, 3~^~07/01/2010~ -~36618~^~610~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36618~^~611~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.002^0.003^~1, 2, 3~^~07/01/2010~ -~36618~^~612~^0.029^12^0.002^~1~^~A~^^^1^0.020^0.046^11^0.023^0.034^~2, 3~^~07/01/2010~ -~36618~^~613~^1.920^12^0.115^~1~^~A~^^^1^1.442^2.607^11^1.667^2.173^~2, 3~^~07/01/2010~ -~36618~^~614~^0.681^12^0.040^~1~^~A~^^^1^0.520^0.911^11^0.594^0.769^~2, 3~^~07/01/2010~ -~36618~^~615~^0.038^12^0.003^~1~^~A~^^^1^0.022^0.058^11^0.032^0.044^~2, 3~^~07/01/2010~ -~36618~^~617~^3.591^12^0.226^~1~^~AS~^^^1^2.646^4.857^11^3.094^4.088^~2, 3~^~07/01/2010~ -~36618~^~618~^6.541^12^0.450^~1~^~AS~^^^1^4.217^9.764^11^5.551^7.532^~2, 3~^~07/01/2010~ -~36618~^~619~^0.845^12^0.054^~1~^~AS~^^^1^0.513^1.266^11^0.726^0.964^~2, 3~^~07/01/2010~ -~36618~^~620~^0.060^12^0.006^~1~^~A~^^^1^0.039^0.112^11^0.047^0.073^~2, 3~^~07/01/2010~ -~36618~^~621~^0.005^12^0.001^~1~^~A~^^^1^0.003^0.011^11^0.004^0.007^~2, 3~^~07/01/2010~ -~36618~^~624~^0.039^12^0.003^~1~^~A~^^^1^0.020^0.060^11^0.032^0.046^~2, 3~^~07/01/2010~ -~36618~^~625~^0.006^12^0.001^~1~^~A~^^^1^0.004^0.010^11^0.005^0.008^~2, 3~^~07/01/2010~ -~36618~^~626~^0.187^12^0.023^~1~^~AS~^^^1^0.108^0.328^11^0.137^0.237^~2, 3~^~07/01/2010~ -~36618~^~627~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36618~^~628~^0.072^12^0.006^~1~^~A~^^^1^0.047^0.113^11^0.059^0.085^~2, 3~^~07/01/2010~ -~36618~^~629~^0.005^12^0.001^~1~^~A~^^^1^0.001^0.010^11^0.003^0.007^~1, 2, 3~^~07/01/2010~ -~36618~^~630~^0.007^12^0.001^~1~^~AS~^^^1^0.004^0.012^11^0.006^0.009^~2, 3~^~07/01/2010~ -~36618~^~631~^0.006^12^0.001^~1~^~A~^^^1^0.004^0.011^11^0.005^0.007^~2, 3~^~07/01/2010~ -~36618~^~645~^3.879^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~646~^7.501^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~652~^0.005^12^0.000^~1~^~A~^^^1^0.003^0.007^11^0.004^0.005^~2, 3~^~07/01/2010~ -~36618~^~653~^0.016^12^0.001^~1~^~A~^^^1^0.011^0.021^11^0.014^0.017^~2, 3~^~07/01/2010~ -~36618~^~654~^0.013^12^0.001^~1~^~A~^^^1^0.006^0.020^11^0.011^0.016^~2, 3~^~07/01/2010~ -~36618~^~662~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36618~^~663~^0.029^12^0.010^~1~^~A~^^^1^0.011^0.132^11^0.008^0.050^~2, 3~^~07/01/2010~ -~36618~^~664~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36618~^~665~^0.056^12^0.007^~1~^~A~^^^1^0.022^0.118^11^0.040^0.071^~2, 3~^~07/01/2010~ -~36618~^~670~^0.016^12^0.001^~1~^~A~^^^1^0.009^0.022^11^0.013^0.019^~2, 3~^~07/01/2010~ -~36618~^~671~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.005^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36618~^~672~^0.011^12^0.001^~1~^~A~^^^1^0.008^0.017^11^0.010^0.013^~2, 3~^~07/01/2010~ -~36618~^~673~^0.185^12^0.023^~1~^~A~^^^1^0.107^0.325^11^0.135^0.235^~2, 3~^~07/01/2010~ -~36618~^~674~^3.562^12^0.226^~1~^~A~^^^1^2.634^4.824^11^3.063^4.060^~2, 3~^~07/01/2010~ -~36618~^~675~^6.470^12^0.444^~1~^~A~^^^1^4.185^9.666^11^5.493^7.447^~2, 3~^~07/01/2010~ -~36618~^~676~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.004^0.005^~2, 3~^~07/01/2010~ -~36618~^~685~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.011^11^0.004^0.007^~1, 2, 3~^~07/01/2010~ -~36618~^~687~^0.013^12^0.001^~1~^~A~^^^1^0.010^0.018^11^0.011^0.014^~2, 3~^~07/01/2010~ -~36618~^~689~^0.011^12^0.001^~1~^~AS~^^^1^0.007^0.020^11^0.008^0.013^~2, 3~^~07/01/2010~ -~36618~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~695~^0.056^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36618~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36618~^~851~^0.840^12^0.054^~1~^~A~^^^1^0.502^1.262^11^0.720^0.959^~2, 3~^~07/01/2010~ -~36618~^~852~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36618~^~853~^0.010^12^0.001^~1~^~A~^^^1^0.006^0.018^11^0.007^0.012^~2, 3~^~07/01/2010~ -~36618~^~858~^0.015^12^0.001^~1~^~A~^^^1^0.010^0.028^11^0.012^0.018^~2, 3~^~07/01/2010~ -~36619~^~312~^0.073^12^0.008^~1~^~A~^^^1^0.018^0.120^11^0.056^0.091^~1, 2, 3~^~07/01/2010~ -~36619~^~315~^0.256^12^0.028^~1~^~A~^^^1^0.107^0.456^11^0.194^0.318^~2, 3~^~07/01/2010~ -~36619~^~404~^0.032^6^0.005^~1~^~A~^^^1^0.020^0.050^5^0.019^0.044^~2, 3~^~07/01/2010~ -~36619~^~405~^0.055^6^0.011^~1~^~A~^^^1^0.020^0.100^5^0.028^0.082^~2, 3~^~07/01/2010~ -~36619~^~406~^2.757^6^0.193^~1~^~A~^^^1^2.060^3.410^5^2.261^3.252^~2, 3~^~07/01/2010~ -~36619~^~410~^0.500^3^0.062^~1~^~A~^^^1^0.380^0.590^2^0.231^0.769^~2, 3~^~07/01/2010~ -~36619~^~415~^0.243^6^0.024^~1~^~A~^^^1^0.194^0.356^5^0.181^0.304^~2, 3~^~07/01/2010~ -~36619~^~501~^0.118^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~502~^0.407^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~503~^0.431^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~504~^0.775^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~505~^0.449^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~506~^0.240^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~507~^0.105^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~508~^0.402^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~509~^0.347^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~510~^0.470^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~511~^0.640^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~512~^0.265^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~513~^0.573^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~514~^0.967^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~515~^1.783^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~516~^0.396^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~517~^0.341^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~518~^0.395^0^^~1~^~A~^^^^^^^^^^~07/01/2010~ -~36619~^~605~^0.034^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~606~^1.352^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~607~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36619~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~609~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.002^0.002^~1, 2, 3~^~07/01/2010~ -~36619~^~610~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36619~^~611~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36619~^~612~^0.014^12^0.003^~1~^~A~^^^1^0.003^0.031^11^0.008^0.020^~2, 3~^~07/01/2010~ -~36619~^~613~^0.904^12^0.110^~1~^~A~^^^1^0.360^1.780^11^0.663^1.145^~2, 3~^~07/01/2010~ -~36619~^~614~^0.295^12^0.035^~1~^~A~^^^1^0.137^0.578^11^0.218^0.372^~2, 3~^~07/01/2010~ -~36619~^~615~^0.040^12^0.004^~1~^~A~^^^1^0.009^0.060^11^0.030^0.049^~2, 3~^~07/01/2010~ -~36619~^~617~^2.044^12^0.234^~1~^~AS~^^^1^0.776^3.869^11^1.529^2.560^~2, 3~^~07/01/2010~ -~36619~^~618~^2.714^12^0.324^~1~^~AS~^^^1^1.295^5.086^11^2.000^3.428^~2, 3~^~07/01/2010~ -~36619~^~619~^0.246^12^0.039^~1~^~AS~^^^1^0.022^0.491^11^0.161^0.331^~2, 3~^~07/01/2010~ -~36619~^~620~^0.031^12^0.004^~1~^~A~^^^1^0.017^0.060^11^0.023^0.039^~2, 3~^~07/01/2010~ -~36619~^~621~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.007^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36619~^~624~^0.056^12^0.006^~1~^~A~^^^1^0.010^0.081^11^0.042^0.070^~2, 3~^~07/01/2010~ -~36619~^~625~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.001^0.004^~1, 2, 3~^~07/01/2010~ -~36619~^~626~^0.077^12^0.015^~1~^~AS~^^^1^0.011^0.201^11^0.044^0.109^~2, 3~^~07/01/2010~ -~36619~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~07/01/2010~ -~36619~^~628~^0.040^12^0.006^~1~^~A~^^^1^0.013^0.093^11^0.027^0.053^~2, 3~^~07/01/2010~ -~36619~^~629~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.004^~1, 2, 3~^~07/01/2010~ -~36619~^~630~^0.003^12^0.001^~1~^~AS~^^^1^0.000^0.009^11^0.001^0.005^~2, 3~^~07/01/2010~ -~36619~^~631~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.003^0.004^~1, 2, 3~^~07/01/2010~ -~36619~^~645~^2.173^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~646~^3.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~652~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~36619~^~653~^0.007^12^0.001^~1~^~A~^^^1^0.003^0.012^11^0.005^0.008^~2, 3~^~07/01/2010~ -~36619~^~654~^0.027^12^0.003^~1~^~A~^^^1^0.004^0.041^11^0.020^0.034^~2, 3~^~07/01/2010~ -~36619~^~662~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36619~^~663~^0.012^12^0.004^~1~^~A~^^^1^0.004^0.051^11^0.004^0.021^~2, 3~^~07/01/2010~ -~36619~^~664~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.000^0.002^~1, 2, 3~^~07/01/2010~ -~36619~^~665~^0.020^12^0.005^~1~^~A~^^^1^0.005^0.071^11^0.010^0.031^~2, 3~^~07/01/2010~ -~36619~^~670~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.014^11^0.003^0.007^~1, 2, 3~^~07/01/2010~ -~36619~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~07/01/2010~ -~36619~^~672~^0.005^12^0.001^~1~^~A~^^^1^0.003^0.012^11^0.004^0.007^~2, 3~^~07/01/2010~ -~36619~^~673~^0.076^12^0.015^~1~^~A~^^^1^0.011^0.199^11^0.043^0.108^~2, 3~^~07/01/2010~ -~36619~^~674~^2.032^12^0.233^~1~^~A~^^^1^0.770^3.846^11^1.519^2.545^~2, 3~^~07/01/2010~ -~36619~^~675~^2.688^12^0.320^~1~^~A~^^^1^1.288^5.001^11^1.985^3.392^~2, 3~^~07/01/2010~ -~36619~^~676~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~36619~^~685~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.001^0.003^~1, 2, 3~^~07/01/2010~ -~36619~^~687~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.011^11^0.004^0.007^~2, 3~^~07/01/2010~ -~36619~^~689~^0.005^12^0.001^~1~^~AS~^^^1^0.002^0.011^11^0.004^0.007^~2, 3~^~07/01/2010~ -~36619~^~693~^0.014^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~695~^0.020^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~ -~36619~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~07/01/2010~ -~36619~^~851~^0.244^12^0.039^~1~^~A~^^^1^0.019^0.485^11^0.159^0.329^~2, 3~^~07/01/2010~ -~36619~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~07/01/2010~ -~36619~^~853~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.010^11^0.004^0.007^~1, 2, 3~^~07/01/2010~ -~36619~^~858~^0.008^12^0.001^~1~^~A~^^^1^0.005^0.015^11^0.006^0.010^~2, 3~^~07/01/2010~ -~36620~^~312~^0.084^12^0.008^~1~^~A~^^^1^0.049^0.148^11^0.066^0.102^~2, 3~^~02/01/2011~ -~36620~^~315~^0.158^12^0.012^~1~^~A~^^^1^0.089^0.244^11^0.131^0.184^~2, 3~^~02/01/2011~ -~36620~^~404~^0.030^6^0.005^~1~^~A~^^^1^0.020^0.050^5^0.017^0.043^~2, 3~^~02/01/2011~ -~36620~^~405~^0.033^6^0.004^~1~^~A~^^^1^0.020^0.050^5^0.022^0.044^~2, 3~^~02/01/2011~ -~36620~^~406~^0.935^6^0.063^~1~^~A~^^^1^0.640^1.040^5^0.774^1.096^~2, 3~^~02/01/2011~ -~36620~^~410~^0.323^3^0.009^~1~^~A~^^^1^0.310^0.340^2^0.285^0.361^~2, 3~^~02/01/2011~ -~36620~^~415~^0.125^6^0.007^~1~^~A~^^^1^0.095^0.144^5^0.107^0.143^~2, 3~^~02/01/2011~ -~36620~^~501~^0.059^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~502~^0.206^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~503~^0.216^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~504~^0.400^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~505~^0.435^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~506~^0.152^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~507~^0.058^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~508~^0.212^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~509~^0.177^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~510~^0.245^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~511~^0.469^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~512~^0.119^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~513~^0.310^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~514~^0.589^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~515~^1.207^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~516~^0.295^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~517~^0.249^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~518~^0.222^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36620~^~605~^0.021^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~606~^0.633^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~607~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.005^~1, 2, 3~^~02/01/2011~ -~36620~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~609~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~36620~^~610~^0.003^12^0.002^~1~^~A~^^^1^0.000^0.020^11^0.000^0.007^~1, 2, 3~^~02/01/2011~ -~36620~^~611~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36620~^~612~^0.007^12^0.001^~1~^~A~^^^1^0.001^0.019^11^0.004^0.009^~1, 2, 3~^~02/01/2011~ -~36620~^~613~^0.432^12^0.052^~1~^~A~^^^1^0.096^0.628^11^0.318^0.546^~2, 3~^~02/01/2011~ -~36620~^~614~^0.151^12^0.019^~1~^~A~^^^1^0.038^0.242^11^0.109^0.193^~2, 3~^~02/01/2011~ -~36620~^~615~^0.010^12^0.001^~1~^~A~^^^1^0.002^0.018^11^0.007^0.014^~1, 2, 3~^~02/01/2011~ -~36620~^~617~^0.772^12^0.105^~1~^~AS~^^^1^0.147^1.284^11^0.540^1.004^~2, 3~^~02/01/2011~ -~36620~^~618~^1.675^12^0.234^~1~^~AS~^^^1^0.320^2.681^11^1.160^2.189^~2, 3~^~02/01/2011~ -~36620~^~619~^0.255^12^0.036^~1~^~AS~^^^1^0.069^0.428^11^0.175^0.335^~2, 3~^~02/01/2011~ -~36620~^~620~^0.007^12^0.001^~1~^~A~^^^1^0.004^0.012^11^0.006^0.008^~2, 3~^~02/01/2011~ -~36620~^~621~^0.019^12^0.001^~1~^~A~^^^1^0.012^0.025^11^0.016^0.022^~2, 3~^~02/01/2011~ -~36620~^~624~^0.010^12^0.002^~1~^~A~^^^1^0.003^0.018^11^0.007^0.014^~2, 3~^~02/01/2011~ -~36620~^~625~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~626~^0.021^12^0.005^~1~^~AS~^^^1^0.004^0.068^11^0.010^0.031^~2, 3~^~02/01/2011~ -~36620~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~02/01/2011~ -~36620~^~628~^0.018^12^0.003^~1~^~A~^^^1^0.003^0.043^11^0.010^0.025^~2, 3~^~02/01/2011~ -~36620~^~629~^0.021^12^0.002^~1~^~A~^^^1^0.013^0.036^11^0.016^0.027^~2, 3~^~02/01/2011~ -~36620~^~630~^0.002^12^0.001^~1~^~AS~^^^1^0.000^0.005^11^0.000^0.003^~2, 3~^~02/01/2011~ -~36620~^~631~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.002^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36620~^~645~^0.817^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~646~^1.984^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~652~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36620~^~653~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.010^11^0.005^0.008^~2, 3~^~02/01/2011~ -~36620~^~654~^0.004^12^0.001^~1~^~A~^^^1^0.001^0.008^11^0.003^0.006^~1, 2, 3~^~02/01/2011~ -~36620~^~662~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~663~^0.008^12^0.003^~1~^~A~^^^1^0.002^0.039^11^0.001^0.014^~1, 2, 3~^~02/01/2011~ -~36620~^~664~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~665~^0.012^12^0.002^~1~^~A~^^^1^0.001^0.025^11^0.007^0.016^~1, 2, 3~^~02/01/2011~ -~36620~^~670~^0.006^12^0.001^~1~^~A~^^^1^0.001^0.012^11^0.004^0.008^~1, 2, 3~^~02/01/2011~ -~36620~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~672~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~36620~^~673~^0.020^12^0.005^~1~^~A~^^^1^0.004^0.067^11^0.010^0.030^~2, 3~^~02/01/2011~ -~36620~^~674~^0.765^12^0.106^~1~^~A~^^^1^0.145^1.275^11^0.532^0.997^~2, 3~^~02/01/2011~ -~36620~^~675~^1.657^12^0.232^~1~^~A~^^^1^0.315^2.648^11^1.146^2.168^~2, 3~^~02/01/2011~ -~36620~^~676~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.002^~1, 2, 3~^~02/01/2011~ -~36620~^~685~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~687~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.005^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36620~^~689~^0.000^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.000^0.001^~2, 3~^~02/01/2011~ -~36620~^~693~^0.009^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~695~^0.012^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36620~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36620~^~851~^0.255^12^0.036^~1~^~A~^^^1^0.069^0.428^11^0.175^0.335^~2, 3~^~02/01/2011~ -~36620~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36620~^~853~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~02/01/2011~ -~36620~^~858~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36621~^~312~^0.039^7^0.004^~1~^~A~^^^1^0.030^0.060^6^0.029^0.049^~2, 3~^~02/01/2011~ -~36621~^~315~^0.152^7^0.027^~1~^~A~^^^1^0.092^0.266^6^0.086^0.219^~2, 3~^~02/01/2011~ -~36621~^~404~^0.053^3^0.003^~1~^~A~^^^1^0.050^0.060^2^0.039^0.068^~2, 3~^~02/01/2011~ -~36621~^~405~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~02/01/2011~ -~36621~^~406~^3.657^3^0.216^~1~^~A~^^^1^3.320^4.060^2^2.726^4.587^~2, 3~^~02/01/2011~ -~36621~^~410~^0.560^1^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~415~^0.257^3^0.034^~1~^~A~^^^1^0.220^0.324^2^0.112^0.402^~2, 3~^~02/01/2011~ -~36621~^~501~^0.106^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~502~^0.394^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~503~^0.404^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~504~^0.734^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~505~^0.691^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~506~^0.234^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~507~^0.128^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~508~^0.372^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~509~^0.255^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~510~^0.425^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~511~^0.553^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~512~^0.287^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~513~^0.489^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~514~^0.808^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~515~^1.893^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~516~^0.394^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~517~^0.468^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~518~^0.383^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36621~^~605~^0.077^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~606~^1.933^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~607~^0.002^7^0.000^~1~^~A~^^^1^0.001^0.005^6^0.001^0.004^~1, 2, 3~^~02/01/2011~ -~36621~^~608~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~609~^0.004^7^0.001^~1~^~A~^^^1^0.002^0.011^6^0.001^0.007^~1, 2, 3~^~02/01/2011~ -~36621~^~610~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^6^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36621~^~611~^0.001^7^0.000^~1~^~A~^^^1^0.001^0.002^6^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36621~^~612~^0.013^7^0.002^~1~^~A~^^^1^0.007^0.020^6^0.009^0.017^~2, 3~^~02/01/2011~ -~36621~^~613~^1.312^7^0.164^~1~^~A~^^^1^0.858^1.837^6^0.910^1.715^~2, 3~^~02/01/2011~ -~36621~^~614~^0.507^7^0.067^~1~^~A~^^^1^0.316^0.716^6^0.343^0.670^~2, 3~^~02/01/2011~ -~36621~^~615~^0.033^7^0.004^~1~^~A~^^^1^0.021^0.048^6^0.023^0.044^~2, 3~^~02/01/2011~ -~36621~^~617~^2.594^7^0.347^~1~^~AS~^^^1^1.594^3.749^6^1.744^3.444^~2, 3~^~02/01/2011~ -~36621~^~618~^5.595^7^0.720^~1~^~AS~^^^1^3.629^8.223^6^3.834^7.356^~2, 3~^~02/01/2011~ -~36621~^~619~^0.772^7^0.100^~1~^~AS~^^^1^0.522^1.169^6^0.527^1.018^~2, 3~^~02/01/2011~ -~36621~^~620~^0.024^7^0.002^~1~^~A~^^^1^0.018^0.031^6^0.020^0.028^~2, 3~^~02/01/2011~ -~36621~^~621~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.003^6^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~36621~^~624~^0.032^7^0.004^~1~^~A~^^^1^0.021^0.046^6^0.022^0.042^~2, 3~^~02/01/2011~ -~36621~^~625~^0.002^7^0.000^~1~^~A~^^^1^0.001^0.003^6^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36621~^~626~^0.049^7^0.009^~1~^~AS~^^^1^0.030^0.095^6^0.027^0.071^~2, 3~^~02/01/2011~ -~36621~^~627~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~628~^0.054^7^0.007^~1~^~A~^^^1^0.031^0.079^6^0.035^0.072^~2, 3~^~02/01/2011~ -~36621~^~629~^0.003^7^0.001^~1~^~A~^^^1^0.002^0.008^6^0.002^0.005^~1, 2, 3~^~02/01/2011~ -~36621~^~630~^0.007^7^0.001^~1~^~AS~^^^1^0.004^0.010^6^0.005^0.009^~2, 3~^~02/01/2011~ -~36621~^~631~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36621~^~645~^2.717^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~646~^6.419^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~652~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36621~^~653~^0.012^7^0.001^~1~^~A~^^^1^0.008^0.017^6^0.008^0.015^~2, 3~^~02/01/2011~ -~36621~^~654~^0.011^7^0.001^~1~^~A~^^^1^0.007^0.016^6^0.008^0.015^~2, 3~^~02/01/2011~ -~36621~^~662~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.001^6^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36621~^~663~^0.033^7^0.024^~1~^~A~^^^1^0.006^0.178^6^-0.026^0.092^~2, 3~^~02/01/2011~ -~36621~^~664~^0.003^7^0.000^~1~^~A~^^^1^0.002^0.004^6^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36621~^~665~^0.040^7^0.006^~1~^~A~^^^1^0.022^0.062^6^0.025^0.055^~2, 3~^~02/01/2011~ -~36621~^~670~^0.010^7^0.002^~1~^~A~^^^1^0.004^0.016^6^0.006^0.014^~2, 3~^~02/01/2011~ -~36621~^~671~^0.003^7^0.001^~1~^~A~^^^1^0.001^0.004^6^0.001^0.004^~1, 2, 3~^~02/01/2011~ -~36621~^~672~^0.007^7^0.001^~1~^~A~^^^1^0.004^0.010^6^0.005^0.009^~2, 3~^~02/01/2011~ -~36621~^~673~^0.049^7^0.009^~1~^~A~^^^1^0.030^0.094^6^0.027^0.070^~2, 3~^~02/01/2011~ -~36621~^~674~^2.561^7^0.334^~1~^~A~^^^1^1.587^3.571^6^1.744^3.378^~2, 3~^~02/01/2011~ -~36621~^~675~^5.545^7^0.713^~1~^~A~^^^1^3.597^8.160^6^3.801^7.289^~2, 3~^~02/01/2011~ -~36621~^~676~^0.004^7^0.001^~1~^~A~^^^1^0.002^0.006^6^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~36621~^~685~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^6^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36621~^~687~^0.009^7^0.001^~1~^~A~^^^1^0.007^0.012^6^0.007^0.011^~2, 3~^~02/01/2011~ -~36621~^~689~^0.005^7^0.000^~1~^~AS~^^^1^0.004^0.006^6^0.004^0.006^~2, 3~^~02/01/2011~ -~36621~^~693~^0.036^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~695~^0.040^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36621~^~697~^0.000^7^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36621~^~851~^0.771^7^0.100^~1~^~A~^^^1^0.522^1.167^6^0.526^1.016^~2, 3~^~02/01/2011~ -~36621~^~852~^0.001^7^0.000^~1~^~A~^^^1^0.000^0.002^6^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36621~^~853~^0.005^7^0.000^~1~^~A~^^^1^0.004^0.005^6^0.004^0.005^~2, 3~^~02/01/2011~ -~36621~^~858~^0.007^7^0.000^~1~^~A~^^^1^0.006^0.008^6^0.006^0.007^~2, 3~^~02/01/2011~ -~36622~^~312~^0.060^12^0.003^~1~^~A~^^^1^0.044^0.079^11^0.053^0.068^~2, 3~^~02/01/2011~ -~36622~^~315~^0.173^12^0.029^~1~^~A~^^^1^0.066^0.375^11^0.108^0.238^~2, 3~^~02/01/2011~ -~36622~^~404~^0.235^6^0.045^~1~^~A~^^^1^0.140^0.420^5^0.119^0.351^~2, 3~^~02/01/2011~ -~36622~^~405~^0.103^6^0.014^~1~^~A~^^^1^0.060^0.150^5^0.068^0.138^~2, 3~^~02/01/2011~ -~36622~^~406~^2.112^6^0.260^~1~^~A~^^^1^1.430^3.200^5^1.442^2.781^~2, 3~^~02/01/2011~ -~36622~^~410~^0.443^3^0.047^~1~^~A~^^^1^0.350^0.500^2^0.241^0.646^~2, 3~^~02/01/2011~ -~36622~^~415~^0.170^6^0.010^~1~^~A~^^^1^0.137^0.200^5^0.145^0.195^~2, 3~^~02/01/2011~ -~36622~^~501~^0.104^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~502~^0.380^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~503~^0.384^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~504~^0.720^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~505~^0.675^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~506~^0.211^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~507~^0.113^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~508~^0.350^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~509~^0.258^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~510~^0.419^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~511~^0.549^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~512~^0.293^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~513~^0.482^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~514~^0.781^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~515~^1.921^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~516~^0.406^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~517~^0.457^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~518~^0.388^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36622~^~605~^0.087^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~606~^2.680^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~607~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36622~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~02/01/2011~ -~36622~^~609~^0.006^12^0.001^~1~^~A~^^^1^0.002^0.010^11^0.004^0.008^~1, 2, 3~^~02/01/2011~ -~36622~^~610~^0.005^12^0.001^~1~^~A~^^^1^0.002^0.016^11^0.002^0.008^~1, 2, 3~^~02/01/2011~ -~36622~^~611~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.006^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36622~^~612~^0.042^12^0.007^~1~^~A~^^^1^0.014^0.108^11^0.026^0.058^~2, 3~^~02/01/2011~ -~36622~^~613~^1.794^12^0.117^~1~^~A~^^^1^1.013^2.432^11^1.535^2.052^~2, 3~^~02/01/2011~ -~36622~^~614~^0.719^12^0.050^~1~^~A~^^^1^0.414^1.034^11^0.608^0.830^~2, 3~^~02/01/2011~ -~36622~^~615~^0.039^12^0.002^~1~^~A~^^^1^0.026^0.050^11^0.034^0.044^~2, 3~^~02/01/2011~ -~36622~^~617~^3.354^12^0.216^~1~^~AS~^^^1^2.001^4.590^11^2.878^3.829^~2, 3~^~02/01/2011~ -~36622~^~618~^6.271^12^0.365^~1~^~AS~^^^1^4.472^8.345^11^5.467^7.074^~2, 3~^~02/01/2011~ -~36622~^~619~^0.787^12^0.085^~1~^~AS~^^^1^0.037^1.179^11^0.599^0.974^~2, 3~^~02/01/2011~ -~36622~^~620~^0.025^12^0.003^~1~^~A~^^^1^0.013^0.046^11^0.019^0.031^~2, 3~^~02/01/2011~ -~36622~^~621~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.002^0.002^~1, 2, 3~^~02/01/2011~ -~36622~^~624~^0.035^12^0.003^~1~^~A~^^^1^0.014^0.048^11^0.029^0.042^~2, 3~^~02/01/2011~ -~36622~^~625~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.009^11^0.000^0.003^~1, 2, 3~^~02/01/2011~ -~36622~^~626~^0.074^12^0.010^~1~^~AS~^^^1^0.020^0.147^11^0.053^0.096^~2, 3~^~02/01/2011~ -~36622~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~02/01/2011~ -~36622~^~628~^0.072^12^0.007^~1~^~A~^^^1^0.030^0.110^11^0.056^0.088^~2, 3~^~02/01/2011~ -~36622~^~629~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~36622~^~630~^0.007^12^0.001^~1~^~AS~^^^1^0.001^0.012^11^0.005^0.009^~2, 3~^~02/01/2011~ -~36622~^~631~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.007^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36622~^~645~^3.527^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~646~^7.116^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~652~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.006^11^0.003^0.005^~2, 3~^~02/01/2011~ -~36622~^~653~^0.018^12^0.001^~1~^~A~^^^1^0.010^0.025^11^0.015^0.021^~2, 3~^~02/01/2011~ -~36622~^~654~^0.012^12^0.001^~1~^~A~^^^1^0.008^0.017^11^0.010^0.014^~2, 3~^~02/01/2011~ -~36622~^~662~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36622~^~663~^0.030^12^0.016^~1~^~A~^^^1^0.006^0.207^11^-0.005^0.066^~2, 3~^~02/01/2011~ -~36622~^~664~^0.003^12^0.000^~1~^~A~^^^1^0.000^0.006^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36622~^~665~^0.052^12^0.005^~1~^~A~^^^1^0.017^0.080^11^0.041^0.064^~2, 3~^~02/01/2011~ -~36622~^~670~^0.014^12^0.001^~1~^~A~^^^1^0.006^0.022^11^0.011^0.016^~2, 3~^~02/01/2011~ -~36622~^~671~^0.003^12^0.000^~1~^~A~^^^1^0.002^0.004^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~36622~^~672~^0.013^12^0.001^~1~^~A~^^^1^0.007^0.026^11^0.010^0.016^~2, 3~^~02/01/2011~ -~36622~^~673~^0.074^12^0.010^~1~^~A~^^^1^0.020^0.146^11^0.052^0.095^~2, 3~^~02/01/2011~ -~36622~^~674~^3.323^12^0.210^~1~^~A~^^^1^1.995^4.569^11^2.861^3.785^~2, 3~^~02/01/2011~ -~36622~^~675~^6.205^12^0.360^~1~^~A~^^^1^4.449^8.249^11^5.412^6.997^~2, 3~^~02/01/2011~ -~36622~^~676~^0.004^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~36622~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36622~^~687~^0.015^12^0.001^~1~^~A~^^^1^0.008^0.022^11^0.012^0.018^~2, 3~^~02/01/2011~ -~36622~^~689~^0.006^12^0.001^~1~^~AS~^^^1^0.004^0.012^11^0.005^0.008^~2, 3~^~02/01/2011~ -~36622~^~693~^0.034^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~695~^0.052^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36622~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36622~^~851~^0.785^12^0.085^~1~^~A~^^^1^0.036^1.178^11^0.598^0.973^~2, 3~^~02/01/2011~ -~36622~^~852~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.004^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~36622~^~853~^0.004^12^0.000^~1~^~A~^^^1^0.003^0.008^11^0.003^0.005^~2, 3~^~02/01/2011~ -~36622~^~858~^0.005^12^0.001^~1~^~A~^^^1^0.003^0.010^11^0.003^0.006^~2, 3~^~02/01/2011~ -~36623~^~312~^0.029^12^0.005^~1~^~A~^^^1^0.018^0.065^11^0.018^0.040^~1, 2, 3~^~02/01/2011~ -~36623~^~315~^0.099^12^0.019^~1~^~A~^^^1^0.041^0.239^11^0.056^0.141^~2, 3~^~02/01/2011~ -~36623~^~404~^0.031^6^0.010^~1~^~A~^^^1^0.015^0.070^5^0.006^0.056^~1, 2, 3~^~02/01/2011~ -~36623~^~405~^0.023^6^0.006^~1~^~A~^^^1^0.015^0.050^5^0.008^0.038^~1, 2, 3~^~02/01/2011~ -~36623~^~406~^1.468^6^0.209^~1~^~A~^^^1^1.040^2.360^5^0.932^2.005^~2, 3~^~02/01/2011~ -~36623~^~410~^0.260^3^0.061^~1~^~A~^^^1^0.180^0.380^2^-0.003^0.523^~2, 3~^~02/01/2011~ -~36623~^~415~^0.175^6^0.014^~1~^~A~^^^1^0.134^0.216^5^0.140^0.211^~2, 3~^~02/01/2011~ -~36623~^~501~^0.083^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~502~^0.268^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~503~^0.280^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~504~^0.502^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~505~^0.475^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~506~^0.163^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~507~^0.077^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~508~^0.252^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~509~^0.218^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~510~^0.307^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~511~^0.424^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~512~^0.184^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~513~^0.356^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~514~^0.604^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~515~^1.380^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~516~^0.237^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~517~^0.355^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~518~^0.252^0^^~1~^~A~^^^^^^^^^^~02/01/2011~ -~36623~^~605~^0.017^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~606~^0.490^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~607~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.006^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36623~^~608~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.000^~1, 2, 3~^~02/01/2011~ -~36623~^~609~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36623~^~610~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.013^11^0.000^0.004^~1, 2, 3~^~02/01/2011~ -~36623~^~611~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36623~^~612~^0.007^12^0.002^~1~^~A~^^^1^0.002^0.033^11^0.002^0.012^~1, 2, 3~^~02/01/2011~ -~36623~^~613~^0.347^12^0.061^~1~^~A~^^^1^0.110^0.861^11^0.212^0.482^~2, 3~^~02/01/2011~ -~36623~^~614~^0.110^12^0.015^~1~^~A~^^^1^0.039^0.201^11^0.078^0.142^~2, 3~^~02/01/2011~ -~36623~^~615~^0.006^12^0.001^~1~^~A~^^^1^0.002^0.011^11^0.004^0.008^~1, 2, 3~^~02/01/2011~ -~36623~^~617~^0.569^12^0.082^~1~^~AS~^^^1^0.187^1.066^11^0.389^0.749^~2, 3~^~02/01/2011~ -~36623~^~618~^1.066^12^0.175^~1~^~AS~^^^1^0.318^2.122^11^0.681^1.450^~2, 3~^~02/01/2011~ -~36623~^~619~^0.129^12^0.023^~1~^~AS~^^^1^0.022^0.286^11^0.078^0.180^~2, 3~^~02/01/2011~ -~36623~^~620~^0.016^12^0.002^~1~^~A~^^^1^0.010^0.031^11^0.013^0.020^~2, 3~^~02/01/2011~ -~36623~^~621~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36623~^~624~^0.006^12^0.001^~1~^~A~^^^1^0.003^0.011^11^0.004^0.008^~2, 3~^~02/01/2011~ -~36623~^~625~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.001^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~626~^0.030^12^0.005^~1~^~AS~^^^1^0.010^0.067^11^0.019^0.040^~2, 3~^~02/01/2011~ -~36623~^~627~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~628~^0.010^12^0.001^~1~^~A~^^^1^0.004^0.017^11^0.007^0.013^~2, 3~^~02/01/2011~ -~36623~^~629~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36623~^~630~^0.001^12^0.000^~1~^~AS~^^^1^0.000^0.002^11^0.000^0.001^~2, 3~^~02/01/2011~ -~36623~^~631~^0.002^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~36623~^~645~^0.613^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~646~^1.226^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~652~^0.001^12^0.000^~1~^~A~^^^1^0.001^0.003^11^0.001^0.002^~1, 2, 3~^~02/01/2011~ -~36623~^~653~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.005^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36623~^~654~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~36623~^~662~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~663~^0.009^12^0.005^~1~^~A~^^^1^0.000^0.069^11^-0.003^0.021^~1, 2, 3~^~02/01/2011~ -~36623~^~664~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~665~^0.007^12^0.002^~1~^~A~^^^1^0.001^0.022^11^0.003^0.011^~1, 2, 3~^~02/01/2011~ -~36623~^~670~^0.002^12^0.001^~1~^~A~^^^1^0.000^0.005^11^0.001^0.003^~1, 2, 3~^~02/01/2011~ -~36623~^~671~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.003^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~672~^0.002^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~36623~^~673~^0.029^12^0.005^~1~^~A~^^^1^0.010^0.066^11^0.019^0.040^~2, 3~^~02/01/2011~ -~36623~^~674~^0.560^12^0.079^~1~^~A~^^^1^0.187^0.997^11^0.387^0.733^~2, 3~^~02/01/2011~ -~36623~^~675~^1.057^12^0.173^~1~^~A~^^^1^0.312^2.095^11^0.676^1.437^~2, 3~^~02/01/2011~ -~36623~^~676~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.001^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~685~^0.001^12^0.000^~1~^~A~^^^1^0.000^0.002^11^0.000^0.001^~1, 2, 3~^~02/01/2011~ -~36623~^~687~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.004^11^0.002^0.003^~1, 2, 3~^~02/01/2011~ -~36623~^~689~^0.003^12^0.000^~1~^~AS~^^^1^0.001^0.007^11^0.002^0.004^~2, 3~^~02/01/2011~ -~36623~^~693~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~695~^0.007^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~ -~36623~^~697~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~851~^0.128^12^0.023^~1~^~A~^^^1^0.021^0.285^11^0.077^0.179^~2, 3~^~02/01/2011~ -~36623~^~852~^0.000^12^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2011~ -~36623~^~853~^0.003^12^0.000^~1~^~A~^^^1^0.001^0.007^11^0.002^0.004^~1, 2, 3~^~02/01/2011~ -~36623~^~858~^0.004^12^0.000^~1~^~A~^^^1^0.002^0.008^11^0.003^0.005^~1, 2, 3~^~02/01/2011~ -~36624~^~312~^0.032^10^0.002^~1~^~A~^^^1^0.025^0.044^9^0.027^0.036^~1, 2, 3~^~04/01/2013~ -~36624~^~315~^0.112^10^0.007^~1~^~A~^^^1^0.074^0.138^9^0.096^0.128^~2, 3~^~04/01/2013~ -~36624~^~404~^0.020^3^0.000^~1~^~A~^^^1^0.020^0.020^^^^~2, 3~^~04/01/2013~ -~36624~^~405~^0.098^3^0.007^~1~^~A~^^^1^0.087^0.110^2^0.070^0.127^~2, 3~^~04/01/2013~ -~36624~^~406~^0.507^3^0.029^~1~^~A~^^^1^0.460^0.560^2^0.382^0.632^~2, 3~^~04/01/2013~ -~36624~^~410~^0.230^2^^~1~^~A~^^^1^0.230^0.230^^^^^~04/01/2013~ -~36624~^~415~^0.086^3^0.003^~1~^~A~^^^1^0.079^0.089^2^0.071^0.100^~2, 3~^~04/01/2013~ -~36624~^~605~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~606~^0.293^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~612~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~613~^0.190^3^0.044^~1~^~A~^^^1^0.144^0.278^2^-0.001^0.380^~2, 3~^~04/01/2013~ -~36624~^~614~^0.082^3^0.023^~1~^~A~^^^1^0.058^0.129^2^-0.019^0.183^~2, 3~^~04/01/2013~ -~36624~^~615~^0.007^3^0.002^~1~^~A~^^^1^0.005^0.010^2^-0.001^0.014^~2, 3~^~04/01/2013~ -~36624~^~617~^0.402^3^0.115^~1~^~AS~^^^1^0.281^0.631^2^-0.091^0.895^~2, 3~^~04/01/2013~ -~36624~^~618~^0.788^3^0.220^~1~^~AS~^^^1^0.565^1.228^2^-0.160^1.735^~2, 3~^~04/01/2013~ -~36624~^~619~^0.133^3^0.031^~1~^~AS~^^^1^0.097^0.194^2^0.001^0.265^~2, 3~^~04/01/2013~ -~36624~^~620~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~624~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.009^2^0.000^0.012^~2, 3~^~04/01/2013~ -~36624~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~626~^0.003^3^0.001^~1~^~AS~^^^1^0.002^0.004^2^0.000^0.006^~2, 3~^~04/01/2013~ -~36624~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~628~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.007^2^-0.001^0.010^~2, 3~^~04/01/2013~ -~36624~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36624~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~645~^0.411^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~646~^0.921^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~653~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36624~^~654~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2013~ -~36624~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~663~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36624~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~665~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.001^0.006^~2, 3~^~04/01/2013~ -~36624~^~670~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36624~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~672~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36624~^~673~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.000^0.006^~1, 2, 3~^~04/01/2013~ -~36624~^~674~^0.401^3^0.114^~1~^~A~^^^1^0.280^0.629^2^-0.091^0.892^~2, 3~^~04/01/2013~ -~36624~^~675~^0.783^3^0.219^~1~^~A~^^^1^0.562^1.222^2^-0.161^1.727^~2, 3~^~04/01/2013~ -~36624~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~685~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.006^2^0.000^0.008^~2, 3~^~04/01/2013~ -~36624~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36624~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36624~^~693~^0.001^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~695~^0.004^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36624~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~851~^0.129^3^0.030^~1~^~A~^^^1^0.094^0.188^2^0.001^0.257^~2, 3~^~04/01/2013~ -~36624~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36624~^~858~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~312~^0.064^12^0.003^~1~^~A~^^^1^0.046^0.078^11^0.058^0.070^~2, 3~^~04/01/2013~ -~36625~^~315~^0.240^12^0.022^~1~^~A~^^^1^0.161^0.432^11^0.192^0.289^~2, 3~^~04/01/2013~ -~36625~^~404~^0.047^3^0.009^~1~^~A~^^^1^0.030^0.060^2^0.009^0.085^~2, 3~^~04/01/2013~ -~36625~^~405~^0.124^3^0.024^~1~^~A~^^^1^0.092^0.170^2^0.022^0.225^~2, 3~^~04/01/2013~ -~36625~^~406~^0.810^3^0.227^~1~^~A~^^^1^0.530^1.260^2^-0.168^1.788^~2, 3~^~04/01/2013~ -~36625~^~410~^0.270^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36625~^~415~^0.068^3^0.006^~1~^~A~^^^1^0.057^0.077^2^0.043^0.092^~2, 3~^~04/01/2013~ -~36625~^~605~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~606~^0.464^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~612~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36625~^~613~^0.328^3^0.046^~1~^~A~^^^1^0.270^0.419^2^0.130^0.526^~2, 3~^~04/01/2013~ -~36625~^~614~^0.111^3^0.018^~1~^~A~^^^1^0.085^0.146^2^0.032^0.189^~2, 3~^~04/01/2013~ -~36625~^~615~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36625~^~617~^0.575^3^0.091^~1~^~AS~^^^1^0.482^0.758^2^0.182^0.968^~2, 3~^~04/01/2013~ -~36625~^~618~^1.142^3^0.218^~1~^~AS~^^^1^0.892^1.577^2^0.202^2.081^~2, 3~^~04/01/2013~ -~36625~^~619~^0.145^3^0.027^~1~^~AS~^^^1^0.108^0.198^2^0.028^0.262^~2, 3~^~04/01/2013~ -~36625~^~620~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.004^2^-0.004^0.007^~1, 2, 3~^~04/01/2013~ -~36625~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36625~^~624~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2013~ -~36625~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~626~^0.007^3^0.002^~1~^~AS~^^^1^0.003^0.009^2^-0.001^0.015^~2, 3~^~04/01/2013~ -~36625~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~628~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.012^~2, 3~^~04/01/2013~ -~36625~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36625~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~645~^0.592^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~646~^1.291^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~652~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~653~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36625~^~654~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36625~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~663~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2013~ -~36625~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~665~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.007^2^0.003^0.009^~2, 3~^~04/01/2013~ -~36625~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36625~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~672~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~673~^0.007^3^0.002^~1~^~A~^^^1^0.003^0.009^2^-0.001^0.015^~2, 3~^~04/01/2013~ -~36625~^~674~^0.573^3^0.091^~1~^~A~^^^1^0.480^0.756^2^0.179^0.967^~2, 3~^~04/01/2013~ -~36625~^~675~^1.134^3^0.218^~1~^~A~^^^1^0.883^1.569^2^0.194^2.074^~2, 3~^~04/01/2013~ -~36625~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36625~^~685~^0.004^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.012^~1, 2, 3~^~04/01/2013~ -~36625~^~687~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36625~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36625~^~693~^0.002^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~695~^0.006^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36625~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~851~^0.141^3^0.026^~1~^~A~^^^1^0.108^0.192^2^0.030^0.252^~2, 3~^~04/01/2013~ -~36625~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36625~^~858~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.003^0.005^~1, 2, 3~^~04/01/2013~ -~36626~^~312~^0.044^23^0.003^~1~^~A~^^^4^0.028^0.060^3^0.033^0.054^~2~^~04/01/2013~ -~36626~^~315~^0.126^23^0.017^~1~^~A~^^^4^0.064^0.212^3^0.071^0.181^~2~^~04/01/2013~ -~36626~^~404~^0.030^3^0.000^~1~^~A~^^^1^0.030^0.030^^^^~2, 3~^~04/01/2013~ -~36626~^~405~^0.120^3^0.000^~1~^~A~^^^1^0.120^0.120^^^^~2, 3~^~04/01/2013~ -~36626~^~406~^1.690^3^0.114^~1~^~A~^^^1^1.470^1.850^2^1.201^2.179^~2, 3~^~04/01/2013~ -~36626~^~410~^0.440^2^^~1~^~A~^^^1^0.430^0.450^1^^^^~04/01/2013~ -~36626~^~415~^0.232^3^0.022^~1~^~A~^^^1^0.196^0.273^2^0.135^0.328^~2, 3~^~04/01/2013~ -~36626~^~501~^0.074^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~502~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~503~^0.306^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~504~^0.517^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~505~^0.454^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~506~^0.163^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~507~^0.095^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~508~^0.264^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~509~^0.205^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~510~^0.322^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~511~^0.422^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~512~^0.179^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~513~^0.374^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~514~^0.701^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~515~^1.620^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~516~^0.264^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~517~^0.258^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~518~^0.295^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36626~^~521~^0.007^2^^~1~^~A~^^^1^0.007^0.007^^^^~1~^~04/01/2013~ -~36626~^~605~^0.014^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~606~^0.770^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~612~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~04/01/2013~ -~36626~^~613~^0.503^3^0.071^~1~^~A~^^^1^0.362^0.581^2^0.199^0.808^~2, 3~^~04/01/2013~ -~36626~^~614~^0.222^3^0.034^~1~^~A~^^^1^0.154^0.258^2^0.075^0.369^~2, 3~^~04/01/2013~ -~36626~^~615~^0.014^3^0.002^~1~^~A~^^^1^0.009^0.016^2^0.003^0.024^~2, 3~^~04/01/2013~ -~36626~^~617~^1.037^3^0.172^~1~^~AS~^^^1^0.693^1.215^2^0.297^1.778^~2, 3~^~04/01/2013~ -~36626~^~618~^1.781^3^0.317^~1~^~AS~^^^1^1.148^2.129^2^0.417^3.145^~2, 3~^~04/01/2013~ -~36626~^~619~^0.262^3^0.043^~1~^~AS~^^^1^0.177^0.314^2^0.077^0.447^~2, 3~^~04/01/2013~ -~36626~^~620~^0.020^3^0.001^~1~^~A~^^^1^0.019^0.022^2^0.016^0.024^~2, 3~^~04/01/2013~ -~36626~^~621~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36626~^~624~^0.012^3^0.002^~1~^~A~^^^1^0.008^0.015^2^0.003^0.022^~2, 3~^~04/01/2013~ -~36626~^~625~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36626~^~626~^0.029^3^0.003^~1~^~AS~^^^1^0.023^0.033^2^0.016^0.042^~2, 3~^~04/01/2013~ -~36626~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~628~^0.018^3^0.003^~1~^~A~^^^1^0.014^0.024^2^0.004^0.031^~2, 3~^~04/01/2013~ -~36626~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2013~ -~36626~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~645~^1.087^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~646~^2.080^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~653~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36626~^~654~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~36626~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~663~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.007^~2, 3~^~04/01/2013~ -~36626~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~665~^0.009^3^0.001^~1~^~A~^^^1^0.006^0.011^2^0.002^0.015^~2, 3~^~04/01/2013~ -~36626~^~670~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2013~ -~36626~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~672~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~36626~^~673~^0.029^3^0.003^~1~^~A~^^^1^0.023^0.033^2^0.016^0.042^~2, 3~^~04/01/2013~ -~36626~^~674~^1.032^3^0.172^~1~^~A~^^^1^0.689^1.210^2^0.294^1.771^~2, 3~^~04/01/2013~ -~36626~^~675~^1.769^3^0.315^~1~^~A~^^^1^1.140^2.117^2^0.413^3.126^~2, 3~^~04/01/2013~ -~36626~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36626~^~685~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.014^0.024^~1, 2, 3~^~04/01/2013~ -~36626~^~687~^0.002^3^0.001^~1~^~A~^^^1^0.001^0.003^2^0.000^0.004^~1, 2, 3~^~04/01/2013~ -~36626~^~689~^0.004^3^0.001^~1~^~AS~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36626~^~693~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36626~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~851~^0.257^3^0.041^~1~^~A~^^^1^0.176^0.300^2^0.082^0.432^~2, 3~^~04/01/2013~ -~36626~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~853~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36626~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36626~^~858~^0.006^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.002^0.010^~2, 3~^~04/01/2013~ -~36629~^~312~^0.042^9^0.002^~1~^~A~^^^1^0.034^0.054^8^0.037^0.048^~2, 3~^~04/01/2013~ -~36629~^~315~^0.087^9^0.030^~1~^~A~^^^1^0.029^0.319^8^0.018^0.157^~2, 3~^~04/01/2013~ -~36629~^~404~^0.043^3^0.003^~1~^~A~^^^1^0.040^0.050^2^0.029^0.058^~2, 3~^~04/01/2013~ -~36629~^~405~^0.220^3^0.020^~1~^~A~^^^1^0.200^0.260^2^0.134^0.306^~2, 3~^~04/01/2013~ -~36629~^~406~^3.590^3^0.559^~1~^~A~^^^1^2.560^4.480^2^1.186^5.994^~2, 3~^~04/01/2013~ -~36629~^~410~^1.000^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~415~^0.230^3^0.021^~1~^~A~^^^1^0.189^0.262^2^0.137^0.322^~2, 3~^~04/01/2013~ -~36629~^~501~^0.113^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~502~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~503~^0.576^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~504~^1.001^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~505~^1.058^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~506~^0.340^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~507~^0.161^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~508~^0.510^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~509~^0.321^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~510~^0.614^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~511~^0.803^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~512~^0.359^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~513~^0.775^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~514~^1.247^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~515~^2.475^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~516~^0.614^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~517~^0.604^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~518~^0.548^0^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~521~^0.100^1^^~1~^~A~^^^^^^^^^^~04/01/2013~ -~36629~^~605~^0.053^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~606~^2.422^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~607~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~609~^0.005^3^0.000^~1~^~A~^^^1^0.004^0.005^2^0.003^0.006^~2, 3~^~04/01/2013~ -~36629~^~610~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~36629~^~611~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2013~ -~36629~^~612~^0.022^3^0.001^~1~^~A~^^^1^0.020^0.025^2^0.016^0.029^~2, 3~^~04/01/2013~ -~36629~^~613~^1.602^3^0.081^~1~^~A~^^^1^1.480^1.755^2^1.253^1.950^~2, 3~^~04/01/2013~ -~36629~^~614~^0.678^3^0.030^~1~^~A~^^^1^0.646^0.739^2^0.548^0.809^~2, 3~^~04/01/2013~ -~36629~^~615~^0.039^3^0.001^~1~^~A~^^^1^0.037^0.040^2^0.035^0.043^~2, 3~^~04/01/2013~ -~36629~^~617~^3.284^3^0.095^~1~^~AS~^^^1^3.175^3.474^2^2.874^3.694^~2, 3~^~04/01/2013~ -~36629~^~618~^5.329^3^0.035^~1~^~AS~^^^1^5.276^5.394^2^5.180^5.478^~2, 3~^~04/01/2013~ -~36629~^~619~^0.647^3^0.011^~1~^~AS~^^^1^0.629^0.667^2^0.599^0.694^~2, 3~^~04/01/2013~ -~36629~^~620~^0.067^3^0.007^~1~^~A~^^^1^0.054^0.079^2^0.036^0.099^~2, 3~^~04/01/2013~ -~36629~^~621~^0.005^3^0.001^~1~^~A~^^^1^0.004^0.006^2^0.002^0.008^~2, 3~^~04/01/2013~ -~36629~^~624~^0.038^3^0.001^~1~^~A~^^^1^0.036^0.040^2^0.033^0.043^~2, 3~^~04/01/2013~ -~36629~^~625~^0.004^3^0.001^~1~^~A~^^^1^0.003^0.005^2^0.002^0.006^~2, 3~^~04/01/2013~ -~36629~^~626~^0.136^3^0.019^~1~^~AS~^^^1^0.106^0.171^2^0.054^0.218^~2, 3~^~04/01/2013~ -~36629~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~628~^0.043^3^0.002^~1~^~A~^^^1^0.041^0.046^2^0.036^0.050^~2, 3~^~04/01/2013~ -~36629~^~629~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2013~ -~36629~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~04/01/2013~ -~36629~^~631~^0.003^3^0.002^~1~^~A~^^^1^0.000^0.006^2^-0.004^0.011^~1, 2, 3~^~04/01/2013~ -~36629~^~645~^3.474^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~646~^6.086^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~652~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2013~ -~36629~^~653~^0.012^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2013~ -~36629~^~654~^0.014^3^0.001^~1~^~A~^^^1^0.013^0.015^2^0.012^0.017^~2, 3~^~04/01/2013~ -~36629~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2013~ -~36629~^~663~^0.018^3^0.003^~1~^~A~^^^1^0.014^0.025^2^0.004^0.033^~2, 3~^~04/01/2013~ -~36629~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~665~^0.034^3^0.003^~1~^~A~^^^1^0.028^0.038^2^0.021^0.048^~2, 3~^~04/01/2013~ -~36629~^~670~^0.011^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~04/01/2013~ -~36629~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.011^~2, 3~^~04/01/2013~ -~36629~^~673~^0.136^3^0.019^~1~^~A~^^^1^0.106^0.171^2^0.054^0.217^~2, 3~^~04/01/2013~ -~36629~^~674~^3.266^3^0.092^~1~^~A~^^^1^3.161^3.449^2^2.870^3.661^~2, 3~^~04/01/2013~ -~36629~^~675~^5.284^3^0.037^~1~^~A~^^^1^5.227^5.354^2^5.123^5.444^~2, 3~^~04/01/2013~ -~36629~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~685~^0.028^3^0.001^~1~^~A~^^^1^0.025^0.030^2^0.022^0.034^~2, 3~^~04/01/2013~ -~36629~^~687~^0.007^3^0.000^~1~^~A~^^^1^0.007^0.007^^^^~2, 3~^~04/01/2013~ -~36629~^~689~^0.010^3^0.001^~1~^~AS~^^^1^0.008^0.011^2^0.006^0.014^~2, 3~^~04/01/2013~ -~36629~^~693~^0.019^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~695~^0.034^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~ -~36629~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~851~^0.619^3^0.011^~1~^~A~^^^1^0.599^0.638^2^0.570^0.667^~2, 3~^~04/01/2013~ -~36629~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~853~^0.010^3^0.001^~1~^~A~^^^1^0.008^0.011^2^0.006^0.014^~2, 3~^~04/01/2013~ -~36629~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2013~ -~36629~^~858~^0.016^3^0.002^~1~^~A~^^^1^0.013^0.018^2^0.009^0.022^~2, 3~^~04/01/2013~ -~36630~^~312~^0.097^12^0.004^~1~^~A~^^^1^0.064^0.115^11^0.088^0.105^~2, 3~^~04/01/2014~ -~36630~^~315~^0.212^12^0.006^~1~^~A~^^^1^0.179^0.244^11^0.198^0.226^~2, 3~^~04/01/2014~ -~36630~^~404~^0.090^6^0.008^~1~^~A~^^^1^0.060^0.120^5^0.069^0.111^~2, 3~^~04/01/2014~ -~36630~^~405~^0.147^6^0.007^~1~^~A~^^^1^0.120^0.170^5^0.128^0.165^~2, 3~^~04/01/2014~ -~36630~^~406~^1.643^6^0.069^~1~^~A~^^^1^1.350^1.840^5^1.466^1.821^~2, 3~^~04/01/2014~ -~36630~^~410~^0.247^4^0.015^~1~^~A~^^^1^0.210^0.280^3^0.200^0.295^~2, 3~^~04/01/2014~ -~36630~^~415~^0.109^6^0.006^~1~^~A~^^^1^0.088^0.125^5^0.095^0.124^~2, 3~^~04/01/2014~ -~36630~^~501~^0.054^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~502~^0.192^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~503~^0.197^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~504~^0.373^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~505~^0.231^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~506~^0.109^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~507~^0.093^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~508~^0.263^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~509~^0.137^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~510~^0.224^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~511~^0.275^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~512~^0.142^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~513~^0.247^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~514~^0.439^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~515~^1.559^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~516~^0.230^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~517~^0.507^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~518~^0.240^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36630~^~521~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~04/01/2014~ -~36630~^~605~^0.066^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~606~^1.062^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~607~^0.007^6^0.004^~1~^~A~^^^1^0.000^0.023^5^-0.003^0.016^~1, 2, 3~^~04/01/2014~ -~36630~^~608~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.014^5^-0.004^0.008^~1, 2, 3~^~04/01/2014~ -~36630~^~609~^0.002^6^0.002^~1~^~A~^^^1^0.000^0.010^5^-0.003^0.006^~1, 2, 3~^~04/01/2014~ -~36630~^~610~^0.005^6^0.004^~1~^~A~^^^1^0.000^0.026^5^-0.006^0.016^~1, 2, 3~^~04/01/2014~ -~36630~^~611~^0.007^6^0.005^~1~^~A~^^^1^0.000^0.032^5^-0.007^0.020^~1, 2, 3~^~04/01/2014~ -~36630~^~612~^0.059^6^0.012^~1~^~A~^^^1^0.028^0.113^5^0.030^0.089^~2, 3~^~04/01/2014~ -~36630~^~613~^0.647^6^0.037^~1~^~A~^^^1^0.529^0.797^5^0.551^0.742^~2, 3~^~04/01/2014~ -~36630~^~614~^0.298^6^0.018^~1~^~A~^^^1^0.211^0.328^5^0.252^0.343^~2, 3~^~04/01/2014~ -~36630~^~615~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.010^5^0.005^0.009^~2, 3~^~04/01/2014~ -~36630~^~617~^1.389^6^0.128^~1~^~AS~^^^1^1.003^1.855^5^1.061^1.718^~2, 3~^~04/01/2014~ -~36630~^~618~^0.448^6^0.024^~1~^~AS~^^^1^0.350^0.515^5^0.386^0.510^~2, 3~^~04/01/2014~ -~36630~^~619~^0.035^6^0.004^~1~^~AS~^^^1^0.025^0.047^5^0.025^0.045^~2, 3~^~04/01/2014~ -~36630~^~620~^0.010^6^0.001^~1~^~A~^^^1^0.006^0.013^5^0.007^0.012^~2, 3~^~04/01/2014~ -~36630~^~621~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~36630~^~624~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.003^5^0.001^0.003^~1, 2, 3~^~04/01/2014~ -~36630~^~625~^0.009^6^0.002^~1~^~A~^^^1^0.000^0.013^5^0.004^0.014^~1, 2, 3~^~04/01/2014~ -~36630~^~626~^0.060^6^0.005^~1~^~AS~^^^1^0.038^0.073^5^0.047^0.073^~2, 3~^~04/01/2014~ -~36630~^~627~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~628~^0.017^6^0.002^~1~^~A~^^^1^0.011^0.021^5^0.013^0.020^~2, 3~^~04/01/2014~ -~36630~^~629~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.002^~1, 2, 3~^~04/01/2014~ -~36630~^~630~^0.001^6^0.000^~1~^~AS~^^^1^0.000^0.002^5^0.000^0.001^~2, 3~^~04/01/2014~ -~36630~^~631~^0.002^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.001^0.003^~1, 2, 3~^~04/01/2014~ -~36630~^~645~^1.486^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~646~^0.512^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~652~^0.008^6^0.001^~1~^~A~^^^1^0.005^0.013^5^0.006^0.011^~2, 3~^~04/01/2014~ -~36630~^~653~^0.016^6^0.001^~1~^~A~^^^1^0.011^0.020^5^0.013^0.019^~2, 3~^~04/01/2014~ -~36630~^~654~^0.002^6^0.000^~1~^~A~^^^1^0.001^0.002^5^0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36630~^~662~^0.004^6^0.000^~1~^~A~^^^1^0.002^0.005^5^0.003^0.005^~1, 2, 3~^~04/01/2014~ -~36630~^~663~^0.054^6^0.005^~1~^~A~^^^1^0.041^0.070^5^0.042^0.067^~2, 3~^~04/01/2014~ -~36630~^~664~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~665~^0.008^6^0.001^~1~^~A~^^^1^0.004^0.010^5^0.006^0.010^~2, 3~^~04/01/2014~ -~36630~^~670~^0.007^6^0.001^~1~^~A~^^^1^0.005^0.008^5^0.006^0.009^~2, 3~^~04/01/2014~ -~36630~^~671~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~672~^0.007^6^0.001^~1~^~A~^^^1^0.003^0.010^5^0.004^0.010^~2, 3~^~04/01/2014~ -~36630~^~673~^0.056^6^0.005^~1~^~A~^^^1^0.036^0.069^5^0.044^0.069^~2, 3~^~04/01/2014~ -~36630~^~674~^1.335^6^0.126^~1~^~A~^^^1^0.939^1.785^5^1.010^1.660^~2, 3~^~04/01/2014~ -~36630~^~675~^0.433^6^0.023^~1~^~A~^^^1^0.341^0.497^5^0.373^0.493^~2, 3~^~04/01/2014~ -~36630~^~676~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.002^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~36630~^~685~^0.001^6^0.000^~1~^~A~^^^1^0.000^0.001^5^0.000^0.001^~1, 2, 3~^~04/01/2014~ -~36630~^~687~^0.011^6^0.001^~1~^~A~^^^1^0.006^0.015^5^0.007^0.014^~2, 3~^~04/01/2014~ -~36630~^~689~^0.007^6^0.002^~1~^~AS~^^^1^0.003^0.013^5^0.002^0.011^~2, 3~^~04/01/2014~ -~36630~^~693~^0.058^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36630~^~697~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~851~^0.035^6^0.004^~1~^~A~^^^1^0.025^0.046^5^0.025^0.044^~2, 3~^~04/01/2014~ -~36630~^~852~^0.004^6^0.002^~1~^~A~^^^1^0.000^0.009^5^-0.001^0.008^~1, 2, 3~^~04/01/2014~ -~36630~^~853~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.004^5^0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36630~^~856~^0.000^6^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36630~^~858~^0.003^6^0.000^~1~^~A~^^^1^0.002^0.003^5^0.002^0.003^~1, 2, 3~^~04/01/2014~ -~36631~^~312~^0.098^6^0.004^~1~^~A~^^^1^0.085^0.115^5^0.087^0.109^~2, 3~^~04/01/2014~ -~36631~^~315~^0.221^6^0.004^~1~^~A~^^^1^0.207^0.233^5^0.211^0.231^~2, 3~^~04/01/2014~ -~36631~^~404~^0.090^3^0.006^~1~^~A~^^^1^0.080^0.100^2^0.065^0.115^~2, 3~^~04/01/2014~ -~36631~^~405~^0.143^3^0.003^~1~^~A~^^^1^0.140^0.150^2^0.129^0.158^~2, 3~^~04/01/2014~ -~36631~^~406~^1.690^3^0.040^~1~^~A~^^^1^1.640^1.770^2^1.516^1.864^~2, 3~^~04/01/2014~ -~36631~^~410~^0.250^2^^~1~^~A~^^^1^0.240^0.260^1^^^^~04/01/2014~ -~36631~^~415~^0.098^3^0.005^~1~^~A~^^^1^0.088^0.103^2^0.077^0.119^~2, 3~^~04/01/2014~ -~36631~^~501~^0.061^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~502~^0.204^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~503~^0.214^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~504~^0.398^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~505~^0.235^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~506~^0.122^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~507~^0.102^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~508~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~509~^0.143^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~510~^0.245^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~511~^0.286^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~512~^0.153^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~513~^0.255^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~514~^0.459^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~515~^1.704^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~516~^0.245^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~517~^0.571^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~518~^0.265^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36631~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36631~^~605~^0.064^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~606~^1.024^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~607~^0.005^3^0.003^~1~^~A~^^^1^0.000^0.008^2^-0.006^0.017^~1, 2, 3~^~04/01/2014~ -~36631~^~608~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~609~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~610~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~611~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~612~^0.053^3^0.000^~1~^~A~^^^1^0.052^0.053^2^0.051^0.054^~2, 3~^~04/01/2014~ -~36631~^~613~^0.620^3^0.009^~1~^~A~^^^1^0.603^0.635^2^0.580^0.660^~2, 3~^~04/01/2014~ -~36631~^~614~^0.312^3^0.004^~1~^~A~^^^1^0.304^0.317^2^0.294^0.329^~2, 3~^~04/01/2014~ -~36631~^~615~^0.006^3^0.000^~1~^~A~^^^1^0.005^0.006^2^0.004^0.007^~2, 3~^~04/01/2014~ -~36631~^~617~^1.131^3^0.064^~1~^~AS~^^^1^1.003^1.198^2^0.856^1.406^~2, 3~^~04/01/2014~ -~36631~^~618~^0.465^3^0.020^~1~^~AS~^^^1^0.427^0.494^2^0.379^0.550^~2, 3~^~04/01/2014~ -~36631~^~619~^0.039^3^0.006^~1~^~AS~^^^1^0.026^0.047^2^0.011^0.066^~2, 3~^~04/01/2014~ -~36631~^~620~^0.009^3^0.001^~1~^~A~^^^1^0.007^0.010^2^0.005^0.013^~2, 3~^~04/01/2014~ -~36631~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.001^0.003^~1, 2, 3~^~04/01/2014~ -~36631~^~624~^0.002^3^0.000^~1~^~A~^^^1^0.001^0.002^2^0.000^0.003^~1, 2, 3~^~04/01/2014~ -~36631~^~625~^0.012^3^0.001^~1~^~A~^^^1^0.011^0.013^2^0.009^0.015^~2, 3~^~04/01/2014~ -~36631~^~626~^0.068^3^0.004^~1~^~AS~^^^1^0.061^0.073^2^0.052^0.083^~2, 3~^~04/01/2014~ -~36631~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~628~^0.018^3^0.001^~1~^~A~^^^1^0.016^0.019^2^0.014^0.022^~2, 3~^~04/01/2014~ -~36631~^~629~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36631~^~630~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.001^2^-0.001^0.002^~2, 3~^~04/01/2014~ -~36631~^~631~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~645~^1.242^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~646~^0.530^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~652~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~04/01/2014~ -~36631~^~653~^0.017^3^0.002^~1~^~A~^^^1^0.014^0.020^2^0.010^0.025^~2, 3~^~04/01/2014~ -~36631~^~654~^0.001^3^0.000^~1~^~A~^^^1^0.001^0.001^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~662~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2014~ -~36631~^~663~^0.052^3^0.006^~1~^~A~^^^1^0.046^0.064^2^0.026^0.078^~2, 3~^~04/01/2014~ -~36631~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~665~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.006^0.011^~2, 3~^~04/01/2014~ -~36631~^~670~^0.007^3^0.001^~1~^~A~^^^1^0.006^0.008^2^0.004^0.010^~2, 3~^~04/01/2014~ -~36631~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~672~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2014~ -~36631~^~673~^0.064^3^0.003^~1~^~A~^^^1^0.058^0.069^2^0.050^0.078^~2, 3~^~04/01/2014~ -~36631~^~674~^1.079^3^0.070^~1~^~A~^^^1^0.939^1.152^2^0.778^1.380^~2, 3~^~04/01/2014~ -~36631~^~675~^0.449^3^0.021^~1~^~A~^^^1^0.409^0.478^2^0.360^0.537^~2, 3~^~04/01/2014~ -~36631~^~676~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36631~^~685~^0.001^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36631~^~687~^0.013^3^0.001^~1~^~A~^^^1^0.012^0.015^2^0.009^0.017^~2, 3~^~04/01/2014~ -~36631~^~689~^0.003^3^0.000^~1~^~AS~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2014~ -~36631~^~693~^0.056^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~695~^0.009^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36631~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~851~^0.038^3^0.006^~1~^~A~^^^1^0.026^0.046^2^0.012^0.064^~2, 3~^~04/01/2014~ -~36631~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36631~^~853~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~04/01/2014~ -~36631~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36631~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36632~^~312~^0.088^3^0.014^~1~^~A~^^^1^0.064^0.113^2^0.027^0.150^~2, 3~^~04/01/2014~ -~36632~^~315~^0.187^3^0.004^~1~^~A~^^^1^0.179^0.194^2^0.168^0.206^~2, 3~^~04/01/2014~ -~36632~^~404~^0.090^3^0.017^~1~^~A~^^^1^0.060^0.120^2^0.015^0.164^~2, 3~^~04/01/2014~ -~36632~^~405~^0.150^3^0.015^~1~^~A~^^^1^0.120^0.170^2^0.084^0.216^~2, 3~^~04/01/2014~ -~36632~^~406~^1.597^3^0.141^~1~^~A~^^^1^1.350^1.840^2^0.988^2.205^~2, 3~^~04/01/2014~ -~36632~^~410~^0.280^1^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~415~^0.121^3^0.002^~1~^~A~^^^1^0.118^0.125^2^0.112^0.130^~2, 3~^~04/01/2014~ -~36632~^~501~^0.049^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~502~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~503~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~504~^0.354^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~505~^0.231^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~506~^0.098^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~507~^0.085^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~508~^0.244^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~509~^0.141^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~510~^0.208^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~511~^0.268^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~512~^0.134^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~513~^0.284^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~514~^0.427^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~515~^1.440^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~516~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~517~^0.452^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~518~^0.220^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~36632~^~521~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~ -~36632~^~605~^0.068^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~606~^1.100^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~607~^0.008^3^0.008^~1~^~A~^^^1^0.000^0.023^2^-0.025^0.041^~1, 2, 3~^~04/01/2014~ -~36632~^~608~^0.005^3^0.005^~1~^~A~^^^1^0.000^0.014^2^-0.015^0.025^~1, 2, 3~^~04/01/2014~ -~36632~^~609~^0.003^3^0.003^~1~^~A~^^^1^0.000^0.010^2^-0.011^0.017^~1, 2, 3~^~04/01/2014~ -~36632~^~610~^0.011^3^0.008^~1~^~A~^^^1^0.000^0.026^2^-0.023^0.044^~1, 2, 3~^~04/01/2014~ -~36632~^~611~^0.013^3^0.010^~1~^~A~^^^1^0.000^0.032^2^-0.028^0.055^~1, 2, 3~^~04/01/2014~ -~36632~^~612~^0.066^3^0.025^~1~^~A~^^^1^0.028^0.113^2^-0.041^0.173^~2, 3~^~04/01/2014~ -~36632~^~613~^0.674^3^0.078^~1~^~A~^^^1^0.529^0.797^2^0.338^1.010^~2, 3~^~04/01/2014~ -~36632~^~614~^0.284^3^0.037^~1~^~A~^^^1^0.211^0.328^2^0.126^0.442^~2, 3~^~04/01/2014~ -~36632~^~615~^0.009^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2014~ -~36632~^~617~^1.648^3^0.104^~1~^~AS~^^^1^1.540^1.855^2^1.201^2.094^~2, 3~^~04/01/2014~ -~36632~^~618~^0.431^3^0.048^~1~^~AS~^^^1^0.350^0.515^2^0.226^0.636^~2, 3~^~04/01/2014~ -~36632~^~619~^0.032^3^0.005^~1~^~AS~^^^1^0.025^0.042^2^0.009^0.054^~2, 3~^~04/01/2014~ -~36632~^~620~^0.010^3^0.002^~1~^~A~^^^1^0.006^0.013^2^0.001^0.020^~2, 3~^~04/01/2014~ -~36632~^~621~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36632~^~624~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36632~^~625~^0.007^3^0.003^~1~^~A~^^^1^0.000^0.011^2^-0.008^0.021^~1, 2, 3~^~04/01/2014~ -~36632~^~626~^0.052^3^0.007^~1~^~AS~^^^1^0.038^0.063^2^0.020^0.084^~2, 3~^~04/01/2014~ -~36632~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~628~^0.015^3^0.003^~1~^~A~^^^1^0.011^0.021^2^0.003^0.028^~2, 3~^~04/01/2014~ -~36632~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36632~^~630~^0.001^3^0.001^~1~^~AS~^^^1^0.000^0.002^2^-0.002^0.004^~2, 3~^~04/01/2014~ -~36632~^~631~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36632~^~645~^1.731^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~646~^0.494^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~652~^0.009^3^0.002^~1~^~A~^^^1^0.005^0.013^2^-0.001^0.019^~2, 3~^~04/01/2014~ -~36632~^~653~^0.014^3^0.002^~1~^~A~^^^1^0.011^0.016^2^0.007^0.022^~2, 3~^~04/01/2014~ -~36632~^~654~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~662~^0.004^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~04/01/2014~ -~36632~^~663~^0.057^3^0.008^~1~^~A~^^^1^0.041^0.070^2^0.020^0.093^~2, 3~^~04/01/2014~ -~36632~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~665~^0.008^3^0.002^~1~^~A~^^^1^0.004^0.010^2^0.000^0.015^~2, 3~^~04/01/2014~ -~36632~^~670~^0.007^3^0.001^~1~^~A~^^^1^0.005^0.008^2^0.003^0.011^~2, 3~^~04/01/2014~ -~36632~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~672~^0.006^3^0.002^~1~^~A~^^^1^0.003^0.009^2^-0.001^0.013^~2, 3~^~04/01/2014~ -~36632~^~673~^0.049^3^0.007^~1~^~A~^^^1^0.036^0.058^2^0.020^0.077^~2, 3~^~04/01/2014~ -~36632~^~674~^1.591^3^0.097^~1~^~A~^^^1^1.489^1.785^2^1.173^2.008^~2, 3~^~04/01/2014~ -~36632~^~675~^0.417^3^0.045^~1~^~A~^^^1^0.341^0.497^2^0.222^0.611^~2, 3~^~04/01/2014~ -~36632~^~676~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~04/01/2014~ -~36632~^~685~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.001^2^-0.001^0.002^~1, 2, 3~^~04/01/2014~ -~36632~^~687~^0.008^3^0.001^~1~^~A~^^^1^0.006^0.010^2^0.003^0.013^~2, 3~^~04/01/2014~ -~36632~^~689~^0.010^3^0.002^~1~^~AS~^^^1^0.007^0.013^2^0.003^0.017^~2, 3~^~04/01/2014~ -~36632~^~693~^0.060^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~ -~36632~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~851~^0.031^3^0.005^~1~^~A~^^^1^0.025^0.041^2^0.010^0.052^~2, 3~^~04/01/2014~ -~36632~^~852~^0.007^3^0.002^~1~^~A~^^^1^0.004^0.009^2^0.000^0.013^~2, 3~^~04/01/2014~ -~36632~^~853~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~04/01/2014~ -~36632~^~856~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2014~ -~36632~^~858~^0.003^3^0.000^~1~^~A~^^^1^0.002^0.003^2^0.001^0.004^~1, 2, 3~^~04/01/2014~ -~36633~^~312~^0.051^12^0.003^~1~^~A~^^^1^0.036^0.067^11^0.045^0.058^~2, 3~^~06/01/2015~ -~36633~^~315~^0.083^12^0.011^~1~^~A~^^^1^0.037^0.173^11^0.058^0.107^~2, 3~^~06/01/2015~ -~36633~^~404~^0.040^2^^~1~^~A~^^^1^0.030^0.050^1^^^^~06/01/2015~ -~36633~^~405~^0.225^2^^~1~^~A~^^^1^0.210^0.240^1^^^^~06/01/2015~ -~36633~^~406~^3.960^2^^~1~^~A~^^^1^3.370^4.550^1^^^^~06/01/2015~ -~36633~^~415~^0.267^2^^~1~^~A~^^^1^0.243^0.292^1^^^^~06/01/2015~ -~36633~^~605~^0.045^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~606~^2.410^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~607~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~36633~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~36633~^~609~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.007^10^-0.001^0.002^~1, 2, 3~^~06/01/2015~ -~36633~^~610~^0.005^11^0.002^~1~^~A~^^^1^0.000^0.016^10^0.001^0.010^~1, 2, 3~^~06/01/2015~ -~36633~^~611~^0.002^11^0.001^~1~^~A~^^^1^0.000^0.008^10^0.000^0.004^~1, 2, 3~^~06/01/2015~ -~36633~^~612~^0.021^11^0.001^~1~^~A~^^^1^0.013^0.028^10^0.018^0.024^~2, 3~^~06/01/2015~ -~36633~^~613~^1.651^11^0.154^~1~^~A~^^^1^0.927^2.791^10^1.308^1.993^~2, 3~^~06/01/2015~ -~36633~^~614~^0.632^11^0.087^~1~^~A~^^^1^0.358^1.428^10^0.438^0.826^~2, 3~^~06/01/2015~ -~36633~^~615~^0.030^11^0.006^~1~^~A~^^^1^0.000^0.064^10^0.018^0.042^~1, 2, 3~^~06/01/2015~ -~36633~^~617~^3.342^11^0.244^~1~^~AS~^^^1^2.174^5.276^10^2.797^3.886^~2, 3~^~06/01/2015~ -~36633~^~618~^5.966^11^0.684^~1~^~AS~^^^1^3.331^10.884^10^4.442^7.490^~2, 3~^~06/01/2015~ -~36633~^~619~^0.812^11^0.103^~1~^~AS~^^^1^0.445^1.536^10^0.584^1.041^~2, 3~^~06/01/2015~ -~36633~^~620~^0.060^11^0.004^~1~^~A~^^^1^0.041^0.083^10^0.051^0.070^~2, 3~^~06/01/2015~ -~36633~^~621~^0.005^11^0.000^~1~^~A~^^^1^0.003^0.006^10^0.004^0.005^~2, 3~^~06/01/2015~ -~36633~^~624~^0.036^11^0.004^~1~^~A~^^^1^0.022^0.063^10^0.028^0.044^~2, 3~^~06/01/2015~ -~36633~^~625~^0.003^11^0.000^~1~^~A~^^^1^0.000^0.005^10^0.002^0.004^~1, 2, 3~^~06/01/2015~ -~36633~^~626~^0.113^11^0.014^~1~^~AS~^^^1^0.040^0.163^10^0.082^0.143^~2, 3~^~06/01/2015~ -~36633~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~06/01/2015~ -~36633~^~628~^0.076^11^0.005^~1~^~A~^^^1^0.054^0.116^10^0.064^0.088^~2, 3~^~06/01/2015~ -~36633~^~629~^0.003^11^0.001^~1~^~A~^^^1^0.001^0.007^10^0.002^0.004^~1, 2, 3~^~06/01/2015~ -~36633~^~630~^0.005^11^0.001^~1~^~AS~^^^1^0.002^0.010^10^0.003^0.007^~2, 3~^~06/01/2015~ -~36633~^~631~^0.006^11^0.000^~1~^~A~^^^1^0.003^0.008^10^0.005^0.007^~2, 3~^~06/01/2015~ -~36633~^~645~^3.546^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~646~^6.885^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~652~^0.005^11^0.000^~1~^~A~^^^1^0.004^0.006^10^0.004^0.005^~2, 3~^~06/01/2015~ -~36633~^~653~^0.013^11^0.001^~1~^~A~^^^1^0.007^0.020^10^0.010^0.016^~2, 3~^~06/01/2015~ -~36633~^~654~^0.014^11^0.001^~1~^~A~^^^1^0.007^0.024^10^0.011^0.017^~2, 3~^~06/01/2015~ -~36633~^~662~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~06/01/2015~ -~36633~^~663~^0.014^11^0.002^~1~^~A~^^^1^0.000^0.035^10^0.009^0.020^~1, 2, 3~^~06/01/2015~ -~36633~^~664~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.004^10^0.002^0.003^~1, 2, 3~^~06/01/2015~ -~36633~^~665~^0.028^11^0.003^~1~^~A~^^^1^0.014^0.045^10^0.021^0.035^~2, 3~^~06/01/2015~ -~36633~^~670~^0.013^11^0.002^~1~^~A~^^^1^0.007^0.026^10^0.009^0.016^~2, 3~^~06/01/2015~ -~36633~^~671~^0.001^11^0.001^~1~^~A~^^^1^0.000^0.006^10^0.000^0.002^~1, 2, 3~^~06/01/2015~ -~36633~^~672~^0.009^11^0.001^~1~^~A~^^^1^0.007^0.014^10^0.008^0.011^~2, 3~^~06/01/2015~ -~36633~^~673~^0.112^11^0.013^~1~^~A~^^^1^0.040^0.162^10^0.082^0.142^~2, 3~^~06/01/2015~ -~36633~^~674~^3.328^11^0.243^~1~^~A~^^^1^2.162^5.241^10^2.787^3.868^~2, 3~^~06/01/2015~ -~36633~^~675~^5.925^11^0.680^~1~^~A~^^^1^3.310^10.813^10^4.410^7.441^~2, 3~^~06/01/2015~ -~36633~^~676~^0.002^11^0.001^~1~^~A~^^^1^0.001^0.007^10^0.001^0.004^~1, 2, 3~^~06/01/2015~ -~36633~^~685~^0.039^11^0.004^~1~^~A~^^^1^0.021^0.073^10^0.029^0.049^~2, 3~^~06/01/2015~ -~36633~^~687~^0.007^11^0.001^~1~^~A~^^^1^0.005^0.012^10^0.005^0.009^~2, 3~^~06/01/2015~ -~36633~^~689~^0.010^11^0.001^~1~^~AS~^^^1^0.006^0.014^10^0.008^0.012^~2, 3~^~06/01/2015~ -~36633~^~693~^0.017^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~695~^0.028^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~ -~36633~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.001^10^0.000^0.001^~1, 2, 3~^~06/01/2015~ -~36633~^~851~^0.774^11^0.098^~1~^~A~^^^1^0.416^1.463^10^0.554^0.993^~2, 3~^~06/01/2015~ -~36633~^~852~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.002^10^0.000^0.001^~1, 2, 3~^~06/01/2015~ -~36633~^~853~^0.009^11^0.001^~1~^~A~^^^1^0.006^0.013^10^0.008^0.011^~2, 3~^~06/01/2015~ -~36633~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~06/01/2015~ -~36633~^~858~^0.014^11^0.001^~1~^~A~^^^1^0.008^0.019^10^0.011^0.016^~2, 3~^~06/01/2015~ -~42040~^~312~^0.026^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~404~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~405~^0.010^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~406~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~415~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42040~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42040~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42055~^~312~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~315~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~404~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~405~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~406~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~415~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~42055~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42055~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~42063~^~312~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~404~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~405~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~406~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~415~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~606~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~42063~^~645~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42063~^~646~^0.000^0^^~7~^^^^^^^^^^^~10/01/2006~ -~42074~^~312~^0.076^1^^~1~^^^^^^^^^^^~03/01/2009~ -~42074~^~315~^0.078^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~404~^0.062^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~405~^0.261^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~406~^0.175^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~410~^0.479^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~415~^0.043^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~606~^5.528^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~607~^0.075^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~608~^0.063^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~609~^0.259^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~610~^0.245^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~611~^1.453^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~612~^0.761^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~613~^1.567^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~614~^1.042^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~615~^0.035^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~617~^2.594^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~618~^1.239^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~619~^0.118^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~624~^0.004^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~625~^0.006^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~626~^0.067^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~645~^2.700^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~646~^1.359^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42074~^~652~^0.014^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~653~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42074~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42074~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42074~^~687~^0.002^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~42074~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42074~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42074~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~ -~42116~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~404~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~405~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~406~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~415~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~606~^2.115^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~607~^0.007^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~608~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~609~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~610~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~611~^0.006^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~612~^0.035^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~613~^1.475^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~614~^0.549^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~617~^3.197^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~618~^7.039^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~619~^0.941^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~626~^0.032^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~628~^0.028^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~645~^3.273^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42116~^~646~^7.994^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42117~^~312~^0.030^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~404~^0.030^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~405~^0.360^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~406~^0.080^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~415~^0.070^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~606~^5.815^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~607~^0.035^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~608~^0.018^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~609~^0.012^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~610~^0.025^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~611~^0.027^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~612~^0.131^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~613~^3.780^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~614~^1.789^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~617~^14.090^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~618~^10.439^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~619~^0.179^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~620~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~621~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~626~^0.025^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~627~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~628~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~629~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~630~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~631~^0.000^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~645~^14.127^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42117~^~646~^10.615^0^^~4~^^^^^^^^^^^~08/01/2007~ -~42119~^~312~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~404~^0.030^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~405~^0.100^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~406~^0.270^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~415~^0.120^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42119~^~606~^0.517^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~607~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~608~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~609~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~610~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~611~^0.027^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~612~^0.084^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~613~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~614~^0.079^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~617~^0.182^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~618~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~619~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~626~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~645~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42119~^~646~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~312~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~404~^0.040^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~405~^0.100^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~406~^0.160^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~415~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42120~^~606~^0.517^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~607~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~608~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~609~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~610~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~611~^0.027^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~612~^0.084^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~613~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~614~^0.079^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~617~^0.182^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~618~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~619~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~626~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~645~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42120~^~646~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42128~^~312~^0.110^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~404~^0.050^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~405~^0.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~406~^3.530^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~415~^0.230^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~606~^0.500^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~ -~42128~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~611~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~612~^0.026^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~613~^0.674^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~614~^0.379^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~617~^0.711^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~618~^0.921^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~619~^0.037^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~620~^0.137^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~621~^0.032^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~626~^0.126^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~628~^0.016^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~630~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~631~^0.021^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42128~^~645~^0.864^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42128~^~646~^1.148^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~42129~^~312~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~404~^0.170^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~405~^0.130^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~406~^2.540^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~415~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~606~^7.308^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~610~^0.041^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~611~^0.027^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~612~^0.423^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~613~^4.282^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~614~^2.527^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~617~^8.202^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~618~^1.359^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~619~^0.280^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~626~^0.943^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~645~^9.145^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42129~^~646~^1.639^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42131~^~312~^0.008^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~404~^0.050^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~405~^0.260^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~406~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~415~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~606~^0.597^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~613~^0.254^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~614~^0.332^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~617~^0.326^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~618~^0.028^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~619~^0.001^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~626~^0.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~645~^0.329^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42131~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42135~^~312~^0.010^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~404~^0.020^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~405~^0.090^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~406~^0.100^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~415~^0.020^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~606~^11.273^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~609~^0.331^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~610~^0.466^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~611~^4.575^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~612~^1.946^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~613~^1.599^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~614~^2.371^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~617~^0.714^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~618~^0.155^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~619~^0.114^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~626~^0.124^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42135~^~645~^0.838^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42135~^~646~^0.269^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42136~^~312~^0.010^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~404~^0.000^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~405~^0.000^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~406~^0.000^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~415~^0.000^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~606~^3.800^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~613~^1.115^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~614~^2.690^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~617~^11.500^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~618~^0.198^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~619~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42136~^~645~^11.500^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42136~^~646~^0.198^0^^~1~^^^^^^^^^^^~05/01/2005~ -~42137~^~312~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~404~^0.000^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~405~^0.000^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~406~^0.000^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~415~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~606~^10.527^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~607~^0.128^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~608~^0.048^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~609~^0.026^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~610~^0.064^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~611~^0.087^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~612~^0.352^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~613~^7.062^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~614~^2.570^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~617~^14.386^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~618~^29.006^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~619~^3.861^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~620~^0.037^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~621~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~626~^0.229^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~628~^0.120^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~629~^0.001^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~630~^0.001^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42137~^~645~^14.840^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42137~^~646~^32.972^1^^~1~^^^^^^^^^^^~02/01/2009~ -~42138~^~312~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~404~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~405~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~406~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~415~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~606~^4.618^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~613~^3.150^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~614~^1.264^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~617~^7.707^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~618~^17.372^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~619~^2.128^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~645~^7.707^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42138~^~646~^19.500^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42139~^~312~^0.323^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~404~^0.100^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~405~^0.210^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~406~^3.290^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~415~^0.110^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~606~^17.065^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~607~^0.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~608~^0.040^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~609~^0.421^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~610~^0.492^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~611~^5.518^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~612~^2.157^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~613~^4.434^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~614~^3.933^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~617~^6.411^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~618~^1.836^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~619~^0.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~620~^0.010^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~621~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~626~^0.120^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~627~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~628~^0.030^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~629~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~630~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~631~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42139~^~645~^6.561^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42139~^~646~^1.906^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42140~^~312~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~315~^0.020^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~404~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~405~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~406~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~42140~^~415~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~606~^2.880^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~612~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~613~^2.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~614~^0.760^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~617~^4.560^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~618~^10.200^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~619~^1.360^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~626~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~628~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~645~^4.660^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42140~^~646~^11.580^0^^~8~^^^^^^^^^^^~05/01/2005~ -~42141~^~312~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~404~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~405~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~406~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~415~^0.000^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~606~^0.896^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~612~^0.018^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~613~^0.455^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~614~^0.424^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~617~^2.030^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~618~^0.399^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~619~^0.021^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42141~^~645~^2.030^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42141~^~646~^0.420^0^^~1~^^^^^^^^^^^~03/01/2007~ -~42148~^~312~^0.452^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~315~^0.963^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~404~^0.152^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~405~^0.074^1^^~8~^~LC~^^^^^^^^^^~01/01/2006~ -~42148~^~406~^4.329^1^^~8~^~LC~^^^^^^^^^^~01/01/2006~ -~42148~^~410~^0.603^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~415~^0.095^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~605~^0.210^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~606~^18.485^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~ -~42148~^~607~^0.153^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~608~^0.101^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~609~^0.626^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~610~^0.537^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~611~^6.611^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~612~^2.465^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~613~^2.954^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~614~^4.904^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~615~^0.088^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~617~^4.314^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~618~^0.515^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~619~^0.026^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~624~^0.005^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~625~^0.042^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~626~^0.079^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~628~^0.002^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~645~^4.448^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~646~^0.542^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~652~^0.019^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~653~^0.019^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~687~^0.012^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42148~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~ -~42150~^~312~^0.050^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~404~^1.560^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~405~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~406~^0.000^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42150~^~415~^0.020^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~606~^1.034^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~607~^0.049^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~608~^0.035^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~609~^0.020^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~610~^0.044^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~611~^0.054^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~612~^0.167^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~613~^0.438^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~614~^0.158^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~617~^0.364^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~618~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~619~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~626~^0.035^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~645~^0.438^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42150~^~646~^0.044^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42151~^~312~^0.001^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42151~^~404~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~405~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~406~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~415~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~606~^17.880^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~607~^0.710^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~608~^0.460^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~609~^0.300^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~610~^0.660^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~611~^0.760^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~612~^2.130^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~613~^9.020^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~614~^4.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~617~^20.160^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~618~^10.690^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~619~^0.460^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~626~^0.410^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~645~^20.770^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42151~^~646~^11.150^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42153~^~312~^0.013^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~404~^0.010^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~405~^0.040^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~406~^0.040^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~415~^0.020^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~606~^0.628^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~607~^0.014^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~608~^0.008^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~609~^0.005^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~610~^0.011^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~611~^0.012^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~612~^0.051^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~613~^0.350^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~614~^0.167^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~617~^1.063^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~618~^0.789^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~619~^0.064^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~620~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~621~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~626~^0.020^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42153~^~627~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~628~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~629~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~630~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~631~^0.000^0^^~7~^^^^^^^^^^^~07/01/2004~ -~42153~^~645~^1.092^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42153~^~646~^0.855^0^^~1~^^^^^^^^^^^~07/01/2004~ -~42155~^~312~^0.032^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~404~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~405~^0.360^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~406~^0.090^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~415~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~606~^14.040^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~607~^1.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~608~^0.120^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~609~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~610~^0.480^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~611~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~612~^2.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~613~^6.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~614~^2.280^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~617~^4.560^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~618~^0.600^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~619~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~626~^0.840^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42155~^~645~^5.640^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42155~^~646~^0.840^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42157~^~312~^0.000^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~404~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~405~^0.060^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~406~^0.040^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~415~^0.020^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~606~^0.494^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~607~^0.007^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~608~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~609~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~610~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~611~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~612~^0.025^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~613~^0.313^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~614~^0.122^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~617~^0.620^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~618~^1.271^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~619~^0.171^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~626~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~628~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42157~^~645~^0.640^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42157~^~646~^1.444^1^^~1~^^^^^^^^^^^~05/01/2005~ -~42158~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~404~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~405~^0.060^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~406~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~415~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~606~^1.355^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~607~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~608~^0.007^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~609~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~610~^0.008^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~611~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~612~^0.042^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~613~^0.841^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~614~^0.425^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~617~^3.340^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~618~^2.680^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~619~^0.204^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~626~^0.038^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~645~^3.391^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42158~^~646~^2.891^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42161~^~312~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~404~^0.050^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~405~^0.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~406~^2.500^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~415~^0.150^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~606~^5.464^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~610~^0.037^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~611~^0.019^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~612~^0.407^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~613~^3.106^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~614~^1.894^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~617~^5.688^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~618~^0.398^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~619~^0.112^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~626~^0.767^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42161~^~645~^6.455^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42161~^~646~^0.510^0^^~4~^^^^^^^^^^^~08/01/2012~ -~42171~^~312~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~315~^0.071^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~410~^0.026^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42171~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~606~^1.872^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~612~^0.013^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~613~^1.339^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~614~^0.494^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~617~^2.964^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~618~^6.630^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~619~^0.884^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~626~^0.026^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~628~^0.026^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~645~^3.029^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42171~^~646~^7.527^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42173~^~312~^0.148^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~404~^0.510^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~405~^0.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~406~^4.220^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~415~^0.340^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~606~^7.950^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~610~^0.079^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~611~^0.066^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~612~^0.314^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~613~^4.740^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~614~^2.631^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~617~^8.901^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~618~^2.760^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~619~^0.380^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~620~^0.089^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~621~^0.021^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~626~^0.800^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~628~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~630~^0.007^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~631~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~645~^9.719^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42173~^~646~^3.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42178~^~312~^0.090^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~315~^0.399^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~404~^0.050^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~405~^0.040^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~406~^0.090^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~410~^0.124^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~415~^0.020^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42178~^~605~^0.153^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~606~^2.921^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~613~^1.962^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~614~^0.815^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~615~^0.065^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~617~^4.873^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~618~^14.534^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~619~^2.042^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~624~^0.065^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~626~^0.007^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~628~^0.110^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~630~^0.241^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~645~^5.246^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~646~^16.590^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42178~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~653~^0.006^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~654~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~671~^0.016^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~672~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~689~^0.008^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42178~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~ -~42179~^~312~^0.065^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~404~^0.050^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~405~^0.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~406~^2.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~606~^1.526^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~ -~42179~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~612~^0.113^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~613~^0.923^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~614~^0.490^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~617~^3.417^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~618~^0.233^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~626~^0.388^0^^~4~^^^^^^^^^^^~06/01/2015~ -~42179~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42179~^~645~^3.806^0^^~12~^^^^^^^^^^^~06/01/2015~ -~42179~^~646~^0.233^0^^~12~^^^^^^^^^^^~06/01/2015~ -~42183~^~312~^0.293^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~404~^0.140^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~405~^0.200^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~406~^1.110^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~415~^0.040^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~606~^4.962^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~612~^0.033^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~613~^3.263^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~614~^1.665^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~617~^14.152^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~618~^11.622^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~619~^0.866^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~626~^0.133^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~645~^14.319^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42183~^~646~^12.521^0^^~4~^^^^^^^^^^^~05/01/2007~ -~42185~^~312~^0.203^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~404~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~406~^0.200^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~415~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~606~^0.505^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~607~^0.027^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~608~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~609~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~610~^0.018^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~611~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~612~^0.071^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~613~^0.241^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~614~^0.104^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~617~^0.187^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~618~^0.021^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~619~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~626~^0.018^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~645~^0.214^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42185~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~312~^0.054^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~404~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~406~^0.140^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~415~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~606~^2.272^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~607~^0.096^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~608~^0.067^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~609~^0.038^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~610~^0.086^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~611~^0.106^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~612~^0.327^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~613~^0.971^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~614~^0.443^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~617~^0.817^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~618~^0.073^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~619~^0.029^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~626~^0.067^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~645~^0.961^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42186~^~646~^0.102^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~312~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~404~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~406~^0.070^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~415~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~606~^2.326^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~607~^0.111^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~608~^0.078^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~609~^0.044^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~610~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~611~^0.122^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~612~^0.377^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~613~^0.986^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~614~^0.355^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~617~^0.820^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~618~^0.067^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~619~^0.033^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~626~^0.078^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~645~^0.986^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42187~^~646~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42189~^~312~^0.008^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~404~^0.050^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~405~^0.210^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~406~^0.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~415~^0.030^0^^~8~^^^^^^^^^^^~02/01/2009~ -~42189~^~501~^0.052^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~502~^0.175^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~503~^0.212^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~504~^0.388^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~505~^0.343^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~506~^0.107^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~507~^0.025^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~508~^0.212^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~509~^0.207^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~510~^0.268^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~511~^0.117^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~512~^0.124^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~513~^0.139^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~514~^0.351^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~515~^0.921^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~516~^0.081^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~517~^0.404^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~518~^0.247^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~ -~42189~^~606~^1.242^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~607~^0.061^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~608~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~609~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~610~^0.051^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~611~^0.061^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~612~^0.202^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~613~^0.525^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~614~^0.242^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~617~^0.505^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~618~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~619~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~626~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~645~^0.576^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42189~^~646~^0.071^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42190~^~312~^0.066^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~315~^0.079^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~404~^0.480^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~405~^0.120^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~406~^3.350^1^^~1~^~A~^^^^^^^^^^~05/01/2004~ -~42190~^~415~^0.200^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~606~^12.825^4^^~1~^~A~^^^3^9.100^14.300^^^^~2~^~09/01/2015~ -~42190~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~610~^0.073^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~611~^0.055^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~612~^0.273^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~613~^3.961^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~614~^2.196^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~617~^7.770^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~618~^1.989^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~619~^0.328^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~626~^0.661^0^^~4~^^^^^^^^^^^~09/01/2015~ -~42190~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~42190~^~645~^18.100^4^^~1~^~A~^^^3^17.000^19.600^^^^~2~^~09/01/2015~ -~42190~^~646~^4.073^4^^~1~^~A~^^^3^3.290^4.610^^^^~2~^~09/01/2015~ -~42192~^~312~^0.015^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~315~^0.010^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~404~^0.040^0^^~4~^^^^^^^^^^^~01/01/2008~ -~42192~^~405~^0.166^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~406~^0.111^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~410~^0.437^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~415~^0.045^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~605~^0.096^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~606~^0.450^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~607~^0.015^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~608~^0.007^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~609~^0.005^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~610~^0.012^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~611~^0.010^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~612~^0.067^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~613~^0.220^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~614~^0.096^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~615~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~617~^0.404^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~618~^0.053^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~619~^0.008^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~624~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~626~^0.023^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~645~^0.441^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42192~^~646~^0.069^0^^~4~^~FLM~^^^^^^^^^^~01/01/2008~ -~42193~^~312~^0.020^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~315~^0.022^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~404~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~405~^0.014^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~406~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~410~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~415~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~606~^0.600^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~42193~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~609~^0.025^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~610~^0.027^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~611~^0.250^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~612~^0.110^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~613~^0.069^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~614~^0.117^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~617~^1.887^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~618~^0.043^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~619~^0.019^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~645~^1.887^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42193~^~646~^0.063^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~42196~^~312~^0.344^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~315~^0.393^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~404~^0.037^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~405~^0.063^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~406~^0.218^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~410~^0.084^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~415~^0.020^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~605~^0.176^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~ -~42196~^~606~^11.474^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42196~^~607~^0.130^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~608~^0.078^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~609~^0.046^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~610~^0.101^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~611~^0.108^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~612~^0.362^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~613~^4.788^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~614~^5.601^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~615~^0.141^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~617~^4.574^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~618~^0.467^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~619~^0.048^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~624~^0.019^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~626~^0.063^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~628~^0.002^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~645~^4.639^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~646~^0.514^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~652~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~653~^0.037^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~696~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42196~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~ -~42200~^~312~^0.998^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~315~^1.562^0^^~4~^~RC~^^^^^^^^^^~04/01/2007~ -~42200~^~404~^0.277^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~405~^0.258^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~406~^1.472^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~410~^0.917^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~415~^0.285^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~501~^0.266^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~502~^0.886^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~503~^1.303^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~504~^2.115^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~505~^1.695^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~506~^0.372^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~507~^0.237^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~508~^1.491^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~509~^0.793^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~510~^1.434^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~511~^1.662^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~512~^0.715^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~513~^1.090^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~514~^2.985^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~515~^4.178^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~516~^1.066^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~517~^1.181^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~518~^1.344^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~606~^1.084^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~607~^0.050^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~608~^0.030^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~609~^0.017^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~610~^0.039^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~611~^0.044^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~612~^0.157^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~613~^0.558^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~614~^0.189^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~617~^0.497^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~618~^0.113^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~619~^1.034^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~620~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~621~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~626~^0.035^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~627~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~628~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~629~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~630~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~631~^0.000^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~ -~42200~^~645~^0.532^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42200~^~646~^1.148^0^^~4~^~RC~^^^^^^^^^^~04/01/2003~ -~42204~^~312~^0.445^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~404~^0.060^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~405~^0.160^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~406~^7.810^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~415~^0.150^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~606~^0.875^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~607~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~608~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~609~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~610~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~612~^0.015^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~613~^0.737^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~614~^0.077^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~617~^1.566^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~618~^1.490^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~619~^0.015^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~620~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~621~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~626~^0.015^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~627~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~628~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~629~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~630~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~631~^0.000^0^^~7~^^^^^^^^^^^~04/01/2007~ -~42204~^~645~^1.582^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42204~^~646~^1.520^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42227~^~312~^0.552^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~315~^1.030^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~404~^0.110^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~405~^0.324^1^^~8~^~LC~^^^^^^^^^^~12/01/2005~ -~42227~^~406~^0.952^1^^~8~^~LC~^^^^^^^^^^~12/01/2005~ -~42227~^~410~^0.286^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~415~^0.055^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~605~^0.072^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~606~^9.435^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~ -~42227~^~607~^0.264^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~608~^0.095^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~609~^0.055^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~610~^0.104^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~611~^0.114^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~612~^0.348^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~613~^4.736^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~614~^3.549^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~615~^0.090^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~617~^11.160^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~618~^3.741^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~619~^0.012^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~624~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~625~^0.020^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~626~^0.105^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~645~^11.290^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~646~^3.753^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~652~^0.036^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~653~^0.034^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~687~^0.006^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42227~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~ -~42230~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~315~^0.004^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~404~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~405~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~406~^0.250^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~410~^0.001^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~ -~42230~^~415~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~606~^2.980^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~612~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~613~^1.960^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~614~^1.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~617~^8.500^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~618~^6.980^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~619~^0.520^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~621~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42230~^~626~^0.080^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~629~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42230~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~631~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~42230~^~645~^8.600^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42230~^~646~^7.520^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42231~^~312~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~315~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~404~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~405~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~406~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~415~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~42231~^~605~^0.094^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~606~^8.976^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~607~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~42231~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~42231~^~610~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~611~^0.018^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~612~^0.077^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~613~^5.109^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~614~^3.367^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~615~^0.131^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~617~^18.316^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~618~^14.327^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~619~^53.368^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~620~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~621~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~624~^0.113^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~625~^0.008^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~626~^0.060^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~627~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~628~^0.000^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~ -~42231~^~629~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~630~^0.031^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~631~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2006~ -~42231~^~645~^18.438^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~646~^67.849^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~652~^0.027^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~653~^0.051^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~654~^0.075^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~662~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~663~^0.030^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~664~^0.014^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~665~^0.050^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~670~^0.031^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~671~^0.023^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~672~^0.031^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~673~^0.060^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~674~^18.286^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~675~^14.246^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~676~^0.017^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~685~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~687~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~689~^0.096^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~ -~42231~^~693~^0.044^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~695~^0.050^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~ -~42231~^~697~^0.000^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~ -~42231~^~851~^53.368^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~852~^0.081^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~853~^0.015^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42231~^~858~^0.013^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~42235~^~312~^0.028^0^^~4~^^^^^^^^^^^~01/01/2007~ -~42235~^~404~^0.020^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~405~^0.160^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~406~^0.130^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~415~^0.070^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~606~^0.640^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~607~^0.030^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~608~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~609~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~610~^0.020^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~611~^0.020^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~612~^0.110^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~613~^0.310^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~614~^0.120^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~617~^0.240^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~618~^0.020^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~619~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~620~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~621~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~626~^0.040^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~627~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~628~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~629~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~630~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~631~^0.000^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~645~^0.290^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42235~^~646~^0.030^0^^~1~^^^^^^^^^^^~01/01/2007~ -~42236~^~312~^0.141^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42236~^~404~^1.320^0^^~8~^^^~Y~^^^^^^^^~02/01/2005~ -~42236~^~405~^1.500^0^^~8~^^^~Y~^^^^^^^^~02/01/2005~ -~42236~^~406~^17.640^0^^~8~^^^~Y~^^^^^^^^~02/01/2005~ -~42236~^~415~^1.760^0^^~8~^^^~Y~^^^^^^^^~02/01/2005~ -~42236~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~ -~42236~^~606~^0.620^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~611~^0.011^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~612~^0.006^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~613~^0.522^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~614~^0.033^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~617~^1.094^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~618~^1.222^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~619~^0.056^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~626~^0.006^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~645~^1.100^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42236~^~646~^1.280^0^^~4~^^^^^^^^^^^~02/01/2005~ -~42237~^~312~^0.622^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~ -~42237~^~404~^1.929^0^^~8~^~LC~^^~Y~^^^^^^^^~04/01/2014~ -~42237~^~405~^0.980^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~406~^5.714^0^^~8~^~LC~^^~Y~^^^^^^^^~04/01/2014~ -~42237~^~415~^0.460^0^^~8~^^^^^^^^^^^~02/01/2005~ -~42237~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~ -~42237~^~606~^0.480^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~607~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~608~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~609~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~610~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~611~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~612~^0.004^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~613~^0.406^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~614~^0.022^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~617~^0.328^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~618~^1.107^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~619~^0.057^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~620~^0.003^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~621~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~626~^0.019^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~627~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~628~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~629~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~630~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~631~^0.000^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~645~^0.350^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42237~^~646~^1.170^0^^~4~^^^^^^^^^^^~07/01/2004~ -~42240~^~312~^0.200^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~404~^1.200^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~405~^1.300^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~406~^15.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~415~^1.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42240~^~605~^0.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42240~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42240~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42240~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42240~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42240~^~611~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42240~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42240~^~613~^0.606^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42240~^~614~^0.133^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42240~^~615~^0.024^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~617~^3.956^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~618~^1.974^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~619~^0.126^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~620~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~624~^0.010^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~625~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~42240~^~626~^0.016^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~628~^0.024^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~630~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~645~^4.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~646~^2.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42240~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~654~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~671~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~687~^0.001^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42240~^~689~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~42240~^~696~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~42240~^~697~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~42240~^~857~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~42240~^~858~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2013~ -~42256~^~312~^0.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~404~^0.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~405~^0.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~406~^0.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~415~^0.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~606~^8.350^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~607~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~608~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~609~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~610~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~611~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~612~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~613~^5.270^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~614~^3.080^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~617~^16.900^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~618~^20.870^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~619~^2.930^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~620~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~621~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~626~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~627~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~628~^0.100^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~629~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~630~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42256~^~631~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42256~^~645~^17.000^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42256~^~646~^23.800^1^^~1~^^^^^^^^^^^~10/01/2004~ -~42259~^~312~^0.221^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~404~^0.130^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~405~^0.140^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~406~^1.550^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~415~^0.210^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~606~^5.050^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~612~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~613~^3.930^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~614~^1.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~617~^8.230^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~618~^12.730^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~619~^0.790^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~626~^0.060^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42259~^~645~^8.290^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42259~^~646~^13.520^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~42261~^~312~^0.400^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~404~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~405~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~406~^9.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~415~^1.000^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42261~^~605~^0.100^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~ -~42261~^~606~^1.000^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~611~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~613~^0.773^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~614~^0.198^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~617~^5.759^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~618~^2.934^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~619~^0.166^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~626~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~628~^0.036^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42261~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~ -~42261~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42261~^~645~^5.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42261~^~646~^3.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~312~^0.400^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~404~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~405~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~406~^9.100^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~415~^0.900^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42265~^~605~^0.100^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42265~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~42265~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~611~^0.003^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~612~^0.002^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~613~^0.628^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~614~^0.141^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~617~^3.764^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~618~^1.985^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~619~^0.115^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~626~^0.009^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~628~^0.023^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~630~^0.001^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42265~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42265~^~645~^3.800^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~646~^2.100^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~ -~42265~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42265~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42266~^~312~^0.032^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~404~^0.010^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~405~^0.030^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~406~^0.100^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~415~^0.070^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42266~^~606~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~613~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~614~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~617~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~618~^0.046^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~619~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~645~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42266~^~646~^0.050^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~312~^0.044^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~404~^0.060^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~405~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~406~^0.210^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~415~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42267~^~606~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~613~^0.011^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~614~^0.005^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~617~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~618~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~619~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~626~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~645~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42267~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42270~^~312~^0.018^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~315~^0.007^0^^~4~^~BFSN~^~14263~^^^^^^^^^~02/01/2003~ -~42270~^~404~^0.380^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~405~^0.430^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~406~^5.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~410~^0.060^0^^~4~^~BFSN~^~14263~^^^^^^^^^~02/01/2003~ -~42270~^~415~^0.500^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~42270~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~613~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~614~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~617~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~618~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~645~^0.010^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42270~^~646~^0.010^0^^~4~^^^^^^^^^^^~04/01/2005~ -~42272~^~312~^0.319^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~404~^0.140^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~405~^0.080^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~406~^0.420^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~415~^0.120^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~606~^22.720^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~608~^0.160^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~609~^1.970^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~610~^1.580^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~611~^11.720^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~612~^4.410^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~613~^2.150^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~614~^0.740^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~617~^4.970^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~618~^3.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~619~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42272~^~645~^4.970^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42272~^~646~^3.100^0^^~9~^^^^^^^^^^^~05/01/2005~ -~42278~^~312~^0.080^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~404~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~405~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~406~^1.100^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~415~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42278~^~606~^0.140^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~612~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~613~^0.099^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~614~^0.029^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~617~^0.957^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~618~^0.302^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~619~^0.011^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~626~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~628~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~645~^0.970^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42278~^~646~^0.320^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~312~^0.080^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~404~^0.100^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~405~^0.080^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~406~^1.400^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~415~^0.060^0^^~5~^^^^^^^^^^^~03/01/2005~ -~42279~^~605~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~606~^0.100^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~612~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~613~^0.085^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~614~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~615~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~617~^0.179^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~618~^0.171^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~619~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~626~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~645~^0.180^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~646~^0.180^0^^~4~^^^^^^^^^^^~03/01/2005~ -~42279~^~652~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~654~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42279~^~858~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42280~^~312~^0.063^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~404~^0.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~405~^0.170^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~406~^3.160^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~415~^0.270^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~606~^0.970^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~610~^0.002^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~611~^0.006^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~612~^0.039^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~613~^0.587^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~614~^0.319^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~617~^0.994^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~618~^0.305^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~619~^0.026^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~626~^0.090^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~645~^1.190^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42280~^~646~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42281~^~312~^0.000^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~404~^0.000^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~405~^0.000^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~406~^0.000^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~415~^0.000^0^^~7~^^^^^^^^^^^~09/01/2004~ -~42281~^~606~^0.060^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~612~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~613~^0.057^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~614~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~617~^0.224^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~618~^0.067^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~619~^0.001^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~626~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~628~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~630~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~645~^0.220^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42281~^~646~^0.070^0^^~4~^^^^^^^^^^^~09/01/2004~ -~42283~^~312~^0.104^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~404~^0.340^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~405~^0.070^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~406~^4.090^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~415~^0.510^1^^~12~^^^^^^^^^^^~02/01/2006~ -~42283~^~606~^2.631^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~607~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~608~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~609~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~610~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~611~^0.014^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~612~^0.003^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~613~^1.812^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~614~^0.802^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~617~^9.910^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~618~^4.037^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~619~^0.197^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~620~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~621~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~626~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~627~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~628~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~629~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~630~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~631~^0.000^1^^~12~^~MA~^^^^^^^^^^~02/01/2006~ -~42283~^~645~^9.910^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42283~^~646~^4.234^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~ -~42284~^~312~^0.220^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~404~^1.400^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~405~^1.600^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~406~^11.250^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~415~^0.050^0^^~12~^~MA~^^^^^^^^^^~04/01/2003~ -~42284~^~606~^1.646^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~611~^0.041^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~612~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~613~^1.484^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~614~^0.102^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~617~^3.110^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~618~^3.476^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~619~^0.163^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~626~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~42284~^~645~^3.130^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42284~^~646~^3.638^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42285~^~312~^0.368^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~404~^0.930^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~405~^0.170^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~406~^16.000^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~415~^0.980^0^^~5~^^^^^^^^^^^~04/01/2015~ -~42285~^~605~^0.001^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~606~^0.610^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~611~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~612~^0.011^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~613~^0.512^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~614~^0.053^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~615~^0.014^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~617~^1.075^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~618~^1.027^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~619~^0.045^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~624~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~625~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~626~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42285~^~645~^1.085^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~646~^1.072^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~ -~42285~^~652~^0.002^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~653~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~654~^0.016^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~671~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~672~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~687~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~689~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~697~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42285~^~858~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~ -~42286~^~312~^0.048^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~404~^0.030^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~405~^0.110^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~406~^1.140^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~415~^0.080^0^^~5~^^^^^^^^^^^~11/01/1993~ -~42286~^~606~^0.500^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~607~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~608~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~609~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~610~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~611~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~612~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~613~^0.230^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~614~^0.150^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~617~^0.230^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~618~^0.270^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~619~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~620~^0.080^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~621~^0.020^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~626~^0.040^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~627~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~628~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~629~^0.000^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~630~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~631~^0.010^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~645~^0.270^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42286~^~646~^0.420^0^^~4~^^^^^^^^^^^~11/01/1993~ -~42289~^~312~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~404~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~405~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~406~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~415~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~605~^0.334^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~606~^8.026^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~607~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~608~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~612~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~613~^5.076^2^^~1~^~A~^^^1^5.015^5.138^1^^^^~03/01/2007~ -~42289~^~614~^2.028^2^^~1~^~A~^^^1^2.023^2.032^1^^^^~03/01/2007~ -~42289~^~615~^0.615^2^^~1~^~A~^^^1^0.610^0.621^1^^^^~03/01/2007~ -~42289~^~617~^57.142^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~42289~^~618~^23.315^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~42289~^~619~^5.798^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~ -~42289~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~621~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~624~^0.306^2^^~1~^~A~^^^1^0.302^0.311^1^^^^~03/01/2007~ -~42289~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~626~^0.191^2^^~1~^~A~^^^1^0.189^0.193^1^^^^~03/01/2007~ -~42289~^~627~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~628~^1.204^2^^~1~^~A~^^^1^1.147^1.262^1^^^^~03/01/2007~ -~42289~^~629~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~ -~42289~^~631~^0.000^1^^~1~^^^^^^^^^^^~03/01/2007~ -~42289~^~645~^58.537^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~646~^29.113^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~652~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~653~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~669~^0.334^2^^~1~^~A~^^^1^0.202^0.465^1^^^^~03/01/2007~ -~42289~^~672~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~674~^57.142^2^^~1~^~A~^^^1^56.770^57.513^1^^^^~03/01/2007~ -~42289~^~675~^22.981^2^^~1~^~A~^^^1^22.951^23.012^1^^^^~03/01/2007~ -~42289~^~685~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~687~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~689~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~695~^0.334^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~ -~42289~^~697~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~03/01/2007~ -~42289~^~851~^5.798^2^^~1~^~A~^^^1^5.323^6.274^1^^^^~03/01/2007~ -~42290~^~312~^0.011^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~404~^0.036^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~405~^0.140^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~406~^0.088^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~415~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~606~^0.117^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~607~^0.009^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~608~^0.001^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~609~^0.002^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~610~^0.004^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~611~^0.003^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~612~^0.017^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~613~^0.053^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~614~^0.019^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~617~^0.038^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~618~^0.005^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~619~^0.002^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~620~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~621~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~626~^0.007^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~627~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~628~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~629~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~630~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~631~^0.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~42290~^~645~^0.047^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42290~^~646~^0.007^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42291~^~312~^0.515^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~404~^0.120^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~405~^0.110^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~406~^13.690^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~415~^0.450^0^^~1~^^^^^^^^^^^~04/01/2007~ -~42291~^~606~^7.716^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42291~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~611~^0.022^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~612~^0.050^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~613~^5.501^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~614~^2.143^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~617~^22.964^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~618~^14.098^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~619~^0.078^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~620~^0.187^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~628~^0.618^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~42291~^~645~^23.582^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42291~^~646~^14.363^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~ -~42297~^~312~^0.360^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~404~^0.600^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~405~^0.700^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~406~^8.500^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~415~^0.800^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~ -~42297~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~606~^1.100^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~611~^0.007^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42297~^~612~^0.006^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42297~^~613~^0.847^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~614~^0.164^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~617~^3.723^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~618~^3.020^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~619~^0.420^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~42297~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~626~^0.017^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~628~^0.025^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~ -~42297~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~630~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~ -~42297~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~42297~^~645~^3.780^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42297~^~646~^3.440^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~42303~^~312~^0.031^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~404~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~405~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~406~^0.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~415~^0.060^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~606~^10.950^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~607~^0.571^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~608~^0.337^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~609~^0.197^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~610~^0.442^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~611~^0.494^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~612~^1.769^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~613~^4.622^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~614~^2.136^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~617~^4.421^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~618~^0.397^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~619~^0.257^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~620~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~621~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~626~^0.394^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~627~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~628~^0.265^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~629~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~631~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42303~^~645~^5.090^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42303~^~646~^0.650^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~312~^0.034^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~404~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~405~^0.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~406~^0.120^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~415~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~606~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42304~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~42304~^~645~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42304~^~646~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~42307~^~312~^0.005^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~404~^0.010^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~405~^0.040^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~406~^0.030^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~415~^0.010^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~606~^26.904^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~607~^0.842^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~608~^0.499^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~609~^0.290^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~610~^0.650^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~611~^0.730^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~612~^2.747^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~613~^13.412^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~614~^7.158^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~617~^30.872^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~618~^17.110^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~619~^1.126^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~620~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~621~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~626~^0.582^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~627~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~628~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~629~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~630~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~631~^0.000^0^^~7~^^^^^^^^^^^~10/01/2004~ -~42307~^~645~^31.832^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42307~^~646~^18.236^0^^~4~^^^^^^^^^^^~10/01/2004~ -~42309~^~312~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~404~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~405~^0.040^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~406~^0.030^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~415~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~606~^16.669^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~607~^0.522^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~608~^0.309^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~609~^0.180^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~610~^0.403^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~611~^0.452^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~612~^1.702^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~613~^8.310^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~614~^4.435^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~617~^19.128^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~618~^10.601^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~619~^0.698^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~620~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~621~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~626~^0.361^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~627~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~628~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~629~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~630~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~631~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~42309~^~645~^19.722^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42309~^~646~^11.299^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~312~^0.081^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~404~^0.020^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~405~^0.030^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~406~^0.250^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~415~^0.050^0^^~5~^^^^^^^^^^^~03/01/2007~ -~42316~^~606~^0.052^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42316~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~611~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~612~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~613~^0.043^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~614~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~617~^0.009^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~618~^0.130^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~619~^0.019^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~626~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~42316~^~645~^0.012^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~42316~^~646~^0.148^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43004~^~312~^0.040^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~405~^0.060^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~406~^0.160^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~415~^0.130^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43004~^~606~^0.264^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~607~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~609~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~610~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~612~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~613~^0.183^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~614~^0.058^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~617~^0.250^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~618~^0.090^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~619~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~620~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~621~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~626~^0.024^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~628~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~645~^0.277^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43004~^~646~^0.111^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~312~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~404~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~405~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~406~^0.100^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~415~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43006~^~606~^0.087^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~613~^0.063^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~614~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~617~^0.104^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~618~^0.037^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~619~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~620~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~621~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~626~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~628~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~645~^0.113^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43006~^~646~^0.043^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~312~^0.200^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~404~^0.030^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~405~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~406~^0.080^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~415~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43007~^~606~^0.110^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~613~^0.080^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~614~^0.028^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~617~^0.137^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~618~^0.051^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~619~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~620~^0.005^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~621~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~626~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~628~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~645~^0.148^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43007~^~646~^0.061^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~312~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~405~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~406~^0.300^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43008~^~415~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~606~^0.211^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~612~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~613~^0.152^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~614~^0.043^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~617~^0.342^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~618~^0.165^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~619~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~620~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~621~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~626~^0.038^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~628~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~629~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~631~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~645~^0.392^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43008~^~646~^0.188^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43015~^~312~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~315~^0.038^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~404~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~405~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~406~^0.040^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43015~^~410~^0.083^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~415~^0.025^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~606~^8.789^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43015~^~607~^0.015^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~608~^0.006^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~609~^0.001^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~610~^0.005^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~611~^0.008^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~612~^0.032^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~613~^5.838^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~614~^2.466^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~615~^0.195^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~617~^13.328^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~618~^28.970^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~619~^3.853^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~620~^0.009^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~621~^0.016^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~624~^0.198^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~625~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~626~^0.030^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~627~^0.001^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~628~^0.138^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~629~^0.008^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~630~^0.002^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~645~^13.504^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~646~^32.857^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~652~^0.003^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~857~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43015~^~858~^0.000^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~ -~43016~^~312~^0.018^15^0.000^~1~^~A~^^^1^0.018^0.019^9^0.018^0.018^~1, 2, 3~^~10/01/2016~ -~43016~^~315~^0.016^15^0.001^~1~^~A~^^^1^0.011^0.026^7^0.014^0.018^~1, 2, 3~^~10/01/2016~ -~43016~^~404~^0.034^4^0.000^~1~^~A~^^^1^0.030^0.040^^^^~2, 3~^~10/01/2016~ -~43016~^~405~^0.055^4^0.000^~1~^~A~^^^1^0.040^0.070^^^^~2, 3~^~10/01/2016~ -~43016~^~406~^0.061^4^0.000^~1~^~A~^^^1^0.050^0.080^^^^~2, 3~^~10/01/2016~ -~43016~^~410~^0.116^4^0.002^~1~^~A~^^^1^0.030^0.240^1^0.090^0.142^~1, 2, 3~^~10/01/2016~ -~43016~^~415~^0.007^4^0.000^~1~^~A~^^^1^0.007^0.007^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~605~^0.086^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~606~^5.343^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~607~^0.011^11^0.000^~1~^~A~^^^1^0.010^0.012^7^0.010^0.011^~2, 3~^~10/01/2016~ -~43016~^~608~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~609~^0.028^11^0.000^~1~^~A~^^^1^0.003^0.125^2^0.027^0.030^~2, 3~^~10/01/2016~ -~43016~^~610~^0.012^11^0.001^~1~^~A~^^^1^0.003^0.051^2^0.009^0.015^~2, 3~^~10/01/2016~ -~43016~^~611~^0.006^11^0.000^~1~^~A~^^^1^0.005^0.010^4^0.005^0.007^~2, 3~^~10/01/2016~ -~43016~^~612~^0.028^11^0.001^~1~^~A~^^^1^0.011^0.040^4^0.026^0.030^~2, 3~^~10/01/2016~ -~43016~^~613~^3.589^11^0.053^~1~^~A~^^^1^1.415^5.157^4^3.444^3.734^~2, 3~^~10/01/2016~ -~43016~^~614~^1.392^11^0.013^~1~^~A~^^^1^0.605^2.004^4^1.356^1.428^~2, 3~^~10/01/2016~ -~43016~^~615~^0.099^11^0.001^~1~^~A~^^^1^0.040^0.145^5^0.096^0.103^~2, 3~^~10/01/2016~ -~43016~^~617~^7.092^11^0.097^~1~^~AS~^^^1^3.045^10.209^6^6.855^7.328^~2, 3~^~10/01/2016~ -~43016~^~618~^16.760^11^0.251^~1~^~AS~^^^1^6.401^24.281^4^16.078^17.441^~2, 3~^~10/01/2016~ -~43016~^~619~^2.551^11^0.047^~1~^~AS~^^^1^0.919^3.921^4^2.423^2.679^~2, 3~^~10/01/2016~ -~43016~^~620~^0.019^11^0.001^~1~^~A~^^^1^0.008^0.033^5^0.018^0.021^~2, 3~^~10/01/2016~ -~43016~^~621~^0.006^11^0.000^~1~^~A~^^^1^0.004^0.009^8^0.006^0.007^~2, 3~^~10/01/2016~ -~43016~^~624~^0.102^11^0.001^~1~^~A~^^^1^0.040^0.149^5^0.098^0.106^~2, 3~^~10/01/2016~ -~43016~^~625~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.001^2^0.000^0.001^~1, 2, 3~^~10/01/2016~ -~43016~^~626~^0.045^11^0.001^~1~^~AS~^^^1^0.020^0.066^4^0.042^0.047^~2, 3~^~10/01/2016~ -~43016~^~627~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.002^4^0.000^0.001^~1, 2, 3~^~10/01/2016~ -~43016~^~628~^0.179^11^0.005^~1~^~A~^^^1^0.085^0.268^4^0.166^0.192^~2, 3~^~10/01/2016~ -~43016~^~629~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^6^0.002^0.003^~1, 2, 3~^~10/01/2016~ -~43016~^~630~^0.070^11^0.001^~1~^~AS~^^^1^0.053^0.082^7^0.068^0.072^~2, 3~^~10/01/2016~ -~43016~^~631~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^2^0.000^0.003^~1, 2, 3~^~10/01/2016~ -~43016~^~645~^7.407^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~646~^19.362^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~652~^0.007^11^0.000^~1~^~A~^^^1^0.003^0.010^6^0.006^0.007^~2, 3~^~10/01/2016~ -~43016~^~653~^0.033^11^0.001^~1~^~A~^^^1^0.013^0.049^6^0.032^0.035^~2, 3~^~10/01/2016~ -~43016~^~654~^0.036^11^0.000^~1~^~A~^^^1^0.015^0.051^5^0.035^0.037^~2, 3~^~10/01/2016~ -~43016~^~662~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~663~^0.018^11^0.001^~1~^~A~^^^1^0.008^0.034^5^0.016^0.020^~2, 3~^~10/01/2016~ -~43016~^~664~^0.007^11^0.000^~1~^~A~^^^1^0.001^0.014^5^0.006^0.007^~1, 2, 3~^~10/01/2016~ -~43016~^~665~^0.061^11^0.005^~1~^~A~^^^1^0.018^0.162^3^0.044^0.079^~2, 3~^~10/01/2016~ -~43016~^~670~^0.014^11^0.000^~1~^~A~^^^1^0.005^0.021^7^0.013^0.015^~2, 3~^~10/01/2016~ -~43016~^~671~^0.003^11^0.000^~1~^~A~^^^1^0.001^0.005^7^0.003^0.004^~1, 2, 3~^~10/01/2016~ -~43016~^~672~^0.015^11^0.000^~1~^~A~^^^1^0.006^0.022^8^0.014^0.015^~2, 3~^~10/01/2016~ -~43016~^~673~^0.045^11^0.001^~1~^~A~^^^1^0.020^0.066^4^0.042^0.047^~2, 3~^~10/01/2016~ -~43016~^~674~^7.073^11^0.097^~1~^~A~^^^1^3.036^10.182^6^6.836^7.310^~2, 3~^~10/01/2016~ -~43016~^~675~^16.684^11^0.249^~1~^~A~^^^1^6.378^24.161^4^16.008^17.361^~2, 3~^~10/01/2016~ -~43016~^~676~^0.063^11^0.001^~1~^~A~^^^1^0.040^0.080^7^0.062^0.065^~2, 3~^~10/01/2016~ -~43016~^~685~^0.092^11^0.004^~1~^~A~^^^1^0.025^0.170^4^0.081^0.103^~2, 3~^~10/01/2016~ -~43016~^~687~^0.017^11^0.000^~1~^~A~^^^1^0.006^0.025^6^0.016^0.018^~2, 3~^~10/01/2016~ -~43016~^~689~^0.004^11^0.000^~1~^~AS~^^^1^0.002^0.007^6^0.003^0.005^~2, 3~^~10/01/2016~ -~43016~^~693~^0.025^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~695~^0.061^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~ -~43016~^~697~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~851~^2.459^11^0.043^~1~^~A~^^^1^0.894^3.760^4^2.341^2.578^~2, 3~^~10/01/2016~ -~43016~^~852~^0.002^11^0.000^~1~^~A~^^^1^0.001^0.004^7^0.002^0.003^~1, 2, 3~^~10/01/2016~ -~43016~^~853~^0.002^11^0.000^~1~^~A~^^^1^0.000^0.003^4^0.001^0.003^~1, 2, 3~^~10/01/2016~ -~43016~^~856~^0.000^11^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~10/01/2016~ -~43016~^~858~^0.001^11^0.000^~1~^~A~^^^1^0.000^0.003^7^0.001^0.002^~1, 2, 3~^~10/01/2016~ -~43017~^~312~^0.010^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~404~^0.020^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~405~^0.050^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~406~^0.140^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~415~^0.010^1^^~1~^^^^^^^^^^^~07/01/2005~ -~43017~^~606~^5.978^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~607~^0.016^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~608~^0.009^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~609~^0.006^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~610~^0.012^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~611~^0.013^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~612~^0.089^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~613~^4.254^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~614~^1.580^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~617~^9.252^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~618~^20.436^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~619~^2.730^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~620~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~621~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~626~^0.091^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~627~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~628~^0.080^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~629~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~630~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~631~^0.000^0^^~4~^^^^^^^^^^^~07/01/2005~ -~43017~^~645~^9.423^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43017~^~646~^23.165^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~ -~43019~^~312~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~315~^0.060^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~404~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~405~^0.000^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~406~^0.060^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~410~^0.027^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43019~^~415~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43019~^~606~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43019~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43019~^~645~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43019~^~646~^0.000^0^^~7~^^^^^^^^^^^~05/01/2005~ -~43020~^~312~^0.010^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~404~^0.020^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~405~^0.100^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~406~^0.050^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~415~^0.020^1^^~1~^^^^^^^^^^^~05/01/2005~ -~43020~^~606~^2.575^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~607~^0.069^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~608~^0.038^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~609~^0.026^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~610~^0.062^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~611~^0.051^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~612~^0.352^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~613~^1.414^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~614~^0.496^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~617~^1.645^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~618~^2.117^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~619~^0.301^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~620~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~621~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~626~^0.099^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~628~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~645~^1.783^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43020~^~646~^2.422^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43021~^~312~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~315~^0.045^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~404~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~405~^0.010^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~406~^0.040^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~410~^0.003^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~ -~43021~^~415~^0.000^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43021~^~606~^0.703^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~607~^0.008^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~608~^0.003^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~609~^0.002^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~610~^0.004^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~611~^0.006^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~612~^0.025^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~613~^0.469^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~614~^0.171^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~617~^1.009^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~618~^2.060^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~619~^0.291^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~621~^0.008^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~626~^0.014^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~627~^0.001^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~628~^0.024^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~629~^0.005^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~630~^0.066^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~645~^1.124^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43021~^~646~^2.368^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43026~^~312~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~315~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~404~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~405~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~406~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~410~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43026~^~415~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43026~^~606~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43026~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43026~^~645~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43026~^~646~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43027~^~312~^0.032^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~315~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~404~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~405~^0.015^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~406~^0.220^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~410~^0.088^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~415~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~606~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/1995~ -~43027~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43027~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~ -~43028~^~312~^0.024^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~404~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~405~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~406~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~415~^0.020^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~606~^0.016^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~613~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~614~^0.003^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~617~^0.041^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~618~^0.088^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~619~^0.063^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~626~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~645~^0.042^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43028~^~646~^0.151^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43031~^~312~^0.580^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~404~^0.040^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~405~^0.160^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~406~^4.760^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43031~^~415~^0.160^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~606~^4.657^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~608~^0.005^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~609~^0.080^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~610~^0.090^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~611~^1.140^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~612~^0.407^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~613~^2.178^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~614~^0.551^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~617~^9.194^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~618~^5.833^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~619~^0.001^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~626~^0.003^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~628~^0.246^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~645~^9.444^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43031~^~646~^5.834^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43046~^~312~^0.134^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~315~^0.304^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~404~^0.013^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~405~^0.148^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~406~^0.478^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~410~^0.060^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~415~^0.020^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~606~^1.667^1^^~8~^~LC~^^^^^^^^^^~04/01/2003~ -~43046~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~612~^0.002^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~613~^1.340^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~614~^0.324^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2003~ -~43046~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~04/01/2003~ -~43046~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~654~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~671~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43046~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43057~^~312~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~404~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~405~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~406~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43057~^~415~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~606~^0.034^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~613~^0.019^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~614~^0.004^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~617~^0.090^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~618~^0.064^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~619~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~628~^0.003^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~645~^0.092^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43057~^~646~^0.064^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~312~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~404~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~405~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~406~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43058~^~415~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43058~^~606~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43058~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43058~^~645~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43058~^~646~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~43059~^~312~^0.850^0^^~4~^^^^^^^^^^^~02/01/2015~ -~43059~^~315~^0.888^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~404~^0.200^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~405~^0.480^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~406~^2.260^0^^~1~^^^^^^^^^^^~02/01/2015~ -~43059~^~415~^0.180^0^^~4~^^^^^^^^^^^~02/01/2015~ -~43059~^~605~^0.121^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~606~^21.723^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~607~^0.221^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~608~^0.144^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~609~^0.656^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~610~^0.685^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~611~^5.079^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~612~^2.415^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~613~^6.912^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~614~^5.369^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~615~^0.101^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~617~^10.644^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~618~^4.151^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~619~^0.197^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~620~^0.001^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~624~^0.069^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~625~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~626~^0.194^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~628~^0.041^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~630~^0.002^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~645~^10.884^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~646~^4.349^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~653~^0.035^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~654~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~672~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~687~^0.004^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43059~^~689~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~696~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~697~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43059~^~858~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43060~^~312~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~404~^0.000^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~405~^0.000^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~406~^0.000^1^^~1~^^^^^^^^^^^~10/01/2006~ -~43060~^~415~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~606~^0.058^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~607~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~608~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~609~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~610~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~611~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~612~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~613~^0.041^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~614~^0.015^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~617~^0.091^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~618~^0.204^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~619~^0.027^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~620~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~621~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~626~^0.001^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~627~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~628~^0.001^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~629~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~630~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~631~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~645~^0.093^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43060~^~646~^0.232^0^^~4~^^^^^^^^^^^~10/01/2006~ -~43075~^~312~^0.010^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~404~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~405~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~406~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~415~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~606~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43075~^~645~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43075~^~646~^0.000^0^^~4~^^^^^^^^^^^~06/01/2006~ -~43098~^~312~^0.084^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~315~^0.057^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~404~^0.020^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~405~^0.039^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~406~^0.361^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~410~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~415~^0.027^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43098~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43098~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43098~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43098~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43100~^~312~^0.360^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~404~^0.280^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~405~^0.110^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43100~^~406~^1.750^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~415~^0.350^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~606~^12.690^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~608~^0.081^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~609~^1.005^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~610~^0.802^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~611~^6.135^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~612~^2.357^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~613~^1.701^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~614~^0.562^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~617~^1.926^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~618~^1.574^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~619~^0.011^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~626~^0.007^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~628~^0.001^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~645~^1.933^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43100~^~646~^1.634^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43109~^~312~^0.126^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~404~^0.410^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~405~^0.290^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~406~^4.270^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~415~^0.020^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~606~^0.695^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~612~^0.009^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~613~^0.446^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~614~^0.243^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~617~^1.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~618~^0.892^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~619~^0.055^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~645~^1.071^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43109~^~646~^0.948^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~312~^0.252^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~404~^0.040^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~405~^0.150^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~406~^0.360^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~415~^0.270^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43112~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43112~^~606~^0.145^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~613~^0.129^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~614~^0.016^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~617~^0.077^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~618~^0.216^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~619~^0.339^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~645~^0.077^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43112~^~646~^0.555^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~312~^1.916^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~404~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~405~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~406~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43114~^~415~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43114~^~606~^0.014^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~613~^0.012^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~614~^0.002^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~617~^0.013^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~618~^0.038^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~619~^0.004^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~645~^0.013^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43114~^~646~^0.041^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~312~^0.098^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~404~^0.100^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~405~^0.090^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~406~^0.390^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43125~^~415~^0.030^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43125~^~606~^1.174^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~611~^0.006^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~612~^0.043^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~613~^0.729^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~614~^0.389^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~617~^1.420^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~618~^0.299^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~619~^0.033^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~620~^0.007^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~626~^0.095^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~645~^1.536^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43125~^~646~^0.340^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~312~^0.689^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~315~^1.177^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~404~^0.062^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~405~^0.247^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~406~^1.454^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~ -~43128~^~410~^0.579^0^^~4~^~BFPN~^~16117~^^^^^^^^^~04/01/2007~ -~43128~^~415~^0.700^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43128~^~606~^1.534^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43128~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~611~^0.094^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~612~^0.047^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~613~^0.995^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~614~^0.397^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~617~^2.355^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~618~^4.462^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~619~^0.560^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43128~^~645~^2.355^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43128~^~646~^5.022^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43130~^~312~^0.706^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~404~^0.441^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~405~^0.833^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~406~^3.137^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~410~^0.784^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~415~^0.078^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43130~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43130~^~606~^1.653^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43130~^~607~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~608~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~609~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~610~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~611~^0.101^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~612~^0.050^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~613~^1.074^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~614~^0.428^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~617~^2.540^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~618~^4.811^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~619~^0.604^0^^~4~^^^^^^^^^^^~07/01/2013~ -~43130~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~626~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2005~ -~43130~^~645~^2.540^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43130~^~646~^5.415^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~ -~43131~^~312~^0.908^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~404~^4.000^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~405~^0.302^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~406~^11.110^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~415~^0.889^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43131~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~43131~^~606~^1.338^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43131~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~611~^0.082^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~612~^0.041^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~613~^0.869^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~614~^0.347^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~617~^2.055^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~618~^3.894^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~619~^0.489^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43131~^~645~^2.055^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~ -~43131~^~646~^4.383^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43132~^~312~^0.706^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~404~^0.938^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~405~^0.213^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~406~^2.500^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~410~^0.500^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~415~^0.200^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~ -~43132~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43132~^~606~^1.425^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~611~^0.087^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~612~^0.043^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~613~^0.925^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~614~^0.369^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~617~^2.188^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~618~^4.146^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~619~^0.520^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~645~^2.188^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43132~^~646~^4.666^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43134~^~312~^0.925^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~404~^1.100^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~405~^0.900^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~406~^12.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~415~^1.500^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43134~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43134~^~606~^2.849^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~611~^0.174^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~612~^0.087^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~613~^1.850^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~614~^0.738^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~617~^4.376^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~618~^8.292^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~619~^1.040^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~645~^4.376^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43134~^~646~^9.332^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~312~^0.649^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~315~^0.692^0^^~4~^~BFNN~^~16117~^^^^^^^^^~08/01/2015~ -~43135~^~404~^0.600^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~405~^0.700^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~406~^13.000^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~410~^0.458^0^^~4~^~BFNN~^~16117~^^^^^^^^^~08/01/2015~ -~43135~^~415~^1.100^1^^~1~^^^^^^^^^^^~04/01/2007~ -~43135~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~ -~43135~^~606~^1.425^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~611~^0.087^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~612~^0.043^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~613~^0.925^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~614~^0.369^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~617~^2.188^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~618~^4.146^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~619~^0.520^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~645~^2.188^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43135~^~646~^4.666^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~312~^0.706^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~404~^0.900^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~405~^0.600^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~406~^10.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~415~^1.200^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43137~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43137~^~606~^1.425^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~611~^0.087^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~612~^0.043^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~613~^0.925^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~614~^0.369^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~617~^2.188^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~618~^4.146^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~619~^0.520^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~645~^2.188^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43137~^~646~^4.666^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43142~^~312~^0.171^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~315~^0.057^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2007~ -~43142~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~405~^0.030^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~406~^0.310^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43142~^~410~^0.195^0^^~4~^~BFSN~^~11431~^^^^^^^^^~02/01/2007~ -~43142~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43142~^~606~^0.092^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~613~^0.079^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~614~^0.011^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~617~^0.049^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~618~^0.049^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~619~^0.086^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~645~^0.050^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43142~^~646~^0.135^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43143~^~312~^0.025^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~315~^0.238^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~404~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~405~^0.040^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~406~^0.180^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43143~^~410~^0.202^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43143~^~415~^0.100^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43143~^~606~^0.013^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~611~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~612~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~613~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~614~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~617~^0.007^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~618~^0.019^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~619~^0.025^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~645~^0.008^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43143~^~646~^0.048^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~312~^0.034^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~315~^0.218^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~404~^0.040^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~405~^0.090^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~406~^0.720^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43144~^~410~^0.186^0^^~4~^~BFSN~^~11110~^^^^^^^^^~12/01/2006~ -~43144~^~415~^0.300^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43144~^~606~^0.013^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~611~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~612~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~613~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~614~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~617~^0.007^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~618~^0.019^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~619~^0.026^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~626~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~645~^0.007^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43144~^~646~^0.048^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43146~^~312~^0.173^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~404~^0.050^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~405~^0.070^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~406~^0.660^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43146~^~415~^0.140^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43146~^~606~^0.140^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~613~^0.098^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~614~^0.035^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~617~^0.057^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~618~^0.245^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~619~^0.049^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~626~^0.007^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~645~^0.063^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43146~^~646~^0.294^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43154~^~312~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~404~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~405~^0.010^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~406~^0.100^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~415~^0.020^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43154~^~606~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43154~^~645~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43154~^~646~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43155~^~312~^0.011^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~404~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~405~^0.010^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~406~^0.100^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~415~^0.020^0^^~1~^^^^^^^^^^^~10/01/2004~ -~43155~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43155~^~606~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~607~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~608~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~609~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~610~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~611~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~612~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~613~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~614~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~617~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~618~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~619~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~620~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~621~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~626~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~627~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~628~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~629~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~630~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~631~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~645~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43155~^~646~^0.000^0^^~4~^^^^^^^^^^^~10/01/2004~ -~43158~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2005~ -~43158~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~405~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~406~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~606~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~613~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~617~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~618~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~645~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43158~^~646~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~ -~43205~^~312~^1.425^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~404~^0.850^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~405~^0.200^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~406~^14.240^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~415~^1.140^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43205~^~606~^0.560^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~607~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~608~^0.002^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~609~^0.003^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~610~^0.005^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~611~^0.003^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~612~^0.023^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~613~^0.286^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~614~^0.216^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~617~^0.302^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~618~^0.247^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~619~^0.031^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~626~^0.008^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~645~^0.314^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43205~^~646~^0.278^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43212~^~312~^0.539^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~404~^0.600^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~405~^0.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~406~^1.600^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~415~^0.080^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~606~^4.055^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~611~^0.215^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~612~^0.143^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~613~^2.672^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~614~^1.026^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~617~^6.225^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~618~^12.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~619~^1.479^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~645~^6.225^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43212~^~646~^13.548^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43214~^~312~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~606~^0.589^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~607~^0.029^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~608~^0.017^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~609~^0.011^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~610~^0.026^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~611~^0.031^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~612~^0.092^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~613~^0.253^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~614~^0.111^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~617~^0.243^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~618~^0.039^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~619~^0.018^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~626~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~645~^0.276^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43214~^~646~^0.057^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43215~^~312~^0.162^3^0.011^~1~^~A~^^^1^0.140^0.175^2^0.115^0.209^~2, 3~^~02/01/2003~ -~43215~^~315~^0.053^3^0.006^~1~^~A~^^^1^0.043^0.064^2^0.026^0.079^~2, 3~^~02/01/2003~ -~43215~^~404~^0.022^3^0.012^~1~^~A~^^^1^0.009^0.047^2^-0.031^0.075^~2, 3~^~02/01/2003~ -~43215~^~405~^0.027^3^0.013^~1~^~A~^^^1^0.011^0.052^2^-0.028^0.082^~2, 3~^~02/01/2003~ -~43215~^~406~^0.007^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~ -~43215~^~410~^0.861^3^0.033^~1~^~A~^^^1^0.807^0.919^2^0.721^1.001^~2, 3~^~02/01/2003~ -~43215~^~415~^0.029^3^0.008^~1~^~A~^^^1^0.016^0.043^2^-0.004^0.063^~2, 3~^~02/01/2003~ -~43215~^~605~^0.059^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~606~^1.250^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~607~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~608~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~609~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~610~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~611~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~612~^0.013^2^^~1~^~A~^^^1^0.013^0.014^1^^^^~12/01/2007~ -~43215~^~613~^0.793^2^^~1~^~A~^^^1^0.729^0.857^1^^^^~12/01/2007~ -~43215~^~614~^0.377^2^^~1~^~A~^^^1^0.314^0.440^1^^^^~12/01/2007~ -~43215~^~615~^0.034^2^^~1~^~A~^^^1^0.027^0.042^1^^^^~12/01/2007~ -~43215~^~617~^2.725^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~43215~^~618~^3.685^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~43215~^~619~^0.527^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~43215~^~620~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~621~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~624~^0.028^2^^~1~^~A~^^^1^0.028^0.029^1^^^^~12/01/2007~ -~43215~^~625~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~626~^0.013^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~ -~43215~^~627~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~628~^0.057^2^^~1~^~A~^^^1^0.052^0.061^1^^^^~12/01/2007~ -~43215~^~629~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~630~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~631~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~645~^2.794^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~646~^4.213^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~653~^0.004^2^^~1~^~A~^^^1^0.000^0.009^1^^^~1~^~12/01/2007~ -~43215~^~654~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~663~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~666~^0.059^2^^~1~^~A~^^^1^0.057^0.062^1^^^^~12/01/2007~ -~43215~^~671~^0.000^2^^~1~^~A~^^^1^0.000^0.000^^^^~1~^~12/01/2007~ -~43215~^~673~^0.013^2^^~1~^~A~^^^1^0.010^0.015^1^^^^~12/01/2007~ -~43215~^~674~^2.725^2^^~1~^~A~^^^1^1.817^3.633^1^^^^~12/01/2007~ -~43215~^~675~^3.626^2^^~1~^~A~^^^1^3.191^4.061^1^^^^~12/01/2007~ -~43215~^~693~^0.000^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~695~^0.059^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~ -~43215~^~851~^0.527^2^^~1~^~A~^^^1^0.518^0.537^1^^^^~12/01/2007~ -~43216~^~312~^0.221^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~404~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~405~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~406~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~415~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43216~^~606~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43216~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43216~^~645~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43216~^~646~^0.000^0^^~7~^^^^^^^^^^^~02/01/2005~ -~43217~^~312~^0.115^15^0.008^~1~^~A~^^^2^0.060^0.213^6^0.097^0.134^~2, 3~^~08/01/2014~ -~43217~^~315~^0.113^17^0.003^~1~^~A~^^^2^0.084^0.168^9^0.106^0.121^~2, 3~^~08/01/2014~ -~43217~^~404~^0.024^6^0.002^~1~^~A~^^^1^0.016^0.029^4^0.019^0.028^~2, 3~^~05/01/2011~ -~43217~^~405~^0.065^6^0.002^~1~^~A~^^^1^0.058^0.076^4^0.060^0.071^~2, 3~^~04/01/2014~ -~43217~^~406~^0.991^6^0.025^~1~^~A~^^^1^0.851^1.067^4^0.922^1.060^~2, 3~^~04/01/2014~ -~43217~^~410~^0.309^0^^~4~^~BFSN~^~11549~^^^^^^^^^~05/01/2011~ -~43217~^~415~^0.098^6^0.003^~1~^~A~^^^1^0.082^0.104^4^0.091^0.106^~2, 3~^~04/01/2014~ -~43217~^~501~^0.009^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~502~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~503~^0.025^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~504~^0.034^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~505~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~506~^0.008^0^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43217~^~507~^0.013^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~508~^0.036^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~509~^0.018^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~510~^0.025^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~511~^0.028^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~512~^0.020^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~513~^0.037^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~514~^0.183^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~515~^0.586^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~516~^0.026^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~517~^0.021^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~518~^0.035^0^^~1~^~A~^^^^^^^^^^~04/01/2014~ -~43217~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43217~^~606~^0.041^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43217~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~613~^0.031^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~614~^0.011^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~617~^0.043^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~618~^0.115^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~619~^0.006^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~626~^0.002^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43217~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2008~ -~43217~^~645~^0.044^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43217~^~646~^0.121^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43218~^~312~^0.300^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~404~^0.400^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~405~^0.400^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~406~^2.120^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~415~^0.280^1^^~1~^^^^^^^^^^^~02/01/2005~ -~43218~^~606~^0.496^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43218~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~609~^0.003^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~611~^0.008^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~612~^0.005^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~613~^0.418^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~614~^0.028^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~617~^1.306^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~618~^0.880^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~619~^0.044^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~626~^0.017^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~645~^1.327^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43218~^~646~^0.925^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43218~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~671~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43218~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~ -~43218~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43241~^~312~^0.407^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~404~^0.320^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~405~^0.550^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~406~^1.800^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~415~^0.100^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~606~^0.711^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~609~^0.003^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~611~^0.003^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~612~^0.014^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~613~^0.567^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~614~^0.095^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~617~^3.164^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~618~^1.548^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~619~^0.092^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~620~^0.002^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~626~^0.023^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~628~^0.007^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~645~^3.205^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43241~^~646~^1.656^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43245~^~312~^0.473^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~315~^2.474^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~404~^0.680^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~405~^0.770^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~406~^9.090^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~410~^0.775^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~415~^0.910^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~606~^0.800^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43245~^~607~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~609~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~611~^0.003^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~612~^0.006^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~613~^0.540^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~614~^0.182^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~617~^1.929^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~618~^2.219^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~619~^0.073^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~620~^0.001^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~626~^0.017^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~628~^0.005^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~645~^1.951^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~646~^2.293^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~672~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~687~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~689~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43245~^~697~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43260~^~312~^2.600^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~404~^1.500^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~405~^0.350^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~406~^25.600^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~415~^2.000^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43260~^~606~^2.162^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~607~^0.036^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~608~^0.009^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~609~^0.009^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~610~^0.019^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~611~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~612~^0.085^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~613~^1.100^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~614~^0.841^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~617~^1.147^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~618~^0.911^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~619~^0.114^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~620~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~621~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~626~^0.031^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~627~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~628~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~629~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~630~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~631~^0.000^0^^~7~^^^^^^^^^^^~02/01/2009~ -~43260~^~645~^1.189^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43260~^~646~^1.027^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43261~^~312~^0.011^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~315~^0.035^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~404~^0.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~405~^0.180^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~406~^0.100^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~415~^0.040^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~501~^0.028^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~502~^0.202^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~503~^0.269^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~504~^0.496^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~505~^0.439^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~506~^0.145^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~507~^0.045^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~508~^0.270^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~509~^0.247^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~510~^0.407^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~511~^0.151^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~512~^0.122^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~513~^0.212^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~514~^0.394^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~515~^0.966^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~516~^0.121^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~517~^0.581^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~518~^0.305^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43261~^~606~^0.119^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~607~^0.009^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~608~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~609~^0.002^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~610~^0.004^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~611~^0.003^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~612~^0.017^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~613~^0.055^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~614~^0.019^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~617~^0.041^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~618~^0.010^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~619~^0.006^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~626~^0.007^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~645~^0.050^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43261~^~646~^0.016^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43268~^~312~^0.022^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43268~^~404~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~405~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~406~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~415~^0.000^0^^~7~^^^^^^^^^^^~03/01/2007~ -~43268~^~606~^3.186^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~607~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~609~^0.129^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~610~^0.129^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~611~^1.071^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~612~^0.435^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~613~^0.618^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~614~^0.806^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~617~^1.342^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~618~^1.077^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~619~^0.078^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~626~^0.012^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~645~^1.357^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43268~^~646~^1.158^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43269~^~312~^0.060^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~315~^0.011^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~404~^0.040^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~405~^0.190^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~406~^0.640^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~410~^0.348^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~43269~^~415~^0.050^1^^~1~^^^^^^^^^^^~03/01/2009~ -~43269~^~606~^3.090^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~608~^0.092^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~609~^0.057^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~610~^0.113^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~611~^0.338^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~612~^0.451^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~613~^1.267^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~614~^0.654^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~617~^1.690^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~618~^0.576^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~619~^0.063^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~620~^0.024^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~626~^0.110^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~628~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~645~^1.872^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43269~^~646~^0.663^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43273~^~312~^0.028^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~404~^0.010^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43273~^~405~^0.130^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~406~^0.100^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~415~^0.050^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~501~^0.134^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~502~^0.533^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~503~^0.704^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~504~^1.230^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~505~^0.968^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~506~^0.359^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~507~^0.110^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~508~^0.645^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~509~^0.637^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~510~^0.742^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~511~^0.553^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~512~^0.397^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~513~^0.623^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~514~^0.819^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~515~^2.605^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~516~^0.267^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~517~^1.385^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~518~^0.673^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~ -~43273~^~606~^2.646^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~607~^0.130^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~608~^0.028^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~609~^0.037^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~610~^0.074^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~611~^0.065^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~612~^0.436^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~613~^1.264^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~614~^0.482^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~617~^0.985^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~618~^0.103^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~619~^0.037^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~626~^0.148^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~645~^1.189^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43273~^~646~^0.140^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43274~^~312~^0.032^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~315~^0.011^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~404~^0.040^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~405~^0.185^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~406~^0.125^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~410~^0.845^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~415~^0.045^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~501~^0.091^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~502~^0.308^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~503~^0.429^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~504~^0.869^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~505~^0.750^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~506~^0.252^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~507~^0.055^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~508~^0.384^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~509~^0.401^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~510~^0.522^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~511~^0.311^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~512~^0.232^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~513~^0.243^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~514~^0.680^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~515~^1.725^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~516~^0.187^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~517~^0.880^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~518~^0.495^0^^~1~^~A~^^^^^^^^^^~06/01/2008~ -~43274~^~521~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~606~^10.000^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~ -~43274~^~607~^0.505^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~608~^0.146^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~609~^0.175^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~610~^0.396^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~611~^0.440^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~612~^1.449^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~613~^3.998^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~614~^1.738^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~615~^0.024^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~617~^3.632^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~618~^0.464^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~619~^0.083^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~ -~43274~^~620~^0.027^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~624~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~625~^0.119^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~626~^0.211^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~628~^0.015^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43274~^~645~^3.996^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~ -~43274~^~646~^0.575^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~ -~43274~^~652~^0.146^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~653~^0.081^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~672~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~685~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~687~^0.018^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~689~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~697~^0.000^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43274~^~851~^0.083^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~ -~43275~^~312~^0.033^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~404~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~405~^0.390^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~406~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~415~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~606~^4.410^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~607~^0.233^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~608~^0.081^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~609~^0.085^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~610~^0.143^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~611~^0.108^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~612~^0.719^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~613~^2.038^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~614~^0.851^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~617~^1.682^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~618~^0.137^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~619~^0.085^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~626~^0.231^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~645~^2.005^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43275~^~646~^0.222^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~312~^0.015^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~404~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~405~^0.190^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~406~^0.950^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~415~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~606~^18.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~607~^0.820^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~608~^0.238^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~609~^0.279^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~610~^0.550^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~611~^0.377^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~612~^2.953^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~613~^8.645^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~614~^3.314^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~617~^6.874^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~618~^0.632^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~619~^0.402^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~626~^0.804^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~645~^8.071^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43276~^~646~^1.033^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43278~^~312~^0.033^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~404~^0.050^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~405~^0.430^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~406~^0.130^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~415~^0.120^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~606~^8.790^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~607~^0.455^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~608~^0.270^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~609~^0.204^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~610~^0.336^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~611~^0.415^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~612~^1.438^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~613~^3.897^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~614~^1.603^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~617~^3.442^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~618~^0.264^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~619~^0.145^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~626~^0.369^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~645~^4.102^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43278~^~646~^0.409^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43282~^~312~^0.592^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~404~^0.220^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~405~^0.300^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~406~^7.920^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~415~^0.620^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~606~^3.955^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~611~^0.047^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~612~^0.117^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~613~^2.563^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~614~^1.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~617~^4.119^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~618~^2.691^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~619~^0.492^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~620~^0.164^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~626~^0.725^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43282~^~628~^0.012^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~629~^0.012^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~631~^0.035^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~645~^4.891^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43282~^~646~^3.487^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~312~^0.084^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~404~^0.070^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~406~^7.530^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~415~^0.750^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~606~^3.908^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43283~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~611~^0.065^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~612~^0.117^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~613~^2.879^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~614~^0.847^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~617~^4.012^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~618~^1.055^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~619~^0.130^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~626~^1.055^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43283~^~628~^0.013^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~645~^5.627^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43283~^~646~^1.185^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~ -~43285~^~312~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~404~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~405~^0.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~406~^0.090^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~415~^0.010^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~606~^1.052^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~612~^0.009^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~613~^0.717^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~614~^0.318^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~617~^2.272^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~618~^1.635^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~619~^0.115^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~620~^0.019^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~621~^0.005^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~626~^0.057^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~628~^0.004^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~629~^0.001^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~645~^2.339^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43285~^~646~^1.778^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43287~^~312~^0.763^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~404~^0.280^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~405~^0.350^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~406~^7.600^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~415~^0.570^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~606~^3.739^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~611~^0.005^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~612~^0.087^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~613~^2.510^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~614~^1.015^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~617~^4.632^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~618~^2.324^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~619~^0.096^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~620~^0.113^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~621~^0.015^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~626~^0.677^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43287~^~628~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~629~^0.005^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~631~^0.044^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~645~^5.462^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43287~^~646~^2.733^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43297~^~312~^0.064^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~404~^0.450^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~405~^0.140^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~406~^2.100^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~415~^0.200^0^^~4~^^^^^^^^^^^~04/01/1985~ -~43297~^~501~^0.106^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~502~^0.495^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~503~^0.593^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~504~^0.985^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~505~^1.049^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~506~^0.281^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~507~^0.141^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~508~^0.502^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~509~^0.396^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~510~^0.673^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~511~^0.819^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~512~^0.476^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~513~^0.809^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~514~^1.190^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~515~^1.862^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~516~^0.888^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~517~^0.694^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~518~^0.481^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~ -~43297~^~521~^0.207^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2003~ -~43297~^~606~^23.056^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~610~^0.250^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~611~^0.239^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~612~^0.954^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~613~^14.348^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~614~^7.266^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~617~^26.581^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~618~^6.507^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~619~^0.813^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~626~^1.963^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~645~^28.555^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43297~^~646~^7.320^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43299~^~312~^0.380^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~315~^0.889^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~43299~^~404~^0.000^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~405~^0.140^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~406~^0.500^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43299~^~410~^0.116^0^^~4~^~BFSN~^~16127~^^^^^^^^^~04/01/2007~ -~43299~^~415~^0.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43299~^~606~^1.172^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~612~^0.022^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~613~^0.860^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~614~^0.289^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~617~^1.766^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~618~^4.032^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~619~^0.540^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~626~^0.022^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~645~^1.789^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43299~^~646~^4.572^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43311~^~312~^0.057^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~315~^0.120^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~43311~^~404~^0.070^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~405~^0.010^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~406~^0.920^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~410~^0.245^0^^~4~^~BFSN~^~11357~^^^^^^^^^~02/01/2007~ -~43311~^~415~^0.190^1^^~1~^^^^^^^^^^^~02/01/2007~ -~43311~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2017~ -~43311~^~606~^0.051^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~610~^0.001^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~611~^0.007^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~612~^0.001^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~613~^0.031^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~614~^0.007^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~617~^0.002^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~618~^0.063^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~619~^0.020^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~626~^0.002^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~645~^0.005^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43311~^~646~^0.085^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43312~^~312~^0.104^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~404~^0.030^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~405~^0.040^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~406~^0.480^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~415~^0.080^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43312~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43312~^~606~^0.039^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~613~^0.033^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~614~^0.004^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~617~^0.022^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~618~^0.071^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~619~^0.027^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~626~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~645~^0.022^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43312~^~646~^0.098^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43325~^~312~^0.119^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~404~^0.740^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~405~^0.280^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~406~^5.320^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~415~^0.350^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43325~^~606~^2.624^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43325~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~610~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~611~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~612~^0.131^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~613~^1.578^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~614~^0.865^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~617~^3.388^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~618~^0.905^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~619~^0.171^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~626~^0.372^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~645~^3.760^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43325~^~646~^1.076^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~312~^0.132^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~404~^0.730^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~405~^0.310^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~406~^5.740^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~415~^0.330^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43326~^~606~^2.781^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~ -~43326~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~610~^0.032^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~611~^0.025^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~612~^0.138^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~613~^1.693^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~614~^0.900^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~617~^3.618^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~618~^0.868^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~619~^0.145^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~626~^0.384^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~645~^4.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43326~^~646~^1.013^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~312~^0.079^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~404~^0.750^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~405~^0.200^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~406~^4.020^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~415~^0.400^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43327~^~606~^1.801^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43327~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43327~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~610~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~611~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~612~^0.090^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~613~^1.114^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~614~^0.567^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~617~^2.368^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~618~^0.478^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~619~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~626~^0.239^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~645~^2.607^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43327~^~646~^0.537^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43329~^~312~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~404~^0.010^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~405~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~406~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~410~^0.066^2^^~1~^~A~^^^^0.000^0.132^^^^^~02/01/2003~ -~43329~^~415~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~606~^2.962^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~612~^0.022^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~613~^2.120^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~614~^0.777^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~617~^4.494^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~618~^9.151^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~619~^1.203^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~620~^0.019^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~621~^0.005^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~626~^0.076^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~628~^0.039^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~629~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~645~^4.628^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43329~^~646~^10.396^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~312~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~404~^0.040^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~405~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~406~^0.700^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~415~^0.080^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~606~^5.435^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~607~^0.013^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~608~^0.008^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~609~^0.004^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~610~^0.012^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~611~^0.013^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~612~^0.086^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~613~^3.786^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~614~^1.439^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~617~^8.197^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~618~^17.244^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~619~^2.304^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~626~^0.111^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~627~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~628~^0.067^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~645~^8.415^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43331~^~646~^19.584^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43340~^~312~^0.037^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~404~^0.040^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~405~^0.390^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~406~^0.320^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~415~^0.100^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43340~^~606~^19.051^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~607~^1.509^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~608~^0.559^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~609~^0.300^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~610~^0.749^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~611~^1.019^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~612~^3.377^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~613~^8.092^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~614~^2.677^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~617~^7.732^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~618~^0.320^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~619~^0.340^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~626~^0.460^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~645~^8.721^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43340~^~646~^0.659^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43344~^~312~^0.038^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~315~^0.288^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~404~^0.010^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~405~^0.020^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~406~^0.080^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~410~^0.092^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~43344~^~415~^0.020^0^^~4~^^^^^^^^^^^~08/01/1985~ -~43344~^~606~^0.005^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~613~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~614~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~617~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~618~^0.029^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~619~^0.021^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~645~^0.014^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43344~^~646~^0.050^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43345~^~312~^0.011^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43345~^~315~^0.008^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~404~^0.009^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~405~^6.800^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43345~^~406~^80.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43345~^~410~^0.018^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43345~^~415~^8.000^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~ -~43345~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~43345~^~606~^0.010^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43345~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~612~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~613~^0.010^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~614~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~617~^0.037^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~618~^0.025^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~619~^0.009^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~626~^0.001^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~628~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43345~^~645~^0.038^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~ -~43345~^~646~^0.034^1^^~9~^^^^^^^^^^^~12/01/2006~ -~43346~^~312~^0.022^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43346~^~315~^0.008^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~404~^0.010^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~405~^0.030^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~406~^0.160^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43346~^~410~^0.065^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~415~^0.018^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43346~^~606~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43346~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43346~^~645~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43346~^~646~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43352~^~312~^0.028^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~404~^0.020^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~405~^0.160^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~406~^0.130^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~415~^0.070^0^^~1~^^^^^^^^^^^~01/01/2007~ -~43352~^~606~^0.632^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~607~^0.031^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~608~^0.007^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~609~^0.009^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~610~^0.018^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~611~^0.016^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~612~^0.104^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~613~^0.302^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~614~^0.115^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~617~^0.235^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~618~^0.022^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~619~^0.009^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~626~^0.036^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~645~^0.284^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43352~^~646~^0.031^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43355~^~312~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~315~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43355~^~404~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~405~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~406~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~415~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~606~^3.300^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~613~^2.400^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~614~^0.900^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~617~^4.500^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~618~^9.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~619~^1.600^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~645~^4.500^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43355~^~646~^10.600^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43364~^~312~^0.523^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~404~^0.015^4^0.007^~1~^~A~^^^1^0.007^0.037^3^-0.008^0.038^~2, 3~^~05/01/2005~ -~43364~^~405~^0.100^5^0.057^~1~^~A~^^^1^0.007^0.242^4^-0.058^0.258^~2, 3~^~05/01/2005~ -~43364~^~406~^1.262^3^1.255^~1~^~A~^^^1^0.007^3.771^2^-4.136^6.660^~2, 3~^~05/01/2005~ -~43364~^~410~^1.185^3^0.065^~1~^~A~^^^1^1.093^1.310^2^0.907^1.464^~2, 3~^~05/01/2005~ -~43364~^~415~^0.213^3^0.007^~1~^~A~^^^1^0.199^0.221^2^0.183^0.243^~2, 3~^~05/01/2005~ -~43364~^~606~^2.458^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~611~^0.045^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~612~^0.002^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~613~^1.856^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~614~^0.418^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~617~^9.242^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~618~^8.860^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~619~^1.096^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~626~^0.034^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~628~^0.184^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~630~^0.060^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43364~^~645~^9.520^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43364~^~646~^9.956^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~ -~43365~^~312~^0.200^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~404~^0.040^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~405~^0.030^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~406~^0.730^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~415~^0.140^1^^~1~^^^^^^^^^^^~03/01/2007~ -~43365~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43365~^~606~^0.014^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~613~^0.010^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~614~^0.003^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~617~^0.016^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~618~^0.040^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~619~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~645~^0.016^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43365~^~646~^0.042^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43366~^~312~^0.056^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~404~^0.050^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~405~^0.130^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~406~^5.730^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~415~^0.420^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~606~^3.383^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~611~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~612~^0.090^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~613~^2.226^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~614~^0.738^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~617~^3.753^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~618~^2.485^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~619~^0.160^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~620~^0.160^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~621~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~626~^0.788^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43366~^~628~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~630~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~631~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~645~^4.651^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43366~^~646~^2.934^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~312~^0.154^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~404~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~405~^0.240^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~406~^3.560^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~415~^0.330^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~606~^3.054^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43367~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~611~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~612~^0.070^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~613~^1.767^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~614~^0.818^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~617~^2.335^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~618~^2.266^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~619~^0.110^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~620~^0.240^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~621~^0.050^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~626~^0.459^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43367~^~628~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~630~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~631~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~645~^2.864^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43367~^~646~^2.715^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43369~^~312~^0.074^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~315~^0.073^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43369~^~404~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~405~^0.051^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~406~^0.106^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~410~^0.082^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~415~^0.011^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~606~^0.310^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~607~^0.005^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~608~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~609~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~610~^0.002^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~611~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~612~^0.010^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~613~^0.143^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~614~^0.139^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~615~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~617~^0.048^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~618~^0.008^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~624~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~626~^0.001^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~645~^0.049^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~646~^0.009^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43369~^~652~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43369~^~653~^0.000^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~ -~43378~^~312~^0.164^8^0.011^~1~^~A~^^^1^0.137^0.222^7^0.138^0.189^~2, 3~^~02/01/2003~ -~43378~^~315~^0.022^8^0.000^~1~^~A~^^^1^0.022^0.022^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~404~^0.404^8^0.023^~1~^~A~^^^1^0.315^0.485^7^0.348^0.459^~2, 3~^~02/01/2003~ -~43378~^~405~^0.264^8^0.009^~1~^~A~^^^1^0.227^0.315^7^0.242^0.286^~2, 3~^~02/01/2003~ -~43378~^~406~^11.099^8^0.388^~1~^~A~^^^1^9.840^12.600^7^10.180^12.017^~2, 3~^~02/01/2003~ -~43378~^~410~^1.171^8^0.067^~1~^~A~^^^1^0.940^1.510^7^1.014^1.329^~2, 3~^~02/01/2003~ -~43378~^~415~^0.349^8^0.017^~1~^~A~^^^1^0.283^0.431^7^0.308^0.390^~2, 3~^~02/01/2003~ -~43378~^~501~^0.310^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~502~^1.450^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~503~^1.737^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~504~^2.884^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~505~^3.072^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~506~^0.824^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~507~^0.412^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~508~^1.469^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~509~^1.159^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~510~^1.971^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~511~^2.398^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~512~^1.392^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~513~^2.370^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~514~^3.484^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~515~^5.452^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~516~^2.600^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~517~^2.031^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~518~^1.408^0^^~1~^~A~^^^^^^^^^^~01/01/2003~ -~43378~^~521~^0.650^0^^~1~^~A~^^^^^^^^^^~03/01/2009~ -~43378~^~605~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~606~^13.739^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~ -~43378~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~609~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~610~^0.005^8^0.005^~1~^~A~^^^1^0.000^0.038^7^-0.006^0.016^~1, 2, 3~^~02/01/2003~ -~43378~^~611~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~612~^0.532^8^0.014^~1~^~A~^^^1^0.482^0.611^7^0.498^0.566^~2, 3~^~02/01/2003~ -~43378~^~613~^8.732^8^0.307^~1~^~A~^^^1^7.583^10.297^7^8.007^9.458^~2, 3~^~02/01/2003~ -~43378~^~614~^4.287^8^0.130^~1~^~A~^^^1^3.861^5.040^7^3.979^4.596^~2, 3~^~02/01/2003~ -~43378~^~615~^0.078^8^0.003^~1~^~A~^^^1^0.069^0.096^7^0.071^0.085^~2, 3~^~02/01/2003~ -~43378~^~617~^16.915^8^0.508^~1~^~A~^^^1^14.589^19.433^7^15.713^18.117^~2, 3~^~02/01/2003~ -~43378~^~618~^4.000^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43378~^~619~^0.200^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~ -~43378~^~620~^0.154^8^0.003^~1~^~A~^^^1^0.144^0.165^7^0.148^0.160^~2, 3~^~02/01/2003~ -~43378~^~621~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~624~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~625~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~626~^1.212^8^0.020^~1~^~A~^^^1^1.148^1.286^7^1.166^1.258^~2, 3~^~02/01/2003~ -~43378~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~628~^0.320^8^0.010^~1~^~A~^^^1^0.296^0.381^7^0.297^0.343^~2, 3~^~02/01/2003~ -~43378~^~629~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~630~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~631~^0.000^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~ -~43378~^~645~^18.520^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~646~^4.548^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~ -~43378~^~652~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~653~^0.104^8^0.003^~1~^~A~^^^1^0.093^0.120^7^0.096^0.112^~2, 3~^~02/01/2003~ -~43378~^~672~^0.194^8^0.005^~1~^~A~^^^1^0.179^0.220^7^0.182^0.206^~2, 3~^~02/01/2003~ -~43378~^~675~^4.000^8^0.064^~1~^~A~^^^1^3.778^4.322^7^3.849^4.151^~2, 3~^~01/01/2008~ -~43378~^~685~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~687~^0.073^8^0.022^~1~^~A~^^^1^0.000^0.132^7^0.022^0.124^~1, 2, 3~^~02/01/2003~ -~43378~^~689~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~697~^0.000^8^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~02/01/2003~ -~43378~^~851~^0.200^8^0.005^~1~^~A~^^^1^0.179^0.220^7^0.188^0.211^~2, 3~^~02/01/2003~ -~43382~^~312~^0.055^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~404~^0.009^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~405~^0.018^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~406~^0.091^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~415~^0.052^0^^~4~^~BFZY~^~09078~^^^^^^^^^~02/01/2003~ -~43382~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43382~^~606~^0.010^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~613~^0.008^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~614~^0.002^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~617~^0.022^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~618~^0.042^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~619~^0.028^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~626~^0.001^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2007~ -~43382~^~645~^0.023^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43382~^~646~^0.070^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~ -~43384~^~312~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~404~^0.060^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~405~^0.130^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~406~^2.630^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~415~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~606~^11.676^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~610~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~611~^0.040^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~612~^0.821^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~613~^6.559^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~614~^4.196^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~617~^11.736^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~618~^0.811^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~619~^0.240^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~626~^1.562^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~645~^13.299^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43384~^~646~^1.051^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43387~^~312~^0.083^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~315~^0.263^0^^~4~^~BFSN~^~11569~^^^^^^^^^~03/01/2007~ -~43387~^~404~^0.010^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~405~^0.060^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~406~^0.360^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~410~^0.214^0^^~4~^~BFSN~^~11569~^^^^^^^^^~05/01/2007~ -~43387~^~415~^0.040^1^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43387~^~606~^0.070^0^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~609~^0.001^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~610~^0.002^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~611~^0.002^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~612~^0.003^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~613~^0.054^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~614~^0.010^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~617~^0.005^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~618~^0.036^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~619~^0.084^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~626~^0.014^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43387~^~645~^0.020^0^^~1~^^^^^^^^^^^~05/01/2007~ -~43387~^~646~^0.120^0^^~1~^^^^^^^^^^^~05/01/2007~ -~43390~^~312~^0.093^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~404~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~406~^5.090^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~415~^0.410^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~606~^2.831^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~611~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~612~^0.070^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~613~^1.725^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~614~^0.698^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~617~^2.582^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~618~^2.054^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~619~^0.110^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~620~^0.199^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~621~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~626~^0.518^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~ -~43390~^~628~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~630~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~631~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~645~^3.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43390~^~646~^2.473^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~312~^0.094^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~404~^0.060^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~405~^0.180^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~406~^5.440^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~415~^0.460^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~606~^1.368^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43391~^~607~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~608~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~609~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~611~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~612~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~613~^0.825^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~614~^0.493^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~617~^0.855^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~618~^1.087^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~619~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~620~^0.211^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~621~^0.040^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~626~^0.151^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~627~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~ -~43391~^~628~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~630~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~631~^0.030^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43391~^~645~^1.046^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43391~^~646~^1.408^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~ -~43392~^~312~^0.644^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~404~^0.050^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~405~^0.180^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~406~^0.900^0^^~1~^^^^^^^^^^^~03/01/2007~ -~43392~^~415~^0.810^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43392~^~606~^0.046^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~613~^0.034^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~614~^0.004^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~617~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~618~^0.076^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~619~^0.013^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~645~^0.005^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43392~^~646~^0.089^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43393~^~312~^0.000^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~404~^0.200^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~405~^0.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~43393~^~406~^5.200^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~415~^0.080^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~ -~43393~^~605~^0.000^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~ -~43393~^~606~^0.430^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~607~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~608~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~609~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2011~ -~43393~^~610~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~ -~43393~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~613~^0.405^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~614~^0.021^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~617~^0.316^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~618~^1.166^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~619~^0.054^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~ -~43393~^~621~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~626~^0.014^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~ -~43393~^~627~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~628~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~629~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~630~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~631~^0.000^0^^~4~^~FLM~^^~N~^^^^^^^^~01/01/2003~ -~43393~^~645~^0.330^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43393~^~646~^1.220^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43396~^~312~^0.028^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~404~^0.010^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~405~^0.130^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~406~^0.100^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~415~^0.050^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~606~^0.619^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~607~^0.029^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~608~^0.010^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~609~^0.010^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~610~^0.019^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~611~^0.019^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~612~^0.106^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~613~^0.302^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~614~^0.116^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~617~^0.233^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~618~^0.029^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~619~^0.010^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~620~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~621~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~626~^0.039^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~627~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~628~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~629~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~630~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~631~^0.000^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~645~^0.282^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43396~^~646~^0.039^0^^~4~^^^^^^^^^^^~01/01/2007~ -~43398~^~312~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~404~^0.030^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~405~^0.350^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~406~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~415~^0.070^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~606~^19.651^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~607~^1.038^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~608~^0.359^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~609~^0.379^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~610~^0.639^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~611~^0.479^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~612~^3.204^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~613~^9.082^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~614~^3.792^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~617~^7.495^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~618~^0.609^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~619~^0.379^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~626~^1.028^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~645~^8.932^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43398~^~646~^0.988^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43401~^~312~^0.011^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~315~^0.011^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~405~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~406~^0.188^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~410~^0.001^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~606~^25.128^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~613~^7.368^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~614~^17.761^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~617~^1.705^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~618~^0.576^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~619~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~645~^1.705^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43401~^~646~^0.576^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~ -~43404~^~312~^0.007^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~315~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~404~^0.003^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~405~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~406~^0.028^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~410~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~415~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~ -~43404~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~43404~^~606~^0.000^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43404~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43404~^~646~^0.000^0^^~4~^^^^^^^^^^^~03/01/2006~ -~43405~^~312~^0.032^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~405~^0.370^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~406~^0.090^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~415~^0.080^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43405~^~606~^17.744^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~607~^1.098^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~608~^0.489^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~609~^0.289^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~610~^0.619^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~611~^0.519^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~612~^3.054^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~613~^7.774^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~614~^3.244^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~617~^6.008^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~618~^0.619^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~619~^0.349^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~626~^0.878^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~645~^7.256^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43405~^~646~^0.968^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43406~^~312~^0.245^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~315~^0.261^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~404~^23.375^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~405~^17.500^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~406~^127.500^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~410~^4.600^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~415~^0.000^1^^~1~^~A~^^^^^^^^^^~05/01/2011~ -~43406~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43406~^~606~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43406~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43406~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43406~^~646~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43408~^~312~^0.065^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~405~^0.030^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~406~^0.300^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43408~^~415~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~606~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~617~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43408~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43408~^~646~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43410~^~312~^0.500^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~404~^1.277^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~405~^0.362^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~406~^12.766^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~415~^0.851^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~606~^1.130^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43410~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~612~^0.008^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~613~^0.823^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~614~^0.299^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~617~^1.800^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~618~^4.044^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~619~^0.536^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~626~^1.409^0^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43410~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~628~^0.016^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2005~ -~43410~^~645~^3.226^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~ -~43410~^~646~^4.581^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43417~^~312~^0.080^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~404~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~405~^0.040^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~406~^0.710^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~415~^0.070^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43417~^~606~^0.847^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~610~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~611~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~612~^0.063^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~613~^0.505^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~614~^0.231^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~617~^0.791^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~618~^0.077^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~619~^0.026^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~620~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~626~^0.086^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~628~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~645~^0.920^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43417~^~646~^0.108^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~312~^0.020^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~404~^0.060^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~405~^0.060^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~406~^1.340^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~415~^0.090^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43432~^~606~^0.705^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~610~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~611~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~612~^0.048^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~613~^0.417^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~614~^0.204^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~617~^0.689^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~618~^0.115^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~619~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~620~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~626~^0.064^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~628~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~645~^0.782^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43432~^~646~^0.140^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43441~^~312~^0.287^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~315~^1.909^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~404~^0.380^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~405~^0.300^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~406~^2.970^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~410~^0.619^0^^~4~^~RA~^^^^^^^^^^~05/01/2005~ -~43441~^~415~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~501~^0.106^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~502~^0.273^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~503~^0.347^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~504~^0.635^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~505~^0.233^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~506~^0.153^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~507~^0.196^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~508~^0.456^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~509~^0.229^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~510~^0.412^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~511~^0.354^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~512~^0.198^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~513~^0.319^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~514~^0.468^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~515~^2.963^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~516~^0.328^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~517~^1.036^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~518~^0.463^0^^~4~^~RA~^^^^^^^^^^~11/01/2002~ -~43441~^~606~^0.495^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~612~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~613~^0.316^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~614~^0.170^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~617~^0.601^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~618~^1.073^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~619~^0.113^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~626~^0.006^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~628~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~645~^0.609^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43441~^~646~^1.184^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43447~^~312~^0.249^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~404~^0.140^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~405~^0.160^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~406~^1.480^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~415~^0.210^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~606~^4.344^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~612~^0.016^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~613~^2.938^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~614~^0.977^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~617~^8.889^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~618~^16.488^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~619~^0.597^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~626~^0.025^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~628~^0.118^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~645~^9.040^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43447~^~646~^17.093^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~312~^0.206^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~404~^0.150^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~405~^0.060^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~406~^0.430^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~415~^0.130^0^^~1~^^^^^^^^^^^~04/01/2007~ -~43449~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43449~^~606~^0.103^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~613~^0.097^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~614~^0.006^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~617~^0.035^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~618~^0.093^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~619~^0.078^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~645~^0.035^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43449~^~646~^0.172^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43450~^~312~^0.013^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~315~^0.059^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~404~^0.025^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~405~^0.101^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~406~^0.151^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~410~^0.195^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~415~^0.029^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~ -~43450~^~606~^0.705^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~607~^0.034^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~608~^0.024^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~609~^0.018^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~610~^0.028^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~611~^0.031^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~612~^0.113^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~613~^0.304^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~614~^0.137^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~617~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~618~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~646~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43450~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43450~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~43476~^~312~^0.075^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~404~^0.060^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~405~^0.020^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~406~^0.240^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~415~^0.020^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43476~^~606~^0.259^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~612~^0.005^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~613~^0.191^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~614~^0.063^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~617~^0.395^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~618~^0.901^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~619~^0.116^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~626~^0.005^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~645~^0.400^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43476~^~646~^1.017^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43479~^~312~^0.009^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~404~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~405~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~406~^0.000^1^^~1~^^^^^^^^^^^~12/01/2006~ -~43479~^~415~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~ -~43479~^~606~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43479~^~645~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43479~^~646~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~43483~^~312~^0.702^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~404~^0.390^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~405~^0.270^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~406~^4.420^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~415~^0.360^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43483~^~606~^0.670^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~607~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~608~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~609~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~610~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~611~^0.003^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~612~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~613~^0.490^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~614~^0.143^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~617~^0.686^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~618~^1.869^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~619~^0.110^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~620~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~621~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~626~^0.013^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~627~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~628~^0.019^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~629~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~630~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~631~^0.000^0^^~4~^^^~N~^^^^^^^^~05/01/2007~ -~43483~^~645~^0.717^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43483~^~646~^1.980^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43495~^~312~^0.319^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~315~^2.903^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~404~^0.750^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~405~^0.850^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~406~^10.000^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~410~^0.896^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~415~^1.000^0^^~8~^~LC~^^~Y~^^^^^^^^~08/01/2011~ -~43495~^~605~^0.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~606~^1.000^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~ -~43495~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~611~^0.017^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~612~^0.013^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~613~^0.852^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~614~^0.057^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~617~^0.695^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~618~^0.852^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~619~^0.045^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~626~^0.005^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~ -~43495~^~645~^0.704^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43495~^~646~^0.897^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~ -~43497~^~312~^0.140^0^^~1~^^^^^^^^^^^~03/01/2009~ -~43497~^~404~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~405~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~406~^0.200^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~415~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~606~^0.273^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~612~^0.019^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~613~^0.190^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~614~^0.063^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~617~^0.127^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~618~^0.011^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~619~^0.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~620~^0.046^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~621~^0.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~626~^0.033^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~627~^0.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~628~^0.031^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~629~^0.007^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~630~^0.007^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~631~^0.021^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~645~^0.202^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43497~^~646~^0.475^0^^~4~^^^^^^^^^^^~03/01/2009~ -~43506~^~312~^0.128^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~404~^0.040^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~405~^0.180^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~406~^0.960^1^^~1~^^^^^^^^^^^~04/01/2005~ -~43506~^~415~^0.220^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~606~^12.658^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~607~^0.271^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~608~^0.199^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~609~^0.557^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~610~^0.631^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~611~^3.244^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~612~^2.052^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~613~^3.654^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~614~^1.824^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~617~^4.626^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~618~^1.345^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~619~^0.124^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~626~^0.186^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~628~^0.041^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~645~^4.977^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43506~^~646~^1.469^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43507~^~312~^0.060^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~404~^0.050^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~405~^0.100^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~406~^2.420^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~415~^0.120^0^^~1~^^^^^^^^^^^~02/01/2009~ -~43507~^~606~^12.038^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~610~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~611~^0.060^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~612~^0.939^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~613~^6.514^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~614~^3.956^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~617~^11.978^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~618~^1.109^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~619~^0.270^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~626~^1.628^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~645~^13.606^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43507~^~646~^1.379^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43514~^~312~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~315~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~04/01/2005~ -~43514~^~404~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~405~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~406~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~410~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~415~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~606~^0.000^1^^~9~^~MC~^^^^^^^^^^~04/01/2005~ -~43514~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43514~^~613~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43514~^~614~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43514~^~617~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43514~^~618~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43514~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43514~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~43514~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~43514~^~645~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43514~^~646~^0.000^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~ -~43523~^~312~^0.020^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~404~^0.020^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~405~^0.050^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~406~^0.140^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~415~^0.040^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43523~^~606~^0.517^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~607~^0.025^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~608~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~609~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~610~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~611~^0.027^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~612~^0.084^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~613~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~614~^0.079^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~617~^0.182^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~618~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~619~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~626~^0.017^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~645~^0.219^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43523~^~646~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43528~^~312~^0.198^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~315~^0.516^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~404~^0.151^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~405~^0.171^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~406~^1.984^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~410~^0.992^1^^~9~^~MC~^^^^^^^^^^~01/01/2003~ -~43528~^~415~^0.198^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~ -~43528~^~606~^0.574^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43528~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~613~^0.493^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43528~^~614~^0.081^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43528~^~617~^1.095^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43528~^~618~^2.624^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43528~^~619~^0.032^0^^~4~^^^^^^^^^^^~08/01/2014~ -~43528~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2007~ -~43528~^~645~^1.095^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43528~^~646~^2.655^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~ -~43529~^~312~^0.373^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~404~^1.300^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~405~^1.500^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~406~^20.000^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43529~^~415~^0.090^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~606~^0.503^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~612~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~613~^0.425^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~614~^0.060^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~617~^0.605^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~618~^0.804^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~619~^0.116^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~626~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~628~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~645~^0.615^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43529~^~646~^0.920^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~312~^0.020^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~404~^0.010^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~405~^0.020^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~406~^0.110^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~415~^0.030^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43535~^~606~^0.020^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~612~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~613~^0.016^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~614~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~617~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~618~^0.027^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~619~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~626~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~645~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43535~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~312~^0.040^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~405~^0.050^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~406~^0.400^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~415~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43536~^~606~^0.117^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43536~^~607~^0.006^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~608~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~609~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~610~^0.005^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~611~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~612~^0.020^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~613~^0.053^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~614~^0.019^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~617~^0.044^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~618~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~619~^0.002^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~626~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43536~^~645~^0.048^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43536~^~646~^0.005^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~ -~43537~^~312~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~404~^0.000^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~405~^0.040^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~406~^0.140^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43537~^~415~^0.400^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~606~^0.452^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~607~^0.022^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~608~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~609~^0.009^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~610~^0.019^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~611~^0.024^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~612~^0.073^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~613~^0.192^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~614~^0.069^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~617~^0.159^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~618~^0.013^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~619~^0.007^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~626~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~645~^0.192^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43537~^~646~^0.019^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~312~^0.020^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~404~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~405~^0.040^0^^~4~^~T~^^^^^^^^^^~03/01/2005~ -~43539~^~406~^0.190^0^^~4~^~T~^^^^^^^^^^~03/01/2005~ -~43539~^~415~^0.080^0^^~4~^~T~^^^^^^^^^^~04/01/2003~ -~43539~^~606~^0.370^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43539~^~607~^0.120^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~608~^0.008^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~609~^0.005^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~610~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~611~^0.013^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~612~^0.041^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~613~^0.134^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~614~^0.039^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~617~^0.093^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~618~^0.021^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~619~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~626~^0.010^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~645~^0.120^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43539~^~646~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43541~^~312~^0.175^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~315~^0.173^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~404~^0.030^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~405~^0.167^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~406~^0.182^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~410~^0.336^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~415~^0.033^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~606~^10.377^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~43541~^~607~^0.517^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~608~^0.312^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~609~^0.188^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~610~^0.403^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~611~^0.450^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~612~^1.619^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~613~^4.406^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~614~^2.138^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~615~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~617~^4.433^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~618~^0.409^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~619~^0.250^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~624~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~625~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~626~^0.361^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~645~^4.794^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~646~^0.658^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~652~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~653~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~654~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43541~^~696~^0.000^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~ -~43543~^~312~^0.020^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~404~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~405~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~406~^0.100^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~415~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~606~^0.254^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~612~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~613~^0.218^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~614~^0.036^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~617~^0.484^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~618~^1.160^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~619~^0.014^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~626~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~645~^0.484^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43543~^~646~^1.174^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43544~^~312~^0.377^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~315~^1.298^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~ -~43544~^~404~^1.600^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~405~^1.880^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~406~^25.240^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~415~^0.090^0^^~5~^^^^^^^^^^^~12/01/1989~ -~43544~^~606~^0.185^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~612~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~613~^0.163^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~614~^0.013^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~617~^0.248^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~618~^0.202^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~619~^0.030^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~626~^0.004^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~628~^0.001^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~645~^0.252^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43544~^~646~^0.231^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43546~^~312~^0.040^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~404~^0.020^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~405~^0.060^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~406~^0.540^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~415~^0.260^0^^~5~^^^^^^^^^^^~03/01/2005~ -~43546~^~606~^0.072^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~613~^0.051^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~614~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~617~^0.023^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~618~^0.028^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~619~^0.013^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~626~^0.004^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~645~^0.028^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43546~^~646~^0.041^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~312~^0.030^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~404~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~405~^0.020^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~406~^0.130^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~415~^0.060^0^^~1~^^^^^^^^^^^~03/01/2005~ -~43550~^~606~^0.058^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~611~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~613~^0.042^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~614~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~617~^0.015^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~618~^0.035^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~619~^0.012^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~626~^0.003^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~629~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~631~^0.000^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~645~^0.018^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43550~^~646~^0.047^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43566~^~312~^0.116^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~404~^0.220^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~405~^0.280^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~406~^0.420^0^^~9~^^^^^^^^^^^~05/01/2007~ -~43566~^~415~^0.180^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~606~^2.837^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~607~^0.034^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~608~^0.014^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~609~^0.007^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~610~^0.018^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~611~^0.023^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~612~^0.094^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~613~^1.648^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~614~^0.373^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~617~^6.149^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~618~^4.977^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~619~^0.047^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~626~^0.028^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~628~^0.152^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~645~^6.341^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43566~^~646~^5.024^0^^~4~^^^^^^^^^^^~05/01/2007~ -~43570~^~312~^0.590^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43570~^~315~^1.278^6^0.025^~1~^~A~^^^1^1.200^1.360^5^1.214^1.342^~2, 3~^~05/01/2012~ -~43570~^~404~^1.223^1^^~1~^~A~^^^^^^^^^^~06/01/2015~ -~43570~^~405~^1.250^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~406~^17.800^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~415~^2.640^1^^~1~^~A~^^^^^^^^^^~05/01/2012~ -~43570~^~501~^0.090^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~502~^0.240^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~503~^0.260^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~504~^0.800^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~505~^0.120^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~506~^0.100^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~507~^0.110^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~508~^0.390^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~509~^0.210^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~510~^0.340^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~511~^0.240^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~512~^0.180^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~513~^0.460^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~514~^0.480^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~515~^1.890^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~516~^0.270^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~517~^0.490^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~518~^0.380^0^^~1~^~A~^^^^^^^^^^~03/01/2007~ -~43570~^~605~^0.016^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~606~^0.640^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~ -~43570~^~607~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~608~^0.000^3^0.000^~1~^~A~^^~N~^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~609~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.005^2^0.000^0.007^~1, 2, 3~^~05/01/2012~ -~43570~^~610~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.003^^^^~2, 3~^~05/01/2012~ -~43570~^~611~^0.013^3^0.001^~1~^~A~^^^1^0.013^0.016^2^0.010^0.018^~2, 3~^~06/01/2015~ -~43570~^~612~^0.010^3^0.001^~1~^~A~^^^1^0.010^0.012^2^0.008^0.014^~2, 3~^~06/01/2015~ -~43570~^~613~^0.434^3^0.003^~1~^~A~^^^1^0.466^0.476^2^0.457^0.483^~2, 3~^~06/01/2015~ -~43570~^~614~^0.130^3^0.002^~1~^~A~^^^1^0.137^0.144^2^0.132^0.149^~2, 3~^~06/01/2015~ -~43570~^~615~^0.023^3^0.001^~1~^~A~^^^1^0.024^0.026^2^0.022^0.028^~2, 3~^~06/01/2015~ -~43570~^~617~^2.769^3^0.050^~1~^~AS~^^^1^2.672^2.838^2^2.554^2.984^~2, 3~^~05/01/2012~ -~43570~^~618~^1.209^3^0.016^~1~^~AS~^^^1^1.177^1.232^2^1.138^1.279^~2, 3~^~05/01/2012~ -~43570~^~619~^0.092^3^0.001^~1~^~AS~^^^1^0.090^0.095^2^0.086^0.099^~2, 3~^~05/01/2012~ -~43570~^~620~^0.001^3^0.001^~1~^~A~^^^1^0.000^0.002^2^-0.002^0.004^~1, 2, 3~^~05/01/2012~ -~43570~^~621~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~624~^0.011^3^0.000^~1~^~A~^^^1^0.012^0.013^2^0.011^0.014^~2, 3~^~04/01/2014~ -~43570~^~625~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~626~^0.009^3^0.000^~1~^~AS~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2012~ -~43570~^~627~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~628~^0.048^3^0.001^~1~^~A~^^^1^0.046^0.049^2^0.044^0.052^~2, 3~^~05/01/2012~ -~43570~^~629~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~630~^0.002^3^0.001^~1~^~AS~^^^1^0.000^0.003^2^-0.002^0.005^~2, 3~^~05/01/2012~ -~43570~^~631~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~645~^2.831^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~646~^1.307^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~652~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~653~^0.003^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~04/01/2014~ -~43570~^~654~^0.008^3^0.001^~1~^~A~^^^1^0.008^0.010^2^0.007^0.011^~2, 3~^~04/01/2014~ -~43570~^~662~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~663~^0.008^3^0.001^~1~^~A~^^^1^0.007^0.009^2^0.006^0.010^~2, 3~^~05/01/2012~ -~43570~^~664~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~665~^0.008^3^0.000^~1~^~A~^^^1^0.008^0.009^2^0.007^0.010^~2, 3~^~05/01/2012~ -~43570~^~670~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2012~ -~43570~^~671~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~672~^0.002^3^0.000^~1~^~A~^^^1^0.002^0.002^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~673~^0.009^3^0.000^~1~^~A~^^^1^0.009^0.010^2^0.008^0.011^~2, 3~^~05/01/2012~ -~43570~^~674~^2.761^3^0.049^~1~^~A~^^^1^2.665^2.829^2^2.548^2.973^~2, 3~^~05/01/2012~ -~43570~^~675~^1.199^3^0.016^~1~^~A~^^^1^1.167^1.220^2^1.129^1.268^~2, 3~^~05/01/2012~ -~43570~^~676~^0.002^3^0.001^~1~^~A~^^^1^0.000^0.003^2^-0.002^0.005^~1, 2, 3~^~05/01/2012~ -~43570~^~685~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2012~ -~43570~^~687~^0.004^3^0.000^~1~^~A~^^^1^0.003^0.004^2^0.002^0.005^~2, 3~^~05/01/2012~ -~43570~^~689~^0.000^3^0.000^~1~^~AS~^^^1^0.000^0.000^^^^~2, 3~^~05/01/2012~ -~43570~^~693~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~695~^0.008^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~ -~43570~^~697~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~851~^0.089^3^0.001^~1~^~A~^^^1^0.088^0.091^2^0.085^0.093^~2, 3~^~05/01/2012~ -~43570~^~852~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~853~^0.000^3^0.000^~1~^~A~^^^1^0.000^0.000^^^^~1, 2, 3~^~05/01/2012~ -~43570~^~858~^0.003^3^0.001^~1~^~A~^^^1^0.002^0.004^2^0.001^0.005^~1, 2, 3~^~05/01/2012~ -~43572~^~312~^0.545^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~404~^0.350^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~405~^0.110^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~406~^2.070^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~415~^0.170^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~606~^1.415^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~612~^0.010^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~613~^0.931^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~614~^0.475^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~617~^4.037^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~618~^3.315^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~619~^0.247^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~626~^0.038^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~645~^4.085^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43572~^~646~^3.572^0^^~4~^^^^^^^^^^^~04/01/2007~ -~43585~^~312~^0.035^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~404~^0.010^0^^~1~^^^^^^^^^^^~05/01/2005~ -~43585~^~405~^0.040^0^^~1~^^^^^^^^^^^~05/01/2005~ -~43585~^~406~^0.280^0^^~1~^^^^^^^^^^^~05/01/2005~ -~43585~^~415~^0.070^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~606~^0.030^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~607~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~608~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~609~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~610~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~611~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~612~^0.001^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~613~^0.023^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~614~^0.003^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~617~^0.023^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~618~^0.050^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~619~^0.018^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~620~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~621~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~626~^0.002^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~627~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~628~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~629~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~630~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~631~^0.000^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~645~^0.025^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43585~^~646~^0.068^0^^~4~^^^^^^^^^^^~05/01/2005~ -~43589~^~312~^0.027^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~404~^0.020^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~405~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~406~^0.090^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~415~^0.080^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~606~^3.304^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~607~^0.204^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~608~^0.091^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~609~^0.054^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~610~^0.115^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~611~^0.097^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~612~^0.569^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~613~^1.447^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~614~^0.604^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~617~^1.119^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~618~^0.115^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~619~^0.065^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~626~^0.164^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~645~^1.351^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43589~^~646~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43595~^~312~^0.100^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~404~^1.000^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~405~^1.100^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~406~^13.500^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~410~^0.000^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~415~^1.400^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~606~^1.500^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~609~^0.000^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~611~^0.002^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~612~^0.001^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~613~^0.860^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~614~^0.153^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~617~^4.977^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~618~^0.850^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~619~^0.056^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~626~^0.054^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~628~^0.023^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~630~^0.003^0^^~4~^^^^^^^^^^^~08/01/1995~ -~43595~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~43595~^~645~^5.000^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43595~^~646~^0.900^0^^~9~^~MC~^^^^^^^^^^~08/01/1995~ -~43597~^~312~^0.027^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~404~^0.020^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~405~^0.340^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~406~^0.120^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~415~^0.080^1^^~1~^^^^^^^^^^^~02/01/2009~ -~43597~^~606~^10.867^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~607~^0.559^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~608~^0.110^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~609~^0.120^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~610~^0.270^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~611~^0.180^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~612~^1.718^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~613~^5.214^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~614~^2.078^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~617~^4.165^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~618~^0.360^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~619~^0.150^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~626~^0.469^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~645~^4.844^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43597~^~646~^0.509^0^^~4~^^^^^^^^^^^~02/01/2009~ -~43598~^~312~^0.000^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~404~^0.010^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~405~^0.060^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~406~^0.010^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~415~^0.010^1^^~1~^^^^^^^^^^^~03/01/2005~ -~43598~^~606~^10.784^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~607~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~608~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~609~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~610~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~611~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~612~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~613~^7.357^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~614~^2.952^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~617~^18.026^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~618~^40.569^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~619~^4.970^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~620~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~621~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~626~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~627~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~628~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~629~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~630~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~631~^0.000^0^^~7~^^^^^^^^^^^~03/01/2005~ -~43598~^~645~^18.026^0^^~4~^^^^^^^^^^^~03/01/2005~ -~43598~^~646~^45.539^0^^~4~^^^^^^^^^^^~03/01/2005~ -~44005~^~312~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~315~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~404~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~405~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~406~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~410~^0.000^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~ -~44005~^~415~^0.000^0^^~7~^^^^^^^^^^^~12/01/2006~ -~44005~^~606~^14.367^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~607~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~608~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~609~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~610~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~611~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~612~^0.033^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~613~^10.467^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~614~^2.067^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~617~^47.167^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~618~^32.633^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~619~^0.433^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~620~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~621~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~626~^0.300^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~627~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~628~^0.533^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~629~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~630~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~631~^0.000^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~645~^48.033^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44005~^~646~^33.033^0^^~4~^^^^^^^^^^^~12/01/2006~ -~44018~^~312~^0.037^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~404~^0.000^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~405~^0.020^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~406~^0.000^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~415~^0.000^0^^~1~^^^^^^^^^^^~09/01/2004~ -~44018~^~606~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~607~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~608~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~609~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~610~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~611~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~618~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~619~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~620~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~621~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~627~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~629~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~44018~^~631~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~645~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44018~^~646~^0.000^0^^~4~^^^^^^^^^^^~09/01/2004~ -~44061~^~312~^0.838^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~315~^0.703^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~404~^0.020^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~405~^0.090^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~406~^0.400^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~410~^0.055^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~415~^0.040^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44061~^~606~^0.984^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~612~^0.003^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~613~^0.459^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~614~^0.523^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~617~^1.154^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~618~^0.131^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~645~^1.154^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44061~^~646~^0.131^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44074~^~312~^0.028^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~315~^0.067^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~404~^0.010^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~405~^0.020^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~406~^0.200^0^^~1~^^^^^^^^^^^~01/01/1986~ -~44074~^~415~^0.060^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~502~^0.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~503~^0.007^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~504~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~505~^0.019^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~506~^0.029^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~507~^0.014^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~508~^0.017^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~509~^0.016^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~510~^0.024^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~511~^0.064^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~512~^0.031^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~513~^0.036^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~514~^0.105^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~515~^0.180^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~516~^0.026^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~517~^0.029^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~518~^0.041^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~606~^0.000^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44074~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~ -~44074~^~645~^0.000^0^^~4~^~FLC~^^^^^^^^^^~01/01/1986~ -~44074~^~646~^0.000^0^^~4~^^^^^^^^^^^~01/01/1986~ -~44110~^~312~^0.023^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~404~^0.010^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~405~^0.020^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~406~^0.140^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~415~^0.040^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~606~^0.009^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~607~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~608~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~609~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~610~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~611~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~612~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~613~^0.008^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~614~^0.001^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~617~^0.001^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~618~^0.006^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~619~^0.002^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~620~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~621~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~626~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~627~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~628~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~629~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~630~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~631~^0.000^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~645~^0.001^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44110~^~646~^0.008^0^^~4~^^^^^^^^^^^~06/01/2005~ -~44158~^~312~^0.112^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~315~^0.215^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~404~^0.023^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~405~^0.034^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~406~^0.091^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~410~^0.092^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~415~^0.029^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~606~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~44158~^~607~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~608~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~609~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~610~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~611~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~612~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~613~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~614~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~617~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~618~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~619~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~620~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~621~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~626~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~627~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~628~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~629~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~630~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~631~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44158~^~645~^0.000^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~ -~44158~^~646~^0.000^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~ -~44203~^~312~^0.020^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~315~^0.045^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~404~^0.009^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~405~^0.017^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~406~^0.026^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~410~^0.023^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~415~^0.005^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~ -~44203~^~605~^0.000^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~ -~44203~^~606~^0.003^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44203~^~607~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~608~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~609~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~610~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~611~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~612~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~613~^0.003^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~614~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~617~^0.001^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~618~^0.006^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~619~^0.003^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~620~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~621~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~626~^0.000^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~ -~44203~^~627~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~628~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~629~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~630~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~631~^0.000^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~ -~44203~^~645~^0.001^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44203~^~646~^0.009^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~ -~44258~^~312~^0.854^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~315~^0.887^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~404~^0.025^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~405~^0.105^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~406~^0.545^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~410~^0.058^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~415~^0.027^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~606~^1.578^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~612~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~613~^0.735^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~614~^0.839^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~617~^1.150^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~618~^0.130^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~619~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~626~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~645~^1.150^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44258~^~646~^0.130^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44259~^~312~^0.040^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~404~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~405~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~406~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~415~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~606~^0.018^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~607~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~608~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~609~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~610~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~611~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~612~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~613~^0.018^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~614~^0.002^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~617~^0.032^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~618~^0.050^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~619~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~620~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~621~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~626~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~627~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~628~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~629~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~630~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~631~^0.000^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~645~^0.032^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44259~^~646~^0.050^0^^~4~^^^^^^^^^^^~04/01/2005~ -~44260~^~312~^0.038^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~315~^0.041^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~404~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~405~^0.021^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~406~^0.014^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~410~^0.047^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~415~^0.005^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~606~^0.099^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~607~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~608~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~609~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~610~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~611~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~612~^0.001^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~613~^0.078^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~614~^0.019^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~617~^0.112^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~618~^0.386^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~619~^0.047^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~620~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~621~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~626~^0.004^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~627~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~628~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~629~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~630~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~631~^0.000^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~645~^0.116^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~44260~^~646~^0.433^0^^~4~^~FLM~^^^^^^^^^^~04/01/2005~ -~48052~^~312~^0.182^0^^~4~^~BFZN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~404~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~405~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~406~^0.000^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~ -~48052~^~410~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~48052~^~415~^0.000^0^^~7~^~Z~^^^^^^^^^^~08/01/1997~ -~48052~^~606~^0.272^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~607~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~608~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~609~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~610~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~611~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~612~^0.001^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~613~^0.243^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~614~^0.011^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~617~^0.150^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~618~^0.763^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~619~^0.048^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~620~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~621~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~626~^0.006^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~627~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~628~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~629~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~630~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~631~^0.000^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~645~^0.156^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~48052~^~646~^0.810^0^^~4~^~BFFN~^~20083~^^^^^^^^^~03/01/2003~ -~80200~^~312~^0.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~404~^0.140^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~405~^0.250^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~406~^1.200^0^^~1~^^^^^^^^^^^~03/01/2009~ -~80200~^~415~^0.120^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~606~^0.076^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~612~^0.001^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~613~^0.054^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~614~^0.021^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~617~^0.044^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~618~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~619~^0.010^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~620~^0.031^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~621~^0.020^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~626~^0.009^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~629~^0.014^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~631~^0.007^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~645~^0.053^0^^~4~^^^^^^^^^^^~03/01/2009~ -~80200~^~646~^0.102^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~312~^0.100^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~404~^0.020^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~405~^0.190^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~406~^3.300^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~415~^0.410^0^^~1~^^^^^^^^^^^~03/01/2009~ -~83110~^~606~^7.148^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~611~^0.029^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~612~^1.082^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~613~^4.418^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~614~^1.403^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~617~^4.224^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~618~^0.369^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~619~^0.159^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~620~^0.258^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~621~^2.965^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~626~^1.495^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~627~^0.398^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~628~^1.034^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~629~^1.619^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~630~^1.543^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~631~^0.391^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~645~^8.320^0^^~4~^^^^^^^^^^^~03/01/2009~ -~83110~^~646~^6.210^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90240~^~312~^0.033^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~315~^0.029^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~404~^0.012^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~405~^0.024^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~406~^1.076^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~410~^0.366^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~415~^0.112^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~501~^0.173^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~502~^0.629^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~503~^0.692^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~504~^1.226^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~505~^1.258^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~506~^0.487^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~507~^0.204^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~508~^0.597^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~509~^0.503^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~510~^0.645^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~511~^1.101^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~512~^0.314^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~513~^0.912^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~514~^1.572^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~515~^2.390^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~516~^1.761^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~517~^0.487^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~518~^0.613^0^^~4~^~RA~^~90240~^^^^^^^^^~08/01/2010~ -~90240~^~605~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~606~^0.218^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~607~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~608~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~609~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~610~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~611~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~612~^0.013^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~613~^0.138^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~614~^0.049^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~615~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~617~^0.053^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~618~^0.014^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~619~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~620~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~621~^0.104^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~624~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~625~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~626~^0.015^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~627~^0.006^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~628~^0.009^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~629~^0.072^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~630~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~631~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~645~^0.082^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~646~^0.222^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~652~^0.005^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~653~^0.008^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~654~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~671~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~672~^0.002^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~687~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~689~^0.003^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~697~^0.000^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90240~^~858~^0.001^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~ -~90480~^~312~^0.020^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~404~^0.130^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~405~^0.060^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~406~^0.100^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~415~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90480~^~606~^0.000^1^^~1~^^^^^^^^^^^~10/01/2006~ -~90480~^~607~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~608~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~609~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~610~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~611~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~612~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~613~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~614~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~617~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~618~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~619~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~620~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~621~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~626~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~627~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~628~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~629~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~630~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~631~^0.000^0^^~4~^^^^^^^^^^^~02/01/1995~ -~90480~^~645~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90480~^~646~^0.000^0^^~4~^^^^^^^^^^^~10/01/2006~ -~90560~^~312~^0.400^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~404~^0.010^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~405~^0.120^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~406~^1.400^0^^~1~^^^^^^^^^^^~03/01/2009~ -~90560~^~415~^0.130^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~606~^0.361^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~612~^0.056^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~613~^0.249^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~614~^0.051^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~617~^0.211^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~618~^0.017^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~619~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~620~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~621~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~626~^0.048^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~627~^0.015^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~629~^0.119^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~631~^0.099^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~645~^0.259^0^^~4~^^^^^^^^^^^~03/01/2009~ -~90560~^~646~^0.252^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~312~^0.250^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~404~^0.120^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~405~^0.150^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~406~^1.100^0^^~1~^^^^^^^^^^^~03/01/2009~ -~93600~^~415~^0.120^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~606~^0.127^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~607~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~608~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~609~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~610~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~611~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~612~^0.002^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~613~^0.090^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~614~^0.035^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~617~^0.073^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~618~^0.033^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~619~^0.017^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~620~^0.052^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~621~^0.033^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~626~^0.015^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~627~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~628~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~629~^0.023^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~630~^0.000^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~631~^0.012^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~645~^0.088^0^^~4~^^^^^^^^^^^~03/01/2009~ -~93600~^~646~^0.170^0^^~4~^^^^^^^^^^^~03/01/2009~ diff --git a/Postgres/raw_data/bad_food.csv b/Postgres/raw_data/bad_food.csv deleted file mode 100755 index 920b479..0000000 --- a/Postgres/raw_data/bad_food.csv +++ /dev/null @@ -1,7794 +0,0 @@ -~NDB_No~^~FdGrp_Cd~^~Long_Desc~^~Shrt_Desc~^~ComName~^~ManufacName~^~Survey~^~Ref_desc~^~Refuse~^~SciName~^~N_Factor~^~Pro_Factor~^~Fat_Factor~^~CHO_Factor~ -~01001~^~0100~^~Butter, salted~^~BUTTER,WITH SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01002~^~0100~^~Butter, whipped, with salt~^~BUTTER,WHIPPED,W/ SALT~^^^~Y~^^0^^6.38^^^ -~01003~^~0100~^~Butter oil, anhydrous~^~BUTTER OIL,ANHYDROUS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01004~^~0100~^~Cheese, blue~^~CHEESE,BLUE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01005~^~0100~^~Cheese, brick~^~CHEESE,BRICK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01006~^~0100~^~Cheese, brie~^~CHEESE,BRIE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01007~^~0100~^~Cheese, camembert~^~CHEESE,CAMEMBERT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01008~^~0100~^~Cheese, caraway~^~CHEESE,CARAWAY~^^^^^0^^6.38^4.27^8.79^3.87 -~01009~^~0100~^~Cheese, cheddar (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR~^^^~Y~^^0^^^^^ -~01010~^~0100~^~Cheese, cheshire~^~CHEESE,CHESHIRE~^^^^^0^^6.38^4.27^8.79^3.87 -~01011~^~0100~^~Cheese, colby~^~CHEESE,COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01012~^~0100~^~Cheese, cottage, creamed, large or small curd~^~CHEESE,COTTAGE,CRMD,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01013~^~0100~^~Cheese, cottage, creamed, with fruit~^~CHEESE,COTTAGE,CRMD,W/FRUIT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01014~^~0100~^~Cheese, cottage, nonfat, uncreamed, dry, large or small curd~^~CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01015~^~0100~^~Cheese, cottage, lowfat, 2% milkfat~^~CHEESE,COTTAGE,LOWFAT,2% MILKFAT~^^^~Y~^^0^^6.38^^^ -~01016~^~0100~^~Cheese, cottage, lowfat, 1% milkfat~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01017~^~0100~^~Cheese, cream~^~CHEESE,CREAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01018~^~0100~^~Cheese, edam~^~CHEESE,EDAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01019~^~0100~^~Cheese, feta~^~CHEESE,FETA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01020~^~0100~^~Cheese, fontina~^~CHEESE,FONTINA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01021~^~0100~^~Cheese, gjetost~^~CHEESE,GJETOST~^^^^^0^^6.38^4.27^8.79^3.87 -~01022~^~0100~^~Cheese, gouda~^~CHEESE,GOUDA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01023~^~0100~^~Cheese, gruyere~^~CHEESE,GRUYERE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01024~^~0100~^~Cheese, limburger~^~CHEESE,LIMBURGER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01025~^~0100~^~Cheese, monterey~^~CHEESE,MONTEREY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01026~^~0100~^~Cheese, mozzarella, whole milk~^~CHEESE,MOZZARELLA,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01027~^~0100~^~Cheese, mozzarella, whole milk, low moisture~^~CHEESE,MOZZARELLA,WHL MILK,LO MOIST~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01028~^~0100~^~Cheese, mozzarella, part skim milk~^~CHEESE,MOZZARELLA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01029~^~0100~^~Cheese, mozzarella, low moisture, part-skim~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM~^^^~Y~^^0^^6.38^^^ -~01030~^~0100~^~Cheese, muenster~^~CHEESE,MUENSTER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01031~^~0100~^~Cheese, neufchatel~^~CHEESE,NEUFCHATEL~^^^^^0^^6.38^4.27^8.79^3.87 -~01032~^~0100~^~Cheese, parmesan, grated~^~CHEESE,PARMESAN,GRATED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01033~^~0100~^~Cheese, parmesan, hard~^~CHEESE,PARMESAN,HARD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01034~^~0100~^~Cheese, port de salut~^~CHEESE,PORT DE SALUT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01035~^~0100~^~Cheese, provolone~^~CHEESE,PROVOLONE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01036~^~0100~^~Cheese, ricotta, whole milk~^~CHEESE,RICOTTA,WHOLE MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01037~^~0100~^~Cheese, ricotta, part skim milk~^~CHEESE,RICOTTA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01038~^~0100~^~Cheese, romano~^~CHEESE,ROMANO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01039~^~0100~^~Cheese, roquefort~^~CHEESE,ROQUEFORT~^^^^^0^^6.38^4.27^8.79^3.87 -~01040~^~0100~^~Cheese, swiss~^~CHEESE,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01041~^~0100~^~Cheese, tilsit~^~CHEESE,TILSIT~^^^^^0^^6.38^4.27^8.79^3.87 -~01042~^~0100~^~Cheese, pasteurized process, American, fortified with vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01043~^~0100~^~Cheese, pasteurized process, pimento~^~CHEESE,PAST PROCESS,PIMENTO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01044~^~0100~^~Cheese, pasteurized process, swiss~^~CHEESE,PAST PROCESS,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01045~^~0100~^~Cheese food, cold pack, American~^~CHEESE FD,COLD PK,AMERICAN~^^^^^0^^6.38^4.27^8.79^3.87 -~01046~^~0100~^~Cheese food, pasteurized process, American, vitamin D fortified~^~CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01047~^~0100~^~Cheese food, pasteurized process, swiss~^~CHEESE FD,PAST PROCESS,SWISS~^^^^^0^^6.38^4.27^8.79^3.87 -~01048~^~0100~^~Cheese spread, pasteurized process, American~^~CHEESE SPRD,PAST PROCESS,AMERICAN~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01049~^~0100~^~Cream, fluid, half and half~^~CREAM,FLUID,HALF AND HALF~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01050~^~0100~^~Cream, fluid, light (coffee cream or table cream)~^~CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01052~^~0100~^~Cream, fluid, light whipping~^~CREAM,FLUID,LT WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01053~^~0100~^~Cream, fluid, heavy whipping~^~CREAM,FLUID,HVY WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01054~^~0100~^~Cream, whipped, cream topping, pressurized~^~CREAM,WHIPPED,CRM TOPPING,PRESSURIZED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01055~^~0100~^~Cream, sour, reduced fat, cultured~^~CREAM,SOUR,RED FAT,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01056~^~0100~^~Cream, sour, cultured~^~CREAM,SOUR,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01057~^~0100~^~Eggnog~^~EGGNOG~^^^~Y~^^0^^6.37^4.27^8.79^3.90 -~01058~^~0100~^~Sour dressing, non-butterfat, cultured, filled cream-type~^~SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01059~^~0100~^~Milk, filled, fluid, with blend of hydrogenated vegetable oils~^~MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS~^^^^^0^^6.38^4.27^8.79^3.87 -~01060~^~0100~^~Milk, filled, fluid, with lauric acid oil~^~MILK,FILLED,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.38^4.27^8.79^3.87 -~01061~^~0100~^~Cheese, American, nonfat or fat free~^~CHEESE,AMERICAN,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01064~^~0100~^~Yogurt, Greek, 2% fat, apricot, CHOBANI~^~YOGURT,GREEK,2% FAT,APRICOT,CHOBANI~^^~Chobani~^^^0^^3.68^^^ -~01065~^~0100~^~Yogurt, Greek, 2%fat, coconut blend, CHOBANI~^~YOGURT,GREEK,2%FAT,COCNT BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01067~^~0100~^~Cream substitute, liquid, with hydrogenated vegetable oil and soy protein~^~CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT~^^^~Y~^^0^^5.71^4.27^8.79^3.87 -~01068~^~0100~^~Cream substitute, liquid, with lauric acid oil and sodium caseinate~^~CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE~^^^^^0^^6.29^4.27^8.79^3.87 -~01069~^~0100~^~Cream substitute, powdered~^~CREAM SUBSTITUTE,POWDERED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01070~^~0100~^~Dessert topping, powdered~^~DESSERT TOPPING,POWDERED~^^^^^0^^6.29^4.27^8.79^3.87 -~01071~^~0100~^~Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk~^~DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK~^^^~Y~^^0^^6.35^4.27^8.79^3.87 -~01072~^~0100~^~Dessert topping, pressurized~^~DESSERT TOPPING,PRESSURIZED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01073~^~0100~^~Dessert topping, semi solid, frozen~^~DESSERT TOPPING,SEMI SOLID,FRZ~^^^~Y~^^0^^6.29^4.27^8.84^3.87 -~01074~^~0100~^~Sour cream, imitation, cultured~^~SOUR CRM,IMITN,CULTURED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01076~^~0100~^~Milk substitutes, fluid, with lauric acid oil~^~MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.29^4.27^8.79^3.87 -~01077~^~0100~^~Milk, whole, 3.25% milkfat, with added vitamin D~^~MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01078~^~0100~^~Milk, producer, fluid, 3.7% milkfat~^~MILK,PRODUCER,FLUID,3.7% MILKFAT~^^^^^0^^6.38^4.27^8.79^3.87 -~01079~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01080~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01081~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01082~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01083~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D~^^^^^0^^6.38^4.27^8.79^3.87 -~01084~^~0100~^~Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01085~^~0100~^~Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01086~^~0100~^~Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01087~^~0100~^~Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)~^~MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)~^^^^^0^^6.38^4.27^8.79^3.87 -~01088~^~0100~^~Milk, buttermilk, fluid, cultured, lowfat~^~MILK,BTTRMLK,FLUID,CULTURED,LOWFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01089~^~0100~^~Milk, low sodium, fluid~^~MILK,LO NA,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01090~^~0100~^~Milk, dry, whole, with added vitamin D~^~MILK,DRY,WHL,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01091~^~0100~^~Milk, dry, nonfat, regular, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01092~^~0100~^~Milk, dry, nonfat, instant, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01093~^~0100~^~Milk, dry, nonfat, calcium reduced~^~MILK,DRY,NONFAT,CA RED~^^^^^0^^6.38^4.27^8.79^3.87 -~01094~^~0100~^~Milk, buttermilk, dried~^~MILK,BUTTERMILK,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01095~^~0100~^~Milk, canned, condensed, sweetened~^~MILK,CND,COND,SWTND~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01096~^~0100~^~Milk, canned, evaporated, with added vitamin D and without added vitamin A~^~MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01097~^~0100~^~Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01102~^~0100~^~Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01103~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01104~^~0100~^~Milk, chocolate, lowfat, with added vitamin A and vitamin D~^~MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01105~^~0100~^~Milk, chocolate beverage, hot cocoa, homemade~^~MILK,CHOC BEV,HOT COCOA,HOMEMADE~^^^^^0^^6.38^^^ -~01106~^~0100~^~Milk, goat, fluid, with added vitamin D~^~MILK,GOAT,FLUID,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01107~^~0100~^~Milk, human, mature, fluid~^~MILK,HUMAN,MATURE,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01108~^~0100~^~Milk, indian buffalo, fluid~^~MILK,INDIAN BUFFALO,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01109~^~0100~^~Milk, sheep, fluid~^~MILK,SHEEP,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01110~^~0100~^~Milk shakes, thick chocolate~^~MILK SHAKES,THICK CHOC~^^^^^0^^6.38^4.27^8.79^3.87 -~01111~^~0100~^~Milk shakes, thick vanilla~^~MILK SHAKES,THICK VANILLA~^^^^^0^^6.38^4.27^8.79^3.87 -~01112~^~0100~^~Whey, acid, fluid~^~WHEY,ACID,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01113~^~0100~^~Whey, acid, dried~^~WHEY,ACID,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01114~^~0100~^~Whey, sweet, fluid~^~WHEY,SWEET,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01115~^~0100~^~Whey, sweet, dried~^~WHEY,SWEET,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01116~^~0100~^~Yogurt, plain, whole milk~^~YOGURT,PLN,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01117~^~0100~^~Yogurt, plain, low fat~^~YOGURT,PLN,LOFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01118~^~0100~^~Yogurt, plain, skim milk~^~YOGURT,PLN,SKIM MILK.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01119~^~0100~^~Yogurt, vanilla, low fat.~^~YOGURT,VANILLA,LOFAT.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01120~^~0100~^~Yogurt, fruit, low fat,9 g protein/8 oz~^~YOGURT,FRUIT,LOFAT,9 G PROTEIN/8 OZ~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01121~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OUNCE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01122~^~0100~^~Yogurt, fruit, low fat, 11g protein/8 oz~^~YOGURT,FRUIT,LOFAT,11G PROTEIN/8 OZ~^^^^^0^^6.38^4.27^8.79^3.87 -~01123~^~0100~^~Egg, whole, raw, fresh~^~EGG,WHL,RAW,FRSH~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01124~^~0100~^~Egg, white, raw, fresh~^~EGG,WHITE,RAW,FRESH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01125~^~0100~^~Egg, yolk, raw, fresh~^~EGG,YOLK,RAW,FRSH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01126~^~0100~^~Egg, yolk, raw, frozen, pasteurized~^~EGG,YOLK,RAW,FRZ,PAST~^^^^^0^^6.25^^^ -~01127~^~0100~^~Egg, yolk, raw, frozen, sugared, pasteurized~^~EGG,YOLK,RAW,FRZ,SUGARED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01128~^~0100~^~Egg, whole, cooked, fried~^~EGG,WHL,CKD,FRIED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01129~^~0100~^~Egg, whole, cooked, hard-boiled~^~EGG,WHL,CKD,HARD-BOILED~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01130~^~0100~^~Egg, whole, cooked, omelet~^~EGG,WHOLE,COOKED,OMELET~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01131~^~0100~^~Egg, whole, cooked, poached~^~EGG,WHL,CKD,POACHED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01132~^~0100~^~Egg, whole, cooked, scrambled~^~EGG,WHL,CKD,SCRMBLD~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01133~^~0100~^~Egg, whole, dried~^~EGG,WHL,DRIED~^^^~Y~^^0^^6.25^^^ -~01134~^~0100~^~Egg, whole, dried, stabilized, glucose reduced~^~EGG,WHL,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01135~^~0100~^~Egg, white, dried, flakes, stabilized, glucose reduced~^~EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01136~^~0100~^~Egg, white, dried, powder, stabilized, glucose reduced~^~EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01137~^~0100~^~Egg, yolk, dried~^~EGG,YOLK,DRIED~^^^~Y~^^0^^6.25^^^ -~01138~^~0100~^~Egg, duck, whole, fresh, raw~^~EGG,DUCK,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01139~^~0100~^~Egg, goose, whole, fresh, raw~^~EGG,GOOSE,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^13^^6.25^4.36^9.02^3.68 -~01140~^~0100~^~Egg, quail, whole, fresh, raw~^~EGG,QUAIL,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^8^^6.25^4.36^9.02^3.68 -~01141~^~0100~^~Egg, turkey, whole, fresh, raw~^~EGG,TURKEY,WHL,FRSH,RAW~^^^^~Shell~^12^^6.25^4.36^9.02^3.68 -~01144~^~0100~^~Egg substitute, powder~^~EGG SUBSTITUTE,POWDER~^^^~Y~^^0^^6.25^4.36^9.02^3.87 -~01145~^~0100~^~Butter, without salt~^~BUTTER,WITHOUT SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01146~^~0100~^~Cheese, parmesan, shredded~^~CHEESE,PARMESAN,SHREDDED~^^^^^0^^6.38^4.27^8.79^3.87 -~01151~^~0100~^~Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~01152~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01153~^~0100~^~Milk, canned, evaporated, with added vitamin A~^~MILK,CND,EVAP,W/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01154~^~0100~^~Milk, dry, nonfat, regular, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01155~^~0100~^~Milk, dry, nonfat, instant, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01156~^~0100~^~Cheese, goat, hard type~^~CHEESE,GOAT,HARD TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01157~^~0100~^~Cheese, goat, semisoft type~^~CHEESE,GOAT,SEMISOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01158~^~0100~^~Yogurt, Greek, 2% fat, key lime blend, CHOBANI~^~YOGURT,GREEK,2% FAT,KEY LIME BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01159~^~0100~^~Cheese, goat, soft type~^~CHEESE,GOAT,SOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01160~^~0100~^~Egg, yolk, raw, frozen, salted, pasteurized~^~EGG,YOLK,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01161~^~0100~^~Cheese substitute, mozzarella~^~CHEESE SUB,MOZZARELLA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01162~^~0100~^~Yogurt, Greek, 2% fat, mango, CHOBANI~^~YOGURT,GREEK,2% FAT,MANGO,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01164~^~0100~^~Cheese sauce, prepared from recipe~^~CHEESE SAU,PREP FROM RECIPE~^^^~Y~^^0^^6.38^4.08^8.92^3.95 -~01165~^~0100~^~Cheese, mexican, queso anejo~^~CHEESE,MEXICAN,QUESO ANEJO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01166~^~0100~^~Cheese, mexican, queso asadero~^~CHEESE,MEXICAN,QUESO ASADERO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01167~^~0100~^~Cheese, mexican, queso chihuahua~^~CHEESE,MEXICAN,QUESO CHIHUAHUA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01168~^~0100~^~Cheese, low fat, cheddar or colby~^~CHEESE,LOFAT,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01169~^~0100~^~Cheese, low-sodium, cheddar or colby~^~CHEESE,LOW-SODIUM,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01171~^~0100~^~Egg, whole, raw, frozen, pasteurized (Includes foods for USDA's Food Distribution Program)~^~EGG,WHL,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01172~^~0100~^~Egg, white, raw, frozen, pasteurized~^~EGG,WHITE,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01173~^~0100~^~Egg, white, dried~^~EGG,WHITE,DRIED~^^^^^0^^6.25^4.36^9.02^3.68 -~01174~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01175~^~0100~^~Milk, fluid, 1% fat, without added vitamin A and vitamin D~^~MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01178~^~0100~^~Sour cream, reduced fat~^~SOUR CREAM,REDUCED FAT~^^^~Y~^^0^^6.38^^^ -~01179~^~0100~^~Sour cream, light~^~SOUR CREAM,LIGHT~^^^~Y~^^0^^6.38^^^ -~01180~^~0100~^~Sour cream, fat free~^~SOUR CREAM,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01184~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener~^~YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01185~^~0100~^~Parmesan cheese topping, fat free~^~PARMESAN CHS TOPPING,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01186~^~0100~^~Cheese, cream, fat free~^~CHEESE,CREAM,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01187~^~0100~^~Yogurt, chocolate, nonfat milk~^~YOGURT,CHOC,NONFAT MILK~^^^~Y~^^0^^6.38^^^ -~01188~^~0100~^~KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce~^~KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01189~^~0100~^~KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product~^~KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01190~^~0100~^~KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product~^~KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01191~^~0100~^~KRAFT VELVEETA Pasteurized Process Cheese Spread~^~KRAFT VELVEETA PAST PROCESS CHS SPRD~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01192~^~0100~^~KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product~^~KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01193~^~0100~^~KRAFT BREAKSTONE'S Reduced Fat Sour Cream~^~KRAFT BREAKSTONE'S RED FAT SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01194~^~0100~^~KRAFT BREAKSTONE'S FREE Fat Free Sour Cream~^~KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01199~^~0100~^~Cream, half and half, fat free~^~CREAM,HALF & HALF,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01200~^~0100~^~Reddi Wip Fat Free Whipped Topping~^~REDDI WIP FAT FREE WHIPPED TOPPING~^^^~Y~^^0^^6.38^^^ -~01202~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added calcium~^~MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA~^^^^^0^^6.38^^^ -~01203~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener~^~YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01204~^~0100~^~Cheese, parmesan, dry grated, reduced fat~^~CHEESE,PARMESAN,DRY GRATED,RED FAT~^^^~Y~^^0^^6.38^^^ -~01205~^~0100~^~Cream substitute, flavored, liquid~^~CREAM SUB,FLAV,LIQ~^^^~Y~^^0^^6.29^^^ -~01206~^~0100~^~Cream substitute, flavored, powdered~^~CREAM SUB,FLAV,PDR~^^^~Y~^^0^^6.38^^^ -~01208~^~0100~^~Cheese, provolone, reduced fat~^~CHEESE,PROVOLONE,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01209~^~0100~^~Cheese, Mexican, blend, reduced fat~^~CHEESE,MEXICAN,BLEND,RED FAT~^^^~Y~^^0^^6.38^^^ -~01211~^~0100~^~Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D~^~MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01212~^~0100~^~Milk, dry, whole, without added vitamin D~^~MILK,DRY,WHL,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01215~^~0100~^~Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D~^^^~Y~^^0^^6.38^^^ -~01216~^~0100~^~Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01217~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01218~^~0100~^~Yogurt, fruit variety, nonfat, fortified with vitamin D~^~YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01219~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D~^~YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01220~^~0100~^~Yogurt, vanilla, low fat, fortified with vitamin D~^~YOGURT,VANILLA,LOFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01221~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D~^~YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D~^^^~Y~^^0^^6.38^^^ -~01222~^~0100~^~Yogurt, chocolate, nonfat milk, fortified with vitamin D~^~YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01223~^~0100~^~Protein supplement, milk based, Muscle Milk, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR~^^^~Y~^^0^^6.38^^^ -~01224~^~0100~^~Protein supplement, milk based, Muscle Milk Light, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR~^^^~Y~^^0^^6.38^^^ -~01225~^~0100~^~Dulce de Leche~^~DULCE DE LECHE~^^^~Y~^^0^^6.38^^^ -~01226~^~0100~^~Egg substitute, liquid or frozen, fat free~^~EGG SUB,LIQ OR FRZ,FAT FREE~^^^~Y~^^0^^6.25^4.36^8.84^3.68 -~01227~^~0100~^~Cheese, dry white, queso seco~^~CHEESE,DRY WHITE,QUESO SECO~^^^^^0^^6.38^^^ -~01228~^~0100~^~Cheese, fresh, queso fresco~^~CHEESE,FRSH,QUESO FRESCO~^^^~Y~^^0^^6.38^^^ -~01229~^~0100~^~Cheese, white, queso blanco~^~CHEESE,WHITE,QUESO BLANCO~^^^^^0^^6.38^^^ -~01230~^~0100~^~Milk, buttermilk, fluid, whole~^~MILK,BTTRMLK,FLUID,WHL~^^^~Y~^^0^^6.38^^^ -~01231~^~0100~^~Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener~^~YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^6.38^^^ -~01235~^~0100~^~Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener~^~YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01236~^~0100~^~Ice cream, soft serve, chocolate~^~ICE CRM,SOFT SERVE,CHOC~^^^~Y~^^0^^6.38^^^ -~01237~^~0100~^~Ice cream, bar or stick, chocolate covered~^~ICE CRM,BAR OR STK,CHOC COVERED~^^^~Y~^^0^^6.38^^^ -~01238~^~0100~^~Ice cream sandwich~^~ICE CRM SNDWCH~^^^~Y~^^0^^6.38^^^ -~01239~^~0100~^~Ice cream cookie sandwich~^~ICE CRM COOKIE SNDWCH~^^^~Y~^^0^^6.38^^^ -~01240~^~0100~^~Ice cream cone, chocolate covered, with nuts, flavors other than chocolate~^~ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.25^^^ -~01241~^~0100~^~Ice cream sandwich, made with light ice cream, vanilla~^~ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA~^^^~Y~^^0^^6.25^^^ -~01242~^~0100~^~Ice cream sandwich, vanilla, light, no sugar added~^~ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.38^^^ -~01243~^~0100~^~Fat free ice cream, no sugar added, flavors other than chocolate~^~FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.38^^^ -~01244~^~0100~^~Milk dessert bar, frozen, made from lowfat milk~^~MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK~^^^~Y~^^0^^6.38^^^ -~01249~^~0100~^~Yogurt, Greek, 2% fat,mixed berry blend, CHOBANI~^~YOGURT,GREEK,2% FAT,MXD BERRY BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01250~^~0100~^~Nutritional supplement for people with diabetes, liquid~^~NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ~^^^~Y~^^0^^6.38^^^ -~01251~^~0100~^~Cheese, Mexican blend~^~CHEESE,MEXICAN BLEND~^^^~Y~^^0^^6.38^^^ -~01252~^~0100~^~Cheese product, pasteurized process, American, vitamin D fortified~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^^^ -~01253~^~0100~^~Cheese, pasteurized process, American, without added vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01254~^~0100~^~Cheese food, pasteurized process, American, without added vitamin D~^~CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01255~^~0100~^~Egg, whole, raw, frozen, salted, pasteurized~^~EGG,WHL,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^^^ -~01256~^~0100~^~Yogurt, Greek, plain, nonfat (Includes foods for USDA's Food Distribution Program)~^~YOGURT,GREEK,PLN,NONFAT~^^^~Y~^^0^^6.38^^^ -~01258~^~0100~^~Egg, white, dried, stabilized, glucose reduced~^~EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^^^ -~01259~^~0100~^~Cheese spread, American or Cheddar cheese base, reduced fat~^~CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT~^^^~Y~^^0^^6.38^^^ -~01260~^~0100~^~Cheese, cheddar, reduced fat (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR,RED FAT~^^^~Y~^^0^^6.38^^^ -~01263~^~0100~^~Ice cream, light, soft serve, chocolate~^~ICE CRM,LT,SOFT SERVE,CHOC~^^^~Y~^^0^^6.25^^^ -~01264~^~0100~^~Ice cream bar, stick or nugget, with crunch coating~^~ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING~^^^~Y~^^0^^6.38^^^ -~01265~^~0100~^~Cheese, cheddar, nonfat or fat free~^~CHEESE,CHEDDAR,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01266~^~0100~^~Cheese, Swiss, nonfat or fat free~^~CHEESE,SWISS,NONFAT OR FAT FREE~^^^~Y~^^0^^6.38^^^ -~01267~^~0100~^~Cheese, mexican, queso cotija~^~CHEESE,MEXICAN,QUESO COTIJA~^^^~Y~^^0^^6.25^^^ -~01270~^~0100~^~Cheese, cheddar, sharp, sliced~^~CHEESE,CHEDDAR,SHARP,SLICED~^^^~Y~^^0^^6.38^^^ -~01271~^~0100~^~Cheese, mozzarella, low moisture, part-skim, shredded~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED~^^^~Y~^^0^^6.38^^^ -~01275~^~0100~^~Yogurt, Greek, nonfat, vanilla, CHOBANI~^~YOGURT,GREEK,NONFAT,VANILLA,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01276~^~0100~^~Yogurt, Greek, strawberry, DANNON OIKOS~^~YOGURT,GREEK,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01278~^~0100~^~Yogurt, Greek, nonfat, vanilla, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01280~^~0100~^~Yogurt, Greek, nonfat, strawberry, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01284~^~0100~^~Yogurt, Greek, strawberry, lowfat~^~YOGURT,GREEK,STRAWBERRY,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01285~^~0100~^~Yogurt, Greek, strawberry, nonfat~^~YOGURT,GREEK,STRAWBERRY,NONFAT~^^^~Y~^^0^^6.38^^^ -~01286~^~0100~^~Yogurt, Greek, vanilla, nonfat~^~YOGURT,GREEK,VANILLA,NONFAT~^^^~Y~^^0^^6.38^^^ -~01287~^~0100~^~Yogurt, Greek, plain, lowfat~^~YOGURT,GREEK,PLN,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01289~^~0100~^~Kefir, lowfat, plain, LIFEWAY~^~KEFIR,LOWFAT,PLN,LIFEWAY~^^~Lifeway~^~Y~^^0^^6.38^^^ -~01290~^~0100~^~Kefir, lowfat, strawberry, LIFEWAY~^~KEFIR,LOWFAT,STRAWBERRY,LIFEWAY~^^^~Y~^^0^^6.38^^^ -~01291~^~0100~^~Milk, evaporated, 2% fat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,WO/ VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01292~^~0100~^~Milk, chocolate, fat free, with added vitamin A and vitamin D~^~MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.25^^^ -~01293~^~0100~^~Yogurt, Greek, plain, whole milk~^~YOGURT,GREEK,PLN,WHL MILK~^^^~Y~^^0^^6.25^^^ -~01294~^~0100~^~Yogurt, Greek, fruit, whole milk~^~YOGURT,GREEK,FRUIT,WHL MILK~^^^~Y~^^0^^6.38^^^ -~01295~^~0100~^~Yogurt, vanilla, non-fat~^~YOGURT,VANILLA,NON-FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01297~^~0100~^~Yogurt, Greek, vanilla, lowfat~^~YOGURT,GREEK,VANILLA,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01298~^~0100~^~Yogurt, frozen, flavors other than chocolate, lowfat~^~YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01300~^~0100~^~Ice cream bar, covered with chocolate and nuts~^~ICE CRM BAR,COVERED W/ CHOC & NUTS~^^^~Y~^^0^^6.38^^^ -~01301~^~0100~^~Ice cream sundae cone~^~ICE CRM SUNDAE CONE~^^^~Y~^^0^^6.38^^^ -~01302~^~0100~^~Light ice cream, Creamsicle~^~LIGHT ICE CRM,CREAMSICLE~^^^~Y~^^0^^6.25^^^ -~01303~^~0100~^~Cream, half and half, lowfat~^~CREAM,HALF & HALF,LOWFAT~^^^~Y~^^0^^6.25^^^ -~01304~^~0100~^~Yogurt, Greek, 2% fat, pineapple, CHOBANI~^~YOGURT,GREEK,2% FAT,PNAPPL,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01305~^~0100~^~Milk, chocolate, lowfat, reduced sugar~^~MILK,CHOC,LOWFAT,RED SUGAR~^^^~Y~^^0^^6.38^^^ -~01306~^~0100~^~Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce~^~ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU~^^^~Y~^^0^^6.25^^^ -~01307~^~0100~^~Yogurt, Greek, 2% fat, strawberry banana, CHOBANI~^~YOGURT,GREEK,2% FAT,STRAWBERRY BANANA,CHOBANI~^^~Chobani~^^^0^^^^^ -~01308~^~0100~^~Yogurt, Greek, whole, plain, CHOBANI~^~YOGURT,GREEK,WHL,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01312~^~0100~^~Yogurt, Greek, nonfat, lemon blend, CHOBANI~^~YOGURT,GREEK,NONFAT,LEMON BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01313~^~0100~^~Yogurt, Greek, nonfat, peach, CHOBANI~^~YOGURT,GREEK,NONFAT,PEACH,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01314~^~0100~^~Yogurt, Greek, nonfat, plain, CHOBANI~^~YOGURT,GREEK,NONFAT,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01316~^~0100~^~Yogurt, Greek, nonfat, raspberry, CHOBANI~^~YOGURT,GREEK,NONFAT,RASPBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01319~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Pomegranate, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,POMEGRANATE,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01320~^~0100~^~Yogurt, Greek, Blueberry, CHOBANI~^~YOGURT,GREEK,BLUEBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01321~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Strawberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,STRAWBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01322~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Blackberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,BLACKBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01323~^~0100~^~Butter, Clarified butter (ghee)~^~BUTTER,CLARIFIED BUTTER (GHEE)~^^^^^0^^6.25^^^ -~02001~^~0200~^~Spices, allspice, ground~^~ALLSPICE,GROUND~^^^^^0^~Pimenta dioica~^6.25^3.36^8.37^2.35 -~02002~^~0200~^~Spices, anise seed~^~ANISE SEED~^^^^^0^~Pimpinella anisum~^6.25^3.36^8.37^2.90 -~02003~^~0200~^~Spices, basil, dried~^~SPICES,BASIL,DRIED~^^^~Y~^^0^~Ocimum basilicum~^6.25^2.44^8.37^3.00 -~02004~^~0200~^~Spices, bay leaf~^~SPICES,BAY LEAF~^^^^^0^~Laurus nobilis~^6.25^2.44^8.37^3.00 -~02005~^~0200~^~Spices, caraway seed~^~CARAWAY SEED~^^^~Y~^^0^~Carum carvi~^6.25^3.36^8.37^2.90 -~02006~^~0200~^~Spices, cardamom~^~SPICES,CARDAMOM~^^^^^0^~Elettaria cardamomum~^6.25^3.36^8.37^3.20 -~02007~^~0200~^~Spices, celery seed~^~CELERY SEED~^^^~Y~^^0^~Apium graveolens~^6.25^3.36^8.37^2.90 -~02008~^~0200~^~Spices, chervil, dried~^~CHERVIL,DRIED~^^^^^0^~Anthriscus cerefolium~^6.25^2.44^8.37^3.00 -~02009~^~0200~^~Spices, chili powder~^~CHILI POWDER~^^^~Y~^^0^^6.25^3.23^8.37^2.39 -~02010~^~0200~^~Spices, cinnamon, ground~^~CINNAMON,GROUND~^~Cassia~^^~Y~^^0^~Cinnamomum aromaticum~^6.25^1.82^8.37^2.85 -~02011~^~0200~^~Spices, cloves, ground~^~CLOVES,GROUND~^^^~Y~^^0^~Syzygium aromaticum~^6.25^1.82^8.37^2.35 -~02012~^~0200~^~Spices, coriander leaf, dried~^~CORIANDER LEAF,DRIED~^~Chinese parsley, cilantro~^^~Y~^^0^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~02013~^~0200~^~Spices, coriander seed~^~CORIANDER SEED~^^^^^0^~Coriandrum sativum~^6.25^3.36^8.37^1.95 -~02014~^~0200~^~Spices, cumin seed~^~CUMIN SEED~^^^~Y~^^0^~Cuminum cyminum~^6.25^3.36^8.37^2.90 -~02015~^~0200~^~Spices, curry powder~^~CURRY POWDER~^^^~Y~^^0^^6.18^3.12^8.37^2.92 -~02016~^~0200~^~Spices, dill seed~^~DILL SEED~^^^^^0^~Anethum graveolens~^6.25^3.36^8.37^2.35 -~02017~^~0200~^~Spices, dill weed, dried~^~DILL WEED,DRIED~^^^^^0^~Anethum graveolens~^6.25^2.44^8.37^3.00 -~02018~^~0200~^~Spices, fennel seed~^~FENNEL SEED~^^^^^0^~Foeniculum vulgare~^6.25^3.36^8.37^3.20 -~02019~^~0200~^~Spices, fenugreek seed~^~FENUGREEK SEED~^^^^^0^~Trigonella foenum-graecum~^5.30^3.47^8.37^3.25 -~02020~^~0200~^~Spices, garlic powder~^~GARLIC POWDER~^^^~Y~^^0^~Allium sativum~^6.25^2.78^8.37^3.84 -~02021~^~0200~^~Spices, ginger, ground~^~GINGER,GROUND~^^^~Y~^^0^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~02022~^~0200~^~Spices, mace, ground~^~MACE,GROUND~^^^^^0^~Myristica fragrans~^6.25^3.36^8.37^3.60 -~02023~^~0200~^~Spices, marjoram, dried~^~MARJORAM,DRIED~^^^~Y~^^0^~Origanum majorana~^6.25^2.44^8.37^3.00 -~02024~^~0200~^~Spices, mustard seed, ground~^~SPICES,MUSTARD SD,GROUND~^^^~Y~^^0^~Sinapis alba and Brassica juncea~^5.40^3.47^8.37^4.07 -~02025~^~0200~^~Spices, nutmeg, ground~^~NUTMEG,GROUND~^^^~Y~^^0^~Myristica fragrans~^5.30^3.47^8.37^4.07 -~02026~^~0200~^~Spices, onion powder~^~ONION POWDER~^^^~Y~^^0^~Allium cepa~^6.25^2.78^8.37^3.84 -~02027~^~0200~^~Spices, oregano, dried~^~SPICES,OREGANO,DRIED~^^^~Y~^^0^~Origanum vulgare~^6.25^2.44^8.37^3.00 -~02028~^~0200~^~Spices, paprika~^~PAPRIKA~^^^~Y~^^0^~Capsicum annuum~^6.25^3.36^8.37^2.35 -~02029~^~0200~^~Spices, parsley, dried~^~PARSLEY,DRIED~^^^~Y~^^0^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~02030~^~0200~^~Spices, pepper, black~^~PEPPER,BLACK~^^^~Y~^^0^~Piper nigrum~^5.35^1.83^8.37^3.20 -~02031~^~0200~^~Spices, pepper, red or cayenne~^~PEPPER,RED OR CAYENNE~^^^~Y~^^0^~Capsicum frutescens or Capsicum annuum~^6.25^3.36^8.37^2.35 -~02032~^~0200~^~Spices, pepper, white~^~PEPPER,WHITE~^^^^^0^~Piper nigrum~^5.35^1.83^8.37^3.78 -~02033~^~0200~^~Spices, poppy seed~^~POPPY SEED~^^^~Y~^^0^~Papaver somniferum~^5.30^3.47^8.37^4.07 -~02034~^~0200~^~Spices, poultry seasoning~^~POULTRY SEASONING~^^^~Y~^^0^^5.89^2.36^8.37^3.38 -~02035~^~0200~^~Spices, pumpkin pie spice~^~PUMPKIN PIE SPICE~^^^~Y~^^0^^6.06^2.50^8.37^3.19 -~02036~^~0200~^~Spices, rosemary, dried~^~ROSEMARY,DRIED~^^^^^0^~Rosmarinus officinalis~^6.25^2.44^8.37^3.00 -~02037~^~0200~^~Spices, saffron~^~SAFFRON~^^^^^0^~Crocus sativus~^6.25^2.44^8.37^3.57 -~02038~^~0200~^~Spices, sage, ground~^~SAGE,GROUND~^^^~Y~^^0^~Salvia officinalis~^6.25^2.44^8.37^3.00 -~02039~^~0200~^~Spices, savory, ground~^~SAVORY,GROUND~^^^^^0^~Satureja hortensis~^6.25^2.44^8.37^3.00 -~02041~^~0200~^~Spices, tarragon, dried~^~SPICES,TARRAGON,DRIED~^^^^^0^~Artemisia dracunculus~^6.25^2.44^8.37^3.57 -~02042~^~0200~^~Spices, thyme, dried~^~SPICES,THYME,DRIED~^^^~Y~^^0^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02043~^~0200~^~Spices, turmeric, ground~^~TURMERIC,GROUND~^^^~Y~^^0^~Curcuma longa L.~^6.25^2.78^8.37^3.84 -~02044~^~0200~^~Basil, fresh~^~BASIL,FRESH~^^^~Y~^~Tough stems, flower heads and trimmings~^36^~Ocimum basilicum~^6.25^2.44^8.37^3.57 -~02045~^~0200~^~Dill weed, fresh~^~DILL WEED,FRSH~^^^^~Tough stems and trimmings~^41^~Anethum graveolens~^6.25^2.44^8.37^3.57 -~02046~^~0200~^~Mustard, prepared, yellow~^~MUSTARD,PREPARED,YELLOW~^^^~Y~^^0^^6.25^3.47^8.37^3.34 -~02047~^~0200~^~Salt, table~^~SALT,TABLE~^^^~Y~^^0^^0.00^^^ -~02048~^~0200~^~Vinegar, cider~^~VINEGAR,CIDER~^^^~Y~^^0^^0.00^^^ -~02049~^~0200~^~Thyme, fresh~^~THYME,FRSH~^^^^~Stems~^32^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02050~^~0200~^~Vanilla extract~^~VANILLA EXTRACT~^^^^^0^^6.25^2.44^8.37^3.90 -~02051~^~0200~^~Vanilla extract, imitation, alcohol~^~VANILLA EXTRACT,IMITN,ALCOHOL~^^^^^0^^6.25^2.44^8.37^3.90 -~02052~^~0200~^~Vanilla extract, imitation, no alcohol~^~VANILLA EXTRACT,IMITN,NO ALCOHOL~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~02053~^~0200~^~Vinegar, distilled~^~VINEGAR,DISTILLED~^^^~Y~^^0^^^^^ -~02054~^~0200~^~Capers, canned~^~CAPERS,CANNED~^^^~Y~^^0^~Capparis spinosa~^6.25^1.82^8.37^2.35 -~02055~^~0200~^~Horseradish, prepared~^~HORSERADISH,PREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.44 -~02063~^~0200~^~Rosemary, fresh~^~ROSEMARY,FRESH~^^^^~Stems~^35^~Rosmarinus officinalis~^6.25^2.44^8.37^3.57 -~02064~^~0200~^~Peppermint, fresh~^~PEPPERMINT,FRESH~^~mint~^^^~Stems~^39^~Mentha x piperita L. nothosubsp. piperita~^6.25^2.44^8.37^3.57 -~02065~^~0200~^~Spearmint, fresh~^~SPEARMINT,FRESH~^~mint~^^^~Stems~^59^~Mentha spicata~^6.25^2.44^8.37^3.57 -~02066~^~0200~^~Spearmint, dried~^~SPEARMINT,DRIED~^~mint~^^^^0^^6.25^2.44^8.37^3.57 -~02068~^~0200~^~Vinegar, red wine~^~VINEGAR,RED WINE~^^^^^0^^6.25^^^ -~02069~^~0200~^~Vinegar, balsamic~^~VINEGAR,BALSAMIC~^^^^^0^^^^^ -~02074~^~0200~^~Seasoning mix, dry, sazon, coriander & annatto~^~SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO~^^^^^0^^6.25^^^ -~02075~^~0200~^~Seasoning mix, dry, taco, original~^~SEASONING MIX,DRY,TACO,ORIGINAL~^^^^^0^^^^^ -~02076~^~0200~^~Seasoning mix, dry, chili, original~^~SEASONING MIX,DRY,CHILI,ORIGINAL~^^^^^0^^^^^ -~03000~^~0300~^~Clif Z bar~^~CLIF Z BAR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03001~^~0300~^~Babyfood, juice treats, fruit medley, toddler~^~BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD~^^^~Y~^^0^^6.25^^^ -~03002~^~0300~^~Babyfood, meat, beef, strained~^~BABYFOOD,MEAT,BF,STR~^^^~Y~^^0^^6.25^^^ -~03003~^~0300~^~Babyfood, meat, beef, junior~^~BABYFOOD,MEAT,BF,JR~^^^~Y~^^0^^6.25^^^ -~03005~^~0300~^~Babyfood, meat, veal, strained~^~BABYFOOD,MEAT,VEAL,STR~^^^~Y~^^0^^^^^ -~03007~^~0300~^~Babyfood, meat, pork, strained~^~BABYFOOD,MEAT,PORK,STR~^^^^^0^^6.25^4.27^9.02^ -~03008~^~0300~^~Babyfood, meat, ham, strained~^~BABYFOOD,MEAT,HAM,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03009~^~0300~^~Babyfood, meat, ham, junior~^~BABYFOOD,MEAT,HAM,JUNIOR~^^^^^0^^6.25^4.27^9.02^ -~03010~^~0300~^~Babyfood, meat, lamb, strained~^~BABYFOOD,MEAT,LAMB,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~03011~^~0300~^~Babyfood, meat, lamb, junior~^~BABYFOOD,MEAT,LAMB,JUNIOR~^^^^^0^^6.25^4.27^9.02^3.87 -~03012~^~0300~^~Babyfood, meat, chicken, strained~^~BABYFOOD,MEAT,CHICK,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03013~^~0300~^~Babyfood, meat, chicken, junior~^~BABYFOOD,MEAT,CHICK,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03014~^~0300~^~Babyfood, meat, chicken sticks, junior~^~BABYFOOD,MEAT,CHICK STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03015~^~0300~^~Babyfood, meat, turkey, strained~^~BABYFOOD,MEAT,TURKEY,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03016~^~0300~^~Babyfood, meat, turkey, junior~^~BABYFOOD,MEAT,TURKEY,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03017~^~0300~^~Babyfood, meat, turkey sticks, junior~^~Babyfood, meat, turkey sticks, junior~^^^~Y~^^0^^6.25^^^ -~03019~^~0300~^~Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars~^~BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS~^^~GERBER~^~Y~^^0^^^^^ -~03021~^~0300~^~Babyfood, meat, meat sticks, junior~^~BABYFOOD,MEAT,MEAT STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03022~^~0300~^~Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic~^~BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC~^^^~Y~^^0^^6.25^^^ -~03023~^~0300~^~Babyfood, finger snacks, GERBER, GRADUATES, PUFFS, apple and cinnamon~^~BABYFOOD,FINGER SNACKS,GERBER,GRADUATES,PUFFS,APPL & CINN~^^~GERBER~^~Y~^^0^^6.25^3.36^6.37^3.60 -~03024~^~0300~^~Babyfood, water, bottled, GERBER, without added fluoride~^~BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE~^^~GERBER~^~Y~^^0^^^^^ -~03025~^~0300~^~Babyfood, GERBER, 3rd Foods, apple, mango and kiwi~^~BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI~^^~GERBER~^~Y~^^0^^6.25^3.60^8.37^3.60 -~03026~^~0300~^~Babyfood, tropical fruit medley~^~BABYFOOD,TROPICAL FRUIT MEDLEY~^^^~Y~^^0^^6.25^3.60^8.37^3.60 -~03041~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, strained~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR~^^^^^0^^6.03^4.10^8.90^4.10 -~03042~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, junior~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR~^^^^^0^^6.03^4.10^8.90^4.10 -~03043~^~0300~^~Babyfood, dinner, beef lasagna, toddler~^~BABYFOOD,DINNER,BF LASAGNA,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03044~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, strained~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03045~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, junior~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03046~^~0300~^~Babyfood, ravioli, cheese filled, with tomato sauce~^~BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU~^^^~Y~^^0^^6.25^^^ -~03047~^~0300~^~Babyfood, dinner, beef noodle, strained~^~BABYFOOD,DINNER,BF NOODLE,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03048~^~0300~^~Babyfood, macaroni and cheese, toddler~^~BABYFOOD,MACARONI&CHS,TODD~^^^~Y~^^0^^6.25^^^ -~03049~^~0300~^~Babyfood, dinner, beef and rice, toddler~^~BABYFOOD,DINNER,BF&RICE,TODD~^^^^^0^^6.14^4.10^8.90^4.10 -~03050~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, junior~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR~^^^~Y~^^0^^6.25^^^ -~03051~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, toddler~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03053~^~0300~^~Babyfood, dinner, vegetables and beef, strained~^~BABYFOOD,DINNER,VEG&BF,STR~^^^~Y~^^0^^^^^ -~03054~^~0300~^~Babyfood, dinner, vegetables and beef, junior~^~BABYFOOD,DINNER,VEG&BF,JR~^^^~Y~^^0^^^^^ -~03055~^~0300~^~Babyfood, dinner, beef with vegetables~^~BABYFOOD,DINNER,BF W/VEG~^^^~Y~^^0^^^^^ -~03067~^~0300~^~Babyfood, dinner, vegetables and lamb, junior~^~BABYFOOD,DINNER,VEG&LAMB,JR~^^^^^0^^6.25^3.70^8.90^3.90 -~03068~^~0300~^~Babyfood, dinner, chicken noodle, strained~^~BABYFOOD,DINNER,CHICK NOODLE,STR~^^^~Y~^^0^^6.25^^^ -~03069~^~0300~^~Babyfood, dinner, chicken noodle, junior~^~BABYFOOD,DINNER,CHICK NOODLE,JR~^^^~Y~^^0^^6.25^^^ -~03070~^~0300~^~Babyfood, dinner, chicken soup, strained~^~BABYFOOD,DINNER,CHICK SOUP,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.84 -~03072~^~0300~^~Babyfood, dinner, chicken stew, toddler~^~BABYFOOD DINNER CHICK STEW TODD~^^^~Y~^^0^^6.25^3.70^8.90^3.90 -~03073~^~0300~^~Babyfood, dinner, vegetables chicken, strained~^~BABYFOOD,DINNER,VEG CHICK,STR~^^^~Y~^^0^^^^^ -~03075~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, strained~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03076~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, junior~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03077~^~0300~^~Babyfood, dinner, pasta with vegetables~^~BABYFOOD,DINNER,PASTA W/VEG~^^^~Y~^^0^^^^^ -~03079~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, strained~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03081~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, junior~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03082~^~0300~^~Babyfood, dinner, turkey and rice, strained~^~BABYFOOD,DINNER,TURKEY&RICE,STR~^^^~Y~^^0^^^^^ -~03083~^~0300~^~Babyfood, dinner, turkey and rice, junior~^~BABYFOOD,DINNER,TURKEY & RICE,JR~^^^~Y~^^0^^^^^ -~03084~^~0300~^~Babyfood, dinner, vegetables and turkey, strained~^~BABYFOOD,DINNER,VEG&TURKEY,STR~^^^~Y~^^0^^^^^ -~03085~^~0300~^~Babyfood, dinner, vegetables and turkey, junior~^~BABYFOOD,DINNER,VEG&TURKEY,JR~^^^~Y~^^0^^^^^ -~03089~^~0300~^~Babyfood, dinner, macaroni and cheese, strained~^~BABYFOOD,DINNER,MACARONI&CHS,STR~^^^~Y~^^0^^^^^ -~03090~^~0300~^~Babyfood, dinner, macaroni and cheese, junior~^~BABYFOOD,DINNER,MACARONI&CHS,JR~^^^~Y~^^0^^6.00^4.20^8.70^4.00 -~03091~^~0300~^~Babyfood, vegetables, green beans, strained~^~BABYFOOD,VEG,GRN BNS,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03092~^~0300~^~Babyfood, vegetables, green beans, junior~^~BABYFOOD,VEG,GRN BNS,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03093~^~0300~^~Babyfood, green beans, dices, toddler~^~BABYFOOD,GRN BNS,DICES,TODD~^^^~Y~^^0^^^^^ -~03096~^~0300~^~Babyfood, vegetable, green beans and potatoes~^~BABYFOOD,VEG,GRN BNS&POTATOES~^^^~Y~^^0^^^^^ -~03098~^~0300~^~Babyfood, vegetables, beets, strained~^~BABYFOOD,VEG,BEETS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03099~^~0300~^~Babyfood, vegetables, carrots, strained~^~BABYFOOD,VEG,CARROTS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03100~^~0300~^~Babyfood, vegetables, carrots, junior~^~BABYFOOD,VEG,CARROTS,JR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03104~^~0300~^~Babyfood, vegetables, squash, strained~^~BABYFOOD,VEG,SQUASH,STR~^^^~Y~^^0^^6.25^^^ -~03105~^~0300~^~Babyfood, vegetables, squash, junior~^~BABYFOOD,VEG,SQUASH,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03108~^~0300~^~Babyfood, vegetables, sweet potatoes strained~^~BABYFOOD,VEG,SWT POTATOES,STR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03109~^~0300~^~Babyfood, vegetables, sweet potatoes, junior~^~BABYFOOD,VEG,SWT POTATOES,JR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03112~^~0300~^~Babyfood, potatoes, toddler~^~BABYFOOD,POTATOES,TODDLER~^^^~Y~^^0^^^^^ -~03113~^~0300~^~Babyfood, cereal, Oatmeal, dry, GERBER, SINGLE GRAIN, fortified~^~BABYFOOD,CRL,OATMEAL,DRY,GERBER,SINGLE GRAIN,FORT~^^~GERBER~^^^0^^^^^ -~03114~^~0300~^~Babyfood, vegetable, butternut squash and corn~^~BABYFOOD,VEG,BUTTERNUT SQUASH&CORN~^^^~Y~^^0^^^^^ -~03115~^~0300~^~Babyfood, apples, dices, toddler~^~BABYFOOD,APPLS,DICES,TODD~^^^~Y~^^0^^6.25^^^ -~03116~^~0300~^~Babyfood, fruit, applesauce, strained~^~BABYFOOD,FRUIT,APPLSAUC,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03117~^~0300~^~Babyfood, fruit, applesauce, junior~^~BABYFOOD,FRUIT,APPLSAUC,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03118~^~0300~^~Babyfood, fruit, apricot with tapioca, strained~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03119~^~0300~^~Babyfood, vegetables, corn, creamed, strained~^~BABYFOOD,VEG,CORN,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03120~^~0300~^~Babyfood, vegetables, corn, creamed, junior~^~BABYFOOD,VEG,CORN,CRMD,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03121~^~0300~^~Babyfood, vegetables, peas, strained~^~BABYFOOD,VEG,PEAS,STR~^^^~Y~^^0^^^^^ -~03122~^~0300~^~Babyfood, peas, dices, toddler~^~BABYFOOD,PEAS,DICES,TODD~^^^~Y~^^0^^^^^ -~03127~^~0300~^~Babyfood, vegetables, spinach, creamed, strained~^~BABYFOOD,VEG,SPINACH,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03128~^~0300~^~Babyfood, fruit, apricot with tapioca, junior~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03129~^~0300~^~Babyfood, fruit, bananas with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03130~^~0300~^~Babyfood, fruit, peaches, strained~^~BABYFOOD,FRUIT,PEACHES,STR~^^^~Y~^^0^^^^^ -~03131~^~0300~^~Babyfood, fruit, peaches, junior~^~BABYFOOD,FRUIT,PEACHES,JR~^^^~Y~^^0^^^^^ -~03132~^~0300~^~Babyfood, fruit, pears, strained~^~BABYFOOD,FRUIT,PEARS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03133~^~0300~^~Babyfood, fruit, pears, junior~^~BABYFOOD,FRUIT,PEARS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03134~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03135~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03136~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03137~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03139~^~0300~^~Babyfood, prunes, without vitamin c, strained~^~BABYFOOD,PRUNES,WO/VIT C,STR~^^^~Y~^^0^^^^^ -~03140~^~0300~^~Babyfood, fruit dessert, mango with tapioca~^~BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03141~^~0300~^~Babyfood, pears, dices, toddler~^~BABYFOOD,PEARS,DICES,TODD~^^^~Y~^^0^^^^^ -~03142~^~0300~^~Babyfood, fruit, applesauce and apricots, strained~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03143~^~0300~^~Babyfood, fruit, applesauce and apricots, junior~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03144~^~0300~^~Babyfood, fruit, applesauce and cherries, strained~^~BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03145~^~0300~^~Babyfood, fruit, applesauce and cherries, junior~^~BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03147~^~0300~^~Babyfood, fruit, applesauce with banana, junior~^~BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR~^^^~Y~^^0^^^^^ -~03150~^~0300~^~Babyfood, fruit, applesauce and pineapple, strained~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03151~^~0300~^~Babyfood, fruit, applesauce and pineapple, junior~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03152~^~0300~^~Babyfood, fruit, apple and raspberry, strained~^~BABYFOOD,FRUIT,APPL & RASPBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03153~^~0300~^~Babyfood, fruit, apple and raspberry, junior~^~BABYFOOD,FRUIT,APPL & RASPBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03154~^~0300~^~Babyfood, fruit and vegetable, apple and sweet potato~^~BABYFOOD,FRUIT & VEG,APPL & SWT POTATO~^^^~Y~^^0^^^^^ -~03156~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03157~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03158~^~0300~^~Babyfood, fruit, pears and pineapple, strained~^~BABYFOOD,FRUIT,PEARS&PNAPPL,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03159~^~0300~^~Babyfood, fruit, pears and pineapple, junior~^~BABYFOOD,FRUIT,PEARS&PNAPPL,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03160~^~0300~^~Babyfood, fruit, guava and papaya with tapioca, strained~^~BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03161~^~0300~^~Babyfood, peaches, dices, toddler~^~BABYFOOD,PEACHES,DICES,TODD~^^^~Y~^^0^^^^^ -~03162~^~0300~^~Babyfood, fruit, papaya and applesauce with tapioca, strained~^~BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03163~^~0300~^~Babyfood, fruit, bananas with apples and pears, strained~^~BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR~^^^~Y~^^0^^^^^ -~03164~^~0300~^~Babyfood, fruit, apple and blueberry, strained~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03165~^~0300~^~Babyfood, fruit, apple and blueberry, junior~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03166~^~0300~^~Babyfood, juice, apple~^~BABYFOOD,JUICE,APPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03167~^~0300~^~Babyfood, apple-banana juice~^~BABYFOOD,APPLE-BANANA JUC~^^^~Y~^^0^^^^^ -~03168~^~0300~^~Babyfood, juice, apple and peach~^~BABYFOOD,JUC,APPL&PEACH~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03171~^~0300~^~Babyfood, juice, apple and prune~^~BABYFOOD,JUC,APPL&PRUNE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03172~^~0300~^~Babyfood, juice, orange~^~BABYFOOD,JUICE,ORANGE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03173~^~0300~^~Babyfood, juice, orange and apple~^~BABYFOOD,JUC,ORANGE&APPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03174~^~0300~^~Babyfood, juice, orange and apple and banana~^~BABYFOOD,JUC,ORANGE&APPL&BANANA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03175~^~0300~^~Babyfood, juice, orange and apricot~^~BABYFOOD,JUC,ORANGE&APRICOT~^^^^^0^^6.25^3.36^8.37^3.92 -~03176~^~0300~^~Babyfood, juice, orange and banana~^~BABYFOOD,JUC,ORANGE&BANANA~^^^^^0^^6.25^3.36^8.37^3.92 -~03177~^~0300~^~Babyfood, juice, orange and pineapple~^~BABYFOOD,JUC,ORANGE&PNAPPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03178~^~0300~^~Babyfood, juice, prune and orange~^~BABYFOOD,JUC,PRUNE&ORANGE~^^^^^0^^6.25^3.36^8.37^3.92 -~03179~^~0300~^~Babyfood, juice, mixed fruit~^~BABYFOOD,JUC,MXD FRUIT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03181~^~0300~^~Babyfood, cereal, barley, dry fortified~^~BABYFOOD,CRL,BARLEY,DRY FORT~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~03184~^~0300~^~Babyfood, cereal, whole wheat, with apples, dry fortified~^~BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT~^^^~Y~^^0^^^^^ -~03185~^~0300~^~Babyfood, cereal, mixed, dry fortified~^~BABYFOOD,CRL,MXD,DRY FORT~^^^~Y~^^0^^5.90^3.40^8.40^4.10 -~03186~^~0300~^~Babyfood, cereal, mixed, with bananas, dry~^~BABYFOOD,CRL,MXD,W/ BANANAS,DRY~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03187~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, strained~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03188~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03189~^~0300~^~Babyfood, cereal, oatmeal, dry fortified~^~BABYFOOD,CRL,OATMEAL,DRY FORT~^^^~Y~^^0^^5.83^3.46^8.37^4.12 -~03190~^~0300~^~Babyfood, cereal, oatmeal, with bananas, dry~^~BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03191~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, strained~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03192~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03193~^~0300~^~Babyfood, cereal, oatmeal, with honey, dry~^~BABYFOOD,CRL,OATMEAL,W/HONEY,DRY~^^^^^0^^5.83^3.50^8.40^4.10 -~03194~^~0300~^~Babyfood, cereal, rice, dry fortified~^~BABYFOOD,CRL,RICE,DRY FORT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~03195~^~0300~^~Babyfood, cereal, rice, with applesauce and bananas, strained~^~BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03197~^~0300~^~Babyfood, cereal, with egg yolks, strained~^~BABYFOOD,CRL,W/EGG YOLKS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03198~^~0300~^~Babyfood, cereal, with egg yolks, junior~^~BABYFOOD,CRL,W/EGG YOLKS,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03199~^~0300~^~Babyfood, cereal, with eggs, strained~^~BABYFOOD,CRL,W/EGGS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03201~^~0300~^~Babyfood, cereal, egg yolks and bacon, junior~^~BABYFOOD,CRL,EGG YOLKS&BACON,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03205~^~0300~^~Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified~^~BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT~^^^~Y~^^0^^^^^ -~03206~^~0300~^~Babyfood, cookie, baby, fruit~^~BABYFOOD,COOKIE,BABY,FRUIT~^^^~Y~^^0^^^^^ -~03209~^~0300~^~Babyfood, crackers, vegetable~^~BABYFOOD,CRACKERS,VEG~^^^~Y~^^0^^^^^ -~03211~^~0300~^~Babyfood, cereal, high protein, with apple and orange, dry~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY~^^^^^0^^5.85^3.50^8.40^4.00 -~03212~^~0300~^~Babyfood, cereal, rice, with bananas, dry~^~BABYFOOD,CRL,RICE,W/ BANANAS,DRY~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03213~^~0300~^~Babyfood, cookies~^~BABYFOOD,COOKIES~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03214~^~0300~^~Babyfood, cookies, arrowroot~^~BABYFOOD,COOKIES,ARROWROOT~^^^^^0^^5.75^4.00^8.40^4.10 -~03215~^~0300~^~Babyfood, pretzels~^~BABYFOOD,PRETZELS~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03216~^~0300~^~Babyfood, GERBER, GRADUATES Lil Biscuits Vanilla Wheat~^~BABYFOOD,GERBER,GRADUATES LIL BISCUITS VANILLA WHEAT~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03217~^~0300~^~Zwieback~^~ZWIEBACK~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03220~^~0300~^~Babyfood, dessert, dutch apple, strained~^~BABYFOOD,DSSRT,DUTCH APPL,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03221~^~0300~^~Babyfood, dessert, dutch apple, junior~^~BABYFOOD,DSSRT,DUTCH APPL,JR~^^^~Y~^^0^^^^^ -~03222~^~0300~^~Babyfood, cherry cobbler, junior~^~BABYFOOD,CHERRY COBBLER,JR~^^^~Y~^^0^^^^^ -~03224~^~0300~^~Babyfood, dessert, cherry vanilla pudding, strained~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03225~^~0300~^~Babyfood, dessert, cherry vanilla pudding, junior~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03226~^~0300~^~Babyfood, dessert, fruit pudding, orange, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR~^^^^^0^^6.33^4.30^8.90^3.80 -~03227~^~0300~^~Babyfood, dessert, peach cobbler, strained~^~BABYFOOD,DSSRT,PEACH COBBLER,STR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03228~^~0300~^~Babyfood, dessert, peach cobbler, junior~^~BABYFOOD,DSSRT,PEACH COBBLER,JR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03229~^~0300~^~Babyfood, dessert, peach melba, strained~^~BABYFOOD,DSSRT,PEACH MELBA,STR~^^^^^0^^6.25^3.40^8.40^3.60 -~03230~^~0300~^~Babyfood, dessert, peach melba, junior~^~BABYFOOD,DSSRT,PEACH MELBA,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03233~^~0300~^~Babyfood, dessert, fruit pudding, pineapple, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR~^^^~Y~^^0^^6.20^4.30^8.90^3.60 -~03235~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, strained~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03236~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, junior~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03238~^~0300~^~Babyfood, dessert, tropical fruit, junior~^~BABYFOOD,DSSRT,TROPICAL FRUIT,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03245~^~0300~^~Babyfood, dessert, custard pudding, vanilla, strained~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR~^^^~Y~^^0^^6.33^4.30^8.90^3.80 -~03246~^~0300~^~Babyfood, dessert, custard pudding, vanilla, junior~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR~^^^~Y~^^0^^^^^ -~03265~^~0300~^~Babyfood, juice, apple and grape~^~BABYFOOD,JUC,APPL&GRAPE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03267~^~0300~^~Babyfood, juice, fruit punch, with calcium~^~BABYFOOD,JUC,FRUIT PUNCH,W/CA~^^^~Y~^^0^^^^^ -~03269~^~0300~^~Babyfood, juice, apple, with calcium~^~BABYFOOD,JUC,APPL,W/CA~^^^~Y~^^0^^^^^ -~03274~^~0300~^~Babyfood, dinner, vegetables and chicken, junior~^~BABYFOOD,DINNER,VEG&CHICK,JR~^^^~Y~^^0^^^^^ -~03278~^~0300~^~Babyfood, dinner, mixed vegetable, strained~^~BABYFOOD,DINNER,MXD VEG,STR~^^^^^0^^6.07^3.00^8.40^3.80 -~03279~^~0300~^~Babyfood, dinner, mixed vegetable, junior~^~BABYFOOD,DINNER,MXD VEG,JR~^^^~Y~^^0^^6.07^3.00^8.40^3.80 -~03280~^~0300~^~Babyfood, fruit, bananas with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03282~^~0300~^~Babyfood, vegetables, mix vegetables junior~^~BABYFOOD,VEG,MIX VEG JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03283~^~0300~^~Babyfood, vegetables, garden vegetable, strained~^~BABYFOOD,VEG,GARDEN VEG,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03286~^~0300~^~Babyfood, vegetables, mix vegetables strained~^~BABYFOOD,VEG,MIX VEG STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03287~^~0300~^~Babyfood, dinner, beef noodle, junior~^~BABYFOOD,DINNER,BF NOODLE,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03289~^~0300~^~Babyfood, apples with ham, strained~^~BABYFOOD,APPLS W/HAM,STR~^^^~Y~^^0^^^^^ -~03290~^~0300~^~Babyfood, carrots and beef, strained~^~BABYFOOD,CARROTS&BF,STR~^^^~Y~^^0^^^^^ -~03293~^~0300~^~Babyfood, plums, bananas and rice, strained~^~BABYFOOD,PLUMS,BANANAS&RICE,STR~^^^~Y~^^0^^^^^ -~03296~^~0300~^~Babyfood, dinner, turkey, rice, and vegetables, toddler~^~BABYFOOD,TURKEY,RICE&VEG,TODD~^^^~Y~^^0^^^^^ -~03297~^~0300~^~Babyfood, dinner, apples and chicken, strained~^~BABYFOOD,DINNER,APPLS&CHICK,STR~^^^~Y~^^0^^^^^ -~03298~^~0300~^~Babyfood, dinner, broccoli and chicken, junior~^~BABYFOOD,DINNER,BROCCOLI & CHICK,JR~^^^~Y~^^0^^^^^ -~03301~^~0300~^~Babyfood, beverage, GERBER, GRADUATES, FRUIT SPLASHERS~^~BABYFOOD,BEV,GERBER,GRADUATES,FRUIT SPLASHERS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03302~^~0300~^~Babyfood, snack, GERBER, GRADUATES, YOGURT MELTS~^~BABYFOOD,SNACK,GERBER,GRADUATES,YOGURT MELTS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03303~^~0300~^~Babyfood, dinner, sweet potatoes and chicken, strained~^~BABYFOOD,DINNER,SWT POTATOES&CHICK,STR~^^^~Y~^^0^^^^^ -~03376~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil 24, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAM 24,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03381~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Enspire Powder, with ARA and DHA, not reconstituted~^~INF FORM,ME JOHN,ENFA ENSPI PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03382~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature High Protein 24 Calories, ready to feed, with ARA and DHA~^~INF FOR,ME JOH,ENFAMIL PRE HI PRO 24 CAL,RE TO FE,W/ AR & DH~^^~MEAD JOHNSON~^^^0^^^^^ -~03384~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature 30 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENF PREMA 30 CAL,REA TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03385~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, powder, with ARA and DHA, not reconstituted~^~INF FOR,M JOH,ENFA FOR SUPPL,PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03386~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline Powder, with ARA and DHA, not reconstituted~^~INF FORMULA,ME JOH,ENFA REGUPDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03387~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFAM REGU,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03388~^~0300~^~Infant formula, MEAD JOHNSON, Gentlease, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,GENTLEASE,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03389~^~0300~^~Toddler formula, MEAD JOHNSON, Nutramigen Toddler with LGG Powder, with ARA and DHA, not reconstituted~^~TODD FORM,M JOHN,NUTR TODD W/ LGG PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03390~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 20 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEJOHN,PREGESTIM 20 CAL,RE TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03391~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 24 Calories, ready to feed, with ARA and DHA~^~INF FORMUMEAD JOH,PREGESTI 24 CAL,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03392~^~0300~^~Toddler drink, MEAD JOHNSON, PurAmino Toddler Powder, with ARA and DHA, not reconstituted~^~TODDLER DRK,MEAD JOH,PURA TODD PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03393~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFA FO SUPPLEME,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03681~^~0300~^~Babyfood, cereal, barley, prepared with whole milk~^~BABYFOOD,CRL,BARLEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03682~^~0300~^~Babyfood, cereal, high protein, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03685~^~0300~^~Babyfood, cereal, mixed, prepared with whole milk~^~BABYFOOD,CRL,MXD,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03686~^~0300~^~Babyfood, cereal, mixed, with bananas, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03689~^~0300~^~Babyfood, cereal, oatmeal, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03690~^~0300~^~Babyfood, cereal, oatmeal, with bananas, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03693~^~0300~^~Babyfood, cereal, oatmeal, with honey, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03694~^~0300~^~Babyfood, cereal, rice, prepared with whole milk~^~BABYFOOD,CRL,RICE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03696~^~0300~^~Babyfood, cereal, rice, with honey, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03704~^~0300~^~Babyfood, cereal, mixed, with honey, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03711~^~0300~^~Babyfood, cereal, high protein, with apple and orange, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03712~^~0300~^~Babyfood, cereal, rice, with bananas, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03801~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted~^~INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03802~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, powder~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03805~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03808~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFA,W/ IR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03812~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, liquid concentrate, with ARA and DHA, reconstituted~^~INF FORMU,M JOH,ENFA,INFA,W/ IRON,LIQ CO,W/ ARA & DHA,RECON~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03815~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA~^~INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03818~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA~^~INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03821~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, with ARA and DHA, not reconstituted~^~INF FORMU,ME JOHN,PREGESTI,W/ IRON,PDR,W/ ARA & DHA,N RE~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03822~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, with ARA and DHA, prepared from powder~^~INF FORMU,MEAD JOH,PREGES,W/ IRON,W/ ARA & DHA,PREP FR PD~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03823~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF~^^^~Y~^^0^^^^^ -~03825~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA~^~INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03832~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFANT,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03837~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03838~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN WITH LGG, with iron, powder, not reconstituted, with ARA and DHA~^~IN FOR,ME JOH,ENF,NUTRA W/ LGG,W/ IR,PDR,NOT R,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03841~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03842~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03843~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted~^~INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03844~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate not reconstituted, with ARA and DHA~^~INF FOR,ME JOH,ENFA,NUTR,W/ IRON,LIQ CO NOT REC,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03845~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed, with ARA and DHA~^~INF FORMU,ME JOHNS,ENFA,NUTRAMI,W/ IRON,RTF,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03846~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03849~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE, with iron, powder, with ARA and DHA~^~INF FORMU,MEA JOHNS,ENFAMIL,ENFACA,W/ IRON,PDR,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03851~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted~^~INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03852~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHN,ENFA,PROSO,W/ IRON,PDR,NOT RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03853~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03854~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, liquid concentrate, reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHNSOFAMIL,PROS,LIQ CONC,RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03857~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNS,PROSO,W/ IR,RE TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03859~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03860~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed~^~CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03861~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA~^~INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03864~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA~^~INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03867~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder~^~INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03870~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber~^~CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03928~^~0300~^~Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder~^~INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03929~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted~^~INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^5.71^^^ -~03930~^~0300~^~Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder~^~INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR~^^~MEAD JOHNSON~^^^0^^^^^ -~03934~^~0300~^~Babyfood, corn and sweet potatoes, strained~^~BABYFOOD,CORN & SWT POTATOES,STR~^^^~Y~^^0^^^^^ -~03935~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA~^~INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03936~^~0300~^~Infant formula, PBM PRODUCTS, store brand, ready-to-feed~^~INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03937~^~0300~^~Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted~^~INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03938~^~0300~^~Infant formula, PBM PRODUCTS, store brand, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR~^^~PBM~^~Y~^^0^^^^^ -~03939~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF~^^~PBM~^~Y~^^0^^^^^ -~03940~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted~^~INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON~^^~PBM~^~Y~^^0^^^^^ -~03941~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR~^^~PBM~^~Y~^^0^^^^^ -~03942~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03943~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03944~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA~^~INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03945~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA~^~INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03946~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03947~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA~^~INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03948~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA~^~INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03949~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03950~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted~^~INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03951~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted~^~INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03952~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate~^~INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03953~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03954~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted~^~INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03955~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03956~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified~^~BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT~^^^~Y~^^0^^^^^ -~03957~^~0300~^~Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA~^~INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03959~^~0300~^~Babyfood, mashed cheddar potatoes and broccoli, toddlers~^~BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER~^^^~Y~^^0^^^^^ -~03960~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03961~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate~^~INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC~^^~Nestle USA, Inc.~^^^0^^^^^ -~03963~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE, with iron, prepared from powder~^~INF FORM,MEAD JOHNSON,ENFA GENTL,W/ IRON,PREP FROM PDR~^^~MEAD JOHNSON~^~Y~^^0^^1.36^^^ -~03964~^~0300~^~Babyfood, fortified cereal bar, fruit filling~^~BABYFOOD,FORT CRL BAR,FRUIT FILLING~^^^~Y~^^0^^^^^ -~03965~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified~^~BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT~^^^~Y~^^0^^^^^ -~03966~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03967~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW, Toddler Transitions, with ARA and DHA, powder~^~TODD FOR,MEJOHN,ENFAGR,TODD TRANSITI,W/ ARA & DHA,PDR~^^^~Y~^^0^^6.25^^^ -~03968~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed~^~TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF~^^^~Y~^^0^^^^^ -~03980~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, with ARA and DHA powder not reconstituted~^~INF FORM,ME JOHN,ENF,GEN,W/ ARA & DHA PDR NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03982~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed~^~INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF~^^^~Y~^^0^^6.25^^^ -~03983~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03984~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 20 calories, ready-to-feed~^~INF FORMULA,ME JOHNSON,ENFAMIL,PREMATU,W/ IR,20 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03985~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 24 calories, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,W/ IR,24 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03986~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with DHA and ARA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ DHA & ARA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03987~^~0300~^~Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03988~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed~^~INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03989~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03990~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03991~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03992~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA~^~INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03993~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03994~^~0300~^~Babyfood, fruit, banana and strawberry, junior~^~BABYFD,FRU,BAN AND STRAW, JU~^^^~Y~^^0^^^^^ -~03995~^~0300~^~Babyfood, banana with mixed berries, strained~^~BABYFOO,BAN WI MIX BERR,ST~^^^~Y~^^0^^6.25^^^ -~03996~^~0300~^~Babyfood, Multigrain whole grain cereal, dry fortified~^~Babyfood, Multigrain whole grain cereal, dry fortified~^^^~Y~^^0^^^^^ -~03997~^~0300~^~Babyfood, Baby MUM MUM Rice Biscuits~^~BABYFOOD,BABY MUM MUM RICE BISCUITS~^^^~Y~^^0^^^^^ -~03998~^~0300~^~Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack~^~BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK~^^~GERBER~^~Y~^^0^^6.25^^^ -~03999~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA~^~INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~04001~^~0400~^~Fat, beef tallow~^~FAT,BEEF TALLOW~^^^~Y~^^0^^0.00^^9.02^ -~04002~^~0400~^~Lard~^~LARD~^^^~Y~^^0^^0.00^^9.02^ -~04011~^~0400~^~Salad dressing, KRAFT Mayo Light Mayonnaise~^~SALAD DRSNG,KRAFT MAYO LT MAYO~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04013~^~0400~^~Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing~^~SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~04014~^~0400~^~Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing~^~SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04015~^~0400~^~Salad dressing, russian dressing~^~SALAD DRSNG,RUSSIAN DRSNG~^^^~Y~^^0^^6.25^3.40^8.84^3.80 -~04016~^~0400~^~Salad dressing, sesame seed dressing, regular~^~SALAD DRSNG,SESAME SD DRSNG,REG~^^^~Y~^^0^^6.25^4.03^8.84^3.80 -~04017~^~0400~^~Salad dressing, thousand island, commercial, regular~^~SALAD DRSNG,1000 ISLAND,COMM,REG~^^^~Y~^^0^^^^^ -~04018~^~0400~^~Salad dressing, mayonnaise type, regular, with salt~^~SALAD DRSNG,MAYO TYPE,REG,W/SALT~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04020~^~0400~^~Salad dressing, french dressing, reduced fat~^~SALAD DRSNG,FRENCH DRSNG,RED FAT~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04021~^~0400~^~Salad dressing, italian dressing, commercial, reduced fat~^~SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT~^^^~Y~^^0^^^^^ -~04022~^~0400~^~Salad dressing, russian dressing, low calorie~^~SALAD DRSNG,RUSSIAN DRSNG,LO CAL~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04023~^~0400~^~Salad dressing, thousand island dressing, reduced fat~^~SALAD DRSNG,1000 ISLAND DRSNG,RED FAT~^^^~Y~^^0^^6.25^3.90^8.84^3.80 -~04025~^~0400~^~Salad dressing, mayonnaise, regular~^~SALAD DRSNG,MAYO,REG~^^^~Y~^^0^^^^^ -~04026~^~0400~^~Salad dressing, mayonnaise, soybean and safflower oil, with salt~^~SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04027~^~0400~^~Salad dressing, mayonnaise, imitation, soybean~^~SALAD DRSNG,MAYO,IMITN,SOYBN~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04028~^~0400~^~Salad dressing, mayonnaise, imitation, milk cream~^~SALAD DRSNG,MAYO,IMITN,MILK CRM~^^^^^0^^6.25^4.36^8.84^3.80 -~04029~^~0400~^~Salad dressing, mayonnaise, imitation, soybean without cholesterol~^~SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04030~^~0400~^~Sandwich spread, with chopped pickle, regular, unspecified oils~^~SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS~^^^~Y~^^0^^6.25^3.92^8.84^3.80 -~04031~^~0400~^~Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)~^~SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED~^^^~Y~^^0^^0.00^^8.84^ -~04034~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated)~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)~^^^~Y~^^0^^0.00^^8.84^ -~04037~^~0400~^~Oil, rice bran~^~OIL,RICE BRAN~^^^^^0^^0.00^^8.84^ -~04038~^~0400~^~Oil, wheat germ~^~OIL,WHEAT GERM~^^^~Y~^^0^^0.00^^8.84^ -~04042~^~0400~^~Oil, peanut, salad or cooking~^~OIL,PNUT,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04044~^~0400~^~Oil, soybean, salad or cooking~^~OIL,SOYBN,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04047~^~0400~^~Oil, coconut~^~OIL,COCNT~^^^~Y~^^0^^^^^ -~04053~^~0400~^~Oil, olive, salad or cooking~^~OIL,OLIVE,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04055~^~0400~^~Oil, palm~^~OIL,PALM~^^^^^0^^0.00^^8.84^ -~04058~^~0400~^~Oil, sesame, salad or cooking~^~OIL,SESAME,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04060~^~0400~^~Oil, sunflower, linoleic (less than 60%)~^~OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)~^^^^^0^^0.00^^8.84^ -~04073~^~0400~^~Margarine, regular, hard, soybean (hydrogenated)~^~MARGARINE,REG,HARD,SOYBN (HYDR)~^^^^^0^^6.38^4.27^8.84^3.87 -~04114~^~0400~^~Salad dressing, italian dressing, commercial, regular~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04120~^~0400~^~Salad dressing, french dressing, commercial, regular~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04128~^~0400~^~Margarine,spread, 35-39% fat, tub~^~MARGARINE,SPRD,35-39% FAT,TUB~^^^~Y~^^0^^^^^ -~04133~^~0400~^~Salad dressing, french, home recipe~^~SALAD DRSNG,FRENCH,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04135~^~0400~^~Salad dressing, home recipe, vinegar and oil~^~SALAD DRSNG,HOME RECIPE,VINEGAR&OIL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04141~^~0400~^~Salad dressing, french dressing, commercial, regular, without salt~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04142~^~0400~^~Salad dressing, french dressing, reduced fat, without salt~^~SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04143~^~0400~^~Salad dressing, italian dressing, commercial, regular, without salt~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04144~^~0400~^~Salad dressing, italian dressing, reduced fat, without salt~^~SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04145~^~0400~^~Salad dressing, mayonnaise, soybean oil, without salt~^~SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04146~^~0400~^~Salad dressing, french, cottonseed, oil, home recipe~^~SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04367~^~0400~^~Salad dressing, french dressing, fat-free~^~SALAD DRSNG,FRENCH DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04501~^~0400~^~Oil, cocoa butter~^~OIL,COCOA BUTTER~^^^^^0^^0.00^^8.84^ -~04502~^~0400~^~Oil, cottonseed, salad or cooking~^~OIL,CTTNSD,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04506~^~0400~^~Oil, sunflower, linoleic, (approx. 65%)~^~OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)~^^^~Y~^^0^^0.00^^8.84^ -~04510~^~0400~^~Oil, safflower, salad or cooking, linoleic, (over 70%)~^~OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)~^^^^^0^^0.00^^8.84^ -~04511~^~0400~^~Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)~^~OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC~^^^~Y~^^0^^0.00^^8.84^ -~04513~^~0400~^~Vegetable oil, palm kernel~^~VEGETABLE OIL,PALM KERNEL~^^^~Y~^^0^^0.00^^8.62^ -~04514~^~0400~^~Oil, poppyseed~^~OIL,POPPYSEED~^^^^^0^^0.00^^8.84^ -~04515~^~0400~^~Oil, tomatoseed~^~OIL,TOMATOSEED~^^^^^0^^0.00^^8.84^ -~04516~^~0400~^~Oil, teaseed~^~OIL,TEASEED~^^^^^0^^0.00^^8.84^ -~04517~^~0400~^~Oil, grapeseed~^~OIL,GRAPESEED~^^^^^0^^0.00^^8.84^ -~04518~^~0400~^~Oil, corn, industrial and retail, all purpose salad or cooking~^~OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING~^^^~Y~^^0^^^^^ -~04528~^~0400~^~Oil, walnut~^~OIL,WALNUT~^^^~Y~^^0^^0.00^^8.84^ -~04529~^~0400~^~Oil, almond~^~OIL,ALMOND~^^^~Y~^^0^^0.00^^8.84^ -~04530~^~0400~^~Oil, apricot kernel~^~OIL,APRICOT KERNEL~^^^^^0^^0.00^^8.84^ -~04531~^~0400~^~Oil, soybean lecithin~^~OIL,SOYBN LECITHIN~^^^^^0^^0.00^^7.63^ -~04532~^~0400~^~Oil, hazelnut~^~OIL,HAZELNUT~^^^^^0^^0.00^^8.84^ -~04534~^~0400~^~Oil, babassu~^~OIL,BABASSU~^^^^^0^^0.00^^8.82^ -~04536~^~0400~^~Oil, sheanut~^~OIL,SHEANUT~^^^^^0^^0.00^^8.62^ -~04539~^~0400~^~Salad dressing, blue or roquefort cheese dressing, commercial, regular~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04541~^~0400~^~Oil, cupu assu~^~OIL,CUPU ASSU~^^^^^0^^0.00^^8.62^ -~04542~^~0400~^~Fat, chicken~^~FAT,CHICKEN~^^^~Y~^^0^^0.00^^9.02^ -~04543~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04544~^~0400~^~Shortening, household, lard and vegetable oil~^~SHORTENING,HOUSEHOLD,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04545~^~0400~^~Oil, sunflower, linoleic, (partially hydrogenated)~^~OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)~^^^^^0^^0.00^^8.84^ -~04546~^~0400~^~Shortening bread, soybean (hydrogenated) and cottonseed~^~SHORTENING BREAD,SOYBN (HYDR)&CTTNSD~^^^^^0^^0.00^^8.84^ -~04548~^~0400~^~Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)~^~SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)~^^^^^0^^0.00^^8.82^ -~04549~^~0400~^~Shortening industrial, lard and vegetable oil~^~SHORTENING INDUSTRIAL,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04550~^~0400~^~Shortening frying (heavy duty), beef tallow and cottonseed~^~SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD~^^^^^0^^0.00^^9.02^ -~04551~^~0400~^~Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)~^~SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)~^^^^^0^^0.00^^8.84^ -~04554~^~0400~^~Shortening industrial, soybean (hydrogenated) and cottonseed~^~SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04556~^~0400~^~Shortening frying (heavy duty), palm (hydrogenated)~^~SHORTENING FRYING (HVY DUTY),PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04559~^~0400~^~Shortening household soybean (hydrogenated) and palm~^~SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM~^^^^^0^^0.00^^8.84^ -~04560~^~0400~^~Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)~^~SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%~^^^^^0^^0.00^^8.84^ -~04570~^~0400~^~Shortening, confectionery, fractionated palm~^~SHORTENING,CONFECTIONERY,FRACTIONATED PALM~^^^^^0^^0.00^^8.62^ -~04572~^~0400~^~Oil, nutmeg butter~^~OIL,NUTMEG BUTTER~^^^^^0^^0.00^^8.62^ -~04573~^~0400~^~Oil, ucuhuba butter~^~OIL,UCUHUBA BUTTER~^^^^^0^^0.00^^8.84^ -~04575~^~0400~^~Fat, turkey~^~FAT,TURKEY~^^^~Y~^^0^^0.00^^8.84^ -~04576~^~0400~^~Fat, goose~^~FAT,GOOSE~^^^^^0^^0.00^^8.84^ -~04581~^~0400~^~Oil, avocado~^~OIL,AVOCADO~^^^^^0^^0.00^^8.84^ -~04582~^~0400~^~Oil, canola~^~OIL,CANOLA~^~low erucic acid rapeseed oil~^^~Y~^^0^^0.00^^8.84^ -~04583~^~0400~^~Oil, mustard~^~OIL,MUSTARD~^^^^^0^^0.00^^8.84^ -~04584~^~0400~^~Oil, sunflower, high oleic (70% and over)~^~OIL,SUNFLOWER,HI OLEIC (70% & OVER)~^^^^^0^^0.00^^8.84^ -~04585~^~0400~^~Margarine-like, margarine-butter blend, soybean oil and butter~^~MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER~^^^~Y~^^0^^6.25^^^ -~04586~^~0400~^~Shortening, special purpose for cakes and frostings, soybean (hydrogenated)~^~SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)~^^^^^0^^0.00^^8.84^ -~04587~^~0400~^~Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed~^~SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD~^^^^^0^^0.00^^8.84^ -~04588~^~0400~^~Oil, oat~^~OIL,OAT~^^^^^0^^0.00^^8.84^ -~04589~^~0400~^~Fish oil, cod liver~^~FISH OIL,COD LIVER~^^^^^0^^0.00^^9.02^ -~04590~^~0400~^~Fish oil, herring~^~FISH OIL,HERRING~^^^^^0^^0.00^^9.02^ -~04591~^~0400~^~Fish oil, menhaden~^~FISH OIL,MENHADEN~^^^^^0^^0.00^^9.02^ -~04592~^~0400~^~Fish oil, menhaden, fully hydrogenated~^~FISH OIL,MENHADEN,FULLY HYDR~^^^^^0^^0.00^^9.02^ -~04593~^~0400~^~Fish oil, salmon~^~FISH OIL,SALMON~^^^^^0^^0.00^^9.02^ -~04594~^~0400~^~Fish oil, sardine~^~FISH OIL,SARDINE~^^^^^0^^0.00^^9.02^ -~04595~^~0400~^~Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)~^~SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04600~^~0400~^~Margarine-like, vegetable oil-butter spread, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04601~^~0400~^~Butter, light, stick, with salt~^~BUTTER,LT,STK,W/SALT~^^^~Y~^^0^^^^^ -~04602~^~0400~^~Butter, light, stick, without salt~^~BUTTER,LT,STK,WO/SALT~^^^~Y~^^0^^^^^ -~04609~^~0400~^~Animal fat, bacon grease~^~ANIMAL FAT,BACON GREASE~^^^~Y~^^0^^^^^ -~04610~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04611~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT~^^^~Y~^^0^^6.25^4.27^8.84^3.87 -~04612~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04613~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04614~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04615~^~0400~^~Shortening, vegetable, household, composite~^~SHORTENING,VEG,HOUSEHOLD,COMP~^^^~Y~^^0^^6.25^^8.84^ -~04617~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT~^^^~Y~^^0^^^^^ -~04618~^~0400~^~Margarine, regular, 80% fat, composite, tub, without salt~^~MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT~^^^~Y~^^0^^^^^ -~04620~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04624~^~0400~^~Margarine-like, vegetable oil spread, fat free, liquid, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04626~^~0400~^~Margarine-like spread with yogurt, 70% fat, stick, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT~^^^~Y~^^0^^^^^ -~04627~^~0400~^~Margarine-like spread with yogurt, approximately 40% fat, tub, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04628~^~0400~^~Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils~^~MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS~^^^^^0^^^4.27^8.84^3.87 -~04629~^~0400~^~Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick~^~MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK~^^^^^0^^6.38^4.27^8.84^3.87 -~04630~^~0400~^~Margarine Spread, 40-49% fat, tub~^~Margarine 40-49% fat~^^^^^0^^^^^ -~04631~^~0400~^~Margarine-like, vegetable oil spread, fat-free, tub~^~MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB~^^^~Y~^^0^^^4.27^8.84^3.87 -~04633~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT~^^^~Y~^^0^^0.00^^9.02^ -~04634~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, without salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT~^^^~Y~^^0^^^^^ -~04635~^~0400~^~Salad dressing, thousand island dressing, fat-free~^~SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04636~^~0400~^~Salad dressing, italian dressing, fat-free~^~SALAD DRSNG,ITALIAN DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04638~^~0400~^~Salad dressing, ranch dressing, fat-free~^~SALAD DRSNG,RANCH DRSNG,FAT-FREE~^^^^^0^^^4.36^8.84^3.80 -~04639~^~0400~^~Salad dressing, ranch dressing, regular~^~SALAD DRSNG,RANCH DRSNG,REG~^^^~Y~^^0^^^^^ -~04640~^~0400~^~Salad dressing, ranch dressing, reduced fat~^~SALAD DRSNG,RANCH DRSNG,RED FAT~^^^^^0^^^4.36^8.84^3.80 -~04641~^~0400~^~Salad dressing, mayonnaise, light~^~SALAD DRSNG,MAYO,LT~^~lite mayonnaise~^^~Y~^^0^^^^^ -~04642~^~0400~^~Oil, industrial, mid-oleic, sunflower~^~OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER~^~NuSun~^^^^0^^^^8.84^ -~04643~^~0400~^~Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT~^^^^^0^^^^8.84^ -~04644~^~0400~^~Oil, industrial, canola for salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING~^^^^^0^^^^^ -~04645~^~0400~^~Oil, industrial, canola (partially hydrogenated) oil for deep fat frying~^~OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING~^^^^^0^^^^^ -~04646~^~0400~^~Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts~^~OIL,INDUSTRIAL,COCNT~^^^^^0^^^^8.84^ -~04648~^~0400~^~Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG~^^^^^0^^^^8.84^ -~04649~^~0400~^~Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening~^~SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY~^^^^^0^^^^8.84^ -~04650~^~0400~^~Oil, industrial, soy, refined, for woks and light frying~^~OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING~^^^^^0^^^^8.84^ -~04651~^~0400~^~Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR~^^^~Y~^^0^^^^8.84^ -~04652~^~0400~^~Oil, industrial, soy ( partially hydrogenated), all purpose~^~OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP~^^^~Y~^^0^^6.25^^8.84^ -~04653~^~0400~^~Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry~^~OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY~^^^^^0^^6.25^^8.84^ -~04654~^~0400~^~Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening~^~OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING~^^^~Y~^^0^^6.25^^8.84^ -~04655~^~0400~^~Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries~^~MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY~^^^^^0^^6.25^^8.84^ -~04656~^~0400~^~Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter~^~OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04657~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04658~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04659~^~0400~^~Oil, industrial, coconut, confection fat, typical basis for ice cream coatings~^~OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS~^^^~Y~^^0^^6.25^^8.84^ -~04660~^~0400~^~Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS~^^^^^0^^6.25^^8.84^ -~04661~^~0400~^~Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners~^~OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS~^^^^^0^^6.25^^8.84^ -~04662~^~0400~^~Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)~^~OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)~^^^^^0^^6.25^^8.84^ -~04663~^~0400~^~Oil, industrial, palm kernel (hydrogenated), filling fat~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT~^^^^^0^^6.25^^8.84^ -~04664~^~0400~^~Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings~^~OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS~^^^^^0^^6.25^^8.84^ -~04665~^~0400~^~Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries~^~MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )~^^^^^0^^^^^ -~04666~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) and corn for frying~^~SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING~^^^~Y~^^0^^0.00^^8.84^ -~04667~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) for baking and confections~^~SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS~^^^^^0^^0.00^^8.84^ -~04668~^~0400~^~Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy~^~MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY~^^^^^0^^6.38^^^ -~04669~^~0400~^~Oil, vegetable, soybean, refined~^~OIL,VEG,SOYBN,REFINED~^^^^^0^^0.00^^8.84^ -~04673~^~0400~^~Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil~^~MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD~^^~GFA Brands~^^^0^^^^^ -~04674~^~0400~^~Margarine-like spread, SMART BALANCE Light Buttery Spread~^~MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04675~^~0400~^~Margarine-like spread, SMART BEAT Super Light without saturated fat~^~MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT~^^~GFA Brands~^^^0^^6.38^^^ -~04676~^~0400~^~Margarine-like spread, SMART BEAT Smart Squeeze~^~MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE~^^~GFA Brands~^^^0^^6.38^^^ -~04677~^~0400~^~Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)~^~MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04678~^~0400~^~Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)~^~OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)~^~trans free high stability low saturated fat non-hydrogenated canola oil~^~Dow AgroSciences, LLC~^^^0^^^^8.84^ -~04679~^~0400~^~Oil, PAM cooking spray, original~^~OIL,PAM COOKING SPRAY,ORIGINAL~^^~ConAgra, Inc.~^~Y~^^0^^6.25^^^ -~04683~^~0400~^~Margarine, margarine-like vegetable oil spread, 67-70% fat, tub~^~MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB~^^^^^0^^^4.27^8.84^3.87 -~04684~^~0400~^~Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)~^~MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD~^^~richardson~^^^0^^^^^ -~04685~^~0400~^~Oil, cooking and salad, ENOVA, 80% diglycerides~^~OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES~^^~ADM KAO LLC~^^^0^^^^8.84^ -~04686~^~0400~^~Salad dressing, honey mustard dressing, reduced calorie~^~SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL~^^^~Y~^^0^^6.25^^^ -~04687~^~0400~^~Margarine-like spread, BENECOL Light Spread~^~MARGARINE-LIKE SPRD,BENECOL LT SPRD~^^~McNeil Nutritionals, LLC~^^^0^^^^^ -~04688~^~0400~^~Salad dressing, spray-style dressing, assorted flavors~^~SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS~^^^^^0^^^^^ -~04689~^~0400~^~Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light~^~SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT~^^~Smart Balance Foods~^^^0^^^^^ -~04690~^~0400~^~Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D~^~VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^4.27^8.84^3.80 -~04691~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04692~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04693~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.80 -~04694~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.84 -~04695~^~0400~^~Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D~^~VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^^^ -~04696~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04697~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D~^^^~Y~^^0^^6.25^^^ -~04698~^~0400~^~Oil, industrial, canola, high oleic~^~OIL,INDUSTRIAL,CANOLA,HI OLEIC~^^^^^0^^6.25^^^ -~04699~^~0400~^~Oil, industrial, soy, low linolenic~^~OIL,INDUSTRIAL,SOY,LO LINOLENIC~^^^^^0^^^^^ -~04700~^~0400~^~Oil, industrial, soy, ultra low linolenic~^~OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC~^^^^^0^^^^8.84^ -~04701~^~0400~^~Oil, industrial, soy, fully hydrogenated~^~OIL,INDUSTRIAL,SOY,FULLY HYDR~^^^^^0^^^^8.84^ -~04702~^~0400~^~Oil, industrial, cottonseed, fully hydrogenated~^~OIL,INDUSTRIAL,CTTNSD,FULLY HYDR~^^^^^0^^^^8.84^ -~04703~^~0400~^~Salad dressing, honey mustard, regular~^~SALAD DRSNG,HONEY MUSTARD,REG~^^^~Y~^^0^^^^^ -~04704~^~0400~^~Salad dressing, poppyseed, creamy~^~SALAD DRSNG,POPPYSEED,CREAMY~^^^~Y~^^0^^^^^ -~04705~^~0400~^~Salad dressing, caesar, fat-free~^~SALAD DRSNG,CAESAR,FAT-FREE~^^^~Y~^^0^^^^^ -~04706~^~0400~^~Dressing, honey mustard, fat-free~^~DRESSING,HONEY MUSTARD,FAT-FREE~^^^~Y~^^0^^^^^ -~04707~^~0400~^~Oil, flaxseed, contains added sliced flaxseed~^~OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED~^^^^^0^^5.30^^8.84^ -~04708~^~0400~^~Mayonnaise, reduced fat, with olive oil~^~MAYONNAISE,RED FAT,W/ OLIVE OIL~^^^~Y~^^0^^6.25^^^ -~04709~^~0400~^~Salad dressing, mayonnaise-type, light~^~SALAD DRSNG,MAYONNAISE-TYPE,LT~^^^~Y~^^0^^6.25^^^ -~05000~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat only~^~CHICK,BROILER,ROTISSERIE,BBQ,BREAST,MEAT ONLY~^^^~Y~^~Bone and connective tissue 11%, skin and separable fat 11%~^22^^^^^ -~05001~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^31^~Gallus gallus~^6.25^4.27^9.02^3.87 -~05002~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter~^~CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05003~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05004~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~05005~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05006~^~0500~^~Chicken, broilers or fryers, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05007~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~05008~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~05009~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^33^^6.25^4.27^9.02^3.87 -~05010~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05011~^~0500~^~Chicken, broilers or fryers, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW~^^^~Y~^~32% bone, 12% skin, 8% separable fat~^52^^6.25^4.27^9.02^3.87 -~05012~^~0500~^~Chicken, broilers or fryers, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05013~^~0500~^~Chicken, broilers or fryers, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,RSTD~^^^~Y~^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05014~^~0500~^~Chicken, broilers or fryers, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,STWD~^^^~Y~^~34% bone, 14% skin~^48^^6.25^4.27^9.02^3.87 -~05015~^~0500~^~Chicken, broilers or fryers, skin only, raw~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05016~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER~^^^^^0^^6.25^4.27^9.02^3.87 -~05017~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR~^^^^^0^^6.25^4.27^9.02^3.87 -~05018~^~0500~^~Chicken, broilers or fryers, skin only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05019~^~0500~^~Chicken, broilers or fryers, skin only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD~^^^^^0^^6.25^4.27^9.02^3.87 -~05020~^~0500~^~Chicken, broilers or fryers, giblets, raw~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05021~^~0500~^~Chicken, broilers or fryers, giblets, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05022~^~0500~^~Chicken, broilers or fryers, giblets, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05023~^~0500~^~Chicken, gizzard, all classes, raw~^~CHICKEN,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05024~^~0500~^~Chicken, gizzard, all classes, cooked, simmered~^~CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD~^^^~Y~^~Membranes 10.7%~^11^^6.25^4.27^9.02^3.87 -~05025~^~0500~^~Chicken, heart, all classes, raw~^~CHICKEN,HEART,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05026~^~0500~^~Chicken, heart, all classes, cooked, simmered~^~CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05027~^~0500~^~Chicken, liver, all classes, raw~^~CHICKEN,LIVER,ALL CLASSES,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05028~^~0500~^~Chicken, liver, all classes, cooked, simmered~^~CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05029~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05030~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05031~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05032~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05033~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05034~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~05035~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05036~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05037~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05038~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05039~^~0500~^~Chicken, broilers or fryers, light meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW~^^^^~28% bone, 13% skin, 4% separable fat~^45^^6.25^4.27^9.02^3.87 -~05040~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 13% skin~^41^^6.25^4.27^9.02^3.87 -~05041~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05042~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~29% bone, 15% skin~^44^^6.25^4.27^9.02^3.87 -~05043~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW~^^^^~35% bone, 11% skin, 10% separable fat~^56^^6.25^4.27^9.02^3.87 -~05044~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED~^^^^~30% bone, 12% skin~^42^^6.25^4.27^9.02^3.87 -~05045~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05046~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~38% bone, 14% skin~^52^^6.25^4.27^9.02^3.87 -~05047~^~0500~^~Chicken, broilers or fryers, separable fat, raw~^~CHICKEN,BROILERS OR FRYERS,FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05048~^~0500~^~Chicken, broilers or fryers, back, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW~^^^^~Bone~^44^^6.25^4.27^9.02^3.87 -~05049~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05050~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05051~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^47^^6.25^4.27^9.02^3.87 -~05052~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05053~^~0500~^~Chicken, broilers or fryers, back, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW~^^^^~44% bone, 10% skin, 17% seprable fat~^71^^6.25^4.27^9.02^3.87 -~05054~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED~^^^^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05055~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD~^^^^~47% bone, 13% skin~^60^^6.25^4.27^9.02^3.87 -~05056~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD~^^^^~48% bone, 16% skin~^64^^6.25^4.27^9.02^3.87 -~05057~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW~^^^~Y~^~Bone~^20^^6.25^4.27^9.02^3.87 -~05058~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^12^^6.25^4.27^9.02^3.87 -~05059~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05060~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05061~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^18^^6.25^4.27^9.02^3.87 -~05062~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw~^~CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05063~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED~^^^~Y~^~17% bone, 10% skin~^27^^6.25^4.27^9.02^3.87 -~05064~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~19% bone, 9% skin~^28^^6.25^4.27^9.02^3.87 -~05065~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD~^^^~Y~^~18% bone, 12% skin~^30^^6.25^4.27^9.02^3.87 -~05066~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 33%~^66^^6.25^4.27^9.02^3.87 -~05067~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~05068~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~05069~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 28%~^61^^6.25^4.27^9.02^3.87 -~05070~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~05071~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW~^^^~Y~^~bone and cartilage 33%, skin and separable fat 9%~^42^^6.25^4.27^9.02^3.87 -~05072~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED~^^^^~34% bone, 10% skin~^44^^6.25^4.27^9.02^3.87 -~05073~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST~^^^~Y~^~Bone and cartilage 33%, Skin and separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~05074~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05075~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~05076~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~05077~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05078~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone 29%~^29^^6.25^4.27^9.02^3.87 -~05079~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~05080~^~0500~^~Chicken, broilers or fryers, leg, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW~^^^~Y~^~27% bone, 11% skin, 5% separable fat~^43^^6.25^4.27^9.02^3.87 -~05081~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 12% skin~^40^^6.25^4.27^9.02^3.87 -~05082~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone 29%, skin 12%~^41^^6.25^4.27^9.02^3.87 -~05083~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD~^^^~Y~^~30% bone, 13% skin~^43^^6.25^4.27^9.02^3.87 -~05084~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05085~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~05086~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05087~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05088~^~0500~^~Chicken, broilers or fryers, neck, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW~^^^^~36% bone, 39% skin and separable fat~^75^^6.25^4.27^9.02^3.87 -~05089~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED~^^^^~29% bone, 27% skin~^56^^6.25^4.27^9.02^3.87 -~05090~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD~^^^^~32% bone, 35% skin~^67^^6.25^4.27^9.02^3.87 -~05091~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05092~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~05093~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05094~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^6.25^4.27^9.02^3.87 -~05095~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~05096~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW~^^^~Y~^~ Skin and separable fat 25%~^25^^6.25^4.27^9.02^3.87 -~05097~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED~^^^^~23% bone, 13% skin~^36^^6.25^4.27^9.02^3.87 -~05098~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, skin and separable fat 15%~^48^^6.25^4.27^9.02^3.87 -~05099~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD~^^^~Y~^~24% bone, 15% skin~^39^^6.25^4.27^9.02^3.87 -~05100~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05101~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05102~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^47^^6.25^4.27^9.02^3.87 -~05103~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 40%~^40^^6.25^4.27^9.02^3.87 -~05104~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05105~^~0500~^~Chicken, broilers or fryers, wing, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW~^^^~Y~^~46% bone, 21% skin, 1% separable fat~^68^^6.25^4.27^9.02^3.87 -~05106~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED~^^^^~47% bone, 19% skin~^66^^6.25^4.27^9.02^3.87 -~05107~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05108~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05109~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, raw~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05110~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05111~^~0500~^~Canada Goose, breast meat only, skinless, raw~^~CANADA GOOSE,BREAST MEAT ONLY,SKINLESS,RAW~^~Canadian geese~^^^^0^~Branta canadensis~^^^^ -~05112~^~0500~^~Chicken, roasting, meat and skin, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05113~^~0500~^~Chicken, roasting, meat only, raw~^~CHICKEN,ROASTING,MEAT ONLY,RAW~^^^^~28% bone, 14% skin, 7% separable fat~^49^^6.25^4.27^9.02^3.87 -~05114~^~0500~^~Chicken, roasting, meat only, cooked, roasted~^~CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD~^^^^~30% bone, 12% skin, 1% separable fat~^43^^6.25^4.27^9.02^3.87 -~05115~^~0500~^~Chicken, roasting, giblets, raw~^~CHICKEN,ROASTING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05116~^~0500~^~Chicken, roasting, giblets, cooked, simmered~^~CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05117~^~0500~^~Chicken, roasting, light meat, meat only, raw~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 13% skin, 4% separable fat~^43^^6.25^4.27^9.02^3.87 -~05118~^~0500~^~Chicken, roasting, light meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~24% bone, 16% skin~^40^^6.25^4.27^9.02^3.87 -~05119~^~0500~^~Chicken, roasting, dark meat, meat only, raw~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW~^^^^~30% bone, 14% skin, 9% separable fat~^53^^6.25^4.27^9.02^3.87 -~05120~^~0500~^~Chicken, roasting, dark meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD~^^^^~35% bone, 10% skin, 1% separable fat~^46^^6.25^4.27^9.02^3.87 -~05121~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, raw~^~CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW~^^^^~27% bone, 5% separable fat~^32^^6.25^4.27^9.02^3.87 -~05122~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed~^~CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD~^^^~Y~^~29% bone, 2% separable fat~^31^^6.25^4.27^9.02^3.87 -~05123~^~0500~^~Chicken, stewing, meat and skin, raw~^~CHICKEN,STEWING,MEAT&SKN,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05124~^~0500~^~Chicken, stewing, meat and skin, cooked, stewed~^~CHICKEN,STEWING,MEAT&SKN,CKD,STWD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~05125~^~0500~^~Chicken, stewing, meat only, raw~^~CHICKEN,STEWING,MEAT ONLY,RAW~^^^^~Bone 30%, skin 12%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~05126~^~0500~^~Chicken, stewing, meat only, cooked, stewed~^~CHICKEN,STEWING,MEAT ONLY,CKD,STWD~^^^^~Bone, 32%, skin, 16%~^48^^6.25^4.27^9.02^3.87 -~05127~^~0500~^~Chicken, stewing, giblets, raw~^~CHICKEN,STEWING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05128~^~0500~^~Chicken, stewing, giblets, cooked, simmered~^~CHICKEN,STEWING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05129~^~0500~^~Chicken, stewing, light meat, meat only, raw~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 14% skin, 4% separable fat~^44^^6.25^4.27^9.02^3.87 -~05130~^~0500~^~Chicken, stewing, light meat, meat only, cooked, stewed~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD~^^^^~26% bone, 16% skin~^42^^6.25^4.27^9.02^3.87 -~05131~^~0500~^~Chicken, stewing, dark meat, meat only, raw~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW~^^^^~33% bone, 11% skin, 10% separable fat~^54^^6.25^4.27^9.02^3.87 -~05132~^~0500~^~Chicken, stewing, dark meat, meat only, cooked, stewed~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD~^^^^~36% bone, 15% skin~^51^^6.25^4.27^9.02^3.87 -~05133~^~0500~^~Chicken, capons, meat and skin and giblets and neck, raw~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05134~^~0500~^~Chicken, capons, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05135~^~0500~^~Chicken, capons, meat and skin, raw~^~CHICKEN,CAPONS,MEAT&SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05136~^~0500~^~Chicken, capons, meat and skin, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05137~^~0500~^~Chicken, capons, giblets, raw~^~CHICKEN,CAPONS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05138~^~0500~^~Chicken, capons, giblets, cooked, simmered~^~CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05139~^~0500~^~Duck, domesticated, meat and skin, raw~^~DUCK,DOMESTICATED,MEAT&SKN,RAW~^^^~Y~^~Bone~^28^~Anas platyrhynchos~^6.25^4.27^9.02^3.87 -~05140~^~0500~^~Duck, domesticated, meat and skin, cooked, roasted~^~DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~05141~^~0500~^~Duck, domesticated, meat only, raw~^~DUCK,DOMESTICATED,MEAT ONLY,RAW~^^^~Y~^~28% bone, 38% skin and separable fat~^66^^6.25^4.27^9.02^3.87 -~05142~^~0500~^~Duck, domesticated, meat only, cooked, roasted~^~DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^~Y~^~35% bone, 27% skin and separable fat~^62^^6.25^4.27^9.02^3.87 -~05143~^~0500~^~Duck, domesticated, liver, raw~^~DUCK,DOMESTICATED,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05144~^~0500~^~Duck, wild, meat and skin, raw~^~DUCK,WILD,MEAT&SKN,RAW~^^^^~38% bone, 2% handling loss~^40^^6.25^4.27^9.02^3.87 -~05145~^~0500~^~Duck, wild, breast, meat only, raw~^~DUCK,WILD,BREAST,MEAT ONLY,RAW~^^^^~15% bone, 31% skin and separable fat~^46^^6.25^4.27^9.02^3.87 -~05146~^~0500~^~Goose, domesticated, meat and skin, raw~^~GOOSE,DOMESTICATED,MEAT&SKN,RAW~^^^^~Bone~^19^~Anser anser~^6.25^4.27^9.02^3.87 -~05147~^~0500~^~Goose, domesticated, meat and skin, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05148~^~0500~^~Goose, domesticated, meat only, raw~^~GOOSE,DOMESTICATED,MEAT ONLY,RAW~^^^^~19% bone, 34% skin and separable fat~^53^^6.25^4.27^9.02^3.87 -~05149~^~0500~^~Goose, domesticated, meat only, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^^~28% bone, 17% skin and separable fat~^45^^6.25^4.27^9.02^3.87 -~05150~^~0500~^~Goose, liver, raw~^~GOOSE,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05151~^~0500~^~Guinea hen, meat and skin, raw~^~GUINEA HEN,MEAT&SKN,RAW~^^^^~Bone~^17^~Numida meleagris~^6.25^4.27^9.02^3.87 -~05152~^~0500~^~Guinea hen, meat only, raw~^~GUINEA HEN,MEAT ONLY,RAW~^^^^~17% bone, 19% skin and separable fat~^36^^6.25^4.27^9.02^3.87 -~05153~^~0500~^~Pheasant, raw, meat and skin~^~PHEASANT,RAW,MEAT&SKN~^^^^~Bone~^14^~Phasianus colchicus~^6.25^4.27^9.02^3.87 -~05154~^~0500~^~Pheasant, raw, meat only~^~PHEASANT,RAW,MEAT ONLY~^^^^~14% bone, 10% skin~^24^^6.25^4.27^9.02^3.87 -~05155~^~0500~^~Pheasant, breast, meat only, raw~^~PHEASANT,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05156~^~0500~^~Pheasant, leg, meat only, raw~^~PHEASANT,LEG,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05157~^~0500~^~Quail, meat and skin, raw~^~QUAIL,MEAT AND SKIN,RAW~^^^^~Bone~^10^~Coturnix spp. and Colinus spp.~^6.25^4.27^9.02^3.87 -~05158~^~0500~^~Quail, meat only, raw~^~QUAIL,MEAT ONLY,RAW~^^^^~10% bone, 14% skin~^24^^6.25^4.27^9.02^3.87 -~05159~^~0500~^~Quail, breast, meat only, raw~^~QUAIL,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05160~^~0500~^~Squab, (pigeon), meat and skin, raw~^~SQUAB,(PIGEON),MEAT&SKN,RAW~^^^^~Bone~^23^~Columba spp.~^6.25^4.27^9.02^3.87 -~05161~^~0500~^~Squab, (pigeon), meat only, raw~^~SQUAB,(PIGEON),MEAT ONLY,RAW~^^^^~23% bone, 12% skin~^35^^6.25^4.27^9.02^3.87 -~05162~^~0500~^~Squab, (pigeon), light meat without skin, raw~^~SQUAB,(PIGEON),LT MEAT WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05165~^~0500~^~Turkey, whole, meat and skin, raw~^~TURKEY,WHL,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~05166~^~0500~^~Turkey, whole, meat and skin, cooked, roasted~^~TURKEY,WHL,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone connective tissue 31%~^31^^6.25^4.27^9.02^3.87 -~05167~^~0500~^~Turkey, whole, meat only, raw~^~TURKEY,WHL,MEAT ONLY,RAW~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 11%~^41^^6.25^4.27^9.02^3.87 -~05168~^~0500~^~Turkey, whole, meat only, cooked, roasted~^~TURKEY,WHL,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 31%, Skin and separable fat 7%~^38^^6.25^4.27^9.02^3.87 -~05169~^~0500~^~Turkey, whole, skin (light and dark), raw~^~TURKEY,WHL,SKN (LIGHT & DARK),RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05170~^~0500~^~Turkey, whole, skin (light and dark), roasted~^~TURKEY,WHL,SKN (LIGHT & DARK),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05171~^~0500~^~Turkey, whole, giblets, raw~^~TURKEY,WHL,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05172~^~0500~^~Turkey, whole, giblets, cooked, simmered~^~TURKEY,WHL,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05173~^~0500~^~Turkey, gizzard, all classes, raw~^~TURKEY,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05174~^~0500~^~Turkey, all classes, gizzard, cooked, simmered~^~TURKEY,ALL CLASSES,GIZZARD,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05175~^~0500~^~Turkey, all classes, heart, raw~^~TURKEY,ALL CLASSES,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05176~^~0500~^~Turkey, all classes, heart, cooked, simmered~^~TURKEY,ALL CLASSES,HEART,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05177~^~0500~^~Turkey, all classes, liver, raw~^~TURKEY,ALL CLASSES,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05178~^~0500~^~Turkey, all classes, liver, cooked, simmered~^~TURKEY,ALL CLASSES,LIVER,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05179~^~0500~^~Turkey, whole, neck, meat only, raw~^~TURKEY,WHL,NECK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 60%~^60^^6.25^4.27^9.02^3.87 -~05180~^~0500~^~Turkey, whole, neck, meat only, cooked, simmered~^~TURKEY,WHL,NECK,MEAT ONLY,CKD,SIMMRD~^^^~Y~^~Bone and connective tissue 53%~^53^^6.25^4.27^9.02^3.87 -~05181~^~0500~^~Turkey, whole, light meat, meat and skin, raw~^~TURKEY,WHL,LT MEAT,MEAT & SKN,RAW~^^^^~Bone and Conncetive tissue 32%~^32^^6.25^4.27^9.02^3.87 -~05182~^~0500~^~Turkey, whole, light meat, meat and skin, cooked, roasted~^~TURKEY,WHL,LT MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%~^20^^6.25^4.27^9.02^3.87 -~05183~^~0500~^~Turkey, dark meat, meat and skin, raw~^~TURKEY,DK MEAT,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^48^^6.25^4.27^9.02^3.87 -~05184~^~0500~^~Turkey, whole, dark meat, meat and skin, cooked, roasted~^~TURKEY,WHL,DK MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05185~^~0500~^~Turkey, whole, light meat, raw~^~TURKEY,WHL,LT MEAT,RAW~^^^^~Bone and connective tissue 20%, skin and separable fat 12%~^29^^6.25^4.27^9.02^3.87 -~05186~^~0500~^~Turkey, all classes, light meat, cooked, roasted~^~TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%, Skin and separable fat 7%~^27^^6.25^4.27^9.02^3.87 -~05187~^~0500~^~Turkey, whole, dark meat, meat only, raw~^~TURKEY,WHL,DK MEAT,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, skin and separable fat 10%~^48^^^^^ -~05188~^~0500~^~Turkey, whole, dark meat, cooked, roasted~^~TURKEY,WHL,DK MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 39% Skin and separable fat 7%~^46^^6.25^4.27^9.02^3.87 -~05190~^~0500~^~Turkey, all classes, back, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^41^^6.25^4.27^9.02^3.87 -~05191~^~0500~^~Turkey, all classes, breast, meat and skin, raw~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW~^^^^~Bone~^10^^6.25^4.27^9.02^3.87 -~05192~^~0500~^~Turkey, all classes, breast, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05193~^~0500~^~Turkey, all classes, leg, meat and skin, raw~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05194~^~0500~^~Turkey, all classes, leg, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05195~^~0500~^~Turkey, all classes, wing, meat and skin, raw~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05196~^~0500~^~Turkey, all classes, wing, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05200~^~0500~^~Turkey, fryer-roasters, meat and skin, cooked, roasted~^~TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~05215~^~0500~^~Turkey, whole, back, meat only, raw~^~TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 50%, skin and separable fat 12%~^62^^6.25^4.27^9.02^3.87 -~05216~^~0500~^~Turkey, whole, back, meat only, cooked, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 54%, Skin and separable fat 7%~^42^^6.25^4.27^9.02^3.87 -~05219~^~0500~^~Turkey, whole, breast, meat only, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 12%, Skin and separable fat 10%~^22^^6.25^4.27^9.02^3.87 -~05220~^~0500~^~Turkey, whole, breast, meat only, cooked, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 13%, Skin and separable fat 6%~^19^^6.25^4.27^9.02^3.87 -~05227~^~0500~^~Turkey, whole, wing, meat only, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 44%, skin and separable fat 16%~^60^^6.25^4.27^9.02^3.87 -~05228~^~0500~^~Turkey, whole, wing, meat only, cooked, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 48%, skin and separable fat 11%~^59^^6.25^4.27^9.02^3.87 -~05236~^~0500~^~Turkey, young hen, skin only, cooked, roasted~^~TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05277~^~0500~^~Chicken, canned, meat only, with broth~^~CHICKEN,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05282~^~0500~^~Pate de foie gras, canned (goose liver pate), smoked~^~PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~05284~^~0500~^~Turkey, canned, meat only, with broth~^~TURKEY,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05285~^~0500~^~Turkey, diced, light and dark meat, seasoned~^~TURKEY,DICED,LT&DK MEAT,SEASONED~^^^^^0^^6.25^4.27^9.02^3.87 -~05286~^~0500~^~Turkey and gravy, frozen~^~TURKEY AND GRAVY,FROZEN~^^^^^0^^6.25^4.27^9.02^3.87 -~05293~^~0500~^~Turkey breast, pre-basted, meat and skin, cooked, roasted~^~TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05294~^~0500~^~Turkey thigh, pre-basted, meat and skin, cooked, roasted~^~TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~05295~^~0500~^~Turkey roast, boneless, frozen, seasoned, light and dark meat, raw~^~TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05300~^~0500~^~Turkey sticks, breaded, battered, fried~^~TURKEY STKS,BREADED,BATTERED,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05301~^~0500~^~Poultry, mechanically deboned, from backs and necks with skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05302~^~0500~^~Poultry, mechanically deboned, from backs and necks without skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05303~^~0500~^~Poultry, mechanically deboned, from mature hens, raw~^~POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05304~^~0500~^~Turkey, mechanically deboned, from turkey frames, raw~^~TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05305~^~0500~^~Turkey, Ground, raw~^~TURKEY,GROUND,RAW~^^^^^0^^^^^ -~05306~^~0500~^~Turkey, Ground, cooked~^~TURKEY,GROUND,CKD~^^^~Y~^^0^^^^^ -~05307~^~0500~^~Chicken, cornish game hens, meat and skin, raw~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW~^^^^~Bone~^39^^6.25^4.27^9.02^3.87 -~05308~^~0500~^~Chicken, cornish game hens, meat and skin, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~05309~^~0500~^~Chicken, cornish game hens, meat only, raw~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW~^^^^~39% bone, 13% skin, 5% separable fat~^57^^6.25^4.27^9.02^3.87 -~05310~^~0500~^~Chicken, cornish game hens, meat only, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD~^^^~Y~^~37% bone, 9% skin~^46^^6.25^4.27^9.02^3.87 -~05311~^~0500~^~Chicken, canned, no broth~^~CHICKEN,CANNED,NO BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05312~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05313~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05314~^~0500~^~Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw~^~CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW~^^^~Y~^^0^^6.25^^^ -~05315~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05316~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled~^~DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05317~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD~^^^^~Bone~^31^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05318~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised~^~DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD~^^^^~Bone~^34^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05319~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY~^^^~Y~^~Bone and connective tissue 29%, skin and separable fat 12%~^41^^^^^ -~05320~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)~^~CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05323~^~0500~^~Chicken patty, frozen, uncooked~^~CHICKEN PATTY,FRZ,UNCKD~^^^^^0^^^^^ -~05324~^~0500~^~Chicken patty, frozen, cooked~^~CHICKEN PATTY,FRZ,CKD~^^^~Y~^^0^^^^^ -~05326~^~0500~^~Chicken breast tenders, breaded, cooked, microwaved~^~CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED~^^^^^0^^6.25^^^ -~05327~^~0500~^~Chicken breast tenders, breaded, uncooked~^~CHICKEN BREAST TENDERS,BREADED,UNCKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05332~^~0500~^~Chicken, ground, raw~^~CHICKEN,GROUND,RAW~^^^^^0^^6.25^^^ -~05333~^~0500~^~Chicken, ground, crumbles, cooked, pan-browned~^~CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED~^^^^^0^^6.25^3.87^9.04^4.27 -~05334~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY~^^^~Y~^~Bone and connective tissue 14%, skin and separable fat 15%~^29^^^^^ -~05335~^~0500~^~Chicken, feet, boiled~^~CHICK,FEET,BOILED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05339~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY~^^^~Y~^~Bone and connective tissue 32%, skin and separable fat 25%~^57^^6.25^^^ -~05341~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat only, cooked~^~CHIKN,BROLRS OR FYRS,ROTSSRIE,ORIGNL SESONG,BCK,MEAT OLY,CKD~^^^^~40.14% bone and cartilage, 16.08% skin and separable fat~^56^^^^^ -~05342~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat only, cooked~^~CHKN,BRILRS OR FYRS,ROTSSRE,ORGNL SESONING,BRST,MEAT OLY,CKD~^^^~Y~^~Bone and Connective tissue 26%, skin 10%~^36^^^^^ -~05343~^~0500~^~Chicken, broilers or fryers, drumstick, rotisserie, original seasoning, meat only, cooked~^~CHKN,BRLRS OR FYRS,DRMSTK,ROISSRE,ORGNL SESONIG,MEAT OLY,CKD~^^^^~29.34% bone and cartilage, 11.75% skin and separable fat~^41^^^^^ -~05344~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, skin only, cooked~^~CICKN,BRILRS OR FYRS,ROTSSRE,ORGNL SEASNG,SKN ONLY,CKD~^^^^^0^^6.25^^^ -~05345~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROTSSRIE,ORGNL SEASNG,TGH,MEAT OLY,CKD~^^^^~14.24% bone and cartilage, 14.88% skin and separable fat~^29^^^^^ -~05346~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROISSRIE,ORGNL SEASONG,WNG,MET OLY,CKD~^^^^~32.51% bone and cartilage, 24.10% skin and separable fat~^57^^^^^ -~05347~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSERE,ORGNL SESONG,BCK,MET & SKN,CKD~^^^^^0^^^^^ -~05348~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SASONG,BRST,MAT & SKN,CKD~^^^^^0^^^^^ -~05349~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, drumstick, meat and skin, cooked~^~CHKN,BROLRS OR FYRS,ROTSSRE,ORGNL SESONG,DRMSTK,MT & SKN,CKD~^^^^^0^^^^^ -~05351~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SESONG,THGH,MET & SKN,CKD~^^^^^0^^^^^ -~05352~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SEASONG,WNG,MET & SKN,CKD~^^^^^0^^^^^ -~05356~^~0500~^~Chicken, broiler, rotisserie, BBQ, skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN~^^^~Y~^^0^^^^^ -~05357~^~0500~^~Chicken, broiler, rotisserie, BBQ, back, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 37%~^37^^^^^ -~05358~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST,MEAT & SKN~^^^~Y~^~Bone and connective tissue 11%~^11^^^^^ -~05359~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05361~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT & SKN~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05362~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT & SKN~^^^~Y~^~Bone and connective tissue 32%~^32^^^^^ -~05363~^~0500~^~Ruffed Grouse, breast meat, skinless, raw~^~RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW~^~Ruffed grouse~^^^^0^~Bonasa umbellus~^^^^ -~05621~^~0500~^~Emu, ground, raw~^~EMU,GROUND,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05622~^~0500~^~Emu, ground, cooked, pan-broiled~^~EMU,GROUND,CKD,PAN-BROILED~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05623~^~0500~^~Emu, fan fillet, raw~^~EMU,FAN FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05624~^~0500~^~Emu, fan fillet, cooked, broiled~^~EMU,FAN FILLET,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05625~^~0500~^~Emu, flat fillet, raw~^~EMU,FLAT FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05626~^~0500~^~Emu, full rump, raw~^~EMU,FULL RUMP,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05627~^~0500~^~Emu, full rump, cooked, broiled~^~EMU,FULL RUMP,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05628~^~0500~^~Emu, inside drum, raw~^~EMU,INSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05629~^~0500~^~Emu, inside drums, cooked, broiled~^~EMU,INSIDE DRUMS,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05630~^~0500~^~Emu, outside drum, raw~^~EMU,OUTSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05631~^~0500~^~Emu, oyster, raw~^~EMU,OYSTER,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05632~^~0500~^~Emu, top loin, cooked, broiled~^~EMU,TOP LOIN,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05641~^~0500~^~Ostrich, ground, raw~^~OSTRICH,GROUND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05642~^~0500~^~Ostrich, ground, cooked, pan-broiled~^~OSTRICH,GROUND,CKD,PAN-BROILED~^^^~Y~^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05643~^~0500~^~Ostrich, fan, raw~^~OSTRICH,FAN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05644~^~0500~^~Ostrich, inside leg, raw~^~OSTRICH,INSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05645~^~0500~^~Ostrich, inside leg, cooked~^~OSTRICH,INSIDE LEG,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05646~^~0500~^~Ostrich, inside strip, raw~^~OSTRICH,INSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05647~^~0500~^~Ostrich, inside strip, cooked~^~OSTRICH,INSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05648~^~0500~^~Ostrich, outside leg, raw~^~OSTRICH,OUTSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05649~^~0500~^~Ostrich, outside strip, raw~^~OSTRICH,OUTSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05650~^~0500~^~Ostrich, outside strip, cooked~^~OSTRICH,OUTSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05651~^~0500~^~Ostrich, oyster, raw~^~OSTRICH,OYSTER,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05652~^~0500~^~Ostrich, oyster, cooked~^~OSTRICH,OYSTER,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05653~^~0500~^~Ostrich, round, raw~^~OSTRICH,RND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05654~^~0500~^~Ostrich, tenderloin, raw~^~OSTRICH,TENDERLOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05655~^~0500~^~Ostrich, tip trimmed, raw~^~OSTRICH,TIP RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05656~^~0500~^~Ostrich, tip trimmed, cooked~^~OSTRICH,TIP CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05657~^~0500~^~Ostrich, top loin, raw~^~OSTRICH,TOP LOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05658~^~0500~^~Ostrich, top loin, cooked~^~OSTRICH,TOP LOIN,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05661~^~0500~^~Chicken, liver, all classes, cooked, pan-fried~^~CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05662~^~0500~^~Turkey, ground, fat free, raw~^~TURKEY,GROUND,FAT FREE,RAW~^^^^^0^^^^^ -~05663~^~0500~^~Turkey, ground, fat free, pan-broiled crumbles~^~TURKEY,GROUND,FAT FREE,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05664~^~0500~^~Turkey, ground, fat free, patties, broiled~^~TURKEY,GROUND,FAT FREE,PATTIES,BRLD~^^^^^0^^^^^ -~05665~^~0500~^~Turkey, ground, 93% lean, 7% fat, raw~^~TURKEY,GROUND,93% LN,7% FAT,RAW~^^^^^0^^^^^ -~05666~^~0500~^~Turkey, ground, 93% lean, 7% fat, pan-broiled crumbles~^~TURKEY,GROUND,93% LN,7% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05667~^~0500~^~Turkey, ground, 93% lean, 7% fat, patties, broiled~^~TURKEY,GROUND,93% LN,7% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05668~^~0500~^~Turkey, ground, 85% lean, 15% fat, raw~^~TURKEY,GROUND,85% LN,15% FAT,RAW~^^^^^0^^^^^ -~05669~^~0500~^~Turkey, ground, 85% lean, 15% fat, pan-broiled crumbles~^~TURKEY,GROUND,85% LN,15% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05670~^~0500~^~Turkey, ground, 85% lean, 15% fat, patties, broiled~^~TURKEY,GROUND,85% LN,15% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05671~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD~^^^^~Bone and cartilage 32%, Separable fat and skin 9%~^41^^^^^ -~05672~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD~^^^^~Bone and cartilage 16%, Skin and separable fat 16%~^32^^^^^ -~05673~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD~^^^^^0^^^^^ -~05674~^~0500~^~Chicken, skin (drumsticks and thighs), raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW~^^^^^0^^^^^ -~05675~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD~^^^^^0^^^^^ -~05676~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD~^^^^~Bone and cartilage 32%~^32^^^^^ -~05677~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD~^^^^~Bone and cartilage 16%~^16^^^^^ -~05678~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and Cartilage 34%, Skin and separable fat 9%~^43^^^^^ -~05679~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 27%, Skin and separable fat 8%~^74^^6.25^^^ -~05680~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 30%, Skin and separable fat 9%~^39^^^^^ -~05681~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%, Skin and separable fat 18%~^33^^^^^ -~05682~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 32%, skin and separable fat 24%~^56^^^^^ -~05683~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 16%, Skin and separable fat 15%~^31^^^^^ -~05684~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD~^^^~Y~^^0^^^^^ -~05685~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW~^^^~Y~^^0^^^^^ -~05686~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD~^^^~Y~^^0^^^^^ -~05687~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and Cartilage 30%~^30^^^^^ -~05688~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 34%, bone and connective tissue 34%~^68^^^^^ -~05689~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 40%, bone and connective tissue 26%~^66^^^^^ -~05690~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%~^15^^^^^ -~05691~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 15%, bone and connective tissue 17%~^32^^^^^ -~05692~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^^^^ -~05693~^~0500~^~Chicken, broiler, rotisserie, BBQ, back meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY~^^^~Y~^~Bone and connective tissue 37%, skin and separable fat 14%~^51^^^^^ -~05694~^~0500~^~Turkey, dark meat from whole, meat only, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05695~^~0500~^~Turkey, dark meat, meat only, with added solution, cooked, roasted~^~TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05696~^~0500~^~Turkey from whole, light meat, meat only, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%, Skin and separable fat 13%~^31^^^^^ -~05697~^~0500~^~Turkey from whole, light meat, meat only, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%, Skin and separable fat 7%~^25^^^^^ -~05698~^~0500~^~Turkey, skin from whole (light and dark), with added solution, raw~^~TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~05699~^~0500~^~Turkey, skin from whole, (light and dark), with added solution, roasted~^~TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD~^^^~Y~^^0^^^^^ -~05700~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05701~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Connective tissue 37%~^37^^^^^ -~05702~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%~^18^^^^^ -~05703~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%~^18^^^^^ -~05704~^~0500~^~Turkey, whole, meat only, with added solution, raw~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05705~^~0500~^~Turkey, whole, meat only, with added solution, roasted~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05706~^~0500~^~Turkey, whole, meat and skin, with added solution, raw~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05707~^~0500~^~Turkey, whole, meat and skin, with added solution, roasted~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%~^36^^^^^ -~05708~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%, Skin and separable fat 10%~^25^^^^^ -~05709~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 17%, Skin and separable fat 7%~^24^^^^^ -~05710~^~0500~^~Turkey, retail parts, breast, meat only, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW~^^^^~Bone and connective tissue 14%, Skin and separable fat 11%~^25^^^^^ -~05711~^~0500~^~Turkey, retail parts, breast, meat only, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%, Skin and separable fat 8%~^20^^^^^ -~05712~^~0500~^~Turkey, retail parts, wing, meat only, raw~^~TURKEY,RTL PARTS,WING,MEAT ONLY,RAW~^^^^~Bone and connective tissue 37%, Skin and separable fat 18%~^55^^^^^ -~05713~^~0500~^~Turkey, retail parts, wing, meat only, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%, Skin and separable fat 14%~^52^^^^^ -~05714~^~0500~^~Turkey, skin, from retail parts, from dark meat, raw~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW~^^^^^0^^^^^ -~05715~^~0500~^~Turkey, skin, from retail parts, from dark meat, cooked, roasted~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD~^^^^^0^^^^^ -~05716~^~0500~^~Turkey, retail parts, drumstick, meat only, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 33%, Skin and separable fat 6%~^39^^^^^ -~05717~^~0500~^~Turkey, retail parts, thigh, meat only, raw~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW~^^^^~Bone and connective tissue 19%, Skin and separable fat 13%~^32^^^^^ -~05718~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 10%, skin and separable fat 6%~^16^^^^^ -~05719~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%, Skin and separable fat 16%~^63^^^^^ -~05720~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%, skin and separable fat 12%~^61^^^^^ -~05721~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 10%, Skin and separable fat 11%~^22^^6.25^^^ -~05722~^~0500~^~Turkey, retail parts, thigh, meat only, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%, Skin and separable fat 9%~^23^^^^^ -~05723~^~0500~^~Turkey, retail parts, drumstick, meat only, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 7%~^36^^^^^ -~05724~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 30%, Skin and separable fat 8%~^38^^^^^ -~05725~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 34%, Skin and separable fat 6%~^40^^^^^ -~05726~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 16%, Skin and separable fat 14%~^30^^^^^ -~05727~^~0500~^~Turkey, retail parts, breast, meat and skin, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%~^15^^^^^ -~05728~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 16%, skin and separable fat 8%~^24^^^^^ -~05729~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 36%, skin and separable fat 19%~^55^^^^^ -~05730~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 47%, skin and separable fat 12%~^59^^^^^ -~05732~^~0500~^~Turkey, retail parts, breast, meat and skin, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05733~^~0500~^~Turkey, retail parts, breast, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%~^12^^^^^ -~05734~^~0500~^~Turkey, retail parts, wing, meat and skin, raw~^~TURKEY,RTL PARTS,WING,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^38^^^^^ -~05735~^~0500~^~Turkey, retail parts, wing, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^^^^ -~05736~^~0500~^~Turkey, retail parts, drumstick, meat and skin, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW~^^^^~Bone and connective tissue 33%~^33^^^^^ -~05737~^~0500~^~Turkey, retail parts, drumstick, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05738~^~0500~^~Turkey, drumstick, from whole bird, meat only, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, Skin and separable fat 6%~^44^^^^^ -~05739~^~0500~^~Turkey, drumstick, from whole bird, meat only, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 37%, Skin and separable fat 5%~^42^^^^^ -~05740~^~0500~^~Turkey, thigh, from whole bird, meat only, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 20%, Skin and separable fat 10%~^30^^^^^ -~05741~^~0500~^~Turkey, thigh, from whole bird, meat only, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 7%~^43^^^^^ -~05742~^~0500~^~Turkey, retail parts, thigh, meat and skin, raw~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW~^^^^~Bone and connective tissue 19%~^19^^^^^ -~05743~^~0500~^~Turkey, retail parts, thigh, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05744~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%~^47^^^^^ -~05745~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%~^49^^^^^ -~05746~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised~^~CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD~^^^^^0^^^^^ -~05747~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled~^~CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD~^^^^^0^^^^^ -~05748~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised~^~CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD~^^^^^0^^^^^ -~05749~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled~^~CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED~^^^^^0^^^^^ -~06001~^~0600~^~Soup, cream of asparagus, canned, condensed~^~SOUP,CRM OF ASPARAGUS,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06002~^~0600~^~Soup, black bean, canned, condensed~^~SOUP,BLACK BEAN,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06004~^~0600~^~Soup, bean with pork, canned, condensed~^~SOUP,BEAN W/ PORK,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06006~^~0600~^~Soup, bean with frankfurters, canned, condensed~^~SOUP,BEAN W/ FRANKFURTERS,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06007~^~0600~^~Soup, bean with ham, canned, chunky, ready-to-serve~^~SOUP,BEAN W/ HAM,CND,CHUNKY,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06008~^~0600~^~Soup, beef broth or bouillon canned, ready-to-serve~^~SOUP,BF BROTH OR BOUILLON CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06009~^~0600~^~Soup, beef noodle, canned, condensed~^~SOUP,BF NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06010~^~0600~^~Soup, cream of celery, canned, condensed~^~SOUP,CRM OF CELERY,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06011~^~0600~^~Soup, cheese, canned, condensed~^~SOUP,CHS,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06013~^~0600~^~Soup, chicken broth, canned, condensed~^~SOUP,CHICK BROTH,CND,COND~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06015~^~0600~^~Soup, chicken, canned, chunky, ready-to-serve~^~SOUP,CHICK,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06016~^~0600~^~Soup, cream of chicken, canned, condensed~^~SOUP,CRM OF CHICK,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06017~^~0600~^~Soup, chicken gumbo, canned, condensed~^~SOUP,CHICK GUMBO,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06018~^~0600~^~Soup, chunky chicken noodle, canned, ready-to-serve~^~SOUP,CHUNKY CHICK NOODLE,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06019~^~0600~^~Soup, chicken noodle, canned, condensed~^~SOUP,CHICK NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06022~^~0600~^~Soup, chicken rice, canned, chunky, ready-to-serve~^~SOUP,CHICK RICE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06023~^~0600~^~Soup, chicken with rice, canned, condensed~^~SOUP,CHICK W/ RICE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06024~^~0600~^~Soup, chicken and vegetable, canned, ready-to-serve~^~SOUP,CHICK & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06025~^~0600~^~Soup, chicken vegetable, canned, condensed~^~SOUP,CHICK VEG,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06026~^~0600~^~Soup, chili beef, canned, condensed~^~SOUP,CHILI BF,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06027~^~0600~^~Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve~^~SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06028~^~0600~^~Soup, clam chowder, manhattan, canned, condensed~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06030~^~0600~^~Soup, clam chowder, new england, canned, condensed~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06032~^~0600~^~Soup, beef broth bouillon and consomme, canned, condensed~^~SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND~^^^^^0^^6.25^4.00^9.00^4.00 -~06037~^~0600~^~Soup, lentil with ham, canned, ready-to-serve~^~SOUP,LENTIL W/HAM,CND,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06039~^~0600~^~Soup, minestrone, canned, chunky, ready-to-serve~^~SOUP,MINESTRONE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06040~^~0600~^~Soup, minestrone, canned, condensed~^~SOUP,MINESTRONE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06042~^~0600~^~Soup, mushroom barley, canned, condensed~^~SOUP,MUSHROOM BARLEY,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06043~^~0600~^~Soup, cream of mushroom, canned, condensed~^~SOUP,CRM OF MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06044~^~0600~^~Soup, mushroom with beef stock, canned, condensed~^~SOUP,MUSHROOM W/ BF STOCK,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06045~^~0600~^~Soup, onion, canned, condensed~^~SOUP,ONION,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06046~^~0600~^~Soup, cream of onion, canned, condensed~^~SOUP,CRM OF ONION,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06048~^~0600~^~Soup, oyster stew, canned, condensed~^~SOUP,OYSTER STEW,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06049~^~0600~^~Soup, pea, green, canned, condensed~^~SOUP,PEA,GRN,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06050~^~0600~^~Soup, pea, split with ham, canned, chunky, ready-to-serve~^~SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06051~^~0600~^~Soup, pea, split with ham, canned, condensed~^~SOUP,PEA,SPLIT W/ HAM,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06053~^~0600~^~Soup, cream of potato, canned, condensed~^~SOUP,CRM OF POTATO,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06056~^~0600~^~Soup, cream of shrimp, canned, condensed~^~SOUP,CRM OF SHRIMP,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06061~^~0600~^~Soup, tomato beef with noodle, canned, condensed~^~SOUP,TOMATO BF W/ NOODLE,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06062~^~0600~^~CAMPBELL'S, Chicken Noodle Soup, condensed~^~CAMPBELL'S,CHICK NOODLE SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06063~^~0600~^~Soup, tomato rice, canned, condensed~^~SOUP,TOMATO RICE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06064~^~0600~^~Soup, turkey, chunky, canned, ready-to-serve~^~SOUP,TURKEY,CHUNKY,CND,RTS~^^^^^0^^6.25^4.10^8.80^3.90 -~06067~^~0600~^~Soup, chunky vegetable, canned, ready-to-serve~^~SOUP,CHUNKY VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06068~^~0600~^~Soup, vegetarian vegetable, canned, condensed~^~SOUP,VEGETARIAN VEG,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06070~^~0600~^~Soup, chunky beef, canned, ready-to-serve~^~SOUP,CHUNKY BF,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06071~^~0600~^~Soup, vegetable beef, canned, condensed~^~SOUP,VEG BF,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06072~^~0600~^~Soup, vegetable with beef broth, canned, condensed~^~SOUP,VEG W/ BF BROTH,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06075~^~0600~^~Soup, beef broth or bouillon, powder, dry~^~SOUP,BF BROTH OR BOUILLON,PDR,DRY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06076~^~0600~^~Soup, beef broth, cubed, dry~^~SOUP,BEEF BROTH,CUBED,DRY~^^^^^0^^6.25^4.00^9.00^4.00 -~06080~^~0600~^~Soup, chicken broth or bouillon, dry~^~SOUP,CHICK BROTH OR BOUILLON,DRY~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06081~^~0600~^~Soup, chicken broth cubes, dry~^~SOUP,CHICK BROTH CUBES,DRY~^^^^^0^^6.25^4.20^9.00^4.00 -~06094~^~0600~^~Soup, onion, dry, mix~^~SOUP,ONION,DRY,MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06101~^~0600~^~Soup, cream of vegetable, dry, powder~^~SOUP,CRM OF VEG,DRY,PDR~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06112~^~0600~^~Sauce, teriyaki, ready-to-serve~^~SAUCE,TERIYAKI,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06114~^~0600~^~Gravy, au jus, canned~^~GRAVY,AU JUS,CANNED~^^^^^0^^6.25^3.50^9.00^3.90 -~06115~^~0600~^~Gravy, au jus, dry~^~GRAVY,AU JUS,DRY~^^^^^0^^^4.00^9.00^4.00 -~06116~^~0600~^~Gravy, beef, canned, ready-to-serve~^~GRAVY,BF,CND,RTS~^^^~Y~^^0^^6.25^3.50^9.00^3.90 -~06118~^~0600~^~Gravy, brown, dry~^~GRAVY,BROWN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06119~^~0600~^~Gravy, chicken, canned or bottled, ready-to-serve~^~GRVY, CHCKN, CNND BTTLD, RTS~^^^~Y~^^0^^^^^ -~06120~^~0600~^~Gravy, chicken, dry~^~GRAVY,CHICKEN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06121~^~0600~^~Gravy, mushroom, canned~^~GRAVY,MUSHROOM,CANNED~^^^^^0^^6.25^3.40^8.90^4.00 -~06122~^~0600~^~Gravy, mushroom, dry, powder~^~GRAVY,MUSHROOM,DRY,PDR~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06123~^~0600~^~Gravy, onion, dry, mix~^~GRAVY,ONION,DRY,MIX~^^^^^0^^6.25^3.50^9.00^3.90 -~06124~^~0600~^~Gravy, pork, dry, powder~^~GRAVY,PORK,DRY,PDR~^^^~Y~^^0^^^4.00^9.00^4.00 -~06125~^~0600~^~Gravy, turkey, canned, ready-to-serve~^~GRAVY,TURKEY,CND,RTS~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06126~^~0600~^~Gravy, turkey, dry~^~GRAVY,TURKEY,DRY~^^^^^0^^^4.00^9.00^4.00 -~06127~^~0600~^~Gravy, unspecified type, dry~^~GRAVY,UNSPEC TYPE,DRY~^^^^^0^^6.25^3.40^8.90^4.00 -~06128~^~0600~^~Soup, chicken noodle, dry, mix~^~SOUP,CHICK NOODLE,DRY,MIX~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06142~^~0600~^~Sauce, sofrito, prepared from recipe~^~SAUCE,SOFRITO,PREP FROM RECIPE~^^^^^0^^^^^ -~06147~^~0600~^~Soup, beef mushroom, canned, condensed~^~SOUP,BF MUSHROOM,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06149~^~0600~^~Soup, chicken mushroom, canned, condensed~^~SOUP,CHICK MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.20 -~06150~^~0600~^~Sauce, barbecue~^~SAUCE,BARBECUE~^^^~Y~^^0^^6.25^^^ -~06151~^~0600~^~Sauce, plum, ready-to-serve~^~SAUCE,PLUM,READY-TO-SERVE~^^^^^0^^6.25^4.00^9.00^4.00 -~06152~^~0600~^~Sauce, pizza, canned, ready-to-serve~^~SAUCE,PIZZA,CND,RTS~^^^^^0^^^4.00^9.00^4.00 -~06158~^~0600~^~Soup, tomato bisque, canned, condensed~^~SOUP,TOMATO BISQUE,CND,COND~^^^^^0^^6.25^3.90^8.80^3.90 -~06159~^~0600~^~Soup, tomato, canned, condensed~^~SOUP,TOMATO,CND,COND~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06164~^~0600~^~Sauce, salsa, ready-to-serve~^~SAUCE,SALSA,RTS~^^^~Y~^^0^^6.25^2.44^8.87^3.57 -~06166~^~0600~^~Sauce, homemade, white, medium~^~SAUCE,HOMEMADE,WHITE,MED~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06167~^~0600~^~Sauce, homemade, white, thick~^~SAUCE,HOMEMADE,WHITE,THICK~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06168~^~0600~^~Sauce, ready-to-serve, pepper or hot~^~SAUCE,RTS,PEPPER OR HOT~^^^^^0^^6.25^2.44^8.37^3.57 -~06169~^~0600~^~Sauce, ready-to-serve, pepper, TABASCO~^~SAUCE,RTS,PEPPER,TABASCO~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~06170~^~0600~^~Soup, stock, beef, home-prepared~^~SOUP,STOCK,BEEF,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06172~^~0600~^~Soup, stock, chicken, home-prepared~^~SOUP,STOCK,CHICK,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06174~^~0600~^~Soup, stock, fish, home-prepared~^~SOUP,STOCK,FISH,HOME-PREPARED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06175~^~0600~^~Sauce, hoisin, ready-to-serve~^~SAUCE,HOISIN,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06176~^~0600~^~Sauce, oyster, ready-to-serve~^~SAUCE,OYSTER,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06177~^~0600~^~Soup, minestrone, canned, reduced sodium, ready-to-serve~^~SOUP,MINESTRONE,CND,RED NA,RTS~^^^~Y~^^0^^^^^ -~06179~^~0600~^~Sauce, fish, ready-to-serve~^~SAUCE,FISH,READY-TO-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06180~^~0600~^~Soup, shark fin, restaurant-prepared~^~SOUP,SHARK FIN,REST-PREP~^^^^^0^^6.25^4.00^9.00^4.00 -~06182~^~0600~^~Soup, cream of mushroom, canned, condensed, reduced sodium~^~SOUP,CRM OF MUSHROOM,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06183~^~0600~^~Soup, chicken broth, less/reduced sodium, ready to serve~^~SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06188~^~0600~^~Soup, beef broth, less/reduced sodium, ready to serve~^~SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06189~^~0600~^~Sauce, teriyaki, ready-to-serve, reduced sodium~^~SAUCE,TERIYAKI,RTS,RED NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06190~^~0600~^~Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve~^~SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06192~^~0600~^~Split pea soup, canned, reduced sodium, prepared with water or ready-to serve~^~SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE~^^^~Y~^^0^^^^^ -~06193~^~0600~^~Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve~^~SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS~^^^~Y~^^0^^^^^ -~06194~^~0600~^~Soup, chicken broth, ready-to-serve~^~SOUP,CHICK BROTH,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06201~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume milk~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06208~^~0600~^~Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve~^~SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS~^^^~Y~^^0^^^^^ -~06210~^~0600~^~Soup, cream of celery, canned, prepared with equal volume milk~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06211~^~0600~^~Soup, cheese, canned, prepared with equal volume milk~^~SOUP,CHS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.10^8.80^3.90 -~06216~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume milk~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06217~^~0600~^~Soup, vegetable, canned, low sodium, condensed~^~SOUP,VEG,CND,LO NA,COND~^^^~Y~^^0^^^^^ -~06230~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06243~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06246~^~0600~^~Soup, cream of onion, canned, prepared with equal volume milk~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06248~^~0600~^~Soup, oyster stew, canned, prepared with equal volume milk~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06249~^~0600~^~Soup, pea, green, canned, prepared with equal volume milk~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.70^8.90^4.00 -~06253~^~0600~^~Soup, cream of potato, canned, prepared with equal volume milk~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^4.00 -~06256~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06264~^~0600~^~Sauce, white, thin, prepared-from-recipe, with butter~^~SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER~^~NFSMI Recipe No. G-08~^^^^0^^^^^ -~06285~^~0600~^~Sauce, sweet and sour, prepared-from-recipe~^~SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE~^~NFSMI Recipe No. G-05~^^^^0^^^^^ -~06307~^~0600~^~Sauce, barbecue, KRAFT, original~^~SAUCE,BARBECUE,KRAFT,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~06314~^~0600~^~Soup, HEALTHY CHOICE Chicken Noodle Soup, canned~^~SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06315~^~0600~^~Soup, HEALTHY CHOICE Chicken and Rice Soup, canned~^~SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06316~^~0600~^~Soup, HEALTHY CHOICE Garden Vegetable Soup, canned~^~SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06338~^~0600~^~CAMPBELL'S, Cream of Mushroom Soup, condensed~^~CAMPBELL'S,CRM OF MUSHROOM SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06358~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume milk~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06359~^~0600~^~Soup, tomato, canned, prepared with equal volume low fat (2%) milk~^~SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06377~^~0600~^~CAMPBELL'S, Tomato Soup, condensed~^~CAMPBELL'S,TOMATO SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06395~^~0600~^~CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup~^~CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06401~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume water~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06402~^~0600~^~Soup, black bean, canned, prepared with equal volume water~^~SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06404~^~0600~^~Soup, bean with pork, canned, prepared with equal volume water~^~SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06406~^~0600~^~Soup, bean with frankfurters, canned, prepared with equal volume water~^~SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06409~^~0600~^~Soup, beef noodle, canned, prepared with equal volume water~^~SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06410~^~0600~^~Soup, cream of celery, canned, prepared with equal volume water~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06411~^~0600~^~Soup, cheese, canned, prepared with equal volume water~^~SOUP,CHS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.80^3.90 -~06413~^~0600~^~Soup, chicken broth, canned, prepared with equal volume water~^~SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06415~^~0600~^~CAMPBELL'S CHUNKY, Hearty Beef Barley Soup~^~CAMPBELL'S CHUNKY,HEARTY BF BARLEY SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06416~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume water~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06417~^~0600~^~Soup, chicken gumbo, canned, prepared with equal volume water~^~SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06419~^~0600~^~Soup, chicken noodle, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06423~^~0600~^~Soup, chicken with rice, canned, prepared with equal volume water~^~SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06426~^~0600~^~Soup, chili beef, canned, prepared with equal volume water~^~SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06428~^~0600~^~Soup, clam chowder, manhattan, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06430~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06431~^~0600~^~CAMPBELL'S CHUNKY, New England Clam Chowder~^~CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER~^^~Campbell Soup Co.~^^^0^^^^^ -~06432~^~0600~^~Soup, beef broth, bouillon, consomme, prepared with equal volume water~^~SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06434~^~0600~^~CAMPBELL'S CHUNKY, Old Fashioned Vegetable Beef Soup~^~CAMPBELL'S CHUNKY,OLD FASHIONED VEG BF SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06440~^~0600~^~Soup, minestrone, canned, prepared with equal volume water~^~SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06442~^~0600~^~Soup, mushroom barley, canned, prepared with equal volume water~^~SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.60^8.90^4.00 -~06443~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume water~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06444~^~0600~^~Soup, mushroom with beef stock, canned, prepared with equal volume water~^~SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06446~^~0600~^~Soup, cream of onion, canned, prepared with equal volume water~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06448~^~0600~^~Soup, oyster stew, canned, prepared with equal volume water~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06449~^~0600~^~Soup, pea, green, canned, prepared with equal volume water~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06451~^~0600~^~Soup, pea, split with ham, canned, prepared with equal volume water~^~SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06453~^~0600~^~Soup, cream of potato, canned, prepared with equal volume water~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^4.00 -~06456~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume water~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06461~^~0600~^~Soup, tomato beef with noodle, canned, prepared with equal volume water~^~SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06463~^~0600~^~Soup, tomato rice, canned, prepared with equal volume water~^~SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06465~^~0600~^~Soup, turkey noodle, canned, prepared with equal volume water~^~SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.90^4.10 -~06466~^~0600~^~Soup, turkey vegetable, canned, prepared with equal volume water~^~SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06468~^~0600~^~Soup, vegetarian vegetable, canned, prepared with equal volume water~^~SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06471~^~0600~^~Soup, vegetable beef, canned, prepared with equal volume water~^~SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06472~^~0600~^~Soup, vegetable with beef broth, canned, prepared with equal volume water~^~SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06475~^~0600~^~Soup, beef broth or bouillon, powder, prepared with water~^~SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06476~^~0600~^~Soup, beef broth, cubed, prepared with water~^~SOUP,BF BROTH,CUBED,PREP W/H2O~^^^^^0^^6.25^4.00^8.90^4.00 -~06480~^~0600~^~Soup, chicken broth or bouillon, dry, prepared with water~^~SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06481~^~0600~^~Soup, chicken broth cubes, dry, prepared with water~^~SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O~^^^^^0^^6.25^4.20^9.00^4.00 -~06483~^~0600~^~Soup, cream of chicken, dry, mix, prepared with water~^~SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06494~^~0600~^~Soup, onion, dry, mix, prepared with water~^~SOUP,ONION,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06498~^~0600~^~Soup, tomato, dry, mix, prepared with water~^~SOUP,TOMATO,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06528~^~0600~^~Soup, chicken noodle, dry, mix, prepared with water~^~SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06547~^~0600~^~Soup, beef mushroom, canned, prepared with equal volume water~^~SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06549~^~0600~^~Soup, chicken mushroom, canned, prepared with equal volume water~^~SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.20 -~06558~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume water~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06559~^~0600~^~Soup, tomato, canned, prepared with equal volume water, commercial~^~SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06583~^~0600~^~Soup, ramen noodle, any flavor, dry~^~SOUP,RAMEN NOODLE,ANY FLAVOR,DRY~^^^~Y~^^0^^^4.00^9.00^4.00 -~06584~^~0600~^~Soup, broccoli cheese, canned, condensed, commercial~^~SOUP,BROCCOLI CHS,CND,COND,COMM~^^^~Y~^^0^^^^^ -~06611~^~0600~^~Soup, SWANSON, beef broth, lower sodium~^~SOUP,SWANSON,BF BROTH,LOWER NA~^^~Campbell Soup Co.~^^^0^^^^^ -~06615~^~0600~^~Soup, SWANSON, vegetable broth~^~SOUP,SWANSON,VEG BROTH~^^~Campbell Soup Co.~^^^0^^^^^ -~06618~^~0600~^~Sauce, peanut, made from coconut, water, sugar, peanuts~^~SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06619~^~0600~^~SMART SOUP, Santa Fe Corn Chowder~^~SMART SOUP,SANTA FE CORN CHOWDER~^^~Smart Soup~^^^0^^6.25^^^ -~06620~^~0600~^~SMART SOUP, French Lentil~^~SMART SOUP,FRENCH LENTIL~^^~Smart Soup~^^^0^^6.25^^^ -~06621~^~0600~^~SMART SOUP, Greek Minestrone~^~SMART SOUP,GREEK MINESTRONE~^^~Smart Soup~^^^0^^6.25^^^ -~06622~^~0600~^~SMART SOUP, Indian Bean Masala~^~SMART SOUP,INDIAN BEAN MASALA~^^~Smart Soup~^^^0^^6.25^^^ -~06623~^~0600~^~SMART SOUP, Moroccan Chick Pea~^~SMART SOUP,MOROCCAN CHICK PEA~^^~Smart Soup~^^^0^^6.25^^^ -~06624~^~0600~^~SMART SOUP, Thai Coconut Curry~^~SMART SOUP,THAI COCNT CURRY~^^~Smart Soup~^^^0^^6.25^^^ -~06625~^~0600~^~SMART SOUP, Vietnamese Carrot Lemongrass~^~SMART SOUP,VIETNAMESE CARROT LEMONGRASS~^^~Smart Soup~^^^0^^6.25^^^ -~06626~^~0600~^~Sauce, pesto, ready-to-serve, refrigerated~^~SAUCE,PESTO,RTS,REFR~^^^^^0^^^^^ -~06627~^~0600~^~Sauce, pesto, ready-to-serve, shelf stable~^~SAUCE,PESTO,RTS,SHELF STABLE~^^^^^0^^^^^ -~06628~^~0600~^~Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated~^~SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR~^^~Nestle USA, Inc.~^^^0^^^^^ -~06629~^~0600~^~Sauce, pesto, CLASSICO, basil pesto, ready-to-serve~^~SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS~^^~Classico~^^^0^^^^^ -~06630~^~0600~^~Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve~^~SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS~^^~Mezzetta~^^^0^^^^^ -~06631~^~0600~^~Sauce, hot chile, sriracha~^~SAUCE,HOT CHILE,SRIRACHA~^^^^^0^^^^^ -~06632~^~0600~^~Sauce, hot chile, sriracha, CHA! BY TEXAS PETE~^~SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE~^^~TW Garner Food Company~^^^0^^^^^ -~06633~^~0600~^~Sauce, hot chile, sriracha, TUONG OT SRIRACHA~^~SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA~^^~Huy Fong Foods, Inc.~^^^0^^^^^ -~06700~^~0600~^~Soup, vegetable broth, ready to serve~^~SOUP,VEG BROTH,READY TO SERVE~^^^~Y~^^0^^^^^ -~06720~^~0600~^~Sauce, cheese sauce mix, dry~^~SAUCE,CHS SAU MIX,DRY~^^^^^0^^^^^ -~06725~^~0600~^~Soup, chicken corn chowder, chunky, ready-to-serve, single brand~^~SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06731~^~0600~^~Soup, bean with bacon, condensed, single brand~^~SOUP,BEAN W/BACON,COND,SINGLE BRAND~^^^^^0^^^^^ -~06742~^~0600~^~Soup, vegetable beef, microwavable, ready-to-serve, single brand~^~SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06749~^~0600~^~Soup, beef and vegetables, canned, ready-to-serve~^~SOUP,BF & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06930~^~0600~^~Sauce, cheese, ready-to-serve~^~SAUCE,CHS,RTS~^^^^^0^^^^^ -~06931~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS~^^^~Y~^^0^^^^^ -~06955~^~0600~^~Soup, cream of chicken, canned, condensed, reduced sodium~^~SOUP,CRM OF CHICK,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06956~^~0600~^~Soup, tomato, canned, condensed, reduced sodium~^~SOUP,TOMATO,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06957~^~0600~^~Gravy, brown instant, dry~^~GRAVY,BROWN INST,DRY~^^^~Y~^^0^^^^^ -~06958~^~0600~^~Gravy, instant beef, dry~^~GRAVY,INST BF,DRY~^^^~Y~^^0^^^^^ -~06959~^~0600~^~Gravy, instant turkey, dry~^~GRAVY,INST TURKEY,DRY~^^^~Y~^^0^^^^^ -~06960~^~0600~^~Sauce, alfredo mix, dry~^~SAUCE,ALFREDO MIX,DRY~^^^^^0^^^^^ -~06961~^~0600~^~Sauce, peppers, hot, chili, mature red, canned~^~SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND~^^^~Y~^^0^^^^^ -~06962~^~0600~^~Sauce, chili, peppers, hot, immature green, canned~^~SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND~^^^~Y~^^0^^^^^ -~06963~^~0600~^~Fish broth~^~FISH BROTH~^^^~Y~^^0^^^^^ -~06964~^~0600~^~Soup, tomato, low sodium, with water~^~SOUP,TOMATO,LO NA,W/H2O~^^^~Y~^^0^^^^^ -~06965~^~0600~^~Soup, pea, low sodium, prepared with equal volume water~^~SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06966~^~0600~^~Soup, chicken noodle, low sodium, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06967~^~0600~^~Soup, vegetable soup, condensed, low sodium, prepared with equal volume water~^~SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06968~^~0600~^~Soup, cream of mushroom, low sodium, ready-to-serve, canned~^~SOUP,CRM OF MUSHROOM,LO NA,RTS,CND~^^^~Y~^^0^^^^^ -~06969~^~0600~^~Potato soup, instant, dry mix~^~POTATO SOUP,INST,DRY MIX~^^^~Y~^^0^^^^^ -~06970~^~0600~^~Soup, chicken broth, low sodium, canned~^~SOUP,CHICK BROTH,LO NA,CND~^^^~Y~^^0^^^^^ -~06971~^~0600~^~Sauce, worcestershire~^~SAUCE,WORCESTERSHIRE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06972~^~0600~^~Sauce, tomato chili sauce, bottled, with salt~^~SAUCE,TOMATO CHILI SAU,BTLD,W/SALT~^^^~Y~^^0^^^^^ -~06974~^~0600~^~Soup, vegetable chicken, canned, prepared with water, low sodium~^~SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA~^^^~Y~^^0^^^^^ -~06976~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06977~^~0600~^~Gravy, meat or poultry, low sodium, prepared~^~GRAVY,MEAT OR POULTRY,LO NA,PREP~^^^~Y~^^0^^^^^ -~06978~^~0600~^~Soup, beef and mushroom, low sodium, chunk style~^~SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE~^^^~Y~^^0^^^^^ -~06980~^~0600~^~Soup, beef stroganoff, canned, chunky style, ready-to-serve~^~SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS~^^^~Y~^^0^^^^^ -~06981~^~0600~^~Soup, bouillon cubes and granules, low sodium, dry~^~SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY~^^^~Y~^^0^^^^^ -~06982~^~0600~^~Soup, ramen noodle, beef flavor, dry~^~SOUP,RAMEN NOODLE,BF FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06983~^~0600~^~Soup, ramen noodle, chicken flavor, dry~^~SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06985~^~0600~^~Gravy, HEINZ Home Style, savory beef~^~GRAVY,HEINZ HOME STYLE,SAVORY BF~^^~H.J. Heinz, Co.~^^^0^^6.25^4.00^9.00^4.00 -~06999~^~0600~^~Gravy, CAMPBELL'S, chicken~^~GRAVY,CAMPBELL'S,CHICK~^^~Campbell Soup Co.~^^^0^^^^^ -~07001~^~0700~^~Barbecue loaf, pork, beef~^~BARBECUE LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07002~^~0700~^~Beerwurst, beer salami, pork and beef~^~BEERWURST,BEER SALAMI,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07003~^~0700~^~Beerwurst, beer salami, pork~^~BEERWURST,BEER SALAMI,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07004~^~0700~^~Sausage, Berliner, pork, beef~^~SAUSAGE BERLINER PORK BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07005~^~0700~^~Blood sausage~^~BLOOD SAUSAGE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07006~^~0700~^~Bockwurst, pork, veal, raw~^~BOCKWURST PORK VEAL RAW~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07007~^~0700~^~Bologna, beef~^~BOLOGNA,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07008~^~0700~^~Bologna, beef and pork~^~BOLOGNA,BF & PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07010~^~0700~^~Bologna, pork~^~BOLOGNA,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07011~^~0700~^~Bologna, turkey~^~BOLOGNA TURKEY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07013~^~0700~^~Bratwurst, pork, cooked~^~BRATWURST,PORK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07014~^~0700~^~Braunschweiger (a liver sausage), pork~^~BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07015~^~0700~^~Bratwurst, pork, beef, link~^~BRATWURST,PORK,BF,LINK~^^^^^0^^6.25^4.27^9.02^3.87 -~07016~^~0700~^~Cheesefurter, cheese smokie, pork, beef~^~CHEESEFURTER,CHS SMOKIE,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07018~^~0700~^~Chicken spread~^~CHICKEN SPRD~^^^^^0^^6.25^4.00^4.00^4.00 -~07019~^~0700~^~Sausage, pork, chorizo, link or ground, raw~^~SAUSAGE,PORK,CHORIZO,LINK OR GROUND,RAW~^^^~Y~^^0^^^^^ -~07020~^~0700~^~Corned beef loaf, jellied~^~CORNED BEEF LOAF,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~07021~^~0700~^~Dutch brand loaf, chicken, pork and beef~^~DUTCH BRAND LOAF,CHICK,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07022~^~0700~^~Frankfurter, beef, unheated~^~FRANKFURTER,BF,UNHTD~^~hot dog, frank, wiener~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07024~^~0700~^~Frankfurter, chicken~^~FRANKFURTER,CHICKEN~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07025~^~0700~^~Frankfurter, turkey~^~FRANKFURTER,TURKEY~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07026~^~0700~^~Ham, chopped, canned~^~HAM,CHOPPED,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07027~^~0700~^~Ham, chopped, not canned~^~HAM,CHOPPED,NOT CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07028~^~0700~^~Ham, sliced, pre-packaged, deli meat (96%fat free, water added)~^~HAM,SLICED,PRE-PACKAGED,DELI MEAT (96%FAT FREE,H2O ADDED)~^^^~Y~^^0^^^^^ -~07029~^~0700~^~Ham, sliced, regular (approximately 11% fat)~^~HAM,SLICED,REG (APPROX 11% FAT)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07030~^~0700~^~Ham, minced~^~HAM,MINCED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07031~^~0700~^~Ham salad spread~^~HAM SALAD SPREAD~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07032~^~0700~^~Ham and cheese loaf or roll~^~HAM&CHS LOAF OR ROLL~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07033~^~0700~^~Ham and cheese spread~^~HAM AND CHEESE SPREAD~^^^^^0^^6.25^4.27^9.02^3.87 -~07034~^~0700~^~Headcheese, pork~^~HEADCHEESE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07036~^~0700~^~Sausage, Italian, pork, mild, raw~^~SAUSAGE,ITALIAN,PORK,MILD,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07038~^~0700~^~Knackwurst, knockwurst, pork, beef~^~KNACKWURST KNOCKWURST PORK BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07039~^~0700~^~Lebanon bologna, beef~^~LEBANON BOLOGNA BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07040~^~0700~^~Liver cheese, pork~^~LIVER CHEESE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07041~^~0700~^~Liver sausage, liverwurst, pork~^~LIVER SAUSAGE,LIVERWURST,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07043~^~0700~^~Roast beef, deli style, prepackaged, sliced~^~ROAST BF,DELI STYLE,PREPACKAGED,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07045~^~0700~^~Luncheon meat, pork, canned~^~LUNCHEON MEAT,PORK,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07046~^~0700~^~Turkey breast, low salt, prepackaged or deli, luncheon meat~^~TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07050~^~0700~^~Mortadella, beef, pork~^~MORTADELLA,BEEF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07051~^~0700~^~Olive loaf, pork~^~OLIVE LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07052~^~0700~^~Pastrami, turkey~^~PASTRAMI,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07053~^~0700~^~Pate, chicken liver, canned~^~PATE,CHICKEN LIVER,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07054~^~0700~^~Pate, goose liver, smoked, canned~^~PATE,GOOSE LIVER,SMOKED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07055~^~0700~^~Pate, liver, not specified, canned~^~PATE,LIVER,NOT SPECIFIED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07056~^~0700~^~Peppered loaf, pork, beef~^~PEPPERED LOAF PORK BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07057~^~0700~^~Pepperoni, beef and pork, sliced~^~PEPPERONI,BF & PORK,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07058~^~0700~^~Pickle and pimiento loaf, pork~^~PICKLE&PIMIENTO LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07059~^~0700~^~Polish sausage, pork~^~POLISH SAUSAGE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07060~^~0700~^~Luxury loaf, pork~^~LUXURY LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07061~^~0700~^~Mother's loaf, pork~^~MOTHER'S LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07062~^~0700~^~Picnic loaf, pork, beef~^~PICNIC LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07063~^~0700~^~Pork sausage, link/patty, unprepared~^~PORK SAUSAGE,LINK/PATTY,UNPREP~^^^^^0^^^^^ -~07064~^~0700~^~Pork sausage, link/patty, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07065~^~0700~^~Sausage, pork and beef, fresh, cooked~^~SAUSAGE,PORK & BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07066~^~0700~^~Sausage, turkey, reduced fat, brown and serve, cooked~^~SAUSAGE,TURKEY,RED FAT,BROWN & SERVE,CKD~^^^~Y~^^0^^^^^ -~07067~^~0700~^~Poultry salad sandwich spread~^~POULTRY SALAD SNDWCH SPRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07068~^~0700~^~Salami, cooked, beef~^~SALAMI CKD BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07069~^~0700~^~Salami, cooked, beef and pork~^~SALAMI,CKD,BF&PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07070~^~0700~^~Salami, cooked, turkey~^~SALAMI,COOKED,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07071~^~0700~^~Salami, dry or hard, pork~^~SALAMI,DRY OR HARD,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07072~^~0700~^~Salami, dry or hard, pork, beef~^~SALAMI,DRY OR HARD,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07073~^~0700~^~Sandwich spread, pork, beef~^~SANDWICH SPREAD,PORK,BEEF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07074~^~0700~^~Sausage, smoked link sausage, pork~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07075~^~0700~^~Sausage, smoked link sausage, pork and beef~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07077~^~0700~^~Sausage, smoked link sausage, pork and beef (nonfat dry milk added)~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF (NONFAT DRY MLK ADDED)~^^^^^0^^6.25^4.27^9.02^3.87 -~07078~^~0700~^~Thuringer, cervelat, summer sausage, beef, pork~^~THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07081~^~0700~^~Turkey breast, sliced, prepackaged~^~TURKEY BREAST,SLICED,PREPACKAGED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07083~^~0700~^~Sausage, Vienna, canned, chicken, beef, pork~^~SAUSAGE,VIENNA,CND,CHICK,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07088~^~0700~^~Honey roll sausage, beef~^~HONEY ROLL SAUSAGE,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07089~^~0700~^~Sausage, Italian, pork, mild, cooked, pan-fried~^~SAUSAGE,ITALIAN,PORK,MILD,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07090~^~0700~^~Luncheon sausage, pork and beef~^~LUNCHEON SAUSAGE,PORK&BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07091~^~0700~^~Sausage, New england brand, pork, beef~^~SAUSAGE,NEW ENGLAND BRAND,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07201~^~0700~^~Oscar Mayer, Bologna (beef)~^~OSCAR MAYER,BOLOGNA (BEEF)~^^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07207~^~0700~^~Oscar Mayer, Braunschweiger Liver Sausage (sliced)~^~OSCAR MAYER,BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07209~^~0700~^~Oscar Mayer, Chicken Breast (honey glazed)~^~OSCAR MAYER,CHICK BREAST (HONEY GLAZED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07212~^~0700~^~Oscar Mayer, Ham (chopped with natural juice)~^~OSCAR MAYER,HAM (CHOPPED W/ NAT JUICE)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07230~^~0700~^~Oscar Mayer, Salami (hard)~^~OSCAR MAYER,SALAMI (HARD)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07236~^~0700~^~Oscar Mayer, Smokies Sausage Little Cheese (pork, turkey)~^~OSCAR MAYER,SMOKIES SAUSAGE LITTLE CHS (PORK,TURKEY)~^^~Kraft Foods, Inc.~^^^0^^^^^ -~07241~^~0700~^~Oscar Mayer, Wieners (beef franks)~^~OSCAR MAYER,WIENERS (BEEF FRANKS)~^~hot dog, frankfurter, hotdog, wiener~^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07254~^~0700~^~Bacon, turkey, unprepared~^~BACON,TURKEY,UNPREP~^^^^^0^^^^^ -~07278~^~0700~^~Hormel Pillow Pak Sliced Turkey Pepperoni~^~HORMEL PILLOW PAK SLICED TURKEY PEPPERONI~^^~Hormel Foods Corp.~^^^0^^6.25^4.00^9.00^4.00 -~07900~^~0700~^~Sausage, turkey, pork, and beef, low fat, smoked~^~SAUSAGE,TURKEY,PORK,& BF,LOFAT,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07905~^~0700~^~Frankfurter, beef, pork, and turkey, fat free~^~FRANKFURTER,BF,PORK,& TURKEY,FAT FREE~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^^3.68 -~07906~^~0700~^~Luncheon meat, pork, ham, and chicken, minced, canned, reduced sodium, added ascorbic acid, includes SPAM, 25% less sodium~^~LUNCHEON MEAT,PORK,HAM,&CHICK,MINCD,CND,RED NA,VIT C, (SPAM)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07908~^~0700~^~Luncheon meat, pork with ham, minced, canned, includes Spam (Hormel)~^~LUNCHEON MEAT,PORK W/ HAM,MINCED,CND,INCL SPAM (HORMEL)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07909~^~0700~^~Luncheon meat, pork and chicken, minced, canned, includes Spam Lite~^~LUNCHEON MEAT,PORK & CHICK,MINCED,CND,INCL SPAM LITE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07910~^~0700~^~Bratwurst, veal, cooked~^~BRATWURST VEAL CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07911~^~0700~^~Liverwurst spread~^~LIVERWURST SPRD~^^^^^0^^6.25^4.27^9.02^3.87 -~07912~^~0700~^~Roast beef spread~^~ROAST BF SPRD~^^^^^0^^6.25^4.00^9.00^4.00 -~07913~^~0700~^~Salami, pork, beef, less sodium~^~SALAMI PORK BF LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07914~^~0700~^~Sausage, Italian, sweet, links~^~SAUSAGE ITALIAN SWT LINKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07915~^~0700~^~Sausage, Polish, beef with chicken, hot~^~SAUSAGE POLISH BF W/ CHICK HOT~^^^^^0^^6.25^4.00^9.00^4.00 -~07916~^~0700~^~Sausage, Polish, pork and beef, smoked~^~SAUSAGE POLISH PORK & BF SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07917~^~0700~^~Sausage, pork and beef, with cheddar cheese, smoked~^~SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07918~^~0700~^~Sausage, summer, pork and beef, sticks, with cheddar cheese~^~SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS~^^^^^0^^6.25^4.00^9.00^4.00 -~07919~^~0700~^~Sausage, turkey, breakfast links, mild, raw~^~SAUSAGE,TURKEY,BRKFST LINKS,MILD,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07920~^~0700~^~Swisswurst, pork and beef, with swiss cheese, smoked~^~SWISSWURST PORK & BF W/ SWISS CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07921~^~0700~^~Bacon and beef sticks~^~BACON & BF STKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07922~^~0700~^~Bratwurst, beef and pork, smoked~^~BRATWURST BF & PORK SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07923~^~0700~^~Bratwurst, chicken, cooked~^~BRATWURST,CHICK,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07924~^~0700~^~Bratwurst, pork, beef and turkey, lite, smoked~^~BRATWURST PORK BF & TURKEY LITE SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07925~^~0700~^~Pastrami, beef, 98% fat-free~^~PASTRAMI BF 98% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07926~^~0700~^~Salami, Italian, pork~^~SALAMI ITALIAN PORK~^^^^^0^^6.25^4.00^9.00^4.00 -~07927~^~0700~^~Sausage, Italian, turkey, smoked~^~SAUSAGE ITALIAN TURKEY SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07928~^~0700~^~Sausage, chicken, beef, pork, skinless, smoked~^~SAUSAGE CHICK BF PORK SKINLESS SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07929~^~0700~^~Sausage, turkey, hot, smoked~^~SAUSAGE TURKEY HOT SMOKED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07930~^~0700~^~Yachtwurst, with pistachio nuts, cooked~^~YACHTWURST,W/ PISTACHIO NUTS,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07931~^~0700~^~Beerwurst, pork and beef~^~BEERWURST PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07932~^~0700~^~Chicken breast, fat-free, mesquite flavor, sliced~^~CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07933~^~0700~^~Chicken breast, oven-roasted, fat-free, sliced~^~CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07934~^~0700~^~Kielbasa, Polish, turkey and beef, smoked~^~KIELBASA,POLISH,TURKEY & BF,SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07935~^~0700~^~Chicken breast, roll, oven-roasted~^~CHICKEN BREAST,ROLL,OVEN-ROASTED~^^^^^0^^6.25^4.00^9.00^4.00 -~07936~^~0700~^~Bologna, pork and turkey, lite~^~BOLOGNA PORK & TURKEY LITE~^^^^^0^^6.25^4.00^9.00^4.00 -~07937~^~0700~^~Bologna, pork, turkey and beef~^~BOLOGNA PORK TURKEY & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07938~^~0700~^~Ham, honey, smoked, cooked~^~HAM HONEY SMOKED CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07939~^~0700~^~Frankfurter, pork~^~FRANKFURTER,PORK~^~hot dog, wiener, frank~^^^^0^^6.25^4.00^9.00^4.00 -~07940~^~0700~^~Macaroni and cheese loaf, chicken, pork and beef~^~MACARONI & CHS LOAF CHICK PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07941~^~0700~^~Salami, Italian, pork and beef, dry, sliced, 50% less sodium~^~SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07942~^~0700~^~Pate, truffle flavor~^~PATE TRUFFLE FLAVOR~^^^^^0^^6.25^4.00^9.00^4.00 -~07943~^~0700~^~Turkey, breast, smoked, lemon pepper flavor, 97% fat-free~^~TURKEY,BREAST,SMOKED,LEMON PEPPER FLAVOR,97% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07944~^~0700~^~Turkey, white, rotisserie, deli cut~^~TURKEY WHITE ROTISSERIE DELI CUT~^^^^^0^^6.25^4.00^9.00^4.00 -~07945~^~0700~^~Frankfurter, beef, heated~^~FRANKFURTER BF HTD~^~hot dog, frank, wiener~^^^^0^^6.25^4.00^9.00^4.00 -~07949~^~0700~^~Frankfurter, meat, heated~^~FRANKFURTER MEAT HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~07950~^~0700~^~Frankfurter, meat~^~FRANKFURTER MEAT~^^^^^0^^6.25^4.00^9.00^4.00 -~07951~^~0700~^~Scrapple, pork~^~SCRAPPLE,PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07952~^~0700~^~Bologna, chicken, turkey, pork~^~BOLOGNA,CHICK,TURKEY,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07953~^~0700~^~Pork sausage, link/patty, fully cooked, microwaved~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,MICROWAVED~^^^~Y~^^0^^^^^ -~07954~^~0700~^~Sausage, breakfast sausage, beef, pre-cooked, unprepared~^~SAUSAGE,BRKFST SAUSAGE,BF,PRE-COOKED,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07955~^~0700~^~Sausage, turkey, fresh, raw~^~SAUSAGE,TURKEY,FRSH,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07956~^~0700~^~Sausage, beef, fresh, cooked~^~SAUSAGE,BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07957~^~0700~^~Sausage, pork and turkey, pre-cooked~^~SAUSAGE,PORK & TURKEY,PRE-COOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07958~^~0700~^~Sausage, turkey, fresh, cooked~^~SAUSAGE,TURKEY,FRSH,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07959~^~0700~^~Bologna, chicken, pork, beef~^~BOLOGNA,CHICK,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07960~^~0700~^~Bologna, chicken, pork~^~BOLOGNA,CHICK,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07961~^~0700~^~Chicken breast, deli, rotisserie seasoned, sliced, prepackaged~^~CHICKEN BREAST,DELI,ROTISSERIE SEASONED,SLICED,PREPACKAGED~^^^~Y~^^0^^^^^ -~07962~^~0700~^~Frankfurter, meat and poultry, unheated~^~Frankfurter, meat and poultry, unheated~^^^~Y~^^0^^^^^ -~07963~^~0700~^~Frankfurter, meat and poultry, cooked, boiled~^~Frankfurter, meat and poultry, cooked, boiled~^^^~Y~^^0^^^^^ -~07964~^~0700~^~Frankfurter, meat and poultry, cooked, grilled~^~Frankfurter, meat and poultry, cooked, grilled~^^^~Y~^^0^^^^^ -~07965~^~0700~^~Pork sausage, link/patty, reduced fat, unprepared~^~PORK SAUSAGE,LINK/PATTY,RED FAT,UNPREP~^^^~Y~^^0^^^^^ -~07966~^~0700~^~Pork sausage, link/patty, reduced fat, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,RED FAT,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07967~^~0700~^~Pork sausage, link/patty, fully cooked, unheated~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,UNHTD~^^^^^0^^^^^ -~07968~^~0700~^~Kielbasa, fully cooked, grilled~^~KIELBASA,FULLY CKD,GRILLED~^^^~Y~^^0^^^^^ -~07969~^~0700~^~Kielbasa, fully cooked, pan-fried~^~KIELBASA,FULLY CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07970~^~0700~^~Kielbasa, fully cooked, unheated~^~KIELBASA,FULLY CKD,UNHTD~^^^~Y~^^0^^^^^ -~07971~^~0700~^~Bologna, meat and poultry~^~BOLOGNA,MEAT & POULTRY~^^^~Y~^^0^^^^^ -~07972~^~0700~^~Meatballs, frozen, Italian style~^~MEATBALLS,FRZ,ITALIAN STYLE~^^^^^0^^^^^ -~07973~^~0700~^~Bacon, turkey, microwaved~^~BACON,TURKEY,MICROWAVED~^^^~Y~^^0^^^^^ -~07974~^~0700~^~Bacon, turkey, low sodium~^~BACON,TURKEY,LO NA~^^^~Y~^^0^^6.25^^^ -~07976~^~0700~^~Sausage, chicken or turkey, Italian style, lower sodium~^~SAUSAGE,CHICK OR TURKEY,ITALIAN STYLE,LOWER NA~^^^~Y~^^0^^6.25^^^ -~07977~^~0700~^~Ham, smoked, extra lean, low sodium~^~HAM,SMOKED,EX LN,LO NA~^^^~Y~^^0^^6.25^^^ -~07978~^~0700~^~Pork sausage, reduced sodium, cooked~^~PORK SAUSAGE,RED NA,CKD~^^^~Y~^^0^^6.25^^^ -~07979~^~0700~^~Sausage, pork, turkey, and beef, reduced sodium~^~SAUSAGE,PORK,TURKEY,& BF,RED NA~^^^~Y~^^0^^^^^ -~08002~^~0800~^~Cereals ready-to-eat, POST, ALPHA-BITS~^~CEREALS RTE,POST,ALPHA-BITS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08010~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08011~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH with CRUNCHBERRIES~^~CEREALS RTE,QUAKER,CAP'N CRUNCH W/ CRUNCHBERRIES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08012~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S PEANUT BUTTER CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S PNUT BUTTER CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08013~^~0800~^~Cereals ready-to-eat, GENERAL MILLS, CHEERIOS~^~CEREALS RTE,GENERAL MILLS,CHEERIOS~^^~General Mills Inc.~^~Y~^^0^^6.25^^^ -~08015~^~0800~^~Cereals ready-to-eat, POST, COCOA PEBBLES~^~CEREALS RTE,POST,COCOA PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08018~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER CRUNCHY BRAN~^~CEREALS RTE,QUAKER,QUAKER CRUNCHY BRAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08025~^~0800~^~Cereals ready-to-eat, RALSTON CRISP RICE~^~CEREALS RTE,RALSTON CRISP RICE~^^~Ralston Foods~^~Y~^^0^^^^^ -~08029~^~0800~^~Cereals ready-to-eat, POST Bran Flakes~^~CEREALS RTE,POST BRAN FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08034~^~0800~^~Cereals ready-to-eat, POST, FRUITY PEBBLES~^~CEREALS RTE,POST,FRUITY PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08037~^~0800~^~Cereals ready-to-eat, granola, homemade~^~CEREALS RTE,GRANOLA,HOMEMADE~^^^~Y~^^0^^5.80^^^ -~08038~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Cereal~^~CEREALS RTE,POST,GRAPE-NUTS CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08039~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Flakes~^~CEREALS RTE,POST,GRAPE-NUTS FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08046~^~0800~^~Cereals ready-to-eat, POST, Honeycomb Cereal~^~CEREALS RTE,POST,HONEYCOMB CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08047~^~0800~^~Cereals ready-to-eat, QUAKER, KING VITAMAN~^~CEREALS RTE,QUAKER,KING VITAMAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08049~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT LIFE, plain~^~CEREALS RTE,QUAKER,QUAKER OAT LIFE,PLN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08054~^~0800~^~Cereals ready-to-eat, QUAKER, 100% Natural Granola, Oats, Wheat and Honey~^~CEREALS RTE,QUAKER,100% NAT GRANOLA,OATS,WHEAT & HONEY~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08059~^~0800~^~Cereals ready-to-eat, QUAKER, SWEET CRUNCH/QUISP~^~CEREALS RTE,QUAKER,SWT CRUNCH/QUISP~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08061~^~0800~^~Cereals ready-to-eat, POST Raisin Bran Cereal~^~CEREALS RTE,POST RAISIN BRAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08066~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Rice~^~CEREALS RTE,QUAKER,QUAKER PUFFED RICE~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08073~^~0800~^~Cereals ready-to-eat, POST, GOLDEN CRISP~^~CEREALS RTE,POST,GOLDEN CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08074~^~0800~^~Cereals ready-to-eat, RALSTON TASTEEOS~^~CEREALS RTE,RALSTON TASTEEOS~^^~Ralston Foods~^~Y~^^0^^^^^ -~08081~^~0800~^~Cereals ready-to-eat, POST, Honey Nut Shredded Wheat~^~CEREALS RTE,POST,HONEY NUT SHREDDED WHEAT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08083~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CORN BURSTS~^~CEREALS RTE,MALT-O-MEAL,CORN BURSTS~^^~MOM Brands~^~Y~^^0^^^^^ -~08084~^~0800~^~Cereals ready-to-eat, wheat germ, toasted, plain~^~CEREALS RTE,WHEAT GERM,TSTD,PLN~^^^~Y~^^0^^5.80^3.59^8.37^3.78 -~08085~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Honey Crunch Wheat Germ~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER HONEY CRUNCH WHEAT GERM~^^~Sun Country Foods Inc.~^~Y~^^0^^6.25^^^ -~08090~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, dry~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,DRY~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08091~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08092~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, dry~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,DRY~^~original~^~The Quaker Oats, Co.~^~Y~^^0^^^3.46^8.37^4.16 -~08093~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, prepared (microwaved or boiling water added), without salt~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,PREP,WO/ SALT~^^~The Quaker Oats, Co.~^^^0^^^3.46^8.37^4.16 -~08094~^~0800~^~Cereals, QUAKER, corn grits, instant, cheddar cheese flavor, dry~^~CEREALS,QUAKER,CORN GRITS,INST,CHEDDAR CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08096~^~0800~^~Cereals, QUAKER, Instant Grits, Country Bacon flavor, dry~^~CEREALS,QUAKER,INST GRITS,COUNTRY BACON FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08100~^~0800~^~Cereals, CREAM OF RICE, dry~^~CEREALS,CRM OF RICE,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.95^3.82^8.37^4.16 -~08102~^~0800~^~Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry~^~CEREALS,CRM OF WHEAT,REG,10 MINUTE COOKING,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08103~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08104~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,DRY~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~08105~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), cooked with water, without salt~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,QUICK,CKD W/ H2O,WO/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08106~^~0800~^~Cereals, CREAM OF WHEAT, instant, dry~^~CEREALS,CREAM OF WHEAT,INST,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08107~^~0800~^~Cereals, CREAM OF WHEAT, instant, prepared with water, without salt~^~CEREALS,CREAM OF WHEAT,INST,PREP W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08116~^~0800~^~Cereals, MALT-O-MEAL, original, plain, dry~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,DRY~^^~MOM Brands~^~Y~^^0^^5.70^3.60^8.37^4.10 -~08120~^~0800~^~Cereals, oats, regular and quick, not fortified, dry~^~CEREALS,OATS,REG & QUICK,NOT FORT,DRY~^~oatmeal, old-fashioned oats, rolled oats~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08121~^~0800~^~Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt~^~CEREALS,OATS,REG & QUICK,UNENR,CKD W/ H2O,WO/ SALT~^~oatmeal, cooked~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08122~^~0800~^~Cereals, oats, instant, fortified, plain, dry~^~CEREALS,OATS,INST,FORT,PLN,DRY~^~instant oatmeal, Quaker original flavor~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08123~^~0800~^~Cereals, oats, instant, fortified, plain, prepared with water (boiling water added or microwaved)~^~CEREALS,OATS,INST,FORT,PLN,PREP W/ H2O~^~instant oatmeal~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08124~^~0800~^~Cereals, QUAKER, Instant Oatmeal, apples and cinnamon, dry~^~CEREALS,QUAKER,INST OATMEAL,APPLS & CINN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08128~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, dry~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,DRY~^~oatmeal~^^~Y~^^0^^5.83^^^ -~08129~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08130~^~0800~^~Cereals, QUAKER, Instant Oatmeal, maple and brown sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,MAPLE & BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08133~^~0800~^~Cereals, oats, instant, fortified, with raisins and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08138~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,MARSHMLLW MATEYS~^^~MOM Brands~^~Y~^^0^^^^^ -~08142~^~0800~^~Cereals, WHEATENA, dry~^~CEREALS,WHEATENA,DRY~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08143~^~0800~^~Cereals, WHEATENA, cooked with water~^~CEREALS,WHEATENA,CKD W/ H2O~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08144~^~0800~^~Cereals, whole wheat hot natural cereal, dry~^~CEREALS,WHL WHEAT HOT NAT CRL,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~08145~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, without salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,WO/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08146~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Wheat~^~CEREALS RTE,QUAKER,QUAKER PUFFED WHEAT~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08147~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original big biscuit~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL BIG BISCUIT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08148~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08156~^~0800~^~Cereals ready-to-eat, rice, puffed, fortified~^~CEREALS RTE,RICE,PUFFED,FORT~^^^^^0^^5.95^3.82^8.37^4.16 -~08157~^~0800~^~Cereals ready-to-eat, wheat, puffed, fortified~^~CEREALS RTE,WHEAT,PUFFED,FORT~^^^^^0^^5.83^3.59^8.37^3.78 -~08160~^~0800~^~Cereals, corn grits, yellow, regular and quick, unenriched, dry~^~CEREALS,CORN GRITS,YEL,REG & QUICK,UNENR,DRY~^^^^^0^^6.25^3.46^8.37^4.16 -~08161~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08164~^~0800~^~Cereals, corn grits, yellow, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08165~^~0800~^~Cereals, corn grits, yellow, regular, quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,YEL,REG,QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08168~^~0800~^~Cereals, CREAM OF RICE, cooked with water, with salt~^~CEREALS,CREAM OF RICE,CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.95^3.82^8.37^4.16 -~08169~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08172~^~0800~^~Cereals, farina, unenriched, dry~^~CEREALS,FARINA,UNENR,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~08173~^~0800~^~Cereals, farina, enriched, cooked with water, with salt~^~CEREALS,FARINA,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08177~^~0800~^~Cereals, MALT-O-MEAL, chocolate, dry~^~CEREALS,MALT-O-MEAL,CHOC,DRY~^^~MOM Brands~^^^0^^5.70^^^ -~08180~^~0800~^~Cereals, oats, regular and quick and instant, unenriched, cooked with water (includes boiling and microwaving), with salt~^~CEREALS,OATS,REG & QUICK & INST,UNENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.46^8.37^4.12 -~08182~^~0800~^~Cereals, WHEATENA, cooked with water, with salt~^~CEREALS,WHEATENA,CKD W/ H2O,W/ SALT~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08183~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, with salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08191~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, lightly frosted, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,LIGHTLY FRSTD,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08192~^~0800~^~Cereals ready-to-eat, POST SELECTS Blueberry Morning~^~CEREALS RTE,POST SELECTS BLUEBERRY MORNING~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08200~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, dry~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08204~^~0800~^~Cereals ready-to-eat, chocolate-flavored frosted puffed corn~^~CEREALS RTE,CHOCOLATE-FLAVORED FRSTD PUFFED CORN~^^^~Y~^^0^^^^^ -~08206~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COCO-ROOS~^~CEREALS RTE,MALT-O-MEAL,COCO-ROOS~^^~MOM Brands~^~Y~^^0^^^^^ -~08210~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT CINNAMON LIFE~^~CEREALS RTE,QUAKER,QUAKER OAT CINN LIFE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08211~^~0800~^~Cereals ready-to-eat, QUAKER, HONEY GRAHAM OH!S~^~CEREALS RTE,QUAKER,HONEY GRAHAM OH!S~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08214~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares~^~CEREALS RTE,QUAKER,OATMEAL SQUARES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08215~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares, cinnamon~^~CEREALS RTE,QUAKER,OATMEAL SQUARES,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08216~^~0800~^~Cereals ready-to-eat, QUAKER, Toasted Multigrain Crisps~^~CEREALS RTE,QUAKER,TSTD MULTIGRAIN CRISPS~^~QUAKER Oat Bran Cereal~^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08218~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER 100% Natural Granola with Oats, Wheat, Honey, and Raisins~^~CEREALS RTE,QUAKER,QUAKER GRANOLA W/ OATS,WHEAT& RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08220~^~0800~^~Cereals ready-to-eat, QUAKER, Low Fat 100% Natural Granola with Raisins~^~CEREALS RTE,QUAKER,LOFAT 100% NAT GRANOLA W/ RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08221~^~0800~^~Cereals, QUAKER, Instant Grits, Butter flavor, dry~^~CEREALS,QUAKER,INST GRITS,BUTTER FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08225~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream variety, dry~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM VAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08228~^~0800~^~Cereals, QUAKER, Instant Oatmeal, raisins, dates and walnuts, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISINS,DATES & WALNUTS,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08231~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, dry~^~CEREALS,QUAKER,OAT BRAN,QUAKER/MOTHER'S OAT BRAN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08236~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, prepared with water, no salt~^~CEREALS,QKR,OAT BRAN,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08240~^~0800~^~Cereals, Oat Bran, QUAKER, QUAKER/MOTHER'S Oat Bran, prepared with water, salt~^~CEREALS,OAT BRAN,QKR,QKR/MOTHER'S OAT BRAN,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08249~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, no salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08252~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08290~^~0800~^~Cereals ready-to-eat, HEALTH VALLEY, FIBER 7 Flakes~^~CEREALS RTE,HEALTH VALLEY,FIBER 7 FLAKES~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~08305~^~0800~^~Cereals ready-to-eat, Post, Waffle Crisp~^~CEREALS RTE,POST,WAFFLE CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08314~^~0800~^~Cereals, QUAKER, hominy grits, white, quick, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,QUICK,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08316~^~0800~^~Cereals, QUAKER, hominy grits, white, regular, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,REG,DRY~^~old fashioned~^~The Quaker Oats, Co.~^^^0^^^^^ -~08346~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,COLOSSAL CRUNCH~^^~MOM Brands~^~Y~^^0^^^^^ -~08347~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, BERRY COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,BERRY COLOSSAL CRUNCH~^^~MOM Brands~^^^0^^^^^ -~08348~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Crispy Rice~^~CEREALS RTE,MALT-O-MEAL,CRISPY RICE~^^~MOM Brands~^^^0^^^^^ -~08349~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, TOOTIE FRUITIES~^~CEREALS RTE,MALT-O-MEAL,TOOTIE FRUITIES~^^~MOM Brands~^~Y~^^0^^^^^ -~08351~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S PEANUT BUTTER BUMPERS Cereal~^~CEREALS RTE,QUAKER,MOTHER'S PNUT BUTTER BUMPERS CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08352~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Toasted Oat Bran cereal~^~CEREALS RTE,QUAKER,MOTHER'S TSTD OAT BRAN CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08353~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Cinnamon Oat Crunch~^~CEREALS RTE,QUAKER,MOTHER'S CINN OAT CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08354~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S GRAHAM BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S GRAHAM BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08355~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S COCOA BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S COCOA BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08363~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Toasted Wheat Bran~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER TSTD WHEAT BRAN~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08365~^~0800~^~Cereals ready-to-eat, QUAKER, Shredded Wheat, bagged cereal~^~CEREALS RTE,QUAKER,SHREDDED WHEAT,BAGGED CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08366~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Wheat Germ, Regular~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER WHEAT GERM,REG~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08402~^~0800~^~Cereals, QUAKER, Quick Oats, Dry~^~CEREALS,QUAKER,QUICK OATS,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08409~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Flakes~^~CEREALS RTE,MALT-O-MEAL,FRSTD FLAKES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08410~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon-Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,CINNAMON-SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08411~^~0800~^~Cereals, QUAKER, Instant Oatmeal, DINOSAUR EGGS, Brown Sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,DINOSAUR EGGS,BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08417~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Banana Bread, dry~^~CEREALS,QUAKER,INST OATMEAL,BANANA BREAD,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08435~^~0800~^~Cereals ready-to-eat, UNCLE SAM CEREAL~^~CEREALS RTE,UNCLE SAM CRL~^^~Attune Foods, Inc.~^~Y~^^0^^^^^ -~08436~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Raisin and Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISIN & SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08444~^~0800~^~Cereals, QUAKER, Instant Grits, Redeye Gravy & Country Ham flavor, dry~^~CEREALS,QUAKER,INST GRITS,REDEYE GRVY COUNTRY HAM FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08449~^~0800~^~Cereals, QUAKER, Instant Grits Product with American Cheese Flavor, dry~^~CEREALS,QUAKER,INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08450~^~0800~^~Cereals, QUAKER, Instant Grits, Ham 'n' Cheese flavor, dry~^~CEREALS,QUAKER,INST GRITS,HAM 'N' CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08451~^~0800~^~Cereals, QUAKER, Quick Oats with Iron, Dry~^~CEREALS,QUAKER,QUICK OATS W/ IRON,DRY~^~quick oats with iron for WIC program~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08452~^~0800~^~Cereals, QUAKER, Whole Wheat Natural Cereal, dry~^~CEREALS,QUAKER,WHL WHEAT NAT CRL,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08476~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey BUZZERS~^~CEREALS RTE,MALT-O-MEAL,HONEY BUZZERS~^^~MOM Brands~^^^0^^6.25^^^ -~08478~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, GOLDEN PUFFS~^~CEREALS RTE,MALT-O-MEAL,GOLDEN PUFFS~^^~MOM Brands~^^^0^^6.25^^^ -~08481~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, HONEY GRAHAM SQUARES~^~CEREALS RTE,MALT-O-MEAL,HONEY GRAHAM SQUARES~^^~MOM Brands~^^^0^^6.25^^^ -~08484~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Raisin Bran Cereal~^~CEREALS RTE,MALT-O-MEAL,RAISIN BRAN CRL~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08487~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Blueberry MUFFIN TOPS Cereal~^~CEREALS RTE,MALT-O-MEAL,BLUEBERRY MUFFIN TOPS CRL~^^~MOM Brands~^^^0^^6.25^^^ -~08488~^~0800~^~Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,FARINA HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08489~^~0800~^~Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,MAPLE & BROWN SUGAR HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08491~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Honey Nut TOASTY O'S~^~CEREALS RTE,MOM'S BEST,HONEY NUT TOASTY O'S~^^~MOM Brands~^^^0^^6.25^^^ -~08493~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Apple ZINGS~^~CEREALS RTE,MALT-O-MEAL,APPL ZINGS~^^~MOM Brands~^^^0^^6.25^^^ -~08494~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CINNAMON TOASTERS~^~CEREALS RTE,MALT-O-MEAL,CINN TOASTERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08495~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Cocoa DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,COCOA DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08500~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Mini SPOONERS~^~CEREALS RTE,MALT-O-MEAL,FRSTD MINI SPOONERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08501~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Fruity DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,FRUITY DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08504~^~0800~^~Cereals ready-to-eat, RALSTON Enriched Wheat Bran flakes~^~CEREALS RTE,RALSTON ENR WHEAT BRAN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08505~^~0800~^~Cereals ready-to-eat, RALSTON Corn Biscuits~^~CEREALS RTE,RALSTON CORN BISCUITS~^^~Ralston Foods~^^^0^^^^^ -~08506~^~0800~^~Cereals ready-to-eat, RALSTON Corn Flakes~^~CEREALS RTE,RALSTON CORN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08507~^~0800~^~Cereals ready-to-eat, RALSTON Crispy Hexagons~^~CEREALS RTE,RALSTON CRISPY HEXAGONS~^^~Ralston Foods~^^^0^^^^^ -~08510~^~2500~^~Milk and cereal bar~^~MILK & CRL BAR~^^^~Y~^^0^^^^^ -~08511~^~0800~^~Cereals, MALT-O-MEAL, original, plain, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08512~^~0800~^~Cereals, MALT-O-MEAL, chocolate, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,CHOC,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08544~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Cranberry Almond Crunch~^~CEREALS RTE,POST GREAT GRAINS CRANBERRY ALMOND CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08546~^~2500~^~Rice and Wheat cereal bar~^~RICE & WHEAT CRL BAR~^^^~Y~^^0^^6.25^^^ -~08549~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal~^~CEREALS RTE,QUAKER,QUAKER HONEY GRAHAM LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08550~^~0800~^~Cereals ready-to-eat, QUAKER, Christmas Crunch~^~CEREALS RTE,QUAKER,CHRISTMAS CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08554~^~0800~^~Cereals ready-to-eat, POST SELECTS Maple Pecan Crunch~^~CEREALS RTE,POST SELECTS MAPLE PECAN CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08571~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS, Pumpkin Granola~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS,PUMPKIN GRANOLA~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08573~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry~^~CEREALS,CRM OF WHEAT,2 1/2 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08574~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN CK,CKD W/H2O,STOVE-TOP,WO/SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08575~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN COOK TIME,CKD W/H2O,MW,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08576~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, dry~^~CEREALS,CRM OF WHEAT,1 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08577~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,STOVE-TOP,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08578~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,MICROWAVED,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08580~^~0800~^~Incaparina, dry mix (corn and soy flours), unprepared~^~INCAPARINA,DRY MIX (CORN & SOY FLOURS),UNPREP~^^^^^0^^6.25^^^ -~08625~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S Halloween Crunch~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S HALLOWEEN CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08627~^~0800~^~Cereals ready-to-eat, QUAKER, Natural Granola Apple Cranberry Almond~^~CEREALS RTE,QUAKER,NAT GRANOLA APPL CRANBERRY ALMOND~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08628~^~0800~^~Cereals ready-to-eat, QUAKER, Maple Brown Sugar LIFE Cereal~^~CEREALS RTE,QUAKER,MAPLE BROWN SUGAR LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08629~^~0800~^~Cereals ready-to-eat, QUAKER, Cap'n Crunch's OOPS! All Berries Cereal~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S OOPS! ALL BERRIES CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08632~^~0800~^~Cereals ready-to-eat, QUAKER Oatmeal Squares, Golden Maple~^~CEREALS RTE,QUAKER OATMEAL SQUARES,GOLDEN MAPLE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08633~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS with vanilla bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS W/ VANILLA BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08639~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Spice, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,CINN SPICE,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08640~^~0800~^~Cereals, QUAKER, Instant Oatmeal Organic, Regular~^~CEREALS,QUAKER,INST OATMEAL ORGANIC,REG~^~instant oatmeal, not fortified, no added salt~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08641~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream, variety of flavors, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08642~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Apple and Cinnamon, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,APPL & CINN,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08655~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, pecan bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,PECAN BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08656~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS flakes~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS FLAKES~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08657~^~0800~^~Cereals ready-to-eat, BARBARA'S PUFFINS, original~^~CEREALS RTE,BARBARA'S PUFFINS,ORIGINAL~^^~Barbara's Bakery, Inc~^~Y~^^0^^^^^ -~08662~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with real strawberries~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ REAL STRAWBERRIES~^^~Post Foods, LLC~^^^0^^^^^ -~08665~^~0800~^~Cereals ready-to-eat, POST HONEY BUNCHES OF OATS with cinnamon bunches~^~CEREALS RTE,POST HONEY BUNCHES OF OATS W/ CINN BUNCHES~^^~Post Foods, LLC~^^^0^^6.25^^^ -~08672~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CHOCOLATE MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,CHOC MARSHMLLW MATEYS~^^~MOM Brands~^^^0^^6.25^^^ -~08673~^~0800~^~Cereals, ready-to-eat, MALT-O-MEAL, Blueberry Mini SPOONERS~^~CEREALS,RTE,MALT-O-MEAL,BLUEBERRY MINI SPOONERS~^^~MOM Brands~^^^0^^6.25^^^ -~08674~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY~^^~MOM Brands~^^^0^^6.25^^^ -~08675~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey & almonds~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY & ALMONDS~^^~MOM Brands~^^^0^^6.25^^^ -~08676~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey Nut SCOOTERS~^~CEREALS RTE,MALT-O-MEAL,HONEY NUT SCOOTERS~^^~MOM Brands~^^^0^^6.25^^^ -~08680~^~0800~^~Cereals, oats, instant, fortified, maple and brown sugar, dry~^~CEREALS,OATS,INST,FORT,MAPLE & BROWN SUGAR,DRY~^^^~Y~^^0^^^^^ -~08685~^~0800~^~Cereals ready-to-eat, QUAKER WHOLE HEARTS oat cereal~^~CEREALS RTE,QUAKER WHL HEARTS OAT CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08686~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, maple and brown sugar~^~CEREALS,QUAKER,WT CONTROL INST OATMEAL,MAPLE & BROWN SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08687~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, banana bread~^~CEREALS,QUAKER,WEIGHT CONTROL INST OATMEAL,BANANA BREAD~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08688~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Swirl, high fiber~^~CEREALS,QUAKER,INST OATMEAL,CINN SWIRL,HI FIBER~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08689~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, blueberry hazelnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,BLUEBERRY HAZELNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08690~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, apple walnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,APPL WALNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08691~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, summer berry, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,SMMR BERRY,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08692~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, peach almond, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,PEACH ALMOND,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08693~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, cherry pistachio, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,CHERRY PISTACHIO,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08694~^~0800~^~Cereals, QUAKER, Instant Oatmeal, weight control, cinnamon~^~CEREALS,QUAKER,INST OATMEAL,WEIGHT CONTROL,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08709~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Sweetened WHEAT-FULS~^~CEREALS RTE,MOM'S BEST,SWTND WHEAT-FULS~^^~MOM Brands~^^^0^^6.25^^^ -~09001~^~0900~^~Acerola, (west indian cherry), raw~^~ACEROLA,(WEST INDIAN CHERRY),RAW~^^^^~18% seed, 2% stem end~^20^~Malpighia emarginata~^6.25^3.36^8.37^3.60 -~09002~^~0900~^~Acerola juice, raw~^~ACEROLA JUICE,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09003~^~0900~^~Apples, raw, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,WITH SKIN~^^^~Y~^~Core and stem~^10^~Malus domestica~^6.25^3.36^8.37^3.60 -~09004~^~0900~^~Apples, raw, without skin~^~APPLES,RAW,WITHOUT SKIN~^^^~Y~^~10% core and stem, 13% skin~^23^~Malus domestica~^6.25^3.36^8.37^3.60 -~09005~^~0900~^~Apples, raw, without skin, cooked, boiled~^~APPLES,RAW,WO/SKN,CKD,BLD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09006~^~0900~^~Apples, raw, without skin, cooked, microwave~^~APPLES,RAW,WO/ SKN,CKD,MICROWAVE~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09008~^~0900~^~Apples, canned, sweetened, sliced, drained, heated~^~APPLES,CND,SWTND,SLICED,DRND,HTD~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09009~^~0900~^~Apples, dehydrated (low moisture), sulfured, uncooked~^~APPLES,DEHYD (LO MOIST),SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09010~^~0900~^~Apples, dehydrated (low moisture), sulfured, stewed~^~APPLES,DEHYD (LO MOIST),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09011~^~0900~^~Apples, dried, sulfured, uncooked~^~APPLES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09012~^~0900~^~Apples, dried, sulfured, stewed, without added sugar~^~APPLES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09013~^~0900~^~Apples, dried, sulfured, stewed, with added sugar~^~APPLES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^^^ -~09014~^~0900~^~Apples, frozen, unsweetened, unheated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,UNHTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09015~^~0900~^~Apples, frozen, unsweetened, heated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,HTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09016~^~0900~^~Apple juice, canned or bottled, unsweetened, without added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09017~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09018~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09019~^~0900~^~Applesauce, canned, unsweetened, without added ascorbic acid (Includes foods for USDA's Food Distribution Program)~^~APPLESAUCE,CND,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09020~^~0900~^~Applesauce, canned, sweetened, without salt~^~APPLESAUCE,CND,SWTND,WO/ SALT~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09021~^~0900~^~Apricots, raw~^~APRICOTS,RAW~^^^~Y~^~Pits~^7^~Prunus armeniaca~^6.25^3.36^8.37^3.60 -~09022~^~0900~^~Apricots, canned, water pack, with skin, solids and liquids~^~APRICOTS,CND,H2O PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09023~^~0900~^~Apricots, canned, water pack, without skin, solids and liquids~^~APRICOTS,CND,H2O PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.60 -~09024~^~0900~^~Apricots, canned, juice pack, with skin, solids and liquids~^~APRICOTS,CND,JUC PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09025~^~0900~^~Apricots, canned, extra light syrup pack, with skin, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~APRICOTS,CND,EX LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09026~^~0900~^~Apricots, canned, light syrup pack, with skin, solids and liquids~^~APRICOTS,CND,LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09027~^~0900~^~Apricots, canned, heavy syrup pack, with skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09028~^~0900~^~Apricots, canned, heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.75 -~09029~^~0900~^~Apricots, canned, extra heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,EX HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.78 -~09030~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, uncooked~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09031~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, stewed~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09032~^~0900~^~Apricots, dried, sulfured, uncooked~^~APRICOTS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09033~^~0900~^~Apricots, dried, sulfured, stewed, without added sugar~^~APRICOTS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09034~^~0900~^~Apricots, dried, sulfured, stewed, with added sugar~^~APRICOTS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09035~^~0900~^~Apricots, frozen, sweetened~^~APRICOTS,FROZEN,SWEETENED~^^^^^0^^6.25^3.36^8.37^3.78 -~09036~^~0900~^~Apricot nectar, canned, with added ascorbic acid~^~APRICOT NECTAR,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09037~^~0900~^~Avocados, raw, all commercial varieties~^~AVOCADOS,RAW,ALL COMM VAR~^^^~Y~^~Seed and skin~^26^~Persea americana~^6.25^3.36^8.37^3.60 -~09038~^~0900~^~Avocados, raw, California~^~AVOCADOS,RAW,CALIFORNIA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09039~^~0900~^~Avocados, raw, Florida~^~AVOCADOS,RAW,FLORIDA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09040~^~0900~^~Bananas, raw~^~BANANAS,RAW~^^^~Y~^~Skin~^36^~Musa acuminata Colla~^6.25^3.36^8.37^3.60 -~09041~^~0900~^~Bananas, dehydrated, or banana powder~^~BANANAS,DEHYD,OR BANANA PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09042~^~0900~^~Blackberries, raw~^~BLACKBERRIES,RAW~^^^~Y~^~Caps and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09043~^~0900~^~Blackberry juice, canned~^~BLACKBERRY JUC,CND~^^^~Y~^^0^^^^^ -~09044~^~0900~^~Cherries, tart, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,TART,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09046~^~0900~^~Blackberries, canned, heavy syrup, solids and liquids~^~BLACKBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09048~^~0900~^~Blackberries, frozen, unsweetened~^~BLACKBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09050~^~0900~^~Blueberries, raw~^~BLUEBERRIES,RAW~^^^~Y~^~Stems and green or spoiled berries~^5^~Vaccinium spp.~^6.25^3.36^8.37^3.60 -~09052~^~0900~^~Blueberries, canned, heavy syrup, solids and liquids~^~BLUEBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09053~^~0900~^~Blueberries, wild, frozen (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,WILD,FRZ~^^^^^0^^6.25^^^ -~09054~^~0900~^~Blueberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09055~^~0900~^~Blueberries, frozen, sweetened~^~BLUEBERRIES,FRZ,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09056~^~0900~^~Boysenberries, canned, heavy syrup~^~BOYSENBERRIES,CND,HVY SYRUP~^^^^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.75 -~09057~^~0900~^~Boysenberries, frozen, unsweetened~^~BOYSENBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09059~^~0900~^~Breadfruit, raw~^~BREADFRUIT,RAW~^^^~Y~^~9% core, 13% skin~^22^~Artocarpus altilis~^6.25^3.36^8.37^3.60 -~09060~^~0900~^~Carambola, (starfruit), raw~^~CARAMBOLA,(STARFRUIT),RAW~^^^~Y~^~Seeds and stem end~^3^~Averrhoa carambola~^6.25^3.36^8.37^3.60 -~09061~^~0900~^~Carissa, (natal-plum), raw~^~CARISSA,(NATAL-PLUM),RAW~^^^^~7% seeds, 7% skin~^14^~Carissa macrocarpa~^6.25^3.36^8.37^3.60 -~09062~^~0900~^~Cherimoya, raw~^~CHERIMOYA,RAW~^^^^~Seeds, skin and core~^31^~Annona cherimola~^6.25^3.36^8.37^3.60 -~09063~^~0900~^~Cherries, sour, red, raw~^~CHERRIES,SOUR,RED,RAW~^^^~Y~^~Pits and stems~^10^~Prunus cerasus~^6.25^3.36^8.37^3.60 -~09064~^~0900~^~Cherries, sour, red, canned, water pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09065~^~0900~^~Cherries, sour, red, canned, light syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09066~^~0900~^~Cherries, sour, red, canned, heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09067~^~0900~^~Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09068~^~0900~^~Cherries, sour, red, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,SOUR,RED,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09070~^~0900~^~Cherries, sweet, raw~^~CHERRIES,SWEET,RAW~^^^~Y~^~Pits and stems~^8^~Prunus avium~^6.25^3.36^8.37^3.60 -~09071~^~0900~^~Cherries, sweet, canned, water pack, solids and liquids~^~CHERRIES,SWT,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.60 -~09072~^~0900~^~Cherries, sweet, canned, juice pack, solids and liquids~^~CHERRIES,SWT,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.70 -~09073~^~0900~^~Cherries, sweet, canned, light syrup pack, solids and liquids~^~CHERRIES,SWT,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.71 -~09074~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP PK,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09075~^~0900~^~Cherries, sweet, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^8^^6.25^3.36^8.37^3.78 -~09077~^~0900~^~Crabapples, raw~^~CRABAPPLES,RAW~^^^^~Core and stems~^8^~Malus spp.~^6.25^3.36^8.37^3.60 -~09078~^~0900~^~Cranberries, raw~^~CRANBERRIES,RAW~^^^~Y~^~Stems and spoiled berries~^2^~Vaccinium macrocarpon~^6.25^3.36^8.37^3.60 -~09079~^~0900~^~Cranberries, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CRANBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09081~^~0900~^~Cranberry sauce, canned, sweetened~^~CRANBERRY SAU,CND,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.84 -~09082~^~0900~^~Cranberry-orange relish, canned~^~CRANBERRY-ORANGE RELISH,CND~^^^^^0^^6.25^3.36^8.37^3.82 -~09083~^~0900~^~Currants, european black, raw~^~CURRANTS,EUROPEAN BLACK,RAW~^^^^~Stems~^2^~Ribes nigrum~^6.25^3.36^8.37^3.60 -~09084~^~0900~^~Currants, red and white, raw~^~CURRANTS,RED&WHITE,RAW~^^^~Y~^~Stems~^2^~Ribes rubrum~^6.25^3.36^8.37^3.60 -~09085~^~0900~^~Currants, zante, dried~^~CURRANTS,ZANTE,DRIED~^~raisin~^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09086~^~0900~^~Custard-apple, (bullock's-heart), raw~^~CUSTARD-APPLE,(BULLOCK'S-HEART),RAW~^^^^~Seeds and skin~^42^~Annona reticulata~^6.25^3.36^8.37^3.60 -~09087~^~0900~^~Dates, deglet noor~^~DATES,DEGLET NOOR~^^^~Y~^~Pits~^10^~Phoenix dactylifera~^6.25^3.36^8.37^3.60 -~09088~^~0900~^~Elderberries, raw~^~ELDERBERRIES,RAW~^^^^^0^~Sambucus spp.~^6.25^3.36^8.37^3.60 -~09089~^~0900~^~Figs, raw~^~FIGS,RAW~^^^~Y~^~Stems~^1^~Ficus carica~^6.25^3.36^8.37^3.60 -~09090~^~0900~^~Figs, canned, water pack, solids and liquids~^~FIGS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09091~^~0900~^~Figs, canned, light syrup pack, solids and liquids~^~FIGS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09092~^~0900~^~Figs, canned, heavy syrup pack, solids and liquids~^~FIGS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09093~^~0900~^~Figs, canned, extra heavy syrup pack, solids and liquids~^~FIGS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09094~^~0900~^~Figs, dried, uncooked~^~FIGS,DRIED,UNCOOKED~^^^~Y~^~Stems~^4^^6.25^3.36^8.37^3.60 -~09095~^~0900~^~Figs, dried, stewed~^~FIGS,DRIED,STEWED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09096~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids~^~FRUIT COCKTAIL,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09097~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids~^~FRUIT COCKTAIL,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09098~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09099~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,LT SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09100~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09101~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09102~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids~^~FRUIT SALAD,CND,H2O PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.60 -~09103~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids~^~FRUIT SALAD,CND,JUC PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.70 -~09104~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids~^~FRUIT SALAD,CND,LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09106~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT SALAD,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09107~^~0900~^~Gooseberries, raw~^~GOOSEBERRIES,RAW~^^^^^0^~Ribes spp.~^6.25^3.36^8.37^3.60 -~09109~^~0900~^~Gooseberries, canned, light syrup pack, solids and liquids~^~GOOSEBERRIES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09110~^~0900~^~Goji berries, dried~^~GOJI BERRIES,DRIED~^~wolfberries~^^^^0^~Lycium barbarum L.~^^^^ -~09111~^~0900~^~Grapefruit, raw, pink and red and white, all areas~^~GRAPEFRUIT,RAW,PINK&RED&WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^50^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09112~^~0900~^~Grapefruit, raw, pink and red, all areas~^~GRAPEFRUIT,RAW,PINK&RED,ALL AREAS~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09113~^~0900~^~Grapefruit, raw, pink and red, California and Arizona~^~GRAPEFRUIT,RAW,PINK&RED,CALIFORNIA&ARIZONA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09114~^~0900~^~Grapefruit, raw, pink and red, Florida~^~GRAPEFRUIT,RAW,PINK & RED,FLORIDA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09116~^~0900~^~Grapefruit, raw, white, all areas~^~GRAPEFRUIT,RAW,WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09117~^~0900~^~Grapefruit, raw, white, California~^~GRAPEFRUIT,RAW,WHITE,CALIFORNIA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09118~^~0900~^~Grapefruit, raw, white, Florida~^~GRAPEFRUIT,RAW,WHITE,FLORIDA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09119~^~0900~^~Grapefruit, sections, canned, water pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09120~^~0900~^~Grapefruit, sections, canned, juice pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09121~^~0900~^~Grapefruit, sections, canned, light syrup pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09123~^~0900~^~Grapefruit juice, white, canned or bottled, unsweetened~^~GRAPEFRUIT JUC,WHITE,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09124~^~0900~^~Grapefruit juice, white, canned, sweetened~^~GRAPEFRUIT JUC,WHITE,CND,SWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09125~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, undiluted~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09126~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, diluted with 3 volume water~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09127~^~0900~^~Grapefruit juice, pink or red, with added calcium~^~GRAPEFRUIT JUC,PINK OR RED,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09128~^~0900~^~Grapefruit juice, white, raw~^~GRAPEFRUIT JUC,WHITE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09129~^~0900~^~Grapes, muscadine, raw~^~Grapes, muscadine, raw~^^^^~Seeds~^4^~Vitis rotundifolia~^6.25^3.36^8.37^3.60 -~09130~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09131~^~0900~^~Grapes, american type (slip skin), raw~^~GRAPES,AMERICAN TYPE (SLIP SKN),RAW~^^^~Y~^~6% seeds, 34% skin, 2% stems~^42^~Vitis spp.~^6.25^3.36^8.37^3.60 -~09132~^~0900~^~Grapes, red or green (European type, such as Thompson seedless), raw~^~GRAPES,RED OR GRN (EURO TYPE,SUCH AS THOMPSON SEEDLESS),RAW~^^^~Y~^~Stems~^4^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09133~^~0900~^~Grapes, canned, thompson seedless, water pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09134~^~0900~^~Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09135~^~0900~^~Grape juice, canned or bottled, unsweetened, without added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09138~^~0900~^~Groundcherries, (cape-gooseberries or poha), raw~^~GROUNDCHERRIES,(CAPE-GOOSEBERRIES OR POHA),RAW~^^^^~Husks~^6^~Physalis spp.~^6.25^3.36^8.37^3.60 -~09139~^~0900~^~Guavas, common, raw~^~GUAVAS,COMMON,RAW~^^^~Y~^~Skin~^22^~Psidium guajava~^6.25^3.36^8.37^3.60 -~09140~^~0900~^~Guavas, strawberry, raw~^~GUAVAS,STRAWBERRY,RAW~^^^^~Seeds, stem, and blossom end~^15^~Psidium cattleianum~^6.25^3.36^8.37^3.60 -~09143~^~0900~^~Guava sauce, cooked~^~GUAVA SAUCE,COOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09144~^~0900~^~Jackfruit, raw~^~JACKFRUIT,RAW~^^^^~Seeds and skin~^72^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.60 -~09145~^~0900~^~Java-plum, (jambolan), raw~^~JAVA-PLUM,(JAMBOLAN),RAW~^^^^~Seed~^19^~Syzygium cumini~^6.25^3.36^8.37^3.60 -~09146~^~0900~^~Jujube, raw~^~JUJUBE,RAW~^^^^~Seeds~^7^~Ziziphus jujuba~^6.25^3.36^8.37^3.60 -~09147~^~0900~^~Jujube, Chinese, fresh, dried~^~JUJUBE,CHINESE,FRSH,DRIED~^^^^~Seeds~^11^^6.25^3.36^8.37^3.60 -~09148~^~0900~^~Kiwifruit, green, raw~^~KIWIFRUIT,GRN,RAW~^~Chinese gooseberry~^^~Y~^~Skin~^24^~Actinidia deliciosa~^6.25^3.36^8.37^3.60 -~09149~^~0900~^~Kumquats, raw~^~KUMQUATS,RAW~^^^~Y~^~Seeds~^7^~Fortunella spp.~^6.25^3.36^8.37^3.60 -~09150~^~0900~^~Lemons, raw, without peel~^~LEMONS,RAW,WITHOUT PEEL~^^^~Y~^~45% peel, 2% seeds~^47^~Citrus limon~^6.25^3.36^8.37^2.48 -~09152~^~0900~^~Lemon juice, raw~^~LEMON JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09153~^~0900~^~Lemon juice from concentrate, canned or bottled~^~LEMON JUC FROM CONC,CND OR BTLD~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09156~^~0900~^~Lemon peel, raw~^~LEMON PEEL,RAW~^^^~Y~^^0^^6.25^^^ -~09159~^~0900~^~Limes, raw~^~LIMES,RAW~^^^~Y~^~Peel and seeds~^16^~Citrus latifolia~^6.25^3.36^8.37^2.48 -~09160~^~0900~^~Lime juice, raw~^~LIME JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09161~^~0900~^~Lime juice, canned or bottled, unsweetened~^~LIME JUC,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09163~^~0900~^~Blueberries, dried, sweetened~^~BLUEBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09164~^~0900~^~Litchis, raw~^~LITCHIS,RAW~^~lychee~^^~Y~^~Shell and seeds~^40^~Litchi chinensis~^6.25^3.36^8.37^3.60 -~09165~^~0900~^~Litchis, dried~^~LITCHIS,DRIED~^~lychee~^^~Y~^~Shell and seeds~^46^^6.25^3.36^8.37^3.60 -~09167~^~0900~^~Loganberries, frozen~^~LOGANBERRIES,FROZEN~^^^~Y~^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.60 -~09172~^~0900~^~Longans, raw~^~LONGANS,RAW~^^^^~Shell and seeds~^47^~Dimocarpus longan~^6.25^3.36^8.37^3.60 -~09173~^~0900~^~Longans, dried~^~LONGANS,DRIED~^^^^~Shell and seeds~^64^^6.25^3.36^8.37^3.60 -~09174~^~0900~^~Loquats, raw~^~LOQUATS,RAW~^^^^~Seeds and skin~^35^~Eriobotrya japonica~^6.25^3.36^8.37^3.60 -~09175~^~0900~^~Mammy-apple, (mamey), raw~^~MAMMY-APPLE,(MAMEY),RAW~^^^^~Seeds and skin~^40^~Mammea americana~^6.25^3.36^8.37^3.60 -~09176~^~0900~^~Mangos, raw~^~MANGOS,RAW~^^^~Y~^~Seeds and skin~^29^~Mangifera indica~^6.25^3.36^8.37^3.60 -~09177~^~0900~^~Mangosteen, canned, syrup pack~^~MANGOSTEEN,CND,SYRUP PK~^^^^^0^~Garcinia mangostana~^6.25^3.36^8.37^3.75 -~09178~^~0900~^~Mango, dried, sweetened~^~MANGO,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09181~^~0900~^~Melons, cantaloupe, raw~^~MELONS,CANTALOUPE,RAW~^^^~Y~^~9% cavity contents, 1% cutting loss, 39% rind~^49^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09183~^~0900~^~Melons, casaba, raw~^~MELONS,CASABA,RAW~^^^~Y~^~11% cavity contents, 29% rind~^40^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09184~^~0900~^~Melons, honeydew, raw~^~MELONS,HONEYDEW,RAW~^^^~Y~^~5% cavity contents, rind 49%~^54^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09185~^~0900~^~Melon balls, frozen~^~MELON BALLS,FROZEN~^^^^^0^^6.25^3.36^8.37^3.60 -~09190~^~0900~^~Mulberries, raw~^~MULBERRIES,RAW~^^^~Y~^^0^~Morus nigra~^6.25^3.36^8.37^3.60 -~09191~^~0900~^~Nectarines, raw~^~NECTARINES,RAW~^^^~Y~^~Pit~^9^~Prunus persica var. nucipersica~^6.25^3.36^8.37^3.60 -~09192~^~0900~^~Oheloberries, raw~^~OHELOBERRIES,RAW~^^^^^0^~Vaccinium reticulatum~^6.25^3.36^8.37^3.60 -~09193~^~0900~^~Olives, ripe, canned (small-extra large)~^~OLIVES,RIPE,CND (SMALL-EXTRA LRG)~^^^~Y~^^0^~Olea europaea~^6.25^3.36^8.37^3.60 -~09194~^~0900~^~Olives, ripe, canned (jumbo-super colossal)~^~OLIVES,RIPE,CND (JUMBO-SUPER COLOSSAL)~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09195~^~0900~^~Olives, pickled, canned or bottled, green~^~OLIVES,PICKLED,CND OR BTLD,GRN~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09200~^~0900~^~Oranges, raw, all commercial varieties~^~ORANGES,RAW,ALL COMM VAR~^^^~Y~^~Peel and seeds~^27^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09201~^~0900~^~Oranges, raw, California, valencias~^~ORANGES,RAW,CALIFORNIA,VALENCIAS~^^^^~Peel and seeds~^25^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09202~^~0900~^~Oranges, raw, navels (Includes foods for USDA's Food Distribution Program)~^~ORANGES,RAW,NAVELS~^^^^~Peel and navel~^32^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09203~^~0900~^~Oranges, raw, Florida~^~ORANGES,RAW,FLORIDA~^^^^~Peel and seeds~^26^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09205~^~0900~^~Oranges, raw, with peel~^~ORANGES,RAW,WITH PEEL~^^^^~Seeds~^1^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09206~^~0900~^~Orange juice, raw (Includes foods for USDA's Food Distribution Program)~^~ORANGE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09207~^~0900~^~Orange juice, canned, unsweetened~^~ORANGE JUC,CND,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09209~^~0900~^~Orange juice, chilled, includes from concentrate~^~ORANGE JUC,CHILLED,INCL FROM CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09210~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamin D~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA & VITAMIN D~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09211~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09212~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O,W/ ADDED CA~^^^^^0^^^^^ -~09213~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09214~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09215~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09216~^~0900~^~Orange peel, raw~^~ORANGE PEEL,RAW~^^^^^0^^6.25^3.36^8.37^3.60 -~09217~^~0900~^~Orange-grapefruit juice, canned or bottled, unsweetened~^~ORANGE-GRAPEFRUIT JUC,CND OR BTLD,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09218~^~0900~^~Tangerines, (mandarin oranges), raw~^~TANGERINES,(MANDARIN ORANGES),RAW~^^^~Y~^~Peel and seeds~^26^~Citrus reticulata~^6.25^3.36^8.37^3.60 -~09219~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09220~^~0900~^~Tangerines, (mandarin oranges), canned, light syrup pack~^~TANGERINES,(MANDARIN ORANGES),CND,LT SYRUP PK~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09221~^~0900~^~Tangerine juice, raw~^~TANGERINE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09226~^~0900~^~Papayas, raw~^~PAPAYAS,RAW~^^^~Y~^~Seeds and skin~^38^~Carica papaya~^6.25^3.36^8.37^3.60 -~09228~^~0900~^~Papaya, canned, heavy syrup, drained~^~PAPAYA,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09229~^~0900~^~Papaya nectar, canned~^~PAPAYA NECTAR,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09231~^~0900~^~Passion-fruit, (granadilla), purple, raw~^~PASSION-FRUIT,(GRANADILLA),PURPLE,RAW~^^^~Y~^~Shell~^48^~Passiflora edulis~^6.25^3.36^8.37^3.60 -~09232~^~0900~^~Passion-fruit juice, purple, raw~^~PASSION-FRUIT JUC,PURPLE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09233~^~0900~^~Passion-fruit juice, yellow, raw~^~PASSION-FRUIT JUC,YEL,RAW~^^^~Y~^^0^~Passiflora edulis f. flavicarpa~^6.25^3.36^8.37^3.92 -~09236~^~0900~^~Peaches, yellow, raw~^~PEACHES,YEL,RAW~^^^~Y~^~Pit~^4^~Prunus persica~^6.25^3.36^8.37^3.60 -~09237~^~0900~^~Peaches, canned, water pack, solids and liquids~^~PEACHES,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09238~^~0900~^~Peaches, canned, juice pack, solids and liquids~^~PEACHES,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09239~^~0900~^~Peaches, canned, extra light syrup, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEACHES,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09240~^~0900~^~Peaches, canned, light syrup pack, solids and liquids~^~PEACHES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09241~^~0900~^~Peaches, canned, heavy syrup pack, solids and liquids~^~PEACHES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09242~^~0900~^~Peaches, canned, extra heavy syrup pack, solids and liquids~^~PEACHES,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09243~^~0900~^~Peaches, spiced, canned, heavy syrup pack, solids and liquids~^~PEACHES,SPICED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^4^^6.25^3.36^8.37^3.75 -~09244~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, uncooked~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09245~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, stewed~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09246~^~0900~^~Peaches, dried, sulfured, uncooked~^~PEACHES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09247~^~0900~^~Peaches, dried, sulfured, stewed, without added sugar~^~PEACHES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09248~^~0900~^~Peaches, dried, sulfured, stewed, with added sugar~^~PEACHES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09250~^~0900~^~Peaches, frozen, sliced, sweetened~^~PEACHES,FRZ,SLICED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09251~^~0900~^~Peach nectar, canned, with sucralose, without added ascorbic acid~^~PEACH NECTAR,CND,W/ SUCRALOSE,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.79 -~09252~^~0900~^~Pears, raw~^~PEARS,RAW~^^^~Y~^~Stem, core and seeds~^10^~Pyrus communis~^6.25^3.36^8.37^3.60 -~09253~^~0900~^~Pears, canned, water pack, solids and liquids~^~PEARS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09254~^~0900~^~Pears, canned, juice pack, solids and liquids~^~PEARS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09255~^~0900~^~Pears, canned, extra light syrup pack, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEARS,CND,EX LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09256~^~0900~^~Pears, canned, light syrup pack, solids and liquids~^~PEARS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09257~^~0900~^~Pears, canned, heavy syrup pack, solids and liquids~^~PEARS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09258~^~0900~^~Pears, canned, extra heavy syrup pack, solids and liquids~^~PEARS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09259~^~0900~^~Pears, dried, sulfured, uncooked~^~PEARS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09260~^~0900~^~Pears, dried, sulfured, stewed, without added sugar~^~PEARS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09261~^~0900~^~Pears, dried, sulfured, stewed, with added sugar~^~PEARS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09262~^~0900~^~Pear nectar, canned, without added ascorbic acid~^~PEAR NECTAR,CND,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09263~^~0900~^~Persimmons, japanese, raw~^~PERSIMMONS,JAPANESE,RAW~^^^~Y~^~2% calyx, 14% skin~^16^~Diospyros kaki~^6.25^3.36^8.37^3.60 -~09264~^~0900~^~Persimmons, japanese, dried~^~PERSIMMONS,JAPANESE,DRIED~^^^^~Stems~^8^^6.25^3.36^8.37^3.60 -~09265~^~0900~^~Persimmons, native, raw~^~PERSIMMONS,NATIVE,RAW~^^^^~2% calyx, 16% seeds~^18^~Diospyros virginiana~^6.25^3.36^8.37^3.60 -~09266~^~0900~^~Pineapple, raw, all varieties~^~PINEAPPLE,RAW,ALL VAR~^^^~Y~^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^6.25^3.36^8.37^3.60 -~09267~^~0900~^~Pineapple, canned, water pack, solids and liquids~^~PINEAPPLE,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09268~^~0900~^~Pineapple, canned, juice pack, solids and liquids~^~PINEAPPLE,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09269~^~0900~^~Pineapple, canned, light syrup pack, solids and liquids~^~PINEAPPLE,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09270~^~0900~^~Pineapple, canned, heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09271~^~0900~^~Pineapple, canned, extra heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09272~^~0900~^~Pineapple, frozen, chunks, sweetened~^~PINEAPPLE,FRZ,CHUNKS,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09273~^~0900~^~Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09274~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, undiluted~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,UNDIL~^^^^^0^^6.25^3.36^8.37^3.92 -~09275~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^^^0^^6.25^3.36^8.37^3.92 -~09276~^~0900~^~Pitanga, (surinam-cherry), raw~^~PITANGA,(SURINAM-CHERRY),RAW~^^^^~Seed, stem, and blossom end~^12^~Eugenia uniflora~^6.25^3.36^8.37^3.60 -~09277~^~0900~^~Plantains, yellow, raw~^~PLANTAINS,YEL,RAW~^^^~Y~^~Skin and stems~^31^~Musa X paradisiaca~^6.25^3.36^8.37^3.60 -~09278~^~0900~^~Plantains, yellow, baked~^~PLANTAINS,YEL,BKD~^^^~Y~^~No refuse~^0^^6.25^3.36^8.37^3.60 -~09279~^~0900~^~Plums, raw~^~PLUMS,RAW~^^^~Y~^~Pits~^6^~Prunus spp.~^6.25^3.36^8.37^3.60 -~09281~^~0900~^~Plums, canned, purple, water pack, solids and liquids~^~PLUMS,CND,PURPLE,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.60 -~09282~^~0900~^~Plums, canned, purple, juice pack, solids and liquids~^~PLUMS,CND,PURPLE,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.70 -~09283~^~0900~^~Plums, canned, purple, light syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.71 -~09284~^~0900~^~Plums, canned, purple, heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.75 -~09285~^~0900~^~Plums, canned, purple, extra heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^5^^6.25^3.36^8.37^3.78 -~09286~^~0900~^~Pomegranates, raw~^~POMEGRANATES,RAW~^^^~Y~^~Skin and membrane~^44^~Punica granatum~^6.25^3.36^8.37^3.60 -~09287~^~0900~^~Prickly pears, raw~^~PRICKLY PEARS,RAW~^^^^~Seeds, skin, and bud end~^25^~Opuntia spp.~^6.25^3.36^8.37^3.60 -~09288~^~0900~^~Prunes, canned, heavy syrup pack, solids and liquids~^~PRUNES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^12^~Prunus domestica~^6.25^3.36^8.37^3.75 -~09289~^~0900~^~Prunes, dehydrated (low-moisture), uncooked~^~PRUNES,DEHYD (LOW-MOISTURE),UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09290~^~0900~^~Prunes, dehydrated (low-moisture), stewed~^~PRUNES,DEHYD (LOW-MOISTURE),STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09291~^~0900~^~Plums, dried (prunes), uncooked~^~PLUMS,DRIED (PRUNES),UNCKD~^^^~Y~^~Pits~^13^^6.25^3.36^8.37^3.60 -~09292~^~0900~^~Plums, dried (prunes), stewed, without added sugar~^~PLUMS,DRIED (PRUNES),STWD,WO/ ADDED SUGAR~^^^~Y~^~Pits~^15^^6.25^3.36^8.37^3.60 -~09293~^~0900~^~Plums, dried (prunes), stewed, with added sugar~^~PLUMS,DRIED (PRUNES),STWD,W/ ADDED SUGAR~^^^^~Pits~^15^^6.25^3.36^8.37^3.60 -~09294~^~0900~^~Prune juice, canned~^~PRUNE JUICE,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09295~^~0900~^~Pummelo, raw~^~PUMMELO,RAW~^^^^~Seeds, skin, and membrane~^44^~Citrus maxima~^6.25^3.36^8.37^3.60 -~09296~^~0900~^~Quinces, raw~^~QUINCES,RAW~^^^^~Core, seeds, and parings~^39^~Cydonia oblonga~^6.25^3.36^8.37^3.60 -~09297~^~0900~^~Raisins, golden, seedless~^~RAISINS,GOLDEN,SEEDLESS~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09298~^~0900~^~Raisins, dark, seedless (Includes foods for USDA's Food Distribution Program)~^~RAISINS,DK,SEEDLESS (INCLUDES FOODS FOR USDAS FD~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09299~^~0900~^~Raisins, seeded~^~RAISINS,SEEDED~^^^^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09301~^~0900~^~Rambutan, canned, syrup pack~^~RAMBUTAN,CND,SYRUP PK~^^^^^0^~Nephelium lappaceum~^6.25^3.36^8.37^3.75 -~09302~^~0900~^~Raspberries, raw~^~RASPBERRIES,RAW~^^^~Y~^~Caps, stems, and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09304~^~0900~^~Raspberries, canned, red, heavy syrup pack, solids and liquids~^~RASPBERRIES,CND,RED,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09306~^~0900~^~Raspberries, frozen, red, sweetened~^~RASPBERRIES,FRZ,RED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09307~^~0900~^~Rhubarb, raw~^~RHUBARB,RAW~^^^~Y~^~19% ends, 6% leaves~^25^~Rheum rhabarbarum~^6.25^3.36^8.37^3.60 -~09309~^~0900~^~Rhubarb, frozen, uncooked~^~RHUBARB,FROZEN,UNCOOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09310~^~0900~^~Rhubarb, frozen, cooked, with sugar~^~RHUBARB,FRZ,CKD,W/SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09311~^~0900~^~Roselle, raw~^~ROSELLE,RAW~^^^^~Seed pods and stem~^39^~Hibiscus sabdariffa~^6.25^3.36^8.37^3.60 -~09312~^~0900~^~Rose-apples, raw~^~ROSE-APPLES,RAW~^^^^~Caps and pits~^33^~Syzygium jambos~^6.25^3.36^8.37^3.60 -~09313~^~0900~^~Sapodilla, raw~^~SAPODILLA,RAW~^^^^~Seeds and skin~^20^~Manilkara zapota~^6.25^3.36^8.37^3.60 -~09314~^~0900~^~Sapote, mamey, raw~^~SAPOTE,MAMEY,RAW~^~mamey colorado, marmalade plum~^^^~Seeds and skin~^31^~Pouteria sapota~^6.25^3.36^8.37^3.60 -~09315~^~0900~^~Soursop, raw~^~SOURSOP,RAW~^^^~Y~^~Seeds and skin~^33^~Annona muricata~^6.25^3.36^8.37^3.60 -~09316~^~0900~^~Strawberries, raw~^~STRAWBERRIES,RAW~^^^~Y~^~Caps and stems~^6^~Fragaria X ananassa~^6.25^3.36^8.37^3.60 -~09317~^~0900~^~Strawberries, canned, heavy syrup pack, solids and liquids~^~STRAWBERRIES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09318~^~0900~^~Strawberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~STRAWBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09320~^~0900~^~Strawberries, frozen, sweetened, sliced~^~STRAWBERRIES,FRZ,SWTND,SLICED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09321~^~0900~^~Sugar-apples, (sweetsop), raw~^~SUGAR-APPLES,(SWEETSOP),RAW~^^^^~Seeds and skin~^45^~Annona squamosa~^6.25^3.36^8.37^3.60 -~09322~^~0900~^~Tamarinds, raw~^~TAMARINDS,RAW~^^^~Y~^~Pods and seeds~^66^~Tamarindus indica~^6.25^3.36^8.37^3.60 -~09325~^~0900~^~Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids~^~FRUIT SALAD,TROPICAL,CND,HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.75 -~09326~^~0900~^~Watermelon, raw~^~WATERMELON,RAW~^^^~Y~^~Rind, seeds, and cutting loss~^48^~Citrullus lanatus~^6.25^3.36^8.37^3.60 -~09328~^~0900~^~Maraschino cherries, canned, drained~^~MARASCHINO CHERRIES,CND,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~09334~^~0900~^~Feijoa, raw~^~FEIJOA,RAW~^^^^~Skin~^43^~Acca sellowiana~^6.25^3.36^8.37^3.60 -~09340~^~0900~^~Pears, asian, raw~^~PEARS,ASIAN,RAW~^^^~Y~^~Core and stem~^9^~Pyrus pyrifolia (Burman f.) Nakai~^6.25^3.36^8.37^3.60 -~09351~^~0900~^~Fruit cocktail, canned, heavy syrup, drained~^~FRUIT COCKTAIL,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09352~^~0900~^~Blueberries, canned, light syrup, drained~^~BLUEBERRIES,CND,LT SYRUP,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09353~^~0900~^~Blueberries, wild, canned, heavy syrup, drained~^~BLUEBERRIES,WILD,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09354~^~0900~^~Pineapple, canned, juice pack, drained~^~PINEAPPLE,CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09357~^~0900~^~Apricots, canned, heavy syrup, drained~^~APRICOTS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09362~^~0900~^~Cherries, sour, canned, water pack, drained~^~CHERRIES,SOUR,CND,H2O PK,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09367~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup, drained~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09370~^~0900~^~Peaches, canned, heavy syrup, drained~^~PEACHES,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09374~^~0900~^~Pears, canned, heavy syrup, drained~^~PEARS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09379~^~0900~^~Plums, canned, heavy syrup, drained~^~PLUMS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09383~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack, drained~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09400~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09401~^~0900~^~Applesauce, canned, unsweetened, with added ascorbic acid~^~APPLESAUCE,CND,UNSWTND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.60 -~09402~^~0900~^~Applesauce, canned, sweetened, with salt~^~APPLESAUCE,CND,SWTND,W/SALT~^^^^^0^^6.25^3.36^8.37^3.75 -~09404~^~0900~^~Grapefruit juice, pink, raw~^~GRAPEFRUIT JUICE,PINK,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09407~^~0900~^~Peach nectar, canned, with added ascorbic acid~^~PEACH NECTAR,CND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.79 -~09408~^~0900~^~Pear nectar, canned, with added ascorbic acid~^~PEAR NECTAR,CND,W/ VIT C~^~vitamin C~^^^^0^^6.25^3.36^8.37^3.75 -~09409~^~0900~^~Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09410~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09411~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09412~^~0900~^~Pears, raw, bartlett (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BARTLETT~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09413~^~0900~^~Pears, raw, red anjou~^~PEARS,RAW,RED ANJOU~^^^^~Stem, core and seeds~^11^~Pyrus communis~^^^^ -~09414~^~0900~^~Pears, raw, bosc (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BOSC~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09415~^~0900~^~Pears, raw, green anjou (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,GRN ANJOU~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09416~^~0900~^~Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY~^~GRAPEFRUIT JUC,WHITE,BTLD,UNSWTND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.92 -~09420~^~0900~^~Jackfruit, canned, syrup pack~^~JACKFRUIT,CND,SYRUP PK~^^^^^0^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.75 -~09421~^~0900~^~Dates, medjool~^~DATES,MEDJOOL~^^^^~Pits~^8^~Phoenix dactylifera~^^3.36^8.37^3.60 -~09422~^~0900~^~Durian, raw or frozen~^~DURIAN,RAW OR FROZEN~^^^^~Shell and seeds (for raw fruit)~^68^~Durio zibethinus~^6.25^3.36^8.37^3.60 -~09423~^~0900~^~Prune puree~^~PRUNE PUREE~^^^^^0^^^^^ -~09426~^~0900~^~Candied fruit~^~CANDIED FRUIT~^^^~Y~^^0^^^^^ -~09427~^~0900~^~Abiyuch, raw~^~ABIYUCH,RAW~^~garlic pear~^^^^^~Crateva religiosa~^6.25^3.36^8.37^3.60 -~09428~^~0900~^~Rowal, raw~^~ROWAL,RAW~^^^^^^~Pangium edule~^6.25^3.36^8.37^3.60 -~09429~^~0900~^~Pineapple, raw, traditional varieties~^~PINEAPPLE,RAW,TRADITIONAL VAR~^^^^~8% core, 13% crown, 22% parings~^42^~Ananas comosus~^^3.36^8.37^3.60 -~09430~^~0900~^~Pineapple, raw, extra sweet variety~^~PINEAPPLE,RAW,EX SWT VAR~^^^^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^^3.36^8.37^3.60 -~09433~^~0900~^~Clementines, raw~^~CLEMENTINES,RAW~^^^^~Peel and seeds~^23^~Citrus clementina hort. ex Tanaka~^^3.36^8.37^3.60 -~09434~^~0900~^~Guanabana nectar, canned~^~GUANABANA NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09435~^~0900~^~Guava nectar, canned, with added ascorbic acid~^~GUAVA NECTAR,CND,W/ ADDED VIT C~^^^^^0^^6.25^3.36^8.37^3.80 -~09436~^~0900~^~Mango nectar, canned~^~MANGO NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09437~^~0900~^~Tamarind nectar, canned~^~TAMARIND NECTAR,CND~^^^^^0^^6.25^3.36^8.37^3.80 -~09442~^~0900~^~Pomegranate juice, bottled~^~POMEGRANATE JUC,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09443~^~0900~^~Juice, apple and grape blend, with added ascorbic acid~^~JUICE,APPL & GRAPE BLEND,W/ ADDED VIT C~^^^~Y~^^0^^^3.36^8.37^3.92 -~09444~^~0900~^~Juice, apple, grape and pear blend, with added ascorbic acid and calcium~^~JUICE,APPL,GRAPE & PEAR BLEND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09446~^~0900~^~Plantains, green, fried~^~PLANTAINS,GRN,FRIED~^~tostones de platano~^^^^0^^6.25^4.00^9.00^4.00 -~09447~^~0900~^~Plantains, yellow, fried, Latino restaurant~^~PLANTAINS,YEL,FRIED,LATINO RESTAURANT~^~platanos maduros~^^^^0^^6.25^4.00^9.00^4.00 -~09448~^~0900~^~Nance, canned, syrup, drained~^~NANCE,CND,SYRUP,DRND~^~yellow cherries~^^^^0^^6.25^3.36^8.37^3.60 -~09449~^~0900~^~Nance, frozen, unsweetened~^~NANCE,FRZ,UNSWTND~^~yellow cherries~^^^~Pits~^27^~Byrsonima crassifolia (L.) Kunth~^6.25^3.36^8.37^3.60 -~09450~^~0900~^~Naranjilla (lulo) pulp, frozen, unsweetened~^~NARANJILLA (LULO) PULP,FRZ,UNSWTND~^^^^^0^~Solanum quitoense Lam.~^6.25^3.36^8.37^3.60 -~09451~^~0900~^~Horned melon (Kiwano)~^~HORNED MELON (KIWANO)~^~African horned melon~^^^~Rind~^36^~Cucumis metulifer~^6.25^3.36^8.37^3.60 -~09452~^~0900~^~Orange Pineapple Juice Blend~^~ORANGE PNAPPL JUC BLEND~^^^~Y~^^0^^6.25^^^ -~09500~^~0900~^~Apples, raw, red delicious, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,RED DELICIOUS,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09501~^~0900~^~Apples, raw, golden delicious, with skin~^~APPLES,RAW,GOLDEN DELICIOUS,W/ SKN~^^^^~Core and stem~^10^~Malus domestica~^^^^ -~09502~^~0900~^~Apples, raw, granny smith, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GRANNY SMITH,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09503~^~0900~^~Apples, raw, gala, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GALA,W/ SKN~^^^^~Core and stem~^9^~Malus domestica~^^^^ -~09504~^~0900~^~Apples, raw, fuji, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,FUJI,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09506~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamins A, D, E~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADD CA & VITAMINS A,D,E~^^^^^0^^6.25^3.36^8.37^3.92 -~09507~^~0900~^~Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO~^~FRUIT JUC SMOOTHIE,NAKED JUC,MIGHTY MANGO~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09508~^~0900~^~Fruit juice smoothie, NAKED JUICE, GREEN MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,GRN MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09510~^~0900~^~Pineapple juice, canned, not from concentrate, unsweetened, with added vitamins A, C and E~^~PINEAPPLE JUC,CND,NOT FROM CONC,UNSWTND,W/ ADD VIT A,C & E~^^~Dole Food Company~^^^0^^6.25^3.36^8.37^3.92 -~09511~^~0900~^~Fruit juice smoothie, NAKED JUICE, BLUE MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,BLUE MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09512~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid and calcium~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^^^ -~09513~^~0900~^~Fruit juice smoothie, ODWALLA, ORIGINAL SUPERFOOD~^~FRUIT JUC SMOOTHIE,ODWALLA,ORIGINAL SUPERFOOD~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09514~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, BERRY BOOST~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,BERRY BOOST~^^~Wm. Bolthouse Farms, Inc.~^^^0^^6.25^^^ -~09515~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, GREEN GOODNESS~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,GRN GOODNESS~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09516~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,STRAWBERRY BANANA~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09517~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid, calcium, and potassium~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C,CA,& K~^^^~Y~^^0^^^^^ -~09518~^~0900~^~Raspberries, frozen, red, unsweetened~^~RASPBERRIES,FRZ,RED,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.60 -~09519~^~0900~^~Guava nectar, with sucralose, canned~^~GUAVA NECTAR,W/ SUCRALOSE,CND~^^^~Y~^^0^^^^^ -~09520~^~0900~^~Kiwifruit, ZESPRI SunGold, raw~^~KIWIFRUIT,ZESPRI SUNGOLD,RAW~^~Gold3~^^^~Skin~^28^~Actinidia chinensis Zesy002 (Gold3)~^^3.36^8.37^3.60 -~09522~^~0900~^~Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium~^~CRANBERRY JUC BLEND,100% JUC,BTLD,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09523~^~0900~^~Lemon juice from concentrate, bottled, CONCORD~^~LEMON JUC FROM CONC,BTLD,CONCORD~^^~Concord Foods~^^^0^^^^^ -~09524~^~0900~^~Lemon juice from concentrate, bottled, REAL LEMON~^~LEMON JUC FROM CONC,BTLD,REAL LEMON~^^^^^0^^^3.36^8.37^2.70 -~09525~^~0900~^~Cranberry sauce, whole, canned, OCEAN SPRAY~^~CRANBERRY SAU,WHL,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09526~^~0900~^~Cranberry sauce, jellied, canned, OCEAN SPRAY~^~CRANBERRY SAU,JELLIED,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09528~^~0900~^~Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C~^~RUBY RED GRPFRT JUC BLND (GRPFRT,GRP,APL),OCEAN SPRY,W/VIT C~^^~Ocean Spray Cranberries, Inc.~^^^0^^^3.36^8.37^3.92 -~09530~^~0900~^~Fruit juice smoothie, ODWALLA, strawberry banana~^~FRUIT JUC SMOOTHIE,ODWALLA,STRAWBERRY BANANA~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09531~^~0900~^~Fruit juice smoothie, NAKED JUICE, strawberry banana~^~FRUIT JUC SMOOTHIE,NAKED JUC,STRAWBERRY BANANA~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09542~^~0900~^~Plantains, green, raw~^~PLANTAINS,GRN,RAW~^^^^~Skin and stems~^39^~Musa X paradisiaca~^6.25^2.78^8.37^4.03 -~09543~^~0900~^~Plantains, green, boiled~^~PLANTAINS,GRN,BLD~^^^^~No refuse~^0^^^2.78^8.37^4.03 -~09544~^~0900~^~Baobab powder~^~BAOBAB PDR~^^^^^0^^^3.36^8.37^3.60 -~09546~^~0900~^~Cherry juice, tart~^~CHERRY JUC,TART~^^^^^0^^6.25^3.36^8.37^3.92 -~09552~^~0900~^~Raspberries, puree, seedless~^~RASPBERRIES,PUREE,SEEDLESS~^^^^^0^^^3.36^8.37^3.75 -~09553~^~0900~^~Raspberries, puree, with seeds~^~RASPBERRIES,PUREE,W/ SEEDS~^^^^^0^^^3.36^8.37^3.75 -~09554~^~0900~^~Raspberry juice concentrate~^~RASPBERRY JUC CONC~^^^^^0^^^3.36^8.37^3.75 -~10000~^~1000~^~Pork, fresh, composite of separable fat, with added solution, cooked~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,CKD~^^^^^0^^^^^ -~10001~^~1000~^~Pork, fresh, carcass, separable lean and fat, raw~^~PORK,FRSH,CARCASS,LN&FAT,RAW~^^^^~Bone and skin~^18^~Suidae domesticus~^6.25^4.27^9.02^3.87 -~10002~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,SHLDR),LN,RAW~^^^~Y~^~Bone and skin 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10003~^~1000~^~Pork, fresh, composite of trimmed leg, loin, shoulder, and spareribs, (includes cuts to be cured), separable lean and fat, raw~^~PORK,FRSH,COMP OF LEG,LOIN,SHLDR,& SPARERIBS,LN & FAT,RAW~^^^~Y~^~Bone and skin~^24^^6.25^4.27^9.02^3.87 -~10004~^~1000~^~Pork, fresh, backfat, raw~^~PORK,FRESH,BACKFAT,RAW~^^^~Y~^~Skin~^11^^6.25^4.27^9.02^3.87 -~10005~^~1000~^~Pork, fresh, belly, raw~^~PORK,FRSH,BELLY,RAW~^^^^~Skin~^7^^6.25^4.27^9.02^3.87 -~10006~^~1000~^~Pork, fresh, separable fat, raw~^~PORK,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10007~^~1000~^~Pork, fresh, separable fat, cooked~^~PORK,FRSH,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10008~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,RAW~^^^^~Bone and skin~^17^^6.25^4.27^9.02^3.87 -~10009~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^20^^6.25^4.27^9.02^3.87 -~10010~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, raw~^~PORK,FRSH,LEG (HAM),WHL,LN,RAW~^^^~Y~^~Bone and skin 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~10011~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 20%, separable fat 12%~^32^^6.25^4.27^9.02^3.87 -~10012~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,RAW~^^^^~Connective tissue 6%, Bone 9%, Skin 2%~^17^^6.25^4.27^9.02^3.87 -~10013~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 7%, Bone 9%, Skin 2%~^18^^6.25^4.27^9.02^3.87 -~10014~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, raw (Includes foods for USDA's Food Distribution Program)~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,RAW~^^^^~Connective tissue 6%, Bone 9%, Separable fat 10%~^25^^6.25^4.27^9.02^3.87 -~10015~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 9%, Separable fat 7%~^23^^6.25^4.27^9.02^3.87 -~10016~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,RAW~^^^^~Connective tissue 9%, Bone 13%, Skin 6%~^28^^6.25^4.27^9.02^3.87 -~10017~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Skin 4%~^22^^6.25^4.27^9.02^3.87 -~10018~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,RAW~^^^^~Connective tissue 9%, Bone 13%, Separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10019~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Separable fat 9%~^27^^6.25^4.27^9.02^3.87 -~10020~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, raw~^~PORK,FRSH,LOIN,WHL,LN&FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10021~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10022~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10023~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10024~^~1000~^~Pork, fresh, loin, whole, separable lean only, raw~^~PORK,FRSH,LOIN,WHL,LN,RAW~^^^~Y~^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10025~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRSD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10026~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRLD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10027~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN,CKD,RSTD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10028~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^^^^~Bone 18%, Connective tissue 8%~^26^^6.25^4.27^9.02^3.87 -~10029~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 21% Connective tissue 6%~^27^^6.25^4.27^9.02^3.87 -~10030~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%~^27^^6.25^4.27^9.02^3.87 -~10031~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 18%, Connective tissue 5%,~^20^^6.25^4.27^9.02^3.87 -~10032~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN,RAW~^^^^~Bone 18%, Connective tissue 8%, Separable fat 10%,~^36^^6.25^4.27^9.02^3.87 -~10033~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 21%, Connective tissue 6%, Separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10034~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10035~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 18%, separable fat 7%, Connective tissue 5%~^30^^6.25^4.27^9.02^3.87 -~10036~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN & FAT,RAW~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^~Y~^~Bone, 14%, Connective tissue 11%~^25^^6.25^4.27^9.02^3.87 -~10037~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 15%, Connective tissue 5%~^20^^6.25^4.27^9.02^3.87 -~10038~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^^~Bone 16%, Connective tissue 9%~^25^^6.25^4.27^9.02^3.87 -~10039~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%~^18^^6.25^4.27^9.02^3.87 -~10040~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,RAW~^~URMIS #3313, Center loin chops, Center cut pork loin chops, centercut pork chops~^^^~Bone, 14%, Connective tissue, 11%, Separable fat, 6%~^31^^6.25^4.27^9.02^3.87 -~10041~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 5%, Separable fat 8%~^28^^6.25^4.27^9.02^3.87 -~10042~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork chops, Centercut pork loin chops~^^^~Bone, 16%, Connective tissue, 9%, Separable fat, 5%~^30^^6.25^4.27^9.02^3.87 -~10043~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%, Separable fat 7%~^25^^6.25^4.27^9.02^3.87 -~10044~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue 12%,~^34^^6.25^4.27^9.02^3.87 -~10045~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10046~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone, 24%, Connective tissue, 11%~^35^^6.25^4.27^9.02^3.87 -~10047~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10048~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue, 12%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~10049~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 17%, Connective tissue 6%, Separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10050~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRLD~^~Centercut pork loin chop, Rib cut chops, Rib chops~^^~Y~^~Bone 24%, Connective tissue, 11%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~10051~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%, separable fat 8%~^31^^6.25^4.27^9.02^3.87 -~10052~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 17%, Connective tissue, 10%~^27^^6.25^4.27^9.02^3.87 -~10053~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%~^24^^6.25^4.27^9.02^3.87 -~10054~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%~^21^^6.25^4.27^9.02^3.87 -~10055~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, Connective tissue, 11%~^31^^6.25^4.27^9.02^3.87 -~10056~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone 17%, Connective tissue, 11%, separable fat 5%~^33^^6.25^4.27^9.02^3.87 -~10057~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%, Separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10058~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%, Separable fat 8%~^29^^6.25^4.27^9.02^3.87 -~10059~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, connective tissue, 11%, separable fat, 4%~^35^^6.25^4.27^9.02^3.87 -~10060~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, raw~^~PORK FRSH LOIN TENDERLOIN LN ONLY RAW~^~Pork tenderloin, URMIS #3358~^^~Y~^~Bone, 0%, Connective tissue, 3%, Separable fat, 2%~^5^^6.25^4.27^9.02^3.87 -~10061~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,RSTD~^~URMIS #3358, Pork, Pork tenderloin~^^~Y~^~Connective tissue 3%, Separable fat .70%~^4^^6.25^4.27^9.02^3.87 -~10062~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~10063~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~10064~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^^~Connective tissue~^14^^6.25^4.27^9.02^3.87 -~10065~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^~Boneless pork loin, Centercut pork loin roast~^^^~Connective tissue~^12^^6.25^4.27^9.02^3.87 -~10066~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 12%, Separable fat, 5%~^17^^6.25^4.27^9.02^3.87 -~10067~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^6.25^4.27^9.02^3.87 -~10068~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 9%, separable fat, 4%~^13^^6.25^4.27^9.02^3.87 -~10069~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,CKD,RSTD~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~10070~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, raw~^~PORK,FRSH,SHLDR,WHL,LN&FAT,RAW~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10071~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10072~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, raw~^~PORK,FRSH,SHLDR,WHL,LN,RAW~^^^^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10073~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10074~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,RAW~^^^^~Bone 16%, Connective tissue 6%~^22^^6.25^4.27^9.02^3.87 -~10075~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 8%, Bone 15%,~^23^^6.25^4.27^9.02^3.87 -~10076~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,RSTD~^^^^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10077~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,RAW~^^^^~Bone 16%, Connective tissue 6%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10078~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 8%, Separable fat 7%~^30^^6.25^4.27^9.02^3.87 -~10079~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,RSTD~^^^^~Bone and skin 27%, separable fat 16%~^43^^6.25^4.27^9.02^3.87 -~10080~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN & FAT,RAW~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 15%~^24^^6.25^4.27^9.02^3.87 -~10081~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STKS),LN & FAT,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 17%~^26^^6.25^4.27^9.02^3.87 -~10082~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean and fat, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~10083~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~10084~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,RAW~^~URMIS # 3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 15%, Separable fat, 8%~^32^^6.25^4.27^9.02^3.87 -~10085~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 17%, Separable fat, 6%~^32^^6.25^4.27^9.02^3.87 -~10086~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean only, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10087~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN,CKD,RSTD~^^^~Y~^~Bone 24%, separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10088~^~1000~^~Pork, fresh, spareribs, separable lean and fat, raw~^~PORK,FRSH,SPARERIBS,LN&FAT,RAW~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~10089~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, braised~^~PORK,FRSH,SPARERIBS,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^38^^6.25^4.27^9.02^3.87 -~10093~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, and shoulder), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,&SHLDR),LN,CKD~^^^~Y~^~Bone and skin 22%, separable fat 9%~^31^^6.25^4.27^9.02^3.87 -~10094~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,RAW~^^^~Y~^~separable fat 16%~^16^^^^^ -~10096~^~1000~^~Pork, fresh, variety meats and by-products, brain, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membrane~^2^^6.25^4.27^9.02^3.87 -~10097~^~1000~^~Pork, fresh, variety meats and by-products, brain, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10098~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,RAW~^^^^~Separable fat~^18^^6.25^4.27^9.02^3.87 -~10099~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10100~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,RAW~^^^^~Thaw juice and trim~^5^^6.25^4.27^9.02^3.87 -~10101~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10102~^~1000~^~Pork, fresh, variety meats and by-products, feet, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,RAW~^^^^~Bone and hard tissue~^29^^6.25^4.27^9.02^3.87 -~10103~^~1000~^~Pork, fresh, variety meats and by-products, heart, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10104~^~1000~^~Pork, fresh, variety meats and by-products, heart, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10105~^~1000~^~Pork, fresh, variety meats and by-products, jowl, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,JOWL,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10106~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins, and membranes~^7^^6.25^4.27^9.02^3.87 -~10107~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10109~^~1000~^~Pork, fresh, variety meats and by-products, leaf fat, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LEAF FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10110~^~1000~^~Pork, fresh, variety meats and by-products, liver, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10111~^~1000~^~Pork, fresh, variety meats and by-products, liver, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10112~^~1000~^~Pork, fresh, variety meats and by-products, lungs, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^13^^6.25^4.27^9.02^3.87 -~10113~^~1000~^~Pork, fresh, variety meats and by-products, lungs, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10114~^~1000~^~Pork, fresh, variety meats and by-products, mechanically separated, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10115~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10116~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10117~^~1000~^~Pork, fresh, variety meats and by-products, spleen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10118~^~1000~^~Pork, fresh, variety meats and by-products, spleen, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10119~^~1000~^~Pork, fresh, variety meats and by-products, stomach, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,STOMACH,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10120~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10121~^~1000~^~Pork, fresh, variety meats and by-products, tongue, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~10122~^~1000~^~Pork, fresh, variety meats and by-products, tongue, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^~Skin and trimmings~^24^^6.25^4.27^9.02^4.11 -~10123~^~1000~^~Pork, cured, bacon, unprepared~^~PORK,CURED,BACON,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10128~^~1000~^~Pork, cured, breakfast strips, raw or unheated~^~PORK,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10130~^~1000~^~Canadian bacon, unprepared~^~CANADIAN BACON,UNPREP~^^^~Y~^^0^^^^^ -~10132~^~1000~^~Pork, cured, feet, pickled~^~PORK,CURED,FEET,PICKLED~^^^~Y~^~Bone and hard tissue 66%~^66^^6.25^4.27^9.02^3.87 -~10134~^~1000~^~Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,EX LN (APPROX 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10136~^~1000~^~Pork, cured, ham, boneless, regular (approximately 11% fat), roasted~^~PORK,CURED,HAM,BNLESS,REG (APPROX 11% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10137~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10138~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10140~^~1000~^~Pork, cured, ham, regular (approximately 13% fat), canned, roasted~^~PORK,CURED,HAM,REG (APPROX 13% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10141~^~1000~^~Pork, cured, ham, center slice, country-style, separable lean only, raw~^~PORK,CURED,HAM,CNTR SLICE,COUNTRY-STYLE,LN,RAW~^^^~Y~^~Bone and skin 3%, separable fat 12%~^15^^6.25^4.27^9.02^3.87 -~10142~^~1000~^~Pork, cured, ham, center slice, separable lean and fat, unheated~^~PORK,CURED,HAM,CNTR SLICE,LN&FAT,UNHTD~^^^^~Bone~^3^^6.25^4.27^9.02^3.87 -~10146~^~1000~^~Pork, cured, ham, patties, unheated~^~PORK,CURED,HAM,PATTIES,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10149~^~1000~^~Pork, cured, ham, steak, boneless, extra lean, unheated~^~PORK,CURED,HAM,STEAK,BNLESS,EX LN,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10150~^~1000~^~Pork, cured, ham, whole, separable lean and fat, unheated~^~PORK,CURED,HAM,WHL,LN&FAT,UNHTD~^^^^~Bone and skin~^18^^6.25^4.27^9.02^3.87 -~10152~^~1000~^~Pork, cured, ham, whole, separable lean only, unheated~^~PORK,CURED,HAM,WHL,LN,UNHTD~^^^~Y~^~Bone and skin 18%, separable fat 19%~^37^^6.25^4.27^9.02^3.87 -~10153~^~1000~^~Pork, cured, ham, whole, separable lean only, roasted~^~PORK,CURED,HAM,WHL,LN,RSTD~^^^~Y~^~Bone and skin 24%, separable fat 15%~^39^^6.25^4.27^9.02^3.87 -~10163~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,CKD,PAN-BROILED~^^^~Y~^~Separable lean 14%~^14^^^^^ -~10164~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN & FAT,RAW~^^^~Y~^^0^^^^^ -~10165~^~1000~^~Pork, cured, salt pork, raw~^~PORK,CURED,SALT PORK,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10166~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), unheated~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10167~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), roasted~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10168~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean and fat, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN&FAT,RSTD~^^^~Y~^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10169~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean only, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN,RSTD~^^^~Y~^~Bone and skin 27%, separable fat 19%~^46^^6.25^4.27^9.02^3.87 -~10170~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, unheated~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10171~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, roasted~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10173~^~1000~^~Pork, fresh, variety meats and by-products, feet, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,CKD,SIMMRD~^^^~Y~^~Bone and hard tissue~^60^^6.25^4.27^9.02^3.87 -~10174~^~1000~^~Pork, fresh, variety meats and by-products, tail, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,RAW~^^^^~Bone and hard tissue~^30^^6.25^4.27^9.02^3.87 -~10175~^~1000~^~Pork, fresh, variety meats and by-products, tail, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,CKD,SIMMRD~^^^^~Bone and hard tissue~^32^^6.25^4.27^9.02^3.87 -~10176~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, separable fat 8%, Connective tissue 6%~^28^^6.25^4.27^9.02^3.87 -~10177~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%, separable fat 9%~^32^^6.25^4.27^9.02^3.87 -~10178~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%~^27^^6.25^4.27^9.02^3.87 -~10179~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN CHOPS,BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, Connective tissue 6%~^20^^6.25^4.27^9.02^3.87 -~10180~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10181~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%, separable fat 5%,~^10^^6.25^4.27^9.02^3.87 -~10182~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, unheated~^~PORK,CURED,HAM,BNLESS,EX LN®,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10183~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,EX LN®,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10184~^~1000~^~Pork, cured, ham, extra lean and regular, canned, unheated~^~PORK,CURED,HAM,EX LN®,CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10185~^~1000~^~Pork, cured, ham, extra lean and regular, canned, roasted~^~PORK,CURED,HAM,EX LN®,CND,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10186~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10187~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, raw~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,RAW~^^^^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10188~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, cooked~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10189~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LON (CHPS),BNLESS,LN & FAT,CKD,PAN-BRLED~^^^~Y~^^0^^^^^ -~10192~^~1000~^~Pork, fresh, backribs, separable lean and fat, raw~^~PORK,FRSH,BACKRIBS,LN&FAT,RAW~^^^^~Bone 30%, Connective tissue 7%~^37^^6.25^4.27^9.02^3.87 -~10193~^~1000~^~Pork, fresh, backribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,BACKRIBS,LN&FAT,CKD,RSTD~^^^^~Bone~^43^^6.25^4.27^9.02^3.87 -~10194~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue~^11^^6.25^4.27^9.02^3.87 -~10195~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^5^^6.25^4.27^9.02^3.87 -~10196~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~10197~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10198~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10199~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 11%, separable fat 11%~^22^^6.25^4.27^9.02^3.87 -~10200~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRSD~^^^~Y~^~Connective tissue 5%, separable fat 10%~^15^^6.25^4.27^9.02^3.87 -~10201~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRLD~^^^^~Connective tissue 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~10202~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 8%, separable fat 11%~^19^^6.25^4.27^9.02^3.87 -~10203~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 8%, separable fat 10%~^18^^6.25^4.27^9.02^3.87 -~10204~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,RAW~^~Country Ribs~^^^~Bone 21%, Connective tissue 14%~^35^^6.25^4.27^9.02^3.87 -~10205~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue 15%~^39^^6.25^4.27^9.02^3.87 -~10206~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,RSTD~^^^^~Connective tisue 8%, Bone 17%~^25^^6.25^4.27^9.02^3.87 -~10207~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,RAW~^~Country ribs~^^^~Bone 21%, Connective tissue, 14%, separable fat 6%~^41^^6.25^4.27^9.02^3.87 -~10208~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue, 15%, separable fat 4%~^43^^6.25^4.27^9.02^3.87 -~10209~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,RSTD~^^^^~Connective tissue 8%, Bone 17%, Separable fat 7%~^32^^6.25^4.27^9.02^3.87 -~10210~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue 4%~^6^^6.25^4.27^9.02^3.87 -~10211~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10212~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10213~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~10214~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 5%, Separable fat 2%~^7^^6.25^4.27^9.02^3.87 -~10215~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 3%, Separable fat 1%~^4^^6.25^4.27^9.02^3.87 -~10216~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRLD~^^^~Y~^~Connective tissue 2%, Separable fat 2%~^4^^6.25^4.27^9.02^3.87 -~10217~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN,CKD,RSTD~^^^~Y~^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10218~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,RAW~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10219~^~1000~^~Pork, fresh, ground, raw~^~PORK,FRESH,GROUND,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10220~^~1000~^~Pork, fresh, ground, cooked~^~PORK,FRESH,GROUND,COOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10221~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~10222~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,RSTD~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~10223~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10224~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue~^16^^6.25^4.27^9.02^3.87 -~10225~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 10%, separable fat 6%~^16^^6.25^4.27^9.02^3.87 -~10226~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN & SHLDR BLADE),LN & FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10227~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN&FAT,CKD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10228~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,RAW~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10229~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,CKD~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10851~^~1000~^~HORMEL, Cure 81 Ham~^~HORMEL,CURE 81 HAM~^^^^^0^^^4.00^9.00^4.00 -~10852~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Teriyaki-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,TERIYAKI-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10853~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Peppercorn-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,PEPPERCORN-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10854~^~1000~^~HORMEL ALWAYS TENDER, Pork Loin Filets, Lemon Garlic-Flavored~^~HORMEL ALWAYS TENDER,PORK LOIN FILETS,LEMON GARLIC-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10855~^~1000~^~HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork~^~HORMEL ALWAYS TENDER,CNTR CUT CHOPS,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10856~^~1000~^~HORMEL ALWAYS TENDER, Boneless Pork Loin, Fresh Pork~^~HORMEL ALWAYS TENDER,BNLESS PORK LOIN,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10857~^~1000~^~HORMEL Canadian Style Bacon~^~HORMEL CANADIAN STYLE BACON~^^^^^0^^^4.00^9.00^4.00 -~10858~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,PN-BRLD~^^^^~Separable fat~^9^^6.25^4.27^9.02^3.87 -~10859~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TPLN(CHPS),BNLS,LN & FT,W/ADDED SLN,CKD,PN-BRLD~^^^^^0^^^4.27^9.02^3.87 -~10860~^~1000~^~Pork, cured, bacon, cooked, baked~^~PORK,CURED,BACON,CKD,BKD~^^^^^0^^6.25^4.27^9.02^3.87 -~10861~^~1000~^~Pork, cured, bacon, cooked, microwaved~^~PORK,CURED,BACON,CKD,MICROWAVED~^^^^^0^^6.25^4.27^9.02^3.87 -~10862~^~1000~^~Pork, cured, bacon, pre-sliced, cooked, pan-fried~^~PORK,CURED,BACON,PRE-SLICED,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10863~^~1000~^~Pork, fresh, variety meats and by-products, stomach, cooked, simmered~^~PORK,FRSH,VAR MEATS & BY-PRODUCTS,STOMACH,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10864~^~1000~^~Pork, bacon, rendered fat, cooked~^~PORK,BACON,RENDERED FAT,CKD~^~bacon drippings~^^^^0^^6.25^4.27^9.02^3.87 -~10865~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 10%, separable fat 9%~^19^^^^^ -~10866~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 12%, Separable fat 16%~^28^^6.25^^^ -~10867~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%, Separable fat 16%~^35^^^^^ -~10868~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Separable fat 9%, Bone 4%~^13^^^^^ -~10869~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Connective tissue 1%, Separable fat 8%~^12^^^^^ -~10870~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^^0^^^^^ -~10871~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^^0^^^^^ -~10872~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10873~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 14%, Separable fat 9%~^23^^^^^ -~10874~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%, Separable fat 11%~^26^^^^^ -~10875~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Separable fat 8%~^11^^^^^ -~10876~^~1000~^~Pork, cured, ham with natural juices, spiral slice, meat only, boneless, separable lean only, heated, roasted~^~PRK,CRD,HAM W/ NAT JUCS,SPRL SLC,MEAT ONLY,BNLES,LN,HTD,RSTD~^^^^~Separable fat~^3^^^^^ -~10877~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%, Separable fat 12%~^26^^^^^ -~10878~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^2^^^^^ -~10879~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 2%~^2^^^^^ -~10880~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat~^3^^^^^ -~10881~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%, Separable fat 21%~^41^^^^^ -~10882~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^1^^^^^ -~10883~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10884~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 4%~^4^^^^^ -~10885~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 16%~^26^^6.25^^^ -~10886~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 4%, Separable fat 16%~^20^^6.25^^^ -~10887~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone~^18^^6.25^^^ -~10888~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 11%~^14^^6.25^^^ -~10889~^~1000~^~Pork, cured, ham and water product, shank, bone-in, unheated, separable lean only~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,UNHTD,LN~^^^^~Bone 17%, Separable fat 27%~^44^^6.25^^^ -~10890~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 21%, Separable fat 16%~^37^^6.25^^^ -~10891~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 14%~^24^^6.25^^^ -~10892~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 9%~^12^^6.25^^^ -~10893~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRAL SLICE,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 5%~^5^^6.25^^^ -~10894~^~1000~^~Pork, cured, ham, separable fat, boneless, heated~^~PORK,CURED,HAM,FAT,BNLESS,HTD~^^^^^0^^6.25^^^ -~10895~^~1000~^~Pork, cured, ham, separable fat, boneless, unheated~^~PORK,CURED,HAM,FAT,BNLESS,UNHTD~^^^^^0^^6.25^^^ -~10898~^~1000~^~Pork, pickled pork hocks~^~PORK,PICKLED PORK HOCKS~^^^^^0^^6.25^^^ -~10899~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 5%, Separable fat 9%~^14^^^^^ -~10900~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10901~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRL SLCE,BNLES,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10902~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10903~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10904~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^21^^^^^ -~10905~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10906~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10907~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^17^^^^^ -~10908~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^18^^^^^ -~10909~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10910~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^4^^^^^ -~10911~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10912~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^12^^^^^ -~10913~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^10^^^^^ -~10914~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%~^19^^^^^ -~10915~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^4^^^^^ -~10916~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10917~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10918~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%~^14^^^^^ -~10919~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%~^20^^^^^ -~10920~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone 3%, Connective tissue 1%~^4^^^^^ -~10921~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLICE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10922~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10923~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^14^^^^^ -~10924~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%~^15^^^^^ -~10925~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^3^^^^^ -~10926~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLICE,BNLES,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10927~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUCS,SPRL SLCE,BNLES,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10928~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10929~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^23^^^^^ -~10931~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Separable fat 10%~^23^^^^^ -~10932~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 13%, Separable fat 13%~^26^^^^^ -~10933~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Separable fat 10%~^22^^^^^ -~10934~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 11%, Separable fat 12%~^23^^^^^ -~10935~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10936~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^11^^^^^ -~10937~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,HTD,PAN-BROIL~^^^^~Bone~^14^^^^^ -~10938~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 5%, Separable fat 11%~^16^^^^^ -~10939~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^5^^^^^ -~10940~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,SPARERIBS,LN & FAT,CKD,RSTD~^^^^~Bone~^32^^^^^ -~10942~^~1000~^~Pork, fresh, composite of separable fat, with added solution, raw~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~10943~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue, 4%, Separable fat, 1%~^5^^^^^ -~10944~^~1000~^~Pork, fresh, enhanced, loin, tenderloin, separable lean only, raw~^~PORK,FRSH,ENHANCED,LOIN,TENDERLOIN,LN,RAW~^^^~Y~^~Connective tissue, 3%, Separable fat, 2%~^5^^^4.27^9.02^3.87 -~10945~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution cooked, braised~^~PORK,FRSH,SHLDR,(BSTN BTT),BLDE (STKS),LN,W/ADDEDSLNCKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%, Separable fat, 7%~^35^^^4.27^9.02^3.87 -~10946~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution, raw~^~PORK,FRSH,SHLDR,(BSTN BUTT),BLDE (STKS),LN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%, Separable fat, 9%~^32^^^^^ -~10947~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, broiled~^~PORK,FRSH,LN,TOP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,BRLD~^^^~Y~^~Separable fat 7%~^7^^^^^ -~10948~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, raw~^~PORK,FRSH,LN,TOP LIN (CHOPS),BNLSS,LN,W/ ADDED SLN,RAW~^^^~Y~^~Separable fat 14%~^14^^^^^ -~10949~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TP LN (CHPS),BNLSS,LN & FT,W/ ADDED SLN,RAW~^^^~Y~^^0^^6.25^^^ -~10950~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLSS,LN & FT,W/ADDED SLN,CKD,BRLD~^^^~Y~^^0^^^^^ -~10951~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN & FAT,W/ ADDED SLN,RAW~^^^~Y~^~Connective tissue 3%~^3^^^^^ -~10952~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN & FT,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^^^^ -~10953~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat,with added solution, raw~^~PORK,FRSH,SHDR,(BSTN BTT),BLDE(STKS),LN & FT,W/ADDED SLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%~^23^^^^^ -~10954~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, with added solution, cooked, braised~^~PORK,FRSH,SHDR,(BSTN BT),BLDE(STKS),LN&FT,WADDEDSLN,CKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%~^28^^^^^ -~10955~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^13^^^^^ -~10956~^~1000~^~Pork, loin, leg cap steak, boneless, separable lean and fat, cooked, broiled~^~PORK,LOIN,LEG CAP STEAK,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10957~^~1000~^~Pork, Leg Cap Steak, boneless, separable lean and fat, raw~^~PORK,LEG CAP STEAK,BNLESS,LN & FAT,RAW~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10958~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, raw~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,RAW~^~URMIS #3604, Shoulder breast, Pectoralis Profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10959~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3604, Shoulder breast, Pectoralis profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10960~^~1000~^~Pork, shoulder, petite tender, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR,PETITE TENDER,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10961~^~1000~^~Pork, Shoulder petite tender, boneless, separable lean and fat, raw~^~PORK,SHLDR PETITE TENDER,BNLESS,LN & FAT,RAW~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10962~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, cooked, braised~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,CKD,BRSD~^~URMIS #3647, Leg sirloin tip roast, Vastas Lateralis/Rectus femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10963~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, raw~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,RAW~^~URMIS #3647, Leg sirloin tip roast, Vastas lateralis/Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10972~^~1000~^~Pork, ground, 84% lean / 16% fat, raw~^~PORK,GROUND,84% LN / 16% FAT,RAW~^^^^^0^^^^^ -~10973~^~1000~^~Pork, ground, 96% lean / 4% fat, raw~^~PORK,GROUND,96% LN / 4% FAT,RAW~^^^^^0^^^^^ -~10974~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, crumbles~^~PORK,GROUND,72% LN / 28% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10975~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, crumbles~^~PORK,GROUND,84% LN / 16% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10976~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, crumbles~^~PORK,GROUND,96% LN / 4% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10977~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, pan-broiled~^~PORK,GROUND,72% LN / 28% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10978~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, pan-broiled~^~PORK,GROUND,84% LN / 16% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10979~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, pan-broiled~^~PORK,GROUND,96% LN / 4% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10980~^~1000~^~Pork loin, fresh, backribs, bone-in, raw, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,RAW,LN~^^^~Y~^~Bone 30%, Connective tissue 7%, Separable fat 9%~^50^^^^^ -~10981~^~1000~^~Pork loin, fresh, backribs, bone-in, cooked-roasted, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,COOKED-ROASTED,LN~^^^~Y~^~Bone 31%, Connective tissue 4%, Separable fat 5%~^40^^^^^ -~10982~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 7%, Separable fat 6%~^13^^^^^ -~10983~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 5%~^10^^^^^ -~10984~^~1000~^~Pork, fresh, loin, blade (chops), boneless, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BNLESS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10985~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10986~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%, Separable fat 8%~^30^^^^^ -~10987~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%, Separable fat 11%~^19^^^^^ -~10988~^~1000~^~Pork, fresh, blade, (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,BLADE,(CHOPS),BNLESS,LN & FAT,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10989~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean and fat only, raw~^~PORK,FRSH,LOIN,BLDE (CHOPS OR ROAST),BNLESS,LN & FAT OLY,RAW~^^^^~Connective tissue 7%~^7^^^^^ -~10990~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN & FAT,CKD,RSTD~^^^^~Connective tissue 5%~^5^^^^^ -~10991~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10992~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%~^22^^^^^ -~10993~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%,~^7^^^^^ -~10994~^~1000~^~Bacon, pre-sliced, reduced/low sodium, unprepared~^~BACON,PRE-SLICED,REDUCED/LOW NA,UNPREP~^^^^^0^^^^^ -~10998~^~1000~^~Canadian bacon, cooked, pan-fried~^~CANADIAN BACON,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~11001~^~1100~^~Alfalfa seeds, sprouted, raw~^~ALFALFA SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Medicago sativa~^6.25^2.44^8.37^3.57 -~11003~^~1100~^~Amaranth leaves, raw~^~AMARANTH LEAVES,RAW~^^^^~Tough stems~^6^~Amaranthus spp.~^6.25^2.44^8.37^3.57 -~11004~^~1100~^~Amaranth leaves, cooked, boiled, drained, without salt~^~AMARANTH LEAVES,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11005~^~1100~^~Arrowhead, raw~^~ARROWHEAD,RAW~^^^^~Skin and sprout~^25^~Sagittaria latifolia~^6.25^2.78^8.37^3.84 -~11006~^~1100~^~Arrowhead, cooked, boiled, drained, without salt~^~ARROWHEAD,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11007~^~1100~^~Artichokes, (globe or french), raw~^~ARTICHOKES,(GLOBE OR FRENCH),RAW~^^^^~Stem and inedible parts of bracts and flowers~^60^~Cynara scolymus~^6.25^2.44^8.37^3.57 -~11008~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,WO/SALT~^^^~Y~^~Stem and inedible parts of bracts and flowers~^60^^6.25^2.44^8.37^3.57 -~11009~^~1100~^~Artichokes, (globe or french), frozen, unprepared~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11010~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11011~^~1100~^~Asparagus, raw~^~ASPARAGUS,RAW~^^^~Y~^~Butt ends~^47^~Asparagus officinalis~^6.25^2.44^8.37^3.57 -~11012~^~1100~^~Asparagus, cooked, boiled, drained~^~ASPARAGUS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11013~^~1100~^~Asparagus, canned, regular pack, solids and liquids~^~ASPARAGUS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11015~^~1100~^~Asparagus, canned, drained solids~^~ASPARAGUS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11018~^~1100~^~Asparagus, frozen, unprepared~^~ASPARAGUS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11019~^~1100~^~Asparagus, frozen, cooked, boiled, drained, without salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11022~^~1100~^~Balsam-pear (bitter gourd), leafy tips, raw~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^62^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11023~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11024~^~1100~^~Balsam-pear (bitter gourd), pods, raw~^~BALSAM-PEAR (BITTER GOURD),PODS,RAW~^^^^~Tough stems and leaves~^17^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11025~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11026~^~1100~^~Bamboo shoots, raw~^~BAMBOO SHOOTS,RAW~^^^~Y~^~Sheath~^71^~Phyllostachys spp.~^6.25^2.44^8.37^3.57 -~11027~^~1100~^~Bamboo shoots, cooked, boiled, drained, without salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11028~^~1100~^~Bamboo shoots, canned, drained solids~^~BAMBOO SHOOTS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11029~^~1100~^~Beans, kidney, mature seeds, sprouted, raw~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11030~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11031~^~1100~^~Lima beans, immature seeds, raw~^~LIMA BNS,IMMAT SEEDS,RAW~^^^~Y~^~Pods and imperfect beans~^56^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~11032~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11033~^~1100~^~Lima beans, immature seeds, canned, regular pack, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11037~^~1100~^~Lima beans, immature seeds, frozen, fordhook, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11038~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11039~^~1100~^~Lima beans, immature seeds, frozen, baby, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11040~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11043~^~1100~^~Mung beans, mature seeds, sprouted, raw~^~MUNG BNS,MATURE SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^2.44^8.37^3.57 -~11044~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11045~^~1100~^~Mung beans, mature seeds, sprouted, cooked, stir-fried~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11046~^~1100~^~Beans, navy, mature seeds, sprouted, raw~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11047~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11048~^~1100~^~Beans, pinto, immature seeds, frozen, unprepared~^~BEANS,PINTO,IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11049~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, without salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11050~^~1100~^~Beans, shellie, canned, solids and liquids~^~BEANS,SHELLIE,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^2.96^8.37^3.82 -~11052~^~1100~^~Beans, snap, green, raw~^~BEANS,SNAP,GREEN,RAW~^^^~Y~^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11053~^~1100~^~Beans, snap, green, cooked, boiled, drained, without salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11054~^~1100~^~Beans, snap, green, canned, regular pack, solids and liquids~^~BEANS,SNAP,GRN,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11056~^~1100~^~Beans, snap, green, canned, regular pack, drained solids~^~BEANS,SNAP,GRN,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11058~^~1100~^~Beans, snap, canned, all styles, seasoned, solids and liquids~^~BEANS,SNAP,CND,ALL STYLES,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11060~^~1100~^~Beans, snap, green, frozen, all styles, unprepared (Includes foods for USDA's Food Distribution Program)~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11061~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained without salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11062~^~1100~^~Beans, snap, green, frozen, all styles, microwaved~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11063~^~1100~^~Beans, snap, green, microwaved~^~BEANS,SNAP,GRN,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11080~^~1100~^~Beets, raw~^~BEETS,RAW~^^^~Y~^~Parings and part tops~^33^~Beta vulgaris~^6.25^2.78^8.37^3.84 -~11081~^~1100~^~Beets, cooked, boiled, drained~^~BEETS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11082~^~1100~^~Beets, canned, regular pack, solids and liquids~^~BEETS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11084~^~1100~^~Beets, canned, drained solids~^~BEETS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11086~^~1100~^~Beet greens, raw~^~BEET GREENS,RAW~^^^~Y~^~Stems, bruised and old leaves~^44^~Beta vulgaris~^6.25^2.44^8.37^3.57 -~11087~^~1100~^~Beet greens, cooked, boiled, drained, without salt~^~BEET GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11088~^~1100~^~Broadbeans, immature seeds, raw~^~BROADBEANS,IMMAT SEEDS,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^3.47^8.37^4.07 -~11089~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, without salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11090~^~1100~^~Broccoli, raw~^~BROCCOLI,RAW~^^^~Y~^~Leaves and tough stalks with trimmings~^39^~Brassica oleracea var. italica~^6.25^2.44^8.37^3.57 -~11091~^~1100~^~Broccoli, cooked, boiled, drained, without salt~^~BROCCOLI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11092~^~1100~^~Broccoli, frozen, chopped, unprepared~^~BROCCOLI,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11093~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11094~^~1100~^~Broccoli, frozen, spears, unprepared (Includes foods for USDA's Food Distribution Program)~^~BROCCOLI,FRZ,SPEARS,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11095~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11096~^~1100~^~Broccoli raab, raw~^~BROCCOLI RAAB,RAW~^~Broccoli rabe, Rapini~^^~Y~^^0^~Brassica ruvo~^6.25^2.44^8.37^3.57 -~11097~^~1100~^~Broccoli raab, cooked~^~BROCCOLI RAAB,CKD~^~Broccoli rabe, Rapini~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11098~^~1100~^~Brussels sprouts, raw~^~BRUSSELS SPROUTS,RAW~^^^~Y~^~Outer leaves~^10^~Brassica oleracea (Gemmifera Group)~^6.25^2.44^8.37^3.57 -~11099~^~1100~^~Brussels sprouts, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11100~^~1100~^~Brussels sprouts, frozen, unprepared~^~BRUSSELS SPROUTS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11101~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11104~^~1100~^~Burdock root, raw~^~BURDOCK ROOT,RAW~^^^~Y~^~Skin, root and tips~^25^~Arctium lappa~^6.25^2.78^8.37^3.84 -~11105~^~1100~^~Burdock root, cooked, boiled, drained, without salt~^~BURDOCK ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11106~^~1100~^~Butterbur, (fuki), raw~^~BUTTERBUR,(FUKI),RAW~^^^^~Leaves, stem ends, peels~^12^~Petasites japonicus~^6.25^2.44^8.37^3.57 -~11107~^~1100~^~Butterbur, cooked, boiled, drained, without salt~^~BUTTERBUR,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11108~^~1100~^~Butterbur, canned~^~BUTTERBUR,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11109~^~1100~^~Cabbage, raw~^~CABBAGE,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11110~^~1100~^~Cabbage, cooked, boiled, drained, without salt~^~CABBAGE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11112~^~1100~^~Cabbage, red, raw~^~CABBAGE,RED,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11113~^~1100~^~Cabbage, red, cooked, boiled, drained, without salt~^~CABBAGE,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11114~^~1100~^~Cabbage, savoy, raw~^~CABBAGE,SAVOY,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11115~^~1100~^~Cabbage, savoy, cooked, boiled, drained, without salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11116~^~1100~^~Cabbage, chinese (pak-choi), raw~^~CABBAGE,CHINESE (PAK-CHOI),RAW~^~pak choi, bok choy~^^~Y~^~Base and damaged leaves~^12^~Brassica rapa (Chinensis Group)~^6.25^2.44^8.37^3.57 -~11117~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,WO/SALT~^~bok choy, pak choi~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11118~^~1100~^~Cabbage, kimchi~^~CABBAGE,KIMCHI~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11119~^~1100~^~Cabbage, chinese (pe-tsai), raw~^~CABBAGE,CHINESE (PE-TSAI),RAW~^^^~Y~^~Outer leaves and root base~^7^~Brassica rapa (Pekinensis Group)~^6.25^2.44^8.37^3.57 -~11120~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11122~^~1100~^~Cardoon, raw~^~CARDOON,RAW~^^^^~Tough stems and leaves~^51^~Cynara cardunculus~^6.25^2.44^8.37^3.57 -~11123~^~1100~^~Cardoon, cooked, boiled, drained, without salt~^~CARDOON,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11124~^~1100~^~Carrots, raw~^~CARROTS,RAW~^^^~Y~^~Crown, tops and scrapings~^11^~Daucus carota~^6.25^2.78^8.37^3.84 -~11125~^~1100~^~Carrots, cooked, boiled, drained, without salt~^~CARROTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11126~^~1100~^~Carrots, canned, regular pack, solids and liquids~^~CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11128~^~1100~^~Carrots, canned, regular pack, drained solids~^~CARROTS,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11130~^~1100~^~Carrots, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~CARROTS,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11131~^~1100~^~Carrots, frozen, cooked, boiled, drained, without salt~^~CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11134~^~1100~^~Cassava, raw~^~CASSAVA,RAW~^^^~Y~^~Skin~^16^~Manihot esculenta~^6.25^2.78^8.37^4.03 -~11135~^~1100~^~Cauliflower, raw~^~CAULIFLOWER,RAW~^^^~Y~^~Leaf stalks, cores and trimmings~^61^~Brassica oleracea (Botrytis Group)~^6.25^2.44^8.37^3.57 -~11136~^~1100~^~Cauliflower, cooked, boiled, drained, without salt~^~CAULIFLOWER,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11137~^~1100~^~Cauliflower, frozen, unprepared~^~CAULIFLOWER,FRZ,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11138~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, without salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11141~^~1100~^~Celeriac, raw~^~CELERIAC,RAW~^^^~Y~^~Parings~^14^~Apium graveolens~^6.25^2.78^8.37^3.84 -~11142~^~1100~^~Celeriac, cooked, boiled, drained, without salt~^~CELERIAC,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11143~^~1100~^~Celery, raw~^~CELERY,RAW~^^^~Y~^~Roots and trimmings~^11^~Apium graveolens~^6.25^2.44^8.37^3.57 -~11144~^~1100~^~Celery, cooked, boiled, drained, without salt~^~CELERY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11145~^~1100~^~Celtuce, raw~^~CELTUCE,RAW~^^^^~Tough leaves and stems~^25^~Lactuca sativa~^6.25^2.44^8.37^3.57 -~11147~^~1100~^~Chard, swiss, raw~^~CHARD,SWISS,RAW~^^^~Y~^~Tough stems and damaged leaves~^8^~Beta vulgaris subsp. vulagaris~^6.25^2.44^8.37^3.57 -~11148~^~1100~^~Chard, swiss, cooked, boiled, drained, without salt~^~CHARD,SWISS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11149~^~1100~^~Chayote, fruit, raw~^~CHAYOTE,FRUIT,RAW~^~christophine~^^~Y~^~End and stem~^1^~Sechium edule~^6.25^2.44^8.37^3.57 -~11150~^~1100~^~Chayote, fruit, cooked, boiled, drained, without salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,WO/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11151~^~1100~^~Chicory, witloof, raw~^~CHICORY,WITLOOF,RAW~^^^^~Root base and core~^11^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11152~^~1100~^~Chicory greens, raw~^~CHICORY GREENS,RAW~^^^~Y~^~Tough stems and damaged leaves~^18^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11154~^~1100~^~Chicory roots, raw~^~CHICORY ROOTS,RAW~^^^^~Peels and tops~^18^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11156~^~1100~^~Chives, raw~^~CHIVES,RAW~^^^~Y~^^0^~Allium schoenoprasum~^6.25^2.44^8.37^3.57 -~11157~^~1100~^~Chrysanthemum, garland, raw~^~CHRYSANTHEMUM,GARLAND,RAW~^^^^~Stem ends~^4^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11158~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, without salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11161~^~1100~^~Collards, raw~^~COLLARDS,RAW~^^^~Y~^~Stems~^43^~Brassica oleracea var. viridis~^6.25^2.44^8.37^3.57 -~11162~^~1100~^~Collards, cooked, boiled, drained, without salt~^~COLLARDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11163~^~1100~^~Collards, frozen, chopped, unprepared~^~COLLARDS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11164~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, without salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11165~^~1100~^~Coriander (cilantro) leaves, raw~^~CORIANDER (CILANTRO) LEAVES,RAW~^~Chinese parsley, raw, Cilantro, raw~^^~Y~^~Roots, old and bruised leaves~^15^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~11167~^~1100~^~Corn, sweet, yellow, raw~^~CORN,SWT,YEL,RAW~^^^~Y~^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11168~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11170~^~1100~^~Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids~^~CORN,SWT,YEL,CND,BRINE PK,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11172~^~1100~^~Corn, sweet, yellow, canned, whole kernel, drained solids~^~CORN,SWT,YEL,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11174~^~1100~^~Corn, sweet, yellow, canned, cream style, regular pack~^~CORN,SWT,YEL,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11176~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, regular pack~^~CORN,SWT,YEL,CND,VACUUM PK,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11177~^~1100~^~Corn, sweet, yellow, canned, drained solids, rinsed with tap water~^~CORN,SWT,YEL,CND,DRND SOL,RINSED W/ TAP H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~11178~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, unprepared (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11179~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11180~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, unprepared~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11181~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11182~^~1100~^~Corn, yellow, whole kernel, frozen, microwaved~^~CORN,YEL,WHL KERNEL,FRZ,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11184~^~1100~^~Corn with red and green peppers, canned, solids and liquids~^~CORN W/RED&GRN PEPPERS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11190~^~1100~^~Cornsalad, raw~^~CORNSALAD,RAW~^^^^^^~Valerianella locusta~^6.25^2.44^8.37^3.57 -~11191~^~1100~^~Cowpeas (blackeyes), immature seeds, raw~^~COWPEAS (BLACKEYES),IMMAT SEEDS,RAW~^^^^~Pods~^49^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~11192~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11195~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, unprepared~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11196~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMTRE SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11197~^~1100~^~Cowpeas, young pods with seeds, raw~^~COWPEAS,YOUNG PODS W/SEEDS,RAW~^^^^~Ends and strings~^9^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11198~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, without salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11199~^~1100~^~Yardlong bean, raw~^~YARDLONG BEAN,RAW~^^^^~Ends~^5^~Vigna unguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~11200~^~1100~^~Yardlong bean, cooked, boiled, drained, without salt~^~YARDLONG BEAN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11201~^~1100~^~Cowpeas, leafy tips, raw~^~COWPEAS,LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^48^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11202~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, without salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11203~^~1100~^~Cress, garden, raw~^~CRESS,GARDEN,RAW~^^^~Y~^~Stems, crowns and spoiled leaves~^29^~Lepidium sativum~^6.25^2.44^8.37^3.57 -~11204~^~1100~^~Cress, garden, cooked, boiled, drained, without salt~^~CRESS,GARDEN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11205~^~1100~^~Cucumber, with peel, raw~^~CUCUMBER,WITH PEEL,RAW~^^^~Y~^~Ends~^3^~Cucumis sativus~^6.25^2.44^8.37^3.57 -~11206~^~1100~^~Cucumber, peeled, raw~^~CUCUMBER,PEELED,RAW~^^^~Y~^~Parings, ends and bruised spots~^27^^6.25^2.44^8.37^3.57 -~11207~^~1100~^~Dandelion greens, raw~^~DANDELION GREENS,RAW~^^^~Y~^^0^~Taraxacum officinale~^6.25^2.44^8.37^3.57 -~11208~^~1100~^~Dandelion greens, cooked, boiled, drained, without salt~^~DANDELION GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11209~^~1100~^~Eggplant, raw~^~EGGPLANT,RAW~^^^~Y~^~Ends, parings and trimmings~^19^~Solanum melongena~^6.25^2.44^8.37^3.57 -~11210~^~1100~^~Eggplant, cooked, boiled, drained, without salt~^~EGGPLANT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11211~^~1100~^~Edamame, frozen, unprepared~^~EDAMAME,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11212~^~1100~^~Edamame, frozen, prepared~^~EDAMAME,FRZ,PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11213~^~1100~^~Endive, raw~^~ENDIVE,RAW~^^^~Y~^~Outer leaves and core~^14^~Cichorium endivia~^6.25^2.44^8.37^3.57 -~11214~^~1100~^~Escarole, cooked, boiled, drained, no salt added~^~ESCAROLE,CKD,BLD,DRND,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11215~^~1100~^~Garlic, raw~^~GARLIC,RAW~^^^~Y~^~Knob and skin~^13^~Allium sativum~^6.25^2.78^8.37^3.84 -~11216~^~1100~^~Ginger root, raw~^~GINGER ROOT,RAW~^^^~Y~^~Scrapings~^7^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~11218~^~1100~^~Gourd, white-flowered (calabash), raw~^~GOURD,WHITE-FLOWERED (CALABASH),RAW~^^^^~Ends, skin, and seeds~^30^~Lagenaria siceraria~^6.25^2.44^8.37^3.57 -~11219~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, without salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11220~^~1100~^~Gourd, dishcloth (towelgourd), raw~^~GOURD,DISHCLOTH (TOWELGOURD),RAW~^^^^~Ribs, skin, stem and blossom end~^27^~Luffa aegyptiaca~^6.25^2.44^8.37^3.57 -~11221~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11222~^~1100~^~Drumstick leaves, raw~^~DRUMSTICK LEAVES,RAW~^~Harseradish tree leaves~^^^~Stems~^38^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11223~^~1100~^~Drumstick leaves, cooked, boiled, drained, without salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,WO/ SALT~^~Horseradish-tree~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11224~^~1100~^~Hyacinth-beans, immature seeds, raw~^~HYACINTH-BEANS,IMMAT SEEDS,RAW~^^^^~Ends and strings~^7^~Dolichos lablab~^6.25^3.47^8.37^4.07 -~11225~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11226~^~1100~^~Jerusalem-artichokes, raw~^~JERUSALEM-ARTICHOKES,RAW~^~Sunchokes~^^~Y~^~Parings~^31^~Helianthus tuberosus~^6.25^2.78^8.37^3.84 -~11228~^~1100~^~Jew's ear, (pepeao), raw~^~JEW'S EAR,(PEPEAO),RAW~^^^^~Stem end~^2^~Auricularia polytricha~^6.25^2.62^8.37^3.48 -~11230~^~1100~^~Pepeao, dried~^~PEPEAO,DRIED~^^^^~Stems and defects~^13^^6.25^2.62^8.37^3.48 -~11231~^~1100~^~Jute, potherb, raw~^~JUTE,POTHERB,RAW~^^^^~Tough leaves and stems~^38^~Corchorus olitorius~^6.25^2.44^8.37^3.57 -~11232~^~1100~^~Jute, potherb, cooked, boiled, drained, without salt~^~JUTE,POTHERB,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11233~^~1100~^~Kale, raw~^~KALE,RAW~^^^^~Stem ends, tough stems and tough midrib parts~^28^~Brassica oleracea (Acephala Group)~^6.25^2.44^8.37^3.57 -~11234~^~1100~^~Kale, cooked, boiled, drained, without salt~^~KALE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11235~^~1100~^~Kale, frozen, unprepared~^~KALE,FROZEN,UNPREPARED~^^^^^0^^6.25^2.44^8.37^3.57 -~11236~^~1100~^~Kale, frozen, cooked, boiled, drained, without salt~^~KALE,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11237~^~1100~^~Kanpyo, (dried gourd strips)~^~KANPYO,(DRIED GOURD STRIPS)~^^^^^0^^6.25^2.44^8.37^3.57 -~11238~^~1100~^~Mushrooms, shiitake, raw~^~MUSHROOMS,SHIITAKE,RAW~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11239~^~1100~^~Mushrooms, Chanterelle, raw~^~MUSHROOMS,CHANTERELLE,RAW~^^^^^0^~Cantharellus californicus or Cantharellus cibarius~^6.25^2.62^8.37^3.48 -~11240~^~1100~^~Mushrooms, morel, raw~^~MUSHROOMS,MOREL,RAW~^^^^^0^~Morchella spp.~^6.25^2.62^8.37^3.48 -~11241~^~1100~^~Kohlrabi, raw~^~KOHLRABI,RAW~^^^~Y~^~Leaves, stems and parings~^54^~Brassica oleracea (Gongylodes Group)~^6.25^2.44^8.37^3.57 -~11242~^~1100~^~Kohlrabi, cooked, boiled, drained, without salt~^~KOHLRABI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11243~^~1100~^~Mushrooms, portabella, grilled~^~MUSHROOMS,PORTABELLA,GRILLED~^~Portobello~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11244~^~1100~^~Lambsquarters, raw~^~LAMBSQUARTERS,RAW~^^^^^^~Chenopodium album~^6.25^2.44^8.37^3.57 -~11245~^~1100~^~Lambsquarters, cooked, boiled, drained, without salt~^~LAMBSQUARTERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11246~^~1100~^~Leeks, (bulb and lower leaf-portion), raw~^~LEEKS,(BULB&LOWER LEAF-PORTION),RAW~^^^~Y~^~Tops, root end and skin~^56^~Allium ampeloprasum~^6.25^2.78^8.37^3.84 -~11247~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11248~^~1100~^~Lentils, sprouted, raw~^~LENTILS,SPROUTED,RAW~^^^^^0^~Lens culinaris~^6.25^2.44^8.37^3.57 -~11249~^~1100~^~Lentils, sprouted, cooked, stir-fried, without salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11250~^~1100~^~Lettuce, butterhead (includes boston and bibb types), raw~^~LETTUCE,BUTTERHEAD (INCL BOSTON&BIBB TYPES),RAW~^^^~Y~^~Outer leaves and core~^26^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11251~^~1100~^~Lettuce, cos or romaine, raw~^~LETTUCE,COS OR ROMAINE,RAW~^^^~Y~^~Core~^6^~Lactuca sativa var. logifolia~^6.25^2.44^8.37^3.57 -~11252~^~1100~^~Lettuce, iceberg (includes crisphead types), raw~^~LETTUCE,ICEBERG (INCL CRISPHEAD TYPES),RAW~^^^~Y~^~Core~^5^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11253~^~1100~^~Lettuce, green leaf, raw~^~LETTUCE,GRN LEAF,RAW~^^^~Y~^~Outer leaves, core and trimmings~^36^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11254~^~1100~^~Lotus root, raw~^~LOTUS ROOT,RAW~^^^^~Skins and ends of lobes~^21^~Nelumbo nucifera~^6.25^2.78^8.37^3.84 -~11255~^~1100~^~Lotus root, cooked, boiled, drained, without salt~^~LOTUS ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11257~^~1100~^~Lettuce, red leaf, raw~^~LETTUCE,RED LEAF,RAW~^^^^~Core and damaged outer leaves~^20^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11258~^~1100~^~Mountain yam, hawaii, raw~^~MOUNTAIN YAM,HAWAII,RAW~^^^^~Ends and skin~^17^~Dioscorea pentaphylla~^6.25^2.78^8.37^3.84 -~11259~^~1100~^~Mountain yam, hawaii, cooked, steamed, without salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11260~^~1100~^~Mushrooms, white, raw~^~MUSHROOMS,WHITE,RAW~^^^~Y~^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11261~^~1100~^~Mushrooms, white, cooked, boiled, drained, without salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11263~^~1100~^~Mushrooms, white, stir-fried~^~MUSHROOMS,WHITE,STIR-FRIED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11264~^~1100~^~Mushrooms, canned, drained solids~^~MUSHROOMS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11265~^~1100~^~Mushrooms, portabella, raw~^~MUSHROOMS,PORTABELLA,RAW~^~Portabello~^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11266~^~1100~^~Mushrooms, brown, italian, or crimini, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,RAW~^^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11267~^~1100~^~Mushrooms, shiitake, stir-fried~^~MUSHROOMS,SHIITAKE,STIR-FRIED~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11268~^~1100~^~Mushrooms, shiitake, dried~^~MUSHROOMS,SHIITAKE,DRIED~^^^~Y~^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11269~^~1100~^~Mushrooms, shiitake, cooked, without salt~^~MUSHROOMS,SHIITAKE,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11270~^~1100~^~Mustard greens, raw~^~MUSTARD GREENS,RAW~^^^~Y~^~Bases~^7^~Brassica juncea~^6.25^2.44^8.37^3.57 -~11271~^~1100~^~Mustard greens, cooked, boiled, drained, without salt~^~MUSTARD GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11272~^~1100~^~Mustard greens, frozen, unprepared~^~MUSTARD GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11273~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, without salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11274~^~1100~^~Mustard spinach, (tendergreen), raw~^~MUSTARD SPINACH,(TENDERGREEN),RAW~^^^^~Trimmings~^7^~Brassica rapa (Perviridis Group)~^6.25^2.44^8.37^3.57 -~11275~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, without salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11276~^~1100~^~New Zealand spinach, raw~^~NEW ZEALAND SPINACH,RAW~^^^^~Large stems and roots~^28^~Tetragonia tetragonioides~^6.25^2.44^8.37^3.57 -~11277~^~1100~^~New Zealand spinach, cooked, boiled, drained, without salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11278~^~1100~^~Okra, raw~^~OKRA,RAW~^^^~Y~^~Crown and tips~^14^~Abelmoschus esculentus~^6.25^2.44^8.37^3.57 -~11279~^~1100~^~Okra, cooked, boiled, drained, without salt~^~OKRA,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11280~^~1100~^~Okra, frozen, unprepared~^~OKRA,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11281~^~1100~^~Okra, frozen, cooked, boiled, drained, without salt~^~OKRA,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11282~^~1100~^~Onions, raw~^~ONIONS,RAW~^^^~Y~^~Stem ends, sprouts and defects~^10^~Allium cepa~^6.25^2.78^8.37^3.84 -~11283~^~1100~^~Onions, cooked, boiled, drained, without salt~^~ONIONS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11284~^~1100~^~Onions, dehydrated flakes~^~ONIONS,DEHYDRATED FLAKES~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11285~^~1100~^~Onions, canned, solids and liquids~^~ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11286~^~1100~^~Onions, yellow, sauteed~^~ONIONS,YEL,SAUTEED~^^^^^0^^6.25^2.78^8.37^3.84 -~11287~^~1100~^~Onions, frozen, chopped, unprepared~^~ONIONS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11288~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, without salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11289~^~1100~^~Onions, frozen, whole, unprepared~^~ONIONS,FRZ,WHL,UNPREP~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11290~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, without salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11291~^~1100~^~Onions, spring or scallions (includes tops and bulb), raw~^~ONIONS,SPRING OR SCALLIONS (INCL TOPS&BULB),RAW~^^^~Y~^~Rootlets~^4^~Allium cepa or Allium fistulosum~^6.25^2.44^8.37^3.57 -~11292~^~1100~^~Onions, young green, tops only~^~ONIONS,YOUNG GRN,TOPS ONLY~^^^~Y~^^0^~Allium cepa~^6.25^2.44^8.37^3.57 -~11293~^~1100~^~Onions, welsh, raw~^~ONIONS,WELSH,RAW~^^^^~Leaf tops and roots~^35^~Allium fistulosum~^6.25^2.78^8.37^3.84 -~11294~^~1100~^~Onions, sweet, raw~^~ONIONS,SWT,RAW~^^^^~Stem, root, and two outermost layers~^16^~Allium cepa~^6.25^2.78^8.37^3.84 -~11295~^~1100~^~Onion rings, breaded, par fried, frozen, unprepared~^~ONION RINGS,BREADED,PAR FR,FRZ,UNPREP~^^^^^0^^6.07^3.70^8.80^4.00 -~11296~^~1100~^~Onion rings, breaded, par fried, frozen, prepared, heated in oven~^~ONION RINGS,BREADED,PAR FR,FRZ,PREP,HTD IN OVEN~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~11297~^~1100~^~Parsley, fresh~^~PARSLEY,FRSH~^^^~Y~^~Tough stems~^5^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~11298~^~1100~^~Parsnips, raw~^~PARSNIPS,RAW~^^^^~Parings~^15^~Pastinaca sativa~^6.25^2.78^8.37^3.84 -~11299~^~1100~^~Parsnips, cooked, boiled, drained, without salt~^~PARSNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11300~^~1100~^~Peas, edible-podded, raw~^~PEAS,EDIBLE-PODDED,RAW~^~Snowpeas, Sugar snap peas~^^~Y~^~Ends and strings~^6^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11301~^~1100~^~Peas, edible-podded, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,BLD,DRND,WO/ SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11302~^~1100~^~Peas, edible-podded, frozen, unprepared~^~PEAS,EDIBLE-PODDED,FRZ,UNPREP~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11303~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,WO/SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11304~^~1100~^~Peas, green, raw~^~PEAS,GREEN,RAW~^^^~Y~^~Pods and inedible peas~^62^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11305~^~1100~^~Peas, green, cooked, boiled, drained, without salt~^~PEAS,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11306~^~1100~^~Peas, green, canned, regular pack, solids and liquids~^~PEAS,GRN,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11308~^~1100~^~Peas, green (includes baby and lesuer types), canned, drained solids, unprepared~^~PEAS,GRN (INCLUDES BABY & LESUER TYPES),CND,DRND SOL,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11310~^~1100~^~Peas, green, canned, seasoned, solids and liquids~^~PEAS,GRN,CND,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11311~^~1100~^~Peas, green, canned, drained solids, rinsed in tap water~^~PEAS,GRN,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~11312~^~1100~^~Peas, green, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~PEAS,GRN,FRZ,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11313~^~1100~^~Peas, green, frozen, cooked, boiled, drained, without salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11316~^~1100~^~Peas, mature seeds, sprouted, raw~^~PEAS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11317~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, without salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11318~^~1100~^~Peas and carrots, canned, regular pack, solids and liquids~^~PEAS&CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.98^8.37^3.16 -~11322~^~1100~^~Peas and carrots, frozen, unprepared~^~PEAS&CARROTS,FRZ,UNPREP~^^^^^0^^6.25^3.98^8.37^3.16 -~11323~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, without salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11324~^~1100~^~Peas and onions, canned, solids and liquids~^~PEAS&ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.40^8.37^4.00 -~11326~^~1100~^~Peas and onions, frozen, unprepared~^~PEAS&ONIONS,FRZ,UNPREP~^^^^^0^^6.25^3.40^8.37^4.00 -~11327~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, without salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.40^8.37^4.00 -~11329~^~1100~^~Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,GRN,CND,PODS,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11333~^~1100~^~Peppers, sweet, green, raw~^~PEPPERS,SWT,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11334~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, without salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11335~^~1100~^~Peppers, sweet, green, canned, solids and liquids~^~PEPPERS,SWT,GRN,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11337~^~1100~^~Peppers, sweet, green, frozen, chopped, unprepared~^~PEPPERS,SWT,GRN,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11338~^~1100~^~Peppers, sweet, green, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11339~^~1100~^~Peppers, sweet, green, sauteed~^~PEPPERS,SWT,GRN,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11344~^~1100~^~Pigeonpeas, immature seeds, raw~^~PIGEONPEAS,IMMAT SEEDS,RAW~^^^~Y~^~Pods~^52^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~11345~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, without salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11349~^~1100~^~Poi~^~POI~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11350~^~1100~^~Pokeberry shoots, (poke), raw~^~POKEBERRY SHOOTS,(POKE),RAW~^^^^^^~Phytolacca americana~^6.25^2.44^8.37^3.57 -~11351~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, without salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11352~^~1100~^~Potatoes, flesh and skin, raw~^~POTATOES,FLESH & SKN,RAW~^^^~Y~^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11353~^~1100~^~Potatoes, russet, flesh and skin, raw (Includes foods for USDA's Food Distribution Program)~^~POTATOES,RUSSET,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11354~^~1100~^~Potatoes, white, flesh and skin, raw~^~POTATOES,WHITE,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11355~^~1100~^~Potatoes, red, flesh and skin, raw~^~POTATOES,RED,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11356~^~1100~^~Potatoes, Russet, flesh and skin, baked~^~POTATOES,RUSSET,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11357~^~1100~^~Potatoes, white, flesh and skin, baked~^~POTATOES,WHITE,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11358~^~1100~^~Potatoes, red, flesh and skin, baked~^~POTATOES,RED,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11359~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, as purchased~^~POTATOES,FR FR,CRNKL OR REG,SALT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11360~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, oven-heated~^~POTATOES,FR FR,CRNKL/REG CUT,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.78^8.37^4.03 -~11361~^~1100~^~Potatoes, roasted, salt added in processing, frozen, unprepared~^~POTATOES,RSTD,SALT ADDED IN PROCESSING,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11362~^~1100~^~Potatoes, raw, skin~^~POTATOES,RAW,SKIN~^^^^^0^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11363~^~1100~^~Potatoes, baked, flesh, without salt~^~POTATOES,BKD,FLESH,WO/SALT~^^^~Y~^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11364~^~1100~^~Potatoes, baked, skin, without salt~^~POTATOES,BKD,SKN,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11365~^~1100~^~Potatoes, boiled, cooked in skin, flesh, without salt~^~POTATOES,BLD,CKD IN SKN,FLESH,WO/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11366~^~1100~^~Potatoes, boiled, cooked in skin, skin, without salt~^~POTATOES,BLD,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11367~^~1100~^~Potatoes, boiled, cooked without skin, flesh, without salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11368~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,WO/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11369~^~1100~^~Potatoes, microwaved, cooked in skin, skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11370~^~1100~^~Potatoes, hash brown, home-prepared~^~POTATOES,HASH BROWN,HOME-PREPARED~^~Potatoes, hashed brown~^^~Y~^^0^^^^^ -~11371~^~1100~^~Potatoes, mashed, home-prepared, whole milk and margarine added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & MARGARINE ADDED~^^^~Y~^^0^^^^^ -~11372~^~1100~^~Potatoes, scalloped, home-prepared with butter~^~POTATOES,SCALLPD,HOME-PREPARED W/BUTTER~^^^^^0^^^^^ -~11373~^~1100~^~Potatoes, au gratin, home-prepared from recipe using butter~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING BUTTER~^^^^^0^^^^^ -~11374~^~1100~^~Potatoes, canned, solids and liquids~^~POTATOES,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^4.03 -~11376~^~1100~^~Potatoes, canned, drained solids~^~POTATOES,CND,DRND SOL~^^^^^0^^6.25^2.78^8.37^4.03 -~11378~^~1100~^~Potatoes, mashed, dehydrated, flakes without milk, dry form~^~POTATOES,MSHD,DEHYD,FLAKES WO/MILK,DRY FORM~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11379~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FROM FLAKES WO/ MILK,WHL MILK & BUT~^^^~Y~^^0^^^^^ -~11380~^~1100~^~Potatoes, mashed, dehydrated, granules without milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES WO/MILK,DRY FORM~^^^^^0^^6.25^2.78^8.37^4.03 -~11381~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FR GRNLS WO/MILK,WHL MILK&BUTTER~^^^^^0^^6.29^3.21^8.82^4.02 -~11382~^~1100~^~Potatoes, mashed, dehydrated, granules with milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES W/MILK,DRY FORM~^^^~Y~^^0^^6.29^3.21^8.82^4.02 -~11383~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules with milk, water and margarine added~^~POTATOES,MSHD,DEHYD,PREP FROM GRAN W/ MILK,H2O & MARG ADDED~^^^^^0^^^^^ -~11384~^~1100~^~Potatoes, au gratin, dry mix, unprepared~^~POTATOES,AU GRATIN,DRY MIX,UNPREP~^^^^^0^^0.00^^^ -~11385~^~1100~^~Potatoes, au gratin, dry mix, prepared with water, whole milk and butter~^~POTATOES,AU GRATIN,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^0.00^^^ -~11386~^~1100~^~Potatoes, scalloped, dry mix, unprepared~^~POTATOES,SCALLPD,DRY MIX,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11387~^~1100~^~Potatoes, scalloped, dry mix, prepared with water, whole milk and butter~^~POTATOES,SCALLPD,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^6.25^2.78^8.37^4.03 -~11390~^~1100~^~Potatoes, hash brown, frozen, plain, unprepared~^~POTATOES,HASH BROWN,FRZ,PLN,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11391~^~1100~^~Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil~^~POTATOES,HASH BROWN,FRZ,PLN,PREP,PAN FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11392~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, unprepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11393~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, prepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,PREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11394~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,SHOESTRING,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11395~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,SHOESTRNG,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11396~^~1100~^~Potatoes, o'brien, frozen, unprepared~^~POTATOES,O'BRIEN,FRZ,UNPREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11397~^~1100~^~Potatoes, o'brien, frozen, prepared~^~POTATOES,O'BRIEN,FRZ,PREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11398~^~1100~^~Potato puffs, frozen, unprepared~^~POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11399~^~1100~^~Potato puffs, frozen, oven-heated~^~POTATO PUFFS,FRZ,OVEN-HEATED~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11401~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, without salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11402~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11403~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, home-prepared, oven heated~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,OVEN HTD~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~11406~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, as purchased~^~POTATOES,FRNCH FR,CTTG-CUT,SALT NOT ADDED,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11407~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,COTTAGE-CUT,SALT NOT ADDED,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11408~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, unprepared~^~POTATOES,FRZ,FRENCH FR,PAR FR,EXTRUDED,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11409~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, prepared, heated in oven, without salt~^~POTATOES,FRZ,FRCH FR,PAR FR,EXTRUDED,PREP,HTD OVEN,WO/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11410~^~1100~^~Potato wedges, frozen (Includes foods for USDA's Food Distribution Program)~^~POTATO WEDGES,FRZ (INCL FOODS FOR USDA'S FD DISTR PGM)~^^^^^0^^6.25^2.80^8.80^4.00 -~11411~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11412~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11413~^~1100~^~Potato flour~^~POTATO FLOUR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11414~^~1100~^~Potato salad, home-prepared~^~POTATO SALAD,HOME-PREPARED~^^^^^0^^^^^ -~11416~^~1100~^~Pumpkin flowers, raw~^~PUMPKIN FLOWERS,RAW~^^^^~Pistil and calyx~^65^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11417~^~1100~^~Pumpkin flowers, cooked, boiled, drained, without salt~^~PUMPKIN FLOWERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11418~^~1100~^~Pumpkin leaves, raw~^~PUMPKIN LEAVES,RAW~^^^^~Stem and tough leaves~^59^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11419~^~1100~^~Pumpkin leaves, cooked, boiled, drained, without salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11422~^~1100~^~Pumpkin, raw~^~PUMPKIN,RAW~^^^~Y~^~Seeds, rind and stem~^30^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11423~^~1100~^~Pumpkin, cooked, boiled, drained, without salt~^~PUMPKIN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11424~^~1100~^~Pumpkin, canned, without salt~^~PUMPKIN,CND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11426~^~1100~^~Pumpkin pie mix, canned~^~PUMPKIN PIE MIX,CANNED~^^^^^0^^6.25^2.90^8.40^3.80 -~11427~^~1100~^~Purslane, raw~^~PURSLANE,RAW~^^^^~Tough stems and leaves~^24^~Portulaca oleracea~^6.25^2.44^8.37^3.57 -~11428~^~1100~^~Purslane, cooked, boiled, drained, without salt~^~PURSLANE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11429~^~1100~^~Radishes, raw~^~RADISHES,RAW~^^^~Y~^~Stem ends, rootlets and trimmings~^10^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11430~^~1100~^~Radishes, oriental, raw~^~RADISHES,ORIENTAL,RAW~^^^~Y~^~Tops and parings~^21^~Raphanus sativus (Longipinratus Group)~^6.25^2.78^8.37^3.84 -~11431~^~1100~^~Radishes, oriental, cooked, boiled, drained, without salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11432~^~1100~^~Radishes, oriental, dried~^~RADISHES,ORIENTAL,DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11435~^~1100~^~Rutabagas, raw~^~RUTABAGAS,RAW~^^^~Y~^~Parings~^15^~Brassica napus var. napobrassica~^6.25^2.78^8.37^3.84 -~11436~^~1100~^~Rutabagas, cooked, boiled, drained, without salt~^~RUTABAGAS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11437~^~1100~^~Salsify, (vegetable oyster), raw~^~SALSIFY,(VEG OYSTER),RAW~^^^^~Scrapings and rootlets~^13^~Tragopogon porrifolius~^6.25^2.78^8.37^3.84 -~11438~^~1100~^~Salsify, cooked, boiled, drained, without salt~^~SALSIFY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11439~^~1100~^~Sauerkraut, canned, solids and liquids~^~SAUERKRAUT,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11442~^~1100~^~Seaweed, agar, raw~^~SEAWEED,AGAR,RAW~^^^~Y~^^0^~Eucheuma spp.~^6.25^2.44^8.37^3.57 -~11444~^~1100~^~Seaweed, irishmoss, raw~^~SEAWEED,IRISHMOSS,RAW~^^^~Y~^^0^~Chondrus crispus~^6.25^2.44^8.37^3.57 -~11445~^~1100~^~Seaweed, kelp, raw~^~SEAWEED,KELP,RAW~^^^~Y~^^0^~Laminaria spp.~^6.25^2.44^8.37^3.57 -~11446~^~1100~^~Seaweed, laver, raw~^~SEAWEED,LAVER,RAW~^^^~Y~^^0^~Porphyra laciniata~^6.25^2.44^8.37^3.57 -~11447~^~1100~^~Sesbania flower, raw~^~SESBANIA FLOWER,RAW~^^^^~Stems, pistil and calyx~^15^~Sesbania spp.~^6.25^2.44^8.37^3.57 -~11448~^~1100~^~Sesbania flower, cooked, steamed, without salt~^~SESBANIA FLOWER,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11450~^~1100~^~Soybeans, green, raw~^~SOYBEANS,GREEN,RAW~^^^^~Pods~^47^~Glycine max~^6.25^3.47^8.37^4.07 -~11451~^~1100~^~Soybeans, green, cooked, boiled, drained, without salt~^~SOYBEANS,GRN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11452~^~1100~^~Soybeans, mature seeds, sprouted, raw~^~SOYBEANS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Glycine max~^6.25^2.44^8.37^3.57 -~11453~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11454~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11457~^~1100~^~Spinach, raw~^~SPINACH,RAW~^^^~Y~^~Large stems and roots~^28^~Spinacia oleracea~^6.25^2.44^8.37^3.57 -~11458~^~1100~^~Spinach, cooked, boiled, drained, without salt~^~SPINACH,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11459~^~1100~^~Spinach, canned, regular pack, solids and liquids~^~SPINACH,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11461~^~1100~^~Spinach, canned, regular pack, drained solids~^~SPINACH,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11463~^~1100~^~Spinach, frozen, chopped or leaf, unprepared (Includes foods for USDA's Food Distribution Program)~^~SPINACH,FRZ,CHOPD OR LEAF,UNPREP~^^^~Y~^^0^^^2.44^8.37^3.57 -~11464~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11467~^~1100~^~Squash, summer, crookneck and straightneck, raw~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,RAW~^^^^~Ends~^1^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11468~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK & STRAIGHTNECK,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11471~^~1100~^~Squash, summer, crookneck and straightneck, canned, drained, solid, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CND,DRND,SOLID,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11473~^~1100~^~Squash, summer, crookneck and straightneck, frozen, unprepared~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11474~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11475~^~1100~^~Squash, summer, scallop, raw~^~SQUASH,SUMMER,SCALLOP,RAW~^^^^~Stem ends~^2^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11476~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, without salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11477~^~1100~^~Squash, summer, zucchini, includes skin, raw~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,RAW~^^^~Y~^~Ends~^5^^6.25^2.44^8.37^3.57 -~11478~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11479~^~1100~^~Squash, summer, zucchini, includes skin, frozen, unprepared~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11480~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11481~^~1100~^~Squash, summer, zucchini, italian style, canned~^~SQUASH,SMMR,ZUCCHINI,ITALIAN STYLE,CND~^^^^^0^^6.25^2.50^8.40^3.70 -~11482~^~1100~^~Squash, winter, acorn, raw~^~SQUASH,WINTER,ACORN,RAW~^^^^~Rind~^24^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11483~^~1100~^~Squash, winter, acorn, cooked, baked, without salt~^~SQUASH,WNTR,ACORN,CKD,BKD,WO/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11484~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11485~^~1100~^~Squash, winter, butternut, raw~^~SQUASH,WNTR,BUTTERNUT,RAW~^^^^~Seeds, rind and trimmings~^16^~Cucurbita moschata~^6.25^2.44^8.37^3.57 -~11486~^~1100~^~Squash, winter, butternut, cooked, baked, without salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11487~^~1100~^~Squash, winter, butternut, frozen, unprepared~^~SQUASH,WNTR,BUTTERNUT,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11488~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, without salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11489~^~1100~^~Squash, winter, hubbard, raw~^~SQUASH,WINTER,HUBBARD,RAW~^^^^~Seeds, rind, trimmings and cutting loss~^36^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11490~^~1100~^~Squash, winter, hubbard, baked, without salt~^~SQUASH,WNTR,HUBBARD,BKD,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11491~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11492~^~1100~^~Squash, winter, spaghetti, raw~^~SQUASH,WNTR,SPAGHETTI,RAW~^^^^~Rind and seeds~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11493~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11495~^~1100~^~Succotash, (corn and limas), raw~^~SUCCOTASH,(CORN&LIMAS),RAW~^^^^^0^^6.25^2.72^8.37^3.71 -~11496~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11497~^~1100~^~Succotash, (corn and limas), canned, with cream style corn~^~SUCCOTASH,(CORN&LIMAS),CND,W/CRM STYLE CORN~^^^^^0^^6.25^2.72^8.37^3.71 -~11499~^~1100~^~Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids~^~SUCCOTASH,(CORN&LIMAS),CND,W/WHL KERNEL CORN,SOL&LIQUIDS~^^^^^0^^6.25^2.72^8.37^3.71 -~11501~^~1100~^~Succotash, (corn and limas), frozen, unprepared~^~SUCCOTASH,(CORN&LIMAS),FRZ,UNPREP~^^^^^0^^6.25^2.72^8.37^3.71 -~11502~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.72^8.37^3.71 -~11503~^~1100~^~Water convolvulus,raw~^~WATER CONVOLVULUS,RAW~^~kangkong, water spinach~^^^~Tough stems~^23^~Ipomoea aquatica~^6.25^2.44^8.37^3.57 -~11504~^~1100~^~Water convolvulus, cooked, boiled, drained, without salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,WO/ SALT~^~Kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11505~^~1100~^~Sweet potato leaves, raw~^~SWEET POTATO LEAVES,RAW~^~Sweetpotato leaves~^^^~Tough stems and bruised leaves~^6^~Ipomoea batatas~^6.25^2.44^8.37^3.57 -~11506~^~1100~^~Sweet potato leaves, cooked, steamed, without salt~^~SWEET POTATO LEAVES,CKD,STMD,WO/ SALT~^~Sweetpotato leaves~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11507~^~1100~^~Sweet potato, raw, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,RAW,UNPREP~^~Sweetpotato~^^~Y~^~Parings and trimmings~^28^~Ipomoea batatas~^6.25^2.78^8.37^4.03 -~11508~^~1100~^~Sweet potato, cooked, baked in skin, flesh, without salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,WO/ SALT~^~Sweetpotato~^^~Y~^~Skin~^22^^6.25^2.78^8.37^4.03 -~11510~^~1100~^~Sweet potato, cooked, boiled, without skin~^~SWEET POTATO,CKD,BLD,WO/ SKN~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11512~^~1100~^~Sweet potato, canned, vacuum pack~^~SWEETPOTATO,CND,VACUUM PK~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11514~^~1100~^~Sweet potato, canned, mashed~^~SWEET POTATO,CND,MSHD~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11516~^~1100~^~Sweet potato, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,FRZ,UNPREP~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11517~^~1100~^~Sweet potato, frozen, cooked, baked, without salt~^~SWEET POTATO,FRZ,CKD,BKD,WO/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11518~^~1100~^~Taro, raw~^~TARO,RAW~^^^~Y~^~Ends and skin~^14^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11519~^~1100~^~Taro, cooked, without salt~^~TARO,COOKED,WITHOUT SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11520~^~1100~^~Taro leaves, raw~^~TARO LEAVES,RAW~^^^~Y~^~Stem, midrib and tough leaves~^40^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11521~^~1100~^~Taro leaves, cooked, steamed, without salt~^~TARO LEAVES,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11522~^~1100~^~Taro shoots, raw~^~TARO SHOOTS,RAW~^^^^~Ends~^12^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11523~^~1100~^~Taro shoots, cooked, without salt~^~TARO SHOOTS,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11525~^~1100~^~Taro, tahitian, raw~^~TARO,TAHITIAN,RAW~^^^^^^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11526~^~1100~^~Taro, tahitian, cooked, without salt~^~TARO,TAHITIAN,CKD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11527~^~1100~^~Tomatoes, green, raw~^~TOMATOES,GREEN,RAW~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11529~^~1100~^~Tomatoes, red, ripe, raw, year round average~^~TOMATOES,RED,RIPE,RAW,YEAR RND AVERAGE~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11530~^~1100~^~Tomatoes, red, ripe, cooked~^~TOMATOES,RED,RIPE,CKD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11531~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11533~^~1100~^~Tomatoes, red, ripe, canned, stewed~^~TOMATOES,RED,RIPE,CND,STWD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11537~^~1100~^~Tomatoes, red, ripe, canned, with green chilies~^~TOMATOES,RED,RIPE,CND,W/GRN CHILIES~^^^^^0^^6.25^2.44^8.37^3.57 -~11540~^~1100~^~Tomato juice, canned, with salt added~^~TOMATO JUC,CND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11546~^~1100~^~Tomato products, canned, paste, without salt added (Includes foods for USDA's Food Distribution Program)~^~TOMATO PRODUCTS,CND,PASTE,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11547~^~1100~^~Tomato products, canned, puree, without salt added~^~TOMATO PRODUCTS,CND,PUREE,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11548~^~1100~^~Tomato powder~^~TOMATO POWDER~^^^^^0^^6.25^2.44^8.37^3.57 -~11549~^~1100~^~Tomato products, canned, sauce~^~TOMATO PRODUCTS,CND,SAU~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11551~^~1100~^~Tomato products, canned, sauce, with mushrooms~^~TOMATO PRODUCTS,CND,SAU,W/MUSHROOMS~^^^^^0^^6.25^2.44^8.37^3.57 -~11553~^~1100~^~Tomato products, canned, sauce, with onions~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS~^^^^^0^^6.25^2.60^8.40^3.70 -~11555~^~1100~^~Tomato products, canned, sauce, with herbs and cheese~^~TOMATO PRODUCTS,CND,SAU,W/HERBS&CHS~^^^^^0^^6.28^3.00^8.80^3.50 -~11557~^~1100~^~Tomato products, canned, sauce, with onions, green peppers, and celery~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS,GRN PEPPERS,&CELERY~^^^~Y~^^0^^6.25^2.40^8.40^3.70 -~11559~^~1100~^~Tomato products, canned, sauce, with tomato tidbits~^~TOMATO PRODUCTS,CND,SAU,W/TOMATO TIDBITS~^^^^^0^^6.25^2.44^8.37^3.57 -~11563~^~1100~^~Tree fern, cooked, without salt~^~TREE FERN,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11564~^~1100~^~Turnips, raw~^~TURNIPS,RAW~^^^~Y~^~Parings~^19^~Brassica rapa (Rapifera Group)~^6.25^2.78^8.37^3.84 -~11565~^~1100~^~Turnips, cooked, boiled, drained, without salt~^~TURNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11566~^~1100~^~Turnips, frozen, unprepared~^~TURNIPS,FROZEN,UNPREPARED~^^^^^0^^6.25^2.78^8.37^3.84 -~11567~^~1100~^~Turnips, frozen, cooked, boiled, drained, without salt~^~TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11568~^~1100~^~Turnip greens, raw~^~TURNIP GREENS,RAW~^^^^~Root crown, tough stems and discarded leaves~^30^~Brassica rapa (Rapifera Group)~^6.25^2.44^8.37^3.57 -~11569~^~1100~^~Turnip greens, cooked, boiled, drained, without salt~^~TURNIP GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11570~^~1100~^~Turnip greens, canned, solids and liquids~^~TURNIP GRNS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11574~^~1100~^~Turnip greens, frozen, unprepared~^~TURNIP GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11575~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11576~^~1100~^~Turnip greens and turnips, frozen, unprepared~^~TURNIP GRNS&TURNIPS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11577~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11578~^~1100~^~Vegetable juice cocktail, canned~^~VEGETABLE JUC COCKTAIL,CND~^^^~Y~^^0^^6.25^^^ -~11579~^~1100~^~Vegetables, mixed, canned, solids and liquids~^~VEGETABLES,MXD,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11581~^~1100~^~Vegetables, mixed, canned, drained solids~^~VEGETABLES,MXD,CND,DRND SOL~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11583~^~1100~^~Vegetables, mixed, frozen, unprepared~^~VEGETABLES,MXD,FRZ,UNPREP~^^^^^0^^6.25^^^ -~11584~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, without salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11585~^~1100~^~Vegetable juice cocktail, low sodium, canned~^~VEGETABLE JUC COCKTAIL,LO NA,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11587~^~1100~^~Vinespinach, (basella), raw~^~VINESPINACH,(BASELLA),RAW~^^^^^0^~Basella alba~^6.25^2.44^8.37^3.57 -~11588~^~1100~^~Waterchestnuts, chinese, (matai), raw~^~WATERCHESTNUTS,CHINESE,(MATAI),RAW~^^^~Y~^~Skin~^23^~Eleocharis dulcis~^6.25^2.78^8.37^3.84 -~11590~^~1100~^~Waterchestnuts, chinese, canned, solids and liquids~^~WATERCHESTNUTS,CHINESE,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11591~^~1100~^~Watercress, raw~^~WATERCRESS,RAW~^^^~Y~^~Tough stems and ends~^8^~Nasturtium officinale~^6.25^2.44^8.37^3.57 -~11593~^~1100~^~Waxgourd, (chinese preserving melon), raw~^~WAXGOURD,(CHINESE PRESERVING MELON),RAW~^^^^~Stem, center and skin~^29^~Benincasa hispida~^6.25^2.44^8.37^3.57 -~11594~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11595~^~1100~^~Winged beans, immature seeds, raw~^~WINGED BNS,IMMAT SEEDS,RAW~^^^^~Ends~^2^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~11596~^~1100~^~Winged beans, immature seeds, cooked, boiled, drained, without salt~^~WINGED BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11597~^~1100~^~Winged bean leaves, raw~^~WINGED BEAN LEAVES,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.44^8.37^3.57 -~11599~^~1100~^~Winged bean tuber, raw~^~WINGED BEAN TUBER,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.78^8.37^3.84 -~11601~^~1100~^~Yam, raw~^~YAM,RAW~^^^~Y~^~Skin~^14^~Dioscorea spp.~^6.25^2.78^8.37^4.03 -~11602~^~1100~^~Yam, cooked, boiled, drained, or baked, without salt~^~YAM,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11603~^~1100~^~Yambean (jicama), raw~^~YAMBEAN (JICAMA),RAW~^^^~Y~^~Ends and skin~^8^~Pachyrhizus spp.~^6.25^2.78^8.37^4.03 -~11604~^~1100~^~Yambean (jicama), cooked, boiled, drained, without salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11605~^~1100~^~Beets, harvard, canned, solids and liquids~^~BEETS,HARVARD,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11609~^~1100~^~Beets, pickled, canned, solids and liquids~^~BEETS,PICKLED,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11613~^~1100~^~Borage, raw~^~BORAGE,RAW~^^^^~Tough leaves and stems~^20^~Borago officinalis~^6.25^2.44^8.37^3.57 -~11614~^~1100~^~Borage, cooked, boiled, drained, without salt~^~BORAGE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11615~^~1100~^~Chives, freeze-dried~^~CHIVES,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11616~^~1100~^~Dock, raw~^~DOCK,RAW~^^^^~Stalks~^30^~Rumex spp.~^6.25^2.44^8.37^3.57 -~11617~^~1100~^~Dock, cooked, boiled, drained, without salt~^~DOCK,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11618~^~1100~^~Eppaw, raw~^~EPPAW,RAW~^^^^^^~Perideridia oregana~^6.25^2.78^8.37^3.84 -~11620~^~1100~^~Drumstick pods, raw~^~DRUMSTICK PODS,RAW~^~Horseradish tree pods~^^^~Hard outer covering and fibers~^48^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11621~^~1100~^~Drumstick pods, cooked, boiled, drained, without salt~^~DRUMSTICK PODS,CKD,BLD,DRND,WO/ SALT~^~Horseradish tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11624~^~1100~^~Leeks, (bulb and lower-leaf portion), freeze-dried~^~LEEKS,(BULB&LOWER-LEAF PORTION),FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11625~^~1100~^~Parsley, freeze-dried~^~PARSLEY,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11626~^~1100~^~Beans, mung, mature seeds, sprouted, canned, drained solids~^~BEANS,MUNG,MATURE SEEDS,SPROUTED,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11632~^~1100~^~Peppers, jalapeno, canned, solids and liquids~^~PEPPERS,JALAPENO,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11637~^~1100~^~Radishes, white icicle, raw~^~RADISHES,WHITE ICICLE,RAW~^^^^~Parings~^35^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11640~^~1100~^~Shallots, freeze-dried~^~SHALLOTS,FREEZE-DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11641~^~1100~^~Squash, summer, all varieties, raw~^~SQUASH,SMMR,ALL VAR,RAW~^^^~Y~^~Ends~^5^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11642~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11643~^~1100~^~Squash, winter, all varieties, raw~^~SQUASH,WNTR,ALL VAR,RAW~^^^~Y~^~Seeds, rind and stem~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11644~^~1100~^~Squash, winter, all varieties, cooked, baked, without salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11645~^~1100~^~Sweet potato, canned, syrup pack, solids and liquids~^~SWEET POTATO,CND,SYRUP PK,SOL & LIQUIDS~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11647~^~1100~^~Sweet potato, canned, syrup pack, drained solids~^~SWEET POTATO,CND,SYRUP PK,DRND SOL~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11649~^~1100~^~Tomato products, canned, sauce, spanish style~^~TOMATO PRODUCTS,CND,SAU,SPANISH STYLE~^^^^^0^^6.25^2.64^8.37^3.70 -~11653~^~1100~^~Beans, pinto, mature seeds, sprouted, raw~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11654~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11655~^~1100~^~Carrot juice, canned~^~CARROT JUICE,CANNED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11656~^~1100~^~Corn pudding, home prepared~^~CORN PUDD,HOME PREP~^^^^^0^^^^^ -~11657~^~1100~^~Potatoes, mashed, home-prepared, whole milk added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK ADDED~^^^~Y~^^0^^^^^ -~11658~^~1100~^~Spinach souffle~^~SPINACH SOUFFLE~^^^^^0^^^^^ -~11659~^~1100~^~Sweet potato, cooked, candied, home-prepared~^~SWEET POTATO,CKD,CANDIED,HOME-PREPARED~^~Sweetpotato~^^~Y~^^0^^^^^ -~11660~^~1100~^~Tomatoes, red, ripe, cooked, stewed~^~TOMATOES,RED,RIPE,CKD,STWD~^^^^^0^^6.25^^^ -~11663~^~1100~^~Seaweed, agar, dried~^~SEAWEED,AGAR,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11666~^~1100~^~Seaweed, spirulina, raw~^~SEAWEED,SPIRULINA,RAW~^^^^^0^~Spirulina spp.~^6.25^2.44^8.37^3.57 -~11667~^~1100~^~Seaweed, spirulina, dried~^~SEAWEED,SPIRULINA,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11669~^~1100~^~Seaweed, wakame, raw~^~SEAWEED,WAKAME,RAW~^^^~Y~^^0^~Undaria spp.~^6.25^2.44^8.37^3.57 -~11670~^~1100~^~Peppers, hot chili, green, raw~^~PEPPERS,HOT CHILI,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^27^~Capsicum frutescens~^6.25^2.44^8.37^3.57 -~11671~^~1100~^~Potatoes, o'brien, home-prepared~^~POTATOES,O'BRIEN,HOME-PREPARED~^^^^^0^^6.25^2.70^8.40^4.00 -~11672~^~1100~^~Potato pancakes~^~POTATO PANCAKES~^^^^^0^^^^^ -~11674~^~1100~^~Potatoes, baked, flesh and skin, without salt~^~POTATOES,BKD,FLESH & SKN,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11675~^~1100~^~Potatoes, microwaved, cooked in skin, flesh and skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH&SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11676~^~1100~^~Radish seeds, sprouted, raw~^~RADISH SEEDS,SPROUTED,RAW~^^^^^0^~Raphanus sativus~^6.25^2.44^8.37^3.84 -~11677~^~1100~^~Shallots, raw~^~SHALLOTS,RAW~^^^^~Skins~^12^~Allium ascalonicum~^6.25^2.78^8.37^3.84 -~11683~^~1100~^~Carrot, dehydrated~^~CARROT,DEHYDRATED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11693~^~1100~^~Tomatoes, crushed, canned~^~TOMATOES,CRUSHED,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11695~^~1100~^~Tomatoes, orange, raw~^~TOMATOES,ORANGE,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11696~^~1100~^~Tomatoes, yellow, raw~^~TOMATOES,YELLOW,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11697~^~1100~^~Arrowroot, raw~^~ARROWROOT,RAW~^^^^~Peel~^15^~Maranta arundinacea~^6.25^2.78^8.37^3.84 -~11698~^~1100~^~Chrysanthemum leaves, raw~^~CHRYSANTHEMUM LEAVES,RAW~^^^^^0^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11700~^~1100~^~Amaranth leaves, cooked, boiled, drained, with salt~^~AMARANTH LEAVES,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11701~^~1100~^~Arrowhead, cooked, boiled, drained, with salt~^~ARROWHEAD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11702~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,W/SALT~^^^^~Stems and inedible parts of bracts and flower~^60^^6.25^2.44^8.37^3.57 -~11703~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11705~^~1100~^~Asparagus, cooked, boiled, drained, with salt~^~ASPARAGUS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11707~^~1100~^~Asparagus, canned, no salt added, solids and liquids~^~ASPARAGUS,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11709~^~1100~^~Asparagus, frozen, cooked, boiled, drained, with salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11710~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11711~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11712~^~1100~^~Bamboo shoots, cooked, boiled, drained, with salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11713~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11714~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11715~^~1100~^~Lima beans, immature seeds, canned, no salt added, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11716~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11717~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11718~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11719~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11720~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, with salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11721~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11722~^~1100~^~Beans, snap, yellow, raw~^~BEANS,SNAP,YELLOW,RAW~^^^^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11723~^~1100~^~Beans, snap, green, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11724~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11725~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11726~^~1100~^~Beans, snap, green, canned, no salt added, solids and liquids~^~BEANS,SNAP,GRN,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11727~^~1100~^~Beans, snap, yellow, canned, regular pack, solids and liquids~^~BEANS,SNAP,YEL,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11728~^~1100~^~Beans, snap, yellow, canned, no salt added, solids and liquids~^~BEANS,SNAP,YEL,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11729~^~1100~^~Beans, snap, green, canned, no salt added, drained solids~^~BEANS,SNAP,GRN,CND,NO SALT,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11730~^~1100~^~Beans, snap, yellow, frozen, all styles, unprepared~^~BEANS,SNAP,YEL,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11731~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11732~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11733~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11734~^~1100~^~Beets, cooked, boiled. drained, with salt~^~BEETS,CKD,BOILED. DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11735~^~1100~^~Beets, canned, no salt added, solids and liquids~^~BEETS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11736~^~1100~^~Beet greens, cooked, boiled, drained, with salt~^~BEET GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11737~^~1100~^~Borage, cooked, boiled, drained, with salt~^~BORAGE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11738~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, with salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~11739~^~1100~^~Broccoli, leaves, raw~^~BROCCOLI,LEAVES,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11740~^~1100~^~Broccoli, flower clusters, raw~^~BROCCOLI,FLOWER CLUSTERS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11741~^~1100~^~Broccoli, stalks, raw~^~BROCCOLI,STALKS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11742~^~1100~^~Broccoli, cooked, boiled, drained, with salt~^~BROCCOLI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11743~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11744~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11745~^~1100~^~Brussels sprouts, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11746~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11747~^~1100~^~Burdock root, cooked, boiled, drained, with salt~^~BURDOCK ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11748~^~1100~^~Butterbur, cooked, boiled, drained, with salt~^~BUTTERBUR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11749~^~1100~^~Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw~^~CABBAGE,COMMON,FRESHLY HARVEST,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11750~^~1100~^~Cabbage, common (danish, domestic, and pointed types), stored, raw~^~CABBAGE,COMMON (DANISH,DOMESTIC,&POINTED TYPES),STORED,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11751~^~1100~^~Cabbage, common, cooked, boiled, drained, with salt~^~CABBAGE,COMMON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11752~^~1100~^~Cabbage, red, cooked, boiled, drained, with salt~^~CABBAGE,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11753~^~1100~^~Cabbage, savoy, cooked, boiled, drained, with salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11754~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,W/SALT~^~pak choi, bok choy~^^^^0^^6.25^2.44^8.37^3.57 -~11755~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11756~^~1100~^~Cardoon, cooked, boiled, drained, with salt~^~CARDOON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11757~^~1100~^~Carrots, cooked, boiled, drained, with salt~^~CARROTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11758~^~1100~^~Carrots, canned, no salt added, solids and liquids~^~CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11759~^~1100~^~Carrots, canned, no salt added, drained solids~^~CARROTS,CND,NO SALT ,DRND SOL~^^^^^0^^6.25^2.78^8.37^3.84 -~11760~^~1100~^~Carrots, frozen, cooked, boiled, drained, with salt~^~CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11761~^~1100~^~Cauliflower, cooked, boiled, drained, with salt~^~CAULIFLOWER,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11762~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, with salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11763~^~1100~^~Celeriac, cooked, boiled, drained, with salt~^~CELERIAC,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11764~^~1100~^~Celery, cooked, boiled, drained, with salt~^~CELERY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11765~^~1100~^~Chard, swiss, cooked, boiled, drained, with salt~^~CHARD,SWISS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11766~^~1100~^~Chayote, fruit, cooked, boiled, drained, with salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,W/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11767~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, with salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11768~^~1100~^~Collards, cooked, boiled, drained, with salt~^~COLLARDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11769~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, with salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11770~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11771~^~1100~^~Corn, sweet, yellow, canned, no salt added, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11772~^~1100~^~Corn, sweet, yellow, canned, cream style, no salt added~^~CORN,SWT,YEL,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11773~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, no salt added~^~CORN,SWT,YEL,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11774~^~1100~^~Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS,CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11775~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11777~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11778~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11779~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, with salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11780~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, with salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11781~^~1100~^~Cress, garden, cooked, boiled, drained, with salt~^~CRESS,GARDEN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11782~^~1100~^~Dandelion greens, cooked, boiled, drained, with salt~^~DANDELION GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11783~^~1100~^~Eggplant, cooked, boiled, drained, with salt~^~EGGPLANT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11784~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, with salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11785~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11786~^~1100~^~Drumstick leaves, cooked, boiled, drained, with salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,W/ SALT~^~Horseradish tree~^^^^0^^6.25^2.44^8.37^3.57 -~11787~^~1100~^~Drumstick pods, cooked, boiled, drained, with salt~^~DRUMSTICK PODS,CKD,BLD,DRND,W/ SALT~^~Horseradish-tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11788~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11789~^~1100~^~Jute, potherb, cooked, boiled, drained, with salt~^~JUTE,POTHERB,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11790~^~1100~^~Kale, cooked, boiled, drained, with salt~^~KALE,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^^^ -~11791~^~1100~^~Kale, frozen, cooked, boiled, drained, with salt~^~KALE,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11793~^~1100~^~Kohlrabi, cooked, boiled, drained, with salt~^~KOHLRABI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11794~^~1100~^~Lambsquarters, cooked, boiled, drained, with salt~^~LAMBSQUARTERS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11795~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11796~^~1100~^~Lotus root, cooked, boiled, drained, with salt~^~LOTUS ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11797~^~1100~^~Mushrooms, white, cooked, boiled, drained, with salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,W/ SALT~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11798~^~1100~^~Mushrooms, shiitake, cooked, with salt~^~MUSHROOMS,SHIITAKE,CKD,W/SALT~^^^^^0^^6.25^2.62^8.37^3.48 -~11799~^~1100~^~Mustard greens, cooked, boiled, drained, with salt~^~MUSTARD GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11800~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, with salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11801~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, with salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11802~^~1100~^~New zealand spinach, cooked, boiled, drained, with salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11803~^~1100~^~Okra, cooked, boiled, drained, with salt~^~OKRA,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11804~^~1100~^~Okra, frozen, cooked, boiled, drained, with salt~^~OKRA,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11805~^~1100~^~Onions, cooked, boiled, drained, with salt~^~ONIONS,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11806~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, with salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11807~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, with salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11808~^~1100~^~Parsnips, cooked, boiled, drained, with salt~^~PARSNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11809~^~1100~^~Peas, edible-podded, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11810~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11811~^~1100~^~Peas, green, cooked, boiled, drained, with salt~^~PEAS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11812~^~1100~^~Peas, green, canned, no salt added, solids and liquids~^~PEAS,GRN,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11813~^~1100~^~Peas, green, canned, no salt added, drained solids~^~PEAS,GRN,CND,NO SALT,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~11814~^~1100~^~Peas, green, frozen, cooked, boiled, drained, with salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11815~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, with salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11816~^~1100~^~Peas and carrots, canned, no salt added, solids and liquids~^~PEAS&CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11817~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, with salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.98^8.37^3.16 -~11818~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, with salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.40^8.37^4.00 -~11819~^~1100~^~Peppers, hot chili, red, raw~^~PEPPERS,HOT CHILI,RED,RAW~^^^~Y~^~Stem ends, seeds and core~^27^^6.25^2.44^8.37^3.57 -~11820~^~1100~^~Peppers, hot chili, red, canned, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,RED,CND,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11821~^~1100~^~Peppers, sweet, red, raw~^~PEPPERS,SWT,RED,RAW~^^^~Y~^~Stem ends, seed and core~^18^^6.25^2.44^8.37^3.57 -~11822~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11823~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, without salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11824~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, with salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11825~^~1100~^~Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11826~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, with salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11827~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, with salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11828~^~1100~^~Potatoes, baked, flesh and skin, with salt~^~POTATOES,BKD,FLESH & SKN,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11829~^~1100~^~Potatoes, baked, flesh, with salt~^~POTATOES,BKD,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11830~^~1100~^~Potatoes, baked, skin only, with salt~^~POTATOES,BKD,SKN ONLY,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11831~^~1100~^~Potatoes, boiled, cooked in skin, flesh, with salt~^~POTATOES,BLD,CKD IN SKN,FLESH,W/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11832~^~1100~^~Potatoes, boiled, cooked in skin, skin, with salt~^~POTATOES,BLD,CKD IN SKN,SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11833~^~1100~^~Potatoes, boiled, cooked without skin, flesh, with salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,W/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11834~^~1100~^~Potatoes, microwaved, cooked, in skin, flesh and skin, with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,FLESH&SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11835~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, with salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11836~^~1100~^~Potatoes, microwaved, cooked, in skin, skin with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,SKN W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11837~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, with salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11840~^~1100~^~Potatoes, frozen, french fried, par fried, cottage-cut, prepared, heated in oven, with salt~^~POTATOES,FRZ,FRCH FR,PAR FR,CTTGE-CUT,PREP,HTD OVEN,W/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11841~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, oven-heated~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,OVN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11842~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, as purchased~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11843~^~1100~^~Potatoes, au gratin, home-prepared from recipe using margarine~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING MARGARINE~^^^^^0^^^^^ -~11844~^~1100~^~Potatoes, scalloped, home-prepared with margarine~^~POTATOES,SCALLPD,HOME-PREPARED W/MARGARINE~^^^^^0^^^^^ -~11845~^~1100~^~Pumpkin, cooked, boiled, drained, with salt~^~PUMPKIN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11846~^~1100~^~Pumpkin, canned, with salt~^~PUMPKIN,CANNED,WITH SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11847~^~1100~^~Pumpkin, flowers, cooked, boiled, drained, with salt~^~PUMPKIN,FLOWERS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11848~^~1100~^~Pumpkin leaves, cooked, boiled, drained, with salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11849~^~1100~^~Purslane, cooked, boiled, drained, with salt~^~PURSLANE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11850~^~1100~^~Radishes, oriental, cooked, boiled, drained, with salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11851~^~1100~^~Rutabagas, cooked, boiled, drained, with salt~^~RUTABAGAS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11852~^~1100~^~Salsify, cooked, boiled, drained, with salt~^~SALSIFY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11853~^~1100~^~Soybeans, green, cooked, boiled, drained, with salt~^~SOYBEANS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11854~^~1100~^~Spinach, cooked, boiled, drained, with salt~^~SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11855~^~1100~^~Spinach, canned, no salt added, solids and liquids~^~SPINACH,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11856~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11857~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11858~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11859~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11860~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, with salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11861~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11862~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11863~^~1100~^~Squash, winter, all varieties, cooked, baked, with salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11864~^~1100~^~Squash, winter, acorn, cooked, baked, with salt~^~SQUASH,WNTR,ACORN,CKD,BKD,W/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11865~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11866~^~1100~^~Squash, winter, butternut, cooked, baked, with salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11867~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, with salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11868~^~1100~^~Squash, winter, hubbard, baked, with salt~^~SQUASH,WNTR,HUBBARD,BKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11869~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11870~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11871~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11872~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11873~^~1100~^~Water convolvulus, cooked, boiled, drained, with salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,W/ SALT~^~kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11874~^~1100~^~Sweet potato leaves, cooked, steamed, with salt~^~SWEET POTATO LEAVES,CKD,STMD,W/ SALT~^~Sweetpotato leaves~^^^^0^^6.25^2.44^8.37^3.57 -~11875~^~1100~^~Sweet potato, cooked, baked in skin, flesh, with salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,W/ SALT~^~Sweetpotato~^^^~Skin~^22^^6.25^2.78^8.37^4.03 -~11876~^~1100~^~Sweet potato, cooked, boiled, without skin, with salt~^~SWEET POTATO,CKD,BLD,WO/ SKN,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11877~^~1100~^~Sweet potato, frozen, cooked, baked, with salt~^~SWEET POTATO,FRZ,CKD,BKD,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11878~^~1100~^~Taro, cooked, with salt~^~TARO,COOKED,WITH SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11879~^~1100~^~Taro, leaves, cooked, steamed, with salt~^~TARO,LEAVES,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11880~^~1100~^~Taro, shoots, cooked, with salt~^~TARO,SHOOTS,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11881~^~1100~^~Taro, tahitian, cooked, with salt~^~TARO,TAHITIAN,CKD,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11884~^~1100~^~Tomatoes, red, ripe, cooked, with salt~^~TOMATOES,RED,RIPE,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11885~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice, no salt added~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11886~^~1100~^~Tomato juice, canned, without salt added~^~TOMATO JUC,CND,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11888~^~1100~^~Tomato products, canned, puree, with salt added~^~TOMATO PRODUCTS,CND,PUREE,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11889~^~1100~^~Turnips, cooked, boiled, drained, with salt~^~TURNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11890~^~1100~^~Turnips, frozen, cooked, boiled, drained, with salt~^~TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11891~^~1100~^~Turnip greens, cooked, boiled, drained, with salt~^~TURNIP GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11892~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11893~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^^^ -~11894~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, with salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.97 -~11895~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11896~^~1100~^~Winged bean, immature seeds, cooked, boiled, drained, with salt~^~WINGED BEAN,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11897~^~1100~^~Yam, cooked, boiled, drained, or baked, with salt~^~YAM,CKD,BLD,DRND,OR BKD,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11898~^~1100~^~Yambean (jicama), cooked, boiled, drained, with salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11899~^~1100~^~Yardlong bean, cooked, boiled, drained, with salt~^~YARDLONG BEAN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11900~^~1100~^~Corn, sweet, white, raw~^~CORN,SWEET,WHITE,RAW~^^^^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11901~^~1100~^~Corn, sweet, white, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11902~^~1100~^~Corn, sweet, white, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11903~^~1100~^~Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11904~^~1100~^~Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11905~^~1100~^~Corn, sweet, white, canned, whole kernel, drained solids~^~CORN,SWT,WHITE,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11906~^~1100~^~Corn, sweet, white, canned, cream style, regular pack~^~CORN,SWT,WHITE,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11907~^~1100~^~Corn, sweet, white, canned, cream style, no salt added~^~CORN,SWT,WHITE,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11908~^~1100~^~Corn, sweet, white, canned, vacuum pack, regular pack~^~CORN,SWT,WHITE,CND,VACUUM PK,REG PK~^^^^^0^^6.25^2.44^8.37^3.57 -~11909~^~1100~^~Corn, sweet, white, canned, vacuum pack, no salt added~^~CORN,SWT,WHITE,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11910~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11911~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11912~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11913~^~1100~^~Corn, sweet, white, frozen, kernels on cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11914~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11915~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11916~^~1100~^~Peppers, sweet, red, canned, solids and liquids~^~PEPPERS,SWT,RED,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11917~^~1100~^~Peppers, sweet, red, frozen, chopped, unprepared~^~PEPPERS,SWT,RED,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11918~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11919~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, with salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11921~^~1100~^~Peppers, sweet, red, sauteed~^~PEPPERS,SWT,RED,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11922~^~1100~^~Sesbania flower, cooked, steamed, with salt~^~SESBANIA FLOWER,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11923~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11924~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11925~^~1100~^~Dock, cooked, boiled, drained, with salt~^~DOCK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11926~^~1100~^~Lentils, sprouted, cooked, stir-fried, with salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11927~^~1100~^~Mountain yam, hawaii, cooked, steamed, with salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,W/ SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11928~^~1100~^~Tree fern, cooked, with salt~^~TREE FERN,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11929~^~1100~^~Potatoes, mashed, prepared from granules, without milk, whole milk and margarine~^~POTATOES,MSHD,PREP FROM GRANULES,WO/MILK,WHL MILK&MARGARINE~^^^^^0^^6.25^2.78^8.37^4.03 -~11930~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and margarine added~^~POTATOES,MSHD,DEHYD,PREP FRM FLKS WO/ MILK,WHL MILK&MARG ADD~^^^^^0^^6.29^3.21^8.82^4.02 -~11931~^~1100~^~Peppers, sweet, red, freeze-dried~^~PEPPERS,SWT,RED,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11932~^~1100~^~Beans, snap, yellow, canned, regular pack, drained solids~^~BEANS,SNAP,YEL,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11933~^~1100~^~Beans, snap, yellow, canned, no salt added, drained solids~^~BEANS,SNAP,YEL,CND,NO SALT,DRND SOL~^^^^^0^^6.25^2.44^8.37^3.57 -~11934~^~1100~^~Potatoes, mashed, home-prepared, whole milk and butter added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & BUTTER ADDED~^^^^^0^^^^^ -~11935~^~1100~^~Catsup~^~Catsup~^~Ketchup~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11936~^~1100~^~Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,EXPOSED TO UV LT,RAW~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11937~^~1100~^~Pickles, cucumber, dill or kosher dill~^~PICKLES,CUCUMBER,DILL OR KOSHER DILL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11938~^~1100~^~Mushroom, white, exposed to ultraviolet light, raw~^~MUSHROOM,WHITE,EXPOSED TO UV LT,RAW~^^^^^0^^6.25^2.62^8.37^3.48 -~11939~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, grilled~^~MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,GRILLED~^~portobella~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11940~^~1100~^~Pickles, cucumber, sweet (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^^^^ -~11941~^~1100~^~Pickles, cucumber, sour~^~PICKLES,CUCUMBER,SOUR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11943~^~1100~^~Pimento, canned~^~PIMENTO,CANNED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11944~^~1100~^~Pickle relish, hot dog~^~PICKLE RELISH,HOT DOG~^^^^^0^^6.25^2.44^8.37^3.57 -~11945~^~1100~^~Pickle relish, sweet~^~PICKLE RELISH,SWEET~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11946~^~1100~^~Pickles, cucumber, sour, low sodium~^~PICKLES,CUCUMBER,SOUR,LO NA~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11947~^~1100~^~Pickles, cucumber, dill, reduced sodium~^~PICKLES,CUCUMBER,DILL,RED NA~^^^^^0^^6.25^2.44^8.37^3.57 -~11948~^~1100~^~Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT,LO NA (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^6.25^2.44^3.37^3.57 -~11949~^~1100~^~Catsup, low sodium~^~CATSUP,LOW SODIUM~^~Ketchup, low sodium~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11950~^~1100~^~Mushrooms, enoki, raw~^~MUSHROOMS,ENOKI,RAW~^^^^~Stems and trimmings~^16^~Flammulina veluptipes~^6.25^2.62^8.37^3.48 -~11951~^~1100~^~Peppers, sweet, yellow, raw~^~PEPPERS,SWEET,YELLOW,RAW~^^^^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11952~^~1100~^~Radicchio, raw~^~RADICCHIO,RAW~^^^~Y~^~Core and leaf ends~^9^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11953~^~1100~^~Squash, zucchini, baby, raw~^~SQUASH,ZUCCHINI,BABY,RAW~^^^^~Ends~^13^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11954~^~1100~^~Tomatillos, raw~^~TOMATILLOS,RAW~^^^~Y~^^^~Physalis philadelphica~^6.25^2.44^8.37^3.57 -~11955~^~1100~^~Tomatoes, sun-dried~^~TOMATOES,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11956~^~1100~^~Tomatoes, sun-dried, packed in oil, drained~^~TOMATOES,SUN-DRIED,PACKED IN OIL,DRND~^^^^^0^^6.25^2.44^8.37^3.57 -~11957~^~1100~^~Fennel, bulb, raw~^~FENNEL,BULB,RAW~^^^~Y~^~Stalk, leaves and core~^28^~Foeniculum vulgare~^6.25^2.44^8.37^3.57 -~11958~^~1100~^~Pickle relish, hamburger~^~PICKLE RELISH,HAMBURGER~^^^^^0^^6.25^2.44^3.37^3.57 -~11959~^~1100~^~Arugula, raw~^~ARUGULA,RAW~^^^~Y~^~Roots, stems and yellowed leaves~^40^~Eruca sativa~^6.25^2.44^8.37^3.57 -~11960~^~1100~^~Carrots, baby, raw~^~CARROTS,BABY,RAW~^^^^^0^~Daucus carota~^6.25^2.78^8.37^3.84 -~11961~^~1100~^~Hearts of palm, canned~^~HEARTS OF PALM,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11962~^~1100~^~Peppers, hot chile, sun-dried~^~PEPPERS,HOT CHILE,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11963~^~1100~^~Nopales, raw~^~NOPALES,RAW~^^^~Y~^~Spines and dark spots~^4^~Nopalea cochenillifera~^6.25^2.44^8.37^3.57 -~11964~^~1100~^~Nopales, cooked, without salt~^~NOPALES,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11965~^~1100~^~Cauliflower, green, raw~^~CAULIFLOWER,GREEN,RAW~^^^~Y~^~Leaf stalks, core and trimmings~^39^~Brassica oleracea (Botrytis group)~^6.25^2.44^8.37^3.57 -~11967~^~1100~^~Cauliflower, green, cooked, no salt added~^~CAULIFLOWER,GRN,CKD,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11968~^~1100~^~Cauliflower, green, cooked, with salt~^~CAULIFLOWER,GRN,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11969~^~1100~^~Broccoli, chinese, cooked~^~BROCCOLI,CHINESE,COOKED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11970~^~1100~^~Cabbage, napa, cooked~^~CABBAGE,NAPA,COOKED~^^^^^0^~Brassica oleracea~^6.25^2.44^8.37^3.57 -~11972~^~1100~^~Lemon grass (citronella), raw~^~LEMON GRASS (CITRONELLA),RAW~^^^^~Tough stem~^35^~Cymbopogon citratus~^6.25^2.44^8.37^3.57 -~11973~^~1100~^~Beans, fava, in pod, raw~^~BEANS,FAVA,IN POD,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^2.44^8.37^3.57 -~11974~^~1100~^~Grape leaves, raw~^~GRAPE LEAVES,RAW~^^^~Y~^~Tough stems~^5^~Vitis vinifera~^6.25^2.44^8.37^3.57 -~11975~^~1100~^~Grape leaves, canned~^~GRAPE LEAVES,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11976~^~1100~^~Pepper, banana, raw~^~PEPPER,BANANA,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11977~^~1100~^~Peppers, serrano, raw~^~PEPPERS,SERRANO,RAW~^^^~Y~^~Stems~^3^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11978~^~1100~^~Peppers, ancho, dried~^~PEPPERS,ANCHO,DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11979~^~1100~^~Peppers, jalapeno, raw~^~PEPPERS,JALAPENO,RAW~^^^~Y~^~Stems and seeds~^8^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11980~^~1100~^~Peppers, chili, green, canned~^~PEPPERS,CHILI,GRN,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11981~^~1100~^~Peppers, hungarian, raw~^~PEPPERS,HUNGARIAN,RAW~^^^^~Stems~^12^^6.25^2.44^8.37^3.57 -~11982~^~1100~^~Peppers, pasilla, dried~^~PEPPERS,PASILLA,DRIED~^^^^~Stems~^6^^6.25^2.44^8.37^3.57 -~11983~^~1100~^~Pickles, chowchow, with cauliflower onion mustard, sweet~^~PICKLES,CHOWCHOW,W/CAULIFLOWER ONION MUSTARD,SWT~^^^~Y~^^0^^^^^ -~11984~^~1100~^~Epazote, raw~^~EPAZOTE,RAW~^^^^^0^~Chenopodium ambrosiodes~^6.25^2.44^8.37^3.57 -~11985~^~1100~^~Fireweed, leaves, raw~^~FIREWEED,LEAVES,RAW~^^^^~Stems and flowers~^65^~Epilobium angustifolium~^6.25^2.44^8.37^3.57 -~11986~^~1100~^~Malabar spinach, cooked~^~MALABAR SPINACH,COOKED~^^^^~Stems~^30^^6.25^2.44^8.37^3.57 -~11987~^~1100~^~Mushrooms, oyster, raw~^~MUSHROOMS,OYSTER,RAW~^^^^~Stems~^11^~Pleurotus ostreatus~^6.25^2.62^8.37^3.48 -~11988~^~1100~^~Fungi, Cloud ears, dried~^~FUNGI,CLOUD EARS,DRIED~^^^^^0^^6.25^2.62^8.37^3.48 -~11989~^~1100~^~Mushrooms, straw, canned, drained solids~^~MUSHROOMS,STRAW,CND,DRND SOL~^^^^^0^~Volvariella volvace~^6.25^2.62^8.37^3.48 -~11990~^~1100~^~Wasabi, root, raw~^~WASABI,ROOT,RAW~^^^^~Peel~^23^~Wasabia japonica~^6.25^2.78^8.37^3.84 -~11991~^~1100~^~Yautia (tannier), raw~^~YAUTIA (TANNIER),RAW~^^^^~Peel~^14^~Xanthosoma sagittifolium~^6.25^2.78^8.37^3.84 -~11992~^~1100~^~Mushrooms, white, microwaved~^~MUSHROOMS,WHITE,MICROWAVED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11993~^~1100~^~Mushrooms, maitake, raw~^~MUSHROOMS,MAITAKE,RAW~^^^^^0^~Grifola frondosa~^6.25^2.62^8.37^3.48 -~11994~^~1100~^~Broccoli, chinese, raw~^~BROCCOLI,CHINESE,RAW~^~gai-lan, kai-lan~^^~Y~^~Base and damaged leaves~^12^~ Brassica oleracea var. alboglabra~^6.25^2.44^8.37^3.57 -~11995~^~1100~^~Fiddlehead ferns, raw~^~FIDDLEHEAD FERNS,RAW~^^^^^^~Matteuccia struthioreris~^6.25^2.44^8.37^3.57 -~11996~^~1100~^~Fiddlehead ferns, frozen, unprepared~^~FIDDLEHEAD FERNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11998~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, raw~^~MUSHROOMS,PORTABELLA,EXPOSED TO ULTRAVIOLET LT,RAW~^~portobella~^^^~Trimmings~^3^^6.25^2.62^8.37^3.48 -~12001~^~1200~^~Seeds, breadfruit seeds, raw~^~BREADFRUIT SEEDS,RAW~^^^^~Shells~^32^~Artocarpus altilis~^5.30^3.47^8.37^4.07 -~12003~^~1200~^~Seeds, breadfruit seeds, boiled~^~BREADFRUIT SEEDS,BOILED~^^^^~Soft shells~^64^^5.30^3.47^8.37^4.07 -~12004~^~1200~^~Seeds, breadnut tree seeds, raw~^~SEEDS,BREADNUT TREE SEEDS,RAW~^^^^^0^~Brosimum alicastrum~^5.30^3.47^8.37^4.07 -~12005~^~1200~^~Seeds, breadnut tree seeds, dried~^~SEEDS,BREADNUT TREE SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12006~^~1200~^~Seeds, chia seeds, dried~^~CHIA SEEDS,DRIED~^^^^^0^~Salvia hispanica~^5.30^3.47^8.37^4.07 -~12007~^~1200~^~Seeds, cottonseed flour, partially defatted (glandless)~^~COTTONSEED FLR,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12008~^~1200~^~Seeds, cottonseed flour, low fat (glandless)~^~COTTONSEED FLR,LOFAT (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12011~^~1200~^~Seeds, cottonseed meal, partially defatted (glandless)~^~COTTONSEED MEAL,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12012~^~1200~^~Seeds, hemp seed, hulled~^~SEEDS,HEMP SD,HULLED~^^^^^0^~Cannabis sativa L.~^5.30^3.47^8.37^4.07 -~12013~^~1200~^~Seeds, lotus seeds, dried~^~LOTUS SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12014~^~1200~^~Seeds, pumpkin and squash seed kernels, dried~^~PUMPKIN&SQUASH SD KRNLS,DRIED~^~pepitas~^^~Y~^~Hulls~^26^^5.30^3.47^8.37^4.07 -~12016~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, without salt~^~PUMPKIN&SQUASH SD KRNLS,RSTD,WO/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12021~^~1200~^~Seeds, safflower seed kernels, dried~^~SAFFLOWER SD KRNLS,DRIED~^^^^~Hulls~^49^~Carthamus tinctorius~^5.30^3.47^8.37^4.07 -~12022~^~1200~^~Seeds, safflower seed meal, partially defatted~^~SAFFLOWER SD MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12023~^~1200~^~Seeds, sesame seeds, whole, dried~^~SESAME SEEDS,WHOLE,DRIED~^^^~Y~^^0^~Sesamum indicum~^5.30^3.47^8.37^4.07 -~12024~^~1200~^~Seeds, sesame seeds, whole, roasted and toasted~^~SESAME SEEDS,WHL,RSTD&TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12029~^~1200~^~Seeds, sesame seed kernels, toasted, without salt added (decorticated)~^~SESAME SD KRNLS,TSTD,WO/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12032~^~1200~^~Seeds, sesame flour, partially defatted~^~SESAME FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12033~^~1200~^~Seeds, sesame flour, low-fat~^~SESAME FLOUR,LOW-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12034~^~1200~^~Seeds, sesame meal, partially defatted~^~SESAME MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12036~^~1200~^~Seeds, sunflower seed kernels, dried~^~SUNFLOWER SD KRNLS,DRIED~^^^~Y~^~Hulls~^46^~Helianthus annuus~^5.30^3.47^8.37^4.07 -~12037~^~1200~^~Seeds, sunflower seed kernels, dry roasted, without salt~^~SUNFLOWER SD KRNLS,DRY RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12038~^~1200~^~Seeds, sunflower seed kernels, oil roasted, without salt~^~SUNFLOWER SD KRNLS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12039~^~1200~^~Seeds, sunflower seed kernels, toasted, without salt~^~SUNFLOWER SD KRNLS,TSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12040~^~1200~^~Seeds, sunflower seed butter, without salt~^~SUNFLOWER SD BUTTER,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12041~^~1200~^~Seeds, sunflower seed flour, partially defatted~^~SUNFLOWER SD FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12058~^~1200~^~Nuts, acorns, raw~^~ACORNS,RAW~^^^^~Shells~^38^~Quercus spp.~^5.30^3.47^8.37^4.07 -~12059~^~1200~^~Nuts, acorns, dried~^~ACORNS,DRIED~^^^^~Shells~^38^^5.30^3.47^8.37^4.07 -~12060~^~1200~^~Nuts, acorn flour, full fat~^~ACORN FLOUR,FULL FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12061~^~1200~^~Nuts, almonds~^~ALMONDS~^^^~Y~^~Shells~^60^~Prunus dulcis~^5.18^3.47^8.37^4.07 -~12062~^~1200~^~Nuts, almonds, blanched~^~ALMONDS,BLANCHED~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12063~^~1200~^~Nuts, almonds, dry roasted, without salt added~^~ALMONDS,DRY RSTD,WO/SALT~^~Includes USDA commodity food A255, A263~^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12065~^~1200~^~Nuts, almonds, oil roasted, without salt added~^~ALMONDS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12071~^~1200~^~Nuts, almond paste~^~ALMOND PASTE~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12077~^~1200~^~Nuts, beechnuts, dried~^~BEECHNUTS,DRIED~^^^^~Shells~^39^~Fagus spp.~^5.30^3.47^8.37^4.07 -~12078~^~1200~^~Nuts, brazilnuts, dried, unblanched~^~BRAZILNUTS,DRIED,UNBLANCHED~^~brazil nuts~^^~Y~^~Shells~^49^~Bertholletia excelsa~^5.46^3.47^8.37^4.07 -~12084~^~1200~^~Nuts, butternuts, dried~^~BUTTERNUTS,DRIED~^^^^~Shells~^73^~Juglans cinerea~^5.30^3.47^8.37^4.07 -~12085~^~1200~^~Nuts, cashew nuts, dry roasted, without salt added~^~CASHEW NUTS,DRY RSTD,WO/SALT~^^^~Y~^^0^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12086~^~1200~^~Nuts, cashew nuts, oil roasted, without salt added~^~CASHEW NUTS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12087~^~1200~^~Nuts, cashew nuts, raw~^~NUTS,CASHEW NUTS,RAW~^^^^^^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12088~^~1200~^~Nuts, cashew butter, plain, without salt added~^~CASHEW BUTTER,PLN,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12093~^~1200~^~Nuts, chestnuts, chinese, raw~^~CHESTNUTS,CHINESE,RAW~^^^^~Shells~^16^~Castanea mollissima~^5.30^3.47^8.37^4.07 -~12094~^~1200~^~Nuts, chestnuts, chinese, dried~^~CHESTNUTS,CHINESE,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12095~^~1200~^~Nuts, chestnuts, chinese, boiled and steamed~^~CHESTNUTS,CHINESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12096~^~1200~^~Nuts, chestnuts, chinese, roasted~^~CHESTNUTS,CHINESE,ROASTED~^^^^~Shells~^25^^5.30^3.47^8.37^4.07 -~12097~^~1200~^~Nuts, chestnuts, european, raw, unpeeled~^~CHESTNUTS,EUROPEAN,RAW,UNPEELED~^^^^~Shells~^26^~Castanea sativa~^5.30^3.47^8.37^4.07 -~12098~^~1200~^~Nuts, chestnuts, european, raw, peeled~^~CHESTNUTS,EUROPEAN,RAW,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12099~^~1200~^~Nuts, chestnuts, european, dried, unpeeled~^~CHESTNUTS,EUROPEAN,DRIED,UNPEELED~^^^^~Shells~^20^^5.30^3.47^8.37^4.07 -~12100~^~1200~^~Nuts, chestnuts, european, dried, peeled~^~CHESTNUTS,EUROPEAN,DRIED,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12101~^~1200~^~Nuts, chestnuts, european, boiled and steamed~^~CHESTNUTS,EUROPEAN,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12104~^~1200~^~Nuts, coconut meat, raw~^~COCONUT MEAT,RAW~^^^~Y~^~Shells (brown), skin, water~^48^~Cocos nucifera~^5.30^3.47^8.37^4.07 -~12108~^~1200~^~Nuts, coconut meat, dried (desiccated), not sweetened~^~COCONUT MEAT,DRIED (DESICCATED),NOT SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12109~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, packaged~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,PACKAGED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12110~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, canned~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,CND~^^^^^0^^5.30^3.47^8.37^4.07 -~12114~^~1200~^~Nuts, coconut meat, dried (desiccated), toasted~^~COCONUT MEAT,DRIED (DESICCATED),TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12115~^~1200~^~Nuts, coconut cream, raw (liquid expressed from grated meat)~^~COCONUT CRM,RAW (LIQ EXPRESSED FROM GRATED MEAT)~^^^^^0^^5.30^3.47^8.37^4.07 -~12116~^~1200~^~Nuts, coconut cream, canned, sweetened~^~NUTS,COCNT CRM,CND,SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12117~^~1200~^~Nuts, coconut milk, raw (liquid expressed from grated meat and water)~^~COCONUT MILK,RAW (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12118~^~1200~^~Nuts, coconut milk, canned (liquid expressed from grated meat and water)~^~COCONUT MILK,CND (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12119~^~1200~^~Nuts, coconut water (liquid from coconuts)~^~COCONUT H2O (LIQ FROM COCONUTS)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12120~^~1200~^~Nuts, hazelnuts or filberts~^~HAZELNUTS OR FILBERTS~^^^~Y~^~Shells~^59^~Corylus spp.~^5.30^3.47^8.37^4.07 -~12121~^~1200~^~Nuts, hazelnuts or filberts, blanched~^~HAZELNUTS OR FILBERTS,BLANCHED~^^^^^0^^5.30^3.47^8.37^4.07 -~12122~^~1200~^~Nuts, hazelnuts or filberts, dry roasted, without salt added~^~HAZELNUTS OR FILBERTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12127~^~1200~^~Nuts, ginkgo nuts, raw~^~GINKGO NUTS,RAW~^^^^~Shells~^24^~Ginkgo biloba~^5.30^3.47^8.37^4.07 -~12128~^~1200~^~Nuts, ginkgo nuts, dried~^~GINKGO NUTS,DRIED~^^^^~Shells~^24^^5.30^3.47^8.37^4.07 -~12129~^~1200~^~Nuts, ginkgo nuts, canned~^~GINKGO NUTS,CANNED~^^^^~Liquid~^41^^5.30^3.47^8.37^4.07 -~12130~^~1200~^~Nuts, hickorynuts, dried~^~HICKORYNUTS,DRIED~^^^^~Shells~^68^~Carya spp.~^5.30^3.47^8.37^4.07 -~12131~^~1200~^~Nuts, macadamia nuts, raw~^~MACADAMIA NUTS,RAW~^^^^~Shells~^69^~Macadamia integrifolia, M. tetraphylla~^5.30^3.47^8.37^4.07 -~12132~^~1200~^~Nuts, macadamia nuts, dry roasted, without salt added~^~MACADAMIA NUTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12135~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, without salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12136~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, PLANTERS pistachio blend~^~NUTS,MXD NUTS,DRY RSTD,W/PNUTS,SALT ADD,PLANTERS PSTACH BLND~^^~Planters- Kraft Foods Group~^^^0^^5.30^3.47^8.37^4.07 -~12137~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, without salt added~^~MIXED NUTS,OIL RSTD,W/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12138~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, without salt added~^~MIXED NUTS,OIL RSTD,WO/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12140~^~1200~^~Nuts, formulated, wheat-based, unflavored, with salt added~^~FORMULATED,WHEAT-BASED,UNFLAVORED,W/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12141~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER~^~NUTS,MXD NUTS,DRY RSTD,W/ PNUTS,SALT ADDED,CHOSEN ROASTER~^^~Chosen Roaster~^^^0^^6.25^3.47^8.37^4.07 -~12142~^~1200~^~Nuts, pecans~^~PECANS~^^^~Y~^~Shells~^47^~Carya illinoinensis~^5.30^3.47^8.37^4.07 -~12143~^~1200~^~Nuts, pecans, dry roasted, without salt added~^~PECANS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12144~^~1200~^~Nuts, pecans, oil roasted, without salt added~^~PECANS,OIL RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12145~^~1200~^~Nuts, pilinuts, dried~^~NUTS,PILINUTS,DRIED~^^^^~Shells~^81^~Canarium ovatum~^5.30^3.47^8.37^4.07 -~12147~^~1200~^~Nuts, pine nuts, dried~^~NUTS,PINE NUTS,DRIED~^^^~Y~^~Shells~^23^~Pinus spp.~^5.30^3.47^8.37^4.07 -~12149~^~1200~^~Nuts, pine nuts, pinyon, dried~^~PINE NUTS,PINYON,DRIED~^~pinon~^^^~Shells~^43^~Pinus edulis~^5.30^3.47^8.37^4.07 -~12151~^~1200~^~Nuts, pistachio nuts, raw~^~PISTACHIO NUTS,RAW~^^^^~Shells~^47^~Pistacia vera~^5.30^3.47^8.37^4.07 -~12152~^~1200~^~Nuts, pistachio nuts, dry roasted, without salt added~^~PISTACHIO NUTS,DRY RSTD,WO/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12154~^~1200~^~Nuts, walnuts, black, dried~^~WALNUTS,BLACK,DRIED~^^^~Y~^~Shells~^76^~Juglans nigra~^5.30^3.47^8.37^4.07 -~12155~^~1200~^~Nuts, walnuts, english~^~WALNUTS,ENGLISH~^^^~Y~^~Shells~^55^~Juglans regia~^5.30^3.47^8.37^4.07 -~12156~^~1200~^~Nuts, walnuts, glazed~^~NUTS,WALNUTS,GLAZED~^^^^^0^^6.25^^^ -~12157~^~1200~^~Nuts, walnuts, dry roasted, with salt added~^~NUTS,WALNUTS,DRY RSTD,W/ SALT ADDED~^^^~Y~^^0^^^^^ -~12158~^~1200~^~Seeds, breadfruit seeds, roasted~^~BREADFRUIT SEEDS,ROASTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12160~^~1200~^~Seeds, cottonseed kernels, roasted (glandless)~^~COTTONSEED KRNLS,RSTD (GLANDLESS)~^^^^^0^~Gossypium spp.~^5.30^3.47^8.37^4.07 -~12163~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, without salt~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,WO/SALT~^^^^^0^~Cucurbita spp.~^5.30^3.47^8.37^4.07 -~12166~^~1200~^~Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)~^~SESAME BUTTER,TAHINI,FROM RSTD&TSTD KRNLS (MOST COMMON TYPE)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12167~^~1200~^~Nuts, chestnuts, european, roasted~^~CHESTNUTS,EUROPEAN,RSTD~^^^~Y~^~Shells and skins~^37^^5.30^3.47^8.37^4.07 -~12169~^~1200~^~Seeds, sesame butter, paste~^~SESAME BUTTER,PASTE~^^^^^0^^5.30^3.47^8.37^4.07 -~12170~^~1200~^~Seeds, sesame flour, high-fat~^~SESAME FLOUR,HIGH-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12171~^~1200~^~Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)~^~SESAME BUTTER,TAHINI,FROM UNROASTED KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12174~^~1200~^~Seeds, watermelon seed kernels, dried~^~WATERMELON SD KRNLS,DRIED~^^^^~Hard seed coat~^63^~Citrullus lanatus~^5.30^3.47^8.37^4.07 -~12175~^~1200~^~Nuts, chestnuts, japanese, dried~^~CHESTNUTS,JAPANESE,DRIED~^^^^~Shells~^34^^5.30^3.47^8.37^4.07 -~12176~^~1200~^~Nuts, coconut milk, frozen (liquid expressed from grated meat and water)~^~COCONUT MILK,FRZ (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12177~^~1200~^~Nuts, coconut meat, dried (desiccated), creamed~^~COCONUT MEAT,DRIED (DESICCATED),CRMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12179~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, shredded~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,SHREDDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12193~^~1200~^~Seeds, sisymbrium sp. seeds, whole, dried~^~SISYMBRIUM SP. SEEDS,WHL,DRIED~^^^^^0^~Sisymbrium spp.~^5.30^3.47^8.37^4.07 -~12195~^~1200~^~Nuts, almond butter, plain, without salt added~^~ALMOND BUTTER,PLN,WO/SALT~^^^^^0^^5.18^3.47^8.37^4.07 -~12198~^~1200~^~Seeds, sesame butter, tahini, from raw and stone ground kernels~^~SESAME BUTTER,TAHINI,FROM RAW&STONE GROUND KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12200~^~1200~^~Nuts, formulated, wheat-based, all flavors except macadamia, without salt~^~FORMULATED,WHEAT-BASED,ALL FLAVORS XCPT MACADAMIA,WO/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12201~^~1200~^~Seeds, sesame seed kernels, dried (decorticated)~^~SESAME SD KRNLS,DRIED (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12202~^~1200~^~Nuts, chestnuts, japanese, raw~^~CHESTNUTS,JAPANESE,RAW~^^^^~Shells~^34^~Castanea crenata~^5.30^3.47^8.37^4.07 -~12203~^~1200~^~Nuts, chestnuts, japanese, boiled and steamed~^~CHESTNUTS,JAPANESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12204~^~1200~^~Nuts, chestnuts, japanese, roasted~^~CHESTNUTS,JAPANESE,RSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12205~^~1200~^~Seeds, lotus seeds, raw~^~LOTUS SEEDS,RAW~^^^^~Shells~^47^~Nelumbo spp.~^5.30^3.47^8.37^4.07 -~12206~^~1200~^~Nuts, almonds, honey roasted, unblanched~^~ALMONDS,HONEY RSTD,UNBLANCHED~^^^^^0^^5.18^3.47^8.37^4.07 -~12220~^~1200~^~Seeds, flaxseed~^~SEEDS,FLAXSEED~^^^~Y~^^0^~Linum usitatissimum~^5.30^3.47^8.37^4.07 -~12516~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, with salt added~^~PUMPKIN&SQUASH SD KRNLS,RSTD,W/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12529~^~1200~^~Seeds, sesame seed kernels, toasted, with salt added (decorticated)~^~SESAME SD KRNLS,TSTD,W/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12536~^~1200~^~Seeds, sunflower seed kernels from shell, dry roasted, with salt added~^~SEEDS,SUNFLOWER SD KRNLS FROM SHELL,DRY RSTD,W/ SALT ADDED~^^^^~Hulls~^46^^5.30^3.47^8.37^4.07 -~12537~^~1200~^~Seeds, sunflower seed kernels, dry roasted, with salt added~^~SUNFLOWER SD KRNLS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12538~^~1200~^~Seeds, sunflower seed kernels, oil roasted, with salt added~^~SUNFLOWER SD KRNLS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12539~^~1200~^~Seeds, sunflower seed kernels, toasted, with salt added~^~SUNFLOWER SD KRNLS,TSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12540~^~1200~^~Seeds, sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)~^~SUNFLOWER SD BUTTER,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12563~^~1200~^~Nuts, almonds, dry roasted, with salt added~^~ALMONDS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12565~^~1200~^~Nuts, almonds, oil roasted, with salt added~^~ALMONDS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12567~^~1200~^~Nuts, almonds, oil roasted, with salt added, smoke flavor~^~NUTS,ALMONDS,OIL RSTD,W/ SALT ADDED,SMOKE FLAVOR~^^^^^0^^^^^ -~12585~^~1200~^~Nuts, cashew nuts, dry roasted, with salt added~^~CASHEW NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12586~^~1200~^~Nuts, cashew nuts, oil roasted, with salt added~^~CASHEW NUTS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12588~^~1200~^~Nuts, cashew butter, plain, with salt added~^~CASHEW BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12632~^~1200~^~Nuts, macadamia nuts, dry roasted, with salt added~^~MACADAMIA NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12635~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, with salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12637~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12638~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12643~^~1200~^~Nuts, pecans, dry roasted, with salt added~^~PECANS,DRY RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12644~^~1200~^~Nuts, pecans, oil roasted, with salt added~^~PECANS,OIL RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12652~^~1200~^~Nuts, pistachio nuts, dry roasted, with salt added~^~PISTACHIO NUTS,DRY RSTD,W/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12663~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, with salt added~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12665~^~1200~^~Nuts, almonds, oil roasted, lightly salted~^~NUTS,ALMONDS,OIL RSTD,LIGHTLY SALTED~^^^^^0^^^^^ -~12695~^~1200~^~Nuts, almond butter, plain, with salt added~^~ALMOND BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12698~^~1200~^~Seeds, sesame butter, tahini, type of kernels unspecified~^~SESAME BUTTER,TAHINI,KRNLS UNSPEC~^^^^^0^^5.30^3.47^8.37^4.07 -~12737~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,LIGHTLY SALTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12738~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,LIGHTLY SALTED~^^^^^0^^^^^ -~13000~^~1300~^~Beef, grass-fed, strip steaks, lean only, raw~^~BEEF,GRASS-FED,STRIP STEAKS,LN,RAW~^^^^~23% Bone and connective tissue, 11% Separable fat~^34^^^^^ -~13001~^~1300~^~Beef, carcass, separable lean and fat, choice, raw~^~BEEF,CARCASS,LN&FAT,CHOIC,RAW~^^^^~Bone 19%~^19^~Bos taurus~^6.25^4.27^9.02^3.87 -~13002~^~1300~^~Beef, carcass, separable lean and fat, select, raw~^~BEEF,CARCASS,LN&FAT,SEL,RAW~^^^^~Bone 20%~^20^^6.25^4.27^9.02^3.87 -~13019~^~1300~^~Beef, retail cuts, separable fat, raw~^~BEEF,RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13020~^~1300~^~Beef, retail cuts, separable fat, cooked~^~BEEF,RTL CUTS,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13023~^~1300~^~Beef, brisket, whole, separable lean only, all grades, raw~^~BEEF,BRISKET,WHL,LN,ALL GRDS,RAW~^^^^~Connective tissue 0.3%, separable fat 30%~^30^^6.25^4.27^9.02^3.87 -~13047~^~1300~^~Beef, grass-fed, ground, raw~^~BEEF,GRASS-FED,GROUND,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13055~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13065~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13066~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13067~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^^0^^6.25^4.27^9.02^3.87 -~13068~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^~Bone and connective tissue, 0.2%, separable fat, 3.6%~^4^^6.25^4.27^9.02^3.87 -~13069~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2399~^^~Y~^~Connective tissue, 2%, separable fat, 6%~^8^^6.25^4.27^9.02^3.87 -~13070~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13095~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13096~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BF,RIB,EYE,SML END (RIB 10-12),LN & FT,0" FAT,CHOIC,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13097~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue 4%, separable fat 21%~^25^^6.25^4.27^9.02^3.87 -~13098~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^~ribeye, Delmonico~^^^~Bone and connective tissue 7%, sep fat 12%~^19^^6.25^4.27^9.02^3.87 -~13147~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, raw~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,RAW~^~URMIS #2074~^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~13148~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~13149~^~1300~^~Beef, rib, shortribs, separable lean only, choice, raw~^~BEEF,RIB,SHORTRIBS,LN ONLY,CHOIC,RAW~^~URMIS #2074~^^^~Bone 27%, separable fat 32%~^59^^6.25^4.27^9.02^3.87 -~13150~^~1300~^~Beef, rib, shortribs, separable lean only, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone, 29%, separable fat, 33%~^62^^6.25^4.27^9.02^3.87 -~13156~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,CHOIC,CKD,BRLD~^^^^~8% bone, 9% separable fat~^17^^6.25^4.27^9.02^3.87 -~13158~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,SEL,CKD,BRLD~^^^^~Bone, 8%, separable fat, 9%~^17^^6.25^4.27^9.02^3.87 -~13165~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^^0^^6.25^4.27^9.02^3.87 -~13227~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,RAW~^^^^~Bone 34%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~13228~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, cooked, simmered~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,CKD,SIMMRD~^^^^~Bone, 37%, separable fat, 8%~^45^^6.25^4.27^9.02^3.87 -~13231~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,RAW~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and heavy connective tissue, 23%, separable fat, 12%~^35^^6.25^4.27^9.02^3.87 -~13232~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and connective tissue 26%, separable fat, 12%~^38^^6.25^4.27^9.02^3.87 -~13235~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,CHOIC,RAW~^~T-Bone Steak, URMIS # 2184~^^^~Bone and heavy connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13236~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BN-IN,LN,1/8" FAT,CHOIC,CKD,GRILLD~^~T-Bone Steak, URMIS # 2184~^^^~Bone and connective tissue, 28%, separable fat, 14%~^42^^6.25^4.27^9.02^3.87 -~13284~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN,0" FAT,SEL,RAW~^^^^~Bone and connective tissue and separable fat~^37^^^^^ -~13285~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD~^~URMIS #1151, Beef, Chuck, Under Blade Pot Roast~^^^~Connective tissue 4%, seam fat 20%~^24^^6.25^^^ -~13293~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD, BRSD~^~Beef, Chuck, Under Blade Pot Roast or Steak, URMIS #1151, URMIS #1158~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13294~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHCK,UND BL POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 14%~^20^^6.25^^^ -~13317~^~1300~^~Beef, ground, patties, frozen, cooked, broiled~^~BEEF,GROUND,PATTIES,FRZ,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13318~^~1300~^~Beef, variety meats and by-products, brain, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes 22.45%~^22^^6.25^4.27^9.02^3.87 -~13319~^~1300~^~Beef, variety meats and by-products, brain, cooked, pan-fried~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13320~^~1300~^~Beef, variety meats and by-products, brain, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13321~^~1300~^~Beef, variety meats and by-products, heart, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat, veins and connective tissue~^29^^6.25^4.27^9.02^3.87 -~13322~^~1300~^~Beef, variety meats and by-products, heart, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,CKD,SIMMRD~^^^~Y~^~Fat and valves, 16.39%~^16^^6.25^4.27^9.02^3.87 -~13323~^~1300~^~Beef, variety meats and by-products, kidneys, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13324~^~1300~^~Beef, variety meats and by-products, kidneys, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13325~^~1300~^~Beef, variety meats and by-products, liver, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13326~^~1300~^~Beef, variety meats and by-products, liver, cooked, braised~^~BEEF,VAR MEATS & BY-PRODUCTS,LIVER,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13327~^~1300~^~Beef, variety meats and by-products, liver, cooked, pan-fried~^~BEEF, VAR MEATS&BY-PRODUCTS, LIVER, CKD, PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13328~^~1300~^~Beef, variety meats and by-products, lungs, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~13329~^~1300~^~Beef, variety meats and by-products, lungs, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13330~^~1300~^~Beef, variety meats and by-products, mechanically separated beef, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED BF,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13331~^~1300~^~Beef, variety meats and by-products, pancreas, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13332~^~1300~^~Beef, variety meats and by-products, pancreas, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13333~^~1300~^~Beef, variety meats and by-products, spleen, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13334~^~1300~^~Beef, variety meats and by-products, spleen, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13335~^~1300~^~Beef, variety meats and by-products, suet, raw~^~BEEF,VAR MEATS & BY-PRODUCTS,SUET,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13337~^~1300~^~Beef, variety meats and by-products, thymus, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13338~^~1300~^~Beef, variety meats and by-products, thymus, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13339~^~1300~^~Beef, variety meats and by-products, tongue, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~13340~^~1300~^~Beef, variety meats and by-products, tongue, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,SIMMRD~^^^~Y~^~Skin and connective tissue, 5.74%; Cartilage and connective tissue,10.35%~^16^^6.25^4.27^9.02^3.87 -~13341~^~1300~^~Beef, variety meats and by-products, tripe, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TRIPE,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13342~^~1300~^~Beef, sandwich steaks, flaked, chopped, formed and thinly sliced, raw~^~BEEF,SNDWCH STEAKS,FLAKED,CHOPD,FORMED & THINLY SLICED,RAW~^^^~Y~^^0^^^4.00^9.00^4.00 -~13343~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13344~^~1300~^~Beef, cured, breakfast strips, raw or unheated~^~BEEF,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~13345~^~1300~^~Beef, cured, breakfast strips, cooked~^~BEEF,CURED,BRKFST STRIPS,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13346~^~1300~^~Beef, cured, corned beef, brisket, raw~^~BEEF,CURED,CORNED BF,BRISKET,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13347~^~1300~^~Beef, cured, corned beef, brisket, cooked~^~BEEF,CURED,CORNED BF,BRISKET,CKD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13348~^~0700~^~Beef, cured, corned beef, canned~^~BEEF,CURED,CORNED BF,CND~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13349~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLADE POT RST OR STK,BNLESS,LN,0" FAT,SEL, RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13350~^~0700~^~Beef, cured, dried~^~BEEF,CURED,DRIED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~13351~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13352~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13353~^~0700~^~Beef, cured, luncheon meat, jellied~^~BEEF,CURED,LUNCHEON MEAT,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13354~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 1%~^2^^6.25^^^ -~13355~^~0700~^~Beef, cured, pastrami~^~BEEF,CURED,PASTRAMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13356~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UNDBL CNTR STK,BNLESS,DENCUT,LN,0" FA, ALL GRD, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 3%~^5^^6.25^^^ -~13357~^~0700~^~Sausage, beef, cured, cooked, smoked~^~SAUSAGE,BF,CURED,CKD,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13358~^~0700~^~Beef, chopped, cured, smoked~^~BEEF,CHOPD,CURED,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13359~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BLCNTR STK,BNLESS,DEN CUT,LN,0" FA, CHOICE, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 3%~^4^^6.25^^^ -~13361~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13362~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13363~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13364~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13365~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13366~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,SEL,CKD~^^^^~Component data unavailable~^^^6.25^4.27^9.02^3.87 -~13367~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13368~^~1300~^~Beef, brisket, whole, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~1% connective tissue, 16% separable fat~^17^^6.25^4.27^9.02^3.87 -~13369~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13370~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13371~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~URMIS #1628~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13372~^~1300~^~Beef, brisket, point half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue, 1%, separable fat, 24%~^25^^6.25^4.27^9.02^3.87 -~13373~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue~^19^^6.25^4.27^9.02^3.87 -~13375~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13377~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^^~Bone and connective tissue 23%, sep fat 17%~^40^^6.25^4.27^9.02^3.87 -~13378~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue 29%, sep fat 13%~^42^^6.25^4.27^9.02^3.87 -~13379~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~13380~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",CHC,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^4.27^9.02^3.87 -~13381~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",SEL,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^40^^6.25^4.27^9.02^3.87 -~13382~^~1300~^~Beef, chuck, blade roast, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~25% bone, 14% separable fat~^39^^6.25^4.27^9.02^3.87 -~13383~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 3%, seam fat 21%~^24^^6.25^4.27^9.02^3.87 -~13384~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%, seam fat 19%~^23^^6.25^4.27^9.02^3.87 -~13386~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13387~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13388~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~16% bone, 22% separable fat~^38^^6.25^4.27^9.02^3.87 -~13389~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone, 16%, separable fat, 24%~^40^^6.25^4.27^9.02^3.87 -~13390~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,SEL,CKD,RSTD~^^^^~Bone, 17%, separable fat, 20%~^37^^6.25^4.27^9.02^3.87 -~13391~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue~^23^^6.25^4.27^9.02^3.87 -~13392~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13393~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,SEL,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~13394~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue, 7.8%, separable fat, 10.6%~^37^^6.25^4.27^9.02^3.87 -~13395~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone, 22%, separable fat, 15%~^37^^6.25^4.27^9.02^3.87 -~13396~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,SEL,CKD,BRLD~^^^^~Bone, 24%, separable fat, 13%~^37^^6.25^4.27^9.02^3.87 -~13398~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13399~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13401~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13402~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13404~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13405~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13407~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue, 1.8%, separable fat, 1.8%~^4^^6.25^4.27^9.02^3.87 -~13408~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue 1%, sep fat 2%~^3^^6.25^4.27^9.02^3.87 -~13410~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13411~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~Beef, bottom round, roast,lean only, 0" fat, choice, roasted~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 3%~^4^^^4.27^9.02^3.87 -~13413~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue 3%, sep fat 2%~^5^^6.25^4.27^9.02^3.87 -~13414~^~1300~^~Beef, round, bottom round roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13415~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,L & F,0" FAT,A GRDS,CKD,RSTD~^~Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13416~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13417~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13418~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Eye of Round Roast~^^^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13419~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^~Bone and Conective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~13420~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13421~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13422~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2340, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13423~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1525, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13424~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 4.0%, separable fat, 4.0%~^8^^6.25^4.27^9.04^3.87 -~13425~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 3%~^7^^6.25^4.27^9.02^3.87 -~13426~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS # 1525, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^^^ -~13428~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Cube steak, Round Steak, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13430~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13432~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13436~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13438~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13439~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TNDRLN STEAK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13440~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" F,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13441~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13442~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L,0" F,ALL GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^^^ -~13443~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13444~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13445~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIPOFF,LN FT,0" FT,ALLGRD,CKD,GRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^4.27^9.02^3.87 -~13446~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FT,0" FT,CHC,CKD,GRLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Steak, New York Strip, Club Steak~^^^~Connective tissue 7%~^7^^6.25^4.27^9.02^3.87 -~13447~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FAT,0" FT,SEL,CKD,GRLD~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13448~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN,0" FT,ALL GRD,CKD,GRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~13449~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 7%, separable fat 5%~^12^^6.25^4.27^9.02^3.87 -~13450~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,SEL,CKD,GRLD~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 9%, separable fat 4%~^13^^6.25^4.27^9.02^3.87 -~13451~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13452~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin Steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13453~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13454~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue, 3.8%, separable fat, 5.8%~^10^^6.25^4.27^9.02^3.87 -~13455~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13456~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13459~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13460~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13463~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%~^20^^6.25^4.27^9.02^3.87 -~13464~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Porterhouse Steak~^^^~Bone and connective tissue 23%, Separable fat 12%~^35^^6.25^4.27^9.02^3.87 -~13465~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Porterhouse Steak~^^^~Bone and connective tissue 27%, separable fat 11%~^38^^6.25^4.27^9.02^3.87 -~13466~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%, separable fat, 11%~^32^^6.25^4.27^9.02^3.87 -~13467~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%, separable fat, 10%~^31^^6.25^4.27^9.02^3.87 -~13468~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,RAW~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 24%, separable fat 13%~^37^^6.25^4.27^9.02^3.87 -~13469~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 30%, separable fat 10%~^40^^6.25^4.27^9.02^3.87 -~13470~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%, separable fat, 12%~^32^^6.25^4.27^9.02^3.87 -~13473~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 22%~^22^^6.25^4.27^9.02^3.87 -~13474~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,T-BONE STEAK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 23%~^23^^6.25^4.27^9.02^3.87 -~13477~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 01369~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13478~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13479~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BN STK,BN-IN,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~T-Bone Steak~^^^~Bone and connective tissue, 30%, separable fat, 13%~^43^^6.25^4.27^9.02^3.87 -~13481~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 22%, separable fat, 10%~^32^^6.25^4.27^9.02^3.87 -~13482~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,SEL,RAW~^~T-Bone Steak, URMIS # 1369~^^^~Bone and heavy connective tissue, 26%, Separable fat 14%~^41^^6.25^4.27^9.02^3.87 -~13483~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BONE-IN,LN,1/8" FAT,SEL,CKD,GRILLED~^~T-Bone Steak, URMIS # 1369~^^^~Bone and connective tissue, 32%, separable fat, 12%~^44^^6.25^4.27^9.02^3.87 -~13484~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1369~^^^~Bone and heavy connective tissue, 21%, separable fat, 8%~^29^^6.25^4.27^9.02^3.87 -~13485~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^1^^^4.27^9.02^3.87 -~13486~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13487~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13488~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1525~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13490~^~1300~^~Beef, rib, eye, small end (ribs 10- 12) separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10- 12) LN,0" FAT,SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue 8%, sep fat 10%~^18^^6.25^4.27^9.02^3.87 -~13491~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13492~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13493~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13494~^~1300~^~Beef, ground, 70% lean meat / 30% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,70% LN MEAT / 30% FAT,CRUMBLES,CKD,PAN-BROWNED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13495~^~1300~^~Beef, ground, 70% lean meat / 30% fat, loaf, cooked, baked~^~BEEF,GROUND,70% LN MEAT / 30% FAT,LOAF,CKD,BKD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13496~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty cooked, pan-broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY CKD,PAN-BROILED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13497~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty, cooked, broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY,CKD,BRLD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13498~^~1300~^~Beef, ground, 70% lean meat / 30% fat, raw~^~BEEF,GROUND,70% LN MEAT / 30% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13499~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 4%~^6^^6.25^^^ -~13500~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRI~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 15%, seam fat 3%~^18^^6.25^^^ -~13501~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 4%~^18^^6.25^^^ -~13502~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 17%, seam fat 2%~^19^^6.25^^^ -~13519~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 2%~^16^^6.25^^^ -~13520~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 15%, seam fat 2%~^17^^6.25^^^ -~13523~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 14%, seam fat 1%~^15^^6.25^^^ -~13595~^~1300~^~Beef, brisket, flat half, boneless separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL GRDS,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13596~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL CHOICE,RAW~^~URMIS #1623, Beef, Brsket, Flat Half~^^^~Connective tissue 1%, seam fat 8%~^9^^6.25^^^ -~13597~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13598~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STK,BNLES,LN & FAT,0" ,ALL GRDS,CKD,G~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13647~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13648~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1132, Urmis #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13649~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13650~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNS,LN & FAT,0" FAT,CHOIC,CKD,G~^~URMIS #1144~^^^~Connective tissue 14%~^14^^6.25^^^ -~13786~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE RST,BNLESS,A BF RST,LN & FAT,0",ALL G,RAW~^~URMIS #1095~^^^~Connective tissue 8%~^8^^6.25^^^ -~13788~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1095~^^^~Connective tissue 9%~^9^^6.25^^^ -~13791~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~13795~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13796~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13797~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13798~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13799~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13800~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13803~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13804~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13805~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13806~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13807~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13808~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13809~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^21^^6.25^4.27^9.02^3.87 -~13810~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13811~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1864~^^^~Bone and connective tissue~^15^^6.25^4.27^9.02^3.87 -~13812~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue~^30^^6.25^4.27^9.02^3.87 -~13813~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1049~^^^~Bone and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13814~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~13815~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13816~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13817~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1879, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13818~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1879, Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13819~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1064, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13820~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1064, Top Blade Steak~^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~13821~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13822~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,CHOIC,CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13823~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,CKD~^~URMIS #1095, Beef, Chuck, ChuckEye Rst, (America's Beef Rst)~^^^~Connective tissue7%, seam fat 13%~^20^^6.25^^^ -~13824~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13825~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13826~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13827~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13828~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13829~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^17^^6.25^4.27^9.02^3.87 -~13830~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13831~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13832~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13833~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #1986~^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13834~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #1986~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13835~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #1986~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13838~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13839~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13840~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone~^16^^6.25^4.27^9.02^3.87 -~13841~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13842~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13843~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^15^^6.25^4.27^9.02^3.87 -~13844~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13845~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13846~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13847~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2037~^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~13848~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2037~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13849~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2037~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13850~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13851~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BR~^~Prime Rib~^^~Y~^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13852~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RS~^~Prime Rib~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13853~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13854~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13855~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^~Prime Rib~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13856~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13857~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13858~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^~Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13859~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2054, Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13860~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13861~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13862~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNLS,LN & FAT,0" FAT,SEL,CKD,G~^~URMIS #1144~^^^~Connective tissue 17%~^17^^6.25^^^ -~13863~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1144~^^^~Connective tissue 14%~^15^^6.25^^^ -~13864~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #2316~^^~Y~^~Bone~^6^^6.25^4.27^9.02^3.87 -~13865~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~URMIS #2316~^^~Y~^~Bone~^8^^6.25^4.27^9.02^3.87 -~13866~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1501~^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~13867~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~URMIS #1501~^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~13868~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13869~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13870~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13871~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13872~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13873~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13874~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13875~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13876~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13877~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13878~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13879~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13880~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13881~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13882~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~13883~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13884~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13885~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13886~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13887~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1525~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13888~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS # 1525~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13889~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13890~^~1300~^~Beef, round, top round, separable lean only, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13891~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~London Broil, Round Steak, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13892~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13893~^~1300~^~Beef, round, top round steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Bone and connective tissue~^1^^^^^ -~13894~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13895~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13896~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13897~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13898~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13899~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13900~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13901~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13902~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13903~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1144~^^^~Conncective tissue 14%~^14^^6.25^^^ -~13904~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13905~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~13906~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRILLD~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~13907~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2184, T-Bone steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~13908~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,L & F,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS # 2184, T-Bone Steak~^^^~Bone and connective tissue 28%~^28^^6.25^4.27^9.02^3.87 -~13909~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13910~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^~Y~^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13911~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13912~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,TOP LN,STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRLLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^~Y~^~Bone and Connective tissue 12%~^8^^6.25^4.27^9.02^3.87 -~13913~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13914~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13915~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,PRIME,RAW~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~13916~^~1300~^~Beef, short loin, top loin, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~13917~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13918~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13919~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13920~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13921~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13922~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13923~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13924~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13925~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13926~^~1300~^~Beef, tenderloin, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,TENDERLOIN,LN&FAT,1/8"FAT,PRIME,RAW~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13927~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13928~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,PRIME,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13929~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Sirloin strip, Sirloin steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13930~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13931~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13932~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13933~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2237, Sirloin steak, Sirloin strip~^^~Y~^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13934~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13935~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13937~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 3%, separable fat, 8%~^11^^6.25^4.27^9.02^3.87 -~13940~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%, separable fat, 4%~^9^^6.25^4.27^9.02^3.87 -~13943~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~Beef, shoulder steak, boneless, lean only, 0", choice, grill~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13946~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13948~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~13949~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^^0^^6.25^4.27^9.02^3.87 -~13950~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13951~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN & FAT,0",SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13952~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIBEYE,SML END(RIBS 10-12),LN&FAT,0",ALL GRDS,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13953~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BF,BTTM SRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13954~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13955~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13956~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13957~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13958~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13959~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13961~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%, separable fat, 0%~^5^^6.25^4.27^9.02^3.87 -~13963~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%, separable fat, 0%~^3^^6.25^4.27^9.02^3.87 -~13965~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%, separable fat, 2%~^15^^6.25^4.27^9.02^3.87 -~13967~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%, separable fat, 3%~^19^^6.25^4.27^9.02^3.87 -~13968~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13969~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13970~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13971~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13972~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 8%, seam fat 10%~^18^^6.25^^^ -~13973~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,CHOIC,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 9%, seam fat 11%~^20^^6.25^^^ -~13974~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~13975~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13977~^~1300~^~Beef, plate, inside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,INSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 3%~^3^^6.25^4.27^9.02^3.87 -~13979~^~1300~^~Beef, plate, outside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 5%~^5^^6.25^4.27^9.02^3.87 -~13980~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF, CHUCK, SHORT RIBS, BNL, 0" FAT, CHOICE, CKED, BR~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, Seam fat 20%~^27^^6.25^^^ -~13981~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connnective tissue 6%, seam fat 18%~^24^^6.25^^^ -~13982~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 20%~^26^^6.25^^^ -~13983~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13985~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BF,LOIN,BTTM SIRLOIN BUTT,TRI-TIP,LN,0" FAT,ALL GRD,CKD,RSTD~^^^^~Bone and connective tissue 1.58%, separable fat 4.34%~^6^^6.25^^^ -~14003~^~1400~^~Alcoholic beverage, beer, regular, all~^~ALCOHOLIC BEV,BEER,REG,ALL~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14004~^~1400~^~Alcoholic beverage, beer, regular, BUDWEISER~^~ALCOHOLIC BEV,BEER,REG,BUDWEISER~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14005~^~1400~^~Alcoholic beverage, beer, light, BUDWEISER SELECT~^~ALCOHOLIC BEV,BEER,LT,BUDWEISER SEL~^^~Anheuser-Busch, Inc.~^^^0^^^^^ -~14006~^~1400~^~Alcoholic beverage, beer, light~^~ALCOHOLIC BEV,BEER,LT~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14007~^~1400~^~Alcoholic beverage, beer, light, BUD LIGHT~^~ALCOHOLIC BEV,BEER,LT,BUD LT~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14009~^~1400~^~Alcoholic beverage, daiquiri, canned~^~ALCOHOLIC BEV,DAIQUIRI,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14010~^~1400~^~Alcoholic beverage, daiquiri, prepared-from-recipe~^~ALCOHOLIC BEV,DAIQUIRI,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14013~^~1400~^~Alcoholic beverage, beer, light, low carb~^~ALCOHOLIC BEV,BEER,LT,LO CARB~^^~Anheuser-Busch, Inc.~^~Y~^^0^^^^^ -~14015~^~1400~^~Alcoholic beverage, pina colada, canned~^~ALCOHOLIC BEV,PINA COLADA,CND~^^^^^0^^6.25^3.40^8.50^3.90 -~14016~^~1400~^~Beverages, almond milk, sweetened, vanilla flavor, ready-to-drink~^~BEVERAGES,ALMOND MILK,SWTND,VANILLA FLAVOR,RTD~^^^~Y~^^0^^6.38^^^ -~14017~^~1400~^~Alcoholic beverage, pina colada, prepared-from-recipe~^~ALCOHOLIC BEV,PINA COLADA,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14019~^~1400~^~Alcoholic beverage, tequila sunrise, canned~^~ALCOHOLIC BEV,TEQUILA SUNRISE,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14021~^~1400~^~Beverages, Energy drink, Citrus~^~BEVERAGES,ENERGY DRK,CITRUS~^^^~Y~^^0^^^^^ -~14022~^~1400~^~Beverages, MONSTER energy drink, low carb~^~BEVERAGES,MONSTER ENERGY DRK,LO CARB~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14024~^~1400~^~Beverages, Whiskey sour mix, powder~^~BEVERAGES,WHISKEY SOUR MIX,PDR~^^^^^0^^6.25^3.40^8.40^3.90 -~14025~^~1400~^~Alcoholic beverage, whiskey sour, prepared with water, whiskey and powder mix~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP W/ H2O,WHISKEY & PDR MIX~^^^^^0^^^^^ -~14026~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS Zero, energy drink, sugar-free with guarana, fortified with vitamins B6 and B12~^~BEV, COCA-COLA COMY,NOS 0,ENEY DRK,SUG-FRE, GUANA, B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14027~^~1400~^~Alcoholic beverage, whiskey sour, canned~^~ALCOHOLIC BEV,WHISKEY SOUR,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14028~^~1400~^~Beverages, Whiskey sour mix, bottled~^~BEVERAGES,WHISKEY SOUR MIX,BTLD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14029~^~1400~^~Alcoholic beverage, whiskey sour, prepared from item 14028~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP FROM ITEM 14028~^^^^^0^^0.00^^^ -~14030~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS energy drink, Original, grape, loaded cherry, charged citrus, fortified with vitamins B6 and B12~^~BEV,COCA-COLA CO,NOS ENGY ,OGN,GRPE,CHERY,CITR, VIT B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14031~^~1400~^~Beverages, water, bottled, yumberry, pomegranate with anti-oxidants, zero calories~^~BEV,H2O,BTLD,YUMBERRY,POMEGRANATE W/ ANTI-OXIDANTS, 0 CAL~^^^~Y~^^0^^6.25^^^ -~14033~^~1400~^~Beverages, ABBOTT, EAS whey protein powder~^~BEVERAGES,ABBOTT,EAS WHEY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14034~^~1400~^~Alcoholic beverage, creme de menthe, 72 proof~^~ALCOHOLIC BEV,CREME DE MENTHE,72 PROOF~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~14035~^~1400~^~Beverages, ABBOTT, EAS soy protein powder~^~BEVERAGES,ABBOTT,EAS SOY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14036~^~1400~^~Beverages, CYTOSPORT, Muscle Milk, ready-to-drink~^~BEVERAGES,CYTOSPORT,MUSCLE MILK,RTD~^^~CytoSport~^~Y~^^0^^6.25^^^ -~14037~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 80 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14038~^~1400~^~Beverages, OCEAN SPRAY, Cran-Energy, Cranberry Energy Juice Drink~^~BEVERAGES,OCEAN SPRAY,CRAN-ENERGY,CRANBERRY ENERGY JUC DRK~^^~Ocean Spray Cranberries, Inc.~^~Y~^^0^^6.25^^^ -~14041~^~1400~^~Beverages, NESTLE, Boost plus, nutritional drink, ready-to-drink~^~BEVERAGES,NESTLE,BOOST PLUS,NUTRITIONAL DRK,RTD~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^^^ -~14044~^~1400~^~Beverages, SLIMFAST, Meal replacement, High Protein Shake, Ready-To-Drink, 3-2-1 plan~^~BEVERAGES,SLIMFAST,MEAL REPLCMNT,HI PROT SHAKE,RTD,3-2-1~^^~Unilever~^~Y~^^0^^^^^ -~14045~^~1400~^~Beverages, UNILEVER, SLIMFAST, meal replacement, regular, ready-to-drink, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST,MEAL REPLCMNT,REG,RTD,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.38^^^ -~14047~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, powder, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST SHAKE MIX,PDR,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.25^^^ -~14048~^~1400~^~Beverages, FUZE, orange mango, fortified with vitamins A, C, E, B6~^~BEVERAGES,FUZE,ORANGE MANGO,FORT W/ VITAMINS A,C,E,B6~^^^^^0^^6.25^^^ -~14050~^~1400~^~Alcoholic beverage, distilled, rum, 80 proof~^~ALCOHOLIC BEV,DISTILLED,RUM,80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14051~^~1400~^~Alcoholic beverage, distilled, vodka, 80 proof~^~ALCOHOLIC BEV,DISTILLED,VODKA,80 PROOF~^^^^^0^^6.25^^^4.12 -~14052~^~1400~^~Alcoholic beverage, distilled, whiskey, 86 proof~^~ALCOHOLIC BEV,DISTILLED,WHISKEY,86 PROOF~^^^^^0^^6.25^^^4.12 -~14054~^~1400~^~Beverages, almond milk, chocolate, ready-to-drink~^~BEVERAGES,ALMOND MILK,CHOC,RTD~^^^~Y~^^0^^^^^ -~14055~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, high protein, whey powder, 3-2-1 Plan,~^~BEVERAG,UNILEV,SLIMFAST SHAKE ,HI PROT,WHEY PDR,3-2-1 PLAN,~^^~Unilever~^~Y~^^0^^6.38^^^ -~14056~^~1400~^~Beverages, Acai berry drink, fortified~^~BEVERAGES,ACAI BERRY DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14057~^~1400~^~Alcoholic beverage, wine, dessert, sweet~^~ALCOHOLIC BEV,WINE,DSSRT,SWT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14058~^~1400~^~Beverages, Whey protein powder isolate~^~BEVERAGES,WHEY PROT PDR ISOLATE~^^^~Y~^^0^^6.38^^^ -~14060~^~1400~^~Beverages, Energy Drink with carbonated water and high fructose corn syrup~^~BEVERAGES,ENERGY DRK W/ CARB H2O & HI FRUCTOSE CORN SYRUP~^^^~Y~^^0^^6.25^^^ -~14061~^~1400~^~Beverages, Energy Drink, sugar free~^~BEVERAGES,ENERGY DRK,SUGAR FREE~^^^~Y~^^0^^^^^ -~14062~^~1400~^~Beverages, ABBOTT, ENSURE, Nutritional Shake, Ready-to-Drink~^~BEVERAGES,ABBOTT,ENSURE,NUTRITIONAL SHAKE,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14063~^~1400~^~Beverages, chocolate powder, no sugar added~^~BEVERAGES,CHOC PDR,NO SUGAR ADDED~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~14064~^~1400~^~Beverages, Orange juice, light, No pulp~^~BEVERAGES,ORANGE JUC,LT,NO PULP~^^^~Y~^^0^^6.25^^^ -~14065~^~1400~^~Beverages, The COCA-COLA company, Hi-C Flashin' Fruit Punch~^~BEVERAGES,THE COCA-COLA COMPANY,HI-C FLASHIN' FRUIT PUNCH~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14066~^~1400~^~Beverages, Protein powder whey based~^~BEVERAGES,PROT PDR WHEY BSD~^^^~Y~^^0^^^^^ -~14067~^~1400~^~Beverages, Protein powder soy based~^~BEVERAGES,PROT PDR SOY BSD~^^^~Y~^^0^^^^^ -~14073~^~1400~^~Beverages, ZEVIA, cola~^~BEVERAGES,ZEVIA,COLA~^^~Zevia~^^^0^^6.25^^^ -~14074~^~1400~^~Beverages, ZEVIA, cola, caffeine free~^~BEVERAGES,ZEVIA,COLA,CAFFEINE FREE~^^~Zevia~^^^0^^^^^ -~14075~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG,Gerolsteiner naturally sparkling mineral water,~^~BEVERAGE,GMBH & CO. KG,GEROLSTEINER NATURALLY SPARK MIN H2O,~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^6.25^^^ -~14079~^~1400~^~Beverages, yellow green colored citrus soft drink with caffeine~^~BEVERAGES,YEL GRN COLORED CITRUS SOFT DRK W/ CAFFEINE~^^^~Y~^^0^^6.25^^^ -~14080~^~1400~^~Beverages, rich chocolate, powder~^~BEVERAGES,RICH CHOC,PDR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~14082~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG (Gerolsteiner), naturally sparkling, mineral bottled water~^~BEV,GEROLSTEINER BRUNNEN,NATURALLY SPARKLING,MIN BTLD H2O~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^^^^ -~14083~^~1400~^~Beverages, chocolate malt, powder, prepared with fat free milk~^~BEVERAGES,CHOC MALT,PDR,PREP W/ FAT FREE MILK~^^~Nestle USA, Inc.~^^^0^^6.38^^^ -~14084~^~1400~^~Alcoholic beverage, wine, table, all~^~ALCOHOLIC BEV,WINE,TABLE,ALL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14086~^~1400~^~Beverages, V8 SPLASH Smoothies, Peach Mango~^~BEVERAGES,V8 SPLASH SMOOTHIES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14087~^~1400~^~Beverages, V8 SPLASH Smoothies, Strawberry Banana~^~BEVERAGES,V8 SPLASH SMOOTHIES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14088~^~1400~^~Beverages, V8 SPLASH Smoothies, Tropical Colada~^~BEVERAGES,V8 SPLASH SMOOTHIES,TROPICAL COLADA~^^~Campbell Soup Co.~^^^0^^^^^ -~14090~^~1400~^~Beverages, Coconut water, ready-to-drink, unsweetened~^~BEVERAGES,COCNT H2O,RTD,UNSWTND~^^^~Y~^^0^^^^^ -~14091~^~1400~^~Beverages, almond milk, unsweetened, shelf stable~^~BEVERAGES,ALMOND MILK,UNSWTND,SHELF STABLE~^^^~Y~^^0^^^^^ -~14092~^~1400~^~Beverages, chocolate almond milk, unsweetened, shelf-stable, fortified with vitamin D2 and E~^~BEV,CHOC ALMOND MILK,UNSWTND,SHELF-STABLE,FORT W/ VIT D2 & E~^^^~Y~^^0^^6.25^^^ -~14093~^~1400~^~Beverages, The COCA-COLA company, Glaceau Vitamin Water, Revive Fruit Punch, fortified~^~BEVERAGE, COCA-COLA CO,GLACEAU VIT H2O,REVIVE FRT PUNCH,FORT~^^~The Coca-Cola Company~^~Y~^^0^^^^^ -~14095~^~1400~^~Beverages, MINUTE MAID, Lemonada, Limeade~^~BEVERAGES,MINUTE MAID,LEMONADA,LIMEADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14096~^~1400~^~Alcoholic beverage, wine, table, red~^~ALCOHOLIC BEV,WINE,TABLE,RED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14097~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Sauvignon~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET SAUVIGNON~^^^^^0^^6.25^3.36^8.37^3.92 -~14098~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Franc~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET FRANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14099~^~1400~^~Alcoholic Beverage, wine, table, red, Pinot Noir~^~ALCOHOLIC BEV,WINE,TABLE,RED,PINOT NOIR~^^^^^0^^6.25^3.36^8.37^3.92 -~14100~^~1400~^~Alcoholic Beverage, wine, table, red, Syrah~^~ALCOHOLIC BEV,WINE,TABLE,RED,SYRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14101~^~1400~^~Alcoholic Beverage, wine, table, red, Barbera~^~ALCOHOLIC BEV,WINE,TABLE,RED,BARBERA~^^^^^0^^6.25^3.36^8.37^3.92 -~14102~^~1400~^~Alcoholic Beverage, wine, table, red, Zinfandel~^~ALCOHOLIC BEV,WINE,TABLE,RED,ZINFANDEL~^^^^^0^^6.25^3.36^8.37^3.92 -~14103~^~1400~^~Alcoholic Beverage, wine, table, red, Petite Sirah~^~ALCOHOLIC BEV,WINE,TABLE,RED,PETITE SIRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14105~^~1400~^~Alcoholic Beverage, wine, table, red, Claret~^~ALCOHOLIC BEV,WINE,TABLE,RED,CLARET~^^^^^0^^6.25^3.36^8.37^3.92 -~14106~^~1400~^~Alcoholic beverage, wine, table, white~^~ALCOHOLIC BEV,WINE,TABLE,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14107~^~1400~^~Alcoholic Beverage, wine, table, red, Lemberger~^~ALCOHOLIC BEV,WINE,TABLE,RED,LEMBERGER~^^^^^0^^6.25^3.36^8.37^3.92 -~14108~^~1400~^~Alcoholic Beverage, wine, table, red, Sangiovese~^~ALCOHOLIC BEV,WINE,TABLE,RED,SANGIOVESE~^^^^^0^^6.25^3.36^8.37^3.92 -~14109~^~1400~^~Alcoholic Beverage, wine, table, red, Carignane~^~ALCOHOLIC BEV,WINE,TABLE,RED,CARIGNANE~^^^^^0^^6.25^3.36^8.37^3.92 -~14113~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Gris (Grigio)~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT GRIS (GRIGIO)~^^^^^0^^6.25^3.36^8.37^3.92 -~14116~^~1400~^~Alcoholic beverage, wine, table, white, Chenin Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHENIN BLANC~^^^^^0^^6.25^3.36^3.87^3.92 -~14117~^~1400~^~Alcoholic beverage, wine, table, white, Fume Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,FUME BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14119~^~1400~^~Beverages, Mixed vegetable and fruit juice drink, with added nutrients~^~BEVERAGES,MXD VEG & FRUIT JUC DRK,W/ ADDED NUTR~^~includes V-8 Splash drinks~^^~Y~^^0^^^^^ -~14120~^~1400~^~Alcoholic beverage, wine, table, white, Muller Thurgau~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MULLER THURGAU~^^^^^0^^6.25^3.36^8.37^3.92 -~14121~^~1400~^~Beverages, carbonated, club soda~^~BEVERAGES,CARB,CLUB SODA~^~soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14124~^~1400~^~Alcoholic beverage, wine, table, white, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14125~^~1400~^~Alcoholic beverage, wine, table, white, late harvest, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14126~^~1400~^~Alcoholic beverage, wine, table, white, Semillon~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SEMILLON~^^^^^0^^6.25^3.36^8.37^3.92 -~14130~^~1400~^~Carbonated beverage, cream soda~^~CARBONATED BEV,CRM SODA~^~soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14132~^~1400~^~Alcoholic beverage, wine, table, white, Riesling~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,RIESLING~^^^^^0^^6.25^3.36^8.37^3.92 -~14134~^~1400~^~Alcoholic beverage, wine, table, white, Sauvignon Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SAUVIGNON BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14135~^~1400~^~Alcoholic beverage, wine, table, white, late harvest~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST~^^^^^0^^6.25^3.36^8.37^3.92 -~14136~^~1400~^~Beverages, carbonated, ginger ale~^~BEVERAGES,CARB,GINGER ALE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14137~^~1400~^~Beverages, NESTEA, tea, black, ready-to-drink, lemon~^~BEVERAGES,NESTEA,TEA,BLACK,RTD,LEMON~^^~Nestle USA, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14138~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14140~^~1400~^~Alcoholic beverage, wine, table, white, Muscat~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MUSCAT~^^^^^0^^6.25^3.36^8.37^3.92 -~14142~^~1400~^~Beverages, carbonated, grape soda~^~BEVERAGES,CARB,GRAPE SODA~^~soft drink, pop~^^^^0^^6.25^3.36^8.37^3.87 -~14143~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, without caffeine~^~BEVERAGES,CARB,LO CAL,OTHER THAN COLA OR PEPPER,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^^4.00^9.00^4.00 -~14144~^~1400~^~Beverages, carbonated, lemon-lime soda, no caffeine~^~BEVERAGES,CARB,LEMON-LIME SODA,NO CAFFEINE~^~white soda, soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14145~^~1400~^~Beverages, carbonated, SPRITE, lemon-lime, without caffeine~^~BEVERAGES,CARB,SPRITE,LEMON-LIME,WO/ CAFFEINE~^~soft drink, white soda, pop~^~The Coca-Cola Company~^~Y~^^0^^6.25^3.36^8.37^3.87 -~14146~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, without caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT,WO/ CAF~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14147~^~1400~^~Beverages, carbonated, cola, without caffeine~^~BEVERAGES,CARB,COLA,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14148~^~1400~^~Beverages, carbonated, cola, regular~^~BEVERAGES,CARB,COLA,REG~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14149~^~1400~^~Beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners~^~BEVERAGES,CARB,RED SUGAR,COLA,CONTAINS CAFFEINE & SWEETENERS~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14150~^~1400~^~Beverages, carbonated, orange~^~BEVERAGES,CARB,ORANGE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14151~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, with aspartame, contains caffeine~^~BEV,CARB,LO CAL,OTHER THAN COLA OR PEPPER,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14152~^~1400~^~Alcoholic Beverage, wine, table, red, Burgundy~^~ALCOHOLIC BEV,WINE,TABLE,RED,BURGUNDY~^^^^^0^^6.25^3.36^8.37^3.92 -~14153~^~1400~^~Beverages, carbonated, pepper-type, contains caffeine~^~BEVERAGES,CARB,PEPPER-TYPE,CONTAINS CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14154~^~1400~^~Beverages, Energy drink, RED BULL~^~BEVERAGES,ENERGY DRK,RED BULL~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14155~^~1400~^~Beverages, carbonated, tonic water~^~BEVERAGES,CARB,TONIC H2O~^~soda, soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14156~^~1400~^~Beverages, Energy drink, RED BULL, sugar free, with added caffeine, niacin, pantothenic acid, vitamins B6 and B12~^~BEVERAGES,ENERGY DRK,RED BULL,SUGAR FREE,W/ ADDED CAFFEINE,~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14157~^~1400~^~Beverages, carbonated, root beer~^~BEVERAGES,CARB,ROOT BEER~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14158~^~1400~^~Alcoholic Beverage, wine, table, red, Gamay~^~ALCOHOLIC BEV,WINE,TABLE,RED,GAMAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14159~^~1400~^~Alcoholic Beverage, wine, table, red, Mouvedre~^~ALCOHOLIC BEV,WINE,TABLE,RED,MOUVEDRE~^^^^^0^^6.25^3.36^8.37^3.92 -~14160~^~1400~^~Alcoholic beverage, wine, table, white, Chardonnay~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHARDONNAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14161~^~1400~^~Beverages, Kiwi Strawberry Juice Drink~^~BEVERAGES,KIWI STRAWBERRY JUC DRK~^^^~Y~^^0^^6.25^^^ -~14162~^~1400~^~Beverages, Apple juice drink, light, fortified with vitamin C~^~BEVERAGES,APPL JUC DRK,LT,FORT W/ VIT C~^^~Mott's INC.~^~Y~^^0^^6.25^^^ -~14163~^~1400~^~Beverages, chocolate drink, milk and soy based, ready to drink, fortified~^~BEVERAGES,CHOC DRK,MILK & SOY BSD,READY TO DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14164~^~1400~^~Beverages, chocolate malt powder, prepared with 1% milk, fortified~^~BEVERAGES,CHOC MALT PDR,PREP W/ 1% MILK,FORT~^^^^^0^^6.38^^^ -~14165~^~1400~^~Beverages, carbonated, limeade, high caffeine~^~BEVERAGES,CARB,LIMEADE,HI CAFFEINE~^^^^^0^^^^^ -~14166~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-types, with sodium saccharin, contains caffeine~^~BEV,CARB,LO CAL,COLA OR PEPER-TYPE,W/ NA SACCHARIN, CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.87^8.37^3.36 -~14167~^~1400~^~Beverages, POWERADE, Zero, Mixed Berry~^~BEVERAGES,POWERADE,ZERO,MXD BERRY~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14168~^~1400~^~Beverages, Carob-flavor beverage mix, powder~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR~^^^^^0^^6.25^3.47^8.37^3.90 -~14169~^~1400~^~Beverages, Carob-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14171~^~1400~^~Beverages, coconut milk, sweetened, fortified with calcium, vitamins A, B12, D2~^~BEVERAGES,COCNT MILK,SWTND,FORT W/ CA,VITAMINS A,B12,D2~^^^~Y~^^0^^^^^ -~14173~^~1400~^~Beverages, coffee, ready to drink, vanilla, light, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,VANILLA,LT,MILK BSD,SWTND~^^~Starbucks Coffee Company~^^^0^^6.25^^^ -~14174~^~1400~^~Beverages, Lemonade fruit juice drink light, fortified with vitamin E and C~^~BEVE,LEMONADE FRUIT JUC DRK LT,FORT W/ VIT E & C~^^^~Y~^^0^^6.25^^^ -~14177~^~1400~^~Beverages, chocolate-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CHOCOLATE-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14179~^~1400~^~Beverages, coffee, ready to drink, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,MILK BSD,SWTND~^^^~Y~^^0^^6.38^^^ -~14180~^~1400~^~Beverages, coffee, brewed, breakfast blend~^~BEVERAGES,COFFEE,BREWED,BRKFST BLEND~^^^^^0^^^^^ -~14181~^~1400~^~Beverages, chocolate syrup~^~BEVERAGES,CHOC SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14182~^~1400~^~Beverages, chocolate syrup, prepared with whole milk~^~BEVERAGES,CHOC SYRUP,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14183~^~1400~^~Beverages, coffee, ready to drink, iced, mocha, milk based~^~BEVERAGES,COFFEE,READY TO DRK,ICED,MOCHA,MILK BSD~^^^^^0^^6.38^^^ -~14185~^~1400~^~Beverages, tea, Oolong, brewed~^~BEVERAGES,TEA,OOLONG,BREWED~^^^~Y~^^0^^^^^ -~14187~^~1400~^~Beverages, Clam and tomato juice, canned~^~BEVERAGES,CLAM & TOMATO JUC,CND~^^^^^0^^6.25^3.80^8.80^4.00 -~14188~^~1400~^~Beverages, tea, green, ready to drink, ginseng and honey, sweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,GINSENG & HONEY,SWTND~^^^~Y~^^0^^^^^ -~14189~^~1400~^~Beverages, The COCA-COLA company, Minute Maid, Lemonade~^~BEVERAGES,THE COCA-COLA COMPANY,MINUTE MAID,LEMONADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14190~^~1400~^~Beverages, tea, green, ready-to-drink, diet~^~BEVERAGES,TEA,GRN,RTD,DIET~^^^~Y~^^0^^^^^ -~14191~^~1400~^~Beverages, tea, green, ready-to-drink, citrus, diet, fortified with vitamin C~^~BEVERAGES,TEA,GRN,RTD,CITRUS,DIET,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14192~^~1400~^~Beverages, Cocoa mix, powder~^~BEVERAGES,COCOA MIX,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14194~^~1400~^~Beverages, Cocoa mix, powder, prepared with water~^~BEVERAGES,COCOA MIX,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14195~^~1400~^~Beverages, Cocoa mix, NESTLE, Hot Cocoa Mix Rich Chocolate With Marshmallows~^~BEV,COCOA MIX,NESTLE,HOT COCOA MIX RICH CHOC W/ MARSHMALLOWS~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14196~^~1400~^~Beverages, Cocoa mix, no sugar added, powder~^~BEVERAGES,COCOA MIX,NO SUGAR ADDED,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14197~^~1400~^~Cocoa mix, NESTLE, Rich Chocolate Hot Cocoa Mix~^~COCOA MIX,NESTLE,RICH CHOC HOT COCOA MIX~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14199~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, sweetened~^~BEVERAGES,TEA,BLACK,RTD,LEMON,SWTND~^^^~Y~^^0^^^^^ -~14201~^~1400~^~Beverages, coffee, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14202~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared, decaffeinated~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14203~^~1400~^~Beverages, coffee, instant, regular, half the caffeine~^~BEVERAGES,COFFEE,INST,REG,HALF THE CAFFEINE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14204~^~1400~^~Beverages, coffee and cocoa, instant, decaffeinated, with whitener and low calorie sweetener~^~BEVERAGES,COFFEE&COCOA,INST,DECAFFEINATED,W/WHTNR&LOCALSWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14206~^~1400~^~Beverages, tea, green, ready-to-drink, sweetened~^~BEVERAGES,TEA,GRN,RTD,SWTND~^^^~Y~^^0^^^^^ -~14207~^~1400~^~Beverages, tea, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,RTD,LEMON,DIET~^^^~Y~^^0^^^^^ -~14209~^~1400~^~Beverages, coffee, brewed, prepared with tap water~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14210~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14211~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,BLACK,RTD,LEMON,DIET~^^^~Y~^^0^^6.25^^^ -~14214~^~1400~^~Beverages, coffee, instant, regular, powder~^~BEVERAGES,COFFEE,INST,REG,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14215~^~1400~^~Beverages, coffee, instant, regular, prepared with water~^~BEVERAGES,COFFEE,INST,REG,PREP W/ H2O~^^^^^0^^0.00^^^ -~14216~^~1400~^~Beverages, aloe vera juice drink, fortified with Vitamin C~^~BEVERAGES,ALOE VERA JUC DRK,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14217~^~1400~^~Beverages, OCEAN SPRAY, Cran Grape~^~BEVERAGES,OCEAN SPRAY,CRAN GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14218~^~1400~^~Beverages, coffee, instant, decaffeinated, powder~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14219~^~1400~^~Beverages, coffee, instant, decaffeinated, prepared with water~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PREP W/ H2O~^^^^^0^^0.00^^^ -~14220~^~1400~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14221~^~1400~^~Beverages, OCEAN SPRAY, Diet Cranberry Juice~^~BEVERAGES,OCEAN SPRAY,DIET CRANBERRY JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14222~^~1400~^~Beverages, coffee, instant, with chicory~^~BEVERAGES,COFFEE,INST,W/ CHICORY~^^^^^0^^6.25^3.20^8.37^4.10 -~14223~^~1400~^~Beverages, coffee, instant, chicory~^~BEVERAGES,COFFEE,INST,CHICORY~^^^^^0^^^^^ -~14224~^~1400~^~Beverages, coffee, instant, mocha, sweetened~^~BEVERAGES,COFFEE,INST,MOCHA,SWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14226~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry and Raspberry Flavored Juice~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY & RASPBERRY FLAV JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14227~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Strawberry Flavored Juice Drink~^~BEVERAGES,OCEAN SPRAYWHITE CRANBERRY STRAWBERRY FLAV JUC DRK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14231~^~1400~^~Beverages, KRAFT, coffee, instant, French Vanilla Cafe~^~BEVERAGES,KRAFT,COFFEE,INST,FRENCH VANILLA CAFE~^^~Kraft Foods, Inc.~^^^0^^^^^ -~14233~^~1400~^~Beverages, OCEAN SPRAY, Cran Raspberry Juice Drink~^~BEVERAGEES, OCEAN SPRAY, CRAN RASPBERRY JUICE DRINK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14234~^~1400~^~Beverages, OCEAN SPRAY, Cran Lemonade~^~BEVERAGES,OCEAN SPRAY,CRAN LEMONADE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14235~^~1400~^~Beverages, OCEAN SPRAY, Diet Cran Cherry~^~BEV, OCEAN SPRAY, CRAN CHERRY DIET~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14236~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14237~^~1400~^~Beverages, coffee substitute, cereal grain beverage, prepared with water~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PREP W/ H2O~^^^~Y~^^0^^^^^ -~14238~^~1400~^~Beverages, cranberry-apple juice drink, bottled~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14239~^~1400~^~Alcoholic beverage, malt beer, hard lemonade~^~ALCOHOLIC BEV,MALT BEER,HARD LEMONADE~^^^~Y~^^0^^6.25^^^ -~14240~^~1400~^~Beverages, cranberry-apricot juice drink, bottled~^~BEVERAGES,CRANBERRY-APRICOT JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14241~^~1400~^~Beverages, cranberry-grape juice drink, bottled~^~BEVERAGES,CRANBERRY-GRAPE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14242~^~1400~^~Cranberry juice cocktail, bottled~^~CRANBERRY JUC COCKTAIL,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14243~^~1400~^~Cranberry juice cocktail, bottled, low calorie, with calcium, saccharin and corn sweetener~^~CRANBERRY JUC COCKTAIL,BTLD,LO CAL,W/CA,SACCHARIN&CORN SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14245~^~1400~^~Beverages, Eggnog-flavor mix, powder, prepared with whole milk~^~BEVERAGES,EGGNOG-FLAVOR MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14246~^~1400~^~Beverages, tea, green, instant, decaffeinated, lemon, unsweetened, fortified with vitamin C~^~BEVERAGES,TEA,GRN,INST,DECAFFEI,LEMON,UNSWTND,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14247~^~1400~^~Beverages, tea, black, ready to drink~^~BEVERAGES,TEA,BLACK,READY TO DRK~^^~McDonald's Corporation~^~Y~^^0^^6.25^^^ -~14248~^~1400~^~Alcoholic beverage, beer, light, higher alcohol~^~ALCOHOLIC BEV,BEER,LT,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14250~^~1400~^~Beverages, AMBER, hard cider~^~BEVERAGES,AMBER,HARD CIDER~^^^~Y~^^0^^6.25^^^ -~14251~^~1400~^~Alcoholic beverages, beer, higher alcohol~^~ALCOHOLIC BEVERAGES,BEER,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14252~^~1400~^~Beverages, Malt liquor beverage~^~BEVERAGES,MALT LIQUOR BEV~^^^~Y~^^0^^6.25^^^ -~14253~^~1400~^~Alcoholic beverages, wine, rose~^~ALCOHOLIC BEVERAGES,WINE,ROSE~^^^~Y~^^0^^6.25^^^ -~14255~^~1400~^~Beverages, OCEAN SPRAY, Cran Pomegranate~^~BEVERAGES,OCEAN SPRAY,CRAN POMEGRANATE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14256~^~1400~^~Beverages, OCEAN SPRAY, Cran Cherry~^~BEVERAGES,OCEAN SPRAY,CRAN CHERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14257~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14258~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14259~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry, Concord Grape~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY,CONCORD GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14260~^~1400~^~Beverages, tea, green, brewed, decaffeinated~^~BEVERAGES,TEA,GRN,BREWED,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14261~^~1400~^~Beverages, tea, green, ready to drink, unsweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,UNSWTND~^^^~Y~^^0^^6.25^^^ -~14262~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14263~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate, prepared with water~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14264~^~1400~^~Beverages, fruit punch drink, without added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,WO/ ADDED NUTR,CND~^^^~Y~^^0^^^^^ -~14267~^~1400~^~Beverages, Fruit punch drink, with added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,W/ ADDED NUTR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14268~^~1400~^~Beverages, Fruit punch drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14269~^~1400~^~Beverages, Fruit punch drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14270~^~1400~^~Beverages, coffee, instant, vanilla, sweetened, decaffeinated, with non dairy creamer~^~BEVERAGES,COFFEE,INST,VANILA,SWTND,DECAFF,W/ NON DAIRY CREAM~^^^~Y~^^0^^6.25^^^ -~14276~^~1400~^~Beverages, Tropical Punch, ready-to-drink~^~BEVERAGES,TROPICAL PUNCH,RTD~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~14277~^~1400~^~Beverages, grape drink, canned~^~BEVERAGES,GRAPE DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14278~^~1400~^~Beverages, tea, green, brewed, regular~^~BEVERAGES,TEA,GRN,BREWED,REG~^^^~Y~^^0^^^^^ -~14279~^~1400~^~Beverages, tea, black, ready-to-drink, peach, diet~^~BEVERAGES,TEA,BLACK,RTD,PEACH,DIET~^^^~Y~^^0^^^^^ -~14280~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated, diet~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED,DIET~^^^~Y~^^0^^6.25^^^ -~14281~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14282~^~1400~^~Beverages, grape juice drink, canned~^~BEVERAGES,GRAPE JUC DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14284~^~1400~^~Beverages, Cranberry juice cocktail~^~BEVERAGES,CRANBERRY JUC COCKTAIL~^^^^^0^^^^^ -~14285~^~1400~^~Beverages, OCEAN SPRAY, Ruby Red cranberry~^~BEVERAGES,OCEAN SPRAY,RUBY RED CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14286~^~1400~^~Beverages, MOTTS, Apple juice light, fortified with vitamin C~^~BEVERAGES,MOTTS,APPL JUC LT,FORT W/ VIT C~^^~Mott's INC.~^^^0^^6.25^^^ -~14287~^~1400~^~Beverages, Lemonade, powder~^~BEVERAGES,LEMONADE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14288~^~1400~^~Lemonade, powder, prepared with water~^~LEMONADE,PDR,PREP W/H2O~^^^^^0^^0.00^^^ -~14291~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, peach, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,PEACH,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14292~^~1400~^~Lemonade, frozen concentrate, white~^~LEMONADE,FRZ CONC,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14293~^~1400~^~Lemonade, frozen concentrate, white, prepared with water~^~LEMONADE,FRZ CONC,WHITE,PREP W/H2O~^^^^^0^^0.00^^^ -~14294~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, lemon, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,LEMON,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14296~^~1400~^~Beverages, lemonade-flavor drink, powder~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14297~^~1400~^~Beverages, lemonade-flavor drink, powder, prepared with water~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR,PREP W/ H2O~^^^^^0^^0.00^^^ -~14303~^~1400~^~Limeade, frozen concentrate, prepared with water~^~LIMEADE,FRZ CONC,PREP W/H2O~^^^^^0^^^^^ -~14305~^~1400~^~Malt beverage, includes non-alcoholic beer~^~MALT BEV,INCL NON-ALCOHOLIC BEER~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14309~^~1400~^~Beverages, OVALTINE, Classic Malt powder~^~BEVERAGES,OVALTINE,CLASSIC MALT PDR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14310~^~1400~^~Beverages, Malted drink mix, natural, with added nutrients, powder, prepared with whole milk~^~BEVERA,MALTED DRK MIX,NAT,W/ ADD NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14311~^~1400~^~Beverages, Malted drink mix, natural, powder, dairy based.~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,DAIRY BASED.~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14312~^~1400~^~Beverages, Malted drink mix, natural, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14315~^~1400~^~Beverages, OVALTINE, chocolate malt powder~^~BEVERAGES,OVALTINE,CHOC MALT PDR~^^~Ovaltine~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14316~^~1400~^~Beverages, Malted drink mix, chocolate, with added nutrients, powder, prepared with whole milk~^~BEVERAG,MALT DRK MIX,CHOC,W/ ADDED NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14317~^~1400~^~Beverages, malted drink mix, chocolate, powder~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14318~^~1400~^~Beverages, Malted drink mix, chocolate, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14323~^~1400~^~Beverages, orange drink, canned, with added vitamin C~^~BEVERAGES,ORANGE DRK,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14327~^~1400~^~Beverages, orange and apricot juice drink, canned~^~BEVERAGES,ORANGE & APRICOT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14334~^~1400~^~Beverages, pineapple and grapefruit juice drink, canned~^~BEVERAGES,PNAPPL & GRAPEFRUIT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14341~^~1400~^~Beverages, pineapple and orange juice drink, canned~^~BEVERAGES,PNAPPL & ORANGE JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14347~^~1400~^~Shake, fast food, vanilla~^~SHAKE,FAST FOOD,VANILLA~^^^~Y~^^0^^6.38^4.27^8.80^3.90 -~14350~^~1400~^~Strawberry-flavor beverage mix, powder~^~STRAWBERRY-FLAVOR BEV MIX,PDR~^^^~Y~^^0^^6.25^3.90^8.37^3.90 -~14351~^~1400~^~Beverages, Strawberry-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,STRAWBERRY-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14352~^~1400~^~Beverages, tea, black, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14353~^~1400~^~Beverages, tea, instant, decaffeinated, unsweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14355~^~1400~^~Beverages, tea, black, brewed, prepared with tap water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14356~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, diet~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,DIET~^^^~Y~^^0^^6.25^2.44^8.37^3.80 -~14357~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, sweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,SWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~14366~^~1400~^~Beverages, tea, instant, unsweetened, powder~^~BEVERAGES,TEA,INST,UNSWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14367~^~1400~^~Beverages, tea, instant, unsweetened, prepared with water~^~BEVERAGES,TEA,INST,UNSWTND,PREP W/ H2O~^^^~Y~^^0^^0.00^^^ -~14368~^~1400~^~Beverages, tea, instant, lemon, unsweetened~^~BEVERAGES,TEA,INST,LEMON,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14370~^~1400~^~Beverages, tea, instant, lemon, sweetened, powder~^~BEVERAGES,TEA,INST,LEMON,SWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14371~^~1400~^~Beverages, tea, instant, lemon, sweetened, prepared with water~^~BEVERAGES,TEA,INST,LEMON,SWTND,PREP W/ H2O~^^^^^0^^0.00^^^ -~14375~^~1400~^~Beverages, tea, instant, sweetened with sodium saccharin, lemon-flavored, powder~^~BEVERAGES,TEA,INST,SWTND W/ NA SACCHARIN,LEMON-FLAVORED,PDR~^^^^^0^^6.25^2.44^8.37^3.80 -~14376~^~1400~^~Beverages, tea, instant, lemon, diet~^~BEVERAGES,TEA,INST,LEMON,DIET~^^^~Y~^^0^^0.00^^^ -~14381~^~1400~^~Beverages, tea, herb, other than chamomile, brewed~^~BEVERAGES,TEA,HERB,OTHER THAN CHAMOMILE,BREWED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14384~^~1400~^~Beverages, water, bottled, PERRIER~^~BEVERAGES,H2O,BTLD,PERRIER~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14385~^~1400~^~Beverages, water, bottled, POLAND SPRING~^~BEVERAGES,H2O,BTLD,POLAND SPRING~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14390~^~1400~^~Beverages, cocoa mix, with aspartame, powder, prepared with water~^~BEVERAGES,COCOA MIX,W/ ASPRT,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14400~^~1400~^~Beverages, carbonated, cola, fast-food cola~^~BEVERAGES,CARB,COLA,FAST-FOOD COLA~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14405~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14406~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14407~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14408~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder, prepared with water~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR,PREP W/ H2O~^^^^^0^^^^^ -~14409~^~1400~^~Beverages, Orange-flavor drink, breakfast type, low calorie, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,LO CAL,PDR~^^^^^0^^^^^ -~14411~^~1400~^~Beverages, water, tap, drinking~^~BEVERAGES,H2O,TAP,DRINKING~^^^~Y~^^0^^^^^ -~14412~^~1400~^~Beverages, water, tap, well~^~BEVERAGES,H2O,TAP,WELL~^^^^^0^^6.25^0.00^0.00^0.00 -~14414~^~1400~^~Alcoholic beverage, liqueur, coffee, 53 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,53 PROOF~^^^~Y~^^0^^6.25^3.47^8.37^3.90 -~14415~^~1400~^~Alcoholic beverage, liqueur, coffee with cream, 34 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE W/ CRM,34 PROOF~^^^~Y~^^0^^6.38^4.20^8.80^3.90 -~14416~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, contains caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14421~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder, prepared with whole milk~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14422~^~1400~^~Beverages, Dairy drink mix, chocolate, reduced calorie, with low-calorie sweeteners, powder~^~BEV,DAIRY DRK MIX,CHOC,RED CAL,W/ LOW-CAL SWEETENERS,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14423~^~1400~^~Beverages, dairy drink mix, chocolate, reduced calorie, with aspartame, powder, prepared with water and ice~^~BEVE,DARY DRK MIX,CHC,RED CAL,W/ ASPRT,PDR,PREP W/ H2O & ICE~^^^^^0^^0.00^^^ -~14424~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate.~^~BEV,ORANGE-FLAVO DRK,BRKFST TYPE,W/ PULP,FRZ CON. NOT MANUF.~^^^^^0^^6.25^3.36^8.37^3.90 -~14425~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate, prepared with water~^~BEVE,ORANGE-FLAV DRK,BRKFST TYPE,W/ PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14426~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate~^~BEVERAGES,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14427~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate, prepared with water~^~BEV,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14428~^~1400~^~Beverages, shake, fast food, strawberry~^~BEVERAGES,SHAKE,FAST FD,STRAWBERRY~^^^^^0^^6.38^4.27^8.80^3.90 -~14429~^~1400~^~Beverages, water, tap, municipal~^~BEVERAGES,H2O,TAP,MUNICIPAL~^^^~Y~^^0^^6.25^^^ -~14430~^~1400~^~Cranberry juice cocktail, frozen concentrate~^~CRANBERRY JUC COCKTAIL,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14431~^~1400~^~Cranberry juice cocktail, frozen concentrate, prepared with water~^~CRANBERRY JUC COCKTAIL,FRZ CONC,PREP W/ H2O~^^^^^0^^^^^ -~14432~^~1400~^~Beverages, water, bottled, non-carbonated, DANNON~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON~^^~The Dannon Company, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14433~^~1400~^~Beverages, water, bottled, non-carbonated, PEPSI, AQUAFINA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,PEPSI,AQUAFINA~^^~Pepsi-Cola North America~^^^0^^6.25^4.00^9.00^4.00 -~14434~^~1400~^~Beverages, The COCA-COLA company, DASANI, water, bottled, non-carbonated~^~BEVERAGES,THE COCA-COLA COMP,DASANI,H2O,BTLD,NON-CARBONATED~^^~The Coca-Cola Company~^^^0^^6.25^4.00^9.00^4.00 -~14436~^~1400~^~Beverages, orange breakfast drink, ready-to-drink, with added nutrients~^~BEVERAGES,ORANGE BRKFST DRK,RTD,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14437~^~1400~^~Beverages, water, bottled, non-carbonated, CALISTOGA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CALISTOGA~^^~Nestle Waters North America Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14438~^~1400~^~Beverages, water, bottled, non-carbonated, CRYSTAL GEYSER~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CRYSTAL GEYSER~^^~Crystal Geyser Alpine Spring Water~^^^0^^6.25^4.00^9.00^4.00 -~14439~^~1400~^~Water, bottled, non-carbonated, NAYA~^~WATER,BTLD,NON-CARBONATED,NAYA~^^~NAYA Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14440~^~1400~^~Beverages, DANNON, water, bottled, non-carbonated, with Fluoride~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON FLUORIDE TO GO~^^~DANNON Fluoride To Go~^^^0^^6.25^4.00^9.00^4.00 -~14450~^~1400~^~Beverages, drink mix, QUAKER OATS, GATORADE, orange flavor, powder~^~BEVERAGES,DRK MIX,QUAKER OATS,GATORADE,ORANGE FLAVOR,PDR~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^^^0^^6.25^4.00^9.00^4.00 -~14460~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade, G performance O 2, ready-to-drink.~^~BEVERAGES,PEPSICO QUAKER,GATORADE,G PERFORMANCE O 2,RTD.~^~thirst quencher, Gatorade G02 Perform~^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14461~^~1400~^~Beverages, COCA-COLA, POWERADE, lemon-lime flavored, ready-to-drink~^~BEVERAGES,COCA-COLA,POWERADE,LEMON-LIME FLAV,RTD~^~thirst quencher~^~The Coca-Cola Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14462~^~1400~^~Beverages, Propel Zero, fruit-flavored, non-carbonated~^~BEVERAGES,PROPEL ZERO,FRUIT-FLAVORED,NON-CARBONATED~^~thirst quencher, sport drink~^^~Y~^^0^^^^^ -~14475~^~1400~^~Beverages, ARIZONA, tea, ready-to-drink, lemon~^~BEVERAGES,ARIZONA,TEA,RTD,LEMON~^^~Arizona Beverage Co.~^^^0^^6.25^4.00^9.00^4.00 -~14476~^~1400~^~Beverages, LIPTON BRISK, tea, black, ready-to-drink, lemon~^~BEVERAGES,LIPTON BRISK,TEA,BLACK,RTD,LEMON~^^~Lipton~^^^0^^6.25^4.00^9.00^4.00 -~14530~^~1400~^~Whiskey sour mix, bottled, with added potassium and sodium~^~WHISKEY SOUR MIX,BTLD,W/ K&NA~^^^^^0^^6.25^3.40^8.40^3.90 -~14531~^~1400~^~Alcoholic beverage, whiskey sour~^~ALCOHOLIC BEV,WHISKEY SOUR~^^^^^0^^0.00^^^ -~14532~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 94 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 94 PROOF~^^^^^0^^6.25^^^4.12 -~14533~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 100 proof~^~ALCOHOLIC BEV DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 100PROOF~^^^^^0^^6.25^^^4.12 -~14534~^~1400~^~Alcoholic beverage, liqueur, coffee, 63 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,63 PROOF~^^^^^0^^6.25^3.47^8.37^3.90 -~14536~^~1400~^~Alcoholic beverage, wine, dessert, dry~^~ALCOHOLIC BEV,WINE,DSSRT,DRY~^^^^^0^^6.25^3.36^8.37^3.92 -~14537~^~1400~^~Carbonated beverage, low calorie, other than cola or pepper, with sodium saccharin, without caffeine~^~CARBONATED BEV,LOCAL,OTHR THAN COLA OR PEP,W/ NA SAC,WO/ CAF~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14538~^~1400~^~Beverages, Cocoa mix, low calorie, powder, with added calcium, phosphorus, aspartame, without added sodium or vitamin A~^~BEVE,COCA MIX,LO CAL,PDR,W/ ADD CA,P,ASPRT,WO/ ADD NA, VIT A~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14541~^~1400~^~Beverages, fruit punch-flavor drink, powder, without added sodium, prepared with water~^~BEVERAGE,FRUIT PUNCH-FLAVOR DRK,PDR,WO/ ADDED NA,PREP W/ H2O~^^^^^0^^0.00^^^ -~14542~^~1400~^~Lemonade, frozen concentrate, pink~^~LEMONADE,FRZ CONC,PINK~^^^^^0^^6.25^3.36^8.37^3.80 -~14543~^~1400~^~Beverages, lemonade, frozen concentrate, pink, prepared with water~^~BEVERAGES,LEMONADE,FRZ CONC,PINK,PREP W/ H2O~^^^^^0^^0.00^^^ -~14544~^~1400~^~Beverages, tea, black, brewed, prepared with distilled water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ DISTILLED H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~14545~^~1400~^~Beverages, tea, herb, brewed, chamomile~^~BEVERAGES,TEA,HERB,BREWED,CHAMOMILE~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14548~^~1400~^~Beverages, tea, instant, lemon, with added ascorbic acid~^~BEVERAGES,TEA,INST,LEMON,W/ ADDED VIT C~^^^^^0^^6.25^2.44^8.37^3.90 -~14550~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 86 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 86 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14551~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 90 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 90 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14552~^~1400~^~Carbonated beverage, chocolate-flavored soda~^~CARBONATED BEV,CHOCOLATE-FLAVORED SODA~^~soft drink, pop~^^~Y~^^0^^^^^ -~14553~^~1400~^~Beverages, Wine, non-alcoholic~^~BEVERAGES,WINE,NON-ALCOHOLIC~^^^~Y~^^0^^^^^ -~14555~^~1400~^~Water, bottled, generic~^~WATER,BTLD,GENERIC~^^^~Y~^^0^^^^^ -~14557~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients~^~BEVERAGE,CHOCOLATE-FLAVOR BEV MIX FOR MILK,PDR,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14558~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients, prepared with whole milk~^~BEV,CHOCO-FLA BEV MIX , MLK,PDR,W/ ADD NUTR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14559~^~1400~^~Beverages, water, bottled, non-carbonated, EVIAN~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,EVIAN~^^~S.A. Evian Co.~^^^0^^6.25^0.00^0.00^0.00 -~14599~^~1400~^~Beverages, Powerade Zero Ion4, calorie-free, assorted flavors~^~BEVERAGES,POWERADE ZERO ION4,CALORIE-FREE,ASSORTED FLAVORS~^^^~Y~^^0^^^^^ -~14601~^~1400~^~Beverages, WENDY'S, tea, ready-to-drink, unsweetened~^~BEVERAGES,WENDY'S,TEA,RTD,UNSWTND~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14602~^~1400~^~Alcoholic Beverage, wine, table, red, Merlot~^~ALCOHOLIC BEV,WINE,TABLE,RED,MERLOT~^^^^^0^^6.25^3.36^8.37^3.92 -~14604~^~1400~^~Water, non-carbonated, bottles, natural fruit flavors, sweetened with low calorie sweetener~^~WATER,NON-CARBONATED,FRUIT FLAVORS,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^^^^ -~14605~^~1400~^~Beverages, Water with added vitamins and minerals, bottles, sweetened, assorted fruit flavors~^~BEV,H2O W/ ADDED VIT & MIN,BOTTLES,SWTND,AST FRUIT FLAVORS~^^^~Y~^^0^^^^^ -~14607~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14608~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14609~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14610~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14611~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14612~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14613~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Guava Passion Fruit~^~BEVERAGES,V8 SPLASH JUC DRINKS,GUAVA PASSION FRUIT~^^~Campbell Soup Co.~^^^0^^^^^ -~14614~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Mango Peach~^~BEVERAGES,V8 SPLASH JUC DRINKS,MANGO PEACH~^^~Campbell Soup Co.~^^^0^^^^^ -~14615~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orange Pineapple~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORANGE PNAPPL~^^~Campbell Soup Co.~^^^0^^^^^ -~14616~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orchard Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORCHARD BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14617~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Banana~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14618~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14619~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14620~^~1400~^~Beverages, V8 V-FUSION Juices, Peach Mango~^~BEVERAGES,V8 V-FUSION JUICES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14621~^~1400~^~Beverages, V8 V-FUSION Juices, Strawberry Banana~^~BEVERAGES,V8 V-FUSION JUICES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14622~^~1400~^~Beverages, V8 V-FUSION Juices, Tropical~^~BEVERAGES,V8 V-FUSION JUICES,TROPICAL~^^~Campbell Soup Co.~^^^0^^^^^ -~14623~^~1400~^~Beverages, V8 V- FUSION Juices, Acai Berry~^~BEVERAGES,V8 V- FUSION JUICES,ACAI BERRY~^^~Campbell Soup Co.~^^^0^^^^^ -~14625~^~1400~^~Beverages, Energy drink, AMP~^~BEVERAGES,ENERGY DRK,AMP~^^~Pepsi-Cola North America~^~Y~^^0^^^^^ -~14626~^~1400~^~Beverages, Energy drink, FULL THROTTLE~^~BEVERAGES,ENERGY DRK,FULL THROTTLE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14627~^~1400~^~Beverages, Energy Drink, Monster, fortified with vitamins C, B2, B3, B6, B12~^~BEVERAGES,ENERGY DRK,MONSTER,FORT W/ VITAMINS C,B2,B3,B6,B12~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14628~^~1400~^~Beverages, Energy drink, AMP, sugar free~^~BEVERAGES,ENERGY DRK,AMP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14629~^~1400~^~Beverages, Energy drink, ROCKSTAR~^~BEVERAGES,ENERGY DRK,ROCKSTAR~^^~Rockstar, Inc.~^~Y~^^0^^^^^ -~14630~^~1400~^~Beverages, Energy drink, ROCKSTAR, sugar free~^~BEVERAGES,ENERGY DRK,ROCKSTAR,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14632~^~1400~^~Beverages, Meal supplement drink, canned, peanut flavor~^~BEVERAGES,MEAL SUPP DRK,CND,PNUT FLAVOR~^^^^^0^^6.25^^^ -~14633~^~1400~^~Beverages, Vegetable and fruit juice drink, reduced calorie, with low-calorie sweetener, added vitamin C~^~BEVER,VEG & FRUIT JUC DRK,RED CAL,W/ LOW-CAL SWTNR,ADD VIT C~^^^~Y~^^0^^^^^ -~14634~^~1400~^~Beverages, milk beverage, reduced fat, flavored and sweetened, Ready-to-drink, added calcium, vitamin A and vitamin D~^~BEV,MILK BEV,RED FAT,FLAV & SWTND,RTD,ADDED CA,VIT A & D~^~Nesquik ready-to-drink~^^~Y~^^0^^6.25^^^ -~14635~^~1400~^~Beverages, vegetable and fruit juice blend, 100% juice, with added vitamins A, C, E~^~BEVERAGES,VEG & FRUIT JUC BLEND,W/ ADDED VITAMINS A,C,E~^~includes V8 V-fusion juices~^^~Y~^^0^^^^^ -~14636~^~1400~^~Beverages, fruit juice drink, reduced sugar, with vitamin E added~^~BEVERAGES,FRUIT JUC DRK,RED SUGAR,W/ VITAMIN E ADDED~^~includes Capri Sun~^^~Y~^^0^^^3.36^8.37^3.80 -~14637~^~1400~^~Water, with corn syrup and/or sugar and low calorie sweetener, fruit flavored~^~WATER,W/ CORN SYRUP AND/OR SUGAR & LO CAL SWTNR,FRUIT FLAV~^~includes Caprisun Roarin' Waters~^^~Y~^^0^^6.25^^^ -~14638~^~1400~^~Beverages, Horchata, as served in restaurant~^~BEVERAGES,HORCHATA,AS SERVED IN RESTAURANT~^~Latino food~^^^^0^^^^^ -~14639~^~1400~^~Beverages, rice milk, unsweetened~^~BEVERAGES,RICE MILK,UNSWTND~^~ricemilk, rice milk~^^~Y~^^0^^^^^ -~14640~^~1400~^~Beverages, Energy drink, VAULT, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14641~^~1400~^~Beverages, Energy drink, VAULT Zero, sugar-free, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT ZERO,SUGAR-FREE,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14644~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade G2, low calorie~^~BEVERAGES,PEPSICO QUAKER,GATORADE G2,LO CAL~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^^^^ -~14645~^~1400~^~Beverages, Fruit flavored drink, less than 3% juice, not fortified with vitamin C~^~BEVERAGES,FRUIT FLAV DRK,LESS THAN 3% JUC,NOT FORT W/ VIT C~^^^~Y~^^0^^^^^ -~14646~^~1400~^~Beverages, Fruit flavored drink containing less than 3% fruit juice, with high vitamin C~^~BEV,FRUIT FLAV DRK CONTAINING , 3% FRUIT JUC,W/ HI VIT C~^^^~Y~^^0^^^^^ -~14647~^~1400~^~Beverages, Fruit flavored drink, reduced sugar, greater than 3% fruit juice, high vitamin C, added calcium~^~BEV,FRUIT FLAV DRK,RED SUGAR, > 3% FRUIT JUC,HI VIT C,ADD CA~^^^^^0^^^^^ -~14648~^~1400~^~Beverages, fruit juice drink, greater than 3% fruit juice, high vitamin C and added thiamin~^~BEV,FRUIT JUC DRK, MORE 3% FRUIT JUC,HI VIT C & ADD THIAMIN~^^^~Y~^^0^^^^^ -~14649~^~1400~^~Beverages, tea, hibiscus, brewed~^~BEVERAGES,TEA,HIBISCUS,BREWED~^^^~Y~^^0^^^^^ -~14651~^~1400~^~Beverages, fruit juice drink, greater than 3% juice, high vitamin C~^~BEVERAGES,FRUIT JUC DRK,GREATER THAN 3% JUC,HI VIT C~^^^~Y~^^0^^^^^ -~14654~^~1400~^~Beverages, nutritional shake mix, high protein, powder~^~BEVERAGES,NUTRITIONAL SHAKE MIX,HI PROT,PDR~^^^~Y~^^0^^^^^ -~15001~^~1500~^~Fish, anchovy, european, raw~^~ANCHOVY,EUROPEAN,RAW~^^^^^0^~Engraulis encrasicholus (L.)~^6.25^4.27^9.02^3.87 -~15002~^~1500~^~Fish, anchovy, european, canned in oil, drained solids~^~ANCHOVY,EUROPEAN,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^8.92^3.87 -~15003~^~1500~^~Fish, bass, fresh water, mixed species, raw~^~BASS,FRSH H2O,MXD SP,RAW~^^^^^0^~Percichthyidae and Centrarchidae~^6.25^4.27^9.02^3.87 -~15004~^~1500~^~Fish, bass, striped, raw~^~BASS,STRIPED,RAW~^^^^^0^~Morone saxatilis (Walbaum)~^6.25^4.27^9.02^3.87 -~15005~^~1500~^~Fish, bluefish, raw~^~BLUEFISH,RAW~^^^^^0^~Pomatomus saltatrix (L.)~^6.25^4.27^9.02^3.87 -~15006~^~1500~^~Fish, burbot, raw~^~BURBOT,RAW~^^^^^0^~Lota lota (L.)~^6.25^4.27^9.02^3.87 -~15007~^~1500~^~Fish, butterfish, raw~^~BUTTERFISH,RAW~^^^^^0^~Peprilus triacanthus (Peck)~^6.25^4.27^9.02^3.87 -~15008~^~1500~^~Fish, carp, raw~^~CARP,RAW~^^^~Y~^^0^~Cyprinus carpio (L.)~^6.25^4.27^9.02^3.87 -~15009~^~1500~^~Fish, carp, cooked, dry heat~^~CARP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15010~^~1500~^~Fish, catfish, channel, wild, raw~^~CATFISH,CHANNEL,WILD,RAW~^^^^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15011~^~1500~^~Fish, catfish, channel, cooked, breaded and fried~^~CATFISH,CHANNEL,CKD,BREADED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15012~^~1500~^~Fish, caviar, black and red, granular~^~CAVIAR,BLACK&RED,GRANULAR~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15013~^~1500~^~Fish, cisco, raw~^~CISCO,RAW~^^^^^0^~Coregonus artedi Lesueur~^6.25^4.27^9.02^3.87 -~15014~^~1500~^~Fish, cisco, smoked~^~CISCO,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15015~^~1500~^~Fish, cod, Atlantic, raw~^~COD,ATLANTIC,RAW~^^^~Y~^^0^~Gadus morhua (L.)~^6.25^4.27^9.02^3.87 -~15016~^~1500~^~Fish, cod, Atlantic, cooked, dry heat~^~COD,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15017~^~1500~^~Fish, cod, Atlantic, canned, solids and liquid~^~COD,ATLANTIC,CND,SOL&LIQ~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15018~^~1500~^~Fish, cod, Atlantic, dried and salted~^~COD,ATLANTIC,DRIED&SALTED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15019~^~1500~^~Fish, cod, Pacific, raw (may have been previously frozen)~^~FISH,COD,PACIFIC,RAW (MAY HAVE BEEN PREVIOUSLY FROZEN)~^^^~Y~^^0^~Gadus macrocephalus Tilesius~^6.25^4.27^9.02^3.87 -~15020~^~1500~^~Fish, croaker, Atlantic, raw~^~CROAKER,ATLANTIC,RAW~^^^~Y~^^0^~Micropogonias undulatus (L.)~^6.25^4.27^9.02^3.87 -~15021~^~1500~^~Fish, croaker, Atlantic, cooked, breaded and fried~^~CROAKER,ATLANTIC,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^9.02^3.87 -~15022~^~1500~^~Fish, cusk, raw~^~CUSK,RAW~^^^^^0^~Brosme brosme (Muller)~^6.25^4.27^9.02^3.87 -~15023~^~1500~^~Fish, mahimahi, raw~^~FISH,MAHIMAHI,RAW~^^^^^0^~Coryphaena hippurus (L.)~^6.25^4.27^9.02^3.87 -~15024~^~1500~^~Fish, drum, freshwater, raw~^~DRUM,FRESHWATER,RAW~^^^^^0^~Aplodinotus grunniens Rafinesque~^6.25^4.27^9.02^3.87 -~15025~^~1500~^~Fish, eel, mixed species, raw~^~EEL,MIXED SPECIES,RAW~^^^~Y~^^0^~Anguilla spp.~^6.25^4.27^9.02^3.87 -~15026~^~1500~^~Fish, eel, mixed species, cooked, dry heat~^~EEL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15027~^~1500~^~Fish, fish sticks, frozen, prepared~^~FISH,FISH STKS,FRZ,PREP~^^^~Y~^^0^^6.10^4.20^8.94^3.97 -~15028~^~1500~^~Fish, flatfish (flounder and sole species), raw~^~FLATFISH (FLOUNDER&SOLE SP),RAW~^^^~Y~^^0^~Bothidae and Pleuronectidae~^6.25^4.27^9.02^3.87 -~15029~^~1500~^~Fish, flatfish (flounder and sole species), cooked, dry heat~^~FLATFISH (FLOUNDER&SOLE SP),CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15030~^~1500~^~Fish, gefiltefish, commercial, sweet recipe~^~GEFILTEFISH,COMM,SWT RECIPE~^^^^^0^^6.25^4.27^9.02^4.00 -~15031~^~1500~^~Fish, grouper, mixed species, raw~^~GROUPER,MIXED SPECIES,RAW~^^^^^0^~Epinephelus spp.~^6.25^4.27^9.02^3.87 -~15032~^~1500~^~Fish, grouper, mixed species, cooked, dry heat~^~GROUPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15033~^~1500~^~Fish, haddock, raw~^~HADDOCK,RAW~^^^~Y~^^0^~Melanogrammus aeglefinus (L.)~^6.25^4.27^9.02^3.87 -~15034~^~1500~^~Fish, haddock, cooked, dry heat~^~HADDOCK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15035~^~1500~^~Fish, haddock, smoked~^~HADDOCK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15036~^~1500~^~Fish, halibut, Atlantic and Pacific, raw~^~HALIBUT,ATLANTIC&PACIFIC,RAW~^^^~Y~^^0^~Hippoglossus hippoglossus (L.) and H. stenolepis Schmidt~^6.25^4.27^9.02^3.87 -~15037~^~1500~^~Fish, halibut, Atlantic and Pacific, cooked, dry heat~^~HALIBUT,ATLANTIC&PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15038~^~1500~^~Fish, halibut, Greenland, raw~^~HALIBUT,GREENLAND,RAW~^^^~Y~^^0^~Reinhardtius hippoglossoides (Walbaum)~^6.25^4.27^9.02^3.87 -~15039~^~1500~^~Fish, herring, Atlantic, raw~^~HERRING,ATLANTIC,RAW~^^^~Y~^^0^~Clupea harengus harengus (L.)~^6.25^4.27^9.02^3.87 -~15040~^~1500~^~Fish, herring, Atlantic, cooked, dry heat~^~HERRING,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15041~^~1500~^~Fish, herring, Atlantic, pickled~^~HERRING,ATLANTIC,PICKLED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15042~^~1500~^~Fish, herring, Atlantic, kippered~^~HERRING,ATLANTIC,KIPPERED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15043~^~1500~^~Fish, herring, Pacific, raw~^~HERRING,PACIFIC,RAW~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^4.27^9.02^3.87 -~15044~^~1500~^~Fish, ling, raw~^~LING,RAW~^^^^^0^~Molva molva (L.)~^6.25^4.27^9.02^3.87 -~15045~^~1500~^~Fish, lingcod, raw~^~LINGCOD,RAW~^^^^^0^~Ophiodon elongatus Girard~^6.25^4.27^9.02^3.87 -~15046~^~1500~^~Fish, mackerel, Atlantic, raw~^~MACKEREL,ATLANTIC,RAW~^^^~Y~^^0^~Scomber scombrus L.~^6.25^4.27^9.02^3.87 -~15047~^~1500~^~Fish, mackerel, Atlantic, cooked, dry heat~^~MACKEREL,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15048~^~1500~^~Fish, mackerel, jack, canned, drained solids~^~MACKEREL,JACK,CND,DRND SOL~^^^~Y~^^0^~Trachurus symmetricus (Ayers)~^6.25^4.27^9.02^3.87 -~15049~^~1500~^~Fish, mackerel, king, raw~^~MACKEREL,KING,RAW~^^^^^0^~Scombermorus cavalla (Cuvier)~^6.25^4.27^9.02^3.87 -~15050~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, raw~^~MACKEREL,PACIFIC&JACK,MXD SP,RAW~^^^~Y~^^0^~Scomber spp. and Trachurus spp.~^6.25^4.27^9.02^3.87 -~15051~^~1500~^~Fish, mackerel, spanish, raw~^~MACKEREL,SPANISH,RAW~^^^^^0^~Scombermorus maculatus (Mitchill)~^6.25^4.27^9.02^3.87 -~15052~^~1500~^~Fish, mackerel, spanish, cooked, dry heat~^~MACKEREL,SPANISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15053~^~1500~^~Fish, milkfish, raw~^~MILKFISH,RAW~^^^^^0^~Chanos chanos (Forskaal)~^6.25^4.27^9.02^3.87 -~15054~^~1500~^~Fish, monkfish, raw~^~MONKFISH,RAW~^^^^^0^~Lophius piscatorius L.~^6.25^4.27^9.02^3.87 -~15055~^~1500~^~Fish, mullet, striped, raw~^~MULLET,STRIPED,RAW~^^^~Y~^^0^~Mugil cephalus L.~^6.25^4.27^9.02^3.87 -~15056~^~1500~^~Fish, mullet, striped, cooked, dry heat~^~MULLET,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15057~^~1500~^~Fish, ocean perch, Atlantic, raw~^~OCEAN PERCH,ATLANTIC,RAW~^^^~Y~^^0^~Sebastes marinus L.~^6.25^4.27^9.02^3.87 -~15058~^~1500~^~Fish, ocean perch, Atlantic, cooked, dry heat~^~OCEAN PERCH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15059~^~1500~^~Fish, pout, ocean, raw~^~POUT,OCEAN,RAW~^^^^^0^~Macrozoarces americanus (Schneider)~^6.25^4.27^9.02^3.87 -~15060~^~1500~^~Fish, perch, mixed species, raw~^~PERCH,MIXED SPECIES,RAW~^^^~Y~^^0^~Morone americana Gmelin and Perca flavescens (Mitchill)~^6.25^4.27^9.02^3.87 -~15061~^~1500~^~Fish, perch, mixed species, cooked, dry heat~^~PERCH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15062~^~1500~^~Fish, pike, northern, raw~^~PIKE,NORTHERN,RAW~^^^~Y~^^0^~Esox lucius L.~^6.25^4.27^9.02^3.87 -~15063~^~1500~^~Fish, pike, northern, cooked, dry heat~^~PIKE,NORTHERN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15064~^~1500~^~Fish, pike, walleye, raw~^~PIKE,WALLEYE,RAW~^^^^^0^~Stizostedion vitreum vitreum (Mitchill)~^6.25^4.27^9.02^3.87 -~15065~^~1500~^~Fish, pollock, Atlantic, raw~^~POLLOCK,ATLANTIC,RAW~^^^^^0^~Pollachius virens L.~^6.25^4.27^9.02^3.87 -~15066~^~1500~^~Fish, pollock, Alaska, raw (may contain additives to retain moisture)~^~POLLOCK,ALASKA,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15067~^~1500~^~Fish, pollock, Alaska, cooked, dry heat (may contain additives to retain moisture)~^~POLLOCK,ALASKA,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~~^6.25^4.27^9.02^3.87 -~15068~^~1500~^~Fish, pompano, florida, raw~^~POMPANO,FLORIDA,RAW~^^^~Y~^^0^~Trachinotus carolinus (L.)~^6.25^4.27^9.02^3.87 -~15069~^~1500~^~Fish, pompano, florida, cooked, dry heat~^~POMPANO,FLORIDA,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15070~^~1500~^~Fish, rockfish, Pacific, mixed species, raw~^~ROCKFISH,PACIFIC,MXD SP,RAW~^^^~Y~^^0^~Sebastes spp.~^6.25^4.27^9.02^3.87 -~15071~^~1500~^~Fish, rockfish, Pacific, mixed species, cooked, dry heat~^~ROCKFISH,PACIFIC,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15072~^~1500~^~Fish, roe, mixed species, raw~^~ROE,MIXED SPECIES,RAW~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15073~^~1500~^~Fish, roughy, orange, raw~^~ROUGHY,ORANGE,RAW~^^^^^0^~Hoplostethus atlanticus~^6.25^4.27^9.02^3.87 -~15074~^~1500~^~Fish, sablefish, raw~^~SABLEFISH,RAW~^^^^^0^~Anoplopoma fimbria (Pallas)~^6.25^4.27^9.02^3.87 -~15075~^~1500~^~Fish, sablefish, smoked~^~SABLEFISH,SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~15076~^~1500~^~Fish, salmon, Atlantic, wild, raw~^~SALMON,ATLANTIC,WILD,RAW~^^^^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15077~^~1500~^~Fish, salmon, chinook, smoked~^~SALMON,CHINOOK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15078~^~1500~^~Fish, salmon, chinook, raw~^~SALMON,CHINOOK,RAW~^^^^^0^~Oncorhynchus tshawytscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15079~^~1500~^~Fish, salmon, chum, raw~^~SALMON,CHUM,RAW~^^^^^0^~Oncorhynchus keta (Walbaum)~^6.25^4.27^9.02^3.87 -~15080~^~1500~^~Fish, salmon, chum, canned, drained solids with bone~^~SALMON,CHUM,DRND SOL W/BONE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15081~^~1500~^~Fish, salmon, coho, wild, raw~^~SALMON,COHO,WILD,RAW~^^^~Y~^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15082~^~1500~^~Fish, salmon, coho, wild, cooked, moist heat~^~SALMON,COHO,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15083~^~1500~^~Fish, salmon, pink, raw~^~SALMON,PINK,RAW~^^^~Y~^^0^~Oncorhynchus gorbuscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15084~^~1500~^~Fish, salmon, pink, canned, total can contents~^~FISH,SALMON,PINK,CND,TOTAL CAN CONTENTS~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15085~^~1500~^~Fish, salmon, sockeye, raw~^~FISH,SALMON,SOCKEYE,RAW~^^^~Y~^^0^^^^^ -~15086~^~1500~^~Fish, salmon, sockeye, cooked, dry heat~^~FISH,SALMON,SOCKEYE,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15087~^~1500~^~Fish, salmon, sockeye, canned, drained solids~^~FISH,SALMON,SOCKEYE,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15088~^~1500~^~Fish, sardine, Atlantic, canned in oil, drained solids with bone~^~SARDINE,ATLANTIC,CND IN OIL,DRND SOL W/BONE~^^^~Y~^^0^~Clupea harengus harengus L.~^6.25^4.27^9.00^3.87 -~15089~^~1500~^~Fish, sardine, Pacific, canned in tomato sauce, drained solids with bone~^~SARDINE,PACIFIC,CND IN TOMATO SAU,DRND SOL W/BONE~^^^~Y~^^0^~Sardinops spp.~^6.25^4.27^9.02^3.70 -~15090~^~1500~^~Fish, scup, raw~^~SCUP,RAW~^^^~Y~^^0^~Stenotomus chrysops L.~^6.25^4.27^9.02^3.87 -~15091~^~1500~^~Fish, sea bass, mixed species, raw~^~SEA BASS,MXD SP,RAW~^^^~Y~^^0^~Centropristes striata L. and Lateolabrax japonicus (Cuvier)~^6.25^4.27^9.02^3.87 -~15092~^~1500~^~Fish, sea bass, mixed species, cooked, dry heat~^~SEA BASS,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15093~^~1500~^~Fish, seatrout, mixed species, raw~^~SEATROUT,MXD SP,RAW~^^^^^0^~Cynoscion spp.~^6.25^4.27^9.02^3.87 -~15094~^~1500~^~Fish, shad, american, raw~^~SHAD,AMERICAN,RAW~^^^~Y~^^0^~Alosa sapidissima (Wilson)~^6.25^4.27^9.02^3.87 -~15095~^~1500~^~Fish, shark, mixed species, raw~^~SHARK,MIXED SPECIES,RAW~^^^~Y~^^0^~Squaliformes~^6.25^4.27^9.02^3.87 -~15096~^~1500~^~Fish, shark, mixed species, cooked, batter-dipped and fried~^~SHARK,MXD SP,CKD,BATTER-DIPPED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15097~^~1500~^~Fish, sheepshead, raw~^~SHEEPSHEAD,RAW~^^^^^0^~Archosargus probatocephalus (Walbaum)~^6.25^4.27^9.02^3.87 -~15098~^~1500~^~Fish, sheepshead, cooked, dry heat~^~SHEEPSHEAD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15099~^~1500~^~Fish, smelt, rainbow, raw~^~SMELT,RAINBOW,RAW~^^^^^0^~Osmerus mordax (Mitchill)~^6.25^4.27^9.02^3.87 -~15100~^~1500~^~Fish, smelt, rainbow, cooked, dry heat~^~SMELT,RAINBOW,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15101~^~1500~^~Fish, snapper, mixed species, raw~^~SNAPPER,MIXED SPECIES,RAW~^^^~Y~^^0^~Lutjanidae~^6.25^4.27^9.02^3.87 -~15102~^~1500~^~Fish, snapper, mixed species, cooked, dry heat~^~SNAPPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15103~^~1500~^~Fish, spot, raw~^~SPOT,RAW~^^^^^0^~Leiostomus xanthuras Lacepede~^6.25^4.27^9.02^3.87 -~15104~^~1500~^~Fish, sturgeon, mixed species, raw~^~STURGEON,MXD SP,RAW~^^^~Y~^^0^~Acipenser spp.~^6.25^4.27^9.02^3.87 -~15105~^~1500~^~Fish, sturgeon, mixed species, cooked, dry heat~^~STURGEON,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15106~^~1500~^~Fish, sturgeon, mixed species, smoked~^~STURGEON,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15107~^~1500~^~Fish, sucker, white, raw~^~SUCKER,WHITE,RAW~^^^^^0^~Catostomus commersoni (Lacepede)~^6.25^4.27^9.02^3.87 -~15108~^~1500~^~Fish, sunfish, pumpkin seed, raw~^~SUNFISH,PUMPKIN SEED,RAW~^^^^^0^~Lepomis gibbosus (L.)~^6.25^4.27^9.02^3.87 -~15109~^~1500~^~Fish, surimi~^~SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15110~^~1500~^~Fish, swordfish, raw~^~SWORDFISH,RAW~^^^~Y~^^0^~Xiphias gladius L.~^6.25^4.27^9.02^3.87 -~15111~^~1500~^~Fish, swordfish, cooked, dry heat~^~SWORDFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15112~^~1500~^~Fish, tilefish, raw~^~TILEFISH,RAW~^^^^^0^~Lopholatilus chamaeleonticeps Goode and Bean~^6.25^4.27^9.02^3.87 -~15113~^~1500~^~Fish, tilefish, cooked, dry heat~^~TILEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15114~^~1500~^~Fish, trout, mixed species, raw~^~TROUT,MIXED SPECIES,RAW~^^^~Y~^^0^~Salmonidae~^6.25^4.27^9.02^3.87 -~15115~^~1500~^~Fish, trout, rainbow, wild, raw~^~TROUT,RAINBOW,WILD,RAW~^^^^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15116~^~1500~^~Fish, trout, rainbow, wild, cooked, dry heat~^~TROUT,RAINBOW,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15117~^~1500~^~Fish, tuna, fresh, bluefin, raw~^~TUNA,FRESH,BLUEFIN,RAW~^^^~Y~^^0^~Thunnus thynnus (L.)~^6.25^4.27^9.02^3.87 -~15118~^~1500~^~Fish, tuna, fresh, bluefin, cooked, dry heat~^~TUNA,FRSH,BLUEFIN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15119~^~1500~^~Fish, tuna, light, canned in oil, drained solids~^~TUNA,LT,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.00^3.87 -~15121~^~1500~^~Fish, tuna, light, canned in water, drained solids (Includes foods for USDA's Food Distribution Program)~^~FISH,TUNA,LT,CND IN H2O,DRND SOL~^^^~Y~^^0^^^^^ -~15123~^~1500~^~Fish, tuna, fresh, skipjack, raw~^~TUNA,FRESH,SKIPJACK,RAW~^^^^^0^~Euthynnus pelamis (L.)~^6.25^4.27^9.02^3.87 -~15124~^~1500~^~Fish, tuna, white, canned in oil, drained solids~^~TUNA,WHITE,CND IN OIL,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15126~^~1500~^~Fish, tuna, white, canned in water, drained solids~^~TUNA,WHITE,CND IN H2O,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15127~^~1500~^~Fish, tuna, fresh, yellowfin, raw~^~TUNA,FRESH,YELLOWFIN,RAW~^^^~Y~^^0^~Thunnus albacares (Bonnaterre)~^6.25^4.27^9.02^3.87 -~15128~^~1500~^~Fish, tuna salad~^~TUNA SALAD~^^^^^0^^6.25^4.27^9.02^3.87 -~15129~^~1500~^~Fish, turbot, european, raw~^~TURBOT,EUROPEAN,RAW~^^^^^0^~Scophthalmus maximus (L.)~^6.25^4.27^9.02^3.87 -~15130~^~1500~^~Fish, whitefish, mixed species, raw~^~WHITEFISH,MXD SP,RAW~^^^~Y~^^0^~Coregonus spp.~^6.25^4.27^9.02^3.87 -~15131~^~1500~^~Fish, whitefish, mixed species, smoked~^~WHITEFISH,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15132~^~1500~^~Fish, whiting, mixed species, raw~^~WHITING,MIXED SPECIES,RAW~^^^~Y~^^0^~Gadidae~^6.25^4.27^9.02^3.87 -~15133~^~1500~^~Fish, whiting, mixed species, cooked, dry heat~^~WHITING,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15134~^~1500~^~Fish, wolffish, Atlantic, raw~^~WOLFFISH,ATLANTIC,RAW~^^^^^0^~Anarhichas lupus (L.)~^6.25^4.27^9.02^3.87 -~15135~^~1500~^~Fish, yellowtail, mixed species, raw~^~YELLOWTAIL,MXD SP,RAW~^^^^^0^~Seriola spp.~^6.25^4.27^9.02^3.87 -~15136~^~1500~^~Crustaceans, crab, alaska king, raw~^~CRAB,ALASKA KING,RAW~^^^^^0^~Paralithodes camtschatica (Tilesius)~^6.25^4.27^9.02^4.11 -~15137~^~1500~^~Crustaceans, crab, alaska king, cooked, moist heat~^~CRAB,ALASKA KING,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15138~^~1500~^~Crustaceans, crab, alaska king, imitation, made from surimi~^~CRAB,ALASKA KING,IMITN,MADE FROM SURIMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15139~^~1500~^~Crustaceans, crab, blue, raw~^~CRAB,BLUE,RAW~^^^^^0^~Callinectes sapidus Rathbun~^6.25^4.27^9.02^4.11 -~15140~^~1500~^~Crustaceans, crab, blue, cooked, moist heat~^~CRAB,BLUE,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15141~^~1500~^~Crustaceans, crab, blue, canned~^~CRAB,BLUE,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15142~^~1500~^~Crustaceans, crab, blue, crab cakes, home recipe~^~CRUSTACEANS,CRAB,BLUE,CRAB CAKES,HOME RECIPE~^^^^^0^^6.25^4.27^8.84^3.68 -~15143~^~1500~^~Crustaceans, crab, dungeness, raw~^~CRAB,DUNGENESS,RAW~^^^^^0^~Cancer magister Dana~^6.25^4.27^9.02^4.11 -~15144~^~1500~^~Crustaceans, crab, queen, raw~^~CRAB,QUEEN,RAW~^^^^^0^~Chionoectes opilio (O. Fabricius)~^6.25^4.27^9.02^4.11 -~15145~^~1500~^~Crustaceans, crayfish, mixed species, wild, raw~^~CRAYFISH,MXD SP,WILD,RAW~^^^~Y~^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15146~^~1500~^~Crustaceans, crayfish, mixed species, wild, cooked, moist heat~^~CRAYFISH,MXD SP,WILD,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15147~^~1500~^~Crustaceans, lobster, northern, raw~^~LOBSTER,NORTHERN,RAW~^^^~Y~^^0^~Homarus americanus Milne-Edwards~^6.25^4.27^9.02^4.11 -~15148~^~1500~^~Crustaceans, lobster, northern, cooked, moist heat~^~LOBSTER,NORTHERN,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15149~^~1500~^~Crustaceans, shrimp, mixed species, raw (may contain additives to retain moisture)~^~SHRIMP,MXD SP,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^~Penaeidae and Pandalidae~^6.25^4.27^9.02^4.11 -~15150~^~1500~^~Crustaceans, shrimp, mixed species, cooked, breaded and fried~^~SHRIMP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.22^4.27^8.84^3.68 -~15151~^~1500~^~Crustaceans, shrimp, mixed species, cooked, moist heat (may contain additives to retain moisture)~^~SHRIMP,MXD SP,CKD (MAY CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15152~^~1500~^~Crustaceans, shrimp, mixed species, canned~^~SHRIMP,MXD SP,CND~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15153~^~1500~^~Crustaceans, shrimp, mixed species, imitation, made from surimi~^~SHRIMP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15154~^~1500~^~Crustaceans, spiny lobster, mixed species, raw~^~SPINY LOBSTER,MXD SP,RAW~^^^^^0^~Jasus spp. and Panulirus spp.~^6.25^4.27^9.02^4.11 -~15155~^~1500~^~Mollusks, abalone, mixed species, raw~^~ABALONE,MIXED SPECIES,RAW~^^^~Y~^^0^~Haliotis spp.~^6.25^4.27^9.02^4.11 -~15156~^~1500~^~Mollusks, abalone, mixed species, cooked, fried~^~ABALONE,MXD SP,CKD,FRIED~^^^^^0^^6.23^4.27^8.84^4.12 -~15157~^~1500~^~Mollusks, clam, mixed species, raw~^~CLAM,MIXED SPECIES,RAW~^^^~Y~^^0^~Lamellibranchia~^6.25^4.27^9.02^4.11 -~15158~^~1500~^~Mollusks, clam, mixed species, cooked, breaded and fried~^~CLAM,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.20^4.27^8.84^4.12 -~15159~^~1500~^~Mollusks, clam, mixed species, cooked, moist heat~^~CLAM,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15160~^~1500~^~Mollusks, clam, mixed species, canned, drained solids~^~CLAM,MXD SP,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15162~^~1500~^~Mollusks, clam, mixed species, canned, liquid~^~CLAM,MXD SP,CND,LIQ~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15163~^~1500~^~Mollusks, cuttlefish, mixed species, raw~^~CUTTLEFISH,MXD SP,RAW~^^^^^0^~Sepiidae~^6.25^4.27^9.02^4.11 -~15164~^~1500~^~Mollusks, mussel, blue, raw~^~MUSSEL,BLUE,RAW~^^^~Y~^^0^~Mytilus edulis L.~^6.25^4.27^9.02^4.11 -~15165~^~1500~^~Mollusks, mussel, blue, cooked, moist heat~^~MUSSEL,BLUE,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15166~^~1500~^~Mollusks, octopus, common, raw~^~OCTOPUS,COMMON,RAW~^^^~Y~^^0^~Octopus vulgaris Lamarck~^6.25^4.27^9.02^4.11 -~15167~^~1500~^~Mollusks, oyster, eastern, wild, raw~^~OYSTER,EASTERN,WILD,RAW~^^^~Y~^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15168~^~1500~^~Mollusks, oyster, eastern, cooked, breaded and fried~^~OYSTER,EASTERN,CKD,BREADED&FRIED~^^^^^0^^6.18^4.27^9.02^4.12 -~15169~^~1500~^~Mollusks, oyster, eastern, wild, cooked, moist heat~^~OYSTER,EASTERN,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15170~^~1500~^~Mollusks, oyster, eastern, canned~^~OYSTER,EASTERN,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15171~^~1500~^~Mollusks, oyster, Pacific, raw~^~OYSTER,PACIFIC,RAW~^^^^^0^~Crassostrea gigas (Thunberg)~^6.25^4.27^9.02^4.11 -~15172~^~1500~^~Mollusks, scallop, mixed species, raw~^~SCALLOP,MIXED SPECIES,RAW~^^^~Y~^^0^~Pectinidae~^6.25^4.27^9.02^4.11 -~15173~^~1500~^~Mollusks, scallop, mixed species, cooked, breaded and fried~^~SCALLOP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^8.84^4.12 -~15174~^~1500~^~Mollusks, scallop, mixed species, imitation, made from surimi~^~SCALLOP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15175~^~1500~^~Mollusks, squid, mixed species, raw~^~SQUID,MIXED SPECIES,RAW~^^^~Y~^^0^~Loligoidae and Ommastrephidae~^6.25^4.27^9.02^4.11 -~15176~^~1500~^~Mollusks, squid, mixed species, cooked, fried~^~SQUID,MXD SP,CKD,FRIED~^^^^^0^^6.25^4.27^8.84^4.12 -~15177~^~1500~^~Mollusks, whelk, unspecified, raw~^~WHELK,UNSPECIFIED,RAW~^^^^^0^~Buccinidae~^6.25^4.27^9.02^4.11 -~15178~^~1500~^~Mollusks, whelk, unspecified, cooked, moist heat~^~WHELK,UNSPEC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15179~^~1500~^~Fish, salmon, chinook, smoked, (lox), regular~^~SALMON,CHINOOK,SMOKED,(LOX),REG~^^^^^0^^6.25^4.27^9.02^3.87 -~15180~^~1500~^~Fish, salmon, chum, canned, without salt, drained solids with bone~^~SALMON,CHUM,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15181~^~1500~^~Fish, salmon, pink, canned, without salt, solids with bone and liquid~^~SALMON,PINK,CND,WO/SALT,SOL W/BONE&LIQ~^^^^^0^^6.25^4.27^9.02^3.87 -~15182~^~1500~^~Fish, salmon, sockeye, canned, without salt, drained solids with bone~^~SALMON,SOCKEYE,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15183~^~1500~^~Fish, tuna, light, canned in oil, without salt, drained solids~^~TUNA,LT,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15184~^~1500~^~Fish, tuna, light, canned in water, without salt, drained solids~^~TUNA,LT,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15185~^~1500~^~Fish, tuna, white, canned in oil, without salt, drained solids~^~TUNA,WHITE,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15186~^~1500~^~Fish, tuna, white, canned in water, without salt, drained solids~^~TUNA,WHITE,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15187~^~1500~^~Fish, bass, freshwater, mixed species, cooked, dry heat~^~BASS,FRESHWATER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15188~^~1500~^~Fish, bass, striped, cooked, dry heat~^~BASS,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15189~^~1500~^~Fish, bluefish, cooked, dry heat~^~BLUEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15190~^~1500~^~Fish, burbot, cooked, dry heat~^~BURBOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15191~^~1500~^~Fish, butterfish, cooked, dry heat~^~BUTTERFISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15192~^~1500~^~Fish, cod, Pacific, cooked, dry heat (may contain additives to retain moisture)~^~COD,PACIFIC,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15193~^~1500~^~Fish, cusk, cooked, dry heat~^~CUSK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15194~^~1500~^~Fish, mahimahi, cooked, dry heat~^~FISH,MAHIMAHI,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15195~^~1500~^~Fish, drum, freshwater, cooked, dry heat~^~DRUM,FRESHWATER,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15196~^~1500~^~Fish, halibut, greenland, cooked, dry heat~^~HALIBUT,GREENLAND,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15197~^~1500~^~Fish, herring, Pacific, cooked, dry heat~^~HERRING,PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15198~^~1500~^~Fish, ling, cooked, dry heat~^~LING,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15199~^~1500~^~Fish, lingcod, cooked, dry heat~^~LINGCOD,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15200~^~1500~^~Fish, mackerel, king, cooked, dry heat~^~MACKEREL,KING,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15201~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, cooked, dry heat~^~MACKEREL,PACIFIC&JACK,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15202~^~1500~^~Fish, milkfish, cooked, dry heat~^~MILKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15203~^~1500~^~Fish, monkfish, cooked, dry heat~^~MONKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15204~^~1500~^~Fish, pike, walleye, cooked, dry heat~^~PIKE,WALLEYE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15205~^~1500~^~Fish, pollock, Atlantic, cooked, dry heat~^~POLLOCK,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15206~^~1500~^~Fish, pout, ocean, cooked, dry heat~^~POUT,OCEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15207~^~1500~^~Fish, roe, mixed species, cooked, dry heat~^~ROE,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.36^9.02^3.68 -~15208~^~1500~^~Fish, sablefish, cooked, dry heat~^~SABLEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15209~^~1500~^~Fish, salmon, Atlantic, wild, cooked, dry heat~^~SALMON,ATLANTIC,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15210~^~1500~^~Fish, salmon, chinook, cooked, dry heat~^~SALMON,CHINOOK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15211~^~1500~^~Fish, salmon, chum, cooked, dry heat~^~SALMON,CHUM,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15212~^~1500~^~Fish, salmon, pink, cooked, dry heat~^~SALMON,PINK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15213~^~1500~^~Fish, scup, cooked, dry heat~^~SCUP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15214~^~1500~^~Fish, seatrout, mixed species, cooked, dry heat~^~SEATROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15215~^~1500~^~Fish, shad, american, cooked, dry heat~^~SHAD,AMERICAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15216~^~1500~^~Fish, spot, cooked, dry heat~^~SPOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15217~^~1500~^~Fish, sucker, white, cooked, dry heat~^~SUCKER,WHITE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15218~^~1500~^~Fish, sunfish, pumpkin seed, cooked, dry heat~^~SUNFISH,PUMPKIN SD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15219~^~1500~^~Fish, trout, mixed species, cooked, dry heat~^~TROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15220~^~1500~^~Fish, tuna, skipjack, fresh, cooked, dry heat~^~TUNA,SKIPJACK,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15221~^~1500~^~Fish, tuna, yellowfin, fresh, cooked, dry heat~^~TUNA,YELLOWFIN,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15222~^~1500~^~Fish, turbot, european, cooked, dry heat~^~TURBOT,EUROPEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15223~^~1500~^~Fish, whitefish, mixed species, cooked, dry heat~^~WHITEFISH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15224~^~1500~^~Fish, wolffish, Atlantic, cooked, dry heat~^~WOLFFISH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15225~^~1500~^~Fish, yellowtail, mixed species, cooked, dry heat~^~YELLOWTAIL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15226~^~1500~^~Crustaceans, crab, dungeness, cooked, moist heat~^~CRAB,DUNGENESS,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15227~^~1500~^~Crustaceans, crab, queen, cooked, moist heat~^~CRAB,QUEEN,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15228~^~1500~^~Crustaceans, spiny lobster, mixed species, cooked, moist heat~^~SPINY LOBSTER,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15229~^~1500~^~Mollusks, cuttlefish, mixed species, cooked, moist heat~^~CUTTLEFISH,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15230~^~1500~^~Mollusks, octopus, common, cooked, moist heat~^~OCTOPUS,COMMON,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15231~^~1500~^~Mollusks, oyster, Pacific, cooked, moist heat~^~OYSTER,PACIFIC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15232~^~1500~^~Fish, roughy, orange, cooked, dry heat~^~ROUGHY,ORANGE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15233~^~1500~^~Fish, catfish, channel, wild, cooked, dry heat~^~CATFISH,CHANNEL,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15234~^~1500~^~Fish, catfish, channel, farmed, raw~^~CATFISH,CHANNEL,FARMED,RAW~^^^~Y~^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15235~^~1500~^~Fish, catfish, channel, farmed, cooked, dry heat~^~CATFISH,CHANNEL,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15236~^~1500~^~Fish, salmon, Atlantic, farmed, raw~^~SALMON,ATLANTIC,FARMED,RAW~^^^~Y~^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15237~^~1500~^~Fish, salmon, Atlantic, farmed, cooked, dry heat~^~SALMON,ATLANTIC,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15238~^~1500~^~Fish, salmon, coho, farmed, raw~^~SALMON,COHO,FARMED,RAW~^^^^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15239~^~1500~^~Fish, salmon, coho, farmed, cooked, dry heat~^~SALMON,COHO,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15240~^~1500~^~Fish, trout, rainbow, farmed, raw~^~TROUT,RAINBOW,FARMED,RAW~^^^~Y~^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15241~^~1500~^~Fish, trout, rainbow, farmed, cooked, dry heat~^~TROUT,RAINBOW,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15242~^~1500~^~Crustaceans, crayfish, mixed species, farmed, raw~^~CRAYFISH,MXD SP,FARMED,RAW~^^^^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15243~^~1500~^~Crustaceans, crayfish, mixed species, farmed, cooked, moist heat~^~CRAYFISH,MXD SP,FARMED,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15244~^~1500~^~Mollusks, oyster, eastern, wild, cooked, dry heat~^~OYSTER,EASTERN,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15245~^~1500~^~Mollusks, oyster, eastern, farmed, raw~^~OYSTER,EASTERN,FARMED,RAW~^^^^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15246~^~1500~^~Mollusks, oyster, eastern, farmed, cooked, dry heat~^~OYSTER,EASTERN,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15247~^~1500~^~Fish, salmon, coho, wild, cooked, dry heat~^~SALMON,COHO,WILD,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15250~^~1500~^~Mollusks, conch, baked or broiled~^~CONCH,BAKED OR BROILED~^^^^^0^^6.25^^^ -~15251~^~1500~^~Salmon nuggets, breaded, frozen, heated~^~SALMON NUGGETS,BREADED,FRZ,HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15252~^~1500~^~Salmon nuggets, cooked as purchased, unheated~^~SALMON NUGGETS,CKD AS PURCHASED,UNHTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15253~^~1500~^~Salmon, sockeye, canned, total can contents~^~SALMON,SOCKEYE,CND,TOTAL CAN CONTENTS~^^^^^0^^6.25^4.27^9.02^3.87 -~15260~^~1500~^~Fish, salmon, pink, canned, drained solids~^~FISH,SALMON,PINK,CND,DRND SOL~^^^^^0^^^^^ -~15261~^~1500~^~Fish, tilapia, raw~^~FISH,TILAPIA,RAW~^^^~Y~^^0^^^^^ -~15262~^~1500~^~Fish, tilapia, cooked, dry heat~^~FISH,TILAPIA,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15264~^~1500~^~Salmon, sockeye, canned, drained solids, without skin and bones~^~SALMON,SOCKEYE,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15265~^~1500~^~Fish, Salmon, pink, canned, drained solids, without skin and bones~^~FISH,SALMON,PINK,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15266~^~1500~^~Fish, pollock, Alaska, raw~^~FISH,POLLOCK,ALASKA,RAW~^~~^~~^~~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15267~^~1500~^~Fish, pollock, Alaska, cooked~^~FISH,POLLOCK,ALASKA,CKD~^~~^~~^~~^~~^0^~~^6.25^4.27^9.02^3.87 -~15269~^~1500~^~Fish, cod, Pacific, cooked~^~FISH,COD,PACIFIC,CKD~^^^^^0^^^^^ -~15270~^~1500~^~Crustaceans, shrimp, raw~^~CRUSTACEANS,SHRIMP,RAW~^^^^~Tail and shell~^13^^^^^ -~15271~^~1500~^~Crustaceans, shrimp, cooked~^~CRUSTACEANS,SHRIMP,CKD~^^^^~Tail and shell~^17^^^^^ -~15274~^~1500~^~Fish, trout, brook, raw, New York State~^~FISH,TROUT,BROOK,RAW,NEW YORK STATE~^^^^~skin, head, viscera, bones~^53^^^^^ -~16001~^~1600~^~Beans, adzuki, mature seeds, raw~^~BEANS,ADZUKI,MATURE SEEDS,RAW~^^^^^0^~Vigna angularis~^6.25^3.47^8.37^4.07 -~16002~^~1600~^~Beans, adzuki, mature seeds, cooked, boiled, without salt~^~BEANS,ADZUKI,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16003~^~1600~^~Beans, adzuki, mature seeds, canned, sweetened~^~BEANS,ADZUKI,MATURE SEEDS,CND,SWTND~^^^^^0^^6.25^3.47^8.37^4.07 -~16004~^~1600~^~Yokan, prepared from adzuki beans and sugar~^~YOKAN,PREP FROM ADZUKI BNS & SUGAR~^^^^^0^^6.25^3.47^8.37^4.07 -~16005~^~1600~^~Beans, baked, home prepared~^~BEANS,BAKED,HOME PREPARED~^^^^^0^^6.25^^^ -~16006~^~1600~^~Beans, baked, canned, plain or vegetarian~^~BEANS,BKD,CND,PLN OR VEGETARIAN~^^^~Y~^^0^^6.25^4.00^8.40^3.40 -~16007~^~1600~^~Beans, baked, canned, with beef~^~BEANS,BKD,CND,W/BF~^^^^^0^^6.25^4.00^9.00^3.80 -~16008~^~1600~^~Beans, baked, canned, with franks~^~BEANS,BKD,CND,W/FRANKS~^^^~Y~^^0^^6.25^3.90^9.00^3.70 -~16009~^~1600~^~Beans, baked, canned, with pork~^~BEANS,BKD,CND,W/PORK~^^^^^0^^6.25^3.90^8.80^3.60 -~16010~^~1600~^~Beans, baked, canned, with pork and sweet sauce~^~BEANS,BKD,CND,W/PORK&SWT SAU~^^^~Y~^^0^^6.25^3.90^8.90^3.70 -~16011~^~1600~^~Beans, baked, canned, with pork and tomato sauce~^~BEANS,BKD,CND,W/PORK&TOMATO SAU~^^^~Y~^^0^^6.25^4.00^8.80^3.50 -~16014~^~1600~^~Beans, black, mature seeds, raw~^~BEANS,BLACK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16015~^~1600~^~Beans, black, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16016~^~1600~^~Beans, black turtle, mature seeds, raw~^~BEANS,BLACK TURTLE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16017~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16018~^~1600~^~Beans, black turtle, mature seeds, canned~^~BEANS,BLACK TURTLE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16019~^~1600~^~Beans, cranberry (roman), mature seeds, raw~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16020~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, without salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16021~^~1600~^~Beans, cranberry (roman), mature seeds, canned~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16022~^~1600~^~Beans, french, mature seeds, raw~^~BEANS,FRENCH,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16023~^~1600~^~Beans, french, mature seeds, cooked, boiled, without salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16024~^~1600~^~Beans, great northern, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,GREAT NORTHERN,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16025~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, without salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16026~^~1600~^~Beans, great northern, mature seeds, canned~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16027~^~1600~^~Beans, kidney, all types, mature seeds, raw~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16028~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16029~^~1600~^~Beans, kidney, all types, mature seeds, canned~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CND~^^^^^0^^^^^ -~16030~^~1600~^~Beans, kidney, california red, mature seeds, raw~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16031~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16032~^~1600~^~Beans, kidney, red, mature seeds, raw~^~BEANS,KIDNEY,RED,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16033~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16034~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16035~^~1600~^~Beans, kidney, royal red, mature seeds, raw~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16036~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16037~^~1600~^~Beans, navy, mature seeds, raw~^~BEANS,NAVY,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16038~^~1600~^~Beans, navy, mature seeds, cooked, boiled, without salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16039~^~1600~^~Beans, navy, mature seeds, canned~^~BEANS,NAVY,MATURE SEEDS,CND~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16040~^~1600~^~Beans, pink, mature seeds, raw~^~BEANS,PINK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16041~^~1600~^~Beans, pink, mature seeds, cooked, boiled, without salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16042~^~1600~^~Beans, pinto, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,PINTO,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^^^ -~16043~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, without salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16044~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~16045~^~1600~^~Beans, small white, mature seeds, raw~^~BEANS,SML WHITE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16046~^~1600~^~Beans, small white, mature seeds, cooked, boiled, without salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16047~^~1600~^~Beans, yellow, mature seeds, raw~^~BEANS,YEL,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16048~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, without salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16049~^~1600~^~Beans, white, mature seeds, raw~^~BEANS,WHITE,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16050~^~1600~^~Beans, white, mature seeds, cooked, boiled, without salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16051~^~1600~^~Beans, white, mature seeds, canned~^~BEANS,WHITE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16052~^~1600~^~Broadbeans (fava beans), mature seeds, raw~^~BROADBEANS (FAVA BEANS),MATURE SEEDS,RAW~^^^~Y~^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~16053~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, without salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16054~^~1600~^~Broadbeans (fava beans), mature seeds, canned~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16055~^~1600~^~Carob flour~^~CAROB FLOUR~^^^~Y~^^0^~Ceratonia siliqua~^6.25^^^ -~16056~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, raw~^~CHICKPEAS (GARBANZO BNS,BENGAL GM),MATURE SEEDS,RAW~^^^~Y~^^0^~Cicer arietinum~^6.25^3.47^8.37^4.07 -~16057~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, without salt~^~CHICKPEAS ,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16058~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids~^~CHICKPEAS (GARBANZO BNS,BENGAL GRAM),MATURE SDS,CND,SOL&LIQ~^^^^^0^^6.25^3.47^8.37^4.07 -~16059~^~1600~^~Chili with beans, canned~^~CHILI WITH BEANS,CANNED~^^^~Y~^^0^^6.25^4.00^8.70^3.50 -~16060~^~1600~^~Cowpeas, catjang, mature seeds, raw~^~COWPEAS,CATJANG,MATURE SEEDS,RAW~^^^^^0^~Vigna unguiculata subsp. cylindrica~^6.25^3.47^8.37^4.07 -~16061~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, without salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16062~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, raw~^~COWPEAS,COMMON (BLACKEYES,CROWDER,SOUTHERN),MTRE SEEDS,RAW~^^^~Y~^^0^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~16063~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, without salt~^~COWPEAS,COMMON (BLKEYES,CRWDR,STHRN),MTURE,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16064~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned, plain~^~COWPEAS,COMMON,MATURE SEEDS,CND,PLN~^^^^^0^^6.25^3.47^8.37^4.07 -~16065~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned with pork~^~COWPEAS,COMMON,MATURE SEEDS,CND W/PORK~^^^^^0^^6.25^^^ -~16067~^~1600~^~Hyacinth beans, mature seeds, raw~^~HYACINTH BNS,MATURE SEEDS,RAW~^^^^^0^~Dolichos purpureus~^6.25^3.47^8.37^4.07 -~16068~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, without salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16069~^~1600~^~Lentils, raw~^~LENTILS,RAW~^^^~Y~^^0^~Lens culinaris~^6.25^3.47^8.37^4.07 -~16070~^~1600~^~Lentils, mature seeds, cooked, boiled, without salt~^~LENTILS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16071~^~1600~^~Lima beans, large, mature seeds, raw~^~LIMA BNS,LRG,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16072~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, without salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16073~^~1600~^~Lima beans, large, mature seeds, canned~^~LIMA BNS,LRG,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16074~^~1600~^~Lima beans, thin seeded (baby), mature seeds, raw~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,RAW~^^^^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16075~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, without salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16076~^~1600~^~Lupins, mature seeds, raw~^~LUPINS,MATURE SEEDS,RAW~^^^^^0^~Lupinus albus~^6.25^3.47^8.37^4.07 -~16077~^~1600~^~Lupins, mature seeds, cooked, boiled, without salt~^~LUPINS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16078~^~1600~^~Mothbeans, mature seeds, raw~^~MOTHBEANS,MATURE SEEDS,RAW~^~mat bean, moth bean~^^^^0^~Vigna aconitifolia~^6.25^3.47^8.37^4.07 -~16079~^~1600~^~Mothbeans, mature seeds, cooked, boiled, without salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,WO/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16080~^~1600~^~Mung beans, mature seeds, raw~^~MUNG BNS,MATURE SEEDS,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^3.47^8.37^4.07 -~16081~^~1600~^~Mung beans, mature seeds, cooked, boiled, without salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16082~^~1600~^~Noodles, chinese, cellophane or long rice (mung beans), dehydrated~^~NOODLES,CHINESE,CELLOPHANE OR LONG RICE (MUNG BNS),DEHYD~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16083~^~1600~^~Mungo beans, mature seeds, raw~^~MUNGO BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna mungo~^6.25^3.47^8.37^4.07 -~16084~^~1600~^~Mungo beans, mature seeds, cooked, boiled, without salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16085~^~1600~^~Peas, green, split, mature seeds, raw~^~PEAS,GRN,SPLIT,MATURE SEEDS,RAW~^^^~Y~^^0^~Pisum sativum~^6.25^3.47^8.37^4.07 -~16086~^~1600~^~Peas, split, mature seeds, cooked, boiled, without salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16087~^~1600~^~Peanuts, all types, raw~^~PEANUTS,ALL TYPES,RAW~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16088~^~1600~^~Peanuts, all types, cooked, boiled, with salt~^~PEANUTS,ALL TYPES,CKD,BLD,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16089~^~1600~^~Peanuts, all types, oil-roasted, with salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16090~^~1600~^~Peanuts, all types, dry-roasted, with salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16091~^~1600~^~Peanuts, spanish, raw~^~PEANUTS,SPANISH,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16092~^~1600~^~Peanuts, spanish, oil-roasted, with salt~^~PEANUTS,SPANISH,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16093~^~1600~^~Peanuts, valencia, raw~^~PEANUTS,VALENCIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16094~^~1600~^~Peanuts, valencia, oil-roasted, with salt~^~PEANUTS,VALENCIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16095~^~1600~^~Peanuts, virginia, raw~^~PEANUTS,VIRGINIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16096~^~1600~^~Peanuts, virginia, oil-roasted, with salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16097~^~1600~^~Peanut butter, chunk style, with salt~^~PEANUT BUTTER,CHUNK STYLE,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16098~^~1600~^~Peanut butter, smooth style, with salt (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH STYLE,W/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16099~^~1600~^~Peanut flour, defatted~^~PEANUT FLOUR,DEFATTED~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16100~^~1600~^~Peanut flour, low fat~^~PEANUT FLOUR,LOW FAT~^^^^^0^^5.46^3.47^8.37^4.07 -~16101~^~1600~^~Pigeon peas (red gram), mature seeds, raw~^~PIGEON PEAS (RED GM),MATURE SEEDS,RAW~^^^^^0^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~16102~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, without salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16103~^~1600~^~Refried beans, canned, traditional style~^~REFRIED BNS,CND,TRADITIONAL STYLE~^^^~Y~^^0^^6.25^3.50^8.90^4.07 -~16104~^~1600~^~Bacon, meatless~^~BACON,MEATLESS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16106~^~1600~^~Meat extender~^~MEAT EXTENDER~^^^^^0^^6.25^3.47^8.37^4.07 -~16107~^~1600~^~Sausage, meatless~^~SAUSAGE,MEATLESS~^^^~Y~^^0^^6.25^3.48^8.37^4.07 -~16108~^~1600~^~Soybeans, mature seeds, raw~^~SOYBEANS,MATURE SEEDS,RAW~^^^^^0^^^^^ -~16109~^~1600~^~Soybeans, mature cooked, boiled, without salt~^~SOYBEANS,MATURE CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16110~^~1600~^~Soybeans, mature seeds, roasted, salted~^~SOYBEANS,MATURE SEEDS,RSTD,SALTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16111~^~1600~^~Soybeans, mature seeds, dry roasted~^~SOYBEANS,MATURE SEEDS,DRY RSTD~^~Soy nuts~^^^^0^^6.25^3.47^8.37^4.07 -~16112~^~1600~^~Miso~^~MISO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16113~^~1600~^~Natto~^~NATTO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16114~^~1600~^~Tempeh~^~TEMPEH~^^^^^0^^6.25^3.47^8.37^4.07 -~16115~^~1600~^~Soy flour, full-fat, raw~^~SOY FLOUR,FULL-FAT,RAW~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16116~^~1600~^~Soy flour, full-fat, roasted~^~SOY FLR,FULL-FAT,RSTD~^^^^^0^^6.25^3.47^8.37^4.07 -~16117~^~1600~^~Soy flour, defatted~^~SOY FLOUR,DEFATTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16118~^~1600~^~Soy flour, low-fat~^~SOY FLOUR,LOW-FAT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16119~^~1600~^~Soy meal, defatted, raw~^~SOY MEAL,DEFATTED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16120~^~1600~^~Soymilk, original and vanilla, unfortified~^~SOYMILK,ORIGINAL & VANILLA,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16121~^~1600~^~Soy protein concentrate, produced by alcohol extraction~^~SOY PROT CONC,PRODUCED BY ALCOHOL EXTRACTION~^^^^^0^^6.25^3.47^8.37^4.07 -~16122~^~1600~^~Soy protein isolate~^~SOY PROTEIN ISOLATE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16123~^~1600~^~Soy sauce made from soy and wheat (shoyu)~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16124~^~1600~^~Soy sauce made from soy (tamari)~^~SOY SAU MADE FROM SOY (TAMARI)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16125~^~1600~^~Soy sauce made from hydrolyzed vegetable protein~^~SOY SAU MADE FROM HYDROLYZED VEG PROT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16126~^~1600~^~Tofu, firm, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,FIRM,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^^^0^^6.25^3.47^8.37^4.07 -~16127~^~1600~^~Tofu, soft, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,SOFT,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16128~^~1600~^~Tofu, dried-frozen (koyadofu)~^~TOFU,DRIED-FROZEN (KOYADOFU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16129~^~1600~^~Tofu, fried~^~TOFU,FRIED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16130~^~1600~^~Okara~^~OKARA~^^^^^0^^6.25^3.47^8.37^4.07 -~16132~^~1600~^~Tofu, salted and fermented (fuyu)~^~TOFU,SALTED&FERMENTED (FUYU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16133~^~1600~^~Yardlong beans, mature seeds, raw~^~YARDLONG BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna uniguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~16134~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, without salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16135~^~1600~^~Winged beans, mature seeds, raw~^~WINGED BNS,MATURE SEEDS,RAW~^^^^^0^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~16136~^~1600~^~Winged beans, mature seeds, cooked, boiled, without salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16137~^~1600~^~Hummus, home prepared~^~HUMMUS,HOME PREP~^^^~Y~^^0^^^^^ -~16138~^~1600~^~Falafel, home-prepared~^~FALAFEL,HOME-PREPARED~^^^^^0^^0.00^^^ -~16139~^~1600~^~Soymilk, original and vanilla, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16144~^~1600~^~Lentils, pink or red, raw~^~LENTILS,PINK OR RED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16145~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16146~^~1600~^~Beans, pinto, canned, drained solids~^~BEANS,PINTO,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.05 -~16147~^~1600~^~Veggie burgers or soyburgers, unprepared~^~VEGGIE BURGERS OR SOYBURGERS UNPREP~^^^~Y~^^0^^^^^ -~16149~^~1600~^~Peanut spread, reduced sugar~^~PEANUT SPRD,RED SUGAR~^^^~Y~^^0^^^^^ -~16150~^~1600~^~Peanut butter, smooth, reduced fat~^~PEANUT BUTTER,SMOOTH,RED FAT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16155~^~1600~^~Peanut butter, smooth, vitamin and mineral fortified~^~PEANUT BUTTER,SMOOTH,VIT & MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16156~^~1600~^~Peanut butter, chunky, vitamin and mineral fortified~^~PEANUT BUTTER,CHUNKY,VITAMIN&MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16157~^~1600~^~Chickpea flour (besan)~^~CHICKPEA FLOUR (BESAN)~^^^^^0^^6.25^4.27^8.37^4.07 -~16158~^~1600~^~Hummus, commercial~^~HUMMUS,COMMERCIAL~^^^^^0^^6.25^3.47^8.37^4.07 -~16159~^~1600~^~Tofu, extra firm, prepared with nigari~^~TOFU,EX FIRM,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16160~^~1600~^~Tofu, hard, prepared with nigari~^~TOFU,HARD,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16161~^~1600~^~MORI-NU, Tofu, silken, soft~^~MORI-NU,TOFU,SILKEN,SOFT~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16162~^~1600~^~MORI-NU, Tofu, silken, firm~^~MORI-NU,TOFU,SILKEN,FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16163~^~1600~^~MORI-NU, Tofu, silken, extra firm~^~MORI-NU,TOFU,SILKEN,EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16164~^~1600~^~MORI-NU, Tofu, silken, lite firm~^~MORI-NU,TOFU,SILKEN,LITE FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16165~^~1600~^~MORI-NU, Tofu, silken, lite extra firm~^~MORI-NU,TOFU,SILKEN,LITE EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16166~^~1600~^~Soymilk, chocolate, unfortified~^~SOYMILK,CHOC,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16167~^~1600~^~Peanut Butter, smooth (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH (INCLFOODS FOR USDA'S FD DIST PGM)~^^^^^0^^5.46^3.47^8.37^4.07 -~16168~^~1600~^~Soymilk, chocolate, with added calcium, vitamins A and D~^~SOYMILK,CHOC,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16171~^~1600~^~Refried beans, canned, vegetarian~^~REFRIED BNS,CND,VEGETARIAN~^^^^^0^^^^^ -~16172~^~1600~^~Refried beans, canned, fat-free~^~REFRIED BNS,CND,FAT-FREE~^^^~Y~^^0^^^^^ -~16173~^~1600~^~Frijoles rojos volteados (Refried beans, red, canned)~^~FRIJOLES ROJOS VOLTEADOS (REFRIED BNS,RED,CANNED)~^^^^^0^^^^^ -~16174~^~1600~^~Tempeh, cooked~^~TEMPEH,CKD~^^^^^0^^6.25^3.47^8.37^4.07 -~16210~^~1600~^~Vitasoy USA, Nasoya Lite Firm Tofu~^~VITASOY USA,NASOYA LITE FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16211~^~1600~^~Vitasoy USA, Organic Nasoya Super Firm Cubed Tofu~^~VITASOY USA,ORGANIC NASOYA SUPER FIRM CUBED TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16212~^~1600~^~Vitasoy USA, Organic Nasoya Extra Firm Tofu~^~VITASOY USA,ORGANIC NASOYA EX FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16213~^~1600~^~Vitasoy USA, Organic Nasoya Firm Tofu~^~VITASOY USA,ORGANIC NASOYA FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16214~^~1600~^~Vitasoy USA, Organic Nasoya Silken Tofu~^~VITASOY USA ORGANIC NASOYA SILKEN TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16215~^~1600~^~Vitasoy USA, Vitasoy Organic Creamy Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CREAMY ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16216~^~1600~^~Vitasoy USA, Vitasoy Organic Classic Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CLASSIC ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16219~^~1600~^~Vitasoy USA, Vitasoy Light Vanilla Soymilk~^~VITASOY USA,VITASOY LT VANILLA SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16222~^~1600~^~Soymilk (all flavors), unsweetened, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),UNSWTND,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16223~^~1600~^~Soymilk (All flavors), enhanced~^~SOYMILK (ALL FLAVORS),ENHANCED~^^^^^0^^^^^ -~16225~^~1600~^~Soymilk, original and vanilla, light, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16227~^~1600~^~Soymilk, chocolate and other flavors, light, with added calcium, vitamins A and D~^~SOYMILK,CHOC & OTHER FLAVORS,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16228~^~1600~^~Soymilk, original and vanilla, light, unsweetened, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,UNSWTND,W/ ADDED CA,VIT A & D~^^^^^0^^^^^ -~16229~^~1600~^~Soymilk (All flavors), lowfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),LOWFAT,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16230~^~1600~^~Soymilk (all flavors), nonfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16231~^~1600~^~Soymilk, chocolate, nonfat, with added calcium, vitamins A and D~^~SOYMILK,CHOC,NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16235~^~1600~^~SILK Plain, soymilk~^~SILK PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16236~^~1600~^~SILK Vanilla, soymilk~^~SILK VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16237~^~1600~^~SILK Chocolate, soymilk~^~SILK CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16238~^~1600~^~SILK Light Plain, soymilk~^~SILK LT PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16239~^~1600~^~SILK Light Vanilla, soymilk~^~SILK LT VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16240~^~1600~^~SILK Light Chocolate, soymilk~^~SILK LT CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16241~^~1600~^~SILK Plus Omega-3 DHA, soymilk~^~SILK PLUS OMEGA-3 DHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16242~^~1600~^~SILK Plus for Bone Health, soymilk~^~SILK PLUS FOR BONE HEALTH,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16243~^~1600~^~SILK Plus Fiber, soymilk~^~SILK PLUS FIBER,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16244~^~1600~^~SILK Unsweetened, soymilk~^~SILK UNSWTND,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16245~^~1600~^~SILK Very Vanilla, soymilk~^~SILK VERY VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16246~^~1600~^~SILK Nog, soymilk~^~SILK NOG,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16247~^~1600~^~SILK Chai, soymilk~^~SILK CHAI,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16248~^~1600~^~SILK Mocha, soymilk~^~SILK MOCHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16249~^~1600~^~SILK Coffee, soymilk~^~SILK COFFEE,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16250~^~1600~^~SILK Vanilla soy yogurt (family size)~^~SILK VANILLA SOY YOGURT (FAMILY SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16251~^~1600~^~SILK Vanilla soy yogurt (single serving size)~^~SILK VANILLA SOY YOGURT (SINGLE SERVING SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16252~^~1600~^~SILK Plain soy yogurt~^~SILK PLN SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16253~^~1600~^~SILK Strawberry soy yogurt~^~SILK STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16254~^~1600~^~SILK Raspberry soy yogurt~^~SILK RASPBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16255~^~1600~^~SILK Peach soy yogurt~^~SILK PEACH SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16256~^~1600~^~SILK Black Cherry soy yogurt~^~SILK BLACK CHERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16257~^~1600~^~SILK Blueberry soy yogurt~^~SILK BLUEBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16258~^~1600~^~SILK Key Lime soy yogurt~^~SILK KEY LIME SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16259~^~1600~^~SILK Banana-Strawberry soy yogurt~^~SILK BANANA-STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16260~^~1600~^~SILK Original Creamer~^~SILK ORIGINAL CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16261~^~1600~^~SILK French Vanilla Creamer~^~SILK FRENCH VANILLA CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16262~^~1600~^~SILK Hazelnut Creamer~^~SILK HAZELNUT CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16271~^~1600~^~Vitasoy USA Organic Nasoya, Soft Tofu~^~VITASOY USA ORGANIC NASOYA,SOFT TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16272~^~1600~^~Vitasoy USA Nasoya, Lite Silken Tofu~^~VITASOY USA NASOYA,LITE SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16273~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Extra Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS EX FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16274~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16275~^~1600~^~Vitasoy USA Organic Nasoya Sprouted, Tofu Plus Super Firm~^~VITASOY USA ORGANIC NASOYA SPROUTED,TOFU PLUS SUPER FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16276~^~1600~^~Vitasoy USA Azumaya, Extra Firm Tofu~^~VITASOY USA AZUMAYA,EX FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16277~^~1600~^~Vitasoy USA Azumaya, Firm Tofu~^~VITASOY USA AZUMAYA,FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16278~^~1600~^~Vitasoy USA Azumaya, Silken Tofu~^~VITASOY USA AZUMAYA,SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16279~^~1600~^~HOUSE FOODS Premium Soft Tofu~^~HOUSE FOODS PREMIUM SOFT TOFU~^^~House Foods~^^^0^^6.25^^^ -~16281~^~1600~^~HOUSE FOODS Premium Firm Tofu~^~HOUSE FOODS PREMIUM FIRM TOFU~^^~House Foods~^^^0^^6.25^^^ -~16302~^~1600~^~Beans, adzuki, mature seed, cooked, boiled, with salt~^~BEANS,ADZUKI,MATURE SD,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16315~^~1600~^~Beans, black, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16316~^~1600~^~Beans, black, mature seeds, canned, low sodium~^~BEANS,BLACK,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16317~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16320~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, with salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16323~^~1600~^~Beans, french, mature seeds, cooked, boiled, with salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16325~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, with salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16326~^~1600~^~Beans, great northern, mature seeds, canned, low sodium~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16328~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16331~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16333~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16335~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16336~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled with salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16337~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquid, low sodium~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQ,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16338~^~1600~^~Beans, navy, mature seeds, cooked, boiled, with salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16341~^~1600~^~Beans, pink, mature seeds, cooked, boiled, with salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16343~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, with salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16345~^~1600~^~Beans, pinto, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,PINTO,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16346~^~1600~^~Beans, small white, mature seeds, cooked, boiled, with salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16347~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids, low sodium~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16348~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, with salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16350~^~1600~^~Beans, white, mature seeds, cooked, boiled, with salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16353~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, with salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16357~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, with salt~^~CHICKPEAS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16358~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained solids~^~CHICKPEAS,MAT SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16359~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained, rinsed in tap water~^~CHICKPEAS,MATURE SEEDS,CND,DRND,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16360~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids, low sodium~^~CHICKPEAS,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16361~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, with salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16363~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, with salt~^~COWPEAS,COMMON,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16368~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, with salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16370~^~1600~^~Lentils, mature seeds, cooked, boiled, with salt~^~LENTILS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16372~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, with salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16375~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, with salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16377~^~1600~^~Lupins, mature seeds, cooked, boiled, with salt~^~LUPINS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16379~^~1600~^~Mothbeans, mature seeds, cooked, boiled, with salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16381~^~1600~^~Mung beans, mature seeds, cooked, boiled, with salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16384~^~1600~^~Mungo beans, mature seeds, cooked, boiled, with salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16386~^~1600~^~Peas, split, mature seeds, cooked, boiled, with salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16389~^~1600~^~Peanuts, all types, oil-roasted, without salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,WO/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16390~^~1600~^~Peanuts, all types, dry-roasted, without salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16392~^~1600~^~Peanuts, spanish, oil-roasted, without salt~^~PEANUTS,SPANISH,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16394~^~1600~^~Peanuts, valencia, oil-roasted, without salt~^~PEANUTS,VALENCIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16396~^~1600~^~Peanuts, virginia, oil-roasted, without salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16397~^~1600~^~Peanut butter, chunk style, without salt~^~PEANUT BUTTER,CHUNK STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16398~^~1600~^~Peanut butter, smooth style, without salt~^~PEANUT BUTTER,SMOOTH STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16399~^~1600~^~Peanut butter with omega-3, creamy~^~PEANUT BUTTER W/ OMEGA-3,CREAMY~^^^^^0^^5.46^3.47^8.37^4.07 -~16402~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, with salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16403~^~1600~^~Refried beans, canned, traditional, reduced sodium~^~REFRIED BNS,CND,TRADITIONAL,RED NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16409~^~1600~^~Soybeans, mature seeds, cooked, boiled, with salt~^~SOYBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16410~^~1600~^~Soybeans, mature seeds, roasted, no salt added~^~SOYBEANS,MATURE SEEDS,RSTED,NO SALT ADDED~^^^^^0^^6.25^3.47^8.37^4.07 -~16420~^~1600~^~Soy protein concentrate, produced by acid wash~^~SOY PROT CONC,PRODUCED BY ACID WASH~^^^^^0^^6.25^3.47^8.37^4.07 -~16422~^~1600~^~Soy protein isolate, potassium type~^~SOY PROT ISOLATE,K TYPE~^^^^^0^^6.25^3.47^8.37^4.07 -~16424~^~1600~^~Soy sauce made from soy and wheat (shoyu), low sodium~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU),LO NA~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16425~^~1600~^~Soy sauce, reduced sodium, made from hydrolyzed vegetable protein~^~SOY SAU,RED NA,MADE FROM HYDROLYZED VEG PROT~^^^^^0^^6.25^3.47^8.37^4.07 -~16426~^~1600~^~Tofu, raw, firm, prepared with calcium sulfate~^~TOFU,RAW,FIRM,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16427~^~1600~^~Tofu, raw, regular, prepared with calcium sulfate~^~TOFU,RAW,REG,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16428~^~1600~^~Tofu, dried-frozen (koyadofu), prepared with calcium sulfate~^~TOFU,DRIED-FROZEN (KOYADOFU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16429~^~1600~^~Tofu, fried, prepared with calcium sulfate~^~TOFU,FRIED,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16432~^~1600~^~Tofu, salted and fermented (fuyu), prepared with calcium sulfate~^~TOFU,SALTED&FERMENTED (FUYU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16434~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, with salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16436~^~1600~^~Winged beans, mature seeds, cooked, boiled, with salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~17000~^~1700~^~Veal, Australian, rib, rib roast, separable lean only, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN,RAW~^^^^~Bone and connective tissue 22%, separable fat 14%~^36^^6.25^^^ -~17001~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^~Ovis aries~^6.25^4.27^9.02^3.87 -~17002~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17003~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 19%~^42^^6.25^4.27^9.02^3.87 -~17004~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,CKD~^^^^~Bone 25%, separable fat 17%~^42^^6.25^4.27^9.02^3.87 -~17005~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17006~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17007~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17008~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^~Y~^~Bone~^56^^6.25^4.27^9.02^3.87 -~17009~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 52%, separable fat 7%~^59^^6.25^4.27^9.02^3.87 -~17010~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 56%, separable fat 6%~^62^^6.25^4.27^9.02^3.87 -~17011~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17012~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17013~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 15%~^36^^6.25^4.27^9.02^3.87 -~17014~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 13%~^35^^6.25^4.27^9.02^3.87 -~17015~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17016~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17017~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 20%, separable fat 11%~^31^^6.25^4.27^9.02^3.87 -~17018~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17019~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17020~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17021~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 20%~^43^^6.25^4.27^9.02^3.87 -~17022~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 23%, separable fat 18%~^41^^6.25^4.27^9.02^3.87 -~17023~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17024~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~17025~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17026~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 25%~^46^^6.25^4.27^9.02^3.87 -~17027~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 21%~^44^^6.25^4.27^9.02^3.87 -~17028~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 22%, separable fat 22%~^44^^6.25^4.27^9.02^3.87 -~17029~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17030~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~17031~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17032~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 27%, separable fat 30%~^57^^6.25^4.27^9.02^3.87 -~17033~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 30%, separable fat 25%~^55^^6.25^4.27^9.02^3.87 -~17034~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 28%, separable fat 27%~^55^^6.25^4.27^9.02^3.87 -~17035~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%~^21^^6.25^4.27^9.02^3.87 -~17036~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17037~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17038~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17039~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%, separable fat 18%~^39^^6.25^4.27^9.02^3.87 -~17040~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 25%, separable fat 15%~^40^^6.25^4.27^9.02^3.87 -~17041~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 24%, separable fat 14%~^38^^6.25^4.27^9.02^3.87 -~17042~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 15%~^37^^6.25^4.27^9.02^3.87 -~17043~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17044~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17045~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~17046~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17047~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 17%, separable fat 20%~^37^^6.25^4.27^9.02^3.87 -~17048~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 20%, separable fat 18%~^38^^6.25^4.27^9.02^3.87 -~17049~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 19%, separable fat 17%~^36^^6.25^4.27^9.02^3.87 -~17050~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~17051~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17052~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17053~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17054~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17055~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 24%, separable fat 16%~^40^^6.25^4.27^9.02^3.87 -~17056~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 28%, separable fat 14%~^42^^6.25^4.27^9.02^3.87 -~17057~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 27%, separable fat 13%~^40^^6.25^4.27^9.02^3.87 -~17058~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~17059~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, raw~^~LAMB,CUBED FOR STEW OR KABOB (LEG & SHOULDER),LN,1/4"FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17060~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, braised~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17061~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, broiled~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~17062~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17063~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,CKD~^^^^~Bone~^31^^6.25^4.27^9.02^3.87 -~17064~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 30%, separable fat 20%~^50^^6.25^4.27^9.02^3.87 -~17065~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,CKD~^^^^~Bone 31%, separable fat 18%~^49^^6.25^4.27^9.02^3.87 -~17066~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17067~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17068~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 36%~^36^^^^^ -~17069~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 41%~^41^^^^^ -~17070~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN,RAW~^^^^~Bone and connective tissue 36%, separable fat 7%~^43^^6.25^^^ -~17071~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN,CKD,BRSD~^^^^~Bone 41%, separable fat 7%~^48^^6.25^^^ -~17072~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 15%~^15^^^^^ -~17073~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN&FAT,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17074~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 15%, separable fat 12%~^27^^6.25^^^ -~17075~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean only, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN,CKD,RSTD~^^^^~Bone 24%, separable fat 12%~^36^^6.25^4.27^9.02^3.87 -~17076~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,RAW~^^^^~Bone and connective tissue 20%~^20^^^^^ -~17077~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17078~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN,RAW~^^^^~Bone and connective tissue 20%, separable fat 23%~^43^^6.25^^^ -~17079~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean only, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN,CKD,BRLD~^^^^~Bone 27%, separable fat 22%~^49^^6.25^4.27^9.02^3.87 -~17080~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17081~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%~^23^^^^^ -~17082~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 24%, separable fat 11%~^35^^6.25^^^ -~17083~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%, separable fat 11%~^34^^6.25^^^ -~17084~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17085~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17086~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,RAW~^^^^~Bone and connective tissue 25%, separable fat 17%~^42^^6.25^^^ -~17087~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 17%~^46^^6.25^4.27^9.02^3.87 -~17088~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, raw~^~VEAL,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^31^~Bos taurus~^6.25^4.27^9.02^3.87 -~17089~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, cooked~^~VEAL,COMP OF RTL CUTS,LN&FAT,CKD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17090~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, raw~^~VEAL,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17091~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, cooked~^~VEAL,COMP OF RTL CUTS,LN,CKD~^^^~Y~^~Bone 28%, separable fat 6%~^34^^6.25^4.27^9.02^3.87 -~17092~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, raw~^~VEAL,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17093~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, cooked~^~VEAL,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17094~^~1700~^~Veal, leg (top round), separable lean and fat, raw~^~VEAL,LEG (TOP RND),LN&FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17095~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, braised~^~VEAL,LEG (TOP RND),LN&FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17096~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17097~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17098~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, roasted~^~VEAL,LEG (TOP RND),LN&FAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17099~^~1700~^~Veal, leg (top round), separable lean only, raw~^~VEAL,LEG (TOP RND),LN,RAW~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17100~^~1700~^~Veal, leg (top round), separable lean only, cooked, braised~^~VEAL,LEG (TOP RND),LN,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17101~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17102~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^~Separable fat~^5^^6.25^4.27^9.02^3.87 -~17103~^~1700~^~Veal, leg (top round), separable lean only, cooked, roasted~^~VEAL,LEG (TOP RND),LN,CKD,RSTD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17104~^~1700~^~Veal, loin, separable lean and fat, raw~^~VEAL,LOIN,LN&FAT,RAW~^~IMPS# 332~^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~17105~^~1700~^~Veal, loin, separable lean and fat, cooked, braised~^~VEAL,LOIN,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17106~^~1700~^~Veal, loin, separable lean and fat, cooked, roasted~^~VEAL,LOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17107~^~1700~^~Veal, loin, separable lean only, raw~^~VEAL,LOIN,LN,RAW~^~IMPS # 332~^^^~Bone 30%, separable fat 10%~^40^^^^^ -~17108~^~1700~^~Veal, loin, separable lean only, cooked, braised~^~VEAL,LOIN,LN,CKD,BRSD~^^^~Y~^~Bone 36%, separable fat 9%~^45^^6.25^4.27^9.02^3.87 -~17109~^~1700~^~Veal, loin, separable lean only, cooked, roasted~^~VEAL,LOIN,LN,CKD,RSTD~^^^~Y~^~Bone 36%, separable fat 6%~^42^^6.25^4.27^9.02^3.87 -~17110~^~1700~^~Veal, rib, separable lean and fat, raw~^~VEAL,RIB,LN&FAT,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~17111~^~1700~^~Veal, rib, separable lean and fat, cooked, braised~^~VEAL,RIB,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~17112~^~1700~^~Veal, rib, separable lean and fat, cooked, roasted~^~VEAL,RIB,LN&FAT,CKD,RSTD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17113~^~1700~^~Veal, rib, separable lean only, raw~^~VEAL,RIB,LN,RAW~^^^^~Bone 35%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~17114~^~1700~^~Veal, rib, separable lean only, cooked, braised~^~VEAL,RIB,LN,CKD,BRSD~^^^~Y~^~Bone 37%, separable fat 5%~^42^^6.25^4.27^9.02^3.87 -~17115~^~1700~^~Veal, rib, separable lean only, cooked, roasted~^~VEAL,RIB,LN,CKD,RSTD~^^^^~Bone 33%, separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~17116~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,RAW~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17117~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~17118~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17119~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN,RAW~^^^^~Bone 28%, separable fat 3%~^31^^6.25^4.27^9.02^3.87 -~17120~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17121~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,RSTD~^^^^~Bone 28%, separable fat 2%~^30^^6.25^4.27^9.02^3.87 -~17122~^~1700~^~Veal, shoulder, arm, separable lean and fat, raw~^~VEAL,SHLDR,ARM,LN&FAT,RAW~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~17123~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, braised~^~VEAL,SHLDR,ARM,LN&FAT,CKD,BRSD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17124~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,ARM,LN&FAT,CKD,RSTD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17125~^~1700~^~Veal, shoulder, arm, separable lean only, raw~^~VEAL,SHLDR,ARM,LN,RAW~^^^^~Bone 21%, separable fat 4%~^25^^6.25^4.27^9.02^3.87 -~17126~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, braised~^~VEAL,SHLDR,ARM,LN,CKD,BRSD~^^^^~Bone 23%, separable fat 6%~^29^^6.25^4.27^9.02^3.87 -~17127~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, roasted~^~VEAL,SHLDR,ARM,LN,CKD,RSTD~^^^^~Bone 21%, separable fat 3%~^24^^6.25^4.27^9.02^3.87 -~17128~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, raw~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,RAW~^~IMPS# 1309~^^^~Bone and connective tissue 22%~^22^^6.25^4.27^9.02^3.87 -~17129~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, braised~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~17130~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,RSTD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17131~^~1700~^~Veal, shoulder, blade chop, separable lean only, raw~^~VEAL,SHLDR,BLADE CHOP,LN,RAW~^~IMPS # 1309A~^^^~Bone and connective tissue 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~17132~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, braised~^~VEAL,SHLDR,BLADE,LN,CKD,BRSD~^^^~Y~^~Bone 35%, separable fat 4%~^39^^6.25^4.27^9.02^3.87 -~17133~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, roasted~^~VEAL,SHLDR,BLADE,LN,CKD,RSTD~^^^^~Bone 32%, separable fat 2%~^34^^6.25^4.27^9.02^3.87 -~17134~^~1700~^~Veal, sirloin, separable lean and fat, raw~^~VEAL,SIRLOIN,LN&FAT,RAW~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17135~^~1700~^~Veal, sirloin, separable lean and fat, cooked, braised~^~VEAL,SIRLOIN,LN&FAT,CKD,BRSD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17136~^~1700~^~Veal, sirloin, separable lean and fat, cooked, roasted~^~VEAL,SIRLOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17137~^~1700~^~Veal, sirloin, separable lean only, raw~^~VEAL,SIRLOIN,LN,RAW~^^^^~Bone 25%, separable fat 6%~^31^^6.25^4.27^9.02^3.87 -~17138~^~1700~^~Veal, sirloin, separable lean only, cooked, braised~^~VEAL,SIRLOIN,LN,CKD,BRSD~^^^^~Bone 26%, separable fat 8%~^34^^6.25^4.27^9.02^3.87 -~17139~^~1700~^~Veal, sirloin, separable lean only, cooked, roasted~^~VEAL,SIRLOIN,LN,CKD,RSTD~^^^^~Bone 25%, separable fat 5%~^30^^6.25^4.27^9.02^3.87 -~17140~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, raw~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17141~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, cooked, braised~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17142~^~1700~^~Veal, ground, raw~^~VEAL,GROUND,RAW~^~IMPS 396~^^^^0^^6.25^4.27^9.02^3.87 -~17143~^~1700~^~Veal, ground, cooked, broiled~^~VEAL,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17144~^~1700~^~Game meat, antelope, raw~^~GAME MEAT,ANTELOPE,RAW~^^^^^0^~Antilocapra americana, Bosephalus tragocamelus~^6.25^4.27^9.02^3.87 -~17145~^~1700~^~Game meat, antelope, cooked, roasted~^~GAME MEAT,ANTELOPE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17146~^~1700~^~Game meat, bear, raw~^~GAME MEAT,BEAR,RAW~^^^^^0^~Ursus arctos, Euarctos spp.~^6.25^4.27^9.02^3.87 -~17147~^~1700~^~Game meat, bear, cooked, simmered~^~GAME MEAT,BEAR,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17148~^~1700~^~Bison, ground, grass-fed, cooked~^~BISON,GROUND,GRASS-FED,CKD~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17149~^~1700~^~Bison, ground, grass-fed, raw~^~BISON,GROUND,GRASS-FED,RAW~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17150~^~1700~^~Game meat, beaver, raw~^~GAME MEAT,BEAVER,RAW~^^^^^0^~Castor canadensis~^6.25^4.27^9.02^3.87 -~17151~^~1700~^~Game meat, beaver, cooked, roasted~^~GAME MEAT,BEAVER,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17152~^~1700~^~Game meat, beefalo, composite of cuts, raw~^~GAME MEAT,BEEFALO,COMP OF CUTS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17153~^~1700~^~Game meat, beefalo, composite of cuts, cooked, roasted~^~GAME MEAT,BEEFALO,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17154~^~1700~^~Veal, Australian, separable fat, raw~^~VEAL,AUSTRALIAN,FAT,RAW~^^^^^0^^6.25^^^ -~17155~^~1700~^~Veal, Australian, rib, rib roast, separable lean and fat, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN & FAT,RAW~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17156~^~1700~^~Game meat, bison, separable lean only, raw~^~GAME MEAT,BISON,LN,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17157~^~1700~^~Game meat, bison, separable lean only, cooked, roasted~^~GAME MEAT,BISON,LN,CKD,RSTD~^~buffalo~^^~Y~^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17158~^~1700~^~Game meat, boar, wild, raw~^~GAME MEAT,BOAR,WILD,RAW~^^^^^0^~Sus scrofa~^6.25^4.27^9.02^3.87 -~17159~^~1700~^~Game meat, boar, wild, cooked, roasted~^~GAME MEAT,BOAR,WILD,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17160~^~1700~^~Game meat, buffalo, water, raw~^~GAME MEAT,BUFFALO,H2O,RAW~^^^^^0^~Bubalus bubalis~^6.25^4.27^9.02^3.87 -~17161~^~1700~^~Game meat, buffalo, water, cooked, roasted~^~GAME MEAT,BUFFALO,H2O,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17162~^~1700~^~Game meat, caribou, raw~^~GAME MEAT,CARIBOU,RAW~^^^^^0^~Rangifer spp.~^6.25^4.27^9.02^3.87 -~17163~^~1700~^~Game meat, caribou, cooked, roasted~^~GAME MEAT,CARIBOU,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17164~^~1700~^~Game meat, deer, raw~^~GAME MEAT,DEER,RAW~^^^^^0^~Odocoileus spp.~^6.25^4.27^9.02^3.87 -~17165~^~1700~^~Game meat, deer, cooked, roasted~^~GAME MEAT,DEER,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17166~^~1700~^~Game meat, elk, raw~^~GAME MEAT,ELK,RAW~^^^^^0^~Cervus elaphyus~^6.25^4.27^9.02^3.87 -~17167~^~1700~^~Game meat, elk, cooked, roasted~^~GAME MEAT,ELK,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17168~^~1700~^~Game meat, goat, raw~^~GAME MEAT,GOAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17169~^~1700~^~Game meat, goat, cooked, roasted~^~GAME MEAT,GOAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17170~^~1700~^~Game meat, horse, raw~^~GAME MEAT,HORSE,RAW~^^^^^0^~Equus caballus~^6.25^4.27^9.02^3.87 -~17171~^~1700~^~Game meat, horse, cooked, roasted~^~GAME MEAT,HORSE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17172~^~1700~^~Game meat, moose, raw~^~GAME MEAT,MOOSE,RAW~^^^^^0^~Alces alces~^6.25^4.27^9.02^3.87 -~17173~^~1700~^~Game meat, moose, cooked, roasted~^~GAME MEAT,MOOSE,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17174~^~1700~^~Game meat, muskrat, raw~^~GAME MEAT,MUSKRAT,RAW~^^^^^0^~Ondatra zibethica~^6.25^4.27^9.02^3.87 -~17175~^~1700~^~Game meat, muskrat, cooked, roasted~^~GAME MEAT,MUSKRAT,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17176~^~1700~^~Game meat, opossum, cooked, roasted~^~GAME MEAT,OPOSSUM,CKD,RSTD~^^^~Y~^^0^~Didelphis virginiana~^6.25^4.27^9.02^3.87 -~17177~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, raw~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,RAW~^^^^^0^~Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17178~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, roasted~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17179~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, stewed~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17180~^~1700~^~Game meat, rabbit, wild, raw~^~GAME MEAT,RABBIT,WILD,RAW~^^^^^0^~Sylvilagus spp., Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17181~^~1700~^~Game meat, rabbit, wild, cooked, stewed~^~GAME MEAT,RABBIT,WILD,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17182~^~1700~^~Game meat, raccoon, cooked, roasted~^~GAME MEAT,RACCOON,CKD,RSTD~^^^~Y~^^0^~Procyon lotor~^6.25^4.27^9.02^3.87 -~17183~^~1700~^~Game meat, squirrel, raw~^~GAME MEAT,SQUIRREL,RAW~^^^^^0^~Sciuridae~^6.25^4.27^9.02^3.87 -~17184~^~1700~^~Game meat, squirrel, cooked, roasted~^~GAME MEAT,SQUIRREL,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17185~^~1700~^~Lamb, variety meats and by-products, brain, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^2^^6.25^4.27^9.02^3.87 -~17186~^~1700~^~Lamb, variety meats and by-products, brain, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17187~^~1700~^~Lamb, variety meats and by-products, brain, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17188~^~1700~^~Veal, variety meats and by-products, brain, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^3^^6.25^4.27^9.02^3.87 -~17189~^~1700~^~Veal, variety meats and by-products, brain, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17190~^~1700~^~Veal, variety meats and by-products, brain, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17191~^~1700~^~Lamb, variety meats and by-products, heart, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^22^^6.25^4.27^9.02^3.87 -~17192~^~1700~^~Lamb, variety meats and by-products, heart, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17193~^~1700~^~Veal, variety meats and by-products, heart, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^26^^6.25^4.27^9.02^3.87 -~17194~^~1700~^~Veal, variety meats and by-products, heart, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17195~^~1700~^~Lamb, variety meats and by-products, kidneys, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^3^^6.25^4.27^9.02^3.87 -~17196~^~1700~^~Lamb, variety meats and by-products, kidneys, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17197~^~1700~^~Veal, variety meats and by-products, kidneys, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^12^^6.25^4.27^9.02^3.87 -~17198~^~1700~^~Veal, variety meats and by-products, kidneys, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17199~^~1700~^~Lamb, variety meats and by-products, liver, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17200~^~1700~^~Lamb, variety meats and by-products, liver, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17201~^~1700~^~Lamb, variety meats and by-products, liver, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17202~^~1700~^~Veal, variety meats and by-products, liver, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17203~^~1700~^~Veal, variety meats and by-products, liver, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17204~^~1700~^~Veal, variety meats and by-products, liver, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17205~^~1700~^~Lamb, variety meats and by-products, lungs, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17206~^~1700~^~Lamb, variety meats and by-products, lungs, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17207~^~1700~^~Veal, variety meats and by-products, lungs, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17208~^~1700~^~Veal, variety meats and by-products, lungs, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17209~^~1700~^~Lamb, variety meats and by-products, mechanically separated, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17210~^~1700~^~Lamb, variety meats and by-products, pancreas, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17211~^~1700~^~Lamb, variety meats and by-products, pancreas, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17212~^~1700~^~Veal, variety meats and by-products, pancreas, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17213~^~1700~^~Veal, variety meats and by-products, pancreas, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17214~^~1700~^~Lamb, variety meats and by-products, spleen, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17215~^~1700~^~Lamb, variety meats and by-products, spleen, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17216~^~1700~^~Veal, variety meats and by-products, spleen, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17217~^~1700~^~Veal, variety meats and by-products, spleen, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17218~^~1700~^~Veal, variety meats and by-products, thymus, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17219~^~1700~^~Veal, variety meats and by-products, thymus, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^~Y~^~Membranes 3.69%~^4^^6.25^4.27^9.02^3.87 -~17220~^~1700~^~Lamb, variety meats and by-products, tongue, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17221~^~1700~^~Lamb, variety meats and by-products, tongue, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17222~^~1700~^~Veal, variety meats and by-products, tongue, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17223~^~1700~^~Veal, variety meats and by-products, tongue, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17224~^~1700~^~Lamb, ground, raw~^~LAMB,GROUND,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17225~^~1700~^~Lamb, ground, cooked, broiled~^~LAMB,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17226~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17227~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,CKD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17228~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17229~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^56^^6.25^4.27^9.02^3.87 -~17230~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17231~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17232~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17233~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17234~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17235~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17236~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17237~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17238~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17239~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17240~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17241~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17242~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17243~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17244~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17245~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17246~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17247~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17248~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17249~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RSTD~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17250~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17251~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17252~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17253~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17254~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17255~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CKD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17256~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17257~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^50^^6.25^4.27^9.02^3.87 -~17258~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17259~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8",CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17260~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17261~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17262~^~1700~^~Lamb, new zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,RIB,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17263~^~1700~^~Lamb, New Zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,RIB,LN & FAT,1/8" FAT,CKD,RSTD~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~17264~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN & FAT,1/8",RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17265~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHDR,WHL (ARM&BLD),LN & FAT,1/8",CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17267~^~1700~^~Game meat, bison, top sirloin, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,TOP SIRLOIN,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17268~^~1700~^~Game meat, bison, ribeye, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,RIBEYE,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17269~^~1700~^~Game meat, bison, shoulder clod, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,SHLDR CLOD,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17270~^~1700~^~Veal, breast, separable fat, cooked~^~VEAL,BREAST,FAT,CKD~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17271~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, raw~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,RAW~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17272~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^7^~Bos taurus~^6.25^4.27^9.02^ -~17273~^~1700~^~Veal, breast, plate half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,PLATE HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^11^~Bos taurus~^6.25^4.27^9.02^ -~17274~^~1700~^~Veal, breast, point half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,POINT HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^4^~Bos taurus~^6.25^4.27^9.02^ -~17275~^~1700~^~Veal, breast, whole, boneless, separable lean only, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 7%, separable fat 15%~^22^~Bos taurus~^6.25^4.27^9.02^ -~17276~^~1700~^~Veal, shank (fore and hind), separable lean and fat, raw~^~VEAL,SHANK (FORE&HIND),LN&FAT,RAW~^^^^~Bone~^29^~Bos taurus~^6.25^4.27^9.02^ -~17277~^~1700~^~Veal, shank (fore and hind), separable lean and fat, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN&FAT,CKD,BRSD~^^^^~Bone~^39^~Bos taurus~^6.25^4.27^9.02^ -~17278~^~1700~^~Veal, shank (fore and hind), separable lean only, raw~^~VEAL,SHANK (FORE&HIND),LN,RAW~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17279~^~1700~^~Veal, shank (fore and hind), separable lean only, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17280~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17281~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17282~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,RAW~^^^^~Bone 20%, separable fat 14%~^34^^6.25^4.27^9.02^3.87 -~17283~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~17284~^~1700~^~Lamb, Australian, imported, fresh, separable fat, raw~^~LAMB,AUS,IMP,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17285~^~1700~^~Lamb, Australian, imported, fresh, separable fat, cooked~^~LAMB,AUS,IMP,FRSH,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17286~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^42^^6.25^4.27^9.02^3.87 -~17287~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17288~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,RAW~^^^^~Bone 42%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~17289~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 45%, separable fat 8%~^53^^6.25^4.27^9.02^3.87 -~17290~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~17291~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~17292~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,RAW~^^^^~Bone 14%, separable fat 14%~^28^^6.25^4.27^9.02^3.87 -~17293~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,CKD,RSTD~^^^^~Bone 16%, separable fat 10%~^26^^6.25^4.27^9.02^3.87 -~17294~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17295~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17296~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,RAW~^^^^~Bone 17%, separable fat 11%~^28^^6.25^4.27^9.02^3.87 -~17297~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17298~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17299~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HLF,BNLESS,LN&FT,1/8"FAT,CKD,RSTD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17300~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 22%~^24^^6.25^4.27^9.02^3.87 -~17301~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HALF,BNLESS,LN,1/8"FAT,CKD,RSTD~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17302~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17303~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHPS,BNLESS,LN&FT,1/8"FT,CKD,BRLD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~17304~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN CHOPS,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17305~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN,1/8"FAT,CKD,BRLD~^^^^~Connective tissue 1%, separable fat 10%~^11^^6.25^4.27^9.02^3.87 -~17306~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~17307~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLCE,BNE-IN,LN&FT,1/8"FT,CKD,BRLD~^^^^~Bone~^7^^6.25^4.27^9.02^3.87 -~17308~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,RAW~^^^^~Bone 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~17309~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 7%, separable fat 7%~^14^^6.25^4.27^9.02^3.87 -~17310~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17311~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17312~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 8%~^36^^6.25^4.27^9.02^3.87 -~17313~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 26%, separable fat 5%~^31^^6.25^4.27^9.02^3.87 -~17314~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN & FT,1/8",RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17315~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRENCHED,BNE-IN,LN & FAT,1/8",GRILLED~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17316~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN,1/8",RAW~^~URMIS #2951~^^^~Bone and connective tissue 25%, separable fat 20%~^45^^^^^ -~17317~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,BONE-IN,LN,1/8",CKD,GRILLED~^~URMIS #2951~^^^~Bone and connective tissue 29%, separable fat 16%~^45^^^^^ -~17318~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17319~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17320~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,RAW~^^^^~Bone 22%, separable fat 16%~^38^^6.25^4.27^9.02^3.87 -~17321~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 12%~^34^^6.25^4.27^9.02^3.87 -~17322~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^9^^6.25^4.27^9.02^3.87 -~17323~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~17324~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,RAW~^^^^~Bone 9%, separable fat 19%~^28^^6.25^4.27^9.02^3.87 -~17325~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 13%, separable fat 16%~^29^^6.25^4.27^9.02^3.87 -~17326~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17327~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17328~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 15%~^43^^6.25^4.27^9.02^3.87 -~17329~^~1700~^~Lamb, Australian, imported, fresh, shoulder ,blade, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 25%, separable fat 11%~^36^^6.25^4.27^9.02^3.87 -~17330~^~1700~^~Game meat , bison, ground, raw~^~GAME MEAT BISON,GROUND,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17331~^~1700~^~Game meat, bison, ground, cooked, pan-broiled~^~GAME MEAT,BISON,GROUND,CKD,PAN-BROILED~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17332~^~1700~^~Game meat , bison, top sirloin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT BISON,TOP SIRLOIN,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 4%, separable fat, 4%~^8^~Bison bison~^6.25^4.27^9.02^3.87 -~17333~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,CKD,BRSD~^~buffalo~^^^~Connective tissue, 8%, separable fat, 3%~^11^~Bison bison~^6.25^4.27^9.02^3.87 -~17334~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, raw~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,RAW~^~buffalo~^^^~Connective tissue, 8%, separable fat, 4%~^12^~Bison bison~^6.25^4.27^9.02^3.87 -~17335~^~1700~^~Game meat, bison, ribeye, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,RIBEYE,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 9%, separable fat, 5%~^14^~Bison bison~^6.25^4.27^9.02^3.87 -~17336~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 3.5%, separable fat, 0.72%~^4^~Bison bison~^6.25^4.27^9.02^3.87 -~17337~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, raw~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,RAW~^~buffalo~^^^~Connective tissue, 3%, separable fat, 2%~^5^~Bison bison~^6.25^4.27^9.02^3.87 -~17338~^~1700~^~Game meat, elk, ground, raw~^~GAME MEAT,ELK,GROUND,RAW~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17339~^~1700~^~Game meat, elk, ground, cooked, pan-broiled~^~GAME MEAT,ELK,GROUND,CKD,PAN-BROILED~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17340~^~1700~^~Game meat, elk, loin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,LOIN,LN,CKD,BRLD~^^^^~Connective tissue, 2%, separable fat, 4%~^6^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17341~^~1700~^~Game meat, elk, round, separable lean only, cooked, broiled~^~GAME MEAT,ELK,RND,LN,CKD,BRLD~^^^^~Connective tissue, 4%, separable fat, 1%~^5^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17342~^~1700~^~Game meat, elk, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue, 3%, separable fat, 1%~^4^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17343~^~1700~^~Game meat, deer, ground, raw~^~GAME MEAT,DEER,GROUND,RAW~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17344~^~1700~^~Game meat, deer, ground, cooked, pan-broiled~^~GAME MEAT,DEER,GROUND,CKD,PAN-BROILED~^~Venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17345~^~1700~^~Game meat, deer, loin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,LOIN,LN,1" STEAK,CKD,BRLD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17346~^~1700~^~Game meat, deer, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,DEER,SHLDR CLOD,LN,CKD,BRSD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17347~^~1700~^~Game meat, deer, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,DEER,TENDERLOIN,LN,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17348~^~1700~^~Game meat, deer, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,TOP RND,LN,1" STEAK,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17349~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 39%, separable fat 3%~^42^^6.25^^^ -~17350~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 39%~^39^^^^^ -~17351~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 31%, separable fat 4%~^35^^6.25^^^ -~17352~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 31%~^31^^^^^ -~17353~^~1700~^~Lamb, Australian, ground, 85% lean / 15% fat, raw~^~LAMB,AUSTRALIAN,GROUND,85% LN / 15% FAT,RAW~^^^^^0^^6.25^^^ -~17354~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, cooked~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^0^^6.25^^^ -~17355~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, raw~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^0^^6.25^^^ -~17356~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, raw~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~17357~^~1700~^~Lamb, New Zealand, imported, brains, cooked, soaked and fried~^~LAMB,NZ,IMP,BRAINS,CKD,SOAKED & FRIED~^^^^^0^^6.25^^^ -~17358~^~1700~^~Lamb, New Zealand, imported, brains, raw~^~LAMB,NZ,IMP,BRAINS,RAW~^^^^~Connective tissue 2%~^2^^6.25^^^ -~17359~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, cooked, braised~^~LAMB,NZ,IMP,BREAST,LN,CKD,BRSD~^^^^~Bone and connective tissue 28% Separable fat 37%~^65^^6.25^^^ -~17360~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, raw~^~LAMB,NZ,IMP,BREAST,LN,RAW~^^^^~Bone and connective tissue 26% Separable fat 39%~^65^^6.25^^^ -~17361~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,CKD,FAST RSTD~^^^^~Separable fat 21%~^21^^6.25^^^ -~17362~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, cooked~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~17363~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, raw~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,RAW~^^^^~Connective tissue 1% Separable fat 22%~^23^^6.25^^^ -~17364~^~1700~^~Lamb, New Zealand, imported, kidney, cooked, soaked and fried~^~LAMB,NZ,IMP,KIDNEY,CKD,SOAKED & FRIED~^^^^~Connective tissue 5%~^5^^6.25^^^ -~17365~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 1% Separable fat 34%~^35^^6.25^^^ -~17366~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,RAW~^^^^~Separable fat 32%~^32^^6.25^^^ -~17367~^~1700~^~Lamb, New Zealand, imported, kidney, raw~^~LAMB,NZ,IMP,KIDNEY,RAW~^^^^~Connectiv tissue 4%~^4^^6.25^^^ -~17368~^~1700~^~Lamb, New Zealand, imported, liver, cooked, soaked and fried~^~LAMB,NZ,IMP,LIVER,CKD,SOAKED & FRIED~^^^^~Connective tissue 1%~^1^^6.25^^^ -~17369~^~1700~^~Lamb, New Zealand, imported, liver, raw~^~LAMB,NZ,IMP,LIVER,RAW~^^^^^0^^6.25^^^ -~17370~^~1700~^~Lamb, New Zealand, imported, ground lamb, cooked, braised~^~LAMB,NZ,IMP,GROUND LAMB,CKD,BRSD~^^^^^^^6.25^^^ -~17371~^~1700~^~Lamb, New Zealand, imported, ground lamb, raw~^~LAMB,NZ,IMP,GROUND LAMB,RAW~^^^^^^^6.25^^^ -~17372~^~1700~^~Lamb, New Zealand, imported, heart, cooked, soaked and simmered~^~LAMB,NZ,IMP,HEART,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 11% Separable fat 17%~^28^^6.25^^^ -~17373~^~1700~^~Lamb, New Zealand, imported, heart, raw~^~LAMB,NZ,IMP,HEART,RAW~^^^^~Connective tissue 10% Separable fat 14%~^24^^6.25^^^ -~17374~^~1700~^~Lamb, New Zealand, imported, sweetbread, cooked, soaked and simmered~^~LAMB,NZ,IMP,SWEETBREAD,CKD,SOAKED & SIMMRD~^^^^~Separable fat 3%~^3^^6.25^^^ -~17375~^~1700~^~Lamb, New Zealand, imported, sweetbread, raw~^~LAMB,NZ,IMP,SWEETBREAD,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~17376~^~1700~^~Lamb, New Zealand, imported, testes, cooked, soaked and fried~^~LAMB,NZ,IMP,TESTES,CKD,SOAKED & FRIED~^^^^~Connective tissue 25%~^25^^6.25^^^ -~17377~^~1700~^~Lamb, New Zealand, imported, testes, raw~^~LAMB,NZ,IMP,TESTES,RAW~^^^^~Connective tissue 17%~^17^^6.25^^^ -~17378~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, cooked, soaked and simmered~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 12% Separable fat 6%~^18^^6.25^^^ -~17379~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, raw~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,RAW~^^^^~Connective tissue 18% Separable fat 8%~^26^^6.25^^^ -~17380~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,TUNNEL-BNED LG,CHMP OFF,SHNK OFF,LN,CKD,SLW RSTD~^^^^~Separable fat 10%~^10^^6.25^^^ -~17381~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LEG,CHUMP OFF,SHANK OFF,LN,RAW~^^^^~Separable fat 15%~^15^^6.25^^^ -~17382~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 26% Separable fat 13%~^39^^6.25^^^ -~17383~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,RAW~^^^^~Bone and connective tissue 23% Separable fat 17%~^40^^6.25^^^ -~17384~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~17385~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~17386~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 17%~^42^^6.25^^^ -~17387~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN,RAW~^^^^~Bone and connective tissue 24% Separable fat 19%~^43^^6.25^^^ -~17388~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,CKD,FAST RSTD~^^^^^0^^6.25^^^ -~17389~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,RAW~^^^^^0^^6.25^^^ -~17390~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 7%~^41^^6.25^^^ -~17391~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN,RAW~^^^^~Bone and connective tissue 28% Separable fat 9%~^37^^6.25^^^ -~17392~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN,RAW~^^^^~Bone and connective tissue 32% Separable fat 10%~^42^^6.25^^^ -~17393~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 8%~^42^^6.25^^^ -~17394~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,CKD,SLOW RSTD~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17395~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,RAW~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17396~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 4%~^29^^6.25^^^ -~17397~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 27% Separable fat 3%~^30^^6.25^^^ -~17398~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 22% Separable fat 22%~^44^^6.25^^^ -~17399~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27% Separable fat 18%~^45^^6.25^^^ -~17400~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 12% Separable fat 9%~^21^^6.25^^^ -~17401~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 1%~^1^^^^^ -~17402~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17403~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17404~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17405~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 12%~^12^^^^^ -~17406~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17407~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17408~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17409~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~17410~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17411~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17412~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 32%~^32^^^^^ -~17413~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,L & F,CKD,SLOW RSTD~^^^^~Connective tissue 2%~^2^^^^^ -~17414~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN & FAT,RAW~^^^^~Connective tissue 2%~^2^^^^^ -~17415~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue26~^26^^^^^ -~17416~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 23%~^23^^^^^ -~17417~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27%~^27^^^^^ -~17418~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~17419~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17420~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 26%~^26^^^^^ -~17421~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,TUN-BND LG,CHMP OFF,SHNK OFF,L & F,CKD,SL RSTD~^^^^^0^^^^^ -~17422~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LG,CHUMP OFF,SHANK OFF,LN & FAT,RAW~^^^^^0^^6.25^^^ -~17423~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~17424~^~1700~^~Veal, ground, cooked, pan-fried~^~VEAL,GROUND,CKD,PAN-FRIED~^~IMPS 396~^^^^^^^^^ -~17425~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, cooked, grilled~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,CKD,GRILLED~^~IMPS#1336~^^^^0^^^^^ -~17426~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, raw~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,RAW~^~IMPS# 1336~^^^^0^^^^^ -~17427~^~1700~^~Veal, loin, chop, separable lean only, cooked, grilled~^~VEAL,LOIN,CHOP,LN,CKD,GRILLED~^~IMPS #1332~^^^~Bone and connective tissue 30%, separable fat 8%~^38^^^^^ -~17428~^~1700~^~Veal, shank, separable lean only, raw~^~VEAL,SHANK,LN,RAW~^~IMPS #312~^^^~Bone and connective tissue 48%, separable fat 3%~^51^^^^^ -~17429~^~1700~^~Veal, foreshank, osso buco, separable lean only, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN,CKD,BRSD~^~IMPS # 1312~^^^~Bone and connective tissue 47%, separable fat 4%~^51^^^^^ -~17430~^~1700~^~Veal, shoulder, blade chop, separable lean only, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN,CKD,GRILLED~^~IMPS #1309A~^^^~Bone and connective tissue 25%, separable fat 8%~^33^^^^^ -~17431~^~1700~^~Veal, external fat only, raw~^~VEAL,EXTERNAL FAT ONLY,RAW~^^^^^^^^^^ -~17432~^~1700~^~Veal, external fat only, cooked~^~VEAL,EXTERNAL FAT ONLY,CKD~^^^^^^^^^^ -~17433~^~1700~^~Veal, seam fat only, raw~^~VEAL,SEAM FAT ONLY,RAW~^^^^^^^^^^ -~17434~^~1700~^~Veal, seam fat only, cooked~^~VEAL,SEAM FAT ONLY,CKD~^^^^^^^^^^ -~17435~^~1700~^~Veal, shank, separable lean and fat, raw~^~VEAL,SHANK,LN & FAT,RAW~^~IMPS# 312~^^^~Bone and connective tissue 49%~^49^^^^^ -~17436~^~1700~^~Veal, foreshank, osso buco, separable lean and fat, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN & FAT,CKD,BRSD~^~IMPS# 1312~^^^~Bone and connective tissue 47%~^47^^^^^ -~17437~^~1700~^~Veal, loin, chop, separable lean and fat, cooked, grilled~^~VEAL,LOIN,CHOP,LN & FAT,CKD,GRILLED~^~IMPS # 1332~^^^~Bone and connective tissue 30%~^30^^^^^ -~17438~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,CKD,GRILLED~^~IMPS# 1309A~^^^~Bone and connective tissue 25%~^25^^^^^ -~17439~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2973~^^^~Connective tissue 7%, Separable fat 7%~^14^^^^^ -~17440~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8",BRSD~^~URMIS # 2969~^^^~Separable fat 4%, Bone and connective tissue 50%~^54^^^^^ -~17441~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2969~^^^~Bone and connective tissue 40%, Separable fat 12%~^52^^^^^ -~17442~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS #2961~^^^~Separable fat 1%~^1^^^^^ -~17443~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%, Separable fat 2%~^3^^^^^ -~17444~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,RAW~^~URMIS # 2973~^^^~Connective tissue 5%, Separable fat 14%~^19^^^^^ -~17445~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2994~^^^~Bone and connective tissue 29%, Separable fat 6%~^35^^^^^ -~17446~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2994~^^^~Bone and connective tissue 21%, Separable fat 10%~^31^^^^^ -~17447~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BONE-IN,LN,0",CKD,RSTD~^^^^~Bone and connective tissue 28%, Separable fat 11%~^39^^^^^ -~17448~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%, Separable fat 10%~^47^^^^^ -~17449~^~1700~^~Lamb, Australian, imported, fresh, external fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,CKD~^^^^^0^^6.25^^^ -~17450~^~1700~^~Lamb, Australian, imported, fresh, external fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~17451~^~1700~^~Lamb, Australian, imported, fresh, seam fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,CKD~^^^^^0^^6.25^^^ -~17452~^~1700~^~Lamb, Australian, imported, fresh, seam fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~17453~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,CKD,RSTD~^~URMIS #2973~^^^~Connective tissue 7%~^7^^^^^ -~17454~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2973~^^^~Connective tissue 5%~^5^^^^^ -~17455~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FT,1/8",BRSD~^~URMIS #2969~^^^~Bone and connective tissue 50%~^50^^^^^ -~17456~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FAT,1/8",RAW~^~URMIS #2969~^^^~Bone and connective tissue 40%~^40^^^^^ -~17457~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RSTD~^~URMIS #2994~^^^~Bone and connective tissue 29%~^29^^^^^ -~17458~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RAW~^~URMIS #2994~^^^~Bone and connective tissue 21%~^21^^^^^ -~17459~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RSTD~^~URMIS #2961~^^^^0^^^^^ -~17460~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%~^1^^^^^ -~17461~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,DNUDED,BONE-IN,LN,0",GRILLED~^^^^~Bone and connective tissue 36%, Separable fat 8%~^44^^^^^ -~17462~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BNE-IN,LN & FT,0",RSTD~^^^^~Bone and connective tissue 28%~^28^^^^^ -~17463~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BNE-IN,LN & FT,1/8",RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%~^37^^^^^ -~17464~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,IMP,FRSH,RIB CHOP,FRENCHED,DNUDED,BN-IN,L&F,0",GRLD~^^^^~Bone and connective tissue 36%~^36^^^^^ -~18001~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGEL,PLN,TSTD, ENR W/CA PROP(INCLUDE ONION,POPPY,SESAME)~^^^~Y~^^0^^6.25^^^ -~18002~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame), toasted~^~BAGELS,PLN,ENR,W/ CA PROP (INCLUDES ONION,POPPY,SESAME),TSTD~^^^~Y~^^0^^^^^ -~18003~^~1800~^~Bagels, egg~^~BAGELS,EGG~^^^^^0^^5.70^4.00^8.60^4.10 -~18005~^~1800~^~Bagels, cinnamon-raisin~^~BAGELS,CINNAMON-RAISIN~^^^~Y~^^0^^5.80^3.90^8.40^4.00 -~18006~^~1800~^~Bagels, cinnamon-raisin, toasted~^~BAGELS,CINNAMON-RAISIN,TSTD~^^^~Y~^^0^^0.00^^^ -~18007~^~1800~^~Bagels, oat bran~^~BAGELS,OAT BRAN~^^^~Y~^^0^^5.80^3.50^8.40^3.90 -~18009~^~1800~^~Biscuits, plain or buttermilk, frozen, baked~^~BISCUITS,PLN OR BTTRMLK,FRZ,BKD~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18010~^~1800~^~Biscuits, plain or buttermilk, dry mix~^~BISCUITS,PLN OR BTTRMLK,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18011~^~1800~^~Biscuits, plain or buttermilk, dry mix, prepared~^~BISCUITS,PLN OR BTTRMLK,DRY MIX,PREP~^^^^^0^^^^^ -~18012~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18013~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT,BKD~^^^~Y~^^0^^0.00^^^ -~18014~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat~^~BISCUIT, PLN OR BUTMLK, REFRI DOUGH, HIGHER FAT~^^^^^0^^^^^ -~18015~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,HIGHER FAT,BKD~^^^~Y~^^0^^^^^ -~18016~^~1800~^~Biscuits, plain or buttermilk, prepared from recipe~^~BISCUITS,PLN OR BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18017~^~1800~^~Biscuits, mixed grain, refrigerated dough~^~BISCUITS,MXD GRAIN,REFR DOUGH~^^^^^0^^5.70^3.90^8.80^4.00 -~18019~^~1800~^~Bread, banana, prepared from recipe, made with margarine~^~BREAD,BANANA,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18021~^~1800~^~Bread, boston brown, canned~^~BREAD,BOSTON BROWN,CANNED~^^^~Y~^^0^^5.90^3.50^8.40^3.80 -~18022~^~1800~^~Bread, cornbread, dry mix, enriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,ENR (INCL CORN MUFFIN MIX)~^^^~Y~^^0^^6.00^3.80^8.80^4.10 -~18023~^~1800~^~Bread, cornbread, dry mix, prepared with 2% milk, 80% margarine, and eggs~^~BREAD,CORNBREAD,DRY MIX,PREP W/ 2% MILK,80% MARGARINE,& EGGS~^^^~Y~^^0^^6.25^^^ -~18024~^~1800~^~Bread, cornbread, prepared from recipe, made with low fat (2%) milk~^~BREAD,CORNBREAD,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18025~^~1800~^~Bread, cracked-wheat~^~BREAD,CRACKED-WHEAT~^^^^^0^^5.80^3.80^8.80^3.90 -~18027~^~1800~^~Bread, egg~^~BREAD,EGG~^^^~Y~^^0^^0.00^^^ -~18028~^~1800~^~Bread, egg, toasted~^~BREAD,EGG,TOASTED~^^^~Y~^^0^^0.00^^^ -~18029~^~1800~^~Bread, french or vienna (includes sourdough)~^~Bread, french~^^^~Y~^^0^^^^^ -~18030~^~1800~^~Bread, french or vienna, toasted (includes sourdough)~^~BREAD, FRENCH OR VIENNA, TSTD (IND SOURDOUGH)~^^^~Y~^^0^^^^^ -~18032~^~1800~^~Bread, irish soda, prepared from recipe~^~BREAD,IRISH SODA,PREP FROM RECIPE~^^^^^0^^^^^ -~18033~^~1800~^~Bread, Italian~^~BREAD,ITALIAN~^^^~Y~^^0^^5.70^4.00^8.70^4.10 -~18036~^~1800~^~Bread, multi-grain, toasted (includes whole-grain)~^~BREAD,MULTI-GRAIN,TSTD (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~18037~^~1800~^~Bread, oat bran~^~BREAD,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18038~^~1800~^~Bread, oat bran, toasted~^~BREAD,OAT BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18039~^~1800~^~Bread, oatmeal~^~BREAD,OATMEAL~^^^~Y~^^0^^5.80^3.80^8.60^4.10 -~18040~^~1800~^~Bread, oatmeal, toasted~^~BREAD,OATMEAL,TOASTED~^^^~Y~^^0^^0.00^^^ -~18041~^~1800~^~Bread, pita, white, enriched~^~BREAD,PITA,WHITE,ENRICHED~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18042~^~1800~^~Bread, pita, whole-wheat~^~BREAD,PITA,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.40^3.80 -~18043~^~1800~^~Bread, protein (includes gluten)~^~BREAD,PROT (INCL GLUTEN)~^^^~Y~^^0^^5.70^3.90^8.40^4.10 -~18044~^~1800~^~Bread, pumpernickel~^~BREAD,PUMPERNICKEL~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18047~^~1800~^~Bread, raisin, enriched~^~BREAD,RAISIN,ENRICHED~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18048~^~1800~^~Bread, raisin, enriched, toasted~^~BREAD,RAISIN,ENR,TSTD~^^^~Y~^^0^^0.00^^^ -~18049~^~1800~^~Bread, reduced-calorie, oat bran~^~BREAD,RED-CAL,OAT BRAN~^^^~Y~^^0^^5.80^3.60^8.60^3.50 -~18050~^~1800~^~Bread, reduced-calorie, oat bran, toasted~^~BREAD,RED-CAL,OAT BRAN,TSTD~^^^~Y~^^0^^0.00^^^ -~18051~^~1800~^~Bread, reduced-calorie, oatmeal~^~BREAD,RED-CAL,OATMEAL~^^^^^0^^5.80^3.90^8.40^3.50 -~18053~^~1800~^~Bread, reduced-calorie, rye~^~BREAD,REDUCED-CALORIE,RYE~^^^~Y~^^0^^5.80^4.00^8.60^3.50 -~18055~^~1800~^~Bread, reduced-calorie, wheat~^~BREAD,RED-CAL,WHEAT~^^^~Y~^^0^^5.80^3.90^8.40^3.30 -~18057~^~1800~^~Bread, reduced-calorie, white~^~BREAD,RED-CAL,WHITE~^^^~Y~^^0^^5.90^4.00^8.70^3.40 -~18059~^~1800~^~Bread, rice bran~^~BREAD,RICE BRAN~^^^~Y~^^0^^5.80^3.70^8.70^3.90 -~18060~^~1800~^~Bread, rye~^~BREAD,RYE~^^^~Y~^^0^^5.80^3.70^8.60^4.10 -~18061~^~1800~^~Bread, rye, toasted~^~BREAD,RYE,TOASTED~^^^~Y~^^0^^0.00^^^ -~18064~^~1800~^~Bread, wheat~^~BREAD,WHEAT~^^^~Y~^^0^^^^^ -~18065~^~1800~^~Bread, wheat, toasted~^~BREAD, WHEAT, TSTD~^^^~Y~^^0^^^^^ -~18069~^~1800~^~Bread, white, commercially prepared (includes soft bread crumbs)~^~BREAD,WHITE,COMMLY PREP (INCL SOFT BREAD CRUMBS)~^^^~Y~^^0^^6.25^3.90^8.70^4.10 -~18070~^~1800~^~Bread, white, commercially prepared, toasted~^~BREAD,WHITE,COMMLY PREP,TSTD~^^^~Y~^^0^^0.00^^^ -~18071~^~1800~^~Bread, white, prepared from recipe, made with nonfat dry milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/NONFAT DRY MILK~^^^^^0^^0.00^^^ -~18073~^~1800~^~Bread, white, prepared from recipe, made with low fat (2%) milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18075~^~1800~^~Bread, whole-wheat, commercially prepared~^~BREAD,WHOLE-WHEAT,COMM. PREPARED~^^^~Y~^^0^^6.25^^^ -~18076~^~1800~^~Bread, whole-wheat, commercially prepared, toasted~^~BREAD, WHOLE-WHEAT, COMMER PREP, TOASTED~^^^~Y~^^0^^^^^ -~18077~^~1800~^~Bread, whole-wheat, prepared from recipe~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18078~^~1800~^~Bread, whole-wheat, prepared from recipe, toasted~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE,TSTD~^^^~Y~^^0^^0.00^^^ -~18079~^~1800~^~Bread, crumbs, dry, grated, plain~^~BREAD,CRUMBS,DRY,GRATED,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18080~^~1800~^~Bread, sticks, plain~^~BREAD,STKS,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18081~^~1800~^~Bread, stuffing, dry mix~^~BREAD,STUFFING,DRY MIX~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18082~^~1800~^~Bread, stuffing, dry mix, prepared~^~BREAD,STUFFING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18084~^~1800~^~Bread, stuffing, cornbread, dry mix~^~BREAD,STUFFING,CORNBREAD,DRY MIX~^^^^^0^^5.90^3.80^8.70^4.10 -~18085~^~1800~^~Bread, stuffing, cornbread, dry mix, prepared~^~BREAD,STUFFING,CORNBREAD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18086~^~1800~^~Cake, angelfood, commercially prepared~^~CAKE,ANGELFOOD,COMMLY PREP~^^^^^0^^6.10^4.30^8.40^3.90 -~18088~^~1800~^~Cake, angelfood, dry mix, prepared~^~CAKE,ANGELFOOD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18090~^~1800~^~Cake, boston cream pie, commercially prepared~^~CAKE,BOSTON CRM PIE,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.80^3.90 -~18092~^~1800~^~Cake, pudding-type, carrot, dry mix~^~CAKE,PUDDING-TYPE,CARROT,DRY MIX~^^^^^0^^5.80^3.90^8.80^3.90 -~18095~^~1800~^~Cake, cherry fudge with chocolate frosting~^~CAKE,CHERRY FUDGE W/CHOC FRSTNG~^^^~Y~^^0^^6.10^3.90^8.80^3.80 -~18096~^~1800~^~Cake, chocolate, commercially prepared with chocolate frosting, in-store bakery~^~CAKE,CHOC,COMMLY PREP W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^5.90^3.50^8.80^3.80 -~18097~^~1800~^~Cake, pudding-type, chocolate, dry mix~^~CAKE,PUDDING-TYPE,CHOC,DRY MIX~^^^~Y~^^0^^5.80^3.30^8.70^3.80 -~18101~^~1800~^~Cake, chocolate, prepared from recipe without frosting~^~CAKE,CHOC,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18102~^~1800~^~Cake, white, prepared from recipe with coconut frosting~^~CAKE,WHITE,PREP FROM RECIPE W/COCNT FRSTNG~^^^~Y~^^0^^0.00^^^ -~18103~^~1800~^~Cake, coffeecake, cheese~^~CAKE,COFFEECAKE,CHS~^^^^^0^^6.00^4.00^8.80^4.00 -~18104~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, enriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,ENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18105~^~1800~^~Cake, coffeecake, creme-filled with chocolate frosting~^~CAKE,COFFEECAKE,CREME-FILLED W/ CHOC FRSTNG~^^^^^0^^5.80^3.90^8.80^4.00 -~18106~^~1800~^~Cake, coffeecake, fruit~^~CAKE,COFFEECAKE,FRUIT~^^^^^0^^5.80^3.90^8.80^3.90 -~18108~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, dry mix, prepared~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18110~^~1800~^~Cake, fruitcake, commercially prepared~^~CAKE,FRUITCAKE,COMMLY PREP~^^^~Y~^^0^^5.60^3.80^8.60^3.80 -~18114~^~1800~^~Cake, gingerbread, dry mix~^~CAKE,GINGERBREAD,DRY MIX~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18116~^~1800~^~Cake, gingerbread, prepared from recipe~^~CAKE,GINGERBREAD,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18119~^~1800~^~Cake, pineapple upside-down, prepared from recipe~^~CAKE,PNAPPL UPSIDE-DOWN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18120~^~1800~^~Cake, pound, commercially prepared, butter (includes fresh and frozen)~^~CAKE,POUND,COMMLY PREP,BUTTER (INCLUDES FRSH & FROZEN)~^^^~Y~^^0^^6.00^4.20^8.80^3.90 -~18121~^~1800~^~Cake, pound, commercially prepared, other than all butter, enriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,ENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18126~^~1800~^~Cake, shortcake, biscuit-type, prepared from recipe~^~CAKE,SHORTCAKE,BISCUIT-TYPE,PREP FROM RECIPE~^^^^^0^^^^^ -~18127~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting~^~CAKE,SNACK CAKES,CREME-FILLED,CHOC W/ FRSTNG~^^^~Y~^^0^^^^^ -~18128~^~1800~^~Cake, snack cakes, creme-filled, sponge~^~CAKE,SNACK CAKES,CREME-FILLED,SPONGE~^^^~Y~^^0^^^^^ -~18131~^~1800~^~Cake, white, dry mix, special dietary (includes lemon-flavored)~^~CAKE,WHITE,DRY MIX,SPL DIETARY (INCL LEMON-FLAVORED)~^^^^^0^^5.70^4.00^8.80^3.90 -~18133~^~1800~^~Cake, sponge, commercially prepared~^~CAKE,SPONGE,COMMLY PREP~^^^~Y~^^0^^0.00^^^ -~18134~^~1800~^~Cake, sponge, prepared from recipe~^~CAKE,SPONGE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18135~^~1800~^~Cake, pudding-type, white, enriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,ENR,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18139~^~1800~^~Cake, white, prepared from recipe without frosting~^~CAKE,WHITE,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18140~^~1800~^~Cake, yellow, commercially prepared, with chocolate frosting, in-store bakery~^~CAKE,YEL,COMMLY PREP,W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^6.00^3.80^8.80^3.80 -~18141~^~1800~^~Cake, yellow, commercially prepared, with vanilla frosting~^~CAKE,YEL,COMMLY PREP,W/VANILLA FRSTNG~^^^~Y~^^0^^6.10^4.20^8.90^3.90 -~18142~^~1800~^~Cake, pudding-type, yellow, dry mix~^~CAKE,PUDDING-TYPE,YEL,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18144~^~1800~^~Cake, yellow, enriched, dry mix~^~CAKE,YEL,ENR,DRY MIX~^^^~Y~^^0^^5.90^4.10^8.80^4.00 -~18146~^~1800~^~Cake, yellow, prepared from recipe without frosting~^~CAKE,YEL,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18147~^~1800~^~Cake, cheesecake, commercially prepared~^~CAKE,CHEESECAKE,COMMLY PREP~^^^~Y~^^0^^6.20^4.20^8.80^3.90 -~18148~^~1800~^~Cake, cheesecake, prepared from mix, no-bake type~^~CAKE,CHEESECAKE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.20^4.20^8.80^3.90 -~18151~^~1800~^~Cookies, brownies, commercially prepared~^~COOKIES,BROWNIES,COMMLY PREP~^^^~Y~^^0^^5.90^3.90^8.80^3.80 -~18152~^~1800~^~Cookies, brownies, dry mix, regular~^~COOKIES,BROWNIES,DRY MIX,REG~^^^^^0^^5.60^3.00^8.70^3.80 -~18154~^~1800~^~Cookies, brownies, prepared from recipe~^~COOKIES,BROWNIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18155~^~1800~^~Cookies, butter, commercially prepared, enriched~^~COOKIES,BUTTER,COMMLY PREP,ENR~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18156~^~1800~^~Cookies, fudge, cake-type (includes trolley cakes)~^~COOKIES,FUDGE,CAKE-TYPE (INCL TROLLEY CAKES)~^^^^^0^^5.70^3.60^8.70^3.80 -~18157~^~1800~^~Cookies, chocolate wafers~^~COOKIES,CHOCOLATE WAFERS~^^^~Y~^^0^^5.70^3.50^8.90^3.90 -~18158~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, lower fat~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,LOWER FAT~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18159~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, enriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,ENR~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18160~^~1800~^~Cookies, chocolate chip, commercially prepared, soft-type~^~COOKIES,CHOC CHIP,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.80^3.80^8.80^3.90 -~18161~^~1800~^~Cookies, chocolate chip, dry mix~^~COOKIES,CHOC CHIP,DRY MIX~^^^^^0^^5.80^4.00^8.80^3.90 -~18163~^~1800~^~Cookies, chocolate chip, refrigerated dough~^~COOKIES,CHOC CHIP,REFR DOUGH~^^^^^0^^5.90^4.10^8.80^4.00 -~18164~^~1800~^~Cookies, chocolate chip, refrigerated dough, baked~^~COOKIES,CHOC CHIP,REFR DOUGH,BKD~^^^^^0^^^^^ -~18165~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with margarine~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18166~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG~^^^~Y~^^0^^5.70^3.50^8.80^3.90 -~18167~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular, chocolate-coated~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG,CHOCOLATE-COATED~^^^~Y~^^0^^5.70^2.70^8.80^3.60 -~18168~^~1800~^~Cookies, chocolate sandwich, with extra creme filling~^~COOKIES,CHOC SNDWCH,W/EX CREME FILLING~^^^~Y~^^0^^5.70^3.60^8.80^3.90 -~18170~^~1800~^~Cookies, fig bars~^~COOKIES,FIG BARS~^^^~Y~^^0^^5.90^3.80^8.80^3.80 -~18171~^~1800~^~Cookies, fortune~^~COOKIES,FORTUNE~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18172~^~1800~^~Cookies, gingersnaps~^~COOKIES,GINGERSNAPS~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18173~^~1800~^~Cookies, graham crackers, plain or honey (includes cinnamon)~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY (INCL CINN)~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18174~^~1800~^~Cookies, graham crackers, chocolate-coated~^~COOKIES,GRAHAM CRACKERS,CHOCOLATE-COATED~^^^~Y~^^0^^5.90^3.80^8.70^3.90 -~18175~^~1800~^~Cookies, ladyfingers, with lemon juice and rind~^~COOKIES,LADYFINGERS,W/LEMON JUC&RIND~^^^~Y~^^0^^0.00^^^ -~18176~^~1800~^~Cookies, marshmallow, chocolate-coated (includes marshmallow pies)~^~COOKIES,MARSHMLLW,CHOCOLATE-COATED (INCL MARSHMLLW PIES)~^^^~Y~^^0^^5.70^3.60^8.80^3.80 -~18177~^~1800~^~Cookies, molasses~^~COOKIES,MOLASSES~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18178~^~1800~^~Cookies, oatmeal, commercially prepared, regular~^~COOKIES,OATMEAL,COMMLY PREP,REG~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18179~^~1800~^~Cookies, oatmeal, commercially prepared, soft-type~^~COOKIES,OATMEAL,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.90^3.80^8.80^3.90 -~18180~^~1800~^~Cookies, oatmeal, dry mix~^~COOKIES,OATMEAL,DRY MIX~^^^^^0^^5.80^3.70^8.80^4.00 -~18182~^~1800~^~Cookies, oatmeal, refrigerated dough~^~COOKIES,OATMEAL,REFR DOUGH~^^^^^0^^5.90^3.80^8.80^4.00 -~18183~^~1800~^~Cookies, oatmeal, refrigerated dough, baked~^~COOKIES,OATMEAL,REFR DOUGH,BKD~^^^^^0^^^^^ -~18184~^~1800~^~Cookies, oatmeal, with raisins~^~COOKIES,OATMEAL,W/ RAISINS~^^^^^0^^0.00^^^ -~18185~^~1800~^~Cookies, peanut butter, commercially prepared, regular~^~COOKIES,PNUT BUTTER,COMMLY PREP,REG~^^^~Y~^^0^^5.60^3.70^8.70^4.00 -~18186~^~1800~^~Cookies, peanut butter, commercially prepared, soft-type~^~COOKIES,PNUT BUTTER,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.50^3.70^8.70^3.90 -~18187~^~1800~^~Cookies, peanut butter, refrigerated dough~^~COOKIES,PNUT BUTTER,REFR DOUGH~^^^^^0^^5.70^3.80^8.70^4.00 -~18188~^~1800~^~Cookies, peanut butter, refrigerated dough, baked~^~COOKIES,PNUT BUTTER,REFR DOUGH,BKD~^^^^^0^^^^^ -~18189~^~1800~^~Cookies, peanut butter, prepared from recipe~^~COOKIES,PNUT BUTTER,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18190~^~1800~^~Cookies, peanut butter sandwich, regular~^~COOKIES,PNUT BUTTER SNDWCH,REG~^^^~Y~^^0^^5.60^3.80^8.60^4.00 -~18191~^~1800~^~Cookies, raisin, soft-type~^~COOKIES,RAISIN,SOFT-TYPE~^^^~Y~^^0^^5.90^4.00^8.80^3.90 -~18192~^~1800~^~Cookies, shortbread, commercially prepared, plain~^~COOKIES,SHORTBREAD,COMMLY PREP,PLN~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18193~^~1800~^~Cookies, shortbread, commercially prepared, pecan~^~COOKIES,SHORTBREAD,COMMLY PREP,PECAN~^^^^^0^^5.60^4.00^8.70^4.10 -~18196~^~1800~^~Cookies, brownies, dry mix, sugar free~^~COOKIES,BROWNIES,DRY MIX,SUGAR FREE~^^^^^0^^5.70^3.60^8.80^3.80 -~18198~^~1800~^~Cookies, chocolate chip, commercially prepared, special dietary~^~COOKIES,CHOC CHIP,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18199~^~1800~^~Cookies, chocolate sandwich, with creme filling, special dietary~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,SPL DIETARY~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18200~^~1800~^~Cookies, oatmeal, commercially prepared, special dietary~^~COOKIES,OATMEAL,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18201~^~1800~^~Cookies, peanut butter sandwich, special dietary~^~COOKIES,PNUT BUTTER SNDWCH,SPL DIETARY~^^^^^0^^5.50^3.60^8.70^4.00 -~18202~^~1800~^~Cookies, sugar wafer, with creme filling, sugar free~^~COOKIES,SUGAR WAFER,W/ CREME FILLING,SUGAR FREE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18204~^~1800~^~Cookies, sugar, commercially prepared, regular (includes vanilla)~^~COOKIES,SUGAR,COMMLY PREP,REG (INCL VANILLA)~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18205~^~1800~^~Cookies, sugar, refrigerated dough~^~COOKIES,SUGAR,REFR DOUGH~^^^^^0^^5.80^4.10^8.80^4.00 -~18206~^~1800~^~Cookies, sugar, refrigerated dough, baked~^~COOKIES,SUGAR,REFR DOUGH,BKD~^^^~Y~^^0^^0.00^^^ -~18209~^~1800~^~Cookies, sugar wafers with creme filling, regular~^~COOKIES,SUGAR WAFERS W/CREME FILLING,REG~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18210~^~1800~^~Cookies, vanilla sandwich with creme filling~^~COOKIES,VANILLA SNDWCH W/CREME FILLING~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18211~^~1800~^~Puff pastry, frozen, ready-to-bake, baked~^~PUFF PASTRY,FRZ,RTB,BKD~^^^~Y~^^0^^0.00^^^ -~18212~^~1800~^~Cookies, vanilla wafers, lower fat~^~COOKIES,VANILLA WAFERS,LOWER FAT~^^^~Y~^^0^^5.90^4.10^8.80^3.90 -~18213~^~1800~^~Cookies, vanilla wafers, higher fat~^~COOKIES,VANILLA WAFERS,HIGHER FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18214~^~1800~^~Crackers, cheese, regular~^~CRACKERS,CHEESE,REGULAR~^^^~Y~^^0^^5.90^4.10^8.80^4.10 -~18215~^~1800~^~Crackers, cheese, sandwich-type with peanut butter filling~^~CRACKERS,CHS,SANDWICH-TYPE W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18216~^~1800~^~Crackers, crispbread, rye~^~CRACKERS,CRISPBREAD,RYE~^^^~Y~^^0^^5.90^3.20^8.40^4.00 -~18217~^~1800~^~Crackers, matzo, plain~^~CRACKERS,MATZO,PLAIN~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18218~^~1800~^~Crackers, matzo, egg~^~CRACKERS,MATZO,EGG~^^^^^0^^5.80^4.10^8.80^4.10 -~18219~^~1800~^~Crackers, matzo, whole-wheat~^~CRACKERS,MATZO,WHOLE-WHEAT~^^^^^0^^5.80^3.50^8.40^3.70 -~18220~^~1800~^~Crackers, melba toast, plain~^~CRACKERS,MELBA TOAST,PLN~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18221~^~1800~^~Crackers, melba toast, rye (includes pumpernickel)~^~CRACKERS,MELBA TOAST,RYE (INCL PUMPERNICKEL)~^^^^^0^^5.80^3.70^8.60^4.10 -~18222~^~1800~^~Crackers, melba toast, wheat~^~CRACKERS,MELBA TOAST,WHEAT~^^^^^0^^5.80^3.80^8.60^4.00 -~18223~^~1800~^~Crackers, milk~^~CRACKERS,MILK~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18224~^~1800~^~Crackers, rusk toast~^~CRACKERS,RUSK TOAST~^^^^^0^^6.00^3.90^8.90^4.00 -~18225~^~1800~^~Crackers, rye, sandwich-type with cheese filling~^~CRACKERS,RYE,SANDWICH-TYPE W/CHS FILLING~^^^^^0^^5.80^3.90^8.80^4.10 -~18226~^~1800~^~Crackers, rye, wafers, plain~^~CRACKERS,RYE,WAFERS,PLAIN~^^^~Y~^^0^^5.90^3.00^8.40^3.70 -~18227~^~1800~^~Crackers, rye, wafers, seasoned~^~CRACKERS,RYE,WAFERS,SEASONED~^^^^^0^^5.90^3.00^8.80^3.70 -~18228~^~1800~^~Crackers, saltines (includes oyster, soda, soup)~^~CRACKERS,SALTINES (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18229~^~1800~^~Crackers, standard snack-type, regular~^~CRACKERS,STD SNACK-TYPE,REG~^^^~Y~^^0^^^^^ -~18230~^~1800~^~Crackers, standard snack-type, sandwich, with cheese filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/CHS FILLING~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18231~^~1800~^~Crackers, standard snack-type, sandwich, with peanut butter filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18232~^~1800~^~Crackers, wheat, regular~^~CRACKERS,WHEAT,REGULAR~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18233~^~1800~^~Crackers, wheat, sandwich, with cheese filling~^~CRACKERS,WHEAT,SNDWCH,W/CHS FILLING~^^^^^0^^5.80^4.00^8.80^4.10 -~18234~^~1800~^~Crackers, wheat, sandwich, with peanut butter filling~^~CRACKERS,WHEAT,SNDWCH,W/PNUT BUTTER FILLING~^^^^^0^^5.60^3.70^8.60^4.00 -~18235~^~1800~^~Crackers, whole-wheat~^~CRACKERS,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18236~^~1800~^~Cracker, meal~^~CRACKER,MEAL~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18237~^~1800~^~Cream puff shell, prepared from recipe~^~CREAM PUFF SHELL,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18239~^~1800~^~Croissants, butter~^~CROISSANTS,BUTTER~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18240~^~1800~^~Croissants, apple~^~CROISSANTS,APPLE~^^^^^0^^5.90^4.00^8.80^4.00 -~18241~^~1800~^~Croissants, cheese~^~CROISSANTS,CHEESE~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18242~^~1800~^~Croutons, plain~^~CROUTONS,PLAIN~^^^^^0^^5.70^4.00^8.80^4.10 -~18243~^~1800~^~Croutons, seasoned~^~CROUTONS,SEASONED~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18244~^~1800~^~Danish pastry, cinnamon, enriched~^~DANISH PASTRY,CINN,ENR~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18245~^~1800~^~Danish pastry, cheese~^~DANISH PASTRY,CHEESE~^^^~Y~^^0^^6.00^4.10^8.80^4.00 -~18246~^~1800~^~Danish pastry, fruit, enriched (includes apple, cinnamon, raisin, lemon, raspberry, strawberry)~^~DANISH PASTRY,FRUIT,ENR~^^^~Y~^^0^^5.80^4.10^8.80^3.90 -~18248~^~1800~^~Doughnuts, cake-type, plain (includes unsugared, old-fashioned)~^~DOUGHNUTS,CAKE-TYPE,PLN (INCLUDES UNSUGARED,OLD-FASHIONED)~^~donut~^^~Y~^^0^^6.25^^^ -~18249~^~1800~^~Doughnuts, cake-type, plain, chocolate-coated or frosted~^~DOUGHNUTS,CAKE-TYPE,PLN,CHOCOLATE-COATED OR FRSTD~^~donut~^^~Y~^^0^^^^^ -~18250~^~1800~^~Doughnuts, cake-type, plain, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,PLN,SUGARED OR GLAZED~^~donut~^^^^0^^5.90^4.20^8.80^4.00 -~18251~^~1800~^~Doughnuts, cake-type, chocolate, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,CHOC,SUGARED OR GLAZED~^~donut~^^~Y~^^0^^5.90^3.90^8.80^3.90 -~18253~^~1800~^~Doughnuts, french crullers, glazed~^~DOUGHNUTS,FRENCH CRULLERS,GLAZED~^~donut~^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18254~^~1800~^~Doughnuts, yeast-leavened, with creme filling~^~DOUGHNUTS,YEAST-LEAVENED,W/CREME FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18255~^~1800~^~Doughnuts, yeast-leavened, glazed, enriched (includes honey buns)~^~DOUGHNUTS, YEAST-LEAVENED, GLAZED, ENRICHED (INC HONEY BUNS)~^~donut~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18256~^~1800~^~Doughnuts, yeast-leavened, with jelly filling~^~DOUGHNUTS,YEAST-LEAVENED,W/JELLY FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18258~^~1800~^~Muffins, English, plain, enriched, with ca prop (includes sourdough)~^~MUFFINS,ENG,PLN,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18259~^~1800~^~Muffins, English, plain, toasted, enriched, with calcium propionate (includes sourdough)~^~MUFFINS,ENG,PLN,TSTD,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18260~^~1800~^~Muffins, English, mixed-grain (includes granola)~^~MUFFINS,ENG,MIXED-GRAIN (INCLUDES GRANOLA)~^^^~Y~^^0^^5.80^3.70^8.50^4.00 -~18262~^~1800~^~Muffins, English, raisin-cinnamon (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18263~^~1800~^~Muffins, English, raisin-cinnamon, toasted (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON,TSTD (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^^^^ -~18264~^~1800~^~Muffins, English, wheat~^~MUFFINS,ENG,WHEAT~^^^~Y~^^0^^5.80^3.70^8.40^3.90 -~18266~^~1800~^~Muffins, English, whole-wheat~^~MUFFINS,ENG,WHOLE-WHEAT~^^^~Y~^^0^^5.90^3.50^8.50^3.80 -~18268~^~1800~^~French toast, frozen, ready-to-heat~^~FRENCH TOAST,FRZ,RTH~^^^^^0^^6.00^4.10^8.90^4.00 -~18269~^~1800~^~French toast, prepared from recipe, made with low fat (2%) milk~^~FRENCH TOAST,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18270~^~1800~^~Hush puppies, prepared from recipe~^~HUSH PUPPIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18271~^~1800~^~Ice cream cones, cake or wafer-type~^~ICE CRM CONES,CAKE OR WAFER-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18272~^~1800~^~Ice cream cones, sugar, rolled-type~^~ICE CRM CONES,SUGAR,ROLLED-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18273~^~1800~^~Muffins, plain, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18274~^~1800~^~Muffins, blueberry, commercially prepared (Includes mini-muffins)~^~MUFFINS,BLUEBERRY,COMMLY PREP (INCLUDES MINI-MUFFINS)~^^^~Y~^^0^^^^^ -~18275~^~1800~^~Muffins, blueberry, dry mix~^~MUFFINS,BLUEBERRY,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18277~^~1800~^~Muffins, blueberry, toaster-type~^~MUFFINS,BLUEBERRY,TOASTER-TYPE~^^^^^0^^5.70^3.60^8.80^4.00 -~18278~^~1800~^~Muffins, blueberry, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,BLUEBERRY,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18279~^~1800~^~Muffins, corn, commercially prepared~^~MUFFINS,CORN,COMMLY PREP~^^^~Y~^^0^^5.90^3.80^8.80^4.10 -~18280~^~1800~^~Muffins, corn, dry mix, prepared~^~MUFFINS,CORN,DRY MIX,PREP~^^^^^0^^^^^ -~18281~^~1800~^~Muffins, corn, toaster-type~^~MUFFINS,CORN,TOASTER-TYPE~^^^^^0^^5.90^4.00^8.80^3.90 -~18282~^~1800~^~Muffins, corn, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,CORN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18283~^~1800~^~Muffins, oat bran~^~MUFFINS,OAT BRAN~^^^~Y~^^0^^6.20^3.20^8.70^3.80 -~18284~^~1800~^~Muffins, wheat bran, dry mix~^~MUFFINS,WHEAT BRAN,DRY MIX~^^^^^0^^6.00^2.90^8.80^3.70 -~18288~^~1800~^~Pancakes plain, frozen, ready-to-heat (includes buttermilk)~^~PANCAKES PLN,FRZ,RTH (INCLUDES BUTTERMILK)~^^^~Y~^^0^^^^^ -~18289~^~1800~^~Pancakes, plain, dry mix, complete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,COMPLETE (INCL BTTRMLK)~^^^^^0^^6.00^4.00^8.80^4.10 -~18290~^~1800~^~Pancakes, plain, dry mix, complete, prepared~^~PANCAKES,PLN,DRY MIX,COMPLETE,PREP~^^^^^0^^^^^ -~18291~^~1800~^~Pancakes, plain, dry mix, incomplete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,INCOMPLETE (INCL BTTRMLK)~^^^~Y~^^0^^5.80^3.90^8.40^4.10 -~18292~^~1800~^~Pancakes, plain, dry mix, incomplete, prepared~^~PANCAKES,PLN,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18293~^~1800~^~Pancakes, plain, prepared from recipe~^~PANCAKES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18294~^~1800~^~Pancakes, blueberry, prepared from recipe~^~PANCAKES,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18295~^~1800~^~Pancakes, buckwheat, dry mix, incomplete~^~PANCAKES,BUCKWHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.00^3.60^8.40^3.90 -~18297~^~1800~^~Pancakes, special dietary, dry mix~^~PANCAKES,SPL DIETARY,DRY MIX~^^^^^0^^5.90^3.80^8.40^4.10 -~18299~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE~^^^^^0^^5.80^3.70^8.40^4.00 -~18300~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete, prepared~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18301~^~1800~^~Pie, apple, commercially prepared, enriched flour~^~PIE,APPL,COMMLY PREP,ENR FLR~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18302~^~1800~^~Pie, apple, prepared from recipe~^~PIE,APPL,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18303~^~1800~^~Pie, banana cream, prepared from mix, no-bake type~^~PIE,BANANA CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^4.00^8.80^3.90 -~18304~^~1800~^~Pie, banana cream, prepared from recipe~^~PIE,BANANA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18305~^~1800~^~Pie, blueberry, commercially prepared~^~PIE,BLUEBERRY,COMMLY PREP~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18306~^~1800~^~Pie, blueberry, prepared from recipe~^~PIE,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18308~^~1800~^~Pie, cherry, commercially prepared~^~PIE,CHERRY,COMMLY PREP~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18309~^~1800~^~Pie, cherry, prepared from recipe~^~PIE,CHERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18310~^~1800~^~Pie, chocolate creme, commercially prepared~^~PIE,CHOC CREME,COMMLY PREP~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18312~^~1800~^~Pie, chocolate mousse, prepared from mix, no-bake type~^~PIE,CHOC MOUSSE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^3.70^8.70^3.80 -~18313~^~1800~^~Pie, coconut creme, commercially prepared~^~PIE,COCNT CREME,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.70^3.90 -~18314~^~1800~^~Pie, coconut cream, prepared from mix, no-bake type~^~PIE,COCNT CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.10^4.10^8.70^3.90 -~18316~^~1800~^~Pie, coconut custard, commercially prepared~^~PIE,COCNT CUSTARD,COMMLY PREP~^^^^^0^^6.00^4.10^8.70^4.00 -~18317~^~1800~^~Pie, egg custard, commercially prepared~^~PIE,EGG CUSTARD,COMMLY PREP~^^^~Y~^^0^^6.20^4.30^8.90^4.00 -~18319~^~1800~^~Pie, fried pies, fruit~^~PIE,FRIED PIES,FRUIT~^^^~Y~^^0^^5.80^4.00^8.80^3.80 -~18320~^~1800~^~Pie, lemon meringue, commercially prepared~^~PIE,LEMON MERINGUE,COMMLY PREP~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18321~^~1800~^~Pie, lemon meringue, prepared from recipe~^~PIE,LEMON MERINGUE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18322~^~1800~^~Pie, mince, prepared from recipe~^~PIE,MINCE,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18323~^~1800~^~Pie, peach~^~PIE,PEACH~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18324~^~1800~^~Pie, pecan, commercially prepared~^~PIE,PECAN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18325~^~1800~^~Pie, pecan, prepared from recipe~^~PIE,PECAN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18326~^~1800~^~Pie, pumpkin, commercially prepared~^~PIE,PUMPKIN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18327~^~1800~^~Pie, pumpkin, prepared from recipe~^~PIE,PUMPKIN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18328~^~1800~^~Pie, vanilla cream, prepared from recipe~^~PIE,VANILLA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18332~^~1800~^~Pie crust, standard-type, dry mix~^~PIE CRUST,STANDARD-TYPE,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18333~^~1800~^~Pie crust, standard-type, dry mix, prepared, baked~^~PIE CRUST,STANDARD-TYPE,DRY MIX,PREP,BKD~^^^^^0^^^^^ -~18334~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR~^^^~Y~^^0^^5.70^4.10^8.90^4.10 -~18335~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched, baked~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR,BKD~^^^~Y~^^0^^0.00^^^ -~18336~^~1800~^~Pie crust, standard-type, prepared from recipe, baked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,BKD~^^^^^0^^0.00^^^ -~18337~^~1800~^~Puff pastry, frozen, ready-to-bake~^~PUFF PASTRY,FRZ,RTB~^^^^^0^^0.00^^^ -~18338~^~1800~^~Phyllo dough~^~PHYLLO DOUGH~^^^~Y~^^0^^0.00^^^ -~18339~^~1800~^~Popovers, dry mix, enriched~^~POPOVERS,DRY MIX,ENRICHED~^^^^^0^^5.70^4.10^8.70^4.10 -~18342~^~1800~^~Rolls, dinner, plain, commercially prepared (includes brown-and-serve)~^~ROLLS, DINNER, PLN,COMM PREPARED (INC BROWN -N- SERVE)~^^^~Y~^^0^^^^^ -~18344~^~1800~^~Rolls, dinner, egg~^~ROLLS,DINNER,EGG~^^^~Y~^^0^^5.80^3.90^8.80^4.10 -~18345~^~1800~^~Rolls, dinner, oat bran~^~ROLLS,DINNER,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18346~^~1800~^~Rolls, dinner, rye~^~ROLLS,DINNER,RYE~^^^~Y~^^0^^5.80^3.70^8.70^4.10 -~18347~^~1800~^~Rolls, dinner, wheat~^~ROLLS,DINNER,WHEAT~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18348~^~1800~^~Rolls, dinner, whole-wheat~^~ROLLS,DINNER,WHOLE-WHEAT~^^^~Y~^^0^^0.00^^^ -~18349~^~1800~^~Rolls, french~^~ROLLS,FRENCH~^^^~Y~^^0^^5.80^3.90^8.70^4.10 -~18350~^~1800~^~Rolls, hamburger or hotdog, plain~^~ROLLS,HAMBURGER OR HOTDOG,PLN~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18351~^~1800~^~Rolls, hamburger or hotdog, mixed-grain~^~ROLLS,HAMBURGER OR HOTDOG,MIXED-GRAIN~^^^~Y~^^0^^5.80^3.80^8.80^3.90 -~18353~^~1800~^~Rolls, hard (includes kaiser)~^~ROLLS,HARD (INCL KAISER)~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18354~^~1800~^~Strudel, apple~^~STRUDEL,APPLE~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18355~^~1800~^~Sweet rolls, cheese~^~SWEET ROLLS,CHEESE~^^^^^0^^6.00^4.00^8.80^3.90 -~18356~^~1800~^~Sweet rolls, cinnamon, commercially prepared with raisins~^~SWEET ROLLS,CINN,COMMLY PREP W/RAISINS~^^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18357~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG~^^^^^0^^5.70^4.00^8.80^4.00 -~18358~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting, baked~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG,BKD~^^^^^0^^^^^ -~18360~^~1800~^~Taco shells, baked~^~TACO SHELLS, BAKED~^^^~Y~^^0^^^^^ -~18361~^~1800~^~Toaster pastries, brown-sugar-cinnamon~^~TOASTER PASTRIES,BROWN-SUGAR-CINNAMON~^^^^^0^^5.80^4.10^8.80^3.90 -~18362~^~1800~^~Toaster pastries, fruit (includes apple, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT~^^^~Y~^^0^^6.25^^^ -~18363~^~1800~^~Tortillas, ready-to-bake or -fry, corn~^~TORTILLAS,RTB OR -FRY,CORN~^^^~Y~^^0^^6.20^2.70^8.40^4.00 -~18364~^~1800~^~Tortillas, ready-to-bake or -fry, flour, refrigerated~^~TORTILLAS,RTB OR -FRY,FLR,REFR~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18365~^~1800~^~Waffles, plain, frozen, ready-to-heat~^~WAFFLES,PLN,FRZ,RTH~^^^^^0^^^^^ -~18367~^~1800~^~Waffles, plain, prepared from recipe~^~WAFFLES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18368~^~1800~^~Wonton wrappers (includes egg roll wrappers)~^~WONTON WRAPPERS (INCL EGG ROLL WRAPPERS)~^^^^^0^^0.00^^^ -~18369~^~1800~^~Leavening agents, baking powder, double-acting, sodium aluminum sulfate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,NA AL SULFATE~^^^~Y~^^0^^6.20^1.50^8.40^1.90 -~18370~^~1800~^~Leavening agents, baking powder, double-acting, straight phosphate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,STRAIGHT PO4~^^^~Y~^^0^^6.20^1.80^8.40^2.10 -~18371~^~1800~^~Leavening agents, baking powder, low-sodium~^~LEAVENING AGENTS,BAKING PDR,LOW-SODIUM~^^^~Y~^^0^^6.20^2.70^8.40^2.00 -~18372~^~1800~^~Leavening agents, baking soda~^~LEAVENING AGENTS,BAKING SODA~^^^~Y~^^0^^0.00^^^ -~18373~^~1800~^~Leavening agents, cream of tartar~^~LEAVENING AGENTS,CRM OF TARTAR~^^^~Y~^^0^^6.20^3.50^8.40^4.20 -~18374~^~1800~^~Leavening agents, yeast, baker's, compressed~^~LEAVENING AGENTS,YEAST,BAKER'S,COMPRESSED~^^^~Y~^^0^^6.20^3.00^8.40^3.40 -~18375~^~1800~^~Leavening agents, yeast, baker's, active dry~^~LEAVENING AGENTS,YEAST,BAKER'S,ACTIVE DRY~^^^~Y~^^0^^6.25^3.00^8.40^3.40 -~18376~^~1800~^~Bread, crumbs, dry, grated, seasoned~^~BREAD,CRUMBS,DRY,GRATED,SEASONED~^^^~Y~^^0^^5.80^4.00^8.40^4.10 -~18377~^~1800~^~Cookies, oatmeal, prepared from recipe, without raisins~^~COOKIES,OATMEAL,PREP FROM RECIPE,WO/RAISINS~^^^^^0^^0.00^^^ -~18378~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with butter~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/BUTTER~^^^^^0^^0.00^^^ -~18383~^~1800~^~Bread, protein, (includes gluten), toasted~^~BREAD,PROT,(INCLUDES GLUTEN),TSTD~^^^~Y~^^0^^0.00^^^ -~18384~^~1800~^~Bread, rice bran, toasted~^~BREAD,RICE BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18386~^~1800~^~Muffins, blueberry, toaster-type, toasted~^~MUFFINS,BLUEBERRY,TOASTER-TYPE,TSTD~^^^^^0^^0.00^^^ -~18388~^~1800~^~Muffins, wheat bran, toaster-type with raisins, toasted~^~MUFFINS,WHEAT BRAN,TOASTER-TYPE W/RAISINS,TSTD~^^^^^0^^0.00^^^ -~18390~^~1800~^~Pancakes, buttermilk, prepared from recipe~^~PANCAKES,BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18396~^~1800~^~Rolls, dinner, plain, prepared from recipe, made with low fat (2%) milk~^~ROLLS,DINNER,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18399~^~1800~^~Pie crust, cookie-type, prepared from recipe, graham cracker, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FR RECIPE,GRAHAM CRACKER,CHILLED~^^^^^0^^0.00^^^ -~18400~^~1800~^~Crackers, matzo, egg and onion~^~CRACKERS,MATZO,EGG&ONION~^^^^^0^^5.80^4.10^8.70^4.10 -~18401~^~1800~^~Pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FROM RECIPE,VANILLA WAFER,CHILLED~^^^~Y~^^0^^0.00^^^ -~18402~^~1800~^~Pie crust, standard-type, prepared from recipe, unbaked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,UNBAKED~^^^~Y~^^0^^0.00^^^ -~18403~^~1800~^~Waffles, plain, frozen, ready -to-heat, toasted~^~WAFFLES,PLN,FRZ,READY -TO-HEAT,TSTD~^^^~Y~^^0^^^^^ -~18406~^~1800~^~Bagels, plain, enriched, without calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,ENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^6.10^4.20^8.40^4.10 -~18407~^~1800~^~Bagels, plain, unenriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,W/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.00^8.40^4.10 -~18408~^~1800~^~Bagels, plain, unenriched, without calcium propionate(includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.10^8.80^4.00 -~18412~^~1800~^~Bread, cornbread, dry mix, unenriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,UNENR (INCL CORN MUFFIN MIX)~^^^^^0^^5.70^4.00^8.40^4.10 -~18413~^~1800~^~Bread, pita, white, unenriched~^~BREAD,PITA,WHITE,UNENR~^^^^^0^^5.70^4.00^8.40^4.10 -~18414~^~1800~^~Bread, raisin, unenriched~^~BREAD,RAISIN,UNENRICHED~^^^^^0^^5.80^3.90^8.80^3.90 -~18416~^~1800~^~Bread, white, commercially prepared, low sodium, no salt~^~BREAD,WHITE,COMMLY PREP,LO NA,NO SALT~^^^~Y~^^0^^5.70^3.90^8.70^4.10 -~18417~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, unenriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,UNENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18418~^~1800~^~Cake, pound, commercially prepared, other than all butter, unenriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,UNENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18419~^~1800~^~Cake, pudding-type, white, unenriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,UNENR,DRY MIX~^^^^^0^^5.80^4.10^8.80^4.00 -~18420~^~1800~^~Cake, yellow, unenriched, dry mix~^~CAKE,YEL,UNENR,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18421~^~1800~^~Cookies, butter, commercially prepared, unenriched~^~COOKIES,BUTTER,COMMLY PREP,UNENR~^^^^^0^^5.90^4.20^8.80^4.00 -~18422~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, unenriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,UNENR~^^^^^0^^5.80^3.90^8.80^3.90 -~18423~^~1800~^~Cookies, ladyfingers, without lemon juice and rind~^~COOKIES,LADYFINGERS,WO/LEMON JUC&RIND~^^^^^0^^0.00^^^ -~18424~^~1800~^~Crackers, melba toast, plain, without salt~^~CRACKERS,MELBA TOAST,PLN,WO/SALT~^^^^^0^^5.70^4.00^8.60^4.10 -~18425~^~1800~^~Crackers, saltines, low salt (includes oyster, soda, soup)~^~CRACKERS,SALTINES,LO SALT (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18426~^~1800~^~Crackers, saltines, unsalted tops (includes oyster, soda, soup)~^~CRACKERS,SALTINES,UNSALTED TOPS (INCL OYSTER,SODA,SOUP)~^^^^^0^^5.70^4.00^8.80^4.10 -~18427~^~1800~^~Crackers, standard snack-type, regular, low salt~^~CRACKERS,STD SNACK-TYPE,REG,LO SALT~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18428~^~1800~^~Crackers, wheat, low salt~^~CRACKERS,WHEAT,LOW SALT~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18429~^~1800~^~Crackers, whole-wheat, low salt~^~CRACKERS,WHOLE-WHEAT,LO SALT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18430~^~1800~^~Danish pastry, cinnamon, unenriched~^~DANISH PASTRY,CINN,UNENR~^^^^^0^^5.90^4.00^8.80^4.00 -~18431~^~1800~^~Danish pastry, fruit, unenriched (includes apple, cinnamon, raisin, strawberry)~^~DANISH PASTRY,FRUIT,UNENR (INCL APPL,CINN,RAISIN,STRAWBERRY)~^^^^^0^^5.80^4.10^8.80^3.90 -~18432~^~1800~^~Bread, white, commercially prepared, toasted, low sodium no salt~^~BREAD,WHITE,COMMLY PREP,TSTD,LO NA NO SALT~^^^^^0^^5.70^3.90^8.70^4.10 -~18433~^~1800~^~Danish pastry, lemon, unenriched~^~DANISH PASTRY,LEMON,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18434~^~1800~^~Crackers, cheese, low sodium~^~CRACKERS,CHS,LO NA~^^^~Y~^^0^^^^^ -~18435~^~1800~^~Danish pastry, raspberry, unenriched~^~DANISH PASTRY,RASPBERRY,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18436~^~1800~^~Doughnuts, yeast-leavened, glazed, unenriched (includes honey buns)~^~DOUGHNUTS,YEAST-LEAVENED,GLAZED,UNENR (INCL HONEY BUNS)~^~donut~^^^^0^^5.80^3.90^8.80^4.00 -~18437~^~1800~^~English muffins, plain, enriched, without calcium propionate(includes sourdough)~^~ENGLISH MUFFINS,PLN,ENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18438~^~1800~^~English muffins, plain, unenriched, with calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,W/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18439~^~1800~^~English muffins, plain, unenriched, without calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18443~^~1800~^~Pie, apple, commercially prepared, unenriched flour~^~PIE,APPL,COMMLY PREP,UNENR FLR~^^^^^0^^5.70^4.00^8.80^3.90 -~18444~^~1800~^~Pie, fried pies, cherry~^~PIE,FRIED PIES,CHERRY~^^^^^0^^5.80^4.00^8.80^3.80 -~18445~^~1800~^~Pie, fried pies, lemon~^~PIE,FRIED PIES,LEMON~^^^^^0^^5.80^4.00^8.80^3.80 -~18446~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, unenriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,UNENR~^^^^^0^^5.70^4.10^8.90^4.10 -~18447~^~1800~^~Popovers, dry mix, unenriched~^~POPOVERS,DRY MIX,UNENR~^^^^^0^^5.70^4.10^8.70^4.10 -~18448~^~1800~^~Taco shells, baked, without added salt~^~TACO SHELLS,BKD,WO/ SALT~^^^^^0^^6.20^2.70^8.80^4.00 -~18449~^~1800~^~Tortillas, ready-to-bake or -fry, corn, without added salt~^~TORTILLAS,RTB OR -FRY,CORN,WO/ SALT~^^^^^0^^6.20^2.70^8.40^4.00 -~18450~^~1800~^~Tortillas, ready-to-bake or -fry, flour, without added calcium~^~TORTILLAS,RTB OR -FRY,FLR,WO/ CA~^^^^^0^^5.70^4.00^8.80^4.10 -~18451~^~1800~^~Cake, pound, commercially prepared, fat-free~^~CAKE,POUND,COMMLY PREP,FAT-FREE~^^^~Y~^^0^^6.10^4.20^8.40^4.10 -~18453~^~1800~^~Cake, yellow, light, dry mix~^~CAKE,YEL,LT,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18457~^~1800~^~Crackers, saltines, fat-free, low-sodium~^~CRACKERS,SALTINES,FAT-FREE,LOW-SODIUM~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18459~^~1800~^~Tart, breakfast, low fat~^~TART,BRKFST,LOFAT~^^^~Y~^^0^^^^^ -~18513~^~1800~^~Archway Home Style Cookies, Sugar Free Oatmeal~^~ARCHWAY HOME STYLE COOKIES,SUGAR FREE OATMEAL~^^~Archway Cookies~^^^0^^^^^ -~18522~^~1800~^~Archway Home Style Cookies, Chocolate Chip Ice Box~^~ARCHWAY HOME STYLE COOKIES,CHOC CHIP ICE BOX~^^~Archway Cookies~^^^0^^6.25^^^ -~18524~^~1800~^~Archway Home Style Cookies, Coconut Macaroon~^~ARCHWAY HOME STYLE COOKIES,COCNT MACAROON~^^~Archway Cookies~^^^0^^6.25^^^ -~18527~^~1800~^~Archway Home Style Cookies, Date Filled Oatmeal~^~ARCHWAY HOME STYLE COOKIES,DATE FILLED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18528~^~1800~^~Archway Home Style Cookies, Dutch Cocoa~^~ARCHWAY HOME STYLE COOKIES,DUTCH COCOA~^^~Archway Cookies~^^^0^^6.25^^^ -~18529~^~1800~^~Archway Home Style Cookies, Frosty Lemon~^~ARCHWAY HOME STYLE COOKIES,FROSTY LEMON~^^~Archway Cookies~^^^0^^^^^ -~18532~^~1800~^~Archway Home Style Cookies, Iced Molasses~^~ARCHWAY HOME STYLE COOKIES,ICED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18533~^~1800~^~Archway Home Style Cookies, Iced Oatmeal~^~ARCHWAY HOME STYLE COOKIES,ICED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18535~^~1800~^~Archway Home Style Cookies, Molasses~^~ARCHWAY HOME STYLE COOKIES,MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18537~^~1800~^~Archway Home Style Cookies, Oatmeal~^~ARCHWAY HOME STYLE COOKIES,OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18538~^~1800~^~Archway Home Style Cookies, Oatmeal Raisin~^~ARCHWAY HOME STYLE COOKIES,OATMEAL RAISIN~^^~Archway Cookies~^^^0^^6.25^^^ -~18539~^~1800~^~Archway Home Style Cookies, Old Fashioned Molasses~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18540~^~1800~^~Archway Home Style Cookies, Old Fashioned Windmill Cookies~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED WINDMILL COOKIES~^^~Archway Cookies~^^^0^^6.25^^^ -~18541~^~1800~^~Archway Home Style Cookies, Peanut Butter~^~ARCHWAY HOME STYLE COOKIES,PNUT BUTTER~^^~Archway Cookies~^^^0^^^^^ -~18544~^~1800~^~Archway Home Style Cookies, Raspberry Filled~^~ARCHWAY HOME STYLE COOKIES,RASPBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18547~^~1800~^~Archway Home Style Cookies, Strawberry Filled~^~ARCHWAY HOME STYLE COOKIES,STRAWBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18562~^~1800~^~Archway Home Style Cookies, Reduced Fat Ginger Snaps~^~ARCHWAY HOME STYLE COOKIES,RED FAT GINGER SNAPS~^^~Archway Cookies~^^^0^^6.25^^^ -~18566~^~1800~^~Artificial Blueberry Muffin Mix, dry~^~ARTIFICIAL BLUEBERRY MUFFIN MIX,DRY~^^^^^0^^^^^ -~18567~^~1800~^~Kraft, Stove Top Stuffing Mix Chicken Flavor~^~KRAFT,STOVE TOP STUFFING MIX CHICK FLAVOR~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18603~^~1800~^~George Weston Bakeries, Brownberry Sage and Onion Stuffing Mix, dry~^~GEORGE WESTON BAKERIES,BROWNBERRY SAGE & ONION STFFNG MX,DRY~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18608~^~1800~^~Keebler, Keebler Chocolate Graham SELECTS~^~KEEBLER,KEEBLER CHOC GRAHAM SELECTS~^^~Keebler, Co.~^^^0^^^^^ -~18610~^~1800~^~Continental Mills, Krusteaz Almond Poppyseed Muffin Mix, Artificially Flavored, dry~^~CNTNNTL MLLS,KRUSTEAZ ALMD POPPYSD MFFN MX,ARTTFCL FLAV,DRY~^^~Continental Mills, Inc.~^^^0^^6.25^^^ -~18612~^~1800~^~Mckee Baking, Little Debbie Nutty Bars, Wafers with Peanut Butter, Chocolate Covered~^~MCKEE BKING,LTTLE DEBBIE NTTY BRS,WFRS W PNT BTTR,CHC CVERED~^^~McKee Baking, Co.~^^^0^^^^^ -~18614~^~1800~^~Martha White Foods, Martha White's Chewy Fudge Brownie Mix, dry~^~MARTHA WHITE FOODS,MRTHA WHITE'S CHEWY FUDGE BROWNIE MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18615~^~1800~^~Martha White Foods, Martha White's Buttermilk Biscuit Mix, dry~^~MARTHA WHITE FOODS,MARTHA WHITE'S BTTRMLK BISCUIT MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18616~^~1800~^~Mission Foods, Mission Flour Tortillas, Soft Taco, 8 inch~^~MISSION FOODS,MISSION FLR TORTILLAS,SOFT TACO,8 INCH~^^~Mission Foods~^^^0^^^^^ -~18617~^~1800~^~Nabisco, Nabisco Grahams Crackers~^~NABISCO,NABISCO GRAHAMS CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18619~^~1800~^~Nabisco, Nabisco Oreo Crunchies, Cookie Crumb Topping~^~NABISCO,NABISCO OREO CRUNCHIES,COOKIE CRUMB TOPPING~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18621~^~1800~^~Nabisco, Nabisco Ritz Crackers~^~NABISCO,NABISCO RITZ CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18629~^~1800~^~Pillsbury, Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY,BTTRMLK BISCUITS,ART FLAVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18630~^~1800~^~Pillsbury, Chocolate Chip Cookies, refrigerated dough~^~PILLSBURY,CHOC CHIP COOKIES,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18631~^~1800~^~Pillsbury, Crusty French Loaf, refrigerated dough~^~PILLSBURY,CRUSTY FRENCH LOAF,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18633~^~1800~^~Pillsbury Grands, Buttermilk Biscuits, refrigerated dough~^~PILLSBURY GRANDS,BTTRMLK BISCUITS,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18634~^~1800~^~Pillsbury Golden Layer Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY GOLDEN LAYER BTTRMLK BISCUITS,ART FLVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18635~^~1800~^~Pillsbury, Cinnamon Rolls with Icing, refrigerated dough~^~PILLSBURY,CINN ROLLS W/ ICING,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18637~^~1800~^~Kraft Foods, Shake N Bake Original Recipe, Coating for Pork, dry~^~KRAFT FOODS,SHKE N BKE ORIGINAL RECIPE,COATING FOR PORK,DRY~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18639~^~1800~^~George Weston Bakeries, Thomas English Muffins~^~GEORGE WESTON BAKERIES,THOMAS ENG MUFFINS~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18640~^~1800~^~Heinz, Weight Watcher, Chocolate Eclair, frozen~^~HEINZ,WEIGHT WATCHER,CHOC ECLAIR,FRZ~^^~H.J. Heinz, Co.~^^^0^^6.25^^^ -~18641~^~1800~^~Interstate Brands Corp, Wonder Hamburger Rolls~^~INTERSTATE BRANDS CORP,WONDER HAMBURGER ROLLS~^^~Interstate Bakeries Corporation~^^^0^^^^^ -~18651~^~1800~^~Nabisco, Nabisco Snackwell's Fat Free Devil's Food Cookie Cakes~^~NABISCO,NABISCO SNACKWELL'S FAT FREE DEVIL'S FD COOKIE CAKES~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18927~^~1800~^~Crackers, cheese, sandwich-type with cheese filling~^~CRACKERS,CHS,SANDWICH-TYPE W/ CHS FILLING~^^^^^0^^^^^ -~18932~^~1800~^~Waffles, buttermilk, frozen, ready-to-heat~^~WAFFLES,BTTRMLK,FRZ,RTH~^^^^^0^^^^^ -~18933~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, toasted~^~WAFFLE,BTTRMLK,FRZ,RTH,TSTD~^^^~Y~^^0^^^^^ -~18934~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, microwaved~^~WAFFLE,BTTRMLK,FRZ,RTH,MICROWAVED~^^^^^0^^^4.00^9.00^4.00 -~18935~^~1800~^~Waffle, plain, frozen, ready-to-heat, microwave~^~WAFFLE,PLN,FRZ,RTH,MICROWAVE~^^^^^0^^^^^ -~18936~^~1800~^~Pancakes, plain, frozen, ready-to-heat, microwave (includes buttermilk)~^~PANCAKES,PLN,FRZ,RTH,MICROWAVE(INC BUTTMLK)~^^^^^0^^^^^ -~18938~^~1800~^~Toaster Pastries, fruit, frosted (include apples, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT,FRSTD~^^^~Y~^^0^^^^^ -~18939~^~1800~^~Toaster pastries, fruit, toasted (include apple, blueberry, cherry, strawberry)~^~TSTR PSTRS,FRT,TSTD (INCL APPL,BLUEBERRY,CHERRY,STRAWBERRY)~^^^^^0^^^^^ -~18940~^~1800~^~Muffin, blueberry, commercially prepared, low-fat~^~MUFFIN,BLUEBERRY,COMMLY PREP,LOW-FAT~^^^~Y~^^0^^^^^ -~18942~^~1800~^~Pie Crust, Cookie-type, Graham Cracker, Ready Crust~^~PIE CRUST,COOKIE-TYPE,GRAHAM CRACKER,READY CRUST~^^^~Y~^^0^^^^^ -~18943~^~1800~^~Pie Crust, Cookie-type, Chocolate, Ready Crust~^~PIE CRUST,COOKIE-TYPE,CHOC,READY CRUST~^^^~Y~^^0^^^^^ -~18944~^~1800~^~Pie, Dutch Apple, Commercially Prepared~^~PIE,DUTCH APPL,COMMLY PREP~^^^^^0^^^^^ -~18945~^~1800~^~Pie crust, deep dish, frozen, unbaked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,UNBAKED,MADE W/ ENR FLR~^^^^^0^^^^^ -~18946~^~1800~^~Pie crust, refrigerated, regular, baked~^~PIE CRUST,REFR,REG,BKD~^^^^^0^^^^^ -~18947~^~1800~^~Pie crust, deep dish, frozen, baked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,BKD,MADE W/ ENR FLR~^^^^^0^^^^^ -~18948~^~1800~^~Pie crust, refrigerated, regular, unbaked~^~PIE CRUST,REFR,REG,UNBAKED~^^^^^0^^^^^ -~18949~^~1800~^~Crackers, whole-wheat, reduced fat~^~CRACKERS,WHOLE-WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18950~^~1800~^~Crackers, wheat, reduced fat~^~CRACKERS,WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18951~^~1800~^~Waffles, chocolate chip, frozen, ready-to-heat~^~WAFFLES,CHOC CHIP,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~18952~^~1800~^~Tostada shells, corn~^~TOSTADA SHELLS,CORN~^~Latino food~^^^^0^^^^^ -~18953~^~1800~^~Bread, salvadoran sweet cheese (quesadilla salvadorena)~^~BREAD,SALVADORAN SWT CHS (QUESADILLA SALVADORENA)~^~Latino food~^^~Y~^^0^^6.25^^^ -~18954~^~1800~^~Bread, pound cake type, pan de torta salvadoran~^~BREAD,POUND CAKE TYPE,PAN DE TORTA SALVADORAN~^~Latino food~^^^^0^^^^^ -~18955~^~1800~^~Bread, pan dulce, sweet yeast bread~^~BREAD,PAN DULCE,SWT YEAST BREAD~^~Latino food~^^~Y~^^0^^^^^ -~18956~^~1800~^~Keikitos (muffins), Latino bakery item~^~KEIKITOS (MUFFINS),LATINO BAKERY ITEM~^^^^^0^^6.25^^^ -~18957~^~1800~^~Cake, pound, Bimbo Bakeries USA, Panque Casero, home baked style~^~CAKE,POUND,BIMBO BAKERIES USA,PANQUE CASERO,HOME BKD STYLE~^~Latino food~^~Bimbo Bakeries USA~^^^0^^6.25^4.00^9.00^4.00 -~18958~^~1800~^~Pan Dulce, La Ricura, Salpora de Arroz con Azucar, cookie-like, contains wheat flour and rice flour~^~PAN DULCE,LA RICURA,SLPORA DE ARROZ CON AZUCAR, WHEAT&RC FLR~^~Latino rice cookies~^~Quesos La Ricura, Ltd.~^^^0^^6.25^^^ -~18959~^~1800~^~Pastry, Pastelitos de Guava (guava pastries)~^~PASTRY,PASTELITOS DE GUAVA (GUAVA PASTRIES)~^~Latino food, pastelios de guava, turnovers~^^^^0^^^^^ -~18960~^~1800~^~Crackers, snack, Goya Crackers~^~CRACKERS,SNACK,GOYA CRACKERS~^~Latino food~^^^^0^^6.25^^^ -~18961~^~1800~^~Crackers, cream, Gamesa Sabrosas~^~CRACKERS,CRM,GAMESA SABROSAS~^~Latino food~^~Pepsico Mexico~^^^0^^^^^ -~18962~^~1800~^~Crackers, cream, La Moderna Rikis Cream Crackers~^~CRACKERS,CRM,LA MODERNA RIKIS CRM CRACKERS~^^^^^0^^^^^ -~18963~^~1800~^~Garlic bread, frozen~^~GARLIC BREAD,FRZ~^^^~Y~^^0^^^^^ -~18964~^~1800~^~Cinnamon buns, frosted (includes honey buns)~^~CINNAMON BUNS,FRSTD (INCLUDES HONEY BUNS)~^^^~Y~^^0^^^^^ -~18965~^~1800~^~Crackers, cheese, reduced fat~^~CRACKERS,CHS,RED FAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18966~^~1800~^~Crackers, saltines, whole wheat (includes multi-grain)~^~CRACKERS,SALTINES,WHL WHEAT (INCLUDES MULTI-GRAIN)~^^^~Y~^^0^^^^^ -~18967~^~1800~^~Bread, white wheat~^~BREAD,WHITE WHEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18968~^~1800~^~Bagels, wheat~^~BAGELS,WHEAT~^^^~Y~^^0^^^^^ -~18969~^~1800~^~Cream puff, eclair, custard or cream filled, iced~^~CREAM PUFF,ECLAIR,CUSTARD OR CRM FILLED,ICED~^^^~Y~^^0^^^^^ -~18970~^~1800~^~Tortillas, ready-to-bake or -fry, flour, shelf stable~^~TORTILLAS,RTB OR -FRY,FLR,SHELF STABLE~^^^~Y~^^0^^6.25^^^ -~18971~^~1800~^~Bread, potato~^~BREAD,POTATO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18972~^~1800~^~Bread, cheese~^~BREAD,CHS~^^^~Y~^^0^^^^^ -~18973~^~1800~^~Focaccia, Italian flatbread, plain~^~FOCACCIA,ITALIAN FLATBREAD,PLN~^^^~Y~^^0^^^^^ -~19000~^~1900~^~SCHIFF,TIGER'S MILK BAR~^~SCHIFF,TIGER'S MILK BAR~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19001~^~1900~^~Candies, TOBLERONE, milk chocolate with honey and almond nougat~^~CANDIES,TOBLERONE,MILK CHOC W/ HONEY & ALMOND NOUGAT~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19002~^~2500~^~Snacks, beef jerky, chopped and formed~^~BEEF JERKY,CHOPD&FORMED~^^^~Y~^^0^^6.25^^^ -~19003~^~2500~^~Snacks, corn-based, extruded, chips, plain~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,PLN~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19004~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor~^~CORN-BASED,EXTRUDED,CHIPS,BARBECUE-FLAVOR~^^^^^0^^6.10^2.70^8.70^3.90 -~19005~^~2500~^~Snacks, corn-based, extruded, cones, plain~^~CORN-BASED,EXTRUDED,CONES,PLN~^^^^^0^^6.20^3.50^8.60^4.10 -~19007~^~2500~^~Snacks, corn-based, extruded, onion-flavor~^~SNACKS,CORN-BASED,EXTRUDED,ONION-FLAVOR~^^^~Y~^^0^^6.20^3.50^8.80^4.20 -~19008~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor~^~CORN-BASED,EXTRUDED,PUFFS OR TWISTS,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^4.00^8.80^4.10 -~19009~^~2500~^~Snacks, KRAFT, CORNNUTS, plain~^~CORNNUTS,PLAIN~^^~Kraft Foods, Inc.~^~Y~^^0^^6.25^2.70^8.70^4.00 -~19010~^~2500~^~Snacks, crisped rice bar, chocolate chip~^~CRISPED RICE BAR,CHOC CHIP~^^^^^0^^5.80^3.40^8.60^3.70 -~19013~^~1900~^~Snacks, fruit leather, pieces~^~FRUIT LEATHER,PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19014~^~1900~^~Snacks, fruit leather, rolls~^~FRUIT LEATHER,ROLLS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19015~^~2500~^~Snacks, granola bars, hard, plain~^~GRANOLA BARS,HARD,PLAIN~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~19016~^~2500~^~Snacks, granola bars, hard, almond~^~GRANOLA BARS,HARD,ALMOND~^^^^^0^^5.70^3.50^8.60^4.00 -~19017~^~2500~^~Snacks, granola bars, hard, chocolate chip~^~GRANOLA BARS,HARD,CHOC CHIP~^^^^^0^^5.80^3.40^8.50^3.80 -~19018~^~1900~^~Fruit syrup~^~FRUIT SYRUP~^^^~Y~^^0^^6.25^^^ -~19020~^~2500~^~Snacks, granola bars, soft, uncoated, plain~^~GRANOLA BARS,SOFT,UNCOATED,PLN~^^^^^0^^5.90^3.50^8.60^4.00 -~19021~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER~^^^^^0^^5.60^3.50^8.40^4.00 -~19022~^~2500~^~Snacks, granola bars, soft, uncoated, raisin~^~GRANOLA BARS,SOFT,UNCOATED,RAISIN~^^^^^0^^5.80^3.50^8.40^4.10 -~19024~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, chocolate chip~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,CHOC CHIP~^^^^^0^^6.10^3.50^8.60^3.60 -~19025~^~1900~^~Candies, honey-combed, with peanut butter~^~CANDIES,HONEY-COMBED,W/ PNUT BUTTER~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~19026~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, peanut butter~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,PNUT BUTTER~^^^~Y~^^0^^5.90^3.70^8.60^3.80 -~19027~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter and chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER&CHOC CHIP~^^^^^0^^5.60^3.40^8.40^3.70 -~19029~^~1900~^~Topping, SMUCKER'S MAGIC SHELL~^~TOPPING,SMUCKER'S MAGIC SHELL~^^^~Y~^^0^^6.25^^^ -~19030~^~1900~^~Syrup, fruit flavored~^~SYRUP,FRUIT FLAV~^^^~Y~^^0^^6.25^^^ -~19031~^~2500~^~Snacks, oriental mix, rice-based~^~ORIENTAL MIX,RICE-BASED~^^^~Y~^^0^^0.00^^^ -~19034~^~2500~^~Snacks, popcorn, air-popped~^~POPCORN,AIR-POPPED~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~19035~^~2500~^~Snacks, popcorn, oil-popped, microwave, regular flavor, no trans fat~^~SNACKS,POPCORN,OIL-POPPED,MICROWAVE,REG FLAVOR,NO TRANS FAT~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19036~^~2500~^~Snacks, popcorn, cakes~^~POPCORN,CAKES~^^^~Y~^^0^^6.10^3.00^8.40^4.10 -~19038~^~2500~^~Snacks, popcorn, caramel-coated, with peanuts~^~POPCORN,CARAMEL-COATED,W/PNUTS~^^^~Y~^^0^^5.90^3.00^8.50^3.90 -~19039~^~2500~^~Snacks, popcorn, caramel-coated, without peanuts~^~POPCORN,CARAMEL-COATED,WO/PNUTS~^^^~Y~^^0^^6.20^2.70^8.80^3.90 -~19040~^~2500~^~Snacks, popcorn, cheese-flavor~^~POPCORN,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^3.00^8.80^4.00 -~19041~^~2500~^~Snacks, pork skins, plain~^~PORK SKINS,PLAIN~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~19042~^~2500~^~Snacks, potato chips, barbecue-flavor~^~POTATO CHIPS,BARBECUE-FLAVOR~^^^~Y~^^0^^6.10^2.40^8.70^3.60 -~19043~^~2500~^~Snacks, potato chips, sour-cream-and-onion-flavor~^~POTATO CHIPS,SOUR-CREAM-AND-ONION-FLAVOR~^^^^^0^^6.30^3.90^8.80^3.90 -~19045~^~2500~^~Snacks, potato chips, made from dried potatoes, reduced fat~^~POTATO CHIPS,MADE FROM DRIED POTATOES,LT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19046~^~2500~^~Snacks, potato chips, made from dried potatoes, sour-cream and onion-flavor~^~POTATO CHIPS,MADE FR DRIED POTATOES,SOUR-CREAM&ONION-FLAVOR~^^^^^0^^6.30^3.30^8.80^3.90 -~19047~^~2500~^~Snacks, pretzels, hard, plain, salted~^~PRETZELS,HARD,PLN,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19048~^~2500~^~Snacks, pretzels, hard, confectioner's coating, chocolate-flavor~^~PRETZELS,HARD,CONFECTIONER'S COATING,CHOCOLATE-FLAVOR~^^^~Y~^^0^^5.80^3.80^8.70^4.00 -~19049~^~2500~^~Snacks, M&M MARS, COMBOS Snacks Cheddar Cheese Pretzel~^~SNACKS,M&M MARS,COMBOS SNACKS CHEDDAR CHS PRETZEL~^^^~Y~^^0^^6.25^^^ -~19050~^~2500~^~Snacks, pretzels, hard, whole-wheat including both salted and unsalted~^~SNACKS,PRETZELS,HARD,WHOLE-WHEAT INCL BOTH SALTED & UNSALTED~^^^^^0^^5.80^3.50^8.50^3.70 -~19051~^~2500~^~Snacks, rice cracker brown rice, plain~^~SNACKS,RICE CRACKER BROWN RICE,PLN~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19052~^~2500~^~Snacks, rice cakes, brown rice, buckwheat~^~RICE CAKES,BROWN RICE,BUCKWHEAT~^^^^^0^^6.10^3.40^8.40^4.00 -~19053~^~2500~^~Snacks, rice cakes, brown rice, sesame seed~^~RICE CAKES,BROWN RICE,SESAME SD~^^^^^0^^5.90^3.10^8.40^4.10 -~19056~^~2500~^~Snacks, tortilla chips, plain, white corn, salted~^~TORTILLA CHIPS,PLAIN~^^^~Y~^^0^^6.20^2.70^8.80^4.00 -~19057~^~2500~^~Snacks, tortilla chips, nacho cheese~^~Snacks, tortilla chips, nacho cheese~^^^~Y~^^0^^6.25^^^ -~19058~^~2500~^~Snacks, tortilla chips, ranch-flavor~^~SNACKS,TORTILLA CHIPS,RANCH-FLAVOR~^^^^^0^^6.25^^^ -~19059~^~2500~^~Snacks, trail mix, regular~^~TRAIL MIX,REGULAR~^^^^^0^^5.40^3.50^8.40^3.70 -~19061~^~2500~^~Snacks, trail mix, tropical~^~TRAIL MIX,TROPICAL~^^^^^0^^0.00^^^ -~19062~^~2500~^~Snacks, trail mix, regular, with chocolate chips, salted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,SALTED NUTS&SEEDS~^^^~Y~^^0^^5.50^3.50^8.40^3.70 -~19063~^~2500~^~Snacks, tortilla chips, taco-flavor~^~TORTILLA CHIPS,TACO-FLAVOR~^^^^^0^^6.20^2.90^8.70^3.90 -~19064~^~1900~^~Candies, TOOTSIE ROLL, chocolate-flavor roll~^~CANDIES,TOOTSIE ROLL,CHOCOLATE-FLAVOR ROLL~^^^^^0^^6.25^4.00^9.00^4.00 -~19065~^~1900~^~Candies, ALMOND JOY Candy Bar~^~CANDIES,ALMOND JOY CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19067~^~1900~^~Candies, TWIZZLERS CHERRY BITES~^~CANDIES,TWIZZLERS CHERRY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19068~^~1900~^~Candies, NESTLE, BIT-O'-HONEY Candy Chews~^~CANDIES,NESTLE,BIT-O'-HONEY CANDY CHEWS~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19069~^~1900~^~Candies, NESTLE, BUTTERFINGER Bar~^~CANDIES,NESTLE,BUTTERFINGER BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.27^8.79^3.87 -~19070~^~1900~^~Candies, butterscotch~^~CANDIES,BUTTERSCOTCH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19071~^~1900~^~Candies, carob, unsweetened~^~CANDIES,CAROB,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19074~^~1900~^~Candies, caramels~^~CANDIES,CARAMELS~^^^~Y~^^0^^6.40^4.30^8.60^3.80 -~19075~^~1900~^~Candies, CARAMELLO Candy Bar~^~CANDIES,CARAMELLO CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19076~^~1900~^~Candies, caramels, chocolate-flavor roll~^~CANDIES, CARAMELS, CHOCOLATE-FLAVOR ROLL~^^^~Y~^^0^^6.25^^^ -~19077~^~1900~^~Baking chocolate, unsweetened, liquid~^~BAKING CHOC,UNSWTND,LIQ~^^^^^0^^5.63^1.83^8.40^1.33 -~19078~^~1900~^~Baking chocolate, unsweetened, squares~^~Baking chocolate, unsweetened, squares~^^^~Y~^^0^^^^^ -~19079~^~1900~^~Candies, confectioner's coating, yogurt~^~CANDIES,CONFECTIONER'S COATING,YOGURT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19080~^~1900~^~Candies, semisweet chocolate~^~CANDIES,SEMISWEET CHOC~^^^~Y~^^0^^5.63^1.83^8.50^3.40 -~19081~^~1900~^~Candies, sweet chocolate~^~CANDIES,SWEET CHOCOLATE~^^^~Y~^^0^^5.63^1.83^8.60^3.40 -~19083~^~1900~^~Candies, sweet chocolate coated fondant~^~CANDIES,SWT CHOC COATD FONDANT~^^^~Y~^^0^^5.90^3.10^8.40^3.50 -~19084~^~1900~^~Candies, HERSHEY'S GOLDEN ALMOND SOLITAIRES~^~CANDIES,HERSHEY'S GOLDEN ALMOND SOLITAIRES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19085~^~1900~^~Candies, confectioner's coating, butterscotch~^~CANDIES,CONFECTIONER'S COATING,BUTTERSCOTCH~^^^~Y~^^0^^6.38^4.00^9.00^4.00 -~19086~^~1900~^~Candies, confectioner's coating, peanut butter~^~CANDIES,CONFECTIONER'S COATING,PNUT BUTTER~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19087~^~1900~^~Candies, white chocolate~^~CANDIES,WHITE CHOC~^~confectioner's coating~^^~Y~^^0^^6.38^4.30^8.80^3.90 -~19088~^~1900~^~Ice creams, vanilla, light~^~ICE CREAMS,VANILLA,LT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19089~^~1900~^~Ice creams, vanilla, rich~^~ICE CREAMS,VANILLA,RICH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19090~^~1900~^~Ice creams, french vanilla, soft-serve~^~ICE CREAMS,FRENCH VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19091~^~1900~^~Candies, YORK Peppermint Pattie~^~CANDIES,YORK PEPPERMINT PATTIE~^^~Hershey Food Corp.~^^^0^^6.38^3.47^8.37^4.07 -~19092~^~1900~^~Candies, TWIZZLERS NIBS CHERRY BITS~^~CANDIES,TWIZZLERS NIBS CHERRY BITS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19093~^~1900~^~Candies, SYMPHONY Milk Chocolate Bar~^~CANDIES,SYMPHONY MILK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19094~^~1900~^~Desserts, flan, caramel custard, prepared-from-recipe~^~DESSERTS,FLAN,CARAMEL CUSTARD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19095~^~1900~^~Ice creams, vanilla~^~ICE CREAMS,VANILLA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19096~^~1900~^~Ice creams, vanilla, light, soft-serve~^~ICE CREAMS,VANILLA,LT,SOFT-SERVE~^^^~Y~^^0^^6.40^4.10^8.79^3.80 -~19097~^~1900~^~Sherbet, orange~^~SHERBET,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19098~^~1900~^~Candies, 5TH AVENUE Candy Bar~^~CANDIES,5TH AVENUE CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19099~^~1900~^~Candies, fondant, prepared-from-recipe~^~CANDIES,FONDANT,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19100~^~1900~^~Candies, fudge, chocolate, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19101~^~1900~^~Candies, fudge, chocolate, with nuts, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,W/ NUTS,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19102~^~1900~^~Candies, fudge, peanut butter, prepared-from-recipe~^~CANDIES,FUDGE,PNUT BUTTER,PREPARED-FROM-RECIPE~^^^^^0^^6.25^^^ -~19103~^~1900~^~Candies, fudge, vanilla, prepared-from-recipe~^~CANDIES,FUDGE,VANILLA,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19104~^~1900~^~Candies, fudge, vanilla with nuts~^~CANDIES,FUDGE,VANILLA W/ NUTS~^^^~Y~^^0^^6.25^^^ -~19105~^~1900~^~Candies, NESTLE, GOOBERS Chocolate Covered Peanuts~^~CANDIES,NESTLE,GOOBERS CHOC COVERED PNUTS~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19106~^~1900~^~Candies, gumdrops, starch jelly pieces~^~CANDIES,GUMDROPS,STARCH JELLY PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19107~^~1900~^~Candies, hard~^~CANDIES,HARD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19108~^~1900~^~Candies, jellybeans~^~CANDIES,JELLYBEANS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19109~^~1900~^~Candies, KIT KAT Wafer Bar~^~CANDIES,KIT KAT WAFER BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19110~^~1900~^~Candies, KRACKEL Chocolate Bar~^~CANDIES,KRACKEL CHOC BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19111~^~1900~^~Candies, NESTLE, BABY RUTH Bar~^~CANDIES,NESTLE,BABY RUTH BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19112~^~1900~^~Candies, TWIZZLERS Strawberry Twists Candy~^~CANDIES,TWIZZLERS STRAWBERRY TWISTS CANDY~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19113~^~1900~^~Syrups, table blends, pancake, with butter~^~SYRUPS,TABLE BLENDS,PANCAKE,W/BUTTER~^^^~Y~^^0^^6.25^^^ -~19114~^~1900~^~Ice creams, chocolate, light~^~ICE CREAMS,CHOC,LT~^^^~Y~^^0^^6.25^^^ -~19115~^~1900~^~Candies, MARS SNACKFOOD US, MARS Almond Bar~^~CANDIES,MARS SNACKFOOD US,MARS ALMOND BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^3.70^8.60^3.80 -~19116~^~1900~^~Candies, marshmallows~^~CANDIES,MARSHMALLOWS~^^^~Y~^^0^^5.60^3.90^8.40^3.80 -~19117~^~1900~^~Candies, halavah, plain~^~CANDIES,HALAVAH,PLAIN~^^^^^0^^5.80^4.00^8.50^3.90 -~19118~^~1900~^~Candies, NESTLE, OH HENRY! Bar~^~CANDIES,NESTLE,OH HENRY! BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19119~^~1900~^~Candies, NESTLE, CHUNKY Bar~^~CANDIES,NESTLE,CHUNKY BAR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19120~^~1900~^~Candies, milk chocolate~^~CANDIES,MILK CHOC~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19121~^~1900~^~Puddings, banana, dry mix, instant, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19122~^~1900~^~Puddings, banana, dry mix, regular, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19123~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19124~^~1900~^~Baking chocolate, mexican, squares~^~BAKING CHOC,MEXICAN,SQUARES~^^^~Y~^^0^^6.25^2.00^8.40^3.70 -~19125~^~1900~^~Chocolate-flavored hazelnut spread~^~CHOCOLATE-FLAVORED HAZELNUT SPRD~^^^~Y~^^0^^6.25^^^ -~19126~^~1900~^~Candies, milk chocolate coated peanuts~^~CANDIES,MILK CHOC COATD PNUTS~^^^~Y~^^0^^5.80^3.60^8.60^3.70 -~19127~^~1900~^~Candies, milk chocolate coated raisins~^~CANDIES,MILK CHOC COATD RAISINS~^^^~Y~^^0^^6.20^3.60^8.70^3.60 -~19128~^~1900~^~Syrups, table blends, pancake, reduced-calorie~^~SYRUPS,TABLE BLENDS,PANCAKE,RED-CAL~^^^~Y~^^0^^6.25^^^3.70 -~19129~^~1900~^~Syrups, table blends, pancake~^~SYRUPS,TABLE BLENDS,PANCAKE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19130~^~1900~^~Candies, HERSHEY'S POT OF GOLD Almond Bar~^~CANDIES,HERSHEY'S POT OF GOLD ALMOND BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19132~^~1900~^~Candies, milk chocolate, with almonds~^~CANDIES,MILK CHOC,W/ALMONDS~^^^~Y~^^0^^5.90^3.60^8.60^3.70 -~19134~^~1900~^~Candies, milk chocolate, with rice cereal~^~CANDIES,MILK CHOC,W/RICE CRL~^^^~Y~^^0^^6.20^3.70^8.70^3.80 -~19135~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19136~^~1900~^~Candies, HERSHEY'S SKOR Toffee Bar~^~CANDIES,HERSHEY'S SKOR TOFFEE BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19137~^~1900~^~Toppings, strawberry~^~TOPPINGS,STRAWBERRY~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19138~^~1900~^~Candies, truffles, prepared-from-recipe~^~CANDIES,TRUFFLES,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19139~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Semisweet Chocolate Mini Baking Bits~^~BAK CHOC,MARS SNACKFOOD US,M&M'S SEMISWT CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19140~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^5.46^3.47^8.37^4.07 -~19141~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MILK CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19142~^~1900~^~Candies, MOUNDS Candy Bar~^~CANDIES,MOUNDS CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19143~^~1900~^~Candies, MR. GOODBAR Chocolate Bar~^~CANDIES,MR. GOODBAR CHOC BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19144~^~1900~^~Candies, NESTLE, 100 GRAND Bar~^~CANDIES,NESTLE,100 GRAND BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19145~^~1900~^~Candies, NESTLE, CRUNCH Bar and Dessert Topping~^~CANDIES,NESTLE,CRUNCH BAR&DSSRT TOPPING~^^~Nestle USA, Inc.~^^^0^^^^^ -~19146~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Milk Chocolate Mini Baking Bits~^~BAKING CHOC,MARS SNACKFOOD US,M&M'S MILK CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19147~^~1900~^~Candies, peanut bar~^~CANDIES,PEANUT BAR~^^^~Y~^^0^^5.50^3.50^8.40^3.90 -~19148~^~1900~^~Candies, peanut brittle, prepared-from-recipe~^~CANDIES,PNUT BRITTLE,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19149~^~1900~^~Candies, NESTLE, RAISINETS Chocolate Covered Raisins~^~CANDIES,NESTLE,RAISINETS CHOC COVERED RAISINS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19150~^~1900~^~Candies, REESE'S Peanut Butter Cups~^~CANDIES,REESE'S PNUT BUTTER CUPS~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19151~^~1900~^~Candies, REESE'S PIECES Candy~^~CANDIES,REESE'S PIECES CANDY~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19152~^~1900~^~Candies, ROLO Caramels in Milk Chocolate~^~CANDIES,ROLO CARAMELS IN MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19153~^~1900~^~Candies, NESTLE, AFTER EIGHT Mints~^~CANDIES,NESTLE,AFTER EIGHT MINTS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19154~^~1900~^~Candies, sesame crunch~^~CANDIES,SESAME CRUNCH~^^^~Y~^^0^^5.30^3.50^8.40^3.90 -~19155~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS BAR~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19156~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Original fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,ORIG FRUIT~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19157~^~1900~^~Candies, MARS SNACKFOOD US, M&M's MINIs Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MINIS MILK CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19159~^~1900~^~Candies, MARS SNACKFOOD US, 3 MUSKETEERS Bar~^~CANDIES,MARS SNACKFOOD US,3 MUSKETEERS BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19160~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Caramel Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX CARAMEL COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19161~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Peanut Butter Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX PNUT BUTTER COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19162~^~1900~^~Candies, WHATCHAMACALLIT Candy Bar~^~CANDIES,WHATCHAMACALLIT CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19163~^~1900~^~Chewing gum~^~CHEWING GUM~^~bubble gum~^^~Y~^^0^^6.25^1.82^8.37^3.70 -~19164~^~1900~^~Candies, SPECIAL DARK Chocolate Bar~^~CANDIES,SPL DK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19165~^~1900~^~Cocoa, dry powder, unsweetened~^~COCOA,DRY PDR,UNSWTND~^^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19166~^~1900~^~Cocoa, dry powder, unsweetened, processed with alkali~^~COCOA,DRY PDR,UNSWTND,PROC W/ALKALI~^~Dutch cocoa~^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19168~^~1900~^~Desserts, egg custard, baked, prepared-from-recipe~^~DESSERTS,EGG CUSTARD,BKD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19169~^~1900~^~Egg custards, dry mix~^~EGG CUSTARDS,DRY MIX~^^^^^0^^6.30^4.30^9.00^3.90 -~19170~^~1900~^~Egg custards, dry mix, prepared with whole milk~^~EGG CUSTARDS,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19171~^~1900~^~Cocoa, dry powder, unsweetened, HERSHEY'S European Style Cocoa~^~COCOA,DRY PDR,UNSWTND,HERSHEY'S EUROPEAN STYLE COCOA~^^~Hershey Food Corp.~^^^0^^^^^ -~19172~^~1900~^~Gelatin desserts, dry mix~^~GELATIN DSSRT,DRY MIX~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19173~^~1900~^~Gelatin desserts, dry mix, prepared with water~^~GELATIN DSSRT,DRY MIX,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19175~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT~^^^~Y~^^0^^5.55^0.00^0.00^2.47 -~19176~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, prepared with water~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19177~^~1900~^~Gelatins, dry powder, unsweetened~^~GELATINS,DRY PDR,UNSWTND~^^^~Y~^^0^^5.55^3.90^9.02^ -~19181~^~1900~^~Candies, YORK BITES~^~CANDIES,YORK BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19182~^~1900~^~Desserts, mousse, chocolate, prepared-from-recipe~^~DESSERTS,MOUSSE,CHOC,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19183~^~1900~^~Puddings, chocolate, ready-to-eat~^~PUDDINGS,CHOC,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19184~^~1900~^~Puddings, chocolate, dry mix, instant~^~PUDDINGS,CHOC,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19185~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19186~^~1900~^~Desserts, apple crisp, prepared-from-recipe~^~DESSERTS,APPL CRISP,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19187~^~1900~^~Flan, caramel custard, dry mix~^~FLAN,CARAMEL CUSTARD,DRY MIX~^^^^^0^^6.25^1.80^8.40^3.80 -~19188~^~1900~^~Puddings, chocolate, dry mix, regular~^~DESSERTS,PUDD,CHOC,DRY MIX,REG~^^^~Y~^^0^^5.60^1.90^8.40^3.80 -~19189~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHOLE MILK~^^^~Y~^^0^^5.60^^^ -~19190~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19191~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19193~^~1900~^~Puddings, rice, ready-to-eat~^~Puddings, rice, ready-to-eat~^^^~Y~^^0^^6.25^^^ -~19194~^~1900~^~Puddings, rice, dry mix~^~PUDDINGS,RICE,DRY MIX~^^^^^0^^6.00^3.80^8.40^4.00 -~19195~^~1900~^~Puddings, rice, dry mix, prepared with whole milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19198~^~1900~^~Puddings, tapioca, dry mix~^~PUDDINGS,TAPIOCA,DRY MIX~^^^^^0^^6.25^3.00^8.40^3.90 -~19199~^~1900~^~Puddings, tapioca, dry mix, prepared with whole milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19201~^~1900~^~Puddings, vanilla, ready-to-eat~^~PUDDINGS,VANILLA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19202~^~1900~^~Puddings, vanilla, dry mix, instant~^~PUDDINGS,VANILLA,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19203~^~1900~^~Puddings, vanilla, dry mix, instant, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19204~^~1900~^~Puddings, lemon, dry mix, instant, prepared with 2% milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19205~^~1900~^~Egg custards, dry mix, prepared with 2% milk~^~EGG CUSTARDS,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19206~^~1900~^~Puddings, vanilla, dry mix, regular~^~PUDDINGS,VANILLA,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19207~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ WHL MILK~^^^~Y~^^0^^6.25^^^ -~19208~^~1900~^~Puddings, rice, dry mix, prepared with 2% milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19209~^~1900~^~Puddings, tapioca, dry mix, prepared with 2% milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19212~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with 2% milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19213~^~1900~^~Rennin, chocolate, dry mix, prepared with 2% milk~^~RENNIN,CHOC,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19214~^~1900~^~Rennin, vanilla, dry mix, prepared with 2% milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19216~^~1900~^~Candies, praline, prepared-from-recipe~^~CANDIES,PRALINE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19217~^~1900~^~Frozen novelties, ice type, fruit, no sugar added~^~FROZEN NOVELTIES,ICE TYPE,FRUIT,NO SUGAR ADDED~^^^^^0^^5.60^3.90^9.00^3.50 -~19218~^~1900~^~Puddings, tapioca, ready-to-eat~^~PUDDINGS,TAPIOCA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19219~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19220~^~1900~^~Desserts, rennin, chocolate, dry mix~^~DESSERTS,RENNIN,CHOC,DRY MIX~^^^^^0^^5.60^2.20^8.37^3.60 -~19221~^~1900~^~Rennin, chocolate, dry mix, prepared with whole milk~^~RENNIN,CHOC,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19222~^~1900~^~Desserts, rennin, vanilla, dry mix~^~DESSERTS,RENNIN,VANILLA,DRY MIX~^^^^^0^^5.60^3.90^9.00^3.90 -~19223~^~1900~^~Rennin, vanilla, dry mix, prepared with whole milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19225~^~1900~^~Desserts, rennin, tablets, unsweetened~^~DESSERTS,RENNIN,TABLETS,UNSWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~19226~^~1900~^~Frostings, chocolate, creamy, ready-to-eat~^~FROSTINGS,CHOC,CREAMY,RTE~^^^~Y~^^0^^5.60^1.80^8.80^3.80 -~19227~^~1900~^~Frostings, coconut-nut, ready-to-eat~^~FROSTINGS,COCONUT-NUT,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19228~^~1900~^~Frostings, cream cheese-flavor, ready-to-eat~^~FROSTINGS,CRM CHEESE-FLAVOR,RTE~^^^^^0^^5.80^4.10^8.80^3.90 -~19230~^~1900~^~Frostings, vanilla, creamy, ready-to-eat~^~FROSTINGS,VANILLA,CREAMY,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19231~^~1900~^~Flan, caramel custard, dry mix, prepared with 2% milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19232~^~1900~^~Flan, caramel custard, dry mix, prepared with whole milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19233~^~1900~^~Puddings, vanilla, ready-to-eat, fat free~^~PUDDINGS,VANILLA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19234~^~1900~^~Puddings, tapioca, ready-to-eat, fat free~^~PUDDINGS,TAPIOCA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19235~^~1900~^~Puddings, chocolate, ready-to-eat, fat free~^~PUDDINGS,CHOC,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19236~^~1900~^~Candies, HERSHEY'S MILK CHOCOLATE WITH ALMOND BITES~^~CANDIES,HERSHEY'S MILK CHOC W/ ALMOND BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19238~^~1900~^~Candies, REESE'S BITES~^~CANDIES,REESE'S BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19239~^~1900~^~Candies, REESE'S NUTRAGEOUS Candy Bar~^~CANDIES,REESE'S NUTRAGEOUS CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19240~^~1900~^~Frostings, chocolate, creamy, dry mix~^~FROSTINGS,CHOC,CREAMY,DRY MIX~^^^^^0^^5.60^1.80^8.80^3.70 -~19241~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with butter~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ BUTTER~^^^^^0^^^^^ -~19243~^~1900~^~Candies, HEATH BITES~^~CANDIES,HEATH BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19244~^~1900~^~Frostings, vanilla, creamy, dry mix~^~FROSTINGS,VANILLA,CREAMY,DRY MIX~^^^^^0^^6.25^3.46^8.80^3.90 -~19246~^~1900~^~Frostings, white, fluffy, dry mix~^~FROSTINGS,WHITE,FLUFFY,DRY MIX~^^^^^0^^6.10^4.30^8.60^3.80 -~19247~^~1900~^~Frostings, white, fluffy, dry mix, prepared with water~^~FROSTINGS,WHITE,FLUFFY,DRY MIX,PREP W/H2O~^^^^^0^^0.00^^^ -~19248~^~1900~^~Candies, HERSHEY'S, ALMOND JOY BITES~^~CANDIES,HERSHEY'S,ALMOND JOY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19249~^~1900~^~Candies, HERSHEY, REESESTICKS crispy wafers, peanut butter, milk chocolate~^~CANDIES,HERSHEY,REESESTICKS CRISPY WAFERS,PNUT BUT,MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19250~^~1900~^~Candies, HERSHEY, KIT KAT BIG KAT Bar~^~CANDIES,HERSHEY,KIT KAT BIG KAT BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19252~^~1900~^~Candies, REESE'S, FAST BREAK, milk chocolate peanut butter and soft nougats~^~CANDIES,REESE'S,FAST BREAK,MILK CHOC PNT BTR & SFT NUGTS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19254~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Milk Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE MILK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19255~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Dark Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE DK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19256~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels, milk chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKYWAYCARAML,MILKCHOCOV~^^~Masterfoods USA~^^^0^^^^^ -~19258~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels. dark chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKY WAY CARML. DKCHOCCOV~^^~Masterfoods USA~^^^0^^^^^ -~19260~^~1900~^~Ice creams, vanilla, light, no sugar added~^~ICE CREAMS,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19263~^~1900~^~Frozen novelties, fruit and juice bars~^~FROZEN NOVELTIES,FRUIT & JUC BARS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19265~^~1900~^~Ice creams, chocolate, light, no sugar added~^~ICE CREAMS,CHOC,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^^^ -~19268~^~1900~^~Candies, dark chocolate coated coffee beans~^~CANDIES,DK CHOC COATD COFFEE BNS~^^^^^0^^6.25^4.00^9.00^4.00 -~19269~^~2500~^~Snacks, GENERAL MILLS, BETTY CROCKER Fruit Roll Ups, berry flavored, with vitamin C~^~SNACKS,GENERAL MILLS,BETTY CROCKER FRT RL UPS,BRY FLV,W/VT C~^^^^^0^^^4.00^9.00^4.00 -~19270~^~1900~^~Ice creams, chocolate~^~ICE CREAMS,CHOC~^^^~Y~^^0^^6.10^3.60^8.80^3.70 -~19271~^~1900~^~Ice creams, strawberry~^~ICE CREAMS,STRAWBERRY~^^^^^0^^6.40^4.10^8.79^3.80 -~19272~^~2500~^~Snacks, FARLEY CANDY, FARLEY Fruit Snacks, with vitamins A, C, and E~^~SNACKS,FARLEY CANDY,FARLEY FRUIT SNACKS,W/VITAMINS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19273~^~2500~^~Snacks, SUNKIST, SUNKIST Fruit Roll, strawberry, with vitamins A, C, and E~^~SNACKS,SUNKIST,SUNKIST FRUIT ROLL,STRAWBERRY,W/VITMNS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19274~^~2500~^~Snacks, fruit leather, pieces, with vitamin C~^~SNACKS,FRUIT LEATHER,PIECES,W/VIT C~^^^^^0^^^^^ -~19279~^~1900~^~Candies, milk chocolate coated coffee beans~^~CANDIES,MILK CHOC COATD COFFEE BNS~^^^~Y~^^0^^^^^ -~19280~^~1900~^~Frozen novelties, ice type, lime~^~FROZEN NOVELTIES,ICE TYPE,LIME~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~19281~^~1900~^~Frozen novelties, ice type, italian, restaurant-prepared~^~FROZEN NOVELTIES,ICE TYPE,ITALIAN,REST-PREP~^^^^^0^^6.25^3.36^8.37^3.90 -~19283~^~1900~^~Frozen novelties, ice type, pop~^~FROZEN NOVELTIES,ICE TYPE,POP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19292~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Crispy Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S CRISPY CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19293~^~1900~^~Frozen yogurts, vanilla, soft-serve~^~FROZEN YOGURTS,VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19294~^~1900~^~Fruit butters, apple~^~FRUIT BUTTERS,APPLE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19295~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS MUNCH bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS MUNCH BAR~^^~Masterfoods USA~^^^0^^^^^ -~19296~^~1900~^~Honey~^~HONEY~^^^~Y~^^0^^6.25^3.36^8.37^3.68 -~19297~^~1900~^~Jams and preserves~^~JAMS AND PRESERVES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19300~^~1900~^~Jellies~^~JELLIES~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19301~^~1900~^~Candies, fudge, chocolate marshmallow, with nuts, prepared-by-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,W/ NUTS,PREPARED-BY-RECIPE~^^^^^0^^^^^ -~19302~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Almond bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS ALMOND BAR~^^~Masterfoods USA~^^^0^^^^^ -~19303~^~1900~^~Marmalade, orange~^~MARMALADE,ORANGE~^^^~Y~^^0^^6.25^3.40^8.40^3.70 -~19304~^~1900~^~Molasses~^~MOLASSES~^^^~Y~^^0^^6.25^^8.37^3.87 -~19306~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES SNICKERS Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP SNICKERS BITE SIZE CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19307~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES MILKY WAY Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP MILKY WAY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19308~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES 3 MUSKETEERS Brand Bite Size Candies~^~CANDIES,MARS SNACK US,POP'ABLES 3 MUSKETEERS BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19309~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Fruit and Creme~^~CANDIES,MARS SNACK US,STARBURST FRUIT CHEWS,FRT&CREM~^^~Masterfoods USA~^^^0^^^^^ -~19310~^~1900~^~Pectin, unsweetened, dry mix~^~PECTIN,UNSWTND,DRY MIX~^^^^^0^^6.25^^^3.60 -~19312~^~1900~^~Pie fillings, apple, canned~^~PIE FILLINGS,APPL,CND~^^^~Y~^^0^^6.25^3.40^8.40^3.80 -~19313~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Tropical fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,TROP~^^~Masterfoods USA~^^^0^^^^^ -~19314~^~1900~^~Pie fillings, canned, cherry~^~PIE FILLINGS,CND,CHERRY~^^^^^0^^6.25^4.00^9.00^4.00 -~19315~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Sour Fruit Chews~^~CANDIES,MARS SNACKFOOD US,STARBURST SOUR FRUIT CHEWS~^^~Masterfoods USA~^^^0^^^^^ -~19318~^~1900~^~Puddings, banana, dry mix, instant~^~PUDDINGS,BANANA,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19319~^~1900~^~Puddings, banana, dry mix, instant, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19320~^~1900~^~Puddings, banana, dry mix, regular~^~PUDDINGS,BANANA,DRY MIX,REG~^^^^^0^^6.20^3.50^8.40^3.90 -~19321~^~1900~^~Puddings, banana, dry mix, regular, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19322~^~1900~^~Puddings, coconut cream, dry mix, instant~^~DESSERTS,PUDD,COCNT CRM,DRY MIX,INST~^^^~Y~^^0^^5.40^3.60^8.60^3.90 -~19323~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19324~^~1900~^~Puddings, coconut cream, dry mix, regular~^~PUDDINGS,COCNT CRM,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19325~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19326~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19327~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Blueberry and Almond Chocolate Bar~^~CANDIES,MARS SNACK US,COCOAVIA BLUEBERRY & ALMOND CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19328~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Crispy Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CRISPY CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19330~^~1900~^~Puddings, lemon, dry mix, instant~^~PUDDINGS,LEMON,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19331~^~1900~^~Puddings, lemon, dry mix, instant, prepared with whole milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19332~^~1900~^~Puddings, lemon, dry mix, regular~^~PUDDINGS,LEMON,DRY MIX,REG~^^^^^0^^6.25^3.50^8.80^3.90 -~19333~^~1900~^~Pudding, lemon, dry mix, regular, prepared with sugar, egg yolk and water~^~PUDDING,LEMON,DRY MIX,REG,PREP W/ SUGAR,EGG YOLK & H2O~^^^^^0^^^^^ -~19334~^~1900~^~Sugars, brown~^~SUGARS,BROWN~^^^~Y~^^0^^6.25^4.00^0.00^3.87 -~19335~^~1900~^~Sugars, granulated~^~SUGARS,GRANULATED~^~sucrose~^^~Y~^^0^^6.25^^^3.87 -~19336~^~1900~^~Sugars, powdered~^~SUGARS,POWDERED~^^^~Y~^^0^^6.25^3.50^8.40^3.90 -~19337~^~1900~^~Sweeteners, tabletop, aspartame, EQUAL, packets~^~SWEETENERS,TABLETOP,ASPRT,EQ,PACKETS~^^~Merisant Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19340~^~1900~^~Sugars, maple~^~SUGARS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19345~^~1900~^~Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S GENUINE CHOC FLAV LITE SYRUP~^^~Hershey Food Corp.~^~Y~^^0^^^4.00^9.00^4.00 -~19348~^~1900~^~Syrups, chocolate, fudge-type~^~SYRUPS,CHOC,FUDGE-TYPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19349~^~1900~^~Syrups, corn, dark~^~SYRUPS,CORN,DK~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19350~^~1900~^~Syrups, corn, light~^~SYRUPS,CORN,LT~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19351~^~1900~^~Syrups, corn, high-fructose~^~SYRUPS,CORN,HIGH-FRUCTOSE~^^^~Y~^^0^^6.25^^^3.70 -~19352~^~1900~^~Syrups, malt~^~SYRUPS,MALT~^^^^^0^^6.25^3.87^8.37^4.12 -~19353~^~1900~^~Syrups, maple~^~SYRUPS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19355~^~1900~^~Syrups, sorghum~^~SYRUPS,SORGHUM~^^^~Y~^^0^^6.25^^^3.87 -~19359~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS CRUNCHER~^~CANDIES,MARS SNACKFOOD US,SNICKERS CRUNCHER~^^~Masterfoods USA~^^^0^^^^^ -~19360~^~1900~^~Syrups, table blends, pancake, with 2% maple~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19362~^~1900~^~Syrups, table blends, corn, refiner, and sugar~^~SYRUPS,TABLE BLENDS,CORN,REFINER,&SUGAR~^^^^^0^^6.25^3.36^8.37^3.80 -~19363~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Wild Berry Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES WILD BERRY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19364~^~1900~^~Toppings, butterscotch or caramel~^~TOPPINGS,BUTTERSCOTCH OR CARAMEL~^^^~Y~^^0^^6.38^4.27^8.80^3.70 -~19365~^~1900~^~Toppings, marshmallow cream~^~TOPPINGS,MARSHMLLW CRM~^^^~Y~^^0^^0.00^4.00^9.00^4.00 -~19366~^~1900~^~Toppings, pineapple~^~TOPPINGS,PINEAPPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19367~^~1900~^~Toppings, nuts in syrup~^~TOPPINGS,NUTS IN SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19368~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Tropical Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES TROPICAL BITE SIZE CAND~^^~Masterfoods USA~^^^0^^^^^ -~19369~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Sours Original~^~CANDIES,MARS SNACKFOOD US,SKITTLES SOURS ORIGINAL~^^~Masterfoods USA~^^^0^^^^^ -~19370~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Original Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES ORIGINAL BITE SIZE CAND~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19371~^~1900~^~Frostings, vanilla, creamy, dry mix, prepared with margarine~^~FROSTINGS,VANILLA,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19372~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with margarine~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19375~^~1900~^~Frostings, glaze, prepared-from-recipe~^~FROSTINGS,GLAZE,PREPARED-FROM-RECIPE~^^^^^0^^^^^ -~19379~^~1900~^~Candies, fudge, chocolate marshmallow, prepared-from-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19382~^~1900~^~Candies, taffy, prepared-from-recipe~^~CANDIES,TAFFY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19383~^~1900~^~Candies, toffee, prepared-from-recipe~^~CANDIES,TOFFEE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19384~^~1900~^~Candies, divinity, prepared-from-recipe~^~CANDIES,DIVINITY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19387~^~1900~^~Frozen novelties, ice type, pineapple-coconut~^~FROZEN NOVELTIES,ICE TYPE,PINEAPPLE-COCONUT~^^^^^0^^6.25^3.40^8.40^3.80 -~19393~^~1900~^~Frozen yogurts, chocolate, soft-serve~^~FROZEN YOGURTS,CHOC,SOFT-SERVE~^^^^^0^^6.20^3.60^8.70^3.70 -~19400~^~2500~^~Snacks, banana chips~^~BANANA CHIPS~^^^~Y~^^0^^6.25^3.40^8.60^3.80 -~19401~^~2500~^~Snacks, cornnuts, barbecue-flavor~^~CORNNUTS,BARBECUE-FLAVOR~^^^^^0^^6.20^2.70^8.70^4.00 -~19403~^~2500~^~Snacks, crisped rice bar, almond~^~CRISPED RICE BAR,ALMOND~^^^^^0^^5.60^3.50^8.60^4.00 -~19404~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP~^^^~Y~^^0^^5.80^3.40^8.40^3.70 -~19405~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip, graham and marshmallow~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP,GRAHAM&MARSHMLLW~^^^^^0^^5.80^3.40^8.40^3.90 -~19406~^~2500~^~Snacks, granola bars, soft, uncoated, nut and raisin~^~GRANOLA BARS,SOFT,UNCOATED,NUT&RAISIN~^^^^^0^^5.70^3.50^8.40^4.00 -~19407~^~2500~^~Snacks, beef sticks, smoked~^~SNACKS,BF STKS,SMOKED~^^^^^0^^6.20^4.10^9.00^2.90 -~19408~^~2500~^~Snacks, pork skins, barbecue-flavor~^~PORK SKINS,BARBECUE-FLAVOR~^^^^^0^^6.25^4.27^9.02^3.87 -~19409~^~1900~^~Frostings, glaze, chocolate, prepared-from-recipe, with butter, NFSMI Recipe No. C-32~^~FROSTING,GLAZ,CHC,PREP-FRM-RCIP,W/ BUTR,NFSMI RECIP NO. C-32~^^^^^0^^^^^ -~19410~^~2500~^~Snack, potato chips, made from dried potatoes, plain~^~POTATO CHIPS,MADE FROM DRIED POTATOES,PLN~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19411~^~2500~^~Snacks, potato chips, plain, salted~^~POTATO CHIPS,PLAIN,SALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19412~^~2500~^~Snacks, potato chips, made from dried potatoes, cheese-flavor~^~POTATO CHIPS,MADE FROM DRIED POTATOES,CHEESE-FLAVOR~^^^^^0^^6.30^3.30^8.80^4.00 -~19413~^~2500~^~Snacks, rice cakes, brown rice, corn~^~SNACKS,RICE CAKES,BROWN RICE,CORN~^^^^^0^^6.10^3.00^8.40^4.10 -~19414~^~2500~^~Snacks, rice cakes, brown rice, multigrain~^~RICE CAKES,BROWN RICE,MULTIGRAIN~^^^^^0^^5.90^3.40^8.40^4.10 -~19415~^~2500~^~Snacks, potato sticks~^~SNACKS,POTATO STKS~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~19416~^~2500~^~Snacks, rice cakes, brown rice, rye~^~RICE CAKES,BROWN RICE,RYE~^^^^^0^^5.90^3.30^8.40^4.10 -~19418~^~2500~^~Snacks, sesame sticks, wheat-based, salted~^~SESAME STKS,WHEAT-BASED,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^3.90 -~19419~^~2500~^~Snacks, corn cakes~^~CORN CAKES~^^^^^0^^6.10^3.10^8.40^4.10 -~19420~^~2500~^~Snacks, granola bars, hard, peanut butter~^~GRANOLA BARS,HARD,PNUT BUTTER~^^^^^0^^5.60^3.40^8.70^3.90 -~19421~^~2500~^~Snacks, potato chips, cheese-flavor~^~POTATO CHIPS,CHEESE-FLAVOR~^^^^^0^^6.30^3.00^8.80^4.00 -~19422~^~2500~^~Snacks, potato chips, reduced fat~^~SNACKS,POTATO CHIPS,RED FAT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19423~^~2500~^~Snacks, potato chips, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FAT-FREE,MADE W/OLESTRA~^^^~Y~^^0^^6.25^^^ -~19424~^~2500~^~Snacks, tortilla chips, nacho-flavor, reduced fat~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,RED FAT~^^^^^0^^6.30^2.90^8.80^4.00 -~19433~^~2500~^~Tortilla chips, low fat, baked without fat~^~TORTILLA CHIPS,LOFAT,BKD WO/FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.40 -~19434~^~2500~^~Cheese puffs and twists, corn based, baked, low fat~^~CHEESE PUFFS & TWISTS,CORN BSD,BKD,LOFAT~^^^~Y~^^0^^6.50^^^ -~19435~^~2500~^~Snacks, granola bar, fruit-filled, nonfat~^~SNACKS,GRANOLA BAR,FRUIT-FILLED,NONFAT~^^^~Y~^^0^^^^^ -~19436~^~2500~^~Popcorn, sugar syrup/caramel, fat-free~^~POPCORN,SUGAR SYRUP/CARAMEL,FAT-FREE~^^^~Y~^^0^^6.50^^^ -~19437~^~2500~^~Snacks, potato chips, fat free, salted~^~POTATO CHIPS,FAT FREE,SALTED~^^^~Y~^^0^^6.50^^^ -~19438~^~2500~^~Snacks, KELLOGG, KELLOGG'S RICE KRISPIES TREATS Squares~^~SNACKS,KELLOGG,KELLOGG'S RICE KRISPIES TREATS SQUARES~^^^~Y~^^0^^6.50^^^ -~19439~^~2500~^~Snacks, KELLOGG, KELLOGG'S Low Fat Granola Bar, Crunchy Almond/Brown Sugar~^~SNACKS,KELLOGG'S LOFAT GRANOLA BAR,CRUNCHY ALMD/BRN SUGAR~^^^^^0^^^^^ -~19440~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, chocolate chip~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,CHOC CHIP~^^^^^0^^^^^ -~19441~^~2500~^~Snacks, KELLOGG, KELLOGG'S, NUTRI-GRAIN Cereal Bars, fruit~^~SNACKS,KELLOGG,KELLOGG'S,NUTRI-GRAIN CRL BARS,FRUIT~^^~Kellogg, Co.~^~Y~^^0^^6.50^^^ -~19444~^~2500~^~Snacks, tortilla chips, low fat, made with olestra, nacho cheese~^~SNACKS,TORTILLA CHIPS,LOFAT,MADE W/OLESTRA,NACHO CHS~^^^~Y~^^0^^6.50^^^ -~19445~^~2500~^~Snacks, potato chips, made from dried potatoes, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FRM DRIED POTATOES,FAT-FREE,W/ OLESTRA~^^^~Y~^^0^^6.20^^^ -~19524~^~2500~^~Snacks, taro chips~^~TARO CHIPS~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19701~^~1900~^~Candies, semisweet chocolate, made with butter~^~CANDIES,SEMISWEET CHOC,MADE W/BUTTER~^^^^^0^^5.63^1.83^8.50^3.40 -~19702~^~1900~^~Gelatin desserts, dry mix, with added ascorbic acid, sodium-citrate and salt~^~GELATIN DSSRT,DRY MIX,W/ ADDED VIT C,SODIUM-CITRATE & SALT~^^^^^0^^5.55^3.90^9.02^3.87 -~19703~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, added phosphorus, potassium, sodium, vitamin C~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,ADDED P,K,NA,VIT C~^^^^^0^^5.55^3.90^9.02^3.87 -~19704~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, no added sodium~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,NO ADDED NA~^^^^^0^^5.55^3.90^9.02^3.87 -~19705~^~1900~^~Puddings, banana, dry mix, instant, with added oil~^~PUDDINGS,BANANA,DRY MIX,INST,W/ ADDED OIL~^^^^^0^^6.40^4.20^8.80^3.90 -~19706~^~1900~^~Puddings, banana, dry mix, regular, with added oil~^~PUDDINGS,BANANA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.20^3.50^8.40^3.90 -~19708~^~1900~^~Puddings, lemon, dry mix, regular, with added oil, potassium, sodium~^~PUDDINGS,LEMON,DRY MIX,REG,W/ ADDED OIL,K,NA~^^^^^0^^6.25^3.50^8.80^3.90 -~19709~^~1900~^~Puddings, tapioca, dry mix, with no added salt~^~PUDDINGS,TAPIOCA,DRY MIX,W/ NO ADDED SALT~^^^^^0^^6.25^3.00^8.40^3.90 -~19710~^~1900~^~Puddings, vanilla, dry mix, regular, with added oil~^~PUDDINGS,VANILLA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.25^3.50^8.40^3.90 -~19719~^~1900~^~Jams and preserves, apricot~^~JAMS&PRESERVES,APRICOT~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~19720~^~1900~^~Syrups, table blends, pancake, with 2% maple, with added potassium~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE,W/ K~^^^^^0^^6.25^3.36^8.37^3.80 -~19800~^~2500~^~Snacks, corn cakes, very low sodium~^~CORN CAKES,VERY LO NA~^^^^^0^^6.10^3.10^8.40^4.10 -~19802~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor, unenriched~^~SNACKS,CORN-BASED,EXTRDD,PUFFS OR TWISTS,CHEESE-FLAVOR,UNENR~^^^^^0^^6.30^4.00^8.80^4.10 -~19804~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor, made with enriched masa flour~^~SNACKS,CORN-BASE,EXTRUD,CHIPS,BARBECUE-FLAVOR,W/ENR MASA FLR~^^^^^0^^6.25^^^ -~19806~^~2500~^~Snacks, popcorn, air-popped (Unsalted)~^~SNACKS,POPCORN,AIR-POPPED (UNSALTED)~^^^^^0^^6.25^2.73^8.37^4.03 -~19807~^~2500~^~Snacks, popcorn, oil-popped, white popcorn, salt added~^~SNACKS,POPCORN,OIL-POPPED,WHITE POPCORN,SALT ADDED~^^^^^0^^6.25^2.70^8.80^4.00 -~19809~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, salted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,SALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19810~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, unsalted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,UNSALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19811~^~2500~^~Snacks, potato chips, plain, unsalted~^~POTATO CHIPS,PLN,UNSALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19812~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, salted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,SALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19813~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, unsalted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,UNSALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19814~^~2500~^~Snacks, pretzels, hard, plain, made with enriched flour, unsalted~^~SNACKS,PRETZELS,HARD,PLN,MADE W/ ENR FLR,UNSALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19816~^~2500~^~Snacks, rice cakes, brown rice, plain, unsalted~^~RICE CAKES,BROWN RICE,PLN,UNSALTED~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19817~^~2500~^~Snacks, rice cakes, brown rice, buckwheat, unsalted~^~RICE CAKES,BROWN RICE,BUCKWHEAT,UNSALTED~^^^^^0^^6.10^3.40^8.40^4.00 -~19818~^~2500~^~Snacks, rice cakes, brown rice, multigrain, unsalted~^~RICE CAKES,BROWN RICE,MULTIGRAIN,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19819~^~2500~^~Snacks, rice cakes, brown rice, sesame seed, unsalted~^~RICE CAKES,BROWN RICE,SESAME SD,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19820~^~2500~^~Snacks, sesame sticks, wheat-based, unsalted~^~SESAME STKS,WHEAT-BASED,UNSALTED~^^^^^0^^5.70^3.70^8.70^3.90 -~19821~^~2500~^~Snacks, trail mix, regular, unsalted~^~TRAIL MIX,REG,UNSALTED~^^^^^0^^5.40^3.50^8.40^3.70 -~19822~^~2500~^~Snacks, trail mix, regular, with chocolate chips, unsalted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,UNSALTED NUTS&SEEDS~^^^^^0^^5.50^3.50^8.40^3.70 -~19823~^~2500~^~Potato chips, without salt, reduced fat~^~POTATO CHIPS,WO/SALT,RED FAT~^^^~Y~^^0^^6.50^^^ -~19833~^~2500~^~Snacks, tortilla chips, low fat, unsalted~^~TORTILLA CHIPS,LOFAT,UNSALTED~^^^~Y~^^0^^6.50^^^ -~19856~^~1900~^~Frozen novelties, juice type, POPSICLE SCRIBBLERS~^~FROZEN NOVELTIES,JUC TYPE,POPSICLE SCRIBBLERS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^4.00^9.00^4.00 -~19857~^~2500~^~Snacks, tortilla chips, nacho-flavor, made with enriched masa flour~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,MADE W/ENR MASA FLR~^^^^^0^^6.50^^^ -~19858~^~1900~^~Candies, sugar-coated almonds~^~CANDIES,SUGAR-COATED ALMONDS~^^^~Y~^^0^^5.18^3.90^9.02^3.87 -~19860~^~1900~^~Cocoa, dry powder, hi-fat or breakfast, processed with alkali~^~COCOA,DRY PDR,HI-FAT OR BRKFST,PROC W/ALKALI~^^^~Y~^^0^^6.25^^^ -~19866~^~1900~^~Candies, soft fruit and nut squares~^~CANDIES,SOFT FRUIT & NUT SQUARES~^^^~Y~^^0^^5.55^^^ -~19867~^~1900~^~Ice creams, vanilla, fat free~^~ICE CREAMS,VANILLA,FAT FREE~^^^~Y~^^0^^6.25^^^ -~19868~^~1900~^~Sweeteners, tabletop, sucralose, SPLENDA packets~^~SWEETENERS,TABLETOP,SUCRALOSE,SPLENDA PACKETS~^^~McNeil Nutritionals/McNeil_PPC, Inc.~^~Y~^^0^^6.25^0.00^0.00^3.68 -~19871~^~1900~^~Frozen novelties, No Sugar Added, FUDGSICLE pops~^~FROZEN NOVELTIES,NO SUGAR ADDED,FUDGSICLE POPS~^^~Good Humor - Breyers Ice Cream~^~Y~^^0^^6.25^^^ -~19873~^~1900~^~Frozen novelties, ice type, sugar free, orange, cherry, and grape POPSICLE pops~^~FROZ NOVELTIES,ICE TYPE,SUGAR FREE,ORNGE,CHRY,& GRP POPSICLE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19874~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Fudge Bar, 98% fat free, no sugar added~^~FRZ NVL, KLONDIKE,SLIM-A-BEAR FUDG BR,98% FT FR,NO SGR ADDED~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19875~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19876~^~1900~^~Ice creams, BREYERS, All Natural Light French Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19877~^~1900~^~Ice creams, BREYERS, 98% Fat Free Vanilla~^~ICE CREAMS,BREYERS,98% FAT FREE VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19878~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19879~^~1900~^~Ice creams, BREYERS, All Natural Light Mint Chocolate Chip~^~ICE CREAMS,BREYERS,ALL NAT LT MINT CHOC CHIP~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19880~^~1900~^~Ice creams, BREYERS, No Sugar Added, Butter Pecan~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,BUTTER PECAN~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19881~^~1900~^~Ice creams, BREYERS, No Sugar Added, French Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19882~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19883~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Fudge Twirl~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA FUDGE TWIRL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19884~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19886~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Chocolate Cone~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR CHOC CONE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19887~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Vanilla Sandwich~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR VANILLA SNDWCH~^^~Good Humor - Breyers Ice Cream~^^^0^^^^^ -~19890~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR, No Sugar Added, Stickless Bar~^~FROZEN NOVL,KLONDIKE,SLIM-A-BEAR,NO SGR ADDED,STICKLESS BAR~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19891~^~1900~^~Frozen novelties, No Sugar Added CREAMSICLE Pops~^~FROZEN NOVELTIES,NO SUGAR ADDED CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19892~^~1900~^~Frozen novelties, Sugar Free, CREAMSICLE Pops~^~FROZEN NOVELTIES,SUGAR FREE,CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19893~^~1900~^~Ice creams, BREYERS, All Natural Light French Chocolate~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19894~^~1900~^~Ice creams, BREYERS, 98% Fat Free Chocolate~^~ICE CREAMS,BREYERS,98% FAT FREE CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19895~^~1900~^~Ice creams, BREYERS, No Sugar Added, Chocolate Caramel~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,CHOC CARAMEL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19896~^~1900~^~Candies, REESE's Fast Break, milk chocolate, peanut butter, soft nougats, candy bar~^~CANDIES,REESE'S FAST BREAK,CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19897~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Covered Almonds~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC COVERED ALMONDS~^^~Masterfoods USA~^^^0^^^^^ -~19898~^~1900~^~Ice creams, regular, low carbohydrate, vanilla~^~ICE CREAMS,REG,LO CARBOHYDRATE,VANILLA~^^^~Y~^^0^^6.25^^^ -~19899~^~1900~^~Ice creams, regular, low carbohydrate, chocolate~^~ICE CREAMS,REG,LO CARBOHYDRATE,CHOC~^^^~Y~^^0^^6.25^^^ -~19902~^~1900~^~Chocolate, dark, 45- 59% cacao solids~^~CHOCOLATE,DK,45- 59% CACAO SOL~^^^^^0^^6.25^^^ -~19903~^~1900~^~Chocolate, dark, 60-69% cacao solids~^~CHOCOLATE,DK,60-69% CACAO SOL~^^^^^0^^^^^ -~19904~^~1900~^~Chocolate, dark, 70-85% cacao solids~^~CHOCOLATE,DK,70-85% CACAO SOL~^^^^^0^^^^^ -~19905~^~1900~^~Candies, chocolate, dark, NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)~^~CANDIES,CHOC,DK,NFS (45-59% CACAO SOL 90%; 60-69% CACAO SOL~^^^~Y~^^0^^6.25^^^ -~19906~^~1900~^~Sweeteners, for baking, brown, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,BROWN,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19907~^~1900~^~Sweeteners, for baking, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19908~^~1900~^~Sugar, turbinado~^~SUGAR,TURBINADO~^^^^^0^^^^^ -~19909~^~1900~^~Sweeteners, sugar substitute, granulated, brown~^~SWEETENERS,SUGAR SUB,GRANULATED,BROWN~^^^^^0^^^^^ -~19910~^~1900~^~Candies, crispy bar with peanut butter filling~^~CANDIES,CRISPY BAR W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~19911~^~1900~^~Syrup, maple, Canadian~^~SYRUP,MAPLE,CANADIAN~^^^^^0^^6.25^^^ -~19912~^~1900~^~Sweetener, syrup, agave~^~Sweetener, syrup, agave~^^^~Y~^^0^^^^^ -~19913~^~1900~^~Candies, NESTLE, BUTTERFINGER Crisp~^~Candies, NESTLE, BUTTERFINGER Crisp~^^^~Y~^^0^^6.25^^^ -~19914~^~1900~^~Candies, M&M MARS 3 MUSKETEERS Truffle Crisp~^~CANDIES,M&M MARS 3 MUSKETEERS TRUFFLE CRISP~^^^~Y~^^0^^6.25^^^ -~19916~^~1900~^~Syrups, chocolate, HERSHEY'S Sugar free, Genuine Chocolate Flavored, Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S SUGAR FREE,GENUINE CHOC FLAV,LITE SYRU~^^^~Y~^^0^^6.25^^^ -~19917~^~1900~^~Candies, M&M MARS Pretzel Chocolate Candies~^~CANDIES,M&M MARS PRETZEL CHOC CANDIES~^^^~Y~^^0^^6.25^^^ -~19918~^~1900~^~Sweetener, herbal extract powder from Stevia leaf~^~SWEETENER,HERBAL EXTRACT PDR FROM STEVIA LEAF~^^^~Y~^^0^^6.25^^^ -~19919~^~1900~^~Candies, fruit snacks, with high vitamin C~^~CANDIES,FRUIT SNACKS,W/ HI VIT C~^^^~Y~^^0^^6.25^^^ -~19920~^~1900~^~Jams, preserves, marmalades, sweetened with fruit juice~^~JAMS,PRESERVES,MARMALADES,SWTND W/ FRUIT JUC~^^^~Y~^^0^^6.25^^^ -~19921~^~1900~^~Candies, Tamarind~^~CANDIES,TAMARIND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~19922~^~1900~^~Candies, coconut bar, not chocolate covered~^~CANDIES,COCNT BAR,NOT CHOC COVERED~^^^~Y~^^0^^6.25^^^ -~19923~^~1900~^~Candies, HERSHEYS, PAYDAY Bar~^~CANDIES,HERSHEYS,PAYDAY BAR~^^^~Y~^^0^^6.25^^^ -~19924~^~1900~^~Syrup, NESTLE, chocolate~^~SYRUP,NESTLE,CHOC~^^^~Y~^^0^^6.25^^^ -~20001~^~2000~^~Amaranth grain, uncooked~^~AMARANTH GRAIN,UNCKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20002~^~2000~^~Amaranth grain, cooked~^~AMARANTH GRAIN,CKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20003~^~2000~^~Arrowroot flour~^~ARROWROOT FLOUR~^^^^^0^^6.25^2.78^8.37^4.03 -~20004~^~2000~^~Barley, hulled~^~BARLEY,HULLED~^^^^^0^~Hordeum vulgare L.~^5.83^3.55^8.37^3.95 -~20005~^~2000~^~Barley, pearled, raw~^~BARLEY,PEARLED,RAW~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20006~^~2000~^~Barley, pearled, cooked~^~BARLEY,PEARLED,COOKED~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20008~^~2000~^~Buckwheat~^~BUCKWHEAT~^^^^^0^~Fagopyrum esculentum Moench~^6.25^3.37^8.37^3.78 -~20009~^~2000~^~Buckwheat groats, roasted, dry~^~BUCKWHEAT GROATS,RSTD,DRY~^~kasha~^^^^0^^6.25^3.37^8.37^3.78 -~20010~^~2000~^~Buckwheat groats, roasted, cooked~^~BUCKWHEAT GROATS,RSTD,CKD~^~kasha~^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20011~^~2000~^~Buckwheat flour, whole-groat~^~BUCKWHEAT FLR,WHOLE-GROAT~^^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20012~^~2000~^~Bulgur, dry~^~BULGUR,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20013~^~2000~^~Bulgur, cooked~^~BULGUR,COOKED~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20014~^~2000~^~Corn grain, yellow~^~CORN GRAIN,YEL~^~dent corn, field corn~^^^^0^~Zea mays mays L.~^6.25^2.73^8.37^4.03 -~20015~^~2000~^~Corn bran, crude~^~CORN BRAN,CRUDE~^^^~Y~^^0^^6.25^1.82^8.37^2.35 -~20016~^~2000~^~Corn flour, whole-grain, yellow~^~CORN FLR,WHOLE-GRAIN,YEL~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20017~^~2000~^~Corn flour, masa, enriched, white~^~CORN FLR,MASA,ENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20018~^~2000~^~Corn flour, yellow, degermed, unenriched~^~CORN FLR,YEL,DEGERMED,UNENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20019~^~2000~^~Corn flour, masa, unenriched, white~^~CORN FLR,MASA,UNENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20020~^~2000~^~Cornmeal, whole-grain, yellow~^~CORNMEAL,WHOLE-GRAIN,YEL~^^^^^0^^6.25^2.73^8.37^4.03 -~20022~^~2000~^~Cornmeal, degermed, enriched, yellow~^~CORNMEAL,DEGERMED,ENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20023~^~2000~^~Cornmeal, yellow, self-rising, bolted, plain, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20024~^~2000~^~Cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20025~^~2000~^~Cornmeal, yellow, self-rising, degermed, enriched~^~CORNMEAL,YEL,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20027~^~2000~^~Cornstarch~^~CORNSTARCH~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20028~^~2000~^~Couscous, dry~^~COUSCOUS,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~20029~^~2000~^~Couscous, cooked~^~COUSCOUS,COOKED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20030~^~2000~^~Hominy, canned, white~^~HOMINY,CANNED,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20031~^~2000~^~Millet, raw~^~MILLET,RAW~^^^^^0^~Panicum miliaceum L.~^5.83^3.87^8.37^4.12 -~20032~^~2000~^~Millet, cooked~^~MILLET,COOKED~^^^~Y~^^0^^5.83^3.87^8.37^4.12 -~20033~^~2000~^~Oat bran, raw~^~OAT BRAN,RAW~^^^~Y~^^0^^5.83^1.82^8.37^2.35 -~20034~^~2000~^~Oat bran, cooked~^~OAT BRAN,COOKED~^^^^^0^^5.83^1.82^8.37^2.35 -~20035~^~2000~^~Quinoa, uncooked~^~QUINOA,UNCKD~^^^^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20036~^~2000~^~Rice, brown, long-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,RAW~^^^~Y~^^0^~Oryza sativa L.~^5.95^3.41^8.37^4.12 -~20037~^~2000~^~Rice, brown, long-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,CKD~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~20038~^~2000~^~Oats (Includes foods for USDA's Food Distribution Program)~^~OATS~^^^^^0^~Avena sativa L.~^5.83^3.46^8.37^4.12 -~20040~^~2000~^~Rice, brown, medium-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,RAW~^^^^^0^^5.95^3.41^8.37^4.12 -~20041~^~2000~^~Rice, brown, medium-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,CKD~^^^^^0^^5.95^3.41^8.37^4.12 -~20042~^~2000~^~Rice, brown, parboiled, dry, UNCLE BEN'S~^~RICE,BROWN,PARBLD,DRY,UNCLE BEN'S~^^~Mars Food US~^^^0^^^^^ -~20044~^~2000~^~Rice, white, long-grain, regular, raw, enriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,ENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20045~^~2000~^~Rice, white, long-grain, regular, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,REG,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20046~^~2000~^~Rice, white, long-grain, parboiled, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20047~^~2000~^~Rice, white, long-grain, parboiled, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20048~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20049~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, prepared~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,PREP~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20050~^~2000~^~Rice, white, medium-grain, raw, enriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,ENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20051~^~2000~^~Rice, white, medium-grain, enriched, cooked~^~RICE,WHITE,MEDIUM-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20052~^~2000~^~Rice, white, short-grain, enriched, uncooked~^~RICE,WHITE,SHORT-GRAIN,ENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20053~^~2000~^~Rice, white, short-grain, enriched, cooked~^~RICE,WHITE,SHORT-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20054~^~2000~^~Rice, white, glutinous, unenriched, uncooked~^~RICE,WHITE,GLUTINOUS,UNENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20055~^~2000~^~Rice, white, glutinous, unenriched, cooked~^~RICE,WHITE,GLUTINOUS,UNENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20058~^~2000~^~Rice, white, steamed, Chinese restaurant~^~RICE,WHITE,STMD,CHINESE RESTAURANT~^^^^^0^^^^^ -~20060~^~2000~^~Rice bran, crude~^~RICE BRAN,CRUDE~^^^~Y~^^0^^5.95^1.82^8.37^2.35 -~20061~^~2000~^~Rice flour, white, unenriched~^~RICE FLR,WHITE,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20062~^~2000~^~Rye grain~^~RYE GRAIN~^^^~Y~^^0^~Secale cereale L.~^5.83^3.05^8.37^3.86 -~20063~^~2000~^~Rye flour, dark~^~RYE FLOUR,DARK~^^^~Y~^^0^^5.83^2.96^8.37^3.78 -~20064~^~2000~^~Rye flour, medium~^~RYE FLOUR,MEDIUM~^^^~Y~^^0^^5.83^3.23^8.37^3.99 -~20065~^~2000~^~Rye flour, light~^~RYE FLOUR,LIGHT~^^^~Y~^^0^^5.83^3.41^8.37^4.07 -~20066~^~2000~^~Semolina, enriched~^~SEMOLINA,ENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20067~^~2000~^~Sorghum grain~^~SORGHUM GRAIN~^^^^^0^~Sorghum spp.~^6.25^0.91^8.37^4.03 -~20068~^~2000~^~Tapioca, pearl, dry~^~TAPIOCA,PEARL,DRY~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~20069~^~2000~^~Triticale~^~TRITICALE~^^^^^0^~X Triticosecale spp.~^5.83^3.32^8.37^3.82 -~20070~^~2000~^~Triticale flour, whole-grain~^~TRITICALE FLR,WHOLE-GRAIN~^^^^^0^^5.83^3.32^8.37^3.82 -~20071~^~2000~^~Wheat, hard red spring~^~WHEAT,HARD RED SPRING~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20072~^~2000~^~Wheat, hard red winter~^~WHEAT,HARD RED WINTER~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20073~^~2000~^~Wheat, soft red winter~^~WHEAT,SOFT RED WINTER~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20074~^~2000~^~Wheat, hard white~^~WHEAT,HARD WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20075~^~2000~^~Wheat, soft white~^~WHEAT,SOFT WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20076~^~2000~^~Wheat, durum~^~WHEAT,DURUM~^^^^^0^~Triticum durum Desf.~^5.83^3.59^8.37^3.78 -~20077~^~2000~^~Wheat bran, crude~^~WHEAT BRAN,CRUDE~^^^~Y~^^0^^6.31^1.82^8.37^2.35 -~20078~^~2000~^~Wheat germ, crude~^~WHEAT GERM,CRUDE~^^^^^0^^5.80^3.59^8.37^3.78 -~20080~^~2000~^~Wheat flour, whole-grain (Includes foods for USDA's Food Distribution Program)~^~WHEAT FLOUR,WHOLE-GRAIN~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20081~^~2000~^~Wheat flour, white, all-purpose, enriched, bleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,BLEACHED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20082~^~2000~^~Wheat flour, white, all-purpose, self-rising, enriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,SELF-RISING,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20083~^~2000~^~Wheat flour, white, bread, enriched~^~WHEAT FLR,WHITE,BREAD,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20084~^~2000~^~Wheat flour, white, cake, enriched~^~WHEAT FLR,WHITE,CAKE,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20086~^~2000~^~Wheat flour, white, tortilla mix, enriched~^~WHEAT FLR,WHITE,TORTILLA MIX,ENR~^^^^^0^^5.70^4.05^8.37^4.12 -~20087~^~2000~^~Wheat, sprouted~^~WHEAT,SPROUTED~^^^^^0^^5.83^3.59^8.37^3.78 -~20088~^~2000~^~Wild rice, raw~^~WILD RICE,RAW~^^^~Y~^^0^~Zizania spp.~^6.25^3.55^8.37^3.95 -~20089~^~2000~^~Wild rice, cooked~^~WILD RICE,COOKED~^^^~Y~^^0^^6.25^3.55^8.37^3.95 -~20090~^~2000~^~Rice flour, brown~^~RICE FLOUR,BROWN~^^^^^0^^5.95^3.41^8.37^4.12 -~20091~^~2000~^~Pasta, gluten-free, corn, dry~^~PASTA,GLUTEN-FREE,CORN,DRY~^^^^^0^^6.25^2.73^8.37^4.03 -~20092~^~2000~^~Pasta, gluten-free, corn, cooked~^~PASTA,GLUTEN-FREE,CORN,CKD~^^^^^0^^6.25^2.73^8.37^4.03 -~20093~^~2000~^~Pasta, fresh-refrigerated, plain, as purchased~^~PASTA,FRESH-REFRIGERATED,PLN,AS PURCHASED~^^^^^0^^5.78^3.93^8.41^4.09 -~20094~^~2000~^~Pasta, fresh-refrigerated, plain, cooked~^~PASTA,FRESH-REFRIGERATED,PLN,CKD~^^^^^0^^5.78^3.93^8.41^4.09 -~20095~^~2000~^~Pasta, fresh-refrigerated, spinach, as purchased~^~PASTA,FRESH-REFRIGERATED,SPINACH,AS PURCHASED~^^^^^0^^5.79^3.88^8.41^4.08 -~20096~^~2000~^~Pasta, fresh-refrigerated, spinach, cooked~^~PASTA,FRESH-REFRIGERATED,SPINACH,CKD~^^^^^0^^5.79^3.88^8.41^4.08 -~20097~^~2000~^~Pasta, homemade, made with egg, cooked~^~PASTA,HOMEMADE,MADE W/EGG,CKD~^^^^^0^^5.73^3.93^8.41^4.09 -~20098~^~2000~^~Pasta, homemade, made without egg, cooked~^~PASTA,HOMEMADE,MADE WO/EGG,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20105~^~2000~^~Macaroni, vegetable, enriched, dry~^~MACARONI,VEG,ENR,DRY~^^^^^0^^5.72^3.86^8.37^4.11 -~20106~^~2000~^~Macaroni, vegetable, enriched, cooked~^~MACARONI,VEG,ENR,CKD~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20109~^~2000~^~Noodles, egg, dry, enriched~^~NOODLES,EGG,DRY,ENRICHED~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20110~^~2000~^~Noodles, egg, enriched, cooked~^~NOODLES,EGG,ENR,CKD~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20111~^~2000~^~Noodles, egg, spinach, enriched, dry~^~NOODLES,EGG,SPINACH,ENR,DRY~^^^^^0^^5.79^3.88^8.41^4.08 -~20112~^~2000~^~Noodles, egg, spinach, enriched, cooked~^~NOODLES,EGG,SPINACH,ENR,CKD~^^^~Y~^^0^^5.79^3.88^8.41^4.08 -~20113~^~2000~^~Noodles, chinese, chow mein~^~NOODLES,CHINESE,CHOW MEIN~^^^~Y~^^0^^^^^ -~20114~^~2000~^~Noodles, japanese, soba, dry~^~NOODLES,JAPANESE,SOBA,DRY~^^^^^0^^6.06^3.37^8.37^3.78 -~20115~^~2000~^~Noodles, japanese, soba, cooked~^~NOODLES,JAPANESE,SOBA,CKD~^^^^^0^^6.06^3.37^8.37^3.78 -~20116~^~2000~^~Noodles, japanese, somen, dry~^~NOODLES,JAPANESE,SOMEN,DRY~^^^^^0^^5.70^3.91^8.37^4.12 -~20117~^~2000~^~Noodles, japanese, somen, cooked~^~NOODLES,JAPANESE,SOMEN,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20118~^~2000~^~Noodles, flat, crunchy, Chinese restaurant~^~NOODLES,FLAT,CRUNCHY,CHINESE RESTAURANT~^^^~Y~^^0^^5.73^4.05^8.37^4.12 -~20120~^~2000~^~Pasta, dry, enriched~^~PASTA,DRY,ENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, penne, rotini, farfalle, shells~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20121~^~2000~^~Pasta, cooked, enriched, without added salt~^~PASTA,CKD,ENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20124~^~2000~^~Pasta, whole-wheat, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,DRY~^~spaghetti, elbow macaroni, penne, farfalle, lasagna, shells, macaroni product~^^^^0^^5.83^3.59^8.37^3.78 -~20125~^~2000~^~Pasta, whole-wheat, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, farfalle, lasagna, rotini, shells~^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20126~^~2000~^~Spaghetti, spinach, dry~^~SPAGHETTI,SPINACH,DRY~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20127~^~2000~^~Spaghetti, spinach, cooked~^~SPAGHETTI,SPINACH,COOKED~^^^^^0^^5.72^3.86^8.37^4.11 -~20129~^~2000~^~Wheat flours, bread, unenriched~^~WHEAT FLOURS,BREAD,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20130~^~2000~^~Barley flour or meal~^~BARLEY FLOUR OR MEAL~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20131~^~2000~^~Barley malt flour~^~BARLEY MALT FLR~^^^^^0^^5.83^3.55^8.37^3.95 -~20132~^~2000~^~Oat flour, partially debranned~^~OAT FLR,PART DEBRANNED~^^^~Y~^^0^^^^^ -~20133~^~2000~^~Rice noodles, dry~^~RICE NOODLES,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20134~^~2000~^~Rice noodles, cooked~^~RICE NOODLES,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20135~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, farfalle, rotini, lasagna, shells, penne~^^^^0^^^3.78^8.37^3.95 -~20136~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, shells, penne, rotini, lasagna, farfalle~^^^^0^^^3.78^8.37^3.95 -~20137~^~2000~^~Quinoa, cooked~^~QUINOA,CKD~^^^~Y~^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20138~^~2000~^~Wheat, KAMUT khorasan, uncooked~^~WHEAT,KAMUT KHORASAN,UNCKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20139~^~2000~^~Wheat, KAMUT khorasan, cooked~^~WHEAT,KAMUT KHORASAN,CKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20140~^~2000~^~Spelt, uncooked~^~SPELT,UNCKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20141~^~2000~^~Spelt, cooked~^~SPELT,CKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20142~^~2000~^~Teff, uncooked~^~TEFF,UNCKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20143~^~2000~^~Teff, cooked~^~TEFF,CKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20310~^~2000~^~Noodles, egg, cooked, enriched, with added salt~^~NOODLES,EGG,CKD,ENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20314~^~2000~^~Corn grain, white~^~CORN GRAIN,WHITE~^~dent corn, field corn~^^^^0^^6.25^2.73^8.37^4.03 -~20315~^~2000~^~Corn flour, whole-grain, blue (harina de maiz morado)~^~CORN FLR,WHOLE-GRAIN,BLUE (HARINA DE MAIZ MORADO)~^^^^^0^^6.25^2.73^8.37^4.03 -~20316~^~2000~^~Corn flour, whole-grain, white~^~CORN FLR,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20317~^~2000~^~Corn flour, yellow, masa, enriched~^~CORN FLR,YEL,MASA,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20320~^~2000~^~Cornmeal, whole-grain, white~^~CORNMEAL,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20321~^~2000~^~Pasta, cooked, enriched, with added salt~^~PASTA,CKD,ENR,W/ ADDED SALT~^~spaghetti, elbow macaroni, lasagna, macaroni product, rotini, farfalle, penne, shells~^^^^0^^5.70^3.91^8.37^4.12 -~20322~^~2000~^~Cornmeal, degermed, enriched, white~^~CORNMEAL,DEGERMED,ENR,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20323~^~2000~^~Cornmeal, white, self-rising, bolted, plain, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20324~^~2000~^~Cornmeal, white, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20325~^~2000~^~Cornmeal, white, self-rising, degermed, enriched~^~CORNMEAL,WHITE,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20330~^~2000~^~Hominy, canned, yellow~^~HOMINY,CANNED,YELLOW~^^^^^0^^6.25^3.46^8.37^4.16 -~20345~^~2000~^~Rice, white, long-grain, regular, cooked, enriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,ENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20381~^~2000~^~Wheat flour, white, all-purpose, enriched, calcium-fortified~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,CALCIUM-FORTIFIED~^^^^^0^^5.70^4.05^8.37^4.12 -~20409~^~2000~^~Noodles, egg, dry, unenriched~^~NOODLES,EGG,DRY,UNENR~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20410~^~2000~^~Noodles, egg, unenriched, cooked, without added salt~^~NOODLES,EGG,UNENR,CKD,WO/ ADDED SALT~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20420~^~2000~^~Pasta, dry, unenriched~^~PASTA,DRY,UNENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, rotini, shells, farfalle, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20421~^~2000~^~Pasta, cooked, unenriched, without added salt~^~PASTA,CKD,UNENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, penne, shells, farfalle, rotini, lasagna~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20422~^~2000~^~Cornmeal, degermed, unenriched, yellow~^~CORNMEAL,DEGERMED,UNENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20444~^~2000~^~Rice, white, long-grain, regular, raw, unenriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20445~^~2000~^~Rice, white, long-grain, regular, unenriched, cooked without salt~^~RICE,WHITE,LONG-GRAIN,REG,UNENR,CKD WO/ SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20446~^~2000~^~Rice, white, long-grain, parboiled, unenriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20447~^~2000~^~Rice, white, long-grain, parboiled, unenriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20450~^~2000~^~Rice, white, medium-grain, raw, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20451~^~2000~^~Rice, white, medium-grain, cooked, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20452~^~2000~^~Rice, white, short-grain, raw, unenriched~^~RICE,WHITE,SHORT-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20453~^~2000~^~Rice, white, short-grain, cooked, unenriched~^~RICE,WHITE,SHORT-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20466~^~2000~^~Semolina, unenriched~^~SEMOLINA,UNENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20481~^~2000~^~Wheat flour, white, all-purpose, unenriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20510~^~2000~^~Noodles, egg, cooked, unenriched, with added salt~^~NOODLES,EGG,CKD,UNENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20521~^~2000~^~Pasta, cooked, unenriched, with added salt~^~PASTA,CKD,UNENR,W/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20522~^~2000~^~Cornmeal, degermed, unenriched, white~^~CORNMEAL,DEGERMED,UNENR,WHITE~^^^^^0^^6.25^3.46^8.37^4.16 -~20523~^~2000~^~Spaghetti, protein-fortified, cooked, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,CKD,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20545~^~2000~^~Rice, white, long-grain, regular, cooked, unenriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,UNENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20581~^~2000~^~Wheat flour, white, all-purpose, enriched, unbleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,UNBLEACHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20622~^~2000~^~Spaghetti, protein-fortified, dry, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,DRY,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20623~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20624~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20628~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20629~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20630~^~2000~^~Wheat flour, white (industrial), 10% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20634~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20635~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20636~^~2000~^~Wheat flour, white (industrial), 11.5% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20640~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20641~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20645~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20646~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20647~^~2000~^~Millet flour~^~MILLET FLR~^^^^^0^^5.83^4.00^9.00^4.00 -~20648~^~2000~^~Sorghum flour, whole-grain~^~SORGHUM FLR,WHOLE-GRAIN~^^^^^0^^6.25^2.28^8.37^4.07 -~20649~^~2000~^~Wheat flour, whole-grain, soft wheat~^~WHEAT FLR,WHOLE-GRAIN,SOFT WHEAT~^^^^^0^^^3.59^8.37^3.78 -~20650~^~2000~^~Sorghum flour, refined, unenriched~^~SORGHUM FLR,REFINED,UNENR~^^^^^0^^6.25^^^ -~20651~^~2000~^~Rice, brown, parboiled, cooked, UNCLE BENS~^~RICE,BROWN,PARBLD,CKD,UNCLE BENS~^^~Mars Food US~^^^0^^^3.41^8.37^4.12 -~20652~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, lasagna, shells, farfalle, rotini~^^^^0^^^3.78^8.37^3.95 -~20653~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, penne, shells~^^^^0^^^3.78^8.37^3.95 -~20654~^~2000~^~Pasta, gluten-free, brown rice flour, cooked, TINKYADA~^~PASTA,GLUTEN-FREE,BROWN RICE FLR,CKD,TINKYADA~^^~Tinkyada~^~Y~^^0^^5.95^4.12^8.37^3.41 -~20655~^~2000~^~Pasta, gluten-free, corn flour and quinoa flour, cooked, ANCIENT HARVEST~^~PASTA,GLUTEN-FREE,CORN FLR & QUINOA FLR,CKD,ANCIENT HARVEST~^^~Ancient Harvest~^~Y~^^0^^6.25^3.78^8.37^3.95 -~20656~^~2000~^~Pasta, gluten-free, rice flour and rice bran extract, cooked, DE BOLES~^~PASTA,GLUTEN-FREE,RICE FLR & RICE BRAN EXTRACT,CKD,DE BOLES~^^~De Boles~^^^0^^5.95^3.82^8.37^4.16 -~20657~^~2000~^~Pasta, gluten-free, corn and rice flour, cooked~^~PASTA,GLUTEN-FREE,CORN & RICE FLR,CKD~^^~Barilla~^~Y~^^0^^5.95^3.82^8.37^4.16 -~21003~^~2100~^~Fast foods, biscuit, with egg and bacon~^~FAST FOODS,BISCUIT,W/EGG&BACON~^^^~Y~^^0^^6.12^4.18^8.80^3.94 -~21004~^~2100~^~Fast foods, biscuit, with egg and ham~^~FAST FOODS,BISCUIT,W/EGG&HAM~^^^~Y~^^0^^6.09^4.15^8.80^3.94 -~21005~^~2100~^~Fast Foods, biscuit, with egg and sausage~^~BREAKFAST ITEMS,BISCUIT W/EGG&SAUSAGE~^^^~Y~^^0^^6.06^4.13^8.80^3.95 -~21007~^~2100~^~Fast foods, biscuit, with egg, cheese, and bacon~^~FAST FOODS,BISCUIT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.19^4.22^8.80^3.94 -~21008~^~2100~^~Fast foods, biscuit, with ham~^~FAST FOODS,BISCUIT,W/HAM~^^^~Y~^^0^^5.98^4.03^8.67^3.95 -~21009~^~2100~^~Fast foods, biscuit, with sausage~^~FAST FOODS,BISCUIT,W/SAUSAGE~^^^~Y~^^0^^5.87^4.01^8.75^3.95 -~21010~^~2100~^~Fast foods, biscuit, with crispy chicken fillet~^~FAST FOODS,BISCUIT,W/ CRISPY CHICK FILLET~^^^~Y~^^0^^6.04^4.08^8.74^3.95 -~21012~^~2100~^~Fast foods, croissant, with egg, cheese, and bacon~^~FAST FOODS,CROISSANT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.13^4.22^8.83^3.99 -~21013~^~2100~^~Fast foods, croissant, with egg, cheese, and ham~^~FAST FOODS,CROISSANT,W/EGG,CHS,&HAM~^^^~Y~^^0^^6.16^4.23^8.88^3.99 -~21014~^~2100~^~Fast foods, croissant, with egg, cheese, and sausage~^~FAST FOODS,CROISSANT,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.15^4.22^8.89^3.99 -~21018~^~2100~^~Fast foods, egg, scrambled~^~FAST FOODS,EGG,SCRAMBLED~^^^~Y~^^0^^6.26^4.35^8.92^3.80 -~21020~^~2100~^~Fast foods, english muffin, with cheese and sausage~^~FAST FOODS,ENG MUFFIN,W/CHS&SAUSAGE~^^^~Y~^^0^^6.13^4.12^8.89^3.94 -~21021~^~2100~^~Fast foods, english muffin, with egg, cheese, and canadian bacon~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&CANADIAN BACON~^^^~Y~^^0^^^^^ -~21022~^~2100~^~Fast foods, english muffin, with egg, cheese, and sausage~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.17^4.19^8.90^3.94 -~21024~^~2100~^~Fast foods, french toast sticks~^~FAST FOODS,FRENCH TOAST STKS~^^^~Y~^^0^^5.73^3.61^8.83^3.92 -~21026~^~2100~^~Fast foods, potatoes, hash browns, round pieces or patty~^~FAST FOODS,POTATOES,HASH BROWNS,RND PIECES OR PATTY~^^^~Y~^^0^^6.25^4.00^9.00^3.77 -~21028~^~2100~^~Fast foods, vanilla, light, soft-serve ice cream, with cone~^~FAST FOODS,VANILLA,LT,SOFT-SERVE ICE CRM,W/ CONE~^^^~Y~^^0^^6.29^4.20^8.78^3.88 -~21032~^~2100~^~Fast foods, sundae, caramel~^~FAST FOODS,SUNDAE,CARAMEL~^^^^^0^^6.38^4.27^8.79^3.87 -~21033~^~2100~^~Fast foods, sundae, hot fudge~^~FAST FOODS,SUNDAE,HOT FUDGE~^^^^^0^^6.38^4.27^8.79^3.87 -~21034~^~2100~^~Fast foods, sundae, strawberry~^~FAST FOODS,SUNDAE,STRAWBERRY~^^^^^0^^6.38^4.27^8.79^3.87 -~21059~^~2100~^~Fast foods, shrimp, breaded and fried~^~FAST FOODS,SHRIMP,BREADED&FRIED~^^^~Y~^^0^^6.22^4.23^8.89^3.83 -~21060~^~2100~^~Fast foods, burrito, with beans~^~FAST FOODS,BURRITO,W/BNS~^^^^^0^^5.88^3.68^8.37^3.96 -~21061~^~2100~^~Fast foods, burrito, with beans and cheese~^~FAST FOODS,BURRITO,W/BNS&CHS~^^^~Y~^^0^^6.11^3.76^8.71^3.98 -~21063~^~2100~^~Fast foods, burrito, with beans and beef~^~FAST FOODS,BURRITO,W/ BNS & BF~^^^~Y~^^0^^6.14^4.02^8.73^3.97 -~21064~^~2100~^~Fast foods, burrito, with beans, cheese, and beef~^~FAST FOODS,BURRITO,W/BNS,CHS,&BF~^^^~Y~^^0^^6.17^3.96^8.72^3.97 -~21078~^~2100~^~Fast foods, nachos, with cheese~^~FAST FOODS,NACHOS,W/CHS~^^^~Y~^^0^^6.30^3.73^8.48^4.15 -~21080~^~2100~^~Fast foods, nachos, with cheese, beans, ground beef, and tomatoes~^~FAST FOODS,NACHOS,W/ CHS,BNS,GROUND BF,& TOMATOES~^^^~Y~^^0^^6.37^3.83^8.53^4.13 -~21082~^~2100~^~Fast foods, taco with beef, cheese and lettuce, hard shell~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,HARD SHELL~^^^~Y~^^0^^6.29^4.05^8.78^3.97 -~21089~^~2100~^~Fast foods, cheeseburger; single, regular patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21090~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21091~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments and vegetables~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT & VEG~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21094~^~2100~^~Fast foods, cheeseburger, double, regular patty and bun, with condiments~^~FAST FOODS,CHEESEBURGER,DOUBLE,REG PATTY & BUN,W/ CONDMNT~^^^~Y~^^0^^^^^ -~21096~^~2100~^~Fast foods, cheeseburger; single, large patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; PLN~^^^~Y~^^0^^6.20^4.20^8.92^3.95 -~21102~^~2100~^~Fast foods, chicken fillet sandwich, plain with pickles~^~FAST FOODS,CHICK FILLET SNDWCH,PLN W/ PICKLES~^^^~Y~^^0^^6.15^4.18^8.88^3.95 -~21105~^~2100~^~Fast foods, fish sandwich, with tartar sauce~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU~^^^~Y~^^0^^6.07^4.11^8.79^3.93 -~21106~^~2100~^~Fast foods, fish sandwich, with tartar sauce and cheese~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU&CHS~^^^~Y~^^0^^6.11^4.12^8.81^3.93 -~21107~^~2100~^~Fast foods, hamburger; single, regular patty; plain~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.03^4.07^8.81^3.95 -~21108~^~2100~^~Fast foods, hamburger; single, regular patty; with condiments~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21121~^~2100~^~Fast foods, roast beef sandwich, plain~^~FAST FOODS,RST BF SNDWCH,PLN~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21124~^~2100~^~Fast foods, submarine sandwich, cold cut on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,COLD CUT BRD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.09^4.12^8.85^3.94 -~21125~^~2100~^~Fast foods, submarine sandwich, roast beef on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,RST BF BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21126~^~2100~^~Fast foods, submarine sandwich, tuna on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TUNA BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.05^4.09^8.74^3.93 -~21127~^~2100~^~Fast foods, coleslaw~^~FAST FOODS, COLESLAW~^^^^^0^^^^^ -~21129~^~2100~^~Fast foods, hush puppies~^~FAST FOODS,HUSH PUPPIES~^^^~Y~^^0^^6.25^2.73^8.84^4.03 -~21130~^~2100~^~Fast foods, onion rings, breaded and fried~^~FAST FOODS,ONION RINGS,BREADED&FRIED~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~21138~^~2100~^~Fast foods, potato, french fried in vegetable oil~^~FST FOODS, POTATO, FRNCH FRIED IN VEG OIL~^^^~Y~^^0^^^^^ -~21139~^~2100~^~Fast foods, potato, mashed~^~FAST FOODS,POTATO,MASHED~^^^~Y~^^0^^6.25^2.78^8.84^4.03 -~21141~^~2100~^~BURGER KING, Vanilla Shake~^~BURGER KING,VANILLA SHAKE~^^~Burger King Corporation~^^^0^^6.38^4.00^9.00^4.00 -~21142~^~2100~^~Fast food, biscuit~^~FAST FD,BISCUIT~^^^~Y~^^0^^^^^ -~21143~^~2100~^~CHICK-FIL-A, Chick-n-Strips~^~CHICK-FIL-A,CHICK-N-STRIPS~^^~Chick-Fil-A~^^^0^^^^^ -~21144~^~2100~^~CHICK-FIL-A, hash browns~^~CHICK-FIL-A,HASH BROWNS~^^~Chick-Fil-A~^^^0^^^^^ -~21145~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Cheese Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S LS 16" 51% WHL CHS PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21146~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Turkey Pepperoni Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S 51% WHL TRKY PEP PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21147~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Cheese Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21148~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Pepperoni Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PEP PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21149~^~2100~^~School Lunch, pizza, TONY'S Breakfast Pizza Sausage, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S BRKFST PIZZA SAUSAGE,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21150~^~2100~^~SUBWAY, sweet onion chicken teriyaki sub on white bread with lettuce, tomato and sweet onion sauce~^~SUBWAY,SWT ONION CHICK SUB WHT BRD LTTC,TMT & SWT ONION SAU~^^~Subway~^^^0^^^^^ -~21151~^~2100~^~Fast foods, submarine sandwich, sweet onion chicken teriyaki on white bread with lettuce, tomato and sweet onion sauce~^~FAST FOODS,SUB,SWT ONION CHICK WIT BRD W/ LTTC,TMT SWT ONION~^^^~Y~^^0^^^4.00^9.00^4.00 -~21152~^~2100~^~SUBWAY, SUBWAY CLUB sub on white bread with lettuce and tomato~^~SUBWAY,SUBWAY CLUB SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21153~^~2100~^~Fast foods, submarine sandwich, turkey, roast beef and ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY RST BF HM BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21154~^~2100~^~Fast foods, submarine sandwich, oven roasted chicken on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,OVEN RSTD CHCK WHT BRD LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21155~^~2100~^~Fast foods, submarine sandwich, turkey breast on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY BRST WHT BRD LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21156~^~2100~^~Fast foods, submarine sandwich, ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,HAM ON WHT BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21157~^~2100~^~SUBWAY, meatball marinara sub on white bread (no toppings)~^~SUBWAY,MEATBALL MARINARA SUB ON WHITE BREAD (NO TOPPINGS)~^^~Subway~^^^0^^^^^ -~21158~^~2100~^~Fast foods, submarine sandwich, meatball marinara on white bread~^~FAST FOODS,SUBMARINE SNDWCH,MEATBALL MARINARA ON WHITE BREAD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21159~^~2100~^~SUBWAY, steak & cheese sub on white bread with American cheese, lettuce and tomato~^~SUBWAY,STEAK & CHS SUB ON WHT BRD W/ AMERICAN CHS,LTTC & TMT~^^~Subway~^^^0^^^^^ -~21160~^~2100~^~Fast foods, submarine sandwich, steak and cheese on white bread with cheese, lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,STK CHS WHT BRD W/ CHS,LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21161~^~2100~^~SUBWAY, B.L.T. sub on white bread with bacon, lettuce and tomato~^~SUBWAY,B.L.T. SUB ON WHITE BREAD W/ BACON,LETTUCE & TOMATO~^~BLT~^~Subway~^^^0^^^^^ -~21162~^~2100~^~Fast foods, submarine sandwich, bacon, lettuce, and tomato on white bread~^~FAST FOODS,SUBMARINE SNDWCH,BACON,LETTUCE,& TOMATO WHT BRD~^~BLT~^^~Y~^^0^^^4.00^9.00^4.00 -~21202~^~2100~^~Fast foods, hamburger, large, single patty, with condiments~^~FAST FOODS,HAMBURGER,LRG,SINGLE PATTY,W/CONDMNT~^^^~Y~^^0^^^^^ -~21207~^~2100~^~SUBWAY, turkey breast sub on white bread with lettuce and tomato~^~SUBWAY,TURKEY BREAST SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21209~^~2100~^~SUBWAY, black forest ham sub on white bread with lettuce and tomato~^~SUBWAY,BLACK FOREST HAM SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21210~^~2100~^~SUBWAY, roast beef sub on white bread with lettuce and tomato~^~SUBWAY,RST BF SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21211~^~2100~^~SUBWAY, oven roasted chicken sub on white bread with lettuce and tomato~^~SUBWAY,OVEN RSTD CHICK SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21213~^~2100~^~SUBWAY, cold cut sub on white bread with lettuce and tomato~^~SUBWAY,COLD CUT SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21214~^~2100~^~SUBWAY, tuna sub on white bread with lettuce and tomato~^~SUBWAY,TUNA SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21224~^~2100~^~Pizza, cheese topping, regular crust, frozen, cooked~^~PIZZA,CHS TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21225~^~2100~^~Pizza, cheese topping, rising crust, frozen, cooked~^~PIZZA,CHS TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21226~^~2100~^~Pizza, meat and vegetable topping, regular crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21227~^~2100~^~Pizza, meat and vegetable topping, rising crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21228~^~2100~^~McDONALD'S, Hamburger~^~MCDONALD'S,HAMBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21229~^~2100~^~Fast foods, chicken, breaded and fried, boneless pieces, plain~^~FAST FOODS,CHICK,BREADED & FRIED,BNLESS PIECES,PLN~^~nuggets~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21230~^~2100~^~Fast Foods, crispy chicken filet sandwich, with lettuce and mayonnaise~^~FAST FOODS,CRISPY CHICK FILET SNDWCH,W/ LETTUCE & MAYO~^^^~Y~^^0^^^4.00^9.00^4.00 -~21232~^~2100~^~McDONALD'S, FILET-O-FISH~^~MCDONALD'S, FLT-O-FSH~^^~McDonald's Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21233~^~2100~^~McDONALD'S, Cheeseburger~^~MCDONALD'S, CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21234~^~2100~^~McDONALD'S, QUARTER POUNDER~^~MCDONALD'S,QUARTER POUNDER~^^~McDonald's Corporation~^^^0^^^^^ -~21235~^~2100~^~McDONALD'S, QUARTER POUNDER with Cheese~^~MCDONALD'S,QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21237~^~2100~^~McDONALD'S, BIG MAC~^~MCDONALD'S,BIG MAC~^^~McDonald's Corporation~^^^0^^^^^ -~21238~^~2100~^~McDONALD'S, french fries~^~MCDONALD'S,FRENCH FR~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21239~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, no cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,NO CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21240~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, with cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21241~^~2100~^~WENDY'S, Jr. Hamburger, without cheese~^~WENDY'S,JR. HAMBURGER,WO/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21242~^~2100~^~WENDY'S, Jr. Hamburger, with cheese~^~WENDY'S,JR. HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21243~^~2100~^~WENDY'S, CLASSIC DOUBLE, with cheese~^~WENDY'S,CLASSIC DOUBLE,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21244~^~2100~^~WENDY'S, Homestyle Chicken Fillet Sandwich~^~WENDY'S,HOMESTYLE CHICK FILLET SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21245~^~2100~^~WENDY'S, Ultimate Chicken Grill Sandwich~^~WENDY'S,ULTIMATE CHICK GRILL SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21246~^~2100~^~WENDY'S, Chicken Nuggets~^~WENDY'S,CHICK NUGGETS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21247~^~2100~^~WENDY'S, french fries~^~WENDY'S,FRENCH FR~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21248~^~2100~^~WENDY'S, Frosty Dairy Dessert~^~WENDY'S,FROSTY DAIRY DSSRT~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21249~^~2100~^~BURGER KING, french fries~^~BURGER KING,FRENCH FR~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21250~^~2100~^~BURGER KING, Hamburger~^~BURGER KING,HAMBURGER~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21251~^~2100~^~BURGER KING, Cheeseburger~^~BURGER KING, CHSBRGR~^^~Burger King Corporation~^^^0^^6.25^^^ -~21252~^~2100~^~BURGER KING, WHOPPER, no cheese~^~BURGER KING,WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21253~^~2100~^~BURGER KING, WHOPPER, with cheese~^~BURGER KING,WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21254~^~2100~^~BURGER KING, DOUBLE WHOPPER, no cheese~^~BURGER KING,DOUBLE WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21255~^~2100~^~BURGER KING, DOUBLE WHOPPER, with cheese~^~BURGER KING,DOUBLE WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21256~^~2100~^~BURGER KING, Chicken Strips~^~BURGER KING,CHICK STRIPS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21258~^~2100~^~BURGER KING, Premium Fish Sandwich~^~BURGER KING,PREMIUM FISH SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21259~^~2100~^~BURGER KING, Original Chicken Sandwich~^~BURGER KING,ORIGINAL CHICK SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21260~^~2100~^~TACO BELL, Original Taco with beef, cheese and lettuce~^~TACO BELL,ORIGINAL TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21261~^~2100~^~TACO BELL, Soft Taco with beef, cheese and lettuce~^~TACO BELL,SOFT TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21262~^~2100~^~TACO BELL, Soft Taco with chicken, cheese and lettuce~^~TACO BELL,SOFT TACO W/ CHICK,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21263~^~2100~^~TACO BELL, Soft Taco with steak~^~TACO BELL,SOFT TACO W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21264~^~2100~^~TACO BELL, Bean Burrito~^~TACO BELL,BEAN BURRITO~^^~Taco Bell Corp.~^^^0^^^^^ -~21265~^~2100~^~TACO BELL, BURRITO SUPREME with beef~^~TACO BELL,BURRITO SUPREME W/ BF~^^~Taco Bell Corp.~^^^0^^^^^ -~21266~^~2100~^~TACO BELL, BURRITO SUPREME with chicken~^~TACO BELL,BURRITO SUPREME W/ CHICK~^^~Taco Bell Corp.~^^^0^^^^^ -~21267~^~2100~^~TACO BELL, BURRITO SUPREME with steak~^~TACO BELL,BURRITO SUPREME W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21268~^~2100~^~TACO BELL, Nachos~^~TACO BELL,NACHOS~^^~Taco Bell Corp.~^^^0^^^^^ -~21269~^~2100~^~TACO BELL, Nachos Supreme~^~TACO BELL,NACHOS SUPREME~^^~Taco Bell Corp.~^^^0^^^^^ -~21270~^~2100~^~TACO BELL, Taco Salad~^~TACO BELL,TACO SALAD~^^~Taco Bell Corp.~^^^0^^^^^ -~21271~^~2100~^~PIZZA HUT 12" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21272~^~2100~^~PIZZA HUT 12" Cheese Pizza, Pan Crust~^~PIZZA HUT 12" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21273~^~2100~^~PIZZA HUT 12" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 12" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21274~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21275~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21276~^~2100~^~PIZZA HUT 12" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^4.00 -~21277~^~2100~^~DOMINO'S 14" Cheese Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" CHS PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21278~^~2100~^~DOMINO'S 14" Cheese Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" CHS PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21279~^~2100~^~DOMINO'S 14" Cheese Pizza, Crunchy Thin Crust~^~DOMINO'S 14" CHS PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21280~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21281~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" PEPPERONI PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21282~^~2100~^~DOMINO'S 14" EXTRAVAGANZZA FEAST Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" EXTRAVAGANZZA FST PIZZA,CLSSIC HAND-TOSSED CRST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21283~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Original Crust~^~PAPA JOHN'S 14" CHS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21284~^~2100~^~PAPA JOHN'S 14" Pepperoni Pizza, Original Crust~^~PAPA JOHN'S 14" PEPPERONI PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21285~^~2100~^~PAPA JOHN'S 14" The Works Pizza, Original Crust~^~PAPA JOHN'S 14" THE WORKS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21286~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Thin Crust~^~PAPA JOHN'S 14" CHS PIZZA,THIN CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21287~^~2100~^~LITTLE CAESARS 14" Original Round Cheese Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND CHS PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21288~^~2100~^~LITTLE CAESARS 14" Original Round Pepperoni Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND PEPPERONI PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21289~^~2100~^~LITTLE CAESARS 14" Original Round Meat and Vegetable Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND MEAT & VEG PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21290~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" CHS PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21291~^~2100~^~LITTLE CAESARS 14" Pepperoni Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" PEPPERONI PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21292~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Thin Crust~^~LITTLE CAESARS 14" CHS PIZZA,THIN CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21293~^~2100~^~PIZZA HUT 14" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21294~^~2100~^~PIZZA HUT 14" Cheese Pizza, Pan Crust~^~PIZZA HUT 14" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21295~^~2100~^~PIZZA HUT 14" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21296~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21297~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21298~^~2100~^~PIZZA HUT 14" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21299~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21300~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21301~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21302~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21303~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21304~^~2100~^~Fast Food, Pizza Chain, 14" pizza, meat and vegetable topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,MEAT & VEG TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21305~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21306~^~2100~^~Fast foods, griddle cake sandwich, sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,SAUSAGE~^^^~Y~^^0^^^^^ -~21307~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and bacon~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& BACON~^^^~Y~^^0^^^^^ -~21309~^~2100~^~McDONALD'S, Chicken McNUGGETS~^~MCDONALD'S,CHICK MCNUGGETS~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21319~^~2100~^~McDONALD'S, Hash Brown~^~MCDONALD'S,HASH BROWN~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21321~^~2100~^~McDONALD'S, Hotcakes (plain)~^~MCDONALD'S,HOTCAKES (PLAIN)~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21327~^~2100~^~McDONALD'S, Bacon, Egg & Cheese McGRIDDLES~^~MCDONALD'S,BACON,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21328~^~2100~^~McDONALD'S, Sausage McGRIDDLES~^~MCDONALD'S,SAUSAGE MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21329~^~2100~^~McDONALD'S, Sausage, Egg & Cheese McGRIDDLES~^~MCDONALD'S,SAUSAGE,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21333~^~2100~^~McDONALD'S, Vanilla Reduced Fat Ice Cream Cone~^~MCDONALD'S,VANILLA RED FAT ICE CRM CONE~^^~McDonald's Corporation~^^^0^^^^^ -~21334~^~2100~^~McDONALD'S, Strawberry Sundae~^~MCDONALD'S,STRAWBERRY SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21335~^~2100~^~McDONALD'S, Hot Caramel Sundae~^~MCDONALD'S,HOT CARAMEL SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21336~^~2100~^~McDONALD'S, Hot Fudge Sundae~^~MCDONALD'S,HOT FUDGE SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21338~^~2100~^~McDONALD'S, McFLURRY with M&M'S CANDIES~^~MCDONALD'S,MCFLURRY W/ M&M'S CANDIES~^^~McDonald's Corporation~^^^0^^^^^ -~21339~^~2100~^~McDONALD'S, McFLURRY with OREO cookies~^~MCDONALD'S,MCFLURRY W/ OREO COOKIES~^^~McDonald's Corporation~^^^0^^^^^ -~21340~^~2100~^~McDONALD'S, Sausage Burrito~^~MCDONALD'S,SAUSAGE BURRITO~^^~McDonald's Corporation~^^^0^^^^^ -~21341~^~2100~^~McDONALD'S, BIG BREAKFAST~^~MCDONALD'S,BIG BRKFST~^^~McDonald's Corporation~^^^0^^^^^ -~21344~^~2100~^~McDONALD'S, Double Cheeseburger~^~MCDONALD'S,DOUBLE CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21345~^~2100~^~McDONALD'S, DOUBLE QUARTER POUNDER with Cheese~^~MCDONALD'S,DOUBLE QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21350~^~2100~^~McDONALD'S, BIG MAC (without Big Mac Sauce)~^~MCDONALD'S,BIG MAC (WITHOUT BIG MAC SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21355~^~2100~^~McDONALD'S, McCHICKEN Sandwich~^~MCDONALD'S,MCCHICKEN SNDWCH~^^~McDonald's Corporation~^^^0^^^^^ -~21356~^~2100~^~McDONALD'S, McCHICKEN Sandwich (without mayonnaise)~^~MCDONALD'S,MCCHICKEN SNDWCH (WITHOUT MAYONNAISE)~^^~McDonald's Corporation~^^^0^^^^^ -~21357~^~2100~^~McDONALD'S, Egg McMUFFIN~^~MCDONALD'S,EGG MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21358~^~2100~^~McDONALD'S, Sausage McMUFFIN~^~MCDONALD'S,SAUSAGE MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21359~^~2100~^~McDONALD'S, Sausage McMUFFIN with Egg~^~MCDONALD'S,SAUSAGE MCMUFFIN W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21360~^~2100~^~McDONALD'S, Bacon Egg & Cheese Biscuit~^~MCDONALD'S,BACON EGG & CHS BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21361~^~2100~^~McDONALD'S, Sausage Biscuit~^~MCDONALD'S,SAUSAGE BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21362~^~2100~^~McDONALD'S, Sausage Biscuit with Egg~^~MCDONALD'S,SAUSAGE BISCUIT W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21363~^~2100~^~McDONALD'S, Deluxe Breakfast, with syrup and margarine~^~MCDONALD'S,DELUXE BRKFST,W/ SYRUP & MARGARINE~^^~McDonald's Corporation~^^^0^^^^^ -~21364~^~2100~^~McDONALD'S, Hotcakes and Sausage~^~MCDONALD'S,HOTCAKES & SAUSAGE~^^~McDonald's Corporation~^^^0^^^^^ -~21365~^~2100~^~McDONALD'S, Hotcakes (with 2 pats margarine & syrup)~^~MCDONALD'S,HOTCAKES (WITH 2 PATS MARGARINE & SYRUP)~^^~McDonald's Corporation~^^^0^^^^^ -~21376~^~2100~^~McDONALD'S, Bacon Ranch Salad with Grilled Chicken~^~MCDONALD'S,BACON RANCH SALAD W/ GRILLED CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21377~^~2100~^~McDONALD'S Bacon Ranch Salad with Crispy Chicken~^~MCDONALD'S BACON RANCH SALAD W/ CRISPY CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21378~^~2100~^~McDONALD'S, Bacon Ranch Salad without chicken~^~MCDONALD'S,BACON RANCH SALAD WO/ CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21379~^~2100~^~McDONALD'S, Side Salad~^~MCDONALD'S,SIDE SALAD~^^~McDonald's Corporation~^^^0^^^^^ -~21380~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT~^^~McDonald's Corporation~^^^0^^^^^ -~21381~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait (without granola)~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT (WITHOUT GRANOLA)~^^~McDonald's Corporation~^^^0^^^^^ -~21382~^~2100~^~McDONALD'S, FILET-O-FISH (without tartar sauce)~^~MCDONALD'S,FILET-O-FISH (WITHOUT TARTAR SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21383~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage, Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE,EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21384~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21385~^~2100~^~BURGER KING, CROISSAN'WICH with Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21386~^~2100~^~BURGER KING, french toast sticks~^~BURGER KING,FRENCH TOAST STKS~^^~Burger King Corporation~^^^0^^^^^ -~21387~^~2100~^~BURGER KING, Hash Brown Rounds~^~BURGER KING,HASH BROWN ROUNDS~^^~Burger King Corporation~^^^0^^^^^ -~21388~^~2100~^~Fast foods, miniature cinnamon rolls~^~FAST FOODS,MINIATURE CINN ROLLS~^^^^^0^^^4.00^9.00^4.00 -~21389~^~2100~^~Fast foods, hamburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,HAMBURGER; DOUBLE,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21390~^~2100~^~Fast foods, hamburger; single, large patty; with condiments, vegetables and mayonnaise~^~FT FDS, HAMBRGER; SIN, LRG PATTY; W/ CONDMNTS, VEG, MAYO~^^^~Y~^^0^^^^^ -~21393~^~2100~^~Fast foods, hamburger; single, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,HMBURGR; SNG,REG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^^^0^^6.25^4.00^9.00^4.00 -~21395~^~2100~^~Fast foods, cheeseburger; double, regular patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21396~^~2100~^~Fast foods, cheeseburger; double, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT~^^^^^0^^^^^ -~21397~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,CHESEBRGER; SING,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21398~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21399~^~2100~^~Fast Foods, cheeseburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FDS,CHSEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21400~^~2100~^~Fast foods, cheeseburger; double, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,CHSBURGR; DBL,RG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21401~^~2100~^~Fast foods, chicken tenders~^~FAST FOODS,CHICK TENDERS~^~chicken strips~^^~Y~^^0^^^^^ -~21410~^~2100~^~Fast foods, bagel, with egg, sausage patty, cheese, and condiments~^~FAST FOODS,BAGEL,W/ EGG,SAUSAGE PATTY,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21411~^~2100~^~Fast foods, bagel, with breakfast steak, egg, cheese, and condiments~^~FAST FOODS,BAGEL,W/ BRKFST STEAK,EGG,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21412~^~2100~^~Light Ice Cream, soft serve, blended with milk chocolate candies~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ MILK CHOC CANDIES~^^^~Y~^^0^^^^^ -~21413~^~2100~^~Light Ice Cream, soft serve, blended with cookie pieces~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ COOKIE PIECES~^^^~Y~^^0^^^^^ -~21415~^~2100~^~POPEYES, biscuit~^~POPEYES,BISCUIT~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21416~^~2100~^~POPEYES, Coleslaw~^~POPEYES,COLESLAW~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21417~^~2100~^~POPEYES, Mild Chicken Strips, analyzed 2006~^~POPEYES,MILD CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21418~^~2100~^~POPEYES, Spicy Chicken Strips, analyzed 2006~^~POPEYES,SPICY CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21419~^~2100~^~KFC, biscuit~^~KFC,BISCUIT~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21420~^~2100~^~KFC, Coleslaw~^~KFC,COLESLAW~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21421~^~2100~^~KFC, Crispy Chicken Strips~^~KFC,CRISPY CHICK STRIPS~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21422~^~2100~^~KFC, Popcorn Chicken~^~KFC,POPCORN CHICK~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21424~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Skin and Breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21425~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT NLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 18%; Handling loss, 1%~^47^^^^^ -~21426~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT ONLY,SKN BRG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 23%; Cartilage and bone, 24%~^47^^^^^ -~21427~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 36%; Cartilage and bone, 19%; Handling loss, 1%~^56^^^^^ -~21428~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 35%; Cartilage and bone, 26%; Handling loss, 1%~^63^^^^^ -~21429~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Skin and Breading~^~KFC,FRIED CHICK,EX CRISPY,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21430~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 33%; Cartilage and bone, 9%~^43^^^^^ -~21431~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT ONLY,SKN & BRDNG RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 21%~^49^^^^^ -~21432~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 13%~^53^^^^^ -~21433~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT ONLY,SKN & BRDING REMOVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 34%; Cartilage and bone, 24%~^58^^^^^ -~21434~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^18^^^^^ -~21435~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21436~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^19^^^^^ -~21437~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^26^^^^^ -~21438~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^9^^^^^ -~21439~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^21^^^^^ -~21440~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^13^^^^^ -~21441~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21442~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat only, skin and breading removed~^~POPEYES, CHICK,MILD,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 32%; Cartilage and bone, 17%; Handling loss, 1%~^50^^^^^ -~21443~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT ONLY,SKN & BREADING RE~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 22%; Cartilage and bone, 20%~^42^^^^^ -~21444~^~2100~^~POPEYES, Fried Chicken, Mild, Skin and Breading~^~POPEYES,FRIED CHICK,MILD,SKN & BREADING~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21445~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat only, skin and breading removed~^~POPEYES,FRIED CHCK,MILD,THIGH,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 20%~^60^^^^^ -~21446~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,WING,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 32%; Handling loss, 1%~^72^^^^^ -~21456~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,BREAST,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^17^^^^^ -~21457~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21458~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,THIGH,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21459~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,WING,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^32^^^^^ -~21461~^~2100~^~Fast foods, grilled chicken, bacon and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~GRILLED CHICK,BACON & TOMO CLB SNDWCH,W/ CHS,LETTUCE,& MAYO~^^^~Y~^^0^^^^^ -~21462~^~2100~^~Fast foods, crispy chicken, bacon, and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~CRISPY CHICK,BACON,& TOMATO CLUB SNDWCH,W/ CHS,LETUCE,& MAYO~^^^~Y~^^0^^^^^ -~21463~^~2100~^~Yogurt parfait, lowfat, with fruit and granola~^~YOGURT PARFAIT,LOWFAT,W/ FRUIT & GRANOLA~^^^~Y~^^0^^^^^ -~21464~^~2100~^~Fast Foods, Fried Chicken, Breast, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 30%; Cartilage and bone, 17%; Handling loss, 1%~^48^^^^^ -~21465~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,DRMSTK,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 24.5%, Cartilage and bone, 22%~^47^^^^^ -~21466~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,THIGH,MEAT ONLY,SKN & BREDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 13.6%~^52^^^^^ -~21467~^~2100~^~Fast Foods, Fried Chicken, Wing, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,WING,MEAT ONLY,SKN & BREADING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 37%; Cartilage and bone, 29%; Handling loss, 1%~^67^^^^^ -~21468~^~2100~^~Fast Foods, Fried Chicken, Skin and breading from all pieces~^~FAST FOODS,FRIED CHICK,SKN & BREADING FROM ALL PIECES~^^^^^0^^^^^ -~21469~^~2100~^~Fast Foods, Fried Chicken, Breast, meat and skin and breading~^~FAST FOODS,FRIED CHICK,BREAST,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^18^^^^^ -~21470~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat and skin with breading~^~FAST FOODS,FRIED CHICK,DRUMSTK,MEAT & SKN W/ BREADING~^^^~Y~^~Cartilage and bone~^22^^^^^ -~21471~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat and skin and breading~^~FAST FOODS,FRIED CHICK,THIGH,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^14^^^^^ -~21472~^~2100~^~Fast Foods, Fried Chicken, Wing, meat and skin and breading~^~FAST FOODS,FRIED CHICK,WING,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^29^^^^^ -~21473~^~2100~^~DIGIORNO Pizza, cheese topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21474~^~2100~^~DIGIORNO Pizza, cheese topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21475~^~2100~^~DIGIORNO Pizza, cheese topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21476~^~2100~^~DIGIORNO Pizza, pepperoni topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21477~^~2100~^~DIGIORNO Pizza, pepperoni topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21478~^~2100~^~DIGIORNO Pizza, pepperoni topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21479~^~2100~^~DIGIORNO Pizza, supreme topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21480~^~2100~^~DIGIORNO Pizza, supreme topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21482~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21483~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21484~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21485~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21486~^~2100~^~Fast foods, taco with beef, cheese and lettuce, soft~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,SOFT~^^^~Y~^^0^^^^^ -~21487~^~2100~^~Fast foods, taco with chicken, lettuce and cheese, soft~^~FAST FOODS,TACO W/ CHICK,LETTUCE & CHS,SOFT~^^^~Y~^^0^^^^^ -~21488~^~2100~^~Fast foods, quesadilla, with chicken~^~FAST FOODS,QUESADILLA,W/ CHICK~^^^~Y~^^0^^^^^ -~21490~^~2100~^~Fast Foods, grilled chicken filet sandwich, with lettuce, tomato and spread~^~FAST FDS,GRILLED CHICK FILET SNDWCH,W/ LETTUCE,TOMATO & SPRD~^^^~Y~^^0^^6.25^^^ -~21491~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21492~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Crunchy Thin Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21493~^~2100~^~DOMINO'S 14" Sausage Pizza, Crunchy Thin Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21494~^~2100~^~DOMINO'S 14" Sausage Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21495~^~2100~^~DOMINO'S 14" Sausage Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" SAUSAGE PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21496~^~2100~^~PIZZA HUT 14" Sausage Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21497~^~2100~^~PIZZA HUT 14" Sausage Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21498~^~2100~^~PIZZA HUT 14" Sausage Pizza, Pan Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21505~^~2100~^~Pizza, cheese topping, thin crust, frozen, cooked~^~PIZZA,CHS TOPPING,THIN CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~21506~^~2100~^~BURGER KING, Double Cheeseburger~^~BURGER KING,DOUBLE CHEESEBURGER~^^~Burger King Corporation~^^^0^^^^^ -~21507~^~2100~^~WENDY'S, Double Stack, with cheese~^~WENDY'S,DOUBLE STACK,W/ CHS~^^~Wendy's International, Inc.~^^^0^^^^^ -~21508~^~2100~^~WEND'YS, Crispy Chicken Sandwich~^~WEND'YS,CRISPY CHICK SNDWCH~^^~Wendy's International, Inc.~^^^0^^^^^ -~21509~^~2100~^~BURGER KING, Onion Rings~^~BURGER KING,ONION RINGS~^^~Burger King Corporation~^^^0^^^^^ -~21510~^~2100~^~WENDY'S, DAVE'S Hot 'N Juicy 1/4 LB, single~^~WENDY'S,DAVE'S HOT 'N JUICY 1/4 LB,SINGLE~^^~Wendy's International, Inc.~^^^0^^^^^ -~21511~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, stuffed crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,STUFFED CRUST~^^^~Y~^^0^^^^^ -~21512~^~2100~^~PIZZA HUT 14" Cheese Pizza, Stuffed Crust~^~PIZZA HUT 14" CHS PIZZA,STUFFED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21517~^~2100~^~Fast foods, crispy chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,CRISPY CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~snack, wrap~^^~Y~^^0^^^^^ -~21518~^~2100~^~Fast foods, grilled chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,GRILLED CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~wrap, snack~^^~Y~^^0^^^^^ -~21519~^~2100~^~Fast foods, breakfast burrito, with egg, cheese, and sausage~^~FAST FOODS,BRKFST BURRITO,W/ EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21520~^~2100~^~Fast foods, breadstick, soft, prepared with garlic and parmesan cheese~^~FAST FOODS,BREADSTICK,SOFT,PREP W/ GARLIC & PARMESAN CHS~^^^~Y~^^0^^^^^ -~21521~^~2100~^~Fast foods, strawberry banana smoothie made with ice and low-fat yogurt~^~FAST FOODS,STRWBY BANANA SMTH MADE W/ ICE & LOW-FAT YOGURT~^^^~Y~^^0^^6.25^^^ -~21522~^~2100~^~McDONALD'S, Southern Style Chicken Biscuit~^~MCDONALD'S,SOUTHERN STYLE CHICK BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21523~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Crispy~^~MCDONALD'S,RANCH SNACK WRAP,CRISPY~^^~McDonald's Corporation~^^^0^^^^^ -~21524~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Grilled~^~MCDONALD'S,RANCH SNACK WRAP,GRILLED~^^~McDonald's Corporation~^^^0^^^^^ -~21525~^~2100~^~PIZZA HUT, breadstick, parmesan garlic~^~PIZZA HUT,BREADSTICK,PARMESAN GARLIC~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21526~^~2100~^~CHICK-FIL-A, chicken sandwich~^~CHICK-FIL-A,CHICK SNDWCH~^^~Chick-Fil-A~^^^0^^^^^ -~21527~^~2100~^~ARBY'S, roast beef sandwich, classic~^~ARBY'S,RST BF SNDWCH,CLASSIC~^^~ARBY'S~^^^0^^^^^ -~21600~^~2100~^~School Lunch, pizza, cheese topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THIN CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21601~^~2100~^~School Lunch, pizza, cheese topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THICK CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21602~^~2100~^~School Lunch, pizza, pepperoni topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPPI TOPPING,THIN CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21603~^~2100~^~School Lunch, pizza, pepperoni topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPP TOPPING,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21604~^~2100~^~School Lunch, pizza, sausage topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SSAGE TOPPING,THIN CRST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^6.25^^^ -~21605~^~2100~^~School Lunch, pizza, sausage topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SAUSAGE TOP,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21610~^~2100~^~School Lunch, chicken patty, whole grain breaded~^~SCHOOL LUNCH,CHICK PATTY,WHL GRAIN BREADED~^~school lunch~^^~Y~^^0^^^^^ -~21611~^~2100~^~School Lunch, chicken nuggets, whole grain breaded~^~SCHOOL LUNCH,CHICK NUGGETS,WHL GRAIN BREADED~^^^~Y~^^0^^^4.00^9.00^4.00 -~22247~^~2200~^~Macaroni and Cheese, canned entree~^~MACARONI & CHS,CND ENTREE~^^^~Y~^^0^^^^^ -~22401~^~2200~^~Spaghetti with meat sauce, frozen entree~^~SPAGHETTI W/ MEAT SAU,FRZ ENTREE~^^^~Y~^^0^^5.80^4.00^9.00^4.00 -~22402~^~2200~^~Beef macaroni with tomato sauce, frozen entree, reduced fat~^~BEEF MACARONI W/ TOMATO SAU,FRZ ENTREE,RED FAT~^^^^^0^^5.80^4.00^9.00^4.00 -~22522~^~2200~^~Pasta with Sliced Franks in Tomato Sauce, canned entree~^~PASTA W/SLICED FRANKS IN TOMATO SAU,CND ENTREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~22528~^~2200~^~Turkey Pot Pie, frozen entree~^~TURKEY POT PIE,FRZ ENTREE~^^^^^0^^^^^ -~22529~^~2200~^~Beef Pot Pie, frozen entree, prepared~^~BEEF POT PIE,FRZ ENTREE,PREP~^^^^^0^^^^^ -~22535~^~2200~^~HOT POCKETS, CROISSANT POCKETS Chicken, Broccoli, and Cheddar Stuffed Sandwich, frozen~^~HOT POCKETS,CROISSANT POCKTS CHIK,BROC&CHDR STUFD SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22537~^~2200~^~HOT POCKETS Ham 'N Cheese Stuffed Sandwich, frozen~^~HOT POCKETS HAM 'N CHS STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22899~^~2200~^~Ravioli, cheese-filled, canned~^~RAVIOLI,CHEESE-FILLED,CND~^^^~Y~^^0^^^^^ -~22900~^~2200~^~Ravioli, meat-filled, with tomato sauce or meat sauce, canned~^~RAVIOLI,MEAT-FILLED,W/ TOMATO SAU OR MEAT SAU,CND~^^^~Y~^^0^^^^^ -~22901~^~2200~^~Tortellini, pasta with cheese filling, fresh-refrigerated, as purchased~^~TORTELLINI,PASTA W/ CHS FILLING,FRESH-REFRIGERATED~^^^~Y~^^0^^6.04^4.00^9.00^4.00 -~22902~^~2100~^~Pizza, meat topping, thick crust, frozen, cooked~^~PIZZA,MEAT TOPPING,THICK CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~22903~^~2100~^~Pizza, pepperoni topping, regular crust, frozen, cooked~^~PIZZA,PEPPERONI TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~22904~^~2200~^~Chili con carne with beans, canned entree~^~CHILI CON CARNE W/BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22905~^~2200~^~Beef stew, canned entree~^~BEEF STEW,CANNED ENTREE~^^^~Y~^^0^^^^^ -~22906~^~2200~^~Chicken pot pie, frozen entree, prepared~^~CHICKEN POT PIE,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22908~^~2200~^~Beef, corned beef hash, with potato, canned~^~BEEF,CORNED BF HASH,W/ POTATO,CND~^^~Hormel Foods Corp.~^~Y~^^0^^6.25^^^ -~22910~^~2200~^~Lasagna, cheese, frozen, prepared~^~LASAGNA,CHS,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22911~^~2200~^~Chili, no beans, canned entree~^~CHILI,NO BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22912~^~2200~^~Spaghetti, with meatballs in tomato sauce, canned~^~SPAGHETTI,W/ MEATBALLS IN TOMATO SAU,CND~^^^~Y~^^0^^6.25^^^ -~22914~^~2200~^~Pasta with tomato sauce, no meat, canned~^~PASTA W/ TOMATO SAU,NO MEAT,CND~^^^~Y~^^0^^^^^ -~22915~^~2200~^~Lasagna with meat & sauce, low-fat, frozen entree~^~LASAGNA W/ MEAT & SAU,LOW-FAT,FRZ ENTREE~^^^^^0^^^^^ -~22916~^~2200~^~Lasagna with meat & sauce, frozen entree~^~LASAGNA W/ MEAT & SAU,FRZ ENTREE~^^^~Y~^^0^^^^^ -~22917~^~2200~^~Burrito, beef and bean, frozen~^~BURRITO,BF & BEAN,FRZ~^^^^^0^^^^^ -~22918~^~2200~^~Burrito, bean and cheese, frozen~^~BURRITO, BEAN AND CHEESE, FROZEN~^^^^^0^^^^^ -~22919~^~2200~^~Macaroni and Cheese, canned, microwavable~^~MACARONI & CHS,CND,MICROWAVABLE~^^^^^0^^^^^ -~22928~^~2200~^~Burrito, beef and bean, microwaved~^~BURRITO,BF & BEAN,MICROWAVED~^^^^^0^^^^^ -~22953~^~2200~^~Egg rolls, pork, refrigerated, heated~^~EGG ROLLS,PORK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22954~^~2200~^~Egg rolls, chicken, refrigerated, heated~^~EGG ROLLS,CHICK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22955~^~2200~^~Egg rolls, vegetable, frozen, prepared~^~EGG ROLLS,VEG,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22956~^~2200~^~Lasagna, Vegetable, frozen, baked~^~LASAGNA,VEG,FRZ,BKD~^^^^^0^^^^^ -~22957~^~2200~^~Turkey, stuffing, mashed potatoes w/gravy, assorted vegetables, frozen, microwaved~^~TKY,STUFFING,MSHD POTATO W/GRAVY,ASSORTED VEG,FRZ,MICROWAVE~^^^~Y~^^0^^^^^ -~22958~^~2200~^~Rice bowl with chicken, frozen entree, prepared (includes fried, teriyaki, and sweet and sour varieties)~^~RICE BOWL W/ CHICK,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22959~^~2200~^~Macaroni and cheese dinner with dry sauce mix, boxed, uncooked~^~MACARONI & CHS DINNER W/ DRY SAU MIX,BOXED,UNCKD~^^^~Y~^^0^^^^^ -~22960~^~2200~^~Macaroni and cheese, dry mix, prepared with 2% milk and 80% stick margarine from dry mix~^~MAC & CHS,DRY MIX,PREP W/ 2% MILK & 80% STK MARGARINE DRY MX~^^^^^0^^^^^ -~22961~^~2200~^~HOT POCKETS, meatballs & mozzarella stuffed sandwich, frozen~^~HOT POCKETS,MEATBALLS & MOZZARELLA STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22962~^~2200~^~LEAN POCKETS, Ham N Cheddar~^~LEAN POCKETS,HAM N CHEDDAR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22963~^~2200~^~Lean Pockets, Meatballs & Mozzarella~^~LEAN POCKETS,MEATBALLS & MOZZARELLA~^^^^^0^^^^^ -~22969~^~2200~^~Chili with beans, microwavable bowls~^~CHILI W/ BNS,MICROWAVABLE BOWLS~^^^^^0^^^^^ -~22970~^~2200~^~Macaroni and cheese, frozen entree~^~MACARONI & CHS,FRZ ENTREE~^^^^^0^^^^^ -~22971~^~2200~^~Potato salad with egg~^~POTATO SALAD W/ EGG~^^^~Y~^^0^^^^^ -~22972~^~2200~^~Pulled pork in barbecue sauce~^~PULLED PORK IN BARBECUE SAU~^^^^^0^^^^^ -~22973~^~2200~^~Corn dogs, frozen, prepared~^~CORN DOGS,FRZ,PREP~^^^~Y~^^0^^^^^ -~22974~^~2200~^~Chicken, nuggets, dark and white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,DK & WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^~Y~^^0^^^^^ -~22975~^~2200~^~Chicken, nuggets, white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^^^0^^^^^ -~22976~^~2200~^~Ravioli, cheese with tomato sauce, frozen, not prepared, includes regular and light entrees~^~RAVIOLI,CHS W/ TOMATO SAU,FRZ,NOT PREP,INCL REG & LT ENTREES~^^^~Y~^^0^^^^^ -~22977~^~2200~^~Lasagna with meat sauce, frozen, prepared~^~LASAGNA W/ MEAT SAU,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22978~^~2200~^~Chicken tenders, breaded, frozen, prepared~^~CHICKEN TENDERS,BREADED,FRZ,PREP~^^^~Y~^^0^^^^^ -~22998~^~2200~^~RICE-A-RONI, chicken flavor, unprepared~^~RICE-A-RONI,CHICK FLAVOR,UNPREP~^^^~Y~^^0^^^^^ -~22999~^~2200~^~Rice and vermicelli mix, chicken flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,CHICK FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^^^ -~23000~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STK,BNLS,LN & FAT,0" FAT,ALL GRDS,R~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23001~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~23002~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,PRTRHS STK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~23003~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 24%~^24^^6.25^4.27^9.02^3.87 -~23004~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,L & F,1/8" F,SEL,CKD,GRILLED~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23005~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~23006~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BNE STEK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~T-Bone Steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23007~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~23008~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN & FAT,1/8" FAT,SEL,CKD,GRLLD~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue 32%~^32^^6.25^4.27^9.02^3.87 -~23030~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23031~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23032~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat , trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT 0" FAT,SEL,RAW~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23033~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23034~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23035~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,SHDR TNDR,MED,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23036~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1164 or #1030, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23037~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHLDR CLOD,TOP & CNTR ,STK,LN & FAT,0" FAT,CH,RAW~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23038~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,SHLDR CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,CH,CKD,GRLD~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23039~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD, TOP & CNTR,STK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23040~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23041~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23042~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23043~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23044~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23045~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.24^4.27^9.02^3.87 -~23046~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23047~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23048~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23049~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23050~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23051~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23052~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23053~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHK,CLD,SHLDR TNDR,MEDALLION,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23054~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHK,CLD,SHDR TNDR,MED,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23055~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23056~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCK,TIP SIDE,STK,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23057~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHUCK,CLOD,TOP & CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23058~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHCK,CLOD,SHLDR TOP&CNTR STKS,LN & FT,0",ALL GRDS,GRLD~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23059~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23060~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHUCK,CLOD,TOP BLADE,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23061~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23062~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23063~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL,RAW~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23064~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23065~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,SHLDR TENDER,MED,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1164 or #1030, Teres Major, Beef Value Cut, Tender Medallions~^^^^0^^6.25^4.27^9.02^3.87 -~23066~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23067~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 19%~^25^^6.25^^^ -~23068~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23069~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 18%~^27^^6.25^^^ -~23070~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,CKD,B~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 16%~^24^^6.25^^^ -~23071~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BF,CHK EYE CNTRY-STL RIBS,BNLS,LN,0" FAT,ALL GRDS, CKD, BRSD~^~Beef, Chuck, Bnls, Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23072~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 14%~^22^^6.25^^^ -~23073~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%, seam fat 13%~^23^^6.25^^^ -~23074~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE COUNTRY-STYLE RIBS,BNLS,LN,0" FAT,ALL GRDS, RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 13%~^22^^6.25^^^ -~23075~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%, seam fat 18%~^24^^6.25^^^ -~23076~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23077~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Beef, Chuck, Chuch Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 18%~^23^^6.25^^^ -~23078~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, ChuckEye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23079~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23080~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23081~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23082~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%, seam fat 3%~^10^^6.25^^^ -~23083~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23084~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~23085~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 9%~^14^^6.25^^^ -~23086~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TENDER STK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 8%~^14^^6.25^^^ -~23087~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 1%~^6^^6.25^^^ -~23088~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23089~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23090~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23091~^~1300~^~Beef, chuck for stew, separable lean and fat, select, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23092~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23093~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23094~^~1300~^~Beef, chuck for stew, separable lean and fat, select, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23095~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,RAW~^~URMIS #110~^^^^0^^6.25^^^ -~23096~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23097~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%, seam fat 13%~^17^^6.25^^^ -~23098~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL STEAK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 15%~^20^^6.25^^^ -~23099~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,UND BLD, POT RST,BNL,LN & FAT,0" FAT,ALL GR,CKD,BR~^~Beef Chuck Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^^^ -~23100~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLES,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~connective tissue 6%, Separable fat 20%~^26^^6.25^^^ -~23101~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2008~^^^~Bone and connective tissue 16%, separable fat 16%~^32^^6.25^^^ -~23102~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST/STK,BNL,LN & FT,0" FT, All GR, raw~^~URMIS #1151/1158, Beef Chuck, Under Blade Pot Roast/Steak~^^^~Connective tissue 6%~^6^^6.25^^^ -~23103~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BL POT RST OR STK,BNL,LN & FAT,0" FAT, CH, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23104~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL POT RST/STEAK,BNL,LN & FAT,0" FAT, SEL, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23105~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FAT, ALL GR, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steaks), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23106~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CT,LN&FT, 0" FT,CH,CKD,GLD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23107~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UNDBL CNTR STK,BNL,DEN CT,LN&FAT, 0" FT,SEL,CKD,GLD~^~Beef Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23108~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FT,0"FT,All Gr, RW~^~Beef, Chuck. Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23109~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UNDBLE CNTR STK,BNL,DENR CUT,LN & FAT,0"FAT, CH, RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23110~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CUT,LN & FT,0"FT, SEL,RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23111~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23112~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23113~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",ALL GRD,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23114~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",CH,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~23115~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHCK EYE RST,BNLS,A BF RST,LN & FAT,0",SEL,C,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23116~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23117~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23118~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%~^4^^6.25^^^ -~23119~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TNDR STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23120~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Mock Tender Staek, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23121~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23122~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,MOCK TEN STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23123~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23124~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23125~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRS~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23126~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23127~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23128~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23129~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23130~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23131~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23132~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23133~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%~^7^^6.25^^^ -~23134~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK EYE CTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23135~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK EYE CNTRY-STYL RIBS,BNL,LN & FAT,0" FAT,CHOICE, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23136~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23137~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23138~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,CHOICE,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23139~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%~^10^^6.25^^^ -~23140~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GR~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23141~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%~^6^^6.25^^^ -~23142~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23143~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23144~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23145~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%~^9^^6.25^^^ -~23146~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN,1/8" FT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23147~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1193~^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23148~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLES,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2018~^^^~connective tissue 5%, Separable fat 22%~^27^^6.25^^^ -~23149~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1203~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23150~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 14%, Separable fat 21%~^35^^6.25^^^ -~23151~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%, Separable fat 22%~^36^^6.25^^^ -~23152~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%, Separable fat 20%~^35^^6.25^^^ -~23153~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 20%~^24^^6.25^^^ -~23154~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2018/2009~^^^~Connective tissue 4%, Separable fat 21%~^25^^6.25^^^ -~23155~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1203/1194~^^^~Connective tissue 3%, Separable fat 18%~^21^^6.25^^^ -~23156~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23157~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRLD~^~URMIS #2012~^^^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23158~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILD~^~URMIS #1197~^^^~Bone and connective tissue 20%, Separable fat 19%~^39^^6.25^^^ -~23159~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 19%~^24^^6.25^^^ -~23160~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2009~^^^~connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23161~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%, Separable fat 18%~^23^^6.25^^^ -~23162~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLE,INSDE SKRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23163~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23164~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23165~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23166~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,CKD,GRILD~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23167~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 5%~^6^^6.25^^^ -~23168~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLES,OTSDE SKIRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 0.5%, Separable fat 3.5%~^4^^^^^ -~23169~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23170~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2428~^^^~Connective tissue 0.3%, Separable fat 3.3%~^4^^6.25^^^ -~23171~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%, Separable fat 8%~^9^^6.25^^^ -~23172~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,CKD,GRLD~^~URMIS #1613~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23173~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1613~^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23174~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,CKD,GRI~^^^^~Connective tissue 5%, Separable fat 16%~^26^^6.25^^^ -~23175~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 17%~^24^^6.25^^^ -~23176~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #2024~^^^~Connective tissue 5%, Separable fat 18%~^27^^6.25^^^ -~23177~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%, Separable fat 18%~^25^^6.25^^^ -~23178~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1209~^^^~Connective tissue 5%, Separable fat 13%~^24^^6.25^^^ -~23179~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%, Separable fat 14%~^22^^6.25^^^ -~23180~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%, Separable fat 8%~^69^^6.25^^^ -~23181~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%, Separable fat 12%~^64^^6.25^^^ -~23182~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%, Separable fat 9%~^69^^6.25^^^ -~23183~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%, Separable fat 13%~^66^^6.25^^^ -~23184~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 62%, Separable fat 7%~^69^^6.25^^^ -~23185~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%, Separable fat 11%~^63^^6.25^^^ -~23186~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,CHOC,CKD,GRL~^~URMIS #2012~^^^~Bone and connective tissue 19%~^19^^6.25^^^ -~23187~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,SEL,CKD,GRLD~^~URMIS #1197~^^^~Bone and connective tissue 20%~^20^^6.25^^^ -~23188~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BN-IN,LIP-ON,LN & FT,1/8" FT,AL GDS,CKD,GRL~^^^~Y~^~Bone and connective tissue 19%~^19^^6.25^^^ -~23189~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FT,CHC,CKD,RST~^~URMIS #2008~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23190~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RST~^~URMIS #1193~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23191~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LP-ON,LN & FT,1/8" FT,AL GRD,CKD,RST~^^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23192~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,IP-ON,LN & FT,1/8" FT,AL GRDS,RW~^^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23193~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,CHC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23194~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%~^15^^6.25^^^ -~23195~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,GRD~^~URMIS #2018~^^^~Connective tissue 6%~^6^^6.25^^^ -~23196~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,GILD~^~URMIS #1203~^^^~Connective tissue 6%~^6^^6.25^^^ -~23197~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FT,1/8" FT,AL GRD,CKD,GRLD~^^^~Y~^~Connective tissue 6%~^6^^6.25^^^ -~23198~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLS,LP-ON,LN & FT,1/8" FT,ALL GRD,CKD,RSTD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23199~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,RSTD~^~URMIS #2009~^^^~Connective tissue 6%~^6^^6.25^^^ -~23200~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%~^5^^6.25^^^ -~23201~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLS,LIP-ON,LN & FAT,1/8" FAT,AL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23202~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2018/2009~^^^~Connective tissue 4%~^4^^6.25^^^ -~23213~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1203/1194~^^^~Connective tissue 3%~^3^^6.25^^^ -~23214~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,INSD SKRT,LN & FAT,0" FAT,ALL GRD,CKD,GRL~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23215~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLSS,INSDE SKRT,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23216~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23217~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,INSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23218~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,CHOC,RW~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23219~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23220~^~1300~^~Beef, ground, unspecified fat content, cooked~^~BEEF,GROUND,UNSPEC FAT CONTENT,CKD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23221~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,AL GRD,CKD,GRLD~^^^^^0^^6.25^^^ -~23222~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,CHC,CKD,GRLD~^~URMIS #2428~^^^^0^^6.25^^^ -~23223~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLS,OTSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRILD~^~URMIS #1613~^^^^0^^6.25^^^ -~23224~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,OUTSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23225~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKRT,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%~^1^^6.25^^^ -~23226~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN & FAT,0" FAT,SEL,RW~^~URMIS #1613~^^^~Connective tissue 1%~^1^^6.25^^^ -~23227~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP OF,LN & FAT,0" FT,AL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23228~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2024~^^^~Connective tissue 5%~^5^^6.25^^^ -~23229~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEK,BNLES,LIP OFF,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1209~^^^~Connective tissue 5%~^5^^6.25^^^ -~23230~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,ALL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23231~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%~^4^^6.25^^^ -~23232~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%~^3^^6.25^^^ -~23233~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%~^61^^6.25^^^ -~23234~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%~^60^^6.25^^^ -~23235~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 63%~^62^^6.25^^^ -~23236~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23237~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%~^53^^6.25^^^ -~23238~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23239~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TOP SIRLIN PETITE RST,BNLS,LN,0" FAT,CHOC,CKD,RSTD~^~Gluteus medius, URMIS #2136~^^^~Connective tissue 6%, Separable fat 4%~^10^^6.25^^^ -~23240~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN PETITE RST/FILET,BNLS,LN,0" FAT,CHC,RW~^~URMIS #2136, Gluteus medius, URMIS #2138~^^^~Connective tissue 6%, Separable fat 5%~^11^^6.25^^^ -~23241~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN,1/8" FAT,AL GRDS,CKD,GLD~^~Biceps femoris~^^^~Connective tissue 8%, Separable fat 13%~^21^^6.25^^^ -~23242~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLON CAP STK,BNLS,LN,1/8" FAT,CHOIC,CKD,GRLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 14%~^22^^6.25^^^ -~23243~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,SEL,CKD,GRLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23244~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Biceps femoris~^^^~Connective tissue 7%, Separable fat 13%~^20^^6.25^^^ -~23245~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,CHOIC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23246~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23247~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 10%, Separable fat 9%~^19^^6.25^^^ -~23248~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS #2137~^^^~Connective tissue 12%, Separable fat 7%~^19^^6.25^^^ -~23249~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%, Separable fat 12%~^20^^6.25^^^ -~23250~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLSS,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%, Separable fat 7%~^16^^6.25^^^ -~23251~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%, Separable fat 6%~^14^^6.25^^^ -~23252~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%, Separable fat 7%~^17^^6.25^^^ -~23253~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 11%, Separable fat 9%~^20^^6.25^^^ -~23254~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,CHOC,RAW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%, Separable fat 7%~^20^^6.25^^^ -~23255~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,SEL,RAW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23256~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLS,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23257~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILD~^~URMIS #2138~^^^~Connective tissue 5%~^5^^6.25^^^ -~23258~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1323~^^^~Connective tissue 5%~^5^^6.25^^^ -~23259~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TOP SIRLON PTIT RST,BLS,LN,0" FAT,AL GRDS,CKD,RSTD~^~Gluteus medius~^^^~Connective tissue 6%~^6^^6.25^^^ -~23260~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TOP SIRLOIN PETITE RST,BNLS,LN,0" FAT,SEL,CKD,RSTD~^~Gluteus medius, URMIS #1321~^^^~Connective tissue 6%~^6^^6.25^^^ -~23261~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP SRLN PETIT RST/FILT,BNLS,LN,0" FAT,AL GRDS,RAW~^~Gluteus medius~^^^~Connective tissue 7%~^7^^6.25^^^ -~23262~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP SIRLON PETITE RST/FILET,BNLS,LN,0" FAT,SEL,RAW~^~URMIS #1323, Gluteus medius, URMIS #1321~^^^~Connective tissue 7%~^7^^6.25^^^ -~23263~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23264~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,CHOIC,RAW~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23265~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,SEL,RAW~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 5%~^5^^6.25^^^ -~23266~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Spinalis dorsi~^^^~Connective tissue 10%~^10^^6.25^^^ -~23267~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 10%~^10^^6.25^^^ -~23268~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 10%~^10^^6.25^^^ -~23269~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Spinalis dorsi~^^^~Connective tissue 12%~^12^^6.25^^^ -~23270~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 12%~^12^^6.25^^^ -~23271~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 12%~^12^^6.25^^^ -~23272~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 6%~^6^^6.25^^^ -~23273~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2068~^^^~Connective tissue 6%~^6^^6.25^^^ -~23274~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1253~^^^~Connective tissue 6%~^6^^6.25^^^ -~23275~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23276~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23277~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 6%~^6^^6.25^^^ -~23278~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SRL CP STK,BNLS,LN & FT,1/8" FT,ALGDS,CKD,GRLD~^~Biceps femoris~^^^~Connective tissue 8%~^8^^6.25^^^ -~23279~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,CHC,CKD,GLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23280~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,SEL,CKD,GLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%~^8^^6.25^^^ -~23281~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN & FAT,1/8" FAT,AL GDS,RW~^~Biceps femoris~^^^~Connective tissue 7%~^7^^6.25^^^ -~23282~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,CHC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23283~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%~^7^^6.25^^^ -~23284~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLS,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23285~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2137~^^^~Connective tissue 12%~^12^^6.25^^^ -~23286~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%~^9^^6.25^^^ -~23287~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PET RST,BNLS,LN & FAT,1/8" FAT,AL GDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%~^9^^6.25^^^ -~23288~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETI RST,BNLS,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%~^8^^6.25^^^ -~23289~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLS,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%~^10^^6.25^^^ -~23290~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETIT RST/FILT,BNS,LN & FAT,1/8" FAT,AL GRD,RW~^~Longissimus dorsi~^^^~Connective tissue 11%~^11^^6.25^^^ -~23291~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%~^13^^6.25^^^ -~23292~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%~^8^^6.25^^^ -~23293~^~1300~^~Beef, Australian, imported, grass-fed, ground, 85% lean / 15% fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,GROUND,85% LN / 15% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23294~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,LOIN,TENDERLN STK/RST,BNLESS,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23295~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TENLN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 3%~^3^^6.25^^^ -~23296~^~1300~^~Beef, Australian, imported, grass-fed, external fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~23297~^~1300~^~Beef, Australian, imported, grass-fed, seam fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~23298~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23299~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 4/5, raw~^~BEEF,AUST,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23300~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 9, raw~^~BEEF,AUST,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23301~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 9, raw~^~BEEF,AUSTRALIAN,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23302~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,TNDERLN STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23303~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,TOP LOIN STK/RST,BNLESS,LN,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 7%, Separable fat 16%~^23^^6.25^^^ -~23304~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AU,IMP,WGU,TDLN STK/RST,BNLES,LN & FAT, MRB SCR 4/5,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23305~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED, TOP LOIN STK/RST,BNLESS,LN FAT,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 7%~^7^^^^^ -~23306~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,TOP SIRLN CP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%, separable fat 1%~^3^^6.25^^^ -~23307~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RIBEYE STK/RST LIP-ON,BNLESS,LN,RAW~^~URMIS #1194, URMIS# 1203~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23308~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,BTTM RND STK/RST,BNLESS,LN,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^^^ -~23309~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RD,TP RND CAP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1553, URMIS #1454~^^^~Connective tissue 1%, separable fat 1%~^2^^6.25^^^ -~23310~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,LOIN,TENLN STK/RST,BNLESS,LN, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, separable fat 3%~^3^^6.25^^^ -~23311~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TOP LN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~connective tissue 6%, separable fat 17%~^23^^6.25^^^ -~23312~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLESS,LN,MARBLE SCORE 9,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23313~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLENDRIB STK/RST,BNLESS, MRB SCR 4/5,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 22%~^26^^6.25^^^ -~23314~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SML END RIB STK/RST,BNLESS,MRB SCR 9,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 24%~^28^^6.25^^^ -~23315~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP SIRLN CP-OFFSTK/RST,BNLES,LN&FAT,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%~^2^^^^^ -~23316~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,RBEYE STK/RST LIP-ON,BNLESS,LN&FAT,RAW~^~URMIS #1194, URMIS #1203~^^^~Connective tissue 7%~^7^^^^^ -~23317~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,BTTM RND STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%~^3^^^^^ -~23318~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP RNDCAP-OFF STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1553, URMIS #1454~^^^^0^^^^^ -~23319~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLES,LN & FAT,MRB SCR4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%~^6^^^^^ -~23320~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,LN & FAT,MARBLE SCORE9,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 6%~^6^^^^^ -~23321~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLES,LN&FAT,MRBSCR4/5,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23322~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLESS,LN&FAT,MRB SCR9,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23323~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AU,IMP,WGU,TNLN, STK/RST,BNLESS,LN & FAT, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^^0^^^^^ -~23324~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23325~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2368, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23326~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1553, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23327~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23328~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2366, Top Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23329~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 1%~^1^^6.25^^^ -~23330~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23331~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2295, Eye of Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23332~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 1%~^1^^6.25^^^ -~23333~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FT,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23334~^~1300~^~Beef, round, eye of round steak, boneless separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2296, Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23335~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 1%~^1^^6.25^^^ -~23336~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23337~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%~^1^^6.25^^^ -~23338~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 2%~^2^^6.25^^^ -~23339~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,ALLGRD,RW~^~Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^~Y~^~Connective tissue 9%~^9^^6.25^^^ -~23340~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23341~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,SEL,RW~^~Boneless Strip Steak, URMIS # 1404~^^^~Connective tissue 9%~^9^^6.25^^^ -~23342~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,L & F,0" FAT,ALL GRDS,RAW~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^^^ -~23343~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23344~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23345~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TNDRLN RST,BNLESS,L & F,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23346~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,L & F,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2201, Tenderloin roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23347~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1386, Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23348~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLS,LN&FAT,0" FAT,ALLGRD,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^^^ -~23349~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2366, Top Round Roast~^^^^0^^6.25^^^ -~23350~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1551, Top Round Roast~^^^^0^^6.25^^^ -~23351~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23352~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RD STEAK,BNLESS,L & F,0" FT,CHOIC,CK,GRLLED~^~URMIS # 2296, Eye of Round Steak~^^^^0^^6.25^^^ -~23353~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~Eye of Round Steak, URMIS # 1481~^^~Y~^^0^^6.25^^^ -~23354~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23355~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Steak, URMIS # 2368~^^^~Connective tissue 1%~^1^^6.25^^^ -~23356~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Steak, URMIS # 1553~^^^~Connective tissue 2%~^2^^6.25^^^ -~23357~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23358~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Roast, URMIS # 2366~^^^~Connective tissue 2%~^2^^6.25^^^ -~23359~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 2%~^2^^6.25^^^ -~23360~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23361~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Roast, URMIS # 2295~^^^~Connective tissue 2%~^2^^6.25^^^ -~23362~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 2%~^2^^6.25^^^ -~23363~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 2%~^2^^6.25^^^ -~23364~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Steak, URMIS # 2296~^^^~Connective tissue 2%~^2^^6.25^^^ -~23365~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 2%~^2^^6.25^^^ -~23366~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23367~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23368~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 1%, separable fat 2%~^3^^6.25^^^ -~23369~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Connective tissue 8%, separable fat 5%~^13^^6.25^^^ -~23370~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 6%~^14^^6.25^^^ -~23371~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^^^ -~23372~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Fillet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 2%~^2^^6.25^^^ -~23373~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23374~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23375~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Separable fat 1%~^1^^6.25^^^ -~23376~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Tenderloin Roast, URMIS # 2201~^^^~Separable fat 1%~^1^^6.25^^^ -~23377~^~1300~^~Beef, loin, tenderloin roast, separable lean only, boneless, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,LN,BNLESS,0" FAT,SEL,CKD,RSTD~^~Tenderloin Roast, URMIS # 1386~^^^~Separable fat 1%~^1^^6.25^^^ -~23378~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23379~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Top Round Roast, URMIS # 2366~^^^^0^^6.25^^^ -~23380~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Top Round Roast, URMIS # 1551~^^^^0^^6.25^^^ -~23381~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FT,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23382~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Eye of Round Steak, URMIS # 2296~^^^^0^^6.25^^^ -~23383~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Eye of Round Steak, URMIS # 1481~^^^^0^^6.25^^^ -~23384~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^21^^^^^ -~23385~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^22^^6.25^^^ -~23386~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~Beef, ln, top ln stk, bneless lip-on, 1/8" fat all grdes raw~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^22^^6.25^^^ -~23387~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LN,TP LN STEAK,BNLESS,LIP-ON,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansa City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23388~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LN,TP LN STK,BNLESS,LIPON,LN & FAT,1/8" FAT,ALL GRDS,RW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23389~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,CHOIC,GRILLED~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23390~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,SeL, CK GRLED~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23391~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8 FAT,A GRDS, GRILLED~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23392~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LON,TP LON STK,BNLSS,LIP-ON,LN,1/8" FAT,CHC,CKD,GRILLD~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 14%~^22^^6.25^^^ -~23393~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLD~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%, separable fat 12%~^21^^^^^ -~23394~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLSS,LIP-ON,LN,1/8" FAT,ALL GRDS,,GRLLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 13%~^21^^^^^ -~23395~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TP LN STK,BNLESS,LIP-ON,L&F,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23397~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%, Separable fat 7%~^12^^6.25^^^ -~23398~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN,RAW~^^^^~Bone and Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23399~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,CKD,BRSD~^^^^~Separable fat 29%~^29^^6.25^^^ -~23401~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,RAW~^^^^~Separable fat 27%~^27^^6.25^^^ -~23402~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23403~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN,RAW~^^^^~Separable fat 6%~^6^^6.25^^^ -~23404~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,RAW~^^^^~Separable fat 8%~^8^^6.25^^^ -~23405~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23406~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN,CKD,FAST RSTD~^^^^~Separable fat 9%~^9^^6.25^^^ -~23407~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN,RAW~^^^^~Separable fat 11%~^11^^6.25^^^ -~23408~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN,CKD,SLOW RSTD~^^^^^0^^6.25^^^ -~23409~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, raw~^~BEEF,NZ,IMP,EYE RND,LN,RAW~^^^^~Separable fat 2%~^2^^6.25^^^ -~23410~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN,CKD,BRSD~^^^^~Separable fat 3%~^3^^6.25^^^ -~23411~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, raw~^~BEEF,NZ,IMP,FLANK,LN,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~23412~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN,CKD,BRSD~^^^^~Separable fat 5%~^5^^6.25^^^ -~23413~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, raw~^~BEEF,NZ,IMP,FLAT,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23414~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,CKD,BLD~^^^^~Separable fat 15%~^15^^6.25^^^ -~23415~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,RAW~^^^^~Separable fat 12%~^12^^6.25^^^ -~23416~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN,CKD,BRSD~^^^^~Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23417~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, raw~^~BEEF,NZ,IMP,HIND SHIN,LN,RAW~^^^^~Conective tissue .91%, Separable fat 6%~^7^^6.25^^^ -~23418~^~1300~^~Beef, New Zealand, imported, inside, raw~^~BEEF,NZ,IMP,INSIDE,RAW~^^^^~Connective tissue .55% Separable fat 2%~^3^^6.25^^^ -~23419~^~1300~^~Beef, New Zealand, imported, intermuscular fat, cooked~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^^^6.25^^^ -~23420~^~1300~^~Beef, New Zealand, imported, intermuscular fat, raw~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^^^6.25^^^ -~23421~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,CKD,BLD~^^^^~Connective tissue 20%~^20^^6.25^^^ -~23422~^~1300~^~Beef, New Zealand, imported, knuckle, cooked, fast fried~^~BEEF,NZ,IMP,KNUCKLE,CKD,FAST FRIED~^^^^~Connective tissue .33%, Separable fat 5%~^5^^6.25^^^ -~23423~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,RAW~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23424~^~1300~^~Beef, New Zealand, imported, variety meats and by-products liver, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS LIVER,CKD,BLD~^^^^~Connective tissue 2%~^2^^6.25^^^ -~23425~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, liver, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,LIVER,RAW~^^^^~Connective tissue 3%~^3^^6.25^^^ -~23426~^~1300~^~Beef, New Zealand, imported, manufacturing beef, cooked, boiled~^~BEEF,NZ,IMP,MANUFACTURING BF,CKD,BLD~^^^^^0^^6.25^^^ -~23427~^~1300~^~Beef, New Zealand, imported, manufacturing beef, raw~^~BEEF,NZ,IMP,MANUFACTURING BF,RAW~^^^^^0^^6.25^^^ -~23428~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN,CKD,BRSD~^^^^^0^^6.25^^^ -~23429~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN,RAW~^^^^~Separable fat 4%~^4^^6.25^^^ -~23430~^~1300~^~Beef, New Zealand, imported, ribs prepared, cooked, fast roasted~^~BEEF,NZ,IMP,RIBS PREP,CKD,FAST RSTD~^^^^~Bone and Connective tissue 15%, Separable fat 10%~^25^^6.25^^^ -~23431~^~1300~^~Beef, New Zealand, imported, ribs prepared, raw~^~BEEF,NZ,IMP,RIBS PREP,RAW~^^^^~Bone and connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23432~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23433~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN,CKD,FAST FRIED~^^^^~Separable fat 14%~^14^^6.25^^^ -~23434~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN,RAW~^^^^~Separable fat 16%~^16^^6.25^^^ -~23435~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, cooked~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~23436~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, raw~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~23437~^~1300~^~Beef, New Zealand, imported, sweetbread, cooked, boiled~^~BEEF,NZ,IMP,SWEETBREAD,CKD,BLD~^^^^~Conncetive tissue 4%, Separable fat 4%~^8^^^^^ -~23438~^~1300~^~Beef, New Zealand, imported, sweetbread, raw~^~BEEF,NZ,IMP,SWEETBREAD,RAW~^^^^~Conncetive tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23439~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23440~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,RAW~^^^^^0^^^^^ -~23441~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~23442~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,CKD,BLD~^^^^~Connective tissue 9%, Separable fat 2%~^11^^6.25^^^ -~23443~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue 17%, Separable fat 3%~^20^^6.25^^^ -~23444~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE CKD,BLD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23445~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe uncooked, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE UNCKD,RAW~^^^^~Separable fat 10%~^10^^6.25^^^ -~23446~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%~^5^^^^^ -~23447~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,RAW~^^^^~Bone and Connective tissue 2%~^2^^^^^ -~23448~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23449~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,RAW~^^^^^0^^^^^ -~23450~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23451~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,RAW~^^^^^0^^^^^ -~23452~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23453~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23454~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~23455~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23456~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN & FAT,CKD,SLOW RSTD~^^^^^0^^^^^ -~23457~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, raw~^~BEEF,NZ,IMP,EYE RND,LN & FAT,RAW~^^^^^0^^^^^ -~23458~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23459~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, raw~^~BEEF,NZ,IMP,FLANK,LN & FAT,RAW~^^^^^0^^^^^ -~23460~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23461~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, raw~^~BEEF,NZ,IMP,FLAT,LN & FAT,RAW~^^^^^0^^^^^ -~23462~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,CKD,BRSD~^^^^~Connective tissue 2%~^2^^^^^ -~23463~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, raw~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,RAW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23464~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23465~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23466~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23467~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,RAW~^^^^^0^^^^^ -~23468~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23469~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23470~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23471~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23472~^~1300~^~Beef, ground, 93% lean meat / 7% fat, raw~^~BEEF,GROUND,93% LN MEAT / 7% FAT~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23473~^~1300~^~Beef, ground, 93% lean meat / 7% fat, patty, cooked, broiled~^~BEEF,GROUND,93% LN MEAT / 7% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23474~^~1300~^~Beef, ground, 93% lean meat /7% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,93% LN MEAT /7% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23475~^~1300~^~Beef, ground, 93% lean meat / 7% fat, loaf, cooked, baked~^~BEEF,GROUND,93% LN MEAT / 7% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23476~^~1300~^~Beef, ground, 93% lean meat / 7% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,93% LN MEAT / 7% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23477~^~1300~^~Beef, ground, 97% lean meat / 3% fat, raw~^~BEEF,GROUND,97% LN MEAT / 3% FAT,RAW~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23478~^~1300~^~Beef, ground, 97% lean meat / 3% fat, patty, cooked, broiled~^~BEEF,GROUND,97% LN MEAT / 3% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23479~^~1300~^~Beef, ground, 97% lean meat /3% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,97% LN MEAT /3% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23480~^~1300~^~Beef, ground, 97% lean meat / 3% fat, loaf, cooked, baked~^~BEEF,GROUND,97% LN MEAT / 3% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23481~^~1300~^~Beef, ground, 97% lean meat / 3% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,97% LN MEAT / 3% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23482~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23483~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23484~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,CKD~^^^^~No component data available~^0^^^^^ -~23485~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23490~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23491~^~1300~^~Beef composite, separable lean only, trimmed to 1/8" fat, choice, cooked~^~BEEF COMP,LN,1/8" FAT,CHOIC,CKD~^^^^~No component data available~^^^^^^ -~23494~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23495~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23496~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23497~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23498~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,CKD~^^^^~No component data available~^^^^^^ -~23499~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23509~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%, separable fat, 0%~^4^^6.25^4.27^9.02^3.87 -~23511~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN ONLY,TO 0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%, separable fat, 2%~^17^^6.25^4.27^9.02^3.87 -~23513~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, raw~^~BEEF,CHUCK,CLOD RST,LN,1/4" FAT,ALL GRDS,RAW~^^^^~Bone and heavy connective tissue, 4%, separable fat, 5%~^9^^6.25^4.27^9.02^3.87 -~23514~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%, separable fat, 6%~^10^^6.25^4.27^9.02^3.87 -~23515~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 11%~^19^^6.25^4.27^9.02^3.87 -~23516~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~23517~^~1300~^~Beef, chuck, clod steak, separable lean only, trimmed to 1/4" fat, all grades, cooked, braised~^~BEEF,CHUCK,CLOD STEAK,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 13%~^21^^6.25^4.27^9.02^3.87 -~23519~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,CHCK,MCK TENDER STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23521~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%~^3^^6.25^4.27^9.02^3.87 -~23523~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%~^13^^6.25^4.27^9.02^3.87 -~23525~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%~^16^^6.25^4.27^9.02^3.87 -~23528~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23531~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23533~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23536~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23540~^~1300~^~Beef, plate, inside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,SKIRT STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23541~^~1300~^~Beef, plate, outside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23545~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SIRLOIN,TRI-TIP STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~23547~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23549~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%~^15^^6.25^4.27^9.02^3.87 -~23552~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23554~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23557~^~1300~^~Beef, ground, 95% lean meat / 5% fat, raw~^~BEEF,GROUND,95% LN MEAT / 5% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23558~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23559~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23560~^~1300~^~Beef, ground, 95% lean meat / 5% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,95% LN MEAT / 5% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23561~^~1300~^~Beef, ground, 95% lean meat / 5% fat, loaf, cooked, baked~^~BEEF,GROUND,95% LN MEAT / 5% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23562~^~1300~^~Beef, ground, 90% lean meat / 10% fat, raw~^~BEEF,GROUND,90% LN MEAT / 10% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23563~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23564~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23565~^~1300~^~Beef, ground, 90% lean meat / 10% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,90% LN MEAT / 10% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23566~^~1300~^~Beef, ground, 90% lean meat / 10% fat, loaf, cooked, baked~^~BEEF,GROUND,90% LN MEAT / 10% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23567~^~1300~^~Beef, ground, 85% lean meat / 15% fat, raw (Includes foods for USDA's Food Distribution Program)~^~BEEF,GROUND,85% LN MEAT / 15% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23568~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,BRLD~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23569~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23570~^~1300~^~Beef, ground, 85% lean meat / 15% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,85% LN MEAT / 15% FAT,CRUMBLES,CKD,PAN-BROWNED~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23571~^~1300~^~Beef, ground, 85% lean meat / 15% fat, loaf, cooked, baked~^~BEEF,GROUND,85% LN MEAT / 15% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23572~^~1300~^~Beef, ground, 80% lean meat / 20% fat, raw~^~BEEF,GROUND,80% LN MEAT / 20% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23573~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,BRLD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23574~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,PAN-BROILED~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23575~^~1300~^~Beef, ground, 80% lean meat / 20% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,80% LN MEAT / 20% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23576~^~1300~^~Beef, ground, 80% lean meat / 20% fat, loaf, cooked, baked~^~BEEF,GROUND,80% LN MEAT / 20% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23577~^~1300~^~Beef, ground, 75% lean meat / 25% fat, raw~^~BEEF,GROUND,75% LN MEAT / 25% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23578~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23579~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23580~^~1300~^~Beef, ground, 75% lean meat / 25% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,75% LN MEAT / 25% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23581~^~1300~^~Beef, ground, 75% lean meat / 25% fat, loaf, cooked, baked~^~BEEF,GROUND,75% LN MEAT / 25% FAT,LOAF,CKD,BKD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23582~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,RAW~^^^^~Bone and connective tissue 5%, sep fat 19%~^24^^6.25^4.27^9.02^3.87 -~23583~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 2%, sep fat 19%~^21^^6.25^4.27^9.02^3.87 -~23584~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 3.26%,separable fat, 11.04%~^14^^6.25^4.27^9.02^3.87 -~23585~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 9%, sep fat 15%~^24^^6.25^4.27^9.02^3.87 -~23586~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,CKD,BRLD~^^^^~Bone and connective tissue 7%, sep fat 17%~^24^^6.25^4.27^9.02^3.87 -~23587~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388~^^^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23588~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 4.85%, separable fat, 11.31%~^16^^6.25^4.27^9.02^3.87 -~23589~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 13%~^25^^6.25^4.27^9.02^3.87 -~23590~^~1300~^~Beef, round, bottom round , roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^~Y~^~Bone and connective tissue 3.32%, separable fat 9.02%~^12^^6.25^4.27^9.02^3.87 -~23591~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23592~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23593~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue 4.61%, separable fat 7.21%~^12^^6.25^4.27^9.02^3.87 -~23594~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2.49%, separable fat 10.55%~^13^^6.25^^^ -~23595~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 1%, sep fat 19%~^20^^6.25^4.27^9.02^3.87 -~23596~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23597~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23598~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 1.21%, separable fat, 7.42%~^9^^6.25^4.27^9.02^3.87 -~23599~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 5%, sep fat 20%~^25^^6.25^4.27^9.02^3.87 -~23600~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue, 4.20%, separable fat, 13.37%~^18^^6.25^4.27^9.02^3.87 -~23601~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%, sep fat 18%~^20^^6.25^4.27^9.02^3.87 -~23602~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 27.87%, separable fat, 13.50%~^41^^6.25^4.27^9.02^3.87 -~23603~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23604~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,CKD~^^^^~Bone and connective tissue 2.33%, separable fat 8.89%~^11^^6.25^^^ -~23605~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 4.78%, separable fat, 6.51%~^11^^6.25^4.27^9.02^3.87 -~23606~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Bone and connective tissue, 11.91%, separable fat, 13.48%~^25^^6.25^4.27^9.02^3.87 -~23607~^~1300~^~Beef, short loin, top loin steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Bone and connective tissue 10%, separable fat 14%~^24^^6.25^4.00^9.00^4.00 -~23608~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 0.94%, separable fat, 5.51%~^6^^6.25^4.27^9.02^3.87 -~23609~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Separable fat 6%~^6^^6.25^4.27^9.02^3.87 -~23610~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 4.34%, separable fat, 12.57%~^17^^6.25^4.27^9.02^3.87 -~23611~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^~Y~^~Bone and connective tissue 3%, sep fat 13%~^16^^6.25^4.27^9.02^3.87 -~23612~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1864~^^~Y~^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23613~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23614~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue, 29.58%, separable fat, 12.85%~^42^^6.25^4.27^9.02^3.87 -~23615~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^20^^6.25^4.27^9.02^3.87 -~23616~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^~Y~^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23617~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2368~^^~Y~^~Separable fat~^6^^6.25^4.27^9.02^3.87 -~23618~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue 2.44%, separable fat 10.58%~^13^^6.25^4.27^9.02^3.87 -~23619~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue 1.37%, separable fat 8.55%~^10^^6.25^4.27^9.02^3.87 -~23620~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23621~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368~^^^~Bone and connective tissue 1%, sep fat 6%~^7^^6.25^4.27^9.02^3.87 -~23622~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^~Y~^~Bone and connective tissue 5.23%, separable fat 5.81%~^11^^6.25^4.27^9.02^3.87 -~23623~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,CHOIC,RAW~^^^^~Bone and connective tissue 5%, sep fat 21%~^26^^6.25^4.27^9.02^3.87 -~23624~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 3%, sep fat 16%~^19^^6.25^4.27^9.02^3.87 -~23625~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2237~^^~Y~^~Bone and connective tissue, 3.05%, separable fat, 14.02%~^17^^6.25^4.27^9.02^3.87 -~23626~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8"fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8"FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone and connective tissue 7%, separable fat 20%~^27^^6.25^4.27^9.02^3.87 -~23627~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 10%, separable fat 13%~^23^^6.25^4.27^9.02^3.87 -~23628~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 5%, sep fat 13%~^18^^6.25^4.27^9.02^3.87 -~23629~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237~^^~Y~^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23630~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 14%~^26^^6.25^4.27^9.02^3.87 -~23631~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1049~^^~Y~^~Bone and connective tissue 20%, sep fat 17%~^37^^6.25^4.27^9.02^3.87 -~23632~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^~Separable fat~^28^^6.25^4.27^9.02^3.87 -~23633~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue, 26.23%, separable fat, 14.12%~^40^^6.25^4.27^9.02^3.87 -~23634~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^19^^6.25^4.27^9.02^3.87 -~23635~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue 3%, sep fat 7%~^10^^6.25^4.27^9.02^3.87 -~23636~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1553~^^^~Separable fat~^7^^6.25^4.27^9.02^3.87 -~23637~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue 1.97%, separable fat 10.51%~^12^^6.25^4.27^9.02^3.87 -~23638~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 7.11%, separable fat, 18.25%~^25^^6.25^4.27^9.02^3.87 -~23640~^~1300~^~Beef, variety meats and by-products, tripe, cooked, simmered~^~BEEF,VAR MEATS & BY-PRODUCTS,TRIPE,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~23646~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23647~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^^^ -~23648~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^4.27^9.02^3.87 -~23649~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23650~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23651~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 4%, sep fat 4%~^8^^6.25^4.27^9.02^3.87 -~23652~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^4.27^9.02^3.87 -~23653~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,RAW~^~URMIS # 1525~^^^~Bone and connective tissue 3%, sep fat 4%~^7^^6.25^4.27^9.02^3.87 -~23654~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23655~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23656~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,RAW~^^^^~Separable fat~^3^^6.25^4.27^9.02^3.87 -~23657~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~23658~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~23659~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~23660~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~25000~^~2500~^~Snacks, popcorn, microwave, 94% fat free~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25001~^~2500~^~Snacks, popcorn, microwave, low fat~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25003~^~2500~^~Snacks, candy rolls, yogurt-covered, fruit flavored with high vitamin C~^~SNACKS,CANDY ROLLS,YOGURT-COVERED,FRUIT FLAV W/ HI VIT C~^^^~Y~^^0^^6.50^^^ -~25004~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Chewy Chocolate Peanut Bar~^~FORMULATE BAR,MAR SNACKFOO US,SNICKE MARATH CHE CHOC PNUT BA~^^^^^0^^^^^ -~25005~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON MULTIGRAIN CRUNCH BAR~^~FORM BAR,MARS SNKF US,SNICKERS MARATHON MULTIGRNCRUNCH~^^^^^0^^^^^ -~25006~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Double Chocolate Nut Bar~^~FORMULAT BAR,MARSNACKFOO US,SNICKE MARATHO DOUBL CHOC NUT BA~^^^^^0^^^^^ -~25007~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bars, peanut butter~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,PNUT BUTTER~^^^^^0^^^^^ -~25008~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Honey Nut Oat Bar~^~FORMULAT BAR,MAR SNACFOO US,SNICKER MARATHO HONE NUT OAT BAR~^^^^^0^^^^^ -~25009~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, M&M's milk chocolate~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BAR,M&M'S MILK CHOC~^^^^^0^^^^^ -~25010~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Almond Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC ALMOND~^^^^^0^^^^^ -~25012~^~2500~^~Snacks, sweet potato chips, unsalted~^~SNACKS,SWT POTATO CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25013~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, original flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN SNACK,ORIGINAL FLAVOR~^^^~Y~^^0^^6.50^^^ -~25014~^~2500~^~Snacks, popcorn, microwave, regular (butter) flavor, made with partially hydrogenated oil~^~SNACKS,POPCORN,MICROWAVE,REG (BUTTER) FLAVOR, W/PARHYD OIL~^^^~Y~^^0^^6.25^^^ -~25015~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Protein Performance Bar, Caramel Nut Rush~^~FORMBAR,MARSSNACK,SNICKERS MARATHONPROTPERFBAR,CARMELNUTRUSH~^^^~Y~^^0^^6.25^^^ -~25016~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Energy Bar, all flavors~^~FORMUL BAR,MA SNACKFO US,SNICKE MARATH ENER BAR,ALL FLAVO~^^^~Y~^^0^^^^^ -~25017~^~2500~^~Formulated bar, POWER BAR, chocolate~^~FORMULATED BAR,POWER BAR,CHOC~^^^~Y~^^0^^6.10^^^ -~25018~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Blueberry Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC BLUEBERRY~^^^^^0^^^^^ -~25020~^~2500~^~Formulated bar, SLIM-FAST OPTIMA meal bar, milk chocolate peanut~^~FORMULATED BAR,SLIM-FAST OPTIMA MEAL BAR,MILK CHOC PNUT~^^~Slim-Fast Foods Company~^~Y~^^0^^6.25^^^ -~25021~^~2500~^~Formulated bar, LUNA BAR, NUTZ OVER CHOCOLATE~^~FORMULATED BAR,LUNA BAR,NUTZ OVER CHOC~^^~LUNA BAR~^~Y~^^0^^6.25^^^ -~25022~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, multigrain, French onion flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,FRENCH ONION FLAVOR~^^^^^0^^^^^ -~25023~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, Harvest Cheddar flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,HARVEST CHEDDAR~^^^^^0^^^^^ -~25024~^~2500~^~Pretzels, soft, unsalted~^~PRETZELS,SOFT,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25025~^~2500~^~Snacks, soy chips or crisps, salted~^~SNACKS,SOY CHIPS OR CRISPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25026~^~2500~^~Popcorn, microwave, regular (butter) flavor, made with palm oil~^~Popcor, microwav, regula (butter) flavo, mad with pal oil~^^^~Y~^^0^^6.25^^^ -~25027~^~2500~^~Snacks, plantain chips, salted~^~SNACKS,PLANTAIN CHIPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25028~^~2500~^~Tortilla chips, yellow, plain, salted~^~Tortilla chips, yellow, plain, salted~^^^~Y~^^0^^6.25^^^ -~25030~^~2500~^~Snacks, vegetable chips, HAIN CELESTIAL GROUP, TERRA CHIPS~^~SNACKS,VEG CHIPS,HAIN CELESTIAL GROUP,TERRA CHIPS~^^^~Y~^^0^^6.25^^^ -~25031~^~2500~^~Formulated bar, ZONE PERFECT CLASSIC CRUNCH BAR, mixed flavors~^~FORM BAR,ZONE PERFECT CLASSIC CRUNCH BAR,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25032~^~2500~^~Snacks, granola bar, KASHI GOLEAN, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25033~^~2500~^~Snacks, granola bar, KASHI TLC Bar, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25034~^~2500~^~Snacks, granola bar, KASHI GOLEAN, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25035~^~2500~^~Snacks, granola bar, chewy, reduced sugar, all flavors~^~SNACKS,GRANOLA BAR,CHEWY,RED SUGAR,ALL FLAVORS~^^^~Y~^^0^^^^^ -~25036~^~2500~^~Snacks, granola bites, mixed flavors~^~SNACKS,GRANOLA BITES,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25037~^~2500~^~Snacks, pita chips, salted~^~SNACKS,PITA CHIPS,SALTED~^^^~Y~^^0^^^^^ -~25038~^~2500~^~Snacks, granola bars, soft, almond, confectioners coating~^~SNACKS,GRANOLA BARS,SOFT,ALMOND,CONFECTIONERS COATING~^^^~Y~^^0^^^^^ -~25039~^~2500~^~Snacks, granola bars, QUAKER OATMEAL TO GO, all flavors~^~SNACKS,GRANOLA BARS,QUAKER OATMEAL TO GO,ALL FLAVORS~^^^~Y~^^0^^6.25^^^ -~25040~^~2500~^~Snacks, vegetable chips, made from garden vegetables~^~SNACKS,VEG CHIPS,MADE FROM GARDEN VEG~^^^~Y~^^0^^6.26^^^ -~25041~^~2500~^~Snacks, granola bar, KASHI TLC Bar, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25043~^~2500~^~Snacks, candy bits, yogurt covered with vitamin C~^~SNACKS,CANDY BITS,YOGURT COVERED W/ VIT C~^^^~Y~^^0^^^^^ -~25045~^~2500~^~Formulated bar, high fiber, chewy, oats and chocolate~^~Formulated bar, high fiber, chewy, oats and chocolate~^^^~Y~^^0^^^^^ -~25046~^~2500~^~Snacks, bagel chips, plain~^~SNACKS,BAGEL CHIPS,PLN~^^^~Y~^^0^^6.25^^^ -~25048~^~2500~^~Snacks, NUTRI-GRAIN FRUIT AND NUT BAR~^~SNACKS,NUTRI-GRAIN FRUIT & NUT BAR~^^^~Y~^^0^^^^^ -~25050~^~2500~^~Snacks, yucca (cassava) chips, salted~^~SNACKS,YUCCA (CASSAVA) CHIPS,SALTED~^^^^^0^^^^^ -~25051~^~2500~^~Snacks, CLIF BAR, mixed flavors~^~Snacks, CLIF BAR, mixed flavors~^^^~Y~^^0^^^^^ -~25052~^~2500~^~Snacks, granola bar, QUAKER, chewy, 90 Calorie Bar~^~SNACKS,GRANOLA BAR,QUAKER,CHEWY,90 CAL BAR~^^^~Y~^^0^^6.25^^^ -~25053~^~2500~^~Snacks, granola bar, GENERAL MILLS NATURE VALLEY, SWEET&SALTY NUT, peanut~^~Snac, grano bar, GENER MILLS NATURE VALL, SWE&SAL NUT, peanu~^^^~Y~^^0^^6.25^^^ -~25054~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, with yogurt coating~^~Snack,gran bar,GENERAL MILLS, NATURE VALLEY, w yogu coati~^^^~Y~^^0^^^^^ -~25055~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, CHEWY TRAIL MIX~^~Snac, grano bar, GENER MILLS, NATUR VALLE, CHEWY TRAIL MIX~^^^~Y~^^0^^6.25^^^ -~25056~^~2500~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^^^~Y~^^0^^^^^ -~25059~^~2500~^~Snacks, brown rice chips~^~Snacks, brown rice chips~^^^~Y~^^0^^6.25^^^ -~25060~^~2500~^~Snack, Pretzel, hard chocolate coated~^~SNACK,PRETZEL,HARD CHOC COATD~^^^~Y~^^0^^6.25^^^ -~25062~^~2500~^~Snack, Mixed Berry Bar~^~Snack, Mixed Berry Bar~^^^~Y~^^0^^^^^ -~25063~^~2500~^~Snacks, potato chips, made from dried potatoes (preformed), multigrain~^~Snacks, potato chips, fr dried potatoes, multigrain~^^^~Y~^^0^^^^^ -~25064~^~2500~^~Snacks, potato chips, lightly salted~^~SNACKS,POTATO CHIPS,LIGHTLY SALTED~^^^~Y~^^0^^^^^ -~25065~^~2500~^~Snacks, Pretzels, gluten- free made with cornstarch and potato flour~^~SNACKS,PRETZELS,GLUTEN- FREE MADE W/ CORNSTARCH & POTATO FLR~^^^~Y~^^0^^^^^ -~25066~^~2500~^~Snacks, peas, roasted, wasabi-flavored~^~SNACKS,PEAS,RSTD,WASABI-FLAVORED~^^^~Y~^^0^^^^^ -~25067~^~2500~^~Formulated Bar, SOUTH BEACH protein bar~^~FORMULATED BAR,SOUTH BEACH PROT BAR~^^^~Y~^^0^^^^^ -~25068~^~2500~^~Snack, BALANCE, original bar~^~SNACK,BALANCE,ORIGINAL BAR~^^^~Y~^^0^^^^^ -~25070~^~2500~^~Snacks, shrimp cracker~^~SNACKS,SHRIMP CRACKER~^^^~Y~^^0^^^^^ -~25071~^~2500~^~Rice crackers~^~RICE CRACKERS~^^^~Y~^^0^^6.25^^^ -~27000~^~0600~^~Soup, egg drop, Chinese restaurant~^~SOUP,EGG DROP,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27001~^~0600~^~Soup, hot and sour, Chinese restaurant~^~SOUP,HOT & SOUR,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27002~^~0600~^~Soup, wonton, Chinese restaurant~^~SOUP,WONTON,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27035~^~0600~^~Soup, ramen noodle, dry, any flavor, reduced fat, reduced sodium~^~SOUP,RAMEN NOODLE,DRY,ANY FLAVOR,RED FAT,RED NA~^^^~Y~^^0^^6.25^^^ -~27042~^~0600~^~Soup, clam chowder, new england, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,RTS~^^^^^0^^^^^ -~27043~^~0600~^~Soup, clam chowder, new england, reduced sodium, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,RED NA,CND,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~27044~^~0600~^~Soup, chicken noodle, reduced sodium, canned, ready-to-serve~^~SOUP,CHICK NOODLE,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27045~^~0600~^~Soup, beef and vegetables, reduced sodium, canned, ready-to-serve~^~SOUP,BF & VEG,RED NA,CND,RTS~^^^^^0^^^^^ -~27046~^~0600~^~Sauce, duck, ready-to-serve~^~SAUCE,DUCK,RTS~^^^~Y~^^0^^^^^ -~27047~^~0600~^~Sauce, salsa, verde, ready-to-serve~^~SAUCE,SALSA,VERDE,RTS~^^^~Y~^^0^^^^^ -~27048~^~0600~^~Sauce, steak, tomato based~^~SAUCE,STEAK,TOMATO BSD~^^^~Y~^^0^^^^^ -~27049~^~0600~^~Sauce, tartar, ready-to-serve~^~SAUCE,TARTAR,RTS~^^^~Y~^^0^^^^^ -~27050~^~0600~^~Sauce, sweet and sour, ready-to-serve~^~SAUCE,SWT & SOUR,RTS~^^^~Y~^^0^^^^^ -~27051~^~0600~^~Sauce, cocktail, ready-to-serve~^~SAUCE,COCKTAIL,RTS~^^^~Y~^^0^^^^^ -~27052~^~0600~^~Dip, salsa con queso, cheese and salsa- medium~^~DIP,SALSA CON QUESO,CHS & SALSA- MED~^^^~Y~^^0^^^^^ -~27054~^~0600~^~Dip, TOSTITOS, salsa con queso, medium~^~DIP,TOSTITOS,SALSA CON QUESO,MED~^^~Pepsi-Cola North America~^^^0^^^^^ -~27055~^~0600~^~Sauce, barbecue, SWEET BABY RAY'S, original~^~SAUCE,BARBECUE,SWT BABY RAY'S,ORIGINAL~^^~Sweet baby Ray's, Inc.~^^^0^^^^^ -~27056~^~0600~^~Sauce, barbecue, BULL'S-EYE, original~^~SAUCE,BARBECUE,BULL'S-EYE,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~27057~^~0600~^~Sauce, barbecue, KC MASTERPIECE, original~^~SAUCE,BARBECUE,KC MASTERPIECE,ORIGINAL~^^^^^0^^^^^ -~27058~^~0600~^~Sauce, barbecue, OPEN PIT, original~^~SAUCE,BARBECUE,OPEN PIT,ORIGINAL~^^~Open Pit- Pinnacle Foods~^^^0^^^^^ -~27059~^~0600~^~Sauce, peanut, made from peanut butter, water, soy sauce~^~SAUCE,PNUT,MADE FROM PNUT BUTTER,H2O,SOY SAU~^^^~Y~^^0^^^4.00^9.00^4.00 -~27060~^~0600~^~Soup, chunky vegetable, reduced sodium, canned, ready-to-serve~^~SOUP,CHUNKY VEG,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27061~^~0600~^~Gravy, HEINZ Home Style, classic chicken~^~GRAVY,HEINZ HOME STYLE,CLASSIC CHICK~^^~H.J. Heinz, Co.~^^^0^^^^^ -~27062~^~0600~^~Soup, beef barley, ready to serve~^~SOUP,BF BARLEY,READY TO SERVE~^^^~Y~^^0^^^^^ -~27063~^~0600~^~Sauce, enchilada, red, mild, ready to serve~^~SAUCE,ENCHILADA,RED,MILD,READY TO SERVE~^^^~Y~^^0^^^4.00^9.00^4.00 -~27064~^~0600~^~Wasabi~^~WASABI~^^^~Y~^^0^^6.25^^^ -~27065~^~0600~^~Dip, bean, original flavor~^~DIP,BEAN,ORIGINAL FLAVOR~^^^~Y~^^0^^^^^ -~27066~^~0600~^~Sauce, horseradish~^~SAUCE,HORSERADISH~^^^~Y~^^0^^^^^ -~27068~^~0600~^~Dip, FRITO'S, bean, original flavor~^~DIP,FRITO'S,BEAN,ORIGINAL FLAVOR~^^~Pepsi-Cola North America~^^^0^^^^^ -~28285~^~1800~^~Bread, chapati or roti, whole wheat, commercially prepared, frozen~^~BREAD,CHAPATI OR ROTI,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28286~^~1800~^~Bread, paratha, whole wheat, commercially prepared, frozen~^~BREAD,PARATHA,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28287~^~1800~^~Bread, naan, whole wheat, commercially prepared, refrigerated~^~BREAD,NAAN,WHL WHEAT,COMMLY PREP,REFR~^^^~Y~^^0^^6.25^^^ -~28288~^~1800~^~Bread, roll, Mexican, bollilo~^~BREAD,ROLL,MEXICAN,BOLLILO~^^^~Y~^^0^^6.25^^^ -~28289~^~1800~^~Cookie, vanilla with caramel, coconut, and chocolate coating~^~COOKIE,VANILLA W/ CARAMEL,COCNT,& CHOC COATING~^^^~Y~^^0^^6.25^^^ -~28290~^~1800~^~Cookie, with peanut butter filling, chocolate-coated~^~COOKIE,W/ PNUT BUTTER FILLING,CHOCOLATE-COATED~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28291~^~1800~^~Cookies, animal, with frosting or icing~^~COOKIES,ANIMAL,W/ FRSTNG OR ICING~^^^~Y~^^0^^6.25^^^ -~28292~^~1800~^~Crackers, multigrain~^~CRACKERS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28293~^~1800~^~Cookie, butter or sugar, with chocolate icing or filling~^~COOKIE,BUTTER OR SUGAR,W/ CHOC ICING OR FILLING~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28294~^~1800~^~Cookie, chocolate, with icing or coating~^~COOKIE,CHOC,W/ ICING OR COATING~^^^~Y~^^0^^6.25^^^ -~28295~^~1800~^~Tortillas, ready-to-bake or -fry, whole wheat~^~TORTILLAS,RTB OR -FRY,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28296~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting, low-fat, with added fiber~^~CAKE,SNK CAKES,CREME-FILLED,CHOC W/ FRSTNG,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28297~^~1800~^~Cake, snack cakes, not chocolate, with icing or filling, low-fat, with added fiber~^~CAKE,SNK CAKES,NOT CHOC,W/ ICING OR FILLING,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28298~^~1800~^~Cookies, brownies, commercially prepared, reduced fat, with added fiber~^~COOKIES,BROWNIES,COMMLY PREP,RED FAT,W/ ADDED FIBER~^^^~Y~^^0^^6.25^^^ -~28299~^~1800~^~Cookies, chocolate sandwich, with creme filling, reduced fat~^~COOKIES,CHOC SNDWCH,W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28300~^~1800~^~Cookies, oatmeal sandwich, with creme filling~^~COOKIES,OATMEAL SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28301~^~1800~^~Cookies, peanut butter, commercially prepared, sugar free~^~COOKIES,PNUT BUTTER,COMMLY PREP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~28302~^~1800~^~Cookies, graham crackers, plain or honey, lowfat~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY,LOWFAT~^^^~Y~^^0^^6.25^^^ -~28303~^~1800~^~Crackers, cheese, whole grain~^~CRACKERS,CHS,WHL GRAIN~^^^~Y~^^0^^6.25^^^ -~28304~^~1800~^~Waffles, whole wheat, lowfat, frozen, ready-to-heat~^~WAFFLES,WHL WHEAT,LOWFAT,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28305~^~1800~^~Pancakes, plain, reduced fat~^~PANCAKES,PLN,RED FAT~^^^~Y~^^0^^6.25^^^ -~28306~^~1800~^~Bread, chapati or roti, plain, commercially prepared~^~BREAD,CHAPATI OR ROTI,PLN,COMMLY PREP~^^^^^0^^6.25^^^ -~28307~^~1800~^~Bread, naan, plain, commercially prepared, refrigerated~^~BREAD,NAAN,PLN,COMMLY PREP,REFR~^^^^^0^^6.25^^^ -~28308~^~1800~^~Crackers, standard snack-type, with whole wheat~^~CRACKERS,STD SNACK-TYPE,W/ WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28309~^~1800~^~Cookies, coconut macaroon~^~COOKIES,COCNT MACAROON~^^^~Y~^^0^^6.25^^^ -~28310~^~1800~^~Cookies, shortbread, reduced fat~^~COOKIES,SHORTBREAD,RED FAT~^^^~Y~^^0^^6.25^^^ -~28311~^~1800~^~Cookies, sugar wafer, chocolate-covered~^~COOKIES,SUGAR WAFER,CHOCOLATE-COVERED~^^^~Y~^^0^^6.25^^^ -~28312~^~1800~^~Rolls, hamburger or hot dog, wheat/cracked wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHEAT/CRACKED WHEAT~^^^~Y~^^0^^6.25^^^ -~28313~^~1800~^~Rolls, hamburger or hot dog, whole wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHL WHEAT~^^^~Y~^^0^^^^^ -~28314~^~1800~^~Crackers, sandwich-type, peanut butter filled, reduced fat~^~CRACKERS,SANDWICH-TYPE,PNUT BUTTER FILLED,RED FAT~^^^~Y~^^0^^6.25^^^ -~28315~^~1800~^~Bread, cinnamon~^~BREAD,CINN~^^^~Y~^^0^^6.25^^^ -~28316~^~1800~^~Bread, wheat, sprouted~^~BREAD,WHEAT,SPROUTED~^^^~Y~^^0^^6.25^^^ -~28317~^~1800~^~Bread, wheat, sprouted, toasted~^~BREAD,WHEAT,SPROUTED,TSTD~^^^~Y~^^0^^6.25^^^ -~28318~^~1800~^~Bread, french or vienna, whole wheat~^~BREAD,FRENCH OR VIENNA,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28319~^~1800~^~Bagels, whole grain white~^~BAGELS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28320~^~1800~^~English muffins, whole grain white~^~ENGLISH MUFFINS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28321~^~1800~^~Rolls, hamburger, whole grain white, calcium-fortified~^~ROLLS,HAMBURGER,WHL GRAIN WHITE,CALCIUM-FORTIFIED~^^^~Y~^^0^^6.25^^^ -~28322~^~1800~^~Bagels, multigrain~^~BAGELS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28324~^~1800~^~Pancakes, whole wheat, dry mix, incomplete~^~PANCAKES,WHL WHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.25^^^ -~28325~^~1800~^~Crackers, toast thins, low sodium~^~CRACKERS,TOAST THINS,LO NA~^^^~Y~^^0^^6.25^^^ -~28326~^~1800~^~Crackers, whole grain, sandwich-type, with peanut butter filling~^~CRACKERS,WHL GRAIN,SANDWICH-TYPE,W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~28327~^~1800~^~Crackers, water biscuits~^~CRACKERS,H2O BISCUITS~^^^~Y~^^0^^6.25^^^ -~28328~^~1800~^~Cookies, chocolate chip sandwich, with creme filling~^~COOKIES,CHOC CHIP SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28329~^~1800~^~Cookies, chocolate, made with rice cereal~^~COOKIES,CHOC,MADE W/ RICE CRL~^^^~Y~^^0^^6.25^^^ -~28330~^~1800~^~Cookies, marshmallow, with rice cereal and chocolate chips~^~COOKIES,MARSHMLLW,W/ RICE CRL & CHOC CHIPS~^^^~Y~^^0^^6.25^^^ -~28331~^~1800~^~Crackers, flavored, fish-shaped~^~CRACKERS,FLAV,FISH-SHAPED~^^^^^0^^6.25^^^ -~28332~^~1800~^~Cookies, gluten-free, chocolate sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,CHOC SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^^^^ -~28333~^~1800~^~Cookies, gluten-free, chocolate wafer~^~COOKIES,GLUTEN-FREE,CHOC WAFER~^^^^^0^^6.25^^^ -~28334~^~1800~^~Cookies, gluten-free, lemon wafer~^~COOKIES,GLUTEN-FREE,LEMON WAFER~^^^^^0^^6.25^^^ -~28335~^~1800~^~Cookies, gluten-free, vanilla sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,VANILLA SNDWCH,W/ CREME FILLING~^^^^^0^^6.25^^^ -~28336~^~1800~^~Bread, gluten-free, white, made with potato extract, rice starch, and rice flour~^~BREAD,GLUTEN-FREE,POTATO EXTRACT,RICE STARCH,& RICE FLOUR~^^^^^0^^6.25^^^ -~28337~^~1800~^~Bread, gluten-free, white, made with rice flour, corn starch, and/or tapioca~^~BREAD,GLUTEN-FREE,RICE FLOUR,CORN STARCH,AND/OR TAPIOCA~^^^~Y~^^0^^^^^ -~28338~^~1800~^~Bread, gluten-free, white, made with tapioca starch and brown rice flour~^~BRD,GLUTEN-FREE,WHITE,MADE W/TAPIOCA STARCH & BRWN RICE FLR~^^^^^0^^6.25^^^ -~28339~^~1800~^~Bread, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~BREAD,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28340~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and potato starch~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&POTATO STARCH~^^^^^0^^6.25^^^ -~28341~^~1800~^~Rolls, gluten-free, white, made with rice flour, rice starch, and corn starch~^~ROLLS,GLUTEN-FREE,RICE FLR,RICE STARCH,& CORN STARCH~^^^~Y~^^0^^^^^ -~28342~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and sorghum flour~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&SORGHUM FLR~^^^^^0^^6.25^^^ -~28343~^~1800~^~Rolls, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~ROLLS,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28344~^~1800~^~Crackers, gluten-free, multigrain and vegetable, made with corn starch and white rice flour~^~CRACKERS,GLUTEN-FREE,MULTIGRAIN & VEG,MADE W/ CORN STARCH &~^^^^^0^^6.25^^^ -~28345~^~1800~^~Crackers, gluten-free, multi-seeded and multigrain~^~CRACKERS,GLUTEN-FREE,MULTI-SEEDED & MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28346~^~1800~^~Waffles, gluten-free, frozen, ready-to-heat~^~WAFFLES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28347~^~1800~^~Pancakes, gluten-free, frozen, ready-to-heat~^~PANCAKES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28348~^~1800~^~Rolls, dinner, sweet~^~ROLLS,DINNER,SWT~^^^~Y~^^0^^6.25^^^ -~28349~^~1800~^~Cookies, oatmeal, reduced fat~^~COOKIES,OATMEAL,RED FAT~^^^~Y~^^0^^6.25^^^ -~28350~^~1800~^~Cookies, chocolate cream covered biscuit sticks~^~COOKIES,CHOC CRM COVERED BISCUIT STKS~^^^~Y~^^0^^6.25^^^ -~28351~^~1800~^~Cookies, Marie biscuit~^~COOKIES,MARIE BISCUIT~^^^~Y~^^0^^6.25^^^ -~28352~^~1800~^~Cookies, vanilla sandwich with creme filling, reduced fat~^~COOKIES,VANILLA SNDWCH W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28354~^~1800~^~Andrea's, Gluten Free Soft Dinner Roll~^~ANDREA'S,GLUTEN FREE SOFT DINNER ROLL~^^~Andrea's Gluten Free~^^^0^^6.25^^^ -~28355~^~1800~^~Crunchmaster, Multi-Grain Crisps, Snack Crackers, Gluten-Free~^~CRUNCHMASTER,MULTI-GRAIN CRISPS,SNACK CRACKERS,GLUTEN-FREE~^^~Crunchmaster~^^^0^^^^^ -~28356~^~1800~^~Glutino, Gluten Free Cookies, Chocolate Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,CHOC VANILLA CREME~^^~Glutino~^^^0^^^^^ -~28357~^~1800~^~Glutino, Gluten Free Cookies, Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,VANILLA CREME~^^~Glutino~^^^0^^6.25^^^ -~28358~^~1800~^~Glutino, Gluten Free Wafers, Lemon Flavored~^~GLUTINO,GLUTEN FREE WAFERS,LEMON FLAV~^^~Glutino~^^^0^^^^^ -~28359~^~1800~^~Glutino, Gluten Free Wafers, Milk Chocolate~^~GLUTINO,GLUTEN FREE WAFERS,MILK CHOC~^^~Glutino~^^^0^^6.25^^^ -~28360~^~1800~^~Mary's Gone Crackers, Original Crackers, Organic Gluten Free~^~MARY'S GONE CRACKERS,ORIGINAL CRACKERS,ORGANIC GLUTEN FREE~^^~Mary's Gone Crackers~^^^0^^6.25^^^ -~28361~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Cheddar~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,CHEDDAR~^^~Pepperidge Farm~^^^0^^^^^ -~28362~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Explosive Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,EXPLOSIVE PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28363~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Original~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,ORIGINAL~^^~Pepperidge Farm~^^^0^^^^^ -~28364~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Parmesan~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PARMESAN~^^~Pepperidge Farm~^^^0^^^^^ -~28365~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28366~^~1800~^~Rudi's, Gluten-Free Bakery, Original Sandwich Bread~^~RUDI'S,GLUTEN-FREE BAKERY,ORIGINAL SNDWCH BREAD~^^~Rudi's Bakery~^^^0^^6.25^^^ -~28367~^~1800~^~Sage Valley, Gluten Free Vanilla Sandwich Cookies~^~SAGE VALLEY,GLUTEN FREE VANILLA SNDWCH COOKIES~^^~Sage Valley~^^^0^^6.25^^^ -~28368~^~1800~^~Schar, Gluten-Free, Classic White Rolls~^~SCHAR,GLUTEN-FREE,CLASSIC WHITE ROLLS~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28369~^~1800~^~Schar, Gluten-Free, Wheat-Free, Classic White Bread~^~SCHAR,GLUTEN-FREE,WHEAT-FREE,CLASSIC WHITE BREAD~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28370~^~1800~^~Udi's, Gluten Free, Classic French Dinner Rolls~^~UDI'S,GLUTEN FREE,CLASSIC FRENCH DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28371~^~1800~^~Udi's, Gluten Free, Soft & Delicious White Sandwich Bread~^~UDI'S,GLUTEN FREE,SOFT & DELICIOUS WHITE SNDWCH BREAD~^^~Udi's Gluten Free~^^^0^^^^^ -~28372~^~1800~^~Udi's, Gluten Free, Soft & Hearty Whole Grain Bread~^~UDI'S,GLUTEN FREE,SOFT & HEARTY WHL GRAIN BREAD~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28373~^~1800~^~Udi's, Gluten Free, Whole Grain Dinner Rolls~^~UDI'S,GLUTEN FREE,WHL GRAIN DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28374~^~1800~^~Van's, Gluten Free, Totally Original Pancakes~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL PANCAKES~^^~Van's International Foods~^^^0^^6.25^^^ -~28375~^~1800~^~Van's, Gluten Free, Totally Original Waffles~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL WAFFLES~^^~Van's International Foods~^^^0^^^^^ -~28376~^~1800~^~Van's, The Perfect 10, Crispy Six Whole Grain + Four Seed Baked Crackers, Gluten Free~^~VAN'S,THE PRFCT 10,CRSP 6 WHL GRN 4 SD BKD CRCKRS,GLTN FREE~^^~Van's International Foods~^^^0^^6.25^^^ -~28397~^~1800~^~Bread, multi-grain (includes whole-grain)~^~BREAD,MULTI-GRAIN (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~28399~^~1800~^~Cookies, animal crackers (includes arrowroot, tea biscuits)~^~COOKIES,ANIMAL CRACKERS (INCL ARROWROOT,TEA BISCUITS,)~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~31019~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, dry~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,DRY~^^~Acadian Seaplants Limited~^^^0^~Chondrus crispus~^6.25^^^ -~31020~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, rehydrated~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,REHYDRATED~^^~Acadian Seaplants Limited~^^^0^^6.25^^^ -~31021~^~1100~^~Potatoes, hash brown, refrigerated, unprepared~^~POTATOES,HASH BROWN,REFR,UNPREP~^^^^^0^^^^^ -~31022~^~1100~^~Potatoes, hash brown, refrigerated, prepared, pan-fried in canola oil~^~POTATOES,HASH BROWN,REFR,PREP,PAN-FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^^^0^^^^^ -~31023~^~1100~^~Sweet Potatoes, french fried, frozen as packaged, salt added in processing~^~SWEET POTATOES,FRENCH FR,FRZ AS PACKAGED,SALT ADDED~^^^~Y~^^0^^6.25^4.03^8.37^2.78 -~31024~^~1100~^~Sweet Potatoes, french fried, crosscut, frozen, unprepared~^~SWEET POTATOES,FRENCH FR,CROSSCUT,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31025~^~1100~^~Sweet Potato puffs, frozen, unprepared~^~SWEET POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31026~^~1100~^~Potatoes, yellow fleshed, roasted, salt added in processing, frozen, unprepared~^~POTATOES,YEL FLESHED,RSTD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^^^^ -~31027~^~1100~^~Potatoes, yellow fleshed, french fried, frozen, unprepared~^~POTATOES,YEL FLESHED,FRENCH FR,FRZ,UNPREP~^^^^^0^^^^^ -~31028~^~1100~^~Potatoes, yellow fleshed, hash brown, shredded, salt added in processing, frozen, unprepared~^~POTATO\,YEL FLSH,HASH BRN,SHRD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31029~^~1100~^~Potatoes, french fried, wedge cut, frozen, unprepared~^~POTATOES,FRENCH FR,WEDGE CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31030~^~1100~^~Potatoes, french fried, steak cut, salt not added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,STK CUT,SALT NOT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31031~^~1100~^~Potatoes, french fried, cross cut, frozen, unprepared~^~POTATOES,FRENCH FR,CROSS CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31033~^~1100~^~Ginger root, pickled, canned, with artificial sweetener~^~GINGER ROOT,PICKLED,CND,W/ ART SWTNR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~31034~^~1100~^~Peppers, hot pickled, canned~^~PEPPERS,HOT PICKLED,CND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~31035~^~1100~^~Vegetable juice, BOLTHOUSE FARMS, DAILY GREENS~^~VEGETABLE JUC,BOLTHOUSE FARMS,DAILY GRNS~^^~Bolthouse Farms~^~Y~^^0^^6.25^2.44^8.37^3.57 -~31036~^~1100~^~Potatoes, mashed, ready-to-eat~^~POTATOES,MSHD,RTE~^^^~Y~^^0^^^^^ -~32000~^~2200~^~Rice and vermicelli mix, beef flavor, unprepared~^~RICE & VERMICELLI MIX,BF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32001~^~2200~^~Rice and vermicelli mix, beef flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,BF FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^3.87^8.37^4.14 -~32002~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, unprepared~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32003~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,PREP W/ 80% MARGARIN~^^^^^0^^^^^ -~32004~^~2200~^~Macaroni and cheese, box mix with cheese sauce, unprepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,UNPREP~^^^~Y~^^0^^^^^ -~32005~^~2200~^~Macaroni and cheese, box mix with cheese sauce, prepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,PREP~^^^^^0^^^^^ -~32006~^~2200~^~Taquitos, frozen, chicken and cheese, oven-heated~^~TAQUITOS,FRZ,CHICK & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32007~^~2200~^~Taquitos, frozen, beef and cheese, oven-heated~^~TAQUITOS,FRZ,BF & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32008~^~2200~^~Pasta mix, classic cheeseburger macaroni, unprepared~^~PASTA MIX,CLASSIC CHEESEBURGER MACARONI,UNPREP~^^^~Y~^^0^^^^^ -~32009~^~2200~^~Pasta mix, classic beef, unprepared~^~PASTA MIX,CLASSIC BF,UNPREP~^^^~Y~^^0^^6.25^^^ -~32010~^~2200~^~Pasta mix, Italian lasagna, unprepared~^~PASTA MIX,ITALIAN LASAGNA,UNPREP~^^^~Y~^^0^^6.25^^^ -~32011~^~2200~^~Yellow rice with seasoning, dry packet mix, unprepared~^~YELLOW RICE W/ SEASONING,DRY PACKET MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32012~^~2200~^~Pizza rolls, frozen, unprepared~^~PIZZA ROLLS,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32013~^~2200~^~Potsticker or wonton, pork and vegetable, frozen, unprepared~^~POTSTICKER OR WONTON,PORK & VEG,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32014~^~2200~^~Macaroni or noodles with cheese, made from reduced fat packaged mix, unprepared~^~MACARONI OR NOODLES W/ CHS,MADE FROM RED FAT PACKAGED MIX,UN~^^^~Y~^^0^^6.25^^^ -~32015~^~2200~^~Turnover, cheese-filled, tomato-based sauce, frozen, unprepared~^~TURNOVER,CHEESE-FILLED,TOMATO-BASED SAU,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32016~^~2200~^~Macaroni or noodles with cheese, microwaveable, unprepared~^~MACARONI OR NOODLES W/ CHS,MICROWAVEABLE,UNPREP~^^^~Y~^^0^^6.25^^^ -~32017~^~2200~^~Pasta mix, Italian four cheese lasagna, unprepared~^~PASTA MIX,ITALIAN FOUR CHS LASAGNA,UNPREP~^^^^^0^^6.25^^^ -~32018~^~2200~^~Spanish rice mix, dry mix, unprepared~^~SPANISH RICE MIX,DRY MIX,UNPREP~^^^^^0^^6.25^^^ -~32019~^~2200~^~Lasagna, cheese, frozen, unprepared~^~LASAGNA,CHS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~32020~^~2200~^~Chicken, thighs, frozen, breaded, reheated~^~CHICKEN,THIGHS,FRZ,BREADED,REHTD~^^^^^0^^6.25^^^ -~32021~^~2200~^~Spanish rice mix, dry mix, prepared (with canola/vegetable oil blend or diced tomatoes and margarine)~^~SPANISH RICE MIX,DRY MIX,PREP (WITH CANOLA/VEGETABLE OIL BLE~^^^^^0^^6.25^^^ -~32024~^~2200~^~Rice mix, cheese flavor, dry mix, unprepared~^~RICE MIX,CHS FLAVOR,DRY MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32025~^~2200~^~Dumpling, potato- or cheese-filled, frozen~^~DUMPLING,POTATO- OR CHEESE-FILLED,FRZ~^^^~Y~^^0^^6.25^^^ -~32026~^~2200~^~Turnover, chicken- or turkey-, and vegetable-filled, reduced fat, frozen~^~TURNOVER,CHICKEN- OR TURKEY-,& VEGETABLE-FILLED,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32027~^~2200~^~Turnover, meat- and cheese-filled, tomato-based sauce, reduced fat, frozen~^~TURNOVER,MEAT- & CHEESE-FILLED,TOMATO-BASED SAU,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32028~^~2200~^~Turnover, filled with egg, meat and cheese, frozen~^~TURNOVER,FILLED W/ EGG,MEAT & CHS,FRZ~^^^~Y~^^0^^6.25^^^ -~32029~^~2200~^~Rice mix, white and wild, flavored, unprepared~^~RICE MIX,WHITE & WILD,FLAV,UNPREP~^^^~Y~^^0^^6.25^^^ -~32031~^~2200~^~Salisbury steak with gravy, frozen~^~SALISBURY STEAK W/ GRAVY,FRZ~^^^~Y~^^0^^6.25^^^ -~32032~^~2200~^~Sausage, egg and cheese breakfast biscuit~^~SAUSAGE,EGG & CHS BRKFST BISCUIT~^^^~Y~^^0^^6.25^^^ -~32034~^~2200~^~HUNGRY MAN, Salisbury Steak With Gravy, frozen, unprepared~^~HUNGRY MAN,SALISBURY STEAK W/ GRAVY,FRZ,UNPREP~^^~Hungry Man~^^^0^^^^^ -~32035~^~2200~^~BANQUET, Salisbury Steak With Gravy, family size, frozen, unprepared~^~BANQUET,SALISBURY STEAK W/ GRAVY,FAMILY SIZE,FRZ,UNPREP~^^~Banquet Foods Corp.~^^^0^^^^^ -~32036~^~2200~^~JIMMY DEAN, Sausage, Egg, and Cheese Breakfast Biscuit, frozen, unprepared~^~JIMMY DEAN,SAUSAGE,EGG,& CHS BRKFST BISCUIT,FRZ,UNPREP~^^~Jimmy Dean Foods~^^^0^^^^^ -~33862~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with ARA and DHA, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33863~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM LIPIL,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33864~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, Liquid concentrate, not reconstituted~^~INF FORMU, MEA JOHN, ENFA, PRE LIPIL, INFA, LIQ CON, NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33865~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, Liquid concentrate, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFA,PREM,INFANT,LIQ CONC,NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33866~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler transitions, with ARA and DHA, powder~^~INF FORMU,MEAD JOH,ENFA,ENFA,GEN,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33867~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START, PROTECT PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33868~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, powder~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33869~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START 2, PROTECT PLUS, PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33870~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, Soy, Toddler transitions, with ARA and DHA, powder~^~INF FOR,ME JO,ENFAML,ENFA,SOY,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33871~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, powder, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMIL, GO & GR, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~33872~^~0300~^~Infant formula, GERBER, GOOD START 2 SOY, with iron, powder~^~INF FORMULA, GERBER, GOOD START 2 SOY, W/ IRON,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33873~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, PurAmino, powder, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFAM,NUTRAMIG,PURAMI,PDR,NO REC~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33874~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAMI,PREMATURE,20 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33875~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAML,PREMATURE,24 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33876~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33877~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33878~^~0300~^~Babyfood, GERBER, Banana with orange medley~^~BABYFOOD,GERBER,BANANA W/ ORANGE MEDLEY~^^~GERBER~^~Y~^^0^^6.25^3.98^8.37^3.16 -~33881~^~0300~^~Babyfood, rice cereal, dry, EARTHS BEST ORGANIC WHOLE GRAIN, fortified only with iron~^~BABYFOOD,RICE CRL,DRY,EARTHS BEST ORGANIC WHL GRAIN,FORT ONL~^^~Eaths Best~^^^0^^^^^ -~35001~^~3500~^~Agutuk, fish/berry with seal oil (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH/BERRY W/ SEAL OIL (ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35003~^~3500~^~Agutuk, meat-caribou (Alaskan ice cream) (Alaska Native)~^~AGUTUK,MEAT-CARIBOU (ALASKAN ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35004~^~3500~^~Ascidians (tunughnak) (Alaska Native)~^~ASCIDIANS (TUNUGHNAK) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35007~^~3500~^~Bear, black, meat (Alaska Native)~^~BEAR,BLACK,MEAT (ALASKA NATIVE)~^^^^^0^~Ursus americanus~^6.25^^^ -~35008~^~3500~^~Bear, polar, meat, raw (Alaska Native)~^~BEAR,POLAR,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ursus maritimus~^6.25^^^ -~35009~^~3500~^~Whale, beluga, meat, dried (Alaska Native)~^~WHALE,BELUGA,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35010~^~3500~^~Whale, beluga, eyes (Alaska Native)~^~WHALE,BELUGA,EYES (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35011~^~3500~^~Whale, beluga, meat, raw (Alaska Native)~^~Whale, beluga, meat, raw (Alaska Native)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35012~^~3500~^~Whale, beluga, flipper, raw (Alaska Native)~^~WHALE,BELUGA,FLIPPER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35013~^~3500~^~Whale, beluga, liver, raw (Alaska Native)~^~WHALE,BELUGA,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35014~^~3500~^~Oil, beluga, whale (Alaska Native)~^~OIL,BELUGA,WHALE (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^^^^ -~35015~^~3500~^~Blackberries, wild, raw (Alaska Native)~^~BLACKBERRIES,WILD,RAW (ALASKA NATIVE)~^~Crowberries~^^^^0^~Rubus spp.~^5.30^^^ -~35016~^~3500~^~Fish, blackfish, whole (Alaska Native)~^~FISH,BLACKFISH,WHL (ALASKA NATIVE)~^^^^^0^~Dallia pectoralis~^6.25^^^ -~35017~^~3500~^~Blueberries, wild, frozen (Alaska Native)~^~BLUEBERRIES,WILD,FRZ (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskanese and Ovalifolium~^5.30^^^ -~35021~^~3500~^~Caribou, bone marrow, raw (Alaska Native)~^~CARIBOU,BONE MARROW,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35022~^~3500~^~Caribou, eye, raw (Alaska Native)~^~CARIBOU,EYE,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35023~^~3500~^~Caribou, liver, raw (Alaska Native)~^~CARIBOU,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35024~^~3500~^~Stew/soup, caribou (Alaska Native)~^~STEW/SOUP,CARIBOU (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35025~^~3500~^~Caribou, tongue, raw (Alaska Native)~^~CARIBOU,TONGUE,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35026~^~3500~^~Chiton, leathery, gumboots (Alaska Native)~^~CHITON,LEATHERY,GUMBOOTS (ALASKA NATIVE)~^^^^^0^~Katharina tunicata~^6.25^^^ -~35027~^~3500~^~Cloudberries, raw (Alaska Native)~^~CLOUDBERRIES,RAW (ALASKA NATIVE)~^~baked apple berry, yellowberry, salmonberry~^^^^0^~Rubus chamaemorus L.~^5.30^^^ -~35028~^~3500~^~Cockles, raw (Alaska Native)~^~COCKLES,RAW (ALASKA NATIVE)~^^^^^0^~Clinocardium nuttallii~^6.25^^^ -~35029~^~3500~^~Cranberries, wild, bush, raw (Alaska Native)~^~CRANBERRIES,WILD,BUSH,RAW (ALASKA NATIVE)~^^^^^0^~Viburnum edule~^5.30^^^ -~35030~^~3500~^~Cranberry, low bush or lingenberry, raw (Alaska Native)~^~CRANBERRY,LO BUSH OR LINGENBERRY,RAW (ALASKA NATIVE)~^~lingenberry~^^^^0^~Vaccinium vitis-idaea~^5.30^^^ -~35034~^~3500~^~Fish, devilfish, meat (Alaska Native)~^~FISH,DEVILFISH,MEAT (ALASKA NATIVE)~^~Gray Whale~^^^^0^~Myoxocephalus~^6.25^^^ -~35038~^~3500~^~Fireweed, young leaves, raw (Alaska Native)~^~FIREWEED,YOUNG LEAVES,RAW (ALASKA NATIVE)~^^^^^0^~Chamerion angustifolium~^5.30^^^ -~35039~^~3500~^~Fish, herring eggs on giant kelp, Pacific (Alaska Native)~^~FISH,HERRING EGGS ON GIANT KELP,PACIFIC (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes & Macrocystis integrifolia~^6.25^^^ -~35040~^~3500~^~Fish, herring eggs, Pacific, dry (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,DRY (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35041~^~3500~^~Fish, herring eggs, Pacific, plain (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,PLN (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35042~^~3500~^~Fish, herring, Pacific, flesh, air-dried, packed in oil (Alaska Native)~^~FISH,HERRING,PACIFIC,FLSH,AIR-DRIED,PACK OIL (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35043~^~3500~^~Huckleberries, raw (Alaska Native)~^~HUCKLEBERRIES,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaense~^5.30^^^ -~35046~^~3500~^~Fish, lingcod, meat, raw (Alaska Native)~^~FISH,LINGCOD,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35047~^~3500~^~Fish, lingcod, liver (Alaska Native)~^~FISH,LINGCOD,LIVER (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35048~^~3500~^~Stew, moose (Alaska Native)~^~STEW,MOOSE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35049~^~3500~^~Moose, meat, raw (Alaska Native)~^~MOOSE,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35050~^~3500~^~Mashu roots, raw (Alaska Native)~^~MASHU ROOTS,RAW (ALASKA NATIVE)~^^^^^0^~Hedysarum alpinum~^5.30^^^ -~35051~^~3500~^~Moose, liver, braised (Alaska Native)~^~MOOSE,LIVER,BRSD (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35052~^~3500~^~Mouse nuts, roots (Alaska Native)~^~MOUSE NUTS,ROOTS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35053~^~3500~^~Mouse nuts, seedlings (Alaska Native)~^~MOUSE NUTS,SEEDLINGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35054~^~3500~^~Octopus (Alaska Native)~^~OCTOPUS (ALASKA NATIVE)~^^^^^0^~Octopus dofleini~^6.25^^^ -~35055~^~3500~^~Seal, bearded (Oogruk), meat, dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED (ALASKA NATIVE)~^~Oogruk~^^^^0^^6.25^^^ -~35056~^~3500~^~Seal, bearded (Oogruk), meat, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Erignathus barbatus~^6.25^^^ -~35057~^~3500~^~Oil, bearded seal (Oogruk) (Alaska Native)~^~OIL,BEARDED SEAL (OOGRUK) (ALASKA NATIVE)~^^^^^0^^^^^ -~35058~^~3500~^~Oopah (tunicate), whole animal (Alaska Native)~^~OOPAH (TUNICATE),WHL ANIMAL (ALASKA NATIVE)~^^^^^0^~Tunicata~^6.25^^^ -~35059~^~3500~^~Owl, horned, flesh, raw (Alaska Native)~^~OWL,HORNED,FLESH,RAW (ALASKA NATIVE)~^^^^^0^~Bubo virgimianus~^6.25^^^ -~35060~^~3500~^~Fish, pike, northern, liver (Alaska Native)~^~FISH,PIKE,NORTHERN,LIVER (ALASKA NATIVE)~^^^^^0^~Esox lucius~^6.25^^^ -~35063~^~3500~^~Rhubarb, wild, leaves (Alaska Native)~^~RHUBARB,WILD,LEAVES (ALASKA NATIVE)~^^^^^0^~Polygenum alaskanum~^5.30^^^ -~35064~^~3500~^~Fish, salmon, tipnuk, fermented (Alaska Native)~^~FISH,SALMON,TIPNUK,FERMENTED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35065~^~3500~^~Fish, salmon, king, chinook, kippered, canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,KIPPERED,CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35066~^~3500~^~Fish, salmon, king, chinook, smoked and canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED & CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35067~^~3500~^~Fish, salmon, king, chinook, smoked, brined (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED,BRINED (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35068~^~3500~^~Fish, salmon, king, chinook, liver (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,LIVER (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35069~^~3500~^~Duck, scoter, white-winged, meat (Alaska Native)~^~DUCK,SCOTER,WHITE-WINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Melanitta fusca~^5.30^^^ -~35070~^~3500~^~Sea cucumber, yane (Alaska Native)~^~SEA CUCUMBER,YANE (ALASKA NATIVE)~^^^^^0^~Stichopus californicus~^6.25^^^ -~35071~^~3500~^~Seal, ringed, meat (Alaska Native)~^~SEAL,RINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35072~^~3500~^~Seal, ringed, liver (Alaska Native)~^~SEAL,RINGED,LIVER (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35073~^~3500~^~Soup, fish, homemade (Alaska Native)~^~SOUP,FISH,HOMEMADE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35074~^~3500~^~Sourdock, young leaves (Alaska Native)~^~SOURDOCK,YOUNG LEAVES (ALASKA NATIVE)~^^^^^0^~Rumex articus~^6.25^^^ -~35075~^~3500~^~Squirrel, ground, meat (Alaska Native)~^~SQUIRREL,GROUND,MEAT (ALASKA NATIVE)~^^^^^0^~Citellus undulatus~^5.30^^^ -~35078~^~3500~^~Tea, tundra, herb and laborador combination (Alaska Native)~^~TEA,TUNDRA,HERB & LABORADOR COMBINATION (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35079~^~3500~^~Walrus, meat, dried (Alaska Native)~^~WALRUS,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35080~^~3500~^~Deer (venison), sitka, raw (Alaska Native)~^~DEER (VENISON),SITKA,RAW (ALASKA NATIVE)~^~sitka deer, venison~^^^^0^~Odocoileus spp~^6.25^4.27^9.02^3.87 -~35081~^~3500~^~Walrus, meat, raw (Alaska Native)~^~WALRUS,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35082~^~3500~^~Walrus, meat and subcutaneous fat raw (Alaska Native)~^~WALRUS,MEAT & SUBCUTANEOUS FAT RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35083~^~3500~^~Walrus, liver, raw (Alaska Native)~^~WALRUS,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35084~^~3500~^~Oil, walrus (Alaska Native)~^~OIL,WALRUS (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35085~^~3500~^~Whale, bowhead, subcutaneous fat (blubber) (Alaska Native)~^~WHALE,BOWHEAD,SUBCUTANEOUS FAT (BLUBBER) (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35086~^~3500~^~Whale, bowhead, skin and subcutaneous fat (muktuk) (Alaska Native)~^~WHALE,BOWHEAD,SKN & SUBCUTANEOUS FATMUKTUK(ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35087~^~3500~^~Oil, whale, bowhead (Alaska Native)~^~OIL,WHALE,BOWHEAD (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35088~^~3500~^~Fish, whitefish, broad, liver (Alaska Native)~^~FISH,WHITEFISH,BROAD,LIVER (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35089~^~3500~^~Fish, whitefish, mixed species, raw (Alaska Native)~^~FISH,WHITEFISH,MXD SP,RAW (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus spp.~^6.25^^^ -~35091~^~3500~^~Fish, whitefish, broad, head, eyes, cheeks and soft bones (Alaska Native)~^~FISH,WHITEFISH,HEAD,EYES,CHEEKS & SOFT BONES (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35092~^~3500~^~Willow, leaves in oil (Alaska Native)~^~WILLOW,LEAVES IN OIL (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^6.25^^^ -~35093~^~3500~^~Willow, young leaves, chopped (Alaska Native)~^~WILLOW,YOUNG LEAVES,CHOPD (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^5.30^^^ -~35130~^~3500~^~Mush, blue corn with ash (Navajo)~^~MUSH,BLUE CORN W/ ASH (NAVAJO)~^^^^^0^^^^^ -~35131~^~3500~^~Cornmeal, blue (Navajo)~^~CORNMEAL,BLUE (NAVAJO)~^^^^^0^^^^^ -~35132~^~3500~^~Melon, banana (Navajo)~^~MELON,BANANA (NAVAJO)~^^^^^0^^6.25^^^ -~35133~^~3500~^~Chilchen (Red Berry Beverage) (Navajo)~^~CHILCHEN (RED BERRY BEVERAGE) (NAVAJO)~^^^^^0^^6.25^^^ -~35134~^~3500~^~Corn, dried (Navajo)~^~CORN,DRIED (NAVAJO)~^^^^^0^^6.25^^^ -~35135~^~3500~^~Corn, white, steamed (Navajo)~^~CORN,WHITE,STMD (NAVAJO)~^^^^^0^^^^^ -~35136~^~3500~^~Cornmeal, white (Navajo)~^~CORNMEAL,WHITE (NAVAJO)~^^^^^0^^6.25^^^ -~35137~^~3500~^~Cornmeal, yellow (Navajo)~^~CORNMEAL,YEL (NAVAJO)~^^^^^0^^6.25^^^ -~35138~^~3500~^~Squash, Indian, raw (Navajo)~^~SQUASH,INDIAN,RAW (NAVAJO)~^^^^^0^^6.25^^^ -~35139~^~3500~^~Squash, Indian, cooked, boiled (Navajo)~^~SQUASH,INDIAN,CKD,BLD (NAVAJO)~^^^^^0^^6.25^^^ -~35140~^~3500~^~Bread, kneel down (Navajo)~^~BREAD,KNEEL DOWN (NAVAJO)~^^^^^0^^6.25^^^ -~35141~^~3500~^~Mutton, cooked, roasted (Navajo)~^~MUTTON,CKD,RSTD (NAVAJO)~^^^^^0^^6.25^^^ -~35142~^~3500~^~Frybread, made with lard (Navajo)~^~FRYBREAD,MADE W/ LARD (NAVAJO)~^^^^^0^^^^^ -~35143~^~3500~^~Tortilla, includes plain and from mutton sandwich (Navajo)~^~TORTILLA,INCL PLN & FROM MUTTON SNDWCH (NAVAJO)~^^^^^0^^^^^ -~35144~^~3500~^~Stew, dumpling with mutton (Navajo)~^~STEW,DUMPLING W/ MUTTON (NAVAJO)~^^^^^0^^^^^ -~35145~^~3500~^~Stew, hominy with mutton (Navajo)~^~STEW,HOMINY W/ MUTTON (NAVAJO)~^^^^^0^^6.25^^^ -~35146~^~3500~^~Stew, mutton, corn, squash (Navajo)~^~STEW,MUTTON,CORN,SQUASH (NAVAJO)~^^^^^0^^6.25^^^ -~35147~^~3500~^~Tamales (Navajo)~^~TAMALES (NAVAJO)~^^^^^0^^6.25^^^ -~35148~^~3500~^~Stew, steamed corn (Navajo)~^~STEW,STMD CORN (NAVAJO)~^^^^^0^^^^^ -~35149~^~3500~^~Fish, halibut, raw, with skin (Alaska Native)~^~FISH,HALIBUT,RAW,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35150~^~3500~^~Fish, salmon, coho (silver), raw (Alaska Native)~^~FISH,SALMON,COHO (SILVER),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35151~^~3500~^~Fish, salmon, sockeye (red), raw (Alaska Native)~^~FISH,SALMON,SOCKEYE (RED),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35152~^~3500~^~Fish, Salmon, Chum, raw (Alaska Native)~^~FISH,SALMON,CHUM,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35153~^~3500~^~Fish, salmon, king (chinook), raw (Alaska Native)~^~FISH,SALMON,KING (CHINOOK),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35154~^~3500~^~Salmonberries, raw (Alaska Native)~^~SALMONBERRIES,RAW (ALASKA NATIVE)~^~akpiks~^^^^0^~Rubus spectabilis~^5.30^^^ -~35155~^~3500~^~Blueberries, wild, raw (Alaska Native)~^~BLUEBERRIES,WILD,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaenese~^5.30^^^ -~35156~^~3500~^~Oil, spotted seal (Alaska Native)~^~OIL,SPOTTED SEAL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35157~^~3500~^~Fish, salmon, red, canned, bones removed (Alaska Native)~^~FISH,SALMON,RED,CND,BONES REMOVED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35158~^~3500~^~Fish, whitefish, eggs (Alaska Native)~^~FISH,WHITEFISH,EGGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35160~^~3500~^~Caribou, rump meat, half dried (Alaska Native)~^~CARIBOU,RUMP MEAT,HALF DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35161~^~3500~^~Caribou, shoulder meat, dried (Alaska Native)~^~CARIBOU,SHLDR MEAT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35162~^~3500~^~Caribou, hind quarter meat, raw (Alaska Native)~^~CARIBOU,HIND QUARTER MEAT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35164~^~3500~^~Seal, bearded (Oogruk), meat, dried, in oil (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED,IN OIL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35165~^~3500~^~Fish, whitefish, dried (Alaska Native)~^~FISH,WHITEFISH,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35166~^~3500~^~Fish, salmon, red, (sockeye), canned, smoked (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),CND,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35167~^~3500~^~Fish, salmon, red, (sockeye), kippered (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),KIPPERED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35168~^~3500~^~Fish, salmon, king, with skin, kippered, (Alaska Native)~^~FISH,SALMON,KING,W/ SKN,KIPPERED,(ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35169~^~3500~^~Fish, sheefish, raw (Alaska Native)~^~FISH,SHEEFISH,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35170~^~3500~^~Seal, bearded (Oogruk), meat, low quadrant, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,LO QUADRANT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35171~^~3500~^~Fish, salmon, chum, dried (Alaska Native)~^~FISH,SALMON,CHUM,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35172~^~3500~^~Elk, free range, ground, cooked patties (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,CKD PATTIES (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35173~^~3500~^~Elk, free range, ground, raw (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35174~^~3500~^~Buffalo, free range, top round steak, raw (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35175~^~3500~^~Seal, bearded (Oogruk), meat, partially dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,PART DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35176~^~3500~^~Buffalo, free range, top round steak, cooked (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35177~^~3500~^~Elk, free range, roast, eye of round, raw (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35178~^~3500~^~Elk, free range, roast, eye of round, cooked (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35179~^~3500~^~Chokecherries, raw, pitted (Shoshone Bannock)~^~CHOKECHERRIES,RAW,PITTED (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35180~^~3500~^~Steelhead trout, dried, flesh (Shoshone Bannock)~^~STEELHEAD TROUT,DRIED,FLESH (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35181~^~3500~^~Steelhead trout, boiled, canned (Alaska Native)~^~STEELHEAD TROUT,BLD,CND (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35182~^~3500~^~Acorn stew (Apache)~^~ACORN STEW (APACHE)~^^^^^0^^6.25^^^ -~35183~^~3500~^~Corn, dried, yellow (Northern Plains Indians)~^~CORN,DRIED,YEL (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35184~^~3500~^~Smelt, dried (Alaska Native)~^~SMELT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35185~^~3500~^~Frybread, made with lard (Apache)~^~FRYBREAD,MADE W/ LARD (APACHE)~^^^^^0^^^^^ -~35186~^~3500~^~Corned beef and potatoes in tortilla (Apache)~^~CORNED BF & POTATOES IN TORTILLA (APACHE)~^^^^^0^^^^^ -~35187~^~3500~^~Tennis Bread, plain (Apache)~^~TENNIS BREAD,PLN (APACHE)~^^^^^0^^6.25^^^ -~35188~^~3500~^~Fish, halibut, cooked, with skin (Alaska Native)~^~FISH,HALIBUT,CKD,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35190~^~3500~^~Salmon, red (sockeye), filets with skin, smoked (Alaska Native)~^~SALMON,RED (SOCKEYE),FILETS W/ SKN,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35192~^~3500~^~Agave, raw (Southwest)~^~AGAVE,RAW (SOUTHWEST)~^^^^^0^^6.25^^^ -~35193~^~3500~^~Agave, cooked (Southwest)~^~AGAVE,CKD (SOUTHWEST)~^^^^^0^^6.25^^^ -~35194~^~3500~^~Agave, dried (Southwest)~^~AGAVE,DRIED (SOUTHWEST)~^^^^^0^^6.25^^^ -~35195~^~3500~^~Cattail, Narrow Leaf Shoots (Northern Plains Indians)~^~CATTAIL,NARROW LEAF SHOOTS (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35196~^~3500~^~Lambsquarters, raw (Northern Plains Indians)~^~LAMBSQUARTERS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35197~^~3500~^~Lambsquarters, steamed (Northern Plains Indians)~^~LAMBSQUARTERS,STMD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35198~^~3500~^~Prickly pears, raw (Northern Plains Indians)~^~PRICKLY PEARS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35199~^~3500~^~Prickly pears, broiled (Northern Plains Indians)~^~PRICKLY PEARS,BRLD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35200~^~3500~^~Prairie Turnips, raw (Northern Plains Indians)~^~PRAIRIE TURNIPS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35201~^~3500~^~Prairie Turnips, boiled (Northern Plains Indians)~^~PRAIRIE TURNIPS,BLD (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35202~^~3500~^~Raspberries, wild (Northern Plains Indians)~^~RASPBERRIES,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35203~^~3500~^~Rose Hips, wild (Northern Plains Indians)~^~ROSE HIPS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35204~^~3500~^~Chokecherries, raw, pitted (Northern Plains Indians)~^~CHOKECHERRIES,RAW,PITTED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35205~^~3500~^~Stinging Nettles, blanched (Northern Plains Indians)~^~STINGING NETTLES,BLANCHED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35206~^~3500~^~Plums, wild (Northern Plains Indians)~^~PLUMS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35207~^~3500~^~Pinon Nuts, roasted (Navajo)~^~PINON NUTS,RSTD (NAVAJO)~^^^^^0^~Pinus spp.~^5.30^^^ -~35211~^~3500~^~Caribou, hind quarter, meat, cooked (Alaska Native)~^~CARIBOU,HIND QUARTER,MEAT,CKD (ALASKA NATIVE)~^^^^^0^^^^^ -~35225~^~3500~^~Agutuk, fish with shortening (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH W/ SHORTENING (ALASKAN ICE CREAM) (ALASKA NATIVE~^^^^^0^^6.25^^^ -~35226~^~3500~^~Sea lion, Steller, liver (Alaska Native)~^~SEA LION,STELLER,LIVER (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35227~^~3500~^~Sea lion, Steller, kidney (Alaska Native)~^~SEA LION,STELLER,KIDNEY (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35228~^~3500~^~Sea lion, Steller, heart (Alaska Native)~^~SEA LION,STELLER,HEART (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35229~^~3500~^~Sea lion, Steller, meat (Alaska Native)~^~SEA LION,STELLER,MEAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35230~^~3500~^~Sea lion, Steller, meat with fat (Alaska Native)~^~SEA LION,STELLER,MEAT W/ FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35231~^~3500~^~Sea lion, Steller, fat (Alaska Native)~^~SEA LION,STELLER,FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35232~^~3500~^~Wocas, dried seeds, Oregon, yellow pond lily (Klamath)~^~WOCAS,DRIED SEEDS,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35233~^~3500~^~Hazelnuts, beaked (Northern Plains Indians)~^~HAZELNUTS,BEAKED (NORTHERN PLAINS INDIANS)~^^^^^0^~Corylus cornuta Marsh.~^5.30^^^ -~35234~^~3500~^~Piki bread, made from blue cornmeal (Hopi)~^~PIKI BREAD,MADE FROM BLUE CORNMEAL (HOPI)~^^^^^0^^6.25^^^ -~35235~^~3500~^~Wocas, tuber, cooked, Oregon, yellow pond lily (Klamath)~^~WOCAS,TUBER,CKD,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35236~^~3500~^~Stew, pinto bean and hominy, badufsuki (Hopi)~^~STEW,PINTO BEAN & HOMINY,BADUFSUKI (HOPI)~^^^^^0^^^^^ -~35237~^~3500~^~Tamales, masa and pork filling (Hopi)~^~TAMALES,MASA & PORK FILLING (HOPI)~^^^^^0^^^^^ -~35238~^~3500~^~Tea, herbal, brewed, Hohoysi (Hopi)~^~TEA,HERBAL,BREWED,HOHOYSI (HOPI)~^^^^^0^^^^^ -~35239~^~3500~^~Tortilla, blue corn, Sakwavikaviki (Hopi)~^~TORTILLA,BLUE CORN,SAKWAVIKAVIKI (HOPI)~^^^^^0^^^^^ -~35240~^~3500~^~Bread, blue corn, somiviki (Hopi)~^~BREAD,BLUE CORN,SOMIVIKI (HOPI)~^^^^^0^^^^^ -~36000~^~3600~^~APPLEBEE'S, 9 oz house sirloin steak~^~APPLEBEE'S,9 OZ HOUSE SIRLOIN STEAK~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36001~^~3600~^~APPLEBEE'S, Double Crunch Shrimp~^~APPLEBEE'S,DOUBLE CRUNCH SHRIMP~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36002~^~3600~^~APPLEBEE'S, french fries~^~APPLEBEE'S,FRENCH FR~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36003~^~3600~^~APPLEBEE'S, KRAFT, Macaroni & Cheese, from kid's menu~^~APPLEBEE'S,KRAFT,MACARONI & CHS,FROM KID'S MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36004~^~3600~^~APPLEBEE'S, mozzarella sticks~^~APPLEBEE'S,MOZZARELLA STKS~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36005~^~3600~^~APPLEBEE'S, chicken tenders, from kids' menu~^~APPLEBEE'S,CHICK TENDERS,FROM KIDS' MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36006~^~3600~^~T.G.I. FRIDAY'S, FRIDAY'S Shrimp, breaded~^~T.G.I. FRIDAY'S,FRIDAY'S SHRIMP,BREADED~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36007~^~3600~^~T.G.I. FRIDAY'S, french fries~^~T.G.I. FRIDAY'S,FRENCH FR~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36008~^~3600~^~T.G.I. FRIDAY'S, fried mozzarella~^~T.G.I. FRIDAY'S, fried mozzarella~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36009~^~3600~^~T.G.I. FRIDAY'S, macaroni & cheese, from kid's menu~^~T.G.I. FRIDAY'S,MACARONI & CHS,FROM KID'S MENU~^~family style, Fridays, macaroni, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36010~^~3600~^~T.G.I. FRIDAY'S, chicken fingers, from kids' menu~^~T.G.I. FRIDAY'S,CHICK FINGERS,FROM KIDS' MENU~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36011~^~3600~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36012~^~3600~^~Restaurant, family style, fried mozzarella sticks~^~RESTAURANT,FAMILY STYLE,FRIED MOZZARELLA STKS~^~family style~^^~Y~^^0^^^^^ -~36013~^~3600~^~Restaurant, family style, sirloin steak~^~RESTAURANT,FAMILY STYLE,SIRLOIN STEAK~^~family style~^^^^0^^^^^ -~36014~^~3600~^~Restaurant, family style, french fries~^~RESTAURANT,FAMILY STYLE,FRENCH FR~^~family style~^^^^0^^^^^ -~36015~^~3600~^~Restaurant, family style, chicken fingers, from kid's menu~^~RESTAURANT,FAMILY STYLE,CHICK FINGERS,FROM KID'S MENU~^~family style~^^^^0^^^^^ -~36016~^~3600~^~Restaurant, family style, shrimp, breaded and fried~^~RESTAURANT,FAMILY STYLE,SHRIMP,BREADED & FRIED~^~family style~^^~Y~^^0^^^^^ -~36017~^~3600~^~Restaurant, family style, macaroni & cheese, from kids' menu~^~RESTAURANT,FAMILY STYLE,MACARONI & CHS,FROM KIDS' MENU~^~family style~^^~Y~^^0^^^^^ -~36018~^~3600~^~APPLEBEE'S, fish, hand battered~^~APPLEBEE'S,FISH,HAND BATTERED~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36019~^~3600~^~APPLEBEE'S, chili~^~APPLEBEE'S,CHILI~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36020~^~3600~^~T.G.I. FRIDAY'S, chicken fingers~^~T.G.I. FRIDAY'S,CHICK FINGERS~^^~T.G.I Friday's~^^^0^^^^^ -~36021~^~3600~^~APPLEBEE'S, coleslaw~^~APPLEBEE'S,COLESLAW~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36022~^~3600~^~APPLEBEE'S, crunchy onion rings~^~APPLEBEE'S,CRUNCHY ONION RINGS~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36023~^~3600~^~APPLEBEE'S, chicken tenders platter~^~APPLEBEE'S,CHICK TENDERS PLATTER~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36024~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED~^^~Cracker Barrel~^^^0^^^^^ -~36025~^~3600~^~CRACKER BARREL, coleslaw~^~CRACKER BARREL,COLESLAW~^^~Cracker Barrel~^^^0^^^^^ -~36026~^~3600~^~CRACKER BARREL, onion rings, thick-cut~^~CRACKER BARREL,ONION RINGS,THICK-CUT~^^~Cracker Barrel~^^^0^^^^^ -~36027~^~3600~^~DENNY'S, chicken strips~^~DENNY'S,CHICK STRIPS~^^~Denny's~^^^0^^^^^ -~36028~^~3600~^~DENNY'S, coleslaw~^~DENNY'S,COLESLAW~^^~Denny's~^^^0^^^^^ -~36029~^~3600~^~DENNY'S, fish fillet, battered or breaded, fried~^~DENNY'S,FISH FILLET,BATTERED OR BREADED,FRIED~^^~Denny's~^^^0^^^^^ -~36030~^~3600~^~DENNY'S, hash browns~^~DENNY'S,HASH BROWNS~^^~Denny's~^^^0^^^^^ -~36031~^~3600~^~DENNY'S, onion rings~^~DENNY'S,ONION RINGS~^^~Denny's~^^^0^^^^^ -~36032~^~3600~^~DENNY'S, spaghetti and meatballs~^~DENNY'S,SPAGHETTI & MEATBALLS~^^~Denny's~^^^0^^^^^ -~36033~^~3600~^~Restaurant, family style, fish fillet, battered or breaded, fried~^~RESTAURANT,FAMILY STYLE,FISH FILLET,BATTERED OR BREAD,FRIED~^~family style~^^~Y~^^0^^^^^ -~36034~^~3600~^~Restaurant, family style, chicken tenders~^~RESTAURANT,FAMILY STYLE,CHICK TENDERS~^~family style~^^^^0^^^^^ -~36035~^~3600~^~Restaurant, family style, coleslaw~^~RESTAURANT,FAMILY STYLE,COLESLAW~^~family style~^^~Y~^^0^^^^^ -~36036~^~3600~^~Restaurant, family style, onion rings~^~RESTAURANT,FAMILY STYLE,ONION RINGS~^~family style~^^^^0^^^^^ -~36037~^~3600~^~Restaurant, family style, chili with meat and beans~^~RESTAURANT,FAMILY STYLE,CHILI W/ MEAT & BNS~^^^~Y~^^0^^^^^ -~36038~^~3600~^~Restaurant, family style, spaghetti and meatballs~^~RESTAURANT,FAMILY STYLE,SPAGHETTI & MEATBALLS~^^^^^0^^^^^ -~36039~^~3600~^~Restaurant, family style, hash browns~^~RESTAURANT,FAMILY STYLE,HASH BROWNS~^^^^^0^^^4.00^9.00^4.00 -~36040~^~3600~^~CRACKER BARREL, macaroni n' cheese~^~CRACKER BARREL,MACARONI N' CHS~^~macaroni and cheese, family style~^~Cracker Barrel~^^^0^^^^^ -~36041~^~3600~^~Restaurant, Italian, lasagna with meat~^~RESTAURANT,ITALIAN,LASAGNA W/ MEAT~^^^~Y~^^0^^^^^ -~36042~^~3600~^~OLIVE GARDEN, lasagna classico~^~OLIVE GARDEN,LASAGNA CLASSICO~^^~Darden Group~^^^0^^^^^ -~36043~^~3600~^~CARRABBA'S ITALIAN GRILL, lasagne~^~CARRABBA'S ITALIAN GRILL,LASAGNE~^~lasagna~^~Carrabba's Italian Grill~^^^0^^^^^ -~36044~^~3600~^~ON THE BORDER, Mexican rice~^~ON THE BORDER,MEXICAN RICE~^^^^^0^^^^^ -~36045~^~3600~^~ON THE BORDER, refried beans~^~ON THE BORDER,REFRIED BNS~^^^^^0^^^^^ -~36046~^~3600~^~Restaurant, Italian, spaghetti with pomodoro sauce (no meat)~^~RESTAURANT,ITALIAN,SPAGHETTI W/ POMODORO SAU (NO MEAT)~^^^^^0^^^^^ -~36047~^~3600~^~OLIVE GARDEN, spaghetti with pomodoro sauce~^~OLIVE GARDEN,SPAGHETTI W/ POMODORO SAU~^^~Darden Group~^^^0^^^^^ -~36048~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with pomodoro sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ POMODORO SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36049~^~3600~^~ON THE BORDER, cheese enchilada~^~ON THE BORDER,CHS ENCHILADA~^^^^^0^^^^^ -~36050~^~3600~^~Restaurant, Mexican, cheese enchilada~^~RESTAURANT,MEXICAN,CHS ENCHILADA~^^^^^0^^^^^ -~36051~^~3600~^~ON THE BORDER, cheese quesadilla~^~ON THE BORDER,CHS QUESADILLA~^^^^^0^^^^^ -~36052~^~3600~^~Restaurant, Mexican, cheese quesadilla~^~RESTAURANT,MEXICAN,CHS QUESADILLA~^^^^^0^^^^^ -~36053~^~3600~^~CARRABBA'S ITALIAN GRILL, cheese ravioli with marinara sauce~^~CARRABBA'S ITALIAN GRILL,CHS RAVIOLI W/ MARINARA SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36054~^~3600~^~OLIVE GARDEN, cheese ravioli with marinara sauce~^~OLIVE GARDEN,CHS RAVIOLI W/ MARINARA SAU~^^~Darden Group~^^^0^^^^^ -~36055~^~3600~^~Restaurant, Italian, cheese ravioli with marinara sauce~^~RESTAURANT,ITALIAN,CHS RAVIOLI W/ MARINARA SAU~^^^^^0^^^^^ -~36056~^~3600~^~Restaurant, Mexican, cheese tamales~^~RESTAURANT,MEXICAN,CHS TAMALES~^^^^^0^^^^^ -~36057~^~3600~^~CARRABBA'S ITALIAN GRILL, chicken parmesan without cavatappi pasta~^~CARRABBA'S ITALIAN GRILL,CHICK PARMESAN WO/ CAVATAPPI PASTA~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36058~^~3600~^~OLIVE GARDEN, chicken parmigiana without pasta~^~OLIVE GARDEN,CHICK PARMIGIANA WO/ PASTA~^^~Darden Group~^^^0^^^^^ -~36059~^~3600~^~Restaurant, Italian, chicken parmesan without pasta~^~RESTAURANT,ITALIAN,CHICK PARMESAN WO/ PASTA~^^^^^0^^^^^ -~36060~^~3600~^~ON THE BORDER, soft taco with ground beef, cheese and lettuce~^~ON THE BORDER,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36061~^~3600~^~Restaurant, Mexican, soft taco with ground beef, cheese and lettuce~^~RESTAURANT,MEXICAN,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36401~^~3600~^~Restaurant, Latino, chicken and rice, entree, prepared~^~RESTAURANT,LATINO,CHICK & RICE,ENTREE,PREP~^^^^^0^^^^^ -~36403~^~3600~^~Restaurant, Latino, empanadas, beef, prepared~^~RESTAURANT,LATINO,EMPANADAS,BF,PREP~^^^~Y~^^0^^^^^ -~36404~^~3600~^~Restaurant, Latino, arroz con leche (rice pudding)~^~RESTAURANT,LATINO,ARROZ CON LECHE (RICE PUDDING)~^^^^^0^^^^^ -~36405~^~3600~^~Restaurant, Latino, Arroz con frijoles negros (rice and black beans)~^~RESTAURANT,LATINO,ARROZ CON FRIJOLES NEGROS (RICE&BLACK BNS)~^^^^^0^^^^^ -~36406~^~3600~^~Restaurant, Latino, Arroz con habichuelas colorados (Rice And Red Beans)~^~REST,LATINO,ARROZ CON ABICHUELAS COLORADOS (RICE&RED BNS)~^^^^^0^^^^^ -~36407~^~3600~^~Restaurant, Latino, Arroz con grandules (rice and pigeonpeas)~^~RESTAURANT,LATINO,ARROZ CON GRANDULES (RICE & PIGEONPEAS)~^^^^^0^^^^^ -~36408~^~3600~^~Restaurant, Latino, pupusas con frijoles (pupusas, bean)~^~RESTAURANT,LATINO,PUPUSAS CON FRIJOLES (PUPUSAS,BEAN)~^^^^^0^^^^^ -~36409~^~3600~^~Restaurant, Latino, pupusas con queso (pupusas, cheese)~^~RESTAURANT,LATINO,PUPUSAS CON QUESO (PUPUSAS,CHEESE)~^^^~Y~^^0^^^^^ -~36410~^~3600~^~Restaurant, Latino, pupusas del cerdo (pupusas, pork)~^~RESTAURANT,LATINO,PUPUSAS DEL CERDO (PUPUSAS,PORK)~^^^~Y~^^0^^^^^ -~36411~^~3600~^~Restaurant, Latino, tamale, corn~^~RESTAURANT,LATINO,TAMALE,CORN~^^^~Y~^^0^^^^^ -~36412~^~3600~^~Restaurant, Latino, tamale, pork~^~RESTAURANT,LATINO,TAMALE,PORK~^^^~Y~^^0^^^^^ -~36413~^~3600~^~Restaurant, Latino, black bean soup~^~RESTAURANT,LATINO,BLACK BEAN SOUP~^^^^^0^^^^^ -~36414~^~3600~^~Restaurant, Latino, tripe soup~^~RESTAURANT,LATINO,TRIPE SOUP~^^^^^0^^^^^ -~36415~^~3600~^~Restaurant, Latino, arepa (unleavened cornmeal bread)~^~RESTAURANT,LATINO,AREPA (UNLEAVENED CORNMEAL BREAD)~^^^^^0^^^^^ -~36416~^~3600~^~Restaurant, Latino, bunuelos (fried yeast bread)~^~RESTAURANT,LATINO,BUNUELOS (FRIED YEAST BREAD)~^^^^^0^^^^^ -~36417~^~3600~^~Restaurant, Mexican, spanish rice~^~RESTAURANT,MEXICAN,SPANISH RICE~^^^~Y~^^0^^^^^ -~36418~^~3600~^~Restaurant, Mexican, refried beans~^~RESTAURANT,MEXICAN,REFRIED BNS~^^^~Y~^^0^^^^^ -~36601~^~3600~^~Restaurant, Chinese, egg rolls, assorted~^~RESTAURANT,CHINESE,EGG ROLLS,ASSORTED~^^^^^0^^^^^ -~36602~^~3600~^~Restaurant, Chinese, fried rice, without meat~^~RESTAURANT,CHINESE,FRIED RICE,WO/ MEAT~^^^~Y~^^0^^^^^ -~36603~^~3600~^~Restaurant, Chinese, beef and vegetables~^~RESTAURANT,CHINESE,BF & VEG~^^^~Y~^^0^^^4.00^9.00^4.00 -~36604~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried, from kid's menu~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED,FRM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36605~^~3600~^~CRACKER BARREL, country fried shrimp platter~^~CRACKER BARREL,COUNTRY FRIED SHRIMP PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36606~^~3600~^~CRACKER BARREL, farm raised catfish platter~^~CRACKER BARREL,FARM RAISED CATFISH PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36607~^~3600~^~CRACKER BARREL, steak fries~^~CRACKER BARREL,STEAK FRIES~^~french, family style~^~Cracker Barrel~^^^0^^^^^ -~36608~^~3600~^~CRACKER BARREL, grilled sirloin steak~^~CRACKER BARREL,GRILLED SIRLOIN STEAK~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36609~^~3600~^~CRACKER BARREL, macaroni n' cheese plate, from kid's menu~^~CRACKER BARREL,MACARONI N' CHS PLATE,FROM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36610~^~3600~^~DENNY'S, french fries~^~DENNY'S,FRENCH FR~^~family style~^~Denny's~^^^0^^^^^ -~36611~^~3600~^~DENNY'S, mozzarella cheese sticks~^~DENNY'S,MOZZARELLA CHS STKS~^~family style~^~Denny's~^^^0^^^^^ -~36612~^~3600~^~DENNY'S, golden fried shrimp~^~DENNY'S,GOLDEN FRIED SHRIMP~^~family style~^~Denny's~^^^0^^^^^ -~36613~^~3600~^~DENNY'S, macaroni & cheese, from kid's menu~^~DENNY'S,MACARONI & CHS,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36614~^~3600~^~DENNY'S, chicken nuggets, star shaped, from kid's menu~^~DENNY'S,CHICK NUGGETS,STAR SHAPED,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36615~^~3600~^~DENNY'S, top sirloin steak~^~DENNY'S,TOP SIRLOIN STEAK~^~family style~^~Denny's~^^^0^^^^^ -~36617~^~3600~^~Restaurant, Chinese, lemon chicken~^~RESTAURANT,CHINESE,LEMON CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36618~^~3600~^~Restaurant, Chinese, general tso's chicken~^~RESTAURANT,CHINESE,GENERAL TSO'S CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36619~^~3600~^~Restaurant, Chinese, kung pao chicken~^~RESTAURANT,CHINESE,KUNG PAO CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36620~^~3600~^~Restaurant, Chinese, shrimp and vegetables~^~RESTAURANT,CHINESE,SHRIMP & VEG~^^^^^0^^^4.00^9.00^4.00 -~36621~^~3600~^~Restaurant, Chinese, sweet and sour chicken~^~RESTAURANT,CHINESE,SWT & SOUR CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36622~^~3600~^~Restaurant, Chinese, sweet and sour pork~^~RESTAURANT,CHINESE,SWT & SOUR PORK~^^^^^0^^^4.00^9.00^4.00 -~36623~^~3600~^~Restaurant, Chinese, chicken chow mein~^~RESTAURANT,CHINESE,CHICK CHOW MEIN~^^^^^0^^^4.00^9.00^4.00 -~36624~^~3600~^~Restaurant, Chinese, vegetable chow mein, without meat or noodles~^~RESTAURANT,CHINESE,VEG CHOW MEIN,WO/ MEAT OR NOODLES~^^^~Y~^^0^^^^^ -~36625~^~3600~^~Restaurant, Chinese, vegetable lo mein, without meat~^~RESTAURANT,CHINESE,VEG LO MEIN,WO/ MEAT~^^^~Y~^^0^^^^^ -~36626~^~3600~^~Restaurant, Chinese, chicken and vegetables~^~RESTAURANT,CHINESE,CHICK & VEG~^^^~Y~^^0^^^^^ -~36629~^~3600~^~Restaurant, Chinese, orange chicken~^~RESTAURANT,CHINESE,ORANGE CHICK~^^^~Y~^^0^^^^^ -~36630~^~3600~^~Restaurant, Italian, spaghetti with meat sauce~^~RESTAURANT,ITALIAN,SPAGHETTI W/ MEAT SAU~^^^^^0^^^^^ -~36631~^~3600~^~OLIVE GARDEN, spaghetti with meat sauce~^~OLIVE GARDEN,SPAGHETTI W/ MEAT SAU~^^~Darden Group~^^^0^^^^^ -~36632~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with meat sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ MEAT SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36633~^~3600~^~Restaurant, Chinese, sesame chicken~^~RESTAURANT,CHINESE,SESAME CHICK~^^^~Y~^^0^^^^^ -~42040~^~1900~^~Syrups, grenadine~^~SYRUPS,GRENADINE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42055~^~1400~^~Beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame~^~BEVERAGES,FRUIT-FLAVORED DRK,DRY PDR MIX,LO CAL,W/ ASPRT~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~42063~^~1900~^~Pectin, liquid~^~PECTIN,LIQUID~^^^~Y~^^0^^^^^ -~42074~^~1900~^~Frozen novelties, ice cream type, vanilla ice cream, light, no sugar added, chocolate coated~^~FROZ NOVLT,ICE CRM,VAN ICE CRM,LT,NO SUGAR ADDED,CHOC COATD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42116~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie~^~CREAMY DRSNG,MADE W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL~^^^~Y~^^0^^^^^ -~42117~^~0100~^~Imitation cheese, american or cheddar, low cholesterol~^~IMITATION CHS,AMERICAN OR CHEDDAR,LO CHOL~^^^~Y~^^0^^6.38^^^ -~42119~^~0300~^~Babyfood, banana juice with low fat yogurt~^~BABYFOOD,BANANA JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42120~^~0300~^~Babyfood, mixed fruit juice with low fat yogurt~^~BABYFOOD,MXD FRUIT JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42128~^~0700~^~Ham, turkey, sliced, extra lean, prepackaged or deli~^~HAM,TURKEY,SLICED,EX LN,PREPACKAGED OR DELI~^^^~Y~^^0^^^^^ -~42129~^~0700~^~Bologna, beef and pork, low fat~^~BOLOGNA,BF&PORK,LOFAT~^^^~Y~^^0^^^^^ -~42131~^~1900~^~Milk dessert, frozen, milk-fat free, chocolate~^~MILK DSSRT,FRZ,MILK-FAT FREE,CHOC~^^^~Y~^^0^^6.25^^^ -~42135~^~0100~^~Whipped topping, frozen, low fat~^~WHIPPED TOPPING,FRZ,LOFAT~^^^~Y~^^0^^6.38^^^ -~42136~^~0100~^~Cream substitute, powdered, light~^~CREAM SUB,PDR,LT~^^^~Y~^^0^^6.29^^^ -~42137~^~0400~^~Salad dressing, peppercorn dressing, commercial, regular~^~SALAD DRSNG,PEPPERCORN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~42138~^~0400~^~Mayonnaise, reduced-calorie or diet, cholesterol-free~^~MAYONNAISE,RED-CAL OR DIET,CHOL-FREE~^^^~Y~^^0^^^^^ -~42139~^~2500~^~Granola bar, soft, milk chocolate coated, peanut butter~^~GRANOLA BAR,SOFT,MILK CHOC COATD,PNUT BUTTER~^^^~Y~^^0^^^^^ -~42140~^~0400~^~Salad dressing, italian dressing, reduced calorie~^~SALAD DRSNG,ITALIAN DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42141~^~0100~^~Cream substitute, liquid, light~^~CREAM SUB,LIQ,LT~^^^~Y~^^0^^6.29^^^ -~42148~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Butter Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT BUTTER CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42150~^~0300~^~Babyfood, apple yogurt dessert, strained~^~BABYFOOD,APPL YOGURT DSSRT,STR~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42151~^~0400~^~Vegetable oil-butter spread, reduced calorie~^~VEGETABLE OIL-BUTTER SPRD,RED CAL~^^^~Y~^^0^^^^^ -~42153~^~0400~^~Salad dressing, blue or roquefort cheese dressing, light~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,LT~^^^~Y~^^0^^^^^ -~42155~^~0100~^~Cheese, monterey, low fat~^~CHEESE,MONTEREY,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42157~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, fat-free~^~CRMY DRSG,MDE W/ SOUR CRM AND/OR BTRMLK & OIL,RED CAL,FTFREE~^^^~Y~^^0^^^^^ -~42158~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, cholesterol-free~^~CREAMY DRSNG,W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL,CHOL-FREE~^^^~Y~^^0^^^^^ -~42161~^~0700~^~Bologna, beef, low fat~^~BOLOGNA,BEEF,LOW FAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42171~^~0400~^~Salad dressing, french dressing, reduced calorie~^~SALAD DRSNG,FRENCH DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42173~^~0700~^~Sausage, turkey and pork, fresh, bulk, patty or link, cooked~^~SAUSAGE,TURKEY & PORK,FRSH,BULK,PATTY OR LINK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42178~^~0400~^~Mayonnaise, made with tofu~^~MAYONNAISE,MADE WITH TOFU~^^^~Y~^^0^^^^^ -~42179~^~0700~^~Frankfurter, beef, low fat~^~FRANKFURTER,BF,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42183~^~1900~^~Candies, MARS SNACKFOOD US, TWIX chocolate fudge cookie bars~^~CANDIES,MARS SNACKFOOD US,TWIX CHOC FUDGE COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42185~^~1900~^~Frozen yogurts, chocolate, nonfat milk, sweetened without sugar~^~YOGURT,FRZ,CHOC,NON-FAT MILK,W/LO CAL SWTNR~^^^~Y~^^0^^6.25^^^ -~42186~^~1900~^~Frozen yogurts, chocolate~^~FROZEN YOGURTS,CHOC~^^^~Y~^^0^^6.25^^^ -~42187~^~1900~^~Frozen yogurts, flavors other than chocolate~^~FROZEN YOGURTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^^^^ -~42189~^~0100~^~Milk, buttermilk, fluid, cultured, reduced fat~^~MILK,BTTRMLK,FLUID,CULTURED,RED FAT~^^^~Y~^^0^^6.38^^^ -~42190~^~0700~^~Pork sausage rice links, brown and serve, cooked~^~PORK SAUSAGE RICE LINKS,BROWN&SERVE,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42192~^~0400~^~Salad dressing, blue or roquefort cheese dressing, fat-free~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,FAT-FREE~^^^~Y~^^0^^^4.03^8.84^3.80 -~42193~^~0400~^~Salad Dressing, mayonnaise-like, fat-free~^~SALAD DRSNG,MAYONNAISE-LIKE,FAT-FREE~^^^~Y~^^0^^^^^ -~42196~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Midnight Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY MIDNIGHT BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42200~^~1600~^~Papad~^~PAPAD~^^^~Y~^^0^^^^^ -~42204~^~2500~^~Rice cake, cracker (include hain mini rice cakes)~^~RICE CAKE,CRACKER (INCL HAIN MINI RICE CAKES)~^^^~Y~^^0^^^^^ -~42227~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Almond Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S ALMOND CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42230~^~0400~^~Salad Dressing, coleslaw, reduced fat~^~SALAD DRSNG,COLESLAW,RED FAT~^^^~Y~^^0^^^2.44^8.84^3.80 -~42231~^~0400~^~Oil, flaxseed, cold pressed~^~OIL,FLAXSEED,COLD PRESSED~^^^~Y~^^0^^^^8.84^ -~42235~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, lactose reduced~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,LACTOSE RED~^^^~Y~^^0^^6.38^^^ -~42236~^~0800~^~Cereals ready-to-eat, frosted oat cereal with marshmallows~^~CEREALS RTE,FRSTD OAT CRL W/MARSHMALLOWS~^^^~Y~^^0^^^^^ -~42237~^~0800~^~Cereals ready-to-eat, WEETABIX whole grain cereal~^~CEREALS RTE,WEETABIX WHL GRAIN CRL~^^~The Weetabix Company~^~Y~^^0^^^^^ -~42240~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with almonds~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ ALMONDS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42256~^~0400~^~Margarine-like, vegetable oil spread, stick or tub, sweetened~^~MARGARINE-LIKE,VEG OIL SPRD,STK OR TUB,SWTND~^^^~Y~^^0^^^^^ -~42259~^~2500~^~Snacks, popcorn, home-prepared, oil-popped, unsalted~^~SNACKS,POPCORN,HOME-PREPARED,OIL-POPPED,UNSALTED~^^^~Y~^^0^^^^^ -~42261~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS Crunchy Pecan Cereal~^~CEREALS RTE,POST,GREAT GRAINS CRUNCHY PECAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42265~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS, Raisin, Date & Pecan~^~CEREALS RTE,POST,GREAT GRAINS,RAISIN,DATE & PECAN~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42266~^~0300~^~Babyfood, juice, apple-sweet potato~^~BABYFOOD,JUC,APPLE-SWEET POTATO~^^^~Y~^^0^^6.25^3.34^8.37^3.92 -~42267~^~0300~^~Babyfood, juice, orange-carrot~^~BABYFOOD,JUC,ORANGE-CARROT~^^^~Y~^^0^^6.25^^^ -~42270~^~1400~^~Beverages, Orange juice drink~^~BEVERAGES,ORANGE JUC DRK~^^^^^0^^6.25^4.00^9.00^4.00 -~42272~^~2500~^~Snacks, granola bar, with coconut, chocolate coated~^~GRANOLA BAR,W/COCNT,CHOC COATD~^^^~Y~^^0^^^^^ -~42278~^~0300~^~Babyfood, vegetable and brown rice, strained~^~BABYFOOD,VEG&BROWN RICE,STR~^^^~Y~^^0^^^^^ -~42279~^~0300~^~Babyfood, peas and brown rice~^~BABYFOOD,PEAS&BROWN RICE~^^^~Y~^^0^^6.25^^^ -~42280~^~0700~^~Frankfurter, meat and poultry, low fat~^~FRANKFURTER,MEAT & POULTRY,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42281~^~1900~^~Gums, seed gums (includes locust bean, guar)~^~GUMS,SD GUMS (INCL LOCUST BEAN,GUAR)~^^^^^0^^6.25^^^ -~42283~^~2500~^~Snacks, potato chips, white, restructured, baked~^~POTATO CHIPS,WHITE,RESTRUCTURED,BKD~^^^~Y~^^0^^^^^ -~42284~^~0300~^~Babyfood, baked product, finger snacks cereal fortified~^~BABYFOOD,BKD PRODUCT,FINGER SNACKS CRL FORT~^^^~Y~^^0^^6.25^^^ -~42285~^~0300~^~Babyfood, cereal, brown rice, dry, instant~^~BABYFOOD,CRL,BROWN RICE,DRY,INST~^^^~Y~^^0^^6.25^^^ -~42286~^~0300~^~Babyfood, green beans and turkey, strained~^~BABYFOOD,GRN BNS&TURKEY,STR~^^^^^0^^6.25^^^ -~42289~^~0400~^~Oil, corn and canola~^~OIL,CORN AND CANOLA~^^^~Y~^^0^^^^8.84^ -~42290~^~0100~^~Milk, fluid, nonfat, calcium fortified (fat free or skim)~^~MILK,FLUID,NONFAT,CA FORT (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~42291~^~1600~^~Peanut butter, reduced sodium~^~PEANUT BUTTER,RED NA~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~42297~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Banana Nut Crunch~^~CEREALS RTE,POST GREAT GRAINS BANANA NUT CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42303~^~0100~^~Cheese, muenster, low fat~^~CHEESE,MUENSTER,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42304~^~0100~^~Cheese, mozzarella, nonfat~^~CHEESE,MOZZARELLA,NON-FAT~^^^~Y~^^0^^6.38^^^ -~42307~^~0400~^~Margarine-like, butter-margarine blend, 80% fat, stick, without salt~^~MARGARINE-LIKE,BUTTER-MARGARINE BLEND,80% FAT,STK,WO/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~42309~^~0400~^~Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,RED CAL,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~42316~^~0300~^~Babyfood, carrots, toddler~^~BABYFOOD,CARROTS,TODDLER~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~43004~^~0300~^~Babyfood, dessert, banana pudding, strained~^~BABYFOOD,DSSRT,BANANA PUDD,STR~^^^~Y~^^0^^6.25^^^ -~43006~^~0300~^~Babyfood, fruit, tutti frutti, strained~^~BABYFOOD,FRUIT,TUTTI FRUTTI,STR~^^^~Y~^^0^^6.25^^^ -~43007~^~0300~^~Babyfood, fruit, tutti frutti, junior~^~BABYFOOD,FRUIT,TUTTI FRUTTI,JR~^^^~Y~^^0^^6.25^^^ -~43008~^~0300~^~Babyfood, dinner, chicken and rice~^~BABYFOOD,DINNER,CHICK&RICE~^^^~Y~^^0^^6.25^^^ -~43015~^~0400~^~Salad dressing, caesar dressing, regular~^~SALAD DRSNG,CAESAR DRSNG,REG~^^^~Y~^^0^^^^^ -~43016~^~0400~^~Salad dressing, coleslaw~^~Salad dressing, coleslaw~^^^~Y~^^0^^^^^ -~43017~^~0400~^~Salad dressing, green goddess, regular~^~SALAD DRSNG,GRN GODDESS,REG~^^^~Y~^^0^^^^^ -~43019~^~0400~^~Salad dressing, sweet and sour~^~SALAD DRSNG,SWT&SOUR~^^^~Y~^^0^^^^^ -~43020~^~0400~^~Salad dressing, blue or roquefort cheese, low calorie~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS,LO CAL~^^^~Y~^^0^^^^^ -~43021~^~0400~^~Salad dressing, caesar, low calorie~^~SALAD DRSNG,CAESAR,LO CAL~^^^~Y~^^0^^^^^ -~43026~^~1900~^~Syrups, sugar free~^~SYRUPS,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~43027~^~1900~^~Jellies, no sugar (with sodium saccharin), any flavors~^~JELLIES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVORS~^^^~Y~^^0^^6.25^^^ -~43028~^~1900~^~Jams and preserves, no sugar (with sodium saccharin), any flavor~^~JAMS & PRESERVES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVOR~^^^~Y~^^0^^6.25^0.00^0.00^2.47 -~43031~^~1900~^~Candies, chocolate covered, caramel with nuts~^~CANDIES,CHOC COVERED,CARAMEL W/NUTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43046~^~1900~^~Candies, nougat, with almonds~^~CANDIES,NOUGAT,W/ ALMONDS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43057~^~1900~^~Candies, gum drops, no sugar or low calorie (sorbitol)~^~CANDIES,GUM DROPS,NO SUGAR OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43058~^~1900~^~Candies, hard, dietetic or low calorie (sorbitol)~^~CANDIES,HARD,DIETETIC OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43059~^~1900~^~Candies, chocolate covered, low sugar or low calorie~^~CANDIES,CHOC COVERED,LO SUGAR OR LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43060~^~1900~^~Chewing gum, sugarless~^~CHEWING GUM,SUGARLESS~^^^~Y~^^0^^6.25^^^ -~43075~^~0300~^~Fluid replacement, electrolyte solution (include PEDIALYTE)~^~FLUID REPLCMNT,ELECTROLYTE SOLN (INCLUDE PEDIALYTE)~^^^~Y~^^0^^^^^ -~43098~^~1900~^~Pie fillings, cherry, low calorie~^~PIE FILLINGS,CHERRY,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43100~^~2500~^~Breakfast bars, oats, sugar, raisins, coconut (include granola bar)~^~BREAKFAST BARS,OATS,SUGAR,RAISINS,COCNT (INCL GRANOLA BAR)~^^^~Y~^^0^^^^^ -~43109~^~2500~^~Pretzels, soft~^~PRETZELS,SOFT~^^^~Y~^^0^^6.25^^^ -~43112~^~1600~^~Beans, chili, barbecue, ranch style, cooked~^~BEANS,CHILI,BARBECUE,RANCH STYLE,CKD~^^^~Y~^^0^^^^^ -~43114~^~1600~^~Vermicelli, made from soy~^~VERMICELLI,MADE FROM SOY~^^^~Y~^^0^^^^^ -~43125~^~1600~^~Beans, liquid from stewed kidney beans~^~BEANS,LIQ FROM STWD KIDNEY BNS~^^^~Y~^^0^^^^^ -~43128~^~1600~^~Chicken, meatless~^~CHICKEN,MEATLESS~^^^~Y~^^0^^^^^ -~43130~^~1600~^~Frankfurter, meatless~^~FRANKFURTER,MEATLESS~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43131~^~1600~^~Luncheon slices, meatless~^~LUNCHEON SLICES,MEATLESS~^^^~Y~^^0^^^^^ -~43132~^~1600~^~Meatballs, meatless~^~MEATBALLS,MEATLESS~^^^~Y~^^0^^^^^ -~43134~^~1600~^~Vegetarian fillets~^~VEGETARIAN FILLETS~^^^~Y~^^0^^^^^ -~43135~^~1600~^~Sandwich spread, meatless~^~SANDWICH SPREAD,MEATLESS~^^^~Y~^^0^^^^^ -~43137~^~1600~^~Vegetarian meatloaf or patties~^~VEGETARIAN MEATLOAF OR PATTIES~^^^~Y~^^0^^^^^ -~43142~^~1100~^~Radishes, hawaiian style, pickled~^~RADISHES,HAWAIIAN STYLE,PICKLED~^^^~Y~^^0^^^^^ -~43143~^~1100~^~Cabbage, japanese style, fresh, pickled~^~CABBAGE,JAPANESE STYLE,FRSH,PICKLED~^^^~Y~^^0^^^^^ -~43144~^~1100~^~Cabbage, mustard, salted~^~CABBAGE,MUSTARD,SALTED~^^^~Y~^^0^^^^^ -~43146~^~1100~^~Eggplant, pickled~^~EGGPLANT,PICKLED~^^^~Y~^^0^^^^^ -~43154~^~1400~^~Alcoholic beverage, wine, cooking~^~ALCOHOLIC BEV,WINE,COOKING~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43155~^~1400~^~Alcoholic beverage, wine, light~^~ALCOHOLIC BEV,WINE,LT~^^^~Y~^^0^^^^^ -~43158~^~1900~^~Sweeteners, tabletop, saccharin (sodium saccharin)~^~SWEETENERS,TABLETOP,SACCHARIN (SODIUM SACCHARIN)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43205~^~0100~^~Beverage, instant breakfast powder, chocolate, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43212~^~1600~^~Bacon bits, meatless~^~BACON BITS,MEATLESS~^^^~Y~^^0^^^^^ -~43214~^~0400~^~Butter replacement, without fat, powder~^~BUTTER REPLCMNT,WO/FAT,PDR~^^^~Y~^^0^^^^^ -~43215~^~0400~^~Salad dressing, buttermilk, lite~^~SALAD DRSNG,BTTRMLK,LITE~^^^~Y~^^0^^^^^ -~43216~^~1900~^~Sweeteners, tabletop, fructose, dry, powder~^~SWEETENERS,TABLETOP,FRUCTOSE,DRY,PDR~^^^~Y~^^0^^6.25^^^ -~43217~^~1100~^~Tomato sauce, canned, no salt added~^~TOMATO SAU,CND,NO SALT ADDED~^^^^^0^^6.25^2.44^8.37^3.57 -~43218~^~0800~^~Cereals ready-to-eat, ALPEN~^~CEREALS RTE,ALPEN~^~muesli~^~The Weetabix Company~^~Y~^^0^^^^^ -~43241~^~0800~^~Cereals ready-to-eat, FAMILIA~^~CEREALS RTE,FAMILIA~^~muesli~^~bio-familia AG~^~Y~^^0^^^^^ -~43245~^~0800~^~Cereals ready-to-eat, wheat and bran, presweetened with nuts and fruits~^~CEREALS RTE,WHEAT&BRAN,PRESWEETENED W/NUTS&FRUITS~^^^~Y~^^0^^^^^ -~43260~^~0100~^~Beverage, instant breakfast powder, chocolate, sugar-free, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,SUGAR-FREE,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43261~^~0100~^~Yogurt, fruit variety, nonfat~^~YOGURT,FRUIT VAR,NON-FAT~^^^~Y~^^0^^6.38^^^ -~43268~^~0100~^~Whipped cream substitute, dietetic, made from powdered mix~^~WHIPPED CRM SUB,DIETETIC,MADE FROM PDR MIX~^^^~Y~^^0^^6.38^^^ -~43269~^~1900~^~Frozen novelties, ice cream type, sundae, prepackaged~^~FROZEN NOVELTIES,ICE CRM TYPE,SUNDAE,PREPACKAGED~^^^~Y~^^0^^6.25^^^ -~43273~^~0100~^~Cheese, cottage, with vegetables~^~CHEESE,COTTAGE,W/VEG~^^^~Y~^^0^^6.38^^^ -~43274~^~0100~^~Cheese, cream, low fat~^~CHEESE,CREAM,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43275~^~0100~^~Cheese, pasteurized process, American, low fat~^~CHEESE,PAST PROCESS,AMERICAN,LOFAT~^^^~Y~^^0^^6.38^^^ -~43276~^~0100~^~Cheese spread, cream cheese base~^~CHEESE SPRD,CRM CHS BASE~^^^~Y~^^0^^6.38^^^ -~43278~^~0100~^~Cheese, american cheddar, imitation~^~CHEESE,AMERICAN CHEDDAR,IMITN~^^^~Y~^^0^^6.38^^^ -~43282~^~0500~^~Quail, cooked, total edible~^~QUAIL,COOKED,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43283~^~0500~^~Pheasant, cooked, total edible~^~PHEASANT,CKD,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43285~^~0100~^~Eggs, scrambled, frozen mixture~^~EGGS,SCRMBLD,FRZ MIXTURE~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~43287~^~0500~^~Dove, cooked (includes squab)~^~DOVE,CKD (INCL SQUAB)~^^^~Y~^^0^^^^^ -~43297~^~1000~^~Pork, oriental style, dehydrated~^~PORK,ORIENTAL STYLE,DEHYD~^^^^^0^^^^^ -~43299~^~1600~^~Soybean, curd cheese~^~SOYBEAN,CURD CHEESE~^^^~Y~^^0^^^^^ -~43311~^~1100~^~Potatoes, canned, drained solids, no salt added~^~POTATOES,CND,DRND SOL,NO SALT~^^^~Y~^^0^^6.25^2.38^8.37^4.03 -~43312~^~1100~^~Vegetables, mixed (corn, lima beans, peas, green beans, carrots) canned, no salt added~^~VEGETABLES,MXD (CORN,LIMA BNS,PEAS,GRN BNS,CRRT) CND,NO SALT~^^^~Y~^^0^^^^^ -~43325~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN & REG,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43326~^~1000~^~Pork, cured, ham, low sodium, lean and fat, cooked~^~PORK,CURED,HAM,LO NA,LN & FAT,CKD~^^^~Y~^^0^^^^^ -~43327~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN (APPROXIMATLY 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43329~^~0400~^~Salad dressing, mayonnaise and mayonnaise-type, low calorie~^~SALAD DRSNG,MAYO & MAYONNAISE-TYPE,LO CAL~^^^^^0^^6.25^4.36^8.84^3.80 -~43331~^~0400~^~Salad dressing, bacon and tomato~^~SALAD DRSNG,BACON&TOMATO~^^^~Y~^^0^^^^^ -~43340~^~0100~^~Cheese, parmesan, low sodium~^~CHEESE,PARMESAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43344~^~1900~^~Jams, preserves, marmalade, reduced sugar~^~JAMS,PRESERVES,MARMALADE,RED SUGAR~^^^~Y~^^0^^6.25^^^ -~43345~^~1400~^~Beverages, fruit-flavored drink, powder, with high vitamin C with other added vitamins, low calorie~^~BEVER,FRUIT-FLAV DRK,PDR,W/ HI VIT C W/ OTHER ADD VIT,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~43346~^~1900~^~Frozen novelties, juice type, orange~^~FROZEN NOVELTIES,JUC TYPE,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43352~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, no sodium added~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,NO NA~^^^~Y~^^0^^6.38^^^ -~43355~^~0400~^~Mayonnaise, low sodium, low calorie or diet~^~MAYONNAISE,LO NA,LO CAL OR DIET~^^^~Y~^^0^^^^^ -~43364~^~2500~^~Snacks, tortilla chips, unsalted, white corn~^~SNACKS,TORTILLA CHIPS,UNSALTED,WHITE CORN~^^^~Y~^^0^^^^^ -~43365~^~1100~^~Tomato and vegetable juice, low sodium~^~TOMATO&VEG JUC,LO NA~^^^~Y~^^0^^^^^ -~43366~^~0500~^~Turkey, wing, smoked, cooked, with skin, bone removed~^~TURKEY,WING,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43367~^~0500~^~Turkey, drumstick, smoked, cooked, with skin, bone removed~^~TURKEY,DRUMSTK,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43369~^~1400~^~Beverages, Chocolate-flavored drink, whey and milk based~^~BEVERAGES,CHOCOLATE-FLAVORED DRK,WHEY & MILK BSD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43378~^~1000~^~Pork, cured, bacon, cooked, broiled, pan-fried or roasted, reduced sodium~^~PORK,CURED,BACON,CKD,BRLD,PAN-FRIED OR RSTD,RED NA~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43382~^~0900~^~Cranberry juice, unsweetened~^~CRANBERRY JUC,UNSWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~43384~^~0700~^~Beef, bologna, reduced sodium~^~BEEF,BOLOGNA,RED NA~^^^~Y~^^0^^^^^ -~43387~^~1100~^~Turnip greens, canned, no salt added~^~TURNIP GRNS,CND,NO SALT~^^^~Y~^^0^^^^^ -~43390~^~0500~^~Turkey, light or dark meat, smoked, cooked, with skin, bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43391~^~0500~^~Turkey, light or dark meat, smoked, cooked, skin and bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,SKN & BONE REMOVED~^^^~Y~^^0^^^^^ -~43392~^~1100~^~Hearts of palm, raw~^~HEARTS OF PALM,RAW~^^^~Y~^^^^^^^ -~43393~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat n' Bran, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT N' BRAN,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43396~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, with vegetables~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,W/VEG~^^^~Y~^^0^^6.38^^^ -~43398~^~0100~^~Cheese, pasteurized process, cheddar or American, low sodium~^~CHEESE,PAST PROCESS,CHEDDAR OR AMERICAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43401~^~1400~^~Beverages, coffee, instant, with whitener, reduced calorie~^~BEVERAGES,COFFEE,INST,W/ WHTNR,RED CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43404~^~1400~^~Beverages, cranberry-apple juice drink, low calorie, with vitamin C added~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,LO CAL,W/ VIT C ADDED~^^^~Y~^^0^^^^^ -~43405~^~0100~^~Cheese, swiss, low sodium~^~CHEESE,SWISS,LOW SODIUM~^^^~Y~^^0^^6.38^^^ -~43406~^~1100~^~Yeast extract spread~^~YEAST EXTRACT SPREAD~^^^~Y~^^0^^^^^ -~43408~^~0300~^~Babyfood, juice, pear~^~BABYFOOD,JUICE,PEAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~43410~^~1600~^~Chicken, meatless, breaded, fried~^~CHICKEN,MEATLESS,BREADED,FRIED~^^^~Y~^^0^^^^^ -~43417~^~0300~^~Babyfood, meat, beef with vegetables, toddler~^~BABYFOOD,MEAT,BF W/ VEG,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43432~^~0300~^~Babyfood, dinner, macaroni, beef and tomato sauce, toddler~^~BABYFOOD,DINNER,MACARONI,BF&TOMATO SAU,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43441~^~1800~^~Rolls, pumpernickel~^~ROLLS,PUMPERNICKEL~^^^~Y~^^0^^6.25^^^ -~43447~^~2500~^~Snacks, corn-based, extruded, chips, unsalted~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~43449~^~1600~^~Beans, baked, canned, no salt added~^~BEANS,BKD,CND,NO SALT ADDED~^^^~Y~^^0^^^^^ -~43450~^~1900~^~Frozen novelties, juice type, juice with cream~^~FROZEN NOVELTIES,JUC TYPE,JUC W/ CRM~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43476~^~1600~^~Tofu yogurt~^~TOFU YOGURT~^^^~Y~^^0^^^^^ -~43479~^~1400~^~Alcoholic beverage, rice (sake)~^~ALCOHOLIC BEV,RICE (SAKE)~^^^~Y~^^0^^^^^ -~43483~^~0800~^~Millet, puffed~^~MILLET,PUFFED~^^^~Y~^^0^^^^^ -~43495~^~0800~^~Cereals ready-to-eat, OAT BRAN FLAKES, HEALTH VALLEY~^~CEREALS RTE,OAT BRAN FLAKES,HEALTH VALLEY~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~43497~^~1500~^~Jellyfish, dried, salted~^~JELLYFISH,DRIED,SALTED~^^^^^0^^^^^ -~43506~^~1900~^~Frozen novelties, ice cream type, chocolate or caramel covered, with nuts~^~ICE CRM BAR,CHOC OR CARAMEL COVERED,W/NUTS~^^^~Y~^^0^^6.25^^^ -~43507~^~0700~^~Frankfurter, low sodium~^~FRANKFURTER,LO NA~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43514~^~1900~^~Frozen novelties, ice type, pop, with low calorie sweetener~^~FROZEN NOVELTIES,ICE TYPE,POP,W/ LO CAL SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43523~^~0300~^~Babyfood, mixed fruit yogurt, strained~^~BABYFOOD,MXD FRUIT YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43528~^~1400~^~Beverages, ABBOTT, ENSURE PLUS, ready-to-drink~^~BEVERAGES,ABBOTT,ENSURE PLUS,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^^^^ -~43529~^~0300~^~Babyfood, rice and apples, dry~^~BABYFOOD,RICE&APPLS,DRY~^^^~Y~^^0^^^^^ -~43535~^~0300~^~Babyfood, juice, apple - cherry~^~BABYFOOD,JUC,APPL - CHERRY~^^^~Y~^^0^^6.25^^^ -~43536~^~0300~^~Babyfood, dessert, peach yogurt~^~BABYFOOD,DSSRT,PEACH YOGURT~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43537~^~0300~^~Babyfood, dessert, blueberry yogurt, strained~^~BABYFOOD,DSSRT,BLUEBERRY YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43539~^~0300~^~Babyfood, dessert, banana yogurt, strained~^~BABYFOOD,DSSRT,BANANA YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43541~^~1900~^~Ice creams, chocolate, rich~^~ICE CREAMS,CHOC,RICH~^^^~Y~^^0^^6.25^^^ -~43543~^~0100~^~Milk, imitation, non-soy~^~MILK,IMITATION,NON-SOY~^^^~Y~^^0^^6.38^^^ -~43544~^~0300~^~Babyfood, cereal, rice with pears and apple, dry, instant fortified~^~BABYFOOD,CRL,RICE W/ PEARS & APPL,DRY,INST FORT~^^^~Y~^^0^^6.25^^^ -~43546~^~0300~^~Babyfood, banana no tapioca, strained~^~BABYFOOD,BANANA NO TAPIOCA,STR~^^^~Y~^^0^^6.25^^^ -~43550~^~0300~^~Babyfood, banana apple dessert, strained~^~BABYFOOD,BANANA APPL DSSRT,STR~^^^~Y~^^0^^6.25^^^ -~43566~^~2500~^~Snacks, tortilla chips, light (baked with less oil)~^~SNACKS,TORTILLA CHIPS,LT (BAKED W/ LESS OIL)~^^^~Y~^^0^^6.25^^^ -~43570~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, honey roasted~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,HONEY RSTD~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43572~^~2500~^~Popcorn, microwave, low fat and sodium~^~POPCORN,MICROWAVE,LOFAT&NA~^^^^^0^^^^^ -~43585~^~0300~^~Babyfood, fruit supreme dessert~^~BABYFOOD,FRUIT SUPREME DSSRT~^^^~Y~^^0^^6.25^^^ -~43589~^~0100~^~Cheese, swiss, low fat~^~CHEESE,SWISS,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43595~^~2500~^~Breakfast bar, corn flake crust with fruit~^~BREAKFAST BAR,CORN FLAKE CRUST W/FRUIT~^^^~Y~^^0^^^^^ -~43597~^~0100~^~Cheese, mozzarella, low sodium~^~CHEESE,MOZZARELLA,LO NA~^^^~Y~^^0^^6.38^^^ -~43598~^~0400~^~Mayonnaise dressing, no cholesterol~^~MAYONNAISE DRSNG,NO CHOL~^^^^^0^^^4.36^8.84^3.80 -~44005~^~0400~^~Oil, corn, peanut, and olive~^~OIL,CORN,PEANUT,AND OLIVE~^^^~Y~^^0^^^^^ -~44018~^~1900~^~Sweeteners, tabletop, fructose, liquid~^~SWEETENERS,TABLETOP,FRUCTOSE,LIQ~^^^~Y~^^0^^6.25^0.00^0.00^3.66 -~44061~^~1900~^~Puddings, chocolate flavor, low calorie, instant, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44074~^~0300~^~Babyfood, grape juice, no sugar, canned~^~BABYFOOD,GRAPE JUC,NO SUGAR,CND~^^^~Y~^^0^^6.25^^^ -~44110~^~1900~^~Jellies, reduced sugar, home preserved~^~JELLIES,RED SUGAR,HOME PRESERVED~^^^~Y~^^0^^6.25^^^ -~44158~^~1900~^~Pie fillings, blueberry, canned~^~PIE FILLINGS,BLUEBERRY,CND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44203~^~1400~^~Beverages, Cocktail mix, non-alcoholic, concentrated, frozen~^~BEVERAGES,COCKTAIL MIX,NON-ALCOHOLIC,CONCD,FRZ~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44258~^~1900~^~Puddings, chocolate flavor, low calorie, regular, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44259~^~1900~^~Puddings, all flavors except chocolate, low calorie, regular, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44260~^~1900~^~Puddings, all flavors except chocolate, low calorie, instant, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~48052~^~2000~^~Vital wheat gluten~^~VITAL WHEAT GLUTEN~^^^^^0^^^^^ -~80200~^~1500~^~Frog legs, raw~^~FROG LEGS,RAW~^^^~Y~^^0^^^^^ -~83110~^~1500~^~Fish, mackerel, salted~^~MACKEREL,SALTED~^^^^^0^^^^^ -~90240~^~1500~^~Mollusks, scallop, (bay and sea), cooked, steamed~^~SCALLOP,(BAY&SEA),CKD,STMD~^^^~Y~^^0^^^^^ -~90480~^~1900~^~Syrup, Cane~^~SYRUP,CANE~^^^^^0^^6.25^0.00^0.00^3.68 -~90560~^~1500~^~Mollusks, snail, raw~^~SNAIL,RAW~^^^~Y~^^0^^^^^ -~93600~^~1500~^~Turtle, green, raw~^~TURTLE,GREEN,RAW~^^^~Y~^^0^^^^^ diff --git a/Postgres/raw_data/convert_csv.py b/Postgres/raw_data/convert_csv.py deleted file mode 100644 index b0637b6..0000000 --- a/Postgres/raw_data/convert_csv.py +++ /dev/null @@ -1,22 +0,0 @@ -import sys -import re - -for line in sys.stdin: - line.rstrip() - outline = line.replace(b",",b" ").replace(b"^",b",").replace(b"'",b"").replace(b"~","'").replace(b'"',b"in") - print re.sub(b"'(\d+)'", b"\\1", outline).rstrip() - - -''' -#with open("bad_food.csv","rb") as bad_file: - zero=bad_file.read().replace(b",",b" ") - one=zero.replace(b"^",b",") - two=one.replace(b"'",b"") - three=two.replace(b"~",b"'") - four=three.replace(b'"',b"in") - five=re.sub(b"'(\d+)'", b"\\1", four); -# five=re.sub(b"^\'(\d+)\',\'(\d+)\',(.*)$", b"\1,\2,\3", four); - #print(one) - with open("new_desc.csv", "wb") as new_csv: - new_csv.write(five) -''' diff --git a/Postgres/raw_data/food_description.csv b/Postgres/raw_data/food_description.csv deleted file mode 100755 index 920b479..0000000 --- a/Postgres/raw_data/food_description.csv +++ /dev/null @@ -1,7794 +0,0 @@ -~NDB_No~^~FdGrp_Cd~^~Long_Desc~^~Shrt_Desc~^~ComName~^~ManufacName~^~Survey~^~Ref_desc~^~Refuse~^~SciName~^~N_Factor~^~Pro_Factor~^~Fat_Factor~^~CHO_Factor~ -~01001~^~0100~^~Butter, salted~^~BUTTER,WITH SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01002~^~0100~^~Butter, whipped, with salt~^~BUTTER,WHIPPED,W/ SALT~^^^~Y~^^0^^6.38^^^ -~01003~^~0100~^~Butter oil, anhydrous~^~BUTTER OIL,ANHYDROUS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01004~^~0100~^~Cheese, blue~^~CHEESE,BLUE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01005~^~0100~^~Cheese, brick~^~CHEESE,BRICK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01006~^~0100~^~Cheese, brie~^~CHEESE,BRIE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01007~^~0100~^~Cheese, camembert~^~CHEESE,CAMEMBERT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01008~^~0100~^~Cheese, caraway~^~CHEESE,CARAWAY~^^^^^0^^6.38^4.27^8.79^3.87 -~01009~^~0100~^~Cheese, cheddar (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR~^^^~Y~^^0^^^^^ -~01010~^~0100~^~Cheese, cheshire~^~CHEESE,CHESHIRE~^^^^^0^^6.38^4.27^8.79^3.87 -~01011~^~0100~^~Cheese, colby~^~CHEESE,COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01012~^~0100~^~Cheese, cottage, creamed, large or small curd~^~CHEESE,COTTAGE,CRMD,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01013~^~0100~^~Cheese, cottage, creamed, with fruit~^~CHEESE,COTTAGE,CRMD,W/FRUIT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01014~^~0100~^~Cheese, cottage, nonfat, uncreamed, dry, large or small curd~^~CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01015~^~0100~^~Cheese, cottage, lowfat, 2% milkfat~^~CHEESE,COTTAGE,LOWFAT,2% MILKFAT~^^^~Y~^^0^^6.38^^^ -~01016~^~0100~^~Cheese, cottage, lowfat, 1% milkfat~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01017~^~0100~^~Cheese, cream~^~CHEESE,CREAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01018~^~0100~^~Cheese, edam~^~CHEESE,EDAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01019~^~0100~^~Cheese, feta~^~CHEESE,FETA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01020~^~0100~^~Cheese, fontina~^~CHEESE,FONTINA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01021~^~0100~^~Cheese, gjetost~^~CHEESE,GJETOST~^^^^^0^^6.38^4.27^8.79^3.87 -~01022~^~0100~^~Cheese, gouda~^~CHEESE,GOUDA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01023~^~0100~^~Cheese, gruyere~^~CHEESE,GRUYERE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01024~^~0100~^~Cheese, limburger~^~CHEESE,LIMBURGER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01025~^~0100~^~Cheese, monterey~^~CHEESE,MONTEREY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01026~^~0100~^~Cheese, mozzarella, whole milk~^~CHEESE,MOZZARELLA,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01027~^~0100~^~Cheese, mozzarella, whole milk, low moisture~^~CHEESE,MOZZARELLA,WHL MILK,LO MOIST~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01028~^~0100~^~Cheese, mozzarella, part skim milk~^~CHEESE,MOZZARELLA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01029~^~0100~^~Cheese, mozzarella, low moisture, part-skim~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM~^^^~Y~^^0^^6.38^^^ -~01030~^~0100~^~Cheese, muenster~^~CHEESE,MUENSTER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01031~^~0100~^~Cheese, neufchatel~^~CHEESE,NEUFCHATEL~^^^^^0^^6.38^4.27^8.79^3.87 -~01032~^~0100~^~Cheese, parmesan, grated~^~CHEESE,PARMESAN,GRATED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01033~^~0100~^~Cheese, parmesan, hard~^~CHEESE,PARMESAN,HARD~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01034~^~0100~^~Cheese, port de salut~^~CHEESE,PORT DE SALUT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01035~^~0100~^~Cheese, provolone~^~CHEESE,PROVOLONE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01036~^~0100~^~Cheese, ricotta, whole milk~^~CHEESE,RICOTTA,WHOLE MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01037~^~0100~^~Cheese, ricotta, part skim milk~^~CHEESE,RICOTTA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01038~^~0100~^~Cheese, romano~^~CHEESE,ROMANO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01039~^~0100~^~Cheese, roquefort~^~CHEESE,ROQUEFORT~^^^^^0^^6.38^4.27^8.79^3.87 -~01040~^~0100~^~Cheese, swiss~^~CHEESE,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01041~^~0100~^~Cheese, tilsit~^~CHEESE,TILSIT~^^^^^0^^6.38^4.27^8.79^3.87 -~01042~^~0100~^~Cheese, pasteurized process, American, fortified with vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01043~^~0100~^~Cheese, pasteurized process, pimento~^~CHEESE,PAST PROCESS,PIMENTO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01044~^~0100~^~Cheese, pasteurized process, swiss~^~CHEESE,PAST PROCESS,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01045~^~0100~^~Cheese food, cold pack, American~^~CHEESE FD,COLD PK,AMERICAN~^^^^^0^^6.38^4.27^8.79^3.87 -~01046~^~0100~^~Cheese food, pasteurized process, American, vitamin D fortified~^~CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01047~^~0100~^~Cheese food, pasteurized process, swiss~^~CHEESE FD,PAST PROCESS,SWISS~^^^^^0^^6.38^4.27^8.79^3.87 -~01048~^~0100~^~Cheese spread, pasteurized process, American~^~CHEESE SPRD,PAST PROCESS,AMERICAN~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01049~^~0100~^~Cream, fluid, half and half~^~CREAM,FLUID,HALF AND HALF~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01050~^~0100~^~Cream, fluid, light (coffee cream or table cream)~^~CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01052~^~0100~^~Cream, fluid, light whipping~^~CREAM,FLUID,LT WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01053~^~0100~^~Cream, fluid, heavy whipping~^~CREAM,FLUID,HVY WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01054~^~0100~^~Cream, whipped, cream topping, pressurized~^~CREAM,WHIPPED,CRM TOPPING,PRESSURIZED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01055~^~0100~^~Cream, sour, reduced fat, cultured~^~CREAM,SOUR,RED FAT,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01056~^~0100~^~Cream, sour, cultured~^~CREAM,SOUR,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01057~^~0100~^~Eggnog~^~EGGNOG~^^^~Y~^^0^^6.37^4.27^8.79^3.90 -~01058~^~0100~^~Sour dressing, non-butterfat, cultured, filled cream-type~^~SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01059~^~0100~^~Milk, filled, fluid, with blend of hydrogenated vegetable oils~^~MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS~^^^^^0^^6.38^4.27^8.79^3.87 -~01060~^~0100~^~Milk, filled, fluid, with lauric acid oil~^~MILK,FILLED,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.38^4.27^8.79^3.87 -~01061~^~0100~^~Cheese, American, nonfat or fat free~^~CHEESE,AMERICAN,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01064~^~0100~^~Yogurt, Greek, 2% fat, apricot, CHOBANI~^~YOGURT,GREEK,2% FAT,APRICOT,CHOBANI~^^~Chobani~^^^0^^3.68^^^ -~01065~^~0100~^~Yogurt, Greek, 2%fat, coconut blend, CHOBANI~^~YOGURT,GREEK,2%FAT,COCNT BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01067~^~0100~^~Cream substitute, liquid, with hydrogenated vegetable oil and soy protein~^~CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT~^^^~Y~^^0^^5.71^4.27^8.79^3.87 -~01068~^~0100~^~Cream substitute, liquid, with lauric acid oil and sodium caseinate~^~CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE~^^^^^0^^6.29^4.27^8.79^3.87 -~01069~^~0100~^~Cream substitute, powdered~^~CREAM SUBSTITUTE,POWDERED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01070~^~0100~^~Dessert topping, powdered~^~DESSERT TOPPING,POWDERED~^^^^^0^^6.29^4.27^8.79^3.87 -~01071~^~0100~^~Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk~^~DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK~^^^~Y~^^0^^6.35^4.27^8.79^3.87 -~01072~^~0100~^~Dessert topping, pressurized~^~DESSERT TOPPING,PRESSURIZED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01073~^~0100~^~Dessert topping, semi solid, frozen~^~DESSERT TOPPING,SEMI SOLID,FRZ~^^^~Y~^^0^^6.29^4.27^8.84^3.87 -~01074~^~0100~^~Sour cream, imitation, cultured~^~SOUR CRM,IMITN,CULTURED~^^^~Y~^^0^^6.29^4.27^8.79^3.87 -~01076~^~0100~^~Milk substitutes, fluid, with lauric acid oil~^~MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.29^4.27^8.79^3.87 -~01077~^~0100~^~Milk, whole, 3.25% milkfat, with added vitamin D~^~MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01078~^~0100~^~Milk, producer, fluid, 3.7% milkfat~^~MILK,PRODUCER,FLUID,3.7% MILKFAT~^^^^^0^^6.38^4.27^8.79^3.87 -~01079~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01080~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01081~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01082~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01083~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D~^^^^^0^^6.38^4.27^8.79^3.87 -~01084~^~0100~^~Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87 -~01085~^~0100~^~Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01086~^~0100~^~Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87 -~01087~^~0100~^~Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)~^~MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)~^^^^^0^^6.38^4.27^8.79^3.87 -~01088~^~0100~^~Milk, buttermilk, fluid, cultured, lowfat~^~MILK,BTTRMLK,FLUID,CULTURED,LOWFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01089~^~0100~^~Milk, low sodium, fluid~^~MILK,LO NA,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01090~^~0100~^~Milk, dry, whole, with added vitamin D~^~MILK,DRY,WHL,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01091~^~0100~^~Milk, dry, nonfat, regular, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01092~^~0100~^~Milk, dry, nonfat, instant, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01093~^~0100~^~Milk, dry, nonfat, calcium reduced~^~MILK,DRY,NONFAT,CA RED~^^^^^0^^6.38^4.27^8.79^3.87 -~01094~^~0100~^~Milk, buttermilk, dried~^~MILK,BUTTERMILK,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01095~^~0100~^~Milk, canned, condensed, sweetened~^~MILK,CND,COND,SWTND~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01096~^~0100~^~Milk, canned, evaporated, with added vitamin D and without added vitamin A~^~MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01097~^~0100~^~Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01102~^~0100~^~Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01103~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01104~^~0100~^~Milk, chocolate, lowfat, with added vitamin A and vitamin D~^~MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01105~^~0100~^~Milk, chocolate beverage, hot cocoa, homemade~^~MILK,CHOC BEV,HOT COCOA,HOMEMADE~^^^^^0^^6.38^^^ -~01106~^~0100~^~Milk, goat, fluid, with added vitamin D~^~MILK,GOAT,FLUID,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01107~^~0100~^~Milk, human, mature, fluid~^~MILK,HUMAN,MATURE,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01108~^~0100~^~Milk, indian buffalo, fluid~^~MILK,INDIAN BUFFALO,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01109~^~0100~^~Milk, sheep, fluid~^~MILK,SHEEP,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01110~^~0100~^~Milk shakes, thick chocolate~^~MILK SHAKES,THICK CHOC~^^^^^0^^6.38^4.27^8.79^3.87 -~01111~^~0100~^~Milk shakes, thick vanilla~^~MILK SHAKES,THICK VANILLA~^^^^^0^^6.38^4.27^8.79^3.87 -~01112~^~0100~^~Whey, acid, fluid~^~WHEY,ACID,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01113~^~0100~^~Whey, acid, dried~^~WHEY,ACID,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01114~^~0100~^~Whey, sweet, fluid~^~WHEY,SWEET,FLUID~^^^^^0^^6.38^4.27^8.79^3.87 -~01115~^~0100~^~Whey, sweet, dried~^~WHEY,SWEET,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01116~^~0100~^~Yogurt, plain, whole milk~^~YOGURT,PLN,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01117~^~0100~^~Yogurt, plain, low fat~^~YOGURT,PLN,LOFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01118~^~0100~^~Yogurt, plain, skim milk~^~YOGURT,PLN,SKIM MILK.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01119~^~0100~^~Yogurt, vanilla, low fat.~^~YOGURT,VANILLA,LOFAT.~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01120~^~0100~^~Yogurt, fruit, low fat,9 g protein/8 oz~^~YOGURT,FRUIT,LOFAT,9 G PROTEIN/8 OZ~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01121~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OUNCE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01122~^~0100~^~Yogurt, fruit, low fat, 11g protein/8 oz~^~YOGURT,FRUIT,LOFAT,11G PROTEIN/8 OZ~^^^^^0^^6.38^4.27^8.79^3.87 -~01123~^~0100~^~Egg, whole, raw, fresh~^~EGG,WHL,RAW,FRSH~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01124~^~0100~^~Egg, white, raw, fresh~^~EGG,WHITE,RAW,FRESH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01125~^~0100~^~Egg, yolk, raw, fresh~^~EGG,YOLK,RAW,FRSH~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01126~^~0100~^~Egg, yolk, raw, frozen, pasteurized~^~EGG,YOLK,RAW,FRZ,PAST~^^^^^0^^6.25^^^ -~01127~^~0100~^~Egg, yolk, raw, frozen, sugared, pasteurized~^~EGG,YOLK,RAW,FRZ,SUGARED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01128~^~0100~^~Egg, whole, cooked, fried~^~EGG,WHL,CKD,FRIED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01129~^~0100~^~Egg, whole, cooked, hard-boiled~^~EGG,WHL,CKD,HARD-BOILED~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01130~^~0100~^~Egg, whole, cooked, omelet~^~EGG,WHOLE,COOKED,OMELET~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01131~^~0100~^~Egg, whole, cooked, poached~^~EGG,WHL,CKD,POACHED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01132~^~0100~^~Egg, whole, cooked, scrambled~^~EGG,WHL,CKD,SCRMBLD~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01133~^~0100~^~Egg, whole, dried~^~EGG,WHL,DRIED~^^^~Y~^^0^^6.25^^^ -~01134~^~0100~^~Egg, whole, dried, stabilized, glucose reduced~^~EGG,WHL,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01135~^~0100~^~Egg, white, dried, flakes, stabilized, glucose reduced~^~EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68 -~01136~^~0100~^~Egg, white, dried, powder, stabilized, glucose reduced~^~EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~01137~^~0100~^~Egg, yolk, dried~^~EGG,YOLK,DRIED~^^^~Y~^^0^^6.25^^^ -~01138~^~0100~^~Egg, duck, whole, fresh, raw~^~EGG,DUCK,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68 -~01139~^~0100~^~Egg, goose, whole, fresh, raw~^~EGG,GOOSE,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^13^^6.25^4.36^9.02^3.68 -~01140~^~0100~^~Egg, quail, whole, fresh, raw~^~EGG,QUAIL,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^8^^6.25^4.36^9.02^3.68 -~01141~^~0100~^~Egg, turkey, whole, fresh, raw~^~EGG,TURKEY,WHL,FRSH,RAW~^^^^~Shell~^12^^6.25^4.36^9.02^3.68 -~01144~^~0100~^~Egg substitute, powder~^~EGG SUBSTITUTE,POWDER~^^^~Y~^^0^^6.25^4.36^9.02^3.87 -~01145~^~0100~^~Butter, without salt~^~BUTTER,WITHOUT SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01146~^~0100~^~Cheese, parmesan, shredded~^~CHEESE,PARMESAN,SHREDDED~^^^^^0^^6.38^4.27^8.79^3.87 -~01151~^~0100~^~Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~01152~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01153~^~0100~^~Milk, canned, evaporated, with added vitamin A~^~MILK,CND,EVAP,W/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87 -~01154~^~0100~^~Milk, dry, nonfat, regular, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01155~^~0100~^~Milk, dry, nonfat, instant, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01156~^~0100~^~Cheese, goat, hard type~^~CHEESE,GOAT,HARD TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01157~^~0100~^~Cheese, goat, semisoft type~^~CHEESE,GOAT,SEMISOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01158~^~0100~^~Yogurt, Greek, 2% fat, key lime blend, CHOBANI~^~YOGURT,GREEK,2% FAT,KEY LIME BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01159~^~0100~^~Cheese, goat, soft type~^~CHEESE,GOAT,SOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01160~^~0100~^~Egg, yolk, raw, frozen, salted, pasteurized~^~EGG,YOLK,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01161~^~0100~^~Cheese substitute, mozzarella~^~CHEESE SUB,MOZZARELLA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01162~^~0100~^~Yogurt, Greek, 2% fat, mango, CHOBANI~^~YOGURT,GREEK,2% FAT,MANGO,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01164~^~0100~^~Cheese sauce, prepared from recipe~^~CHEESE SAU,PREP FROM RECIPE~^^^~Y~^^0^^6.38^4.08^8.92^3.95 -~01165~^~0100~^~Cheese, mexican, queso anejo~^~CHEESE,MEXICAN,QUESO ANEJO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01166~^~0100~^~Cheese, mexican, queso asadero~^~CHEESE,MEXICAN,QUESO ASADERO~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01167~^~0100~^~Cheese, mexican, queso chihuahua~^~CHEESE,MEXICAN,QUESO CHIHUAHUA~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01168~^~0100~^~Cheese, low fat, cheddar or colby~^~CHEESE,LOFAT,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01169~^~0100~^~Cheese, low-sodium, cheddar or colby~^~CHEESE,LOW-SODIUM,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01171~^~0100~^~Egg, whole, raw, frozen, pasteurized (Includes foods for USDA's Food Distribution Program)~^~EGG,WHL,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01172~^~0100~^~Egg, white, raw, frozen, pasteurized~^~EGG,WHITE,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68 -~01173~^~0100~^~Egg, white, dried~^~EGG,WHITE,DRIED~^^^^^0^^6.25^4.36^9.02^3.68 -~01174~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01175~^~0100~^~Milk, fluid, 1% fat, without added vitamin A and vitamin D~^~MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87 -~01178~^~0100~^~Sour cream, reduced fat~^~SOUR CREAM,REDUCED FAT~^^^~Y~^^0^^6.38^^^ -~01179~^~0100~^~Sour cream, light~^~SOUR CREAM,LIGHT~^^^~Y~^^0^^6.38^^^ -~01180~^~0100~^~Sour cream, fat free~^~SOUR CREAM,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01184~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener~^~YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01185~^~0100~^~Parmesan cheese topping, fat free~^~PARMESAN CHS TOPPING,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01186~^~0100~^~Cheese, cream, fat free~^~CHEESE,CREAM,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01187~^~0100~^~Yogurt, chocolate, nonfat milk~^~YOGURT,CHOC,NONFAT MILK~^^^~Y~^^0^^6.38^^^ -~01188~^~0100~^~KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce~^~KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01189~^~0100~^~KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product~^~KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01190~^~0100~^~KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product~^~KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01191~^~0100~^~KRAFT VELVEETA Pasteurized Process Cheese Spread~^~KRAFT VELVEETA PAST PROCESS CHS SPRD~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01192~^~0100~^~KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product~^~KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01193~^~0100~^~KRAFT BREAKSTONE'S Reduced Fat Sour Cream~^~KRAFT BREAKSTONE'S RED FAT SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01194~^~0100~^~KRAFT BREAKSTONE'S FREE Fat Free Sour Cream~^~KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^ -~01199~^~0100~^~Cream, half and half, fat free~^~CREAM,HALF & HALF,FAT FREE~^^^~Y~^^0^^6.38^^^ -~01200~^~0100~^~Reddi Wip Fat Free Whipped Topping~^~REDDI WIP FAT FREE WHIPPED TOPPING~^^^~Y~^^0^^6.38^^^ -~01202~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added calcium~^~MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA~^^^^^0^^6.38^^^ -~01203~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener~^~YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01204~^~0100~^~Cheese, parmesan, dry grated, reduced fat~^~CHEESE,PARMESAN,DRY GRATED,RED FAT~^^^~Y~^^0^^6.38^^^ -~01205~^~0100~^~Cream substitute, flavored, liquid~^~CREAM SUB,FLAV,LIQ~^^^~Y~^^0^^6.29^^^ -~01206~^~0100~^~Cream substitute, flavored, powdered~^~CREAM SUB,FLAV,PDR~^^^~Y~^^0^^6.38^^^ -~01208~^~0100~^~Cheese, provolone, reduced fat~^~CHEESE,PROVOLONE,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01209~^~0100~^~Cheese, Mexican, blend, reduced fat~^~CHEESE,MEXICAN,BLEND,RED FAT~^^^~Y~^^0^^6.38^^^ -~01211~^~0100~^~Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D~^~MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01212~^~0100~^~Milk, dry, whole, without added vitamin D~^~MILK,DRY,WHL,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01215~^~0100~^~Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D~^^^~Y~^^0^^6.38^^^ -~01216~^~0100~^~Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01217~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01218~^~0100~^~Yogurt, fruit variety, nonfat, fortified with vitamin D~^~YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01219~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D~^~YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01220~^~0100~^~Yogurt, vanilla, low fat, fortified with vitamin D~^~YOGURT,VANILLA,LOFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01221~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D~^~YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D~^^^~Y~^^0^^6.38^^^ -~01222~^~0100~^~Yogurt, chocolate, nonfat milk, fortified with vitamin D~^~YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^ -~01223~^~0100~^~Protein supplement, milk based, Muscle Milk, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR~^^^~Y~^^0^^6.38^^^ -~01224~^~0100~^~Protein supplement, milk based, Muscle Milk Light, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR~^^^~Y~^^0^^6.38^^^ -~01225~^~0100~^~Dulce de Leche~^~DULCE DE LECHE~^^^~Y~^^0^^6.38^^^ -~01226~^~0100~^~Egg substitute, liquid or frozen, fat free~^~EGG SUB,LIQ OR FRZ,FAT FREE~^^^~Y~^^0^^6.25^4.36^8.84^3.68 -~01227~^~0100~^~Cheese, dry white, queso seco~^~CHEESE,DRY WHITE,QUESO SECO~^^^^^0^^6.38^^^ -~01228~^~0100~^~Cheese, fresh, queso fresco~^~CHEESE,FRSH,QUESO FRESCO~^^^~Y~^^0^^6.38^^^ -~01229~^~0100~^~Cheese, white, queso blanco~^~CHEESE,WHITE,QUESO BLANCO~^^^^^0^^6.38^^^ -~01230~^~0100~^~Milk, buttermilk, fluid, whole~^~MILK,BTTRMLK,FLUID,WHL~^^^~Y~^^0^^6.38^^^ -~01231~^~0100~^~Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener~^~YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^6.38^^^ -~01235~^~0100~^~Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener~^~YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^ -~01236~^~0100~^~Ice cream, soft serve, chocolate~^~ICE CRM,SOFT SERVE,CHOC~^^^~Y~^^0^^6.38^^^ -~01237~^~0100~^~Ice cream, bar or stick, chocolate covered~^~ICE CRM,BAR OR STK,CHOC COVERED~^^^~Y~^^0^^6.38^^^ -~01238~^~0100~^~Ice cream sandwich~^~ICE CRM SNDWCH~^^^~Y~^^0^^6.38^^^ -~01239~^~0100~^~Ice cream cookie sandwich~^~ICE CRM COOKIE SNDWCH~^^^~Y~^^0^^6.38^^^ -~01240~^~0100~^~Ice cream cone, chocolate covered, with nuts, flavors other than chocolate~^~ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.25^^^ -~01241~^~0100~^~Ice cream sandwich, made with light ice cream, vanilla~^~ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA~^^^~Y~^^0^^6.25^^^ -~01242~^~0100~^~Ice cream sandwich, vanilla, light, no sugar added~^~ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.38^^^ -~01243~^~0100~^~Fat free ice cream, no sugar added, flavors other than chocolate~^~FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.38^^^ -~01244~^~0100~^~Milk dessert bar, frozen, made from lowfat milk~^~MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK~^^^~Y~^^0^^6.38^^^ -~01249~^~0100~^~Yogurt, Greek, 2% fat,mixed berry blend, CHOBANI~^~YOGURT,GREEK,2% FAT,MXD BERRY BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01250~^~0100~^~Nutritional supplement for people with diabetes, liquid~^~NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ~^^^~Y~^^0^^6.38^^^ -~01251~^~0100~^~Cheese, Mexican blend~^~CHEESE,MEXICAN BLEND~^^^~Y~^^0^^6.38^^^ -~01252~^~0100~^~Cheese product, pasteurized process, American, vitamin D fortified~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^^^ -~01253~^~0100~^~Cheese, pasteurized process, American, without added vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01254~^~0100~^~Cheese food, pasteurized process, American, without added vitamin D~^~CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01255~^~0100~^~Egg, whole, raw, frozen, salted, pasteurized~^~EGG,WHL,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^^^ -~01256~^~0100~^~Yogurt, Greek, plain, nonfat (Includes foods for USDA's Food Distribution Program)~^~YOGURT,GREEK,PLN,NONFAT~^^^~Y~^^0^^6.38^^^ -~01258~^~0100~^~Egg, white, dried, stabilized, glucose reduced~^~EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^^^ -~01259~^~0100~^~Cheese spread, American or Cheddar cheese base, reduced fat~^~CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT~^^^~Y~^^0^^6.38^^^ -~01260~^~0100~^~Cheese, cheddar, reduced fat (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR,RED FAT~^^^~Y~^^0^^6.38^^^ -~01263~^~0100~^~Ice cream, light, soft serve, chocolate~^~ICE CRM,LT,SOFT SERVE,CHOC~^^^~Y~^^0^^6.25^^^ -~01264~^~0100~^~Ice cream bar, stick or nugget, with crunch coating~^~ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING~^^^~Y~^^0^^6.38^^^ -~01265~^~0100~^~Cheese, cheddar, nonfat or fat free~^~CHEESE,CHEDDAR,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^ -~01266~^~0100~^~Cheese, Swiss, nonfat or fat free~^~CHEESE,SWISS,NONFAT OR FAT FREE~^^^~Y~^^0^^6.38^^^ -~01267~^~0100~^~Cheese, mexican, queso cotija~^~CHEESE,MEXICAN,QUESO COTIJA~^^^~Y~^^0^^6.25^^^ -~01270~^~0100~^~Cheese, cheddar, sharp, sliced~^~CHEESE,CHEDDAR,SHARP,SLICED~^^^~Y~^^0^^6.38^^^ -~01271~^~0100~^~Cheese, mozzarella, low moisture, part-skim, shredded~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED~^^^~Y~^^0^^6.38^^^ -~01275~^~0100~^~Yogurt, Greek, nonfat, vanilla, CHOBANI~^~YOGURT,GREEK,NONFAT,VANILLA,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01276~^~0100~^~Yogurt, Greek, strawberry, DANNON OIKOS~^~YOGURT,GREEK,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01278~^~0100~^~Yogurt, Greek, nonfat, vanilla, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01280~^~0100~^~Yogurt, Greek, nonfat, strawberry, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^ -~01284~^~0100~^~Yogurt, Greek, strawberry, lowfat~^~YOGURT,GREEK,STRAWBERRY,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01285~^~0100~^~Yogurt, Greek, strawberry, nonfat~^~YOGURT,GREEK,STRAWBERRY,NONFAT~^^^~Y~^^0^^6.38^^^ -~01286~^~0100~^~Yogurt, Greek, vanilla, nonfat~^~YOGURT,GREEK,VANILLA,NONFAT~^^^~Y~^^0^^6.38^^^ -~01287~^~0100~^~Yogurt, Greek, plain, lowfat~^~YOGURT,GREEK,PLN,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01289~^~0100~^~Kefir, lowfat, plain, LIFEWAY~^~KEFIR,LOWFAT,PLN,LIFEWAY~^^~Lifeway~^~Y~^^0^^6.38^^^ -~01290~^~0100~^~Kefir, lowfat, strawberry, LIFEWAY~^~KEFIR,LOWFAT,STRAWBERRY,LIFEWAY~^^^~Y~^^0^^6.38^^^ -~01291~^~0100~^~Milk, evaporated, 2% fat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,WO/ VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01292~^~0100~^~Milk, chocolate, fat free, with added vitamin A and vitamin D~^~MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.25^^^ -~01293~^~0100~^~Yogurt, Greek, plain, whole milk~^~YOGURT,GREEK,PLN,WHL MILK~^^^~Y~^^0^^6.25^^^ -~01294~^~0100~^~Yogurt, Greek, fruit, whole milk~^~YOGURT,GREEK,FRUIT,WHL MILK~^^^~Y~^^0^^6.38^^^ -~01295~^~0100~^~Yogurt, vanilla, non-fat~^~YOGURT,VANILLA,NON-FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~01297~^~0100~^~Yogurt, Greek, vanilla, lowfat~^~YOGURT,GREEK,VANILLA,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01298~^~0100~^~Yogurt, frozen, flavors other than chocolate, lowfat~^~YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT~^^^~Y~^^0^^6.38^^^ -~01300~^~0100~^~Ice cream bar, covered with chocolate and nuts~^~ICE CRM BAR,COVERED W/ CHOC & NUTS~^^^~Y~^^0^^6.38^^^ -~01301~^~0100~^~Ice cream sundae cone~^~ICE CRM SUNDAE CONE~^^^~Y~^^0^^6.38^^^ -~01302~^~0100~^~Light ice cream, Creamsicle~^~LIGHT ICE CRM,CREAMSICLE~^^^~Y~^^0^^6.25^^^ -~01303~^~0100~^~Cream, half and half, lowfat~^~CREAM,HALF & HALF,LOWFAT~^^^~Y~^^0^^6.25^^^ -~01304~^~0100~^~Yogurt, Greek, 2% fat, pineapple, CHOBANI~^~YOGURT,GREEK,2% FAT,PNAPPL,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01305~^~0100~^~Milk, chocolate, lowfat, reduced sugar~^~MILK,CHOC,LOWFAT,RED SUGAR~^^^~Y~^^0^^6.38^^^ -~01306~^~0100~^~Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce~^~ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU~^^^~Y~^^0^^6.25^^^ -~01307~^~0100~^~Yogurt, Greek, 2% fat, strawberry banana, CHOBANI~^~YOGURT,GREEK,2% FAT,STRAWBERRY BANANA,CHOBANI~^^~Chobani~^^^0^^^^^ -~01308~^~0100~^~Yogurt, Greek, whole, plain, CHOBANI~^~YOGURT,GREEK,WHL,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01312~^~0100~^~Yogurt, Greek, nonfat, lemon blend, CHOBANI~^~YOGURT,GREEK,NONFAT,LEMON BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01313~^~0100~^~Yogurt, Greek, nonfat, peach, CHOBANI~^~YOGURT,GREEK,NONFAT,PEACH,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01314~^~0100~^~Yogurt, Greek, nonfat, plain, CHOBANI~^~YOGURT,GREEK,NONFAT,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01316~^~0100~^~Yogurt, Greek, nonfat, raspberry, CHOBANI~^~YOGURT,GREEK,NONFAT,RASPBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01319~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Pomegranate, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,POMEGRANATE,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01320~^~0100~^~Yogurt, Greek, Blueberry, CHOBANI~^~YOGURT,GREEK,BLUEBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01321~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Strawberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,STRAWBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01322~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Blackberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,BLACKBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^ -~01323~^~0100~^~Butter, Clarified butter (ghee)~^~BUTTER,CLARIFIED BUTTER (GHEE)~^^^^^0^^6.25^^^ -~02001~^~0200~^~Spices, allspice, ground~^~ALLSPICE,GROUND~^^^^^0^~Pimenta dioica~^6.25^3.36^8.37^2.35 -~02002~^~0200~^~Spices, anise seed~^~ANISE SEED~^^^^^0^~Pimpinella anisum~^6.25^3.36^8.37^2.90 -~02003~^~0200~^~Spices, basil, dried~^~SPICES,BASIL,DRIED~^^^~Y~^^0^~Ocimum basilicum~^6.25^2.44^8.37^3.00 -~02004~^~0200~^~Spices, bay leaf~^~SPICES,BAY LEAF~^^^^^0^~Laurus nobilis~^6.25^2.44^8.37^3.00 -~02005~^~0200~^~Spices, caraway seed~^~CARAWAY SEED~^^^~Y~^^0^~Carum carvi~^6.25^3.36^8.37^2.90 -~02006~^~0200~^~Spices, cardamom~^~SPICES,CARDAMOM~^^^^^0^~Elettaria cardamomum~^6.25^3.36^8.37^3.20 -~02007~^~0200~^~Spices, celery seed~^~CELERY SEED~^^^~Y~^^0^~Apium graveolens~^6.25^3.36^8.37^2.90 -~02008~^~0200~^~Spices, chervil, dried~^~CHERVIL,DRIED~^^^^^0^~Anthriscus cerefolium~^6.25^2.44^8.37^3.00 -~02009~^~0200~^~Spices, chili powder~^~CHILI POWDER~^^^~Y~^^0^^6.25^3.23^8.37^2.39 -~02010~^~0200~^~Spices, cinnamon, ground~^~CINNAMON,GROUND~^~Cassia~^^~Y~^^0^~Cinnamomum aromaticum~^6.25^1.82^8.37^2.85 -~02011~^~0200~^~Spices, cloves, ground~^~CLOVES,GROUND~^^^~Y~^^0^~Syzygium aromaticum~^6.25^1.82^8.37^2.35 -~02012~^~0200~^~Spices, coriander leaf, dried~^~CORIANDER LEAF,DRIED~^~Chinese parsley, cilantro~^^~Y~^^0^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~02013~^~0200~^~Spices, coriander seed~^~CORIANDER SEED~^^^^^0^~Coriandrum sativum~^6.25^3.36^8.37^1.95 -~02014~^~0200~^~Spices, cumin seed~^~CUMIN SEED~^^^~Y~^^0^~Cuminum cyminum~^6.25^3.36^8.37^2.90 -~02015~^~0200~^~Spices, curry powder~^~CURRY POWDER~^^^~Y~^^0^^6.18^3.12^8.37^2.92 -~02016~^~0200~^~Spices, dill seed~^~DILL SEED~^^^^^0^~Anethum graveolens~^6.25^3.36^8.37^2.35 -~02017~^~0200~^~Spices, dill weed, dried~^~DILL WEED,DRIED~^^^^^0^~Anethum graveolens~^6.25^2.44^8.37^3.00 -~02018~^~0200~^~Spices, fennel seed~^~FENNEL SEED~^^^^^0^~Foeniculum vulgare~^6.25^3.36^8.37^3.20 -~02019~^~0200~^~Spices, fenugreek seed~^~FENUGREEK SEED~^^^^^0^~Trigonella foenum-graecum~^5.30^3.47^8.37^3.25 -~02020~^~0200~^~Spices, garlic powder~^~GARLIC POWDER~^^^~Y~^^0^~Allium sativum~^6.25^2.78^8.37^3.84 -~02021~^~0200~^~Spices, ginger, ground~^~GINGER,GROUND~^^^~Y~^^0^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~02022~^~0200~^~Spices, mace, ground~^~MACE,GROUND~^^^^^0^~Myristica fragrans~^6.25^3.36^8.37^3.60 -~02023~^~0200~^~Spices, marjoram, dried~^~MARJORAM,DRIED~^^^~Y~^^0^~Origanum majorana~^6.25^2.44^8.37^3.00 -~02024~^~0200~^~Spices, mustard seed, ground~^~SPICES,MUSTARD SD,GROUND~^^^~Y~^^0^~Sinapis alba and Brassica juncea~^5.40^3.47^8.37^4.07 -~02025~^~0200~^~Spices, nutmeg, ground~^~NUTMEG,GROUND~^^^~Y~^^0^~Myristica fragrans~^5.30^3.47^8.37^4.07 -~02026~^~0200~^~Spices, onion powder~^~ONION POWDER~^^^~Y~^^0^~Allium cepa~^6.25^2.78^8.37^3.84 -~02027~^~0200~^~Spices, oregano, dried~^~SPICES,OREGANO,DRIED~^^^~Y~^^0^~Origanum vulgare~^6.25^2.44^8.37^3.00 -~02028~^~0200~^~Spices, paprika~^~PAPRIKA~^^^~Y~^^0^~Capsicum annuum~^6.25^3.36^8.37^2.35 -~02029~^~0200~^~Spices, parsley, dried~^~PARSLEY,DRIED~^^^~Y~^^0^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~02030~^~0200~^~Spices, pepper, black~^~PEPPER,BLACK~^^^~Y~^^0^~Piper nigrum~^5.35^1.83^8.37^3.20 -~02031~^~0200~^~Spices, pepper, red or cayenne~^~PEPPER,RED OR CAYENNE~^^^~Y~^^0^~Capsicum frutescens or Capsicum annuum~^6.25^3.36^8.37^2.35 -~02032~^~0200~^~Spices, pepper, white~^~PEPPER,WHITE~^^^^^0^~Piper nigrum~^5.35^1.83^8.37^3.78 -~02033~^~0200~^~Spices, poppy seed~^~POPPY SEED~^^^~Y~^^0^~Papaver somniferum~^5.30^3.47^8.37^4.07 -~02034~^~0200~^~Spices, poultry seasoning~^~POULTRY SEASONING~^^^~Y~^^0^^5.89^2.36^8.37^3.38 -~02035~^~0200~^~Spices, pumpkin pie spice~^~PUMPKIN PIE SPICE~^^^~Y~^^0^^6.06^2.50^8.37^3.19 -~02036~^~0200~^~Spices, rosemary, dried~^~ROSEMARY,DRIED~^^^^^0^~Rosmarinus officinalis~^6.25^2.44^8.37^3.00 -~02037~^~0200~^~Spices, saffron~^~SAFFRON~^^^^^0^~Crocus sativus~^6.25^2.44^8.37^3.57 -~02038~^~0200~^~Spices, sage, ground~^~SAGE,GROUND~^^^~Y~^^0^~Salvia officinalis~^6.25^2.44^8.37^3.00 -~02039~^~0200~^~Spices, savory, ground~^~SAVORY,GROUND~^^^^^0^~Satureja hortensis~^6.25^2.44^8.37^3.00 -~02041~^~0200~^~Spices, tarragon, dried~^~SPICES,TARRAGON,DRIED~^^^^^0^~Artemisia dracunculus~^6.25^2.44^8.37^3.57 -~02042~^~0200~^~Spices, thyme, dried~^~SPICES,THYME,DRIED~^^^~Y~^^0^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02043~^~0200~^~Spices, turmeric, ground~^~TURMERIC,GROUND~^^^~Y~^^0^~Curcuma longa L.~^6.25^2.78^8.37^3.84 -~02044~^~0200~^~Basil, fresh~^~BASIL,FRESH~^^^~Y~^~Tough stems, flower heads and trimmings~^36^~Ocimum basilicum~^6.25^2.44^8.37^3.57 -~02045~^~0200~^~Dill weed, fresh~^~DILL WEED,FRSH~^^^^~Tough stems and trimmings~^41^~Anethum graveolens~^6.25^2.44^8.37^3.57 -~02046~^~0200~^~Mustard, prepared, yellow~^~MUSTARD,PREPARED,YELLOW~^^^~Y~^^0^^6.25^3.47^8.37^3.34 -~02047~^~0200~^~Salt, table~^~SALT,TABLE~^^^~Y~^^0^^0.00^^^ -~02048~^~0200~^~Vinegar, cider~^~VINEGAR,CIDER~^^^~Y~^^0^^0.00^^^ -~02049~^~0200~^~Thyme, fresh~^~THYME,FRSH~^^^^~Stems~^32^~Thymus vulgaris~^6.25^2.44^8.37^3.00 -~02050~^~0200~^~Vanilla extract~^~VANILLA EXTRACT~^^^^^0^^6.25^2.44^8.37^3.90 -~02051~^~0200~^~Vanilla extract, imitation, alcohol~^~VANILLA EXTRACT,IMITN,ALCOHOL~^^^^^0^^6.25^2.44^8.37^3.90 -~02052~^~0200~^~Vanilla extract, imitation, no alcohol~^~VANILLA EXTRACT,IMITN,NO ALCOHOL~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~02053~^~0200~^~Vinegar, distilled~^~VINEGAR,DISTILLED~^^^~Y~^^0^^^^^ -~02054~^~0200~^~Capers, canned~^~CAPERS,CANNED~^^^~Y~^^0^~Capparis spinosa~^6.25^1.82^8.37^2.35 -~02055~^~0200~^~Horseradish, prepared~^~HORSERADISH,PREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.44 -~02063~^~0200~^~Rosemary, fresh~^~ROSEMARY,FRESH~^^^^~Stems~^35^~Rosmarinus officinalis~^6.25^2.44^8.37^3.57 -~02064~^~0200~^~Peppermint, fresh~^~PEPPERMINT,FRESH~^~mint~^^^~Stems~^39^~Mentha x piperita L. nothosubsp. piperita~^6.25^2.44^8.37^3.57 -~02065~^~0200~^~Spearmint, fresh~^~SPEARMINT,FRESH~^~mint~^^^~Stems~^59^~Mentha spicata~^6.25^2.44^8.37^3.57 -~02066~^~0200~^~Spearmint, dried~^~SPEARMINT,DRIED~^~mint~^^^^0^^6.25^2.44^8.37^3.57 -~02068~^~0200~^~Vinegar, red wine~^~VINEGAR,RED WINE~^^^^^0^^6.25^^^ -~02069~^~0200~^~Vinegar, balsamic~^~VINEGAR,BALSAMIC~^^^^^0^^^^^ -~02074~^~0200~^~Seasoning mix, dry, sazon, coriander & annatto~^~SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO~^^^^^0^^6.25^^^ -~02075~^~0200~^~Seasoning mix, dry, taco, original~^~SEASONING MIX,DRY,TACO,ORIGINAL~^^^^^0^^^^^ -~02076~^~0200~^~Seasoning mix, dry, chili, original~^~SEASONING MIX,DRY,CHILI,ORIGINAL~^^^^^0^^^^^ -~03000~^~0300~^~Clif Z bar~^~CLIF Z BAR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03001~^~0300~^~Babyfood, juice treats, fruit medley, toddler~^~BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD~^^^~Y~^^0^^6.25^^^ -~03002~^~0300~^~Babyfood, meat, beef, strained~^~BABYFOOD,MEAT,BF,STR~^^^~Y~^^0^^6.25^^^ -~03003~^~0300~^~Babyfood, meat, beef, junior~^~BABYFOOD,MEAT,BF,JR~^^^~Y~^^0^^6.25^^^ -~03005~^~0300~^~Babyfood, meat, veal, strained~^~BABYFOOD,MEAT,VEAL,STR~^^^~Y~^^0^^^^^ -~03007~^~0300~^~Babyfood, meat, pork, strained~^~BABYFOOD,MEAT,PORK,STR~^^^^^0^^6.25^4.27^9.02^ -~03008~^~0300~^~Babyfood, meat, ham, strained~^~BABYFOOD,MEAT,HAM,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03009~^~0300~^~Babyfood, meat, ham, junior~^~BABYFOOD,MEAT,HAM,JUNIOR~^^^^^0^^6.25^4.27^9.02^ -~03010~^~0300~^~Babyfood, meat, lamb, strained~^~BABYFOOD,MEAT,LAMB,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~03011~^~0300~^~Babyfood, meat, lamb, junior~^~BABYFOOD,MEAT,LAMB,JUNIOR~^^^^^0^^6.25^4.27^9.02^3.87 -~03012~^~0300~^~Babyfood, meat, chicken, strained~^~BABYFOOD,MEAT,CHICK,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03013~^~0300~^~Babyfood, meat, chicken, junior~^~BABYFOOD,MEAT,CHICK,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03014~^~0300~^~Babyfood, meat, chicken sticks, junior~^~BABYFOOD,MEAT,CHICK STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03015~^~0300~^~Babyfood, meat, turkey, strained~^~BABYFOOD,MEAT,TURKEY,STR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03016~^~0300~^~Babyfood, meat, turkey, junior~^~BABYFOOD,MEAT,TURKEY,JR~^^^~Y~^^0^^6.25^4.27^9.02^ -~03017~^~0300~^~Babyfood, meat, turkey sticks, junior~^~Babyfood, meat, turkey sticks, junior~^^^~Y~^^0^^6.25^^^ -~03019~^~0300~^~Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars~^~BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS~^^~GERBER~^~Y~^^0^^^^^ -~03021~^~0300~^~Babyfood, meat, meat sticks, junior~^~BABYFOOD,MEAT,MEAT STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70 -~03022~^~0300~^~Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic~^~BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC~^^^~Y~^^0^^6.25^^^ -~03023~^~0300~^~Babyfood, finger snacks, GERBER, GRADUATES, PUFFS, apple and cinnamon~^~BABYFOOD,FINGER SNACKS,GERBER,GRADUATES,PUFFS,APPL & CINN~^^~GERBER~^~Y~^^0^^6.25^3.36^6.37^3.60 -~03024~^~0300~^~Babyfood, water, bottled, GERBER, without added fluoride~^~BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE~^^~GERBER~^~Y~^^0^^^^^ -~03025~^~0300~^~Babyfood, GERBER, 3rd Foods, apple, mango and kiwi~^~BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI~^^~GERBER~^~Y~^^0^^6.25^3.60^8.37^3.60 -~03026~^~0300~^~Babyfood, tropical fruit medley~^~BABYFOOD,TROPICAL FRUIT MEDLEY~^^^~Y~^^0^^6.25^3.60^8.37^3.60 -~03041~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, strained~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR~^^^^^0^^6.03^4.10^8.90^4.10 -~03042~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, junior~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR~^^^^^0^^6.03^4.10^8.90^4.10 -~03043~^~0300~^~Babyfood, dinner, beef lasagna, toddler~^~BABYFOOD,DINNER,BF LASAGNA,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03044~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, strained~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03045~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, junior~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03046~^~0300~^~Babyfood, ravioli, cheese filled, with tomato sauce~^~BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU~^^^~Y~^^0^^6.25^^^ -~03047~^~0300~^~Babyfood, dinner, beef noodle, strained~^~BABYFOOD,DINNER,BF NOODLE,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~03048~^~0300~^~Babyfood, macaroni and cheese, toddler~^~BABYFOOD,MACARONI&CHS,TODD~^^^~Y~^^0^^6.25^^^ -~03049~^~0300~^~Babyfood, dinner, beef and rice, toddler~^~BABYFOOD,DINNER,BF&RICE,TODD~^^^^^0^^6.14^4.10^8.90^4.10 -~03050~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, junior~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR~^^^~Y~^^0^^6.25^^^ -~03051~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, toddler~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD~^^^^^0^^5.98^4.10^8.90^4.10 -~03053~^~0300~^~Babyfood, dinner, vegetables and beef, strained~^~BABYFOOD,DINNER,VEG&BF,STR~^^^~Y~^^0^^^^^ -~03054~^~0300~^~Babyfood, dinner, vegetables and beef, junior~^~BABYFOOD,DINNER,VEG&BF,JR~^^^~Y~^^0^^^^^ -~03055~^~0300~^~Babyfood, dinner, beef with vegetables~^~BABYFOOD,DINNER,BF W/VEG~^^^~Y~^^0^^^^^ -~03067~^~0300~^~Babyfood, dinner, vegetables and lamb, junior~^~BABYFOOD,DINNER,VEG&LAMB,JR~^^^^^0^^6.25^3.70^8.90^3.90 -~03068~^~0300~^~Babyfood, dinner, chicken noodle, strained~^~BABYFOOD,DINNER,CHICK NOODLE,STR~^^^~Y~^^0^^6.25^^^ -~03069~^~0300~^~Babyfood, dinner, chicken noodle, junior~^~BABYFOOD,DINNER,CHICK NOODLE,JR~^^^~Y~^^0^^6.25^^^ -~03070~^~0300~^~Babyfood, dinner, chicken soup, strained~^~BABYFOOD,DINNER,CHICK SOUP,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.84 -~03072~^~0300~^~Babyfood, dinner, chicken stew, toddler~^~BABYFOOD DINNER CHICK STEW TODD~^^^~Y~^^0^^6.25^3.70^8.90^3.90 -~03073~^~0300~^~Babyfood, dinner, vegetables chicken, strained~^~BABYFOOD,DINNER,VEG CHICK,STR~^^^~Y~^^0^^^^^ -~03075~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, strained~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03076~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, junior~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03077~^~0300~^~Babyfood, dinner, pasta with vegetables~^~BABYFOOD,DINNER,PASTA W/VEG~^^^~Y~^^0^^^^^ -~03079~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, strained~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR~^^^^^0^^5.98^4.10^8.90^4.10 -~03081~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, junior~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR~^^^^^0^^5.98^4.10^8.90^4.10 -~03082~^~0300~^~Babyfood, dinner, turkey and rice, strained~^~BABYFOOD,DINNER,TURKEY&RICE,STR~^^^~Y~^^0^^^^^ -~03083~^~0300~^~Babyfood, dinner, turkey and rice, junior~^~BABYFOOD,DINNER,TURKEY & RICE,JR~^^^~Y~^^0^^^^^ -~03084~^~0300~^~Babyfood, dinner, vegetables and turkey, strained~^~BABYFOOD,DINNER,VEG&TURKEY,STR~^^^~Y~^^0^^^^^ -~03085~^~0300~^~Babyfood, dinner, vegetables and turkey, junior~^~BABYFOOD,DINNER,VEG&TURKEY,JR~^^^~Y~^^0^^^^^ -~03089~^~0300~^~Babyfood, dinner, macaroni and cheese, strained~^~BABYFOOD,DINNER,MACARONI&CHS,STR~^^^~Y~^^0^^^^^ -~03090~^~0300~^~Babyfood, dinner, macaroni and cheese, junior~^~BABYFOOD,DINNER,MACARONI&CHS,JR~^^^~Y~^^0^^6.00^4.20^8.70^4.00 -~03091~^~0300~^~Babyfood, vegetables, green beans, strained~^~BABYFOOD,VEG,GRN BNS,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03092~^~0300~^~Babyfood, vegetables, green beans, junior~^~BABYFOOD,VEG,GRN BNS,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03093~^~0300~^~Babyfood, green beans, dices, toddler~^~BABYFOOD,GRN BNS,DICES,TODD~^^^~Y~^^0^^^^^ -~03096~^~0300~^~Babyfood, vegetable, green beans and potatoes~^~BABYFOOD,VEG,GRN BNS&POTATOES~^^^~Y~^^0^^^^^ -~03098~^~0300~^~Babyfood, vegetables, beets, strained~^~BABYFOOD,VEG,BEETS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03099~^~0300~^~Babyfood, vegetables, carrots, strained~^~BABYFOOD,VEG,CARROTS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03100~^~0300~^~Babyfood, vegetables, carrots, junior~^~BABYFOOD,VEG,CARROTS,JR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~03104~^~0300~^~Babyfood, vegetables, squash, strained~^~BABYFOOD,VEG,SQUASH,STR~^^^~Y~^^0^^6.25^^^ -~03105~^~0300~^~Babyfood, vegetables, squash, junior~^~BABYFOOD,VEG,SQUASH,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03108~^~0300~^~Babyfood, vegetables, sweet potatoes strained~^~BABYFOOD,VEG,SWT POTATOES,STR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03109~^~0300~^~Babyfood, vegetables, sweet potatoes, junior~^~BABYFOOD,VEG,SWT POTATOES,JR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~03112~^~0300~^~Babyfood, potatoes, toddler~^~BABYFOOD,POTATOES,TODDLER~^^^~Y~^^0^^^^^ -~03113~^~0300~^~Babyfood, cereal, Oatmeal, dry, GERBER, SINGLE GRAIN, fortified~^~BABYFOOD,CRL,OATMEAL,DRY,GERBER,SINGLE GRAIN,FORT~^^~GERBER~^^^0^^^^^ -~03114~^~0300~^~Babyfood, vegetable, butternut squash and corn~^~BABYFOOD,VEG,BUTTERNUT SQUASH&CORN~^^^~Y~^^0^^^^^ -~03115~^~0300~^~Babyfood, apples, dices, toddler~^~BABYFOOD,APPLS,DICES,TODD~^^^~Y~^^0^^6.25^^^ -~03116~^~0300~^~Babyfood, fruit, applesauce, strained~^~BABYFOOD,FRUIT,APPLSAUC,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03117~^~0300~^~Babyfood, fruit, applesauce, junior~^~BABYFOOD,FRUIT,APPLSAUC,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03118~^~0300~^~Babyfood, fruit, apricot with tapioca, strained~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03119~^~0300~^~Babyfood, vegetables, corn, creamed, strained~^~BABYFOOD,VEG,CORN,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03120~^~0300~^~Babyfood, vegetables, corn, creamed, junior~^~BABYFOOD,VEG,CORN,CRMD,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03121~^~0300~^~Babyfood, vegetables, peas, strained~^~BABYFOOD,VEG,PEAS,STR~^^^~Y~^^0^^^^^ -~03122~^~0300~^~Babyfood, peas, dices, toddler~^~BABYFOOD,PEAS,DICES,TODD~^^^~Y~^^0^^^^^ -~03127~^~0300~^~Babyfood, vegetables, spinach, creamed, strained~^~BABYFOOD,VEG,SPINACH,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03128~^~0300~^~Babyfood, fruit, apricot with tapioca, junior~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03129~^~0300~^~Babyfood, fruit, bananas with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03130~^~0300~^~Babyfood, fruit, peaches, strained~^~BABYFOOD,FRUIT,PEACHES,STR~^^^~Y~^^0^^^^^ -~03131~^~0300~^~Babyfood, fruit, peaches, junior~^~BABYFOOD,FRUIT,PEACHES,JR~^^^~Y~^^0^^^^^ -~03132~^~0300~^~Babyfood, fruit, pears, strained~^~BABYFOOD,FRUIT,PEARS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03133~^~0300~^~Babyfood, fruit, pears, junior~^~BABYFOOD,FRUIT,PEARS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03134~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03135~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03136~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03137~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03139~^~0300~^~Babyfood, prunes, without vitamin c, strained~^~BABYFOOD,PRUNES,WO/VIT C,STR~^^^~Y~^^0^^^^^ -~03140~^~0300~^~Babyfood, fruit dessert, mango with tapioca~^~BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03141~^~0300~^~Babyfood, pears, dices, toddler~^~BABYFOOD,PEARS,DICES,TODD~^^^~Y~^^0^^^^^ -~03142~^~0300~^~Babyfood, fruit, applesauce and apricots, strained~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03143~^~0300~^~Babyfood, fruit, applesauce and apricots, junior~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03144~^~0300~^~Babyfood, fruit, applesauce and cherries, strained~^~BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03145~^~0300~^~Babyfood, fruit, applesauce and cherries, junior~^~BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03147~^~0300~^~Babyfood, fruit, applesauce with banana, junior~^~BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR~^^^~Y~^^0^^^^^ -~03150~^~0300~^~Babyfood, fruit, applesauce and pineapple, strained~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03151~^~0300~^~Babyfood, fruit, applesauce and pineapple, junior~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR~^^^^^0^^6.25^3.36^8.37^3.60 -~03152~^~0300~^~Babyfood, fruit, apple and raspberry, strained~^~BABYFOOD,FRUIT,APPL & RASPBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03153~^~0300~^~Babyfood, fruit, apple and raspberry, junior~^~BABYFOOD,FRUIT,APPL & RASPBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03154~^~0300~^~Babyfood, fruit and vegetable, apple and sweet potato~^~BABYFOOD,FRUIT & VEG,APPL & SWT POTATO~^^^~Y~^^0^^^^^ -~03156~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03157~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03158~^~0300~^~Babyfood, fruit, pears and pineapple, strained~^~BABYFOOD,FRUIT,PEARS&PNAPPL,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03159~^~0300~^~Babyfood, fruit, pears and pineapple, junior~^~BABYFOOD,FRUIT,PEARS&PNAPPL,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03160~^~0300~^~Babyfood, fruit, guava and papaya with tapioca, strained~^~BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03161~^~0300~^~Babyfood, peaches, dices, toddler~^~BABYFOOD,PEACHES,DICES,TODD~^^^~Y~^^0^^^^^ -~03162~^~0300~^~Babyfood, fruit, papaya and applesauce with tapioca, strained~^~BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60 -~03163~^~0300~^~Babyfood, fruit, bananas with apples and pears, strained~^~BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR~^^^~Y~^^0^^^^^ -~03164~^~0300~^~Babyfood, fruit, apple and blueberry, strained~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03165~^~0300~^~Babyfood, fruit, apple and blueberry, junior~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03166~^~0300~^~Babyfood, juice, apple~^~BABYFOOD,JUICE,APPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03167~^~0300~^~Babyfood, apple-banana juice~^~BABYFOOD,APPLE-BANANA JUC~^^^~Y~^^0^^^^^ -~03168~^~0300~^~Babyfood, juice, apple and peach~^~BABYFOOD,JUC,APPL&PEACH~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03171~^~0300~^~Babyfood, juice, apple and prune~^~BABYFOOD,JUC,APPL&PRUNE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03172~^~0300~^~Babyfood, juice, orange~^~BABYFOOD,JUICE,ORANGE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03173~^~0300~^~Babyfood, juice, orange and apple~^~BABYFOOD,JUC,ORANGE&APPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03174~^~0300~^~Babyfood, juice, orange and apple and banana~^~BABYFOOD,JUC,ORANGE&APPL&BANANA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03175~^~0300~^~Babyfood, juice, orange and apricot~^~BABYFOOD,JUC,ORANGE&APRICOT~^^^^^0^^6.25^3.36^8.37^3.92 -~03176~^~0300~^~Babyfood, juice, orange and banana~^~BABYFOOD,JUC,ORANGE&BANANA~^^^^^0^^6.25^3.36^8.37^3.92 -~03177~^~0300~^~Babyfood, juice, orange and pineapple~^~BABYFOOD,JUC,ORANGE&PNAPPL~^^^^^0^^6.25^3.36^8.37^3.92 -~03178~^~0300~^~Babyfood, juice, prune and orange~^~BABYFOOD,JUC,PRUNE&ORANGE~^^^^^0^^6.25^3.36^8.37^3.92 -~03179~^~0300~^~Babyfood, juice, mixed fruit~^~BABYFOOD,JUC,MXD FRUIT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03181~^~0300~^~Babyfood, cereal, barley, dry fortified~^~BABYFOOD,CRL,BARLEY,DRY FORT~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~03184~^~0300~^~Babyfood, cereal, whole wheat, with apples, dry fortified~^~BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT~^^^~Y~^^0^^^^^ -~03185~^~0300~^~Babyfood, cereal, mixed, dry fortified~^~BABYFOOD,CRL,MXD,DRY FORT~^^^~Y~^^0^^5.90^3.40^8.40^4.10 -~03186~^~0300~^~Babyfood, cereal, mixed, with bananas, dry~^~BABYFOOD,CRL,MXD,W/ BANANAS,DRY~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03187~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, strained~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03188~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.10^3.40^8.40^4.10 -~03189~^~0300~^~Babyfood, cereal, oatmeal, dry fortified~^~BABYFOOD,CRL,OATMEAL,DRY FORT~^^^~Y~^^0^^5.83^3.46^8.37^4.12 -~03190~^~0300~^~Babyfood, cereal, oatmeal, with bananas, dry~^~BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03191~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, strained~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03192~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.04^3.50^8.40^4.10 -~03193~^~0300~^~Babyfood, cereal, oatmeal, with honey, dry~^~BABYFOOD,CRL,OATMEAL,W/HONEY,DRY~^^^^^0^^5.83^3.50^8.40^4.10 -~03194~^~0300~^~Babyfood, cereal, rice, dry fortified~^~BABYFOOD,CRL,RICE,DRY FORT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~03195~^~0300~^~Babyfood, cereal, rice, with applesauce and bananas, strained~^~BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03197~^~0300~^~Babyfood, cereal, with egg yolks, strained~^~BABYFOOD,CRL,W/EGG YOLKS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03198~^~0300~^~Babyfood, cereal, with egg yolks, junior~^~BABYFOOD,CRL,W/EGG YOLKS,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03199~^~0300~^~Babyfood, cereal, with eggs, strained~^~BABYFOOD,CRL,W/EGGS,STR~^^^^^0^^6.03^4.20^8.80^3.90 -~03201~^~0300~^~Babyfood, cereal, egg yolks and bacon, junior~^~BABYFOOD,CRL,EGG YOLKS&BACON,JR~^^^^^0^^6.03^4.20^8.80^3.90 -~03205~^~0300~^~Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified~^~BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT~^^^~Y~^^0^^^^^ -~03206~^~0300~^~Babyfood, cookie, baby, fruit~^~BABYFOOD,COOKIE,BABY,FRUIT~^^^~Y~^^0^^^^^ -~03209~^~0300~^~Babyfood, crackers, vegetable~^~BABYFOOD,CRACKERS,VEG~^^^~Y~^^0^^^^^ -~03211~^~0300~^~Babyfood, cereal, high protein, with apple and orange, dry~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY~^^^^^0^^5.85^3.50^8.40^4.00 -~03212~^~0300~^~Babyfood, cereal, rice, with bananas, dry~^~BABYFOOD,CRL,RICE,W/ BANANAS,DRY~^^^~Y~^^0^^6.00^3.80^8.40^4.20 -~03213~^~0300~^~Babyfood, cookies~^~BABYFOOD,COOKIES~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03214~^~0300~^~Babyfood, cookies, arrowroot~^~BABYFOOD,COOKIES,ARROWROOT~^^^^^0^^5.75^4.00^8.40^4.10 -~03215~^~0300~^~Babyfood, pretzels~^~BABYFOOD,PRETZELS~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~03216~^~0300~^~Babyfood, GERBER, GRADUATES Lil Biscuits Vanilla Wheat~^~BABYFOOD,GERBER,GRADUATES LIL BISCUITS VANILLA WHEAT~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03217~^~0300~^~Zwieback~^~ZWIEBACK~^^^~Y~^^0^^5.85^4.00^8.40^4.10 -~03220~^~0300~^~Babyfood, dessert, dutch apple, strained~^~BABYFOOD,DSSRT,DUTCH APPL,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03221~^~0300~^~Babyfood, dessert, dutch apple, junior~^~BABYFOOD,DSSRT,DUTCH APPL,JR~^^^~Y~^^0^^^^^ -~03222~^~0300~^~Babyfood, cherry cobbler, junior~^~BABYFOOD,CHERRY COBBLER,JR~^^^~Y~^^0^^^^^ -~03224~^~0300~^~Babyfood, dessert, cherry vanilla pudding, strained~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03225~^~0300~^~Babyfood, dessert, cherry vanilla pudding, junior~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR~^^^~Y~^^0^^6.25^4.30^8.90^3.60 -~03226~^~0300~^~Babyfood, dessert, fruit pudding, orange, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR~^^^^^0^^6.33^4.30^8.90^3.80 -~03227~^~0300~^~Babyfood, dessert, peach cobbler, strained~^~BABYFOOD,DSSRT,PEACH COBBLER,STR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03228~^~0300~^~Babyfood, dessert, peach cobbler, junior~^~BABYFOOD,DSSRT,PEACH COBBLER,JR~^^^~Y~^^0^^6.20^3.40^8.40^3.60 -~03229~^~0300~^~Babyfood, dessert, peach melba, strained~^~BABYFOOD,DSSRT,PEACH MELBA,STR~^^^^^0^^6.25^3.40^8.40^3.60 -~03230~^~0300~^~Babyfood, dessert, peach melba, junior~^~BABYFOOD,DSSRT,PEACH MELBA,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03233~^~0300~^~Babyfood, dessert, fruit pudding, pineapple, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR~^^^~Y~^^0^^6.20^4.30^8.90^3.60 -~03235~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, strained~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03236~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, junior~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.40^8.40^3.60 -~03238~^~0300~^~Babyfood, dessert, tropical fruit, junior~^~BABYFOOD,DSSRT,TROPICAL FRUIT,JR~^^^^^0^^6.25^3.40^8.40^3.60 -~03245~^~0300~^~Babyfood, dessert, custard pudding, vanilla, strained~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR~^^^~Y~^^0^^6.33^4.30^8.90^3.80 -~03246~^~0300~^~Babyfood, dessert, custard pudding, vanilla, junior~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR~^^^~Y~^^0^^^^^ -~03265~^~0300~^~Babyfood, juice, apple and grape~^~BABYFOOD,JUC,APPL&GRAPE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~03267~^~0300~^~Babyfood, juice, fruit punch, with calcium~^~BABYFOOD,JUC,FRUIT PUNCH,W/CA~^^^~Y~^^0^^^^^ -~03269~^~0300~^~Babyfood, juice, apple, with calcium~^~BABYFOOD,JUC,APPL,W/CA~^^^~Y~^^0^^^^^ -~03274~^~0300~^~Babyfood, dinner, vegetables and chicken, junior~^~BABYFOOD,DINNER,VEG&CHICK,JR~^^^~Y~^^0^^^^^ -~03278~^~0300~^~Babyfood, dinner, mixed vegetable, strained~^~BABYFOOD,DINNER,MXD VEG,STR~^^^^^0^^6.07^3.00^8.40^3.80 -~03279~^~0300~^~Babyfood, dinner, mixed vegetable, junior~^~BABYFOOD,DINNER,MXD VEG,JR~^^^~Y~^^0^^6.07^3.00^8.40^3.80 -~03280~^~0300~^~Babyfood, fruit, bananas with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~03282~^~0300~^~Babyfood, vegetables, mix vegetables junior~^~BABYFOOD,VEG,MIX VEG JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03283~^~0300~^~Babyfood, vegetables, garden vegetable, strained~^~BABYFOOD,VEG,GARDEN VEG,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03286~^~0300~^~Babyfood, vegetables, mix vegetables strained~^~BABYFOOD,VEG,MIX VEG STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~03287~^~0300~^~Babyfood, dinner, beef noodle, junior~^~BABYFOOD,DINNER,BF NOODLE,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10 -~03289~^~0300~^~Babyfood, apples with ham, strained~^~BABYFOOD,APPLS W/HAM,STR~^^^~Y~^^0^^^^^ -~03290~^~0300~^~Babyfood, carrots and beef, strained~^~BABYFOOD,CARROTS&BF,STR~^^^~Y~^^0^^^^^ -~03293~^~0300~^~Babyfood, plums, bananas and rice, strained~^~BABYFOOD,PLUMS,BANANAS&RICE,STR~^^^~Y~^^0^^^^^ -~03296~^~0300~^~Babyfood, dinner, turkey, rice, and vegetables, toddler~^~BABYFOOD,TURKEY,RICE&VEG,TODD~^^^~Y~^^0^^^^^ -~03297~^~0300~^~Babyfood, dinner, apples and chicken, strained~^~BABYFOOD,DINNER,APPLS&CHICK,STR~^^^~Y~^^0^^^^^ -~03298~^~0300~^~Babyfood, dinner, broccoli and chicken, junior~^~BABYFOOD,DINNER,BROCCOLI & CHICK,JR~^^^~Y~^^0^^^^^ -~03301~^~0300~^~Babyfood, beverage, GERBER, GRADUATES, FRUIT SPLASHERS~^~BABYFOOD,BEV,GERBER,GRADUATES,FRUIT SPLASHERS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03302~^~0300~^~Babyfood, snack, GERBER, GRADUATES, YOGURT MELTS~^~BABYFOOD,SNACK,GERBER,GRADUATES,YOGURT MELTS~^^~GERBER~^~Y~^^0^^6.25^^^ -~03303~^~0300~^~Babyfood, dinner, sweet potatoes and chicken, strained~^~BABYFOOD,DINNER,SWT POTATOES&CHICK,STR~^^^~Y~^^0^^^^^ -~03376~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil 24, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAM 24,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03381~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Enspire Powder, with ARA and DHA, not reconstituted~^~INF FORM,ME JOHN,ENFA ENSPI PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03382~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature High Protein 24 Calories, ready to feed, with ARA and DHA~^~INF FOR,ME JOH,ENFAMIL PRE HI PRO 24 CAL,RE TO FE,W/ AR & DH~^^~MEAD JOHNSON~^^^0^^^^^ -~03384~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature 30 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENF PREMA 30 CAL,REA TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03385~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, powder, with ARA and DHA, not reconstituted~^~INF FOR,M JOH,ENFA FOR SUPPL,PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03386~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline Powder, with ARA and DHA, not reconstituted~^~INF FORMULA,ME JOH,ENFA REGUPDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^ -~03387~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFAM REGU,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03388~^~0300~^~Infant formula, MEAD JOHNSON, Gentlease, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,GENTLEASE,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03389~^~0300~^~Toddler formula, MEAD JOHNSON, Nutramigen Toddler with LGG Powder, with ARA and DHA, not reconstituted~^~TODD FORM,M JOHN,NUTR TODD W/ LGG PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03390~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 20 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEJOHN,PREGESTIM 20 CAL,RE TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03391~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 24 Calories, ready to feed, with ARA and DHA~^~INF FORMUMEAD JOH,PREGESTI 24 CAL,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03392~^~0300~^~Toddler drink, MEAD JOHNSON, PurAmino Toddler Powder, with ARA and DHA, not reconstituted~^~TODDLER DRK,MEAD JOH,PURA TODD PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^ -~03393~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFA FO SUPPLEME,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03681~^~0300~^~Babyfood, cereal, barley, prepared with whole milk~^~BABYFOOD,CRL,BARLEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03682~^~0300~^~Babyfood, cereal, high protein, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03685~^~0300~^~Babyfood, cereal, mixed, prepared with whole milk~^~BABYFOOD,CRL,MXD,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03686~^~0300~^~Babyfood, cereal, mixed, with bananas, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03689~^~0300~^~Babyfood, cereal, oatmeal, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03690~^~0300~^~Babyfood, cereal, oatmeal, with bananas, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03693~^~0300~^~Babyfood, cereal, oatmeal, with honey, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03694~^~0300~^~Babyfood, cereal, rice, prepared with whole milk~^~BABYFOOD,CRL,RICE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03696~^~0300~^~Babyfood, cereal, rice, with honey, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03704~^~0300~^~Babyfood, cereal, mixed, with honey, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03711~^~0300~^~Babyfood, cereal, high protein, with apple and orange, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03712~^~0300~^~Babyfood, cereal, rice, with bananas, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^ -~03801~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted~^~INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03802~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, powder~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03805~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03808~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFA,W/ IR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03812~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, liquid concentrate, with ARA and DHA, reconstituted~^~INF FORMU,M JOH,ENFA,INFA,W/ IRON,LIQ CO,W/ ARA & DHA,RECON~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03815~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA~^~INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03818~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA~^~INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03821~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, with ARA and DHA, not reconstituted~^~INF FORMU,ME JOHN,PREGESTI,W/ IRON,PDR,W/ ARA & DHA,N RE~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03822~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, with ARA and DHA, prepared from powder~^~INF FORMU,MEAD JOH,PREGES,W/ IRON,W/ ARA & DHA,PREP FR PD~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03823~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF~^^^~Y~^^0^^^^^ -~03825~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA~^~INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03832~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFANT,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03837~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03838~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN WITH LGG, with iron, powder, not reconstituted, with ARA and DHA~^~IN FOR,ME JOH,ENF,NUTRA W/ LGG,W/ IR,PDR,NOT R,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03841~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03842~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03843~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted~^~INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03844~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate not reconstituted, with ARA and DHA~^~INF FOR,ME JOH,ENFA,NUTR,W/ IRON,LIQ CO NOT REC,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03845~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed, with ARA and DHA~^~INF FORMU,ME JOHNS,ENFA,NUTRAMI,W/ IRON,RTF,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03846~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03849~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE, with iron, powder, with ARA and DHA~^~INF FORMU,MEA JOHNS,ENFAMIL,ENFACA,W/ IRON,PDR,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03851~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted~^~INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03852~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHN,ENFA,PROSO,W/ IRON,PDR,NOT RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03853~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03854~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, liquid concentrate, reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHNSOFAMIL,PROS,LIQ CONC,RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03857~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNS,PROSO,W/ IR,RE TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03859~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03860~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed~^~CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03861~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA~^~INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03864~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA~^~INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^ -~03867~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder~^~INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03870~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber~^~CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03928~^~0300~^~Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder~^~INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03929~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted~^~INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^5.71^^^ -~03930~^~0300~^~Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder~^~INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR~^^~MEAD JOHNSON~^^^0^^^^^ -~03934~^~0300~^~Babyfood, corn and sweet potatoes, strained~^~BABYFOOD,CORN & SWT POTATOES,STR~^^^~Y~^^0^^^^^ -~03935~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA~^~INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03936~^~0300~^~Infant formula, PBM PRODUCTS, store brand, ready-to-feed~^~INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03937~^~0300~^~Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted~^~INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^ -~03938~^~0300~^~Infant formula, PBM PRODUCTS, store brand, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR~^^~PBM~^~Y~^^0^^^^^ -~03939~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF~^^~PBM~^~Y~^^0^^^^^ -~03940~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted~^~INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON~^^~PBM~^~Y~^^0^^^^^ -~03941~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR~^^~PBM~^~Y~^^0^^^^^ -~03942~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03943~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03944~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA~^~INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03945~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA~^~INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03946~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03947~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA~^~INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03948~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA~^~INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03949~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03950~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted~^~INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03951~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted~^~INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03952~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate~^~INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03953~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03954~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted~^~INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^ -~03955~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~03956~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified~^~BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT~^^^~Y~^^0^^^^^ -~03957~^~0300~^~Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA~^~INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03959~^~0300~^~Babyfood, mashed cheddar potatoes and broccoli, toddlers~^~BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER~^^^~Y~^^0^^^^^ -~03960~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03961~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate~^~INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC~^^~Nestle USA, Inc.~^^^0^^^^^ -~03963~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE, with iron, prepared from powder~^~INF FORM,MEAD JOHNSON,ENFA GENTL,W/ IRON,PREP FROM PDR~^^~MEAD JOHNSON~^~Y~^^0^^1.36^^^ -~03964~^~0300~^~Babyfood, fortified cereal bar, fruit filling~^~BABYFOOD,FORT CRL BAR,FRUIT FILLING~^^^~Y~^^0^^^^^ -~03965~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified~^~BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT~^^^~Y~^^0^^^^^ -~03966~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~03967~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW, Toddler Transitions, with ARA and DHA, powder~^~TODD FOR,MEJOHN,ENFAGR,TODD TRANSITI,W/ ARA & DHA,PDR~^^^~Y~^^0^^6.25^^^ -~03968~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed~^~TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF~^^^~Y~^^0^^^^^ -~03980~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, with ARA and DHA powder not reconstituted~^~INF FORM,ME JOHN,ENF,GEN,W/ ARA & DHA PDR NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^ -~03982~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed~^~INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF~^^^~Y~^^0^^6.25^^^ -~03983~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03984~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 20 calories, ready-to-feed~^~INF FORMULA,ME JOHNSON,ENFAMIL,PREMATU,W/ IR,20 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03985~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 24 calories, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,W/ IR,24 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03986~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with DHA and ARA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ DHA & ARA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~03987~^~0300~^~Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03988~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed~^~INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03989~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03990~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF~^^~GERBER~^~Y~^^0^^6.25^^^ -~03991~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03992~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA~^~INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03993~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~03994~^~0300~^~Babyfood, fruit, banana and strawberry, junior~^~BABYFD,FRU,BAN AND STRAW, JU~^^^~Y~^^0^^^^^ -~03995~^~0300~^~Babyfood, banana with mixed berries, strained~^~BABYFOO,BAN WI MIX BERR,ST~^^^~Y~^^0^^6.25^^^ -~03996~^~0300~^~Babyfood, Multigrain whole grain cereal, dry fortified~^~Babyfood, Multigrain whole grain cereal, dry fortified~^^^~Y~^^0^^^^^ -~03997~^~0300~^~Babyfood, Baby MUM MUM Rice Biscuits~^~BABYFOOD,BABY MUM MUM RICE BISCUITS~^^^~Y~^^0^^^^^ -~03998~^~0300~^~Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack~^~BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK~^^~GERBER~^~Y~^^0^^6.25^^^ -~03999~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA~^~INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~04001~^~0400~^~Fat, beef tallow~^~FAT,BEEF TALLOW~^^^~Y~^^0^^0.00^^9.02^ -~04002~^~0400~^~Lard~^~LARD~^^^~Y~^^0^^0.00^^9.02^ -~04011~^~0400~^~Salad dressing, KRAFT Mayo Light Mayonnaise~^~SALAD DRSNG,KRAFT MAYO LT MAYO~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04013~^~0400~^~Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing~^~SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~04014~^~0400~^~Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing~^~SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG~^^~Kraft Foods, Inc.~^^^0^^^^^ -~04015~^~0400~^~Salad dressing, russian dressing~^~SALAD DRSNG,RUSSIAN DRSNG~^^^~Y~^^0^^6.25^3.40^8.84^3.80 -~04016~^~0400~^~Salad dressing, sesame seed dressing, regular~^~SALAD DRSNG,SESAME SD DRSNG,REG~^^^~Y~^^0^^6.25^4.03^8.84^3.80 -~04017~^~0400~^~Salad dressing, thousand island, commercial, regular~^~SALAD DRSNG,1000 ISLAND,COMM,REG~^^^~Y~^^0^^^^^ -~04018~^~0400~^~Salad dressing, mayonnaise type, regular, with salt~^~SALAD DRSNG,MAYO TYPE,REG,W/SALT~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04020~^~0400~^~Salad dressing, french dressing, reduced fat~^~SALAD DRSNG,FRENCH DRSNG,RED FAT~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04021~^~0400~^~Salad dressing, italian dressing, commercial, reduced fat~^~SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT~^^^~Y~^^0^^^^^ -~04022~^~0400~^~Salad dressing, russian dressing, low calorie~^~SALAD DRSNG,RUSSIAN DRSNG,LO CAL~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04023~^~0400~^~Salad dressing, thousand island dressing, reduced fat~^~SALAD DRSNG,1000 ISLAND DRSNG,RED FAT~^^^~Y~^^0^^6.25^3.90^8.84^3.80 -~04025~^~0400~^~Salad dressing, mayonnaise, regular~^~SALAD DRSNG,MAYO,REG~^^^~Y~^^0^^^^^ -~04026~^~0400~^~Salad dressing, mayonnaise, soybean and safflower oil, with salt~^~SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04027~^~0400~^~Salad dressing, mayonnaise, imitation, soybean~^~SALAD DRSNG,MAYO,IMITN,SOYBN~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04028~^~0400~^~Salad dressing, mayonnaise, imitation, milk cream~^~SALAD DRSNG,MAYO,IMITN,MILK CRM~^^^^^0^^6.25^4.36^8.84^3.80 -~04029~^~0400~^~Salad dressing, mayonnaise, imitation, soybean without cholesterol~^~SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04030~^~0400~^~Sandwich spread, with chopped pickle, regular, unspecified oils~^~SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS~^^^~Y~^^0^^6.25^3.92^8.84^3.80 -~04031~^~0400~^~Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)~^~SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED~^^^~Y~^^0^^0.00^^8.84^ -~04034~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated)~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)~^^^~Y~^^0^^0.00^^8.84^ -~04037~^~0400~^~Oil, rice bran~^~OIL,RICE BRAN~^^^^^0^^0.00^^8.84^ -~04038~^~0400~^~Oil, wheat germ~^~OIL,WHEAT GERM~^^^~Y~^^0^^0.00^^8.84^ -~04042~^~0400~^~Oil, peanut, salad or cooking~^~OIL,PNUT,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04044~^~0400~^~Oil, soybean, salad or cooking~^~OIL,SOYBN,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04047~^~0400~^~Oil, coconut~^~OIL,COCNT~^^^~Y~^^0^^^^^ -~04053~^~0400~^~Oil, olive, salad or cooking~^~OIL,OLIVE,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04055~^~0400~^~Oil, palm~^~OIL,PALM~^^^^^0^^0.00^^8.84^ -~04058~^~0400~^~Oil, sesame, salad or cooking~^~OIL,SESAME,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04060~^~0400~^~Oil, sunflower, linoleic (less than 60%)~^~OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)~^^^^^0^^0.00^^8.84^ -~04073~^~0400~^~Margarine, regular, hard, soybean (hydrogenated)~^~MARGARINE,REG,HARD,SOYBN (HYDR)~^^^^^0^^6.38^4.27^8.84^3.87 -~04114~^~0400~^~Salad dressing, italian dressing, commercial, regular~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04120~^~0400~^~Salad dressing, french dressing, commercial, regular~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG~^^^~Y~^^0^^6.25^2.44^8.84^3.80 -~04128~^~0400~^~Margarine,spread, 35-39% fat, tub~^~MARGARINE,SPRD,35-39% FAT,TUB~^^^~Y~^^0^^^^^ -~04133~^~0400~^~Salad dressing, french, home recipe~^~SALAD DRSNG,FRENCH,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04135~^~0400~^~Salad dressing, home recipe, vinegar and oil~^~SALAD DRSNG,HOME RECIPE,VINEGAR&OIL~^^^~Y~^^0^^6.25^4.36^8.84^3.80 -~04141~^~0400~^~Salad dressing, french dressing, commercial, regular, without salt~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04142~^~0400~^~Salad dressing, french dressing, reduced fat, without salt~^~SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04143~^~0400~^~Salad dressing, italian dressing, commercial, regular, without salt~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04144~^~0400~^~Salad dressing, italian dressing, reduced fat, without salt~^~SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04145~^~0400~^~Salad dressing, mayonnaise, soybean oil, without salt~^~SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT~^^^^^0^^6.25^4.36^8.84^3.80 -~04146~^~0400~^~Salad dressing, french, cottonseed, oil, home recipe~^~SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80 -~04367~^~0400~^~Salad dressing, french dressing, fat-free~^~SALAD DRSNG,FRENCH DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04501~^~0400~^~Oil, cocoa butter~^~OIL,COCOA BUTTER~^^^^^0^^0.00^^8.84^ -~04502~^~0400~^~Oil, cottonseed, salad or cooking~^~OIL,CTTNSD,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^ -~04506~^~0400~^~Oil, sunflower, linoleic, (approx. 65%)~^~OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)~^^^~Y~^^0^^0.00^^8.84^ -~04510~^~0400~^~Oil, safflower, salad or cooking, linoleic, (over 70%)~^~OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)~^^^^^0^^0.00^^8.84^ -~04511~^~0400~^~Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)~^~OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC~^^^~Y~^^0^^0.00^^8.84^ -~04513~^~0400~^~Vegetable oil, palm kernel~^~VEGETABLE OIL,PALM KERNEL~^^^~Y~^^0^^0.00^^8.62^ -~04514~^~0400~^~Oil, poppyseed~^~OIL,POPPYSEED~^^^^^0^^0.00^^8.84^ -~04515~^~0400~^~Oil, tomatoseed~^~OIL,TOMATOSEED~^^^^^0^^0.00^^8.84^ -~04516~^~0400~^~Oil, teaseed~^~OIL,TEASEED~^^^^^0^^0.00^^8.84^ -~04517~^~0400~^~Oil, grapeseed~^~OIL,GRAPESEED~^^^^^0^^0.00^^8.84^ -~04518~^~0400~^~Oil, corn, industrial and retail, all purpose salad or cooking~^~OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING~^^^~Y~^^0^^^^^ -~04528~^~0400~^~Oil, walnut~^~OIL,WALNUT~^^^~Y~^^0^^0.00^^8.84^ -~04529~^~0400~^~Oil, almond~^~OIL,ALMOND~^^^~Y~^^0^^0.00^^8.84^ -~04530~^~0400~^~Oil, apricot kernel~^~OIL,APRICOT KERNEL~^^^^^0^^0.00^^8.84^ -~04531~^~0400~^~Oil, soybean lecithin~^~OIL,SOYBN LECITHIN~^^^^^0^^0.00^^7.63^ -~04532~^~0400~^~Oil, hazelnut~^~OIL,HAZELNUT~^^^^^0^^0.00^^8.84^ -~04534~^~0400~^~Oil, babassu~^~OIL,BABASSU~^^^^^0^^0.00^^8.82^ -~04536~^~0400~^~Oil, sheanut~^~OIL,SHEANUT~^^^^^0^^0.00^^8.62^ -~04539~^~0400~^~Salad dressing, blue or roquefort cheese dressing, commercial, regular~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~04541~^~0400~^~Oil, cupu assu~^~OIL,CUPU ASSU~^^^^^0^^0.00^^8.62^ -~04542~^~0400~^~Fat, chicken~^~FAT,CHICKEN~^^^~Y~^^0^^0.00^^9.02^ -~04543~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04544~^~0400~^~Shortening, household, lard and vegetable oil~^~SHORTENING,HOUSEHOLD,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04545~^~0400~^~Oil, sunflower, linoleic, (partially hydrogenated)~^~OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)~^^^^^0^^0.00^^8.84^ -~04546~^~0400~^~Shortening bread, soybean (hydrogenated) and cottonseed~^~SHORTENING BREAD,SOYBN (HYDR)&CTTNSD~^^^^^0^^0.00^^8.84^ -~04548~^~0400~^~Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)~^~SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)~^^^^^0^^0.00^^8.82^ -~04549~^~0400~^~Shortening industrial, lard and vegetable oil~^~SHORTENING INDUSTRIAL,LARD&VEG OIL~^^^^^0^^0.00^^9.02^ -~04550~^~0400~^~Shortening frying (heavy duty), beef tallow and cottonseed~^~SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD~^^^^^0^^0.00^^9.02^ -~04551~^~0400~^~Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)~^~SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)~^^^^^0^^0.00^^8.84^ -~04554~^~0400~^~Shortening industrial, soybean (hydrogenated) and cottonseed~^~SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD~^^^~Y~^^0^^0.00^^8.84^ -~04556~^~0400~^~Shortening frying (heavy duty), palm (hydrogenated)~^~SHORTENING FRYING (HVY DUTY),PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04559~^~0400~^~Shortening household soybean (hydrogenated) and palm~^~SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM~^^^^^0^^0.00^^8.84^ -~04560~^~0400~^~Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)~^~SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%~^^^^^0^^0.00^^8.84^ -~04570~^~0400~^~Shortening, confectionery, fractionated palm~^~SHORTENING,CONFECTIONERY,FRACTIONATED PALM~^^^^^0^^0.00^^8.62^ -~04572~^~0400~^~Oil, nutmeg butter~^~OIL,NUTMEG BUTTER~^^^^^0^^0.00^^8.62^ -~04573~^~0400~^~Oil, ucuhuba butter~^~OIL,UCUHUBA BUTTER~^^^^^0^^0.00^^8.84^ -~04575~^~0400~^~Fat, turkey~^~FAT,TURKEY~^^^~Y~^^0^^0.00^^8.84^ -~04576~^~0400~^~Fat, goose~^~FAT,GOOSE~^^^^^0^^0.00^^8.84^ -~04581~^~0400~^~Oil, avocado~^~OIL,AVOCADO~^^^^^0^^0.00^^8.84^ -~04582~^~0400~^~Oil, canola~^~OIL,CANOLA~^~low erucic acid rapeseed oil~^^~Y~^^0^^0.00^^8.84^ -~04583~^~0400~^~Oil, mustard~^~OIL,MUSTARD~^^^^^0^^0.00^^8.84^ -~04584~^~0400~^~Oil, sunflower, high oleic (70% and over)~^~OIL,SUNFLOWER,HI OLEIC (70% & OVER)~^^^^^0^^0.00^^8.84^ -~04585~^~0400~^~Margarine-like, margarine-butter blend, soybean oil and butter~^~MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER~^^^~Y~^^0^^6.25^^^ -~04586~^~0400~^~Shortening, special purpose for cakes and frostings, soybean (hydrogenated)~^~SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)~^^^^^0^^0.00^^8.84^ -~04587~^~0400~^~Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed~^~SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD~^^^^^0^^0.00^^8.84^ -~04588~^~0400~^~Oil, oat~^~OIL,OAT~^^^^^0^^0.00^^8.84^ -~04589~^~0400~^~Fish oil, cod liver~^~FISH OIL,COD LIVER~^^^^^0^^0.00^^9.02^ -~04590~^~0400~^~Fish oil, herring~^~FISH OIL,HERRING~^^^^^0^^0.00^^9.02^ -~04591~^~0400~^~Fish oil, menhaden~^~FISH OIL,MENHADEN~^^^^^0^^0.00^^9.02^ -~04592~^~0400~^~Fish oil, menhaden, fully hydrogenated~^~FISH OIL,MENHADEN,FULLY HYDR~^^^^^0^^0.00^^9.02^ -~04593~^~0400~^~Fish oil, salmon~^~FISH OIL,SALMON~^^^^^0^^0.00^^9.02^ -~04594~^~0400~^~Fish oil, sardine~^~FISH OIL,SARDINE~^^^^^0^^0.00^^9.02^ -~04595~^~0400~^~Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)~^~SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)~^^^^^0^^0.00^^8.84^ -~04600~^~0400~^~Margarine-like, vegetable oil-butter spread, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04601~^~0400~^~Butter, light, stick, with salt~^~BUTTER,LT,STK,W/SALT~^^^~Y~^^0^^^^^ -~04602~^~0400~^~Butter, light, stick, without salt~^~BUTTER,LT,STK,WO/SALT~^^^~Y~^^0^^^^^ -~04609~^~0400~^~Animal fat, bacon grease~^~ANIMAL FAT,BACON GREASE~^^^~Y~^^0^^^^^ -~04610~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04611~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT~^^^~Y~^^0^^6.25^4.27^8.84^3.87 -~04612~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04613~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04614~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04615~^~0400~^~Shortening, vegetable, household, composite~^~SHORTENING,VEG,HOUSEHOLD,COMP~^^^~Y~^^0^^6.25^^8.84^ -~04617~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT~^^^~Y~^^0^^^^^ -~04618~^~0400~^~Margarine, regular, 80% fat, composite, tub, without salt~^~MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT~^^^~Y~^^0^^^^^ -~04620~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27 -~04624~^~0400~^~Margarine-like, vegetable oil spread, fat free, liquid, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~04626~^~0400~^~Margarine-like spread with yogurt, 70% fat, stick, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT~^^^~Y~^^0^^^^^ -~04627~^~0400~^~Margarine-like spread with yogurt, approximately 40% fat, tub, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~04628~^~0400~^~Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils~^~MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS~^^^^^0^^^4.27^8.84^3.87 -~04629~^~0400~^~Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick~^~MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK~^^^^^0^^6.38^4.27^8.84^3.87 -~04630~^~0400~^~Margarine Spread, 40-49% fat, tub~^~Margarine 40-49% fat~^^^^^0^^^^^ -~04631~^~0400~^~Margarine-like, vegetable oil spread, fat-free, tub~^~MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB~^^^~Y~^^0^^^4.27^8.84^3.87 -~04633~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT~^^^~Y~^^0^^0.00^^9.02^ -~04634~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, without salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT~^^^~Y~^^0^^^^^ -~04635~^~0400~^~Salad dressing, thousand island dressing, fat-free~^~SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04636~^~0400~^~Salad dressing, italian dressing, fat-free~^~SALAD DRSNG,ITALIAN DRSNG,FAT-FREE~^^^~Y~^^0^^^^^ -~04638~^~0400~^~Salad dressing, ranch dressing, fat-free~^~SALAD DRSNG,RANCH DRSNG,FAT-FREE~^^^^^0^^^4.36^8.84^3.80 -~04639~^~0400~^~Salad dressing, ranch dressing, regular~^~SALAD DRSNG,RANCH DRSNG,REG~^^^~Y~^^0^^^^^ -~04640~^~0400~^~Salad dressing, ranch dressing, reduced fat~^~SALAD DRSNG,RANCH DRSNG,RED FAT~^^^^^0^^^4.36^8.84^3.80 -~04641~^~0400~^~Salad dressing, mayonnaise, light~^~SALAD DRSNG,MAYO,LT~^~lite mayonnaise~^^~Y~^^0^^^^^ -~04642~^~0400~^~Oil, industrial, mid-oleic, sunflower~^~OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER~^~NuSun~^^^^0^^^^8.84^ -~04643~^~0400~^~Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT~^^^^^0^^^^8.84^ -~04644~^~0400~^~Oil, industrial, canola for salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING~^^^^^0^^^^^ -~04645~^~0400~^~Oil, industrial, canola (partially hydrogenated) oil for deep fat frying~^~OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING~^^^^^0^^^^^ -~04646~^~0400~^~Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts~^~OIL,INDUSTRIAL,COCNT~^^^^^0^^^^8.84^ -~04648~^~0400~^~Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG~^^^^^0^^^^8.84^ -~04649~^~0400~^~Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening~^~SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY~^^^^^0^^^^8.84^ -~04650~^~0400~^~Oil, industrial, soy, refined, for woks and light frying~^~OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING~^^^^^0^^^^8.84^ -~04651~^~0400~^~Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR~^^^~Y~^^0^^^^8.84^ -~04652~^~0400~^~Oil, industrial, soy ( partially hydrogenated), all purpose~^~OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP~^^^~Y~^^0^^6.25^^8.84^ -~04653~^~0400~^~Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry~^~OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY~^^^^^0^^6.25^^8.84^ -~04654~^~0400~^~Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening~^~OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING~^^^~Y~^^0^^6.25^^8.84^ -~04655~^~0400~^~Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries~^~MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY~^^^^^0^^6.25^^8.84^ -~04656~^~0400~^~Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter~^~OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04657~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04658~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^ -~04659~^~0400~^~Oil, industrial, coconut, confection fat, typical basis for ice cream coatings~^~OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS~^^^~Y~^^0^^6.25^^8.84^ -~04660~^~0400~^~Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS~^^^^^0^^6.25^^8.84^ -~04661~^~0400~^~Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners~^~OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS~^^^^^0^^6.25^^8.84^ -~04662~^~0400~^~Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)~^~OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)~^^^^^0^^6.25^^8.84^ -~04663~^~0400~^~Oil, industrial, palm kernel (hydrogenated), filling fat~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT~^^^^^0^^6.25^^8.84^ -~04664~^~0400~^~Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings~^~OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS~^^^^^0^^6.25^^8.84^ -~04665~^~0400~^~Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries~^~MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )~^^^^^0^^^^^ -~04666~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) and corn for frying~^~SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING~^^^~Y~^^0^^0.00^^8.84^ -~04667~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) for baking and confections~^~SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS~^^^^^0^^0.00^^8.84^ -~04668~^~0400~^~Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy~^~MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY~^^^^^0^^6.38^^^ -~04669~^~0400~^~Oil, vegetable, soybean, refined~^~OIL,VEG,SOYBN,REFINED~^^^^^0^^0.00^^8.84^ -~04673~^~0400~^~Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil~^~MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD~^^~GFA Brands~^^^0^^^^^ -~04674~^~0400~^~Margarine-like spread, SMART BALANCE Light Buttery Spread~^~MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04675~^~0400~^~Margarine-like spread, SMART BEAT Super Light without saturated fat~^~MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT~^^~GFA Brands~^^^0^^6.38^^^ -~04676~^~0400~^~Margarine-like spread, SMART BEAT Smart Squeeze~^~MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE~^^~GFA Brands~^^^0^^6.38^^^ -~04677~^~0400~^~Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)~^~MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD~^^~GFA Brands~^^^0^^6.38^^^ -~04678~^~0400~^~Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)~^~OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)~^~trans free high stability low saturated fat non-hydrogenated canola oil~^~Dow AgroSciences, LLC~^^^0^^^^8.84^ -~04679~^~0400~^~Oil, PAM cooking spray, original~^~OIL,PAM COOKING SPRAY,ORIGINAL~^^~ConAgra, Inc.~^~Y~^^0^^6.25^^^ -~04683~^~0400~^~Margarine, margarine-like vegetable oil spread, 67-70% fat, tub~^~MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB~^^^^^0^^^4.27^8.84^3.87 -~04684~^~0400~^~Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)~^~MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD~^^~richardson~^^^0^^^^^ -~04685~^~0400~^~Oil, cooking and salad, ENOVA, 80% diglycerides~^~OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES~^^~ADM KAO LLC~^^^0^^^^8.84^ -~04686~^~0400~^~Salad dressing, honey mustard dressing, reduced calorie~^~SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL~^^^~Y~^^0^^6.25^^^ -~04687~^~0400~^~Margarine-like spread, BENECOL Light Spread~^~MARGARINE-LIKE SPRD,BENECOL LT SPRD~^^~McNeil Nutritionals, LLC~^^^0^^^^^ -~04688~^~0400~^~Salad dressing, spray-style dressing, assorted flavors~^~SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS~^^^^^0^^^^^ -~04689~^~0400~^~Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light~^~SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT~^^~Smart Balance Foods~^^^0^^^^^ -~04690~^~0400~^~Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D~^~VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^4.27^8.84^3.80 -~04691~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04692~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04693~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.80 -~04694~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.84 -~04695~^~0400~^~Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D~^~VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^^^ -~04696~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80 -~04697~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D~^^^~Y~^^0^^6.25^^^ -~04698~^~0400~^~Oil, industrial, canola, high oleic~^~OIL,INDUSTRIAL,CANOLA,HI OLEIC~^^^^^0^^6.25^^^ -~04699~^~0400~^~Oil, industrial, soy, low linolenic~^~OIL,INDUSTRIAL,SOY,LO LINOLENIC~^^^^^0^^^^^ -~04700~^~0400~^~Oil, industrial, soy, ultra low linolenic~^~OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC~^^^^^0^^^^8.84^ -~04701~^~0400~^~Oil, industrial, soy, fully hydrogenated~^~OIL,INDUSTRIAL,SOY,FULLY HYDR~^^^^^0^^^^8.84^ -~04702~^~0400~^~Oil, industrial, cottonseed, fully hydrogenated~^~OIL,INDUSTRIAL,CTTNSD,FULLY HYDR~^^^^^0^^^^8.84^ -~04703~^~0400~^~Salad dressing, honey mustard, regular~^~SALAD DRSNG,HONEY MUSTARD,REG~^^^~Y~^^0^^^^^ -~04704~^~0400~^~Salad dressing, poppyseed, creamy~^~SALAD DRSNG,POPPYSEED,CREAMY~^^^~Y~^^0^^^^^ -~04705~^~0400~^~Salad dressing, caesar, fat-free~^~SALAD DRSNG,CAESAR,FAT-FREE~^^^~Y~^^0^^^^^ -~04706~^~0400~^~Dressing, honey mustard, fat-free~^~DRESSING,HONEY MUSTARD,FAT-FREE~^^^~Y~^^0^^^^^ -~04707~^~0400~^~Oil, flaxseed, contains added sliced flaxseed~^~OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED~^^^^^0^^5.30^^8.84^ -~04708~^~0400~^~Mayonnaise, reduced fat, with olive oil~^~MAYONNAISE,RED FAT,W/ OLIVE OIL~^^^~Y~^^0^^6.25^^^ -~04709~^~0400~^~Salad dressing, mayonnaise-type, light~^~SALAD DRSNG,MAYONNAISE-TYPE,LT~^^^~Y~^^0^^6.25^^^ -~05000~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat only~^~CHICK,BROILER,ROTISSERIE,BBQ,BREAST,MEAT ONLY~^^^~Y~^~Bone and connective tissue 11%, skin and separable fat 11%~^22^^^^^ -~05001~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^31^~Gallus gallus~^6.25^4.27^9.02^3.87 -~05002~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter~^~CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05003~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05004~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~05005~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05006~^~0500~^~Chicken, broilers or fryers, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05007~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~05008~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~05009~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^33^^6.25^4.27^9.02^3.87 -~05010~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05011~^~0500~^~Chicken, broilers or fryers, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW~^^^~Y~^~32% bone, 12% skin, 8% separable fat~^52^^6.25^4.27^9.02^3.87 -~05012~^~0500~^~Chicken, broilers or fryers, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05013~^~0500~^~Chicken, broilers or fryers, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,RSTD~^^^~Y~^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05014~^~0500~^~Chicken, broilers or fryers, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,STWD~^^^~Y~^~34% bone, 14% skin~^48^^6.25^4.27^9.02^3.87 -~05015~^~0500~^~Chicken, broilers or fryers, skin only, raw~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05016~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER~^^^^^0^^6.25^4.27^9.02^3.87 -~05017~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR~^^^^^0^^6.25^4.27^9.02^3.87 -~05018~^~0500~^~Chicken, broilers or fryers, skin only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05019~^~0500~^~Chicken, broilers or fryers, skin only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD~^^^^^0^^6.25^4.27^9.02^3.87 -~05020~^~0500~^~Chicken, broilers or fryers, giblets, raw~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05021~^~0500~^~Chicken, broilers or fryers, giblets, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05022~^~0500~^~Chicken, broilers or fryers, giblets, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05023~^~0500~^~Chicken, gizzard, all classes, raw~^~CHICKEN,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05024~^~0500~^~Chicken, gizzard, all classes, cooked, simmered~^~CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD~^^^~Y~^~Membranes 10.7%~^11^^6.25^4.27^9.02^3.87 -~05025~^~0500~^~Chicken, heart, all classes, raw~^~CHICKEN,HEART,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05026~^~0500~^~Chicken, heart, all classes, cooked, simmered~^~CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05027~^~0500~^~Chicken, liver, all classes, raw~^~CHICKEN,LIVER,ALL CLASSES,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05028~^~0500~^~Chicken, liver, all classes, cooked, simmered~^~CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05029~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05030~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~05031~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05032~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05033~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05034~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~05035~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05036~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05037~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05038~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05039~^~0500~^~Chicken, broilers or fryers, light meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW~^^^^~28% bone, 13% skin, 4% separable fat~^45^^6.25^4.27^9.02^3.87 -~05040~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 13% skin~^41^^6.25^4.27^9.02^3.87 -~05041~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87 -~05042~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~29% bone, 15% skin~^44^^6.25^4.27^9.02^3.87 -~05043~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW~^^^^~35% bone, 11% skin, 10% separable fat~^56^^6.25^4.27^9.02^3.87 -~05044~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED~^^^^~30% bone, 12% skin~^42^^6.25^4.27^9.02^3.87 -~05045~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05046~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~38% bone, 14% skin~^52^^6.25^4.27^9.02^3.87 -~05047~^~0500~^~Chicken, broilers or fryers, separable fat, raw~^~CHICKEN,BROILERS OR FRYERS,FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05048~^~0500~^~Chicken, broilers or fryers, back, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW~^^^^~Bone~^44^^6.25^4.27^9.02^3.87 -~05049~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05050~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05051~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^47^^6.25^4.27^9.02^3.87 -~05052~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05053~^~0500~^~Chicken, broilers or fryers, back, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW~^^^^~44% bone, 10% skin, 17% seprable fat~^71^^6.25^4.27^9.02^3.87 -~05054~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED~^^^^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87 -~05055~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD~^^^^~47% bone, 13% skin~^60^^6.25^4.27^9.02^3.87 -~05056~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD~^^^^~48% bone, 16% skin~^64^^6.25^4.27^9.02^3.87 -~05057~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW~^^^~Y~^~Bone~^20^^6.25^4.27^9.02^3.87 -~05058~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^12^^6.25^4.27^9.02^3.87 -~05059~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05060~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05061~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^18^^6.25^4.27^9.02^3.87 -~05062~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw~^~CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05063~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED~^^^~Y~^~17% bone, 10% skin~^27^^6.25^4.27^9.02^3.87 -~05064~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~19% bone, 9% skin~^28^^6.25^4.27^9.02^3.87 -~05065~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD~^^^~Y~^~18% bone, 12% skin~^30^^6.25^4.27^9.02^3.87 -~05066~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 33%~^66^^6.25^4.27^9.02^3.87 -~05067~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~05068~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~05069~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 28%~^61^^6.25^4.27^9.02^3.87 -~05070~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~05071~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW~^^^~Y~^~bone and cartilage 33%, skin and separable fat 9%~^42^^6.25^4.27^9.02^3.87 -~05072~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED~^^^^~34% bone, 10% skin~^44^^6.25^4.27^9.02^3.87 -~05073~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST~^^^~Y~^~Bone and cartilage 33%, Skin and separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~05074~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87 -~05075~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~05076~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~05077~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05078~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone 29%~^29^^6.25^4.27^9.02^3.87 -~05079~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~05080~^~0500~^~Chicken, broilers or fryers, leg, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW~^^^~Y~^~27% bone, 11% skin, 5% separable fat~^43^^6.25^4.27^9.02^3.87 -~05081~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 12% skin~^40^^6.25^4.27^9.02^3.87 -~05082~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone 29%, skin 12%~^41^^6.25^4.27^9.02^3.87 -~05083~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD~^^^~Y~^~30% bone, 13% skin~^43^^6.25^4.27^9.02^3.87 -~05084~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW~^^^^~Bone~^36^^6.25^4.27^9.02^3.87 -~05085~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~05086~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05087~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87 -~05088~^~0500~^~Chicken, broilers or fryers, neck, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW~^^^^~36% bone, 39% skin and separable fat~^75^^6.25^4.27^9.02^3.87 -~05089~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED~^^^^~29% bone, 27% skin~^56^^6.25^4.27^9.02^3.87 -~05090~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD~^^^^~32% bone, 35% skin~^67^^6.25^4.27^9.02^3.87 -~05091~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05092~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~05093~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~05094~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^6.25^4.27^9.02^3.87 -~05095~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~05096~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW~^^^~Y~^~ Skin and separable fat 25%~^25^^6.25^4.27^9.02^3.87 -~05097~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED~^^^^~23% bone, 13% skin~^36^^6.25^4.27^9.02^3.87 -~05098~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, skin and separable fat 15%~^48^^6.25^4.27^9.02^3.87 -~05099~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD~^^^~Y~^~24% bone, 15% skin~^39^^6.25^4.27^9.02^3.87 -~05100~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05101~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^38^^6.25^4.27^9.02^3.87 -~05102~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^47^^6.25^4.27^9.02^3.87 -~05103~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 40%~^40^^6.25^4.27^9.02^3.87 -~05104~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87 -~05105~^~0500~^~Chicken, broilers or fryers, wing, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW~^^^~Y~^~46% bone, 21% skin, 1% separable fat~^68^^6.25^4.27^9.02^3.87 -~05106~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED~^^^^~47% bone, 19% skin~^66^^6.25^4.27^9.02^3.87 -~05107~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05108~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87 -~05109~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, raw~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05110~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05111~^~0500~^~Canada Goose, breast meat only, skinless, raw~^~CANADA GOOSE,BREAST MEAT ONLY,SKINLESS,RAW~^~Canadian geese~^^^^0^~Branta canadensis~^^^^ -~05112~^~0500~^~Chicken, roasting, meat and skin, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05113~^~0500~^~Chicken, roasting, meat only, raw~^~CHICKEN,ROASTING,MEAT ONLY,RAW~^^^^~28% bone, 14% skin, 7% separable fat~^49^^6.25^4.27^9.02^3.87 -~05114~^~0500~^~Chicken, roasting, meat only, cooked, roasted~^~CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD~^^^^~30% bone, 12% skin, 1% separable fat~^43^^6.25^4.27^9.02^3.87 -~05115~^~0500~^~Chicken, roasting, giblets, raw~^~CHICKEN,ROASTING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05116~^~0500~^~Chicken, roasting, giblets, cooked, simmered~^~CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05117~^~0500~^~Chicken, roasting, light meat, meat only, raw~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 13% skin, 4% separable fat~^43^^6.25^4.27^9.02^3.87 -~05118~^~0500~^~Chicken, roasting, light meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~24% bone, 16% skin~^40^^6.25^4.27^9.02^3.87 -~05119~^~0500~^~Chicken, roasting, dark meat, meat only, raw~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW~^^^^~30% bone, 14% skin, 9% separable fat~^53^^6.25^4.27^9.02^3.87 -~05120~^~0500~^~Chicken, roasting, dark meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD~^^^^~35% bone, 10% skin, 1% separable fat~^46^^6.25^4.27^9.02^3.87 -~05121~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, raw~^~CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW~^^^^~27% bone, 5% separable fat~^32^^6.25^4.27^9.02^3.87 -~05122~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed~^~CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD~^^^~Y~^~29% bone, 2% separable fat~^31^^6.25^4.27^9.02^3.87 -~05123~^~0500~^~Chicken, stewing, meat and skin, raw~^~CHICKEN,STEWING,MEAT&SKN,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~05124~^~0500~^~Chicken, stewing, meat and skin, cooked, stewed~^~CHICKEN,STEWING,MEAT&SKN,CKD,STWD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~05125~^~0500~^~Chicken, stewing, meat only, raw~^~CHICKEN,STEWING,MEAT ONLY,RAW~^^^^~Bone 30%, skin 12%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~05126~^~0500~^~Chicken, stewing, meat only, cooked, stewed~^~CHICKEN,STEWING,MEAT ONLY,CKD,STWD~^^^^~Bone, 32%, skin, 16%~^48^^6.25^4.27^9.02^3.87 -~05127~^~0500~^~Chicken, stewing, giblets, raw~^~CHICKEN,STEWING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05128~^~0500~^~Chicken, stewing, giblets, cooked, simmered~^~CHICKEN,STEWING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05129~^~0500~^~Chicken, stewing, light meat, meat only, raw~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 14% skin, 4% separable fat~^44^^6.25^4.27^9.02^3.87 -~05130~^~0500~^~Chicken, stewing, light meat, meat only, cooked, stewed~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD~^^^^~26% bone, 16% skin~^42^^6.25^4.27^9.02^3.87 -~05131~^~0500~^~Chicken, stewing, dark meat, meat only, raw~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW~^^^^~33% bone, 11% skin, 10% separable fat~^54^^6.25^4.27^9.02^3.87 -~05132~^~0500~^~Chicken, stewing, dark meat, meat only, cooked, stewed~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD~^^^^~36% bone, 15% skin~^51^^6.25^4.27^9.02^3.87 -~05133~^~0500~^~Chicken, capons, meat and skin and giblets and neck, raw~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~05134~^~0500~^~Chicken, capons, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05135~^~0500~^~Chicken, capons, meat and skin, raw~^~CHICKEN,CAPONS,MEAT&SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~05136~^~0500~^~Chicken, capons, meat and skin, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~05137~^~0500~^~Chicken, capons, giblets, raw~^~CHICKEN,CAPONS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05138~^~0500~^~Chicken, capons, giblets, cooked, simmered~^~CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05139~^~0500~^~Duck, domesticated, meat and skin, raw~^~DUCK,DOMESTICATED,MEAT&SKN,RAW~^^^~Y~^~Bone~^28^~Anas platyrhynchos~^6.25^4.27^9.02^3.87 -~05140~^~0500~^~Duck, domesticated, meat and skin, cooked, roasted~^~DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~05141~^~0500~^~Duck, domesticated, meat only, raw~^~DUCK,DOMESTICATED,MEAT ONLY,RAW~^^^~Y~^~28% bone, 38% skin and separable fat~^66^^6.25^4.27^9.02^3.87 -~05142~^~0500~^~Duck, domesticated, meat only, cooked, roasted~^~DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^~Y~^~35% bone, 27% skin and separable fat~^62^^6.25^4.27^9.02^3.87 -~05143~^~0500~^~Duck, domesticated, liver, raw~^~DUCK,DOMESTICATED,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05144~^~0500~^~Duck, wild, meat and skin, raw~^~DUCK,WILD,MEAT&SKN,RAW~^^^^~38% bone, 2% handling loss~^40^^6.25^4.27^9.02^3.87 -~05145~^~0500~^~Duck, wild, breast, meat only, raw~^~DUCK,WILD,BREAST,MEAT ONLY,RAW~^^^^~15% bone, 31% skin and separable fat~^46^^6.25^4.27^9.02^3.87 -~05146~^~0500~^~Goose, domesticated, meat and skin, raw~^~GOOSE,DOMESTICATED,MEAT&SKN,RAW~^^^^~Bone~^19^~Anser anser~^6.25^4.27^9.02^3.87 -~05147~^~0500~^~Goose, domesticated, meat and skin, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~05148~^~0500~^~Goose, domesticated, meat only, raw~^~GOOSE,DOMESTICATED,MEAT ONLY,RAW~^^^^~19% bone, 34% skin and separable fat~^53^^6.25^4.27^9.02^3.87 -~05149~^~0500~^~Goose, domesticated, meat only, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^^~28% bone, 17% skin and separable fat~^45^^6.25^4.27^9.02^3.87 -~05150~^~0500~^~Goose, liver, raw~^~GOOSE,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05151~^~0500~^~Guinea hen, meat and skin, raw~^~GUINEA HEN,MEAT&SKN,RAW~^^^^~Bone~^17^~Numida meleagris~^6.25^4.27^9.02^3.87 -~05152~^~0500~^~Guinea hen, meat only, raw~^~GUINEA HEN,MEAT ONLY,RAW~^^^^~17% bone, 19% skin and separable fat~^36^^6.25^4.27^9.02^3.87 -~05153~^~0500~^~Pheasant, raw, meat and skin~^~PHEASANT,RAW,MEAT&SKN~^^^^~Bone~^14^~Phasianus colchicus~^6.25^4.27^9.02^3.87 -~05154~^~0500~^~Pheasant, raw, meat only~^~PHEASANT,RAW,MEAT ONLY~^^^^~14% bone, 10% skin~^24^^6.25^4.27^9.02^3.87 -~05155~^~0500~^~Pheasant, breast, meat only, raw~^~PHEASANT,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05156~^~0500~^~Pheasant, leg, meat only, raw~^~PHEASANT,LEG,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05157~^~0500~^~Quail, meat and skin, raw~^~QUAIL,MEAT AND SKIN,RAW~^^^^~Bone~^10^~Coturnix spp. and Colinus spp.~^6.25^4.27^9.02^3.87 -~05158~^~0500~^~Quail, meat only, raw~^~QUAIL,MEAT ONLY,RAW~^^^^~10% bone, 14% skin~^24^^6.25^4.27^9.02^3.87 -~05159~^~0500~^~Quail, breast, meat only, raw~^~QUAIL,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05160~^~0500~^~Squab, (pigeon), meat and skin, raw~^~SQUAB,(PIGEON),MEAT&SKN,RAW~^^^^~Bone~^23^~Columba spp.~^6.25^4.27^9.02^3.87 -~05161~^~0500~^~Squab, (pigeon), meat only, raw~^~SQUAB,(PIGEON),MEAT ONLY,RAW~^^^^~23% bone, 12% skin~^35^^6.25^4.27^9.02^3.87 -~05162~^~0500~^~Squab, (pigeon), light meat without skin, raw~^~SQUAB,(PIGEON),LT MEAT WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05165~^~0500~^~Turkey, whole, meat and skin, raw~^~TURKEY,WHL,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~05166~^~0500~^~Turkey, whole, meat and skin, cooked, roasted~^~TURKEY,WHL,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone connective tissue 31%~^31^^6.25^4.27^9.02^3.87 -~05167~^~0500~^~Turkey, whole, meat only, raw~^~TURKEY,WHL,MEAT ONLY,RAW~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 11%~^41^^6.25^4.27^9.02^3.87 -~05168~^~0500~^~Turkey, whole, meat only, cooked, roasted~^~TURKEY,WHL,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 31%, Skin and separable fat 7%~^38^^6.25^4.27^9.02^3.87 -~05169~^~0500~^~Turkey, whole, skin (light and dark), raw~^~TURKEY,WHL,SKN (LIGHT & DARK),RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05170~^~0500~^~Turkey, whole, skin (light and dark), roasted~^~TURKEY,WHL,SKN (LIGHT & DARK),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05171~^~0500~^~Turkey, whole, giblets, raw~^~TURKEY,WHL,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05172~^~0500~^~Turkey, whole, giblets, cooked, simmered~^~TURKEY,WHL,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05173~^~0500~^~Turkey, gizzard, all classes, raw~^~TURKEY,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05174~^~0500~^~Turkey, all classes, gizzard, cooked, simmered~^~TURKEY,ALL CLASSES,GIZZARD,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05175~^~0500~^~Turkey, all classes, heart, raw~^~TURKEY,ALL CLASSES,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05176~^~0500~^~Turkey, all classes, heart, cooked, simmered~^~TURKEY,ALL CLASSES,HEART,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05177~^~0500~^~Turkey, all classes, liver, raw~^~TURKEY,ALL CLASSES,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05178~^~0500~^~Turkey, all classes, liver, cooked, simmered~^~TURKEY,ALL CLASSES,LIVER,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~05179~^~0500~^~Turkey, whole, neck, meat only, raw~^~TURKEY,WHL,NECK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 60%~^60^^6.25^4.27^9.02^3.87 -~05180~^~0500~^~Turkey, whole, neck, meat only, cooked, simmered~^~TURKEY,WHL,NECK,MEAT ONLY,CKD,SIMMRD~^^^~Y~^~Bone and connective tissue 53%~^53^^6.25^4.27^9.02^3.87 -~05181~^~0500~^~Turkey, whole, light meat, meat and skin, raw~^~TURKEY,WHL,LT MEAT,MEAT & SKN,RAW~^^^^~Bone and Conncetive tissue 32%~^32^^6.25^4.27^9.02^3.87 -~05182~^~0500~^~Turkey, whole, light meat, meat and skin, cooked, roasted~^~TURKEY,WHL,LT MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%~^20^^6.25^4.27^9.02^3.87 -~05183~^~0500~^~Turkey, dark meat, meat and skin, raw~^~TURKEY,DK MEAT,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^48^^6.25^4.27^9.02^3.87 -~05184~^~0500~^~Turkey, whole, dark meat, meat and skin, cooked, roasted~^~TURKEY,WHL,DK MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87 -~05185~^~0500~^~Turkey, whole, light meat, raw~^~TURKEY,WHL,LT MEAT,RAW~^^^^~Bone and connective tissue 20%, skin and separable fat 12%~^29^^6.25^4.27^9.02^3.87 -~05186~^~0500~^~Turkey, all classes, light meat, cooked, roasted~^~TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%, Skin and separable fat 7%~^27^^6.25^4.27^9.02^3.87 -~05187~^~0500~^~Turkey, whole, dark meat, meat only, raw~^~TURKEY,WHL,DK MEAT,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, skin and separable fat 10%~^48^^^^^ -~05188~^~0500~^~Turkey, whole, dark meat, cooked, roasted~^~TURKEY,WHL,DK MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 39% Skin and separable fat 7%~^46^^6.25^4.27^9.02^3.87 -~05190~^~0500~^~Turkey, all classes, back, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^41^^6.25^4.27^9.02^3.87 -~05191~^~0500~^~Turkey, all classes, breast, meat and skin, raw~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW~^^^^~Bone~^10^^6.25^4.27^9.02^3.87 -~05192~^~0500~^~Turkey, all classes, breast, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05193~^~0500~^~Turkey, all classes, leg, meat and skin, raw~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~05194~^~0500~^~Turkey, all classes, leg, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87 -~05195~^~0500~^~Turkey, all classes, wing, meat and skin, raw~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~05196~^~0500~^~Turkey, all classes, wing, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87 -~05200~^~0500~^~Turkey, fryer-roasters, meat and skin, cooked, roasted~^~TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~05215~^~0500~^~Turkey, whole, back, meat only, raw~^~TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 50%, skin and separable fat 12%~^62^^6.25^4.27^9.02^3.87 -~05216~^~0500~^~Turkey, whole, back, meat only, cooked, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 54%, Skin and separable fat 7%~^42^^6.25^4.27^9.02^3.87 -~05219~^~0500~^~Turkey, whole, breast, meat only, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 12%, Skin and separable fat 10%~^22^^6.25^4.27^9.02^3.87 -~05220~^~0500~^~Turkey, whole, breast, meat only, cooked, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 13%, Skin and separable fat 6%~^19^^6.25^4.27^9.02^3.87 -~05227~^~0500~^~Turkey, whole, wing, meat only, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 44%, skin and separable fat 16%~^60^^6.25^4.27^9.02^3.87 -~05228~^~0500~^~Turkey, whole, wing, meat only, cooked, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 48%, skin and separable fat 11%~^59^^6.25^4.27^9.02^3.87 -~05236~^~0500~^~Turkey, young hen, skin only, cooked, roasted~^~TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~05277~^~0500~^~Chicken, canned, meat only, with broth~^~CHICKEN,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05282~^~0500~^~Pate de foie gras, canned (goose liver pate), smoked~^~PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~05284~^~0500~^~Turkey, canned, meat only, with broth~^~TURKEY,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05285~^~0500~^~Turkey, diced, light and dark meat, seasoned~^~TURKEY,DICED,LT&DK MEAT,SEASONED~^^^^^0^^6.25^4.27^9.02^3.87 -~05286~^~0500~^~Turkey and gravy, frozen~^~TURKEY AND GRAVY,FROZEN~^^^^^0^^6.25^4.27^9.02^3.87 -~05293~^~0500~^~Turkey breast, pre-basted, meat and skin, cooked, roasted~^~TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~05294~^~0500~^~Turkey thigh, pre-basted, meat and skin, cooked, roasted~^~TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~05295~^~0500~^~Turkey roast, boneless, frozen, seasoned, light and dark meat, raw~^~TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05300~^~0500~^~Turkey sticks, breaded, battered, fried~^~TURKEY STKS,BREADED,BATTERED,FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05301~^~0500~^~Poultry, mechanically deboned, from backs and necks with skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05302~^~0500~^~Poultry, mechanically deboned, from backs and necks without skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05303~^~0500~^~Poultry, mechanically deboned, from mature hens, raw~^~POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05304~^~0500~^~Turkey, mechanically deboned, from turkey frames, raw~^~TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~05305~^~0500~^~Turkey, Ground, raw~^~TURKEY,GROUND,RAW~^^^^^0^^^^^ -~05306~^~0500~^~Turkey, Ground, cooked~^~TURKEY,GROUND,CKD~^^^~Y~^^0^^^^^ -~05307~^~0500~^~Chicken, cornish game hens, meat and skin, raw~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW~^^^^~Bone~^39^^6.25^4.27^9.02^3.87 -~05308~^~0500~^~Chicken, cornish game hens, meat and skin, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~05309~^~0500~^~Chicken, cornish game hens, meat only, raw~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW~^^^^~39% bone, 13% skin, 5% separable fat~^57^^6.25^4.27^9.02^3.87 -~05310~^~0500~^~Chicken, cornish game hens, meat only, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD~^^^~Y~^~37% bone, 9% skin~^46^^6.25^4.27^9.02^3.87 -~05311~^~0500~^~Chicken, canned, no broth~^~CHICKEN,CANNED,NO BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05312~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05313~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05314~^~0500~^~Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw~^~CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW~^^^~Y~^^0^^6.25^^^ -~05315~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05316~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled~^~DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05317~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD~^^^^~Bone~^31^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05318~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised~^~DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD~^^^^~Bone~^34^~Anas platyrhynchos~^6.25^4.27^9.02^ -~05319~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY~^^^~Y~^~Bone and connective tissue 29%, skin and separable fat 12%~^41^^^^^ -~05320~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)~^~CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87 -~05323~^~0500~^~Chicken patty, frozen, uncooked~^~CHICKEN PATTY,FRZ,UNCKD~^^^^^0^^^^^ -~05324~^~0500~^~Chicken patty, frozen, cooked~^~CHICKEN PATTY,FRZ,CKD~^^^~Y~^^0^^^^^ -~05326~^~0500~^~Chicken breast tenders, breaded, cooked, microwaved~^~CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED~^^^^^0^^6.25^^^ -~05327~^~0500~^~Chicken breast tenders, breaded, uncooked~^~CHICKEN BREAST TENDERS,BREADED,UNCKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05332~^~0500~^~Chicken, ground, raw~^~CHICKEN,GROUND,RAW~^^^^^0^^6.25^^^ -~05333~^~0500~^~Chicken, ground, crumbles, cooked, pan-browned~^~CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED~^^^^^0^^6.25^3.87^9.04^4.27 -~05334~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY~^^^~Y~^~Bone and connective tissue 14%, skin and separable fat 15%~^29^^^^^ -~05335~^~0500~^~Chicken, feet, boiled~^~CHICK,FEET,BOILED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~05339~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY~^^^~Y~^~Bone and connective tissue 32%, skin and separable fat 25%~^57^^6.25^^^ -~05341~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat only, cooked~^~CHIKN,BROLRS OR FYRS,ROTSSRIE,ORIGNL SESONG,BCK,MEAT OLY,CKD~^^^^~40.14% bone and cartilage, 16.08% skin and separable fat~^56^^^^^ -~05342~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat only, cooked~^~CHKN,BRILRS OR FYRS,ROTSSRE,ORGNL SESONING,BRST,MEAT OLY,CKD~^^^~Y~^~Bone and Connective tissue 26%, skin 10%~^36^^^^^ -~05343~^~0500~^~Chicken, broilers or fryers, drumstick, rotisserie, original seasoning, meat only, cooked~^~CHKN,BRLRS OR FYRS,DRMSTK,ROISSRE,ORGNL SESONIG,MEAT OLY,CKD~^^^^~29.34% bone and cartilage, 11.75% skin and separable fat~^41^^^^^ -~05344~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, skin only, cooked~^~CICKN,BRILRS OR FYRS,ROTSSRE,ORGNL SEASNG,SKN ONLY,CKD~^^^^^0^^6.25^^^ -~05345~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROTSSRIE,ORGNL SEASNG,TGH,MEAT OLY,CKD~^^^^~14.24% bone and cartilage, 14.88% skin and separable fat~^29^^^^^ -~05346~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROISSRIE,ORGNL SEASONG,WNG,MET OLY,CKD~^^^^~32.51% bone and cartilage, 24.10% skin and separable fat~^57^^^^^ -~05347~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSERE,ORGNL SESONG,BCK,MET & SKN,CKD~^^^^^0^^^^^ -~05348~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SASONG,BRST,MAT & SKN,CKD~^^^^^0^^^^^ -~05349~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, drumstick, meat and skin, cooked~^~CHKN,BROLRS OR FYRS,ROTSSRE,ORGNL SESONG,DRMSTK,MT & SKN,CKD~^^^^^0^^^^^ -~05351~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SESONG,THGH,MET & SKN,CKD~^^^^^0^^^^^ -~05352~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SEASONG,WNG,MET & SKN,CKD~^^^^^0^^^^^ -~05356~^~0500~^~Chicken, broiler, rotisserie, BBQ, skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN~^^^~Y~^^0^^^^^ -~05357~^~0500~^~Chicken, broiler, rotisserie, BBQ, back, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 37%~^37^^^^^ -~05358~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST,MEAT & SKN~^^^~Y~^~Bone and connective tissue 11%~^11^^^^^ -~05359~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05361~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT & SKN~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05362~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT & SKN~^^^~Y~^~Bone and connective tissue 32%~^32^^^^^ -~05363~^~0500~^~Ruffed Grouse, breast meat, skinless, raw~^~RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW~^~Ruffed grouse~^^^^0^~Bonasa umbellus~^^^^ -~05621~^~0500~^~Emu, ground, raw~^~EMU,GROUND,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05622~^~0500~^~Emu, ground, cooked, pan-broiled~^~EMU,GROUND,CKD,PAN-BROILED~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05623~^~0500~^~Emu, fan fillet, raw~^~EMU,FAN FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05624~^~0500~^~Emu, fan fillet, cooked, broiled~^~EMU,FAN FILLET,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05625~^~0500~^~Emu, flat fillet, raw~^~EMU,FLAT FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05626~^~0500~^~Emu, full rump, raw~^~EMU,FULL RUMP,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05627~^~0500~^~Emu, full rump, cooked, broiled~^~EMU,FULL RUMP,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05628~^~0500~^~Emu, inside drum, raw~^~EMU,INSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05629~^~0500~^~Emu, inside drums, cooked, broiled~^~EMU,INSIDE DRUMS,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05630~^~0500~^~Emu, outside drum, raw~^~EMU,OUTSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05631~^~0500~^~Emu, oyster, raw~^~EMU,OYSTER,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05632~^~0500~^~Emu, top loin, cooked, broiled~^~EMU,TOP LOIN,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87 -~05641~^~0500~^~Ostrich, ground, raw~^~OSTRICH,GROUND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05642~^~0500~^~Ostrich, ground, cooked, pan-broiled~^~OSTRICH,GROUND,CKD,PAN-BROILED~^^^~Y~^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05643~^~0500~^~Ostrich, fan, raw~^~OSTRICH,FAN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05644~^~0500~^~Ostrich, inside leg, raw~^~OSTRICH,INSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05645~^~0500~^~Ostrich, inside leg, cooked~^~OSTRICH,INSIDE LEG,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05646~^~0500~^~Ostrich, inside strip, raw~^~OSTRICH,INSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05647~^~0500~^~Ostrich, inside strip, cooked~^~OSTRICH,INSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05648~^~0500~^~Ostrich, outside leg, raw~^~OSTRICH,OUTSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05649~^~0500~^~Ostrich, outside strip, raw~^~OSTRICH,OUTSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05650~^~0500~^~Ostrich, outside strip, cooked~^~OSTRICH,OUTSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05651~^~0500~^~Ostrich, oyster, raw~^~OSTRICH,OYSTER,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05652~^~0500~^~Ostrich, oyster, cooked~^~OSTRICH,OYSTER,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05653~^~0500~^~Ostrich, round, raw~^~OSTRICH,RND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05654~^~0500~^~Ostrich, tenderloin, raw~^~OSTRICH,TENDERLOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05655~^~0500~^~Ostrich, tip trimmed, raw~^~OSTRICH,TIP RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05656~^~0500~^~Ostrich, tip trimmed, cooked~^~OSTRICH,TIP CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05657~^~0500~^~Ostrich, top loin, raw~^~OSTRICH,TOP LOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05658~^~0500~^~Ostrich, top loin, cooked~^~OSTRICH,TOP LOIN,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87 -~05661~^~0500~^~Chicken, liver, all classes, cooked, pan-fried~^~CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~05662~^~0500~^~Turkey, ground, fat free, raw~^~TURKEY,GROUND,FAT FREE,RAW~^^^^^0^^^^^ -~05663~^~0500~^~Turkey, ground, fat free, pan-broiled crumbles~^~TURKEY,GROUND,FAT FREE,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05664~^~0500~^~Turkey, ground, fat free, patties, broiled~^~TURKEY,GROUND,FAT FREE,PATTIES,BRLD~^^^^^0^^^^^ -~05665~^~0500~^~Turkey, ground, 93% lean, 7% fat, raw~^~TURKEY,GROUND,93% LN,7% FAT,RAW~^^^^^0^^^^^ -~05666~^~0500~^~Turkey, ground, 93% lean, 7% fat, pan-broiled crumbles~^~TURKEY,GROUND,93% LN,7% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05667~^~0500~^~Turkey, ground, 93% lean, 7% fat, patties, broiled~^~TURKEY,GROUND,93% LN,7% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05668~^~0500~^~Turkey, ground, 85% lean, 15% fat, raw~^~TURKEY,GROUND,85% LN,15% FAT,RAW~^^^^^0^^^^^ -~05669~^~0500~^~Turkey, ground, 85% lean, 15% fat, pan-broiled crumbles~^~TURKEY,GROUND,85% LN,15% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^ -~05670~^~0500~^~Turkey, ground, 85% lean, 15% fat, patties, broiled~^~TURKEY,GROUND,85% LN,15% FAT,PATTIES,BRLD~^^^^^0^^^^^ -~05671~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD~^^^^~Bone and cartilage 32%, Separable fat and skin 9%~^41^^^^^ -~05672~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD~^^^^~Bone and cartilage 16%, Skin and separable fat 16%~^32^^^^^ -~05673~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD~^^^^^0^^^^^ -~05674~^~0500~^~Chicken, skin (drumsticks and thighs), raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW~^^^^^0^^^^^ -~05675~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD~^^^^^0^^^^^ -~05676~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD~^^^^~Bone and cartilage 32%~^32^^^^^ -~05677~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD~^^^^~Bone and cartilage 16%~^16^^^^^ -~05678~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and Cartilage 34%, Skin and separable fat 9%~^43^^^^^ -~05679~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 27%, Skin and separable fat 8%~^74^^6.25^^^ -~05680~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 30%, Skin and separable fat 9%~^39^^^^^ -~05681~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%, Skin and separable fat 18%~^33^^^^^ -~05682~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 32%, skin and separable fat 24%~^56^^^^^ -~05683~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 16%, Skin and separable fat 15%~^31^^^^^ -~05684~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD~^^^~Y~^^0^^^^^ -~05685~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW~^^^~Y~^^0^^^^^ -~05686~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD~^^^~Y~^^0^^^^^ -~05687~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and Cartilage 30%~^30^^^^^ -~05688~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 34%, bone and connective tissue 34%~^68^^^^^ -~05689~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 40%, bone and connective tissue 26%~^66^^^^^ -~05690~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%~^15^^^^^ -~05691~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 15%, bone and connective tissue 17%~^32^^^^^ -~05692~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^^^^ -~05693~^~0500~^~Chicken, broiler, rotisserie, BBQ, back meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY~^^^~Y~^~Bone and connective tissue 37%, skin and separable fat 14%~^51^^^^^ -~05694~^~0500~^~Turkey, dark meat from whole, meat only, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05695~^~0500~^~Turkey, dark meat, meat only, with added solution, cooked, roasted~^~TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05696~^~0500~^~Turkey from whole, light meat, meat only, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%, Skin and separable fat 13%~^31^^^^^ -~05697~^~0500~^~Turkey from whole, light meat, meat only, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%, Skin and separable fat 7%~^25^^^^^ -~05698~^~0500~^~Turkey, skin from whole (light and dark), with added solution, raw~^~TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~05699~^~0500~^~Turkey, skin from whole, (light and dark), with added solution, roasted~^~TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD~^^^~Y~^^0^^^^^ -~05700~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05701~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Connective tissue 37%~^37^^^^^ -~05702~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%~^18^^^^^ -~05703~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%~^18^^^^^ -~05704~^~0500~^~Turkey, whole, meat only, with added solution, raw~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^ -~05705~^~0500~^~Turkey, whole, meat only, with added solution, roasted~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^ -~05706~^~0500~^~Turkey, whole, meat and skin, with added solution, raw~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^ -~05707~^~0500~^~Turkey, whole, meat and skin, with added solution, roasted~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%~^36^^^^^ -~05708~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%, Skin and separable fat 10%~^25^^^^^ -~05709~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 17%, Skin and separable fat 7%~^24^^^^^ -~05710~^~0500~^~Turkey, retail parts, breast, meat only, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW~^^^^~Bone and connective tissue 14%, Skin and separable fat 11%~^25^^^^^ -~05711~^~0500~^~Turkey, retail parts, breast, meat only, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%, Skin and separable fat 8%~^20^^^^^ -~05712~^~0500~^~Turkey, retail parts, wing, meat only, raw~^~TURKEY,RTL PARTS,WING,MEAT ONLY,RAW~^^^^~Bone and connective tissue 37%, Skin and separable fat 18%~^55^^^^^ -~05713~^~0500~^~Turkey, retail parts, wing, meat only, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%, Skin and separable fat 14%~^52^^^^^ -~05714~^~0500~^~Turkey, skin, from retail parts, from dark meat, raw~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW~^^^^^0^^^^^ -~05715~^~0500~^~Turkey, skin, from retail parts, from dark meat, cooked, roasted~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD~^^^^^0^^^^^ -~05716~^~0500~^~Turkey, retail parts, drumstick, meat only, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 33%, Skin and separable fat 6%~^39^^^^^ -~05717~^~0500~^~Turkey, retail parts, thigh, meat only, raw~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW~^^^^~Bone and connective tissue 19%, Skin and separable fat 13%~^32^^^^^ -~05718~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 10%, skin and separable fat 6%~^16^^^^^ -~05719~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%, Skin and separable fat 16%~^63^^^^^ -~05720~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%, skin and separable fat 12%~^61^^^^^ -~05721~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 10%, Skin and separable fat 11%~^22^^6.25^^^ -~05722~^~0500~^~Turkey, retail parts, thigh, meat only, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%, Skin and separable fat 9%~^23^^^^^ -~05723~^~0500~^~Turkey, retail parts, drumstick, meat only, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 7%~^36^^^^^ -~05724~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 30%, Skin and separable fat 8%~^38^^^^^ -~05725~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 34%, Skin and separable fat 6%~^40^^^^^ -~05726~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 16%, Skin and separable fat 14%~^30^^^^^ -~05727~^~0500~^~Turkey, retail parts, breast, meat and skin, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%~^15^^^^^ -~05728~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 16%, skin and separable fat 8%~^24^^^^^ -~05729~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 36%, skin and separable fat 19%~^55^^^^^ -~05730~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 47%, skin and separable fat 12%~^59^^^^^ -~05732~^~0500~^~Turkey, retail parts, breast, meat and skin, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05733~^~0500~^~Turkey, retail parts, breast, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%~^12^^^^^ -~05734~^~0500~^~Turkey, retail parts, wing, meat and skin, raw~^~TURKEY,RTL PARTS,WING,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^38^^^^^ -~05735~^~0500~^~Turkey, retail parts, wing, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^^^^ -~05736~^~0500~^~Turkey, retail parts, drumstick, meat and skin, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW~^^^^~Bone and connective tissue 33%~^33^^^^^ -~05737~^~0500~^~Turkey, retail parts, drumstick, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^ -~05738~^~0500~^~Turkey, drumstick, from whole bird, meat only, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, Skin and separable fat 6%~^44^^^^^ -~05739~^~0500~^~Turkey, drumstick, from whole bird, meat only, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 37%, Skin and separable fat 5%~^42^^^^^ -~05740~^~0500~^~Turkey, thigh, from whole bird, meat only, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 20%, Skin and separable fat 10%~^30^^^^^ -~05741~^~0500~^~Turkey, thigh, from whole bird, meat only, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 7%~^43^^^^^ -~05742~^~0500~^~Turkey, retail parts, thigh, meat and skin, raw~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW~^^^^~Bone and connective tissue 19%~^19^^^^^ -~05743~^~0500~^~Turkey, retail parts, thigh, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^ -~05744~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%~^47^^^^^ -~05745~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%~^49^^^^^ -~05746~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised~^~CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD~^^^^^0^^^^^ -~05747~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled~^~CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD~^^^^^0^^^^^ -~05748~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised~^~CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD~^^^^^0^^^^^ -~05749~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled~^~CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED~^^^^^0^^^^^ -~06001~^~0600~^~Soup, cream of asparagus, canned, condensed~^~SOUP,CRM OF ASPARAGUS,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06002~^~0600~^~Soup, black bean, canned, condensed~^~SOUP,BLACK BEAN,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06004~^~0600~^~Soup, bean with pork, canned, condensed~^~SOUP,BEAN W/ PORK,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06006~^~0600~^~Soup, bean with frankfurters, canned, condensed~^~SOUP,BEAN W/ FRANKFURTERS,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06007~^~0600~^~Soup, bean with ham, canned, chunky, ready-to-serve~^~SOUP,BEAN W/ HAM,CND,CHUNKY,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06008~^~0600~^~Soup, beef broth or bouillon canned, ready-to-serve~^~SOUP,BF BROTH OR BOUILLON CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06009~^~0600~^~Soup, beef noodle, canned, condensed~^~SOUP,BF NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06010~^~0600~^~Soup, cream of celery, canned, condensed~^~SOUP,CRM OF CELERY,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06011~^~0600~^~Soup, cheese, canned, condensed~^~SOUP,CHS,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06013~^~0600~^~Soup, chicken broth, canned, condensed~^~SOUP,CHICK BROTH,CND,COND~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06015~^~0600~^~Soup, chicken, canned, chunky, ready-to-serve~^~SOUP,CHICK,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06016~^~0600~^~Soup, cream of chicken, canned, condensed~^~SOUP,CRM OF CHICK,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06017~^~0600~^~Soup, chicken gumbo, canned, condensed~^~SOUP,CHICK GUMBO,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06018~^~0600~^~Soup, chunky chicken noodle, canned, ready-to-serve~^~SOUP,CHUNKY CHICK NOODLE,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06019~^~0600~^~Soup, chicken noodle, canned, condensed~^~SOUP,CHICK NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06022~^~0600~^~Soup, chicken rice, canned, chunky, ready-to-serve~^~SOUP,CHICK RICE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06023~^~0600~^~Soup, chicken with rice, canned, condensed~^~SOUP,CHICK W/ RICE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06024~^~0600~^~Soup, chicken and vegetable, canned, ready-to-serve~^~SOUP,CHICK & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06025~^~0600~^~Soup, chicken vegetable, canned, condensed~^~SOUP,CHICK VEG,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90 -~06026~^~0600~^~Soup, chili beef, canned, condensed~^~SOUP,CHILI BF,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06027~^~0600~^~Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve~^~SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06028~^~0600~^~Soup, clam chowder, manhattan, canned, condensed~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06030~^~0600~^~Soup, clam chowder, new england, canned, condensed~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06032~^~0600~^~Soup, beef broth bouillon and consomme, canned, condensed~^~SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND~^^^^^0^^6.25^4.00^9.00^4.00 -~06037~^~0600~^~Soup, lentil with ham, canned, ready-to-serve~^~SOUP,LENTIL W/HAM,CND,RTS~^^^^^0^^6.25^3.70^8.90^4.00 -~06039~^~0600~^~Soup, minestrone, canned, chunky, ready-to-serve~^~SOUP,MINESTRONE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06040~^~0600~^~Soup, minestrone, canned, condensed~^~SOUP,MINESTRONE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06042~^~0600~^~Soup, mushroom barley, canned, condensed~^~SOUP,MUSHROOM BARLEY,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06043~^~0600~^~Soup, cream of mushroom, canned, condensed~^~SOUP,CRM OF MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06044~^~0600~^~Soup, mushroom with beef stock, canned, condensed~^~SOUP,MUSHROOM W/ BF STOCK,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06045~^~0600~^~Soup, onion, canned, condensed~^~SOUP,ONION,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06046~^~0600~^~Soup, cream of onion, canned, condensed~^~SOUP,CRM OF ONION,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06048~^~0600~^~Soup, oyster stew, canned, condensed~^~SOUP,OYSTER STEW,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06049~^~0600~^~Soup, pea, green, canned, condensed~^~SOUP,PEA,GRN,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06050~^~0600~^~Soup, pea, split with ham, canned, chunky, ready-to-serve~^~SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06051~^~0600~^~Soup, pea, split with ham, canned, condensed~^~SOUP,PEA,SPLIT W/ HAM,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00 -~06053~^~0600~^~Soup, cream of potato, canned, condensed~^~SOUP,CRM OF POTATO,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06056~^~0600~^~Soup, cream of shrimp, canned, condensed~^~SOUP,CRM OF SHRIMP,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90 -~06061~^~0600~^~Soup, tomato beef with noodle, canned, condensed~^~SOUP,TOMATO BF W/ NOODLE,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06062~^~0600~^~CAMPBELL'S, Chicken Noodle Soup, condensed~^~CAMPBELL'S,CHICK NOODLE SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06063~^~0600~^~Soup, tomato rice, canned, condensed~^~SOUP,TOMATO RICE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06064~^~0600~^~Soup, turkey, chunky, canned, ready-to-serve~^~SOUP,TURKEY,CHUNKY,CND,RTS~^^^^^0^^6.25^4.10^8.80^3.90 -~06067~^~0600~^~Soup, chunky vegetable, canned, ready-to-serve~^~SOUP,CHUNKY VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06068~^~0600~^~Soup, vegetarian vegetable, canned, condensed~^~SOUP,VEGETARIAN VEG,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06070~^~0600~^~Soup, chunky beef, canned, ready-to-serve~^~SOUP,CHUNKY BF,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06071~^~0600~^~Soup, vegetable beef, canned, condensed~^~SOUP,VEG BF,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06072~^~0600~^~Soup, vegetable with beef broth, canned, condensed~^~SOUP,VEG W/ BF BROTH,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06075~^~0600~^~Soup, beef broth or bouillon, powder, dry~^~SOUP,BF BROTH OR BOUILLON,PDR,DRY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06076~^~0600~^~Soup, beef broth, cubed, dry~^~SOUP,BEEF BROTH,CUBED,DRY~^^^^^0^^6.25^4.00^9.00^4.00 -~06080~^~0600~^~Soup, chicken broth or bouillon, dry~^~SOUP,CHICK BROTH OR BOUILLON,DRY~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06081~^~0600~^~Soup, chicken broth cubes, dry~^~SOUP,CHICK BROTH CUBES,DRY~^^^^^0^^6.25^4.20^9.00^4.00 -~06094~^~0600~^~Soup, onion, dry, mix~^~SOUP,ONION,DRY,MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06101~^~0600~^~Soup, cream of vegetable, dry, powder~^~SOUP,CRM OF VEG,DRY,PDR~^^^~Y~^^0^^6.25^3.90^8.80^3.90 -~06112~^~0600~^~Sauce, teriyaki, ready-to-serve~^~SAUCE,TERIYAKI,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06114~^~0600~^~Gravy, au jus, canned~^~GRAVY,AU JUS,CANNED~^^^^^0^^6.25^3.50^9.00^3.90 -~06115~^~0600~^~Gravy, au jus, dry~^~GRAVY,AU JUS,DRY~^^^^^0^^^4.00^9.00^4.00 -~06116~^~0600~^~Gravy, beef, canned, ready-to-serve~^~GRAVY,BF,CND,RTS~^^^~Y~^^0^^6.25^3.50^9.00^3.90 -~06118~^~0600~^~Gravy, brown, dry~^~GRAVY,BROWN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06119~^~0600~^~Gravy, chicken, canned or bottled, ready-to-serve~^~GRVY, CHCKN, CNND BTTLD, RTS~^^^~Y~^^0^^^^^ -~06120~^~0600~^~Gravy, chicken, dry~^~GRAVY,CHICKEN,DRY~^^^^^0^^^4.00^9.00^4.00 -~06121~^~0600~^~Gravy, mushroom, canned~^~GRAVY,MUSHROOM,CANNED~^^^^^0^^6.25^3.40^8.90^4.00 -~06122~^~0600~^~Gravy, mushroom, dry, powder~^~GRAVY,MUSHROOM,DRY,PDR~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06123~^~0600~^~Gravy, onion, dry, mix~^~GRAVY,ONION,DRY,MIX~^^^^^0^^6.25^3.50^9.00^3.90 -~06124~^~0600~^~Gravy, pork, dry, powder~^~GRAVY,PORK,DRY,PDR~^^^~Y~^^0^^^4.00^9.00^4.00 -~06125~^~0600~^~Gravy, turkey, canned, ready-to-serve~^~GRAVY,TURKEY,CND,RTS~^^^~Y~^^0^^6.25^3.40^8.90^4.00 -~06126~^~0600~^~Gravy, turkey, dry~^~GRAVY,TURKEY,DRY~^^^^^0^^^4.00^9.00^4.00 -~06127~^~0600~^~Gravy, unspecified type, dry~^~GRAVY,UNSPEC TYPE,DRY~^^^^^0^^6.25^3.40^8.90^4.00 -~06128~^~0600~^~Soup, chicken noodle, dry, mix~^~SOUP,CHICK NOODLE,DRY,MIX~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06142~^~0600~^~Sauce, sofrito, prepared from recipe~^~SAUCE,SOFRITO,PREP FROM RECIPE~^^^^^0^^^^^ -~06147~^~0600~^~Soup, beef mushroom, canned, condensed~^~SOUP,BF MUSHROOM,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00 -~06149~^~0600~^~Soup, chicken mushroom, canned, condensed~^~SOUP,CHICK MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.20 -~06150~^~0600~^~Sauce, barbecue~^~SAUCE,BARBECUE~^^^~Y~^^0^^6.25^^^ -~06151~^~0600~^~Sauce, plum, ready-to-serve~^~SAUCE,PLUM,READY-TO-SERVE~^^^^^0^^6.25^4.00^9.00^4.00 -~06152~^~0600~^~Sauce, pizza, canned, ready-to-serve~^~SAUCE,PIZZA,CND,RTS~^^^^^0^^^4.00^9.00^4.00 -~06158~^~0600~^~Soup, tomato bisque, canned, condensed~^~SOUP,TOMATO BISQUE,CND,COND~^^^^^0^^6.25^3.90^8.80^3.90 -~06159~^~0600~^~Soup, tomato, canned, condensed~^~SOUP,TOMATO,CND,COND~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06164~^~0600~^~Sauce, salsa, ready-to-serve~^~SAUCE,SALSA,RTS~^^^~Y~^^0^^6.25^2.44^8.87^3.57 -~06166~^~0600~^~Sauce, homemade, white, medium~^~SAUCE,HOMEMADE,WHITE,MED~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06167~^~0600~^~Sauce, homemade, white, thick~^~SAUCE,HOMEMADE,WHITE,THICK~^^^~Y~^^0^^6.25^4.20^8.70^3.90 -~06168~^~0600~^~Sauce, ready-to-serve, pepper or hot~^~SAUCE,RTS,PEPPER OR HOT~^^^^^0^^6.25^2.44^8.37^3.57 -~06169~^~0600~^~Sauce, ready-to-serve, pepper, TABASCO~^~SAUCE,RTS,PEPPER,TABASCO~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~06170~^~0600~^~Soup, stock, beef, home-prepared~^~SOUP,STOCK,BEEF,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06172~^~0600~^~Soup, stock, chicken, home-prepared~^~SOUP,STOCK,CHICK,HOME-PREPARED~^^^~Y~^^0^^^^^ -~06174~^~0600~^~Soup, stock, fish, home-prepared~^~SOUP,STOCK,FISH,HOME-PREPARED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06175~^~0600~^~Sauce, hoisin, ready-to-serve~^~SAUCE,HOISIN,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06176~^~0600~^~Sauce, oyster, ready-to-serve~^~SAUCE,OYSTER,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06177~^~0600~^~Soup, minestrone, canned, reduced sodium, ready-to-serve~^~SOUP,MINESTRONE,CND,RED NA,RTS~^^^~Y~^^0^^^^^ -~06179~^~0600~^~Sauce, fish, ready-to-serve~^~SAUCE,FISH,READY-TO-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06180~^~0600~^~Soup, shark fin, restaurant-prepared~^~SOUP,SHARK FIN,REST-PREP~^^^^^0^^6.25^4.00^9.00^4.00 -~06182~^~0600~^~Soup, cream of mushroom, canned, condensed, reduced sodium~^~SOUP,CRM OF MUSHROOM,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06183~^~0600~^~Soup, chicken broth, less/reduced sodium, ready to serve~^~SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06188~^~0600~^~Soup, beef broth, less/reduced sodium, ready to serve~^~SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^ -~06189~^~0600~^~Sauce, teriyaki, ready-to-serve, reduced sodium~^~SAUCE,TERIYAKI,RTS,RED NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06190~^~0600~^~Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve~^~SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06192~^~0600~^~Split pea soup, canned, reduced sodium, prepared with water or ready-to serve~^~SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE~^^^~Y~^^0^^^^^ -~06193~^~0600~^~Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve~^~SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS~^^^~Y~^^0^^^^^ -~06194~^~0600~^~Soup, chicken broth, ready-to-serve~^~SOUP,CHICK BROTH,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06201~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume milk~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06208~^~0600~^~Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve~^~SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS~^^^~Y~^^0^^^^^ -~06210~^~0600~^~Soup, cream of celery, canned, prepared with equal volume milk~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06211~^~0600~^~Soup, cheese, canned, prepared with equal volume milk~^~SOUP,CHS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.10^8.80^3.90 -~06216~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume milk~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06217~^~0600~^~Soup, vegetable, canned, low sodium, condensed~^~SOUP,VEG,CND,LO NA,COND~^^^~Y~^^0^^^^^ -~06230~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06243~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^^^^ -~06246~^~0600~^~Soup, cream of onion, canned, prepared with equal volume milk~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06248~^~0600~^~Soup, oyster stew, canned, prepared with equal volume milk~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90 -~06249~^~0600~^~Soup, pea, green, canned, prepared with equal volume milk~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.70^8.90^4.00 -~06253~^~0600~^~Soup, cream of potato, canned, prepared with equal volume milk~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^4.00 -~06256~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06264~^~0600~^~Sauce, white, thin, prepared-from-recipe, with butter~^~SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER~^~NFSMI Recipe No. G-08~^^^^0^^^^^ -~06285~^~0600~^~Sauce, sweet and sour, prepared-from-recipe~^~SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE~^~NFSMI Recipe No. G-05~^^^^0^^^^^ -~06307~^~0600~^~Sauce, barbecue, KRAFT, original~^~SAUCE,BARBECUE,KRAFT,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~06314~^~0600~^~Soup, HEALTHY CHOICE Chicken Noodle Soup, canned~^~SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06315~^~0600~^~Soup, HEALTHY CHOICE Chicken and Rice Soup, canned~^~SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06316~^~0600~^~Soup, HEALTHY CHOICE Garden Vegetable Soup, canned~^~SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^ -~06338~^~0600~^~CAMPBELL'S, Cream of Mushroom Soup, condensed~^~CAMPBELL'S,CRM OF MUSHROOM SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06358~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume milk~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90 -~06359~^~0600~^~Soup, tomato, canned, prepared with equal volume low fat (2%) milk~^~SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06377~^~0600~^~CAMPBELL'S, Tomato Soup, condensed~^~CAMPBELL'S,TOMATO SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^ -~06395~^~0600~^~CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup~^~CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06401~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume water~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06402~^~0600~^~Soup, black bean, canned, prepared with equal volume water~^~SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06404~^~0600~^~Soup, bean with pork, canned, prepared with equal volume water~^~SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06406~^~0600~^~Soup, bean with frankfurters, canned, prepared with equal volume water~^~SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06409~^~0600~^~Soup, beef noodle, canned, prepared with equal volume water~^~SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06410~^~0600~^~Soup, cream of celery, canned, prepared with equal volume water~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06411~^~0600~^~Soup, cheese, canned, prepared with equal volume water~^~SOUP,CHS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.80^3.90 -~06413~^~0600~^~Soup, chicken broth, canned, prepared with equal volume water~^~SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06415~^~0600~^~CAMPBELL'S CHUNKY, Hearty Beef Barley Soup~^~CAMPBELL'S CHUNKY,HEARTY BF BARLEY SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06416~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume water~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06417~^~0600~^~Soup, chicken gumbo, canned, prepared with equal volume water~^~SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06419~^~0600~^~Soup, chicken noodle, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06423~^~0600~^~Soup, chicken with rice, canned, prepared with equal volume water~^~SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06426~^~0600~^~Soup, chili beef, canned, prepared with equal volume water~^~SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06428~^~0600~^~Soup, clam chowder, manhattan, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06430~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06431~^~0600~^~CAMPBELL'S CHUNKY, New England Clam Chowder~^~CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER~^^~Campbell Soup Co.~^^^0^^^^^ -~06432~^~0600~^~Soup, beef broth, bouillon, consomme, prepared with equal volume water~^~SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06434~^~0600~^~CAMPBELL'S CHUNKY, Old Fashioned Vegetable Beef Soup~^~CAMPBELL'S CHUNKY,OLD FASHIONED VEG BF SOUP~^^~Campbell Soup Co.~^^^0^^^^^ -~06440~^~0600~^~Soup, minestrone, canned, prepared with equal volume water~^~SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06442~^~0600~^~Soup, mushroom barley, canned, prepared with equal volume water~^~SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.60^8.90^4.00 -~06443~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume water~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~06444~^~0600~^~Soup, mushroom with beef stock, canned, prepared with equal volume water~^~SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00 -~06446~^~0600~^~Soup, cream of onion, canned, prepared with equal volume water~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06448~^~0600~^~Soup, oyster stew, canned, prepared with equal volume water~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90 -~06449~^~0600~^~Soup, pea, green, canned, prepared with equal volume water~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06451~^~0600~^~Soup, pea, split with ham, canned, prepared with equal volume water~^~SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00 -~06453~^~0600~^~Soup, cream of potato, canned, prepared with equal volume water~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^4.00 -~06456~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume water~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06461~^~0600~^~Soup, tomato beef with noodle, canned, prepared with equal volume water~^~SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06463~^~0600~^~Soup, tomato rice, canned, prepared with equal volume water~^~SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00 -~06465~^~0600~^~Soup, turkey noodle, canned, prepared with equal volume water~^~SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.90^4.10 -~06466~^~0600~^~Soup, turkey vegetable, canned, prepared with equal volume water~^~SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06468~^~0600~^~Soup, vegetarian vegetable, canned, prepared with equal volume water~^~SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06471~^~0600~^~Soup, vegetable beef, canned, prepared with equal volume water~^~SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06472~^~0600~^~Soup, vegetable with beef broth, canned, prepared with equal volume water~^~SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00 -~06475~^~0600~^~Soup, beef broth or bouillon, powder, prepared with water~^~SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06476~^~0600~^~Soup, beef broth, cubed, prepared with water~^~SOUP,BF BROTH,CUBED,PREP W/H2O~^^^^^0^^6.25^4.00^8.90^4.00 -~06480~^~0600~^~Soup, chicken broth or bouillon, dry, prepared with water~^~SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00 -~06481~^~0600~^~Soup, chicken broth cubes, dry, prepared with water~^~SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O~^^^^^0^^6.25^4.20^9.00^4.00 -~06483~^~0600~^~Soup, cream of chicken, dry, mix, prepared with water~^~SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90 -~06494~^~0600~^~Soup, onion, dry, mix, prepared with water~^~SOUP,ONION,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00 -~06498~^~0600~^~Soup, tomato, dry, mix, prepared with water~^~SOUP,TOMATO,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06528~^~0600~^~Soup, chicken noodle, dry, mix, prepared with water~^~SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10 -~06547~^~0600~^~Soup, beef mushroom, canned, prepared with equal volume water~^~SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00 -~06549~^~0600~^~Soup, chicken mushroom, canned, prepared with equal volume water~^~SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.20 -~06558~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume water~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90 -~06559~^~0600~^~Soup, tomato, canned, prepared with equal volume water, commercial~^~SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM~^^^~Y~^^0^^6.25^2.80^8.70^3.80 -~06583~^~0600~^~Soup, ramen noodle, any flavor, dry~^~SOUP,RAMEN NOODLE,ANY FLAVOR,DRY~^^^~Y~^^0^^^4.00^9.00^4.00 -~06584~^~0600~^~Soup, broccoli cheese, canned, condensed, commercial~^~SOUP,BROCCOLI CHS,CND,COND,COMM~^^^~Y~^^0^^^^^ -~06611~^~0600~^~Soup, SWANSON, beef broth, lower sodium~^~SOUP,SWANSON,BF BROTH,LOWER NA~^^~Campbell Soup Co.~^^^0^^^^^ -~06615~^~0600~^~Soup, SWANSON, vegetable broth~^~SOUP,SWANSON,VEG BROTH~^^~Campbell Soup Co.~^^^0^^^^^ -~06618~^~0600~^~Sauce, peanut, made from coconut, water, sugar, peanuts~^~SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~06619~^~0600~^~SMART SOUP, Santa Fe Corn Chowder~^~SMART SOUP,SANTA FE CORN CHOWDER~^^~Smart Soup~^^^0^^6.25^^^ -~06620~^~0600~^~SMART SOUP, French Lentil~^~SMART SOUP,FRENCH LENTIL~^^~Smart Soup~^^^0^^6.25^^^ -~06621~^~0600~^~SMART SOUP, Greek Minestrone~^~SMART SOUP,GREEK MINESTRONE~^^~Smart Soup~^^^0^^6.25^^^ -~06622~^~0600~^~SMART SOUP, Indian Bean Masala~^~SMART SOUP,INDIAN BEAN MASALA~^^~Smart Soup~^^^0^^6.25^^^ -~06623~^~0600~^~SMART SOUP, Moroccan Chick Pea~^~SMART SOUP,MOROCCAN CHICK PEA~^^~Smart Soup~^^^0^^6.25^^^ -~06624~^~0600~^~SMART SOUP, Thai Coconut Curry~^~SMART SOUP,THAI COCNT CURRY~^^~Smart Soup~^^^0^^6.25^^^ -~06625~^~0600~^~SMART SOUP, Vietnamese Carrot Lemongrass~^~SMART SOUP,VIETNAMESE CARROT LEMONGRASS~^^~Smart Soup~^^^0^^6.25^^^ -~06626~^~0600~^~Sauce, pesto, ready-to-serve, refrigerated~^~SAUCE,PESTO,RTS,REFR~^^^^^0^^^^^ -~06627~^~0600~^~Sauce, pesto, ready-to-serve, shelf stable~^~SAUCE,PESTO,RTS,SHELF STABLE~^^^^^0^^^^^ -~06628~^~0600~^~Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated~^~SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR~^^~Nestle USA, Inc.~^^^0^^^^^ -~06629~^~0600~^~Sauce, pesto, CLASSICO, basil pesto, ready-to-serve~^~SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS~^^~Classico~^^^0^^^^^ -~06630~^~0600~^~Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve~^~SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS~^^~Mezzetta~^^^0^^^^^ -~06631~^~0600~^~Sauce, hot chile, sriracha~^~SAUCE,HOT CHILE,SRIRACHA~^^^^^0^^^^^ -~06632~^~0600~^~Sauce, hot chile, sriracha, CHA! BY TEXAS PETE~^~SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE~^^~TW Garner Food Company~^^^0^^^^^ -~06633~^~0600~^~Sauce, hot chile, sriracha, TUONG OT SRIRACHA~^~SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA~^^~Huy Fong Foods, Inc.~^^^0^^^^^ -~06700~^~0600~^~Soup, vegetable broth, ready to serve~^~SOUP,VEG BROTH,READY TO SERVE~^^^~Y~^^0^^^^^ -~06720~^~0600~^~Sauce, cheese sauce mix, dry~^~SAUCE,CHS SAU MIX,DRY~^^^^^0^^^^^ -~06725~^~0600~^~Soup, chicken corn chowder, chunky, ready-to-serve, single brand~^~SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06731~^~0600~^~Soup, bean with bacon, condensed, single brand~^~SOUP,BEAN W/BACON,COND,SINGLE BRAND~^^^^^0^^^^^ -~06742~^~0600~^~Soup, vegetable beef, microwavable, ready-to-serve, single brand~^~SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND~^^^^^0^^^^^ -~06749~^~0600~^~Soup, beef and vegetables, canned, ready-to-serve~^~SOUP,BF & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06930~^~0600~^~Sauce, cheese, ready-to-serve~^~SAUCE,CHS,RTS~^^^^^0^^^^^ -~06931~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS~^^^~Y~^^0^^^^^ -~06955~^~0600~^~Soup, cream of chicken, canned, condensed, reduced sodium~^~SOUP,CRM OF CHICK,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06956~^~0600~^~Soup, tomato, canned, condensed, reduced sodium~^~SOUP,TOMATO,CND,COND,RED NA~^^^~Y~^^0^^^^^ -~06957~^~0600~^~Gravy, brown instant, dry~^~GRAVY,BROWN INST,DRY~^^^~Y~^^0^^^^^ -~06958~^~0600~^~Gravy, instant beef, dry~^~GRAVY,INST BF,DRY~^^^~Y~^^0^^^^^ -~06959~^~0600~^~Gravy, instant turkey, dry~^~GRAVY,INST TURKEY,DRY~^^^~Y~^^0^^^^^ -~06960~^~0600~^~Sauce, alfredo mix, dry~^~SAUCE,ALFREDO MIX,DRY~^^^^^0^^^^^ -~06961~^~0600~^~Sauce, peppers, hot, chili, mature red, canned~^~SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND~^^^~Y~^^0^^^^^ -~06962~^~0600~^~Sauce, chili, peppers, hot, immature green, canned~^~SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND~^^^~Y~^^0^^^^^ -~06963~^~0600~^~Fish broth~^~FISH BROTH~^^^~Y~^^0^^^^^ -~06964~^~0600~^~Soup, tomato, low sodium, with water~^~SOUP,TOMATO,LO NA,W/H2O~^^^~Y~^^0^^^^^ -~06965~^~0600~^~Soup, pea, low sodium, prepared with equal volume water~^~SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06966~^~0600~^~Soup, chicken noodle, low sodium, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06967~^~0600~^~Soup, vegetable soup, condensed, low sodium, prepared with equal volume water~^~SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^ -~06968~^~0600~^~Soup, cream of mushroom, low sodium, ready-to-serve, canned~^~SOUP,CRM OF MUSHROOM,LO NA,RTS,CND~^^^~Y~^^0^^^^^ -~06969~^~0600~^~Potato soup, instant, dry mix~^~POTATO SOUP,INST,DRY MIX~^^^~Y~^^0^^^^^ -~06970~^~0600~^~Soup, chicken broth, low sodium, canned~^~SOUP,CHICK BROTH,LO NA,CND~^^^~Y~^^0^^^^^ -~06971~^~0600~^~Sauce, worcestershire~^~SAUCE,WORCESTERSHIRE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06972~^~0600~^~Sauce, tomato chili sauce, bottled, with salt~^~SAUCE,TOMATO CHILI SAU,BTLD,W/SALT~^^^~Y~^^0^^^^^ -~06974~^~0600~^~Soup, vegetable chicken, canned, prepared with water, low sodium~^~SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA~^^^~Y~^^0^^^^^ -~06976~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~06977~^~0600~^~Gravy, meat or poultry, low sodium, prepared~^~GRAVY,MEAT OR POULTRY,LO NA,PREP~^^^~Y~^^0^^^^^ -~06978~^~0600~^~Soup, beef and mushroom, low sodium, chunk style~^~SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE~^^^~Y~^^0^^^^^ -~06980~^~0600~^~Soup, beef stroganoff, canned, chunky style, ready-to-serve~^~SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS~^^^~Y~^^0^^^^^ -~06981~^~0600~^~Soup, bouillon cubes and granules, low sodium, dry~^~SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY~^^^~Y~^^0^^^^^ -~06982~^~0600~^~Soup, ramen noodle, beef flavor, dry~^~SOUP,RAMEN NOODLE,BF FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06983~^~0600~^~Soup, ramen noodle, chicken flavor, dry~^~SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00 -~06985~^~0600~^~Gravy, HEINZ Home Style, savory beef~^~GRAVY,HEINZ HOME STYLE,SAVORY BF~^^~H.J. Heinz, Co.~^^^0^^6.25^4.00^9.00^4.00 -~06999~^~0600~^~Gravy, CAMPBELL'S, chicken~^~GRAVY,CAMPBELL'S,CHICK~^^~Campbell Soup Co.~^^^0^^^^^ -~07001~^~0700~^~Barbecue loaf, pork, beef~^~BARBECUE LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07002~^~0700~^~Beerwurst, beer salami, pork and beef~^~BEERWURST,BEER SALAMI,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07003~^~0700~^~Beerwurst, beer salami, pork~^~BEERWURST,BEER SALAMI,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07004~^~0700~^~Sausage, Berliner, pork, beef~^~SAUSAGE BERLINER PORK BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07005~^~0700~^~Blood sausage~^~BLOOD SAUSAGE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07006~^~0700~^~Bockwurst, pork, veal, raw~^~BOCKWURST PORK VEAL RAW~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07007~^~0700~^~Bologna, beef~^~BOLOGNA,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07008~^~0700~^~Bologna, beef and pork~^~BOLOGNA,BF & PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07010~^~0700~^~Bologna, pork~^~BOLOGNA,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07011~^~0700~^~Bologna, turkey~^~BOLOGNA TURKEY~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07013~^~0700~^~Bratwurst, pork, cooked~^~BRATWURST,PORK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07014~^~0700~^~Braunschweiger (a liver sausage), pork~^~BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07015~^~0700~^~Bratwurst, pork, beef, link~^~BRATWURST,PORK,BF,LINK~^^^^^0^^6.25^4.27^9.02^3.87 -~07016~^~0700~^~Cheesefurter, cheese smokie, pork, beef~^~CHEESEFURTER,CHS SMOKIE,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07018~^~0700~^~Chicken spread~^~CHICKEN SPRD~^^^^^0^^6.25^4.00^4.00^4.00 -~07019~^~0700~^~Sausage, pork, chorizo, link or ground, raw~^~SAUSAGE,PORK,CHORIZO,LINK OR GROUND,RAW~^^^~Y~^^0^^^^^ -~07020~^~0700~^~Corned beef loaf, jellied~^~CORNED BEEF LOAF,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~07021~^~0700~^~Dutch brand loaf, chicken, pork and beef~^~DUTCH BRAND LOAF,CHICK,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07022~^~0700~^~Frankfurter, beef, unheated~^~FRANKFURTER,BF,UNHTD~^~hot dog, frank, wiener~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07024~^~0700~^~Frankfurter, chicken~^~FRANKFURTER,CHICKEN~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07025~^~0700~^~Frankfurter, turkey~^~FRANKFURTER,TURKEY~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07026~^~0700~^~Ham, chopped, canned~^~HAM,CHOPPED,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07027~^~0700~^~Ham, chopped, not canned~^~HAM,CHOPPED,NOT CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07028~^~0700~^~Ham, sliced, pre-packaged, deli meat (96%fat free, water added)~^~HAM,SLICED,PRE-PACKAGED,DELI MEAT (96%FAT FREE,H2O ADDED)~^^^~Y~^^0^^^^^ -~07029~^~0700~^~Ham, sliced, regular (approximately 11% fat)~^~HAM,SLICED,REG (APPROX 11% FAT)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07030~^~0700~^~Ham, minced~^~HAM,MINCED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07031~^~0700~^~Ham salad spread~^~HAM SALAD SPREAD~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07032~^~0700~^~Ham and cheese loaf or roll~^~HAM&CHS LOAF OR ROLL~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07033~^~0700~^~Ham and cheese spread~^~HAM AND CHEESE SPREAD~^^^^^0^^6.25^4.27^9.02^3.87 -~07034~^~0700~^~Headcheese, pork~^~HEADCHEESE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07036~^~0700~^~Sausage, Italian, pork, mild, raw~^~SAUSAGE,ITALIAN,PORK,MILD,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07038~^~0700~^~Knackwurst, knockwurst, pork, beef~^~KNACKWURST KNOCKWURST PORK BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07039~^~0700~^~Lebanon bologna, beef~^~LEBANON BOLOGNA BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07040~^~0700~^~Liver cheese, pork~^~LIVER CHEESE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07041~^~0700~^~Liver sausage, liverwurst, pork~^~LIVER SAUSAGE,LIVERWURST,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07043~^~0700~^~Roast beef, deli style, prepackaged, sliced~^~ROAST BF,DELI STYLE,PREPACKAGED,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07045~^~0700~^~Luncheon meat, pork, canned~^~LUNCHEON MEAT,PORK,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.68 -~07046~^~0700~^~Turkey breast, low salt, prepackaged or deli, luncheon meat~^~TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07050~^~0700~^~Mortadella, beef, pork~^~MORTADELLA,BEEF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07051~^~0700~^~Olive loaf, pork~^~OLIVE LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07052~^~0700~^~Pastrami, turkey~^~PASTRAMI,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07053~^~0700~^~Pate, chicken liver, canned~^~PATE,CHICKEN LIVER,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07054~^~0700~^~Pate, goose liver, smoked, canned~^~PATE,GOOSE LIVER,SMOKED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07055~^~0700~^~Pate, liver, not specified, canned~^~PATE,LIVER,NOT SPECIFIED,CND~^^^^^0^^6.25^4.27^9.02^3.87 -~07056~^~0700~^~Peppered loaf, pork, beef~^~PEPPERED LOAF PORK BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07057~^~0700~^~Pepperoni, beef and pork, sliced~^~PEPPERONI,BF & PORK,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07058~^~0700~^~Pickle and pimiento loaf, pork~^~PICKLE&PIMIENTO LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07059~^~0700~^~Polish sausage, pork~^~POLISH SAUSAGE,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07060~^~0700~^~Luxury loaf, pork~^~LUXURY LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07061~^~0700~^~Mother's loaf, pork~^~MOTHER'S LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07062~^~0700~^~Picnic loaf, pork, beef~^~PICNIC LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07063~^~0700~^~Pork sausage, link/patty, unprepared~^~PORK SAUSAGE,LINK/PATTY,UNPREP~^^^^^0^^^^^ -~07064~^~0700~^~Pork sausage, link/patty, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07065~^~0700~^~Sausage, pork and beef, fresh, cooked~^~SAUSAGE,PORK & BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07066~^~0700~^~Sausage, turkey, reduced fat, brown and serve, cooked~^~SAUSAGE,TURKEY,RED FAT,BROWN & SERVE,CKD~^^^~Y~^^0^^^^^ -~07067~^~0700~^~Poultry salad sandwich spread~^~POULTRY SALAD SNDWCH SPRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07068~^~0700~^~Salami, cooked, beef~^~SALAMI CKD BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07069~^~0700~^~Salami, cooked, beef and pork~^~SALAMI,CKD,BF&PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07070~^~0700~^~Salami, cooked, turkey~^~SALAMI,COOKED,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07071~^~0700~^~Salami, dry or hard, pork~^~SALAMI,DRY OR HARD,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07072~^~0700~^~Salami, dry or hard, pork, beef~^~SALAMI,DRY OR HARD,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07073~^~0700~^~Sandwich spread, pork, beef~^~SANDWICH SPREAD,PORK,BEEF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07074~^~0700~^~Sausage, smoked link sausage, pork~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07075~^~0700~^~Sausage, smoked link sausage, pork and beef~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07077~^~0700~^~Sausage, smoked link sausage, pork and beef (nonfat dry milk added)~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF (NONFAT DRY MLK ADDED)~^^^^^0^^6.25^4.27^9.02^3.87 -~07078~^~0700~^~Thuringer, cervelat, summer sausage, beef, pork~^~THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07081~^~0700~^~Turkey breast, sliced, prepackaged~^~TURKEY BREAST,SLICED,PREPACKAGED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07083~^~0700~^~Sausage, Vienna, canned, chicken, beef, pork~^~SAUSAGE,VIENNA,CND,CHICK,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07088~^~0700~^~Honey roll sausage, beef~^~HONEY ROLL SAUSAGE,BEEF~^^^^^0^^6.25^4.27^9.02^3.87 -~07089~^~0700~^~Sausage, Italian, pork, mild, cooked, pan-fried~^~SAUSAGE,ITALIAN,PORK,MILD,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07090~^~0700~^~Luncheon sausage, pork and beef~^~LUNCHEON SAUSAGE,PORK&BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07091~^~0700~^~Sausage, New england brand, pork, beef~^~SAUSAGE,NEW ENGLAND BRAND,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07201~^~0700~^~Oscar Mayer, Bologna (beef)~^~OSCAR MAYER,BOLOGNA (BEEF)~^^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07207~^~0700~^~Oscar Mayer, Braunschweiger Liver Sausage (sliced)~^~OSCAR MAYER,BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07209~^~0700~^~Oscar Mayer, Chicken Breast (honey glazed)~^~OSCAR MAYER,CHICK BREAST (HONEY GLAZED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07212~^~0700~^~Oscar Mayer, Ham (chopped with natural juice)~^~OSCAR MAYER,HAM (CHOPPED W/ NAT JUICE)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07230~^~0700~^~Oscar Mayer, Salami (hard)~^~OSCAR MAYER,SALAMI (HARD)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~07236~^~0700~^~Oscar Mayer, Smokies Sausage Little Cheese (pork, turkey)~^~OSCAR MAYER,SMOKIES SAUSAGE LITTLE CHS (PORK,TURKEY)~^^~Kraft Foods, Inc.~^^^0^^^^^ -~07241~^~0700~^~Oscar Mayer, Wieners (beef franks)~^~OSCAR MAYER,WIENERS (BEEF FRANKS)~^~hot dog, frankfurter, hotdog, wiener~^~Kraft Foods, Inc.~^^^0^^6.25^^^ -~07254~^~0700~^~Bacon, turkey, unprepared~^~BACON,TURKEY,UNPREP~^^^^^0^^^^^ -~07278~^~0700~^~Hormel Pillow Pak Sliced Turkey Pepperoni~^~HORMEL PILLOW PAK SLICED TURKEY PEPPERONI~^^~Hormel Foods Corp.~^^^0^^6.25^4.00^9.00^4.00 -~07900~^~0700~^~Sausage, turkey, pork, and beef, low fat, smoked~^~SAUSAGE,TURKEY,PORK,& BF,LOFAT,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07905~^~0700~^~Frankfurter, beef, pork, and turkey, fat free~^~FRANKFURTER,BF,PORK,& TURKEY,FAT FREE~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^^3.68 -~07906~^~0700~^~Luncheon meat, pork, ham, and chicken, minced, canned, reduced sodium, added ascorbic acid, includes SPAM, 25% less sodium~^~LUNCHEON MEAT,PORK,HAM,&CHICK,MINCD,CND,RED NA,VIT C, (SPAM)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07908~^~0700~^~Luncheon meat, pork with ham, minced, canned, includes Spam (Hormel)~^~LUNCHEON MEAT,PORK W/ HAM,MINCED,CND,INCL SPAM (HORMEL)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07909~^~0700~^~Luncheon meat, pork and chicken, minced, canned, includes Spam Lite~^~LUNCHEON MEAT,PORK & CHICK,MINCED,CND,INCL SPAM LITE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07910~^~0700~^~Bratwurst, veal, cooked~^~BRATWURST VEAL CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07911~^~0700~^~Liverwurst spread~^~LIVERWURST SPRD~^^^^^0^^6.25^4.27^9.02^3.87 -~07912~^~0700~^~Roast beef spread~^~ROAST BF SPRD~^^^^^0^^6.25^4.00^9.00^4.00 -~07913~^~0700~^~Salami, pork, beef, less sodium~^~SALAMI PORK BF LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07914~^~0700~^~Sausage, Italian, sweet, links~^~SAUSAGE ITALIAN SWT LINKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07915~^~0700~^~Sausage, Polish, beef with chicken, hot~^~SAUSAGE POLISH BF W/ CHICK HOT~^^^^^0^^6.25^4.00^9.00^4.00 -~07916~^~0700~^~Sausage, Polish, pork and beef, smoked~^~SAUSAGE POLISH PORK & BF SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07917~^~0700~^~Sausage, pork and beef, with cheddar cheese, smoked~^~SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07918~^~0700~^~Sausage, summer, pork and beef, sticks, with cheddar cheese~^~SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS~^^^^^0^^6.25^4.00^9.00^4.00 -~07919~^~0700~^~Sausage, turkey, breakfast links, mild, raw~^~SAUSAGE,TURKEY,BRKFST LINKS,MILD,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07920~^~0700~^~Swisswurst, pork and beef, with swiss cheese, smoked~^~SWISSWURST PORK & BF W/ SWISS CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07921~^~0700~^~Bacon and beef sticks~^~BACON & BF STKS~^^^^^0^^6.25^4.00^9.00^4.00 -~07922~^~0700~^~Bratwurst, beef and pork, smoked~^~BRATWURST BF & PORK SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07923~^~0700~^~Bratwurst, chicken, cooked~^~BRATWURST,CHICK,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07924~^~0700~^~Bratwurst, pork, beef and turkey, lite, smoked~^~BRATWURST PORK BF & TURKEY LITE SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07925~^~0700~^~Pastrami, beef, 98% fat-free~^~PASTRAMI BF 98% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07926~^~0700~^~Salami, Italian, pork~^~SALAMI ITALIAN PORK~^^^^^0^^6.25^4.00^9.00^4.00 -~07927~^~0700~^~Sausage, Italian, turkey, smoked~^~SAUSAGE ITALIAN TURKEY SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07928~^~0700~^~Sausage, chicken, beef, pork, skinless, smoked~^~SAUSAGE CHICK BF PORK SKINLESS SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07929~^~0700~^~Sausage, turkey, hot, smoked~^~SAUSAGE TURKEY HOT SMOKED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07930~^~0700~^~Yachtwurst, with pistachio nuts, cooked~^~YACHTWURST,W/ PISTACHIO NUTS,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07931~^~0700~^~Beerwurst, pork and beef~^~BEERWURST PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07932~^~0700~^~Chicken breast, fat-free, mesquite flavor, sliced~^~CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07933~^~0700~^~Chicken breast, oven-roasted, fat-free, sliced~^~CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED~^^^^^0^^6.25^4.00^9.00^4.00 -~07934~^~0700~^~Kielbasa, Polish, turkey and beef, smoked~^~KIELBASA,POLISH,TURKEY & BF,SMOKED~^^^^^0^^6.25^4.00^9.00^4.00 -~07935~^~0700~^~Chicken breast, roll, oven-roasted~^~CHICKEN BREAST,ROLL,OVEN-ROASTED~^^^^^0^^6.25^4.00^9.00^4.00 -~07936~^~0700~^~Bologna, pork and turkey, lite~^~BOLOGNA PORK & TURKEY LITE~^^^^^0^^6.25^4.00^9.00^4.00 -~07937~^~0700~^~Bologna, pork, turkey and beef~^~BOLOGNA PORK TURKEY & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07938~^~0700~^~Ham, honey, smoked, cooked~^~HAM HONEY SMOKED CKD~^^^^^0^^6.25^4.00^9.00^4.00 -~07939~^~0700~^~Frankfurter, pork~^~FRANKFURTER,PORK~^~hot dog, wiener, frank~^^^^0^^6.25^4.00^9.00^4.00 -~07940~^~0700~^~Macaroni and cheese loaf, chicken, pork and beef~^~MACARONI & CHS LOAF CHICK PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00 -~07941~^~0700~^~Salami, Italian, pork and beef, dry, sliced, 50% less sodium~^~SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA~^^^^^0^^6.25^4.00^9.00^4.00 -~07942~^~0700~^~Pate, truffle flavor~^~PATE TRUFFLE FLAVOR~^^^^^0^^6.25^4.00^9.00^4.00 -~07943~^~0700~^~Turkey, breast, smoked, lemon pepper flavor, 97% fat-free~^~TURKEY,BREAST,SMOKED,LEMON PEPPER FLAVOR,97% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00 -~07944~^~0700~^~Turkey, white, rotisserie, deli cut~^~TURKEY WHITE ROTISSERIE DELI CUT~^^^^^0^^6.25^4.00^9.00^4.00 -~07945~^~0700~^~Frankfurter, beef, heated~^~FRANKFURTER BF HTD~^~hot dog, frank, wiener~^^^^0^^6.25^4.00^9.00^4.00 -~07949~^~0700~^~Frankfurter, meat, heated~^~FRANKFURTER MEAT HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~07950~^~0700~^~Frankfurter, meat~^~FRANKFURTER MEAT~^^^^^0^^6.25^4.00^9.00^4.00 -~07951~^~0700~^~Scrapple, pork~^~SCRAPPLE,PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~07952~^~0700~^~Bologna, chicken, turkey, pork~^~BOLOGNA,CHICK,TURKEY,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07953~^~0700~^~Pork sausage, link/patty, fully cooked, microwaved~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,MICROWAVED~^^^~Y~^^0^^^^^ -~07954~^~0700~^~Sausage, breakfast sausage, beef, pre-cooked, unprepared~^~SAUSAGE,BRKFST SAUSAGE,BF,PRE-COOKED,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07955~^~0700~^~Sausage, turkey, fresh, raw~^~SAUSAGE,TURKEY,FRSH,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~07956~^~0700~^~Sausage, beef, fresh, cooked~^~SAUSAGE,BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~07957~^~0700~^~Sausage, pork and turkey, pre-cooked~^~SAUSAGE,PORK & TURKEY,PRE-COOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~07958~^~0700~^~Sausage, turkey, fresh, cooked~^~SAUSAGE,TURKEY,FRSH,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~07959~^~0700~^~Bologna, chicken, pork, beef~^~BOLOGNA,CHICK,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87 -~07960~^~0700~^~Bologna, chicken, pork~^~BOLOGNA,CHICK,PORK~^^^^^0^^6.25^4.27^9.02^3.87 -~07961~^~0700~^~Chicken breast, deli, rotisserie seasoned, sliced, prepackaged~^~CHICKEN BREAST,DELI,ROTISSERIE SEASONED,SLICED,PREPACKAGED~^^^~Y~^^0^^^^^ -~07962~^~0700~^~Frankfurter, meat and poultry, unheated~^~Frankfurter, meat and poultry, unheated~^^^~Y~^^0^^^^^ -~07963~^~0700~^~Frankfurter, meat and poultry, cooked, boiled~^~Frankfurter, meat and poultry, cooked, boiled~^^^~Y~^^0^^^^^ -~07964~^~0700~^~Frankfurter, meat and poultry, cooked, grilled~^~Frankfurter, meat and poultry, cooked, grilled~^^^~Y~^^0^^^^^ -~07965~^~0700~^~Pork sausage, link/patty, reduced fat, unprepared~^~PORK SAUSAGE,LINK/PATTY,RED FAT,UNPREP~^^^~Y~^^0^^^^^ -~07966~^~0700~^~Pork sausage, link/patty, reduced fat, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,RED FAT,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07967~^~0700~^~Pork sausage, link/patty, fully cooked, unheated~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,UNHTD~^^^^^0^^^^^ -~07968~^~0700~^~Kielbasa, fully cooked, grilled~^~KIELBASA,FULLY CKD,GRILLED~^^^~Y~^^0^^^^^ -~07969~^~0700~^~Kielbasa, fully cooked, pan-fried~^~KIELBASA,FULLY CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~07970~^~0700~^~Kielbasa, fully cooked, unheated~^~KIELBASA,FULLY CKD,UNHTD~^^^~Y~^^0^^^^^ -~07971~^~0700~^~Bologna, meat and poultry~^~BOLOGNA,MEAT & POULTRY~^^^~Y~^^0^^^^^ -~07972~^~0700~^~Meatballs, frozen, Italian style~^~MEATBALLS,FRZ,ITALIAN STYLE~^^^^^0^^^^^ -~07973~^~0700~^~Bacon, turkey, microwaved~^~BACON,TURKEY,MICROWAVED~^^^~Y~^^0^^^^^ -~07974~^~0700~^~Bacon, turkey, low sodium~^~BACON,TURKEY,LO NA~^^^~Y~^^0^^6.25^^^ -~07976~^~0700~^~Sausage, chicken or turkey, Italian style, lower sodium~^~SAUSAGE,CHICK OR TURKEY,ITALIAN STYLE,LOWER NA~^^^~Y~^^0^^6.25^^^ -~07977~^~0700~^~Ham, smoked, extra lean, low sodium~^~HAM,SMOKED,EX LN,LO NA~^^^~Y~^^0^^6.25^^^ -~07978~^~0700~^~Pork sausage, reduced sodium, cooked~^~PORK SAUSAGE,RED NA,CKD~^^^~Y~^^0^^6.25^^^ -~07979~^~0700~^~Sausage, pork, turkey, and beef, reduced sodium~^~SAUSAGE,PORK,TURKEY,& BF,RED NA~^^^~Y~^^0^^^^^ -~08002~^~0800~^~Cereals ready-to-eat, POST, ALPHA-BITS~^~CEREALS RTE,POST,ALPHA-BITS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08010~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08011~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH with CRUNCHBERRIES~^~CEREALS RTE,QUAKER,CAP'N CRUNCH W/ CRUNCHBERRIES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08012~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S PEANUT BUTTER CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S PNUT BUTTER CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08013~^~0800~^~Cereals ready-to-eat, GENERAL MILLS, CHEERIOS~^~CEREALS RTE,GENERAL MILLS,CHEERIOS~^^~General Mills Inc.~^~Y~^^0^^6.25^^^ -~08015~^~0800~^~Cereals ready-to-eat, POST, COCOA PEBBLES~^~CEREALS RTE,POST,COCOA PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08018~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER CRUNCHY BRAN~^~CEREALS RTE,QUAKER,QUAKER CRUNCHY BRAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08025~^~0800~^~Cereals ready-to-eat, RALSTON CRISP RICE~^~CEREALS RTE,RALSTON CRISP RICE~^^~Ralston Foods~^~Y~^^0^^^^^ -~08029~^~0800~^~Cereals ready-to-eat, POST Bran Flakes~^~CEREALS RTE,POST BRAN FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08034~^~0800~^~Cereals ready-to-eat, POST, FRUITY PEBBLES~^~CEREALS RTE,POST,FRUITY PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08037~^~0800~^~Cereals ready-to-eat, granola, homemade~^~CEREALS RTE,GRANOLA,HOMEMADE~^^^~Y~^^0^^5.80^^^ -~08038~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Cereal~^~CEREALS RTE,POST,GRAPE-NUTS CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08039~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Flakes~^~CEREALS RTE,POST,GRAPE-NUTS FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08046~^~0800~^~Cereals ready-to-eat, POST, Honeycomb Cereal~^~CEREALS RTE,POST,HONEYCOMB CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08047~^~0800~^~Cereals ready-to-eat, QUAKER, KING VITAMAN~^~CEREALS RTE,QUAKER,KING VITAMAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08049~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT LIFE, plain~^~CEREALS RTE,QUAKER,QUAKER OAT LIFE,PLN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08054~^~0800~^~Cereals ready-to-eat, QUAKER, 100% Natural Granola, Oats, Wheat and Honey~^~CEREALS RTE,QUAKER,100% NAT GRANOLA,OATS,WHEAT & HONEY~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08059~^~0800~^~Cereals ready-to-eat, QUAKER, SWEET CRUNCH/QUISP~^~CEREALS RTE,QUAKER,SWT CRUNCH/QUISP~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08061~^~0800~^~Cereals ready-to-eat, POST Raisin Bran Cereal~^~CEREALS RTE,POST RAISIN BRAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08066~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Rice~^~CEREALS RTE,QUAKER,QUAKER PUFFED RICE~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08073~^~0800~^~Cereals ready-to-eat, POST, GOLDEN CRISP~^~CEREALS RTE,POST,GOLDEN CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08074~^~0800~^~Cereals ready-to-eat, RALSTON TASTEEOS~^~CEREALS RTE,RALSTON TASTEEOS~^^~Ralston Foods~^~Y~^^0^^^^^ -~08081~^~0800~^~Cereals ready-to-eat, POST, Honey Nut Shredded Wheat~^~CEREALS RTE,POST,HONEY NUT SHREDDED WHEAT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08083~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CORN BURSTS~^~CEREALS RTE,MALT-O-MEAL,CORN BURSTS~^^~MOM Brands~^~Y~^^0^^^^^ -~08084~^~0800~^~Cereals ready-to-eat, wheat germ, toasted, plain~^~CEREALS RTE,WHEAT GERM,TSTD,PLN~^^^~Y~^^0^^5.80^3.59^8.37^3.78 -~08085~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Honey Crunch Wheat Germ~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER HONEY CRUNCH WHEAT GERM~^^~Sun Country Foods Inc.~^~Y~^^0^^6.25^^^ -~08090~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, dry~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,DRY~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08091~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~08092~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, dry~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,DRY~^~original~^~The Quaker Oats, Co.~^~Y~^^0^^^3.46^8.37^4.16 -~08093~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, prepared (microwaved or boiling water added), without salt~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,PREP,WO/ SALT~^^~The Quaker Oats, Co.~^^^0^^^3.46^8.37^4.16 -~08094~^~0800~^~Cereals, QUAKER, corn grits, instant, cheddar cheese flavor, dry~^~CEREALS,QUAKER,CORN GRITS,INST,CHEDDAR CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08096~^~0800~^~Cereals, QUAKER, Instant Grits, Country Bacon flavor, dry~^~CEREALS,QUAKER,INST GRITS,COUNTRY BACON FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08100~^~0800~^~Cereals, CREAM OF RICE, dry~^~CEREALS,CRM OF RICE,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.95^3.82^8.37^4.16 -~08102~^~0800~^~Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry~^~CEREALS,CRM OF WHEAT,REG,10 MINUTE COOKING,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08103~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08104~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,DRY~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~08105~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), cooked with water, without salt~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,QUICK,CKD W/ H2O,WO/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08106~^~0800~^~Cereals, CREAM OF WHEAT, instant, dry~^~CEREALS,CREAM OF WHEAT,INST,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12 -~08107~^~0800~^~Cereals, CREAM OF WHEAT, instant, prepared with water, without salt~^~CEREALS,CREAM OF WHEAT,INST,PREP W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08116~^~0800~^~Cereals, MALT-O-MEAL, original, plain, dry~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,DRY~^^~MOM Brands~^~Y~^^0^^5.70^3.60^8.37^4.10 -~08120~^~0800~^~Cereals, oats, regular and quick, not fortified, dry~^~CEREALS,OATS,REG & QUICK,NOT FORT,DRY~^~oatmeal, old-fashioned oats, rolled oats~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08121~^~0800~^~Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt~^~CEREALS,OATS,REG & QUICK,UNENR,CKD W/ H2O,WO/ SALT~^~oatmeal, cooked~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08122~^~0800~^~Cereals, oats, instant, fortified, plain, dry~^~CEREALS,OATS,INST,FORT,PLN,DRY~^~instant oatmeal, Quaker original flavor~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08123~^~0800~^~Cereals, oats, instant, fortified, plain, prepared with water (boiling water added or microwaved)~^~CEREALS,OATS,INST,FORT,PLN,PREP W/ H2O~^~instant oatmeal~^^~Y~^^0^^5.83^3.46^8.37^4.12 -~08124~^~0800~^~Cereals, QUAKER, Instant Oatmeal, apples and cinnamon, dry~^~CEREALS,QUAKER,INST OATMEAL,APPLS & CINN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08128~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, dry~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,DRY~^~oatmeal~^^~Y~^^0^^5.83^^^ -~08129~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08130~^~0800~^~Cereals, QUAKER, Instant Oatmeal, maple and brown sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,MAPLE & BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08133~^~0800~^~Cereals, oats, instant, fortified, with raisins and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,PREP W/ H2O~^^^^^0^^^^^ -~08138~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,MARSHMLLW MATEYS~^^~MOM Brands~^~Y~^^0^^^^^ -~08142~^~0800~^~Cereals, WHEATENA, dry~^~CEREALS,WHEATENA,DRY~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08143~^~0800~^~Cereals, WHEATENA, cooked with water~^~CEREALS,WHEATENA,CKD W/ H2O~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08144~^~0800~^~Cereals, whole wheat hot natural cereal, dry~^~CEREALS,WHL WHEAT HOT NAT CRL,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~08145~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, without salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,WO/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08146~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Wheat~^~CEREALS RTE,QUAKER,QUAKER PUFFED WHEAT~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08147~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original big biscuit~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL BIG BISCUIT~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08148~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08156~^~0800~^~Cereals ready-to-eat, rice, puffed, fortified~^~CEREALS RTE,RICE,PUFFED,FORT~^^^^^0^^5.95^3.82^8.37^4.16 -~08157~^~0800~^~Cereals ready-to-eat, wheat, puffed, fortified~^~CEREALS RTE,WHEAT,PUFFED,FORT~^^^^^0^^5.83^3.59^8.37^3.78 -~08160~^~0800~^~Cereals, corn grits, yellow, regular and quick, unenriched, dry~^~CEREALS,CORN GRITS,YEL,REG & QUICK,UNENR,DRY~^^^^^0^^6.25^3.46^8.37^4.16 -~08161~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08164~^~0800~^~Cereals, corn grits, yellow, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08165~^~0800~^~Cereals, corn grits, yellow, regular, quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,YEL,REG,QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16 -~08168~^~0800~^~Cereals, CREAM OF RICE, cooked with water, with salt~^~CEREALS,CREAM OF RICE,CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.95^3.82^8.37^4.16 -~08169~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12 -~08172~^~0800~^~Cereals, farina, unenriched, dry~^~CEREALS,FARINA,UNENR,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~08173~^~0800~^~Cereals, farina, enriched, cooked with water, with salt~^~CEREALS,FARINA,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.70^4.05^8.37^4.12 -~08177~^~0800~^~Cereals, MALT-O-MEAL, chocolate, dry~^~CEREALS,MALT-O-MEAL,CHOC,DRY~^^~MOM Brands~^^^0^^5.70^^^ -~08180~^~0800~^~Cereals, oats, regular and quick and instant, unenriched, cooked with water (includes boiling and microwaving), with salt~^~CEREALS,OATS,REG & QUICK & INST,UNENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.46^8.37^4.12 -~08182~^~0800~^~Cereals, WHEATENA, cooked with water, with salt~^~CEREALS,WHEATENA,CKD W/ H2O,W/ SALT~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78 -~08183~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, with salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.59^8.37^3.78 -~08191~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, lightly frosted, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,LIGHTLY FRSTD,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08192~^~0800~^~Cereals ready-to-eat, POST SELECTS Blueberry Morning~^~CEREALS RTE,POST SELECTS BLUEBERRY MORNING~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08200~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, dry~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^ -~08204~^~0800~^~Cereals ready-to-eat, chocolate-flavored frosted puffed corn~^~CEREALS RTE,CHOCOLATE-FLAVORED FRSTD PUFFED CORN~^^^~Y~^^0^^^^^ -~08206~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COCO-ROOS~^~CEREALS RTE,MALT-O-MEAL,COCO-ROOS~^^~MOM Brands~^~Y~^^0^^^^^ -~08210~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT CINNAMON LIFE~^~CEREALS RTE,QUAKER,QUAKER OAT CINN LIFE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08211~^~0800~^~Cereals ready-to-eat, QUAKER, HONEY GRAHAM OH!S~^~CEREALS RTE,QUAKER,HONEY GRAHAM OH!S~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08214~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares~^~CEREALS RTE,QUAKER,OATMEAL SQUARES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08215~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares, cinnamon~^~CEREALS RTE,QUAKER,OATMEAL SQUARES,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08216~^~0800~^~Cereals ready-to-eat, QUAKER, Toasted Multigrain Crisps~^~CEREALS RTE,QUAKER,TSTD MULTIGRAIN CRISPS~^~QUAKER Oat Bran Cereal~^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08218~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER 100% Natural Granola with Oats, Wheat, Honey, and Raisins~^~CEREALS RTE,QUAKER,QUAKER GRANOLA W/ OATS,WHEAT& RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08220~^~0800~^~Cereals ready-to-eat, QUAKER, Low Fat 100% Natural Granola with Raisins~^~CEREALS RTE,QUAKER,LOFAT 100% NAT GRANOLA W/ RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08221~^~0800~^~Cereals, QUAKER, Instant Grits, Butter flavor, dry~^~CEREALS,QUAKER,INST GRITS,BUTTER FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08225~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream variety, dry~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM VAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08228~^~0800~^~Cereals, QUAKER, Instant Oatmeal, raisins, dates and walnuts, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISINS,DATES & WALNUTS,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08231~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, dry~^~CEREALS,QUAKER,OAT BRAN,QUAKER/MOTHER'S OAT BRAN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08236~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, prepared with water, no salt~^~CEREALS,QKR,OAT BRAN,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08240~^~0800~^~Cereals, Oat Bran, QUAKER, QUAKER/MOTHER'S Oat Bran, prepared with water, salt~^~CEREALS,OAT BRAN,QKR,QKR/MOTHER'S OAT BRAN,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08249~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, no salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08252~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08290~^~0800~^~Cereals ready-to-eat, HEALTH VALLEY, FIBER 7 Flakes~^~CEREALS RTE,HEALTH VALLEY,FIBER 7 FLAKES~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~08305~^~0800~^~Cereals ready-to-eat, Post, Waffle Crisp~^~CEREALS RTE,POST,WAFFLE CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08314~^~0800~^~Cereals, QUAKER, hominy grits, white, quick, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,QUICK,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08316~^~0800~^~Cereals, QUAKER, hominy grits, white, regular, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,REG,DRY~^~old fashioned~^~The Quaker Oats, Co.~^^^0^^^^^ -~08346~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,COLOSSAL CRUNCH~^^~MOM Brands~^~Y~^^0^^^^^ -~08347~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, BERRY COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,BERRY COLOSSAL CRUNCH~^^~MOM Brands~^^^0^^^^^ -~08348~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Crispy Rice~^~CEREALS RTE,MALT-O-MEAL,CRISPY RICE~^^~MOM Brands~^^^0^^^^^ -~08349~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, TOOTIE FRUITIES~^~CEREALS RTE,MALT-O-MEAL,TOOTIE FRUITIES~^^~MOM Brands~^~Y~^^0^^^^^ -~08351~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S PEANUT BUTTER BUMPERS Cereal~^~CEREALS RTE,QUAKER,MOTHER'S PNUT BUTTER BUMPERS CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08352~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Toasted Oat Bran cereal~^~CEREALS RTE,QUAKER,MOTHER'S TSTD OAT BRAN CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08353~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Cinnamon Oat Crunch~^~CEREALS RTE,QUAKER,MOTHER'S CINN OAT CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08354~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S GRAHAM BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S GRAHAM BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08355~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S COCOA BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S COCOA BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08363~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Toasted Wheat Bran~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER TSTD WHEAT BRAN~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08365~^~0800~^~Cereals ready-to-eat, QUAKER, Shredded Wheat, bagged cereal~^~CEREALS RTE,QUAKER,SHREDDED WHEAT,BAGGED CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08366~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Wheat Germ, Regular~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER WHEAT GERM,REG~^^~Sun Country Foods Inc.~^^^0^^6.25^^^ -~08402~^~0800~^~Cereals, QUAKER, Quick Oats, Dry~^~CEREALS,QUAKER,QUICK OATS,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08409~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Flakes~^~CEREALS RTE,MALT-O-MEAL,FRSTD FLAKES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08410~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon-Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,CINNAMON-SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08411~^~0800~^~Cereals, QUAKER, Instant Oatmeal, DINOSAUR EGGS, Brown Sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,DINOSAUR EGGS,BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08417~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Banana Bread, dry~^~CEREALS,QUAKER,INST OATMEAL,BANANA BREAD,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08435~^~0800~^~Cereals ready-to-eat, UNCLE SAM CEREAL~^~CEREALS RTE,UNCLE SAM CRL~^^~Attune Foods, Inc.~^~Y~^^0^^^^^ -~08436~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Raisin and Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISIN & SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08444~^~0800~^~Cereals, QUAKER, Instant Grits, Redeye Gravy & Country Ham flavor, dry~^~CEREALS,QUAKER,INST GRITS,REDEYE GRVY COUNTRY HAM FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08449~^~0800~^~Cereals, QUAKER, Instant Grits Product with American Cheese Flavor, dry~^~CEREALS,QUAKER,INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08450~^~0800~^~Cereals, QUAKER, Instant Grits, Ham 'n' Cheese flavor, dry~^~CEREALS,QUAKER,INST GRITS,HAM 'N' CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08451~^~0800~^~Cereals, QUAKER, Quick Oats with Iron, Dry~^~CEREALS,QUAKER,QUICK OATS W/ IRON,DRY~^~quick oats with iron for WIC program~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08452~^~0800~^~Cereals, QUAKER, Whole Wheat Natural Cereal, dry~^~CEREALS,QUAKER,WHL WHEAT NAT CRL,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08476~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey BUZZERS~^~CEREALS RTE,MALT-O-MEAL,HONEY BUZZERS~^^~MOM Brands~^^^0^^6.25^^^ -~08478~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, GOLDEN PUFFS~^~CEREALS RTE,MALT-O-MEAL,GOLDEN PUFFS~^^~MOM Brands~^^^0^^6.25^^^ -~08481~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, HONEY GRAHAM SQUARES~^~CEREALS RTE,MALT-O-MEAL,HONEY GRAHAM SQUARES~^^~MOM Brands~^^^0^^6.25^^^ -~08484~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Raisin Bran Cereal~^~CEREALS RTE,MALT-O-MEAL,RAISIN BRAN CRL~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08487~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Blueberry MUFFIN TOPS Cereal~^~CEREALS RTE,MALT-O-MEAL,BLUEBERRY MUFFIN TOPS CRL~^^~MOM Brands~^^^0^^6.25^^^ -~08488~^~0800~^~Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,FARINA HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08489~^~0800~^~Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,MAPLE & BROWN SUGAR HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^ -~08491~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Honey Nut TOASTY O'S~^~CEREALS RTE,MOM'S BEST,HONEY NUT TOASTY O'S~^^~MOM Brands~^^^0^^6.25^^^ -~08493~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Apple ZINGS~^~CEREALS RTE,MALT-O-MEAL,APPL ZINGS~^^~MOM Brands~^^^0^^6.25^^^ -~08494~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CINNAMON TOASTERS~^~CEREALS RTE,MALT-O-MEAL,CINN TOASTERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08495~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Cocoa DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,COCOA DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08500~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Mini SPOONERS~^~CEREALS RTE,MALT-O-MEAL,FRSTD MINI SPOONERS~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08501~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Fruity DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,FRUITY DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^ -~08504~^~0800~^~Cereals ready-to-eat, RALSTON Enriched Wheat Bran flakes~^~CEREALS RTE,RALSTON ENR WHEAT BRAN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08505~^~0800~^~Cereals ready-to-eat, RALSTON Corn Biscuits~^~CEREALS RTE,RALSTON CORN BISCUITS~^^~Ralston Foods~^^^0^^^^^ -~08506~^~0800~^~Cereals ready-to-eat, RALSTON Corn Flakes~^~CEREALS RTE,RALSTON CORN FLAKES~^^~Ralston Foods~^^^0^^^^^ -~08507~^~0800~^~Cereals ready-to-eat, RALSTON Crispy Hexagons~^~CEREALS RTE,RALSTON CRISPY HEXAGONS~^^~Ralston Foods~^^^0^^^^^ -~08510~^~2500~^~Milk and cereal bar~^~MILK & CRL BAR~^^^~Y~^^0^^^^^ -~08511~^~0800~^~Cereals, MALT-O-MEAL, original, plain, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08512~^~0800~^~Cereals, MALT-O-MEAL, chocolate, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,CHOC,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^ -~08544~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Cranberry Almond Crunch~^~CEREALS RTE,POST GREAT GRAINS CRANBERRY ALMOND CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08546~^~2500~^~Rice and Wheat cereal bar~^~RICE & WHEAT CRL BAR~^^^~Y~^^0^^6.25^^^ -~08549~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal~^~CEREALS RTE,QUAKER,QUAKER HONEY GRAHAM LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08550~^~0800~^~Cereals ready-to-eat, QUAKER, Christmas Crunch~^~CEREALS RTE,QUAKER,CHRISTMAS CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^ -~08554~^~0800~^~Cereals ready-to-eat, POST SELECTS Maple Pecan Crunch~^~CEREALS RTE,POST SELECTS MAPLE PECAN CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08571~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS, Pumpkin Granola~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS,PUMPKIN GRANOLA~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08573~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry~^~CEREALS,CRM OF WHEAT,2 1/2 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08574~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN CK,CKD W/H2O,STOVE-TOP,WO/SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08575~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN COOK TIME,CKD W/H2O,MW,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08576~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, dry~^~CEREALS,CRM OF WHEAT,1 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08577~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,STOVE-TOP,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08578~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,MICROWAVED,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12 -~08580~^~0800~^~Incaparina, dry mix (corn and soy flours), unprepared~^~INCAPARINA,DRY MIX (CORN & SOY FLOURS),UNPREP~^^^^^0^^6.25^^^ -~08625~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S Halloween Crunch~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S HALLOWEEN CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08627~^~0800~^~Cereals ready-to-eat, QUAKER, Natural Granola Apple Cranberry Almond~^~CEREALS RTE,QUAKER,NAT GRANOLA APPL CRANBERRY ALMOND~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08628~^~0800~^~Cereals ready-to-eat, QUAKER, Maple Brown Sugar LIFE Cereal~^~CEREALS RTE,QUAKER,MAPLE BROWN SUGAR LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08629~^~0800~^~Cereals ready-to-eat, QUAKER, Cap'n Crunch's OOPS! All Berries Cereal~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S OOPS! ALL BERRIES CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08632~^~0800~^~Cereals ready-to-eat, QUAKER Oatmeal Squares, Golden Maple~^~CEREALS RTE,QUAKER OATMEAL SQUARES,GOLDEN MAPLE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08633~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS with vanilla bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS W/ VANILLA BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08639~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Spice, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,CINN SPICE,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08640~^~0800~^~Cereals, QUAKER, Instant Oatmeal Organic, Regular~^~CEREALS,QUAKER,INST OATMEAL ORGANIC,REG~^~instant oatmeal, not fortified, no added salt~^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08641~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream, variety of flavors, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^^^^ -~08642~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Apple and Cinnamon, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,APPL & CINN,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08655~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, pecan bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,PECAN BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~08656~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS flakes~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS FLAKES~^^~Nature's Path~^~Y~^^0^^6.25^^^ -~08657~^~0800~^~Cereals ready-to-eat, BARBARA'S PUFFINS, original~^~CEREALS RTE,BARBARA'S PUFFINS,ORIGINAL~^^~Barbara's Bakery, Inc~^~Y~^^0^^^^^ -~08662~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with real strawberries~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ REAL STRAWBERRIES~^^~Post Foods, LLC~^^^0^^^^^ -~08665~^~0800~^~Cereals ready-to-eat, POST HONEY BUNCHES OF OATS with cinnamon bunches~^~CEREALS RTE,POST HONEY BUNCHES OF OATS W/ CINN BUNCHES~^^~Post Foods, LLC~^^^0^^6.25^^^ -~08672~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CHOCOLATE MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,CHOC MARSHMLLW MATEYS~^^~MOM Brands~^^^0^^6.25^^^ -~08673~^~0800~^~Cereals, ready-to-eat, MALT-O-MEAL, Blueberry Mini SPOONERS~^~CEREALS,RTE,MALT-O-MEAL,BLUEBERRY MINI SPOONERS~^^~MOM Brands~^^^0^^6.25^^^ -~08674~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY~^^~MOM Brands~^^^0^^6.25^^^ -~08675~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey & almonds~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY & ALMONDS~^^~MOM Brands~^^^0^^6.25^^^ -~08676~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey Nut SCOOTERS~^~CEREALS RTE,MALT-O-MEAL,HONEY NUT SCOOTERS~^^~MOM Brands~^^^0^^6.25^^^ -~08680~^~0800~^~Cereals, oats, instant, fortified, maple and brown sugar, dry~^~CEREALS,OATS,INST,FORT,MAPLE & BROWN SUGAR,DRY~^^^~Y~^^0^^^^^ -~08685~^~0800~^~Cereals ready-to-eat, QUAKER WHOLE HEARTS oat cereal~^~CEREALS RTE,QUAKER WHL HEARTS OAT CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08686~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, maple and brown sugar~^~CEREALS,QUAKER,WT CONTROL INST OATMEAL,MAPLE & BROWN SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08687~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, banana bread~^~CEREALS,QUAKER,WEIGHT CONTROL INST OATMEAL,BANANA BREAD~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08688~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Swirl, high fiber~^~CEREALS,QUAKER,INST OATMEAL,CINN SWIRL,HI FIBER~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08689~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, blueberry hazelnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,BLUEBERRY HAZELNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08690~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, apple walnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,APPL WALNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08691~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, summer berry, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,SMMR BERRY,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08692~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, peach almond, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,PEACH ALMOND,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08693~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, cherry pistachio, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,CHERRY PISTACHIO,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08694~^~0800~^~Cereals, QUAKER, Instant Oatmeal, weight control, cinnamon~^~CEREALS,QUAKER,INST OATMEAL,WEIGHT CONTROL,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^ -~08709~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Sweetened WHEAT-FULS~^~CEREALS RTE,MOM'S BEST,SWTND WHEAT-FULS~^^~MOM Brands~^^^0^^6.25^^^ -~09001~^~0900~^~Acerola, (west indian cherry), raw~^~ACEROLA,(WEST INDIAN CHERRY),RAW~^^^^~18% seed, 2% stem end~^20^~Malpighia emarginata~^6.25^3.36^8.37^3.60 -~09002~^~0900~^~Acerola juice, raw~^~ACEROLA JUICE,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09003~^~0900~^~Apples, raw, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,WITH SKIN~^^^~Y~^~Core and stem~^10^~Malus domestica~^6.25^3.36^8.37^3.60 -~09004~^~0900~^~Apples, raw, without skin~^~APPLES,RAW,WITHOUT SKIN~^^^~Y~^~10% core and stem, 13% skin~^23^~Malus domestica~^6.25^3.36^8.37^3.60 -~09005~^~0900~^~Apples, raw, without skin, cooked, boiled~^~APPLES,RAW,WO/SKN,CKD,BLD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09006~^~0900~^~Apples, raw, without skin, cooked, microwave~^~APPLES,RAW,WO/ SKN,CKD,MICROWAVE~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09008~^~0900~^~Apples, canned, sweetened, sliced, drained, heated~^~APPLES,CND,SWTND,SLICED,DRND,HTD~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09009~^~0900~^~Apples, dehydrated (low moisture), sulfured, uncooked~^~APPLES,DEHYD (LO MOIST),SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09010~^~0900~^~Apples, dehydrated (low moisture), sulfured, stewed~^~APPLES,DEHYD (LO MOIST),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09011~^~0900~^~Apples, dried, sulfured, uncooked~^~APPLES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09012~^~0900~^~Apples, dried, sulfured, stewed, without added sugar~^~APPLES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09013~^~0900~^~Apples, dried, sulfured, stewed, with added sugar~^~APPLES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^^^ -~09014~^~0900~^~Apples, frozen, unsweetened, unheated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,UNHTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09015~^~0900~^~Apples, frozen, unsweetened, heated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,HTD~^^^^^0^^6.25^3.36^8.37^3.60 -~09016~^~0900~^~Apple juice, canned or bottled, unsweetened, without added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09017~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09018~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09019~^~0900~^~Applesauce, canned, unsweetened, without added ascorbic acid (Includes foods for USDA's Food Distribution Program)~^~APPLESAUCE,CND,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09020~^~0900~^~Applesauce, canned, sweetened, without salt~^~APPLESAUCE,CND,SWTND,WO/ SALT~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09021~^~0900~^~Apricots, raw~^~APRICOTS,RAW~^^^~Y~^~Pits~^7^~Prunus armeniaca~^6.25^3.36^8.37^3.60 -~09022~^~0900~^~Apricots, canned, water pack, with skin, solids and liquids~^~APRICOTS,CND,H2O PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09023~^~0900~^~Apricots, canned, water pack, without skin, solids and liquids~^~APRICOTS,CND,H2O PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.60 -~09024~^~0900~^~Apricots, canned, juice pack, with skin, solids and liquids~^~APRICOTS,CND,JUC PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09025~^~0900~^~Apricots, canned, extra light syrup pack, with skin, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~APRICOTS,CND,EX LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09026~^~0900~^~Apricots, canned, light syrup pack, with skin, solids and liquids~^~APRICOTS,CND,LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09027~^~0900~^~Apricots, canned, heavy syrup pack, with skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09028~^~0900~^~Apricots, canned, heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.75 -~09029~^~0900~^~Apricots, canned, extra heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,EX HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.78 -~09030~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, uncooked~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09031~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, stewed~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09032~^~0900~^~Apricots, dried, sulfured, uncooked~^~APRICOTS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09033~^~0900~^~Apricots, dried, sulfured, stewed, without added sugar~^~APRICOTS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09034~^~0900~^~Apricots, dried, sulfured, stewed, with added sugar~^~APRICOTS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09035~^~0900~^~Apricots, frozen, sweetened~^~APRICOTS,FROZEN,SWEETENED~^^^^^0^^6.25^3.36^8.37^3.78 -~09036~^~0900~^~Apricot nectar, canned, with added ascorbic acid~^~APRICOT NECTAR,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09037~^~0900~^~Avocados, raw, all commercial varieties~^~AVOCADOS,RAW,ALL COMM VAR~^^^~Y~^~Seed and skin~^26^~Persea americana~^6.25^3.36^8.37^3.60 -~09038~^~0900~^~Avocados, raw, California~^~AVOCADOS,RAW,CALIFORNIA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09039~^~0900~^~Avocados, raw, Florida~^~AVOCADOS,RAW,FLORIDA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60 -~09040~^~0900~^~Bananas, raw~^~BANANAS,RAW~^^^~Y~^~Skin~^36^~Musa acuminata Colla~^6.25^3.36^8.37^3.60 -~09041~^~0900~^~Bananas, dehydrated, or banana powder~^~BANANAS,DEHYD,OR BANANA PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09042~^~0900~^~Blackberries, raw~^~BLACKBERRIES,RAW~^^^~Y~^~Caps and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09043~^~0900~^~Blackberry juice, canned~^~BLACKBERRY JUC,CND~^^^~Y~^^0^^^^^ -~09044~^~0900~^~Cherries, tart, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,TART,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09046~^~0900~^~Blackberries, canned, heavy syrup, solids and liquids~^~BLACKBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09048~^~0900~^~Blackberries, frozen, unsweetened~^~BLACKBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09050~^~0900~^~Blueberries, raw~^~BLUEBERRIES,RAW~^^^~Y~^~Stems and green or spoiled berries~^5^~Vaccinium spp.~^6.25^3.36^8.37^3.60 -~09052~^~0900~^~Blueberries, canned, heavy syrup, solids and liquids~^~BLUEBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09053~^~0900~^~Blueberries, wild, frozen (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,WILD,FRZ~^^^^^0^^6.25^^^ -~09054~^~0900~^~Blueberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09055~^~0900~^~Blueberries, frozen, sweetened~^~BLUEBERRIES,FRZ,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09056~^~0900~^~Boysenberries, canned, heavy syrup~^~BOYSENBERRIES,CND,HVY SYRUP~^^^^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.75 -~09057~^~0900~^~Boysenberries, frozen, unsweetened~^~BOYSENBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09059~^~0900~^~Breadfruit, raw~^~BREADFRUIT,RAW~^^^~Y~^~9% core, 13% skin~^22^~Artocarpus altilis~^6.25^3.36^8.37^3.60 -~09060~^~0900~^~Carambola, (starfruit), raw~^~CARAMBOLA,(STARFRUIT),RAW~^^^~Y~^~Seeds and stem end~^3^~Averrhoa carambola~^6.25^3.36^8.37^3.60 -~09061~^~0900~^~Carissa, (natal-plum), raw~^~CARISSA,(NATAL-PLUM),RAW~^^^^~7% seeds, 7% skin~^14^~Carissa macrocarpa~^6.25^3.36^8.37^3.60 -~09062~^~0900~^~Cherimoya, raw~^~CHERIMOYA,RAW~^^^^~Seeds, skin and core~^31^~Annona cherimola~^6.25^3.36^8.37^3.60 -~09063~^~0900~^~Cherries, sour, red, raw~^~CHERRIES,SOUR,RED,RAW~^^^~Y~^~Pits and stems~^10^~Prunus cerasus~^6.25^3.36^8.37^3.60 -~09064~^~0900~^~Cherries, sour, red, canned, water pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09065~^~0900~^~Cherries, sour, red, canned, light syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09066~^~0900~^~Cherries, sour, red, canned, heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09067~^~0900~^~Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09068~^~0900~^~Cherries, sour, red, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,SOUR,RED,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09070~^~0900~^~Cherries, sweet, raw~^~CHERRIES,SWEET,RAW~^^^~Y~^~Pits and stems~^8^~Prunus avium~^6.25^3.36^8.37^3.60 -~09071~^~0900~^~Cherries, sweet, canned, water pack, solids and liquids~^~CHERRIES,SWT,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.60 -~09072~^~0900~^~Cherries, sweet, canned, juice pack, solids and liquids~^~CHERRIES,SWT,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.70 -~09073~^~0900~^~Cherries, sweet, canned, light syrup pack, solids and liquids~^~CHERRIES,SWT,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.71 -~09074~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP PK,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09075~^~0900~^~Cherries, sweet, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^8^^6.25^3.36^8.37^3.78 -~09077~^~0900~^~Crabapples, raw~^~CRABAPPLES,RAW~^^^^~Core and stems~^8^~Malus spp.~^6.25^3.36^8.37^3.60 -~09078~^~0900~^~Cranberries, raw~^~CRANBERRIES,RAW~^^^~Y~^~Stems and spoiled berries~^2^~Vaccinium macrocarpon~^6.25^3.36^8.37^3.60 -~09079~^~0900~^~Cranberries, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CRANBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09081~^~0900~^~Cranberry sauce, canned, sweetened~^~CRANBERRY SAU,CND,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.84 -~09082~^~0900~^~Cranberry-orange relish, canned~^~CRANBERRY-ORANGE RELISH,CND~^^^^^0^^6.25^3.36^8.37^3.82 -~09083~^~0900~^~Currants, european black, raw~^~CURRANTS,EUROPEAN BLACK,RAW~^^^^~Stems~^2^~Ribes nigrum~^6.25^3.36^8.37^3.60 -~09084~^~0900~^~Currants, red and white, raw~^~CURRANTS,RED&WHITE,RAW~^^^~Y~^~Stems~^2^~Ribes rubrum~^6.25^3.36^8.37^3.60 -~09085~^~0900~^~Currants, zante, dried~^~CURRANTS,ZANTE,DRIED~^~raisin~^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09086~^~0900~^~Custard-apple, (bullock's-heart), raw~^~CUSTARD-APPLE,(BULLOCK'S-HEART),RAW~^^^^~Seeds and skin~^42^~Annona reticulata~^6.25^3.36^8.37^3.60 -~09087~^~0900~^~Dates, deglet noor~^~DATES,DEGLET NOOR~^^^~Y~^~Pits~^10^~Phoenix dactylifera~^6.25^3.36^8.37^3.60 -~09088~^~0900~^~Elderberries, raw~^~ELDERBERRIES,RAW~^^^^^0^~Sambucus spp.~^6.25^3.36^8.37^3.60 -~09089~^~0900~^~Figs, raw~^~FIGS,RAW~^^^~Y~^~Stems~^1^~Ficus carica~^6.25^3.36^8.37^3.60 -~09090~^~0900~^~Figs, canned, water pack, solids and liquids~^~FIGS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09091~^~0900~^~Figs, canned, light syrup pack, solids and liquids~^~FIGS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09092~^~0900~^~Figs, canned, heavy syrup pack, solids and liquids~^~FIGS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09093~^~0900~^~Figs, canned, extra heavy syrup pack, solids and liquids~^~FIGS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09094~^~0900~^~Figs, dried, uncooked~^~FIGS,DRIED,UNCOOKED~^^^~Y~^~Stems~^4^^6.25^3.36^8.37^3.60 -~09095~^~0900~^~Figs, dried, stewed~^~FIGS,DRIED,STEWED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09096~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids~^~FRUIT COCKTAIL,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09097~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids~^~FRUIT COCKTAIL,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09098~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09099~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,LT SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09100~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09101~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09102~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids~^~FRUIT SALAD,CND,H2O PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.60 -~09103~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids~^~FRUIT SALAD,CND,JUC PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.70 -~09104~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids~^~FRUIT SALAD,CND,LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09106~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT SALAD,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09107~^~0900~^~Gooseberries, raw~^~GOOSEBERRIES,RAW~^^^^^0^~Ribes spp.~^6.25^3.36^8.37^3.60 -~09109~^~0900~^~Gooseberries, canned, light syrup pack, solids and liquids~^~GOOSEBERRIES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71 -~09110~^~0900~^~Goji berries, dried~^~GOJI BERRIES,DRIED~^~wolfberries~^^^^0^~Lycium barbarum L.~^^^^ -~09111~^~0900~^~Grapefruit, raw, pink and red and white, all areas~^~GRAPEFRUIT,RAW,PINK&RED&WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^50^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09112~^~0900~^~Grapefruit, raw, pink and red, all areas~^~GRAPEFRUIT,RAW,PINK&RED,ALL AREAS~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09113~^~0900~^~Grapefruit, raw, pink and red, California and Arizona~^~GRAPEFRUIT,RAW,PINK&RED,CALIFORNIA&ARIZONA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09114~^~0900~^~Grapefruit, raw, pink and red, Florida~^~GRAPEFRUIT,RAW,PINK & RED,FLORIDA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09116~^~0900~^~Grapefruit, raw, white, all areas~^~GRAPEFRUIT,RAW,WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09117~^~0900~^~Grapefruit, raw, white, California~^~GRAPEFRUIT,RAW,WHITE,CALIFORNIA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09118~^~0900~^~Grapefruit, raw, white, Florida~^~GRAPEFRUIT,RAW,WHITE,FLORIDA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60 -~09119~^~0900~^~Grapefruit, sections, canned, water pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09120~^~0900~^~Grapefruit, sections, canned, juice pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09121~^~0900~^~Grapefruit, sections, canned, light syrup pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09123~^~0900~^~Grapefruit juice, white, canned or bottled, unsweetened~^~GRAPEFRUIT JUC,WHITE,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09124~^~0900~^~Grapefruit juice, white, canned, sweetened~^~GRAPEFRUIT JUC,WHITE,CND,SWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09125~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, undiluted~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09126~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, diluted with 3 volume water~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09127~^~0900~^~Grapefruit juice, pink or red, with added calcium~^~GRAPEFRUIT JUC,PINK OR RED,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09128~^~0900~^~Grapefruit juice, white, raw~^~GRAPEFRUIT JUC,WHITE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09129~^~0900~^~Grapes, muscadine, raw~^~Grapes, muscadine, raw~^^^^~Seeds~^4^~Vitis rotundifolia~^6.25^3.36^8.37^3.60 -~09130~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09131~^~0900~^~Grapes, american type (slip skin), raw~^~GRAPES,AMERICAN TYPE (SLIP SKN),RAW~^^^~Y~^~6% seeds, 34% skin, 2% stems~^42^~Vitis spp.~^6.25^3.36^8.37^3.60 -~09132~^~0900~^~Grapes, red or green (European type, such as Thompson seedless), raw~^~GRAPES,RED OR GRN (EURO TYPE,SUCH AS THOMPSON SEEDLESS),RAW~^^^~Y~^~Stems~^4^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09133~^~0900~^~Grapes, canned, thompson seedless, water pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09134~^~0900~^~Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09135~^~0900~^~Grape juice, canned or bottled, unsweetened, without added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09138~^~0900~^~Groundcherries, (cape-gooseberries or poha), raw~^~GROUNDCHERRIES,(CAPE-GOOSEBERRIES OR POHA),RAW~^^^^~Husks~^6^~Physalis spp.~^6.25^3.36^8.37^3.60 -~09139~^~0900~^~Guavas, common, raw~^~GUAVAS,COMMON,RAW~^^^~Y~^~Skin~^22^~Psidium guajava~^6.25^3.36^8.37^3.60 -~09140~^~0900~^~Guavas, strawberry, raw~^~GUAVAS,STRAWBERRY,RAW~^^^^~Seeds, stem, and blossom end~^15^~Psidium cattleianum~^6.25^3.36^8.37^3.60 -~09143~^~0900~^~Guava sauce, cooked~^~GUAVA SAUCE,COOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09144~^~0900~^~Jackfruit, raw~^~JACKFRUIT,RAW~^^^^~Seeds and skin~^72^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.60 -~09145~^~0900~^~Java-plum, (jambolan), raw~^~JAVA-PLUM,(JAMBOLAN),RAW~^^^^~Seed~^19^~Syzygium cumini~^6.25^3.36^8.37^3.60 -~09146~^~0900~^~Jujube, raw~^~JUJUBE,RAW~^^^^~Seeds~^7^~Ziziphus jujuba~^6.25^3.36^8.37^3.60 -~09147~^~0900~^~Jujube, Chinese, fresh, dried~^~JUJUBE,CHINESE,FRSH,DRIED~^^^^~Seeds~^11^^6.25^3.36^8.37^3.60 -~09148~^~0900~^~Kiwifruit, green, raw~^~KIWIFRUIT,GRN,RAW~^~Chinese gooseberry~^^~Y~^~Skin~^24^~Actinidia deliciosa~^6.25^3.36^8.37^3.60 -~09149~^~0900~^~Kumquats, raw~^~KUMQUATS,RAW~^^^~Y~^~Seeds~^7^~Fortunella spp.~^6.25^3.36^8.37^3.60 -~09150~^~0900~^~Lemons, raw, without peel~^~LEMONS,RAW,WITHOUT PEEL~^^^~Y~^~45% peel, 2% seeds~^47^~Citrus limon~^6.25^3.36^8.37^2.48 -~09152~^~0900~^~Lemon juice, raw~^~LEMON JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09153~^~0900~^~Lemon juice from concentrate, canned or bottled~^~LEMON JUC FROM CONC,CND OR BTLD~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09156~^~0900~^~Lemon peel, raw~^~LEMON PEEL,RAW~^^^~Y~^^0^^6.25^^^ -~09159~^~0900~^~Limes, raw~^~LIMES,RAW~^^^~Y~^~Peel and seeds~^16^~Citrus latifolia~^6.25^3.36^8.37^2.48 -~09160~^~0900~^~Lime juice, raw~^~LIME JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09161~^~0900~^~Lime juice, canned or bottled, unsweetened~^~LIME JUC,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^2.70 -~09163~^~0900~^~Blueberries, dried, sweetened~^~BLUEBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09164~^~0900~^~Litchis, raw~^~LITCHIS,RAW~^~lychee~^^~Y~^~Shell and seeds~^40^~Litchi chinensis~^6.25^3.36^8.37^3.60 -~09165~^~0900~^~Litchis, dried~^~LITCHIS,DRIED~^~lychee~^^~Y~^~Shell and seeds~^46^^6.25^3.36^8.37^3.60 -~09167~^~0900~^~Loganberries, frozen~^~LOGANBERRIES,FROZEN~^^^~Y~^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.60 -~09172~^~0900~^~Longans, raw~^~LONGANS,RAW~^^^^~Shell and seeds~^47^~Dimocarpus longan~^6.25^3.36^8.37^3.60 -~09173~^~0900~^~Longans, dried~^~LONGANS,DRIED~^^^^~Shell and seeds~^64^^6.25^3.36^8.37^3.60 -~09174~^~0900~^~Loquats, raw~^~LOQUATS,RAW~^^^^~Seeds and skin~^35^~Eriobotrya japonica~^6.25^3.36^8.37^3.60 -~09175~^~0900~^~Mammy-apple, (mamey), raw~^~MAMMY-APPLE,(MAMEY),RAW~^^^^~Seeds and skin~^40^~Mammea americana~^6.25^3.36^8.37^3.60 -~09176~^~0900~^~Mangos, raw~^~MANGOS,RAW~^^^~Y~^~Seeds and skin~^29^~Mangifera indica~^6.25^3.36^8.37^3.60 -~09177~^~0900~^~Mangosteen, canned, syrup pack~^~MANGOSTEEN,CND,SYRUP PK~^^^^^0^~Garcinia mangostana~^6.25^3.36^8.37^3.75 -~09178~^~0900~^~Mango, dried, sweetened~^~MANGO,DRIED,SWTND~^^^~Y~^^0^^^^^ -~09181~^~0900~^~Melons, cantaloupe, raw~^~MELONS,CANTALOUPE,RAW~^^^~Y~^~9% cavity contents, 1% cutting loss, 39% rind~^49^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09183~^~0900~^~Melons, casaba, raw~^~MELONS,CASABA,RAW~^^^~Y~^~11% cavity contents, 29% rind~^40^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09184~^~0900~^~Melons, honeydew, raw~^~MELONS,HONEYDEW,RAW~^^^~Y~^~5% cavity contents, rind 49%~^54^~Cucumis melo~^6.25^3.36^8.37^3.60 -~09185~^~0900~^~Melon balls, frozen~^~MELON BALLS,FROZEN~^^^^^0^^6.25^3.36^8.37^3.60 -~09190~^~0900~^~Mulberries, raw~^~MULBERRIES,RAW~^^^~Y~^^0^~Morus nigra~^6.25^3.36^8.37^3.60 -~09191~^~0900~^~Nectarines, raw~^~NECTARINES,RAW~^^^~Y~^~Pit~^9^~Prunus persica var. nucipersica~^6.25^3.36^8.37^3.60 -~09192~^~0900~^~Oheloberries, raw~^~OHELOBERRIES,RAW~^^^^^0^~Vaccinium reticulatum~^6.25^3.36^8.37^3.60 -~09193~^~0900~^~Olives, ripe, canned (small-extra large)~^~OLIVES,RIPE,CND (SMALL-EXTRA LRG)~^^^~Y~^^0^~Olea europaea~^6.25^3.36^8.37^3.60 -~09194~^~0900~^~Olives, ripe, canned (jumbo-super colossal)~^~OLIVES,RIPE,CND (JUMBO-SUPER COLOSSAL)~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09195~^~0900~^~Olives, pickled, canned or bottled, green~^~OLIVES,PICKLED,CND OR BTLD,GRN~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09200~^~0900~^~Oranges, raw, all commercial varieties~^~ORANGES,RAW,ALL COMM VAR~^^^~Y~^~Peel and seeds~^27^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09201~^~0900~^~Oranges, raw, California, valencias~^~ORANGES,RAW,CALIFORNIA,VALENCIAS~^^^^~Peel and seeds~^25^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09202~^~0900~^~Oranges, raw, navels (Includes foods for USDA's Food Distribution Program)~^~ORANGES,RAW,NAVELS~^^^^~Peel and navel~^32^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09203~^~0900~^~Oranges, raw, Florida~^~ORANGES,RAW,FLORIDA~^^^^~Peel and seeds~^26^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09205~^~0900~^~Oranges, raw, with peel~^~ORANGES,RAW,WITH PEEL~^^^^~Seeds~^1^~Citrus sinensis~^6.25^3.36^8.37^3.60 -~09206~^~0900~^~Orange juice, raw (Includes foods for USDA's Food Distribution Program)~^~ORANGE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09207~^~0900~^~Orange juice, canned, unsweetened~^~ORANGE JUC,CND,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09209~^~0900~^~Orange juice, chilled, includes from concentrate~^~ORANGE JUC,CHILLED,INCL FROM CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09210~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamin D~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA & VITAMIN D~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09211~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09212~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O,W/ ADDED CA~^^^^^0^^^^^ -~09213~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL,W/ ADDED CA~^^^~Y~^^0^^^^^ -~09214~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09215~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09216~^~0900~^~Orange peel, raw~^~ORANGE PEEL,RAW~^^^^^0^^6.25^3.36^8.37^3.60 -~09217~^~0900~^~Orange-grapefruit juice, canned or bottled, unsweetened~^~ORANGE-GRAPEFRUIT JUC,CND OR BTLD,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.92 -~09218~^~0900~^~Tangerines, (mandarin oranges), raw~^~TANGERINES,(MANDARIN ORANGES),RAW~^^^~Y~^~Peel and seeds~^26^~Citrus reticulata~^6.25^3.36^8.37^3.60 -~09219~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09220~^~0900~^~Tangerines, (mandarin oranges), canned, light syrup pack~^~TANGERINES,(MANDARIN ORANGES),CND,LT SYRUP PK~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09221~^~0900~^~Tangerine juice, raw~^~TANGERINE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09226~^~0900~^~Papayas, raw~^~PAPAYAS,RAW~^^^~Y~^~Seeds and skin~^38^~Carica papaya~^6.25^3.36^8.37^3.60 -~09228~^~0900~^~Papaya, canned, heavy syrup, drained~^~PAPAYA,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09229~^~0900~^~Papaya nectar, canned~^~PAPAYA NECTAR,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09231~^~0900~^~Passion-fruit, (granadilla), purple, raw~^~PASSION-FRUIT,(GRANADILLA),PURPLE,RAW~^^^~Y~^~Shell~^48^~Passiflora edulis~^6.25^3.36^8.37^3.60 -~09232~^~0900~^~Passion-fruit juice, purple, raw~^~PASSION-FRUIT JUC,PURPLE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09233~^~0900~^~Passion-fruit juice, yellow, raw~^~PASSION-FRUIT JUC,YEL,RAW~^^^~Y~^^0^~Passiflora edulis f. flavicarpa~^6.25^3.36^8.37^3.92 -~09236~^~0900~^~Peaches, yellow, raw~^~PEACHES,YEL,RAW~^^^~Y~^~Pit~^4^~Prunus persica~^6.25^3.36^8.37^3.60 -~09237~^~0900~^~Peaches, canned, water pack, solids and liquids~^~PEACHES,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09238~^~0900~^~Peaches, canned, juice pack, solids and liquids~^~PEACHES,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09239~^~0900~^~Peaches, canned, extra light syrup, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEACHES,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09240~^~0900~^~Peaches, canned, light syrup pack, solids and liquids~^~PEACHES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09241~^~0900~^~Peaches, canned, heavy syrup pack, solids and liquids~^~PEACHES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09242~^~0900~^~Peaches, canned, extra heavy syrup pack, solids and liquids~^~PEACHES,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09243~^~0900~^~Peaches, spiced, canned, heavy syrup pack, solids and liquids~^~PEACHES,SPICED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^4^^6.25^3.36^8.37^3.75 -~09244~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, uncooked~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09245~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, stewed~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09246~^~0900~^~Peaches, dried, sulfured, uncooked~^~PEACHES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09247~^~0900~^~Peaches, dried, sulfured, stewed, without added sugar~^~PEACHES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09248~^~0900~^~Peaches, dried, sulfured, stewed, with added sugar~^~PEACHES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09250~^~0900~^~Peaches, frozen, sliced, sweetened~^~PEACHES,FRZ,SLICED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09251~^~0900~^~Peach nectar, canned, with sucralose, without added ascorbic acid~^~PEACH NECTAR,CND,W/ SUCRALOSE,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.79 -~09252~^~0900~^~Pears, raw~^~PEARS,RAW~^^^~Y~^~Stem, core and seeds~^10^~Pyrus communis~^6.25^3.36^8.37^3.60 -~09253~^~0900~^~Pears, canned, water pack, solids and liquids~^~PEARS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09254~^~0900~^~Pears, canned, juice pack, solids and liquids~^~PEARS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09255~^~0900~^~Pears, canned, extra light syrup pack, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEARS,CND,EX LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69 -~09256~^~0900~^~Pears, canned, light syrup pack, solids and liquids~^~PEARS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09257~^~0900~^~Pears, canned, heavy syrup pack, solids and liquids~^~PEARS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09258~^~0900~^~Pears, canned, extra heavy syrup pack, solids and liquids~^~PEARS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09259~^~0900~^~Pears, dried, sulfured, uncooked~^~PEARS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09260~^~0900~^~Pears, dried, sulfured, stewed, without added sugar~^~PEARS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09261~^~0900~^~Pears, dried, sulfured, stewed, with added sugar~^~PEARS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60 -~09262~^~0900~^~Pear nectar, canned, without added ascorbic acid~^~PEAR NECTAR,CND,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09263~^~0900~^~Persimmons, japanese, raw~^~PERSIMMONS,JAPANESE,RAW~^^^~Y~^~2% calyx, 14% skin~^16^~Diospyros kaki~^6.25^3.36^8.37^3.60 -~09264~^~0900~^~Persimmons, japanese, dried~^~PERSIMMONS,JAPANESE,DRIED~^^^^~Stems~^8^^6.25^3.36^8.37^3.60 -~09265~^~0900~^~Persimmons, native, raw~^~PERSIMMONS,NATIVE,RAW~^^^^~2% calyx, 16% seeds~^18^~Diospyros virginiana~^6.25^3.36^8.37^3.60 -~09266~^~0900~^~Pineapple, raw, all varieties~^~PINEAPPLE,RAW,ALL VAR~^^^~Y~^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^6.25^3.36^8.37^3.60 -~09267~^~0900~^~Pineapple, canned, water pack, solids and liquids~^~PINEAPPLE,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09268~^~0900~^~Pineapple, canned, juice pack, solids and liquids~^~PINEAPPLE,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~09269~^~0900~^~Pineapple, canned, light syrup pack, solids and liquids~^~PINEAPPLE,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71 -~09270~^~0900~^~Pineapple, canned, heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09271~^~0900~^~Pineapple, canned, extra heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78 -~09272~^~0900~^~Pineapple, frozen, chunks, sweetened~^~PINEAPPLE,FRZ,CHUNKS,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09273~^~0900~^~Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09274~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, undiluted~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,UNDIL~^^^^^0^^6.25^3.36^8.37^3.92 -~09275~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^^^0^^6.25^3.36^8.37^3.92 -~09276~^~0900~^~Pitanga, (surinam-cherry), raw~^~PITANGA,(SURINAM-CHERRY),RAW~^^^^~Seed, stem, and blossom end~^12^~Eugenia uniflora~^6.25^3.36^8.37^3.60 -~09277~^~0900~^~Plantains, yellow, raw~^~PLANTAINS,YEL,RAW~^^^~Y~^~Skin and stems~^31^~Musa X paradisiaca~^6.25^3.36^8.37^3.60 -~09278~^~0900~^~Plantains, yellow, baked~^~PLANTAINS,YEL,BKD~^^^~Y~^~No refuse~^0^^6.25^3.36^8.37^3.60 -~09279~^~0900~^~Plums, raw~^~PLUMS,RAW~^^^~Y~^~Pits~^6^~Prunus spp.~^6.25^3.36^8.37^3.60 -~09281~^~0900~^~Plums, canned, purple, water pack, solids and liquids~^~PLUMS,CND,PURPLE,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.60 -~09282~^~0900~^~Plums, canned, purple, juice pack, solids and liquids~^~PLUMS,CND,PURPLE,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.70 -~09283~^~0900~^~Plums, canned, purple, light syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.71 -~09284~^~0900~^~Plums, canned, purple, heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.75 -~09285~^~0900~^~Plums, canned, purple, extra heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^5^^6.25^3.36^8.37^3.78 -~09286~^~0900~^~Pomegranates, raw~^~POMEGRANATES,RAW~^^^~Y~^~Skin and membrane~^44^~Punica granatum~^6.25^3.36^8.37^3.60 -~09287~^~0900~^~Prickly pears, raw~^~PRICKLY PEARS,RAW~^^^^~Seeds, skin, and bud end~^25^~Opuntia spp.~^6.25^3.36^8.37^3.60 -~09288~^~0900~^~Prunes, canned, heavy syrup pack, solids and liquids~^~PRUNES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^12^~Prunus domestica~^6.25^3.36^8.37^3.75 -~09289~^~0900~^~Prunes, dehydrated (low-moisture), uncooked~^~PRUNES,DEHYD (LOW-MOISTURE),UNCKD~^^^^^0^^6.25^3.36^8.37^3.60 -~09290~^~0900~^~Prunes, dehydrated (low-moisture), stewed~^~PRUNES,DEHYD (LOW-MOISTURE),STWD~^^^^^0^^6.25^3.36^8.37^3.60 -~09291~^~0900~^~Plums, dried (prunes), uncooked~^~PLUMS,DRIED (PRUNES),UNCKD~^^^~Y~^~Pits~^13^^6.25^3.36^8.37^3.60 -~09292~^~0900~^~Plums, dried (prunes), stewed, without added sugar~^~PLUMS,DRIED (PRUNES),STWD,WO/ ADDED SUGAR~^^^~Y~^~Pits~^15^^6.25^3.36^8.37^3.60 -~09293~^~0900~^~Plums, dried (prunes), stewed, with added sugar~^~PLUMS,DRIED (PRUNES),STWD,W/ ADDED SUGAR~^^^^~Pits~^15^^6.25^3.36^8.37^3.60 -~09294~^~0900~^~Prune juice, canned~^~PRUNE JUICE,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09295~^~0900~^~Pummelo, raw~^~PUMMELO,RAW~^^^^~Seeds, skin, and membrane~^44^~Citrus maxima~^6.25^3.36^8.37^3.60 -~09296~^~0900~^~Quinces, raw~^~QUINCES,RAW~^^^^~Core, seeds, and parings~^39^~Cydonia oblonga~^6.25^3.36^8.37^3.60 -~09297~^~0900~^~Raisins, golden, seedless~^~RAISINS,GOLDEN,SEEDLESS~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09298~^~0900~^~Raisins, dark, seedless (Includes foods for USDA's Food Distribution Program)~^~RAISINS,DK,SEEDLESS (INCLUDES FOODS FOR USDAS FD~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09299~^~0900~^~Raisins, seeded~^~RAISINS,SEEDED~^^^^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60 -~09301~^~0900~^~Rambutan, canned, syrup pack~^~RAMBUTAN,CND,SYRUP PK~^^^^^0^~Nephelium lappaceum~^6.25^3.36^8.37^3.75 -~09302~^~0900~^~Raspberries, raw~^~RASPBERRIES,RAW~^^^~Y~^~Caps, stems, and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60 -~09304~^~0900~^~Raspberries, canned, red, heavy syrup pack, solids and liquids~^~RASPBERRIES,CND,RED,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09306~^~0900~^~Raspberries, frozen, red, sweetened~^~RASPBERRIES,FRZ,RED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09307~^~0900~^~Rhubarb, raw~^~RHUBARB,RAW~^^^~Y~^~19% ends, 6% leaves~^25^~Rheum rhabarbarum~^6.25^3.36^8.37^3.60 -~09309~^~0900~^~Rhubarb, frozen, uncooked~^~RHUBARB,FROZEN,UNCOOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09310~^~0900~^~Rhubarb, frozen, cooked, with sugar~^~RHUBARB,FRZ,CKD,W/SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.78 -~09311~^~0900~^~Roselle, raw~^~ROSELLE,RAW~^^^^~Seed pods and stem~^39^~Hibiscus sabdariffa~^6.25^3.36^8.37^3.60 -~09312~^~0900~^~Rose-apples, raw~^~ROSE-APPLES,RAW~^^^^~Caps and pits~^33^~Syzygium jambos~^6.25^3.36^8.37^3.60 -~09313~^~0900~^~Sapodilla, raw~^~SAPODILLA,RAW~^^^^~Seeds and skin~^20^~Manilkara zapota~^6.25^3.36^8.37^3.60 -~09314~^~0900~^~Sapote, mamey, raw~^~SAPOTE,MAMEY,RAW~^~mamey colorado, marmalade plum~^^^~Seeds and skin~^31^~Pouteria sapota~^6.25^3.36^8.37^3.60 -~09315~^~0900~^~Soursop, raw~^~SOURSOP,RAW~^^^~Y~^~Seeds and skin~^33^~Annona muricata~^6.25^3.36^8.37^3.60 -~09316~^~0900~^~Strawberries, raw~^~STRAWBERRIES,RAW~^^^~Y~^~Caps and stems~^6^~Fragaria X ananassa~^6.25^3.36^8.37^3.60 -~09317~^~0900~^~Strawberries, canned, heavy syrup pack, solids and liquids~^~STRAWBERRIES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75 -~09318~^~0900~^~Strawberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~STRAWBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09320~^~0900~^~Strawberries, frozen, sweetened, sliced~^~STRAWBERRIES,FRZ,SWTND,SLICED~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09321~^~0900~^~Sugar-apples, (sweetsop), raw~^~SUGAR-APPLES,(SWEETSOP),RAW~^^^^~Seeds and skin~^45^~Annona squamosa~^6.25^3.36^8.37^3.60 -~09322~^~0900~^~Tamarinds, raw~^~TAMARINDS,RAW~^^^~Y~^~Pods and seeds~^66^~Tamarindus indica~^6.25^3.36^8.37^3.60 -~09325~^~0900~^~Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids~^~FRUIT SALAD,TROPICAL,CND,HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.75 -~09326~^~0900~^~Watermelon, raw~^~WATERMELON,RAW~^^^~Y~^~Rind, seeds, and cutting loss~^48^~Citrullus lanatus~^6.25^3.36^8.37^3.60 -~09328~^~0900~^~Maraschino cherries, canned, drained~^~MARASCHINO CHERRIES,CND,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~09334~^~0900~^~Feijoa, raw~^~FEIJOA,RAW~^^^^~Skin~^43^~Acca sellowiana~^6.25^3.36^8.37^3.60 -~09340~^~0900~^~Pears, asian, raw~^~PEARS,ASIAN,RAW~^^^~Y~^~Core and stem~^9^~Pyrus pyrifolia (Burman f.) Nakai~^6.25^3.36^8.37^3.60 -~09351~^~0900~^~Fruit cocktail, canned, heavy syrup, drained~^~FRUIT COCKTAIL,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.60 -~09352~^~0900~^~Blueberries, canned, light syrup, drained~^~BLUEBERRIES,CND,LT SYRUP,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~09353~^~0900~^~Blueberries, wild, canned, heavy syrup, drained~^~BLUEBERRIES,WILD,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09354~^~0900~^~Pineapple, canned, juice pack, drained~^~PINEAPPLE,CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09357~^~0900~^~Apricots, canned, heavy syrup, drained~^~APRICOTS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09362~^~0900~^~Cherries, sour, canned, water pack, drained~^~CHERRIES,SOUR,CND,H2O PK,DRND~^^^^^0^^6.25^3.36^8.37^3.60 -~09367~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup, drained~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09370~^~0900~^~Peaches, canned, heavy syrup, drained~^~PEACHES,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09374~^~0900~^~Pears, canned, heavy syrup, drained~^~PEARS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09379~^~0900~^~Plums, canned, heavy syrup, drained~^~PLUMS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75 -~09383~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack, drained~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70 -~09400~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09401~^~0900~^~Applesauce, canned, unsweetened, with added ascorbic acid~^~APPLESAUCE,CND,UNSWTND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.60 -~09402~^~0900~^~Applesauce, canned, sweetened, with salt~^~APPLESAUCE,CND,SWTND,W/SALT~^^^^^0^^6.25^3.36^8.37^3.75 -~09404~^~0900~^~Grapefruit juice, pink, raw~^~GRAPEFRUIT JUICE,PINK,RAW~^^^^^0^^6.25^3.36^8.37^3.92 -~09407~^~0900~^~Peach nectar, canned, with added ascorbic acid~^~PEACH NECTAR,CND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.79 -~09408~^~0900~^~Pear nectar, canned, with added ascorbic acid~^~PEAR NECTAR,CND,W/ VIT C~^~vitamin C~^^^^0^^6.25^3.36^8.37^3.75 -~09409~^~0900~^~Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09410~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09411~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92 -~09412~^~0900~^~Pears, raw, bartlett (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BARTLETT~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09413~^~0900~^~Pears, raw, red anjou~^~PEARS,RAW,RED ANJOU~^^^^~Stem, core and seeds~^11^~Pyrus communis~^^^^ -~09414~^~0900~^~Pears, raw, bosc (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BOSC~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09415~^~0900~^~Pears, raw, green anjou (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,GRN ANJOU~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^ -~09416~^~0900~^~Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY~^~GRAPEFRUIT JUC,WHITE,BTLD,UNSWTND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.92 -~09420~^~0900~^~Jackfruit, canned, syrup pack~^~JACKFRUIT,CND,SYRUP PK~^^^^^0^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.75 -~09421~^~0900~^~Dates, medjool~^~DATES,MEDJOOL~^^^^~Pits~^8^~Phoenix dactylifera~^^3.36^8.37^3.60 -~09422~^~0900~^~Durian, raw or frozen~^~DURIAN,RAW OR FROZEN~^^^^~Shell and seeds (for raw fruit)~^68^~Durio zibethinus~^6.25^3.36^8.37^3.60 -~09423~^~0900~^~Prune puree~^~PRUNE PUREE~^^^^^0^^^^^ -~09426~^~0900~^~Candied fruit~^~CANDIED FRUIT~^^^~Y~^^0^^^^^ -~09427~^~0900~^~Abiyuch, raw~^~ABIYUCH,RAW~^~garlic pear~^^^^^~Crateva religiosa~^6.25^3.36^8.37^3.60 -~09428~^~0900~^~Rowal, raw~^~ROWAL,RAW~^^^^^^~Pangium edule~^6.25^3.36^8.37^3.60 -~09429~^~0900~^~Pineapple, raw, traditional varieties~^~PINEAPPLE,RAW,TRADITIONAL VAR~^^^^~8% core, 13% crown, 22% parings~^42^~Ananas comosus~^^3.36^8.37^3.60 -~09430~^~0900~^~Pineapple, raw, extra sweet variety~^~PINEAPPLE,RAW,EX SWT VAR~^^^^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^^3.36^8.37^3.60 -~09433~^~0900~^~Clementines, raw~^~CLEMENTINES,RAW~^^^^~Peel and seeds~^23^~Citrus clementina hort. ex Tanaka~^^3.36^8.37^3.60 -~09434~^~0900~^~Guanabana nectar, canned~^~GUANABANA NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09435~^~0900~^~Guava nectar, canned, with added ascorbic acid~^~GUAVA NECTAR,CND,W/ ADDED VIT C~^^^^^0^^6.25^3.36^8.37^3.80 -~09436~^~0900~^~Mango nectar, canned~^~MANGO NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~09437~^~0900~^~Tamarind nectar, canned~^~TAMARIND NECTAR,CND~^^^^^0^^6.25^3.36^8.37^3.80 -~09442~^~0900~^~Pomegranate juice, bottled~^~POMEGRANATE JUC,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09443~^~0900~^~Juice, apple and grape blend, with added ascorbic acid~^~JUICE,APPL & GRAPE BLEND,W/ ADDED VIT C~^^^~Y~^^0^^^3.36^8.37^3.92 -~09444~^~0900~^~Juice, apple, grape and pear blend, with added ascorbic acid and calcium~^~JUICE,APPL,GRAPE & PEAR BLEND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09446~^~0900~^~Plantains, green, fried~^~PLANTAINS,GRN,FRIED~^~tostones de platano~^^^^0^^6.25^4.00^9.00^4.00 -~09447~^~0900~^~Plantains, yellow, fried, Latino restaurant~^~PLANTAINS,YEL,FRIED,LATINO RESTAURANT~^~platanos maduros~^^^^0^^6.25^4.00^9.00^4.00 -~09448~^~0900~^~Nance, canned, syrup, drained~^~NANCE,CND,SYRUP,DRND~^~yellow cherries~^^^^0^^6.25^3.36^8.37^3.60 -~09449~^~0900~^~Nance, frozen, unsweetened~^~NANCE,FRZ,UNSWTND~^~yellow cherries~^^^~Pits~^27^~Byrsonima crassifolia (L.) Kunth~^6.25^3.36^8.37^3.60 -~09450~^~0900~^~Naranjilla (lulo) pulp, frozen, unsweetened~^~NARANJILLA (LULO) PULP,FRZ,UNSWTND~^^^^^0^~Solanum quitoense Lam.~^6.25^3.36^8.37^3.60 -~09451~^~0900~^~Horned melon (Kiwano)~^~HORNED MELON (KIWANO)~^~African horned melon~^^^~Rind~^36^~Cucumis metulifer~^6.25^3.36^8.37^3.60 -~09452~^~0900~^~Orange Pineapple Juice Blend~^~ORANGE PNAPPL JUC BLEND~^^^~Y~^^0^^6.25^^^ -~09500~^~0900~^~Apples, raw, red delicious, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,RED DELICIOUS,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09501~^~0900~^~Apples, raw, golden delicious, with skin~^~APPLES,RAW,GOLDEN DELICIOUS,W/ SKN~^^^^~Core and stem~^10^~Malus domestica~^^^^ -~09502~^~0900~^~Apples, raw, granny smith, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GRANNY SMITH,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09503~^~0900~^~Apples, raw, gala, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GALA,W/ SKN~^^^^~Core and stem~^9^~Malus domestica~^^^^ -~09504~^~0900~^~Apples, raw, fuji, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,FUJI,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^ -~09506~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamins A, D, E~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADD CA & VITAMINS A,D,E~^^^^^0^^6.25^3.36^8.37^3.92 -~09507~^~0900~^~Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO~^~FRUIT JUC SMOOTHIE,NAKED JUC,MIGHTY MANGO~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09508~^~0900~^~Fruit juice smoothie, NAKED JUICE, GREEN MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,GRN MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09510~^~0900~^~Pineapple juice, canned, not from concentrate, unsweetened, with added vitamins A, C and E~^~PINEAPPLE JUC,CND,NOT FROM CONC,UNSWTND,W/ ADD VIT A,C & E~^^~Dole Food Company~^^^0^^6.25^3.36^8.37^3.92 -~09511~^~0900~^~Fruit juice smoothie, NAKED JUICE, BLUE MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,BLUE MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^ -~09512~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid and calcium~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^^^ -~09513~^~0900~^~Fruit juice smoothie, ODWALLA, ORIGINAL SUPERFOOD~^~FRUIT JUC SMOOTHIE,ODWALLA,ORIGINAL SUPERFOOD~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09514~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, BERRY BOOST~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,BERRY BOOST~^^~Wm. Bolthouse Farms, Inc.~^^^0^^6.25^^^ -~09515~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, GREEN GOODNESS~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,GRN GOODNESS~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09516~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,STRAWBERRY BANANA~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09517~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid, calcium, and potassium~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C,CA,& K~^^^~Y~^^0^^^^^ -~09518~^~0900~^~Raspberries, frozen, red, unsweetened~^~RASPBERRIES,FRZ,RED,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.60 -~09519~^~0900~^~Guava nectar, with sucralose, canned~^~GUAVA NECTAR,W/ SUCRALOSE,CND~^^^~Y~^^0^^^^^ -~09520~^~0900~^~Kiwifruit, ZESPRI SunGold, raw~^~KIWIFRUIT,ZESPRI SUNGOLD,RAW~^~Gold3~^^^~Skin~^28^~Actinidia chinensis Zesy002 (Gold3)~^^3.36^8.37^3.60 -~09522~^~0900~^~Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium~^~CRANBERRY JUC BLEND,100% JUC,BTLD,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~09523~^~0900~^~Lemon juice from concentrate, bottled, CONCORD~^~LEMON JUC FROM CONC,BTLD,CONCORD~^^~Concord Foods~^^^0^^^^^ -~09524~^~0900~^~Lemon juice from concentrate, bottled, REAL LEMON~^~LEMON JUC FROM CONC,BTLD,REAL LEMON~^^^^^0^^^3.36^8.37^2.70 -~09525~^~0900~^~Cranberry sauce, whole, canned, OCEAN SPRAY~^~CRANBERRY SAU,WHL,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09526~^~0900~^~Cranberry sauce, jellied, canned, OCEAN SPRAY~^~CRANBERRY SAU,JELLIED,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84 -~09528~^~0900~^~Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C~^~RUBY RED GRPFRT JUC BLND (GRPFRT,GRP,APL),OCEAN SPRY,W/VIT C~^^~Ocean Spray Cranberries, Inc.~^^^0^^^3.36^8.37^3.92 -~09530~^~0900~^~Fruit juice smoothie, ODWALLA, strawberry banana~^~FRUIT JUC SMOOTHIE,ODWALLA,STRAWBERRY BANANA~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09531~^~0900~^~Fruit juice smoothie, NAKED JUICE, strawberry banana~^~FRUIT JUC SMOOTHIE,NAKED JUC,STRAWBERRY BANANA~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92 -~09542~^~0900~^~Plantains, green, raw~^~PLANTAINS,GRN,RAW~^^^^~Skin and stems~^39^~Musa X paradisiaca~^6.25^2.78^8.37^4.03 -~09543~^~0900~^~Plantains, green, boiled~^~PLANTAINS,GRN,BLD~^^^^~No refuse~^0^^^2.78^8.37^4.03 -~09544~^~0900~^~Baobab powder~^~BAOBAB PDR~^^^^^0^^^3.36^8.37^3.60 -~09546~^~0900~^~Cherry juice, tart~^~CHERRY JUC,TART~^^^^^0^^6.25^3.36^8.37^3.92 -~09552~^~0900~^~Raspberries, puree, seedless~^~RASPBERRIES,PUREE,SEEDLESS~^^^^^0^^^3.36^8.37^3.75 -~09553~^~0900~^~Raspberries, puree, with seeds~^~RASPBERRIES,PUREE,W/ SEEDS~^^^^^0^^^3.36^8.37^3.75 -~09554~^~0900~^~Raspberry juice concentrate~^~RASPBERRY JUC CONC~^^^^^0^^^3.36^8.37^3.75 -~10000~^~1000~^~Pork, fresh, composite of separable fat, with added solution, cooked~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,CKD~^^^^^0^^^^^ -~10001~^~1000~^~Pork, fresh, carcass, separable lean and fat, raw~^~PORK,FRSH,CARCASS,LN&FAT,RAW~^^^^~Bone and skin~^18^~Suidae domesticus~^6.25^4.27^9.02^3.87 -~10002~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,SHLDR),LN,RAW~^^^~Y~^~Bone and skin 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10003~^~1000~^~Pork, fresh, composite of trimmed leg, loin, shoulder, and spareribs, (includes cuts to be cured), separable lean and fat, raw~^~PORK,FRSH,COMP OF LEG,LOIN,SHLDR,& SPARERIBS,LN & FAT,RAW~^^^~Y~^~Bone and skin~^24^^6.25^4.27^9.02^3.87 -~10004~^~1000~^~Pork, fresh, backfat, raw~^~PORK,FRESH,BACKFAT,RAW~^^^~Y~^~Skin~^11^^6.25^4.27^9.02^3.87 -~10005~^~1000~^~Pork, fresh, belly, raw~^~PORK,FRSH,BELLY,RAW~^^^^~Skin~^7^^6.25^4.27^9.02^3.87 -~10006~^~1000~^~Pork, fresh, separable fat, raw~^~PORK,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10007~^~1000~^~Pork, fresh, separable fat, cooked~^~PORK,FRSH,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10008~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,RAW~^^^^~Bone and skin~^17^^6.25^4.27^9.02^3.87 -~10009~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^20^^6.25^4.27^9.02^3.87 -~10010~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, raw~^~PORK,FRSH,LEG (HAM),WHL,LN,RAW~^^^~Y~^~Bone and skin 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~10011~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 20%, separable fat 12%~^32^^6.25^4.27^9.02^3.87 -~10012~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,RAW~^^^^~Connective tissue 6%, Bone 9%, Skin 2%~^17^^6.25^4.27^9.02^3.87 -~10013~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 7%, Bone 9%, Skin 2%~^18^^6.25^4.27^9.02^3.87 -~10014~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, raw (Includes foods for USDA's Food Distribution Program)~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,RAW~^^^^~Connective tissue 6%, Bone 9%, Separable fat 10%~^25^^6.25^4.27^9.02^3.87 -~10015~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 9%, Separable fat 7%~^23^^6.25^4.27^9.02^3.87 -~10016~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,RAW~^^^^~Connective tissue 9%, Bone 13%, Skin 6%~^28^^6.25^4.27^9.02^3.87 -~10017~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Skin 4%~^22^^6.25^4.27^9.02^3.87 -~10018~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,RAW~^^^^~Connective tissue 9%, Bone 13%, Separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10019~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Separable fat 9%~^27^^6.25^4.27^9.02^3.87 -~10020~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, raw~^~PORK,FRSH,LOIN,WHL,LN&FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10021~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10022~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10023~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~10024~^~1000~^~Pork, fresh, loin, whole, separable lean only, raw~^~PORK,FRSH,LOIN,WHL,LN,RAW~^^^~Y~^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10025~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRSD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10026~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRLD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10027~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN,CKD,RSTD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87 -~10028~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^^^^~Bone 18%, Connective tissue 8%~^26^^6.25^4.27^9.02^3.87 -~10029~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 21% Connective tissue 6%~^27^^6.25^4.27^9.02^3.87 -~10030~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%~^27^^6.25^4.27^9.02^3.87 -~10031~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 18%, Connective tissue 5%,~^20^^6.25^4.27^9.02^3.87 -~10032~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN,RAW~^^^^~Bone 18%, Connective tissue 8%, Separable fat 10%,~^36^^6.25^4.27^9.02^3.87 -~10033~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 21%, Connective tissue 6%, Separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10034~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10035~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 18%, separable fat 7%, Connective tissue 5%~^30^^6.25^4.27^9.02^3.87 -~10036~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN & FAT,RAW~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^~Y~^~Bone, 14%, Connective tissue 11%~^25^^6.25^4.27^9.02^3.87 -~10037~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 15%, Connective tissue 5%~^20^^6.25^4.27^9.02^3.87 -~10038~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^^~Bone 16%, Connective tissue 9%~^25^^6.25^4.27^9.02^3.87 -~10039~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%~^18^^6.25^4.27^9.02^3.87 -~10040~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,RAW~^~URMIS #3313, Center loin chops, Center cut pork loin chops, centercut pork chops~^^^~Bone, 14%, Connective tissue, 11%, Separable fat, 6%~^31^^6.25^4.27^9.02^3.87 -~10041~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 5%, Separable fat 8%~^28^^6.25^4.27^9.02^3.87 -~10042~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork chops, Centercut pork loin chops~^^^~Bone, 16%, Connective tissue, 9%, Separable fat, 5%~^30^^6.25^4.27^9.02^3.87 -~10043~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%, Separable fat 7%~^25^^6.25^4.27^9.02^3.87 -~10044~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue 12%,~^34^^6.25^4.27^9.02^3.87 -~10045~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10046~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone, 24%, Connective tissue, 11%~^35^^6.25^4.27^9.02^3.87 -~10047~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10048~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue, 12%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~10049~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 17%, Connective tissue 6%, Separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10050~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRLD~^~Centercut pork loin chop, Rib cut chops, Rib chops~^^~Y~^~Bone 24%, Connective tissue, 11%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~10051~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%, separable fat 8%~^31^^6.25^4.27^9.02^3.87 -~10052~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 17%, Connective tissue, 10%~^27^^6.25^4.27^9.02^3.87 -~10053~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%~^24^^6.25^4.27^9.02^3.87 -~10054~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%~^21^^6.25^4.27^9.02^3.87 -~10055~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, Connective tissue, 11%~^31^^6.25^4.27^9.02^3.87 -~10056~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone 17%, Connective tissue, 11%, separable fat 5%~^33^^6.25^4.27^9.02^3.87 -~10057~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%, Separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10058~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%, Separable fat 8%~^29^^6.25^4.27^9.02^3.87 -~10059~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, connective tissue, 11%, separable fat, 4%~^35^^6.25^4.27^9.02^3.87 -~10060~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, raw~^~PORK FRSH LOIN TENDERLOIN LN ONLY RAW~^~Pork tenderloin, URMIS #3358~^^~Y~^~Bone, 0%, Connective tissue, 3%, Separable fat, 2%~^5^^6.25^4.27^9.02^3.87 -~10061~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,RSTD~^~URMIS #3358, Pork, Pork tenderloin~^^~Y~^~Connective tissue 3%, Separable fat .70%~^4^^6.25^4.27^9.02^3.87 -~10062~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~10063~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~10064~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^^~Connective tissue~^14^^6.25^4.27^9.02^3.87 -~10065~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^~Boneless pork loin, Centercut pork loin roast~^^^~Connective tissue~^12^^6.25^4.27^9.02^3.87 -~10066~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 12%, Separable fat, 5%~^17^^6.25^4.27^9.02^3.87 -~10067~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^6.25^4.27^9.02^3.87 -~10068~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 9%, separable fat, 4%~^13^^6.25^4.27^9.02^3.87 -~10069~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,CKD,RSTD~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~10070~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, raw~^~PORK,FRSH,SHLDR,WHL,LN&FAT,RAW~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10071~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10072~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, raw~^~PORK,FRSH,SHLDR,WHL,LN,RAW~^^^^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10073~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~10074~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,RAW~^^^^~Bone 16%, Connective tissue 6%~^22^^6.25^4.27^9.02^3.87 -~10075~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 8%, Bone 15%,~^23^^6.25^4.27^9.02^3.87 -~10076~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,RSTD~^^^^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10077~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,RAW~^^^^~Bone 16%, Connective tissue 6%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~10078~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 8%, Separable fat 7%~^30^^6.25^4.27^9.02^3.87 -~10079~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,RSTD~^^^^~Bone and skin 27%, separable fat 16%~^43^^6.25^4.27^9.02^3.87 -~10080~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN & FAT,RAW~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 15%~^24^^6.25^4.27^9.02^3.87 -~10081~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STKS),LN & FAT,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 17%~^26^^6.25^4.27^9.02^3.87 -~10082~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean and fat, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~10083~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87 -~10084~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,RAW~^~URMIS # 3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 15%, Separable fat, 8%~^32^^6.25^4.27^9.02^3.87 -~10085~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 17%, Separable fat, 6%~^32^^6.25^4.27^9.02^3.87 -~10086~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean only, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 10%~^33^^6.25^4.27^9.02^3.87 -~10087~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN,CKD,RSTD~^^^~Y~^~Bone 24%, separable fat 7%~^31^^6.25^4.27^9.02^3.87 -~10088~^~1000~^~Pork, fresh, spareribs, separable lean and fat, raw~^~PORK,FRSH,SPARERIBS,LN&FAT,RAW~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~10089~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, braised~^~PORK,FRSH,SPARERIBS,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^38^^6.25^4.27^9.02^3.87 -~10093~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, and shoulder), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,&SHLDR),LN,CKD~^^^~Y~^~Bone and skin 22%, separable fat 9%~^31^^6.25^4.27^9.02^3.87 -~10094~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,RAW~^^^~Y~^~separable fat 16%~^16^^^^^ -~10096~^~1000~^~Pork, fresh, variety meats and by-products, brain, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membrane~^2^^6.25^4.27^9.02^3.87 -~10097~^~1000~^~Pork, fresh, variety meats and by-products, brain, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10098~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,RAW~^^^^~Separable fat~^18^^6.25^4.27^9.02^3.87 -~10099~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10100~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,RAW~^^^^~Thaw juice and trim~^5^^6.25^4.27^9.02^3.87 -~10101~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10102~^~1000~^~Pork, fresh, variety meats and by-products, feet, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,RAW~^^^^~Bone and hard tissue~^29^^6.25^4.27^9.02^3.87 -~10103~^~1000~^~Pork, fresh, variety meats and by-products, heart, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10104~^~1000~^~Pork, fresh, variety meats and by-products, heart, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10105~^~1000~^~Pork, fresh, variety meats and by-products, jowl, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,JOWL,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10106~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins, and membranes~^7^^6.25^4.27^9.02^3.87 -~10107~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10109~^~1000~^~Pork, fresh, variety meats and by-products, leaf fat, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LEAF FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10110~^~1000~^~Pork, fresh, variety meats and by-products, liver, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10111~^~1000~^~Pork, fresh, variety meats and by-products, liver, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10112~^~1000~^~Pork, fresh, variety meats and by-products, lungs, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^13^^6.25^4.27^9.02^3.87 -~10113~^~1000~^~Pork, fresh, variety meats and by-products, lungs, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10114~^~1000~^~Pork, fresh, variety meats and by-products, mechanically separated, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10115~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10116~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10117~^~1000~^~Pork, fresh, variety meats and by-products, spleen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10118~^~1000~^~Pork, fresh, variety meats and by-products, spleen, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~10119~^~1000~^~Pork, fresh, variety meats and by-products, stomach, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,STOMACH,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10120~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%, separable fat 6%~^33^^6.25^4.27^9.02^3.87 -~10121~^~1000~^~Pork, fresh, variety meats and by-products, tongue, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~10122~^~1000~^~Pork, fresh, variety meats and by-products, tongue, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^~Skin and trimmings~^24^^6.25^4.27^9.02^4.11 -~10123~^~1000~^~Pork, cured, bacon, unprepared~^~PORK,CURED,BACON,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10128~^~1000~^~Pork, cured, breakfast strips, raw or unheated~^~PORK,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10130~^~1000~^~Canadian bacon, unprepared~^~CANADIAN BACON,UNPREP~^^^~Y~^^0^^^^^ -~10132~^~1000~^~Pork, cured, feet, pickled~^~PORK,CURED,FEET,PICKLED~^^^~Y~^~Bone and hard tissue 66%~^66^^6.25^4.27^9.02^3.87 -~10134~^~1000~^~Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,EX LN (APPROX 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10136~^~1000~^~Pork, cured, ham, boneless, regular (approximately 11% fat), roasted~^~PORK,CURED,HAM,BNLESS,REG (APPROX 11% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10137~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10138~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10140~^~1000~^~Pork, cured, ham, regular (approximately 13% fat), canned, roasted~^~PORK,CURED,HAM,REG (APPROX 13% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10141~^~1000~^~Pork, cured, ham, center slice, country-style, separable lean only, raw~^~PORK,CURED,HAM,CNTR SLICE,COUNTRY-STYLE,LN,RAW~^^^~Y~^~Bone and skin 3%, separable fat 12%~^15^^6.25^4.27^9.02^3.87 -~10142~^~1000~^~Pork, cured, ham, center slice, separable lean and fat, unheated~^~PORK,CURED,HAM,CNTR SLICE,LN&FAT,UNHTD~^^^^~Bone~^3^^6.25^4.27^9.02^3.87 -~10146~^~1000~^~Pork, cured, ham, patties, unheated~^~PORK,CURED,HAM,PATTIES,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10149~^~1000~^~Pork, cured, ham, steak, boneless, extra lean, unheated~^~PORK,CURED,HAM,STEAK,BNLESS,EX LN,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10150~^~1000~^~Pork, cured, ham, whole, separable lean and fat, unheated~^~PORK,CURED,HAM,WHL,LN&FAT,UNHTD~^^^^~Bone and skin~^18^^6.25^4.27^9.02^3.87 -~10152~^~1000~^~Pork, cured, ham, whole, separable lean only, unheated~^~PORK,CURED,HAM,WHL,LN,UNHTD~^^^~Y~^~Bone and skin 18%, separable fat 19%~^37^^6.25^4.27^9.02^3.87 -~10153~^~1000~^~Pork, cured, ham, whole, separable lean only, roasted~^~PORK,CURED,HAM,WHL,LN,RSTD~^^^~Y~^~Bone and skin 24%, separable fat 15%~^39^^6.25^4.27^9.02^3.87 -~10163~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,CKD,PAN-BROILED~^^^~Y~^~Separable lean 14%~^14^^^^^ -~10164~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN & FAT,RAW~^^^~Y~^^0^^^^^ -~10165~^~1000~^~Pork, cured, salt pork, raw~^~PORK,CURED,SALT PORK,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10166~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), unheated~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10167~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), roasted~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10168~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean and fat, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN&FAT,RSTD~^^^~Y~^~Bone and skin~^27^^6.25^4.27^9.02^3.87 -~10169~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean only, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN,RSTD~^^^~Y~^~Bone and skin 27%, separable fat 19%~^46^^6.25^4.27^9.02^3.87 -~10170~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, unheated~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10171~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, roasted~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~10173~^~1000~^~Pork, fresh, variety meats and by-products, feet, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,CKD,SIMMRD~^^^~Y~^~Bone and hard tissue~^60^^6.25^4.27^9.02^3.87 -~10174~^~1000~^~Pork, fresh, variety meats and by-products, tail, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,RAW~^^^^~Bone and hard tissue~^30^^6.25^4.27^9.02^3.87 -~10175~^~1000~^~Pork, fresh, variety meats and by-products, tail, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,CKD,SIMMRD~^^^^~Bone and hard tissue~^32^^6.25^4.27^9.02^3.87 -~10176~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, separable fat 8%, Connective tissue 6%~^28^^6.25^4.27^9.02^3.87 -~10177~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%, separable fat 9%~^32^^6.25^4.27^9.02^3.87 -~10178~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%~^27^^6.25^4.27^9.02^3.87 -~10179~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN CHOPS,BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, Connective tissue 6%~^20^^6.25^4.27^9.02^3.87 -~10180~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87 -~10181~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%, separable fat 5%,~^10^^6.25^4.27^9.02^3.87 -~10182~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, unheated~^~PORK,CURED,HAM,BNLESS,EX LN®,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10183~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,EX LN®,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10184~^~1000~^~Pork, cured, ham, extra lean and regular, canned, unheated~^~PORK,CURED,HAM,EX LN®,CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10185~^~1000~^~Pork, cured, ham, extra lean and regular, canned, roasted~^~PORK,CURED,HAM,EX LN®,CND,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10186~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10187~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, raw~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,RAW~^^^^~Bone and skin~^25^^6.25^4.27^9.02^3.87 -~10188~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, cooked~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10189~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LON (CHPS),BNLESS,LN & FAT,CKD,PAN-BRLED~^^^~Y~^^0^^^^^ -~10192~^~1000~^~Pork, fresh, backribs, separable lean and fat, raw~^~PORK,FRSH,BACKRIBS,LN&FAT,RAW~^^^^~Bone 30%, Connective tissue 7%~^37^^6.25^4.27^9.02^3.87 -~10193~^~1000~^~Pork, fresh, backribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,BACKRIBS,LN&FAT,CKD,RSTD~^^^^~Bone~^43^^6.25^4.27^9.02^3.87 -~10194~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue~^11^^6.25^4.27^9.02^3.87 -~10195~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^5^^6.25^4.27^9.02^3.87 -~10196~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~10197~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10198~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~10199~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 11%, separable fat 11%~^22^^6.25^4.27^9.02^3.87 -~10200~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRSD~^^^~Y~^~Connective tissue 5%, separable fat 10%~^15^^6.25^4.27^9.02^3.87 -~10201~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRLD~^^^^~Connective tissue 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~10202~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 8%, separable fat 11%~^19^^6.25^4.27^9.02^3.87 -~10203~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 8%, separable fat 10%~^18^^6.25^4.27^9.02^3.87 -~10204~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,RAW~^~Country Ribs~^^^~Bone 21%, Connective tissue 14%~^35^^6.25^4.27^9.02^3.87 -~10205~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue 15%~^39^^6.25^4.27^9.02^3.87 -~10206~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,RSTD~^^^^~Connective tisue 8%, Bone 17%~^25^^6.25^4.27^9.02^3.87 -~10207~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,RAW~^~Country ribs~^^^~Bone 21%, Connective tissue, 14%, separable fat 6%~^41^^6.25^4.27^9.02^3.87 -~10208~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue, 15%, separable fat 4%~^43^^6.25^4.27^9.02^3.87 -~10209~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,RSTD~^^^^~Connective tissue 8%, Bone 17%, Separable fat 7%~^32^^6.25^4.27^9.02^3.87 -~10210~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue 4%~^6^^6.25^4.27^9.02^3.87 -~10211~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10212~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~10213~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~10214~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 5%, Separable fat 2%~^7^^6.25^4.27^9.02^3.87 -~10215~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 3%, Separable fat 1%~^4^^6.25^4.27^9.02^3.87 -~10216~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRLD~^^^~Y~^~Connective tissue 2%, Separable fat 2%~^4^^6.25^4.27^9.02^3.87 -~10217~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN,CKD,RSTD~^^^~Y~^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10218~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,RAW~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87 -~10219~^~1000~^~Pork, fresh, ground, raw~^~PORK,FRESH,GROUND,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~10220~^~1000~^~Pork, fresh, ground, cooked~^~PORK,FRESH,GROUND,COOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10221~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~10222~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,RSTD~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~10223~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87 -~10224~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue~^16^^6.25^4.27^9.02^3.87 -~10225~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 10%, separable fat 6%~^16^^6.25^4.27^9.02^3.87 -~10226~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN & SHLDR BLADE),LN & FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10227~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN&FAT,CKD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10228~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,RAW~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10229~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,CKD~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~10851~^~1000~^~HORMEL, Cure 81 Ham~^~HORMEL,CURE 81 HAM~^^^^^0^^^4.00^9.00^4.00 -~10852~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Teriyaki-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,TERIYAKI-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10853~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Peppercorn-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,PEPPERCORN-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10854~^~1000~^~HORMEL ALWAYS TENDER, Pork Loin Filets, Lemon Garlic-Flavored~^~HORMEL ALWAYS TENDER,PORK LOIN FILETS,LEMON GARLIC-FLAVORED~^^^^^0^^^4.00^9.00^4.00 -~10855~^~1000~^~HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork~^~HORMEL ALWAYS TENDER,CNTR CUT CHOPS,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10856~^~1000~^~HORMEL ALWAYS TENDER, Boneless Pork Loin, Fresh Pork~^~HORMEL ALWAYS TENDER,BNLESS PORK LOIN,FRSH PORK~^^^^^0^^^4.00^9.00^4.00 -~10857~^~1000~^~HORMEL Canadian Style Bacon~^~HORMEL CANADIAN STYLE BACON~^^^^^0^^^4.00^9.00^4.00 -~10858~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,PN-BRLD~^^^^~Separable fat~^9^^6.25^4.27^9.02^3.87 -~10859~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TPLN(CHPS),BNLS,LN & FT,W/ADDED SLN,CKD,PN-BRLD~^^^^^0^^^4.27^9.02^3.87 -~10860~^~1000~^~Pork, cured, bacon, cooked, baked~^~PORK,CURED,BACON,CKD,BKD~^^^^^0^^6.25^4.27^9.02^3.87 -~10861~^~1000~^~Pork, cured, bacon, cooked, microwaved~^~PORK,CURED,BACON,CKD,MICROWAVED~^^^^^0^^6.25^4.27^9.02^3.87 -~10862~^~1000~^~Pork, cured, bacon, pre-sliced, cooked, pan-fried~^~PORK,CURED,BACON,PRE-SLICED,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~10863~^~1000~^~Pork, fresh, variety meats and by-products, stomach, cooked, simmered~^~PORK,FRSH,VAR MEATS & BY-PRODUCTS,STOMACH,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~10864~^~1000~^~Pork, bacon, rendered fat, cooked~^~PORK,BACON,RENDERED FAT,CKD~^~bacon drippings~^^^^0^^6.25^4.27^9.02^3.87 -~10865~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 10%, separable fat 9%~^19^^^^^ -~10866~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 12%, Separable fat 16%~^28^^6.25^^^ -~10867~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%, Separable fat 16%~^35^^^^^ -~10868~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Separable fat 9%, Bone 4%~^13^^^^^ -~10869~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Connective tissue 1%, Separable fat 8%~^12^^^^^ -~10870~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^^0^^^^^ -~10871~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^^0^^^^^ -~10872~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10873~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 14%, Separable fat 9%~^23^^^^^ -~10874~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%, Separable fat 11%~^26^^^^^ -~10875~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Separable fat 8%~^11^^^^^ -~10876~^~1000~^~Pork, cured, ham with natural juices, spiral slice, meat only, boneless, separable lean only, heated, roasted~^~PRK,CRD,HAM W/ NAT JUCS,SPRL SLC,MEAT ONLY,BNLES,LN,HTD,RSTD~^^^^~Separable fat~^3^^^^^ -~10877~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%, Separable fat 12%~^26^^^^^ -~10878~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^2^^^^^ -~10879~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 2%~^2^^^^^ -~10880~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat~^3^^^^^ -~10881~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%, Separable fat 21%~^41^^^^^ -~10882~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^1^^^^^ -~10883~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 3%~^3^^^^^ -~10884~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 4%~^4^^^^^ -~10885~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 16%~^26^^6.25^^^ -~10886~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 4%, Separable fat 16%~^20^^6.25^^^ -~10887~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone~^18^^6.25^^^ -~10888~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 11%~^14^^6.25^^^ -~10889~^~1000~^~Pork, cured, ham and water product, shank, bone-in, unheated, separable lean only~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,UNHTD,LN~^^^^~Bone 17%, Separable fat 27%~^44^^6.25^^^ -~10890~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 21%, Separable fat 16%~^37^^6.25^^^ -~10891~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 14%~^24^^6.25^^^ -~10892~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 9%~^12^^6.25^^^ -~10893~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRAL SLICE,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 5%~^5^^6.25^^^ -~10894~^~1000~^~Pork, cured, ham, separable fat, boneless, heated~^~PORK,CURED,HAM,FAT,BNLESS,HTD~^^^^^0^^6.25^^^ -~10895~^~1000~^~Pork, cured, ham, separable fat, boneless, unheated~^~PORK,CURED,HAM,FAT,BNLESS,UNHTD~^^^^^0^^6.25^^^ -~10898~^~1000~^~Pork, pickled pork hocks~^~PORK,PICKLED PORK HOCKS~^^^^^0^^6.25^^^ -~10899~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 5%, Separable fat 9%~^14^^^^^ -~10900~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10901~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRL SLCE,BNLES,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10902~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10903~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10904~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^21^^^^^ -~10905~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10906~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^ -~10907~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^17^^^^^ -~10908~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^18^^^^^ -~10909~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^ -~10910~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^4^^^^^ -~10911~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^ -~10912~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^12^^^^^ -~10913~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^10^^^^^ -~10914~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%~^19^^^^^ -~10915~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^4^^^^^ -~10916~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10917~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10918~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%~^14^^^^^ -~10919~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%~^20^^^^^ -~10920~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone 3%, Connective tissue 1%~^4^^^^^ -~10921~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLICE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10922~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10923~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^14^^^^^ -~10924~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%~^15^^^^^ -~10925~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^3^^^^^ -~10926~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLICE,BNLES,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^ -~10927~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUCS,SPRL SLCE,BNLES,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10928~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^ -~10929~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^23^^^^^ -~10931~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Separable fat 10%~^23^^^^^ -~10932~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 13%, Separable fat 13%~^26^^^^^ -~10933~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Separable fat 10%~^22^^^^^ -~10934~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 11%, Separable fat 12%~^23^^^^^ -~10935~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~10936~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^11^^^^^ -~10937~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,HTD,PAN-BROIL~^^^^~Bone~^14^^^^^ -~10938~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 5%, Separable fat 11%~^16^^^^^ -~10939~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^5^^^^^ -~10940~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,SPARERIBS,LN & FAT,CKD,RSTD~^^^^~Bone~^32^^^^^ -~10942~^~1000~^~Pork, fresh, composite of separable fat, with added solution, raw~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,RAW~^^^^^0^^^^^ -~10943~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue, 4%, Separable fat, 1%~^5^^^^^ -~10944~^~1000~^~Pork, fresh, enhanced, loin, tenderloin, separable lean only, raw~^~PORK,FRSH,ENHANCED,LOIN,TENDERLOIN,LN,RAW~^^^~Y~^~Connective tissue, 3%, Separable fat, 2%~^5^^^4.27^9.02^3.87 -~10945~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution cooked, braised~^~PORK,FRSH,SHLDR,(BSTN BTT),BLDE (STKS),LN,W/ADDEDSLNCKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%, Separable fat, 7%~^35^^^4.27^9.02^3.87 -~10946~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution, raw~^~PORK,FRSH,SHLDR,(BSTN BUTT),BLDE (STKS),LN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%, Separable fat, 9%~^32^^^^^ -~10947~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, broiled~^~PORK,FRSH,LN,TOP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,BRLD~^^^~Y~^~Separable fat 7%~^7^^^^^ -~10948~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, raw~^~PORK,FRSH,LN,TOP LIN (CHOPS),BNLSS,LN,W/ ADDED SLN,RAW~^^^~Y~^~Separable fat 14%~^14^^^^^ -~10949~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TP LN (CHPS),BNLSS,LN & FT,W/ ADDED SLN,RAW~^^^~Y~^^0^^6.25^^^ -~10950~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLSS,LN & FT,W/ADDED SLN,CKD,BRLD~^^^~Y~^^0^^^^^ -~10951~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN & FAT,W/ ADDED SLN,RAW~^^^~Y~^~Connective tissue 3%~^3^^^^^ -~10952~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN & FT,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^^^^ -~10953~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat,with added solution, raw~^~PORK,FRSH,SHDR,(BSTN BTT),BLDE(STKS),LN & FT,W/ADDED SLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%~^23^^^^^ -~10954~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, with added solution, cooked, braised~^~PORK,FRSH,SHDR,(BSTN BT),BLDE(STKS),LN&FT,WADDEDSLN,CKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%~^28^^^^^ -~10955~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^13^^^^^ -~10956~^~1000~^~Pork, loin, leg cap steak, boneless, separable lean and fat, cooked, broiled~^~PORK,LOIN,LEG CAP STEAK,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10957~^~1000~^~Pork, Leg Cap Steak, boneless, separable lean and fat, raw~^~PORK,LEG CAP STEAK,BNLESS,LN & FAT,RAW~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87 -~10958~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, raw~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,RAW~^~URMIS #3604, Shoulder breast, Pectoralis Profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10959~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3604, Shoulder breast, Pectoralis profundi~^^^^0^^6.25^4.27^9.02^3.87 -~10960~^~1000~^~Pork, shoulder, petite tender, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR,PETITE TENDER,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10961~^~1000~^~Pork, Shoulder petite tender, boneless, separable lean and fat, raw~^~PORK,SHLDR PETITE TENDER,BNLESS,LN & FAT,RAW~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87 -~10962~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, cooked, braised~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,CKD,BRSD~^~URMIS #3647, Leg sirloin tip roast, Vastas Lateralis/Rectus femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10963~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, raw~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,RAW~^~URMIS #3647, Leg sirloin tip roast, Vastas lateralis/Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~10972~^~1000~^~Pork, ground, 84% lean / 16% fat, raw~^~PORK,GROUND,84% LN / 16% FAT,RAW~^^^^^0^^^^^ -~10973~^~1000~^~Pork, ground, 96% lean / 4% fat, raw~^~PORK,GROUND,96% LN / 4% FAT,RAW~^^^^^0^^^^^ -~10974~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, crumbles~^~PORK,GROUND,72% LN / 28% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10975~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, crumbles~^~PORK,GROUND,84% LN / 16% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10976~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, crumbles~^~PORK,GROUND,96% LN / 4% FAT,CKD,CRUMBLES~^^^^^0^^^^^ -~10977~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, pan-broiled~^~PORK,GROUND,72% LN / 28% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10978~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, pan-broiled~^~PORK,GROUND,84% LN / 16% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10979~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, pan-broiled~^~PORK,GROUND,96% LN / 4% FAT,CKD,PAN-BROILED~^^^^^0^^^^^ -~10980~^~1000~^~Pork loin, fresh, backribs, bone-in, raw, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,RAW,LN~^^^~Y~^~Bone 30%, Connective tissue 7%, Separable fat 9%~^50^^^^^ -~10981~^~1000~^~Pork loin, fresh, backribs, bone-in, cooked-roasted, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,COOKED-ROASTED,LN~^^^~Y~^~Bone 31%, Connective tissue 4%, Separable fat 5%~^40^^^^^ -~10982~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 7%, Separable fat 6%~^13^^^^^ -~10983~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 5%~^10^^^^^ -~10984~^~1000~^~Pork, fresh, loin, blade (chops), boneless, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BNLESS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10985~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^ -~10986~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%, Separable fat 8%~^30^^^^^ -~10987~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%, Separable fat 11%~^19^^^^^ -~10988~^~1000~^~Pork, fresh, blade, (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,BLADE,(CHOPS),BNLESS,LN & FAT,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10989~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean and fat only, raw~^~PORK,FRSH,LOIN,BLDE (CHOPS OR ROAST),BNLESS,LN & FAT OLY,RAW~^^^^~Connective tissue 7%~^7^^^^^ -~10990~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN & FAT,CKD,RSTD~^^^^~Connective tissue 5%~^5^^^^^ -~10991~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^ -~10992~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%~^22^^^^^ -~10993~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%,~^7^^^^^ -~10994~^~1000~^~Bacon, pre-sliced, reduced/low sodium, unprepared~^~BACON,PRE-SLICED,REDUCED/LOW NA,UNPREP~^^^^^0^^^^^ -~10998~^~1000~^~Canadian bacon, cooked, pan-fried~^~CANADIAN BACON,CKD,PAN-FRIED~^^^~Y~^^0^^^^^ -~11001~^~1100~^~Alfalfa seeds, sprouted, raw~^~ALFALFA SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Medicago sativa~^6.25^2.44^8.37^3.57 -~11003~^~1100~^~Amaranth leaves, raw~^~AMARANTH LEAVES,RAW~^^^^~Tough stems~^6^~Amaranthus spp.~^6.25^2.44^8.37^3.57 -~11004~^~1100~^~Amaranth leaves, cooked, boiled, drained, without salt~^~AMARANTH LEAVES,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11005~^~1100~^~Arrowhead, raw~^~ARROWHEAD,RAW~^^^^~Skin and sprout~^25^~Sagittaria latifolia~^6.25^2.78^8.37^3.84 -~11006~^~1100~^~Arrowhead, cooked, boiled, drained, without salt~^~ARROWHEAD,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11007~^~1100~^~Artichokes, (globe or french), raw~^~ARTICHOKES,(GLOBE OR FRENCH),RAW~^^^^~Stem and inedible parts of bracts and flowers~^60^~Cynara scolymus~^6.25^2.44^8.37^3.57 -~11008~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,WO/SALT~^^^~Y~^~Stem and inedible parts of bracts and flowers~^60^^6.25^2.44^8.37^3.57 -~11009~^~1100~^~Artichokes, (globe or french), frozen, unprepared~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11010~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11011~^~1100~^~Asparagus, raw~^~ASPARAGUS,RAW~^^^~Y~^~Butt ends~^47^~Asparagus officinalis~^6.25^2.44^8.37^3.57 -~11012~^~1100~^~Asparagus, cooked, boiled, drained~^~ASPARAGUS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11013~^~1100~^~Asparagus, canned, regular pack, solids and liquids~^~ASPARAGUS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11015~^~1100~^~Asparagus, canned, drained solids~^~ASPARAGUS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11018~^~1100~^~Asparagus, frozen, unprepared~^~ASPARAGUS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11019~^~1100~^~Asparagus, frozen, cooked, boiled, drained, without salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11022~^~1100~^~Balsam-pear (bitter gourd), leafy tips, raw~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^62^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11023~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11024~^~1100~^~Balsam-pear (bitter gourd), pods, raw~^~BALSAM-PEAR (BITTER GOURD),PODS,RAW~^^^^~Tough stems and leaves~^17^~Momordica charantia~^6.25^2.44^8.37^3.57 -~11025~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11026~^~1100~^~Bamboo shoots, raw~^~BAMBOO SHOOTS,RAW~^^^~Y~^~Sheath~^71^~Phyllostachys spp.~^6.25^2.44^8.37^3.57 -~11027~^~1100~^~Bamboo shoots, cooked, boiled, drained, without salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11028~^~1100~^~Bamboo shoots, canned, drained solids~^~BAMBOO SHOOTS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11029~^~1100~^~Beans, kidney, mature seeds, sprouted, raw~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11030~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11031~^~1100~^~Lima beans, immature seeds, raw~^~LIMA BNS,IMMAT SEEDS,RAW~^^^~Y~^~Pods and imperfect beans~^56^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~11032~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11033~^~1100~^~Lima beans, immature seeds, canned, regular pack, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11037~^~1100~^~Lima beans, immature seeds, frozen, fordhook, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11038~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11039~^~1100~^~Lima beans, immature seeds, frozen, baby, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11040~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11043~^~1100~^~Mung beans, mature seeds, sprouted, raw~^~MUNG BNS,MATURE SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^2.44^8.37^3.57 -~11044~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11045~^~1100~^~Mung beans, mature seeds, sprouted, cooked, stir-fried~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11046~^~1100~^~Beans, navy, mature seeds, sprouted, raw~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11047~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11048~^~1100~^~Beans, pinto, immature seeds, frozen, unprepared~^~BEANS,PINTO,IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11049~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, without salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11050~^~1100~^~Beans, shellie, canned, solids and liquids~^~BEANS,SHELLIE,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^2.96^8.37^3.82 -~11052~^~1100~^~Beans, snap, green, raw~^~BEANS,SNAP,GREEN,RAW~^^^~Y~^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11053~^~1100~^~Beans, snap, green, cooked, boiled, drained, without salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11054~^~1100~^~Beans, snap, green, canned, regular pack, solids and liquids~^~BEANS,SNAP,GRN,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11056~^~1100~^~Beans, snap, green, canned, regular pack, drained solids~^~BEANS,SNAP,GRN,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11058~^~1100~^~Beans, snap, canned, all styles, seasoned, solids and liquids~^~BEANS,SNAP,CND,ALL STYLES,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11060~^~1100~^~Beans, snap, green, frozen, all styles, unprepared (Includes foods for USDA's Food Distribution Program)~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11061~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained without salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11062~^~1100~^~Beans, snap, green, frozen, all styles, microwaved~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11063~^~1100~^~Beans, snap, green, microwaved~^~BEANS,SNAP,GRN,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11080~^~1100~^~Beets, raw~^~BEETS,RAW~^^^~Y~^~Parings and part tops~^33^~Beta vulgaris~^6.25^2.78^8.37^3.84 -~11081~^~1100~^~Beets, cooked, boiled, drained~^~BEETS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11082~^~1100~^~Beets, canned, regular pack, solids and liquids~^~BEETS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11084~^~1100~^~Beets, canned, drained solids~^~BEETS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11086~^~1100~^~Beet greens, raw~^~BEET GREENS,RAW~^^^~Y~^~Stems, bruised and old leaves~^44^~Beta vulgaris~^6.25^2.44^8.37^3.57 -~11087~^~1100~^~Beet greens, cooked, boiled, drained, without salt~^~BEET GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11088~^~1100~^~Broadbeans, immature seeds, raw~^~BROADBEANS,IMMAT SEEDS,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^3.47^8.37^4.07 -~11089~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, without salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11090~^~1100~^~Broccoli, raw~^~BROCCOLI,RAW~^^^~Y~^~Leaves and tough stalks with trimmings~^39^~Brassica oleracea var. italica~^6.25^2.44^8.37^3.57 -~11091~^~1100~^~Broccoli, cooked, boiled, drained, without salt~^~BROCCOLI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11092~^~1100~^~Broccoli, frozen, chopped, unprepared~^~BROCCOLI,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11093~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11094~^~1100~^~Broccoli, frozen, spears, unprepared (Includes foods for USDA's Food Distribution Program)~^~BROCCOLI,FRZ,SPEARS,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11095~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11096~^~1100~^~Broccoli raab, raw~^~BROCCOLI RAAB,RAW~^~Broccoli rabe, Rapini~^^~Y~^^0^~Brassica ruvo~^6.25^2.44^8.37^3.57 -~11097~^~1100~^~Broccoli raab, cooked~^~BROCCOLI RAAB,CKD~^~Broccoli rabe, Rapini~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11098~^~1100~^~Brussels sprouts, raw~^~BRUSSELS SPROUTS,RAW~^^^~Y~^~Outer leaves~^10^~Brassica oleracea (Gemmifera Group)~^6.25^2.44^8.37^3.57 -~11099~^~1100~^~Brussels sprouts, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11100~^~1100~^~Brussels sprouts, frozen, unprepared~^~BRUSSELS SPROUTS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11101~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11104~^~1100~^~Burdock root, raw~^~BURDOCK ROOT,RAW~^^^~Y~^~Skin, root and tips~^25^~Arctium lappa~^6.25^2.78^8.37^3.84 -~11105~^~1100~^~Burdock root, cooked, boiled, drained, without salt~^~BURDOCK ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11106~^~1100~^~Butterbur, (fuki), raw~^~BUTTERBUR,(FUKI),RAW~^^^^~Leaves, stem ends, peels~^12^~Petasites japonicus~^6.25^2.44^8.37^3.57 -~11107~^~1100~^~Butterbur, cooked, boiled, drained, without salt~^~BUTTERBUR,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11108~^~1100~^~Butterbur, canned~^~BUTTERBUR,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11109~^~1100~^~Cabbage, raw~^~CABBAGE,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11110~^~1100~^~Cabbage, cooked, boiled, drained, without salt~^~CABBAGE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11112~^~1100~^~Cabbage, red, raw~^~CABBAGE,RED,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11113~^~1100~^~Cabbage, red, cooked, boiled, drained, without salt~^~CABBAGE,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11114~^~1100~^~Cabbage, savoy, raw~^~CABBAGE,SAVOY,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57 -~11115~^~1100~^~Cabbage, savoy, cooked, boiled, drained, without salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11116~^~1100~^~Cabbage, chinese (pak-choi), raw~^~CABBAGE,CHINESE (PAK-CHOI),RAW~^~pak choi, bok choy~^^~Y~^~Base and damaged leaves~^12^~Brassica rapa (Chinensis Group)~^6.25^2.44^8.37^3.57 -~11117~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,WO/SALT~^~bok choy, pak choi~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11118~^~1100~^~Cabbage, kimchi~^~CABBAGE,KIMCHI~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11119~^~1100~^~Cabbage, chinese (pe-tsai), raw~^~CABBAGE,CHINESE (PE-TSAI),RAW~^^^~Y~^~Outer leaves and root base~^7^~Brassica rapa (Pekinensis Group)~^6.25^2.44^8.37^3.57 -~11120~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11122~^~1100~^~Cardoon, raw~^~CARDOON,RAW~^^^^~Tough stems and leaves~^51^~Cynara cardunculus~^6.25^2.44^8.37^3.57 -~11123~^~1100~^~Cardoon, cooked, boiled, drained, without salt~^~CARDOON,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11124~^~1100~^~Carrots, raw~^~CARROTS,RAW~^^^~Y~^~Crown, tops and scrapings~^11^~Daucus carota~^6.25^2.78^8.37^3.84 -~11125~^~1100~^~Carrots, cooked, boiled, drained, without salt~^~CARROTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11126~^~1100~^~Carrots, canned, regular pack, solids and liquids~^~CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11128~^~1100~^~Carrots, canned, regular pack, drained solids~^~CARROTS,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11130~^~1100~^~Carrots, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~CARROTS,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11131~^~1100~^~Carrots, frozen, cooked, boiled, drained, without salt~^~CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11134~^~1100~^~Cassava, raw~^~CASSAVA,RAW~^^^~Y~^~Skin~^16^~Manihot esculenta~^6.25^2.78^8.37^4.03 -~11135~^~1100~^~Cauliflower, raw~^~CAULIFLOWER,RAW~^^^~Y~^~Leaf stalks, cores and trimmings~^61^~Brassica oleracea (Botrytis Group)~^6.25^2.44^8.37^3.57 -~11136~^~1100~^~Cauliflower, cooked, boiled, drained, without salt~^~CAULIFLOWER,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11137~^~1100~^~Cauliflower, frozen, unprepared~^~CAULIFLOWER,FRZ,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11138~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, without salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11141~^~1100~^~Celeriac, raw~^~CELERIAC,RAW~^^^~Y~^~Parings~^14^~Apium graveolens~^6.25^2.78^8.37^3.84 -~11142~^~1100~^~Celeriac, cooked, boiled, drained, without salt~^~CELERIAC,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11143~^~1100~^~Celery, raw~^~CELERY,RAW~^^^~Y~^~Roots and trimmings~^11^~Apium graveolens~^6.25^2.44^8.37^3.57 -~11144~^~1100~^~Celery, cooked, boiled, drained, without salt~^~CELERY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11145~^~1100~^~Celtuce, raw~^~CELTUCE,RAW~^^^^~Tough leaves and stems~^25^~Lactuca sativa~^6.25^2.44^8.37^3.57 -~11147~^~1100~^~Chard, swiss, raw~^~CHARD,SWISS,RAW~^^^~Y~^~Tough stems and damaged leaves~^8^~Beta vulgaris subsp. vulagaris~^6.25^2.44^8.37^3.57 -~11148~^~1100~^~Chard, swiss, cooked, boiled, drained, without salt~^~CHARD,SWISS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11149~^~1100~^~Chayote, fruit, raw~^~CHAYOTE,FRUIT,RAW~^~christophine~^^~Y~^~End and stem~^1^~Sechium edule~^6.25^2.44^8.37^3.57 -~11150~^~1100~^~Chayote, fruit, cooked, boiled, drained, without salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,WO/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11151~^~1100~^~Chicory, witloof, raw~^~CHICORY,WITLOOF,RAW~^^^^~Root base and core~^11^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11152~^~1100~^~Chicory greens, raw~^~CHICORY GREENS,RAW~^^^~Y~^~Tough stems and damaged leaves~^18^~Cichorium intybus~^6.25^2.44^8.37^3.57 -~11154~^~1100~^~Chicory roots, raw~^~CHICORY ROOTS,RAW~^^^^~Peels and tops~^18^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11156~^~1100~^~Chives, raw~^~CHIVES,RAW~^^^~Y~^^0^~Allium schoenoprasum~^6.25^2.44^8.37^3.57 -~11157~^~1100~^~Chrysanthemum, garland, raw~^~CHRYSANTHEMUM,GARLAND,RAW~^^^^~Stem ends~^4^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11158~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, without salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11161~^~1100~^~Collards, raw~^~COLLARDS,RAW~^^^~Y~^~Stems~^43^~Brassica oleracea var. viridis~^6.25^2.44^8.37^3.57 -~11162~^~1100~^~Collards, cooked, boiled, drained, without salt~^~COLLARDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11163~^~1100~^~Collards, frozen, chopped, unprepared~^~COLLARDS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11164~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, without salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11165~^~1100~^~Coriander (cilantro) leaves, raw~^~CORIANDER (CILANTRO) LEAVES,RAW~^~Chinese parsley, raw, Cilantro, raw~^^~Y~^~Roots, old and bruised leaves~^15^~Coriandrum sativum~^6.25^2.44^8.37^3.57 -~11167~^~1100~^~Corn, sweet, yellow, raw~^~CORN,SWT,YEL,RAW~^^^~Y~^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11168~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11170~^~1100~^~Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids~^~CORN,SWT,YEL,CND,BRINE PK,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11172~^~1100~^~Corn, sweet, yellow, canned, whole kernel, drained solids~^~CORN,SWT,YEL,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11174~^~1100~^~Corn, sweet, yellow, canned, cream style, regular pack~^~CORN,SWT,YEL,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11176~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, regular pack~^~CORN,SWT,YEL,CND,VACUUM PK,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11177~^~1100~^~Corn, sweet, yellow, canned, drained solids, rinsed with tap water~^~CORN,SWT,YEL,CND,DRND SOL,RINSED W/ TAP H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~11178~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, unprepared (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11179~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11180~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, unprepared~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11181~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11182~^~1100~^~Corn, yellow, whole kernel, frozen, microwaved~^~CORN,YEL,WHL KERNEL,FRZ,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57 -~11184~^~1100~^~Corn with red and green peppers, canned, solids and liquids~^~CORN W/RED&GRN PEPPERS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11190~^~1100~^~Cornsalad, raw~^~CORNSALAD,RAW~^^^^^^~Valerianella locusta~^6.25^2.44^8.37^3.57 -~11191~^~1100~^~Cowpeas (blackeyes), immature seeds, raw~^~COWPEAS (BLACKEYES),IMMAT SEEDS,RAW~^^^^~Pods~^49^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~11192~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11195~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, unprepared~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11196~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMTRE SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11197~^~1100~^~Cowpeas, young pods with seeds, raw~^~COWPEAS,YOUNG PODS W/SEEDS,RAW~^^^^~Ends and strings~^9^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11198~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, without salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11199~^~1100~^~Yardlong bean, raw~^~YARDLONG BEAN,RAW~^^^^~Ends~^5^~Vigna unguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~11200~^~1100~^~Yardlong bean, cooked, boiled, drained, without salt~^~YARDLONG BEAN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11201~^~1100~^~Cowpeas, leafy tips, raw~^~COWPEAS,LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^48^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57 -~11202~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, without salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11203~^~1100~^~Cress, garden, raw~^~CRESS,GARDEN,RAW~^^^~Y~^~Stems, crowns and spoiled leaves~^29^~Lepidium sativum~^6.25^2.44^8.37^3.57 -~11204~^~1100~^~Cress, garden, cooked, boiled, drained, without salt~^~CRESS,GARDEN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11205~^~1100~^~Cucumber, with peel, raw~^~CUCUMBER,WITH PEEL,RAW~^^^~Y~^~Ends~^3^~Cucumis sativus~^6.25^2.44^8.37^3.57 -~11206~^~1100~^~Cucumber, peeled, raw~^~CUCUMBER,PEELED,RAW~^^^~Y~^~Parings, ends and bruised spots~^27^^6.25^2.44^8.37^3.57 -~11207~^~1100~^~Dandelion greens, raw~^~DANDELION GREENS,RAW~^^^~Y~^^0^~Taraxacum officinale~^6.25^2.44^8.37^3.57 -~11208~^~1100~^~Dandelion greens, cooked, boiled, drained, without salt~^~DANDELION GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11209~^~1100~^~Eggplant, raw~^~EGGPLANT,RAW~^^^~Y~^~Ends, parings and trimmings~^19^~Solanum melongena~^6.25^2.44^8.37^3.57 -~11210~^~1100~^~Eggplant, cooked, boiled, drained, without salt~^~EGGPLANT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11211~^~1100~^~Edamame, frozen, unprepared~^~EDAMAME,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07 -~11212~^~1100~^~Edamame, frozen, prepared~^~EDAMAME,FRZ,PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11213~^~1100~^~Endive, raw~^~ENDIVE,RAW~^^^~Y~^~Outer leaves and core~^14^~Cichorium endivia~^6.25^2.44^8.37^3.57 -~11214~^~1100~^~Escarole, cooked, boiled, drained, no salt added~^~ESCAROLE,CKD,BLD,DRND,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11215~^~1100~^~Garlic, raw~^~GARLIC,RAW~^^^~Y~^~Knob and skin~^13^~Allium sativum~^6.25^2.78^8.37^3.84 -~11216~^~1100~^~Ginger root, raw~^~GINGER ROOT,RAW~^^^~Y~^~Scrapings~^7^~Zingiber officinale~^6.25^2.78^8.37^3.84 -~11218~^~1100~^~Gourd, white-flowered (calabash), raw~^~GOURD,WHITE-FLOWERED (CALABASH),RAW~^^^^~Ends, skin, and seeds~^30^~Lagenaria siceraria~^6.25^2.44^8.37^3.57 -~11219~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, without salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11220~^~1100~^~Gourd, dishcloth (towelgourd), raw~^~GOURD,DISHCLOTH (TOWELGOURD),RAW~^^^^~Ribs, skin, stem and blossom end~^27^~Luffa aegyptiaca~^6.25^2.44^8.37^3.57 -~11221~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11222~^~1100~^~Drumstick leaves, raw~^~DRUMSTICK LEAVES,RAW~^~Harseradish tree leaves~^^^~Stems~^38^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11223~^~1100~^~Drumstick leaves, cooked, boiled, drained, without salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,WO/ SALT~^~Horseradish-tree~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11224~^~1100~^~Hyacinth-beans, immature seeds, raw~^~HYACINTH-BEANS,IMMAT SEEDS,RAW~^^^^~Ends and strings~^7^~Dolichos lablab~^6.25^3.47^8.37^4.07 -~11225~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11226~^~1100~^~Jerusalem-artichokes, raw~^~JERUSALEM-ARTICHOKES,RAW~^~Sunchokes~^^~Y~^~Parings~^31^~Helianthus tuberosus~^6.25^2.78^8.37^3.84 -~11228~^~1100~^~Jew's ear, (pepeao), raw~^~JEW'S EAR,(PEPEAO),RAW~^^^^~Stem end~^2^~Auricularia polytricha~^6.25^2.62^8.37^3.48 -~11230~^~1100~^~Pepeao, dried~^~PEPEAO,DRIED~^^^^~Stems and defects~^13^^6.25^2.62^8.37^3.48 -~11231~^~1100~^~Jute, potherb, raw~^~JUTE,POTHERB,RAW~^^^^~Tough leaves and stems~^38^~Corchorus olitorius~^6.25^2.44^8.37^3.57 -~11232~^~1100~^~Jute, potherb, cooked, boiled, drained, without salt~^~JUTE,POTHERB,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11233~^~1100~^~Kale, raw~^~KALE,RAW~^^^^~Stem ends, tough stems and tough midrib parts~^28^~Brassica oleracea (Acephala Group)~^6.25^2.44^8.37^3.57 -~11234~^~1100~^~Kale, cooked, boiled, drained, without salt~^~KALE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11235~^~1100~^~Kale, frozen, unprepared~^~KALE,FROZEN,UNPREPARED~^^^^^0^^6.25^2.44^8.37^3.57 -~11236~^~1100~^~Kale, frozen, cooked, boiled, drained, without salt~^~KALE,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11237~^~1100~^~Kanpyo, (dried gourd strips)~^~KANPYO,(DRIED GOURD STRIPS)~^^^^^0^^6.25^2.44^8.37^3.57 -~11238~^~1100~^~Mushrooms, shiitake, raw~^~MUSHROOMS,SHIITAKE,RAW~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11239~^~1100~^~Mushrooms, Chanterelle, raw~^~MUSHROOMS,CHANTERELLE,RAW~^^^^^0^~Cantharellus californicus or Cantharellus cibarius~^6.25^2.62^8.37^3.48 -~11240~^~1100~^~Mushrooms, morel, raw~^~MUSHROOMS,MOREL,RAW~^^^^^0^~Morchella spp.~^6.25^2.62^8.37^3.48 -~11241~^~1100~^~Kohlrabi, raw~^~KOHLRABI,RAW~^^^~Y~^~Leaves, stems and parings~^54^~Brassica oleracea (Gongylodes Group)~^6.25^2.44^8.37^3.57 -~11242~^~1100~^~Kohlrabi, cooked, boiled, drained, without salt~^~KOHLRABI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11243~^~1100~^~Mushrooms, portabella, grilled~^~MUSHROOMS,PORTABELLA,GRILLED~^~Portobello~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11244~^~1100~^~Lambsquarters, raw~^~LAMBSQUARTERS,RAW~^^^^^^~Chenopodium album~^6.25^2.44^8.37^3.57 -~11245~^~1100~^~Lambsquarters, cooked, boiled, drained, without salt~^~LAMBSQUARTERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11246~^~1100~^~Leeks, (bulb and lower leaf-portion), raw~^~LEEKS,(BULB&LOWER LEAF-PORTION),RAW~^^^~Y~^~Tops, root end and skin~^56^~Allium ampeloprasum~^6.25^2.78^8.37^3.84 -~11247~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11248~^~1100~^~Lentils, sprouted, raw~^~LENTILS,SPROUTED,RAW~^^^^^0^~Lens culinaris~^6.25^2.44^8.37^3.57 -~11249~^~1100~^~Lentils, sprouted, cooked, stir-fried, without salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11250~^~1100~^~Lettuce, butterhead (includes boston and bibb types), raw~^~LETTUCE,BUTTERHEAD (INCL BOSTON&BIBB TYPES),RAW~^^^~Y~^~Outer leaves and core~^26^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11251~^~1100~^~Lettuce, cos or romaine, raw~^~LETTUCE,COS OR ROMAINE,RAW~^^^~Y~^~Core~^6^~Lactuca sativa var. logifolia~^6.25^2.44^8.37^3.57 -~11252~^~1100~^~Lettuce, iceberg (includes crisphead types), raw~^~LETTUCE,ICEBERG (INCL CRISPHEAD TYPES),RAW~^^^~Y~^~Core~^5^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57 -~11253~^~1100~^~Lettuce, green leaf, raw~^~LETTUCE,GRN LEAF,RAW~^^^~Y~^~Outer leaves, core and trimmings~^36^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11254~^~1100~^~Lotus root, raw~^~LOTUS ROOT,RAW~^^^^~Skins and ends of lobes~^21^~Nelumbo nucifera~^6.25^2.78^8.37^3.84 -~11255~^~1100~^~Lotus root, cooked, boiled, drained, without salt~^~LOTUS ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11257~^~1100~^~Lettuce, red leaf, raw~^~LETTUCE,RED LEAF,RAW~^^^^~Core and damaged outer leaves~^20^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57 -~11258~^~1100~^~Mountain yam, hawaii, raw~^~MOUNTAIN YAM,HAWAII,RAW~^^^^~Ends and skin~^17^~Dioscorea pentaphylla~^6.25^2.78^8.37^3.84 -~11259~^~1100~^~Mountain yam, hawaii, cooked, steamed, without salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11260~^~1100~^~Mushrooms, white, raw~^~MUSHROOMS,WHITE,RAW~^^^~Y~^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11261~^~1100~^~Mushrooms, white, cooked, boiled, drained, without salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11263~^~1100~^~Mushrooms, white, stir-fried~^~MUSHROOMS,WHITE,STIR-FRIED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11264~^~1100~^~Mushrooms, canned, drained solids~^~MUSHROOMS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11265~^~1100~^~Mushrooms, portabella, raw~^~MUSHROOMS,PORTABELLA,RAW~^~Portabello~^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11266~^~1100~^~Mushrooms, brown, italian, or crimini, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,RAW~^^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11267~^~1100~^~Mushrooms, shiitake, stir-fried~^~MUSHROOMS,SHIITAKE,STIR-FRIED~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11268~^~1100~^~Mushrooms, shiitake, dried~^~MUSHROOMS,SHIITAKE,DRIED~^^^~Y~^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48 -~11269~^~1100~^~Mushrooms, shiitake, cooked, without salt~^~MUSHROOMS,SHIITAKE,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.62^8.37^3.48 -~11270~^~1100~^~Mustard greens, raw~^~MUSTARD GREENS,RAW~^^^~Y~^~Bases~^7^~Brassica juncea~^6.25^2.44^8.37^3.57 -~11271~^~1100~^~Mustard greens, cooked, boiled, drained, without salt~^~MUSTARD GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11272~^~1100~^~Mustard greens, frozen, unprepared~^~MUSTARD GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11273~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, without salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11274~^~1100~^~Mustard spinach, (tendergreen), raw~^~MUSTARD SPINACH,(TENDERGREEN),RAW~^^^^~Trimmings~^7^~Brassica rapa (Perviridis Group)~^6.25^2.44^8.37^3.57 -~11275~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, without salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11276~^~1100~^~New Zealand spinach, raw~^~NEW ZEALAND SPINACH,RAW~^^^^~Large stems and roots~^28^~Tetragonia tetragonioides~^6.25^2.44^8.37^3.57 -~11277~^~1100~^~New Zealand spinach, cooked, boiled, drained, without salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11278~^~1100~^~Okra, raw~^~OKRA,RAW~^^^~Y~^~Crown and tips~^14^~Abelmoschus esculentus~^6.25^2.44^8.37^3.57 -~11279~^~1100~^~Okra, cooked, boiled, drained, without salt~^~OKRA,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11280~^~1100~^~Okra, frozen, unprepared~^~OKRA,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11281~^~1100~^~Okra, frozen, cooked, boiled, drained, without salt~^~OKRA,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11282~^~1100~^~Onions, raw~^~ONIONS,RAW~^^^~Y~^~Stem ends, sprouts and defects~^10^~Allium cepa~^6.25^2.78^8.37^3.84 -~11283~^~1100~^~Onions, cooked, boiled, drained, without salt~^~ONIONS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11284~^~1100~^~Onions, dehydrated flakes~^~ONIONS,DEHYDRATED FLAKES~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11285~^~1100~^~Onions, canned, solids and liquids~^~ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11286~^~1100~^~Onions, yellow, sauteed~^~ONIONS,YEL,SAUTEED~^^^^^0^^6.25^2.78^8.37^3.84 -~11287~^~1100~^~Onions, frozen, chopped, unprepared~^~ONIONS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11288~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, without salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11289~^~1100~^~Onions, frozen, whole, unprepared~^~ONIONS,FRZ,WHL,UNPREP~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11290~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, without salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11291~^~1100~^~Onions, spring or scallions (includes tops and bulb), raw~^~ONIONS,SPRING OR SCALLIONS (INCL TOPS&BULB),RAW~^^^~Y~^~Rootlets~^4^~Allium cepa or Allium fistulosum~^6.25^2.44^8.37^3.57 -~11292~^~1100~^~Onions, young green, tops only~^~ONIONS,YOUNG GRN,TOPS ONLY~^^^~Y~^^0^~Allium cepa~^6.25^2.44^8.37^3.57 -~11293~^~1100~^~Onions, welsh, raw~^~ONIONS,WELSH,RAW~^^^^~Leaf tops and roots~^35^~Allium fistulosum~^6.25^2.78^8.37^3.84 -~11294~^~1100~^~Onions, sweet, raw~^~ONIONS,SWT,RAW~^^^^~Stem, root, and two outermost layers~^16^~Allium cepa~^6.25^2.78^8.37^3.84 -~11295~^~1100~^~Onion rings, breaded, par fried, frozen, unprepared~^~ONION RINGS,BREADED,PAR FR,FRZ,UNPREP~^^^^^0^^6.07^3.70^8.80^4.00 -~11296~^~1100~^~Onion rings, breaded, par fried, frozen, prepared, heated in oven~^~ONION RINGS,BREADED,PAR FR,FRZ,PREP,HTD IN OVEN~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~11297~^~1100~^~Parsley, fresh~^~PARSLEY,FRSH~^^^~Y~^~Tough stems~^5^~Petroselinum crispum~^6.25^2.44^8.37^3.57 -~11298~^~1100~^~Parsnips, raw~^~PARSNIPS,RAW~^^^^~Parings~^15^~Pastinaca sativa~^6.25^2.78^8.37^3.84 -~11299~^~1100~^~Parsnips, cooked, boiled, drained, without salt~^~PARSNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11300~^~1100~^~Peas, edible-podded, raw~^~PEAS,EDIBLE-PODDED,RAW~^~Snowpeas, Sugar snap peas~^^~Y~^~Ends and strings~^6^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11301~^~1100~^~Peas, edible-podded, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,BLD,DRND,WO/ SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11302~^~1100~^~Peas, edible-podded, frozen, unprepared~^~PEAS,EDIBLE-PODDED,FRZ,UNPREP~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11303~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,WO/SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11304~^~1100~^~Peas, green, raw~^~PEAS,GREEN,RAW~^^^~Y~^~Pods and inedible peas~^62^~Pisum sativum~^6.25^3.47^8.37^4.07 -~11305~^~1100~^~Peas, green, cooked, boiled, drained, without salt~^~PEAS,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11306~^~1100~^~Peas, green, canned, regular pack, solids and liquids~^~PEAS,GRN,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11308~^~1100~^~Peas, green (includes baby and lesuer types), canned, drained solids, unprepared~^~PEAS,GRN (INCLUDES BABY & LESUER TYPES),CND,DRND SOL,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11310~^~1100~^~Peas, green, canned, seasoned, solids and liquids~^~PEAS,GRN,CND,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11311~^~1100~^~Peas, green, canned, drained solids, rinsed in tap water~^~PEAS,GRN,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~11312~^~1100~^~Peas, green, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~PEAS,GRN,FRZ,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11313~^~1100~^~Peas, green, frozen, cooked, boiled, drained, without salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11316~^~1100~^~Peas, mature seeds, sprouted, raw~^~PEAS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11317~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, without salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11318~^~1100~^~Peas and carrots, canned, regular pack, solids and liquids~^~PEAS&CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.98^8.37^3.16 -~11322~^~1100~^~Peas and carrots, frozen, unprepared~^~PEAS&CARROTS,FRZ,UNPREP~^^^^^0^^6.25^3.98^8.37^3.16 -~11323~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, without salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11324~^~1100~^~Peas and onions, canned, solids and liquids~^~PEAS&ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.40^8.37^4.00 -~11326~^~1100~^~Peas and onions, frozen, unprepared~^~PEAS&ONIONS,FRZ,UNPREP~^^^^^0^^6.25^3.40^8.37^4.00 -~11327~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, without salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.40^8.37^4.00 -~11329~^~1100~^~Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,GRN,CND,PODS,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11333~^~1100~^~Peppers, sweet, green, raw~^~PEPPERS,SWT,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11334~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, without salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11335~^~1100~^~Peppers, sweet, green, canned, solids and liquids~^~PEPPERS,SWT,GRN,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11337~^~1100~^~Peppers, sweet, green, frozen, chopped, unprepared~^~PEPPERS,SWT,GRN,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11338~^~1100~^~Peppers, sweet, green, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11339~^~1100~^~Peppers, sweet, green, sauteed~^~PEPPERS,SWT,GRN,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11344~^~1100~^~Pigeonpeas, immature seeds, raw~^~PIGEONPEAS,IMMAT SEEDS,RAW~^^^~Y~^~Pods~^52^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~11345~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, without salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11349~^~1100~^~Poi~^~POI~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11350~^~1100~^~Pokeberry shoots, (poke), raw~^~POKEBERRY SHOOTS,(POKE),RAW~^^^^^^~Phytolacca americana~^6.25^2.44^8.37^3.57 -~11351~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, without salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11352~^~1100~^~Potatoes, flesh and skin, raw~^~POTATOES,FLESH & SKN,RAW~^^^~Y~^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11353~^~1100~^~Potatoes, russet, flesh and skin, raw (Includes foods for USDA's Food Distribution Program)~^~POTATOES,RUSSET,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11354~^~1100~^~Potatoes, white, flesh and skin, raw~^~POTATOES,WHITE,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11355~^~1100~^~Potatoes, red, flesh and skin, raw~^~POTATOES,RED,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11356~^~1100~^~Potatoes, Russet, flesh and skin, baked~^~POTATOES,RUSSET,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11357~^~1100~^~Potatoes, white, flesh and skin, baked~^~POTATOES,WHITE,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11358~^~1100~^~Potatoes, red, flesh and skin, baked~^~POTATOES,RED,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03 -~11359~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, as purchased~^~POTATOES,FR FR,CRNKL OR REG,SALT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11360~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, oven-heated~^~POTATOES,FR FR,CRNKL/REG CUT,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.78^8.37^4.03 -~11361~^~1100~^~Potatoes, roasted, salt added in processing, frozen, unprepared~^~POTATOES,RSTD,SALT ADDED IN PROCESSING,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11362~^~1100~^~Potatoes, raw, skin~^~POTATOES,RAW,SKIN~^^^^^0^~Solanum tuberosum~^6.25^2.78^8.37^4.03 -~11363~^~1100~^~Potatoes, baked, flesh, without salt~^~POTATOES,BKD,FLESH,WO/SALT~^^^~Y~^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11364~^~1100~^~Potatoes, baked, skin, without salt~^~POTATOES,BKD,SKN,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11365~^~1100~^~Potatoes, boiled, cooked in skin, flesh, without salt~^~POTATOES,BLD,CKD IN SKN,FLESH,WO/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11366~^~1100~^~Potatoes, boiled, cooked in skin, skin, without salt~^~POTATOES,BLD,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11367~^~1100~^~Potatoes, boiled, cooked without skin, flesh, without salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11368~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,WO/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11369~^~1100~^~Potatoes, microwaved, cooked in skin, skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11370~^~1100~^~Potatoes, hash brown, home-prepared~^~POTATOES,HASH BROWN,HOME-PREPARED~^~Potatoes, hashed brown~^^~Y~^^0^^^^^ -~11371~^~1100~^~Potatoes, mashed, home-prepared, whole milk and margarine added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & MARGARINE ADDED~^^^~Y~^^0^^^^^ -~11372~^~1100~^~Potatoes, scalloped, home-prepared with butter~^~POTATOES,SCALLPD,HOME-PREPARED W/BUTTER~^^^^^0^^^^^ -~11373~^~1100~^~Potatoes, au gratin, home-prepared from recipe using butter~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING BUTTER~^^^^^0^^^^^ -~11374~^~1100~^~Potatoes, canned, solids and liquids~^~POTATOES,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^4.03 -~11376~^~1100~^~Potatoes, canned, drained solids~^~POTATOES,CND,DRND SOL~^^^^^0^^6.25^2.78^8.37^4.03 -~11378~^~1100~^~Potatoes, mashed, dehydrated, flakes without milk, dry form~^~POTATOES,MSHD,DEHYD,FLAKES WO/MILK,DRY FORM~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11379~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FROM FLAKES WO/ MILK,WHL MILK & BUT~^^^~Y~^^0^^^^^ -~11380~^~1100~^~Potatoes, mashed, dehydrated, granules without milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES WO/MILK,DRY FORM~^^^^^0^^6.25^2.78^8.37^4.03 -~11381~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FR GRNLS WO/MILK,WHL MILK&BUTTER~^^^^^0^^6.29^3.21^8.82^4.02 -~11382~^~1100~^~Potatoes, mashed, dehydrated, granules with milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES W/MILK,DRY FORM~^^^~Y~^^0^^6.29^3.21^8.82^4.02 -~11383~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules with milk, water and margarine added~^~POTATOES,MSHD,DEHYD,PREP FROM GRAN W/ MILK,H2O & MARG ADDED~^^^^^0^^^^^ -~11384~^~1100~^~Potatoes, au gratin, dry mix, unprepared~^~POTATOES,AU GRATIN,DRY MIX,UNPREP~^^^^^0^^0.00^^^ -~11385~^~1100~^~Potatoes, au gratin, dry mix, prepared with water, whole milk and butter~^~POTATOES,AU GRATIN,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^0.00^^^ -~11386~^~1100~^~Potatoes, scalloped, dry mix, unprepared~^~POTATOES,SCALLPD,DRY MIX,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11387~^~1100~^~Potatoes, scalloped, dry mix, prepared with water, whole milk and butter~^~POTATOES,SCALLPD,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^6.25^2.78^8.37^4.03 -~11390~^~1100~^~Potatoes, hash brown, frozen, plain, unprepared~^~POTATOES,HASH BROWN,FRZ,PLN,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11391~^~1100~^~Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil~^~POTATOES,HASH BROWN,FRZ,PLN,PREP,PAN FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11392~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, unprepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11393~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, prepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,PREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03 -~11394~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,SHOESTRING,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11395~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,SHOESTRNG,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11396~^~1100~^~Potatoes, o'brien, frozen, unprepared~^~POTATOES,O'BRIEN,FRZ,UNPREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11397~^~1100~^~Potatoes, o'brien, frozen, prepared~^~POTATOES,O'BRIEN,FRZ,PREP~^^^^^0^^6.25^2.70^8.40^4.00 -~11398~^~1100~^~Potato puffs, frozen, unprepared~^~POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03 -~11399~^~1100~^~Potato puffs, frozen, oven-heated~^~POTATO PUFFS,FRZ,OVEN-HEATED~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11401~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, without salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11402~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11403~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, home-prepared, oven heated~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,OVEN HTD~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~11406~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, as purchased~^~POTATOES,FRNCH FR,CTTG-CUT,SALT NOT ADDED,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11407~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,COTTAGE-CUT,SALT NOT ADDED,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11408~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, unprepared~^~POTATOES,FRZ,FRENCH FR,PAR FR,EXTRUDED,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~11409~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, prepared, heated in oven, without salt~^~POTATOES,FRZ,FRCH FR,PAR FR,EXTRUDED,PREP,HTD OVEN,WO/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11410~^~1100~^~Potato wedges, frozen (Includes foods for USDA's Food Distribution Program)~^~POTATO WEDGES,FRZ (INCL FOODS FOR USDA'S FD DISTR PGM)~^^^^^0^^6.25^2.80^8.80^4.00 -~11411~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11412~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11413~^~1100~^~Potato flour~^~POTATO FLOUR~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11414~^~1100~^~Potato salad, home-prepared~^~POTATO SALAD,HOME-PREPARED~^^^^^0^^^^^ -~11416~^~1100~^~Pumpkin flowers, raw~^~PUMPKIN FLOWERS,RAW~^^^^~Pistil and calyx~^65^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11417~^~1100~^~Pumpkin flowers, cooked, boiled, drained, without salt~^~PUMPKIN FLOWERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11418~^~1100~^~Pumpkin leaves, raw~^~PUMPKIN LEAVES,RAW~^^^^~Stem and tough leaves~^59^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11419~^~1100~^~Pumpkin leaves, cooked, boiled, drained, without salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11422~^~1100~^~Pumpkin, raw~^~PUMPKIN,RAW~^^^~Y~^~Seeds, rind and stem~^30^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11423~^~1100~^~Pumpkin, cooked, boiled, drained, without salt~^~PUMPKIN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11424~^~1100~^~Pumpkin, canned, without salt~^~PUMPKIN,CND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11426~^~1100~^~Pumpkin pie mix, canned~^~PUMPKIN PIE MIX,CANNED~^^^^^0^^6.25^2.90^8.40^3.80 -~11427~^~1100~^~Purslane, raw~^~PURSLANE,RAW~^^^^~Tough stems and leaves~^24^~Portulaca oleracea~^6.25^2.44^8.37^3.57 -~11428~^~1100~^~Purslane, cooked, boiled, drained, without salt~^~PURSLANE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11429~^~1100~^~Radishes, raw~^~RADISHES,RAW~^^^~Y~^~Stem ends, rootlets and trimmings~^10^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11430~^~1100~^~Radishes, oriental, raw~^~RADISHES,ORIENTAL,RAW~^^^~Y~^~Tops and parings~^21^~Raphanus sativus (Longipinratus Group)~^6.25^2.78^8.37^3.84 -~11431~^~1100~^~Radishes, oriental, cooked, boiled, drained, without salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11432~^~1100~^~Radishes, oriental, dried~^~RADISHES,ORIENTAL,DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11435~^~1100~^~Rutabagas, raw~^~RUTABAGAS,RAW~^^^~Y~^~Parings~^15^~Brassica napus var. napobrassica~^6.25^2.78^8.37^3.84 -~11436~^~1100~^~Rutabagas, cooked, boiled, drained, without salt~^~RUTABAGAS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11437~^~1100~^~Salsify, (vegetable oyster), raw~^~SALSIFY,(VEG OYSTER),RAW~^^^^~Scrapings and rootlets~^13^~Tragopogon porrifolius~^6.25^2.78^8.37^3.84 -~11438~^~1100~^~Salsify, cooked, boiled, drained, without salt~^~SALSIFY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11439~^~1100~^~Sauerkraut, canned, solids and liquids~^~SAUERKRAUT,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11442~^~1100~^~Seaweed, agar, raw~^~SEAWEED,AGAR,RAW~^^^~Y~^^0^~Eucheuma spp.~^6.25^2.44^8.37^3.57 -~11444~^~1100~^~Seaweed, irishmoss, raw~^~SEAWEED,IRISHMOSS,RAW~^^^~Y~^^0^~Chondrus crispus~^6.25^2.44^8.37^3.57 -~11445~^~1100~^~Seaweed, kelp, raw~^~SEAWEED,KELP,RAW~^^^~Y~^^0^~Laminaria spp.~^6.25^2.44^8.37^3.57 -~11446~^~1100~^~Seaweed, laver, raw~^~SEAWEED,LAVER,RAW~^^^~Y~^^0^~Porphyra laciniata~^6.25^2.44^8.37^3.57 -~11447~^~1100~^~Sesbania flower, raw~^~SESBANIA FLOWER,RAW~^^^^~Stems, pistil and calyx~^15^~Sesbania spp.~^6.25^2.44^8.37^3.57 -~11448~^~1100~^~Sesbania flower, cooked, steamed, without salt~^~SESBANIA FLOWER,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11450~^~1100~^~Soybeans, green, raw~^~SOYBEANS,GREEN,RAW~^^^^~Pods~^47^~Glycine max~^6.25^3.47^8.37^4.07 -~11451~^~1100~^~Soybeans, green, cooked, boiled, drained, without salt~^~SOYBEANS,GRN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11452~^~1100~^~Soybeans, mature seeds, sprouted, raw~^~SOYBEANS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Glycine max~^6.25^2.44^8.37^3.57 -~11453~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11454~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11457~^~1100~^~Spinach, raw~^~SPINACH,RAW~^^^~Y~^~Large stems and roots~^28^~Spinacia oleracea~^6.25^2.44^8.37^3.57 -~11458~^~1100~^~Spinach, cooked, boiled, drained, without salt~^~SPINACH,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11459~^~1100~^~Spinach, canned, regular pack, solids and liquids~^~SPINACH,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11461~^~1100~^~Spinach, canned, regular pack, drained solids~^~SPINACH,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11463~^~1100~^~Spinach, frozen, chopped or leaf, unprepared (Includes foods for USDA's Food Distribution Program)~^~SPINACH,FRZ,CHOPD OR LEAF,UNPREP~^^^~Y~^^0^^^2.44^8.37^3.57 -~11464~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11467~^~1100~^~Squash, summer, crookneck and straightneck, raw~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,RAW~^^^^~Ends~^1^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11468~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK & STRAIGHTNECK,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11471~^~1100~^~Squash, summer, crookneck and straightneck, canned, drained, solid, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CND,DRND,SOLID,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11473~^~1100~^~Squash, summer, crookneck and straightneck, frozen, unprepared~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11474~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11475~^~1100~^~Squash, summer, scallop, raw~^~SQUASH,SUMMER,SCALLOP,RAW~^^^^~Stem ends~^2^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11476~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, without salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11477~^~1100~^~Squash, summer, zucchini, includes skin, raw~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,RAW~^^^~Y~^~Ends~^5^^6.25^2.44^8.37^3.57 -~11478~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11479~^~1100~^~Squash, summer, zucchini, includes skin, frozen, unprepared~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11480~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11481~^~1100~^~Squash, summer, zucchini, italian style, canned~^~SQUASH,SMMR,ZUCCHINI,ITALIAN STYLE,CND~^^^^^0^^6.25^2.50^8.40^3.70 -~11482~^~1100~^~Squash, winter, acorn, raw~^~SQUASH,WINTER,ACORN,RAW~^^^^~Rind~^24^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11483~^~1100~^~Squash, winter, acorn, cooked, baked, without salt~^~SQUASH,WNTR,ACORN,CKD,BKD,WO/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11484~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11485~^~1100~^~Squash, winter, butternut, raw~^~SQUASH,WNTR,BUTTERNUT,RAW~^^^^~Seeds, rind and trimmings~^16^~Cucurbita moschata~^6.25^2.44^8.37^3.57 -~11486~^~1100~^~Squash, winter, butternut, cooked, baked, without salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11487~^~1100~^~Squash, winter, butternut, frozen, unprepared~^~SQUASH,WNTR,BUTTERNUT,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11488~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, without salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11489~^~1100~^~Squash, winter, hubbard, raw~^~SQUASH,WINTER,HUBBARD,RAW~^^^^~Seeds, rind, trimmings and cutting loss~^36^~Cucurbita maxima~^6.25^2.44^8.37^3.57 -~11490~^~1100~^~Squash, winter, hubbard, baked, without salt~^~SQUASH,WNTR,HUBBARD,BKD,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11491~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11492~^~1100~^~Squash, winter, spaghetti, raw~^~SQUASH,WNTR,SPAGHETTI,RAW~^^^^~Rind and seeds~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11493~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11495~^~1100~^~Succotash, (corn and limas), raw~^~SUCCOTASH,(CORN&LIMAS),RAW~^^^^^0^^6.25^2.72^8.37^3.71 -~11496~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11497~^~1100~^~Succotash, (corn and limas), canned, with cream style corn~^~SUCCOTASH,(CORN&LIMAS),CND,W/CRM STYLE CORN~^^^^^0^^6.25^2.72^8.37^3.71 -~11499~^~1100~^~Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids~^~SUCCOTASH,(CORN&LIMAS),CND,W/WHL KERNEL CORN,SOL&LIQUIDS~^^^^^0^^6.25^2.72^8.37^3.71 -~11501~^~1100~^~Succotash, (corn and limas), frozen, unprepared~^~SUCCOTASH,(CORN&LIMAS),FRZ,UNPREP~^^^^^0^^6.25^2.72^8.37^3.71 -~11502~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.72^8.37^3.71 -~11503~^~1100~^~Water convolvulus,raw~^~WATER CONVOLVULUS,RAW~^~kangkong, water spinach~^^^~Tough stems~^23^~Ipomoea aquatica~^6.25^2.44^8.37^3.57 -~11504~^~1100~^~Water convolvulus, cooked, boiled, drained, without salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,WO/ SALT~^~Kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11505~^~1100~^~Sweet potato leaves, raw~^~SWEET POTATO LEAVES,RAW~^~Sweetpotato leaves~^^^~Tough stems and bruised leaves~^6^~Ipomoea batatas~^6.25^2.44^8.37^3.57 -~11506~^~1100~^~Sweet potato leaves, cooked, steamed, without salt~^~SWEET POTATO LEAVES,CKD,STMD,WO/ SALT~^~Sweetpotato leaves~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11507~^~1100~^~Sweet potato, raw, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,RAW,UNPREP~^~Sweetpotato~^^~Y~^~Parings and trimmings~^28^~Ipomoea batatas~^6.25^2.78^8.37^4.03 -~11508~^~1100~^~Sweet potato, cooked, baked in skin, flesh, without salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,WO/ SALT~^~Sweetpotato~^^~Y~^~Skin~^22^^6.25^2.78^8.37^4.03 -~11510~^~1100~^~Sweet potato, cooked, boiled, without skin~^~SWEET POTATO,CKD,BLD,WO/ SKN~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11512~^~1100~^~Sweet potato, canned, vacuum pack~^~SWEETPOTATO,CND,VACUUM PK~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11514~^~1100~^~Sweet potato, canned, mashed~^~SWEET POTATO,CND,MSHD~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11516~^~1100~^~Sweet potato, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,FRZ,UNPREP~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11517~^~1100~^~Sweet potato, frozen, cooked, baked, without salt~^~SWEET POTATO,FRZ,CKD,BKD,WO/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11518~^~1100~^~Taro, raw~^~TARO,RAW~^^^~Y~^~Ends and skin~^14^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11519~^~1100~^~Taro, cooked, without salt~^~TARO,COOKED,WITHOUT SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11520~^~1100~^~Taro leaves, raw~^~TARO LEAVES,RAW~^^^~Y~^~Stem, midrib and tough leaves~^40^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11521~^~1100~^~Taro leaves, cooked, steamed, without salt~^~TARO LEAVES,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11522~^~1100~^~Taro shoots, raw~^~TARO SHOOTS,RAW~^^^^~Ends~^12^~Colocasia esculenta~^6.25^2.44^8.37^3.57 -~11523~^~1100~^~Taro shoots, cooked, without salt~^~TARO SHOOTS,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11525~^~1100~^~Taro, tahitian, raw~^~TARO,TAHITIAN,RAW~^^^^^^~Colocasia esculenta~^6.25^2.78^8.37^4.03 -~11526~^~1100~^~Taro, tahitian, cooked, without salt~^~TARO,TAHITIAN,CKD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11527~^~1100~^~Tomatoes, green, raw~^~TOMATOES,GREEN,RAW~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11529~^~1100~^~Tomatoes, red, ripe, raw, year round average~^~TOMATOES,RED,RIPE,RAW,YEAR RND AVERAGE~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11530~^~1100~^~Tomatoes, red, ripe, cooked~^~TOMATOES,RED,RIPE,CKD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11531~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11533~^~1100~^~Tomatoes, red, ripe, canned, stewed~^~TOMATOES,RED,RIPE,CND,STWD~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11537~^~1100~^~Tomatoes, red, ripe, canned, with green chilies~^~TOMATOES,RED,RIPE,CND,W/GRN CHILIES~^^^^^0^^6.25^2.44^8.37^3.57 -~11540~^~1100~^~Tomato juice, canned, with salt added~^~TOMATO JUC,CND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11546~^~1100~^~Tomato products, canned, paste, without salt added (Includes foods for USDA's Food Distribution Program)~^~TOMATO PRODUCTS,CND,PASTE,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11547~^~1100~^~Tomato products, canned, puree, without salt added~^~TOMATO PRODUCTS,CND,PUREE,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11548~^~1100~^~Tomato powder~^~TOMATO POWDER~^^^^^0^^6.25^2.44^8.37^3.57 -~11549~^~1100~^~Tomato products, canned, sauce~^~TOMATO PRODUCTS,CND,SAU~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11551~^~1100~^~Tomato products, canned, sauce, with mushrooms~^~TOMATO PRODUCTS,CND,SAU,W/MUSHROOMS~^^^^^0^^6.25^2.44^8.37^3.57 -~11553~^~1100~^~Tomato products, canned, sauce, with onions~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS~^^^^^0^^6.25^2.60^8.40^3.70 -~11555~^~1100~^~Tomato products, canned, sauce, with herbs and cheese~^~TOMATO PRODUCTS,CND,SAU,W/HERBS&CHS~^^^^^0^^6.28^3.00^8.80^3.50 -~11557~^~1100~^~Tomato products, canned, sauce, with onions, green peppers, and celery~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS,GRN PEPPERS,&CELERY~^^^~Y~^^0^^6.25^2.40^8.40^3.70 -~11559~^~1100~^~Tomato products, canned, sauce, with tomato tidbits~^~TOMATO PRODUCTS,CND,SAU,W/TOMATO TIDBITS~^^^^^0^^6.25^2.44^8.37^3.57 -~11563~^~1100~^~Tree fern, cooked, without salt~^~TREE FERN,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11564~^~1100~^~Turnips, raw~^~TURNIPS,RAW~^^^~Y~^~Parings~^19^~Brassica rapa (Rapifera Group)~^6.25^2.78^8.37^3.84 -~11565~^~1100~^~Turnips, cooked, boiled, drained, without salt~^~TURNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11566~^~1100~^~Turnips, frozen, unprepared~^~TURNIPS,FROZEN,UNPREPARED~^^^^^0^^6.25^2.78^8.37^3.84 -~11567~^~1100~^~Turnips, frozen, cooked, boiled, drained, without salt~^~TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11568~^~1100~^~Turnip greens, raw~^~TURNIP GREENS,RAW~^^^^~Root crown, tough stems and discarded leaves~^30^~Brassica rapa (Rapifera Group)~^6.25^2.44^8.37^3.57 -~11569~^~1100~^~Turnip greens, cooked, boiled, drained, without salt~^~TURNIP GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11570~^~1100~^~Turnip greens, canned, solids and liquids~^~TURNIP GRNS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11574~^~1100~^~Turnip greens, frozen, unprepared~^~TURNIP GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11575~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11576~^~1100~^~Turnip greens and turnips, frozen, unprepared~^~TURNIP GRNS&TURNIPS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84 -~11577~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11578~^~1100~^~Vegetable juice cocktail, canned~^~VEGETABLE JUC COCKTAIL,CND~^^^~Y~^^0^^6.25^^^ -~11579~^~1100~^~Vegetables, mixed, canned, solids and liquids~^~VEGETABLES,MXD,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~11581~^~1100~^~Vegetables, mixed, canned, drained solids~^~VEGETABLES,MXD,CND,DRND SOL~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11583~^~1100~^~Vegetables, mixed, frozen, unprepared~^~VEGETABLES,MXD,FRZ,UNPREP~^^^^^0^^6.25^^^ -~11584~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, without salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^ -~11585~^~1100~^~Vegetable juice cocktail, low sodium, canned~^~VEGETABLE JUC COCKTAIL,LO NA,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11587~^~1100~^~Vinespinach, (basella), raw~^~VINESPINACH,(BASELLA),RAW~^^^^^0^~Basella alba~^6.25^2.44^8.37^3.57 -~11588~^~1100~^~Waterchestnuts, chinese, (matai), raw~^~WATERCHESTNUTS,CHINESE,(MATAI),RAW~^^^~Y~^~Skin~^23^~Eleocharis dulcis~^6.25^2.78^8.37^3.84 -~11590~^~1100~^~Waterchestnuts, chinese, canned, solids and liquids~^~WATERCHESTNUTS,CHINESE,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11591~^~1100~^~Watercress, raw~^~WATERCRESS,RAW~^^^~Y~^~Tough stems and ends~^8^~Nasturtium officinale~^6.25^2.44^8.37^3.57 -~11593~^~1100~^~Waxgourd, (chinese preserving melon), raw~^~WAXGOURD,(CHINESE PRESERVING MELON),RAW~^^^^~Stem, center and skin~^29^~Benincasa hispida~^6.25^2.44^8.37^3.57 -~11594~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11595~^~1100~^~Winged beans, immature seeds, raw~^~WINGED BNS,IMMAT SEEDS,RAW~^^^^~Ends~^2^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~11596~^~1100~^~Winged beans, immature seeds, cooked, boiled, drained, without salt~^~WINGED BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11597~^~1100~^~Winged bean leaves, raw~^~WINGED BEAN LEAVES,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.44^8.37^3.57 -~11599~^~1100~^~Winged bean tuber, raw~^~WINGED BEAN TUBER,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.78^8.37^3.84 -~11601~^~1100~^~Yam, raw~^~YAM,RAW~^^^~Y~^~Skin~^14^~Dioscorea spp.~^6.25^2.78^8.37^4.03 -~11602~^~1100~^~Yam, cooked, boiled, drained, or baked, without salt~^~YAM,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11603~^~1100~^~Yambean (jicama), raw~^~YAMBEAN (JICAMA),RAW~^^^~Y~^~Ends and skin~^8^~Pachyrhizus spp.~^6.25^2.78^8.37^4.03 -~11604~^~1100~^~Yambean (jicama), cooked, boiled, drained, without salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11605~^~1100~^~Beets, harvard, canned, solids and liquids~^~BEETS,HARVARD,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84 -~11609~^~1100~^~Beets, pickled, canned, solids and liquids~^~BEETS,PICKLED,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11613~^~1100~^~Borage, raw~^~BORAGE,RAW~^^^^~Tough leaves and stems~^20^~Borago officinalis~^6.25^2.44^8.37^3.57 -~11614~^~1100~^~Borage, cooked, boiled, drained, without salt~^~BORAGE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11615~^~1100~^~Chives, freeze-dried~^~CHIVES,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11616~^~1100~^~Dock, raw~^~DOCK,RAW~^^^^~Stalks~^30^~Rumex spp.~^6.25^2.44^8.37^3.57 -~11617~^~1100~^~Dock, cooked, boiled, drained, without salt~^~DOCK,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11618~^~1100~^~Eppaw, raw~^~EPPAW,RAW~^^^^^^~Perideridia oregana~^6.25^2.78^8.37^3.84 -~11620~^~1100~^~Drumstick pods, raw~^~DRUMSTICK PODS,RAW~^~Horseradish tree pods~^^^~Hard outer covering and fibers~^48^~Moringa oleifera~^6.25^2.44^8.37^3.57 -~11621~^~1100~^~Drumstick pods, cooked, boiled, drained, without salt~^~DRUMSTICK PODS,CKD,BLD,DRND,WO/ SALT~^~Horseradish tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11624~^~1100~^~Leeks, (bulb and lower-leaf portion), freeze-dried~^~LEEKS,(BULB&LOWER-LEAF PORTION),FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11625~^~1100~^~Parsley, freeze-dried~^~PARSLEY,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11626~^~1100~^~Beans, mung, mature seeds, sprouted, canned, drained solids~^~BEANS,MUNG,MATURE SEEDS,SPROUTED,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11632~^~1100~^~Peppers, jalapeno, canned, solids and liquids~^~PEPPERS,JALAPENO,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11637~^~1100~^~Radishes, white icicle, raw~^~RADISHES,WHITE ICICLE,RAW~^^^^~Parings~^35^~Raphanus sativus~^6.25^2.78^8.37^3.84 -~11640~^~1100~^~Shallots, freeze-dried~^~SHALLOTS,FREEZE-DRIED~^^^^^0^^6.25^2.78^8.37^3.84 -~11641~^~1100~^~Squash, summer, all varieties, raw~^~SQUASH,SMMR,ALL VAR,RAW~^^^~Y~^~Ends~^5^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11642~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11643~^~1100~^~Squash, winter, all varieties, raw~^~SQUASH,WNTR,ALL VAR,RAW~^^^~Y~^~Seeds, rind and stem~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11644~^~1100~^~Squash, winter, all varieties, cooked, baked, without salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11645~^~1100~^~Sweet potato, canned, syrup pack, solids and liquids~^~SWEET POTATO,CND,SYRUP PK,SOL & LIQUIDS~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11647~^~1100~^~Sweet potato, canned, syrup pack, drained solids~^~SWEET POTATO,CND,SYRUP PK,DRND SOL~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11649~^~1100~^~Tomato products, canned, sauce, spanish style~^~TOMATO PRODUCTS,CND,SAU,SPANISH STYLE~^^^^^0^^6.25^2.64^8.37^3.70 -~11653~^~1100~^~Beans, pinto, mature seeds, sprouted, raw~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11654~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11655~^~1100~^~Carrot juice, canned~^~CARROT JUICE,CANNED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11656~^~1100~^~Corn pudding, home prepared~^~CORN PUDD,HOME PREP~^^^^^0^^^^^ -~11657~^~1100~^~Potatoes, mashed, home-prepared, whole milk added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK ADDED~^^^~Y~^^0^^^^^ -~11658~^~1100~^~Spinach souffle~^~SPINACH SOUFFLE~^^^^^0^^^^^ -~11659~^~1100~^~Sweet potato, cooked, candied, home-prepared~^~SWEET POTATO,CKD,CANDIED,HOME-PREPARED~^~Sweetpotato~^^~Y~^^0^^^^^ -~11660~^~1100~^~Tomatoes, red, ripe, cooked, stewed~^~TOMATOES,RED,RIPE,CKD,STWD~^^^^^0^^6.25^^^ -~11663~^~1100~^~Seaweed, agar, dried~^~SEAWEED,AGAR,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11666~^~1100~^~Seaweed, spirulina, raw~^~SEAWEED,SPIRULINA,RAW~^^^^^0^~Spirulina spp.~^6.25^2.44^8.37^3.57 -~11667~^~1100~^~Seaweed, spirulina, dried~^~SEAWEED,SPIRULINA,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11669~^~1100~^~Seaweed, wakame, raw~^~SEAWEED,WAKAME,RAW~^^^~Y~^^0^~Undaria spp.~^6.25^2.44^8.37^3.57 -~11670~^~1100~^~Peppers, hot chili, green, raw~^~PEPPERS,HOT CHILI,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^27^~Capsicum frutescens~^6.25^2.44^8.37^3.57 -~11671~^~1100~^~Potatoes, o'brien, home-prepared~^~POTATOES,O'BRIEN,HOME-PREPARED~^^^^^0^^6.25^2.70^8.40^4.00 -~11672~^~1100~^~Potato pancakes~^~POTATO PANCAKES~^^^^^0^^^^^ -~11674~^~1100~^~Potatoes, baked, flesh and skin, without salt~^~POTATOES,BKD,FLESH & SKN,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11675~^~1100~^~Potatoes, microwaved, cooked in skin, flesh and skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH&SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11676~^~1100~^~Radish seeds, sprouted, raw~^~RADISH SEEDS,SPROUTED,RAW~^^^^^0^~Raphanus sativus~^6.25^2.44^8.37^3.84 -~11677~^~1100~^~Shallots, raw~^~SHALLOTS,RAW~^^^^~Skins~^12^~Allium ascalonicum~^6.25^2.78^8.37^3.84 -~11683~^~1100~^~Carrot, dehydrated~^~CARROT,DEHYDRATED~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11693~^~1100~^~Tomatoes, crushed, canned~^~TOMATOES,CRUSHED,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11695~^~1100~^~Tomatoes, orange, raw~^~TOMATOES,ORANGE,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11696~^~1100~^~Tomatoes, yellow, raw~^~TOMATOES,YELLOW,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57 -~11697~^~1100~^~Arrowroot, raw~^~ARROWROOT,RAW~^^^^~Peel~^15^~Maranta arundinacea~^6.25^2.78^8.37^3.84 -~11698~^~1100~^~Chrysanthemum leaves, raw~^~CHRYSANTHEMUM LEAVES,RAW~^^^^^0^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57 -~11700~^~1100~^~Amaranth leaves, cooked, boiled, drained, with salt~^~AMARANTH LEAVES,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11701~^~1100~^~Arrowhead, cooked, boiled, drained, with salt~^~ARROWHEAD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11702~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,W/SALT~^^^^~Stems and inedible parts of bracts and flower~^60^^6.25^2.44^8.37^3.57 -~11703~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11705~^~1100~^~Asparagus, cooked, boiled, drained, with salt~^~ASPARAGUS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11707~^~1100~^~Asparagus, canned, no salt added, solids and liquids~^~ASPARAGUS,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11709~^~1100~^~Asparagus, frozen, cooked, boiled, drained, with salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11710~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11711~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11712~^~1100~^~Bamboo shoots, cooked, boiled, drained, with salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11713~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11714~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11715~^~1100~^~Lima beans, immature seeds, canned, no salt added, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11716~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11717~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11718~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11719~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11720~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, with salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11721~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11722~^~1100~^~Beans, snap, yellow, raw~^~BEANS,SNAP,YELLOW,RAW~^^^^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57 -~11723~^~1100~^~Beans, snap, green, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11724~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11725~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11726~^~1100~^~Beans, snap, green, canned, no salt added, solids and liquids~^~BEANS,SNAP,GRN,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11727~^~1100~^~Beans, snap, yellow, canned, regular pack, solids and liquids~^~BEANS,SNAP,YEL,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11728~^~1100~^~Beans, snap, yellow, canned, no salt added, solids and liquids~^~BEANS,SNAP,YEL,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11729~^~1100~^~Beans, snap, green, canned, no salt added, drained solids~^~BEANS,SNAP,GRN,CND,NO SALT,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11730~^~1100~^~Beans, snap, yellow, frozen, all styles, unprepared~^~BEANS,SNAP,YEL,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11731~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11732~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11733~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11734~^~1100~^~Beets, cooked, boiled. drained, with salt~^~BEETS,CKD,BOILED. DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11735~^~1100~^~Beets, canned, no salt added, solids and liquids~^~BEETS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11736~^~1100~^~Beet greens, cooked, boiled, drained, with salt~^~BEET GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11737~^~1100~^~Borage, cooked, boiled, drained, with salt~^~BORAGE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11738~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, with salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~11739~^~1100~^~Broccoli, leaves, raw~^~BROCCOLI,LEAVES,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11740~^~1100~^~Broccoli, flower clusters, raw~^~BROCCOLI,FLOWER CLUSTERS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11741~^~1100~^~Broccoli, stalks, raw~^~BROCCOLI,STALKS,RAW~^^^^^0^^6.25^2.44^8.37^3.57 -~11742~^~1100~^~Broccoli, cooked, boiled, drained, with salt~^~BROCCOLI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11743~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11744~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11745~^~1100~^~Brussels sprouts, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11746~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11747~^~1100~^~Burdock root, cooked, boiled, drained, with salt~^~BURDOCK ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11748~^~1100~^~Butterbur, cooked, boiled, drained, with salt~^~BUTTERBUR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11749~^~1100~^~Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw~^~CABBAGE,COMMON,FRESHLY HARVEST,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11750~^~1100~^~Cabbage, common (danish, domestic, and pointed types), stored, raw~^~CABBAGE,COMMON (DANISH,DOMESTIC,&POINTED TYPES),STORED,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57 -~11751~^~1100~^~Cabbage, common, cooked, boiled, drained, with salt~^~CABBAGE,COMMON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11752~^~1100~^~Cabbage, red, cooked, boiled, drained, with salt~^~CABBAGE,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11753~^~1100~^~Cabbage, savoy, cooked, boiled, drained, with salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11754~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,W/SALT~^~pak choi, bok choy~^^^^0^^6.25^2.44^8.37^3.57 -~11755~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11756~^~1100~^~Cardoon, cooked, boiled, drained, with salt~^~CARDOON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11757~^~1100~^~Carrots, cooked, boiled, drained, with salt~^~CARROTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11758~^~1100~^~Carrots, canned, no salt added, solids and liquids~^~CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11759~^~1100~^~Carrots, canned, no salt added, drained solids~^~CARROTS,CND,NO SALT ,DRND SOL~^^^^^0^^6.25^2.78^8.37^3.84 -~11760~^~1100~^~Carrots, frozen, cooked, boiled, drained, with salt~^~CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11761~^~1100~^~Cauliflower, cooked, boiled, drained, with salt~^~CAULIFLOWER,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11762~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, with salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11763~^~1100~^~Celeriac, cooked, boiled, drained, with salt~^~CELERIAC,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11764~^~1100~^~Celery, cooked, boiled, drained, with salt~^~CELERY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11765~^~1100~^~Chard, swiss, cooked, boiled, drained, with salt~^~CHARD,SWISS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11766~^~1100~^~Chayote, fruit, cooked, boiled, drained, with salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,W/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11767~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, with salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11768~^~1100~^~Collards, cooked, boiled, drained, with salt~^~COLLARDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11769~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, with salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11770~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11771~^~1100~^~Corn, sweet, yellow, canned, no salt added, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11772~^~1100~^~Corn, sweet, yellow, canned, cream style, no salt added~^~CORN,SWT,YEL,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11773~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, no salt added~^~CORN,SWT,YEL,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11774~^~1100~^~Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS,CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11775~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11777~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11778~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11779~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, with salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11780~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, with salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11781~^~1100~^~Cress, garden, cooked, boiled, drained, with salt~^~CRESS,GARDEN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11782~^~1100~^~Dandelion greens, cooked, boiled, drained, with salt~^~DANDELION GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11783~^~1100~^~Eggplant, cooked, boiled, drained, with salt~^~EGGPLANT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11784~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, with salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11785~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11786~^~1100~^~Drumstick leaves, cooked, boiled, drained, with salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,W/ SALT~^~Horseradish tree~^^^^0^^6.25^2.44^8.37^3.57 -~11787~^~1100~^~Drumstick pods, cooked, boiled, drained, with salt~^~DRUMSTICK PODS,CKD,BLD,DRND,W/ SALT~^~Horseradish-tree pods~^^^^0^^6.25^2.44^8.37^3.57 -~11788~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11789~^~1100~^~Jute, potherb, cooked, boiled, drained, with salt~^~JUTE,POTHERB,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11790~^~1100~^~Kale, cooked, boiled, drained, with salt~^~KALE,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^^^ -~11791~^~1100~^~Kale, frozen, cooked, boiled, drained, with salt~^~KALE,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11793~^~1100~^~Kohlrabi, cooked, boiled, drained, with salt~^~KOHLRABI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11794~^~1100~^~Lambsquarters, cooked, boiled, drained, with salt~^~LAMBSQUARTERS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11795~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11796~^~1100~^~Lotus root, cooked, boiled, drained, with salt~^~LOTUS ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11797~^~1100~^~Mushrooms, white, cooked, boiled, drained, with salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,W/ SALT~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11798~^~1100~^~Mushrooms, shiitake, cooked, with salt~^~MUSHROOMS,SHIITAKE,CKD,W/SALT~^^^^^0^^6.25^2.62^8.37^3.48 -~11799~^~1100~^~Mustard greens, cooked, boiled, drained, with salt~^~MUSTARD GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11800~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, with salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11801~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, with salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11802~^~1100~^~New zealand spinach, cooked, boiled, drained, with salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11803~^~1100~^~Okra, cooked, boiled, drained, with salt~^~OKRA,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11804~^~1100~^~Okra, frozen, cooked, boiled, drained, with salt~^~OKRA,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11805~^~1100~^~Onions, cooked, boiled, drained, with salt~^~ONIONS,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~11806~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, with salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11807~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, with salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11808~^~1100~^~Parsnips, cooked, boiled, drained, with salt~^~PARSNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11809~^~1100~^~Peas, edible-podded, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11810~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07 -~11811~^~1100~^~Peas, green, cooked, boiled, drained, with salt~^~PEAS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11812~^~1100~^~Peas, green, canned, no salt added, solids and liquids~^~PEAS,GRN,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~11813~^~1100~^~Peas, green, canned, no salt added, drained solids~^~PEAS,GRN,CND,NO SALT,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~11814~^~1100~^~Peas, green, frozen, cooked, boiled, drained, with salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11815~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, with salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11816~^~1100~^~Peas and carrots, canned, no salt added, solids and liquids~^~PEAS&CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~11817~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, with salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.98^8.37^3.16 -~11818~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, with salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.40^8.37^4.00 -~11819~^~1100~^~Peppers, hot chili, red, raw~^~PEPPERS,HOT CHILI,RED,RAW~^^^~Y~^~Stem ends, seeds and core~^27^^6.25^2.44^8.37^3.57 -~11820~^~1100~^~Peppers, hot chili, red, canned, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,RED,CND,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11821~^~1100~^~Peppers, sweet, red, raw~^~PEPPERS,SWT,RED,RAW~^^^~Y~^~Stem ends, seed and core~^18^^6.25^2.44^8.37^3.57 -~11822~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11823~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, without salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11824~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, with salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11825~^~1100~^~Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11826~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, with salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11827~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, with salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11828~^~1100~^~Potatoes, baked, flesh and skin, with salt~^~POTATOES,BKD,FLESH & SKN,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11829~^~1100~^~Potatoes, baked, flesh, with salt~^~POTATOES,BKD,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11830~^~1100~^~Potatoes, baked, skin only, with salt~^~POTATOES,BKD,SKN ONLY,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11831~^~1100~^~Potatoes, boiled, cooked in skin, flesh, with salt~^~POTATOES,BLD,CKD IN SKN,FLESH,W/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03 -~11832~^~1100~^~Potatoes, boiled, cooked in skin, skin, with salt~^~POTATOES,BLD,CKD IN SKN,SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11833~^~1100~^~Potatoes, boiled, cooked without skin, flesh, with salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,W/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11834~^~1100~^~Potatoes, microwaved, cooked, in skin, flesh and skin, with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,FLESH&SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11835~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, with salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03 -~11836~^~1100~^~Potatoes, microwaved, cooked, in skin, skin with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,SKN W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11837~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, with salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11840~^~1100~^~Potatoes, frozen, french fried, par fried, cottage-cut, prepared, heated in oven, with salt~^~POTATOES,FRZ,FRCH FR,PAR FR,CTTGE-CUT,PREP,HTD OVEN,W/SALT~^^^^^0^^6.25^2.80^8.80^4.00 -~11841~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, oven-heated~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,OVN-HTD~^^^^^0^^6.25^2.80^8.80^4.00 -~11842~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, as purchased~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00 -~11843~^~1100~^~Potatoes, au gratin, home-prepared from recipe using margarine~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING MARGARINE~^^^^^0^^^^^ -~11844~^~1100~^~Potatoes, scalloped, home-prepared with margarine~^~POTATOES,SCALLPD,HOME-PREPARED W/MARGARINE~^^^^^0^^^^^ -~11845~^~1100~^~Pumpkin, cooked, boiled, drained, with salt~^~PUMPKIN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11846~^~1100~^~Pumpkin, canned, with salt~^~PUMPKIN,CANNED,WITH SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11847~^~1100~^~Pumpkin, flowers, cooked, boiled, drained, with salt~^~PUMPKIN,FLOWERS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11848~^~1100~^~Pumpkin leaves, cooked, boiled, drained, with salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11849~^~1100~^~Purslane, cooked, boiled, drained, with salt~^~PURSLANE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11850~^~1100~^~Radishes, oriental, cooked, boiled, drained, with salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11851~^~1100~^~Rutabagas, cooked, boiled, drained, with salt~^~RUTABAGAS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11852~^~1100~^~Salsify, cooked, boiled, drained, with salt~^~SALSIFY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11853~^~1100~^~Soybeans, green, cooked, boiled, drained, with salt~^~SOYBEANS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11854~^~1100~^~Spinach, cooked, boiled, drained, with salt~^~SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11855~^~1100~^~Spinach, canned, no salt added, solids and liquids~^~SPINACH,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11856~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11857~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11858~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11859~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11860~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, with salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11861~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11862~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11863~^~1100~^~Squash, winter, all varieties, cooked, baked, with salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11864~^~1100~^~Squash, winter, acorn, cooked, baked, with salt~^~SQUASH,WNTR,ACORN,CKD,BKD,W/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57 -~11865~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11866~^~1100~^~Squash, winter, butternut, cooked, baked, with salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11867~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, with salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11868~^~1100~^~Squash, winter, hubbard, baked, with salt~^~SQUASH,WNTR,HUBBARD,BKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11869~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11870~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11871~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11872~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71 -~11873~^~1100~^~Water convolvulus, cooked, boiled, drained, with salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,W/ SALT~^~kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57 -~11874~^~1100~^~Sweet potato leaves, cooked, steamed, with salt~^~SWEET POTATO LEAVES,CKD,STMD,W/ SALT~^~Sweetpotato leaves~^^^^0^^6.25^2.44^8.37^3.57 -~11875~^~1100~^~Sweet potato, cooked, baked in skin, flesh, with salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,W/ SALT~^~Sweetpotato~^^^~Skin~^22^^6.25^2.78^8.37^4.03 -~11876~^~1100~^~Sweet potato, cooked, boiled, without skin, with salt~^~SWEET POTATO,CKD,BLD,WO/ SKN,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11877~^~1100~^~Sweet potato, frozen, cooked, baked, with salt~^~SWEET POTATO,FRZ,CKD,BKD,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03 -~11878~^~1100~^~Taro, cooked, with salt~^~TARO,COOKED,WITH SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11879~^~1100~^~Taro, leaves, cooked, steamed, with salt~^~TARO,LEAVES,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11880~^~1100~^~Taro, shoots, cooked, with salt~^~TARO,SHOOTS,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11881~^~1100~^~Taro, tahitian, cooked, with salt~^~TARO,TAHITIAN,CKD,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11884~^~1100~^~Tomatoes, red, ripe, cooked, with salt~^~TOMATOES,RED,RIPE,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11885~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice, no salt added~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11886~^~1100~^~Tomato juice, canned, without salt added~^~TOMATO JUC,CND,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11888~^~1100~^~Tomato products, canned, puree, with salt added~^~TOMATO PRODUCTS,CND,PUREE,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11889~^~1100~^~Turnips, cooked, boiled, drained, with salt~^~TURNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11890~^~1100~^~Turnips, frozen, cooked, boiled, drained, with salt~^~TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11891~^~1100~^~Turnip greens, cooked, boiled, drained, with salt~^~TURNIP GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11892~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11893~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^^^ -~11894~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, with salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.97 -~11895~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11896~^~1100~^~Winged bean, immature seeds, cooked, boiled, drained, with salt~^~WINGED BEAN,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11897~^~1100~^~Yam, cooked, boiled, drained, or baked, with salt~^~YAM,CKD,BLD,DRND,OR BKD,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~11898~^~1100~^~Yambean (jicama), cooked, boiled, drained, with salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03 -~11899~^~1100~^~Yardlong bean, cooked, boiled, drained, with salt~^~YARDLONG BEAN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~11900~^~1100~^~Corn, sweet, white, raw~^~CORN,SWEET,WHITE,RAW~^^^^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57 -~11901~^~1100~^~Corn, sweet, white, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57 -~11902~^~1100~^~Corn, sweet, white, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11903~^~1100~^~Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11904~^~1100~^~Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11905~^~1100~^~Corn, sweet, white, canned, whole kernel, drained solids~^~CORN,SWT,WHITE,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11906~^~1100~^~Corn, sweet, white, canned, cream style, regular pack~^~CORN,SWT,WHITE,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11907~^~1100~^~Corn, sweet, white, canned, cream style, no salt added~^~CORN,SWT,WHITE,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11908~^~1100~^~Corn, sweet, white, canned, vacuum pack, regular pack~^~CORN,SWT,WHITE,CND,VACUUM PK,REG PK~^^^^^0^^6.25^2.44^8.37^3.57 -~11909~^~1100~^~Corn, sweet, white, canned, vacuum pack, no salt added~^~CORN,SWT,WHITE,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11910~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11911~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11912~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11913~^~1100~^~Corn, sweet, white, frozen, kernels on cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11914~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11915~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57 -~11916~^~1100~^~Peppers, sweet, red, canned, solids and liquids~^~PEPPERS,SWT,RED,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57 -~11917~^~1100~^~Peppers, sweet, red, frozen, chopped, unprepared~^~PEPPERS,SWT,RED,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11918~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11919~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, with salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11921~^~1100~^~Peppers, sweet, red, sauteed~^~PEPPERS,SWT,RED,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57 -~11922~^~1100~^~Sesbania flower, cooked, steamed, with salt~^~SESBANIA FLOWER,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11923~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11924~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11925~^~1100~^~Dock, cooked, boiled, drained, with salt~^~DOCK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11926~^~1100~^~Lentils, sprouted, cooked, stir-fried, with salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11927~^~1100~^~Mountain yam, hawaii, cooked, steamed, with salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,W/ SALT~^^^^^0^^6.25^2.78^8.37^3.84 -~11928~^~1100~^~Tree fern, cooked, with salt~^~TREE FERN,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11929~^~1100~^~Potatoes, mashed, prepared from granules, without milk, whole milk and margarine~^~POTATOES,MSHD,PREP FROM GRANULES,WO/MILK,WHL MILK&MARGARINE~^^^^^0^^6.25^2.78^8.37^4.03 -~11930~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and margarine added~^~POTATOES,MSHD,DEHYD,PREP FRM FLKS WO/ MILK,WHL MILK&MARG ADD~^^^^^0^^6.29^3.21^8.82^4.02 -~11931~^~1100~^~Peppers, sweet, red, freeze-dried~^~PEPPERS,SWT,RED,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11932~^~1100~^~Beans, snap, yellow, canned, regular pack, drained solids~^~BEANS,SNAP,YEL,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11933~^~1100~^~Beans, snap, yellow, canned, no salt added, drained solids~^~BEANS,SNAP,YEL,CND,NO SALT,DRND SOL~^^^^^0^^6.25^2.44^8.37^3.57 -~11934~^~1100~^~Potatoes, mashed, home-prepared, whole milk and butter added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & BUTTER ADDED~^^^^^0^^^^^ -~11935~^~1100~^~Catsup~^~Catsup~^~Ketchup~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11936~^~1100~^~Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,EXPOSED TO UV LT,RAW~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11937~^~1100~^~Pickles, cucumber, dill or kosher dill~^~PICKLES,CUCUMBER,DILL OR KOSHER DILL~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11938~^~1100~^~Mushroom, white, exposed to ultraviolet light, raw~^~MUSHROOM,WHITE,EXPOSED TO UV LT,RAW~^^^^^0^^6.25^2.62^8.37^3.48 -~11939~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, grilled~^~MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,GRILLED~^~portobella~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11940~^~1100~^~Pickles, cucumber, sweet (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^^^^ -~11941~^~1100~^~Pickles, cucumber, sour~^~PICKLES,CUCUMBER,SOUR~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11943~^~1100~^~Pimento, canned~^~PIMENTO,CANNED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11944~^~1100~^~Pickle relish, hot dog~^~PICKLE RELISH,HOT DOG~^^^^^0^^6.25^2.44^8.37^3.57 -~11945~^~1100~^~Pickle relish, sweet~^~PICKLE RELISH,SWEET~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11946~^~1100~^~Pickles, cucumber, sour, low sodium~^~PICKLES,CUCUMBER,SOUR,LO NA~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11947~^~1100~^~Pickles, cucumber, dill, reduced sodium~^~PICKLES,CUCUMBER,DILL,RED NA~^^^^^0^^6.25^2.44^8.37^3.57 -~11948~^~1100~^~Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT,LO NA (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^6.25^2.44^3.37^3.57 -~11949~^~1100~^~Catsup, low sodium~^~CATSUP,LOW SODIUM~^~Ketchup, low sodium~^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11950~^~1100~^~Mushrooms, enoki, raw~^~MUSHROOMS,ENOKI,RAW~^^^^~Stems and trimmings~^16^~Flammulina veluptipes~^6.25^2.62^8.37^3.48 -~11951~^~1100~^~Peppers, sweet, yellow, raw~^~PEPPERS,SWEET,YELLOW,RAW~^^^^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11952~^~1100~^~Radicchio, raw~^~RADICCHIO,RAW~^^^~Y~^~Core and leaf ends~^9^~Cichorium intybus~^6.25^2.44^8.37^3.84 -~11953~^~1100~^~Squash, zucchini, baby, raw~^~SQUASH,ZUCCHINI,BABY,RAW~^^^^~Ends~^13^~Cucurbita spp.~^6.25^2.44^8.37^3.57 -~11954~^~1100~^~Tomatillos, raw~^~TOMATILLOS,RAW~^^^~Y~^^^~Physalis philadelphica~^6.25^2.44^8.37^3.57 -~11955~^~1100~^~Tomatoes, sun-dried~^~TOMATOES,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11956~^~1100~^~Tomatoes, sun-dried, packed in oil, drained~^~TOMATOES,SUN-DRIED,PACKED IN OIL,DRND~^^^^^0^^6.25^2.44^8.37^3.57 -~11957~^~1100~^~Fennel, bulb, raw~^~FENNEL,BULB,RAW~^^^~Y~^~Stalk, leaves and core~^28^~Foeniculum vulgare~^6.25^2.44^8.37^3.57 -~11958~^~1100~^~Pickle relish, hamburger~^~PICKLE RELISH,HAMBURGER~^^^^^0^^6.25^2.44^3.37^3.57 -~11959~^~1100~^~Arugula, raw~^~ARUGULA,RAW~^^^~Y~^~Roots, stems and yellowed leaves~^40^~Eruca sativa~^6.25^2.44^8.37^3.57 -~11960~^~1100~^~Carrots, baby, raw~^~CARROTS,BABY,RAW~^^^^^0^~Daucus carota~^6.25^2.78^8.37^3.84 -~11961~^~1100~^~Hearts of palm, canned~^~HEARTS OF PALM,CANNED~^^^^^0^^6.25^2.44^8.37^3.57 -~11962~^~1100~^~Peppers, hot chile, sun-dried~^~PEPPERS,HOT CHILE,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11963~^~1100~^~Nopales, raw~^~NOPALES,RAW~^^^~Y~^~Spines and dark spots~^4^~Nopalea cochenillifera~^6.25^2.44^8.37^3.57 -~11964~^~1100~^~Nopales, cooked, without salt~^~NOPALES,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11965~^~1100~^~Cauliflower, green, raw~^~CAULIFLOWER,GREEN,RAW~^^^~Y~^~Leaf stalks, core and trimmings~^39^~Brassica oleracea (Botrytis group)~^6.25^2.44^8.37^3.57 -~11967~^~1100~^~Cauliflower, green, cooked, no salt added~^~CAULIFLOWER,GRN,CKD,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11968~^~1100~^~Cauliflower, green, cooked, with salt~^~CAULIFLOWER,GRN,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57 -~11969~^~1100~^~Broccoli, chinese, cooked~^~BROCCOLI,CHINESE,COOKED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~11970~^~1100~^~Cabbage, napa, cooked~^~CABBAGE,NAPA,COOKED~^^^^^0^~Brassica oleracea~^6.25^2.44^8.37^3.57 -~11972~^~1100~^~Lemon grass (citronella), raw~^~LEMON GRASS (CITRONELLA),RAW~^^^^~Tough stem~^35^~Cymbopogon citratus~^6.25^2.44^8.37^3.57 -~11973~^~1100~^~Beans, fava, in pod, raw~^~BEANS,FAVA,IN POD,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^2.44^8.37^3.57 -~11974~^~1100~^~Grape leaves, raw~^~GRAPE LEAVES,RAW~^^^~Y~^~Tough stems~^5^~Vitis vinifera~^6.25^2.44^8.37^3.57 -~11975~^~1100~^~Grape leaves, canned~^~GRAPE LEAVES,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11976~^~1100~^~Pepper, banana, raw~^~PEPPER,BANANA,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11977~^~1100~^~Peppers, serrano, raw~^~PEPPERS,SERRANO,RAW~^^^~Y~^~Stems~^3^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11978~^~1100~^~Peppers, ancho, dried~^~PEPPERS,ANCHO,DRIED~^^^^^0^^6.25^2.44^8.37^3.57 -~11979~^~1100~^~Peppers, jalapeno, raw~^~PEPPERS,JALAPENO,RAW~^^^~Y~^~Stems and seeds~^8^~Capsicum annuum~^6.25^2.44^8.37^3.57 -~11980~^~1100~^~Peppers, chili, green, canned~^~PEPPERS,CHILI,GRN,CND~^^^^^0^^6.25^2.44^8.37^3.57 -~11981~^~1100~^~Peppers, hungarian, raw~^~PEPPERS,HUNGARIAN,RAW~^^^^~Stems~^12^^6.25^2.44^8.37^3.57 -~11982~^~1100~^~Peppers, pasilla, dried~^~PEPPERS,PASILLA,DRIED~^^^^~Stems~^6^^6.25^2.44^8.37^3.57 -~11983~^~1100~^~Pickles, chowchow, with cauliflower onion mustard, sweet~^~PICKLES,CHOWCHOW,W/CAULIFLOWER ONION MUSTARD,SWT~^^^~Y~^^0^^^^^ -~11984~^~1100~^~Epazote, raw~^~EPAZOTE,RAW~^^^^^0^~Chenopodium ambrosiodes~^6.25^2.44^8.37^3.57 -~11985~^~1100~^~Fireweed, leaves, raw~^~FIREWEED,LEAVES,RAW~^^^^~Stems and flowers~^65^~Epilobium angustifolium~^6.25^2.44^8.37^3.57 -~11986~^~1100~^~Malabar spinach, cooked~^~MALABAR SPINACH,COOKED~^^^^~Stems~^30^^6.25^2.44^8.37^3.57 -~11987~^~1100~^~Mushrooms, oyster, raw~^~MUSHROOMS,OYSTER,RAW~^^^^~Stems~^11^~Pleurotus ostreatus~^6.25^2.62^8.37^3.48 -~11988~^~1100~^~Fungi, Cloud ears, dried~^~FUNGI,CLOUD EARS,DRIED~^^^^^0^^6.25^2.62^8.37^3.48 -~11989~^~1100~^~Mushrooms, straw, canned, drained solids~^~MUSHROOMS,STRAW,CND,DRND SOL~^^^^^0^~Volvariella volvace~^6.25^2.62^8.37^3.48 -~11990~^~1100~^~Wasabi, root, raw~^~WASABI,ROOT,RAW~^^^^~Peel~^23^~Wasabia japonica~^6.25^2.78^8.37^3.84 -~11991~^~1100~^~Yautia (tannier), raw~^~YAUTIA (TANNIER),RAW~^^^^~Peel~^14^~Xanthosoma sagittifolium~^6.25^2.78^8.37^3.84 -~11992~^~1100~^~Mushrooms, white, microwaved~^~MUSHROOMS,WHITE,MICROWAVED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48 -~11993~^~1100~^~Mushrooms, maitake, raw~^~MUSHROOMS,MAITAKE,RAW~^^^^^0^~Grifola frondosa~^6.25^2.62^8.37^3.48 -~11994~^~1100~^~Broccoli, chinese, raw~^~BROCCOLI,CHINESE,RAW~^~gai-lan, kai-lan~^^~Y~^~Base and damaged leaves~^12^~ Brassica oleracea var. alboglabra~^6.25^2.44^8.37^3.57 -~11995~^~1100~^~Fiddlehead ferns, raw~^~FIDDLEHEAD FERNS,RAW~^^^^^^~Matteuccia struthioreris~^6.25^2.44^8.37^3.57 -~11996~^~1100~^~Fiddlehead ferns, frozen, unprepared~^~FIDDLEHEAD FERNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57 -~11998~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, raw~^~MUSHROOMS,PORTABELLA,EXPOSED TO ULTRAVIOLET LT,RAW~^~portobella~^^^~Trimmings~^3^^6.25^2.62^8.37^3.48 -~12001~^~1200~^~Seeds, breadfruit seeds, raw~^~BREADFRUIT SEEDS,RAW~^^^^~Shells~^32^~Artocarpus altilis~^5.30^3.47^8.37^4.07 -~12003~^~1200~^~Seeds, breadfruit seeds, boiled~^~BREADFRUIT SEEDS,BOILED~^^^^~Soft shells~^64^^5.30^3.47^8.37^4.07 -~12004~^~1200~^~Seeds, breadnut tree seeds, raw~^~SEEDS,BREADNUT TREE SEEDS,RAW~^^^^^0^~Brosimum alicastrum~^5.30^3.47^8.37^4.07 -~12005~^~1200~^~Seeds, breadnut tree seeds, dried~^~SEEDS,BREADNUT TREE SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12006~^~1200~^~Seeds, chia seeds, dried~^~CHIA SEEDS,DRIED~^^^^^0^~Salvia hispanica~^5.30^3.47^8.37^4.07 -~12007~^~1200~^~Seeds, cottonseed flour, partially defatted (glandless)~^~COTTONSEED FLR,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12008~^~1200~^~Seeds, cottonseed flour, low fat (glandless)~^~COTTONSEED FLR,LOFAT (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12011~^~1200~^~Seeds, cottonseed meal, partially defatted (glandless)~^~COTTONSEED MEAL,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07 -~12012~^~1200~^~Seeds, hemp seed, hulled~^~SEEDS,HEMP SD,HULLED~^^^^^0^~Cannabis sativa L.~^5.30^3.47^8.37^4.07 -~12013~^~1200~^~Seeds, lotus seeds, dried~^~LOTUS SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12014~^~1200~^~Seeds, pumpkin and squash seed kernels, dried~^~PUMPKIN&SQUASH SD KRNLS,DRIED~^~pepitas~^^~Y~^~Hulls~^26^^5.30^3.47^8.37^4.07 -~12016~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, without salt~^~PUMPKIN&SQUASH SD KRNLS,RSTD,WO/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12021~^~1200~^~Seeds, safflower seed kernels, dried~^~SAFFLOWER SD KRNLS,DRIED~^^^^~Hulls~^49^~Carthamus tinctorius~^5.30^3.47^8.37^4.07 -~12022~^~1200~^~Seeds, safflower seed meal, partially defatted~^~SAFFLOWER SD MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12023~^~1200~^~Seeds, sesame seeds, whole, dried~^~SESAME SEEDS,WHOLE,DRIED~^^^~Y~^^0^~Sesamum indicum~^5.30^3.47^8.37^4.07 -~12024~^~1200~^~Seeds, sesame seeds, whole, roasted and toasted~^~SESAME SEEDS,WHL,RSTD&TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12029~^~1200~^~Seeds, sesame seed kernels, toasted, without salt added (decorticated)~^~SESAME SD KRNLS,TSTD,WO/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12032~^~1200~^~Seeds, sesame flour, partially defatted~^~SESAME FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12033~^~1200~^~Seeds, sesame flour, low-fat~^~SESAME FLOUR,LOW-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12034~^~1200~^~Seeds, sesame meal, partially defatted~^~SESAME MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12036~^~1200~^~Seeds, sunflower seed kernels, dried~^~SUNFLOWER SD KRNLS,DRIED~^^^~Y~^~Hulls~^46^~Helianthus annuus~^5.30^3.47^8.37^4.07 -~12037~^~1200~^~Seeds, sunflower seed kernels, dry roasted, without salt~^~SUNFLOWER SD KRNLS,DRY RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12038~^~1200~^~Seeds, sunflower seed kernels, oil roasted, without salt~^~SUNFLOWER SD KRNLS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12039~^~1200~^~Seeds, sunflower seed kernels, toasted, without salt~^~SUNFLOWER SD KRNLS,TSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12040~^~1200~^~Seeds, sunflower seed butter, without salt~^~SUNFLOWER SD BUTTER,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12041~^~1200~^~Seeds, sunflower seed flour, partially defatted~^~SUNFLOWER SD FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12058~^~1200~^~Nuts, acorns, raw~^~ACORNS,RAW~^^^^~Shells~^38^~Quercus spp.~^5.30^3.47^8.37^4.07 -~12059~^~1200~^~Nuts, acorns, dried~^~ACORNS,DRIED~^^^^~Shells~^38^^5.30^3.47^8.37^4.07 -~12060~^~1200~^~Nuts, acorn flour, full fat~^~ACORN FLOUR,FULL FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12061~^~1200~^~Nuts, almonds~^~ALMONDS~^^^~Y~^~Shells~^60^~Prunus dulcis~^5.18^3.47^8.37^4.07 -~12062~^~1200~^~Nuts, almonds, blanched~^~ALMONDS,BLANCHED~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12063~^~1200~^~Nuts, almonds, dry roasted, without salt added~^~ALMONDS,DRY RSTD,WO/SALT~^~Includes USDA commodity food A255, A263~^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12065~^~1200~^~Nuts, almonds, oil roasted, without salt added~^~ALMONDS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12071~^~1200~^~Nuts, almond paste~^~ALMOND PASTE~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12077~^~1200~^~Nuts, beechnuts, dried~^~BEECHNUTS,DRIED~^^^^~Shells~^39^~Fagus spp.~^5.30^3.47^8.37^4.07 -~12078~^~1200~^~Nuts, brazilnuts, dried, unblanched~^~BRAZILNUTS,DRIED,UNBLANCHED~^~brazil nuts~^^~Y~^~Shells~^49^~Bertholletia excelsa~^5.46^3.47^8.37^4.07 -~12084~^~1200~^~Nuts, butternuts, dried~^~BUTTERNUTS,DRIED~^^^^~Shells~^73^~Juglans cinerea~^5.30^3.47^8.37^4.07 -~12085~^~1200~^~Nuts, cashew nuts, dry roasted, without salt added~^~CASHEW NUTS,DRY RSTD,WO/SALT~^^^~Y~^^0^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12086~^~1200~^~Nuts, cashew nuts, oil roasted, without salt added~^~CASHEW NUTS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12087~^~1200~^~Nuts, cashew nuts, raw~^~NUTS,CASHEW NUTS,RAW~^^^^^^~Anacardium occidentale~^5.30^3.47^8.37^4.07 -~12088~^~1200~^~Nuts, cashew butter, plain, without salt added~^~CASHEW BUTTER,PLN,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12093~^~1200~^~Nuts, chestnuts, chinese, raw~^~CHESTNUTS,CHINESE,RAW~^^^^~Shells~^16^~Castanea mollissima~^5.30^3.47^8.37^4.07 -~12094~^~1200~^~Nuts, chestnuts, chinese, dried~^~CHESTNUTS,CHINESE,DRIED~^^^^^0^^5.30^3.47^8.37^4.07 -~12095~^~1200~^~Nuts, chestnuts, chinese, boiled and steamed~^~CHESTNUTS,CHINESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12096~^~1200~^~Nuts, chestnuts, chinese, roasted~^~CHESTNUTS,CHINESE,ROASTED~^^^^~Shells~^25^^5.30^3.47^8.37^4.07 -~12097~^~1200~^~Nuts, chestnuts, european, raw, unpeeled~^~CHESTNUTS,EUROPEAN,RAW,UNPEELED~^^^^~Shells~^26^~Castanea sativa~^5.30^3.47^8.37^4.07 -~12098~^~1200~^~Nuts, chestnuts, european, raw, peeled~^~CHESTNUTS,EUROPEAN,RAW,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12099~^~1200~^~Nuts, chestnuts, european, dried, unpeeled~^~CHESTNUTS,EUROPEAN,DRIED,UNPEELED~^^^^~Shells~^20^^5.30^3.47^8.37^4.07 -~12100~^~1200~^~Nuts, chestnuts, european, dried, peeled~^~CHESTNUTS,EUROPEAN,DRIED,PEELED~^^^^^0^^5.30^3.47^8.37^4.07 -~12101~^~1200~^~Nuts, chestnuts, european, boiled and steamed~^~CHESTNUTS,EUROPEAN,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12104~^~1200~^~Nuts, coconut meat, raw~^~COCONUT MEAT,RAW~^^^~Y~^~Shells (brown), skin, water~^48^~Cocos nucifera~^5.30^3.47^8.37^4.07 -~12108~^~1200~^~Nuts, coconut meat, dried (desiccated), not sweetened~^~COCONUT MEAT,DRIED (DESICCATED),NOT SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12109~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, packaged~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,PACKAGED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12110~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, canned~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,CND~^^^^^0^^5.30^3.47^8.37^4.07 -~12114~^~1200~^~Nuts, coconut meat, dried (desiccated), toasted~^~COCONUT MEAT,DRIED (DESICCATED),TSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12115~^~1200~^~Nuts, coconut cream, raw (liquid expressed from grated meat)~^~COCONUT CRM,RAW (LIQ EXPRESSED FROM GRATED MEAT)~^^^^^0^^5.30^3.47^8.37^4.07 -~12116~^~1200~^~Nuts, coconut cream, canned, sweetened~^~NUTS,COCNT CRM,CND,SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12117~^~1200~^~Nuts, coconut milk, raw (liquid expressed from grated meat and water)~^~COCONUT MILK,RAW (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12118~^~1200~^~Nuts, coconut milk, canned (liquid expressed from grated meat and water)~^~COCONUT MILK,CND (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12119~^~1200~^~Nuts, coconut water (liquid from coconuts)~^~COCONUT H2O (LIQ FROM COCONUTS)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12120~^~1200~^~Nuts, hazelnuts or filberts~^~HAZELNUTS OR FILBERTS~^^^~Y~^~Shells~^59^~Corylus spp.~^5.30^3.47^8.37^4.07 -~12121~^~1200~^~Nuts, hazelnuts or filberts, blanched~^~HAZELNUTS OR FILBERTS,BLANCHED~^^^^^0^^5.30^3.47^8.37^4.07 -~12122~^~1200~^~Nuts, hazelnuts or filberts, dry roasted, without salt added~^~HAZELNUTS OR FILBERTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12127~^~1200~^~Nuts, ginkgo nuts, raw~^~GINKGO NUTS,RAW~^^^^~Shells~^24^~Ginkgo biloba~^5.30^3.47^8.37^4.07 -~12128~^~1200~^~Nuts, ginkgo nuts, dried~^~GINKGO NUTS,DRIED~^^^^~Shells~^24^^5.30^3.47^8.37^4.07 -~12129~^~1200~^~Nuts, ginkgo nuts, canned~^~GINKGO NUTS,CANNED~^^^^~Liquid~^41^^5.30^3.47^8.37^4.07 -~12130~^~1200~^~Nuts, hickorynuts, dried~^~HICKORYNUTS,DRIED~^^^^~Shells~^68^~Carya spp.~^5.30^3.47^8.37^4.07 -~12131~^~1200~^~Nuts, macadamia nuts, raw~^~MACADAMIA NUTS,RAW~^^^^~Shells~^69^~Macadamia integrifolia, M. tetraphylla~^5.30^3.47^8.37^4.07 -~12132~^~1200~^~Nuts, macadamia nuts, dry roasted, without salt added~^~MACADAMIA NUTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12135~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, without salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12136~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, PLANTERS pistachio blend~^~NUTS,MXD NUTS,DRY RSTD,W/PNUTS,SALT ADD,PLANTERS PSTACH BLND~^^~Planters- Kraft Foods Group~^^^0^^5.30^3.47^8.37^4.07 -~12137~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, without salt added~^~MIXED NUTS,OIL RSTD,W/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12138~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, without salt added~^~MIXED NUTS,OIL RSTD,WO/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12140~^~1200~^~Nuts, formulated, wheat-based, unflavored, with salt added~^~FORMULATED,WHEAT-BASED,UNFLAVORED,W/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12141~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER~^~NUTS,MXD NUTS,DRY RSTD,W/ PNUTS,SALT ADDED,CHOSEN ROASTER~^^~Chosen Roaster~^^^0^^6.25^3.47^8.37^4.07 -~12142~^~1200~^~Nuts, pecans~^~PECANS~^^^~Y~^~Shells~^47^~Carya illinoinensis~^5.30^3.47^8.37^4.07 -~12143~^~1200~^~Nuts, pecans, dry roasted, without salt added~^~PECANS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12144~^~1200~^~Nuts, pecans, oil roasted, without salt added~^~PECANS,OIL RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12145~^~1200~^~Nuts, pilinuts, dried~^~NUTS,PILINUTS,DRIED~^^^^~Shells~^81^~Canarium ovatum~^5.30^3.47^8.37^4.07 -~12147~^~1200~^~Nuts, pine nuts, dried~^~NUTS,PINE NUTS,DRIED~^^^~Y~^~Shells~^23^~Pinus spp.~^5.30^3.47^8.37^4.07 -~12149~^~1200~^~Nuts, pine nuts, pinyon, dried~^~PINE NUTS,PINYON,DRIED~^~pinon~^^^~Shells~^43^~Pinus edulis~^5.30^3.47^8.37^4.07 -~12151~^~1200~^~Nuts, pistachio nuts, raw~^~PISTACHIO NUTS,RAW~^^^^~Shells~^47^~Pistacia vera~^5.30^3.47^8.37^4.07 -~12152~^~1200~^~Nuts, pistachio nuts, dry roasted, without salt added~^~PISTACHIO NUTS,DRY RSTD,WO/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12154~^~1200~^~Nuts, walnuts, black, dried~^~WALNUTS,BLACK,DRIED~^^^~Y~^~Shells~^76^~Juglans nigra~^5.30^3.47^8.37^4.07 -~12155~^~1200~^~Nuts, walnuts, english~^~WALNUTS,ENGLISH~^^^~Y~^~Shells~^55^~Juglans regia~^5.30^3.47^8.37^4.07 -~12156~^~1200~^~Nuts, walnuts, glazed~^~NUTS,WALNUTS,GLAZED~^^^^^0^^6.25^^^ -~12157~^~1200~^~Nuts, walnuts, dry roasted, with salt added~^~NUTS,WALNUTS,DRY RSTD,W/ SALT ADDED~^^^~Y~^^0^^^^^ -~12158~^~1200~^~Seeds, breadfruit seeds, roasted~^~BREADFRUIT SEEDS,ROASTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12160~^~1200~^~Seeds, cottonseed kernels, roasted (glandless)~^~COTTONSEED KRNLS,RSTD (GLANDLESS)~^^^^^0^~Gossypium spp.~^5.30^3.47^8.37^4.07 -~12163~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, without salt~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,WO/SALT~^^^^^0^~Cucurbita spp.~^5.30^3.47^8.37^4.07 -~12166~^~1200~^~Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)~^~SESAME BUTTER,TAHINI,FROM RSTD&TSTD KRNLS (MOST COMMON TYPE)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12167~^~1200~^~Nuts, chestnuts, european, roasted~^~CHESTNUTS,EUROPEAN,RSTD~^^^~Y~^~Shells and skins~^37^^5.30^3.47^8.37^4.07 -~12169~^~1200~^~Seeds, sesame butter, paste~^~SESAME BUTTER,PASTE~^^^^^0^^5.30^3.47^8.37^4.07 -~12170~^~1200~^~Seeds, sesame flour, high-fat~^~SESAME FLOUR,HIGH-FAT~^^^^^0^^5.30^3.47^8.37^4.07 -~12171~^~1200~^~Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)~^~SESAME BUTTER,TAHINI,FROM UNROASTED KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12174~^~1200~^~Seeds, watermelon seed kernels, dried~^~WATERMELON SD KRNLS,DRIED~^^^^~Hard seed coat~^63^~Citrullus lanatus~^5.30^3.47^8.37^4.07 -~12175~^~1200~^~Nuts, chestnuts, japanese, dried~^~CHESTNUTS,JAPANESE,DRIED~^^^^~Shells~^34^^5.30^3.47^8.37^4.07 -~12176~^~1200~^~Nuts, coconut milk, frozen (liquid expressed from grated meat and water)~^~COCONUT MILK,FRZ (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07 -~12177~^~1200~^~Nuts, coconut meat, dried (desiccated), creamed~^~COCONUT MEAT,DRIED (DESICCATED),CRMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12179~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, shredded~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,SHREDDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12193~^~1200~^~Seeds, sisymbrium sp. seeds, whole, dried~^~SISYMBRIUM SP. SEEDS,WHL,DRIED~^^^^^0^~Sisymbrium spp.~^5.30^3.47^8.37^4.07 -~12195~^~1200~^~Nuts, almond butter, plain, without salt added~^~ALMOND BUTTER,PLN,WO/SALT~^^^^^0^^5.18^3.47^8.37^4.07 -~12198~^~1200~^~Seeds, sesame butter, tahini, from raw and stone ground kernels~^~SESAME BUTTER,TAHINI,FROM RAW&STONE GROUND KRNLS~^^^^^0^^5.30^3.47^8.37^4.07 -~12200~^~1200~^~Nuts, formulated, wheat-based, all flavors except macadamia, without salt~^~FORMULATED,WHEAT-BASED,ALL FLAVORS XCPT MACADAMIA,WO/SALT~^^^^^0^^5.80^3.59^8.37^3.78 -~12201~^~1200~^~Seeds, sesame seed kernels, dried (decorticated)~^~SESAME SD KRNLS,DRIED (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12202~^~1200~^~Nuts, chestnuts, japanese, raw~^~CHESTNUTS,JAPANESE,RAW~^^^^~Shells~^34^~Castanea crenata~^5.30^3.47^8.37^4.07 -~12203~^~1200~^~Nuts, chestnuts, japanese, boiled and steamed~^~CHESTNUTS,JAPANESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07 -~12204~^~1200~^~Nuts, chestnuts, japanese, roasted~^~CHESTNUTS,JAPANESE,RSTD~^^^^^0^^5.30^3.47^8.37^4.07 -~12205~^~1200~^~Seeds, lotus seeds, raw~^~LOTUS SEEDS,RAW~^^^^~Shells~^47^~Nelumbo spp.~^5.30^3.47^8.37^4.07 -~12206~^~1200~^~Nuts, almonds, honey roasted, unblanched~^~ALMONDS,HONEY RSTD,UNBLANCHED~^^^^^0^^5.18^3.47^8.37^4.07 -~12220~^~1200~^~Seeds, flaxseed~^~SEEDS,FLAXSEED~^^^~Y~^^0^~Linum usitatissimum~^5.30^3.47^8.37^4.07 -~12516~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, with salt added~^~PUMPKIN&SQUASH SD KRNLS,RSTD,W/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12529~^~1200~^~Seeds, sesame seed kernels, toasted, with salt added (decorticated)~^~SESAME SD KRNLS,TSTD,W/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12536~^~1200~^~Seeds, sunflower seed kernels from shell, dry roasted, with salt added~^~SEEDS,SUNFLOWER SD KRNLS FROM SHELL,DRY RSTD,W/ SALT ADDED~^^^^~Hulls~^46^^5.30^3.47^8.37^4.07 -~12537~^~1200~^~Seeds, sunflower seed kernels, dry roasted, with salt added~^~SUNFLOWER SD KRNLS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12538~^~1200~^~Seeds, sunflower seed kernels, oil roasted, with salt added~^~SUNFLOWER SD KRNLS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12539~^~1200~^~Seeds, sunflower seed kernels, toasted, with salt added~^~SUNFLOWER SD KRNLS,TSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12540~^~1200~^~Seeds, sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)~^~SUNFLOWER SD BUTTER,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12563~^~1200~^~Nuts, almonds, dry roasted, with salt added~^~ALMONDS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12565~^~1200~^~Nuts, almonds, oil roasted, with salt added~^~ALMONDS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12567~^~1200~^~Nuts, almonds, oil roasted, with salt added, smoke flavor~^~NUTS,ALMONDS,OIL RSTD,W/ SALT ADDED,SMOKE FLAVOR~^^^^^0^^^^^ -~12585~^~1200~^~Nuts, cashew nuts, dry roasted, with salt added~^~CASHEW NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12586~^~1200~^~Nuts, cashew nuts, oil roasted, with salt added~^~CASHEW NUTS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12588~^~1200~^~Nuts, cashew butter, plain, with salt added~^~CASHEW BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12632~^~1200~^~Nuts, macadamia nuts, dry roasted, with salt added~^~MACADAMIA NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12635~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, with salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12637~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12638~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07 -~12643~^~1200~^~Nuts, pecans, dry roasted, with salt added~^~PECANS,DRY RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12644~^~1200~^~Nuts, pecans, oil roasted, with salt added~^~PECANS,OIL RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12652~^~1200~^~Nuts, pistachio nuts, dry roasted, with salt added~^~PISTACHIO NUTS,DRY RSTD,W/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07 -~12663~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, with salt added~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07 -~12665~^~1200~^~Nuts, almonds, oil roasted, lightly salted~^~NUTS,ALMONDS,OIL RSTD,LIGHTLY SALTED~^^^^^0^^^^^ -~12695~^~1200~^~Nuts, almond butter, plain, with salt added~^~ALMOND BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07 -~12698~^~1200~^~Seeds, sesame butter, tahini, type of kernels unspecified~^~SESAME BUTTER,TAHINI,KRNLS UNSPEC~^^^^^0^^5.30^3.47^8.37^4.07 -~12737~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,LIGHTLY SALTED~^^^^^0^^5.30^3.47^8.37^4.07 -~12738~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,LIGHTLY SALTED~^^^^^0^^^^^ -~13000~^~1300~^~Beef, grass-fed, strip steaks, lean only, raw~^~BEEF,GRASS-FED,STRIP STEAKS,LN,RAW~^^^^~23% Bone and connective tissue, 11% Separable fat~^34^^^^^ -~13001~^~1300~^~Beef, carcass, separable lean and fat, choice, raw~^~BEEF,CARCASS,LN&FAT,CHOIC,RAW~^^^^~Bone 19%~^19^~Bos taurus~^6.25^4.27^9.02^3.87 -~13002~^~1300~^~Beef, carcass, separable lean and fat, select, raw~^~BEEF,CARCASS,LN&FAT,SEL,RAW~^^^^~Bone 20%~^20^^6.25^4.27^9.02^3.87 -~13019~^~1300~^~Beef, retail cuts, separable fat, raw~^~BEEF,RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13020~^~1300~^~Beef, retail cuts, separable fat, cooked~^~BEEF,RTL CUTS,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13023~^~1300~^~Beef, brisket, whole, separable lean only, all grades, raw~^~BEEF,BRISKET,WHL,LN,ALL GRDS,RAW~^^^^~Connective tissue 0.3%, separable fat 30%~^30^^6.25^4.27^9.02^3.87 -~13047~^~1300~^~Beef, grass-fed, ground, raw~^~BEEF,GRASS-FED,GROUND,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13055~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13065~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13066~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13067~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^^0^^6.25^4.27^9.02^3.87 -~13068~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^~Bone and connective tissue, 0.2%, separable fat, 3.6%~^4^^6.25^4.27^9.02^3.87 -~13069~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2399~^^~Y~^~Connective tissue, 2%, separable fat, 6%~^8^^6.25^4.27^9.02^3.87 -~13070~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13095~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13096~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BF,RIB,EYE,SML END (RIB 10-12),LN & FT,0" FAT,CHOIC,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13097~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue 4%, separable fat 21%~^25^^6.25^4.27^9.02^3.87 -~13098~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^~ribeye, Delmonico~^^^~Bone and connective tissue 7%, sep fat 12%~^19^^6.25^4.27^9.02^3.87 -~13147~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, raw~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,RAW~^~URMIS #2074~^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~13148~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87 -~13149~^~1300~^~Beef, rib, shortribs, separable lean only, choice, raw~^~BEEF,RIB,SHORTRIBS,LN ONLY,CHOIC,RAW~^~URMIS #2074~^^^~Bone 27%, separable fat 32%~^59^^6.25^4.27^9.02^3.87 -~13150~^~1300~^~Beef, rib, shortribs, separable lean only, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone, 29%, separable fat, 33%~^62^^6.25^4.27^9.02^3.87 -~13156~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,CHOIC,CKD,BRLD~^^^^~8% bone, 9% separable fat~^17^^6.25^4.27^9.02^3.87 -~13158~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,SEL,CKD,BRLD~^^^^~Bone, 8%, separable fat, 9%~^17^^6.25^4.27^9.02^3.87 -~13165~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^^0^^6.25^4.27^9.02^3.87 -~13227~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,RAW~^^^^~Bone 34%, separable fat 6%~^40^^6.25^4.27^9.02^3.87 -~13228~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, cooked, simmered~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,CKD,SIMMRD~^^^^~Bone, 37%, separable fat, 8%~^45^^6.25^4.27^9.02^3.87 -~13231~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,RAW~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and heavy connective tissue, 23%, separable fat, 12%~^35^^6.25^4.27^9.02^3.87 -~13232~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and connective tissue 26%, separable fat, 12%~^38^^6.25^4.27^9.02^3.87 -~13235~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,CHOIC,RAW~^~T-Bone Steak, URMIS # 2184~^^^~Bone and heavy connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13236~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BN-IN,LN,1/8" FAT,CHOIC,CKD,GRILLD~^~T-Bone Steak, URMIS # 2184~^^^~Bone and connective tissue, 28%, separable fat, 14%~^42^^6.25^4.27^9.02^3.87 -~13284~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN,0" FAT,SEL,RAW~^^^^~Bone and connective tissue and separable fat~^37^^^^^ -~13285~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD~^~URMIS #1151, Beef, Chuck, Under Blade Pot Roast~^^^~Connective tissue 4%, seam fat 20%~^24^^6.25^^^ -~13293~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD, BRSD~^~Beef, Chuck, Under Blade Pot Roast or Steak, URMIS #1151, URMIS #1158~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13294~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHCK,UND BL POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 14%~^20^^6.25^^^ -~13317~^~1300~^~Beef, ground, patties, frozen, cooked, broiled~^~BEEF,GROUND,PATTIES,FRZ,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13318~^~1300~^~Beef, variety meats and by-products, brain, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes 22.45%~^22^^6.25^4.27^9.02^3.87 -~13319~^~1300~^~Beef, variety meats and by-products, brain, cooked, pan-fried~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13320~^~1300~^~Beef, variety meats and by-products, brain, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13321~^~1300~^~Beef, variety meats and by-products, heart, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat, veins and connective tissue~^29^^6.25^4.27^9.02^3.87 -~13322~^~1300~^~Beef, variety meats and by-products, heart, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,CKD,SIMMRD~^^^~Y~^~Fat and valves, 16.39%~^16^^6.25^4.27^9.02^3.87 -~13323~^~1300~^~Beef, variety meats and by-products, kidneys, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13324~^~1300~^~Beef, variety meats and by-products, kidneys, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13325~^~1300~^~Beef, variety meats and by-products, liver, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13326~^~1300~^~Beef, variety meats and by-products, liver, cooked, braised~^~BEEF,VAR MEATS & BY-PRODUCTS,LIVER,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13327~^~1300~^~Beef, variety meats and by-products, liver, cooked, pan-fried~^~BEEF, VAR MEATS&BY-PRODUCTS, LIVER, CKD, PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13328~^~1300~^~Beef, variety meats and by-products, lungs, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~13329~^~1300~^~Beef, variety meats and by-products, lungs, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13330~^~1300~^~Beef, variety meats and by-products, mechanically separated beef, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED BF,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13331~^~1300~^~Beef, variety meats and by-products, pancreas, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13332~^~1300~^~Beef, variety meats and by-products, pancreas, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13333~^~1300~^~Beef, variety meats and by-products, spleen, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13334~^~1300~^~Beef, variety meats and by-products, spleen, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13335~^~1300~^~Beef, variety meats and by-products, suet, raw~^~BEEF,VAR MEATS & BY-PRODUCTS,SUET,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13337~^~1300~^~Beef, variety meats and by-products, thymus, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13338~^~1300~^~Beef, variety meats and by-products, thymus, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13339~^~1300~^~Beef, variety meats and by-products, tongue, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11 -~13340~^~1300~^~Beef, variety meats and by-products, tongue, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,SIMMRD~^^^~Y~^~Skin and connective tissue, 5.74%; Cartilage and connective tissue,10.35%~^16^^6.25^4.27^9.02^3.87 -~13341~^~1300~^~Beef, variety meats and by-products, tripe, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TRIPE,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13342~^~1300~^~Beef, sandwich steaks, flaked, chopped, formed and thinly sliced, raw~^~BEEF,SNDWCH STEAKS,FLAKED,CHOPD,FORMED & THINLY SLICED,RAW~^^^~Y~^^0^^^4.00^9.00^4.00 -~13343~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13344~^~1300~^~Beef, cured, breakfast strips, raw or unheated~^~BEEF,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87 -~13345~^~1300~^~Beef, cured, breakfast strips, cooked~^~BEEF,CURED,BRKFST STRIPS,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13346~^~1300~^~Beef, cured, corned beef, brisket, raw~^~BEEF,CURED,CORNED BF,BRISKET,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13347~^~1300~^~Beef, cured, corned beef, brisket, cooked~^~BEEF,CURED,CORNED BF,BRISKET,CKD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13348~^~0700~^~Beef, cured, corned beef, canned~^~BEEF,CURED,CORNED BF,CND~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13349~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLADE POT RST OR STK,BNLESS,LN,0" FAT,SEL, RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13350~^~0700~^~Beef, cured, dried~^~BEEF,CURED,DRIED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~13351~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13352~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^ -~13353~^~0700~^~Beef, cured, luncheon meat, jellied~^~BEEF,CURED,LUNCHEON MEAT,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87 -~13354~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 1%~^2^^6.25^^^ -~13355~^~0700~^~Beef, cured, pastrami~^~BEEF,CURED,PASTRAMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13356~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UNDBL CNTR STK,BNLESS,DENCUT,LN,0" FA, ALL GRD, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 3%~^5^^6.25^^^ -~13357~^~0700~^~Sausage, beef, cured, cooked, smoked~^~SAUSAGE,BF,CURED,CKD,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13358~^~0700~^~Beef, chopped, cured, smoked~^~BEEF,CHOPD,CURED,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68 -~13359~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BLCNTR STK,BNLESS,DEN CUT,LN,0" FA, CHOICE, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 3%~^4^^6.25^^^ -~13361~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13362~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13363~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13364~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13365~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13366~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,SEL,CKD~^^^^~Component data unavailable~^^^6.25^4.27^9.02^3.87 -~13367~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13368~^~1300~^~Beef, brisket, whole, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~1% connective tissue, 16% separable fat~^17^^6.25^4.27^9.02^3.87 -~13369~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13370~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~13371~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~URMIS #1628~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13372~^~1300~^~Beef, brisket, point half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue, 1%, separable fat, 24%~^25^^6.25^4.27^9.02^3.87 -~13373~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue~^19^^6.25^4.27^9.02^3.87 -~13375~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13377~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^^~Bone and connective tissue 23%, sep fat 17%~^40^^6.25^4.27^9.02^3.87 -~13378~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue 29%, sep fat 13%~^42^^6.25^4.27^9.02^3.87 -~13379~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~13380~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",CHC,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^4.27^9.02^3.87 -~13381~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",SEL,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^40^^6.25^4.27^9.02^3.87 -~13382~^~1300~^~Beef, chuck, blade roast, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~25% bone, 14% separable fat~^39^^6.25^4.27^9.02^3.87 -~13383~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 3%, seam fat 21%~^24^^6.25^4.27^9.02^3.87 -~13384~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%, seam fat 19%~^23^^6.25^4.27^9.02^3.87 -~13386~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13387~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13388~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~16% bone, 22% separable fat~^38^^6.25^4.27^9.02^3.87 -~13389~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone, 16%, separable fat, 24%~^40^^6.25^4.27^9.02^3.87 -~13390~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,SEL,CKD,RSTD~^^^^~Bone, 17%, separable fat, 20%~^37^^6.25^4.27^9.02^3.87 -~13391~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue~^23^^6.25^4.27^9.02^3.87 -~13392~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13393~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,SEL,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~13394~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue, 7.8%, separable fat, 10.6%~^37^^6.25^4.27^9.02^3.87 -~13395~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone, 22%, separable fat, 15%~^37^^6.25^4.27^9.02^3.87 -~13396~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,SEL,CKD,BRLD~^^^^~Bone, 24%, separable fat, 13%~^37^^6.25^4.27^9.02^3.87 -~13398~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13399~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13401~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13402~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13404~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13405~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13407~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue, 1.8%, separable fat, 1.8%~^4^^6.25^4.27^9.02^3.87 -~13408~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue 1%, sep fat 2%~^3^^6.25^4.27^9.02^3.87 -~13410~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13411~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~Beef, bottom round, roast,lean only, 0" fat, choice, roasted~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 3%~^4^^^4.27^9.02^3.87 -~13413~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue 3%, sep fat 2%~^5^^6.25^4.27^9.02^3.87 -~13414~^~1300~^~Beef, round, bottom round roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~13415~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,L & F,0" FAT,A GRDS,CKD,RSTD~^~Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13416~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13417~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13418~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Eye of Round Roast~^^^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13419~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^~Bone and Conective tissue 3%~^3^^6.25^4.27^9.02^3.87 -~13420~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87 -~13421~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13422~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2340, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13423~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1525, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13424~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 4.0%, separable fat, 4.0%~^8^^6.25^4.27^9.04^3.87 -~13425~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 3%~^7^^6.25^4.27^9.02^3.87 -~13426~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS # 1525, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^^^ -~13428~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Cube steak, Round Steak, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13430~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13432~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13436~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13438~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87 -~13439~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TNDRLN STEAK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13440~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" F,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13441~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87 -~13442~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L,0" F,ALL GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^^^ -~13443~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13444~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87 -~13445~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIPOFF,LN FT,0" FT,ALLGRD,CKD,GRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^4.27^9.02^3.87 -~13446~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FT,0" FT,CHC,CKD,GRLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Steak, New York Strip, Club Steak~^^^~Connective tissue 7%~^7^^6.25^4.27^9.02^3.87 -~13447~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FAT,0" FT,SEL,CKD,GRLD~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13448~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN,0" FT,ALL GRD,CKD,GRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87 -~13449~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 7%, separable fat 5%~^12^^6.25^4.27^9.02^3.87 -~13450~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,SEL,CKD,GRLD~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 9%, separable fat 4%~^13^^6.25^4.27^9.02^3.87 -~13451~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13452~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin Steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13453~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13454~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue, 3.8%, separable fat, 5.8%~^10^^6.25^4.27^9.02^3.87 -~13455~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13456~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87 -~13459~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13460~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13463~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%~^20^^6.25^4.27^9.02^3.87 -~13464~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Porterhouse Steak~^^^~Bone and connective tissue 23%, Separable fat 12%~^35^^6.25^4.27^9.02^3.87 -~13465~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Porterhouse Steak~^^^~Bone and connective tissue 27%, separable fat 11%~^38^^6.25^4.27^9.02^3.87 -~13466~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%, separable fat, 11%~^32^^6.25^4.27^9.02^3.87 -~13467~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%, separable fat, 10%~^31^^6.25^4.27^9.02^3.87 -~13468~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,RAW~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 24%, separable fat 13%~^37^^6.25^4.27^9.02^3.87 -~13469~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 30%, separable fat 10%~^40^^6.25^4.27^9.02^3.87 -~13470~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%, separable fat, 12%~^32^^6.25^4.27^9.02^3.87 -~13473~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 22%~^22^^6.25^4.27^9.02^3.87 -~13474~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,T-BONE STEAK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 23%~^23^^6.25^4.27^9.02^3.87 -~13477~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 01369~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87 -~13478~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87 -~13479~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BN STK,BN-IN,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~T-Bone Steak~^^^~Bone and connective tissue, 30%, separable fat, 13%~^43^^6.25^4.27^9.02^3.87 -~13481~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 22%, separable fat, 10%~^32^^6.25^4.27^9.02^3.87 -~13482~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,SEL,RAW~^~T-Bone Steak, URMIS # 1369~^^^~Bone and heavy connective tissue, 26%, Separable fat 14%~^41^^6.25^4.27^9.02^3.87 -~13483~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BONE-IN,LN,1/8" FAT,SEL,CKD,GRILLED~^~T-Bone Steak, URMIS # 1369~^^^~Bone and connective tissue, 32%, separable fat, 12%~^44^^6.25^4.27^9.02^3.87 -~13484~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1369~^^^~Bone and heavy connective tissue, 21%, separable fat, 8%~^29^^6.25^4.27^9.02^3.87 -~13485~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^1^^^4.27^9.02^3.87 -~13486~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13487~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13488~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1525~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13490~^~1300~^~Beef, rib, eye, small end (ribs 10- 12) separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10- 12) LN,0" FAT,SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue 8%, sep fat 10%~^18^^6.25^4.27^9.02^3.87 -~13491~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13492~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13493~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13494~^~1300~^~Beef, ground, 70% lean meat / 30% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,70% LN MEAT / 30% FAT,CRUMBLES,CKD,PAN-BROWNED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13495~^~1300~^~Beef, ground, 70% lean meat / 30% fat, loaf, cooked, baked~^~BEEF,GROUND,70% LN MEAT / 30% FAT,LOAF,CKD,BKD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13496~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty cooked, pan-broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY CKD,PAN-BROILED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13497~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty, cooked, broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY,CKD,BRLD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13498~^~1300~^~Beef, ground, 70% lean meat / 30% fat, raw~^~BEEF,GROUND,70% LN MEAT / 30% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~13499~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 4%~^6^^6.25^^^ -~13500~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRI~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 15%, seam fat 3%~^18^^6.25^^^ -~13501~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 4%~^18^^6.25^^^ -~13502~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 17%, seam fat 2%~^19^^6.25^^^ -~13519~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 2%~^16^^6.25^^^ -~13520~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 15%, seam fat 2%~^17^^6.25^^^ -~13523~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 14%, seam fat 1%~^15^^6.25^^^ -~13595~^~1300~^~Beef, brisket, flat half, boneless separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL GRDS,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13596~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL CHOICE,RAW~^~URMIS #1623, Beef, Brsket, Flat Half~^^^~Connective tissue 1%, seam fat 8%~^9^^6.25^^^ -~13597~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^ -~13598~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STK,BNLES,LN & FAT,0" ,ALL GRDS,CKD,G~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13647~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13648~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1132, Urmis #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13649~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^ -~13650~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNS,LN & FAT,0" FAT,CHOIC,CKD,G~^~URMIS #1144~^^^~Connective tissue 14%~^14^^6.25^^^ -~13786~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE RST,BNLESS,A BF RST,LN & FAT,0",ALL G,RAW~^~URMIS #1095~^^^~Connective tissue 8%~^8^^6.25^^^ -~13788~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1095~^^^~Connective tissue 9%~^9^^6.25^^^ -~13791~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~13795~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13796~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87 -~13797~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13798~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13799~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13800~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87 -~13803~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13804~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13805~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13806~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~13807~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13808~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13809~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^21^^6.25^4.27^9.02^3.87 -~13810~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87 -~13811~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1864~^^^~Bone and connective tissue~^15^^6.25^4.27^9.02^3.87 -~13812~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue~^30^^6.25^4.27^9.02^3.87 -~13813~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1049~^^^~Bone and connective tissue~^16^^6.25^4.27^9.02^3.87 -~13814~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~13815~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13816~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13817~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1879, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13818~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1879, Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~13819~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1064, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13820~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1064, Top Blade Steak~^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~13821~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13822~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,CHOIC,CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^ -~13823~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,CKD~^~URMIS #1095, Beef, Chuck, ChuckEye Rst, (America's Beef Rst)~^^^~Connective tissue7%, seam fat 13%~^20^^6.25^^^ -~13824~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13825~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13826~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13827~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13828~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13829~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^17^^6.25^4.27^9.02^3.87 -~13830~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13831~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~13832~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13833~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #1986~^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13834~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #1986~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13835~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #1986~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13838~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13839~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13840~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone~^16^^6.25^4.27^9.02^3.87 -~13841~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13842~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13843~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^15^^6.25^4.27^9.02^3.87 -~13844~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~13845~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13846~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~13847~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2037~^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~13848~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2037~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13849~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2037~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13850~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13851~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BR~^~Prime Rib~^^~Y~^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13852~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RS~^~Prime Rib~^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~13853~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13854~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13855~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^~Prime Rib~^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~13856~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13857~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87 -~13858~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^~Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13859~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2054, Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~13860~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13861~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~13862~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNLS,LN & FAT,0" FAT,SEL,CKD,G~^~URMIS #1144~^^^~Connective tissue 17%~^17^^6.25^^^ -~13863~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1144~^^^~Connective tissue 14%~^15^^6.25^^^ -~13864~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #2316~^^~Y~^~Bone~^6^^6.25^4.27^9.02^3.87 -~13865~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~URMIS #2316~^^~Y~^~Bone~^8^^6.25^4.27^9.02^3.87 -~13866~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1501~^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~13867~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~URMIS #1501~^^^~Bone~^8^^6.25^4.27^9.02^3.87 -~13868~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13869~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13870~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13871~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13872~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13873~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13874~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13875~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13876~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13877~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13878~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13879~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13880~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13881~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13882~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~13883~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13884~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13885~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13886~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13887~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1525~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13888~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS # 1525~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87 -~13889~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^ -~13890~^~1300~^~Beef, round, top round, separable lean only, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13891~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~London Broil, Round Steak, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13892~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13893~^~1300~^~Beef, round, top round steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Bone and connective tissue~^1^^^^^ -~13894~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13895~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13896~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13897~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13898~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13899~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13900~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13901~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13902~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~13903~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1144~^^^~Conncective tissue 14%~^14^^6.25^^^ -~13904~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13905~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~13906~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRILLD~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~13907~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2184, T-Bone steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~13908~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,L & F,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS # 2184, T-Bone Steak~^^^~Bone and connective tissue 28%~^28^^6.25^4.27^9.02^3.87 -~13909~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13910~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^~Y~^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13911~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87 -~13912~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,TOP LN,STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRLLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^~Y~^~Bone and Connective tissue 12%~^8^^6.25^4.27^9.02^3.87 -~13913~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 9%~^9^^6.25^4.27^9.02^3.87 -~13914~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87 -~13915~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,PRIME,RAW~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87 -~13916~^~1300~^~Beef, short loin, top loin, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87 -~13917~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%~^2^^6.25^4.27^9.02^3.87 -~13918~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13919~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13920~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13921~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13922~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13923~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13924~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13925~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13926~^~1300~^~Beef, tenderloin, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,TENDERLOIN,LN&FAT,1/8"FAT,PRIME,RAW~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13927~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13928~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,PRIME,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87 -~13929~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Sirloin strip, Sirloin steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13930~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13931~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13932~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87 -~13933~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2237, Sirloin steak, Sirloin strip~^^~Y~^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~13934~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87 -~13935~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87 -~13937~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 3%, separable fat, 8%~^11^^6.25^4.27^9.02^3.87 -~13940~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%, separable fat, 4%~^9^^6.25^4.27^9.02^3.87 -~13943~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~Beef, shoulder steak, boneless, lean only, 0", choice, grill~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13946~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~13948~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~13949~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^^0^^6.25^4.27^9.02^3.87 -~13950~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~13951~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN & FAT,0",SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13952~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIBEYE,SML END(RIBS 10-12),LN&FAT,0",ALL GRDS,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87 -~13953~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BF,BTTM SRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13954~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13955~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13956~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87 -~13957~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13958~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13959~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~13961~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%, separable fat, 0%~^5^^6.25^4.27^9.02^3.87 -~13963~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%, separable fat, 0%~^3^^6.25^4.27^9.02^3.87 -~13965~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%, separable fat, 2%~^15^^6.25^4.27^9.02^3.87 -~13967~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%, separable fat, 3%~^19^^6.25^4.27^9.02^3.87 -~13968~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13969~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87 -~13970~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~13971~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~13972~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 8%, seam fat 10%~^18^^6.25^^^ -~13973~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,CHOIC,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 9%, seam fat 11%~^20^^6.25^^^ -~13974~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~13975~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13977~^~1300~^~Beef, plate, inside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,INSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 3%~^3^^6.25^4.27^9.02^3.87 -~13979~^~1300~^~Beef, plate, outside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 5%~^5^^6.25^4.27^9.02^3.87 -~13980~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF, CHUCK, SHORT RIBS, BNL, 0" FAT, CHOICE, CKED, BR~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, Seam fat 20%~^27^^6.25^^^ -~13981~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connnective tissue 6%, seam fat 18%~^24^^6.25^^^ -~13982~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 20%~^26^^6.25^^^ -~13983~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^ -~13985~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BF,LOIN,BTTM SIRLOIN BUTT,TRI-TIP,LN,0" FAT,ALL GRD,CKD,RSTD~^^^^~Bone and connective tissue 1.58%, separable fat 4.34%~^6^^6.25^^^ -~14003~^~1400~^~Alcoholic beverage, beer, regular, all~^~ALCOHOLIC BEV,BEER,REG,ALL~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14004~^~1400~^~Alcoholic beverage, beer, regular, BUDWEISER~^~ALCOHOLIC BEV,BEER,REG,BUDWEISER~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14005~^~1400~^~Alcoholic beverage, beer, light, BUDWEISER SELECT~^~ALCOHOLIC BEV,BEER,LT,BUDWEISER SEL~^^~Anheuser-Busch, Inc.~^^^0^^^^^ -~14006~^~1400~^~Alcoholic beverage, beer, light~^~ALCOHOLIC BEV,BEER,LT~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14007~^~1400~^~Alcoholic beverage, beer, light, BUD LIGHT~^~ALCOHOLIC BEV,BEER,LT,BUD LT~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^ -~14009~^~1400~^~Alcoholic beverage, daiquiri, canned~^~ALCOHOLIC BEV,DAIQUIRI,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14010~^~1400~^~Alcoholic beverage, daiquiri, prepared-from-recipe~^~ALCOHOLIC BEV,DAIQUIRI,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14013~^~1400~^~Alcoholic beverage, beer, light, low carb~^~ALCOHOLIC BEV,BEER,LT,LO CARB~^^~Anheuser-Busch, Inc.~^~Y~^^0^^^^^ -~14015~^~1400~^~Alcoholic beverage, pina colada, canned~^~ALCOHOLIC BEV,PINA COLADA,CND~^^^^^0^^6.25^3.40^8.50^3.90 -~14016~^~1400~^~Beverages, almond milk, sweetened, vanilla flavor, ready-to-drink~^~BEVERAGES,ALMOND MILK,SWTND,VANILLA FLAVOR,RTD~^^^~Y~^^0^^6.38^^^ -~14017~^~1400~^~Alcoholic beverage, pina colada, prepared-from-recipe~^~ALCOHOLIC BEV,PINA COLADA,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~14019~^~1400~^~Alcoholic beverage, tequila sunrise, canned~^~ALCOHOLIC BEV,TEQUILA SUNRISE,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14021~^~1400~^~Beverages, Energy drink, Citrus~^~BEVERAGES,ENERGY DRK,CITRUS~^^^~Y~^^0^^^^^ -~14022~^~1400~^~Beverages, MONSTER energy drink, low carb~^~BEVERAGES,MONSTER ENERGY DRK,LO CARB~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14024~^~1400~^~Beverages, Whiskey sour mix, powder~^~BEVERAGES,WHISKEY SOUR MIX,PDR~^^^^^0^^6.25^3.40^8.40^3.90 -~14025~^~1400~^~Alcoholic beverage, whiskey sour, prepared with water, whiskey and powder mix~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP W/ H2O,WHISKEY & PDR MIX~^^^^^0^^^^^ -~14026~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS Zero, energy drink, sugar-free with guarana, fortified with vitamins B6 and B12~^~BEV, COCA-COLA COMY,NOS 0,ENEY DRK,SUG-FRE, GUANA, B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14027~^~1400~^~Alcoholic beverage, whiskey sour, canned~^~ALCOHOLIC BEV,WHISKEY SOUR,CND~^^^^^0^^6.25^3.40^8.40^3.90 -~14028~^~1400~^~Beverages, Whiskey sour mix, bottled~^~BEVERAGES,WHISKEY SOUR MIX,BTLD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14029~^~1400~^~Alcoholic beverage, whiskey sour, prepared from item 14028~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP FROM ITEM 14028~^^^^^0^^0.00^^^ -~14030~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS energy drink, Original, grape, loaded cherry, charged citrus, fortified with vitamins B6 and B12~^~BEV,COCA-COLA CO,NOS ENGY ,OGN,GRPE,CHERY,CITR, VIT B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14031~^~1400~^~Beverages, water, bottled, yumberry, pomegranate with anti-oxidants, zero calories~^~BEV,H2O,BTLD,YUMBERRY,POMEGRANATE W/ ANTI-OXIDANTS, 0 CAL~^^^~Y~^^0^^6.25^^^ -~14033~^~1400~^~Beverages, ABBOTT, EAS whey protein powder~^~BEVERAGES,ABBOTT,EAS WHEY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14034~^~1400~^~Alcoholic beverage, creme de menthe, 72 proof~^~ALCOHOLIC BEV,CREME DE MENTHE,72 PROOF~^^^~Y~^^0^^6.25^2.44^8.37^3.90 -~14035~^~1400~^~Beverages, ABBOTT, EAS soy protein powder~^~BEVERAGES,ABBOTT,EAS SOY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14036~^~1400~^~Beverages, CYTOSPORT, Muscle Milk, ready-to-drink~^~BEVERAGES,CYTOSPORT,MUSCLE MILK,RTD~^^~CytoSport~^~Y~^^0^^6.25^^^ -~14037~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 80 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14038~^~1400~^~Beverages, OCEAN SPRAY, Cran-Energy, Cranberry Energy Juice Drink~^~BEVERAGES,OCEAN SPRAY,CRAN-ENERGY,CRANBERRY ENERGY JUC DRK~^^~Ocean Spray Cranberries, Inc.~^~Y~^^0^^6.25^^^ -~14041~^~1400~^~Beverages, NESTLE, Boost plus, nutritional drink, ready-to-drink~^~BEVERAGES,NESTLE,BOOST PLUS,NUTRITIONAL DRK,RTD~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^^^ -~14044~^~1400~^~Beverages, SLIMFAST, Meal replacement, High Protein Shake, Ready-To-Drink, 3-2-1 plan~^~BEVERAGES,SLIMFAST,MEAL REPLCMNT,HI PROT SHAKE,RTD,3-2-1~^^~Unilever~^~Y~^^0^^^^^ -~14045~^~1400~^~Beverages, UNILEVER, SLIMFAST, meal replacement, regular, ready-to-drink, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST,MEAL REPLCMNT,REG,RTD,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.38^^^ -~14047~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, powder, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST SHAKE MIX,PDR,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.25^^^ -~14048~^~1400~^~Beverages, FUZE, orange mango, fortified with vitamins A, C, E, B6~^~BEVERAGES,FUZE,ORANGE MANGO,FORT W/ VITAMINS A,C,E,B6~^^^^^0^^6.25^^^ -~14050~^~1400~^~Alcoholic beverage, distilled, rum, 80 proof~^~ALCOHOLIC BEV,DISTILLED,RUM,80 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14051~^~1400~^~Alcoholic beverage, distilled, vodka, 80 proof~^~ALCOHOLIC BEV,DISTILLED,VODKA,80 PROOF~^^^^^0^^6.25^^^4.12 -~14052~^~1400~^~Alcoholic beverage, distilled, whiskey, 86 proof~^~ALCOHOLIC BEV,DISTILLED,WHISKEY,86 PROOF~^^^^^0^^6.25^^^4.12 -~14054~^~1400~^~Beverages, almond milk, chocolate, ready-to-drink~^~BEVERAGES,ALMOND MILK,CHOC,RTD~^^^~Y~^^0^^^^^ -~14055~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, high protein, whey powder, 3-2-1 Plan,~^~BEVERAG,UNILEV,SLIMFAST SHAKE ,HI PROT,WHEY PDR,3-2-1 PLAN,~^^~Unilever~^~Y~^^0^^6.38^^^ -~14056~^~1400~^~Beverages, Acai berry drink, fortified~^~BEVERAGES,ACAI BERRY DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14057~^~1400~^~Alcoholic beverage, wine, dessert, sweet~^~ALCOHOLIC BEV,WINE,DSSRT,SWT~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14058~^~1400~^~Beverages, Whey protein powder isolate~^~BEVERAGES,WHEY PROT PDR ISOLATE~^^^~Y~^^0^^6.38^^^ -~14060~^~1400~^~Beverages, Energy Drink with carbonated water and high fructose corn syrup~^~BEVERAGES,ENERGY DRK W/ CARB H2O & HI FRUCTOSE CORN SYRUP~^^^~Y~^^0^^6.25^^^ -~14061~^~1400~^~Beverages, Energy Drink, sugar free~^~BEVERAGES,ENERGY DRK,SUGAR FREE~^^^~Y~^^0^^^^^ -~14062~^~1400~^~Beverages, ABBOTT, ENSURE, Nutritional Shake, Ready-to-Drink~^~BEVERAGES,ABBOTT,ENSURE,NUTRITIONAL SHAKE,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^ -~14063~^~1400~^~Beverages, chocolate powder, no sugar added~^~BEVERAGES,CHOC PDR,NO SUGAR ADDED~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~14064~^~1400~^~Beverages, Orange juice, light, No pulp~^~BEVERAGES,ORANGE JUC,LT,NO PULP~^^^~Y~^^0^^6.25^^^ -~14065~^~1400~^~Beverages, The COCA-COLA company, Hi-C Flashin' Fruit Punch~^~BEVERAGES,THE COCA-COLA COMPANY,HI-C FLASHIN' FRUIT PUNCH~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14066~^~1400~^~Beverages, Protein powder whey based~^~BEVERAGES,PROT PDR WHEY BSD~^^^~Y~^^0^^^^^ -~14067~^~1400~^~Beverages, Protein powder soy based~^~BEVERAGES,PROT PDR SOY BSD~^^^~Y~^^0^^^^^ -~14073~^~1400~^~Beverages, ZEVIA, cola~^~BEVERAGES,ZEVIA,COLA~^^~Zevia~^^^0^^6.25^^^ -~14074~^~1400~^~Beverages, ZEVIA, cola, caffeine free~^~BEVERAGES,ZEVIA,COLA,CAFFEINE FREE~^^~Zevia~^^^0^^^^^ -~14075~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG,Gerolsteiner naturally sparkling mineral water,~^~BEVERAGE,GMBH & CO. KG,GEROLSTEINER NATURALLY SPARK MIN H2O,~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^6.25^^^ -~14079~^~1400~^~Beverages, yellow green colored citrus soft drink with caffeine~^~BEVERAGES,YEL GRN COLORED CITRUS SOFT DRK W/ CAFFEINE~^^^~Y~^^0^^6.25^^^ -~14080~^~1400~^~Beverages, rich chocolate, powder~^~BEVERAGES,RICH CHOC,PDR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~14082~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG (Gerolsteiner), naturally sparkling, mineral bottled water~^~BEV,GEROLSTEINER BRUNNEN,NATURALLY SPARKLING,MIN BTLD H2O~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^^^^ -~14083~^~1400~^~Beverages, chocolate malt, powder, prepared with fat free milk~^~BEVERAGES,CHOC MALT,PDR,PREP W/ FAT FREE MILK~^^~Nestle USA, Inc.~^^^0^^6.38^^^ -~14084~^~1400~^~Alcoholic beverage, wine, table, all~^~ALCOHOLIC BEV,WINE,TABLE,ALL~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14086~^~1400~^~Beverages, V8 SPLASH Smoothies, Peach Mango~^~BEVERAGES,V8 SPLASH SMOOTHIES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14087~^~1400~^~Beverages, V8 SPLASH Smoothies, Strawberry Banana~^~BEVERAGES,V8 SPLASH SMOOTHIES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14088~^~1400~^~Beverages, V8 SPLASH Smoothies, Tropical Colada~^~BEVERAGES,V8 SPLASH SMOOTHIES,TROPICAL COLADA~^^~Campbell Soup Co.~^^^0^^^^^ -~14090~^~1400~^~Beverages, Coconut water, ready-to-drink, unsweetened~^~BEVERAGES,COCNT H2O,RTD,UNSWTND~^^^~Y~^^0^^^^^ -~14091~^~1400~^~Beverages, almond milk, unsweetened, shelf stable~^~BEVERAGES,ALMOND MILK,UNSWTND,SHELF STABLE~^^^~Y~^^0^^^^^ -~14092~^~1400~^~Beverages, chocolate almond milk, unsweetened, shelf-stable, fortified with vitamin D2 and E~^~BEV,CHOC ALMOND MILK,UNSWTND,SHELF-STABLE,FORT W/ VIT D2 & E~^^^~Y~^^0^^6.25^^^ -~14093~^~1400~^~Beverages, The COCA-COLA company, Glaceau Vitamin Water, Revive Fruit Punch, fortified~^~BEVERAGE, COCA-COLA CO,GLACEAU VIT H2O,REVIVE FRT PUNCH,FORT~^^~The Coca-Cola Company~^~Y~^^0^^^^^ -~14095~^~1400~^~Beverages, MINUTE MAID, Lemonada, Limeade~^~BEVERAGES,MINUTE MAID,LEMONADA,LIMEADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14096~^~1400~^~Alcoholic beverage, wine, table, red~^~ALCOHOLIC BEV,WINE,TABLE,RED~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14097~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Sauvignon~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET SAUVIGNON~^^^^^0^^6.25^3.36^8.37^3.92 -~14098~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Franc~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET FRANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14099~^~1400~^~Alcoholic Beverage, wine, table, red, Pinot Noir~^~ALCOHOLIC BEV,WINE,TABLE,RED,PINOT NOIR~^^^^^0^^6.25^3.36^8.37^3.92 -~14100~^~1400~^~Alcoholic Beverage, wine, table, red, Syrah~^~ALCOHOLIC BEV,WINE,TABLE,RED,SYRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14101~^~1400~^~Alcoholic Beverage, wine, table, red, Barbera~^~ALCOHOLIC BEV,WINE,TABLE,RED,BARBERA~^^^^^0^^6.25^3.36^8.37^3.92 -~14102~^~1400~^~Alcoholic Beverage, wine, table, red, Zinfandel~^~ALCOHOLIC BEV,WINE,TABLE,RED,ZINFANDEL~^^^^^0^^6.25^3.36^8.37^3.92 -~14103~^~1400~^~Alcoholic Beverage, wine, table, red, Petite Sirah~^~ALCOHOLIC BEV,WINE,TABLE,RED,PETITE SIRAH~^^^^^0^^6.25^3.36^8.37^3.92 -~14105~^~1400~^~Alcoholic Beverage, wine, table, red, Claret~^~ALCOHOLIC BEV,WINE,TABLE,RED,CLARET~^^^^^0^^6.25^3.36^8.37^3.92 -~14106~^~1400~^~Alcoholic beverage, wine, table, white~^~ALCOHOLIC BEV,WINE,TABLE,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.92 -~14107~^~1400~^~Alcoholic Beverage, wine, table, red, Lemberger~^~ALCOHOLIC BEV,WINE,TABLE,RED,LEMBERGER~^^^^^0^^6.25^3.36^8.37^3.92 -~14108~^~1400~^~Alcoholic Beverage, wine, table, red, Sangiovese~^~ALCOHOLIC BEV,WINE,TABLE,RED,SANGIOVESE~^^^^^0^^6.25^3.36^8.37^3.92 -~14109~^~1400~^~Alcoholic Beverage, wine, table, red, Carignane~^~ALCOHOLIC BEV,WINE,TABLE,RED,CARIGNANE~^^^^^0^^6.25^3.36^8.37^3.92 -~14113~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Gris (Grigio)~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT GRIS (GRIGIO)~^^^^^0^^6.25^3.36^8.37^3.92 -~14116~^~1400~^~Alcoholic beverage, wine, table, white, Chenin Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHENIN BLANC~^^^^^0^^6.25^3.36^3.87^3.92 -~14117~^~1400~^~Alcoholic beverage, wine, table, white, Fume Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,FUME BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14119~^~1400~^~Beverages, Mixed vegetable and fruit juice drink, with added nutrients~^~BEVERAGES,MXD VEG & FRUIT JUC DRK,W/ ADDED NUTR~^~includes V-8 Splash drinks~^^~Y~^^0^^^^^ -~14120~^~1400~^~Alcoholic beverage, wine, table, white, Muller Thurgau~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MULLER THURGAU~^^^^^0^^6.25^3.36^8.37^3.92 -~14121~^~1400~^~Beverages, carbonated, club soda~^~BEVERAGES,CARB,CLUB SODA~^~soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14124~^~1400~^~Alcoholic beverage, wine, table, white, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14125~^~1400~^~Alcoholic beverage, wine, table, white, late harvest, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92 -~14126~^~1400~^~Alcoholic beverage, wine, table, white, Semillon~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SEMILLON~^^^^^0^^6.25^3.36^8.37^3.92 -~14130~^~1400~^~Carbonated beverage, cream soda~^~CARBONATED BEV,CRM SODA~^~soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14132~^~1400~^~Alcoholic beverage, wine, table, white, Riesling~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,RIESLING~^^^^^0^^6.25^3.36^8.37^3.92 -~14134~^~1400~^~Alcoholic beverage, wine, table, white, Sauvignon Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SAUVIGNON BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14135~^~1400~^~Alcoholic beverage, wine, table, white, late harvest~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST~^^^^^0^^6.25^3.36^8.37^3.92 -~14136~^~1400~^~Beverages, carbonated, ginger ale~^~BEVERAGES,CARB,GINGER ALE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14137~^~1400~^~Beverages, NESTEA, tea, black, ready-to-drink, lemon~^~BEVERAGES,NESTEA,TEA,BLACK,RTD,LEMON~^^~Nestle USA, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14138~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT BLANC~^^^^^0^^6.25^3.36^8.37^3.92 -~14140~^~1400~^~Alcoholic beverage, wine, table, white, Muscat~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MUSCAT~^^^^^0^^6.25^3.36^8.37^3.92 -~14142~^~1400~^~Beverages, carbonated, grape soda~^~BEVERAGES,CARB,GRAPE SODA~^~soft drink, pop~^^^^0^^6.25^3.36^8.37^3.87 -~14143~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, without caffeine~^~BEVERAGES,CARB,LO CAL,OTHER THAN COLA OR PEPPER,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^^4.00^9.00^4.00 -~14144~^~1400~^~Beverages, carbonated, lemon-lime soda, no caffeine~^~BEVERAGES,CARB,LEMON-LIME SODA,NO CAFFEINE~^~white soda, soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14145~^~1400~^~Beverages, carbonated, SPRITE, lemon-lime, without caffeine~^~BEVERAGES,CARB,SPRITE,LEMON-LIME,WO/ CAFFEINE~^~soft drink, white soda, pop~^~The Coca-Cola Company~^~Y~^^0^^6.25^3.36^8.37^3.87 -~14146~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, without caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT,WO/ CAF~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14147~^~1400~^~Beverages, carbonated, cola, without caffeine~^~BEVERAGES,CARB,COLA,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14148~^~1400~^~Beverages, carbonated, cola, regular~^~BEVERAGES,CARB,COLA,REG~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14149~^~1400~^~Beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners~^~BEVERAGES,CARB,RED SUGAR,COLA,CONTAINS CAFFEINE & SWEETENERS~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14150~^~1400~^~Beverages, carbonated, orange~^~BEVERAGES,CARB,ORANGE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14151~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, with aspartame, contains caffeine~^~BEV,CARB,LO CAL,OTHER THAN COLA OR PEPPER,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14152~^~1400~^~Alcoholic Beverage, wine, table, red, Burgundy~^~ALCOHOLIC BEV,WINE,TABLE,RED,BURGUNDY~^^^^^0^^6.25^3.36^8.37^3.92 -~14153~^~1400~^~Beverages, carbonated, pepper-type, contains caffeine~^~BEVERAGES,CARB,PEPPER-TYPE,CONTAINS CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14154~^~1400~^~Beverages, Energy drink, RED BULL~^~BEVERAGES,ENERGY DRK,RED BULL~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14155~^~1400~^~Beverages, carbonated, tonic water~^~BEVERAGES,CARB,TONIC H2O~^~soda, soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14156~^~1400~^~Beverages, Energy drink, RED BULL, sugar free, with added caffeine, niacin, pantothenic acid, vitamins B6 and B12~^~BEVERAGES,ENERGY DRK,RED BULL,SUGAR FREE,W/ ADDED CAFFEINE,~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14157~^~1400~^~Beverages, carbonated, root beer~^~BEVERAGES,CARB,ROOT BEER~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14158~^~1400~^~Alcoholic Beverage, wine, table, red, Gamay~^~ALCOHOLIC BEV,WINE,TABLE,RED,GAMAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14159~^~1400~^~Alcoholic Beverage, wine, table, red, Mouvedre~^~ALCOHOLIC BEV,WINE,TABLE,RED,MOUVEDRE~^^^^^0^^6.25^3.36^8.37^3.92 -~14160~^~1400~^~Alcoholic beverage, wine, table, white, Chardonnay~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHARDONNAY~^^^^^0^^6.25^3.36^8.37^3.92 -~14161~^~1400~^~Beverages, Kiwi Strawberry Juice Drink~^~BEVERAGES,KIWI STRAWBERRY JUC DRK~^^^~Y~^^0^^6.25^^^ -~14162~^~1400~^~Beverages, Apple juice drink, light, fortified with vitamin C~^~BEVERAGES,APPL JUC DRK,LT,FORT W/ VIT C~^^~Mott's INC.~^~Y~^^0^^6.25^^^ -~14163~^~1400~^~Beverages, chocolate drink, milk and soy based, ready to drink, fortified~^~BEVERAGES,CHOC DRK,MILK & SOY BSD,READY TO DRK,FORT~^^^~Y~^^0^^6.25^^^ -~14164~^~1400~^~Beverages, chocolate malt powder, prepared with 1% milk, fortified~^~BEVERAGES,CHOC MALT PDR,PREP W/ 1% MILK,FORT~^^^^^0^^6.38^^^ -~14165~^~1400~^~Beverages, carbonated, limeade, high caffeine~^~BEVERAGES,CARB,LIMEADE,HI CAFFEINE~^^^^^0^^^^^ -~14166~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-types, with sodium saccharin, contains caffeine~^~BEV,CARB,LO CAL,COLA OR PEPER-TYPE,W/ NA SACCHARIN, CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.87^8.37^3.36 -~14167~^~1400~^~Beverages, POWERADE, Zero, Mixed Berry~^~BEVERAGES,POWERADE,ZERO,MXD BERRY~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14168~^~1400~^~Beverages, Carob-flavor beverage mix, powder~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR~^^^^^0^^6.25^3.47^8.37^3.90 -~14169~^~1400~^~Beverages, Carob-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14171~^~1400~^~Beverages, coconut milk, sweetened, fortified with calcium, vitamins A, B12, D2~^~BEVERAGES,COCNT MILK,SWTND,FORT W/ CA,VITAMINS A,B12,D2~^^^~Y~^^0^^^^^ -~14173~^~1400~^~Beverages, coffee, ready to drink, vanilla, light, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,VANILLA,LT,MILK BSD,SWTND~^^~Starbucks Coffee Company~^^^0^^6.25^^^ -~14174~^~1400~^~Beverages, Lemonade fruit juice drink light, fortified with vitamin E and C~^~BEVE,LEMONADE FRUIT JUC DRK LT,FORT W/ VIT E & C~^^^~Y~^^0^^6.25^^^ -~14177~^~1400~^~Beverages, chocolate-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CHOCOLATE-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14179~^~1400~^~Beverages, coffee, ready to drink, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,MILK BSD,SWTND~^^^~Y~^^0^^6.38^^^ -~14180~^~1400~^~Beverages, coffee, brewed, breakfast blend~^~BEVERAGES,COFFEE,BREWED,BRKFST BLEND~^^^^^0^^^^^ -~14181~^~1400~^~Beverages, chocolate syrup~^~BEVERAGES,CHOC SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14182~^~1400~^~Beverages, chocolate syrup, prepared with whole milk~^~BEVERAGES,CHOC SYRUP,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14183~^~1400~^~Beverages, coffee, ready to drink, iced, mocha, milk based~^~BEVERAGES,COFFEE,READY TO DRK,ICED,MOCHA,MILK BSD~^^^^^0^^6.38^^^ -~14185~^~1400~^~Beverages, tea, Oolong, brewed~^~BEVERAGES,TEA,OOLONG,BREWED~^^^~Y~^^0^^^^^ -~14187~^~1400~^~Beverages, Clam and tomato juice, canned~^~BEVERAGES,CLAM & TOMATO JUC,CND~^^^^^0^^6.25^3.80^8.80^4.00 -~14188~^~1400~^~Beverages, tea, green, ready to drink, ginseng and honey, sweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,GINSENG & HONEY,SWTND~^^^~Y~^^0^^^^^ -~14189~^~1400~^~Beverages, The COCA-COLA company, Minute Maid, Lemonade~^~BEVERAGES,THE COCA-COLA COMPANY,MINUTE MAID,LEMONADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14190~^~1400~^~Beverages, tea, green, ready-to-drink, diet~^~BEVERAGES,TEA,GRN,RTD,DIET~^^^~Y~^^0^^^^^ -~14191~^~1400~^~Beverages, tea, green, ready-to-drink, citrus, diet, fortified with vitamin C~^~BEVERAGES,TEA,GRN,RTD,CITRUS,DIET,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14192~^~1400~^~Beverages, Cocoa mix, powder~^~BEVERAGES,COCOA MIX,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14194~^~1400~^~Beverages, Cocoa mix, powder, prepared with water~^~BEVERAGES,COCOA MIX,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14195~^~1400~^~Beverages, Cocoa mix, NESTLE, Hot Cocoa Mix Rich Chocolate With Marshmallows~^~BEV,COCOA MIX,NESTLE,HOT COCOA MIX RICH CHOC W/ MARSHMALLOWS~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14196~^~1400~^~Beverages, Cocoa mix, no sugar added, powder~^~BEVERAGES,COCOA MIX,NO SUGAR ADDED,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14197~^~1400~^~Cocoa mix, NESTLE, Rich Chocolate Hot Cocoa Mix~^~COCOA MIX,NESTLE,RICH CHOC HOT COCOA MIX~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^ -~14199~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, sweetened~^~BEVERAGES,TEA,BLACK,RTD,LEMON,SWTND~^^^~Y~^^0^^^^^ -~14201~^~1400~^~Beverages, coffee, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14202~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared, decaffeinated~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14203~^~1400~^~Beverages, coffee, instant, regular, half the caffeine~^~BEVERAGES,COFFEE,INST,REG,HALF THE CAFFEINE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14204~^~1400~^~Beverages, coffee and cocoa, instant, decaffeinated, with whitener and low calorie sweetener~^~BEVERAGES,COFFEE&COCOA,INST,DECAFFEINATED,W/WHTNR&LOCALSWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14206~^~1400~^~Beverages, tea, green, ready-to-drink, sweetened~^~BEVERAGES,TEA,GRN,RTD,SWTND~^^^~Y~^^0^^^^^ -~14207~^~1400~^~Beverages, tea, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,RTD,LEMON,DIET~^^^~Y~^^0^^^^^ -~14209~^~1400~^~Beverages, coffee, brewed, prepared with tap water~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14210~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14211~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,BLACK,RTD,LEMON,DIET~^^^~Y~^^0^^6.25^^^ -~14214~^~1400~^~Beverages, coffee, instant, regular, powder~^~BEVERAGES,COFFEE,INST,REG,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14215~^~1400~^~Beverages, coffee, instant, regular, prepared with water~^~BEVERAGES,COFFEE,INST,REG,PREP W/ H2O~^^^^^0^^0.00^^^ -~14216~^~1400~^~Beverages, aloe vera juice drink, fortified with Vitamin C~^~BEVERAGES,ALOE VERA JUC DRK,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14217~^~1400~^~Beverages, OCEAN SPRAY, Cran Grape~^~BEVERAGES,OCEAN SPRAY,CRAN GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14218~^~1400~^~Beverages, coffee, instant, decaffeinated, powder~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~14219~^~1400~^~Beverages, coffee, instant, decaffeinated, prepared with water~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PREP W/ H2O~^^^^^0^^0.00^^^ -~14220~^~1400~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14221~^~1400~^~Beverages, OCEAN SPRAY, Diet Cranberry Juice~^~BEVERAGES,OCEAN SPRAY,DIET CRANBERRY JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14222~^~1400~^~Beverages, coffee, instant, with chicory~^~BEVERAGES,COFFEE,INST,W/ CHICORY~^^^^^0^^6.25^3.20^8.37^4.10 -~14223~^~1400~^~Beverages, coffee, instant, chicory~^~BEVERAGES,COFFEE,INST,CHICORY~^^^^^0^^^^^ -~14224~^~1400~^~Beverages, coffee, instant, mocha, sweetened~^~BEVERAGES,COFFEE,INST,MOCHA,SWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14226~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry and Raspberry Flavored Juice~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY & RASPBERRY FLAV JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14227~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Strawberry Flavored Juice Drink~^~BEVERAGES,OCEAN SPRAYWHITE CRANBERRY STRAWBERRY FLAV JUC DRK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14231~^~1400~^~Beverages, KRAFT, coffee, instant, French Vanilla Cafe~^~BEVERAGES,KRAFT,COFFEE,INST,FRENCH VANILLA CAFE~^^~Kraft Foods, Inc.~^^^0^^^^^ -~14233~^~1400~^~Beverages, OCEAN SPRAY, Cran Raspberry Juice Drink~^~BEVERAGEES, OCEAN SPRAY, CRAN RASPBERRY JUICE DRINK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14234~^~1400~^~Beverages, OCEAN SPRAY, Cran Lemonade~^~BEVERAGES,OCEAN SPRAY,CRAN LEMONADE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14235~^~1400~^~Beverages, OCEAN SPRAY, Diet Cran Cherry~^~BEV, OCEAN SPRAY, CRAN CHERRY DIET~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14236~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14237~^~1400~^~Beverages, coffee substitute, cereal grain beverage, prepared with water~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PREP W/ H2O~^^^~Y~^^0^^^^^ -~14238~^~1400~^~Beverages, cranberry-apple juice drink, bottled~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14239~^~1400~^~Alcoholic beverage, malt beer, hard lemonade~^~ALCOHOLIC BEV,MALT BEER,HARD LEMONADE~^^^~Y~^^0^^6.25^^^ -~14240~^~1400~^~Beverages, cranberry-apricot juice drink, bottled~^~BEVERAGES,CRANBERRY-APRICOT JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14241~^~1400~^~Beverages, cranberry-grape juice drink, bottled~^~BEVERAGES,CRANBERRY-GRAPE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90 -~14242~^~1400~^~Cranberry juice cocktail, bottled~^~CRANBERRY JUC COCKTAIL,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14243~^~1400~^~Cranberry juice cocktail, bottled, low calorie, with calcium, saccharin and corn sweetener~^~CRANBERRY JUC COCKTAIL,BTLD,LO CAL,W/CA,SACCHARIN&CORN SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14245~^~1400~^~Beverages, Eggnog-flavor mix, powder, prepared with whole milk~^~BEVERAGES,EGGNOG-FLAVOR MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14246~^~1400~^~Beverages, tea, green, instant, decaffeinated, lemon, unsweetened, fortified with vitamin C~^~BEVERAGES,TEA,GRN,INST,DECAFFEI,LEMON,UNSWTND,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^ -~14247~^~1400~^~Beverages, tea, black, ready to drink~^~BEVERAGES,TEA,BLACK,READY TO DRK~^^~McDonald's Corporation~^~Y~^^0^^6.25^^^ -~14248~^~1400~^~Alcoholic beverage, beer, light, higher alcohol~^~ALCOHOLIC BEV,BEER,LT,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14250~^~1400~^~Beverages, AMBER, hard cider~^~BEVERAGES,AMBER,HARD CIDER~^^^~Y~^^0^^6.25^^^ -~14251~^~1400~^~Alcoholic beverages, beer, higher alcohol~^~ALCOHOLIC BEVERAGES,BEER,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^ -~14252~^~1400~^~Beverages, Malt liquor beverage~^~BEVERAGES,MALT LIQUOR BEV~^^^~Y~^^0^^6.25^^^ -~14253~^~1400~^~Alcoholic beverages, wine, rose~^~ALCOHOLIC BEVERAGES,WINE,ROSE~^^^~Y~^^0^^6.25^^^ -~14255~^~1400~^~Beverages, OCEAN SPRAY, Cran Pomegranate~^~BEVERAGES,OCEAN SPRAY,CRAN POMEGRANATE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14256~^~1400~^~Beverages, OCEAN SPRAY, Cran Cherry~^~BEVERAGES,OCEAN SPRAY,CRAN CHERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14257~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14258~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14259~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry, Concord Grape~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY,CONCORD GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14260~^~1400~^~Beverages, tea, green, brewed, decaffeinated~^~BEVERAGES,TEA,GRN,BREWED,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14261~^~1400~^~Beverages, tea, green, ready to drink, unsweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,UNSWTND~^^^~Y~^^0^^6.25^^^ -~14262~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14263~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate, prepared with water~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14264~^~1400~^~Beverages, fruit punch drink, without added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,WO/ ADDED NUTR,CND~^^^~Y~^^0^^^^^ -~14267~^~1400~^~Beverages, Fruit punch drink, with added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,W/ ADDED NUTR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14268~^~1400~^~Beverages, Fruit punch drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14269~^~1400~^~Beverages, Fruit punch drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14270~^~1400~^~Beverages, coffee, instant, vanilla, sweetened, decaffeinated, with non dairy creamer~^~BEVERAGES,COFFEE,INST,VANILA,SWTND,DECAFF,W/ NON DAIRY CREAM~^^^~Y~^^0^^6.25^^^ -~14276~^~1400~^~Beverages, Tropical Punch, ready-to-drink~^~BEVERAGES,TROPICAL PUNCH,RTD~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^ -~14277~^~1400~^~Beverages, grape drink, canned~^~BEVERAGES,GRAPE DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14278~^~1400~^~Beverages, tea, green, brewed, regular~^~BEVERAGES,TEA,GRN,BREWED,REG~^^^~Y~^^0^^^^^ -~14279~^~1400~^~Beverages, tea, black, ready-to-drink, peach, diet~^~BEVERAGES,TEA,BLACK,RTD,PEACH,DIET~^^^~Y~^^0^^^^^ -~14280~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated, diet~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED,DIET~^^^~Y~^^0^^6.25^^^ -~14281~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED~^^^~Y~^^0^^6.25^^^ -~14282~^~1400~^~Beverages, grape juice drink, canned~^~BEVERAGES,GRAPE JUC DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14284~^~1400~^~Beverages, Cranberry juice cocktail~^~BEVERAGES,CRANBERRY JUC COCKTAIL~^^^^^0^^^^^ -~14285~^~1400~^~Beverages, OCEAN SPRAY, Ruby Red cranberry~^~BEVERAGES,OCEAN SPRAY,RUBY RED CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^ -~14286~^~1400~^~Beverages, MOTTS, Apple juice light, fortified with vitamin C~^~BEVERAGES,MOTTS,APPL JUC LT,FORT W/ VIT C~^^~Mott's INC.~^^^0^^6.25^^^ -~14287~^~1400~^~Beverages, Lemonade, powder~^~BEVERAGES,LEMONADE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14288~^~1400~^~Lemonade, powder, prepared with water~^~LEMONADE,PDR,PREP W/H2O~^^^^^0^^0.00^^^ -~14291~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, peach, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,PEACH,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14292~^~1400~^~Lemonade, frozen concentrate, white~^~LEMONADE,FRZ CONC,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14293~^~1400~^~Lemonade, frozen concentrate, white, prepared with water~^~LEMONADE,FRZ CONC,WHITE,PREP W/H2O~^^^^^0^^0.00^^^ -~14294~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, lemon, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,LEMON,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^ -~14296~^~1400~^~Beverages, lemonade-flavor drink, powder~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~14297~^~1400~^~Beverages, lemonade-flavor drink, powder, prepared with water~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR,PREP W/ H2O~^^^^^0^^0.00^^^ -~14303~^~1400~^~Limeade, frozen concentrate, prepared with water~^~LIMEADE,FRZ CONC,PREP W/H2O~^^^^^0^^^^^ -~14305~^~1400~^~Malt beverage, includes non-alcoholic beer~^~MALT BEV,INCL NON-ALCOHOLIC BEER~^^^~Y~^^0^^6.25^3.87^8.37^4.12 -~14309~^~1400~^~Beverages, OVALTINE, Classic Malt powder~^~BEVERAGES,OVALTINE,CLASSIC MALT PDR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14310~^~1400~^~Beverages, Malted drink mix, natural, with added nutrients, powder, prepared with whole milk~^~BEVERA,MALTED DRK MIX,NAT,W/ ADD NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14311~^~1400~^~Beverages, Malted drink mix, natural, powder, dairy based.~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,DAIRY BASED.~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14312~^~1400~^~Beverages, Malted drink mix, natural, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14315~^~1400~^~Beverages, OVALTINE, chocolate malt powder~^~BEVERAGES,OVALTINE,CHOC MALT PDR~^^~Ovaltine~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14316~^~1400~^~Beverages, Malted drink mix, chocolate, with added nutrients, powder, prepared with whole milk~^~BEVERAG,MALT DRK MIX,CHOC,W/ ADDED NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14317~^~1400~^~Beverages, malted drink mix, chocolate, powder~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14318~^~1400~^~Beverages, Malted drink mix, chocolate, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14323~^~1400~^~Beverages, orange drink, canned, with added vitamin C~^~BEVERAGES,ORANGE DRK,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14327~^~1400~^~Beverages, orange and apricot juice drink, canned~^~BEVERAGES,ORANGE & APRICOT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14334~^~1400~^~Beverages, pineapple and grapefruit juice drink, canned~^~BEVERAGES,PNAPPL & GRAPEFRUIT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14341~^~1400~^~Beverages, pineapple and orange juice drink, canned~^~BEVERAGES,PNAPPL & ORANGE JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90 -~14347~^~1400~^~Shake, fast food, vanilla~^~SHAKE,FAST FOOD,VANILLA~^^^~Y~^^0^^6.38^4.27^8.80^3.90 -~14350~^~1400~^~Strawberry-flavor beverage mix, powder~^~STRAWBERRY-FLAVOR BEV MIX,PDR~^^^~Y~^^0^^6.25^3.90^8.37^3.90 -~14351~^~1400~^~Beverages, Strawberry-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,STRAWBERRY-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14352~^~1400~^~Beverages, tea, black, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^^^^ -~14353~^~1400~^~Beverages, tea, instant, decaffeinated, unsweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14355~^~1400~^~Beverages, tea, black, brewed, prepared with tap water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14356~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, diet~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,DIET~^^^~Y~^^0^^6.25^2.44^8.37^3.80 -~14357~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, sweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,SWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~14366~^~1400~^~Beverages, tea, instant, unsweetened, powder~^~BEVERAGES,TEA,INST,UNSWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14367~^~1400~^~Beverages, tea, instant, unsweetened, prepared with water~^~BEVERAGES,TEA,INST,UNSWTND,PREP W/ H2O~^^^~Y~^^0^^0.00^^^ -~14368~^~1400~^~Beverages, tea, instant, lemon, unsweetened~^~BEVERAGES,TEA,INST,LEMON,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14370~^~1400~^~Beverages, tea, instant, lemon, sweetened, powder~^~BEVERAGES,TEA,INST,LEMON,SWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14371~^~1400~^~Beverages, tea, instant, lemon, sweetened, prepared with water~^~BEVERAGES,TEA,INST,LEMON,SWTND,PREP W/ H2O~^^^^^0^^0.00^^^ -~14375~^~1400~^~Beverages, tea, instant, sweetened with sodium saccharin, lemon-flavored, powder~^~BEVERAGES,TEA,INST,SWTND W/ NA SACCHARIN,LEMON-FLAVORED,PDR~^^^^^0^^6.25^2.44^8.37^3.80 -~14376~^~1400~^~Beverages, tea, instant, lemon, diet~^~BEVERAGES,TEA,INST,LEMON,DIET~^^^~Y~^^0^^0.00^^^ -~14381~^~1400~^~Beverages, tea, herb, other than chamomile, brewed~^~BEVERAGES,TEA,HERB,OTHER THAN CHAMOMILE,BREWED~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14384~^~1400~^~Beverages, water, bottled, PERRIER~^~BEVERAGES,H2O,BTLD,PERRIER~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14385~^~1400~^~Beverages, water, bottled, POLAND SPRING~^~BEVERAGES,H2O,BTLD,POLAND SPRING~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^ -~14390~^~1400~^~Beverages, cocoa mix, with aspartame, powder, prepared with water~^~BEVERAGES,COCOA MIX,W/ ASPRT,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^ -~14400~^~1400~^~Beverages, carbonated, cola, fast-food cola~^~BEVERAGES,CARB,COLA,FAST-FOOD COLA~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14405~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14406~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^ -~14407~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~14408~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder, prepared with water~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR,PREP W/ H2O~^^^^^0^^^^^ -~14409~^~1400~^~Beverages, Orange-flavor drink, breakfast type, low calorie, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,LO CAL,PDR~^^^^^0^^^^^ -~14411~^~1400~^~Beverages, water, tap, drinking~^~BEVERAGES,H2O,TAP,DRINKING~^^^~Y~^^0^^^^^ -~14412~^~1400~^~Beverages, water, tap, well~^~BEVERAGES,H2O,TAP,WELL~^^^^^0^^6.25^0.00^0.00^0.00 -~14414~^~1400~^~Alcoholic beverage, liqueur, coffee, 53 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,53 PROOF~^^^~Y~^^0^^6.25^3.47^8.37^3.90 -~14415~^~1400~^~Alcoholic beverage, liqueur, coffee with cream, 34 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE W/ CRM,34 PROOF~^^^~Y~^^0^^6.38^4.20^8.80^3.90 -~14416~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, contains caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87 -~14421~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder, prepared with whole milk~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^ -~14422~^~1400~^~Beverages, Dairy drink mix, chocolate, reduced calorie, with low-calorie sweeteners, powder~^~BEV,DAIRY DRK MIX,CHOC,RED CAL,W/ LOW-CAL SWEETENERS,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14423~^~1400~^~Beverages, dairy drink mix, chocolate, reduced calorie, with aspartame, powder, prepared with water and ice~^~BEVE,DARY DRK MIX,CHC,RED CAL,W/ ASPRT,PDR,PREP W/ H2O & ICE~^^^^^0^^0.00^^^ -~14424~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate.~^~BEV,ORANGE-FLAVO DRK,BRKFST TYPE,W/ PULP,FRZ CON. NOT MANUF.~^^^^^0^^6.25^3.36^8.37^3.90 -~14425~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate, prepared with water~^~BEVE,ORANGE-FLAV DRK,BRKFST TYPE,W/ PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14426~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate~^~BEVERAGES,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14427~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate, prepared with water~^~BEV,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^ -~14428~^~1400~^~Beverages, shake, fast food, strawberry~^~BEVERAGES,SHAKE,FAST FD,STRAWBERRY~^^^^^0^^6.38^4.27^8.80^3.90 -~14429~^~1400~^~Beverages, water, tap, municipal~^~BEVERAGES,H2O,TAP,MUNICIPAL~^^^~Y~^^0^^6.25^^^ -~14430~^~1400~^~Cranberry juice cocktail, frozen concentrate~^~CRANBERRY JUC COCKTAIL,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90 -~14431~^~1400~^~Cranberry juice cocktail, frozen concentrate, prepared with water~^~CRANBERRY JUC COCKTAIL,FRZ CONC,PREP W/ H2O~^^^^^0^^^^^ -~14432~^~1400~^~Beverages, water, bottled, non-carbonated, DANNON~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON~^^~The Dannon Company, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14433~^~1400~^~Beverages, water, bottled, non-carbonated, PEPSI, AQUAFINA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,PEPSI,AQUAFINA~^^~Pepsi-Cola North America~^^^0^^6.25^4.00^9.00^4.00 -~14434~^~1400~^~Beverages, The COCA-COLA company, DASANI, water, bottled, non-carbonated~^~BEVERAGES,THE COCA-COLA COMP,DASANI,H2O,BTLD,NON-CARBONATED~^^~The Coca-Cola Company~^^^0^^6.25^4.00^9.00^4.00 -~14436~^~1400~^~Beverages, orange breakfast drink, ready-to-drink, with added nutrients~^~BEVERAGES,ORANGE BRKFST DRK,RTD,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14437~^~1400~^~Beverages, water, bottled, non-carbonated, CALISTOGA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CALISTOGA~^^~Nestle Waters North America Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14438~^~1400~^~Beverages, water, bottled, non-carbonated, CRYSTAL GEYSER~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CRYSTAL GEYSER~^^~Crystal Geyser Alpine Spring Water~^^^0^^6.25^4.00^9.00^4.00 -~14439~^~1400~^~Water, bottled, non-carbonated, NAYA~^~WATER,BTLD,NON-CARBONATED,NAYA~^^~NAYA Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14440~^~1400~^~Beverages, DANNON, water, bottled, non-carbonated, with Fluoride~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON FLUORIDE TO GO~^^~DANNON Fluoride To Go~^^^0^^6.25^4.00^9.00^4.00 -~14450~^~1400~^~Beverages, drink mix, QUAKER OATS, GATORADE, orange flavor, powder~^~BEVERAGES,DRK MIX,QUAKER OATS,GATORADE,ORANGE FLAVOR,PDR~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^^^0^^6.25^4.00^9.00^4.00 -~14460~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade, G performance O 2, ready-to-drink.~^~BEVERAGES,PEPSICO QUAKER,GATORADE,G PERFORMANCE O 2,RTD.~^~thirst quencher, Gatorade G02 Perform~^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14461~^~1400~^~Beverages, COCA-COLA, POWERADE, lemon-lime flavored, ready-to-drink~^~BEVERAGES,COCA-COLA,POWERADE,LEMON-LIME FLAV,RTD~^~thirst quencher~^~The Coca-Cola Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~14462~^~1400~^~Beverages, Propel Zero, fruit-flavored, non-carbonated~^~BEVERAGES,PROPEL ZERO,FRUIT-FLAVORED,NON-CARBONATED~^~thirst quencher, sport drink~^^~Y~^^0^^^^^ -~14475~^~1400~^~Beverages, ARIZONA, tea, ready-to-drink, lemon~^~BEVERAGES,ARIZONA,TEA,RTD,LEMON~^^~Arizona Beverage Co.~^^^0^^6.25^4.00^9.00^4.00 -~14476~^~1400~^~Beverages, LIPTON BRISK, tea, black, ready-to-drink, lemon~^~BEVERAGES,LIPTON BRISK,TEA,BLACK,RTD,LEMON~^^~Lipton~^^^0^^6.25^4.00^9.00^4.00 -~14530~^~1400~^~Whiskey sour mix, bottled, with added potassium and sodium~^~WHISKEY SOUR MIX,BTLD,W/ K&NA~^^^^^0^^6.25^3.40^8.40^3.90 -~14531~^~1400~^~Alcoholic beverage, whiskey sour~^~ALCOHOLIC BEV,WHISKEY SOUR~^^^^^0^^0.00^^^ -~14532~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 94 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 94 PROOF~^^^^^0^^6.25^^^4.12 -~14533~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 100 proof~^~ALCOHOLIC BEV DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 100PROOF~^^^^^0^^6.25^^^4.12 -~14534~^~1400~^~Alcoholic beverage, liqueur, coffee, 63 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,63 PROOF~^^^^^0^^6.25^3.47^8.37^3.90 -~14536~^~1400~^~Alcoholic beverage, wine, dessert, dry~^~ALCOHOLIC BEV,WINE,DSSRT,DRY~^^^^^0^^6.25^3.36^8.37^3.92 -~14537~^~1400~^~Carbonated beverage, low calorie, other than cola or pepper, with sodium saccharin, without caffeine~^~CARBONATED BEV,LOCAL,OTHR THAN COLA OR PEP,W/ NA SAC,WO/ CAF~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87 -~14538~^~1400~^~Beverages, Cocoa mix, low calorie, powder, with added calcium, phosphorus, aspartame, without added sodium or vitamin A~^~BEVE,COCA MIX,LO CAL,PDR,W/ ADD CA,P,ASPRT,WO/ ADD NA, VIT A~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14541~^~1400~^~Beverages, fruit punch-flavor drink, powder, without added sodium, prepared with water~^~BEVERAGE,FRUIT PUNCH-FLAVOR DRK,PDR,WO/ ADDED NA,PREP W/ H2O~^^^^^0^^0.00^^^ -~14542~^~1400~^~Lemonade, frozen concentrate, pink~^~LEMONADE,FRZ CONC,PINK~^^^^^0^^6.25^3.36^8.37^3.80 -~14543~^~1400~^~Beverages, lemonade, frozen concentrate, pink, prepared with water~^~BEVERAGES,LEMONADE,FRZ CONC,PINK,PREP W/ H2O~^^^^^0^^0.00^^^ -~14544~^~1400~^~Beverages, tea, black, brewed, prepared with distilled water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ DISTILLED H2O~^^^^^0^^6.25^2.44^8.37^3.57 -~14545~^~1400~^~Beverages, tea, herb, brewed, chamomile~^~BEVERAGES,TEA,HERB,BREWED,CHAMOMILE~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~14548~^~1400~^~Beverages, tea, instant, lemon, with added ascorbic acid~^~BEVERAGES,TEA,INST,LEMON,W/ ADDED VIT C~^^^^^0^^6.25^2.44^8.37^3.90 -~14550~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 86 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 86 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14551~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 90 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 90 PROOF~^^^~Y~^^0^^6.25^^^4.12 -~14552~^~1400~^~Carbonated beverage, chocolate-flavored soda~^~CARBONATED BEV,CHOCOLATE-FLAVORED SODA~^~soft drink, pop~^^~Y~^^0^^^^^ -~14553~^~1400~^~Beverages, Wine, non-alcoholic~^~BEVERAGES,WINE,NON-ALCOHOLIC~^^^~Y~^^0^^^^^ -~14555~^~1400~^~Water, bottled, generic~^~WATER,BTLD,GENERIC~^^^~Y~^^0^^^^^ -~14557~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients~^~BEVERAGE,CHOCOLATE-FLAVOR BEV MIX FOR MILK,PDR,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~14558~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients, prepared with whole milk~^~BEV,CHOCO-FLA BEV MIX , MLK,PDR,W/ ADD NUTR,PREP W/ WHL MILK~^^^^^0^^^^^ -~14559~^~1400~^~Beverages, water, bottled, non-carbonated, EVIAN~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,EVIAN~^^~S.A. Evian Co.~^^^0^^6.25^0.00^0.00^0.00 -~14599~^~1400~^~Beverages, Powerade Zero Ion4, calorie-free, assorted flavors~^~BEVERAGES,POWERADE ZERO ION4,CALORIE-FREE,ASSORTED FLAVORS~^^^~Y~^^0^^^^^ -~14601~^~1400~^~Beverages, WENDY'S, tea, ready-to-drink, unsweetened~^~BEVERAGES,WENDY'S,TEA,RTD,UNSWTND~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~14602~^~1400~^~Alcoholic Beverage, wine, table, red, Merlot~^~ALCOHOLIC BEV,WINE,TABLE,RED,MERLOT~^^^^^0^^6.25^3.36^8.37^3.92 -~14604~^~1400~^~Water, non-carbonated, bottles, natural fruit flavors, sweetened with low calorie sweetener~^~WATER,NON-CARBONATED,FRUIT FLAVORS,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^^^^ -~14605~^~1400~^~Beverages, Water with added vitamins and minerals, bottles, sweetened, assorted fruit flavors~^~BEV,H2O W/ ADDED VIT & MIN,BOTTLES,SWTND,AST FRUIT FLAVORS~^^^~Y~^^0^^^^^ -~14607~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14608~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14609~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14610~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14611~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14612~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^ -~14613~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Guava Passion Fruit~^~BEVERAGES,V8 SPLASH JUC DRINKS,GUAVA PASSION FRUIT~^^~Campbell Soup Co.~^^^0^^^^^ -~14614~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Mango Peach~^~BEVERAGES,V8 SPLASH JUC DRINKS,MANGO PEACH~^^~Campbell Soup Co.~^^^0^^^^^ -~14615~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orange Pineapple~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORANGE PNAPPL~^^~Campbell Soup Co.~^^^0^^^^^ -~14616~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orchard Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORCHARD BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14617~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Banana~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14618~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^ -~14619~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^ -~14620~^~1400~^~Beverages, V8 V-FUSION Juices, Peach Mango~^~BEVERAGES,V8 V-FUSION JUICES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^ -~14621~^~1400~^~Beverages, V8 V-FUSION Juices, Strawberry Banana~^~BEVERAGES,V8 V-FUSION JUICES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^ -~14622~^~1400~^~Beverages, V8 V-FUSION Juices, Tropical~^~BEVERAGES,V8 V-FUSION JUICES,TROPICAL~^^~Campbell Soup Co.~^^^0^^^^^ -~14623~^~1400~^~Beverages, V8 V- FUSION Juices, Acai Berry~^~BEVERAGES,V8 V- FUSION JUICES,ACAI BERRY~^^~Campbell Soup Co.~^^^0^^^^^ -~14625~^~1400~^~Beverages, Energy drink, AMP~^~BEVERAGES,ENERGY DRK,AMP~^^~Pepsi-Cola North America~^~Y~^^0^^^^^ -~14626~^~1400~^~Beverages, Energy drink, FULL THROTTLE~^~BEVERAGES,ENERGY DRK,FULL THROTTLE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14627~^~1400~^~Beverages, Energy Drink, Monster, fortified with vitamins C, B2, B3, B6, B12~^~BEVERAGES,ENERGY DRK,MONSTER,FORT W/ VITAMINS C,B2,B3,B6,B12~^^~Monster energy company~^~Y~^^0^^6.25^^^ -~14628~^~1400~^~Beverages, Energy drink, AMP, sugar free~^~BEVERAGES,ENERGY DRK,AMP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14629~^~1400~^~Beverages, Energy drink, ROCKSTAR~^~BEVERAGES,ENERGY DRK,ROCKSTAR~^^~Rockstar, Inc.~^~Y~^^0^^^^^ -~14630~^~1400~^~Beverages, Energy drink, ROCKSTAR, sugar free~^~BEVERAGES,ENERGY DRK,ROCKSTAR,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~14632~^~1400~^~Beverages, Meal supplement drink, canned, peanut flavor~^~BEVERAGES,MEAL SUPP DRK,CND,PNUT FLAVOR~^^^^^0^^6.25^^^ -~14633~^~1400~^~Beverages, Vegetable and fruit juice drink, reduced calorie, with low-calorie sweetener, added vitamin C~^~BEVER,VEG & FRUIT JUC DRK,RED CAL,W/ LOW-CAL SWTNR,ADD VIT C~^^^~Y~^^0^^^^^ -~14634~^~1400~^~Beverages, milk beverage, reduced fat, flavored and sweetened, Ready-to-drink, added calcium, vitamin A and vitamin D~^~BEV,MILK BEV,RED FAT,FLAV & SWTND,RTD,ADDED CA,VIT A & D~^~Nesquik ready-to-drink~^^~Y~^^0^^6.25^^^ -~14635~^~1400~^~Beverages, vegetable and fruit juice blend, 100% juice, with added vitamins A, C, E~^~BEVERAGES,VEG & FRUIT JUC BLEND,W/ ADDED VITAMINS A,C,E~^~includes V8 V-fusion juices~^^~Y~^^0^^^^^ -~14636~^~1400~^~Beverages, fruit juice drink, reduced sugar, with vitamin E added~^~BEVERAGES,FRUIT JUC DRK,RED SUGAR,W/ VITAMIN E ADDED~^~includes Capri Sun~^^~Y~^^0^^^3.36^8.37^3.80 -~14637~^~1400~^~Water, with corn syrup and/or sugar and low calorie sweetener, fruit flavored~^~WATER,W/ CORN SYRUP AND/OR SUGAR & LO CAL SWTNR,FRUIT FLAV~^~includes Caprisun Roarin' Waters~^^~Y~^^0^^6.25^^^ -~14638~^~1400~^~Beverages, Horchata, as served in restaurant~^~BEVERAGES,HORCHATA,AS SERVED IN RESTAURANT~^~Latino food~^^^^0^^^^^ -~14639~^~1400~^~Beverages, rice milk, unsweetened~^~BEVERAGES,RICE MILK,UNSWTND~^~ricemilk, rice milk~^^~Y~^^0^^^^^ -~14640~^~1400~^~Beverages, Energy drink, VAULT, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14641~^~1400~^~Beverages, Energy drink, VAULT Zero, sugar-free, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT ZERO,SUGAR-FREE,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^ -~14644~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade G2, low calorie~^~BEVERAGES,PEPSICO QUAKER,GATORADE G2,LO CAL~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^^^^ -~14645~^~1400~^~Beverages, Fruit flavored drink, less than 3% juice, not fortified with vitamin C~^~BEVERAGES,FRUIT FLAV DRK,LESS THAN 3% JUC,NOT FORT W/ VIT C~^^^~Y~^^0^^^^^ -~14646~^~1400~^~Beverages, Fruit flavored drink containing less than 3% fruit juice, with high vitamin C~^~BEV,FRUIT FLAV DRK CONTAINING , 3% FRUIT JUC,W/ HI VIT C~^^^~Y~^^0^^^^^ -~14647~^~1400~^~Beverages, Fruit flavored drink, reduced sugar, greater than 3% fruit juice, high vitamin C, added calcium~^~BEV,FRUIT FLAV DRK,RED SUGAR, > 3% FRUIT JUC,HI VIT C,ADD CA~^^^^^0^^^^^ -~14648~^~1400~^~Beverages, fruit juice drink, greater than 3% fruit juice, high vitamin C and added thiamin~^~BEV,FRUIT JUC DRK, MORE 3% FRUIT JUC,HI VIT C & ADD THIAMIN~^^^~Y~^^0^^^^^ -~14649~^~1400~^~Beverages, tea, hibiscus, brewed~^~BEVERAGES,TEA,HIBISCUS,BREWED~^^^~Y~^^0^^^^^ -~14651~^~1400~^~Beverages, fruit juice drink, greater than 3% juice, high vitamin C~^~BEVERAGES,FRUIT JUC DRK,GREATER THAN 3% JUC,HI VIT C~^^^~Y~^^0^^^^^ -~14654~^~1400~^~Beverages, nutritional shake mix, high protein, powder~^~BEVERAGES,NUTRITIONAL SHAKE MIX,HI PROT,PDR~^^^~Y~^^0^^^^^ -~15001~^~1500~^~Fish, anchovy, european, raw~^~ANCHOVY,EUROPEAN,RAW~^^^^^0^~Engraulis encrasicholus (L.)~^6.25^4.27^9.02^3.87 -~15002~^~1500~^~Fish, anchovy, european, canned in oil, drained solids~^~ANCHOVY,EUROPEAN,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^8.92^3.87 -~15003~^~1500~^~Fish, bass, fresh water, mixed species, raw~^~BASS,FRSH H2O,MXD SP,RAW~^^^^^0^~Percichthyidae and Centrarchidae~^6.25^4.27^9.02^3.87 -~15004~^~1500~^~Fish, bass, striped, raw~^~BASS,STRIPED,RAW~^^^^^0^~Morone saxatilis (Walbaum)~^6.25^4.27^9.02^3.87 -~15005~^~1500~^~Fish, bluefish, raw~^~BLUEFISH,RAW~^^^^^0^~Pomatomus saltatrix (L.)~^6.25^4.27^9.02^3.87 -~15006~^~1500~^~Fish, burbot, raw~^~BURBOT,RAW~^^^^^0^~Lota lota (L.)~^6.25^4.27^9.02^3.87 -~15007~^~1500~^~Fish, butterfish, raw~^~BUTTERFISH,RAW~^^^^^0^~Peprilus triacanthus (Peck)~^6.25^4.27^9.02^3.87 -~15008~^~1500~^~Fish, carp, raw~^~CARP,RAW~^^^~Y~^^0^~Cyprinus carpio (L.)~^6.25^4.27^9.02^3.87 -~15009~^~1500~^~Fish, carp, cooked, dry heat~^~CARP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15010~^~1500~^~Fish, catfish, channel, wild, raw~^~CATFISH,CHANNEL,WILD,RAW~^^^^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15011~^~1500~^~Fish, catfish, channel, cooked, breaded and fried~^~CATFISH,CHANNEL,CKD,BREADED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15012~^~1500~^~Fish, caviar, black and red, granular~^~CAVIAR,BLACK&RED,GRANULAR~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15013~^~1500~^~Fish, cisco, raw~^~CISCO,RAW~^^^^^0^~Coregonus artedi Lesueur~^6.25^4.27^9.02^3.87 -~15014~^~1500~^~Fish, cisco, smoked~^~CISCO,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15015~^~1500~^~Fish, cod, Atlantic, raw~^~COD,ATLANTIC,RAW~^^^~Y~^^0^~Gadus morhua (L.)~^6.25^4.27^9.02^3.87 -~15016~^~1500~^~Fish, cod, Atlantic, cooked, dry heat~^~COD,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15017~^~1500~^~Fish, cod, Atlantic, canned, solids and liquid~^~COD,ATLANTIC,CND,SOL&LIQ~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15018~^~1500~^~Fish, cod, Atlantic, dried and salted~^~COD,ATLANTIC,DRIED&SALTED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15019~^~1500~^~Fish, cod, Pacific, raw (may have been previously frozen)~^~FISH,COD,PACIFIC,RAW (MAY HAVE BEEN PREVIOUSLY FROZEN)~^^^~Y~^^0^~Gadus macrocephalus Tilesius~^6.25^4.27^9.02^3.87 -~15020~^~1500~^~Fish, croaker, Atlantic, raw~^~CROAKER,ATLANTIC,RAW~^^^~Y~^^0^~Micropogonias undulatus (L.)~^6.25^4.27^9.02^3.87 -~15021~^~1500~^~Fish, croaker, Atlantic, cooked, breaded and fried~^~CROAKER,ATLANTIC,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^9.02^3.87 -~15022~^~1500~^~Fish, cusk, raw~^~CUSK,RAW~^^^^^0^~Brosme brosme (Muller)~^6.25^4.27^9.02^3.87 -~15023~^~1500~^~Fish, mahimahi, raw~^~FISH,MAHIMAHI,RAW~^^^^^0^~Coryphaena hippurus (L.)~^6.25^4.27^9.02^3.87 -~15024~^~1500~^~Fish, drum, freshwater, raw~^~DRUM,FRESHWATER,RAW~^^^^^0^~Aplodinotus grunniens Rafinesque~^6.25^4.27^9.02^3.87 -~15025~^~1500~^~Fish, eel, mixed species, raw~^~EEL,MIXED SPECIES,RAW~^^^~Y~^^0^~Anguilla spp.~^6.25^4.27^9.02^3.87 -~15026~^~1500~^~Fish, eel, mixed species, cooked, dry heat~^~EEL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15027~^~1500~^~Fish, fish sticks, frozen, prepared~^~FISH,FISH STKS,FRZ,PREP~^^^~Y~^^0^^6.10^4.20^8.94^3.97 -~15028~^~1500~^~Fish, flatfish (flounder and sole species), raw~^~FLATFISH (FLOUNDER&SOLE SP),RAW~^^^~Y~^^0^~Bothidae and Pleuronectidae~^6.25^4.27^9.02^3.87 -~15029~^~1500~^~Fish, flatfish (flounder and sole species), cooked, dry heat~^~FLATFISH (FLOUNDER&SOLE SP),CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15030~^~1500~^~Fish, gefiltefish, commercial, sweet recipe~^~GEFILTEFISH,COMM,SWT RECIPE~^^^^^0^^6.25^4.27^9.02^4.00 -~15031~^~1500~^~Fish, grouper, mixed species, raw~^~GROUPER,MIXED SPECIES,RAW~^^^^^0^~Epinephelus spp.~^6.25^4.27^9.02^3.87 -~15032~^~1500~^~Fish, grouper, mixed species, cooked, dry heat~^~GROUPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15033~^~1500~^~Fish, haddock, raw~^~HADDOCK,RAW~^^^~Y~^^0^~Melanogrammus aeglefinus (L.)~^6.25^4.27^9.02^3.87 -~15034~^~1500~^~Fish, haddock, cooked, dry heat~^~HADDOCK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15035~^~1500~^~Fish, haddock, smoked~^~HADDOCK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15036~^~1500~^~Fish, halibut, Atlantic and Pacific, raw~^~HALIBUT,ATLANTIC&PACIFIC,RAW~^^^~Y~^^0^~Hippoglossus hippoglossus (L.) and H. stenolepis Schmidt~^6.25^4.27^9.02^3.87 -~15037~^~1500~^~Fish, halibut, Atlantic and Pacific, cooked, dry heat~^~HALIBUT,ATLANTIC&PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15038~^~1500~^~Fish, halibut, Greenland, raw~^~HALIBUT,GREENLAND,RAW~^^^~Y~^^0^~Reinhardtius hippoglossoides (Walbaum)~^6.25^4.27^9.02^3.87 -~15039~^~1500~^~Fish, herring, Atlantic, raw~^~HERRING,ATLANTIC,RAW~^^^~Y~^^0^~Clupea harengus harengus (L.)~^6.25^4.27^9.02^3.87 -~15040~^~1500~^~Fish, herring, Atlantic, cooked, dry heat~^~HERRING,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15041~^~1500~^~Fish, herring, Atlantic, pickled~^~HERRING,ATLANTIC,PICKLED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15042~^~1500~^~Fish, herring, Atlantic, kippered~^~HERRING,ATLANTIC,KIPPERED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15043~^~1500~^~Fish, herring, Pacific, raw~^~HERRING,PACIFIC,RAW~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^4.27^9.02^3.87 -~15044~^~1500~^~Fish, ling, raw~^~LING,RAW~^^^^^0^~Molva molva (L.)~^6.25^4.27^9.02^3.87 -~15045~^~1500~^~Fish, lingcod, raw~^~LINGCOD,RAW~^^^^^0^~Ophiodon elongatus Girard~^6.25^4.27^9.02^3.87 -~15046~^~1500~^~Fish, mackerel, Atlantic, raw~^~MACKEREL,ATLANTIC,RAW~^^^~Y~^^0^~Scomber scombrus L.~^6.25^4.27^9.02^3.87 -~15047~^~1500~^~Fish, mackerel, Atlantic, cooked, dry heat~^~MACKEREL,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15048~^~1500~^~Fish, mackerel, jack, canned, drained solids~^~MACKEREL,JACK,CND,DRND SOL~^^^~Y~^^0^~Trachurus symmetricus (Ayers)~^6.25^4.27^9.02^3.87 -~15049~^~1500~^~Fish, mackerel, king, raw~^~MACKEREL,KING,RAW~^^^^^0^~Scombermorus cavalla (Cuvier)~^6.25^4.27^9.02^3.87 -~15050~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, raw~^~MACKEREL,PACIFIC&JACK,MXD SP,RAW~^^^~Y~^^0^~Scomber spp. and Trachurus spp.~^6.25^4.27^9.02^3.87 -~15051~^~1500~^~Fish, mackerel, spanish, raw~^~MACKEREL,SPANISH,RAW~^^^^^0^~Scombermorus maculatus (Mitchill)~^6.25^4.27^9.02^3.87 -~15052~^~1500~^~Fish, mackerel, spanish, cooked, dry heat~^~MACKEREL,SPANISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15053~^~1500~^~Fish, milkfish, raw~^~MILKFISH,RAW~^^^^^0^~Chanos chanos (Forskaal)~^6.25^4.27^9.02^3.87 -~15054~^~1500~^~Fish, monkfish, raw~^~MONKFISH,RAW~^^^^^0^~Lophius piscatorius L.~^6.25^4.27^9.02^3.87 -~15055~^~1500~^~Fish, mullet, striped, raw~^~MULLET,STRIPED,RAW~^^^~Y~^^0^~Mugil cephalus L.~^6.25^4.27^9.02^3.87 -~15056~^~1500~^~Fish, mullet, striped, cooked, dry heat~^~MULLET,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15057~^~1500~^~Fish, ocean perch, Atlantic, raw~^~OCEAN PERCH,ATLANTIC,RAW~^^^~Y~^^0^~Sebastes marinus L.~^6.25^4.27^9.02^3.87 -~15058~^~1500~^~Fish, ocean perch, Atlantic, cooked, dry heat~^~OCEAN PERCH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15059~^~1500~^~Fish, pout, ocean, raw~^~POUT,OCEAN,RAW~^^^^^0^~Macrozoarces americanus (Schneider)~^6.25^4.27^9.02^3.87 -~15060~^~1500~^~Fish, perch, mixed species, raw~^~PERCH,MIXED SPECIES,RAW~^^^~Y~^^0^~Morone americana Gmelin and Perca flavescens (Mitchill)~^6.25^4.27^9.02^3.87 -~15061~^~1500~^~Fish, perch, mixed species, cooked, dry heat~^~PERCH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15062~^~1500~^~Fish, pike, northern, raw~^~PIKE,NORTHERN,RAW~^^^~Y~^^0^~Esox lucius L.~^6.25^4.27^9.02^3.87 -~15063~^~1500~^~Fish, pike, northern, cooked, dry heat~^~PIKE,NORTHERN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15064~^~1500~^~Fish, pike, walleye, raw~^~PIKE,WALLEYE,RAW~^^^^^0^~Stizostedion vitreum vitreum (Mitchill)~^6.25^4.27^9.02^3.87 -~15065~^~1500~^~Fish, pollock, Atlantic, raw~^~POLLOCK,ATLANTIC,RAW~^^^^^0^~Pollachius virens L.~^6.25^4.27^9.02^3.87 -~15066~^~1500~^~Fish, pollock, Alaska, raw (may contain additives to retain moisture)~^~POLLOCK,ALASKA,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15067~^~1500~^~Fish, pollock, Alaska, cooked, dry heat (may contain additives to retain moisture)~^~POLLOCK,ALASKA,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~~^6.25^4.27^9.02^3.87 -~15068~^~1500~^~Fish, pompano, florida, raw~^~POMPANO,FLORIDA,RAW~^^^~Y~^^0^~Trachinotus carolinus (L.)~^6.25^4.27^9.02^3.87 -~15069~^~1500~^~Fish, pompano, florida, cooked, dry heat~^~POMPANO,FLORIDA,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15070~^~1500~^~Fish, rockfish, Pacific, mixed species, raw~^~ROCKFISH,PACIFIC,MXD SP,RAW~^^^~Y~^^0^~Sebastes spp.~^6.25^4.27^9.02^3.87 -~15071~^~1500~^~Fish, rockfish, Pacific, mixed species, cooked, dry heat~^~ROCKFISH,PACIFIC,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15072~^~1500~^~Fish, roe, mixed species, raw~^~ROE,MIXED SPECIES,RAW~^^^~Y~^^0^^6.25^3.57^9.02^3.68 -~15073~^~1500~^~Fish, roughy, orange, raw~^~ROUGHY,ORANGE,RAW~^^^^^0^~Hoplostethus atlanticus~^6.25^4.27^9.02^3.87 -~15074~^~1500~^~Fish, sablefish, raw~^~SABLEFISH,RAW~^^^^^0^~Anoplopoma fimbria (Pallas)~^6.25^4.27^9.02^3.87 -~15075~^~1500~^~Fish, sablefish, smoked~^~SABLEFISH,SMOKED~^^^^^0^^6.25^4.27^9.02^3.87 -~15076~^~1500~^~Fish, salmon, Atlantic, wild, raw~^~SALMON,ATLANTIC,WILD,RAW~^^^^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15077~^~1500~^~Fish, salmon, chinook, smoked~^~SALMON,CHINOOK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15078~^~1500~^~Fish, salmon, chinook, raw~^~SALMON,CHINOOK,RAW~^^^^^0^~Oncorhynchus tshawytscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15079~^~1500~^~Fish, salmon, chum, raw~^~SALMON,CHUM,RAW~^^^^^0^~Oncorhynchus keta (Walbaum)~^6.25^4.27^9.02^3.87 -~15080~^~1500~^~Fish, salmon, chum, canned, drained solids with bone~^~SALMON,CHUM,DRND SOL W/BONE~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15081~^~1500~^~Fish, salmon, coho, wild, raw~^~SALMON,COHO,WILD,RAW~^^^~Y~^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15082~^~1500~^~Fish, salmon, coho, wild, cooked, moist heat~^~SALMON,COHO,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15083~^~1500~^~Fish, salmon, pink, raw~^~SALMON,PINK,RAW~^^^~Y~^^0^~Oncorhynchus gorbuscha (Walbaum)~^6.25^4.27^9.02^3.87 -~15084~^~1500~^~Fish, salmon, pink, canned, total can contents~^~FISH,SALMON,PINK,CND,TOTAL CAN CONTENTS~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15085~^~1500~^~Fish, salmon, sockeye, raw~^~FISH,SALMON,SOCKEYE,RAW~^^^~Y~^^0^^^^^ -~15086~^~1500~^~Fish, salmon, sockeye, cooked, dry heat~^~FISH,SALMON,SOCKEYE,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15087~^~1500~^~Fish, salmon, sockeye, canned, drained solids~^~FISH,SALMON,SOCKEYE,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15088~^~1500~^~Fish, sardine, Atlantic, canned in oil, drained solids with bone~^~SARDINE,ATLANTIC,CND IN OIL,DRND SOL W/BONE~^^^~Y~^^0^~Clupea harengus harengus L.~^6.25^4.27^9.00^3.87 -~15089~^~1500~^~Fish, sardine, Pacific, canned in tomato sauce, drained solids with bone~^~SARDINE,PACIFIC,CND IN TOMATO SAU,DRND SOL W/BONE~^^^~Y~^^0^~Sardinops spp.~^6.25^4.27^9.02^3.70 -~15090~^~1500~^~Fish, scup, raw~^~SCUP,RAW~^^^~Y~^^0^~Stenotomus chrysops L.~^6.25^4.27^9.02^3.87 -~15091~^~1500~^~Fish, sea bass, mixed species, raw~^~SEA BASS,MXD SP,RAW~^^^~Y~^^0^~Centropristes striata L. and Lateolabrax japonicus (Cuvier)~^6.25^4.27^9.02^3.87 -~15092~^~1500~^~Fish, sea bass, mixed species, cooked, dry heat~^~SEA BASS,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15093~^~1500~^~Fish, seatrout, mixed species, raw~^~SEATROUT,MXD SP,RAW~^^^^^0^~Cynoscion spp.~^6.25^4.27^9.02^3.87 -~15094~^~1500~^~Fish, shad, american, raw~^~SHAD,AMERICAN,RAW~^^^~Y~^^0^~Alosa sapidissima (Wilson)~^6.25^4.27^9.02^3.87 -~15095~^~1500~^~Fish, shark, mixed species, raw~^~SHARK,MIXED SPECIES,RAW~^^^~Y~^^0^~Squaliformes~^6.25^4.27^9.02^3.87 -~15096~^~1500~^~Fish, shark, mixed species, cooked, batter-dipped and fried~^~SHARK,MXD SP,CKD,BATTER-DIPPED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~15097~^~1500~^~Fish, sheepshead, raw~^~SHEEPSHEAD,RAW~^^^^^0^~Archosargus probatocephalus (Walbaum)~^6.25^4.27^9.02^3.87 -~15098~^~1500~^~Fish, sheepshead, cooked, dry heat~^~SHEEPSHEAD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15099~^~1500~^~Fish, smelt, rainbow, raw~^~SMELT,RAINBOW,RAW~^^^^^0^~Osmerus mordax (Mitchill)~^6.25^4.27^9.02^3.87 -~15100~^~1500~^~Fish, smelt, rainbow, cooked, dry heat~^~SMELT,RAINBOW,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15101~^~1500~^~Fish, snapper, mixed species, raw~^~SNAPPER,MIXED SPECIES,RAW~^^^~Y~^^0^~Lutjanidae~^6.25^4.27^9.02^3.87 -~15102~^~1500~^~Fish, snapper, mixed species, cooked, dry heat~^~SNAPPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15103~^~1500~^~Fish, spot, raw~^~SPOT,RAW~^^^^^0^~Leiostomus xanthuras Lacepede~^6.25^4.27^9.02^3.87 -~15104~^~1500~^~Fish, sturgeon, mixed species, raw~^~STURGEON,MXD SP,RAW~^^^~Y~^^0^~Acipenser spp.~^6.25^4.27^9.02^3.87 -~15105~^~1500~^~Fish, sturgeon, mixed species, cooked, dry heat~^~STURGEON,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15106~^~1500~^~Fish, sturgeon, mixed species, smoked~^~STURGEON,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15107~^~1500~^~Fish, sucker, white, raw~^~SUCKER,WHITE,RAW~^^^^^0^~Catostomus commersoni (Lacepede)~^6.25^4.27^9.02^3.87 -~15108~^~1500~^~Fish, sunfish, pumpkin seed, raw~^~SUNFISH,PUMPKIN SEED,RAW~^^^^^0^~Lepomis gibbosus (L.)~^6.25^4.27^9.02^3.87 -~15109~^~1500~^~Fish, surimi~^~SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15110~^~1500~^~Fish, swordfish, raw~^~SWORDFISH,RAW~^^^~Y~^^0^~Xiphias gladius L.~^6.25^4.27^9.02^3.87 -~15111~^~1500~^~Fish, swordfish, cooked, dry heat~^~SWORDFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15112~^~1500~^~Fish, tilefish, raw~^~TILEFISH,RAW~^^^^^0^~Lopholatilus chamaeleonticeps Goode and Bean~^6.25^4.27^9.02^3.87 -~15113~^~1500~^~Fish, tilefish, cooked, dry heat~^~TILEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15114~^~1500~^~Fish, trout, mixed species, raw~^~TROUT,MIXED SPECIES,RAW~^^^~Y~^^0^~Salmonidae~^6.25^4.27^9.02^3.87 -~15115~^~1500~^~Fish, trout, rainbow, wild, raw~^~TROUT,RAINBOW,WILD,RAW~^^^^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15116~^~1500~^~Fish, trout, rainbow, wild, cooked, dry heat~^~TROUT,RAINBOW,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15117~^~1500~^~Fish, tuna, fresh, bluefin, raw~^~TUNA,FRESH,BLUEFIN,RAW~^^^~Y~^^0^~Thunnus thynnus (L.)~^6.25^4.27^9.02^3.87 -~15118~^~1500~^~Fish, tuna, fresh, bluefin, cooked, dry heat~^~TUNA,FRSH,BLUEFIN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15119~^~1500~^~Fish, tuna, light, canned in oil, drained solids~^~TUNA,LT,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.00^3.87 -~15121~^~1500~^~Fish, tuna, light, canned in water, drained solids (Includes foods for USDA's Food Distribution Program)~^~FISH,TUNA,LT,CND IN H2O,DRND SOL~^^^~Y~^^0^^^^^ -~15123~^~1500~^~Fish, tuna, fresh, skipjack, raw~^~TUNA,FRESH,SKIPJACK,RAW~^^^^^0^~Euthynnus pelamis (L.)~^6.25^4.27^9.02^3.87 -~15124~^~1500~^~Fish, tuna, white, canned in oil, drained solids~^~TUNA,WHITE,CND IN OIL,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15126~^~1500~^~Fish, tuna, white, canned in water, drained solids~^~TUNA,WHITE,CND IN H2O,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15127~^~1500~^~Fish, tuna, fresh, yellowfin, raw~^~TUNA,FRESH,YELLOWFIN,RAW~^^^~Y~^^0^~Thunnus albacares (Bonnaterre)~^6.25^4.27^9.02^3.87 -~15128~^~1500~^~Fish, tuna salad~^~TUNA SALAD~^^^^^0^^6.25^4.27^9.02^3.87 -~15129~^~1500~^~Fish, turbot, european, raw~^~TURBOT,EUROPEAN,RAW~^^^^^0^~Scophthalmus maximus (L.)~^6.25^4.27^9.02^3.87 -~15130~^~1500~^~Fish, whitefish, mixed species, raw~^~WHITEFISH,MXD SP,RAW~^^^~Y~^^0^~Coregonus spp.~^6.25^4.27^9.02^3.87 -~15131~^~1500~^~Fish, whitefish, mixed species, smoked~^~WHITEFISH,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15132~^~1500~^~Fish, whiting, mixed species, raw~^~WHITING,MIXED SPECIES,RAW~^^^~Y~^^0^~Gadidae~^6.25^4.27^9.02^3.87 -~15133~^~1500~^~Fish, whiting, mixed species, cooked, dry heat~^~WHITING,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15134~^~1500~^~Fish, wolffish, Atlantic, raw~^~WOLFFISH,ATLANTIC,RAW~^^^^^0^~Anarhichas lupus (L.)~^6.25^4.27^9.02^3.87 -~15135~^~1500~^~Fish, yellowtail, mixed species, raw~^~YELLOWTAIL,MXD SP,RAW~^^^^^0^~Seriola spp.~^6.25^4.27^9.02^3.87 -~15136~^~1500~^~Crustaceans, crab, alaska king, raw~^~CRAB,ALASKA KING,RAW~^^^^^0^~Paralithodes camtschatica (Tilesius)~^6.25^4.27^9.02^4.11 -~15137~^~1500~^~Crustaceans, crab, alaska king, cooked, moist heat~^~CRAB,ALASKA KING,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15138~^~1500~^~Crustaceans, crab, alaska king, imitation, made from surimi~^~CRAB,ALASKA KING,IMITN,MADE FROM SURIMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15139~^~1500~^~Crustaceans, crab, blue, raw~^~CRAB,BLUE,RAW~^^^^^0^~Callinectes sapidus Rathbun~^6.25^4.27^9.02^4.11 -~15140~^~1500~^~Crustaceans, crab, blue, cooked, moist heat~^~CRAB,BLUE,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15141~^~1500~^~Crustaceans, crab, blue, canned~^~CRAB,BLUE,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15142~^~1500~^~Crustaceans, crab, blue, crab cakes, home recipe~^~CRUSTACEANS,CRAB,BLUE,CRAB CAKES,HOME RECIPE~^^^^^0^^6.25^4.27^8.84^3.68 -~15143~^~1500~^~Crustaceans, crab, dungeness, raw~^~CRAB,DUNGENESS,RAW~^^^^^0^~Cancer magister Dana~^6.25^4.27^9.02^4.11 -~15144~^~1500~^~Crustaceans, crab, queen, raw~^~CRAB,QUEEN,RAW~^^^^^0^~Chionoectes opilio (O. Fabricius)~^6.25^4.27^9.02^4.11 -~15145~^~1500~^~Crustaceans, crayfish, mixed species, wild, raw~^~CRAYFISH,MXD SP,WILD,RAW~^^^~Y~^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15146~^~1500~^~Crustaceans, crayfish, mixed species, wild, cooked, moist heat~^~CRAYFISH,MXD SP,WILD,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15147~^~1500~^~Crustaceans, lobster, northern, raw~^~LOBSTER,NORTHERN,RAW~^^^~Y~^^0^~Homarus americanus Milne-Edwards~^6.25^4.27^9.02^4.11 -~15148~^~1500~^~Crustaceans, lobster, northern, cooked, moist heat~^~LOBSTER,NORTHERN,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15149~^~1500~^~Crustaceans, shrimp, mixed species, raw (may contain additives to retain moisture)~^~SHRIMP,MXD SP,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^~Penaeidae and Pandalidae~^6.25^4.27^9.02^4.11 -~15150~^~1500~^~Crustaceans, shrimp, mixed species, cooked, breaded and fried~^~SHRIMP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.22^4.27^8.84^3.68 -~15151~^~1500~^~Crustaceans, shrimp, mixed species, cooked, moist heat (may contain additives to retain moisture)~^~SHRIMP,MXD SP,CKD (MAY CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15152~^~1500~^~Crustaceans, shrimp, mixed species, canned~^~SHRIMP,MXD SP,CND~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15153~^~1500~^~Crustaceans, shrimp, mixed species, imitation, made from surimi~^~SHRIMP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15154~^~1500~^~Crustaceans, spiny lobster, mixed species, raw~^~SPINY LOBSTER,MXD SP,RAW~^^^^^0^~Jasus spp. and Panulirus spp.~^6.25^4.27^9.02^4.11 -~15155~^~1500~^~Mollusks, abalone, mixed species, raw~^~ABALONE,MIXED SPECIES,RAW~^^^~Y~^^0^~Haliotis spp.~^6.25^4.27^9.02^4.11 -~15156~^~1500~^~Mollusks, abalone, mixed species, cooked, fried~^~ABALONE,MXD SP,CKD,FRIED~^^^^^0^^6.23^4.27^8.84^4.12 -~15157~^~1500~^~Mollusks, clam, mixed species, raw~^~CLAM,MIXED SPECIES,RAW~^^^~Y~^^0^~Lamellibranchia~^6.25^4.27^9.02^4.11 -~15158~^~1500~^~Mollusks, clam, mixed species, cooked, breaded and fried~^~CLAM,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.20^4.27^8.84^4.12 -~15159~^~1500~^~Mollusks, clam, mixed species, cooked, moist heat~^~CLAM,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15160~^~1500~^~Mollusks, clam, mixed species, canned, drained solids~^~CLAM,MXD SP,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15162~^~1500~^~Mollusks, clam, mixed species, canned, liquid~^~CLAM,MXD SP,CND,LIQ~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15163~^~1500~^~Mollusks, cuttlefish, mixed species, raw~^~CUTTLEFISH,MXD SP,RAW~^^^^^0^~Sepiidae~^6.25^4.27^9.02^4.11 -~15164~^~1500~^~Mollusks, mussel, blue, raw~^~MUSSEL,BLUE,RAW~^^^~Y~^^0^~Mytilus edulis L.~^6.25^4.27^9.02^4.11 -~15165~^~1500~^~Mollusks, mussel, blue, cooked, moist heat~^~MUSSEL,BLUE,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15166~^~1500~^~Mollusks, octopus, common, raw~^~OCTOPUS,COMMON,RAW~^^^~Y~^^0^~Octopus vulgaris Lamarck~^6.25^4.27^9.02^4.11 -~15167~^~1500~^~Mollusks, oyster, eastern, wild, raw~^~OYSTER,EASTERN,WILD,RAW~^^^~Y~^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15168~^~1500~^~Mollusks, oyster, eastern, cooked, breaded and fried~^~OYSTER,EASTERN,CKD,BREADED&FRIED~^^^^^0^^6.18^4.27^9.02^4.12 -~15169~^~1500~^~Mollusks, oyster, eastern, wild, cooked, moist heat~^~OYSTER,EASTERN,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15170~^~1500~^~Mollusks, oyster, eastern, canned~^~OYSTER,EASTERN,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15171~^~1500~^~Mollusks, oyster, Pacific, raw~^~OYSTER,PACIFIC,RAW~^^^^^0^~Crassostrea gigas (Thunberg)~^6.25^4.27^9.02^4.11 -~15172~^~1500~^~Mollusks, scallop, mixed species, raw~^~SCALLOP,MIXED SPECIES,RAW~^^^~Y~^^0^~Pectinidae~^6.25^4.27^9.02^4.11 -~15173~^~1500~^~Mollusks, scallop, mixed species, cooked, breaded and fried~^~SCALLOP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^8.84^4.12 -~15174~^~1500~^~Mollusks, scallop, mixed species, imitation, made from surimi~^~SCALLOP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87 -~15175~^~1500~^~Mollusks, squid, mixed species, raw~^~SQUID,MIXED SPECIES,RAW~^^^~Y~^^0^~Loligoidae and Ommastrephidae~^6.25^4.27^9.02^4.11 -~15176~^~1500~^~Mollusks, squid, mixed species, cooked, fried~^~SQUID,MXD SP,CKD,FRIED~^^^^^0^^6.25^4.27^8.84^4.12 -~15177~^~1500~^~Mollusks, whelk, unspecified, raw~^~WHELK,UNSPECIFIED,RAW~^^^^^0^~Buccinidae~^6.25^4.27^9.02^4.11 -~15178~^~1500~^~Mollusks, whelk, unspecified, cooked, moist heat~^~WHELK,UNSPEC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15179~^~1500~^~Fish, salmon, chinook, smoked, (lox), regular~^~SALMON,CHINOOK,SMOKED,(LOX),REG~^^^^^0^^6.25^4.27^9.02^3.87 -~15180~^~1500~^~Fish, salmon, chum, canned, without salt, drained solids with bone~^~SALMON,CHUM,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15181~^~1500~^~Fish, salmon, pink, canned, without salt, solids with bone and liquid~^~SALMON,PINK,CND,WO/SALT,SOL W/BONE&LIQ~^^^^^0^^6.25^4.27^9.02^3.87 -~15182~^~1500~^~Fish, salmon, sockeye, canned, without salt, drained solids with bone~^~SALMON,SOCKEYE,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87 -~15183~^~1500~^~Fish, tuna, light, canned in oil, without salt, drained solids~^~TUNA,LT,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15184~^~1500~^~Fish, tuna, light, canned in water, without salt, drained solids~^~TUNA,LT,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15185~^~1500~^~Fish, tuna, white, canned in oil, without salt, drained solids~^~TUNA,WHITE,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87 -~15186~^~1500~^~Fish, tuna, white, canned in water, without salt, drained solids~^~TUNA,WHITE,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87 -~15187~^~1500~^~Fish, bass, freshwater, mixed species, cooked, dry heat~^~BASS,FRESHWATER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15188~^~1500~^~Fish, bass, striped, cooked, dry heat~^~BASS,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15189~^~1500~^~Fish, bluefish, cooked, dry heat~^~BLUEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15190~^~1500~^~Fish, burbot, cooked, dry heat~^~BURBOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15191~^~1500~^~Fish, butterfish, cooked, dry heat~^~BUTTERFISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15192~^~1500~^~Fish, cod, Pacific, cooked, dry heat (may contain additives to retain moisture)~^~COD,PACIFIC,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15193~^~1500~^~Fish, cusk, cooked, dry heat~^~CUSK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15194~^~1500~^~Fish, mahimahi, cooked, dry heat~^~FISH,MAHIMAHI,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15195~^~1500~^~Fish, drum, freshwater, cooked, dry heat~^~DRUM,FRESHWATER,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15196~^~1500~^~Fish, halibut, greenland, cooked, dry heat~^~HALIBUT,GREENLAND,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15197~^~1500~^~Fish, herring, Pacific, cooked, dry heat~^~HERRING,PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15198~^~1500~^~Fish, ling, cooked, dry heat~^~LING,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15199~^~1500~^~Fish, lingcod, cooked, dry heat~^~LINGCOD,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15200~^~1500~^~Fish, mackerel, king, cooked, dry heat~^~MACKEREL,KING,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15201~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, cooked, dry heat~^~MACKEREL,PACIFIC&JACK,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15202~^~1500~^~Fish, milkfish, cooked, dry heat~^~MILKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15203~^~1500~^~Fish, monkfish, cooked, dry heat~^~MONKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15204~^~1500~^~Fish, pike, walleye, cooked, dry heat~^~PIKE,WALLEYE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15205~^~1500~^~Fish, pollock, Atlantic, cooked, dry heat~^~POLLOCK,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15206~^~1500~^~Fish, pout, ocean, cooked, dry heat~^~POUT,OCEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15207~^~1500~^~Fish, roe, mixed species, cooked, dry heat~^~ROE,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.36^9.02^3.68 -~15208~^~1500~^~Fish, sablefish, cooked, dry heat~^~SABLEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15209~^~1500~^~Fish, salmon, Atlantic, wild, cooked, dry heat~^~SALMON,ATLANTIC,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15210~^~1500~^~Fish, salmon, chinook, cooked, dry heat~^~SALMON,CHINOOK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15211~^~1500~^~Fish, salmon, chum, cooked, dry heat~^~SALMON,CHUM,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15212~^~1500~^~Fish, salmon, pink, cooked, dry heat~^~SALMON,PINK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15213~^~1500~^~Fish, scup, cooked, dry heat~^~SCUP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15214~^~1500~^~Fish, seatrout, mixed species, cooked, dry heat~^~SEATROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15215~^~1500~^~Fish, shad, american, cooked, dry heat~^~SHAD,AMERICAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15216~^~1500~^~Fish, spot, cooked, dry heat~^~SPOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15217~^~1500~^~Fish, sucker, white, cooked, dry heat~^~SUCKER,WHITE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15218~^~1500~^~Fish, sunfish, pumpkin seed, cooked, dry heat~^~SUNFISH,PUMPKIN SD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15219~^~1500~^~Fish, trout, mixed species, cooked, dry heat~^~TROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15220~^~1500~^~Fish, tuna, skipjack, fresh, cooked, dry heat~^~TUNA,SKIPJACK,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15221~^~1500~^~Fish, tuna, yellowfin, fresh, cooked, dry heat~^~TUNA,YELLOWFIN,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15222~^~1500~^~Fish, turbot, european, cooked, dry heat~^~TURBOT,EUROPEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15223~^~1500~^~Fish, whitefish, mixed species, cooked, dry heat~^~WHITEFISH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15224~^~1500~^~Fish, wolffish, Atlantic, cooked, dry heat~^~WOLFFISH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15225~^~1500~^~Fish, yellowtail, mixed species, cooked, dry heat~^~YELLOWTAIL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15226~^~1500~^~Crustaceans, crab, dungeness, cooked, moist heat~^~CRAB,DUNGENESS,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15227~^~1500~^~Crustaceans, crab, queen, cooked, moist heat~^~CRAB,QUEEN,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15228~^~1500~^~Crustaceans, spiny lobster, mixed species, cooked, moist heat~^~SPINY LOBSTER,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15229~^~1500~^~Mollusks, cuttlefish, mixed species, cooked, moist heat~^~CUTTLEFISH,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15230~^~1500~^~Mollusks, octopus, common, cooked, moist heat~^~OCTOPUS,COMMON,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11 -~15231~^~1500~^~Mollusks, oyster, Pacific, cooked, moist heat~^~OYSTER,PACIFIC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15232~^~1500~^~Fish, roughy, orange, cooked, dry heat~^~ROUGHY,ORANGE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15233~^~1500~^~Fish, catfish, channel, wild, cooked, dry heat~^~CATFISH,CHANNEL,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15234~^~1500~^~Fish, catfish, channel, farmed, raw~^~CATFISH,CHANNEL,FARMED,RAW~^^^~Y~^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87 -~15235~^~1500~^~Fish, catfish, channel, farmed, cooked, dry heat~^~CATFISH,CHANNEL,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15236~^~1500~^~Fish, salmon, Atlantic, farmed, raw~^~SALMON,ATLANTIC,FARMED,RAW~^^^~Y~^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87 -~15237~^~1500~^~Fish, salmon, Atlantic, farmed, cooked, dry heat~^~SALMON,ATLANTIC,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15238~^~1500~^~Fish, salmon, coho, farmed, raw~^~SALMON,COHO,FARMED,RAW~^^^^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87 -~15239~^~1500~^~Fish, salmon, coho, farmed, cooked, dry heat~^~SALMON,COHO,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15240~^~1500~^~Fish, trout, rainbow, farmed, raw~^~TROUT,RAINBOW,FARMED,RAW~^^^~Y~^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87 -~15241~^~1500~^~Fish, trout, rainbow, farmed, cooked, dry heat~^~TROUT,RAINBOW,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87 -~15242~^~1500~^~Crustaceans, crayfish, mixed species, farmed, raw~^~CRAYFISH,MXD SP,FARMED,RAW~^^^^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11 -~15243~^~1500~^~Crustaceans, crayfish, mixed species, farmed, cooked, moist heat~^~CRAYFISH,MXD SP,FARMED,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15244~^~1500~^~Mollusks, oyster, eastern, wild, cooked, dry heat~^~OYSTER,EASTERN,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15245~^~1500~^~Mollusks, oyster, eastern, farmed, raw~^~OYSTER,EASTERN,FARMED,RAW~^^^^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11 -~15246~^~1500~^~Mollusks, oyster, eastern, farmed, cooked, dry heat~^~OYSTER,EASTERN,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11 -~15247~^~1500~^~Fish, salmon, coho, wild, cooked, dry heat~^~SALMON,COHO,WILD,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~15250~^~1500~^~Mollusks, conch, baked or broiled~^~CONCH,BAKED OR BROILED~^^^^^0^^6.25^^^ -~15251~^~1500~^~Salmon nuggets, breaded, frozen, heated~^~SALMON NUGGETS,BREADED,FRZ,HTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15252~^~1500~^~Salmon nuggets, cooked as purchased, unheated~^~SALMON NUGGETS,CKD AS PURCHASED,UNHTD~^^^^^0^^6.25^4.00^9.00^4.00 -~15253~^~1500~^~Salmon, sockeye, canned, total can contents~^~SALMON,SOCKEYE,CND,TOTAL CAN CONTENTS~^^^^^0^^6.25^4.27^9.02^3.87 -~15260~^~1500~^~Fish, salmon, pink, canned, drained solids~^~FISH,SALMON,PINK,CND,DRND SOL~^^^^^0^^^^^ -~15261~^~1500~^~Fish, tilapia, raw~^~FISH,TILAPIA,RAW~^^^~Y~^^0^^^^^ -~15262~^~1500~^~Fish, tilapia, cooked, dry heat~^~FISH,TILAPIA,CKD,DRY HEAT~^^^~Y~^^0^^^^^ -~15264~^~1500~^~Salmon, sockeye, canned, drained solids, without skin and bones~^~SALMON,SOCKEYE,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15265~^~1500~^~Fish, Salmon, pink, canned, drained solids, without skin and bones~^~FISH,SALMON,PINK,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^ -~15266~^~1500~^~Fish, pollock, Alaska, raw~^~FISH,POLLOCK,ALASKA,RAW~^~~^~~^~~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87 -~15267~^~1500~^~Fish, pollock, Alaska, cooked~^~FISH,POLLOCK,ALASKA,CKD~^~~^~~^~~^~~^0^~~^6.25^4.27^9.02^3.87 -~15269~^~1500~^~Fish, cod, Pacific, cooked~^~FISH,COD,PACIFIC,CKD~^^^^^0^^^^^ -~15270~^~1500~^~Crustaceans, shrimp, raw~^~CRUSTACEANS,SHRIMP,RAW~^^^^~Tail and shell~^13^^^^^ -~15271~^~1500~^~Crustaceans, shrimp, cooked~^~CRUSTACEANS,SHRIMP,CKD~^^^^~Tail and shell~^17^^^^^ -~15274~^~1500~^~Fish, trout, brook, raw, New York State~^~FISH,TROUT,BROOK,RAW,NEW YORK STATE~^^^^~skin, head, viscera, bones~^53^^^^^ -~16001~^~1600~^~Beans, adzuki, mature seeds, raw~^~BEANS,ADZUKI,MATURE SEEDS,RAW~^^^^^0^~Vigna angularis~^6.25^3.47^8.37^4.07 -~16002~^~1600~^~Beans, adzuki, mature seeds, cooked, boiled, without salt~^~BEANS,ADZUKI,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16003~^~1600~^~Beans, adzuki, mature seeds, canned, sweetened~^~BEANS,ADZUKI,MATURE SEEDS,CND,SWTND~^^^^^0^^6.25^3.47^8.37^4.07 -~16004~^~1600~^~Yokan, prepared from adzuki beans and sugar~^~YOKAN,PREP FROM ADZUKI BNS & SUGAR~^^^^^0^^6.25^3.47^8.37^4.07 -~16005~^~1600~^~Beans, baked, home prepared~^~BEANS,BAKED,HOME PREPARED~^^^^^0^^6.25^^^ -~16006~^~1600~^~Beans, baked, canned, plain or vegetarian~^~BEANS,BKD,CND,PLN OR VEGETARIAN~^^^~Y~^^0^^6.25^4.00^8.40^3.40 -~16007~^~1600~^~Beans, baked, canned, with beef~^~BEANS,BKD,CND,W/BF~^^^^^0^^6.25^4.00^9.00^3.80 -~16008~^~1600~^~Beans, baked, canned, with franks~^~BEANS,BKD,CND,W/FRANKS~^^^~Y~^^0^^6.25^3.90^9.00^3.70 -~16009~^~1600~^~Beans, baked, canned, with pork~^~BEANS,BKD,CND,W/PORK~^^^^^0^^6.25^3.90^8.80^3.60 -~16010~^~1600~^~Beans, baked, canned, with pork and sweet sauce~^~BEANS,BKD,CND,W/PORK&SWT SAU~^^^~Y~^^0^^6.25^3.90^8.90^3.70 -~16011~^~1600~^~Beans, baked, canned, with pork and tomato sauce~^~BEANS,BKD,CND,W/PORK&TOMATO SAU~^^^~Y~^^0^^6.25^4.00^8.80^3.50 -~16014~^~1600~^~Beans, black, mature seeds, raw~^~BEANS,BLACK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16015~^~1600~^~Beans, black, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16016~^~1600~^~Beans, black turtle, mature seeds, raw~^~BEANS,BLACK TURTLE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16017~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16018~^~1600~^~Beans, black turtle, mature seeds, canned~^~BEANS,BLACK TURTLE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16019~^~1600~^~Beans, cranberry (roman), mature seeds, raw~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16020~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, without salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16021~^~1600~^~Beans, cranberry (roman), mature seeds, canned~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16022~^~1600~^~Beans, french, mature seeds, raw~^~BEANS,FRENCH,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16023~^~1600~^~Beans, french, mature seeds, cooked, boiled, without salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16024~^~1600~^~Beans, great northern, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,GREAT NORTHERN,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16025~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, without salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16026~^~1600~^~Beans, great northern, mature seeds, canned~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16027~^~1600~^~Beans, kidney, all types, mature seeds, raw~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16028~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16029~^~1600~^~Beans, kidney, all types, mature seeds, canned~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CND~^^^^^0^^^^^ -~16030~^~1600~^~Beans, kidney, california red, mature seeds, raw~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16031~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16032~^~1600~^~Beans, kidney, red, mature seeds, raw~^~BEANS,KIDNEY,RED,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16033~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16034~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16035~^~1600~^~Beans, kidney, royal red, mature seeds, raw~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16036~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16037~^~1600~^~Beans, navy, mature seeds, raw~^~BEANS,NAVY,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16038~^~1600~^~Beans, navy, mature seeds, cooked, boiled, without salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16039~^~1600~^~Beans, navy, mature seeds, canned~^~BEANS,NAVY,MATURE SEEDS,CND~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16040~^~1600~^~Beans, pink, mature seeds, raw~^~BEANS,PINK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16041~^~1600~^~Beans, pink, mature seeds, cooked, boiled, without salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16042~^~1600~^~Beans, pinto, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,PINTO,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^^^ -~16043~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, without salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16044~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07 -~16045~^~1600~^~Beans, small white, mature seeds, raw~^~BEANS,SML WHITE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16046~^~1600~^~Beans, small white, mature seeds, cooked, boiled, without salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16047~^~1600~^~Beans, yellow, mature seeds, raw~^~BEANS,YEL,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16048~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, without salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16049~^~1600~^~Beans, white, mature seeds, raw~^~BEANS,WHITE,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07 -~16050~^~1600~^~Beans, white, mature seeds, cooked, boiled, without salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16051~^~1600~^~Beans, white, mature seeds, canned~^~BEANS,WHITE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16052~^~1600~^~Broadbeans (fava beans), mature seeds, raw~^~BROADBEANS (FAVA BEANS),MATURE SEEDS,RAW~^^^~Y~^^0^~Vicia faba~^6.25^3.47^8.37^4.07 -~16053~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, without salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16054~^~1600~^~Broadbeans (fava beans), mature seeds, canned~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16055~^~1600~^~Carob flour~^~CAROB FLOUR~^^^~Y~^^0^~Ceratonia siliqua~^6.25^^^ -~16056~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, raw~^~CHICKPEAS (GARBANZO BNS,BENGAL GM),MATURE SEEDS,RAW~^^^~Y~^^0^~Cicer arietinum~^6.25^3.47^8.37^4.07 -~16057~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, without salt~^~CHICKPEAS ,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16058~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids~^~CHICKPEAS (GARBANZO BNS,BENGAL GRAM),MATURE SDS,CND,SOL&LIQ~^^^^^0^^6.25^3.47^8.37^4.07 -~16059~^~1600~^~Chili with beans, canned~^~CHILI WITH BEANS,CANNED~^^^~Y~^^0^^6.25^4.00^8.70^3.50 -~16060~^~1600~^~Cowpeas, catjang, mature seeds, raw~^~COWPEAS,CATJANG,MATURE SEEDS,RAW~^^^^^0^~Vigna unguiculata subsp. cylindrica~^6.25^3.47^8.37^4.07 -~16061~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, without salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16062~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, raw~^~COWPEAS,COMMON (BLACKEYES,CROWDER,SOUTHERN),MTRE SEEDS,RAW~^^^~Y~^^0^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07 -~16063~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, without salt~^~COWPEAS,COMMON (BLKEYES,CRWDR,STHRN),MTURE,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16064~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned, plain~^~COWPEAS,COMMON,MATURE SEEDS,CND,PLN~^^^^^0^^6.25^3.47^8.37^4.07 -~16065~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned with pork~^~COWPEAS,COMMON,MATURE SEEDS,CND W/PORK~^^^^^0^^6.25^^^ -~16067~^~1600~^~Hyacinth beans, mature seeds, raw~^~HYACINTH BNS,MATURE SEEDS,RAW~^^^^^0^~Dolichos purpureus~^6.25^3.47^8.37^4.07 -~16068~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, without salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16069~^~1600~^~Lentils, raw~^~LENTILS,RAW~^^^~Y~^^0^~Lens culinaris~^6.25^3.47^8.37^4.07 -~16070~^~1600~^~Lentils, mature seeds, cooked, boiled, without salt~^~LENTILS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16071~^~1600~^~Lima beans, large, mature seeds, raw~^~LIMA BNS,LRG,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16072~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, without salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16073~^~1600~^~Lima beans, large, mature seeds, canned~^~LIMA BNS,LRG,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07 -~16074~^~1600~^~Lima beans, thin seeded (baby), mature seeds, raw~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,RAW~^^^^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07 -~16075~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, without salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16076~^~1600~^~Lupins, mature seeds, raw~^~LUPINS,MATURE SEEDS,RAW~^^^^^0^~Lupinus albus~^6.25^3.47^8.37^4.07 -~16077~^~1600~^~Lupins, mature seeds, cooked, boiled, without salt~^~LUPINS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16078~^~1600~^~Mothbeans, mature seeds, raw~^~MOTHBEANS,MATURE SEEDS,RAW~^~mat bean, moth bean~^^^^0^~Vigna aconitifolia~^6.25^3.47^8.37^4.07 -~16079~^~1600~^~Mothbeans, mature seeds, cooked, boiled, without salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,WO/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16080~^~1600~^~Mung beans, mature seeds, raw~^~MUNG BNS,MATURE SEEDS,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^3.47^8.37^4.07 -~16081~^~1600~^~Mung beans, mature seeds, cooked, boiled, without salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16082~^~1600~^~Noodles, chinese, cellophane or long rice (mung beans), dehydrated~^~NOODLES,CHINESE,CELLOPHANE OR LONG RICE (MUNG BNS),DEHYD~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16083~^~1600~^~Mungo beans, mature seeds, raw~^~MUNGO BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna mungo~^6.25^3.47^8.37^4.07 -~16084~^~1600~^~Mungo beans, mature seeds, cooked, boiled, without salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16085~^~1600~^~Peas, green, split, mature seeds, raw~^~PEAS,GRN,SPLIT,MATURE SEEDS,RAW~^^^~Y~^^0^~Pisum sativum~^6.25^3.47^8.37^4.07 -~16086~^~1600~^~Peas, split, mature seeds, cooked, boiled, without salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16087~^~1600~^~Peanuts, all types, raw~^~PEANUTS,ALL TYPES,RAW~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16088~^~1600~^~Peanuts, all types, cooked, boiled, with salt~^~PEANUTS,ALL TYPES,CKD,BLD,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16089~^~1600~^~Peanuts, all types, oil-roasted, with salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16090~^~1600~^~Peanuts, all types, dry-roasted, with salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16091~^~1600~^~Peanuts, spanish, raw~^~PEANUTS,SPANISH,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16092~^~1600~^~Peanuts, spanish, oil-roasted, with salt~^~PEANUTS,SPANISH,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16093~^~1600~^~Peanuts, valencia, raw~^~PEANUTS,VALENCIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16094~^~1600~^~Peanuts, valencia, oil-roasted, with salt~^~PEANUTS,VALENCIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16095~^~1600~^~Peanuts, virginia, raw~^~PEANUTS,VIRGINIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07 -~16096~^~1600~^~Peanuts, virginia, oil-roasted, with salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16097~^~1600~^~Peanut butter, chunk style, with salt~^~PEANUT BUTTER,CHUNK STYLE,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16098~^~1600~^~Peanut butter, smooth style, with salt (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH STYLE,W/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16099~^~1600~^~Peanut flour, defatted~^~PEANUT FLOUR,DEFATTED~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16100~^~1600~^~Peanut flour, low fat~^~PEANUT FLOUR,LOW FAT~^^^^^0^^5.46^3.47^8.37^4.07 -~16101~^~1600~^~Pigeon peas (red gram), mature seeds, raw~^~PIGEON PEAS (RED GM),MATURE SEEDS,RAW~^^^^^0^~Cajanus cajan~^6.25^3.47^8.37^4.07 -~16102~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, without salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16103~^~1600~^~Refried beans, canned, traditional style~^~REFRIED BNS,CND,TRADITIONAL STYLE~^^^~Y~^^0^^6.25^3.50^8.90^4.07 -~16104~^~1600~^~Bacon, meatless~^~BACON,MEATLESS~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16106~^~1600~^~Meat extender~^~MEAT EXTENDER~^^^^^0^^6.25^3.47^8.37^4.07 -~16107~^~1600~^~Sausage, meatless~^~SAUSAGE,MEATLESS~^^^~Y~^^0^^6.25^3.48^8.37^4.07 -~16108~^~1600~^~Soybeans, mature seeds, raw~^~SOYBEANS,MATURE SEEDS,RAW~^^^^^0^^^^^ -~16109~^~1600~^~Soybeans, mature cooked, boiled, without salt~^~SOYBEANS,MATURE CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16110~^~1600~^~Soybeans, mature seeds, roasted, salted~^~SOYBEANS,MATURE SEEDS,RSTD,SALTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16111~^~1600~^~Soybeans, mature seeds, dry roasted~^~SOYBEANS,MATURE SEEDS,DRY RSTD~^~Soy nuts~^^^^0^^6.25^3.47^8.37^4.07 -~16112~^~1600~^~Miso~^~MISO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16113~^~1600~^~Natto~^~NATTO~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16114~^~1600~^~Tempeh~^~TEMPEH~^^^^^0^^6.25^3.47^8.37^4.07 -~16115~^~1600~^~Soy flour, full-fat, raw~^~SOY FLOUR,FULL-FAT,RAW~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16116~^~1600~^~Soy flour, full-fat, roasted~^~SOY FLR,FULL-FAT,RSTD~^^^^^0^^6.25^3.47^8.37^4.07 -~16117~^~1600~^~Soy flour, defatted~^~SOY FLOUR,DEFATTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16118~^~1600~^~Soy flour, low-fat~^~SOY FLOUR,LOW-FAT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16119~^~1600~^~Soy meal, defatted, raw~^~SOY MEAL,DEFATTED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16120~^~1600~^~Soymilk, original and vanilla, unfortified~^~SOYMILK,ORIGINAL & VANILLA,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16121~^~1600~^~Soy protein concentrate, produced by alcohol extraction~^~SOY PROT CONC,PRODUCED BY ALCOHOL EXTRACTION~^^^^^0^^6.25^3.47^8.37^4.07 -~16122~^~1600~^~Soy protein isolate~^~SOY PROTEIN ISOLATE~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16123~^~1600~^~Soy sauce made from soy and wheat (shoyu)~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16124~^~1600~^~Soy sauce made from soy (tamari)~^~SOY SAU MADE FROM SOY (TAMARI)~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16125~^~1600~^~Soy sauce made from hydrolyzed vegetable protein~^~SOY SAU MADE FROM HYDROLYZED VEG PROT~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16126~^~1600~^~Tofu, firm, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,FIRM,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^^^0^^6.25^3.47^8.37^4.07 -~16127~^~1600~^~Tofu, soft, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,SOFT,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16128~^~1600~^~Tofu, dried-frozen (koyadofu)~^~TOFU,DRIED-FROZEN (KOYADOFU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16129~^~1600~^~Tofu, fried~^~TOFU,FRIED~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16130~^~1600~^~Okara~^~OKARA~^^^^^0^^6.25^3.47^8.37^4.07 -~16132~^~1600~^~Tofu, salted and fermented (fuyu)~^~TOFU,SALTED&FERMENTED (FUYU)~^^^^^0^^6.25^3.47^8.37^4.07 -~16133~^~1600~^~Yardlong beans, mature seeds, raw~^~YARDLONG BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna uniguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07 -~16134~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, without salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16135~^~1600~^~Winged beans, mature seeds, raw~^~WINGED BNS,MATURE SEEDS,RAW~^^^^^0^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07 -~16136~^~1600~^~Winged beans, mature seeds, cooked, boiled, without salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16137~^~1600~^~Hummus, home prepared~^~HUMMUS,HOME PREP~^^^~Y~^^0^^^^^ -~16138~^~1600~^~Falafel, home-prepared~^~FALAFEL,HOME-PREPARED~^^^^^0^^0.00^^^ -~16139~^~1600~^~Soymilk, original and vanilla, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16144~^~1600~^~Lentils, pink or red, raw~^~LENTILS,PINK OR RED,RAW~^^^^^0^^6.25^3.47^8.37^4.07 -~16145~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16146~^~1600~^~Beans, pinto, canned, drained solids~^~BEANS,PINTO,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.05 -~16147~^~1600~^~Veggie burgers or soyburgers, unprepared~^~VEGGIE BURGERS OR SOYBURGERS UNPREP~^^^~Y~^^0^^^^^ -~16149~^~1600~^~Peanut spread, reduced sugar~^~PEANUT SPRD,RED SUGAR~^^^~Y~^^0^^^^^ -~16150~^~1600~^~Peanut butter, smooth, reduced fat~^~PEANUT BUTTER,SMOOTH,RED FAT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16155~^~1600~^~Peanut butter, smooth, vitamin and mineral fortified~^~PEANUT BUTTER,SMOOTH,VIT & MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16156~^~1600~^~Peanut butter, chunky, vitamin and mineral fortified~^~PEANUT BUTTER,CHUNKY,VITAMIN&MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16157~^~1600~^~Chickpea flour (besan)~^~CHICKPEA FLOUR (BESAN)~^^^^^0^^6.25^4.27^8.37^4.07 -~16158~^~1600~^~Hummus, commercial~^~HUMMUS,COMMERCIAL~^^^^^0^^6.25^3.47^8.37^4.07 -~16159~^~1600~^~Tofu, extra firm, prepared with nigari~^~TOFU,EX FIRM,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16160~^~1600~^~Tofu, hard, prepared with nigari~^~TOFU,HARD,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07 -~16161~^~1600~^~MORI-NU, Tofu, silken, soft~^~MORI-NU,TOFU,SILKEN,SOFT~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16162~^~1600~^~MORI-NU, Tofu, silken, firm~^~MORI-NU,TOFU,SILKEN,FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16163~^~1600~^~MORI-NU, Tofu, silken, extra firm~^~MORI-NU,TOFU,SILKEN,EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16164~^~1600~^~MORI-NU, Tofu, silken, lite firm~^~MORI-NU,TOFU,SILKEN,LITE FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16165~^~1600~^~MORI-NU, Tofu, silken, lite extra firm~^~MORI-NU,TOFU,SILKEN,LITE EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^ -~16166~^~1600~^~Soymilk, chocolate, unfortified~^~SOYMILK,CHOC,UNFORTIFIED~^^^~Y~^^0^^^^^ -~16167~^~1600~^~Peanut Butter, smooth (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH (INCLFOODS FOR USDA'S FD DIST PGM)~^^^^^0^^5.46^3.47^8.37^4.07 -~16168~^~1600~^~Soymilk, chocolate, with added calcium, vitamins A and D~^~SOYMILK,CHOC,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16171~^~1600~^~Refried beans, canned, vegetarian~^~REFRIED BNS,CND,VEGETARIAN~^^^^^0^^^^^ -~16172~^~1600~^~Refried beans, canned, fat-free~^~REFRIED BNS,CND,FAT-FREE~^^^~Y~^^0^^^^^ -~16173~^~1600~^~Frijoles rojos volteados (Refried beans, red, canned)~^~FRIJOLES ROJOS VOLTEADOS (REFRIED BNS,RED,CANNED)~^^^^^0^^^^^ -~16174~^~1600~^~Tempeh, cooked~^~TEMPEH,CKD~^^^^^0^^6.25^3.47^8.37^4.07 -~16210~^~1600~^~Vitasoy USA, Nasoya Lite Firm Tofu~^~VITASOY USA,NASOYA LITE FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16211~^~1600~^~Vitasoy USA, Organic Nasoya Super Firm Cubed Tofu~^~VITASOY USA,ORGANIC NASOYA SUPER FIRM CUBED TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16212~^~1600~^~Vitasoy USA, Organic Nasoya Extra Firm Tofu~^~VITASOY USA,ORGANIC NASOYA EX FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16213~^~1600~^~Vitasoy USA, Organic Nasoya Firm Tofu~^~VITASOY USA,ORGANIC NASOYA FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16214~^~1600~^~Vitasoy USA, Organic Nasoya Silken Tofu~^~VITASOY USA ORGANIC NASOYA SILKEN TOFU~^^~Vitasoy USA~^^^0^^^^^ -~16215~^~1600~^~Vitasoy USA, Vitasoy Organic Creamy Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CREAMY ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16216~^~1600~^~Vitasoy USA, Vitasoy Organic Classic Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CLASSIC ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16219~^~1600~^~Vitasoy USA, Vitasoy Light Vanilla Soymilk~^~VITASOY USA,VITASOY LT VANILLA SOYMILK~^^~Vitasoy USA~^^^0^^^^^ -~16222~^~1600~^~Soymilk (all flavors), unsweetened, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),UNSWTND,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16223~^~1600~^~Soymilk (All flavors), enhanced~^~SOYMILK (ALL FLAVORS),ENHANCED~^^^^^0^^^^^ -~16225~^~1600~^~Soymilk, original and vanilla, light, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16227~^~1600~^~Soymilk, chocolate and other flavors, light, with added calcium, vitamins A and D~^~SOYMILK,CHOC & OTHER FLAVORS,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16228~^~1600~^~Soymilk, original and vanilla, light, unsweetened, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,UNSWTND,W/ ADDED CA,VIT A & D~^^^^^0^^^^^ -~16229~^~1600~^~Soymilk (All flavors), lowfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),LOWFAT,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^ -~16230~^~1600~^~Soymilk (all flavors), nonfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16231~^~1600~^~Soymilk, chocolate, nonfat, with added calcium, vitamins A and D~^~SOYMILK,CHOC,NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^ -~16235~^~1600~^~SILK Plain, soymilk~^~SILK PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16236~^~1600~^~SILK Vanilla, soymilk~^~SILK VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16237~^~1600~^~SILK Chocolate, soymilk~^~SILK CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16238~^~1600~^~SILK Light Plain, soymilk~^~SILK LT PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16239~^~1600~^~SILK Light Vanilla, soymilk~^~SILK LT VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16240~^~1600~^~SILK Light Chocolate, soymilk~^~SILK LT CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16241~^~1600~^~SILK Plus Omega-3 DHA, soymilk~^~SILK PLUS OMEGA-3 DHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16242~^~1600~^~SILK Plus for Bone Health, soymilk~^~SILK PLUS FOR BONE HEALTH,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16243~^~1600~^~SILK Plus Fiber, soymilk~^~SILK PLUS FIBER,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16244~^~1600~^~SILK Unsweetened, soymilk~^~SILK UNSWTND,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16245~^~1600~^~SILK Very Vanilla, soymilk~^~SILK VERY VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16246~^~1600~^~SILK Nog, soymilk~^~SILK NOG,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16247~^~1600~^~SILK Chai, soymilk~^~SILK CHAI,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16248~^~1600~^~SILK Mocha, soymilk~^~SILK MOCHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16249~^~1600~^~SILK Coffee, soymilk~^~SILK COFFEE,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16250~^~1600~^~SILK Vanilla soy yogurt (family size)~^~SILK VANILLA SOY YOGURT (FAMILY SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16251~^~1600~^~SILK Vanilla soy yogurt (single serving size)~^~SILK VANILLA SOY YOGURT (SINGLE SERVING SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16252~^~1600~^~SILK Plain soy yogurt~^~SILK PLN SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16253~^~1600~^~SILK Strawberry soy yogurt~^~SILK STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16254~^~1600~^~SILK Raspberry soy yogurt~^~SILK RASPBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16255~^~1600~^~SILK Peach soy yogurt~^~SILK PEACH SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16256~^~1600~^~SILK Black Cherry soy yogurt~^~SILK BLACK CHERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16257~^~1600~^~SILK Blueberry soy yogurt~^~SILK BLUEBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16258~^~1600~^~SILK Key Lime soy yogurt~^~SILK KEY LIME SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16259~^~1600~^~SILK Banana-Strawberry soy yogurt~^~SILK BANANA-STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16260~^~1600~^~SILK Original Creamer~^~SILK ORIGINAL CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16261~^~1600~^~SILK French Vanilla Creamer~^~SILK FRENCH VANILLA CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16262~^~1600~^~SILK Hazelnut Creamer~^~SILK HAZELNUT CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^ -~16271~^~1600~^~Vitasoy USA Organic Nasoya, Soft Tofu~^~VITASOY USA ORGANIC NASOYA,SOFT TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16272~^~1600~^~Vitasoy USA Nasoya, Lite Silken Tofu~^~VITASOY USA NASOYA,LITE SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16273~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Extra Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS EX FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16274~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16275~^~1600~^~Vitasoy USA Organic Nasoya Sprouted, Tofu Plus Super Firm~^~VITASOY USA ORGANIC NASOYA SPROUTED,TOFU PLUS SUPER FIRM~^^~Vitasoy USA~^^^0^^6.25^^^ -~16276~^~1600~^~Vitasoy USA Azumaya, Extra Firm Tofu~^~VITASOY USA AZUMAYA,EX FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16277~^~1600~^~Vitasoy USA Azumaya, Firm Tofu~^~VITASOY USA AZUMAYA,FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16278~^~1600~^~Vitasoy USA Azumaya, Silken Tofu~^~VITASOY USA AZUMAYA,SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^ -~16279~^~1600~^~HOUSE FOODS Premium Soft Tofu~^~HOUSE FOODS PREMIUM SOFT TOFU~^^~House Foods~^^^0^^6.25^^^ -~16281~^~1600~^~HOUSE FOODS Premium Firm Tofu~^~HOUSE FOODS PREMIUM FIRM TOFU~^^~House Foods~^^^0^^6.25^^^ -~16302~^~1600~^~Beans, adzuki, mature seed, cooked, boiled, with salt~^~BEANS,ADZUKI,MATURE SD,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16315~^~1600~^~Beans, black, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16316~^~1600~^~Beans, black, mature seeds, canned, low sodium~^~BEANS,BLACK,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16317~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16320~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, with salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16323~^~1600~^~Beans, french, mature seeds, cooked, boiled, with salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16325~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, with salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16326~^~1600~^~Beans, great northern, mature seeds, canned, low sodium~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16328~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16331~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16333~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16335~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16336~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled with salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16337~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquid, low sodium~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQ,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16338~^~1600~^~Beans, navy, mature seeds, cooked, boiled, with salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16341~^~1600~^~Beans, pink, mature seeds, cooked, boiled, with salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16343~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, with salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16345~^~1600~^~Beans, pinto, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,PINTO,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16346~^~1600~^~Beans, small white, mature seeds, cooked, boiled, with salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16347~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids, low sodium~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16348~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, with salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16350~^~1600~^~Beans, white, mature seeds, cooked, boiled, with salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16353~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, with salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16357~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, with salt~^~CHICKPEAS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16358~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained solids~^~CHICKPEAS,MAT SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07 -~16359~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained, rinsed in tap water~^~CHICKPEAS,MATURE SEEDS,CND,DRND,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07 -~16360~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids, low sodium~^~CHICKPEAS,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16361~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, with salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16363~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, with salt~^~COWPEAS,COMMON,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16368~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, with salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16370~^~1600~^~Lentils, mature seeds, cooked, boiled, with salt~^~LENTILS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16372~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, with salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16375~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, with salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16377~^~1600~^~Lupins, mature seeds, cooked, boiled, with salt~^~LUPINS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16379~^~1600~^~Mothbeans, mature seeds, cooked, boiled, with salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07 -~16381~^~1600~^~Mung beans, mature seeds, cooked, boiled, with salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16384~^~1600~^~Mungo beans, mature seeds, cooked, boiled, with salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16386~^~1600~^~Peas, split, mature seeds, cooked, boiled, with salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16389~^~1600~^~Peanuts, all types, oil-roasted, without salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,WO/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16390~^~1600~^~Peanuts, all types, dry-roasted, without salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16392~^~1600~^~Peanuts, spanish, oil-roasted, without salt~^~PEANUTS,SPANISH,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16394~^~1600~^~Peanuts, valencia, oil-roasted, without salt~^~PEANUTS,VALENCIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16396~^~1600~^~Peanuts, virginia, oil-roasted, without salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07 -~16397~^~1600~^~Peanut butter, chunk style, without salt~^~PEANUT BUTTER,CHUNK STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16398~^~1600~^~Peanut butter, smooth style, without salt~^~PEANUT BUTTER,SMOOTH STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~16399~^~1600~^~Peanut butter with omega-3, creamy~^~PEANUT BUTTER W/ OMEGA-3,CREAMY~^^^^^0^^5.46^3.47^8.37^4.07 -~16402~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, with salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16403~^~1600~^~Refried beans, canned, traditional, reduced sodium~^~REFRIED BNS,CND,TRADITIONAL,RED NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07 -~16409~^~1600~^~Soybeans, mature seeds, cooked, boiled, with salt~^~SOYBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16410~^~1600~^~Soybeans, mature seeds, roasted, no salt added~^~SOYBEANS,MATURE SEEDS,RSTED,NO SALT ADDED~^^^^^0^^6.25^3.47^8.37^4.07 -~16420~^~1600~^~Soy protein concentrate, produced by acid wash~^~SOY PROT CONC,PRODUCED BY ACID WASH~^^^^^0^^6.25^3.47^8.37^4.07 -~16422~^~1600~^~Soy protein isolate, potassium type~^~SOY PROT ISOLATE,K TYPE~^^^^^0^^6.25^3.47^8.37^4.07 -~16424~^~1600~^~Soy sauce made from soy and wheat (shoyu), low sodium~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU),LO NA~^^^~Y~^^0^^6.25^3.50^8.40^4.00 -~16425~^~1600~^~Soy sauce, reduced sodium, made from hydrolyzed vegetable protein~^~SOY SAU,RED NA,MADE FROM HYDROLYZED VEG PROT~^^^^^0^^6.25^3.47^8.37^4.07 -~16426~^~1600~^~Tofu, raw, firm, prepared with calcium sulfate~^~TOFU,RAW,FIRM,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16427~^~1600~^~Tofu, raw, regular, prepared with calcium sulfate~^~TOFU,RAW,REG,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16428~^~1600~^~Tofu, dried-frozen (koyadofu), prepared with calcium sulfate~^~TOFU,DRIED-FROZEN (KOYADOFU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16429~^~1600~^~Tofu, fried, prepared with calcium sulfate~^~TOFU,FRIED,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16432~^~1600~^~Tofu, salted and fermented (fuyu), prepared with calcium sulfate~^~TOFU,SALTED&FERMENTED (FUYU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07 -~16434~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, with salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~16436~^~1600~^~Winged beans, mature seeds, cooked, boiled, with salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07 -~17000~^~1700~^~Veal, Australian, rib, rib roast, separable lean only, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN,RAW~^^^^~Bone and connective tissue 22%, separable fat 14%~^36^^6.25^^^ -~17001~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^~Ovis aries~^6.25^4.27^9.02^3.87 -~17002~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17003~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 19%~^42^^6.25^4.27^9.02^3.87 -~17004~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,CKD~^^^^~Bone 25%, separable fat 17%~^42^^6.25^4.27^9.02^3.87 -~17005~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17006~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17007~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17008~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^~Y~^~Bone~^56^^6.25^4.27^9.02^3.87 -~17009~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 52%, separable fat 7%~^59^^6.25^4.27^9.02^3.87 -~17010~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 56%, separable fat 6%~^62^^6.25^4.27^9.02^3.87 -~17011~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17012~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17013~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 15%~^36^^6.25^4.27^9.02^3.87 -~17014~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 13%~^35^^6.25^4.27^9.02^3.87 -~17015~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17016~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17017~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 20%, separable fat 11%~^31^^6.25^4.27^9.02^3.87 -~17018~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17019~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17020~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17021~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 20%~^43^^6.25^4.27^9.02^3.87 -~17022~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 23%, separable fat 18%~^41^^6.25^4.27^9.02^3.87 -~17023~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17024~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87 -~17025~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17026~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 25%~^46^^6.25^4.27^9.02^3.87 -~17027~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 21%~^44^^6.25^4.27^9.02^3.87 -~17028~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 22%, separable fat 22%~^44^^6.25^4.27^9.02^3.87 -~17029~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17030~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87 -~17031~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17032~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 27%, separable fat 30%~^57^^6.25^4.27^9.02^3.87 -~17033~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 30%, separable fat 25%~^55^^6.25^4.27^9.02^3.87 -~17034~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 28%, separable fat 27%~^55^^6.25^4.27^9.02^3.87 -~17035~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%~^21^^6.25^4.27^9.02^3.87 -~17036~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17037~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17038~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87 -~17039~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%, separable fat 18%~^39^^6.25^4.27^9.02^3.87 -~17040~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 25%, separable fat 15%~^40^^6.25^4.27^9.02^3.87 -~17041~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 24%, separable fat 14%~^38^^6.25^4.27^9.02^3.87 -~17042~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 15%~^37^^6.25^4.27^9.02^3.87 -~17043~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17044~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17045~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^19^^6.25^4.27^9.02^3.87 -~17046~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17047~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 17%, separable fat 20%~^37^^6.25^4.27^9.02^3.87 -~17048~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 20%, separable fat 18%~^38^^6.25^4.27^9.02^3.87 -~17049~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 19%, separable fat 17%~^36^^6.25^4.27^9.02^3.87 -~17050~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87 -~17051~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17052~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17053~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17054~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17055~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 24%, separable fat 16%~^40^^6.25^4.27^9.02^3.87 -~17056~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 28%, separable fat 14%~^42^^6.25^4.27^9.02^3.87 -~17057~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 27%, separable fat 13%~^40^^6.25^4.27^9.02^3.87 -~17058~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87 -~17059~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, raw~^~LAMB,CUBED FOR STEW OR KABOB (LEG & SHOULDER),LN,1/4"FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17060~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, braised~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17061~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, broiled~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~17062~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17063~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,CKD~^^^^~Bone~^31^^6.25^4.27^9.02^3.87 -~17064~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 30%, separable fat 20%~^50^^6.25^4.27^9.02^3.87 -~17065~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,CKD~^^^^~Bone 31%, separable fat 18%~^49^^6.25^4.27^9.02^3.87 -~17066~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17067~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17068~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 36%~^36^^^^^ -~17069~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 41%~^41^^^^^ -~17070~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN,RAW~^^^^~Bone and connective tissue 36%, separable fat 7%~^43^^6.25^^^ -~17071~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN,CKD,BRSD~^^^^~Bone 41%, separable fat 7%~^48^^6.25^^^ -~17072~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 15%~^15^^^^^ -~17073~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN&FAT,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17074~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 15%, separable fat 12%~^27^^6.25^^^ -~17075~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean only, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN,CKD,RSTD~^^^^~Bone 24%, separable fat 12%~^36^^6.25^4.27^9.02^3.87 -~17076~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,RAW~^^^^~Bone and connective tissue 20%~^20^^^^^ -~17077~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87 -~17078~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN,RAW~^^^^~Bone and connective tissue 20%, separable fat 23%~^43^^6.25^^^ -~17079~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean only, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN,CKD,BRLD~^^^^~Bone 27%, separable fat 22%~^49^^6.25^4.27^9.02^3.87 -~17080~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17081~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%~^23^^^^^ -~17082~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 24%, separable fat 11%~^35^^6.25^^^ -~17083~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%, separable fat 11%~^34^^6.25^^^ -~17084~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17085~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17086~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,RAW~^^^^~Bone and connective tissue 25%, separable fat 17%~^42^^6.25^^^ -~17087~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 17%~^46^^6.25^4.27^9.02^3.87 -~17088~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, raw~^~VEAL,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^31^~Bos taurus~^6.25^4.27^9.02^3.87 -~17089~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, cooked~^~VEAL,COMP OF RTL CUTS,LN&FAT,CKD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17090~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, raw~^~VEAL,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17091~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, cooked~^~VEAL,COMP OF RTL CUTS,LN,CKD~^^^~Y~^~Bone 28%, separable fat 6%~^34^^6.25^4.27^9.02^3.87 -~17092~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, raw~^~VEAL,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17093~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, cooked~^~VEAL,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17094~^~1700~^~Veal, leg (top round), separable lean and fat, raw~^~VEAL,LEG (TOP RND),LN&FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17095~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, braised~^~VEAL,LEG (TOP RND),LN&FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17096~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17097~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17098~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, roasted~^~VEAL,LEG (TOP RND),LN&FAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17099~^~1700~^~Veal, leg (top round), separable lean only, raw~^~VEAL,LEG (TOP RND),LN,RAW~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17100~^~1700~^~Veal, leg (top round), separable lean only, cooked, braised~^~VEAL,LEG (TOP RND),LN,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17101~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17102~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^~Separable fat~^5^^6.25^4.27^9.02^3.87 -~17103~^~1700~^~Veal, leg (top round), separable lean only, cooked, roasted~^~VEAL,LEG (TOP RND),LN,CKD,RSTD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87 -~17104~^~1700~^~Veal, loin, separable lean and fat, raw~^~VEAL,LOIN,LN&FAT,RAW~^~IMPS# 332~^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87 -~17105~^~1700~^~Veal, loin, separable lean and fat, cooked, braised~^~VEAL,LOIN,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17106~^~1700~^~Veal, loin, separable lean and fat, cooked, roasted~^~VEAL,LOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87 -~17107~^~1700~^~Veal, loin, separable lean only, raw~^~VEAL,LOIN,LN,RAW~^~IMPS # 332~^^^~Bone 30%, separable fat 10%~^40^^^^^ -~17108~^~1700~^~Veal, loin, separable lean only, cooked, braised~^~VEAL,LOIN,LN,CKD,BRSD~^^^~Y~^~Bone 36%, separable fat 9%~^45^^6.25^4.27^9.02^3.87 -~17109~^~1700~^~Veal, loin, separable lean only, cooked, roasted~^~VEAL,LOIN,LN,CKD,RSTD~^^^~Y~^~Bone 36%, separable fat 6%~^42^^6.25^4.27^9.02^3.87 -~17110~^~1700~^~Veal, rib, separable lean and fat, raw~^~VEAL,RIB,LN&FAT,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87 -~17111~^~1700~^~Veal, rib, separable lean and fat, cooked, braised~^~VEAL,RIB,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87 -~17112~^~1700~^~Veal, rib, separable lean and fat, cooked, roasted~^~VEAL,RIB,LN&FAT,CKD,RSTD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17113~^~1700~^~Veal, rib, separable lean only, raw~^~VEAL,RIB,LN,RAW~^^^^~Bone 35%, separable fat 5%~^40^^6.25^4.27^9.02^3.87 -~17114~^~1700~^~Veal, rib, separable lean only, cooked, braised~^~VEAL,RIB,LN,CKD,BRSD~^^^~Y~^~Bone 37%, separable fat 5%~^42^^6.25^4.27^9.02^3.87 -~17115~^~1700~^~Veal, rib, separable lean only, cooked, roasted~^~VEAL,RIB,LN,CKD,RSTD~^^^^~Bone 33%, separable fat 7%~^40^^6.25^4.27^9.02^3.87 -~17116~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,RAW~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87 -~17117~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87 -~17118~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17119~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN,RAW~^^^^~Bone 28%, separable fat 3%~^31^^6.25^4.27^9.02^3.87 -~17120~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87 -~17121~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,RSTD~^^^^~Bone 28%, separable fat 2%~^30^^6.25^4.27^9.02^3.87 -~17122~^~1700~^~Veal, shoulder, arm, separable lean and fat, raw~^~VEAL,SHLDR,ARM,LN&FAT,RAW~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87 -~17123~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, braised~^~VEAL,SHLDR,ARM,LN&FAT,CKD,BRSD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17124~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,ARM,LN&FAT,CKD,RSTD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17125~^~1700~^~Veal, shoulder, arm, separable lean only, raw~^~VEAL,SHLDR,ARM,LN,RAW~^^^^~Bone 21%, separable fat 4%~^25^^6.25^4.27^9.02^3.87 -~17126~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, braised~^~VEAL,SHLDR,ARM,LN,CKD,BRSD~^^^^~Bone 23%, separable fat 6%~^29^^6.25^4.27^9.02^3.87 -~17127~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, roasted~^~VEAL,SHLDR,ARM,LN,CKD,RSTD~^^^^~Bone 21%, separable fat 3%~^24^^6.25^4.27^9.02^3.87 -~17128~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, raw~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,RAW~^~IMPS# 1309~^^^~Bone and connective tissue 22%~^22^^6.25^4.27^9.02^3.87 -~17129~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, braised~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87 -~17130~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,RSTD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17131~^~1700~^~Veal, shoulder, blade chop, separable lean only, raw~^~VEAL,SHLDR,BLADE CHOP,LN,RAW~^~IMPS # 1309A~^^^~Bone and connective tissue 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87 -~17132~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, braised~^~VEAL,SHLDR,BLADE,LN,CKD,BRSD~^^^~Y~^~Bone 35%, separable fat 4%~^39^^6.25^4.27^9.02^3.87 -~17133~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, roasted~^~VEAL,SHLDR,BLADE,LN,CKD,RSTD~^^^^~Bone 32%, separable fat 2%~^34^^6.25^4.27^9.02^3.87 -~17134~^~1700~^~Veal, sirloin, separable lean and fat, raw~^~VEAL,SIRLOIN,LN&FAT,RAW~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17135~^~1700~^~Veal, sirloin, separable lean and fat, cooked, braised~^~VEAL,SIRLOIN,LN&FAT,CKD,BRSD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17136~^~1700~^~Veal, sirloin, separable lean and fat, cooked, roasted~^~VEAL,SIRLOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87 -~17137~^~1700~^~Veal, sirloin, separable lean only, raw~^~VEAL,SIRLOIN,LN,RAW~^^^^~Bone 25%, separable fat 6%~^31^^6.25^4.27^9.02^3.87 -~17138~^~1700~^~Veal, sirloin, separable lean only, cooked, braised~^~VEAL,SIRLOIN,LN,CKD,BRSD~^^^^~Bone 26%, separable fat 8%~^34^^6.25^4.27^9.02^3.87 -~17139~^~1700~^~Veal, sirloin, separable lean only, cooked, roasted~^~VEAL,SIRLOIN,LN,CKD,RSTD~^^^^~Bone 25%, separable fat 5%~^30^^6.25^4.27^9.02^3.87 -~17140~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, raw~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17141~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, cooked, braised~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17142~^~1700~^~Veal, ground, raw~^~VEAL,GROUND,RAW~^~IMPS 396~^^^^0^^6.25^4.27^9.02^3.87 -~17143~^~1700~^~Veal, ground, cooked, broiled~^~VEAL,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17144~^~1700~^~Game meat, antelope, raw~^~GAME MEAT,ANTELOPE,RAW~^^^^^0^~Antilocapra americana, Bosephalus tragocamelus~^6.25^4.27^9.02^3.87 -~17145~^~1700~^~Game meat, antelope, cooked, roasted~^~GAME MEAT,ANTELOPE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17146~^~1700~^~Game meat, bear, raw~^~GAME MEAT,BEAR,RAW~^^^^^0^~Ursus arctos, Euarctos spp.~^6.25^4.27^9.02^3.87 -~17147~^~1700~^~Game meat, bear, cooked, simmered~^~GAME MEAT,BEAR,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17148~^~1700~^~Bison, ground, grass-fed, cooked~^~BISON,GROUND,GRASS-FED,CKD~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17149~^~1700~^~Bison, ground, grass-fed, raw~^~BISON,GROUND,GRASS-FED,RAW~^~Buffalo~^^^^0^~Bison bison~^^^^ -~17150~^~1700~^~Game meat, beaver, raw~^~GAME MEAT,BEAVER,RAW~^^^^^0^~Castor canadensis~^6.25^4.27^9.02^3.87 -~17151~^~1700~^~Game meat, beaver, cooked, roasted~^~GAME MEAT,BEAVER,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17152~^~1700~^~Game meat, beefalo, composite of cuts, raw~^~GAME MEAT,BEEFALO,COMP OF CUTS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17153~^~1700~^~Game meat, beefalo, composite of cuts, cooked, roasted~^~GAME MEAT,BEEFALO,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17154~^~1700~^~Veal, Australian, separable fat, raw~^~VEAL,AUSTRALIAN,FAT,RAW~^^^^^0^^6.25^^^ -~17155~^~1700~^~Veal, Australian, rib, rib roast, separable lean and fat, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN & FAT,RAW~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17156~^~1700~^~Game meat, bison, separable lean only, raw~^~GAME MEAT,BISON,LN,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17157~^~1700~^~Game meat, bison, separable lean only, cooked, roasted~^~GAME MEAT,BISON,LN,CKD,RSTD~^~buffalo~^^~Y~^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17158~^~1700~^~Game meat, boar, wild, raw~^~GAME MEAT,BOAR,WILD,RAW~^^^^^0^~Sus scrofa~^6.25^4.27^9.02^3.87 -~17159~^~1700~^~Game meat, boar, wild, cooked, roasted~^~GAME MEAT,BOAR,WILD,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17160~^~1700~^~Game meat, buffalo, water, raw~^~GAME MEAT,BUFFALO,H2O,RAW~^^^^^0^~Bubalus bubalis~^6.25^4.27^9.02^3.87 -~17161~^~1700~^~Game meat, buffalo, water, cooked, roasted~^~GAME MEAT,BUFFALO,H2O,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17162~^~1700~^~Game meat, caribou, raw~^~GAME MEAT,CARIBOU,RAW~^^^^^0^~Rangifer spp.~^6.25^4.27^9.02^3.87 -~17163~^~1700~^~Game meat, caribou, cooked, roasted~^~GAME MEAT,CARIBOU,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17164~^~1700~^~Game meat, deer, raw~^~GAME MEAT,DEER,RAW~^^^^^0^~Odocoileus spp.~^6.25^4.27^9.02^3.87 -~17165~^~1700~^~Game meat, deer, cooked, roasted~^~GAME MEAT,DEER,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17166~^~1700~^~Game meat, elk, raw~^~GAME MEAT,ELK,RAW~^^^^^0^~Cervus elaphyus~^6.25^4.27^9.02^3.87 -~17167~^~1700~^~Game meat, elk, cooked, roasted~^~GAME MEAT,ELK,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17168~^~1700~^~Game meat, goat, raw~^~GAME MEAT,GOAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17169~^~1700~^~Game meat, goat, cooked, roasted~^~GAME MEAT,GOAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17170~^~1700~^~Game meat, horse, raw~^~GAME MEAT,HORSE,RAW~^^^^^0^~Equus caballus~^6.25^4.27^9.02^3.87 -~17171~^~1700~^~Game meat, horse, cooked, roasted~^~GAME MEAT,HORSE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17172~^~1700~^~Game meat, moose, raw~^~GAME MEAT,MOOSE,RAW~^^^^^0^~Alces alces~^6.25^4.27^9.02^3.87 -~17173~^~1700~^~Game meat, moose, cooked, roasted~^~GAME MEAT,MOOSE,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17174~^~1700~^~Game meat, muskrat, raw~^~GAME MEAT,MUSKRAT,RAW~^^^^^0^~Ondatra zibethica~^6.25^4.27^9.02^3.87 -~17175~^~1700~^~Game meat, muskrat, cooked, roasted~^~GAME MEAT,MUSKRAT,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17176~^~1700~^~Game meat, opossum, cooked, roasted~^~GAME MEAT,OPOSSUM,CKD,RSTD~^^^~Y~^^0^~Didelphis virginiana~^6.25^4.27^9.02^3.87 -~17177~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, raw~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,RAW~^^^^^0^~Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17178~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, roasted~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87 -~17179~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, stewed~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17180~^~1700~^~Game meat, rabbit, wild, raw~^~GAME MEAT,RABBIT,WILD,RAW~^^^^^0^~Sylvilagus spp., Oryctolagus spp.~^6.25^4.27^9.02^3.87 -~17181~^~1700~^~Game meat, rabbit, wild, cooked, stewed~^~GAME MEAT,RABBIT,WILD,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17182~^~1700~^~Game meat, raccoon, cooked, roasted~^~GAME MEAT,RACCOON,CKD,RSTD~^^^~Y~^^0^~Procyon lotor~^6.25^4.27^9.02^3.87 -~17183~^~1700~^~Game meat, squirrel, raw~^~GAME MEAT,SQUIRREL,RAW~^^^^^0^~Sciuridae~^6.25^4.27^9.02^3.87 -~17184~^~1700~^~Game meat, squirrel, cooked, roasted~^~GAME MEAT,SQUIRREL,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17185~^~1700~^~Lamb, variety meats and by-products, brain, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^2^^6.25^4.27^9.02^3.87 -~17186~^~1700~^~Lamb, variety meats and by-products, brain, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17187~^~1700~^~Lamb, variety meats and by-products, brain, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17188~^~1700~^~Veal, variety meats and by-products, brain, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^3^^6.25^4.27^9.02^3.87 -~17189~^~1700~^~Veal, variety meats and by-products, brain, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17190~^~1700~^~Veal, variety meats and by-products, brain, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17191~^~1700~^~Lamb, variety meats and by-products, heart, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^22^^6.25^4.27^9.02^3.87 -~17192~^~1700~^~Lamb, variety meats and by-products, heart, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17193~^~1700~^~Veal, variety meats and by-products, heart, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^26^^6.25^4.27^9.02^3.87 -~17194~^~1700~^~Veal, variety meats and by-products, heart, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17195~^~1700~^~Lamb, variety meats and by-products, kidneys, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^3^^6.25^4.27^9.02^3.87 -~17196~^~1700~^~Lamb, variety meats and by-products, kidneys, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17197~^~1700~^~Veal, variety meats and by-products, kidneys, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^12^^6.25^4.27^9.02^3.87 -~17198~^~1700~^~Veal, variety meats and by-products, kidneys, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17199~^~1700~^~Lamb, variety meats and by-products, liver, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17200~^~1700~^~Lamb, variety meats and by-products, liver, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17201~^~1700~^~Lamb, variety meats and by-products, liver, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87 -~17202~^~1700~^~Veal, variety meats and by-products, liver, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17203~^~1700~^~Veal, variety meats and by-products, liver, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17204~^~1700~^~Veal, variety meats and by-products, liver, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87 -~17205~^~1700~^~Lamb, variety meats and by-products, lungs, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17206~^~1700~^~Lamb, variety meats and by-products, lungs, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17207~^~1700~^~Veal, variety meats and by-products, lungs, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87 -~17208~^~1700~^~Veal, variety meats and by-products, lungs, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17209~^~1700~^~Lamb, variety meats and by-products, mechanically separated, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17210~^~1700~^~Lamb, variety meats and by-products, pancreas, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17211~^~1700~^~Lamb, variety meats and by-products, pancreas, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17212~^~1700~^~Veal, variety meats and by-products, pancreas, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17213~^~1700~^~Veal, variety meats and by-products, pancreas, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17214~^~1700~^~Lamb, variety meats and by-products, spleen, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17215~^~1700~^~Lamb, variety meats and by-products, spleen, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17216~^~1700~^~Veal, variety meats and by-products, spleen, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17217~^~1700~^~Veal, variety meats and by-products, spleen, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87 -~17218~^~1700~^~Veal, variety meats and by-products, thymus, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17219~^~1700~^~Veal, variety meats and by-products, thymus, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^~Y~^~Membranes 3.69%~^4^^6.25^4.27^9.02^3.87 -~17220~^~1700~^~Lamb, variety meats and by-products, tongue, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17221~^~1700~^~Lamb, variety meats and by-products, tongue, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17222~^~1700~^~Veal, variety meats and by-products, tongue, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11 -~17223~^~1700~^~Veal, variety meats and by-products, tongue, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11 -~17224~^~1700~^~Lamb, ground, raw~^~LAMB,GROUND,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17225~^~1700~^~Lamb, ground, cooked, broiled~^~LAMB,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~17226~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17227~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,CKD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17228~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87 -~17229~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^56^^6.25^4.27^9.02^3.87 -~17230~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17231~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17232~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17233~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17234~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17235~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17236~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17237~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17238~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87 -~17239~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17240~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87 -~17241~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87 -~17242~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17243~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17244~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17245~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17246~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17247~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87 -~17248~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17249~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RSTD~^^^^~Bone~^18^^6.25^4.27^9.02^3.87 -~17250~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17251~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87 -~17252~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17253~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17254~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17255~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CKD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87 -~17256~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17257~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^50^^6.25^4.27^9.02^3.87 -~17258~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87 -~17259~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8",CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17260~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17261~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17262~^~1700~^~Lamb, new zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,RIB,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87 -~17263~^~1700~^~Lamb, New Zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,RIB,LN & FAT,1/8" FAT,CKD,RSTD~^^^^~Bone~^34^^6.25^4.27^9.02^3.87 -~17264~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN & FAT,1/8",RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17265~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHDR,WHL (ARM&BLD),LN & FAT,1/8",CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17267~^~1700~^~Game meat, bison, top sirloin, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,TOP SIRLOIN,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17268~^~1700~^~Game meat, bison, ribeye, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,RIBEYE,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17269~^~1700~^~Game meat, bison, shoulder clod, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,SHLDR CLOD,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17270~^~1700~^~Veal, breast, separable fat, cooked~^~VEAL,BREAST,FAT,CKD~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17271~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, raw~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,RAW~^^^^^0^~Bos taurus~^6.25^4.27^9.02^ -~17272~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^7^~Bos taurus~^6.25^4.27^9.02^ -~17273~^~1700~^~Veal, breast, plate half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,PLATE HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^11^~Bos taurus~^6.25^4.27^9.02^ -~17274~^~1700~^~Veal, breast, point half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,POINT HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^4^~Bos taurus~^6.25^4.27^9.02^ -~17275~^~1700~^~Veal, breast, whole, boneless, separable lean only, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 7%, separable fat 15%~^22^~Bos taurus~^6.25^4.27^9.02^ -~17276~^~1700~^~Veal, shank (fore and hind), separable lean and fat, raw~^~VEAL,SHANK (FORE&HIND),LN&FAT,RAW~^^^^~Bone~^29^~Bos taurus~^6.25^4.27^9.02^ -~17277~^~1700~^~Veal, shank (fore and hind), separable lean and fat, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN&FAT,CKD,BRSD~^^^^~Bone~^39^~Bos taurus~^6.25^4.27^9.02^ -~17278~^~1700~^~Veal, shank (fore and hind), separable lean only, raw~^~VEAL,SHANK (FORE&HIND),LN,RAW~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17279~^~1700~^~Veal, shank (fore and hind), separable lean only, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^ -~17280~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17281~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17282~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,RAW~^^^^~Bone 20%, separable fat 14%~^34^^6.25^4.27^9.02^3.87 -~17283~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 10%~^32^^6.25^4.27^9.02^3.87 -~17284~^~1700~^~Lamb, Australian, imported, fresh, separable fat, raw~^~LAMB,AUS,IMP,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87 -~17285~^~1700~^~Lamb, Australian, imported, fresh, separable fat, cooked~^~LAMB,AUS,IMP,FRSH,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87 -~17286~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^42^^6.25^4.27^9.02^3.87 -~17287~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^45^^6.25^4.27^9.02^3.87 -~17288~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,RAW~^^^^~Bone 42%, separable fat 8%~^50^^6.25^4.27^9.02^3.87 -~17289~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 45%, separable fat 8%~^53^^6.25^4.27^9.02^3.87 -~17290~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^14^^6.25^4.27^9.02^3.87 -~17291~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87 -~17292~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,RAW~^^^^~Bone 14%, separable fat 14%~^28^^6.25^4.27^9.02^3.87 -~17293~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,CKD,RSTD~^^^^~Bone 16%, separable fat 10%~^26^^6.25^4.27^9.02^3.87 -~17294~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87 -~17295~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87 -~17296~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,RAW~^^^^~Bone 17%, separable fat 11%~^28^^6.25^4.27^9.02^3.87 -~17297~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87 -~17298~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17299~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HLF,BNLESS,LN&FT,1/8"FAT,CKD,RSTD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17300~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 22%~^24^^6.25^4.27^9.02^3.87 -~17301~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HALF,BNLESS,LN,1/8"FAT,CKD,RSTD~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17302~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87 -~17303~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHPS,BNLESS,LN&FT,1/8"FT,CKD,BRLD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87 -~17304~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN CHOPS,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87 -~17305~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN,1/8"FAT,CKD,BRLD~^^^^~Connective tissue 1%, separable fat 10%~^11^^6.25^4.27^9.02^3.87 -~17306~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^6^^6.25^4.27^9.02^3.87 -~17307~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLCE,BNE-IN,LN&FT,1/8"FT,CKD,BRLD~^^^^~Bone~^7^^6.25^4.27^9.02^3.87 -~17308~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,RAW~^^^^~Bone 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87 -~17309~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 7%, separable fat 7%~^14^^6.25^4.27^9.02^3.87 -~17310~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17311~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87 -~17312~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 8%~^36^^6.25^4.27^9.02^3.87 -~17313~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 26%, separable fat 5%~^31^^6.25^4.27^9.02^3.87 -~17314~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN & FT,1/8",RAW~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17315~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRENCHED,BNE-IN,LN & FAT,1/8",GRILLED~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17316~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN,1/8",RAW~^~URMIS #2951~^^^~Bone and connective tissue 25%, separable fat 20%~^45^^^^^ -~17317~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,BONE-IN,LN,1/8",CKD,GRILLED~^~URMIS #2951~^^^~Bone and connective tissue 29%, separable fat 16%~^45^^^^^ -~17318~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17319~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87 -~17320~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,RAW~^^^^~Bone 22%, separable fat 16%~^38^^6.25^4.27^9.02^3.87 -~17321~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 12%~^34^^6.25^4.27^9.02^3.87 -~17322~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^9^^6.25^4.27^9.02^3.87 -~17323~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87 -~17324~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,RAW~^^^^~Bone 9%, separable fat 19%~^28^^6.25^4.27^9.02^3.87 -~17325~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 13%, separable fat 16%~^29^^6.25^4.27^9.02^3.87 -~17326~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87 -~17327~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87 -~17328~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 15%~^43^^6.25^4.27^9.02^3.87 -~17329~^~1700~^~Lamb, Australian, imported, fresh, shoulder ,blade, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 25%, separable fat 11%~^36^^6.25^4.27^9.02^3.87 -~17330~^~1700~^~Game meat , bison, ground, raw~^~GAME MEAT BISON,GROUND,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17331~^~1700~^~Game meat, bison, ground, cooked, pan-broiled~^~GAME MEAT,BISON,GROUND,CKD,PAN-BROILED~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87 -~17332~^~1700~^~Game meat , bison, top sirloin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT BISON,TOP SIRLOIN,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 4%, separable fat, 4%~^8^~Bison bison~^6.25^4.27^9.02^3.87 -~17333~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,CKD,BRSD~^~buffalo~^^^~Connective tissue, 8%, separable fat, 3%~^11^~Bison bison~^6.25^4.27^9.02^3.87 -~17334~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, raw~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,RAW~^~buffalo~^^^~Connective tissue, 8%, separable fat, 4%~^12^~Bison bison~^6.25^4.27^9.02^3.87 -~17335~^~1700~^~Game meat, bison, ribeye, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,RIBEYE,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 9%, separable fat, 5%~^14^~Bison bison~^6.25^4.27^9.02^3.87 -~17336~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 3.5%, separable fat, 0.72%~^4^~Bison bison~^6.25^4.27^9.02^3.87 -~17337~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, raw~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,RAW~^~buffalo~^^^~Connective tissue, 3%, separable fat, 2%~^5^~Bison bison~^6.25^4.27^9.02^3.87 -~17338~^~1700~^~Game meat, elk, ground, raw~^~GAME MEAT,ELK,GROUND,RAW~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17339~^~1700~^~Game meat, elk, ground, cooked, pan-broiled~^~GAME MEAT,ELK,GROUND,CKD,PAN-BROILED~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17340~^~1700~^~Game meat, elk, loin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,LOIN,LN,CKD,BRLD~^^^^~Connective tissue, 2%, separable fat, 4%~^6^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17341~^~1700~^~Game meat, elk, round, separable lean only, cooked, broiled~^~GAME MEAT,ELK,RND,LN,CKD,BRLD~^^^^~Connective tissue, 4%, separable fat, 1%~^5^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17342~^~1700~^~Game meat, elk, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue, 3%, separable fat, 1%~^4^~Cervus elaphus~^6.25^4.27^9.02^3.87 -~17343~^~1700~^~Game meat, deer, ground, raw~^~GAME MEAT,DEER,GROUND,RAW~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17344~^~1700~^~Game meat, deer, ground, cooked, pan-broiled~^~GAME MEAT,DEER,GROUND,CKD,PAN-BROILED~^~Venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17345~^~1700~^~Game meat, deer, loin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,LOIN,LN,1" STEAK,CKD,BRLD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17346~^~1700~^~Game meat, deer, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,DEER,SHLDR CLOD,LN,CKD,BRSD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17347~^~1700~^~Game meat, deer, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,DEER,TENDERLOIN,LN,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17348~^~1700~^~Game meat, deer, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,TOP RND,LN,1" STEAK,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87 -~17349~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 39%, separable fat 3%~^42^^6.25^^^ -~17350~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 39%~^39^^^^^ -~17351~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 31%, separable fat 4%~^35^^6.25^^^ -~17352~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 31%~^31^^^^^ -~17353~^~1700~^~Lamb, Australian, ground, 85% lean / 15% fat, raw~^~LAMB,AUSTRALIAN,GROUND,85% LN / 15% FAT,RAW~^^^^^0^^6.25^^^ -~17354~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, cooked~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^0^^6.25^^^ -~17355~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, raw~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^0^^6.25^^^ -~17356~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, raw~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~17357~^~1700~^~Lamb, New Zealand, imported, brains, cooked, soaked and fried~^~LAMB,NZ,IMP,BRAINS,CKD,SOAKED & FRIED~^^^^^0^^6.25^^^ -~17358~^~1700~^~Lamb, New Zealand, imported, brains, raw~^~LAMB,NZ,IMP,BRAINS,RAW~^^^^~Connective tissue 2%~^2^^6.25^^^ -~17359~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, cooked, braised~^~LAMB,NZ,IMP,BREAST,LN,CKD,BRSD~^^^^~Bone and connective tissue 28% Separable fat 37%~^65^^6.25^^^ -~17360~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, raw~^~LAMB,NZ,IMP,BREAST,LN,RAW~^^^^~Bone and connective tissue 26% Separable fat 39%~^65^^6.25^^^ -~17361~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,CKD,FAST RSTD~^^^^~Separable fat 21%~^21^^6.25^^^ -~17362~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, cooked~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~17363~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, raw~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,RAW~^^^^~Connective tissue 1% Separable fat 22%~^23^^6.25^^^ -~17364~^~1700~^~Lamb, New Zealand, imported, kidney, cooked, soaked and fried~^~LAMB,NZ,IMP,KIDNEY,CKD,SOAKED & FRIED~^^^^~Connective tissue 5%~^5^^6.25^^^ -~17365~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 1% Separable fat 34%~^35^^6.25^^^ -~17366~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,RAW~^^^^~Separable fat 32%~^32^^6.25^^^ -~17367~^~1700~^~Lamb, New Zealand, imported, kidney, raw~^~LAMB,NZ,IMP,KIDNEY,RAW~^^^^~Connectiv tissue 4%~^4^^6.25^^^ -~17368~^~1700~^~Lamb, New Zealand, imported, liver, cooked, soaked and fried~^~LAMB,NZ,IMP,LIVER,CKD,SOAKED & FRIED~^^^^~Connective tissue 1%~^1^^6.25^^^ -~17369~^~1700~^~Lamb, New Zealand, imported, liver, raw~^~LAMB,NZ,IMP,LIVER,RAW~^^^^^0^^6.25^^^ -~17370~^~1700~^~Lamb, New Zealand, imported, ground lamb, cooked, braised~^~LAMB,NZ,IMP,GROUND LAMB,CKD,BRSD~^^^^^^^6.25^^^ -~17371~^~1700~^~Lamb, New Zealand, imported, ground lamb, raw~^~LAMB,NZ,IMP,GROUND LAMB,RAW~^^^^^^^6.25^^^ -~17372~^~1700~^~Lamb, New Zealand, imported, heart, cooked, soaked and simmered~^~LAMB,NZ,IMP,HEART,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 11% Separable fat 17%~^28^^6.25^^^ -~17373~^~1700~^~Lamb, New Zealand, imported, heart, raw~^~LAMB,NZ,IMP,HEART,RAW~^^^^~Connective tissue 10% Separable fat 14%~^24^^6.25^^^ -~17374~^~1700~^~Lamb, New Zealand, imported, sweetbread, cooked, soaked and simmered~^~LAMB,NZ,IMP,SWEETBREAD,CKD,SOAKED & SIMMRD~^^^^~Separable fat 3%~^3^^6.25^^^ -~17375~^~1700~^~Lamb, New Zealand, imported, sweetbread, raw~^~LAMB,NZ,IMP,SWEETBREAD,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~17376~^~1700~^~Lamb, New Zealand, imported, testes, cooked, soaked and fried~^~LAMB,NZ,IMP,TESTES,CKD,SOAKED & FRIED~^^^^~Connective tissue 25%~^25^^6.25^^^ -~17377~^~1700~^~Lamb, New Zealand, imported, testes, raw~^~LAMB,NZ,IMP,TESTES,RAW~^^^^~Connective tissue 17%~^17^^6.25^^^ -~17378~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, cooked, soaked and simmered~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 12% Separable fat 6%~^18^^6.25^^^ -~17379~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, raw~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,RAW~^^^^~Connective tissue 18% Separable fat 8%~^26^^6.25^^^ -~17380~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,TUNNEL-BNED LG,CHMP OFF,SHNK OFF,LN,CKD,SLW RSTD~^^^^~Separable fat 10%~^10^^6.25^^^ -~17381~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LEG,CHUMP OFF,SHANK OFF,LN,RAW~^^^^~Separable fat 15%~^15^^6.25^^^ -~17382~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 26% Separable fat 13%~^39^^6.25^^^ -~17383~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,RAW~^^^^~Bone and connective tissue 23% Separable fat 17%~^40^^6.25^^^ -~17384~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~17385~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~17386~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 17%~^42^^6.25^^^ -~17387~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN,RAW~^^^^~Bone and connective tissue 24% Separable fat 19%~^43^^6.25^^^ -~17388~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,CKD,FAST RSTD~^^^^^0^^6.25^^^ -~17389~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,RAW~^^^^^0^^6.25^^^ -~17390~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 7%~^41^^6.25^^^ -~17391~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN,RAW~^^^^~Bone and connective tissue 28% Separable fat 9%~^37^^6.25^^^ -~17392~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN,RAW~^^^^~Bone and connective tissue 32% Separable fat 10%~^42^^6.25^^^ -~17393~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 8%~^42^^6.25^^^ -~17394~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,CKD,SLOW RSTD~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17395~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,RAW~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^ -~17396~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 4%~^29^^6.25^^^ -~17397~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 27% Separable fat 3%~^30^^6.25^^^ -~17398~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 22% Separable fat 22%~^44^^6.25^^^ -~17399~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27% Separable fat 18%~^45^^6.25^^^ -~17400~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 12% Separable fat 9%~^21^^6.25^^^ -~17401~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 1%~^1^^^^^ -~17402~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17403~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17404~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 29%~^29^^^^^ -~17405~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 12%~^12^^^^^ -~17406~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 22%~^22^^^^^ -~17407~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17408~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^ -~17409~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~17410~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,RAW~^^^^^0^^^^^ -~17411~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^ -~17412~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 32%~^32^^^^^ -~17413~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,L & F,CKD,SLOW RSTD~^^^^~Connective tissue 2%~^2^^^^^ -~17414~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN & FAT,RAW~^^^^~Connective tissue 2%~^2^^^^^ -~17415~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue26~^26^^^^^ -~17416~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 23%~^23^^^^^ -~17417~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27%~^27^^^^^ -~17418~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~17419~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^ -~17420~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 26%~^26^^^^^ -~17421~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,TUN-BND LG,CHMP OFF,SHNK OFF,L & F,CKD,SL RSTD~^^^^^0^^^^^ -~17422~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LG,CHUMP OFF,SHANK OFF,LN & FAT,RAW~^^^^^0^^6.25^^^ -~17423~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~17424~^~1700~^~Veal, ground, cooked, pan-fried~^~VEAL,GROUND,CKD,PAN-FRIED~^~IMPS 396~^^^^^^^^^ -~17425~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, cooked, grilled~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,CKD,GRILLED~^~IMPS#1336~^^^^0^^^^^ -~17426~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, raw~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,RAW~^~IMPS# 1336~^^^^0^^^^^ -~17427~^~1700~^~Veal, loin, chop, separable lean only, cooked, grilled~^~VEAL,LOIN,CHOP,LN,CKD,GRILLED~^~IMPS #1332~^^^~Bone and connective tissue 30%, separable fat 8%~^38^^^^^ -~17428~^~1700~^~Veal, shank, separable lean only, raw~^~VEAL,SHANK,LN,RAW~^~IMPS #312~^^^~Bone and connective tissue 48%, separable fat 3%~^51^^^^^ -~17429~^~1700~^~Veal, foreshank, osso buco, separable lean only, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN,CKD,BRSD~^~IMPS # 1312~^^^~Bone and connective tissue 47%, separable fat 4%~^51^^^^^ -~17430~^~1700~^~Veal, shoulder, blade chop, separable lean only, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN,CKD,GRILLED~^~IMPS #1309A~^^^~Bone and connective tissue 25%, separable fat 8%~^33^^^^^ -~17431~^~1700~^~Veal, external fat only, raw~^~VEAL,EXTERNAL FAT ONLY,RAW~^^^^^^^^^^ -~17432~^~1700~^~Veal, external fat only, cooked~^~VEAL,EXTERNAL FAT ONLY,CKD~^^^^^^^^^^ -~17433~^~1700~^~Veal, seam fat only, raw~^~VEAL,SEAM FAT ONLY,RAW~^^^^^^^^^^ -~17434~^~1700~^~Veal, seam fat only, cooked~^~VEAL,SEAM FAT ONLY,CKD~^^^^^^^^^^ -~17435~^~1700~^~Veal, shank, separable lean and fat, raw~^~VEAL,SHANK,LN & FAT,RAW~^~IMPS# 312~^^^~Bone and connective tissue 49%~^49^^^^^ -~17436~^~1700~^~Veal, foreshank, osso buco, separable lean and fat, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN & FAT,CKD,BRSD~^~IMPS# 1312~^^^~Bone and connective tissue 47%~^47^^^^^ -~17437~^~1700~^~Veal, loin, chop, separable lean and fat, cooked, grilled~^~VEAL,LOIN,CHOP,LN & FAT,CKD,GRILLED~^~IMPS # 1332~^^^~Bone and connective tissue 30%~^30^^^^^ -~17438~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,CKD,GRILLED~^~IMPS# 1309A~^^^~Bone and connective tissue 25%~^25^^^^^ -~17439~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2973~^^^~Connective tissue 7%, Separable fat 7%~^14^^^^^ -~17440~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8",BRSD~^~URMIS # 2969~^^^~Separable fat 4%, Bone and connective tissue 50%~^54^^^^^ -~17441~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2969~^^^~Bone and connective tissue 40%, Separable fat 12%~^52^^^^^ -~17442~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS #2961~^^^~Separable fat 1%~^1^^^^^ -~17443~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%, Separable fat 2%~^3^^^^^ -~17444~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,RAW~^~URMIS # 2973~^^^~Connective tissue 5%, Separable fat 14%~^19^^^^^ -~17445~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2994~^^^~Bone and connective tissue 29%, Separable fat 6%~^35^^^^^ -~17446~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2994~^^^~Bone and connective tissue 21%, Separable fat 10%~^31^^^^^ -~17447~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BONE-IN,LN,0",CKD,RSTD~^^^^~Bone and connective tissue 28%, Separable fat 11%~^39^^^^^ -~17448~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%, Separable fat 10%~^47^^^^^ -~17449~^~1700~^~Lamb, Australian, imported, fresh, external fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,CKD~^^^^^0^^6.25^^^ -~17450~^~1700~^~Lamb, Australian, imported, fresh, external fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~17451~^~1700~^~Lamb, Australian, imported, fresh, seam fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,CKD~^^^^^0^^6.25^^^ -~17452~^~1700~^~Lamb, Australian, imported, fresh, seam fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~17453~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,CKD,RSTD~^~URMIS #2973~^^^~Connective tissue 7%~^7^^^^^ -~17454~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2973~^^^~Connective tissue 5%~^5^^^^^ -~17455~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FT,1/8",BRSD~^~URMIS #2969~^^^~Bone and connective tissue 50%~^50^^^^^ -~17456~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FAT,1/8",RAW~^~URMIS #2969~^^^~Bone and connective tissue 40%~^40^^^^^ -~17457~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RSTD~^~URMIS #2994~^^^~Bone and connective tissue 29%~^29^^^^^ -~17458~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RAW~^~URMIS #2994~^^^~Bone and connective tissue 21%~^21^^^^^ -~17459~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RSTD~^~URMIS #2961~^^^^0^^^^^ -~17460~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%~^1^^^^^ -~17461~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,DNUDED,BONE-IN,LN,0",GRILLED~^^^^~Bone and connective tissue 36%, Separable fat 8%~^44^^^^^ -~17462~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BNE-IN,LN & FT,0",RSTD~^^^^~Bone and connective tissue 28%~^28^^^^^ -~17463~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BNE-IN,LN & FT,1/8",RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%~^37^^^^^ -~17464~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,IMP,FRSH,RIB CHOP,FRENCHED,DNUDED,BN-IN,L&F,0",GRLD~^^^^~Bone and connective tissue 36%~^36^^^^^ -~18001~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGEL,PLN,TSTD, ENR W/CA PROP(INCLUDE ONION,POPPY,SESAME)~^^^~Y~^^0^^6.25^^^ -~18002~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame), toasted~^~BAGELS,PLN,ENR,W/ CA PROP (INCLUDES ONION,POPPY,SESAME),TSTD~^^^~Y~^^0^^^^^ -~18003~^~1800~^~Bagels, egg~^~BAGELS,EGG~^^^^^0^^5.70^4.00^8.60^4.10 -~18005~^~1800~^~Bagels, cinnamon-raisin~^~BAGELS,CINNAMON-RAISIN~^^^~Y~^^0^^5.80^3.90^8.40^4.00 -~18006~^~1800~^~Bagels, cinnamon-raisin, toasted~^~BAGELS,CINNAMON-RAISIN,TSTD~^^^~Y~^^0^^0.00^^^ -~18007~^~1800~^~Bagels, oat bran~^~BAGELS,OAT BRAN~^^^~Y~^^0^^5.80^3.50^8.40^3.90 -~18009~^~1800~^~Biscuits, plain or buttermilk, frozen, baked~^~BISCUITS,PLN OR BTTRMLK,FRZ,BKD~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18010~^~1800~^~Biscuits, plain or buttermilk, dry mix~^~BISCUITS,PLN OR BTTRMLK,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18011~^~1800~^~Biscuits, plain or buttermilk, dry mix, prepared~^~BISCUITS,PLN OR BTTRMLK,DRY MIX,PREP~^^^^^0^^^^^ -~18012~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18013~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT,BKD~^^^~Y~^^0^^0.00^^^ -~18014~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat~^~BISCUIT, PLN OR BUTMLK, REFRI DOUGH, HIGHER FAT~^^^^^0^^^^^ -~18015~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,HIGHER FAT,BKD~^^^~Y~^^0^^^^^ -~18016~^~1800~^~Biscuits, plain or buttermilk, prepared from recipe~^~BISCUITS,PLN OR BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18017~^~1800~^~Biscuits, mixed grain, refrigerated dough~^~BISCUITS,MXD GRAIN,REFR DOUGH~^^^^^0^^5.70^3.90^8.80^4.00 -~18019~^~1800~^~Bread, banana, prepared from recipe, made with margarine~^~BREAD,BANANA,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18021~^~1800~^~Bread, boston brown, canned~^~BREAD,BOSTON BROWN,CANNED~^^^~Y~^^0^^5.90^3.50^8.40^3.80 -~18022~^~1800~^~Bread, cornbread, dry mix, enriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,ENR (INCL CORN MUFFIN MIX)~^^^~Y~^^0^^6.00^3.80^8.80^4.10 -~18023~^~1800~^~Bread, cornbread, dry mix, prepared with 2% milk, 80% margarine, and eggs~^~BREAD,CORNBREAD,DRY MIX,PREP W/ 2% MILK,80% MARGARINE,& EGGS~^^^~Y~^^0^^6.25^^^ -~18024~^~1800~^~Bread, cornbread, prepared from recipe, made with low fat (2%) milk~^~BREAD,CORNBREAD,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18025~^~1800~^~Bread, cracked-wheat~^~BREAD,CRACKED-WHEAT~^^^^^0^^5.80^3.80^8.80^3.90 -~18027~^~1800~^~Bread, egg~^~BREAD,EGG~^^^~Y~^^0^^0.00^^^ -~18028~^~1800~^~Bread, egg, toasted~^~BREAD,EGG,TOASTED~^^^~Y~^^0^^0.00^^^ -~18029~^~1800~^~Bread, french or vienna (includes sourdough)~^~Bread, french~^^^~Y~^^0^^^^^ -~18030~^~1800~^~Bread, french or vienna, toasted (includes sourdough)~^~BREAD, FRENCH OR VIENNA, TSTD (IND SOURDOUGH)~^^^~Y~^^0^^^^^ -~18032~^~1800~^~Bread, irish soda, prepared from recipe~^~BREAD,IRISH SODA,PREP FROM RECIPE~^^^^^0^^^^^ -~18033~^~1800~^~Bread, Italian~^~BREAD,ITALIAN~^^^~Y~^^0^^5.70^4.00^8.70^4.10 -~18036~^~1800~^~Bread, multi-grain, toasted (includes whole-grain)~^~BREAD,MULTI-GRAIN,TSTD (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~18037~^~1800~^~Bread, oat bran~^~BREAD,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18038~^~1800~^~Bread, oat bran, toasted~^~BREAD,OAT BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18039~^~1800~^~Bread, oatmeal~^~BREAD,OATMEAL~^^^~Y~^^0^^5.80^3.80^8.60^4.10 -~18040~^~1800~^~Bread, oatmeal, toasted~^~BREAD,OATMEAL,TOASTED~^^^~Y~^^0^^0.00^^^ -~18041~^~1800~^~Bread, pita, white, enriched~^~BREAD,PITA,WHITE,ENRICHED~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18042~^~1800~^~Bread, pita, whole-wheat~^~BREAD,PITA,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.40^3.80 -~18043~^~1800~^~Bread, protein (includes gluten)~^~BREAD,PROT (INCL GLUTEN)~^^^~Y~^^0^^5.70^3.90^8.40^4.10 -~18044~^~1800~^~Bread, pumpernickel~^~BREAD,PUMPERNICKEL~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18047~^~1800~^~Bread, raisin, enriched~^~BREAD,RAISIN,ENRICHED~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18048~^~1800~^~Bread, raisin, enriched, toasted~^~BREAD,RAISIN,ENR,TSTD~^^^~Y~^^0^^0.00^^^ -~18049~^~1800~^~Bread, reduced-calorie, oat bran~^~BREAD,RED-CAL,OAT BRAN~^^^~Y~^^0^^5.80^3.60^8.60^3.50 -~18050~^~1800~^~Bread, reduced-calorie, oat bran, toasted~^~BREAD,RED-CAL,OAT BRAN,TSTD~^^^~Y~^^0^^0.00^^^ -~18051~^~1800~^~Bread, reduced-calorie, oatmeal~^~BREAD,RED-CAL,OATMEAL~^^^^^0^^5.80^3.90^8.40^3.50 -~18053~^~1800~^~Bread, reduced-calorie, rye~^~BREAD,REDUCED-CALORIE,RYE~^^^~Y~^^0^^5.80^4.00^8.60^3.50 -~18055~^~1800~^~Bread, reduced-calorie, wheat~^~BREAD,RED-CAL,WHEAT~^^^~Y~^^0^^5.80^3.90^8.40^3.30 -~18057~^~1800~^~Bread, reduced-calorie, white~^~BREAD,RED-CAL,WHITE~^^^~Y~^^0^^5.90^4.00^8.70^3.40 -~18059~^~1800~^~Bread, rice bran~^~BREAD,RICE BRAN~^^^~Y~^^0^^5.80^3.70^8.70^3.90 -~18060~^~1800~^~Bread, rye~^~BREAD,RYE~^^^~Y~^^0^^5.80^3.70^8.60^4.10 -~18061~^~1800~^~Bread, rye, toasted~^~BREAD,RYE,TOASTED~^^^~Y~^^0^^0.00^^^ -~18064~^~1800~^~Bread, wheat~^~BREAD,WHEAT~^^^~Y~^^0^^^^^ -~18065~^~1800~^~Bread, wheat, toasted~^~BREAD, WHEAT, TSTD~^^^~Y~^^0^^^^^ -~18069~^~1800~^~Bread, white, commercially prepared (includes soft bread crumbs)~^~BREAD,WHITE,COMMLY PREP (INCL SOFT BREAD CRUMBS)~^^^~Y~^^0^^6.25^3.90^8.70^4.10 -~18070~^~1800~^~Bread, white, commercially prepared, toasted~^~BREAD,WHITE,COMMLY PREP,TSTD~^^^~Y~^^0^^0.00^^^ -~18071~^~1800~^~Bread, white, prepared from recipe, made with nonfat dry milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/NONFAT DRY MILK~^^^^^0^^0.00^^^ -~18073~^~1800~^~Bread, white, prepared from recipe, made with low fat (2%) milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18075~^~1800~^~Bread, whole-wheat, commercially prepared~^~BREAD,WHOLE-WHEAT,COMM. PREPARED~^^^~Y~^^0^^6.25^^^ -~18076~^~1800~^~Bread, whole-wheat, commercially prepared, toasted~^~BREAD, WHOLE-WHEAT, COMMER PREP, TOASTED~^^^~Y~^^0^^^^^ -~18077~^~1800~^~Bread, whole-wheat, prepared from recipe~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18078~^~1800~^~Bread, whole-wheat, prepared from recipe, toasted~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE,TSTD~^^^~Y~^^0^^0.00^^^ -~18079~^~1800~^~Bread, crumbs, dry, grated, plain~^~BREAD,CRUMBS,DRY,GRATED,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18080~^~1800~^~Bread, sticks, plain~^~BREAD,STKS,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18081~^~1800~^~Bread, stuffing, dry mix~^~BREAD,STUFFING,DRY MIX~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18082~^~1800~^~Bread, stuffing, dry mix, prepared~^~BREAD,STUFFING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18084~^~1800~^~Bread, stuffing, cornbread, dry mix~^~BREAD,STUFFING,CORNBREAD,DRY MIX~^^^^^0^^5.90^3.80^8.70^4.10 -~18085~^~1800~^~Bread, stuffing, cornbread, dry mix, prepared~^~BREAD,STUFFING,CORNBREAD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18086~^~1800~^~Cake, angelfood, commercially prepared~^~CAKE,ANGELFOOD,COMMLY PREP~^^^^^0^^6.10^4.30^8.40^3.90 -~18088~^~1800~^~Cake, angelfood, dry mix, prepared~^~CAKE,ANGELFOOD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18090~^~1800~^~Cake, boston cream pie, commercially prepared~^~CAKE,BOSTON CRM PIE,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.80^3.90 -~18092~^~1800~^~Cake, pudding-type, carrot, dry mix~^~CAKE,PUDDING-TYPE,CARROT,DRY MIX~^^^^^0^^5.80^3.90^8.80^3.90 -~18095~^~1800~^~Cake, cherry fudge with chocolate frosting~^~CAKE,CHERRY FUDGE W/CHOC FRSTNG~^^^~Y~^^0^^6.10^3.90^8.80^3.80 -~18096~^~1800~^~Cake, chocolate, commercially prepared with chocolate frosting, in-store bakery~^~CAKE,CHOC,COMMLY PREP W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^5.90^3.50^8.80^3.80 -~18097~^~1800~^~Cake, pudding-type, chocolate, dry mix~^~CAKE,PUDDING-TYPE,CHOC,DRY MIX~^^^~Y~^^0^^5.80^3.30^8.70^3.80 -~18101~^~1800~^~Cake, chocolate, prepared from recipe without frosting~^~CAKE,CHOC,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18102~^~1800~^~Cake, white, prepared from recipe with coconut frosting~^~CAKE,WHITE,PREP FROM RECIPE W/COCNT FRSTNG~^^^~Y~^^0^^0.00^^^ -~18103~^~1800~^~Cake, coffeecake, cheese~^~CAKE,COFFEECAKE,CHS~^^^^^0^^6.00^4.00^8.80^4.00 -~18104~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, enriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,ENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18105~^~1800~^~Cake, coffeecake, creme-filled with chocolate frosting~^~CAKE,COFFEECAKE,CREME-FILLED W/ CHOC FRSTNG~^^^^^0^^5.80^3.90^8.80^4.00 -~18106~^~1800~^~Cake, coffeecake, fruit~^~CAKE,COFFEECAKE,FRUIT~^^^^^0^^5.80^3.90^8.80^3.90 -~18108~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, dry mix, prepared~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^ -~18110~^~1800~^~Cake, fruitcake, commercially prepared~^~CAKE,FRUITCAKE,COMMLY PREP~^^^~Y~^^0^^5.60^3.80^8.60^3.80 -~18114~^~1800~^~Cake, gingerbread, dry mix~^~CAKE,GINGERBREAD,DRY MIX~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18116~^~1800~^~Cake, gingerbread, prepared from recipe~^~CAKE,GINGERBREAD,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18119~^~1800~^~Cake, pineapple upside-down, prepared from recipe~^~CAKE,PNAPPL UPSIDE-DOWN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18120~^~1800~^~Cake, pound, commercially prepared, butter (includes fresh and frozen)~^~CAKE,POUND,COMMLY PREP,BUTTER (INCLUDES FRSH & FROZEN)~^^^~Y~^^0^^6.00^4.20^8.80^3.90 -~18121~^~1800~^~Cake, pound, commercially prepared, other than all butter, enriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,ENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18126~^~1800~^~Cake, shortcake, biscuit-type, prepared from recipe~^~CAKE,SHORTCAKE,BISCUIT-TYPE,PREP FROM RECIPE~^^^^^0^^^^^ -~18127~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting~^~CAKE,SNACK CAKES,CREME-FILLED,CHOC W/ FRSTNG~^^^~Y~^^0^^^^^ -~18128~^~1800~^~Cake, snack cakes, creme-filled, sponge~^~CAKE,SNACK CAKES,CREME-FILLED,SPONGE~^^^~Y~^^0^^^^^ -~18131~^~1800~^~Cake, white, dry mix, special dietary (includes lemon-flavored)~^~CAKE,WHITE,DRY MIX,SPL DIETARY (INCL LEMON-FLAVORED)~^^^^^0^^5.70^4.00^8.80^3.90 -~18133~^~1800~^~Cake, sponge, commercially prepared~^~CAKE,SPONGE,COMMLY PREP~^^^~Y~^^0^^0.00^^^ -~18134~^~1800~^~Cake, sponge, prepared from recipe~^~CAKE,SPONGE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18135~^~1800~^~Cake, pudding-type, white, enriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,ENR,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18139~^~1800~^~Cake, white, prepared from recipe without frosting~^~CAKE,WHITE,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18140~^~1800~^~Cake, yellow, commercially prepared, with chocolate frosting, in-store bakery~^~CAKE,YEL,COMMLY PREP,W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^6.00^3.80^8.80^3.80 -~18141~^~1800~^~Cake, yellow, commercially prepared, with vanilla frosting~^~CAKE,YEL,COMMLY PREP,W/VANILLA FRSTNG~^^^~Y~^^0^^6.10^4.20^8.90^3.90 -~18142~^~1800~^~Cake, pudding-type, yellow, dry mix~^~CAKE,PUDDING-TYPE,YEL,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00 -~18144~^~1800~^~Cake, yellow, enriched, dry mix~^~CAKE,YEL,ENR,DRY MIX~^^^~Y~^^0^^5.90^4.10^8.80^4.00 -~18146~^~1800~^~Cake, yellow, prepared from recipe without frosting~^~CAKE,YEL,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^ -~18147~^~1800~^~Cake, cheesecake, commercially prepared~^~CAKE,CHEESECAKE,COMMLY PREP~^^^~Y~^^0^^6.20^4.20^8.80^3.90 -~18148~^~1800~^~Cake, cheesecake, prepared from mix, no-bake type~^~CAKE,CHEESECAKE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.20^4.20^8.80^3.90 -~18151~^~1800~^~Cookies, brownies, commercially prepared~^~COOKIES,BROWNIES,COMMLY PREP~^^^~Y~^^0^^5.90^3.90^8.80^3.80 -~18152~^~1800~^~Cookies, brownies, dry mix, regular~^~COOKIES,BROWNIES,DRY MIX,REG~^^^^^0^^5.60^3.00^8.70^3.80 -~18154~^~1800~^~Cookies, brownies, prepared from recipe~^~COOKIES,BROWNIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18155~^~1800~^~Cookies, butter, commercially prepared, enriched~^~COOKIES,BUTTER,COMMLY PREP,ENR~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18156~^~1800~^~Cookies, fudge, cake-type (includes trolley cakes)~^~COOKIES,FUDGE,CAKE-TYPE (INCL TROLLEY CAKES)~^^^^^0^^5.70^3.60^8.70^3.80 -~18157~^~1800~^~Cookies, chocolate wafers~^~COOKIES,CHOCOLATE WAFERS~^^^~Y~^^0^^5.70^3.50^8.90^3.90 -~18158~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, lower fat~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,LOWER FAT~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18159~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, enriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,ENR~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18160~^~1800~^~Cookies, chocolate chip, commercially prepared, soft-type~^~COOKIES,CHOC CHIP,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.80^3.80^8.80^3.90 -~18161~^~1800~^~Cookies, chocolate chip, dry mix~^~COOKIES,CHOC CHIP,DRY MIX~^^^^^0^^5.80^4.00^8.80^3.90 -~18163~^~1800~^~Cookies, chocolate chip, refrigerated dough~^~COOKIES,CHOC CHIP,REFR DOUGH~^^^^^0^^5.90^4.10^8.80^4.00 -~18164~^~1800~^~Cookies, chocolate chip, refrigerated dough, baked~^~COOKIES,CHOC CHIP,REFR DOUGH,BKD~^^^^^0^^^^^ -~18165~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with margarine~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^ -~18166~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG~^^^~Y~^^0^^5.70^3.50^8.80^3.90 -~18167~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular, chocolate-coated~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG,CHOCOLATE-COATED~^^^~Y~^^0^^5.70^2.70^8.80^3.60 -~18168~^~1800~^~Cookies, chocolate sandwich, with extra creme filling~^~COOKIES,CHOC SNDWCH,W/EX CREME FILLING~^^^~Y~^^0^^5.70^3.60^8.80^3.90 -~18170~^~1800~^~Cookies, fig bars~^~COOKIES,FIG BARS~^^^~Y~^^0^^5.90^3.80^8.80^3.80 -~18171~^~1800~^~Cookies, fortune~^~COOKIES,FORTUNE~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18172~^~1800~^~Cookies, gingersnaps~^~COOKIES,GINGERSNAPS~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18173~^~1800~^~Cookies, graham crackers, plain or honey (includes cinnamon)~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY (INCL CINN)~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18174~^~1800~^~Cookies, graham crackers, chocolate-coated~^~COOKIES,GRAHAM CRACKERS,CHOCOLATE-COATED~^^^~Y~^^0^^5.90^3.80^8.70^3.90 -~18175~^~1800~^~Cookies, ladyfingers, with lemon juice and rind~^~COOKIES,LADYFINGERS,W/LEMON JUC&RIND~^^^~Y~^^0^^0.00^^^ -~18176~^~1800~^~Cookies, marshmallow, chocolate-coated (includes marshmallow pies)~^~COOKIES,MARSHMLLW,CHOCOLATE-COATED (INCL MARSHMLLW PIES)~^^^~Y~^^0^^5.70^3.60^8.80^3.80 -~18177~^~1800~^~Cookies, molasses~^~COOKIES,MOLASSES~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18178~^~1800~^~Cookies, oatmeal, commercially prepared, regular~^~COOKIES,OATMEAL,COMMLY PREP,REG~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18179~^~1800~^~Cookies, oatmeal, commercially prepared, soft-type~^~COOKIES,OATMEAL,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.90^3.80^8.80^3.90 -~18180~^~1800~^~Cookies, oatmeal, dry mix~^~COOKIES,OATMEAL,DRY MIX~^^^^^0^^5.80^3.70^8.80^4.00 -~18182~^~1800~^~Cookies, oatmeal, refrigerated dough~^~COOKIES,OATMEAL,REFR DOUGH~^^^^^0^^5.90^3.80^8.80^4.00 -~18183~^~1800~^~Cookies, oatmeal, refrigerated dough, baked~^~COOKIES,OATMEAL,REFR DOUGH,BKD~^^^^^0^^^^^ -~18184~^~1800~^~Cookies, oatmeal, with raisins~^~COOKIES,OATMEAL,W/ RAISINS~^^^^^0^^0.00^^^ -~18185~^~1800~^~Cookies, peanut butter, commercially prepared, regular~^~COOKIES,PNUT BUTTER,COMMLY PREP,REG~^^^~Y~^^0^^5.60^3.70^8.70^4.00 -~18186~^~1800~^~Cookies, peanut butter, commercially prepared, soft-type~^~COOKIES,PNUT BUTTER,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.50^3.70^8.70^3.90 -~18187~^~1800~^~Cookies, peanut butter, refrigerated dough~^~COOKIES,PNUT BUTTER,REFR DOUGH~^^^^^0^^5.70^3.80^8.70^4.00 -~18188~^~1800~^~Cookies, peanut butter, refrigerated dough, baked~^~COOKIES,PNUT BUTTER,REFR DOUGH,BKD~^^^^^0^^^^^ -~18189~^~1800~^~Cookies, peanut butter, prepared from recipe~^~COOKIES,PNUT BUTTER,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18190~^~1800~^~Cookies, peanut butter sandwich, regular~^~COOKIES,PNUT BUTTER SNDWCH,REG~^^^~Y~^^0^^5.60^3.80^8.60^4.00 -~18191~^~1800~^~Cookies, raisin, soft-type~^~COOKIES,RAISIN,SOFT-TYPE~^^^~Y~^^0^^5.90^4.00^8.80^3.90 -~18192~^~1800~^~Cookies, shortbread, commercially prepared, plain~^~COOKIES,SHORTBREAD,COMMLY PREP,PLN~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18193~^~1800~^~Cookies, shortbread, commercially prepared, pecan~^~COOKIES,SHORTBREAD,COMMLY PREP,PECAN~^^^^^0^^5.60^4.00^8.70^4.10 -~18196~^~1800~^~Cookies, brownies, dry mix, sugar free~^~COOKIES,BROWNIES,DRY MIX,SUGAR FREE~^^^^^0^^5.70^3.60^8.80^3.80 -~18198~^~1800~^~Cookies, chocolate chip, commercially prepared, special dietary~^~COOKIES,CHOC CHIP,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18199~^~1800~^~Cookies, chocolate sandwich, with creme filling, special dietary~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,SPL DIETARY~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18200~^~1800~^~Cookies, oatmeal, commercially prepared, special dietary~^~COOKIES,OATMEAL,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^3.70^8.80^3.90 -~18201~^~1800~^~Cookies, peanut butter sandwich, special dietary~^~COOKIES,PNUT BUTTER SNDWCH,SPL DIETARY~^^^^^0^^5.50^3.60^8.70^4.00 -~18202~^~1800~^~Cookies, sugar wafer, with creme filling, sugar free~^~COOKIES,SUGAR WAFER,W/ CREME FILLING,SUGAR FREE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18204~^~1800~^~Cookies, sugar, commercially prepared, regular (includes vanilla)~^~COOKIES,SUGAR,COMMLY PREP,REG (INCL VANILLA)~^^^~Y~^^0^^5.90^4.20^8.80^4.00 -~18205~^~1800~^~Cookies, sugar, refrigerated dough~^~COOKIES,SUGAR,REFR DOUGH~^^^^^0^^5.80^4.10^8.80^4.00 -~18206~^~1800~^~Cookies, sugar, refrigerated dough, baked~^~COOKIES,SUGAR,REFR DOUGH,BKD~^^^~Y~^^0^^0.00^^^ -~18209~^~1800~^~Cookies, sugar wafers with creme filling, regular~^~COOKIES,SUGAR WAFERS W/CREME FILLING,REG~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18210~^~1800~^~Cookies, vanilla sandwich with creme filling~^~COOKIES,VANILLA SNDWCH W/CREME FILLING~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18211~^~1800~^~Puff pastry, frozen, ready-to-bake, baked~^~PUFF PASTRY,FRZ,RTB,BKD~^^^~Y~^^0^^0.00^^^ -~18212~^~1800~^~Cookies, vanilla wafers, lower fat~^~COOKIES,VANILLA WAFERS,LOWER FAT~^^^~Y~^^0^^5.90^4.10^8.80^3.90 -~18213~^~1800~^~Cookies, vanilla wafers, higher fat~^~COOKIES,VANILLA WAFERS,HIGHER FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~18214~^~1800~^~Crackers, cheese, regular~^~CRACKERS,CHEESE,REGULAR~^^^~Y~^^0^^5.90^4.10^8.80^4.10 -~18215~^~1800~^~Crackers, cheese, sandwich-type with peanut butter filling~^~CRACKERS,CHS,SANDWICH-TYPE W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18216~^~1800~^~Crackers, crispbread, rye~^~CRACKERS,CRISPBREAD,RYE~^^^~Y~^^0^^5.90^3.20^8.40^4.00 -~18217~^~1800~^~Crackers, matzo, plain~^~CRACKERS,MATZO,PLAIN~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18218~^~1800~^~Crackers, matzo, egg~^~CRACKERS,MATZO,EGG~^^^^^0^^5.80^4.10^8.80^4.10 -~18219~^~1800~^~Crackers, matzo, whole-wheat~^~CRACKERS,MATZO,WHOLE-WHEAT~^^^^^0^^5.80^3.50^8.40^3.70 -~18220~^~1800~^~Crackers, melba toast, plain~^~CRACKERS,MELBA TOAST,PLN~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18221~^~1800~^~Crackers, melba toast, rye (includes pumpernickel)~^~CRACKERS,MELBA TOAST,RYE (INCL PUMPERNICKEL)~^^^^^0^^5.80^3.70^8.60^4.10 -~18222~^~1800~^~Crackers, melba toast, wheat~^~CRACKERS,MELBA TOAST,WHEAT~^^^^^0^^5.80^3.80^8.60^4.00 -~18223~^~1800~^~Crackers, milk~^~CRACKERS,MILK~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18224~^~1800~^~Crackers, rusk toast~^~CRACKERS,RUSK TOAST~^^^^^0^^6.00^3.90^8.90^4.00 -~18225~^~1800~^~Crackers, rye, sandwich-type with cheese filling~^~CRACKERS,RYE,SANDWICH-TYPE W/CHS FILLING~^^^^^0^^5.80^3.90^8.80^4.10 -~18226~^~1800~^~Crackers, rye, wafers, plain~^~CRACKERS,RYE,WAFERS,PLAIN~^^^~Y~^^0^^5.90^3.00^8.40^3.70 -~18227~^~1800~^~Crackers, rye, wafers, seasoned~^~CRACKERS,RYE,WAFERS,SEASONED~^^^^^0^^5.90^3.00^8.80^3.70 -~18228~^~1800~^~Crackers, saltines (includes oyster, soda, soup)~^~CRACKERS,SALTINES (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18229~^~1800~^~Crackers, standard snack-type, regular~^~CRACKERS,STD SNACK-TYPE,REG~^^^~Y~^^0^^^^^ -~18230~^~1800~^~Crackers, standard snack-type, sandwich, with cheese filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/CHS FILLING~^^^~Y~^^0^^5.80^4.10^8.80^4.10 -~18231~^~1800~^~Crackers, standard snack-type, sandwich, with peanut butter filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10 -~18232~^~1800~^~Crackers, wheat, regular~^~CRACKERS,WHEAT,REGULAR~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18233~^~1800~^~Crackers, wheat, sandwich, with cheese filling~^~CRACKERS,WHEAT,SNDWCH,W/CHS FILLING~^^^^^0^^5.80^4.00^8.80^4.10 -~18234~^~1800~^~Crackers, wheat, sandwich, with peanut butter filling~^~CRACKERS,WHEAT,SNDWCH,W/PNUT BUTTER FILLING~^^^^^0^^5.60^3.70^8.60^4.00 -~18235~^~1800~^~Crackers, whole-wheat~^~CRACKERS,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18236~^~1800~^~Cracker, meal~^~CRACKER,MEAL~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18237~^~1800~^~Cream puff shell, prepared from recipe~^~CREAM PUFF SHELL,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18239~^~1800~^~Croissants, butter~^~CROISSANTS,BUTTER~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18240~^~1800~^~Croissants, apple~^~CROISSANTS,APPLE~^^^^^0^^5.90^4.00^8.80^4.00 -~18241~^~1800~^~Croissants, cheese~^~CROISSANTS,CHEESE~^^^~Y~^^0^^5.90^4.00^8.80^4.10 -~18242~^~1800~^~Croutons, plain~^~CROUTONS,PLAIN~^^^^^0^^5.70^4.00^8.80^4.10 -~18243~^~1800~^~Croutons, seasoned~^~CROUTONS,SEASONED~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18244~^~1800~^~Danish pastry, cinnamon, enriched~^~DANISH PASTRY,CINN,ENR~^^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18245~^~1800~^~Danish pastry, cheese~^~DANISH PASTRY,CHEESE~^^^~Y~^^0^^6.00^4.10^8.80^4.00 -~18246~^~1800~^~Danish pastry, fruit, enriched (includes apple, cinnamon, raisin, lemon, raspberry, strawberry)~^~DANISH PASTRY,FRUIT,ENR~^^^~Y~^^0^^5.80^4.10^8.80^3.90 -~18248~^~1800~^~Doughnuts, cake-type, plain (includes unsugared, old-fashioned)~^~DOUGHNUTS,CAKE-TYPE,PLN (INCLUDES UNSUGARED,OLD-FASHIONED)~^~donut~^^~Y~^^0^^6.25^^^ -~18249~^~1800~^~Doughnuts, cake-type, plain, chocolate-coated or frosted~^~DOUGHNUTS,CAKE-TYPE,PLN,CHOCOLATE-COATED OR FRSTD~^~donut~^^~Y~^^0^^^^^ -~18250~^~1800~^~Doughnuts, cake-type, plain, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,PLN,SUGARED OR GLAZED~^~donut~^^^^0^^5.90^4.20^8.80^4.00 -~18251~^~1800~^~Doughnuts, cake-type, chocolate, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,CHOC,SUGARED OR GLAZED~^~donut~^^~Y~^^0^^5.90^3.90^8.80^3.90 -~18253~^~1800~^~Doughnuts, french crullers, glazed~^~DOUGHNUTS,FRENCH CRULLERS,GLAZED~^~donut~^^~Y~^^0^^5.80^4.00^8.80^4.00 -~18254~^~1800~^~Doughnuts, yeast-leavened, with creme filling~^~DOUGHNUTS,YEAST-LEAVENED,W/CREME FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18255~^~1800~^~Doughnuts, yeast-leavened, glazed, enriched (includes honey buns)~^~DOUGHNUTS, YEAST-LEAVENED, GLAZED, ENRICHED (INC HONEY BUNS)~^~donut~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18256~^~1800~^~Doughnuts, yeast-leavened, with jelly filling~^~DOUGHNUTS,YEAST-LEAVENED,W/JELLY FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18258~^~1800~^~Muffins, English, plain, enriched, with ca prop (includes sourdough)~^~MUFFINS,ENG,PLN,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18259~^~1800~^~Muffins, English, plain, toasted, enriched, with calcium propionate (includes sourdough)~^~MUFFINS,ENG,PLN,TSTD,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^ -~18260~^~1800~^~Muffins, English, mixed-grain (includes granola)~^~MUFFINS,ENG,MIXED-GRAIN (INCLUDES GRANOLA)~^^^~Y~^^0^^5.80^3.70^8.50^4.00 -~18262~^~1800~^~Muffins, English, raisin-cinnamon (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18263~^~1800~^~Muffins, English, raisin-cinnamon, toasted (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON,TSTD (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^^^^ -~18264~^~1800~^~Muffins, English, wheat~^~MUFFINS,ENG,WHEAT~^^^~Y~^^0^^5.80^3.70^8.40^3.90 -~18266~^~1800~^~Muffins, English, whole-wheat~^~MUFFINS,ENG,WHOLE-WHEAT~^^^~Y~^^0^^5.90^3.50^8.50^3.80 -~18268~^~1800~^~French toast, frozen, ready-to-heat~^~FRENCH TOAST,FRZ,RTH~^^^^^0^^6.00^4.10^8.90^4.00 -~18269~^~1800~^~French toast, prepared from recipe, made with low fat (2%) milk~^~FRENCH TOAST,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18270~^~1800~^~Hush puppies, prepared from recipe~^~HUSH PUPPIES,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18271~^~1800~^~Ice cream cones, cake or wafer-type~^~ICE CRM CONES,CAKE OR WAFER-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18272~^~1800~^~Ice cream cones, sugar, rolled-type~^~ICE CRM CONES,SUGAR,ROLLED-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.00 -~18273~^~1800~^~Muffins, plain, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18274~^~1800~^~Muffins, blueberry, commercially prepared (Includes mini-muffins)~^~MUFFINS,BLUEBERRY,COMMLY PREP (INCLUDES MINI-MUFFINS)~^^^~Y~^^0^^^^^ -~18275~^~1800~^~Muffins, blueberry, dry mix~^~MUFFINS,BLUEBERRY,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18277~^~1800~^~Muffins, blueberry, toaster-type~^~MUFFINS,BLUEBERRY,TOASTER-TYPE~^^^^^0^^5.70^3.60^8.80^4.00 -~18278~^~1800~^~Muffins, blueberry, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,BLUEBERRY,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18279~^~1800~^~Muffins, corn, commercially prepared~^~MUFFINS,CORN,COMMLY PREP~^^^~Y~^^0^^5.90^3.80^8.80^4.10 -~18280~^~1800~^~Muffins, corn, dry mix, prepared~^~MUFFINS,CORN,DRY MIX,PREP~^^^^^0^^^^^ -~18281~^~1800~^~Muffins, corn, toaster-type~^~MUFFINS,CORN,TOASTER-TYPE~^^^^^0^^5.90^4.00^8.80^3.90 -~18282~^~1800~^~Muffins, corn, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,CORN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18283~^~1800~^~Muffins, oat bran~^~MUFFINS,OAT BRAN~^^^~Y~^^0^^6.20^3.20^8.70^3.80 -~18284~^~1800~^~Muffins, wheat bran, dry mix~^~MUFFINS,WHEAT BRAN,DRY MIX~^^^^^0^^6.00^2.90^8.80^3.70 -~18288~^~1800~^~Pancakes plain, frozen, ready-to-heat (includes buttermilk)~^~PANCAKES PLN,FRZ,RTH (INCLUDES BUTTERMILK)~^^^~Y~^^0^^^^^ -~18289~^~1800~^~Pancakes, plain, dry mix, complete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,COMPLETE (INCL BTTRMLK)~^^^^^0^^6.00^4.00^8.80^4.10 -~18290~^~1800~^~Pancakes, plain, dry mix, complete, prepared~^~PANCAKES,PLN,DRY MIX,COMPLETE,PREP~^^^^^0^^^^^ -~18291~^~1800~^~Pancakes, plain, dry mix, incomplete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,INCOMPLETE (INCL BTTRMLK)~^^^~Y~^^0^^5.80^3.90^8.40^4.10 -~18292~^~1800~^~Pancakes, plain, dry mix, incomplete, prepared~^~PANCAKES,PLN,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18293~^~1800~^~Pancakes, plain, prepared from recipe~^~PANCAKES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18294~^~1800~^~Pancakes, blueberry, prepared from recipe~^~PANCAKES,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18295~^~1800~^~Pancakes, buckwheat, dry mix, incomplete~^~PANCAKES,BUCKWHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.00^3.60^8.40^3.90 -~18297~^~1800~^~Pancakes, special dietary, dry mix~^~PANCAKES,SPL DIETARY,DRY MIX~^^^^^0^^5.90^3.80^8.40^4.10 -~18299~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE~^^^^^0^^5.80^3.70^8.40^4.00 -~18300~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete, prepared~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^ -~18301~^~1800~^~Pie, apple, commercially prepared, enriched flour~^~PIE,APPL,COMMLY PREP,ENR FLR~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18302~^~1800~^~Pie, apple, prepared from recipe~^~PIE,APPL,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18303~^~1800~^~Pie, banana cream, prepared from mix, no-bake type~^~PIE,BANANA CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^4.00^8.80^3.90 -~18304~^~1800~^~Pie, banana cream, prepared from recipe~^~PIE,BANANA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18305~^~1800~^~Pie, blueberry, commercially prepared~^~PIE,BLUEBERRY,COMMLY PREP~^^^~Y~^^0^^5.70^4.00^8.80^3.90 -~18306~^~1800~^~Pie, blueberry, prepared from recipe~^~PIE,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18308~^~1800~^~Pie, cherry, commercially prepared~^~PIE,CHERRY,COMMLY PREP~^^^~Y~^^0^^5.80^4.00^8.80^3.90 -~18309~^~1800~^~Pie, cherry, prepared from recipe~^~PIE,CHERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18310~^~1800~^~Pie, chocolate creme, commercially prepared~^~PIE,CHOC CREME,COMMLY PREP~^^^~Y~^^0^^5.70^3.30^8.80^3.70 -~18312~^~1800~^~Pie, chocolate mousse, prepared from mix, no-bake type~^~PIE,CHOC MOUSSE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^3.70^8.70^3.80 -~18313~^~1800~^~Pie, coconut creme, commercially prepared~^~PIE,COCNT CREME,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.70^3.90 -~18314~^~1800~^~Pie, coconut cream, prepared from mix, no-bake type~^~PIE,COCNT CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.10^4.10^8.70^3.90 -~18316~^~1800~^~Pie, coconut custard, commercially prepared~^~PIE,COCNT CUSTARD,COMMLY PREP~^^^^^0^^6.00^4.10^8.70^4.00 -~18317~^~1800~^~Pie, egg custard, commercially prepared~^~PIE,EGG CUSTARD,COMMLY PREP~^^^~Y~^^0^^6.20^4.30^8.90^4.00 -~18319~^~1800~^~Pie, fried pies, fruit~^~PIE,FRIED PIES,FRUIT~^^^~Y~^^0^^5.80^4.00^8.80^3.80 -~18320~^~1800~^~Pie, lemon meringue, commercially prepared~^~PIE,LEMON MERINGUE,COMMLY PREP~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18321~^~1800~^~Pie, lemon meringue, prepared from recipe~^~PIE,LEMON MERINGUE,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18322~^~1800~^~Pie, mince, prepared from recipe~^~PIE,MINCE,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18323~^~1800~^~Pie, peach~^~PIE,PEACH~^^^~Y~^^0^^5.80^3.90^8.80^3.90 -~18324~^~1800~^~Pie, pecan, commercially prepared~^~PIE,PECAN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18325~^~1800~^~Pie, pecan, prepared from recipe~^~PIE,PECAN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18326~^~1800~^~Pie, pumpkin, commercially prepared~^~PIE,PUMPKIN,COMMLY PREP~^^^~Y~^^0^^^^^ -~18327~^~1800~^~Pie, pumpkin, prepared from recipe~^~PIE,PUMPKIN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18328~^~1800~^~Pie, vanilla cream, prepared from recipe~^~PIE,VANILLA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^ -~18332~^~1800~^~Pie crust, standard-type, dry mix~^~PIE CRUST,STANDARD-TYPE,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10 -~18333~^~1800~^~Pie crust, standard-type, dry mix, prepared, baked~^~PIE CRUST,STANDARD-TYPE,DRY MIX,PREP,BKD~^^^^^0^^^^^ -~18334~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR~^^^~Y~^^0^^5.70^4.10^8.90^4.10 -~18335~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched, baked~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR,BKD~^^^~Y~^^0^^0.00^^^ -~18336~^~1800~^~Pie crust, standard-type, prepared from recipe, baked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,BKD~^^^^^0^^0.00^^^ -~18337~^~1800~^~Puff pastry, frozen, ready-to-bake~^~PUFF PASTRY,FRZ,RTB~^^^^^0^^0.00^^^ -~18338~^~1800~^~Phyllo dough~^~PHYLLO DOUGH~^^^~Y~^^0^^0.00^^^ -~18339~^~1800~^~Popovers, dry mix, enriched~^~POPOVERS,DRY MIX,ENRICHED~^^^^^0^^5.70^4.10^8.70^4.10 -~18342~^~1800~^~Rolls, dinner, plain, commercially prepared (includes brown-and-serve)~^~ROLLS, DINNER, PLN,COMM PREPARED (INC BROWN -N- SERVE)~^^^~Y~^^0^^^^^ -~18344~^~1800~^~Rolls, dinner, egg~^~ROLLS,DINNER,EGG~^^^~Y~^^0^^5.80^3.90^8.80^4.10 -~18345~^~1800~^~Rolls, dinner, oat bran~^~ROLLS,DINNER,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00 -~18346~^~1800~^~Rolls, dinner, rye~^~ROLLS,DINNER,RYE~^^^~Y~^^0^^5.80^3.70^8.70^4.10 -~18347~^~1800~^~Rolls, dinner, wheat~^~ROLLS,DINNER,WHEAT~^^^~Y~^^0^^5.70^3.90^8.80^4.00 -~18348~^~1800~^~Rolls, dinner, whole-wheat~^~ROLLS,DINNER,WHOLE-WHEAT~^^^~Y~^^0^^0.00^^^ -~18349~^~1800~^~Rolls, french~^~ROLLS,FRENCH~^^^~Y~^^0^^5.80^3.90^8.70^4.10 -~18350~^~1800~^~Rolls, hamburger or hotdog, plain~^~ROLLS,HAMBURGER OR HOTDOG,PLN~^^^~Y~^^0^^5.80^4.00^8.80^4.10 -~18351~^~1800~^~Rolls, hamburger or hotdog, mixed-grain~^~ROLLS,HAMBURGER OR HOTDOG,MIXED-GRAIN~^^^~Y~^^0^^5.80^3.80^8.80^3.90 -~18353~^~1800~^~Rolls, hard (includes kaiser)~^~ROLLS,HARD (INCL KAISER)~^^^~Y~^^0^^5.70^4.00^8.60^4.10 -~18354~^~1800~^~Strudel, apple~^~STRUDEL,APPLE~^^^~Y~^^0^^6.00^4.20^8.90^3.90 -~18355~^~1800~^~Sweet rolls, cheese~^~SWEET ROLLS,CHEESE~^^^^^0^^6.00^4.00^8.80^3.90 -~18356~^~1800~^~Sweet rolls, cinnamon, commercially prepared with raisins~^~SWEET ROLLS,CINN,COMMLY PREP W/RAISINS~^^^~Y~^^0^^5.80^3.90^8.80^4.00 -~18357~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG~^^^^^0^^5.70^4.00^8.80^4.00 -~18358~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting, baked~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG,BKD~^^^^^0^^^^^ -~18360~^~1800~^~Taco shells, baked~^~TACO SHELLS, BAKED~^^^~Y~^^0^^^^^ -~18361~^~1800~^~Toaster pastries, brown-sugar-cinnamon~^~TOASTER PASTRIES,BROWN-SUGAR-CINNAMON~^^^^^0^^5.80^4.10^8.80^3.90 -~18362~^~1800~^~Toaster pastries, fruit (includes apple, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT~^^^~Y~^^0^^6.25^^^ -~18363~^~1800~^~Tortillas, ready-to-bake or -fry, corn~^~TORTILLAS,RTB OR -FRY,CORN~^^^~Y~^^0^^6.20^2.70^8.40^4.00 -~18364~^~1800~^~Tortillas, ready-to-bake or -fry, flour, refrigerated~^~TORTILLAS,RTB OR -FRY,FLR,REFR~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18365~^~1800~^~Waffles, plain, frozen, ready-to-heat~^~WAFFLES,PLN,FRZ,RTH~^^^^^0^^^^^ -~18367~^~1800~^~Waffles, plain, prepared from recipe~^~WAFFLES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18368~^~1800~^~Wonton wrappers (includes egg roll wrappers)~^~WONTON WRAPPERS (INCL EGG ROLL WRAPPERS)~^^^^^0^^0.00^^^ -~18369~^~1800~^~Leavening agents, baking powder, double-acting, sodium aluminum sulfate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,NA AL SULFATE~^^^~Y~^^0^^6.20^1.50^8.40^1.90 -~18370~^~1800~^~Leavening agents, baking powder, double-acting, straight phosphate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,STRAIGHT PO4~^^^~Y~^^0^^6.20^1.80^8.40^2.10 -~18371~^~1800~^~Leavening agents, baking powder, low-sodium~^~LEAVENING AGENTS,BAKING PDR,LOW-SODIUM~^^^~Y~^^0^^6.20^2.70^8.40^2.00 -~18372~^~1800~^~Leavening agents, baking soda~^~LEAVENING AGENTS,BAKING SODA~^^^~Y~^^0^^0.00^^^ -~18373~^~1800~^~Leavening agents, cream of tartar~^~LEAVENING AGENTS,CRM OF TARTAR~^^^~Y~^^0^^6.20^3.50^8.40^4.20 -~18374~^~1800~^~Leavening agents, yeast, baker's, compressed~^~LEAVENING AGENTS,YEAST,BAKER'S,COMPRESSED~^^^~Y~^^0^^6.20^3.00^8.40^3.40 -~18375~^~1800~^~Leavening agents, yeast, baker's, active dry~^~LEAVENING AGENTS,YEAST,BAKER'S,ACTIVE DRY~^^^~Y~^^0^^6.25^3.00^8.40^3.40 -~18376~^~1800~^~Bread, crumbs, dry, grated, seasoned~^~BREAD,CRUMBS,DRY,GRATED,SEASONED~^^^~Y~^^0^^5.80^4.00^8.40^4.10 -~18377~^~1800~^~Cookies, oatmeal, prepared from recipe, without raisins~^~COOKIES,OATMEAL,PREP FROM RECIPE,WO/RAISINS~^^^^^0^^0.00^^^ -~18378~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with butter~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/BUTTER~^^^^^0^^0.00^^^ -~18383~^~1800~^~Bread, protein, (includes gluten), toasted~^~BREAD,PROT,(INCLUDES GLUTEN),TSTD~^^^~Y~^^0^^0.00^^^ -~18384~^~1800~^~Bread, rice bran, toasted~^~BREAD,RICE BRAN,TOASTED~^^^~Y~^^0^^0.00^^^ -~18386~^~1800~^~Muffins, blueberry, toaster-type, toasted~^~MUFFINS,BLUEBERRY,TOASTER-TYPE,TSTD~^^^^^0^^0.00^^^ -~18388~^~1800~^~Muffins, wheat bran, toaster-type with raisins, toasted~^~MUFFINS,WHEAT BRAN,TOASTER-TYPE W/RAISINS,TSTD~^^^^^0^^0.00^^^ -~18390~^~1800~^~Pancakes, buttermilk, prepared from recipe~^~PANCAKES,BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^ -~18396~^~1800~^~Rolls, dinner, plain, prepared from recipe, made with low fat (2%) milk~^~ROLLS,DINNER,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^ -~18399~^~1800~^~Pie crust, cookie-type, prepared from recipe, graham cracker, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FR RECIPE,GRAHAM CRACKER,CHILLED~^^^^^0^^0.00^^^ -~18400~^~1800~^~Crackers, matzo, egg and onion~^~CRACKERS,MATZO,EGG&ONION~^^^^^0^^5.80^4.10^8.70^4.10 -~18401~^~1800~^~Pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FROM RECIPE,VANILLA WAFER,CHILLED~^^^~Y~^^0^^0.00^^^ -~18402~^~1800~^~Pie crust, standard-type, prepared from recipe, unbaked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,UNBAKED~^^^~Y~^^0^^0.00^^^ -~18403~^~1800~^~Waffles, plain, frozen, ready -to-heat, toasted~^~WAFFLES,PLN,FRZ,READY -TO-HEAT,TSTD~^^^~Y~^^0^^^^^ -~18406~^~1800~^~Bagels, plain, enriched, without calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,ENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^6.10^4.20^8.40^4.10 -~18407~^~1800~^~Bagels, plain, unenriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,W/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.00^8.40^4.10 -~18408~^~1800~^~Bagels, plain, unenriched, without calcium propionate(includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.10^8.80^4.00 -~18412~^~1800~^~Bread, cornbread, dry mix, unenriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,UNENR (INCL CORN MUFFIN MIX)~^^^^^0^^5.70^4.00^8.40^4.10 -~18413~^~1800~^~Bread, pita, white, unenriched~^~BREAD,PITA,WHITE,UNENR~^^^^^0^^5.70^4.00^8.40^4.10 -~18414~^~1800~^~Bread, raisin, unenriched~^~BREAD,RAISIN,UNENRICHED~^^^^^0^^5.80^3.90^8.80^3.90 -~18416~^~1800~^~Bread, white, commercially prepared, low sodium, no salt~^~BREAD,WHITE,COMMLY PREP,LO NA,NO SALT~^^^~Y~^^0^^5.70^3.90^8.70^4.10 -~18417~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, unenriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,UNENR~^^^^^0^^5.80^3.90^8.80^4.00 -~18418~^~1800~^~Cake, pound, commercially prepared, other than all butter, unenriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,UNENR~^^^^^0^^6.00^4.20^8.80^4.00 -~18419~^~1800~^~Cake, pudding-type, white, unenriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,UNENR,DRY MIX~^^^^^0^^5.80^4.10^8.80^4.00 -~18420~^~1800~^~Cake, yellow, unenriched, dry mix~^~CAKE,YEL,UNENR,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18421~^~1800~^~Cookies, butter, commercially prepared, unenriched~^~COOKIES,BUTTER,COMMLY PREP,UNENR~^^^^^0^^5.90^4.20^8.80^4.00 -~18422~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, unenriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,UNENR~^^^^^0^^5.80^3.90^8.80^3.90 -~18423~^~1800~^~Cookies, ladyfingers, without lemon juice and rind~^~COOKIES,LADYFINGERS,WO/LEMON JUC&RIND~^^^^^0^^0.00^^^ -~18424~^~1800~^~Crackers, melba toast, plain, without salt~^~CRACKERS,MELBA TOAST,PLN,WO/SALT~^^^^^0^^5.70^4.00^8.60^4.10 -~18425~^~1800~^~Crackers, saltines, low salt (includes oyster, soda, soup)~^~CRACKERS,SALTINES,LO SALT (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18426~^~1800~^~Crackers, saltines, unsalted tops (includes oyster, soda, soup)~^~CRACKERS,SALTINES,UNSALTED TOPS (INCL OYSTER,SODA,SOUP)~^^^^^0^^5.70^4.00^8.80^4.10 -~18427~^~1800~^~Crackers, standard snack-type, regular, low salt~^~CRACKERS,STD SNACK-TYPE,REG,LO SALT~^^^~Y~^^0^^5.70^4.00^8.80^4.10 -~18428~^~1800~^~Crackers, wheat, low salt~^~CRACKERS,WHEAT,LOW SALT~^^^~Y~^^0^^5.80^3.80^8.80^4.00 -~18429~^~1800~^~Crackers, whole-wheat, low salt~^~CRACKERS,WHOLE-WHEAT,LO SALT~^^^~Y~^^0^^5.80^3.60^8.80^3.80 -~18430~^~1800~^~Danish pastry, cinnamon, unenriched~^~DANISH PASTRY,CINN,UNENR~^^^^^0^^5.90^4.00^8.80^4.00 -~18431~^~1800~^~Danish pastry, fruit, unenriched (includes apple, cinnamon, raisin, strawberry)~^~DANISH PASTRY,FRUIT,UNENR (INCL APPL,CINN,RAISIN,STRAWBERRY)~^^^^^0^^5.80^4.10^8.80^3.90 -~18432~^~1800~^~Bread, white, commercially prepared, toasted, low sodium no salt~^~BREAD,WHITE,COMMLY PREP,TSTD,LO NA NO SALT~^^^^^0^^5.70^3.90^8.70^4.10 -~18433~^~1800~^~Danish pastry, lemon, unenriched~^~DANISH PASTRY,LEMON,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18434~^~1800~^~Crackers, cheese, low sodium~^~CRACKERS,CHS,LO NA~^^^~Y~^^0^^^^^ -~18435~^~1800~^~Danish pastry, raspberry, unenriched~^~DANISH PASTRY,RASPBERRY,UNENR~^^^^^0^^5.80^4.10^8.80^3.90 -~18436~^~1800~^~Doughnuts, yeast-leavened, glazed, unenriched (includes honey buns)~^~DOUGHNUTS,YEAST-LEAVENED,GLAZED,UNENR (INCL HONEY BUNS)~^~donut~^^^^0^^5.80^3.90^8.80^4.00 -~18437~^~1800~^~English muffins, plain, enriched, without calcium propionate(includes sourdough)~^~ENGLISH MUFFINS,PLN,ENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18438~^~1800~^~English muffins, plain, unenriched, with calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,W/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18439~^~1800~^~English muffins, plain, unenriched, without calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10 -~18443~^~1800~^~Pie, apple, commercially prepared, unenriched flour~^~PIE,APPL,COMMLY PREP,UNENR FLR~^^^^^0^^5.70^4.00^8.80^3.90 -~18444~^~1800~^~Pie, fried pies, cherry~^~PIE,FRIED PIES,CHERRY~^^^^^0^^5.80^4.00^8.80^3.80 -~18445~^~1800~^~Pie, fried pies, lemon~^~PIE,FRIED PIES,LEMON~^^^^^0^^5.80^4.00^8.80^3.80 -~18446~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, unenriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,UNENR~^^^^^0^^5.70^4.10^8.90^4.10 -~18447~^~1800~^~Popovers, dry mix, unenriched~^~POPOVERS,DRY MIX,UNENR~^^^^^0^^5.70^4.10^8.70^4.10 -~18448~^~1800~^~Taco shells, baked, without added salt~^~TACO SHELLS,BKD,WO/ SALT~^^^^^0^^6.20^2.70^8.80^4.00 -~18449~^~1800~^~Tortillas, ready-to-bake or -fry, corn, without added salt~^~TORTILLAS,RTB OR -FRY,CORN,WO/ SALT~^^^^^0^^6.20^2.70^8.40^4.00 -~18450~^~1800~^~Tortillas, ready-to-bake or -fry, flour, without added calcium~^~TORTILLAS,RTB OR -FRY,FLR,WO/ CA~^^^^^0^^5.70^4.00^8.80^4.10 -~18451~^~1800~^~Cake, pound, commercially prepared, fat-free~^~CAKE,POUND,COMMLY PREP,FAT-FREE~^^^~Y~^^0^^6.10^4.20^8.40^4.10 -~18453~^~1800~^~Cake, yellow, light, dry mix~^~CAKE,YEL,LT,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00 -~18457~^~1800~^~Crackers, saltines, fat-free, low-sodium~^~CRACKERS,SALTINES,FAT-FREE,LOW-SODIUM~^^^~Y~^^0^^5.70^4.00^8.40^4.10 -~18459~^~1800~^~Tart, breakfast, low fat~^~TART,BRKFST,LOFAT~^^^~Y~^^0^^^^^ -~18513~^~1800~^~Archway Home Style Cookies, Sugar Free Oatmeal~^~ARCHWAY HOME STYLE COOKIES,SUGAR FREE OATMEAL~^^~Archway Cookies~^^^0^^^^^ -~18522~^~1800~^~Archway Home Style Cookies, Chocolate Chip Ice Box~^~ARCHWAY HOME STYLE COOKIES,CHOC CHIP ICE BOX~^^~Archway Cookies~^^^0^^6.25^^^ -~18524~^~1800~^~Archway Home Style Cookies, Coconut Macaroon~^~ARCHWAY HOME STYLE COOKIES,COCNT MACAROON~^^~Archway Cookies~^^^0^^6.25^^^ -~18527~^~1800~^~Archway Home Style Cookies, Date Filled Oatmeal~^~ARCHWAY HOME STYLE COOKIES,DATE FILLED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18528~^~1800~^~Archway Home Style Cookies, Dutch Cocoa~^~ARCHWAY HOME STYLE COOKIES,DUTCH COCOA~^^~Archway Cookies~^^^0^^6.25^^^ -~18529~^~1800~^~Archway Home Style Cookies, Frosty Lemon~^~ARCHWAY HOME STYLE COOKIES,FROSTY LEMON~^^~Archway Cookies~^^^0^^^^^ -~18532~^~1800~^~Archway Home Style Cookies, Iced Molasses~^~ARCHWAY HOME STYLE COOKIES,ICED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18533~^~1800~^~Archway Home Style Cookies, Iced Oatmeal~^~ARCHWAY HOME STYLE COOKIES,ICED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18535~^~1800~^~Archway Home Style Cookies, Molasses~^~ARCHWAY HOME STYLE COOKIES,MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18537~^~1800~^~Archway Home Style Cookies, Oatmeal~^~ARCHWAY HOME STYLE COOKIES,OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^ -~18538~^~1800~^~Archway Home Style Cookies, Oatmeal Raisin~^~ARCHWAY HOME STYLE COOKIES,OATMEAL RAISIN~^^~Archway Cookies~^^^0^^6.25^^^ -~18539~^~1800~^~Archway Home Style Cookies, Old Fashioned Molasses~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^ -~18540~^~1800~^~Archway Home Style Cookies, Old Fashioned Windmill Cookies~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED WINDMILL COOKIES~^^~Archway Cookies~^^^0^^6.25^^^ -~18541~^~1800~^~Archway Home Style Cookies, Peanut Butter~^~ARCHWAY HOME STYLE COOKIES,PNUT BUTTER~^^~Archway Cookies~^^^0^^^^^ -~18544~^~1800~^~Archway Home Style Cookies, Raspberry Filled~^~ARCHWAY HOME STYLE COOKIES,RASPBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18547~^~1800~^~Archway Home Style Cookies, Strawberry Filled~^~ARCHWAY HOME STYLE COOKIES,STRAWBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^ -~18562~^~1800~^~Archway Home Style Cookies, Reduced Fat Ginger Snaps~^~ARCHWAY HOME STYLE COOKIES,RED FAT GINGER SNAPS~^^~Archway Cookies~^^^0^^6.25^^^ -~18566~^~1800~^~Artificial Blueberry Muffin Mix, dry~^~ARTIFICIAL BLUEBERRY MUFFIN MIX,DRY~^^^^^0^^^^^ -~18567~^~1800~^~Kraft, Stove Top Stuffing Mix Chicken Flavor~^~KRAFT,STOVE TOP STUFFING MIX CHICK FLAVOR~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18603~^~1800~^~George Weston Bakeries, Brownberry Sage and Onion Stuffing Mix, dry~^~GEORGE WESTON BAKERIES,BROWNBERRY SAGE & ONION STFFNG MX,DRY~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18608~^~1800~^~Keebler, Keebler Chocolate Graham SELECTS~^~KEEBLER,KEEBLER CHOC GRAHAM SELECTS~^^~Keebler, Co.~^^^0^^^^^ -~18610~^~1800~^~Continental Mills, Krusteaz Almond Poppyseed Muffin Mix, Artificially Flavored, dry~^~CNTNNTL MLLS,KRUSTEAZ ALMD POPPYSD MFFN MX,ARTTFCL FLAV,DRY~^^~Continental Mills, Inc.~^^^0^^6.25^^^ -~18612~^~1800~^~Mckee Baking, Little Debbie Nutty Bars, Wafers with Peanut Butter, Chocolate Covered~^~MCKEE BKING,LTTLE DEBBIE NTTY BRS,WFRS W PNT BTTR,CHC CVERED~^^~McKee Baking, Co.~^^^0^^^^^ -~18614~^~1800~^~Martha White Foods, Martha White's Chewy Fudge Brownie Mix, dry~^~MARTHA WHITE FOODS,MRTHA WHITE'S CHEWY FUDGE BROWNIE MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18615~^~1800~^~Martha White Foods, Martha White's Buttermilk Biscuit Mix, dry~^~MARTHA WHITE FOODS,MARTHA WHITE'S BTTRMLK BISCUIT MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^ -~18616~^~1800~^~Mission Foods, Mission Flour Tortillas, Soft Taco, 8 inch~^~MISSION FOODS,MISSION FLR TORTILLAS,SOFT TACO,8 INCH~^^~Mission Foods~^^^0^^^^^ -~18617~^~1800~^~Nabisco, Nabisco Grahams Crackers~^~NABISCO,NABISCO GRAHAMS CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18619~^~1800~^~Nabisco, Nabisco Oreo Crunchies, Cookie Crumb Topping~^~NABISCO,NABISCO OREO CRUNCHIES,COOKIE CRUMB TOPPING~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18621~^~1800~^~Nabisco, Nabisco Ritz Crackers~^~NABISCO,NABISCO RITZ CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18629~^~1800~^~Pillsbury, Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY,BTTRMLK BISCUITS,ART FLAVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18630~^~1800~^~Pillsbury, Chocolate Chip Cookies, refrigerated dough~^~PILLSBURY,CHOC CHIP COOKIES,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18631~^~1800~^~Pillsbury, Crusty French Loaf, refrigerated dough~^~PILLSBURY,CRUSTY FRENCH LOAF,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18633~^~1800~^~Pillsbury Grands, Buttermilk Biscuits, refrigerated dough~^~PILLSBURY GRANDS,BTTRMLK BISCUITS,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18634~^~1800~^~Pillsbury Golden Layer Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY GOLDEN LAYER BTTRMLK BISCUITS,ART FLVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18635~^~1800~^~Pillsbury, Cinnamon Rolls with Icing, refrigerated dough~^~PILLSBURY,CINN ROLLS W/ ICING,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^ -~18637~^~1800~^~Kraft Foods, Shake N Bake Original Recipe, Coating for Pork, dry~^~KRAFT FOODS,SHKE N BKE ORIGINAL RECIPE,COATING FOR PORK,DRY~^^~Kraft Foods, Inc.~^^^0^^^^^ -~18639~^~1800~^~George Weston Bakeries, Thomas English Muffins~^~GEORGE WESTON BAKERIES,THOMAS ENG MUFFINS~^^~George weston Bakeries, Inc.~^^^0^^^^^ -~18640~^~1800~^~Heinz, Weight Watcher, Chocolate Eclair, frozen~^~HEINZ,WEIGHT WATCHER,CHOC ECLAIR,FRZ~^^~H.J. Heinz, Co.~^^^0^^6.25^^^ -~18641~^~1800~^~Interstate Brands Corp, Wonder Hamburger Rolls~^~INTERSTATE BRANDS CORP,WONDER HAMBURGER ROLLS~^^~Interstate Bakeries Corporation~^^^0^^^^^ -~18651~^~1800~^~Nabisco, Nabisco Snackwell's Fat Free Devil's Food Cookie Cakes~^~NABISCO,NABISCO SNACKWELL'S FAT FREE DEVIL'S FD COOKIE CAKES~^^~Nabisco Brands, Inc.~^^^0^^^^^ -~18927~^~1800~^~Crackers, cheese, sandwich-type with cheese filling~^~CRACKERS,CHS,SANDWICH-TYPE W/ CHS FILLING~^^^^^0^^^^^ -~18932~^~1800~^~Waffles, buttermilk, frozen, ready-to-heat~^~WAFFLES,BTTRMLK,FRZ,RTH~^^^^^0^^^^^ -~18933~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, toasted~^~WAFFLE,BTTRMLK,FRZ,RTH,TSTD~^^^~Y~^^0^^^^^ -~18934~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, microwaved~^~WAFFLE,BTTRMLK,FRZ,RTH,MICROWAVED~^^^^^0^^^4.00^9.00^4.00 -~18935~^~1800~^~Waffle, plain, frozen, ready-to-heat, microwave~^~WAFFLE,PLN,FRZ,RTH,MICROWAVE~^^^^^0^^^^^ -~18936~^~1800~^~Pancakes, plain, frozen, ready-to-heat, microwave (includes buttermilk)~^~PANCAKES,PLN,FRZ,RTH,MICROWAVE(INC BUTTMLK)~^^^^^0^^^^^ -~18938~^~1800~^~Toaster Pastries, fruit, frosted (include apples, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT,FRSTD~^^^~Y~^^0^^^^^ -~18939~^~1800~^~Toaster pastries, fruit, toasted (include apple, blueberry, cherry, strawberry)~^~TSTR PSTRS,FRT,TSTD (INCL APPL,BLUEBERRY,CHERRY,STRAWBERRY)~^^^^^0^^^^^ -~18940~^~1800~^~Muffin, blueberry, commercially prepared, low-fat~^~MUFFIN,BLUEBERRY,COMMLY PREP,LOW-FAT~^^^~Y~^^0^^^^^ -~18942~^~1800~^~Pie Crust, Cookie-type, Graham Cracker, Ready Crust~^~PIE CRUST,COOKIE-TYPE,GRAHAM CRACKER,READY CRUST~^^^~Y~^^0^^^^^ -~18943~^~1800~^~Pie Crust, Cookie-type, Chocolate, Ready Crust~^~PIE CRUST,COOKIE-TYPE,CHOC,READY CRUST~^^^~Y~^^0^^^^^ -~18944~^~1800~^~Pie, Dutch Apple, Commercially Prepared~^~PIE,DUTCH APPL,COMMLY PREP~^^^^^0^^^^^ -~18945~^~1800~^~Pie crust, deep dish, frozen, unbaked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,UNBAKED,MADE W/ ENR FLR~^^^^^0^^^^^ -~18946~^~1800~^~Pie crust, refrigerated, regular, baked~^~PIE CRUST,REFR,REG,BKD~^^^^^0^^^^^ -~18947~^~1800~^~Pie crust, deep dish, frozen, baked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,BKD,MADE W/ ENR FLR~^^^^^0^^^^^ -~18948~^~1800~^~Pie crust, refrigerated, regular, unbaked~^~PIE CRUST,REFR,REG,UNBAKED~^^^^^0^^^^^ -~18949~^~1800~^~Crackers, whole-wheat, reduced fat~^~CRACKERS,WHOLE-WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18950~^~1800~^~Crackers, wheat, reduced fat~^~CRACKERS,WHEAT,RED FAT~^^^~Y~^^0^^^^^ -~18951~^~1800~^~Waffles, chocolate chip, frozen, ready-to-heat~^~WAFFLES,CHOC CHIP,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~18952~^~1800~^~Tostada shells, corn~^~TOSTADA SHELLS,CORN~^~Latino food~^^^^0^^^^^ -~18953~^~1800~^~Bread, salvadoran sweet cheese (quesadilla salvadorena)~^~BREAD,SALVADORAN SWT CHS (QUESADILLA SALVADORENA)~^~Latino food~^^~Y~^^0^^6.25^^^ -~18954~^~1800~^~Bread, pound cake type, pan de torta salvadoran~^~BREAD,POUND CAKE TYPE,PAN DE TORTA SALVADORAN~^~Latino food~^^^^0^^^^^ -~18955~^~1800~^~Bread, pan dulce, sweet yeast bread~^~BREAD,PAN DULCE,SWT YEAST BREAD~^~Latino food~^^~Y~^^0^^^^^ -~18956~^~1800~^~Keikitos (muffins), Latino bakery item~^~KEIKITOS (MUFFINS),LATINO BAKERY ITEM~^^^^^0^^6.25^^^ -~18957~^~1800~^~Cake, pound, Bimbo Bakeries USA, Panque Casero, home baked style~^~CAKE,POUND,BIMBO BAKERIES USA,PANQUE CASERO,HOME BKD STYLE~^~Latino food~^~Bimbo Bakeries USA~^^^0^^6.25^4.00^9.00^4.00 -~18958~^~1800~^~Pan Dulce, La Ricura, Salpora de Arroz con Azucar, cookie-like, contains wheat flour and rice flour~^~PAN DULCE,LA RICURA,SLPORA DE ARROZ CON AZUCAR, WHEAT&RC FLR~^~Latino rice cookies~^~Quesos La Ricura, Ltd.~^^^0^^6.25^^^ -~18959~^~1800~^~Pastry, Pastelitos de Guava (guava pastries)~^~PASTRY,PASTELITOS DE GUAVA (GUAVA PASTRIES)~^~Latino food, pastelios de guava, turnovers~^^^^0^^^^^ -~18960~^~1800~^~Crackers, snack, Goya Crackers~^~CRACKERS,SNACK,GOYA CRACKERS~^~Latino food~^^^^0^^6.25^^^ -~18961~^~1800~^~Crackers, cream, Gamesa Sabrosas~^~CRACKERS,CRM,GAMESA SABROSAS~^~Latino food~^~Pepsico Mexico~^^^0^^^^^ -~18962~^~1800~^~Crackers, cream, La Moderna Rikis Cream Crackers~^~CRACKERS,CRM,LA MODERNA RIKIS CRM CRACKERS~^^^^^0^^^^^ -~18963~^~1800~^~Garlic bread, frozen~^~GARLIC BREAD,FRZ~^^^~Y~^^0^^^^^ -~18964~^~1800~^~Cinnamon buns, frosted (includes honey buns)~^~CINNAMON BUNS,FRSTD (INCLUDES HONEY BUNS)~^^^~Y~^^0^^^^^ -~18965~^~1800~^~Crackers, cheese, reduced fat~^~CRACKERS,CHS,RED FAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18966~^~1800~^~Crackers, saltines, whole wheat (includes multi-grain)~^~CRACKERS,SALTINES,WHL WHEAT (INCLUDES MULTI-GRAIN)~^^^~Y~^^0^^^^^ -~18967~^~1800~^~Bread, white wheat~^~BREAD,WHITE WHEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18968~^~1800~^~Bagels, wheat~^~BAGELS,WHEAT~^^^~Y~^^0^^^^^ -~18969~^~1800~^~Cream puff, eclair, custard or cream filled, iced~^~CREAM PUFF,ECLAIR,CUSTARD OR CRM FILLED,ICED~^^^~Y~^^0^^^^^ -~18970~^~1800~^~Tortillas, ready-to-bake or -fry, flour, shelf stable~^~TORTILLAS,RTB OR -FRY,FLR,SHELF STABLE~^^^~Y~^^0^^6.25^^^ -~18971~^~1800~^~Bread, potato~^~BREAD,POTATO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~18972~^~1800~^~Bread, cheese~^~BREAD,CHS~^^^~Y~^^0^^^^^ -~18973~^~1800~^~Focaccia, Italian flatbread, plain~^~FOCACCIA,ITALIAN FLATBREAD,PLN~^^^~Y~^^0^^^^^ -~19000~^~1900~^~SCHIFF,TIGER'S MILK BAR~^~SCHIFF,TIGER'S MILK BAR~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19001~^~1900~^~Candies, TOBLERONE, milk chocolate with honey and almond nougat~^~CANDIES,TOBLERONE,MILK CHOC W/ HONEY & ALMOND NOUGAT~^^^~Y~^^0^^5.90^3.40^8.50^3.70 -~19002~^~2500~^~Snacks, beef jerky, chopped and formed~^~BEEF JERKY,CHOPD&FORMED~^^^~Y~^^0^^6.25^^^ -~19003~^~2500~^~Snacks, corn-based, extruded, chips, plain~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,PLN~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19004~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor~^~CORN-BASED,EXTRUDED,CHIPS,BARBECUE-FLAVOR~^^^^^0^^6.10^2.70^8.70^3.90 -~19005~^~2500~^~Snacks, corn-based, extruded, cones, plain~^~CORN-BASED,EXTRUDED,CONES,PLN~^^^^^0^^6.20^3.50^8.60^4.10 -~19007~^~2500~^~Snacks, corn-based, extruded, onion-flavor~^~SNACKS,CORN-BASED,EXTRUDED,ONION-FLAVOR~^^^~Y~^^0^^6.20^3.50^8.80^4.20 -~19008~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor~^~CORN-BASED,EXTRUDED,PUFFS OR TWISTS,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^4.00^8.80^4.10 -~19009~^~2500~^~Snacks, KRAFT, CORNNUTS, plain~^~CORNNUTS,PLAIN~^^~Kraft Foods, Inc.~^~Y~^^0^^6.25^2.70^8.70^4.00 -~19010~^~2500~^~Snacks, crisped rice bar, chocolate chip~^~CRISPED RICE BAR,CHOC CHIP~^^^^^0^^5.80^3.40^8.60^3.70 -~19013~^~1900~^~Snacks, fruit leather, pieces~^~FRUIT LEATHER,PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19014~^~1900~^~Snacks, fruit leather, rolls~^~FRUIT LEATHER,ROLLS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19015~^~2500~^~Snacks, granola bars, hard, plain~^~GRANOLA BARS,HARD,PLAIN~^^^~Y~^^0^^6.25^3.90^8.80^4.00 -~19016~^~2500~^~Snacks, granola bars, hard, almond~^~GRANOLA BARS,HARD,ALMOND~^^^^^0^^5.70^3.50^8.60^4.00 -~19017~^~2500~^~Snacks, granola bars, hard, chocolate chip~^~GRANOLA BARS,HARD,CHOC CHIP~^^^^^0^^5.80^3.40^8.50^3.80 -~19018~^~1900~^~Fruit syrup~^~FRUIT SYRUP~^^^~Y~^^0^^6.25^^^ -~19020~^~2500~^~Snacks, granola bars, soft, uncoated, plain~^~GRANOLA BARS,SOFT,UNCOATED,PLN~^^^^^0^^5.90^3.50^8.60^4.00 -~19021~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER~^^^^^0^^5.60^3.50^8.40^4.00 -~19022~^~2500~^~Snacks, granola bars, soft, uncoated, raisin~^~GRANOLA BARS,SOFT,UNCOATED,RAISIN~^^^^^0^^5.80^3.50^8.40^4.10 -~19024~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, chocolate chip~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,CHOC CHIP~^^^^^0^^6.10^3.50^8.60^3.60 -~19025~^~1900~^~Candies, honey-combed, with peanut butter~^~CANDIES,HONEY-COMBED,W/ PNUT BUTTER~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~19026~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, peanut butter~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,PNUT BUTTER~^^^~Y~^^0^^5.90^3.70^8.60^3.80 -~19027~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter and chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER&CHOC CHIP~^^^^^0^^5.60^3.40^8.40^3.70 -~19029~^~1900~^~Topping, SMUCKER'S MAGIC SHELL~^~TOPPING,SMUCKER'S MAGIC SHELL~^^^~Y~^^0^^6.25^^^ -~19030~^~1900~^~Syrup, fruit flavored~^~SYRUP,FRUIT FLAV~^^^~Y~^^0^^6.25^^^ -~19031~^~2500~^~Snacks, oriental mix, rice-based~^~ORIENTAL MIX,RICE-BASED~^^^~Y~^^0^^0.00^^^ -~19034~^~2500~^~Snacks, popcorn, air-popped~^~POPCORN,AIR-POPPED~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~19035~^~2500~^~Snacks, popcorn, oil-popped, microwave, regular flavor, no trans fat~^~SNACKS,POPCORN,OIL-POPPED,MICROWAVE,REG FLAVOR,NO TRANS FAT~^^^~Y~^^0^^6.25^2.70^8.80^4.00 -~19036~^~2500~^~Snacks, popcorn, cakes~^~POPCORN,CAKES~^^^~Y~^^0^^6.10^3.00^8.40^4.10 -~19038~^~2500~^~Snacks, popcorn, caramel-coated, with peanuts~^~POPCORN,CARAMEL-COATED,W/PNUTS~^^^~Y~^^0^^5.90^3.00^8.50^3.90 -~19039~^~2500~^~Snacks, popcorn, caramel-coated, without peanuts~^~POPCORN,CARAMEL-COATED,WO/PNUTS~^^^~Y~^^0^^6.20^2.70^8.80^3.90 -~19040~^~2500~^~Snacks, popcorn, cheese-flavor~^~POPCORN,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^3.00^8.80^4.00 -~19041~^~2500~^~Snacks, pork skins, plain~^~PORK SKINS,PLAIN~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~19042~^~2500~^~Snacks, potato chips, barbecue-flavor~^~POTATO CHIPS,BARBECUE-FLAVOR~^^^~Y~^^0^^6.10^2.40^8.70^3.60 -~19043~^~2500~^~Snacks, potato chips, sour-cream-and-onion-flavor~^~POTATO CHIPS,SOUR-CREAM-AND-ONION-FLAVOR~^^^^^0^^6.30^3.90^8.80^3.90 -~19045~^~2500~^~Snacks, potato chips, made from dried potatoes, reduced fat~^~POTATO CHIPS,MADE FROM DRIED POTATOES,LT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19046~^~2500~^~Snacks, potato chips, made from dried potatoes, sour-cream and onion-flavor~^~POTATO CHIPS,MADE FR DRIED POTATOES,SOUR-CREAM&ONION-FLAVOR~^^^^^0^^6.30^3.30^8.80^3.90 -~19047~^~2500~^~Snacks, pretzels, hard, plain, salted~^~PRETZELS,HARD,PLN,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19048~^~2500~^~Snacks, pretzels, hard, confectioner's coating, chocolate-flavor~^~PRETZELS,HARD,CONFECTIONER'S COATING,CHOCOLATE-FLAVOR~^^^~Y~^^0^^5.80^3.80^8.70^4.00 -~19049~^~2500~^~Snacks, M&M MARS, COMBOS Snacks Cheddar Cheese Pretzel~^~SNACKS,M&M MARS,COMBOS SNACKS CHEDDAR CHS PRETZEL~^^^~Y~^^0^^6.25^^^ -~19050~^~2500~^~Snacks, pretzels, hard, whole-wheat including both salted and unsalted~^~SNACKS,PRETZELS,HARD,WHOLE-WHEAT INCL BOTH SALTED & UNSALTED~^^^^^0^^5.80^3.50^8.50^3.70 -~19051~^~2500~^~Snacks, rice cracker brown rice, plain~^~SNACKS,RICE CRACKER BROWN RICE,PLN~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19052~^~2500~^~Snacks, rice cakes, brown rice, buckwheat~^~RICE CAKES,BROWN RICE,BUCKWHEAT~^^^^^0^^6.10^3.40^8.40^4.00 -~19053~^~2500~^~Snacks, rice cakes, brown rice, sesame seed~^~RICE CAKES,BROWN RICE,SESAME SD~^^^^^0^^5.90^3.10^8.40^4.10 -~19056~^~2500~^~Snacks, tortilla chips, plain, white corn, salted~^~TORTILLA CHIPS,PLAIN~^^^~Y~^^0^^6.20^2.70^8.80^4.00 -~19057~^~2500~^~Snacks, tortilla chips, nacho cheese~^~Snacks, tortilla chips, nacho cheese~^^^~Y~^^0^^6.25^^^ -~19058~^~2500~^~Snacks, tortilla chips, ranch-flavor~^~SNACKS,TORTILLA CHIPS,RANCH-FLAVOR~^^^^^0^^6.25^^^ -~19059~^~2500~^~Snacks, trail mix, regular~^~TRAIL MIX,REGULAR~^^^^^0^^5.40^3.50^8.40^3.70 -~19061~^~2500~^~Snacks, trail mix, tropical~^~TRAIL MIX,TROPICAL~^^^^^0^^0.00^^^ -~19062~^~2500~^~Snacks, trail mix, regular, with chocolate chips, salted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,SALTED NUTS&SEEDS~^^^~Y~^^0^^5.50^3.50^8.40^3.70 -~19063~^~2500~^~Snacks, tortilla chips, taco-flavor~^~TORTILLA CHIPS,TACO-FLAVOR~^^^^^0^^6.20^2.90^8.70^3.90 -~19064~^~1900~^~Candies, TOOTSIE ROLL, chocolate-flavor roll~^~CANDIES,TOOTSIE ROLL,CHOCOLATE-FLAVOR ROLL~^^^^^0^^6.25^4.00^9.00^4.00 -~19065~^~1900~^~Candies, ALMOND JOY Candy Bar~^~CANDIES,ALMOND JOY CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19067~^~1900~^~Candies, TWIZZLERS CHERRY BITES~^~CANDIES,TWIZZLERS CHERRY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19068~^~1900~^~Candies, NESTLE, BIT-O'-HONEY Candy Chews~^~CANDIES,NESTLE,BIT-O'-HONEY CANDY CHEWS~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19069~^~1900~^~Candies, NESTLE, BUTTERFINGER Bar~^~CANDIES,NESTLE,BUTTERFINGER BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.27^8.79^3.87 -~19070~^~1900~^~Candies, butterscotch~^~CANDIES,BUTTERSCOTCH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19071~^~1900~^~Candies, carob, unsweetened~^~CANDIES,CAROB,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19074~^~1900~^~Candies, caramels~^~CANDIES,CARAMELS~^^^~Y~^^0^^6.40^4.30^8.60^3.80 -~19075~^~1900~^~Candies, CARAMELLO Candy Bar~^~CANDIES,CARAMELLO CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19076~^~1900~^~Candies, caramels, chocolate-flavor roll~^~CANDIES, CARAMELS, CHOCOLATE-FLAVOR ROLL~^^^~Y~^^0^^6.25^^^ -~19077~^~1900~^~Baking chocolate, unsweetened, liquid~^~BAKING CHOC,UNSWTND,LIQ~^^^^^0^^5.63^1.83^8.40^1.33 -~19078~^~1900~^~Baking chocolate, unsweetened, squares~^~Baking chocolate, unsweetened, squares~^^^~Y~^^0^^^^^ -~19079~^~1900~^~Candies, confectioner's coating, yogurt~^~CANDIES,CONFECTIONER'S COATING,YOGURT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19080~^~1900~^~Candies, semisweet chocolate~^~CANDIES,SEMISWEET CHOC~^^^~Y~^^0^^5.63^1.83^8.50^3.40 -~19081~^~1900~^~Candies, sweet chocolate~^~CANDIES,SWEET CHOCOLATE~^^^~Y~^^0^^5.63^1.83^8.60^3.40 -~19083~^~1900~^~Candies, sweet chocolate coated fondant~^~CANDIES,SWT CHOC COATD FONDANT~^^^~Y~^^0^^5.90^3.10^8.40^3.50 -~19084~^~1900~^~Candies, HERSHEY'S GOLDEN ALMOND SOLITAIRES~^~CANDIES,HERSHEY'S GOLDEN ALMOND SOLITAIRES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19085~^~1900~^~Candies, confectioner's coating, butterscotch~^~CANDIES,CONFECTIONER'S COATING,BUTTERSCOTCH~^^^~Y~^^0^^6.38^4.00^9.00^4.00 -~19086~^~1900~^~Candies, confectioner's coating, peanut butter~^~CANDIES,CONFECTIONER'S COATING,PNUT BUTTER~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19087~^~1900~^~Candies, white chocolate~^~CANDIES,WHITE CHOC~^~confectioner's coating~^^~Y~^^0^^6.38^4.30^8.80^3.90 -~19088~^~1900~^~Ice creams, vanilla, light~^~ICE CREAMS,VANILLA,LT~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19089~^~1900~^~Ice creams, vanilla, rich~^~ICE CREAMS,VANILLA,RICH~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19090~^~1900~^~Ice creams, french vanilla, soft-serve~^~ICE CREAMS,FRENCH VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19091~^~1900~^~Candies, YORK Peppermint Pattie~^~CANDIES,YORK PEPPERMINT PATTIE~^^~Hershey Food Corp.~^^^0^^6.38^3.47^8.37^4.07 -~19092~^~1900~^~Candies, TWIZZLERS NIBS CHERRY BITS~^~CANDIES,TWIZZLERS NIBS CHERRY BITS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19093~^~1900~^~Candies, SYMPHONY Milk Chocolate Bar~^~CANDIES,SYMPHONY MILK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19094~^~1900~^~Desserts, flan, caramel custard, prepared-from-recipe~^~DESSERTS,FLAN,CARAMEL CUSTARD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19095~^~1900~^~Ice creams, vanilla~^~ICE CREAMS,VANILLA~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19096~^~1900~^~Ice creams, vanilla, light, soft-serve~^~ICE CREAMS,VANILLA,LT,SOFT-SERVE~^^^~Y~^^0^^6.40^4.10^8.79^3.80 -~19097~^~1900~^~Sherbet, orange~^~SHERBET,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19098~^~1900~^~Candies, 5TH AVENUE Candy Bar~^~CANDIES,5TH AVENUE CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.38^4.27^8.79^3.87 -~19099~^~1900~^~Candies, fondant, prepared-from-recipe~^~CANDIES,FONDANT,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19100~^~1900~^~Candies, fudge, chocolate, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19101~^~1900~^~Candies, fudge, chocolate, with nuts, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,W/ NUTS,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19102~^~1900~^~Candies, fudge, peanut butter, prepared-from-recipe~^~CANDIES,FUDGE,PNUT BUTTER,PREPARED-FROM-RECIPE~^^^^^0^^6.25^^^ -~19103~^~1900~^~Candies, fudge, vanilla, prepared-from-recipe~^~CANDIES,FUDGE,VANILLA,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^ -~19104~^~1900~^~Candies, fudge, vanilla with nuts~^~CANDIES,FUDGE,VANILLA W/ NUTS~^^^~Y~^^0^^6.25^^^ -~19105~^~1900~^~Candies, NESTLE, GOOBERS Chocolate Covered Peanuts~^~CANDIES,NESTLE,GOOBERS CHOC COVERED PNUTS~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19106~^~1900~^~Candies, gumdrops, starch jelly pieces~^~CANDIES,GUMDROPS,STARCH JELLY PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19107~^~1900~^~Candies, hard~^~CANDIES,HARD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19108~^~1900~^~Candies, jellybeans~^~CANDIES,JELLYBEANS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19109~^~1900~^~Candies, KIT KAT Wafer Bar~^~CANDIES,KIT KAT WAFER BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19110~^~1900~^~Candies, KRACKEL Chocolate Bar~^~CANDIES,KRACKEL CHOC BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19111~^~1900~^~Candies, NESTLE, BABY RUTH Bar~^~CANDIES,NESTLE,BABY RUTH BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19112~^~1900~^~Candies, TWIZZLERS Strawberry Twists Candy~^~CANDIES,TWIZZLERS STRAWBERRY TWISTS CANDY~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19113~^~1900~^~Syrups, table blends, pancake, with butter~^~SYRUPS,TABLE BLENDS,PANCAKE,W/BUTTER~^^^~Y~^^0^^6.25^^^ -~19114~^~1900~^~Ice creams, chocolate, light~^~ICE CREAMS,CHOC,LT~^^^~Y~^^0^^6.25^^^ -~19115~^~1900~^~Candies, MARS SNACKFOOD US, MARS Almond Bar~^~CANDIES,MARS SNACKFOOD US,MARS ALMOND BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^3.70^8.60^3.80 -~19116~^~1900~^~Candies, marshmallows~^~CANDIES,MARSHMALLOWS~^^^~Y~^^0^^5.60^3.90^8.40^3.80 -~19117~^~1900~^~Candies, halavah, plain~^~CANDIES,HALAVAH,PLAIN~^^^^^0^^5.80^4.00^8.50^3.90 -~19118~^~1900~^~Candies, NESTLE, OH HENRY! Bar~^~CANDIES,NESTLE,OH HENRY! BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19119~^~1900~^~Candies, NESTLE, CHUNKY Bar~^~CANDIES,NESTLE,CHUNKY BAR~^^~Nestle USA, Inc.~^^^0^^6.25^^^ -~19120~^~1900~^~Candies, milk chocolate~^~CANDIES,MILK CHOC~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19121~^~1900~^~Puddings, banana, dry mix, instant, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19122~^~1900~^~Puddings, banana, dry mix, regular, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19123~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19124~^~1900~^~Baking chocolate, mexican, squares~^~BAKING CHOC,MEXICAN,SQUARES~^^^~Y~^^0^^6.25^2.00^8.40^3.70 -~19125~^~1900~^~Chocolate-flavored hazelnut spread~^~CHOCOLATE-FLAVORED HAZELNUT SPRD~^^^~Y~^^0^^6.25^^^ -~19126~^~1900~^~Candies, milk chocolate coated peanuts~^~CANDIES,MILK CHOC COATD PNUTS~^^^~Y~^^0^^5.80^3.60^8.60^3.70 -~19127~^~1900~^~Candies, milk chocolate coated raisins~^~CANDIES,MILK CHOC COATD RAISINS~^^^~Y~^^0^^6.20^3.60^8.70^3.60 -~19128~^~1900~^~Syrups, table blends, pancake, reduced-calorie~^~SYRUPS,TABLE BLENDS,PANCAKE,RED-CAL~^^^~Y~^^0^^6.25^^^3.70 -~19129~^~1900~^~Syrups, table blends, pancake~^~SYRUPS,TABLE BLENDS,PANCAKE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19130~^~1900~^~Candies, HERSHEY'S POT OF GOLD Almond Bar~^~CANDIES,HERSHEY'S POT OF GOLD ALMOND BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19132~^~1900~^~Candies, milk chocolate, with almonds~^~CANDIES,MILK CHOC,W/ALMONDS~^^^~Y~^^0^^5.90^3.60^8.60^3.70 -~19134~^~1900~^~Candies, milk chocolate, with rice cereal~^~CANDIES,MILK CHOC,W/RICE CRL~^^^~Y~^^0^^6.20^3.70^8.70^3.80 -~19135~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19136~^~1900~^~Candies, HERSHEY'S SKOR Toffee Bar~^~CANDIES,HERSHEY'S SKOR TOFFEE BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19137~^~1900~^~Toppings, strawberry~^~TOPPINGS,STRAWBERRY~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19138~^~1900~^~Candies, truffles, prepared-from-recipe~^~CANDIES,TRUFFLES,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19139~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Semisweet Chocolate Mini Baking Bits~^~BAK CHOC,MARS SNACKFOOD US,M&M'S SEMISWT CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19140~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^5.46^3.47^8.37^4.07 -~19141~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MILK CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19142~^~1900~^~Candies, MOUNDS Candy Bar~^~CANDIES,MOUNDS CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19143~^~1900~^~Candies, MR. GOODBAR Chocolate Bar~^~CANDIES,MR. GOODBAR CHOC BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19144~^~1900~^~Candies, NESTLE, 100 GRAND Bar~^~CANDIES,NESTLE,100 GRAND BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^ -~19145~^~1900~^~Candies, NESTLE, CRUNCH Bar and Dessert Topping~^~CANDIES,NESTLE,CRUNCH BAR&DSSRT TOPPING~^^~Nestle USA, Inc.~^^^0^^^^^ -~19146~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Milk Chocolate Mini Baking Bits~^~BAKING CHOC,MARS SNACKFOOD US,M&M'S MILK CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^ -~19147~^~1900~^~Candies, peanut bar~^~CANDIES,PEANUT BAR~^^^~Y~^^0^^5.50^3.50^8.40^3.90 -~19148~^~1900~^~Candies, peanut brittle, prepared-from-recipe~^~CANDIES,PNUT BRITTLE,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19149~^~1900~^~Candies, NESTLE, RAISINETS Chocolate Covered Raisins~^~CANDIES,NESTLE,RAISINETS CHOC COVERED RAISINS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19150~^~1900~^~Candies, REESE'S Peanut Butter Cups~^~CANDIES,REESE'S PNUT BUTTER CUPS~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19151~^~1900~^~Candies, REESE'S PIECES Candy~^~CANDIES,REESE'S PIECES CANDY~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19152~^~1900~^~Candies, ROLO Caramels in Milk Chocolate~^~CANDIES,ROLO CARAMELS IN MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19153~^~1900~^~Candies, NESTLE, AFTER EIGHT Mints~^~CANDIES,NESTLE,AFTER EIGHT MINTS~^^~Nestle USA, Inc.~^^^0^^^^^ -~19154~^~1900~^~Candies, sesame crunch~^~CANDIES,SESAME CRUNCH~^^^~Y~^^0^^5.30^3.50^8.40^3.90 -~19155~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS BAR~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19156~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Original fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,ORIG FRUIT~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19157~^~1900~^~Candies, MARS SNACKFOOD US, M&M's MINIs Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MINIS MILK CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19159~^~1900~^~Candies, MARS SNACKFOOD US, 3 MUSKETEERS Bar~^~CANDIES,MARS SNACKFOOD US,3 MUSKETEERS BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19160~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Caramel Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX CARAMEL COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19161~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Peanut Butter Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX PNUT BUTTER COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~19162~^~1900~^~Candies, WHATCHAMACALLIT Candy Bar~^~CANDIES,WHATCHAMACALLIT CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19163~^~1900~^~Chewing gum~^~CHEWING GUM~^~bubble gum~^^~Y~^^0^^6.25^1.82^8.37^3.70 -~19164~^~1900~^~Candies, SPECIAL DARK Chocolate Bar~^~CANDIES,SPL DK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19165~^~1900~^~Cocoa, dry powder, unsweetened~^~COCOA,DRY PDR,UNSWTND~^^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19166~^~1900~^~Cocoa, dry powder, unsweetened, processed with alkali~^~COCOA,DRY PDR,UNSWTND,PROC W/ALKALI~^~Dutch cocoa~^^~Y~^^0^^5.63^1.83^8.37^1.33 -~19168~^~1900~^~Desserts, egg custard, baked, prepared-from-recipe~^~DESSERTS,EGG CUSTARD,BKD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19169~^~1900~^~Egg custards, dry mix~^~EGG CUSTARDS,DRY MIX~^^^^^0^^6.30^4.30^9.00^3.90 -~19170~^~1900~^~Egg custards, dry mix, prepared with whole milk~^~EGG CUSTARDS,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19171~^~1900~^~Cocoa, dry powder, unsweetened, HERSHEY'S European Style Cocoa~^~COCOA,DRY PDR,UNSWTND,HERSHEY'S EUROPEAN STYLE COCOA~^^~Hershey Food Corp.~^^^0^^^^^ -~19172~^~1900~^~Gelatin desserts, dry mix~^~GELATIN DSSRT,DRY MIX~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19173~^~1900~^~Gelatin desserts, dry mix, prepared with water~^~GELATIN DSSRT,DRY MIX,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19175~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT~^^^~Y~^^0^^5.55^0.00^0.00^2.47 -~19176~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, prepared with water~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87 -~19177~^~1900~^~Gelatins, dry powder, unsweetened~^~GELATINS,DRY PDR,UNSWTND~^^^~Y~^^0^^5.55^3.90^9.02^ -~19181~^~1900~^~Candies, YORK BITES~^~CANDIES,YORK BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19182~^~1900~^~Desserts, mousse, chocolate, prepared-from-recipe~^~DESSERTS,MOUSSE,CHOC,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19183~^~1900~^~Puddings, chocolate, ready-to-eat~^~PUDDINGS,CHOC,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19184~^~1900~^~Puddings, chocolate, dry mix, instant~^~PUDDINGS,CHOC,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19185~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19186~^~1900~^~Desserts, apple crisp, prepared-from-recipe~^~DESSERTS,APPL CRISP,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19187~^~1900~^~Flan, caramel custard, dry mix~^~FLAN,CARAMEL CUSTARD,DRY MIX~^^^^^0^^6.25^1.80^8.40^3.80 -~19188~^~1900~^~Puddings, chocolate, dry mix, regular~^~DESSERTS,PUDD,CHOC,DRY MIX,REG~^^^~Y~^^0^^5.60^1.90^8.40^3.80 -~19189~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHOLE MILK~^^^~Y~^^0^^5.60^^^ -~19190~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19191~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19193~^~1900~^~Puddings, rice, ready-to-eat~^~Puddings, rice, ready-to-eat~^^^~Y~^^0^^6.25^^^ -~19194~^~1900~^~Puddings, rice, dry mix~^~PUDDINGS,RICE,DRY MIX~^^^^^0^^6.00^3.80^8.40^4.00 -~19195~^~1900~^~Puddings, rice, dry mix, prepared with whole milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19198~^~1900~^~Puddings, tapioca, dry mix~^~PUDDINGS,TAPIOCA,DRY MIX~^^^^^0^^6.25^3.00^8.40^3.90 -~19199~^~1900~^~Puddings, tapioca, dry mix, prepared with whole milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19201~^~1900~^~Puddings, vanilla, ready-to-eat~^~PUDDINGS,VANILLA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19202~^~1900~^~Puddings, vanilla, dry mix, instant~^~PUDDINGS,VANILLA,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19203~^~1900~^~Puddings, vanilla, dry mix, instant, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^ -~19204~^~1900~^~Puddings, lemon, dry mix, instant, prepared with 2% milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^ -~19205~^~1900~^~Egg custards, dry mix, prepared with 2% milk~^~EGG CUSTARDS,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19206~^~1900~^~Puddings, vanilla, dry mix, regular~^~PUDDINGS,VANILLA,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19207~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ WHL MILK~^^^~Y~^^0^^6.25^^^ -~19208~^~1900~^~Puddings, rice, dry mix, prepared with 2% milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19209~^~1900~^~Puddings, tapioca, dry mix, prepared with 2% milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19212~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with 2% milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19213~^~1900~^~Rennin, chocolate, dry mix, prepared with 2% milk~^~RENNIN,CHOC,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19214~^~1900~^~Rennin, vanilla, dry mix, prepared with 2% milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19216~^~1900~^~Candies, praline, prepared-from-recipe~^~CANDIES,PRALINE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19217~^~1900~^~Frozen novelties, ice type, fruit, no sugar added~^~FROZEN NOVELTIES,ICE TYPE,FRUIT,NO SUGAR ADDED~^^^^^0^^5.60^3.90^9.00^3.50 -~19218~^~1900~^~Puddings, tapioca, ready-to-eat~^~PUDDINGS,TAPIOCA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19219~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^ -~19220~^~1900~^~Desserts, rennin, chocolate, dry mix~^~DESSERTS,RENNIN,CHOC,DRY MIX~^^^^^0^^5.60^2.20^8.37^3.60 -~19221~^~1900~^~Rennin, chocolate, dry mix, prepared with whole milk~^~RENNIN,CHOC,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19222~^~1900~^~Desserts, rennin, vanilla, dry mix~^~DESSERTS,RENNIN,VANILLA,DRY MIX~^^^^^0^^5.60^3.90^9.00^3.90 -~19223~^~1900~^~Rennin, vanilla, dry mix, prepared with whole milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19225~^~1900~^~Desserts, rennin, tablets, unsweetened~^~DESSERTS,RENNIN,TABLETS,UNSWTND~^^^^^0^^6.25^4.00^9.00^4.00 -~19226~^~1900~^~Frostings, chocolate, creamy, ready-to-eat~^~FROSTINGS,CHOC,CREAMY,RTE~^^^~Y~^^0^^5.60^1.80^8.80^3.80 -~19227~^~1900~^~Frostings, coconut-nut, ready-to-eat~^~FROSTINGS,COCONUT-NUT,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19228~^~1900~^~Frostings, cream cheese-flavor, ready-to-eat~^~FROSTINGS,CRM CHEESE-FLAVOR,RTE~^^^^^0^^5.80^4.10^8.80^3.90 -~19230~^~1900~^~Frostings, vanilla, creamy, ready-to-eat~^~FROSTINGS,VANILLA,CREAMY,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19231~^~1900~^~Flan, caramel custard, dry mix, prepared with 2% milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^ -~19232~^~1900~^~Flan, caramel custard, dry mix, prepared with whole milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^ -~19233~^~1900~^~Puddings, vanilla, ready-to-eat, fat free~^~PUDDINGS,VANILLA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19234~^~1900~^~Puddings, tapioca, ready-to-eat, fat free~^~PUDDINGS,TAPIOCA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19235~^~1900~^~Puddings, chocolate, ready-to-eat, fat free~^~PUDDINGS,CHOC,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19236~^~1900~^~Candies, HERSHEY'S MILK CHOCOLATE WITH ALMOND BITES~^~CANDIES,HERSHEY'S MILK CHOC W/ ALMOND BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19238~^~1900~^~Candies, REESE'S BITES~^~CANDIES,REESE'S BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19239~^~1900~^~Candies, REESE'S NUTRAGEOUS Candy Bar~^~CANDIES,REESE'S NUTRAGEOUS CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^ -~19240~^~1900~^~Frostings, chocolate, creamy, dry mix~^~FROSTINGS,CHOC,CREAMY,DRY MIX~^^^^^0^^5.60^1.80^8.80^3.70 -~19241~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with butter~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ BUTTER~^^^^^0^^^^^ -~19243~^~1900~^~Candies, HEATH BITES~^~CANDIES,HEATH BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19244~^~1900~^~Frostings, vanilla, creamy, dry mix~^~FROSTINGS,VANILLA,CREAMY,DRY MIX~^^^^^0^^6.25^3.46^8.80^3.90 -~19246~^~1900~^~Frostings, white, fluffy, dry mix~^~FROSTINGS,WHITE,FLUFFY,DRY MIX~^^^^^0^^6.10^4.30^8.60^3.80 -~19247~^~1900~^~Frostings, white, fluffy, dry mix, prepared with water~^~FROSTINGS,WHITE,FLUFFY,DRY MIX,PREP W/H2O~^^^^^0^^0.00^^^ -~19248~^~1900~^~Candies, HERSHEY'S, ALMOND JOY BITES~^~CANDIES,HERSHEY'S,ALMOND JOY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19249~^~1900~^~Candies, HERSHEY, REESESTICKS crispy wafers, peanut butter, milk chocolate~^~CANDIES,HERSHEY,REESESTICKS CRISPY WAFERS,PNUT BUT,MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^ -~19250~^~1900~^~Candies, HERSHEY, KIT KAT BIG KAT Bar~^~CANDIES,HERSHEY,KIT KAT BIG KAT BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19252~^~1900~^~Candies, REESE'S, FAST BREAK, milk chocolate peanut butter and soft nougats~^~CANDIES,REESE'S,FAST BREAK,MILK CHOC PNT BTR & SFT NUGTS~^^~Hershey Food Corp.~^^^0^^6.25^^^ -~19254~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Milk Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE MILK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19255~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Dark Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE DK CHOC~^^~Masterfoods USA~^^^0^^^^^ -~19256~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels, milk chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKYWAYCARAML,MILKCHOCOV~^^~Masterfoods USA~^^^0^^^^^ -~19258~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels. dark chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKY WAY CARML. DKCHOCCOV~^^~Masterfoods USA~^^^0^^^^^ -~19260~^~1900~^~Ice creams, vanilla, light, no sugar added~^~ICE CREAMS,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19263~^~1900~^~Frozen novelties, fruit and juice bars~^~FROZEN NOVELTIES,FRUIT & JUC BARS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19265~^~1900~^~Ice creams, chocolate, light, no sugar added~^~ICE CREAMS,CHOC,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^^^ -~19268~^~1900~^~Candies, dark chocolate coated coffee beans~^~CANDIES,DK CHOC COATD COFFEE BNS~^^^^^0^^6.25^4.00^9.00^4.00 -~19269~^~2500~^~Snacks, GENERAL MILLS, BETTY CROCKER Fruit Roll Ups, berry flavored, with vitamin C~^~SNACKS,GENERAL MILLS,BETTY CROCKER FRT RL UPS,BRY FLV,W/VT C~^^^^^0^^^4.00^9.00^4.00 -~19270~^~1900~^~Ice creams, chocolate~^~ICE CREAMS,CHOC~^^^~Y~^^0^^6.10^3.60^8.80^3.70 -~19271~^~1900~^~Ice creams, strawberry~^~ICE CREAMS,STRAWBERRY~^^^^^0^^6.40^4.10^8.79^3.80 -~19272~^~2500~^~Snacks, FARLEY CANDY, FARLEY Fruit Snacks, with vitamins A, C, and E~^~SNACKS,FARLEY CANDY,FARLEY FRUIT SNACKS,W/VITAMINS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19273~^~2500~^~Snacks, SUNKIST, SUNKIST Fruit Roll, strawberry, with vitamins A, C, and E~^~SNACKS,SUNKIST,SUNKIST FRUIT ROLL,STRAWBERRY,W/VITMNS A,C,&E~^^^^^0^^^4.00^9.00^4.00 -~19274~^~2500~^~Snacks, fruit leather, pieces, with vitamin C~^~SNACKS,FRUIT LEATHER,PIECES,W/VIT C~^^^^^0^^^^^ -~19279~^~1900~^~Candies, milk chocolate coated coffee beans~^~CANDIES,MILK CHOC COATD COFFEE BNS~^^^~Y~^^0^^^^^ -~19280~^~1900~^~Frozen novelties, ice type, lime~^~FROZEN NOVELTIES,ICE TYPE,LIME~^^^~Y~^^0^^6.25^3.36^8.37^3.90 -~19281~^~1900~^~Frozen novelties, ice type, italian, restaurant-prepared~^~FROZEN NOVELTIES,ICE TYPE,ITALIAN,REST-PREP~^^^^^0^^6.25^3.36^8.37^3.90 -~19283~^~1900~^~Frozen novelties, ice type, pop~^~FROZEN NOVELTIES,ICE TYPE,POP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19292~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Crispy Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S CRISPY CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19293~^~1900~^~Frozen yogurts, vanilla, soft-serve~^~FROZEN YOGURTS,VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19294~^~1900~^~Fruit butters, apple~^~FRUIT BUTTERS,APPLE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19295~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS MUNCH bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS MUNCH BAR~^^~Masterfoods USA~^^^0^^^^^ -~19296~^~1900~^~Honey~^~HONEY~^^^~Y~^^0^^6.25^3.36^8.37^3.68 -~19297~^~1900~^~Jams and preserves~^~JAMS AND PRESERVES~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19300~^~1900~^~Jellies~^~JELLIES~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19301~^~1900~^~Candies, fudge, chocolate marshmallow, with nuts, prepared-by-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,W/ NUTS,PREPARED-BY-RECIPE~^^^^^0^^^^^ -~19302~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Almond bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS ALMOND BAR~^^~Masterfoods USA~^^^0^^^^^ -~19303~^~1900~^~Marmalade, orange~^~MARMALADE,ORANGE~^^^~Y~^^0^^6.25^3.40^8.40^3.70 -~19304~^~1900~^~Molasses~^~MOLASSES~^^^~Y~^^0^^6.25^^8.37^3.87 -~19306~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES SNICKERS Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP SNICKERS BITE SIZE CANDIES~^^~Masterfoods USA~^^^0^^^^^ -~19307~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES MILKY WAY Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP MILKY WAY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19308~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES 3 MUSKETEERS Brand Bite Size Candies~^~CANDIES,MARS SNACK US,POP'ABLES 3 MUSKETEERS BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19309~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Fruit and Creme~^~CANDIES,MARS SNACK US,STARBURST FRUIT CHEWS,FRT&CREM~^^~Masterfoods USA~^^^0^^^^^ -~19310~^~1900~^~Pectin, unsweetened, dry mix~^~PECTIN,UNSWTND,DRY MIX~^^^^^0^^6.25^^^3.60 -~19312~^~1900~^~Pie fillings, apple, canned~^~PIE FILLINGS,APPL,CND~^^^~Y~^^0^^6.25^3.40^8.40^3.80 -~19313~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Tropical fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,TROP~^^~Masterfoods USA~^^^0^^^^^ -~19314~^~1900~^~Pie fillings, canned, cherry~^~PIE FILLINGS,CND,CHERRY~^^^^^0^^6.25^4.00^9.00^4.00 -~19315~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Sour Fruit Chews~^~CANDIES,MARS SNACKFOOD US,STARBURST SOUR FRUIT CHEWS~^^~Masterfoods USA~^^^0^^^^^ -~19318~^~1900~^~Puddings, banana, dry mix, instant~^~PUDDINGS,BANANA,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19319~^~1900~^~Puddings, banana, dry mix, instant, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19320~^~1900~^~Puddings, banana, dry mix, regular~^~PUDDINGS,BANANA,DRY MIX,REG~^^^^^0^^6.20^3.50^8.40^3.90 -~19321~^~1900~^~Puddings, banana, dry mix, regular, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19322~^~1900~^~Puddings, coconut cream, dry mix, instant~^~DESSERTS,PUDD,COCNT CRM,DRY MIX,INST~^^^~Y~^^0^^5.40^3.60^8.60^3.90 -~19323~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19324~^~1900~^~Puddings, coconut cream, dry mix, regular~^~PUDDINGS,COCNT CRM,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19325~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^ -~19326~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19327~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Blueberry and Almond Chocolate Bar~^~CANDIES,MARS SNACK US,COCOAVIA BLUEBERRY & ALMOND CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19328~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Crispy Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CRISPY CHOC BAR~^^~Masterfoods USA~^^^0^^^^^ -~19330~^~1900~^~Puddings, lemon, dry mix, instant~^~PUDDINGS,LEMON,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90 -~19331~^~1900~^~Puddings, lemon, dry mix, instant, prepared with whole milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^ -~19332~^~1900~^~Puddings, lemon, dry mix, regular~^~PUDDINGS,LEMON,DRY MIX,REG~^^^^^0^^6.25^3.50^8.80^3.90 -~19333~^~1900~^~Pudding, lemon, dry mix, regular, prepared with sugar, egg yolk and water~^~PUDDING,LEMON,DRY MIX,REG,PREP W/ SUGAR,EGG YOLK & H2O~^^^^^0^^^^^ -~19334~^~1900~^~Sugars, brown~^~SUGARS,BROWN~^^^~Y~^^0^^6.25^4.00^0.00^3.87 -~19335~^~1900~^~Sugars, granulated~^~SUGARS,GRANULATED~^~sucrose~^^~Y~^^0^^6.25^^^3.87 -~19336~^~1900~^~Sugars, powdered~^~SUGARS,POWDERED~^^^~Y~^^0^^6.25^3.50^8.40^3.90 -~19337~^~1900~^~Sweeteners, tabletop, aspartame, EQUAL, packets~^~SWEETENERS,TABLETOP,ASPRT,EQ,PACKETS~^^~Merisant Company~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19340~^~1900~^~Sugars, maple~^~SUGARS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19345~^~1900~^~Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S GENUINE CHOC FLAV LITE SYRUP~^^~Hershey Food Corp.~^~Y~^^0^^^4.00^9.00^4.00 -~19348~^~1900~^~Syrups, chocolate, fudge-type~^~SYRUPS,CHOC,FUDGE-TYPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19349~^~1900~^~Syrups, corn, dark~^~SYRUPS,CORN,DK~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19350~^~1900~^~Syrups, corn, light~^~SYRUPS,CORN,LT~^^^~Y~^^0^^6.25^0.00^0.00^3.68 -~19351~^~1900~^~Syrups, corn, high-fructose~^~SYRUPS,CORN,HIGH-FRUCTOSE~^^^~Y~^^0^^6.25^^^3.70 -~19352~^~1900~^~Syrups, malt~^~SYRUPS,MALT~^^^^^0^^6.25^3.87^8.37^4.12 -~19353~^~1900~^~Syrups, maple~^~SYRUPS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87 -~19355~^~1900~^~Syrups, sorghum~^~SYRUPS,SORGHUM~^^^~Y~^^0^^6.25^^^3.87 -~19359~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS CRUNCHER~^~CANDIES,MARS SNACKFOOD US,SNICKERS CRUNCHER~^^~Masterfoods USA~^^^0^^^^^ -~19360~^~1900~^~Syrups, table blends, pancake, with 2% maple~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19362~^~1900~^~Syrups, table blends, corn, refiner, and sugar~^~SYRUPS,TABLE BLENDS,CORN,REFINER,&SUGAR~^^^^^0^^6.25^3.36^8.37^3.80 -~19363~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Wild Berry Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES WILD BERRY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^ -~19364~^~1900~^~Toppings, butterscotch or caramel~^~TOPPINGS,BUTTERSCOTCH OR CARAMEL~^^^~Y~^^0^^6.38^4.27^8.80^3.70 -~19365~^~1900~^~Toppings, marshmallow cream~^~TOPPINGS,MARSHMLLW CRM~^^^~Y~^^0^^0.00^4.00^9.00^4.00 -~19366~^~1900~^~Toppings, pineapple~^~TOPPINGS,PINEAPPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80 -~19367~^~1900~^~Toppings, nuts in syrup~^~TOPPINGS,NUTS IN SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~19368~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Tropical Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES TROPICAL BITE SIZE CAND~^^~Masterfoods USA~^^^0^^^^^ -~19369~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Sours Original~^~CANDIES,MARS SNACKFOOD US,SKITTLES SOURS ORIGINAL~^^~Masterfoods USA~^^^0^^^^^ -~19370~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Original Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES ORIGINAL BITE SIZE CAND~^^~Masterfoods USA~^~Y~^^0^^^^^ -~19371~^~1900~^~Frostings, vanilla, creamy, dry mix, prepared with margarine~^~FROSTINGS,VANILLA,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19372~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with margarine~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^ -~19375~^~1900~^~Frostings, glaze, prepared-from-recipe~^~FROSTINGS,GLAZE,PREPARED-FROM-RECIPE~^^^^^0^^^^^ -~19379~^~1900~^~Candies, fudge, chocolate marshmallow, prepared-from-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19382~^~1900~^~Candies, taffy, prepared-from-recipe~^~CANDIES,TAFFY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19383~^~1900~^~Candies, toffee, prepared-from-recipe~^~CANDIES,TOFFEE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19384~^~1900~^~Candies, divinity, prepared-from-recipe~^~CANDIES,DIVINITY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^ -~19387~^~1900~^~Frozen novelties, ice type, pineapple-coconut~^~FROZEN NOVELTIES,ICE TYPE,PINEAPPLE-COCONUT~^^^^^0^^6.25^3.40^8.40^3.80 -~19393~^~1900~^~Frozen yogurts, chocolate, soft-serve~^~FROZEN YOGURTS,CHOC,SOFT-SERVE~^^^^^0^^6.20^3.60^8.70^3.70 -~19400~^~2500~^~Snacks, banana chips~^~BANANA CHIPS~^^^~Y~^^0^^6.25^3.40^8.60^3.80 -~19401~^~2500~^~Snacks, cornnuts, barbecue-flavor~^~CORNNUTS,BARBECUE-FLAVOR~^^^^^0^^6.20^2.70^8.70^4.00 -~19403~^~2500~^~Snacks, crisped rice bar, almond~^~CRISPED RICE BAR,ALMOND~^^^^^0^^5.60^3.50^8.60^4.00 -~19404~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP~^^^~Y~^^0^^5.80^3.40^8.40^3.70 -~19405~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip, graham and marshmallow~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP,GRAHAM&MARSHMLLW~^^^^^0^^5.80^3.40^8.40^3.90 -~19406~^~2500~^~Snacks, granola bars, soft, uncoated, nut and raisin~^~GRANOLA BARS,SOFT,UNCOATED,NUT&RAISIN~^^^^^0^^5.70^3.50^8.40^4.00 -~19407~^~2500~^~Snacks, beef sticks, smoked~^~SNACKS,BF STKS,SMOKED~^^^^^0^^6.20^4.10^9.00^2.90 -~19408~^~2500~^~Snacks, pork skins, barbecue-flavor~^~PORK SKINS,BARBECUE-FLAVOR~^^^^^0^^6.25^4.27^9.02^3.87 -~19409~^~1900~^~Frostings, glaze, chocolate, prepared-from-recipe, with butter, NFSMI Recipe No. C-32~^~FROSTING,GLAZ,CHC,PREP-FRM-RCIP,W/ BUTR,NFSMI RECIP NO. C-32~^^^^^0^^^^^ -~19410~^~2500~^~Snack, potato chips, made from dried potatoes, plain~^~POTATO CHIPS,MADE FROM DRIED POTATOES,PLN~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19411~^~2500~^~Snacks, potato chips, plain, salted~^~POTATO CHIPS,PLAIN,SALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19412~^~2500~^~Snacks, potato chips, made from dried potatoes, cheese-flavor~^~POTATO CHIPS,MADE FROM DRIED POTATOES,CHEESE-FLAVOR~^^^^^0^^6.30^3.30^8.80^4.00 -~19413~^~2500~^~Snacks, rice cakes, brown rice, corn~^~SNACKS,RICE CAKES,BROWN RICE,CORN~^^^^^0^^6.10^3.00^8.40^4.10 -~19414~^~2500~^~Snacks, rice cakes, brown rice, multigrain~^~RICE CAKES,BROWN RICE,MULTIGRAIN~^^^^^0^^5.90^3.40^8.40^4.10 -~19415~^~2500~^~Snacks, potato sticks~^~SNACKS,POTATO STKS~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~19416~^~2500~^~Snacks, rice cakes, brown rice, rye~^~RICE CAKES,BROWN RICE,RYE~^^^^^0^^5.90^3.30^8.40^4.10 -~19418~^~2500~^~Snacks, sesame sticks, wheat-based, salted~^~SESAME STKS,WHEAT-BASED,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^3.90 -~19419~^~2500~^~Snacks, corn cakes~^~CORN CAKES~^^^^^0^^6.10^3.10^8.40^4.10 -~19420~^~2500~^~Snacks, granola bars, hard, peanut butter~^~GRANOLA BARS,HARD,PNUT BUTTER~^^^^^0^^5.60^3.40^8.70^3.90 -~19421~^~2500~^~Snacks, potato chips, cheese-flavor~^~POTATO CHIPS,CHEESE-FLAVOR~^^^^^0^^6.30^3.00^8.80^4.00 -~19422~^~2500~^~Snacks, potato chips, reduced fat~^~SNACKS,POTATO CHIPS,RED FAT~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19423~^~2500~^~Snacks, potato chips, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FAT-FREE,MADE W/OLESTRA~^^^~Y~^^0^^6.25^^^ -~19424~^~2500~^~Snacks, tortilla chips, nacho-flavor, reduced fat~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,RED FAT~^^^^^0^^6.30^2.90^8.80^4.00 -~19433~^~2500~^~Tortilla chips, low fat, baked without fat~^~TORTILLA CHIPS,LOFAT,BKD WO/FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.40 -~19434~^~2500~^~Cheese puffs and twists, corn based, baked, low fat~^~CHEESE PUFFS & TWISTS,CORN BSD,BKD,LOFAT~^^^~Y~^^0^^6.50^^^ -~19435~^~2500~^~Snacks, granola bar, fruit-filled, nonfat~^~SNACKS,GRANOLA BAR,FRUIT-FILLED,NONFAT~^^^~Y~^^0^^^^^ -~19436~^~2500~^~Popcorn, sugar syrup/caramel, fat-free~^~POPCORN,SUGAR SYRUP/CARAMEL,FAT-FREE~^^^~Y~^^0^^6.50^^^ -~19437~^~2500~^~Snacks, potato chips, fat free, salted~^~POTATO CHIPS,FAT FREE,SALTED~^^^~Y~^^0^^6.50^^^ -~19438~^~2500~^~Snacks, KELLOGG, KELLOGG'S RICE KRISPIES TREATS Squares~^~SNACKS,KELLOGG,KELLOGG'S RICE KRISPIES TREATS SQUARES~^^^~Y~^^0^^6.50^^^ -~19439~^~2500~^~Snacks, KELLOGG, KELLOGG'S Low Fat Granola Bar, Crunchy Almond/Brown Sugar~^~SNACKS,KELLOGG'S LOFAT GRANOLA BAR,CRUNCHY ALMD/BRN SUGAR~^^^^^0^^^^^ -~19440~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, chocolate chip~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,CHOC CHIP~^^^^^0^^^^^ -~19441~^~2500~^~Snacks, KELLOGG, KELLOGG'S, NUTRI-GRAIN Cereal Bars, fruit~^~SNACKS,KELLOGG,KELLOGG'S,NUTRI-GRAIN CRL BARS,FRUIT~^^~Kellogg, Co.~^~Y~^^0^^6.50^^^ -~19444~^~2500~^~Snacks, tortilla chips, low fat, made with olestra, nacho cheese~^~SNACKS,TORTILLA CHIPS,LOFAT,MADE W/OLESTRA,NACHO CHS~^^^~Y~^^0^^6.50^^^ -~19445~^~2500~^~Snacks, potato chips, made from dried potatoes, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FRM DRIED POTATOES,FAT-FREE,W/ OLESTRA~^^^~Y~^^0^^6.20^^^ -~19524~^~2500~^~Snacks, taro chips~^~TARO CHIPS~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19701~^~1900~^~Candies, semisweet chocolate, made with butter~^~CANDIES,SEMISWEET CHOC,MADE W/BUTTER~^^^^^0^^5.63^1.83^8.50^3.40 -~19702~^~1900~^~Gelatin desserts, dry mix, with added ascorbic acid, sodium-citrate and salt~^~GELATIN DSSRT,DRY MIX,W/ ADDED VIT C,SODIUM-CITRATE & SALT~^^^^^0^^5.55^3.90^9.02^3.87 -~19703~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, added phosphorus, potassium, sodium, vitamin C~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,ADDED P,K,NA,VIT C~^^^^^0^^5.55^3.90^9.02^3.87 -~19704~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, no added sodium~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,NO ADDED NA~^^^^^0^^5.55^3.90^9.02^3.87 -~19705~^~1900~^~Puddings, banana, dry mix, instant, with added oil~^~PUDDINGS,BANANA,DRY MIX,INST,W/ ADDED OIL~^^^^^0^^6.40^4.20^8.80^3.90 -~19706~^~1900~^~Puddings, banana, dry mix, regular, with added oil~^~PUDDINGS,BANANA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.20^3.50^8.40^3.90 -~19708~^~1900~^~Puddings, lemon, dry mix, regular, with added oil, potassium, sodium~^~PUDDINGS,LEMON,DRY MIX,REG,W/ ADDED OIL,K,NA~^^^^^0^^6.25^3.50^8.80^3.90 -~19709~^~1900~^~Puddings, tapioca, dry mix, with no added salt~^~PUDDINGS,TAPIOCA,DRY MIX,W/ NO ADDED SALT~^^^^^0^^6.25^3.00^8.40^3.90 -~19710~^~1900~^~Puddings, vanilla, dry mix, regular, with added oil~^~PUDDINGS,VANILLA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.25^3.50^8.40^3.90 -~19719~^~1900~^~Jams and preserves, apricot~^~JAMS&PRESERVES,APRICOT~^^^~Y~^^0^^6.25^3.36^8.37^3.70 -~19720~^~1900~^~Syrups, table blends, pancake, with 2% maple, with added potassium~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE,W/ K~^^^^^0^^6.25^3.36^8.37^3.80 -~19800~^~2500~^~Snacks, corn cakes, very low sodium~^~CORN CAKES,VERY LO NA~^^^^^0^^6.10^3.10^8.40^4.10 -~19802~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor, unenriched~^~SNACKS,CORN-BASED,EXTRDD,PUFFS OR TWISTS,CHEESE-FLAVOR,UNENR~^^^^^0^^6.30^4.00^8.80^4.10 -~19804~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor, made with enriched masa flour~^~SNACKS,CORN-BASE,EXTRUD,CHIPS,BARBECUE-FLAVOR,W/ENR MASA FLR~^^^^^0^^6.25^^^ -~19806~^~2500~^~Snacks, popcorn, air-popped (Unsalted)~^~SNACKS,POPCORN,AIR-POPPED (UNSALTED)~^^^^^0^^6.25^2.73^8.37^4.03 -~19807~^~2500~^~Snacks, popcorn, oil-popped, white popcorn, salt added~^~SNACKS,POPCORN,OIL-POPPED,WHITE POPCORN,SALT ADDED~^^^^^0^^6.25^2.70^8.80^4.00 -~19809~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, salted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,SALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19810~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, unsalted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,UNSALTED~^^^^^0^^6.25^2.80^8.80^4.00 -~19811~^~2500~^~Snacks, potato chips, plain, unsalted~^~POTATO CHIPS,PLN,UNSALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00 -~19812~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, salted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,SALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19813~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, unsalted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,UNSALTED~^^^^^0^^5.70^3.70^8.70^4.00 -~19814~^~2500~^~Snacks, pretzels, hard, plain, made with enriched flour, unsalted~^~SNACKS,PRETZELS,HARD,PLN,MADE W/ ENR FLR,UNSALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00 -~19816~^~2500~^~Snacks, rice cakes, brown rice, plain, unsalted~^~RICE CAKES,BROWN RICE,PLN,UNSALTED~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~19817~^~2500~^~Snacks, rice cakes, brown rice, buckwheat, unsalted~^~RICE CAKES,BROWN RICE,BUCKWHEAT,UNSALTED~^^^^^0^^6.10^3.40^8.40^4.00 -~19818~^~2500~^~Snacks, rice cakes, brown rice, multigrain, unsalted~^~RICE CAKES,BROWN RICE,MULTIGRAIN,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19819~^~2500~^~Snacks, rice cakes, brown rice, sesame seed, unsalted~^~RICE CAKES,BROWN RICE,SESAME SD,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10 -~19820~^~2500~^~Snacks, sesame sticks, wheat-based, unsalted~^~SESAME STKS,WHEAT-BASED,UNSALTED~^^^^^0^^5.70^3.70^8.70^3.90 -~19821~^~2500~^~Snacks, trail mix, regular, unsalted~^~TRAIL MIX,REG,UNSALTED~^^^^^0^^5.40^3.50^8.40^3.70 -~19822~^~2500~^~Snacks, trail mix, regular, with chocolate chips, unsalted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,UNSALTED NUTS&SEEDS~^^^^^0^^5.50^3.50^8.40^3.70 -~19823~^~2500~^~Potato chips, without salt, reduced fat~^~POTATO CHIPS,WO/SALT,RED FAT~^^^~Y~^^0^^6.50^^^ -~19833~^~2500~^~Snacks, tortilla chips, low fat, unsalted~^~TORTILLA CHIPS,LOFAT,UNSALTED~^^^~Y~^^0^^6.50^^^ -~19856~^~1900~^~Frozen novelties, juice type, POPSICLE SCRIBBLERS~^~FROZEN NOVELTIES,JUC TYPE,POPSICLE SCRIBBLERS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^4.00^9.00^4.00 -~19857~^~2500~^~Snacks, tortilla chips, nacho-flavor, made with enriched masa flour~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,MADE W/ENR MASA FLR~^^^^^0^^6.50^^^ -~19858~^~1900~^~Candies, sugar-coated almonds~^~CANDIES,SUGAR-COATED ALMONDS~^^^~Y~^^0^^5.18^3.90^9.02^3.87 -~19860~^~1900~^~Cocoa, dry powder, hi-fat or breakfast, processed with alkali~^~COCOA,DRY PDR,HI-FAT OR BRKFST,PROC W/ALKALI~^^^~Y~^^0^^6.25^^^ -~19866~^~1900~^~Candies, soft fruit and nut squares~^~CANDIES,SOFT FRUIT & NUT SQUARES~^^^~Y~^^0^^5.55^^^ -~19867~^~1900~^~Ice creams, vanilla, fat free~^~ICE CREAMS,VANILLA,FAT FREE~^^^~Y~^^0^^6.25^^^ -~19868~^~1900~^~Sweeteners, tabletop, sucralose, SPLENDA packets~^~SWEETENERS,TABLETOP,SUCRALOSE,SPLENDA PACKETS~^^~McNeil Nutritionals/McNeil_PPC, Inc.~^~Y~^^0^^6.25^0.00^0.00^3.68 -~19871~^~1900~^~Frozen novelties, No Sugar Added, FUDGSICLE pops~^~FROZEN NOVELTIES,NO SUGAR ADDED,FUDGSICLE POPS~^^~Good Humor - Breyers Ice Cream~^~Y~^^0^^6.25^^^ -~19873~^~1900~^~Frozen novelties, ice type, sugar free, orange, cherry, and grape POPSICLE pops~^~FROZ NOVELTIES,ICE TYPE,SUGAR FREE,ORNGE,CHRY,& GRP POPSICLE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19874~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Fudge Bar, 98% fat free, no sugar added~^~FRZ NVL, KLONDIKE,SLIM-A-BEAR FUDG BR,98% FT FR,NO SGR ADDED~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19875~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19876~^~1900~^~Ice creams, BREYERS, All Natural Light French Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19877~^~1900~^~Ice creams, BREYERS, 98% Fat Free Vanilla~^~ICE CREAMS,BREYERS,98% FAT FREE VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19878~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19879~^~1900~^~Ice creams, BREYERS, All Natural Light Mint Chocolate Chip~^~ICE CREAMS,BREYERS,ALL NAT LT MINT CHOC CHIP~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19880~^~1900~^~Ice creams, BREYERS, No Sugar Added, Butter Pecan~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,BUTTER PECAN~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19881~^~1900~^~Ice creams, BREYERS, No Sugar Added, French Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19882~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19883~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Fudge Twirl~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA FUDGE TWIRL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19884~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19886~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Chocolate Cone~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR CHOC CONE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19887~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Vanilla Sandwich~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR VANILLA SNDWCH~^^~Good Humor - Breyers Ice Cream~^^^0^^^^^ -~19890~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR, No Sugar Added, Stickless Bar~^~FROZEN NOVL,KLONDIKE,SLIM-A-BEAR,NO SGR ADDED,STICKLESS BAR~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19891~^~1900~^~Frozen novelties, No Sugar Added CREAMSICLE Pops~^~FROZEN NOVELTIES,NO SUGAR ADDED CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19892~^~1900~^~Frozen novelties, Sugar Free, CREAMSICLE Pops~^~FROZEN NOVELTIES,SUGAR FREE,CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19893~^~1900~^~Ice creams, BREYERS, All Natural Light French Chocolate~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19894~^~1900~^~Ice creams, BREYERS, 98% Fat Free Chocolate~^~ICE CREAMS,BREYERS,98% FAT FREE CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19895~^~1900~^~Ice creams, BREYERS, No Sugar Added, Chocolate Caramel~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,CHOC CARAMEL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^ -~19896~^~1900~^~Candies, REESE's Fast Break, milk chocolate, peanut butter, soft nougats, candy bar~^~CANDIES,REESE'S FAST BREAK,CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00 -~19897~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Covered Almonds~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC COVERED ALMONDS~^^~Masterfoods USA~^^^0^^^^^ -~19898~^~1900~^~Ice creams, regular, low carbohydrate, vanilla~^~ICE CREAMS,REG,LO CARBOHYDRATE,VANILLA~^^^~Y~^^0^^6.25^^^ -~19899~^~1900~^~Ice creams, regular, low carbohydrate, chocolate~^~ICE CREAMS,REG,LO CARBOHYDRATE,CHOC~^^^~Y~^^0^^6.25^^^ -~19902~^~1900~^~Chocolate, dark, 45- 59% cacao solids~^~CHOCOLATE,DK,45- 59% CACAO SOL~^^^^^0^^6.25^^^ -~19903~^~1900~^~Chocolate, dark, 60-69% cacao solids~^~CHOCOLATE,DK,60-69% CACAO SOL~^^^^^0^^^^^ -~19904~^~1900~^~Chocolate, dark, 70-85% cacao solids~^~CHOCOLATE,DK,70-85% CACAO SOL~^^^^^0^^^^^ -~19905~^~1900~^~Candies, chocolate, dark, NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)~^~CANDIES,CHOC,DK,NFS (45-59% CACAO SOL 90%; 60-69% CACAO SOL~^^^~Y~^^0^^6.25^^^ -~19906~^~1900~^~Sweeteners, for baking, brown, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,BROWN,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19907~^~1900~^~Sweeteners, for baking, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^ -~19908~^~1900~^~Sugar, turbinado~^~SUGAR,TURBINADO~^^^^^0^^^^^ -~19909~^~1900~^~Sweeteners, sugar substitute, granulated, brown~^~SWEETENERS,SUGAR SUB,GRANULATED,BROWN~^^^^^0^^^^^ -~19910~^~1900~^~Candies, crispy bar with peanut butter filling~^~CANDIES,CRISPY BAR W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~19911~^~1900~^~Syrup, maple, Canadian~^~SYRUP,MAPLE,CANADIAN~^^^^^0^^6.25^^^ -~19912~^~1900~^~Sweetener, syrup, agave~^~Sweetener, syrup, agave~^^^~Y~^^0^^^^^ -~19913~^~1900~^~Candies, NESTLE, BUTTERFINGER Crisp~^~Candies, NESTLE, BUTTERFINGER Crisp~^^^~Y~^^0^^6.25^^^ -~19914~^~1900~^~Candies, M&M MARS 3 MUSKETEERS Truffle Crisp~^~CANDIES,M&M MARS 3 MUSKETEERS TRUFFLE CRISP~^^^~Y~^^0^^6.25^^^ -~19916~^~1900~^~Syrups, chocolate, HERSHEY'S Sugar free, Genuine Chocolate Flavored, Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S SUGAR FREE,GENUINE CHOC FLAV,LITE SYRU~^^^~Y~^^0^^6.25^^^ -~19917~^~1900~^~Candies, M&M MARS Pretzel Chocolate Candies~^~CANDIES,M&M MARS PRETZEL CHOC CANDIES~^^^~Y~^^0^^6.25^^^ -~19918~^~1900~^~Sweetener, herbal extract powder from Stevia leaf~^~SWEETENER,HERBAL EXTRACT PDR FROM STEVIA LEAF~^^^~Y~^^0^^6.25^^^ -~19919~^~1900~^~Candies, fruit snacks, with high vitamin C~^~CANDIES,FRUIT SNACKS,W/ HI VIT C~^^^~Y~^^0^^6.25^^^ -~19920~^~1900~^~Jams, preserves, marmalades, sweetened with fruit juice~^~JAMS,PRESERVES,MARMALADES,SWTND W/ FRUIT JUC~^^^~Y~^^0^^6.25^^^ -~19921~^~1900~^~Candies, Tamarind~^~CANDIES,TAMARIND~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~19922~^~1900~^~Candies, coconut bar, not chocolate covered~^~CANDIES,COCNT BAR,NOT CHOC COVERED~^^^~Y~^^0^^6.25^^^ -~19923~^~1900~^~Candies, HERSHEYS, PAYDAY Bar~^~CANDIES,HERSHEYS,PAYDAY BAR~^^^~Y~^^0^^6.25^^^ -~19924~^~1900~^~Syrup, NESTLE, chocolate~^~SYRUP,NESTLE,CHOC~^^^~Y~^^0^^6.25^^^ -~20001~^~2000~^~Amaranth grain, uncooked~^~AMARANTH GRAIN,UNCKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20002~^~2000~^~Amaranth grain, cooked~^~AMARANTH GRAIN,CKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07 -~20003~^~2000~^~Arrowroot flour~^~ARROWROOT FLOUR~^^^^^0^^6.25^2.78^8.37^4.03 -~20004~^~2000~^~Barley, hulled~^~BARLEY,HULLED~^^^^^0^~Hordeum vulgare L.~^5.83^3.55^8.37^3.95 -~20005~^~2000~^~Barley, pearled, raw~^~BARLEY,PEARLED,RAW~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20006~^~2000~^~Barley, pearled, cooked~^~BARLEY,PEARLED,COOKED~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20008~^~2000~^~Buckwheat~^~BUCKWHEAT~^^^^^0^~Fagopyrum esculentum Moench~^6.25^3.37^8.37^3.78 -~20009~^~2000~^~Buckwheat groats, roasted, dry~^~BUCKWHEAT GROATS,RSTD,DRY~^~kasha~^^^^0^^6.25^3.37^8.37^3.78 -~20010~^~2000~^~Buckwheat groats, roasted, cooked~^~BUCKWHEAT GROATS,RSTD,CKD~^~kasha~^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20011~^~2000~^~Buckwheat flour, whole-groat~^~BUCKWHEAT FLR,WHOLE-GROAT~^^^~Y~^^0^^6.25^3.37^8.37^3.78 -~20012~^~2000~^~Bulgur, dry~^~BULGUR,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20013~^~2000~^~Bulgur, cooked~^~BULGUR,COOKED~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20014~^~2000~^~Corn grain, yellow~^~CORN GRAIN,YEL~^~dent corn, field corn~^^^^0^~Zea mays mays L.~^6.25^2.73^8.37^4.03 -~20015~^~2000~^~Corn bran, crude~^~CORN BRAN,CRUDE~^^^~Y~^^0^^6.25^1.82^8.37^2.35 -~20016~^~2000~^~Corn flour, whole-grain, yellow~^~CORN FLR,WHOLE-GRAIN,YEL~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20017~^~2000~^~Corn flour, masa, enriched, white~^~CORN FLR,MASA,ENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20018~^~2000~^~Corn flour, yellow, degermed, unenriched~^~CORN FLR,YEL,DEGERMED,UNENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20019~^~2000~^~Corn flour, masa, unenriched, white~^~CORN FLR,MASA,UNENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20020~^~2000~^~Cornmeal, whole-grain, yellow~^~CORNMEAL,WHOLE-GRAIN,YEL~^^^^^0^^6.25^2.73^8.37^4.03 -~20022~^~2000~^~Cornmeal, degermed, enriched, yellow~^~CORNMEAL,DEGERMED,ENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20023~^~2000~^~Cornmeal, yellow, self-rising, bolted, plain, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20024~^~2000~^~Cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20025~^~2000~^~Cornmeal, yellow, self-rising, degermed, enriched~^~CORNMEAL,YEL,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20027~^~2000~^~Cornstarch~^~CORNSTARCH~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20028~^~2000~^~Couscous, dry~^~COUSCOUS,DRY~^^^^^0^^5.70^4.05^8.37^4.12 -~20029~^~2000~^~Couscous, cooked~^~COUSCOUS,COOKED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20030~^~2000~^~Hominy, canned, white~^~HOMINY,CANNED,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20031~^~2000~^~Millet, raw~^~MILLET,RAW~^^^^^0^~Panicum miliaceum L.~^5.83^3.87^8.37^4.12 -~20032~^~2000~^~Millet, cooked~^~MILLET,COOKED~^^^~Y~^^0^^5.83^3.87^8.37^4.12 -~20033~^~2000~^~Oat bran, raw~^~OAT BRAN,RAW~^^^~Y~^^0^^5.83^1.82^8.37^2.35 -~20034~^~2000~^~Oat bran, cooked~^~OAT BRAN,COOKED~^^^^^0^^5.83^1.82^8.37^2.35 -~20035~^~2000~^~Quinoa, uncooked~^~QUINOA,UNCKD~^^^^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20036~^~2000~^~Rice, brown, long-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,RAW~^^^~Y~^^0^~Oryza sativa L.~^5.95^3.41^8.37^4.12 -~20037~^~2000~^~Rice, brown, long-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,CKD~^^^~Y~^^0^^5.95^3.41^8.37^4.12 -~20038~^~2000~^~Oats (Includes foods for USDA's Food Distribution Program)~^~OATS~^^^^^0^~Avena sativa L.~^5.83^3.46^8.37^4.12 -~20040~^~2000~^~Rice, brown, medium-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,RAW~^^^^^0^^5.95^3.41^8.37^4.12 -~20041~^~2000~^~Rice, brown, medium-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,CKD~^^^^^0^^5.95^3.41^8.37^4.12 -~20042~^~2000~^~Rice, brown, parboiled, dry, UNCLE BEN'S~^~RICE,BROWN,PARBLD,DRY,UNCLE BEN'S~^^~Mars Food US~^^^0^^^^^ -~20044~^~2000~^~Rice, white, long-grain, regular, raw, enriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,ENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20045~^~2000~^~Rice, white, long-grain, regular, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,REG,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20046~^~2000~^~Rice, white, long-grain, parboiled, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20047~^~2000~^~Rice, white, long-grain, parboiled, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20048~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20049~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, prepared~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,PREP~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20050~^~2000~^~Rice, white, medium-grain, raw, enriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,ENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20051~^~2000~^~Rice, white, medium-grain, enriched, cooked~^~RICE,WHITE,MEDIUM-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20052~^~2000~^~Rice, white, short-grain, enriched, uncooked~^~RICE,WHITE,SHORT-GRAIN,ENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20053~^~2000~^~Rice, white, short-grain, enriched, cooked~^~RICE,WHITE,SHORT-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20054~^~2000~^~Rice, white, glutinous, unenriched, uncooked~^~RICE,WHITE,GLUTINOUS,UNENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20055~^~2000~^~Rice, white, glutinous, unenriched, cooked~^~RICE,WHITE,GLUTINOUS,UNENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20058~^~2000~^~Rice, white, steamed, Chinese restaurant~^~RICE,WHITE,STMD,CHINESE RESTAURANT~^^^^^0^^^^^ -~20060~^~2000~^~Rice bran, crude~^~RICE BRAN,CRUDE~^^^~Y~^^0^^5.95^1.82^8.37^2.35 -~20061~^~2000~^~Rice flour, white, unenriched~^~RICE FLR,WHITE,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20062~^~2000~^~Rye grain~^~RYE GRAIN~^^^~Y~^^0^~Secale cereale L.~^5.83^3.05^8.37^3.86 -~20063~^~2000~^~Rye flour, dark~^~RYE FLOUR,DARK~^^^~Y~^^0^^5.83^2.96^8.37^3.78 -~20064~^~2000~^~Rye flour, medium~^~RYE FLOUR,MEDIUM~^^^~Y~^^0^^5.83^3.23^8.37^3.99 -~20065~^~2000~^~Rye flour, light~^~RYE FLOUR,LIGHT~^^^~Y~^^0^^5.83^3.41^8.37^4.07 -~20066~^~2000~^~Semolina, enriched~^~SEMOLINA,ENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20067~^~2000~^~Sorghum grain~^~SORGHUM GRAIN~^^^^^0^~Sorghum spp.~^6.25^0.91^8.37^4.03 -~20068~^~2000~^~Tapioca, pearl, dry~^~TAPIOCA,PEARL,DRY~^^^~Y~^^0^^6.25^2.78^8.37^4.03 -~20069~^~2000~^~Triticale~^~TRITICALE~^^^^^0^~X Triticosecale spp.~^5.83^3.32^8.37^3.82 -~20070~^~2000~^~Triticale flour, whole-grain~^~TRITICALE FLR,WHOLE-GRAIN~^^^^^0^^5.83^3.32^8.37^3.82 -~20071~^~2000~^~Wheat, hard red spring~^~WHEAT,HARD RED SPRING~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20072~^~2000~^~Wheat, hard red winter~^~WHEAT,HARD RED WINTER~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20073~^~2000~^~Wheat, soft red winter~^~WHEAT,SOFT RED WINTER~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20074~^~2000~^~Wheat, hard white~^~WHEAT,HARD WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20075~^~2000~^~Wheat, soft white~^~WHEAT,SOFT WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78 -~20076~^~2000~^~Wheat, durum~^~WHEAT,DURUM~^^^^^0^~Triticum durum Desf.~^5.83^3.59^8.37^3.78 -~20077~^~2000~^~Wheat bran, crude~^~WHEAT BRAN,CRUDE~^^^~Y~^^0^^6.31^1.82^8.37^2.35 -~20078~^~2000~^~Wheat germ, crude~^~WHEAT GERM,CRUDE~^^^^^0^^5.80^3.59^8.37^3.78 -~20080~^~2000~^~Wheat flour, whole-grain (Includes foods for USDA's Food Distribution Program)~^~WHEAT FLOUR,WHOLE-GRAIN~^^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20081~^~2000~^~Wheat flour, white, all-purpose, enriched, bleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,BLEACHED~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20082~^~2000~^~Wheat flour, white, all-purpose, self-rising, enriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,SELF-RISING,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20083~^~2000~^~Wheat flour, white, bread, enriched~^~WHEAT FLR,WHITE,BREAD,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20084~^~2000~^~Wheat flour, white, cake, enriched~^~WHEAT FLR,WHITE,CAKE,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20086~^~2000~^~Wheat flour, white, tortilla mix, enriched~^~WHEAT FLR,WHITE,TORTILLA MIX,ENR~^^^^^0^^5.70^4.05^8.37^4.12 -~20087~^~2000~^~Wheat, sprouted~^~WHEAT,SPROUTED~^^^^^0^^5.83^3.59^8.37^3.78 -~20088~^~2000~^~Wild rice, raw~^~WILD RICE,RAW~^^^~Y~^^0^~Zizania spp.~^6.25^3.55^8.37^3.95 -~20089~^~2000~^~Wild rice, cooked~^~WILD RICE,COOKED~^^^~Y~^^0^^6.25^3.55^8.37^3.95 -~20090~^~2000~^~Rice flour, brown~^~RICE FLOUR,BROWN~^^^^^0^^5.95^3.41^8.37^4.12 -~20091~^~2000~^~Pasta, gluten-free, corn, dry~^~PASTA,GLUTEN-FREE,CORN,DRY~^^^^^0^^6.25^2.73^8.37^4.03 -~20092~^~2000~^~Pasta, gluten-free, corn, cooked~^~PASTA,GLUTEN-FREE,CORN,CKD~^^^^^0^^6.25^2.73^8.37^4.03 -~20093~^~2000~^~Pasta, fresh-refrigerated, plain, as purchased~^~PASTA,FRESH-REFRIGERATED,PLN,AS PURCHASED~^^^^^0^^5.78^3.93^8.41^4.09 -~20094~^~2000~^~Pasta, fresh-refrigerated, plain, cooked~^~PASTA,FRESH-REFRIGERATED,PLN,CKD~^^^^^0^^5.78^3.93^8.41^4.09 -~20095~^~2000~^~Pasta, fresh-refrigerated, spinach, as purchased~^~PASTA,FRESH-REFRIGERATED,SPINACH,AS PURCHASED~^^^^^0^^5.79^3.88^8.41^4.08 -~20096~^~2000~^~Pasta, fresh-refrigerated, spinach, cooked~^~PASTA,FRESH-REFRIGERATED,SPINACH,CKD~^^^^^0^^5.79^3.88^8.41^4.08 -~20097~^~2000~^~Pasta, homemade, made with egg, cooked~^~PASTA,HOMEMADE,MADE W/EGG,CKD~^^^^^0^^5.73^3.93^8.41^4.09 -~20098~^~2000~^~Pasta, homemade, made without egg, cooked~^~PASTA,HOMEMADE,MADE WO/EGG,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20105~^~2000~^~Macaroni, vegetable, enriched, dry~^~MACARONI,VEG,ENR,DRY~^^^^^0^^5.72^3.86^8.37^4.11 -~20106~^~2000~^~Macaroni, vegetable, enriched, cooked~^~MACARONI,VEG,ENR,CKD~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20109~^~2000~^~Noodles, egg, dry, enriched~^~NOODLES,EGG,DRY,ENRICHED~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20110~^~2000~^~Noodles, egg, enriched, cooked~^~NOODLES,EGG,ENR,CKD~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20111~^~2000~^~Noodles, egg, spinach, enriched, dry~^~NOODLES,EGG,SPINACH,ENR,DRY~^^^^^0^^5.79^3.88^8.41^4.08 -~20112~^~2000~^~Noodles, egg, spinach, enriched, cooked~^~NOODLES,EGG,SPINACH,ENR,CKD~^^^~Y~^^0^^5.79^3.88^8.41^4.08 -~20113~^~2000~^~Noodles, chinese, chow mein~^~NOODLES,CHINESE,CHOW MEIN~^^^~Y~^^0^^^^^ -~20114~^~2000~^~Noodles, japanese, soba, dry~^~NOODLES,JAPANESE,SOBA,DRY~^^^^^0^^6.06^3.37^8.37^3.78 -~20115~^~2000~^~Noodles, japanese, soba, cooked~^~NOODLES,JAPANESE,SOBA,CKD~^^^^^0^^6.06^3.37^8.37^3.78 -~20116~^~2000~^~Noodles, japanese, somen, dry~^~NOODLES,JAPANESE,SOMEN,DRY~^^^^^0^^5.70^3.91^8.37^4.12 -~20117~^~2000~^~Noodles, japanese, somen, cooked~^~NOODLES,JAPANESE,SOMEN,CKD~^^^^^0^^5.70^3.91^8.37^4.12 -~20118~^~2000~^~Noodles, flat, crunchy, Chinese restaurant~^~NOODLES,FLAT,CRUNCHY,CHINESE RESTAURANT~^^^~Y~^^0^^5.73^4.05^8.37^4.12 -~20120~^~2000~^~Pasta, dry, enriched~^~PASTA,DRY,ENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, penne, rotini, farfalle, shells~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20121~^~2000~^~Pasta, cooked, enriched, without added salt~^~PASTA,CKD,ENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20124~^~2000~^~Pasta, whole-wheat, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,DRY~^~spaghetti, elbow macaroni, penne, farfalle, lasagna, shells, macaroni product~^^^^0^^5.83^3.59^8.37^3.78 -~20125~^~2000~^~Pasta, whole-wheat, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, farfalle, lasagna, rotini, shells~^^~Y~^^0^^5.83^3.59^8.37^3.78 -~20126~^~2000~^~Spaghetti, spinach, dry~^~SPAGHETTI,SPINACH,DRY~^^^~Y~^^0^^5.72^3.86^8.37^4.11 -~20127~^~2000~^~Spaghetti, spinach, cooked~^~SPAGHETTI,SPINACH,COOKED~^^^^^0^^5.72^3.86^8.37^4.11 -~20129~^~2000~^~Wheat flours, bread, unenriched~^~WHEAT FLOURS,BREAD,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20130~^~2000~^~Barley flour or meal~^~BARLEY FLOUR OR MEAL~^^^~Y~^^0^^5.83^3.55^8.37^3.95 -~20131~^~2000~^~Barley malt flour~^~BARLEY MALT FLR~^^^^^0^^5.83^3.55^8.37^3.95 -~20132~^~2000~^~Oat flour, partially debranned~^~OAT FLR,PART DEBRANNED~^^^~Y~^^0^^^^^ -~20133~^~2000~^~Rice noodles, dry~^~RICE NOODLES,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20134~^~2000~^~Rice noodles, cooked~^~RICE NOODLES,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20135~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, farfalle, rotini, lasagna, shells, penne~^^^^0^^^3.78^8.37^3.95 -~20136~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, shells, penne, rotini, lasagna, farfalle~^^^^0^^^3.78^8.37^3.95 -~20137~^~2000~^~Quinoa, cooked~^~QUINOA,CKD~^^^~Y~^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00 -~20138~^~2000~^~Wheat, KAMUT khorasan, uncooked~^~WHEAT,KAMUT KHORASAN,UNCKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20139~^~2000~^~Wheat, KAMUT khorasan, cooked~^~WHEAT,KAMUT KHORASAN,CKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78 -~20140~^~2000~^~Spelt, uncooked~^~SPELT,UNCKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20141~^~2000~^~Spelt, cooked~^~SPELT,CKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78 -~20142~^~2000~^~Teff, uncooked~^~TEFF,UNCKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20143~^~2000~^~Teff, cooked~^~TEFF,CKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00 -~20310~^~2000~^~Noodles, egg, cooked, enriched, with added salt~^~NOODLES,EGG,CKD,ENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20314~^~2000~^~Corn grain, white~^~CORN GRAIN,WHITE~^~dent corn, field corn~^^^^0^^6.25^2.73^8.37^4.03 -~20315~^~2000~^~Corn flour, whole-grain, blue (harina de maiz morado)~^~CORN FLR,WHOLE-GRAIN,BLUE (HARINA DE MAIZ MORADO)~^^^^^0^^6.25^2.73^8.37^4.03 -~20316~^~2000~^~Corn flour, whole-grain, white~^~CORN FLR,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20317~^~2000~^~Corn flour, yellow, masa, enriched~^~CORN FLR,YEL,MASA,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20320~^~2000~^~Cornmeal, whole-grain, white~^~CORNMEAL,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03 -~20321~^~2000~^~Pasta, cooked, enriched, with added salt~^~PASTA,CKD,ENR,W/ ADDED SALT~^~spaghetti, elbow macaroni, lasagna, macaroni product, rotini, farfalle, penne, shells~^^^^0^^5.70^3.91^8.37^4.12 -~20322~^~2000~^~Cornmeal, degermed, enriched, white~^~CORNMEAL,DEGERMED,ENR,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20323~^~2000~^~Cornmeal, white, self-rising, bolted, plain, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03 -~20324~^~2000~^~Cornmeal, white, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06 -~20325~^~2000~^~Cornmeal, white, self-rising, degermed, enriched~^~CORNMEAL,WHITE,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16 -~20330~^~2000~^~Hominy, canned, yellow~^~HOMINY,CANNED,YELLOW~^^^^^0^^6.25^3.46^8.37^4.16 -~20345~^~2000~^~Rice, white, long-grain, regular, cooked, enriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,ENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20381~^~2000~^~Wheat flour, white, all-purpose, enriched, calcium-fortified~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,CALCIUM-FORTIFIED~^^^^^0^^5.70^4.05^8.37^4.12 -~20409~^~2000~^~Noodles, egg, dry, unenriched~^~NOODLES,EGG,DRY,UNENR~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20410~^~2000~^~Noodles, egg, unenriched, cooked, without added salt~^~NOODLES,EGG,UNENR,CKD,WO/ ADDED SALT~^^^~Y~^^0^^5.78^3.93^8.41^4.09 -~20420~^~2000~^~Pasta, dry, unenriched~^~PASTA,DRY,UNENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, rotini, shells, farfalle, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20421~^~2000~^~Pasta, cooked, unenriched, without added salt~^~PASTA,CKD,UNENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, penne, shells, farfalle, rotini, lasagna~^^~Y~^^0^^5.70^3.91^8.37^4.12 -~20422~^~2000~^~Cornmeal, degermed, unenriched, yellow~^~CORNMEAL,DEGERMED,UNENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16 -~20444~^~2000~^~Rice, white, long-grain, regular, raw, unenriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20445~^~2000~^~Rice, white, long-grain, regular, unenriched, cooked without salt~^~RICE,WHITE,LONG-GRAIN,REG,UNENR,CKD WO/ SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20446~^~2000~^~Rice, white, long-grain, parboiled, unenriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,DRY~^^^^^0^^5.95^3.82^8.37^4.16 -~20447~^~2000~^~Rice, white, long-grain, parboiled, unenriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16 -~20450~^~2000~^~Rice, white, medium-grain, raw, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20451~^~2000~^~Rice, white, medium-grain, cooked, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20452~^~2000~^~Rice, white, short-grain, raw, unenriched~^~RICE,WHITE,SHORT-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20453~^~2000~^~Rice, white, short-grain, cooked, unenriched~^~RICE,WHITE,SHORT-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16 -~20466~^~2000~^~Semolina, unenriched~^~SEMOLINA,UNENRICHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20481~^~2000~^~Wheat flour, white, all-purpose, unenriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12 -~20510~^~2000~^~Noodles, egg, cooked, unenriched, with added salt~^~NOODLES,EGG,CKD,UNENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09 -~20521~^~2000~^~Pasta, cooked, unenriched, with added salt~^~PASTA,CKD,UNENR,W/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^^^0^^5.70^3.91^8.37^4.12 -~20522~^~2000~^~Cornmeal, degermed, unenriched, white~^~CORNMEAL,DEGERMED,UNENR,WHITE~^^^^^0^^6.25^3.46^8.37^4.16 -~20523~^~2000~^~Spaghetti, protein-fortified, cooked, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,CKD,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20545~^~2000~^~Rice, white, long-grain, regular, cooked, unenriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,UNENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16 -~20581~^~2000~^~Wheat flour, white, all-purpose, enriched, unbleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,UNBLEACHED~^^^^^0^^5.70^4.05^8.37^4.12 -~20622~^~2000~^~Spaghetti, protein-fortified, dry, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,DRY,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12 -~20623~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20624~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20628~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20629~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20630~^~2000~^~Wheat flour, white (industrial), 10% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20634~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20635~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20636~^~2000~^~Wheat flour, white (industrial), 11.5% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20640~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20641~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20645~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12 -~20646~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12 -~20647~^~2000~^~Millet flour~^~MILLET FLR~^^^^^0^^5.83^4.00^9.00^4.00 -~20648~^~2000~^~Sorghum flour, whole-grain~^~SORGHUM FLR,WHOLE-GRAIN~^^^^^0^^6.25^2.28^8.37^4.07 -~20649~^~2000~^~Wheat flour, whole-grain, soft wheat~^~WHEAT FLR,WHOLE-GRAIN,SOFT WHEAT~^^^^^0^^^3.59^8.37^3.78 -~20650~^~2000~^~Sorghum flour, refined, unenriched~^~SORGHUM FLR,REFINED,UNENR~^^^^^0^^6.25^^^ -~20651~^~2000~^~Rice, brown, parboiled, cooked, UNCLE BENS~^~RICE,BROWN,PARBLD,CKD,UNCLE BENS~^^~Mars Food US~^^^0^^^3.41^8.37^4.12 -~20652~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, lasagna, shells, farfalle, rotini~^^^^0^^^3.78^8.37^3.95 -~20653~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, penne, shells~^^^^0^^^3.78^8.37^3.95 -~20654~^~2000~^~Pasta, gluten-free, brown rice flour, cooked, TINKYADA~^~PASTA,GLUTEN-FREE,BROWN RICE FLR,CKD,TINKYADA~^^~Tinkyada~^~Y~^^0^^5.95^4.12^8.37^3.41 -~20655~^~2000~^~Pasta, gluten-free, corn flour and quinoa flour, cooked, ANCIENT HARVEST~^~PASTA,GLUTEN-FREE,CORN FLR & QUINOA FLR,CKD,ANCIENT HARVEST~^^~Ancient Harvest~^~Y~^^0^^6.25^3.78^8.37^3.95 -~20656~^~2000~^~Pasta, gluten-free, rice flour and rice bran extract, cooked, DE BOLES~^~PASTA,GLUTEN-FREE,RICE FLR & RICE BRAN EXTRACT,CKD,DE BOLES~^^~De Boles~^^^0^^5.95^3.82^8.37^4.16 -~20657~^~2000~^~Pasta, gluten-free, corn and rice flour, cooked~^~PASTA,GLUTEN-FREE,CORN & RICE FLR,CKD~^^~Barilla~^~Y~^^0^^5.95^3.82^8.37^4.16 -~21003~^~2100~^~Fast foods, biscuit, with egg and bacon~^~FAST FOODS,BISCUIT,W/EGG&BACON~^^^~Y~^^0^^6.12^4.18^8.80^3.94 -~21004~^~2100~^~Fast foods, biscuit, with egg and ham~^~FAST FOODS,BISCUIT,W/EGG&HAM~^^^~Y~^^0^^6.09^4.15^8.80^3.94 -~21005~^~2100~^~Fast Foods, biscuit, with egg and sausage~^~BREAKFAST ITEMS,BISCUIT W/EGG&SAUSAGE~^^^~Y~^^0^^6.06^4.13^8.80^3.95 -~21007~^~2100~^~Fast foods, biscuit, with egg, cheese, and bacon~^~FAST FOODS,BISCUIT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.19^4.22^8.80^3.94 -~21008~^~2100~^~Fast foods, biscuit, with ham~^~FAST FOODS,BISCUIT,W/HAM~^^^~Y~^^0^^5.98^4.03^8.67^3.95 -~21009~^~2100~^~Fast foods, biscuit, with sausage~^~FAST FOODS,BISCUIT,W/SAUSAGE~^^^~Y~^^0^^5.87^4.01^8.75^3.95 -~21010~^~2100~^~Fast foods, biscuit, with crispy chicken fillet~^~FAST FOODS,BISCUIT,W/ CRISPY CHICK FILLET~^^^~Y~^^0^^6.04^4.08^8.74^3.95 -~21012~^~2100~^~Fast foods, croissant, with egg, cheese, and bacon~^~FAST FOODS,CROISSANT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.13^4.22^8.83^3.99 -~21013~^~2100~^~Fast foods, croissant, with egg, cheese, and ham~^~FAST FOODS,CROISSANT,W/EGG,CHS,&HAM~^^^~Y~^^0^^6.16^4.23^8.88^3.99 -~21014~^~2100~^~Fast foods, croissant, with egg, cheese, and sausage~^~FAST FOODS,CROISSANT,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.15^4.22^8.89^3.99 -~21018~^~2100~^~Fast foods, egg, scrambled~^~FAST FOODS,EGG,SCRAMBLED~^^^~Y~^^0^^6.26^4.35^8.92^3.80 -~21020~^~2100~^~Fast foods, english muffin, with cheese and sausage~^~FAST FOODS,ENG MUFFIN,W/CHS&SAUSAGE~^^^~Y~^^0^^6.13^4.12^8.89^3.94 -~21021~^~2100~^~Fast foods, english muffin, with egg, cheese, and canadian bacon~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&CANADIAN BACON~^^^~Y~^^0^^^^^ -~21022~^~2100~^~Fast foods, english muffin, with egg, cheese, and sausage~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.17^4.19^8.90^3.94 -~21024~^~2100~^~Fast foods, french toast sticks~^~FAST FOODS,FRENCH TOAST STKS~^^^~Y~^^0^^5.73^3.61^8.83^3.92 -~21026~^~2100~^~Fast foods, potatoes, hash browns, round pieces or patty~^~FAST FOODS,POTATOES,HASH BROWNS,RND PIECES OR PATTY~^^^~Y~^^0^^6.25^4.00^9.00^3.77 -~21028~^~2100~^~Fast foods, vanilla, light, soft-serve ice cream, with cone~^~FAST FOODS,VANILLA,LT,SOFT-SERVE ICE CRM,W/ CONE~^^^~Y~^^0^^6.29^4.20^8.78^3.88 -~21032~^~2100~^~Fast foods, sundae, caramel~^~FAST FOODS,SUNDAE,CARAMEL~^^^^^0^^6.38^4.27^8.79^3.87 -~21033~^~2100~^~Fast foods, sundae, hot fudge~^~FAST FOODS,SUNDAE,HOT FUDGE~^^^^^0^^6.38^4.27^8.79^3.87 -~21034~^~2100~^~Fast foods, sundae, strawberry~^~FAST FOODS,SUNDAE,STRAWBERRY~^^^^^0^^6.38^4.27^8.79^3.87 -~21059~^~2100~^~Fast foods, shrimp, breaded and fried~^~FAST FOODS,SHRIMP,BREADED&FRIED~^^^~Y~^^0^^6.22^4.23^8.89^3.83 -~21060~^~2100~^~Fast foods, burrito, with beans~^~FAST FOODS,BURRITO,W/BNS~^^^^^0^^5.88^3.68^8.37^3.96 -~21061~^~2100~^~Fast foods, burrito, with beans and cheese~^~FAST FOODS,BURRITO,W/BNS&CHS~^^^~Y~^^0^^6.11^3.76^8.71^3.98 -~21063~^~2100~^~Fast foods, burrito, with beans and beef~^~FAST FOODS,BURRITO,W/ BNS & BF~^^^~Y~^^0^^6.14^4.02^8.73^3.97 -~21064~^~2100~^~Fast foods, burrito, with beans, cheese, and beef~^~FAST FOODS,BURRITO,W/BNS,CHS,&BF~^^^~Y~^^0^^6.17^3.96^8.72^3.97 -~21078~^~2100~^~Fast foods, nachos, with cheese~^~FAST FOODS,NACHOS,W/CHS~^^^~Y~^^0^^6.30^3.73^8.48^4.15 -~21080~^~2100~^~Fast foods, nachos, with cheese, beans, ground beef, and tomatoes~^~FAST FOODS,NACHOS,W/ CHS,BNS,GROUND BF,& TOMATOES~^^^~Y~^^0^^6.37^3.83^8.53^4.13 -~21082~^~2100~^~Fast foods, taco with beef, cheese and lettuce, hard shell~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,HARD SHELL~^^^~Y~^^0^^6.29^4.05^8.78^3.97 -~21089~^~2100~^~Fast foods, cheeseburger; single, regular patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21090~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21091~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments and vegetables~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT & VEG~^^^~Y~^^0^^6.11^4.12^8.80^3.95 -~21094~^~2100~^~Fast foods, cheeseburger, double, regular patty and bun, with condiments~^~FAST FOODS,CHEESEBURGER,DOUBLE,REG PATTY & BUN,W/ CONDMNT~^^^~Y~^^0^^^^^ -~21096~^~2100~^~Fast foods, cheeseburger; single, large patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; PLN~^^^~Y~^^0^^6.20^4.20^8.92^3.95 -~21102~^~2100~^~Fast foods, chicken fillet sandwich, plain with pickles~^~FAST FOODS,CHICK FILLET SNDWCH,PLN W/ PICKLES~^^^~Y~^^0^^6.15^4.18^8.88^3.95 -~21105~^~2100~^~Fast foods, fish sandwich, with tartar sauce~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU~^^^~Y~^^0^^6.07^4.11^8.79^3.93 -~21106~^~2100~^~Fast foods, fish sandwich, with tartar sauce and cheese~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU&CHS~^^^~Y~^^0^^6.11^4.12^8.81^3.93 -~21107~^~2100~^~Fast foods, hamburger; single, regular patty; plain~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.03^4.07^8.81^3.95 -~21108~^~2100~^~Fast foods, hamburger; single, regular patty; with condiments~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21121~^~2100~^~Fast foods, roast beef sandwich, plain~^~FAST FOODS,RST BF SNDWCH,PLN~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21124~^~2100~^~Fast foods, submarine sandwich, cold cut on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,COLD CUT BRD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.09^4.12^8.85^3.94 -~21125~^~2100~^~Fast foods, submarine sandwich, roast beef on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,RST BF BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.17^4.20^8.95^3.95 -~21126~^~2100~^~Fast foods, submarine sandwich, tuna on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TUNA BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.05^4.09^8.74^3.93 -~21127~^~2100~^~Fast foods, coleslaw~^~FAST FOODS, COLESLAW~^^^^^0^^^^^ -~21129~^~2100~^~Fast foods, hush puppies~^~FAST FOODS,HUSH PUPPIES~^^^~Y~^^0^^6.25^2.73^8.84^4.03 -~21130~^~2100~^~Fast foods, onion rings, breaded and fried~^~FAST FOODS,ONION RINGS,BREADED&FRIED~^^^~Y~^^0^^6.07^3.70^8.80^4.00 -~21138~^~2100~^~Fast foods, potato, french fried in vegetable oil~^~FST FOODS, POTATO, FRNCH FRIED IN VEG OIL~^^^~Y~^^0^^^^^ -~21139~^~2100~^~Fast foods, potato, mashed~^~FAST FOODS,POTATO,MASHED~^^^~Y~^^0^^6.25^2.78^8.84^4.03 -~21141~^~2100~^~BURGER KING, Vanilla Shake~^~BURGER KING,VANILLA SHAKE~^^~Burger King Corporation~^^^0^^6.38^4.00^9.00^4.00 -~21142~^~2100~^~Fast food, biscuit~^~FAST FD,BISCUIT~^^^~Y~^^0^^^^^ -~21143~^~2100~^~CHICK-FIL-A, Chick-n-Strips~^~CHICK-FIL-A,CHICK-N-STRIPS~^^~Chick-Fil-A~^^^0^^^^^ -~21144~^~2100~^~CHICK-FIL-A, hash browns~^~CHICK-FIL-A,HASH BROWNS~^^~Chick-Fil-A~^^^0^^^^^ -~21145~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Cheese Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S LS 16" 51% WHL CHS PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21146~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Turkey Pepperoni Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S 51% WHL TRKY PEP PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21147~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Cheese Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21148~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Pepperoni Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PEP PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21149~^~2100~^~School Lunch, pizza, TONY'S Breakfast Pizza Sausage, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S BRKFST PIZZA SAUSAGE,FRZ~^~school lunch~^^^^0^^6.25^^^ -~21150~^~2100~^~SUBWAY, sweet onion chicken teriyaki sub on white bread with lettuce, tomato and sweet onion sauce~^~SUBWAY,SWT ONION CHICK SUB WHT BRD LTTC,TMT & SWT ONION SAU~^^~Subway~^^^0^^^^^ -~21151~^~2100~^~Fast foods, submarine sandwich, sweet onion chicken teriyaki on white bread with lettuce, tomato and sweet onion sauce~^~FAST FOODS,SUB,SWT ONION CHICK WIT BRD W/ LTTC,TMT SWT ONION~^^^~Y~^^0^^^4.00^9.00^4.00 -~21152~^~2100~^~SUBWAY, SUBWAY CLUB sub on white bread with lettuce and tomato~^~SUBWAY,SUBWAY CLUB SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21153~^~2100~^~Fast foods, submarine sandwich, turkey, roast beef and ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY RST BF HM BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21154~^~2100~^~Fast foods, submarine sandwich, oven roasted chicken on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,OVEN RSTD CHCK WHT BRD LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21155~^~2100~^~Fast foods, submarine sandwich, turkey breast on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY BRST WHT BRD LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21156~^~2100~^~Fast foods, submarine sandwich, ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,HAM ON WHT BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21157~^~2100~^~SUBWAY, meatball marinara sub on white bread (no toppings)~^~SUBWAY,MEATBALL MARINARA SUB ON WHITE BREAD (NO TOPPINGS)~^^~Subway~^^^0^^^^^ -~21158~^~2100~^~Fast foods, submarine sandwich, meatball marinara on white bread~^~FAST FOODS,SUBMARINE SNDWCH,MEATBALL MARINARA ON WHITE BREAD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21159~^~2100~^~SUBWAY, steak & cheese sub on white bread with American cheese, lettuce and tomato~^~SUBWAY,STEAK & CHS SUB ON WHT BRD W/ AMERICAN CHS,LTTC & TMT~^^~Subway~^^^0^^^^^ -~21160~^~2100~^~Fast foods, submarine sandwich, steak and cheese on white bread with cheese, lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,STK CHS WHT BRD W/ CHS,LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21161~^~2100~^~SUBWAY, B.L.T. sub on white bread with bacon, lettuce and tomato~^~SUBWAY,B.L.T. SUB ON WHITE BREAD W/ BACON,LETTUCE & TOMATO~^~BLT~^~Subway~^^^0^^^^^ -~21162~^~2100~^~Fast foods, submarine sandwich, bacon, lettuce, and tomato on white bread~^~FAST FOODS,SUBMARINE SNDWCH,BACON,LETTUCE,& TOMATO WHT BRD~^~BLT~^^~Y~^^0^^^4.00^9.00^4.00 -~21202~^~2100~^~Fast foods, hamburger, large, single patty, with condiments~^~FAST FOODS,HAMBURGER,LRG,SINGLE PATTY,W/CONDMNT~^^^~Y~^^0^^^^^ -~21207~^~2100~^~SUBWAY, turkey breast sub on white bread with lettuce and tomato~^~SUBWAY,TURKEY BREAST SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21209~^~2100~^~SUBWAY, black forest ham sub on white bread with lettuce and tomato~^~SUBWAY,BLACK FOREST HAM SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21210~^~2100~^~SUBWAY, roast beef sub on white bread with lettuce and tomato~^~SUBWAY,RST BF SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21211~^~2100~^~SUBWAY, oven roasted chicken sub on white bread with lettuce and tomato~^~SUBWAY,OVEN RSTD CHICK SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^ -~21213~^~2100~^~SUBWAY, cold cut sub on white bread with lettuce and tomato~^~SUBWAY,COLD CUT SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21214~^~2100~^~SUBWAY, tuna sub on white bread with lettuce and tomato~^~SUBWAY,TUNA SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^ -~21224~^~2100~^~Pizza, cheese topping, regular crust, frozen, cooked~^~PIZZA,CHS TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21225~^~2100~^~Pizza, cheese topping, rising crust, frozen, cooked~^~PIZZA,CHS TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21226~^~2100~^~Pizza, meat and vegetable topping, regular crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21227~^~2100~^~Pizza, meat and vegetable topping, rising crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~21228~^~2100~^~McDONALD'S, Hamburger~^~MCDONALD'S,HAMBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21229~^~2100~^~Fast foods, chicken, breaded and fried, boneless pieces, plain~^~FAST FOODS,CHICK,BREADED & FRIED,BNLESS PIECES,PLN~^~nuggets~^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21230~^~2100~^~Fast Foods, crispy chicken filet sandwich, with lettuce and mayonnaise~^~FAST FOODS,CRISPY CHICK FILET SNDWCH,W/ LETTUCE & MAYO~^^^~Y~^^0^^^4.00^9.00^4.00 -~21232~^~2100~^~McDONALD'S, FILET-O-FISH~^~MCDONALD'S, FLT-O-FSH~^^~McDonald's Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21233~^~2100~^~McDONALD'S, Cheeseburger~^~MCDONALD'S, CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21234~^~2100~^~McDONALD'S, QUARTER POUNDER~^~MCDONALD'S,QUARTER POUNDER~^^~McDonald's Corporation~^^^0^^^^^ -~21235~^~2100~^~McDONALD'S, QUARTER POUNDER with Cheese~^~MCDONALD'S,QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21237~^~2100~^~McDONALD'S, BIG MAC~^~MCDONALD'S,BIG MAC~^^~McDonald's Corporation~^^^0^^^^^ -~21238~^~2100~^~McDONALD'S, french fries~^~MCDONALD'S,FRENCH FR~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21239~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, no cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,NO CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21240~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, with cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21241~^~2100~^~WENDY'S, Jr. Hamburger, without cheese~^~WENDY'S,JR. HAMBURGER,WO/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21242~^~2100~^~WENDY'S, Jr. Hamburger, with cheese~^~WENDY'S,JR. HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21243~^~2100~^~WENDY'S, CLASSIC DOUBLE, with cheese~^~WENDY'S,CLASSIC DOUBLE,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21244~^~2100~^~WENDY'S, Homestyle Chicken Fillet Sandwich~^~WENDY'S,HOMESTYLE CHICK FILLET SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21245~^~2100~^~WENDY'S, Ultimate Chicken Grill Sandwich~^~WENDY'S,ULTIMATE CHICK GRILL SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21246~^~2100~^~WENDY'S, Chicken Nuggets~^~WENDY'S,CHICK NUGGETS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21247~^~2100~^~WENDY'S, french fries~^~WENDY'S,FRENCH FR~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21248~^~2100~^~WENDY'S, Frosty Dairy Dessert~^~WENDY'S,FROSTY DAIRY DSSRT~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00 -~21249~^~2100~^~BURGER KING, french fries~^~BURGER KING,FRENCH FR~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21250~^~2100~^~BURGER KING, Hamburger~^~BURGER KING,HAMBURGER~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21251~^~2100~^~BURGER KING, Cheeseburger~^~BURGER KING, CHSBRGR~^^~Burger King Corporation~^^^0^^6.25^^^ -~21252~^~2100~^~BURGER KING, WHOPPER, no cheese~^~BURGER KING,WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21253~^~2100~^~BURGER KING, WHOPPER, with cheese~^~BURGER KING,WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21254~^~2100~^~BURGER KING, DOUBLE WHOPPER, no cheese~^~BURGER KING,DOUBLE WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21255~^~2100~^~BURGER KING, DOUBLE WHOPPER, with cheese~^~BURGER KING,DOUBLE WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21256~^~2100~^~BURGER KING, Chicken Strips~^~BURGER KING,CHICK STRIPS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00 -~21258~^~2100~^~BURGER KING, Premium Fish Sandwich~^~BURGER KING,PREMIUM FISH SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21259~^~2100~^~BURGER KING, Original Chicken Sandwich~^~BURGER KING,ORIGINAL CHICK SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00 -~21260~^~2100~^~TACO BELL, Original Taco with beef, cheese and lettuce~^~TACO BELL,ORIGINAL TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21261~^~2100~^~TACO BELL, Soft Taco with beef, cheese and lettuce~^~TACO BELL,SOFT TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21262~^~2100~^~TACO BELL, Soft Taco with chicken, cheese and lettuce~^~TACO BELL,SOFT TACO W/ CHICK,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^ -~21263~^~2100~^~TACO BELL, Soft Taco with steak~^~TACO BELL,SOFT TACO W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21264~^~2100~^~TACO BELL, Bean Burrito~^~TACO BELL,BEAN BURRITO~^^~Taco Bell Corp.~^^^0^^^^^ -~21265~^~2100~^~TACO BELL, BURRITO SUPREME with beef~^~TACO BELL,BURRITO SUPREME W/ BF~^^~Taco Bell Corp.~^^^0^^^^^ -~21266~^~2100~^~TACO BELL, BURRITO SUPREME with chicken~^~TACO BELL,BURRITO SUPREME W/ CHICK~^^~Taco Bell Corp.~^^^0^^^^^ -~21267~^~2100~^~TACO BELL, BURRITO SUPREME with steak~^~TACO BELL,BURRITO SUPREME W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^ -~21268~^~2100~^~TACO BELL, Nachos~^~TACO BELL,NACHOS~^^~Taco Bell Corp.~^^^0^^^^^ -~21269~^~2100~^~TACO BELL, Nachos Supreme~^~TACO BELL,NACHOS SUPREME~^^~Taco Bell Corp.~^^^0^^^^^ -~21270~^~2100~^~TACO BELL, Taco Salad~^~TACO BELL,TACO SALAD~^^~Taco Bell Corp.~^^^0^^^^^ -~21271~^~2100~^~PIZZA HUT 12" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21272~^~2100~^~PIZZA HUT 12" Cheese Pizza, Pan Crust~^~PIZZA HUT 12" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21273~^~2100~^~PIZZA HUT 12" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 12" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21274~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21275~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21276~^~2100~^~PIZZA HUT 12" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^4.00 -~21277~^~2100~^~DOMINO'S 14" Cheese Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" CHS PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21278~^~2100~^~DOMINO'S 14" Cheese Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" CHS PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21279~^~2100~^~DOMINO'S 14" Cheese Pizza, Crunchy Thin Crust~^~DOMINO'S 14" CHS PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21280~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21281~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" PEPPERONI PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21282~^~2100~^~DOMINO'S 14" EXTRAVAGANZZA FEAST Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" EXTRAVAGANZZA FST PIZZA,CLSSIC HAND-TOSSED CRST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21283~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Original Crust~^~PAPA JOHN'S 14" CHS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21284~^~2100~^~PAPA JOHN'S 14" Pepperoni Pizza, Original Crust~^~PAPA JOHN'S 14" PEPPERONI PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21285~^~2100~^~PAPA JOHN'S 14" The Works Pizza, Original Crust~^~PAPA JOHN'S 14" THE WORKS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21286~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Thin Crust~^~PAPA JOHN'S 14" CHS PIZZA,THIN CRUST~^^~Papa John's International, Inc.~^^^0^^^^^ -~21287~^~2100~^~LITTLE CAESARS 14" Original Round Cheese Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND CHS PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21288~^~2100~^~LITTLE CAESARS 14" Original Round Pepperoni Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND PEPPERONI PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21289~^~2100~^~LITTLE CAESARS 14" Original Round Meat and Vegetable Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND MEAT & VEG PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21290~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" CHS PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21291~^~2100~^~LITTLE CAESARS 14" Pepperoni Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" PEPPERONI PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21292~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Thin Crust~^~LITTLE CAESARS 14" CHS PIZZA,THIN CRUST~^^~Little Caesar's Pizza~^^^0^^^^^ -~21293~^~2100~^~PIZZA HUT 14" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21294~^~2100~^~PIZZA HUT 14" Cheese Pizza, Pan Crust~^~PIZZA HUT 14" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21295~^~2100~^~PIZZA HUT 14" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21296~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21297~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21298~^~2100~^~PIZZA HUT 14" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21299~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21300~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21301~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21302~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21303~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21304~^~2100~^~Fast Food, Pizza Chain, 14" pizza, meat and vegetable topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,MEAT & VEG TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21305~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21306~^~2100~^~Fast foods, griddle cake sandwich, sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,SAUSAGE~^^^~Y~^^0^^^^^ -~21307~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and bacon~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& BACON~^^^~Y~^^0^^^^^ -~21309~^~2100~^~McDONALD'S, Chicken McNUGGETS~^~MCDONALD'S,CHICK MCNUGGETS~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21319~^~2100~^~McDONALD'S, Hash Brown~^~MCDONALD'S,HASH BROWN~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21321~^~2100~^~McDONALD'S, Hotcakes (plain)~^~MCDONALD'S,HOTCAKES (PLAIN)~^^~McDonald's Corporation~^^^0^^6.25^^^ -~21327~^~2100~^~McDONALD'S, Bacon, Egg & Cheese McGRIDDLES~^~MCDONALD'S,BACON,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21328~^~2100~^~McDONALD'S, Sausage McGRIDDLES~^~MCDONALD'S,SAUSAGE MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21329~^~2100~^~McDONALD'S, Sausage, Egg & Cheese McGRIDDLES~^~MCDONALD'S,SAUSAGE,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^ -~21333~^~2100~^~McDONALD'S, Vanilla Reduced Fat Ice Cream Cone~^~MCDONALD'S,VANILLA RED FAT ICE CRM CONE~^^~McDonald's Corporation~^^^0^^^^^ -~21334~^~2100~^~McDONALD'S, Strawberry Sundae~^~MCDONALD'S,STRAWBERRY SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21335~^~2100~^~McDONALD'S, Hot Caramel Sundae~^~MCDONALD'S,HOT CARAMEL SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21336~^~2100~^~McDONALD'S, Hot Fudge Sundae~^~MCDONALD'S,HOT FUDGE SUNDAE~^^~McDonald's Corporation~^^^0^^^^^ -~21338~^~2100~^~McDONALD'S, McFLURRY with M&M'S CANDIES~^~MCDONALD'S,MCFLURRY W/ M&M'S CANDIES~^^~McDonald's Corporation~^^^0^^^^^ -~21339~^~2100~^~McDONALD'S, McFLURRY with OREO cookies~^~MCDONALD'S,MCFLURRY W/ OREO COOKIES~^^~McDonald's Corporation~^^^0^^^^^ -~21340~^~2100~^~McDONALD'S, Sausage Burrito~^~MCDONALD'S,SAUSAGE BURRITO~^^~McDonald's Corporation~^^^0^^^^^ -~21341~^~2100~^~McDONALD'S, BIG BREAKFAST~^~MCDONALD'S,BIG BRKFST~^^~McDonald's Corporation~^^^0^^^^^ -~21344~^~2100~^~McDONALD'S, Double Cheeseburger~^~MCDONALD'S,DOUBLE CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^ -~21345~^~2100~^~McDONALD'S, DOUBLE QUARTER POUNDER with Cheese~^~MCDONALD'S,DOUBLE QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^ -~21350~^~2100~^~McDONALD'S, BIG MAC (without Big Mac Sauce)~^~MCDONALD'S,BIG MAC (WITHOUT BIG MAC SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21355~^~2100~^~McDONALD'S, McCHICKEN Sandwich~^~MCDONALD'S,MCCHICKEN SNDWCH~^^~McDonald's Corporation~^^^0^^^^^ -~21356~^~2100~^~McDONALD'S, McCHICKEN Sandwich (without mayonnaise)~^~MCDONALD'S,MCCHICKEN SNDWCH (WITHOUT MAYONNAISE)~^^~McDonald's Corporation~^^^0^^^^^ -~21357~^~2100~^~McDONALD'S, Egg McMUFFIN~^~MCDONALD'S,EGG MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21358~^~2100~^~McDONALD'S, Sausage McMUFFIN~^~MCDONALD'S,SAUSAGE MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^ -~21359~^~2100~^~McDONALD'S, Sausage McMUFFIN with Egg~^~MCDONALD'S,SAUSAGE MCMUFFIN W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21360~^~2100~^~McDONALD'S, Bacon Egg & Cheese Biscuit~^~MCDONALD'S,BACON EGG & CHS BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21361~^~2100~^~McDONALD'S, Sausage Biscuit~^~MCDONALD'S,SAUSAGE BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21362~^~2100~^~McDONALD'S, Sausage Biscuit with Egg~^~MCDONALD'S,SAUSAGE BISCUIT W/ EGG~^^~McDonald's Corporation~^^^0^^^^^ -~21363~^~2100~^~McDONALD'S, Deluxe Breakfast, with syrup and margarine~^~MCDONALD'S,DELUXE BRKFST,W/ SYRUP & MARGARINE~^^~McDonald's Corporation~^^^0^^^^^ -~21364~^~2100~^~McDONALD'S, Hotcakes and Sausage~^~MCDONALD'S,HOTCAKES & SAUSAGE~^^~McDonald's Corporation~^^^0^^^^^ -~21365~^~2100~^~McDONALD'S, Hotcakes (with 2 pats margarine & syrup)~^~MCDONALD'S,HOTCAKES (WITH 2 PATS MARGARINE & SYRUP)~^^~McDonald's Corporation~^^^0^^^^^ -~21376~^~2100~^~McDONALD'S, Bacon Ranch Salad with Grilled Chicken~^~MCDONALD'S,BACON RANCH SALAD W/ GRILLED CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21377~^~2100~^~McDONALD'S Bacon Ranch Salad with Crispy Chicken~^~MCDONALD'S BACON RANCH SALAD W/ CRISPY CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21378~^~2100~^~McDONALD'S, Bacon Ranch Salad without chicken~^~MCDONALD'S,BACON RANCH SALAD WO/ CHICK~^^~McDonald's Corporation~^^^0^^^^^ -~21379~^~2100~^~McDONALD'S, Side Salad~^~MCDONALD'S,SIDE SALAD~^^~McDonald's Corporation~^^^0^^^^^ -~21380~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT~^^~McDonald's Corporation~^^^0^^^^^ -~21381~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait (without granola)~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT (WITHOUT GRANOLA)~^^~McDonald's Corporation~^^^0^^^^^ -~21382~^~2100~^~McDONALD'S, FILET-O-FISH (without tartar sauce)~^~MCDONALD'S,FILET-O-FISH (WITHOUT TARTAR SAUCE)~^^~McDonald's Corporation~^^^0^^^^^ -~21383~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage, Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE,EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21384~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21385~^~2100~^~BURGER KING, CROISSAN'WICH with Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ EGG & CHS~^^~Burger King Corporation~^^^0^^^^^ -~21386~^~2100~^~BURGER KING, french toast sticks~^~BURGER KING,FRENCH TOAST STKS~^^~Burger King Corporation~^^^0^^^^^ -~21387~^~2100~^~BURGER KING, Hash Brown Rounds~^~BURGER KING,HASH BROWN ROUNDS~^^~Burger King Corporation~^^^0^^^^^ -~21388~^~2100~^~Fast foods, miniature cinnamon rolls~^~FAST FOODS,MINIATURE CINN ROLLS~^^^^^0^^^4.00^9.00^4.00 -~21389~^~2100~^~Fast foods, hamburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,HAMBURGER; DOUBLE,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21390~^~2100~^~Fast foods, hamburger; single, large patty; with condiments, vegetables and mayonnaise~^~FT FDS, HAMBRGER; SIN, LRG PATTY; W/ CONDMNTS, VEG, MAYO~^^^~Y~^^0^^^^^ -~21393~^~2100~^~Fast foods, hamburger; single, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,HMBURGR; SNG,REG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^^^0^^6.25^4.00^9.00^4.00 -~21395~^~2100~^~Fast foods, cheeseburger; double, regular patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21396~^~2100~^~Fast foods, cheeseburger; double, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT~^^^^^0^^^^^ -~21397~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,CHESEBRGER; SING,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21398~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^ -~21399~^~2100~^~Fast Foods, cheeseburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FDS,CHSEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^ -~21400~^~2100~^~Fast foods, cheeseburger; double, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,CHSBURGR; DBL,RG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~21401~^~2100~^~Fast foods, chicken tenders~^~FAST FOODS,CHICK TENDERS~^~chicken strips~^^~Y~^^0^^^^^ -~21410~^~2100~^~Fast foods, bagel, with egg, sausage patty, cheese, and condiments~^~FAST FOODS,BAGEL,W/ EGG,SAUSAGE PATTY,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21411~^~2100~^~Fast foods, bagel, with breakfast steak, egg, cheese, and condiments~^~FAST FOODS,BAGEL,W/ BRKFST STEAK,EGG,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00 -~21412~^~2100~^~Light Ice Cream, soft serve, blended with milk chocolate candies~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ MILK CHOC CANDIES~^^^~Y~^^0^^^^^ -~21413~^~2100~^~Light Ice Cream, soft serve, blended with cookie pieces~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ COOKIE PIECES~^^^~Y~^^0^^^^^ -~21415~^~2100~^~POPEYES, biscuit~^~POPEYES,BISCUIT~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21416~^~2100~^~POPEYES, Coleslaw~^~POPEYES,COLESLAW~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21417~^~2100~^~POPEYES, Mild Chicken Strips, analyzed 2006~^~POPEYES,MILD CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21418~^~2100~^~POPEYES, Spicy Chicken Strips, analyzed 2006~^~POPEYES,SPICY CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21419~^~2100~^~KFC, biscuit~^~KFC,BISCUIT~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21420~^~2100~^~KFC, Coleslaw~^~KFC,COLESLAW~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21421~^~2100~^~KFC, Crispy Chicken Strips~^~KFC,CRISPY CHICK STRIPS~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21422~^~2100~^~KFC, Popcorn Chicken~^~KFC,POPCORN CHICK~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21424~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Skin and Breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21425~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT NLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 18%; Handling loss, 1%~^47^^^^^ -~21426~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT ONLY,SKN BRG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 23%; Cartilage and bone, 24%~^47^^^^^ -~21427~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 36%; Cartilage and bone, 19%; Handling loss, 1%~^56^^^^^ -~21428~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 35%; Cartilage and bone, 26%; Handling loss, 1%~^63^^^^^ -~21429~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Skin and Breading~^~KFC,FRIED CHICK,EX CRISPY,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^ -~21430~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 33%; Cartilage and bone, 9%~^43^^^^^ -~21431~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT ONLY,SKN & BRDNG RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 21%~^49^^^^^ -~21432~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 13%~^53^^^^^ -~21433~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT ONLY,SKN & BRDING REMOVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 34%; Cartilage and bone, 24%~^58^^^^^ -~21434~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^18^^^^^ -~21435~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21436~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^19^^^^^ -~21437~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^26^^^^^ -~21438~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^9^^^^^ -~21439~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^21^^^^^ -~21440~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^13^^^^^ -~21441~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^ -~21442~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat only, skin and breading removed~^~POPEYES, CHICK,MILD,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 32%; Cartilage and bone, 17%; Handling loss, 1%~^50^^^^^ -~21443~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT ONLY,SKN & BREADING RE~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 22%; Cartilage and bone, 20%~^42^^^^^ -~21444~^~2100~^~POPEYES, Fried Chicken, Mild, Skin and Breading~^~POPEYES,FRIED CHICK,MILD,SKN & BREADING~^^~Popeyes Chicken and Biscuits~^^^0^^^^^ -~21445~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat only, skin and breading removed~^~POPEYES,FRIED CHCK,MILD,THIGH,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 20%~^60^^^^^ -~21446~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,WING,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 32%; Handling loss, 1%~^72^^^^^ -~21456~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,BREAST,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^17^^^^^ -~21457~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21458~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,THIGH,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^ -~21459~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,WING,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^32^^^^^ -~21461~^~2100~^~Fast foods, grilled chicken, bacon and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~GRILLED CHICK,BACON & TOMO CLB SNDWCH,W/ CHS,LETTUCE,& MAYO~^^^~Y~^^0^^^^^ -~21462~^~2100~^~Fast foods, crispy chicken, bacon, and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~CRISPY CHICK,BACON,& TOMATO CLUB SNDWCH,W/ CHS,LETUCE,& MAYO~^^^~Y~^^0^^^^^ -~21463~^~2100~^~Yogurt parfait, lowfat, with fruit and granola~^~YOGURT PARFAIT,LOWFAT,W/ FRUIT & GRANOLA~^^^~Y~^^0^^^^^ -~21464~^~2100~^~Fast Foods, Fried Chicken, Breast, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 30%; Cartilage and bone, 17%; Handling loss, 1%~^48^^^^^ -~21465~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,DRMSTK,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 24.5%, Cartilage and bone, 22%~^47^^^^^ -~21466~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,THIGH,MEAT ONLY,SKN & BREDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 13.6%~^52^^^^^ -~21467~^~2100~^~Fast Foods, Fried Chicken, Wing, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,WING,MEAT ONLY,SKN & BREADING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 37%; Cartilage and bone, 29%; Handling loss, 1%~^67^^^^^ -~21468~^~2100~^~Fast Foods, Fried Chicken, Skin and breading from all pieces~^~FAST FOODS,FRIED CHICK,SKN & BREADING FROM ALL PIECES~^^^^^0^^^^^ -~21469~^~2100~^~Fast Foods, Fried Chicken, Breast, meat and skin and breading~^~FAST FOODS,FRIED CHICK,BREAST,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^18^^^^^ -~21470~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat and skin with breading~^~FAST FOODS,FRIED CHICK,DRUMSTK,MEAT & SKN W/ BREADING~^^^~Y~^~Cartilage and bone~^22^^^^^ -~21471~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat and skin and breading~^~FAST FOODS,FRIED CHICK,THIGH,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^14^^^^^ -~21472~^~2100~^~Fast Foods, Fried Chicken, Wing, meat and skin and breading~^~FAST FOODS,FRIED CHICK,WING,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^29^^^^^ -~21473~^~2100~^~DIGIORNO Pizza, cheese topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21474~^~2100~^~DIGIORNO Pizza, cheese topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21475~^~2100~^~DIGIORNO Pizza, cheese topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21476~^~2100~^~DIGIORNO Pizza, pepperoni topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21477~^~2100~^~DIGIORNO Pizza, pepperoni topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21478~^~2100~^~DIGIORNO Pizza, pepperoni topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21479~^~2100~^~DIGIORNO Pizza, supreme topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21480~^~2100~^~DIGIORNO Pizza, supreme topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^ -~21482~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THICK CRUST~^^^~Y~^^0^^^^^ -~21483~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21484~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,REG CRUST~^^^~Y~^^0^^^^^ -~21485~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THIN CRUST~^^^~Y~^^0^^^^^ -~21486~^~2100~^~Fast foods, taco with beef, cheese and lettuce, soft~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,SOFT~^^^~Y~^^0^^^^^ -~21487~^~2100~^~Fast foods, taco with chicken, lettuce and cheese, soft~^~FAST FOODS,TACO W/ CHICK,LETTUCE & CHS,SOFT~^^^~Y~^^0^^^^^ -~21488~^~2100~^~Fast foods, quesadilla, with chicken~^~FAST FOODS,QUESADILLA,W/ CHICK~^^^~Y~^^0^^^^^ -~21490~^~2100~^~Fast Foods, grilled chicken filet sandwich, with lettuce, tomato and spread~^~FAST FDS,GRILLED CHICK FILET SNDWCH,W/ LETTUCE,TOMATO & SPRD~^^^~Y~^^0^^6.25^^^ -~21491~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21492~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Crunchy Thin Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21493~^~2100~^~DOMINO'S 14" Sausage Pizza, Crunchy Thin Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21494~^~2100~^~DOMINO'S 14" Sausage Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21495~^~2100~^~DOMINO'S 14" Sausage Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" SAUSAGE PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^ -~21496~^~2100~^~PIZZA HUT 14" Sausage Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21497~^~2100~^~PIZZA HUT 14" Sausage Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21498~^~2100~^~PIZZA HUT 14" Sausage Pizza, Pan Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21505~^~2100~^~Pizza, cheese topping, thin crust, frozen, cooked~^~PIZZA,CHS TOPPING,THIN CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~21506~^~2100~^~BURGER KING, Double Cheeseburger~^~BURGER KING,DOUBLE CHEESEBURGER~^^~Burger King Corporation~^^^0^^^^^ -~21507~^~2100~^~WENDY'S, Double Stack, with cheese~^~WENDY'S,DOUBLE STACK,W/ CHS~^^~Wendy's International, Inc.~^^^0^^^^^ -~21508~^~2100~^~WEND'YS, Crispy Chicken Sandwich~^~WEND'YS,CRISPY CHICK SNDWCH~^^~Wendy's International, Inc.~^^^0^^^^^ -~21509~^~2100~^~BURGER KING, Onion Rings~^~BURGER KING,ONION RINGS~^^~Burger King Corporation~^^^0^^^^^ -~21510~^~2100~^~WENDY'S, DAVE'S Hot 'N Juicy 1/4 LB, single~^~WENDY'S,DAVE'S HOT 'N JUICY 1/4 LB,SINGLE~^^~Wendy's International, Inc.~^^^0^^^^^ -~21511~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, stuffed crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,STUFFED CRUST~^^^~Y~^^0^^^^^ -~21512~^~2100~^~PIZZA HUT 14" Cheese Pizza, Stuffed Crust~^~PIZZA HUT 14" CHS PIZZA,STUFFED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21517~^~2100~^~Fast foods, crispy chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,CRISPY CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~snack, wrap~^^~Y~^^0^^^^^ -~21518~^~2100~^~Fast foods, grilled chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,GRILLED CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~wrap, snack~^^~Y~^^0^^^^^ -~21519~^~2100~^~Fast foods, breakfast burrito, with egg, cheese, and sausage~^~FAST FOODS,BRKFST BURRITO,W/ EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^ -~21520~^~2100~^~Fast foods, breadstick, soft, prepared with garlic and parmesan cheese~^~FAST FOODS,BREADSTICK,SOFT,PREP W/ GARLIC & PARMESAN CHS~^^^~Y~^^0^^^^^ -~21521~^~2100~^~Fast foods, strawberry banana smoothie made with ice and low-fat yogurt~^~FAST FOODS,STRWBY BANANA SMTH MADE W/ ICE & LOW-FAT YOGURT~^^^~Y~^^0^^6.25^^^ -~21522~^~2100~^~McDONALD'S, Southern Style Chicken Biscuit~^~MCDONALD'S,SOUTHERN STYLE CHICK BISCUIT~^^~McDonald's Corporation~^^^0^^^^^ -~21523~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Crispy~^~MCDONALD'S,RANCH SNACK WRAP,CRISPY~^^~McDonald's Corporation~^^^0^^^^^ -~21524~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Grilled~^~MCDONALD'S,RANCH SNACK WRAP,GRILLED~^^~McDonald's Corporation~^^^0^^^^^ -~21525~^~2100~^~PIZZA HUT, breadstick, parmesan garlic~^~PIZZA HUT,BREADSTICK,PARMESAN GARLIC~^^~Pizza Hut, Inc.~^^^0^^^^^ -~21526~^~2100~^~CHICK-FIL-A, chicken sandwich~^~CHICK-FIL-A,CHICK SNDWCH~^^~Chick-Fil-A~^^^0^^^^^ -~21527~^~2100~^~ARBY'S, roast beef sandwich, classic~^~ARBY'S,RST BF SNDWCH,CLASSIC~^^~ARBY'S~^^^0^^^^^ -~21600~^~2100~^~School Lunch, pizza, cheese topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THIN CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21601~^~2100~^~School Lunch, pizza, cheese topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THICK CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21602~^~2100~^~School Lunch, pizza, pepperoni topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPPI TOPPING,THIN CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21603~^~2100~^~School Lunch, pizza, pepperoni topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPP TOPPING,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21604~^~2100~^~School Lunch, pizza, sausage topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SSAGE TOPPING,THIN CRST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^6.25^^^ -~21605~^~2100~^~School Lunch, pizza, sausage topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SAUSAGE TOP,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^ -~21610~^~2100~^~School Lunch, chicken patty, whole grain breaded~^~SCHOOL LUNCH,CHICK PATTY,WHL GRAIN BREADED~^~school lunch~^^~Y~^^0^^^^^ -~21611~^~2100~^~School Lunch, chicken nuggets, whole grain breaded~^~SCHOOL LUNCH,CHICK NUGGETS,WHL GRAIN BREADED~^^^~Y~^^0^^^4.00^9.00^4.00 -~22247~^~2200~^~Macaroni and Cheese, canned entree~^~MACARONI & CHS,CND ENTREE~^^^~Y~^^0^^^^^ -~22401~^~2200~^~Spaghetti with meat sauce, frozen entree~^~SPAGHETTI W/ MEAT SAU,FRZ ENTREE~^^^~Y~^^0^^5.80^4.00^9.00^4.00 -~22402~^~2200~^~Beef macaroni with tomato sauce, frozen entree, reduced fat~^~BEEF MACARONI W/ TOMATO SAU,FRZ ENTREE,RED FAT~^^^^^0^^5.80^4.00^9.00^4.00 -~22522~^~2200~^~Pasta with Sliced Franks in Tomato Sauce, canned entree~^~PASTA W/SLICED FRANKS IN TOMATO SAU,CND ENTREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~22528~^~2200~^~Turkey Pot Pie, frozen entree~^~TURKEY POT PIE,FRZ ENTREE~^^^^^0^^^^^ -~22529~^~2200~^~Beef Pot Pie, frozen entree, prepared~^~BEEF POT PIE,FRZ ENTREE,PREP~^^^^^0^^^^^ -~22535~^~2200~^~HOT POCKETS, CROISSANT POCKETS Chicken, Broccoli, and Cheddar Stuffed Sandwich, frozen~^~HOT POCKETS,CROISSANT POCKTS CHIK,BROC&CHDR STUFD SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22537~^~2200~^~HOT POCKETS Ham 'N Cheese Stuffed Sandwich, frozen~^~HOT POCKETS HAM 'N CHS STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22899~^~2200~^~Ravioli, cheese-filled, canned~^~RAVIOLI,CHEESE-FILLED,CND~^^^~Y~^^0^^^^^ -~22900~^~2200~^~Ravioli, meat-filled, with tomato sauce or meat sauce, canned~^~RAVIOLI,MEAT-FILLED,W/ TOMATO SAU OR MEAT SAU,CND~^^^~Y~^^0^^^^^ -~22901~^~2200~^~Tortellini, pasta with cheese filling, fresh-refrigerated, as purchased~^~TORTELLINI,PASTA W/ CHS FILLING,FRESH-REFRIGERATED~^^^~Y~^^0^^6.04^4.00^9.00^4.00 -~22902~^~2100~^~Pizza, meat topping, thick crust, frozen, cooked~^~PIZZA,MEAT TOPPING,THICK CRUST,FRZ,CKD~^^^~Y~^^0^^^^^ -~22903~^~2100~^~Pizza, pepperoni topping, regular crust, frozen, cooked~^~PIZZA,PEPPERONI TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00 -~22904~^~2200~^~Chili con carne with beans, canned entree~^~CHILI CON CARNE W/BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22905~^~2200~^~Beef stew, canned entree~^~BEEF STEW,CANNED ENTREE~^^^~Y~^^0^^^^^ -~22906~^~2200~^~Chicken pot pie, frozen entree, prepared~^~CHICKEN POT PIE,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22908~^~2200~^~Beef, corned beef hash, with potato, canned~^~BEEF,CORNED BF HASH,W/ POTATO,CND~^^~Hormel Foods Corp.~^~Y~^^0^^6.25^^^ -~22910~^~2200~^~Lasagna, cheese, frozen, prepared~^~LASAGNA,CHS,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22911~^~2200~^~Chili, no beans, canned entree~^~CHILI,NO BNS,CND ENTREE~^^^~Y~^^0^^^^^ -~22912~^~2200~^~Spaghetti, with meatballs in tomato sauce, canned~^~SPAGHETTI,W/ MEATBALLS IN TOMATO SAU,CND~^^^~Y~^^0^^6.25^^^ -~22914~^~2200~^~Pasta with tomato sauce, no meat, canned~^~PASTA W/ TOMATO SAU,NO MEAT,CND~^^^~Y~^^0^^^^^ -~22915~^~2200~^~Lasagna with meat & sauce, low-fat, frozen entree~^~LASAGNA W/ MEAT & SAU,LOW-FAT,FRZ ENTREE~^^^^^0^^^^^ -~22916~^~2200~^~Lasagna with meat & sauce, frozen entree~^~LASAGNA W/ MEAT & SAU,FRZ ENTREE~^^^~Y~^^0^^^^^ -~22917~^~2200~^~Burrito, beef and bean, frozen~^~BURRITO,BF & BEAN,FRZ~^^^^^0^^^^^ -~22918~^~2200~^~Burrito, bean and cheese, frozen~^~BURRITO, BEAN AND CHEESE, FROZEN~^^^^^0^^^^^ -~22919~^~2200~^~Macaroni and Cheese, canned, microwavable~^~MACARONI & CHS,CND,MICROWAVABLE~^^^^^0^^^^^ -~22928~^~2200~^~Burrito, beef and bean, microwaved~^~BURRITO,BF & BEAN,MICROWAVED~^^^^^0^^^^^ -~22953~^~2200~^~Egg rolls, pork, refrigerated, heated~^~EGG ROLLS,PORK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22954~^~2200~^~Egg rolls, chicken, refrigerated, heated~^~EGG ROLLS,CHICK,REFR,HTD~^^^~Y~^^0^^6.25^^^ -~22955~^~2200~^~Egg rolls, vegetable, frozen, prepared~^~EGG ROLLS,VEG,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22956~^~2200~^~Lasagna, Vegetable, frozen, baked~^~LASAGNA,VEG,FRZ,BKD~^^^^^0^^^^^ -~22957~^~2200~^~Turkey, stuffing, mashed potatoes w/gravy, assorted vegetables, frozen, microwaved~^~TKY,STUFFING,MSHD POTATO W/GRAVY,ASSORTED VEG,FRZ,MICROWAVE~^^^~Y~^^0^^^^^ -~22958~^~2200~^~Rice bowl with chicken, frozen entree, prepared (includes fried, teriyaki, and sweet and sour varieties)~^~RICE BOWL W/ CHICK,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^ -~22959~^~2200~^~Macaroni and cheese dinner with dry sauce mix, boxed, uncooked~^~MACARONI & CHS DINNER W/ DRY SAU MIX,BOXED,UNCKD~^^^~Y~^^0^^^^^ -~22960~^~2200~^~Macaroni and cheese, dry mix, prepared with 2% milk and 80% stick margarine from dry mix~^~MAC & CHS,DRY MIX,PREP W/ 2% MILK & 80% STK MARGARINE DRY MX~^^^^^0^^^^^ -~22961~^~2200~^~HOT POCKETS, meatballs & mozzarella stuffed sandwich, frozen~^~HOT POCKETS,MEATBALLS & MOZZARELLA STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22962~^~2200~^~LEAN POCKETS, Ham N Cheddar~^~LEAN POCKETS,HAM N CHEDDAR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^ -~22963~^~2200~^~Lean Pockets, Meatballs & Mozzarella~^~LEAN POCKETS,MEATBALLS & MOZZARELLA~^^^^^0^^^^^ -~22969~^~2200~^~Chili with beans, microwavable bowls~^~CHILI W/ BNS,MICROWAVABLE BOWLS~^^^^^0^^^^^ -~22970~^~2200~^~Macaroni and cheese, frozen entree~^~MACARONI & CHS,FRZ ENTREE~^^^^^0^^^^^ -~22971~^~2200~^~Potato salad with egg~^~POTATO SALAD W/ EGG~^^^~Y~^^0^^^^^ -~22972~^~2200~^~Pulled pork in barbecue sauce~^~PULLED PORK IN BARBECUE SAU~^^^^^0^^^^^ -~22973~^~2200~^~Corn dogs, frozen, prepared~^~CORN DOGS,FRZ,PREP~^^^~Y~^^0^^^^^ -~22974~^~2200~^~Chicken, nuggets, dark and white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,DK & WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^~Y~^^0^^^^^ -~22975~^~2200~^~Chicken, nuggets, white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^^^0^^^^^ -~22976~^~2200~^~Ravioli, cheese with tomato sauce, frozen, not prepared, includes regular and light entrees~^~RAVIOLI,CHS W/ TOMATO SAU,FRZ,NOT PREP,INCL REG & LT ENTREES~^^^~Y~^^0^^^^^ -~22977~^~2200~^~Lasagna with meat sauce, frozen, prepared~^~LASAGNA W/ MEAT SAU,FRZ,PREP~^^^~Y~^^0^^6.25^^^ -~22978~^~2200~^~Chicken tenders, breaded, frozen, prepared~^~CHICKEN TENDERS,BREADED,FRZ,PREP~^^^~Y~^^0^^^^^ -~22998~^~2200~^~RICE-A-RONI, chicken flavor, unprepared~^~RICE-A-RONI,CHICK FLAVOR,UNPREP~^^^~Y~^^0^^^^^ -~22999~^~2200~^~Rice and vermicelli mix, chicken flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,CHICK FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^^^ -~23000~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STK,BNLS,LN & FAT,0" FAT,ALL GRDS,R~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23001~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87 -~23002~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,PRTRHS STK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87 -~23003~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 24%~^24^^6.25^4.27^9.02^3.87 -~23004~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,L & F,1/8" F,SEL,CKD,GRILLED~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23005~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87 -~23006~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BNE STEK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~T-Bone Steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87 -~23007~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87 -~23008~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN & FAT,1/8" FAT,SEL,CKD,GRLLD~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue 32%~^32^^6.25^4.27^9.02^3.87 -~23030~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23031~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23032~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat , trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT 0" FAT,SEL,RAW~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23033~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23034~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23035~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,SHDR TNDR,MED,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23036~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1164 or #1030, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23037~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHLDR CLOD,TOP & CNTR ,STK,LN & FAT,0" FAT,CH,RAW~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23038~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,SHLDR CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,CH,CKD,GRLD~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23039~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD, TOP & CNTR,STK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23040~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87 -~23041~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23042~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23043~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23044~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23045~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.24^4.27^9.02^3.87 -~23046~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23047~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23048~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23049~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23050~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23051~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23052~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23053~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHK,CLD,SHLDR TNDR,MEDALLION,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23054~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHK,CLD,SHDR TNDR,MED,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87 -~23055~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23056~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCK,TIP SIDE,STK,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87 -~23057~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHUCK,CLOD,TOP & CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23058~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHCK,CLOD,SHLDR TOP&CNTR STKS,LN & FT,0",ALL GRDS,GRLD~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23059~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23060~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHUCK,CLOD,TOP BLADE,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87 -~23061~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23062~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87 -~23063~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL,RAW~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23064~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23065~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,SHLDR TENDER,MED,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1164 or #1030, Teres Major, Beef Value Cut, Tender Medallions~^^^^0^^6.25^4.27^9.02^3.87 -~23066~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23067~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 19%~^25^^6.25^^^ -~23068~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^ -~23069~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 18%~^27^^6.25^^^ -~23070~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,CKD,B~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 16%~^24^^6.25^^^ -~23071~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BF,CHK EYE CNTRY-STL RIBS,BNLS,LN,0" FAT,ALL GRDS, CKD, BRSD~^~Beef, Chuck, Bnls, Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23072~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 14%~^22^^6.25^^^ -~23073~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%, seam fat 13%~^23^^6.25^^^ -~23074~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE COUNTRY-STYLE RIBS,BNLS,LN,0" FAT,ALL GRDS, RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 13%~^22^^6.25^^^ -~23075~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%, seam fat 18%~^24^^6.25^^^ -~23076~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23077~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Beef, Chuck, Chuch Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 18%~^23^^6.25^^^ -~23078~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, ChuckEye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23079~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^ -~23080~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^ -~23081~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23082~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%, seam fat 3%~^10^^6.25^^^ -~23083~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^ -~23084~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^ -~23085~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 9%~^14^^6.25^^^ -~23086~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TENDER STK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 8%~^14^^6.25^^^ -~23087~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 1%~^6^^6.25^^^ -~23088~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23089~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^ -~23090~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23091~^~1300~^~Beef, chuck for stew, separable lean and fat, select, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23092~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23093~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23094~^~1300~^~Beef, chuck for stew, separable lean and fat, select, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^ -~23095~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,RAW~^~URMIS #110~^^^^0^^6.25^^^ -~23096~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^ -~23097~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%, seam fat 13%~^17^^6.25^^^ -~23098~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL STEAK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 15%~^20^^6.25^^^ -~23099~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,UND BLD, POT RST,BNL,LN & FAT,0" FAT,ALL GR,CKD,BR~^~Beef Chuck Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^^^ -~23100~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLES,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~connective tissue 6%, Separable fat 20%~^26^^6.25^^^ -~23101~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2008~^^^~Bone and connective tissue 16%, separable fat 16%~^32^^6.25^^^ -~23102~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST/STK,BNL,LN & FT,0" FT, All GR, raw~^~URMIS #1151/1158, Beef Chuck, Under Blade Pot Roast/Steak~^^^~Connective tissue 6%~^6^^6.25^^^ -~23103~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BL POT RST OR STK,BNL,LN & FAT,0" FAT, CH, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23104~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL POT RST/STEAK,BNL,LN & FAT,0" FAT, SEL, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^ -~23105~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FAT, ALL GR, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steaks), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23106~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CT,LN&FT, 0" FT,CH,CKD,GLD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23107~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UNDBL CNTR STK,BNL,DEN CT,LN&FAT, 0" FT,SEL,CKD,GLD~^~Beef Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23108~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FT,0"FT,All Gr, RW~^~Beef, Chuck. Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23109~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UNDBLE CNTR STK,BNL,DENR CUT,LN & FAT,0"FAT, CH, RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^ -~23110~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CUT,LN & FT,0"FT, SEL,RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^ -~23111~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23112~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^ -~23113~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",ALL GRD,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23114~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",CH,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^ -~23115~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHCK EYE RST,BNLS,A BF RST,LN & FAT,0",SEL,C,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^ -~23116~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23117~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^ -~23118~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%~^4^^6.25^^^ -~23119~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TNDR STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23120~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Mock Tender Staek, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^ -~23121~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23122~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,MOCK TEN STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23123~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^ -~23124~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^ -~23125~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRS~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23126~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23127~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23128~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23129~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^ -~23130~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^ -~23131~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23132~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^ -~23133~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%~^7^^6.25^^^ -~23134~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK EYE CTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23135~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK EYE CNTRY-STYL RIBS,BNL,LN & FAT,0" FAT,CHOICE, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23136~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23137~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^ -~23138~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,CHOICE,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^ -~23139~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%~^10^^6.25^^^ -~23140~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GR~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23141~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%~^6^^6.25^^^ -~23142~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^ -~23143~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23144~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^ -~23145~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%~^9^^6.25^^^ -~23146~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN,1/8" FT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23147~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1193~^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^ -~23148~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLES,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2018~^^^~connective tissue 5%, Separable fat 22%~^27^^6.25^^^ -~23149~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1203~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23150~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 14%, Separable fat 21%~^35^^6.25^^^ -~23151~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%, Separable fat 22%~^36^^6.25^^^ -~23152~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%, Separable fat 20%~^35^^6.25^^^ -~23153~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 20%~^24^^6.25^^^ -~23154~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2018/2009~^^^~Connective tissue 4%, Separable fat 21%~^25^^6.25^^^ -~23155~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1203/1194~^^^~Connective tissue 3%, Separable fat 18%~^21^^6.25^^^ -~23156~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23157~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRLD~^~URMIS #2012~^^^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^ -~23158~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILD~^~URMIS #1197~^^^~Bone and connective tissue 20%, Separable fat 19%~^39^^6.25^^^ -~23159~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 19%~^24^^6.25^^^ -~23160~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2009~^^^~connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23161~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%, Separable fat 18%~^23^^6.25^^^ -~23162~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLE,INSDE SKRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23163~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23164~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23165~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^ -~23166~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,CKD,GRILD~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^ -~23167~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 5%~^6^^6.25^^^ -~23168~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLES,OTSDE SKIRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 0.5%, Separable fat 3.5%~^4^^^^^ -~23169~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23170~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2428~^^^~Connective tissue 0.3%, Separable fat 3.3%~^4^^6.25^^^ -~23171~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%, Separable fat 8%~^9^^6.25^^^ -~23172~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,CKD,GRLD~^~URMIS #1613~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23173~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1613~^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^ -~23174~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,CKD,GRI~^^^^~Connective tissue 5%, Separable fat 16%~^26^^6.25^^^ -~23175~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 17%~^24^^6.25^^^ -~23176~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #2024~^^^~Connective tissue 5%, Separable fat 18%~^27^^6.25^^^ -~23177~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%, Separable fat 18%~^25^^6.25^^^ -~23178~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1209~^^^~Connective tissue 5%, Separable fat 13%~^24^^6.25^^^ -~23179~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%, Separable fat 14%~^22^^6.25^^^ -~23180~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%, Separable fat 8%~^69^^6.25^^^ -~23181~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%, Separable fat 12%~^64^^6.25^^^ -~23182~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%, Separable fat 9%~^69^^6.25^^^ -~23183~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%, Separable fat 13%~^66^^6.25^^^ -~23184~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 62%, Separable fat 7%~^69^^6.25^^^ -~23185~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%, Separable fat 11%~^63^^6.25^^^ -~23186~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,CHOC,CKD,GRL~^~URMIS #2012~^^^~Bone and connective tissue 19%~^19^^6.25^^^ -~23187~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,SEL,CKD,GRLD~^~URMIS #1197~^^^~Bone and connective tissue 20%~^20^^6.25^^^ -~23188~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BN-IN,LIP-ON,LN & FT,1/8" FT,AL GDS,CKD,GRL~^^^~Y~^~Bone and connective tissue 19%~^19^^6.25^^^ -~23189~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FT,CHC,CKD,RST~^~URMIS #2008~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23190~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RST~^~URMIS #1193~^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23191~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LP-ON,LN & FT,1/8" FT,AL GRD,CKD,RST~^^^^~Bone and connective tissue 16%~^16^^6.25^^^ -~23192~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,IP-ON,LN & FT,1/8" FT,AL GRDS,RW~^^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23193~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,CHC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%~^14^^6.25^^^ -~23194~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%~^15^^6.25^^^ -~23195~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,GRD~^~URMIS #2018~^^^~Connective tissue 6%~^6^^6.25^^^ -~23196~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,GILD~^~URMIS #1203~^^^~Connective tissue 6%~^6^^6.25^^^ -~23197~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FT,1/8" FT,AL GRD,CKD,GRLD~^^^~Y~^~Connective tissue 6%~^6^^6.25^^^ -~23198~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLS,LP-ON,LN & FT,1/8" FT,ALL GRD,CKD,RSTD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23199~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,RSTD~^~URMIS #2009~^^^~Connective tissue 6%~^6^^6.25^^^ -~23200~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%~^5^^6.25^^^ -~23201~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLS,LIP-ON,LN & FAT,1/8" FAT,AL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23202~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2018/2009~^^^~Connective tissue 4%~^4^^6.25^^^ -~23213~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1203/1194~^^^~Connective tissue 3%~^3^^6.25^^^ -~23214~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,INSD SKRT,LN & FAT,0" FAT,ALL GRD,CKD,GRL~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23215~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLSS,INSDE SKRT,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23216~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23217~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,INSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23218~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,CHOC,RW~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^ -~23219~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^ -~23220~^~1300~^~Beef, ground, unspecified fat content, cooked~^~BEEF,GROUND,UNSPEC FAT CONTENT,CKD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23221~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,AL GRD,CKD,GRLD~^^^^^0^^6.25^^^ -~23222~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,CHC,CKD,GRLD~^~URMIS #2428~^^^^0^^6.25^^^ -~23223~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLS,OTSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRILD~^~URMIS #1613~^^^^0^^6.25^^^ -~23224~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,OUTSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23225~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKRT,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%~^1^^6.25^^^ -~23226~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN & FAT,0" FAT,SEL,RW~^~URMIS #1613~^^^~Connective tissue 1%~^1^^6.25^^^ -~23227~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP OF,LN & FAT,0" FT,AL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23228~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2024~^^^~Connective tissue 5%~^5^^6.25^^^ -~23229~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEK,BNLES,LIP OFF,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1209~^^^~Connective tissue 5%~^5^^6.25^^^ -~23230~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,ALL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^ -~23231~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%~^4^^6.25^^^ -~23232~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%~^3^^6.25^^^ -~23233~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%~^61^^6.25^^^ -~23234~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%~^60^^6.25^^^ -~23235~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 63%~^62^^6.25^^^ -~23236~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23237~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%~^53^^6.25^^^ -~23238~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%~^52^^6.25^^^ -~23239~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TOP SIRLIN PETITE RST,BNLS,LN,0" FAT,CHOC,CKD,RSTD~^~Gluteus medius, URMIS #2136~^^^~Connective tissue 6%, Separable fat 4%~^10^^6.25^^^ -~23240~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN PETITE RST/FILET,BNLS,LN,0" FAT,CHC,RW~^~URMIS #2136, Gluteus medius, URMIS #2138~^^^~Connective tissue 6%, Separable fat 5%~^11^^6.25^^^ -~23241~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN,1/8" FAT,AL GRDS,CKD,GLD~^~Biceps femoris~^^^~Connective tissue 8%, Separable fat 13%~^21^^6.25^^^ -~23242~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLON CAP STK,BNLS,LN,1/8" FAT,CHOIC,CKD,GRLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 14%~^22^^6.25^^^ -~23243~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,SEL,CKD,GRLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23244~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Biceps femoris~^^^~Connective tissue 7%, Separable fat 13%~^20^^6.25^^^ -~23245~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,CHOIC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23246~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23247~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 10%, Separable fat 9%~^19^^6.25^^^ -~23248~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS #2137~^^^~Connective tissue 12%, Separable fat 7%~^19^^6.25^^^ -~23249~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%, Separable fat 12%~^20^^6.25^^^ -~23250~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLSS,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%, Separable fat 7%~^16^^6.25^^^ -~23251~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%, Separable fat 6%~^14^^6.25^^^ -~23252~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%, Separable fat 7%~^17^^6.25^^^ -~23253~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 11%, Separable fat 9%~^20^^6.25^^^ -~23254~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,CHOC,RAW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%, Separable fat 7%~^20^^6.25^^^ -~23255~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,SEL,RAW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^ -~23256~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLS,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^ -~23257~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILD~^~URMIS #2138~^^^~Connective tissue 5%~^5^^6.25^^^ -~23258~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1323~^^^~Connective tissue 5%~^5^^6.25^^^ -~23259~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TOP SIRLON PTIT RST,BLS,LN,0" FAT,AL GRDS,CKD,RSTD~^~Gluteus medius~^^^~Connective tissue 6%~^6^^6.25^^^ -~23260~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TOP SIRLOIN PETITE RST,BNLS,LN,0" FAT,SEL,CKD,RSTD~^~Gluteus medius, URMIS #1321~^^^~Connective tissue 6%~^6^^6.25^^^ -~23261~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP SRLN PETIT RST/FILT,BNLS,LN,0" FAT,AL GRDS,RAW~^~Gluteus medius~^^^~Connective tissue 7%~^7^^6.25^^^ -~23262~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP SIRLON PETITE RST/FILET,BNLS,LN,0" FAT,SEL,RAW~^~URMIS #1323, Gluteus medius, URMIS #1321~^^^~Connective tissue 7%~^7^^6.25^^^ -~23263~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23264~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,CHOIC,RAW~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23265~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,SEL,RAW~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 5%~^5^^6.25^^^ -~23266~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Spinalis dorsi~^^^~Connective tissue 10%~^10^^6.25^^^ -~23267~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 10%~^10^^6.25^^^ -~23268~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 10%~^10^^6.25^^^ -~23269~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Spinalis dorsi~^^^~Connective tissue 12%~^12^^6.25^^^ -~23270~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 12%~^12^^6.25^^^ -~23271~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 12%~^12^^6.25^^^ -~23272~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 6%~^6^^6.25^^^ -~23273~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2068~^^^~Connective tissue 6%~^6^^6.25^^^ -~23274~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1253~^^^~Connective tissue 6%~^6^^6.25^^^ -~23275~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^ -~23276~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^ -~23277~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 6%~^6^^6.25^^^ -~23278~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SRL CP STK,BNLS,LN & FT,1/8" FT,ALGDS,CKD,GRLD~^~Biceps femoris~^^^~Connective tissue 8%~^8^^6.25^^^ -~23279~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,CHC,CKD,GLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23280~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,SEL,CKD,GLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%~^8^^6.25^^^ -~23281~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN & FAT,1/8" FAT,AL GDS,RW~^~Biceps femoris~^^^~Connective tissue 7%~^7^^6.25^^^ -~23282~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,CHC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^ -~23283~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%~^7^^6.25^^^ -~23284~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLS,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23285~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2137~^^^~Connective tissue 12%~^12^^6.25^^^ -~23286~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%~^9^^6.25^^^ -~23287~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PET RST,BNLS,LN & FAT,1/8" FAT,AL GDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%~^9^^6.25^^^ -~23288~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETI RST,BNLS,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%~^8^^6.25^^^ -~23289~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLS,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%~^10^^6.25^^^ -~23290~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETIT RST/FILT,BNS,LN & FAT,1/8" FAT,AL GRD,RW~^~Longissimus dorsi~^^^~Connective tissue 11%~^11^^6.25^^^ -~23291~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%~^13^^6.25^^^ -~23292~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%~^8^^6.25^^^ -~23293~^~1300~^~Beef, Australian, imported, grass-fed, ground, 85% lean / 15% fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,GROUND,85% LN / 15% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23294~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,LOIN,TENDERLN STK/RST,BNLESS,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^ -~23295~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TENLN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 3%~^3^^6.25^^^ -~23296~^~1300~^~Beef, Australian, imported, grass-fed, external fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^ -~23297~^~1300~^~Beef, Australian, imported, grass-fed, seam fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,SEAM FAT,RAW~^^^^^0^^6.25^^^ -~23298~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23299~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 4/5, raw~^~BEEF,AUST,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^ -~23300~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 9, raw~^~BEEF,AUST,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23301~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 9, raw~^~BEEF,AUSTRALIAN,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^ -~23302~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,TNDERLN STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23303~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,TOP LOIN STK/RST,BNLESS,LN,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 7%, Separable fat 16%~^23^^6.25^^^ -~23304~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AU,IMP,WGU,TDLN STK/RST,BNLES,LN & FAT, MRB SCR 4/5,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^ -~23305~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED, TOP LOIN STK/RST,BNLESS,LN FAT,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 7%~^7^^^^^ -~23306~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,TOP SIRLN CP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%, separable fat 1%~^3^^6.25^^^ -~23307~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RIBEYE STK/RST LIP-ON,BNLESS,LN,RAW~^~URMIS #1194, URMIS# 1203~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23308~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,BTTM RND STK/RST,BNLESS,LN,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^^^ -~23309~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RD,TP RND CAP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1553, URMIS #1454~^^^~Connective tissue 1%, separable fat 1%~^2^^6.25^^^ -~23310~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,LOIN,TENLN STK/RST,BNLESS,LN, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, separable fat 3%~^3^^6.25^^^ -~23311~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TOP LN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~connective tissue 6%, separable fat 17%~^23^^6.25^^^ -~23312~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLESS,LN,MARBLE SCORE 9,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^ -~23313~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLENDRIB STK/RST,BNLESS, MRB SCR 4/5,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 22%~^26^^6.25^^^ -~23314~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SML END RIB STK/RST,BNLESS,MRB SCR 9,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 24%~^28^^6.25^^^ -~23315~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP SIRLN CP-OFFSTK/RST,BNLES,LN&FAT,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%~^2^^^^^ -~23316~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,RBEYE STK/RST LIP-ON,BNLESS,LN&FAT,RAW~^~URMIS #1194, URMIS #1203~^^^~Connective tissue 7%~^7^^^^^ -~23317~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,BTTM RND STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%~^3^^^^^ -~23318~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP RNDCAP-OFF STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1553, URMIS #1454~^^^^0^^^^^ -~23319~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLES,LN & FAT,MRB SCR4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%~^6^^^^^ -~23320~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,LN & FAT,MARBLE SCORE9,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 6%~^6^^^^^ -~23321~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLES,LN&FAT,MRBSCR4/5,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23322~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLESS,LN&FAT,MRB SCR9,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^ -~23323~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AU,IMP,WGU,TNLN, STK/RST,BNLESS,LN & FAT, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^^0^^^^^ -~23324~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23325~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2368, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23326~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1553, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23327~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23328~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2366, Top Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23329~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 1%~^1^^6.25^^^ -~23330~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23331~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2295, Eye of Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23332~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 1%~^1^^6.25^^^ -~23333~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FT,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23334~^~1300~^~Beef, round, eye of round steak, boneless separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2296, Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^ -~23335~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 1%~^1^^6.25^^^ -~23336~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23337~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%~^1^^6.25^^^ -~23338~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 2%~^2^^6.25^^^ -~23339~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,ALLGRD,RW~^~Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^~Y~^~Connective tissue 9%~^9^^6.25^^^ -~23340~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23341~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,SEL,RW~^~Boneless Strip Steak, URMIS # 1404~^^^~Connective tissue 9%~^9^^6.25^^^ -~23342~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,L & F,0" FAT,ALL GRDS,RAW~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^^^ -~23343~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23344~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^ -~23345~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TNDRLN RST,BNLESS,L & F,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23346~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,L & F,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2201, Tenderloin roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23347~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1386, Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^ -~23348~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLS,LN&FAT,0" FAT,ALLGRD,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^^^ -~23349~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2366, Top Round Roast~^^^^0^^6.25^^^ -~23350~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1551, Top Round Roast~^^^^0^^6.25^^^ -~23351~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23352~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RD STEAK,BNLESS,L & F,0" FT,CHOIC,CK,GRLLED~^~URMIS # 2296, Eye of Round Steak~^^^^0^^6.25^^^ -~23353~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~Eye of Round Steak, URMIS # 1481~^^~Y~^^0^^6.25^^^ -~23354~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^ -~23355~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Steak, URMIS # 2368~^^^~Connective tissue 1%~^1^^6.25^^^ -~23356~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Steak, URMIS # 1553~^^^~Connective tissue 2%~^2^^6.25^^^ -~23357~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23358~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Roast, URMIS # 2366~^^^~Connective tissue 2%~^2^^6.25^^^ -~23359~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 2%~^2^^6.25^^^ -~23360~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^ -~23361~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Roast, URMIS # 2295~^^^~Connective tissue 2%~^2^^6.25^^^ -~23362~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 2%~^2^^6.25^^^ -~23363~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 2%~^2^^6.25^^^ -~23364~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Steak, URMIS # 2296~^^^~Connective tissue 2%~^2^^6.25^^^ -~23365~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 2%~^2^^6.25^^^ -~23366~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23367~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^ -~23368~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 1%, separable fat 2%~^3^^6.25^^^ -~23369~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Connective tissue 8%, separable fat 5%~^13^^6.25^^^ -~23370~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 6%~^14^^6.25^^^ -~23371~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^^^ -~23372~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Fillet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 2%~^2^^6.25^^^ -~23373~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23374~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^ -~23375~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Separable fat 1%~^1^^6.25^^^ -~23376~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Tenderloin Roast, URMIS # 2201~^^^~Separable fat 1%~^1^^6.25^^^ -~23377~^~1300~^~Beef, loin, tenderloin roast, separable lean only, boneless, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,LN,BNLESS,0" FAT,SEL,CKD,RSTD~^~Tenderloin Roast, URMIS # 1386~^^^~Separable fat 1%~^1^^6.25^^^ -~23378~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23379~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Top Round Roast, URMIS # 2366~^^^^0^^6.25^^^ -~23380~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Top Round Roast, URMIS # 1551~^^^^0^^6.25^^^ -~23381~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FT,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^ -~23382~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Eye of Round Steak, URMIS # 2296~^^^^0^^6.25^^^ -~23383~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Eye of Round Steak, URMIS # 1481~^^^^0^^6.25^^^ -~23384~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^21^^^^^ -~23385~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^22^^6.25^^^ -~23386~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~Beef, ln, top ln stk, bneless lip-on, 1/8" fat all grdes raw~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^22^^6.25^^^ -~23387~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LN,TP LN STEAK,BNLESS,LIP-ON,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansa City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23388~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LN,TP LN STK,BNLESS,LIPON,LN & FAT,1/8" FAT,ALL GRDS,RW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^ -~23389~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,CHOIC,GRILLED~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23390~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,SeL, CK GRLED~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%~^9^^6.25^^^ -~23391~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8 FAT,A GRDS, GRILLED~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^ -~23392~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LON,TP LON STK,BNLSS,LIP-ON,LN,1/8" FAT,CHC,CKD,GRILLD~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 14%~^22^^6.25^^^ -~23393~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLD~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%, separable fat 12%~^21^^^^^ -~23394~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLSS,LIP-ON,LN,1/8" FAT,ALL GRDS,,GRLLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 13%~^21^^^^^ -~23395~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TP LN STK,BNLESS,LIP-ON,L&F,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^ -~23397~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%, Separable fat 7%~^12^^6.25^^^ -~23398~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN,RAW~^^^^~Bone and Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23399~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,CKD,BRSD~^^^^~Separable fat 29%~^29^^6.25^^^ -~23401~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,RAW~^^^^~Separable fat 27%~^27^^6.25^^^ -~23402~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23403~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN,RAW~^^^^~Separable fat 6%~^6^^6.25^^^ -~23404~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,RAW~^^^^~Separable fat 8%~^8^^6.25^^^ -~23405~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23406~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN,CKD,FAST RSTD~^^^^~Separable fat 9%~^9^^6.25^^^ -~23407~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN,RAW~^^^^~Separable fat 11%~^11^^6.25^^^ -~23408~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN,CKD,SLOW RSTD~^^^^^0^^6.25^^^ -~23409~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, raw~^~BEEF,NZ,IMP,EYE RND,LN,RAW~^^^^~Separable fat 2%~^2^^6.25^^^ -~23410~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN,CKD,BRSD~^^^^~Separable fat 3%~^3^^6.25^^^ -~23411~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, raw~^~BEEF,NZ,IMP,FLANK,LN,RAW~^^^^~Separable fat 3%~^3^^6.25^^^ -~23412~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN,CKD,BRSD~^^^^~Separable fat 5%~^5^^6.25^^^ -~23413~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, raw~^~BEEF,NZ,IMP,FLAT,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23414~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,CKD,BLD~^^^^~Separable fat 15%~^15^^6.25^^^ -~23415~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,RAW~^^^^~Separable fat 12%~^12^^6.25^^^ -~23416~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN,CKD,BRSD~^^^^~Connective tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23417~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, raw~^~BEEF,NZ,IMP,HIND SHIN,LN,RAW~^^^^~Conective tissue .91%, Separable fat 6%~^7^^6.25^^^ -~23418~^~1300~^~Beef, New Zealand, imported, inside, raw~^~BEEF,NZ,IMP,INSIDE,RAW~^^^^~Connective tissue .55% Separable fat 2%~^3^^6.25^^^ -~23419~^~1300~^~Beef, New Zealand, imported, intermuscular fat, cooked~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^^^6.25^^^ -~23420~^~1300~^~Beef, New Zealand, imported, intermuscular fat, raw~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^^^6.25^^^ -~23421~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,CKD,BLD~^^^^~Connective tissue 20%~^20^^6.25^^^ -~23422~^~1300~^~Beef, New Zealand, imported, knuckle, cooked, fast fried~^~BEEF,NZ,IMP,KNUCKLE,CKD,FAST FRIED~^^^^~Connective tissue .33%, Separable fat 5%~^5^^6.25^^^ -~23423~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,RAW~^^^^~Connective tissue 10%~^10^^6.25^^^ -~23424~^~1300~^~Beef, New Zealand, imported, variety meats and by-products liver, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS LIVER,CKD,BLD~^^^^~Connective tissue 2%~^2^^6.25^^^ -~23425~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, liver, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,LIVER,RAW~^^^^~Connective tissue 3%~^3^^6.25^^^ -~23426~^~1300~^~Beef, New Zealand, imported, manufacturing beef, cooked, boiled~^~BEEF,NZ,IMP,MANUFACTURING BF,CKD,BLD~^^^^^0^^6.25^^^ -~23427~^~1300~^~Beef, New Zealand, imported, manufacturing beef, raw~^~BEEF,NZ,IMP,MANUFACTURING BF,RAW~^^^^^0^^6.25^^^ -~23428~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN,CKD,BRSD~^^^^^0^^6.25^^^ -~23429~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN,RAW~^^^^~Separable fat 4%~^4^^6.25^^^ -~23430~^~1300~^~Beef, New Zealand, imported, ribs prepared, cooked, fast roasted~^~BEEF,NZ,IMP,RIBS PREP,CKD,FAST RSTD~^^^^~Bone and Connective tissue 15%, Separable fat 10%~^25^^6.25^^^ -~23431~^~1300~^~Beef, New Zealand, imported, ribs prepared, raw~^~BEEF,NZ,IMP,RIBS PREP,RAW~^^^^~Bone and connective tissue 7%, Separable fat 15%~^22^^6.25^^^ -~23432~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23433~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN,CKD,FAST FRIED~^^^^~Separable fat 14%~^14^^6.25^^^ -~23434~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN,RAW~^^^^~Separable fat 16%~^16^^6.25^^^ -~23435~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, cooked~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^ -~23436~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, raw~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^ -~23437~^~1300~^~Beef, New Zealand, imported, sweetbread, cooked, boiled~^~BEEF,NZ,IMP,SWEETBREAD,CKD,BLD~^^^^~Conncetive tissue 4%, Separable fat 4%~^8^^^^^ -~23438~^~1300~^~Beef, New Zealand, imported, sweetbread, raw~^~BEEF,NZ,IMP,SWEETBREAD,RAW~^^^^~Conncetive tissue 2%, Separable fat 5%~^7^^6.25^^^ -~23439~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^ -~23440~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,RAW~^^^^^0^^^^^ -~23441~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^ -~23442~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,CKD,BLD~^^^^~Connective tissue 9%, Separable fat 2%~^11^^6.25^^^ -~23443~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue 17%, Separable fat 3%~^20^^6.25^^^ -~23444~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE CKD,BLD~^^^^~Separable fat 8%~^8^^6.25^^^ -~23445~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe uncooked, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE UNCKD,RAW~^^^^~Separable fat 10%~^10^^6.25^^^ -~23446~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%~^5^^^^^ -~23447~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,RAW~^^^^~Bone and Connective tissue 2%~^2^^^^^ -~23448~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23449~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,RAW~^^^^^0^^^^^ -~23450~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23451~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,RAW~^^^^^0^^^^^ -~23452~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23453~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23454~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^ -~23455~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,RAW~^^^^^0^^^^^ -~23456~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN & FAT,CKD,SLOW RSTD~^^^^^0^^^^^ -~23457~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, raw~^~BEEF,NZ,IMP,EYE RND,LN & FAT,RAW~^^^^^0^^^^^ -~23458~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23459~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, raw~^~BEEF,NZ,IMP,FLANK,LN & FAT,RAW~^^^^^0^^^^^ -~23460~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23461~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, raw~^~BEEF,NZ,IMP,FLAT,LN & FAT,RAW~^^^^^0^^^^^ -~23462~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,CKD,BRSD~^^^^~Connective tissue 2%~^2^^^^^ -~23463~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, raw~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,RAW~^^^^~Connective tissue 1%~^1^^6.25^^^ -~23464~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,CKD,BRSD~^^^^^0^^^^^ -~23465~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23466~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^ -~23467~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,RAW~^^^^^0^^^^^ -~23468~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23469~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23470~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^ -~23471~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^ -~23472~^~1300~^~Beef, ground, 93% lean meat / 7% fat, raw~^~BEEF,GROUND,93% LN MEAT / 7% FAT~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23473~^~1300~^~Beef, ground, 93% lean meat / 7% fat, patty, cooked, broiled~^~BEEF,GROUND,93% LN MEAT / 7% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23474~^~1300~^~Beef, ground, 93% lean meat /7% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,93% LN MEAT /7% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23475~^~1300~^~Beef, ground, 93% lean meat / 7% fat, loaf, cooked, baked~^~BEEF,GROUND,93% LN MEAT / 7% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23476~^~1300~^~Beef, ground, 93% lean meat / 7% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,93% LN MEAT / 7% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23477~^~1300~^~Beef, ground, 97% lean meat / 3% fat, raw~^~BEEF,GROUND,97% LN MEAT / 3% FAT,RAW~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23478~^~1300~^~Beef, ground, 97% lean meat / 3% fat, patty, cooked, broiled~^~BEEF,GROUND,97% LN MEAT / 3% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23479~^~1300~^~Beef, ground, 97% lean meat /3% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,97% LN MEAT /3% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23480~^~1300~^~Beef, ground, 97% lean meat / 3% fat, loaf, cooked, baked~^~BEEF,GROUND,97% LN MEAT / 3% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23481~^~1300~^~Beef, ground, 97% lean meat / 3% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,97% LN MEAT / 3% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23482~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23483~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23484~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,CKD~^^^^~No component data available~^0^^^^^ -~23485~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^ -~23490~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23491~^~1300~^~Beef composite, separable lean only, trimmed to 1/8" fat, choice, cooked~^~BEEF COMP,LN,1/8" FAT,CHOIC,CKD~^^^^~No component data available~^^^^^^ -~23494~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23495~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^ -~23496~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23497~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23498~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,CKD~^^^^~No component data available~^^^^^^ -~23499~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,RAW~^^^^~No component data available~^^^^^^ -~23509~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%, separable fat, 0%~^4^^6.25^4.27^9.02^3.87 -~23511~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN ONLY,TO 0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%, separable fat, 2%~^17^^6.25^4.27^9.02^3.87 -~23513~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, raw~^~BEEF,CHUCK,CLOD RST,LN,1/4" FAT,ALL GRDS,RAW~^^^^~Bone and heavy connective tissue, 4%, separable fat, 5%~^9^^6.25^4.27^9.02^3.87 -~23514~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%, separable fat, 6%~^10^^6.25^4.27^9.02^3.87 -~23515~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 11%~^19^^6.25^4.27^9.02^3.87 -~23516~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87 -~23517~^~1300~^~Beef, chuck, clod steak, separable lean only, trimmed to 1/4" fat, all grades, cooked, braised~^~BEEF,CHUCK,CLOD STEAK,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 13%~^21^^6.25^4.27^9.02^3.87 -~23519~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,CHCK,MCK TENDER STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23521~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%~^3^^6.25^4.27^9.02^3.87 -~23523~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%~^13^^6.25^4.27^9.02^3.87 -~23525~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%~^16^^6.25^4.27^9.02^3.87 -~23528~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23531~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87 -~23533~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23536~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23540~^~1300~^~Beef, plate, inside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,SKIRT STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23541~^~1300~^~Beef, plate, outside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87 -~23545~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SIRLOIN,TRI-TIP STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87 -~23547~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23549~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%~^15^^6.25^4.27^9.02^3.87 -~23552~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87 -~23554~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87 -~23557~^~1300~^~Beef, ground, 95% lean meat / 5% fat, raw~^~BEEF,GROUND,95% LN MEAT / 5% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23558~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23559~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23560~^~1300~^~Beef, ground, 95% lean meat / 5% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,95% LN MEAT / 5% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23561~^~1300~^~Beef, ground, 95% lean meat / 5% fat, loaf, cooked, baked~^~BEEF,GROUND,95% LN MEAT / 5% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23562~^~1300~^~Beef, ground, 90% lean meat / 10% fat, raw~^~BEEF,GROUND,90% LN MEAT / 10% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23563~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23564~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23565~^~1300~^~Beef, ground, 90% lean meat / 10% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,90% LN MEAT / 10% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23566~^~1300~^~Beef, ground, 90% lean meat / 10% fat, loaf, cooked, baked~^~BEEF,GROUND,90% LN MEAT / 10% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23567~^~1300~^~Beef, ground, 85% lean meat / 15% fat, raw (Includes foods for USDA's Food Distribution Program)~^~BEEF,GROUND,85% LN MEAT / 15% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23568~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,BRLD~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23569~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23570~^~1300~^~Beef, ground, 85% lean meat / 15% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,85% LN MEAT / 15% FAT,CRUMBLES,CKD,PAN-BROWNED~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23571~^~1300~^~Beef, ground, 85% lean meat / 15% fat, loaf, cooked, baked~^~BEEF,GROUND,85% LN MEAT / 15% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23572~^~1300~^~Beef, ground, 80% lean meat / 20% fat, raw~^~BEEF,GROUND,80% LN MEAT / 20% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23573~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,BRLD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23574~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,PAN-BROILED~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23575~^~1300~^~Beef, ground, 80% lean meat / 20% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,80% LN MEAT / 20% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23576~^~1300~^~Beef, ground, 80% lean meat / 20% fat, loaf, cooked, baked~^~BEEF,GROUND,80% LN MEAT / 20% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87 -~23577~^~1300~^~Beef, ground, 75% lean meat / 25% fat, raw~^~BEEF,GROUND,75% LN MEAT / 25% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23578~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23579~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23580~^~1300~^~Beef, ground, 75% lean meat / 25% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,75% LN MEAT / 25% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23581~^~1300~^~Beef, ground, 75% lean meat / 25% fat, loaf, cooked, baked~^~BEEF,GROUND,75% LN MEAT / 25% FAT,LOAF,CKD,BKD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87 -~23582~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,RAW~^^^^~Bone and connective tissue 5%, sep fat 19%~^24^^6.25^4.27^9.02^3.87 -~23583~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 2%, sep fat 19%~^21^^6.25^4.27^9.02^3.87 -~23584~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 3.26%,separable fat, 11.04%~^14^^6.25^4.27^9.02^3.87 -~23585~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 9%, sep fat 15%~^24^^6.25^4.27^9.02^3.87 -~23586~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,CKD,BRLD~^^^^~Bone and connective tissue 7%, sep fat 17%~^24^^6.25^4.27^9.02^3.87 -~23587~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388~^^^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23588~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 4.85%, separable fat, 11.31%~^16^^6.25^4.27^9.02^3.87 -~23589~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 13%~^25^^6.25^4.27^9.02^3.87 -~23590~^~1300~^~Beef, round, bottom round , roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^~Y~^~Bone and connective tissue 3.32%, separable fat 9.02%~^12^^6.25^4.27^9.02^3.87 -~23591~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23592~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23593~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue 4.61%, separable fat 7.21%~^12^^6.25^4.27^9.02^3.87 -~23594~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2.49%, separable fat 10.55%~^13^^6.25^^^ -~23595~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 1%, sep fat 19%~^20^^6.25^4.27^9.02^3.87 -~23596~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23597~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23598~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 1.21%, separable fat, 7.42%~^9^^6.25^4.27^9.02^3.87 -~23599~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 5%, sep fat 20%~^25^^6.25^4.27^9.02^3.87 -~23600~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue, 4.20%, separable fat, 13.37%~^18^^6.25^4.27^9.02^3.87 -~23601~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%, sep fat 18%~^20^^6.25^4.27^9.02^3.87 -~23602~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 27.87%, separable fat, 13.50%~^41^^6.25^4.27^9.02^3.87 -~23603~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23604~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,CKD~^^^^~Bone and connective tissue 2.33%, separable fat 8.89%~^11^^6.25^^^ -~23605~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 4.78%, separable fat, 6.51%~^11^^6.25^4.27^9.02^3.87 -~23606~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Bone and connective tissue, 11.91%, separable fat, 13.48%~^25^^6.25^4.27^9.02^3.87 -~23607~^~1300~^~Beef, short loin, top loin steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Bone and connective tissue 10%, separable fat 14%~^24^^6.25^4.00^9.00^4.00 -~23608~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 0.94%, separable fat, 5.51%~^6^^6.25^4.27^9.02^3.87 -~23609~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Separable fat 6%~^6^^6.25^4.27^9.02^3.87 -~23610~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 4.34%, separable fat, 12.57%~^17^^6.25^4.27^9.02^3.87 -~23611~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^~Y~^~Bone and connective tissue 3%, sep fat 13%~^16^^6.25^4.27^9.02^3.87 -~23612~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1864~^^~Y~^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87 -~23613~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87 -~23614~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue, 29.58%, separable fat, 12.85%~^42^^6.25^4.27^9.02^3.87 -~23615~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^20^^6.25^4.27^9.02^3.87 -~23616~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^~Y~^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87 -~23617~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2368~^^~Y~^~Separable fat~^6^^6.25^4.27^9.02^3.87 -~23618~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue 2.44%, separable fat 10.58%~^13^^6.25^4.27^9.02^3.87 -~23619~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue 1.37%, separable fat 8.55%~^10^^6.25^4.27^9.02^3.87 -~23620~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87 -~23621~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368~^^^~Bone and connective tissue 1%, sep fat 6%~^7^^6.25^4.27^9.02^3.87 -~23622~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^~Y~^~Bone and connective tissue 5.23%, separable fat 5.81%~^11^^6.25^4.27^9.02^3.87 -~23623~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,CHOIC,RAW~^^^^~Bone and connective tissue 5%, sep fat 21%~^26^^6.25^4.27^9.02^3.87 -~23624~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 3%, sep fat 16%~^19^^6.25^4.27^9.02^3.87 -~23625~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2237~^^~Y~^~Bone and connective tissue, 3.05%, separable fat, 14.02%~^17^^6.25^4.27^9.02^3.87 -~23626~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8"fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8"FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone and connective tissue 7%, separable fat 20%~^27^^6.25^4.27^9.02^3.87 -~23627~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 10%, separable fat 13%~^23^^6.25^4.27^9.02^3.87 -~23628~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 5%, sep fat 13%~^18^^6.25^4.27^9.02^3.87 -~23629~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237~^^~Y~^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87 -~23630~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 14%~^26^^6.25^4.27^9.02^3.87 -~23631~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1049~^^~Y~^~Bone and connective tissue 20%, sep fat 17%~^37^^6.25^4.27^9.02^3.87 -~23632~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^~Separable fat~^28^^6.25^4.27^9.02^3.87 -~23633~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue, 26.23%, separable fat, 14.12%~^40^^6.25^4.27^9.02^3.87 -~23634~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^19^^6.25^4.27^9.02^3.87 -~23635~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue 3%, sep fat 7%~^10^^6.25^4.27^9.02^3.87 -~23636~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1553~^^^~Separable fat~^7^^6.25^4.27^9.02^3.87 -~23637~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue 1.97%, separable fat 10.51%~^12^^6.25^4.27^9.02^3.87 -~23638~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 7.11%, separable fat, 18.25%~^25^^6.25^4.27^9.02^3.87 -~23640~^~1300~^~Beef, variety meats and by-products, tripe, cooked, simmered~^~BEEF,VAR MEATS & BY-PRODUCTS,TRIPE,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87 -~23646~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23647~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^^^ -~23648~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^4.27^9.02^3.87 -~23649~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23650~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87 -~23651~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 4%, sep fat 4%~^8^^6.25^4.27^9.02^3.87 -~23652~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^4.27^9.02^3.87 -~23653~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,RAW~^~URMIS # 1525~^^^~Bone and connective tissue 3%, sep fat 4%~^7^^6.25^4.27^9.02^3.87 -~23654~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23655~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^~Separable fat~^1^^6.25^4.27^9.02^3.87 -~23656~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,RAW~^^^^~Separable fat~^3^^6.25^4.27^9.02^3.87 -~23657~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87 -~23658~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~23659~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87 -~23660~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87 -~25000~^~2500~^~Snacks, popcorn, microwave, 94% fat free~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25001~^~2500~^~Snacks, popcorn, microwave, low fat~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^ -~25003~^~2500~^~Snacks, candy rolls, yogurt-covered, fruit flavored with high vitamin C~^~SNACKS,CANDY ROLLS,YOGURT-COVERED,FRUIT FLAV W/ HI VIT C~^^^~Y~^^0^^6.50^^^ -~25004~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Chewy Chocolate Peanut Bar~^~FORMULATE BAR,MAR SNACKFOO US,SNICKE MARATH CHE CHOC PNUT BA~^^^^^0^^^^^ -~25005~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON MULTIGRAIN CRUNCH BAR~^~FORM BAR,MARS SNKF US,SNICKERS MARATHON MULTIGRNCRUNCH~^^^^^0^^^^^ -~25006~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Double Chocolate Nut Bar~^~FORMULAT BAR,MARSNACKFOO US,SNICKE MARATHO DOUBL CHOC NUT BA~^^^^^0^^^^^ -~25007~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bars, peanut butter~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,PNUT BUTTER~^^^^^0^^^^^ -~25008~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Honey Nut Oat Bar~^~FORMULAT BAR,MAR SNACFOO US,SNICKER MARATHO HONE NUT OAT BAR~^^^^^0^^^^^ -~25009~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, M&M's milk chocolate~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BAR,M&M'S MILK CHOC~^^^^^0^^^^^ -~25010~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Almond Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC ALMOND~^^^^^0^^^^^ -~25012~^~2500~^~Snacks, sweet potato chips, unsalted~^~SNACKS,SWT POTATO CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25013~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, original flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN SNACK,ORIGINAL FLAVOR~^^^~Y~^^0^^6.50^^^ -~25014~^~2500~^~Snacks, popcorn, microwave, regular (butter) flavor, made with partially hydrogenated oil~^~SNACKS,POPCORN,MICROWAVE,REG (BUTTER) FLAVOR, W/PARHYD OIL~^^^~Y~^^0^^6.25^^^ -~25015~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Protein Performance Bar, Caramel Nut Rush~^~FORMBAR,MARSSNACK,SNICKERS MARATHONPROTPERFBAR,CARMELNUTRUSH~^^^~Y~^^0^^6.25^^^ -~25016~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Energy Bar, all flavors~^~FORMUL BAR,MA SNACKFO US,SNICKE MARATH ENER BAR,ALL FLAVO~^^^~Y~^^0^^^^^ -~25017~^~2500~^~Formulated bar, POWER BAR, chocolate~^~FORMULATED BAR,POWER BAR,CHOC~^^^~Y~^^0^^6.10^^^ -~25018~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Blueberry Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC BLUEBERRY~^^^^^0^^^^^ -~25020~^~2500~^~Formulated bar, SLIM-FAST OPTIMA meal bar, milk chocolate peanut~^~FORMULATED BAR,SLIM-FAST OPTIMA MEAL BAR,MILK CHOC PNUT~^^~Slim-Fast Foods Company~^~Y~^^0^^6.25^^^ -~25021~^~2500~^~Formulated bar, LUNA BAR, NUTZ OVER CHOCOLATE~^~FORMULATED BAR,LUNA BAR,NUTZ OVER CHOC~^^~LUNA BAR~^~Y~^^0^^6.25^^^ -~25022~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, multigrain, French onion flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,FRENCH ONION FLAVOR~^^^^^0^^^^^ -~25023~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, Harvest Cheddar flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,HARVEST CHEDDAR~^^^^^0^^^^^ -~25024~^~2500~^~Pretzels, soft, unsalted~^~PRETZELS,SOFT,UNSALTED~^^^~Y~^^0^^6.25^^^ -~25025~^~2500~^~Snacks, soy chips or crisps, salted~^~SNACKS,SOY CHIPS OR CRISPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25026~^~2500~^~Popcorn, microwave, regular (butter) flavor, made with palm oil~^~Popcor, microwav, regula (butter) flavo, mad with pal oil~^^^~Y~^^0^^6.25^^^ -~25027~^~2500~^~Snacks, plantain chips, salted~^~SNACKS,PLANTAIN CHIPS,SALTED~^^^~Y~^^0^^6.25^^^ -~25028~^~2500~^~Tortilla chips, yellow, plain, salted~^~Tortilla chips, yellow, plain, salted~^^^~Y~^^0^^6.25^^^ -~25030~^~2500~^~Snacks, vegetable chips, HAIN CELESTIAL GROUP, TERRA CHIPS~^~SNACKS,VEG CHIPS,HAIN CELESTIAL GROUP,TERRA CHIPS~^^^~Y~^^0^^6.25^^^ -~25031~^~2500~^~Formulated bar, ZONE PERFECT CLASSIC CRUNCH BAR, mixed flavors~^~FORM BAR,ZONE PERFECT CLASSIC CRUNCH BAR,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25032~^~2500~^~Snacks, granola bar, KASHI GOLEAN, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25033~^~2500~^~Snacks, granola bar, KASHI TLC Bar, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25034~^~2500~^~Snacks, granola bar, KASHI GOLEAN, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25035~^~2500~^~Snacks, granola bar, chewy, reduced sugar, all flavors~^~SNACKS,GRANOLA BAR,CHEWY,RED SUGAR,ALL FLAVORS~^^^~Y~^^0^^^^^ -~25036~^~2500~^~Snacks, granola bites, mixed flavors~^~SNACKS,GRANOLA BITES,MXD FLAVORS~^^^~Y~^^0^^^^^ -~25037~^~2500~^~Snacks, pita chips, salted~^~SNACKS,PITA CHIPS,SALTED~^^^~Y~^^0^^^^^ -~25038~^~2500~^~Snacks, granola bars, soft, almond, confectioners coating~^~SNACKS,GRANOLA BARS,SOFT,ALMOND,CONFECTIONERS COATING~^^^~Y~^^0^^^^^ -~25039~^~2500~^~Snacks, granola bars, QUAKER OATMEAL TO GO, all flavors~^~SNACKS,GRANOLA BARS,QUAKER OATMEAL TO GO,ALL FLAVORS~^^^~Y~^^0^^6.25^^^ -~25040~^~2500~^~Snacks, vegetable chips, made from garden vegetables~^~SNACKS,VEG CHIPS,MADE FROM GARDEN VEG~^^^~Y~^^0^^6.26^^^ -~25041~^~2500~^~Snacks, granola bar, KASHI TLC Bar, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^6.25^^^ -~25043~^~2500~^~Snacks, candy bits, yogurt covered with vitamin C~^~SNACKS,CANDY BITS,YOGURT COVERED W/ VIT C~^^^~Y~^^0^^^^^ -~25045~^~2500~^~Formulated bar, high fiber, chewy, oats and chocolate~^~Formulated bar, high fiber, chewy, oats and chocolate~^^^~Y~^^0^^^^^ -~25046~^~2500~^~Snacks, bagel chips, plain~^~SNACKS,BAGEL CHIPS,PLN~^^^~Y~^^0^^6.25^^^ -~25048~^~2500~^~Snacks, NUTRI-GRAIN FRUIT AND NUT BAR~^~SNACKS,NUTRI-GRAIN FRUIT & NUT BAR~^^^~Y~^^0^^^^^ -~25050~^~2500~^~Snacks, yucca (cassava) chips, salted~^~SNACKS,YUCCA (CASSAVA) CHIPS,SALTED~^^^^^0^^^^^ -~25051~^~2500~^~Snacks, CLIF BAR, mixed flavors~^~Snacks, CLIF BAR, mixed flavors~^^^~Y~^^0^^^^^ -~25052~^~2500~^~Snacks, granola bar, QUAKER, chewy, 90 Calorie Bar~^~SNACKS,GRANOLA BAR,QUAKER,CHEWY,90 CAL BAR~^^^~Y~^^0^^6.25^^^ -~25053~^~2500~^~Snacks, granola bar, GENERAL MILLS NATURE VALLEY, SWEET&SALTY NUT, peanut~^~Snac, grano bar, GENER MILLS NATURE VALL, SWE&SAL NUT, peanu~^^^~Y~^^0^^6.25^^^ -~25054~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, with yogurt coating~^~Snack,gran bar,GENERAL MILLS, NATURE VALLEY, w yogu coati~^^^~Y~^^0^^^^^ -~25055~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, CHEWY TRAIL MIX~^~Snac, grano bar, GENER MILLS, NATUR VALLE, CHEWY TRAIL MIX~^^^~Y~^^0^^6.25^^^ -~25056~^~2500~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^^^~Y~^^0^^^^^ -~25059~^~2500~^~Snacks, brown rice chips~^~Snacks, brown rice chips~^^^~Y~^^0^^6.25^^^ -~25060~^~2500~^~Snack, Pretzel, hard chocolate coated~^~SNACK,PRETZEL,HARD CHOC COATD~^^^~Y~^^0^^6.25^^^ -~25062~^~2500~^~Snack, Mixed Berry Bar~^~Snack, Mixed Berry Bar~^^^~Y~^^0^^^^^ -~25063~^~2500~^~Snacks, potato chips, made from dried potatoes (preformed), multigrain~^~Snacks, potato chips, fr dried potatoes, multigrain~^^^~Y~^^0^^^^^ -~25064~^~2500~^~Snacks, potato chips, lightly salted~^~SNACKS,POTATO CHIPS,LIGHTLY SALTED~^^^~Y~^^0^^^^^ -~25065~^~2500~^~Snacks, Pretzels, gluten- free made with cornstarch and potato flour~^~SNACKS,PRETZELS,GLUTEN- FREE MADE W/ CORNSTARCH & POTATO FLR~^^^~Y~^^0^^^^^ -~25066~^~2500~^~Snacks, peas, roasted, wasabi-flavored~^~SNACKS,PEAS,RSTD,WASABI-FLAVORED~^^^~Y~^^0^^^^^ -~25067~^~2500~^~Formulated Bar, SOUTH BEACH protein bar~^~FORMULATED BAR,SOUTH BEACH PROT BAR~^^^~Y~^^0^^^^^ -~25068~^~2500~^~Snack, BALANCE, original bar~^~SNACK,BALANCE,ORIGINAL BAR~^^^~Y~^^0^^^^^ -~25070~^~2500~^~Snacks, shrimp cracker~^~SNACKS,SHRIMP CRACKER~^^^~Y~^^0^^^^^ -~25071~^~2500~^~Rice crackers~^~RICE CRACKERS~^^^~Y~^^0^^6.25^^^ -~27000~^~0600~^~Soup, egg drop, Chinese restaurant~^~SOUP,EGG DROP,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27001~^~0600~^~Soup, hot and sour, Chinese restaurant~^~SOUP,HOT & SOUR,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27002~^~0600~^~Soup, wonton, Chinese restaurant~^~SOUP,WONTON,CHINESE RESTAURANT~^^^~Y~^^0^^^^^ -~27035~^~0600~^~Soup, ramen noodle, dry, any flavor, reduced fat, reduced sodium~^~SOUP,RAMEN NOODLE,DRY,ANY FLAVOR,RED FAT,RED NA~^^^~Y~^^0^^6.25^^^ -~27042~^~0600~^~Soup, clam chowder, new england, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,RTS~^^^^^0^^^^^ -~27043~^~0600~^~Soup, clam chowder, new england, reduced sodium, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,RED NA,CND,RTS~^^^~Y~^^0^^^4.00^9.00^4.00 -~27044~^~0600~^~Soup, chicken noodle, reduced sodium, canned, ready-to-serve~^~SOUP,CHICK NOODLE,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27045~^~0600~^~Soup, beef and vegetables, reduced sodium, canned, ready-to-serve~^~SOUP,BF & VEG,RED NA,CND,RTS~^^^^^0^^^^^ -~27046~^~0600~^~Sauce, duck, ready-to-serve~^~SAUCE,DUCK,RTS~^^^~Y~^^0^^^^^ -~27047~^~0600~^~Sauce, salsa, verde, ready-to-serve~^~SAUCE,SALSA,VERDE,RTS~^^^~Y~^^0^^^^^ -~27048~^~0600~^~Sauce, steak, tomato based~^~SAUCE,STEAK,TOMATO BSD~^^^~Y~^^0^^^^^ -~27049~^~0600~^~Sauce, tartar, ready-to-serve~^~SAUCE,TARTAR,RTS~^^^~Y~^^0^^^^^ -~27050~^~0600~^~Sauce, sweet and sour, ready-to-serve~^~SAUCE,SWT & SOUR,RTS~^^^~Y~^^0^^^^^ -~27051~^~0600~^~Sauce, cocktail, ready-to-serve~^~SAUCE,COCKTAIL,RTS~^^^~Y~^^0^^^^^ -~27052~^~0600~^~Dip, salsa con queso, cheese and salsa- medium~^~DIP,SALSA CON QUESO,CHS & SALSA- MED~^^^~Y~^^0^^^^^ -~27054~^~0600~^~Dip, TOSTITOS, salsa con queso, medium~^~DIP,TOSTITOS,SALSA CON QUESO,MED~^^~Pepsi-Cola North America~^^^0^^^^^ -~27055~^~0600~^~Sauce, barbecue, SWEET BABY RAY'S, original~^~SAUCE,BARBECUE,SWT BABY RAY'S,ORIGINAL~^^~Sweet baby Ray's, Inc.~^^^0^^^^^ -~27056~^~0600~^~Sauce, barbecue, BULL'S-EYE, original~^~SAUCE,BARBECUE,BULL'S-EYE,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^ -~27057~^~0600~^~Sauce, barbecue, KC MASTERPIECE, original~^~SAUCE,BARBECUE,KC MASTERPIECE,ORIGINAL~^^^^^0^^^^^ -~27058~^~0600~^~Sauce, barbecue, OPEN PIT, original~^~SAUCE,BARBECUE,OPEN PIT,ORIGINAL~^^~Open Pit- Pinnacle Foods~^^^0^^^^^ -~27059~^~0600~^~Sauce, peanut, made from peanut butter, water, soy sauce~^~SAUCE,PNUT,MADE FROM PNUT BUTTER,H2O,SOY SAU~^^^~Y~^^0^^^4.00^9.00^4.00 -~27060~^~0600~^~Soup, chunky vegetable, reduced sodium, canned, ready-to-serve~^~SOUP,CHUNKY VEG,RED NA,CND,RTS~^^^~Y~^^0^^^^^ -~27061~^~0600~^~Gravy, HEINZ Home Style, classic chicken~^~GRAVY,HEINZ HOME STYLE,CLASSIC CHICK~^^~H.J. Heinz, Co.~^^^0^^^^^ -~27062~^~0600~^~Soup, beef barley, ready to serve~^~SOUP,BF BARLEY,READY TO SERVE~^^^~Y~^^0^^^^^ -~27063~^~0600~^~Sauce, enchilada, red, mild, ready to serve~^~SAUCE,ENCHILADA,RED,MILD,READY TO SERVE~^^^~Y~^^0^^^4.00^9.00^4.00 -~27064~^~0600~^~Wasabi~^~WASABI~^^^~Y~^^0^^6.25^^^ -~27065~^~0600~^~Dip, bean, original flavor~^~DIP,BEAN,ORIGINAL FLAVOR~^^^~Y~^^0^^^^^ -~27066~^~0600~^~Sauce, horseradish~^~SAUCE,HORSERADISH~^^^~Y~^^0^^^^^ -~27068~^~0600~^~Dip, FRITO'S, bean, original flavor~^~DIP,FRITO'S,BEAN,ORIGINAL FLAVOR~^^~Pepsi-Cola North America~^^^0^^^^^ -~28285~^~1800~^~Bread, chapati or roti, whole wheat, commercially prepared, frozen~^~BREAD,CHAPATI OR ROTI,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28286~^~1800~^~Bread, paratha, whole wheat, commercially prepared, frozen~^~BREAD,PARATHA,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^ -~28287~^~1800~^~Bread, naan, whole wheat, commercially prepared, refrigerated~^~BREAD,NAAN,WHL WHEAT,COMMLY PREP,REFR~^^^~Y~^^0^^6.25^^^ -~28288~^~1800~^~Bread, roll, Mexican, bollilo~^~BREAD,ROLL,MEXICAN,BOLLILO~^^^~Y~^^0^^6.25^^^ -~28289~^~1800~^~Cookie, vanilla with caramel, coconut, and chocolate coating~^~COOKIE,VANILLA W/ CARAMEL,COCNT,& CHOC COATING~^^^~Y~^^0^^6.25^^^ -~28290~^~1800~^~Cookie, with peanut butter filling, chocolate-coated~^~COOKIE,W/ PNUT BUTTER FILLING,CHOCOLATE-COATED~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28291~^~1800~^~Cookies, animal, with frosting or icing~^~COOKIES,ANIMAL,W/ FRSTNG OR ICING~^^^~Y~^^0^^6.25^^^ -~28292~^~1800~^~Crackers, multigrain~^~CRACKERS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28293~^~1800~^~Cookie, butter or sugar, with chocolate icing or filling~^~COOKIE,BUTTER OR SUGAR,W/ CHOC ICING OR FILLING~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^ -~28294~^~1800~^~Cookie, chocolate, with icing or coating~^~COOKIE,CHOC,W/ ICING OR COATING~^^^~Y~^^0^^6.25^^^ -~28295~^~1800~^~Tortillas, ready-to-bake or -fry, whole wheat~^~TORTILLAS,RTB OR -FRY,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28296~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting, low-fat, with added fiber~^~CAKE,SNK CAKES,CREME-FILLED,CHOC W/ FRSTNG,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28297~^~1800~^~Cake, snack cakes, not chocolate, with icing or filling, low-fat, with added fiber~^~CAKE,SNK CAKES,NOT CHOC,W/ ICING OR FILLING,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^ -~28298~^~1800~^~Cookies, brownies, commercially prepared, reduced fat, with added fiber~^~COOKIES,BROWNIES,COMMLY PREP,RED FAT,W/ ADDED FIBER~^^^~Y~^^0^^6.25^^^ -~28299~^~1800~^~Cookies, chocolate sandwich, with creme filling, reduced fat~^~COOKIES,CHOC SNDWCH,W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28300~^~1800~^~Cookies, oatmeal sandwich, with creme filling~^~COOKIES,OATMEAL SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28301~^~1800~^~Cookies, peanut butter, commercially prepared, sugar free~^~COOKIES,PNUT BUTTER,COMMLY PREP,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~28302~^~1800~^~Cookies, graham crackers, plain or honey, lowfat~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY,LOWFAT~^^^~Y~^^0^^6.25^^^ -~28303~^~1800~^~Crackers, cheese, whole grain~^~CRACKERS,CHS,WHL GRAIN~^^^~Y~^^0^^6.25^^^ -~28304~^~1800~^~Waffles, whole wheat, lowfat, frozen, ready-to-heat~^~WAFFLES,WHL WHEAT,LOWFAT,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28305~^~1800~^~Pancakes, plain, reduced fat~^~PANCAKES,PLN,RED FAT~^^^~Y~^^0^^6.25^^^ -~28306~^~1800~^~Bread, chapati or roti, plain, commercially prepared~^~BREAD,CHAPATI OR ROTI,PLN,COMMLY PREP~^^^^^0^^6.25^^^ -~28307~^~1800~^~Bread, naan, plain, commercially prepared, refrigerated~^~BREAD,NAAN,PLN,COMMLY PREP,REFR~^^^^^0^^6.25^^^ -~28308~^~1800~^~Crackers, standard snack-type, with whole wheat~^~CRACKERS,STD SNACK-TYPE,W/ WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28309~^~1800~^~Cookies, coconut macaroon~^~COOKIES,COCNT MACAROON~^^^~Y~^^0^^6.25^^^ -~28310~^~1800~^~Cookies, shortbread, reduced fat~^~COOKIES,SHORTBREAD,RED FAT~^^^~Y~^^0^^6.25^^^ -~28311~^~1800~^~Cookies, sugar wafer, chocolate-covered~^~COOKIES,SUGAR WAFER,CHOCOLATE-COVERED~^^^~Y~^^0^^6.25^^^ -~28312~^~1800~^~Rolls, hamburger or hot dog, wheat/cracked wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHEAT/CRACKED WHEAT~^^^~Y~^^0^^6.25^^^ -~28313~^~1800~^~Rolls, hamburger or hot dog, whole wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHL WHEAT~^^^~Y~^^0^^^^^ -~28314~^~1800~^~Crackers, sandwich-type, peanut butter filled, reduced fat~^~CRACKERS,SANDWICH-TYPE,PNUT BUTTER FILLED,RED FAT~^^^~Y~^^0^^6.25^^^ -~28315~^~1800~^~Bread, cinnamon~^~BREAD,CINN~^^^~Y~^^0^^6.25^^^ -~28316~^~1800~^~Bread, wheat, sprouted~^~BREAD,WHEAT,SPROUTED~^^^~Y~^^0^^6.25^^^ -~28317~^~1800~^~Bread, wheat, sprouted, toasted~^~BREAD,WHEAT,SPROUTED,TSTD~^^^~Y~^^0^^6.25^^^ -~28318~^~1800~^~Bread, french or vienna, whole wheat~^~BREAD,FRENCH OR VIENNA,WHL WHEAT~^^^~Y~^^0^^6.25^^^ -~28319~^~1800~^~Bagels, whole grain white~^~BAGELS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28320~^~1800~^~English muffins, whole grain white~^~ENGLISH MUFFINS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^ -~28321~^~1800~^~Rolls, hamburger, whole grain white, calcium-fortified~^~ROLLS,HAMBURGER,WHL GRAIN WHITE,CALCIUM-FORTIFIED~^^^~Y~^^0^^6.25^^^ -~28322~^~1800~^~Bagels, multigrain~^~BAGELS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28324~^~1800~^~Pancakes, whole wheat, dry mix, incomplete~^~PANCAKES,WHL WHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.25^^^ -~28325~^~1800~^~Crackers, toast thins, low sodium~^~CRACKERS,TOAST THINS,LO NA~^^^~Y~^^0^^6.25^^^ -~28326~^~1800~^~Crackers, whole grain, sandwich-type, with peanut butter filling~^~CRACKERS,WHL GRAIN,SANDWICH-TYPE,W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^ -~28327~^~1800~^~Crackers, water biscuits~^~CRACKERS,H2O BISCUITS~^^^~Y~^^0^^6.25^^^ -~28328~^~1800~^~Cookies, chocolate chip sandwich, with creme filling~^~COOKIES,CHOC CHIP SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^ -~28329~^~1800~^~Cookies, chocolate, made with rice cereal~^~COOKIES,CHOC,MADE W/ RICE CRL~^^^~Y~^^0^^6.25^^^ -~28330~^~1800~^~Cookies, marshmallow, with rice cereal and chocolate chips~^~COOKIES,MARSHMLLW,W/ RICE CRL & CHOC CHIPS~^^^~Y~^^0^^6.25^^^ -~28331~^~1800~^~Crackers, flavored, fish-shaped~^~CRACKERS,FLAV,FISH-SHAPED~^^^^^0^^6.25^^^ -~28332~^~1800~^~Cookies, gluten-free, chocolate sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,CHOC SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^^^^ -~28333~^~1800~^~Cookies, gluten-free, chocolate wafer~^~COOKIES,GLUTEN-FREE,CHOC WAFER~^^^^^0^^6.25^^^ -~28334~^~1800~^~Cookies, gluten-free, lemon wafer~^~COOKIES,GLUTEN-FREE,LEMON WAFER~^^^^^0^^6.25^^^ -~28335~^~1800~^~Cookies, gluten-free, vanilla sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,VANILLA SNDWCH,W/ CREME FILLING~^^^^^0^^6.25^^^ -~28336~^~1800~^~Bread, gluten-free, white, made with potato extract, rice starch, and rice flour~^~BREAD,GLUTEN-FREE,POTATO EXTRACT,RICE STARCH,& RICE FLOUR~^^^^^0^^6.25^^^ -~28337~^~1800~^~Bread, gluten-free, white, made with rice flour, corn starch, and/or tapioca~^~BREAD,GLUTEN-FREE,RICE FLOUR,CORN STARCH,AND/OR TAPIOCA~^^^~Y~^^0^^^^^ -~28338~^~1800~^~Bread, gluten-free, white, made with tapioca starch and brown rice flour~^~BRD,GLUTEN-FREE,WHITE,MADE W/TAPIOCA STARCH & BRWN RICE FLR~^^^^^0^^6.25^^^ -~28339~^~1800~^~Bread, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~BREAD,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28340~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and potato starch~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&POTATO STARCH~^^^^^0^^6.25^^^ -~28341~^~1800~^~Rolls, gluten-free, white, made with rice flour, rice starch, and corn starch~^~ROLLS,GLUTEN-FREE,RICE FLR,RICE STARCH,& CORN STARCH~^^^~Y~^^0^^^^^ -~28342~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and sorghum flour~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&SORGHUM FLR~^^^^^0^^6.25^^^ -~28343~^~1800~^~Rolls, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~ROLLS,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^ -~28344~^~1800~^~Crackers, gluten-free, multigrain and vegetable, made with corn starch and white rice flour~^~CRACKERS,GLUTEN-FREE,MULTIGRAIN & VEG,MADE W/ CORN STARCH &~^^^^^0^^6.25^^^ -~28345~^~1800~^~Crackers, gluten-free, multi-seeded and multigrain~^~CRACKERS,GLUTEN-FREE,MULTI-SEEDED & MULTIGRAIN~^^^~Y~^^0^^6.25^^^ -~28346~^~1800~^~Waffles, gluten-free, frozen, ready-to-heat~^~WAFFLES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28347~^~1800~^~Pancakes, gluten-free, frozen, ready-to-heat~^~PANCAKES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^ -~28348~^~1800~^~Rolls, dinner, sweet~^~ROLLS,DINNER,SWT~^^^~Y~^^0^^6.25^^^ -~28349~^~1800~^~Cookies, oatmeal, reduced fat~^~COOKIES,OATMEAL,RED FAT~^^^~Y~^^0^^6.25^^^ -~28350~^~1800~^~Cookies, chocolate cream covered biscuit sticks~^~COOKIES,CHOC CRM COVERED BISCUIT STKS~^^^~Y~^^0^^6.25^^^ -~28351~^~1800~^~Cookies, Marie biscuit~^~COOKIES,MARIE BISCUIT~^^^~Y~^^0^^6.25^^^ -~28352~^~1800~^~Cookies, vanilla sandwich with creme filling, reduced fat~^~COOKIES,VANILLA SNDWCH W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^ -~28354~^~1800~^~Andrea's, Gluten Free Soft Dinner Roll~^~ANDREA'S,GLUTEN FREE SOFT DINNER ROLL~^^~Andrea's Gluten Free~^^^0^^6.25^^^ -~28355~^~1800~^~Crunchmaster, Multi-Grain Crisps, Snack Crackers, Gluten-Free~^~CRUNCHMASTER,MULTI-GRAIN CRISPS,SNACK CRACKERS,GLUTEN-FREE~^^~Crunchmaster~^^^0^^^^^ -~28356~^~1800~^~Glutino, Gluten Free Cookies, Chocolate Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,CHOC VANILLA CREME~^^~Glutino~^^^0^^^^^ -~28357~^~1800~^~Glutino, Gluten Free Cookies, Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,VANILLA CREME~^^~Glutino~^^^0^^6.25^^^ -~28358~^~1800~^~Glutino, Gluten Free Wafers, Lemon Flavored~^~GLUTINO,GLUTEN FREE WAFERS,LEMON FLAV~^^~Glutino~^^^0^^^^^ -~28359~^~1800~^~Glutino, Gluten Free Wafers, Milk Chocolate~^~GLUTINO,GLUTEN FREE WAFERS,MILK CHOC~^^~Glutino~^^^0^^6.25^^^ -~28360~^~1800~^~Mary's Gone Crackers, Original Crackers, Organic Gluten Free~^~MARY'S GONE CRACKERS,ORIGINAL CRACKERS,ORGANIC GLUTEN FREE~^^~Mary's Gone Crackers~^^^0^^6.25^^^ -~28361~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Cheddar~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,CHEDDAR~^^~Pepperidge Farm~^^^0^^^^^ -~28362~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Explosive Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,EXPLOSIVE PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28363~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Original~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,ORIGINAL~^^~Pepperidge Farm~^^^0^^^^^ -~28364~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Parmesan~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PARMESAN~^^~Pepperidge Farm~^^^0^^^^^ -~28365~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PIZZA~^^~Pepperidge Farm~^^^0^^^^^ -~28366~^~1800~^~Rudi's, Gluten-Free Bakery, Original Sandwich Bread~^~RUDI'S,GLUTEN-FREE BAKERY,ORIGINAL SNDWCH BREAD~^^~Rudi's Bakery~^^^0^^6.25^^^ -~28367~^~1800~^~Sage Valley, Gluten Free Vanilla Sandwich Cookies~^~SAGE VALLEY,GLUTEN FREE VANILLA SNDWCH COOKIES~^^~Sage Valley~^^^0^^6.25^^^ -~28368~^~1800~^~Schar, Gluten-Free, Classic White Rolls~^~SCHAR,GLUTEN-FREE,CLASSIC WHITE ROLLS~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28369~^~1800~^~Schar, Gluten-Free, Wheat-Free, Classic White Bread~^~SCHAR,GLUTEN-FREE,WHEAT-FREE,CLASSIC WHITE BREAD~^^~Dr. Schar USA, Inc.~^^^0^^^^^ -~28370~^~1800~^~Udi's, Gluten Free, Classic French Dinner Rolls~^~UDI'S,GLUTEN FREE,CLASSIC FRENCH DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28371~^~1800~^~Udi's, Gluten Free, Soft & Delicious White Sandwich Bread~^~UDI'S,GLUTEN FREE,SOFT & DELICIOUS WHITE SNDWCH BREAD~^^~Udi's Gluten Free~^^^0^^^^^ -~28372~^~1800~^~Udi's, Gluten Free, Soft & Hearty Whole Grain Bread~^~UDI'S,GLUTEN FREE,SOFT & HEARTY WHL GRAIN BREAD~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28373~^~1800~^~Udi's, Gluten Free, Whole Grain Dinner Rolls~^~UDI'S,GLUTEN FREE,WHL GRAIN DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^ -~28374~^~1800~^~Van's, Gluten Free, Totally Original Pancakes~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL PANCAKES~^^~Van's International Foods~^^^0^^6.25^^^ -~28375~^~1800~^~Van's, Gluten Free, Totally Original Waffles~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL WAFFLES~^^~Van's International Foods~^^^0^^^^^ -~28376~^~1800~^~Van's, The Perfect 10, Crispy Six Whole Grain + Four Seed Baked Crackers, Gluten Free~^~VAN'S,THE PRFCT 10,CRSP 6 WHL GRN 4 SD BKD CRCKRS,GLTN FREE~^^~Van's International Foods~^^^0^^6.25^^^ -~28397~^~1800~^~Bread, multi-grain (includes whole-grain)~^~BREAD,MULTI-GRAIN (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^ -~28399~^~1800~^~Cookies, animal crackers (includes arrowroot, tea biscuits)~^~COOKIES,ANIMAL CRACKERS (INCL ARROWROOT,TEA BISCUITS,)~^^^~Y~^^0^^5.70^4.10^8.80^4.00 -~31019~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, dry~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,DRY~^^~Acadian Seaplants Limited~^^^0^~Chondrus crispus~^6.25^^^ -~31020~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, rehydrated~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,REHYDRATED~^^~Acadian Seaplants Limited~^^^0^^6.25^^^ -~31021~^~1100~^~Potatoes, hash brown, refrigerated, unprepared~^~POTATOES,HASH BROWN,REFR,UNPREP~^^^^^0^^^^^ -~31022~^~1100~^~Potatoes, hash brown, refrigerated, prepared, pan-fried in canola oil~^~POTATOES,HASH BROWN,REFR,PREP,PAN-FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^^^0^^^^^ -~31023~^~1100~^~Sweet Potatoes, french fried, frozen as packaged, salt added in processing~^~SWEET POTATOES,FRENCH FR,FRZ AS PACKAGED,SALT ADDED~^^^~Y~^^0^^6.25^4.03^8.37^2.78 -~31024~^~1100~^~Sweet Potatoes, french fried, crosscut, frozen, unprepared~^~SWEET POTATOES,FRENCH FR,CROSSCUT,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31025~^~1100~^~Sweet Potato puffs, frozen, unprepared~^~SWEET POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31026~^~1100~^~Potatoes, yellow fleshed, roasted, salt added in processing, frozen, unprepared~^~POTATOES,YEL FLESHED,RSTD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^^^^ -~31027~^~1100~^~Potatoes, yellow fleshed, french fried, frozen, unprepared~^~POTATOES,YEL FLESHED,FRENCH FR,FRZ,UNPREP~^^^^^0^^^^^ -~31028~^~1100~^~Potatoes, yellow fleshed, hash brown, shredded, salt added in processing, frozen, unprepared~^~POTATO\,YEL FLSH,HASH BRN,SHRD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^^^ -~31029~^~1100~^~Potatoes, french fried, wedge cut, frozen, unprepared~^~POTATOES,FRENCH FR,WEDGE CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31030~^~1100~^~Potatoes, french fried, steak cut, salt not added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,STK CUT,SALT NOT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31031~^~1100~^~Potatoes, french fried, cross cut, frozen, unprepared~^~POTATOES,FRENCH FR,CROSS CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00 -~31033~^~1100~^~Ginger root, pickled, canned, with artificial sweetener~^~GINGER ROOT,PICKLED,CND,W/ ART SWTNR~^^^~Y~^^0^^6.25^2.78^8.37^3.84 -~31034~^~1100~^~Peppers, hot pickled, canned~^~PEPPERS,HOT PICKLED,CND~^^^~Y~^^0^^6.25^2.44^8.37^3.57 -~31035~^~1100~^~Vegetable juice, BOLTHOUSE FARMS, DAILY GREENS~^~VEGETABLE JUC,BOLTHOUSE FARMS,DAILY GRNS~^^~Bolthouse Farms~^~Y~^^0^^6.25^2.44^8.37^3.57 -~31036~^~1100~^~Potatoes, mashed, ready-to-eat~^~POTATOES,MSHD,RTE~^^^~Y~^^0^^^^^ -~32000~^~2200~^~Rice and vermicelli mix, beef flavor, unprepared~^~RICE & VERMICELLI MIX,BF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32001~^~2200~^~Rice and vermicelli mix, beef flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,BF FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^3.87^8.37^4.14 -~32002~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, unprepared~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^ -~32003~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,PREP W/ 80% MARGARIN~^^^^^0^^^^^ -~32004~^~2200~^~Macaroni and cheese, box mix with cheese sauce, unprepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,UNPREP~^^^~Y~^^0^^^^^ -~32005~^~2200~^~Macaroni and cheese, box mix with cheese sauce, prepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,PREP~^^^^^0^^^^^ -~32006~^~2200~^~Taquitos, frozen, chicken and cheese, oven-heated~^~TAQUITOS,FRZ,CHICK & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32007~^~2200~^~Taquitos, frozen, beef and cheese, oven-heated~^~TAQUITOS,FRZ,BF & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^ -~32008~^~2200~^~Pasta mix, classic cheeseburger macaroni, unprepared~^~PASTA MIX,CLASSIC CHEESEBURGER MACARONI,UNPREP~^^^~Y~^^0^^^^^ -~32009~^~2200~^~Pasta mix, classic beef, unprepared~^~PASTA MIX,CLASSIC BF,UNPREP~^^^~Y~^^0^^6.25^^^ -~32010~^~2200~^~Pasta mix, Italian lasagna, unprepared~^~PASTA MIX,ITALIAN LASAGNA,UNPREP~^^^~Y~^^0^^6.25^^^ -~32011~^~2200~^~Yellow rice with seasoning, dry packet mix, unprepared~^~YELLOW RICE W/ SEASONING,DRY PACKET MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32012~^~2200~^~Pizza rolls, frozen, unprepared~^~PIZZA ROLLS,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32013~^~2200~^~Potsticker or wonton, pork and vegetable, frozen, unprepared~^~POTSTICKER OR WONTON,PORK & VEG,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32014~^~2200~^~Macaroni or noodles with cheese, made from reduced fat packaged mix, unprepared~^~MACARONI OR NOODLES W/ CHS,MADE FROM RED FAT PACKAGED MIX,UN~^^^~Y~^^0^^6.25^^^ -~32015~^~2200~^~Turnover, cheese-filled, tomato-based sauce, frozen, unprepared~^~TURNOVER,CHEESE-FILLED,TOMATO-BASED SAU,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^ -~32016~^~2200~^~Macaroni or noodles with cheese, microwaveable, unprepared~^~MACARONI OR NOODLES W/ CHS,MICROWAVEABLE,UNPREP~^^^~Y~^^0^^6.25^^^ -~32017~^~2200~^~Pasta mix, Italian four cheese lasagna, unprepared~^~PASTA MIX,ITALIAN FOUR CHS LASAGNA,UNPREP~^^^^^0^^6.25^^^ -~32018~^~2200~^~Spanish rice mix, dry mix, unprepared~^~SPANISH RICE MIX,DRY MIX,UNPREP~^^^^^0^^6.25^^^ -~32019~^~2200~^~Lasagna, cheese, frozen, unprepared~^~LASAGNA,CHS,FRZ,UNPREP~^^^^^0^^6.25^^^ -~32020~^~2200~^~Chicken, thighs, frozen, breaded, reheated~^~CHICKEN,THIGHS,FRZ,BREADED,REHTD~^^^^^0^^6.25^^^ -~32021~^~2200~^~Spanish rice mix, dry mix, prepared (with canola/vegetable oil blend or diced tomatoes and margarine)~^~SPANISH RICE MIX,DRY MIX,PREP (WITH CANOLA/VEGETABLE OIL BLE~^^^^^0^^6.25^^^ -~32024~^~2200~^~Rice mix, cheese flavor, dry mix, unprepared~^~RICE MIX,CHS FLAVOR,DRY MIX,UNPREP~^^^~Y~^^0^^6.25^^^ -~32025~^~2200~^~Dumpling, potato- or cheese-filled, frozen~^~DUMPLING,POTATO- OR CHEESE-FILLED,FRZ~^^^~Y~^^0^^6.25^^^ -~32026~^~2200~^~Turnover, chicken- or turkey-, and vegetable-filled, reduced fat, frozen~^~TURNOVER,CHICKEN- OR TURKEY-,& VEGETABLE-FILLED,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32027~^~2200~^~Turnover, meat- and cheese-filled, tomato-based sauce, reduced fat, frozen~^~TURNOVER,MEAT- & CHEESE-FILLED,TOMATO-BASED SAU,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^ -~32028~^~2200~^~Turnover, filled with egg, meat and cheese, frozen~^~TURNOVER,FILLED W/ EGG,MEAT & CHS,FRZ~^^^~Y~^^0^^6.25^^^ -~32029~^~2200~^~Rice mix, white and wild, flavored, unprepared~^~RICE MIX,WHITE & WILD,FLAV,UNPREP~^^^~Y~^^0^^6.25^^^ -~32031~^~2200~^~Salisbury steak with gravy, frozen~^~SALISBURY STEAK W/ GRAVY,FRZ~^^^~Y~^^0^^6.25^^^ -~32032~^~2200~^~Sausage, egg and cheese breakfast biscuit~^~SAUSAGE,EGG & CHS BRKFST BISCUIT~^^^~Y~^^0^^6.25^^^ -~32034~^~2200~^~HUNGRY MAN, Salisbury Steak With Gravy, frozen, unprepared~^~HUNGRY MAN,SALISBURY STEAK W/ GRAVY,FRZ,UNPREP~^^~Hungry Man~^^^0^^^^^ -~32035~^~2200~^~BANQUET, Salisbury Steak With Gravy, family size, frozen, unprepared~^~BANQUET,SALISBURY STEAK W/ GRAVY,FAMILY SIZE,FRZ,UNPREP~^^~Banquet Foods Corp.~^^^0^^^^^ -~32036~^~2200~^~JIMMY DEAN, Sausage, Egg, and Cheese Breakfast Biscuit, frozen, unprepared~^~JIMMY DEAN,SAUSAGE,EGG,& CHS BRKFST BISCUIT,FRZ,UNPREP~^^~Jimmy Dean Foods~^^^0^^^^^ -~33862~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with ARA and DHA, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33863~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM LIPIL,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33864~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, Liquid concentrate, not reconstituted~^~INF FORMU, MEA JOHN, ENFA, PRE LIPIL, INFA, LIQ CON, NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33865~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, Liquid concentrate, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFA,PREM,INFANT,LIQ CONC,NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^ -~33866~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler transitions, with ARA and DHA, powder~^~INF FORMU,MEAD JOH,ENFA,ENFA,GEN,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33867~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START, PROTECT PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33868~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, powder~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33869~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START 2, PROTECT PLUS, PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33870~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, Soy, Toddler transitions, with ARA and DHA, powder~^~INF FOR,ME JO,ENFAML,ENFA,SOY,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33871~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, powder, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMIL, GO & GR, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^ -~33872~^~0300~^~Infant formula, GERBER, GOOD START 2 SOY, with iron, powder~^~INF FORMULA, GERBER, GOOD START 2 SOY, W/ IRON,PDR~^^~GERBER~^~Y~^^0^^6.25^^^ -~33873~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, PurAmino, powder, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFAM,NUTRAMIG,PURAMI,PDR,NO REC~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33874~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAMI,PREMATURE,20 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33875~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAML,PREMATURE,24 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33876~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33877~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^ -~33878~^~0300~^~Babyfood, GERBER, Banana with orange medley~^~BABYFOOD,GERBER,BANANA W/ ORANGE MEDLEY~^^~GERBER~^~Y~^^0^^6.25^3.98^8.37^3.16 -~33881~^~0300~^~Babyfood, rice cereal, dry, EARTHS BEST ORGANIC WHOLE GRAIN, fortified only with iron~^~BABYFOOD,RICE CRL,DRY,EARTHS BEST ORGANIC WHL GRAIN,FORT ONL~^^~Eaths Best~^^^0^^^^^ -~35001~^~3500~^~Agutuk, fish/berry with seal oil (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH/BERRY W/ SEAL OIL (ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35003~^~3500~^~Agutuk, meat-caribou (Alaskan ice cream) (Alaska Native)~^~AGUTUK,MEAT-CARIBOU (ALASKAN ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35004~^~3500~^~Ascidians (tunughnak) (Alaska Native)~^~ASCIDIANS (TUNUGHNAK) (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35007~^~3500~^~Bear, black, meat (Alaska Native)~^~BEAR,BLACK,MEAT (ALASKA NATIVE)~^^^^^0^~Ursus americanus~^6.25^^^ -~35008~^~3500~^~Bear, polar, meat, raw (Alaska Native)~^~BEAR,POLAR,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ursus maritimus~^6.25^^^ -~35009~^~3500~^~Whale, beluga, meat, dried (Alaska Native)~^~WHALE,BELUGA,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35010~^~3500~^~Whale, beluga, eyes (Alaska Native)~^~WHALE,BELUGA,EYES (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35011~^~3500~^~Whale, beluga, meat, raw (Alaska Native)~^~Whale, beluga, meat, raw (Alaska Native)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35012~^~3500~^~Whale, beluga, flipper, raw (Alaska Native)~^~WHALE,BELUGA,FLIPPER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35013~^~3500~^~Whale, beluga, liver, raw (Alaska Native)~^~WHALE,BELUGA,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^ -~35014~^~3500~^~Oil, beluga, whale (Alaska Native)~^~OIL,BELUGA,WHALE (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^^^^ -~35015~^~3500~^~Blackberries, wild, raw (Alaska Native)~^~BLACKBERRIES,WILD,RAW (ALASKA NATIVE)~^~Crowberries~^^^^0^~Rubus spp.~^5.30^^^ -~35016~^~3500~^~Fish, blackfish, whole (Alaska Native)~^~FISH,BLACKFISH,WHL (ALASKA NATIVE)~^^^^^0^~Dallia pectoralis~^6.25^^^ -~35017~^~3500~^~Blueberries, wild, frozen (Alaska Native)~^~BLUEBERRIES,WILD,FRZ (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskanese and Ovalifolium~^5.30^^^ -~35021~^~3500~^~Caribou, bone marrow, raw (Alaska Native)~^~CARIBOU,BONE MARROW,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35022~^~3500~^~Caribou, eye, raw (Alaska Native)~^~CARIBOU,EYE,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35023~^~3500~^~Caribou, liver, raw (Alaska Native)~^~CARIBOU,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^ -~35024~^~3500~^~Stew/soup, caribou (Alaska Native)~^~STEW/SOUP,CARIBOU (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35025~^~3500~^~Caribou, tongue, raw (Alaska Native)~^~CARIBOU,TONGUE,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35026~^~3500~^~Chiton, leathery, gumboots (Alaska Native)~^~CHITON,LEATHERY,GUMBOOTS (ALASKA NATIVE)~^^^^^0^~Katharina tunicata~^6.25^^^ -~35027~^~3500~^~Cloudberries, raw (Alaska Native)~^~CLOUDBERRIES,RAW (ALASKA NATIVE)~^~baked apple berry, yellowberry, salmonberry~^^^^0^~Rubus chamaemorus L.~^5.30^^^ -~35028~^~3500~^~Cockles, raw (Alaska Native)~^~COCKLES,RAW (ALASKA NATIVE)~^^^^^0^~Clinocardium nuttallii~^6.25^^^ -~35029~^~3500~^~Cranberries, wild, bush, raw (Alaska Native)~^~CRANBERRIES,WILD,BUSH,RAW (ALASKA NATIVE)~^^^^^0^~Viburnum edule~^5.30^^^ -~35030~^~3500~^~Cranberry, low bush or lingenberry, raw (Alaska Native)~^~CRANBERRY,LO BUSH OR LINGENBERRY,RAW (ALASKA NATIVE)~^~lingenberry~^^^^0^~Vaccinium vitis-idaea~^5.30^^^ -~35034~^~3500~^~Fish, devilfish, meat (Alaska Native)~^~FISH,DEVILFISH,MEAT (ALASKA NATIVE)~^~Gray Whale~^^^^0^~Myoxocephalus~^6.25^^^ -~35038~^~3500~^~Fireweed, young leaves, raw (Alaska Native)~^~FIREWEED,YOUNG LEAVES,RAW (ALASKA NATIVE)~^^^^^0^~Chamerion angustifolium~^5.30^^^ -~35039~^~3500~^~Fish, herring eggs on giant kelp, Pacific (Alaska Native)~^~FISH,HERRING EGGS ON GIANT KELP,PACIFIC (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes & Macrocystis integrifolia~^6.25^^^ -~35040~^~3500~^~Fish, herring eggs, Pacific, dry (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,DRY (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35041~^~3500~^~Fish, herring eggs, Pacific, plain (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,PLN (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35042~^~3500~^~Fish, herring, Pacific, flesh, air-dried, packed in oil (Alaska Native)~^~FISH,HERRING,PACIFIC,FLSH,AIR-DRIED,PACK OIL (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^ -~35043~^~3500~^~Huckleberries, raw (Alaska Native)~^~HUCKLEBERRIES,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaense~^5.30^^^ -~35046~^~3500~^~Fish, lingcod, meat, raw (Alaska Native)~^~FISH,LINGCOD,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35047~^~3500~^~Fish, lingcod, liver (Alaska Native)~^~FISH,LINGCOD,LIVER (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^ -~35048~^~3500~^~Stew, moose (Alaska Native)~^~STEW,MOOSE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35049~^~3500~^~Moose, meat, raw (Alaska Native)~^~MOOSE,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35050~^~3500~^~Mashu roots, raw (Alaska Native)~^~MASHU ROOTS,RAW (ALASKA NATIVE)~^^^^^0^~Hedysarum alpinum~^5.30^^^ -~35051~^~3500~^~Moose, liver, braised (Alaska Native)~^~MOOSE,LIVER,BRSD (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^ -~35052~^~3500~^~Mouse nuts, roots (Alaska Native)~^~MOUSE NUTS,ROOTS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35053~^~3500~^~Mouse nuts, seedlings (Alaska Native)~^~MOUSE NUTS,SEEDLINGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35054~^~3500~^~Octopus (Alaska Native)~^~OCTOPUS (ALASKA NATIVE)~^^^^^0^~Octopus dofleini~^6.25^^^ -~35055~^~3500~^~Seal, bearded (Oogruk), meat, dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED (ALASKA NATIVE)~^~Oogruk~^^^^0^^6.25^^^ -~35056~^~3500~^~Seal, bearded (Oogruk), meat, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Erignathus barbatus~^6.25^^^ -~35057~^~3500~^~Oil, bearded seal (Oogruk) (Alaska Native)~^~OIL,BEARDED SEAL (OOGRUK) (ALASKA NATIVE)~^^^^^0^^^^^ -~35058~^~3500~^~Oopah (tunicate), whole animal (Alaska Native)~^~OOPAH (TUNICATE),WHL ANIMAL (ALASKA NATIVE)~^^^^^0^~Tunicata~^6.25^^^ -~35059~^~3500~^~Owl, horned, flesh, raw (Alaska Native)~^~OWL,HORNED,FLESH,RAW (ALASKA NATIVE)~^^^^^0^~Bubo virgimianus~^6.25^^^ -~35060~^~3500~^~Fish, pike, northern, liver (Alaska Native)~^~FISH,PIKE,NORTHERN,LIVER (ALASKA NATIVE)~^^^^^0^~Esox lucius~^6.25^^^ -~35063~^~3500~^~Rhubarb, wild, leaves (Alaska Native)~^~RHUBARB,WILD,LEAVES (ALASKA NATIVE)~^^^^^0^~Polygenum alaskanum~^5.30^^^ -~35064~^~3500~^~Fish, salmon, tipnuk, fermented (Alaska Native)~^~FISH,SALMON,TIPNUK,FERMENTED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35065~^~3500~^~Fish, salmon, king, chinook, kippered, canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,KIPPERED,CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35066~^~3500~^~Fish, salmon, king, chinook, smoked and canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED & CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35067~^~3500~^~Fish, salmon, king, chinook, smoked, brined (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED,BRINED (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35068~^~3500~^~Fish, salmon, king, chinook, liver (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,LIVER (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^ -~35069~^~3500~^~Duck, scoter, white-winged, meat (Alaska Native)~^~DUCK,SCOTER,WHITE-WINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Melanitta fusca~^5.30^^^ -~35070~^~3500~^~Sea cucumber, yane (Alaska Native)~^~SEA CUCUMBER,YANE (ALASKA NATIVE)~^^^^^0^~Stichopus californicus~^6.25^^^ -~35071~^~3500~^~Seal, ringed, meat (Alaska Native)~^~SEAL,RINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35072~^~3500~^~Seal, ringed, liver (Alaska Native)~^~SEAL,RINGED,LIVER (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^ -~35073~^~3500~^~Soup, fish, homemade (Alaska Native)~^~SOUP,FISH,HOMEMADE (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35074~^~3500~^~Sourdock, young leaves (Alaska Native)~^~SOURDOCK,YOUNG LEAVES (ALASKA NATIVE)~^^^^^0^~Rumex articus~^6.25^^^ -~35075~^~3500~^~Squirrel, ground, meat (Alaska Native)~^~SQUIRREL,GROUND,MEAT (ALASKA NATIVE)~^^^^^0^~Citellus undulatus~^5.30^^^ -~35078~^~3500~^~Tea, tundra, herb and laborador combination (Alaska Native)~^~TEA,TUNDRA,HERB & LABORADOR COMBINATION (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35079~^~3500~^~Walrus, meat, dried (Alaska Native)~^~WALRUS,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35080~^~3500~^~Deer (venison), sitka, raw (Alaska Native)~^~DEER (VENISON),SITKA,RAW (ALASKA NATIVE)~^~sitka deer, venison~^^^^0^~Odocoileus spp~^6.25^4.27^9.02^3.87 -~35081~^~3500~^~Walrus, meat, raw (Alaska Native)~^~WALRUS,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35082~^~3500~^~Walrus, meat and subcutaneous fat raw (Alaska Native)~^~WALRUS,MEAT & SUBCUTANEOUS FAT RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35083~^~3500~^~Walrus, liver, raw (Alaska Native)~^~WALRUS,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35084~^~3500~^~Oil, walrus (Alaska Native)~^~OIL,WALRUS (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^ -~35085~^~3500~^~Whale, bowhead, subcutaneous fat (blubber) (Alaska Native)~^~WHALE,BOWHEAD,SUBCUTANEOUS FAT (BLUBBER) (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35086~^~3500~^~Whale, bowhead, skin and subcutaneous fat (muktuk) (Alaska Native)~^~WHALE,BOWHEAD,SKN & SUBCUTANEOUS FATMUKTUK(ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35087~^~3500~^~Oil, whale, bowhead (Alaska Native)~^~OIL,WHALE,BOWHEAD (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^ -~35088~^~3500~^~Fish, whitefish, broad, liver (Alaska Native)~^~FISH,WHITEFISH,BROAD,LIVER (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35089~^~3500~^~Fish, whitefish, mixed species, raw (Alaska Native)~^~FISH,WHITEFISH,MXD SP,RAW (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus spp.~^6.25^^^ -~35091~^~3500~^~Fish, whitefish, broad, head, eyes, cheeks and soft bones (Alaska Native)~^~FISH,WHITEFISH,HEAD,EYES,CHEEKS & SOFT BONES (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^ -~35092~^~3500~^~Willow, leaves in oil (Alaska Native)~^~WILLOW,LEAVES IN OIL (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^6.25^^^ -~35093~^~3500~^~Willow, young leaves, chopped (Alaska Native)~^~WILLOW,YOUNG LEAVES,CHOPD (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^5.30^^^ -~35130~^~3500~^~Mush, blue corn with ash (Navajo)~^~MUSH,BLUE CORN W/ ASH (NAVAJO)~^^^^^0^^^^^ -~35131~^~3500~^~Cornmeal, blue (Navajo)~^~CORNMEAL,BLUE (NAVAJO)~^^^^^0^^^^^ -~35132~^~3500~^~Melon, banana (Navajo)~^~MELON,BANANA (NAVAJO)~^^^^^0^^6.25^^^ -~35133~^~3500~^~Chilchen (Red Berry Beverage) (Navajo)~^~CHILCHEN (RED BERRY BEVERAGE) (NAVAJO)~^^^^^0^^6.25^^^ -~35134~^~3500~^~Corn, dried (Navajo)~^~CORN,DRIED (NAVAJO)~^^^^^0^^6.25^^^ -~35135~^~3500~^~Corn, white, steamed (Navajo)~^~CORN,WHITE,STMD (NAVAJO)~^^^^^0^^^^^ -~35136~^~3500~^~Cornmeal, white (Navajo)~^~CORNMEAL,WHITE (NAVAJO)~^^^^^0^^6.25^^^ -~35137~^~3500~^~Cornmeal, yellow (Navajo)~^~CORNMEAL,YEL (NAVAJO)~^^^^^0^^6.25^^^ -~35138~^~3500~^~Squash, Indian, raw (Navajo)~^~SQUASH,INDIAN,RAW (NAVAJO)~^^^^^0^^6.25^^^ -~35139~^~3500~^~Squash, Indian, cooked, boiled (Navajo)~^~SQUASH,INDIAN,CKD,BLD (NAVAJO)~^^^^^0^^6.25^^^ -~35140~^~3500~^~Bread, kneel down (Navajo)~^~BREAD,KNEEL DOWN (NAVAJO)~^^^^^0^^6.25^^^ -~35141~^~3500~^~Mutton, cooked, roasted (Navajo)~^~MUTTON,CKD,RSTD (NAVAJO)~^^^^^0^^6.25^^^ -~35142~^~3500~^~Frybread, made with lard (Navajo)~^~FRYBREAD,MADE W/ LARD (NAVAJO)~^^^^^0^^^^^ -~35143~^~3500~^~Tortilla, includes plain and from mutton sandwich (Navajo)~^~TORTILLA,INCL PLN & FROM MUTTON SNDWCH (NAVAJO)~^^^^^0^^^^^ -~35144~^~3500~^~Stew, dumpling with mutton (Navajo)~^~STEW,DUMPLING W/ MUTTON (NAVAJO)~^^^^^0^^^^^ -~35145~^~3500~^~Stew, hominy with mutton (Navajo)~^~STEW,HOMINY W/ MUTTON (NAVAJO)~^^^^^0^^6.25^^^ -~35146~^~3500~^~Stew, mutton, corn, squash (Navajo)~^~STEW,MUTTON,CORN,SQUASH (NAVAJO)~^^^^^0^^6.25^^^ -~35147~^~3500~^~Tamales (Navajo)~^~TAMALES (NAVAJO)~^^^^^0^^6.25^^^ -~35148~^~3500~^~Stew, steamed corn (Navajo)~^~STEW,STMD CORN (NAVAJO)~^^^^^0^^^^^ -~35149~^~3500~^~Fish, halibut, raw, with skin (Alaska Native)~^~FISH,HALIBUT,RAW,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35150~^~3500~^~Fish, salmon, coho (silver), raw (Alaska Native)~^~FISH,SALMON,COHO (SILVER),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35151~^~3500~^~Fish, salmon, sockeye (red), raw (Alaska Native)~^~FISH,SALMON,SOCKEYE (RED),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35152~^~3500~^~Fish, Salmon, Chum, raw (Alaska Native)~^~FISH,SALMON,CHUM,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35153~^~3500~^~Fish, salmon, king (chinook), raw (Alaska Native)~^~FISH,SALMON,KING (CHINOOK),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35154~^~3500~^~Salmonberries, raw (Alaska Native)~^~SALMONBERRIES,RAW (ALASKA NATIVE)~^~akpiks~^^^^0^~Rubus spectabilis~^5.30^^^ -~35155~^~3500~^~Blueberries, wild, raw (Alaska Native)~^~BLUEBERRIES,WILD,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaenese~^5.30^^^ -~35156~^~3500~^~Oil, spotted seal (Alaska Native)~^~OIL,SPOTTED SEAL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35157~^~3500~^~Fish, salmon, red, canned, bones removed (Alaska Native)~^~FISH,SALMON,RED,CND,BONES REMOVED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35158~^~3500~^~Fish, whitefish, eggs (Alaska Native)~^~FISH,WHITEFISH,EGGS (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35160~^~3500~^~Caribou, rump meat, half dried (Alaska Native)~^~CARIBOU,RUMP MEAT,HALF DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35161~^~3500~^~Caribou, shoulder meat, dried (Alaska Native)~^~CARIBOU,SHLDR MEAT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35162~^~3500~^~Caribou, hind quarter meat, raw (Alaska Native)~^~CARIBOU,HIND QUARTER MEAT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35164~^~3500~^~Seal, bearded (Oogruk), meat, dried, in oil (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED,IN OIL (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35165~^~3500~^~Fish, whitefish, dried (Alaska Native)~^~FISH,WHITEFISH,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35166~^~3500~^~Fish, salmon, red, (sockeye), canned, smoked (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),CND,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35167~^~3500~^~Fish, salmon, red, (sockeye), kippered (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),KIPPERED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35168~^~3500~^~Fish, salmon, king, with skin, kippered, (Alaska Native)~^~FISH,SALMON,KING,W/ SKN,KIPPERED,(ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35169~^~3500~^~Fish, sheefish, raw (Alaska Native)~^~FISH,SHEEFISH,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35170~^~3500~^~Seal, bearded (Oogruk), meat, low quadrant, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,LO QUADRANT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35171~^~3500~^~Fish, salmon, chum, dried (Alaska Native)~^~FISH,SALMON,CHUM,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35172~^~3500~^~Elk, free range, ground, cooked patties (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,CKD PATTIES (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35173~^~3500~^~Elk, free range, ground, raw (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35174~^~3500~^~Buffalo, free range, top round steak, raw (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35175~^~3500~^~Seal, bearded (Oogruk), meat, partially dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,PART DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35176~^~3500~^~Buffalo, free range, top round steak, cooked (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35177~^~3500~^~Elk, free range, roast, eye of round, raw (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35178~^~3500~^~Elk, free range, roast, eye of round, cooked (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35179~^~3500~^~Chokecherries, raw, pitted (Shoshone Bannock)~^~CHOKECHERRIES,RAW,PITTED (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35180~^~3500~^~Steelhead trout, dried, flesh (Shoshone Bannock)~^~STEELHEAD TROUT,DRIED,FLESH (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^ -~35181~^~3500~^~Steelhead trout, boiled, canned (Alaska Native)~^~STEELHEAD TROUT,BLD,CND (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35182~^~3500~^~Acorn stew (Apache)~^~ACORN STEW (APACHE)~^^^^^0^^6.25^^^ -~35183~^~3500~^~Corn, dried, yellow (Northern Plains Indians)~^~CORN,DRIED,YEL (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35184~^~3500~^~Smelt, dried (Alaska Native)~^~SMELT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35185~^~3500~^~Frybread, made with lard (Apache)~^~FRYBREAD,MADE W/ LARD (APACHE)~^^^^^0^^^^^ -~35186~^~3500~^~Corned beef and potatoes in tortilla (Apache)~^~CORNED BF & POTATOES IN TORTILLA (APACHE)~^^^^^0^^^^^ -~35187~^~3500~^~Tennis Bread, plain (Apache)~^~TENNIS BREAD,PLN (APACHE)~^^^^^0^^6.25^^^ -~35188~^~3500~^~Fish, halibut, cooked, with skin (Alaska Native)~^~FISH,HALIBUT,CKD,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^ -~35190~^~3500~^~Salmon, red (sockeye), filets with skin, smoked (Alaska Native)~^~SALMON,RED (SOCKEYE),FILETS W/ SKN,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^ -~35192~^~3500~^~Agave, raw (Southwest)~^~AGAVE,RAW (SOUTHWEST)~^^^^^0^^6.25^^^ -~35193~^~3500~^~Agave, cooked (Southwest)~^~AGAVE,CKD (SOUTHWEST)~^^^^^0^^6.25^^^ -~35194~^~3500~^~Agave, dried (Southwest)~^~AGAVE,DRIED (SOUTHWEST)~^^^^^0^^6.25^^^ -~35195~^~3500~^~Cattail, Narrow Leaf Shoots (Northern Plains Indians)~^~CATTAIL,NARROW LEAF SHOOTS (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35196~^~3500~^~Lambsquarters, raw (Northern Plains Indians)~^~LAMBSQUARTERS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35197~^~3500~^~Lambsquarters, steamed (Northern Plains Indians)~^~LAMBSQUARTERS,STMD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35198~^~3500~^~Prickly pears, raw (Northern Plains Indians)~^~PRICKLY PEARS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35199~^~3500~^~Prickly pears, broiled (Northern Plains Indians)~^~PRICKLY PEARS,BRLD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35200~^~3500~^~Prairie Turnips, raw (Northern Plains Indians)~^~PRAIRIE TURNIPS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35201~^~3500~^~Prairie Turnips, boiled (Northern Plains Indians)~^~PRAIRIE TURNIPS,BLD (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35202~^~3500~^~Raspberries, wild (Northern Plains Indians)~^~RASPBERRIES,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35203~^~3500~^~Rose Hips, wild (Northern Plains Indians)~^~ROSE HIPS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35204~^~3500~^~Chokecherries, raw, pitted (Northern Plains Indians)~^~CHOKECHERRIES,RAW,PITTED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35205~^~3500~^~Stinging Nettles, blanched (Northern Plains Indians)~^~STINGING NETTLES,BLANCHED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^ -~35206~^~3500~^~Plums, wild (Northern Plains Indians)~^~PLUMS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^ -~35207~^~3500~^~Pinon Nuts, roasted (Navajo)~^~PINON NUTS,RSTD (NAVAJO)~^^^^^0^~Pinus spp.~^5.30^^^ -~35211~^~3500~^~Caribou, hind quarter, meat, cooked (Alaska Native)~^~CARIBOU,HIND QUARTER,MEAT,CKD (ALASKA NATIVE)~^^^^^0^^^^^ -~35225~^~3500~^~Agutuk, fish with shortening (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH W/ SHORTENING (ALASKAN ICE CREAM) (ALASKA NATIVE~^^^^^0^^6.25^^^ -~35226~^~3500~^~Sea lion, Steller, liver (Alaska Native)~^~SEA LION,STELLER,LIVER (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35227~^~3500~^~Sea lion, Steller, kidney (Alaska Native)~^~SEA LION,STELLER,KIDNEY (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35228~^~3500~^~Sea lion, Steller, heart (Alaska Native)~^~SEA LION,STELLER,HEART (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35229~^~3500~^~Sea lion, Steller, meat (Alaska Native)~^~SEA LION,STELLER,MEAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35230~^~3500~^~Sea lion, Steller, meat with fat (Alaska Native)~^~SEA LION,STELLER,MEAT W/ FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35231~^~3500~^~Sea lion, Steller, fat (Alaska Native)~^~SEA LION,STELLER,FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^ -~35232~^~3500~^~Wocas, dried seeds, Oregon, yellow pond lily (Klamath)~^~WOCAS,DRIED SEEDS,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35233~^~3500~^~Hazelnuts, beaked (Northern Plains Indians)~^~HAZELNUTS,BEAKED (NORTHERN PLAINS INDIANS)~^^^^^0^~Corylus cornuta Marsh.~^5.30^^^ -~35234~^~3500~^~Piki bread, made from blue cornmeal (Hopi)~^~PIKI BREAD,MADE FROM BLUE CORNMEAL (HOPI)~^^^^^0^^6.25^^^ -~35235~^~3500~^~Wocas, tuber, cooked, Oregon, yellow pond lily (Klamath)~^~WOCAS,TUBER,CKD,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^ -~35236~^~3500~^~Stew, pinto bean and hominy, badufsuki (Hopi)~^~STEW,PINTO BEAN & HOMINY,BADUFSUKI (HOPI)~^^^^^0^^^^^ -~35237~^~3500~^~Tamales, masa and pork filling (Hopi)~^~TAMALES,MASA & PORK FILLING (HOPI)~^^^^^0^^^^^ -~35238~^~3500~^~Tea, herbal, brewed, Hohoysi (Hopi)~^~TEA,HERBAL,BREWED,HOHOYSI (HOPI)~^^^^^0^^^^^ -~35239~^~3500~^~Tortilla, blue corn, Sakwavikaviki (Hopi)~^~TORTILLA,BLUE CORN,SAKWAVIKAVIKI (HOPI)~^^^^^0^^^^^ -~35240~^~3500~^~Bread, blue corn, somiviki (Hopi)~^~BREAD,BLUE CORN,SOMIVIKI (HOPI)~^^^^^0^^^^^ -~36000~^~3600~^~APPLEBEE'S, 9 oz house sirloin steak~^~APPLEBEE'S,9 OZ HOUSE SIRLOIN STEAK~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36001~^~3600~^~APPLEBEE'S, Double Crunch Shrimp~^~APPLEBEE'S,DOUBLE CRUNCH SHRIMP~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36002~^~3600~^~APPLEBEE'S, french fries~^~APPLEBEE'S,FRENCH FR~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36003~^~3600~^~APPLEBEE'S, KRAFT, Macaroni & Cheese, from kid's menu~^~APPLEBEE'S,KRAFT,MACARONI & CHS,FROM KID'S MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36004~^~3600~^~APPLEBEE'S, mozzarella sticks~^~APPLEBEE'S,MOZZARELLA STKS~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36005~^~3600~^~APPLEBEE'S, chicken tenders, from kids' menu~^~APPLEBEE'S,CHICK TENDERS,FROM KIDS' MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36006~^~3600~^~T.G.I. FRIDAY'S, FRIDAY'S Shrimp, breaded~^~T.G.I. FRIDAY'S,FRIDAY'S SHRIMP,BREADED~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36007~^~3600~^~T.G.I. FRIDAY'S, french fries~^~T.G.I. FRIDAY'S,FRENCH FR~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36008~^~3600~^~T.G.I. FRIDAY'S, fried mozzarella~^~T.G.I. FRIDAY'S, fried mozzarella~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36009~^~3600~^~T.G.I. FRIDAY'S, macaroni & cheese, from kid's menu~^~T.G.I. FRIDAY'S,MACARONI & CHS,FROM KID'S MENU~^~family style, Fridays, macaroni, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36010~^~3600~^~T.G.I. FRIDAY'S, chicken fingers, from kids' menu~^~T.G.I. FRIDAY'S,CHICK FINGERS,FROM KIDS' MENU~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36011~^~3600~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^ -~36012~^~3600~^~Restaurant, family style, fried mozzarella sticks~^~RESTAURANT,FAMILY STYLE,FRIED MOZZARELLA STKS~^~family style~^^~Y~^^0^^^^^ -~36013~^~3600~^~Restaurant, family style, sirloin steak~^~RESTAURANT,FAMILY STYLE,SIRLOIN STEAK~^~family style~^^^^0^^^^^ -~36014~^~3600~^~Restaurant, family style, french fries~^~RESTAURANT,FAMILY STYLE,FRENCH FR~^~family style~^^^^0^^^^^ -~36015~^~3600~^~Restaurant, family style, chicken fingers, from kid's menu~^~RESTAURANT,FAMILY STYLE,CHICK FINGERS,FROM KID'S MENU~^~family style~^^^^0^^^^^ -~36016~^~3600~^~Restaurant, family style, shrimp, breaded and fried~^~RESTAURANT,FAMILY STYLE,SHRIMP,BREADED & FRIED~^~family style~^^~Y~^^0^^^^^ -~36017~^~3600~^~Restaurant, family style, macaroni & cheese, from kids' menu~^~RESTAURANT,FAMILY STYLE,MACARONI & CHS,FROM KIDS' MENU~^~family style~^^~Y~^^0^^^^^ -~36018~^~3600~^~APPLEBEE'S, fish, hand battered~^~APPLEBEE'S,FISH,HAND BATTERED~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36019~^~3600~^~APPLEBEE'S, chili~^~APPLEBEE'S,CHILI~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36020~^~3600~^~T.G.I. FRIDAY'S, chicken fingers~^~T.G.I. FRIDAY'S,CHICK FINGERS~^^~T.G.I Friday's~^^^0^^^^^ -~36021~^~3600~^~APPLEBEE'S, coleslaw~^~APPLEBEE'S,COLESLAW~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36022~^~3600~^~APPLEBEE'S, crunchy onion rings~^~APPLEBEE'S,CRUNCHY ONION RINGS~^~applebees, family style~^~Applebee's~^^^0^^^^^ -~36023~^~3600~^~APPLEBEE'S, chicken tenders platter~^~APPLEBEE'S,CHICK TENDERS PLATTER~^~family style, applebees~^~Applebee's~^^^0^^^^^ -~36024~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED~^^~Cracker Barrel~^^^0^^^^^ -~36025~^~3600~^~CRACKER BARREL, coleslaw~^~CRACKER BARREL,COLESLAW~^^~Cracker Barrel~^^^0^^^^^ -~36026~^~3600~^~CRACKER BARREL, onion rings, thick-cut~^~CRACKER BARREL,ONION RINGS,THICK-CUT~^^~Cracker Barrel~^^^0^^^^^ -~36027~^~3600~^~DENNY'S, chicken strips~^~DENNY'S,CHICK STRIPS~^^~Denny's~^^^0^^^^^ -~36028~^~3600~^~DENNY'S, coleslaw~^~DENNY'S,COLESLAW~^^~Denny's~^^^0^^^^^ -~36029~^~3600~^~DENNY'S, fish fillet, battered or breaded, fried~^~DENNY'S,FISH FILLET,BATTERED OR BREADED,FRIED~^^~Denny's~^^^0^^^^^ -~36030~^~3600~^~DENNY'S, hash browns~^~DENNY'S,HASH BROWNS~^^~Denny's~^^^0^^^^^ -~36031~^~3600~^~DENNY'S, onion rings~^~DENNY'S,ONION RINGS~^^~Denny's~^^^0^^^^^ -~36032~^~3600~^~DENNY'S, spaghetti and meatballs~^~DENNY'S,SPAGHETTI & MEATBALLS~^^~Denny's~^^^0^^^^^ -~36033~^~3600~^~Restaurant, family style, fish fillet, battered or breaded, fried~^~RESTAURANT,FAMILY STYLE,FISH FILLET,BATTERED OR BREAD,FRIED~^~family style~^^~Y~^^0^^^^^ -~36034~^~3600~^~Restaurant, family style, chicken tenders~^~RESTAURANT,FAMILY STYLE,CHICK TENDERS~^~family style~^^^^0^^^^^ -~36035~^~3600~^~Restaurant, family style, coleslaw~^~RESTAURANT,FAMILY STYLE,COLESLAW~^~family style~^^~Y~^^0^^^^^ -~36036~^~3600~^~Restaurant, family style, onion rings~^~RESTAURANT,FAMILY STYLE,ONION RINGS~^~family style~^^^^0^^^^^ -~36037~^~3600~^~Restaurant, family style, chili with meat and beans~^~RESTAURANT,FAMILY STYLE,CHILI W/ MEAT & BNS~^^^~Y~^^0^^^^^ -~36038~^~3600~^~Restaurant, family style, spaghetti and meatballs~^~RESTAURANT,FAMILY STYLE,SPAGHETTI & MEATBALLS~^^^^^0^^^^^ -~36039~^~3600~^~Restaurant, family style, hash browns~^~RESTAURANT,FAMILY STYLE,HASH BROWNS~^^^^^0^^^4.00^9.00^4.00 -~36040~^~3600~^~CRACKER BARREL, macaroni n' cheese~^~CRACKER BARREL,MACARONI N' CHS~^~macaroni and cheese, family style~^~Cracker Barrel~^^^0^^^^^ -~36041~^~3600~^~Restaurant, Italian, lasagna with meat~^~RESTAURANT,ITALIAN,LASAGNA W/ MEAT~^^^~Y~^^0^^^^^ -~36042~^~3600~^~OLIVE GARDEN, lasagna classico~^~OLIVE GARDEN,LASAGNA CLASSICO~^^~Darden Group~^^^0^^^^^ -~36043~^~3600~^~CARRABBA'S ITALIAN GRILL, lasagne~^~CARRABBA'S ITALIAN GRILL,LASAGNE~^~lasagna~^~Carrabba's Italian Grill~^^^0^^^^^ -~36044~^~3600~^~ON THE BORDER, Mexican rice~^~ON THE BORDER,MEXICAN RICE~^^^^^0^^^^^ -~36045~^~3600~^~ON THE BORDER, refried beans~^~ON THE BORDER,REFRIED BNS~^^^^^0^^^^^ -~36046~^~3600~^~Restaurant, Italian, spaghetti with pomodoro sauce (no meat)~^~RESTAURANT,ITALIAN,SPAGHETTI W/ POMODORO SAU (NO MEAT)~^^^^^0^^^^^ -~36047~^~3600~^~OLIVE GARDEN, spaghetti with pomodoro sauce~^~OLIVE GARDEN,SPAGHETTI W/ POMODORO SAU~^^~Darden Group~^^^0^^^^^ -~36048~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with pomodoro sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ POMODORO SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36049~^~3600~^~ON THE BORDER, cheese enchilada~^~ON THE BORDER,CHS ENCHILADA~^^^^^0^^^^^ -~36050~^~3600~^~Restaurant, Mexican, cheese enchilada~^~RESTAURANT,MEXICAN,CHS ENCHILADA~^^^^^0^^^^^ -~36051~^~3600~^~ON THE BORDER, cheese quesadilla~^~ON THE BORDER,CHS QUESADILLA~^^^^^0^^^^^ -~36052~^~3600~^~Restaurant, Mexican, cheese quesadilla~^~RESTAURANT,MEXICAN,CHS QUESADILLA~^^^^^0^^^^^ -~36053~^~3600~^~CARRABBA'S ITALIAN GRILL, cheese ravioli with marinara sauce~^~CARRABBA'S ITALIAN GRILL,CHS RAVIOLI W/ MARINARA SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36054~^~3600~^~OLIVE GARDEN, cheese ravioli with marinara sauce~^~OLIVE GARDEN,CHS RAVIOLI W/ MARINARA SAU~^^~Darden Group~^^^0^^^^^ -~36055~^~3600~^~Restaurant, Italian, cheese ravioli with marinara sauce~^~RESTAURANT,ITALIAN,CHS RAVIOLI W/ MARINARA SAU~^^^^^0^^^^^ -~36056~^~3600~^~Restaurant, Mexican, cheese tamales~^~RESTAURANT,MEXICAN,CHS TAMALES~^^^^^0^^^^^ -~36057~^~3600~^~CARRABBA'S ITALIAN GRILL, chicken parmesan without cavatappi pasta~^~CARRABBA'S ITALIAN GRILL,CHICK PARMESAN WO/ CAVATAPPI PASTA~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36058~^~3600~^~OLIVE GARDEN, chicken parmigiana without pasta~^~OLIVE GARDEN,CHICK PARMIGIANA WO/ PASTA~^^~Darden Group~^^^0^^^^^ -~36059~^~3600~^~Restaurant, Italian, chicken parmesan without pasta~^~RESTAURANT,ITALIAN,CHICK PARMESAN WO/ PASTA~^^^^^0^^^^^ -~36060~^~3600~^~ON THE BORDER, soft taco with ground beef, cheese and lettuce~^~ON THE BORDER,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36061~^~3600~^~Restaurant, Mexican, soft taco with ground beef, cheese and lettuce~^~RESTAURANT,MEXICAN,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^ -~36401~^~3600~^~Restaurant, Latino, chicken and rice, entree, prepared~^~RESTAURANT,LATINO,CHICK & RICE,ENTREE,PREP~^^^^^0^^^^^ -~36403~^~3600~^~Restaurant, Latino, empanadas, beef, prepared~^~RESTAURANT,LATINO,EMPANADAS,BF,PREP~^^^~Y~^^0^^^^^ -~36404~^~3600~^~Restaurant, Latino, arroz con leche (rice pudding)~^~RESTAURANT,LATINO,ARROZ CON LECHE (RICE PUDDING)~^^^^^0^^^^^ -~36405~^~3600~^~Restaurant, Latino, Arroz con frijoles negros (rice and black beans)~^~RESTAURANT,LATINO,ARROZ CON FRIJOLES NEGROS (RICE&BLACK BNS)~^^^^^0^^^^^ -~36406~^~3600~^~Restaurant, Latino, Arroz con habichuelas colorados (Rice And Red Beans)~^~REST,LATINO,ARROZ CON ABICHUELAS COLORADOS (RICE&RED BNS)~^^^^^0^^^^^ -~36407~^~3600~^~Restaurant, Latino, Arroz con grandules (rice and pigeonpeas)~^~RESTAURANT,LATINO,ARROZ CON GRANDULES (RICE & PIGEONPEAS)~^^^^^0^^^^^ -~36408~^~3600~^~Restaurant, Latino, pupusas con frijoles (pupusas, bean)~^~RESTAURANT,LATINO,PUPUSAS CON FRIJOLES (PUPUSAS,BEAN)~^^^^^0^^^^^ -~36409~^~3600~^~Restaurant, Latino, pupusas con queso (pupusas, cheese)~^~RESTAURANT,LATINO,PUPUSAS CON QUESO (PUPUSAS,CHEESE)~^^^~Y~^^0^^^^^ -~36410~^~3600~^~Restaurant, Latino, pupusas del cerdo (pupusas, pork)~^~RESTAURANT,LATINO,PUPUSAS DEL CERDO (PUPUSAS,PORK)~^^^~Y~^^0^^^^^ -~36411~^~3600~^~Restaurant, Latino, tamale, corn~^~RESTAURANT,LATINO,TAMALE,CORN~^^^~Y~^^0^^^^^ -~36412~^~3600~^~Restaurant, Latino, tamale, pork~^~RESTAURANT,LATINO,TAMALE,PORK~^^^~Y~^^0^^^^^ -~36413~^~3600~^~Restaurant, Latino, black bean soup~^~RESTAURANT,LATINO,BLACK BEAN SOUP~^^^^^0^^^^^ -~36414~^~3600~^~Restaurant, Latino, tripe soup~^~RESTAURANT,LATINO,TRIPE SOUP~^^^^^0^^^^^ -~36415~^~3600~^~Restaurant, Latino, arepa (unleavened cornmeal bread)~^~RESTAURANT,LATINO,AREPA (UNLEAVENED CORNMEAL BREAD)~^^^^^0^^^^^ -~36416~^~3600~^~Restaurant, Latino, bunuelos (fried yeast bread)~^~RESTAURANT,LATINO,BUNUELOS (FRIED YEAST BREAD)~^^^^^0^^^^^ -~36417~^~3600~^~Restaurant, Mexican, spanish rice~^~RESTAURANT,MEXICAN,SPANISH RICE~^^^~Y~^^0^^^^^ -~36418~^~3600~^~Restaurant, Mexican, refried beans~^~RESTAURANT,MEXICAN,REFRIED BNS~^^^~Y~^^0^^^^^ -~36601~^~3600~^~Restaurant, Chinese, egg rolls, assorted~^~RESTAURANT,CHINESE,EGG ROLLS,ASSORTED~^^^^^0^^^^^ -~36602~^~3600~^~Restaurant, Chinese, fried rice, without meat~^~RESTAURANT,CHINESE,FRIED RICE,WO/ MEAT~^^^~Y~^^0^^^^^ -~36603~^~3600~^~Restaurant, Chinese, beef and vegetables~^~RESTAURANT,CHINESE,BF & VEG~^^^~Y~^^0^^^4.00^9.00^4.00 -~36604~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried, from kid's menu~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED,FRM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36605~^~3600~^~CRACKER BARREL, country fried shrimp platter~^~CRACKER BARREL,COUNTRY FRIED SHRIMP PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36606~^~3600~^~CRACKER BARREL, farm raised catfish platter~^~CRACKER BARREL,FARM RAISED CATFISH PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36607~^~3600~^~CRACKER BARREL, steak fries~^~CRACKER BARREL,STEAK FRIES~^~french, family style~^~Cracker Barrel~^^^0^^^^^ -~36608~^~3600~^~CRACKER BARREL, grilled sirloin steak~^~CRACKER BARREL,GRILLED SIRLOIN STEAK~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36609~^~3600~^~CRACKER BARREL, macaroni n' cheese plate, from kid's menu~^~CRACKER BARREL,MACARONI N' CHS PLATE,FROM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^ -~36610~^~3600~^~DENNY'S, french fries~^~DENNY'S,FRENCH FR~^~family style~^~Denny's~^^^0^^^^^ -~36611~^~3600~^~DENNY'S, mozzarella cheese sticks~^~DENNY'S,MOZZARELLA CHS STKS~^~family style~^~Denny's~^^^0^^^^^ -~36612~^~3600~^~DENNY'S, golden fried shrimp~^~DENNY'S,GOLDEN FRIED SHRIMP~^~family style~^~Denny's~^^^0^^^^^ -~36613~^~3600~^~DENNY'S, macaroni & cheese, from kid's menu~^~DENNY'S,MACARONI & CHS,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36614~^~3600~^~DENNY'S, chicken nuggets, star shaped, from kid's menu~^~DENNY'S,CHICK NUGGETS,STAR SHAPED,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^ -~36615~^~3600~^~DENNY'S, top sirloin steak~^~DENNY'S,TOP SIRLOIN STEAK~^~family style~^~Denny's~^^^0^^^^^ -~36617~^~3600~^~Restaurant, Chinese, lemon chicken~^~RESTAURANT,CHINESE,LEMON CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36618~^~3600~^~Restaurant, Chinese, general tso's chicken~^~RESTAURANT,CHINESE,GENERAL TSO'S CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36619~^~3600~^~Restaurant, Chinese, kung pao chicken~^~RESTAURANT,CHINESE,KUNG PAO CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36620~^~3600~^~Restaurant, Chinese, shrimp and vegetables~^~RESTAURANT,CHINESE,SHRIMP & VEG~^^^^^0^^^4.00^9.00^4.00 -~36621~^~3600~^~Restaurant, Chinese, sweet and sour chicken~^~RESTAURANT,CHINESE,SWT & SOUR CHICK~^^^~Y~^^0^^^4.00^9.00^4.00 -~36622~^~3600~^~Restaurant, Chinese, sweet and sour pork~^~RESTAURANT,CHINESE,SWT & SOUR PORK~^^^^^0^^^4.00^9.00^4.00 -~36623~^~3600~^~Restaurant, Chinese, chicken chow mein~^~RESTAURANT,CHINESE,CHICK CHOW MEIN~^^^^^0^^^4.00^9.00^4.00 -~36624~^~3600~^~Restaurant, Chinese, vegetable chow mein, without meat or noodles~^~RESTAURANT,CHINESE,VEG CHOW MEIN,WO/ MEAT OR NOODLES~^^^~Y~^^0^^^^^ -~36625~^~3600~^~Restaurant, Chinese, vegetable lo mein, without meat~^~RESTAURANT,CHINESE,VEG LO MEIN,WO/ MEAT~^^^~Y~^^0^^^^^ -~36626~^~3600~^~Restaurant, Chinese, chicken and vegetables~^~RESTAURANT,CHINESE,CHICK & VEG~^^^~Y~^^0^^^^^ -~36629~^~3600~^~Restaurant, Chinese, orange chicken~^~RESTAURANT,CHINESE,ORANGE CHICK~^^^~Y~^^0^^^^^ -~36630~^~3600~^~Restaurant, Italian, spaghetti with meat sauce~^~RESTAURANT,ITALIAN,SPAGHETTI W/ MEAT SAU~^^^^^0^^^^^ -~36631~^~3600~^~OLIVE GARDEN, spaghetti with meat sauce~^~OLIVE GARDEN,SPAGHETTI W/ MEAT SAU~^^~Darden Group~^^^0^^^^^ -~36632~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with meat sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ MEAT SAU~^^~Carrabba's Italian Grill~^^^0^^^^^ -~36633~^~3600~^~Restaurant, Chinese, sesame chicken~^~RESTAURANT,CHINESE,SESAME CHICK~^^^~Y~^^0^^^^^ -~42040~^~1900~^~Syrups, grenadine~^~SYRUPS,GRENADINE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42055~^~1400~^~Beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame~^~BEVERAGES,FRUIT-FLAVORED DRK,DRY PDR MIX,LO CAL,W/ ASPRT~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~42063~^~1900~^~Pectin, liquid~^~PECTIN,LIQUID~^^^~Y~^^0^^^^^ -~42074~^~1900~^~Frozen novelties, ice cream type, vanilla ice cream, light, no sugar added, chocolate coated~^~FROZ NOVLT,ICE CRM,VAN ICE CRM,LT,NO SUGAR ADDED,CHOC COATD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~42116~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie~^~CREAMY DRSNG,MADE W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL~^^^~Y~^^0^^^^^ -~42117~^~0100~^~Imitation cheese, american or cheddar, low cholesterol~^~IMITATION CHS,AMERICAN OR CHEDDAR,LO CHOL~^^^~Y~^^0^^6.38^^^ -~42119~^~0300~^~Babyfood, banana juice with low fat yogurt~^~BABYFOOD,BANANA JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42120~^~0300~^~Babyfood, mixed fruit juice with low fat yogurt~^~BABYFOOD,MXD FRUIT JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42128~^~0700~^~Ham, turkey, sliced, extra lean, prepackaged or deli~^~HAM,TURKEY,SLICED,EX LN,PREPACKAGED OR DELI~^^^~Y~^^0^^^^^ -~42129~^~0700~^~Bologna, beef and pork, low fat~^~BOLOGNA,BF&PORK,LOFAT~^^^~Y~^^0^^^^^ -~42131~^~1900~^~Milk dessert, frozen, milk-fat free, chocolate~^~MILK DSSRT,FRZ,MILK-FAT FREE,CHOC~^^^~Y~^^0^^6.25^^^ -~42135~^~0100~^~Whipped topping, frozen, low fat~^~WHIPPED TOPPING,FRZ,LOFAT~^^^~Y~^^0^^6.38^^^ -~42136~^~0100~^~Cream substitute, powdered, light~^~CREAM SUB,PDR,LT~^^^~Y~^^0^^6.29^^^ -~42137~^~0400~^~Salad dressing, peppercorn dressing, commercial, regular~^~SALAD DRSNG,PEPPERCORN DRSNG,COMM,REG~^^^~Y~^^0^^^^^ -~42138~^~0400~^~Mayonnaise, reduced-calorie or diet, cholesterol-free~^~MAYONNAISE,RED-CAL OR DIET,CHOL-FREE~^^^~Y~^^0^^^^^ -~42139~^~2500~^~Granola bar, soft, milk chocolate coated, peanut butter~^~GRANOLA BAR,SOFT,MILK CHOC COATD,PNUT BUTTER~^^^~Y~^^0^^^^^ -~42140~^~0400~^~Salad dressing, italian dressing, reduced calorie~^~SALAD DRSNG,ITALIAN DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42141~^~0100~^~Cream substitute, liquid, light~^~CREAM SUB,LIQ,LT~^^^~Y~^^0^^6.29^^^ -~42148~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Butter Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT BUTTER CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42150~^~0300~^~Babyfood, apple yogurt dessert, strained~^~BABYFOOD,APPL YOGURT DSSRT,STR~^^^~Y~^^0^^6.38^4.27^8.79^3.87 -~42151~^~0400~^~Vegetable oil-butter spread, reduced calorie~^~VEGETABLE OIL-BUTTER SPRD,RED CAL~^^^~Y~^^0^^^^^ -~42153~^~0400~^~Salad dressing, blue or roquefort cheese dressing, light~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,LT~^^^~Y~^^0^^^^^ -~42155~^~0100~^~Cheese, monterey, low fat~^~CHEESE,MONTEREY,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42157~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, fat-free~^~CRMY DRSG,MDE W/ SOUR CRM AND/OR BTRMLK & OIL,RED CAL,FTFREE~^^^~Y~^^0^^^^^ -~42158~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, cholesterol-free~^~CREAMY DRSNG,W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL,CHOL-FREE~^^^~Y~^^0^^^^^ -~42161~^~0700~^~Bologna, beef, low fat~^~BOLOGNA,BEEF,LOW FAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42171~^~0400~^~Salad dressing, french dressing, reduced calorie~^~SALAD DRSNG,FRENCH DRSNG,RED CAL~^^^~Y~^^0^^^^^ -~42173~^~0700~^~Sausage, turkey and pork, fresh, bulk, patty or link, cooked~^~SAUSAGE,TURKEY & PORK,FRSH,BULK,PATTY OR LINK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42178~^~0400~^~Mayonnaise, made with tofu~^~MAYONNAISE,MADE WITH TOFU~^^^~Y~^^0^^^^^ -~42179~^~0700~^~Frankfurter, beef, low fat~^~FRANKFURTER,BF,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42183~^~1900~^~Candies, MARS SNACKFOOD US, TWIX chocolate fudge cookie bars~^~CANDIES,MARS SNACKFOOD US,TWIX CHOC FUDGE COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42185~^~1900~^~Frozen yogurts, chocolate, nonfat milk, sweetened without sugar~^~YOGURT,FRZ,CHOC,NON-FAT MILK,W/LO CAL SWTNR~^^^~Y~^^0^^6.25^^^ -~42186~^~1900~^~Frozen yogurts, chocolate~^~FROZEN YOGURTS,CHOC~^^^~Y~^^0^^6.25^^^ -~42187~^~1900~^~Frozen yogurts, flavors other than chocolate~^~FROZEN YOGURTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^^^^ -~42189~^~0100~^~Milk, buttermilk, fluid, cultured, reduced fat~^~MILK,BTTRMLK,FLUID,CULTURED,RED FAT~^^^~Y~^^0^^6.38^^^ -~42190~^~0700~^~Pork sausage rice links, brown and serve, cooked~^~PORK SAUSAGE RICE LINKS,BROWN&SERVE,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~42192~^~0400~^~Salad dressing, blue or roquefort cheese dressing, fat-free~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,FAT-FREE~^^^~Y~^^0^^^4.03^8.84^3.80 -~42193~^~0400~^~Salad Dressing, mayonnaise-like, fat-free~^~SALAD DRSNG,MAYONNAISE-LIKE,FAT-FREE~^^^~Y~^^0^^^^^ -~42196~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Midnight Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY MIDNIGHT BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42200~^~1600~^~Papad~^~PAPAD~^^^~Y~^^0^^^^^ -~42204~^~2500~^~Rice cake, cracker (include hain mini rice cakes)~^~RICE CAKE,CRACKER (INCL HAIN MINI RICE CAKES)~^^^~Y~^^0^^^^^ -~42227~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Almond Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S ALMOND CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^ -~42230~^~0400~^~Salad Dressing, coleslaw, reduced fat~^~SALAD DRSNG,COLESLAW,RED FAT~^^^~Y~^^0^^^2.44^8.84^3.80 -~42231~^~0400~^~Oil, flaxseed, cold pressed~^~OIL,FLAXSEED,COLD PRESSED~^^^~Y~^^0^^^^8.84^ -~42235~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, lactose reduced~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,LACTOSE RED~^^^~Y~^^0^^6.38^^^ -~42236~^~0800~^~Cereals ready-to-eat, frosted oat cereal with marshmallows~^~CEREALS RTE,FRSTD OAT CRL W/MARSHMALLOWS~^^^~Y~^^0^^^^^ -~42237~^~0800~^~Cereals ready-to-eat, WEETABIX whole grain cereal~^~CEREALS RTE,WEETABIX WHL GRAIN CRL~^^~The Weetabix Company~^~Y~^^0^^^^^ -~42240~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with almonds~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ ALMONDS~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42256~^~0400~^~Margarine-like, vegetable oil spread, stick or tub, sweetened~^~MARGARINE-LIKE,VEG OIL SPRD,STK OR TUB,SWTND~^^^~Y~^^0^^^^^ -~42259~^~2500~^~Snacks, popcorn, home-prepared, oil-popped, unsalted~^~SNACKS,POPCORN,HOME-PREPARED,OIL-POPPED,UNSALTED~^^^~Y~^^0^^^^^ -~42261~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS Crunchy Pecan Cereal~^~CEREALS RTE,POST,GREAT GRAINS CRUNCHY PECAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42265~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS, Raisin, Date & Pecan~^~CEREALS RTE,POST,GREAT GRAINS,RAISIN,DATE & PECAN~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42266~^~0300~^~Babyfood, juice, apple-sweet potato~^~BABYFOOD,JUC,APPLE-SWEET POTATO~^^^~Y~^^0^^6.25^3.34^8.37^3.92 -~42267~^~0300~^~Babyfood, juice, orange-carrot~^~BABYFOOD,JUC,ORANGE-CARROT~^^^~Y~^^0^^6.25^^^ -~42270~^~1400~^~Beverages, Orange juice drink~^~BEVERAGES,ORANGE JUC DRK~^^^^^0^^6.25^4.00^9.00^4.00 -~42272~^~2500~^~Snacks, granola bar, with coconut, chocolate coated~^~GRANOLA BAR,W/COCNT,CHOC COATD~^^^~Y~^^0^^^^^ -~42278~^~0300~^~Babyfood, vegetable and brown rice, strained~^~BABYFOOD,VEG&BROWN RICE,STR~^^^~Y~^^0^^^^^ -~42279~^~0300~^~Babyfood, peas and brown rice~^~BABYFOOD,PEAS&BROWN RICE~^^^~Y~^^0^^6.25^^^ -~42280~^~0700~^~Frankfurter, meat and poultry, low fat~^~FRANKFURTER,MEAT & POULTRY,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~42281~^~1900~^~Gums, seed gums (includes locust bean, guar)~^~GUMS,SD GUMS (INCL LOCUST BEAN,GUAR)~^^^^^0^^6.25^^^ -~42283~^~2500~^~Snacks, potato chips, white, restructured, baked~^~POTATO CHIPS,WHITE,RESTRUCTURED,BKD~^^^~Y~^^0^^^^^ -~42284~^~0300~^~Babyfood, baked product, finger snacks cereal fortified~^~BABYFOOD,BKD PRODUCT,FINGER SNACKS CRL FORT~^^^~Y~^^0^^6.25^^^ -~42285~^~0300~^~Babyfood, cereal, brown rice, dry, instant~^~BABYFOOD,CRL,BROWN RICE,DRY,INST~^^^~Y~^^0^^6.25^^^ -~42286~^~0300~^~Babyfood, green beans and turkey, strained~^~BABYFOOD,GRN BNS&TURKEY,STR~^^^^^0^^6.25^^^ -~42289~^~0400~^~Oil, corn and canola~^~OIL,CORN AND CANOLA~^^^~Y~^^0^^^^8.84^ -~42290~^~0100~^~Milk, fluid, nonfat, calcium fortified (fat free or skim)~^~MILK,FLUID,NONFAT,CA FORT (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^ -~42291~^~1600~^~Peanut butter, reduced sodium~^~PEANUT BUTTER,RED NA~^^^~Y~^^0^^5.46^3.47^8.37^4.07 -~42297~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Banana Nut Crunch~^~CEREALS RTE,POST GREAT GRAINS BANANA NUT CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~42303~^~0100~^~Cheese, muenster, low fat~^~CHEESE,MUENSTER,LOW FAT~^^^~Y~^^0^^6.38^^^ -~42304~^~0100~^~Cheese, mozzarella, nonfat~^~CHEESE,MOZZARELLA,NON-FAT~^^^~Y~^^0^^6.38^^^ -~42307~^~0400~^~Margarine-like, butter-margarine blend, 80% fat, stick, without salt~^~MARGARINE-LIKE,BUTTER-MARGARINE BLEND,80% FAT,STK,WO/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87 -~42309~^~0400~^~Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,RED CAL,TUB,W/ SALT~^^^~Y~^^0^^^^^ -~42316~^~0300~^~Babyfood, carrots, toddler~^~BABYFOOD,CARROTS,TODDLER~^^^~Y~^^0^^6.25^3.98^8.37^3.16 -~43004~^~0300~^~Babyfood, dessert, banana pudding, strained~^~BABYFOOD,DSSRT,BANANA PUDD,STR~^^^~Y~^^0^^6.25^^^ -~43006~^~0300~^~Babyfood, fruit, tutti frutti, strained~^~BABYFOOD,FRUIT,TUTTI FRUTTI,STR~^^^~Y~^^0^^6.25^^^ -~43007~^~0300~^~Babyfood, fruit, tutti frutti, junior~^~BABYFOOD,FRUIT,TUTTI FRUTTI,JR~^^^~Y~^^0^^6.25^^^ -~43008~^~0300~^~Babyfood, dinner, chicken and rice~^~BABYFOOD,DINNER,CHICK&RICE~^^^~Y~^^0^^6.25^^^ -~43015~^~0400~^~Salad dressing, caesar dressing, regular~^~SALAD DRSNG,CAESAR DRSNG,REG~^^^~Y~^^0^^^^^ -~43016~^~0400~^~Salad dressing, coleslaw~^~Salad dressing, coleslaw~^^^~Y~^^0^^^^^ -~43017~^~0400~^~Salad dressing, green goddess, regular~^~SALAD DRSNG,GRN GODDESS,REG~^^^~Y~^^0^^^^^ -~43019~^~0400~^~Salad dressing, sweet and sour~^~SALAD DRSNG,SWT&SOUR~^^^~Y~^^0^^^^^ -~43020~^~0400~^~Salad dressing, blue or roquefort cheese, low calorie~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS,LO CAL~^^^~Y~^^0^^^^^ -~43021~^~0400~^~Salad dressing, caesar, low calorie~^~SALAD DRSNG,CAESAR,LO CAL~^^^~Y~^^0^^^^^ -~43026~^~1900~^~Syrups, sugar free~^~SYRUPS,SUGAR FREE~^^^~Y~^^0^^6.25^^^ -~43027~^~1900~^~Jellies, no sugar (with sodium saccharin), any flavors~^~JELLIES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVORS~^^^~Y~^^0^^6.25^^^ -~43028~^~1900~^~Jams and preserves, no sugar (with sodium saccharin), any flavor~^~JAMS & PRESERVES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVOR~^^^~Y~^^0^^6.25^0.00^0.00^2.47 -~43031~^~1900~^~Candies, chocolate covered, caramel with nuts~^~CANDIES,CHOC COVERED,CARAMEL W/NUTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43046~^~1900~^~Candies, nougat, with almonds~^~CANDIES,NOUGAT,W/ ALMONDS~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43057~^~1900~^~Candies, gum drops, no sugar or low calorie (sorbitol)~^~CANDIES,GUM DROPS,NO SUGAR OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43058~^~1900~^~Candies, hard, dietetic or low calorie (sorbitol)~^~CANDIES,HARD,DIETETIC OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^ -~43059~^~1900~^~Candies, chocolate covered, low sugar or low calorie~^~CANDIES,CHOC COVERED,LO SUGAR OR LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43060~^~1900~^~Chewing gum, sugarless~^~CHEWING GUM,SUGARLESS~^^^~Y~^^0^^6.25^^^ -~43075~^~0300~^~Fluid replacement, electrolyte solution (include PEDIALYTE)~^~FLUID REPLCMNT,ELECTROLYTE SOLN (INCLUDE PEDIALYTE)~^^^~Y~^^0^^^^^ -~43098~^~1900~^~Pie fillings, cherry, low calorie~^~PIE FILLINGS,CHERRY,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43100~^~2500~^~Breakfast bars, oats, sugar, raisins, coconut (include granola bar)~^~BREAKFAST BARS,OATS,SUGAR,RAISINS,COCNT (INCL GRANOLA BAR)~^^^~Y~^^0^^^^^ -~43109~^~2500~^~Pretzels, soft~^~PRETZELS,SOFT~^^^~Y~^^0^^6.25^^^ -~43112~^~1600~^~Beans, chili, barbecue, ranch style, cooked~^~BEANS,CHILI,BARBECUE,RANCH STYLE,CKD~^^^~Y~^^0^^^^^ -~43114~^~1600~^~Vermicelli, made from soy~^~VERMICELLI,MADE FROM SOY~^^^~Y~^^0^^^^^ -~43125~^~1600~^~Beans, liquid from stewed kidney beans~^~BEANS,LIQ FROM STWD KIDNEY BNS~^^^~Y~^^0^^^^^ -~43128~^~1600~^~Chicken, meatless~^~CHICKEN,MEATLESS~^^^~Y~^^0^^^^^ -~43130~^~1600~^~Frankfurter, meatless~^~FRANKFURTER,MEATLESS~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43131~^~1600~^~Luncheon slices, meatless~^~LUNCHEON SLICES,MEATLESS~^^^~Y~^^0^^^^^ -~43132~^~1600~^~Meatballs, meatless~^~MEATBALLS,MEATLESS~^^^~Y~^^0^^^^^ -~43134~^~1600~^~Vegetarian fillets~^~VEGETARIAN FILLETS~^^^~Y~^^0^^^^^ -~43135~^~1600~^~Sandwich spread, meatless~^~SANDWICH SPREAD,MEATLESS~^^^~Y~^^0^^^^^ -~43137~^~1600~^~Vegetarian meatloaf or patties~^~VEGETARIAN MEATLOAF OR PATTIES~^^^~Y~^^0^^^^^ -~43142~^~1100~^~Radishes, hawaiian style, pickled~^~RADISHES,HAWAIIAN STYLE,PICKLED~^^^~Y~^^0^^^^^ -~43143~^~1100~^~Cabbage, japanese style, fresh, pickled~^~CABBAGE,JAPANESE STYLE,FRSH,PICKLED~^^^~Y~^^0^^^^^ -~43144~^~1100~^~Cabbage, mustard, salted~^~CABBAGE,MUSTARD,SALTED~^^^~Y~^^0^^^^^ -~43146~^~1100~^~Eggplant, pickled~^~EGGPLANT,PICKLED~^^^~Y~^^0^^^^^ -~43154~^~1400~^~Alcoholic beverage, wine, cooking~^~ALCOHOLIC BEV,WINE,COOKING~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43155~^~1400~^~Alcoholic beverage, wine, light~^~ALCOHOLIC BEV,WINE,LT~^^^~Y~^^0^^^^^ -~43158~^~1900~^~Sweeteners, tabletop, saccharin (sodium saccharin)~^~SWEETENERS,TABLETOP,SACCHARIN (SODIUM SACCHARIN)~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43205~^~0100~^~Beverage, instant breakfast powder, chocolate, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43212~^~1600~^~Bacon bits, meatless~^~BACON BITS,MEATLESS~^^^~Y~^^0^^^^^ -~43214~^~0400~^~Butter replacement, without fat, powder~^~BUTTER REPLCMNT,WO/FAT,PDR~^^^~Y~^^0^^^^^ -~43215~^~0400~^~Salad dressing, buttermilk, lite~^~SALAD DRSNG,BTTRMLK,LITE~^^^~Y~^^0^^^^^ -~43216~^~1900~^~Sweeteners, tabletop, fructose, dry, powder~^~SWEETENERS,TABLETOP,FRUCTOSE,DRY,PDR~^^^~Y~^^0^^6.25^^^ -~43217~^~1100~^~Tomato sauce, canned, no salt added~^~TOMATO SAU,CND,NO SALT ADDED~^^^^^0^^6.25^2.44^8.37^3.57 -~43218~^~0800~^~Cereals ready-to-eat, ALPEN~^~CEREALS RTE,ALPEN~^~muesli~^~The Weetabix Company~^~Y~^^0^^^^^ -~43241~^~0800~^~Cereals ready-to-eat, FAMILIA~^~CEREALS RTE,FAMILIA~^~muesli~^~bio-familia AG~^~Y~^^0^^^^^ -~43245~^~0800~^~Cereals ready-to-eat, wheat and bran, presweetened with nuts and fruits~^~CEREALS RTE,WHEAT&BRAN,PRESWEETENED W/NUTS&FRUITS~^^^~Y~^^0^^^^^ -~43260~^~0100~^~Beverage, instant breakfast powder, chocolate, sugar-free, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,SUGAR-FREE,NOT RECON~^^^~Y~^^0^^6.38^^^ -~43261~^~0100~^~Yogurt, fruit variety, nonfat~^~YOGURT,FRUIT VAR,NON-FAT~^^^~Y~^^0^^6.38^^^ -~43268~^~0100~^~Whipped cream substitute, dietetic, made from powdered mix~^~WHIPPED CRM SUB,DIETETIC,MADE FROM PDR MIX~^^^~Y~^^0^^6.38^^^ -~43269~^~1900~^~Frozen novelties, ice cream type, sundae, prepackaged~^~FROZEN NOVELTIES,ICE CRM TYPE,SUNDAE,PREPACKAGED~^^^~Y~^^0^^6.25^^^ -~43273~^~0100~^~Cheese, cottage, with vegetables~^~CHEESE,COTTAGE,W/VEG~^^^~Y~^^0^^6.38^^^ -~43274~^~0100~^~Cheese, cream, low fat~^~CHEESE,CREAM,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43275~^~0100~^~Cheese, pasteurized process, American, low fat~^~CHEESE,PAST PROCESS,AMERICAN,LOFAT~^^^~Y~^^0^^6.38^^^ -~43276~^~0100~^~Cheese spread, cream cheese base~^~CHEESE SPRD,CRM CHS BASE~^^^~Y~^^0^^6.38^^^ -~43278~^~0100~^~Cheese, american cheddar, imitation~^~CHEESE,AMERICAN CHEDDAR,IMITN~^^^~Y~^^0^^6.38^^^ -~43282~^~0500~^~Quail, cooked, total edible~^~QUAIL,COOKED,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43283~^~0500~^~Pheasant, cooked, total edible~^~PHEASANT,CKD,TOTAL EDIBLE~^^^~Y~^^0^^^^^ -~43285~^~0100~^~Eggs, scrambled, frozen mixture~^~EGGS,SCRMBLD,FRZ MIXTURE~^^^~Y~^^0^^6.25^4.36^9.02^3.68 -~43287~^~0500~^~Dove, cooked (includes squab)~^~DOVE,CKD (INCL SQUAB)~^^^~Y~^^0^^^^^ -~43297~^~1000~^~Pork, oriental style, dehydrated~^~PORK,ORIENTAL STYLE,DEHYD~^^^^^0^^^^^ -~43299~^~1600~^~Soybean, curd cheese~^~SOYBEAN,CURD CHEESE~^^^~Y~^^0^^^^^ -~43311~^~1100~^~Potatoes, canned, drained solids, no salt added~^~POTATOES,CND,DRND SOL,NO SALT~^^^~Y~^^0^^6.25^2.38^8.37^4.03 -~43312~^~1100~^~Vegetables, mixed (corn, lima beans, peas, green beans, carrots) canned, no salt added~^~VEGETABLES,MXD (CORN,LIMA BNS,PEAS,GRN BNS,CRRT) CND,NO SALT~^^^~Y~^^0^^^^^ -~43325~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN & REG,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43326~^~1000~^~Pork, cured, ham, low sodium, lean and fat, cooked~^~PORK,CURED,HAM,LO NA,LN & FAT,CKD~^^^~Y~^^0^^^^^ -~43327~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN (APPROXIMATLY 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43329~^~0400~^~Salad dressing, mayonnaise and mayonnaise-type, low calorie~^~SALAD DRSNG,MAYO & MAYONNAISE-TYPE,LO CAL~^^^^^0^^6.25^4.36^8.84^3.80 -~43331~^~0400~^~Salad dressing, bacon and tomato~^~SALAD DRSNG,BACON&TOMATO~^^^~Y~^^0^^^^^ -~43340~^~0100~^~Cheese, parmesan, low sodium~^~CHEESE,PARMESAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43344~^~1900~^~Jams, preserves, marmalade, reduced sugar~^~JAMS,PRESERVES,MARMALADE,RED SUGAR~^^^~Y~^^0^^6.25^^^ -~43345~^~1400~^~Beverages, fruit-flavored drink, powder, with high vitamin C with other added vitamins, low calorie~^~BEVER,FRUIT-FLAV DRK,PDR,W/ HI VIT C W/ OTHER ADD VIT,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^2.47 -~43346~^~1900~^~Frozen novelties, juice type, orange~^~FROZEN NOVELTIES,JUC TYPE,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43352~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, no sodium added~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,NO NA~^^^~Y~^^0^^6.38^^^ -~43355~^~0400~^~Mayonnaise, low sodium, low calorie or diet~^~MAYONNAISE,LO NA,LO CAL OR DIET~^^^~Y~^^0^^^^^ -~43364~^~2500~^~Snacks, tortilla chips, unsalted, white corn~^~SNACKS,TORTILLA CHIPS,UNSALTED,WHITE CORN~^^^~Y~^^0^^^^^ -~43365~^~1100~^~Tomato and vegetable juice, low sodium~^~TOMATO&VEG JUC,LO NA~^^^~Y~^^0^^^^^ -~43366~^~0500~^~Turkey, wing, smoked, cooked, with skin, bone removed~^~TURKEY,WING,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43367~^~0500~^~Turkey, drumstick, smoked, cooked, with skin, bone removed~^~TURKEY,DRUMSTK,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43369~^~1400~^~Beverages, Chocolate-flavored drink, whey and milk based~^~BEVERAGES,CHOCOLATE-FLAVORED DRK,WHEY & MILK BSD~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43378~^~1000~^~Pork, cured, bacon, cooked, broiled, pan-fried or roasted, reduced sodium~^~PORK,CURED,BACON,CKD,BRLD,PAN-FRIED OR RSTD,RED NA~^^^~Y~^^0^^6.25^4.27^9.02^3.87 -~43382~^~0900~^~Cranberry juice, unsweetened~^~CRANBERRY JUC,UNSWTND~^^^~Y~^^0^^^3.36^8.37^3.60 -~43384~^~0700~^~Beef, bologna, reduced sodium~^~BEEF,BOLOGNA,RED NA~^^^~Y~^^0^^^^^ -~43387~^~1100~^~Turnip greens, canned, no salt added~^~TURNIP GRNS,CND,NO SALT~^^^~Y~^^0^^^^^ -~43390~^~0500~^~Turkey, light or dark meat, smoked, cooked, with skin, bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^ -~43391~^~0500~^~Turkey, light or dark meat, smoked, cooked, skin and bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,SKN & BONE REMOVED~^^^~Y~^^0^^^^^ -~43392~^~1100~^~Hearts of palm, raw~^~HEARTS OF PALM,RAW~^^^~Y~^^^^^^^ -~43393~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat n' Bran, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT N' BRAN,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43396~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, with vegetables~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,W/VEG~^^^~Y~^^0^^6.38^^^ -~43398~^~0100~^~Cheese, pasteurized process, cheddar or American, low sodium~^~CHEESE,PAST PROCESS,CHEDDAR OR AMERICAN,LO NA~^^^~Y~^^0^^6.38^^^ -~43401~^~1400~^~Beverages, coffee, instant, with whitener, reduced calorie~^~BEVERAGES,COFFEE,INST,W/ WHTNR,RED CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43404~^~1400~^~Beverages, cranberry-apple juice drink, low calorie, with vitamin C added~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,LO CAL,W/ VIT C ADDED~^^^~Y~^^0^^^^^ -~43405~^~0100~^~Cheese, swiss, low sodium~^~CHEESE,SWISS,LOW SODIUM~^^^~Y~^^0^^6.38^^^ -~43406~^~1100~^~Yeast extract spread~^~YEAST EXTRACT SPREAD~^^^~Y~^^0^^^^^ -~43408~^~0300~^~Babyfood, juice, pear~^~BABYFOOD,JUICE,PEAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60 -~43410~^~1600~^~Chicken, meatless, breaded, fried~^~CHICKEN,MEATLESS,BREADED,FRIED~^^^~Y~^^0^^^^^ -~43417~^~0300~^~Babyfood, meat, beef with vegetables, toddler~^~BABYFOOD,MEAT,BF W/ VEG,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43432~^~0300~^~Babyfood, dinner, macaroni, beef and tomato sauce, toddler~^~BABYFOOD,DINNER,MACARONI,BF&TOMATO SAU,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43441~^~1800~^~Rolls, pumpernickel~^~ROLLS,PUMPERNICKEL~^^^~Y~^^0^^6.25^^^ -~43447~^~2500~^~Snacks, corn-based, extruded, chips, unsalted~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^ -~43449~^~1600~^~Beans, baked, canned, no salt added~^~BEANS,BKD,CND,NO SALT ADDED~^^^~Y~^^0^^^^^ -~43450~^~1900~^~Frozen novelties, juice type, juice with cream~^~FROZEN NOVELTIES,JUC TYPE,JUC W/ CRM~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43476~^~1600~^~Tofu yogurt~^~TOFU YOGURT~^^^~Y~^^0^^^^^ -~43479~^~1400~^~Alcoholic beverage, rice (sake)~^~ALCOHOLIC BEV,RICE (SAKE)~^^^~Y~^^0^^^^^ -~43483~^~0800~^~Millet, puffed~^~MILLET,PUFFED~^^^~Y~^^0^^^^^ -~43495~^~0800~^~Cereals ready-to-eat, OAT BRAN FLAKES, HEALTH VALLEY~^~CEREALS RTE,OAT BRAN FLAKES,HEALTH VALLEY~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^ -~43497~^~1500~^~Jellyfish, dried, salted~^~JELLYFISH,DRIED,SALTED~^^^^^0^^^^^ -~43506~^~1900~^~Frozen novelties, ice cream type, chocolate or caramel covered, with nuts~^~ICE CRM BAR,CHOC OR CARAMEL COVERED,W/NUTS~^^^~Y~^^0^^6.25^^^ -~43507~^~0700~^~Frankfurter, low sodium~^~FRANKFURTER,LO NA~^~hot dog, wiener, frank~^^~Y~^^0^^^^^ -~43514~^~1900~^~Frozen novelties, ice type, pop, with low calorie sweetener~^~FROZEN NOVELTIES,ICE TYPE,POP,W/ LO CAL SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~43523~^~0300~^~Babyfood, mixed fruit yogurt, strained~^~BABYFOOD,MXD FRUIT YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43528~^~1400~^~Beverages, ABBOTT, ENSURE PLUS, ready-to-drink~^~BEVERAGES,ABBOTT,ENSURE PLUS,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^^^^ -~43529~^~0300~^~Babyfood, rice and apples, dry~^~BABYFOOD,RICE&APPLS,DRY~^^^~Y~^^0^^^^^ -~43535~^~0300~^~Babyfood, juice, apple - cherry~^~BABYFOOD,JUC,APPL - CHERRY~^^^~Y~^^0^^6.25^^^ -~43536~^~0300~^~Babyfood, dessert, peach yogurt~^~BABYFOOD,DSSRT,PEACH YOGURT~^^^~Y~^^0^^6.14^4.10^8.90^4.10 -~43537~^~0300~^~Babyfood, dessert, blueberry yogurt, strained~^~BABYFOOD,DSSRT,BLUEBERRY YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43539~^~0300~^~Babyfood, dessert, banana yogurt, strained~^~BABYFOOD,DSSRT,BANANA YOGURT,STR~^^^~Y~^^0^^6.25^^^ -~43541~^~1900~^~Ice creams, chocolate, rich~^~ICE CREAMS,CHOC,RICH~^^^~Y~^^0^^6.25^^^ -~43543~^~0100~^~Milk, imitation, non-soy~^~MILK,IMITATION,NON-SOY~^^^~Y~^^0^^6.38^^^ -~43544~^~0300~^~Babyfood, cereal, rice with pears and apple, dry, instant fortified~^~BABYFOOD,CRL,RICE W/ PEARS & APPL,DRY,INST FORT~^^^~Y~^^0^^6.25^^^ -~43546~^~0300~^~Babyfood, banana no tapioca, strained~^~BABYFOOD,BANANA NO TAPIOCA,STR~^^^~Y~^^0^^6.25^^^ -~43550~^~0300~^~Babyfood, banana apple dessert, strained~^~BABYFOOD,BANANA APPL DSSRT,STR~^^^~Y~^^0^^6.25^^^ -~43566~^~2500~^~Snacks, tortilla chips, light (baked with less oil)~^~SNACKS,TORTILLA CHIPS,LT (BAKED W/ LESS OIL)~^^^~Y~^^0^^6.25^^^ -~43570~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, honey roasted~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,HONEY RSTD~^^~Post Foods, LLC~^~Y~^^0^^^^^ -~43572~^~2500~^~Popcorn, microwave, low fat and sodium~^~POPCORN,MICROWAVE,LOFAT&NA~^^^^^0^^^^^ -~43585~^~0300~^~Babyfood, fruit supreme dessert~^~BABYFOOD,FRUIT SUPREME DSSRT~^^^~Y~^^0^^6.25^^^ -~43589~^~0100~^~Cheese, swiss, low fat~^~CHEESE,SWISS,LOW FAT~^^^~Y~^^0^^6.38^^^ -~43595~^~2500~^~Breakfast bar, corn flake crust with fruit~^~BREAKFAST BAR,CORN FLAKE CRUST W/FRUIT~^^^~Y~^^0^^^^^ -~43597~^~0100~^~Cheese, mozzarella, low sodium~^~CHEESE,MOZZARELLA,LO NA~^^^~Y~^^0^^6.38^^^ -~43598~^~0400~^~Mayonnaise dressing, no cholesterol~^~MAYONNAISE DRSNG,NO CHOL~^^^^^0^^^4.36^8.84^3.80 -~44005~^~0400~^~Oil, corn, peanut, and olive~^~OIL,CORN,PEANUT,AND OLIVE~^^^~Y~^^0^^^^^ -~44018~^~1900~^~Sweeteners, tabletop, fructose, liquid~^~SWEETENERS,TABLETOP,FRUCTOSE,LIQ~^^^~Y~^^0^^6.25^0.00^0.00^3.66 -~44061~^~1900~^~Puddings, chocolate flavor, low calorie, instant, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44074~^~0300~^~Babyfood, grape juice, no sugar, canned~^~BABYFOOD,GRAPE JUC,NO SUGAR,CND~^^^~Y~^^0^^6.25^^^ -~44110~^~1900~^~Jellies, reduced sugar, home preserved~^~JELLIES,RED SUGAR,HOME PRESERVED~^^^~Y~^^0^^6.25^^^ -~44158~^~1900~^~Pie fillings, blueberry, canned~^~PIE FILLINGS,BLUEBERRY,CND~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44203~^~1400~^~Beverages, Cocktail mix, non-alcoholic, concentrated, frozen~^~BEVERAGES,COCKTAIL MIX,NON-ALCOHOLIC,CONCD,FRZ~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44258~^~1900~^~Puddings, chocolate flavor, low calorie, regular, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44259~^~1900~^~Puddings, all flavors except chocolate, low calorie, regular, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~44260~^~1900~^~Puddings, all flavors except chocolate, low calorie, instant, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00 -~48052~^~2000~^~Vital wheat gluten~^~VITAL WHEAT GLUTEN~^^^^^0^^^^^ -~80200~^~1500~^~Frog legs, raw~^~FROG LEGS,RAW~^^^~Y~^^0^^^^^ -~83110~^~1500~^~Fish, mackerel, salted~^~MACKEREL,SALTED~^^^^^0^^^^^ -~90240~^~1500~^~Mollusks, scallop, (bay and sea), cooked, steamed~^~SCALLOP,(BAY&SEA),CKD,STMD~^^^~Y~^^0^^^^^ -~90480~^~1900~^~Syrup, Cane~^~SYRUP,CANE~^^^^^0^^6.25^0.00^0.00^3.68 -~90560~^~1500~^~Mollusks, snail, raw~^~SNAIL,RAW~^^^~Y~^^0^^^^^ -~93600~^~1500~^~Turtle, green, raw~^~TURTLE,GREEN,RAW~^^^~Y~^^0^^^^^ diff --git a/Postgres/raw_data/food_groups.csv b/Postgres/raw_data/food_groups.csv deleted file mode 100755 index ff8ae14..0000000 --- a/Postgres/raw_data/food_groups.csv +++ /dev/null @@ -1,26 +0,0 @@ -group_id,group_name -0100,"Dairy and Egg Products" -0200,"Spices and Herbs" -0300,"Baby Foods" -0400,"Fats and Oils" -0500,"Poultry Products" -0600,"Soups, Sauces, and Gravies" -0700,"Sausages and Luncheon Meats" -0800,"Breakfast Cereals" -0900,"Fruits and Fruit Juices" -1000,"Pork Products" -1100,"Vegetables and Vegetable Products" -1200,"Nut and Seed Products" -1300,"Beef Products" -1400,"Beverages" -1500,"Finfish and Shellfish Products" -1600,"Legumes and Legume Products" -1700,"Lamb, Veal, and Game Products" -1800,"Baked Products" -1900,"Sweets" -2000,"Cereal Grains and Pasta" -2100,"Fast Foods" -2200,"Meals, Entrees, and Side Dishes" -2500,"Snacks" -3500,"American Indian/Alaska Native Foods" -3600,"Restaurant Foods" diff --git a/Postgres/raw_data/food_nutrition.csv b/Postgres/raw_data/food_nutrition.csv deleted file mode 100755 index 5ed6eed..0000000 --- a/Postgres/raw_data/food_nutrition.csv +++ /dev/null @@ -1,150 +0,0 @@ -~Nutr_No~^~Units~^~Tagname~^~NutrDesc~^~Num_Dec~^~SR_Order~ -~203~^~g~^~PROCNT~^~Protein~^~2~^600 -~204~^~g~^~FAT~^~Total lipid (fat)~^~2~^800 -~205~^~g~^~CHOCDF~^~Carbohydrate, by difference~^~2~^1100 -~207~^~g~^~ASH~^~Ash~^~2~^1000 -~208~^~kcal~^~ENERC_KCAL~^~Energy~^~0~^300 -~209~^~g~^~STARCH~^~Starch~^~2~^2200 -~210~^~g~^~SUCS~^~Sucrose~^~2~^1600 -~211~^~g~^~GLUS~^~Glucose (dextrose)~^~2~^1700 -~212~^~g~^~FRUS~^~Fructose~^~2~^1800 -~213~^~g~^~LACS~^~Lactose~^~2~^1900 -~214~^~g~^~MALS~^~Maltose~^~2~^2000 -~221~^~g~^~ALC~^~Alcohol, ethyl~^~1~^18200 -~255~^~g~^~WATER~^~Water~^~2~^100 -~262~^~mg~^~CAFFN~^~Caffeine~^~0~^18300 -~263~^~mg~^~THEBRN~^~Theobromine~^~0~^18400 -~268~^~kJ~^~ENERC_KJ~^~Energy~^~0~^400 -~269~^~g~^~SUGAR~^~Sugars, total~^~2~^1500 -~287~^~g~^~GALS~^~Galactose~^~2~^2100 -~291~^~g~^~FIBTG~^~Fiber, total dietary~^~1~^1200 -~301~^~mg~^~CA~^~Calcium, Ca~^~0~^5300 -~303~^~mg~^~FE~^~Iron, Fe~^~2~^5400 -~304~^~mg~^~MG~^~Magnesium, Mg~^~0~^5500 -~305~^~mg~^~P~^~Phosphorus, P~^~0~^5600 -~306~^~mg~^~K~^~Potassium, K~^~0~^5700 -~307~^~mg~^~NA~^~Sodium, Na~^~0~^5800 -~309~^~mg~^~ZN~^~Zinc, Zn~^~2~^5900 -~312~^~mg~^~CU~^~Copper, Cu~^~3~^6000 -~313~^~g~^~FLD~^~Fluoride, F~^~1~^6240 -~315~^~mg~^~MN~^~Manganese, Mn~^~3~^6100 -~317~^~g~^~SE~^~Selenium, Se~^~1~^6200 -~318~^~IU~^~VITA_IU~^~Vitamin A, IU~^~0~^7500 -~319~^~g~^~RETOL~^~Retinol~^~0~^7430 -~320~^~g~^~VITA_RAE~^~Vitamin A, RAE~^~0~^7420 -~321~^~g~^~CARTB~^~Carotene, beta~^~0~^7440 -~322~^~g~^~CARTA~^~Carotene, alpha~^~0~^7450 -~323~^~mg~^~TOCPHA~^~Vitamin E (alpha-tocopherol)~^~2~^7900 -~324~^~IU~^~VITD~^~Vitamin D~^~0~^8750 -~325~^~g~^~ERGCAL~^~Vitamin D2 (ergocalciferol)~^~1~^8710 -~326~^~g~^~CHOCAL~^~Vitamin D3 (cholecalciferol)~^~1~^8720 -~328~^~g~^~VITD~^~Vitamin D (D2 + D3)~^~1~^8700 -~334~^~g~^~CRYPX~^~Cryptoxanthin, beta~^~0~^7460 -~337~^~g~^~LYCPN~^~Lycopene~^~0~^7530 -~338~^~g~^~LUT+ZEA~^~Lutein + zeaxanthin~^~0~^7560 -~341~^~mg~^~TOCPHB~^~Tocopherol, beta~^~2~^8000 -~342~^~mg~^~TOCPHG~^~Tocopherol, gamma~^~2~^8100 -~343~^~mg~^~TOCPHD~^~Tocopherol, delta~^~2~^8200 -~344~^~mg~^~TOCTRA~^~Tocotrienol, alpha~^~2~^8300 -~345~^~mg~^~TOCTRB~^~Tocotrienol, beta~^~2~^8400 -~346~^~mg~^~TOCTRG~^~Tocotrienol, gamma~^~2~^8500 -~347~^~mg~^~TOCTRD~^~Tocotrienol, delta~^~2~^8600 -~401~^~mg~^~VITC~^~Vitamin C, total ascorbic acid~^~1~^6300 -~404~^~mg~^~THIA~^~Thiamin~^~3~^6400 -~405~^~mg~^~RIBF~^~Riboflavin~^~3~^6500 -~406~^~mg~^~NIA~^~Niacin~^~3~^6600 -~410~^~mg~^~PANTAC~^~Pantothenic acid~^~3~^6700 -~415~^~mg~^~VITB6A~^~Vitamin B-6~^~3~^6800 -~417~^~g~^~FOL~^~Folate, total~^~0~^6900 -~418~^~g~^~VITB12~^~Vitamin B-12~^~2~^7300 -~421~^~mg~^~CHOLN~^~Choline, total~^~1~^7220 -~428~^~g~^~MK4~^~Menaquinone-4~^~1~^8950 -~429~^~g~^~VITK1D~^~Dihydrophylloquinone~^~1~^8900 -~430~^~g~^~VITK1~^~Vitamin K (phylloquinone)~^~1~^8800 -~431~^~g~^~FOLAC~^~Folic acid~^~0~^7000 -~432~^~g~^~FOLFD~^~Folate, food~^~0~^7100 -~435~^~g~^~FOLDFE~^~Folate, DFE~^~0~^7200 -~454~^~mg~^~BETN~^~Betaine~^~1~^7270 -~501~^~g~^~TRP_G~^~Tryptophan~^~3~^16300 -~502~^~g~^~THR_G~^~Threonine~^~3~^16400 -~503~^~g~^~ILE_G~^~Isoleucine~^~3~^16500 -~504~^~g~^~LEU_G~^~Leucine~^~3~^16600 -~505~^~g~^~LYS_G~^~Lysine~^~3~^16700 -~506~^~g~^~MET_G~^~Methionine~^~3~^16800 -~507~^~g~^~CYS_G~^~Cystine~^~3~^16900 -~508~^~g~^~PHE_G~^~Phenylalanine~^~3~^17000 -~509~^~g~^~TYR_G~^~Tyrosine~^~3~^17100 -~510~^~g~^~VAL_G~^~Valine~^~3~^17200 -~511~^~g~^~ARG_G~^~Arginine~^~3~^17300 -~512~^~g~^~HISTN_G~^~Histidine~^~3~^17400 -~513~^~g~^~ALA_G~^~Alanine~^~3~^17500 -~514~^~g~^~ASP_G~^~Aspartic acid~^~3~^17600 -~515~^~g~^~GLU_G~^~Glutamic acid~^~3~^17700 -~516~^~g~^~GLY_G~^~Glycine~^~3~^17800 -~517~^~g~^~PRO_G~^~Proline~^~3~^17900 -~518~^~g~^~SER_G~^~Serine~^~3~^18000 -~521~^~g~^~HYP~^~Hydroxyproline~^~3~^18100 -~573~^~mg~^^~Vitamin E, added~^~2~^7920 -~578~^~g~^^~Vitamin B-12, added~^~2~^7340 -~601~^~mg~^~CHOLE~^~Cholesterol~^~0~^15700 -~605~^~g~^~FATRN~^~Fatty acids, total trans~^~3~^15400 -~606~^~g~^~FASAT~^~Fatty acids, total saturated~^~3~^9700 -~607~^~g~^~F4D0~^~4:0~^~3~^9800 -~608~^~g~^~F6D0~^~6:0~^~3~^9900 -~609~^~g~^~F8D0~^~8:0~^~3~^10000 -~610~^~g~^~F10D0~^~10:0~^~3~^10100 -~611~^~g~^~F12D0~^~12:0~^~3~^10300 -~612~^~g~^~F14D0~^~14:0~^~3~^10500 -~613~^~g~^~F16D0~^~16:0~^~3~^10700 -~614~^~g~^~F18D0~^~18:0~^~3~^10900 -~615~^~g~^~F20D0~^~20:0~^~3~^11100 -~617~^~g~^~F18D1~^~18:1 undifferentiated~^~3~^12100 -~618~^~g~^~F18D2~^~18:2 undifferentiated~^~3~^13100 -~619~^~g~^~F18D3~^~18:3 undifferentiated~^~3~^13900 -~620~^~g~^~F20D4~^~20:4 undifferentiated~^~3~^14700 -~621~^~g~^~F22D6~^~22:6 n-3 (DHA)~^~3~^15300 -~624~^~g~^~F22D0~^~22:0~^~3~^11200 -~625~^~g~^~F14D1~^~14:1~^~3~^11500 -~626~^~g~^~F16D1~^~16:1 undifferentiated~^~3~^11700 -~627~^~g~^~F18D4~^~18:4~^~3~^14250 -~628~^~g~^~F20D1~^~20:1~^~3~^12400 -~629~^~g~^~F20D5~^~20:5 n-3 (EPA)~^~3~^15000 -~630~^~g~^~F22D1~^~22:1 undifferentiated~^~3~^12500 -~631~^~g~^~F22D5~^~22:5 n-3 (DPA)~^~3~^15200 -~636~^~mg~^~PHYSTR~^~Phytosterols~^~0~^15800 -~638~^~mg~^~STID7~^~Stigmasterol~^~0~^15900 -~639~^~mg~^~CAMD5~^~Campesterol~^~0~^16000 -~641~^~mg~^~SITSTR~^~Beta-sitosterol~^~0~^16200 -~645~^~g~^~FAMS~^~Fatty acids, total monounsaturated~^~3~^11400 -~646~^~g~^~FAPU~^~Fatty acids, total polyunsaturated~^~3~^12900 -~652~^~g~^~F15D0~^~15:0~^~3~^10600 -~653~^~g~^~F17D0~^~17:0~^~3~^10800 -~654~^~g~^~F24D0~^~24:0~^~3~^11300 -~662~^~g~^~F16D1T~^~16:1 t~^~3~^11900 -~663~^~g~^~F18D1T~^~18:1 t~^~3~^12300 -~664~^~g~^~F22D1T~^~22:1 t~^~3~^12700 -~665~^~g~^^~18:2 t not further defined~^~3~^13800 -~666~^~g~^^~18:2 i~^~3~^13700 -~669~^~g~^~F18D2TT~^~18:2 t,t~^~3~^13600 -~670~^~g~^~F18D2CLA~^~18:2 CLAs~^~3~^13300 -~671~^~g~^~F24D1C~^~24:1 c~^~3~^12800 -~672~^~g~^~F20D2CN6~^~20:2 n-6 c,c~^~3~^14300 -~673~^~g~^~F16D1C~^~16:1 c~^~3~^11800 -~674~^~g~^~F18D1C~^~18:1 c~^~3~^12200 -~675~^~g~^~F18D2CN6~^~18:2 n-6 c,c~^~3~^13200 -~676~^~g~^~F22D1C~^~22:1 c~^~3~^12600 -~685~^~g~^~F18D3CN6~^~18:3 n-6 c,c,c~^~3~^14100 -~687~^~g~^~F17D1~^~17:1~^~3~^12000 -~689~^~g~^~F20D3~^~20:3 undifferentiated~^~3~^14400 -~693~^~g~^~FATRNM~^~Fatty acids, total trans-monoenoic~^~3~^15500 -~695~^~g~^~FATRNP~^~Fatty acids, total trans-polyenoic~^~3~^15600 -~696~^~g~^~F13D0~^~13:0~^~3~^10400 -~697~^~g~^~F15D1~^~15:1~^~3~^11600 -~851~^~g~^~F18D3CN3~^~18:3 n-3 c,c,c (ALA)~^~3~^14000 -~852~^~g~^~F20D3N3~^~20:3 n-3~^~3~^14500 -~853~^~g~^~F20D3N6~^~20:3 n-6~^~3~^14600 -~855~^~g~^~F20D4N6~^~20:4 n-6~^~3~^14900 -~856~^~g~^^~18:3i~^~3~^14200 -~857~^~g~^~F21D5~^~21:5~^~3~^15100 -~858~^~g~^~F22D4~^~22:4~^~3~^15160 -~859~^~g~^~F18D1TN7~^~18:1-11 t (18:1t n-7)~^~3~^12310 diff --git a/Postgres/raw_data/new_desc.csv b/Postgres/raw_data/new_desc.csv deleted file mode 100644 index eff74ae..0000000 --- a/Postgres/raw_data/new_desc.csv +++ /dev/null @@ -1,7794 +0,0 @@ -'id','group_id','long_description','short_description','common_name','manufacturer_name','is_in_fndds_survey','inedible_parts','percent_being_refuse','scientific_name','nitrogen_to_protein_factor','calories_from_protein_facor','calories_from_fat_factor','calories_from_carb_factor' -01001,0100,'Butter salted','BUTTER WITH SALT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01002,0100,'Butter whipped with salt','BUTTER WHIPPED W/ SALT',,,'Y',,0,,6.38,,, -01003,0100,'Butter oil anhydrous','BUTTER OIL ANHYDROUS',,,'Y',,0,,6.38,4.27,8.79,3.87 -01004,0100,'Cheese blue','CHEESE BLUE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01005,0100,'Cheese brick','CHEESE BRICK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01006,0100,'Cheese brie','CHEESE BRIE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01007,0100,'Cheese camembert','CHEESE CAMEMBERT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01008,0100,'Cheese caraway','CHEESE CARAWAY',,,,,0,,6.38,4.27,8.79,3.87 -01009,0100,'Cheese cheddar (Includes foods for USDAs Food Distribution Program)','CHEESE CHEDDAR',,,'Y',,0,,,,, -01010,0100,'Cheese cheshire','CHEESE CHESHIRE',,,,,0,,6.38,4.27,8.79,3.87 -01011,0100,'Cheese colby','CHEESE COLBY',,,'Y',,0,,6.38,4.27,8.79,3.87 -01012,0100,'Cheese cottage creamed large or small curd','CHEESE COTTAGE CRMD LRG OR SML CURD',,,'Y',,0,,6.38,4.27,8.79,3.87 -01013,0100,'Cheese cottage creamed with fruit','CHEESE COTTAGE CRMD W/FRUIT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01014,0100,'Cheese cottage nonfat uncreamed dry large or small curd','CHEESE COTTAGE NONFAT UNCRMD DRY LRG OR SML CURD',,,'Y',,0,,6.38,4.27,8.79,3.87 -01015,0100,'Cheese cottage lowfat 2% milkfat','CHEESE COTTAGE LOWFAT 2% MILKFAT',,,'Y',,0,,6.38,,, -01016,0100,'Cheese cottage lowfat 1% milkfat','CHEESE COTTAGE LOWFAT 1% MILKFAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01017,0100,'Cheese cream','CHEESE CREAM',,,'Y',,0,,6.38,4.27,8.79,3.87 -01018,0100,'Cheese edam','CHEESE EDAM',,,'Y',,0,,6.38,4.27,8.79,3.87 -01019,0100,'Cheese feta','CHEESE FETA',,,'Y',,0,,6.38,4.27,8.79,3.87 -01020,0100,'Cheese fontina','CHEESE FONTINA',,,'Y',,0,,6.38,4.27,8.79,3.87 -01021,0100,'Cheese gjetost','CHEESE GJETOST',,,,,0,,6.38,4.27,8.79,3.87 -01022,0100,'Cheese gouda','CHEESE GOUDA',,,'Y',,0,,6.38,4.27,8.79,3.87 -01023,0100,'Cheese gruyere','CHEESE GRUYERE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01024,0100,'Cheese limburger','CHEESE LIMBURGER',,,'Y',,0,,6.38,4.27,8.79,3.87 -01025,0100,'Cheese monterey','CHEESE MONTEREY',,,'Y',,0,,6.38,4.27,8.79,3.87 -01026,0100,'Cheese mozzarella whole milk','CHEESE MOZZARELLA WHL MILK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01027,0100,'Cheese mozzarella whole milk low moisture','CHEESE MOZZARELLA WHL MILK LO MOIST',,,'Y',,0,,6.38,4.27,8.79,3.87 -01028,0100,'Cheese mozzarella part skim milk','CHEESE MOZZARELLA PART SKIM MILK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01029,0100,'Cheese mozzarella low moisture part-skim','CHEESE MOZZARELLA LO MOIST PART-SKIM',,,'Y',,0,,6.38,,, -01030,0100,'Cheese muenster','CHEESE MUENSTER',,,'Y',,0,,6.38,4.27,8.79,3.87 -01031,0100,'Cheese neufchatel','CHEESE NEUFCHATEL',,,,,0,,6.38,4.27,8.79,3.87 -01032,0100,'Cheese parmesan grated','CHEESE PARMESAN GRATED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01033,0100,'Cheese parmesan hard','CHEESE PARMESAN HARD',,,'Y',,0,,6.38,4.27,8.79,3.87 -01034,0100,'Cheese port de salut','CHEESE PORT DE SALUT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01035,0100,'Cheese provolone','CHEESE PROVOLONE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01036,0100,'Cheese ricotta whole milk','CHEESE RICOTTA WHOLE MILK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01037,0100,'Cheese ricotta part skim milk','CHEESE RICOTTA PART SKIM MILK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01038,0100,'Cheese romano','CHEESE ROMANO',,,'Y',,0,,6.38,4.27,8.79,3.87 -01039,0100,'Cheese roquefort','CHEESE ROQUEFORT',,,,,0,,6.38,4.27,8.79,3.87 -01040,0100,'Cheese swiss','CHEESE SWISS',,,'Y',,0,,6.38,4.27,8.79,3.87 -01041,0100,'Cheese tilsit','CHEESE TILSIT',,,,,0,,6.38,4.27,8.79,3.87 -01042,0100,'Cheese pasteurized process American fortified with vitamin D','CHEESE PAST PROCESS AMERICAN FORT W/ VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01043,0100,'Cheese pasteurized process pimento','CHEESE PAST PROCESS PIMENTO',,,'Y',,0,,6.38,4.27,8.79,3.87 -01044,0100,'Cheese pasteurized process swiss','CHEESE PAST PROCESS SWISS',,,'Y',,0,,6.38,4.27,8.79,3.87 -01045,0100,'Cheese food cold pack American','CHEESE FD COLD PK AMERICAN',,,,,0,,6.38,4.27,8.79,3.87 -01046,0100,'Cheese food pasteurized process American vitamin D fortified','CHEESE FD PAST PROCESS AMERICAN VITAMIN D FORT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01047,0100,'Cheese food pasteurized process swiss','CHEESE FD PAST PROCESS SWISS',,,,,0,,6.38,4.27,8.79,3.87 -01048,0100,'Cheese spread pasteurized process American','CHEESE SPRD PAST PROCESS AMERICAN',,,'Y',,0,,6.38,4.27,8.79,3.87 -01049,0100,'Cream fluid half and half','CREAM FLUID HALF AND HALF',,,'Y',,0,,6.38,4.27,8.79,3.87 -01050,0100,'Cream fluid light (coffee cream or table cream)','CREAM FLUID LT (COFFEE CRM OR TABLE CRM)',,,'Y',,0,,6.38,4.27,8.79,3.87 -01052,0100,'Cream fluid light whipping','CREAM FLUID LT WHIPPING',,,'Y',,0,,6.38,4.27,8.79,3.87 -01053,0100,'Cream fluid heavy whipping','CREAM FLUID HVY WHIPPING',,,'Y',,0,,6.38,4.27,8.79,3.87 -01054,0100,'Cream whipped cream topping pressurized','CREAM WHIPPED CRM TOPPING PRESSURIZED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01055,0100,'Cream sour reduced fat cultured','CREAM SOUR RED FAT CULTURED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01056,0100,'Cream sour cultured','CREAM SOUR CULTURED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01057,0100,'Eggnog','EGGNOG',,,'Y',,0,,6.37,4.27,8.79,3.90 -01058,0100,'Sour dressing non-butterfat cultured filled cream-type','SOUR DRSNG NON-BUTTERFAT CULTURED FILLED CREAM-TYPE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01059,0100,'Milk filled fluid with blend of hydrogenated vegetable oils','MILK FILLED FLUID W/BLEND OF HYDR VEG OILS',,,,,0,,6.38,4.27,8.79,3.87 -01060,0100,'Milk filled fluid with lauric acid oil','MILK FILLED FLUID W/LAURIC ACID OIL',,,,,0,,6.38,4.27,8.79,3.87 -01061,0100,'Cheese American nonfat or fat free','CHEESE AMERICAN NONFAT OR FAT FREE',,,'Y',,0,,6.25,,, -01064,0100,'Yogurt Greek 2% fat apricot CHOBANI','YOGURT GREEK 2% FAT APRICOT CHOBANI',,'Chobani',,,0,,3.68,,, -01065,0100,'Yogurt Greek 2%fat coconut blend CHOBANI','YOGURT GREEK 2%FAT COCNT BLEND CHOBANI',,'Chobani',,,0,,6.38,,, -01067,0100,'Cream substitute liquid with hydrogenated vegetable oil and soy protein','CREAM SUB LIQ W/HYDR VEG OIL&SOY PROT',,,'Y',,0,,5.71,4.27,8.79,3.87 -01068,0100,'Cream substitute liquid with lauric acid oil and sodium caseinate','CREAM SUB LIQ W/LAURIC ACID OIL&NA CASEINATE',,,,,0,,6.29,4.27,8.79,3.87 -01069,0100,'Cream substitute powdered','CREAM SUBSTITUTE POWDERED',,,'Y',,0,,6.29,4.27,8.79,3.87 -01070,0100,'Dessert topping powdered','DESSERT TOPPING POWDERED',,,,,0,,6.29,4.27,8.79,3.87 -01071,0100,'Dessert topping powdered 1.5 ounce prepared with 1/2 cup milk','DESSERT TOPPING PDR 1.5 OZ PREP W/1/2 CUP MILK',,,'Y',,0,,6.35,4.27,8.79,3.87 -01072,0100,'Dessert topping pressurized','DESSERT TOPPING PRESSURIZED',,,'Y',,0,,6.29,4.27,8.79,3.87 -01073,0100,'Dessert topping semi solid frozen','DESSERT TOPPING SEMI SOLID FRZ',,,'Y',,0,,6.29,4.27,8.84,3.87 -01074,0100,'Sour cream imitation cultured','SOUR CRM IMITN CULTURED',,,'Y',,0,,6.29,4.27,8.79,3.87 -01076,0100,'Milk substitutes fluid with lauric acid oil','MILK SUBSTITUTES FLUID W/LAURIC ACID OIL',,,,,0,,6.29,4.27,8.79,3.87 -01077,0100,'Milk whole 3.25% milkfat with added vitamin D','MILK WHL 3.25% MILKFAT W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01078,0100,'Milk producer fluid 3.7% milkfat','MILK PRODUCER FLUID 3.7% MILKFAT',,,,,0,,6.38,4.27,8.79,3.87 -01079,0100,'Milk reduced fat fluid 2% milkfat with added vitamin A and vitamin D','MILK RED FAT FLUID 2% MILKFAT W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01080,0100,'Milk reduced fat fluid 2% milkfat with added nonfat milk solids and vitamin A and vitamin D','MILK RED FAT FLUID 2% MILKFAT W/ ADDED NFMS VIT A & VIT D',,,,,0,,6.38,4.27,8.79,3.87 -01081,0100,'Milk reduced fat fluid 2% milkfat protein fortified with added vitamin A and vitamin D','MILK RED FAT FLUID 2% MILKFAT PROT FORT W/ ADDED VIT A & D',,,,,0,,6.38,4.27,8.79,3.87 -01082,0100,'Milk lowfat fluid 1% milkfat with added vitamin A and vitamin D','MILK LOWFAT FLUID 1% MILKFAT W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01083,0100,'Milk lowfat fluid 1% milkfat with added nonfat milk solids vitamin A and vitamin D','MILK LOWFAT FLUID 1% MILKFAT W/ ADD NONFAT MILK SOL VIT A/ D',,,,,0,,6.38,4.27,8.79,3.87 -01084,0100,'Milk lowfat fluid 1% milkfat protein fortified with added vitamin A and vitamin D','MILK LOWFAT FLUID 1% MILKFAT PROT FORT W/ ADDED VIT A & D',,,,,0,,6.38,4.27,8.79,3.87 -01085,0100,'Milk nonfat fluid with added vitamin A and vitamin D (fat free or skim)','MILK NONFAT FLUID W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)',,,'Y',,0,,6.38,4.27,8.79,3.87 -01086,0100,'Milk nonfat fluid with added nonfat milk solids vitamin A and vitamin D (fat free or skim)','MILK NONFAT FLUID W/ ADDED NONFAT MILK SOL VIT A & VIT D',,,,,0,,6.38,4.27,8.79,3.87 -01087,0100,'Milk nonfat fluid protein fortified with added vitamin A and vitamin D (fat free and skim)','MILK NONFAT FLUID PROT FORT W/ ADD VIT A & D (FAT FREE/SKIM)',,,,,0,,6.38,4.27,8.79,3.87 -01088,0100,'Milk buttermilk fluid cultured lowfat','MILK BTTRMLK FLUID CULTURED LOWFAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01089,0100,'Milk low sodium fluid','MILK LO NA FLUID',,,'Y',,0,,6.38,4.27,8.79,3.87 -01090,0100,'Milk dry whole with added vitamin D','MILK DRY WHL W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01091,0100,'Milk dry nonfat regular without added vitamin A and vitamin D','MILK DRY NONFAT REG WO/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01092,0100,'Milk dry nonfat instant with added vitamin A and vitamin D','MILK DRY NONFAT INST W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01093,0100,'Milk dry nonfat calcium reduced','MILK DRY NONFAT CA RED',,,,,0,,6.38,4.27,8.79,3.87 -01094,0100,'Milk buttermilk dried','MILK BUTTERMILK DRIED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01095,0100,'Milk canned condensed sweetened','MILK CND COND SWTND',,,'Y',,0,,6.38,4.27,8.79,3.87 -01096,0100,'Milk canned evaporated with added vitamin D and without added vitamin A','MILK CND EVAP W/ ADDED VITAMIN D & WO/ ADDED VIT A',,,'Y',,0,,6.38,4.27,8.79,3.87 -01097,0100,'Milk canned evaporated nonfat with added vitamin A and vitamin D','MILK CND EVAP NONFAT W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01102,0100,'Milk chocolate fluid commercial whole with added vitamin A and vitamin D','MILK CHOC FLUID COMM WHL W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01103,0100,'Milk chocolate fluid commercial reduced fat with added vitamin A and vitamin D','MILK CHOC FLUID COMM RED FAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01104,0100,'Milk chocolate lowfat with added vitamin A and vitamin D','MILK CHOC LOWFAT W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01105,0100,'Milk chocolate beverage hot cocoa homemade','MILK CHOC BEV HOT COCOA HOMEMADE',,,,,0,,6.38,,, -01106,0100,'Milk goat fluid with added vitamin D','MILK GOAT FLUID W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01107,0100,'Milk human mature fluid','MILK HUMAN MATURE FLUID',,,'Y',,0,,6.38,4.27,8.79,3.87 -01108,0100,'Milk indian buffalo fluid','MILK INDIAN BUFFALO FLUID',,,,,0,,6.38,4.27,8.79,3.87 -01109,0100,'Milk sheep fluid','MILK SHEEP FLUID',,,,,0,,6.38,4.27,8.79,3.87 -01110,0100,'Milk shakes thick chocolate','MILK SHAKES THICK CHOC',,,,,0,,6.38,4.27,8.79,3.87 -01111,0100,'Milk shakes thick vanilla','MILK SHAKES THICK VANILLA',,,,,0,,6.38,4.27,8.79,3.87 -01112,0100,'Whey acid fluid','WHEY ACID FLUID',,,,,0,,6.38,4.27,8.79,3.87 -01113,0100,'Whey acid dried','WHEY ACID DRIED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01114,0100,'Whey sweet fluid','WHEY SWEET FLUID',,,,,0,,6.38,4.27,8.79,3.87 -01115,0100,'Whey sweet dried','WHEY SWEET DRIED',,,'Y',,0,,6.38,4.27,8.79,3.87 -01116,0100,'Yogurt plain whole milk','YOGURT PLN WHL MILK',,,'Y',,0,,6.38,4.27,8.79,3.87 -01117,0100,'Yogurt plain low fat','YOGURT PLN LOFAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01118,0100,'Yogurt plain skim milk','YOGURT PLN SKIM MILK.',,,'Y',,0,,6.38,4.27,8.79,3.87 -01119,0100,'Yogurt vanilla low fat.','YOGURT VANILLA LOFAT.',,,'Y',,0,,6.38,4.27,8.79,3.87 -01120,0100,'Yogurt fruit low fat 9 g protein/8 oz','YOGURT FRUIT LOFAT 9 G PROTEIN/8 OZ',,,'Y',,0,,6.38,4.27,8.79,3.87 -01121,0100,'Yogurt fruit low fat 10 grams protein per 8 ounce','YOGURT FRUIT LOFAT 10 GRAMS PROT PER 8 OUNCE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01122,0100,'Yogurt fruit low fat 11g protein/8 oz','YOGURT FRUIT LOFAT 11G PROTEIN/8 OZ',,,,,0,,6.38,4.27,8.79,3.87 -01123,0100,'Egg whole raw fresh','EGG WHL RAW FRSH',,,'Y','Shell',12,,6.25,4.36,9.02,3.68 -01124,0100,'Egg white raw fresh','EGG WHITE RAW FRESH',,,'Y',,0,,6.25,4.36,9.02,3.68 -01125,0100,'Egg yolk raw fresh','EGG YOLK RAW FRSH',,,'Y',,0,,6.25,4.36,9.02,3.68 -01126,0100,'Egg yolk raw frozen pasteurized','EGG YOLK RAW FRZ PAST',,,,,0,,6.25,,, -01127,0100,'Egg yolk raw frozen sugared pasteurized','EGG YOLK RAW FRZ SUGARED PAST',,,,,0,,6.25,4.36,9.02,3.68 -01128,0100,'Egg whole cooked fried','EGG WHL CKD FRIED',,,'Y',,0,,6.25,4.36,9.02,3.68 -01129,0100,'Egg whole cooked hard-boiled','EGG WHL CKD HARD-BOILED',,,'Y','Shell',12,,6.25,4.36,9.02,3.68 -01130,0100,'Egg whole cooked omelet','EGG WHOLE COOKED OMELET',,,'Y',,0,,6.25,4.36,9.02,3.68 -01131,0100,'Egg whole cooked poached','EGG WHL CKD POACHED',,,'Y',,0,,6.25,4.36,9.02,3.68 -01132,0100,'Egg whole cooked scrambled','EGG WHL CKD SCRMBLD',,,'Y',,0,,6.25,4.36,9.02,3.68 -01133,0100,'Egg whole dried','EGG WHL DRIED',,,'Y',,0,,6.25,,, -01134,0100,'Egg whole dried stabilized glucose reduced','EGG WHL DRIED STABILIZED GLUCOSE RED',,,,,0,,6.25,4.36,9.02,3.68 -01135,0100,'Egg white dried flakes stabilized glucose reduced','EGG WHITE DRIED FLAKES STABILIZED GLUCOSE RED',,,,,0,,6.25,4.36,9.02,3.68 -01136,0100,'Egg white dried powder stabilized glucose reduced','EGG WHITE DRIED PDR STABILIZED GLUCOSE RED',,,'Y',,0,,6.25,4.36,9.02,3.68 -01137,0100,'Egg yolk dried','EGG YOLK DRIED',,,'Y',,0,,6.25,,, -01138,0100,'Egg duck whole fresh raw','EGG DUCK WHOLE FRESH RAW',,,'Y','Shell',12,,6.25,4.36,9.02,3.68 -01139,0100,'Egg goose whole fresh raw','EGG GOOSE WHOLE FRESH RAW',,,'Y','Shell',13,,6.25,4.36,9.02,3.68 -01140,0100,'Egg quail whole fresh raw','EGG QUAIL WHOLE FRESH RAW',,,'Y','Shell',8,,6.25,4.36,9.02,3.68 -01141,0100,'Egg turkey whole fresh raw','EGG TURKEY WHL FRSH RAW',,,,'Shell',12,,6.25,4.36,9.02,3.68 -01144,0100,'Egg substitute powder','EGG SUBSTITUTE POWDER',,,'Y',,0,,6.25,4.36,9.02,3.87 -01145,0100,'Butter without salt','BUTTER WITHOUT SALT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01146,0100,'Cheese parmesan shredded','CHEESE PARMESAN SHREDDED',,,,,0,,6.38,4.27,8.79,3.87 -01151,0100,'Milk nonfat fluid without added vitamin A and vitamin D (fat free or skim)','MILK NONFAT FLUID WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)',,,'Y',,0,,6.38,,, -01152,0100,'Milk reduced fat fluid 2% milkfat with added nonfat milk solids without added vitamin A','MILK RED FAT FLUID 2% MILKFAT W/ NONFAT MILK SOL WO/ VIT A',,,,,0,,6.38,4.27,8.79,3.87 -01153,0100,'Milk canned evaporated with added vitamin A','MILK CND EVAP W/ VIT A',,,,,0,,6.38,4.27,8.79,3.87 -01154,0100,'Milk dry nonfat regular with added vitamin A and vitamin D','MILK DRY NONFAT REG W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01155,0100,'Milk dry nonfat instant without added vitamin A and vitamin D','MILK DRY NONFAT INST WO/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01156,0100,'Cheese goat hard type','CHEESE GOAT HARD TYPE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01157,0100,'Cheese goat semisoft type','CHEESE GOAT SEMISOFT TYPE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01158,0100,'Yogurt Greek 2% fat key lime blend CHOBANI','YOGURT GREEK 2% FAT KEY LIME BLEND CHOBANI',,'Chobani',,,0,,6.38,,, -01159,0100,'Cheese goat soft type','CHEESE GOAT SOFT TYPE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01160,0100,'Egg yolk raw frozen salted pasteurized','EGG YOLK RAW FRZ SALTED PAST',,,,,0,,6.25,4.36,9.02,3.68 -01161,0100,'Cheese substitute mozzarella','CHEESE SUB MOZZARELLA',,,'Y',,0,,6.38,4.27,8.79,3.87 -01162,0100,'Yogurt Greek 2% fat mango CHOBANI','YOGURT GREEK 2% FAT MANGO CHOBANI',,'Chobani',,,0,,6.38,,, -01164,0100,'Cheese sauce prepared from recipe','CHEESE SAU PREP FROM RECIPE',,,'Y',,0,,6.38,4.08,8.92,3.95 -01165,0100,'Cheese mexican queso anejo','CHEESE MEXICAN QUESO ANEJO',,,'Y',,0,,6.38,4.27,8.79,3.87 -01166,0100,'Cheese mexican queso asadero','CHEESE MEXICAN QUESO ASADERO',,,'Y',,0,,6.38,4.27,8.79,3.87 -01167,0100,'Cheese mexican queso chihuahua','CHEESE MEXICAN QUESO CHIHUAHUA',,,'Y',,0,,6.38,4.27,8.79,3.87 -01168,0100,'Cheese low fat cheddar or colby','CHEESE LOFAT CHEDDAR OR COLBY',,,'Y',,0,,6.38,4.27,8.79,3.87 -01169,0100,'Cheese low-sodium cheddar or colby','CHEESE LOW-SODIUM CHEDDAR OR COLBY',,,'Y',,0,,6.38,4.27,8.79,3.87 -01171,0100,'Egg whole raw frozen pasteurized (Includes foods for USDAs Food Distribution Program)','EGG WHL RAW FRZ PAST',,,,,0,,6.25,4.36,9.02,3.68 -01172,0100,'Egg white raw frozen pasteurized','EGG WHITE RAW FRZ PAST',,,,,0,,6.25,4.36,9.02,3.68 -01173,0100,'Egg white dried','EGG WHITE DRIED',,,,,0,,6.25,4.36,9.02,3.68 -01174,0100,'Milk reduced fat fluid 2% milkfat without added vitamin A and vitamin D','MILK RED FAT FLUID 2% MILKFAT WO/ ADDED VIT A & VIT D',,,'Y',,0,,0.00,4.27,8.79,3.87 -01175,0100,'Milk fluid 1% fat without added vitamin A and vitamin D','MILK FLUID 1% FAT WO/ ADDED VIT A & VIT D',,,'Y',,0,,0.00,4.27,8.79,3.87 -01178,0100,'Sour cream reduced fat','SOUR CREAM REDUCED FAT',,,'Y',,0,,6.38,,, -01179,0100,'Sour cream light','SOUR CREAM LIGHT',,,'Y',,0,,6.38,,, -01180,0100,'Sour cream fat free','SOUR CREAM FAT FREE',,,'Y',,0,,6.38,,, -01184,0100,'Yogurt vanilla or lemon flavor nonfat milk sweetened with low-calorie sweetener','YOGURT VAN OR LEM FLAV NONFAT MILK SWTND W/LOW-CALORIE SWTNR',,,'Y',,0,,6.38,,, -01185,0100,'Parmesan cheese topping fat free','PARMESAN CHS TOPPING FAT FREE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01186,0100,'Cheese cream fat free','CHEESE CREAM FAT FREE',,,'Y',,0,,6.38,4.27,8.79,3.87 -01187,0100,'Yogurt chocolate nonfat milk','YOGURT CHOC NONFAT MILK',,,'Y',,0,,6.38,,, -01188,0100,'KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce','KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU',,'Kraft Foods Inc.',,,0,,6.38,,, -01189,0100,'KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product','KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT',,'Kraft Foods Inc.',,,0,,6.38,,, -01190,0100,'KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product','KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT',,'Kraft Foods Inc.',,,0,,6.38,,, -01191,0100,'KRAFT VELVEETA Pasteurized Process Cheese Spread','KRAFT VELVEETA PAST PROCESS CHS SPRD',,'Kraft Foods Inc.',,,0,,6.38,,, -01192,0100,'KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product','KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT',,'Kraft Foods Inc.',,,0,,6.38,,, -01193,0100,'KRAFT BREAKSTONES Reduced Fat Sour Cream','KRAFT BREAKSTONES RED FAT SOUR CRM',,'Kraft Foods Inc.',,,0,,6.38,,, -01194,0100,'KRAFT BREAKSTONES FREE Fat Free Sour Cream','KRAFT BREAKSTONES FREE FAT FREE SOUR CRM',,'Kraft Foods Inc.',,,0,,6.38,,, -01199,0100,'Cream half and half fat free','CREAM HALF & HALF FAT FREE',,,'Y',,0,,6.38,,, -01200,0100,'Reddi Wip Fat Free Whipped Topping','REDDI WIP FAT FREE WHIPPED TOPPING',,,'Y',,0,,6.38,,, -01202,0100,'Milk chocolate fluid commercial reduced fat with added calcium','MILK CHOC FLUID COMM RED FAT W/ ADDED CA',,,,,0,,6.38,,, -01203,0100,'Yogurt fruit lowfat with low calorie sweetener','YOGURT FRUIT LOFAT W/LO CAL SWEETENER',,,'Y',,0,,6.38,4.27,8.79,3.87 -01204,0100,'Cheese parmesan dry grated reduced fat','CHEESE PARMESAN DRY GRATED RED FAT',,,'Y',,0,,6.38,,, -01205,0100,'Cream substitute flavored liquid','CREAM SUB FLAV LIQ',,,'Y',,0,,6.29,,, -01206,0100,'Cream substitute flavored powdered','CREAM SUB FLAV PDR',,,'Y',,0,,6.38,,, -01208,0100,'Cheese provolone reduced fat','CHEESE PROVOLONE RED FAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01209,0100,'Cheese Mexican blend reduced fat','CHEESE MEXICAN BLEND RED FAT',,,'Y',,0,,6.38,,, -01211,0100,'Milk whole 3.25% milkfat without added vitamin A and vitamin D','MILK WHL 3.25% MILKFAT WO/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.38,,, -01212,0100,'Milk dry whole without added vitamin D','MILK DRY WHL WO/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01215,0100,'Cheese product pasteurized process American reduced fat fortified with vitamin D','CHEESE PRODUCT PAST PROCESS AMERICAN RED FAT FORT W/ VIT D',,,'Y',,0,,6.38,,, -01216,0100,'Yogurt fruit low fat 9 grams protein per 8 ounce fortified with vitamin D','YOGURT FRUIT LOFAT 9 GRAMS PROT PER 8 OZ FORT W/ VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01217,0100,'Yogurt fruit low fat 10 grams protein per 8 ounce fortified with vitamin D','YOGURT FRUIT LOFAT 10 GRAMS PROT PER 8 OZ FORT W/ VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01218,0100,'Yogurt fruit variety nonfat fortified with vitamin D','YOGURT FRUIT VAR NONFAT FORT W/ VITAMIN D',,,'Y',,0,,6.38,,, -01219,0100,'Yogurt fruit lowfat with low calorie sweetener fortified with vitamin D','YOGURT FRUIT LOWFAT W/ LO CAL SWTNR FORT W/ VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01220,0100,'Yogurt vanilla low fat fortified with vitamin D','YOGURT VANILLA LOFAT FORT W/ VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01221,0100,'Yogurt vanilla or lemon flavor nonfat milk sweetened with low-calorie sweetener fortified with vitamin D','YOGURT VAN/LEM FLAV NONFAT MILK W/ LO-CAL SWTNR FORT W/VIT D',,,'Y',,0,,6.38,,, -01222,0100,'Yogurt chocolate nonfat milk fortified with vitamin D','YOGURT CHOC NONFAT MILK FORT W/ VITAMIN D',,,'Y',,0,,6.38,,, -01223,0100,'Protein supplement milk based Muscle Milk powder','PROTEIN SUPP MILK BSD MUSCLE MILK PDR',,,'Y',,0,,6.38,,, -01224,0100,'Protein supplement milk based Muscle Milk Light powder','PROTEIN SUPP MILK BSD MUSCLE MILK LT PDR',,,'Y',,0,,6.38,,, -01225,0100,'Dulce de Leche','DULCE DE LECHE',,,'Y',,0,,6.38,,, -01226,0100,'Egg substitute liquid or frozen fat free','EGG SUB LIQ OR FRZ FAT FREE',,,'Y',,0,,6.25,4.36,8.84,3.68 -01227,0100,'Cheese dry white queso seco','CHEESE DRY WHITE QUESO SECO',,,,,0,,6.38,,, -01228,0100,'Cheese fresh queso fresco','CHEESE FRSH QUESO FRESCO',,,'Y',,0,,6.38,,, -01229,0100,'Cheese white queso blanco','CHEESE WHITE QUESO BLANCO',,,,,0,,6.38,,, -01230,0100,'Milk buttermilk fluid whole','MILK BTTRMLK FLUID WHL',,,'Y',,0,,6.38,,, -01231,0100,'Yogurt vanilla flavor lowfat milk sweetened with low calorie sweetener','YOGURT VANILLA FLAVOR LOWFAT MILK SWTND W/ LO CAL SWTNR',,,'Y',,0,,6.38,,, -01235,0100,'Yogurt frozen flavors not chocolate nonfat milk with low-calorie sweetener','YOGURT FRZ FLAVORS NOT CHOC NONFAT MILK W/ LOW-CALORIE SWTNR',,,'Y',,0,,6.38,,, -01236,0100,'Ice cream soft serve chocolate','ICE CRM SOFT SERVE CHOC',,,'Y',,0,,6.38,,, -01237,0100,'Ice cream bar or stick chocolate covered','ICE CRM BAR OR STK CHOC COVERED',,,'Y',,0,,6.38,,, -01238,0100,'Ice cream sandwich','ICE CRM SNDWCH',,,'Y',,0,,6.38,,, -01239,0100,'Ice cream cookie sandwich','ICE CRM COOKIE SNDWCH',,,'Y',,0,,6.38,,, -01240,0100,'Ice cream cone chocolate covered with nuts flavors other than chocolate','ICE CRM CONE CHOC COVERED W/ NUTS FLAVORS OTHER THAN CHOC',,,'Y',,0,,6.25,,, -01241,0100,'Ice cream sandwich made with light ice cream vanilla','ICE CRM SNDWCH MADE W/ LT ICE CRM VANILLA',,,'Y',,0,,6.25,,, -01242,0100,'Ice cream sandwich vanilla light no sugar added','ICE CRM SNDWCH VANILLA LT NO SUGAR ADDED',,,'Y',,0,,6.38,,, -01243,0100,'Fat free ice cream no sugar added flavors other than chocolate','FAT FREE ICE CRM NO SUGAR ADDED FLAVORS OTHER THAN CHOC',,,'Y',,0,,6.38,,, -01244,0100,'Milk dessert bar frozen made from lowfat milk','MILK DSSRT BAR FRZ MADE FROM LOWFAT MILK',,,'Y',,0,,6.38,,, -01249,0100,'Yogurt Greek 2% fat mixed berry blend CHOBANI','YOGURT GREEK 2% FAT MXD BERRY BLEND CHOBANI',,'Chobani',,,0,,6.38,,, -01250,0100,'Nutritional supplement for people with diabetes liquid','NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES LIQ',,,'Y',,0,,6.38,,, -01251,0100,'Cheese Mexican blend','CHEESE MEXICAN BLEND',,,'Y',,0,,6.38,,, -01252,0100,'Cheese product pasteurized process American vitamin D fortified','CHEESE PRODUCT PAST PROCESS AMERICAN VITAMIN D FORT',,,'Y',,0,,6.38,,, -01253,0100,'Cheese pasteurized process American without added vitamin D','CHEESE PAST PROCESS AMERICAN WO/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01254,0100,'Cheese food pasteurized process American without added vitamin D','CHEESE FD PAST PROCESS AMERICAN WO/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.79,3.87 -01255,0100,'Egg whole raw frozen salted pasteurized','EGG WHL RAW FRZ SALTED PAST',,,,,0,,6.25,,, -01256,0100,'Yogurt Greek plain nonfat (Includes foods for USDAs Food Distribution Program)','YOGURT GREEK PLN NONFAT',,,'Y',,0,,6.38,,, -01258,0100,'Egg white dried stabilized glucose reduced','EGG WHITE DRIED STABILIZED GLUCOSE RED',,,,,0,,6.25,,, -01259,0100,'Cheese spread American or Cheddar cheese base reduced fat','CHEESE SPRD AMERICAN OR CHEDDAR CHS BASE RED FAT',,,'Y',,0,,6.38,,, -01260,0100,'Cheese cheddar reduced fat (Includes foods for USDAs Food Distribution Program)','CHEESE CHEDDAR RED FAT',,,'Y',,0,,6.38,,, -01263,0100,'Ice cream light soft serve chocolate','ICE CRM LT SOFT SERVE CHOC',,,'Y',,0,,6.25,,, -01264,0100,'Ice cream bar stick or nugget with crunch coating','ICE CRM BAR STK OR NUGGET W/ CRUNCH COATING',,,'Y',,0,,6.38,,, -01265,0100,'Cheese cheddar nonfat or fat free','CHEESE CHEDDAR NONFAT OR FAT FREE',,,'Y',,0,,6.25,,, -01266,0100,'Cheese Swiss nonfat or fat free','CHEESE SWISS NONFAT OR FAT FREE',,,'Y',,0,,6.38,,, -01267,0100,'Cheese mexican queso cotija','CHEESE MEXICAN QUESO COTIJA',,,'Y',,0,,6.25,,, -01270,0100,'Cheese cheddar sharp sliced','CHEESE CHEDDAR SHARP SLICED',,,'Y',,0,,6.38,,, -01271,0100,'Cheese mozzarella low moisture part-skim shredded','CHEESE MOZZARELLA LO MOIST PART-SKIM SHREDDED',,,'Y',,0,,6.38,,, -01275,0100,'Yogurt Greek nonfat vanilla CHOBANI','YOGURT GREEK NONFAT VANILLA CHOBANI',,'Chobani',,,0,,6.38,,, -01276,0100,'Yogurt Greek strawberry DANNON OIKOS','YOGURT GREEK STRAWBERRY DANNON OIKOS',,'Danone',,,0,,6.38,,, -01278,0100,'Yogurt Greek nonfat vanilla DANNON OIKOS','YOGURT GREEK NONFAT VANILLA DANNON OIKOS',,'Danone',,,0,,6.38,,, -01280,0100,'Yogurt Greek nonfat strawberry DANNON OIKOS','YOGURT GREEK NONFAT STRAWBERRY DANNON OIKOS',,'Danone',,,0,,6.38,,, -01284,0100,'Yogurt Greek strawberry lowfat','YOGURT GREEK STRAWBERRY LOWFAT',,,'Y',,0,,6.38,,, -01285,0100,'Yogurt Greek strawberry nonfat','YOGURT GREEK STRAWBERRY NONFAT',,,'Y',,0,,6.38,,, -01286,0100,'Yogurt Greek vanilla nonfat','YOGURT GREEK VANILLA NONFAT',,,'Y',,0,,6.38,,, -01287,0100,'Yogurt Greek plain lowfat','YOGURT GREEK PLN LOWFAT',,,'Y',,0,,6.38,,, -01289,0100,'Kefir lowfat plain LIFEWAY','KEFIR LOWFAT PLN LIFEWAY',,'Lifeway','Y',,0,,6.38,,, -01290,0100,'Kefir lowfat strawberry LIFEWAY','KEFIR LOWFAT STRAWBERRY LIFEWAY',,,'Y',,0,,6.38,,, -01291,0100,'Milk evaporated 2% fat with added vitamin A and vitamin D','MILK CND EVAP WO/ VIT A',,,'Y',,0,,6.38,4.27,8.79,3.87 -01292,0100,'Milk chocolate fat free with added vitamin A and vitamin D','MILK CHOC FAT FREE W/ ADDED VIT A & VITAMIN D',,,'Y',,0,,6.25,,, -01293,0100,'Yogurt Greek plain whole milk','YOGURT GREEK PLN WHL MILK',,,'Y',,0,,6.25,,, -01294,0100,'Yogurt Greek fruit whole milk','YOGURT GREEK FRUIT WHL MILK',,,'Y',,0,,6.38,,, -01295,0100,'Yogurt vanilla non-fat','YOGURT VANILLA NON-FAT',,,'Y',,0,,6.38,4.27,8.79,3.87 -01297,0100,'Yogurt Greek vanilla lowfat','YOGURT GREEK VANILLA LOWFAT',,,'Y',,0,,6.38,,, -01298,0100,'Yogurt frozen flavors other than chocolate lowfat','YOGURT FRZ FLAVORS OTHER THAN CHOC LOWFAT',,,'Y',,0,,6.38,,, -01300,0100,'Ice cream bar covered with chocolate and nuts','ICE CRM BAR COVERED W/ CHOC & NUTS',,,'Y',,0,,6.38,,, -01301,0100,'Ice cream sundae cone','ICE CRM SUNDAE CONE',,,'Y',,0,,6.38,,, -01302,0100,'Light ice cream Creamsicle','LIGHT ICE CRM CREAMSICLE',,,'Y',,0,,6.25,,, -01303,0100,'Cream half and half lowfat','CREAM HALF & HALF LOWFAT',,,'Y',,0,,6.25,,, -01304,0100,'Yogurt Greek 2% fat pineapple CHOBANI','YOGURT GREEK 2% FAT PNAPPL CHOBANI',,'Chobani',,,0,,6.38,,, -01305,0100,'Milk chocolate lowfat reduced sugar','MILK CHOC LOWFAT RED SUGAR',,,'Y',,0,,6.38,,, -01306,0100,'Ice cream lowfat no sugar added cone added peanuts and chocolate sauce','ICE CRM LOWFAT NO SUGAR ADDED CONE ADDED PNUTS & CHOC SAU',,,'Y',,0,,6.25,,, -01307,0100,'Yogurt Greek 2% fat strawberry banana CHOBANI','YOGURT GREEK 2% FAT STRAWBERRY BANANA CHOBANI',,'Chobani',,,0,,,,, -01308,0100,'Yogurt Greek whole plain CHOBANI','YOGURT GREEK WHL PLN CHOBANI',,'Chobani',,,0,,6.38,,, -01312,0100,'Yogurt Greek nonfat lemon blend CHOBANI','YOGURT GREEK NONFAT LEMON BLEND CHOBANI',,'Chobani',,,0,,6.38,,, -01313,0100,'Yogurt Greek nonfat peach CHOBANI','YOGURT GREEK NONFAT PEACH CHOBANI',,'Chobani',,,0,,6.38,,, -01314,0100,'Yogurt Greek nonfat plain CHOBANI','YOGURT GREEK NONFAT PLN CHOBANI',,'Chobani',,,0,,6.38,,, -01316,0100,'Yogurt Greek nonfat raspberry CHOBANI','YOGURT GREEK NONFAT RASPBERRY CHOBANI',,'Chobani',,,0,,6.38,,, -01319,0100,'Yogurt Greek nonfat Fruit on Bottom Pomegranate CHOBANI','YOGURT GREEK NONFAT FRUIT ON BTTM POMEGRANATE CHOBANI',,'Chobani',,,0,,6.38,,, -01320,0100,'Yogurt Greek Blueberry CHOBANI','YOGURT GREEK BLUEBERRY CHOBANI',,'Chobani',,,0,,6.38,,, -01321,0100,'Yogurt Greek nonfat Fruit on Bottom Strawberry CHOBANI','YOGURT GREEK NONFAT FRUIT ON BTTM STRAWBERRY CHOBANI',,'Chobani',,,0,,6.38,,, -01322,0100,'Yogurt Greek nonfat Fruit on Bottom Blackberry CHOBANI','YOGURT GREEK NONFAT FRUIT ON BTTM BLACKBERRY CHOBANI',,'Chobani',,,0,,6.38,,, -01323,0100,'Butter Clarified butter (ghee)','BUTTER CLARIFIED BUTTER (GHEE)',,,,,0,,6.25,,, -02001,0200,'Spices allspice ground','ALLSPICE GROUND',,,,,0,'Pimenta dioica',6.25,3.36,8.37,2.35 -02002,0200,'Spices anise seed','ANISE SEED',,,,,0,'Pimpinella anisum',6.25,3.36,8.37,2.90 -02003,0200,'Spices basil dried','SPICES BASIL DRIED',,,'Y',,0,'Ocimum basilicum',6.25,2.44,8.37,3.00 -02004,0200,'Spices bay leaf','SPICES BAY LEAF',,,,,0,'Laurus nobilis',6.25,2.44,8.37,3.00 -02005,0200,'Spices caraway seed','CARAWAY SEED',,,'Y',,0,'Carum carvi',6.25,3.36,8.37,2.90 -02006,0200,'Spices cardamom','SPICES CARDAMOM',,,,,0,'Elettaria cardamomum',6.25,3.36,8.37,3.20 -02007,0200,'Spices celery seed','CELERY SEED',,,'Y',,0,'Apium graveolens',6.25,3.36,8.37,2.90 -02008,0200,'Spices chervil dried','CHERVIL DRIED',,,,,0,'Anthriscus cerefolium',6.25,2.44,8.37,3.00 -02009,0200,'Spices chili powder','CHILI POWDER',,,'Y',,0,,6.25,3.23,8.37,2.39 -02010,0200,'Spices cinnamon ground','CINNAMON GROUND','Cassia',,'Y',,0,'Cinnamomum aromaticum',6.25,1.82,8.37,2.85 -02011,0200,'Spices cloves ground','CLOVES GROUND',,,'Y',,0,'Syzygium aromaticum',6.25,1.82,8.37,2.35 -02012,0200,'Spices coriander leaf dried','CORIANDER LEAF DRIED','Chinese parsley cilantro',,'Y',,0,'Coriandrum sativum',6.25,2.44,8.37,3.57 -02013,0200,'Spices coriander seed','CORIANDER SEED',,,,,0,'Coriandrum sativum',6.25,3.36,8.37,1.95 -02014,0200,'Spices cumin seed','CUMIN SEED',,,'Y',,0,'Cuminum cyminum',6.25,3.36,8.37,2.90 -02015,0200,'Spices curry powder','CURRY POWDER',,,'Y',,0,,6.18,3.12,8.37,2.92 -02016,0200,'Spices dill seed','DILL SEED',,,,,0,'Anethum graveolens',6.25,3.36,8.37,2.35 -02017,0200,'Spices dill weed dried','DILL WEED DRIED',,,,,0,'Anethum graveolens',6.25,2.44,8.37,3.00 -02018,0200,'Spices fennel seed','FENNEL SEED',,,,,0,'Foeniculum vulgare',6.25,3.36,8.37,3.20 -02019,0200,'Spices fenugreek seed','FENUGREEK SEED',,,,,0,'Trigonella foenum-graecum',5.30,3.47,8.37,3.25 -02020,0200,'Spices garlic powder','GARLIC POWDER',,,'Y',,0,'Allium sativum',6.25,2.78,8.37,3.84 -02021,0200,'Spices ginger ground','GINGER GROUND',,,'Y',,0,'Zingiber officinale',6.25,2.78,8.37,3.84 -02022,0200,'Spices mace ground','MACE GROUND',,,,,0,'Myristica fragrans',6.25,3.36,8.37,3.60 -02023,0200,'Spices marjoram dried','MARJORAM DRIED',,,'Y',,0,'Origanum majorana',6.25,2.44,8.37,3.00 -02024,0200,'Spices mustard seed ground','SPICES MUSTARD SD GROUND',,,'Y',,0,'Sinapis alba and Brassica juncea',5.40,3.47,8.37,4.07 -02025,0200,'Spices nutmeg ground','NUTMEG GROUND',,,'Y',,0,'Myristica fragrans',5.30,3.47,8.37,4.07 -02026,0200,'Spices onion powder','ONION POWDER',,,'Y',,0,'Allium cepa',6.25,2.78,8.37,3.84 -02027,0200,'Spices oregano dried','SPICES OREGANO DRIED',,,'Y',,0,'Origanum vulgare',6.25,2.44,8.37,3.00 -02028,0200,'Spices paprika','PAPRIKA',,,'Y',,0,'Capsicum annuum',6.25,3.36,8.37,2.35 -02029,0200,'Spices parsley dried','PARSLEY DRIED',,,'Y',,0,'Petroselinum crispum',6.25,2.44,8.37,3.57 -02030,0200,'Spices pepper black','PEPPER BLACK',,,'Y',,0,'Piper nigrum',5.35,1.83,8.37,3.20 -02031,0200,'Spices pepper red or cayenne','PEPPER RED OR CAYENNE',,,'Y',,0,'Capsicum frutescens or Capsicum annuum',6.25,3.36,8.37,2.35 -02032,0200,'Spices pepper white','PEPPER WHITE',,,,,0,'Piper nigrum',5.35,1.83,8.37,3.78 -02033,0200,'Spices poppy seed','POPPY SEED',,,'Y',,0,'Papaver somniferum',5.30,3.47,8.37,4.07 -02034,0200,'Spices poultry seasoning','POULTRY SEASONING',,,'Y',,0,,5.89,2.36,8.37,3.38 -02035,0200,'Spices pumpkin pie spice','PUMPKIN PIE SPICE',,,'Y',,0,,6.06,2.50,8.37,3.19 -02036,0200,'Spices rosemary dried','ROSEMARY DRIED',,,,,0,'Rosmarinus officinalis',6.25,2.44,8.37,3.00 -02037,0200,'Spices saffron','SAFFRON',,,,,0,'Crocus sativus',6.25,2.44,8.37,3.57 -02038,0200,'Spices sage ground','SAGE GROUND',,,'Y',,0,'Salvia officinalis',6.25,2.44,8.37,3.00 -02039,0200,'Spices savory ground','SAVORY GROUND',,,,,0,'Satureja hortensis',6.25,2.44,8.37,3.00 -02041,0200,'Spices tarragon dried','SPICES TARRAGON DRIED',,,,,0,'Artemisia dracunculus',6.25,2.44,8.37,3.57 -02042,0200,'Spices thyme dried','SPICES THYME DRIED',,,'Y',,0,'Thymus vulgaris',6.25,2.44,8.37,3.00 -02043,0200,'Spices turmeric ground','TURMERIC GROUND',,,'Y',,0,'Curcuma longa L.',6.25,2.78,8.37,3.84 -02044,0200,'Basil fresh','BASIL FRESH',,,'Y','Tough stems flower heads and trimmings',36,'Ocimum basilicum',6.25,2.44,8.37,3.57 -02045,0200,'Dill weed fresh','DILL WEED FRSH',,,,'Tough stems and trimmings',41,'Anethum graveolens',6.25,2.44,8.37,3.57 -02046,0200,'Mustard prepared yellow','MUSTARD PREPARED YELLOW',,,'Y',,0,,6.25,3.47,8.37,3.34 -02047,0200,'Salt table','SALT TABLE',,,'Y',,0,,0.00,,, -02048,0200,'Vinegar cider','VINEGAR CIDER',,,'Y',,0,,0.00,,, -02049,0200,'Thyme fresh','THYME FRSH',,,,'Stems',32,'Thymus vulgaris',6.25,2.44,8.37,3.00 -02050,0200,'Vanilla extract','VANILLA EXTRACT',,,,,0,,6.25,2.44,8.37,3.90 -02051,0200,'Vanilla extract imitation alcohol','VANILLA EXTRACT IMITN ALCOHOL',,,,,0,,6.25,2.44,8.37,3.90 -02052,0200,'Vanilla extract imitation no alcohol','VANILLA EXTRACT IMITN NO ALCOHOL',,,'Y',,0,,6.25,2.44,8.37,3.90 -02053,0200,'Vinegar distilled','VINEGAR DISTILLED',,,'Y',,0,,,,, -02054,0200,'Capers canned','CAPERS CANNED',,,'Y',,0,'Capparis spinosa',6.25,1.82,8.37,2.35 -02055,0200,'Horseradish prepared','HORSERADISH PREPARED',,,'Y',,0,,6.25,2.78,8.37,3.44 -02063,0200,'Rosemary fresh','ROSEMARY FRESH',,,,'Stems',35,'Rosmarinus officinalis',6.25,2.44,8.37,3.57 -02064,0200,'Peppermint fresh','PEPPERMINT FRESH','mint',,,'Stems',39,'Mentha x piperita L. nothosubsp. piperita',6.25,2.44,8.37,3.57 -02065,0200,'Spearmint fresh','SPEARMINT FRESH','mint',,,'Stems',59,'Mentha spicata',6.25,2.44,8.37,3.57 -02066,0200,'Spearmint dried','SPEARMINT DRIED','mint',,,,0,,6.25,2.44,8.37,3.57 -02068,0200,'Vinegar red wine','VINEGAR RED WINE',,,,,0,,6.25,,, -02069,0200,'Vinegar balsamic','VINEGAR BALSAMIC',,,,,0,,,,, -02074,0200,'Seasoning mix dry sazon coriander & annatto','SEASONING MIX DRY SAZON CORIANDER & ANNATTO',,,,,0,,6.25,,, -02075,0200,'Seasoning mix dry taco original','SEASONING MIX DRY TACO ORIGINAL',,,,,0,,,,, -02076,0200,'Seasoning mix dry chili original','SEASONING MIX DRY CHILI ORIGINAL',,,,,0,,,,, -03000,0300,'Clif Z bar','CLIF Z BAR',,,'Y',,0,,6.14,4.10,8.90,4.10 -03001,0300,'Babyfood juice treats fruit medley toddler','BABYFOOD JUC TREATS FRUIT MEDLEY TODD',,,'Y',,0,,6.25,,, -03002,0300,'Babyfood meat beef strained','BABYFOOD MEAT BF STR',,,'Y',,0,,6.25,,, -03003,0300,'Babyfood meat beef junior','BABYFOOD MEAT BF JR',,,'Y',,0,,6.25,,, -03005,0300,'Babyfood meat veal strained','BABYFOOD MEAT VEAL STR',,,'Y',,0,,,,, -03007,0300,'Babyfood meat pork strained','BABYFOOD MEAT PORK STR',,,,,0,,6.25,4.27,9.02, -03008,0300,'Babyfood meat ham strained','BABYFOOD MEAT HAM STR',,,'Y',,0,,6.25,4.27,9.02, -03009,0300,'Babyfood meat ham junior','BABYFOOD MEAT HAM JUNIOR',,,,,0,,6.25,4.27,9.02, -03010,0300,'Babyfood meat lamb strained','BABYFOOD MEAT LAMB STR',,,'Y',,0,,6.25,4.27,9.02,3.87 -03011,0300,'Babyfood meat lamb junior','BABYFOOD MEAT LAMB JUNIOR',,,,,0,,6.25,4.27,9.02,3.87 -03012,0300,'Babyfood meat chicken strained','BABYFOOD MEAT CHICK STR',,,'Y',,0,,6.25,4.27,9.02, -03013,0300,'Babyfood meat chicken junior','BABYFOOD MEAT CHICK JR',,,'Y',,0,,6.25,4.27,9.02, -03014,0300,'Babyfood meat chicken sticks junior','BABYFOOD MEAT CHICK STKS JR',,,'Y',,0,,6.25,4.00,8.70,2.70 -03015,0300,'Babyfood meat turkey strained','BABYFOOD MEAT TURKEY STR',,,'Y',,0,,6.25,4.27,9.02, -03016,0300,'Babyfood meat turkey junior','BABYFOOD MEAT TURKEY JR',,,'Y',,0,,6.25,4.27,9.02, -03017,0300,'Babyfood meat turkey sticks junior','Babyfood meat turkey sticks junior',,,'Y',,0,,6.25,,, -03019,0300,'Babyfood snack GERBER GRADUATE FRUIT STRIPS Real Fruit Bars','BABYFOOD SNACK GERBER GRADUATE FRUIT STRIPS REAL FRUIT BARS',,'GERBER','Y',,0,,,,, -03021,0300,'Babyfood meat meat sticks junior','BABYFOOD MEAT MEAT STKS JR',,,'Y',,0,,6.25,4.00,8.70,2.70 -03022,0300,'Babyfood GERBER 2nd Foods apple carrot and squash organic','BABYFOOD GERBER 2ND FOODS APPL CARROT & SQUASH ORGANIC',,,'Y',,0,,6.25,,, -03023,0300,'Babyfood finger snacks GERBER GRADUATES PUFFS apple and cinnamon','BABYFOOD FINGER SNACKS GERBER GRADUATES PUFFS APPL & CINN',,'GERBER','Y',,0,,6.25,3.36,6.37,3.60 -03024,0300,'Babyfood water bottled GERBER without added fluoride','BABYFOOD H2O BTLD GERBER WO/ ADDED FLUORIDE',,'GERBER','Y',,0,,,,, -03025,0300,'Babyfood GERBER 3rd Foods apple mango and kiwi','BABYFOOD GERBER 3RD FOODS APPL MANGO & KIWI',,'GERBER','Y',,0,,6.25,3.60,8.37,3.60 -03026,0300,'Babyfood tropical fruit medley','BABYFOOD TROPICAL FRUIT MEDLEY',,,'Y',,0,,6.25,3.60,8.37,3.60 -03041,0300,'Babyfood dinner vegetables and dumplings and beef strained','BABYFOOD DINNER VEG&DUMPLINGS&BF STR',,,,,0,,6.03,4.10,8.90,4.10 -03042,0300,'Babyfood dinner vegetables and dumplings and beef junior','BABYFOOD DINNER VEG&DUMPLINGS&BF JR',,,,,0,,6.03,4.10,8.90,4.10 -03043,0300,'Babyfood dinner beef lasagna toddler','BABYFOOD DINNER BF LASAGNA TODD',,,,,0,,5.98,4.10,8.90,4.10 -03044,0300,'Babyfood dinner macaroni and tomato and beef strained','BABYFOOD DINNER MACARONI&TOMATO&BF STR',,,'Y',,0,,6.14,4.10,8.90,4.10 -03045,0300,'Babyfood dinner macaroni and tomato and beef junior','BABYFOOD DINNER MACARONI&TOMATO&BF JR',,,'Y',,0,,5.98,4.10,8.90,4.10 -03046,0300,'Babyfood ravioli cheese filled with tomato sauce','BABYFOOD RAVIOLI CHS FILLED W/TOMATO SAU',,,'Y',,0,,6.25,,, -03047,0300,'Babyfood dinner beef noodle strained','BABYFOOD DINNER BF NOODLE STR',,,'Y',,0,,6.14,4.10,8.90,4.10 -03048,0300,'Babyfood macaroni and cheese toddler','BABYFOOD MACARONI&CHS TODD',,,'Y',,0,,6.25,,, -03049,0300,'Babyfood dinner beef and rice toddler','BABYFOOD DINNER BF&RICE TODD',,,,,0,,6.14,4.10,8.90,4.10 -03050,0300,'Babyfood dinner spaghetti and tomato and meat junior','BABYFOOD DINNER SPAGHETTI&TOMATO&MEAT JR',,,'Y',,0,,6.25,,, -03051,0300,'Babyfood dinner spaghetti and tomato and meat toddler','BABYFOOD DINNER SPAGHETTI&TOMATO&MEAT TODD',,,,,0,,5.98,4.10,8.90,4.10 -03053,0300,'Babyfood dinner vegetables and beef strained','BABYFOOD DINNER VEG&BF STR',,,'Y',,0,,,,, -03054,0300,'Babyfood dinner vegetables and beef junior','BABYFOOD DINNER VEG&BF JR',,,'Y',,0,,,,, -03055,0300,'Babyfood dinner beef with vegetables','BABYFOOD DINNER BF W/VEG',,,'Y',,0,,,,, -03067,0300,'Babyfood dinner vegetables and lamb junior','BABYFOOD DINNER VEG&LAMB JR',,,,,0,,6.25,3.70,8.90,3.90 -03068,0300,'Babyfood dinner chicken noodle strained','BABYFOOD DINNER CHICK NOODLE STR',,,'Y',,0,,6.25,,, -03069,0300,'Babyfood dinner chicken noodle junior','BABYFOOD DINNER CHICK NOODLE JR',,,'Y',,0,,6.25,,, -03070,0300,'Babyfood dinner chicken soup strained','BABYFOOD DINNER CHICK SOUP STR',,,'Y',,0,,6.25,4.27,9.02,3.84 -03072,0300,'Babyfood dinner chicken stew toddler','BABYFOOD DINNER CHICK STEW TODD',,,'Y',,0,,6.25,3.70,8.90,3.90 -03073,0300,'Babyfood dinner vegetables chicken strained','BABYFOOD DINNER VEG CHICK STR',,,'Y',,0,,,,, -03075,0300,'Babyfood dinner vegetables noodles and chicken strained','BABYFOOD DINNER VEG NOODLES&CHICK STR',,,,,0,,5.98,4.10,8.90,4.10 -03076,0300,'Babyfood dinner vegetables noodles and chicken junior','BABYFOOD DINNER VEG NOODLES&CHICK JR',,,,,0,,5.98,4.10,8.90,4.10 -03077,0300,'Babyfood dinner pasta with vegetables','BABYFOOD DINNER PASTA W/VEG',,,'Y',,0,,,,, -03079,0300,'Babyfood dinner vegetables and noodles and turkey strained','BABYFOOD DINNER VEG&NOODLES&TURKEY STR',,,,,0,,5.98,4.10,8.90,4.10 -03081,0300,'Babyfood dinner vegetables and noodles and turkey junior','BABYFOOD DINNER VEG&NOODLES&TURKEY JR',,,,,0,,5.98,4.10,8.90,4.10 -03082,0300,'Babyfood dinner turkey and rice strained','BABYFOOD DINNER TURKEY&RICE STR',,,'Y',,0,,,,, -03083,0300,'Babyfood dinner turkey and rice junior','BABYFOOD DINNER TURKEY & RICE JR',,,'Y',,0,,,,, -03084,0300,'Babyfood dinner vegetables and turkey strained','BABYFOOD DINNER VEG&TURKEY STR',,,'Y',,0,,,,, -03085,0300,'Babyfood dinner vegetables and turkey junior','BABYFOOD DINNER VEG&TURKEY JR',,,'Y',,0,,,,, -03089,0300,'Babyfood dinner macaroni and cheese strained','BABYFOOD DINNER MACARONI&CHS STR',,,'Y',,0,,,,, -03090,0300,'Babyfood dinner macaroni and cheese junior','BABYFOOD DINNER MACARONI&CHS JR',,,'Y',,0,,6.00,4.20,8.70,4.00 -03091,0300,'Babyfood vegetables green beans strained','BABYFOOD VEG GRN BNS STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03092,0300,'Babyfood vegetables green beans junior','BABYFOOD VEG GRN BNS JR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03093,0300,'Babyfood green beans dices toddler','BABYFOOD GRN BNS DICES TODD',,,'Y',,0,,,,, -03096,0300,'Babyfood vegetable green beans and potatoes','BABYFOOD VEG GRN BNS&POTATOES',,,'Y',,0,,,,, -03098,0300,'Babyfood vegetables beets strained','BABYFOOD VEG BEETS STR',,,'Y',,0,,6.25,2.78,8.37,3.84 -03099,0300,'Babyfood vegetables carrots strained','BABYFOOD VEG CARROTS STR',,,'Y',,0,,6.25,2.78,8.37,3.84 -03100,0300,'Babyfood vegetables carrots junior','BABYFOOD VEG CARROTS JR',,,'Y',,0,,6.25,2.78,8.37,3.84 -03104,0300,'Babyfood vegetables squash strained','BABYFOOD VEG SQUASH STR',,,'Y',,0,,6.25,,, -03105,0300,'Babyfood vegetables squash junior','BABYFOOD VEG SQUASH JR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03108,0300,'Babyfood vegetables sweet potatoes strained','BABYFOOD VEG SWT POTATOES STR',,,'Y',,0,,6.25,2.78,8.37,4.03 -03109,0300,'Babyfood vegetables sweet potatoes junior','BABYFOOD VEG SWT POTATOES JR',,,'Y',,0,,6.25,2.78,8.37,4.03 -03112,0300,'Babyfood potatoes toddler','BABYFOOD POTATOES TODDLER',,,'Y',,0,,,,, -03113,0300,'Babyfood cereal Oatmeal dry GERBER SINGLE GRAIN fortified','BABYFOOD CRL OATMEAL DRY GERBER SINGLE GRAIN FORT',,'GERBER',,,0,,,,, -03114,0300,'Babyfood vegetable butternut squash and corn','BABYFOOD VEG BUTTERNUT SQUASH&CORN',,,'Y',,0,,,,, -03115,0300,'Babyfood apples dices toddler','BABYFOOD APPLS DICES TODD',,,'Y',,0,,6.25,,, -03116,0300,'Babyfood fruit applesauce strained','BABYFOOD FRUIT APPLSAUC STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03117,0300,'Babyfood fruit applesauce junior','BABYFOOD FRUIT APPLSAUC JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03118,0300,'Babyfood fruit apricot with tapioca strained','BABYFOOD FRUIT APRICOT W/TAPIOCA STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03119,0300,'Babyfood vegetables corn creamed strained','BABYFOOD VEG CORN CRMD STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03120,0300,'Babyfood vegetables corn creamed junior','BABYFOOD VEG CORN CRMD JR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03121,0300,'Babyfood vegetables peas strained','BABYFOOD VEG PEAS STR',,,'Y',,0,,,,, -03122,0300,'Babyfood peas dices toddler','BABYFOOD PEAS DICES TODD',,,'Y',,0,,,,, -03127,0300,'Babyfood vegetables spinach creamed strained','BABYFOOD VEG SPINACH CRMD STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03128,0300,'Babyfood fruit apricot with tapioca junior','BABYFOOD FRUIT APRICOT W/TAPIOCA JR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03129,0300,'Babyfood fruit bananas with tapioca strained','BABYFOOD FRUIT BANANAS W/TAPIOCA STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03130,0300,'Babyfood fruit peaches strained','BABYFOOD FRUIT PEACHES STR',,,'Y',,0,,,,, -03131,0300,'Babyfood fruit peaches junior','BABYFOOD FRUIT PEACHES JR',,,'Y',,0,,,,, -03132,0300,'Babyfood fruit pears strained','BABYFOOD FRUIT PEARS STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03133,0300,'Babyfood fruit pears junior','BABYFOOD FRUIT PEARS JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03134,0300,'Babyfood fruit plums with tapioca without ascorbic acid strained','BABYFOOD FRUIT PLUMS W/TAPIOCA WO/VIT C STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03135,0300,'Babyfood fruit plums with tapioca without ascorbic acid junior','BABYFOOD FRUIT PLUMS W/TAPIOCA WO/VIT C JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03136,0300,'Babyfood fruit prunes with tapioca without ascorbic acid strained','BABYFOOD FRUIT PRUNES W/TAPIOCA WO/VIT C STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03137,0300,'Babyfood fruit prunes with tapioca without ascorbic acid junior','BABYFOOD FRUIT PRUNES W/TAPIOCA WO/VIT C JR',,,,,0,,6.25,3.36,8.37,3.60 -03139,0300,'Babyfood prunes without vitamin c strained','BABYFOOD PRUNES WO/VIT C STR',,,'Y',,0,,,,, -03140,0300,'Babyfood fruit dessert mango with tapioca','BABYFOOD FRUIT DSSRT MANGO W/ TAPIOCA',,,'Y',,0,,6.25,3.36,8.37,3.60 -03141,0300,'Babyfood pears dices toddler','BABYFOOD PEARS DICES TODD',,,'Y',,0,,,,, -03142,0300,'Babyfood fruit applesauce and apricots strained','BABYFOOD FRUIT APPLSAUC&APRICOTS STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03143,0300,'Babyfood fruit applesauce and apricots junior','BABYFOOD FRUIT APPLSAUC&APRICOTS JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03144,0300,'Babyfood fruit applesauce and cherries strained','BABYFOOD FRUIT APPLSAUC&CHERRIES STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03145,0300,'Babyfood fruit applesauce and cherries junior','BABYFOOD FRUIT APPLSAUC & CHERRIES JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03147,0300,'Babyfood fruit applesauce with banana junior','BABYFOOD FRUIT APPLSAUC W/BANANA JR',,,'Y',,0,,,,, -03150,0300,'Babyfood fruit applesauce and pineapple strained','BABYFOOD FRUIT APPLSAUC&PNAPPL STR',,,,,0,,6.25,3.36,8.37,3.60 -03151,0300,'Babyfood fruit applesauce and pineapple junior','BABYFOOD FRUIT APPLSAUC&PNAPPL JR',,,,,0,,6.25,3.36,8.37,3.60 -03152,0300,'Babyfood fruit apple and raspberry strained','BABYFOOD FRUIT APPL & RASPBERRY STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03153,0300,'Babyfood fruit apple and raspberry junior','BABYFOOD FRUIT APPL & RASPBERRY JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03154,0300,'Babyfood fruit and vegetable apple and sweet potato','BABYFOOD FRUIT & VEG APPL & SWT POTATO',,,'Y',,0,,,,, -03156,0300,'Babyfood fruit bananas and pineapple with tapioca junior','BABYFOOD FRUIT BANANAS&PNAPPL W/TAPIOCA JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03157,0300,'Babyfood fruit bananas and pineapple with tapioca strained','BABYFOOD FRUIT BANANAS&PNAPPL W/TAPIOCA STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03158,0300,'Babyfood fruit pears and pineapple strained','BABYFOOD FRUIT PEARS&PNAPPL STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03159,0300,'Babyfood fruit pears and pineapple junior','BABYFOOD FRUIT PEARS&PNAPPL JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03160,0300,'Babyfood fruit guava and papaya with tapioca strained','BABYFOOD FRUIT GUAVA&PAPAYA W/TAPIOCA STR',,,,,0,,6.25,3.36,8.37,3.60 -03161,0300,'Babyfood peaches dices toddler','BABYFOOD PEACHES DICES TODD',,,'Y',,0,,,,, -03162,0300,'Babyfood fruit papaya and applesauce with tapioca strained','BABYFOOD FRUIT PAPAYA&APPLSAUC W/TAPIOCA STR',,,,,0,,6.25,3.36,8.37,3.60 -03163,0300,'Babyfood fruit bananas with apples and pears strained','BABYFOOD FRUIT BANANAS W/APPLS&PEARS STR',,,'Y',,0,,,,, -03164,0300,'Babyfood fruit apple and blueberry strained','BABYFOOD FRUIT APPL&BLUEBERRY STR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03165,0300,'Babyfood fruit apple and blueberry junior','BABYFOOD FRUIT APPL&BLUEBERRY JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03166,0300,'Babyfood juice apple','BABYFOOD JUICE APPLE',,,'Y',,0,,6.25,3.36,8.37,3.92 -03167,0300,'Babyfood apple-banana juice','BABYFOOD APPLE-BANANA JUC',,,'Y',,0,,,,, -03168,0300,'Babyfood juice apple and peach','BABYFOOD JUC APPL&PEACH',,,'Y',,0,,6.25,3.36,8.37,3.92 -03171,0300,'Babyfood juice apple and prune','BABYFOOD JUC APPL&PRUNE',,,'Y',,0,,6.25,3.36,8.37,3.92 -03172,0300,'Babyfood juice orange','BABYFOOD JUICE ORANGE',,,'Y',,0,,6.25,3.36,8.37,3.92 -03173,0300,'Babyfood juice orange and apple','BABYFOOD JUC ORANGE&APPL',,,,,0,,6.25,3.36,8.37,3.92 -03174,0300,'Babyfood juice orange and apple and banana','BABYFOOD JUC ORANGE&APPL&BANANA',,,'Y',,0,,6.25,3.36,8.37,3.92 -03175,0300,'Babyfood juice orange and apricot','BABYFOOD JUC ORANGE&APRICOT',,,,,0,,6.25,3.36,8.37,3.92 -03176,0300,'Babyfood juice orange and banana','BABYFOOD JUC ORANGE&BANANA',,,,,0,,6.25,3.36,8.37,3.92 -03177,0300,'Babyfood juice orange and pineapple','BABYFOOD JUC ORANGE&PNAPPL',,,,,0,,6.25,3.36,8.37,3.92 -03178,0300,'Babyfood juice prune and orange','BABYFOOD JUC PRUNE&ORANGE',,,,,0,,6.25,3.36,8.37,3.92 -03179,0300,'Babyfood juice mixed fruit','BABYFOOD JUC MXD FRUIT',,,'Y',,0,,6.25,3.36,8.37,3.92 -03181,0300,'Babyfood cereal barley dry fortified','BABYFOOD CRL BARLEY DRY FORT',,,'Y',,0,,5.83,3.55,8.37,3.95 -03184,0300,'Babyfood cereal whole wheat with apples dry fortified','BABYFOOD CRL WHL WHEAT W/ APPLS DRY FORT',,,'Y',,0,,,,, -03185,0300,'Babyfood cereal mixed dry fortified','BABYFOOD CRL MXD DRY FORT',,,'Y',,0,,5.90,3.40,8.40,4.10 -03186,0300,'Babyfood cereal mixed with bananas dry','BABYFOOD CRL MXD W/ BANANAS DRY',,,'Y',,0,,6.10,3.40,8.40,4.10 -03187,0300,'Babyfood cereal mixed with applesauce and bananas strained','BABYFOOD CRL MXD W/ APPLSAUC & BANANAS STR',,,'Y',,0,,6.10,3.40,8.40,4.10 -03188,0300,'Babyfood cereal mixed with applesauce and bananas junior fortified','BABYFOOD CRL MXD W/ APPLSAUC & BANANAS JR FORT',,,'Y',,0,,6.10,3.40,8.40,4.10 -03189,0300,'Babyfood cereal oatmeal dry fortified','BABYFOOD CRL OATMEAL DRY FORT',,,'Y',,0,,5.83,3.46,8.37,4.12 -03190,0300,'Babyfood cereal oatmeal with bananas dry','BABYFOOD CRL OATMEAL W/ BANANAS DRY',,,'Y',,0,,6.04,3.50,8.40,4.10 -03191,0300,'Babyfood cereal oatmeal with applesauce and bananas strained','BABYFOOD CRL OATMEAL W/ APPLSAUC & BANANAS STR',,,'Y',,0,,6.04,3.50,8.40,4.10 -03192,0300,'Babyfood cereal oatmeal with applesauce and bananas junior fortified','BABYFOOD CRL OATMEAL W/ APPLSAUC & BANANAS JR FORT',,,'Y',,0,,6.04,3.50,8.40,4.10 -03193,0300,'Babyfood cereal oatmeal with honey dry','BABYFOOD CRL OATMEAL W/HONEY DRY',,,,,0,,5.83,3.50,8.40,4.10 -03194,0300,'Babyfood cereal rice dry fortified','BABYFOOD CRL RICE DRY FORT',,,'Y',,0,,5.95,3.82,8.37,4.16 -03195,0300,'Babyfood cereal rice with applesauce and bananas strained','BABYFOOD CRL RICE W/ APPLSAUC & BANANAS STR',,,'Y',,0,,6.00,3.80,8.40,4.20 -03197,0300,'Babyfood cereal with egg yolks strained','BABYFOOD CRL W/EGG YOLKS STR',,,,,0,,6.03,4.20,8.80,3.90 -03198,0300,'Babyfood cereal with egg yolks junior','BABYFOOD CRL W/EGG YOLKS JR',,,,,0,,6.03,4.20,8.80,3.90 -03199,0300,'Babyfood cereal with eggs strained','BABYFOOD CRL W/EGGS STR',,,,,0,,6.03,4.20,8.80,3.90 -03201,0300,'Babyfood cereal egg yolks and bacon junior','BABYFOOD CRL EGG YOLKS&BACON JR',,,,,0,,6.03,4.20,8.80,3.90 -03205,0300,'Babyfood oatmeal cereal with fruit dry instant toddler fortified','BABYFOOD OATMEAL CRL W/ FRUIT DRY INST TODD FORT',,,'Y',,0,,,,, -03206,0300,'Babyfood cookie baby fruit','BABYFOOD COOKIE BABY FRUIT',,,'Y',,0,,,,, -03209,0300,'Babyfood crackers vegetable','BABYFOOD CRACKERS VEG',,,'Y',,0,,,,, -03211,0300,'Babyfood cereal high protein with apple and orange dry','BABYFOOD CRL HI PROT W/APPL&ORANGE DRY',,,,,0,,5.85,3.50,8.40,4.00 -03212,0300,'Babyfood cereal rice with bananas dry','BABYFOOD CRL RICE W/ BANANAS DRY',,,'Y',,0,,6.00,3.80,8.40,4.20 -03213,0300,'Babyfood cookies','BABYFOOD COOKIES',,,'Y',,0,,5.70,4.00,8.40,4.10 -03214,0300,'Babyfood cookies arrowroot','BABYFOOD COOKIES ARROWROOT',,,,,0,,5.75,4.00,8.40,4.10 -03215,0300,'Babyfood pretzels','BABYFOOD PRETZELS',,,'Y',,0,,5.70,4.00,8.40,4.10 -03216,0300,'Babyfood GERBER GRADUATES Lil Biscuits Vanilla Wheat','BABYFOOD GERBER GRADUATES LIL BISCUITS VANILLA WHEAT',,,'Y',,0,,5.85,4.00,8.40,4.10 -03217,0300,'Zwieback','ZWIEBACK',,,'Y',,0,,5.85,4.00,8.40,4.10 -03220,0300,'Babyfood dessert dutch apple strained','BABYFOOD DSSRT DUTCH APPL STR',,,'Y',,0,,6.25,3.40,8.40,3.60 -03221,0300,'Babyfood dessert dutch apple junior','BABYFOOD DSSRT DUTCH APPL JR',,,'Y',,0,,,,, -03222,0300,'Babyfood cherry cobbler junior','BABYFOOD CHERRY COBBLER JR',,,'Y',,0,,,,, -03224,0300,'Babyfood dessert cherry vanilla pudding strained','BABYFOOD DSSRT CHERRY VANILLA PUDD STR',,,'Y',,0,,6.25,4.30,8.90,3.60 -03225,0300,'Babyfood dessert cherry vanilla pudding junior','BABYFOOD DSSRT CHERRY VANILLA PUDD JR',,,'Y',,0,,6.25,4.30,8.90,3.60 -03226,0300,'Babyfood dessert fruit pudding orange strained','BABYFOOD DSSRT FRUIT PUDD ORANGE STR',,,,,0,,6.33,4.30,8.90,3.80 -03227,0300,'Babyfood dessert peach cobbler strained','BABYFOOD DSSRT PEACH COBBLER STR',,,'Y',,0,,6.20,3.40,8.40,3.60 -03228,0300,'Babyfood dessert peach cobbler junior','BABYFOOD DSSRT PEACH COBBLER JR',,,'Y',,0,,6.20,3.40,8.40,3.60 -03229,0300,'Babyfood dessert peach melba strained','BABYFOOD DSSRT PEACH MELBA STR',,,,,0,,6.25,3.40,8.40,3.60 -03230,0300,'Babyfood dessert peach melba junior','BABYFOOD DSSRT PEACH MELBA JR',,,,,0,,6.25,3.40,8.40,3.60 -03233,0300,'Babyfood dessert fruit pudding pineapple strained','BABYFOOD DSSRT FRUIT PUDD PNAPPL STR',,,'Y',,0,,6.20,4.30,8.90,3.60 -03235,0300,'Babyfood dessert fruit dessert without ascorbic acid strained','BABYFOOD DSSRT FRUIT DSSRT WO/VIT C STR',,,'Y',,0,,6.25,3.40,8.40,3.60 -03236,0300,'Babyfood dessert fruit dessert without ascorbic acid junior','BABYFOOD DSSRT FRUIT DSSRT WO/VIT C JR',,,'Y',,0,,6.25,3.40,8.40,3.60 -03238,0300,'Babyfood dessert tropical fruit junior','BABYFOOD DSSRT TROPICAL FRUIT JR',,,,,0,,6.25,3.40,8.40,3.60 -03245,0300,'Babyfood dessert custard pudding vanilla strained','BABYFOOD DSSRT CUSTARD PUDD VANILLA STR',,,'Y',,0,,6.33,4.30,8.90,3.80 -03246,0300,'Babyfood dessert custard pudding vanilla junior','BABYFOOD DSSRT CUSTARD PUDD VANILLA JR',,,'Y',,0,,,,, -03265,0300,'Babyfood juice apple and grape','BABYFOOD JUC APPL&GRAPE',,,'Y',,0,,6.25,3.36,8.37,3.92 -03267,0300,'Babyfood juice fruit punch with calcium','BABYFOOD JUC FRUIT PUNCH W/CA',,,'Y',,0,,,,, -03269,0300,'Babyfood juice apple with calcium','BABYFOOD JUC APPL W/CA',,,'Y',,0,,,,, -03274,0300,'Babyfood dinner vegetables and chicken junior','BABYFOOD DINNER VEG&CHICK JR',,,'Y',,0,,,,, -03278,0300,'Babyfood dinner mixed vegetable strained','BABYFOOD DINNER MXD VEG STR',,,,,0,,6.07,3.00,8.40,3.80 -03279,0300,'Babyfood dinner mixed vegetable junior','BABYFOOD DINNER MXD VEG JR',,,'Y',,0,,6.07,3.00,8.40,3.80 -03280,0300,'Babyfood fruit bananas with tapioca junior','BABYFOOD FRUIT BANANAS W/TAPIOCA JR',,,'Y',,0,,6.25,3.36,8.37,3.60 -03282,0300,'Babyfood vegetables mix vegetables junior','BABYFOOD VEG MIX VEG JR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03283,0300,'Babyfood vegetables garden vegetable strained','BABYFOOD VEG GARDEN VEG STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03286,0300,'Babyfood vegetables mix vegetables strained','BABYFOOD VEG MIX VEG STR',,,'Y',,0,,6.25,2.44,8.37,3.57 -03287,0300,'Babyfood dinner beef noodle junior','BABYFOOD DINNER BF NOODLE JR',,,'Y',,0,,5.98,4.10,8.90,4.10 -03289,0300,'Babyfood apples with ham strained','BABYFOOD APPLS W/HAM STR',,,'Y',,0,,,,, -03290,0300,'Babyfood carrots and beef strained','BABYFOOD CARROTS&BF STR',,,'Y',,0,,,,, -03293,0300,'Babyfood plums bananas and rice strained','BABYFOOD PLUMS BANANAS&RICE STR',,,'Y',,0,,,,, -03296,0300,'Babyfood dinner turkey rice and vegetables toddler','BABYFOOD TURKEY RICE&VEG TODD',,,'Y',,0,,,,, -03297,0300,'Babyfood dinner apples and chicken strained','BABYFOOD DINNER APPLS&CHICK STR',,,'Y',,0,,,,, -03298,0300,'Babyfood dinner broccoli and chicken junior','BABYFOOD DINNER BROCCOLI & CHICK JR',,,'Y',,0,,,,, -03301,0300,'Babyfood beverage GERBER GRADUATES FRUIT SPLASHERS','BABYFOOD BEV GERBER GRADUATES FRUIT SPLASHERS',,'GERBER','Y',,0,,6.25,,, -03302,0300,'Babyfood snack GERBER GRADUATES YOGURT MELTS','BABYFOOD SNACK GERBER GRADUATES YOGURT MELTS',,'GERBER','Y',,0,,6.25,,, -03303,0300,'Babyfood dinner sweet potatoes and chicken strained','BABYFOOD DINNER SWT POTATOES&CHICK STR',,,'Y',,0,,,,, -03376,0300,'Infant formula MEAD JOHNSON Enfamil 24 ready to feed with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAM 24 READY TO FE W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03381,0300,'Infant formula MEAD JOHNSON Enfamil Enspire Powder with ARA and DHA not reconstituted','INF FORM ME JOHN ENFA ENSPI PDR W/ ARA & DHA NOT RECON',,'MEAD JOHNSON',,,0,,,,, -03382,0300,'Infant formula MEAD JOHNSON Enfamil Premature High Protein 24 Calories ready to feed with ARA and DHA','INF FOR ME JOH ENFAMIL PRE HI PRO 24 CAL RE TO FE W/ AR & DH',,'MEAD JOHNSON',,,0,,,,, -03384,0300,'Infant formula MEAD JOHNSON Enfamil Premature 30 Calories ready to feed with ARA and DHA','INF FORM MEAD JOHN ENF PREMA 30 CAL REA TO FE W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03385,0300,'Infant formula MEAD JOHNSON Enfamil for Supplementing powder with ARA and DHA not reconstituted','INF FOR M JOH ENFA FOR SUPPL PDR W/ ARA & DHA NOT RECON',,'MEAD JOHNSON',,,0,,,,, -03386,0300,'Infant formula MEAD JOHNSON Enfamil Reguline Powder with ARA and DHA not reconstituted','INF FORMULA ME JOH ENFA REGUPDR W/ ARA & DHA NOT RECON',,'MEAD JOHNSON',,,0,,,,, -03387,0300,'Infant formula MEAD JOHNSON Enfamil Reguline ready to feed with ARA and DHA','INF FORM MEAD JOHN ENFAM REGU READY TO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03388,0300,'Infant formula MEAD JOHNSON Gentlease ready to feed with ARA and DHA','INF FORMULA MEAD JOHNSON GENTLEASE REA TO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03389,0300,'Toddler formula MEAD JOHNSON Nutramigen Toddler with LGG Powder with ARA and DHA not reconstituted','TODD FORM M JOHN NUTR TODD W/ LGG PDR W/ ARA & DHA NOT RECON',,,,,0,,,,, -03390,0300,'Infant formula MEAD JOHNSON Pregestimil 20 Calories ready to feed with ARA and DHA','INF FORM MEJOHN PREGESTIM 20 CAL RE TO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03391,0300,'Infant formula MEAD JOHNSON Pregestimil 24 Calories ready to feed with ARA and DHA','INF FORMUMEAD JOH PREGESTI 24 CAL READY TO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03392,0300,'Toddler drink MEAD JOHNSON PurAmino Toddler Powder with ARA and DHA not reconstituted','TODDLER DRK MEAD JOH PURA TODD PDR W/ ARA & DHA NOT RECON',,,,,0,,,,, -03393,0300,'Infant formula MEAD JOHNSON Enfamil for Supplementing ready to feed with ARA and DHA','INF FORM MEAD JOHN ENFA FO SUPPLEME REA TO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03681,0300,'Babyfood cereal barley prepared with whole milk','BABYFOOD CRL BARLEY PREP W/WHL MILK',,,,,0,,0.00,,, -03682,0300,'Babyfood cereal high protein prepared with whole milk','BABYFOOD CRL HI PROT PREP W/WHL MILK',,,,,0,,0.00,,, -03685,0300,'Babyfood cereal mixed prepared with whole milk','BABYFOOD CRL MXD PREP W/WHL MILK',,,,,0,,0.00,,, -03686,0300,'Babyfood cereal mixed with bananas prepared with whole milk','BABYFOOD CRL MXD W/BANANAS PREP W/WHL MILK',,,,,0,,0.00,,, -03689,0300,'Babyfood cereal oatmeal prepared with whole milk','BABYFOOD CRL OATMEAL PREP W/WHL MILK',,,,,0,,0.00,,, -03690,0300,'Babyfood cereal oatmeal with bananas prepared with whole milk','BABYFOOD CRL OATMEAL W/BANANAS PREP W/WHL MILK',,,,,0,,0.00,,, -03693,0300,'Babyfood cereal oatmeal with honey prepared with whole milk','BABYFOOD CRL OATMEAL W/HONEY PREP W/WHL MILK',,,,,0,,0.00,,, -03694,0300,'Babyfood cereal rice prepared with whole milk','BABYFOOD CRL RICE PREP W/WHL MILK',,,,,0,,0.00,,, -03696,0300,'Babyfood cereal rice with honey prepared with whole milk','BABYFOOD CRL RICE W/HONEY PREP W/WHL MILK',,,,,0,,0.00,,, -03704,0300,'Babyfood cereal mixed with honey prepared with whole milk','BABYFOOD CRL MXD W/HONEY PREP W/WHL MILK',,,,,0,,0.00,,, -03711,0300,'Babyfood cereal high protein with apple and orange prepared with whole milk','BABYFOOD CRL HI PROT W/APPL&ORANGE PREP W/WHL MILK',,,,,0,,0.00,,, -03712,0300,'Babyfood cereal rice with bananas prepared with whole milk','BABYFOOD CRL RICE W/BANANAS PREP W/WHL MILK',,,,,0,,0.00,,, -03801,0300,'Infant formula NESTLE GOOD START SUPREME with iron liquid concentrate not reconstituted','INF FORMULA NES G START SUPR W/ IRON LIQ CONC NOT RECON',,'Nestle USA Inc.','Y',,0,,,,, -03802,0300,'Infant formula NESTLE GOOD START SUPREME with iron powder','INF FORMULA NESTLE GOOD START SUPREME W/ IRON PDR',,'Nestle USA Inc.','Y',,0,,,,, -03805,0300,'Infant formula MEAD JOHNSON ENFAMIL with iron powder','INF FORMULA MEAD JOHNSON ENFAMIL W/ IRON PDR',,'MEAD JOHNSON','Y',,0,,,,, -03808,0300,'Infant formula MEAD JOHNSON ENFAMIL Infant with iron powder with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAMIL INFA W/ IR PDR W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03812,0300,'Infant formula MEAD JOHNSON ENFAMIL Infant with iron liquid concentrate with ARA and DHA reconstituted','INF FORMU M JOH ENFA INFA W/ IRON LIQ CO W/ ARA & DHA RECON',,'MEAD JOHNSON','Y',,0,,,,, -03815,0300,'Infant formula MEAD JOHNSON ENFAMIL LIPIL with iron ready-to-feed with ARA and DHA','INF FORMULA MEAD JOHN ENFAMIL LIPIL W/ IRON RTF W/ AR & DH',,'MEAD JOHNSON','Y',,0,,,,, -03818,0300,'Infant formula MEAD JOHNSON ENFAMIL LIPIL low iron liquid concentrate with ARA and DHA','INF FORM ME JOHNS ENFAM LIP LO IRON LIQ CONC W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03821,0300,'Infant formula MEAD JOHNSON PREGESTIMIL with iron powder with ARA and DHA not reconstituted','INF FORMU ME JOHN PREGESTI W/ IRON PDR W/ ARA & DHA N RE',,'MEAD JOHNSON','Y',,0,,,,, -03822,0300,'Infant formula MEAD JOHNSON PREGESTIMIL with iron with ARA and DHA prepared from powder','INF FORMU MEAD JOH PREGES W/ IRON W/ ARA & DHA PREP FR PD',,'MEAD JOHNSON','Y',,0,,,,, -03823,0300,'Infant formula MEAD JOHNSON PROSOBEE with iron ready-to-feed','INF FORMULA MEAD JOHNSON PROSOBEE W/ IRON RTF',,,'Y',,0,,,,, -03825,0300,'Infant formula MEAD JOHNSON ENFAMIL LIPIL low iron ready to feed with ARA and DHA','INF FOR ME JOHN ENFAM LIPIL LO IRON READY TO FE W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03832,0300,'Infant formula MEAD JOHNSON ENFAMIL Infant ready-to-feed with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAMIL INFANT RTF W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03837,0300,'Infant formula ABBOTT NUTRITION SIMILAC PM 60/40 powder not reconstituted','INF FORMULA ABBOTT NUTR SIMILAC PM 60/40 PDR NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03838,0300,'Infant formula MEAD JOHNSON ENFAMIL NUTRAMIGEN WITH LGG with iron powder not reconstituted with ARA and DHA','IN FOR ME JOH ENF NUTRA W/ LGG W/ IR PDR NOT R W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03841,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL with iron ready-to-feed','INF FORMULA ABBO NUTR SIMIL ISOMI W/ IRON RTF',,'ABBOT NUTRTION','Y',,0,,,,, -03842,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL with iron liquid concentrate','INF FORMULA ABBOTT NUTR SIMILAC ISOMIL W/ IRON LIQ CONC',,'ABBOT NUTRTION','Y',,0,,,,, -03843,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL with iron powder not reconstituted','INF FORMULA ABBO NUTR SIMILA ISOMI W/ IRON PDR NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03844,0300,'Infant formula MEAD JOHNSON ENFAMIL NUTRAMIGEN with iron liquid concentrate not reconstituted with ARA and DHA','INF FOR ME JOH ENFA NUTR W/ IRON LIQ CO NOT REC W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03845,0300,'Infant formula MEAD JOHNSON ENFAMIL NUTRAMIGEN with iron ready-to-feed with ARA and DHA','INF FORMU ME JOHNS ENFA NUTRAMI W/ IRON RTF W/ AR & D',,'MEAD JOHNSON','Y',,0,,,,, -03846,0300,'Infant formula ABBOTT NUTRITION SIMILAC ALIMENTUM with iron ready-to-feed','INF FORMULA ABBOTT NUTR SIMILAC ALIMENTUM W/ IRON RTF',,'ABBOT NUTRTION','Y',,0,,,,, -03849,0300,'Infant formula MEAD JOHNSON ENFAMIL ENFACARE with iron powder with ARA and DHA','INF FORMU MEA JOHNS ENFAMIL ENFACA W/ IRON PDR W/ AR & D',,'MEAD JOHNSON','Y',,0,,6.38,,, -03851,0300,'Infant formula ABBOTT NUTRITION SIMILAC with iron liquid concentrate not reconstituted','INF FORM AB NUTR SIMILAC W/ IRON LIQ CONC NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03852,0300,'Infant formula MEAD JOHNSON ENFAMIL PROSOBEE with iron powder not reconstituted with ARA and DHA','INF FOR MEAD JOHN ENFA PROSO W/ IRON PDR NOT RE W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03853,0300,'Infant formula ABBOTT NUTRITION SIMILAC with iron powder not reconstituted','INF FORMULA ABBOTT NUTR SIMILAC W/ IRON PDR NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03854,0300,'Infant formula MEAD JOHNSON ENFAMIL PROSOBEE liquid concentrate reconstituted with ARA and DHA','INF FOR MEAD JOHNSOFAMIL PROS LIQ CONC RE W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03857,0300,'Infant formula MEAD JOHNSON PROSOBEE with iron ready to feed with ARA and DHA','INF FORMULA MEAD JOHNS PROSO W/ IR RE TO FE W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03859,0300,'Infant formula NESTLE GOOD START SOY with DHA and ARA ready-to-feed','INF FORMULA NESTLE GOOD START SOY W/ DHA & ARA RTF',,'Nestle USA Inc.','Y',,0,,,,, -03860,0300,'Child formula ABBOTT NUTRITION PEDIASURE ready-to-feed','CHILD FORMULA ABBOTT NUTR PEDIASURE RTF (FORMERLY ROSS)',,'ABBOT NUTRTION','Y',,0,,,,, -03861,0300,'Infant formula MEAD JOHNSON NEXT STEP PROSOBEE LIPIL powder with ARA and DHA','INF FORM MEAD JOHN NEXT STEP PROS LIPIL PDR W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03864,0300,'Infant formula MEAD JOHNSON NEXT STEP PROSOBEE LIPIL ready to feed with ARA and DHA','INF FORM ME JO NEXT STEP PROSO LIPIL REATO FEED W/ ARA & DHA',,'MEAD JOHNSON',,,0,,,,, -03867,0300,'Infant formula NESTLE GOOD START SOY with ARA and DHA powder','INF FORMULA NESTLE GOOD START SOY W/ ARA & DHA PDR',,'Nestle USA Inc.','Y',,0,,,,, -03870,0300,'Child formula ABBOTT NUTRITION PEDIASURE ready-to-feed with iron and fiber','CHI FORMU ABBT NUTR PEDIASU RTF W/ IRON & FIB (FORMER ROSS)',,'ABBOT NUTRTION','Y',,0,,,,, -03928,0300,'Infant formula NESTLE GOOD START ESSENTIALS SOY with iron powder','INF FORMULA NESTLE GOOD START ESSENTIALS SOY W/ IRON PDR',,'Nestle USA Inc.','Y',,0,,,,, -03929,0300,'Infant formula MEAD JOHNSON NEXT STEP PROSOBEE powder not reconstituted','INF FORMULA MEAD JOHNSON NEXT STEP PROSOBEE PDR NOT RECON',,'MEAD JOHNSON','Y',,0,,5.71,,, -03930,0300,'Infant formula MEAD JOHNSON NEXT STEP PROSOBEE prepared from powder','INF FORMULA MEAD JOHNSON NEXT STEP PROSOBEE PREP FROM PDR',,'MEAD JOHNSON',,,0,,,,, -03934,0300,'Babyfood corn and sweet potatoes strained','BABYFOOD CORN & SWT POTATOES STR',,,'Y',,0,,,,, -03935,0300,'Infant formula ABBOTT NUTRITION SIMILAC ALIMENTUM ADVANCE ready-to-feed with ARA and DHA','INF FORM ABBO NUTR SIMIL ALIMENT ADVAN RTF W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,,,, -03936,0300,'Infant formula PBM PRODUCTS store brand ready-to-feed','INF FORMULA PBM PRODUC STO BRA RTF (FORMERLY WYETH-AYERST)',,'PBM','Y',,0,,,,, -03937,0300,'Infant formula PBM PRODUCTS store brand liquid concentrate not reconstituted','INF FORM PBM PROD STORE BRAND LC NOT REC (FORM WYETH-AYERST)',,'PBM','Y',,0,,,,, -03938,0300,'Infant formula PBM PRODUCTS store brand powder','INF FORMULA PBM PRODUCTS STORE BRAND PDR',,'PBM','Y',,0,,,,, -03939,0300,'Infant formula PBM PRODUCTS store brand soy ready-to-feed','INF FORMULA PBM PRODUCTS STORE BRAND SOY RTF',,'PBM','Y',,0,,,,, -03940,0300,'Infant formula PBM PRODUCTS store brand soy liquid concentrate not reconstituted','INF FORMU PBM PRODU STORE BR SOY LIQ CONC NOT RECON',,'PBM','Y',,0,,,,, -03941,0300,'Infant formula PBM PRODUCTS store brand soy powder','INF FORMULA PBM PRODUCTS STORE BRAND SOY PDR',,'PBM','Y',,0,,,,, -03942,0300,'Infant formula MEAD JOHNSON ENFAMIL AR ready-to-feed with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAMIL AR RTF W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03943,0300,'Infant formula MEAD JOHNSON ENFAMIL AR powder with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAMIL AR PDR W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03944,0300,'Infant formula ABBOTT NUTRITION SIMILAC NEOSURE ready-to-feed with ARA and DHA','INF FORM ABBOT NUT SIMIL NEOSU RTF W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,,,, -03945,0300,'Infant formula ABBOTT NUTRITION SIMILAC NEOSURE powder with ARA and DHA','INF FORMULA ABBOTT SIMILAC NEOSURE PDR W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,,,, -03946,0300,'Infant formula ABBOTT NUTRITION SIMILAC SENSITIVE (LACTOSE FREE) ready-to-feed with ARA and DHA','INF FORMULA ABB NUTR SIMI SENS (LACT FRE) RTF W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,,,, -03947,0300,'Infant formula ABBOTT NUTRITION SIMILAC SENSITIVE (LACTOSE FREE) liquid concentrate with ARA and DHA','INF FORMULA ABB NUT SIMIL SENS (LACT FR) LIQ CON W/ AR & DH',,'ABBOT NUTRTION','Y',,0,,,,, -03948,0300,'Infant formula ABBOTT NUTRITION SIMILAC SENSITIVE (LACTOSE FREE) powder with ARA and DHA','INF FORMULA ABB NUTR SIMIL SENS (LACTO FR) PD W/ ARA & DH',,'ABBOT NUTRTION','Y',,0,,,,, -03949,0300,'Infant formula ABBOTT NUTRITION SIMILAC ADVANCE with iron ready-to-feed','INF FORMULA ABBOTT NUTR SIMILAC ADVANCE W/ IRON RTF',,'ABBOT NUTRTION','Y',,0,,,,, -03950,0300,'Infant formula ABBOTT NUTRITION SIMILAC ADVANCE with iron powder not reconstituted','INF FORMULA ABBOTT NUTR SIMILAC ADVANC W/ IRON PDR NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03951,0300,'Infant formula ABBOTT NUTRITION SIMILAC ADVANCE with iron liquid concentrate not reconstituted','INF FORMU ABBO NUTR SIMILAC ADVAN W/ IRON LIQ CONC NOT RECON',,'ABBOT NUTRTION','Y',,0,,,,, -03952,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL ADVANCE with iron liquid concentrate','INF FORMULA ABB NUTR SIMIL ISOMIL ADVA W/ IRON LIQ CONC',,'ABBOT NUTRTION','Y',,0,,,,, -03953,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL ADVANCE with iron ready-to-feed','INF FORMULA ABBO NUTR SIMIL ISOMIL ADVANCE W/ IRON RTF',,'ABBOT NUTRTION','Y',,0,,,,, -03954,0300,'Infant formula ABBOTT NUTRITION SIMILAC ISOMIL ADVANCE with iron powder not reconstituted','INF FORMULA ABB NUTR SIMI ISOMI ADVAN W/ IRO PD NOT REC',,'ABBOT NUTRTION','Y',,0,,,,, -03955,0300,'Infant Formula MEAD JOHNSON ENFAMIL ENFACARE ready-to-feed with ARA and DHA','INF FORMULA MEAD JOHNSON ENFAMIL ENFACARE RTF W/ ARA & DHA',,'MEAD JOHNSON','Y',,0,,,,, -03956,0300,'Babyfood yogurt whole milk with fruit multigrain cereal and added DHA fortified','BABYFOOD YOG WHL MILK W/ FRUIT MULTIG CRL & ADD DHA FORT',,,'Y',,0,,,,, -03957,0300,'Infant formula ABBOTT NUTRITION ALIMENTUM ADVANCE with iron powder not reconstituted with DHA and ARA','INF FORM ABBOTT ALIMENTUM ADVANCE IRON PDR NOTREC DHA&ARA',,'ABBOT NUTRTION','Y',,0,,6.25,,, -03959,0300,'Babyfood mashed cheddar potatoes and broccoli toddlers','BABYFOOD MSHD CHEDDAR POTATOES&BROCCOLI TODDLER',,,'Y',,0,,,,, -03960,0300,'Infant formula NESTLE GOOD START SUPREME with iron DHA and ARA ready-to-feed','INF FORMULA NESTLE GOOD START SUPREME W/ IRON DHA & ARA RTF',,'Nestle USA Inc.','Y',,0,,,,, -03961,0300,'Infant formula NESTLE GOOD START SUPREME with iron DHA and ARA prepared from liquid concentrate','INF FORM NESTLE GOOD START SUPREME IRON DHA&ARA PRP FR LC',,'Nestle USA Inc.',,,0,,,,, -03963,0300,'Infant Formula MEAD JOHNSON ENFAMIL GENTLEASE with iron prepared from powder','INF FORM MEAD JOHNSON ENFA GENTL W/ IRON PREP FROM PDR',,'MEAD JOHNSON','Y',,0,,1.36,,, -03964,0300,'Babyfood fortified cereal bar fruit filling','BABYFOOD FORT CRL BAR FRUIT FILLING',,,'Y',,0,,,,, -03965,0300,'Babyfood yogurt whole milk with fruit multigrain cereal and added iron fortified','BABYFOOD YOGU WHL MILK W/ FRUI MULTIGRA CRL & ADD IRON FORT',,,'Y',,0,,,,, -03966,0300,'Infant formula NESTLE GOOD START SOY with DHA and ARA liquid concentrate','INF FORMULA NESTLE GOOD START SOY W/ DHA & ARA LIQ CONC',,'Nestle USA Inc.','Y',,0,,,,, -03967,0300,'Toddler formula MEAD JOHNSON ENFAGROW Toddler Transitions with ARA and DHA powder','TODD FOR MEJOHN ENFAGR TODD TRANSITI W/ ARA & DHA PDR',,,'Y',,0,,6.25,,, -03968,0300,'Toddler formula MEAD JOHNSON ENFAGROW PREMIUM (formerly ENFAMIL LIPIL NEXT STEP) ready-to-feed','TODDLER FORMULA MEAD JOHNSON ENFAGROW PREMIUM RTF',,,'Y',,0,,,,, -03980,0300,'Infant Formula MEAD JOHNSON ENFAMIL GENTLEASE with ARA and DHA powder not reconstituted','INF FORM ME JOHN ENF GEN W/ ARA & DHA PDR NOT RECON',,'MEAD JOHNSON','Y',,0,,6.38,,, -03982,0300,'Infant formula MEAD JOHNSON ENFAMIL Enfagrow Soy Toddler ready-to-feed','INF FORMULA MEAD JOHNSON ENFAMIL ENFAGROW SOY TODD RTF',,,'Y',,0,,6.25,,, -03983,0300,'Infant formula MEAD JOHNSON ENFAMIL NUTRAMIGEN AA ready-to-feed','INF FORMULA MEAD JOHNSON ENFAMIL NUTRAMIGEN AA RTF',,'MEAD JOHNSON','Y',,0,,6.25,,, -03984,0300,'Infant formula MEAD JOHNSON ENFAMIL Premature with iron 20 calories ready-to-feed','INF FORMULA ME JOHNSON ENFAMIL PREMATU W/ IR 20 CAL RTF',,'MEAD JOHNSON','Y',,0,,6.25,,, -03985,0300,'Infant formula MEAD JOHNSON ENFAMIL Premature with iron 24 calories ready-to-feed','INF FORMULA MEAD JOHNSON ENFAMIL PREMATURE W/ IR 24 CAL RTF',,'MEAD JOHNSON','Y',,0,,6.25,,, -03986,0300,'Infant Formula MEAD JOHNSON ENFAMIL Newborn with DHA and ARA ready-to-feed','INF FORMULA MEAD JOHNSON ENFAMIL NEWBORN W/ DHA & ARA RTF',,'MEAD JOHNSON','Y',,0,,6.25,,, -03987,0300,'Infant formula GERBER GOOD START 2 Soy with iron ready-to-feed','INF FORMULA GERBER GOOD START 2 SOY W/ IRON RTF',,'GERBER','Y',,0,,6.25,,, -03988,0300,'Infant formula GERBER GOOD START PROTECT PLUS ready-to-feed','INF FORMULA GERBER GOOD START PROTECT PLUS RTF',,'GERBER','Y',,0,,6.25,,, -03989,0300,'Infant Formula GERBER GOOD START 2 GENTLE PLUS ready-to-feed','INF FORMULA GERBER GOOD START 2 GENTLE PLUS RTF',,'GERBER','Y',,0,,6.25,,, -03990,0300,'Infant formula GERBER GOOD START 2 PROTECT PLUS ready-to-feed','INF FORMULA GERBER GOOD START 2 PROTECT PLUS RTF',,'GERBER','Y',,0,,6.25,,, -03991,0300,'Infant formula ABBOTT NUTRITION SIMILAC GO AND GROW ready-to-feed with ARA and DHA','INF FORMULA ABBO NU SIMIL GO & GR RTF W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,6.25,,, -03992,0300,'Infant formula ABBOTT NUTRITION SIMILAC Expert Care Diarrhea ready- to- feed with ARA and DHA','INF FORMU ABBO NUTR SIMIL EXPERT CARE DIARRH RT',,'ABBOT NUTRTION','Y',,0,,6.25,,, -03993,0300,'Infant formula ABBOTT NUTRITION SIMILAC For Spit Up ready-to-feed with ARA and DHA','INF FORMULA ABBO NUTR SIMIL FOR SPIT UP RTF W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,6.25,,, -03994,0300,'Babyfood fruit banana and strawberry junior','BABYFD FRU BAN AND STRAW JU',,,'Y',,0,,,,, -03995,0300,'Babyfood banana with mixed berries strained','BABYFOO BAN WI MIX BERR ST',,,'Y',,0,,6.25,,, -03996,0300,'Babyfood Multigrain whole grain cereal dry fortified','Babyfood Multigrain whole grain cereal dry fortified',,,'Y',,0,,,,, -03997,0300,'Babyfood Baby MUM MUM Rice Biscuits','BABYFOOD BABY MUM MUM RICE BISCUITS',,,'Y',,0,,,,, -03998,0300,'Babyfood Snack GERBER GRADUATES LIL CRUNCHIES baked whole grain corn snack','BABYFD SNK GE GRAD LIL CRUNCH BKD WHLGRN CORN SNK',,'GERBER','Y',,0,,6.25,,, -03999,0300,'Infant formula ABBOTT NUTRITION SIMILAC For Spit Up powder with ARA and DHA','INF FORMULA ABBOTT NUTRIT SIMILAC FOR SPIT UP POW',,'ABBOT NUTRTION','Y',,0,,6.25,,, -04001,0400,'Fat beef tallow','FAT BEEF TALLOW',,,'Y',,0,,0.00,,9.02, -04002,0400,'Lard','LARD',,,'Y',,0,,0.00,,9.02, -04011,0400,'Salad dressing KRAFT Mayo Light Mayonnaise','SALAD DRSNG KRAFT MAYO LT MAYO',,'Kraft Foods Inc.',,,0,,,,, -04013,0400,'Salad dressing KRAFT Mayo Fat Free Mayonnaise Dressing','SALAD DRSNG KRAFT MAYO FAT FREE MAYO DRSNG',,'Kraft Foods Inc.','Y',,0,,,,, -04014,0400,'Salad dressing KRAFT MIRACLE WHIP FREE Nonfat Dressing','SALAD DRSNG KRAFT MIRACLE WHIP FREE NONFAT DRSNG',,'Kraft Foods Inc.',,,0,,,,, -04015,0400,'Salad dressing russian dressing','SALAD DRSNG RUSSIAN DRSNG',,,'Y',,0,,6.25,3.40,8.84,3.80 -04016,0400,'Salad dressing sesame seed dressing regular','SALAD DRSNG SESAME SD DRSNG REG',,,'Y',,0,,6.25,4.03,8.84,3.80 -04017,0400,'Salad dressing thousand island commercial regular','SALAD DRSNG 1000 ISLAND COMM REG',,,'Y',,0,,,,, -04018,0400,'Salad dressing mayonnaise type regular with salt','SALAD DRSNG MAYO TYPE REG W/SALT',,,'Y',,0,,6.25,4.36,8.84,3.80 -04020,0400,'Salad dressing french dressing reduced fat','SALAD DRSNG FRENCH DRSNG RED FAT',,,'Y',,0,,6.25,2.44,8.84,3.80 -04021,0400,'Salad dressing italian dressing commercial reduced fat','SALAD DRSNG ITALIAN DRSNG COMM RED FAT',,,'Y',,0,,,,, -04022,0400,'Salad dressing russian dressing low calorie','SALAD DRSNG RUSSIAN DRSNG LO CAL',,,'Y',,0,,6.25,2.44,8.84,3.80 -04023,0400,'Salad dressing thousand island dressing reduced fat','SALAD DRSNG 1000 ISLAND DRSNG RED FAT',,,'Y',,0,,6.25,3.90,8.84,3.80 -04025,0400,'Salad dressing mayonnaise regular','SALAD DRSNG MAYO REG',,,'Y',,0,,,,, -04026,0400,'Salad dressing mayonnaise soybean and safflower oil with salt','SALAD DRSNG MAYO SOYBN&SAFFLOWER OIL W/SALT',,,,,0,,6.25,4.36,8.84,3.80 -04027,0400,'Salad dressing mayonnaise imitation soybean','SALAD DRSNG MAYO IMITN SOYBN',,,'Y',,0,,6.25,4.36,8.84,3.80 -04028,0400,'Salad dressing mayonnaise imitation milk cream','SALAD DRSNG MAYO IMITN MILK CRM',,,,,0,,6.25,4.36,8.84,3.80 -04029,0400,'Salad dressing mayonnaise imitation soybean without cholesterol','SALAD DRSNG MAYO IMITN SOYBN WO/CHOL',,,'Y',,0,,6.25,4.36,8.84,3.80 -04030,0400,'Sandwich spread with chopped pickle regular unspecified oils','SANDWICH SPRD W/CHOPD PICKLE REG UNSPEC OILS',,,'Y',,0,,6.25,3.92,8.84,3.80 -04031,0400,'Shortening household soybean (partially hydrogenated)-cottonseed (partially hydrogenated)','SHORTENING HOUSEHOLD PARTIALLY HYDROG SOYBN -COTTONSEED',,,'Y',,0,,0.00,,8.84, -04034,0400,'Oil soybean salad or cooking (partially hydrogenated)','OIL SOYBN SALAD OR COOKING (PARTIALLY HYDROGENATED)',,,'Y',,0,,0.00,,8.84, -04037,0400,'Oil rice bran','OIL RICE BRAN',,,,,0,,0.00,,8.84, -04038,0400,'Oil wheat germ','OIL WHEAT GERM',,,'Y',,0,,0.00,,8.84, -04042,0400,'Oil peanut salad or cooking','OIL PNUT SALAD OR COOKING',,,'Y',,0,,0.00,,8.84, -04044,0400,'Oil soybean salad or cooking','OIL SOYBN SALAD OR COOKING',,,'Y',,0,,0.00,,8.84, -04047,0400,'Oil coconut','OIL COCNT',,,'Y',,0,,,,, -04053,0400,'Oil olive salad or cooking','OIL OLIVE SALAD OR COOKING',,,'Y',,0,,0.00,,8.84, -04055,0400,'Oil palm','OIL PALM',,,,,0,,0.00,,8.84, -04058,0400,'Oil sesame salad or cooking','OIL SESAME SALAD OR COOKING',,,'Y',,0,,0.00,,8.84, -04060,0400,'Oil sunflower linoleic (less than 60%)','OIL SUNFLOWER LINOLEIC (LESS THAN 60%)',,,,,0,,0.00,,8.84, -04073,0400,'Margarine regular hard soybean (hydrogenated)','MARGARINE REG HARD SOYBN (HYDR)',,,,,0,,6.38,4.27,8.84,3.87 -04114,0400,'Salad dressing italian dressing commercial regular','SALAD DRSNG ITALIAN DRSNG COMM REG',,,'Y',,0,,,,, -04120,0400,'Salad dressing french dressing commercial regular','SALAD DRSNG FRENCH DRSNG COMM REG',,,'Y',,0,,6.25,2.44,8.84,3.80 -04128,0400,'Margarine spread 35-39% fat tub','MARGARINE SPRD 35-39% FAT TUB',,,'Y',,0,,,,, -04133,0400,'Salad dressing french home recipe','SALAD DRSNG FRENCH HOME RECIPE',,,,,0,,6.25,4.36,8.84,3.80 -04135,0400,'Salad dressing home recipe vinegar and oil','SALAD DRSNG HOME RECIPE VINEGAR&OIL',,,'Y',,0,,6.25,4.36,8.84,3.80 -04141,0400,'Salad dressing french dressing commercial regular without salt','SALAD DRSNG FRENCH DRSNG COMM REG WO/ SALT',,,,,0,,6.25,4.36,8.84,3.80 -04142,0400,'Salad dressing french dressing reduced fat without salt','SALAD DRSNG FRENCH DRSNG RED FAT WO/ SALT',,,,,0,,6.25,4.36,8.84,3.80 -04143,0400,'Salad dressing italian dressing commercial regular without salt','SALAD DRSNG ITALIAN DRSNG COMM REG WO/ SALT',,,,,0,,6.25,4.36,8.84,3.80 -04144,0400,'Salad dressing italian dressing reduced fat without salt','SALAD DRSNG ITALIAN DRSNG RED FAT WO/ SALT',,,,,0,,6.25,4.36,8.84,3.80 -04145,0400,'Salad dressing mayonnaise soybean oil without salt','SALAD DRSNG MAYO SOYBN OIL WO/SALT',,,,,0,,6.25,4.36,8.84,3.80 -04146,0400,'Salad dressing french cottonseed oil home recipe','SALAD DRSNG FRENCH CTTNSD OIL HOME RECIPE',,,,,0,,6.25,4.36,8.84,3.80 -04367,0400,'Salad dressing french dressing fat-free','SALAD DRSNG FRENCH DRSNG FAT-FREE',,,'Y',,0,,,,, -04501,0400,'Oil cocoa butter','OIL COCOA BUTTER',,,,,0,,0.00,,8.84, -04502,0400,'Oil cottonseed salad or cooking','OIL CTTNSD SALAD OR COOKING',,,'Y',,0,,0.00,,8.84, -04506,0400,'Oil sunflower linoleic (approx. 65%)','OIL SUNFLOWER LINOLEIC (APPROX. 65%)',,,'Y',,0,,0.00,,8.84, -04510,0400,'Oil safflower salad or cooking linoleic (over 70%)','OIL SAFFLOWER SALAD OR COOKING LINOLEIC (OVER 70%)',,,,,0,,0.00,,8.84, -04511,0400,'Oil safflower salad or cooking high oleic (primary safflower oil of commerce)','OIL SAFFLOWER SALAD OR COOKING HI OLEIC',,,'Y',,0,,0.00,,8.84, -04513,0400,'Vegetable oil palm kernel','VEGETABLE OIL PALM KERNEL',,,'Y',,0,,0.00,,8.62, -04514,0400,'Oil poppyseed','OIL POPPYSEED',,,,,0,,0.00,,8.84, -04515,0400,'Oil tomatoseed','OIL TOMATOSEED',,,,,0,,0.00,,8.84, -04516,0400,'Oil teaseed','OIL TEASEED',,,,,0,,0.00,,8.84, -04517,0400,'Oil grapeseed','OIL GRAPESEED',,,,,0,,0.00,,8.84, -04518,0400,'Oil corn industrial and retail all purpose salad or cooking','OIL CORN INDUSTRIAL & RTL ALLPURP SALAD OR COOKING',,,'Y',,0,,,,, -04528,0400,'Oil walnut','OIL WALNUT',,,'Y',,0,,0.00,,8.84, -04529,0400,'Oil almond','OIL ALMOND',,,'Y',,0,,0.00,,8.84, -04530,0400,'Oil apricot kernel','OIL APRICOT KERNEL',,,,,0,,0.00,,8.84, -04531,0400,'Oil soybean lecithin','OIL SOYBN LECITHIN',,,,,0,,0.00,,7.63, -04532,0400,'Oil hazelnut','OIL HAZELNUT',,,,,0,,0.00,,8.84, -04534,0400,'Oil babassu','OIL BABASSU',,,,,0,,0.00,,8.82, -04536,0400,'Oil sheanut','OIL SHEANUT',,,,,0,,0.00,,8.62, -04539,0400,'Salad dressing blue or roquefort cheese dressing commercial regular','SALAD DRSNG BLUE OR ROQUEFORT CHS DRSNG COMM REG',,,'Y',,0,,,,, -04541,0400,'Oil cupu assu','OIL CUPU ASSU',,,,,0,,0.00,,8.62, -04542,0400,'Fat chicken','FAT CHICKEN',,,'Y',,0,,0.00,,9.02, -04543,0400,'Oil soybean salad or cooking (partially hydrogenated) and cottonseed','OIL SOYBN SALAD OR COOKING (PARTIALLY HYDROGENATED) & CTTNSD',,,'Y',,0,,0.00,,8.84, -04544,0400,'Shortening household lard and vegetable oil','SHORTENING HOUSEHOLD LARD&VEG OIL',,,,,0,,0.00,,9.02, -04545,0400,'Oil sunflower linoleic (partially hydrogenated)','OIL SUNFLOWER LINOLEIC (PARTIALLY HYDROGENATED)',,,,,0,,0.00,,8.84, -04546,0400,'Shortening bread soybean (hydrogenated) and cottonseed','SHORTENING BREAD SOYBN (HYDR)&CTTNSD',,,,,0,,0.00,,8.84, -04548,0400,'Shortening cake mix soybean (hydrogenated) and cottonseed (hydrogenated)','SHORTENING CAKE MIX SOYBN (HYDR)&CTTNSD (HYDR)',,,,,0,,0.00,,8.82, -04549,0400,'Shortening industrial lard and vegetable oil','SHORTENING INDUSTRIAL LARD&VEG OIL',,,,,0,,0.00,,9.02, -04550,0400,'Shortening frying (heavy duty) beef tallow and cottonseed','SHORTENING FRYING (HVY DUTY) BF TALLOW&CTTNSD',,,,,0,,0.00,,9.02, -04551,0400,'Shortening confectionery coconut (hydrogenated) and or palm kernel (hydrogenated)','SHORTENING CONFECTIONERY COCNT (HYDR)&OR PALM KERNEL (HYDR)',,,,,0,,0.00,,8.84, -04554,0400,'Shortening industrial soybean (hydrogenated) and cottonseed','SHORTENING INDUSTRIAL SOYBN (HYDR)&CTTNSD',,,'Y',,0,,0.00,,8.84, -04556,0400,'Shortening frying (heavy duty) palm (hydrogenated)','SHORTENING FRYING (HVY DUTY) PALM (HYDR)',,,,,0,,0.00,,8.84, -04559,0400,'Shortening household soybean (hydrogenated) and palm','SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM',,,,,0,,0.00,,8.84, -04560,0400,'Shortening frying (heavy duty) soybean (hydrogenated) linoleic (less than 1%)','SHORTENING FRYING HVY DUTY SOYBN HYDR LINOLEIC (LESS THAN 1%',,,,,0,,0.00,,8.84, -04570,0400,'Shortening confectionery fractionated palm','SHORTENING CONFECTIONERY FRACTIONATED PALM',,,,,0,,0.00,,8.62, -04572,0400,'Oil nutmeg butter','OIL NUTMEG BUTTER',,,,,0,,0.00,,8.62, -04573,0400,'Oil ucuhuba butter','OIL UCUHUBA BUTTER',,,,,0,,0.00,,8.84, -04575,0400,'Fat turkey','FAT TURKEY',,,'Y',,0,,0.00,,8.84, -04576,0400,'Fat goose','FAT GOOSE',,,,,0,,0.00,,8.84, -04581,0400,'Oil avocado','OIL AVOCADO',,,,,0,,0.00,,8.84, -04582,0400,'Oil canola','OIL CANOLA','low erucic acid rapeseed oil',,'Y',,0,,0.00,,8.84, -04583,0400,'Oil mustard','OIL MUSTARD',,,,,0,,0.00,,8.84, -04584,0400,'Oil sunflower high oleic (70% and over)','OIL SUNFLOWER HI OLEIC (70% & OVER)',,,,,0,,0.00,,8.84, -04585,0400,'Margarine-like margarine-butter blend soybean oil and butter','MARGARINE-LIKE MARGARINE-BUTTER BLEND SOYBN OIL & BUTTER',,,'Y',,0,,6.25,,, -04586,0400,'Shortening special purpose for cakes and frostings soybean (hydrogenated)','SHORTENING SPL PURPOSE FOR CAKES&FROSTINGS SOYBN (HYDR)',,,,,0,,0.00,,8.84, -04587,0400,'Shortening special purpose for baking soybean (hydrogenated) palm and cottonseed','SHORTENING SPL PURPOSE FOR BAKING SOYBN (HYDR) PALM&CTTNSD',,,,,0,,0.00,,8.84, -04588,0400,'Oil oat','OIL OAT',,,,,0,,0.00,,8.84, -04589,0400,'Fish oil cod liver','FISH OIL COD LIVER',,,,,0,,0.00,,9.02, -04590,0400,'Fish oil herring','FISH OIL HERRING',,,,,0,,0.00,,9.02, -04591,0400,'Fish oil menhaden','FISH OIL MENHADEN',,,,,0,,0.00,,9.02, -04592,0400,'Fish oil menhaden fully hydrogenated','FISH OIL MENHADEN FULLY HYDR',,,,,0,,0.00,,9.02, -04593,0400,'Fish oil salmon','FISH OIL SALMON',,,,,0,,0.00,,9.02, -04594,0400,'Fish oil sardine','FISH OIL SARDINE',,,,,0,,0.00,,9.02, -04595,0400,'Shortening multipurpose soybean (hydrogenated) and palm (hydrogenated)','SHORTENING MULTIPURPOSE SOYBN (HYDR)&PALM (HYDR)',,,,,0,,0.00,,8.84, -04600,0400,'Margarine-like vegetable oil-butter spread tub with salt','MARGARINE-LIKE VEG OIL-BUTTER SPRD TUB W/ SALT',,,'Y',,0,,,,, -04601,0400,'Butter light stick with salt','BUTTER LT STK W/SALT',,,'Y',,0,,,,, -04602,0400,'Butter light stick without salt','BUTTER LT STK WO/SALT',,,'Y',,0,,,,, -04609,0400,'Animal fat bacon grease','ANIMAL FAT BACON GREASE',,,'Y',,0,,,,, -04610,0400,'Margarine regular 80% fat composite stick with salt','MARGARINE REG 80% FAT COMP STK W/ SALT',,,'Y',,0,,,4.27,8.84,3.87 -04611,0400,'Margarine regular 80% fat composite tub with salt','MARGARINE REG 80% FAT COMP TUB W/ SALT',,,'Y',,0,,6.25,4.27,8.84,3.87 -04612,0400,'Margarine-like vegetable oil spread 60% fat stick with salt','MARGARINE-LIKE VEG OIL SPRD 60% FAT STK W/ SALT',,,'Y',,0,,6.25,3.87,8.84,4.27 -04613,0400,'Margarine-like vegetable oil spread 60% fat tub with salt','MARGARINE-LIKE VEG OIL SPRD 60% FAT TUB W/ SALT',,,'Y',,0,,6.25,3.87,8.84,4.27 -04614,0400,'Margarine-like vegetable oil spread 60% fat stick/tub/bottle with salt','MARGARINE-LIKE VEG OIL SPRD 60% FAT STICK/TUB/BOTTLE W/ SALT',,,'Y',,0,,6.25,3.87,8.84,4.27 -04615,0400,'Shortening vegetable household composite','SHORTENING VEG HOUSEHOLD COMP',,,'Y',,0,,6.25,,8.84, -04617,0400,'Margarine regular 80% fat composite stick without salt','MARGARINE REG 80% FAT COMP STK WO/ SALT',,,'Y',,0,,,,, -04618,0400,'Margarine regular 80% fat composite tub without salt','MARGARINE REG 80% FAT COMP TUB WO/ SALT',,,'Y',,0,,,,, -04620,0400,'Margarine-like vegetable oil spread 60% fat stick/tub/bottle without salt','VEG OIL SPRD 60% FAT STICK/TUB/BOTTLE WO/ SALT',,,'Y',,0,,6.25,3.87,8.84,4.27 -04624,0400,'Margarine-like vegetable oil spread fat free liquid with salt','MARGARINE-LIKE VEG OIL SPRD FAT FREE LIQ W/ SALT',,,'Y',,0,,,4.27,8.84,3.87 -04626,0400,'Margarine-like spread with yogurt 70% fat stick with salt','MARGARINE-LIKE SPRD W/ YOGURT 70% FAT STK W/ SALT',,,'Y',,0,,,,, -04627,0400,'Margarine-like spread with yogurt approximately 40% fat tub with salt','MARGARINE-LIKE SPRD W/ YOGURT APPROX 40% FAT TUB W/ SALT',,,'Y',,0,,,,, -04628,0400,'Margarine 80% fat stick includes regular and hydrogenated corn and soybean oils','MARGARINE 80% FAT STK INCL REG & HYDR CORN & SOYBN OILS',,,,,0,,,4.27,8.84,3.87 -04629,0400,'Margarine margarine-type vegetable oil spread 70% fat soybean and partially hydrogenated soybean stick','MARGARINE VEG OIL SPRD 70% FAT SOYBN & PART HYDR SOYBN STK',,,,,0,,6.38,4.27,8.84,3.87 -04630,0400,'Margarine Spread 40-49% fat tub','Margarine 40-49% fat',,,,,0,,,,, -04631,0400,'Margarine-like vegetable oil spread fat-free tub','MARGARINE-LIKE VEG OIL SPRD FAT-FREE TUB',,,'Y',,0,,,4.27,8.84,3.87 -04633,0400,'Margarine-like vegetable oil spread 20% fat with salt','MARGARINE-LIKE VEG OIL SPRD 20% FAT W/ SALT',,,'Y',,0,,0.00,,9.02, -04634,0400,'Margarine-like vegetable oil spread 20% fat without salt','MARGARINE-LIKE VEG OIL SPRD 20% FAT WO/ SALT',,,'Y',,0,,,,, -04635,0400,'Salad dressing thousand island dressing fat-free','SALAD DRSNG 1000 ISLAND DRSNG FAT-FREE',,,'Y',,0,,,,, -04636,0400,'Salad dressing italian dressing fat-free','SALAD DRSNG ITALIAN DRSNG FAT-FREE',,,'Y',,0,,,,, -04638,0400,'Salad dressing ranch dressing fat-free','SALAD DRSNG RANCH DRSNG FAT-FREE',,,,,0,,,4.36,8.84,3.80 -04639,0400,'Salad dressing ranch dressing regular','SALAD DRSNG RANCH DRSNG REG',,,'Y',,0,,,,, -04640,0400,'Salad dressing ranch dressing reduced fat','SALAD DRSNG RANCH DRSNG RED FAT',,,,,0,,,4.36,8.84,3.80 -04641,0400,'Salad dressing mayonnaise light','SALAD DRSNG MAYO LT','lite mayonnaise',,'Y',,0,,,,, -04642,0400,'Oil industrial mid-oleic sunflower','OIL INDUSTRIAL MID-OLEIC SUNFLOWER','NuSun',,,,0,,,,8.84, -04643,0400,'Oil industrial canola with antifoaming agent principal uses salads woks and light frying','OIL INDUSTRIAL CANOLA W/ ANTIFOAMING AGENT',,,,,0,,,,8.84, -04644,0400,'Oil industrial canola for salads woks and light frying','OIL INDUSTRIAL CANOLA FOR SALADS WOKS & LT FRYING',,,,,0,,,,, -04645,0400,'Oil industrial canola (partially hydrogenated) oil for deep fat frying','OIL INDUS CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING',,,,,0,,,,, -04646,0400,'Oil industrial coconut principal uses candy coatings oil sprays roasting nuts','OIL INDUSTRIAL COCNT',,,,,0,,,,8.84, -04648,0400,'Oil industrial soy (partially hydrogenated) principal uses popcorn and flavoring vegetables','OIL INDUSTRIAL SOY (PART HYDR) FOR POPCORN & FLAVORING VEG',,,,,0,,,,8.84, -04649,0400,'Shortening industrial soy (partially hydrogenated) pourable liquid fry shortening','SHORTENING INDUS SOY (PART HYDROG) POURABLE LIQ FRY',,,,,0,,,,8.84, -04650,0400,'Oil industrial soy refined for woks and light frying','OIL INDUSTRIAL SOY REFINED FOR WOKS & LT FRYING',,,,,0,,,,8.84, -04651,0400,'Oil industrial soy (partially hydrogenated) multiuse for non-dairy butter flavor','OIL INDUSTRIAL SOY (PART HYDR) FOR NON-DAIRY BUTTER FLAVOR',,,'Y',,0,,,,8.84, -04652,0400,'Oil industrial soy ( partially hydrogenated) all purpose','OIL INDUSTRIAL SOY ( PART HYDROGENATED) ALLPURP',,,'Y',,0,,6.25,,8.84, -04653,0400,'Oil industrial soy (partially hydrogenated ) and soy (winterized) pourable clear fry','OIL INDUSTRIAL SOY (PART HYDR ) & SOY POURABLE FRY',,,,,0,,6.25,,8.84, -04654,0400,'Oil industrial soy (partially hydrogenated) and cottonseed principal use as a tortilla shortening','OIL INDUS SOY (PART HYDROG) & CTTNSD TORTILLA SHORTENING',,,'Y',,0,,6.25,,8.84, -04655,0400,'Margarine-like shortening industrial soy (partially hydrogenated) cottonseed and soy principal use flaky pastries','MARGARINE-LIKE SHORTENING INDUS SOY(PART HYDR) CTTNSD & SOY',,,,,0,,6.25,,8.84, -04656,0400,'Oil industrial palm kernel confection fat uses similar to high quality cocoa butter','OIL INDUSTRIAL PALM KERNEL CONFECTION FAT',,,,,0,,6.25,,8.84, -04657,0400,'Oil industrial palm kernel (hydrogenated) confection fat uses similar to 95 degree hard butter','OIL INDUSTRIAL PALM KERNEL (HYDROGENATED) CONFECTION FAT',,,,,0,,6.25,,8.84, -04658,0400,'Oil industrial palm kernel (hydrogenated) confection fat intermediate grade product','OIL INDUSTRIAL PALM KERNEL (HYDROGENATED) CONFECTION FAT',,,,,0,,6.25,,8.84, -04659,0400,'Oil industrial coconut confection fat typical basis for ice cream coatings','OIL INDUSTRIAL COCNT CONFECTION FAT ICE CRM COATINGS',,,'Y',,0,,6.25,,8.84, -04660,0400,'Oil industrial palm kernel (hydrogenated) used for whipped toppings non-dairy','OIL INDUSTRIAL PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS',,,,,0,,6.25,,8.84, -04661,0400,'Oil industrial coconut (hydrogenated) used for whipped toppings and coffee whiteners','OIL INDUSTRIAL COCNT (HYDROGENATED) FOR TOPPINGS & WHITENERS',,,,,0,,6.25,,8.84, -04662,0400,'Oil industrial palm and palm kernel filling fat (non-hydrogenated)','OIL INDUSTRIAL PALM & PALM KERNEL FILLING FAT (NON-HYDROG)',,,,,0,,6.25,,8.84, -04663,0400,'Oil industrial palm kernel (hydrogenated) filling fat','OIL INDUSTRIAL PALM KERNEL (HYDROGENATED) FILLING FAT',,,,,0,,6.25,,8.84, -04664,0400,'Oil industrial soy (partially hydrogenated ) palm principal uses icings and fillings','OIL INDUSTRIAL SOY (PARTHYDR ) PALM ICINGS & FILLINGS',,,,,0,,6.25,,8.84, -04665,0400,'Margarine industrial non-dairy cottonseed soy oil (partially hydrogenated ) for flaky pastries','MARGARINE INDUS NON-DAIRY CTTNSD SOY OIL (PART HYDR )',,,,,0,,,,, -04666,0400,'Shortening industrial soy (partially hydrogenated ) and corn for frying','SHORTENING INDUSTRIAL SOY (PARTIALLY HYDR )&CORN FOR FRYING',,,'Y',,0,,0.00,,8.84, -04667,0400,'Shortening industrial soy (partially hydrogenated ) for baking and confections','SHORTENING INDUS SOY (PART HYDR ) FOR BAKING & CONFECTIONS',,,,,0,,0.00,,8.84, -04668,0400,'Margarine industrial soy and partially hydrogenated soy oil use for baking sauces and candy','MARGARINE INDUS SOY & PART HYDR SOY OIL BAKING SAUCES CANDY',,,,,0,,6.38,,, -04669,0400,'Oil vegetable soybean refined','OIL VEG SOYBN REFINED',,,,,0,,0.00,,8.84, -04673,0400,'Margarine-like spread SMART BALANCE Regular Buttery Spread with flax oil','MARGARINE-LIKE SPRD SMART BALANCE REG BUTTERY SPRD',,'GFA Brands',,,0,,,,, -04674,0400,'Margarine-like spread SMART BALANCE Light Buttery Spread','MARGARINE-LIKE SPRD SMART BALANCE LT BUTTERY SPRD',,'GFA Brands',,,0,,6.38,,, -04675,0400,'Margarine-like spread SMART BEAT Super Light without saturated fat','MARGARINE-LIKE SPRD SMART BEAT SUPER LT WO/ SATURATED FAT',,'GFA Brands',,,0,,6.38,,, -04676,0400,'Margarine-like spread SMART BEAT Smart Squeeze','MARGARINE-LIKE SPRD SMART BEAT SMART SQUEEZE',,'GFA Brands',,,0,,6.38,,, -04677,0400,'Margarine-like spread SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)','MARGARINE-LIKE SPRD SMART BALANCE OMEGA PLUS SPRD',,'GFA Brands',,,0,,6.38,,, -04678,0400,'Oil vegetable Natreon canola high stability non trans high oleic (70%)','OIL VEG NATREON CANOLA HI STABILITY NON TRANS HI OLEIC (70%)','trans free high stability low saturated fat non-hydrogenated canola oil','Dow AgroSciences LLC',,,0,,,,8.84, -04679,0400,'Oil PAM cooking spray original','OIL PAM COOKING SPRAY ORIGINAL',,'ConAgra Inc.','Y',,0,,6.25,,, -04683,0400,'Margarine margarine-like vegetable oil spread 67-70% fat tub','MARGARINE MARGARINE-LIKE VEG OIL SPRD 67-70% FAT TUB',,,,,0,,,4.27,8.84,3.87 -04684,0400,'Margarine 80% fat tub CANOLA HARVEST Soft Spread (canola palm and palm kernel oils)','MARGARINE 80% FAT TUB CANOLA HARVEST SOFT SPRD',,'richardson',,,0,,,,, -04685,0400,'Oil cooking and salad ENOVA 80% diglycerides','OIL COOKING & SALAD ENOVA 80% DIGLYCERIDES',,'ADM KAO LLC',,,0,,,,8.84, -04686,0400,'Salad dressing honey mustard dressing reduced calorie','SALAD DRSNG HONEY MUSTARD DRSNG RED CAL',,,'Y',,0,,6.25,,, -04687,0400,'Margarine-like spread BENECOL Light Spread','MARGARINE-LIKE SPRD BENECOL LT SPRD',,'McNeil Nutritionals LLC',,,0,,,,, -04688,0400,'Salad dressing spray-style dressing assorted flavors','SALAD DRSNG SPRAY-STYLE DRSNG ASSORTED FLAVORS',,,,,0,,,,, -04689,0400,'Salad Dressing mayonnaise light SMART BALANCE Omega Plus light','SALAD DRSNG MAYO LT SMART BALANCE OMEGA PLUS LT',,'Smart Balance Foods',,,0,,,,, -04690,0400,'Margarine-like vegetable oil spread approximately 37% fat unspecified oils with salt with added vitamin D','VEG OIL SPRD 37% FAT UNSPEC OILS W/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,,4.27,8.84,3.80 -04691,0400,'Margarine regular 80% fat composite stick with salt with added vitamin D','MARGARINE REG 80% FAT COMP STK W/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.84,3.80 -04692,0400,'Margarine regular 80% fat composite tub with salt with added vitamin D','MARGARINE REG 80% FAT COMP TUB W/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.84,3.80 -04693,0400,'Margarine-like vegetable oil spread 60% fat stick with salt with added vitamin D','VEG OIL SPRD 60% FAT STK W/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,6.93,4.27,8.84,3.80 -04694,0400,'Margarine-like vegetable oil spread 60% fat tub with salt with added vitamin D','VEG OIL SPRD 60% FAT TUB W/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,6.93,4.27,8.84,3.84 -04695,0400,'Margarine-like vegetable-oil spread stick/tub/bottle 60% fat with added vitamin D','VEG-OIL SPRD STICK/TUB/BOTTLE 60% FAT W/ ADDED VITAMIN D',,,'Y',,0,,,,, -04696,0400,'Margarine regular 80% fat composite stick without salt with added vitamin D','MARGARINE REG 80% FAT COMP STK WO/ SALT W/ ADDED VITAMIN D',,,'Y',,0,,6.38,4.27,8.84,3.80 -04697,0400,'Margarine-like vegetable oil spread 60% fat stick/tub/bottle without salt with added vitamin D','VEG OIL SPRD 60% FAT STICK/TUB/BOTTLE WO/ SALT W/VIT D',,,'Y',,0,,6.25,,, -04698,0400,'Oil industrial canola high oleic','OIL INDUSTRIAL CANOLA HI OLEIC',,,,,0,,6.25,,, -04699,0400,'Oil industrial soy low linolenic','OIL INDUSTRIAL SOY LO LINOLENIC',,,,,0,,,,, -04700,0400,'Oil industrial soy ultra low linolenic','OIL INDUSTRIAL SOY ULTRA LO LINOLENIC',,,,,0,,,,8.84, -04701,0400,'Oil industrial soy fully hydrogenated','OIL INDUSTRIAL SOY FULLY HYDR',,,,,0,,,,8.84, -04702,0400,'Oil industrial cottonseed fully hydrogenated','OIL INDUSTRIAL CTTNSD FULLY HYDR',,,,,0,,,,8.84, -04703,0400,'Salad dressing honey mustard regular','SALAD DRSNG HONEY MUSTARD REG',,,'Y',,0,,,,, -04704,0400,'Salad dressing poppyseed creamy','SALAD DRSNG POPPYSEED CREAMY',,,'Y',,0,,,,, -04705,0400,'Salad dressing caesar fat-free','SALAD DRSNG CAESAR FAT-FREE',,,'Y',,0,,,,, -04706,0400,'Dressing honey mustard fat-free','DRESSING HONEY MUSTARD FAT-FREE',,,'Y',,0,,,,, -04707,0400,'Oil flaxseed contains added sliced flaxseed','OIL FLAXSEED CONTAINS ADDED SLICED FLAXSEED',,,,,0,,5.30,,8.84, -04708,0400,'Mayonnaise reduced fat with olive oil','MAYONNAISE RED FAT W/ OLIVE OIL',,,'Y',,0,,6.25,,, -04709,0400,'Salad dressing mayonnaise-type light','SALAD DRSNG MAYONNAISE-TYPE LT',,,'Y',,0,,6.25,,, -05000,0500,'Chicken broiler rotisserie BBQ breast meat only','CHICK BROILER ROTISSERIE BBQ BREAST MEAT ONLY',,,'Y','Bone and connective tissue 11% skin and separable fat 11%',22,,,,, -05001,0500,'Chicken broilers or fryers meat and skin and giblets and neck raw','CHICKEN BROILERS OR FRYERS MEAT&SKN&GIBLETS&NECK RAW',,,,'Bone',31,'Gallus gallus',6.25,4.27,9.02,3.87 -05002,0500,'Chicken broilers or fryers meat and skin and giblets and neck cooked fried batter','CHICKEN BROILER OR FRYER MEAT&SKN&GIBLETS&NECK FRIED BATTER',,,,'Bone',21,,6.25,4.27,9.02,3.87 -05003,0500,'Chicken broilers or fryers meat and skin and giblets and neck cooked fried flour','CHICKEN BROILERS OR FRYERS MEAT&SKN&GIBLETS&NECK FRIED FLR',,,,'Bone',28,,6.25,4.27,9.02,3.87 -05004,0500,'Chicken broilers or fryers meat and skin and giblets and neck roasted','CHICKEN BROILERS OR FRYERS MEAT&SKN&GIBLETS&NECK RSTD',,,'Y','Bone',31,,6.25,4.27,9.02,3.87 -05005,0500,'Chicken broilers or fryers meat and skin and giblets and neck stewed','CHICKEN BROILERS OR FRYERS MEAT&SKN&GIBLETS&NECK STWD',,,,'Bone',33,,6.25,4.27,9.02,3.87 -05006,0500,'Chicken broilers or fryers meat and skin raw','CHICKEN BROILERS OR FRYERS MEAT & SKN RAW',,,'Y','Bone',32,,6.25,4.27,9.02,3.87 -05007,0500,'Chicken broilers or fryers meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS MEAT&SKN CKD FRIED BATTER',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -05008,0500,'Chicken broilers or fryers meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS MEAT&SKN CKD FRIED FLR',,,'Y','Bone',29,,6.25,4.27,9.02,3.87 -05009,0500,'Chicken broilers or fryers meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS MEAT&SKN CKD RSTD',,,'Y','Bone',33,,6.25,4.27,9.02,3.87 -05010,0500,'Chicken broilers or fryers meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS MEAT&SKN CKD STWD',,,'Y','Bone',34,,6.25,4.27,9.02,3.87 -05011,0500,'Chicken broilers or fryers meat only raw','CHICKEN BROILERS OR FRYERS MEAT ONLY RAW',,,'Y','32% bone 12% skin 8% separable fat',52,,6.25,4.27,9.02,3.87 -05012,0500,'Chicken broilers or fryers meat only cooked fried','CHICKEN BROILERS OR FRYERS MEAT ONLY CKD FRIED',,,'Y','29% bone 13% skin',42,,6.25,4.27,9.02,3.87 -05013,0500,'Chicken broilers or fryers meat only cooked roasted','CHICKEN BROILERS OR FRYERS MEAT ONLY CKD RSTD',,,'Y','33% bone 13% skin',46,,6.25,4.27,9.02,3.87 -05014,0500,'Chicken broilers or fryers meat only cooked stewed','CHICKEN BROILERS OR FRYERS MEAT ONLY CKD STWD',,,'Y','34% bone 14% skin',48,,6.25,4.27,9.02,3.87 -05015,0500,'Chicken broilers or fryers skin only raw','CHICKEN BROILERS OR FRYERS SKN ONLY RAW',,,,,0,,6.25,4.27,9.02,3.87 -05016,0500,'Chicken broilers or fryers skin only cooked fried batter','CHICKEN BROILERS OR FRYERS SKN ONLY CKD FRIED BATTER',,,,,0,,6.25,4.27,9.02,3.87 -05017,0500,'Chicken broilers or fryers skin only cooked fried flour','CHICKEN BROILERS OR FRYERS SKN ONLY CKD FRIED FLR',,,,,0,,6.25,4.27,9.02,3.87 -05018,0500,'Chicken broilers or fryers skin only cooked roasted','CHICKEN BROILERS OR FRYERS SKN ONLY CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05019,0500,'Chicken broilers or fryers skin only cooked stewed','CHICKEN BROILERS OR FRYERS SKN ONLY CKD STWD',,,,,0,,6.25,4.27,9.02,3.87 -05020,0500,'Chicken broilers or fryers giblets raw','CHICKEN BROILERS OR FRYERS GIBLETS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05021,0500,'Chicken broilers or fryers giblets cooked fried','CHICKEN BROILERS OR FRYERS GIBLETS CKD FRIED',,,,,0,,6.25,4.27,9.02,3.87 -05022,0500,'Chicken broilers or fryers giblets cooked simmered','CHICKEN BROILERS OR FRYERS GIBLETS CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05023,0500,'Chicken gizzard all classes raw','CHICKEN GIZZARD ALL CLASSES RAW',,,,,0,,6.25,4.27,9.02,3.87 -05024,0500,'Chicken gizzard all classes cooked simmered','CHICKEN GIZZARD ALL CLASSES CKD SIMMRD',,,'Y','Membranes 10.7%',11,,6.25,4.27,9.02,3.87 -05025,0500,'Chicken heart all classes raw','CHICKEN HEART ALL CLASSES RAW',,,,,0,,6.25,4.27,9.02,3.87 -05026,0500,'Chicken heart all classes cooked simmered','CHICKEN HEART ALL CLASSES CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -05027,0500,'Chicken liver all classes raw','CHICKEN LIVER ALL CLASSES RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -05028,0500,'Chicken liver all classes cooked simmered','CHICKEN LIVER ALL CLASSES CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05029,0500,'Chicken broilers or fryers light meat meat and skin raw','CHICKEN BROILERS OR FRYERS LT MEAT MEAT & SKN RAW',,,,'Bone',28,,6.25,4.27,9.02,3.87 -05030,0500,'Chicken broilers or fryers light meat meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS LT MEAT MEAT&SKN CKD FRIED BATTER',,,,'Bone',21,,6.25,4.27,9.02,3.87 -05031,0500,'Chicken broilers or fryers light meat meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS LT MEAT MEAT&SKN CKD FRIED FLR',,,'Y','Bone',28,,6.25,4.27,9.02,3.87 -05032,0500,'Chicken broilers or fryers light meat meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS LT MEAT MEAT&SKN CKD RSTD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -05033,0500,'Chicken broilers or fryers light meat meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS LT MEAT MEAT&SKN CKD STWD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -05034,0500,'Chicken broilers or fryers dark meat meat and skin raw','CHICKEN BROILERS OR FRYERS DK MEAT MEAT & SKN RAW',,,,'Bone',35,,6.25,4.27,9.02,3.87 -05035,0500,'Chicken broilers or fryers dark meat meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS DK MEAT MEAT&SKN CKD FRIED BATTER',,,,'Bone',23,,6.25,4.27,9.02,3.87 -05036,0500,'Chicken broilers or fryers dark meat meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS DK MEAT MEAT&SKN CKD FRIED FLR',,,,'Bone',30,,6.25,4.27,9.02,3.87 -05037,0500,'Chicken broilers or fryers dark meat meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS DK MEAT MEAT&SKN CKD RSTD',,,,'Bone',36,,6.25,4.27,9.02,3.87 -05038,0500,'Chicken broilers or fryers dark meat meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS DK MEAT MEAT&SKN CKD STWD',,,,'Bone',38,,6.25,4.27,9.02,3.87 -05039,0500,'Chicken broilers or fryers light meat meat only raw','CHICKEN BROILERS OR FRYERS LT MEAT MEAT ONLY RAW',,,,'28% bone 13% skin 4% separable fat',45,,6.25,4.27,9.02,3.87 -05040,0500,'Chicken broilers or fryers light meat meat only cooked fried','CHICKEN BROILERS OR FRYERS LT MEAT MEAT ONLY CKD FRIED',,,,'28% bone 13% skin',41,,6.25,4.27,9.02,3.87 -05041,0500,'Chicken broilers or fryers light meat meat only cooked roasted','CHICKEN BROILERS OR FRYERS LT MEAT MEAT ONLY CKD RSTD',,,'Y','29% bone 13% skin',42,,6.25,4.27,9.02,3.87 -05042,0500,'Chicken broilers or fryers light meat meat only cooked stewed','CHICKEN BROILERS OR FRYERS LT MEAT MEAT ONLY CKD STWD',,,'Y','29% bone 15% skin',44,,6.25,4.27,9.02,3.87 -05043,0500,'Chicken broilers or fryers dark meat meat only raw','CHICKEN BROILERS OR FRYERS DK MEAT MEAT ONLY RAW',,,,'35% bone 11% skin 10% separable fat',56,,6.25,4.27,9.02,3.87 -05044,0500,'Chicken broilers or fryers dark meat meat only cooked fried','CHICKEN BROILERS OR FRYERS DK MEAT MEAT ONLY CKD FRIED',,,,'30% bone 12% skin',42,,6.25,4.27,9.02,3.87 -05045,0500,'Chicken broilers or fryers dark meat meat only cooked roasted','CHICKEN BROILERS OR FRYERS DK MEAT MEAT ONLY CKD RSTD',,,'Y','36% bone 12% skin',48,,6.25,4.27,9.02,3.87 -05046,0500,'Chicken broilers or fryers dark meat meat only cooked stewed','CHICKEN BROILERS OR FRYERS DK MEAT MEAT ONLY CKD STWD',,,'Y','38% bone 14% skin',52,,6.25,4.27,9.02,3.87 -05047,0500,'Chicken broilers or fryers separable fat raw','CHICKEN BROILERS OR FRYERS FAT RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -05048,0500,'Chicken broilers or fryers back meat and skin raw','CHICKEN BROILERS OR FRYERS BACK MEAT&SKN RAW',,,,'Bone',44,,6.25,4.27,9.02,3.87 -05049,0500,'Chicken broilers or fryers back meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS BACK MEAT&SKN CKD FRIED BATTER',,,,'Bone',23,,6.25,4.27,9.02,3.87 -05050,0500,'Chicken broilers or fryers back meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS BACK MEAT&SKN CKD FRIED FLR',,,,'Bone',33,,6.25,4.27,9.02,3.87 -05051,0500,'Chicken broilers or fryers back meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS BACK MEAT&SKN CKD RSTD',,,'Y','Bone',47,,6.25,4.27,9.02,3.87 -05052,0500,'Chicken broilers or fryers back meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS BACK MEAT&SKN CKD STWD',,,'Y','Bone',48,,6.25,4.27,9.02,3.87 -05053,0500,'Chicken broilers or fryers back meat only raw','CHICKEN BROILERS OR FRYERS BACK MEAT ONLY RAW',,,,'44% bone 10% skin 17% seprable fat',71,,6.25,4.27,9.02,3.87 -05054,0500,'Chicken broilers or fryers back meat only cooked fried','CHICKEN BROILERS OR FRYERS BACK MEAT ONLY CKD FRIED',,,,'33% bone 13% skin',46,,6.25,4.27,9.02,3.87 -05055,0500,'Chicken broilers or fryers back meat only cooked roasted','CHICKEN BROILERS OR FRYERS BACK MEAT ONLY CKD RSTD',,,,'47% bone 13% skin',60,,6.25,4.27,9.02,3.87 -05056,0500,'Chicken broilers or fryers back meat only cooked stewed','CHICKEN BROILERS OR FRYERS BACK MEAT ONLY CKD STWD',,,,'48% bone 16% skin',64,,6.25,4.27,9.02,3.87 -05057,0500,'Chicken broilers or fryers breast meat and skin raw','CHICKEN BROILERS OR FRYERS BREAST MEAT&SKN RAW',,,'Y','Bone',20,,6.25,4.27,9.02,3.87 -05058,0500,'Chicken broilers or fryers breast meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS BREAST MEAT&SKN CKD FRIED BATTER',,,'Y','Bone',12,,6.25,4.27,9.02,3.87 -05059,0500,'Chicken broilers or fryers breast meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS BREAST MEAT&SKN CKD FRIED FLR',,,,'Bone',17,,6.25,4.27,9.02,3.87 -05060,0500,'Chicken broilers or fryers breast meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS BREAST MEAT&SKN CKD RSTD',,,'Y','Bone',19,,6.25,4.27,9.02,3.87 -05061,0500,'Chicken broilers or fryers breast meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS BREAST MEAT&SKN CKD STWD',,,'Y','Bone',18,,6.25,4.27,9.02,3.87 -05062,0500,'Chicken broiler or fryers breast skinless boneless meat only raw','CHICKEN BROILER OR FRYERS BRST SKINLESS BNLESS MEAT ONLY RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -05063,0500,'Chicken broilers or fryers breast meat only cooked fried','CHICKEN BROILERS OR FRYERS BREAST MEAT ONLY CKD FRIED',,,'Y','17% bone 10% skin',27,,6.25,4.27,9.02,3.87 -05064,0500,'Chicken broilers or fryers breast meat only cooked roasted','CHICKEN BROILERS OR FRYERS BREAST MEAT ONLY CKD RSTD',,,'Y','19% bone 9% skin',28,,6.25,4.27,9.02,3.87 -05065,0500,'Chicken broilers or fryers breast meat only cooked stewed','CHICKEN BROILERS OR FRYERS BREAST MEAT ONLY CKD STWD',,,'Y','18% bone 12% skin',30,,6.25,4.27,9.02,3.87 -05066,0500,'Chicken broilers or fryers drumstick meat and skin raw','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT&SKN RAW',,,'Y','Bone and cartilage 33% Bone and connective tissue 33%',66,,6.25,4.27,9.02,3.87 -05067,0500,'Chicken broilers or fryers drumstick meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT&SKN CKD FRIED BATTER',,,,'Bone',26,,6.25,4.27,9.02,3.87 -05068,0500,'Chicken broilers or fryers drumstick meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT&SKN CKD FRIED FLR',,,,'Bone',34,,6.25,4.27,9.02,3.87 -05069,0500,'Chicken broilers or fryers drumstick meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT&SKN CKD RSTD',,,'Y','Bone and cartilage 33% Bone and connective tissue 28%',61,,6.25,4.27,9.02,3.87 -05070,0500,'Chicken broilers or fryers drumstick meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT&SKN CKD STWD',,,'Y','Bone',36,,6.25,4.27,9.02,3.87 -05071,0500,'Chicken broilers or fryers dark meat drumstick meat only raw','CHICKEN BROILERS OR FRYERS DK MEAT DRUMSTK MEAT ONLY RAW',,,'Y','bone and cartilage 33% skin and separable fat 9%',42,,6.25,4.27,9.02,3.87 -05072,0500,'Chicken broilers or fryers drumstick meat only cooked fried','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT ONLY CKD FRIED',,,,'34% bone 10% skin',44,,6.25,4.27,9.02,3.87 -05073,0500,'Chicken broilers or fryers dark meat drumstick meat only cooked roasted','CHICKEN BROILERS OR FRYERS DK MEAT DRUMSTK MEAT ONLY CKD RST',,,'Y','Bone and cartilage 33% Skin and separable fat 7%',40,,6.25,4.27,9.02,3.87 -05074,0500,'Chicken broilers or fryers drumstick meat only cooked stewed','CHICKEN BROILERS OR FRYERS DRUMSTK MEAT ONLY CKD STWD',,,'Y','36% bone 12% skin',48,,6.25,4.27,9.02,3.87 -05075,0500,'Chicken broilers or fryers leg meat and skin raw','CHICKEN BROILERS OR FRYERS LEG MEAT&SKN RAW',,,'Y','Bone',27,,6.25,4.27,9.02,3.87 -05076,0500,'Chicken broilers or fryers leg meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS LEG MEAT&SKN CKD FRIED BATTER',,,,'Bone',22,,6.25,4.27,9.02,3.87 -05077,0500,'Chicken broilers or fryers leg meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS LEG MEAT&SKN CKD FRIED FLR',,,,'Bone',28,,6.25,4.27,9.02,3.87 -05078,0500,'Chicken broilers or fryers leg meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS LEG MEAT&SKN CKD RSTD',,,'Y','Bone 29%',29,,6.25,4.27,9.02,3.87 -05079,0500,'Chicken broilers or fryers leg meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS LEG MEAT&SKN CKD STWD',,,'Y','Bone',30,,6.25,4.27,9.02,3.87 -05080,0500,'Chicken broilers or fryers leg meat only raw','CHICKEN BROILERS OR FRYERS LEG MEAT ONLY RAW',,,'Y','27% bone 11% skin 5% separable fat',43,,6.25,4.27,9.02,3.87 -05081,0500,'Chicken broilers or fryers leg meat only cooked fried','CHICKEN BROILERS OR FRYERS LEG MEAT ONLY CKD FRIED',,,,'28% bone 12% skin',40,,6.25,4.27,9.02,3.87 -05082,0500,'Chicken broilers or fryers leg meat only cooked roasted','CHICKEN BROILERS OR FRYERS LEG MEAT ONLY CKD RSTD',,,'Y','Bone 29% skin 12%',41,,6.25,4.27,9.02,3.87 -05083,0500,'Chicken broilers or fryers leg meat only cooked stewed','CHICKEN BROILERS OR FRYERS LEG MEAT ONLY CKD STWD',,,'Y','30% bone 13% skin',43,,6.25,4.27,9.02,3.87 -05084,0500,'Chicken broilers or fryers neck meat and skin raw','CHICKEN BROILERS OR FRYERS NECK MEAT&SKN RAW',,,,'Bone',36,,6.25,4.27,9.02,3.87 -05085,0500,'Chicken broilers or fryers neck meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS NECK MEAT&SKN CKD FRIED BATTER',,,,'Bone',25,,6.25,4.27,9.02,3.87 -05086,0500,'Chicken broilers or fryers neck meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS NECK MEAT&SKN CKD FRIED FLR',,,,'Bone',29,,6.25,4.27,9.02,3.87 -05087,0500,'Chicken broilers or fryers neck meat and skin cooked simmered','CHICKEN BROILERS OR FRYERS NECK MEAT&SKN CKD SIMMRD',,,'Y','Bone',32,,6.25,4.27,9.02,3.87 -05088,0500,'Chicken broilers or fryers neck meat only raw','CHICKEN BROILERS OR FRYERS NECK MEAT ONLY RAW',,,,'36% bone 39% skin and separable fat',75,,6.25,4.27,9.02,3.87 -05089,0500,'Chicken broilers or fryers neck meat only cooked fried','CHICKEN BROILERS OR FRYERS NECK MEAT ONLY CKD FRIED',,,,'29% bone 27% skin',56,,6.25,4.27,9.02,3.87 -05090,0500,'Chicken broilers or fryers neck meat only cooked simmered','CHICKEN BROILERS OR FRYERS NECK MEAT ONLY CKD SIMMRD',,,,'32% bone 35% skin',67,,6.25,4.27,9.02,3.87 -05091,0500,'Chicken broilers or fryers thigh meat and skin raw','CHICKEN BROILERS OR FRYERS THIGH MEAT&SKN RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -05092,0500,'Chicken broilers or fryers thigh meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS THIGH MEAT&SKN CKD FRIED BATTER',,,,'Bone',19,,6.25,4.27,9.02,3.87 -05093,0500,'Chicken broilers or fryers thigh meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS THIGH MEAT&SKN CKD FRIED FLR',,,,'Bone',23,,6.25,4.27,9.02,3.87 -05094,0500,'Chicken broilers or fryers thigh meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS THIGH MEAT&SKN CKD RSTD',,,'Y','Bone and cartilage 17% bone and connective tissue 16%',33,,6.25,4.27,9.02,3.87 -05095,0500,'Chicken broilers or fryers thigh meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS THIGH MEAT&SKN CKD STWD',,,'Y','Bone',24,,6.25,4.27,9.02,3.87 -05096,0500,'Chicken broilers or fryers dark meat thigh meat only raw','CHICKEN BROILERS OR FRYERS DK MEAT THIGH MEAT ONLY RAW',,,'Y',' Skin and separable fat 25%',25,,6.25,4.27,9.02,3.87 -05097,0500,'Chicken broilers or fryers thigh meat only cooked fried','CHICKEN BROILERS OR FRYERS THIGH MEAT ONLY CKD FRIED',,,,'23% bone 13% skin',36,,6.25,4.27,9.02,3.87 -05098,0500,'Chicken broilers or fryers thigh meat only cooked roasted','CHICKEN BROILERS OR FRYERS THIGH MEAT ONLY CKD RSTD',,,'Y','Bone and cartilage 17% skin and separable fat 15%',48,,6.25,4.27,9.02,3.87 -05099,0500,'Chicken broilers or fryers thigh meat only cooked stewed','CHICKEN BROILERS OR FRYERS THIGH MEAT ONLY CKD STWD',,,'Y','24% bone 15% skin',39,,6.25,4.27,9.02,3.87 -05100,0500,'Chicken broilers or fryers wing meat and skin raw','CHICKEN BROILERS OR FRYERS WING MEAT&SKN RAW',,,'Y','Bone and connective tissue 38%',38,,6.25,4.27,9.02,3.87 -05101,0500,'Chicken broilers or fryers wing meat and skin cooked fried batter','CHICKEN BROILERS OR FRYERS WING MEAT&SKN CKD FRIED BATTER',,,,'Bone',38,,6.25,4.27,9.02,3.87 -05102,0500,'Chicken broilers or fryers wing meat and skin cooked fried flour','CHICKEN BROILERS OR FRYERS WING MEAT&SKN CKD FRIED FLR',,,,'Bone',47,,6.25,4.27,9.02,3.87 -05103,0500,'Chicken broilers or fryers wing meat and skin cooked roasted','CHICKEN BROILERS OR FRYERS WING MEAT&SKN CKD RSTD',,,'Y','Bone and connective tissue 40%',40,,6.25,4.27,9.02,3.87 -05104,0500,'Chicken broilers or fryers wing meat and skin cooked stewed','CHICKEN BROILERS OR FRYERS WING MEAT&SKN CKD STWD',,,'Y','Bone',48,,6.25,4.27,9.02,3.87 -05105,0500,'Chicken broilers or fryers wing meat only raw','CHICKEN BROILERS OR FRYERS WING MEAT ONLY RAW',,,'Y','46% bone 21% skin 1% separable fat',68,,6.25,4.27,9.02,3.87 -05106,0500,'Chicken broilers or fryers wing meat only cooked fried','CHICKEN BROILERS OR FRYERS WING MEAT ONLY CKD FRIED',,,,'47% bone 19% skin',66,,6.25,4.27,9.02,3.87 -05107,0500,'Chicken broilers or fryers wing meat only cooked roasted','CHICKEN BROILERS OR FRYERS WING MEAT ONLY CKD RSTD',,,'Y','48% bone 20% skin',68,,6.25,4.27,9.02,3.87 -05108,0500,'Chicken broilers or fryers wing meat only cooked stewed','CHICKEN BROILERS OR FRYERS WING MEAT ONLY CKD STWD',,,'Y','48% bone 20% skin',68,,6.25,4.27,9.02,3.87 -05109,0500,'Chicken roasting meat and skin and giblets and neck raw','CHICKEN ROASTING MEAT&SKN&GIBLETS&NECK RAW',,,,'Bone',27,,6.25,4.27,9.02,3.87 -05110,0500,'Chicken roasting meat and skin and giblets and neck cooked roasted','CHICKEN ROASTING MEAT&SKN&GIBLETS&NECK CKD RSTD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -05111,0500,'Canada Goose breast meat only skinless raw','CANADA GOOSE BREAST MEAT ONLY SKINLESS RAW','Canadian geese',,,,0,'Branta canadensis',,,, -05112,0500,'Chicken roasting meat and skin cooked roasted','CHICKEN ROASTING MEAT&SKN CKD RSTD',,,,'Bone',30,,6.25,4.27,9.02,3.87 -05113,0500,'Chicken roasting meat only raw','CHICKEN ROASTING MEAT ONLY RAW',,,,'28% bone 14% skin 7% separable fat',49,,6.25,4.27,9.02,3.87 -05114,0500,'Chicken roasting meat only cooked roasted','CHICKEN ROASTING MEAT ONLY CKD RSTD',,,,'30% bone 12% skin 1% separable fat',43,,6.25,4.27,9.02,3.87 -05115,0500,'Chicken roasting giblets raw','CHICKEN ROASTING GIBLETS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05116,0500,'Chicken roasting giblets cooked simmered','CHICKEN ROASTING GIBLETS CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -05117,0500,'Chicken roasting light meat meat only raw','CHICKEN ROASTING LT MEAT MEAT ONLY RAW',,,,'26% bone 13% skin 4% separable fat',43,,6.25,4.27,9.02,3.87 -05118,0500,'Chicken roasting light meat meat only cooked roasted','CHICKEN ROASTING LT MEAT MEAT ONLY CKD RSTD',,,'Y','24% bone 16% skin',40,,6.25,4.27,9.02,3.87 -05119,0500,'Chicken roasting dark meat meat only raw','CHICKEN ROASTING DK MEAT MEAT ONLY RAW',,,,'30% bone 14% skin 9% separable fat',53,,6.25,4.27,9.02,3.87 -05120,0500,'Chicken roasting dark meat meat only cooked roasted','CHICKEN ROASTING DK MEAT MEAT ONLY CKD RSTD',,,,'35% bone 10% skin 1% separable fat',46,,6.25,4.27,9.02,3.87 -05121,0500,'Chicken stewing meat and skin and giblets and neck raw','CHICKEN STEWING MEAT&SKN &GIBLETS&NECK RAW',,,,'27% bone 5% separable fat',32,,6.25,4.27,9.02,3.87 -05122,0500,'Chicken stewing meat and skin and giblets and neck cooked stewed','CHICKEN STEWING MEAT & SKN & GIBLETS & NECK CKD STWD',,,'Y','29% bone 2% separable fat',31,,6.25,4.27,9.02,3.87 -05123,0500,'Chicken stewing meat and skin raw','CHICKEN STEWING MEAT&SKN RAW',,,,'Bone',30,,6.25,4.27,9.02,3.87 -05124,0500,'Chicken stewing meat and skin cooked stewed','CHICKEN STEWING MEAT&SKN CKD STWD',,,,'Bone',32,,6.25,4.27,9.02,3.87 -05125,0500,'Chicken stewing meat only raw','CHICKEN STEWING MEAT ONLY RAW',,,,'Bone 30% skin 12% separable fat 8%',50,,6.25,4.27,9.02,3.87 -05126,0500,'Chicken stewing meat only cooked stewed','CHICKEN STEWING MEAT ONLY CKD STWD',,,,'Bone 32% skin 16%',48,,6.25,4.27,9.02,3.87 -05127,0500,'Chicken stewing giblets raw','CHICKEN STEWING GIBLETS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05128,0500,'Chicken stewing giblets cooked simmered','CHICKEN STEWING GIBLETS CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -05129,0500,'Chicken stewing light meat meat only raw','CHICKEN STEWING LT MEAT MEAT ONLY RAW',,,,'26% bone 14% skin 4% separable fat',44,,6.25,4.27,9.02,3.87 -05130,0500,'Chicken stewing light meat meat only cooked stewed','CHICKEN STEWING LT MEAT MEAT ONLY CKD STWD',,,,'26% bone 16% skin',42,,6.25,4.27,9.02,3.87 -05131,0500,'Chicken stewing dark meat meat only raw','CHICKEN STEWING DK MEAT MEAT ONLY RAW',,,,'33% bone 11% skin 10% separable fat',54,,6.25,4.27,9.02,3.87 -05132,0500,'Chicken stewing dark meat meat only cooked stewed','CHICKEN STEWING DK MEAT MEAT ONLY CKD STWD',,,,'36% bone 15% skin',51,,6.25,4.27,9.02,3.87 -05133,0500,'Chicken capons meat and skin and giblets and neck raw','CHICKEN CAPONS MEAT&SKN&GIBLETS&NECK RAW',,,,'Bone',27,,6.25,4.27,9.02,3.87 -05134,0500,'Chicken capons meat and skin and giblets and neck cooked roasted','CHICKEN CAPONS MEAT&SKN&GIBLETS&NECK CKD RSTD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -05135,0500,'Chicken capons meat and skin raw','CHICKEN CAPONS MEAT&SKN RAW',,,,'Bone',28,,6.25,4.27,9.02,3.87 -05136,0500,'Chicken capons meat and skin cooked roasted','CHICKEN CAPONS MEAT&SKN CKD RSTD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -05137,0500,'Chicken capons giblets raw','CHICKEN CAPONS GIBLETS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05138,0500,'Chicken capons giblets cooked simmered','CHICKEN CAPONS GIBLETS CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -05139,0500,'Duck domesticated meat and skin raw','DUCK DOMESTICATED MEAT&SKN RAW',,,'Y','Bone',28,'Anas platyrhynchos',6.25,4.27,9.02,3.87 -05140,0500,'Duck domesticated meat and skin cooked roasted','DUCK DOMESTICATED MEAT&SKN CKD RSTD',,,'Y','Bone',35,,6.25,4.27,9.02,3.87 -05141,0500,'Duck domesticated meat only raw','DUCK DOMESTICATED MEAT ONLY RAW',,,'Y','28% bone 38% skin and separable fat',66,,6.25,4.27,9.02,3.87 -05142,0500,'Duck domesticated meat only cooked roasted','DUCK DOMESTICATED MEAT ONLY CKD RSTD',,,'Y','35% bone 27% skin and separable fat',62,,6.25,4.27,9.02,3.87 -05143,0500,'Duck domesticated liver raw','DUCK DOMESTICATED LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -05144,0500,'Duck wild meat and skin raw','DUCK WILD MEAT&SKN RAW',,,,'38% bone 2% handling loss',40,,6.25,4.27,9.02,3.87 -05145,0500,'Duck wild breast meat only raw','DUCK WILD BREAST MEAT ONLY RAW',,,,'15% bone 31% skin and separable fat',46,,6.25,4.27,9.02,3.87 -05146,0500,'Goose domesticated meat and skin raw','GOOSE DOMESTICATED MEAT&SKN RAW',,,,'Bone',19,'Anser anser',6.25,4.27,9.02,3.87 -05147,0500,'Goose domesticated meat and skin cooked roasted','GOOSE DOMESTICATED MEAT&SKN CKD RSTD',,,'Y','Bone',28,,6.25,4.27,9.02,3.87 -05148,0500,'Goose domesticated meat only raw','GOOSE DOMESTICATED MEAT ONLY RAW',,,,'19% bone 34% skin and separable fat',53,,6.25,4.27,9.02,3.87 -05149,0500,'Goose domesticated meat only cooked roasted','GOOSE DOMESTICATED MEAT ONLY CKD RSTD',,,,'28% bone 17% skin and separable fat',45,,6.25,4.27,9.02,3.87 -05150,0500,'Goose liver raw','GOOSE LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -05151,0500,'Guinea hen meat and skin raw','GUINEA HEN MEAT&SKN RAW',,,,'Bone',17,'Numida meleagris',6.25,4.27,9.02,3.87 -05152,0500,'Guinea hen meat only raw','GUINEA HEN MEAT ONLY RAW',,,,'17% bone 19% skin and separable fat',36,,6.25,4.27,9.02,3.87 -05153,0500,'Pheasant raw meat and skin','PHEASANT RAW MEAT&SKN',,,,'Bone',14,'Phasianus colchicus',6.25,4.27,9.02,3.87 -05154,0500,'Pheasant raw meat only','PHEASANT RAW MEAT ONLY',,,,'14% bone 10% skin',24,,6.25,4.27,9.02,3.87 -05155,0500,'Pheasant breast meat only raw','PHEASANT BREAST MEAT ONLY RAW',,,,,0,,6.25,4.27,9.02,3.87 -05156,0500,'Pheasant leg meat only raw','PHEASANT LEG MEAT ONLY RAW',,,,,0,,6.25,4.27,9.02,3.87 -05157,0500,'Quail meat and skin raw','QUAIL MEAT AND SKIN RAW',,,,'Bone',10,'Coturnix spp. and Colinus spp.',6.25,4.27,9.02,3.87 -05158,0500,'Quail meat only raw','QUAIL MEAT ONLY RAW',,,,'10% bone 14% skin',24,,6.25,4.27,9.02,3.87 -05159,0500,'Quail breast meat only raw','QUAIL BREAST MEAT ONLY RAW',,,,,0,,6.25,4.27,9.02,3.87 -05160,0500,'Squab (pigeon) meat and skin raw','SQUAB (PIGEON) MEAT&SKN RAW',,,,'Bone',23,'Columba spp.',6.25,4.27,9.02,3.87 -05161,0500,'Squab (pigeon) meat only raw','SQUAB (PIGEON) MEAT ONLY RAW',,,,'23% bone 12% skin',35,,6.25,4.27,9.02,3.87 -05162,0500,'Squab (pigeon) light meat without skin raw','SQUAB (PIGEON) LT MEAT WO/SKN RAW',,,,,0,,6.25,4.27,9.02,3.87 -05165,0500,'Turkey whole meat and skin raw','TURKEY WHL MEAT & SKN RAW',,,'Y','Bone and connective tissue 29%',29,,6.25,4.27,9.02,3.87 -05166,0500,'Turkey whole meat and skin cooked roasted','TURKEY WHL MEAT & SKN CKD RSTD',,,'Y','Bone connective tissue 31%',31,,6.25,4.27,9.02,3.87 -05167,0500,'Turkey whole meat only raw','TURKEY WHL MEAT ONLY RAW',,,'Y','Bone and connective tissue 29% Skin and separable fat 11%',41,,6.25,4.27,9.02,3.87 -05168,0500,'Turkey whole meat only cooked roasted','TURKEY WHL MEAT ONLY CKD RSTD',,,'Y','Bone and connective tissue 31% Skin and separable fat 7%',38,,6.25,4.27,9.02,3.87 -05169,0500,'Turkey whole skin (light and dark) raw','TURKEY WHL SKN (LIGHT & DARK) RAW',,,,,0,,6.25,4.27,9.02,3.87 -05170,0500,'Turkey whole skin (light and dark) roasted','TURKEY WHL SKN (LIGHT & DARK) RSTD',,,,,0,,6.25,4.27,9.02,3.87 -05171,0500,'Turkey whole giblets raw','TURKEY WHL GIBLETS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05172,0500,'Turkey whole giblets cooked simmered','TURKEY WHL GIBLETS CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05173,0500,'Turkey gizzard all classes raw','TURKEY GIZZARD ALL CLASSES RAW',,,,,0,,6.25,4.27,9.02,3.87 -05174,0500,'Turkey all classes gizzard cooked simmered','TURKEY ALL CLASSES GIZZARD CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05175,0500,'Turkey all classes heart raw','TURKEY ALL CLASSES HEART RAW',,,,,0,,6.25,4.27,9.02,3.87 -05176,0500,'Turkey all classes heart cooked simmered','TURKEY ALL CLASSES HEART CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05177,0500,'Turkey all classes liver raw','TURKEY ALL CLASSES LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -05178,0500,'Turkey all classes liver cooked simmered','TURKEY ALL CLASSES LIVER CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -05179,0500,'Turkey whole neck meat only raw','TURKEY WHL NECK MEAT ONLY RAW',,,,'Bone and connective tissue 60%',60,,6.25,4.27,9.02,3.87 -05180,0500,'Turkey whole neck meat only cooked simmered','TURKEY WHL NECK MEAT ONLY CKD SIMMRD',,,'Y','Bone and connective tissue 53%',53,,6.25,4.27,9.02,3.87 -05181,0500,'Turkey whole light meat meat and skin raw','TURKEY WHL LT MEAT MEAT & SKN RAW',,,,'Bone and Conncetive tissue 32%',32,,6.25,4.27,9.02,3.87 -05182,0500,'Turkey whole light meat meat and skin cooked roasted','TURKEY WHL LT MEAT MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 20%',20,,6.25,4.27,9.02,3.87 -05183,0500,'Turkey dark meat meat and skin raw','TURKEY DK MEAT MEAT & SKN RAW',,,,'Bone and connective tissue 38%',48,,6.25,4.27,9.02,3.87 -05184,0500,'Turkey whole dark meat meat and skin cooked roasted','TURKEY WHL DK MEAT MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 38%',38,,6.25,4.27,9.02,3.87 -05185,0500,'Turkey whole light meat raw','TURKEY WHL LT MEAT RAW',,,,'Bone and connective tissue 20% skin and separable fat 12%',29,,6.25,4.27,9.02,3.87 -05186,0500,'Turkey all classes light meat cooked roasted','TURKEY ALL CLASSES LT MEAT CKD RSTD',,,'Y','Bone and connective tissue 20% Skin and separable fat 7%',27,,6.25,4.27,9.02,3.87 -05187,0500,'Turkey whole dark meat meat only raw','TURKEY WHL DK MEAT MEAT ONLY RAW',,,,'Bone and connective tissue 38% skin and separable fat 10%',48,,,,, -05188,0500,'Turkey whole dark meat cooked roasted','TURKEY WHL DK MEAT CKD RSTD',,,'Y','Bone and connective tissue 39% Skin and separable fat 7%',46,,6.25,4.27,9.02,3.87 -05190,0500,'Turkey all classes back meat and skin cooked roasted','TURKEY ALL CLASSES BACK MEAT&SKN CKD RSTD',,,'Y','Bone',41,,6.25,4.27,9.02,3.87 -05191,0500,'Turkey all classes breast meat and skin raw','TURKEY ALL CLASSES BREAST MEAT&SKN RAW',,,,'Bone',10,,6.25,4.27,9.02,3.87 -05192,0500,'Turkey all classes breast meat and skin cooked roasted','TURKEY ALL CLASSES BREAST MEAT&SKN CKD RSTD',,,,'Bone',8,,6.25,4.27,9.02,3.87 -05193,0500,'Turkey all classes leg meat and skin raw','TURKEY ALL CLASSES LEG MEAT&SKN RAW',,,,'Bone',17,,6.25,4.27,9.02,3.87 -05194,0500,'Turkey all classes leg meat and skin cooked roasted','TURKEY ALL CLASSES LEG MEAT&SKN CKD RSTD',,,'Y','Bone',19,,6.25,4.27,9.02,3.87 -05195,0500,'Turkey all classes wing meat and skin raw','TURKEY ALL CLASSES WING MEAT&SKN RAW',,,,'Bone',33,,6.25,4.27,9.02,3.87 -05196,0500,'Turkey all classes wing meat and skin cooked roasted','TURKEY ALL CLASSES WING MEAT&SKN CKD RSTD',,,'Y','Bone',34,,6.25,4.27,9.02,3.87 -05200,0500,'Turkey fryer-roasters meat and skin cooked roasted','TURKEY FRYER-ROASTERS MEAT&SKN CKD RSTD',,,'Y','Bone',25,,6.25,4.27,9.02,3.87 -05215,0500,'Turkey whole back meat only raw','TURKEY BACK FROM WHL BIRD MEAT ONLY RAW',,,,'Bone and connective tissue 50% skin and separable fat 12%',62,,6.25,4.27,9.02,3.87 -05216,0500,'Turkey whole back meat only cooked roasted','TURKEY BACK FROM WHL BIRD MEAT ONLY RSTD',,,'Y','Bone and connective tissue 54% Skin and separable fat 7%',42,,6.25,4.27,9.02,3.87 -05219,0500,'Turkey whole breast meat only raw','TURKEY BREAST FROM WHL BIRD MEAT ONLY RAW',,,,'Bone and connective tissue 12% Skin and separable fat 10%',22,,6.25,4.27,9.02,3.87 -05220,0500,'Turkey whole breast meat only cooked roasted','TURKEY BREAST FROM WHL BIRD MEAT ONLY RSTD',,,'Y','Bone and connective tissue 13% Skin and separable fat 6%',19,,6.25,4.27,9.02,3.87 -05227,0500,'Turkey whole wing meat only raw','TURKEY WING FROM WHL BIRD MEAT ONLY RAW',,,,'Bone and connective tissue 44% skin and separable fat 16%',60,,6.25,4.27,9.02,3.87 -05228,0500,'Turkey whole wing meat only cooked roasted','TURKEY WING FROM WHL BIRD MEAT ONLY RSTD',,,'Y','Bone and connective tissue 48% skin and separable fat 11%',59,,6.25,4.27,9.02,3.87 -05236,0500,'Turkey young hen skin only cooked roasted','TURKEY YOUNG HEN SKN ONLY CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -05277,0500,'Chicken canned meat only with broth','CHICKEN CND MEAT ONLY W/BROTH',,,'Y',,0,,6.25,4.27,9.02,3.87 -05282,0500,'Pate de foie gras canned (goose liver pate) smoked','PATE DE FOIE GRAS CND (GOOSE LIVER PATE) SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -05284,0500,'Turkey canned meat only with broth','TURKEY CND MEAT ONLY W/BROTH',,,'Y',,0,,6.25,4.27,9.02,3.87 -05285,0500,'Turkey diced light and dark meat seasoned','TURKEY DICED LT&DK MEAT SEASONED',,,,,0,,6.25,4.27,9.02,3.87 -05286,0500,'Turkey and gravy frozen','TURKEY AND GRAVY FROZEN',,,,,0,,6.25,4.27,9.02,3.87 -05293,0500,'Turkey breast pre-basted meat and skin cooked roasted','TURKEY BREAST PRE-BASTED MEAT&SKN CKD RSTD',,,,'Bone',8,,6.25,4.27,9.02,3.87 -05294,0500,'Turkey thigh pre-basted meat and skin cooked roasted','TURKEY THIGH PRE-BASTED MEAT&SKN CKD RSTD',,,,'Bone',13,,6.25,4.27,9.02,3.87 -05295,0500,'Turkey roast boneless frozen seasoned light and dark meat raw','TURKEY RST BNLESS FRZ SEASONED LT&DK MEAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -05300,0500,'Turkey sticks breaded battered fried','TURKEY STKS BREADED BATTERED FRIED',,,,,0,,6.25,4.27,9.02,3.87 -05301,0500,'Poultry mechanically deboned from backs and necks with skin raw','POULTRY MECHANICALLY DEBONED FROM BACKS&NECKS W/SKN RAW',,,,,0,,6.25,4.27,9.02,3.87 -05302,0500,'Poultry mechanically deboned from backs and necks without skin raw','POULTRY MECHANICALLY DEBONED FROM BACKS&NECKS WO/SKN RAW',,,,,0,,6.25,4.27,9.02,3.87 -05303,0500,'Poultry mechanically deboned from mature hens raw','POULTRY MECHANICALLY DEBONED FROM MATURE HENS RAW',,,,,0,,6.25,4.27,9.02,3.87 -05304,0500,'Turkey mechanically deboned from turkey frames raw','TURKEY MECHANICALLY DEBONED FROM TURKEY FRAMES RAW',,,,,0,,6.25,4.27,9.02,3.87 -05305,0500,'Turkey Ground raw','TURKEY GROUND RAW',,,,,0,,,,, -05306,0500,'Turkey Ground cooked','TURKEY GROUND CKD',,,'Y',,0,,,,, -05307,0500,'Chicken cornish game hens meat and skin raw','CHICKEN CORNISH GAME HENS MEAT&SKN RAW',,,,'Bone',39,,6.25,4.27,9.02,3.87 -05308,0500,'Chicken cornish game hens meat and skin cooked roasted','CHICKEN CORNISH GAME HENS MEAT&SKN CKD RSTD',,,'Y','Bone',37,,6.25,4.27,9.02,3.87 -05309,0500,'Chicken cornish game hens meat only raw','CHICKEN CORNISH GAME HENS MEAT ONLY RAW',,,,'39% bone 13% skin 5% separable fat',57,,6.25,4.27,9.02,3.87 -05310,0500,'Chicken cornish game hens meat only cooked roasted','CHICKEN CORNISH GAME HENS MEAT ONLY CKD RSTD',,,'Y','37% bone 9% skin',46,,6.25,4.27,9.02,3.87 -05311,0500,'Chicken canned no broth','CHICKEN CANNED NO BROTH',,,'Y',,0,,6.25,4.27,9.02,3.87 -05312,0500,'Chicken wing frozen glazed barbecue flavored','CHICKEN WING FRZ GLAZED BARBECUE FLAV',,,,'Drumette: Bone 24.92% Cartilage 9.79% Total refuse: 34.71%; Second wing section: Bone 22.09% Cartilage 8.51% Total refuse: 30.65%',33,,6.25,4.27,9.02,3.87 -05313,0500,'Chicken wing frozen glazed barbecue flavored heated (microwave)','CHICKEN WING FRZ GLAZED BARBECUE FLAV HTD (MICROWAVE)',,,,'Drumette: Bone 24.92% Cartilage 9.79% Total refuse: 34.71%; Second wing section: Bone 22.09% Cartilage 8.51% Total refuse: 30.65%',33,,6.25,4.27,9.02,3.87 -05314,0500,'Chicken broilers or fryers breast skinless boneless meat only with added solution raw','CKN BROILERS/FRYERS BRST SKNLS BNLS MEAT ONLY W ADDED SLN RW',,,'Y',,0,,6.25,,, -05315,0500,'Duck young duckling domesticated White Pekin breast meat and skin boneless cooked roasted','DUCK YNG DUCKLING DOM WH PEKIN BRST MEAT&SKN BNLESS CKD RSTD',,,,,0,'Anas platyrhynchos',6.25,4.27,9.02, -05316,0500,'Duck young duckling domesticated White Pekin breast meat only boneless cooked without skin broiled','DUCK YNG DUCKL DOM WH PEKIN BRST MEAT BNLESS CKD WO/SKN BRLD',,,,,0,'Anas platyrhynchos',6.25,4.27,9.02, -05317,0500,'Duck young duckling domesticated White Pekin leg meat and skin bone in cooked roasted','DUCK YNG DUCKLING DOM WH PEKIN LEG MEAT&SKN BONE IN CKD RSTD',,,,'Bone',31,'Anas platyrhynchos',6.25,4.27,9.02, -05318,0500,'Duck young duckling domesticated White Pekin leg meat only bone in cooked without skin braised','DUCK YNG DUCKL DOM WH PEKIN LEG MEAT BONE IN CKD WO/SKN BRSD',,,,'Bone',34,'Anas platyrhynchos',6.25,4.27,9.02, -05319,0500,'Chicken broiler rotisserie BBQ drumstick meat only','CHICKEN BROILER ROTISSERIE BBQ DRUMSTK MEAT ONLY',,,'Y','Bone and connective tissue 29% skin and separable fat 12%',41,,,,, -05320,0500,'Chicken wing frozen glazed barbecue flavored heated (conventional oven)','CHICKEN WING FRZ GLAZED BBQ FLAV HTD (CONVENTIONAL OVEN)',,,,'Drumette: Bone 24.92% Cartilage 9.79% Total refuse: 34.71%; Second wing section: Bone 22.09% Cartilage 8.51% Total refuse: 30.65%',33,,6.25,4.27,9.02,3.87 -05323,0500,'Chicken patty frozen uncooked','CHICKEN PATTY FRZ UNCKD',,,,,0,,,,, -05324,0500,'Chicken patty frozen cooked','CHICKEN PATTY FRZ CKD',,,'Y',,0,,,,, -05326,0500,'Chicken breast tenders breaded cooked microwaved','CHICKEN BREAST TENDERS BREADED CKD MICROWAVED',,,,,0,,6.25,,, -05327,0500,'Chicken breast tenders breaded uncooked','CHICKEN BREAST TENDERS BREADED UNCKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -05332,0500,'Chicken ground raw','CHICKEN GROUND RAW',,,,,0,,6.25,,, -05333,0500,'Chicken ground crumbles cooked pan-browned','CHICKEN GROUND CRUMBLES CKD PAN-BROWNED',,,,,0,,6.25,3.87,9.04,4.27 -05334,0500,'Chicken broiler rotisserie BBQ thigh meat only','CHICKEN BROILER ROTISSERIE BBQ THIGH MEAT ONLY',,,'Y','Bone and connective tissue 14% skin and separable fat 15%',29,,,,, -05335,0500,'Chicken feet boiled','CHICK FEET BOILED',,,'Y',,0,,6.25,4.27,9.02,3.87 -05339,0500,'Chicken broiler rotisserie BBQ wing meat only','CHICKEN BROILER ROTISSERIE BBQ WING MEAT ONLY',,,'Y','Bone and connective tissue 32% skin and separable fat 25%',57,,6.25,,, -05341,0500,'Chicken broilers or fryers rotisserie original seasoning back meat only cooked','CHIKN BROLRS OR FYRS ROTSSRIE ORIGNL SESONG BCK MEAT OLY CKD',,,,'40.14% bone and cartilage 16.08% skin and separable fat',56,,,,, -05342,0500,'Chicken broilers or fryers rotisserie original seasoning breast meat only cooked','CHKN BRILRS OR FYRS ROTSSRE ORGNL SESONING BRST MEAT OLY CKD',,,'Y','Bone and Connective tissue 26% skin 10%',36,,,,, -05343,0500,'Chicken broilers or fryers drumstick rotisserie original seasoning meat only cooked','CHKN BRLRS OR FYRS DRMSTK ROISSRE ORGNL SESONIG MEAT OLY CKD',,,,'29.34% bone and cartilage 11.75% skin and separable fat',41,,,,, -05344,0500,'Chicken broilers or fryers rotisserie original seasoning skin only cooked','CICKN BRILRS OR FYRS ROTSSRE ORGNL SEASNG SKN ONLY CKD',,,,,0,,6.25,,, -05345,0500,'Chicken broilers or fryers rotisserie original seasoning thigh meat only cooked','CHCKN BROLRS OR FRYRS ROTSSRIE ORGNL SEASNG TGH MEAT OLY CKD',,,,'14.24% bone and cartilage 14.88% skin and separable fat',29,,,,, -05346,0500,'Chicken broilers or fryers rotisserie original seasoning wing meat only cooked','CHCKN BROLRS OR FRYRS ROISSRIE ORGNL SEASONG WNG MET OLY CKD',,,,'32.51% bone and cartilage 24.10% skin and separable fat',57,,,,, -05347,0500,'Chicken broilers or fryers rotisserie original seasoning back meat and skin cooked','CHKN BROLRS OR FRYRS ROTSSERE ORGNL SESONG BCK MET & SKN CKD',,,,,0,,,,, -05348,0500,'Chicken broilers or fryers rotisserie original seasoning breast meat and skin cooked','CHKN BROLRS OR FRYRS ROTSSRE ORGNL SASONG BRST MAT & SKN CKD',,,,,0,,,,, -05349,0500,'Chicken broilers or fryers rotisserie original seasoning drumstick meat and skin cooked','CHKN BROLRS OR FYRS ROTSSRE ORGNL SESONG DRMSTK MT & SKN CKD',,,,,0,,,,, -05351,0500,'Chicken broilers or fryers rotisserie original seasoning thigh meat and skin cooked','CHKN BROLRS OR FRYRS ROTSSRE ORGNL SESONG THGH MET & SKN CKD',,,,,0,,,,, -05352,0500,'Chicken broilers or fryers rotisserie original seasoning wing meat and skin cooked','CHKN BROLRS OR FRYRS ROTSSRE ORGNL SEASONG WNG MET & SKN CKD',,,,,0,,,,, -05356,0500,'Chicken broiler rotisserie BBQ skin','CHICKEN BROILER ROTISSERIE BBQ SKIN',,,'Y',,0,,,,, -05357,0500,'Chicken broiler rotisserie BBQ back meat and skin','CHICKEN BROILER ROTISSERIE BBQ BACK MEAT & SKN',,,'Y','Bone and connective tissue 37%',37,,,,, -05358,0500,'Chicken broiler rotisserie BBQ breast meat and skin','CHICKEN BROILER ROTISSERIE BBQ BREAST MEAT & SKN',,,'Y','Bone and connective tissue 11%',11,,,,, -05359,0500,'Chicken broiler rotisserie BBQ drumstick meat and skin','CHICKEN BROILER ROTISSERIE BBQ DRUMSTK MEAT & SKN',,,'Y','Bone and connective tissue 29%',29,,,,, -05361,0500,'Chicken broiler rotisserie BBQ thigh meat and skin','CHICKEN BROILER ROTISSERIE BBQ THIGH MEAT & SKN',,,'Y','Bone and connective tissue 14%',14,,,,, -05362,0500,'Chicken broiler rotisserie BBQ wing meat and skin','CHICKEN BROILER ROTISSERIE BBQ WING MEAT & SKN',,,'Y','Bone and connective tissue 32%',32,,,,, -05363,0500,'Ruffed Grouse breast meat skinless raw','RUFFED GROUSE BREAST MEAT SKINLESS RAW','Ruffed grouse',,,,0,'Bonasa umbellus',,,, -05621,0500,'Emu ground raw','EMU GROUND RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05622,0500,'Emu ground cooked pan-broiled','EMU GROUND CKD PAN-BROILED',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05623,0500,'Emu fan fillet raw','EMU FAN FILLET RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05624,0500,'Emu fan fillet cooked broiled','EMU FAN FILLET CKD BRLD',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05625,0500,'Emu flat fillet raw','EMU FLAT FILLET RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05626,0500,'Emu full rump raw','EMU FULL RUMP RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05627,0500,'Emu full rump cooked broiled','EMU FULL RUMP CKD BRLD',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05628,0500,'Emu inside drum raw','EMU INSIDE DRUM RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05629,0500,'Emu inside drums cooked broiled','EMU INSIDE DRUMS CKD BRLD',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05630,0500,'Emu outside drum raw','EMU OUTSIDE DRUM RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05631,0500,'Emu oyster raw','EMU OYSTER RAW',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05632,0500,'Emu top loin cooked broiled','EMU TOP LOIN CKD BRLD',,,,,0,'Dromaius novaehollandiae',6.25,4.27,9.02,3.87 -05641,0500,'Ostrich ground raw','OSTRICH GROUND RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05642,0500,'Ostrich ground cooked pan-broiled','OSTRICH GROUND CKD PAN-BROILED',,,'Y',,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05643,0500,'Ostrich fan raw','OSTRICH FAN RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05644,0500,'Ostrich inside leg raw','OSTRICH INSIDE LEG RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05645,0500,'Ostrich inside leg cooked','OSTRICH INSIDE LEG CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05646,0500,'Ostrich inside strip raw','OSTRICH INSIDE STRIP RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05647,0500,'Ostrich inside strip cooked','OSTRICH INSIDE STRIP CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05648,0500,'Ostrich outside leg raw','OSTRICH OUTSIDE LEG RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05649,0500,'Ostrich outside strip raw','OSTRICH OUTSIDE STRIP RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05650,0500,'Ostrich outside strip cooked','OSTRICH OUTSIDE STRIP CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05651,0500,'Ostrich oyster raw','OSTRICH OYSTER RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05652,0500,'Ostrich oyster cooked','OSTRICH OYSTER CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05653,0500,'Ostrich round raw','OSTRICH RND RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05654,0500,'Ostrich tenderloin raw','OSTRICH TENDERLOIN RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05655,0500,'Ostrich tip trimmed raw','OSTRICH TIP RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05656,0500,'Ostrich tip trimmed cooked','OSTRICH TIP CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05657,0500,'Ostrich top loin raw','OSTRICH TOP LOIN RAW',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05658,0500,'Ostrich top loin cooked','OSTRICH TOP LOIN CKD',,,,,0,'Struthio camelus',6.25,4.27,9.02,3.87 -05661,0500,'Chicken liver all classes cooked pan-fried','CHICKEN LIVER ALL CLASSES CKD PAN-FRIED',,,,,0,,6.25,4.27,9.02,3.87 -05662,0500,'Turkey ground fat free raw','TURKEY GROUND FAT FREE RAW',,,,,0,,,,, -05663,0500,'Turkey ground fat free pan-broiled crumbles','TURKEY GROUND FAT FREE PAN-BROILED CRUMBLES',,,,,0,,,,, -05664,0500,'Turkey ground fat free patties broiled','TURKEY GROUND FAT FREE PATTIES BRLD',,,,,0,,,,, -05665,0500,'Turkey ground 93% lean 7% fat raw','TURKEY GROUND 93% LN 7% FAT RAW',,,,,0,,,,, -05666,0500,'Turkey ground 93% lean 7% fat pan-broiled crumbles','TURKEY GROUND 93% LN 7% FAT PAN-BROILED CRUMBLES',,,,,0,,,,, -05667,0500,'Turkey ground 93% lean 7% fat patties broiled','TURKEY GROUND 93% LN 7% FAT PATTIES BRLD',,,,,0,,,,, -05668,0500,'Turkey ground 85% lean 15% fat raw','TURKEY GROUND 85% LN 15% FAT RAW',,,,,0,,,,, -05669,0500,'Turkey ground 85% lean 15% fat pan-broiled crumbles','TURKEY GROUND 85% LN 15% FAT PAN-BROILED CRUMBLES',,,,,0,,,,, -05670,0500,'Turkey ground 85% lean 15% fat patties broiled','TURKEY GROUND 85% LN 15% FAT PATTIES BRLD',,,,,0,,,,, -05671,0500,'Chicken broilers or fryers dark meat drumstick meat only cooked braised','CHICKEN BROILERS OR FRYERS DK MEAT DRUMSTK MEAT OLY CKD BRSD',,,,'Bone and cartilage 32% Separable fat and skin 9%',41,,,,, -05672,0500,'Chicken broilers or fryers dark meat thigh meat only cooked braised','CHICKEN BROILERS OR FRYERS DK MEAT THIGH MEAT ONLY CKD BRSD',,,,'Bone and cartilage 16% Skin and separable fat 16%',32,,,,, -05673,0500,'Chicken skin (drumsticks and thighs) cooked braised','CHICKEN SKN (DRUMSTICKS & THIGHS) CKD BRSD',,,,,0,,,,, -05674,0500,'Chicken skin (drumsticks and thighs) raw','CHICKEN SKN (DRUMSTICKS & THIGHS) RAW',,,,,0,,,,, -05675,0500,'Chicken skin (drumsticks and thighs) cooked roasted','CHICKEN SKN (DRUMSTICKS & THIGHS) CKD RSTD',,,,,0,,,,, -05676,0500,'Chicken broilers or fryers dark meat drumstick meat and skin cooked braised','CHICKEN BROILERS OR FRYERS DK MEAT DRUMSTK MT & SKN CKD BRSD',,,,'Bone and cartilage 32%',32,,,,, -05677,0500,'Chicken broilers or fryers dark meat thigh meat and skin cooked braised','CHICKEN BROILERS OR FRYERS DK MEAT THIGH MEAT & SKN CKD BRSD',,,,'Bone and cartilage 16%',16,,,,, -05678,0500,'Chicken dark meat drumstick meat only with added solution raw','CHICKEN DK MEAT DRUMSTK MEAT ONLY W/ ADDED SOLN RAW',,,'Y','Bone and Cartilage 34% Skin and separable fat 9%',43,,,,, -05679,0500,'Chicken dark meat drumstick meat only with added solution cooked roasted','CHICKEN DK MEAT DRUMSTK MEAT ONLY W/ ADDED SOLN CKD RSTD',,,'Y','Bone and Cartilage 27% Skin and separable fat 8%',74,,6.25,,, -05680,0500,'Chicken dark meat drumstick meat only with added solution cooked braised','CHICKEN DK MEAT DRUMSTK MEAT ONLY W/ ADDED SOLN CKD BRSD',,,'Y','Bone and cartilage 30% Skin and separable fat 9%',39,,,,, -05681,0500,'Chicken dark meat thigh meat only with added solution cooked braised','CHICKEN DK MEAT THIGH MEAT ONLY W/ ADDED SOLN CKD BRSD',,,'Y','Bone and cartilage 15% Skin and separable fat 18%',33,,,,, -05682,0500,'Chicken dark meat thigh meat only with added solution raw','CHICKEN DK MEAT THIGH MEAT ONLY W/ ADDED SOLN RAW',,,'Y','Bone and cartilage 32% skin and separable fat 24%',56,,,,, -05683,0500,'Chicken dark meat thigh meat only with added solution cooked roasted','CHICKEN DK MEAT THIGH MEAT ONLY W/ ADDED SOLN CKD RSTD',,,'Y','Bone and connective tissue 16% Skin and separable fat 15%',31,,,,, -05684,0500,'Chicken skin (drumsticks and thighs) with added solution cooked braised','CHICKEN SKN (DRUMSTICKS & THIGHS) W/ ADDED SOLN CKD BRSD',,,'Y',,0,,,,, -05685,0500,'Chicken skin (drumsticks and thighs) with added solution raw','CHICKEN SKN (DRUMSTICKS & THIGHS) W/ ADDED SOLN RAW',,,'Y',,0,,,,, -05686,0500,'Chicken skin (drumsticks and thighs) with added solution cooked roasted','CHICKEN SKN (DRUMSTICKS & THIGHS) W/ ADDED SOLN CKD RSTD',,,'Y',,0,,,,, -05687,0500,'Chicken dark meat drumstick meat and skin with added solution cooked braised','CHICKEN DK MEAT DRUMSTK MEAT & SKN W/ ADDED SOLN CKD BRSD',,,'Y','Bone and Cartilage 30%',30,,,,, -05688,0500,'Chicken dark meat drumstick meat and skin with added solution raw','CHICKEN DK MEAT DRUMSTK MEAT & SKN W/ ADDED SOLN RAW',,,'Y','Bone and cartilage 34% bone and connective tissue 34%',68,,,,, -05689,0500,'Chicken dark meat drumstick meat and skin with added solution cooked roasted','CHICKEN DK MEAT DRUMSTK MEAT & SKN W/ ADDED SOLN CKD RSTD',,,'Y','Bone and Cartilage 40% bone and connective tissue 26%',66,,,,, -05690,0500,'Chicken dark meat thigh meat and skin with added solution cooked braised','CHICKEN DK MEAT THIGH MEAT & SKN W/ ADDED SOLN CKD BRSD',,,'Y','Bone and cartilage 15%',15,,,,, -05691,0500,'Chicken dark meat thigh meat and skin with added solution raw','CHICKEN DK MEAT THIGH MEAT & SKN W/ ADDED SOLN RAW',,,'Y','Bone and cartilage 15% bone and connective tissue 17%',32,,,,, -05692,0500,'Chicken dark meat thigh meat and skin with added solution cooked roasted','CHICKEN DK MEAT THIGH MEAT & SKN W/ ADDED SOLN CKD RSTD',,,'Y','Bone and cartilage 17% bone and connective tissue 16%',33,,,,, -05693,0500,'Chicken broiler rotisserie BBQ back meat only','CHICKEN BROILER ROTISSERIE BBQ BACK MEAT ONLY',,,'Y','Bone and connective tissue 37% skin and separable fat 14%',51,,,,, -05694,0500,'Turkey dark meat from whole meat only with added solution raw','TURKEY DK MEAT FROM WHL MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 34% Skin and separable fat 13%',47,,,,, -05695,0500,'Turkey dark meat meat only with added solution cooked roasted','TURKEY DK MEAT MEAT ONLY W/ ADDED SOLN CKD RSTD',,,'Y','Bone and connective tissue 36% Skin and separable fat 9%',45,,,,, -05696,0500,'Turkey from whole light meat meat only with added solution raw','TURKEY FROM WHL LT MEAT MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 18% Skin and separable fat 13%',31,,,,, -05697,0500,'Turkey from whole light meat meat only with added solution cooked roasted','TURKEY FROM WHL LT MEAT MEAT ONLY W/ ADDED SOLN CKD RSTD',,,'Y','Bone and connective tissue 18% Skin and separable fat 7%',25,,,,, -05698,0500,'Turkey skin from whole (light and dark) with added solution raw','TURKEY SKN FROM WHL (LIGHT & DARK) W/ ADDED SOLN RAW',,,,,0,,,,, -05699,0500,'Turkey skin from whole (light and dark) with added solution roasted','TURKEY SKN FROM WHL (LIGHT & DARK) W/ ADDED SOLN RSTD',,,'Y',,0,,,,, -05700,0500,'Turkey dark meat from whole meat and skin with added solution raw','TURKEY DK MEAT FROM WHL MEAT & SKN W/ ADDED SOLN RAW',,,,'Bone and connective tissue 34%',34,,,,, -05701,0500,'Turkey dark meat from whole meat and skin with added solution cooked roasted','TURKEY DK MEAT FROM WHL MEAT & SKN W/ ADDED SOLN CKD RSTD',,,'Y','Bone and Connective tissue 37%',37,,,,, -05702,0500,'Turkey from whole light meat meat and skin with added solution raw','TURKEY FROM WHL LT MEAT MEAT & SKN W/ ADDED SOLN RAW',,,,'Bone and connective tissue 18%',18,,,,, -05703,0500,'Turkey from whole light meat meat and skin with added solution cooked roasted','TURKEY FROM WHL LT MEAT MEAT & SKN W/ ADDED SOLN CKD RSTD',,,'Y','Bone and connective tissue 18%',18,,,,, -05704,0500,'Turkey whole meat only with added solution raw','TURKEY WHL MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 34% Skin and separable fat 13%',47,,,,, -05705,0500,'Turkey whole meat only with added solution roasted','TURKEY WHL MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 36% Skin and separable fat 9%',45,,,,, -05706,0500,'Turkey whole meat and skin with added solution raw','TURKEY WHL MEAT & SKN W/ ADDED SOLN RAW',,,,'Bone and connective tissue 34%',34,,,,, -05707,0500,'Turkey whole meat and skin with added solution roasted','TURKEY WHL MEAT & SKN W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 36%',36,,,,, -05708,0500,'Turkey retail parts breast meat only with added solution raw','TURKEY RTL PARTS BREAST MEAT ONLY W/ ADDED SOLN RAW',,,'Y','Bone and connective tissue 15% Skin and separable fat 10%',25,,,,, -05709,0500,'Turkey retail parts breast meat only with added solution cooked roasted','TURKEY RTL PARTS BREAST MEAT ONLY W/ ADDED SOLN CKD RSTD',,,'Y','Bone and connective tissue 17% Skin and separable fat 7%',24,,,,, -05710,0500,'Turkey retail parts breast meat only raw','TURKEY RTL PARTS BREAST MEAT ONLY RAW',,,,'Bone and connective tissue 14% Skin and separable fat 11%',25,,,,, -05711,0500,'Turkey retail parts breast meat only cooked roasted','TURKEY RTL PARTS BREAST MEAT ONLY CKD RSTD',,,'Y','Bone and connective tissue 12% Skin and separable fat 8%',20,,,,, -05712,0500,'Turkey retail parts wing meat only raw','TURKEY RTL PARTS WING MEAT ONLY RAW',,,,'Bone and connective tissue 37% Skin and separable fat 18%',55,,,,, -05713,0500,'Turkey retail parts wing meat only cooked roasted','TURKEY RTL PARTS WING MEAT ONLY CKD RSTD',,,'Y','Bone and connective tissue 38% Skin and separable fat 14%',52,,,,, -05714,0500,'Turkey skin from retail parts from dark meat raw','TURKEY SKN FROM RTL PARTS FROM DK MEAT RAW',,,,,0,,,,, -05715,0500,'Turkey skin from retail parts from dark meat cooked roasted','TURKEY SKN FROM RTL PARTS FROM DK MEAT CKD RSTD',,,,,0,,,,, -05716,0500,'Turkey retail parts drumstick meat only raw','TURKEY RTL PARTS DRUMSTK MEAT ONLY RAW',,,,'Bone and connective tissue 33% Skin and separable fat 6%',39,,,,, -05717,0500,'Turkey retail parts thigh meat only raw','TURKEY RTL PARTS THIGH MEAT ONLY RAW',,,,'Bone and connective tissue 19% Skin and separable fat 13%',32,,,,, -05718,0500,'Turkey breast from whole bird meat only with added solution roasted','TURKEY BREAST FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 10% skin and separable fat 6%',16,,,,, -05719,0500,'Turkey back from whole bird meat only with added solution raw','TURKEY BACK FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 47% Skin and separable fat 16%',63,,,,, -05720,0500,'Turkey back from whole bird meat only with added solution roasted','TURKEY BACK FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 49% skin and separable fat 12%',61,,,,, -05721,0500,'Turkey breast from whole bird meat only with added solution raw','TURKEY BREAST FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 10% Skin and separable fat 11%',22,,6.25,,, -05722,0500,'Turkey retail parts thigh meat only cooked roasted','TURKEY RTL PARTS THIGH MEAT ONLY CKD RSTD',,,'Y','Bone and connective tissue 14% Skin and separable fat 9%',23,,,,, -05723,0500,'Turkey retail parts drumstick meat only cooked roasted','TURKEY RTL PARTS DRUMSTK MEAT ONLY CKD RSTD',,,'Y','Bone and connective tissue 29% Skin and separable fat 7%',36,,,,, -05724,0500,'Turkey drumstick from whole bird meat only with added solution raw','TURKEY DRUMSTK FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 30% Skin and separable fat 8%',38,,,,, -05725,0500,'Turkey drumstick from whole bird meat only with added solution roasted','TURKEY DRUMSTK FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 34% Skin and separable fat 6%',40,,,,, -05726,0500,'Turkey thigh from whole bird meat only with added solution raw','TURKEY THIGH FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 16% Skin and separable fat 14%',30,,,,, -05727,0500,'Turkey retail parts breast meat and skin with added solution raw','TURKEY RTL PARTS BREAST MEAT & SKN W/ ADDED SOLN RAW',,,'Y','Bone and connective tissue 15%',15,,,,, -05728,0500,'Turkey thigh from whole bird meat only with added solution roasted','TURKEY THIGH FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 16% skin and separable fat 8%',24,,,,, -05729,0500,'Turkey wing from whole bird meat only with added solution raw','TURKEY WING FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RAW',,,,'Bone and connective tissue 36% skin and separable fat 19%',55,,,,, -05730,0500,'Turkey wing from whole bird meat only with added solution roasted','TURKEY WING FROM WHL BIRD MEAT ONLY W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 47% skin and separable fat 12%',59,,,,, -05732,0500,'Turkey retail parts breast meat and skin raw','TURKEY RTL PARTS BREAST MEAT & SKN RAW',,,'Y','Bone and connective tissue 14%',14,,,,, -05733,0500,'Turkey retail parts breast meat and skin cooked roasted','TURKEY RTL PARTS BREAST MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 12%',12,,,,, -05734,0500,'Turkey retail parts wing meat and skin raw','TURKEY RTL PARTS WING MEAT & SKN RAW',,,,'Bone and connective tissue 38%',38,,,,, -05735,0500,'Turkey retail parts wing meat and skin cooked roasted','TURKEY RTL PARTS WING MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 38%',38,,,,, -05736,0500,'Turkey retail parts drumstick meat and skin raw','TURKEY RTL PARTS DRUMSTK MEAT & SKN RAW',,,,'Bone and connective tissue 33%',33,,,,, -05737,0500,'Turkey retail parts drumstick meat and skin cooked roasted','TURKEY RTL PARTS DRUMSTK MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 29%',29,,,,, -05738,0500,'Turkey drumstick from whole bird meat only raw','TURKEY DRUMSTK FROM WHL BIRD MEAT ONLY RAW',,,,'Bone and connective tissue 38% Skin and separable fat 6%',44,,,,, -05739,0500,'Turkey drumstick from whole bird meat only roasted','TURKEY DRUMSTK FROM WHL BIRD MEAT ONLY RSTD',,,'Y','Bone and connective tissue 37% Skin and separable fat 5%',42,,,,, -05740,0500,'Turkey thigh from whole bird meat only raw','TURKEY THIGH FROM WHL BIRD MEAT ONLY RAW',,,,'Bone and connective tissue 20% Skin and separable fat 10%',30,,,,, -05741,0500,'Turkey thigh from whole bird meat only roasted','TURKEY THIGH FROM WHL BIRD MEAT ONLY RSTD',,,'Y','Bone and connective tissue 36% Skin and separable fat 7%',43,,,,, -05742,0500,'Turkey retail parts thigh meat and skin raw','TURKEY RTL PARTS THIGH MEAT & SKN RAW',,,,'Bone and connective tissue 19%',19,,,,, -05743,0500,'Turkey retail parts thigh meat and skin cooked roasted','TURKEY RTL PARTS THIGH MEAT & SKN CKD RSTD',,,'Y','Bone and connective tissue 14%',14,,,,, -05744,0500,'Turkey back from whole bird meat and skin with added solution raw','TURKEY BACK FROM WHL BIRD MEAT & SKN W/ ADDED SOLN RAW',,,,'Bone and connective tissue 47%',47,,,,, -05745,0500,'Turkey back from whole bird meat and skin with added solution roasted','TURKEY BACK FROM WHL BIRD MEAT & SKN W/ ADDED SOLN RSTD',,,'Y','Bone and connective tissue 49%',49,,,,, -05746,0500,'Chicken broiler or fryers breast skinless boneless meat only cooked braised','CHICkN BROILR OR FRYRS BRST SKNLSS BNLESS MEAT ONLY CKD BRSD',,,,,0,,,,, -05747,0500,'Chicken broiler or fryers breast skinless boneless meat only cooked grilled','CHCKN BROLR OR FRYRS BRST SKNLSS BNLESS MEAT ONLY CKD GRILLD',,,,,0,,,,, -05748,0500,'Chicken broiler or fryers breast skinless boneless meat only with added solution cooked braised','CKN BRLER OR FRYERS BRST SKNLS BNLS MT ONLY W ADDED SLN BRSD',,,,,0,,,,, -05749,0500,'Chicken broiler or fryers breast skinless boneless meat only with added solution cooked grilled','CKN BRLER/FRYERS BRST SKNLS BNLS MT ONLY W ADDED SLN GRILLED',,,,,0,,,,, -06001,0600,'Soup cream of asparagus canned condensed','SOUP CRM OF ASPARAGUS CND COND',,,'Y',,0,,6.25,3.90,8.80,3.90 -06002,0600,'Soup black bean canned condensed','SOUP BLACK BEAN CND COND',,,,,0,,6.25,3.70,8.90,4.00 -06004,0600,'Soup bean with pork canned condensed','SOUP BEAN W/ PORK CND COND',,,'Y',,0,,6.25,3.70,8.90,4.00 -06006,0600,'Soup bean with frankfurters canned condensed','SOUP BEAN W/ FRANKFURTERS CND COND',,,,,0,,6.25,3.70,8.90,4.00 -06007,0600,'Soup bean with ham canned chunky ready-to-serve','SOUP BEAN W/ HAM CND CHUNKY RTS',,,,,0,,6.25,3.70,8.90,4.00 -06008,0600,'Soup beef broth or bouillon canned ready-to-serve','SOUP BF BROTH OR BOUILLON CND RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06009,0600,'Soup beef noodle canned condensed','SOUP BF NOODLE CND COND',,,'Y',,0,,6.25,4.10,8.90,4.10 -06010,0600,'Soup cream of celery canned condensed','SOUP CRM OF CELERY CND COND',,,'Y',,0,,6.25,3.90,8.80,3.90 -06011,0600,'Soup cheese canned condensed','SOUP CHS CND COND',,,'Y',,0,,6.25,4.10,8.80,3.90 -06013,0600,'Soup chicken broth canned condensed','SOUP CHICK BROTH CND COND',,,'Y',,0,,6.25,4.20,9.00,4.00 -06015,0600,'Soup chicken canned chunky ready-to-serve','SOUP CHICK CND CHUNKY RTS',,,'Y',,0,,6.25,4.10,8.80,3.90 -06016,0600,'Soup cream of chicken canned condensed','SOUP CRM OF CHICK CND COND',,,'Y',,0,,6.25,4.00,9.00,4.00 -06017,0600,'Soup chicken gumbo canned condensed','SOUP CHICK GUMBO CND COND',,,,,0,,6.25,3.80,9.00,4.00 -06018,0600,'Soup chunky chicken noodle canned ready-to-serve','SOUP CHUNKY CHICK NOODLE CND RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06019,0600,'Soup chicken noodle canned condensed','SOUP CHICK NOODLE CND COND',,,'Y',,0,,6.25,4.00,9.00,4.00 -06022,0600,'Soup chicken rice canned chunky ready-to-serve','SOUP CHICK RICE CND CHUNKY RTS',,,'Y',,0,,6.25,3.80,9.00,4.00 -06023,0600,'Soup chicken with rice canned condensed','SOUP CHICK W/ RICE CND COND',,,'Y',,0,,6.25,4.00,9.00,4.00 -06024,0600,'Soup chicken and vegetable canned ready-to-serve','SOUP CHICK & VEG CND RTS',,,'Y',,0,,6.25,4.10,8.80,3.90 -06025,0600,'Soup chicken vegetable canned condensed','SOUP CHICK VEG CND COND',,,'Y',,0,,6.25,4.10,8.80,3.90 -06026,0600,'Soup chili beef canned condensed','SOUP CHILI BF CND COND',,,,,0,,6.25,3.70,8.90,4.00 -06027,0600,'Soup clam chowder manhattan style canned chunky ready-to-serve','SOUP CLAM CHOWDER MANHATTAN STYLE CND CHUNKY RTS',,,'Y',,0,,6.25,3.80,9.00,4.00 -06028,0600,'Soup clam chowder manhattan canned condensed','SOUP CLAM CHOWDER MANHATTAN CND COND',,,,,0,,6.25,3.80,9.00,4.00 -06030,0600,'Soup clam chowder new england canned condensed','SOUP CLAM CHOWDER NEW ENGLAND CND COND',,,'Y',,0,,6.25,4.30,8.90,3.90 -06032,0600,'Soup beef broth bouillon and consomme canned condensed','SOUP BF BROTH BOUILLON & CONSOMME CND COND',,,,,0,,6.25,4.00,9.00,4.00 -06037,0600,'Soup lentil with ham canned ready-to-serve','SOUP LENTIL W/HAM CND RTS',,,,,0,,6.25,3.70,8.90,4.00 -06039,0600,'Soup minestrone canned chunky ready-to-serve','SOUP MINESTRONE CND CHUNKY RTS',,,'Y',,0,,6.25,3.70,8.90,4.00 -06040,0600,'Soup minestrone canned condensed','SOUP MINESTRONE CND COND',,,'Y',,0,,6.25,3.70,8.90,4.00 -06042,0600,'Soup mushroom barley canned condensed','SOUP MUSHROOM BARLEY CND COND',,,,,0,,6.25,3.80,9.00,4.00 -06043,0600,'Soup cream of mushroom canned condensed','SOUP CRM OF MUSHROOM CND COND',,,'Y',,0,,6.25,3.90,8.80,4.00 -06044,0600,'Soup mushroom with beef stock canned condensed','SOUP MUSHROOM W/ BF STOCK CND COND',,,'Y',,0,,6.25,3.80,9.00,4.00 -06045,0600,'Soup onion canned condensed','SOUP ONION CND COND',,,'Y',,0,,6.25,2.50,8.50,4.00 -06046,0600,'Soup cream of onion canned condensed','SOUP CRM OF ONION CND COND',,,'Y',,0,,6.25,3.90,8.80,3.90 -06048,0600,'Soup oyster stew canned condensed','SOUP OYSTER STEW CND COND',,,,,0,,6.25,4.30,8.90,3.90 -06049,0600,'Soup pea green canned condensed','SOUP PEA GRN CND COND',,,'Y',,0,,6.25,3.70,8.90,4.00 -06050,0600,'Soup pea split with ham canned chunky ready-to-serve','SOUP PEA SPLIT W/HAM CND CHUNKY RTS',,,'Y',,0,,6.25,3.70,8.90,4.00 -06051,0600,'Soup pea split with ham canned condensed','SOUP PEA SPLIT W/ HAM CND COND',,,,,0,,6.25,3.70,8.90,4.00 -06053,0600,'Soup cream of potato canned condensed','SOUP CRM OF POTATO CND COND',,,'Y',,0,,6.25,3.90,8.80,4.00 -06056,0600,'Soup cream of shrimp canned condensed','SOUP CRM OF SHRIMP CND COND',,,,,0,,6.25,4.30,8.90,3.90 -06061,0600,'Soup tomato beef with noodle canned condensed','SOUP TOMATO BF W/ NOODLE CND COND',,,,,0,,6.25,3.80,9.00,4.00 -06062,0600,'CAMPBELLS Chicken Noodle Soup condensed','CAMPBELLS CHICK NOODLE SOUP COND',,'Campbell Soup Co.',,,0,,,,, -06063,0600,'Soup tomato rice canned condensed','SOUP TOMATO RICE CND COND',,,'Y',,0,,6.25,3.70,8.90,4.00 -06064,0600,'Soup turkey chunky canned ready-to-serve','SOUP TURKEY CHUNKY CND RTS',,,,,0,,6.25,4.10,8.80,3.90 -06067,0600,'Soup chunky vegetable canned ready-to-serve','SOUP CHUNKY VEG CND RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06068,0600,'Soup vegetarian vegetable canned condensed','SOUP VEGETARIAN VEG CND COND',,,'Y',,0,,6.25,2.50,8.50,4.00 -06070,0600,'Soup chunky beef canned ready-to-serve','SOUP CHUNKY BF CND RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06071,0600,'Soup vegetable beef canned condensed','SOUP VEG BF CND COND',,,'Y',,0,,6.25,3.80,9.00,4.00 -06072,0600,'Soup vegetable with beef broth canned condensed','SOUP VEG W/ BF BROTH CND COND',,,'Y',,0,,6.25,3.80,9.00,4.00 -06075,0600,'Soup beef broth or bouillon powder dry','SOUP BF BROTH OR BOUILLON PDR DRY',,,'Y',,0,,6.25,4.00,9.00,4.00 -06076,0600,'Soup beef broth cubed dry','SOUP BEEF BROTH CUBED DRY',,,,,0,,6.25,4.00,9.00,4.00 -06080,0600,'Soup chicken broth or bouillon dry','SOUP CHICK BROTH OR BOUILLON DRY',,,'Y',,0,,6.25,4.20,9.00,4.00 -06081,0600,'Soup chicken broth cubes dry','SOUP CHICK BROTH CUBES DRY',,,,,0,,6.25,4.20,9.00,4.00 -06094,0600,'Soup onion dry mix','SOUP ONION DRY MIX',,,'Y',,0,,6.25,4.00,9.00,4.00 -06101,0600,'Soup cream of vegetable dry powder','SOUP CRM OF VEG DRY PDR',,,'Y',,0,,6.25,3.90,8.80,3.90 -06112,0600,'Sauce teriyaki ready-to-serve','SAUCE TERIYAKI RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06114,0600,'Gravy au jus canned','GRAVY AU JUS CANNED',,,,,0,,6.25,3.50,9.00,3.90 -06115,0600,'Gravy au jus dry','GRAVY AU JUS DRY',,,,,0,,,4.00,9.00,4.00 -06116,0600,'Gravy beef canned ready-to-serve','GRAVY BF CND RTS',,,'Y',,0,,6.25,3.50,9.00,3.90 -06118,0600,'Gravy brown dry','GRAVY BROWN DRY',,,,,0,,,4.00,9.00,4.00 -06119,0600,'Gravy chicken canned or bottled ready-to-serve','GRVY CHCKN CNND BTTLD RTS',,,'Y',,0,,,,, -06120,0600,'Gravy chicken dry','GRAVY CHICKEN DRY',,,,,0,,,4.00,9.00,4.00 -06121,0600,'Gravy mushroom canned','GRAVY MUSHROOM CANNED',,,,,0,,6.25,3.40,8.90,4.00 -06122,0600,'Gravy mushroom dry powder','GRAVY MUSHROOM DRY PDR',,,'Y',,0,,6.25,3.40,8.90,4.00 -06123,0600,'Gravy onion dry mix','GRAVY ONION DRY MIX',,,,,0,,6.25,3.50,9.00,3.90 -06124,0600,'Gravy pork dry powder','GRAVY PORK DRY PDR',,,'Y',,0,,,4.00,9.00,4.00 -06125,0600,'Gravy turkey canned ready-to-serve','GRAVY TURKEY CND RTS',,,'Y',,0,,6.25,3.40,8.90,4.00 -06126,0600,'Gravy turkey dry','GRAVY TURKEY DRY',,,,,0,,,4.00,9.00,4.00 -06127,0600,'Gravy unspecified type dry','GRAVY UNSPEC TYPE DRY',,,,,0,,6.25,3.40,8.90,4.00 -06128,0600,'Soup chicken noodle dry mix','SOUP CHICK NOODLE DRY MIX',,,'Y',,0,,6.25,4.10,8.90,4.10 -06142,0600,'Sauce sofrito prepared from recipe','SAUCE SOFRITO PREP FROM RECIPE',,,,,0,,,,, -06147,0600,'Soup beef mushroom canned condensed','SOUP BF MUSHROOM CND COND',,,,,0,,6.25,3.80,9.00,4.00 -06149,0600,'Soup chicken mushroom canned condensed','SOUP CHICK MUSHROOM CND COND',,,'Y',,0,,6.25,4.00,9.00,4.20 -06150,0600,'Sauce barbecue','SAUCE BARBECUE',,,'Y',,0,,6.25,,, -06151,0600,'Sauce plum ready-to-serve','SAUCE PLUM READY-TO-SERVE',,,,,0,,6.25,4.00,9.00,4.00 -06152,0600,'Sauce pizza canned ready-to-serve','SAUCE PIZZA CND RTS',,,,,0,,,4.00,9.00,4.00 -06158,0600,'Soup tomato bisque canned condensed','SOUP TOMATO BISQUE CND COND',,,,,0,,6.25,3.90,8.80,3.90 -06159,0600,'Soup tomato canned condensed','SOUP TOMATO CND COND',,,'Y',,0,,6.25,2.80,8.70,3.80 -06164,0600,'Sauce salsa ready-to-serve','SAUCE SALSA RTS',,,'Y',,0,,6.25,2.44,8.87,3.57 -06166,0600,'Sauce homemade white medium','SAUCE HOMEMADE WHITE MED',,,'Y',,0,,6.25,4.20,8.70,3.90 -06167,0600,'Sauce homemade white thick','SAUCE HOMEMADE WHITE THICK',,,'Y',,0,,6.25,4.20,8.70,3.90 -06168,0600,'Sauce ready-to-serve pepper or hot','SAUCE RTS PEPPER OR HOT',,,,,0,,6.25,2.44,8.37,3.57 -06169,0600,'Sauce ready-to-serve pepper TABASCO','SAUCE RTS PEPPER TABASCO',,,'Y',,0,,6.25,2.44,8.37,3.57 -06170,0600,'Soup stock beef home-prepared','SOUP STOCK BEEF HOME-PREPARED',,,'Y',,0,,,,, -06172,0600,'Soup stock chicken home-prepared','SOUP STOCK CHICK HOME-PREPARED',,,'Y',,0,,,,, -06174,0600,'Soup stock fish home-prepared','SOUP STOCK FISH HOME-PREPARED',,,'Y',,0,,6.25,4.00,9.00,4.00 -06175,0600,'Sauce hoisin ready-to-serve','SAUCE HOISIN RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06176,0600,'Sauce oyster ready-to-serve','SAUCE OYSTER RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06177,0600,'Soup minestrone canned reduced sodium ready-to-serve','SOUP MINESTRONE CND RED NA RTS',,,'Y',,0,,,,, -06179,0600,'Sauce fish ready-to-serve','SAUCE FISH READY-TO-SERVE',,,'Y',,0,,6.25,4.00,9.00,4.00 -06180,0600,'Soup shark fin restaurant-prepared','SOUP SHARK FIN REST-PREP',,,,,0,,6.25,4.00,9.00,4.00 -06182,0600,'Soup cream of mushroom canned condensed reduced sodium','SOUP CRM OF MUSHROOM CND COND RED NA',,,'Y',,0,,,,, -06183,0600,'Soup chicken broth less/reduced sodium ready to serve','SOUP CHICK BROTH LESS/REDUCED NA READY TO SERVE',,,'Y',,0,,,,, -06188,0600,'Soup beef broth less/reduced sodium ready to serve','SOUP BF BROTH LESS/REDUCED NA READY TO SERVE',,,'Y',,0,,,,, -06189,0600,'Sauce teriyaki ready-to-serve reduced sodium','SAUCE TERIYAKI RTS RED NA',,,'Y',,0,,6.25,4.00,9.00,4.00 -06190,0600,'Soup bean & ham canned reduced sodium prepared with water or ready-to-serve','SOUP BEAN&HAM CND RED NA PREP W/H2O OR RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06192,0600,'Split pea soup canned reduced sodium prepared with water or ready-to serve','SPLIT PEA SOUP CND RED NA PREP W/ H2O OR READY-TO SERVE',,,'Y',,0,,,,, -06193,0600,'Split pea with ham soup canned reduced sodium prepared with water or ready-to-serve','SPLIT PEA W/ HAM SOUP CND RED NA PREP W/ H2O OR RTS',,,'Y',,0,,,,, -06194,0600,'Soup chicken broth ready-to-serve','SOUP CHICK BROTH RTS',,,'Y',,0,,,4.00,9.00,4.00 -06201,0600,'Soup cream of asparagus canned prepared with equal volume milk','SOUP CRM OF ASPARAGUS CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.90,8.80,3.90 -06208,0600,'Soup chicken vegetable with potato and cheese chunky ready-to-serve','SOUP CHICK VEG W/POTATO&CHS CHUNKY RTS',,,'Y',,0,,,,, -06210,0600,'Soup cream of celery canned prepared with equal volume milk','SOUP CRM OF CELERY CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.90,8.80,3.90 -06211,0600,'Soup cheese canned prepared with equal volume milk','SOUP CHS CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,4.10,8.80,3.90 -06216,0600,'Soup cream of chicken canned prepared with equal volume milk','SOUP CRM OF CHICK CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,4.30,8.90,3.90 -06217,0600,'Soup vegetable canned low sodium condensed','SOUP VEG CND LO NA COND',,,'Y',,0,,,,, -06230,0600,'Soup clam chowder new england canned prepared with equal volume low fat (2%) milk','SOUP CLAM CHOWDER NEW ENG CND PREP W/ EQ VLM LOFAT (2%) MILK',,,'Y',,0,,,,, -06243,0600,'Soup cream of mushroom canned prepared with equal volume low fat (2%) milk','SOUP CRM OF MUSHROOM CND PREP W/ EQ VOLUME LOFAT (2%) MILK',,,'Y',,0,,,,, -06246,0600,'Soup cream of onion canned prepared with equal volume milk','SOUP CRM OF ONION CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.90,8.80,3.90 -06248,0600,'Soup oyster stew canned prepared with equal volume milk','SOUP OYSTER STEW CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,4.30,8.90,3.90 -06249,0600,'Soup pea green canned prepared with equal volume milk','SOUP PEA GRN CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.70,8.90,4.00 -06253,0600,'Soup cream of potato canned prepared with equal volume milk','SOUP CRM OF POTATO CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.90,8.80,4.00 -06256,0600,'Soup cream of shrimp canned prepared with equal volume low fat (2%) milk','SOUP CRM OF SHRIMP CND PREP W/ EQ VOLUME LOFAT (2%) MILK',,,'Y',,0,,6.25,4.30,8.90,3.90 -06264,0600,'Sauce white thin prepared-from-recipe with butter','SAUCE WHITE THIN PREPARED-FROM-RECIPE W/ BUTTER','NFSMI Recipe No. G-08',,,,0,,,,, -06285,0600,'Sauce sweet and sour prepared-from-recipe','SAUCE SWT & SOUR PREPARED-FROM-RECIPE','NFSMI Recipe No. G-05',,,,0,,,,, -06307,0600,'Sauce barbecue KRAFT original','SAUCE BARBECUE KRAFT ORIGINAL',,'Kraft Foods Inc.',,,0,,,,, -06314,0600,'Soup HEALTHY CHOICE Chicken Noodle Soup canned','SOUP HEALTHY CHOIC CHICK NOODLE SOUP CND',,'ConAgra Inc.',,,0,,,,, -06315,0600,'Soup HEALTHY CHOICE Chicken and Rice Soup canned','SOUP HEALTHY CHOIC CHICK & RICE SOUP CND',,'ConAgra Inc.',,,0,,,,, -06316,0600,'Soup HEALTHY CHOICE Garden Vegetable Soup canned','SOUP HEALTHY CHOIC GARDEN VEG SOUP CND',,'ConAgra Inc.',,,0,,,,, -06338,0600,'CAMPBELLS Cream of Mushroom Soup condensed','CAMPBELLS CRM OF MUSHROOM SOUP COND',,'Campbell Soup Co.',,,0,,,,, -06358,0600,'Soup tomato bisque canned prepared with equal volume milk','SOUP TOMATO BISQUE CND PREP W/ EQ VOLUME MILK',,,,,0,,6.25,3.90,8.80,3.90 -06359,0600,'Soup tomato canned prepared with equal volume low fat (2%) milk','SOUP TOMATO CND PREP W/ EQ VOLUME LOFAT (2%) MILK',,,'Y',,0,,6.25,2.80,8.70,3.80 -06377,0600,'CAMPBELLS Tomato Soup condensed','CAMPBELLS TOMATO SOUP COND',,'Campbell Soup Co.',,,0,,,,, -06395,0600,'CAMPBELLS CHUNKY Classic Chicken Noodle Soup','CAMPBELLS CHUNKY CLASSIC CHICK NOODLE SOUP',,'Campbell Soup Co.',,,0,,,,, -06401,0600,'Soup cream of asparagus canned prepared with equal volume water','SOUP CRM OF ASPARAGUS CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.90,8.80,3.90 -06402,0600,'Soup black bean canned prepared with equal volume water','SOUP BLACK BEAN CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,,,, -06404,0600,'Soup bean with pork canned prepared with equal volume water','SOUP BEAN W/ PORK CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.70,8.90,4.00 -06406,0600,'Soup bean with frankfurters canned prepared with equal volume water','SOUP BEAN W/ FRANKFURTERS CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.70,8.90,4.00 -06409,0600,'Soup beef noodle canned prepared with equal volume water','SOUP BF NOODLE CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,4.10,8.90,4.10 -06410,0600,'Soup cream of celery canned prepared with equal volume water','SOUP CRM OF CELERY CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.90,8.80,3.90 -06411,0600,'Soup cheese canned prepared with equal volume water','SOUP CHS CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.10,8.80,3.90 -06413,0600,'Soup chicken broth canned prepared with equal volume water','SOUP CHICK BROTH CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,4.20,9.00,4.00 -06415,0600,'CAMPBELLS CHUNKY Hearty Beef Barley Soup','CAMPBELLS CHUNKY HEARTY BF BARLEY SOUP',,'Campbell Soup Co.',,,0,,,,, -06416,0600,'Soup cream of chicken canned prepared with equal volume water','SOUP CRM OF CHICK CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.30,8.90,3.90 -06417,0600,'Soup chicken gumbo canned prepared with equal volume water','SOUP CHICK GUMBO CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.80,9.00,4.00 -06419,0600,'Soup chicken noodle canned prepared with equal volume water','SOUP CHICK NOODLE CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,4.10,8.90,4.10 -06423,0600,'Soup chicken with rice canned prepared with equal volume water','SOUP CHICK W/ RICE CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,4.00,9.00,4.00 -06426,0600,'Soup chili beef canned prepared with equal volume water','SOUP CHILI BF CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.70,8.90,4.00 -06428,0600,'Soup clam chowder manhattan canned prepared with equal volume water','SOUP CLAM CHOWDER MANHATTAN CND PREP W/EQ VOLUME H2O',,,'Y',,0,,6.25,3.80,9.00,4.00 -06430,0600,'Soup clam chowder new england canned prepared with equal volume water','SOUP CLAM CHOWDER NEW ENGLAND CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,,,, -06431,0600,'CAMPBELLS CHUNKY New England Clam Chowder','CAMPBELLS CHUNKY NEW ENGLAND CLAM CHOWDER',,'Campbell Soup Co.',,,0,,,,, -06432,0600,'Soup beef broth bouillon consomme prepared with equal volume water','SOUP BF BROTH BOUILLON CONSOMME PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.00,9.00,4.00 -06434,0600,'CAMPBELLS CHUNKY Old Fashioned Vegetable Beef Soup','CAMPBELLS CHUNKY OLD FASHIONED VEG BF SOUP',,'Campbell Soup Co.',,,0,,,,, -06440,0600,'Soup minestrone canned prepared with equal volume water','SOUP MINESTRONE CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.70,8.90,4.00 -06442,0600,'Soup mushroom barley canned prepared with equal volume water','SOUP MUSHROOM BARLEY CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.60,8.90,4.00 -06443,0600,'Soup cream of mushroom canned prepared with equal volume water','SOUP CRM OF MUSHROOM CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.90,8.80,4.00 -06444,0600,'Soup mushroom with beef stock canned prepared with equal volume water','SOUP MUSHROOM W/ BF STOCK CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.00,9.00,4.00 -06446,0600,'Soup cream of onion canned prepared with equal volume water','SOUP CRM OF ONION CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.90,8.80,3.90 -06448,0600,'Soup oyster stew canned prepared with equal volume water','SOUP OYSTER STEW CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.30,8.90,3.90 -06449,0600,'Soup pea green canned prepared with equal volume water','SOUP PEA GRN CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.70,8.90,4.00 -06451,0600,'Soup pea split with ham canned prepared with equal volume water','SOUP PEA SPLIT W/ HAM CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.70,8.90,4.00 -06453,0600,'Soup cream of potato canned prepared with equal volume water','SOUP CRM OF POTATO CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.90,8.80,4.00 -06456,0600,'Soup cream of shrimp canned prepared with equal volume water','SOUP CRM OF SHRIMP CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,4.30,8.90,3.90 -06461,0600,'Soup tomato beef with noodle canned prepared with equal volume water','SOUP TOMATO BF W/ NOODLE CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.80,9.00,4.00 -06463,0600,'Soup tomato rice canned prepared with equal volume water','SOUP TOMATO RICE CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.70,8.90,4.00 -06465,0600,'Soup turkey noodle canned prepared with equal volume water','SOUP TURKEY NOODLE CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.10,8.90,4.10 -06466,0600,'Soup turkey vegetable canned prepared with equal volume water','SOUP TURKEY VEG CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.80,9.00,4.00 -06468,0600,'Soup vegetarian vegetable canned prepared with equal volume water','SOUP VEGETARIAN VEG CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,2.50,8.50,4.00 -06471,0600,'Soup vegetable beef canned prepared with equal volume water','SOUP VEG BF CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.80,9.00,4.00 -06472,0600,'Soup vegetable with beef broth canned prepared with equal volume water','SOUP VEG W/ BF BROTH CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,6.25,3.80,9.00,4.00 -06475,0600,'Soup beef broth or bouillon powder prepared with water','SOUP BF BROTH OR BOUILLON PDR PREP W/H2O',,,'Y',,0,,6.25,4.00,9.00,4.00 -06476,0600,'Soup beef broth cubed prepared with water','SOUP BF BROTH CUBED PREP W/H2O',,,,,0,,6.25,4.00,8.90,4.00 -06480,0600,'Soup chicken broth or bouillon dry prepared with water','SOUP CHICK BROTH OR BOUILLON DRY PREP W/ H2O',,,'Y',,0,,6.25,4.20,9.00,4.00 -06481,0600,'Soup chicken broth cubes dry prepared with water','SOUP CHICK BROTH CUBES DRY PREP W/ H2O',,,,,0,,6.25,4.20,9.00,4.00 -06483,0600,'Soup cream of chicken dry mix prepared with water','SOUP CRM OF CHICK DRY MIX PREP W/ H2O',,,'Y',,0,,6.25,4.30,8.90,3.90 -06494,0600,'Soup onion dry mix prepared with water','SOUP ONION DRY MIX PREP W/ H2O',,,'Y',,0,,6.25,2.50,8.50,4.00 -06498,0600,'Soup tomato dry mix prepared with water','SOUP TOMATO DRY MIX PREP W/ H2O',,,'Y',,0,,6.25,2.80,8.70,3.80 -06528,0600,'Soup chicken noodle dry mix prepared with water','SOUP CHICK NOODLE DRY MIX PREP W/ H2O',,,'Y',,0,,6.25,4.10,8.90,4.10 -06547,0600,'Soup beef mushroom canned prepared with equal volume water','SOUP BF MUSHROOM CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.80,9.00,4.00 -06549,0600,'Soup chicken mushroom canned prepared with equal volume water','SOUP CHICK MUSHROOM CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,4.00,9.00,4.20 -06558,0600,'Soup tomato bisque canned prepared with equal volume water','SOUP TOMATO BISQUE CND PREP W/ EQ VOLUME H2O',,,,,0,,6.25,3.90,8.80,3.90 -06559,0600,'Soup tomato canned prepared with equal volume water commercial','SOUP TOMATO CND PREP W/EQ VOLUME H2O COMM',,,'Y',,0,,6.25,2.80,8.70,3.80 -06583,0600,'Soup ramen noodle any flavor dry','SOUP RAMEN NOODLE ANY FLAVOR DRY',,,'Y',,0,,,4.00,9.00,4.00 -06584,0600,'Soup broccoli cheese canned condensed commercial','SOUP BROCCOLI CHS CND COND COMM',,,'Y',,0,,,,, -06611,0600,'Soup SWANSON beef broth lower sodium','SOUP SWANSON BF BROTH LOWER NA',,'Campbell Soup Co.',,,0,,,,, -06615,0600,'Soup SWANSON vegetable broth','SOUP SWANSON VEG BROTH',,'Campbell Soup Co.',,,0,,,,, -06618,0600,'Sauce peanut made from coconut water sugar peanuts','SAUCE PNUT MADE FROM COCNT H2O SUGAR PNUTS',,,'Y',,0,,,4.00,9.00,4.00 -06619,0600,'SMART SOUP Santa Fe Corn Chowder','SMART SOUP SANTA FE CORN CHOWDER',,'Smart Soup',,,0,,6.25,,, -06620,0600,'SMART SOUP French Lentil','SMART SOUP FRENCH LENTIL',,'Smart Soup',,,0,,6.25,,, -06621,0600,'SMART SOUP Greek Minestrone','SMART SOUP GREEK MINESTRONE',,'Smart Soup',,,0,,6.25,,, -06622,0600,'SMART SOUP Indian Bean Masala','SMART SOUP INDIAN BEAN MASALA',,'Smart Soup',,,0,,6.25,,, -06623,0600,'SMART SOUP Moroccan Chick Pea','SMART SOUP MOROCCAN CHICK PEA',,'Smart Soup',,,0,,6.25,,, -06624,0600,'SMART SOUP Thai Coconut Curry','SMART SOUP THAI COCNT CURRY',,'Smart Soup',,,0,,6.25,,, -06625,0600,'SMART SOUP Vietnamese Carrot Lemongrass','SMART SOUP VIETNAMESE CARROT LEMONGRASS',,'Smart Soup',,,0,,6.25,,, -06626,0600,'Sauce pesto ready-to-serve refrigerated','SAUCE PESTO RTS REFR',,,,,0,,,,, -06627,0600,'Sauce pesto ready-to-serve shelf stable','SAUCE PESTO RTS SHELF STABLE',,,,,0,,,,, -06628,0600,'Sauce pesto BUITONI pesto with basil ready-to-serve refrigerated','SAUCE PESTO BUITONI PESTO W/ BASIL RTS REFR',,'Nestle USA Inc.',,,0,,,,, -06629,0600,'Sauce pesto CLASSICO basil pesto ready-to-serve','SAUCE PESTO CLASSICO BASIL PESTO RTS',,'Classico',,,0,,,,, -06630,0600,'Sauce pesto MEZZETTA NAPA VALLEY BISTRO basil pesto ready-to-serve','SAUCE PESTO MEZZETTA NAPA VALLEY BISTRO BASIL PESTO RTS',,'Mezzetta',,,0,,,,, -06631,0600,'Sauce hot chile sriracha','SAUCE HOT CHILE SRIRACHA',,,,,0,,,,, -06632,0600,'Sauce hot chile sriracha CHA! BY TEXAS PETE','SAUCE HOT CHILE SRIRACHA CHA! BY TEXAS PETE',,'TW Garner Food Company',,,0,,,,, -06633,0600,'Sauce hot chile sriracha TUONG OT SRIRACHA','SAUCE HOT CHILE SRIRACHA TUONG OT SRIRACHA',,'Huy Fong Foods Inc.',,,0,,,,, -06700,0600,'Soup vegetable broth ready to serve','SOUP VEG BROTH READY TO SERVE',,,'Y',,0,,,,, -06720,0600,'Sauce cheese sauce mix dry','SAUCE CHS SAU MIX DRY',,,,,0,,,,, -06725,0600,'Soup chicken corn chowder chunky ready-to-serve single brand','SOUP CHICK CORN CHOWDER CHUNKY RTS SINGLE BRAND',,,,,0,,,,, -06731,0600,'Soup bean with bacon condensed single brand','SOUP BEAN W/BACON COND SINGLE BRAND',,,,,0,,,,, -06742,0600,'Soup vegetable beef microwavable ready-to-serve single brand','SOUP VEG BF MICROWAVABLE RTS SINGLE BRAND',,,,,0,,,,, -06749,0600,'Soup beef and vegetables canned ready-to-serve','SOUP BF & VEG CND RTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -06930,0600,'Sauce cheese ready-to-serve','SAUCE CHS RTS',,,,,0,,,,, -06931,0600,'Sauce pasta spaghetti/marinara ready-to-serve','SAUCE PASTA SPAGHETTI/MARINARA RTS',,,'Y',,0,,,,, -06955,0600,'Soup cream of chicken canned condensed reduced sodium','SOUP CRM OF CHICK CND COND RED NA',,,'Y',,0,,,,, -06956,0600,'Soup tomato canned condensed reduced sodium','SOUP TOMATO CND COND RED NA',,,'Y',,0,,,,, -06957,0600,'Gravy brown instant dry','GRAVY BROWN INST DRY',,,'Y',,0,,,,, -06958,0600,'Gravy instant beef dry','GRAVY INST BF DRY',,,'Y',,0,,,,, -06959,0600,'Gravy instant turkey dry','GRAVY INST TURKEY DRY',,,'Y',,0,,,,, -06960,0600,'Sauce alfredo mix dry','SAUCE ALFREDO MIX DRY',,,,,0,,,,, -06961,0600,'Sauce peppers hot chili mature red canned','SAUCE PEPPERS HOT CHILI MATURE RED CND',,,'Y',,0,,,,, -06962,0600,'Sauce chili peppers hot immature green canned','SAUCE CHILI PEPPERS HOT IMMAT GRN CND',,,'Y',,0,,,,, -06963,0600,'Fish broth','FISH BROTH',,,'Y',,0,,,,, -06964,0600,'Soup tomato low sodium with water','SOUP TOMATO LO NA W/H2O',,,'Y',,0,,,,, -06965,0600,'Soup pea low sodium prepared with equal volume water','SOUP PEA LO NA PREP W/ EQ VOLUME H2O',,,'Y',,0,,,,, -06966,0600,'Soup chicken noodle low sodium canned prepared with equal volume water','SOUP CHICK NOODLE LO NA CND PREP W/ EQ VOLUME H2O',,,'Y',,0,,,,, -06967,0600,'Soup vegetable soup condensed low sodium prepared with equal volume water','SOUP VEG SOUP COND LO NA PREP W/ EQ VOLUME H2O',,,'Y',,0,,,,, -06968,0600,'Soup cream of mushroom low sodium ready-to-serve canned','SOUP CRM OF MUSHROOM LO NA RTS CND',,,'Y',,0,,,,, -06969,0600,'Potato soup instant dry mix','POTATO SOUP INST DRY MIX',,,'Y',,0,,,,, -06970,0600,'Soup chicken broth low sodium canned','SOUP CHICK BROTH LO NA CND',,,'Y',,0,,,,, -06971,0600,'Sauce worcestershire','SAUCE WORCESTERSHIRE',,,'Y',,0,,6.25,4.00,9.00,4.00 -06972,0600,'Sauce tomato chili sauce bottled with salt','SAUCE TOMATO CHILI SAU BTLD W/SALT',,,'Y',,0,,,,, -06974,0600,'Soup vegetable chicken canned prepared with water low sodium','SOUP VEG CHICK CND PREP W/ H2O LO NA',,,'Y',,0,,,,, -06976,0600,'Sauce pasta spaghetti/marinara ready-to-serve low sodium','SAUCE PASTA SPAGHETTI/MARINARA RTS LO NA',,,'Y',,0,,6.25,4.00,9.00,4.00 -06977,0600,'Gravy meat or poultry low sodium prepared','GRAVY MEAT OR POULTRY LO NA PREP',,,'Y',,0,,,,, -06978,0600,'Soup beef and mushroom low sodium chunk style','SOUP BF & MUSHROOM LO NA CHUNK STYLE',,,'Y',,0,,,,, -06980,0600,'Soup beef stroganoff canned chunky style ready-to-serve','SOUP BF STROGANOFF CND CHUNKY STYLE RTS',,,'Y',,0,,,,, -06981,0600,'Soup bouillon cubes and granules low sodium dry','SOUP BOUILLON CUBES&GRANULES LO NA DRY',,,'Y',,0,,,,, -06982,0600,'Soup ramen noodle beef flavor dry','SOUP RAMEN NOODLE BF FLAVOR DRY',,,,,0,,,4.00,9.00,4.00 -06983,0600,'Soup ramen noodle chicken flavor dry','SOUP RAMEN NOODLE CHICK FLAVOR DRY',,,,,0,,,4.00,9.00,4.00 -06985,0600,'Gravy HEINZ Home Style savory beef','GRAVY HEINZ HOME STYLE SAVORY BF',,'H.J. Heinz Co.',,,0,,6.25,4.00,9.00,4.00 -06999,0600,'Gravy CAMPBELLS chicken','GRAVY CAMPBELLS CHICK',,'Campbell Soup Co.',,,0,,,,, -07001,0700,'Barbecue loaf pork beef','BARBECUE LOAF PORK BEEF',,,,,0,,6.25,4.27,9.02,3.87 -07002,0700,'Beerwurst beer salami pork and beef','BEERWURST BEER SALAMI PORK & BF',,,'Y',,0,,6.25,4.27,9.02,3.68 -07003,0700,'Beerwurst beer salami pork','BEERWURST BEER SALAMI PORK',,,,,0,,6.25,4.27,9.02,3.87 -07004,0700,'Sausage Berliner pork beef','SAUSAGE BERLINER PORK BF',,,,,0,,6.25,4.27,9.02,3.87 -07005,0700,'Blood sausage','BLOOD SAUSAGE',,,'Y',,0,,6.25,4.27,9.02,3.87 -07006,0700,'Bockwurst pork veal raw','BOCKWURST PORK VEAL RAW',,,'Y',,0,,6.25,4.00,9.00,4.00 -07007,0700,'Bologna beef','BOLOGNA BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07008,0700,'Bologna beef and pork','BOLOGNA BF & PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07010,0700,'Bologna pork','BOLOGNA PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07011,0700,'Bologna turkey','BOLOGNA TURKEY',,,'Y',,0,,6.25,4.00,9.00,4.00 -07013,0700,'Bratwurst pork cooked','BRATWURST PORK CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -07014,0700,'Braunschweiger (a liver sausage) pork','BRAUNSCHWEIGER (A LIVER SAUSAGE) PORK',,,'Y',,0,,6.25,4.00,9.00,4.00 -07015,0700,'Bratwurst pork beef link','BRATWURST PORK BF LINK',,,,,0,,6.25,4.27,9.02,3.87 -07016,0700,'Cheesefurter cheese smokie pork beef','CHEESEFURTER CHS SMOKIE PORK BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07018,0700,'Chicken spread','CHICKEN SPRD',,,,,0,,6.25,4.00,4.00,4.00 -07019,0700,'Sausage pork chorizo link or ground raw','SAUSAGE PORK CHORIZO LINK OR GROUND RAW',,,'Y',,0,,,,, -07020,0700,'Corned beef loaf jellied','CORNED BEEF LOAF JELLIED',,,,,0,,6.25,4.27,9.02,3.87 -07021,0700,'Dutch brand loaf chicken pork and beef','DUTCH BRAND LOAF CHICK PORK & BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07022,0700,'Frankfurter beef unheated','FRANKFURTER BF UNHTD','hot dog frank wiener',,'Y',,0,,6.25,4.27,9.02,3.87 -07024,0700,'Frankfurter chicken','FRANKFURTER CHICKEN','hot dog wiener frank',,'Y',,0,,6.25,4.27,9.02,3.87 -07025,0700,'Frankfurter turkey','FRANKFURTER TURKEY','hot dog wiener frank',,'Y',,0,,6.25,4.27,9.02,3.87 -07026,0700,'Ham chopped canned','HAM CHOPPED CANNED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07027,0700,'Ham chopped not canned','HAM CHOPPED NOT CANNED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07028,0700,'Ham sliced pre-packaged deli meat (96%fat free water added)','HAM SLICED PRE-PACKAGED DELI MEAT (96%FAT FREE H2O ADDED)',,,'Y',,0,,,,, -07029,0700,'Ham sliced regular (approximately 11% fat)','HAM SLICED REG (APPROX 11% FAT)',,,'Y',,0,,6.25,4.27,9.02,3.87 -07030,0700,'Ham minced','HAM MINCED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07031,0700,'Ham salad spread','HAM SALAD SPREAD',,,'Y',,0,,6.25,4.27,9.02,3.68 -07032,0700,'Ham and cheese loaf or roll','HAM&CHS LOAF OR ROLL',,,'Y',,0,,6.25,4.27,9.02,3.68 -07033,0700,'Ham and cheese spread','HAM AND CHEESE SPREAD',,,,,0,,6.25,4.27,9.02,3.87 -07034,0700,'Headcheese pork','HEADCHEESE PORK',,,'Y',,0,,6.25,4.27,9.02,3.68 -07036,0700,'Sausage Italian pork mild raw','SAUSAGE ITALIAN PORK MILD RAW',,,,,0,,6.25,4.27,9.02,3.87 -07038,0700,'Knackwurst knockwurst pork beef','KNACKWURST KNOCKWURST PORK BF',,,'Y',,0,,6.25,4.00,9.00,4.00 -07039,0700,'Lebanon bologna beef','LEBANON BOLOGNA BF',,,'Y',,0,,6.25,4.00,9.00,4.00 -07040,0700,'Liver cheese pork','LIVER CHEESE PORK',,,,,0,,6.25,4.27,9.02,3.87 -07041,0700,'Liver sausage liverwurst pork','LIVER SAUSAGE LIVERWURST PORK',,,,,0,,6.25,4.27,9.02,3.87 -07043,0700,'Roast beef deli style prepackaged sliced','ROAST BF DELI STYLE PREPACKAGED SLICED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07045,0700,'Luncheon meat pork canned','LUNCHEON MEAT PORK CANNED',,,'Y',,0,,6.25,4.27,9.02,3.68 -07046,0700,'Turkey breast low salt prepackaged or deli luncheon meat','TURKEY BREAST LO SALT PREPACKAGED OR DELI LUNCHEON MEAT',,,'Y',,0,,6.25,4.00,9.00,4.00 -07050,0700,'Mortadella beef pork','MORTADELLA BEEF PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07051,0700,'Olive loaf pork','OLIVE LOAF PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07052,0700,'Pastrami turkey','PASTRAMI TURKEY',,,'Y',,0,,6.25,4.27,9.02,3.87 -07053,0700,'Pate chicken liver canned','PATE CHICKEN LIVER CANNED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07054,0700,'Pate goose liver smoked canned','PATE GOOSE LIVER SMOKED CND',,,,,0,,6.25,4.27,9.02,3.87 -07055,0700,'Pate liver not specified canned','PATE LIVER NOT SPECIFIED CND',,,,,0,,6.25,4.27,9.02,3.87 -07056,0700,'Peppered loaf pork beef','PEPPERED LOAF PORK BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07057,0700,'Pepperoni beef and pork sliced','PEPPERONI BF & PORK SLICED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07058,0700,'Pickle and pimiento loaf pork','PICKLE&PIMIENTO LOAF PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07059,0700,'Polish sausage pork','POLISH SAUSAGE PORK',,,,,0,,6.25,4.27,9.02,3.87 -07060,0700,'Luxury loaf pork','LUXURY LOAF PORK',,,,,0,,6.25,4.27,9.02,3.87 -07061,0700,'Mothers loaf pork','MOTHERS LOAF PORK',,,,,0,,6.25,4.27,9.02,3.87 -07062,0700,'Picnic loaf pork beef','PICNIC LOAF PORK BEEF',,,,,0,,6.25,4.27,9.02,3.87 -07063,0700,'Pork sausage link/patty unprepared','PORK SAUSAGE LINK/PATTY UNPREP',,,,,0,,,,, -07064,0700,'Pork sausage link/patty cooked pan-fried','PORK SAUSAGE LINK/PATTY CKD PAN-FRIED',,,'Y',,0,,,,, -07065,0700,'Sausage pork and beef fresh cooked','SAUSAGE PORK & BF FRSH CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -07066,0700,'Sausage turkey reduced fat brown and serve cooked','SAUSAGE TURKEY RED FAT BROWN & SERVE CKD',,,'Y',,0,,,,, -07067,0700,'Poultry salad sandwich spread','POULTRY SALAD SNDWCH SPRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -07068,0700,'Salami cooked beef','SALAMI CKD BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07069,0700,'Salami cooked beef and pork','SALAMI CKD BF&PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07070,0700,'Salami cooked turkey','SALAMI COOKED TURKEY',,,'Y',,0,,6.25,4.27,9.02,3.87 -07071,0700,'Salami dry or hard pork','SALAMI DRY OR HARD PORK',,,,,0,,6.25,4.27,9.02,3.87 -07072,0700,'Salami dry or hard pork beef','SALAMI DRY OR HARD PORK BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07073,0700,'Sandwich spread pork beef','SANDWICH SPREAD PORK BEEF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07074,0700,'Sausage smoked link sausage pork','SAUSAGE SMOKED LINK SAUSAGE PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07075,0700,'Sausage smoked link sausage pork and beef','SAUSAGE SMOKED LINK SAUSAGE PORK & BF',,,'Y',,0,,6.25,4.27,9.02,3.87 -07077,0700,'Sausage smoked link sausage pork and beef (nonfat dry milk added)','SAUSAGE SMOKED LINK SAUSAGE PORK & BF (NONFAT DRY MLK ADDED)',,,,,0,,6.25,4.27,9.02,3.87 -07078,0700,'Thuringer cervelat summer sausage beef pork','THURINGER CERVELAT SMMR SAUSAGE BF PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07081,0700,'Turkey breast sliced prepackaged','TURKEY BREAST SLICED PREPACKAGED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07083,0700,'Sausage Vienna canned chicken beef pork','SAUSAGE VIENNA CND CHICK BF PORK',,,'Y',,0,,6.25,4.27,9.02,3.87 -07088,0700,'Honey roll sausage beef','HONEY ROLL SAUSAGE BEEF',,,,,0,,6.25,4.27,9.02,3.87 -07089,0700,'Sausage Italian pork mild cooked pan-fried','SAUSAGE ITALIAN PORK MILD CKD PAN-FRIED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07090,0700,'Luncheon sausage pork and beef','LUNCHEON SAUSAGE PORK&BF',,,,,0,,6.25,4.27,9.02,3.87 -07091,0700,'Sausage New england brand pork beef','SAUSAGE NEW ENGLAND BRAND PORK BF',,,,,0,,6.25,4.27,9.02,3.87 -07201,0700,'Oscar Mayer Bologna (beef)','OSCAR MAYER BOLOGNA (BEEF)',,'Kraft Foods Inc.',,,0,,6.25,,, -07207,0700,'Oscar Mayer Braunschweiger Liver Sausage (sliced)','OSCAR MAYER BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)',,'Kraft Foods Inc.',,,0,,6.25,4.00,9.00,4.00 -07209,0700,'Oscar Mayer Chicken Breast (honey glazed)','OSCAR MAYER CHICK BREAST (HONEY GLAZED)',,'Kraft Foods Inc.',,,0,,6.25,4.00,9.00,4.00 -07212,0700,'Oscar Mayer Ham (chopped with natural juice)','OSCAR MAYER HAM (CHOPPED W/ NAT JUICE)',,'Kraft Foods Inc.',,,0,,6.25,4.00,9.00,4.00 -07230,0700,'Oscar Mayer Salami (hard)','OSCAR MAYER SALAMI (HARD)',,'Kraft Foods Inc.',,,0,,6.25,4.00,9.00,4.00 -07236,0700,'Oscar Mayer Smokies Sausage Little Cheese (pork turkey)','OSCAR MAYER SMOKIES SAUSAGE LITTLE CHS (PORK TURKEY)',,'Kraft Foods Inc.',,,0,,,,, -07241,0700,'Oscar Mayer Wieners (beef franks)','OSCAR MAYER WIENERS (BEEF FRANKS)','hot dog frankfurter hotdog wiener','Kraft Foods Inc.',,,0,,6.25,,, -07254,0700,'Bacon turkey unprepared','BACON TURKEY UNPREP',,,,,0,,,,, -07278,0700,'Hormel Pillow Pak Sliced Turkey Pepperoni','HORMEL PILLOW PAK SLICED TURKEY PEPPERONI',,'Hormel Foods Corp.',,,0,,6.25,4.00,9.00,4.00 -07900,0700,'Sausage turkey pork and beef low fat smoked','SAUSAGE TURKEY PORK & BF LOFAT SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -07905,0700,'Frankfurter beef pork and turkey fat free','FRANKFURTER BF PORK & TURKEY FAT FREE','hot dog wiener frank',,'Y',,0,,6.25,4.27,,3.68 -07906,0700,'Luncheon meat pork ham and chicken minced canned reduced sodium added ascorbic acid includes SPAM 25% less sodium','LUNCHEON MEAT PORK HAM &CHICK MINCD CND RED NA VIT C (SPAM)',,,'Y',,0,,6.25,4.27,9.02,3.87 -07908,0700,'Luncheon meat pork with ham minced canned includes Spam (Hormel)','LUNCHEON MEAT PORK W/ HAM MINCED CND INCL SPAM (HORMEL)',,,'Y',,0,,6.25,4.27,9.02,3.87 -07909,0700,'Luncheon meat pork and chicken minced canned includes Spam Lite','LUNCHEON MEAT PORK & CHICK MINCED CND INCL SPAM LITE',,,'Y',,0,,6.25,4.27,9.02,3.87 -07910,0700,'Bratwurst veal cooked','BRATWURST VEAL CKD',,,,,0,,6.25,4.00,9.00,4.00 -07911,0700,'Liverwurst spread','LIVERWURST SPRD',,,,,0,,6.25,4.27,9.02,3.87 -07912,0700,'Roast beef spread','ROAST BF SPRD',,,,,0,,6.25,4.00,9.00,4.00 -07913,0700,'Salami pork beef less sodium','SALAMI PORK BF LESS NA',,,,,0,,6.25,4.00,9.00,4.00 -07914,0700,'Sausage Italian sweet links','SAUSAGE ITALIAN SWT LINKS',,,,,0,,6.25,4.00,9.00,4.00 -07915,0700,'Sausage Polish beef with chicken hot','SAUSAGE POLISH BF W/ CHICK HOT',,,,,0,,6.25,4.00,9.00,4.00 -07916,0700,'Sausage Polish pork and beef smoked','SAUSAGE POLISH PORK & BF SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -07917,0700,'Sausage pork and beef with cheddar cheese smoked','SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -07918,0700,'Sausage summer pork and beef sticks with cheddar cheese','SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS',,,,,0,,6.25,4.00,9.00,4.00 -07919,0700,'Sausage turkey breakfast links mild raw','SAUSAGE TURKEY BRKFST LINKS MILD RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -07920,0700,'Swisswurst pork and beef with swiss cheese smoked','SWISSWURST PORK & BF W/ SWISS CHS SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -07921,0700,'Bacon and beef sticks','BACON & BF STKS',,,,,0,,6.25,4.00,9.00,4.00 -07922,0700,'Bratwurst beef and pork smoked','BRATWURST BF & PORK SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -07923,0700,'Bratwurst chicken cooked','BRATWURST CHICK CKD',,,,,0,,6.25,4.27,9.02,3.87 -07924,0700,'Bratwurst pork beef and turkey lite smoked','BRATWURST PORK BF & TURKEY LITE SMOKED',,,,,0,,6.25,4.00,9.00,4.00 -07925,0700,'Pastrami beef 98% fat-free','PASTRAMI BF 98% FAT-FREE',,,,,0,,6.25,4.00,9.00,4.00 -07926,0700,'Salami Italian pork','SALAMI ITALIAN PORK',,,,,0,,6.25,4.00,9.00,4.00 -07927,0700,'Sausage Italian turkey smoked','SAUSAGE ITALIAN TURKEY SMOKED',,,,,0,,6.25,4.00,9.00,4.00 -07928,0700,'Sausage chicken beef pork skinless smoked','SAUSAGE CHICK BF PORK SKINLESS SMOKED',,,,,0,,6.25,4.00,9.00,4.00 -07929,0700,'Sausage turkey hot smoked','SAUSAGE TURKEY HOT SMOKED',,,'Y',,0,,6.25,4.00,9.00,4.00 -07930,0700,'Yachtwurst with pistachio nuts cooked','YACHTWURST W/ PISTACHIO NUTS CKD',,,,,0,,6.25,4.27,9.02,3.87 -07931,0700,'Beerwurst pork and beef','BEERWURST PORK & BF',,,,,0,,6.25,4.00,9.00,4.00 -07932,0700,'Chicken breast fat-free mesquite flavor sliced','CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED',,,,,0,,6.25,4.00,9.00,4.00 -07933,0700,'Chicken breast oven-roasted fat-free sliced','CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED',,,,,0,,6.25,4.00,9.00,4.00 -07934,0700,'Kielbasa Polish turkey and beef smoked','KIELBASA POLISH TURKEY & BF SMOKED',,,,,0,,6.25,4.00,9.00,4.00 -07935,0700,'Chicken breast roll oven-roasted','CHICKEN BREAST ROLL OVEN-ROASTED',,,,,0,,6.25,4.00,9.00,4.00 -07936,0700,'Bologna pork and turkey lite','BOLOGNA PORK & TURKEY LITE',,,,,0,,6.25,4.00,9.00,4.00 -07937,0700,'Bologna pork turkey and beef','BOLOGNA PORK TURKEY & BF',,,,,0,,6.25,4.00,9.00,4.00 -07938,0700,'Ham honey smoked cooked','HAM HONEY SMOKED CKD',,,,,0,,6.25,4.00,9.00,4.00 -07939,0700,'Frankfurter pork','FRANKFURTER PORK','hot dog wiener frank',,,,0,,6.25,4.00,9.00,4.00 -07940,0700,'Macaroni and cheese loaf chicken pork and beef','MACARONI & CHS LOAF CHICK PORK & BF',,,,,0,,6.25,4.00,9.00,4.00 -07941,0700,'Salami Italian pork and beef dry sliced 50% less sodium','SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA',,,,,0,,6.25,4.00,9.00,4.00 -07942,0700,'Pate truffle flavor','PATE TRUFFLE FLAVOR',,,,,0,,6.25,4.00,9.00,4.00 -07943,0700,'Turkey breast smoked lemon pepper flavor 97% fat-free','TURKEY BREAST SMOKED LEMON PEPPER FLAVOR 97% FAT-FREE',,,,,0,,6.25,4.00,9.00,4.00 -07944,0700,'Turkey white rotisserie deli cut','TURKEY WHITE ROTISSERIE DELI CUT',,,,,0,,6.25,4.00,9.00,4.00 -07945,0700,'Frankfurter beef heated','FRANKFURTER BF HTD','hot dog frank wiener',,,,0,,6.25,4.00,9.00,4.00 -07949,0700,'Frankfurter meat heated','FRANKFURTER MEAT HTD',,,,,0,,6.25,4.00,9.00,4.00 -07950,0700,'Frankfurter meat','FRANKFURTER MEAT',,,,,0,,6.25,4.00,9.00,4.00 -07951,0700,'Scrapple pork','SCRAPPLE PORK',,,'Y',,0,,6.25,4.00,9.00,4.00 -07952,0700,'Bologna chicken turkey pork','BOLOGNA CHICK TURKEY PORK',,,,,0,,6.25,4.27,9.02,3.87 -07953,0700,'Pork sausage link/patty fully cooked microwaved','PORK SAUSAGE LINK/PATTY FULLY CKD MICROWAVED',,,'Y',,0,,,,, -07954,0700,'Sausage breakfast sausage beef pre-cooked unprepared','SAUSAGE BRKFST SAUSAGE BF PRE-COOKED UNPREP',,,'Y',,0,,6.25,4.27,9.02,3.87 -07955,0700,'Sausage turkey fresh raw','SAUSAGE TURKEY FRSH RAW',,,,,0,,6.25,4.27,9.02,3.87 -07956,0700,'Sausage beef fresh cooked','SAUSAGE BF FRSH CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -07957,0700,'Sausage pork and turkey pre-cooked','SAUSAGE PORK & TURKEY PRE-COOKED',,,,,0,,6.25,4.27,9.02,3.87 -07958,0700,'Sausage turkey fresh cooked','SAUSAGE TURKEY FRSH CKD',,,,,0,,6.25,4.27,9.02,3.87 -07959,0700,'Bologna chicken pork beef','BOLOGNA CHICK PORK BF',,,,,0,,6.25,4.27,9.02,3.87 -07960,0700,'Bologna chicken pork','BOLOGNA CHICK PORK',,,,,0,,6.25,4.27,9.02,3.87 -07961,0700,'Chicken breast deli rotisserie seasoned sliced prepackaged','CHICKEN BREAST DELI ROTISSERIE SEASONED SLICED PREPACKAGED',,,'Y',,0,,,,, -07962,0700,'Frankfurter meat and poultry unheated','Frankfurter meat and poultry unheated',,,'Y',,0,,,,, -07963,0700,'Frankfurter meat and poultry cooked boiled','Frankfurter meat and poultry cooked boiled',,,'Y',,0,,,,, -07964,0700,'Frankfurter meat and poultry cooked grilled','Frankfurter meat and poultry cooked grilled',,,'Y',,0,,,,, -07965,0700,'Pork sausage link/patty reduced fat unprepared','PORK SAUSAGE LINK/PATTY RED FAT UNPREP',,,'Y',,0,,,,, -07966,0700,'Pork sausage link/patty reduced fat cooked pan-fried','PORK SAUSAGE LINK/PATTY RED FAT CKD PAN-FRIED',,,'Y',,0,,,,, -07967,0700,'Pork sausage link/patty fully cooked unheated','PORK SAUSAGE LINK/PATTY FULLY CKD UNHTD',,,,,0,,,,, -07968,0700,'Kielbasa fully cooked grilled','KIELBASA FULLY CKD GRILLED',,,'Y',,0,,,,, -07969,0700,'Kielbasa fully cooked pan-fried','KIELBASA FULLY CKD PAN-FRIED',,,'Y',,0,,,,, -07970,0700,'Kielbasa fully cooked unheated','KIELBASA FULLY CKD UNHTD',,,'Y',,0,,,,, -07971,0700,'Bologna meat and poultry','BOLOGNA MEAT & POULTRY',,,'Y',,0,,,,, -07972,0700,'Meatballs frozen Italian style','MEATBALLS FRZ ITALIAN STYLE',,,,,0,,,,, -07973,0700,'Bacon turkey microwaved','BACON TURKEY MICROWAVED',,,'Y',,0,,,,, -07974,0700,'Bacon turkey low sodium','BACON TURKEY LO NA',,,'Y',,0,,6.25,,, -07976,0700,'Sausage chicken or turkey Italian style lower sodium','SAUSAGE CHICK OR TURKEY ITALIAN STYLE LOWER NA',,,'Y',,0,,6.25,,, -07977,0700,'Ham smoked extra lean low sodium','HAM SMOKED EX LN LO NA',,,'Y',,0,,6.25,,, -07978,0700,'Pork sausage reduced sodium cooked','PORK SAUSAGE RED NA CKD',,,'Y',,0,,6.25,,, -07979,0700,'Sausage pork turkey and beef reduced sodium','SAUSAGE PORK TURKEY & BF RED NA',,,'Y',,0,,,,, -08002,0800,'Cereals ready-to-eat POST ALPHA-BITS','CEREALS RTE POST ALPHA-BITS',,'Post Foods LLC','Y',,0,,,,, -08010,0800,'Cereals ready-to-eat QUAKER CAPN CRUNCH','CEREALS RTE QUAKER CAPN CRUNCH',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08011,0800,'Cereals ready-to-eat QUAKER CAPN CRUNCH with CRUNCHBERRIES','CEREALS RTE QUAKER CAPN CRUNCH W/ CRUNCHBERRIES',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08012,0800,'Cereals ready-to-eat QUAKER CAPN CRUNCHS PEANUT BUTTER CRUNCH','CEREALS RTE QUAKER CAPN CRUNCHS PNUT BUTTER CRUNCH',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08013,0800,'Cereals ready-to-eat GENERAL MILLS CHEERIOS','CEREALS RTE GENERAL MILLS CHEERIOS',,'General Mills Inc.','Y',,0,,6.25,,, -08015,0800,'Cereals ready-to-eat POST COCOA PEBBLES','CEREALS RTE POST COCOA PEBBLES',,'Post Foods LLC','Y',,0,,,,, -08018,0800,'Cereals ready-to-eat QUAKER QUAKER CRUNCHY BRAN','CEREALS RTE QUAKER QUAKER CRUNCHY BRAN',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08025,0800,'Cereals ready-to-eat RALSTON CRISP RICE','CEREALS RTE RALSTON CRISP RICE',,'Ralston Foods','Y',,0,,,,, -08029,0800,'Cereals ready-to-eat POST Bran Flakes','CEREALS RTE POST BRAN FLAKES',,'Post Foods LLC','Y',,0,,,,, -08034,0800,'Cereals ready-to-eat POST FRUITY PEBBLES','CEREALS RTE POST FRUITY PEBBLES',,'Post Foods LLC','Y',,0,,,,, -08037,0800,'Cereals ready-to-eat granola homemade','CEREALS RTE GRANOLA HOMEMADE',,,'Y',,0,,5.80,,, -08038,0800,'Cereals ready-to-eat POST GRAPE-NUTS Cereal','CEREALS RTE POST GRAPE-NUTS CRL',,'Post Foods LLC','Y',,0,,,,, -08039,0800,'Cereals ready-to-eat POST GRAPE-NUTS Flakes','CEREALS RTE POST GRAPE-NUTS FLAKES',,'Post Foods LLC','Y',,0,,,,, -08046,0800,'Cereals ready-to-eat POST Honeycomb Cereal','CEREALS RTE POST HONEYCOMB CRL',,'Post Foods LLC','Y',,0,,,,, -08047,0800,'Cereals ready-to-eat QUAKER KING VITAMAN','CEREALS RTE QUAKER KING VITAMAN',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08049,0800,'Cereals ready-to-eat QUAKER QUAKER OAT LIFE plain','CEREALS RTE QUAKER QUAKER OAT LIFE PLN',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08054,0800,'Cereals ready-to-eat QUAKER 100% Natural Granola Oats Wheat and Honey','CEREALS RTE QUAKER 100% NAT GRANOLA OATS WHEAT & HONEY',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08059,0800,'Cereals ready-to-eat QUAKER SWEET CRUNCH/QUISP','CEREALS RTE QUAKER SWT CRUNCH/QUISP',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08061,0800,'Cereals ready-to-eat POST Raisin Bran Cereal','CEREALS RTE POST RAISIN BRAN CRL',,'Post Foods LLC','Y',,0,,,,, -08066,0800,'Cereals ready-to-eat QUAKER QUAKER Puffed Rice','CEREALS RTE QUAKER QUAKER PUFFED RICE',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08073,0800,'Cereals ready-to-eat POST GOLDEN CRISP','CEREALS RTE POST GOLDEN CRISP',,'Post Foods LLC','Y',,0,,,,, -08074,0800,'Cereals ready-to-eat RALSTON TASTEEOS','CEREALS RTE RALSTON TASTEEOS',,'Ralston Foods','Y',,0,,,,, -08081,0800,'Cereals ready-to-eat POST Honey Nut Shredded Wheat','CEREALS RTE POST HONEY NUT SHREDDED WHEAT',,'Post Foods LLC','Y',,0,,,,, -08083,0800,'Cereals ready-to-eat MALT-O-MEAL CORN BURSTS','CEREALS RTE MALT-O-MEAL CORN BURSTS',,'MOM Brands','Y',,0,,,,, -08084,0800,'Cereals ready-to-eat wheat germ toasted plain','CEREALS RTE WHEAT GERM TSTD PLN',,,'Y',,0,,5.80,3.59,8.37,3.78 -08085,0800,'Cereals ready-to-eat SUN COUNTRY KRETSCHMER Honey Crunch Wheat Germ','CEREALS RTE SUN COUNTRY KRETSCHMER HONEY CRUNCH WHEAT GERM',,'Sun Country Foods Inc.','Y',,0,,6.25,,, -08090,0800,'Cereals corn grits white regular and quick enriched dry','CEREALS CORN GRITS WHITE REG & QUICK ENR DRY',,,'Y',,0,,6.25,3.46,8.37,4.16 -08091,0800,'Cereals corn grits white regular and quick enriched cooked with water without salt','CEREALS CORN GRITS WHITE REG & QUICK ENR CKD W/ H2O WO/ SALT',,,'Y',,0,,6.25,3.46,8.37,4.16 -08092,0800,'Cereals QUAKER corn grits instant plain dry','CEREALS QUAKER CORN GRITS INST PLN DRY','original','The Quaker Oats Co.','Y',,0,,,3.46,8.37,4.16 -08093,0800,'Cereals QUAKER corn grits instant plain prepared (microwaved or boiling water added) without salt','CEREALS QUAKER CORN GRITS INST PLN PREP WO/ SALT',,'The Quaker Oats Co.',,,0,,,3.46,8.37,4.16 -08094,0800,'Cereals QUAKER corn grits instant cheddar cheese flavor dry','CEREALS QUAKER CORN GRITS INST CHEDDAR CHS FLAVOR DRY',,'The Quaker Oats Co.','Y',,0,,,,, -08096,0800,'Cereals QUAKER Instant Grits Country Bacon flavor dry','CEREALS QUAKER INST GRITS COUNTRY BACON FLAVOR DRY',,'The Quaker Oats Co.',,,0,,,,, -08100,0800,'Cereals CREAM OF RICE dry','CEREALS CRM OF RICE DRY',,'B&G Foods Inc','Y',,0,,5.95,3.82,8.37,4.16 -08102,0800,'Cereals CREAM OF WHEAT regular 10 minute cooking dry','CEREALS CRM OF WHEAT REG 10 MINUTE COOKING DRY',,'B&G Foods Inc','Y',,0,,5.70,4.05,8.37,4.12 -08103,0800,'Cereals CREAM OF WHEAT regular (10 minute) cooked with water without salt','CEREALS CRM OF WHEAT REG (10 MINUTE) CKD W/ H2O WO/ SALT',,'B&G Foods Inc',,,0,,5.70,4.05,8.37,4.12 -08104,0800,'Cereals farina enriched assorted brands including CREAM OF WHEAT quick (1-3 minutes) dry','CEREALS FARINA ENR ASSORTED BRANDS DRY',,,'Y',,0,,5.70,4.05,8.37,4.12 -08105,0800,'Cereals farina enriched assorted brands including CREAM OF WHEAT quick (1-3 minutes) cooked with water without salt','CEREALS FARINA ENR ASSORTED BRANDS QUICK CKD W/ H2O WO/ SALT',,,,,0,,5.70,4.05,8.37,4.12 -08106,0800,'Cereals CREAM OF WHEAT instant dry','CEREALS CREAM OF WHEAT INST DRY',,'B&G Foods Inc','Y',,0,,5.70,4.05,8.37,4.12 -08107,0800,'Cereals CREAM OF WHEAT instant prepared with water without salt','CEREALS CREAM OF WHEAT INST PREP W/ H2O WO/ SALT',,'B&G Foods Inc',,,0,,5.70,4.05,8.37,4.12 -08116,0800,'Cereals MALT-O-MEAL original plain dry','CEREALS MALT-O-MEAL ORIGINAL PLN DRY',,'MOM Brands','Y',,0,,5.70,3.60,8.37,4.10 -08120,0800,'Cereals oats regular and quick not fortified dry','CEREALS OATS REG & QUICK NOT FORT DRY','oatmeal old-fashioned oats rolled oats',,'Y',,0,,5.83,3.46,8.37,4.12 -08121,0800,'Cereals oats regular and quick unenriched cooked with water (includes boiling and microwaving) without salt','CEREALS OATS REG & QUICK UNENR CKD W/ H2O WO/ SALT','oatmeal cooked',,'Y',,0,,5.83,3.46,8.37,4.12 -08122,0800,'Cereals oats instant fortified plain dry','CEREALS OATS INST FORT PLN DRY','instant oatmeal Quaker original flavor',,'Y',,0,,5.83,3.46,8.37,4.12 -08123,0800,'Cereals oats instant fortified plain prepared with water (boiling water added or microwaved)','CEREALS OATS INST FORT PLN PREP W/ H2O','instant oatmeal',,'Y',,0,,5.83,3.46,8.37,4.12 -08124,0800,'Cereals QUAKER Instant Oatmeal apples and cinnamon dry','CEREALS QUAKER INST OATMEAL APPLS & CINN DRY',,'The Quaker Oats Co.',,,0,,,,, -08128,0800,'Cereals oats instant fortified with cinnamon and spice dry','CEREALS OATS INST FORT W/ CINN & SPICE DRY','oatmeal',,'Y',,0,,5.83,,, -08129,0800,'Cereals oats instant fortified with cinnamon and spice prepared with water','CEREALS OATS INST FORT W/ CINN & SPICE PREP W/ H2O',,,,,0,,,,, -08130,0800,'Cereals QUAKER Instant Oatmeal maple and brown sugar dry','CEREALS QUAKER INST OATMEAL MAPLE & BROWN SUGAR DRY',,'The Quaker Oats Co.',,,0,,,,, -08133,0800,'Cereals oats instant fortified with raisins and spice prepared with water','CEREALS OATS INST FORT W/ RAISINS & SPICE PREP W/ H2O',,,,,0,,,,, -08138,0800,'Cereals ready-to-eat MALT-O-MEAL MARSHMALLOW MATEYS','CEREALS RTE MALT-O-MEAL MARSHMLLW MATEYS',,'MOM Brands','Y',,0,,,,, -08142,0800,'Cereals WHEATENA dry','CEREALS WHEATENA DRY',,'Homestat Farm Ltd.',,,0,,5.83,3.59,8.37,3.78 -08143,0800,'Cereals WHEATENA cooked with water','CEREALS WHEATENA CKD W/ H2O',,'Homestat Farm Ltd.',,,0,,5.83,3.59,8.37,3.78 -08144,0800,'Cereals whole wheat hot natural cereal dry','CEREALS WHL WHEAT HOT NAT CRL DRY',,,'Y',,0,,5.83,3.59,8.37,3.78 -08145,0800,'Cereals whole wheat hot natural cereal cooked with water without salt','CEREALS WHL WHEAT HOT NAT CRL CKD W/ H2O WO/ SALT',,,,,0,,5.83,3.59,8.37,3.78 -08146,0800,'Cereals ready-to-eat QUAKER QUAKER Puffed Wheat','CEREALS RTE QUAKER QUAKER PUFFED WHEAT',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08147,0800,'Cereals ready-to-eat POST Shredded Wheat original big biscuit','CEREALS RTE POST SHREDDED WHEAT ORIGINAL BIG BISCUIT',,'Post Foods LLC','Y',,0,,,,, -08148,0800,'Cereals ready-to-eat POST Shredded Wheat original spoon-size','CEREALS RTE POST SHREDDED WHEAT ORIGINAL SPOON-SIZE',,'Post Foods LLC','Y',,0,,,,, -08156,0800,'Cereals ready-to-eat rice puffed fortified','CEREALS RTE RICE PUFFED FORT',,,,,0,,5.95,3.82,8.37,4.16 -08157,0800,'Cereals ready-to-eat wheat puffed fortified','CEREALS RTE WHEAT PUFFED FORT',,,,,0,,5.83,3.59,8.37,3.78 -08160,0800,'Cereals corn grits yellow regular and quick unenriched dry','CEREALS CORN GRITS YEL REG & QUICK UNENR DRY',,,,,0,,6.25,3.46,8.37,4.16 -08161,0800,'Cereals corn grits white regular and quick enriched cooked with water with salt','CEREALS CORN GRITS WHITE REG & QUICK ENR CKD W/ H2O W/ SALT',,,,,0,,6.25,3.46,8.37,4.16 -08164,0800,'Cereals corn grits yellow regular and quick enriched cooked with water without salt','CEREALS CORN GRITS YEL REG & QUICK ENR CKD W/ H2O WO/ SALT',,,,,0,,6.25,3.46,8.37,4.16 -08165,0800,'Cereals corn grits yellow regular quick enriched cooked with water with salt','CEREALS CORN GRITS YEL REG QUICK ENR CKD W/ H2O W/ SALT',,,,,0,,6.25,3.46,8.37,4.16 -08168,0800,'Cereals CREAM OF RICE cooked with water with salt','CEREALS CREAM OF RICE CKD W/ H2O W/ SALT',,'B&G Foods Inc',,,0,,5.95,3.82,8.37,4.16 -08169,0800,'Cereals CREAM OF WHEAT regular (10 minute) cooked with water with salt','CEREALS CRM OF WHEAT REG (10 MINUTE) CKD W/ H2O W/ SALT',,'B&G Foods Inc',,,0,,5.70,4.05,8.37,4.12 -08172,0800,'Cereals farina unenriched dry','CEREALS FARINA UNENR DRY',,,,,0,,5.70,4.05,8.37,4.12 -08173,0800,'Cereals farina enriched cooked with water with salt','CEREALS FARINA ENR CKD W/ H2O W/ SALT',,,,,0,,5.70,4.05,8.37,4.12 -08177,0800,'Cereals MALT-O-MEAL chocolate dry','CEREALS MALT-O-MEAL CHOC DRY',,'MOM Brands',,,0,,5.70,,, -08180,0800,'Cereals oats regular and quick and instant unenriched cooked with water (includes boiling and microwaving) with salt','CEREALS OATS REG & QUICK & INST UNENR CKD W/ H2O W/ SALT',,,,,0,,5.83,3.46,8.37,4.12 -08182,0800,'Cereals WHEATENA cooked with water with salt','CEREALS WHEATENA CKD W/ H2O W/ SALT',,'Homestat Farm Ltd.',,,0,,5.83,3.59,8.37,3.78 -08183,0800,'Cereals whole wheat hot natural cereal cooked with water with salt','CEREALS WHL WHEAT HOT NAT CRL CKD W/ H2O W/ SALT',,,,,0,,5.83,3.59,8.37,3.78 -08191,0800,'Cereals ready-to-eat POST Shredded Wheat lightly frosted spoon-size','CEREALS RTE POST SHREDDED WHEAT LIGHTLY FRSTD SPOON-SIZE',,'Post Foods LLC','Y',,0,,,,, -08192,0800,'Cereals ready-to-eat POST SELECTS Blueberry Morning','CEREALS RTE POST SELECTS BLUEBERRY MORNING',,'Post Foods LLC','Y',,0,,,,, -08200,0800,'Cereals QUAKER QUAKER MultiGrain Oatmeal dry','CEREALS QUAKER QUAKER MULTIGRAIN OATMEAL DRY',,'The Quaker Oats Co.','Y',,0,,,,, -08204,0800,'Cereals ready-to-eat chocolate-flavored frosted puffed corn','CEREALS RTE CHOCOLATE-FLAVORED FRSTD PUFFED CORN',,,'Y',,0,,,,, -08206,0800,'Cereals ready-to-eat MALT-O-MEAL COCO-ROOS','CEREALS RTE MALT-O-MEAL COCO-ROOS',,'MOM Brands','Y',,0,,,,, -08210,0800,'Cereals ready-to-eat QUAKER QUAKER OAT CINNAMON LIFE','CEREALS RTE QUAKER QUAKER OAT CINN LIFE',,'The Quaker Oats Co.',,,0,,6.25,,, -08211,0800,'Cereals ready-to-eat QUAKER HONEY GRAHAM OH!S','CEREALS RTE QUAKER HONEY GRAHAM OH!S',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08214,0800,'Cereals ready-to-eat QUAKER Oatmeal Squares','CEREALS RTE QUAKER OATMEAL SQUARES',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08215,0800,'Cereals ready-to-eat QUAKER Oatmeal Squares cinnamon','CEREALS RTE QUAKER OATMEAL SQUARES CINN',,'The Quaker Oats Co.',,,0,,6.25,,, -08216,0800,'Cereals ready-to-eat QUAKER Toasted Multigrain Crisps','CEREALS RTE QUAKER TSTD MULTIGRAIN CRISPS','QUAKER Oat Bran Cereal','The Quaker Oats Co.','Y',,0,,6.25,,, -08218,0800,'Cereals ready-to-eat QUAKER QUAKER 100% Natural Granola with Oats Wheat Honey and Raisins','CEREALS RTE QUAKER QUAKER GRANOLA W/ OATS WHEAT& RAISINS',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08220,0800,'Cereals ready-to-eat QUAKER Low Fat 100% Natural Granola with Raisins','CEREALS RTE QUAKER LOFAT 100% NAT GRANOLA W/ RAISINS',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08221,0800,'Cereals QUAKER Instant Grits Butter flavor dry','CEREALS QUAKER INST GRITS BUTTER FLAVOR DRY',,'The Quaker Oats Co.',,,0,,,,, -08225,0800,'Cereals QUAKER Instant Oatmeal fruit and cream variety dry','CEREALS QUAKER INST OATMEAL FRUIT & CRM VAR DRY',,'The Quaker Oats Co.',,,0,,,,, -08228,0800,'Cereals QUAKER Instant Oatmeal raisins dates and walnuts dry','CEREALS QUAKER INST OATMEAL RAISINS DATES & WALNUTS DRY',,'The Quaker Oats Co.',,,0,,,,, -08231,0800,'Cereals QUAKER Oat Bran QUAKER/MOTHERS Oat Bran dry','CEREALS QUAKER OAT BRAN QUAKER/MOTHERS OAT BRAN DRY',,'The Quaker Oats Co.',,,0,,,,, -08236,0800,'Cereals QUAKER Oat Bran QUAKER/MOTHERS Oat Bran prepared with water no salt','CEREALS QKR OAT BRAN PREP W/H2O NO SALT',,'The Quaker Oats Co.',,,0,,,,, -08240,0800,'Cereals Oat Bran QUAKER QUAKER/MOTHERS Oat Bran prepared with water salt','CEREALS OAT BRAN QKR QKR/MOTHERS OAT BRAN PREP W/H2O SALT',,'The Quaker Oats Co.',,,0,,,,, -08249,0800,'Cereals QUAKER QUAKER MultiGrain Oatmeal prepared with water no salt','CEREALS QUAKER QUAKER MULTIGRAIN OATMEAL PREP W/H2O NO SALT',,'The Quaker Oats Co.',,,0,,,,, -08252,0800,'Cereals QUAKER QUAKER MultiGrain Oatmeal prepared with water salt','CEREALS QUAKER QUAKER MULTIGRAIN OATMEAL PREP W/H2O SALT',,'The Quaker Oats Co.',,,0,,,,, -08290,0800,'Cereals ready-to-eat HEALTH VALLEY FIBER 7 Flakes','CEREALS RTE HEALTH VALLEY FIBER 7 FLAKES',,'Hain Celestial Group Inc.','Y',,0,,,,, -08305,0800,'Cereals ready-to-eat Post Waffle Crisp','CEREALS RTE POST WAFFLE CRISP',,'Post Foods LLC','Y',,0,,,,, -08314,0800,'Cereals QUAKER hominy grits white quick dry','CEREALS QUAKER HOMINY GRITS WHITE QUICK DRY',,'The Quaker Oats Co.',,,0,,,,, -08316,0800,'Cereals QUAKER hominy grits white regular dry','CEREALS QUAKER HOMINY GRITS WHITE REG DRY','old fashioned','The Quaker Oats Co.',,,0,,,,, -08346,0800,'Cereals ready-to-eat MALT-O-MEAL COLOSSAL CRUNCH','CEREALS RTE MALT-O-MEAL COLOSSAL CRUNCH',,'MOM Brands','Y',,0,,,,, -08347,0800,'Cereals ready-to-eat MALT-O-MEAL BERRY COLOSSAL CRUNCH','CEREALS RTE MALT-O-MEAL BERRY COLOSSAL CRUNCH',,'MOM Brands',,,0,,,,, -08348,0800,'Cereals ready-to-eat MALT-O-MEAL Crispy Rice','CEREALS RTE MALT-O-MEAL CRISPY RICE',,'MOM Brands',,,0,,,,, -08349,0800,'Cereals ready-to-eat MALT-O-MEAL TOOTIE FRUITIES','CEREALS RTE MALT-O-MEAL TOOTIE FRUITIES',,'MOM Brands','Y',,0,,,,, -08351,0800,'Cereals ready-to-eat QUAKER MOTHERS PEANUT BUTTER BUMPERS Cereal','CEREALS RTE QUAKER MOTHERS PNUT BUTTER BUMPERS CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08352,0800,'Cereals ready-to-eat QUAKER MOTHERS Toasted Oat Bran cereal','CEREALS RTE QUAKER MOTHERS TSTD OAT BRAN CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08353,0800,'Cereals ready-to-eat QUAKER MOTHERS Cinnamon Oat Crunch','CEREALS RTE QUAKER MOTHERS CINN OAT CRUNCH',,'The Quaker Oats Co.',,,0,,6.25,,, -08354,0800,'Cereals ready-to-eat QUAKER MOTHERS GRAHAM BUMPERS','CEREALS RTE QUAKER MOTHERS GRAHAM BUMPERS',,'The Quaker Oats Co.',,,0,,6.25,,, -08355,0800,'Cereals ready-to-eat QUAKER MOTHERS COCOA BUMPERS','CEREALS RTE QUAKER MOTHERS COCOA BUMPERS',,'The Quaker Oats Co.',,,0,,6.25,,, -08363,0800,'Cereals ready-to-eat SUN COUNTRY KRETSCHMER Toasted Wheat Bran','CEREALS RTE SUN COUNTRY KRETSCHMER TSTD WHEAT BRAN',,'Sun Country Foods Inc.',,,0,,6.25,,, -08365,0800,'Cereals ready-to-eat QUAKER Shredded Wheat bagged cereal','CEREALS RTE QUAKER SHREDDED WHEAT BAGGED CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08366,0800,'Cereals ready-to-eat SUN COUNTRY KRETSCHMER Wheat Germ Regular','CEREALS RTE SUN COUNTRY KRETSCHMER WHEAT GERM REG',,'Sun Country Foods Inc.',,,0,,6.25,,, -08402,0800,'Cereals QUAKER Quick Oats Dry','CEREALS QUAKER QUICK OATS DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08409,0800,'Cereals ready-to-eat MALT-O-MEAL Frosted Flakes','CEREALS RTE MALT-O-MEAL FRSTD FLAKES',,'MOM Brands','Y',,0,,6.25,,, -08410,0800,'Cereals QUAKER Instant Oatmeal Cinnamon-Spice dry','CEREALS QUAKER INST OATMEAL CINNAMON-SPICE DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08411,0800,'Cereals QUAKER Instant Oatmeal DINOSAUR EGGS Brown Sugar dry','CEREALS QUAKER INST OATMEAL DINOSAUR EGGS BROWN SUGAR DRY',,'The Quaker Oats Co.',,,0,,,,, -08417,0800,'Cereals QUAKER Instant Oatmeal Banana Bread dry','CEREALS QUAKER INST OATMEAL BANANA BREAD DRY',,'The Quaker Oats Co.',,,0,,,,, -08435,0800,'Cereals ready-to-eat UNCLE SAM CEREAL','CEREALS RTE UNCLE SAM CRL',,'Attune Foods Inc.','Y',,0,,,,, -08436,0800,'Cereals QUAKER Instant Oatmeal Raisin and Spice dry','CEREALS QUAKER INST OATMEAL RAISIN & SPICE DRY',,'The Quaker Oats Co.',,,0,,,,, -08444,0800,'Cereals QUAKER Instant Grits Redeye Gravy & Country Ham flavor dry','CEREALS QUAKER INST GRITS REDEYE GRVY COUNTRY HAM FLAVOR DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08449,0800,'Cereals QUAKER Instant Grits Product with American Cheese Flavor dry','CEREALS QUAKER INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08450,0800,'Cereals QUAKER Instant Grits Ham n Cheese flavor dry','CEREALS QUAKER INST GRITS HAM N CHS FLAVOR DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08451,0800,'Cereals QUAKER Quick Oats with Iron Dry','CEREALS QUAKER QUICK OATS W/ IRON DRY','quick oats with iron for WIC program','The Quaker Oats Co.',,,0,,6.25,,, -08452,0800,'Cereals QUAKER Whole Wheat Natural Cereal dry','CEREALS QUAKER WHL WHEAT NAT CRL DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08476,0800,'Cereals ready-to-eat MALT-O-MEAL Honey BUZZERS','CEREALS RTE MALT-O-MEAL HONEY BUZZERS',,'MOM Brands',,,0,,6.25,,, -08478,0800,'Cereals ready-to-eat MALT-O-MEAL GOLDEN PUFFS','CEREALS RTE MALT-O-MEAL GOLDEN PUFFS',,'MOM Brands',,,0,,6.25,,, -08481,0800,'Cereals ready-to-eat MALT-O-MEAL HONEY GRAHAM SQUARES','CEREALS RTE MALT-O-MEAL HONEY GRAHAM SQUARES',,'MOM Brands',,,0,,6.25,,, -08484,0800,'Cereals ready-to-eat MALT-O-MEAL Raisin Bran Cereal','CEREALS RTE MALT-O-MEAL RAISIN BRAN CRL',,'MOM Brands','Y',,0,,6.25,,, -08487,0800,'Cereals ready-to-eat MALT-O-MEAL Blueberry MUFFIN TOPS Cereal','CEREALS RTE MALT-O-MEAL BLUEBERRY MUFFIN TOPS CRL',,'MOM Brands',,,0,,6.25,,, -08488,0800,'Cereals MALT-O-MEAL Farina Hot Wheat Cereal dry','CEREALS MALT-O-MEAL FARINA HOT WHEAT CRL DRY',,'MOM Brands',,,0,,6.25,,, -08489,0800,'Cereals MALT-O-MEAL Maple & Brown Sugar Hot Wheat Cereal dry','CEREALS MALT-O-MEAL MAPLE & BROWN SUGAR HOT WHEAT CRL DRY',,'MOM Brands',,,0,,6.25,,, -08491,0800,'Cereals ready-to-eat MOMS BEST Honey Nut TOASTY OS','CEREALS RTE MOMS BEST HONEY NUT TOASTY OS',,'MOM Brands',,,0,,6.25,,, -08493,0800,'Cereals ready-to-eat MALT-O-MEAL Apple ZINGS','CEREALS RTE MALT-O-MEAL APPL ZINGS',,'MOM Brands',,,0,,6.25,,, -08494,0800,'Cereals ready-to-eat MALT-O-MEAL CINNAMON TOASTERS','CEREALS RTE MALT-O-MEAL CINN TOASTERS',,'MOM Brands','Y',,0,,6.25,,, -08495,0800,'Cereals ready-to-eat MALT-O-MEAL Cocoa DYNO-BITES','CEREALS RTE MALT-O-MEAL COCOA DYNO-BITES',,'MOM Brands','Y',,0,,6.25,,, -08500,0800,'Cereals ready-to-eat MALT-O-MEAL Frosted Mini SPOONERS','CEREALS RTE MALT-O-MEAL FRSTD MINI SPOONERS',,'MOM Brands','Y',,0,,6.25,,, -08501,0800,'Cereals ready-to-eat MALT-O-MEAL Fruity DYNO-BITES','CEREALS RTE MALT-O-MEAL FRUITY DYNO-BITES',,'MOM Brands','Y',,0,,6.25,,, -08504,0800,'Cereals ready-to-eat RALSTON Enriched Wheat Bran flakes','CEREALS RTE RALSTON ENR WHEAT BRAN FLAKES',,'Ralston Foods',,,0,,,,, -08505,0800,'Cereals ready-to-eat RALSTON Corn Biscuits','CEREALS RTE RALSTON CORN BISCUITS',,'Ralston Foods',,,0,,,,, -08506,0800,'Cereals ready-to-eat RALSTON Corn Flakes','CEREALS RTE RALSTON CORN FLAKES',,'Ralston Foods',,,0,,,,, -08507,0800,'Cereals ready-to-eat RALSTON Crispy Hexagons','CEREALS RTE RALSTON CRISPY HEXAGONS',,'Ralston Foods',,,0,,,,, -08510,2500,'Milk and cereal bar','MILK & CRL BAR',,,'Y',,0,,,,, -08511,0800,'Cereals MALT-O-MEAL original plain prepared with water without salt','CEREALS MALT-O-MEAL ORIGINAL PLN PREP W/ H2O WO/ SALT',,'MOM Brands',,,0,,,,, -08512,0800,'Cereals MALT-O-MEAL chocolate prepared with water without salt','CEREALS MALT-O-MEAL CHOC PREP W/ H2O WO/ SALT',,'MOM Brands',,,0,,,,, -08544,0800,'Cereals ready-to-eat POST GREAT GRAINS Cranberry Almond Crunch','CEREALS RTE POST GREAT GRAINS CRANBERRY ALMOND CRUNCH',,'Post Foods LLC','Y',,0,,,,, -08546,2500,'Rice and Wheat cereal bar','RICE & WHEAT CRL BAR',,,'Y',,0,,6.25,,, -08549,0800,'Cereals ready-to-eat QUAKER QUAKER Honey Graham LIFE Cereal','CEREALS RTE QUAKER QUAKER HONEY GRAHAM LIFE CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08550,0800,'Cereals ready-to-eat QUAKER Christmas Crunch','CEREALS RTE QUAKER CHRISTMAS CRUNCH',,'The Quaker Oats Co.','Y',,0,,6.25,,, -08554,0800,'Cereals ready-to-eat POST SELECTS Maple Pecan Crunch','CEREALS RTE POST SELECTS MAPLE PECAN CRUNCH',,'Post Foods LLC','Y',,0,,,,, -08571,0800,'Cereals ready-to-eat NATURES PATH Organic FLAX PLUS Pumpkin Granola','CEREALS RTE NATURES PATH ORGANIC FLAX PLUS PUMPKIN GRANOLA',,'Natures Path','Y',,0,,6.25,,, -08573,0800,'Cereals CREAM OF WHEAT 2 1/2 minute cook time dry','CEREALS CRM OF WHEAT 2 1/2 MINUTE COOK TIME DRY',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08574,0800,'Cereals CREAM OF WHEAT 2 1/2 minute cook time cooked with water stove-top without salt','CEREALS CRM OF WHT 2 1/2 MIN CK CKD W/H2O STOVE-TOP WO/SALT',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08575,0800,'Cereals CREAM OF WHEAT 2 1/2 minute cook time cooked with water microwaved without salt','CEREALS CRM OF WHT 2 1/2 MIN COOK TIME CKD W/H2O MW WO/ SALT',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08576,0800,'Cereals CREAM OF WHEAT 1 minute cook time dry','CEREALS CRM OF WHEAT 1 MINUTE COOK TIME DRY',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08577,0800,'Cereals CREAM OF WHEAT 1 minute cook time cooked with water stove-top without salt','CEREALS CRM OF WHEAT 1 MINUTE CKD W/ H2O STOVE-TOP WO/ SALT',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08578,0800,'Cereals CREAM OF WHEAT 1 minute cook time cooked with water microwaved without salt','CEREALS CRM OF WHEAT 1 MINUTE CKD W/ H2O MICROWAVED WO/ SALT',,'B&G Foods Inc',,,0,,,4.05,8.37,4.12 -08580,0800,'Incaparina dry mix (corn and soy flours) unprepared','INCAPARINA DRY MIX (CORN & SOY FLOURS) UNPREP',,,,,0,,6.25,,, -08625,0800,'Cereals ready-to-eat QUAKER CAPN CRUNCHS Halloween Crunch','CEREALS RTE QUAKER CAPN CRUNCHS HALLOWEEN CRUNCH',,'The Quaker Oats Co.',,,0,,6.25,,, -08627,0800,'Cereals ready-to-eat QUAKER Natural Granola Apple Cranberry Almond','CEREALS RTE QUAKER NAT GRANOLA APPL CRANBERRY ALMOND',,'The Quaker Oats Co.',,,0,,6.25,,, -08628,0800,'Cereals ready-to-eat QUAKER Maple Brown Sugar LIFE Cereal','CEREALS RTE QUAKER MAPLE BROWN SUGAR LIFE CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08629,0800,'Cereals ready-to-eat QUAKER Capn Crunchs OOPS! All Berries Cereal','CEREALS RTE QUAKER CAPN CRUNCHS OOPS! ALL BERRIES CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08632,0800,'Cereals ready-to-eat QUAKER Oatmeal Squares Golden Maple','CEREALS RTE QUAKER OATMEAL SQUARES GOLDEN MAPLE',,'The Quaker Oats Co.',,,0,,6.25,,, -08633,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS with vanilla bunches','CEREALS RTE POST HONEY BUNCHES OF OATS W/ VANILLA BUNCHES',,'Post Foods LLC','Y',,0,,,,, -08639,0800,'Cereals QUAKER Instant Oatmeal Cinnamon Spice reduced sugar','CEREALS QUAKER INST OATMEAL CINN SPICE RED SUGAR',,'The Quaker Oats Co.',,,0,,6.25,,, -08640,0800,'Cereals QUAKER Instant Oatmeal Organic Regular','CEREALS QUAKER INST OATMEAL ORGANIC REG','instant oatmeal not fortified no added salt','The Quaker Oats Co.',,,0,,6.25,,, -08641,0800,'Cereals QUAKER Instant Oatmeal fruit and cream variety of flavors reduced sugar','CEREALS QUAKER INST OATMEAL FRUIT & CRM RED SUGAR',,'The Quaker Oats Co.',,,0,,,,, -08642,0800,'Cereals QUAKER Instant Oatmeal Apple and Cinnamon reduced sugar','CEREALS QUAKER INST OATMEAL APPL & CINN RED SUGAR',,'The Quaker Oats Co.',,,0,,6.25,,, -08655,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS pecan bunches','CEREALS RTE POST HONEY BUNCHES OF OATS PECAN BUNCHES',,'Post Foods LLC','Y',,0,,,,, -08656,0800,'Cereals ready-to-eat NATURES PATH Organic FLAX PLUS flakes','CEREALS RTE NATURES PATH ORGANIC FLAX PLUS FLAKES',,'Natures Path','Y',,0,,6.25,,, -08657,0800,'Cereals ready-to-eat BARBARAS PUFFINS original','CEREALS RTE BARBARAS PUFFINS ORIGINAL',,'Barbaras Bakery Inc','Y',,0,,,,, -08662,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS with real strawberries','CEREALS RTE POST HONEY BUNCHES OF OATS W/ REAL STRAWBERRIES',,'Post Foods LLC',,,0,,,,, -08665,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS with cinnamon bunches','CEREALS RTE POST HONEY BUNCHES OF OATS W/ CINN BUNCHES',,'Post Foods LLC',,,0,,6.25,,, -08672,0800,'Cereals ready-to-eat MALT-O-MEAL CHOCOLATE MARSHMALLOW MATEYS','CEREALS RTE MALT-O-MEAL CHOC MARSHMLLW MATEYS',,'MOM Brands',,,0,,6.25,,, -08673,0800,'Cereals ready-to-eat MALT-O-MEAL Blueberry Mini SPOONERS','CEREALS RTE MALT-O-MEAL BLUEBERRY MINI SPOONERS',,'MOM Brands',,,0,,6.25,,, -08674,0800,'Cereals ready-to-eat MALT-O-MEAL OAT BLENDERS with honey','CEREALS RTE MALT-O-MEAL OAT BLENDERS W/ HONEY',,'MOM Brands',,,0,,6.25,,, -08675,0800,'Cereals ready-to-eat MALT-O-MEAL OAT BLENDERS with honey & almonds','CEREALS RTE MALT-O-MEAL OAT BLENDERS W/ HONEY & ALMONDS',,'MOM Brands',,,0,,6.25,,, -08676,0800,'Cereals ready-to-eat MALT-O-MEAL Honey Nut SCOOTERS','CEREALS RTE MALT-O-MEAL HONEY NUT SCOOTERS',,'MOM Brands',,,0,,6.25,,, -08680,0800,'Cereals oats instant fortified maple and brown sugar dry','CEREALS OATS INST FORT MAPLE & BROWN SUGAR DRY',,,'Y',,0,,,,, -08685,0800,'Cereals ready-to-eat QUAKER WHOLE HEARTS oat cereal','CEREALS RTE QUAKER WHL HEARTS OAT CRL',,'The Quaker Oats Co.',,,0,,6.25,,, -08686,0800,'Cereals QUAKER Weight Control Instant Oatmeal maple and brown sugar','CEREALS QUAKER WT CONTROL INST OATMEAL MAPLE & BROWN SUGAR',,'The Quaker Oats Co.',,,0,,6.25,,, -08687,0800,'Cereals QUAKER Weight Control Instant Oatmeal banana bread','CEREALS QUAKER WEIGHT CONTROL INST OATMEAL BANANA BREAD',,'The Quaker Oats Co.',,,0,,6.25,,, -08688,0800,'Cereals QUAKER Instant Oatmeal Cinnamon Swirl high fiber','CEREALS QUAKER INST OATMEAL CINN SWIRL HI FIBER',,'The Quaker Oats Co.',,,0,,6.25,,, -08689,0800,'Cereals QUAKER oatmeal REAL MEDLEYS blueberry hazelnut dry','CEREALS QUAKER OATMEAL REAL MEDLEYS BLUEBERRY HAZELNUT DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08690,0800,'Cereals QUAKER oatmeal REAL MEDLEYS apple walnut dry','CEREALS QUAKER OATMEAL REAL MEDLEYS APPL WALNUT DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08691,0800,'Cereals QUAKER oatmeal REAL MEDLEYS summer berry dry','CEREALS QUAKER OATMEAL REAL MEDLEYS SMMR BERRY DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08692,0800,'Cereals QUAKER oatmeal REAL MEDLEYS peach almond dry','CEREALS QUAKER OATMEAL REAL MEDLEYS PEACH ALMOND DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08693,0800,'Cereals QUAKER oatmeal REAL MEDLEYS cherry pistachio dry','CEREALS QUAKER OATMEAL REAL MEDLEYS CHERRY PISTACHIO DRY',,'The Quaker Oats Co.',,,0,,6.25,,, -08694,0800,'Cereals QUAKER Instant Oatmeal weight control cinnamon','CEREALS QUAKER INST OATMEAL WEIGHT CONTROL CINN',,'The Quaker Oats Co.',,,0,,6.25,,, -08709,0800,'Cereals ready-to-eat MOMS BEST Sweetened WHEAT-FULS','CEREALS RTE MOMS BEST SWTND WHEAT-FULS',,'MOM Brands',,,0,,6.25,,, -09001,0900,'Acerola (west indian cherry) raw','ACEROLA (WEST INDIAN CHERRY) RAW',,,,'18% seed 2% stem end',20,'Malpighia emarginata',6.25,3.36,8.37,3.60 -09002,0900,'Acerola juice raw','ACEROLA JUICE RAW',,,,,0,,6.25,3.36,8.37,3.92 -09003,0900,'Apples raw with skin (Includes foods for USDAs Food Distribution Program)','APPLES RAW WITH SKIN',,,'Y','Core and stem',10,'Malus domestica',6.25,3.36,8.37,3.60 -09004,0900,'Apples raw without skin','APPLES RAW WITHOUT SKIN',,,'Y','10% core and stem 13% skin',23,'Malus domestica',6.25,3.36,8.37,3.60 -09005,0900,'Apples raw without skin cooked boiled','APPLES RAW WO/SKN CKD BLD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09006,0900,'Apples raw without skin cooked microwave','APPLES RAW WO/ SKN CKD MICROWAVE',,,'Y',,0,,6.25,3.36,8.37,3.60 -09008,0900,'Apples canned sweetened sliced drained heated','APPLES CND SWTND SLICED DRND HTD',,,'Y',,0,,6.25,3.36,8.37,3.70 -09009,0900,'Apples dehydrated (low moisture) sulfured uncooked','APPLES DEHYD (LO MOIST) SULFURED UNCKD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09010,0900,'Apples dehydrated (low moisture) sulfured stewed','APPLES DEHYD (LO MOIST) SULFURED STWD',,,,,0,,6.25,3.36,8.37,3.60 -09011,0900,'Apples dried sulfured uncooked','APPLES DRIED SULFURED UNCKD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09012,0900,'Apples dried sulfured stewed without added sugar','APPLES DRIED SULFURED STWD WO/ SUGAR',,,'Y',,0,,6.25,3.36,8.37,3.60 -09013,0900,'Apples dried sulfured stewed with added sugar','APPLES DRIED SULFURED STWD W/ SUGAR',,,,,0,,6.25,,, -09014,0900,'Apples frozen unsweetened unheated (Includes foods for USDAs Food Distribution Program)','APPLES FRZ UNSWTND UNHTD',,,,,0,,6.25,3.36,8.37,3.60 -09015,0900,'Apples frozen unsweetened heated (Includes foods for USDAs Food Distribution Program)','APPLES FRZ UNSWTND HTD',,,,,0,,6.25,3.36,8.37,3.60 -09016,0900,'Apple juice canned or bottled unsweetened without added ascorbic acid','APPLE JUC CND OR BTLD UNSWTND WO/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09017,0900,'Apple juice frozen concentrate unsweetened undiluted without added ascorbic acid','APPLE JUC FRZ CONC UNSWTND UNDIL WO/ VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09018,0900,'Apple juice frozen concentrate unsweetened diluted with 3 volume water without added ascorbic acid','APPLE JUC FRZ CONC UNSWTND DIL W/3 VOLUME H2O WO/ VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09019,0900,'Applesauce canned unsweetened without added ascorbic acid (Includes foods for USDAs Food Distribution Program)','APPLESAUCE CND UNSWTND WO/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.60 -09020,0900,'Applesauce canned sweetened without salt','APPLESAUCE CND SWTND WO/ SALT',,,'Y',,0,,6.25,3.36,8.37,3.75 -09021,0900,'Apricots raw','APRICOTS RAW',,,'Y','Pits',7,'Prunus armeniaca',6.25,3.36,8.37,3.60 -09022,0900,'Apricots canned water pack with skin solids and liquids','APRICOTS CND H2O PK W/SKN SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09023,0900,'Apricots canned water pack without skin solids and liquids','APRICOTS CND H2O PK WO/SKN SOL&LIQUIDS',,,,'Pits',6,,6.25,3.36,8.37,3.60 -09024,0900,'Apricots canned juice pack with skin solids and liquids','APRICOTS CND JUC PK W/SKN SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09025,0900,'Apricots canned extra light syrup pack with skin solids and liquids (Includes foods for USDAs Food Distribution Program)','APRICOTS CND EX LT SYRUP PK W/SKN SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.69 -09026,0900,'Apricots canned light syrup pack with skin solids and liquids','APRICOTS CND LT SYRUP PK W/SKN SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09027,0900,'Apricots canned heavy syrup pack with skin solids and liquids','APRICOTS CND HVY SYRUP PK W/SKN SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09028,0900,'Apricots canned heavy syrup pack without skin solids and liquids','APRICOTS CND HVY SYRUP PK WO/SKN SOL&LIQUIDS',,,,'Pits',6,,6.25,3.36,8.37,3.75 -09029,0900,'Apricots canned extra heavy syrup pack without skin solids and liquids','APRICOTS CND EX HVY SYRUP PK WO/SKN SOL&LIQUIDS',,,,'Pits',6,,6.25,3.36,8.37,3.78 -09030,0900,'Apricots dehydrated (low-moisture) sulfured uncooked','APRICOTS DEHYD (LOW-MOISTURE) SULFURED UNCKD',,,,,0,,6.25,3.36,8.37,3.60 -09031,0900,'Apricots dehydrated (low-moisture) sulfured stewed','APRICOTS DEHYD (LOW-MOISTURE) SULFURED STWD',,,,,0,,6.25,3.36,8.37,3.60 -09032,0900,'Apricots dried sulfured uncooked','APRICOTS DRIED SULFURED UNCKD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09033,0900,'Apricots dried sulfured stewed without added sugar','APRICOTS DRIED SULFURED STWD WO/ SUGAR',,,'Y',,0,,6.25,3.36,8.37,3.60 -09034,0900,'Apricots dried sulfured stewed with added sugar','APRICOTS DRIED SULFURED STWD W/ SUGAR',,,,,0,,6.25,3.36,8.37,3.60 -09035,0900,'Apricots frozen sweetened','APRICOTS FROZEN SWEETENED',,,,,0,,6.25,3.36,8.37,3.78 -09036,0900,'Apricot nectar canned with added ascorbic acid','APRICOT NECTAR CND W/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.78 -09037,0900,'Avocados raw all commercial varieties','AVOCADOS RAW ALL COMM VAR',,,'Y','Seed and skin',26,'Persea americana',6.25,3.36,8.37,3.60 -09038,0900,'Avocados raw California','AVOCADOS RAW CALIFORNIA',,,,'Seed and skin',33,'Persea americana',6.25,3.36,8.37,3.60 -09039,0900,'Avocados raw Florida','AVOCADOS RAW FLORIDA',,,,'Seed and skin',33,'Persea americana',6.25,3.36,8.37,3.60 -09040,0900,'Bananas raw','BANANAS RAW',,,'Y','Skin',36,'Musa acuminata Colla',6.25,3.36,8.37,3.60 -09041,0900,'Bananas dehydrated or banana powder','BANANAS DEHYD OR BANANA PDR',,,'Y',,0,,6.25,3.36,8.37,3.60 -09042,0900,'Blackberries raw','BLACKBERRIES RAW',,,'Y','Caps and spoiled berries',4,'Rubus spp.',6.25,3.36,8.37,3.60 -09043,0900,'Blackberry juice canned','BLACKBERRY JUC CND',,,'Y',,0,,,,, -09044,0900,'Cherries tart dried sweetened (Includes foods for USDAs Food Distribution Program)','CHERRIES TART DRIED SWTND',,,'Y',,0,,,,, -09046,0900,'Blackberries canned heavy syrup solids and liquids','BLACKBERRIES CND HVY SYRUP SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09048,0900,'Blackberries frozen unsweetened','BLACKBERRIES FRZ UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09050,0900,'Blueberries raw','BLUEBERRIES RAW',,,'Y','Stems and green or spoiled berries',5,'Vaccinium spp.',6.25,3.36,8.37,3.60 -09052,0900,'Blueberries canned heavy syrup solids and liquids','BLUEBERRIES CND HVY SYRUP SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09053,0900,'Blueberries wild frozen (Includes foods for USDAs Food Distribution Program)','BLUEBERRIES WILD FRZ',,,,,0,,6.25,,, -09054,0900,'Blueberries frozen unsweetened (Includes foods for USDAs Food Distribution Program)','BLUEBERRIES FRZ UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09055,0900,'Blueberries frozen sweetened','BLUEBERRIES FRZ SWTND',,,'Y',,0,,6.25,3.36,8.37,3.75 -09056,0900,'Boysenberries canned heavy syrup','BOYSENBERRIES CND HVY SYRUP',,,,,0,'Rubus ursinus var. loganobaccus',6.25,3.36,8.37,3.75 -09057,0900,'Boysenberries frozen unsweetened','BOYSENBERRIES FRZ UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09059,0900,'Breadfruit raw','BREADFRUIT RAW',,,'Y','9% core 13% skin',22,'Artocarpus altilis',6.25,3.36,8.37,3.60 -09060,0900,'Carambola (starfruit) raw','CARAMBOLA (STARFRUIT) RAW',,,'Y','Seeds and stem end',3,'Averrhoa carambola',6.25,3.36,8.37,3.60 -09061,0900,'Carissa (natal-plum) raw','CARISSA (NATAL-PLUM) RAW',,,,'7% seeds 7% skin',14,'Carissa macrocarpa',6.25,3.36,8.37,3.60 -09062,0900,'Cherimoya raw','CHERIMOYA RAW',,,,'Seeds skin and core',31,'Annona cherimola',6.25,3.36,8.37,3.60 -09063,0900,'Cherries sour red raw','CHERRIES SOUR RED RAW',,,'Y','Pits and stems',10,'Prunus cerasus',6.25,3.36,8.37,3.60 -09064,0900,'Cherries sour red canned water pack solids and liquids','CHERRIES SOUR RED CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09065,0900,'Cherries sour red canned light syrup pack solids and liquids','CHERRIES SOUR RED CND LT SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.71 -09066,0900,'Cherries sour red canned heavy syrup pack solids and liquids','CHERRIES SOUR RED CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09067,0900,'Cherries sour red canned extra heavy syrup pack solids and liquids','CHERRIES SOUR RED CND EX HVY SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09068,0900,'Cherries sour red frozen unsweetened (Includes foods for USDAs Food Distribution Program)','CHERRIES SOUR RED FRZ UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09070,0900,'Cherries sweet raw','CHERRIES SWEET RAW',,,'Y','Pits and stems',8,'Prunus avium',6.25,3.36,8.37,3.60 -09071,0900,'Cherries sweet canned water pack solids and liquids','CHERRIES SWT CND H2O PK SOL&LIQUIDS',,,'Y','Pits',8,,6.25,3.36,8.37,3.60 -09072,0900,'Cherries sweet canned juice pack solids and liquids','CHERRIES SWT CND JUC PK SOL&LIQUIDS',,,'Y','Pits',8,,6.25,3.36,8.37,3.70 -09073,0900,'Cherries sweet canned light syrup pack solids and liquids','CHERRIES SWT CND LT SYRUP PK SOL&LIQUIDS',,,'Y','Pits',8,,6.25,3.36,8.37,3.71 -09074,0900,'Cherries sweet canned pitted heavy syrup pack solids and liquids','CHERRIES SWT CND PITTED HVY SYRUP PK SOL & LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09075,0900,'Cherries sweet canned extra heavy syrup pack solids and liquids','CHERRIES SWT CND EX HVY SYRUP PK SOL&LIQUIDS',,,,'Pits',8,,6.25,3.36,8.37,3.78 -09077,0900,'Crabapples raw','CRABAPPLES RAW',,,,'Core and stems',8,'Malus spp.',6.25,3.36,8.37,3.60 -09078,0900,'Cranberries raw','CRANBERRIES RAW',,,'Y','Stems and spoiled berries',2,'Vaccinium macrocarpon',6.25,3.36,8.37,3.60 -09079,0900,'Cranberries dried sweetened (Includes foods for USDAs Food Distribution Program)','CRANBERRIES DRIED SWTND',,,'Y',,0,,,3.36,8.37,3.60 -09081,0900,'Cranberry sauce canned sweetened','CRANBERRY SAU CND SWTND',,,'Y',,0,,6.25,3.36,8.37,3.84 -09082,0900,'Cranberry-orange relish canned','CRANBERRY-ORANGE RELISH CND',,,,,0,,6.25,3.36,8.37,3.82 -09083,0900,'Currants european black raw','CURRANTS EUROPEAN BLACK RAW',,,,'Stems',2,'Ribes nigrum',6.25,3.36,8.37,3.60 -09084,0900,'Currants red and white raw','CURRANTS RED&WHITE RAW',,,'Y','Stems',2,'Ribes rubrum',6.25,3.36,8.37,3.60 -09085,0900,'Currants zante dried','CURRANTS ZANTE DRIED','raisin',,'Y',,0,'Vitis vinifera',6.25,3.36,8.37,3.60 -09086,0900,'Custard-apple (bullocks-heart) raw','CUSTARD-APPLE (BULLOCKS-HEART) RAW',,,,'Seeds and skin',42,'Annona reticulata',6.25,3.36,8.37,3.60 -09087,0900,'Dates deglet noor','DATES DEGLET NOOR',,,'Y','Pits',10,'Phoenix dactylifera',6.25,3.36,8.37,3.60 -09088,0900,'Elderberries raw','ELDERBERRIES RAW',,,,,0,'Sambucus spp.',6.25,3.36,8.37,3.60 -09089,0900,'Figs raw','FIGS RAW',,,'Y','Stems',1,'Ficus carica',6.25,3.36,8.37,3.60 -09090,0900,'Figs canned water pack solids and liquids','FIGS CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09091,0900,'Figs canned light syrup pack solids and liquids','FIGS CND LT SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09092,0900,'Figs canned heavy syrup pack solids and liquids','FIGS CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09093,0900,'Figs canned extra heavy syrup pack solids and liquids','FIGS CND EX HVY SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09094,0900,'Figs dried uncooked','FIGS DRIED UNCOOKED',,,'Y','Stems',4,,6.25,3.36,8.37,3.60 -09095,0900,'Figs dried stewed','FIGS DRIED STEWED',,,'Y',,0,,6.25,3.36,8.37,3.60 -09096,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned water pack solids and liquids','FRUIT COCKTAIL CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09097,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned juice pack solids and liquids','FRUIT COCKTAIL CND JUC PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09098,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned extra light syrup solids and liquids','FRUIT COCKTAIL CND EX LT SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.69 -09099,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned light syrup solids and liquids','FRUIT COCKTAIL CND LT SYRUP SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09100,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned heavy syrup solids and liquids','FRUIT COCKTAIL CND HVY SYRUP SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09101,0900,'Fruit cocktail (peach and pineapple and pear and grape and cherry) canned extra heavy syrup solids and liquids','FRUIT COCKTAIL CND EX HVY SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09102,0900,'Fruit salad (peach and pear and apricot and pineapple and cherry) canned water pack solids and liquids','FRUIT SALAD CND H2O PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.60 -09103,0900,'Fruit salad (peach and pear and apricot and pineapple and cherry) canned juice pack solids and liquids','FRUIT SALAD CND JUC PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.70 -09104,0900,'Fruit salad (peach and pear and apricot and pineapple and cherry) canned light syrup solids and liquids','FRUIT SALAD CND LT SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.71 -09106,0900,'Fruit salad (peach and pear and apricot and pineapple and cherry) canned extra heavy syrup solids and liquids','FRUIT SALAD CND EX HVY SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09107,0900,'Gooseberries raw','GOOSEBERRIES RAW',,,,,0,'Ribes spp.',6.25,3.36,8.37,3.60 -09109,0900,'Gooseberries canned light syrup pack solids and liquids','GOOSEBERRIES CND LT SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.71 -09110,0900,'Goji berries dried','GOJI BERRIES DRIED','wolfberries',,,,0,'Lycium barbarum L.',,,, -09111,0900,'Grapefruit raw pink and red and white all areas','GRAPEFRUIT RAW PINK&RED&WHITE ALL AREAS',,,'Y','Peel seeds core and membrane',50,'Citrus paradisi',6.25,3.36,8.37,3.60 -09112,0900,'Grapefruit raw pink and red all areas','GRAPEFRUIT RAW PINK&RED ALL AREAS',,,,'Peel seeds core and membrane',49,'Citrus paradisi',6.25,3.36,8.37,3.60 -09113,0900,'Grapefruit raw pink and red California and Arizona','GRAPEFRUIT RAW PINK&RED CALIFORNIA&ARIZONA',,,,'Peel seeds core and membrane',49,'Citrus paradisi',6.25,3.36,8.37,3.60 -09114,0900,'Grapefruit raw pink and red Florida','GRAPEFRUIT RAW PINK & RED FLORIDA',,,,'Peel seeds core and membrane',49,'Citrus paradisi',6.25,3.36,8.37,3.60 -09116,0900,'Grapefruit raw white all areas','GRAPEFRUIT RAW WHITE ALL AREAS',,,'Y','Peel seeds core and membrane',51,'Citrus paradisi',6.25,3.36,8.37,3.60 -09117,0900,'Grapefruit raw white California','GRAPEFRUIT RAW WHITE CALIFORNIA',,,,'Peel seeds core and membrane',51,'Citrus paradisi',6.25,3.36,8.37,3.60 -09118,0900,'Grapefruit raw white Florida','GRAPEFRUIT RAW WHITE FLORIDA',,,,'Peel seeds core and membrane',51,'Citrus paradisi',6.25,3.36,8.37,3.60 -09119,0900,'Grapefruit sections canned water pack solids and liquids','GRAPEFRUIT SECTIONS CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09120,0900,'Grapefruit sections canned juice pack solids and liquids','GRAPEFRUIT SECTIONS CND JUC PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09121,0900,'Grapefruit sections canned light syrup pack solids and liquids','GRAPEFRUIT SECTIONS CND LT SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09123,0900,'Grapefruit juice white canned or bottled unsweetened','GRAPEFRUIT JUC WHITE CND OR BTLD UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.92 -09124,0900,'Grapefruit juice white canned sweetened','GRAPEFRUIT JUC WHITE CND SWTND',,,,,0,,6.25,3.36,8.37,3.92 -09125,0900,'Grapefruit juice white frozen concentrate unsweetened undiluted','GRAPEFRUIT JUC WHITE FRZ CONC UNSWTND UNDIL',,,'Y',,0,,6.25,3.36,8.37,3.92 -09126,0900,'Grapefruit juice white frozen concentrate unsweetened diluted with 3 volume water','GRAPEFRUIT JUC WHITE FRZ CONC UNSWTND DIL W/ 3 VOLUME H2O',,,'Y',,0,,6.25,3.36,8.37,3.92 -09127,0900,'Grapefruit juice pink or red with added calcium','GRAPEFRUIT JUC PINK OR RED W/ ADDED CA',,,'Y',,0,,,,, -09128,0900,'Grapefruit juice white raw','GRAPEFRUIT JUC WHITE RAW',,,'Y',,0,,6.25,3.36,8.37,3.92 -09129,0900,'Grapes muscadine raw','Grapes muscadine raw',,,,'Seeds',4,'Vitis rotundifolia',6.25,3.36,8.37,3.60 -09130,0900,'Grape juice canned or bottled unsweetened with added ascorbic acid','GRAPE JUC CND OR BTLD UNSWTND W/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09131,0900,'Grapes american type (slip skin) raw','GRAPES AMERICAN TYPE (SLIP SKN) RAW',,,'Y','6% seeds 34% skin 2% stems',42,'Vitis spp.',6.25,3.36,8.37,3.60 -09132,0900,'Grapes red or green (European type such as Thompson seedless) raw','GRAPES RED OR GRN (EURO TYPE SUCH AS THOMPSON SEEDLESS) RAW',,,'Y','Stems',4,'Vitis vinifera',6.25,3.36,8.37,3.60 -09133,0900,'Grapes canned thompson seedless water pack solids and liquids','GRAPES CND THOMPSON SEEDLESS H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09134,0900,'Grapes canned thompson seedless heavy syrup pack solids and liquids','GRAPES CND THOMPSON SEEDLESS HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09135,0900,'Grape juice canned or bottled unsweetened without added ascorbic acid','GRAPE JUC CND OR BTLD UNSWTND WO/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09138,0900,'Groundcherries (cape-gooseberries or poha) raw','GROUNDCHERRIES (CAPE-GOOSEBERRIES OR POHA) RAW',,,,'Husks',6,'Physalis spp.',6.25,3.36,8.37,3.60 -09139,0900,'Guavas common raw','GUAVAS COMMON RAW',,,'Y','Skin',22,'Psidium guajava',6.25,3.36,8.37,3.60 -09140,0900,'Guavas strawberry raw','GUAVAS STRAWBERRY RAW',,,,'Seeds stem and blossom end',15,'Psidium cattleianum',6.25,3.36,8.37,3.60 -09143,0900,'Guava sauce cooked','GUAVA SAUCE COOKED',,,'Y',,0,,6.25,3.36,8.37,3.60 -09144,0900,'Jackfruit raw','JACKFRUIT RAW',,,,'Seeds and skin',72,'Artocarpus heterophyllus',6.25,3.36,8.37,3.60 -09145,0900,'Java-plum (jambolan) raw','JAVA-PLUM (JAMBOLAN) RAW',,,,'Seed',19,'Syzygium cumini',6.25,3.36,8.37,3.60 -09146,0900,'Jujube raw','JUJUBE RAW',,,,'Seeds',7,'Ziziphus jujuba',6.25,3.36,8.37,3.60 -09147,0900,'Jujube Chinese fresh dried','JUJUBE CHINESE FRSH DRIED',,,,'Seeds',11,,6.25,3.36,8.37,3.60 -09148,0900,'Kiwifruit green raw','KIWIFRUIT GRN RAW','Chinese gooseberry',,'Y','Skin',24,'Actinidia deliciosa',6.25,3.36,8.37,3.60 -09149,0900,'Kumquats raw','KUMQUATS RAW',,,'Y','Seeds',7,'Fortunella spp.',6.25,3.36,8.37,3.60 -09150,0900,'Lemons raw without peel','LEMONS RAW WITHOUT PEEL',,,'Y','45% peel 2% seeds',47,'Citrus limon',6.25,3.36,8.37,2.48 -09152,0900,'Lemon juice raw','LEMON JUICE RAW',,,'Y',,0,,6.25,3.36,8.37,2.70 -09153,0900,'Lemon juice from concentrate canned or bottled','LEMON JUC FROM CONC CND OR BTLD',,,'Y',,0,,6.25,3.36,8.37,2.70 -09156,0900,'Lemon peel raw','LEMON PEEL RAW',,,'Y',,0,,6.25,,, -09159,0900,'Limes raw','LIMES RAW',,,'Y','Peel and seeds',16,'Citrus latifolia',6.25,3.36,8.37,2.48 -09160,0900,'Lime juice raw','LIME JUICE RAW',,,'Y',,0,,6.25,3.36,8.37,2.70 -09161,0900,'Lime juice canned or bottled unsweetened','LIME JUC CND OR BTLD UNSWTND',,,'Y',,0,,6.25,3.36,8.37,2.70 -09163,0900,'Blueberries dried sweetened','BLUEBERRIES DRIED SWTND',,,'Y',,0,,,3.36,8.37,3.60 -09164,0900,'Litchis raw','LITCHIS RAW','lychee',,'Y','Shell and seeds',40,'Litchi chinensis',6.25,3.36,8.37,3.60 -09165,0900,'Litchis dried','LITCHIS DRIED','lychee',,'Y','Shell and seeds',46,,6.25,3.36,8.37,3.60 -09167,0900,'Loganberries frozen','LOGANBERRIES FROZEN',,,'Y',,0,'Rubus ursinus var. loganobaccus',6.25,3.36,8.37,3.60 -09172,0900,'Longans raw','LONGANS RAW',,,,'Shell and seeds',47,'Dimocarpus longan',6.25,3.36,8.37,3.60 -09173,0900,'Longans dried','LONGANS DRIED',,,,'Shell and seeds',64,,6.25,3.36,8.37,3.60 -09174,0900,'Loquats raw','LOQUATS RAW',,,,'Seeds and skin',35,'Eriobotrya japonica',6.25,3.36,8.37,3.60 -09175,0900,'Mammy-apple (mamey) raw','MAMMY-APPLE (MAMEY) RAW',,,,'Seeds and skin',40,'Mammea americana',6.25,3.36,8.37,3.60 -09176,0900,'Mangos raw','MANGOS RAW',,,'Y','Seeds and skin',29,'Mangifera indica',6.25,3.36,8.37,3.60 -09177,0900,'Mangosteen canned syrup pack','MANGOSTEEN CND SYRUP PK',,,,,0,'Garcinia mangostana',6.25,3.36,8.37,3.75 -09178,0900,'Mango dried sweetened','MANGO DRIED SWTND',,,'Y',,0,,,,, -09181,0900,'Melons cantaloupe raw','MELONS CANTALOUPE RAW',,,'Y','9% cavity contents 1% cutting loss 39% rind',49,'Cucumis melo',6.25,3.36,8.37,3.60 -09183,0900,'Melons casaba raw','MELONS CASABA RAW',,,'Y','11% cavity contents 29% rind',40,'Cucumis melo',6.25,3.36,8.37,3.60 -09184,0900,'Melons honeydew raw','MELONS HONEYDEW RAW',,,'Y','5% cavity contents rind 49%',54,'Cucumis melo',6.25,3.36,8.37,3.60 -09185,0900,'Melon balls frozen','MELON BALLS FROZEN',,,,,0,,6.25,3.36,8.37,3.60 -09190,0900,'Mulberries raw','MULBERRIES RAW',,,'Y',,0,'Morus nigra',6.25,3.36,8.37,3.60 -09191,0900,'Nectarines raw','NECTARINES RAW',,,'Y','Pit',9,'Prunus persica var. nucipersica',6.25,3.36,8.37,3.60 -09192,0900,'Oheloberries raw','OHELOBERRIES RAW',,,,,0,'Vaccinium reticulatum',6.25,3.36,8.37,3.60 -09193,0900,'Olives ripe canned (small-extra large)','OLIVES RIPE CND (SMALL-EXTRA LRG)',,,'Y',,0,'Olea europaea',6.25,3.36,8.37,3.60 -09194,0900,'Olives ripe canned (jumbo-super colossal)','OLIVES RIPE CND (JUMBO-SUPER COLOSSAL)',,,'Y',,0,,6.25,3.36,8.37,3.60 -09195,0900,'Olives pickled canned or bottled green','OLIVES PICKLED CND OR BTLD GRN',,,'Y',,0,,6.25,3.36,8.37,3.60 -09200,0900,'Oranges raw all commercial varieties','ORANGES RAW ALL COMM VAR',,,'Y','Peel and seeds',27,'Citrus sinensis',6.25,3.36,8.37,3.60 -09201,0900,'Oranges raw California valencias','ORANGES RAW CALIFORNIA VALENCIAS',,,,'Peel and seeds',25,'Citrus sinensis',6.25,3.36,8.37,3.60 -09202,0900,'Oranges raw navels (Includes foods for USDAs Food Distribution Program)','ORANGES RAW NAVELS',,,,'Peel and navel',32,'Citrus sinensis',6.25,3.36,8.37,3.60 -09203,0900,'Oranges raw Florida','ORANGES RAW FLORIDA',,,,'Peel and seeds',26,'Citrus sinensis',6.25,3.36,8.37,3.60 -09205,0900,'Oranges raw with peel','ORANGES RAW WITH PEEL',,,,'Seeds',1,'Citrus sinensis',6.25,3.36,8.37,3.60 -09206,0900,'Orange juice raw (Includes foods for USDAs Food Distribution Program)','ORANGE JUICE RAW',,,'Y',,0,,6.25,3.36,8.37,3.92 -09207,0900,'Orange juice canned unsweetened','ORANGE JUC CND UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.92 -09209,0900,'Orange juice chilled includes from concentrate','ORANGE JUC CHILLED INCL FROM CONC',,,'Y',,0,,6.25,3.36,8.37,3.92 -09210,0900,'Orange juice chilled includes from concentrate with added calcium and vitamin D','ORANGE JUC CHILLED INCL FROM CONC W/ ADDED CA & VITAMIN D',,,'Y',,0,,6.25,3.36,8.37,3.92 -09211,0900,'Orange juice chilled includes from concentrate with added calcium','ORANGE JUC CHILLED INCL FROM CONC W/ ADDED CA',,,'Y',,0,,6.25,3.36,8.37,3.92 -09212,0900,'Orange juice frozen concentrate unsweetened diluted with 3 volume water with added calcium','ORANGE JUC FRZ CONC UNSWTND DIL W/ 3 VOLUME H2O W/ ADDED CA',,,,,0,,,,, -09213,0900,'Orange juice frozen concentrate unsweetened undiluted with added calcium','ORANGE JUC FRZ CONC UNSWTND UNDIL W/ ADDED CA',,,'Y',,0,,,,, -09214,0900,'Orange juice frozen concentrate unsweetened undiluted','ORANGE JUC FRZ CONC UNSWTND UNDIL',,,'Y',,0,,6.25,3.36,8.37,3.92 -09215,0900,'Orange juice frozen concentrate unsweetened diluted with 3 volume water','ORANGE JUC FRZ CONC UNSWTND DIL W/3 VOLUME H2O',,,'Y',,0,,6.25,3.36,8.37,3.92 -09216,0900,'Orange peel raw','ORANGE PEEL RAW',,,,,0,,6.25,3.36,8.37,3.60 -09217,0900,'Orange-grapefruit juice canned or bottled unsweetened','ORANGE-GRAPEFRUIT JUC CND OR BTLD UNSWTND',,,,,0,,6.25,3.36,8.37,3.92 -09218,0900,'Tangerines (mandarin oranges) raw','TANGERINES (MANDARIN ORANGES) RAW',,,'Y','Peel and seeds',26,'Citrus reticulata',6.25,3.36,8.37,3.60 -09219,0900,'Tangerines (mandarin oranges) canned juice pack','TANGERINES (MANDARIN ORANGES) CND JUC PK',,,'Y',,0,,6.25,3.36,8.37,3.70 -09220,0900,'Tangerines (mandarin oranges) canned light syrup pack','TANGERINES (MANDARIN ORANGES) CND LT SYRUP PK',,,'Y',,0,,6.25,3.36,8.37,3.71 -09221,0900,'Tangerine juice raw','TANGERINE JUICE RAW',,,'Y',,0,,6.25,3.36,8.37,3.92 -09226,0900,'Papayas raw','PAPAYAS RAW',,,'Y','Seeds and skin',38,'Carica papaya',6.25,3.36,8.37,3.60 -09228,0900,'Papaya canned heavy syrup drained','PAPAYA CND HVY SYRUP DRND',,,,,0,,6.25,3.36,8.37,3.60 -09229,0900,'Papaya nectar canned','PAPAYA NECTAR CANNED',,,'Y',,0,,6.25,3.36,8.37,3.80 -09231,0900,'Passion-fruit (granadilla) purple raw','PASSION-FRUIT (GRANADILLA) PURPLE RAW',,,'Y','Shell',48,'Passiflora edulis',6.25,3.36,8.37,3.60 -09232,0900,'Passion-fruit juice purple raw','PASSION-FRUIT JUC PURPLE RAW',,,'Y',,0,,6.25,3.36,8.37,3.60 -09233,0900,'Passion-fruit juice yellow raw','PASSION-FRUIT JUC YEL RAW',,,'Y',,0,'Passiflora edulis f. flavicarpa',6.25,3.36,8.37,3.92 -09236,0900,'Peaches yellow raw','PEACHES YEL RAW',,,'Y','Pit',4,'Prunus persica',6.25,3.36,8.37,3.60 -09237,0900,'Peaches canned water pack solids and liquids','PEACHES CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09238,0900,'Peaches canned juice pack solids and liquids','PEACHES CND JUC PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09239,0900,'Peaches canned extra light syrup solids and liquids (Includes foods for USDAs Food Distribution Program)','PEACHES CND EX LT SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.69 -09240,0900,'Peaches canned light syrup pack solids and liquids','PEACHES CND LT SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09241,0900,'Peaches canned heavy syrup pack solids and liquids','PEACHES CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09242,0900,'Peaches canned extra heavy syrup pack solids and liquids','PEACHES CND EX HVY SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09243,0900,'Peaches spiced canned heavy syrup pack solids and liquids','PEACHES SPICED CND HVY SYRUP PK SOL&LIQUIDS',,,'Y','Pits',4,,6.25,3.36,8.37,3.75 -09244,0900,'Peaches dehydrated (low-moisture) sulfured uncooked','PEACHES DEHYD (LOW-MOISTURE) SULFURED UNCKD',,,,,0,,6.25,3.36,8.37,3.60 -09245,0900,'Peaches dehydrated (low-moisture) sulfured stewed','PEACHES DEHYD (LOW-MOISTURE) SULFURED STWD',,,,,0,,6.25,3.36,8.37,3.60 -09246,0900,'Peaches dried sulfured uncooked','PEACHES DRIED SULFURED UNCKD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09247,0900,'Peaches dried sulfured stewed without added sugar','PEACHES DRIED SULFURED STWD WO/ SUGAR',,,'Y',,0,,6.25,3.36,8.37,3.60 -09248,0900,'Peaches dried sulfured stewed with added sugar','PEACHES DRIED SULFURED STWD W/ SUGAR',,,,,0,,6.25,3.36,8.37,3.60 -09250,0900,'Peaches frozen sliced sweetened','PEACHES FRZ SLICED SWTND',,,'Y',,0,,6.25,3.36,8.37,3.78 -09251,0900,'Peach nectar canned with sucralose without added ascorbic acid','PEACH NECTAR CND W/ SUCRALOSE WO/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.79 -09252,0900,'Pears raw','PEARS RAW',,,'Y','Stem core and seeds',10,'Pyrus communis',6.25,3.36,8.37,3.60 -09253,0900,'Pears canned water pack solids and liquids','PEARS CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09254,0900,'Pears canned juice pack solids and liquids','PEARS CND JUC PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09255,0900,'Pears canned extra light syrup pack solids and liquids (Includes foods for USDAs Food Distribution Program)','PEARS CND EX LT SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.69 -09256,0900,'Pears canned light syrup pack solids and liquids','PEARS CND LT SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09257,0900,'Pears canned heavy syrup pack solids and liquids','PEARS CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09258,0900,'Pears canned extra heavy syrup pack solids and liquids','PEARS CND EX HVY SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09259,0900,'Pears dried sulfured uncooked','PEARS DRIED SULFURED UNCKD',,,'Y',,0,,6.25,3.36,8.37,3.60 -09260,0900,'Pears dried sulfured stewed without added sugar','PEARS DRIED SULFURED STWD WO/ SUGAR',,,'Y',,0,,6.25,3.36,8.37,3.60 -09261,0900,'Pears dried sulfured stewed with added sugar','PEARS DRIED SULFURED STWD W/ SUGAR',,,,,0,,6.25,3.36,8.37,3.60 -09262,0900,'Pear nectar canned without added ascorbic acid','PEAR NECTAR CND WO/ VIT C',,,'Y',,0,,6.25,3.36,8.37,3.75 -09263,0900,'Persimmons japanese raw','PERSIMMONS JAPANESE RAW',,,'Y','2% calyx 14% skin',16,'Diospyros kaki',6.25,3.36,8.37,3.60 -09264,0900,'Persimmons japanese dried','PERSIMMONS JAPANESE DRIED',,,,'Stems',8,,6.25,3.36,8.37,3.60 -09265,0900,'Persimmons native raw','PERSIMMONS NATIVE RAW',,,,'2% calyx 16% seeds',18,'Diospyros virginiana',6.25,3.36,8.37,3.60 -09266,0900,'Pineapple raw all varieties','PINEAPPLE RAW ALL VAR',,,'Y','8% core 16% crown 26% parings',49,'Ananas comosus',6.25,3.36,8.37,3.60 -09267,0900,'Pineapple canned water pack solids and liquids','PINEAPPLE CND H2O PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.60 -09268,0900,'Pineapple canned juice pack solids and liquids','PINEAPPLE CND JUC PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.70 -09269,0900,'Pineapple canned light syrup pack solids and liquids','PINEAPPLE CND LT SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.71 -09270,0900,'Pineapple canned heavy syrup pack solids and liquids','PINEAPPLE CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09271,0900,'Pineapple canned extra heavy syrup pack solids and liquids','PINEAPPLE CND EX HVY SYRUP PK SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.78 -09272,0900,'Pineapple frozen chunks sweetened','PINEAPPLE FRZ CHUNKS SWTND',,,'Y',,0,,6.25,3.36,8.37,3.78 -09273,0900,'Pineapple juice canned or bottled unsweetened without added ascorbic acid','PINEAPPLE JUC CND OR BTLD UNSWTND WO/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09274,0900,'Pineapple juice frozen concentrate unsweetened undiluted','PINEAPPLE JUC FRZ CONC UNSWTND UNDIL',,,,,0,,6.25,3.36,8.37,3.92 -09275,0900,'Pineapple juice frozen concentrate unsweetened diluted with 3 volume water','PINEAPPLE JUC FRZ CONC UNSWTND DIL W/3 VOLUME H2O',,,,,0,,6.25,3.36,8.37,3.92 -09276,0900,'Pitanga (surinam-cherry) raw','PITANGA (SURINAM-CHERRY) RAW',,,,'Seed stem and blossom end',12,'Eugenia uniflora',6.25,3.36,8.37,3.60 -09277,0900,'Plantains yellow raw','PLANTAINS YEL RAW',,,'Y','Skin and stems',31,'Musa X paradisiaca',6.25,3.36,8.37,3.60 -09278,0900,'Plantains yellow baked','PLANTAINS YEL BKD',,,'Y','No refuse',0,,6.25,3.36,8.37,3.60 -09279,0900,'Plums raw','PLUMS RAW',,,'Y','Pits',6,'Prunus spp.',6.25,3.36,8.37,3.60 -09281,0900,'Plums canned purple water pack solids and liquids','PLUMS CND PURPLE H2O PK SOL&LIQUIDS',,,'Y','Pits',5,,6.25,3.36,8.37,3.60 -09282,0900,'Plums canned purple juice pack solids and liquids','PLUMS CND PURPLE JUC PK SOL&LIQUIDS',,,'Y','Pits',5,,6.25,3.36,8.37,3.70 -09283,0900,'Plums canned purple light syrup pack solids and liquids','PLUMS CND PURPLE LT SYRUP PK SOL&LIQUIDS',,,'Y','Pits',5,,6.25,3.36,8.37,3.71 -09284,0900,'Plums canned purple heavy syrup pack solids and liquids','PLUMS CND PURPLE HVY SYRUP PK SOL&LIQUIDS',,,'Y','Pits',5,,6.25,3.36,8.37,3.75 -09285,0900,'Plums canned purple extra heavy syrup pack solids and liquids','PLUMS CND PURPLE EX HVY SYRUP PK SOL&LIQUIDS',,,,'Pits',5,,6.25,3.36,8.37,3.78 -09286,0900,'Pomegranates raw','POMEGRANATES RAW',,,'Y','Skin and membrane',44,'Punica granatum',6.25,3.36,8.37,3.60 -09287,0900,'Prickly pears raw','PRICKLY PEARS RAW',,,,'Seeds skin and bud end',25,'Opuntia spp.',6.25,3.36,8.37,3.60 -09288,0900,'Prunes canned heavy syrup pack solids and liquids','PRUNES CND HVY SYRUP PK SOL&LIQUIDS',,,,'Pits',12,'Prunus domestica',6.25,3.36,8.37,3.75 -09289,0900,'Prunes dehydrated (low-moisture) uncooked','PRUNES DEHYD (LOW-MOISTURE) UNCKD',,,,,0,,6.25,3.36,8.37,3.60 -09290,0900,'Prunes dehydrated (low-moisture) stewed','PRUNES DEHYD (LOW-MOISTURE) STWD',,,,,0,,6.25,3.36,8.37,3.60 -09291,0900,'Plums dried (prunes) uncooked','PLUMS DRIED (PRUNES) UNCKD',,,'Y','Pits',13,,6.25,3.36,8.37,3.60 -09292,0900,'Plums dried (prunes) stewed without added sugar','PLUMS DRIED (PRUNES) STWD WO/ ADDED SUGAR',,,'Y','Pits',15,,6.25,3.36,8.37,3.60 -09293,0900,'Plums dried (prunes) stewed with added sugar','PLUMS DRIED (PRUNES) STWD W/ ADDED SUGAR',,,,'Pits',15,,6.25,3.36,8.37,3.60 -09294,0900,'Prune juice canned','PRUNE JUICE CANNED',,,'Y',,0,,6.25,3.36,8.37,3.92 -09295,0900,'Pummelo raw','PUMMELO RAW',,,,'Seeds skin and membrane',44,'Citrus maxima',6.25,3.36,8.37,3.60 -09296,0900,'Quinces raw','QUINCES RAW',,,,'Core seeds and parings',39,'Cydonia oblonga',6.25,3.36,8.37,3.60 -09297,0900,'Raisins golden seedless','RAISINS GOLDEN SEEDLESS',,,'Y',,0,'Vitis vinifera',6.25,3.36,8.37,3.60 -09298,0900,'Raisins dark seedless (Includes foods for USDAs Food Distribution Program)','RAISINS DK SEEDLESS (INCLUDES FOODS FOR USDAS FD',,,'Y',,0,'Vitis vinifera',6.25,3.36,8.37,3.60 -09299,0900,'Raisins seeded','RAISINS SEEDED',,,,,0,'Vitis vinifera',6.25,3.36,8.37,3.60 -09301,0900,'Rambutan canned syrup pack','RAMBUTAN CND SYRUP PK',,,,,0,'Nephelium lappaceum',6.25,3.36,8.37,3.75 -09302,0900,'Raspberries raw','RASPBERRIES RAW',,,'Y','Caps stems and spoiled berries',4,'Rubus spp.',6.25,3.36,8.37,3.60 -09304,0900,'Raspberries canned red heavy syrup pack solids and liquids','RASPBERRIES CND RED HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09306,0900,'Raspberries frozen red sweetened','RASPBERRIES FRZ RED SWTND',,,'Y',,0,,6.25,3.36,8.37,3.78 -09307,0900,'Rhubarb raw','RHUBARB RAW',,,'Y','19% ends 6% leaves',25,'Rheum rhabarbarum',6.25,3.36,8.37,3.60 -09309,0900,'Rhubarb frozen uncooked','RHUBARB FROZEN UNCOOKED',,,'Y',,0,,6.25,3.36,8.37,3.60 -09310,0900,'Rhubarb frozen cooked with sugar','RHUBARB FRZ CKD W/SUGAR',,,'Y',,0,,6.25,3.36,8.37,3.78 -09311,0900,'Roselle raw','ROSELLE RAW',,,,'Seed pods and stem',39,'Hibiscus sabdariffa',6.25,3.36,8.37,3.60 -09312,0900,'Rose-apples raw','ROSE-APPLES RAW',,,,'Caps and pits',33,'Syzygium jambos',6.25,3.36,8.37,3.60 -09313,0900,'Sapodilla raw','SAPODILLA RAW',,,,'Seeds and skin',20,'Manilkara zapota',6.25,3.36,8.37,3.60 -09314,0900,'Sapote mamey raw','SAPOTE MAMEY RAW','mamey colorado marmalade plum',,,'Seeds and skin',31,'Pouteria sapota',6.25,3.36,8.37,3.60 -09315,0900,'Soursop raw','SOURSOP RAW',,,'Y','Seeds and skin',33,'Annona muricata',6.25,3.36,8.37,3.60 -09316,0900,'Strawberries raw','STRAWBERRIES RAW',,,'Y','Caps and stems',6,'Fragaria X ananassa',6.25,3.36,8.37,3.60 -09317,0900,'Strawberries canned heavy syrup pack solids and liquids','STRAWBERRIES CND HVY SYRUP PK SOL&LIQUIDS',,,'Y',,0,,6.25,3.36,8.37,3.75 -09318,0900,'Strawberries frozen unsweetened (Includes foods for USDAs Food Distribution Program)','STRAWBERRIES FRZ UNSWTND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09320,0900,'Strawberries frozen sweetened sliced','STRAWBERRIES FRZ SWTND SLICED',,,'Y',,0,,6.25,3.36,8.37,3.60 -09321,0900,'Sugar-apples (sweetsop) raw','SUGAR-APPLES (SWEETSOP) RAW',,,,'Seeds and skin',45,'Annona squamosa',6.25,3.36,8.37,3.60 -09322,0900,'Tamarinds raw','TAMARINDS RAW',,,'Y','Pods and seeds',66,'Tamarindus indica',6.25,3.36,8.37,3.60 -09325,0900,'Fruit salad (pineapple and papaya and banana and guava) tropical canned heavy syrup solids and liquids','FRUIT SALAD TROPICAL CND HVY SYRUP SOL&LIQUIDS',,,,,0,,6.25,3.36,8.37,3.75 -09326,0900,'Watermelon raw','WATERMELON RAW',,,'Y','Rind seeds and cutting loss',48,'Citrullus lanatus',6.25,3.36,8.37,3.60 -09328,0900,'Maraschino cherries canned drained','MARASCHINO CHERRIES CND DRND',,,'Y',,0,,6.25,3.36,8.37,3.87 -09334,0900,'Feijoa raw','FEIJOA RAW',,,,'Skin',43,'Acca sellowiana',6.25,3.36,8.37,3.60 -09340,0900,'Pears asian raw','PEARS ASIAN RAW',,,'Y','Core and stem',9,'Pyrus pyrifolia (Burman f.) Nakai',6.25,3.36,8.37,3.60 -09351,0900,'Fruit cocktail canned heavy syrup drained','FRUIT COCKTAIL CND HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.60 -09352,0900,'Blueberries canned light syrup drained','BLUEBERRIES CND LT SYRUP DRND',,,'Y',,0,,6.25,3.36,8.37,3.60 -09353,0900,'Blueberries wild canned heavy syrup drained','BLUEBERRIES WILD CND HVY SYRUP DRND',,,,,0,,6.25,3.36,8.37,3.60 -09354,0900,'Pineapple canned juice pack drained','PINEAPPLE CND JUC PK DRND',,,'Y',,0,,,3.36,8.37,3.70 -09357,0900,'Apricots canned heavy syrup drained','APRICOTS CND HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.75 -09362,0900,'Cherries sour canned water pack drained','CHERRIES SOUR CND H2O PK DRND',,,,,0,,6.25,3.36,8.37,3.60 -09367,0900,'Cherries sweet canned pitted heavy syrup drained','CHERRIES SWT CND PITTED HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.75 -09370,0900,'Peaches canned heavy syrup drained','PEACHES CND HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.75 -09374,0900,'Pears canned heavy syrup drained','PEARS CND HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.75 -09379,0900,'Plums canned heavy syrup drained','PLUMS CND HVY SYRUP DRND',,,'Y',,0,,,3.36,8.37,3.75 -09383,0900,'Tangerines (mandarin oranges) canned juice pack drained','TANGERINES (MANDARIN ORANGES) CND JUC PK DRND',,,'Y',,0,,,3.36,8.37,3.70 -09400,0900,'Apple juice canned or bottled unsweetened with added ascorbic acid','APPLE JUC CND OR BTLD UNSWTND W/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09401,0900,'Applesauce canned unsweetened with added ascorbic acid','APPLESAUCE CND UNSWTND W/ VIT C',,,,,0,,6.25,3.36,8.37,3.60 -09402,0900,'Applesauce canned sweetened with salt','APPLESAUCE CND SWTND W/SALT',,,,,0,,6.25,3.36,8.37,3.75 -09404,0900,'Grapefruit juice pink raw','GRAPEFRUIT JUICE PINK RAW',,,,,0,,6.25,3.36,8.37,3.92 -09407,0900,'Peach nectar canned with added ascorbic acid','PEACH NECTAR CND W/ VIT C',,,,,0,,6.25,3.36,8.37,3.79 -09408,0900,'Pear nectar canned with added ascorbic acid','PEAR NECTAR CND W/ VIT C','vitamin C',,,,0,,6.25,3.36,8.37,3.75 -09409,0900,'Pineapple juice canned or bottled unsweetened with added ascorbic acid','PINEAPPLE JUC CND OR BTLD UNSWTND W/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.92 -09410,0900,'Apple juice frozen concentrate unsweetened undiluted with added ascorbic acid','APPLE JUC FRZ CONC UNSWTND UNDIL W/ VIT C',,,,,0,,6.25,3.36,8.37,3.92 -09411,0900,'Apple juice frozen concentrate unsweetened diluted with 3 volume water with added ascorbic acid','APPLE JUC FRZ CONC UNSWTND DIL W/3 VOLUME H2O W/ VIT C',,,,,0,,6.25,3.36,8.37,3.92 -09412,0900,'Pears raw bartlett (Includes foods for USDAs Food Distribution Program)','PEARS RAW BARTLETT',,,,'Stem core and seeds',10,'Pyrus communis',,,, -09413,0900,'Pears raw red anjou','PEARS RAW RED ANJOU',,,,'Stem core and seeds',11,'Pyrus communis',,,, -09414,0900,'Pears raw bosc (Includes foods for USDAs Food Distribution Program)','PEARS RAW BOSC',,,,'Stem core and seeds',10,'Pyrus communis',,,, -09415,0900,'Pears raw green anjou (Includes foods for USDAs Food Distribution Program)','PEARS RAW GRN ANJOU',,,,'Stem core and seeds',10,'Pyrus communis',,,, -09416,0900,'Grapefruit juice white bottled unsweetened OCEAN SPRAY','GRAPEFRUIT JUC WHITE BTLD UNSWTND OCEAN SPRAY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,3.36,8.37,3.92 -09420,0900,'Jackfruit canned syrup pack','JACKFRUIT CND SYRUP PK',,,,,0,'Artocarpus heterophyllus',6.25,3.36,8.37,3.75 -09421,0900,'Dates medjool','DATES MEDJOOL',,,,'Pits',8,'Phoenix dactylifera',,3.36,8.37,3.60 -09422,0900,'Durian raw or frozen','DURIAN RAW OR FROZEN',,,,'Shell and seeds (for raw fruit)',68,'Durio zibethinus',6.25,3.36,8.37,3.60 -09423,0900,'Prune puree','PRUNE PUREE',,,,,0,,,,, -09426,0900,'Candied fruit','CANDIED FRUIT',,,'Y',,0,,,,, -09427,0900,'Abiyuch raw','ABIYUCH RAW','garlic pear',,,,,'Crateva religiosa',6.25,3.36,8.37,3.60 -09428,0900,'Rowal raw','ROWAL RAW',,,,,,'Pangium edule',6.25,3.36,8.37,3.60 -09429,0900,'Pineapple raw traditional varieties','PINEAPPLE RAW TRADITIONAL VAR',,,,'8% core 13% crown 22% parings',42,'Ananas comosus',,3.36,8.37,3.60 -09430,0900,'Pineapple raw extra sweet variety','PINEAPPLE RAW EX SWT VAR',,,,'8% core 16% crown 26% parings',49,'Ananas comosus',,3.36,8.37,3.60 -09433,0900,'Clementines raw','CLEMENTINES RAW',,,,'Peel and seeds',23,'Citrus clementina hort. ex Tanaka',,3.36,8.37,3.60 -09434,0900,'Guanabana nectar canned','GUANABANA NECTAR CND',,,'Y',,0,,6.25,3.36,8.37,3.80 -09435,0900,'Guava nectar canned with added ascorbic acid','GUAVA NECTAR CND W/ ADDED VIT C',,,,,0,,6.25,3.36,8.37,3.80 -09436,0900,'Mango nectar canned','MANGO NECTAR CND',,,'Y',,0,,6.25,3.36,8.37,3.80 -09437,0900,'Tamarind nectar canned','TAMARIND NECTAR CND',,,,,0,,6.25,3.36,8.37,3.80 -09442,0900,'Pomegranate juice bottled','POMEGRANATE JUC BTLD',,,'Y',,0,,6.25,3.36,8.37,3.92 -09443,0900,'Juice apple and grape blend with added ascorbic acid','JUICE APPL & GRAPE BLEND W/ ADDED VIT C',,,'Y',,0,,,3.36,8.37,3.92 -09444,0900,'Juice apple grape and pear blend with added ascorbic acid and calcium','JUICE APPL GRAPE & PEAR BLEND W/ ADDED VIT C & CA',,,'Y',,0,,6.25,3.36,8.37,3.92 -09446,0900,'Plantains green fried','PLANTAINS GRN FRIED','tostones de platano',,,,0,,6.25,4.00,9.00,4.00 -09447,0900,'Plantains yellow fried Latino restaurant','PLANTAINS YEL FRIED LATINO RESTAURANT','platanos maduros',,,,0,,6.25,4.00,9.00,4.00 -09448,0900,'Nance canned syrup drained','NANCE CND SYRUP DRND','yellow cherries',,,,0,,6.25,3.36,8.37,3.60 -09449,0900,'Nance frozen unsweetened','NANCE FRZ UNSWTND','yellow cherries',,,'Pits',27,'Byrsonima crassifolia (L.) Kunth',6.25,3.36,8.37,3.60 -09450,0900,'Naranjilla (lulo) pulp frozen unsweetened','NARANJILLA (LULO) PULP FRZ UNSWTND',,,,,0,'Solanum quitoense Lam.',6.25,3.36,8.37,3.60 -09451,0900,'Horned melon (Kiwano)','HORNED MELON (KIWANO)','African horned melon',,,'Rind',36,'Cucumis metulifer',6.25,3.36,8.37,3.60 -09452,0900,'Orange Pineapple Juice Blend','ORANGE PNAPPL JUC BLEND',,,'Y',,0,,6.25,,, -09500,0900,'Apples raw red delicious with skin (Includes foods for USDAs Food Distribution Program)','APPLES RAW RED DELICIOUS W/ SKN',,,,'Core and stem',11,'Malus domestica',,,, -09501,0900,'Apples raw golden delicious with skin','APPLES RAW GOLDEN DELICIOUS W/ SKN',,,,'Core and stem',10,'Malus domestica',,,, -09502,0900,'Apples raw granny smith with skin (Includes foods for USDAs Food Distribution Program)','APPLES RAW GRANNY SMITH W/ SKN',,,,'Core and stem',11,'Malus domestica',,,, -09503,0900,'Apples raw gala with skin (Includes foods for USDAs Food Distribution Program)','APPLES RAW GALA W/ SKN',,,,'Core and stem',9,'Malus domestica',,,, -09504,0900,'Apples raw fuji with skin (Includes foods for USDAs Food Distribution Program)','APPLES RAW FUJI W/ SKN',,,,'Core and stem',11,'Malus domestica',,,, -09506,0900,'Orange juice chilled includes from concentrate with added calcium and vitamins A D E','ORANGE JUC CHILLED INCL FROM CONC W/ ADD CA & VITAMINS A D E',,,,,0,,6.25,3.36,8.37,3.92 -09507,0900,'Fruit juice smoothie NAKED JUICE MIGHTY MANGO','FRUIT JUC SMOOTHIE NAKED JUC MIGHTY MANGO',,'Naked Juice Co. of Glendora Inc.',,,0,,6.25,,, -09508,0900,'Fruit juice smoothie NAKED JUICE GREEN MACHINE','FRUIT JUC SMOOTHIE NAKED JUC GRN MACHINE',,'Naked Juice Co. of Glendora Inc.','Y',,0,,6.25,3.36,8.37,3.92 -09510,0900,'Pineapple juice canned not from concentrate unsweetened with added vitamins A C and E','PINEAPPLE JUC CND NOT FROM CONC UNSWTND W/ ADD VIT A C & E',,'Dole Food Company',,,0,,6.25,3.36,8.37,3.92 -09511,0900,'Fruit juice smoothie NAKED JUICE BLUE MACHINE','FRUIT JUC SMOOTHIE NAKED JUC BLUE MACHINE',,'Naked Juice Co. of Glendora Inc.',,,0,,6.25,,, -09512,0900,'Grape juice canned or bottled unsweetened with added ascorbic acid and calcium','GRAPE JUC CND OR BTLD UNSWTND W/ ADDED VIT C & CA',,,'Y',,0,,6.25,,, -09513,0900,'Fruit juice smoothie ODWALLA ORIGINAL SUPERFOOD','FRUIT JUC SMOOTHIE ODWALLA ORIGINAL SUPERFOOD',,'Odwalla','Y',,0,,6.25,3.36,8.37,3.92 -09514,0900,'Fruit juice smoothie BOLTHOUSE FARMS BERRY BOOST','FRUIT JUC SMOOTHIE BOLTHOUSE FARMS BERRY BOOST',,'Wm. Bolthouse Farms Inc.',,,0,,6.25,,, -09515,0900,'Fruit juice smoothie BOLTHOUSE FARMS GREEN GOODNESS','FRUIT JUC SMOOTHIE BOLTHOUSE FARMS GRN GOODNESS',,'Wm. Bolthouse Farms Inc.','Y',,0,,6.25,3.36,8.37,3.92 -09516,0900,'Fruit juice smoothie BOLTHOUSE FARMS strawberry banana','FRUIT JUC SMOOTHIE BOLTHOUSE FARMS STRAWBERRY BANANA',,'Wm. Bolthouse Farms Inc.','Y',,0,,6.25,3.36,8.37,3.92 -09517,0900,'Apple juice canned or bottled unsweetened with added ascorbic acid calcium and potassium','APPLE JUC CND OR BTLD UNSWTND W/ ADDED VIT C CA & K',,,'Y',,0,,,,, -09518,0900,'Raspberries frozen red unsweetened','RASPBERRIES FRZ RED UNSWTND',,,,,0,,6.25,3.36,8.37,3.60 -09519,0900,'Guava nectar with sucralose canned','GUAVA NECTAR W/ SUCRALOSE CND',,,'Y',,0,,,,, -09520,0900,'Kiwifruit ZESPRI SunGold raw','KIWIFRUIT ZESPRI SUNGOLD RAW','Gold3',,,'Skin',28,'Actinidia chinensis Zesy002 (Gold3)',,3.36,8.37,3.60 -09522,0900,'Cranberry juice blend 100% juice bottled with added vitamin C and calcium','CRANBERRY JUC BLEND 100% JUC BTLD W/ ADDED VIT C & CA',,,'Y',,0,,6.25,3.36,8.37,3.92 -09523,0900,'Lemon juice from concentrate bottled CONCORD','LEMON JUC FROM CONC BTLD CONCORD',,'Concord Foods',,,0,,,,, -09524,0900,'Lemon juice from concentrate bottled REAL LEMON','LEMON JUC FROM CONC BTLD REAL LEMON',,,,,0,,,3.36,8.37,2.70 -09525,0900,'Cranberry sauce whole canned OCEAN SPRAY','CRANBERRY SAU WHL CND OCEAN SPRAY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,3.36,8.37,3.84 -09526,0900,'Cranberry sauce jellied canned OCEAN SPRAY','CRANBERRY SAU JELLIED CND OCEAN SPRAY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,3.36,8.37,3.84 -09528,0900,'Ruby Red grapefruit juice blend (grapefruit grape apple) OCEAN SPRAY bottled with added vitamin C','RUBY RED GRPFRT JUC BLND (GRPFRT GRP APL) OCEAN SPRY W/VIT C',,'Ocean Spray Cranberries Inc.',,,0,,,3.36,8.37,3.92 -09530,0900,'Fruit juice smoothie ODWALLA strawberry banana','FRUIT JUC SMOOTHIE ODWALLA STRAWBERRY BANANA',,'Odwalla','Y',,0,,6.25,3.36,8.37,3.92 -09531,0900,'Fruit juice smoothie NAKED JUICE strawberry banana','FRUIT JUC SMOOTHIE NAKED JUC STRAWBERRY BANANA',,'Naked Juice Co. of Glendora Inc.','Y',,0,,6.25,3.36,8.37,3.92 -09542,0900,'Plantains green raw','PLANTAINS GRN RAW',,,,'Skin and stems',39,'Musa X paradisiaca',6.25,2.78,8.37,4.03 -09543,0900,'Plantains green boiled','PLANTAINS GRN BLD',,,,'No refuse',0,,,2.78,8.37,4.03 -09544,0900,'Baobab powder','BAOBAB PDR',,,,,0,,,3.36,8.37,3.60 -09546,0900,'Cherry juice tart','CHERRY JUC TART',,,,,0,,6.25,3.36,8.37,3.92 -09552,0900,'Raspberries puree seedless','RASPBERRIES PUREE SEEDLESS',,,,,0,,,3.36,8.37,3.75 -09553,0900,'Raspberries puree with seeds','RASPBERRIES PUREE W/ SEEDS',,,,,0,,,3.36,8.37,3.75 -09554,0900,'Raspberry juice concentrate','RASPBERRY JUC CONC',,,,,0,,,3.36,8.37,3.75 -10000,1000,'Pork fresh composite of separable fat with added solution cooked','PORK FRSH COMP OF FAT W/ ADDED SOLN CKD',,,,,0,,,,, -10001,1000,'Pork fresh carcass separable lean and fat raw','PORK FRSH CARCASS LN&FAT RAW',,,,'Bone and skin',18,'Suidae domesticus',6.25,4.27,9.02,3.87 -10002,1000,'Pork fresh composite of trimmed retail cuts (leg loin shoulder) separable lean only raw','PORK FRSH COMP OF RTL CUTS (LEG LOIN SHLDR) LN RAW',,,'Y','Bone and skin 22% separable fat 8%',30,,6.25,4.27,9.02,3.87 -10003,1000,'Pork fresh composite of trimmed leg loin shoulder and spareribs (includes cuts to be cured) separable lean and fat raw','PORK FRSH COMP OF LEG LOIN SHLDR & SPARERIBS LN & FAT RAW',,,'Y','Bone and skin',24,,6.25,4.27,9.02,3.87 -10004,1000,'Pork fresh backfat raw','PORK FRESH BACKFAT RAW',,,'Y','Skin',11,,6.25,4.27,9.02,3.87 -10005,1000,'Pork fresh belly raw','PORK FRSH BELLY RAW',,,,'Skin',7,,6.25,4.27,9.02,3.87 -10006,1000,'Pork fresh separable fat raw','PORK FRSH FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -10007,1000,'Pork fresh separable fat cooked','PORK FRSH FAT CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10008,1000,'Pork fresh leg (ham) whole separable lean and fat raw','PORK FRSH LEG (HAM) WHL LN&FAT RAW',,,,'Bone and skin',17,,6.25,4.27,9.02,3.87 -10009,1000,'Pork fresh leg (ham) whole separable lean and fat cooked roasted','PORK FRSH LEG (HAM) WHL LN&FAT CKD RSTD',,,'Y','Bone and skin',20,,6.25,4.27,9.02,3.87 -10010,1000,'Pork fresh leg (ham) whole separable lean only raw','PORK FRSH LEG (HAM) WHL LN RAW',,,'Y','Bone and skin 17% separable fat 18%',35,,6.25,4.27,9.02,3.87 -10011,1000,'Pork fresh leg (ham) whole separable lean only cooked roasted','PORK FRSH LEG (HAM) WHL LN CKD RSTD',,,'Y','Bone and skin 20% separable fat 12%',32,,6.25,4.27,9.02,3.87 -10012,1000,'Pork fresh leg (ham) rump half separable lean and fat raw','PORK FRSH LEG (HAM) RUMP HALF LN&FAT RAW',,,,'Connective tissue 6% Bone 9% Skin 2%',17,,6.25,4.27,9.02,3.87 -10013,1000,'Pork fresh leg (ham) rump half separable lean and fat cooked roasted','PORK FRSH LEG (HAM) RUMP HALF LN&FAT CKD RSTD',,,'Y','Connective tissue 7% Bone 9% Skin 2%',18,,6.25,4.27,9.02,3.87 -10014,1000,'Pork fresh leg (ham) rump half separable lean only raw (Includes foods for USDAs Food Distribution Program)','PORK FRSH LEG (HAM) RUMP HALF LN RAW',,,,'Connective tissue 6% Bone 9% Separable fat 10%',25,,6.25,4.27,9.02,3.87 -10015,1000,'Pork fresh leg (ham) rump half separable lean only cooked roasted','PORK FRSH LEG (HAM) RUMP HALF LN CKD RSTD',,,,'Connective tissue 7% Bone 9% Separable fat 7%',23,,6.25,4.27,9.02,3.87 -10016,1000,'Pork fresh leg (ham) shank half separable lean and fat raw','PORK FRSH LEG (HAM) SHANK HALF LN&FAT RAW',,,,'Connective tissue 9% Bone 13% Skin 6%',28,,6.25,4.27,9.02,3.87 -10017,1000,'Pork fresh leg (ham) shank half separable lean and fat cooked roasted','PORK FRSH LEG (HAM) SHANK HALF LN&FAT CKD RSTD',,,,'Connective tissue 7% Bone 11% Skin 4%',22,,6.25,4.27,9.02,3.87 -10018,1000,'Pork fresh leg (ham) shank half separable lean only raw','PORK FRSH LEG (HAM) SHANK HALF LN RAW',,,,'Connective tissue 9% Bone 13% Separable fat 10%',32,,6.25,4.27,9.02,3.87 -10019,1000,'Pork fresh leg (ham) shank half separable lean only cooked roasted','PORK FRSH LEG (HAM) SHANK HALF LN CKD RSTD',,,,'Connective tissue 7% Bone 11% Separable fat 9%',27,,6.25,4.27,9.02,3.87 -10020,1000,'Pork fresh loin whole separable lean and fat raw','PORK FRSH LOIN WHL LN&FAT RAW',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -10021,1000,'Pork fresh loin whole separable lean and fat cooked braised','PORK FRSH LOIN WHL LN&FAT CKD BRSD',,,'Y','Bone',21,,6.25,4.27,9.02,3.87 -10022,1000,'Pork fresh loin whole separable lean and fat cooked broiled','PORK FRSH LOIN WHL LN&FAT CKD BRLD',,,'Y','Bone',21,,6.25,4.27,9.02,3.87 -10023,1000,'Pork fresh loin whole separable lean and fat cooked roasted','PORK FRSH LOIN WHL LN&FAT CKD RSTD',,,'Y','Bone',21,,6.25,4.27,9.02,3.87 -10024,1000,'Pork fresh loin whole separable lean only raw','PORK FRSH LOIN WHL LN RAW',,,'Y','Bone 22% separable fat 8%',30,,6.25,4.27,9.02,3.87 -10025,1000,'Pork fresh loin whole separable lean only cooked braised','PORK FRSH LOIN WHL LN CKD BRSD',,,'Y','Bone 21% separable fat 7%',28,,6.25,4.27,9.02,3.87 -10026,1000,'Pork fresh loin whole separable lean only cooked broiled','PORK FRSH LOIN WHL LN CKD BRLD',,,'Y','Bone 21% separable fat 7%',28,,6.25,4.27,9.02,3.87 -10027,1000,'Pork fresh loin whole separable lean only cooked roasted','PORK FRSH LOIN WHL LN CKD RSTD',,,'Y','Bone 21% separable fat 7%',28,,6.25,4.27,9.02,3.87 -10028,1000,'Pork fresh loin blade (chops or roasts) bone-in separable lean and fat raw','PORK FRSH LOIN BLADE (CHOPS OR ROASTS) BONE-IN LN&FAT RAW',,,,'Bone 18% Connective tissue 8%',26,,6.25,4.27,9.02,3.87 -10029,1000,'Pork fresh loin blade (chops) bone-in separable lean and fat cooked braised','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN&FAT CKD BRSD',,,,'Bone 21% Connective tissue 6%',27,,6.25,4.27,9.02,3.87 -10030,1000,'Pork fresh loin blade (chops) bone-in separable lean and fat cooked broiled','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN&FAT CKD BRLD',,,,'Bone 20% Connective tissue 7%',27,,6.25,4.27,9.02,3.87 -10031,1000,'Pork fresh loin blade (roasts) bone-in separable lean and fat cooked roasted','PORK FRSH LOIN BLADE (ROASTS) BONE-IN LN&FAT CKD RSTD',,,,'Bone 18% Connective tissue 5% ',20,,6.25,4.27,9.02,3.87 -10032,1000,'Pork fresh loin blade (chops or roasts) bone-in separable lean only raw','PORK FRSH LOIN BLADE (CHOPS OR ROASTS) BONE-IN LN RAW',,,,'Bone 18% Connective tissue 8% Separable fat 10% ',36,,6.25,4.27,9.02,3.87 -10033,1000,'Pork fresh loin blade (chops) bone-in separable lean only cooked braised','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN CKD BRSD',,,'Y','Bone 21% Connective tissue 6% Separable fat 6%',33,,6.25,4.27,9.02,3.87 -10034,1000,'Pork fresh loin blade (chops) bone-in separable lean only cooked broiled','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN CKD BRLD',,,,'Bone 20% Connective tissue 7% separable fat 6%',33,,6.25,4.27,9.02,3.87 -10035,1000,'Pork fresh loin blade (roasts) bone-in separable lean only cooked roasted','PORK FRSH LOIN BLADE (ROASTS) BONE-IN LN CKD RSTD',,,,'Bone 18% separable fat 7% Connective tissue 5%',30,,6.25,4.27,9.02,3.87 -10036,1000,'Pork fresh loin center loin (chops) bone-in separable lean and fat raw','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN & FAT RAW','URMIS #3313 Center loin chops Centercut pork loin chops centercut pork chops',,'Y','Bone 14% Connective tissue 11%',25,,6.25,4.27,9.02,3.87 -10037,1000,'Pork fresh loin center loin (chops) bone-in separable lean and fat cooked braised','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN&FAT CKD BRSD',,,,'Bone 15% Connective tissue 5%',20,,6.25,4.27,9.02,3.87 -10038,1000,'Pork fresh loin center loin (chops) bone-in separable lean and fat cooked broiled','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN&FAT CKD BRLD','URMIS #3313 Center loin chops Centercut pork loin chops centercut pork chops',,,'Bone 16% Connective tissue 9%',25,,6.25,4.27,9.02,3.87 -10039,1000,'Pork fresh loin center loin (roasts) bone-in separable lean and fat cooked roasted','PORK FRSH LOIN CNTR LOIN (ROASTS) BONE-IN LN&FAT CKD RSTD',,,,'Bone 14% Connective tissue 4%',18,,6.25,4.27,9.02,3.87 -10040,1000,'Pork fresh loin center loin (chops) bone-in separable lean only raw','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN RAW','URMIS #3313 Center loin chops Center cut pork loin chops centercut pork chops',,,'Bone 14% Connective tissue 11% Separable fat 6%',31,,6.25,4.27,9.02,3.87 -10041,1000,'Pork fresh loin center loin (chops) bone-in separable lean only cooked braised','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN CKD BRSD',,,'Y','Bone 15% Connective tissue 5% Separable fat 8%',28,,6.25,4.27,9.02,3.87 -10042,1000,'Pork fresh loin center loin (chops) bone-in separable lean only cooked broiled','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN CKD BRLD','URMIS #3313 Center loin chops Centercut pork chops Centercut pork loin chops',,,'Bone 16% Connective tissue 9% Separable fat 5%',30,,6.25,4.27,9.02,3.87 -10043,1000,'Pork fresh loin center loin (roasts) bone-in separable lean only cooked roasted','PORK FRSH LOIN CNTR LOIN (ROASTS) BONE-IN LN CKD RSTD',,,,'Bone 14% Connective tissue 4% Separable fat 7%',25,,6.25,4.27,9.02,3.87 -10044,1000,'Pork fresh loin center rib (chops or roasts) bone-in separable lean and fat raw','PORK FRSH LOIN CNTR RIB (CHOPS OR ROASTS) BONE-IN LN&FAT RAW','Centercut pork loin Rib cut chops Rib chops',,,'Bone 22% Connective tissue 12% ',34,,6.25,4.27,9.02,3.87 -10045,1000,'Pork fresh loin center rib (chops) bone-in separable lean and fat cooked braised','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN&FAT CKD BRSD',,,,'Bone 17% Connective tissue 6%',23,,6.25,4.27,9.02,3.87 -10046,1000,'Pork fresh loin center rib (chops) bone-in separable lean and fat cooked broiled','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN&FAT CKD BRLD','Centercut pork loin Rib cut chops Rib chops',,,'Bone 24% Connective tissue 11%',35,,6.25,4.27,9.02,3.87 -10047,1000,'Pork fresh loin center rib (roasts) bone-in separable lean and fat cooked roasted','PORK FRSH LOIN CNTR RIB (ROASTS) BONE-IN LN&FAT CKD RSTD',,,,'Bone 17% Connective tissue 6%',23,,6.25,4.27,9.02,3.87 -10048,1000,'Pork fresh loin center rib (chops or roasts) bone-in separable lean only raw','PORK FRSH LOIN CNTR RIB (CHOPS OR ROASTS) BONE-IN LN RAW','Centercut pork loin Rib cut chops Rib chops',,,'Bone 22% Connective tissue 12% separable fat 6%',40,,6.25,4.27,9.02,3.87 -10049,1000,'Pork fresh loin center rib (chops) bone-in separable lean only cooked braised','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN CKD BRSD',,,'Y','Bone 17% Connective tissue 6% Separable fat 10%',33,,6.25,4.27,9.02,3.87 -10050,1000,'Pork fresh loin center rib (chops) bone-in separable lean only cooked broiled','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN CKD BRLD','Centercut pork loin chop Rib cut chops Rib chops',,'Y','Bone 24% Connective tissue 11% separable fat 5%',40,,6.25,4.27,9.02,3.87 -10051,1000,'Pork fresh loin center rib (roasts) bone-in separable lean only cooked roasted','PORK FRSH LOIN CNTR RIB (ROASTS) BONE-IN LN CKD RSTD',,,,'Bone 17% Connective tissue 6% separable fat 8%',31,,6.25,4.27,9.02,3.87 -10052,1000,'Pork fresh loin sirloin (chops or roasts) bone-in separable lean and fat raw','PORK FRSH LOIN SIRLOIN (CHOPS OR ROASTS) BONE-IN LN&FAT RAW','Loin end roast Hipbone roast Sirloin end roast',,,'Bone 17% Connective tissue 10%',27,,6.25,4.27,9.02,3.87 -10053,1000,'Pork fresh loin sirloin (chops) bone-in separable lean and fat cooked braised','PORK FRSH LOIN SIRLOIN (CHOPS) BONE-IN LN&FAT CKD BRSD',,,,'Connective tissue 6% Bone 18%',24,,6.25,4.27,9.02,3.87 -10054,1000,'Pork fresh loin sirloin (chops) bone-in separable lean and fat cooked broiled','PORK FRSH LOIN SIRLOIN (CHOPS) BONE-IN LN&FAT CKD BRLD',,,'Y','Connective tissue 6% Bone 15%',21,,6.25,4.27,9.02,3.87 -10055,1000,'Pork fresh loin sirloin (roasts) bone-in separable lean and fat cooked roasted','PORK FRSH LOIN SIRLOIN (ROASTS) BONE-IN LN&FAT CKD RSTD','Loin end roast Hipbone roast Sirloin end roast',,,'Bone 20% Connective tissue 11%',31,,6.25,4.27,9.02,3.87 -10056,1000,'Pork fresh loin sirloin (chops or roasts) bone-in separable lean only raw','PORK FRSH LOIN SIRLOIN (CHOPS OR ROASTS) BONE-IN LN RAW','Loin end roast Hipbone roast Sirloin end roast',,,'Bone 17% Connective tissue 11% separable fat 5%',33,,6.25,4.27,9.02,3.87 -10057,1000,'Pork fresh loin sirloin (chops) bone-in separable lean only cooked braised','PORK FRSH LOIN SIRLOIN (CHOPS) BONE-IN LN CKD BRSD',,,,'Connective tissue 6% Bone 18% Separable fat 7%',31,,6.25,4.27,9.02,3.87 -10058,1000,'Pork fresh loin sirloin (chops) bone-in separable lean only cooked broiled','PORK FRSH LOIN SIRLOIN (CHOPS) BONE-IN LN CKD BRLD',,,'Y','Connective tissue 6% Bone 15% Separable fat 8%',29,,6.25,4.27,9.02,3.87 -10059,1000,'Pork fresh loin sirloin (roasts) bone-in separable lean only cooked roasted','PORK FRSH LOIN SIRLOIN (ROASTS) BONE-IN LN CKD RSTD','Loin end roast Hipbone roast Sirloin end roast',,,'Bone 20% connective tissue 11% separable fat 4%',35,,6.25,4.27,9.02,3.87 -10060,1000,'Pork fresh loin tenderloin separable lean only raw','PORK FRSH LOIN TENDERLOIN LN ONLY RAW','Pork tenderloin URMIS #3358',,'Y','Bone 0% Connective tissue 3% Separable fat 2%',5,,6.25,4.27,9.02,3.87 -10061,1000,'Pork fresh loin tenderloin separable lean only cooked roasted','PORK FRSH LOIN TENDERLOIN LN CKD RSTD','URMIS #3358 Pork Pork tenderloin',,'Y','Connective tissue 3% Separable fat .70%',4,,6.25,4.27,9.02,3.87 -10062,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat raw','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN & FAT RAW','URMIS #3369 Americas cut chops Pork top loin chops Strip loin chops',,'Y','Connective tissue 12%',12,,6.25,4.27,9.02,3.87 -10063,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat cooked braised','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN & FAT CKD BRSD',,,,'Connective tissue 6%',6,,6.25,4.27,9.02,3.87 -10064,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat cooked broiled','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN & FAT CKD BRLD','URMIS #3369 Americas cut chops Pork top loin chops Strip loin chops',,,'Connective tissue',14,,6.25,4.27,9.02,3.87 -10065,1000,'Pork fresh loin top loin (roasts) boneless separable lean and fat cooked roasted','PORK FRSH LOIN TOP LOIN (ROASTS) BNLESS LN&FAT CKD RSTD','Boneless pork loin Centercut pork loin roast',,,'Connective tissue',12,,6.25,4.27,9.02,3.87 -10066,1000,'Pork fresh loin top loin (chops) boneless separable lean only raw','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN RAW','URMIS #3369 Americas cut chops Pork top loin chops Strip loin chops',,'Y','Connective tissue 12% Separable fat 5%',17,,6.25,4.27,9.02,3.87 -10067,1000,'Pork fresh loin top loin (chops) boneless separable lean only cooked braised','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN CKD BRSD',,,,'Connective tissue 6% Separable fat 7%',13,,6.25,4.27,9.02,3.87 -10068,1000,'Pork fresh loin top loin (chops) boneless separable lean only cooked broiled','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN CKD BRLD','URMIS #3369 Americas cut chops Pork top loin chops Strip loin chops',,'Y','Connective tissue 9% separable fat 4%',13,,6.25,4.27,9.02,3.87 -10069,1000,'Pork fresh loin top loin (roasts) boneless separable lean only cooked roasted','PORK FRSH LOIN TOP LOIN (ROASTS) BNLESS LN CKD RSTD','Boneless pork loin Centercut boneless pork loin roast',,,'Connective tissue 8% separable fat 4%',12,,6.25,4.27,9.02,3.87 -10070,1000,'Pork fresh shoulder whole separable lean and fat raw','PORK FRSH SHLDR WHL LN&FAT RAW',,,'Y','Bone and skin',25,,6.25,4.27,9.02,3.87 -10071,1000,'Pork fresh shoulder whole separable lean and fat cooked roasted','PORK FRSH SHLDR WHL LN&FAT CKD RSTD',,,'Y','Bone and skin',25,,6.25,4.27,9.02,3.87 -10072,1000,'Pork fresh shoulder whole separable lean only raw','PORK FRSH SHLDR WHL LN RAW',,,,'Bone and skin 25% separable fat 14%',39,,6.25,4.27,9.02,3.87 -10073,1000,'Pork fresh shoulder whole separable lean only cooked roasted','PORK FRSH SHLDR WHL LN CKD RSTD',,,'Y','Bone and skin 25% separable fat 14%',39,,6.25,4.27,9.02,3.87 -10074,1000,'Pork fresh shoulder arm picnic separable lean and fat raw','PORK FRSH SHLDR ARM PICNIC LN&FAT RAW',,,,'Bone 16% Connective tissue 6%',22,,6.25,4.27,9.02,3.87 -10075,1000,'Pork fresh shoulder arm picnic separable lean and fat cooked braised','PORK FRSH SHLDR ARM PICNIC LN&FAT CKD BRSD',,,'Y','Connective tissue 8% Bone 15% ',23,,6.25,4.27,9.02,3.87 -10076,1000,'Pork fresh shoulder arm picnic separable lean and fat cooked roasted','PORK FRSH SHLDR ARM PICNIC LN&FAT CKD RSTD',,,,'Bone and skin',27,,6.25,4.27,9.02,3.87 -10077,1000,'Pork fresh shoulder arm picnic separable lean only raw','PORK FRSH SHLDR ARM PICNIC LN RAW',,,,'Bone 16% Connective tissue 6% separable fat 10%',32,,6.25,4.27,9.02,3.87 -10078,1000,'Pork fresh shoulder arm picnic separable lean only cooked braised','PORK FRSH SHLDR ARM PICNIC LN CKD BRSD',,,'Y','Bone 15% Connective tissue 8% Separable fat 7%',30,,6.25,4.27,9.02,3.87 -10079,1000,'Pork fresh shoulder arm picnic separable lean only cooked roasted','PORK FRSH SHLDR ARM PICNIC LN CKD RSTD',,,,'Bone and skin 27% separable fat 16%',43,,6.25,4.27,9.02,3.87 -10080,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean and fat raw','PORK FRSH SHLDR (BOSTON BUTT) BLADE (STEAKS) LN & FAT RAW','URMIS #3186 Pork shoulder chop Shoulder blade steak Pork steak',,'Y','Bone 9% Connective tissue 15%',24,,6.25,4.27,9.02,3.87 -10081,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean and fat cooked braised','PORK FRSH SHLDR (BOSTON BUTT) BLADE (STKS) LN & FAT CKD BRSD','URMIS #3186 Pork shoulder chop Shoulder blade steak Pork steak',,'Y','Bone 9% Connective tissue 17%',26,,6.25,4.27,9.02,3.87 -10082,1000,'Pork fresh shoulder blade boston (steaks) separable lean and fat cooked broiled','PORK FRSH SHLDR BLADE BOSTON (STEAKS) LN&FAT CKD BRLD',,,'Y','Bone',23,,6.25,4.27,9.02,3.87 -10083,1000,'Pork fresh shoulder blade boston (roasts) separable lean and fat cooked roasted','PORK FRSH SHLDR BLADE BOSTON (ROASTS) LN&FAT CKD RSTD',,,'Y','Bone',24,,6.25,4.27,9.02,3.87 -10084,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean only raw','PORK FRSH SHLDR (BOSTON BUTT) BLADE (STEAKS) LN RAW','URMIS # 3186 Pork shoulder chop Shoulder blade steak Pork steak',,'Y','Bone 9% Connective tissue 15% Separable fat 8%',32,,6.25,4.27,9.02,3.87 -10085,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean only cooked braised','PORK FRSH SHLDR (BOSTON BUTT) BLADE (STEAKS) LN CKD BRSD','URMIS #3186 Pork shoulder chop Shoulder blade steak Pork steak',,'Y','Bone 9% Connective tissue 17% Separable fat 6%',32,,6.25,4.27,9.02,3.87 -10086,1000,'Pork fresh shoulder blade boston (steaks) separable lean only cooked broiled','PORK FRSH SHLDR BLADE BOSTON (STEAKS) LN CKD BRLD',,,'Y','Bone 23% separable fat 10%',33,,6.25,4.27,9.02,3.87 -10087,1000,'Pork fresh shoulder blade boston (roasts) separable lean only cooked roasted','PORK FRSH SHLDR BLADE BOSTON (ROASTS) LN CKD RSTD',,,'Y','Bone 24% separable fat 7%',31,,6.25,4.27,9.02,3.87 -10088,1000,'Pork fresh spareribs separable lean and fat raw','PORK FRSH SPARERIBS LN&FAT RAW',,,'Y','Bone',30,,6.25,4.27,9.02,3.87 -10089,1000,'Pork fresh spareribs separable lean and fat cooked braised','PORK FRSH SPARERIBS LN&FAT CKD BRSD',,,'Y','Bone',38,,6.25,4.27,9.02,3.87 -10093,1000,'Pork fresh composite of trimmed retail cuts (leg loin and shoulder) separable lean only cooked','PORK FRSH COMP OF RTL CUTS (LEG LOIN &SHLDR) LN CKD',,,'Y','Bone and skin 22% separable fat 9%',31,,6.25,4.27,9.02,3.87 -10094,1000,'Pork fresh loin center loin (chops) boneless separable lean only raw','PORK FRSH LOIN CNTR LOIN (CHOPS) BNLESS LN RAW',,,'Y','separable fat 16%',16,,,,, -10096,1000,'Pork fresh variety meats and by-products brain raw','PORK FRSH VAR MEATS&BY-PRODUCTS BRAIN RAW',,,,'Blood clots and membrane',2,,6.25,4.27,9.02,3.87 -10097,1000,'Pork fresh variety meats and by-products brain cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS BRAIN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10098,1000,'Pork fresh variety meats and by-products chitterlings raw','PORK FRSH VAR MEATS&BY-PRODUCTS CHITTERLINGS RAW',,,,'Separable fat',18,,6.25,4.27,9.02,3.87 -10099,1000,'Pork fresh variety meats and by-products chitterlings cooked simmered','PORK FRSH VAR MEATS&BY-PRODUCTS CHITTERLINGS CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10100,1000,'Pork fresh variety meats and by-products ears frozen raw','PORK FRSH VAR MEATS&BY-PRODUCTS EARS FRZ RAW',,,,'Thaw juice and trim',5,,6.25,4.27,9.02,3.87 -10101,1000,'Pork fresh variety meats and by-products ears frozen cooked simmered','PORK FRSH VAR MEATS&BY-PRODUCTS EARS FRZ CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -10102,1000,'Pork fresh variety meats and by-products feet raw','PORK FRSH VAR MEATS&BY-PRODUCTS FEET RAW',,,,'Bone and hard tissue',29,,6.25,4.27,9.02,3.87 -10103,1000,'Pork fresh variety meats and by-products heart raw','PORK FRSH VAR MEATS&BY-PRODUCTS HEART RAW',,,,,0,,6.25,4.27,9.02,3.87 -10104,1000,'Pork fresh variety meats and by-products heart cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS HEART CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10105,1000,'Pork fresh variety meats and by-products jowl raw','PORK FRSH VAR MEATS&BY-PRODUCTS JOWL RAW',,,,,0,,6.25,4.27,9.02,3.87 -10106,1000,'Pork fresh variety meats and by-products kidneys raw','PORK FRSH VAR MEATS&BY-PRODUCTS KIDNEYS RAW',,,,'Fat veins and membranes',7,,6.25,4.27,9.02,3.87 -10107,1000,'Pork fresh variety meats and by-products kidneys cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS KIDNEYS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10109,1000,'Pork fresh variety meats and by-products leaf fat raw','PORK FRSH VAR MEATS&BY-PRODUCTS LEAF FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -10110,1000,'Pork fresh variety meats and by-products liver raw','PORK FRSH VAR MEATS&BY-PRODUCTS LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -10111,1000,'Pork fresh variety meats and by-products liver cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS LIVER CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10112,1000,'Pork fresh variety meats and by-products lungs raw','PORK FRSH VAR MEATS&BY-PRODUCTS LUNGS RAW',,,,'Blood clots and membranes',13,,6.25,4.27,9.02,3.87 -10113,1000,'Pork fresh variety meats and by-products lungs cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS LUNGS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10114,1000,'Pork fresh variety meats and by-products mechanically separated raw','PORK FRSH VAR MEATS&BY-PRODUCTS MECHANICALLY SEPARATED RAW',,,,,0,,6.25,4.27,9.02,3.87 -10115,1000,'Pork fresh variety meats and by-products pancreas raw','PORK FRSH VAR MEATS&BY-PRODUCTS PANCREAS RAW',,,,,0,,6.25,4.27,9.02,3.87 -10116,1000,'Pork fresh variety meats and by-products pancreas cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS PANCREAS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10117,1000,'Pork fresh variety meats and by-products spleen raw','PORK FRSH VAR MEATS&BY-PRODUCTS SPLEEN RAW',,,,,0,,6.25,4.27,9.02,3.87 -10118,1000,'Pork fresh variety meats and by-products spleen cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS SPLEEN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -10119,1000,'Pork fresh variety meats and by-products stomach raw','PORK FRSH VAR MEATS&BY-PRODUCTS STOMACH RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -10120,1000,'Pork fresh loin blade (chops) bone-in separable lean only cooked pan-fried','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN CKD PAN-FRIED',,,'Y','Bone 19% Connective tissue 8% separable fat 6%',33,,6.25,4.27,9.02,3.87 -10121,1000,'Pork fresh variety meats and by-products tongue raw','PORK FRSH VAR MEATS&BY-PRODUCTS TONGUE RAW',,,,'Cartilage and connective tissue',16,,6.25,4.27,9.02,4.11 -10122,1000,'Pork fresh variety meats and by-products tongue cooked braised','PORK FRSH VAR MEATS&BY-PRODUCTS TONGUE CKD BRSD',,,,'Skin and trimmings',24,,6.25,4.27,9.02,4.11 -10123,1000,'Pork cured bacon unprepared','PORK CURED BACON UNPREP',,,'Y',,0,,6.25,4.27,9.02,3.87 -10128,1000,'Pork cured breakfast strips raw or unheated','PORK CURED BRKFST STRIPS RAW OR UNHTD',,,,,0,,6.25,4.27,9.02,3.87 -10130,1000,'Canadian bacon unprepared','CANADIAN BACON UNPREP',,,'Y',,0,,,,, -10132,1000,'Pork cured feet pickled','PORK CURED FEET PICKLED',,,'Y','Bone and hard tissue 66%',66,,6.25,4.27,9.02,3.87 -10134,1000,'Pork cured ham boneless extra lean (approximately 5% fat) roasted','PORK CURED HAM BNLESS EX LN (APPROX 5% FAT) RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10136,1000,'Pork cured ham boneless regular (approximately 11% fat) roasted','PORK CURED HAM BNLESS REG (APPROX 11% FAT) RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10137,1000,'Pork cured ham extra lean (approximately 4% fat) canned unheated','PORK CURED HAM EX LN (APPROX 4% FAT) CND UNHTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10138,1000,'Pork cured ham extra lean (approximately 4% fat) canned roasted','PORK CURED HAM EX LN (APPROX 4% FAT) CND RSTD',,,,,0,,6.25,4.27,9.02,3.87 -10140,1000,'Pork cured ham regular (approximately 13% fat) canned roasted','PORK CURED HAM REG (APPROX 13% FAT) CND RSTD',,,,,0,,6.25,4.27,9.02,3.87 -10141,1000,'Pork cured ham center slice country-style separable lean only raw','PORK CURED HAM CNTR SLICE COUNTRY-STYLE LN RAW',,,'Y','Bone and skin 3% separable fat 12%',15,,6.25,4.27,9.02,3.87 -10142,1000,'Pork cured ham center slice separable lean and fat unheated','PORK CURED HAM CNTR SLICE LN&FAT UNHTD',,,,'Bone',3,,6.25,4.27,9.02,3.87 -10146,1000,'Pork cured ham patties unheated','PORK CURED HAM PATTIES UNHTD',,,,,0,,6.25,4.27,9.02,3.87 -10149,1000,'Pork cured ham steak boneless extra lean unheated','PORK CURED HAM STEAK BNLESS EX LN UNHTD',,,,,0,,6.25,4.27,9.02,3.87 -10150,1000,'Pork cured ham whole separable lean and fat unheated','PORK CURED HAM WHL LN&FAT UNHTD',,,,'Bone and skin',18,,6.25,4.27,9.02,3.87 -10152,1000,'Pork cured ham whole separable lean only unheated','PORK CURED HAM WHL LN UNHTD',,,'Y','Bone and skin 18% separable fat 19%',37,,6.25,4.27,9.02,3.87 -10153,1000,'Pork cured ham whole separable lean only roasted','PORK CURED HAM WHL LN RSTD',,,'Y','Bone and skin 24% separable fat 15%',39,,6.25,4.27,9.02,3.87 -10163,1000,'Pork fresh loin center loin (chops) boneless separable lean only cooked pan-broiled','PORK FRSH LOIN CNTR LOIN (CHOPS) BNLESS LN CKD PAN-BROILED',,,'Y','Separable lean 14%',14,,,,, -10164,1000,'Pork fresh loin center loin (chops) boneless separable lean and fat raw','PORK FRSH LOIN CNTR LOIN (CHOPS) BNLESS LN & FAT RAW',,,'Y',,0,,,,, -10165,1000,'Pork cured salt pork raw','PORK CURED SALT PORK RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -10166,1000,'Pork cured separable fat (from ham and arm picnic) unheated','PORK CURED FAT (FROM HAM&ARM PICNIC) UNHTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10167,1000,'Pork cured separable fat (from ham and arm picnic) roasted','PORK CURED FAT (FROM HAM&ARM PICNIC) RSTD',,,,,0,,6.25,4.27,9.02,3.87 -10168,1000,'Pork cured shoulder arm picnic separable lean and fat roasted','PORK CURED SHLDR ARM PICNIC LN&FAT RSTD',,,'Y','Bone and skin',27,,6.25,4.27,9.02,3.87 -10169,1000,'Pork cured shoulder arm picnic separable lean only roasted','PORK CURED SHLDR ARM PICNIC LN RSTD',,,'Y','Bone and skin 27% separable fat 19%',46,,6.25,4.27,9.02,3.87 -10170,1000,'Pork cured shoulder blade roll separable lean and fat unheated','PORK CURED SHLDR BLADE ROLL LN&FAT UNHTD',,,,,0,,6.25,4.27,9.02,3.87 -10171,1000,'Pork cured shoulder blade roll separable lean and fat roasted','PORK CURED SHLDR BLADE ROLL LN&FAT RSTD',,,,,0,,6.25,4.27,9.02,3.87 -10173,1000,'Pork fresh variety meats and by-products feet cooked simmered','PORK FRSH VAR MEATS&BY-PRODUCTS FEET CKD SIMMRD',,,'Y','Bone and hard tissue',60,,6.25,4.27,9.02,3.87 -10174,1000,'Pork fresh variety meats and by-products tail raw','PORK FRSH VAR MEATS&BY-PRODUCTS TAIL RAW',,,,'Bone and hard tissue',30,,6.25,4.27,9.02,3.87 -10175,1000,'Pork fresh variety meats and by-products tail cooked simmered','PORK FRSH VAR MEATS&BY-PRODUCTS TAIL CKD SIMMRD',,,,'Bone and hard tissue',32,,6.25,4.27,9.02,3.87 -10176,1000,'Pork fresh loin center loin (chops) bone-in separable lean only cooked pan-fried','PORK FRSH LOIN CNTR LOIN (CHOPS) BONE-IN LN CKD PAN-FRIED',,,'Y','Bone 14% separable fat 8% Connective tissue 6%',28,,6.25,4.27,9.02,3.87 -10177,1000,'Pork fresh loin center rib (chops) bone-in separable lean only cooked pan-fried','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN CKD PAN-FRIED',,,'Y','Bone 17% Connective tissue 6% separable fat 9%',32,,6.25,4.27,9.02,3.87 -10178,1000,'Pork fresh loin blade (chops) bone-in separable lean and fat cooked pan-fried','PORK FRSH LOIN BLADE (CHOPS) BONE-IN LN&FAT CKD PAN-FRIED',,,'Y','Bone 19% Connective tissue 8%',27,,6.25,4.27,9.02,3.87 -10179,1000,'Pork fresh loin center loin (chops) bone-in separable lean and fat cooked pan-fried','PORK FRSH LOIN CNTR LOIN CHOPS BONE-IN LN&FAT CKD PAN-FRIED',,,'Y','Bone 14% Connective tissue 6%',20,,6.25,4.27,9.02,3.87 -10180,1000,'Pork fresh loin center rib (chops) bone-in separable lean and fat cooked pan-fried','PORK FRSH LOIN CNTR RIB (CHOPS) BONE-IN LN&FAT CKD PAN-FRIED',,,'Y','Bone 17% Connective tissue 6%',23,,6.25,4.27,9.02,3.87 -10181,1000,'Pork fresh loin top loin (chops) boneless separable lean only cooked pan-fried','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN CKD PAN-FRIED',,,'Y','Connective tissue 5% separable fat 5% ',10,,6.25,4.27,9.02,3.87 -10182,1000,'Pork cured ham boneless extra lean and regular unheated','PORK CURED HAM BNLESS EX LN® UNHTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10183,1000,'Pork cured ham boneless extra lean and regular roasted','PORK CURED HAM BNLESS EX LN® RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10184,1000,'Pork cured ham extra lean and regular canned unheated','PORK CURED HAM EX LN® CND UNHTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10185,1000,'Pork cured ham extra lean and regular canned roasted','PORK CURED HAM EX LN® CND RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10186,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat cooked pan-fried','PORK FRSH LOIN TOP LOIN (CHOPS) BNLESS LN&FAT CKD PAN-FRIED',,,'Y','Connective tissue 5%',5,,6.25,4.27,9.02,3.87 -10187,1000,'Pork fresh composite of trimmed retail cuts (leg loin shoulder and spareribs) separable lean and fat raw','PORK FRSH COMP (LEG LOIN SHLDR &SPARERIBS) LN&FAT RAW',,,,'Bone and skin',25,,6.25,4.27,9.02,3.87 -10188,1000,'Pork fresh composite of trimmed retail cuts (leg loin shoulder and spareribs) separable lean and fat cooked','PORK FRSH COMP (LEG LOIN SHLDR &SPARERIBS) LN&FAT CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -10189,1000,'Pork fresh loin center loin (chops) boneless separable lean and fat cooked pan-broiled','PORK FRSH LOIN CNTR LON (CHPS) BNLESS LN & FAT CKD PAN-BRLED',,,'Y',,0,,,,, -10192,1000,'Pork fresh backribs separable lean and fat raw','PORK FRSH BACKRIBS LN&FAT RAW',,,,'Bone 30% Connective tissue 7%',37,,6.25,4.27,9.02,3.87 -10193,1000,'Pork fresh backribs separable lean and fat cooked roasted','PORK FRSH BACKRIBS LN&FAT CKD RSTD',,,,'Bone',43,,6.25,4.27,9.02,3.87 -10194,1000,'Pork fresh loin center rib (chops or roasts) boneless separable lean and fat raw','PORK FRSH LOIN CNTR RIB (CHOPS OR ROASTS) BNLESS LN&FAT RAW',,,,'Connective tissue',11,,6.25,4.27,9.02,3.87 -10195,1000,'Pork fresh loin center rib (chops) boneless separable lean and fat cooked braised','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN&FAT CKD BRSD',,,,'Connective tissue',5,,6.25,4.27,9.02,3.87 -10196,1000,'Pork fresh loin center rib (chops) boneless separable lean and fat cooked broiled','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN&FAT CKD BRLD',,,,'Connective tissue',6,,6.25,4.27,9.02,3.87 -10197,1000,'Pork fresh loin center rib (chops) boneless separable lean and fat cooked pan-fried','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN&FAT CKD PAN-FRIED',,,'Y','Connective tissue',8,,6.25,4.27,9.02,3.87 -10198,1000,'Pork fresh loin center rib (roasts) boneless separable lean and fat cooked roasted','PORK FRSH LOIN CNTR RIB (ROASTS) BNLESS LN&FAT CKD RSTD',,,,'Connective tissue',8,,6.25,4.27,9.02,3.87 -10199,1000,'Pork fresh loin center rib (chops or roasts) boneless separable lean only raw','PORK FRSH LOIN CNTR RIB (CHOPS OR ROASTS) BNLESS LN RAW',,,,'Connective tissue 11% separable fat 11%',22,,6.25,4.27,9.02,3.87 -10200,1000,'Pork fresh loin center rib (chops) boneless separable lean only cooked braised','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN CKD BRSD',,,'Y','Connective tissue 5% separable fat 10%',15,,6.25,4.27,9.02,3.87 -10201,1000,'Pork fresh loin center rib (chops) boneless separable lean only cooked broiled','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN CKD BRLD',,,,'Connective tissue 6% separable fat 10%',16,,6.25,4.27,9.02,3.87 -10202,1000,'Pork fresh loin center rib (chops) boneless separable lean only cooked pan-fried','PORK FRSH LOIN CNTR RIB (CHOPS) BNLESS LN CKD PAN-FRIED',,,'Y','Connective tissue 8% separable fat 11%',19,,6.25,4.27,9.02,3.87 -10203,1000,'Pork fresh loin center rib (roasts) boneless separable lean only cooked roasted','PORK FRSH LOIN CNTR RIB (ROASTS) BNLESS LN CKD RSTD',,,,'Connective tissue 8% separable fat 10%',18,,6.25,4.27,9.02,3.87 -10204,1000,'Pork fresh loin country-style ribs separable lean and fat raw','PORK FRSH LOIN COUNTRY-STYLE RIBS LN&FAT RAW','Country Ribs',,,'Bone 21% Connective tissue 14%',35,,6.25,4.27,9.02,3.87 -10205,1000,'Pork fresh loin country-style ribs separable lean and fat cooked braised','PORK FRSH LOIN COUNTRY-STYLE RIBS LN&FAT CKD BRSD','Country ribs',,,'Bone 24% Connective tissue 15%',39,,6.25,4.27,9.02,3.87 -10206,1000,'Pork fresh loin country-style ribs separable lean and fat bone-in cooked roasted','PORK FRSH LOIN COUNTRY-STYLE RIBS LN & FAT BONE-IN CKD RSTD',,,,'Connective tisue 8% Bone 17%',25,,6.25,4.27,9.02,3.87 -10207,1000,'Pork fresh loin country-style ribs separable lean only raw','PORK FRSH LOIN COUNTRY-STYLE RIBS LN RAW','Country ribs',,,'Bone 21% Connective tissue 14% separable fat 6%',41,,6.25,4.27,9.02,3.87 -10208,1000,'Pork fresh loin country-style ribs separable lean only cooked braised','PORK FRSH LOIN COUNTRY-STYLE RIBS LN CKD BRSD','Country ribs',,,'Bone 24% Connective tissue 15% separable fat 4%',43,,6.25,4.27,9.02,3.87 -10209,1000,'Pork fresh loin country-style ribs separable lean only bone-in cooked roasted','PORK FRSH LOIN COUNTRY-STYLE RIBS LN BONE-IN CKD RSTD',,,,'Connective tissue 8% Bone 17% Separable fat 7%',32,,6.25,4.27,9.02,3.87 -10210,1000,'Pork fresh loin sirloin (chops or roasts) boneless separable lean and fat raw','PORK FRSH LOIN SIRLOIN (CHOPS OR ROASTS) BNLESS LN&FAT RAW',,,,'Connective tissue 4%',6,,6.25,4.27,9.02,3.87 -10211,1000,'Pork fresh loin sirloin (chops) boneless separable lean and fat cooked braised','PORK FRSH LOIN SIRLOIN (CHOPS) BNLESS LN&FAT CKD BRSD',,,'Y','Connective tissue 2%',2,,6.25,4.27,9.02,3.87 -10212,1000,'Pork fresh loin sirloin (chops) boneless separable lean and fat cooked broiled','PORK FRSH LOIN SIRLOIN (CHOPS) BNLESS LN&FAT CKD BRLD',,,'Y','Connective tissue 2%',2,,6.25,4.27,9.02,3.87 -10213,1000,'Pork fresh loin sirloin (roasts) boneless separable lean and fat cooked roasted','PORK FRSH LOIN SIRLOIN (ROASTS) BNLESS LN&FAT CKD RSTD',,,'Y','Connective tissue 3%',3,,6.25,4.27,9.02,3.87 -10214,1000,'Pork fresh loin sirloin (chops or roasts) boneless separable lean only raw','PORK FRSH LOIN SIRLOIN (CHOPS OR ROASTS) BNLESS LN RAW',,,,'Connective tissue 5% Separable fat 2%',7,,6.25,4.27,9.02,3.87 -10215,1000,'Pork fresh loin sirloin (chops) boneless separable lean only cooked braised','PORK FRSH LOIN SIRLOIN (CHOPS) BNLESS LN CKD BRSD',,,,'Connective tissue 3% Separable fat 1%',4,,6.25,4.27,9.02,3.87 -10216,1000,'Pork fresh loin sirloin (chops) boneless separable lean only cooked broiled','PORK FRSH LOIN SIRLOIN (CHOPS) BNLESS LN CKD BRLD',,,'Y','Connective tissue 2% Separable fat 2%',4,,6.25,4.27,9.02,3.87 -10217,1000,'Pork fresh loin sirloin (roasts) boneless separable lean only cooked roasted','PORK FRSH LOIN SIRLOIN (ROASTS) BNLESS LN CKD RSTD',,,'Y','Connective tissue 3% separable fat 3%',6,,6.25,4.27,9.02,3.87 -10218,1000,'Pork fresh loin tenderloin separable lean and fat raw','PORK FRSH LOIN TENDERLOIN LN&FAT RAW','URMIS #3358 Pork tenderloin',,'Y','Connective tissue 5%',5,,6.25,4.27,9.02,3.87 -10219,1000,'Pork fresh ground raw','PORK FRESH GROUND RAW',,,,,0,,6.25,4.27,9.02,3.87 -10220,1000,'Pork fresh ground cooked','PORK FRESH GROUND COOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -10221,1000,'Pork fresh loin tenderloin separable lean and fat cooked broiled','PORK FRSH LOIN TENDERLOIN LN&FAT CKD BRLD',,,,'Connective tissue',3,,6.25,4.27,9.02,3.87 -10222,1000,'Pork fresh loin tenderloin separable lean and fat cooked roasted','PORK FRSH LOIN TENDERLOIN LN&FAT CKD RSTD','URMIS #3358 Pork tenderloin',,'Y','Connective tissue',4,,6.25,4.27,9.02,3.87 -10223,1000,'Pork fresh loin tenderloin separable lean only cooked broiled','PORK FRSH LOIN TENDERLOIN LN CKD BRLD',,,,'Connective tissue 3% separable fat 3%',6,,6.25,4.27,9.02,3.87 -10224,1000,'Pork fresh loin top loin (roasts) boneless separable lean and fat raw','PORK FRSH LOIN TOP LOIN (ROASTS) BNLESS LN&FAT RAW','Boneless pork loin Centercut boneless pork loin roast',,,'Connective tissue',16,,6.25,4.27,9.02,3.87 -10225,1000,'Pork fresh loin top loin (roasts) boneless separable lean only raw','PORK FRSH LOIN TOP LOIN (ROASTS) BNLESS LN RAW','Boneless pork loin Centercut boneless pork loin roast',,,'Connective tissue 10% separable fat 6%',16,,6.25,4.27,9.02,3.87 -10226,1000,'Pork fresh composite of trimmed retail cuts (loin and shoulder blade) separable lean and fat raw','PORK FRSH COMP OF RTL CUTS (LOIN & SHLDR BLADE) LN & FAT RAW',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -10227,1000,'Pork fresh composite of trimmed retail cuts (loin and shoulder blade) separable lean and fat cooked','PORK FRSH COMP OF RTL CUTS (LOIN&SHLDR BLADE) LN&FAT CKD',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -10228,1000,'Pork fresh composite of trimmed retail cuts (loin and shoulder blade) separable lean only raw','PORK FRSH COMP OF RTL CUTS (LOIN&SHLDR BLADE) LN RAW',,,,'Bone 22% separable fat 8%',30,,6.25,4.27,9.02,3.87 -10229,1000,'Pork fresh composite of trimmed retail cuts (loin and shoulder blade) separable lean only cooked','PORK FRSH COMP OF RTL CUTS (LOIN&SHLDR BLADE) LN CKD',,,,'Bone 22% separable fat 8%',30,,6.25,4.27,9.02,3.87 -10851,1000,'HORMEL Cure 81 Ham','HORMEL CURE 81 HAM',,,,,0,,,4.00,9.00,4.00 -10852,1000,'HORMEL ALWAYS TENDER Pork Tenderloin Teriyaki-Flavored','HORMEL ALWAYS TENDER PORK TENDERLOIN TERIYAKI-FLAVORED',,,,,0,,,4.00,9.00,4.00 -10853,1000,'HORMEL ALWAYS TENDER Pork Tenderloin Peppercorn-Flavored','HORMEL ALWAYS TENDER PORK TENDERLOIN PEPPERCORN-FLAVORED',,,,,0,,,4.00,9.00,4.00 -10854,1000,'HORMEL ALWAYS TENDER Pork Loin Filets Lemon Garlic-Flavored','HORMEL ALWAYS TENDER PORK LOIN FILETS LEMON GARLIC-FLAVORED',,,,,0,,,4.00,9.00,4.00 -10855,1000,'HORMEL ALWAYS TENDER Center Cut Chops Fresh Pork','HORMEL ALWAYS TENDER CNTR CUT CHOPS FRSH PORK',,,,,0,,,4.00,9.00,4.00 -10856,1000,'HORMEL ALWAYS TENDER Boneless Pork Loin Fresh Pork','HORMEL ALWAYS TENDER BNLESS PORK LOIN FRSH PORK',,,,,0,,,4.00,9.00,4.00 -10857,1000,'HORMEL Canadian Style Bacon','HORMEL CANADIAN STYLE BACON',,,,,0,,,4.00,9.00,4.00 -10858,1000,'Pork fresh loin top loin (chops) boneless separable lean only with added solution cooked pan-broiled','PORK FRSH LN TP LN (CHPS) BNLESS LN W/ ADDED SLN CKD PN-BRLD',,,,'Separable fat',9,,6.25,4.27,9.02,3.87 -10859,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat with added solution cooked pan-broiled','PORK FRSH LN TPLN(CHPS) BNLS LN & FT W/ADDED SLN CKD PN-BRLD',,,,,0,,,4.27,9.02,3.87 -10860,1000,'Pork cured bacon cooked baked','PORK CURED BACON CKD BKD',,,,,0,,6.25,4.27,9.02,3.87 -10861,1000,'Pork cured bacon cooked microwaved','PORK CURED BACON CKD MICROWAVED',,,,,0,,6.25,4.27,9.02,3.87 -10862,1000,'Pork cured bacon pre-sliced cooked pan-fried','PORK CURED BACON PRE-SLICED CKD PAN-FRIED',,,'Y',,0,,6.25,4.27,9.02,3.87 -10863,1000,'Pork fresh variety meats and by-products stomach cooked simmered','PORK FRSH VAR MEATS & BY-PRODUCTS STOMACH CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -10864,1000,'Pork bacon rendered fat cooked','PORK BACON RENDERED FAT CKD','bacon drippings',,,,0,,6.25,4.27,9.02,3.87 -10865,1000,'Pork cured ham -- water added rump bone-in separable lean only heated roasted','PORK CURED HAM -- H2O ADDED RUMP BONE-IN LN HTD RSTD',,,,'Bone 10% separable fat 9%',19,,,,, -10866,1000,'Pork cured ham -- water added rump bone-in separable lean only unheated','PORK CURED HAM -- H2O ADDED RUMP BONE-IN LN UNHTD',,,,'Bone 12% Separable fat 16%',28,,6.25,,, -10867,1000,'Pork cured ham -- water added shank bone-in separable lean only heated roasted','PORK CURED HAM -- H2O ADDED SHANK BONE-IN LN HTD RSTD',,,,'Bone 13% Connective tissue 6% Separable fat 16%',35,,,,, -10868,1000,'Pork cured ham -- water added slice bone-in separable lean only heated pan-broil','PORK CURED HAM -- H2O ADDED SLICE BONE-IN LN HTD PAN-BROIL',,,,'Separable fat 9% Bone 4%',13,,,,, -10869,1000,'Pork cured ham and water product slice bone-in separable lean only heated pan-broil','PORK CURED HAM & H2O PRODUCT SLICE BONE-IN LN HTD PAN-BROIL',,,,'Bone 3% Connective tissue 1% Separable fat 8%',12,,,,, -10870,1000,'Pork cured ham and water product slice boneless separable lean only heated pan-broil','PORK CURED HAM & H2O PRODUCT SLICE BNLESS LN HTD PAN-BROIL',,,'Y',,0,,,,, -10871,1000,'Pork cured ham and water product whole boneless separable lean only heated roasted','PORK CURED HAM & H2O PRODUCT WHL BNLESS LN HTD RSTD',,,'Y',,0,,,,, -10872,1000,'Pork cured ham and water product whole boneless separable lean only unheated','PORK CURED HAM & H2O PRODUCT WHL BNLESS LN UNHTD',,,'Y','Separable fat 3%',3,,,,, -10873,1000,'Pork cured ham with natural juices rump bone-in separable lean only heated roasted','PORK CURED HAM W/ NAT JUICES RUMP BONE-IN LN HTD RSTD',,,,'Bone 14% Separable fat 9%',23,,,,, -10874,1000,'Pork cured ham with natural juices shank bone-in separable lean only heated roasted','PORK CURED HAM W/ NAT JUICES SHANK BONE-IN LN HTD RSTD',,,,'Bone 12% Connective tissue 3% Separable fat 11%',26,,,,, -10875,1000,'Pork cured ham with natural juices slice bone-in separable lean only heated pan-broil','PORK CURED HAM W/ NAT JUICES SLICE BONE-IN LN HTD PAN-BROIL',,,,'Bone 3% Separable fat 8%',11,,,,, -10876,1000,'Pork cured ham with natural juices spiral slice meat only boneless separable lean only heated roasted','PRK CRD HAM W/ NAT JUCS SPRL SLC MEAT ONLY BNLES LN HTD RSTD',,,,'Separable fat',3,,,,, -10877,1000,'Pork cured ham and water product rump bone-in separable lean only heated roasted','PORK CURED HAM & H2O PRODUCT RUMP BONE-IN LN HTD RSTD',,,,'Bone 13% Connective tissue 1% Separable fat 12%',26,,,,, -10878,1000,'Pork cured ham -- water added slice boneless separable lean only heated pan-broil','PORK CURED HAM -- H2O ADDED SLICE BNLESS LN HTD PAN-BROIL',,,'Y','Separable fat',2,,,,, -10879,1000,'Pork cured ham -- water added whole boneless separable lean only heated roasted','PORK CURED HAM -- H2O ADDED WHL BNLESS LN HTD RSTD',,,'Y','Separable fat 2%',2,,,,, -10880,1000,'Pork cured ham -- water added whole boneless separable lean only unheated','PORK CURED HAM -- H2O ADDED WHL BNLESS LN UNHTD',,,'Y','Separable fat',3,,,,, -10881,1000,'Pork cured ham and water product shank bone-in separable lean only heated roasted','PORK CURED HAM & H2O PRODUCT SHANK BONE-IN LN HTD RSTD',,,,'Bone 16% Connective tissue 4% Separable fat 21%',41,,,,, -10882,1000,'Pork cured ham with natural juices slice boneless separable lean only heated pan-broil','PORK CURED HAM W/ NAT JUICES SLICE BNLESS LN HTD PAN-BROIL',,,'Y','Separable fat',1,,,,, -10883,1000,'Pork cured ham with natural juices whole boneless separable lean only heated roasted','PORK CURED HAM W/ NAT JUICES WHL BNLESS LN HTD RSTD',,,'Y','Separable fat 3%',3,,,,, -10884,1000,'Pork cured ham with natural juices whole boneless separable lean only unheated','PORK CURED HAM W/ NAT JUICES WHL BNLESS LN UNHTD',,,'Y','Separable fat 4%',4,,,,, -10885,1000,'Pork cured ham -- water added shank bone-in separable lean only unheated','PORK CURED HAM -- H2O ADDED SHANK BONE-IN LN UNHTD',,,,'Bone 10% Separable fat 16%',26,,6.25,,, -10886,1000,'Pork cured ham -- water added slice bone-in separable lean only unheated','PORK CURED HAM -- H2O ADDED SLICE BONE-IN LN UNHTD',,,,'Bone 4% Separable fat 16%',20,,6.25,,, -10887,1000,'Pork cured ham and water product rump bone-in separable lean only unheated','PORK CURED HAM & H2O PRODUCT RUMP BONE-IN LN UNHTD',,,,'Bone',18,,6.25,,, -10888,1000,'Pork cured ham and water product slice bone-in separable lean only unheated','PORK CURED HAM & H2O PRODUCT SLICE BONE-IN LN UNHTD',,,,'Bone 3% Separable fat 11%',14,,6.25,,, -10889,1000,'Pork cured ham and water product shank bone-in unheated separable lean only','PORK CURED HAM & H2O PRODUCT SHANK BONE-IN UNHTD LN',,,,'Bone 17% Separable fat 27%',44,,6.25,,, -10890,1000,'Pork cured ham with natural juices rump bone-in separable lean only unheated','PORK CURED HAM W/ NAT JUICES RUMP BONE-IN LN UNHTD',,,,'Bone 21% Separable fat 16%',37,,6.25,,, -10891,1000,'Pork cured ham with natural juices shank bone-in separable lean only unheated','PORK CURED HAM W/ NAT JUICES SHANK BONE-IN LN UNHTD',,,,'Bone 10% Separable fat 14%',24,,6.25,,, -10892,1000,'Pork cured ham with natural juices slice bone-in separable lean only unheated','PORK CURED HAM W/ NAT JUICES SLICE BONE-IN LN UNHTD',,,,'Bone 3% Separable fat 9%',12,,6.25,,, -10893,1000,'Pork cured ham with natural juices spiral slice boneless separable lean only unheated','PORK CURED HAM W/ NAT JUICES SPIRAL SLICE BNLESS LN UNHTD',,,'Y','Separable fat 5%',5,,6.25,,, -10894,1000,'Pork cured ham separable fat boneless heated','PORK CURED HAM FAT BNLESS HTD',,,,,0,,6.25,,, -10895,1000,'Pork cured ham separable fat boneless unheated','PORK CURED HAM FAT BNLESS UNHTD',,,,,0,,6.25,,, -10898,1000,'Pork pickled pork hocks','PORK PICKLED PORK HOCKS',,,,,0,,6.25,,, -10899,1000,'Pork cured ham slice bone-in separable lean only heated pan-broil','PORK CURED HAM SLICE BONE-IN LN HTD PAN-BROIL',,,,'Bone 5% Separable fat 9%',14,,,,, -10900,1000,'Pork cured ham with natural juices whole boneless separable lean and fat unheated','PORK CURED HAM W/ NAT JUICES WHL BNLESS LN & FAT UNHTD',,,'Y',,0,,,,, -10901,1000,'Pork cured ham with natural juices spiral slice boneless separable lean and fat unheated','PORK CURED HAM W/ NAT JUICES SPIRL SLCE BNLES LN & FAT UNHTD',,,'Y',,0,,,,, -10902,1000,'Pork cured ham with natural juices slice bone-in separable lean and fat unheated','PORK CURED HAM W/ NAT JUICES SLICE BONE-IN LN & FAT UNHTD',,,,'Bone',3,,,,, -10903,1000,'Pork cured ham with natural juices shank bone-in separable lean and fat unheated','PORK CURED HAM W/ NAT JUICES SHANK BONE-IN LN & FAT UNHTD',,,,'Bone',10,,,,, -10904,1000,'Pork cured ham with natural juices rump bone-in separable lean and fat unheated','PORK CURED HAM W/ NAT JUICES RUMP BONE-IN LN & FAT UNHTD',,,,'Bone',21,,,,, -10905,1000,'Pork cured ham and water product whole boneless separable lean and fat unheated','PORK CURED HAM & H2O PRODUCT WHL BNLESS LN & FAT UNHTD',,,'Y',,0,,,,, -10906,1000,'Pork cured ham and water product slice bone-in separable lean and fat unheated','PORK CURED HAM & H2O PRODUCT SLICE BONE-IN LN & FAT UNHTD',,,,'Bone',3,,,,, -10907,1000,'Pork cured ham and water product shank bone-in separable lean and fat unheated','PORK CURED HAM & H2O PRODUCT SHANK BONE-IN LN & FAT UNHTD',,,,'Bone',17,,,,, -10908,1000,'Pork cured ham and water product rump bone-in separable lean and fat unheated','PORK CURED HAM & H2O PRODUCT RUMP BONE-IN LN & FAT UNHTD',,,,'Bone',18,,,,, -10909,1000,'Pork cured ham -- water added whole boneless separable lean and fat unheated','PORK CURED HAM -- H2O ADDED WHL BNLESS LN & FAT UNHTD',,,'Y',,0,,,,, -10910,1000,'Pork cured ham -- water added slice bone-in separable lean and fat unheated','PORK CURED HAM -- H2O ADDED SLICE BONE-IN LN & FAT UNHTD',,,,'Bone',4,,,,, -10911,1000,'Pork cured ham -- water added shank bone-in separable lean and fat unheated','PORK CURED HAM -- H2O ADDED SHANK BONE-IN LN & FAT UNHTD',,,,'Bone',10,,,,, -10912,1000,'Pork cured ham -- water added rump bone-in separable lean and fat unheated','PORK CURED HAM -- H2O ADDED RUMP BONE-IN LN & FAT UNHTD',,,,'Bone',12,,,,, -10913,1000,'Pork cured ham -- water added rump bone-in separable lean and fat heated roasted','PORK CURED HAM -- H2O ADDED RUMP BONE-IN LN & FAT HTD RSTD',,,,'Bone',10,,,,, -10914,1000,'Pork cured ham -- water added shank bone-in separable lean and fat heated roasted','PORK CURED HAM -- H2O ADDED SHANK BONE-IN LN & FAT HTD RSTD',,,,'Bone 13% Connective tissue 6%',19,,,,, -10915,1000,'Pork cured ham -- water added slice bone-in separable lean and fat heated pan-broil','PORK CURED HAM -- H2O ADDED SLCE BNE-IN LN & FAT HTD PAN-BRL',,,,'Bone',4,,,,, -10916,1000,'Pork cured ham -- water added slice boneless separable lean and fat heated pan-broil','PORK CURED HAM -- H2O ADDED SLCE BNLESS LN & FAT HTD PAN-BRL',,,'Y',,0,,,,, -10917,1000,'Pork cured ham -- water added whole boneless separable lean and fat heated roasted','PORK CURED HAM -- H2O ADDED WHL BNLESS LN & FAT HTD RSTD',,,'Y',,0,,,,, -10918,1000,'Pork cured ham and water product rump bone-in separable lean and fat heated roasted','PORK CURED HAM & H2O PRODUCT RUMP BONE-IN LN & FAT HTD RSTD',,,,'Bone 13% Connective tissue 1%',14,,,,, -10919,1000,'Pork cured ham and water product shank bone-in separable lean and fat heated roasted','PORK CURED HAM & H2O PRODUCT SHANK BONE-IN LN & FAT HTD RSTD',,,,'Bone 16% Connective tissue 4%',20,,,,, -10920,1000,'Pork cured ham and water product slice bone-in separable lean and fat heated pan-broil','PORK CURED HAM & H2O PRDCT SLCE BNE-IN LN & FAT HTD PAN-BRL',,,,'Bone 3% Connective tissue 1%',4,,,,, -10921,1000,'Pork cured ham and water product slice boneless separable lean and fat heated pan-broil','PORK CURED HAM & H2O PRDCT SLICE BNLESS LN & FAT HTD PAN-BRL',,,'Y',,0,,,,, -10922,1000,'Pork cured ham and water product whole boneless separable lean and fat heated roasted','PORK CURED HAM & H2O PRODUCT WHL BNLESS LN & FAT HTD RSTD',,,'Y',,0,,,,, -10923,1000,'Pork cured ham with natural juices rump bone-in separable lean and fat heated roasted','PORK CURED HAM W/ NAT JUICES RUMP BONE-IN LN & FAT HTD RSTD',,,,'Bone',14,,,,, -10924,1000,'Pork cured ham with natural juices shank bone-in separable lean and fat heated roasted','PORK CURED HAM W/ NAT JUICES SHANK BONE-IN LN & FAT HTD RSTD',,,,'Bone 12% Connective tissue 3%',15,,,,, -10925,1000,'Pork cured ham with natural juices slice bone-in separable lean and fat heated pan-broil','PORK CURED HAM W/ NAT JUICS SLCE BNE-IN LN & FAT HTD PAN-BRL',,,,'Bone',3,,,,, -10926,1000,'Pork cured ham with natural juices slice boneless separable lean and fat heated pan-broil','PORK CURED HAM W/ NAT JUICS SLICE BNLES LN & FAT HTD PAN-BRL',,,'Y',,0,,,,, -10927,1000,'Pork cured ham with natural juices spiral slice boneless separable lean and fat heated roasted','PORK CURED HAM W/ NAT JUCS SPRL SLCE BNLES LN & FAT HTD RSTD',,,'Y',,0,,,,, -10928,1000,'Pork cured ham with natural juices whole boneless separable lean and fat heated roasted','PORK CURED HAM W/ NAT JUICES WHL BNLESS LN & FAT HTD RSTD',,,'Y',,0,,,,, -10929,1000,'Pork cured ham rump bone-in separable lean and fat heated roasted','PORK CURED HAM RUMP BONE-IN LN & FAT HTD RSTD',,,,'Bone',23,,,,, -10931,1000,'Pork cured ham rump bone-in separable lean only heated roasted','PORK CURED HAM RUMP BONE-IN LN HTD RSTD',,,,'Bone 13% Separable fat 10%',23,,,,, -10932,1000,'Pork cured ham rump bone-in separable lean only unheated','PORK CURED HAM RUMP BONE-IN LN UNHTD',,,,'Bone 13% Separable fat 13%',26,,,,, -10933,1000,'Pork cured ham shank bone-in separable lean only heated roasted','PORK CURED HAM SHANK BONE-IN LN HTD RSTD',,,,'Bone 12% Separable fat 10%',22,,,,, -10934,1000,'Pork cured ham shank bone-in separable lean only unheated','PORK CURED HAM SHANK BONE-IN LN UNHTD',,,,'Bone 11% Separable fat 12%',23,,,,, -10935,1000,'Pork cured ham shank bone-in separable lean and fat heated roasted','PORK CURED HAM SHANK BONE-IN LN & FAT HTD RSTD',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -10936,1000,'Pork cured ham shank bone-in separable lean and fat unheated','PORK CURED HAM SHANK BONE-IN LN & FAT UNHTD',,,,'Bone',11,,,,, -10937,1000,'Pork cured ham slice bone-in separable lean and fat heated pan-broil','PORK CURED HAM SLICE BONE-IN LN & FAT HTD PAN-BROIL',,,,'Bone',14,,,,, -10938,1000,'Pork cured ham slice bone-in separable lean only unheated','PORK CURED HAM SLICE BONE-IN LN UNHTD',,,,'Bone 5% Separable fat 11%',16,,,,, -10939,1000,'Pork cured ham slice bone-in separable lean and fat unheated','PORK CURED HAM SLICE BONE-IN LN & FAT UNHTD',,,,'Bone',5,,,,, -10940,1000,'Pork fresh spareribs separable lean and fat cooked roasted','PORK FRSH SPARERIBS LN & FAT CKD RSTD',,,,'Bone',32,,,,, -10942,1000,'Pork fresh composite of separable fat with added solution raw','PORK FRSH COMP OF FAT W/ ADDED SOLN RAW',,,,,0,,,,, -10943,1000,'Pork fresh loin tenderloin separable lean only with added solution cooked roasted','PORK FRSH LOIN TNDERLN LN W/ ADDED SLN CKD RSTD',,,'Y','Connective tissue 4% Separable fat 1%',5,,,,, -10944,1000,'Pork fresh enhanced loin tenderloin separable lean only raw','PORK FRSH ENHANCED LOIN TENDERLOIN LN RAW',,,'Y','Connective tissue 3% Separable fat 2%',5,,,4.27,9.02,3.87 -10945,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean only with added solution cooked braised','PORK FRSH SHLDR (BSTN BTT) BLDE (STKS) LN W/ADDEDSLNCKD BRSD',,,'Y','Bone 9% Connective tissue 19% Separable fat 7%',35,,,4.27,9.02,3.87 -10946,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean only with added solution raw','PORK FRSH SHLDR (BSTN BUTT) BLDE (STKS) LN W/ ADDED SOLN RAW',,,'Y','Bone 7% Connective tissue 16% Separable fat 9%',32,,,,, -10947,1000,'Pork fresh loin top loin (chops) boneless separable lean only with added solution cooked broiled','PORK FRSH LN TOP LN (CHPS) BNLESS LN W/ ADDED SLN CKD BRLD',,,'Y','Separable fat 7%',7,,,,, -10948,1000,'Pork fresh loin top loin (chops) boneless separable lean only with added solution raw','PORK FRSH LN TOP LIN (CHOPS) BNLSS LN W/ ADDED SLN RAW',,,'Y','Separable fat 14%',14,,,,, -10949,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat with added solution raw','PORK FRSH LOIN TP LN (CHPS) BNLSS LN & FT W/ ADDED SLN RAW',,,'Y',,0,,6.25,,, -10950,1000,'Pork fresh loin top loin (chops) boneless separable lean and fat with added solution cooked broiled','PORK FRSH LN TP LN (CHPS) BNLSS LN & FT W/ADDED SLN CKD BRLD',,,'Y',,0,,,,, -10951,1000,'Pork fresh loin tenderloin separable lean and fat with added solution raw','PORK FRSH LOIN TENDERLOIN LN & FAT W/ ADDED SLN RAW',,,'Y','Connective tissue 3%',3,,,,, -10952,1000,'Pork fresh loin tenderloin separable lean and fat with added solution cooked roasted','PORK FRSH LOIN TNDERLN LN & FT W/ ADDED SLN CKD RSTD',,,'Y','Connective tissue',4,,,,, -10953,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean and fat with added solution raw','PORK FRSH SHDR (BSTN BTT) BLDE(STKS) LN & FT W/ADDED SLN RAW',,,'Y','Bone 7% Connective tissue 16%',23,,,,, -10954,1000,'Pork fresh shoulder (Boston butt) blade (steaks) separable lean and fat with added solution cooked braised','PORK FRSH SHDR (BSTN BT) BLDE(STKS) LN&FT WADDEDSLN CKD BRSD',,,'Y','Bone 9% Connective tissue 19%',28,,,,, -10955,1000,'Pork cured ham rump bone-in separable lean and fat unheated','PORK CURED HAM RUMP BONE-IN LN & FAT UNHTD',,,,'Bone',13,,,,, -10956,1000,'Pork loin leg cap steak boneless separable lean and fat cooked broiled','PORK LOIN LEG CAP STEAK BNLESS LN & FAT CKD BRLD','URMIS #3646 Leg cap steak Gracilis',,,,0,,6.25,4.27,9.02,3.87 -10957,1000,'Pork Leg Cap Steak boneless separable lean and fat raw','PORK LEG CAP STEAK BNLESS LN & FAT RAW','URMIS #3646 Leg cap steak Gracilis',,,,0,,6.25,4.27,9.02,3.87 -10958,1000,'Pork Shoulder breast boneless separable lean and fat raw','PORK SHLDR BREAST BNLESS LN & FAT RAW','URMIS #3604 Shoulder breast Pectoralis Profundi',,,,0,,6.25,4.27,9.02,3.87 -10959,1000,'Pork Shoulder breast boneless separable lean and fat cooked broiled','PORK SHLDR BREAST BNLESS LN & FAT CKD BRLD','URMIS #3604 Shoulder breast Pectoralis profundi',,,,0,,6.25,4.27,9.02,3.87 -10960,1000,'Pork shoulder petite tender boneless separable lean and fat cooked broiled','PORK SHLDR PETITE TENDER BNLESS LN & FAT CKD BRLD','URMIS #3605 Shoulder petite tender Teres major',,,,0,,6.25,4.27,9.02,3.87 -10961,1000,'Pork Shoulder petite tender boneless separable lean and fat raw','PORK SHLDR PETITE TENDER BNLESS LN & FAT RAW','URMIS #3605 Shoulder petite tender Teres major',,,,0,,6.25,4.27,9.02,3.87 -10962,1000,'Pork Leg sirloin tip roast boneless separable lean and fat cooked braised','PORK LEG SIRLOIN TIP RST BNLESS LN & FAT CKD BRSD','URMIS #3647 Leg sirloin tip roast Vastas Lateralis/Rectus femoris',,,,0,,6.25,4.27,9.02,3.87 -10963,1000,'Pork Leg sirloin tip roast boneless separable lean and fat raw','PORK LEG SIRLOIN TIP RST BNLESS LN & FAT RAW','URMIS #3647 Leg sirloin tip roast Vastas lateralis/Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -10972,1000,'Pork ground 84% lean / 16% fat raw','PORK GROUND 84% LN / 16% FAT RAW',,,,,0,,,,, -10973,1000,'Pork ground 96% lean / 4% fat raw','PORK GROUND 96% LN / 4% FAT RAW',,,,,0,,,,, -10974,1000,'Pork ground 72% lean / 28% fat cooked crumbles','PORK GROUND 72% LN / 28% FAT CKD CRUMBLES',,,,,0,,,,, -10975,1000,'Pork ground 84% lean / 16% fat cooked crumbles','PORK GROUND 84% LN / 16% FAT CKD CRUMBLES',,,,,0,,,,, -10976,1000,'Pork ground 96% lean / 4% fat cooked crumbles','PORK GROUND 96% LN / 4% FAT CKD CRUMBLES',,,,,0,,,,, -10977,1000,'Pork ground 72% lean / 28% fat cooked pan-broiled','PORK GROUND 72% LN / 28% FAT CKD PAN-BROILED',,,,,0,,,,, -10978,1000,'Pork ground 84% lean / 16% fat cooked pan-broiled','PORK GROUND 84% LN / 16% FAT CKD PAN-BROILED',,,,,0,,,,, -10979,1000,'Pork ground 96% lean / 4% fat cooked pan-broiled','PORK GROUND 96% LN / 4% FAT CKD PAN-BROILED',,,,,0,,,,, -10980,1000,'Pork loin fresh backribs bone-in raw lean only','PORK LOIN FRSH BACKRIBS BONE-IN RAW LN',,,'Y','Bone 30% Connective tissue 7% Separable fat 9%',50,,,,, -10981,1000,'Pork loin fresh backribs bone-in cooked-roasted lean only','PORK LOIN FRSH BACKRIBS BONE-IN COOKED-ROASTED LN',,,'Y','Bone 31% Connective tissue 4% Separable fat 5%',40,,,,, -10982,1000,'Pork fresh loin blade (chops or roasts) boneless separable lean only raw','PORK FRSH LOIN BLADE (CHOPS OR ROASTS) BNLESS LN RAW',,,,'Connective tissue 7% Separable fat 6%',13,,,,, -10983,1000,'Pork fresh loin blade (roasts) boneless separable lean only cooked roasted','PORK FRSH LOIN BLADE (ROASTS) BNLESS LN CKD RSTD',,,,'Connective tissue 5% Separable fat 5%',10,,,,, -10984,1000,'Pork fresh loin blade (chops) boneless separable lean only boneless cooked broiled','PORK FRSH LOIN BLADE (CHOPS) BNLESS LN BNLESS CKD BRLD',,,,'Connective tissue 6% Separable fat 7%',13,,,,, -10985,1000,'Pork fresh loin country-style ribs separable lean only boneless cooked broiled','PORK FRSH LOIN COUNTRY-STYLE RIBS LN BNLESS CKD BRLD',,,,'Connective tissue 6% Separable fat 7%',13,,,,, -10986,1000,'Pork fresh loin country-style ribs separable lean only bone-in cooked broiled','PORK FRSH LOIN COUNTRY-STYLE RIBS LN BONE-IN CKD BRLD',,,,'Connective tissue 5% Bone 17% Separable fat 8%',30,,,,, -10987,1000,'Pork fresh loin country-style ribs separable lean only boneless cooked roasted','PORK FRSH LOIN COUNTRY-STYLE RIBS LN BNLESS CKD RSTD',,,,'Connective tissue 7% Separable fat 11%',19,,,,, -10988,1000,'Pork fresh blade (chops) boneless separable lean and fat cooked broiled','PORK FRSH BLADE (CHOPS) BNLESS LN & FAT CKD BRLD',,,,'Connective tissue 6%',6,,,,, -10989,1000,'Pork fresh loin blade (chops or roasts) boneless separable lean and fat only raw','PORK FRSH LOIN BLDE (CHOPS OR ROAST) BNLESS LN & FAT OLY RAW',,,,'Connective tissue 7%',7,,,,, -10990,1000,'Pork fresh loin blade (roasts) boneless separable lean and fat cooked roasted','PORK FRSH LOIN BLADE (ROASTS) BNLESS LN & FAT CKD RSTD',,,,'Connective tissue 5%',5,,,,, -10991,1000,'Pork fresh loin country-style ribs separable lean and fat boneless cooked broiled','PORK FRSH LOIN COUNTRY-STYLE RIBS LN & FAT BNLESS CKD BRLD',,,,'Connective tissue 6%',6,,,,, -10992,1000,'Pork fresh loin country-style ribs separable lean and fat bone-in cooked broiled','PORK FRSH LOIN COUNTRY-STYLE RIBS LN & FAT BONE-IN CKD BRLD',,,,'Connective tissue 5% Bone 17%',22,,,,, -10993,1000,'Pork fresh loin country-style ribs separable lean and fat boneless cooked roasted','PORK FRSH LOIN COUNTRY-STYLE RIBS LN & FAT BNLESS CKD RSTD',,,,'Connective tissue 7% ',7,,,,, -10994,1000,'Bacon pre-sliced reduced/low sodium unprepared','BACON PRE-SLICED REDUCED/LOW NA UNPREP',,,,,0,,,,, -10998,1000,'Canadian bacon cooked pan-fried','CANADIAN BACON CKD PAN-FRIED',,,'Y',,0,,,,, -11001,1100,'Alfalfa seeds sprouted raw','ALFALFA SEEDS SPROUTED RAW',,,'Y',,0,'Medicago sativa',6.25,2.44,8.37,3.57 -11003,1100,'Amaranth leaves raw','AMARANTH LEAVES RAW',,,,'Tough stems',6,'Amaranthus spp.',6.25,2.44,8.37,3.57 -11004,1100,'Amaranth leaves cooked boiled drained without salt','AMARANTH LEAVES CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11005,1100,'Arrowhead raw','ARROWHEAD RAW',,,,'Skin and sprout',25,'Sagittaria latifolia',6.25,2.78,8.37,3.84 -11006,1100,'Arrowhead cooked boiled drained without salt','ARROWHEAD CKD BLD DRND WO/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11007,1100,'Artichokes (globe or french) raw','ARTICHOKES (GLOBE OR FRENCH) RAW',,,,'Stem and inedible parts of bracts and flowers',60,'Cynara scolymus',6.25,2.44,8.37,3.57 -11008,1100,'Artichokes (globe or french) cooked boiled drained without salt','ARTICHOKES (GLOBE OR FRENCH) CKD BLD DRND WO/SALT',,,'Y','Stem and inedible parts of bracts and flowers',60,,6.25,2.44,8.37,3.57 -11009,1100,'Artichokes (globe or french) frozen unprepared','ARTICHOKES (GLOBE OR FRENCH) FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11010,1100,'Artichokes (globe or french) frozen cooked boiled drained without salt','ARTICHOKES (GLOBE OR FRENCH) FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11011,1100,'Asparagus raw','ASPARAGUS RAW',,,'Y','Butt ends',47,'Asparagus officinalis',6.25,2.44,8.37,3.57 -11012,1100,'Asparagus cooked boiled drained','ASPARAGUS CKD BLD DRND',,,'Y',,0,,6.25,2.44,8.37,3.57 -11013,1100,'Asparagus canned regular pack solids and liquids','ASPARAGUS CND REG PK SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11015,1100,'Asparagus canned drained solids','ASPARAGUS CND DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11018,1100,'Asparagus frozen unprepared','ASPARAGUS FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11019,1100,'Asparagus frozen cooked boiled drained without salt','ASPARAGUS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11022,1100,'Balsam-pear (bitter gourd) leafy tips raw','BALSAM-PEAR (BITTER GOURD) LEAFY TIPS RAW',,,,'Tough stems and leaves',62,'Momordica charantia',6.25,2.44,8.37,3.57 -11023,1100,'Balsam-pear (bitter gourd) leafy tips cooked boiled drained without salt','BALSAM-PEAR (BITTER GOURD) LEAFY TIPS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11024,1100,'Balsam-pear (bitter gourd) pods raw','BALSAM-PEAR (BITTER GOURD) PODS RAW',,,,'Tough stems and leaves',17,'Momordica charantia',6.25,2.44,8.37,3.57 -11025,1100,'Balsam-pear (bitter gourd) pods cooked boiled drained without salt','BALSAM-PEAR (BITTER GOURD) PODS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11026,1100,'Bamboo shoots raw','BAMBOO SHOOTS RAW',,,'Y','Sheath',71,'Phyllostachys spp.',6.25,2.44,8.37,3.57 -11027,1100,'Bamboo shoots cooked boiled drained without salt','BAMBOO SHOOTS CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11028,1100,'Bamboo shoots canned drained solids','BAMBOO SHOOTS CND DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11029,1100,'Beans kidney mature seeds sprouted raw','BEANS KIDNEY MATURE SEEDS SPROUTED RAW',,,,,0,'Phaseolus vulgaris',6.25,2.44,8.37,3.57 -11030,1100,'Beans kidney mature seeds sprouted cooked boiled drained without salt','BEANS KIDNEY MATURE SEEDS SPROUTED CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11031,1100,'Lima beans immature seeds raw','LIMA BNS IMMAT SEEDS RAW',,,'Y','Pods and imperfect beans',56,'Phaseolus lunatus',6.25,3.47,8.37,4.07 -11032,1100,'Lima beans immature seeds cooked boiled drained without salt','LIMA BNS IMMAT SEEDS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11033,1100,'Lima beans immature seeds canned regular pack solids and liquids','LIMA BNS IMMAT SEEDS CND REG PK SOL & LIQUIDS',,,,,0,,6.25,3.47,8.37,4.07 -11037,1100,'Lima beans immature seeds frozen fordhook unprepared','LIMA BNS IMMAT SEEDS FRZ FORDHOOK UNPREP',,,'Y',,0,,6.25,3.47,8.37,4.07 -11038,1100,'Lima beans immature seeds frozen fordhook cooked boiled drained without salt','LIMA BNS IMMAT SEEDS FRZ FORDHOOK CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11039,1100,'Lima beans immature seeds frozen baby unprepared','LIMA BNS IMMAT SEEDS FRZ BABY UNPREP',,,,,0,,6.25,3.47,8.37,4.07 -11040,1100,'Lima beans immature seeds frozen baby cooked boiled drained without salt','LIMA BNS IMMAT SEEDS FRZ BABY CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11043,1100,'Mung beans mature seeds sprouted raw','MUNG BNS MATURE SEEDS SPROUTED RAW',,,'Y',,0,'Vigna radiata',6.25,2.44,8.37,3.57 -11044,1100,'Mung beans mature seeds sprouted cooked boiled drained without salt','MUNG BNS MATURE SEEDS SPROUTED CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11045,1100,'Mung beans mature seeds sprouted cooked stir-fried','MUNG BNS MATURE SEEDS SPROUTED CKD STIR-FRIED',,,,,0,,6.25,2.44,8.37,3.57 -11046,1100,'Beans navy mature seeds sprouted raw','BEANS NAVY MATURE SEEDS SPROUTED RAW',,,,,0,'Phaseolus vulgaris',6.25,2.44,8.37,3.57 -11047,1100,'Beans navy mature seeds sprouted cooked boiled drained without salt','BEANS NAVY MATURE SEEDS SPROUTED CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11048,1100,'Beans pinto immature seeds frozen unprepared','BEANS PINTO IMMAT SEEDS FRZ UNPREP',,,,,0,,6.25,3.47,8.37,4.07 -11049,1100,'Beans pinto immature seeds frozen cooked boiled drained without salt','BEANS PINTO IMMAT SEEDS FRZ CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11050,1100,'Beans shellie canned solids and liquids','BEANS SHELLIE CND SOL & LIQUIDS',,,'Y',,0,,6.25,2.96,8.37,3.82 -11052,1100,'Beans snap green raw','BEANS SNAP GREEN RAW',,,'Y','Ends strings trimmings',12,'Phaseolus vulgaris',6.25,2.44,8.37,3.57 -11053,1100,'Beans snap green cooked boiled drained without salt','BEANS SNAP GRN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11054,1100,'Beans snap green canned regular pack solids and liquids','BEANS SNAP GRN CND REG PK SOL & LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11056,1100,'Beans snap green canned regular pack drained solids','BEANS SNAP GRN CND REG PK DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11058,1100,'Beans snap canned all styles seasoned solids and liquids','BEANS SNAP CND ALL STYLES SEASONED SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11060,1100,'Beans snap green frozen all styles unprepared (Includes foods for USDAs Food Distribution Program)','BEANS SNAP GRN FRZ ALL STYLES UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11061,1100,'Beans snap green frozen cooked boiled drained without salt','BEANS SNAP GRN FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11062,1100,'Beans snap green frozen all styles microwaved','BEANS SNAP GRN FRZ ALL STYLES MICROWAVED',,,,,0,,6.25,2.44,8.37,3.57 -11063,1100,'Beans snap green microwaved','BEANS SNAP GRN MICROWAVED',,,,,0,,6.25,2.44,8.37,3.57 -11080,1100,'Beets raw','BEETS RAW',,,'Y','Parings and part tops',33,'Beta vulgaris',6.25,2.78,8.37,3.84 -11081,1100,'Beets cooked boiled drained','BEETS CKD BLD DRND',,,'Y',,0,,6.25,2.78,8.37,3.84 -11082,1100,'Beets canned regular pack solids and liquids','BEETS CND REG PK SOL&LIQUIDS',,,,,0,,6.25,2.78,8.37,3.84 -11084,1100,'Beets canned drained solids','BEETS CND DRND SOL',,,'Y',,0,,6.25,2.78,8.37,3.84 -11086,1100,'Beet greens raw','BEET GREENS RAW',,,'Y','Stems bruised and old leaves',44,'Beta vulgaris',6.25,2.44,8.37,3.57 -11087,1100,'Beet greens cooked boiled drained without salt','BEET GRNS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11088,1100,'Broadbeans immature seeds raw','BROADBEANS IMMAT SEEDS RAW',,,,'Ends',3,'Vicia faba',6.25,3.47,8.37,4.07 -11089,1100,'Broadbeans immature seeds cooked boiled drained without salt','BROADBEANS IMMAT SEEDS CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11090,1100,'Broccoli raw','BROCCOLI RAW',,,'Y','Leaves and tough stalks with trimmings',39,'Brassica oleracea var. italica',6.25,2.44,8.37,3.57 -11091,1100,'Broccoli cooked boiled drained without salt','BROCCOLI CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11092,1100,'Broccoli frozen chopped unprepared','BROCCOLI FRZ CHOPD UNPREP',,,'Y',,0,,6.25,2.44,8.37,3.57 -11093,1100,'Broccoli frozen chopped cooked boiled drained without salt','BROCCOLI FRZ CHOPD CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11094,1100,'Broccoli frozen spears unprepared (Includes foods for USDAs Food Distribution Program)','BROCCOLI FRZ SPEARS UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11095,1100,'Broccoli frozen spears cooked boiled drained without salt','BROCCOLI FRZ SPEARS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11096,1100,'Broccoli raab raw','BROCCOLI RAAB RAW','Broccoli rabe Rapini',,'Y',,0,'Brassica ruvo',6.25,2.44,8.37,3.57 -11097,1100,'Broccoli raab cooked','BROCCOLI RAAB CKD','Broccoli rabe Rapini',,'Y',,0,,6.25,2.44,8.37,3.57 -11098,1100,'Brussels sprouts raw','BRUSSELS SPROUTS RAW',,,'Y','Outer leaves',10,'Brassica oleracea (Gemmifera Group)',6.25,2.44,8.37,3.57 -11099,1100,'Brussels sprouts cooked boiled drained without salt','BRUSSELS SPROUTS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11100,1100,'Brussels sprouts frozen unprepared','BRUSSELS SPROUTS FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11101,1100,'Brussels sprouts frozen cooked boiled drained without salt','BRUSSELS SPROUTS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11104,1100,'Burdock root raw','BURDOCK ROOT RAW',,,'Y','Skin root and tips',25,'Arctium lappa',6.25,2.78,8.37,3.84 -11105,1100,'Burdock root cooked boiled drained without salt','BURDOCK ROOT CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11106,1100,'Butterbur (fuki) raw','BUTTERBUR (FUKI) RAW',,,,'Leaves stem ends peels',12,'Petasites japonicus',6.25,2.44,8.37,3.57 -11107,1100,'Butterbur cooked boiled drained without salt','BUTTERBUR CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11108,1100,'Butterbur canned','BUTTERBUR CANNED',,,,,0,,6.25,2.44,8.37,3.57 -11109,1100,'Cabbage raw','CABBAGE RAW',,,'Y','Outer leaves and core',20,'Brassica oleracea (Capitata Group)',6.25,2.44,8.37,3.57 -11110,1100,'Cabbage cooked boiled drained without salt','CABBAGE CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11112,1100,'Cabbage red raw','CABBAGE RED RAW',,,'Y','Outer leaves and core',20,'Brassica oleracea (Capitata Group)',6.25,2.44,8.37,3.57 -11113,1100,'Cabbage red cooked boiled drained without salt','CABBAGE RED CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11114,1100,'Cabbage savoy raw','CABBAGE SAVOY RAW',,,'Y','Outer leaves and core',20,'Brassica oleracea (Capitata Group)',6.25,2.44,8.37,3.57 -11115,1100,'Cabbage savoy cooked boiled drained without salt','CABBAGE SAVOY CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11116,1100,'Cabbage chinese (pak-choi) raw','CABBAGE CHINESE (PAK-CHOI) RAW','pak choi bok choy',,'Y','Base and damaged leaves',12,'Brassica rapa (Chinensis Group)',6.25,2.44,8.37,3.57 -11117,1100,'Cabbage chinese (pak-choi) cooked boiled drained without salt','CABBAGE CHINESE (PAK-CHOI) CKD BLD DRND WO/SALT','bok choy pak choi',,'Y',,0,,6.25,2.44,8.37,3.57 -11118,1100,'Cabbage kimchi','CABBAGE KIMCHI',,,'Y',,0,,6.25,2.44,8.37,3.57 -11119,1100,'Cabbage chinese (pe-tsai) raw','CABBAGE CHINESE (PE-TSAI) RAW',,,'Y','Outer leaves and root base',7,'Brassica rapa (Pekinensis Group)',6.25,2.44,8.37,3.57 -11120,1100,'Cabbage chinese (pe-tsai) cooked boiled drained without salt','CABBAGE CHINESE (PE-TSAI) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11122,1100,'Cardoon raw','CARDOON RAW',,,,'Tough stems and leaves',51,'Cynara cardunculus',6.25,2.44,8.37,3.57 -11123,1100,'Cardoon cooked boiled drained without salt','CARDOON CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11124,1100,'Carrots raw','CARROTS RAW',,,'Y','Crown tops and scrapings',11,'Daucus carota',6.25,2.78,8.37,3.84 -11125,1100,'Carrots cooked boiled drained without salt','CARROTS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11126,1100,'Carrots canned regular pack solids and liquids','CARROTS CND REG PK SOL&LIQUIDS',,,,,0,,6.25,2.78,8.37,3.84 -11128,1100,'Carrots canned regular pack drained solids','CARROTS CND REG PK DRND SOL',,,'Y',,0,,6.25,2.78,8.37,3.84 -11130,1100,'Carrots frozen unprepared (Includes foods for USDAs Food Distribution Program)','CARROTS FROZEN UNPREPARED',,,'Y',,0,,6.25,2.78,8.37,3.84 -11131,1100,'Carrots frozen cooked boiled drained without salt','CARROTS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11134,1100,'Cassava raw','CASSAVA RAW',,,'Y','Skin',16,'Manihot esculenta',6.25,2.78,8.37,4.03 -11135,1100,'Cauliflower raw','CAULIFLOWER RAW',,,'Y','Leaf stalks cores and trimmings',61,'Brassica oleracea (Botrytis Group)',6.25,2.44,8.37,3.57 -11136,1100,'Cauliflower cooked boiled drained without salt','CAULIFLOWER CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11137,1100,'Cauliflower frozen unprepared','CAULIFLOWER FRZ UNPREP',,,'Y',,0,,6.25,2.44,8.37,3.57 -11138,1100,'Cauliflower frozen cooked boiled drained without salt','CAULIFLOWER FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11141,1100,'Celeriac raw','CELERIAC RAW',,,'Y','Parings',14,'Apium graveolens',6.25,2.78,8.37,3.84 -11142,1100,'Celeriac cooked boiled drained without salt','CELERIAC CKD BLD DRND WO/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11143,1100,'Celery raw','CELERY RAW',,,'Y','Roots and trimmings',11,'Apium graveolens',6.25,2.44,8.37,3.57 -11144,1100,'Celery cooked boiled drained without salt','CELERY CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11145,1100,'Celtuce raw','CELTUCE RAW',,,,'Tough leaves and stems',25,'Lactuca sativa',6.25,2.44,8.37,3.57 -11147,1100,'Chard swiss raw','CHARD SWISS RAW',,,'Y','Tough stems and damaged leaves',8,'Beta vulgaris subsp. vulagaris',6.25,2.44,8.37,3.57 -11148,1100,'Chard swiss cooked boiled drained without salt','CHARD SWISS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11149,1100,'Chayote fruit raw','CHAYOTE FRUIT RAW','christophine',,'Y','End and stem',1,'Sechium edule',6.25,2.44,8.37,3.57 -11150,1100,'Chayote fruit cooked boiled drained without salt','CHAYOTE FRUIT CKD BLD DRND WO/SALT','christophine',,'Y',,0,,6.25,2.44,8.37,3.57 -11151,1100,'Chicory witloof raw','CHICORY WITLOOF RAW',,,,'Root base and core',11,'Cichorium intybus',6.25,2.44,8.37,3.57 -11152,1100,'Chicory greens raw','CHICORY GREENS RAW',,,'Y','Tough stems and damaged leaves',18,'Cichorium intybus',6.25,2.44,8.37,3.57 -11154,1100,'Chicory roots raw','CHICORY ROOTS RAW',,,,'Peels and tops',18,'Cichorium intybus',6.25,2.44,8.37,3.84 -11156,1100,'Chives raw','CHIVES RAW',,,'Y',,0,'Allium schoenoprasum',6.25,2.44,8.37,3.57 -11157,1100,'Chrysanthemum garland raw','CHRYSANTHEMUM GARLAND RAW',,,,'Stem ends',4,'Chrysanthemum coronarium',6.25,2.44,8.37,3.57 -11158,1100,'Chrysanthemum garland cooked boiled drained without salt','CHRYSANTHEMUM GARLAND CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11161,1100,'Collards raw','COLLARDS RAW',,,'Y','Stems',43,'Brassica oleracea var. viridis',6.25,2.44,8.37,3.57 -11162,1100,'Collards cooked boiled drained without salt','COLLARDS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11163,1100,'Collards frozen chopped unprepared','COLLARDS FRZ CHOPD UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11164,1100,'Collards frozen chopped cooked boiled drained without salt','COLLARDS FRZ CHOPD CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11165,1100,'Coriander (cilantro) leaves raw','CORIANDER (CILANTRO) LEAVES RAW','Chinese parsley raw Cilantro raw',,'Y','Roots old and bruised leaves',15,'Coriandrum sativum',6.25,2.44,8.37,3.57 -11167,1100,'Corn sweet yellow raw','CORN SWT YEL RAW',,,'Y','35% husk silk trimmings; 29% cob',64,'Zea mays',6.25,2.44,8.37,3.57 -11168,1100,'Corn sweet yellow cooked boiled drained without salt','CORN SWT YEL CKD BLD DRND WO/SALT',,,'Y','Cob',45,,6.25,2.44,8.37,3.57 -11170,1100,'Corn sweet yellow canned brine pack regular pack solids and liquids','CORN SWT YEL CND BRINE PK REG PK SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11172,1100,'Corn sweet yellow canned whole kernel drained solids','CORN SWT YEL CND WHL KERNEL DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11174,1100,'Corn sweet yellow canned cream style regular pack','CORN SWT YEL CND CRM STYLE REG PK',,,'Y',,0,,6.25,2.44,8.37,3.57 -11176,1100,'Corn sweet yellow canned vacuum pack regular pack','CORN SWT YEL CND VACUUM PK REG PK',,,'Y',,0,,6.25,2.44,8.37,3.57 -11177,1100,'Corn sweet yellow canned drained solids rinsed with tap water','CORN SWT YEL CND DRND SOL RINSED W/ TAP H2O',,,,,0,,6.25,2.44,8.37,3.57 -11178,1100,'Corn sweet yellow frozen kernels cut off cob unprepared (Includes foods for USDAs Food Distribution Program)','CORN SWT YEL FRZ KRNLS CUT OFF COB UNPREP',,,'Y',,0,,6.25,2.44,8.37,3.57 -11179,1100,'Corn sweet yellow frozen kernels cut off cob boiled drained without salt','CORN SWT YEL FRZ KRNLS CUT OFF COB BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11180,1100,'Corn sweet yellow frozen kernels on cob unprepared','CORN SWT YEL FRZ KRNLS ON COB UNPREP',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11181,1100,'Corn sweet yellow frozen kernels on cob cooked boiled drained without salt','CORN SWT YEL FRZ KRNLS ON COB CKD BLD DRND WO/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11182,1100,'Corn yellow whole kernel frozen microwaved','CORN YEL WHL KERNEL FRZ MICROWAVED',,,,,0,,6.25,2.44,8.37,3.57 -11184,1100,'Corn with red and green peppers canned solids and liquids','CORN W/RED&GRN PEPPERS CND SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11190,1100,'Cornsalad raw','CORNSALAD RAW',,,,,,'Valerianella locusta',6.25,2.44,8.37,3.57 -11191,1100,'Cowpeas (blackeyes) immature seeds raw','COWPEAS (BLACKEYES) IMMAT SEEDS RAW',,,,'Pods',49,'Vigna unguiculata subsp. unguiculata',6.25,3.47,8.37,4.07 -11192,1100,'Cowpeas (blackeyes) immature seeds cooked boiled drained without salt','COWPEAS (BLACKEYES) IMMAT SEEDS CKD BLD DRND WO/ SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11195,1100,'Cowpeas (blackeyes) immature seeds frozen unprepared','COWPEAS (BLACKEYES) IMMAT SEEDS FRZ UNPREP',,,,,0,,6.25,3.47,8.37,4.07 -11196,1100,'Cowpeas (blackeyes) immature seeds frozen cooked boiled drained without salt','COWPEAS (BLACKEYES) IMMTRE SEEDS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11197,1100,'Cowpeas young pods with seeds raw','COWPEAS YOUNG PODS W/SEEDS RAW',,,,'Ends and strings',9,'Vigna unguiculata subsp. unguiculata',6.25,2.44,8.37,3.57 -11198,1100,'Cowpeas young pods with seeds cooked boiled drained without salt','COWPEAS YOUNG PODS W/SEEDS CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11199,1100,'Yardlong bean raw','YARDLONG BEAN RAW',,,,'Ends',5,'Vigna unguiculata subsp. sesquipedalis',6.25,3.47,8.37,4.07 -11200,1100,'Yardlong bean cooked boiled drained without salt','YARDLONG BEAN CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11201,1100,'Cowpeas leafy tips raw','COWPEAS LEAFY TIPS RAW',,,,'Tough stems and leaves',48,'Vigna unguiculata subsp. unguiculata',6.25,2.44,8.37,3.57 -11202,1100,'Cowpeas leafy tips cooked boiled drained without salt','COWPEAS LEAFY TIPS CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11203,1100,'Cress garden raw','CRESS GARDEN RAW',,,'Y','Stems crowns and spoiled leaves',29,'Lepidium sativum',6.25,2.44,8.37,3.57 -11204,1100,'Cress garden cooked boiled drained without salt','CRESS GARDEN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11205,1100,'Cucumber with peel raw','CUCUMBER WITH PEEL RAW',,,'Y','Ends',3,'Cucumis sativus',6.25,2.44,8.37,3.57 -11206,1100,'Cucumber peeled raw','CUCUMBER PEELED RAW',,,'Y','Parings ends and bruised spots',27,,6.25,2.44,8.37,3.57 -11207,1100,'Dandelion greens raw','DANDELION GREENS RAW',,,'Y',,0,'Taraxacum officinale',6.25,2.44,8.37,3.57 -11208,1100,'Dandelion greens cooked boiled drained without salt','DANDELION GRNS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11209,1100,'Eggplant raw','EGGPLANT RAW',,,'Y','Ends parings and trimmings',19,'Solanum melongena',6.25,2.44,8.37,3.57 -11210,1100,'Eggplant cooked boiled drained without salt','EGGPLANT CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11211,1100,'Edamame frozen unprepared','EDAMAME FRZ UNPREP',,,,,0,,6.25,3.47,8.37,4.07 -11212,1100,'Edamame frozen prepared','EDAMAME FRZ PREP',,,'Y',,0,,6.25,3.47,8.37,4.07 -11213,1100,'Endive raw','ENDIVE RAW',,,'Y','Outer leaves and core',14,'Cichorium endivia',6.25,2.44,8.37,3.57 -11214,1100,'Escarole cooked boiled drained no salt added','ESCAROLE CKD BLD DRND NO SALT ADDED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11215,1100,'Garlic raw','GARLIC RAW',,,'Y','Knob and skin',13,'Allium sativum',6.25,2.78,8.37,3.84 -11216,1100,'Ginger root raw','GINGER ROOT RAW',,,'Y','Scrapings',7,'Zingiber officinale',6.25,2.78,8.37,3.84 -11218,1100,'Gourd white-flowered (calabash) raw','GOURD WHITE-FLOWERED (CALABASH) RAW',,,,'Ends skin and seeds',30,'Lagenaria siceraria',6.25,2.44,8.37,3.57 -11219,1100,'Gourd white-flowered (calabash) cooked boiled drained without salt','GOURD WHITE-FLOWERED (CALABASH) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11220,1100,'Gourd dishcloth (towelgourd) raw','GOURD DISHCLOTH (TOWELGOURD) RAW',,,,'Ribs skin stem and blossom end',27,'Luffa aegyptiaca',6.25,2.44,8.37,3.57 -11221,1100,'Gourd dishcloth (towelgourd) cooked boiled drained without salt','GOURD DISHCLOTH (TOWELGOURD) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11222,1100,'Drumstick leaves raw','DRUMSTICK LEAVES RAW','Harseradish tree leaves',,,'Stems',38,'Moringa oleifera',6.25,2.44,8.37,3.57 -11223,1100,'Drumstick leaves cooked boiled drained without salt','DRUMSTICK LEAVES CKD BLD DRND WO/ SALT','Horseradish-tree',,'Y',,0,,6.25,2.44,8.37,3.57 -11224,1100,'Hyacinth-beans immature seeds raw','HYACINTH-BEANS IMMAT SEEDS RAW',,,,'Ends and strings',7,'Dolichos lablab',6.25,3.47,8.37,4.07 -11225,1100,'Hyacinth-beans immature seeds cooked boiled drained without salt','HYACINTH-BEANS IMMAT SEEDS CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11226,1100,'Jerusalem-artichokes raw','JERUSALEM-ARTICHOKES RAW','Sunchokes',,'Y','Parings',31,'Helianthus tuberosus',6.25,2.78,8.37,3.84 -11228,1100,'Jews ear (pepeao) raw','JEWS EAR (PEPEAO) RAW',,,,'Stem end',2,'Auricularia polytricha',6.25,2.62,8.37,3.48 -11230,1100,'Pepeao dried','PEPEAO DRIED',,,,'Stems and defects',13,,6.25,2.62,8.37,3.48 -11231,1100,'Jute potherb raw','JUTE POTHERB RAW',,,,'Tough leaves and stems',38,'Corchorus olitorius',6.25,2.44,8.37,3.57 -11232,1100,'Jute potherb cooked boiled drained without salt','JUTE POTHERB CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11233,1100,'Kale raw','KALE RAW',,,,'Stem ends tough stems and tough midrib parts',28,'Brassica oleracea (Acephala Group)',6.25,2.44,8.37,3.57 -11234,1100,'Kale cooked boiled drained without salt','KALE CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11235,1100,'Kale frozen unprepared','KALE FROZEN UNPREPARED',,,,,0,,6.25,2.44,8.37,3.57 -11236,1100,'Kale frozen cooked boiled drained without salt','KALE FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11237,1100,'Kanpyo (dried gourd strips)','KANPYO (DRIED GOURD STRIPS)',,,,,0,,6.25,2.44,8.37,3.57 -11238,1100,'Mushrooms shiitake raw','MUSHROOMS SHIITAKE RAW',,,,,0,'Lentinus edodes',6.25,2.62,8.37,3.48 -11239,1100,'Mushrooms Chanterelle raw','MUSHROOMS CHANTERELLE RAW',,,,,0,'Cantharellus californicus or Cantharellus cibarius',6.25,2.62,8.37,3.48 -11240,1100,'Mushrooms morel raw','MUSHROOMS MOREL RAW',,,,,0,'Morchella spp.',6.25,2.62,8.37,3.48 -11241,1100,'Kohlrabi raw','KOHLRABI RAW',,,'Y','Leaves stems and parings',54,'Brassica oleracea (Gongylodes Group)',6.25,2.44,8.37,3.57 -11242,1100,'Kohlrabi cooked boiled drained without salt','KOHLRABI CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11243,1100,'Mushrooms portabella grilled','MUSHROOMS PORTABELLA GRILLED','Portobello',,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11244,1100,'Lambsquarters raw','LAMBSQUARTERS RAW',,,,,,'Chenopodium album',6.25,2.44,8.37,3.57 -11245,1100,'Lambsquarters cooked boiled drained without salt','LAMBSQUARTERS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11246,1100,'Leeks (bulb and lower leaf-portion) raw','LEEKS (BULB&LOWER LEAF-PORTION) RAW',,,'Y','Tops root end and skin',56,'Allium ampeloprasum',6.25,2.78,8.37,3.84 -11247,1100,'Leeks (bulb and lower leaf-portion) cooked boiled drained without salt','LEEKS (BULB&LOWER LEAF-PORTION) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11248,1100,'Lentils sprouted raw','LENTILS SPROUTED RAW',,,,,0,'Lens culinaris',6.25,2.44,8.37,3.57 -11249,1100,'Lentils sprouted cooked stir-fried without salt','LENTILS SPROUTED CKD STIR-FRIED WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11250,1100,'Lettuce butterhead (includes boston and bibb types) raw','LETTUCE BUTTERHEAD (INCL BOSTON&BIBB TYPES) RAW',,,'Y','Outer leaves and core',26,'Lactuca sativa var. capitata',6.25,2.44,8.37,3.57 -11251,1100,'Lettuce cos or romaine raw','LETTUCE COS OR ROMAINE RAW',,,'Y','Core',6,'Lactuca sativa var. logifolia',6.25,2.44,8.37,3.57 -11252,1100,'Lettuce iceberg (includes crisphead types) raw','LETTUCE ICEBERG (INCL CRISPHEAD TYPES) RAW',,,'Y','Core',5,'Lactuca sativa var. capitata',6.25,2.44,8.37,3.57 -11253,1100,'Lettuce green leaf raw','LETTUCE GRN LEAF RAW',,,'Y','Outer leaves core and trimmings',36,'Lactuca sativa var. crispa',6.25,2.44,8.37,3.57 -11254,1100,'Lotus root raw','LOTUS ROOT RAW',,,,'Skins and ends of lobes',21,'Nelumbo nucifera',6.25,2.78,8.37,3.84 -11255,1100,'Lotus root cooked boiled drained without salt','LOTUS ROOT CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11257,1100,'Lettuce red leaf raw','LETTUCE RED LEAF RAW',,,,'Core and damaged outer leaves',20,'Lactuca sativa var. crispa',6.25,2.44,8.37,3.57 -11258,1100,'Mountain yam hawaii raw','MOUNTAIN YAM HAWAII RAW',,,,'Ends and skin',17,'Dioscorea pentaphylla',6.25,2.78,8.37,3.84 -11259,1100,'Mountain yam hawaii cooked steamed without salt','MOUNTAIN YAM HAWAII CKD STMD WO/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11260,1100,'Mushrooms white raw','MUSHROOMS WHITE RAW',,,'Y','Trimmings',3,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11261,1100,'Mushrooms white cooked boiled drained without salt','MUSHROOMS WHITE CKD BLD DRND WO/ SALT',,,'Y',,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11263,1100,'Mushrooms white stir-fried','MUSHROOMS WHITE STIR-FRIED',,,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11264,1100,'Mushrooms canned drained solids','MUSHROOMS CND DRND SOL',,,'Y',,0,,6.25,2.62,8.37,3.48 -11265,1100,'Mushrooms portabella raw','MUSHROOMS PORTABELLA RAW','Portabello',,,'Trimmings',3,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11266,1100,'Mushrooms brown italian or crimini raw','MUSHROOMS BROWN ITALIAN OR CRIMINI RAW',,,,'Trimmings',3,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11267,1100,'Mushrooms shiitake stir-fried','MUSHROOMS SHIITAKE STIR-FRIED',,,,,0,'Lentinus edodes',6.25,2.62,8.37,3.48 -11268,1100,'Mushrooms shiitake dried','MUSHROOMS SHIITAKE DRIED',,,'Y',,0,'Lentinus edodes',6.25,2.62,8.37,3.48 -11269,1100,'Mushrooms shiitake cooked without salt','MUSHROOMS SHIITAKE CKD WO/SALT',,,'Y',,0,,6.25,2.62,8.37,3.48 -11270,1100,'Mustard greens raw','MUSTARD GREENS RAW',,,'Y','Bases',7,'Brassica juncea',6.25,2.44,8.37,3.57 -11271,1100,'Mustard greens cooked boiled drained without salt','MUSTARD GRNS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11272,1100,'Mustard greens frozen unprepared','MUSTARD GRNS FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11273,1100,'Mustard greens frozen cooked boiled drained without salt','MUSTARD GRNS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11274,1100,'Mustard spinach (tendergreen) raw','MUSTARD SPINACH (TENDERGREEN) RAW',,,,'Trimmings',7,'Brassica rapa (Perviridis Group)',6.25,2.44,8.37,3.57 -11275,1100,'Mustard spinach (tendergreen) cooked boiled drained without salt','MUSTARD SPINACH (TENDERGREEN) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11276,1100,'New Zealand spinach raw','NEW ZEALAND SPINACH RAW',,,,'Large stems and roots',28,'Tetragonia tetragonioides',6.25,2.44,8.37,3.57 -11277,1100,'New Zealand spinach cooked boiled drained without salt','NEW ZEALAND SPINACH CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11278,1100,'Okra raw','OKRA RAW',,,'Y','Crown and tips',14,'Abelmoschus esculentus',6.25,2.44,8.37,3.57 -11279,1100,'Okra cooked boiled drained without salt','OKRA CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11280,1100,'Okra frozen unprepared','OKRA FROZEN UNPREPARED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11281,1100,'Okra frozen cooked boiled drained without salt','OKRA FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11282,1100,'Onions raw','ONIONS RAW',,,'Y','Stem ends sprouts and defects',10,'Allium cepa',6.25,2.78,8.37,3.84 -11283,1100,'Onions cooked boiled drained without salt','ONIONS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11284,1100,'Onions dehydrated flakes','ONIONS DEHYDRATED FLAKES',,,'Y',,0,,6.25,2.78,8.37,3.84 -11285,1100,'Onions canned solids and liquids','ONIONS CND SOL&LIQUIDS',,,,,0,,6.25,2.78,8.37,3.84 -11286,1100,'Onions yellow sauteed','ONIONS YEL SAUTEED',,,,,0,,6.25,2.78,8.37,3.84 -11287,1100,'Onions frozen chopped unprepared','ONIONS FRZ CHOPD UNPREP',,,,,0,,6.25,2.78,8.37,3.84 -11288,1100,'Onions frozen chopped cooked boiled drained without salt','ONIONS FRZ CHOPD CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11289,1100,'Onions frozen whole unprepared','ONIONS FRZ WHL UNPREP',,,'Y',,0,,6.25,2.78,8.37,3.84 -11290,1100,'Onions frozen whole cooked boiled drained without salt','ONIONS FRZ WHL CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11291,1100,'Onions spring or scallions (includes tops and bulb) raw','ONIONS SPRING OR SCALLIONS (INCL TOPS&BULB) RAW',,,'Y','Rootlets',4,'Allium cepa or Allium fistulosum',6.25,2.44,8.37,3.57 -11292,1100,'Onions young green tops only','ONIONS YOUNG GRN TOPS ONLY',,,'Y',,0,'Allium cepa',6.25,2.44,8.37,3.57 -11293,1100,'Onions welsh raw','ONIONS WELSH RAW',,,,'Leaf tops and roots',35,'Allium fistulosum',6.25,2.78,8.37,3.84 -11294,1100,'Onions sweet raw','ONIONS SWT RAW',,,,'Stem root and two outermost layers',16,'Allium cepa',6.25,2.78,8.37,3.84 -11295,1100,'Onion rings breaded par fried frozen unprepared','ONION RINGS BREADED PAR FR FRZ UNPREP',,,,,0,,6.07,3.70,8.80,4.00 -11296,1100,'Onion rings breaded par fried frozen prepared heated in oven','ONION RINGS BREADED PAR FR FRZ PREP HTD IN OVEN',,,'Y',,0,,6.07,3.70,8.80,4.00 -11297,1100,'Parsley fresh','PARSLEY FRSH',,,'Y','Tough stems',5,'Petroselinum crispum',6.25,2.44,8.37,3.57 -11298,1100,'Parsnips raw','PARSNIPS RAW',,,,'Parings',15,'Pastinaca sativa',6.25,2.78,8.37,3.84 -11299,1100,'Parsnips cooked boiled drained without salt','PARSNIPS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11300,1100,'Peas edible-podded raw','PEAS EDIBLE-PODDED RAW','Snowpeas Sugar snap peas',,'Y','Ends and strings',6,'Pisum sativum',6.25,3.47,8.37,4.07 -11301,1100,'Peas edible-podded boiled drained without salt','PEAS EDIBLE-PODDED BLD DRND WO/ SALT','Sugar snap peas Snowpeas',,'Y',,0,,6.25,3.47,8.37,4.07 -11302,1100,'Peas edible-podded frozen unprepared','PEAS EDIBLE-PODDED FRZ UNPREP','Sugar snap peas Snowpeas',,,,0,,6.25,3.47,8.37,4.07 -11303,1100,'Peas edible-podded frozen cooked boiled drained without salt','PEAS EDIBLE-PODDED FRZ CKD BLD DRND WO/SALT','Sugar snap peas Snowpeas',,'Y',,0,,6.25,3.47,8.37,4.07 -11304,1100,'Peas green raw','PEAS GREEN RAW',,,'Y','Pods and inedible peas',62,'Pisum sativum',6.25,3.47,8.37,4.07 -11305,1100,'Peas green cooked boiled drained without salt','PEAS GRN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11306,1100,'Peas green canned regular pack solids and liquids','PEAS GRN CND REG PK SOL&LIQUIDS',,,,,0,,6.25,3.47,8.37,4.07 -11308,1100,'Peas green (includes baby and lesuer types) canned drained solids unprepared','PEAS GRN (INCLUDES BABY & LESUER TYPES) CND DRND SOL UNPREP',,,'Y',,0,,6.25,3.47,8.37,4.07 -11310,1100,'Peas green canned seasoned solids and liquids','PEAS GRN CND SEASONED SOL&LIQUIDS',,,,,0,,6.25,3.47,8.37,4.07 -11311,1100,'Peas green canned drained solids rinsed in tap water','PEAS GRN CND DRND SOL RINSED IN TAP H2O',,,,,0,,6.25,3.47,8.37,4.07 -11312,1100,'Peas green frozen unprepared (Includes foods for USDAs Food Distribution Program)','PEAS GRN FRZ UNPREP',,,'Y',,0,,6.25,3.47,8.37,4.07 -11313,1100,'Peas green frozen cooked boiled drained without salt','PEAS GRN FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11316,1100,'Peas mature seeds sprouted raw','PEAS MATURE SEEDS SPROUTED RAW',,,,,0,,6.25,2.44,8.37,3.57 -11317,1100,'Peas mature seeds sprouted cooked boiled drained without salt','PEAS MATURE SEEDS SPROUTED CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11318,1100,'Peas and carrots canned regular pack solids and liquids','PEAS&CARROTS CND REG PK SOL&LIQUIDS',,,,,0,,6.25,3.98,8.37,3.16 -11322,1100,'Peas and carrots frozen unprepared','PEAS&CARROTS FRZ UNPREP',,,,,0,,6.25,3.98,8.37,3.16 -11323,1100,'Peas and carrots frozen cooked boiled drained without salt','PEAS&CARROTS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.98,8.37,3.16 -11324,1100,'Peas and onions canned solids and liquids','PEAS&ONIONS CND SOL&LIQUIDS',,,,,0,,6.25,3.40,8.37,4.00 -11326,1100,'Peas and onions frozen unprepared','PEAS&ONIONS FRZ UNPREP',,,,,0,,6.25,3.40,8.37,4.00 -11327,1100,'Peas and onions frozen cooked boiled drained without salt','PEAS&ONIONS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.40,8.37,4.00 -11329,1100,'Peppers hot chili green canned pods excluding seeds solids and liquids','PEPPERS HOT CHILI GRN CND PODS EXCLUDING SEEDS SOL&LIQUIDS',,,'Y',,0,,6.25,2.44,8.37,3.57 -11333,1100,'Peppers sweet green raw','PEPPERS SWT GRN RAW',,,'Y','Stem ends seeds and core',18,'Capsicum annuum',6.25,2.44,8.37,3.57 -11334,1100,'Peppers sweet green cooked boiled drained without salt','PEPPERS SWT GRN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11335,1100,'Peppers sweet green canned solids and liquids','PEPPERS SWT GRN CND SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11337,1100,'Peppers sweet green frozen chopped unprepared','PEPPERS SWT GRN FRZ CHOPD UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11338,1100,'Peppers sweet green frozen chopped boiled drained without salt','PEPPERS SWT GRN FRZ CHOPD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11339,1100,'Peppers sweet green sauteed','PEPPERS SWT GRN SAUTEED',,,,,0,,6.25,2.44,8.37,3.57 -11344,1100,'Pigeonpeas immature seeds raw','PIGEONPEAS IMMAT SEEDS RAW',,,'Y','Pods',52,'Cajanus cajan',6.25,3.47,8.37,4.07 -11345,1100,'Pigeonpeas immature seeds cooked boiled drained without salt','PIGEONPEAS IMMAT SEEDS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -11349,1100,'Poi','POI',,,'Y',,0,,6.25,2.78,8.37,4.03 -11350,1100,'Pokeberry shoots (poke) raw','POKEBERRY SHOOTS (POKE) RAW',,,,,,'Phytolacca americana',6.25,2.44,8.37,3.57 -11351,1100,'Pokeberry shoots (poke) cooked boiled drained without salt','POKEBERRY SHOOTS (POKE) CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11352,1100,'Potatoes flesh and skin raw','POTATOES FLESH & SKN RAW',,,'Y','Parings and trimmings',25,'Solanum tuberosum',6.25,2.78,8.37,4.03 -11353,1100,'Potatoes russet flesh and skin raw (Includes foods for USDAs Food Distribution Program)','POTATOES RUSSET FLESH & SKN RAW',,,,'Parings and trimmings',25,'Solanum tuberosum',6.25,2.78,8.37,4.03 -11354,1100,'Potatoes white flesh and skin raw','POTATOES WHITE FLESH & SKN RAW',,,,'Parings and trimmings',25,'Solanum tuberosum',6.25,2.78,8.37,4.03 -11355,1100,'Potatoes red flesh and skin raw','POTATOES RED FLESH & SKN RAW',,,,'Parings and trimmings',25,'Solanum tuberosum',6.25,2.78,8.37,4.03 -11356,1100,'Potatoes Russet flesh and skin baked','POTATOES RUSSET FLESH & SKN BKD',,,,,0,,6.25,2.78,8.37,4.03 -11357,1100,'Potatoes white flesh and skin baked','POTATOES WHITE FLESH & SKN BKD',,,,,0,,6.25,2.78,8.37,4.03 -11358,1100,'Potatoes red flesh and skin baked','POTATOES RED FLESH & SKN BKD',,,,,0,,6.25,2.78,8.37,4.03 -11359,1100,'Potatoes french fried crinkle or regular cut salt added in processing frozen as purchased','POTATOES FR FR CRNKL OR REG SALT ADDED IN PROC FRZ AS PURCH',,,,,0,,6.25,2.80,8.80,4.00 -11360,1100,'Potatoes french fried crinkle or regular cut salt added in processing frozen oven-heated','POTATOES FR FR CRNKL/REG CUT SALT ADDED IN PROC FRZ OVEN-HTD',,,,,0,,6.25,2.78,8.37,4.03 -11361,1100,'Potatoes roasted salt added in processing frozen unprepared','POTATOES RSTD SALT ADDED IN PROCESSING FRZ UNPREP',,,,,0,,6.25,2.78,8.37,4.03 -11362,1100,'Potatoes raw skin','POTATOES RAW SKIN',,,,,0,'Solanum tuberosum',6.25,2.78,8.37,4.03 -11363,1100,'Potatoes baked flesh without salt','POTATOES BKD FLESH WO/SALT',,,'Y','Skin and adhering flesh',23,,6.25,2.78,8.37,4.03 -11364,1100,'Potatoes baked skin without salt','POTATOES BKD SKN WO/SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11365,1100,'Potatoes boiled cooked in skin flesh without salt','POTATOES BLD CKD IN SKN FLESH WO/SALT',,,'Y','Skins and eyes',9,,6.25,2.78,8.37,4.03 -11366,1100,'Potatoes boiled cooked in skin skin without salt','POTATOES BLD CKD IN SKN SKN WO/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11367,1100,'Potatoes boiled cooked without skin flesh without salt','POTATOES BLD CKD WO/ SKN FLESH WO/ SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11368,1100,'Potatoes microwaved cooked in skin flesh without salt','POTATOES MICROWAVED CKD IN SKN FLESH WO/SALT',,,,'Skin and adhering flesh',23,,6.25,2.78,8.37,4.03 -11369,1100,'Potatoes microwaved cooked in skin skin without salt','POTATOES MICROWAVED CKD IN SKN SKN WO/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11370,1100,'Potatoes hash brown home-prepared','POTATOES HASH BROWN HOME-PREPARED','Potatoes hashed brown',,'Y',,0,,,,, -11371,1100,'Potatoes mashed home-prepared whole milk and margarine added','POTATOES MSHD HOME-PREPARED WHL MILK & MARGARINE ADDED',,,'Y',,0,,,,, -11372,1100,'Potatoes scalloped home-prepared with butter','POTATOES SCALLPD HOME-PREPARED W/BUTTER',,,,,0,,,,, -11373,1100,'Potatoes au gratin home-prepared from recipe using butter','POTATOES AU GRATIN HOME-PREPARED FROM RECIPE USING BUTTER',,,,,0,,,,, -11374,1100,'Potatoes canned solids and liquids','POTATOES CND SOL&LIQUIDS',,,,,0,,6.25,2.78,8.37,4.03 -11376,1100,'Potatoes canned drained solids','POTATOES CND DRND SOL',,,,,0,,6.25,2.78,8.37,4.03 -11378,1100,'Potatoes mashed dehydrated flakes without milk dry form','POTATOES MSHD DEHYD FLAKES WO/MILK DRY FORM',,,'Y',,0,,6.25,2.78,8.37,4.03 -11379,1100,'Potatoes mashed dehydrated prepared from flakes without milk whole milk and butter added','POTATOES MSHD DEHYD PREP FROM FLAKES WO/ MILK WHL MILK & BUT',,,'Y',,0,,,,, -11380,1100,'Potatoes mashed dehydrated granules without milk dry form','POTATOES MSHD DEHYD GRANULES WO/MILK DRY FORM',,,,,0,,6.25,2.78,8.37,4.03 -11381,1100,'Potatoes mashed dehydrated prepared from granules without milk whole milk and butter added','POTATOES MSHD DEHYD PREP FR GRNLS WO/MILK WHL MILK&BUTTER',,,,,0,,6.29,3.21,8.82,4.02 -11382,1100,'Potatoes mashed dehydrated granules with milk dry form','POTATOES MSHD DEHYD GRANULES W/MILK DRY FORM',,,'Y',,0,,6.29,3.21,8.82,4.02 -11383,1100,'Potatoes mashed dehydrated prepared from granules with milk water and margarine added','POTATOES MSHD DEHYD PREP FROM GRAN W/ MILK H2O & MARG ADDED',,,,,0,,,,, -11384,1100,'Potatoes au gratin dry mix unprepared','POTATOES AU GRATIN DRY MIX UNPREP',,,,,0,,0.00,,, -11385,1100,'Potatoes au gratin dry mix prepared with water whole milk and butter','POTATOES AU GRATIN DRY MIX PREP W/H2O WHL MILK&BUTTER',,,,,0,,0.00,,, -11386,1100,'Potatoes scalloped dry mix unprepared','POTATOES SCALLPD DRY MIX UNPREP',,,,,0,,6.25,2.78,8.37,4.03 -11387,1100,'Potatoes scalloped dry mix prepared with water whole milk and butter','POTATOES SCALLPD DRY MIX PREP W/H2O WHL MILK&BUTTER',,,,,0,,6.25,2.78,8.37,4.03 -11390,1100,'Potatoes hash brown frozen plain unprepared','POTATOES HASH BROWN FRZ PLN UNPREP','Potatoes hashed brown',,,,0,,6.25,2.78,8.37,4.03 -11391,1100,'Potatoes hash brown frozen plain prepared pan fried in canola oil','POTATOES HASH BROWN FRZ PLN PREP PAN FRIED IN CANOLA OIL','Potatoes hashed brown',,'Y',,0,,6.25,2.78,8.37,4.03 -11392,1100,'Potatoes hash brown frozen with butter sauce unprepared','POTATOES HASH BROWN FRZ W/ BUTTER SAU UNPREP','Potatoes hashed brown',,,,0,,6.25,2.78,8.37,4.03 -11393,1100,'Potatoes hash brown frozen with butter sauce prepared','POTATOES HASH BROWN FRZ W/ BUTTER SAU PREP','Potatoes hashed brown',,,,0,,6.25,2.78,8.37,4.03 -11394,1100,'Potatoes french fried shoestring salt added in processing frozen as purchased','POTATOES FRENCH FR SHOESTRING SALT ADDED IN PROC FRZ AS PRCH',,,,,0,,6.25,2.80,8.80,4.00 -11395,1100,'Potatoes french fried shoestring salt added in processing frozen oven-heated','POTATOES FRENCH FR SHOESTRNG SALT ADDED IN PROC FRZ OVEN-HTD',,,,,0,,6.25,2.80,8.80,4.00 -11396,1100,'Potatoes obrien frozen unprepared','POTATOES OBRIEN FRZ UNPREP',,,,,0,,6.25,2.70,8.40,4.00 -11397,1100,'Potatoes obrien frozen prepared','POTATOES OBRIEN FRZ PREP',,,,,0,,6.25,2.70,8.40,4.00 -11398,1100,'Potato puffs frozen unprepared','POTATO PUFFS FRZ UNPREP',,,,,0,,6.25,2.78,8.37,4.03 -11399,1100,'Potato puffs frozen oven-heated','POTATO PUFFS FRZ OVEN-HEATED',,,'Y',,0,,6.25,2.78,8.37,4.03 -11401,1100,'Potatoes frozen whole cooked boiled drained without salt','POTATOES FRZ WHL CKD BLD DRND WO/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11402,1100,'Potatoes french fried all types salt added in processing frozen unprepared','POTATOES FRENCH FR ALL TYPES SALT ADDED IN PROC FRZ UNPREP',,,,,0,,6.25,2.80,8.80,4.00 -11403,1100,'Potatoes french fried all types salt added in processing frozen home-prepared oven heated','POTATOES FRENCH FR ALL TYPES SALT ADDED IN PROC FRZ OVEN HTD',,,'Y',,0,,6.25,2.80,8.80,4.00 -11406,1100,'Potatoes french fried cottage-cut salt not added in processing frozen as purchased','POTATOES FRNCH FR CTTG-CUT SALT NOT ADDED FRZ AS PRCH',,,,,0,,6.25,2.80,8.80,4.00 -11407,1100,'Potatoes french fried cottage-cut salt not added in processing frozen oven-heated','POTATOES FRENCH FR COTTAGE-CUT SALT NOT ADDED FRZ OVEN-HTD',,,,,0,,6.25,2.80,8.80,4.00 -11408,1100,'Potatoes frozen french fried par fried extruded unprepared','POTATOES FRZ FRENCH FR PAR FR EXTRUDED UNPREP',,,,,0,,6.25,2.80,8.80,4.00 -11409,1100,'Potatoes frozen french fried par fried extruded prepared heated in oven without salt','POTATOES FRZ FRCH FR PAR FR EXTRUDED PREP HTD OVEN WO/SALT',,,,,0,,6.25,2.80,8.80,4.00 -11410,1100,'Potato wedges frozen (Includes foods for USDAs Food Distribution Program)','POTATO WEDGES FRZ (INCL FOODS FOR USDAS FD DISTR PGM)',,,,,0,,6.25,2.80,8.80,4.00 -11411,1100,'Potatoes french fried steak fries salt added in processing frozen as purchased','POTATOES FRENCH FR STK FRIES SALT ADDED IN PROC FRZ AS PRCH',,,,,0,,6.25,2.80,8.80,4.00 -11412,1100,'Potatoes french fried steak fries salt added in processing frozen oven-heated','POTATOES FRENCH FR STK FRIES SALT ADDED IN PROC FRZ OVEN-HTD',,,,,0,,6.25,2.80,8.80,4.00 -11413,1100,'Potato flour','POTATO FLOUR',,,'Y',,0,,6.25,2.78,8.37,4.03 -11414,1100,'Potato salad home-prepared','POTATO SALAD HOME-PREPARED',,,,,0,,,,, -11416,1100,'Pumpkin flowers raw','PUMPKIN FLOWERS RAW',,,,'Pistil and calyx',65,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11417,1100,'Pumpkin flowers cooked boiled drained without salt','PUMPKIN FLOWERS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11418,1100,'Pumpkin leaves raw','PUMPKIN LEAVES RAW',,,,'Stem and tough leaves',59,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11419,1100,'Pumpkin leaves cooked boiled drained without salt','PUMPKIN LEAVES CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11422,1100,'Pumpkin raw','PUMPKIN RAW',,,'Y','Seeds rind and stem',30,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11423,1100,'Pumpkin cooked boiled drained without salt','PUMPKIN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11424,1100,'Pumpkin canned without salt','PUMPKIN CND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11426,1100,'Pumpkin pie mix canned','PUMPKIN PIE MIX CANNED',,,,,0,,6.25,2.90,8.40,3.80 -11427,1100,'Purslane raw','PURSLANE RAW',,,,'Tough stems and leaves',24,'Portulaca oleracea',6.25,2.44,8.37,3.57 -11428,1100,'Purslane cooked boiled drained without salt','PURSLANE CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11429,1100,'Radishes raw','RADISHES RAW',,,'Y','Stem ends rootlets and trimmings',10,'Raphanus sativus',6.25,2.78,8.37,3.84 -11430,1100,'Radishes oriental raw','RADISHES ORIENTAL RAW',,,'Y','Tops and parings',21,'Raphanus sativus (Longipinratus Group)',6.25,2.78,8.37,3.84 -11431,1100,'Radishes oriental cooked boiled drained without salt','RADISHES ORIENTAL CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11432,1100,'Radishes oriental dried','RADISHES ORIENTAL DRIED',,,,,0,,6.25,2.78,8.37,3.84 -11435,1100,'Rutabagas raw','RUTABAGAS RAW',,,'Y','Parings',15,'Brassica napus var. napobrassica',6.25,2.78,8.37,3.84 -11436,1100,'Rutabagas cooked boiled drained without salt','RUTABAGAS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11437,1100,'Salsify (vegetable oyster) raw','SALSIFY (VEG OYSTER) RAW',,,,'Scrapings and rootlets',13,'Tragopogon porrifolius',6.25,2.78,8.37,3.84 -11438,1100,'Salsify cooked boiled drained without salt','SALSIFY CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11439,1100,'Sauerkraut canned solids and liquids','SAUERKRAUT CND SOL&LIQUIDS',,,'Y',,0,,6.25,2.44,8.37,3.57 -11442,1100,'Seaweed agar raw','SEAWEED AGAR RAW',,,'Y',,0,'Eucheuma spp.',6.25,2.44,8.37,3.57 -11444,1100,'Seaweed irishmoss raw','SEAWEED IRISHMOSS RAW',,,'Y',,0,'Chondrus crispus',6.25,2.44,8.37,3.57 -11445,1100,'Seaweed kelp raw','SEAWEED KELP RAW',,,'Y',,0,'Laminaria spp.',6.25,2.44,8.37,3.57 -11446,1100,'Seaweed laver raw','SEAWEED LAVER RAW',,,'Y',,0,'Porphyra laciniata',6.25,2.44,8.37,3.57 -11447,1100,'Sesbania flower raw','SESBANIA FLOWER RAW',,,,'Stems pistil and calyx',15,'Sesbania spp.',6.25,2.44,8.37,3.57 -11448,1100,'Sesbania flower cooked steamed without salt','SESBANIA FLOWER CKD STMD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11450,1100,'Soybeans green raw','SOYBEANS GREEN RAW',,,,'Pods',47,'Glycine max',6.25,3.47,8.37,4.07 -11451,1100,'Soybeans green cooked boiled drained without salt','SOYBEANS GRN CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11452,1100,'Soybeans mature seeds sprouted raw','SOYBEANS MATURE SEEDS SPROUTED RAW',,,,,0,'Glycine max',6.25,2.44,8.37,3.57 -11453,1100,'Soybeans mature seeds sprouted cooked steamed','SOYBEANS MATURE SEEDS SPROUTED CKD STMD',,,'Y',,0,,6.25,2.44,8.37,3.57 -11454,1100,'Soybeans mature seeds sprouted cooked stir-fried','SOYBEANS MATURE SEEDS SPROUTED CKD STIR-FRIED',,,,,0,,6.25,2.44,8.37,3.57 -11457,1100,'Spinach raw','SPINACH RAW',,,'Y','Large stems and roots',28,'Spinacia oleracea',6.25,2.44,8.37,3.57 -11458,1100,'Spinach cooked boiled drained without salt','SPINACH CKD BLD DRND WO/ SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11459,1100,'Spinach canned regular pack solids and liquids','SPINACH CND REG PK SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11461,1100,'Spinach canned regular pack drained solids','SPINACH CND REG PK DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11463,1100,'Spinach frozen chopped or leaf unprepared (Includes foods for USDAs Food Distribution Program)','SPINACH FRZ CHOPD OR LEAF UNPREP',,,'Y',,0,,,2.44,8.37,3.57 -11464,1100,'Spinach frozen chopped or leaf cooked boiled drained without salt','SPINACH FRZ CHOPD OR LEAF CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11467,1100,'Squash summer crookneck and straightneck raw','SQUASH SMMR CROOKNECK&STRAIGHTNECK RAW',,,,'Ends',1,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11468,1100,'Squash summer crookneck and straightneck cooked boiled drained without salt','SQUASH SMMR CROOKNECK & STRAIGHTNECK CKD BLD DRND WO/ SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11471,1100,'Squash summer crookneck and straightneck canned drained solid without salt','SQUASH SMMR CROOKNECK&STRAIGHTNECK CND DRND SOLID WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11473,1100,'Squash summer crookneck and straightneck frozen unprepared','SQUASH SMMR CROOKNECK&STRAIGHTNECK FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11474,1100,'Squash summer crookneck and straightneck frozen cooked boiled drained without salt','SQUASH SMMR CROOKNECK&STRAIGHTNECK FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11475,1100,'Squash summer scallop raw','SQUASH SUMMER SCALLOP RAW',,,,'Stem ends',2,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11476,1100,'Squash summer scallop cooked boiled drained without salt','SQUASH SMMR SCALLOP CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11477,1100,'Squash summer zucchini includes skin raw','SQUASH SMMR ZUCCHINI INCL SKN RAW',,,'Y','Ends',5,,6.25,2.44,8.37,3.57 -11478,1100,'Squash summer zucchini includes skin cooked boiled drained without salt','SQUASH SMMR ZUCCHINI INCL SKN CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11479,1100,'Squash summer zucchini includes skin frozen unprepared','SQUASH SMMR ZUCCHINI INCL SKN FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11480,1100,'Squash summer zucchini includes skin frozen cooked boiled drained without salt','SQUASH SMMR ZUCCHINI INCL SKN FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11481,1100,'Squash summer zucchini italian style canned','SQUASH SMMR ZUCCHINI ITALIAN STYLE CND',,,,,0,,6.25,2.50,8.40,3.70 -11482,1100,'Squash winter acorn raw','SQUASH WINTER ACORN RAW',,,,'Rind',24,'Cucurbita maxima',6.25,2.44,8.37,3.57 -11483,1100,'Squash winter acorn cooked baked without salt','SQUASH WNTR ACORN CKD BKD WO/SALT',,,,'Rind',20,,6.25,2.44,8.37,3.57 -11484,1100,'Squash winter acorn cooked boiled mashed without salt','SQUASH WNTR ACORN CKD BLD MSHD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11485,1100,'Squash winter butternut raw','SQUASH WNTR BUTTERNUT RAW',,,,'Seeds rind and trimmings',16,'Cucurbita moschata',6.25,2.44,8.37,3.57 -11486,1100,'Squash winter butternut cooked baked without salt','SQUASH WNTR BUTTERNUT CKD BKD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11487,1100,'Squash winter butternut frozen unprepared','SQUASH WNTR BUTTERNUT FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11488,1100,'Squash winter butternut frozen cooked boiled without salt','SQUASH WNTR BUTTERNUT FRZ CKD BLD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11489,1100,'Squash winter hubbard raw','SQUASH WINTER HUBBARD RAW',,,,'Seeds rind trimmings and cutting loss',36,'Cucurbita maxima',6.25,2.44,8.37,3.57 -11490,1100,'Squash winter hubbard baked without salt','SQUASH WNTR HUBBARD BKD WO/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11491,1100,'Squash winter hubbard cooked boiled mashed without salt','SQUASH WNTR HUBBARD CKD BLD MSHD WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11492,1100,'Squash winter spaghetti raw','SQUASH WNTR SPAGHETTI RAW',,,,'Rind and seeds',29,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11493,1100,'Squash winter spaghetti cooked boiled drained or baked without salt','SQUASH WNTR SPAGHETTI CKD BLD DRND OR BKD WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11495,1100,'Succotash (corn and limas) raw','SUCCOTASH (CORN&LIMAS) RAW',,,,,0,,6.25,2.72,8.37,3.71 -11496,1100,'Succotash (corn and limas) cooked boiled drained without salt','SUCCOTASH (CORN&LIMAS) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.72,8.37,3.71 -11497,1100,'Succotash (corn and limas) canned with cream style corn','SUCCOTASH (CORN&LIMAS) CND W/CRM STYLE CORN',,,,,0,,6.25,2.72,8.37,3.71 -11499,1100,'Succotash (corn and limas) canned with whole kernel corn solids and liquids','SUCCOTASH (CORN&LIMAS) CND W/WHL KERNEL CORN SOL&LIQUIDS',,,,,0,,6.25,2.72,8.37,3.71 -11501,1100,'Succotash (corn and limas) frozen unprepared','SUCCOTASH (CORN&LIMAS) FRZ UNPREP',,,,,0,,6.25,2.72,8.37,3.71 -11502,1100,'Succotash (corn and limas) frozen cooked boiled drained without salt','SUCCOTASH (CORN&LIMAS) FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.72,8.37,3.71 -11503,1100,'Water convolvulus raw','WATER CONVOLVULUS RAW','kangkong water spinach',,,'Tough stems',23,'Ipomoea aquatica',6.25,2.44,8.37,3.57 -11504,1100,'Water convolvulus cooked boiled drained without salt','SWAMP CABBAGE (SKUNK CABBAGE) CKD BLD DRND WO/ SALT','Kangkong Water spinach',,,,0,,6.25,2.44,8.37,3.57 -11505,1100,'Sweet potato leaves raw','SWEET POTATO LEAVES RAW','Sweetpotato leaves',,,'Tough stems and bruised leaves',6,'Ipomoea batatas',6.25,2.44,8.37,3.57 -11506,1100,'Sweet potato leaves cooked steamed without salt','SWEET POTATO LEAVES CKD STMD WO/ SALT','Sweetpotato leaves',,'Y',,0,,6.25,2.44,8.37,3.57 -11507,1100,'Sweet potato raw unprepared (Includes foods for USDAs Food Distribution Program)','SWEET POTATO RAW UNPREP','Sweetpotato',,'Y','Parings and trimmings',28,'Ipomoea batatas',6.25,2.78,8.37,4.03 -11508,1100,'Sweet potato cooked baked in skin flesh without salt','SWEET POTATO CKD BKD IN SKN FLESH WO/ SALT','Sweetpotato',,'Y','Skin',22,,6.25,2.78,8.37,4.03 -11510,1100,'Sweet potato cooked boiled without skin','SWEET POTATO CKD BLD WO/ SKN','Sweetpotato',,'Y',,0,,6.25,2.78,8.37,4.03 -11512,1100,'Sweet potato canned vacuum pack','SWEETPOTATO CND VACUUM PK','Sweetpotato',,'Y',,0,,6.25,2.78,8.37,4.03 -11514,1100,'Sweet potato canned mashed','SWEET POTATO CND MSHD','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11516,1100,'Sweet potato frozen unprepared (Includes foods for USDAs Food Distribution Program)','SWEET POTATO FRZ UNPREP','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11517,1100,'Sweet potato frozen cooked baked without salt','SWEET POTATO FRZ CKD BKD WO/ SALT','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11518,1100,'Taro raw','TARO RAW',,,'Y','Ends and skin',14,'Colocasia esculenta',6.25,2.78,8.37,4.03 -11519,1100,'Taro cooked without salt','TARO COOKED WITHOUT SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11520,1100,'Taro leaves raw','TARO LEAVES RAW',,,'Y','Stem midrib and tough leaves',40,'Colocasia esculenta',6.25,2.44,8.37,3.57 -11521,1100,'Taro leaves cooked steamed without salt','TARO LEAVES CKD STMD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11522,1100,'Taro shoots raw','TARO SHOOTS RAW',,,,'Ends',12,'Colocasia esculenta',6.25,2.44,8.37,3.57 -11523,1100,'Taro shoots cooked without salt','TARO SHOOTS CKD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11525,1100,'Taro tahitian raw','TARO TAHITIAN RAW',,,,,,'Colocasia esculenta',6.25,2.78,8.37,4.03 -11526,1100,'Taro tahitian cooked without salt','TARO TAHITIAN CKD WO/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11527,1100,'Tomatoes green raw','TOMATOES GREEN RAW',,,'Y','Core and stem ends',9,'Solanum lycopersicum',6.25,2.44,8.37,3.57 -11529,1100,'Tomatoes red ripe raw year round average','TOMATOES RED RIPE RAW YEAR RND AVERAGE',,,'Y','Core and stem ends',9,'Solanum lycopersicum',6.25,2.44,8.37,3.57 -11530,1100,'Tomatoes red ripe cooked','TOMATOES RED RIPE CKD',,,'Y',,0,,6.25,2.44,8.37,3.57 -11531,1100,'Tomatoes red ripe canned packed in tomato juice','TOMATOES RED RIPE CND PACKED IN TOMATO JUC',,,'Y',,0,,6.25,2.44,8.37,3.57 -11533,1100,'Tomatoes red ripe canned stewed','TOMATOES RED RIPE CND STWD',,,'Y',,0,,6.25,2.44,8.37,3.57 -11537,1100,'Tomatoes red ripe canned with green chilies','TOMATOES RED RIPE CND W/GRN CHILIES',,,,,0,,6.25,2.44,8.37,3.57 -11540,1100,'Tomato juice canned with salt added','TOMATO JUC CND W/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11546,1100,'Tomato products canned paste without salt added (Includes foods for USDAs Food Distribution Program)','TOMATO PRODUCTS CND PASTE WO/ SALT ADDED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11547,1100,'Tomato products canned puree without salt added','TOMATO PRODUCTS CND PUREE WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11548,1100,'Tomato powder','TOMATO POWDER',,,,,0,,6.25,2.44,8.37,3.57 -11549,1100,'Tomato products canned sauce','TOMATO PRODUCTS CND SAU',,,'Y',,0,,6.25,2.44,8.37,3.57 -11551,1100,'Tomato products canned sauce with mushrooms','TOMATO PRODUCTS CND SAU W/MUSHROOMS',,,,,0,,6.25,2.44,8.37,3.57 -11553,1100,'Tomato products canned sauce with onions','TOMATO PRODUCTS CND SAU W/ONIONS',,,,,0,,6.25,2.60,8.40,3.70 -11555,1100,'Tomato products canned sauce with herbs and cheese','TOMATO PRODUCTS CND SAU W/HERBS&CHS',,,,,0,,6.28,3.00,8.80,3.50 -11557,1100,'Tomato products canned sauce with onions green peppers and celery','TOMATO PRODUCTS CND SAU W/ONIONS GRN PEPPERS &CELERY',,,'Y',,0,,6.25,2.40,8.40,3.70 -11559,1100,'Tomato products canned sauce with tomato tidbits','TOMATO PRODUCTS CND SAU W/TOMATO TIDBITS',,,,,0,,6.25,2.44,8.37,3.57 -11563,1100,'Tree fern cooked without salt','TREE FERN CKD WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11564,1100,'Turnips raw','TURNIPS RAW',,,'Y','Parings',19,'Brassica rapa (Rapifera Group)',6.25,2.78,8.37,3.84 -11565,1100,'Turnips cooked boiled drained without salt','TURNIPS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11566,1100,'Turnips frozen unprepared','TURNIPS FROZEN UNPREPARED',,,,,0,,6.25,2.78,8.37,3.84 -11567,1100,'Turnips frozen cooked boiled drained without salt','TURNIPS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11568,1100,'Turnip greens raw','TURNIP GREENS RAW',,,,'Root crown tough stems and discarded leaves',30,'Brassica rapa (Rapifera Group)',6.25,2.44,8.37,3.57 -11569,1100,'Turnip greens cooked boiled drained without salt','TURNIP GRNS CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11570,1100,'Turnip greens canned solids and liquids','TURNIP GRNS CND SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11574,1100,'Turnip greens frozen unprepared','TURNIP GRNS FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11575,1100,'Turnip greens frozen cooked boiled drained without salt','TURNIP GRNS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11576,1100,'Turnip greens and turnips frozen unprepared','TURNIP GRNS&TURNIPS FRZ UNPREP',,,,,0,,6.25,2.78,8.37,3.84 -11577,1100,'Turnip greens and turnips frozen cooked boiled drained without salt','TURNIP GRNS&TURNIPS FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,,, -11578,1100,'Vegetable juice cocktail canned','VEGETABLE JUC COCKTAIL CND',,,'Y',,0,,6.25,,, -11579,1100,'Vegetables mixed canned solids and liquids','VEGETABLES MXD CND SOL&LIQUIDS',,,,,0,,6.25,3.47,8.37,4.07 -11581,1100,'Vegetables mixed canned drained solids','VEGETABLES MXD CND DRND SOL',,,'Y',,0,,6.25,3.47,8.37,4.07 -11583,1100,'Vegetables mixed frozen unprepared','VEGETABLES MXD FRZ UNPREP',,,,,0,,6.25,,, -11584,1100,'Vegetables mixed frozen cooked boiled drained without salt','VEGETABLES MXD FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,,, -11585,1100,'Vegetable juice cocktail low sodium canned','VEGETABLE JUC COCKTAIL LO NA CND',,,,,0,,6.25,2.44,8.37,3.57 -11587,1100,'Vinespinach (basella) raw','VINESPINACH (BASELLA) RAW',,,,,0,'Basella alba',6.25,2.44,8.37,3.57 -11588,1100,'Waterchestnuts chinese (matai) raw','WATERCHESTNUTS CHINESE (MATAI) RAW',,,'Y','Skin',23,'Eleocharis dulcis',6.25,2.78,8.37,3.84 -11590,1100,'Waterchestnuts chinese canned solids and liquids','WATERCHESTNUTS CHINESE CND SOL&LIQUIDS',,,'Y',,0,,6.25,2.78,8.37,3.84 -11591,1100,'Watercress raw','WATERCRESS RAW',,,'Y','Tough stems and ends',8,'Nasturtium officinale',6.25,2.44,8.37,3.57 -11593,1100,'Waxgourd (chinese preserving melon) raw','WAXGOURD (CHINESE PRESERVING MELON) RAW',,,,'Stem center and skin',29,'Benincasa hispida',6.25,2.44,8.37,3.57 -11594,1100,'Waxgourd (chinese preserving melon) cooked boiled drained without salt','WAXGOURD (CHINESE PRESERVING MELON) CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11595,1100,'Winged beans immature seeds raw','WINGED BNS IMMAT SEEDS RAW',,,,'Ends',2,'Psophocarpus tetragonolobus',6.25,3.47,8.37,4.07 -11596,1100,'Winged beans immature seeds cooked boiled drained without salt','WINGED BNS IMMAT SEEDS CKD BLD DRND WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11597,1100,'Winged bean leaves raw','WINGED BEAN LEAVES RAW',,,,,,'Psophocarpus tetragonolobus',6.25,2.44,8.37,3.57 -11599,1100,'Winged bean tuber raw','WINGED BEAN TUBER RAW',,,,,,'Psophocarpus tetragonolobus',6.25,2.78,8.37,3.84 -11601,1100,'Yam raw','YAM RAW',,,'Y','Skin',14,'Dioscorea spp.',6.25,2.78,8.37,4.03 -11602,1100,'Yam cooked boiled drained or baked without salt','YAM CKD BLD DRND OR BKD WO/SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11603,1100,'Yambean (jicama) raw','YAMBEAN (JICAMA) RAW',,,'Y','Ends and skin',8,'Pachyrhizus spp.',6.25,2.78,8.37,4.03 -11604,1100,'Yambean (jicama) cooked boiled drained without salt','YAMBEAN (JICAMA) CKD BLD DRND WO/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11605,1100,'Beets harvard canned solids and liquids','BEETS HARVARD CND SOL&LIQUIDS',,,,,0,,6.25,2.78,8.37,3.84 -11609,1100,'Beets pickled canned solids and liquids','BEETS PICKLED CND SOL&LIQUIDS',,,'Y',,0,,6.25,2.78,8.37,3.84 -11613,1100,'Borage raw','BORAGE RAW',,,,'Tough leaves and stems',20,'Borago officinalis',6.25,2.44,8.37,3.57 -11614,1100,'Borage cooked boiled drained without salt','BORAGE CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11615,1100,'Chives freeze-dried','CHIVES FREEZE-DRIED',,,,,0,,6.25,2.44,8.37,3.57 -11616,1100,'Dock raw','DOCK RAW',,,,'Stalks',30,'Rumex spp.',6.25,2.44,8.37,3.57 -11617,1100,'Dock cooked boiled drained without salt','DOCK CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11618,1100,'Eppaw raw','EPPAW RAW',,,,,,'Perideridia oregana',6.25,2.78,8.37,3.84 -11620,1100,'Drumstick pods raw','DRUMSTICK PODS RAW','Horseradish tree pods',,,'Hard outer covering and fibers',48,'Moringa oleifera',6.25,2.44,8.37,3.57 -11621,1100,'Drumstick pods cooked boiled drained without salt','DRUMSTICK PODS CKD BLD DRND WO/ SALT','Horseradish tree pods',,,,0,,6.25,2.44,8.37,3.57 -11624,1100,'Leeks (bulb and lower-leaf portion) freeze-dried','LEEKS (BULB&LOWER-LEAF PORTION) FREEZE-DRIED',,,,,0,,6.25,2.44,8.37,3.57 -11625,1100,'Parsley freeze-dried','PARSLEY FREEZE-DRIED',,,,,0,,6.25,2.44,8.37,3.57 -11626,1100,'Beans mung mature seeds sprouted canned drained solids','BEANS MUNG MATURE SEEDS SPROUTED CND DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11632,1100,'Peppers jalapeno canned solids and liquids','PEPPERS JALAPENO CND SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11637,1100,'Radishes white icicle raw','RADISHES WHITE ICICLE RAW',,,,'Parings',35,'Raphanus sativus',6.25,2.78,8.37,3.84 -11640,1100,'Shallots freeze-dried','SHALLOTS FREEZE-DRIED',,,,,0,,6.25,2.78,8.37,3.84 -11641,1100,'Squash summer all varieties raw','SQUASH SMMR ALL VAR RAW',,,'Y','Ends',5,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11642,1100,'Squash summer all varieties cooked boiled drained without salt','SQUASH SMMR ALL VAR CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11643,1100,'Squash winter all varieties raw','SQUASH WNTR ALL VAR RAW',,,'Y','Seeds rind and stem',29,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11644,1100,'Squash winter all varieties cooked baked without salt','SQUASH WNTR ALL VAR CKD BKD WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11645,1100,'Sweet potato canned syrup pack solids and liquids','SWEET POTATO CND SYRUP PK SOL & LIQUIDS','Sweetpotato',,'Y',,0,,6.25,2.78,8.37,4.03 -11647,1100,'Sweet potato canned syrup pack drained solids','SWEET POTATO CND SYRUP PK DRND SOL','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11649,1100,'Tomato products canned sauce spanish style','TOMATO PRODUCTS CND SAU SPANISH STYLE',,,,,0,,6.25,2.64,8.37,3.70 -11653,1100,'Beans pinto mature seeds sprouted raw','BEANS PINTO MATURE SEEDS SPROUTED RAW',,,,,0,'Phaseolus vulgaris',6.25,2.44,8.37,3.57 -11654,1100,'Beans pinto mature seeds sprouted cooked boiled drained without salt','BEANS PINTO MATURE SEEDS SPROUTED CKD BLD DRND WO/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11655,1100,'Carrot juice canned','CARROT JUICE CANNED',,,'Y',,0,,6.25,2.78,8.37,3.84 -11656,1100,'Corn pudding home prepared','CORN PUDD HOME PREP',,,,,0,,,,, -11657,1100,'Potatoes mashed home-prepared whole milk added','POTATOES MSHD HOME-PREPARED WHL MILK ADDED',,,'Y',,0,,,,, -11658,1100,'Spinach souffle','SPINACH SOUFFLE',,,,,0,,,,, -11659,1100,'Sweet potato cooked candied home-prepared','SWEET POTATO CKD CANDIED HOME-PREPARED','Sweetpotato',,'Y',,0,,,,, -11660,1100,'Tomatoes red ripe cooked stewed','TOMATOES RED RIPE CKD STWD',,,,,0,,6.25,,, -11663,1100,'Seaweed agar dried','SEAWEED AGAR DRIED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11666,1100,'Seaweed spirulina raw','SEAWEED SPIRULINA RAW',,,,,0,'Spirulina spp.',6.25,2.44,8.37,3.57 -11667,1100,'Seaweed spirulina dried','SEAWEED SPIRULINA DRIED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11669,1100,'Seaweed wakame raw','SEAWEED WAKAME RAW',,,'Y',,0,'Undaria spp.',6.25,2.44,8.37,3.57 -11670,1100,'Peppers hot chili green raw','PEPPERS HOT CHILI GRN RAW',,,'Y','Stem ends seeds and core',27,'Capsicum frutescens',6.25,2.44,8.37,3.57 -11671,1100,'Potatoes obrien home-prepared','POTATOES OBRIEN HOME-PREPARED',,,,,0,,6.25,2.70,8.40,4.00 -11672,1100,'Potato pancakes','POTATO PANCAKES',,,,,0,,,,, -11674,1100,'Potatoes baked flesh and skin without salt','POTATOES BKD FLESH & SKN WO/ SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11675,1100,'Potatoes microwaved cooked in skin flesh and skin without salt','POTATOES MICROWAVED CKD IN SKN FLESH&SKN WO/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11676,1100,'Radish seeds sprouted raw','RADISH SEEDS SPROUTED RAW',,,,,0,'Raphanus sativus',6.25,2.44,8.37,3.84 -11677,1100,'Shallots raw','SHALLOTS RAW',,,,'Skins',12,'Allium ascalonicum',6.25,2.78,8.37,3.84 -11683,1100,'Carrot dehydrated','CARROT DEHYDRATED',,,'Y',,0,,6.25,2.78,8.37,3.84 -11693,1100,'Tomatoes crushed canned','TOMATOES CRUSHED CANNED',,,,,0,,6.25,2.44,8.37,3.57 -11695,1100,'Tomatoes orange raw','TOMATOES ORANGE RAW',,,,'Core and stem ends',9,'Solanum lycopersicum',6.25,2.44,8.37,3.57 -11696,1100,'Tomatoes yellow raw','TOMATOES YELLOW RAW',,,,'Core and stem ends',9,'Solanum lycopersicum',6.25,2.44,8.37,3.57 -11697,1100,'Arrowroot raw','ARROWROOT RAW',,,,'Peel',15,'Maranta arundinacea',6.25,2.78,8.37,3.84 -11698,1100,'Chrysanthemum leaves raw','CHRYSANTHEMUM LEAVES RAW',,,,,0,'Chrysanthemum coronarium',6.25,2.44,8.37,3.57 -11700,1100,'Amaranth leaves cooked boiled drained with salt','AMARANTH LEAVES CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11701,1100,'Arrowhead cooked boiled drained with salt','ARROWHEAD CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11702,1100,'Artichokes (globe or french) cooked boiled drained with salt','ARTICHOKES (GLOBE OR FRENCH) CKD BLD DRND W/SALT',,,,'Stems and inedible parts of bracts and flower',60,,6.25,2.44,8.37,3.57 -11703,1100,'Artichokes (globe or french) frozen cooked boiled drained with salt','ARTICHOKES (GLOBE OR FRENCH) FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11705,1100,'Asparagus cooked boiled drained with salt','ASPARAGUS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11707,1100,'Asparagus canned no salt added solids and liquids','ASPARAGUS CND NO SALT SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11709,1100,'Asparagus frozen cooked boiled drained with salt','ASPARAGUS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11710,1100,'Balsam-pear (bitter gourd) leafy tips cooked boiled drained with salt','BALSAM-PEAR (BITTER GOURD) LEAFY TIPS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11711,1100,'Balsam-pear (bitter gourd) pods cooked boiled drained with salt','BALSAM-PEAR (BITTER GOURD) PODS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11712,1100,'Bamboo shoots cooked boiled drained with salt','BAMBOO SHOOTS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11713,1100,'Beans kidney mature seeds sprouted cooked boiled drained with salt','BEANS KIDNEY MATURE SEEDS SPROUTED CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11714,1100,'Lima beans immature seeds cooked boiled drained with salt','LIMA BNS IMMAT SEEDS CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11715,1100,'Lima beans immature seeds canned no salt added solids and liquids','LIMA BNS IMMAT SEEDS CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,3.47,8.37,4.07 -11716,1100,'Lima beans immature seeds frozen baby cooked boiled drained with salt','LIMA BNS IMMAT SEEDS FRZ BABY CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11717,1100,'Lima beans immature seeds frozen fordhook cooked boiled drained with salt','LIMA BNS IMMAT SEEDS FRZ FORDHOOK CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11718,1100,'Mung beans mature seeds sprouted cooked boiled drained with salt','MUNG BNS MATURE SEEDS SPROUTED CKD BLD DRND W/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11719,1100,'Beans navy mature seeds sprouted cooked boiled drained with salt','BEANS NAVY MATURE SEEDS SPROUTED CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11720,1100,'Beans pinto immature seeds frozen cooked boiled drained with salt','BEANS PINTO IMMAT SEEDS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11721,1100,'Beans pinto mature seeds sprouted cooked boiled drained with salt','BEANS PINTO MATURE SEEDS SPROUTED CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11722,1100,'Beans snap yellow raw','BEANS SNAP YELLOW RAW',,,,'Ends strings trimmings',12,'Phaseolus vulgaris',6.25,2.44,8.37,3.57 -11723,1100,'Beans snap green cooked boiled drained with salt','BEANS SNAP GRN CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11724,1100,'Beans snap yellow cooked boiled drained without salt','BEANS SNAP YEL CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11725,1100,'Beans snap yellow cooked boiled drained with salt','BEANS SNAP YEL CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11726,1100,'Beans snap green canned no salt added solids and liquids','BEANS SNAP GRN CND NO SALT SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11727,1100,'Beans snap yellow canned regular pack solids and liquids','BEANS SNAP YEL CND REG PK SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11728,1100,'Beans snap yellow canned no salt added solids and liquids','BEANS SNAP YEL CND NO SALT SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11729,1100,'Beans snap green canned no salt added drained solids','BEANS SNAP GRN CND NO SALT DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11730,1100,'Beans snap yellow frozen all styles unprepared','BEANS SNAP YEL FRZ ALL STYLES UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11731,1100,'Beans snap green frozen cooked boiled drained with salt','BEANS SNAP GRN FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11732,1100,'Beans snap yellow frozen cooked boiled drained without salt','BEANS SNAP YEL FRZ CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11733,1100,'Beans snap yellow frozen cooked boiled drained with salt','BEANS SNAP YEL FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11734,1100,'Beets cooked boiled. drained with salt','BEETS CKD BOILED. DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11735,1100,'Beets canned no salt added solids and liquids','BEETS CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,2.78,8.37,3.84 -11736,1100,'Beet greens cooked boiled drained with salt','BEET GRNS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11737,1100,'Borage cooked boiled drained with salt','BORAGE CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11738,1100,'Broadbeans immature seeds cooked boiled drained with salt','BROADBEANS IMMAT SEEDS CKD BLD DRND W/SALT',,,,,0,'Vicia faba',6.25,3.47,8.37,4.07 -11739,1100,'Broccoli leaves raw','BROCCOLI LEAVES RAW',,,,,0,,6.25,2.44,8.37,3.57 -11740,1100,'Broccoli flower clusters raw','BROCCOLI FLOWER CLUSTERS RAW',,,,,0,,6.25,2.44,8.37,3.57 -11741,1100,'Broccoli stalks raw','BROCCOLI STALKS RAW',,,,,0,,6.25,2.44,8.37,3.57 -11742,1100,'Broccoli cooked boiled drained with salt','BROCCOLI CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11743,1100,'Broccoli frozen chopped cooked boiled drained with salt','BROCCOLI FRZ CHOPD CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11744,1100,'Broccoli frozen spears cooked boiled drained with salt','BROCCOLI FRZ SPEARS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11745,1100,'Brussels sprouts cooked boiled drained with salt','BRUSSELS SPROUTS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11746,1100,'Brussels sprouts frozen cooked boiled drained with salt','BRUSSELS SPROUTS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11747,1100,'Burdock root cooked boiled drained with salt','BURDOCK ROOT CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11748,1100,'Butterbur cooked boiled drained with salt','BUTTERBUR CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11749,1100,'Cabbage common (danish domestic and pointed types) freshly harvest raw','CABBAGE COMMON FRESHLY HARVEST RAW',,,,'Outer leaves and core',20,,6.25,2.44,8.37,3.57 -11750,1100,'Cabbage common (danish domestic and pointed types) stored raw','CABBAGE COMMON (DANISH DOMESTIC &POINTED TYPES) STORED RAW',,,,'Outer leaves and core',20,,6.25,2.44,8.37,3.57 -11751,1100,'Cabbage common cooked boiled drained with salt','CABBAGE COMMON CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11752,1100,'Cabbage red cooked boiled drained with salt','CABBAGE RED CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11753,1100,'Cabbage savoy cooked boiled drained with salt','CABBAGE SAVOY CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11754,1100,'Cabbage chinese (pak-choi) cooked boiled drained with salt','CABBAGE CHINESE (PAK-CHOI) CKD BLD DRND W/SALT','pak choi bok choy',,,,0,,6.25,2.44,8.37,3.57 -11755,1100,'Cabbage chinese (pe-tsai) cooked boiled drained with salt','CABBAGE CHINESE (PE-TSAI) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11756,1100,'Cardoon cooked boiled drained with salt','CARDOON CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11757,1100,'Carrots cooked boiled drained with salt','CARROTS CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11758,1100,'Carrots canned no salt added solids and liquids','CARROTS CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,2.78,8.37,3.84 -11759,1100,'Carrots canned no salt added drained solids','CARROTS CND NO SALT DRND SOL',,,,,0,,6.25,2.78,8.37,3.84 -11760,1100,'Carrots frozen cooked boiled drained with salt','CARROTS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11761,1100,'Cauliflower cooked boiled drained with salt','CAULIFLOWER CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11762,1100,'Cauliflower frozen cooked boiled drained with salt','CAULIFLOWER FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11763,1100,'Celeriac cooked boiled drained with salt','CELERIAC CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11764,1100,'Celery cooked boiled drained with salt','CELERY CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11765,1100,'Chard swiss cooked boiled drained with salt','CHARD SWISS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11766,1100,'Chayote fruit cooked boiled drained with salt','CHAYOTE FRUIT CKD BLD DRND W/SALT','christophine',,'Y',,0,,6.25,2.44,8.37,3.57 -11767,1100,'Chrysanthemum garland cooked boiled drained with salt','CHRYSANTHEMUM GARLAND CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11768,1100,'Collards cooked boiled drained with salt','COLLARDS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11769,1100,'Collards frozen chopped cooked boiled drained with salt','COLLARDS FRZ CHOPD CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11770,1100,'Corn sweet yellow cooked boiled drained with salt','CORN SWT YEL CKD BLD DRND W/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11771,1100,'Corn sweet yellow canned no salt added solids and liquids (Includes foods for USDAs Food Distribution Program)','CORN SWT YEL CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,2.44,8.37,3.57 -11772,1100,'Corn sweet yellow canned cream style no salt added','CORN SWT YEL CND CRM STYLE NO SALT',,,,,0,,6.25,2.44,8.37,3.57 -11773,1100,'Corn sweet yellow canned vacuum pack no salt added','CORN SWT YEL CND VACUUM PK NO SALT',,,,,0,,6.25,2.44,8.37,3.57 -11774,1100,'Corn sweet yellow frozen kernels cut off cob boiled drained with salt','CORN SWT YEL FRZ KRNLS CUT OFF COB BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11775,1100,'Corn sweet yellow frozen kernels on cob cooked boiled drained with salt','CORN SWT YEL FRZ KRNLS ON COB CKD BLD DRND W/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11777,1100,'Cowpeas (blackeyes) immature seeds cooked boiled drained with salt','COWPEAS (BLACKEYES) IMMAT SEEDS CKD BLD DRND W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -11778,1100,'Cowpeas (blackeyes) immature seeds frozen cooked boiled drained with salt','COWPEAS (BLACKEYES) IMMAT SEEDS FRZ CKD BLD DRND W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -11779,1100,'Cowpeas young pods with seeds cooked boiled drained with salt','COWPEAS YOUNG PODS W/SEEDS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11780,1100,'Cowpeas leafy tips cooked boiled drained with salt','COWPEAS LEAFY TIPS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11781,1100,'Cress garden cooked boiled drained with salt','CRESS GARDEN CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11782,1100,'Dandelion greens cooked boiled drained with salt','DANDELION GRNS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11783,1100,'Eggplant cooked boiled drained with salt','EGGPLANT CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11784,1100,'Gourd white-flowered (calabash) cooked boiled drained with salt','GOURD WHITE-FLOWERED (CALABASH) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11785,1100,'Gourd dishcloth (towelgourd) cooked boiled drained with salt','GOURD DISHCLOTH (TOWELGOURD) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11786,1100,'Drumstick leaves cooked boiled drained with salt','DRUMSTICK LEAVES CKD BLD DRND W/ SALT','Horseradish tree',,,,0,,6.25,2.44,8.37,3.57 -11787,1100,'Drumstick pods cooked boiled drained with salt','DRUMSTICK PODS CKD BLD DRND W/ SALT','Horseradish-tree pods',,,,0,,6.25,2.44,8.37,3.57 -11788,1100,'Hyacinth-beans immature seeds cooked boiled drained with salt','HYACINTH-BEANS IMMAT SEEDS CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11789,1100,'Jute potherb cooked boiled drained with salt','JUTE POTHERB CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11790,1100,'Kale cooked boiled drained with salt','KALE CKD BLD DRND W/ SALT',,,,,0,,6.25,,, -11791,1100,'Kale frozen cooked boiled drained with salt','KALE FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11793,1100,'Kohlrabi cooked boiled drained with salt','KOHLRABI CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11794,1100,'Lambsquarters cooked boiled drained with salt','LAMBSQUARTERS CKD BLD DRND W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11795,1100,'Leeks (bulb and lower leaf-portion) cooked boiled drained with salt','LEEKS (BULB&LOWER LEAF-PORTION) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11796,1100,'Lotus root cooked boiled drained with salt','LOTUS ROOT CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11797,1100,'Mushrooms white cooked boiled drained with salt','MUSHROOMS WHITE CKD BLD DRND W/ SALT',,,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11798,1100,'Mushrooms shiitake cooked with salt','MUSHROOMS SHIITAKE CKD W/SALT',,,,,0,,6.25,2.62,8.37,3.48 -11799,1100,'Mustard greens cooked boiled drained with salt','MUSTARD GRNS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11800,1100,'Mustard greens frozen cooked boiled drained with salt','MUSTARD GRNS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11801,1100,'Mustard spinach (tendergreen) cooked boiled drained with salt','MUSTARD SPINACH (TENDERGREEN) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11802,1100,'New zealand spinach cooked boiled drained with salt','NEW ZEALAND SPINACH CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11803,1100,'Okra cooked boiled drained with salt','OKRA CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11804,1100,'Okra frozen cooked boiled drained with salt','OKRA FRZ CKD BLD DRND W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11805,1100,'Onions cooked boiled drained with salt','ONIONS CKD BLD DRND W/SALT',,,'Y',,0,,6.25,2.78,8.37,3.84 -11806,1100,'Onions frozen chopped cooked boiled drained with salt','ONIONS FRZ CHOPD CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11807,1100,'Onions frozen whole cooked boiled drained with salt','ONIONS FRZ WHL CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11808,1100,'Parsnips cooked boiled drained with salt','PARSNIPS CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11809,1100,'Peas edible-podded cooked boiled drained with salt','PEAS EDIBLE-PODDED CKD BLD DRND W/SALT','Sugar snap peas Snowpeas',,,,0,,6.25,3.47,8.37,4.07 -11810,1100,'Peas edible-podded frozen cooked boiled drained with salt','PEAS EDIBLE-PODDED FRZ CKD BLD DRND W/SALT','Sugar snap peas Snowpeas',,,,0,,6.25,3.47,8.37,4.07 -11811,1100,'Peas green cooked boiled drained with salt','PEAS GRN CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11812,1100,'Peas green canned no salt added solids and liquids','PEAS GRN CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,3.47,8.37,4.07 -11813,1100,'Peas green canned no salt added drained solids','PEAS GRN CND NO SALT DRND SOL',,,,,0,,6.25,3.47,8.37,4.07 -11814,1100,'Peas green frozen cooked boiled drained with salt','PEAS GRN FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11815,1100,'Peas mature seeds sprouted cooked boiled drained with salt','PEAS MATURE SEEDS SPROUTED CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11816,1100,'Peas and carrots canned no salt added solids and liquids','PEAS&CARROTS CND NO SALT SOL&LIQUIDS',,,'Y',,0,,6.25,3.98,8.37,3.16 -11817,1100,'Peas and carrots frozen cooked boiled drained with salt','PEAS&CARROTS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,3.98,8.37,3.16 -11818,1100,'Peas and onions frozen cooked boiled drained with salt','PEAS&ONIONS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,3.40,8.37,4.00 -11819,1100,'Peppers hot chili red raw','PEPPERS HOT CHILI RED RAW',,,'Y','Stem ends seeds and core',27,,6.25,2.44,8.37,3.57 -11820,1100,'Peppers hot chili red canned excluding seeds solids and liquids','PEPPERS HOT CHILI RED CND EXCLUDING SEEDS SOL&LIQUIDS',,,'Y',,0,,6.25,2.44,8.37,3.57 -11821,1100,'Peppers sweet red raw','PEPPERS SWT RED RAW',,,'Y','Stem ends seed and core',18,,6.25,2.44,8.37,3.57 -11822,1100,'Peppers sweet green cooked boiled drained with salt','PEPPERS SWT GRN CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11823,1100,'Peppers sweet red cooked boiled drained without salt','PEPPERS SWT RED CKD BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11824,1100,'Peppers sweet red cooked boiled drained with salt','PEPPERS SWT RED CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11825,1100,'Peppers sweet green frozen chopped cooked boiled drained with salt','PEPPERS SWT GRN FRZ CHOPD CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11826,1100,'Pigeonpeas immature seeds cooked boiled drained with salt','PIGEONPEAS IMMAT SEEDS CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11827,1100,'Pokeberry shoots (poke) cooked boiled drained with salt','POKEBERRY SHOOTS (POKE) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11828,1100,'Potatoes baked flesh and skin with salt','POTATOES BKD FLESH & SKN W/ SALT',,,,,0,,6.25,2.78,8.37,4.03 -11829,1100,'Potatoes baked flesh with salt','POTATOES BKD FLESH W/SALT',,,,'Skin and adhering flesh',23,,6.25,2.78,8.37,4.03 -11830,1100,'Potatoes baked skin only with salt','POTATOES BKD SKN ONLY W/ SALT',,,,,0,,6.25,2.78,8.37,4.03 -11831,1100,'Potatoes boiled cooked in skin flesh with salt','POTATOES BLD CKD IN SKN FLESH W/SALT',,,'Y','Skins and eyes',9,,6.25,2.78,8.37,4.03 -11832,1100,'Potatoes boiled cooked in skin skin with salt','POTATOES BLD CKD IN SKN SKN W/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11833,1100,'Potatoes boiled cooked without skin flesh with salt','POTATOES BLD CKD WO/ SKN FLESH W/ SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11834,1100,'Potatoes microwaved cooked in skin flesh and skin with salt','POTATOES MICROWAVED CKD IN SKN FLESH&SKN W/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11835,1100,'Potatoes microwaved cooked in skin flesh with salt','POTATOES MICROWAVED CKD IN SKN FLESH W/SALT',,,,'Skin and adhering flesh',23,,6.25,2.78,8.37,4.03 -11836,1100,'Potatoes microwaved cooked in skin skin with salt','POTATOES MICROWAVED CKD IN SKN SKN W/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11837,1100,'Potatoes frozen whole cooked boiled drained with salt','POTATOES FRZ WHL CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11840,1100,'Potatoes frozen french fried par fried cottage-cut prepared heated in oven with salt','POTATOES FRZ FRCH FR PAR FR CTTGE-CUT PREP HTD OVEN W/SALT',,,,,0,,6.25,2.80,8.80,4.00 -11841,1100,'Potatoes french fried all types salt not added in processing frozen oven-heated','POTATOES FR FR ALL TYPES SALT NOT ADDED IN PROC FRZ OVN-HTD',,,,,0,,6.25,2.80,8.80,4.00 -11842,1100,'Potatoes french fried all types salt not added in processing frozen as purchased','POTATOES FR FR ALL TYPES SALT NOT ADDED IN PROC FRZ AS PURCH',,,,,0,,6.25,2.80,8.80,4.00 -11843,1100,'Potatoes au gratin home-prepared from recipe using margarine','POTATOES AU GRATIN HOME-PREPARED FROM RECIPE USING MARGARINE',,,,,0,,,,, -11844,1100,'Potatoes scalloped home-prepared with margarine','POTATOES SCALLPD HOME-PREPARED W/MARGARINE',,,,,0,,,,, -11845,1100,'Pumpkin cooked boiled drained with salt','PUMPKIN CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11846,1100,'Pumpkin canned with salt','PUMPKIN CANNED WITH SALT',,,,,0,,6.25,2.44,8.37,3.57 -11847,1100,'Pumpkin flowers cooked boiled drained with salt','PUMPKIN FLOWERS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11848,1100,'Pumpkin leaves cooked boiled drained with salt','PUMPKIN LEAVES CKD BLD DRND W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11849,1100,'Purslane cooked boiled drained with salt','PURSLANE CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11850,1100,'Radishes oriental cooked boiled drained with salt','RADISHES ORIENTAL CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11851,1100,'Rutabagas cooked boiled drained with salt','RUTABAGAS CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11852,1100,'Salsify cooked boiled drained with salt','SALSIFY CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11853,1100,'Soybeans green cooked boiled drained with salt','SOYBEANS GRN CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11854,1100,'Spinach cooked boiled drained with salt','SPINACH CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11855,1100,'Spinach canned no salt added solids and liquids','SPINACH CND NO SALT SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11856,1100,'Spinach frozen chopped or leaf cooked boiled drained with salt','SPINACH FRZ CHOPD OR LEAF CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11857,1100,'Squash summer all varieties cooked boiled drained with salt','SQUASH SMMR ALL VAR CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11858,1100,'Squash summer crookneck and straightneck cooked boiled drained with salt','SQUASH SMMR CROOKNECK&STRAIGHTNECK CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11859,1100,'Squash summer crookneck and straightneck frozen cooked boiled drained with salt','SQUASH SMMR CROOKNECK&STRAIGHTNECK FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11860,1100,'Squash summer scallop cooked boiled drained with salt','SQUASH SMMR SCALLOP CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11861,1100,'Squash summer zucchini includes skin cooked boiled drained with salt','SQUASH SMMR ZUCCHINI INCL SKN CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11862,1100,'Squash summer zucchini includes skin frozen cooked boiled drained with salt','SQUASH SMMR ZUCCHINI INCL SKN FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11863,1100,'Squash winter all varieties cooked baked with salt','SQUASH WNTR ALL VAR CKD BKD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11864,1100,'Squash winter acorn cooked baked with salt','SQUASH WNTR ACORN CKD BKD W/SALT',,,,'Rind',20,,6.25,2.44,8.37,3.57 -11865,1100,'Squash winter acorn cooked boiled mashed with salt','SQUASH WNTR ACORN CKD BLD MSHD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11866,1100,'Squash winter butternut cooked baked with salt','SQUASH WNTR BUTTERNUT CKD BKD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11867,1100,'Squash winter butternut frozen cooked boiled with salt','SQUASH WNTR BUTTERNUT FRZ CKD BLD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11868,1100,'Squash winter hubbard baked with salt','SQUASH WNTR HUBBARD BKD W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11869,1100,'Squash winter hubbard cooked boiled mashed with salt','SQUASH WNTR HUBBARD CKD BLD MSHD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11870,1100,'Squash winter spaghetti cooked boiled drained or baked with salt','SQUASH WNTR SPAGHETTI CKD BLD DRND OR BKD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11871,1100,'Succotash (corn and limas) cooked boiled drained with salt','SUCCOTASH (CORN&LIMAS) CKD BLD DRND W/SALT',,,,,0,,6.25,2.72,8.37,3.71 -11872,1100,'Succotash (corn and limas) frozen cooked boiled drained with salt','SUCCOTASH (CORN&LIMAS) FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.72,8.37,3.71 -11873,1100,'Water convolvulus cooked boiled drained with salt','SWAMP CABBAGE (SKUNK CABBAGE) CKD BLD DRND W/ SALT','kangkong Water spinach',,,,0,,6.25,2.44,8.37,3.57 -11874,1100,'Sweet potato leaves cooked steamed with salt','SWEET POTATO LEAVES CKD STMD W/ SALT','Sweetpotato leaves',,,,0,,6.25,2.44,8.37,3.57 -11875,1100,'Sweet potato cooked baked in skin flesh with salt','SWEET POTATO CKD BKD IN SKN FLESH W/ SALT','Sweetpotato',,,'Skin',22,,6.25,2.78,8.37,4.03 -11876,1100,'Sweet potato cooked boiled without skin with salt','SWEET POTATO CKD BLD WO/ SKN W/ SALT','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11877,1100,'Sweet potato frozen cooked baked with salt','SWEET POTATO FRZ CKD BKD W/ SALT','Sweetpotato',,,,0,,6.25,2.78,8.37,4.03 -11878,1100,'Taro cooked with salt','TARO COOKED WITH SALT',,,,,0,,6.25,2.78,8.37,4.03 -11879,1100,'Taro leaves cooked steamed with salt','TARO LEAVES CKD STMD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11880,1100,'Taro shoots cooked with salt','TARO SHOOTS CKD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11881,1100,'Taro tahitian cooked with salt','TARO TAHITIAN CKD W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11884,1100,'Tomatoes red ripe cooked with salt','TOMATOES RED RIPE CKD W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11885,1100,'Tomatoes red ripe canned packed in tomato juice no salt added','TOMATOES RED RIPE CND PACKED IN TOMATO JUC NO SALT ADDED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11886,1100,'Tomato juice canned without salt added','TOMATO JUC CND WO/ SALT ADDED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11888,1100,'Tomato products canned puree with salt added','TOMATO PRODUCTS CND PUREE W/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11889,1100,'Turnips cooked boiled drained with salt','TURNIPS CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11890,1100,'Turnips frozen cooked boiled drained with salt','TURNIPS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,3.84 -11891,1100,'Turnip greens cooked boiled drained with salt','TURNIP GRNS CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11892,1100,'Turnip greens frozen cooked boiled drained with salt','TURNIP GRNS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11893,1100,'Turnip greens and turnips frozen cooked boiled drained with salt','TURNIP GRNS&TURNIPS FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,,, -11894,1100,'Vegetables mixed frozen cooked boiled drained with salt','VEGETABLES MXD FRZ CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.97 -11895,1100,'Waxgourd (chinese preserving melon) cooked boiled drained with salt','WAXGOURD (CHINESE PRESERVING MELON) CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11896,1100,'Winged bean immature seeds cooked boiled drained with salt','WINGED BEAN IMMAT SEEDS CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11897,1100,'Yam cooked boiled drained or baked with salt','YAM CKD BLD DRND OR BKD W/SALT',,,'Y',,0,,6.25,2.78,8.37,4.03 -11898,1100,'Yambean (jicama) cooked boiled drained with salt','YAMBEAN (JICAMA) CKD BLD DRND W/SALT',,,,,0,,6.25,2.78,8.37,4.03 -11899,1100,'Yardlong bean cooked boiled drained with salt','YARDLONG BEAN CKD BLD DRND W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -11900,1100,'Corn sweet white raw','CORN SWEET WHITE RAW',,,,'35% husk silk trimmings; 29% cob',64,'Zea mays',6.25,2.44,8.37,3.57 -11901,1100,'Corn sweet white cooked boiled drained without salt','CORN SWT WHITE CKD BLD DRND WO/SALT',,,'Y','Cob',45,,6.25,2.44,8.37,3.57 -11902,1100,'Corn sweet white cooked boiled drained with salt','CORN SWT WHITE CKD BLD DRND W/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11903,1100,'Corn sweet white canned whole kernel regular pack solids and liquids','CORN SWT WHITE CND WHL KERNEL REG PK SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11904,1100,'Corn sweet white canned whole kernel no salt added solids and liquids','CORN SWT WHITE CND WHL KERNEL NO SALT SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11905,1100,'Corn sweet white canned whole kernel drained solids','CORN SWT WHITE CND WHL KERNEL DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11906,1100,'Corn sweet white canned cream style regular pack','CORN SWT WHITE CND CRM STYLE REG PK',,,'Y',,0,,6.25,2.44,8.37,3.57 -11907,1100,'Corn sweet white canned cream style no salt added','CORN SWT WHITE CND CRM STYLE NO SALT',,,,,0,,6.25,2.44,8.37,3.57 -11908,1100,'Corn sweet white canned vacuum pack regular pack','CORN SWT WHITE CND VACUUM PK REG PK',,,,,0,,6.25,2.44,8.37,3.57 -11909,1100,'Corn sweet white canned vacuum pack no salt added','CORN SWT WHITE CND VACUUM PK NO SALT',,,,,0,,6.25,2.44,8.37,3.57 -11910,1100,'Corn sweet white frozen kernels cut off cob unprepared','CORN SWT WHITE FRZ KRNLS CUT OFF COB UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11911,1100,'Corn sweet white frozen kernels cut off cob boiled drained without salt','CORN SWT WHITE FRZ KRNLS CUT OFF COB BLD DRND WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11912,1100,'Corn sweet white frozen kernels cut off cob boiled drained with salt','CORN SWT WHITE FRZ KRNLS CUT OFF COB BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11913,1100,'Corn sweet white frozen kernels on cob unprepared','CORN SWT WHITE FRZ KRNLS ON COB UNPREP',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11914,1100,'Corn sweet white frozen kernels on cob cooked boiled drained without salt','CORN SWT WHITE FRZ KRNLS ON COB CKD BLD DRND WO/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11915,1100,'Corn sweet white frozen kernels on cob cooked boiled drained with salt','CORN SWT WHITE FRZ KRNLS ON COB CKD BLD DRND W/SALT',,,,'Cob',45,,6.25,2.44,8.37,3.57 -11916,1100,'Peppers sweet red canned solids and liquids','PEPPERS SWT RED CND SOL&LIQUIDS',,,,,0,,6.25,2.44,8.37,3.57 -11917,1100,'Peppers sweet red frozen chopped unprepared','PEPPERS SWT RED FRZ CHOPD UNPREP',,,'Y',,0,,6.25,2.44,8.37,3.57 -11918,1100,'Peppers sweet red frozen chopped boiled drained without salt','PEPPERS SWT RED FRZ CHOPD BLD DRND WO/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11919,1100,'Peppers sweet red frozen chopped boiled drained with salt','PEPPERS SWT RED FRZ CHOPD BLD DRND W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11921,1100,'Peppers sweet red sauteed','PEPPERS SWT RED SAUTEED',,,,,0,,6.25,2.44,8.37,3.57 -11922,1100,'Sesbania flower cooked steamed with salt','SESBANIA FLOWER CKD STMD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11923,1100,'Soybeans mature seeds sprouted cooked steamed with salt','SOYBEANS MATURE SEEDS SPROUTED CKD STMD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11924,1100,'Soybeans mature seeds sprouted cooked stir-fried with salt','SOYBEANS MATURE SEEDS SPROUTED CKD STIR-FRIED W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11925,1100,'Dock cooked boiled drained with salt','DOCK CKD BLD DRND W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11926,1100,'Lentils sprouted cooked stir-fried with salt','LENTILS SPROUTED CKD STIR-FRIED W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11927,1100,'Mountain yam hawaii cooked steamed with salt','MOUNTAIN YAM HAWAII CKD STMD W/ SALT',,,,,0,,6.25,2.78,8.37,3.84 -11928,1100,'Tree fern cooked with salt','TREE FERN CKD W/SALT',,,,,0,,6.25,2.44,8.37,3.57 -11929,1100,'Potatoes mashed prepared from granules without milk whole milk and margarine','POTATOES MSHD PREP FROM GRANULES WO/MILK WHL MILK&MARGARINE',,,,,0,,6.25,2.78,8.37,4.03 -11930,1100,'Potatoes mashed dehydrated prepared from flakes without milk whole milk and margarine added','POTATOES MSHD DEHYD PREP FRM FLKS WO/ MILK WHL MILK&MARG ADD',,,,,0,,6.29,3.21,8.82,4.02 -11931,1100,'Peppers sweet red freeze-dried','PEPPERS SWT RED FREEZE-DRIED',,,,,0,,6.25,2.44,8.37,3.57 -11932,1100,'Beans snap yellow canned regular pack drained solids','BEANS SNAP YEL CND REG PK DRND SOL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11933,1100,'Beans snap yellow canned no salt added drained solids','BEANS SNAP YEL CND NO SALT DRND SOL',,,,,0,,6.25,2.44,8.37,3.57 -11934,1100,'Potatoes mashed home-prepared whole milk and butter added','POTATOES MSHD HOME-PREPARED WHL MILK & BUTTER ADDED',,,,,0,,,,, -11935,1100,'Catsup','Catsup','Ketchup',,'Y',,0,,6.25,2.44,8.37,3.57 -11936,1100,'Mushrooms brown italian or crimini exposed to ultraviolet light raw','MUSHROOMS BROWN ITALIAN OR CRIMINI EXPOSED TO UV LT RAW',,,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11937,1100,'Pickles cucumber dill or kosher dill','PICKLES CUCUMBER DILL OR KOSHER DILL',,,'Y',,0,,6.25,2.44,8.37,3.57 -11938,1100,'Mushroom white exposed to ultraviolet light raw','MUSHROOM WHITE EXPOSED TO UV LT RAW',,,,,0,,6.25,2.62,8.37,3.48 -11939,1100,'Mushrooms portabella exposed to ultraviolet light grilled','MUSHROOMS PORTABELLA EXPOSED TO UV LT GRILLED','portobella',,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11940,1100,'Pickles cucumber sweet (includes bread and butter pickles)','PICKLES CUCUMBER SWT (INCLUDES BREAD & BUTTER PICKLES)',,,'Y',,0,,,,, -11941,1100,'Pickles cucumber sour','PICKLES CUCUMBER SOUR',,,'Y',,0,,6.25,2.44,8.37,3.57 -11943,1100,'Pimento canned','PIMENTO CANNED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11944,1100,'Pickle relish hot dog','PICKLE RELISH HOT DOG',,,,,0,,6.25,2.44,8.37,3.57 -11945,1100,'Pickle relish sweet','PICKLE RELISH SWEET',,,'Y',,0,,6.25,2.44,8.37,3.57 -11946,1100,'Pickles cucumber sour low sodium','PICKLES CUCUMBER SOUR LO NA',,,'Y',,0,,6.25,2.44,8.37,3.57 -11947,1100,'Pickles cucumber dill reduced sodium','PICKLES CUCUMBER DILL RED NA',,,,,0,,6.25,2.44,8.37,3.57 -11948,1100,'Pickles cucumber sweet low sodium (includes bread and butter pickles)','PICKLES CUCUMBER SWT LO NA (INCLUDES BREAD & BUTTER PICKLES)',,,'Y',,0,,6.25,2.44,3.37,3.57 -11949,1100,'Catsup low sodium','CATSUP LOW SODIUM','Ketchup low sodium',,'Y',,0,,6.25,2.44,8.37,3.57 -11950,1100,'Mushrooms enoki raw','MUSHROOMS ENOKI RAW',,,,'Stems and trimmings',16,'Flammulina veluptipes',6.25,2.62,8.37,3.48 -11951,1100,'Peppers sweet yellow raw','PEPPERS SWEET YELLOW RAW',,,,'Stem ends seeds and core',18,'Capsicum annuum',6.25,2.44,8.37,3.57 -11952,1100,'Radicchio raw','RADICCHIO RAW',,,'Y','Core and leaf ends',9,'Cichorium intybus',6.25,2.44,8.37,3.84 -11953,1100,'Squash zucchini baby raw','SQUASH ZUCCHINI BABY RAW',,,,'Ends',13,'Cucurbita spp.',6.25,2.44,8.37,3.57 -11954,1100,'Tomatillos raw','TOMATILLOS RAW',,,'Y',,,'Physalis philadelphica',6.25,2.44,8.37,3.57 -11955,1100,'Tomatoes sun-dried','TOMATOES SUN-DRIED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11956,1100,'Tomatoes sun-dried packed in oil drained','TOMATOES SUN-DRIED PACKED IN OIL DRND',,,,,0,,6.25,2.44,8.37,3.57 -11957,1100,'Fennel bulb raw','FENNEL BULB RAW',,,'Y','Stalk leaves and core',28,'Foeniculum vulgare',6.25,2.44,8.37,3.57 -11958,1100,'Pickle relish hamburger','PICKLE RELISH HAMBURGER',,,,,0,,6.25,2.44,3.37,3.57 -11959,1100,'Arugula raw','ARUGULA RAW',,,'Y','Roots stems and yellowed leaves',40,'Eruca sativa',6.25,2.44,8.37,3.57 -11960,1100,'Carrots baby raw','CARROTS BABY RAW',,,,,0,'Daucus carota',6.25,2.78,8.37,3.84 -11961,1100,'Hearts of palm canned','HEARTS OF PALM CANNED',,,,,0,,6.25,2.44,8.37,3.57 -11962,1100,'Peppers hot chile sun-dried','PEPPERS HOT CHILE SUN-DRIED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11963,1100,'Nopales raw','NOPALES RAW',,,'Y','Spines and dark spots',4,'Nopalea cochenillifera',6.25,2.44,8.37,3.57 -11964,1100,'Nopales cooked without salt','NOPALES CKD WO/SALT',,,'Y',,0,,6.25,2.44,8.37,3.57 -11965,1100,'Cauliflower green raw','CAULIFLOWER GREEN RAW',,,'Y','Leaf stalks core and trimmings',39,'Brassica oleracea (Botrytis group)',6.25,2.44,8.37,3.57 -11967,1100,'Cauliflower green cooked no salt added','CAULIFLOWER GRN CKD NO SALT ADDED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11968,1100,'Cauliflower green cooked with salt','CAULIFLOWER GRN CKD W/ SALT',,,,,0,,6.25,2.44,8.37,3.57 -11969,1100,'Broccoli chinese cooked','BROCCOLI CHINESE COOKED',,,'Y',,0,,6.25,2.44,8.37,3.57 -11970,1100,'Cabbage napa cooked','CABBAGE NAPA COOKED',,,,,0,'Brassica oleracea',6.25,2.44,8.37,3.57 -11972,1100,'Lemon grass (citronella) raw','LEMON GRASS (CITRONELLA) RAW',,,,'Tough stem',35,'Cymbopogon citratus',6.25,2.44,8.37,3.57 -11973,1100,'Beans fava in pod raw','BEANS FAVA IN POD RAW',,,,'Ends',3,'Vicia faba',6.25,2.44,8.37,3.57 -11974,1100,'Grape leaves raw','GRAPE LEAVES RAW',,,'Y','Tough stems',5,'Vitis vinifera',6.25,2.44,8.37,3.57 -11975,1100,'Grape leaves canned','GRAPE LEAVES CND',,,,,0,,6.25,2.44,8.37,3.57 -11976,1100,'Pepper banana raw','PEPPER BANANA RAW',,,'Y','Stem ends seeds and core',18,'Capsicum annuum',6.25,2.44,8.37,3.57 -11977,1100,'Peppers serrano raw','PEPPERS SERRANO RAW',,,'Y','Stems',3,'Capsicum annuum',6.25,2.44,8.37,3.57 -11978,1100,'Peppers ancho dried','PEPPERS ANCHO DRIED',,,,,0,,6.25,2.44,8.37,3.57 -11979,1100,'Peppers jalapeno raw','PEPPERS JALAPENO RAW',,,'Y','Stems and seeds',8,'Capsicum annuum',6.25,2.44,8.37,3.57 -11980,1100,'Peppers chili green canned','PEPPERS CHILI GRN CND',,,,,0,,6.25,2.44,8.37,3.57 -11981,1100,'Peppers hungarian raw','PEPPERS HUNGARIAN RAW',,,,'Stems',12,,6.25,2.44,8.37,3.57 -11982,1100,'Peppers pasilla dried','PEPPERS PASILLA DRIED',,,,'Stems',6,,6.25,2.44,8.37,3.57 -11983,1100,'Pickles chowchow with cauliflower onion mustard sweet','PICKLES CHOWCHOW W/CAULIFLOWER ONION MUSTARD SWT',,,'Y',,0,,,,, -11984,1100,'Epazote raw','EPAZOTE RAW',,,,,0,'Chenopodium ambrosiodes',6.25,2.44,8.37,3.57 -11985,1100,'Fireweed leaves raw','FIREWEED LEAVES RAW',,,,'Stems and flowers',65,'Epilobium angustifolium',6.25,2.44,8.37,3.57 -11986,1100,'Malabar spinach cooked','MALABAR SPINACH COOKED',,,,'Stems',30,,6.25,2.44,8.37,3.57 -11987,1100,'Mushrooms oyster raw','MUSHROOMS OYSTER RAW',,,,'Stems',11,'Pleurotus ostreatus',6.25,2.62,8.37,3.48 -11988,1100,'Fungi Cloud ears dried','FUNGI CLOUD EARS DRIED',,,,,0,,6.25,2.62,8.37,3.48 -11989,1100,'Mushrooms straw canned drained solids','MUSHROOMS STRAW CND DRND SOL',,,,,0,'Volvariella volvace',6.25,2.62,8.37,3.48 -11990,1100,'Wasabi root raw','WASABI ROOT RAW',,,,'Peel',23,'Wasabia japonica',6.25,2.78,8.37,3.84 -11991,1100,'Yautia (tannier) raw','YAUTIA (TANNIER) RAW',,,,'Peel',14,'Xanthosoma sagittifolium',6.25,2.78,8.37,3.84 -11992,1100,'Mushrooms white microwaved','MUSHROOMS WHITE MICROWAVED',,,,,0,'Agaricus bisporus',6.25,2.62,8.37,3.48 -11993,1100,'Mushrooms maitake raw','MUSHROOMS MAITAKE RAW',,,,,0,'Grifola frondosa',6.25,2.62,8.37,3.48 -11994,1100,'Broccoli chinese raw','BROCCOLI CHINESE RAW','gai-lan kai-lan',,'Y','Base and damaged leaves',12,' Brassica oleracea var. alboglabra',6.25,2.44,8.37,3.57 -11995,1100,'Fiddlehead ferns raw','FIDDLEHEAD FERNS RAW',,,,,,'Matteuccia struthioreris',6.25,2.44,8.37,3.57 -11996,1100,'Fiddlehead ferns frozen unprepared','FIDDLEHEAD FERNS FRZ UNPREP',,,,,0,,6.25,2.44,8.37,3.57 -11998,1100,'Mushrooms portabella exposed to ultraviolet light raw','MUSHROOMS PORTABELLA EXPOSED TO ULTRAVIOLET LT RAW','portobella',,,'Trimmings',3,,6.25,2.62,8.37,3.48 -12001,1200,'Seeds breadfruit seeds raw','BREADFRUIT SEEDS RAW',,,,'Shells',32,'Artocarpus altilis',5.30,3.47,8.37,4.07 -12003,1200,'Seeds breadfruit seeds boiled','BREADFRUIT SEEDS BOILED',,,,'Soft shells',64,,5.30,3.47,8.37,4.07 -12004,1200,'Seeds breadnut tree seeds raw','SEEDS BREADNUT TREE SEEDS RAW',,,,,0,'Brosimum alicastrum',5.30,3.47,8.37,4.07 -12005,1200,'Seeds breadnut tree seeds dried','SEEDS BREADNUT TREE SEEDS DRIED',,,,,0,,5.30,3.47,8.37,4.07 -12006,1200,'Seeds chia seeds dried','CHIA SEEDS DRIED',,,,,0,'Salvia hispanica',5.30,3.47,8.37,4.07 -12007,1200,'Seeds cottonseed flour partially defatted (glandless)','COTTONSEED FLR PART DEFATTED (GLANDLESS)',,,,,0,,5.30,3.47,8.37,4.07 -12008,1200,'Seeds cottonseed flour low fat (glandless)','COTTONSEED FLR LOFAT (GLANDLESS)',,,,,0,,5.30,3.47,8.37,4.07 -12011,1200,'Seeds cottonseed meal partially defatted (glandless)','COTTONSEED MEAL PART DEFATTED (GLANDLESS)',,,,,0,,5.30,3.47,8.37,4.07 -12012,1200,'Seeds hemp seed hulled','SEEDS HEMP SD HULLED',,,,,0,'Cannabis sativa L.',5.30,3.47,8.37,4.07 -12013,1200,'Seeds lotus seeds dried','LOTUS SEEDS DRIED',,,,,0,,5.30,3.47,8.37,4.07 -12014,1200,'Seeds pumpkin and squash seed kernels dried','PUMPKIN&SQUASH SD KRNLS DRIED','pepitas',,'Y','Hulls',26,,5.30,3.47,8.37,4.07 -12016,1200,'Seeds pumpkin and squash seed kernels roasted without salt','PUMPKIN&SQUASH SD KRNLS RSTD WO/SALT','pepitas',,'Y',,0,,5.30,3.47,8.37,4.07 -12021,1200,'Seeds safflower seed kernels dried','SAFFLOWER SD KRNLS DRIED',,,,'Hulls',49,'Carthamus tinctorius',5.30,3.47,8.37,4.07 -12022,1200,'Seeds safflower seed meal partially defatted','SAFFLOWER SD MEAL PART DEFATTED',,,,,0,,5.30,3.47,8.37,4.07 -12023,1200,'Seeds sesame seeds whole dried','SESAME SEEDS WHOLE DRIED',,,'Y',,0,'Sesamum indicum',5.30,3.47,8.37,4.07 -12024,1200,'Seeds sesame seeds whole roasted and toasted','SESAME SEEDS WHL RSTD&TSTD',,,,,0,,5.30,3.47,8.37,4.07 -12029,1200,'Seeds sesame seed kernels toasted without salt added (decorticated)','SESAME SD KRNLS TSTD WO/SALT (DECORT)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12032,1200,'Seeds sesame flour partially defatted','SESAME FLR PART DEFATTED',,,,,0,,5.30,3.47,8.37,4.07 -12033,1200,'Seeds sesame flour low-fat','SESAME FLOUR LOW-FAT',,,,,0,,5.30,3.47,8.37,4.07 -12034,1200,'Seeds sesame meal partially defatted','SESAME MEAL PART DEFATTED',,,,,0,,5.30,3.47,8.37,4.07 -12036,1200,'Seeds sunflower seed kernels dried','SUNFLOWER SD KRNLS DRIED',,,'Y','Hulls',46,'Helianthus annuus',5.30,3.47,8.37,4.07 -12037,1200,'Seeds sunflower seed kernels dry roasted without salt','SUNFLOWER SD KRNLS DRY RSTD WO/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12038,1200,'Seeds sunflower seed kernels oil roasted without salt','SUNFLOWER SD KRNLS OIL RSTD WO/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12039,1200,'Seeds sunflower seed kernels toasted without salt','SUNFLOWER SD KRNLS TSTD WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12040,1200,'Seeds sunflower seed butter without salt','SUNFLOWER SD BUTTER WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12041,1200,'Seeds sunflower seed flour partially defatted','SUNFLOWER SD FLR PART DEFATTED',,,,,0,,5.30,3.47,8.37,4.07 -12058,1200,'Nuts acorns raw','ACORNS RAW',,,,'Shells',38,'Quercus spp.',5.30,3.47,8.37,4.07 -12059,1200,'Nuts acorns dried','ACORNS DRIED',,,,'Shells',38,,5.30,3.47,8.37,4.07 -12060,1200,'Nuts acorn flour full fat','ACORN FLOUR FULL FAT',,,,,0,,5.30,3.47,8.37,4.07 -12061,1200,'Nuts almonds','ALMONDS',,,'Y','Shells',60,'Prunus dulcis',5.18,3.47,8.37,4.07 -12062,1200,'Nuts almonds blanched','ALMONDS BLANCHED',,,'Y',,0,,5.18,3.47,8.37,4.07 -12063,1200,'Nuts almonds dry roasted without salt added','ALMONDS DRY RSTD WO/SALT','Includes USDA commodity food A255 A263',,'Y',,0,,5.18,3.47,8.37,4.07 -12065,1200,'Nuts almonds oil roasted without salt added','ALMONDS OIL RSTD WO/SALT',,,'Y',,0,,5.18,3.47,8.37,4.07 -12071,1200,'Nuts almond paste','ALMOND PASTE',,,'Y',,0,,5.18,3.47,8.37,4.07 -12077,1200,'Nuts beechnuts dried','BEECHNUTS DRIED',,,,'Shells',39,'Fagus spp.',5.30,3.47,8.37,4.07 -12078,1200,'Nuts brazilnuts dried unblanched','BRAZILNUTS DRIED UNBLANCHED','brazil nuts',,'Y','Shells',49,'Bertholletia excelsa',5.46,3.47,8.37,4.07 -12084,1200,'Nuts butternuts dried','BUTTERNUTS DRIED',,,,'Shells',73,'Juglans cinerea',5.30,3.47,8.37,4.07 -12085,1200,'Nuts cashew nuts dry roasted without salt added','CASHEW NUTS DRY RSTD WO/SALT',,,'Y',,0,'Anacardium occidentale',5.30,3.47,8.37,4.07 -12086,1200,'Nuts cashew nuts oil roasted without salt added','CASHEW NUTS OIL RSTD WO/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12087,1200,'Nuts cashew nuts raw','NUTS CASHEW NUTS RAW',,,,,,'Anacardium occidentale',5.30,3.47,8.37,4.07 -12088,1200,'Nuts cashew butter plain without salt added','CASHEW BUTTER PLN WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12093,1200,'Nuts chestnuts chinese raw','CHESTNUTS CHINESE RAW',,,,'Shells',16,'Castanea mollissima',5.30,3.47,8.37,4.07 -12094,1200,'Nuts chestnuts chinese dried','CHESTNUTS CHINESE DRIED',,,,,0,,5.30,3.47,8.37,4.07 -12095,1200,'Nuts chestnuts chinese boiled and steamed','CHESTNUTS CHINESE BLD&STMD',,,,,0,,5.30,3.47,8.37,4.07 -12096,1200,'Nuts chestnuts chinese roasted','CHESTNUTS CHINESE ROASTED',,,,'Shells',25,,5.30,3.47,8.37,4.07 -12097,1200,'Nuts chestnuts european raw unpeeled','CHESTNUTS EUROPEAN RAW UNPEELED',,,,'Shells',26,'Castanea sativa',5.30,3.47,8.37,4.07 -12098,1200,'Nuts chestnuts european raw peeled','CHESTNUTS EUROPEAN RAW PEELED',,,,,0,,5.30,3.47,8.37,4.07 -12099,1200,'Nuts chestnuts european dried unpeeled','CHESTNUTS EUROPEAN DRIED UNPEELED',,,,'Shells',20,,5.30,3.47,8.37,4.07 -12100,1200,'Nuts chestnuts european dried peeled','CHESTNUTS EUROPEAN DRIED PEELED',,,,,0,,5.30,3.47,8.37,4.07 -12101,1200,'Nuts chestnuts european boiled and steamed','CHESTNUTS EUROPEAN BLD&STMD',,,,,0,,5.30,3.47,8.37,4.07 -12104,1200,'Nuts coconut meat raw','COCONUT MEAT RAW',,,'Y','Shells (brown) skin water',48,'Cocos nucifera',5.30,3.47,8.37,4.07 -12108,1200,'Nuts coconut meat dried (desiccated) not sweetened','COCONUT MEAT DRIED (DESICCATED) NOT SWTND',,,'Y',,0,,5.30,3.47,8.37,4.07 -12109,1200,'Nuts coconut meat dried (desiccated) sweetened flaked packaged','COCONUT MEAT DRIED (DESICCATED) SWTND FLAKED PACKAGED',,,'Y',,0,,5.30,3.47,8.37,4.07 -12110,1200,'Nuts coconut meat dried (desiccated) sweetened flaked canned','COCONUT MEAT DRIED (DESICCATED) SWTND FLAKED CND',,,,,0,,5.30,3.47,8.37,4.07 -12114,1200,'Nuts coconut meat dried (desiccated) toasted','COCONUT MEAT DRIED (DESICCATED) TSTD',,,,,0,,5.30,3.47,8.37,4.07 -12115,1200,'Nuts coconut cream raw (liquid expressed from grated meat)','COCONUT CRM RAW (LIQ EXPRESSED FROM GRATED MEAT)',,,,,0,,5.30,3.47,8.37,4.07 -12116,1200,'Nuts coconut cream canned sweetened','NUTS COCNT CRM CND SWTND',,,'Y',,0,,5.30,3.47,8.37,4.07 -12117,1200,'Nuts coconut milk raw (liquid expressed from grated meat and water)','COCONUT MILK RAW (LIQ EXPRESSED FROM GRATED MEAT&H2O)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12118,1200,'Nuts coconut milk canned (liquid expressed from grated meat and water)','COCONUT MILK CND (LIQ EXPRESSED FROM GRATED MEAT&H2O)',,,,,0,,5.30,3.47,8.37,4.07 -12119,1200,'Nuts coconut water (liquid from coconuts)','COCONUT H2O (LIQ FROM COCONUTS)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12120,1200,'Nuts hazelnuts or filberts','HAZELNUTS OR FILBERTS',,,'Y','Shells',59,'Corylus spp.',5.30,3.47,8.37,4.07 -12121,1200,'Nuts hazelnuts or filberts blanched','HAZELNUTS OR FILBERTS BLANCHED',,,,,0,,5.30,3.47,8.37,4.07 -12122,1200,'Nuts hazelnuts or filberts dry roasted without salt added','HAZELNUTS OR FILBERTS DRY RSTD WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12127,1200,'Nuts ginkgo nuts raw','GINKGO NUTS RAW',,,,'Shells',24,'Ginkgo biloba',5.30,3.47,8.37,4.07 -12128,1200,'Nuts ginkgo nuts dried','GINKGO NUTS DRIED',,,,'Shells',24,,5.30,3.47,8.37,4.07 -12129,1200,'Nuts ginkgo nuts canned','GINKGO NUTS CANNED',,,,'Liquid',41,,5.30,3.47,8.37,4.07 -12130,1200,'Nuts hickorynuts dried','HICKORYNUTS DRIED',,,,'Shells',68,'Carya spp.',5.30,3.47,8.37,4.07 -12131,1200,'Nuts macadamia nuts raw','MACADAMIA NUTS RAW',,,,'Shells',69,'Macadamia integrifolia M. tetraphylla',5.30,3.47,8.37,4.07 -12132,1200,'Nuts macadamia nuts dry roasted without salt added','MACADAMIA NUTS DRY RSTD WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12135,1200,'Nuts mixed nuts dry roasted with peanuts without salt added','MIXED NUTS DRY RSTD W/PNUTS WO/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12136,1200,'Nuts mixed nuts dry roasted with peanuts salt added PLANTERS pistachio blend','NUTS MXD NUTS DRY RSTD W/PNUTS SALT ADD PLANTERS PSTACH BLND',,'Planters- Kraft Foods Group',,,0,,5.30,3.47,8.37,4.07 -12137,1200,'Nuts mixed nuts oil roasted with peanuts without salt added','MIXED NUTS OIL RSTD W/PNUTS WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12138,1200,'Nuts mixed nuts oil roasted without peanuts without salt added','MIXED NUTS OIL RSTD WO/PNUTS WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12140,1200,'Nuts formulated wheat-based unflavored with salt added','FORMULATED WHEAT-BASED UNFLAVORED W/SALT',,,,,0,,5.80,3.59,8.37,3.78 -12141,1200,'Nuts mixed nuts dry roasted with peanuts salt added CHOSEN ROASTER','NUTS MXD NUTS DRY RSTD W/ PNUTS SALT ADDED CHOSEN ROASTER',,'Chosen Roaster',,,0,,6.25,3.47,8.37,4.07 -12142,1200,'Nuts pecans','PECANS',,,'Y','Shells',47,'Carya illinoinensis',5.30,3.47,8.37,4.07 -12143,1200,'Nuts pecans dry roasted without salt added','PECANS DRY RSTD WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12144,1200,'Nuts pecans oil roasted without salt added','PECANS OIL RSTD WO/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12145,1200,'Nuts pilinuts dried','NUTS PILINUTS DRIED',,,,'Shells',81,'Canarium ovatum',5.30,3.47,8.37,4.07 -12147,1200,'Nuts pine nuts dried','NUTS PINE NUTS DRIED',,,'Y','Shells',23,'Pinus spp.',5.30,3.47,8.37,4.07 -12149,1200,'Nuts pine nuts pinyon dried','PINE NUTS PINYON DRIED','pinon',,,'Shells',43,'Pinus edulis',5.30,3.47,8.37,4.07 -12151,1200,'Nuts pistachio nuts raw','PISTACHIO NUTS RAW',,,,'Shells',47,'Pistacia vera',5.30,3.47,8.37,4.07 -12152,1200,'Nuts pistachio nuts dry roasted without salt added','PISTACHIO NUTS DRY RSTD WO/SALT',,,'Y','Shells',47,,5.30,3.47,8.37,4.07 -12154,1200,'Nuts walnuts black dried','WALNUTS BLACK DRIED',,,'Y','Shells',76,'Juglans nigra',5.30,3.47,8.37,4.07 -12155,1200,'Nuts walnuts english','WALNUTS ENGLISH',,,'Y','Shells',55,'Juglans regia',5.30,3.47,8.37,4.07 -12156,1200,'Nuts walnuts glazed','NUTS WALNUTS GLAZED',,,,,0,,6.25,,, -12157,1200,'Nuts walnuts dry roasted with salt added','NUTS WALNUTS DRY RSTD W/ SALT ADDED',,,'Y',,0,,,,, -12158,1200,'Seeds breadfruit seeds roasted','BREADFRUIT SEEDS ROASTED',,,,,0,,5.30,3.47,8.37,4.07 -12160,1200,'Seeds cottonseed kernels roasted (glandless)','COTTONSEED KRNLS RSTD (GLANDLESS)',,,,,0,'Gossypium spp.',5.30,3.47,8.37,4.07 -12163,1200,'Seeds pumpkin and squash seeds whole roasted without salt','PUMPKIN&SQUASH SEEDS WHL RSTD WO/SALT',,,,,0,'Cucurbita spp.',5.30,3.47,8.37,4.07 -12166,1200,'Seeds sesame butter tahini from roasted and toasted kernels (most common type)','SESAME BUTTER TAHINI FROM RSTD&TSTD KRNLS (MOST COMMON TYPE)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12167,1200,'Nuts chestnuts european roasted','CHESTNUTS EUROPEAN RSTD',,,'Y','Shells and skins',37,,5.30,3.47,8.37,4.07 -12169,1200,'Seeds sesame butter paste','SESAME BUTTER PASTE',,,,,0,,5.30,3.47,8.37,4.07 -12170,1200,'Seeds sesame flour high-fat','SESAME FLOUR HIGH-FAT',,,,,0,,5.30,3.47,8.37,4.07 -12171,1200,'Seeds sesame butter tahini from unroasted kernels (non-chemically removed seed coat)','SESAME BUTTER TAHINI FROM UNROASTED KRNLS',,,,,0,,5.30,3.47,8.37,4.07 -12174,1200,'Seeds watermelon seed kernels dried','WATERMELON SD KRNLS DRIED',,,,'Hard seed coat',63,'Citrullus lanatus',5.30,3.47,8.37,4.07 -12175,1200,'Nuts chestnuts japanese dried','CHESTNUTS JAPANESE DRIED',,,,'Shells',34,,5.30,3.47,8.37,4.07 -12176,1200,'Nuts coconut milk frozen (liquid expressed from grated meat and water)','COCONUT MILK FRZ (LIQ EXPRESSED FROM GRATED MEAT&H2O)',,,,,0,,5.30,3.47,8.37,4.07 -12177,1200,'Nuts coconut meat dried (desiccated) creamed','COCONUT MEAT DRIED (DESICCATED) CRMD',,,,,0,,5.30,3.47,8.37,4.07 -12179,1200,'Nuts coconut meat dried (desiccated) sweetened shredded','COCONUT MEAT DRIED (DESICCATED) SWTND SHREDDED',,,'Y',,0,,5.30,3.47,8.37,4.07 -12193,1200,'Seeds sisymbrium sp. seeds whole dried','SISYMBRIUM SP. SEEDS WHL DRIED',,,,,0,'Sisymbrium spp.',5.30,3.47,8.37,4.07 -12195,1200,'Nuts almond butter plain without salt added','ALMOND BUTTER PLN WO/SALT',,,,,0,,5.18,3.47,8.37,4.07 -12198,1200,'Seeds sesame butter tahini from raw and stone ground kernels','SESAME BUTTER TAHINI FROM RAW&STONE GROUND KRNLS',,,,,0,,5.30,3.47,8.37,4.07 -12200,1200,'Nuts formulated wheat-based all flavors except macadamia without salt','FORMULATED WHEAT-BASED ALL FLAVORS XCPT MACADAMIA WO/SALT',,,,,0,,5.80,3.59,8.37,3.78 -12201,1200,'Seeds sesame seed kernels dried (decorticated)','SESAME SD KRNLS DRIED (DECORT)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12202,1200,'Nuts chestnuts japanese raw','CHESTNUTS JAPANESE RAW',,,,'Shells',34,'Castanea crenata',5.30,3.47,8.37,4.07 -12203,1200,'Nuts chestnuts japanese boiled and steamed','CHESTNUTS JAPANESE BLD&STMD',,,,,0,,5.30,3.47,8.37,4.07 -12204,1200,'Nuts chestnuts japanese roasted','CHESTNUTS JAPANESE RSTD',,,,,0,,5.30,3.47,8.37,4.07 -12205,1200,'Seeds lotus seeds raw','LOTUS SEEDS RAW',,,,'Shells',47,'Nelumbo spp.',5.30,3.47,8.37,4.07 -12206,1200,'Nuts almonds honey roasted unblanched','ALMONDS HONEY RSTD UNBLANCHED',,,,,0,,5.18,3.47,8.37,4.07 -12220,1200,'Seeds flaxseed','SEEDS FLAXSEED',,,'Y',,0,'Linum usitatissimum',5.30,3.47,8.37,4.07 -12516,1200,'Seeds pumpkin and squash seed kernels roasted with salt added','PUMPKIN&SQUASH SD KRNLS RSTD W/SALT','pepitas',,'Y',,0,,5.30,3.47,8.37,4.07 -12529,1200,'Seeds sesame seed kernels toasted with salt added (decorticated)','SESAME SD KRNLS TSTD W/SALT (DECORT)',,,'Y',,0,,5.30,3.47,8.37,4.07 -12536,1200,'Seeds sunflower seed kernels from shell dry roasted with salt added','SEEDS SUNFLOWER SD KRNLS FROM SHELL DRY RSTD W/ SALT ADDED',,,,'Hulls',46,,5.30,3.47,8.37,4.07 -12537,1200,'Seeds sunflower seed kernels dry roasted with salt added','SUNFLOWER SD KRNLS DRY RSTD W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12538,1200,'Seeds sunflower seed kernels oil roasted with salt added','SUNFLOWER SD KRNLS OIL RSTD W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12539,1200,'Seeds sunflower seed kernels toasted with salt added','SUNFLOWER SD KRNLS TSTD W/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12540,1200,'Seeds sunflower seed butter with salt added (Includes foods for USDAs Food Distribution Program)','SUNFLOWER SD BUTTER W/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12563,1200,'Nuts almonds dry roasted with salt added','ALMONDS DRY RSTD W/SALT',,,'Y',,0,,5.18,3.47,8.37,4.07 -12565,1200,'Nuts almonds oil roasted with salt added','ALMONDS OIL RSTD W/SALT',,,'Y',,0,,5.18,3.47,8.37,4.07 -12567,1200,'Nuts almonds oil roasted with salt added smoke flavor','NUTS ALMONDS OIL RSTD W/ SALT ADDED SMOKE FLAVOR',,,,,0,,,,, -12585,1200,'Nuts cashew nuts dry roasted with salt added','CASHEW NUTS DRY RSTD W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12586,1200,'Nuts cashew nuts oil roasted with salt added','CASHEW NUTS OIL RSTD W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12588,1200,'Nuts cashew butter plain with salt added','CASHEW BUTTER PLN W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12632,1200,'Nuts macadamia nuts dry roasted with salt added','MACADAMIA NUTS DRY RSTD W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12635,1200,'Nuts mixed nuts dry roasted with peanuts with salt added','MIXED NUTS DRY RSTD W/PNUTS W/SALT',,,'Y',,0,,5.30,3.47,8.37,4.07 -12637,1200,'Nuts mixed nuts oil roasted with peanuts with salt added','NUTS MXD NUTS OIL RSTD W/ PNUTS W/ SALT ADDED',,,'Y',,0,,5.30,3.47,8.37,4.07 -12638,1200,'Nuts mixed nuts oil roasted without peanuts with salt added','NUTS MXD NUTS OIL RSTD WO/ PNUTS W/ SALT ADDED',,,'Y',,0,,5.30,3.47,8.37,4.07 -12643,1200,'Nuts pecans dry roasted with salt added','PECANS DRY RSTD W/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12644,1200,'Nuts pecans oil roasted with salt added','PECANS OIL RSTD W/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12652,1200,'Nuts pistachio nuts dry roasted with salt added','PISTACHIO NUTS DRY RSTD W/SALT',,,'Y','Shells',47,,5.30,3.47,8.37,4.07 -12663,1200,'Seeds pumpkin and squash seeds whole roasted with salt added','PUMPKIN&SQUASH SEEDS WHL RSTD W/SALT',,,,,0,,5.30,3.47,8.37,4.07 -12665,1200,'Nuts almonds oil roasted lightly salted','NUTS ALMONDS OIL RSTD LIGHTLY SALTED',,,,,0,,,,, -12695,1200,'Nuts almond butter plain with salt added','ALMOND BUTTER PLN W/SALT',,,'Y',,0,,5.18,3.47,8.37,4.07 -12698,1200,'Seeds sesame butter tahini type of kernels unspecified','SESAME BUTTER TAHINI KRNLS UNSPEC',,,,,0,,5.30,3.47,8.37,4.07 -12737,1200,'Nuts mixed nuts oil roasted with peanuts lightly salted','NUTS MXD NUTS OIL RSTD W/ PNUTS LIGHTLY SALTED',,,,,0,,5.30,3.47,8.37,4.07 -12738,1200,'Nuts mixed nuts oil roasted without peanuts lightly salted','NUTS MXD NUTS OIL RSTD WO/ PNUTS LIGHTLY SALTED',,,,,0,,,,, -13000,1300,'Beef grass-fed strip steaks lean only raw','BEEF GRASS-FED STRIP STEAKS LN RAW',,,,'23% Bone and connective tissue 11% Separable fat',34,,,,, -13001,1300,'Beef carcass separable lean and fat choice raw','BEEF CARCASS LN&FAT CHOIC RAW',,,,'Bone 19%',19,'Bos taurus',6.25,4.27,9.02,3.87 -13002,1300,'Beef carcass separable lean and fat select raw','BEEF CARCASS LN&FAT SEL RAW',,,,'Bone 20%',20,,6.25,4.27,9.02,3.87 -13019,1300,'Beef retail cuts separable fat raw','BEEF RTL CUTS FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -13020,1300,'Beef retail cuts separable fat cooked','BEEF RTL CUTS FAT CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -13023,1300,'Beef brisket whole separable lean only all grades raw','BEEF BRISKET WHL LN ALL GRDS RAW',,,,'Connective tissue 0.3% separable fat 30%',30,,6.25,4.27,9.02,3.87 -13047,1300,'Beef grass-fed ground raw','BEEF GRASS-FED GROUND RAW','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13055,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat select cooked braised','BEEF BRISKET FLAT HALF LN & FAT 1/8in FAT SEL CKD BRSD','URMIS #1623',,,,0,,6.25,4.27,9.02,3.87 -13065,1300,'Beef flank steak separable lean and fat trimmed to 0in fat choice raw','BEEF FLANK STEAK LN & FAT 0in FAT CHOIC RAW','URMIS #2399',,'Y',,0,,6.25,4.27,9.02,3.87 -13066,1300,'Beef flank steak separable lean and fat trimmed to 0in fat choice cooked braised','BEEF FLANK STEAK LN & FAT 0in FAT CHOIC CKD BRSD',,,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13067,1300,'Beef flank steak separable lean and fat trimmed to 0in fat choice cooked broiled','BEEF FLANK STEAK LN & FAT 0in FAT CHOIC CKD BRLD','URMIS #2399',,,,0,,6.25,4.27,9.02,3.87 -13068,1300,'Beef flank steak separable lean only trimmed to 0in fat choice raw','BEEF FLANK STEAK LN 0in FAT CHOIC RAW','URMIS #2399',,'Y','Bone and connective tissue 0.2% separable fat 3.6%',4,,6.25,4.27,9.02,3.87 -13069,1300,'Beef flank steak separable lean only trimmed to 0in fat choice cooked braised','BEEF FLANK STEAK LN 0in FAT CHOIC CKD BRSD','URMIS #2399',,'Y','Connective tissue 2% separable fat 6%',8,,6.25,4.27,9.02,3.87 -13070,1300,'Beef flank steak separable lean only trimmed to 0in fat choice cooked broiled','BEEF FLANK STEAK LN 0in FAT CHOIC CKD BRLD','URMIS #2399',,,'Separable fat',2,,6.25,4.27,9.02,3.87 -13095,1300,'Beef rib eye small end (ribs 10-12) separable lean and fat trimmed to 0in fat choice raw','BEEF RIB EYE SML END (RIBS 10-12) LN&FAT 0inFAT CHOIC RAW','ribeye Delmonico',,,'Connective tissue',4,,6.25,4.27,9.02,3.87 -13096,1300,'Beef rib eye small end (ribs 10-12) separable lean and fat trimmed to 0in fat choice cooked broiled','BF RIB EYE SML END (RIB 10-12) LN & FT 0in FAT CHOIC CKD BRLD','ribeye',,,'Bone and connective tissue',8,,6.25,4.27,9.02,3.87 -13097,1300,'Beef rib eye small end (ribs 10-12) separable lean only trimmed to 0in fat choice raw','BEEF RIB EYE SML END (RIBS 10-12) LN 0inFAT CHOIC RAW','ribeye Delmonico',,,'Connective tissue 4% separable fat 21%',25,,6.25,4.27,9.02,3.87 -13098,1300,'Beef rib eye small end (ribs 10-12) separable lean only trimmed to 0in fat choice cooked broiled','BEEF RIB EYE SML END (RIBS 10-12) LN 0inFAT CHOIC CKD BRLD','ribeye Delmonico',,,'Bone and connective tissue 7% sep fat 12%',19,,6.25,4.27,9.02,3.87 -13147,1300,'Beef rib shortribs separable lean and fat choice raw','BEEF RIB SHORTRIBS LN&FAT CHOIC RAW','URMIS #2074',,,'Bone',27,,6.25,4.27,9.02,3.87 -13148,1300,'Beef rib shortribs separable lean and fat choice cooked braised','BEEF RIB SHORTRIBS LN&FAT CHOIC CKD BRSD','URMIS #2074',,'Y','Bone',29,,6.25,4.27,9.02,3.87 -13149,1300,'Beef rib shortribs separable lean only choice raw','BEEF RIB SHORTRIBS LN ONLY CHOIC RAW','URMIS #2074',,,'Bone 27% separable fat 32%',59,,6.25,4.27,9.02,3.87 -13150,1300,'Beef rib shortribs separable lean only choice cooked braised','BEEF RIB SHORTRIBS LN CHOIC CKD BRSD','URMIS #2074',,'Y','Bone 29% separable fat 33%',62,,6.25,4.27,9.02,3.87 -13156,1300,'Beef round full cut separable lean only trimmed to 1/4in fat choice cooked broiled','BEEF RND FULL CUT LN 1/4inFAT CHOIC CKD BRLD',,,,'8% bone 9% separable fat',17,,6.25,4.27,9.02,3.87 -13158,1300,'Beef round full cut separable lean only trimmed to 1/4in fat select cooked broiled','BEEF RND FULL CUT LN 1/4inFAT SEL CKD BRLD',,,,'Bone 8% separable fat 9%',17,,6.25,4.27,9.02,3.87 -13165,1300,'Beef brisket flat half separable lean and fat trimmed to 0in fat choice cooked braised','BEEF BRISKET FLAT HALF LN & FAT 0in FAT CHOIC CKD BRSD','URMIS #2438',,,,0,,6.25,4.27,9.02,3.87 -13227,1300,'Beef shank crosscuts separable lean only trimmed to 1/4in fat choice raw','BEEF SHANK CROSSCUTS LN 1/4inFAT CHOIC RAW',,,,'Bone 34% separable fat 6%',40,,6.25,4.27,9.02,3.87 -13228,1300,'Beef shank crosscuts separable lean only trimmed to 1/4in fat choice cooked simmered','BEEF SHANK CROSSCUTS LN 1/4inFAT CHOIC CKD SIMMRD',,,,'Bone 37% separable fat 8%',45,,6.25,4.27,9.02,3.87 -13231,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat choice raw','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT CHOIC RAW','Porterhouse Steak URMIS # 2145',,,'Bone and heavy connective tissue 23% separable fat 12%',35,,6.25,4.27,9.02,3.87 -13232,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT CHOIC CKD GRILLED','Porterhouse Steak URMIS # 2145',,,'Bone and connective tissue 26% separable fat 12%',38,,6.25,4.27,9.02,3.87 -13235,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat choice raw','BEEF SHRT LOIN T-BONE STEAK BONE-IN LN 1/8in FAT CHOIC RAW','T-Bone Steak URMIS # 2184',,,'Bone and heavy connective tissue 25% separable fat 14%',39,,6.25,4.27,9.02,3.87 -13236,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF SHRT LN T-BONE STK BN-IN LN 1/8in FAT CHOIC CKD GRILLD','T-Bone Steak URMIS # 2184',,,'Bone and connective tissue 28% separable fat 14%',42,,6.25,4.27,9.02,3.87 -13284,1300,'Beef rib eye small end (ribs 10-12) separable lean only trimmed to 0in fat select raw','BEEF RIB EYE SML END (RIBS 10-12) LN 0in FAT SEL RAW',,,,'Bone and connective tissue and separable fat',37,,,,, -13285,1300,'Beef chuck under blade pot roast boneless separable lean only trimmed to 0in fat all grades cooked braised','BEEF CHUCK UND BL POT RST BNLESS LN 0in FAT ALL GRDS CKD','URMIS #1151 Beef Chuck Under Blade Pot Roast',,,'Connective tissue 4% seam fat 20%',24,,6.25,,, -13293,1300,'Beef chuck under blade pot roast or steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF CHK UND BL POT RST BNLESS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Under Blade Pot Roast or Steak URMIS #1151 URMIS #1158',,,'Connective tissue 6% seam fat 13%',19,,6.25,,, -13294,1300,'Beef chuck under blade pot roast or steak boneless separable lean only trimmed to 0in fat choice raw','BEEF CHCK UND BL POT RST OR STEAK BNLESS LN 0in FAT CHOIC RAW','URMIS #1151 URMIS #1158 Beef Chuck Under Blade Pot Roast or Steak',,,'Connective tissue 6% seam fat 14%',20,,6.25,,, -13317,1300,'Beef ground patties frozen cooked broiled','BEEF GROUND PATTIES FRZ CKD BRLD','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -13318,1300,'Beef variety meats and by-products brain raw','BEEF VAR MEATS&BY-PRODUCTS BRAIN RAW',,,,'Blood clots and membranes 22.45%',22,,6.25,4.27,9.02,3.87 -13319,1300,'Beef variety meats and by-products brain cooked pan-fried','BEEF VAR MEATS&BY-PRODUCTS BRAIN CKD PAN-FRIED',,,,,0,,6.25,4.27,9.02,3.87 -13320,1300,'Beef variety meats and by-products brain cooked simmered','BEEF VAR MEATS&BY-PRODUCTS BRAIN CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -13321,1300,'Beef variety meats and by-products heart raw','BEEF VAR MEATS&BY-PRODUCTS HEART RAW',,,,'Fat veins and connective tissue',29,,6.25,4.27,9.02,3.87 -13322,1300,'Beef variety meats and by-products heart cooked simmered','BEEF VAR MEATS&BY-PRODUCTS HEART CKD SIMMRD',,,'Y','Fat and valves 16.39%',16,,6.25,4.27,9.02,3.87 -13323,1300,'Beef variety meats and by-products kidneys raw','BEEF VAR MEATS&BY-PRODUCTS KIDNEYS RAW',,,,'Fat veins and connective tissue',16,,6.25,4.27,9.02,3.87 -13324,1300,'Beef variety meats and by-products kidneys cooked simmered','BEEF VAR MEATS&BY-PRODUCTS KIDNEYS CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -13325,1300,'Beef variety meats and by-products liver raw','BEEF VAR MEATS&BY-PRODUCTS LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -13326,1300,'Beef variety meats and by-products liver cooked braised','BEEF VAR MEATS & BY-PRODUCTS LIVER CKD BRSD',,,'Y',,0,,6.25,4.27,9.02,3.87 -13327,1300,'Beef variety meats and by-products liver cooked pan-fried','BEEF VAR MEATS&BY-PRODUCTS LIVER CKD PAN-FRIED',,,'Y',,0,,6.25,4.27,9.02,3.87 -13328,1300,'Beef variety meats and by-products lungs raw','BEEF VAR MEATS&BY-PRODUCTS LUNGS RAW',,,,'Blood clots and membranes',24,,6.25,4.27,9.02,3.87 -13329,1300,'Beef variety meats and by-products lungs cooked braised','BEEF VAR MEATS&BY-PRODUCTS LUNGS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13330,1300,'Beef variety meats and by-products mechanically separated beef raw','BEEF VAR MEATS&BY-PRODUCTS MECHANICALLY SEPARATED BF RAW',,,,,0,,6.25,4.27,9.02,3.87 -13331,1300,'Beef variety meats and by-products pancreas raw','BEEF VAR MEATS&BY-PRODUCTS PANCREAS RAW',,,,,0,,6.25,4.27,9.02,3.87 -13332,1300,'Beef variety meats and by-products pancreas cooked braised','BEEF VAR MEATS&BY-PRODUCTS PANCREAS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13333,1300,'Beef variety meats and by-products spleen raw','BEEF VAR MEATS&BY-PRODUCTS SPLEEN RAW',,,,,0,,6.25,4.27,9.02,3.87 -13334,1300,'Beef variety meats and by-products spleen cooked braised','BEEF VAR MEATS&BY-PRODUCTS SPLEEN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13335,1300,'Beef variety meats and by-products suet raw','BEEF VAR MEATS & BY-PRODUCTS SUET RAW',,,,,0,,6.25,4.27,9.02,3.87 -13337,1300,'Beef variety meats and by-products thymus raw','BEEF VAR MEATS&BY-PRODUCTS THYMUS RAW',,,,,0,,6.25,4.27,9.02,3.87 -13338,1300,'Beef variety meats and by-products thymus cooked braised','BEEF VAR MEATS&BY-PRODUCTS THYMUS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13339,1300,'Beef variety meats and by-products tongue raw','BEEF VAR MEATS&BY-PRODUCTS TONGUE RAW',,,,'Cartilage and connective tissue',16,,6.25,4.27,9.02,4.11 -13340,1300,'Beef variety meats and by-products tongue cooked simmered','BEEF VAR MEATS&BY-PRODUCTS TONGUE CKD SIMMRD',,,'Y','Skin and connective tissue 5.74%; Cartilage and connective tissue 10.35%',16,,6.25,4.27,9.02,3.87 -13341,1300,'Beef variety meats and by-products tripe raw','BEEF VAR MEATS&BY-PRODUCTS TRIPE RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -13342,1300,'Beef sandwich steaks flaked chopped formed and thinly sliced raw','BEEF SNDWCH STEAKS FLAKED CHOPD FORMED & THINLY SLICED RAW',,,'Y',,0,,,4.00,9.00,4.00 -13343,1300,'Beef brisket flat half separable lean only trimmed to 0in fat choice cooked braised','BEEF BRISKET FLAT HALF LN 0in FAT CHOIC CKD BRSD','URMIS #2438',,,'Separable fat',2,,6.25,4.27,9.02,3.87 -13344,1300,'Beef cured breakfast strips raw or unheated','BEEF CURED BRKFST STRIPS RAW OR UNHTD',,,,,0,,6.25,4.27,9.02,3.87 -13345,1300,'Beef cured breakfast strips cooked','BEEF CURED BRKFST STRIPS CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -13346,1300,'Beef cured corned beef brisket raw','BEEF CURED CORNED BF BRISKET RAW',,,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13347,1300,'Beef cured corned beef brisket cooked','BEEF CURED CORNED BF BRISKET CKD',,,'Y','Connective tissue',1,,6.25,4.27,9.02,3.87 -13348,0700,'Beef cured corned beef canned','BEEF CURED CORNED BF CND',,,'Y',,0,,6.25,4.27,9.02,3.87 -13349,1300,'Beef chuck under blade pot roast or steak boneless separable lean only trimmed to 0in fat select raw','BEEF CHK UND BLADE POT RST OR STK BNLESS LN 0in FAT SEL RAW','URMIS #1151 URMIS #1158 Beef Chuck Under Blade Pot Roast or Steak',,,'Connective tissue 6% seam fat 13%',19,,6.25,,, -13350,0700,'Beef cured dried','BEEF CURED DRIED',,,'Y',,0,,6.25,4.00,9.00,4.00 -13351,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat all grades cooked grilled','BEEF CHUCK UNDER BLADE CNTR STEAK BNLESS DENVER CUT LN 0in FA','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 1% seam fat 2%',3,,6.25,,, -13352,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat choice cooked grilled','BEEF CHUCK UNDER BLADE CNTR STEAK BNLESS DENVER CUT LN 0in FA','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 1% seam fat 2%',3,,6.25,,, -13353,0700,'Beef cured luncheon meat jellied','BEEF CURED LUNCHEON MEAT JELLIED',,,,,0,,6.25,4.27,9.02,3.87 -13354,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat select cooked grilled','BEEF CHK UND BL CNTR STK BNLESS DEN CUT LN 0in FA SEL CKD','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 1% seam fat 1%',2,,6.25,,, -13355,0700,'Beef cured pastrami','BEEF CURED PASTRAMI',,,'Y',,0,,6.25,4.27,9.02,3.87 -13356,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat all grades raw','BEEF CHK UNDBL CNTR STK BNLESS DENCUT LN 0in FA ALL GRD RAW','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 2% seam fat 3%',5,,6.25,,, -13357,0700,'Sausage beef cured cooked smoked','SAUSAGE BF CURED CKD SMOKED',,,,,0,,6.25,4.27,9.02,3.68 -13358,0700,'Beef chopped cured smoked','BEEF CHOPD CURED SMOKED',,,,,0,,6.25,4.27,9.02,3.68 -13359,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat choice raw','BEEF CHK UND BLCNTR STK BNLESS DEN CUT LN 0in FA CHOICE RAW','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 1% seam fat 3%',4,,6.25,,, -13361,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat all grades cooked','BEEF COMP OF RTL CUTS LN&FAT 0inFAT ALL GRDS CKD',,,'Y','No component data available',,,6.25,4.27,9.02,3.87 -13362,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat choice cooked','BEEF COMP OF RTL CUTS LN&FAT 0inFAT CHOIC CKD',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13363,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat select cooked','BEEF COMP OF RTL CUTS LN&FAT 0inFAT SEL CKD',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13364,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat all grades cooked','BEEF COMP OF RTL CUTS LN 0in FAT ALL GRDS CKD',,,'Y','No component data available',,,6.25,4.27,9.02,3.87 -13365,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat choice cooked','BEEF COMP OF RTL CUTS LN 0inFAT CHOIC CKD',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13366,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat select cooked','BEEF COMP OF RTL CUTS LN 0inFAT SEL CKD',,,,'Component data unavailable',,,6.25,4.27,9.02,3.87 -13367,1300,'Beef brisket whole separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF BRISKET WHL LN&FAT 0inFAT ALL GRDS CKD BRSD',,,'Y','Connective tissue',1,,6.25,4.27,9.02,3.87 -13368,1300,'Beef brisket whole separable lean only trimmed to 0in fat all grades cooked braised','BEEF BRISKET WHL LN 0inFAT ALL GRDS CKD BRSD',,,'Y','1% connective tissue 16% separable fat',17,,6.25,4.27,9.02,3.87 -13369,1300,'Beef brisket flat half separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF BRISKET FLAT HALF LN&FAT 0inFAT ALL GRDS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13370,1300,'Beef brisket flat half separable lean only trimmed to 0in fat all grades cooked braised','BEEF BRISKET FLAT HALF LN 0inFAT ALL GRDS CKD BRSD',,,,'Separable fat',2,,6.25,4.27,9.02,3.87 -13371,1300,'Beef brisket point half separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF BRISKET POINT HALF LN&FAT 0inFAT ALL GRDS CKD BRSD','URMIS #1628',,,'Connective tissue 1%',1,,6.25,4.27,9.02,3.87 -13372,1300,'Beef brisket point half separable lean only trimmed to 0in fat all grades cooked braised','BEEF BRISKET POINT HALF LN 0inFAT ALL GRDS CKD BRSD',,,,'Connective tissue 1% separable fat 24%',25,,6.25,4.27,9.02,3.87 -13373,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHUCK ARM POT RST LN&FAT 0inFAT ALL GRDS CKD BRSD',,,,'Bone and connective tissue',19,,6.25,4.27,9.02,3.87 -13375,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHUCK ARM POT RST LN & FAT 0in FAT SEL CKD BRSD','URMIS #1049',,,'Bone and connective tissue',28,,6.25,4.27,9.02,3.87 -13377,1300,'Beef chuck arm pot roast separable lean only trimmed to 0in fat choice cooked braised','BEEF CHUCK ARM POT RST LN 0inFAT CHOIC CKD BRSD','URMIS #1864',,,'Bone and connective tissue 23% sep fat 17%',40,,6.25,4.27,9.02,3.87 -13378,1300,'Beef chuck arm pot roast separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK ARM POT RST LN 0inFAT SEL CKD BRSD','URMIS #1049',,,'Bone and connective tissue 29% sep fat 13%',42,,6.25,4.27,9.02,3.87 -13379,1300,'Beef chuck blade roast separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHUCK BLADE RST LN&FAT 0inFAT ALL GRDS CKD BRSD','Top Blade Steak',,,'Bone',25,,6.25,4.27,9.02,3.87 -13380,1300,'Beef chuck under blade pot roast boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF CHCK UNDR BLDE POT RST BNLS LN & FAT 0in CHC CKD BRSD','URMIS #1151',,,'Connective tissue 4%',4,,6.25,4.27,9.02,3.87 -13381,1300,'Beef chuck under blade pot roast boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHCK UNDR BLDE POT RST BNLS LN & FAT 0in SEL CKD BRSD','URMIS #1151',,,'Connective tissue 4%',40,,6.25,4.27,9.02,3.87 -13382,1300,'Beef chuck blade roast separable lean only trimmed to 0in fat all grades cooked braised','BEEF CHUCK BLADE RST LN 0inFAT ALL GRDS CKD BRSD','Top Blade Steak',,'Y','25% bone 14% separable fat',39,,6.25,4.27,9.02,3.87 -13383,1300,'Beef chuck under blade pot roast boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF CHK UNDER BLADE POT RST BNLESS LN 0in FAT CHOIC CKD BRSD','Beef Chuck Under Blade Pot Roast URMIS #1151',,,'Connective tissue 3% seam fat 21%',24,,6.25,4.27,9.02,3.87 -13384,1300,'Beef chuck under blade pot roast boneless separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK UNDER BLADE POT RST BNLESS LN 0in FAT SEL CKD BRSD','Beef Chuck Under Blade Pot Roast URMIS #1151',,,'Connective tissue 4% seam fat 19%',23,,6.25,4.27,9.02,3.87 -13386,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 0inFAT CHOIC CKD RSTD',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13387,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 0in fat select cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 0inFAT SEL CKD RSTD',,,,'Bone',17,,6.25,4.27,9.02,3.87 -13388,1300,'Beef rib large end (ribs 6-9) separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN 0inFAT ALL GRDS CKD RSTD',,,'Y','16% bone 22% separable fat',38,,6.25,4.27,9.02,3.87 -13389,1300,'Beef rib large end (ribs 6-9) separable lean only trimmed to 0in fat choice cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN 0inFAT CHOIC CKD RSTD',,,,'Bone 16% separable fat 24%',40,,6.25,4.27,9.02,3.87 -13390,1300,'Beef rib large end (ribs 6-9) separable lean only trimmed to 0in fat select cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN 0inFAT SEL CKD RSTD',,,,'Bone 17% separable fat 20%',37,,6.25,4.27,9.02,3.87 -13391,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 0inFAT ALL GRDS CKD BRLD',,,,'Bone and connective tissue',23,,6.25,4.27,9.02,3.87 -13392,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 0in fat choice cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 0inFAT CHOIC CKD BRLD',,,,'Bone',22,,6.25,4.27,9.02,3.87 -13393,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 0in fat select cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 0inFAT SEL CKD BRLD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -13394,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 0in fat all grades cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 0inFAT ALL GRDS CKD BRLD',,,,'Bone and connective tissue 7.8% separable fat 10.6%',37,,6.25,4.27,9.02,3.87 -13395,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 0in fat choice cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 0inFAT CHOIC CKD BRLD',,,,'Bone 22% separable fat 15%',37,,6.25,4.27,9.02,3.87 -13396,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 0in fat select cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 0inFAT SEL CKD BRLD',,,,'Bone 24% separable fat 13%',37,,6.25,4.27,9.02,3.87 -13398,1300,'Beef round bottom round steak separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF RND BTTM RND STEAK LN & FAT 0in FAT ALL GRDS CKD BRSD','Cube Steak',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13399,1300,'Beef round bottom round roast separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF RND BTTM RND RST LN & FAT 0in FAT ALL GRDS CKD RSTD','Cube Steak',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13401,1300,'Beef round bottom round steak separable lean and fat trimmed to 0in fat choice cooked braised','BEEF RND BTTM RND STEAK LN & FAT 0in FAT CHOIC CKD BRSD','URMIS #2279 Cube Steak',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13402,1300,'Beef round bottom round roast separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF RND BTTM RND RST LN & FAT 0in FAT CHOIC CKD RSTD','URMIS #2279 Cube Steak',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13404,1300,'Beef round bottom round steak separable lean and fat trimmed to 0in fat select cooked braised','BEEF RND BTTM RND STEAK LN & FAT 0in FAT SEL CKD BRSD','URMIS #1464 Cube Steak',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13405,1300,'Beef round bottom round roast separable lean and fat trimmed to 0in fat select cooked roasted','BEEF RND BTTM RND RST LN & FAT 0in FAT SEL CKD RSTD','URMIS #1464 Cube Steak',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13407,1300,'Beef round bottom round steak separable lean only trimmed to 0in fat all grades cooked braised','BEEF RND BTTM RND STEAK LN 0in FAT ALL GRDS CKD BRSD','Cube Steak',,,'Bone and connective tissue 1.8% separable fat 1.8%',4,,6.25,4.27,9.02,3.87 -13408,1300,'Beef round bottom round roast separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RND BTTM RND RST LN 0in FAT ALL GRDS CKD RSTD','Cube Steak',,,'Bone and connective tissue 1% sep fat 2%',3,,6.25,4.27,9.02,3.87 -13410,1300,'Beef round bottom round steak separable lean only trimmed to 0in fat choice cooked braised','BEEF RND BTTM RND STEAK LN 0in FAT CHOIC CKD BRSD','URMIS #2279 Cube Steak',,,'Bone and connective tissue 1% sep fat 1%',2,,6.25,4.27,9.02,3.87 -13411,1300,'Beef round bottom round roast separable lean only trimmed to 0in fat choice cooked roasted','Beef bottom round roast lean only 0in fat choice roasted','URMIS #2279 Cube Steak',,,'Bone and connective tissue 1% sep fat 3%',4,,,4.27,9.02,3.87 -13413,1300,'Beef round bottom round steak separable lean only trimmed to 0in fat select cooked braised','BEEF RND BTTM RND STEAK LN 0in FAT SEL CKD BRSD','URMIS #1464 Cube Steak',,,'Bone and connective tissue 3% sep fat 2%',5,,6.25,4.27,9.02,3.87 -13414,1300,'Beef round bottom round roast separable lean only trimmed to 0in fat select cooked roasted','BEEF RND BTTM RND RST LN 0in FAT SEL CKD RSTD','URMIS #1464',,,'Bone and connective tissue 1% sep fat 1%',2,,6.25,4.27,9.02,3.87 -13415,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF RND EYE OF RND RST BNLESS L & F 0in FAT A GRDS CKD RSTD','Eye of Round Roast',,,,0,,6.25,4.27,9.02,3.87 -13416,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF RND EYE OF RND RST BNLESS LN & FT 0in FAT CHOIC CKD RSTD','URMIS #2295 Eye of Round Roast',,,,0,,6.25,4.27,9.02,3.87 -13417,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat select cooked roasted','BEEF RND EYE OF RND RST BNLESS LN & FAT 0in FAT SEL CKD RSTD','URMIS #1480 Eye of Round Roast',,,,0,,6.25,4.27,9.02,3.87 -13418,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RND EYE OF RND RST BNLESS LN 0in FAT ALL GRDS CKD RSTD','Eye of Round Roast',,,'Connective tissue 2%',2,,6.25,4.27,9.02,3.87 -13419,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat choice cooked roasted','BEEF RND EYE OF RND RST BNLESS LN 0in FAT CHOIC CKD RSTD','URMIS #2295 Eye of Round Roast',,,'Bone and Conective tissue 3%',3,,6.25,4.27,9.02,3.87 -13420,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat select cooked roasted','BEEF RND EYE OF RND RST BNLESS LN 0in FAT SEL CKD RSTD','URMIS #1480 Eye of Round Roast',,,,0,,6.25,4.27,9.02,3.87 -13421,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF RND TIP RND RST LN & FAT 0in FAT ALL GRDS CKD RSTD','Cube steak',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13422,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF RND TIP RND RST LN & FAT 0in FAT CHOIC CKD RSTD','URMIS #2340 Cube Steak',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13423,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat select cooked roasted','BEEF RND TIP RND RST LN & FAT 0in FAT SEL CKD RSTD','URMIS #1525 Cube Steak',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13424,1300,'Beef round tip round roast separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RND TIP RND RST LN 0in FAT ALL GRDS CKD RSTD',,,'Y','Bone and connective tissue 4.0% separable fat 4.0%',8,,6.25,4.27,9.04,3.87 -13425,1300,'Beef round tip round roast separable lean only trimmed to 0in fat choice cooked roasted','BEEF RND TIP RND RST LN 0in FAT CHOIC CKD RSTD','URMIS # 2340 Cube Steak',,,'Bone and connective tissue 4% sep fat 3%',7,,6.25,4.27,9.02,3.87 -13426,1300,'Beef round tip round roast separable lean only trimmed to 0in fat select cooked roasted','BEEF RND TIP RND RST LN 0in FAT SEL CKD RSTD','URMIS # 1525 Cube Steak',,,'Bone and connective tissue 4% sep fat 5%',9,,6.25,,, -13428,1300,'Beef round top round separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF RND TOP RND LN&FAT 0inFAT ALL GRDS CKD BRSD','London Broil Cube steak Round Steak Minute Steak',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13430,1300,'Beef round top round separable lean and fat trimmed to 0in fat choice cooked braised','BEEF RND TOP RND LN&FAT 0inFAT CHOIC CKD BRSD','URMIS #2368 London Broil Cube steak Minute Steak Round Steak',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13432,1300,'Beef round top round separable lean and fat trimmed to 0in fat select cooked braised','BEEF RND TOP RND LN&FAT 0inFAT SEL CKD BRSD','URMIS #1553 London Broil Cube steak Minute Steak Round Steak',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13436,1300,'Beef round top round separable lean only trimmed to 0in fat choice cooked braised','BEEF RND TOP RND LN 0inFAT CHOIC CKD BRSD','URMIS #2368 London Broil Cube steak Minute Steak Round Steak',,,'Connective tissue 2% separable fat 2%',4,,6.25,4.27,9.02,3.87 -13438,1300,'Beef round top round separable lean only trimmed to 0in fat select cooked braised','BEEF RND TOP RND LN 0inFAT SEL CKD BRSD','URMIS #1553 London Broil Cube steak Minute Steak Round Steak',,,'Connective tissue 2% separable fat 2%',4,,6.25,4.27,9.02,3.87 -13439,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF LOIN TNDRLN STEAK BNLESS L & F 0in F A GRDS CKD GRILLED','Filet Mignon Tenderloin Steak Beef Medallions',,,'Connective tissue 1%',1,,6.25,4.27,9.02,3.87 -13440,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF LOIN TENDERLOIN STK BNLESS L & F 0in F CHOIC CKD GRLLED','URMIS # 2203 Filet Mignon Tenderloin Steak Beef Medallions',,,'Connective tissue 1%',1,,6.25,4.27,9.02,3.87 -13441,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF LOIN TENDERLOIN STK BNLESS L & F 0in FAT SEL CKD GRILLED','URMIS #1388 Filet Mignon Tenderloin Steak Beef Medallions',,,'Connective tissue 1%',1,,6.25,4.27,9.02,3.87 -13442,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF LOIN TENDERLOIN STK BNLESS L 0in F ALL GRDS CKD GRILLED','Filet Mignon Tenderloin Steak Beef Medallions',,,'Separable fat 1%',1,,6.25,,, -13443,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF LOIN TENDERLOIN STEAK BNLESS LN 0in FAT CHOIC CKD GRLLED','URMIS # 2203 Filet Mignon Tenderloin Steak Beef Medallions',,,'Separable fat 1%',1,,6.25,4.27,9.02,3.87 -13444,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF LOIN TENDERLOIN STEAK BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1388 Filet Mignon Tenderloin Steak Beef Medallions',,,'Separable fat 1%',1,,6.25,4.27,9.02,3.87 -13445,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF LOIN TOPLOINSTK BNLS LIPOFF LN FT 0in FT ALLGRD CKD GRLD','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8%',8,,6.25,4.27,9.02,3.87 -13446,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF LOIN TOPLOINSTK BNLS LIP OFF LN FT 0in FT CHC CKD GRLD','URMIS # 2219 Boneless Strip Steak Kansas City Steak New York Strip Club Steak',,,'Connective tissue 7%',7,,6.25,4.27,9.02,3.87 -13447,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat select cooked grilled','BEEF LOIN TOPLOINSTK BNLS LIP OFF LN FAT 0in FT SEL CKD GRLD','URMIS # 1404 Boneless Strip Steak Kansas City Strip New York Strip Club Steak',,,'Connective tissue 9%',9,,6.25,4.27,9.02,3.87 -13448,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat all grades cooked grilled','BEEF LOIN TOPLOINSTK BNLS LIP OFF LN 0in FT ALL GRD CKD GRLD','Kansas City Strip Club Steak New York Strip',,,'Connective tissue 8% separable fat 4%',12,,6.25,4.27,9.02,3.87 -13449,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat choice cooked grilled','BEEF LOIN TOP LOIN STK BNLS LIP OFF LN 0in FAT CHOIC CKD GRLD','URMIS # 2219 Club Steak Kansas City Strip New York Strip',,,'Connective tissue 7% separable fat 5%',12,,6.25,4.27,9.02,3.87 -13450,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat select cooked grilled','BEEF LOIN TOP LOIN STK BNLS LIP OFF LN 0in FAT SEL CKD GRLD','URMIS # 1404 Club Steak Kansas City Strip New York Strip',,,'Connective tissue 9% separable fat 4%',13,,6.25,4.27,9.02,3.87 -13451,1300,'Beef top sirloin steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 0in FAT ALL GRDS CKD BRLD','Sirloin strip Sirloin steak',,'Y','Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13452,1300,'Beef top sirloin steak separable lean and fat trimmed to 0in fat choice cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 0in FAT CHOIC CKD BRLD','URMIS #2237 Sirloin Steak Sirloin strip',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13453,1300,'Beef top sirloin steak separable lean and fat trimmed to 0in fat select cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 0in FAT SEL CKD BRLD','URMIS #1422 Sirloin steak Sirloin strip',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13454,1300,'Beef top sirloin steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF TOP SIRLOIN STEAK LN 0in FAT ALL GRDS CKD BRLD','Sirloin strip Sirloin steak',,'Y','Bone and connective tissue 3.8% separable fat 5.8%',10,,6.25,4.27,9.02,3.87 -13455,1300,'Beef top sirloin steak separable lean only trimmed to 0in fat choice cooked broiled','BEEF TOP SIRLOIN STEAK LN 0in FAT CHOIC CKD BRLD','URMIS #2237 Sirloin steak Sirloin strip',,,'Bone and connective tissue 4% sep fat 6%',10,,6.25,4.27,9.02,3.87 -13456,1300,'Beef top sirloin steak separable lean only trimmed to 0in fat select cooked broiled','BEEF TOP SIRLOIN STEAK LN 0in FAT SEL CKD BRLD','URMIS #1422 Sirloin steak Sirloin strip',,,'Bone and connective tissue 4% sep fat 6%',10,,6.25,4.27,9.02,3.87 -13459,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF SHRT LOIN PRTRHS STK LN & FAT 0in FAT ALL GRDS CKD BRLD',,,,'Bone and heavy connective tissue 21%',21,,6.25,4.27,9.02,3.87 -13460,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 0in fat USDA choice cooked broiled','BEEF LOIN PRTRHS STK LN & FAT 0in FAT USDA CHOIC CKD BRLD','URMIS # 2145',,,'Bone and heavy connective tissue 21%',21,,6.25,4.27,9.02,3.87 -13463,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 0in fat USDA select cooked broiled','BEEF SHRT LOIN PRTRHS STK LN & FAT 0in FAT USDA SEL CKD BRLD','URMIS # 1330',,,'Bone and heavy connective tissue 20%',20,,6.25,4.27,9.02,3.87 -13464,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT ALL GRDS RAW','Porterhouse Steak',,,'Bone and connective tissue 23% Separable fat 12%',35,,6.25,4.27,9.02,3.87 -13465,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT ALL GRDS CKD GRILLED','Porterhouse Steak',,,'Bone and connective tissue 27% separable fat 11%',38,,6.25,4.27,9.02,3.87 -13466,1300,'Beef short loin porterhouse steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF SHRT LOIN PRTRHS STEAK LN 0in FAT ALL GRDS CKD BRLD',,,,'Bone and heavy connective tissue 21% separable fat 11%',32,,6.25,4.27,9.02,3.87 -13467,1300,'Beef short loin porterhouse steak separable lean only trimmed to 0in fat choice cooked broiled','BEEF SHRT LOIN PRTRHS STEAK LN 0in FAT CHOIC CKD BRLD','URMIS # 2145',,,'Bone and heavy connective tissue 21% separable fat 10%',31,,6.25,4.27,9.02,3.87 -13468,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat select raw','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT SEL RAW','Porterhouse Steak URMIS # 1330',,,'Bone and connective tissue 24% separable fat 13%',37,,6.25,4.27,9.02,3.87 -13469,1300,'Beef short loin porterhouse steak separable lean only trimmed to 1/8in fat select cooked grilled','BEEF SHRT LOIN PRTRHS STEAK LN 1/8in FAT SEL CKD GRILLED','Porterhouse Steak URMIS # 1330',,,'Bone and connective tissue 30% separable fat 10%',40,,6.25,4.27,9.02,3.87 -13470,1300,'Beef short loin porterhouse steak separable lean only trimmed to 0in fat select cooked broiled','BEEF SHRT LOIN PRTRHS STEAK LN 0in FAT SEL CKD BRLD','URMIS # 1330',,,'Bone and heavy connective tissue 20% separable fat 12%',32,,6.25,4.27,9.02,3.87 -13473,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF SHRT LOIN T-BONE STK LN & FAT 0in FAT ALL GRDS CKD BRLD',,,,'Bone and heavy connective tissue 22%',22,,6.25,4.27,9.02,3.87 -13474,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 0in fat USDA choice cooked broiled','BEEF LOIN T-BONE STEAK LN & FAT 0in FAT USDA CHOIC CKD BRLD','URMIS # 2184',,,'Bone and heavy connective tissue 23%',23,,6.25,4.27,9.02,3.87 -13477,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 0in fat USDA select cooked broiled','BEEF SHRT LOIN T-BONE STK LN & FAT 0in FAT USDA SEL CKD BRLD','URMIS # 01369',,,'Bone and heavy connective tissue 21%',21,,6.25,4.27,9.02,3.87 -13478,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN T-BONE STEAK BONE-IN LN 1/8in FAT ALL GRDS RAW','T-Bone Steak',,,'Bone and connective tissue 25% separable fat 14%',39,,6.25,4.27,9.02,3.87 -13479,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF SHRT LN T-BN STK BN-IN LN 1/8in FAT ALL GRDS CKD GRILLED','T-Bone Steak',,,'Bone and connective tissue 30% separable fat 13%',43,,6.25,4.27,9.02,3.87 -13481,1300,'Beef short loin t-bone steak separable lean only trimmed to 0in fat choice cooked broiled','BEEF SHRT LOIN T-BONE STEAK LN 0in FAT CHOIC CKD BRLD','URMIS # 2184',,,'Bone and heavy connective tissue 22% separable fat 10%',32,,6.25,4.27,9.02,3.87 -13482,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat select raw','BEEF SHRT LOIN T-BONE STEAK BONE-IN LN 1/8in FAT SEL RAW','T-Bone Steak URMIS # 1369',,,'Bone and heavy connective tissue 26% Separable fat 14%',41,,6.25,4.27,9.02,3.87 -13483,1300,'Beef short loin t-bone steak bone-in separable lean only trimmed to 1/8in fat select cooked grilled','BEEF SHRT LN T-BONE STK BONE-IN LN 1/8in FAT SEL CKD GRILLED','T-Bone Steak URMIS # 1369',,,'Bone and connective tissue 32% separable fat 12%',44,,6.25,4.27,9.02,3.87 -13484,1300,'Beef short loin t-bone steak separable lean only trimmed to 0in fat select cooked broiled','BEEF SHRT LOIN T-BONE STEAK LN 0in FAT SEL CKD BRLD','URMIS # 1369',,,'Bone and heavy connective tissue 21% separable fat 8%',29,,6.25,4.27,9.02,3.87 -13485,1300,'Beef brisket flat half separable lean only trimmed to 0in fat select cooked braised','BEEF BRISKET FLAT HALF LN 0in FAT SEL CKD BRSD','URMIS #1623',,,'Separable fat',1,,,4.27,9.02,3.87 -13486,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat all grades raw','BEEF RND TIP RND RST LN & FAT 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13487,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat choice raw','BEEF RND TIP RND RST LN & FAT 0in FAT CHOIC RAW','URMIS # 2340',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13488,1300,'Beef round tip round roast separable lean and fat trimmed to 0in fat select raw','BEEF RND TIP RND RST LN & FAT 0in FAT SEL RAW','URMIS #1525',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13490,1300,'Beef rib eye small end (ribs 10- 12) separable lean only trimmed to 0in fat select cooked broiled','BEEF RIB EYE SML END (RIBS 10- 12) LN 0in FAT SEL CKD BRLD','ribeye',,,'Bone and connective tissue 8% sep fat 10%',18,,6.25,4.27,9.02,3.87 -13491,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF RND TOP RND STEAK BNLESS LN 0in FAT ALL GRDS CKD GRILLED','Top Round Steak',,'Y',,0,,6.25,4.27,9.02,3.87 -13492,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF RND TOP RND STEAK BNLESS LN 0in FAT CHOIC CKD GRILLED','URMIS #2368 Top Round Steak',,,,0,,6.25,4.27,9.02,3.87 -13493,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF RND TOP RND STEAK BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1553 Top Round Steak',,,,0,,6.25,4.27,9.02,3.87 -13494,1300,'Beef ground 70% lean meat / 30% fat crumbles cooked pan-browned','BEEF GROUND 70% LN MEAT / 30% FAT CRUMBLES CKD PAN-BROWNED','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13495,1300,'Beef ground 70% lean meat / 30% fat loaf cooked baked','BEEF GROUND 70% LN MEAT / 30% FAT LOAF CKD BKD','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13496,1300,'Beef ground 70% lean meat / 30% fat patty cooked pan-broiled','BEEF GROUND 70% LN MEAT / 30% FAT PATTY CKD PAN-BROILED','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13497,1300,'Beef ground 70% lean meat / 30% fat patty cooked broiled','BEEF GROUND 70% LN MEAT / 30% FAT PATTY CKD BRLD','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13498,1300,'Beef ground 70% lean meat / 30% fat raw','BEEF GROUND 70% LN MEAT / 30% FAT RAW','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -13499,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean only trimmed to 0in fat select raw','BEEF CHK UND BL CNTR STK BNLESS DEN CUT LN 0in FA SEL RAW','Beef Chuck Denver Cut (Serratus Ventralis Steaks) URMIS #1098',,,'Connective tissue 2% seam fat 4%',6,,6.25,,, -13500,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT ALL GRDS CKD GRI','Beef Chuck Top Blade Steak URMIS #1144',,,'Connective tissue 15% seam fat 3%',18,,6.25,,, -13501,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT CHOIC CKD GRILLE','URMIS #1144 Beef Chuck Top Blade Steak',,,'Connective tissue 14% seam fat 4%',18,,6.25,,, -13502,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1144 Beef Chuck Top Blade Steak',,,'Connective tissue 17% seam fat 2%',19,,6.25,,, -13519,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT ALL GRDS RAW','URMIS #1144 Beef Chuck Top Blade Steak',,,'Connective tissue 14% seam fat 2%',16,,6.25,,, -13520,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat choice raw','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT CHOIC RAW','URMIS #1144 Beef Chuck Top Blade Steak',,,'Connective tissue 15% seam fat 2%',17,,6.25,,, -13523,1300,'Beef shoulder top blade steak boneless separable lean only trimmed to 0in fat select raw','BEEF SHLDR TOP BLADE STEAK BNLESS LN 0in FAT SEL RAW','Beef Chuck Top Blade Steak URMIS #1144',,,'Connective tissue 14% seam fat 1%',15,,6.25,,, -13595,1300,'Beef brisket flat half boneless separable lean only trimmed to 0in fat all grades raw','BEEF BRISKET FLAT HALF BNLESS LN 0in FAT ALL GRDS RAW','URMIS #1623 Beef Brisket Flat Half',,,'Connective tissue 1% seam fat 9%',10,,6.25,,, -13596,1300,'Beef brisket flat half boneless separable lean only trimmed to 0in fat choice raw','BEEF BRISKET FLAT HALF BNLESS LN 0in FAT ALL CHOICE RAW','URMIS #1623 Beef Brsket Flat Half',,,'Connective tissue 1% seam fat 8%',9,,6.25,,, -13597,1300,'Beef brisket flat half boneless separable lean only trimmed to 0in fat select raw','BEEF BRISKET FLAT HALF BNLESS LN 0in FAT SEL RAW','URMIS #1623 Beef Brisket Flat Half',,,'Connective tissue 1% seam fat 9%',10,,6.25,,, -13598,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF SHLDR TOP BLADE STK BNLES LN & FAT 0in ALL GRDS CKD G','URMIS #1144',,,'Connective tissue 15%',15,,6.25,,, -13647,1300,'Beef shoulder pot roast or steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF SHLDR POT RST OR STEAK BNLESS LN 0in FAT ALL GRDS RAW','URMIS #1132 URMIS #1133 Beef Chuck Clod (Shoulder) Roast or Steak',,,'Connective tissue 6% seam fat 1%',7,,6.25,,, -13648,1300,'Beef shoulder pot roast or steak boneless separable lean only trimmed to 0in fat choice raw','BEEF SHLDR POT RST OR STEAK BNLESS LN 0in FAT CHOIC RAW','URMIS #1132 Urmis #1133 Beef Chuck Clod (Shoulder) Roast or Steak',,,'Connective tissue 6% seam fat 1%',7,,6.25,,, -13649,1300,'Beef shoulder pot roast or steak boneless separable lean only trimmed to 0in fat select raw','BEEF SHLDR POT RST OR STEAK BNLESS LN 0in FAT SEL RAW','URMIS #1132 URMIS #1133 Beef Chuck Clod (Shoulder) Roast or Steak',,,'Connective tissue 6% seam fat 1%',7,,6.25,,, -13650,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF SHLDR TOP BLDE STK BNS LN & FAT 0in FAT CHOIC CKD G','URMIS #1144',,,'Connective tissue 14%',14,,6.25,,, -13786,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat all grades raw','BEEF CHUCK EYE RST BNLESS A BF RST LN & FAT 0in ALL G RAW','URMIS #1095',,,'Connective tissue 8%',8,,6.25,,, -13788,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat choice raw','BEEF CHUCK EYE RST BNLS A BF RST LN & FAT 0in FAT CHOIC RAW','URMIS #1095',,,'Connective tissue 9%',9,,6.25,,, -13791,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat select raw','BEEF CHUCK EYE RST BNLS A BF RST LN & FAT 0in FAT SEL RAW','URMIS #1095',,,'Connective tissue 6%',6,,6.25,,, -13795,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat all grades raw','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT ALL GRDS RAW',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13796,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat all grades cooked','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT ALL GRDS CKD',,,'Y','No component data available',,,6.25,4.27,9.02,3.87 -13797,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat choice raw','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT CHOIC RAW',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13798,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat choice cooked','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT CHOIC CKD',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13799,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat select raw','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT SEL RAW',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13800,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat select cooked','BEEF COMP OF RTL CUTS LN&FAT 1/8inFAT SEL CKD',,,,'No component data available',,,6.25,4.27,9.02,3.87 -13803,1300,'Beef brisket whole separable lean and fat trimmed to 1/8in fat all grades raw','BEEF BRISKET WHL LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13804,1300,'Beef brisket whole separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF BRISKET WHL LN&FAT 1/8inFAT ALL GRDS CKD BRSD',,,'Y','Connective tissue',1,,6.25,4.27,9.02,3.87 -13805,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat all grades raw','BEEF BRISKET FLAT HALF LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13806,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF BRISKET FLAT HALF LN&FAT 1/8inFAT ALL GRDS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -13807,1300,'Beef brisket point half separable lean and fat trimmed to 1/8in fat all grades raw','BEEF BRISKET POINT HALF LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13808,1300,'Beef brisket point half separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF BRISKET POINT HALF LN&FAT 1/8inFAT ALL GRDS CKD BRSD',,,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13809,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat all grades raw','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Bone and connective tissue',21,,6.25,4.27,9.02,3.87 -13810,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT ALL GRDS CKD BRSD',,,'Y','Bone and connective tissue',28,,6.25,4.27,9.02,3.87 -13811,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat choice raw','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT CHOIC RAW','URMIS #1864',,,'Bone and connective tissue',15,,6.25,4.27,9.02,3.87 -13812,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat choice cooked braised','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT CHOIC CKD BRSD','URMIS #1864',,'Y','Bone and connective tissue',30,,6.25,4.27,9.02,3.87 -13813,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat select raw','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT SEL RAW','URMIS #1049',,,'Bone and connective tissue',16,,6.25,4.27,9.02,3.87 -13814,1300,'Beef chuck arm pot roast separable lean and fat trimmed to 1/8in fat select cooked braised','BEEF CHUCK ARM POT RST LN&FAT 1/8inFAT SEL CKD BRSD','URMIS #1049',,'Y','Bone and connective tissue',26,,6.25,4.27,9.02,3.87 -13815,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat all grades raw','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT ALL GRDS RAW','Top Blade Steak',,,'Bone',19,,6.25,4.27,9.02,3.87 -13816,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT ALL GRDS CKD BRSD','Top Blade Steak',,'Y','Bone',23,,6.25,4.27,9.02,3.87 -13817,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat choice raw','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT CHOIC RAW','URMIS #1879 Top Blade Steak',,,'Bone',19,,6.25,4.27,9.02,3.87 -13818,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat choice cooked braised','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT CHOIC CKD BRSD','URMIS #1879 Top Blade Steak',,'Y','Bone',23,,6.25,4.27,9.02,3.87 -13819,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat select raw','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT SEL RAW','URMIS #1064 Top Blade Steak',,,'Bone',19,,6.25,4.27,9.02,3.87 -13820,1300,'Beef chuck blade roast separable lean and fat trimmed to 1/8in fat select cooked braised','BEEF CHUCK BLADE RST LN&FAT 1/8inFAT SEL CKD BRSD','URMIS #1064 Top Blade Steak',,,'Bone',23,,6.25,4.27,9.02,3.87 -13821,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat all grades cooked roasted','BEEF CHK EYE RST BNL AMERICAS BF RST LN 0in FAT ALL GRD CKD','URMIS #1095 Beef Chuck Chuck Eye Rst (Americas Beef Rst)',,,'Connective tissue 6% seam fat 13%',19,,6.25,,, -13822,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat choice cooked roasted','BEEF CHK EYE RST BNLESS AMERICAS BF RST LN 0in FAT CHOIC CKD','URMIS #1095 Beef Chuck Chuck Eye Rst (Americas Beef Rst)',,,'Connective tissue 6% seam fat 13%',19,,6.25,,, -13823,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat select cooked roasted','BEEF CHUCK EYE RST BNLESS AMERICAS BF RST LN 0in FAT SEL CKD','URMIS #1095 Beef Chuck ChuckEye Rst (Americas Beef Rst)',,,'Connective tissue7% seam fat 13%',20,,6.25,,, -13824,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13825,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT ALL GRDS CKD BRLD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -13826,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT ALL GRDS CKD RSTD',,,,'Bone',17,,6.25,4.27,9.02,3.87 -13827,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat choice raw','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT CHOIC RAW',,,,'Bone',17,,6.25,4.27,9.02,3.87 -13828,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT CHOIC CKD BRLD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -13829,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT CHOIC CKD RSTD',,,'Y','Bone',17,,6.25,4.27,9.02,3.87 -13830,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat select raw','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT SEL RAW',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13831,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT SEL CKD BRLD',,,,'Bone',22,,6.25,4.27,9.02,3.87 -13832,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT SEL CKD RSTD',,,,'Bone',17,,6.25,4.27,9.02,3.87 -13833,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat prime raw','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT PRIME RAW','URMIS #1986',,,'Bone',16,,6.25,4.27,9.02,3.87 -13834,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT PRIME CKD BRLD','URMIS #1986',,,'Bone',19,,6.25,4.27,9.02,3.87 -13835,1300,'Beef rib whole (ribs 6-12) separable lean and fat trimmed to 1/8in fat prime cooked roasted','BEEF RIB WHL (RIBS 6-12) LN&FAT 1/8inFAT PRIME CKD RSTD','URMIS #1986',,,'Bone',20,,6.25,4.27,9.02,3.87 -13838,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13839,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT ALL GRDS CKD BRLD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -13840,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT ALL GRDS CKD RSTD',,,'Y','Bone',16,,6.25,4.27,9.02,3.87 -13841,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat choice raw','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT CHOIC RAW',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13842,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT CHOIC CKD BRLD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -13843,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT CHOIC CKD RSTD',,,,'Bone',15,,6.25,4.27,9.02,3.87 -13844,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat select raw','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT SEL RAW',,,,'Bone',17,,6.25,4.27,9.02,3.87 -13845,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT SEL CKD BRLD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -13846,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT SEL CKD RSTD',,,,'Bone',16,,6.25,4.27,9.02,3.87 -13847,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat prime raw','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT PRIME RAW','URMIS #2037',,,'Bone',14,,6.25,4.27,9.02,3.87 -13848,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT PRIME CKD BRLD','URMIS #2037',,,'Bone',18,,6.25,4.27,9.02,3.87 -13849,1300,'Beef rib large end (ribs 6-9) separable lean and fat trimmed to 1/8in fat prime cooked roasted','BEEF RIB LRG END (RIBS 6-9) LN&FAT 1/8inFAT PRIME CKD RSTD','URMIS #2037',,,'Bone',19,,6.25,4.27,9.02,3.87 -13850,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT ALL GRDS RAW','Prime Rib',,,'Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13851,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT ALL GRDS CKD BR','Prime Rib',,'Y','Bone and connective tissue',7,,6.25,4.27,9.02,3.87 -13852,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT ALL GRDS CKD RS','Prime Rib',,,'Bone',19,,6.25,4.27,9.02,3.87 -13853,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat choice raw','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT CHOIC RAW','Prime Rib',,,'Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13854,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT CHOIC CKD BRLD','Prime Rib',,,'Bone and connective tissue',7,,6.25,4.27,9.02,3.87 -13855,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT CHOIC CKD RSTD','Prime Rib',,,'Bone',20,,6.25,4.27,9.02,3.87 -13856,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat select raw','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT SEL RAW','Prime Rib',,,'Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13857,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT SEL CKD BRLD','Prime Rib',,,'Bone and connective tissue',7,,6.25,4.27,9.02,3.87 -13858,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT SEL CKD RSTD','Prime Rib',,,'Bone',18,,6.25,4.27,9.02,3.87 -13859,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat prime raw','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT PRIME RAW','URMIS #2054 Prime Rib',,,'Bone',18,,6.25,4.27,9.02,3.87 -13860,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT PRIME CKD BRLD','URMIS #2054 Prime Rib',,,'Bone',21,,6.25,4.27,9.02,3.87 -13861,1300,'Beef rib small end (ribs 10-12) separable lean and fat trimmed to 1/8in fat prime cooked roasted','BEEF RIB SML END (RIBS 10-12) LN&FAT 1/8inFAT PRIME CKD RSTD','URMIS #2054 Prime Rib',,,'Bone',21,,6.25,4.27,9.02,3.87 -13862,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF SHLDR TOP BLDE STK BNLS LN & FAT 0in FAT SEL CKD G','URMIS #1144',,,'Connective tissue 17%',17,,6.25,,, -13863,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF SHLDR TOP BLADE STEAK BNLS LN & FAT 0in FAT ALL GRDS RAW','URMIS #1144',,,'Connective tissue 14%',15,,6.25,,, -13864,1300,'Beef round full cut separable lean and fat trimmed to 1/8in fat choice raw','BEEF RND FULL CUT LN&FAT 1/8inFAT CHOIC RAW','URMIS #2316',,'Y','Bone',6,,6.25,4.27,9.02,3.87 -13865,1300,'Beef round full cut separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF RND FULL CUT LN&FAT 1/8inFAT CHOIC CKD BRLD','URMIS #2316',,'Y','Bone',8,,6.25,4.27,9.02,3.87 -13866,1300,'Beef round full cut separable lean and fat trimmed to 1/8in fat select raw','BEEF RND FULL CUT LN&FAT 1/8inFAT SEL RAW','URMIS #1501',,,'Bone',6,,6.25,4.27,9.02,3.87 -13867,1300,'Beef round full cut separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF RND FULL CUT LN&FAT 1/8inFAT SEL CKD BRLD','URMIS #1501',,,'Bone',8,,6.25,4.27,9.02,3.87 -13868,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13869,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT ALL GRDS CKD BRSD',,,'Y','Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13870,1300,'Beef round bottom round roast separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RND BTTM RND RST LN & FAT 1/8in FAT ALL GRDS CKD RSTD',,,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13871,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT CHOIC RAW','URMIS #2279',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13872,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat choice cooked braised','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT CHOIC CKD BRSD','URMIS #2279',,,'Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13873,1300,'Beef round bottom round roast separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RND BTTM RND RST LN & FAT 1/8in FAT CHOIC CKD RSTD','URMIS #2279',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13874,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat select raw','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT SEL RAW','URMIS #1464',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13875,1300,'Beef round bottom round steak separable lean and fat trimmed to 1/8in fat select cooked braised','BEEF RND BTTM RND STEAK LN & FAT 1/8in FAT SEL CKD BRSD','URMIS #1464',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13876,1300,'Beef round bottom round roast separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RND BTTM RND RST LN & FAT 1/8in FAT SEL CKD RSTD','URMIS #1464',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13877,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13878,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT ALL GRDS CKD RSTD',,,'Y','Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13879,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat choice raw','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT CHOIC RAW','URMIS #2295',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13880,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT CHOIC CKD RSTD','URMIS #2295',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13881,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat select raw','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT SEL RAW','URMIS #1480',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13882,1300,'Beef round eye of round roast separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RND EYE OF RND RST LN & FAT 1/8in FAT SEL CKD RSTD','URMIS #1480',,,'Bone and connective tissue 1% sep fat 8%',9,,6.25,4.27,9.02,3.87 -13883,1300,'Beef round tip round separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RND TIP RND LN&FAT 1/8inFAT ALL GRDS RAW',,,,'Connective tissue',4,,6.25,4.27,9.02,3.87 -13884,1300,'Beef round tip round roast separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RND TIP RND RST LN & FAT 1/8in FAT ALL GRDS CKD RSTD',,,'Y','Connective tissue',4,,6.25,4.27,9.02,3.87 -13885,1300,'Beef round tip round separable lean and fat trimmed to 1/8in fat choice raw','BEEF RND TIP RND LN&FAT 1/8inFAT CHOIC RAW','URMIS # 2340',,,'Connective tissue',4,,6.25,4.27,9.02,3.87 -13886,1300,'Beef round tip round roast separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RND TIP RND RST LN & FAT 1/8in FAT CHOIC CKD RSTD','URMIS # 2340',,'Y','Connective tissue',4,,6.25,4.27,9.02,3.87 -13887,1300,'Beef round tip round separable lean and fat trimmed to 1/8in fat select raw','BEEF RND TIP RND LN&FAT 1/8inFAT SEL RAW','URMIS # 1525',,,'Connective tissue',3,,6.25,4.27,9.02,3.87 -13888,1300,'Beef round tip round roast separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RND TIP RND RST LN & FAT 1/8in FAT SEL CKD RSTD','URMIS # 1525',,'Y','Connective tissue',4,,6.25,4.27,9.02,3.87 -13889,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF SHLDR TOP BLADE STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS #1144',,,'Connective tissue 15%',15,,6.25,,, -13890,1300,'Beef round top round separable lean only trimmed to 1/8in fat choice cooked pan-fried','BEEF RND TOP RND LN 1/8in FAT CHOIC CKD PAN-FRIED','URMIS #2368 Round Steak London Broil Minute Steak',,'Y','Connective tissue',1,,6.25,4.27,9.02,3.87 -13891,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT ALL GRDS RAW','London Broil Round Steak Minute Steak',,,,0,,6.25,4.27,9.02,3.87 -13892,1300,'Beef round top round separable lean and fat trimmed to 1/8in fat all grades cooked braised','BEEF RND TOP RND LN&FAT 1/8inFAT ALL GRDS CKD BRSD','London Broil Round Steak Minute Steak',,'Y','Connective tissue',3,,6.25,4.27,9.02,3.87 -13893,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT ALL GRDS CKD BRLD','London Broil Round Steak Minute Steak',,'Y','Bone and connective tissue',1,,,,, -13894,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT CHOIC RAW','URMIS #2368 Round Steak London Broil Minute Steak',,,,0,,6.25,4.27,9.02,3.87 -13895,1300,'Beef round top round separable lean and fat trimmed to 1/8in fat choice cooked braised','BEEF RND TOP RND LN&FAT 1/8inFAT CHOIC CKD BRSD','URMIS #2368 Round Steak London Broil Minute Steak',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13896,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT CHOIC CKD BRLD','URMIS #2368 Round Steak London Broil Minute Steak',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13897,1300,'Beef round top round separable lean and fat trimmed to 1/8in fat choice cooked pan-fried','BEEF RND TOP RND LN&FAT 1/8inFAT CHOIC CKD PAN-FRIED','URMIS #2368 Round Steak London Broil Minute Steak',,'Y','Connective tissue',1,,6.25,4.27,9.02,3.87 -13898,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat select raw','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT SEL RAW','URMIS #1553 Round Steak London Broil Minute Steak',,,,0,,6.25,4.27,9.02,3.87 -13899,1300,'Beef round top round separable lean and fat trimmed to 1/8in fat select cooked braised','BEEF RND TOP RND LN&FAT 1/8inFAT SEL CKD BRSD','URMIS #1553 Round Steak London Broil Minute Steak',,,'Connective tissue',3,,6.25,4.27,9.02,3.87 -13900,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT SEL CKD BRLD','URMIS #1553 Round Steak London Broil Minute Steak',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13901,1300,'Beef round top round separable lean and fat trimmed to 1/8in fat prime raw','BEEF RND TOP RND LN&FAT 1/8inFAT PRIME RAW','URMIS #2368 Round Steak London Broil Minute Steak',,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13902,1300,'Beef round top round steak separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF RND TOP RND STEAK LN & FAT 1/8in FAT PRIME CKD BRLD','URMIS #2368 Round Steak London Broil Minute Steak',,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -13903,1300,'Beef shoulder top blade steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF SHLDR TOP BLADE STEAK BNLESS LN & FAT 0in FAT SEL RAW','URMIS #1144',,,'Conncective tissue 14%',14,,6.25,,, -13904,1300,'Beef brisket flat half boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF BRISKET FLAT HALF BNLESS LN & FAT 0in FAT ALL GRDS RAW','URMIS #1623',,,'Connective tissue 1%',1,,6.25,,, -13905,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF SHRT LOIN PRTRHS STEAK LN&FAT 1/8inFAT CHOIC RAW','URMIS # 2145 Porterhouse steak',,,'Bone and connective tissue 23%',23,,6.25,4.27,9.02,3.87 -13906,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF SHRT LOIN PRTRHS STK LN & FAT 1/8in FAT CHOIC CKD GRILLD','URMIS # 2145 Porterhouse steak',,,'Bone and connective tissue 26%',26,,6.25,4.27,9.02,3.87 -13907,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF SHRT LOIN T-BONE STEAK LN&FAT 1/8inFAT CHOIC RAW','URMIS # 2184 T-Bone steak',,,'Bone and connective tissue 25%',25,,6.25,4.27,9.02,3.87 -13908,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF SHRT LN T-BONE STK L & F 1/8in FAT CHOIC CKD GRILLED','URMIS # 2184 T-Bone Steak',,,'Bone and connective tissue 28%',28,,6.25,4.27,9.02,3.87 -13909,1300,'Beef short loin top loin steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN TOP LOIN STEAK LN & FAT 1/8in FAT ALL GRDS RAW','Kansas City Strip Club Steak Boneless Strip Steak New York Strip',,,'Bone and Connective tissue 10%',10,,6.25,4.27,9.02,3.87 -13910,1300,'Beef loin top loin separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF LOIN TOP LOIN LN & FAT 1/8in FAT ALL GRDS CKD GRILLED','Kansas City Strip Club Steak Boneless Strip Steak New York Strip',,'Y','Bone and Connective tissue 12%',12,,6.25,4.27,9.02,3.87 -13911,1300,'Beef loin top loin separable lean and fat trimmed to 1/8in fat choice raw','BEEF LOIN TOP LOIN LN & FAT 1/8in FAT CHOIC RAW','URMIS # 2219 Club Steak Kansas City Strip New York Strip Boneless strip steak',,,'Bone and Connective tissue 10%',10,,6.25,4.27,9.02,3.87 -13912,1300,'Beef short loin top loin steak separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF SHRT LOIN TOP LN STK LN & FAT 1/8in FAT CHOIC CKD GRLLD','URMIS # 2219 Boneless Strip Steak Kansas City Strip New York Strip Club Steak',,'Y','Bone and Connective tissue 12%',8,,6.25,4.27,9.02,3.87 -13913,1300,'Beef loin top loin separable lean and fat trimmed to 1/8in fat select raw','BEEF LOIN TOP LOIN LN & FAT 1/8in FAT SEL RAW','URMIS # 1404 Club Steak Kansas City Strip New York Strip Boneless strip steak',,,'Bone and Connective tissue 9%',9,,6.25,4.27,9.02,3.87 -13914,1300,'Beef loin top loin separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF LOIN TOP LOIN LN & FAT 1/8in FAT SEL CKD GRILLED','URMIS # 1404 Boneless Strip Steak Kansas City Strip New York Strip Club Steak',,,'Bone and Connective tissue 12%',12,,6.25,4.27,9.02,3.87 -13915,1300,'Beef short loin top loin steak separable lean and fat trimmed to 1/8in fat prime raw','BEEF SHRT LOIN TOP LOIN STEAK LN & FAT 1/8in FAT PRIME RAW','Kansas City Strip Club Steak New York Strip',,,'Connective tissue',6,,6.25,4.27,9.02,3.87 -13916,1300,'Beef short loin top loin separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF SHRT LOIN TOP LOIN LN&FAT 1/8inFAT PRIME CKD BRLD','Kansas City Strip Club Steak New York Strip',,,'Connective tissue',8,,6.25,4.27,9.02,3.87 -13917,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT ALL GRDS RAW','Filet Mignon Beef Medallions',,,'Bone and connective tissue 2%',2,,6.25,4.27,9.02,3.87 -13918,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT ALL GRDS CKD BRLD','Filet Mignon Beef Medallions',,'Y','Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13919,1300,'Beef tenderloin roast separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF TENDERLOIN RST LN & FAT 1/8in FAT ALL GRDS CKD RSTD','Filet Mignon Beef Medallions',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13920,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT CHOIC RAW','URMIS #1388 Filet Mignon Beef Medallions',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13921,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT CHOIC CKD BRLD','URMIS #1388 Filet Mignon Beef Medallions',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13922,1300,'Beef tenderloin roast separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF TENDERLOIN RST LN & FAT 1/8in FAT CHOIC CKD RSTD','URMIS #1386 Filet Mignon Beef Medallions',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13923,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat select raw','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT SEL RAW','URMIS #1388 Filet Mignon Beef Medallions',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13924,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT SEL CKD BRLD','URMIS #1388 Filet Mignon Beef Medallions',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13925,1300,'Beef tenderloin roast separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF TENDERLOIN RST LN & FAT 1/8in FAT SEL CKD RSTD','URMIS #1386 Filet Mignon Beef Medallions',,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -13926,1300,'Beef tenderloin separable lean and fat trimmed to 1/8in fat prime raw','BEEF TENDERLOIN LN&FAT 1/8inFAT PRIME RAW','Filet Mignon Beef Medallions',,,'Connective tissue',3,,6.25,4.27,9.02,3.87 -13927,1300,'Beef tenderloin steak separable lean and fat trimmed to 1/8in fat prime cooked broiled','BEEF TENDERLOIN STEAK LN & FAT 1/8in FAT PRIME CKD BRLD','URMIS #1388 Filet Mignon Beef Medallions',,,'Connective tissue',3,,6.25,4.27,9.02,3.87 -13928,1300,'Beef tenderloin roast separable lean and fat trimmed to 1/8in fat prime cooked roasted','BEEF TENDERLOIN RST LN & FAT 1/8in FAT PRIME CKD RSTD','URMIS #1386 Filet Mignon Beef Medallions',,'Y','Connective tissue',3,,6.25,4.27,9.02,3.87 -13929,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT ALL GRDS RAW','Sirloin strip Sirloin steak',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13930,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat all grades cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT ALL GRDS CKD BRLD','Sirloin strip Sirloin steak',,'Y','Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13931,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat choice raw','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT CHOIC RAW','URMIS #2237 Sirloin steak Sirloin strip',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13932,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat choice cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT CHOIC CKD BRLD','URMIS #2237 Sirloin steak Sirloin strip',,,'Bone and connective tissue',4,,6.25,4.27,9.02,3.87 -13933,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat choice cooked pan-fried','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT CHOIC CKD PAN-FRIED','URMIS #2237 Sirloin steak Sirloin strip',,'Y','Connective tissue',2,,6.25,4.27,9.02,3.87 -13934,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat select raw','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT SEL RAW','URMIS #1422 Sirloin steak Sirloin strip',,,'Bone and connective tissue',3,,6.25,4.27,9.02,3.87 -13935,1300,'Beef top sirloin steak separable lean and fat trimmed to 1/8in fat select cooked broiled','BEEF TOP SIRLOIN STEAK LN & FAT 1/8in FAT SEL CKD BRLD','URMIS #1422 Sirloin steak Sirloin strip',,,'Bone and connective tissue',5,,6.25,4.27,9.02,3.87 -13937,1300,'Beef chuck clod roast separable lean only trimmed to 0in fat choice cooked roasted','BEEF CHUCK CLOD RST LN 0in FAT CHOIC CKD RSTD','URMIS #1947',,,'Bone and heavy connective tissue 3% separable fat 8%',11,,6.25,4.27,9.02,3.87 -13940,1300,'Beef chuck clod roast separable lean only trimmed to 0in fat select cooked roasted','BEEF CHUCK CLOD RST LN 0in FAT SEL CKD RSTD','URMIS #1132',,,'Bone and heavy connective tissue 5% separable fat 4%',9,,6.25,4.27,9.02,3.87 -13943,1300,'Beef shoulder steak boneless separable lean only trimmed to 0in fat choice cooked grilled','Beef shoulder steak boneless lean only 0in choice grill','URMIS #1133',,,'Connective tissue 6% seam fat 2%',8,,6.25,4.27,9.02,3.87 -13946,1300,'Beef shoulder steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF SHLDR STEAK BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1133',,,'Connective tissue 6% seam fat 2%',8,,6.25,4.27,9.02,3.87 -13948,1300,'Beef flank steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF FLANK STEAK LN & FAT 0in FAT ALL GRDS CKD BRLD',,,,,0,,6.25,4.27,9.02,3.87 -13949,1300,'Beef flank steak separable lean and fat trimmed to 0in fat select cooked broiled','BEEF FLANK STEAK LN & FAT 0in FAT SEL CKD BRLD','URMIS #1584',,,,0,,6.25,4.27,9.02,3.87 -13950,1300,'Beef brisket flat half separable lean and fat trimmed to 0in fat select cooked braised','BEEF BRISKET FLAT HALF LN & FAT 0in FAT SEL CKD BRSD','URMIS #1623',,,,0,,6.25,4.27,9.02,3.87 -13951,1300,'Beef rib eye small end (ribs 10-12) separable lean and fat trimmed to 0in fat select cooked broiled','BEEF RIB EYE SML END (RIBS 10-12) LN & FAT 0in SEL CKD BRLD','ribeye',,,'Bone and connective tissue',8,,6.25,4.27,9.02,3.87 -13952,1300,'Beef rib eye small end (ribs 10-12) separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF RIBEYE SML END(RIBS 10-12) LN&FAT 0in ALL GRDS CKD BRLD','ribeye',,,'Bone and connective tissue',8,,6.25,4.27,9.02,3.87 -13953,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat all grades cooked roasted','BF BTTM SRLOIN TRI-TIP RST LN & FAT 0in FAT ALL GRDS CKD RSTD',,,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13954,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat all grades raw','BEEF BTTM SIRLOIN TRI-TIP RST LN & FAT 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13955,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF BTTM SIRLOIN TRI-TIP RST LN & FAT 0in FAT CHOIC CKD RSTD','URMIS #2244',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13956,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat choice raw','BEEF BTTM SIRLOIN TRI-TIP RST LN & FAT 0in FAT CHOIC RAW','URMIS #2244',,,'Bone and connective tissue',2,,6.25,4.27,9.02,3.87 -13957,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat select cooked roasted','BEEF BTTM SIRLOIN TRI-TIP RST LN & FAT 0in FAT SEL CKD RSTD','URMIS #1429',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13958,1300,'Beef bottom sirloin tri-tip roast separable lean and fat trimmed to 0in fat select raw','BEEF BTTM SIRLOIN TRI-TIP RST LN & FAT 0in FAT SEL RAW','URMIS #1429',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13959,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF RND TOP RND STK BNLS LN & FAT 0in FAT ALL GRDS CKD GRLD','Top Round Steak',,'Y',,0,,6.25,4.27,9.02,3.87 -13961,1300,'Beef chuck mock tender steak separable lean only trimmed to 0in fat choice cooked broiled','BEEF CHUCK MOCK TENDER STEAK LN 0in FAT CHOIC CKD BRLD','URMIS #1931 Mock Tender Steak',,,'Bone and heavy connective tissue 5% separable fat 0%',5,,6.25,4.27,9.02,3.87 -13963,1300,'Beef chuck mock tender steak separable lean only trimmed to 0in fat select cooked broiled','BEEF CHUCK MOCK TENDER STEAK LN 0in FAT SEL CKD BRLD','URMIS #1116 Mock Tender Steak',,,'Bone and heavy connective tissue 3% separable fat 0%',3,,6.25,4.27,9.02,3.87 -13965,1300,'Beef chuck top blade separable lean only trimmed to 0in fat choice cooked broiled','BEEF CHUCK TOP BLADE LN 0in FAT CHOIC CKD BRLD','URMIS #1959 Top Blade Roast Boneless',,,'Bone and heavy connective tissue 13% separable fat 2%',15,,6.25,4.27,9.02,3.87 -13967,1300,'Beef chuck top blade separable lean only trimmed to 0in fat select cooked broiled','BEEF CHUCK TOP BLADE LN 0in FAT SEL CKD BRLD','URMIS #1144 Top Blade Roast Boneless',,,'Bone and heavy connective tissue 16% separable fat 3%',19,,6.25,4.27,9.02,3.87 -13968,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF RND TOP RND STK BNLS LN & FAT 0in FAT CHOIC CKD GRLD','URMIS #2368 Top Round Steak',,,,0,,6.25,4.27,9.02,3.87 -13969,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF RND TOP RND STEAK BNLS LN & FAT 0in FAT SEL CKD GRLD','URMIS #1553 Top Round Steak',,,,0,,6.25,4.27,9.02,3.87 -13970,1300,'Beef flank steak separable lean and fat trimmed to 0in fat all grades raw','BEEF FLANK STEAK LN & FAT 0in FAT ALL GRDS RAW',,,,,0,,6.25,4.27,9.02,3.87 -13971,1300,'Beef flank steak separable lean and fat trimmed to 0in fat select raw','BEEF FLANK STEAK LN & FAT 0in FAT SEL RAW','URMIS #1584',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -13972,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat all grades raw','BEEF CHK EYE RST BNL AMERICAS BF RST LN 0in FAT ALL GRD RAW','URMIS #1095 Beef Chuck Chuck Eye Rst (Americas Beef Rst)',,,'Connective tissue 8% seam fat 10%',18,,6.25,,, -13973,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat choice raw','BEEF CHK EYE RST BNL AMERICAS BF RST LN 0in FAT CHOIC RAW','URMIS #1095 Beef Chuck Chuck Eye Rst (Americas Beef Rst)',,,'Connective tissue 9% seam fat 11%',20,,6.25,,, -13974,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean only trimmed to 0in fat select raw','BEEF CHUCK EYE RST BNLESS AMERICAS BF RST LN 0in FAT SEL RAW','URMIS #1095 Beef Chuck Chuck Eye Rst (Americas Beef Rst)',,,'Connective tissue 6% seam fat 9%',15,,6.25,,, -13975,1300,'Beef brisket flat half boneless separable lean and fat trimmed to 0in fat choice raw','BEEF BRISKET FLAT HALF BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS #1623',,,'Connective tissue 1%',1,,6.25,,, -13977,1300,'Beef plate inside skirt steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF PLATE INSIDE SKIRT STEAK LN 0in FAT ALL GRDS CKD BRLD','Plate Skirt Steak',,,'Bone and heavy connective tissue 0% separable fat 3%',3,,6.25,4.27,9.02,3.87 -13979,1300,'Beef plate outside skirt steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF PLATE OUTSIDE SKIRT STEAK LN 0in FAT ALL GRDS CKD BRLD','Plate Skirt Steak',,,'Bone and heavy connective tissue 0% separable fat 5%',5,,6.25,4.27,9.02,3.87 -13980,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF CHUCK SHORT RIBS BNL 0in FAT CHOICE CKED BR','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 7% Seam fat 20%',27,,6.25,,, -13981,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK SHRT RIBS BNLESS LN 0in FAT SEL CKD BRSD','Beef Chuck Short Ribs URMIS #1127',,,'Connnective tissue 6% seam fat 18%',24,,6.25,,, -13982,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat all grades cooked braised','BEEF CHUCK SHRT RIBS BNLESS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 6% seam fat 20%',26,,6.25,,, -13983,1300,'Beef brisket flat half boneless separable lean and fat trimmed to 0in fat select raw','BEEF BRISKET FLAT HALF BNLESS LN & FAT 0in FAT SEL RAW','URMIS #1623',,,'Connective tissue 1%',1,,6.25,,, -13985,1300,'Beef loin bottom sirloin butt tri-tip roast separable lean only trimmed to 0in fat all grades cooked roasted','BF LOIN BTTM SIRLOIN BUTT TRI-TIP LN 0in FAT ALL GRD CKD RSTD',,,,'Bone and connective tissue 1.58% separable fat 4.34%',6,,6.25,,, -14003,1400,'Alcoholic beverage beer regular all','ALCOHOLIC BEV BEER REG ALL',,,'Y',,0,,6.25,3.87,8.37,4.12 -14004,1400,'Alcoholic beverage beer regular BUDWEISER','ALCOHOLIC BEV BEER REG BUDWEISER',,'Anheuser-Busch Inc.',,,0,,6.25,,, -14005,1400,'Alcoholic beverage beer light BUDWEISER SELECT','ALCOHOLIC BEV BEER LT BUDWEISER SEL',,'Anheuser-Busch Inc.',,,0,,,,, -14006,1400,'Alcoholic beverage beer light','ALCOHOLIC BEV BEER LT',,,'Y',,0,,6.25,3.87,8.37,4.12 -14007,1400,'Alcoholic beverage beer light BUD LIGHT','ALCOHOLIC BEV BEER LT BUD LT',,'Anheuser-Busch Inc.',,,0,,6.25,,, -14009,1400,'Alcoholic beverage daiquiri canned','ALCOHOLIC BEV DAIQUIRI CND',,,,,0,,6.25,3.40,8.40,3.90 -14010,1400,'Alcoholic beverage daiquiri prepared-from-recipe','ALCOHOLIC BEV DAIQUIRI PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -14013,1400,'Alcoholic beverage beer light low carb','ALCOHOLIC BEV BEER LT LO CARB',,'Anheuser-Busch Inc.','Y',,0,,,,, -14015,1400,'Alcoholic beverage pina colada canned','ALCOHOLIC BEV PINA COLADA CND',,,,,0,,6.25,3.40,8.50,3.90 -14016,1400,'Beverages almond milk sweetened vanilla flavor ready-to-drink','BEVERAGES ALMOND MILK SWTND VANILLA FLAVOR RTD',,,'Y',,0,,6.38,,, -14017,1400,'Alcoholic beverage pina colada prepared-from-recipe','ALCOHOLIC BEV PINA COLADA PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -14019,1400,'Alcoholic beverage tequila sunrise canned','ALCOHOLIC BEV TEQUILA SUNRISE CND',,,,,0,,6.25,3.40,8.40,3.90 -14021,1400,'Beverages Energy drink Citrus','BEVERAGES ENERGY DRK CITRUS',,,'Y',,0,,,,, -14022,1400,'Beverages MONSTER energy drink low carb','BEVERAGES MONSTER ENERGY DRK LO CARB',,'Monster energy company','Y',,0,,6.25,,, -14024,1400,'Beverages Whiskey sour mix powder','BEVERAGES WHISKEY SOUR MIX PDR',,,,,0,,6.25,3.40,8.40,3.90 -14025,1400,'Alcoholic beverage whiskey sour prepared with water whiskey and powder mix','ALCOHOLIC BEV WHISKEY SOUR PREP W/ H2O WHISKEY & PDR MIX',,,,,0,,,,, -14026,1400,'Beverages THE COCA-COLA COMPANY NOS Zero energy drink sugar-free with guarana fortified with vitamins B6 and B12','BEV COCA-COLA COMY NOS 0 ENEY DRK SUG-FRE GUANA B6 & B12',,'The Coca-Cola Company','Y',,0,,6.25,,, -14027,1400,'Alcoholic beverage whiskey sour canned','ALCOHOLIC BEV WHISKEY SOUR CND',,,,,0,,6.25,3.40,8.40,3.90 -14028,1400,'Beverages Whiskey sour mix bottled','BEVERAGES WHISKEY SOUR MIX BTLD',,,'Y',,0,,6.25,4.00,9.00,4.00 -14029,1400,'Alcoholic beverage whiskey sour prepared from item 14028','ALCOHOLIC BEV WHISKEY SOUR PREP FROM ITEM 14028',,,,,0,,0.00,,, -14030,1400,'Beverages THE COCA-COLA COMPANY NOS energy drink Original grape loaded cherry charged citrus fortified with vitamins B6 and B12','BEV COCA-COLA CO NOS ENGY OGN GRPE CHERY CITR VIT B6 & B12',,'The Coca-Cola Company','Y',,0,,6.25,,, -14031,1400,'Beverages water bottled yumberry pomegranate with anti-oxidants zero calories','BEV H2O BTLD YUMBERRY POMEGRANATE W/ ANTI-OXIDANTS 0 CAL',,,'Y',,0,,6.25,,, -14033,1400,'Beverages ABBOTT EAS whey protein powder','BEVERAGES ABBOTT EAS WHEY PROT PDR',,'Abbotts Ross Products Division','Y',,0,,6.25,,, -14034,1400,'Alcoholic beverage creme de menthe 72 proof','ALCOHOLIC BEV CREME DE MENTHE 72 PROOF',,,'Y',,0,,6.25,2.44,8.37,3.90 -14035,1400,'Beverages ABBOTT EAS soy protein powder','BEVERAGES ABBOTT EAS SOY PROT PDR',,'Abbotts Ross Products Division','Y',,0,,6.25,,, -14036,1400,'Beverages CYTOSPORT Muscle Milk ready-to-drink','BEVERAGES CYTOSPORT MUSCLE MILK RTD',,'CytoSport','Y',,0,,6.25,,, -14037,1400,'Alcoholic beverage distilled all (gin rum vodka whiskey) 80 proof','ALCOHOLIC BEV DISTILLED ALL (GIN RUM VODKA WHISKEY) 80 PROOF',,,'Y',,0,,6.25,,,4.12 -14038,1400,'Beverages OCEAN SPRAY Cran-Energy Cranberry Energy Juice Drink','BEVERAGES OCEAN SPRAY CRAN-ENERGY CRANBERRY ENERGY JUC DRK',,'Ocean Spray Cranberries Inc.','Y',,0,,6.25,,, -14041,1400,'Beverages NESTLE Boost plus nutritional drink ready-to-drink','BEVERAGES NESTLE BOOST PLUS NUTRITIONAL DRK RTD',,'Nestle USA Inc.','Y',,0,,6.38,,, -14044,1400,'Beverages SLIMFAST Meal replacement High Protein Shake Ready-To-Drink 3-2-1 plan','BEVERAGES SLIMFAST MEAL REPLCMNT HI PROT SHAKE RTD 3-2-1',,'Unilever','Y',,0,,,,, -14045,1400,'Beverages UNILEVER SLIMFAST meal replacement regular ready-to-drink 3-2-1 Plan','BEVERAGES UNILEVER SLIMFAST MEAL REPLCMNT REG RTD 3-2-1 PLAN',,'Unilever','Y',,0,,6.38,,, -14047,1400,'Beverages UNILEVER SLIMFAST Shake Mix powder 3-2-1 Plan','BEVERAGES UNILEVER SLIMFAST SHAKE MIX PDR 3-2-1 PLAN',,'Unilever','Y',,0,,6.25,,, -14048,1400,'Beverages FUZE orange mango fortified with vitamins A C E B6','BEVERAGES FUZE ORANGE MANGO FORT W/ VITAMINS A C E B6',,,,,0,,6.25,,, -14050,1400,'Alcoholic beverage distilled rum 80 proof','ALCOHOLIC BEV DISTILLED RUM 80 PROOF',,,'Y',,0,,6.25,,,4.12 -14051,1400,'Alcoholic beverage distilled vodka 80 proof','ALCOHOLIC BEV DISTILLED VODKA 80 PROOF',,,,,0,,6.25,,,4.12 -14052,1400,'Alcoholic beverage distilled whiskey 86 proof','ALCOHOLIC BEV DISTILLED WHISKEY 86 PROOF',,,,,0,,6.25,,,4.12 -14054,1400,'Beverages almond milk chocolate ready-to-drink','BEVERAGES ALMOND MILK CHOC RTD',,,'Y',,0,,,,, -14055,1400,'Beverages UNILEVER SLIMFAST Shake Mix high protein whey powder 3-2-1 Plan ','BEVERAG UNILEV SLIMFAST SHAKE HI PROT WHEY PDR 3-2-1 PLAN ',,'Unilever','Y',,0,,6.38,,, -14056,1400,'Beverages Acai berry drink fortified','BEVERAGES ACAI BERRY DRK FORT',,,'Y',,0,,6.25,,, -14057,1400,'Alcoholic beverage wine dessert sweet','ALCOHOLIC BEV WINE DSSRT SWT',,,'Y',,0,,6.25,3.36,8.37,3.92 -14058,1400,'Beverages Whey protein powder isolate','BEVERAGES WHEY PROT PDR ISOLATE',,,'Y',,0,,6.38,,, -14060,1400,'Beverages Energy Drink with carbonated water and high fructose corn syrup','BEVERAGES ENERGY DRK W/ CARB H2O & HI FRUCTOSE CORN SYRUP',,,'Y',,0,,6.25,,, -14061,1400,'Beverages Energy Drink sugar free','BEVERAGES ENERGY DRK SUGAR FREE',,,'Y',,0,,,,, -14062,1400,'Beverages ABBOTT ENSURE Nutritional Shake Ready-to-Drink','BEVERAGES ABBOTT ENSURE NUTRITIONAL SHAKE RTD',,'Abbotts Ross Products Division','Y',,0,,6.25,,, -14063,1400,'Beverages chocolate powder no sugar added','BEVERAGES CHOC PDR NO SUGAR ADDED',,'Nestle USA Inc.','Y',,0,,6.25,,, -14064,1400,'Beverages Orange juice light No pulp','BEVERAGES ORANGE JUC LT NO PULP',,,'Y',,0,,6.25,,, -14065,1400,'Beverages The COCA-COLA company Hi-C Flashin Fruit Punch','BEVERAGES THE COCA-COLA COMPANY HI-C FLASHIN FRUIT PUNCH',,'The Coca-Cola Company','Y',,0,,6.25,,, -14066,1400,'Beverages Protein powder whey based','BEVERAGES PROT PDR WHEY BSD',,,'Y',,0,,,,, -14067,1400,'Beverages Protein powder soy based','BEVERAGES PROT PDR SOY BSD',,,'Y',,0,,,,, -14073,1400,'Beverages ZEVIA cola','BEVERAGES ZEVIA COLA',,'Zevia',,,0,,6.25,,, -14074,1400,'Beverages ZEVIA cola caffeine free','BEVERAGES ZEVIA COLA CAFFEINE FREE',,'Zevia',,,0,,,,, -14075,1400,'Beverages GEROLSTEINER BRUNNEN GmbH & Co. KG Gerolsteiner naturally sparkling mineral water ','BEVERAGE GMBH & CO. KG GEROLSTEINER NATURALLY SPARK MIN H2O ',,'Beverages GEROLSTEINER BRUNNEN GmbH & Co.KG',,,0,,6.25,,, -14079,1400,'Beverages yellow green colored citrus soft drink with caffeine','BEVERAGES YEL GRN COLORED CITRUS SOFT DRK W/ CAFFEINE',,,'Y',,0,,6.25,,, -14080,1400,'Beverages rich chocolate powder','BEVERAGES RICH CHOC PDR',,'Nestle USA Inc.',,,0,,6.25,,, -14082,1400,'Beverages GEROLSTEINER BRUNNEN GmbH & Co. KG (Gerolsteiner) naturally sparkling mineral bottled water','BEV GEROLSTEINER BRUNNEN NATURALLY SPARKLING MIN BTLD H2O',,'Beverages GEROLSTEINER BRUNNEN GmbH & Co.KG',,,0,,,,, -14083,1400,'Beverages chocolate malt powder prepared with fat free milk','BEVERAGES CHOC MALT PDR PREP W/ FAT FREE MILK',,'Nestle USA Inc.',,,0,,6.38,,, -14084,1400,'Alcoholic beverage wine table all','ALCOHOLIC BEV WINE TABLE ALL',,,'Y',,0,,6.25,3.36,8.37,3.92 -14086,1400,'Beverages V8 SPLASH Smoothies Peach Mango','BEVERAGES V8 SPLASH SMOOTHIES PEACH MANGO',,'Campbell Soup Co.',,,0,,,,, -14087,1400,'Beverages V8 SPLASH Smoothies Strawberry Banana','BEVERAGES V8 SPLASH SMOOTHIES STRAWBERRY BANANA',,'Campbell Soup Co.',,,0,,,,, -14088,1400,'Beverages V8 SPLASH Smoothies Tropical Colada','BEVERAGES V8 SPLASH SMOOTHIES TROPICAL COLADA',,'Campbell Soup Co.',,,0,,,,, -14090,1400,'Beverages Coconut water ready-to-drink unsweetened','BEVERAGES COCNT H2O RTD UNSWTND',,,'Y',,0,,,,, -14091,1400,'Beverages almond milk unsweetened shelf stable','BEVERAGES ALMOND MILK UNSWTND SHELF STABLE',,,'Y',,0,,,,, -14092,1400,'Beverages chocolate almond milk unsweetened shelf-stable fortified with vitamin D2 and E','BEV CHOC ALMOND MILK UNSWTND SHELF-STABLE FORT W/ VIT D2 & E',,,'Y',,0,,6.25,,, -14093,1400,'Beverages The COCA-COLA company Glaceau Vitamin Water Revive Fruit Punch fortified','BEVERAGE COCA-COLA CO GLACEAU VIT H2O REVIVE FRT PUNCH FORT',,'The Coca-Cola Company','Y',,0,,,,, -14095,1400,'Beverages MINUTE MAID Lemonada Limeade','BEVERAGES MINUTE MAID LEMONADA LIMEADE',,'The Coca-Cola Company','Y',,0,,6.25,,, -14096,1400,'Alcoholic beverage wine table red','ALCOHOLIC BEV WINE TABLE RED',,,'Y',,0,,6.25,3.36,8.37,3.92 -14097,1400,'Alcoholic Beverage wine table red Cabernet Sauvignon','ALCOHOLIC BEV WINE TABLE RED CABERNET SAUVIGNON',,,,,0,,6.25,3.36,8.37,3.92 -14098,1400,'Alcoholic Beverage wine table red Cabernet Franc','ALCOHOLIC BEV WINE TABLE RED CABERNET FRANC',,,,,0,,6.25,3.36,8.37,3.92 -14099,1400,'Alcoholic Beverage wine table red Pinot Noir','ALCOHOLIC BEV WINE TABLE RED PINOT NOIR',,,,,0,,6.25,3.36,8.37,3.92 -14100,1400,'Alcoholic Beverage wine table red Syrah','ALCOHOLIC BEV WINE TABLE RED SYRAH',,,,,0,,6.25,3.36,8.37,3.92 -14101,1400,'Alcoholic Beverage wine table red Barbera','ALCOHOLIC BEV WINE TABLE RED BARBERA',,,,,0,,6.25,3.36,8.37,3.92 -14102,1400,'Alcoholic Beverage wine table red Zinfandel','ALCOHOLIC BEV WINE TABLE RED ZINFANDEL',,,,,0,,6.25,3.36,8.37,3.92 -14103,1400,'Alcoholic Beverage wine table red Petite Sirah','ALCOHOLIC BEV WINE TABLE RED PETITE SIRAH',,,,,0,,6.25,3.36,8.37,3.92 -14105,1400,'Alcoholic Beverage wine table red Claret','ALCOHOLIC BEV WINE TABLE RED CLARET',,,,,0,,6.25,3.36,8.37,3.92 -14106,1400,'Alcoholic beverage wine table white','ALCOHOLIC BEV WINE TABLE WHITE',,,'Y',,0,,6.25,3.36,8.37,3.92 -14107,1400,'Alcoholic Beverage wine table red Lemberger','ALCOHOLIC BEV WINE TABLE RED LEMBERGER',,,,,0,,6.25,3.36,8.37,3.92 -14108,1400,'Alcoholic Beverage wine table red Sangiovese','ALCOHOLIC BEV WINE TABLE RED SANGIOVESE',,,,,0,,6.25,3.36,8.37,3.92 -14109,1400,'Alcoholic Beverage wine table red Carignane','ALCOHOLIC BEV WINE TABLE RED CARIGNANE',,,,,0,,6.25,3.36,8.37,3.92 -14113,1400,'Alcoholic beverage wine table white Pinot Gris (Grigio)','ALCOHOLIC BEV WINE TABLE WHITE PINOT GRIS (GRIGIO)',,,,,0,,6.25,3.36,8.37,3.92 -14116,1400,'Alcoholic beverage wine table white Chenin Blanc','ALCOHOLIC BEV WINE TABLE WHITE CHENIN BLANC',,,,,0,,6.25,3.36,3.87,3.92 -14117,1400,'Alcoholic beverage wine table white Fume Blanc','ALCOHOLIC BEV WINE TABLE WHITE FUME BLANC',,,,,0,,6.25,3.36,8.37,3.92 -14119,1400,'Beverages Mixed vegetable and fruit juice drink with added nutrients','BEVERAGES MXD VEG & FRUIT JUC DRK W/ ADDED NUTR','includes V-8 Splash drinks',,'Y',,0,,,,, -14120,1400,'Alcoholic beverage wine table white Muller Thurgau','ALCOHOLIC BEV WINE TABLE WHITE MULLER THURGAU',,,,,0,,6.25,3.36,8.37,3.92 -14121,1400,'Beverages carbonated club soda','BEVERAGES CARB CLUB SODA','soft drink',,'Y',,0,,6.25,3.36,8.37,3.87 -14124,1400,'Alcoholic beverage wine table white Gewurztraminer','ALCOHOLIC BEV WINE TABLE WHITE GEWURZTRAMINER',,,,,0,,6.25,3.36,8.37,3.92 -14125,1400,'Alcoholic beverage wine table white late harvest Gewurztraminer','ALCOHOLIC BEV WINE TABLE WHITE LATE HARVEST GEWURZTRAMINER',,,,,0,,6.25,3.36,8.37,3.92 -14126,1400,'Alcoholic beverage wine table white Semillon','ALCOHOLIC BEV WINE TABLE WHITE SEMILLON',,,,,0,,6.25,3.36,8.37,3.92 -14130,1400,'Carbonated beverage cream soda','CARBONATED BEV CRM SODA','soft drink pop',,'Y',,0,,6.25,3.36,8.37,3.87 -14132,1400,'Alcoholic beverage wine table white Riesling','ALCOHOLIC BEV WINE TABLE WHITE RIESLING',,,,,0,,6.25,3.36,8.37,3.92 -14134,1400,'Alcoholic beverage wine table white Sauvignon Blanc','ALCOHOLIC BEV WINE TABLE WHITE SAUVIGNON BLANC',,,,,0,,6.25,3.36,8.37,3.92 -14135,1400,'Alcoholic beverage wine table white late harvest','ALCOHOLIC BEV WINE TABLE WHITE LATE HARVEST',,,,,0,,6.25,3.36,8.37,3.92 -14136,1400,'Beverages carbonated ginger ale','BEVERAGES CARB GINGER ALE','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14137,1400,'Beverages NESTEA tea black ready-to-drink lemon','BEVERAGES NESTEA TEA BLACK RTD LEMON',,'Nestle USA Inc.',,,0,,6.25,4.00,9.00,4.00 -14138,1400,'Alcoholic beverage wine table white Pinot Blanc','ALCOHOLIC BEV WINE TABLE WHITE PINOT BLANC',,,,,0,,6.25,3.36,8.37,3.92 -14140,1400,'Alcoholic beverage wine table white Muscat','ALCOHOLIC BEV WINE TABLE WHITE MUSCAT',,,,,0,,6.25,3.36,8.37,3.92 -14142,1400,'Beverages carbonated grape soda','BEVERAGES CARB GRAPE SODA','soft drink pop',,,,0,,6.25,3.36,8.37,3.87 -14143,1400,'Beverages carbonated low calorie other than cola or pepper without caffeine','BEVERAGES CARB LO CAL OTHER THAN COLA OR PEPPER WO/ CAFFEINE','soft drink pop soda',,'Y',,0,,,4.00,9.00,4.00 -14144,1400,'Beverages carbonated lemon-lime soda no caffeine','BEVERAGES CARB LEMON-LIME SODA NO CAFFEINE','white soda soft drink pop',,'Y',,0,,6.25,3.36,8.37,3.87 -14145,1400,'Beverages carbonated SPRITE lemon-lime without caffeine','BEVERAGES CARB SPRITE LEMON-LIME WO/ CAFFEINE','soft drink white soda pop','The Coca-Cola Company','Y',,0,,6.25,3.36,8.37,3.87 -14146,1400,'Beverages carbonated low calorie cola or pepper-type with aspartame without caffeine','BEVERAGES CARB LO CAL COLA OR PEPPER-TYPE W/ ASPRT WO/ CAF','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14147,1400,'Beverages carbonated cola without caffeine','BEVERAGES CARB COLA WO/ CAFFEINE','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14148,1400,'Beverages carbonated cola regular','BEVERAGES CARB COLA REG','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14149,1400,'Beverages carbonated reduced sugar cola contains caffeine and sweeteners','BEVERAGES CARB RED SUGAR COLA CONTAINS CAFFEINE & SWEETENERS',,,'Y',,0,,6.25,3.36,8.37,3.87 -14150,1400,'Beverages carbonated orange','BEVERAGES CARB ORANGE','soft drink pop soda',,,,0,,6.25,3.36,8.37,3.87 -14151,1400,'Beverages carbonated low calorie other than cola or pepper with aspartame contains caffeine','BEV CARB LO CAL OTHER THAN COLA OR PEPPER W/ ASPRT CAFFEINE','soft drink pop soda',,'Y',,0,,6.25,4.00,9.00,4.00 -14152,1400,'Alcoholic Beverage wine table red Burgundy','ALCOHOLIC BEV WINE TABLE RED BURGUNDY',,,,,0,,6.25,3.36,8.37,3.92 -14153,1400,'Beverages carbonated pepper-type contains caffeine','BEVERAGES CARB PEPPER-TYPE CONTAINS CAFFEINE','soft drink pop soda',,,,0,,6.25,3.36,8.37,3.87 -14154,1400,'Beverages Energy drink RED BULL','BEVERAGES ENERGY DRK RED BULL',,'Red Bull North America/Red Bull GmbH','Y',,0,,6.25,4.00,9.00,4.00 -14155,1400,'Beverages carbonated tonic water','BEVERAGES CARB TONIC H2O','soda soft drink',,'Y',,0,,6.25,3.36,8.37,3.87 -14156,1400,'Beverages Energy drink RED BULL sugar free with added caffeine niacin pantothenic acid vitamins B6 and B12','BEVERAGES ENERGY DRK RED BULL SUGAR FREE W/ ADDED CAFFEINE ',,'Red Bull North America/Red Bull GmbH','Y',,0,,6.25,4.00,9.00,4.00 -14157,1400,'Beverages carbonated root beer','BEVERAGES CARB ROOT BEER','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14158,1400,'Alcoholic Beverage wine table red Gamay','ALCOHOLIC BEV WINE TABLE RED GAMAY',,,,,0,,6.25,3.36,8.37,3.92 -14159,1400,'Alcoholic Beverage wine table red Mouvedre','ALCOHOLIC BEV WINE TABLE RED MOUVEDRE',,,,,0,,6.25,3.36,8.37,3.92 -14160,1400,'Alcoholic beverage wine table white Chardonnay','ALCOHOLIC BEV WINE TABLE WHITE CHARDONNAY',,,,,0,,6.25,3.36,8.37,3.92 -14161,1400,'Beverages Kiwi Strawberry Juice Drink','BEVERAGES KIWI STRAWBERRY JUC DRK',,,'Y',,0,,6.25,,, -14162,1400,'Beverages Apple juice drink light fortified with vitamin C','BEVERAGES APPL JUC DRK LT FORT W/ VIT C',,'Motts INC.','Y',,0,,6.25,,, -14163,1400,'Beverages chocolate drink milk and soy based ready to drink fortified','BEVERAGES CHOC DRK MILK & SOY BSD READY TO DRK FORT',,,'Y',,0,,6.25,,, -14164,1400,'Beverages chocolate malt powder prepared with 1% milk fortified','BEVERAGES CHOC MALT PDR PREP W/ 1% MILK FORT',,,,,0,,6.38,,, -14165,1400,'Beverages carbonated limeade high caffeine','BEVERAGES CARB LIMEADE HI CAFFEINE',,,,,0,,,,, -14166,1400,'Beverages carbonated low calorie cola or pepper-types with sodium saccharin contains caffeine','BEV CARB LO CAL COLA OR PEPER-TYPE W/ NA SACCHARIN CAFFEINE','soft drink pop soda',,,,0,,6.25,3.87,8.37,3.36 -14167,1400,'Beverages POWERADE Zero Mixed Berry','BEVERAGES POWERADE ZERO MXD BERRY',,'The Coca-Cola Company','Y',,0,,6.25,,, -14168,1400,'Beverages Carob-flavor beverage mix powder','BEVERAGES CAROB-FLAVOR BEV MIX PDR',,,,,0,,6.25,3.47,8.37,3.90 -14169,1400,'Beverages Carob-flavor beverage mix powder prepared with whole milk','BEVERAGES CAROB-FLAVOR BEV MIX PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14171,1400,'Beverages coconut milk sweetened fortified with calcium vitamins A B12 D2','BEVERAGES COCNT MILK SWTND FORT W/ CA VITAMINS A B12 D2',,,'Y',,0,,,,, -14173,1400,'Beverages coffee ready to drink vanilla light milk based sweetened','BEVERAGES COFFEE READY TO DRK VANILLA LT MILK BSD SWTND',,'Starbucks Coffee Company',,,0,,6.25,,, -14174,1400,'Beverages Lemonade fruit juice drink light fortified with vitamin E and C','BEVE LEMONADE FRUIT JUC DRK LT FORT W/ VIT E & C',,,'Y',,0,,6.25,,, -14177,1400,'Beverages chocolate-flavor beverage mix powder prepared with whole milk','BEVERAGES CHOCOLATE-FLAVOR BEV MIX PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14179,1400,'Beverages coffee ready to drink milk based sweetened','BEVERAGES COFFEE READY TO DRK MILK BSD SWTND',,,'Y',,0,,6.38,,, -14180,1400,'Beverages coffee brewed breakfast blend','BEVERAGES COFFEE BREWED BRKFST BLEND',,,,,0,,,,, -14181,1400,'Beverages chocolate syrup','BEVERAGES CHOC SYRUP',,,'Y',,0,,6.25,4.00,9.00,4.00 -14182,1400,'Beverages chocolate syrup prepared with whole milk','BEVERAGES CHOC SYRUP PREP W/ WHL MILK',,,,,0,,6.38,,, -14183,1400,'Beverages coffee ready to drink iced mocha milk based','BEVERAGES COFFEE READY TO DRK ICED MOCHA MILK BSD',,,,,0,,6.38,,, -14185,1400,'Beverages tea Oolong brewed','BEVERAGES TEA OOLONG BREWED',,,'Y',,0,,,,, -14187,1400,'Beverages Clam and tomato juice canned','BEVERAGES CLAM & TOMATO JUC CND',,,,,0,,6.25,3.80,8.80,4.00 -14188,1400,'Beverages tea green ready to drink ginseng and honey sweetened','BEVERAGES TEA GRN READY TO DRK GINSENG & HONEY SWTND',,,'Y',,0,,,,, -14189,1400,'Beverages The COCA-COLA company Minute Maid Lemonade','BEVERAGES THE COCA-COLA COMPANY MINUTE MAID LEMONADE',,'The Coca-Cola Company','Y',,0,,6.25,,, -14190,1400,'Beverages tea green ready-to-drink diet','BEVERAGES TEA GRN RTD DIET',,,'Y',,0,,,,, -14191,1400,'Beverages tea green ready-to-drink citrus diet fortified with vitamin C','BEVERAGES TEA GRN RTD CITRUS DIET FORT W/ VIT C',,,'Y',,0,,6.25,,, -14192,1400,'Beverages Cocoa mix powder','BEVERAGES COCOA MIX PDR','hot chocolate',,'Y',,0,,6.25,4.00,9.00,4.00 -14194,1400,'Beverages Cocoa mix powder prepared with water','BEVERAGES COCOA MIX PDR PREP W/ H2O','hot chocolate',,,,0,,,,, -14195,1400,'Beverages Cocoa mix NESTLE Hot Cocoa Mix Rich Chocolate With Marshmallows','BEV COCOA MIX NESTLE HOT COCOA MIX RICH CHOC W/ MARSHMALLOWS','hot chocolate','Nestle USA Inc.',,,0,,,,, -14196,1400,'Beverages Cocoa mix no sugar added powder','BEVERAGES COCOA MIX NO SUGAR ADDED PDR','hot chocolate',,'Y',,0,,6.25,4.00,9.00,4.00 -14197,1400,'Cocoa mix NESTLE Rich Chocolate Hot Cocoa Mix','COCOA MIX NESTLE RICH CHOC HOT COCOA MIX','hot chocolate','Nestle USA Inc.',,,0,,,,, -14199,1400,'Beverages tea black ready-to-drink lemon sweetened','BEVERAGES TEA BLACK RTD LEMON SWTND',,,'Y',,0,,,,, -14201,1400,'Beverages coffee brewed prepared with tap water decaffeinated','BEVERAGES COFFEE BREWED PREP W/ TAP H2O DECAFFEINATED',,,'Y',,0,,6.25,3.47,8.37,4.07 -14202,1400,'Beverages coffee brewed espresso restaurant-prepared decaffeinated','BEVERAGES COFFEE BREWED ESPRESSO REST-PREP DECAFFEINATED',,,'Y',,0,,,,, -14203,1400,'Beverages coffee instant regular half the caffeine','BEVERAGES COFFEE INST REG HALF THE CAFFEINE',,,'Y',,0,,6.25,3.47,8.37,4.07 -14204,1400,'Beverages coffee and cocoa instant decaffeinated with whitener and low calorie sweetener','BEVERAGES COFFEE&COCOA INST DECAFFEINATED W/WHTNR&LOCALSWTNR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14206,1400,'Beverages tea green ready-to-drink sweetened','BEVERAGES TEA GRN RTD SWTND',,,'Y',,0,,,,, -14207,1400,'Beverages tea ready-to-drink lemon diet','BEVERAGES TEA RTD LEMON DIET',,,'Y',,0,,,,, -14209,1400,'Beverages coffee brewed prepared with tap water','BEVERAGES COFFEE BREWED PREP W/ TAP H2O',,,'Y',,0,,6.25,3.47,8.37,4.07 -14210,1400,'Beverages coffee brewed espresso restaurant-prepared','BEVERAGES COFFEE BREWED ESPRESSO REST-PREP',,,'Y',,0,,6.25,3.47,8.37,4.07 -14211,1400,'Beverages tea black ready-to-drink lemon diet','BEVERAGES TEA BLACK RTD LEMON DIET',,,'Y',,0,,6.25,,, -14214,1400,'Beverages coffee instant regular powder','BEVERAGES COFFEE INST REG PDR',,,'Y',,0,,6.25,3.47,8.37,4.07 -14215,1400,'Beverages coffee instant regular prepared with water','BEVERAGES COFFEE INST REG PREP W/ H2O',,,,,0,,0.00,,, -14216,1400,'Beverages aloe vera juice drink fortified with Vitamin C','BEVERAGES ALOE VERA JUC DRK FORT W/ VIT C',,,'Y',,0,,6.25,,, -14217,1400,'Beverages OCEAN SPRAY Cran Grape','BEVERAGES OCEAN SPRAY CRAN GRAPE',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14218,1400,'Beverages coffee instant decaffeinated powder','BEVERAGES COFFEE INST DECAFFEINATED PDR',,,'Y',,0,,6.25,3.47,8.37,4.07 -14219,1400,'Beverages coffee instant decaffeinated prepared with water','BEVERAGES COFFEE INST DECAFFEINATED PREP W/ H2O',,,,,0,,0.00,,, -14220,1400,'Beverages OCEAN SPRAY Cranberry-Apple Juice Drink bottled','Beverages OCEAN SPRAY Cranberry-Apple Juice Drink bottled',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14221,1400,'Beverages OCEAN SPRAY Diet Cranberry Juice','BEVERAGES OCEAN SPRAY DIET CRANBERRY JUC',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14222,1400,'Beverages coffee instant with chicory','BEVERAGES COFFEE INST W/ CHICORY',,,,,0,,6.25,3.20,8.37,4.10 -14223,1400,'Beverages coffee instant chicory','BEVERAGES COFFEE INST CHICORY',,,,,0,,,,, -14224,1400,'Beverages coffee instant mocha sweetened','BEVERAGES COFFEE INST MOCHA SWTND',,,'Y',,0,,6.25,4.00,9.00,4.00 -14226,1400,'Beverages OCEAN SPRAY Light Cranberry and Raspberry Flavored Juice','BEVERAGES OCEAN SPRAY LT CRANBERRY & RASPBERRY FLAV JUC',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14227,1400,'Beverages OCEAN SPRAY White Cranberry Strawberry Flavored Juice Drink','BEVERAGES OCEAN SPRAYWHITE CRANBERRY STRAWBERRY FLAV JUC DRK',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14231,1400,'Beverages KRAFT coffee instant French Vanilla Cafe','BEVERAGES KRAFT COFFEE INST FRENCH VANILLA CAFE',,'Kraft Foods Inc.',,,0,,,,, -14233,1400,'Beverages OCEAN SPRAY Cran Raspberry Juice Drink','BEVERAGEES OCEAN SPRAY CRAN RASPBERRY JUICE DRINK',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14234,1400,'Beverages OCEAN SPRAY Cran Lemonade','BEVERAGES OCEAN SPRAY CRAN LEMONADE',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14235,1400,'Beverages OCEAN SPRAY Diet Cran Cherry','BEV OCEAN SPRAY CRAN CHERRY DIET',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14236,1400,'Beverages coffee substitute cereal grain beverage powder','BEVERAGES COFFEE SUB CRL GRAIN BEV PDR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14237,1400,'Beverages coffee substitute cereal grain beverage prepared with water','BEVERAGES COFFEE SUB CRL GRAIN BEV PREP W/ H2O',,,'Y',,0,,,,, -14238,1400,'Beverages cranberry-apple juice drink bottled','BEVERAGES CRANBERRY-APPLE JUC DRK BTLD',,,,,0,,6.25,3.36,8.37,3.90 -14239,1400,'Alcoholic beverage malt beer hard lemonade','ALCOHOLIC BEV MALT BEER HARD LEMONADE',,,'Y',,0,,6.25,,, -14240,1400,'Beverages cranberry-apricot juice drink bottled','BEVERAGES CRANBERRY-APRICOT JUC DRK BTLD',,,,,0,,6.25,3.36,8.37,3.90 -14241,1400,'Beverages cranberry-grape juice drink bottled','BEVERAGES CRANBERRY-GRAPE JUC DRK BTLD',,,,,0,,6.25,3.36,8.37,3.90 -14242,1400,'Cranberry juice cocktail bottled','CRANBERRY JUC COCKTAIL BTLD',,,'Y',,0,,6.25,3.36,8.37,3.90 -14243,1400,'Cranberry juice cocktail bottled low calorie with calcium saccharin and corn sweetener','CRANBERRY JUC COCKTAIL BTLD LO CAL W/CA SACCHARIN&CORN SWTNR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14245,1400,'Beverages Eggnog-flavor mix powder prepared with whole milk','BEVERAGES EGGNOG-FLAVOR MIX PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14246,1400,'Beverages tea green instant decaffeinated lemon unsweetened fortified with vitamin C','BEVERAGES TEA GRN INST DECAFFEI LEMON UNSWTND FORT W/ VIT C',,,'Y',,0,,6.25,,, -14247,1400,'Beverages tea black ready to drink','BEVERAGES TEA BLACK READY TO DRK',,'McDonalds Corporation','Y',,0,,6.25,,, -14248,1400,'Alcoholic beverage beer light higher alcohol','ALCOHOLIC BEV BEER LT HIGHER ALCOHOL',,,'Y',,0,,6.25,,, -14250,1400,'Beverages AMBER hard cider','BEVERAGES AMBER HARD CIDER',,,'Y',,0,,6.25,,, -14251,1400,'Alcoholic beverages beer higher alcohol','ALCOHOLIC BEVERAGES BEER HIGHER ALCOHOL',,,'Y',,0,,6.25,,, -14252,1400,'Beverages Malt liquor beverage','BEVERAGES MALT LIQUOR BEV',,,'Y',,0,,6.25,,, -14253,1400,'Alcoholic beverages wine rose','ALCOHOLIC BEVERAGES WINE ROSE',,,'Y',,0,,6.25,,, -14255,1400,'Beverages OCEAN SPRAY Cran Pomegranate','BEVERAGES OCEAN SPRAY CRAN POMEGRANATE',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14256,1400,'Beverages OCEAN SPRAY Cran Cherry','BEVERAGES OCEAN SPRAY CRAN CHERRY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14257,1400,'Beverages OCEAN SPRAY Light Cranberry','BEVERAGES OCEAN SPRAY LT CRANBERRY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14258,1400,'Beverages OCEAN SPRAY White Cranberry Peach','Beverages OCEAN SPRAY White Cranberry Peach',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14259,1400,'Beverages OCEAN SPRAY Light Cranberry Concord Grape','BEVERAGES OCEAN SPRAY LT CRANBERRY CONCORD GRAPE',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14260,1400,'Beverages tea green brewed decaffeinated','BEVERAGES TEA GRN BREWED DECAFFEINATED',,,'Y',,0,,6.25,,, -14261,1400,'Beverages tea green ready to drink unsweetened','BEVERAGES TEA GRN READY TO DRK UNSWTND',,,'Y',,0,,6.25,,, -14262,1400,'Beverages citrus fruit juice drink frozen concentrate','BEVERAGES CITRUS FRUIT JUC DRK FRZ CONC',,,'Y',,0,,6.25,3.36,8.37,3.90 -14263,1400,'Beverages citrus fruit juice drink frozen concentrate prepared with water','BEVERAGES CITRUS FRUIT JUC DRK FRZ CONC PREP W/ H2O',,,,,0,,0.00,,, -14264,1400,'Beverages fruit punch drink without added nutrients canned','BEVERAGES FRUIT PUNCH DRK WO/ ADDED NUTR CND',,,'Y',,0,,,,, -14267,1400,'Beverages Fruit punch drink with added nutrients canned','BEVERAGES FRUIT PUNCH DRK W/ ADDED NUTR CND',,,'Y',,0,,6.25,3.36,8.37,3.90 -14268,1400,'Beverages Fruit punch drink frozen concentrate','BEVERAGES FRUIT PUNCH DRK FRZ CONC',,,,,0,,6.25,3.36,8.37,3.90 -14269,1400,'Beverages Fruit punch drink frozen concentrate prepared with water','BEVERAGES FRUIT PUNCH DRK FRZ CONC PREP W/ H2O',,,,,0,,0.00,,, -14270,1400,'Beverages coffee instant vanilla sweetened decaffeinated with non dairy creamer','BEVERAGES COFFEE INST VANILA SWTND DECAFF W/ NON DAIRY CREAM',,,'Y',,0,,6.25,,, -14276,1400,'Beverages Tropical Punch ready-to-drink','BEVERAGES TROPICAL PUNCH RTD',,'Kraft Foods Inc.','Y',,0,,,,, -14277,1400,'Beverages grape drink canned','BEVERAGES GRAPE DRK CND',,,'Y',,0,,6.25,3.36,8.37,3.90 -14278,1400,'Beverages tea green brewed regular','BEVERAGES TEA GRN BREWED REG',,,'Y',,0,,,,, -14279,1400,'Beverages tea black ready-to-drink peach diet','BEVERAGES TEA BLACK RTD PEACH DIET',,,'Y',,0,,,,, -14280,1400,'Beverages tea black ready to drink decaffeinated diet','BEVERAGES TEA BLACK READY TO DRK DECAFFEINATED DIET',,,'Y',,0,,6.25,,, -14281,1400,'Beverages tea black ready to drink decaffeinated','BEVERAGES TEA BLACK READY TO DRK DECAFFEINATED',,,'Y',,0,,6.25,,, -14282,1400,'Beverages grape juice drink canned','BEVERAGES GRAPE JUC DRK CND',,,'Y',,0,,6.25,3.36,8.37,3.90 -14284,1400,'Beverages Cranberry juice cocktail','BEVERAGES CRANBERRY JUC COCKTAIL',,,,,0,,,,, -14285,1400,'Beverages OCEAN SPRAY Ruby Red cranberry','BEVERAGES OCEAN SPRAY RUBY RED CRANBERRY',,'Ocean Spray Cranberries Inc.',,,0,,6.25,,, -14286,1400,'Beverages MOTTS Apple juice light fortified with vitamin C','BEVERAGES MOTTS APPL JUC LT FORT W/ VIT C',,'Motts INC.',,,0,,6.25,,, -14287,1400,'Beverages Lemonade powder','BEVERAGES LEMONADE PDR',,,'Y',,0,,6.25,3.36,8.37,3.80 -14288,1400,'Lemonade powder prepared with water','LEMONADE PDR PREP W/H2O',,,,,0,,0.00,,, -14291,1400,'Beverages SNAPPLE tea black and green ready to drink peach diet','BEVERAGES SNAPPLE TEA BLACK & GRN READY TO DRK PEACH DIET',,'Snapple Beverage Corporation',,,0,,6.25,,, -14292,1400,'Lemonade frozen concentrate white','LEMONADE FRZ CONC WHITE',,,'Y',,0,,6.25,3.36,8.37,3.80 -14293,1400,'Lemonade frozen concentrate white prepared with water','LEMONADE FRZ CONC WHITE PREP W/H2O',,,,,0,,0.00,,, -14294,1400,'Beverages SNAPPLE tea black and green ready to drink lemon diet','BEVERAGES SNAPPLE TEA BLACK & GRN READY TO DRK LEMON DIET',,'Snapple Beverage Corporation',,,0,,6.25,,, -14296,1400,'Beverages lemonade-flavor drink powder','BEVERAGES LEMONADE-FLAVOR DRK PDR',,,'Y',,0,,6.25,3.36,8.37,3.80 -14297,1400,'Beverages lemonade-flavor drink powder prepared with water','BEVERAGES LEMONADE-FLAVOR DRK PDR PREP W/ H2O',,,,,0,,0.00,,, -14303,1400,'Limeade frozen concentrate prepared with water','LIMEADE FRZ CONC PREP W/H2O',,,,,0,,,,, -14305,1400,'Malt beverage includes non-alcoholic beer','MALT BEV INCL NON-ALCOHOLIC BEER',,,'Y',,0,,6.25,3.87,8.37,4.12 -14309,1400,'Beverages OVALTINE Classic Malt powder','BEVERAGES OVALTINE CLASSIC MALT PDR',,'Nestle USA Inc.','Y',,0,,6.25,4.00,9.00,4.00 -14310,1400,'Beverages Malted drink mix natural with added nutrients powder prepared with whole milk','BEVERA MALTED DRK MIX NAT W/ ADD NUTR PDR PREP W/ WHL MILK',,,,,0,,,,, -14311,1400,'Beverages Malted drink mix natural powder dairy based.','BEVERAGES MALTED DRK MIX NAT PDR DAIRY BASED.',,,'Y',,0,,6.25,4.00,9.00,4.00 -14312,1400,'Beverages Malted drink mix natural powder prepared with whole milk','BEVERAGES MALTED DRK MIX NAT PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14315,1400,'Beverages OVALTINE chocolate malt powder','BEVERAGES OVALTINE CHOC MALT PDR',,'Ovaltine','Y',,0,,6.25,4.00,9.00,4.00 -14316,1400,'Beverages Malted drink mix chocolate with added nutrients powder prepared with whole milk','BEVERAG MALT DRK MIX CHOC W/ ADDED NUTR PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14317,1400,'Beverages malted drink mix chocolate powder','BEVERAGES MALTED DRK MIX CHOC PDR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14318,1400,'Beverages Malted drink mix chocolate powder prepared with whole milk','BEVERAGES MALTED DRK MIX CHOC PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14323,1400,'Beverages orange drink canned with added vitamin C','BEVERAGES ORANGE DRK CND W/ ADDED VIT C',,,'Y',,0,,6.25,3.36,8.37,3.90 -14327,1400,'Beverages orange and apricot juice drink canned','BEVERAGES ORANGE & APRICOT JUC DRK CND',,,,,0,,6.25,3.36,8.37,3.90 -14334,1400,'Beverages pineapple and grapefruit juice drink canned','BEVERAGES PNAPPL & GRAPEFRUIT JUC DRK CND',,,,,0,,6.25,3.36,8.37,3.90 -14341,1400,'Beverages pineapple and orange juice drink canned','BEVERAGES PNAPPL & ORANGE JUC DRK CND',,,,,0,,6.25,3.36,8.37,3.90 -14347,1400,'Shake fast food vanilla','SHAKE FAST FOOD VANILLA',,,'Y',,0,,6.38,4.27,8.80,3.90 -14350,1400,'Strawberry-flavor beverage mix powder','STRAWBERRY-FLAVOR BEV MIX PDR',,,'Y',,0,,6.25,3.90,8.37,3.90 -14351,1400,'Beverages Strawberry-flavor beverage mix powder prepared with whole milk','BEVERAGES STRAWBERRY-FLAVOR BEV MIX PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14352,1400,'Beverages tea black brewed prepared with tap water decaffeinated','BEVERAGES TEA BLACK BREWED PREP W/ TAP H2O DECAFFEINATED',,,'Y',,0,,,,, -14353,1400,'Beverages tea instant decaffeinated unsweetened','BEVERAGES TEA INST DECAFFEINATED UNSWTND',,,'Y',,0,,6.25,4.00,9.00,4.00 -14355,1400,'Beverages tea black brewed prepared with tap water','BEVERAGES TEA BLACK BREWED PREP W/ TAP H2O',,,'Y',,0,,6.25,2.44,8.37,3.57 -14356,1400,'Beverages tea instant decaffeinated lemon diet','BEVERAGES TEA INST DECAFFEINATED LEMON DIET',,,'Y',,0,,6.25,2.44,8.37,3.80 -14357,1400,'Beverages tea instant decaffeinated lemon sweetened','BEVERAGES TEA INST DECAFFEINATED LEMON SWTND',,,,,0,,6.25,4.00,9.00,4.00 -14366,1400,'Beverages tea instant unsweetened powder','BEVERAGES TEA INST UNSWTND PDR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14367,1400,'Beverages tea instant unsweetened prepared with water','BEVERAGES TEA INST UNSWTND PREP W/ H2O',,,'Y',,0,,0.00,,, -14368,1400,'Beverages tea instant lemon unsweetened','BEVERAGES TEA INST LEMON UNSWTND',,,'Y',,0,,6.25,4.00,9.00,4.00 -14370,1400,'Beverages tea instant lemon sweetened powder','BEVERAGES TEA INST LEMON SWTND PDR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14371,1400,'Beverages tea instant lemon sweetened prepared with water','BEVERAGES TEA INST LEMON SWTND PREP W/ H2O',,,,,0,,0.00,,, -14375,1400,'Beverages tea instant sweetened with sodium saccharin lemon-flavored powder','BEVERAGES TEA INST SWTND W/ NA SACCHARIN LEMON-FLAVORED PDR',,,,,0,,6.25,2.44,8.37,3.80 -14376,1400,'Beverages tea instant lemon diet','BEVERAGES TEA INST LEMON DIET',,,'Y',,0,,0.00,,, -14381,1400,'Beverages tea herb other than chamomile brewed','BEVERAGES TEA HERB OTHER THAN CHAMOMILE BREWED',,,'Y',,0,,6.25,2.44,8.37,3.57 -14384,1400,'Beverages water bottled PERRIER','BEVERAGES H2O BTLD PERRIER',,'Nestle Waters North America Inc.',,,0,,6.25,,, -14385,1400,'Beverages water bottled POLAND SPRING','BEVERAGES H2O BTLD POLAND SPRING',,'Nestle Waters North America Inc.',,,0,,6.25,,, -14390,1400,'Beverages cocoa mix with aspartame powder prepared with water','BEVERAGES COCOA MIX W/ ASPRT PDR PREP W/ H2O','hot chocolate',,,,0,,,,, -14400,1400,'Beverages carbonated cola fast-food cola','BEVERAGES CARB COLA FAST-FOOD COLA','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14405,1400,'Beverages fruit punch juice drink frozen concentrate','BEVERAGES FRUIT PUNCH JUC DRK FRZ CONC',,,,,0,,6.25,3.36,8.37,3.90 -14406,1400,'Beverages fruit punch juice drink frozen concentrate prepared with water','BEVERAGES FRUIT PUNCH JUC DRK FRZ CONC PREP W/ H2O',,,,,0,,0.00,,, -14407,1400,'Beverages orange-flavor drink breakfast type powder','BEVERAGES ORANGE-FLAVOR DRK BRKFST TYPE PDR',,,'Y',,0,,6.25,3.36,8.37,3.90 -14408,1400,'Beverages orange-flavor drink breakfast type powder prepared with water','BEVERAGES ORANGE-FLAVOR DRK BRKFST TYPE PDR PREP W/ H2O',,,,,0,,,,, -14409,1400,'Beverages Orange-flavor drink breakfast type low calorie powder','BEVERAGES ORANGE-FLAVOR DRK BRKFST TYPE LO CAL PDR',,,,,0,,,,, -14411,1400,'Beverages water tap drinking','BEVERAGES H2O TAP DRINKING',,,'Y',,0,,,,, -14412,1400,'Beverages water tap well','BEVERAGES H2O TAP WELL',,,,,0,,6.25,0.00,0.00,0.00 -14414,1400,'Alcoholic beverage liqueur coffee 53 proof','ALCOHOLIC BEV LIQUEUR COFFEE 53 PROOF',,,'Y',,0,,6.25,3.47,8.37,3.90 -14415,1400,'Alcoholic beverage liqueur coffee with cream 34 proof','ALCOHOLIC BEV LIQUEUR COFFEE W/ CRM 34 PROOF',,,'Y',,0,,6.38,4.20,8.80,3.90 -14416,1400,'Beverages carbonated low calorie cola or pepper-type with aspartame contains caffeine','BEVERAGES CARB LO CAL COLA OR PEPPER-TYPE W/ ASPRT CAFFEINE','soft drink pop soda',,'Y',,0,,6.25,3.36,8.37,3.87 -14421,1400,'Beverages coffee substitute cereal grain beverage powder prepared with whole milk','BEVERAGES COFFEE SUB CRL GRAIN BEV PDR PREP W/ WHL MILK',,,,,0,,6.38,,, -14422,1400,'Beverages Dairy drink mix chocolate reduced calorie with low-calorie sweeteners powder','BEV DAIRY DRK MIX CHOC RED CAL W/ LOW-CAL SWEETENERS PDR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14423,1400,'Beverages dairy drink mix chocolate reduced calorie with aspartame powder prepared with water and ice','BEVE DARY DRK MIX CHC RED CAL W/ ASPRT PDR PREP W/ H2O & ICE',,,,,0,,0.00,,, -14424,1400,'Beverages Orange-flavor drink breakfast type with pulp frozen concentrate.','BEV ORANGE-FLAVO DRK BRKFST TYPE W/ PULP FRZ CON. NOT MANUF.',,,,,0,,6.25,3.36,8.37,3.90 -14425,1400,'Beverages Orange-flavor drink breakfast type with pulp frozen concentrate prepared with water','BEVE ORANGE-FLAV DRK BRKFST TYPE W/ PULP FRZ CONC PRE W/ H2O',,,,,0,,0.00,,, -14426,1400,'Beverages Orange drink breakfast type with juice and pulp frozen concentrate','BEVERAGES ORANGE DRK BRKFST TYPE W/ JUC & PULP FRZ CONC',,,,,0,,6.25,3.36,8.37,3.90 -14427,1400,'Beverages Orange drink breakfast type with juice and pulp frozen concentrate prepared with water','BEV ORANGE DRK BRKFST TYPE W/ JUC & PULP FRZ CONC PRE W/ H2O',,,,,0,,0.00,,, -14428,1400,'Beverages shake fast food strawberry','BEVERAGES SHAKE FAST FD STRAWBERRY',,,,,0,,6.38,4.27,8.80,3.90 -14429,1400,'Beverages water tap municipal','BEVERAGES H2O TAP MUNICIPAL',,,'Y',,0,,6.25,,, -14430,1400,'Cranberry juice cocktail frozen concentrate','CRANBERRY JUC COCKTAIL FRZ CONC',,,,,0,,6.25,3.36,8.37,3.90 -14431,1400,'Cranberry juice cocktail frozen concentrate prepared with water','CRANBERRY JUC COCKTAIL FRZ CONC PREP W/ H2O',,,,,0,,,,, -14432,1400,'Beverages water bottled non-carbonated DANNON','BEVERAGES H2O BTLD NON-CARBONATED DANNON',,'The Dannon Company Inc.',,,0,,6.25,4.00,9.00,4.00 -14433,1400,'Beverages water bottled non-carbonated PEPSI AQUAFINA','BEVERAGES H2O BTLD NON-CARBONATED PEPSI AQUAFINA',,'Pepsi-Cola North America',,,0,,6.25,4.00,9.00,4.00 -14434,1400,'Beverages The COCA-COLA company DASANI water bottled non-carbonated','BEVERAGES THE COCA-COLA COMP DASANI H2O BTLD NON-CARBONATED',,'The Coca-Cola Company',,,0,,6.25,4.00,9.00,4.00 -14436,1400,'Beverages orange breakfast drink ready-to-drink with added nutrients','BEVERAGES ORANGE BRKFST DRK RTD W/ ADDED NUTR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14437,1400,'Beverages water bottled non-carbonated CALISTOGA','BEVERAGES H2O BTLD NON-CARBONATED CALISTOGA',,'Nestle Waters North America Inc.',,,0,,6.25,4.00,9.00,4.00 -14438,1400,'Beverages water bottled non-carbonated CRYSTAL GEYSER','BEVERAGES H2O BTLD NON-CARBONATED CRYSTAL GEYSER',,'Crystal Geyser Alpine Spring Water',,,0,,6.25,4.00,9.00,4.00 -14439,1400,'Water bottled non-carbonated NAYA','WATER BTLD NON-CARBONATED NAYA',,'NAYA Inc.',,,0,,6.25,4.00,9.00,4.00 -14440,1400,'Beverages DANNON water bottled non-carbonated with Fluoride','BEVERAGES H2O BTLD NON-CARBONATED DANNON FLUORIDE TO GO',,'DANNON Fluoride To Go',,,0,,6.25,4.00,9.00,4.00 -14450,1400,'Beverages drink mix QUAKER OATS GATORADE orange flavor powder','BEVERAGES DRK MIX QUAKER OATS GATORADE ORANGE FLAVOR PDR',,'Quaker Oats Company - The Gatorade Company a unit of Pepsi Co.',,,0,,6.25,4.00,9.00,4.00 -14460,1400,'Beverages PEPSICO QUAKER Gatorade G performance O 2 ready-to-drink.','BEVERAGES PEPSICO QUAKER GATORADE G PERFORMANCE O 2 RTD.','thirst quencher Gatorade G02 Perform','Quaker Oats Company - The Gatorade Company a unit of Pepsi Co.','Y',,0,,6.25,4.00,9.00,4.00 -14461,1400,'Beverages COCA-COLA POWERADE lemon-lime flavored ready-to-drink','BEVERAGES COCA-COLA POWERADE LEMON-LIME FLAV RTD','thirst quencher','The Coca-Cola Company','Y',,0,,6.25,4.00,9.00,4.00 -14462,1400,'Beverages Propel Zero fruit-flavored non-carbonated','BEVERAGES PROPEL ZERO FRUIT-FLAVORED NON-CARBONATED','thirst quencher sport drink',,'Y',,0,,,,, -14475,1400,'Beverages ARIZONA tea ready-to-drink lemon','BEVERAGES ARIZONA TEA RTD LEMON',,'Arizona Beverage Co.',,,0,,6.25,4.00,9.00,4.00 -14476,1400,'Beverages LIPTON BRISK tea black ready-to-drink lemon','BEVERAGES LIPTON BRISK TEA BLACK RTD LEMON',,'Lipton',,,0,,6.25,4.00,9.00,4.00 -14530,1400,'Whiskey sour mix bottled with added potassium and sodium','WHISKEY SOUR MIX BTLD W/ K&NA',,,,,0,,6.25,3.40,8.40,3.90 -14531,1400,'Alcoholic beverage whiskey sour','ALCOHOLIC BEV WHISKEY SOUR',,,,,0,,0.00,,, -14532,1400,'Alcoholic beverage distilled all (gin rum vodka whiskey) 94 proof','ALCOHOLIC BEV DISTILLED ALL (GIN RUM VODKA WHISKEY) 94 PROOF',,,,,0,,6.25,,,4.12 -14533,1400,'Alcoholic beverage distilled all (gin rum vodka whiskey) 100 proof','ALCOHOLIC BEV DISTILLED ALL (GIN RUM VODKA WHISKEY) 100PROOF',,,,,0,,6.25,,,4.12 -14534,1400,'Alcoholic beverage liqueur coffee 63 proof','ALCOHOLIC BEV LIQUEUR COFFEE 63 PROOF',,,,,0,,6.25,3.47,8.37,3.90 -14536,1400,'Alcoholic beverage wine dessert dry','ALCOHOLIC BEV WINE DSSRT DRY',,,,,0,,6.25,3.36,8.37,3.92 -14537,1400,'Carbonated beverage low calorie other than cola or pepper with sodium saccharin without caffeine','CARBONATED BEV LOCAL OTHR THAN COLA OR PEP W/ NA SAC WO/ CAF','soft drink pop soda',,,,0,,6.25,3.36,8.37,3.87 -14538,1400,'Beverages Cocoa mix low calorie powder with added calcium phosphorus aspartame without added sodium or vitamin A','BEVE COCA MIX LO CAL PDR W/ ADD CA P ASPRT WO/ ADD NA VIT A',,,'Y',,0,,6.25,4.00,9.00,4.00 -14541,1400,'Beverages fruit punch-flavor drink powder without added sodium prepared with water','BEVERAGE FRUIT PUNCH-FLAVOR DRK PDR WO/ ADDED NA PREP W/ H2O',,,,,0,,0.00,,, -14542,1400,'Lemonade frozen concentrate pink','LEMONADE FRZ CONC PINK',,,,,0,,6.25,3.36,8.37,3.80 -14543,1400,'Beverages lemonade frozen concentrate pink prepared with water','BEVERAGES LEMONADE FRZ CONC PINK PREP W/ H2O',,,,,0,,0.00,,, -14544,1400,'Beverages tea black brewed prepared with distilled water','BEVERAGES TEA BLACK BREWED PREP W/ DISTILLED H2O',,,,,0,,6.25,2.44,8.37,3.57 -14545,1400,'Beverages tea herb brewed chamomile','BEVERAGES TEA HERB BREWED CHAMOMILE',,,'Y',,0,,6.25,2.44,8.37,3.57 -14548,1400,'Beverages tea instant lemon with added ascorbic acid','BEVERAGES TEA INST LEMON W/ ADDED VIT C',,,,,0,,6.25,2.44,8.37,3.90 -14550,1400,'Alcoholic beverage distilled all (gin rum vodka whiskey) 86 proof','ALCOHOLIC BEV DISTILLED ALL (GIN RUM VODKA WHISKEY) 86 PROOF',,,'Y',,0,,6.25,,,4.12 -14551,1400,'Alcoholic beverage distilled all (gin rum vodka whiskey) 90 proof','ALCOHOLIC BEV DISTILLED ALL (GIN RUM VODKA WHISKEY) 90 PROOF',,,'Y',,0,,6.25,,,4.12 -14552,1400,'Carbonated beverage chocolate-flavored soda','CARBONATED BEV CHOCOLATE-FLAVORED SODA','soft drink pop',,'Y',,0,,,,, -14553,1400,'Beverages Wine non-alcoholic','BEVERAGES WINE NON-ALCOHOLIC',,,'Y',,0,,,,, -14555,1400,'Water bottled generic','WATER BTLD GENERIC',,,'Y',,0,,,,, -14557,1400,'Beverages chocolate-flavor beverage mix for milk powder with added nutrients','BEVERAGE CHOCOLATE-FLAVOR BEV MIX FOR MILK PDR W/ ADDED NUTR',,,'Y',,0,,6.25,4.00,9.00,4.00 -14558,1400,'Beverages chocolate-flavor beverage mix for milk powder with added nutrients prepared with whole milk','BEV CHOCO-FLA BEV MIX MLK PDR W/ ADD NUTR PREP W/ WHL MILK',,,,,0,,,,, -14559,1400,'Beverages water bottled non-carbonated EVIAN','BEVERAGES H2O BTLD NON-CARBONATED EVIAN',,'S.A. Evian Co.',,,0,,6.25,0.00,0.00,0.00 -14599,1400,'Beverages Powerade Zero Ion4 calorie-free assorted flavors','BEVERAGES POWERADE ZERO ION4 CALORIE-FREE ASSORTED FLAVORS',,,'Y',,0,,,,, -14601,1400,'Beverages WENDYS tea ready-to-drink unsweetened','BEVERAGES WENDYS TEA RTD UNSWTND',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -14602,1400,'Alcoholic Beverage wine table red Merlot','ALCOHOLIC BEV WINE TABLE RED MERLOT',,,,,0,,6.25,3.36,8.37,3.92 -14604,1400,'Water non-carbonated bottles natural fruit flavors sweetened with low calorie sweetener','WATER NON-CARBONATED FRUIT FLAVORS SWTND W/ LO CAL SWTNR',,,'Y',,0,,,,, -14605,1400,'Beverages Water with added vitamins and minerals bottles sweetened assorted fruit flavors','BEV H2O W/ ADDED VIT & MIN BOTTLES SWTND AST FRUIT FLAVORS',,,'Y',,0,,,,, -14607,1400,'Beverages V8 SPLASH Juice Drinks Diet Berry Blend','BEVERAGES V8 SPLASH JUC DRINKS DIET BERRY BLEND',,'Campbell Soup Co.',,,0,,,,, -14608,1400,'Beverages V8 SPLASH Juice Drinks Diet Fruit Medley','BEVERAGES V8 SPLASH JUC DRINKS DIET FRUIT MEDLEY',,'Campbell Soup Co.',,,0,,,,, -14609,1400,'Beverages V8 SPLASH Juice Drinks Diet Strawberry Kiwi','BEVERAGES V8 SPLASH JUC DRINKS DIET STRAWBERRY KIWI',,'Campbell Soup Co.',,,0,,,,, -14610,1400,'Beverages V8 SPLASH Juice Drinks Diet Tropical Blend','BEVERAGES V8 SPLASH JUC DRINKS DIET TROPICAL BLEND',,'Campbell Soup Co.',,,0,,,,, -14611,1400,'Beverages V8 SPLASH Juice Drinks Berry Blend','BEVERAGES V8 SPLASH JUC DRINKS BERRY BLEND',,'Campbell Soup Co.',,,0,,,,, -14612,1400,'Beverages V8 SPLASH Juice Drinks Fruit Medley','BEVERAGES V8 SPLASH JUC DRINKS FRUIT MEDLEY',,'Campbell Soup Co.',,,0,,,,, -14613,1400,'Beverages V8 SPLASH Juice Drinks Guava Passion Fruit','BEVERAGES V8 SPLASH JUC DRINKS GUAVA PASSION FRUIT',,'Campbell Soup Co.',,,0,,,,, -14614,1400,'Beverages V8 SPLASH Juice Drinks Mango Peach','BEVERAGES V8 SPLASH JUC DRINKS MANGO PEACH',,'Campbell Soup Co.',,,0,,,,, -14615,1400,'Beverages V8 SPLASH Juice Drinks Orange Pineapple','BEVERAGES V8 SPLASH JUC DRINKS ORANGE PNAPPL',,'Campbell Soup Co.',,,0,,,,, -14616,1400,'Beverages V8 SPLASH Juice Drinks Orchard Blend','BEVERAGES V8 SPLASH JUC DRINKS ORCHARD BLEND',,'Campbell Soup Co.',,,0,,,,, -14617,1400,'Beverages V8 SPLASH Juice Drinks Strawberry Banana','BEVERAGES V8 SPLASH JUC DRINKS STRAWBERRY BANANA',,'Campbell Soup Co.',,,0,,,,, -14618,1400,'Beverages V8 SPLASH Juice Drinks Strawberry Kiwi','BEVERAGES V8 SPLASH JUC DRINKS STRAWBERRY KIWI',,'Campbell Soup Co.',,,0,,,,, -14619,1400,'Beverages V8 SPLASH Juice Drinks Tropical Blend','BEVERAGES V8 SPLASH JUC DRINKS TROPICAL BLEND',,'Campbell Soup Co.',,,0,,,,, -14620,1400,'Beverages V8 V-FUSION Juices Peach Mango','BEVERAGES V8 V-FUSION JUICES PEACH MANGO',,'Campbell Soup Co.',,,0,,,,, -14621,1400,'Beverages V8 V-FUSION Juices Strawberry Banana','BEVERAGES V8 V-FUSION JUICES STRAWBERRY BANANA',,'Campbell Soup Co.',,,0,,,,, -14622,1400,'Beverages V8 V-FUSION Juices Tropical','BEVERAGES V8 V-FUSION JUICES TROPICAL',,'Campbell Soup Co.',,,0,,,,, -14623,1400,'Beverages V8 V- FUSION Juices Acai Berry','BEVERAGES V8 V- FUSION JUICES ACAI BERRY',,'Campbell Soup Co.',,,0,,,,, -14625,1400,'Beverages Energy drink AMP','BEVERAGES ENERGY DRK AMP',,'Pepsi-Cola North America','Y',,0,,,,, -14626,1400,'Beverages Energy drink FULL THROTTLE','BEVERAGES ENERGY DRK FULL THROTTLE',,'The Coca-Cola Company','Y',,0,,6.25,,, -14627,1400,'Beverages Energy Drink Monster fortified with vitamins C B2 B3 B6 B12','BEVERAGES ENERGY DRK MONSTER FORT W/ VITAMINS C B2 B3 B6 B12',,'Monster energy company','Y',,0,,6.25,,, -14628,1400,'Beverages Energy drink AMP sugar free','BEVERAGES ENERGY DRK AMP SUGAR FREE',,,'Y',,0,,6.25,,, -14629,1400,'Beverages Energy drink ROCKSTAR','BEVERAGES ENERGY DRK ROCKSTAR',,'Rockstar Inc.','Y',,0,,,,, -14630,1400,'Beverages Energy drink ROCKSTAR sugar free','BEVERAGES ENERGY DRK ROCKSTAR SUGAR FREE',,,'Y',,0,,6.25,,, -14632,1400,'Beverages Meal supplement drink canned peanut flavor','BEVERAGES MEAL SUPP DRK CND PNUT FLAVOR',,,,,0,,6.25,,, -14633,1400,'Beverages Vegetable and fruit juice drink reduced calorie with low-calorie sweetener added vitamin C','BEVER VEG & FRUIT JUC DRK RED CAL W/ LOW-CAL SWTNR ADD VIT C',,,'Y',,0,,,,, -14634,1400,'Beverages milk beverage reduced fat flavored and sweetened Ready-to-drink added calcium vitamin A and vitamin D','BEV MILK BEV RED FAT FLAV & SWTND RTD ADDED CA VIT A & D','Nesquik ready-to-drink',,'Y',,0,,6.25,,, -14635,1400,'Beverages vegetable and fruit juice blend 100% juice with added vitamins A C E','BEVERAGES VEG & FRUIT JUC BLEND W/ ADDED VITAMINS A C E','includes V8 V-fusion juices',,'Y',,0,,,,, -14636,1400,'Beverages fruit juice drink reduced sugar with vitamin E added','BEVERAGES FRUIT JUC DRK RED SUGAR W/ VITAMIN E ADDED','includes Capri Sun',,'Y',,0,,,3.36,8.37,3.80 -14637,1400,'Water with corn syrup and/or sugar and low calorie sweetener fruit flavored','WATER W/ CORN SYRUP AND/OR SUGAR & LO CAL SWTNR FRUIT FLAV','includes Caprisun Roarin Waters',,'Y',,0,,6.25,,, -14638,1400,'Beverages Horchata as served in restaurant','BEVERAGES HORCHATA AS SERVED IN RESTAURANT','Latino food',,,,0,,,,, -14639,1400,'Beverages rice milk unsweetened','BEVERAGES RICE MILK UNSWTND','ricemilk rice milk',,'Y',,0,,,,, -14640,1400,'Beverages Energy drink VAULT citrus flavor','BEVERAGES ENERGY DRK VAULT CITRUS FLAVOR',,'The Coca-Cola Company','Y',,0,,6.25,,, -14641,1400,'Beverages Energy drink VAULT Zero sugar-free citrus flavor','BEVERAGES ENERGY DRK VAULT ZERO SUGAR-FREE CITRUS FLAVOR',,'The Coca-Cola Company','Y',,0,,6.25,,, -14644,1400,'Beverages PEPSICO QUAKER Gatorade G2 low calorie','BEVERAGES PEPSICO QUAKER GATORADE G2 LO CAL',,'Quaker Oats Company - The Gatorade Company a unit of Pepsi Co.','Y',,0,,,,, -14645,1400,'Beverages Fruit flavored drink less than 3% juice not fortified with vitamin C','BEVERAGES FRUIT FLAV DRK LESS THAN 3% JUC NOT FORT W/ VIT C',,,'Y',,0,,,,, -14646,1400,'Beverages Fruit flavored drink containing less than 3% fruit juice with high vitamin C','BEV FRUIT FLAV DRK CONTAINING 3% FRUIT JUC W/ HI VIT C',,,'Y',,0,,,,, -14647,1400,'Beverages Fruit flavored drink reduced sugar greater than 3% fruit juice high vitamin C added calcium','BEV FRUIT FLAV DRK RED SUGAR > 3% FRUIT JUC HI VIT C ADD CA',,,,,0,,,,, -14648,1400,'Beverages fruit juice drink greater than 3% fruit juice high vitamin C and added thiamin','BEV FRUIT JUC DRK MORE 3% FRUIT JUC HI VIT C & ADD THIAMIN',,,'Y',,0,,,,, -14649,1400,'Beverages tea hibiscus brewed','BEVERAGES TEA HIBISCUS BREWED',,,'Y',,0,,,,, -14651,1400,'Beverages fruit juice drink greater than 3% juice high vitamin C','BEVERAGES FRUIT JUC DRK GREATER THAN 3% JUC HI VIT C',,,'Y',,0,,,,, -14654,1400,'Beverages nutritional shake mix high protein powder','BEVERAGES NUTRITIONAL SHAKE MIX HI PROT PDR',,,'Y',,0,,,,, -15001,1500,'Fish anchovy european raw','ANCHOVY EUROPEAN RAW',,,,,0,'Engraulis encrasicholus (L.)',6.25,4.27,9.02,3.87 -15002,1500,'Fish anchovy european canned in oil drained solids','ANCHOVY EUROPEAN CND IN OIL DRND SOL',,,'Y',,0,,6.25,4.27,8.92,3.87 -15003,1500,'Fish bass fresh water mixed species raw','BASS FRSH H2O MXD SP RAW',,,,,0,'Percichthyidae and Centrarchidae',6.25,4.27,9.02,3.87 -15004,1500,'Fish bass striped raw','BASS STRIPED RAW',,,,,0,'Morone saxatilis (Walbaum)',6.25,4.27,9.02,3.87 -15005,1500,'Fish bluefish raw','BLUEFISH RAW',,,,,0,'Pomatomus saltatrix (L.)',6.25,4.27,9.02,3.87 -15006,1500,'Fish burbot raw','BURBOT RAW',,,,,0,'Lota lota (L.)',6.25,4.27,9.02,3.87 -15007,1500,'Fish butterfish raw','BUTTERFISH RAW',,,,,0,'Peprilus triacanthus (Peck)',6.25,4.27,9.02,3.87 -15008,1500,'Fish carp raw','CARP RAW',,,'Y',,0,'Cyprinus carpio (L.)',6.25,4.27,9.02,3.87 -15009,1500,'Fish carp cooked dry heat','CARP COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15010,1500,'Fish catfish channel wild raw','CATFISH CHANNEL WILD RAW',,,,,0,'Ictalurus punctatus (Rafinesque)',6.25,4.27,9.02,3.87 -15011,1500,'Fish catfish channel cooked breaded and fried','CATFISH CHANNEL CKD BREADED&FRIED',,,,,0,,6.25,4.27,9.02,3.87 -15012,1500,'Fish caviar black and red granular','CAVIAR BLACK&RED GRANULAR',,,'Y',,0,,6.25,3.57,9.02,3.68 -15013,1500,'Fish cisco raw','CISCO RAW',,,,,0,'Coregonus artedi Lesueur',6.25,4.27,9.02,3.87 -15014,1500,'Fish cisco smoked','CISCO SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15015,1500,'Fish cod Atlantic raw','COD ATLANTIC RAW',,,'Y',,0,'Gadus morhua (L.)',6.25,4.27,9.02,3.87 -15016,1500,'Fish cod Atlantic cooked dry heat','COD ATLANTIC CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15017,1500,'Fish cod Atlantic canned solids and liquid','COD ATLANTIC CND SOL&LIQ',,,'Y',,0,,6.25,4.27,9.02,3.87 -15018,1500,'Fish cod Atlantic dried and salted','COD ATLANTIC DRIED&SALTED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15019,1500,'Fish cod Pacific raw (may have been previously frozen)','FISH COD PACIFIC RAW (MAY HAVE BEEN PREVIOUSLY FROZEN)',,,'Y',,0,'Gadus macrocephalus Tilesius',6.25,4.27,9.02,3.87 -15020,1500,'Fish croaker Atlantic raw','CROAKER ATLANTIC RAW',,,'Y',,0,'Micropogonias undulatus (L.)',6.25,4.27,9.02,3.87 -15021,1500,'Fish croaker Atlantic cooked breaded and fried','CROAKER ATLANTIC CKD BREADED&FRIED',,,,,0,,6.21,4.27,9.02,3.87 -15022,1500,'Fish cusk raw','CUSK RAW',,,,,0,'Brosme brosme (Muller)',6.25,4.27,9.02,3.87 -15023,1500,'Fish mahimahi raw','FISH MAHIMAHI RAW',,,,,0,'Coryphaena hippurus (L.)',6.25,4.27,9.02,3.87 -15024,1500,'Fish drum freshwater raw','DRUM FRESHWATER RAW',,,,,0,'Aplodinotus grunniens Rafinesque',6.25,4.27,9.02,3.87 -15025,1500,'Fish eel mixed species raw','EEL MIXED SPECIES RAW',,,'Y',,0,'Anguilla spp.',6.25,4.27,9.02,3.87 -15026,1500,'Fish eel mixed species cooked dry heat','EEL MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15027,1500,'Fish fish sticks frozen prepared','FISH FISH STKS FRZ PREP',,,'Y',,0,,6.10,4.20,8.94,3.97 -15028,1500,'Fish flatfish (flounder and sole species) raw','FLATFISH (FLOUNDER&SOLE SP) RAW',,,'Y',,0,'Bothidae and Pleuronectidae',6.25,4.27,9.02,3.87 -15029,1500,'Fish flatfish (flounder and sole species) cooked dry heat','FLATFISH (FLOUNDER&SOLE SP) CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15030,1500,'Fish gefiltefish commercial sweet recipe','GEFILTEFISH COMM SWT RECIPE',,,,,0,,6.25,4.27,9.02,4.00 -15031,1500,'Fish grouper mixed species raw','GROUPER MIXED SPECIES RAW',,,,,0,'Epinephelus spp.',6.25,4.27,9.02,3.87 -15032,1500,'Fish grouper mixed species cooked dry heat','GROUPER MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15033,1500,'Fish haddock raw','HADDOCK RAW',,,'Y',,0,'Melanogrammus aeglefinus (L.)',6.25,4.27,9.02,3.87 -15034,1500,'Fish haddock cooked dry heat','HADDOCK COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15035,1500,'Fish haddock smoked','HADDOCK SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15036,1500,'Fish halibut Atlantic and Pacific raw','HALIBUT ATLANTIC&PACIFIC RAW',,,'Y',,0,'Hippoglossus hippoglossus (L.) and H. stenolepis Schmidt',6.25,4.27,9.02,3.87 -15037,1500,'Fish halibut Atlantic and Pacific cooked dry heat','HALIBUT ATLANTIC&PACIFIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15038,1500,'Fish halibut Greenland raw','HALIBUT GREENLAND RAW',,,'Y',,0,'Reinhardtius hippoglossoides (Walbaum)',6.25,4.27,9.02,3.87 -15039,1500,'Fish herring Atlantic raw','HERRING ATLANTIC RAW',,,'Y',,0,'Clupea harengus harengus (L.)',6.25,4.27,9.02,3.87 -15040,1500,'Fish herring Atlantic cooked dry heat','HERRING ATLANTIC CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15041,1500,'Fish herring Atlantic pickled','HERRING ATLANTIC PICKLED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15042,1500,'Fish herring Atlantic kippered','HERRING ATLANTIC KIPPERED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15043,1500,'Fish herring Pacific raw','HERRING PACIFIC RAW',,,,,0,'Clupea harengus pallasi Valenciennes',6.25,4.27,9.02,3.87 -15044,1500,'Fish ling raw','LING RAW',,,,,0,'Molva molva (L.)',6.25,4.27,9.02,3.87 -15045,1500,'Fish lingcod raw','LINGCOD RAW',,,,,0,'Ophiodon elongatus Girard',6.25,4.27,9.02,3.87 -15046,1500,'Fish mackerel Atlantic raw','MACKEREL ATLANTIC RAW',,,'Y',,0,'Scomber scombrus L.',6.25,4.27,9.02,3.87 -15047,1500,'Fish mackerel Atlantic cooked dry heat','MACKEREL ATLANTIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15048,1500,'Fish mackerel jack canned drained solids','MACKEREL JACK CND DRND SOL',,,'Y',,0,'Trachurus symmetricus (Ayers)',6.25,4.27,9.02,3.87 -15049,1500,'Fish mackerel king raw','MACKEREL KING RAW',,,,,0,'Scombermorus cavalla (Cuvier)',6.25,4.27,9.02,3.87 -15050,1500,'Fish mackerel Pacific and jack mixed species raw','MACKEREL PACIFIC&JACK MXD SP RAW',,,'Y',,0,'Scomber spp. and Trachurus spp.',6.25,4.27,9.02,3.87 -15051,1500,'Fish mackerel spanish raw','MACKEREL SPANISH RAW',,,,,0,'Scombermorus maculatus (Mitchill)',6.25,4.27,9.02,3.87 -15052,1500,'Fish mackerel spanish cooked dry heat','MACKEREL SPANISH CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15053,1500,'Fish milkfish raw','MILKFISH RAW',,,,,0,'Chanos chanos (Forskaal)',6.25,4.27,9.02,3.87 -15054,1500,'Fish monkfish raw','MONKFISH RAW',,,,,0,'Lophius piscatorius L.',6.25,4.27,9.02,3.87 -15055,1500,'Fish mullet striped raw','MULLET STRIPED RAW',,,'Y',,0,'Mugil cephalus L.',6.25,4.27,9.02,3.87 -15056,1500,'Fish mullet striped cooked dry heat','MULLET STRIPED CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15057,1500,'Fish ocean perch Atlantic raw','OCEAN PERCH ATLANTIC RAW',,,'Y',,0,'Sebastes marinus L.',6.25,4.27,9.02,3.87 -15058,1500,'Fish ocean perch Atlantic cooked dry heat','OCEAN PERCH ATLANTIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15059,1500,'Fish pout ocean raw','POUT OCEAN RAW',,,,,0,'Macrozoarces americanus (Schneider)',6.25,4.27,9.02,3.87 -15060,1500,'Fish perch mixed species raw','PERCH MIXED SPECIES RAW',,,'Y',,0,'Morone americana Gmelin and Perca flavescens (Mitchill)',6.25,4.27,9.02,3.87 -15061,1500,'Fish perch mixed species cooked dry heat','PERCH MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15062,1500,'Fish pike northern raw','PIKE NORTHERN RAW',,,'Y',,0,'Esox lucius L.',6.25,4.27,9.02,3.87 -15063,1500,'Fish pike northern cooked dry heat','PIKE NORTHERN CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15064,1500,'Fish pike walleye raw','PIKE WALLEYE RAW',,,,,0,'Stizostedion vitreum vitreum (Mitchill)',6.25,4.27,9.02,3.87 -15065,1500,'Fish pollock Atlantic raw','POLLOCK ATLANTIC RAW',,,,,0,'Pollachius virens L.',6.25,4.27,9.02,3.87 -15066,1500,'Fish pollock Alaska raw (may contain additives to retain moisture)','POLLOCK ALASKA RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)','','','Y','',0,'Theragra chalcogramma (Pallas)',6.25,4.27,9.02,3.87 -15067,1500,'Fish pollock Alaska cooked dry heat (may contain additives to retain moisture)','POLLOCK ALASKA CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)','','','Y','',0,'',6.25,4.27,9.02,3.87 -15068,1500,'Fish pompano florida raw','POMPANO FLORIDA RAW',,,'Y',,0,'Trachinotus carolinus (L.)',6.25,4.27,9.02,3.87 -15069,1500,'Fish pompano florida cooked dry heat','POMPANO FLORIDA CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15070,1500,'Fish rockfish Pacific mixed species raw','ROCKFISH PACIFIC MXD SP RAW',,,'Y',,0,'Sebastes spp.',6.25,4.27,9.02,3.87 -15071,1500,'Fish rockfish Pacific mixed species cooked dry heat','ROCKFISH PACIFIC MXD SP CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15072,1500,'Fish roe mixed species raw','ROE MIXED SPECIES RAW',,,'Y',,0,,6.25,3.57,9.02,3.68 -15073,1500,'Fish roughy orange raw','ROUGHY ORANGE RAW',,,,,0,'Hoplostethus atlanticus',6.25,4.27,9.02,3.87 -15074,1500,'Fish sablefish raw','SABLEFISH RAW',,,,,0,'Anoplopoma fimbria (Pallas)',6.25,4.27,9.02,3.87 -15075,1500,'Fish sablefish smoked','SABLEFISH SMOKED',,,,,0,,6.25,4.27,9.02,3.87 -15076,1500,'Fish salmon Atlantic wild raw','SALMON ATLANTIC WILD RAW',,,,,0,'Salmo salar L.',6.25,4.27,9.02,3.87 -15077,1500,'Fish salmon chinook smoked','SALMON CHINOOK SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15078,1500,'Fish salmon chinook raw','SALMON CHINOOK RAW',,,,,0,'Oncorhynchus tshawytscha (Walbaum)',6.25,4.27,9.02,3.87 -15079,1500,'Fish salmon chum raw','SALMON CHUM RAW',,,,,0,'Oncorhynchus keta (Walbaum)',6.25,4.27,9.02,3.87 -15080,1500,'Fish salmon chum canned drained solids with bone','SALMON CHUM DRND SOL W/BONE',,,'Y',,0,,6.25,4.27,9.02,3.87 -15081,1500,'Fish salmon coho wild raw','SALMON COHO WILD RAW',,,'Y',,0,'Oncorhynchus kisutch (Walbaum)',6.25,4.27,9.02,3.87 -15082,1500,'Fish salmon coho wild cooked moist heat','SALMON COHO WILD CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15083,1500,'Fish salmon pink raw','SALMON PINK RAW',,,'Y',,0,'Oncorhynchus gorbuscha (Walbaum)',6.25,4.27,9.02,3.87 -15084,1500,'Fish salmon pink canned total can contents','FISH SALMON PINK CND TOTAL CAN CONTENTS',,,'Y',,0,,6.25,4.27,9.02,3.87 -15085,1500,'Fish salmon sockeye raw','FISH SALMON SOCKEYE RAW',,,'Y',,0,,,,, -15086,1500,'Fish salmon sockeye cooked dry heat','FISH SALMON SOCKEYE CKD DRY HEAT',,,'Y',,0,,,,, -15087,1500,'Fish salmon sockeye canned drained solids','FISH SALMON SOCKEYE CND DRND SOL',,,'Y',,0,,6.25,4.27,9.02,3.87 -15088,1500,'Fish sardine Atlantic canned in oil drained solids with bone','SARDINE ATLANTIC CND IN OIL DRND SOL W/BONE',,,'Y',,0,'Clupea harengus harengus L.',6.25,4.27,9.00,3.87 -15089,1500,'Fish sardine Pacific canned in tomato sauce drained solids with bone','SARDINE PACIFIC CND IN TOMATO SAU DRND SOL W/BONE',,,'Y',,0,'Sardinops spp.',6.25,4.27,9.02,3.70 -15090,1500,'Fish scup raw','SCUP RAW',,,'Y',,0,'Stenotomus chrysops L.',6.25,4.27,9.02,3.87 -15091,1500,'Fish sea bass mixed species raw','SEA BASS MXD SP RAW',,,'Y',,0,'Centropristes striata L. and Lateolabrax japonicus (Cuvier)',6.25,4.27,9.02,3.87 -15092,1500,'Fish sea bass mixed species cooked dry heat','SEA BASS MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15093,1500,'Fish seatrout mixed species raw','SEATROUT MXD SP RAW',,,,,0,'Cynoscion spp.',6.25,4.27,9.02,3.87 -15094,1500,'Fish shad american raw','SHAD AMERICAN RAW',,,'Y',,0,'Alosa sapidissima (Wilson)',6.25,4.27,9.02,3.87 -15095,1500,'Fish shark mixed species raw','SHARK MIXED SPECIES RAW',,,'Y',,0,'Squaliformes',6.25,4.27,9.02,3.87 -15096,1500,'Fish shark mixed species cooked batter-dipped and fried','SHARK MXD SP CKD BATTER-DIPPED&FRIED',,,,,0,,6.25,4.27,9.02,3.87 -15097,1500,'Fish sheepshead raw','SHEEPSHEAD RAW',,,,,0,'Archosargus probatocephalus (Walbaum)',6.25,4.27,9.02,3.87 -15098,1500,'Fish sheepshead cooked dry heat','SHEEPSHEAD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15099,1500,'Fish smelt rainbow raw','SMELT RAINBOW RAW',,,,,0,'Osmerus mordax (Mitchill)',6.25,4.27,9.02,3.87 -15100,1500,'Fish smelt rainbow cooked dry heat','SMELT RAINBOW CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15101,1500,'Fish snapper mixed species raw','SNAPPER MIXED SPECIES RAW',,,'Y',,0,'Lutjanidae',6.25,4.27,9.02,3.87 -15102,1500,'Fish snapper mixed species cooked dry heat','SNAPPER MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15103,1500,'Fish spot raw','SPOT RAW',,,,,0,'Leiostomus xanthuras Lacepede',6.25,4.27,9.02,3.87 -15104,1500,'Fish sturgeon mixed species raw','STURGEON MXD SP RAW',,,'Y',,0,'Acipenser spp.',6.25,4.27,9.02,3.87 -15105,1500,'Fish sturgeon mixed species cooked dry heat','STURGEON MXD SP CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15106,1500,'Fish sturgeon mixed species smoked','STURGEON MXD SP SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15107,1500,'Fish sucker white raw','SUCKER WHITE RAW',,,,,0,'Catostomus commersoni (Lacepede)',6.25,4.27,9.02,3.87 -15108,1500,'Fish sunfish pumpkin seed raw','SUNFISH PUMPKIN SEED RAW',,,,,0,'Lepomis gibbosus (L.)',6.25,4.27,9.02,3.87 -15109,1500,'Fish surimi','SURIMI',,,,,0,,6.25,4.27,9.02,3.87 -15110,1500,'Fish swordfish raw','SWORDFISH RAW',,,'Y',,0,'Xiphias gladius L.',6.25,4.27,9.02,3.87 -15111,1500,'Fish swordfish cooked dry heat','SWORDFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15112,1500,'Fish tilefish raw','TILEFISH RAW',,,,,0,'Lopholatilus chamaeleonticeps Goode and Bean',6.25,4.27,9.02,3.87 -15113,1500,'Fish tilefish cooked dry heat','TILEFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15114,1500,'Fish trout mixed species raw','TROUT MIXED SPECIES RAW',,,'Y',,0,'Salmonidae',6.25,4.27,9.02,3.87 -15115,1500,'Fish trout rainbow wild raw','TROUT RAINBOW WILD RAW',,,,,0,'Salmo gairdneri Richardson',6.25,4.27,9.02,3.87 -15116,1500,'Fish trout rainbow wild cooked dry heat','TROUT RAINBOW WILD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15117,1500,'Fish tuna fresh bluefin raw','TUNA FRESH BLUEFIN RAW',,,'Y',,0,'Thunnus thynnus (L.)',6.25,4.27,9.02,3.87 -15118,1500,'Fish tuna fresh bluefin cooked dry heat','TUNA FRSH BLUEFIN CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15119,1500,'Fish tuna light canned in oil drained solids','TUNA LT CND IN OIL DRND SOL',,,'Y',,0,,6.25,4.27,9.00,3.87 -15121,1500,'Fish tuna light canned in water drained solids (Includes foods for USDAs Food Distribution Program)','FISH TUNA LT CND IN H2O DRND SOL',,,'Y',,0,,,,, -15123,1500,'Fish tuna fresh skipjack raw','TUNA FRESH SKIPJACK RAW',,,,,0,'Euthynnus pelamis (L.)',6.25,4.27,9.02,3.87 -15124,1500,'Fish tuna white canned in oil drained solids','TUNA WHITE CND IN OIL DRND SOL',,,,,0,,6.25,4.27,9.00,3.87 -15126,1500,'Fish tuna white canned in water drained solids','TUNA WHITE CND IN H2O DRND SOL',,,'Y',,0,,6.25,4.27,9.02,3.87 -15127,1500,'Fish tuna fresh yellowfin raw','TUNA FRESH YELLOWFIN RAW',,,'Y',,0,'Thunnus albacares (Bonnaterre)',6.25,4.27,9.02,3.87 -15128,1500,'Fish tuna salad','TUNA SALAD',,,,,0,,6.25,4.27,9.02,3.87 -15129,1500,'Fish turbot european raw','TURBOT EUROPEAN RAW',,,,,0,'Scophthalmus maximus (L.)',6.25,4.27,9.02,3.87 -15130,1500,'Fish whitefish mixed species raw','WHITEFISH MXD SP RAW',,,'Y',,0,'Coregonus spp.',6.25,4.27,9.02,3.87 -15131,1500,'Fish whitefish mixed species smoked','WHITEFISH MXD SP SMOKED',,,'Y',,0,,6.25,4.27,9.02,3.87 -15132,1500,'Fish whiting mixed species raw','WHITING MIXED SPECIES RAW',,,'Y',,0,'Gadidae',6.25,4.27,9.02,3.87 -15133,1500,'Fish whiting mixed species cooked dry heat','WHITING MXD SP CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15134,1500,'Fish wolffish Atlantic raw','WOLFFISH ATLANTIC RAW',,,,,0,'Anarhichas lupus (L.)',6.25,4.27,9.02,3.87 -15135,1500,'Fish yellowtail mixed species raw','YELLOWTAIL MXD SP RAW',,,,,0,'Seriola spp.',6.25,4.27,9.02,3.87 -15136,1500,'Crustaceans crab alaska king raw','CRAB ALASKA KING RAW',,,,,0,'Paralithodes camtschatica (Tilesius)',6.25,4.27,9.02,4.11 -15137,1500,'Crustaceans crab alaska king cooked moist heat','CRAB ALASKA KING CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15138,1500,'Crustaceans crab alaska king imitation made from surimi','CRAB ALASKA KING IMITN MADE FROM SURIMI',,,'Y',,0,,6.25,4.27,9.02,3.87 -15139,1500,'Crustaceans crab blue raw','CRAB BLUE RAW',,,,,0,'Callinectes sapidus Rathbun',6.25,4.27,9.02,4.11 -15140,1500,'Crustaceans crab blue cooked moist heat','CRAB BLUE CKD MOIST HEAT',,,'Y',,0,,6.25,4.27,9.02,4.11 -15141,1500,'Crustaceans crab blue canned','CRAB BLUE CANNED',,,'Y',,0,,6.25,4.27,9.02,4.11 -15142,1500,'Crustaceans crab blue crab cakes home recipe','CRUSTACEANS CRAB BLUE CRAB CAKES HOME RECIPE',,,,,0,,6.25,4.27,8.84,3.68 -15143,1500,'Crustaceans crab dungeness raw','CRAB DUNGENESS RAW',,,,,0,'Cancer magister Dana',6.25,4.27,9.02,4.11 -15144,1500,'Crustaceans crab queen raw','CRAB QUEEN RAW',,,,,0,'Chionoectes opilio (O. Fabricius)',6.25,4.27,9.02,4.11 -15145,1500,'Crustaceans crayfish mixed species wild raw','CRAYFISH MXD SP WILD RAW',,,'Y',,0,'Astacus Orconectes and Procambarus spp.',6.25,4.27,9.02,4.11 -15146,1500,'Crustaceans crayfish mixed species wild cooked moist heat','CRAYFISH MXD SP WILD CKD MOIST HEAT',,,'Y',,0,,6.25,4.27,9.02,4.11 -15147,1500,'Crustaceans lobster northern raw','LOBSTER NORTHERN RAW',,,'Y',,0,'Homarus americanus Milne-Edwards',6.25,4.27,9.02,4.11 -15148,1500,'Crustaceans lobster northern cooked moist heat','LOBSTER NORTHERN CKD MOIST HEAT',,,'Y',,0,,6.25,4.27,9.02,4.11 -15149,1500,'Crustaceans shrimp mixed species raw (may contain additives to retain moisture)','SHRIMP MXD SP RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)',,,'Y',,0,'Penaeidae and Pandalidae',6.25,4.27,9.02,4.11 -15150,1500,'Crustaceans shrimp mixed species cooked breaded and fried','SHRIMP MXD SP CKD BREADED&FRIED',,,,,0,,6.22,4.27,8.84,3.68 -15151,1500,'Crustaceans shrimp mixed species cooked moist heat (may contain additives to retain moisture)','SHRIMP MXD SP CKD (MAY CONTAIN ADDITIVES TO RETAIN MOISTURE)',,,'Y',,0,,6.25,4.27,9.02,4.11 -15152,1500,'Crustaceans shrimp mixed species canned','SHRIMP MXD SP CND',,,'Y',,0,,6.25,4.27,9.02,4.11 -15153,1500,'Crustaceans shrimp mixed species imitation made from surimi','SHRIMP MXD SP IMITN MADE FROM SURIMI',,,,,0,,6.25,4.27,9.02,3.87 -15154,1500,'Crustaceans spiny lobster mixed species raw','SPINY LOBSTER MXD SP RAW',,,,,0,'Jasus spp. and Panulirus spp.',6.25,4.27,9.02,4.11 -15155,1500,'Mollusks abalone mixed species raw','ABALONE MIXED SPECIES RAW',,,'Y',,0,'Haliotis spp.',6.25,4.27,9.02,4.11 -15156,1500,'Mollusks abalone mixed species cooked fried','ABALONE MXD SP CKD FRIED',,,,,0,,6.23,4.27,8.84,4.12 -15157,1500,'Mollusks clam mixed species raw','CLAM MIXED SPECIES RAW',,,'Y',,0,'Lamellibranchia',6.25,4.27,9.02,4.11 -15158,1500,'Mollusks clam mixed species cooked breaded and fried','CLAM MXD SP CKD BREADED&FRIED',,,,,0,,6.20,4.27,8.84,4.12 -15159,1500,'Mollusks clam mixed species cooked moist heat','CLAM MXD SP CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15160,1500,'Mollusks clam mixed species canned drained solids','CLAM MXD SP CND DRND SOL',,,'Y',,0,,6.25,4.27,9.02,4.11 -15162,1500,'Mollusks clam mixed species canned liquid','CLAM MXD SP CND LIQ',,,'Y',,0,,6.25,4.27,9.02,4.11 -15163,1500,'Mollusks cuttlefish mixed species raw','CUTTLEFISH MXD SP RAW',,,,,0,'Sepiidae',6.25,4.27,9.02,4.11 -15164,1500,'Mollusks mussel blue raw','MUSSEL BLUE RAW',,,'Y',,0,'Mytilus edulis L.',6.25,4.27,9.02,4.11 -15165,1500,'Mollusks mussel blue cooked moist heat','MUSSEL BLUE CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15166,1500,'Mollusks octopus common raw','OCTOPUS COMMON RAW',,,'Y',,0,'Octopus vulgaris Lamarck',6.25,4.27,9.02,4.11 -15167,1500,'Mollusks oyster eastern wild raw','OYSTER EASTERN WILD RAW',,,'Y',,0,'Crassostrea virginica (Gmelin)',6.25,4.27,9.02,4.11 -15168,1500,'Mollusks oyster eastern cooked breaded and fried','OYSTER EASTERN CKD BREADED&FRIED',,,,,0,,6.18,4.27,9.02,4.12 -15169,1500,'Mollusks oyster eastern wild cooked moist heat','OYSTER EASTERN WILD CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15170,1500,'Mollusks oyster eastern canned','OYSTER EASTERN CANNED',,,'Y',,0,,6.25,4.27,9.02,4.11 -15171,1500,'Mollusks oyster Pacific raw','OYSTER PACIFIC RAW',,,,,0,'Crassostrea gigas (Thunberg)',6.25,4.27,9.02,4.11 -15172,1500,'Mollusks scallop mixed species raw','SCALLOP MIXED SPECIES RAW',,,'Y',,0,'Pectinidae',6.25,4.27,9.02,4.11 -15173,1500,'Mollusks scallop mixed species cooked breaded and fried','SCALLOP MXD SP CKD BREADED&FRIED',,,,,0,,6.21,4.27,8.84,4.12 -15174,1500,'Mollusks scallop mixed species imitation made from surimi','SCALLOP MXD SP IMITN MADE FROM SURIMI',,,,,0,,6.25,4.27,9.02,3.87 -15175,1500,'Mollusks squid mixed species raw','SQUID MIXED SPECIES RAW',,,'Y',,0,'Loligoidae and Ommastrephidae',6.25,4.27,9.02,4.11 -15176,1500,'Mollusks squid mixed species cooked fried','SQUID MXD SP CKD FRIED',,,,,0,,6.25,4.27,8.84,4.12 -15177,1500,'Mollusks whelk unspecified raw','WHELK UNSPECIFIED RAW',,,,,0,'Buccinidae',6.25,4.27,9.02,4.11 -15178,1500,'Mollusks whelk unspecified cooked moist heat','WHELK UNSPEC CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15179,1500,'Fish salmon chinook smoked (lox) regular','SALMON CHINOOK SMOKED (LOX) REG',,,,,0,,6.25,4.27,9.02,3.87 -15180,1500,'Fish salmon chum canned without salt drained solids with bone','SALMON CHUM CND WO/SALT DRND SOL W/BONE',,,,,0,,6.25,4.27,9.02,3.87 -15181,1500,'Fish salmon pink canned without salt solids with bone and liquid','SALMON PINK CND WO/SALT SOL W/BONE&LIQ',,,,,0,,6.25,4.27,9.02,3.87 -15182,1500,'Fish salmon sockeye canned without salt drained solids with bone','SALMON SOCKEYE CND WO/SALT DRND SOL W/BONE',,,,,0,,6.25,4.27,9.02,3.87 -15183,1500,'Fish tuna light canned in oil without salt drained solids','TUNA LT CND IN OIL WO/SALT DRND SOL',,,,,0,,6.25,4.27,9.00,3.87 -15184,1500,'Fish tuna light canned in water without salt drained solids','TUNA LT CND IN H2O WO/SALT DRND SOL',,,,,0,,6.25,4.27,9.02,3.87 -15185,1500,'Fish tuna white canned in oil without salt drained solids','TUNA WHITE CND IN OIL WO/SALT DRND SOL',,,,,0,,6.25,4.27,9.00,3.87 -15186,1500,'Fish tuna white canned in water without salt drained solids','TUNA WHITE CND IN H2O WO/SALT DRND SOL',,,,,0,,6.25,4.27,9.02,3.87 -15187,1500,'Fish bass freshwater mixed species cooked dry heat','BASS FRESHWATER MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15188,1500,'Fish bass striped cooked dry heat','BASS STRIPED CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15189,1500,'Fish bluefish cooked dry heat','BLUEFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15190,1500,'Fish burbot cooked dry heat','BURBOT COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15191,1500,'Fish butterfish cooked dry heat','BUTTERFISH CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15192,1500,'Fish cod Pacific cooked dry heat (may contain additives to retain moisture)','COD PACIFIC CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)',,,'Y',,0,,6.25,4.27,9.02,3.87 -15193,1500,'Fish cusk cooked dry heat','CUSK COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15194,1500,'Fish mahimahi cooked dry heat','FISH MAHIMAHI CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15195,1500,'Fish drum freshwater cooked dry heat','DRUM FRESHWATER CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15196,1500,'Fish halibut greenland cooked dry heat','HALIBUT GREENLAND CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15197,1500,'Fish herring Pacific cooked dry heat','HERRING PACIFIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15198,1500,'Fish ling cooked dry heat','LING COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15199,1500,'Fish lingcod cooked dry heat','LINGCOD COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15200,1500,'Fish mackerel king cooked dry heat','MACKEREL KING CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15201,1500,'Fish mackerel Pacific and jack mixed species cooked dry heat','MACKEREL PACIFIC&JACK MXD SP CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15202,1500,'Fish milkfish cooked dry heat','MILKFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15203,1500,'Fish monkfish cooked dry heat','MONKFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15204,1500,'Fish pike walleye cooked dry heat','PIKE WALLEYE CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15205,1500,'Fish pollock Atlantic cooked dry heat','POLLOCK ATLANTIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15206,1500,'Fish pout ocean cooked dry heat','POUT OCEAN CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15207,1500,'Fish roe mixed species cooked dry heat','ROE MXD SP CKD DRY HEAT',,,,,0,,6.25,4.36,9.02,3.68 -15208,1500,'Fish sablefish cooked dry heat','SABLEFISH COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15209,1500,'Fish salmon Atlantic wild cooked dry heat','SALMON ATLANTIC WILD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15210,1500,'Fish salmon chinook cooked dry heat','SALMON CHINOOK CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15211,1500,'Fish salmon chum cooked dry heat','SALMON CHUM CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15212,1500,'Fish salmon pink cooked dry heat','SALMON PINK CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15213,1500,'Fish scup cooked dry heat','SCUP COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15214,1500,'Fish seatrout mixed species cooked dry heat','SEATROUT MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15215,1500,'Fish shad american cooked dry heat','SHAD AMERICAN CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15216,1500,'Fish spot cooked dry heat','SPOT COOKED DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15217,1500,'Fish sucker white cooked dry heat','SUCKER WHITE CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15218,1500,'Fish sunfish pumpkin seed cooked dry heat','SUNFISH PUMPKIN SD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15219,1500,'Fish trout mixed species cooked dry heat','TROUT MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15220,1500,'Fish tuna skipjack fresh cooked dry heat','TUNA SKIPJACK FRSH CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15221,1500,'Fish tuna yellowfin fresh cooked dry heat','TUNA YELLOWFIN FRSH CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15222,1500,'Fish turbot european cooked dry heat','TURBOT EUROPEAN CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15223,1500,'Fish whitefish mixed species cooked dry heat','WHITEFISH MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15224,1500,'Fish wolffish Atlantic cooked dry heat','WOLFFISH ATLANTIC CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15225,1500,'Fish yellowtail mixed species cooked dry heat','YELLOWTAIL MXD SP CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15226,1500,'Crustaceans crab dungeness cooked moist heat','CRAB DUNGENESS CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15227,1500,'Crustaceans crab queen cooked moist heat','CRAB QUEEN CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15228,1500,'Crustaceans spiny lobster mixed species cooked moist heat','SPINY LOBSTER MXD SP CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15229,1500,'Mollusks cuttlefish mixed species cooked moist heat','CUTTLEFISH MXD SP CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15230,1500,'Mollusks octopus common cooked moist heat','OCTOPUS COMMON CKD MOIST HEAT',,,'Y',,0,,6.25,4.27,9.02,4.11 -15231,1500,'Mollusks oyster Pacific cooked moist heat','OYSTER PACIFIC CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15232,1500,'Fish roughy orange cooked dry heat','ROUGHY ORANGE CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15233,1500,'Fish catfish channel wild cooked dry heat','CATFISH CHANNEL WILD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15234,1500,'Fish catfish channel farmed raw','CATFISH CHANNEL FARMED RAW',,,'Y',,0,'Ictalurus punctatus (Rafinesque)',6.25,4.27,9.02,3.87 -15235,1500,'Fish catfish channel farmed cooked dry heat','CATFISH CHANNEL FARMED CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15236,1500,'Fish salmon Atlantic farmed raw','SALMON ATLANTIC FARMED RAW',,,'Y',,0,'Salmo salar L.',6.25,4.27,9.02,3.87 -15237,1500,'Fish salmon Atlantic farmed cooked dry heat','SALMON ATLANTIC FARMED CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15238,1500,'Fish salmon coho farmed raw','SALMON COHO FARMED RAW',,,,,0,'Oncorhynchus kisutch (Walbaum)',6.25,4.27,9.02,3.87 -15239,1500,'Fish salmon coho farmed cooked dry heat','SALMON COHO FARMED CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15240,1500,'Fish trout rainbow farmed raw','TROUT RAINBOW FARMED RAW',,,'Y',,0,'Salmo gairdneri Richardson',6.25,4.27,9.02,3.87 -15241,1500,'Fish trout rainbow farmed cooked dry heat','TROUT RAINBOW FARMED CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,3.87 -15242,1500,'Crustaceans crayfish mixed species farmed raw','CRAYFISH MXD SP FARMED RAW',,,,,0,'Astacus Orconectes and Procambarus spp.',6.25,4.27,9.02,4.11 -15243,1500,'Crustaceans crayfish mixed species farmed cooked moist heat','CRAYFISH MXD SP FARMED CKD MOIST HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15244,1500,'Mollusks oyster eastern wild cooked dry heat','OYSTER EASTERN WILD CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15245,1500,'Mollusks oyster eastern farmed raw','OYSTER EASTERN FARMED RAW',,,,,0,'Crassostrea virginica (Gmelin)',6.25,4.27,9.02,4.11 -15246,1500,'Mollusks oyster eastern farmed cooked dry heat','OYSTER EASTERN FARMED CKD DRY HEAT',,,,,0,,6.25,4.27,9.02,4.11 -15247,1500,'Fish salmon coho wild cooked dry heat','SALMON COHO WILD CKD DRY HEAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -15250,1500,'Mollusks conch baked or broiled','CONCH BAKED OR BROILED',,,,,0,,6.25,,, -15251,1500,'Salmon nuggets breaded frozen heated','SALMON NUGGETS BREADED FRZ HTD',,,,,0,,6.25,4.00,9.00,4.00 -15252,1500,'Salmon nuggets cooked as purchased unheated','SALMON NUGGETS CKD AS PURCHASED UNHTD',,,,,0,,6.25,4.00,9.00,4.00 -15253,1500,'Salmon sockeye canned total can contents','SALMON SOCKEYE CND TOTAL CAN CONTENTS',,,,,0,,6.25,4.27,9.02,3.87 -15260,1500,'Fish salmon pink canned drained solids','FISH SALMON PINK CND DRND SOL',,,,,0,,,,, -15261,1500,'Fish tilapia raw','FISH TILAPIA RAW',,,'Y',,0,,,,, -15262,1500,'Fish tilapia cooked dry heat','FISH TILAPIA CKD DRY HEAT',,,'Y',,0,,,,, -15264,1500,'Salmon sockeye canned drained solids without skin and bones','SALMON SOCKEYE CND DRND SOL WO/ SKN & BONES',,,,,0,,,,, -15265,1500,'Fish Salmon pink canned drained solids without skin and bones','FISH SALMON PINK CND DRND SOL WO/ SKN & BONES',,,,,0,,,,, -15266,1500,'Fish pollock Alaska raw','FISH POLLOCK ALASKA RAW','','','','',0,'Theragra chalcogramma (Pallas)',6.25,4.27,9.02,3.87 -15267,1500,'Fish pollock Alaska cooked','FISH POLLOCK ALASKA CKD','','','','',0,'',6.25,4.27,9.02,3.87 -15269,1500,'Fish cod Pacific cooked','FISH COD PACIFIC CKD',,,,,0,,,,, -15270,1500,'Crustaceans shrimp raw','CRUSTACEANS SHRIMP RAW',,,,'Tail and shell',13,,,,, -15271,1500,'Crustaceans shrimp cooked','CRUSTACEANS SHRIMP CKD',,,,'Tail and shell',17,,,,, -15274,1500,'Fish trout brook raw New York State','FISH TROUT BROOK RAW NEW YORK STATE',,,,'skin head viscera bones',53,,,,, -16001,1600,'Beans adzuki mature seeds raw','BEANS ADZUKI MATURE SEEDS RAW',,,,,0,'Vigna angularis',6.25,3.47,8.37,4.07 -16002,1600,'Beans adzuki mature seeds cooked boiled without salt','BEANS ADZUKI MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16003,1600,'Beans adzuki mature seeds canned sweetened','BEANS ADZUKI MATURE SEEDS CND SWTND',,,,,0,,6.25,3.47,8.37,4.07 -16004,1600,'Yokan prepared from adzuki beans and sugar','YOKAN PREP FROM ADZUKI BNS & SUGAR',,,,,0,,6.25,3.47,8.37,4.07 -16005,1600,'Beans baked home prepared','BEANS BAKED HOME PREPARED',,,,,0,,6.25,,, -16006,1600,'Beans baked canned plain or vegetarian','BEANS BKD CND PLN OR VEGETARIAN',,,'Y',,0,,6.25,4.00,8.40,3.40 -16007,1600,'Beans baked canned with beef','BEANS BKD CND W/BF',,,,,0,,6.25,4.00,9.00,3.80 -16008,1600,'Beans baked canned with franks','BEANS BKD CND W/FRANKS',,,'Y',,0,,6.25,3.90,9.00,3.70 -16009,1600,'Beans baked canned with pork','BEANS BKD CND W/PORK',,,,,0,,6.25,3.90,8.80,3.60 -16010,1600,'Beans baked canned with pork and sweet sauce','BEANS BKD CND W/PORK&SWT SAU',,,'Y',,0,,6.25,3.90,8.90,3.70 -16011,1600,'Beans baked canned with pork and tomato sauce','BEANS BKD CND W/PORK&TOMATO SAU',,,'Y',,0,,6.25,4.00,8.80,3.50 -16014,1600,'Beans black mature seeds raw','BEANS BLACK MATURE SEEDS RAW',,,'Y',,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16015,1600,'Beans black mature seeds cooked boiled without salt','BEANS BLACK MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16016,1600,'Beans black turtle mature seeds raw','BEANS BLACK TURTLE MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16017,1600,'Beans black turtle mature seeds cooked boiled without salt','BEANS BLACK TURTLE MATURE SEEDS CKD BLD WO/ SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16018,1600,'Beans black turtle mature seeds canned','BEANS BLACK TURTLE MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16019,1600,'Beans cranberry (roman) mature seeds raw','BEANS CRANBERRY (ROMAN) MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16020,1600,'Beans cranberry (roman) mature seeds cooked boiled without salt','BEANS CRANBERRY (ROMAN) MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16021,1600,'Beans cranberry (roman) mature seeds canned','BEANS CRANBERRY (ROMAN) MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16022,1600,'Beans french mature seeds raw','BEANS FRENCH MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16023,1600,'Beans french mature seeds cooked boiled without salt','BEANS FRENCH MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16024,1600,'Beans great northern mature seeds raw (Includes foods for USDAs Food Distribution Program)','BEANS GREAT NORTHERN MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16025,1600,'Beans great northern mature seeds cooked boiled without salt','BEANS GREAT NORTHERN MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16026,1600,'Beans great northern mature seeds canned','BEANS GREAT NORTHERN MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16027,1600,'Beans kidney all types mature seeds raw','BEANS KIDNEY ALL TYPES MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16028,1600,'Beans kidney all types mature seeds cooked boiled without salt','BEANS KIDNEY ALL TYPES MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16029,1600,'Beans kidney all types mature seeds canned','BEANS KIDNEY ALL TYPES MATURE SEEDS CND',,,,,0,,,,, -16030,1600,'Beans kidney california red mature seeds raw','BEANS KIDNEY CALIFORNIA RED MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16031,1600,'Beans kidney california red mature seeds cooked boiled without salt','BEANS KIDNEY CALIFORNIA RED MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16032,1600,'Beans kidney red mature seeds raw','BEANS KIDNEY RED MATURE SEEDS RAW',,,'Y',,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16033,1600,'Beans kidney red mature seeds cooked boiled without salt','BEANS KIDNEY RED MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16034,1600,'Beans kidney red mature seeds canned solids and liquids','BEANS KIDNEY RED MATURE SEEDS CND SOL & LIQUIDS',,,'Y',,0,,6.25,3.47,8.37,4.07 -16035,1600,'Beans kidney royal red mature seeds raw','BEANS KIDNEY ROYAL RED MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16036,1600,'Beans kidney royal red mature seeds cooked boiled without salt','BEANS KIDNEY ROYAL RED MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16037,1600,'Beans navy mature seeds raw','BEANS NAVY MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16038,1600,'Beans navy mature seeds cooked boiled without salt','BEANS NAVY MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16039,1600,'Beans navy mature seeds canned','BEANS NAVY MATURE SEEDS CND',,,'Y',,0,,6.25,3.47,8.37,4.07 -16040,1600,'Beans pink mature seeds raw','BEANS PINK MATURE SEEDS RAW',,,'Y',,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16041,1600,'Beans pink mature seeds cooked boiled without salt','BEANS PINK MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16042,1600,'Beans pinto mature seeds raw (Includes foods for USDAs Food Distribution Program)','BEANS PINTO MATURE SEEDS RAW',,,'Y',,0,'Phaseolus vulgaris',6.25,,, -16043,1600,'Beans pinto mature seeds cooked boiled without salt','BEANS PINTO MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16044,1600,'Beans pinto mature seeds canned solids and liquids','BEANS PINTO MATURE SEEDS CND SOL & LIQUIDS',,,,,0,,6.25,3.47,8.37,4.07 -16045,1600,'Beans small white mature seeds raw','BEANS SML WHITE MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16046,1600,'Beans small white mature seeds cooked boiled without salt','BEANS SML WHITE MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16047,1600,'Beans yellow mature seeds raw','BEANS YEL MATURE SEEDS RAW',,,,,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16048,1600,'Beans yellow mature seeds cooked boiled without salt','BEANS YEL MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16049,1600,'Beans white mature seeds raw','BEANS WHITE MATURE SEEDS RAW',,,'Y',,0,'Phaseolus vulgaris',6.25,3.47,8.37,4.07 -16050,1600,'Beans white mature seeds cooked boiled without salt','BEANS WHITE MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16051,1600,'Beans white mature seeds canned','BEANS WHITE MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16052,1600,'Broadbeans (fava beans) mature seeds raw','BROADBEANS (FAVA BEANS) MATURE SEEDS RAW',,,'Y',,0,'Vicia faba',6.25,3.47,8.37,4.07 -16053,1600,'Broadbeans (fava beans) mature seeds cooked boiled without salt','BROADBEANS (FAVA BNS) MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16054,1600,'Broadbeans (fava beans) mature seeds canned','BROADBEANS (FAVA BNS) MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16055,1600,'Carob flour','CAROB FLOUR',,,'Y',,0,'Ceratonia siliqua',6.25,,, -16056,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds raw','CHICKPEAS (GARBANZO BNS BENGAL GM) MATURE SEEDS RAW',,,'Y',,0,'Cicer arietinum',6.25,3.47,8.37,4.07 -16057,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds cooked boiled without salt','CHICKPEAS MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16058,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds canned solids and liquids','CHICKPEAS (GARBANZO BNS BENGAL GRAM) MATURE SDS CND SOL&LIQ',,,,,0,,6.25,3.47,8.37,4.07 -16059,1600,'Chili with beans canned','CHILI WITH BEANS CANNED',,,'Y',,0,,6.25,4.00,8.70,3.50 -16060,1600,'Cowpeas catjang mature seeds raw','COWPEAS CATJANG MATURE SEEDS RAW',,,,,0,'Vigna unguiculata subsp. cylindrica',6.25,3.47,8.37,4.07 -16061,1600,'Cowpeas catjang mature seeds cooked boiled without salt','COWPEAS CATJANG MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16062,1600,'Cowpeas common (blackeyes crowder southern) mature seeds raw','COWPEAS COMMON (BLACKEYES CROWDER SOUTHERN) MTRE SEEDS RAW',,,'Y',,0,'Vigna unguiculata subsp. unguiculata',6.25,3.47,8.37,4.07 -16063,1600,'Cowpeas common (blackeyes crowder southern) mature seeds cooked boiled without salt','COWPEAS COMMON (BLKEYES CRWDR STHRN) MTURE CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16064,1600,'Cowpeas common (blackeyes crowder southern) mature seeds canned plain','COWPEAS COMMON MATURE SEEDS CND PLN',,,,,0,,6.25,3.47,8.37,4.07 -16065,1600,'Cowpeas common (blackeyes crowder southern) mature seeds canned with pork','COWPEAS COMMON MATURE SEEDS CND W/PORK',,,,,0,,6.25,,, -16067,1600,'Hyacinth beans mature seeds raw','HYACINTH BNS MATURE SEEDS RAW',,,,,0,'Dolichos purpureus',6.25,3.47,8.37,4.07 -16068,1600,'Hyacinth beans mature seeds cooked boiled without salt','HYACINTH BNS MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16069,1600,'Lentils raw','LENTILS RAW',,,'Y',,0,'Lens culinaris',6.25,3.47,8.37,4.07 -16070,1600,'Lentils mature seeds cooked boiled without salt','LENTILS MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16071,1600,'Lima beans large mature seeds raw','LIMA BNS LRG MATURE SEEDS RAW',,,'Y',,0,'Phaseolus lunatus',6.25,3.47,8.37,4.07 -16072,1600,'Lima beans large mature seeds cooked boiled without salt','LIMA BNS LRG MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16073,1600,'Lima beans large mature seeds canned','LIMA BNS LRG MATURE SEEDS CND',,,,,0,,6.25,3.47,8.37,4.07 -16074,1600,'Lima beans thin seeded (baby) mature seeds raw','LIMA BNS THIN SEEDED (BABY) MATURE SEEDS RAW',,,,,0,'Phaseolus lunatus',6.25,3.47,8.37,4.07 -16075,1600,'Lima beans thin seeded (baby) mature seeds cooked boiled without salt','LIMA BNS THIN SEEDED (BABY) MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16076,1600,'Lupins mature seeds raw','LUPINS MATURE SEEDS RAW',,,,,0,'Lupinus albus',6.25,3.47,8.37,4.07 -16077,1600,'Lupins mature seeds cooked boiled without salt','LUPINS MATURE SEEDS CKD BLD WO/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -16078,1600,'Mothbeans mature seeds raw','MOTHBEANS MATURE SEEDS RAW','mat bean moth bean',,,,0,'Vigna aconitifolia',6.25,3.47,8.37,4.07 -16079,1600,'Mothbeans mature seeds cooked boiled without salt','MOTHBEANS MATURE SEEDS CKD BLD WO/SALT','mat bean moth bean',,,,0,,6.25,3.47,8.37,4.07 -16080,1600,'Mung beans mature seeds raw','MUNG BNS MATURE SEEDS RAW',,,'Y',,0,'Vigna radiata',6.25,3.47,8.37,4.07 -16081,1600,'Mung beans mature seeds cooked boiled without salt','MUNG BNS MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16082,1600,'Noodles chinese cellophane or long rice (mung beans) dehydrated','NOODLES CHINESE CELLOPHANE OR LONG RICE (MUNG BNS) DEHYD',,,'Y',,0,,6.25,3.47,8.37,4.07 -16083,1600,'Mungo beans mature seeds raw','MUNGO BNS MATURE SEEDS RAW',,,,,0,'Vigna mungo',6.25,3.47,8.37,4.07 -16084,1600,'Mungo beans mature seeds cooked boiled without salt','MUNGO BNS MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16085,1600,'Peas green split mature seeds raw','PEAS GRN SPLIT MATURE SEEDS RAW',,,'Y',,0,'Pisum sativum',6.25,3.47,8.37,4.07 -16086,1600,'Peas split mature seeds cooked boiled without salt','PEAS SPLIT MATURE SEEDS CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16087,1600,'Peanuts all types raw','PEANUTS ALL TYPES RAW',,,'Y',,0,,5.46,3.47,8.37,4.07 -16088,1600,'Peanuts all types cooked boiled with salt','PEANUTS ALL TYPES CKD BLD W/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16089,1600,'Peanuts all types oil-roasted with salt','PEANUTS ALL TYPES OIL-ROASTED W/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16090,1600,'Peanuts all types dry-roasted with salt','PEANUTS ALL TYPES DRY-ROASTED W/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16091,1600,'Peanuts spanish raw','PEANUTS SPANISH RAW',,,,,0,'Arachis hypogaea',5.46,3.47,8.37,4.07 -16092,1600,'Peanuts spanish oil-roasted with salt','PEANUTS SPANISH OIL-ROASTED W/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16093,1600,'Peanuts valencia raw','PEANUTS VALENCIA RAW',,,,,0,'Arachis hypogaea',5.46,3.47,8.37,4.07 -16094,1600,'Peanuts valencia oil-roasted with salt','PEANUTS VALENCIA OIL-ROASTED W/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16095,1600,'Peanuts virginia raw','PEANUTS VIRGINIA RAW',,,,,0,'Arachis hypogaea',5.46,3.47,8.37,4.07 -16096,1600,'Peanuts virginia oil-roasted with salt','PEANUTS VIRGINIA OIL-ROASTED W/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16097,1600,'Peanut butter chunk style with salt','PEANUT BUTTER CHUNK STYLE W/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16098,1600,'Peanut butter smooth style with salt (Includes foods for USDAs Food Distribution Program)','PEANUT BUTTER SMOOTH STYLE W/ SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16099,1600,'Peanut flour defatted','PEANUT FLOUR DEFATTED',,,'Y',,0,,5.46,3.47,8.37,4.07 -16100,1600,'Peanut flour low fat','PEANUT FLOUR LOW FAT',,,,,0,,5.46,3.47,8.37,4.07 -16101,1600,'Pigeon peas (red gram) mature seeds raw','PIGEON PEAS (RED GM) MATURE SEEDS RAW',,,,,0,'Cajanus cajan',6.25,3.47,8.37,4.07 -16102,1600,'Pigeon peas (red gram) mature seeds cooked boiled without salt','PIGEON PEAS (RED GM) MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16103,1600,'Refried beans canned traditional style','REFRIED BNS CND TRADITIONAL STYLE',,,'Y',,0,,6.25,3.50,8.90,4.07 -16104,1600,'Bacon meatless','BACON MEATLESS',,,'Y',,0,,6.25,3.47,8.37,4.07 -16106,1600,'Meat extender','MEAT EXTENDER',,,,,0,,6.25,3.47,8.37,4.07 -16107,1600,'Sausage meatless','SAUSAGE MEATLESS',,,'Y',,0,,6.25,3.48,8.37,4.07 -16108,1600,'Soybeans mature seeds raw','SOYBEANS MATURE SEEDS RAW',,,,,0,,,,, -16109,1600,'Soybeans mature cooked boiled without salt','SOYBEANS MATURE CKD BLD WO/SALT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16110,1600,'Soybeans mature seeds roasted salted','SOYBEANS MATURE SEEDS RSTD SALTED',,,'Y',,0,,6.25,3.47,8.37,4.07 -16111,1600,'Soybeans mature seeds dry roasted','SOYBEANS MATURE SEEDS DRY RSTD','Soy nuts',,,,0,,6.25,3.47,8.37,4.07 -16112,1600,'Miso','MISO',,,'Y',,0,,6.25,3.47,8.37,4.07 -16113,1600,'Natto','NATTO',,,'Y',,0,,6.25,3.47,8.37,4.07 -16114,1600,'Tempeh','TEMPEH',,,,,0,,6.25,3.47,8.37,4.07 -16115,1600,'Soy flour full-fat raw','SOY FLOUR FULL-FAT RAW',,,'Y',,0,,6.25,3.47,8.37,4.07 -16116,1600,'Soy flour full-fat roasted','SOY FLR FULL-FAT RSTD',,,,,0,,6.25,3.47,8.37,4.07 -16117,1600,'Soy flour defatted','SOY FLOUR DEFATTED',,,'Y',,0,,6.25,3.47,8.37,4.07 -16118,1600,'Soy flour low-fat','SOY FLOUR LOW-FAT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16119,1600,'Soy meal defatted raw','SOY MEAL DEFATTED RAW',,,,,0,,6.25,3.47,8.37,4.07 -16120,1600,'Soymilk original and vanilla unfortified','SOYMILK ORIGINAL & VANILLA UNFORTIFIED',,,'Y',,0,,,,, -16121,1600,'Soy protein concentrate produced by alcohol extraction','SOY PROT CONC PRODUCED BY ALCOHOL EXTRACTION',,,,,0,,6.25,3.47,8.37,4.07 -16122,1600,'Soy protein isolate','SOY PROTEIN ISOLATE',,,'Y',,0,,6.25,3.47,8.37,4.07 -16123,1600,'Soy sauce made from soy and wheat (shoyu)','SOY SAU MADE FROM SOY&WHEAT (SHOYU)',,,'Y',,0,,6.25,3.50,8.40,4.00 -16124,1600,'Soy sauce made from soy (tamari)','SOY SAU MADE FROM SOY (TAMARI)',,,'Y',,0,,6.25,3.50,8.40,4.00 -16125,1600,'Soy sauce made from hydrolyzed vegetable protein','SOY SAU MADE FROM HYDROLYZED VEG PROT',,,'Y',,0,,6.25,3.47,8.37,4.07 -16126,1600,'Tofu firm prepared with calcium sulfate and magnesium chloride (nigari)','TOFU FIRM PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)',,,,,0,,6.25,3.47,8.37,4.07 -16127,1600,'Tofu soft prepared with calcium sulfate and magnesium chloride (nigari)','TOFU SOFT PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)',,,'Y',,0,,6.25,3.47,8.37,4.07 -16128,1600,'Tofu dried-frozen (koyadofu)','TOFU DRIED-FROZEN (KOYADOFU)',,,,,0,,6.25,3.47,8.37,4.07 -16129,1600,'Tofu fried','TOFU FRIED',,,'Y',,0,,6.25,3.47,8.37,4.07 -16130,1600,'Okara','OKARA',,,,,0,,6.25,3.47,8.37,4.07 -16132,1600,'Tofu salted and fermented (fuyu)','TOFU SALTED&FERMENTED (FUYU)',,,,,0,,6.25,3.47,8.37,4.07 -16133,1600,'Yardlong beans mature seeds raw','YARDLONG BNS MATURE SEEDS RAW',,,,,0,'Vigna uniguiculata subsp. sesquipedalis',6.25,3.47,8.37,4.07 -16134,1600,'Yardlong beans mature seeds cooked boiled without salt','YARDLONG BNS MATURE SEEDS CKD BLD WO/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16135,1600,'Winged beans mature seeds raw','WINGED BNS MATURE SEEDS RAW',,,,,0,'Psophocarpus tetragonolobus',6.25,3.47,8.37,4.07 -16136,1600,'Winged beans mature seeds cooked boiled without salt','WINGED BNS MATURE SEEDS CKD BLD WO/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -16137,1600,'Hummus home prepared','HUMMUS HOME PREP',,,'Y',,0,,,,, -16138,1600,'Falafel home-prepared','FALAFEL HOME-PREPARED',,,,,0,,0.00,,, -16139,1600,'Soymilk original and vanilla with added calcium vitamins A and D','SOYMILK ORIGINAL & VANILLA W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16144,1600,'Lentils pink or red raw','LENTILS PINK OR RED RAW',,,,,0,,6.25,3.47,8.37,4.07 -16145,1600,'Beans kidney red mature seeds canned drained solids','BEANS KIDNEY RED MATURE SEEDS CND DRND SOL',,,,,0,,6.25,3.47,8.37,4.07 -16146,1600,'Beans pinto canned drained solids','BEANS PINTO CND DRND SOL',,,,,0,,6.25,3.47,8.37,4.05 -16147,1600,'Veggie burgers or soyburgers unprepared','VEGGIE BURGERS OR SOYBURGERS UNPREP',,,'Y',,0,,,,, -16149,1600,'Peanut spread reduced sugar','PEANUT SPRD RED SUGAR',,,'Y',,0,,,,, -16150,1600,'Peanut butter smooth reduced fat','PEANUT BUTTER SMOOTH RED FAT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16155,1600,'Peanut butter smooth vitamin and mineral fortified','PEANUT BUTTER SMOOTH VIT & MINERAL FORT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16156,1600,'Peanut butter chunky vitamin and mineral fortified','PEANUT BUTTER CHUNKY VITAMIN&MINERAL FORT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16157,1600,'Chickpea flour (besan)','CHICKPEA FLOUR (BESAN)',,,,,0,,6.25,4.27,8.37,4.07 -16158,1600,'Hummus commercial','HUMMUS COMMERCIAL',,,,,0,,6.25,3.47,8.37,4.07 -16159,1600,'Tofu extra firm prepared with nigari','TOFU EX FIRM PREP W/NIGARI',,,,,0,,6.25,3.47,8.37,4.07 -16160,1600,'Tofu hard prepared with nigari','TOFU HARD PREP W/NIGARI',,,,,0,,6.25,3.47,8.37,4.07 -16161,1600,'MORI-NU Tofu silken soft','MORI-NU TOFU SILKEN SOFT',,'Morinaga Nutrional Foods Inc.',,,0,,,,, -16162,1600,'MORI-NU Tofu silken firm','MORI-NU TOFU SILKEN FIRM',,'Morinaga Nutrional Foods Inc.',,,0,,,,, -16163,1600,'MORI-NU Tofu silken extra firm','MORI-NU TOFU SILKEN EX FIRM',,'Morinaga Nutrional Foods Inc.',,,0,,,,, -16164,1600,'MORI-NU Tofu silken lite firm','MORI-NU TOFU SILKEN LITE FIRM',,'Morinaga Nutrional Foods Inc.',,,0,,,,, -16165,1600,'MORI-NU Tofu silken lite extra firm','MORI-NU TOFU SILKEN LITE EX FIRM',,'Morinaga Nutrional Foods Inc.',,,0,,,,, -16166,1600,'Soymilk chocolate unfortified','SOYMILK CHOC UNFORTIFIED',,,'Y',,0,,,,, -16167,1600,'Peanut Butter smooth (Includes foods for USDAs Food Distribution Program)','PEANUT BUTTER SMOOTH (INCLFOODS FOR USDAS FD DIST PGM)',,,,,0,,5.46,3.47,8.37,4.07 -16168,1600,'Soymilk chocolate with added calcium vitamins A and D','SOYMILK CHOC W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16171,1600,'Refried beans canned vegetarian','REFRIED BNS CND VEGETARIAN',,,,,0,,,,, -16172,1600,'Refried beans canned fat-free','REFRIED BNS CND FAT-FREE',,,'Y',,0,,,,, -16173,1600,'Frijoles rojos volteados (Refried beans red canned)','FRIJOLES ROJOS VOLTEADOS (REFRIED BNS RED CANNED)',,,,,0,,,,, -16174,1600,'Tempeh cooked','TEMPEH CKD',,,,,0,,6.25,3.47,8.37,4.07 -16210,1600,'Vitasoy USA Nasoya Lite Firm Tofu','VITASOY USA NASOYA LITE FIRM TOFU',,'Vitasoy USA',,,0,,,,, -16211,1600,'Vitasoy USA Organic Nasoya Super Firm Cubed Tofu','VITASOY USA ORGANIC NASOYA SUPER FIRM CUBED TOFU',,'Vitasoy USA',,,0,,,,, -16212,1600,'Vitasoy USA Organic Nasoya Extra Firm Tofu','VITASOY USA ORGANIC NASOYA EX FIRM TOFU',,'Vitasoy USA',,,0,,,,, -16213,1600,'Vitasoy USA Organic Nasoya Firm Tofu','VITASOY USA ORGANIC NASOYA FIRM TOFU',,'Vitasoy USA',,,0,,,,, -16214,1600,'Vitasoy USA Organic Nasoya Silken Tofu','VITASOY USA ORGANIC NASOYA SILKEN TOFU',,'Vitasoy USA',,,0,,,,, -16215,1600,'Vitasoy USA Vitasoy Organic Creamy Original Soymilk','VITASOY USA VITASOY ORGANIC CREAMY ORIGINAL SOYMILK',,'Vitasoy USA',,,0,,,,, -16216,1600,'Vitasoy USA Vitasoy Organic Classic Original Soymilk','VITASOY USA VITASOY ORGANIC CLASSIC ORIGINAL SOYMILK',,'Vitasoy USA',,,0,,,,, -16219,1600,'Vitasoy USA Vitasoy Light Vanilla Soymilk','VITASOY USA VITASOY LT VANILLA SOYMILK',,'Vitasoy USA',,,0,,,,, -16222,1600,'Soymilk (all flavors) unsweetened with added calcium vitamins A and D','SOYMILK (ALL FLAVORS) UNSWTND W/ ADDED CA VITAMINS A & D',,,,,0,,,,, -16223,1600,'Soymilk (All flavors) enhanced','SOYMILK (ALL FLAVORS) ENHANCED',,,,,0,,,,, -16225,1600,'Soymilk original and vanilla light with added calcium vitamins A and D','SOYMILK ORIGINAL & VANILLA LT W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16227,1600,'Soymilk chocolate and other flavors light with added calcium vitamins A and D','SOYMILK CHOC & OTHER FLAVORS LT W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16228,1600,'Soymilk original and vanilla light unsweetened with added calcium vitamins A and D','SOYMILK ORIGINAL & VANILLA LT UNSWTND W/ ADDED CA VIT A & D',,,,,0,,,,, -16229,1600,'Soymilk (All flavors) lowfat with added calcium vitamins A and D','SOYMILK (ALL FLAVORS) LOWFAT W/ ADDED CA VITAMINS A & D',,,,,0,,,,, -16230,1600,'Soymilk (all flavors) nonfat with added calcium vitamins A and D','SOYMILK (ALL FLAVORS) NONFAT W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16231,1600,'Soymilk chocolate nonfat with added calcium vitamins A and D','SOYMILK CHOC NONFAT W/ ADDED CA VITAMINS A & D',,,'Y',,0,,,,, -16235,1600,'SILK Plain soymilk','SILK PLN SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16236,1600,'SILK Vanilla soymilk','SILK VANILLA SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16237,1600,'SILK Chocolate soymilk','SILK CHOC SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16238,1600,'SILK Light Plain soymilk','SILK LT PLN SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16239,1600,'SILK Light Vanilla soymilk','SILK LT VANILLA SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16240,1600,'SILK Light Chocolate soymilk','SILK LT CHOC SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16241,1600,'SILK Plus Omega-3 DHA soymilk','SILK PLUS OMEGA-3 DHA SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16242,1600,'SILK Plus for Bone Health soymilk','SILK PLUS FOR BONE HEALTH SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16243,1600,'SILK Plus Fiber soymilk','SILK PLUS FIBER SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16244,1600,'SILK Unsweetened soymilk','SILK UNSWTND SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16245,1600,'SILK Very Vanilla soymilk','SILK VERY VANILLA SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16246,1600,'SILK Nog soymilk','SILK NOG SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16247,1600,'SILK Chai soymilk','SILK CHAI SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16248,1600,'SILK Mocha soymilk','SILK MOCHA SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16249,1600,'SILK Coffee soymilk','SILK COFFEE SOYMILK',,'WhiteWave Foods Company',,,0,,6.25,,, -16250,1600,'SILK Vanilla soy yogurt (family size)','SILK VANILLA SOY YOGURT (FAMILY SIZE)',,'WhiteWave Foods Company',,,0,,6.25,,, -16251,1600,'SILK Vanilla soy yogurt (single serving size)','SILK VANILLA SOY YOGURT (SINGLE SERVING SIZE)',,'WhiteWave Foods Company',,,0,,6.25,,, -16252,1600,'SILK Plain soy yogurt','SILK PLN SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16253,1600,'SILK Strawberry soy yogurt','SILK STRAWBERRY SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16254,1600,'SILK Raspberry soy yogurt','SILK RASPBERRY SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16255,1600,'SILK Peach soy yogurt','SILK PEACH SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16256,1600,'SILK Black Cherry soy yogurt','SILK BLACK CHERRY SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16257,1600,'SILK Blueberry soy yogurt','SILK BLUEBERRY SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16258,1600,'SILK Key Lime soy yogurt','SILK KEY LIME SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16259,1600,'SILK Banana-Strawberry soy yogurt','SILK BANANA-STRAWBERRY SOY YOGURT',,'WhiteWave Foods Company',,,0,,6.25,,, -16260,1600,'SILK Original Creamer','SILK ORIGINAL CREAMER',,'WhiteWave Foods Company',,,0,,6.25,,, -16261,1600,'SILK French Vanilla Creamer','SILK FRENCH VANILLA CREAMER',,'WhiteWave Foods Company',,,0,,6.25,,, -16262,1600,'SILK Hazelnut Creamer','SILK HAZELNUT CREAMER',,'WhiteWave Foods Company',,,0,,6.25,,, -16271,1600,'Vitasoy USA Organic Nasoya Soft Tofu','VITASOY USA ORGANIC NASOYA SOFT TOFU',,'Vitasoy USA',,,0,,6.25,,, -16272,1600,'Vitasoy USA Nasoya Lite Silken Tofu','VITASOY USA NASOYA LITE SILKEN TOFU',,'Vitasoy USA',,,0,,6.25,,, -16273,1600,'Vitasoy USA Organic Nasoya Tofu Plus Extra Firm','VITASOY USA ORGANIC NASOYA TOFU PLUS EX FIRM',,'Vitasoy USA',,,0,,6.25,,, -16274,1600,'Vitasoy USA Organic Nasoya Tofu Plus Firm','VITASOY USA ORGANIC NASOYA TOFU PLUS FIRM',,'Vitasoy USA',,,0,,6.25,,, -16275,1600,'Vitasoy USA Organic Nasoya Sprouted Tofu Plus Super Firm','VITASOY USA ORGANIC NASOYA SPROUTED TOFU PLUS SUPER FIRM',,'Vitasoy USA',,,0,,6.25,,, -16276,1600,'Vitasoy USA Azumaya Extra Firm Tofu','VITASOY USA AZUMAYA EX FIRM TOFU',,'Vitasoy USA',,,0,,6.25,,, -16277,1600,'Vitasoy USA Azumaya Firm Tofu','VITASOY USA AZUMAYA FIRM TOFU',,'Vitasoy USA',,,0,,6.25,,, -16278,1600,'Vitasoy USA Azumaya Silken Tofu','VITASOY USA AZUMAYA SILKEN TOFU',,'Vitasoy USA',,,0,,6.25,,, -16279,1600,'HOUSE FOODS Premium Soft Tofu','HOUSE FOODS PREMIUM SOFT TOFU',,'House Foods',,,0,,6.25,,, -16281,1600,'HOUSE FOODS Premium Firm Tofu','HOUSE FOODS PREMIUM FIRM TOFU',,'House Foods',,,0,,6.25,,, -16302,1600,'Beans adzuki mature seed cooked boiled with salt','BEANS ADZUKI MATURE SD CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16315,1600,'Beans black mature seeds cooked boiled with salt','BEANS BLACK MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16316,1600,'Beans black mature seeds canned low sodium','BEANS BLACK MATURE SEEDS CND LO NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16317,1600,'Beans black turtle mature seeds cooked boiled with salt','BEANS BLACK TURTLE MATURE SEEDS CKD BLD W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -16320,1600,'Beans cranberry (roman) mature seeds cooked boiled with salt','BEANS CRANBERRY (ROMAN) MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16323,1600,'Beans french mature seeds cooked boiled with salt','BEANS FRENCH MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16325,1600,'Beans great northern mature seeds cooked boiled with salt','BEANS GREAT NORTHERN MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16326,1600,'Beans great northern mature seeds canned low sodium','BEANS GREAT NORTHERN MATURE SEEDS CND LO NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16328,1600,'Beans kidney all types mature seeds cooked boiled with salt','BEANS KIDNEY ALL TYPES MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16331,1600,'Beans kidney california red mature seeds cooked boiled with salt','BEANS KIDNEY CALIFORNIA RED MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16333,1600,'Beans kidney red mature seeds cooked boiled with salt','BEANS KIDNEY RED MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16335,1600,'Beans kidney red mature seeds canned drained solids rinsed in tap water','BEANS KIDNEY RED MATURE SEEDS CND DRND SOL RINSED IN TAP H2O',,,,,0,,6.25,3.47,8.37,4.07 -16336,1600,'Beans kidney royal red mature seeds cooked boiled with salt','BEANS KIDNEY ROYAL RED MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16337,1600,'Beans kidney red mature seeds canned solids and liquid low sodium','BEANS KIDNEY RED MATURE SEEDS CND SOL & LIQ LO NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16338,1600,'Beans navy mature seeds cooked boiled with salt','BEANS NAVY MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16341,1600,'Beans pink mature seeds cooked boiled with salt','BEANS PINK MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16343,1600,'Beans pinto mature seeds cooked boiled with salt','BEANS PINTO MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16345,1600,'Beans pinto mature seeds canned drained solids rinsed in tap water','BEANS PINTO MATURE SEEDS CND DRND SOL RINSED IN TAP H2O',,,,,0,,6.25,3.47,8.37,4.07 -16346,1600,'Beans small white mature seeds cooked boiled with salt','BEANS SML WHITE MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16347,1600,'Beans pinto mature seeds canned solids and liquids low sodium','BEANS PINTO MATURE SEEDS CND SOL & LIQUIDS LO NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16348,1600,'Beans yellow mature seeds cooked boiled with salt','BEANS YEL MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16350,1600,'Beans white mature seeds cooked boiled with salt','BEANS WHITE MATURE SEEDS CKD BLD W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -16353,1600,'Broadbeans (fava beans) mature seeds cooked boiled with salt','BROADBEANS (FAVA BNS) MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16357,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds cooked boiled with salt','CHICKPEAS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16358,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds canned drained solids','CHICKPEAS MAT SEEDS CND DRND SOL',,,,,0,,6.25,3.47,8.37,4.07 -16359,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds canned drained rinsed in tap water','CHICKPEAS MATURE SEEDS CND DRND RINSED IN TAP H2O',,,,,0,,6.25,3.47,8.37,4.07 -16360,1600,'Chickpeas (garbanzo beans bengal gram) mature seeds canned solids and liquids low sodium','CHICKPEAS MATURE SEEDS CND SOL & LIQUIDS LO NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16361,1600,'Cowpeas catjang mature seeds cooked boiled with salt','COWPEAS CATJANG MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16363,1600,'Cowpeas common (blackeyes crowder southern) mature seeds cooked boiled with salt','COWPEAS COMMON MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16368,1600,'Hyacinth beans mature seeds cooked boiled with salt','HYACINTH BNS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16370,1600,'Lentils mature seeds cooked boiled with salt','LENTILS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16372,1600,'Lima beans large mature seeds cooked boiled with salt','LIMA BNS LRG MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16375,1600,'Lima beans thin seeded (baby) mature seeds cooked boiled with salt','LIMA BNS THIN SEEDED (BABY) MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16377,1600,'Lupins mature seeds cooked boiled with salt','LUPINS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16379,1600,'Mothbeans mature seeds cooked boiled with salt','MOTHBEANS MATURE SEEDS CKD BLD W/SALT','mat bean moth bean',,,,0,,6.25,3.47,8.37,4.07 -16381,1600,'Mung beans mature seeds cooked boiled with salt','MUNG BNS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16384,1600,'Mungo beans mature seeds cooked boiled with salt','MUNGO BNS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16386,1600,'Peas split mature seeds cooked boiled with salt','PEAS SPLIT MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16389,1600,'Peanuts all types oil-roasted without salt','PEANUTS ALL TYPES OIL-ROASTED WO/ SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16390,1600,'Peanuts all types dry-roasted without salt','PEANUTS ALL TYPES DRY-ROASTED WO/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16392,1600,'Peanuts spanish oil-roasted without salt','PEANUTS SPANISH OIL-ROASTED WO/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16394,1600,'Peanuts valencia oil-roasted without salt','PEANUTS VALENCIA OIL-ROASTED WO/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16396,1600,'Peanuts virginia oil-roasted without salt','PEANUTS VIRGINIA OIL-ROASTED WO/SALT',,,,,0,,5.46,3.47,8.37,4.07 -16397,1600,'Peanut butter chunk style without salt','PEANUT BUTTER CHUNK STYLE WO/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16398,1600,'Peanut butter smooth style without salt','PEANUT BUTTER SMOOTH STYLE WO/SALT',,,'Y',,0,,5.46,3.47,8.37,4.07 -16399,1600,'Peanut butter with omega-3 creamy','PEANUT BUTTER W/ OMEGA-3 CREAMY',,,,,0,,5.46,3.47,8.37,4.07 -16402,1600,'Pigeon peas (red gram) mature seeds cooked boiled with salt','PIGEON PEAS (RED GM) MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16403,1600,'Refried beans canned traditional reduced sodium','REFRIED BNS CND TRADITIONAL RED NA',,,'Y',,0,,6.25,3.47,8.37,4.07 -16409,1600,'Soybeans mature seeds cooked boiled with salt','SOYBEANS MATURE SEEDS CKD BLD W/SALT',,,,,0,,6.25,3.47,8.37,4.07 -16410,1600,'Soybeans mature seeds roasted no salt added','SOYBEANS MATURE SEEDS RSTED NO SALT ADDED',,,,,0,,6.25,3.47,8.37,4.07 -16420,1600,'Soy protein concentrate produced by acid wash','SOY PROT CONC PRODUCED BY ACID WASH',,,,,0,,6.25,3.47,8.37,4.07 -16422,1600,'Soy protein isolate potassium type','SOY PROT ISOLATE K TYPE',,,,,0,,6.25,3.47,8.37,4.07 -16424,1600,'Soy sauce made from soy and wheat (shoyu) low sodium','SOY SAU MADE FROM SOY&WHEAT (SHOYU) LO NA',,,'Y',,0,,6.25,3.50,8.40,4.00 -16425,1600,'Soy sauce reduced sodium made from hydrolyzed vegetable protein','SOY SAU RED NA MADE FROM HYDROLYZED VEG PROT',,,,,0,,6.25,3.47,8.37,4.07 -16426,1600,'Tofu raw firm prepared with calcium sulfate','TOFU RAW FIRM PREP W/CA SULFATE',,,,,0,,6.25,3.47,8.37,4.07 -16427,1600,'Tofu raw regular prepared with calcium sulfate','TOFU RAW REG PREP W/CA SULFATE',,,,,0,,6.25,3.47,8.37,4.07 -16428,1600,'Tofu dried-frozen (koyadofu) prepared with calcium sulfate','TOFU DRIED-FROZEN (KOYADOFU) PREP W/CA SULFATE',,,,,0,,6.25,3.47,8.37,4.07 -16429,1600,'Tofu fried prepared with calcium sulfate','TOFU FRIED PREP W/CA SULFATE',,,,,0,,6.25,3.47,8.37,4.07 -16432,1600,'Tofu salted and fermented (fuyu) prepared with calcium sulfate','TOFU SALTED&FERMENTED (FUYU) PREP W/CA SULFATE',,,,,0,,6.25,3.47,8.37,4.07 -16434,1600,'Yardlong beans mature seeds cooked boiled with salt','YARDLONG BNS MATURE SEEDS CKD BLD W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -16436,1600,'Winged beans mature seeds cooked boiled with salt','WINGED BNS MATURE SEEDS CKD BLD W/ SALT',,,,,0,,6.25,3.47,8.37,4.07 -17000,1700,'Veal Australian rib rib roast separable lean only raw','VEAL AUSTRALIAN RIB RIB RST LN RAW',,,,'Bone and connective tissue 22% separable fat 14%',36,,6.25,,, -17001,1700,'Lamb composite of trimmed retail cuts separable lean and fat trimmed to 1/4in fat choice raw','LAMB COMP OF RTL CUTS LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',23,'Ovis aries',6.25,4.27,9.02,3.87 -17002,1700,'Lamb composite of trimmed retail cuts separable lean and fat trimmed to 1/4in fat choice cooked','LAMB COMP OF RTL CUTS LN & FAT 1/4in FAT CHOIC CKD',,,'Y','Bone',25,,6.25,4.27,9.02,3.87 -17003,1700,'Lamb composite of trimmed retail cuts separable lean only trimmed to 1/4in fat choice raw','LAMB COMP OF RTL CUTS LN 1/4in FAT CHOIC RAW',,,,'Bone 23% separable fat 19%',42,,6.25,4.27,9.02,3.87 -17004,1700,'Lamb composite of trimmed retail cuts separable lean only trimmed to 1/4in fat choice cooked','LAMB COMP OF RTL CUTS LN 1/4in FAT CHOIC CKD',,,,'Bone 25% separable fat 17%',42,,6.25,4.27,9.02,3.87 -17005,1700,'Lamb composite of trimmed retail cuts separable fat trimmed to 1/4in fat choice raw','LAMB COMP OF RTL CUTS FAT 1/4in FAT CHOIC RAW',,,,,0,,6.25,4.27,9.02,3.87 -17006,1700,'Lamb composite of trimmed retail cuts separable fat trimmed to 1/4in fat choice cooked','LAMB COMP OF RTL CUTS FAT 1/4in FAT CHOIC CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17007,1700,'Lamb foreshank separable lean and fat trimmed to 1/4in fat choice raw','LAMB FORESHANK LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',52,,6.25,4.27,9.02,3.87 -17008,1700,'Lamb foreshank separable lean and fat trimmed to 1/4in fat choice cooked braised','LAMB FORESHANK LN & FAT 1/4in FAT CHOIC CKD BRSD',,,'Y','Bone',56,,6.25,4.27,9.02,3.87 -17009,1700,'Lamb foreshank separable lean only trimmed to 1/4in fat choice raw','LAMB FORESHANK LN 1/4in FAT CHOIC RAW',,,,'Bone 52% separable fat 7%',59,,6.25,4.27,9.02,3.87 -17010,1700,'Lamb foreshank separable lean only trimmed to 1/4in fat choice cooked braised','LAMB FORESHANK LN 1/4in FAT CHOIC CKD BRSD',,,,'Bone 56% separable fat 6%',62,,6.25,4.27,9.02,3.87 -17011,1700,'Lamb leg whole (shank and sirloin) separable lean and fat trimmed to 1/4in fat choice raw','LAMB LEG WHL (SHK&SIRL) LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',21,,6.25,4.27,9.02,3.87 -17012,1700,'Lamb leg whole (shank and sirloin) separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB LEG WHL (SHK&SIRL) LN & FAT 1/4in FAT CHOIC CKD RSTD',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -17013,1700,'Lamb leg whole (shank and sirloin) separable lean only trimmed to 1/4in fat choice raw','LAMB LEG WHL (SHK&SIRL) LN 1/4in FAT CHOIC RAW',,,,'Bone 21% separable fat 15%',36,,6.25,4.27,9.02,3.87 -17014,1700,'Lamb leg whole (shank and sirloin) separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB LEG WHL (SHK&SIRL) LN 1/4in FAT CHOIC CKD RSTD',,,'Y','Bone 22% separable fat 13%',35,,6.25,4.27,9.02,3.87 -17015,1700,'Lamb leg shank half separable lean and fat trimmed to 1/4in fat choice raw','LAMB LEG SHANK HALF LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17016,1700,'Lamb leg shank half separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB LEG SHANK HALF LN & FAT 1/4in FAT CHOIC CKD RSTD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17017,1700,'Lamb leg shank half separable lean only trimmed to 1/4in fat choice raw','LAMB LEG SHANK HALF LN 1/4in FAT CHOIC RAW',,,,'Bone 20% separable fat 11%',31,,6.25,4.27,9.02,3.87 -17018,1700,'Lamb leg shank half separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB LEG SHANK HALF LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 20% separable fat 9%',29,,6.25,4.27,9.02,3.87 -17019,1700,'Lamb leg sirloin half separable lean and fat trimmed to 1/4in fat choice raw','LAMB LEG SIRLOIN HALF LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17020,1700,'Lamb leg sirloin half separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB LEG SIRLOIN HALF LN & FAT 1/4in FAT CHOIC CKD RSTD',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17021,1700,'Lamb leg sirloin half separable lean only trimmed to 1/4in fat choice raw','LAMB LEG SIRLOIN HALF LN 1/4in FAT CHOIC RAW',,,,'Bone 23% separable fat 20%',43,,6.25,4.27,9.02,3.87 -17022,1700,'Lamb leg sirloin half separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB LEG SIRLOIN HALF LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 23% separable fat 18%',41,,6.25,4.27,9.02,3.87 -17023,1700,'Lamb loin separable lean and fat trimmed to 1/4in fat choice raw','LAMB LOIN LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',21,,6.25,4.27,9.02,3.87 -17024,1700,'Lamb loin separable lean and fat trimmed to 1/4in fat choice cooked broiled','LAMB LOIN LN & FAT 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone',23,,6.25,4.27,9.02,3.87 -17025,1700,'Lamb loin separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB LOIN LN & FAT 1/4in FAT CHOIC CKD RSTD',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -17026,1700,'Lamb loin separable lean only trimmed to 1/4in fat choice raw','LAMB LOIN LN 1/4in FAT CHOIC RAW',,,,'Bone 21% separable fat 25%',46,,6.25,4.27,9.02,3.87 -17027,1700,'Lamb loin separable lean only trimmed to 1/4in fat choice cooked broiled','LAMB LOIN LN 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone 23% separable fat 21%',44,,6.25,4.27,9.02,3.87 -17028,1700,'Lamb loin separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB LOIN LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 22% separable fat 22%',44,,6.25,4.27,9.02,3.87 -17029,1700,'Lamb rib separable lean and fat trimmed to 1/4in fat choice raw','LAMB RIB LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',27,,6.25,4.27,9.02,3.87 -17030,1700,'Lamb rib separable lean and fat trimmed to 1/4in fat choice cooked broiled','LAMB RIB LN & FAT 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone',30,,6.25,4.27,9.02,3.87 -17031,1700,'Lamb rib separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB RIB LN & FAT 1/4in FAT CHOIC CKD RSTD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17032,1700,'Lamb rib separable lean only trimmed to 1/4in fat choice raw','LAMB RIB LN 1/4in FAT CHOIC RAW',,,,'Bone 27% separable fat 30%',57,,6.25,4.27,9.02,3.87 -17033,1700,'Lamb rib separable lean only trimmed to 1/4in fat choice cooked broiled','LAMB RIB LN 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone 30% separable fat 25%',55,,6.25,4.27,9.02,3.87 -17034,1700,'Lamb rib separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB RIB LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 28% separable fat 27%',55,,6.25,4.27,9.02,3.87 -17035,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/4in fat choice raw','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/4in FAT CHOIC RAW',,,'Y','Bone 21%',21,,6.25,4.27,9.02,3.87 -17036,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/4in fat choice cooked braised','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/4in FAT CHOIC CKD BRSD',,,,'Bone',25,,6.25,4.27,9.02,3.87 -17037,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/4in FAT CHOIC CKD BRLD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17038,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/4in FAT CHOIC CKD RSTD',,,'Y','Bone',22,,6.25,4.27,9.02,3.87 -17039,1700,'Lamb shoulder whole (arm and blade) separable lean only trimmed to 1/4in fat choice raw','LAMB SHLDR WHL (ARM&BLD) LN 1/4in FAT CHOIC RAW',,,'Y','Bone 21% separable fat 18%',39,,6.25,4.27,9.02,3.87 -17040,1700,'Lamb shoulder whole (arm and blade) separable lean only trimmed to 1/4in fat choice cooked braised','LAMB SHLDR WHL (ARM&BLD) LN 1/4in FAT CHOIC CKD BRSD',,,,'Bone 25% separable fat 15%',40,,6.25,4.27,9.02,3.87 -17041,1700,'Lamb shoulder whole (arm and blade) separable lean only trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR WHL (ARM&BLD) LN 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone 24% separable fat 14%',38,,6.25,4.27,9.02,3.87 -17042,1700,'Lamb shoulder whole (arm and blade) separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR WHL (ARM&BLD) LN 1/4in FAT CHOIC CKD RSTD',,,'Y','Bone 22% separable fat 15%',37,,6.25,4.27,9.02,3.87 -17043,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/4in fat choice raw','LAMB SHLDR ARM LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',17,,6.25,4.27,9.02,3.87 -17044,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/4in fat choice cooked braised','LAMB SHLDR ARM LN & FAT 1/4in FAT CHOIC CKD BRSD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17045,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR ARM LN & FAT 1/4in FAT CHOIC CKD BRLD',,,,'Bone',19,,6.25,4.27,9.02,3.87 -17046,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR ARM LN & FAT 1/4in FAT CHOIC CKD RSTD',,,,'Bone',17,,6.25,4.27,9.02,3.87 -17047,1700,'Lamb shoulder arm separable lean only trimmed to 1/4in fat choice raw','LAMB SHLDR ARM LN 1/4in FAT CHOIC RAW',,,,'Bone 17% separable fat 20%',37,,6.25,4.27,9.02,3.87 -17048,1700,'Lamb shoulder arm separable lean only trimmed to 1/4in fat choice cooked braised','LAMB SHLDR ARM LN 1/4in FAT CHOIC CKD BRSD',,,,'Bone 20% separable fat 18%',38,,6.25,4.27,9.02,3.87 -17049,1700,'Lamb shoulder arm separable lean only trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR ARM LN 1/4in FAT CHOIC CKD BRLD',,,,'Bone 19% separable fat 17%',36,,6.25,4.27,9.02,3.87 -17050,1700,'Lamb shoulder arm separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR ARM LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 17% separable fat 18%',35,,6.25,4.27,9.02,3.87 -17051,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/4in fat choice raw','LAMB SHLDR BLADE LN & FAT 1/4in FAT CHOIC RAW',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17052,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/4in fat choice cooked braised','LAMB SHLDR BLADE LN & FAT 1/4in FAT CHOIC CKD BRSD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17053,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR BLADE LN & FAT 1/4in FAT CHOIC CKD BRLD',,,'Y','Bone',27,,6.25,4.27,9.02,3.87 -17054,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR BLADE LN & FAT 1/4in FAT CHOIC CKD RSTD',,,,'Bone',25,,6.25,4.27,9.02,3.87 -17055,1700,'Lamb shoulder blade separable lean only trimmed to 1/4in fat choice raw','LAMB SHLDR BLADE LN 1/4in FAT CHOIC RAW',,,,'Bone 24% separable fat 16%',40,,6.25,4.27,9.02,3.87 -17056,1700,'Lamb shoulder blade separable lean only trimmed to 1/4in fat choice cooked braised','LAMB SHLDR BLADE LN 1/4in FAT CHOIC CKD BRSD',,,,'Bone 28% separable fat 14%',42,,6.25,4.27,9.02,3.87 -17057,1700,'Lamb shoulder blade separable lean only trimmed to 1/4in fat choice cooked broiled','LAMB SHLDR BLADE LN 1/4in FAT CHOIC CKD BRLD',,,,'Bone 27% separable fat 13%',40,,6.25,4.27,9.02,3.87 -17058,1700,'Lamb shoulder blade separable lean only trimmed to 1/4in fat choice cooked roasted','LAMB SHLDR BLADE LN 1/4in FAT CHOIC CKD RSTD',,,,'Bone 25% separable fat 14%',39,,6.25,4.27,9.02,3.87 -17059,1700,'Lamb cubed for stew or kabob (leg and shoulder) separable lean only trimmed to 1/4in fat raw','LAMB CUBED FOR STEW OR KABOB (LEG & SHOULDER) LN 1/4inFAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -17060,1700,'Lamb cubed for stew or kabob (leg and shoulder) separable lean only trimmed to 1/4in fat cooked braised','LAMB CUBED FOR STEW OR KABOB(LEG&SHLDER) LN 1/4inFAT CKD BRSD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17061,1700,'Lamb cubed for stew or kabob (leg and shoulder) separable lean only trimmed to 1/4in fat cooked broiled','LAMB CUBED FOR STEW OR KABOB(LEG&SHLDER) LN 1/4inFAT CKD BRLD',,,,,0,,6.25,4.27,9.02,3.87 -17062,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean and fat raw','LAMB NZ IMP FRZ COMP OF RTL CUTS LN&FAT RAW',,,,'Bone',30,,6.25,4.27,9.02,3.87 -17063,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean and fat cooked','LAMB NZ IMP FRZ COMP OF RTL CUTS LN&FAT CKD',,,,'Bone',31,,6.25,4.27,9.02,3.87 -17064,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean only raw','LAMB NZ IMP FRZ COMP OF RTL CUTS LN RAW',,,,'Bone 30% separable fat 20%',50,,6.25,4.27,9.02,3.87 -17065,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean only cooked','LAMB NZ IMP FRZ COMP OF RTL CUTS LN CKD',,,,'Bone 31% separable fat 18%',49,,6.25,4.27,9.02,3.87 -17066,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable fat raw','LAMB NZ IMP FRZ COMP OF RTL CUTS FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -17067,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable fat cooked','LAMB NZ IMP FRZ COMP OF RTL CUTS FAT CKD',,,,,0,,6.25,4.27,9.02,3.87 -17068,1700,'Lamb New Zealand imported fore-shank separable lean and fat raw','LAMB NZ IMP FORE-SHANK LN & FAT RAW',,,,'Bone and connective tissue 36%',36,,,,, -17069,1700,'Lamb New Zealand imported fore-shank separable lean and fat cooked braised','LAMB NZ IMP FORE-SHANK LN & FAT CKD BRSD',,,,'Bone and connective tissue 41%',41,,,,, -17070,1700,'Lamb New Zealand imported fore-shank separable lean only raw','LAMB NZ IMP FORE-SHANK LN RAW',,,,'Bone and connective tissue 36% separable fat 7%',43,,6.25,,, -17071,1700,'Lamb New Zealand imported fore-shank separable lean only cooked braised','LAMB NZ IMP FORE-SHANK LN CKD BRSD',,,,'Bone 41% separable fat 7%',48,,6.25,,, -17072,1700,'Lamb New Zealand imported leg chop/steak bone-in separable lean and fat raw','LAMB NZ IMP LEG CHOP/STEAK BONE-IN LN & FAT RAW',,,,'Bone and connective tissue 15%',15,,,,, -17073,1700,'Lamb New Zealand imported frozen leg whole (shank and sirloin) separable lean and fat cooked roasted','LAMB NZ IMP FRZ LEG WHL (SHK&SIRL) LN&FAT CKD RSTD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17074,1700,'Lamb New Zealand imported leg chop/steak bone-in separable lean only raw','LAMB NZ IMP LEG CHOP/STEAK BONE-IN LN RAW',,,,'Bone and connective tissue 15% separable fat 12%',27,,6.25,,, -17075,1700,'Lamb New Zealand imported frozen leg whole (shank and sirloin) separable lean only cooked roasted','LAMB NZ IMP FRZ LEG WHL (SHK&SIRL) LN CKD RSTD',,,,'Bone 24% separable fat 12%',36,,6.25,4.27,9.02,3.87 -17076,1700,'Lamb New Zealand imported loin chop separable lean and fat raw','LAMB NZ IMP LOIN CHOP LN & FAT RAW',,,,'Bone and connective tissue 20%',20,,,,, -17077,1700,'Lamb New Zealand imported frozen loin separable lean and fat cooked broiled','LAMB NZ IMP FRZ LOIN LN&FAT CKD BRLD',,,'Y','Bone',27,,6.25,4.27,9.02,3.87 -17078,1700,'Lamb New Zealand imported loin chop separable lean only raw','LAMB NZ IMP LOIN CHOP LN RAW',,,,'Bone and connective tissue 20% separable fat 23%',43,,6.25,,, -17079,1700,'Lamb New Zealand imported frozen loin separable lean only cooked broiled','LAMB NZ IMP FRZ LOIN LN CKD BRLD',,,,'Bone 27% separable fat 22%',49,,6.25,4.27,9.02,3.87 -17080,1700,'Lamb New Zealand imported rack - partly frenched separable lean and fat raw','LAMB NZ IMP RACK - PARTLY FRENCHED LN & FAT RAW',,,,'Bone and connective tissue 24%',24,,,,, -17081,1700,'Lamb New Zealand imported rack - partly frenched separable lean and fat cooked fast roasted','LAMB NZ IMP RACK - PARTLY FRENCHED LN & FAT CKD FAST RSTD',,,'Y','Bone and connective tissue 23%',23,,,,, -17082,1700,'Lamb New Zealand imported rack - partly frenched separable lean only raw','LAMB NZ IMP RACK - PARTLY FRENCHED LN RAW',,,,'Bone and connective tissue 24% separable fat 11%',35,,6.25,,, -17083,1700,'Lamb New Zealand imported rack - partly frenched separable lean only cooked fast roasted','LAMB NZ IMP RACK - PARTLY FRENCHED LN CKD FAST RSTD',,,'Y','Bone and connective tissue 23% separable fat 11%',34,,6.25,,, -17084,1700,'Lamb New Zealand imported square-cut shoulder separable lean and fat raw','LAMB NZ IMP SQUARE-CUT SHLDR LN & FAT RAW',,,,'Bone and connective tissue 25%',25,,,,, -17085,1700,'Lamb New Zealand imported frozen shoulder whole (arm and blade) separable lean and fat cooked braised','LAMB NZ IMP FRZ SHLDR WHL (ARM&BLD) LN&FAT CKD BRSD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -17086,1700,'Lamb New Zealand imported square-cut shoulder separable lean only raw','LAMB NZ IMP SQUARE-CUT SHLDR LN RAW',,,,'Bone and connective tissue 25% separable fat 17%',42,,6.25,,, -17087,1700,'Lamb New Zealand imported frozen shoulder whole (arm and blade) separable lean only cooked braised','LAMB NZ IMP FRZ SHLDR WHL (ARM&BLD) LN CKD BRSD',,,,'Bone 29% separable fat 17%',46,,6.25,4.27,9.02,3.87 -17088,1700,'Veal composite of trimmed retail cuts separable lean and fat raw','VEAL COMP OF RTL CUTS LN&FAT RAW',,,,'Bone',31,'Bos taurus',6.25,4.27,9.02,3.87 -17089,1700,'Veal composite of trimmed retail cuts separable lean and fat cooked','VEAL COMP OF RTL CUTS LN&FAT CKD',,,'Y','Bone',28,,6.25,4.27,9.02,3.87 -17090,1700,'Veal composite of trimmed retail cuts separable lean only raw','VEAL COMP OF RTL CUTS LN RAW',,,,'Bone 31% separable fat 4%',35,,6.25,4.27,9.02,3.87 -17091,1700,'Veal composite of trimmed retail cuts separable lean only cooked','VEAL COMP OF RTL CUTS LN CKD',,,'Y','Bone 28% separable fat 6%',34,,6.25,4.27,9.02,3.87 -17092,1700,'Veal composite of trimmed retail cuts separable fat raw','VEAL COMP OF RTL CUTS FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -17093,1700,'Veal composite of trimmed retail cuts separable fat cooked','VEAL COMP OF RTL CUTS FAT CKD',,,,,0,,6.25,4.27,9.02,3.87 -17094,1700,'Veal leg (top round) separable lean and fat raw','VEAL LEG (TOP RND) LN&FAT RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -17095,1700,'Veal leg (top round) separable lean and fat cooked braised','VEAL LEG (TOP RND) LN&FAT CKD BRSD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17096,1700,'Veal leg (top round) separable lean and fat cooked pan-fried breaded','VEAL LEG (TOP RND) LN&FAT CKD PAN-FRIED BREADED',,,'Y',,0,,6.25,4.27,9.02,3.87 -17097,1700,'Veal leg (top round) separable lean and fat cooked pan-fried not breaded','VEAL LEG (TOP RND) LN&FAT CKD PAN-FRIED NOT BREADED',,,'Y',,0,,6.25,4.27,9.02,3.87 -17098,1700,'Veal leg (top round) separable lean and fat cooked roasted','VEAL LEG (TOP RND) LN&FAT CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17099,1700,'Veal leg (top round) separable lean only raw','VEAL LEG (TOP RND) LN RAW',,,,'Separable fat',2,,6.25,4.27,9.02,3.87 -17100,1700,'Veal leg (top round) separable lean only cooked braised','VEAL LEG (TOP RND) LN CKD BRSD',,,,'Separable fat',2,,6.25,4.27,9.02,3.87 -17101,1700,'Veal leg (top round) separable lean only cooked pan-fried breaded','VEAL LEG (TOP RND) LN CKD PAN-FRIED BREADED',,,'Y',,0,,6.25,4.27,9.02,3.87 -17102,1700,'Veal leg (top round) separable lean only cooked pan-fried not breaded','VEAL LEG (TOP RND) LN CKD PAN-FRIED NOT BREADED',,,'Y','Separable fat',5,,6.25,4.27,9.02,3.87 -17103,1700,'Veal leg (top round) separable lean only cooked roasted','VEAL LEG (TOP RND) LN CKD RSTD',,,,'Separable fat',2,,6.25,4.27,9.02,3.87 -17104,1700,'Veal loin separable lean and fat raw','VEAL LOIN LN&FAT RAW','IMPS# 332',,'Y','Bone and connective tissue 29%',29,,6.25,4.27,9.02,3.87 -17105,1700,'Veal loin separable lean and fat cooked braised','VEAL LOIN LN&FAT CKD BRSD',,,'Y','Bone',36,,6.25,4.27,9.02,3.87 -17106,1700,'Veal loin separable lean and fat cooked roasted','VEAL LOIN LN&FAT CKD RSTD',,,'Y','Bone',36,,6.25,4.27,9.02,3.87 -17107,1700,'Veal loin separable lean only raw','VEAL LOIN LN RAW','IMPS # 332',,,'Bone 30% separable fat 10%',40,,,,, -17108,1700,'Veal loin separable lean only cooked braised','VEAL LOIN LN CKD BRSD',,,'Y','Bone 36% separable fat 9%',45,,6.25,4.27,9.02,3.87 -17109,1700,'Veal loin separable lean only cooked roasted','VEAL LOIN LN CKD RSTD',,,'Y','Bone 36% separable fat 6%',42,,6.25,4.27,9.02,3.87 -17110,1700,'Veal rib separable lean and fat raw','VEAL RIB LN&FAT RAW',,,,'Bone',35,,6.25,4.27,9.02,3.87 -17111,1700,'Veal rib separable lean and fat cooked braised','VEAL RIB LN&FAT CKD BRSD',,,'Y','Bone',37,,6.25,4.27,9.02,3.87 -17112,1700,'Veal rib separable lean and fat cooked roasted','VEAL RIB LN&FAT CKD RSTD',,,,'Bone',33,,6.25,4.27,9.02,3.87 -17113,1700,'Veal rib separable lean only raw','VEAL RIB LN RAW',,,,'Bone 35% separable fat 5%',40,,6.25,4.27,9.02,3.87 -17114,1700,'Veal rib separable lean only cooked braised','VEAL RIB LN CKD BRSD',,,'Y','Bone 37% separable fat 5%',42,,6.25,4.27,9.02,3.87 -17115,1700,'Veal rib separable lean only cooked roasted','VEAL RIB LN CKD RSTD',,,,'Bone 33% separable fat 7%',40,,6.25,4.27,9.02,3.87 -17116,1700,'Veal shoulder whole (arm and blade) separable lean and fat raw','VEAL SHLDR WHL (ARM&BLD) LN&FAT RAW',,,'Y','Bone',28,,6.25,4.27,9.02,3.87 -17117,1700,'Veal shoulder whole (arm and blade) separable lean and fat cooked braised','VEAL SHLDR WHL (ARM&BLD) LN&FAT CKD BRSD',,,'Y','Bone',31,,6.25,4.27,9.02,3.87 -17118,1700,'Veal shoulder whole (arm and blade) separable lean and fat cooked roasted','VEAL SHLDR WHL (ARM&BLD) LN&FAT CKD RSTD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17119,1700,'Veal shoulder whole (arm and blade) separable lean only raw','VEAL SHLDR WHL (ARM&BLD) LN RAW',,,,'Bone 28% separable fat 3%',31,,6.25,4.27,9.02,3.87 -17120,1700,'Veal shoulder whole (arm and blade) separable lean only cooked braised','VEAL SHLDR WHL (ARM&BLD) LN CKD BRSD',,,,'Bone 31% separable fat 4%',35,,6.25,4.27,9.02,3.87 -17121,1700,'Veal shoulder whole (arm and blade) separable lean only cooked roasted','VEAL SHLDR WHL (ARM&BLD) LN CKD RSTD',,,,'Bone 28% separable fat 2%',30,,6.25,4.27,9.02,3.87 -17122,1700,'Veal shoulder arm separable lean and fat raw','VEAL SHLDR ARM LN&FAT RAW',,,'Y','Bone',21,,6.25,4.27,9.02,3.87 -17123,1700,'Veal shoulder arm separable lean and fat cooked braised','VEAL SHLDR ARM LN&FAT CKD BRSD',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17124,1700,'Veal shoulder arm separable lean and fat cooked roasted','VEAL SHLDR ARM LN&FAT CKD RSTD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -17125,1700,'Veal shoulder arm separable lean only raw','VEAL SHLDR ARM LN RAW',,,,'Bone 21% separable fat 4%',25,,6.25,4.27,9.02,3.87 -17126,1700,'Veal shoulder arm separable lean only cooked braised','VEAL SHLDR ARM LN CKD BRSD',,,,'Bone 23% separable fat 6%',29,,6.25,4.27,9.02,3.87 -17127,1700,'Veal shoulder arm separable lean only cooked roasted','VEAL SHLDR ARM LN CKD RSTD',,,,'Bone 21% separable fat 3%',24,,6.25,4.27,9.02,3.87 -17128,1700,'Veal shoulder blade chop separable lean and fat raw','VEAL SHLDR BLADE CHOP LN & FAT RAW','IMPS# 1309',,,'Bone and connective tissue 22%',22,,6.25,4.27,9.02,3.87 -17129,1700,'Veal shoulder blade separable lean and fat cooked braised','VEAL SHLDR BLADE LN&FAT CKD BRSD',,,'Y','Bone',35,,6.25,4.27,9.02,3.87 -17130,1700,'Veal shoulder blade separable lean and fat cooked roasted','VEAL SHLDR BLADE LN&FAT CKD RSTD',,,,'Bone',32,,6.25,4.27,9.02,3.87 -17131,1700,'Veal shoulder blade chop separable lean only raw','VEAL SHLDR BLADE CHOP LN RAW','IMPS # 1309A',,,'Bone and connective tissue 22% separable fat 8%',30,,6.25,4.27,9.02,3.87 -17132,1700,'Veal shoulder blade separable lean only cooked braised','VEAL SHLDR BLADE LN CKD BRSD',,,'Y','Bone 35% separable fat 4%',39,,6.25,4.27,9.02,3.87 -17133,1700,'Veal shoulder blade separable lean only cooked roasted','VEAL SHLDR BLADE LN CKD RSTD',,,,'Bone 32% separable fat 2%',34,,6.25,4.27,9.02,3.87 -17134,1700,'Veal sirloin separable lean and fat raw','VEAL SIRLOIN LN&FAT RAW',,,'Y','Bone',25,,6.25,4.27,9.02,3.87 -17135,1700,'Veal sirloin separable lean and fat cooked braised','VEAL SIRLOIN LN&FAT CKD BRSD',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17136,1700,'Veal sirloin separable lean and fat cooked roasted','VEAL SIRLOIN LN&FAT CKD RSTD',,,'Y','Bone',25,,6.25,4.27,9.02,3.87 -17137,1700,'Veal sirloin separable lean only raw','VEAL SIRLOIN LN RAW',,,,'Bone 25% separable fat 6%',31,,6.25,4.27,9.02,3.87 -17138,1700,'Veal sirloin separable lean only cooked braised','VEAL SIRLOIN LN CKD BRSD',,,,'Bone 26% separable fat 8%',34,,6.25,4.27,9.02,3.87 -17139,1700,'Veal sirloin separable lean only cooked roasted','VEAL SIRLOIN LN CKD RSTD',,,,'Bone 25% separable fat 5%',30,,6.25,4.27,9.02,3.87 -17140,1700,'Veal cubed for stew (leg and shoulder) separable lean only raw','VEAL CUBED FOR STEW (LEG&SHLDR) LN RAW',,,,,0,,6.25,4.27,9.02,3.87 -17141,1700,'Veal cubed for stew (leg and shoulder) separable lean only cooked braised','VEAL CUBED FOR STEW (LEG&SHLDR) LN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17142,1700,'Veal ground raw','VEAL GROUND RAW','IMPS 396',,,,0,,6.25,4.27,9.02,3.87 -17143,1700,'Veal ground cooked broiled','VEAL GROUND CKD BRLD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17144,1700,'Game meat antelope raw','GAME MEAT ANTELOPE RAW',,,,,0,'Antilocapra americana Bosephalus tragocamelus',6.25,4.27,9.02,3.87 -17145,1700,'Game meat antelope cooked roasted','GAME MEAT ANTELOPE CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17146,1700,'Game meat bear raw','GAME MEAT BEAR RAW',,,,,0,'Ursus arctos Euarctos spp.',6.25,4.27,9.02,3.87 -17147,1700,'Game meat bear cooked simmered','GAME MEAT BEAR CKD SIMMRD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17148,1700,'Bison ground grass-fed cooked','BISON GROUND GRASS-FED CKD','Buffalo',,,,0,'Bison bison',,,, -17149,1700,'Bison ground grass-fed raw','BISON GROUND GRASS-FED RAW','Buffalo',,,,0,'Bison bison',,,, -17150,1700,'Game meat beaver raw','GAME MEAT BEAVER RAW',,,,,0,'Castor canadensis',6.25,4.27,9.02,3.87 -17151,1700,'Game meat beaver cooked roasted','GAME MEAT BEAVER CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17152,1700,'Game meat beefalo composite of cuts raw','GAME MEAT BEEFALO COMP OF CUTS RAW',,,,,0,,6.25,4.27,9.02,3.87 -17153,1700,'Game meat beefalo composite of cuts cooked roasted','GAME MEAT BEEFALO COMP OF CUTS CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17154,1700,'Veal Australian separable fat raw','VEAL AUSTRALIAN FAT RAW',,,,,0,,6.25,,, -17155,1700,'Veal Australian rib rib roast separable lean and fat raw','VEAL AUSTRALIAN RIB RIB RST LN & FAT RAW',,,,'Bone and connective tissue 22%',22,,,,, -17156,1700,'Game meat bison separable lean only raw','GAME MEAT BISON LN RAW','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17157,1700,'Game meat bison separable lean only cooked roasted','GAME MEAT BISON LN CKD RSTD','buffalo',,'Y',,0,'Bison bison',6.25,4.27,9.02,3.87 -17158,1700,'Game meat boar wild raw','GAME MEAT BOAR WILD RAW',,,,,0,'Sus scrofa',6.25,4.27,9.02,3.87 -17159,1700,'Game meat boar wild cooked roasted','GAME MEAT BOAR WILD CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17160,1700,'Game meat buffalo water raw','GAME MEAT BUFFALO H2O RAW',,,,,0,'Bubalus bubalis',6.25,4.27,9.02,3.87 -17161,1700,'Game meat buffalo water cooked roasted','GAME MEAT BUFFALO H2O CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17162,1700,'Game meat caribou raw','GAME MEAT CARIBOU RAW',,,,,0,'Rangifer spp.',6.25,4.27,9.02,3.87 -17163,1700,'Game meat caribou cooked roasted','GAME MEAT CARIBOU CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17164,1700,'Game meat deer raw','GAME MEAT DEER RAW',,,,,0,'Odocoileus spp.',6.25,4.27,9.02,3.87 -17165,1700,'Game meat deer cooked roasted','GAME MEAT DEER CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17166,1700,'Game meat elk raw','GAME MEAT ELK RAW',,,,,0,'Cervus elaphyus',6.25,4.27,9.02,3.87 -17167,1700,'Game meat elk cooked roasted','GAME MEAT ELK CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17168,1700,'Game meat goat raw','GAME MEAT GOAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -17169,1700,'Game meat goat cooked roasted','GAME MEAT GOAT CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17170,1700,'Game meat horse raw','GAME MEAT HORSE RAW',,,,,0,'Equus caballus',6.25,4.27,9.02,3.87 -17171,1700,'Game meat horse cooked roasted','GAME MEAT HORSE CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17172,1700,'Game meat moose raw','GAME MEAT MOOSE RAW',,,,,0,'Alces alces',6.25,4.27,9.02,3.87 -17173,1700,'Game meat moose cooked roasted','GAME MEAT MOOSE CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17174,1700,'Game meat muskrat raw','GAME MEAT MUSKRAT RAW',,,,,0,'Ondatra zibethica',6.25,4.27,9.02,3.87 -17175,1700,'Game meat muskrat cooked roasted','GAME MEAT MUSKRAT CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17176,1700,'Game meat opossum cooked roasted','GAME MEAT OPOSSUM CKD RSTD',,,'Y',,0,'Didelphis virginiana',6.25,4.27,9.02,3.87 -17177,1700,'Game meat rabbit domesticated composite of cuts raw','GAME MEAT RABBIT DOMESTICATED COMP OF CUTS RAW',,,,,0,'Oryctolagus spp.',6.25,4.27,9.02,3.87 -17178,1700,'Game meat rabbit domesticated composite of cuts cooked roasted','GAME MEAT RABBIT DOMESTICATED COMP OF CUTS CKD RSTD',,,,,0,,6.25,4.27,9.02,3.87 -17179,1700,'Game meat rabbit domesticated composite of cuts cooked stewed','GAME MEAT RABBIT DOMESTICATED COMP OF CUTS CKD STWD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17180,1700,'Game meat rabbit wild raw','GAME MEAT RABBIT WILD RAW',,,,,0,'Sylvilagus spp. Oryctolagus spp.',6.25,4.27,9.02,3.87 -17181,1700,'Game meat rabbit wild cooked stewed','GAME MEAT RABBIT WILD CKD STWD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17182,1700,'Game meat raccoon cooked roasted','GAME MEAT RACCOON CKD RSTD',,,'Y',,0,'Procyon lotor',6.25,4.27,9.02,3.87 -17183,1700,'Game meat squirrel raw','GAME MEAT SQUIRREL RAW',,,,,0,'Sciuridae',6.25,4.27,9.02,3.87 -17184,1700,'Game meat squirrel cooked roasted','GAME MEAT SQUIRREL CKD RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17185,1700,'Lamb variety meats and by-products brain raw','LAMB VAR MEATS&BY-PRODUCTS BRAIN RAW',,,,'Blood clots and membranes',2,,6.25,4.27,9.02,3.87 -17186,1700,'Lamb variety meats and by-products brain cooked braised','LAMB VAR MEATS&BY-PRODUCTS BRAIN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17187,1700,'Lamb variety meats and by-products brain cooked pan-fried','LAMB VAR MEATS&BY-PRODUCTS BRAIN CKD PAN-FRIED',,,,,0,,6.25,4.27,9.02,3.87 -17188,1700,'Veal variety meats and by-products brain raw','VEAL VAR MEATS&BY-PRODUCTS BRAIN RAW',,,,'Blood clots and membranes',3,,6.25,4.27,9.02,3.87 -17189,1700,'Veal variety meats and by-products brain cooked braised','VEAL VAR MEATS&BY-PRODUCTS BRAIN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17190,1700,'Veal variety meats and by-products brain cooked pan-fried','VEAL VAR MEATS&BY-PRODUCTS BRAIN CKD PAN-FRIED',,,,,0,,6.25,4.27,9.02,3.87 -17191,1700,'Lamb variety meats and by-products heart raw','LAMB VAR MEATS&BY-PRODUCTS HEART RAW',,,,'Fat and valves',22,,6.25,4.27,9.02,3.87 -17192,1700,'Lamb variety meats and by-products heart cooked braised','LAMB VAR MEATS&BY-PRODUCTS HEART CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17193,1700,'Veal variety meats and by-products heart raw','VEAL VAR MEATS&BY-PRODUCTS HEART RAW',,,,'Fat and valves',26,,6.25,4.27,9.02,3.87 -17194,1700,'Veal variety meats and by-products heart cooked braised','VEAL VAR MEATS&BY-PRODUCTS HEART CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17195,1700,'Lamb variety meats and by-products kidneys raw','LAMB VAR MEATS&BY-PRODUCTS KIDNEYS RAW',,,,'Connective tissue fat and veins',3,,6.25,4.27,9.02,3.87 -17196,1700,'Lamb variety meats and by-products kidneys cooked braised','LAMB VAR MEATS&BY-PRODUCTS KIDNEYS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17197,1700,'Veal variety meats and by-products kidneys raw','VEAL VAR MEATS&BY-PRODUCTS KIDNEYS RAW',,,,'Connective tissue fat and veins',12,,6.25,4.27,9.02,3.87 -17198,1700,'Veal variety meats and by-products kidneys cooked braised','VEAL VAR MEATS&BY-PRODUCTS KIDNEYS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17199,1700,'Lamb variety meats and by-products liver raw','LAMB VAR MEATS&BY-PRODUCTS LIVER RAW',,,,,0,,6.25,4.27,9.02,3.87 -17200,1700,'Lamb variety meats and by-products liver cooked braised','LAMB VAR MEATS&BY-PRODUCTS LIVER CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17201,1700,'Lamb variety meats and by-products liver cooked pan-fried','LAMB VAR MEATS&BY-PRODUCTS LIVER CKD PAN-FRIED',,,,,0,,6.25,4.27,9.02,3.87 -17202,1700,'Veal variety meats and by-products liver raw','VEAL VAR MEATS&BY-PRODUCTS LIVER RAW','calf liver',,,,0,,6.25,4.27,9.02,3.87 -17203,1700,'Veal variety meats and by-products liver cooked braised','VEAL VAR MEATS&BY-PRODUCTS LIVER CKD BRSD','calf liver',,,,0,,6.25,4.27,9.02,3.87 -17204,1700,'Veal variety meats and by-products liver cooked pan-fried','VEAL VAR MEATS&BY-PRODUCTS LIVER CKD PAN-FRIED','calf liver',,,,0,,6.25,4.27,9.02,3.87 -17205,1700,'Lamb variety meats and by-products lungs raw','LAMB VAR MEATS&BY-PRODUCTS LUNGS RAW',,,,'Blood clots and membranes',24,,6.25,4.27,9.02,3.87 -17206,1700,'Lamb variety meats and by-products lungs cooked braised','LAMB VAR MEATS&BY-PRODUCTS LUNGS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17207,1700,'Veal variety meats and by-products lungs raw','VEAL VAR MEATS&BY-PRODUCTS LUNGS RAW',,,,'Blood clots and membranes',24,,6.25,4.27,9.02,3.87 -17208,1700,'Veal variety meats and by-products lungs cooked braised','VEAL VAR MEATS&BY-PRODUCTS LUNGS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17209,1700,'Lamb variety meats and by-products mechanically separated raw','LAMB VAR MEATS&BY-PRODUCTS MECHANICALLY SEPARATED RAW',,,,,0,,6.25,4.27,9.02,3.87 -17210,1700,'Lamb variety meats and by-products pancreas raw','LAMB VAR MEATS&BY-PRODUCTS PANCREAS RAW',,,,,0,,6.25,4.27,9.02,3.87 -17211,1700,'Lamb variety meats and by-products pancreas cooked braised','LAMB VAR MEATS&BY-PRODUCTS PANCREAS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17212,1700,'Veal variety meats and by-products pancreas raw','VEAL VAR MEATS&BY-PRODUCTS PANCREAS RAW',,,,,0,,6.25,4.27,9.02,3.87 -17213,1700,'Veal variety meats and by-products pancreas cooked braised','VEAL VAR MEATS&BY-PRODUCTS PANCREAS CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17214,1700,'Lamb variety meats and by-products spleen raw','LAMB VAR MEATS&BY-PRODUCTS SPLEEN RAW',,,,,0,,6.25,4.27,9.02,3.87 -17215,1700,'Lamb variety meats and by-products spleen cooked braised','LAMB VAR MEATS&BY-PRODUCTS SPLEEN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17216,1700,'Veal variety meats and by-products spleen raw','VEAL VAR MEATS&BY-PRODUCTS SPLEEN RAW',,,,,0,,6.25,4.27,9.02,3.87 -17217,1700,'Veal variety meats and by-products spleen cooked braised','VEAL VAR MEATS&BY-PRODUCTS SPLEEN CKD BRSD',,,,,0,,6.25,4.27,9.02,3.87 -17218,1700,'Veal variety meats and by-products thymus raw','VEAL VAR MEATS&BY-PRODUCTS THYMUS RAW',,,,,0,,6.25,4.27,9.02,3.87 -17219,1700,'Veal variety meats and by-products thymus cooked braised','VEAL VAR MEATS&BY-PRODUCTS THYMUS CKD BRSD',,,'Y','Membranes 3.69%',4,,6.25,4.27,9.02,3.87 -17220,1700,'Lamb variety meats and by-products tongue raw','LAMB VAR MEATS&BY-PRODUCTS TONGUE RAW',,,,'Connective tissue and cartilage',16,,6.25,4.27,9.02,4.11 -17221,1700,'Lamb variety meats and by-products tongue cooked braised','LAMB VAR MEATS&BY-PRODUCTS TONGUE CKD BRSD',,,,,0,,6.25,4.27,9.02,4.11 -17222,1700,'Veal variety meats and by-products tongue raw','VEAL VAR MEATS&BY-PRODUCTS TONGUE RAW',,,,'Connective tissue and cartilage',16,,6.25,4.27,9.02,4.11 -17223,1700,'Veal variety meats and by-products tongue cooked braised','VEAL VAR MEATS&BY-PRODUCTS TONGUE CKD BRSD',,,,,0,,6.25,4.27,9.02,4.11 -17224,1700,'Lamb ground raw','LAMB GROUND RAW',,,'Y',,0,,6.25,4.27,9.02,3.87 -17225,1700,'Lamb ground cooked broiled','LAMB GROUND CKD BRLD',,,'Y',,0,,6.25,4.27,9.02,3.87 -17226,1700,'Lamb composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat choice raw','LAMB COMP OF RTL CUTS LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17227,1700,'Lamb composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat choice cooked','LAMB COMP OF RTL CUTS LN & FAT 1/8in FAT CHOIC CKD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17228,1700,'Lamb foreshank separable lean and fat trimmed to 1/8in fat choice raw','LAMB FORESHANK LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',52,,6.25,4.27,9.02,3.87 -17229,1700,'Lamb foreshank separable lean and fat trimmed to 1/8in fat cooked braised','LAMB FORESHANK LN & FAT 1/8in FAT CKD BRSD',,,,'Bone',56,,6.25,4.27,9.02,3.87 -17230,1700,'Lamb leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat choice raw','LAMB LEG WHL (SHK&SIRL) LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17231,1700,'Lamb leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB LEG WHL (SHK&SIRL) LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17232,1700,'Lamb leg shank half separable lean and fat trimmed to 1/8in fat choice raw','LAMB LEG SHANK HALF LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17233,1700,'Lamb leg shank half separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB LEG SHANK HALF LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17234,1700,'Lamb leg sirloin half separable lean and fat trimmed to 1/8in fat choice raw','LAMB LEG SIRLOIN HALF LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17235,1700,'Lamb leg sirloin half separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB LEG SIRLOIN HALF LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17236,1700,'Lamb loin separable lean and fat trimmed to 1/8in fat choice raw','LAMB LOIN LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17237,1700,'Lamb loin separable lean and fat trimmed to 1/8in fat choice cooked broiled','LAMB LOIN LN & FAT 1/8in FAT CHOIC CKD BRLD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17238,1700,'Lamb loin separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB LOIN LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',23,,6.25,4.27,9.02,3.87 -17239,1700,'Lamb rib separable lean and fat trimmed to 1/8in fat choice raw','LAMB RIB LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',29,,6.25,4.27,9.02,3.87 -17240,1700,'Lamb rib separable lean and fat trimmed to 1/8in fat choice cooked broiled','LAMB RIB LN & FAT 1/8in FAT CHOIC CKD BRLD',,,,'Bone',32,,6.25,4.27,9.02,3.87 -17241,1700,'Lamb rib separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB RIB LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',30,,6.25,4.27,9.02,3.87 -17242,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat choice raw','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17243,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat choice cooked braised','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/8in FAT CHOIC CKD BRSD',,,,'Bone',27,,6.25,4.27,9.02,3.87 -17244,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat choice cooked broiled','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/8in FAT CHOIC CKD BRLD',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17245,1700,'Lamb shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB SHLDR WHL (ARM&BLD) LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17246,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/8in fat choice raw','LAMB SHLDR ARM LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',18,,6.25,4.27,9.02,3.87 -17247,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/8in fat choice cooked braised','LAMB SHLDR ARM LN & FAT 1/8in FAT CHOIC CKD BRSD',,,,'Bone',21,,6.25,4.27,9.02,3.87 -17248,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB SHLDR ARM LN & FAT 1/8in FAT CKD BRLD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17249,1700,'Lamb shoulder arm separable lean and fat trimmed to 1/8in fat choice roasted','LAMB SHLDR ARM LN & FAT 1/8in FAT CHOIC RSTD',,,,'Bone',18,,6.25,4.27,9.02,3.87 -17250,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/8in fat choice raw','LAMB SHLDR BLADE LN & FAT 1/8in FAT CHOIC RAW',,,,'Bone',25,,6.25,4.27,9.02,3.87 -17251,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/8in fat choice cooked braised','LAMB SHLDR BLADE LN & FAT 1/8in FAT CHOIC CKD BRSD',,,,'Bone',29,,6.25,4.27,9.02,3.87 -17252,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/8in fat choice cooked broiled','LAMB SHLDR BLADE LN & FAT 1/8in FAT CHOIC CKD BRLD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17253,1700,'Lamb shoulder blade separable lean and fat trimmed to 1/8in fat choice cooked roasted','LAMB SHLDR BLADE LN & FAT 1/8in FAT CHOIC CKD RSTD',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17254,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ COMP OF RTL CUTS LN & FAT 1/8in FAT RAW',,,,'Bone',27,,6.25,4.27,9.02,3.87 -17255,1700,'Lamb New Zealand imported frozen composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat cooked','LAMB NZ IMP FRZ COMP OF RTL CUTS LN & FAT 1/8in FAT CKD',,,,'Bone',27,,6.25,4.27,9.02,3.87 -17256,1700,'Lamb New Zealand imported frozen foreshank separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ FORESHANK LN & FAT 1/8in FAT RAW',,,,'Bone',45,,6.25,4.27,9.02,3.87 -17257,1700,'Lamb New Zealand imported frozen foreshank separable lean and fat trimmed to 1/8in fat cooked braised','LAMB NZ IMP FRZ FORESHANK LN & FAT 1/8in FAT CKD BRSD',,,,'Bone',50,,6.25,4.27,9.02,3.87 -17258,1700,'Lamb New Zealand imported frozen leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ LEG WHL (SHK&SIRL) LN & FAT 1/8in FAT RAW',,,,'Bone',24,,6.25,4.27,9.02,3.87 -17259,1700,'Lamb New Zealand imported frozen leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB NZ IMP FRZ LEG WHL (SHK&SIRL) LN & FAT 1/8in CKD RSTD',,,,'Bone',25,,6.25,4.27,9.02,3.87 -17260,1700,'Lamb New Zealand imported frozen loin separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ LOIN LN & FAT 1/8in FAT RAW',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17261,1700,'Lamb New Zealand imported frozen loin separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB NZ IMP FRZ LOIN LN & FAT 1/8in FAT CKD BRLD',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17262,1700,'Lamb new zealand imported frozen rib separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ RIB LN&FAT 1/8inFAT RAW',,,,'Bone',33,,6.25,4.27,9.02,3.87 -17263,1700,'Lamb New Zealand imported frozen rib separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB NZ IMP FRZ RIB LN & FAT 1/8in FAT CKD RSTD',,,,'Bone',34,,6.25,4.27,9.02,3.87 -17264,1700,'Lamb New Zealand imported frozen shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat raw','LAMB NZ IMP FRZ SHLDR WHL (ARM&BLD) LN & FAT 1/8in RAW',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17265,1700,'Lamb New Zealand imported frozen shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat cooked braised','LAMB NZ IMP FRZ SHDR WHL (ARM&BLD) LN & FAT 1/8in CKD BRSD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17267,1700,'Game meat bison top sirloin separable lean only trimmed to 0in fat raw','GAME MEAT BISON TOP SIRLOIN LN 0inFAT RAW','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17268,1700,'Game meat bison ribeye separable lean only trimmed to 0in fat raw','GAME MEAT BISON RIBEYE LN 0inFAT RAW','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17269,1700,'Game meat bison shoulder clod separable lean only trimmed to 0in fat raw','GAME MEAT BISON SHLDR CLOD LN 0inFAT RAW','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17270,1700,'Veal breast separable fat cooked','VEAL BREAST FAT CKD',,,,,0,'Bos taurus',6.25,4.27,9.02, -17271,1700,'Veal breast whole boneless separable lean and fat raw','VEAL BREAST WHL BNLESS LN&FAT RAW',,,,,0,'Bos taurus',6.25,4.27,9.02, -17272,1700,'Veal breast whole boneless separable lean and fat cooked braised','VEAL BREAST WHL BNLESS LN&FAT CKD BRSD',,,,'Connective tissue',7,'Bos taurus',6.25,4.27,9.02, -17273,1700,'Veal breast plate half boneless separable lean and fat cooked braised','VEAL BREAST PLATE HALF BNLESS LN&FAT CKD BRSD',,,,'Connective tissue',11,'Bos taurus',6.25,4.27,9.02, -17274,1700,'Veal breast point half boneless separable lean and fat cooked braised','VEAL BREAST POINT HALF BNLESS LN&FAT CKD BRSD',,,,'Connective tissue',4,'Bos taurus',6.25,4.27,9.02, -17275,1700,'Veal breast whole boneless separable lean only cooked braised','VEAL BREAST WHL BNLESS LN CKD BRSD',,,,'Connective tissue 7% separable fat 15%',22,'Bos taurus',6.25,4.27,9.02, -17276,1700,'Veal shank (fore and hind) separable lean and fat raw','VEAL SHANK (FORE&HIND) LN&FAT RAW',,,,'Bone',29,'Bos taurus',6.25,4.27,9.02, -17277,1700,'Veal shank (fore and hind) separable lean and fat cooked braised','VEAL SHANK (FORE&HIND) LN&FAT CKD BRSD',,,,'Bone',39,'Bos taurus',6.25,4.27,9.02, -17278,1700,'Veal shank (fore and hind) separable lean only raw','VEAL SHANK (FORE&HIND) LN RAW',,,,'Bone 29% separable fat 1%',30,'Bos taurus',6.25,4.27,9.02, -17279,1700,'Veal shank (fore and hind) separable lean only cooked braised','VEAL SHANK (FORE&HIND) LN CKD BRSD',,,,'Bone 29% separable fat 1%',30,'Bos taurus',6.25,4.27,9.02, -17280,1700,'Lamb Australian imported fresh composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH COMP OF RTL CUTS LN&FAT 1/8inFAT RAW',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17281,1700,'Lamb Australian imported fresh composite of trimmed retail cuts separable lean and fat trimmed to 1/8in fat cooked','LAMB AUS IMP FRSH COMP OF RTL CUTS LN&FAT 1/8inFAT CKD',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17282,1700,'Lamb Australian imported fresh composite of trimmed retail cuts separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH COMP OF RTL CUTS LN 1/8inFAT RAW',,,,'Bone 20% separable fat 14%',34,,6.25,4.27,9.02,3.87 -17283,1700,'Lamb Australian imported fresh composite of trimmed retail cuts separable lean only trimmed to 1/8in fat cooked','LAMB AUS IMP FRSH COMP OF RTL CUTS LN 1/8inFAT CKD',,,,'Bone 22% separable fat 10%',32,,6.25,4.27,9.02,3.87 -17284,1700,'Lamb Australian imported fresh separable fat raw','LAMB AUS IMP FRSH FAT RAW',,,,,0,,6.25,4.27,9.02,3.87 -17285,1700,'Lamb Australian imported fresh separable fat cooked','LAMB AUS IMP FRSH FAT CKD',,,,,0,,6.25,4.27,9.02,3.87 -17286,1700,'Lamb Australian imported fresh foreshank separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH FORESHANK LN&FAT 1/8inFAT RAW',,,,'Bone',42,,6.25,4.27,9.02,3.87 -17287,1700,'Lamb Australian imported fresh foreshank separable lean and fat trimmed to 1/8in fat cooked braised','LAMB AUS IMP FRSH FORESHANK LN&FAT 1/8inFAT CKD BRSD',,,,'Bone',45,,6.25,4.27,9.02,3.87 -17288,1700,'Lamb Australian imported fresh foreshank separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH FORESHANK LN 1/8inFAT RAW',,,,'Bone 42% separable fat 8%',50,,6.25,4.27,9.02,3.87 -17289,1700,'Lamb Australian imported fresh foreshank separable lean only trimmed to 1/8in fat cooked braised','LAMB AUS IMP FRSH FORESHANK LN 1/8inFAT CKD BRSD',,,,'Bone 45% separable fat 8%',53,,6.25,4.27,9.02,3.87 -17290,1700,'Lamb Australian imported fresh leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG WHL (SHK&SIRL) LN&FAT 1/8inFAT RAW',,,,'Bone',14,,6.25,4.27,9.02,3.87 -17291,1700,'Lamb Australian imported fresh leg whole (shank and sirloin) separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG WHL (SHK&SIRL) LN&FAT 1/8inFAT CKD RSTD',,,,'Bone',16,,6.25,4.27,9.02,3.87 -17292,1700,'Lamb Australian imported fresh leg whole (shank and sirloin) separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG WHL (SHK&SIRL) LN 1/8inFAT RAW',,,,'Bone 14% separable fat 14%',28,,6.25,4.27,9.02,3.87 -17293,1700,'Lamb Australian imported fresh leg whole (shank and sirloin) separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG WHL (SHK&SIRL) LN 1/8inFAT CKD RSTD',,,,'Bone 16% separable fat 10%',26,,6.25,4.27,9.02,3.87 -17294,1700,'Lamb Australian imported fresh leg shank half separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SHANK HALF LN&FAT 1/8inFAT RAW',,,,'Bone',17,,6.25,4.27,9.02,3.87 -17295,1700,'Lamb Australian imported fresh leg shank half separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG SHANK HALF LN&FAT 1/8inFAT CKD RSTD',,,,'Bone',20,,6.25,4.27,9.02,3.87 -17296,1700,'Lamb Australian imported fresh leg shank half separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SHANK HALF LN 1/8inFAT RAW',,,,'Bone 17% separable fat 11%',28,,6.25,4.27,9.02,3.87 -17297,1700,'Lamb Australian imported fresh leg shank half separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG SHANK HALF LN 1/8inFAT CKD RSTD',,,,'Bone 20% separable fat 9%',29,,6.25,4.27,9.02,3.87 -17298,1700,'Lamb Australian imported fresh leg sirloin half boneless separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SIRLOIN HALF BNLESS LN&FAT 1/8inFAT RAW',,,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -17299,1700,'Lamb Australian imported fresh leg sirloin half boneless separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG SIRL HLF BNLESS LN&FT 1/8inFAT CKD RSTD',,,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -17300,1700,'Lamb Australian imported fresh leg sirloin half boneless separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SIRLOIN HALF BNLESS LN 1/8inFAT RAW',,,,'Connective tissue 2% separable fat 22%',24,,6.25,4.27,9.02,3.87 -17301,1700,'Lamb Australian imported fresh leg sirloin half boneless separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG SIRL HALF BNLESS LN 1/8inFAT CKD RSTD',,,,'Connective tissue 2% separable fat 15%',17,,6.25,4.27,9.02,3.87 -17302,1700,'Lamb Australian imported fresh leg sirloin chops boneless separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SIRL CHOPS BNLESS LN&FAT 1/8inFAT RAW',,,,'Connective tissue',2,,6.25,4.27,9.02,3.87 -17303,1700,'Lamb Australian imported fresh leg sirloin chops boneless separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LEG SIRL CHPS BNLESS LN&FT 1/8inFT CKD BRLD',,,,'Connective tissue',1,,6.25,4.27,9.02,3.87 -17304,1700,'Lamb Australian imported fresh leg sirloin chops boneless separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG SIRLOIN CHOPS BNLESS LN 1/8inFAT RAW',,,,'Connective tissue 2% separable fat 15%',17,,6.25,4.27,9.02,3.87 -17305,1700,'Lamb Australian imported fresh leg sirloin chops boneless separable lean only trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LEG SIRL CHOPS BNLESS LN 1/8inFAT CKD BRLD',,,,'Connective tissue 1% separable fat 10%',11,,6.25,4.27,9.02,3.87 -17306,1700,'Lamb Australian imported fresh leg center slice bone-in separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG CNTR SLICE BONE-IN LN&FAT 1/8inFAT RAW',,,,'Bone',6,,6.25,4.27,9.02,3.87 -17307,1700,'Lamb Australian imported fresh leg center slice bone-in separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LEG CNTR SLCE BNE-IN LN&FT 1/8inFT CKD BRLD',,,,'Bone',7,,6.25,4.27,9.02,3.87 -17308,1700,'Lamb Australian imported fresh leg center slice bone-in separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG CNTR SLICE BONE-IN LN 1/8inFAT RAW',,,,'Bone 6% separable fat 10%',16,,6.25,4.27,9.02,3.87 -17309,1700,'Lamb Australian imported fresh leg center slice bone-in separable lean only trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LEG CNTR SLICE BONE-IN LN 1/8inFAT CKD BRLD',,,,'Bone 7% separable fat 7%',14,,6.25,4.27,9.02,3.87 -17310,1700,'Lamb Australian imported fresh loin separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LOIN LN&FAT 1/8inFAT RAW',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17311,1700,'Lamb Australian imported fresh loin separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LOIN LN&FAT 1/8inFAT CKD BRLD',,,,'Bone',26,,6.25,4.27,9.02,3.87 -17312,1700,'Lamb Australian imported fresh loin separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LOIN LN 1/8inFAT RAW',,,,'Bone 28% separable fat 8%',36,,6.25,4.27,9.02,3.87 -17313,1700,'Lamb Australian imported fresh loin separable lean only trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH LOIN LN 1/8inFAT CKD BRLD',,,,'Bone 26% separable fat 5%',31,,6.25,4.27,9.02,3.87 -17314,1700,'Lamb Australian imported fresh rib chop/rack roast frenched bone-in separable lean and fat trimmed to 1/8in fat raw','LAMB AUS RIB CHOP/RACK RST FRENCHED BONE-IN LN & FT 1/8in RAW',,,,'Bone and connective tissue 25%',25,,,,, -17315,1700,'Lamb Australian imported fresh rib chop frenched bone-in separable lean and fat trimmed to 1/8in fat cooked grilled','LAMB AUS FRSH RIB CHOP FRENCHED BNE-IN LN & FAT 1/8in GRILLED',,,,'Bone and connective tissue 29%',29,,,,, -17316,1700,'Lamb Australian imported fresh rib chop/rack roast frenched bone-in separable lean only trimmed to 1/8in fat raw','LAMB AUS FRSH RIB CHOP/RACK RST FRENCHED BONE-IN LN 1/8in RAW','URMIS #2951',,,'Bone and connective tissue 25% separable fat 20%',45,,,,, -17317,1700,'Lamb Australian imported fresh rib chop frenched bone-in separable lean only trimmed to 1/8in fat cooked grilled','LAMB AUS FRSH RIB CHOP FRNCHED BONE-IN LN 1/8in CKD GRILLED','URMIS #2951',,,'Bone and connective tissue 29% separable fat 16%',45,,,,, -17318,1700,'Lamb Australian imported fresh shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR WHL (ARM&BLD) LN&FAT 1/8inFAT RAW',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17319,1700,'Lamb Australian imported fresh shoulder whole (arm and blade) separable lean and fat trimmed to 1/8in fat cooked','LAMB AUS IMP FRSH SHLDR WHL (ARM&BLD) LN&FAT 1/8inFAT CKD',,,,'Bone',22,,6.25,4.27,9.02,3.87 -17320,1700,'Lamb Australian imported fresh shoulder whole (arm and blade) separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR WHL (ARM&BLD) LN 1/8inFAT RAW',,,,'Bone 22% separable fat 16%',38,,6.25,4.27,9.02,3.87 -17321,1700,'Lamb Australian imported fresh shoulder whole (arm and blade) separable lean only trimmed to 1/8in fat cooked','LAMB AUS IMP FRSH SHLDR WHL (ARM&BLD) LN 1/8inFAT CKD',,,,'Bone 22% separable fat 12%',34,,6.25,4.27,9.02,3.87 -17322,1700,'Lamb Australian imported fresh shoulder arm separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR ARM LN&FAT 1/8inFAT RAW',,,,'Bone',9,,6.25,4.27,9.02,3.87 -17323,1700,'Lamb Australian imported fresh shoulder arm separable lean and fat trimmed to 1/8in fat cooked braised','LAMB AUS IMP FRSH SHLDR ARM LN&FAT 1/8inFAT CKD BRSD',,,,'Bone',13,,6.25,4.27,9.02,3.87 -17324,1700,'Lamb Australian imported fresh shoulder arm separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR ARM LN 1/8inFAT RAW',,,,'Bone 9% separable fat 19%',28,,6.25,4.27,9.02,3.87 -17325,1700,'Lamb Australian imported fresh shoulder arm separable lean only trimmed to 1/8in fat cooked braised','LAMB AUS IMP FRSH SHLDR ARM LN 1/8inFAT CKD BRSD',,,,'Bone 13% separable fat 16%',29,,6.25,4.27,9.02,3.87 -17326,1700,'Lamb Australian imported fresh shoulder blade separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR BLADE LN&FAT 1/8inFAT RAW',,,,'Bone',28,,6.25,4.27,9.02,3.87 -17327,1700,'Lamb Australian imported fresh shoulder blade separable lean and fat trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH SHLDR BLADE LN&FAT 1/8inFAT CKD BRLD',,,,'Bone',25,,6.25,4.27,9.02,3.87 -17328,1700,'Lamb Australian imported fresh shoulder blade separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH SHLDR BLADE LN 1/8inFAT RAW',,,,'Bone 28% separable fat 15%',43,,6.25,4.27,9.02,3.87 -17329,1700,'Lamb Australian imported fresh shoulder blade separable lean only trimmed to 1/8in fat cooked broiled','LAMB AUS IMP FRSH SHLDR BLADE LN 1/8inFAT CKD BRLD',,,,'Bone 25% separable fat 11%',36,,6.25,4.27,9.02,3.87 -17330,1700,'Game meat bison ground raw','GAME MEAT BISON GROUND RAW','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17331,1700,'Game meat bison ground cooked pan-broiled','GAME MEAT BISON GROUND CKD PAN-BROILED','buffalo',,,,0,'Bison bison',6.25,4.27,9.02,3.87 -17332,1700,'Game meat bison top sirloin separable lean only 1in steak cooked broiled','GAME MEAT BISON TOP SIRLOIN LN 1in STEAK CKD BRLD','buffalo',,,'Connective tissue 4% separable fat 4%',8,'Bison bison',6.25,4.27,9.02,3.87 -17333,1700,'Game meat bison chuck shoulder clod separable lean only cooked braised','GAME MEAT BISON CHUCK SHLDR CLOD LN CKD BRSD','buffalo',,,'Connective tissue 8% separable fat 3%',11,'Bison bison',6.25,4.27,9.02,3.87 -17334,1700,'Game meat bison chuck shoulder clod separable lean only raw','GAME MEAT BISON CHUCK SHLDR CLOD LN RAW','buffalo',,,'Connective tissue 8% separable fat 4%',12,'Bison bison',6.25,4.27,9.02,3.87 -17335,1700,'Game meat bison ribeye separable lean only 1in steak cooked broiled','GAME MEAT BISON RIBEYE LN 1in STEAK CKD BRLD','buffalo',,,'Connective tissue 9% separable fat 5%',14,'Bison bison',6.25,4.27,9.02,3.87 -17336,1700,'Game meat bison top round separable lean only 1in steak cooked broiled','GAME MEAT BISON TOP RND LN 1in STEAK CKD BRLD','buffalo',,,'Connective tissue 3.5% separable fat 0.72%',4,'Bison bison',6.25,4.27,9.02,3.87 -17337,1700,'Game meat bison top round separable lean only 1in steak raw','GAME MEAT BISON TOP RND LN 1in STEAK RAW','buffalo',,,'Connective tissue 3% separable fat 2%',5,'Bison bison',6.25,4.27,9.02,3.87 -17338,1700,'Game meat elk ground raw','GAME MEAT ELK GROUND RAW',,,,,0,'Cervus elaphus',6.25,4.27,9.02,3.87 -17339,1700,'Game meat elk ground cooked pan-broiled','GAME MEAT ELK GROUND CKD PAN-BROILED',,,,,0,'Cervus elaphus',6.25,4.27,9.02,3.87 -17340,1700,'Game meat elk loin separable lean only cooked broiled','GAME MEAT ELK LOIN LN CKD BRLD',,,,'Connective tissue 2% separable fat 4%',6,'Cervus elaphus',6.25,4.27,9.02,3.87 -17341,1700,'Game meat elk round separable lean only cooked broiled','GAME MEAT ELK RND LN CKD BRLD',,,,'Connective tissue 4% separable fat 1%',5,'Cervus elaphus',6.25,4.27,9.02,3.87 -17342,1700,'Game meat elk tenderloin separable lean only cooked broiled','GAME MEAT ELK TENDERLOIN LN CKD BRLD',,,,'Connective tissue 3% separable fat 1%',4,'Cervus elaphus',6.25,4.27,9.02,3.87 -17343,1700,'Game meat deer ground raw','GAME MEAT DEER GROUND RAW','venison',,'Y',,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17344,1700,'Game meat deer ground cooked pan-broiled','GAME MEAT DEER GROUND CKD PAN-BROILED','Venison',,'Y',,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17345,1700,'Game meat deer loin separable lean only 1in steak cooked broiled','GAME MEAT DEER LOIN LN 1in STEAK CKD BRLD','venison',,'Y',,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17346,1700,'Game meat deer shoulder clod separable lean only cooked braised','GAME MEAT DEER SHLDR CLOD LN CKD BRSD','venison',,'Y',,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17347,1700,'Game meat deer tenderloin separable lean only cooked broiled','GAME MEAT DEER TENDERLOIN LN CKD BRLD','venison',,,,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17348,1700,'Game meat deer top round separable lean only 1in steak cooked broiled','GAME MEAT DEER TOP RND LN 1in STEAK CKD BRLD','venison',,,,0,'Cervus elaphus Dama dama',6.25,4.27,9.02,3.87 -17349,1700,'Veal Australian shank fore bone-in separable lean only raw','VEAL AUSTRALIAN SHANK FORE BONE-IN LN RAW',,,,'Bone and connective tissue 39% separable fat 3%',42,,6.25,,, -17350,1700,'Veal Australian shank fore bone-in separable lean and fat raw','VEAL AUSTRALIAN SHANK FORE BONE-IN LN & FAT RAW',,,,'Bone and connective tissue 39%',39,,,,, -17351,1700,'Veal Australian shank hind bone-in separable lean only raw','VEAL AUSTRALIAN SHANK HIND BONE-IN LN RAW',,,,'Bone and connective tissue 31% separable fat 4%',35,,6.25,,, -17352,1700,'Veal Australian shank hind bone-in separable lean and fat raw','VEAL AUSTRALIAN SHANK HIND BONE-IN LN & FAT RAW',,,,'Bone and connective tissue 31%',31,,,,, -17353,1700,'Lamb Australian ground 85% lean / 15% fat raw','LAMB AUSTRALIAN GROUND 85% LN / 15% FAT RAW',,,,,0,,6.25,,, -17354,1700,'Lamb New Zealand imported Intermuscular fat cooked','LAMB NZ IMP INTERMUSCULAR FAT CKD',,,,,0,,6.25,,, -17355,1700,'Lamb New Zealand imported Intermuscular fat raw','LAMB NZ IMP INTERMUSCULAR FAT RAW',,,,,0,,6.25,,, -17356,1700,'Lamb New Zealand imported subcutaneous fat raw','LAMB NZ IMP SUBCUTANEOUS FAT RAW',,,,,0,,6.25,,, -17357,1700,'Lamb New Zealand imported brains cooked soaked and fried','LAMB NZ IMP BRAINS CKD SOAKED & FRIED',,,,,0,,6.25,,, -17358,1700,'Lamb New Zealand imported brains raw','LAMB NZ IMP BRAINS RAW',,,,'Connective tissue 2%',2,,6.25,,, -17359,1700,'Lamb New Zealand imported breast separable lean only cooked braised','LAMB NZ IMP BREAST LN CKD BRSD',,,,'Bone and connective tissue 28% Separable fat 37%',65,,6.25,,, -17360,1700,'Lamb New Zealand imported breast separable lean only raw','LAMB NZ IMP BREAST LN RAW',,,,'Bone and connective tissue 26% Separable fat 39%',65,,6.25,,, -17361,1700,'Lamb New Zealand imported chump boneless separable lean only cooked fast roasted','LAMB NZ IMP CHUMP BNLESS LN CKD FAST RSTD',,,,'Separable fat 21%',21,,6.25,,, -17362,1700,'Lamb New Zealand imported subcutaneous fat cooked','LAMB NZ IMP SUBCUTANEOUS FAT CKD',,,,,0,,6.25,,, -17363,1700,'Lamb New Zealand imported chump boneless separable lean only raw','LAMB NZ IMP CHUMP BNLESS LN RAW',,,,'Connective tissue 1% Separable fat 22%',23,,6.25,,, -17364,1700,'Lamb New Zealand imported kidney cooked soaked and fried','LAMB NZ IMP KIDNEY CKD SOAKED & FRIED',,,,'Connective tissue 5%',5,,6.25,,, -17365,1700,'Lamb New Zealand imported flap boneless separable lean only cooked braised','LAMB NZ IMP FLAP BNLESS LN CKD BRSD',,,,'Connective tissue 1% Separable fat 34%',35,,6.25,,, -17366,1700,'Lamb New Zealand imported flap boneless separable lean only raw','LAMB NZ IMP FLAP BNLESS LN RAW',,,,'Separable fat 32%',32,,6.25,,, -17367,1700,'Lamb New Zealand imported kidney raw','LAMB NZ IMP KIDNEY RAW',,,,'Connectiv tissue 4%',4,,6.25,,, -17368,1700,'Lamb New Zealand imported liver cooked soaked and fried','LAMB NZ IMP LIVER CKD SOAKED & FRIED',,,,'Connective tissue 1%',1,,6.25,,, -17369,1700,'Lamb New Zealand imported liver raw','LAMB NZ IMP LIVER RAW',,,,,0,,6.25,,, -17370,1700,'Lamb New Zealand imported ground lamb cooked braised','LAMB NZ IMP GROUND LAMB CKD BRSD',,,,,,,6.25,,, -17371,1700,'Lamb New Zealand imported ground lamb raw','LAMB NZ IMP GROUND LAMB RAW',,,,,,,6.25,,, -17372,1700,'Lamb New Zealand imported heart cooked soaked and simmered','LAMB NZ IMP HEART CKD SOAKED & SIMMRD',,,,'Connective tissue 11% Separable fat 17%',28,,6.25,,, -17373,1700,'Lamb New Zealand imported heart raw','LAMB NZ IMP HEART RAW',,,,'Connective tissue 10% Separable fat 14%',24,,6.25,,, -17374,1700,'Lamb New Zealand imported sweetbread cooked soaked and simmered','LAMB NZ IMP SWEETBREAD CKD SOAKED & SIMMRD',,,,'Separable fat 3%',3,,6.25,,, -17375,1700,'Lamb New Zealand imported sweetbread raw','LAMB NZ IMP SWEETBREAD RAW',,,,'Separable fat 3%',3,,6.25,,, -17376,1700,'Lamb New Zealand imported testes cooked soaked and fried','LAMB NZ IMP TESTES CKD SOAKED & FRIED',,,,'Connective tissue 25%',25,,6.25,,, -17377,1700,'Lamb New Zealand imported testes raw','LAMB NZ IMP TESTES RAW',,,,'Connective tissue 17%',17,,6.25,,, -17378,1700,'Lamb New Zealand imported tongue - swiss cut cooked soaked and simmered','LAMB NZ IMP TONGUE - SWISS CUT CKD SOAKED & SIMMRD',,,,'Connective tissue 12% Separable fat 6%',18,,6.25,,, -17379,1700,'Lamb New Zealand imported tongue - swiss cut raw','LAMB NZ IMP TONGUE - SWISS CUT RAW',,,,'Connective tissue 18% Separable fat 8%',26,,6.25,,, -17380,1700,'Lamb New Zealand imported tunnel-boned leg chump off shank off separable lean only cooked slow roasted','LAMB NZ IMP TUNNEL-BNED LG CHMP OFF SHNK OFF LN CKD SLW RSTD',,,,'Separable fat 10%',10,,6.25,,, -17381,1700,'Lamb New Zealand imported tunnel-boned leg chump off shank off separable lean only raw','LAMB NZ IMP TUNNEL-BONED LEG CHUMP OFF SHANK OFF LN RAW',,,,'Separable fat 15%',15,,6.25,,, -17382,1700,'Lamb New Zealand imported square-cut shoulder chops separable lean only cooked braised','LAMB NZ IMP SQUARE-CUT SHLDR CHOPS LN CKD BRSD',,,,'Bone and connective tissue 26% Separable fat 13%',39,,6.25,,, -17383,1700,'Lamb New Zealand imported square-cut shoulder chops separable lean only raw','LAMB NZ IMP SQUARE-CUT SHLDR CHOPS LN RAW',,,,'Bone and connective tissue 23% Separable fat 17%',40,,6.25,,, -17384,1700,'Lamb New Zealand imported tenderloin separable lean only cooked fast fried','LAMB NZ IMP TENDERLOIN LN CKD FAST FRIED',,,,,0,,6.25,,, -17385,1700,'Lamb New Zealand imported tenderloin separable lean only raw','LAMB NZ IMP TENDERLOIN LN RAW',,,,'Separable fat 1%',1,,6.25,,, -17386,1700,'Lamb New Zealand imported loin saddle separable lean only cooked fast roasted','LAMB NZ IMP LOIN SADDLE LN CKD FAST RSTD',,,,'Bone and connective tissue 25% Separable fat 17%',42,,6.25,,, -17387,1700,'Lamb New Zealand imported loin saddle separable lean only raw','LAMB NZ IMP LOIN SADDLE LN RAW',,,,'Bone and connective tissue 24% Separable fat 19%',43,,6.25,,, -17388,1700,'Lamb New Zealand imported loin boneless separable lean only cooked fast roasted','LAMB NZ IMP LOIN BNLESS LN CKD FAST RSTD',,,,,0,,6.25,,, -17389,1700,'Lamb New Zealand imported loin boneless separable lean only raw','LAMB NZ IMP LOIN BNLESS LN RAW',,,,,0,,6.25,,, -17390,1700,'Lamb New Zealand imported hind-shank separable lean only cooked braised','LAMB NZ IMP HIND-SHANK LN CKD BRSD',,,,'Bone and connective tissue 34% Separable fat 7%',41,,6.25,,, -17391,1700,'Lamb New Zealand imported hind-shank separable lean only raw','LAMB NZ IMP HIND-SHANK LN RAW',,,,'Bone and connective tissue 28% Separable fat 9%',37,,6.25,,, -17392,1700,'Lamb New Zealand imported neck chops separable lean only raw','LAMB NZ IMP NECK CHOPS LN RAW',,,,'Bone and connective tissue 32% Separable fat 10%',42,,6.25,,, -17393,1700,'Lamb New Zealand imported neck chops separable lean only cooked braised','LAMB NZ IMP NECK CHOPS LN CKD BRSD',,,,'Bone and connective tissue 34% Separable fat 8%',42,,6.25,,, -17394,1700,'Lamb New Zealand imported netted shoulder rolled boneless separable lean only cooked slow roasted','LAMB NZ IMP NETTED SHLDR ROLLED BNLESS LN CKD SLOW RSTD',,,,'Connective tissue 3% Separable fat 20%',23,,6.25,,, -17395,1700,'Lamb New Zealand imported netted shoulder rolled boneless separable lean only raw','LAMB NZ IMP NETTED SHLDR ROLLED BNLESS LN RAW',,,,'Connective tissue 3% Separable fat 20%',23,,6.25,,, -17396,1700,'Lamb New Zealand imported rack - fully frenched separable lean only cooked fast roasted','LAMB NZ IMP RACK - FULLY FRENCHED LN CKD FAST RSTD',,,,'Bone and connective tissue 25% Separable fat 4%',29,,6.25,,, -17397,1700,'Lamb New Zealand imported rack - fully frenched separable lean only raw','LAMB NZ IMP RACK - FULLY FRENCHED LN RAW',,,,'Bone and connective tissue 27% Separable fat 3%',30,,6.25,,, -17398,1700,'Lamb New Zealand imported loin chop separable lean only cooked fast fried','LAMB NZ IMP LOIN CHOP LN CKD FAST FRIED',,,,'Bone and connective tissue 22% Separable fat 22%',44,,6.25,,, -17399,1700,'Lamb New Zealand imported square-cut shoulder separable lean only cooked slow roasted','LAMB NZ IMP SQUARE-CUT SHLDR LN CKD SLOW RSTD',,,,'Bone and connective tissue 27% Separable fat 18%',45,,6.25,,, -17400,1700,'Lamb New Zealand imported leg chop/steak bone-in separable lean only cooked fast fried','LAMB NZ IMP LEG CHOP/STEAK BONE-IN LN CKD FAST FRIED',,,,'Bone and connective tissue 12% Separable fat 9%',21,,6.25,,, -17401,1700,'Lamb New Zealand imported flap boneless separable lean and fat cooked braised','LAMB NZ IMP FLAP BNLESS LN & FAT CKD BRSD',,,,'Connective tissue 1%',1,,,,, -17402,1700,'Lamb New Zealand imported flap boneless separable lean and fat raw','LAMB NZ IMP FLAP BNLESS LN & FAT RAW',,,,,0,,,,, -17403,1700,'Lamb New Zealand imported hind-shank separable lean and fat cooked braised','LAMB NZ IMP HIND-SHANK LN & FAT CKD BRSD',,,,'Bone and connective tissue 34%',34,,,,, -17404,1700,'Lamb New Zealand imported hind-shank separable lean and fat raw','LAMB NZ IMP HIND-SHANK LN & FAT RAW',,,,'Bone and connective tissue 29%',29,,,,, -17405,1700,'Lamb New Zealand imported leg chop/steak bone-in separable lean and fat cooked fast fried','LAMB NZ IMP LEG CHOP/STEAK BONE-IN LN & FAT CKD FAST FRIED',,,,'Bone and connective tissue 12%',12,,,,, -17406,1700,'Lamb New Zealand imported loin chop separable lean and fat cooked fast fried','LAMB NZ IMP LOIN CHOP LN & FAT CKD FAST FRIED',,,,'Bone and connective tissue 22%',22,,,,, -17407,1700,'Lamb New Zealand imported loin saddle separable lean and fat cooked fast roasted','LAMB NZ IMP LOIN SADDLE LN & FAT CKD FAST RSTD',,,,'Bone and connective tissue 25%',25,,,,, -17408,1700,'Lamb New Zealand imported loin saddle separable lean and fat raw','LAMB NZ IMP LOIN SADDLE LN & FAT RAW',,,,'Bone and connective tissue 24%',24,,,,, -17409,1700,'Lamb New Zealand imported loin boneless separable lean and fat cooked fast roasted','LAMB NZ IMP LOIN BNLESS LN & FAT CKD FAST RSTD',,,,,0,,,,, -17410,1700,'Lamb New Zealand imported loin boneless separable lean and fat raw','LAMB NZ IMP LOIN BNLESS LN & FAT RAW',,,,,0,,,,, -17411,1700,'Lamb New Zealand imported neck chops separable lean and fat cooked braised','LAMB NZ IMP NECK CHOPS LN & FAT CKD BRSD',,,,'Bone and connective tissue 34%',34,,,,, -17412,1700,'Lamb New Zealand imported neck chops separable lean and fat raw','LAMB NZ IMP NECK CHOPS LN & FAT RAW',,,,'Bone and connective tissue 32%',32,,,,, -17413,1700,'Lamb New Zealand imported netted shoulder rolled boneless separable lean and fat cooked slow roasted','LAMB NZ IMP NETTED SHLDR ROLLED BNLESS L & F CKD SLOW RSTD',,,,'Connective tissue 2%',2,,,,, -17414,1700,'Lamb New Zealand imported netted shoulder rolled boneless separable lean and fat raw','LAMB NZ IMP NETTED SHLDR ROLLED BNLESS LN & FAT RAW',,,,'Connective tissue 2%',2,,,,, -17415,1700,'Lamb New Zealand imported square-cut shoulder chops separable lean and fat cooked braised','LAMB NZ IMP SQUARE-CUT SHLDR CHOPS LN & FAT CKD BRSD',,,,'Bone and connective tissue26',26,,,,, -17416,1700,'Lamb New Zealand imported square-cut shoulder chops separable lean and fat raw','LAMB NZ IMP SQUARE-CUT SHLDR CHOPS LN & FAT RAW',,,,'Bone and connective tissue 23%',23,,,,, -17417,1700,'Lamb New Zealand imported square-cut shoulder separable lean and fat cooked slow roasted','LAMB NZ IMP SQUARE-CUT SHLDR LN & FAT CKD SLOW RSTD',,,,'Bone and connective tissue 27%',27,,,,, -17418,1700,'Lamb New Zealand imported tenderloin separable lean and fat cooked fast fried','LAMB NZ IMP TENDERLOIN LN & FAT CKD FAST FRIED',,,,,0,,,,, -17419,1700,'Lamb New Zealand imported rack - fully frenched separable lean and fat cooked fast roasted','LAMB NZ IMP RACK - FULLY FRENCHED LN & FAT CKD FAST RSTD',,,,'Bone and connective tissue 25%',25,,,,, -17420,1700,'Lamb New Zealand imported rack - fully frenched separable lean and fat raw','LAMB NZ IMP RACK - FULLY FRENCHED LN & FAT RAW',,,,'Bone and connective tissue 26%',26,,,,, -17421,1700,'Lamb New Zealand imported tunnel-boned leg chump off shank off separable lean and fat cooked slow roasted','LAMB NZ IMP TUN-BND LG CHMP OFF SHNK OFF L & F CKD SL RSTD',,,,,0,,,,, -17422,1700,'Lamb New Zealand imported tunnel-boned leg chump off shank off separable lean and fat raw','LAMB NZ IMP TUNNEL-BONED LG CHUMP OFF SHANK OFF LN & FAT RAW',,,,,0,,6.25,,, -17423,1700,'Lamb New Zealand imported tenderloin separable lean and fat raw','LAMB NZ IMP TENDERLOIN LN & FAT RAW',,,,,0,,,,, -17424,1700,'Veal ground cooked pan-fried','VEAL GROUND CKD PAN-FRIED','IMPS 396',,,,,,,,, -17425,1700,'Veal leg top round cap off cutlet boneless cooked grilled','VEAL LEG TOP RND CAP OFF CUTLET BNLESS CKD GRILLED','IMPS#1336',,,,0,,,,, -17426,1700,'Veal leg top round cap off cutlet boneless raw','VEAL LEG TOP RND CAP OFF CUTLET BNLESS RAW','IMPS# 1336',,,,0,,,,, -17427,1700,'Veal loin chop separable lean only cooked grilled','VEAL LOIN CHOP LN CKD GRILLED','IMPS #1332',,,'Bone and connective tissue 30% separable fat 8%',38,,,,, -17428,1700,'Veal shank separable lean only raw','VEAL SHANK LN RAW','IMPS #312',,,'Bone and connective tissue 48% separable fat 3%',51,,,,, -17429,1700,'Veal foreshank osso buco separable lean only cooked braised','VEAL FORESHANK OSSO BUCO LN CKD BRSD','IMPS # 1312',,,'Bone and connective tissue 47% separable fat 4%',51,,,,, -17430,1700,'Veal shoulder blade chop separable lean only cooked grilled','VEAL SHLDR BLADE CHOP LN CKD GRILLED','IMPS #1309A',,,'Bone and connective tissue 25% separable fat 8%',33,,,,, -17431,1700,'Veal external fat only raw','VEAL EXTERNAL FAT ONLY RAW',,,,,,,,,, -17432,1700,'Veal external fat only cooked','VEAL EXTERNAL FAT ONLY CKD',,,,,,,,,, -17433,1700,'Veal seam fat only raw','VEAL SEAM FAT ONLY RAW',,,,,,,,,, -17434,1700,'Veal seam fat only cooked','VEAL SEAM FAT ONLY CKD',,,,,,,,,, -17435,1700,'Veal shank separable lean and fat raw','VEAL SHANK LN & FAT RAW','IMPS# 312',,,'Bone and connective tissue 49%',49,,,,, -17436,1700,'Veal foreshank osso buco separable lean and fat cooked braised','VEAL FORESHANK OSSO BUCO LN & FAT CKD BRSD','IMPS# 1312',,,'Bone and connective tissue 47%',47,,,,, -17437,1700,'Veal loin chop separable lean and fat cooked grilled','VEAL LOIN CHOP LN & FAT CKD GRILLED','IMPS # 1332',,,'Bone and connective tissue 30%',30,,,,, -17438,1700,'Veal shoulder blade chop separable lean and fat cooked grilled','VEAL SHLDR BLADE CHOP LN & FAT CKD GRILLED','IMPS# 1309A',,,'Bone and connective tissue 25%',25,,,,, -17439,1700,'Lamb Australian imported fresh leg bottom boneless separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG BTTM BNLESS LN 1/8in FAT CKD RSTD','URMIS # 2973',,,'Connective tissue 7% Separable fat 7%',14,,,,, -17440,1700,'Lamb Australian imported fresh leg hindshank heel on bone-in separable lean only trimmed to 1/8in fat cooked braised','LAMB AUS FRSH LEG HINDSHANK HEEL ON BONE-IN LN 1/8in BRSD','URMIS # 2969',,,'Separable fat 4% Bone and connective tissue 50%',54,,,,, -17441,1700,'Lamb Australian imported fresh leg hindshank heel on bone-in separable lean only trimmed to 1/8in fat raw','LAMB AUS FRSH LEG HINDSHANK HEEL ON BONE-IN LN 1/8in FAT RAW','URMIS # 2969',,,'Bone and connective tissue 40% Separable fat 12%',52,,,,, -17442,1700,'Lamb Australian imported fresh tenderloin boneless separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH TENDERLOIN BNLESS LN 1/8in FAT CKD RSTD','URMIS #2961',,,'Separable fat 1%',1,,,,, -17443,1700,'Lamb Australian imported fresh tenderloin boneless separable lean only trimmed to 1/8in fat raw','LAMB AUSTRALIAN IMP FRSH TENDERLOIN BNLESS LN 1/8in FAT RAW','URMIS #2961',,,'Connective tissue 1% Separable fat 2%',3,,,,, -17444,1700,'Lamb Australian imported fresh leg bottom boneless separable lean only trimmed to 1/8in fat raw','LAMB AUSTRALIAN IMP FRSH LEG BTTM BNLESS LN 1/8in FAT RAW','URMIS # 2973',,,'Connective tissue 5% Separable fat 14%',19,,,,, -17445,1700,'Lamb Australian imported fresh leg trotter off bone-in separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS FRSH LEG TROTTER OFF BONE-IN LN 1/8in FAT CKD RSTD','URMIS # 2994',,,'Bone and connective tissue 29% Separable fat 6%',35,,,,, -17446,1700,'Lamb Australian imported fresh leg trotter off bone-in separable lean only trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG TROTTER OFF BONE-IN LN 1/8in FAT RAW','URMIS # 2994',,,'Bone and connective tissue 21% Separable fat 10%',31,,,,, -17447,1700,'Lamb Australian imported fresh rack roast frenched denuded bone-in separable lean only trimmed to 0in fat cooked roasted','LAMB AUS FRSH RACK RST FRNCHED DNUDED BONE-IN LN 0in CKD RSTD',,,,'Bone and connective tissue 28% Separable fat 11%',39,,,,, -17448,1700,'Lamb Australian imported fresh rack roast frenched bone-in separable lean only trimmed to 1/8in fat cooked roasted','LAMB AUS FRSH RACK RST FRENCHED BONE-IN LN 1/8in FAT CKD RSTD','URMIS #2945',,,'Bone and connective tissue 37% Separable fat 10%',47,,,,, -17449,1700,'Lamb Australian imported fresh external fat cooked','LAMB AUSTRALIAN IMP FRSH EXTERNAL FAT CKD',,,,,0,,6.25,,, -17450,1700,'Lamb Australian imported fresh external fat raw','LAMB AUSTRALIAN IMP FRSH EXTERNAL FAT RAW',,,,,0,,6.25,,, -17451,1700,'Lamb Australian imported fresh seam fat cooked','LAMB AUSTRALIAN IMP FRSH SEAM FAT CKD',,,,,0,,6.25,,, -17452,1700,'Lamb Australian imported fresh seam fat raw','LAMB AUSTRALIAN IMP FRSH SEAM FAT RAW',,,,,0,,6.25,,, -17453,1700,'Lamb Australian imported fresh leg bottom boneless separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH LEG BTTM BNLESS LN & FAT 1/8in FAT CKD RSTD','URMIS #2973',,,'Connective tissue 7%',7,,,,, -17454,1700,'Lamb Australian imported fresh leg bottom boneless separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH LEG BTTM BNLESS LN & FAT 1/8in FAT RAW','URMIS #2973',,,'Connective tissue 5%',5,,,,, -17455,1700,'Lamb Australian imported fresh leg hindshank heel on bone-in separable lean and fat trimmed to 1/8in fat cooked braised','LAMB AUS FRSH LEG HINDSHANK HEEL ON BNE-IN LN & FT 1/8in BRSD','URMIS #2969',,,'Bone and connective tissue 50%',50,,,,, -17456,1700,'Lamb Australian imported fresh leg hindshank heel on bone-in separable lean and fat trimmed to 1/8in fat raw','LAMB AUS FRSH LEG HINDSHANK HEEL ON BNE-IN LN & FAT 1/8in RAW','URMIS #2969',,,'Bone and connective tissue 40%',40,,,,, -17457,1700,'Lamb Australian imported fresh leg trotter off bone-in separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS FRSH LEG TROTTER OFF BONE-IN LN & FAT 1/8in FAT RSTD','URMIS #2994',,,'Bone and connective tissue 29%',29,,,,, -17458,1700,'Lamb Australian imported fresh leg trotter off bone-in separable lean and fat trimmed to 1/8in fat raw','LAMB AUS FRSH LEG TROTTER OFF BONE-IN LN & FAT 1/8in FAT RAW','URMIS #2994',,,'Bone and connective tissue 21%',21,,,,, -17459,1700,'Lamb Australian imported fresh tenderloin boneless separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS IMP FRSH TENDERLOIN BNLESS LN & FAT 1/8in FAT RSTD','URMIS #2961',,,,0,,,,, -17460,1700,'Lamb Australian imported fresh tenderloin boneless separable lean and fat trimmed to 1/8in fat raw','LAMB AUS IMP FRSH TENDERLOIN BNLESS LN & FAT 1/8in FAT RAW','URMIS #2961',,,'Connective tissue 1%',1,,,,, -17461,1700,'Lamb Australian imported fresh rib chop frenched denuded bone-in separable lean only trimmed to 0in fat cooked grilled','LAMB AUS FRSH RIB CHOP FRNCHED DNUDED BONE-IN LN 0in GRILLED',,,,'Bone and connective tissue 36% Separable fat 8%',44,,,,, -17462,1700,'Lamb Australian imported fresh rack roast frenched denuded bone-in separable lean and fat trimmed to 0in fat cooked roasted','LAMB AUS FRSH RACK RST FRNCHED DNUDED BNE-IN LN & FT 0in RSTD',,,,'Bone and connective tissue 28%',28,,,,, -17463,1700,'Lamb Australian imported fresh rack roast frenched bone-in separable lean and fat trimmed to 1/8in fat cooked roasted','LAMB AUS FRSH RACK RST FRENCHED BNE-IN LN & FT 1/8in RSTD','URMIS #2945',,,'Bone and connective tissue 37%',37,,,,, -17464,1700,'Lamb Australian imported fresh rib chop frenched denuded bone-in separable lean and fat trimmed to 0in fat cooked grilled','LAMB AUS IMP FRSH RIB CHOP FRENCHED DNUDED BN-IN L&F 0in GRLD',,,,'Bone and connective tissue 36%',36,,,,, -18001,1800,'Bagels plain enriched with calcium propionate (includes onion poppy sesame)','BAGEL PLN TSTD ENR W/CA PROP(INCLUDE ONION POPPY SESAME)',,,'Y',,0,,6.25,,, -18002,1800,'Bagels plain enriched with calcium propionate (includes onion poppy sesame) toasted','BAGELS PLN ENR W/ CA PROP (INCLUDES ONION POPPY SESAME) TSTD',,,'Y',,0,,,,, -18003,1800,'Bagels egg','BAGELS EGG',,,,,0,,5.70,4.00,8.60,4.10 -18005,1800,'Bagels cinnamon-raisin','BAGELS CINNAMON-RAISIN',,,'Y',,0,,5.80,3.90,8.40,4.00 -18006,1800,'Bagels cinnamon-raisin toasted','BAGELS CINNAMON-RAISIN TSTD',,,'Y',,0,,0.00,,, -18007,1800,'Bagels oat bran','BAGELS OAT BRAN',,,'Y',,0,,5.80,3.50,8.40,3.90 -18009,1800,'Biscuits plain or buttermilk frozen baked','BISCUITS PLN OR BTTRMLK FRZ BKD',,,'Y',,0,,5.80,4.10,8.80,4.00 -18010,1800,'Biscuits plain or buttermilk dry mix','BISCUITS PLN OR BTTRMLK DRY MIX',,,'Y',,0,,5.80,4.10,8.80,4.10 -18011,1800,'Biscuits plain or buttermilk dry mix prepared','BISCUITS PLN OR BTTRMLK DRY MIX PREP',,,,,0,,,,, -18012,1800,'Biscuits plain or buttermilk refrigerated dough lower fat','BISCUITS PLN OR BTTRMLK REFR DOUGH LOWER FAT',,,'Y',,0,,5.70,4.00,8.80,4.00 -18013,1800,'Biscuits plain or buttermilk refrigerated dough lower fat baked','BISCUITS PLN OR BTTRMLK REFR DOUGH LOWER FAT BKD',,,'Y',,0,,0.00,,, -18014,1800,'Biscuits plain or buttermilk refrigerated dough higher fat','BISCUIT PLN OR BUTMLK REFRI DOUGH HIGHER FAT',,,,,0,,,,, -18015,1800,'Biscuits plain or buttermilk refrigerated dough higher fat baked','BISCUITS PLN OR BTTRMLK REFR DOUGH HIGHER FAT BKD',,,'Y',,0,,,,, -18016,1800,'Biscuits plain or buttermilk prepared from recipe','BISCUITS PLN OR BTTRMLK PREP FROM RECIPE',,,,,0,,0.00,,, -18017,1800,'Biscuits mixed grain refrigerated dough','BISCUITS MXD GRAIN REFR DOUGH',,,,,0,,5.70,3.90,8.80,4.00 -18019,1800,'Bread banana prepared from recipe made with margarine','BREAD BANANA PREP FROM RECIPE MADE W/MARGARINE',,,,,0,,0.00,,, -18021,1800,'Bread boston brown canned','BREAD BOSTON BROWN CANNED',,,'Y',,0,,5.90,3.50,8.40,3.80 -18022,1800,'Bread cornbread dry mix enriched (includes corn muffin mix)','BREAD CORNBREAD DRY MIX ENR (INCL CORN MUFFIN MIX)',,,'Y',,0,,6.00,3.80,8.80,4.10 -18023,1800,'Bread cornbread dry mix prepared with 2% milk 80% margarine and eggs','BREAD CORNBREAD DRY MIX PREP W/ 2% MILK 80% MARGARINE & EGGS',,,'Y',,0,,6.25,,, -18024,1800,'Bread cornbread prepared from recipe made with low fat (2%) milk','BREAD CORNBREAD PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18025,1800,'Bread cracked-wheat','BREAD CRACKED-WHEAT',,,,,0,,5.80,3.80,8.80,3.90 -18027,1800,'Bread egg','BREAD EGG',,,'Y',,0,,0.00,,, -18028,1800,'Bread egg toasted','BREAD EGG TOASTED',,,'Y',,0,,0.00,,, -18029,1800,'Bread french or vienna (includes sourdough)','Bread french',,,'Y',,0,,,,, -18030,1800,'Bread french or vienna toasted (includes sourdough)','BREAD FRENCH OR VIENNA TSTD (IND SOURDOUGH)',,,'Y',,0,,,,, -18032,1800,'Bread irish soda prepared from recipe','BREAD IRISH SODA PREP FROM RECIPE',,,,,0,,,,, -18033,1800,'Bread Italian','BREAD ITALIAN',,,'Y',,0,,5.70,4.00,8.70,4.10 -18036,1800,'Bread multi-grain toasted (includes whole-grain)','BREAD MULTI-GRAIN TSTD (INCLUDES WHOLE-GRAIN)',,,'Y',,0,,,,, -18037,1800,'Bread oat bran','BREAD OAT BRAN',,,'Y',,0,,5.80,3.70,8.70,4.00 -18038,1800,'Bread oat bran toasted','BREAD OAT BRAN TOASTED',,,'Y',,0,,0.00,,, -18039,1800,'Bread oatmeal','BREAD OATMEAL',,,'Y',,0,,5.80,3.80,8.60,4.10 -18040,1800,'Bread oatmeal toasted','BREAD OATMEAL TOASTED',,,'Y',,0,,0.00,,, -18041,1800,'Bread pita white enriched','BREAD PITA WHITE ENRICHED',,,'Y',,0,,5.70,4.00,8.40,4.10 -18042,1800,'Bread pita whole-wheat','BREAD PITA WHOLE-WHEAT',,,'Y',,0,,5.80,3.60,8.40,3.80 -18043,1800,'Bread protein (includes gluten)','BREAD PROT (INCL GLUTEN)',,,'Y',,0,,5.70,3.90,8.40,4.10 -18044,1800,'Bread pumpernickel','BREAD PUMPERNICKEL',,,'Y',,0,,5.80,3.70,8.70,4.00 -18047,1800,'Bread raisin enriched','BREAD RAISIN ENRICHED',,,'Y',,0,,5.80,3.90,8.80,3.90 -18048,1800,'Bread raisin enriched toasted','BREAD RAISIN ENR TSTD',,,'Y',,0,,0.00,,, -18049,1800,'Bread reduced-calorie oat bran','BREAD RED-CAL OAT BRAN',,,'Y',,0,,5.80,3.60,8.60,3.50 -18050,1800,'Bread reduced-calorie oat bran toasted','BREAD RED-CAL OAT BRAN TSTD',,,'Y',,0,,0.00,,, -18051,1800,'Bread reduced-calorie oatmeal','BREAD RED-CAL OATMEAL',,,,,0,,5.80,3.90,8.40,3.50 -18053,1800,'Bread reduced-calorie rye','BREAD REDUCED-CALORIE RYE',,,'Y',,0,,5.80,4.00,8.60,3.50 -18055,1800,'Bread reduced-calorie wheat','BREAD RED-CAL WHEAT',,,'Y',,0,,5.80,3.90,8.40,3.30 -18057,1800,'Bread reduced-calorie white','BREAD RED-CAL WHITE',,,'Y',,0,,5.90,4.00,8.70,3.40 -18059,1800,'Bread rice bran','BREAD RICE BRAN',,,'Y',,0,,5.80,3.70,8.70,3.90 -18060,1800,'Bread rye','BREAD RYE',,,'Y',,0,,5.80,3.70,8.60,4.10 -18061,1800,'Bread rye toasted','BREAD RYE TOASTED',,,'Y',,0,,0.00,,, -18064,1800,'Bread wheat','BREAD WHEAT',,,'Y',,0,,,,, -18065,1800,'Bread wheat toasted','BREAD WHEAT TSTD',,,'Y',,0,,,,, -18069,1800,'Bread white commercially prepared (includes soft bread crumbs)','BREAD WHITE COMMLY PREP (INCL SOFT BREAD CRUMBS)',,,'Y',,0,,6.25,3.90,8.70,4.10 -18070,1800,'Bread white commercially prepared toasted','BREAD WHITE COMMLY PREP TSTD',,,'Y',,0,,0.00,,, -18071,1800,'Bread white prepared from recipe made with nonfat dry milk','BREAD WHITE PREP FROM RECIPE MADE W/NONFAT DRY MILK',,,,,0,,0.00,,, -18073,1800,'Bread white prepared from recipe made with low fat (2%) milk','BREAD WHITE PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18075,1800,'Bread whole-wheat commercially prepared','BREAD WHOLE-WHEAT COMM. PREPARED',,,'Y',,0,,6.25,,, -18076,1800,'Bread whole-wheat commercially prepared toasted','BREAD WHOLE-WHEAT COMMER PREP TOASTED',,,'Y',,0,,,,, -18077,1800,'Bread whole-wheat prepared from recipe','BREAD WHOLE-WHEAT PREP FROM RECIPE',,,'Y',,0,,0.00,,, -18078,1800,'Bread whole-wheat prepared from recipe toasted','BREAD WHOLE-WHEAT PREP FROM RECIPE TSTD',,,'Y',,0,,0.00,,, -18079,1800,'Bread crumbs dry grated plain','BREAD CRUMBS DRY GRATED PLN',,,'Y',,0,,5.70,4.00,8.80,4.10 -18080,1800,'Bread sticks plain','BREAD STKS PLN',,,'Y',,0,,5.70,4.00,8.80,4.10 -18081,1800,'Bread stuffing dry mix','BREAD STUFFING DRY MIX',,,'Y',,0,,5.70,4.00,8.80,4.10 -18082,1800,'Bread stuffing dry mix prepared','BREAD STUFFING DRY MIX PREP',,,'Y',,0,,0.00,,, -18084,1800,'Bread stuffing cornbread dry mix','BREAD STUFFING CORNBREAD DRY MIX',,,,,0,,5.90,3.80,8.70,4.10 -18085,1800,'Bread stuffing cornbread dry mix prepared','BREAD STUFFING CORNBREAD DRY MIX PREP',,,'Y',,0,,0.00,,, -18086,1800,'Cake angelfood commercially prepared','CAKE ANGELFOOD COMMLY PREP',,,,,0,,6.10,4.30,8.40,3.90 -18088,1800,'Cake angelfood dry mix prepared','CAKE ANGELFOOD DRY MIX PREP',,,'Y',,0,,0.00,,, -18090,1800,'Cake boston cream pie commercially prepared','CAKE BOSTON CRM PIE COMMLY PREP',,,'Y',,0,,6.00,4.00,8.80,3.90 -18092,1800,'Cake pudding-type carrot dry mix','CAKE PUDDING-TYPE CARROT DRY MIX',,,,,0,,5.80,3.90,8.80,3.90 -18095,1800,'Cake cherry fudge with chocolate frosting','CAKE CHERRY FUDGE W/CHOC FRSTNG',,,'Y',,0,,6.10,3.90,8.80,3.80 -18096,1800,'Cake chocolate commercially prepared with chocolate frosting in-store bakery','CAKE CHOC COMMLY PREP W/ CHOC FRSTNG IN-STORE BAKERY',,,'Y',,0,,5.90,3.50,8.80,3.80 -18097,1800,'Cake pudding-type chocolate dry mix','CAKE PUDDING-TYPE CHOC DRY MIX',,,'Y',,0,,5.80,3.30,8.70,3.80 -18101,1800,'Cake chocolate prepared from recipe without frosting','CAKE CHOC PREP FROM RECIPE WO/FRSTNG',,,,,0,,0.00,,, -18102,1800,'Cake white prepared from recipe with coconut frosting','CAKE WHITE PREP FROM RECIPE W/COCNT FRSTNG',,,'Y',,0,,0.00,,, -18103,1800,'Cake coffeecake cheese','CAKE COFFEECAKE CHS',,,,,0,,6.00,4.00,8.80,4.00 -18104,1800,'Cake coffeecake cinnamon with crumb topping commercially prepared enriched','CAKE COFFEECAKE CINN W/ CRUMB TOPPING COMMLY PREP ENR',,,,,0,,5.80,3.90,8.80,4.00 -18105,1800,'Cake coffeecake creme-filled with chocolate frosting','CAKE COFFEECAKE CREME-FILLED W/ CHOC FRSTNG',,,,,0,,5.80,3.90,8.80,4.00 -18106,1800,'Cake coffeecake fruit','CAKE COFFEECAKE FRUIT',,,,,0,,5.80,3.90,8.80,3.90 -18108,1800,'Cake coffeecake cinnamon with crumb topping dry mix prepared','CAKE COFFEECAKE CINN W/ CRUMB TOPPING DRY MIX PREP',,,'Y',,0,,0.00,,, -18110,1800,'Cake fruitcake commercially prepared','CAKE FRUITCAKE COMMLY PREP',,,'Y',,0,,5.60,3.80,8.60,3.80 -18114,1800,'Cake gingerbread dry mix','CAKE GINGERBREAD DRY MIX',,,'Y',,0,,5.70,3.90,8.80,4.00 -18116,1800,'Cake gingerbread prepared from recipe','CAKE GINGERBREAD PREP FROM RECIPE',,,,,0,,0.00,,, -18119,1800,'Cake pineapple upside-down prepared from recipe','CAKE PNAPPL UPSIDE-DOWN PREP FROM RECIPE',,,,,0,,0.00,,, -18120,1800,'Cake pound commercially prepared butter (includes fresh and frozen)','CAKE POUND COMMLY PREP BUTTER (INCLUDES FRSH & FROZEN)',,,'Y',,0,,6.00,4.20,8.80,3.90 -18121,1800,'Cake pound commercially prepared other than all butter enriched','CAKE POUND COMMLY PREP OTHER THAN ALL BUTTER ENR',,,,,0,,6.00,4.20,8.80,4.00 -18126,1800,'Cake shortcake biscuit-type prepared from recipe','CAKE SHORTCAKE BISCUIT-TYPE PREP FROM RECIPE',,,,,0,,,,, -18127,1800,'Cake snack cakes creme-filled chocolate with frosting','CAKE SNACK CAKES CREME-FILLED CHOC W/ FRSTNG',,,'Y',,0,,,,, -18128,1800,'Cake snack cakes creme-filled sponge','CAKE SNACK CAKES CREME-FILLED SPONGE',,,'Y',,0,,,,, -18131,1800,'Cake white dry mix special dietary (includes lemon-flavored)','CAKE WHITE DRY MIX SPL DIETARY (INCL LEMON-FLAVORED)',,,,,0,,5.70,4.00,8.80,3.90 -18133,1800,'Cake sponge commercially prepared','CAKE SPONGE COMMLY PREP',,,'Y',,0,,0.00,,, -18134,1800,'Cake sponge prepared from recipe','CAKE SPONGE PREP FROM RECIPE',,,,,0,,0.00,,, -18135,1800,'Cake pudding-type white enriched dry mix','CAKE PUDDING-TYPE WHITE ENR DRY MIX',,,'Y',,0,,5.80,4.10,8.80,4.00 -18139,1800,'Cake white prepared from recipe without frosting','CAKE WHITE PREP FROM RECIPE WO/FRSTNG',,,,,0,,0.00,,, -18140,1800,'Cake yellow commercially prepared with chocolate frosting in-store bakery','CAKE YEL COMMLY PREP W/ CHOC FRSTNG IN-STORE BAKERY',,,'Y',,0,,6.00,3.80,8.80,3.80 -18141,1800,'Cake yellow commercially prepared with vanilla frosting','CAKE YEL COMMLY PREP W/VANILLA FRSTNG',,,'Y',,0,,6.10,4.20,8.90,3.90 -18142,1800,'Cake pudding-type yellow dry mix','CAKE PUDDING-TYPE YEL DRY MIX',,,'Y',,0,,5.80,4.10,8.80,4.00 -18144,1800,'Cake yellow enriched dry mix','CAKE YEL ENR DRY MIX',,,'Y',,0,,5.90,4.10,8.80,4.00 -18146,1800,'Cake yellow prepared from recipe without frosting','CAKE YEL PREP FROM RECIPE WO/FRSTNG',,,,,0,,0.00,,, -18147,1800,'Cake cheesecake commercially prepared','CAKE CHEESECAKE COMMLY PREP',,,'Y',,0,,6.20,4.20,8.80,3.90 -18148,1800,'Cake cheesecake prepared from mix no-bake type','CAKE CHEESECAKE PREP FROM MIX NO-BAKE TYPE',,,,,0,,6.20,4.20,8.80,3.90 -18151,1800,'Cookies brownies commercially prepared','COOKIES BROWNIES COMMLY PREP',,,'Y',,0,,5.90,3.90,8.80,3.80 -18152,1800,'Cookies brownies dry mix regular','COOKIES BROWNIES DRY MIX REG',,,,,0,,5.60,3.00,8.70,3.80 -18154,1800,'Cookies brownies prepared from recipe','COOKIES BROWNIES PREP FROM RECIPE',,,,,0,,0.00,,, -18155,1800,'Cookies butter commercially prepared enriched','COOKIES BUTTER COMMLY PREP ENR',,,'Y',,0,,5.90,4.20,8.80,4.00 -18156,1800,'Cookies fudge cake-type (includes trolley cakes)','COOKIES FUDGE CAKE-TYPE (INCL TROLLEY CAKES)',,,,,0,,5.70,3.60,8.70,3.80 -18157,1800,'Cookies chocolate wafers','COOKIES CHOCOLATE WAFERS',,,'Y',,0,,5.70,3.50,8.90,3.90 -18158,1800,'Cookies chocolate chip commercially prepared regular lower fat','COOKIES CHOC CHIP COMMLY PREP REG LOWER FAT',,,'Y',,0,,5.80,4.00,8.80,4.00 -18159,1800,'Cookies chocolate chip commercially prepared regular higher fat enriched','COOKIES CHOC CHIP COMMLY PREP REG HIGHER FAT ENR',,,'Y',,0,,5.80,3.90,8.80,3.90 -18160,1800,'Cookies chocolate chip commercially prepared soft-type','COOKIES CHOC CHIP COMMLY PREP SOFT-TYPE',,,,,0,,5.80,3.80,8.80,3.90 -18161,1800,'Cookies chocolate chip dry mix','COOKIES CHOC CHIP DRY MIX',,,,,0,,5.80,4.00,8.80,3.90 -18163,1800,'Cookies chocolate chip refrigerated dough','COOKIES CHOC CHIP REFR DOUGH',,,,,0,,5.90,4.10,8.80,4.00 -18164,1800,'Cookies chocolate chip refrigerated dough baked','COOKIES CHOC CHIP REFR DOUGH BKD',,,,,0,,,,, -18165,1800,'Cookies chocolate chip prepared from recipe made with margarine','COOKIES CHOC CHIP PREP FROM RECIPE MADE W/MARGARINE',,,,,0,,0.00,,, -18166,1800,'Cookies chocolate sandwich with creme filling regular','COOKIES CHOC SNDWCH W/CREME FILLING REG',,,'Y',,0,,5.70,3.50,8.80,3.90 -18167,1800,'Cookies chocolate sandwich with creme filling regular chocolate-coated','COOKIES CHOC SNDWCH W/CREME FILLING REG CHOCOLATE-COATED',,,'Y',,0,,5.70,2.70,8.80,3.60 -18168,1800,'Cookies chocolate sandwich with extra creme filling','COOKIES CHOC SNDWCH W/EX CREME FILLING',,,'Y',,0,,5.70,3.60,8.80,3.90 -18170,1800,'Cookies fig bars','COOKIES FIG BARS',,,'Y',,0,,5.90,3.80,8.80,3.80 -18171,1800,'Cookies fortune','COOKIES FORTUNE',,,'Y',,0,,5.70,4.10,8.80,4.00 -18172,1800,'Cookies gingersnaps','COOKIES GINGERSNAPS',,,'Y',,0,,5.70,4.00,8.80,4.00 -18173,1800,'Cookies graham crackers plain or honey (includes cinnamon)','COOKIES GRAHAM CRACKERS PLN OR HONEY (INCL CINN)',,,'Y',,0,,5.70,3.90,8.80,4.00 -18174,1800,'Cookies graham crackers chocolate-coated','COOKIES GRAHAM CRACKERS CHOCOLATE-COATED',,,'Y',,0,,5.90,3.80,8.70,3.90 -18175,1800,'Cookies ladyfingers with lemon juice and rind','COOKIES LADYFINGERS W/LEMON JUC&RIND',,,'Y',,0,,0.00,,, -18176,1800,'Cookies marshmallow chocolate-coated (includes marshmallow pies)','COOKIES MARSHMLLW CHOCOLATE-COATED (INCL MARSHMLLW PIES)',,,'Y',,0,,5.70,3.60,8.80,3.80 -18177,1800,'Cookies molasses','COOKIES MOLASSES',,,'Y',,0,,5.70,4.00,8.80,4.00 -18178,1800,'Cookies oatmeal commercially prepared regular','COOKIES OATMEAL COMMLY PREP REG',,,'Y',,0,,5.80,3.70,8.80,3.90 -18179,1800,'Cookies oatmeal commercially prepared soft-type','COOKIES OATMEAL COMMLY PREP SOFT-TYPE',,,,,0,,5.90,3.80,8.80,3.90 -18180,1800,'Cookies oatmeal dry mix','COOKIES OATMEAL DRY MIX',,,,,0,,5.80,3.70,8.80,4.00 -18182,1800,'Cookies oatmeal refrigerated dough','COOKIES OATMEAL REFR DOUGH',,,,,0,,5.90,3.80,8.80,4.00 -18183,1800,'Cookies oatmeal refrigerated dough baked','COOKIES OATMEAL REFR DOUGH BKD',,,,,0,,,,, -18184,1800,'Cookies oatmeal with raisins','COOKIES OATMEAL W/ RAISINS',,,,,0,,0.00,,, -18185,1800,'Cookies peanut butter commercially prepared regular','COOKIES PNUT BUTTER COMMLY PREP REG',,,'Y',,0,,5.60,3.70,8.70,4.00 -18186,1800,'Cookies peanut butter commercially prepared soft-type','COOKIES PNUT BUTTER COMMLY PREP SOFT-TYPE',,,,,0,,5.50,3.70,8.70,3.90 -18187,1800,'Cookies peanut butter refrigerated dough','COOKIES PNUT BUTTER REFR DOUGH',,,,,0,,5.70,3.80,8.70,4.00 -18188,1800,'Cookies peanut butter refrigerated dough baked','COOKIES PNUT BUTTER REFR DOUGH BKD',,,,,0,,,,, -18189,1800,'Cookies peanut butter prepared from recipe','COOKIES PNUT BUTTER PREP FROM RECIPE',,,,,0,,0.00,,, -18190,1800,'Cookies peanut butter sandwich regular','COOKIES PNUT BUTTER SNDWCH REG',,,'Y',,0,,5.60,3.80,8.60,4.00 -18191,1800,'Cookies raisin soft-type','COOKIES RAISIN SOFT-TYPE',,,'Y',,0,,5.90,4.00,8.80,3.90 -18192,1800,'Cookies shortbread commercially prepared plain','COOKIES SHORTBREAD COMMLY PREP PLN',,,'Y',,0,,5.80,4.10,8.80,4.10 -18193,1800,'Cookies shortbread commercially prepared pecan','COOKIES SHORTBREAD COMMLY PREP PECAN',,,,,0,,5.60,4.00,8.70,4.10 -18196,1800,'Cookies brownies dry mix sugar free','COOKIES BROWNIES DRY MIX SUGAR FREE',,,,,0,,5.70,3.60,8.80,3.80 -18198,1800,'Cookies chocolate chip commercially prepared special dietary','COOKIES CHOC CHIP COMMLY PREP SPL DIETARY',,,'Y',,0,,5.80,4.00,8.80,3.90 -18199,1800,'Cookies chocolate sandwich with creme filling special dietary','COOKIES CHOC SNDWCH W/CREME FILLING SPL DIETARY',,,'Y',,0,,5.70,3.30,8.80,3.70 -18200,1800,'Cookies oatmeal commercially prepared special dietary','COOKIES OATMEAL COMMLY PREP SPL DIETARY',,,'Y',,0,,5.80,3.70,8.80,3.90 -18201,1800,'Cookies peanut butter sandwich special dietary','COOKIES PNUT BUTTER SNDWCH SPL DIETARY',,,,,0,,5.50,3.60,8.70,4.00 -18202,1800,'Cookies sugar wafer with creme filling sugar free','COOKIES SUGAR WAFER W/ CREME FILLING SUGAR FREE',,,'Y',,0,,5.70,4.00,8.80,4.00 -18204,1800,'Cookies sugar commercially prepared regular (includes vanilla)','COOKIES SUGAR COMMLY PREP REG (INCL VANILLA)',,,'Y',,0,,5.90,4.20,8.80,4.00 -18205,1800,'Cookies sugar refrigerated dough','COOKIES SUGAR REFR DOUGH',,,,,0,,5.80,4.10,8.80,4.00 -18206,1800,'Cookies sugar refrigerated dough baked','COOKIES SUGAR REFR DOUGH BKD',,,'Y',,0,,0.00,,, -18209,1800,'Cookies sugar wafers with creme filling regular','COOKIES SUGAR WAFERS W/CREME FILLING REG',,,'Y',,0,,5.70,4.00,8.80,4.00 -18210,1800,'Cookies vanilla sandwich with creme filling','COOKIES VANILLA SNDWCH W/CREME FILLING',,,'Y',,0,,5.70,4.00,8.80,4.00 -18211,1800,'Puff pastry frozen ready-to-bake baked','PUFF PASTRY FRZ RTB BKD',,,'Y',,0,,0.00,,, -18212,1800,'Cookies vanilla wafers lower fat','COOKIES VANILLA WAFERS LOWER FAT',,,'Y',,0,,5.90,4.10,8.80,3.90 -18213,1800,'Cookies vanilla wafers higher fat','COOKIES VANILLA WAFERS HIGHER FAT',,,'Y',,0,,5.70,4.10,8.80,4.00 -18214,1800,'Crackers cheese regular','CRACKERS CHEESE REGULAR',,,'Y',,0,,5.90,4.10,8.80,4.10 -18215,1800,'Crackers cheese sandwich-type with peanut butter filling','CRACKERS CHS SANDWICH-TYPE W/PNUT BUTTER FILLING',,,'Y',,0,,5.60,3.80,8.60,4.10 -18216,1800,'Crackers crispbread rye','CRACKERS CRISPBREAD RYE',,,'Y',,0,,5.90,3.20,8.40,4.00 -18217,1800,'Crackers matzo plain','CRACKERS MATZO PLAIN',,,'Y',,0,,5.70,4.00,8.40,4.10 -18218,1800,'Crackers matzo egg','CRACKERS MATZO EGG',,,,,0,,5.80,4.10,8.80,4.10 -18219,1800,'Crackers matzo whole-wheat','CRACKERS MATZO WHOLE-WHEAT',,,,,0,,5.80,3.50,8.40,3.70 -18220,1800,'Crackers melba toast plain','CRACKERS MELBA TOAST PLN',,,'Y',,0,,5.70,4.00,8.60,4.10 -18221,1800,'Crackers melba toast rye (includes pumpernickel)','CRACKERS MELBA TOAST RYE (INCL PUMPERNICKEL)',,,,,0,,5.80,3.70,8.60,4.10 -18222,1800,'Crackers melba toast wheat','CRACKERS MELBA TOAST WHEAT',,,,,0,,5.80,3.80,8.60,4.00 -18223,1800,'Crackers milk','CRACKERS MILK',,,'Y',,0,,5.70,4.00,8.80,4.10 -18224,1800,'Crackers rusk toast','CRACKERS RUSK TOAST',,,,,0,,6.00,3.90,8.90,4.00 -18225,1800,'Crackers rye sandwich-type with cheese filling','CRACKERS RYE SANDWICH-TYPE W/CHS FILLING',,,,,0,,5.80,3.90,8.80,4.10 -18226,1800,'Crackers rye wafers plain','CRACKERS RYE WAFERS PLAIN',,,'Y',,0,,5.90,3.00,8.40,3.70 -18227,1800,'Crackers rye wafers seasoned','CRACKERS RYE WAFERS SEASONED',,,,,0,,5.90,3.00,8.80,3.70 -18228,1800,'Crackers saltines (includes oyster soda soup)','CRACKERS SALTINES (INCL OYSTER SODA SOUP)',,,'Y',,0,,5.70,4.00,8.80,4.10 -18229,1800,'Crackers standard snack-type regular','CRACKERS STD SNACK-TYPE REG',,,'Y',,0,,,,, -18230,1800,'Crackers standard snack-type sandwich with cheese filling','CRACKERS STD SNACK-TYPE SNDWCH W/CHS FILLING',,,'Y',,0,,5.80,4.10,8.80,4.10 -18231,1800,'Crackers standard snack-type sandwich with peanut butter filling','CRACKERS STD SNACK-TYPE SNDWCH W/PNUT BUTTER FILLING',,,'Y',,0,,5.60,3.80,8.60,4.10 -18232,1800,'Crackers wheat regular','CRACKERS WHEAT REGULAR',,,'Y',,0,,5.80,3.80,8.80,4.00 -18233,1800,'Crackers wheat sandwich with cheese filling','CRACKERS WHEAT SNDWCH W/CHS FILLING',,,,,0,,5.80,4.00,8.80,4.10 -18234,1800,'Crackers wheat sandwich with peanut butter filling','CRACKERS WHEAT SNDWCH W/PNUT BUTTER FILLING',,,,,0,,5.60,3.70,8.60,4.00 -18235,1800,'Crackers whole-wheat','CRACKERS WHOLE-WHEAT',,,'Y',,0,,5.80,3.60,8.80,3.80 -18236,1800,'Cracker meal','CRACKER MEAL',,,'Y',,0,,5.70,4.00,8.40,4.10 -18237,1800,'Cream puff shell prepared from recipe','CREAM PUFF SHELL PREP FROM RECIPE',,,'Y',,0,,0.00,,, -18239,1800,'Croissants butter','CROISSANTS BUTTER',,,'Y',,0,,5.90,4.00,8.80,4.10 -18240,1800,'Croissants apple','CROISSANTS APPLE',,,,,0,,5.90,4.00,8.80,4.00 -18241,1800,'Croissants cheese','CROISSANTS CHEESE',,,'Y',,0,,5.90,4.00,8.80,4.10 -18242,1800,'Croutons plain','CROUTONS PLAIN',,,,,0,,5.70,4.00,8.80,4.10 -18243,1800,'Croutons seasoned','CROUTONS SEASONED',,,'Y',,0,,5.80,4.00,8.80,4.10 -18244,1800,'Danish pastry cinnamon enriched','DANISH PASTRY CINN ENR',,,'Y',,0,,5.80,4.00,8.80,4.00 -18245,1800,'Danish pastry cheese','DANISH PASTRY CHEESE',,,'Y',,0,,6.00,4.10,8.80,4.00 -18246,1800,'Danish pastry fruit enriched (includes apple cinnamon raisin lemon raspberry strawberry)','DANISH PASTRY FRUIT ENR',,,'Y',,0,,5.80,4.10,8.80,3.90 -18248,1800,'Doughnuts cake-type plain (includes unsugared old-fashioned)','DOUGHNUTS CAKE-TYPE PLN (INCLUDES UNSUGARED OLD-FASHIONED)','donut',,'Y',,0,,6.25,,, -18249,1800,'Doughnuts cake-type plain chocolate-coated or frosted','DOUGHNUTS CAKE-TYPE PLN CHOCOLATE-COATED OR FRSTD','donut',,'Y',,0,,,,, -18250,1800,'Doughnuts cake-type plain sugared or glazed','DOUGHNUTS CAKE-TYPE PLN SUGARED OR GLAZED','donut',,,,0,,5.90,4.20,8.80,4.00 -18251,1800,'Doughnuts cake-type chocolate sugared or glazed','DOUGHNUTS CAKE-TYPE CHOC SUGARED OR GLAZED','donut',,'Y',,0,,5.90,3.90,8.80,3.90 -18253,1800,'Doughnuts french crullers glazed','DOUGHNUTS FRENCH CRULLERS GLAZED','donut',,'Y',,0,,5.80,4.00,8.80,4.00 -18254,1800,'Doughnuts yeast-leavened with creme filling','DOUGHNUTS YEAST-LEAVENED W/CREME FILLING','donut',,'Y',,0,,5.80,3.90,8.80,4.00 -18255,1800,'Doughnuts yeast-leavened glazed enriched (includes honey buns)','DOUGHNUTS YEAST-LEAVENED GLAZED ENRICHED (INC HONEY BUNS)','donut',,'Y',,0,,6.25,4.00,9.00,4.00 -18256,1800,'Doughnuts yeast-leavened with jelly filling','DOUGHNUTS YEAST-LEAVENED W/JELLY FILLING','donut',,'Y',,0,,5.80,3.90,8.80,3.90 -18258,1800,'Muffins English plain enriched with ca prop (includes sourdough)','MUFFINS ENG PLN ENR W/ CA PROP (INCLUDES SOURDOUGH)',,,'Y',,0,,,,, -18259,1800,'Muffins English plain toasted enriched with calcium propionate (includes sourdough)','MUFFINS ENG PLN TSTD ENR W/ CA PROP (INCLUDES SOURDOUGH)',,,'Y',,0,,,,, -18260,1800,'Muffins English mixed-grain (includes granola)','MUFFINS ENG MIXED-GRAIN (INCLUDES GRANOLA)',,,'Y',,0,,5.80,3.70,8.50,4.00 -18262,1800,'Muffins English raisin-cinnamon (includes apple-cinnamon)','MUFFINS ENG RAISIN-CINNAMON (INCLUDES APPLE-CINNAMON)',,,'Y',,0,,6.25,4.00,9.00,4.00 -18263,1800,'Muffins English raisin-cinnamon toasted (includes apple-cinnamon)','MUFFINS ENG RAISIN-CINNAMON TSTD (INCLUDES APPLE-CINNAMON)',,,'Y',,0,,,,, -18264,1800,'Muffins English wheat','MUFFINS ENG WHEAT',,,'Y',,0,,5.80,3.70,8.40,3.90 -18266,1800,'Muffins English whole-wheat','MUFFINS ENG WHOLE-WHEAT',,,'Y',,0,,5.90,3.50,8.50,3.80 -18268,1800,'French toast frozen ready-to-heat','FRENCH TOAST FRZ RTH',,,,,0,,6.00,4.10,8.90,4.00 -18269,1800,'French toast prepared from recipe made with low fat (2%) milk','FRENCH TOAST PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18270,1800,'Hush puppies prepared from recipe','HUSH PUPPIES PREP FROM RECIPE',,,,,0,,0.00,,, -18271,1800,'Ice cream cones cake or wafer-type','ICE CRM CONES CAKE OR WAFER-TYPE',,,'Y',,0,,5.70,4.00,8.80,4.10 -18272,1800,'Ice cream cones sugar rolled-type','ICE CRM CONES SUGAR ROLLED-TYPE',,,'Y',,0,,5.70,4.00,8.80,4.00 -18273,1800,'Muffins plain prepared from recipe made with low fat (2%) milk','MUFFINS PLN PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18274,1800,'Muffins blueberry commercially prepared (Includes mini-muffins)','MUFFINS BLUEBERRY COMMLY PREP (INCLUDES MINI-MUFFINS)',,,'Y',,0,,,,, -18275,1800,'Muffins blueberry dry mix','MUFFINS BLUEBERRY DRY MIX',,,,,0,,5.70,4.00,8.80,4.10 -18277,1800,'Muffins blueberry toaster-type','MUFFINS BLUEBERRY TOASTER-TYPE',,,,,0,,5.70,3.60,8.80,4.00 -18278,1800,'Muffins blueberry prepared from recipe made with low fat (2%) milk','MUFFINS BLUEBERRY PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18279,1800,'Muffins corn commercially prepared','MUFFINS CORN COMMLY PREP',,,'Y',,0,,5.90,3.80,8.80,4.10 -18280,1800,'Muffins corn dry mix prepared','MUFFINS CORN DRY MIX PREP',,,,,0,,,,, -18281,1800,'Muffins corn toaster-type','MUFFINS CORN TOASTER-TYPE',,,,,0,,5.90,4.00,8.80,3.90 -18282,1800,'Muffins corn prepared from recipe made with low fat (2%) milk','MUFFINS CORN PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18283,1800,'Muffins oat bran','MUFFINS OAT BRAN',,,'Y',,0,,6.20,3.20,8.70,3.80 -18284,1800,'Muffins wheat bran dry mix','MUFFINS WHEAT BRAN DRY MIX',,,,,0,,6.00,2.90,8.80,3.70 -18288,1800,'Pancakes plain frozen ready-to-heat (includes buttermilk)','PANCAKES PLN FRZ RTH (INCLUDES BUTTERMILK)',,,'Y',,0,,,,, -18289,1800,'Pancakes plain dry mix complete (includes buttermilk)','PANCAKES PLN DRY MIX COMPLETE (INCL BTTRMLK)',,,,,0,,6.00,4.00,8.80,4.10 -18290,1800,'Pancakes plain dry mix complete prepared','PANCAKES PLN DRY MIX COMPLETE PREP',,,,,0,,,,, -18291,1800,'Pancakes plain dry mix incomplete (includes buttermilk)','PANCAKES PLN DRY MIX INCOMPLETE (INCL BTTRMLK)',,,'Y',,0,,5.80,3.90,8.40,4.10 -18292,1800,'Pancakes plain dry mix incomplete prepared','PANCAKES PLN DRY MIX INCOMPLETE PREP',,,,,0,,,,, -18293,1800,'Pancakes plain prepared from recipe','PANCAKES PLN PREP FROM RECIPE',,,,,0,,0.00,,, -18294,1800,'Pancakes blueberry prepared from recipe','PANCAKES BLUEBERRY PREP FROM RECIPE',,,,,0,,0.00,,, -18295,1800,'Pancakes buckwheat dry mix incomplete','PANCAKES BUCKWHEAT DRY MIX INCOMPLETE',,,'Y',,0,,6.00,3.60,8.40,3.90 -18297,1800,'Pancakes special dietary dry mix','PANCAKES SPL DIETARY DRY MIX',,,,,0,,5.90,3.80,8.40,4.10 -18299,1800,'Pancakes whole-wheat dry mix incomplete','PANCAKES WHOLE-WHEAT DRY MIX INCOMPLETE',,,,,0,,5.80,3.70,8.40,4.00 -18300,1800,'Pancakes whole-wheat dry mix incomplete prepared','PANCAKES WHOLE-WHEAT DRY MIX INCOMPLETE PREP',,,,,0,,,,, -18301,1800,'Pie apple commercially prepared enriched flour','PIE APPL COMMLY PREP ENR FLR',,,'Y',,0,,5.70,4.00,8.80,3.90 -18302,1800,'Pie apple prepared from recipe','PIE APPL PREP FROM RECIPE',,,,,0,,0.00,,, -18303,1800,'Pie banana cream prepared from mix no-bake type','PIE BANANA CRM PREP FROM MIX NO-BAKE TYPE',,,,,0,,6.00,4.00,8.80,3.90 -18304,1800,'Pie banana cream prepared from recipe','PIE BANANA CRM PREP FROM RECIPE',,,'Y',,0,,0.00,,, -18305,1800,'Pie blueberry commercially prepared','PIE BLUEBERRY COMMLY PREP',,,'Y',,0,,5.70,4.00,8.80,3.90 -18306,1800,'Pie blueberry prepared from recipe','PIE BLUEBERRY PREP FROM RECIPE',,,,,0,,0.00,,, -18308,1800,'Pie cherry commercially prepared','PIE CHERRY COMMLY PREP',,,'Y',,0,,5.80,4.00,8.80,3.90 -18309,1800,'Pie cherry prepared from recipe','PIE CHERRY PREP FROM RECIPE',,,,,0,,0.00,,, -18310,1800,'Pie chocolate creme commercially prepared','PIE CHOC CREME COMMLY PREP',,,'Y',,0,,5.70,3.30,8.80,3.70 -18312,1800,'Pie chocolate mousse prepared from mix no-bake type','PIE CHOC MOUSSE PREP FROM MIX NO-BAKE TYPE',,,,,0,,6.00,3.70,8.70,3.80 -18313,1800,'Pie coconut creme commercially prepared','PIE COCNT CREME COMMLY PREP',,,'Y',,0,,6.00,4.00,8.70,3.90 -18314,1800,'Pie coconut cream prepared from mix no-bake type','PIE COCNT CRM PREP FROM MIX NO-BAKE TYPE',,,,,0,,6.10,4.10,8.70,3.90 -18316,1800,'Pie coconut custard commercially prepared','PIE COCNT CUSTARD COMMLY PREP',,,,,0,,6.00,4.10,8.70,4.00 -18317,1800,'Pie egg custard commercially prepared','PIE EGG CUSTARD COMMLY PREP',,,'Y',,0,,6.20,4.30,8.90,4.00 -18319,1800,'Pie fried pies fruit','PIE FRIED PIES FRUIT',,,'Y',,0,,5.80,4.00,8.80,3.80 -18320,1800,'Pie lemon meringue commercially prepared','PIE LEMON MERINGUE COMMLY PREP',,,'Y',,0,,6.00,4.20,8.90,3.90 -18321,1800,'Pie lemon meringue prepared from recipe','PIE LEMON MERINGUE PREP FROM RECIPE',,,,,0,,0.00,,, -18322,1800,'Pie mince prepared from recipe','PIE MINCE PREP FROM RECIPE',,,'Y',,0,,0.00,,, -18323,1800,'Pie peach','PIE PEACH',,,'Y',,0,,5.80,3.90,8.80,3.90 -18324,1800,'Pie pecan commercially prepared','PIE PECAN COMMLY PREP',,,'Y',,0,,,,, -18325,1800,'Pie pecan prepared from recipe','PIE PECAN PREP FROM RECIPE',,,,,0,,0.00,,, -18326,1800,'Pie pumpkin commercially prepared','PIE PUMPKIN COMMLY PREP',,,'Y',,0,,,,, -18327,1800,'Pie pumpkin prepared from recipe','PIE PUMPKIN PREP FROM RECIPE',,,,,0,,0.00,,, -18328,1800,'Pie vanilla cream prepared from recipe','PIE VANILLA CRM PREP FROM RECIPE',,,'Y',,0,,0.00,,, -18332,1800,'Pie crust standard-type dry mix','PIE CRUST STANDARD-TYPE DRY MIX',,,,,0,,5.70,4.00,8.80,4.10 -18333,1800,'Pie crust standard-type dry mix prepared baked','PIE CRUST STANDARD-TYPE DRY MIX PREP BKD',,,,,0,,,,, -18334,1800,'Pie crust standard-type frozen ready-to-bake enriched','PIE CRUST STANDARD-TYPE FRZ RTB ENR',,,'Y',,0,,5.70,4.10,8.90,4.10 -18335,1800,'Pie crust standard-type frozen ready-to-bake enriched baked','PIE CRUST STANDARD-TYPE FRZ RTB ENR BKD',,,'Y',,0,,0.00,,, -18336,1800,'Pie crust standard-type prepared from recipe baked','PIE CRUST STANDARD-TYPE PREP FROM RECIPE BKD',,,,,0,,0.00,,, -18337,1800,'Puff pastry frozen ready-to-bake','PUFF PASTRY FRZ RTB',,,,,0,,0.00,,, -18338,1800,'Phyllo dough','PHYLLO DOUGH',,,'Y',,0,,0.00,,, -18339,1800,'Popovers dry mix enriched','POPOVERS DRY MIX ENRICHED',,,,,0,,5.70,4.10,8.70,4.10 -18342,1800,'Rolls dinner plain commercially prepared (includes brown-and-serve)','ROLLS DINNER PLN COMM PREPARED (INC BROWN -N- SERVE)',,,'Y',,0,,,,, -18344,1800,'Rolls dinner egg','ROLLS DINNER EGG',,,'Y',,0,,5.80,3.90,8.80,4.10 -18345,1800,'Rolls dinner oat bran','ROLLS DINNER OAT BRAN',,,'Y',,0,,5.80,3.70,8.70,4.00 -18346,1800,'Rolls dinner rye','ROLLS DINNER RYE',,,'Y',,0,,5.80,3.70,8.70,4.10 -18347,1800,'Rolls dinner wheat','ROLLS DINNER WHEAT',,,'Y',,0,,5.70,3.90,8.80,4.00 -18348,1800,'Rolls dinner whole-wheat','ROLLS DINNER WHOLE-WHEAT',,,'Y',,0,,0.00,,, -18349,1800,'Rolls french','ROLLS FRENCH',,,'Y',,0,,5.80,3.90,8.70,4.10 -18350,1800,'Rolls hamburger or hotdog plain','ROLLS HAMBURGER OR HOTDOG PLN',,,'Y',,0,,5.80,4.00,8.80,4.10 -18351,1800,'Rolls hamburger or hotdog mixed-grain','ROLLS HAMBURGER OR HOTDOG MIXED-GRAIN',,,'Y',,0,,5.80,3.80,8.80,3.90 -18353,1800,'Rolls hard (includes kaiser)','ROLLS HARD (INCL KAISER)',,,'Y',,0,,5.70,4.00,8.60,4.10 -18354,1800,'Strudel apple','STRUDEL APPLE',,,'Y',,0,,6.00,4.20,8.90,3.90 -18355,1800,'Sweet rolls cheese','SWEET ROLLS CHEESE',,,,,0,,6.00,4.00,8.80,3.90 -18356,1800,'Sweet rolls cinnamon commercially prepared with raisins','SWEET ROLLS CINN COMMLY PREP W/RAISINS',,,'Y',,0,,5.80,3.90,8.80,4.00 -18357,1800,'Sweet rolls cinnamon refrigerated dough with frosting','SWEET ROLLS CINN REFR DOUGH W/FRSTNG',,,,,0,,5.70,4.00,8.80,4.00 -18358,1800,'Sweet rolls cinnamon refrigerated dough with frosting baked','SWEET ROLLS CINN REFR DOUGH W/FRSTNG BKD',,,,,0,,,,, -18360,1800,'Taco shells baked','TACO SHELLS BAKED',,,'Y',,0,,,,, -18361,1800,'Toaster pastries brown-sugar-cinnamon','TOASTER PASTRIES BROWN-SUGAR-CINNAMON',,,,,0,,5.80,4.10,8.80,3.90 -18362,1800,'Toaster pastries fruit (includes apple blueberry cherry strawberry)','TOASTER PASTRIES FRUIT',,,'Y',,0,,6.25,,, -18363,1800,'Tortillas ready-to-bake or -fry corn','TORTILLAS RTB OR -FRY CORN',,,'Y',,0,,6.20,2.70,8.40,4.00 -18364,1800,'Tortillas ready-to-bake or -fry flour refrigerated','TORTILLAS RTB OR -FRY FLR REFR',,,'Y',,0,,5.70,4.00,8.80,4.10 -18365,1800,'Waffles plain frozen ready-to-heat','WAFFLES PLN FRZ RTH',,,,,0,,,,, -18367,1800,'Waffles plain prepared from recipe','WAFFLES PLN PREP FROM RECIPE',,,,,0,,0.00,,, -18368,1800,'Wonton wrappers (includes egg roll wrappers)','WONTON WRAPPERS (INCL EGG ROLL WRAPPERS)',,,,,0,,0.00,,, -18369,1800,'Leavening agents baking powder double-acting sodium aluminum sulfate','LEAVENING AGENTS BAKING PDR DOUBLE-ACTING NA AL SULFATE',,,'Y',,0,,6.20,1.50,8.40,1.90 -18370,1800,'Leavening agents baking powder double-acting straight phosphate','LEAVENING AGENTS BAKING PDR DOUBLE-ACTING STRAIGHT PO4',,,'Y',,0,,6.20,1.80,8.40,2.10 -18371,1800,'Leavening agents baking powder low-sodium','LEAVENING AGENTS BAKING PDR LOW-SODIUM',,,'Y',,0,,6.20,2.70,8.40,2.00 -18372,1800,'Leavening agents baking soda','LEAVENING AGENTS BAKING SODA',,,'Y',,0,,0.00,,, -18373,1800,'Leavening agents cream of tartar','LEAVENING AGENTS CRM OF TARTAR',,,'Y',,0,,6.20,3.50,8.40,4.20 -18374,1800,'Leavening agents yeast bakers compressed','LEAVENING AGENTS YEAST BAKERS COMPRESSED',,,'Y',,0,,6.20,3.00,8.40,3.40 -18375,1800,'Leavening agents yeast bakers active dry','LEAVENING AGENTS YEAST BAKERS ACTIVE DRY',,,'Y',,0,,6.25,3.00,8.40,3.40 -18376,1800,'Bread crumbs dry grated seasoned','BREAD CRUMBS DRY GRATED SEASONED',,,'Y',,0,,5.80,4.00,8.40,4.10 -18377,1800,'Cookies oatmeal prepared from recipe without raisins','COOKIES OATMEAL PREP FROM RECIPE WO/RAISINS',,,,,0,,0.00,,, -18378,1800,'Cookies chocolate chip prepared from recipe made with butter','COOKIES CHOC CHIP PREP FROM RECIPE MADE W/BUTTER',,,,,0,,0.00,,, -18383,1800,'Bread protein (includes gluten) toasted','BREAD PROT (INCLUDES GLUTEN) TSTD',,,'Y',,0,,0.00,,, -18384,1800,'Bread rice bran toasted','BREAD RICE BRAN TOASTED',,,'Y',,0,,0.00,,, -18386,1800,'Muffins blueberry toaster-type toasted','MUFFINS BLUEBERRY TOASTER-TYPE TSTD',,,,,0,,0.00,,, -18388,1800,'Muffins wheat bran toaster-type with raisins toasted','MUFFINS WHEAT BRAN TOASTER-TYPE W/RAISINS TSTD',,,,,0,,0.00,,, -18390,1800,'Pancakes buttermilk prepared from recipe','PANCAKES BTTRMLK PREP FROM RECIPE',,,,,0,,0.00,,, -18396,1800,'Rolls dinner plain prepared from recipe made with low fat (2%) milk','ROLLS DINNER PLN PREP FROM RECIPE MADE W/LOFAT (2%) MILK',,,,,0,,0.00,,, -18399,1800,'Pie crust cookie-type prepared from recipe graham cracker chilled','PIE CRUST COOKIE-TYPE PREP FR RECIPE GRAHAM CRACKER CHILLED',,,,,0,,0.00,,, -18400,1800,'Crackers matzo egg and onion','CRACKERS MATZO EGG&ONION',,,,,0,,5.80,4.10,8.70,4.10 -18401,1800,'Pie crust cookie-type prepared from recipe vanilla wafer chilled','PIE CRUST COOKIE-TYPE PREP FROM RECIPE VANILLA WAFER CHILLED',,,'Y',,0,,0.00,,, -18402,1800,'Pie crust standard-type prepared from recipe unbaked','PIE CRUST STANDARD-TYPE PREP FROM RECIPE UNBAKED',,,'Y',,0,,0.00,,, -18403,1800,'Waffles plain frozen ready -to-heat toasted','WAFFLES PLN FRZ READY -TO-HEAT TSTD',,,'Y',,0,,,,, -18406,1800,'Bagels plain enriched without calcium propionate (includes onion poppy sesame)','BAGELS PLN ENR WO/CA PROP (INCL ONION POPPY SESAME)',,,,,0,,6.10,4.20,8.40,4.10 -18407,1800,'Bagels plain unenriched with calcium propionate (includes onion poppy sesame)','BAGELS PLN UNENR W/CA PROP (INCL ONION POPPY SESAME)',,,,,0,,5.90,4.00,8.40,4.10 -18408,1800,'Bagels plain unenriched without calcium propionate(includes onion poppy sesame)','BAGELS PLN UNENR WO/CA PROP (INCL ONION POPPY SESAME)',,,,,0,,5.90,4.10,8.80,4.00 -18412,1800,'Bread cornbread dry mix unenriched (includes corn muffin mix)','BREAD CORNBREAD DRY MIX UNENR (INCL CORN MUFFIN MIX)',,,,,0,,5.70,4.00,8.40,4.10 -18413,1800,'Bread pita white unenriched','BREAD PITA WHITE UNENR',,,,,0,,5.70,4.00,8.40,4.10 -18414,1800,'Bread raisin unenriched','BREAD RAISIN UNENRICHED',,,,,0,,5.80,3.90,8.80,3.90 -18416,1800,'Bread white commercially prepared low sodium no salt','BREAD WHITE COMMLY PREP LO NA NO SALT',,,'Y',,0,,5.70,3.90,8.70,4.10 -18417,1800,'Cake coffeecake cinnamon with crumb topping commercially prepared unenriched','CAKE COFFEECAKE CINN W/ CRUMB TOPPING COMMLY PREP UNENR',,,,,0,,5.80,3.90,8.80,4.00 -18418,1800,'Cake pound commercially prepared other than all butter unenriched','CAKE POUND COMMLY PREP OTHER THAN ALL BUTTER UNENR',,,,,0,,6.00,4.20,8.80,4.00 -18419,1800,'Cake pudding-type white unenriched dry mix','CAKE PUDDING-TYPE WHITE UNENR DRY MIX',,,,,0,,5.80,4.10,8.80,4.00 -18420,1800,'Cake yellow unenriched dry mix','CAKE YEL UNENR DRY MIX',,,,,0,,5.90,4.10,8.80,4.00 -18421,1800,'Cookies butter commercially prepared unenriched','COOKIES BUTTER COMMLY PREP UNENR',,,,,0,,5.90,4.20,8.80,4.00 -18422,1800,'Cookies chocolate chip commercially prepared regular higher fat unenriched','COOKIES CHOC CHIP COMMLY PREP REG HIGHER FAT UNENR',,,,,0,,5.80,3.90,8.80,3.90 -18423,1800,'Cookies ladyfingers without lemon juice and rind','COOKIES LADYFINGERS WO/LEMON JUC&RIND',,,,,0,,0.00,,, -18424,1800,'Crackers melba toast plain without salt','CRACKERS MELBA TOAST PLN WO/SALT',,,,,0,,5.70,4.00,8.60,4.10 -18425,1800,'Crackers saltines low salt (includes oyster soda soup)','CRACKERS SALTINES LO SALT (INCL OYSTER SODA SOUP)',,,'Y',,0,,5.70,4.00,8.80,4.10 -18426,1800,'Crackers saltines unsalted tops (includes oyster soda soup)','CRACKERS SALTINES UNSALTED TOPS (INCL OYSTER SODA SOUP)',,,,,0,,5.70,4.00,8.80,4.10 -18427,1800,'Crackers standard snack-type regular low salt','CRACKERS STD SNACK-TYPE REG LO SALT',,,'Y',,0,,5.70,4.00,8.80,4.10 -18428,1800,'Crackers wheat low salt','CRACKERS WHEAT LOW SALT',,,'Y',,0,,5.80,3.80,8.80,4.00 -18429,1800,'Crackers whole-wheat low salt','CRACKERS WHOLE-WHEAT LO SALT',,,'Y',,0,,5.80,3.60,8.80,3.80 -18430,1800,'Danish pastry cinnamon unenriched','DANISH PASTRY CINN UNENR',,,,,0,,5.90,4.00,8.80,4.00 -18431,1800,'Danish pastry fruit unenriched (includes apple cinnamon raisin strawberry)','DANISH PASTRY FRUIT UNENR (INCL APPL CINN RAISIN STRAWBERRY)',,,,,0,,5.80,4.10,8.80,3.90 -18432,1800,'Bread white commercially prepared toasted low sodium no salt','BREAD WHITE COMMLY PREP TSTD LO NA NO SALT',,,,,0,,5.70,3.90,8.70,4.10 -18433,1800,'Danish pastry lemon unenriched','DANISH PASTRY LEMON UNENR',,,,,0,,5.80,4.10,8.80,3.90 -18434,1800,'Crackers cheese low sodium','CRACKERS CHS LO NA',,,'Y',,0,,,,, -18435,1800,'Danish pastry raspberry unenriched','DANISH PASTRY RASPBERRY UNENR',,,,,0,,5.80,4.10,8.80,3.90 -18436,1800,'Doughnuts yeast-leavened glazed unenriched (includes honey buns)','DOUGHNUTS YEAST-LEAVENED GLAZED UNENR (INCL HONEY BUNS)','donut',,,,0,,5.80,3.90,8.80,4.00 -18437,1800,'English muffins plain enriched without calcium propionate(includes sourdough)','ENGLISH MUFFINS PLN ENR WO/CA PROP (INCL SOURDOUGH)',,,,,0,,5.80,3.90,8.60,4.10 -18438,1800,'English muffins plain unenriched with calcium propionate (includes sourdough)','ENGLISH MUFFINS PLN UNENR W/CA PROP (INCL SOURDOUGH)',,,,,0,,5.80,3.90,8.60,4.10 -18439,1800,'English muffins plain unenriched without calcium propionate (includes sourdough)','ENGLISH MUFFINS PLN UNENR WO/CA PROP (INCL SOURDOUGH)',,,,,0,,5.80,3.90,8.60,4.10 -18443,1800,'Pie apple commercially prepared unenriched flour','PIE APPL COMMLY PREP UNENR FLR',,,,,0,,5.70,4.00,8.80,3.90 -18444,1800,'Pie fried pies cherry','PIE FRIED PIES CHERRY',,,,,0,,5.80,4.00,8.80,3.80 -18445,1800,'Pie fried pies lemon','PIE FRIED PIES LEMON',,,,,0,,5.80,4.00,8.80,3.80 -18446,1800,'Pie crust standard-type frozen ready-to-bake unenriched','PIE CRUST STANDARD-TYPE FRZ RTB UNENR',,,,,0,,5.70,4.10,8.90,4.10 -18447,1800,'Popovers dry mix unenriched','POPOVERS DRY MIX UNENR',,,,,0,,5.70,4.10,8.70,4.10 -18448,1800,'Taco shells baked without added salt','TACO SHELLS BKD WO/ SALT',,,,,0,,6.20,2.70,8.80,4.00 -18449,1800,'Tortillas ready-to-bake or -fry corn without added salt','TORTILLAS RTB OR -FRY CORN WO/ SALT',,,,,0,,6.20,2.70,8.40,4.00 -18450,1800,'Tortillas ready-to-bake or -fry flour without added calcium','TORTILLAS RTB OR -FRY FLR WO/ CA',,,,,0,,5.70,4.00,8.80,4.10 -18451,1800,'Cake pound commercially prepared fat-free','CAKE POUND COMMLY PREP FAT-FREE',,,'Y',,0,,6.10,4.20,8.40,4.10 -18453,1800,'Cake yellow light dry mix','CAKE YEL LT DRY MIX',,,,,0,,5.90,4.10,8.80,4.00 -18457,1800,'Crackers saltines fat-free low-sodium','CRACKERS SALTINES FAT-FREE LOW-SODIUM',,,'Y',,0,,5.70,4.00,8.40,4.10 -18459,1800,'Tart breakfast low fat','TART BRKFST LOFAT',,,'Y',,0,,,,, -18513,1800,'Archway Home Style Cookies Sugar Free Oatmeal','ARCHWAY HOME STYLE COOKIES SUGAR FREE OATMEAL',,'Archway Cookies',,,0,,,,, -18522,1800,'Archway Home Style Cookies Chocolate Chip Ice Box','ARCHWAY HOME STYLE COOKIES CHOC CHIP ICE BOX',,'Archway Cookies',,,0,,6.25,,, -18524,1800,'Archway Home Style Cookies Coconut Macaroon','ARCHWAY HOME STYLE COOKIES COCNT MACAROON',,'Archway Cookies',,,0,,6.25,,, -18527,1800,'Archway Home Style Cookies Date Filled Oatmeal','ARCHWAY HOME STYLE COOKIES DATE FILLED OATMEAL',,'Archway Cookies',,,0,,6.25,,, -18528,1800,'Archway Home Style Cookies Dutch Cocoa','ARCHWAY HOME STYLE COOKIES DUTCH COCOA',,'Archway Cookies',,,0,,6.25,,, -18529,1800,'Archway Home Style Cookies Frosty Lemon','ARCHWAY HOME STYLE COOKIES FROSTY LEMON',,'Archway Cookies',,,0,,,,, -18532,1800,'Archway Home Style Cookies Iced Molasses','ARCHWAY HOME STYLE COOKIES ICED MOLASSES',,'Archway Cookies',,,0,,6.25,,, -18533,1800,'Archway Home Style Cookies Iced Oatmeal','ARCHWAY HOME STYLE COOKIES ICED OATMEAL',,'Archway Cookies',,,0,,6.25,,, -18535,1800,'Archway Home Style Cookies Molasses','ARCHWAY HOME STYLE COOKIES MOLASSES',,'Archway Cookies',,,0,,6.25,,, -18537,1800,'Archway Home Style Cookies Oatmeal','ARCHWAY HOME STYLE COOKIES OATMEAL',,'Archway Cookies',,,0,,6.25,,, -18538,1800,'Archway Home Style Cookies Oatmeal Raisin','ARCHWAY HOME STYLE COOKIES OATMEAL RAISIN',,'Archway Cookies',,,0,,6.25,,, -18539,1800,'Archway Home Style Cookies Old Fashioned Molasses','ARCHWAY HOME STYLE COOKIES OLD FASHIONED MOLASSES',,'Archway Cookies',,,0,,6.25,,, -18540,1800,'Archway Home Style Cookies Old Fashioned Windmill Cookies','ARCHWAY HOME STYLE COOKIES OLD FASHIONED WINDMILL COOKIES',,'Archway Cookies',,,0,,6.25,,, -18541,1800,'Archway Home Style Cookies Peanut Butter','ARCHWAY HOME STYLE COOKIES PNUT BUTTER',,'Archway Cookies',,,0,,,,, -18544,1800,'Archway Home Style Cookies Raspberry Filled','ARCHWAY HOME STYLE COOKIES RASPBERRY FILLED',,'Archway Cookies',,,0,,6.25,,, -18547,1800,'Archway Home Style Cookies Strawberry Filled','ARCHWAY HOME STYLE COOKIES STRAWBERRY FILLED',,'Archway Cookies',,,0,,6.25,,, -18562,1800,'Archway Home Style Cookies Reduced Fat Ginger Snaps','ARCHWAY HOME STYLE COOKIES RED FAT GINGER SNAPS',,'Archway Cookies',,,0,,6.25,,, -18566,1800,'Artificial Blueberry Muffin Mix dry','ARTIFICIAL BLUEBERRY MUFFIN MIX DRY',,,,,0,,,,, -18567,1800,'Kraft Stove Top Stuffing Mix Chicken Flavor','KRAFT STOVE TOP STUFFING MIX CHICK FLAVOR',,'Kraft Foods Inc.',,,0,,,,, -18603,1800,'George Weston Bakeries Brownberry Sage and Onion Stuffing Mix dry','GEORGE WESTON BAKERIES BROWNBERRY SAGE & ONION STFFNG MX DRY',,'George weston Bakeries Inc.',,,0,,,,, -18608,1800,'Keebler Keebler Chocolate Graham SELECTS','KEEBLER KEEBLER CHOC GRAHAM SELECTS',,'Keebler Co.',,,0,,,,, -18610,1800,'Continental Mills Krusteaz Almond Poppyseed Muffin Mix Artificially Flavored dry','CNTNNTL MLLS KRUSTEAZ ALMD POPPYSD MFFN MX ARTTFCL FLAV DRY',,'Continental Mills Inc.',,,0,,6.25,,, -18612,1800,'Mckee Baking Little Debbie Nutty Bars Wafers with Peanut Butter Chocolate Covered','MCKEE BKING LTTLE DEBBIE NTTY BRS WFRS W PNT BTTR CHC CVERED',,'McKee Baking Co.',,,0,,,,, -18614,1800,'Martha White Foods Martha Whites Chewy Fudge Brownie Mix dry','MARTHA WHITE FOODS MRTHA WHITES CHEWY FUDGE BROWNIE MIX DRY',,'The J.M. Smucker Co.',,,0,,6.25,,, -18615,1800,'Martha White Foods Martha Whites Buttermilk Biscuit Mix dry','MARTHA WHITE FOODS MARTHA WHITES BTTRMLK BISCUIT MIX DRY',,'The J.M. Smucker Co.',,,0,,6.25,,, -18616,1800,'Mission Foods Mission Flour Tortillas Soft Taco 8 inch','MISSION FOODS MISSION FLR TORTILLAS SOFT TACO 8 INCH',,'Mission Foods',,,0,,,,, -18617,1800,'Nabisco Nabisco Grahams Crackers','NABISCO NABISCO GRAHAMS CRACKERS',,'Nabisco Brands Inc.',,,0,,,,, -18619,1800,'Nabisco Nabisco Oreo Crunchies Cookie Crumb Topping','NABISCO NABISCO OREO CRUNCHIES COOKIE CRUMB TOPPING',,'Nabisco Brands Inc.',,,0,,,,, -18621,1800,'Nabisco Nabisco Ritz Crackers','NABISCO NABISCO RITZ CRACKERS',,'Nabisco Brands Inc.',,,0,,,,, -18629,1800,'Pillsbury Buttermilk Biscuits Artificial Flavor refrigerated dough','PILLSBURY BTTRMLK BISCUITS ART FLAVOR REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18630,1800,'Pillsbury Chocolate Chip Cookies refrigerated dough','PILLSBURY CHOC CHIP COOKIES REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18631,1800,'Pillsbury Crusty French Loaf refrigerated dough','PILLSBURY CRUSTY FRENCH LOAF REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18633,1800,'Pillsbury Grands Buttermilk Biscuits refrigerated dough','PILLSBURY GRANDS BTTRMLK BISCUITS REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18634,1800,'Pillsbury Golden Layer Buttermilk Biscuits Artificial Flavor refrigerated dough','PILLSBURY GOLDEN LAYER BTTRMLK BISCUITS ART FLVOR REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18635,1800,'Pillsbury Cinnamon Rolls with Icing refrigerated dough','PILLSBURY CINN ROLLS W/ ICING REFR DOUGH',,'Pillsbury Co.',,,0,,6.25,,, -18637,1800,'Kraft Foods Shake N Bake Original Recipe Coating for Pork dry','KRAFT FOODS SHKE N BKE ORIGINAL RECIPE COATING FOR PORK DRY',,'Kraft Foods Inc.',,,0,,,,, -18639,1800,'George Weston Bakeries Thomas English Muffins','GEORGE WESTON BAKERIES THOMAS ENG MUFFINS',,'George weston Bakeries Inc.',,,0,,,,, -18640,1800,'Heinz Weight Watcher Chocolate Eclair frozen','HEINZ WEIGHT WATCHER CHOC ECLAIR FRZ',,'H.J. Heinz Co.',,,0,,6.25,,, -18641,1800,'Interstate Brands Corp Wonder Hamburger Rolls','INTERSTATE BRANDS CORP WONDER HAMBURGER ROLLS',,'Interstate Bakeries Corporation',,,0,,,,, -18651,1800,'Nabisco Nabisco Snackwells Fat Free Devils Food Cookie Cakes','NABISCO NABISCO SNACKWELLS FAT FREE DEVILS FD COOKIE CAKES',,'Nabisco Brands Inc.',,,0,,,,, -18927,1800,'Crackers cheese sandwich-type with cheese filling','CRACKERS CHS SANDWICH-TYPE W/ CHS FILLING',,,,,0,,,,, -18932,1800,'Waffles buttermilk frozen ready-to-heat','WAFFLES BTTRMLK FRZ RTH',,,,,0,,,,, -18933,1800,'Waffle buttermilk frozen ready-to-heat toasted','WAFFLE BTTRMLK FRZ RTH TSTD',,,'Y',,0,,,,, -18934,1800,'Waffle buttermilk frozen ready-to-heat microwaved','WAFFLE BTTRMLK FRZ RTH MICROWAVED',,,,,0,,,4.00,9.00,4.00 -18935,1800,'Waffle plain frozen ready-to-heat microwave','WAFFLE PLN FRZ RTH MICROWAVE',,,,,0,,,,, -18936,1800,'Pancakes plain frozen ready-to-heat microwave (includes buttermilk)','PANCAKES PLN FRZ RTH MICROWAVE(INC BUTTMLK)',,,,,0,,,,, -18938,1800,'Toaster Pastries fruit frosted (include apples blueberry cherry strawberry)','TOASTER PASTRIES FRUIT FRSTD',,,'Y',,0,,,,, -18939,1800,'Toaster pastries fruit toasted (include apple blueberry cherry strawberry)','TSTR PSTRS FRT TSTD (INCL APPL BLUEBERRY CHERRY STRAWBERRY)',,,,,0,,,,, -18940,1800,'Muffin blueberry commercially prepared low-fat','MUFFIN BLUEBERRY COMMLY PREP LOW-FAT',,,'Y',,0,,,,, -18942,1800,'Pie Crust Cookie-type Graham Cracker Ready Crust','PIE CRUST COOKIE-TYPE GRAHAM CRACKER READY CRUST',,,'Y',,0,,,,, -18943,1800,'Pie Crust Cookie-type Chocolate Ready Crust','PIE CRUST COOKIE-TYPE CHOC READY CRUST',,,'Y',,0,,,,, -18944,1800,'Pie Dutch Apple Commercially Prepared','PIE DUTCH APPL COMMLY PREP',,,,,0,,,,, -18945,1800,'Pie crust deep dish frozen unbaked made with enriched flour','PIE CRUST DEEP DISH FRZ UNBAKED MADE W/ ENR FLR',,,,,0,,,,, -18946,1800,'Pie crust refrigerated regular baked','PIE CRUST REFR REG BKD',,,,,0,,,,, -18947,1800,'Pie crust deep dish frozen baked made with enriched flour','PIE CRUST DEEP DISH FRZ BKD MADE W/ ENR FLR',,,,,0,,,,, -18948,1800,'Pie crust refrigerated regular unbaked','PIE CRUST REFR REG UNBAKED',,,,,0,,,,, -18949,1800,'Crackers whole-wheat reduced fat','CRACKERS WHOLE-WHEAT RED FAT',,,'Y',,0,,,,, -18950,1800,'Crackers wheat reduced fat','CRACKERS WHEAT RED FAT',,,'Y',,0,,,,, -18951,1800,'Waffles chocolate chip frozen ready-to-heat','WAFFLES CHOC CHIP FRZ RTH',,,'Y',,0,,6.25,,, -18952,1800,'Tostada shells corn','TOSTADA SHELLS CORN','Latino food',,,,0,,,,, -18953,1800,'Bread salvadoran sweet cheese (quesadilla salvadorena)','BREAD SALVADORAN SWT CHS (QUESADILLA SALVADORENA)','Latino food',,'Y',,0,,6.25,,, -18954,1800,'Bread pound cake type pan de torta salvadoran','BREAD POUND CAKE TYPE PAN DE TORTA SALVADORAN','Latino food',,,,0,,,,, -18955,1800,'Bread pan dulce sweet yeast bread','BREAD PAN DULCE SWT YEAST BREAD','Latino food',,'Y',,0,,,,, -18956,1800,'Keikitos (muffins) Latino bakery item','KEIKITOS (MUFFINS) LATINO BAKERY ITEM',,,,,0,,6.25,,, -18957,1800,'Cake pound Bimbo Bakeries USA Panque Casero home baked style','CAKE POUND BIMBO BAKERIES USA PANQUE CASERO HOME BKD STYLE','Latino food','Bimbo Bakeries USA',,,0,,6.25,4.00,9.00,4.00 -18958,1800,'Pan Dulce La Ricura Salpora de Arroz con Azucar cookie-like contains wheat flour and rice flour','PAN DULCE LA RICURA SLPORA DE ARROZ CON AZUCAR WHEAT&RC FLR','Latino rice cookies','Quesos La Ricura Ltd.',,,0,,6.25,,, -18959,1800,'Pastry Pastelitos de Guava (guava pastries)','PASTRY PASTELITOS DE GUAVA (GUAVA PASTRIES)','Latino food pastelios de guava turnovers',,,,0,,,,, -18960,1800,'Crackers snack Goya Crackers','CRACKERS SNACK GOYA CRACKERS','Latino food',,,,0,,6.25,,, -18961,1800,'Crackers cream Gamesa Sabrosas','CRACKERS CRM GAMESA SABROSAS','Latino food','Pepsico Mexico',,,0,,,,, -18962,1800,'Crackers cream La Moderna Rikis Cream Crackers','CRACKERS CRM LA MODERNA RIKIS CRM CRACKERS',,,,,0,,,,, -18963,1800,'Garlic bread frozen','GARLIC BREAD FRZ',,,'Y',,0,,,,, -18964,1800,'Cinnamon buns frosted (includes honey buns)','CINNAMON BUNS FRSTD (INCLUDES HONEY BUNS)',,,'Y',,0,,,,, -18965,1800,'Crackers cheese reduced fat','CRACKERS CHS RED FAT',,,'Y',,0,,6.25,4.00,9.00,4.00 -18966,1800,'Crackers saltines whole wheat (includes multi-grain)','CRACKERS SALTINES WHL WHEAT (INCLUDES MULTI-GRAIN)',,,'Y',,0,,,,, -18967,1800,'Bread white wheat','BREAD WHITE WHEAT',,,'Y',,0,,6.25,4.00,9.00,4.00 -18968,1800,'Bagels wheat','BAGELS WHEAT',,,'Y',,0,,,,, -18969,1800,'Cream puff eclair custard or cream filled iced','CREAM PUFF ECLAIR CUSTARD OR CRM FILLED ICED',,,'Y',,0,,,,, -18970,1800,'Tortillas ready-to-bake or -fry flour shelf stable','TORTILLAS RTB OR -FRY FLR SHELF STABLE',,,'Y',,0,,6.25,,, -18971,1800,'Bread potato','BREAD POTATO',,,'Y',,0,,6.25,4.00,9.00,4.00 -18972,1800,'Bread cheese','BREAD CHS',,,'Y',,0,,,,, -18973,1800,'Focaccia Italian flatbread plain','FOCACCIA ITALIAN FLATBREAD PLN',,,'Y',,0,,,,, -19000,1900,'SCHIFF TIGERS MILK BAR','SCHIFF TIGERS MILK BAR',,,'Y',,0,,5.90,3.40,8.50,3.70 -19001,1900,'Candies TOBLERONE milk chocolate with honey and almond nougat','CANDIES TOBLERONE MILK CHOC W/ HONEY & ALMOND NOUGAT',,,'Y',,0,,5.90,3.40,8.50,3.70 -19002,2500,'Snacks beef jerky chopped and formed','BEEF JERKY CHOPD&FORMED',,,'Y',,0,,6.25,,, -19003,2500,'Snacks corn-based extruded chips plain','SNACKS CORN-BASED EXTRUDED CHIPS PLN',,,'Y',,0,,6.25,2.70,8.80,4.00 -19004,2500,'Snacks corn-based extruded chips barbecue-flavor','CORN-BASED EXTRUDED CHIPS BARBECUE-FLAVOR',,,,,0,,6.10,2.70,8.70,3.90 -19005,2500,'Snacks corn-based extruded cones plain','CORN-BASED EXTRUDED CONES PLN',,,,,0,,6.20,3.50,8.60,4.10 -19007,2500,'Snacks corn-based extruded onion-flavor','SNACKS CORN-BASED EXTRUDED ONION-FLAVOR',,,'Y',,0,,6.20,3.50,8.80,4.20 -19008,2500,'Snacks corn-based extruded puffs or twists cheese-flavor','CORN-BASED EXTRUDED PUFFS OR TWISTS CHEESE-FLAVOR',,,'Y',,0,,6.30,4.00,8.80,4.10 -19009,2500,'Snacks KRAFT CORNNUTS plain','CORNNUTS PLAIN',,'Kraft Foods Inc.','Y',,0,,6.25,2.70,8.70,4.00 -19010,2500,'Snacks crisped rice bar chocolate chip','CRISPED RICE BAR CHOC CHIP',,,,,0,,5.80,3.40,8.60,3.70 -19013,1900,'Snacks fruit leather pieces','FRUIT LEATHER PIECES',,,'Y',,0,,6.25,4.00,9.00,4.00 -19014,1900,'Snacks fruit leather rolls','FRUIT LEATHER ROLLS',,,'Y',,0,,6.25,4.00,9.00,4.00 -19015,2500,'Snacks granola bars hard plain','GRANOLA BARS HARD PLAIN',,,'Y',,0,,6.25,3.90,8.80,4.00 -19016,2500,'Snacks granola bars hard almond','GRANOLA BARS HARD ALMOND',,,,,0,,5.70,3.50,8.60,4.00 -19017,2500,'Snacks granola bars hard chocolate chip','GRANOLA BARS HARD CHOC CHIP',,,,,0,,5.80,3.40,8.50,3.80 -19018,1900,'Fruit syrup','FRUIT SYRUP',,,'Y',,0,,6.25,,, -19020,2500,'Snacks granola bars soft uncoated plain','GRANOLA BARS SOFT UNCOATED PLN',,,,,0,,5.90,3.50,8.60,4.00 -19021,2500,'Snacks granola bars soft uncoated peanut butter','GRANOLA BARS SOFT UNCOATED PNUT BUTTER',,,,,0,,5.60,3.50,8.40,4.00 -19022,2500,'Snacks granola bars soft uncoated raisin','GRANOLA BARS SOFT UNCOATED RAISIN',,,,,0,,5.80,3.50,8.40,4.10 -19024,2500,'Snacks granola bars soft coated milk chocolate coating chocolate chip','GRANOLA BARS SOFT COATD MILK CHOC COATING CHOC CHIP',,,,,0,,6.10,3.50,8.60,3.60 -19025,1900,'Candies honey-combed with peanut butter','CANDIES HONEY-COMBED W/ PNUT BUTTER',,,'Y',,0,,5.46,3.47,8.37,4.07 -19026,2500,'Snacks granola bars soft coated milk chocolate coating peanut butter','GRANOLA BARS SOFT COATD MILK CHOC COATING PNUT BUTTER',,,'Y',,0,,5.90,3.70,8.60,3.80 -19027,2500,'Snacks granola bars soft uncoated peanut butter and chocolate chip','GRANOLA BARS SOFT UNCOATED PNUT BUTTER&CHOC CHIP',,,,,0,,5.60,3.40,8.40,3.70 -19029,1900,'Topping SMUCKERS MAGIC SHELL','TOPPING SMUCKERS MAGIC SHELL',,,'Y',,0,,6.25,,, -19030,1900,'Syrup fruit flavored','SYRUP FRUIT FLAV',,,'Y',,0,,6.25,,, -19031,2500,'Snacks oriental mix rice-based','ORIENTAL MIX RICE-BASED',,,'Y',,0,,0.00,,, -19034,2500,'Snacks popcorn air-popped','POPCORN AIR-POPPED',,,'Y',,0,,6.25,2.73,8.37,4.03 -19035,2500,'Snacks popcorn oil-popped microwave regular flavor no trans fat','SNACKS POPCORN OIL-POPPED MICROWAVE REG FLAVOR NO TRANS FAT',,,'Y',,0,,6.25,2.70,8.80,4.00 -19036,2500,'Snacks popcorn cakes','POPCORN CAKES',,,'Y',,0,,6.10,3.00,8.40,4.10 -19038,2500,'Snacks popcorn caramel-coated with peanuts','POPCORN CARAMEL-COATED W/PNUTS',,,'Y',,0,,5.90,3.00,8.50,3.90 -19039,2500,'Snacks popcorn caramel-coated without peanuts','POPCORN CARAMEL-COATED WO/PNUTS',,,'Y',,0,,6.20,2.70,8.80,3.90 -19040,2500,'Snacks popcorn cheese-flavor','POPCORN CHEESE-FLAVOR',,,'Y',,0,,6.30,3.00,8.80,4.00 -19041,2500,'Snacks pork skins plain','PORK SKINS PLAIN',,,'Y',,0,,6.25,4.27,9.02,3.87 -19042,2500,'Snacks potato chips barbecue-flavor','POTATO CHIPS BARBECUE-FLAVOR',,,'Y',,0,,6.10,2.40,8.70,3.60 -19043,2500,'Snacks potato chips sour-cream-and-onion-flavor','POTATO CHIPS SOUR-CREAM-AND-ONION-FLAVOR',,,,,0,,6.30,3.90,8.80,3.90 -19045,2500,'Snacks potato chips made from dried potatoes reduced fat','POTATO CHIPS MADE FROM DRIED POTATOES LT',,,'Y',,0,,6.25,2.80,8.80,4.00 -19046,2500,'Snacks potato chips made from dried potatoes sour-cream and onion-flavor','POTATO CHIPS MADE FR DRIED POTATOES SOUR-CREAM&ONION-FLAVOR',,,,,0,,6.30,3.30,8.80,3.90 -19047,2500,'Snacks pretzels hard plain salted','PRETZELS HARD PLN SALTED',,,'Y',,0,,5.70,3.70,8.70,4.00 -19048,2500,'Snacks pretzels hard confectioners coating chocolate-flavor','PRETZELS HARD CONFECTIONERS COATING CHOCOLATE-FLAVOR',,,'Y',,0,,5.80,3.80,8.70,4.00 -19049,2500,'Snacks M&M MARS COMBOS Snacks Cheddar Cheese Pretzel','SNACKS M&M MARS COMBOS SNACKS CHEDDAR CHS PRETZEL',,,'Y',,0,,6.25,,, -19050,2500,'Snacks pretzels hard whole-wheat including both salted and unsalted','SNACKS PRETZELS HARD WHOLE-WHEAT INCL BOTH SALTED & UNSALTED',,,,,0,,5.80,3.50,8.50,3.70 -19051,2500,'Snacks rice cracker brown rice plain','SNACKS RICE CRACKER BROWN RICE PLN',,,'Y',,0,,5.95,3.41,8.37,4.12 -19052,2500,'Snacks rice cakes brown rice buckwheat','RICE CAKES BROWN RICE BUCKWHEAT',,,,,0,,6.10,3.40,8.40,4.00 -19053,2500,'Snacks rice cakes brown rice sesame seed','RICE CAKES BROWN RICE SESAME SD',,,,,0,,5.90,3.10,8.40,4.10 -19056,2500,'Snacks tortilla chips plain white corn salted','TORTILLA CHIPS PLAIN',,,'Y',,0,,6.20,2.70,8.80,4.00 -19057,2500,'Snacks tortilla chips nacho cheese','Snacks tortilla chips nacho cheese',,,'Y',,0,,6.25,,, -19058,2500,'Snacks tortilla chips ranch-flavor','SNACKS TORTILLA CHIPS RANCH-FLAVOR',,,,,0,,6.25,,, -19059,2500,'Snacks trail mix regular','TRAIL MIX REGULAR',,,,,0,,5.40,3.50,8.40,3.70 -19061,2500,'Snacks trail mix tropical','TRAIL MIX TROPICAL',,,,,0,,0.00,,, -19062,2500,'Snacks trail mix regular with chocolate chips salted nuts and seeds','TRAIL MIX REG W/CHOC CHIPS SALTED NUTS&SEEDS',,,'Y',,0,,5.50,3.50,8.40,3.70 -19063,2500,'Snacks tortilla chips taco-flavor','TORTILLA CHIPS TACO-FLAVOR',,,,,0,,6.20,2.90,8.70,3.90 -19064,1900,'Candies TOOTSIE ROLL chocolate-flavor roll','CANDIES TOOTSIE ROLL CHOCOLATE-FLAVOR ROLL',,,,,0,,6.25,4.00,9.00,4.00 -19065,1900,'Candies ALMOND JOY Candy Bar','CANDIES ALMOND JOY CANDY BAR',,'Hershey Food Corp.',,,0,,,,, -19067,1900,'Candies TWIZZLERS CHERRY BITES','CANDIES TWIZZLERS CHERRY BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19068,1900,'Candies NESTLE BIT-O-HONEY Candy Chews','CANDIES NESTLE BIT-O-HONEY CANDY CHEWS',,'Nestle USA Inc.','Y',,0,,6.38,4.27,8.79,3.87 -19069,1900,'Candies NESTLE BUTTERFINGER Bar','CANDIES NESTLE BUTTERFINGER BAR',,'Nestle USA Inc.','Y',,0,,6.25,4.27,8.79,3.87 -19070,1900,'Candies butterscotch','CANDIES BUTTERSCOTCH',,,'Y',,0,,6.25,4.00,9.00,4.00 -19071,1900,'Candies carob unsweetened','CANDIES CAROB UNSWTND',,,'Y',,0,,6.25,4.00,9.00,4.00 -19074,1900,'Candies caramels','CANDIES CARAMELS',,,'Y',,0,,6.40,4.30,8.60,3.80 -19075,1900,'Candies CARAMELLO Candy Bar','CANDIES CARAMELLO CANDY BAR',,'Hershey Food Corp.',,,0,,,,, -19076,1900,'Candies caramels chocolate-flavor roll','CANDIES CARAMELS CHOCOLATE-FLAVOR ROLL',,,'Y',,0,,6.25,,, -19077,1900,'Baking chocolate unsweetened liquid','BAKING CHOC UNSWTND LIQ',,,,,0,,5.63,1.83,8.40,1.33 -19078,1900,'Baking chocolate unsweetened squares','Baking chocolate unsweetened squares',,,'Y',,0,,,,, -19079,1900,'Candies confectioners coating yogurt','CANDIES CONFECTIONERS COATING YOGURT',,,'Y',,0,,6.25,4.00,9.00,4.00 -19080,1900,'Candies semisweet chocolate','CANDIES SEMISWEET CHOC',,,'Y',,0,,5.63,1.83,8.50,3.40 -19081,1900,'Candies sweet chocolate','CANDIES SWEET CHOCOLATE',,,'Y',,0,,5.63,1.83,8.60,3.40 -19083,1900,'Candies sweet chocolate coated fondant','CANDIES SWT CHOC COATD FONDANT',,,'Y',,0,,5.90,3.10,8.40,3.50 -19084,1900,'Candies HERSHEYS GOLDEN ALMOND SOLITAIRES','CANDIES HERSHEYS GOLDEN ALMOND SOLITAIRES',,'Hershey Food Corp.',,,0,,6.25,,, -19085,1900,'Candies confectioners coating butterscotch','CANDIES CONFECTIONERS COATING BUTTERSCOTCH',,,'Y',,0,,6.38,4.00,9.00,4.00 -19086,1900,'Candies confectioners coating peanut butter','CANDIES CONFECTIONERS COATING PNUT BUTTER',,,'Y',,0,,6.25,4.00,9.00,4.00 -19087,1900,'Candies white chocolate','CANDIES WHITE CHOC','confectioners coating',,'Y',,0,,6.38,4.30,8.80,3.90 -19088,1900,'Ice creams vanilla light','ICE CREAMS VANILLA LT',,,'Y',,0,,6.25,4.00,9.00,4.00 -19089,1900,'Ice creams vanilla rich','ICE CREAMS VANILLA RICH',,,'Y',,0,,6.25,4.00,9.00,4.00 -19090,1900,'Ice creams french vanilla soft-serve','ICE CREAMS FRENCH VANILLA SOFT-SERVE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19091,1900,'Candies YORK Peppermint Pattie','CANDIES YORK PEPPERMINT PATTIE',,'Hershey Food Corp.',,,0,,6.38,3.47,8.37,4.07 -19092,1900,'Candies TWIZZLERS NIBS CHERRY BITS','CANDIES TWIZZLERS NIBS CHERRY BITS',,'Hershey Food Corp.',,,0,,6.25,,, -19093,1900,'Candies SYMPHONY Milk Chocolate Bar','CANDIES SYMPHONY MILK CHOC BAR',,'Hershey Food Corp.',,,0,,,,, -19094,1900,'Desserts flan caramel custard prepared-from-recipe','DESSERTS FLAN CARAMEL CUSTARD PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19095,1900,'Ice creams vanilla','ICE CREAMS VANILLA',,,'Y',,0,,6.25,4.00,9.00,4.00 -19096,1900,'Ice creams vanilla light soft-serve','ICE CREAMS VANILLA LT SOFT-SERVE',,,'Y',,0,,6.40,4.10,8.79,3.80 -19097,1900,'Sherbet orange','SHERBET ORANGE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19098,1900,'Candies 5TH AVENUE Candy Bar','CANDIES 5TH AVENUE CANDY BAR',,'Hershey Food Corp.','Y',,0,,6.38,4.27,8.79,3.87 -19099,1900,'Candies fondant prepared-from-recipe','CANDIES FONDANT PREPARED-FROM-RECIPE',,,'Y',,0,,6.25,,, -19100,1900,'Candies fudge chocolate prepared-from-recipe','CANDIES FUDGE CHOC PREPARED-FROM-RECIPE',,,'Y',,0,,6.25,,, -19101,1900,'Candies fudge chocolate with nuts prepared-from-recipe','CANDIES FUDGE CHOC W/ NUTS PREPARED-FROM-RECIPE',,,'Y',,0,,6.25,,, -19102,1900,'Candies fudge peanut butter prepared-from-recipe','CANDIES FUDGE PNUT BUTTER PREPARED-FROM-RECIPE',,,,,0,,6.25,,, -19103,1900,'Candies fudge vanilla prepared-from-recipe','CANDIES FUDGE VANILLA PREPARED-FROM-RECIPE',,,'Y',,0,,6.25,,, -19104,1900,'Candies fudge vanilla with nuts','CANDIES FUDGE VANILLA W/ NUTS',,,'Y',,0,,6.25,,, -19105,1900,'Candies NESTLE GOOBERS Chocolate Covered Peanuts','CANDIES NESTLE GOOBERS CHOC COVERED PNUTS',,'Nestle USA Inc.',,,0,,6.25,,, -19106,1900,'Candies gumdrops starch jelly pieces','CANDIES GUMDROPS STARCH JELLY PIECES',,,'Y',,0,,6.25,4.00,9.00,4.00 -19107,1900,'Candies hard','CANDIES HARD',,,'Y',,0,,6.25,4.00,9.00,4.00 -19108,1900,'Candies jellybeans','CANDIES JELLYBEANS',,,'Y',,0,,6.25,4.00,9.00,4.00 -19109,1900,'Candies KIT KAT Wafer Bar','CANDIES KIT KAT WAFER BAR',,'Hershey Food Corp.','Y',,0,,6.25,4.00,9.00,4.00 -19110,1900,'Candies KRACKEL Chocolate Bar','CANDIES KRACKEL CHOC BAR',,'Hershey Food Corp.',,,0,,6.25,,, -19111,1900,'Candies NESTLE BABY RUTH Bar','CANDIES NESTLE BABY RUTH BAR',,'Nestle USA Inc.','Y',,0,,6.25,,, -19112,1900,'Candies TWIZZLERS Strawberry Twists Candy','CANDIES TWIZZLERS STRAWBERRY TWISTS CANDY',,'Hershey Food Corp.',,,0,,6.25,,, -19113,1900,'Syrups table blends pancake with butter','SYRUPS TABLE BLENDS PANCAKE W/BUTTER',,,'Y',,0,,6.25,,, -19114,1900,'Ice creams chocolate light','ICE CREAMS CHOC LT',,,'Y',,0,,6.25,,, -19115,1900,'Candies MARS SNACKFOOD US MARS Almond Bar','CANDIES MARS SNACKFOOD US MARS ALMOND BAR',,'Masterfoods USA','Y',,0,,6.25,3.70,8.60,3.80 -19116,1900,'Candies marshmallows','CANDIES MARSHMALLOWS',,,'Y',,0,,5.60,3.90,8.40,3.80 -19117,1900,'Candies halavah plain','CANDIES HALAVAH PLAIN',,,,,0,,5.80,4.00,8.50,3.90 -19118,1900,'Candies NESTLE OH HENRY! Bar','CANDIES NESTLE OH HENRY! BAR',,'Nestle USA Inc.','Y',,0,,6.25,,, -19119,1900,'Candies NESTLE CHUNKY Bar','CANDIES NESTLE CHUNKY BAR',,'Nestle USA Inc.',,,0,,6.25,,, -19120,1900,'Candies milk chocolate','CANDIES MILK CHOC',,,'Y',,0,,6.25,4.00,9.00,4.00 -19121,1900,'Puddings banana dry mix instant prepared with 2% milk','PUDDINGS BANANA DRY MIX INST PREP W/ 2% MILK',,,,,0,,,,, -19122,1900,'Puddings banana dry mix regular prepared with 2% milk','PUDDINGS BANANA DRY MIX REG PREP W/ 2% MILK',,,,,0,,,,, -19123,1900,'Puddings chocolate dry mix instant prepared with 2% milk','PUDDINGS CHOC DRY MIX INST PREP W/ 2% MILK',,,,,0,,,,, -19124,1900,'Baking chocolate mexican squares','BAKING CHOC MEXICAN SQUARES',,,'Y',,0,,6.25,2.00,8.40,3.70 -19125,1900,'Chocolate-flavored hazelnut spread','CHOCOLATE-FLAVORED HAZELNUT SPRD',,,'Y',,0,,6.25,,, -19126,1900,'Candies milk chocolate coated peanuts','CANDIES MILK CHOC COATD PNUTS',,,'Y',,0,,5.80,3.60,8.60,3.70 -19127,1900,'Candies milk chocolate coated raisins','CANDIES MILK CHOC COATD RAISINS',,,'Y',,0,,6.20,3.60,8.70,3.60 -19128,1900,'Syrups table blends pancake reduced-calorie','SYRUPS TABLE BLENDS PANCAKE RED-CAL',,,'Y',,0,,6.25,,,3.70 -19129,1900,'Syrups table blends pancake','SYRUPS TABLE BLENDS PANCAKE',,,'Y',,0,,6.25,3.36,8.37,3.80 -19130,1900,'Candies HERSHEYS POT OF GOLD Almond Bar','CANDIES HERSHEYS POT OF GOLD ALMOND BAR',,'Hershey Food Corp.',,,0,,,,, -19132,1900,'Candies milk chocolate with almonds','CANDIES MILK CHOC W/ALMONDS',,,'Y',,0,,5.90,3.60,8.60,3.70 -19134,1900,'Candies milk chocolate with rice cereal','CANDIES MILK CHOC W/RICE CRL',,,'Y',,0,,6.20,3.70,8.70,3.80 -19135,1900,'Candies MARS SNACKFOOD US MILKY WAY Bar','CANDIES MARS SNACKFOOD US MILKY WAY BAR',,'Masterfoods USA','Y',,0,,6.25,,, -19136,1900,'Candies HERSHEYS SKOR Toffee Bar','CANDIES HERSHEYS SKOR TOFFEE BAR',,'Hershey Food Corp.','Y',,0,,6.25,,, -19137,1900,'Toppings strawberry','TOPPINGS STRAWBERRY',,,'Y',,0,,6.25,3.36,8.37,3.80 -19138,1900,'Candies truffles prepared-from-recipe','CANDIES TRUFFLES PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19139,1900,'Baking chocolate MARS SNACKFOOD US M&Ms Semisweet Chocolate Mini Baking Bits','BAK CHOC MARS SNACKFOOD US M&MS SEMISWT CHOC MINI BAK BITS',,'Masterfoods USA',,,0,,,,, -19140,1900,'Candies MARS SNACKFOOD US M&Ms Peanut Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS PNUT CHOC CANDIES',,'Masterfoods USA','Y',,0,,5.46,3.47,8.37,4.07 -19141,1900,'Candies MARS SNACKFOOD US M&Ms Milk Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS MILK CHOC CANDIES',,'Masterfoods USA','Y',,0,,6.25,,, -19142,1900,'Candies MOUNDS Candy Bar','CANDIES MOUNDS CANDY BAR',,'Hershey Food Corp.','Y',,0,,6.25,,, -19143,1900,'Candies MR. GOODBAR Chocolate Bar','CANDIES MR. GOODBAR CHOC BAR',,'Hershey Food Corp.','Y',,0,,6.25,,, -19144,1900,'Candies NESTLE 100 GRAND Bar','CANDIES NESTLE 100 GRAND BAR',,'Nestle USA Inc.','Y',,0,,6.25,,, -19145,1900,'Candies NESTLE CRUNCH Bar and Dessert Topping','CANDIES NESTLE CRUNCH BAR&DSSRT TOPPING',,'Nestle USA Inc.',,,0,,,,, -19146,1900,'Baking chocolate MARS SNACKFOOD US M&Ms Milk Chocolate Mini Baking Bits','BAKING CHOC MARS SNACKFOOD US M&MS MILK CHOC MINI BAK BITS',,'Masterfoods USA',,,0,,,,, -19147,1900,'Candies peanut bar','CANDIES PEANUT BAR',,,'Y',,0,,5.50,3.50,8.40,3.90 -19148,1900,'Candies peanut brittle prepared-from-recipe','CANDIES PNUT BRITTLE PREPARED-FROM-RECIPE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19149,1900,'Candies NESTLE RAISINETS Chocolate Covered Raisins','CANDIES NESTLE RAISINETS CHOC COVERED RAISINS',,'Nestle USA Inc.',,,0,,,,, -19150,1900,'Candies REESES Peanut Butter Cups','CANDIES REESES PNUT BUTTER CUPS',,'Hershey Food Corp.','Y',,0,,6.25,,, -19151,1900,'Candies REESES PIECES Candy','CANDIES REESES PIECES CANDY',,'Hershey Food Corp.','Y',,0,,6.25,,, -19152,1900,'Candies ROLO Caramels in Milk Chocolate','CANDIES ROLO CARAMELS IN MILK CHOC',,'Hershey Food Corp.','Y',,0,,6.25,,, -19153,1900,'Candies NESTLE AFTER EIGHT Mints','CANDIES NESTLE AFTER EIGHT MINTS',,'Nestle USA Inc.',,,0,,,,, -19154,1900,'Candies sesame crunch','CANDIES SESAME CRUNCH',,,'Y',,0,,5.30,3.50,8.40,3.90 -19155,1900,'Candies MARS SNACKFOOD US SNICKERS Bar','CANDIES MARS SNACKFOOD US SNICKERS BAR',,'Masterfoods USA','Y',,0,,,,, -19156,1900,'Candies MARS SNACKFOOD US STARBURST Fruit Chews Original fruits','CANDIES MARS SNACKFOOD US STARBURST FRUIT CHEWS ORIG FRUIT',,'Masterfoods USA','Y',,0,,6.25,,, -19157,1900,'Candies MARS SNACKFOOD US M&Ms MINIs Milk Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS MINIS MILK CHOC CANDIES',,'Masterfoods USA',,,0,,,,, -19159,1900,'Candies MARS SNACKFOOD US 3 MUSKETEERS Bar','CANDIES MARS SNACKFOOD US 3 MUSKETEERS BAR',,'Masterfoods USA','Y',,0,,6.25,,, -19160,1900,'Candies MARS SNACKFOOD US TWIX Caramel Cookie Bars','CANDIES MARS SNACKFOOD US TWIX CARAMEL COOKIE BARS',,'Masterfoods USA','Y',,0,,6.25,,, -19161,1900,'Candies MARS SNACKFOOD US TWIX Peanut Butter Cookie Bars','CANDIES MARS SNACKFOOD US TWIX PNUT BUTTER COOKIE BARS',,'Masterfoods USA','Y',,0,,6.25,,, -19162,1900,'Candies WHATCHAMACALLIT Candy Bar','CANDIES WHATCHAMACALLIT CANDY BAR',,'Hershey Food Corp.','Y',,0,,6.25,,, -19163,1900,'Chewing gum','CHEWING GUM','bubble gum',,'Y',,0,,6.25,1.82,8.37,3.70 -19164,1900,'Candies SPECIAL DARK Chocolate Bar','CANDIES SPL DK CHOC BAR',,'Hershey Food Corp.',,,0,,,,, -19165,1900,'Cocoa dry powder unsweetened','COCOA DRY PDR UNSWTND',,,'Y',,0,,5.63,1.83,8.37,1.33 -19166,1900,'Cocoa dry powder unsweetened processed with alkali','COCOA DRY PDR UNSWTND PROC W/ALKALI','Dutch cocoa',,'Y',,0,,5.63,1.83,8.37,1.33 -19168,1900,'Desserts egg custard baked prepared-from-recipe','DESSERTS EGG CUSTARD BKD PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19169,1900,'Egg custards dry mix','EGG CUSTARDS DRY MIX',,,,,0,,6.30,4.30,9.00,3.90 -19170,1900,'Egg custards dry mix prepared with whole milk','EGG CUSTARDS DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19171,1900,'Cocoa dry powder unsweetened HERSHEYS European Style Cocoa','COCOA DRY PDR UNSWTND HERSHEYS EUROPEAN STYLE COCOA',,'Hershey Food Corp.',,,0,,,,, -19172,1900,'Gelatin desserts dry mix','GELATIN DSSRT DRY MIX',,,'Y',,0,,5.55,3.90,9.02,3.87 -19173,1900,'Gelatin desserts dry mix prepared with water','GELATIN DSSRT DRY MIX PREP W/ H2O',,,'Y',,0,,5.55,3.90,9.02,3.87 -19175,1900,'Gelatin desserts dry mix reduced calorie with aspartame','GELATIN DSSRT DRY MIX RED CAL W/ ASPRT',,,'Y',,0,,5.55,0.00,0.00,2.47 -19176,1900,'Gelatin desserts dry mix reduced calorie with aspartame prepared with water','GELATIN DSSRT DRY MIX RED CAL W/ ASPRT PREP W/ H2O',,,'Y',,0,,5.55,3.90,9.02,3.87 -19177,1900,'Gelatins dry powder unsweetened','GELATINS DRY PDR UNSWTND',,,'Y',,0,,5.55,3.90,9.02, -19181,1900,'Candies YORK BITES','CANDIES YORK BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19182,1900,'Desserts mousse chocolate prepared-from-recipe','DESSERTS MOUSSE CHOC PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19183,1900,'Puddings chocolate ready-to-eat','PUDDINGS CHOC RTE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19184,1900,'Puddings chocolate dry mix instant','PUDDINGS CHOC DRY MIX INST',,,'Y',,0,,6.25,4.00,9.00,4.00 -19185,1900,'Puddings chocolate dry mix instant prepared with whole milk','PUDDINGS CHOC DRY MIX INST PREP W/ WHL MILK',,,,,0,,0.00,,, -19186,1900,'Desserts apple crisp prepared-from-recipe','DESSERTS APPL CRISP PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19187,1900,'Flan caramel custard dry mix','FLAN CARAMEL CUSTARD DRY MIX',,,,,0,,6.25,1.80,8.40,3.80 -19188,1900,'Puddings chocolate dry mix regular','DESSERTS PUDD CHOC DRY MIX REG',,,'Y',,0,,5.60,1.90,8.40,3.80 -19189,1900,'Puddings chocolate dry mix regular prepared with whole milk','PUDDINGS CHOC DRY MIX INST PREP W/ WHOLE MILK',,,'Y',,0,,5.60,,, -19190,1900,'Puddings chocolate dry mix regular prepared with 2% milk','PUDDINGS CHOC DRY MIX REG PREP W/ 2% MILK',,,,,0,,,,, -19191,1900,'Puddings coconut cream dry mix instant prepared with 2% milk','PUDDINGS COCNT CRM DRY MIX INST PREP W/ 2% MILK',,,,,0,,,,, -19193,1900,'Puddings rice ready-to-eat','Puddings rice ready-to-eat',,,'Y',,0,,6.25,,, -19194,1900,'Puddings rice dry mix','PUDDINGS RICE DRY MIX',,,,,0,,6.00,3.80,8.40,4.00 -19195,1900,'Puddings rice dry mix prepared with whole milk','PUDDINGS RICE DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19198,1900,'Puddings tapioca dry mix','PUDDINGS TAPIOCA DRY MIX',,,,,0,,6.25,3.00,8.40,3.90 -19199,1900,'Puddings tapioca dry mix prepared with whole milk','PUDDINGS TAPIOCA DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19201,1900,'Puddings vanilla ready-to-eat','PUDDINGS VANILLA RTE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19202,1900,'Puddings vanilla dry mix instant','PUDDINGS VANILLA DRY MIX INST',,,'Y',,0,,6.25,4.00,9.00,4.00 -19203,1900,'Puddings vanilla dry mix instant prepared with whole milk','PUDDINGS VANILLA DRY MIX INST PREP W/ WHL MILK',,,,,0,,0.00,,, -19204,1900,'Puddings lemon dry mix instant prepared with 2% milk','PUDDINGS LEMON DRY MIX INST PREP W/ 2% MILK',,,,,0,,,,, -19205,1900,'Egg custards dry mix prepared with 2% milk','EGG CUSTARDS DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19206,1900,'Puddings vanilla dry mix regular','PUDDINGS VANILLA DRY MIX REG',,,'Y',,0,,6.25,4.00,9.00,4.00 -19207,1900,'Puddings vanilla dry mix regular prepared with whole milk','PUDDINGS VANILLA DRY MIX REG PREP W/ WHL MILK',,,'Y',,0,,6.25,,, -19208,1900,'Puddings rice dry mix prepared with 2% milk','PUDDINGS RICE DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19209,1900,'Puddings tapioca dry mix prepared with 2% milk','PUDDINGS TAPIOCA DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19212,1900,'Puddings vanilla dry mix regular prepared with 2% milk','PUDDINGS VANILLA DRY MIX REG PREP W/ 2% MILK',,,,,0,,,,, -19213,1900,'Rennin chocolate dry mix prepared with 2% milk','RENNIN CHOC DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19214,1900,'Rennin vanilla dry mix prepared with 2% milk','RENNIN VANILLA DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19216,1900,'Candies praline prepared-from-recipe','CANDIES PRALINE PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19217,1900,'Frozen novelties ice type fruit no sugar added','FROZEN NOVELTIES ICE TYPE FRUIT NO SUGAR ADDED',,,,,0,,5.60,3.90,9.00,3.50 -19218,1900,'Puddings tapioca ready-to-eat','PUDDINGS TAPIOCA RTE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19219,1900,'Puddings coconut cream dry mix regular prepared with 2% milk','PUDDINGS COCNT CRM DRY MIX REG PREP W/ 2% MILK',,,,,0,,,,, -19220,1900,'Desserts rennin chocolate dry mix','DESSERTS RENNIN CHOC DRY MIX',,,,,0,,5.60,2.20,8.37,3.60 -19221,1900,'Rennin chocolate dry mix prepared with whole milk','RENNIN CHOC DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19222,1900,'Desserts rennin vanilla dry mix','DESSERTS RENNIN VANILLA DRY MIX',,,,,0,,5.60,3.90,9.00,3.90 -19223,1900,'Rennin vanilla dry mix prepared with whole milk','RENNIN VANILLA DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19225,1900,'Desserts rennin tablets unsweetened','DESSERTS RENNIN TABLETS UNSWTND',,,,,0,,6.25,4.00,9.00,4.00 -19226,1900,'Frostings chocolate creamy ready-to-eat','FROSTINGS CHOC CREAMY RTE',,,'Y',,0,,5.60,1.80,8.80,3.80 -19227,1900,'Frostings coconut-nut ready-to-eat','FROSTINGS COCONUT-NUT RTE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19228,1900,'Frostings cream cheese-flavor ready-to-eat','FROSTINGS CRM CHEESE-FLAVOR RTE',,,,,0,,5.80,4.10,8.80,3.90 -19230,1900,'Frostings vanilla creamy ready-to-eat','FROSTINGS VANILLA CREAMY RTE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19231,1900,'Flan caramel custard dry mix prepared with 2% milk','FLAN CARAMEL CUSTARD DRY MIX PREP W/ 2% MILK',,,,,0,,,,, -19232,1900,'Flan caramel custard dry mix prepared with whole milk','FLAN CARAMEL CUSTARD DRY MIX PREP W/ WHL MILK',,,,,0,,,,, -19233,1900,'Puddings vanilla ready-to-eat fat free','PUDDINGS VANILLA RTE FAT FREE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19234,1900,'Puddings tapioca ready-to-eat fat free','PUDDINGS TAPIOCA RTE FAT FREE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19235,1900,'Puddings chocolate ready-to-eat fat free','PUDDINGS CHOC RTE FAT FREE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19236,1900,'Candies HERSHEYS MILK CHOCOLATE WITH ALMOND BITES','CANDIES HERSHEYS MILK CHOC W/ ALMOND BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19238,1900,'Candies REESES BITES','CANDIES REESES BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19239,1900,'Candies REESES NUTRAGEOUS Candy Bar','CANDIES REESES NUTRAGEOUS CANDY BAR',,'Hershey Food Corp.',,,0,,,,, -19240,1900,'Frostings chocolate creamy dry mix','FROSTINGS CHOC CREAMY DRY MIX',,,,,0,,5.60,1.80,8.80,3.70 -19241,1900,'Frostings chocolate creamy dry mix prepared with butter','FROSTINGS CHOC CREAMY DRY MIX PREP W/ BUTTER',,,,,0,,,,, -19243,1900,'Candies HEATH BITES','CANDIES HEATH BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19244,1900,'Frostings vanilla creamy dry mix','FROSTINGS VANILLA CREAMY DRY MIX',,,,,0,,6.25,3.46,8.80,3.90 -19246,1900,'Frostings white fluffy dry mix','FROSTINGS WHITE FLUFFY DRY MIX',,,,,0,,6.10,4.30,8.60,3.80 -19247,1900,'Frostings white fluffy dry mix prepared with water','FROSTINGS WHITE FLUFFY DRY MIX PREP W/H2O',,,,,0,,0.00,,, -19248,1900,'Candies HERSHEYS ALMOND JOY BITES','CANDIES HERSHEYS ALMOND JOY BITES',,'Hershey Food Corp.',,,0,,6.25,,, -19249,1900,'Candies HERSHEY REESESTICKS crispy wafers peanut butter milk chocolate','CANDIES HERSHEY REESESTICKS CRISPY WAFERS PNUT BUT MILK CHOC',,'Hershey Food Corp.','Y',,0,,6.25,,, -19250,1900,'Candies HERSHEY KIT KAT BIG KAT Bar','CANDIES HERSHEY KIT KAT BIG KAT BAR',,'Hershey Food Corp.',,,0,,6.25,,, -19252,1900,'Candies REESES FAST BREAK milk chocolate peanut butter and soft nougats','CANDIES REESES FAST BREAK MILK CHOC PNT BTR & SFT NUGTS',,'Hershey Food Corp.',,,0,,6.25,,, -19254,1900,'Candies MARS SNACKFOOD US DOVE Milk Chocolate','CANDIES MARS SNACKFOOD US DOVE MILK CHOC',,'Masterfoods USA',,,0,,,,, -19255,1900,'Candies MARS SNACKFOOD US DOVE Dark Chocolate','CANDIES MARS SNACKFOOD US DOVE DK CHOC',,'Masterfoods USA',,,0,,,,, -19256,1900,'Candies MARS SNACKFOOD US MILKY WAY Caramels milk chocolate covered','CANDIES MARS SNACKFOOD US MILKYWAYCARAML MILKCHOCOV',,'Masterfoods USA',,,0,,,,, -19258,1900,'Candies MARS SNACKFOOD US MILKY WAY Caramels. dark chocolate covered','CANDIES MARS SNACKFOOD US MILKY WAY CARML. DKCHOCCOV',,'Masterfoods USA',,,0,,,,, -19260,1900,'Ice creams vanilla light no sugar added','ICE CREAMS VANILLA LT NO SUGAR ADDED',,,'Y',,0,,6.25,4.00,9.00,4.00 -19263,1900,'Frozen novelties fruit and juice bars','FROZEN NOVELTIES FRUIT & JUC BARS',,,'Y',,0,,6.25,4.00,9.00,4.00 -19265,1900,'Ice creams chocolate light no sugar added','ICE CREAMS CHOC LT NO SUGAR ADDED',,,'Y',,0,,6.25,,, -19268,1900,'Candies dark chocolate coated coffee beans','CANDIES DK CHOC COATD COFFEE BNS',,,,,0,,6.25,4.00,9.00,4.00 -19269,2500,'Snacks GENERAL MILLS BETTY CROCKER Fruit Roll Ups berry flavored with vitamin C','SNACKS GENERAL MILLS BETTY CROCKER FRT RL UPS BRY FLV W/VT C',,,,,0,,,4.00,9.00,4.00 -19270,1900,'Ice creams chocolate','ICE CREAMS CHOC',,,'Y',,0,,6.10,3.60,8.80,3.70 -19271,1900,'Ice creams strawberry','ICE CREAMS STRAWBERRY',,,,,0,,6.40,4.10,8.79,3.80 -19272,2500,'Snacks FARLEY CANDY FARLEY Fruit Snacks with vitamins A C and E','SNACKS FARLEY CANDY FARLEY FRUIT SNACKS W/VITAMINS A C &E',,,,,0,,,4.00,9.00,4.00 -19273,2500,'Snacks SUNKIST SUNKIST Fruit Roll strawberry with vitamins A C and E','SNACKS SUNKIST SUNKIST FRUIT ROLL STRAWBERRY W/VITMNS A C &E',,,,,0,,,4.00,9.00,4.00 -19274,2500,'Snacks fruit leather pieces with vitamin C','SNACKS FRUIT LEATHER PIECES W/VIT C',,,,,0,,,,, -19279,1900,'Candies milk chocolate coated coffee beans','CANDIES MILK CHOC COATD COFFEE BNS',,,'Y',,0,,,,, -19280,1900,'Frozen novelties ice type lime','FROZEN NOVELTIES ICE TYPE LIME',,,'Y',,0,,6.25,3.36,8.37,3.90 -19281,1900,'Frozen novelties ice type italian restaurant-prepared','FROZEN NOVELTIES ICE TYPE ITALIAN REST-PREP',,,,,0,,6.25,3.36,8.37,3.90 -19283,1900,'Frozen novelties ice type pop','FROZEN NOVELTIES ICE TYPE POP',,,'Y',,0,,6.25,4.00,9.00,4.00 -19292,1900,'Candies MARS SNACKFOOD US M&Ms Crispy Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS CRISPY CHOC CANDIES',,'Masterfoods USA',,,0,,,,, -19293,1900,'Frozen yogurts vanilla soft-serve','FROZEN YOGURTS VANILLA SOFT-SERVE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19294,1900,'Fruit butters apple','FRUIT BUTTERS APPLE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19295,1900,'Candies MARS SNACKFOOD US SNICKERS MUNCH bar','CANDIES MARS SNACKFOOD US SNICKERS MUNCH BAR',,'Masterfoods USA',,,0,,,,, -19296,1900,'Honey','HONEY',,,'Y',,0,,6.25,3.36,8.37,3.68 -19297,1900,'Jams and preserves','JAMS AND PRESERVES',,,'Y',,0,,6.25,4.00,9.00,4.00 -19300,1900,'Jellies','JELLIES',,,'Y',,0,,6.25,3.36,8.37,3.80 -19301,1900,'Candies fudge chocolate marshmallow with nuts prepared-by-recipe','CANDIES FUDGE CHOC MARSHMLLW W/ NUTS PREPARED-BY-RECIPE',,,,,0,,,,, -19302,1900,'Candies MARS SNACKFOOD US SNICKERS Almond bar','CANDIES MARS SNACKFOOD US SNICKERS ALMOND BAR',,'Masterfoods USA',,,0,,,,, -19303,1900,'Marmalade orange','MARMALADE ORANGE',,,'Y',,0,,6.25,3.40,8.40,3.70 -19304,1900,'Molasses','MOLASSES',,,'Y',,0,,6.25,,8.37,3.87 -19306,1900,'Candies MARS SNACKFOOD US POPABLES SNICKERS Brand Bite Size Candies','CANDIES MARS SNACKFOOD US POP SNICKERS BITE SIZE CANDIES',,'Masterfoods USA',,,0,,,,, -19307,1900,'Candies MARS SNACKFOOD US POPABLES MILKY WAY Brand Bite Size Candies','CANDIES MARS SNACKFOOD US POP MILKY WAY BITE SIZE',,'Masterfoods USA',,,0,,,,, -19308,1900,'Candies MARS SNACKFOOD US POPABLES 3 MUSKETEERS Brand Bite Size Candies','CANDIES MARS SNACK US POPABLES 3 MUSKETEERS BITE SIZE',,'Masterfoods USA',,,0,,,,, -19309,1900,'Candies MARS SNACKFOOD US STARBURST Fruit Chews Fruit and Creme','CANDIES MARS SNACK US STARBURST FRUIT CHEWS FRT&CREM',,'Masterfoods USA',,,0,,,,, -19310,1900,'Pectin unsweetened dry mix','PECTIN UNSWTND DRY MIX',,,,,0,,6.25,,,3.60 -19312,1900,'Pie fillings apple canned','PIE FILLINGS APPL CND',,,'Y',,0,,6.25,3.40,8.40,3.80 -19313,1900,'Candies MARS SNACKFOOD US STARBURST Fruit Chews Tropical fruits','CANDIES MARS SNACKFOOD US STARBURST FRUIT CHEWS TROP',,'Masterfoods USA',,,0,,,,, -19314,1900,'Pie fillings canned cherry','PIE FILLINGS CND CHERRY',,,,,0,,6.25,4.00,9.00,4.00 -19315,1900,'Candies MARS SNACKFOOD US STARBURST Sour Fruit Chews','CANDIES MARS SNACKFOOD US STARBURST SOUR FRUIT CHEWS',,'Masterfoods USA',,,0,,,,, -19318,1900,'Puddings banana dry mix instant','PUDDINGS BANANA DRY MIX INST',,,,,0,,6.40,4.20,8.80,3.90 -19319,1900,'Puddings banana dry mix instant prepared with whole milk','PUDDINGS BANANA DRY MIX INST PREP W/ WHL MILK',,,,,0,,,,, -19320,1900,'Puddings banana dry mix regular','PUDDINGS BANANA DRY MIX REG',,,,,0,,6.20,3.50,8.40,3.90 -19321,1900,'Puddings banana dry mix regular prepared with whole milk','PUDDINGS BANANA DRY MIX REG PREP W/ WHL MILK',,,,,0,,,,, -19322,1900,'Puddings coconut cream dry mix instant','DESSERTS PUDD COCNT CRM DRY MIX INST',,,'Y',,0,,5.40,3.60,8.60,3.90 -19323,1900,'Puddings coconut cream dry mix instant prepared with whole milk','PUDDINGS COCNT CRM DRY MIX INST PREP W/ WHL MILK',,,,,0,,,,, -19324,1900,'Puddings coconut cream dry mix regular','PUDDINGS COCNT CRM DRY MIX REG',,,'Y',,0,,6.25,4.00,9.00,4.00 -19325,1900,'Puddings coconut cream dry mix regular prepared with whole milk','PUDDINGS COCNT CRM DRY MIX REG PREP W/ WHL MILK',,,,,0,,,,, -19326,1900,'Candies MARS SNACKFOOD US COCOAVIA Chocolate Bar','CANDIES MARS SNACKFOOD US COCOAVIA CHOC BAR',,'Masterfoods USA',,,0,,,,, -19327,1900,'Candies MARS SNACKFOOD US COCOAVIA Blueberry and Almond Chocolate Bar','CANDIES MARS SNACK US COCOAVIA BLUEBERRY & ALMOND CHOC BAR',,'Masterfoods USA',,,0,,,,, -19328,1900,'Candies MARS SNACKFOOD US COCOAVIA Crispy Chocolate Bar','CANDIES MARS SNACKFOOD US COCOAVIA CRISPY CHOC BAR',,'Masterfoods USA',,,0,,,,, -19330,1900,'Puddings lemon dry mix instant','PUDDINGS LEMON DRY MIX INST',,,,,0,,6.40,4.20,8.80,3.90 -19331,1900,'Puddings lemon dry mix instant prepared with whole milk','PUDDINGS LEMON DRY MIX INST PREP W/ WHL MILK',,,,,0,,,,, -19332,1900,'Puddings lemon dry mix regular','PUDDINGS LEMON DRY MIX REG',,,,,0,,6.25,3.50,8.80,3.90 -19333,1900,'Pudding lemon dry mix regular prepared with sugar egg yolk and water','PUDDING LEMON DRY MIX REG PREP W/ SUGAR EGG YOLK & H2O',,,,,0,,,,, -19334,1900,'Sugars brown','SUGARS BROWN',,,'Y',,0,,6.25,4.00,0.00,3.87 -19335,1900,'Sugars granulated','SUGARS GRANULATED','sucrose',,'Y',,0,,6.25,,,3.87 -19336,1900,'Sugars powdered','SUGARS POWDERED',,,'Y',,0,,6.25,3.50,8.40,3.90 -19337,1900,'Sweeteners tabletop aspartame EQUAL packets','SWEETENERS TABLETOP ASPRT EQ PACKETS',,'Merisant Company','Y',,0,,6.25,4.00,9.00,4.00 -19340,1900,'Sugars maple','SUGARS MAPLE',,,'Y',,0,,6.25,3.36,8.37,3.87 -19345,1900,'Syrups chocolate HERSHEYS Genuine Chocolate Flavored Lite Syrup','SYRUPS CHOC HERSHEYS GENUINE CHOC FLAV LITE SYRUP',,'Hershey Food Corp.','Y',,0,,,4.00,9.00,4.00 -19348,1900,'Syrups chocolate fudge-type','SYRUPS CHOC FUDGE-TYPE',,,'Y',,0,,6.25,4.00,9.00,4.00 -19349,1900,'Syrups corn dark','SYRUPS CORN DK',,,'Y',,0,,6.25,0.00,0.00,3.68 -19350,1900,'Syrups corn light','SYRUPS CORN LT',,,'Y',,0,,6.25,0.00,0.00,3.68 -19351,1900,'Syrups corn high-fructose','SYRUPS CORN HIGH-FRUCTOSE',,,'Y',,0,,6.25,,,3.70 -19352,1900,'Syrups malt','SYRUPS MALT',,,,,0,,6.25,3.87,8.37,4.12 -19353,1900,'Syrups maple','SYRUPS MAPLE',,,'Y',,0,,6.25,3.36,8.37,3.87 -19355,1900,'Syrups sorghum','SYRUPS SORGHUM',,,'Y',,0,,6.25,,,3.87 -19359,1900,'Candies MARS SNACKFOOD US SNICKERS CRUNCHER','CANDIES MARS SNACKFOOD US SNICKERS CRUNCHER',,'Masterfoods USA',,,0,,,,, -19360,1900,'Syrups table blends pancake with 2% maple','SYRUPS TABLE BLENDS PANCAKE W/2% MAPLE',,,'Y',,0,,6.25,3.36,8.37,3.80 -19362,1900,'Syrups table blends corn refiner and sugar','SYRUPS TABLE BLENDS CORN REFINER &SUGAR',,,,,0,,6.25,3.36,8.37,3.80 -19363,1900,'Candies MARS SNACKFOOD US SKITTLES Wild Berry Bite Size Candies','CANDIES MARS SNACKFOOD US SKITTLES WILD BERRY BITE SIZE',,'Masterfoods USA',,,0,,,,, -19364,1900,'Toppings butterscotch or caramel','TOPPINGS BUTTERSCOTCH OR CARAMEL',,,'Y',,0,,6.38,4.27,8.80,3.70 -19365,1900,'Toppings marshmallow cream','TOPPINGS MARSHMLLW CRM',,,'Y',,0,,0.00,4.00,9.00,4.00 -19366,1900,'Toppings pineapple','TOPPINGS PINEAPPLE',,,'Y',,0,,6.25,3.36,8.37,3.80 -19367,1900,'Toppings nuts in syrup','TOPPINGS NUTS IN SYRUP',,,'Y',,0,,6.25,4.00,9.00,4.00 -19368,1900,'Candies MARS SNACKFOOD US SKITTLES Tropical Bite Size Candies','CANDIES MARS SNACKFOOD US SKITTLES TROPICAL BITE SIZE CAND',,'Masterfoods USA',,,0,,,,, -19369,1900,'Candies MARS SNACKFOOD US SKITTLES Sours Original','CANDIES MARS SNACKFOOD US SKITTLES SOURS ORIGINAL',,'Masterfoods USA',,,0,,,,, -19370,1900,'Candies MARS SNACKFOOD US SKITTLES Original Bite Size Candies','CANDIES MARS SNACKFOOD US SKITTLES ORIGINAL BITE SIZE CAND',,'Masterfoods USA','Y',,0,,,,, -19371,1900,'Frostings vanilla creamy dry mix prepared with margarine','FROSTINGS VANILLA CREAMY DRY MIX PREP W/ MARGARINE',,,,,0,,,,, -19372,1900,'Frostings chocolate creamy dry mix prepared with margarine','FROSTINGS CHOC CREAMY DRY MIX PREP W/ MARGARINE',,,,,0,,,,, -19375,1900,'Frostings glaze prepared-from-recipe','FROSTINGS GLAZE PREPARED-FROM-RECIPE',,,,,0,,,,, -19379,1900,'Candies fudge chocolate marshmallow prepared-from-recipe','CANDIES FUDGE CHOC MARSHMLLW PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19382,1900,'Candies taffy prepared-from-recipe','CANDIES TAFFY PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19383,1900,'Candies toffee prepared-from-recipe','CANDIES TOFFEE PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19384,1900,'Candies divinity prepared-from-recipe','CANDIES DIVINITY PREPARED-FROM-RECIPE',,,,,0,,0.00,,, -19387,1900,'Frozen novelties ice type pineapple-coconut','FROZEN NOVELTIES ICE TYPE PINEAPPLE-COCONUT',,,,,0,,6.25,3.40,8.40,3.80 -19393,1900,'Frozen yogurts chocolate soft-serve','FROZEN YOGURTS CHOC SOFT-SERVE',,,,,0,,6.20,3.60,8.70,3.70 -19400,2500,'Snacks banana chips','BANANA CHIPS',,,'Y',,0,,6.25,3.40,8.60,3.80 -19401,2500,'Snacks cornnuts barbecue-flavor','CORNNUTS BARBECUE-FLAVOR',,,,,0,,6.20,2.70,8.70,4.00 -19403,2500,'Snacks crisped rice bar almond','CRISPED RICE BAR ALMOND',,,,,0,,5.60,3.50,8.60,4.00 -19404,2500,'Snacks granola bars soft uncoated chocolate chip','GRANOLA BARS SOFT UNCOATED CHOC CHIP',,,'Y',,0,,5.80,3.40,8.40,3.70 -19405,2500,'Snacks granola bars soft uncoated chocolate chip graham and marshmallow','GRANOLA BARS SOFT UNCOATED CHOC CHIP GRAHAM&MARSHMLLW',,,,,0,,5.80,3.40,8.40,3.90 -19406,2500,'Snacks granola bars soft uncoated nut and raisin','GRANOLA BARS SOFT UNCOATED NUT&RAISIN',,,,,0,,5.70,3.50,8.40,4.00 -19407,2500,'Snacks beef sticks smoked','SNACKS BF STKS SMOKED',,,,,0,,6.20,4.10,9.00,2.90 -19408,2500,'Snacks pork skins barbecue-flavor','PORK SKINS BARBECUE-FLAVOR',,,,,0,,6.25,4.27,9.02,3.87 -19409,1900,'Frostings glaze chocolate prepared-from-recipe with butter NFSMI Recipe No. C-32','FROSTING GLAZ CHC PREP-FRM-RCIP W/ BUTR NFSMI RECIP NO. C-32',,,,,0,,,,, -19410,2500,'Snack potato chips made from dried potatoes plain','POTATO CHIPS MADE FROM DRIED POTATOES PLN',,,'Y',,0,,6.25,2.80,8.80,4.00 -19411,2500,'Snacks potato chips plain salted','POTATO CHIPS PLAIN SALTED',,,'Y',,0,,6.25,2.80,8.80,4.00 -19412,2500,'Snacks potato chips made from dried potatoes cheese-flavor','POTATO CHIPS MADE FROM DRIED POTATOES CHEESE-FLAVOR',,,,,0,,6.30,3.30,8.80,4.00 -19413,2500,'Snacks rice cakes brown rice corn','SNACKS RICE CAKES BROWN RICE CORN',,,,,0,,6.10,3.00,8.40,4.10 -19414,2500,'Snacks rice cakes brown rice multigrain','RICE CAKES BROWN RICE MULTIGRAIN',,,,,0,,5.90,3.40,8.40,4.10 -19415,2500,'Snacks potato sticks','SNACKS POTATO STKS',,,'Y',,0,,6.25,2.78,8.37,4.03 -19416,2500,'Snacks rice cakes brown rice rye','RICE CAKES BROWN RICE RYE',,,,,0,,5.90,3.30,8.40,4.10 -19418,2500,'Snacks sesame sticks wheat-based salted','SESAME STKS WHEAT-BASED SALTED',,,'Y',,0,,5.70,3.70,8.70,3.90 -19419,2500,'Snacks corn cakes','CORN CAKES',,,,,0,,6.10,3.10,8.40,4.10 -19420,2500,'Snacks granola bars hard peanut butter','GRANOLA BARS HARD PNUT BUTTER',,,,,0,,5.60,3.40,8.70,3.90 -19421,2500,'Snacks potato chips cheese-flavor','POTATO CHIPS CHEESE-FLAVOR',,,,,0,,6.30,3.00,8.80,4.00 -19422,2500,'Snacks potato chips reduced fat','SNACKS POTATO CHIPS RED FAT',,,'Y',,0,,6.25,2.80,8.80,4.00 -19423,2500,'Snacks potato chips fat-free made with olestra','SNACKS POTATO CHIPS FAT-FREE MADE W/OLESTRA',,,'Y',,0,,6.25,,, -19424,2500,'Snacks tortilla chips nacho-flavor reduced fat','SNACKS TORTILLA CHIPS NACHO-FLAVOR RED FAT',,,,,0,,6.30,2.90,8.80,4.00 -19433,2500,'Tortilla chips low fat baked without fat','TORTILLA CHIPS LOFAT BKD WO/FAT',,,'Y',,0,,5.70,4.10,8.80,4.40 -19434,2500,'Cheese puffs and twists corn based baked low fat','CHEESE PUFFS & TWISTS CORN BSD BKD LOFAT',,,'Y',,0,,6.50,,, -19435,2500,'Snacks granola bar fruit-filled nonfat','SNACKS GRANOLA BAR FRUIT-FILLED NONFAT',,,'Y',,0,,,,, -19436,2500,'Popcorn sugar syrup/caramel fat-free','POPCORN SUGAR SYRUP/CARAMEL FAT-FREE',,,'Y',,0,,6.50,,, -19437,2500,'Snacks potato chips fat free salted','POTATO CHIPS FAT FREE SALTED',,,'Y',,0,,6.50,,, -19438,2500,'Snacks KELLOGG KELLOGGS RICE KRISPIES TREATS Squares','SNACKS KELLOGG KELLOGGS RICE KRISPIES TREATS SQUARES',,,'Y',,0,,6.50,,, -19439,2500,'Snacks KELLOGG KELLOGGS Low Fat Granola Bar Crunchy Almond/Brown Sugar','SNACKS KELLOGGS LOFAT GRANOLA BAR CRUNCHY ALMD/BRN SUGAR',,,,,0,,,,, -19440,2500,'Snacks M&M MARS KUDOS Whole Grain Bar chocolate chip','SNACKS M&M MARS KUDOS WHL GRAIN BARS CHOC CHIP',,,,,0,,,,, -19441,2500,'Snacks KELLOGG KELLOGGS NUTRI-GRAIN Cereal Bars fruit','SNACKS KELLOGG KELLOGGS NUTRI-GRAIN CRL BARS FRUIT',,'Kellogg Co.','Y',,0,,6.50,,, -19444,2500,'Snacks tortilla chips low fat made with olestra nacho cheese','SNACKS TORTILLA CHIPS LOFAT MADE W/OLESTRA NACHO CHS',,,'Y',,0,,6.50,,, -19445,2500,'Snacks potato chips made from dried potatoes fat-free made with olestra','SNACKS POTATO CHIPS FRM DRIED POTATOES FAT-FREE W/ OLESTRA',,,'Y',,0,,6.20,,, -19524,2500,'Snacks taro chips','TARO CHIPS',,,'Y',,0,,6.25,2.80,8.80,4.00 -19701,1900,'Candies semisweet chocolate made with butter','CANDIES SEMISWEET CHOC MADE W/BUTTER',,,,,0,,5.63,1.83,8.50,3.40 -19702,1900,'Gelatin desserts dry mix with added ascorbic acid sodium-citrate and salt','GELATIN DSSRT DRY MIX W/ ADDED VIT C SODIUM-CITRATE & SALT',,,,,0,,5.55,3.90,9.02,3.87 -19703,1900,'Gelatin desserts dry mix reduced calorie with aspartame added phosphorus potassium sodium vitamin C','GELATIN DSSRT DRY MIX RED CAL W/ ASPRT ADDED P K NA VIT C',,,,,0,,5.55,3.90,9.02,3.87 -19704,1900,'Gelatin desserts dry mix reduced calorie with aspartame no added sodium','GELATIN DSSRT DRY MIX RED CAL W/ ASPRT NO ADDED NA',,,,,0,,5.55,3.90,9.02,3.87 -19705,1900,'Puddings banana dry mix instant with added oil','PUDDINGS BANANA DRY MIX INST W/ ADDED OIL',,,,,0,,6.40,4.20,8.80,3.90 -19706,1900,'Puddings banana dry mix regular with added oil','PUDDINGS BANANA DRY MIX REG W/ ADDED OIL',,,,,0,,6.20,3.50,8.40,3.90 -19708,1900,'Puddings lemon dry mix regular with added oil potassium sodium','PUDDINGS LEMON DRY MIX REG W/ ADDED OIL K NA',,,,,0,,6.25,3.50,8.80,3.90 -19709,1900,'Puddings tapioca dry mix with no added salt','PUDDINGS TAPIOCA DRY MIX W/ NO ADDED SALT',,,,,0,,6.25,3.00,8.40,3.90 -19710,1900,'Puddings vanilla dry mix regular with added oil','PUDDINGS VANILLA DRY MIX REG W/ ADDED OIL',,,,,0,,6.25,3.50,8.40,3.90 -19719,1900,'Jams and preserves apricot','JAMS&PRESERVES APRICOT',,,'Y',,0,,6.25,3.36,8.37,3.70 -19720,1900,'Syrups table blends pancake with 2% maple with added potassium','SYRUPS TABLE BLENDS PANCAKE W/2% MAPLE W/ K',,,,,0,,6.25,3.36,8.37,3.80 -19800,2500,'Snacks corn cakes very low sodium','CORN CAKES VERY LO NA',,,,,0,,6.10,3.10,8.40,4.10 -19802,2500,'Snacks corn-based extruded puffs or twists cheese-flavor unenriched','SNACKS CORN-BASED EXTRDD PUFFS OR TWISTS CHEESE-FLAVOR UNENR',,,,,0,,6.30,4.00,8.80,4.10 -19804,2500,'Snacks corn-based extruded chips barbecue-flavor made with enriched masa flour','SNACKS CORN-BASE EXTRUD CHIPS BARBECUE-FLAVOR W/ENR MASA FLR',,,,,0,,6.25,,, -19806,2500,'Snacks popcorn air-popped (Unsalted)','SNACKS POPCORN AIR-POPPED (UNSALTED)',,,,,0,,6.25,2.73,8.37,4.03 -19807,2500,'Snacks popcorn oil-popped white popcorn salt added','SNACKS POPCORN OIL-POPPED WHITE POPCORN SALT ADDED',,,,,0,,6.25,2.70,8.80,4.00 -19809,2500,'Snacks potato chips plain made with partially hydrogenated soybean oil salted','POTATO CHIPS PLN MADE W/PART HYDR SOYBN OIL SALTED',,,,,0,,6.25,2.80,8.80,4.00 -19810,2500,'Snacks potato chips plain made with partially hydrogenated soybean oil unsalted','POTATO CHIPS PLN MADE W/PART HYDR SOYBN OIL UNSALTED',,,,,0,,6.25,2.80,8.80,4.00 -19811,2500,'Snacks potato chips plain unsalted','POTATO CHIPS PLN UNSALTED',,,'Y',,0,,6.25,2.80,8.80,4.00 -19812,2500,'Snacks pretzels hard plain made with unenriched flour salted','PRETZELS HARD PLN MADE W/UNENR FLR SALTED',,,,,0,,5.70,3.70,8.70,4.00 -19813,2500,'Snacks pretzels hard plain made with unenriched flour unsalted','PRETZELS HARD PLN MADE W/UNENR FLR UNSALTED',,,,,0,,5.70,3.70,8.70,4.00 -19814,2500,'Snacks pretzels hard plain made with enriched flour unsalted','SNACKS PRETZELS HARD PLN MADE W/ ENR FLR UNSALTED',,,'Y',,0,,5.70,3.70,8.70,4.00 -19816,2500,'Snacks rice cakes brown rice plain unsalted','RICE CAKES BROWN RICE PLN UNSALTED',,,'Y',,0,,5.95,3.41,8.37,4.12 -19817,2500,'Snacks rice cakes brown rice buckwheat unsalted','RICE CAKES BROWN RICE BUCKWHEAT UNSALTED',,,,,0,,6.10,3.40,8.40,4.00 -19818,2500,'Snacks rice cakes brown rice multigrain unsalted','RICE CAKES BROWN RICE MULTIGRAIN UNSALTED',,,,,0,,5.90,3.40,8.40,4.10 -19819,2500,'Snacks rice cakes brown rice sesame seed unsalted','RICE CAKES BROWN RICE SESAME SD UNSALTED',,,,,0,,5.90,3.40,8.40,4.10 -19820,2500,'Snacks sesame sticks wheat-based unsalted','SESAME STKS WHEAT-BASED UNSALTED',,,,,0,,5.70,3.70,8.70,3.90 -19821,2500,'Snacks trail mix regular unsalted','TRAIL MIX REG UNSALTED',,,,,0,,5.40,3.50,8.40,3.70 -19822,2500,'Snacks trail mix regular with chocolate chips unsalted nuts and seeds','TRAIL MIX REG W/CHOC CHIPS UNSALTED NUTS&SEEDS',,,,,0,,5.50,3.50,8.40,3.70 -19823,2500,'Potato chips without salt reduced fat','POTATO CHIPS WO/SALT RED FAT',,,'Y',,0,,6.50,,, -19833,2500,'Snacks tortilla chips low fat unsalted','TORTILLA CHIPS LOFAT UNSALTED',,,'Y',,0,,6.50,,, -19856,1900,'Frozen novelties juice type POPSICLE SCRIBBLERS','FROZEN NOVELTIES JUC TYPE POPSICLE SCRIBBLERS',,'Good Humor - Breyers Ice Cream',,,0,,6.25,4.00,9.00,4.00 -19857,2500,'Snacks tortilla chips nacho-flavor made with enriched masa flour','SNACKS TORTILLA CHIPS NACHO-FLAVOR MADE W/ENR MASA FLR',,,,,0,,6.50,,, -19858,1900,'Candies sugar-coated almonds','CANDIES SUGAR-COATED ALMONDS',,,'Y',,0,,5.18,3.90,9.02,3.87 -19860,1900,'Cocoa dry powder hi-fat or breakfast processed with alkali','COCOA DRY PDR HI-FAT OR BRKFST PROC W/ALKALI',,,'Y',,0,,6.25,,, -19866,1900,'Candies soft fruit and nut squares','CANDIES SOFT FRUIT & NUT SQUARES',,,'Y',,0,,5.55,,, -19867,1900,'Ice creams vanilla fat free','ICE CREAMS VANILLA FAT FREE',,,'Y',,0,,6.25,,, -19868,1900,'Sweeteners tabletop sucralose SPLENDA packets','SWEETENERS TABLETOP SUCRALOSE SPLENDA PACKETS',,'McNeil Nutritionals/McNeil_PPC Inc.','Y',,0,,6.25,0.00,0.00,3.68 -19871,1900,'Frozen novelties No Sugar Added FUDGSICLE pops','FROZEN NOVELTIES NO SUGAR ADDED FUDGSICLE POPS',,'Good Humor - Breyers Ice Cream','Y',,0,,6.25,,, -19873,1900,'Frozen novelties ice type sugar free orange cherry and grape POPSICLE pops','FROZ NOVELTIES ICE TYPE SUGAR FREE ORNGE CHRY & GRP POPSICLE',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19874,1900,'Frozen novelties KLONDIKE SLIM-A-BEAR Fudge Bar 98% fat free no sugar added','FRZ NVL KLONDIKE SLIM-A-BEAR FUDG BR 98% FT FR NO SGR ADDED',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19875,1900,'Ice creams BREYERS All Natural Light Vanilla','ICE CREAMS BREYERS ALL NAT LT VANILLA',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19876,1900,'Ice creams BREYERS All Natural Light French Vanilla','ICE CREAMS BREYERS ALL NAT LT FRENCH VANILLA',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19877,1900,'Ice creams BREYERS 98% Fat Free Vanilla','ICE CREAMS BREYERS 98% FAT FREE VANILLA',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19878,1900,'Ice creams BREYERS All Natural Light Vanilla Chocolate Strawberry','ICE CREAMS BREYERS ALL NAT LT VANILLA CHOC STRAWBERRY',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19879,1900,'Ice creams BREYERS All Natural Light Mint Chocolate Chip','ICE CREAMS BREYERS ALL NAT LT MINT CHOC CHIP',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19880,1900,'Ice creams BREYERS No Sugar Added Butter Pecan','ICE CREAMS BREYERS NO SUGAR ADDED BUTTER PECAN',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19881,1900,'Ice creams BREYERS No Sugar Added French Vanilla','ICE CREAMS BREYERS NO SUGAR ADDED FRENCH VANILLA',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19882,1900,'Ice creams BREYERS No Sugar Added Vanilla','ICE CREAMS BREYERS NO SUGAR ADDED VANILLA',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19883,1900,'Ice creams BREYERS No Sugar Added Vanilla Fudge Twirl','ICE CREAMS BREYERS NO SUGAR ADDED VANILLA FUDGE TWIRL',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19884,1900,'Ice creams BREYERS No Sugar Added Vanilla Chocolate Strawberry','ICE CREAMS BREYERS NO SUGAR ADDED VANILLA CHOC STRAWBERRY',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19886,1900,'Frozen novelties KLONDIKE SLIM-A-BEAR Chocolate Cone','FROZEN NOVELTIES KLONDIKE SLIM-A-BEAR CHOC CONE',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19887,1900,'Frozen novelties KLONDIKE SLIM-A-BEAR Vanilla Sandwich','FROZEN NOVELTIES KLONDIKE SLIM-A-BEAR VANILLA SNDWCH',,'Good Humor - Breyers Ice Cream',,,0,,,,, -19890,1900,'Frozen novelties KLONDIKE SLIM-A-BEAR No Sugar Added Stickless Bar','FROZEN NOVL KLONDIKE SLIM-A-BEAR NO SGR ADDED STICKLESS BAR',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19891,1900,'Frozen novelties No Sugar Added CREAMSICLE Pops','FROZEN NOVELTIES NO SUGAR ADDED CREAMSICLE POPS',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19892,1900,'Frozen novelties Sugar Free CREAMSICLE Pops','FROZEN NOVELTIES SUGAR FREE CREAMSICLE POPS',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19893,1900,'Ice creams BREYERS All Natural Light French Chocolate','ICE CREAMS BREYERS ALL NAT LT FRENCH CHOC',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19894,1900,'Ice creams BREYERS 98% Fat Free Chocolate','ICE CREAMS BREYERS 98% FAT FREE CHOC',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19895,1900,'Ice creams BREYERS No Sugar Added Chocolate Caramel','ICE CREAMS BREYERS NO SUGAR ADDED CHOC CARAMEL',,'Good Humor - Breyers Ice Cream',,,0,,6.25,,, -19896,1900,'Candies REESEs Fast Break milk chocolate peanut butter soft nougats candy bar','CANDIES REESES FAST BREAK CANDY BAR',,'Hershey Food Corp.','Y',,0,,6.25,4.00,9.00,4.00 -19897,1900,'Candies MARS SNACKFOOD US COCOAVIA Chocolate Covered Almonds','CANDIES MARS SNACKFOOD US COCOAVIA CHOC COVERED ALMONDS',,'Masterfoods USA',,,0,,,,, -19898,1900,'Ice creams regular low carbohydrate vanilla','ICE CREAMS REG LO CARBOHYDRATE VANILLA',,,'Y',,0,,6.25,,, -19899,1900,'Ice creams regular low carbohydrate chocolate','ICE CREAMS REG LO CARBOHYDRATE CHOC',,,'Y',,0,,6.25,,, -19902,1900,'Chocolate dark 45- 59% cacao solids','CHOCOLATE DK 45- 59% CACAO SOL',,,,,0,,6.25,,, -19903,1900,'Chocolate dark 60-69% cacao solids','CHOCOLATE DK 60-69% CACAO SOL',,,,,0,,,,, -19904,1900,'Chocolate dark 70-85% cacao solids','CHOCOLATE DK 70-85% CACAO SOL',,,,,0,,,,, -19905,1900,'Candies chocolate dark NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)','CANDIES CHOC DK NFS (45-59% CACAO SOL 90%; 60-69% CACAO SOL',,,'Y',,0,,6.25,,, -19906,1900,'Sweeteners for baking brown contains sugar and sucralose','SWEETENERS FOR BAKING BROWN CONTAINS SUGAR & SUCRALOSE',,,,,0,,,,, -19907,1900,'Sweeteners for baking contains sugar and sucralose','SWEETENERS FOR BAKING CONTAINS SUGAR & SUCRALOSE',,,,,0,,,,, -19908,1900,'Sugar turbinado','SUGAR TURBINADO',,,,,0,,,,, -19909,1900,'Sweeteners sugar substitute granulated brown','SWEETENERS SUGAR SUB GRANULATED BROWN',,,,,0,,,,, -19910,1900,'Candies crispy bar with peanut butter filling','CANDIES CRISPY BAR W/ PNUT BUTTER FILLING',,,'Y',,0,,6.25,,, -19911,1900,'Syrup maple Canadian','SYRUP MAPLE CANADIAN',,,,,0,,6.25,,, -19912,1900,'Sweetener syrup agave','Sweetener syrup agave',,,'Y',,0,,,,, -19913,1900,'Candies NESTLE BUTTERFINGER Crisp','Candies NESTLE BUTTERFINGER Crisp',,,'Y',,0,,6.25,,, -19914,1900,'Candies M&M MARS 3 MUSKETEERS Truffle Crisp','CANDIES M&M MARS 3 MUSKETEERS TRUFFLE CRISP',,,'Y',,0,,6.25,,, -19916,1900,'Syrups chocolate HERSHEYS Sugar free Genuine Chocolate Flavored Lite Syrup','SYRUPS CHOC HERSHEYS SUGAR FREE GENUINE CHOC FLAV LITE SYRU',,,'Y',,0,,6.25,,, -19917,1900,'Candies M&M MARS Pretzel Chocolate Candies','CANDIES M&M MARS PRETZEL CHOC CANDIES',,,'Y',,0,,6.25,,, -19918,1900,'Sweetener herbal extract powder from Stevia leaf','SWEETENER HERBAL EXTRACT PDR FROM STEVIA LEAF',,,'Y',,0,,6.25,,, -19919,1900,'Candies fruit snacks with high vitamin C','CANDIES FRUIT SNACKS W/ HI VIT C',,,'Y',,0,,6.25,,, -19920,1900,'Jams preserves marmalades sweetened with fruit juice','JAMS PRESERVES MARMALADES SWTND W/ FRUIT JUC',,,'Y',,0,,6.25,,, -19921,1900,'Candies Tamarind','CANDIES TAMARIND',,,'Y',,0,,6.25,3.36,8.37,3.60 -19922,1900,'Candies coconut bar not chocolate covered','CANDIES COCNT BAR NOT CHOC COVERED',,,'Y',,0,,6.25,,, -19923,1900,'Candies HERSHEYS PAYDAY Bar','CANDIES HERSHEYS PAYDAY BAR',,,'Y',,0,,6.25,,, -19924,1900,'Syrup NESTLE chocolate','SYRUP NESTLE CHOC',,,'Y',,0,,6.25,,, -20001,2000,'Amaranth grain uncooked','AMARANTH GRAIN UNCKD',,,,,0,'Amaranthus spp.',5.85,3.47,8.37,4.07 -20002,2000,'Amaranth grain cooked','AMARANTH GRAIN CKD',,,,,0,'Amaranthus spp.',5.85,3.47,8.37,4.07 -20003,2000,'Arrowroot flour','ARROWROOT FLOUR',,,,,0,,6.25,2.78,8.37,4.03 -20004,2000,'Barley hulled','BARLEY HULLED',,,,,0,'Hordeum vulgare L.',5.83,3.55,8.37,3.95 -20005,2000,'Barley pearled raw','BARLEY PEARLED RAW',,,'Y',,0,,5.83,3.55,8.37,3.95 -20006,2000,'Barley pearled cooked','BARLEY PEARLED COOKED',,,'Y',,0,,5.83,3.55,8.37,3.95 -20008,2000,'Buckwheat','BUCKWHEAT',,,,,0,'Fagopyrum esculentum Moench',6.25,3.37,8.37,3.78 -20009,2000,'Buckwheat groats roasted dry','BUCKWHEAT GROATS RSTD DRY','kasha',,,,0,,6.25,3.37,8.37,3.78 -20010,2000,'Buckwheat groats roasted cooked','BUCKWHEAT GROATS RSTD CKD','kasha',,'Y',,0,,6.25,3.37,8.37,3.78 -20011,2000,'Buckwheat flour whole-groat','BUCKWHEAT FLR WHOLE-GROAT',,,'Y',,0,,6.25,3.37,8.37,3.78 -20012,2000,'Bulgur dry','BULGUR DRY',,,'Y',,0,,5.83,3.59,8.37,3.78 -20013,2000,'Bulgur cooked','BULGUR COOKED',,,'Y',,0,,5.83,3.59,8.37,3.78 -20014,2000,'Corn grain yellow','CORN GRAIN YEL','dent corn field corn',,,,0,'Zea mays mays L.',6.25,2.73,8.37,4.03 -20015,2000,'Corn bran crude','CORN BRAN CRUDE',,,'Y',,0,,6.25,1.82,8.37,2.35 -20016,2000,'Corn flour whole-grain yellow','CORN FLR WHOLE-GRAIN YEL',,,'Y',,0,,6.25,2.73,8.37,4.03 -20017,2000,'Corn flour masa enriched white','CORN FLR MASA ENR WHITE',,,'Y',,0,,6.25,2.73,8.37,4.03 -20018,2000,'Corn flour yellow degermed unenriched','CORN FLR YEL DEGERMED UNENR',,,,,0,,6.25,3.46,8.37,4.16 -20019,2000,'Corn flour masa unenriched white','CORN FLR MASA UNENR WHITE',,,'Y',,0,,6.25,2.73,8.37,4.03 -20020,2000,'Cornmeal whole-grain yellow','CORNMEAL WHOLE-GRAIN YEL',,,,,0,,6.25,2.73,8.37,4.03 -20022,2000,'Cornmeal degermed enriched yellow','CORNMEAL DEGERMED ENR YEL',,,'Y',,0,,6.25,3.46,8.37,4.16 -20023,2000,'Cornmeal yellow self-rising bolted plain enriched','CORNMEAL YEL SELF-RISING BOLTED PLN ENR',,,,,0,,6.25,2.73,8.37,4.03 -20024,2000,'Cornmeal yellow self-rising bolted with wheat flour added enriched','CORNMEAL YEL SELF-RISING BOLTED W/ WHEAT FLR ADDED ENR',,,,,0,,6.18,3.13,8.37,4.06 -20025,2000,'Cornmeal yellow self-rising degermed enriched','CORNMEAL YEL SELF-RISING DEGERMED ENR',,,,,0,,6.25,3.46,8.37,4.16 -20027,2000,'Cornstarch','CORNSTARCH',,,'Y',,0,,6.25,3.46,8.37,4.16 -20028,2000,'Couscous dry','COUSCOUS DRY',,,,,0,,5.70,4.05,8.37,4.12 -20029,2000,'Couscous cooked','COUSCOUS COOKED',,,'Y',,0,,5.70,4.05,8.37,4.12 -20030,2000,'Hominy canned white','HOMINY CANNED WHITE',,,'Y',,0,,6.25,3.46,8.37,4.16 -20031,2000,'Millet raw','MILLET RAW',,,,,0,'Panicum miliaceum L.',5.83,3.87,8.37,4.12 -20032,2000,'Millet cooked','MILLET COOKED',,,'Y',,0,,5.83,3.87,8.37,4.12 -20033,2000,'Oat bran raw','OAT BRAN RAW',,,'Y',,0,,5.83,1.82,8.37,2.35 -20034,2000,'Oat bran cooked','OAT BRAN COOKED',,,,,0,,5.83,1.82,8.37,2.35 -20035,2000,'Quinoa uncooked','QUINOA UNCKD',,,,,0,'Chenopodium quinoa Willd.',6.25,4.00,9.00,4.00 -20036,2000,'Rice brown long-grain raw (Includes foods for USDAs Food Distribution Program)','RICE BROWN LONG-GRAIN RAW',,,'Y',,0,'Oryza sativa L.',5.95,3.41,8.37,4.12 -20037,2000,'Rice brown long-grain cooked (Includes foods for USDAs Food Distribution Program)','RICE BROWN LONG-GRAIN CKD',,,'Y',,0,,5.95,3.41,8.37,4.12 -20038,2000,'Oats (Includes foods for USDAs Food Distribution Program)','OATS',,,,,0,'Avena sativa L.',5.83,3.46,8.37,4.12 -20040,2000,'Rice brown medium-grain raw (Includes foods for USDAs Food Distribution Program)','RICE BROWN MEDIUM-GRAIN RAW',,,,,0,,5.95,3.41,8.37,4.12 -20041,2000,'Rice brown medium-grain cooked (Includes foods for USDAs Food Distribution Program)','RICE BROWN MEDIUM-GRAIN CKD',,,,,0,,5.95,3.41,8.37,4.12 -20042,2000,'Rice brown parboiled dry UNCLE BENS','RICE BROWN PARBLD DRY UNCLE BENS',,'Mars Food US',,,0,,,,, -20044,2000,'Rice white long-grain regular raw enriched','RICE WHITE LONG-GRAIN REG RAW ENR',,,'Y',,0,,5.95,3.82,8.37,4.16 -20045,2000,'Rice white long-grain regular enriched cooked','RICE WHITE LONG-GRAIN REG ENR CKD',,,'Y',,0,,5.95,3.82,8.37,4.16 -20046,2000,'Rice white long-grain parboiled enriched dry','RICE WHITE LONG-GRAIN PARBLD ENR DRY',,,'Y',,0,,5.95,3.82,8.37,4.16 -20047,2000,'Rice white long-grain parboiled enriched cooked','RICE WHITE LONG-GRAIN PARBLD ENR CKD',,,'Y',,0,,5.95,3.82,8.37,4.16 -20048,2000,'Rice white long-grain precooked or instant enriched dry','RICE WHITE LONG-GRAIN PRECKD OR INST ENR DRY',,,'Y',,0,,5.95,3.82,8.37,4.16 -20049,2000,'Rice white long-grain precooked or instant enriched prepared','RICE WHITE LONG-GRAIN PRECKD OR INST ENR PREP',,,'Y',,0,,5.95,3.82,8.37,4.16 -20050,2000,'Rice white medium-grain raw enriched','RICE WHITE MEDIUM-GRAIN RAW ENR',,,,,0,,5.95,3.82,8.37,4.16 -20051,2000,'Rice white medium-grain enriched cooked','RICE WHITE MEDIUM-GRAIN ENR CKD',,,,,0,,5.95,3.82,8.37,4.16 -20052,2000,'Rice white short-grain enriched uncooked','RICE WHITE SHORT-GRAIN ENR UNCKD',,,,,0,,5.95,3.82,8.37,4.16 -20053,2000,'Rice white short-grain enriched cooked','RICE WHITE SHORT-GRAIN ENR CKD',,,,,0,,5.95,3.82,8.37,4.16 -20054,2000,'Rice white glutinous unenriched uncooked','RICE WHITE GLUTINOUS UNENR UNCKD',,,,,0,,5.95,3.82,8.37,4.16 -20055,2000,'Rice white glutinous unenriched cooked','RICE WHITE GLUTINOUS UNENR CKD',,,'Y',,0,,5.95,3.82,8.37,4.16 -20058,2000,'Rice white steamed Chinese restaurant','RICE WHITE STMD CHINESE RESTAURANT',,,,,0,,,,, -20060,2000,'Rice bran crude','RICE BRAN CRUDE',,,'Y',,0,,5.95,1.82,8.37,2.35 -20061,2000,'Rice flour white unenriched','RICE FLR WHITE UNENR',,,'Y',,0,,5.95,3.82,8.37,4.16 -20062,2000,'Rye grain','RYE GRAIN',,,'Y',,0,'Secale cereale L.',5.83,3.05,8.37,3.86 -20063,2000,'Rye flour dark','RYE FLOUR DARK',,,'Y',,0,,5.83,2.96,8.37,3.78 -20064,2000,'Rye flour medium','RYE FLOUR MEDIUM',,,'Y',,0,,5.83,3.23,8.37,3.99 -20065,2000,'Rye flour light','RYE FLOUR LIGHT',,,'Y',,0,,5.83,3.41,8.37,4.07 -20066,2000,'Semolina enriched','SEMOLINA ENRICHED',,,,,0,,5.70,4.05,8.37,4.12 -20067,2000,'Sorghum grain','SORGHUM GRAIN',,,,,0,'Sorghum spp.',6.25,0.91,8.37,4.03 -20068,2000,'Tapioca pearl dry','TAPIOCA PEARL DRY',,,'Y',,0,,6.25,2.78,8.37,4.03 -20069,2000,'Triticale','TRITICALE',,,,,0,'X Triticosecale spp.',5.83,3.32,8.37,3.82 -20070,2000,'Triticale flour whole-grain','TRITICALE FLR WHOLE-GRAIN',,,,,0,,5.83,3.32,8.37,3.82 -20071,2000,'Wheat hard red spring','WHEAT HARD RED SPRING',,,'Y',,0,'Triticum aestivum L.',5.83,3.59,8.37,3.78 -20072,2000,'Wheat hard red winter','WHEAT HARD RED WINTER',,,'Y',,0,'Triticum aestivum L.',5.83,3.59,8.37,3.78 -20073,2000,'Wheat soft red winter','WHEAT SOFT RED WINTER',,,,,0,'Triticum aestivum L.',5.83,3.59,8.37,3.78 -20074,2000,'Wheat hard white','WHEAT HARD WHITE',,,,,0,'Triticum aestivum L.',5.83,3.59,8.37,3.78 -20075,2000,'Wheat soft white','WHEAT SOFT WHITE',,,,,0,'Triticum aestivum L.',5.83,3.59,8.37,3.78 -20076,2000,'Wheat durum','WHEAT DURUM',,,,,0,'Triticum durum Desf.',5.83,3.59,8.37,3.78 -20077,2000,'Wheat bran crude','WHEAT BRAN CRUDE',,,'Y',,0,,6.31,1.82,8.37,2.35 -20078,2000,'Wheat germ crude','WHEAT GERM CRUDE',,,,,0,,5.80,3.59,8.37,3.78 -20080,2000,'Wheat flour whole-grain (Includes foods for USDAs Food Distribution Program)','WHEAT FLOUR WHOLE-GRAIN',,,'Y',,0,,5.83,3.59,8.37,3.78 -20081,2000,'Wheat flour white all-purpose enriched bleached','WHEAT FLR WHITE ALL-PURPOSE ENR BLEACHED',,,'Y',,0,,5.70,4.05,8.37,4.12 -20082,2000,'Wheat flour white all-purpose self-rising enriched','WHEAT FLR WHITE ALL-PURPOSE SELF-RISING ENR',,,'Y',,0,,5.70,4.05,8.37,4.12 -20083,2000,'Wheat flour white bread enriched','WHEAT FLR WHITE BREAD ENR',,,'Y',,0,,5.70,4.05,8.37,4.12 -20084,2000,'Wheat flour white cake enriched','WHEAT FLR WHITE CAKE ENR',,,'Y',,0,,5.70,4.05,8.37,4.12 -20086,2000,'Wheat flour white tortilla mix enriched','WHEAT FLR WHITE TORTILLA MIX ENR',,,,,0,,5.70,4.05,8.37,4.12 -20087,2000,'Wheat sprouted','WHEAT SPROUTED',,,,,0,,5.83,3.59,8.37,3.78 -20088,2000,'Wild rice raw','WILD RICE RAW',,,'Y',,0,'Zizania spp.',6.25,3.55,8.37,3.95 -20089,2000,'Wild rice cooked','WILD RICE COOKED',,,'Y',,0,,6.25,3.55,8.37,3.95 -20090,2000,'Rice flour brown','RICE FLOUR BROWN',,,,,0,,5.95,3.41,8.37,4.12 -20091,2000,'Pasta gluten-free corn dry','PASTA GLUTEN-FREE CORN DRY',,,,,0,,6.25,2.73,8.37,4.03 -20092,2000,'Pasta gluten-free corn cooked','PASTA GLUTEN-FREE CORN CKD',,,,,0,,6.25,2.73,8.37,4.03 -20093,2000,'Pasta fresh-refrigerated plain as purchased','PASTA FRESH-REFRIGERATED PLN AS PURCHASED',,,,,0,,5.78,3.93,8.41,4.09 -20094,2000,'Pasta fresh-refrigerated plain cooked','PASTA FRESH-REFRIGERATED PLN CKD',,,,,0,,5.78,3.93,8.41,4.09 -20095,2000,'Pasta fresh-refrigerated spinach as purchased','PASTA FRESH-REFRIGERATED SPINACH AS PURCHASED',,,,,0,,5.79,3.88,8.41,4.08 -20096,2000,'Pasta fresh-refrigerated spinach cooked','PASTA FRESH-REFRIGERATED SPINACH CKD',,,,,0,,5.79,3.88,8.41,4.08 -20097,2000,'Pasta homemade made with egg cooked','PASTA HOMEMADE MADE W/EGG CKD',,,,,0,,5.73,3.93,8.41,4.09 -20098,2000,'Pasta homemade made without egg cooked','PASTA HOMEMADE MADE WO/EGG CKD',,,,,0,,5.70,3.91,8.37,4.12 -20105,2000,'Macaroni vegetable enriched dry','MACARONI VEG ENR DRY',,,,,0,,5.72,3.86,8.37,4.11 -20106,2000,'Macaroni vegetable enriched cooked','MACARONI VEG ENR CKD',,,'Y',,0,,5.72,3.86,8.37,4.11 -20109,2000,'Noodles egg dry enriched','NOODLES EGG DRY ENRICHED',,,'Y',,0,,5.78,3.93,8.41,4.09 -20110,2000,'Noodles egg enriched cooked','NOODLES EGG ENR CKD',,,'Y',,0,,5.78,3.93,8.41,4.09 -20111,2000,'Noodles egg spinach enriched dry','NOODLES EGG SPINACH ENR DRY',,,,,0,,5.79,3.88,8.41,4.08 -20112,2000,'Noodles egg spinach enriched cooked','NOODLES EGG SPINACH ENR CKD',,,'Y',,0,,5.79,3.88,8.41,4.08 -20113,2000,'Noodles chinese chow mein','NOODLES CHINESE CHOW MEIN',,,'Y',,0,,,,, -20114,2000,'Noodles japanese soba dry','NOODLES JAPANESE SOBA DRY',,,,,0,,6.06,3.37,8.37,3.78 -20115,2000,'Noodles japanese soba cooked','NOODLES JAPANESE SOBA CKD',,,,,0,,6.06,3.37,8.37,3.78 -20116,2000,'Noodles japanese somen dry','NOODLES JAPANESE SOMEN DRY',,,,,0,,5.70,3.91,8.37,4.12 -20117,2000,'Noodles japanese somen cooked','NOODLES JAPANESE SOMEN CKD',,,,,0,,5.70,3.91,8.37,4.12 -20118,2000,'Noodles flat crunchy Chinese restaurant','NOODLES FLAT CRUNCHY CHINESE RESTAURANT',,,'Y',,0,,5.73,4.05,8.37,4.12 -20120,2000,'Pasta dry enriched','PASTA DRY ENR','macaroni product spaghetti elbow macaroni lasagna penne rotini farfalle shells',,'Y',,0,,5.70,3.91,8.37,4.12 -20121,2000,'Pasta cooked enriched without added salt','PASTA CKD ENR WO/ ADDED SALT','macaroni product spaghetti elbow macaroni rotini lasagna farfalle shells penne',,'Y',,0,,5.70,3.91,8.37,4.12 -20124,2000,'Pasta whole-wheat dry (Includes foods for USDAs Food Distribution Program)','PASTA WHOLE-WHEAT DRY','spaghetti elbow macaroni penne farfalle lasagna shells macaroni product',,,,0,,5.83,3.59,8.37,3.78 -20125,2000,'Pasta whole-wheat cooked (Includes foods for USDAs Food Distribution Program)','PASTA WHOLE-WHEAT CKD','macaroni product spaghetti elbow macaroni penne farfalle lasagna rotini shells',,'Y',,0,,5.83,3.59,8.37,3.78 -20126,2000,'Spaghetti spinach dry','SPAGHETTI SPINACH DRY',,,'Y',,0,,5.72,3.86,8.37,4.11 -20127,2000,'Spaghetti spinach cooked','SPAGHETTI SPINACH COOKED',,,,,0,,5.72,3.86,8.37,4.11 -20129,2000,'Wheat flours bread unenriched','WHEAT FLOURS BREAD UNENR',,,'Y',,0,,5.70,4.05,8.37,4.12 -20130,2000,'Barley flour or meal','BARLEY FLOUR OR MEAL',,,'Y',,0,,5.83,3.55,8.37,3.95 -20131,2000,'Barley malt flour','BARLEY MALT FLR',,,,,0,,5.83,3.55,8.37,3.95 -20132,2000,'Oat flour partially debranned','OAT FLR PART DEBRANNED',,,'Y',,0,,,,, -20133,2000,'Rice noodles dry','RICE NOODLES DRY',,,,,0,,5.95,3.82,8.37,4.16 -20134,2000,'Rice noodles cooked','RICE NOODLES CKD',,,'Y',,0,,5.95,3.82,8.37,4.16 -20135,2000,'Pasta whole grain 51% whole wheat remaining unenriched semolina dry','PASTA WHL GRAIN 51% WHL WHEAT REMAINING UNENR SEMOLINA DRY','macaroni product spaghetti elbow macaroni farfalle rotini lasagna shells penne',,,,0,,,3.78,8.37,3.95 -20136,2000,'Pasta whole grain 51% whole wheat remaining unenriched semolina cooked','PASTA WHL GRAIN 51% WHL WHEAT REMAINING UNENR SEMOLINA CKD','macaroni product spaghetti elbow macaroni shells penne rotini lasagna farfalle',,,,0,,,3.78,8.37,3.95 -20137,2000,'Quinoa cooked','QUINOA CKD',,,'Y',,0,'Chenopodium quinoa Willd.',6.25,4.00,9.00,4.00 -20138,2000,'Wheat KAMUT khorasan uncooked','WHEAT KAMUT KHORASAN UNCKD','khorassan wheat',,,,0,'Triticum turgidum subsp. turanicum (Jakubz.)',5.83,3.59,8.37,3.78 -20139,2000,'Wheat KAMUT khorasan cooked','WHEAT KAMUT KHORASAN CKD','khorassan wheat',,,,0,'Triticum turgidum subsp. turanicum (Jakubz.)',5.83,3.59,8.37,3.78 -20140,2000,'Spelt uncooked','SPELT UNCKD',,,,,0,'Triticum aestivum L. subsp. spelta',5.83,3.59,8.37,3.78 -20141,2000,'Spelt cooked','SPELT CKD',,,,,0,'Triticum aestivum L. subsp. spelta',5.83,3.59,8.37,3.78 -20142,2000,'Teff uncooked','TEFF UNCKD',,,,,0,'Eragrostis tef (Zuccagni) Trotter',6.25,4.00,9.00,4.00 -20143,2000,'Teff cooked','TEFF CKD',,,,,0,'Eragrostis tef (Zuccagni) Trotter',6.25,4.00,9.00,4.00 -20310,2000,'Noodles egg cooked enriched with added salt','NOODLES EGG CKD ENR W/ SALT',,,,,0,,5.78,3.93,8.41,4.09 -20314,2000,'Corn grain white','CORN GRAIN WHITE','dent corn field corn',,,,0,,6.25,2.73,8.37,4.03 -20315,2000,'Corn flour whole-grain blue (harina de maiz morado)','CORN FLR WHOLE-GRAIN BLUE (HARINA DE MAIZ MORADO)',,,,,0,,6.25,2.73,8.37,4.03 -20316,2000,'Corn flour whole-grain white','CORN FLR WHOLE-GRAIN WHITE',,,'Y',,0,,6.25,2.73,8.37,4.03 -20317,2000,'Corn flour yellow masa enriched','CORN FLR YEL MASA ENR',,,,,0,,6.25,2.73,8.37,4.03 -20320,2000,'Cornmeal whole-grain white','CORNMEAL WHOLE-GRAIN WHITE',,,'Y',,0,,6.25,2.73,8.37,4.03 -20321,2000,'Pasta cooked enriched with added salt','PASTA CKD ENR W/ ADDED SALT','spaghetti elbow macaroni lasagna macaroni product rotini farfalle penne shells',,,,0,,5.70,3.91,8.37,4.12 -20322,2000,'Cornmeal degermed enriched white','CORNMEAL DEGERMED ENR WHITE',,,'Y',,0,,6.25,3.46,8.37,4.16 -20323,2000,'Cornmeal white self-rising bolted plain enriched','CORNMEAL WHITE SELF-RISING BOLTED PLN ENR',,,,,0,,6.25,2.73,8.37,4.03 -20324,2000,'Cornmeal white self-rising bolted with wheat flour added enriched','CORNMEAL WHITE SELF-RISING BOLTED W/ WHEAT FLR ADDED ENR',,,,,0,,6.18,3.13,8.37,4.06 -20325,2000,'Cornmeal white self-rising degermed enriched','CORNMEAL WHITE SELF-RISING DEGERMED ENR',,,,,0,,6.25,3.46,8.37,4.16 -20330,2000,'Hominy canned yellow','HOMINY CANNED YELLOW',,,,,0,,6.25,3.46,8.37,4.16 -20345,2000,'Rice white long-grain regular cooked enriched with salt','RICE WHITE LONG-GRAIN REG CKD ENR W/SALT',,,'Y',,0,,5.95,3.82,8.37,4.16 -20381,2000,'Wheat flour white all-purpose enriched calcium-fortified','WHEAT FLR WHITE ALL-PURPOSE ENR CALCIUM-FORTIFIED',,,,,0,,5.70,4.05,8.37,4.12 -20409,2000,'Noodles egg dry unenriched','NOODLES EGG DRY UNENR',,,'Y',,0,,5.78,3.93,8.41,4.09 -20410,2000,'Noodles egg unenriched cooked without added salt','NOODLES EGG UNENR CKD WO/ ADDED SALT',,,'Y',,0,,5.78,3.93,8.41,4.09 -20420,2000,'Pasta dry unenriched','PASTA DRY UNENR','macaroni product spaghetti elbow macaroni lasagna rotini shells farfalle penne',,,,0,,5.70,3.91,8.37,4.12 -20421,2000,'Pasta cooked unenriched without added salt','PASTA CKD UNENR WO/ ADDED SALT','macaroni product spaghetti elbow macaroni penne shells farfalle rotini lasagna',,'Y',,0,,5.70,3.91,8.37,4.12 -20422,2000,'Cornmeal degermed unenriched yellow','CORNMEAL DEGERMED UNENR YEL',,,'Y',,0,,6.25,3.46,8.37,4.16 -20444,2000,'Rice white long-grain regular raw unenriched','RICE WHITE LONG-GRAIN REG RAW UNENR',,,'Y',,0,,5.95,3.82,8.37,4.16 -20445,2000,'Rice white long-grain regular unenriched cooked without salt','RICE WHITE LONG-GRAIN REG UNENR CKD WO/ SALT',,,'Y',,0,,5.95,3.82,8.37,4.16 -20446,2000,'Rice white long-grain parboiled unenriched dry','RICE WHITE LONG-GRAIN PARBLD UNENR DRY',,,,,0,,5.95,3.82,8.37,4.16 -20447,2000,'Rice white long-grain parboiled unenriched cooked','RICE WHITE LONG-GRAIN PARBLD UNENR CKD',,,,,0,,5.95,3.82,8.37,4.16 -20450,2000,'Rice white medium-grain raw unenriched','RICE WHITE MEDIUM-GRAIN RAW UNENR',,,,,0,,5.95,3.82,8.37,4.16 -20451,2000,'Rice white medium-grain cooked unenriched','RICE WHITE MEDIUM-GRAIN CKD UNENR',,,,,0,,5.95,3.82,8.37,4.16 -20452,2000,'Rice white short-grain raw unenriched','RICE WHITE SHORT-GRAIN RAW UNENR',,,,,0,,5.95,3.82,8.37,4.16 -20453,2000,'Rice white short-grain cooked unenriched','RICE WHITE SHORT-GRAIN CKD UNENR',,,,,0,,5.95,3.82,8.37,4.16 -20466,2000,'Semolina unenriched','SEMOLINA UNENRICHED',,,,,0,,5.70,4.05,8.37,4.12 -20481,2000,'Wheat flour white all-purpose unenriched','WHEAT FLR WHITE ALL-PURPOSE UNENR',,,'Y',,0,,5.70,4.05,8.37,4.12 -20510,2000,'Noodles egg cooked unenriched with added salt','NOODLES EGG CKD UNENR W/ SALT',,,,,0,,5.78,3.93,8.41,4.09 -20521,2000,'Pasta cooked unenriched with added salt','PASTA CKD UNENR W/ ADDED SALT','macaroni product spaghetti elbow macaroni rotini lasagna farfalle shells penne',,,,0,,5.70,3.91,8.37,4.12 -20522,2000,'Cornmeal degermed unenriched white','CORNMEAL DEGERMED UNENR WHITE',,,,,0,,6.25,3.46,8.37,4.16 -20523,2000,'Spaghetti protein-fortified cooked enriched (n x 6.25)','SPAGHETTI PROTEIN-FORTIFIED CKD ENR (N X 6.25)',,,,,0,,5.70,3.91,8.37,4.12 -20545,2000,'Rice white long-grain regular cooked unenriched with salt','RICE WHITE LONG-GRAIN REG CKD UNENR W/SALT',,,'Y',,0,,5.95,3.82,8.37,4.16 -20581,2000,'Wheat flour white all-purpose enriched unbleached','WHEAT FLR WHITE ALL-PURPOSE ENR UNBLEACHED',,,,,0,,5.70,4.05,8.37,4.12 -20622,2000,'Spaghetti protein-fortified dry enriched (n x 6.25)','SPAGHETTI PROTEIN-FORTIFIED DRY ENR (N X 6.25)',,,,,0,,5.70,3.91,8.37,4.12 -20623,2000,'Wheat flour white (industrial) 9% protein bleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 9% PROT BLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20624,2000,'Wheat flour white (industrial) 9% protein bleached unenriched','WHEAT FLR WHITE (INDUSTRIAL) 9% PROT BLEACHED UNENR',,,,,0,,,4.05,8.37,4.12 -20628,2000,'Wheat flour white (industrial) 10% protein bleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 10% PROT BLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20629,2000,'Wheat flour white (industrial) 10% protein bleached unenriched','WHEAT FLR WHITE (INDUSTRIAL) 10% PROT BLEACHED UNENR',,,,,0,,,4.05,8.37,4.12 -20630,2000,'Wheat flour white (industrial) 10% protein unbleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 10% PROT UNBLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20634,2000,'Wheat flour white (industrial) 11.5% protein bleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 11.5% PROT BLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20635,2000,'Wheat flour white (industrial) 11.5% protein bleached unenriched','WHEAT FLR WHITE (INDUSTRIAL) 11.5% PROT BLEACHED UNENR',,,,,0,,,4.05,8.37,4.12 -20636,2000,'Wheat flour white (industrial) 11.5% protein unbleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 11.5% PROT UNBLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20640,2000,'Wheat flour white (industrial) 13% protein bleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 13% PROT BLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20641,2000,'Wheat flour white (industrial) 13% protein bleached unenriched','WHEAT FLR WHITE (INDUSTRIAL) 13% PROT BLEACHED UNENR',,,,,0,,,4.05,8.37,4.12 -20645,2000,'Wheat flour white (industrial) 15% protein bleached enriched','WHEAT FLR WHITE (INDUSTRIAL) 15% PROT BLEACHED ENR',,,,,0,,,4.05,8.37,4.12 -20646,2000,'Wheat flour white (industrial) 15% protein bleached unenriched','WHEAT FLR WHITE (INDUSTRIAL) 15% PROT BLEACHED UNENR',,,,,0,,,4.05,8.37,4.12 -20647,2000,'Millet flour','MILLET FLR',,,,,0,,5.83,4.00,9.00,4.00 -20648,2000,'Sorghum flour whole-grain','SORGHUM FLR WHOLE-GRAIN',,,,,0,,6.25,2.28,8.37,4.07 -20649,2000,'Wheat flour whole-grain soft wheat','WHEAT FLR WHOLE-GRAIN SOFT WHEAT',,,,,0,,,3.59,8.37,3.78 -20650,2000,'Sorghum flour refined unenriched','SORGHUM FLR REFINED UNENR',,,,,0,,6.25,,, -20651,2000,'Rice brown parboiled cooked UNCLE BENS','RICE BROWN PARBLD CKD UNCLE BENS',,'Mars Food US',,,0,,,3.41,8.37,4.12 -20652,2000,'Pasta whole grain 51% whole wheat remaining enriched semolina cooked (Includes foods for USDAs Food Distribution Program)','PASTA WHL GRAIN 51% WHL WHEAT REMAINING ENR SEMOLINA CKD','macaroni product spaghetti elbow macaroni penne lasagna shells farfalle rotini',,,,0,,,3.78,8.37,3.95 -20653,2000,'Pasta whole grain 51% whole wheat remaining enriched semolina dry (Includes foods for USDAs Food Distribution Program)','PASTA WHL GRAIN 51% WHL WHEAT REMAINING ENR SEMOLINA DRY','macaroni product spaghetti elbow macaroni rotini lasagna farfalle penne shells',,,,0,,,3.78,8.37,3.95 -20654,2000,'Pasta gluten-free brown rice flour cooked TINKYADA','PASTA GLUTEN-FREE BROWN RICE FLR CKD TINKYADA',,'Tinkyada','Y',,0,,5.95,4.12,8.37,3.41 -20655,2000,'Pasta gluten-free corn flour and quinoa flour cooked ANCIENT HARVEST','PASTA GLUTEN-FREE CORN FLR & QUINOA FLR CKD ANCIENT HARVEST',,'Ancient Harvest','Y',,0,,6.25,3.78,8.37,3.95 -20656,2000,'Pasta gluten-free rice flour and rice bran extract cooked DE BOLES','PASTA GLUTEN-FREE RICE FLR & RICE BRAN EXTRACT CKD DE BOLES',,'De Boles',,,0,,5.95,3.82,8.37,4.16 -20657,2000,'Pasta gluten-free corn and rice flour cooked','PASTA GLUTEN-FREE CORN & RICE FLR CKD',,'Barilla','Y',,0,,5.95,3.82,8.37,4.16 -21003,2100,'Fast foods biscuit with egg and bacon','FAST FOODS BISCUIT W/EGG&BACON',,,'Y',,0,,6.12,4.18,8.80,3.94 -21004,2100,'Fast foods biscuit with egg and ham','FAST FOODS BISCUIT W/EGG&HAM',,,'Y',,0,,6.09,4.15,8.80,3.94 -21005,2100,'Fast Foods biscuit with egg and sausage','BREAKFAST ITEMS BISCUIT W/EGG&SAUSAGE',,,'Y',,0,,6.06,4.13,8.80,3.95 -21007,2100,'Fast foods biscuit with egg cheese and bacon','FAST FOODS BISCUIT W/EGG CHS &BACON',,,'Y',,0,,6.19,4.22,8.80,3.94 -21008,2100,'Fast foods biscuit with ham','FAST FOODS BISCUIT W/HAM',,,'Y',,0,,5.98,4.03,8.67,3.95 -21009,2100,'Fast foods biscuit with sausage','FAST FOODS BISCUIT W/SAUSAGE',,,'Y',,0,,5.87,4.01,8.75,3.95 -21010,2100,'Fast foods biscuit with crispy chicken fillet','FAST FOODS BISCUIT W/ CRISPY CHICK FILLET',,,'Y',,0,,6.04,4.08,8.74,3.95 -21012,2100,'Fast foods croissant with egg cheese and bacon','FAST FOODS CROISSANT W/EGG CHS &BACON',,,'Y',,0,,6.13,4.22,8.83,3.99 -21013,2100,'Fast foods croissant with egg cheese and ham','FAST FOODS CROISSANT W/EGG CHS &HAM',,,'Y',,0,,6.16,4.23,8.88,3.99 -21014,2100,'Fast foods croissant with egg cheese and sausage','FAST FOODS CROISSANT W/EGG CHS &SAUSAGE',,,'Y',,0,,6.15,4.22,8.89,3.99 -21018,2100,'Fast foods egg scrambled','FAST FOODS EGG SCRAMBLED',,,'Y',,0,,6.26,4.35,8.92,3.80 -21020,2100,'Fast foods english muffin with cheese and sausage','FAST FOODS ENG MUFFIN W/CHS&SAUSAGE',,,'Y',,0,,6.13,4.12,8.89,3.94 -21021,2100,'Fast foods english muffin with egg cheese and canadian bacon','FAST FOODS ENG MUFFIN W/EGG CHS &CANADIAN BACON',,,'Y',,0,,,,, -21022,2100,'Fast foods english muffin with egg cheese and sausage','FAST FOODS ENG MUFFIN W/EGG CHS &SAUSAGE',,,'Y',,0,,6.17,4.19,8.90,3.94 -21024,2100,'Fast foods french toast sticks','FAST FOODS FRENCH TOAST STKS',,,'Y',,0,,5.73,3.61,8.83,3.92 -21026,2100,'Fast foods potatoes hash browns round pieces or patty','FAST FOODS POTATOES HASH BROWNS RND PIECES OR PATTY',,,'Y',,0,,6.25,4.00,9.00,3.77 -21028,2100,'Fast foods vanilla light soft-serve ice cream with cone','FAST FOODS VANILLA LT SOFT-SERVE ICE CRM W/ CONE',,,'Y',,0,,6.29,4.20,8.78,3.88 -21032,2100,'Fast foods sundae caramel','FAST FOODS SUNDAE CARAMEL',,,,,0,,6.38,4.27,8.79,3.87 -21033,2100,'Fast foods sundae hot fudge','FAST FOODS SUNDAE HOT FUDGE',,,,,0,,6.38,4.27,8.79,3.87 -21034,2100,'Fast foods sundae strawberry','FAST FOODS SUNDAE STRAWBERRY',,,,,0,,6.38,4.27,8.79,3.87 -21059,2100,'Fast foods shrimp breaded and fried','FAST FOODS SHRIMP BREADED&FRIED',,,'Y',,0,,6.22,4.23,8.89,3.83 -21060,2100,'Fast foods burrito with beans','FAST FOODS BURRITO W/BNS',,,,,0,,5.88,3.68,8.37,3.96 -21061,2100,'Fast foods burrito with beans and cheese','FAST FOODS BURRITO W/BNS&CHS',,,'Y',,0,,6.11,3.76,8.71,3.98 -21063,2100,'Fast foods burrito with beans and beef','FAST FOODS BURRITO W/ BNS & BF',,,'Y',,0,,6.14,4.02,8.73,3.97 -21064,2100,'Fast foods burrito with beans cheese and beef','FAST FOODS BURRITO W/BNS CHS &BF',,,'Y',,0,,6.17,3.96,8.72,3.97 -21078,2100,'Fast foods nachos with cheese','FAST FOODS NACHOS W/CHS',,,'Y',,0,,6.30,3.73,8.48,4.15 -21080,2100,'Fast foods nachos with cheese beans ground beef and tomatoes','FAST FOODS NACHOS W/ CHS BNS GROUND BF & TOMATOES',,,'Y',,0,,6.37,3.83,8.53,4.13 -21082,2100,'Fast foods taco with beef cheese and lettuce hard shell','FAST FOODS TACO W/ BF CHS & LETTUCE HARD SHELL',,,'Y',,0,,6.29,4.05,8.78,3.97 -21089,2100,'Fast foods cheeseburger; single regular patty; plain','FAST FOODS CHEESEBURGER; SINGLE REG PATTY; PLN',,,'Y',,0,,6.11,4.12,8.80,3.95 -21090,2100,'Fast foods cheeseburger; single regular patty with condiments','FAST FOODS CHEESEBURGER; SINGLE REG PATTY W/ CONDMNT',,,'Y',,0,,6.11,4.12,8.80,3.95 -21091,2100,'Fast foods cheeseburger; single regular patty with condiments and vegetables','FAST FOODS CHEESEBURGER; SINGLE REG PATTY W/ CONDMNT & VEG',,,'Y',,0,,6.11,4.12,8.80,3.95 -21094,2100,'Fast foods cheeseburger double regular patty and bun with condiments','FAST FOODS CHEESEBURGER DOUBLE REG PATTY & BUN W/ CONDMNT',,,'Y',,0,,,,, -21096,2100,'Fast foods cheeseburger; single large patty; plain','FAST FOODS CHEESEBURGER; SINGLE LRG PATTY; PLN',,,'Y',,0,,6.20,4.20,8.92,3.95 -21102,2100,'Fast foods chicken fillet sandwich plain with pickles','FAST FOODS CHICK FILLET SNDWCH PLN W/ PICKLES',,,'Y',,0,,6.15,4.18,8.88,3.95 -21105,2100,'Fast foods fish sandwich with tartar sauce','FAST FOODS FISH SNDWCH W/TARTAR SAU',,,'Y',,0,,6.07,4.11,8.79,3.93 -21106,2100,'Fast foods fish sandwich with tartar sauce and cheese','FAST FOODS FISH SNDWCH W/TARTAR SAU&CHS',,,'Y',,0,,6.11,4.12,8.81,3.93 -21107,2100,'Fast foods hamburger; single regular patty; plain','FAST FOODS HAMBURGER; SINGLE REG PATTY; PLN',,,'Y',,0,,6.03,4.07,8.81,3.95 -21108,2100,'Fast foods hamburger; single regular patty; with condiments','FAST FOODS HAMBURGER; SINGLE REG PATTY; W/ CONDMNT',,,'Y',,0,,,,, -21121,2100,'Fast foods roast beef sandwich plain','FAST FOODS RST BF SNDWCH PLN',,,'Y',,0,,6.17,4.20,8.95,3.95 -21124,2100,'Fast foods submarine sandwich cold cut on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH COLD CUT BRD W/ LETTUCE & TOMATO',,,'Y',,0,,6.09,4.12,8.85,3.94 -21125,2100,'Fast foods submarine sandwich roast beef on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH RST BF BREAD W/ LETTUCE & TOMATO',,,'Y',,0,,6.17,4.20,8.95,3.95 -21126,2100,'Fast foods submarine sandwich tuna on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH TUNA BREAD W/ LETTUCE & TOMATO',,,'Y',,0,,6.05,4.09,8.74,3.93 -21127,2100,'Fast foods coleslaw','FAST FOODS COLESLAW',,,,,0,,,,, -21129,2100,'Fast foods hush puppies','FAST FOODS HUSH PUPPIES',,,'Y',,0,,6.25,2.73,8.84,4.03 -21130,2100,'Fast foods onion rings breaded and fried','FAST FOODS ONION RINGS BREADED&FRIED',,,'Y',,0,,6.07,3.70,8.80,4.00 -21138,2100,'Fast foods potato french fried in vegetable oil','FST FOODS POTATO FRNCH FRIED IN VEG OIL',,,'Y',,0,,,,, -21139,2100,'Fast foods potato mashed','FAST FOODS POTATO MASHED',,,'Y',,0,,6.25,2.78,8.84,4.03 -21141,2100,'BURGER KING Vanilla Shake','BURGER KING VANILLA SHAKE',,'Burger King Corporation',,,0,,6.38,4.00,9.00,4.00 -21142,2100,'Fast food biscuit','FAST FD BISCUIT',,,'Y',,0,,,,, -21143,2100,'CHICK-FIL-A Chick-n-Strips','CHICK-FIL-A CHICK-N-STRIPS',,'Chick-Fil-A',,,0,,,,, -21144,2100,'CHICK-FIL-A hash browns','CHICK-FIL-A HASH BROWNS',,'Chick-Fil-A',,,0,,,,, -21145,2100,'School Lunch pizza BIG DADDYS LS 16in 51% Whole Grain Rolled Edge Cheese Pizza frozen','SCHOOL LUNCH PIZZA BIG DADDYS LS 16in 51% WHL CHS PIZZA FRZ','school lunch',,,,0,,6.25,,, -21146,2100,'School Lunch pizza BIG DADDYS LS 16in 51% Whole Grain Rolled Edge Turkey Pepperoni Pizza frozen','SCHOOL LUNCH PIZZA BIG DADDYS 51% WHL TRKY PEP PIZZA FRZ','school lunch',,,,0,,6.25,,, -21147,2100,'School Lunch pizza TONYS SMARTPIZZA Whole Grain 4x6 Cheese Pizza 50/50 Cheese frozen','SCHOOL LUNCH PIZZA TONYS SMARTPIZZA PIZZA 50/50 CHS FRZ','school lunch',,,,0,,6.25,,, -21148,2100,'School Lunch pizza TONYS SMARTPIZZA Whole Grain 4x6 Pepperoni Pizza 50/50 Cheese frozen','SCHOOL LUNCH PIZZA TONYS SMARTPIZZA PEP PIZZA 50/50 CHS FRZ','school lunch',,,,0,,6.25,,, -21149,2100,'School Lunch pizza TONYS Breakfast Pizza Sausage frozen','SCHOOL LUNCH PIZZA TONYS BRKFST PIZZA SAUSAGE FRZ','school lunch',,,,0,,6.25,,, -21150,2100,'SUBWAY sweet onion chicken teriyaki sub on white bread with lettuce tomato and sweet onion sauce','SUBWAY SWT ONION CHICK SUB WHT BRD LTTC TMT & SWT ONION SAU',,'Subway',,,0,,,,, -21151,2100,'Fast foods submarine sandwich sweet onion chicken teriyaki on white bread with lettuce tomato and sweet onion sauce','FAST FOODS SUB SWT ONION CHICK WIT BRD W/ LTTC TMT SWT ONION',,,'Y',,0,,,4.00,9.00,4.00 -21152,2100,'SUBWAY SUBWAY CLUB sub on white bread with lettuce and tomato','SUBWAY SUBWAY CLUB SUB ON WHITE BREAD W/ LETTUCE & TOMATO',,'Subway',,,0,,,,, -21153,2100,'Fast foods submarine sandwich turkey roast beef and ham on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH TRKY RST BF HM BRD W/ LTTC & TMT',,,'Y',,0,,,4.00,9.00,4.00 -21154,2100,'Fast foods submarine sandwich oven roasted chicken on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH OVEN RSTD CHCK WHT BRD LTTC TMT',,,'Y',,0,,,4.00,9.00,4.00 -21155,2100,'Fast foods submarine sandwich turkey breast on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH TRKY BRST WHT BRD LTTC & TMT',,,'Y',,0,,,4.00,9.00,4.00 -21156,2100,'Fast foods submarine sandwich ham on white bread with lettuce and tomato','FAST FOODS SUBMARINE SNDWCH HAM ON WHT BRD W/ LTTC & TMT',,,'Y',,0,,,4.00,9.00,4.00 -21157,2100,'SUBWAY meatball marinara sub on white bread (no toppings)','SUBWAY MEATBALL MARINARA SUB ON WHITE BREAD (NO TOPPINGS)',,'Subway',,,0,,,,, -21158,2100,'Fast foods submarine sandwich meatball marinara on white bread','FAST FOODS SUBMARINE SNDWCH MEATBALL MARINARA ON WHITE BREAD',,,'Y',,0,,,4.00,9.00,4.00 -21159,2100,'SUBWAY steak & cheese sub on white bread with American cheese lettuce and tomato','SUBWAY STEAK & CHS SUB ON WHT BRD W/ AMERICAN CHS LTTC & TMT',,'Subway',,,0,,,,, -21160,2100,'Fast foods submarine sandwich steak and cheese on white bread with cheese lettuce and tomato','FAST FOODS SUBMARINE SNDWCH STK CHS WHT BRD W/ CHS LTTC TMT',,,'Y',,0,,,4.00,9.00,4.00 -21161,2100,'SUBWAY B.L.T. sub on white bread with bacon lettuce and tomato','SUBWAY B.L.T. SUB ON WHITE BREAD W/ BACON LETTUCE & TOMATO','BLT','Subway',,,0,,,,, -21162,2100,'Fast foods submarine sandwich bacon lettuce and tomato on white bread','FAST FOODS SUBMARINE SNDWCH BACON LETTUCE & TOMATO WHT BRD','BLT',,'Y',,0,,,4.00,9.00,4.00 -21202,2100,'Fast foods hamburger large single patty with condiments','FAST FOODS HAMBURGER LRG SINGLE PATTY W/CONDMNT',,,'Y',,0,,,,, -21207,2100,'SUBWAY turkey breast sub on white bread with lettuce and tomato','SUBWAY TURKEY BREAST SUB ON WHITE BREAD W/ LETTUCE & TOMATO',,'Subway',,,0,,6.25,,, -21209,2100,'SUBWAY black forest ham sub on white bread with lettuce and tomato','SUBWAY BLACK FOREST HAM SUB ON WHITE BRD W/ LETTUCE & TOMATO',,'Subway',,,0,,6.25,,, -21210,2100,'SUBWAY roast beef sub on white bread with lettuce and tomato','SUBWAY RST BF SUB ON WHITE BREAD W/ LETTUCE & TOMATO',,'Subway',,,0,,,,, -21211,2100,'SUBWAY oven roasted chicken sub on white bread with lettuce and tomato','SUBWAY OVEN RSTD CHICK SUB ON WHITE BRD W/ LETTUCE & TOMATO',,'Subway',,,0,,6.25,,, -21213,2100,'SUBWAY cold cut sub on white bread with lettuce and tomato','SUBWAY COLD CUT SUB ON WHITE BREAD W/ LETTUCE & TOMATO',,'Subway',,,0,,,,, -21214,2100,'SUBWAY tuna sub on white bread with lettuce and tomato','SUBWAY TUNA SUB ON WHITE BREAD W/ LETTUCE & TOMATO',,'Subway',,,0,,,,, -21224,2100,'Pizza cheese topping regular crust frozen cooked','PIZZA CHS TOPPING REG CRUST FRZ CKD',,,'Y',,0,,,4.00,9.00,4.00 -21225,2100,'Pizza cheese topping rising crust frozen cooked','PIZZA CHS TOPPING RISING CRUST FRZ CKD',,,'Y',,0,,,4.00,9.00,4.00 -21226,2100,'Pizza meat and vegetable topping regular crust frozen cooked','PIZZA MEAT & VEG TOPPING REG CRUST FRZ CKD',,,'Y',,0,,,4.00,9.00,4.00 -21227,2100,'Pizza meat and vegetable topping rising crust frozen cooked','PIZZA MEAT & VEG TOPPING RISING CRUST FRZ CKD',,,'Y',,0,,,4.00,9.00,4.00 -21228,2100,'McDONALDS Hamburger','MCDONALDS HAMBURGER',,'McDonalds Corporation',,,0,,,,, -21229,2100,'Fast foods chicken breaded and fried boneless pieces plain','FAST FOODS CHICK BREADED & FRIED BNLESS PIECES PLN','nuggets',,'Y',,0,,6.25,4.00,9.00,4.00 -21230,2100,'Fast Foods crispy chicken filet sandwich with lettuce and mayonnaise','FAST FOODS CRISPY CHICK FILET SNDWCH W/ LETTUCE & MAYO',,,'Y',,0,,,4.00,9.00,4.00 -21232,2100,'McDONALDS FILET-O-FISH','MCDONALDS FLT-O-FSH',,'McDonalds Corporation',,,0,,6.25,4.00,9.00,4.00 -21233,2100,'McDONALDS Cheeseburger','MCDONALDS CHEESEBURGER',,'McDonalds Corporation',,,0,,,,, -21234,2100,'McDONALDS QUARTER POUNDER','MCDONALDS QUARTER POUNDER',,'McDonalds Corporation',,,0,,,,, -21235,2100,'McDONALDS QUARTER POUNDER with Cheese','MCDONALDS QUARTER POUNDER W/ CHS',,'McDonalds Corporation',,,0,,,,, -21237,2100,'McDONALDS BIG MAC','MCDONALDS BIG MAC',,'McDonalds Corporation',,,0,,,,, -21238,2100,'McDONALDS french fries','MCDONALDS FRENCH FR',,'McDonalds Corporation',,,0,,6.25,,, -21239,2100,'WENDYS CLASSIC SINGLE Hamburger no cheese','WENDYS CLASSIC SINGLE HAMBURGER NO CHS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21240,2100,'WENDYS CLASSIC SINGLE Hamburger with cheese','WENDYS CLASSIC SINGLE HAMBURGER W/ CHS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21241,2100,'WENDYS Jr. Hamburger without cheese','WENDYS JR. HAMBURGER WO/ CHS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21242,2100,'WENDYS Jr. Hamburger with cheese','WENDYS JR. HAMBURGER W/ CHS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21243,2100,'WENDYS CLASSIC DOUBLE with cheese','WENDYS CLASSIC DOUBLE W/ CHS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21244,2100,'WENDYS Homestyle Chicken Fillet Sandwich','WENDYS HOMESTYLE CHICK FILLET SNDWCH',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21245,2100,'WENDYS Ultimate Chicken Grill Sandwich','WENDYS ULTIMATE CHICK GRILL SNDWCH',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21246,2100,'WENDYS Chicken Nuggets','WENDYS CHICK NUGGETS',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21247,2100,'WENDYS french fries','WENDYS FRENCH FR',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21248,2100,'WENDYS Frosty Dairy Dessert','WENDYS FROSTY DAIRY DSSRT',,'Wendys International Inc.',,,0,,6.25,4.00,9.00,4.00 -21249,2100,'BURGER KING french fries','BURGER KING FRENCH FR',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21250,2100,'BURGER KING Hamburger','BURGER KING HAMBURGER',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21251,2100,'BURGER KING Cheeseburger','BURGER KING CHSBRGR',,'Burger King Corporation',,,0,,6.25,,, -21252,2100,'BURGER KING WHOPPER no cheese','BURGER KING WHOPPER NO CHS',,'Burger King Corporation',,,0,,,4.00,9.00,4.00 -21253,2100,'BURGER KING WHOPPER with cheese','BURGER KING WHOPPER W/ CHS',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21254,2100,'BURGER KING DOUBLE WHOPPER no cheese','BURGER KING DOUBLE WHOPPER NO CHS',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21255,2100,'BURGER KING DOUBLE WHOPPER with cheese','BURGER KING DOUBLE WHOPPER W/ CHS',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21256,2100,'BURGER KING Chicken Strips','BURGER KING CHICK STRIPS',,'Burger King Corporation',,,0,,,4.00,9.00,4.00 -21258,2100,'BURGER KING Premium Fish Sandwich','BURGER KING PREMIUM FISH SNDWCH',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21259,2100,'BURGER KING Original Chicken Sandwich','BURGER KING ORIGINAL CHICK SNDWCH',,'Burger King Corporation',,,0,,6.25,4.00,9.00,4.00 -21260,2100,'TACO BELL Original Taco with beef cheese and lettuce','TACO BELL ORIGINAL TACO W/ BF CHS & LETTUCE',,'Taco Bell Corp.',,,0,,,,, -21261,2100,'TACO BELL Soft Taco with beef cheese and lettuce','TACO BELL SOFT TACO W/ BF CHS & LETTUCE',,'Taco Bell Corp.',,,0,,,,, -21262,2100,'TACO BELL Soft Taco with chicken cheese and lettuce','TACO BELL SOFT TACO W/ CHICK CHS & LETTUCE',,'Taco Bell Corp.',,,0,,,,, -21263,2100,'TACO BELL Soft Taco with steak','TACO BELL SOFT TACO W/ STEAK',,'Taco Bell Corp.',,,0,,,,, -21264,2100,'TACO BELL Bean Burrito','TACO BELL BEAN BURRITO',,'Taco Bell Corp.',,,0,,,,, -21265,2100,'TACO BELL BURRITO SUPREME with beef','TACO BELL BURRITO SUPREME W/ BF',,'Taco Bell Corp.',,,0,,,,, -21266,2100,'TACO BELL BURRITO SUPREME with chicken','TACO BELL BURRITO SUPREME W/ CHICK',,'Taco Bell Corp.',,,0,,,,, -21267,2100,'TACO BELL BURRITO SUPREME with steak','TACO BELL BURRITO SUPREME W/ STEAK',,'Taco Bell Corp.',,,0,,,,, -21268,2100,'TACO BELL Nachos','TACO BELL NACHOS',,'Taco Bell Corp.',,,0,,,,, -21269,2100,'TACO BELL Nachos Supreme','TACO BELL NACHOS SUPREME',,'Taco Bell Corp.',,,0,,,,, -21270,2100,'TACO BELL Taco Salad','TACO BELL TACO SALAD',,'Taco Bell Corp.',,,0,,,,, -21271,2100,'PIZZA HUT 12in Cheese Pizza Hand-Tossed Crust','PIZZA HUT 12in CHS PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21272,2100,'PIZZA HUT 12in Cheese Pizza Pan Crust','PIZZA HUT 12in CHS PIZZA PAN CRUST',,'Pizza Hut Inc.',,,0,,,,, -21273,2100,'PIZZA HUT 12in Cheese Pizza THIN N CRISPY Crust','PIZZA HUT 12in CHS PIZZA THIN N CRISPY CRUST',,'Pizza Hut Inc.',,,0,,,,, -21274,2100,'PIZZA HUT 12in Pepperoni Pizza Hand-Tossed Crust','PIZZA HUT 12in PEPPERONI PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21275,2100,'PIZZA HUT 12in Pepperoni Pizza Pan Crust','PIZZA HUT 12in PEPPERONI PIZZA PAN CRUST',,'Pizza Hut Inc.',,,0,,,,, -21276,2100,'PIZZA HUT 12in Super Supreme Pizza Hand-Tossed Crust','PIZZA HUT 12in SUPER SUPREME PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,,4.00 -21277,2100,'DOMINOS 14in Cheese Pizza Classic Hand-Tossed Crust','DOMINOS 14in CHS PIZZA CLASSIC HAND-TOSSED CRUST',,'Dominos Pizza LLC',,,0,,,,, -21278,2100,'DOMINOS 14in Cheese Pizza Ultimate Deep Dish Crust','DOMINOS 14in CHS PIZZA ULTIMATE DEEP DISH CRUST',,'Dominos Pizza LLC',,,0,,,,, -21279,2100,'DOMINOS 14in Cheese Pizza Crunchy Thin Crust','DOMINOS 14in CHS PIZZA CRUNCHY THIN CRUST',,'Dominos Pizza LLC',,,0,,,,, -21280,2100,'DOMINOS 14in Pepperoni Pizza Classic Hand-Tossed Crust','DOMINOS 14in PEPPERONI PIZZA CLASSIC HAND-TOSSED CRUST',,'Dominos Pizza LLC',,,0,,,,, -21281,2100,'DOMINOS 14in Pepperoni Pizza Ultimate Deep Dish Crust','DOMINOS 14in PEPPERONI PIZZA ULTIMATE DEEP DISH CRUST',,'Dominos Pizza LLC',,,0,,,,, -21282,2100,'DOMINOS 14in EXTRAVAGANZZA FEAST Pizza Classic Hand-Tossed Crust','DOMINOS 14in EXTRAVAGANZZA FST PIZZA CLSSIC HAND-TOSSED CRST',,'Dominos Pizza LLC',,,0,,,,, -21283,2100,'PAPA JOHNS 14in Cheese Pizza Original Crust','PAPA JOHNS 14in CHS PIZZA ORIGINAL CRUST',,'Papa Johns International Inc.',,,0,,,,, -21284,2100,'PAPA JOHNS 14in Pepperoni Pizza Original Crust','PAPA JOHNS 14in PEPPERONI PIZZA ORIGINAL CRUST',,'Papa Johns International Inc.',,,0,,,,, -21285,2100,'PAPA JOHNS 14in The Works Pizza Original Crust','PAPA JOHNS 14in THE WORKS PIZZA ORIGINAL CRUST',,'Papa Johns International Inc.',,,0,,,,, -21286,2100,'PAPA JOHNS 14in Cheese Pizza Thin Crust','PAPA JOHNS 14in CHS PIZZA THIN CRUST',,'Papa Johns International Inc.',,,0,,,,, -21287,2100,'LITTLE CAESARS 14in Original Round Cheese Pizza Regular Crust','LITTLE CAESARS 14in ORIGINAL RND CHS PIZZA REG CRUST',,'Little Caesars Pizza',,,0,,,,, -21288,2100,'LITTLE CAESARS 14in Original Round Pepperoni Pizza Regular Crust','LITTLE CAESARS 14in ORIGINAL RND PEPPERONI PIZZA REG CRUST',,'Little Caesars Pizza',,,0,,,,, -21289,2100,'LITTLE CAESARS 14in Original Round Meat and Vegetable Pizza Regular Crust','LITTLE CAESARS 14in ORIGINAL RND MEAT & VEG PIZZA REG CRUST',,'Little Caesars Pizza',,,0,,,,, -21290,2100,'LITTLE CAESARS 14in Cheese Pizza Large Deep Dish Crust','LITTLE CAESARS 14in CHS PIZZA LRG DEEP DISH CRUST',,'Little Caesars Pizza',,,0,,,,, -21291,2100,'LITTLE CAESARS 14in Pepperoni Pizza Large Deep Dish Crust','LITTLE CAESARS 14in PEPPERONI PIZZA LRG DEEP DISH CRUST',,'Little Caesars Pizza',,,0,,,,, -21292,2100,'LITTLE CAESARS 14in Cheese Pizza Thin Crust','LITTLE CAESARS 14in CHS PIZZA THIN CRUST',,'Little Caesars Pizza',,,0,,,,, -21293,2100,'PIZZA HUT 14in Cheese Pizza Hand-Tossed Crust','PIZZA HUT 14in CHS PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21294,2100,'PIZZA HUT 14in Cheese Pizza Pan Crust','PIZZA HUT 14in CHS PIZZA PAN CRUST',,'Pizza Hut Inc.',,,0,,,,, -21295,2100,'PIZZA HUT 14in Cheese Pizza THIN N CRISPY Crust','PIZZA HUT 14in CHS PIZZA THIN N CRISPY CRUST',,'Pizza Hut Inc.',,,0,,,,, -21296,2100,'PIZZA HUT 14in Pepperoni Pizza Hand-Tossed Crust','PIZZA HUT 14in PEPPERONI PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21297,2100,'PIZZA HUT 14in Pepperoni Pizza Pan Crust','PIZZA HUT 14in PEPPERONI PIZZA PAN CRUST',,'Pizza Hut Inc.',,,0,,,,, -21298,2100,'PIZZA HUT 14in Super Supreme Pizza Hand-Tossed Crust','PIZZA HUT 14in SUPER SUPREME PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21299,2100,'Fast Food Pizza Chain 14in pizza cheese topping regular crust','FAST FD PIZZA CHAIN 14in PIZZA CHS TOPPING REG CRUST',,,'Y',,0,,,,, -21300,2100,'Fast Food Pizza Chain 14in pizza cheese topping thick crust','FAST FD PIZZA CHAIN 14in PIZZA CHS TOPPING THICK CRUST',,,'Y',,0,,,,, -21301,2100,'Fast Food Pizza Chain 14in pizza cheese topping thin crust','FAST FD PIZZA CHAIN 14in PIZZA CHS TOPPING THIN CRUST',,,'Y',,0,,,,, -21302,2100,'Fast Food Pizza Chain 14in pizza pepperoni topping regular crust','FAST FD PIZZA CHAIN 14in PIZZA PEPPERONI TOPPING REG CRUST',,,'Y',,0,,,,, -21303,2100,'Fast Food Pizza Chain 14in pizza pepperoni topping thick crust','FAST FD PIZZA CHAIN 14in PIZZA PEPPERONI TOPPING THICK CRUST',,,'Y',,0,,,,, -21304,2100,'Fast Food Pizza Chain 14in pizza meat and vegetable topping regular crust','FAST FD PIZZA CHAIN 14in PIZZA MEAT & VEG TOPPING REG CRUST',,,'Y',,0,,,,, -21305,2100,'Fast foods griddle cake sandwich egg cheese and sausage','FAST FOODS GRIDDLE CAKE SNDWCH EGG CHS & SAUSAGE',,,'Y',,0,,,,, -21306,2100,'Fast foods griddle cake sandwich sausage','FAST FOODS GRIDDLE CAKE SNDWCH SAUSAGE',,,'Y',,0,,,,, -21307,2100,'Fast foods griddle cake sandwich egg cheese and bacon','FAST FOODS GRIDDLE CAKE SNDWCH EGG CHS & BACON',,,'Y',,0,,,,, -21309,2100,'McDONALDS Chicken McNUGGETS','MCDONALDS CHICK MCNUGGETS',,'McDonalds Corporation',,,0,,6.25,,, -21319,2100,'McDONALDS Hash Brown','MCDONALDS HASH BROWN',,'McDonalds Corporation',,,0,,6.25,,, -21321,2100,'McDONALDS Hotcakes (plain)','MCDONALDS HOTCAKES (PLAIN)',,'McDonalds Corporation',,,0,,6.25,,, -21327,2100,'McDONALDS Bacon Egg & Cheese McGRIDDLES','MCDONALDS BACON EGG & CHS MCGRIDDLES',,'McDonalds Corporation',,,0,,,,, -21328,2100,'McDONALDS Sausage McGRIDDLES','MCDONALDS SAUSAGE MCGRIDDLES',,'McDonalds Corporation',,,0,,,,, -21329,2100,'McDONALDS Sausage Egg & Cheese McGRIDDLES','MCDONALDS SAUSAGE EGG & CHS MCGRIDDLES',,'McDonalds Corporation',,,0,,,,, -21333,2100,'McDONALDS Vanilla Reduced Fat Ice Cream Cone','MCDONALDS VANILLA RED FAT ICE CRM CONE',,'McDonalds Corporation',,,0,,,,, -21334,2100,'McDONALDS Strawberry Sundae','MCDONALDS STRAWBERRY SUNDAE',,'McDonalds Corporation',,,0,,,,, -21335,2100,'McDONALDS Hot Caramel Sundae','MCDONALDS HOT CARAMEL SUNDAE',,'McDonalds Corporation',,,0,,,,, -21336,2100,'McDONALDS Hot Fudge Sundae','MCDONALDS HOT FUDGE SUNDAE',,'McDonalds Corporation',,,0,,,,, -21338,2100,'McDONALDS McFLURRY with M&MS CANDIES','MCDONALDS MCFLURRY W/ M&MS CANDIES',,'McDonalds Corporation',,,0,,,,, -21339,2100,'McDONALDS McFLURRY with OREO cookies','MCDONALDS MCFLURRY W/ OREO COOKIES',,'McDonalds Corporation',,,0,,,,, -21340,2100,'McDONALDS Sausage Burrito','MCDONALDS SAUSAGE BURRITO',,'McDonalds Corporation',,,0,,,,, -21341,2100,'McDONALDS BIG BREAKFAST','MCDONALDS BIG BRKFST',,'McDonalds Corporation',,,0,,,,, -21344,2100,'McDONALDS Double Cheeseburger','MCDONALDS DOUBLE CHEESEBURGER',,'McDonalds Corporation',,,0,,,,, -21345,2100,'McDONALDS DOUBLE QUARTER POUNDER with Cheese','MCDONALDS DOUBLE QUARTER POUNDER W/ CHS',,'McDonalds Corporation',,,0,,,,, -21350,2100,'McDONALDS BIG MAC (without Big Mac Sauce)','MCDONALDS BIG MAC (WITHOUT BIG MAC SAUCE)',,'McDonalds Corporation',,,0,,,,, -21355,2100,'McDONALDS McCHICKEN Sandwich','MCDONALDS MCCHICKEN SNDWCH',,'McDonalds Corporation',,,0,,,,, -21356,2100,'McDONALDS McCHICKEN Sandwich (without mayonnaise)','MCDONALDS MCCHICKEN SNDWCH (WITHOUT MAYONNAISE)',,'McDonalds Corporation',,,0,,,,, -21357,2100,'McDONALDS Egg McMUFFIN','MCDONALDS EGG MCMUFFIN',,'McDonalds Corporation',,,0,,,,, -21358,2100,'McDONALDS Sausage McMUFFIN','MCDONALDS SAUSAGE MCMUFFIN',,'McDonalds Corporation',,,0,,,,, -21359,2100,'McDONALDS Sausage McMUFFIN with Egg','MCDONALDS SAUSAGE MCMUFFIN W/ EGG',,'McDonalds Corporation',,,0,,,,, -21360,2100,'McDONALDS Bacon Egg & Cheese Biscuit','MCDONALDS BACON EGG & CHS BISCUIT',,'McDonalds Corporation',,,0,,,,, -21361,2100,'McDONALDS Sausage Biscuit','MCDONALDS SAUSAGE BISCUIT',,'McDonalds Corporation',,,0,,,,, -21362,2100,'McDONALDS Sausage Biscuit with Egg','MCDONALDS SAUSAGE BISCUIT W/ EGG',,'McDonalds Corporation',,,0,,,,, -21363,2100,'McDONALDS Deluxe Breakfast with syrup and margarine','MCDONALDS DELUXE BRKFST W/ SYRUP & MARGARINE',,'McDonalds Corporation',,,0,,,,, -21364,2100,'McDONALDS Hotcakes and Sausage','MCDONALDS HOTCAKES & SAUSAGE',,'McDonalds Corporation',,,0,,,,, -21365,2100,'McDONALDS Hotcakes (with 2 pats margarine & syrup)','MCDONALDS HOTCAKES (WITH 2 PATS MARGARINE & SYRUP)',,'McDonalds Corporation',,,0,,,,, -21376,2100,'McDONALDS Bacon Ranch Salad with Grilled Chicken','MCDONALDS BACON RANCH SALAD W/ GRILLED CHICK',,'McDonalds Corporation',,,0,,,,, -21377,2100,'McDONALDS Bacon Ranch Salad with Crispy Chicken','MCDONALDS BACON RANCH SALAD W/ CRISPY CHICK',,'McDonalds Corporation',,,0,,,,, -21378,2100,'McDONALDS Bacon Ranch Salad without chicken','MCDONALDS BACON RANCH SALAD WO/ CHICK',,'McDonalds Corporation',,,0,,,,, -21379,2100,'McDONALDS Side Salad','MCDONALDS SIDE SALAD',,'McDonalds Corporation',,,0,,,,, -21380,2100,'McDONALDS Fruit n Yogurt Parfait','MCDONALDS FRUIT N YOGURT PARFAIT',,'McDonalds Corporation',,,0,,,,, -21381,2100,'McDONALDS Fruit n Yogurt Parfait (without granola)','MCDONALDS FRUIT N YOGURT PARFAIT (WITHOUT GRANOLA)',,'McDonalds Corporation',,,0,,,,, -21382,2100,'McDONALDS FILET-O-FISH (without tartar sauce)','MCDONALDS FILET-O-FISH (WITHOUT TARTAR SAUCE)',,'McDonalds Corporation',,,0,,,,, -21383,2100,'BURGER KING CROISSANWICH with Sausage Egg and Cheese','BURGER KING CROISSANWICH W/ SAUSAGE EGG & CHS',,'Burger King Corporation',,,0,,,,, -21384,2100,'BURGER KING CROISSANWICH with Sausage and Cheese','BURGER KING CROISSANWICH W/ SAUSAGE & CHS',,'Burger King Corporation',,,0,,,,, -21385,2100,'BURGER KING CROISSANWICH with Egg and Cheese','BURGER KING CROISSANWICH W/ EGG & CHS',,'Burger King Corporation',,,0,,,,, -21386,2100,'BURGER KING french toast sticks','BURGER KING FRENCH TOAST STKS',,'Burger King Corporation',,,0,,,,, -21387,2100,'BURGER KING Hash Brown Rounds','BURGER KING HASH BROWN ROUNDS',,'Burger King Corporation',,,0,,,,, -21388,2100,'Fast foods miniature cinnamon rolls','FAST FOODS MINIATURE CINN ROLLS',,,,,0,,,4.00,9.00,4.00 -21389,2100,'Fast foods hamburger; double large patty; with condiments vegetables and mayonnaise','FAST FOODS HAMBURGER; DOUBLE LRG PATY; W/ CONDMNT VEG & MAYO',,,'Y',,0,,6.25,4.00,9.00,4.00 -21390,2100,'Fast foods hamburger; single large patty; with condiments vegetables and mayonnaise','FT FDS HAMBRGER; SIN LRG PATTY; W/ CONDMNTS VEG MAYO',,,'Y',,0,,,,, -21393,2100,'Fast foods hamburger; single regular patty; double decker bun with condiments and special sauce','FAST FOODS HMBURGR; SNG REG PTTY; DBL BN W/ CNDMNT & SPL SAU',,,,,0,,6.25,4.00,9.00,4.00 -21395,2100,'Fast foods cheeseburger; double regular patty; with condiments','FAST FOODS CHEESEBURGER; DOUBLE REG PATTY; W/ CONDMNT',,,'Y',,0,,,4.00,9.00,4.00 -21396,2100,'Fast foods cheeseburger; double large patty; with condiments','FAST FOODS CHEESEBURGER; DOUBLE LRG PATTY; W/ CONDMNT',,,,,0,,,,, -21397,2100,'Fast foods cheeseburger; single large patty; with condiments vegetables and mayonnaise','FAST FOODS CHESEBRGER; SING LRG PATY; W/ CONDMNT VEG & MAYO',,,'Y',,0,,,,, -21398,2100,'Fast foods cheeseburger; single large patty; with condiments','FAST FOODS CHEESEBURGER; SINGLE LRG PATTY; W/ CONDMNT',,,'Y',,0,,,,, -21399,2100,'Fast Foods cheeseburger; double large patty; with condiments vegetables and mayonnaise','FAST FDS CHSEBURGER; DOUBLE LRG PATTY; W/ CONDMNT VEG & MAYO',,,'Y',,0,,,,, -21400,2100,'Fast foods cheeseburger; double regular patty; double decker bun with condiments and special sauce','FAST FOODS CHSBURGR; DBL RG PTTY; DBL BN W/ CNDMNT & SPL SAU',,,'Y',,0,,6.25,4.00,9.00,4.00 -21401,2100,'Fast foods chicken tenders','FAST FOODS CHICK TENDERS','chicken strips',,'Y',,0,,,,, -21410,2100,'Fast foods bagel with egg sausage patty cheese and condiments','FAST FOODS BAGEL W/ EGG SAUSAGE PATTY CHS & CONDMNT',,,'Y',,0,,,4.00,9.00,4.00 -21411,2100,'Fast foods bagel with breakfast steak egg cheese and condiments','FAST FOODS BAGEL W/ BRKFST STEAK EGG CHS & CONDMNT',,,'Y',,0,,,4.00,9.00,4.00 -21412,2100,'Light Ice Cream soft serve blended with milk chocolate candies','LIGHT ICE CRM SOFT SERVE BLENDED W/ MILK CHOC CANDIES',,,'Y',,0,,,,, -21413,2100,'Light Ice Cream soft serve blended with cookie pieces','LIGHT ICE CRM SOFT SERVE BLENDED W/ COOKIE PIECES',,,'Y',,0,,,,, -21415,2100,'POPEYES biscuit','POPEYES BISCUIT',,'Popeyes Chicken and Biscuits',,,0,,,,, -21416,2100,'POPEYES Coleslaw','POPEYES COLESLAW',,'Popeyes Chicken and Biscuits',,,0,,,,, -21417,2100,'POPEYES Mild Chicken Strips analyzed 2006','POPEYES MILD CHICK STRIPS ANALYZED 2006',,'Popeyes Chicken and Biscuits',,,0,,,,, -21418,2100,'POPEYES Spicy Chicken Strips analyzed 2006','POPEYES SPICY CHICK STRIPS ANALYZED 2006',,'Popeyes Chicken and Biscuits',,,0,,,,, -21419,2100,'KFC biscuit','KFC BISCUIT','KFC','Kentucky Fried Chicken',,,0,,,,, -21420,2100,'KFC Coleslaw','KFC COLESLAW','KFC','Kentucky Fried Chicken',,,0,,,,, -21421,2100,'KFC Crispy Chicken Strips','KFC CRISPY CHICK STRIPS','KFC','Kentucky Fried Chicken',,,0,,,,, -21422,2100,'KFC Popcorn Chicken','KFC POPCORN CHICK','KFC','Kentucky Fried Chicken',,,0,,,,, -21424,2100,'KFC Fried Chicken ORIGINAL RECIPE Skin and Breading','KFC FRIED CHICK ORIGINAL RECIPE SKN & BREADING','KFC','Kentucky Fried Chicken',,,0,,,,, -21425,2100,'KFC Fried Chicken ORIGINAL RECIPE Breast meat only skin and breading removed','KFC FRIED CHICK ORIGINAL RECIPE BREAST MEAT NLY SKN BRDNG RD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 28%; Cartilage and bone 18%; Handling loss 1%',47,,,,, -21426,2100,'KFC Fried Chicken ORIGINAL RECIPE Drumstick meat only skin and breading removed','KFC FRIED CHICK ORIGINAL RECIPE DRUMSTK MEAT ONLY SKN BRG RD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 23%; Cartilage and bone 24%',47,,,,, -21427,2100,'KFC Fried Chicken ORIGINAL RECIPE Thigh meat only skin and breading removed','KFC FRIED CHICK ORIGINAL RECIPE THIGH MEAT ONLY SKN BRDNG RD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 36%; Cartilage and bone 19%; Handling loss 1%',56,,,,, -21428,2100,'KFC Fried Chicken ORIGINAL RECIPE Wing meat only skin and breading removed','KFC FRIED CHICK ORIGINAL RECIPE WING MEAT ONLY SKN BRDNG RD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 35%; Cartilage and bone 26%; Handling loss 1%',63,,,,, -21429,2100,'KFC Fried Chicken EXTRA CRISPY Skin and Breading','KFC FRIED CHICK EX CRISPY SKN & BREADING','KFC','Kentucky Fried Chicken',,,0,,,,, -21430,2100,'KFC Fried Chicken EXTRA CRISPY Breast meat only skin and breading removed','KFC FRIED CHICK EX CRISPY BREAST MEAT ONLY SKN & BRDING RMVD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 33%; Cartilage and bone 9%',43,,,,, -21431,2100,'KFC Fried Chicken EXTRA CRISPY Drumstick meat only skin and breading removed','KFC FRIED CHICK EX CRISPY DRUMSTK MEAT ONLY SKN & BRDNG RMVD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 28%; Cartilage and bone 21%',49,,,,, -21432,2100,'KFC Fried Chicken EXTRA CRISPY Thigh meat only skin and breading removed','KFC FRIED CHICK EX CRISPY THIGH MEAT ONLY SKN & BRDING RMVD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 40%; Cartilage and bone 13%',53,,,,, -21433,2100,'KFC Fried Chicken EXTRA CRISPY Wing meat only skin and breading removed','KFC FRIED CHICK EX CRISPY WING MEAT ONLY SKN & BRDING REMOVD','KFC','Kentucky Fried Chicken',,'Skin subcutaneous fat and breading 34%; Cartilage and bone 24%',58,,,,, -21434,2100,'KFC Fried Chicken ORIGINAL RECIPE Breast meat and skin with breading','KFC FRIED CHICK ORIGINAL RECIPE BREAST MEAT & SKN W/ BRDING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',18,,,,, -21435,2100,'KFC Fried Chicken ORIGINAL RECIPE Drumstick meat and skin with breading','KFC FRIED CHICK ORIGINAL RECIPE DRUMSTK MEAT & SKN W/ BRDING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',24,,,,, -21436,2100,'KFC Fried Chicken ORIGINAL RECIPE Thigh meat and skin with breading','KFC FRIED CHICK ORIGINAL RECIPE THIGH MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',19,,,,, -21437,2100,'KFC Fried Chicken ORIGINAL RECIPE Wing meat and skin with breading','KFC FRIED CHICK ORIGINAL RECIPE WING MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',26,,,,, -21438,2100,'KFC Fried Chicken EXTRA CRISPY Breast meat and skin with breading','KFC FRIED CHICK EX CRISPY BREAST MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',9,,,,, -21439,2100,'KFC Fried Chicken EXTRA CRISPY Drumstick meat and skin with breading','KFC FRIED CHICK EX CRISPY DRUMSTK MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',21,,,,, -21440,2100,'KFC Fried Chicken EXTRA CRISPY Thigh meat and skin with breading','KFC FRIED CHICK EX CRISPY THIGH MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',13,,,,, -21441,2100,'KFC Fried Chicken EXTRA CRISPY Wing meat and skin with breading','KFC FRIED CHICK EX CRISPY WING MEAT & SKN W/ BREADING','KFC','Kentucky Fried Chicken',,'Cartilage and bone',24,,,,, -21442,2100,'POPEYES Fried Chicken Mild Breast meat only skin and breading removed','POPEYES CHICK MILD BREAST MEAT ONLY SKN & BRDING REMOVED',,'Popeyes Chicken and Biscuits',,'Skin subcutaneous fat and breading 32%; Cartilage and bone 17%; Handling loss 1%',50,,,,, -21443,2100,'POPEYES Fried Chicken Mild Drumstick meat only skin and breading removed','POPEYES FRIED CHICK MILD DRUMSTK MEAT ONLY SKN & BREADING RE',,'Popeyes Chicken and Biscuits',,'Skin subcutaneous fat and breading 22%; Cartilage and bone 20%',42,,,,, -21444,2100,'POPEYES Fried Chicken Mild Skin and Breading','POPEYES FRIED CHICK MILD SKN & BREADING',,'Popeyes Chicken and Biscuits',,,0,,,,, -21445,2100,'POPEYES Fried Chicken Mild Thigh meat only skin and breading removed','POPEYES FRIED CHCK MILD THIGH MEAT ONLY SKN & BRDING REMOVED',,'Popeyes Chicken and Biscuits',,'Skin subcutaneous fat and breading 40%; Cartilage and bone 20%',60,,,,, -21446,2100,'POPEYES Fried Chicken Mild Wing meat only skin and breading removed','POPEYES FRIED CHICK MILD WING MEAT ONLY SKN & BRDING REMOVED',,'Popeyes Chicken and Biscuits',,'Skin subcutaneous fat and breading 38%; Cartilage and bone 32%; Handling loss 1%',72,,,,, -21456,2100,'POPEYES Fried Chicken Mild Breast meat and skin with breading','POPEYES FRIED CHICK MILD BREAST MEAT & SKN W/ BREADING',,'Popeyes Chicken and Biscuits',,'Cartilage and bone',17,,,,, -21457,2100,'POPEYES Fried Chicken Mild Drumstick meat and skin with breading','POPEYES FRIED CHICK MILD DRUMSTK MEAT & SKN W/ BREADING',,'Popeyes Chicken and Biscuits',,'Cartilage and bone',20,,,,, -21458,2100,'POPEYES Fried Chicken Mild Thigh meat and skin with breading','POPEYES FRIED CHICK MILD THIGH MEAT & SKN W/ BREADING',,'Popeyes Chicken and Biscuits',,'Cartilage and bone',20,,,,, -21459,2100,'POPEYES Fried Chicken Mild Wing meat and skin with breading','POPEYES FRIED CHICK MILD WING MEAT & SKN W/ BREADING',,'Popeyes Chicken and Biscuits',,'Cartilage and bone',32,,,,, -21461,2100,'Fast foods grilled chicken bacon and tomato club sandwich with cheese lettuce and mayonnaise','GRILLED CHICK BACON & TOMO CLB SNDWCH W/ CHS LETTUCE & MAYO',,,'Y',,0,,,,, -21462,2100,'Fast foods crispy chicken bacon and tomato club sandwich with cheese lettuce and mayonnaise','CRISPY CHICK BACON & TOMATO CLUB SNDWCH W/ CHS LETUCE & MAYO',,,'Y',,0,,,,, -21463,2100,'Yogurt parfait lowfat with fruit and granola','YOGURT PARFAIT LOWFAT W/ FRUIT & GRANOLA',,,'Y',,0,,,,, -21464,2100,'Fast Foods Fried Chicken Breast meat only skin and breading removed','FAST FOODS FRIED CHICK BREAST MEAT ONLY SKN & BRDING REMOVED',,,'Y','Skin subcutaneous fat and breading 30%; Cartilage and bone 17%; Handling loss 1%',48,,,,, -21465,2100,'Fast Foods Fried Chicken Drumstick meat only skin and breading removed','FAST FOODS FRIED CHICK DRMSTK MEAT ONLY SKN & BRDING REMOVED',,,'Y','Skin subcutaneous fat and breading 24.5% Cartilage and bone 22%',47,,,,, -21466,2100,'Fast Foods Fried Chicken Thigh meat only skin and breading removed','FAST FOODS FRIED CHICK THIGH MEAT ONLY SKN & BREDING REMOVED',,,'Y','Skin subcutaneous fat and breading 38%; Cartilage and bone 13.6%',52,,,,, -21467,2100,'Fast Foods Fried Chicken Wing meat only skin and breading removed','FAST FOODS FRIED CHICK WING MEAT ONLY SKN & BREADING REMOVED',,,'Y','Skin subcutaneous fat and breading 37%; Cartilage and bone 29%; Handling loss 1%',67,,,,, -21468,2100,'Fast Foods Fried Chicken Skin and breading from all pieces','FAST FOODS FRIED CHICK SKN & BREADING FROM ALL PIECES',,,,,0,,,,, -21469,2100,'Fast Foods Fried Chicken Breast meat and skin and breading','FAST FOODS FRIED CHICK BREAST MEAT & SKN & BREADING',,,'Y','Cartilage and bone',18,,,,, -21470,2100,'Fast Foods Fried Chicken Drumstick meat and skin with breading','FAST FOODS FRIED CHICK DRUMSTK MEAT & SKN W/ BREADING',,,'Y','Cartilage and bone',22,,,,, -21471,2100,'Fast Foods Fried Chicken Thigh meat and skin and breading','FAST FOODS FRIED CHICK THIGH MEAT & SKN & BREADING',,,'Y','Cartilage and bone',14,,,,, -21472,2100,'Fast Foods Fried Chicken Wing meat and skin and breading','FAST FOODS FRIED CHICK WING MEAT & SKN & BREADING',,,'Y','Cartilage and bone',29,,,,, -21473,2100,'DIGIORNO Pizza cheese topping cheese stuffed crust frozen baked','DIGIORNO PIZZA CHS TOPPING CHS STUFFED CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21474,2100,'DIGIORNO Pizza cheese topping rising crust frozen baked','DIGIORNO PIZZA CHS TOPPING RISING CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21475,2100,'DIGIORNO Pizza cheese topping thin crispy crust frozen baked','DIGIORNO PIZZA CHS TOPPING THIN CRISPY CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21476,2100,'DIGIORNO Pizza pepperoni topping cheese stuffed crust frozen baked','DIGIORNO PIZZA PEPPERONI TOPPING CHS STUFFED CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21477,2100,'DIGIORNO Pizza pepperoni topping rising crust frozen baked','DIGIORNO PIZZA PEPPERONI TOPPING RISING CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21478,2100,'DIGIORNO Pizza pepperoni topping thin crispy crust frozen baked','DIGIORNO PIZZA PEPPERONI TOPPING THIN CRISPY CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21479,2100,'DIGIORNO Pizza supreme topping rising crust frozen baked','DIGIORNO PIZZA SUPREME TOPPING RISING CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21480,2100,'DIGIORNO Pizza supreme topping thin crispy crust frozen baked','DIGIORNO PIZZA SUPREME TOPPING THIN CRISPY CRUST FRZ BKD',,'Kraft Foods Inc.',,,0,,,,, -21482,2100,'Fast Food Pizza Chain 14in pizza sausage topping thick crust','FAST FD PIZZA CHAIN 14in PIZZA SAUSAGE TOPPING THICK CRUST',,,'Y',,0,,,,, -21483,2100,'Fast Food Pizza Chain 14in pizza sausage topping thin crust','FAST FD PIZZA CHAIN 14in PIZZA SAUSAGE TOPPING THIN CRUST',,,'Y',,0,,,,, -21484,2100,'Fast Food Pizza Chain 14in pizza sausage topping regular crust','FAST FD PIZZA CHAIN 14in PIZZA SAUSAGE TOPPING REG CRUST',,,'Y',,0,,,,, -21485,2100,'Fast Food Pizza Chain 14in pizza pepperoni topping thin crust','FAST FD PIZZA CHAIN 14in PIZZA PEPPERONI TOPPING THIN CRUST',,,'Y',,0,,,,, -21486,2100,'Fast foods taco with beef cheese and lettuce soft','FAST FOODS TACO W/ BF CHS & LETTUCE SOFT',,,'Y',,0,,,,, -21487,2100,'Fast foods taco with chicken lettuce and cheese soft','FAST FOODS TACO W/ CHICK LETTUCE & CHS SOFT',,,'Y',,0,,,,, -21488,2100,'Fast foods quesadilla with chicken','FAST FOODS QUESADILLA W/ CHICK',,,'Y',,0,,,,, -21490,2100,'Fast Foods grilled chicken filet sandwich with lettuce tomato and spread','FAST FDS GRILLED CHICK FILET SNDWCH W/ LETTUCE TOMATO & SPRD',,,'Y',,0,,6.25,,, -21491,2100,'PIZZA HUT 14in Pepperoni Pizza THIN N CRISPY Crust','PIZZA HUT 14in PEPPERONI PIZZA THIN N CRISPY CRUST',,'Pizza Hut Inc.',,,0,,,,, -21492,2100,'DOMINOS 14in Pepperoni Pizza Crunchy Thin Crust','DOMINOS 14in PEPPERONI PIZZA CRUNCHY THIN CRUST',,'Dominos Pizza LLC',,,0,,,,, -21493,2100,'DOMINOS 14in Sausage Pizza Crunchy Thin Crust','DOMINOS 14in SAUSAGE PIZZA CRUNCHY THIN CRUST',,'Dominos Pizza LLC',,,0,,,,, -21494,2100,'DOMINOS 14in Sausage Pizza Classic Hand-Tossed Crust','DOMINOS 14in SAUSAGE PIZZA CLASSIC HAND-TOSSED CRUST',,'Dominos Pizza LLC',,,0,,,,, -21495,2100,'DOMINOS 14in Sausage Pizza Ultimate Deep Dish Crust','DOMINOS 14in SAUSAGE PIZZA ULTIMATE DEEP DISH CRUST',,'Dominos Pizza LLC',,,0,,,,, -21496,2100,'PIZZA HUT 14in Sausage Pizza THIN N CRISPY Crust','PIZZA HUT 14in SAUSAGE PIZZA THIN N CRISPY CRUST',,'Pizza Hut Inc.',,,0,,,,, -21497,2100,'PIZZA HUT 14in Sausage Pizza Hand-Tossed Crust','PIZZA HUT 14in SAUSAGE PIZZA HAND-TOSSED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21498,2100,'PIZZA HUT 14in Sausage Pizza Pan Crust','PIZZA HUT 14in SAUSAGE PIZZA PAN CRUST',,'Pizza Hut Inc.',,,0,,,,, -21505,2100,'Pizza cheese topping thin crust frozen cooked','PIZZA CHS TOPPING THIN CRUST FRZ CKD',,,'Y',,0,,,,, -21506,2100,'BURGER KING Double Cheeseburger','BURGER KING DOUBLE CHEESEBURGER',,'Burger King Corporation',,,0,,,,, -21507,2100,'WENDYS Double Stack with cheese','WENDYS DOUBLE STACK W/ CHS',,'Wendys International Inc.',,,0,,,,, -21508,2100,'WENDYS Crispy Chicken Sandwich','WENDYS CRISPY CHICK SNDWCH',,'Wendys International Inc.',,,0,,,,, -21509,2100,'BURGER KING Onion Rings','BURGER KING ONION RINGS',,'Burger King Corporation',,,0,,,,, -21510,2100,'WENDYS DAVES Hot N Juicy 1/4 LB single','WENDYS DAVES HOT N JUICY 1/4 LB SINGLE',,'Wendys International Inc.',,,0,,,,, -21511,2100,'Fast Food Pizza Chain 14in pizza cheese topping stuffed crust','FAST FD PIZZA CHAIN 14in PIZZA CHS TOPPING STUFFED CRUST',,,'Y',,0,,,,, -21512,2100,'PIZZA HUT 14in Cheese Pizza Stuffed Crust','PIZZA HUT 14in CHS PIZZA STUFFED CRUST',,'Pizza Hut Inc.',,,0,,,,, -21517,2100,'Fast foods crispy chicken in tortilla with lettuce cheese and ranch sauce','FAST FOODS CRISPY CHICK IN TORTILLA W/ LTTC CHS & RANCH SAU','snack wrap',,'Y',,0,,,,, -21518,2100,'Fast foods grilled chicken in tortilla with lettuce cheese and ranch sauce','FAST FOODS GRILLED CHICK IN TORTILLA W/ LTTC CHS & RANCH SAU','wrap snack',,'Y',,0,,,,, -21519,2100,'Fast foods breakfast burrito with egg cheese and sausage','FAST FOODS BRKFST BURRITO W/ EGG CHS & SAUSAGE',,,'Y',,0,,,,, -21520,2100,'Fast foods breadstick soft prepared with garlic and parmesan cheese','FAST FOODS BREADSTICK SOFT PREP W/ GARLIC & PARMESAN CHS',,,'Y',,0,,,,, -21521,2100,'Fast foods strawberry banana smoothie made with ice and low-fat yogurt','FAST FOODS STRWBY BANANA SMTH MADE W/ ICE & LOW-FAT YOGURT',,,'Y',,0,,6.25,,, -21522,2100,'McDONALDS Southern Style Chicken Biscuit','MCDONALDS SOUTHERN STYLE CHICK BISCUIT',,'McDonalds Corporation',,,0,,,,, -21523,2100,'McDONALDS RANCH SNACK WRAP Crispy','MCDONALDS RANCH SNACK WRAP CRISPY',,'McDonalds Corporation',,,0,,,,, -21524,2100,'McDONALDS RANCH SNACK WRAP Grilled','MCDONALDS RANCH SNACK WRAP GRILLED',,'McDonalds Corporation',,,0,,,,, -21525,2100,'PIZZA HUT breadstick parmesan garlic','PIZZA HUT BREADSTICK PARMESAN GARLIC',,'Pizza Hut Inc.',,,0,,,,, -21526,2100,'CHICK-FIL-A chicken sandwich','CHICK-FIL-A CHICK SNDWCH',,'Chick-Fil-A',,,0,,,,, -21527,2100,'ARBYS roast beef sandwich classic','ARBYS RST BF SNDWCH CLASSIC',,'ARBYS',,,0,,,,, -21600,2100,'School Lunch pizza cheese topping thin crust whole grain frozen cooked','SCHOOL LUNCH PIZZA CHS TOPPING THIN CRUST WHL GRAIN FRZ CKD','school lunch',,'Y',,0,,,,, -21601,2100,'School Lunch pizza cheese topping thick crust whole grain frozen cooked','SCHOOL LUNCH PIZZA CHS TOPPING THICK CRUST WHL GRAIN FRZ CKD','school lunch',,'Y',,0,,,,, -21602,2100,'School Lunch pizza pepperoni topping thin crust whole grain frozen cooked','SCHOOL LUNCH PIZZA PEPPI TOPPING THIN CRUST WHL GRN FRZ CKD','school lunch',,'Y',,0,,,,, -21603,2100,'School Lunch pizza pepperoni topping thick crust whole grain frozen cooked','SCHOOL LUNCH PIZZA PEPP TOPPING THICK CRUST WHL GRN FRZ CKD','school lunch',,'Y',,0,,,,, -21604,2100,'School Lunch pizza sausage topping thin crust whole grain frozen cooked','SCHOOL LUNCH PIZZA SSAGE TOPPING THIN CRST WHL GRAIN FRZ CKD','school lunch',,'Y',,0,,6.25,,, -21605,2100,'School Lunch pizza sausage topping thick crust whole grain frozen cooked','SCHOOL LUNCH PIZZA SAUSAGE TOP THICK CRUST WHL GRN FRZ CKD','school lunch',,'Y',,0,,,,, -21610,2100,'School Lunch chicken patty whole grain breaded','SCHOOL LUNCH CHICK PATTY WHL GRAIN BREADED','school lunch',,'Y',,0,,,,, -21611,2100,'School Lunch chicken nuggets whole grain breaded','SCHOOL LUNCH CHICK NUGGETS WHL GRAIN BREADED',,,'Y',,0,,,4.00,9.00,4.00 -22247,2200,'Macaroni and Cheese canned entree','MACARONI & CHS CND ENTREE',,,'Y',,0,,,,, -22401,2200,'Spaghetti with meat sauce frozen entree','SPAGHETTI W/ MEAT SAU FRZ ENTREE',,,'Y',,0,,5.80,4.00,9.00,4.00 -22402,2200,'Beef macaroni with tomato sauce frozen entree reduced fat','BEEF MACARONI W/ TOMATO SAU FRZ ENTREE RED FAT',,,,,0,,5.80,4.00,9.00,4.00 -22522,2200,'Pasta with Sliced Franks in Tomato Sauce canned entree','PASTA W/SLICED FRANKS IN TOMATO SAU CND ENTREE',,,'Y',,0,,6.25,4.00,9.00,4.00 -22528,2200,'Turkey Pot Pie frozen entree','TURKEY POT PIE FRZ ENTREE',,,,,0,,,,, -22529,2200,'Beef Pot Pie frozen entree prepared','BEEF POT PIE FRZ ENTREE PREP',,,,,0,,,,, -22535,2200,'HOT POCKETS CROISSANT POCKETS Chicken Broccoli and Cheddar Stuffed Sandwich frozen','HOT POCKETS CROISSANT POCKTS CHIK BROC&CHDR STUFD SNDWCH FRZ',,'Nestle USA Inc.','Y',,0,,,,, -22537,2200,'HOT POCKETS Ham N Cheese Stuffed Sandwich frozen','HOT POCKETS HAM N CHS STUFFED SNDWCH FRZ',,'Nestle USA Inc.','Y',,0,,,,, -22899,2200,'Ravioli cheese-filled canned','RAVIOLI CHEESE-FILLED CND',,,'Y',,0,,,,, -22900,2200,'Ravioli meat-filled with tomato sauce or meat sauce canned','RAVIOLI MEAT-FILLED W/ TOMATO SAU OR MEAT SAU CND',,,'Y',,0,,,,, -22901,2200,'Tortellini pasta with cheese filling fresh-refrigerated as purchased','TORTELLINI PASTA W/ CHS FILLING FRESH-REFRIGERATED',,,'Y',,0,,6.04,4.00,9.00,4.00 -22902,2100,'Pizza meat topping thick crust frozen cooked','PIZZA MEAT TOPPING THICK CRUST FRZ CKD',,,'Y',,0,,,,, -22903,2100,'Pizza pepperoni topping regular crust frozen cooked','PIZZA PEPPERONI TOPPING REG CRUST FRZ CKD',,,'Y',,0,,,4.00,9.00,4.00 -22904,2200,'Chili con carne with beans canned entree','CHILI CON CARNE W/BNS CND ENTREE',,,'Y',,0,,,,, -22905,2200,'Beef stew canned entree','BEEF STEW CANNED ENTREE',,,'Y',,0,,,,, -22906,2200,'Chicken pot pie frozen entree prepared','CHICKEN POT PIE FRZ ENTREE PREP',,,'Y',,0,,,,, -22908,2200,'Beef corned beef hash with potato canned','BEEF CORNED BF HASH W/ POTATO CND',,'Hormel Foods Corp.','Y',,0,,6.25,,, -22910,2200,'Lasagna cheese frozen prepared','LASAGNA CHS FRZ PREP',,,'Y',,0,,6.25,,, -22911,2200,'Chili no beans canned entree','CHILI NO BNS CND ENTREE',,,'Y',,0,,,,, -22912,2200,'Spaghetti with meatballs in tomato sauce canned','SPAGHETTI W/ MEATBALLS IN TOMATO SAU CND',,,'Y',,0,,6.25,,, -22914,2200,'Pasta with tomato sauce no meat canned','PASTA W/ TOMATO SAU NO MEAT CND',,,'Y',,0,,,,, -22915,2200,'Lasagna with meat & sauce low-fat frozen entree','LASAGNA W/ MEAT & SAU LOW-FAT FRZ ENTREE',,,,,0,,,,, -22916,2200,'Lasagna with meat & sauce frozen entree','LASAGNA W/ MEAT & SAU FRZ ENTREE',,,'Y',,0,,,,, -22917,2200,'Burrito beef and bean frozen','BURRITO BF & BEAN FRZ',,,,,0,,,,, -22918,2200,'Burrito bean and cheese frozen','BURRITO BEAN AND CHEESE FROZEN',,,,,0,,,,, -22919,2200,'Macaroni and Cheese canned microwavable','MACARONI & CHS CND MICROWAVABLE',,,,,0,,,,, -22928,2200,'Burrito beef and bean microwaved','BURRITO BF & BEAN MICROWAVED',,,,,0,,,,, -22953,2200,'Egg rolls pork refrigerated heated','EGG ROLLS PORK REFR HTD',,,'Y',,0,,6.25,,, -22954,2200,'Egg rolls chicken refrigerated heated','EGG ROLLS CHICK REFR HTD',,,'Y',,0,,6.25,,, -22955,2200,'Egg rolls vegetable frozen prepared','EGG ROLLS VEG FRZ PREP',,,'Y',,0,,6.25,,, -22956,2200,'Lasagna Vegetable frozen baked','LASAGNA VEG FRZ BKD',,,,,0,,,,, -22957,2200,'Turkey stuffing mashed potatoes w/gravy assorted vegetables frozen microwaved','TKY STUFFING MSHD POTATO W/GRAVY ASSORTED VEG FRZ MICROWAVE',,,'Y',,0,,,,, -22958,2200,'Rice bowl with chicken frozen entree prepared (includes fried teriyaki and sweet and sour varieties)','RICE BOWL W/ CHICK FRZ ENTREE PREP',,,'Y',,0,,,,, -22959,2200,'Macaroni and cheese dinner with dry sauce mix boxed uncooked','MACARONI & CHS DINNER W/ DRY SAU MIX BOXED UNCKD',,,'Y',,0,,,,, -22960,2200,'Macaroni and cheese dry mix prepared with 2% milk and 80% stick margarine from dry mix','MAC & CHS DRY MIX PREP W/ 2% MILK & 80% STK MARGARINE DRY MX',,,,,0,,,,, -22961,2200,'HOT POCKETS meatballs & mozzarella stuffed sandwich frozen','HOT POCKETS MEATBALLS & MOZZARELLA STUFFED SNDWCH FRZ',,'Nestle USA Inc.','Y',,0,,,,, -22962,2200,'LEAN POCKETS Ham N Cheddar','LEAN POCKETS HAM N CHEDDAR',,'Nestle USA Inc.','Y',,0,,,,, -22963,2200,'Lean Pockets Meatballs & Mozzarella','LEAN POCKETS MEATBALLS & MOZZARELLA',,,,,0,,,,, -22969,2200,'Chili with beans microwavable bowls','CHILI W/ BNS MICROWAVABLE BOWLS',,,,,0,,,,, -22970,2200,'Macaroni and cheese frozen entree','MACARONI & CHS FRZ ENTREE',,,,,0,,,,, -22971,2200,'Potato salad with egg','POTATO SALAD W/ EGG',,,'Y',,0,,,,, -22972,2200,'Pulled pork in barbecue sauce','PULLED PORK IN BARBECUE SAU',,,,,0,,,,, -22973,2200,'Corn dogs frozen prepared','CORN DOGS FRZ PREP',,,'Y',,0,,,,, -22974,2200,'Chicken nuggets dark and white meat precooked frozen not reheated','CHICKEN NUGGETS DK & WHITE MEAT PRECKD FRZ NOT REHTD',,,'Y',,0,,,,, -22975,2200,'Chicken nuggets white meat precooked frozen not reheated','CHICKEN NUGGETS WHITE MEAT PRECKD FRZ NOT REHTD',,,,,0,,,,, -22976,2200,'Ravioli cheese with tomato sauce frozen not prepared includes regular and light entrees','RAVIOLI CHS W/ TOMATO SAU FRZ NOT PREP INCL REG & LT ENTREES',,,'Y',,0,,,,, -22977,2200,'Lasagna with meat sauce frozen prepared','LASAGNA W/ MEAT SAU FRZ PREP',,,'Y',,0,,6.25,,, -22978,2200,'Chicken tenders breaded frozen prepared','CHICKEN TENDERS BREADED FRZ PREP',,,'Y',,0,,,,, -22998,2200,'RICE-A-RONI chicken flavor unprepared','RICE-A-RONI CHICK FLAVOR UNPREP',,,'Y',,0,,,,, -22999,2200,'Rice and vermicelli mix chicken flavor prepared with 80% margarine','RICE & VERMICELLI MIX CHICK FLAVOR PREP W/ 80% MARGARINE',,,,,0,,,,, -23000,1300,'Beef shoulder pot roast or steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF SHLDR POT RST OR STK BNLS LN & FAT 0in FAT ALL GRDS R','URMIS #1133 URMIS #1132',,,'Connective tissue 6%',6,,6.25,,, -23001,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN PRTRHS STEAK LN&FAT 1/8inFAT ALL GRDS RAW','Porterhouse steak',,,'Bone and connective tissue 23%',23,,6.25,4.27,9.02,3.87 -23002,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF SHRT LN PRTRHS STK LN & FAT 1/8in FAT ALL GRDS CKD GRLLD','Porterhouse steak',,,'Bone and connective tissue 26%',26,,6.25,4.27,9.02,3.87 -23003,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat select raw','BEEF SHRT LOIN PRTRHS STEAK LN&FAT 1/8inFAT SEL RAW','URMIS # 1330 Porterhouse steak',,,'Bone and connective tissue 24%',24,,6.25,4.27,9.02,3.87 -23004,1300,'Beef short loin porterhouse steak separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF SHRT LOIN PRTRHS STK L & F 1/8in F SEL CKD GRILLED','URMIS # 1330 Porterhouse steak',,,'Bone and connective tissue 30%',30,,6.25,4.27,9.02,3.87 -23005,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN T-BONE STEAK LN&FAT 1/8inFAT ALL GRDS RAW','T-Bone Steak',,,'Bone and connective tissue 25%',25,,6.25,4.27,9.02,3.87 -23006,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF SHRT LN T-BNE STEK LN & FAT 1/8in FAT ALL GRDS CKD GRLLD','T-Bone Steak',,,'Bone and connective tissue 30%',30,,6.25,4.27,9.02,3.87 -23007,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat select raw','BEEF SHRT LOIN T-BONE STEAK LN&FAT 1/8inFAT SEL RAW','URMIS # 1369 T-Bone Steak',,,'Bone and connective tissue',26,,6.25,4.27,9.02,3.87 -23008,1300,'Beef short loin t-bone steak separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF SHRT LOIN T-BONE STEAK LN & FAT 1/8in FAT SEL CKD GRLLD','URMIS # 1369 T-Bone Steak',,,'Bone and connective tissue 32%',32,,6.25,4.27,9.02,3.87 -23030,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat choice raw','BEEF RND KNUCKLE TIP SIDE STEAK LN & FAT 0in FAT CHOIC RAW','URMIS #2358 Beef Value Cut Sirloin Tip Steak Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23031,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat choice cooked grilled','BF RND KNUCKLE TIP SIDE STEAK LN & FAT 0in FAT CH CKD GRILLED','URMIS #2358 Beef Value Cut Sirloin Tip Steak Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23032,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat select raw','BEEF RND KNUCKLE TIP SIDE STEAK LN & FAT 0in FAT SEL RAW','URMIS #1543 Beef Value Cut Sirloin Tip Steak Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23033,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat select cooked grilled','BF RND KNUCKLE TIP SIDE STEAK LN & FAT 0in FAT SE CKD GRILLED','URMIS #1543 Beef Value Cut Sirloin Tip Steak Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23034,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat choice raw','BF CHK CLOD SHLDR TENDER MEDALLION LN & FAT 0in FAT CHOIC RAW','URMIS #1979 or #1845 Beef Value Cut Tender Medallions Teres Major',,,,0,,6.25,4.27,9.02,3.87 -23035,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat choice cooked grilled','BF CHK CLOD SHDR TNDR MED LN & FAT 0in FAT CH CKD GRILLED','URMIS #1979 or #1845 Beef Value Cut Tender Medallions Teres Major',,,,0,,6.25,4.27,9.02,3.87 -23036,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat select raw','BF CHK CLOD SHLDR TENDER MEDALLION LN & FAT 0in FAT SEL RAW','URMIS #1164 or #1030 Beef Value Cut Tender Medallions Teres Major',,,,0,,6.25,4.27,9.02,3.87 -23037,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat choice raw','BEEF CHUCK SHLDR CLOD TOP & CNTR STK LN & FAT 0in FAT CH RAW','URMIS #1977 Ranch Cut Steak Beef Value Cut Center Cut Steak Triceps Brachii',,,,0,,6.25,4.27,9.02,3.87 -23038,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat choice cooked grilled','BF CHK SHLDR CLOD TOP & CNTR STK LN & FAT 0in FAT CH CKD GRLD','URMIS #1977 Ranch Cut Steak Beef Value Cut Center Cut Steak Triceps Brachii',,,,0,,6.25,4.27,9.02,3.87 -23039,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat select raw','BF CHUCK SHLDR CLOD TOP & CNTR STK LN & FAT 0in FAT SEL RAW','URMIS #1162 Ranch Cut Steak Beef Value Cut Center Cut Steak Triceps Brachii',,,,0,,6.25,4.27,9.02,3.87 -23040,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat select cooked grilled','BF CHK CLOD TOP & CNTR STK LN & FAT 0in FAT SEL CKD GRLD','URMIS #1162 Ranch Cut Steak Beef Value Cut Center Cut Steak Triceps Brachii',,,,0,,6.25,4.27,9.02,3.87 -23041,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat choice raw','BF CHK SHLDR CLOD TOP BLADE STEAK LN & FAT 0in FAT CHOIC RAW','URMIS #1981 Beef Value Cut Flat Iron Steak Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23042,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat choice cooked grilled','BF CHK CLOD TOP BLADE STEAK LN & FAT 0in FAT CH CKD GRILLED','URMIS #1981 Beef Value Cut Flat Iron Steak Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23043,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat select raw','BF CHUCK SHLDR CLOD TOP BLADE STEAK LN & FAT 0in FAT SEL RAW','URMIS #1166 Beef Value Cut Flat Iron Steak Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23044,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat select cooked grilled','BF CHK CLOD TOP BLADE STEAK LN & FAT 0in FAT SEL CKD GRILLED','URMIS #1166 Beef Value Cut Flat Iron Steak Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23045,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat choice raw','BEEF RND KNUCKLE TIP CNTR STEAK LN & FAT 0in FAT CHOIC RAW','URMIS #2365 Beef Value Cut Sirloin Tip Steak Rectus Femoris',,,,0,,6.24,4.27,9.02,3.87 -23046,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat choice cooked grilled','BF RND KNUCKLE TIP CNTR STK LN & FAT 0in FAT CHOIC CKD GRLD','URMIS #2365 Beef Value Cut Sirloin Tip Steak Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -23047,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat select raw','BEEF RND KNUCKLE TIP CNTR STEAK LN & FAT 0in FAT SEL RAW','URMIS #1550 Beef Value Cut Sirloin Tip Steak Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -23048,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat select cooked grilled','BF RND KNUCKLE TIP CNTR STEAK LN & FAT 0in FAT SE CKD GRILLED','URMIS #1550 Beef Value Cut Sirloin Tip Steak Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -23049,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat choice raw','BF RND OUTSIDE RND BTTM RND STEAK LN & FAT 0in FAT CHOIC RAW','URMIS #2277 Western Griller Steak Beef Value Cut London Broil Biceps Femoris',,,,0,,6.25,4.27,9.02,3.87 -23050,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat choice cooked grilled','BF RND OUT RND BTTM RND STK LN & FAT 0in FAT CH CKD GRILLED','URMIS #2277 Western Griller Steak Beef Value Cut London Broil Biceps Femoris',,,,0,,6.25,4.27,9.02,3.87 -23051,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat select raw','BEEF RND OUTSIDE RND BTTM RND STEAK LN & FAT 0in FAT SEL RAW','URMIS #1462 Western Griller Steak Beef Value Cut London Broil Biceps Femoris',,,,0,,6.25,4.27,9.02,3.87 -23052,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat select cooked grilled','BEEF RND OUT RND BTTM RND STK LN & FAT 0in FAT SEL CKD GRLD','URMIS #1462 Western Griller Steak Beef Value Cut London Broil Biceps Femoris',,,,0,,6.25,4.27,9.02,3.87 -23053,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat all grades raw','BF CHK CLD SHLDR TNDR MEDALLION LN & FAT 0in FAT ALL GRDS RAW','Tender Medallions Beef Value Cut Teres Major',,,,0,,6.25,4.27,9.02,3.87 -23054,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat all grades cooked grilled','BF CHK CLD SHDR TNDR MED LN & FAT 0in FAT ALL GRDS CK GRLD','Tender Medallions Beef Value Cut Teres Major',,,,0,,6.25,4.27,9.02,3.87 -23055,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat all grades raw','BEEF RND KNUCKLE TIP SIDE STEAK LN & FAT 0in FAT ALL GRDS RAW','Sirloin Tip Steak Beef Value Cut Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23056,1300,'Beef round knuckle tip side steak separable lean and fat trimmed to 0in fat all grades cooked grilled','BF RND KNUCK TIP SIDE STK LN & FAT 0in FAT ALL GRDS CKD GRLD','Sirloin Tip Steak Beef Value Cut Vastas Lateralis',,,,0,,6.25,4.27,9.02,3.87 -23057,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat all grades raw','BF CHUCK CLOD TOP & CNTR STEAK LN & FAT 0in FAT ALL GRDS RAW','Center Cut Steak Triceps Brachii Beef Value Cut Ranch Cut Steak',,,,0,,6.25,4.27,9.02,3.87 -23058,1300,'Beef chuck shoulder clod shoulder top and center steaks separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF CHCK CLOD SHLDR TOP&CNTR STKS LN & FT 0in ALL GRDS GRLD','Center Cut Steak Triceps Brachii Beef Value Cut Ranch Cut Steak',,,,0,,6.25,4.27,9.02,3.87 -23059,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat all grades raw','BEEF CHUCK CLOD TOP BLADE STEAK LN & FAT 0in FAT ALL GRDS RAW','Flat Iron Steak Beef Value Cut Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23060,1300,'Beef chuck shoulder clod top blade steak separable lean and fat trimmed to 0in fat all grades cooked grilled','BF CHUCK CLOD TOP BLADE STK LN & FAT 0in FAT ALL CKD GRLD','Flat Iron Steak Beef Value Cut Infraspinatus',,,,0,,6.25,4.27,9.02,3.87 -23061,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat all grades raw','BEEF RND KNUCKLE TIP CNTR STEAK LN & FAT 0in FAT ALL GRDS RAW','Sirloin Tip Steak Beef Value Cut Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -23062,1300,'Beef round knuckle tip center steak separable lean and fat trimmed to 0in fat all grades cooked grilled','BF RND KNUCKLE TIP CNTR STK LN & FAT 0in FAT ALL CKD GRLD','Sirloin Tip Steak Beef Value Cut Rectus Femoris',,,,0,,6.25,4.27,9.02,3.87 -23063,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat all grades raw','BF RND OUTSIDE RND BTTM RND STEAK LN & FAT 0in FAT ALL RAW','London Broil Biceps Femoris Beef Value Cut Western Griller Steak',,,,0,,6.25,4.27,9.02,3.87 -23064,1300,'Beef round outside round bottom round steak separable lean and fat trimmed to 0in fat all grades cooked grilled','BF RND OUT RND BTTM RND STK LN & FAT 0in FAT ALL GRDS CK GRLD','London Broil Biceps Femoris Beef Value Cut Western Griller Steak',,,,0,,6.25,4.27,9.02,3.87 -23065,1300,'Beef chuck shoulder clod shoulder tender medallion separable lean and fat trimmed to 0in fat select cooked grilled','BF CHK CLOD SHLDR TENDER MED LN & FAT 0in FAT SE CKD GRILLED','URMIS #1164 or #1030 Teres Major Beef Value Cut Tender Medallions',,,,0,,6.25,4.27,9.02,3.87 -23066,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat choice raw','BEEF CHUCK SHRT RIBS BNLESS LN 0in FAT CHOIC RAW','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 7% seam fat 19%',26,,6.25,,, -23067,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat select raw','BEEF CHUCK SHRT RIBS BNLESS LN 0in FAT SEL RAW','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 6% seam fat 19%',25,,6.25,,, -23068,1300,'Beef chuck short ribs boneless separable lean only trimmed to 0in fat all grades raw','BEEF CHUCK SHRT RIBS BNLESS LN 0in FAT ALL GRDS RAW','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 7% seam fat 19%',26,,6.25,,, -23069,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF CHUCK EYE COUNTRY-STYLE RIBS BNLESS LN 0in FAT CHOIC CKD','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9% seam fat 18%',27,,6.25,,, -23070,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK EYE COUNTRY-STYLE RIBS BNLESS LN 0in FAT SEL CKD B','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 8% seam fat 16%',24,,6.25,,, -23071,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat all grades cooked braised','BF CHK EYE CNTRY-STL RIBS BNLS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9% seam fat 17%',26,,6.25,,, -23072,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat choice raw','BEEF CHUCK EYE COUNTRY-STYLE RIBS BNLESS LN 0in FAT CHOIC RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 8% seam fat 14%',22,,6.25,,, -23073,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat select raw','BEEF CHUCK EYE COUNTRY-STYLE RIBS BNLESS LN 0in FAT SEL RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 10% seam fat 13%',23,,6.25,,, -23074,1300,'Beef chuck eye Country-Style ribs boneless separable lean only trimmed to 0in fat all grades raw','BEEF CHK EYE COUNTRY-STYLE RIBS BNLS LN 0in FAT ALL GRDS RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9% seam fat 13%',22,,6.25,,, -23075,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT CHOIC CKD GRILLED','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 6% seam fat 18%',24,,6.25,,, -23076,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT SEL CKD GRILLED','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 5% seam fat 17%',22,,6.25,,, -23077,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT ALL GRDS CKD GRILLED','Beef Chuck Chuch Eye Steaks URMIS #1102',,,'Connective tissue 5% seam fat 18%',23,,6.25,,, -23078,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat choice raw','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT CHOIC RAW','Beef Chuck ChuckEye Steaks URMIS #1102',,,'Connective tissue 10% seam fat 17%',27,,6.25,,, -23079,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat select raw','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT SEL RAW','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 9% seam fat 17%',26,,6.25,,, -23080,1300,'Beef chuck eye steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF CHUCK EYE STEAK BNLESS LN 0in FAT ALL GRDS RAW','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 10% seam fat 17%',27,,6.25,,, -23081,1300,'Beef shoulder pot roast boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF SHLDR POT RST BNLESS LN 0in FAT CHOIC CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 8% seam fat 2%',10,,6.25,,, -23082,1300,'Beef shoulder pot roast boneless separable lean only trimmed to 0in fat select cooked braised','BEEF SHLDR POT RST BNLESS LN 0in FAT SEL CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 7% seam fat 3%',10,,6.25,,, -23083,1300,'Beef shoulder pot roast boneless separable lean only trimmed to 0in fat all grades cooked braised','BEEF SHLDR POT RST BNLESS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 8% seam fat 2%',10,,6.25,,, -23084,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF CHUCK MOCK TENDER STEAK BNLESS LN 0in FAT CHOIC CKD BRSD','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 6% seam fat 9%',15,,6.25,,, -23085,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK MOCK TENDER STEAK BNLESS LN 0in FAT SEL CKD BRSD','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 5% seam fat 9%',14,,6.25,,, -23086,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat all grades cooked braised','BEEF CHK MOCK TENDER STK BNLS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 6% seam fat 8%',14,,6.25,,, -23087,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat choice raw','BEEF CHUCK MOCK TENDER STEAK BNLESS LN 0in FAT CHOIC RAW','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 5% seam fat 1%',6,,6.25,,, -23088,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat select raw','BEEF CHUCK MOCK TENDER STEAK BNLESS LN 0in FAT SEL RAW','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 4% seam fat 1%',5,,6.25,,, -23089,1300,'Beef chuck mock tender steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF CHUCK MOCK TENDER STEAK BNLESS LN 0in FAT ALL GRDS RAW','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 4% seam fat 1%',5,,6.25,,, -23090,1300,'Beef chuck for stew separable lean and fat all grades cooked braised','BEEF CHUCK FOR STEW LN & FAT ALL GRDS CKD BRSD','Beef Chuck Beef for Stew URMIS #1100',,,,0,,6.25,,, -23091,1300,'Beef chuck for stew separable lean and fat select cooked braised','BEEF CHUCK FOR STEW LN & FAT SEL CKD BRSD','Beef Chuck Beef for Stew URMIS #1100',,,,0,,6.25,,, -23092,1300,'Beef chuck for stew separable lean and fat choice cooked braised','BEEF CHUCK FOR STEW LN & FAT CHOIC CKD BRSD','Beef Chuck Beef for Stew URMIS #1100',,,,0,,6.25,,, -23093,1300,'Beef chuck for stew separable lean and fat all grades raw','BEEF CHUCK FOR STEW LN & FAT ALL GRDS RAW','Beef Chuck Beef for Stew URMIS #1100',,,,0,,6.25,,, -23094,1300,'Beef chuck for stew separable lean and fat select raw','BEEF CHUCK FOR STEW LN & FAT SEL RAW','Beef Chuck Beef for Stew URMIS #1100',,,,0,,6.25,,, -23095,1300,'Beef chuck for stew separable lean and fat choice raw','BEEF CHUCK FOR STEW LN & FAT CHOIC RAW','URMIS #110',,,,0,,6.25,,, -23096,1300,'Beef chuck under blade steak boneless separable lean only trimmed to 0in fat choice cooked braised','BEEF CHUCK UNDER BLADE STEAK BNLESS LN 0in FAT CHOIC CKD BRSD','Beef Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 5% seam fat 17%',22,,6.25,,, -23097,1300,'Beef chuck under blade steak boneless separable lean only trimmed to 0in fat select cooked braised','BEEF CHUCK UNDER BLADE STEAK BNLESS LN 0in FAT SEL CKD BRSD','Beef Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 4% seam fat 13%',17,,6.25,,, -23098,1300,'Beef chuck under blade steak boneless separable lean only trimmed to 0in fat all grades cooked braised','BEEF CHUCK UND BL STEAK BNLS LN 0in FAT ALL GRDS CKD BRSD','Beef Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 5% seam fat 15%',20,,6.25,,, -23099,1300,'Beef chuck under blade pot roast boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHK UND BLD POT RST BNL LN & FAT 0in FAT ALL GR CKD BR','Beef Chuck Under Blade Pot Roast URMIS #1151',,,'Connective tissue 4%',4,,6.25,,, -23100,1300,'Beef rib eye steak boneless lip-on separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF RIB EYE STK BNLES LIP-ON LN 1/8in FAT ALL GRDS CKD GRLD',,,'Y','connective tissue 6% Separable fat 20%',26,,6.25,,, -23101,1300,'Beef rib eye roast bone-in lip-on separable lean only trimmed to 1/8in fat choice cooked roasted','BEEF RIB EYE RST BONE-IN LIP-ON LN 1/8in FAT CHOIC CKD RSTD','URMIS #2008',,,'Bone and connective tissue 16% separable fat 16%',32,,6.25,,, -23102,1300,'Beef chuck under blade pot roast or steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF CHK UND BL POT RST/STK BNL LN & FT 0in FT All GR raw','URMIS #1151/1158 Beef Chuck Under Blade Pot Roast/Steak',,,'Connective tissue 6%',6,,6.25,,, -23103,1300,'Beef chuck under blade pot roast or steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF CHK UND BL POT RST OR STK BNL LN & FAT 0in FAT CH RAW','Beef Chuck Under Blade Pot Roast/Steak URMIS #1151/1158',,,'Connective tissue 6%',6,,6.25,,, -23104,1300,'Beef chuck under blade pot roast or steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF CHK UND BL POT RST/STEAK BNL LN & FAT 0in FAT SEL RAW','Beef Chuck Under Blade Pot Roast/Steak URMIS #1151/1158',,,'Connective tissue 6%',6,,6.25,,, -23105,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF CHK UND BL CNTR STK BNL DEN CUT LN & FAT ALL GR CKD','Beef Chuck Denver Cut (Serratus Ventralis steaks) URMIS #1098',,,'Connective tissue 1%',1,,6.25,,, -23106,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF CHK UND BLE CNTR STK BNL DEN CT LN&FT 0in FT CH CKD GLD','Beef Chuck Denver Cut (Serratus Ventralis steak) URMIS #1098',,,'Connective tissue 1%',1,,6.25,,, -23107,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat select cooked grilled','BEEF CHK UNDBL CNTR STK BNL DEN CT LN&FAT 0in FT SEL CKD GLD','Beef Chuck Denver Cut (Serratus Ventralis steak) URMIS #1098',,,'Connective tissue 1%',1,,6.25,,, -23108,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat all grades raw','BEEF CHK UND BL CNTR STK BNL DEN CUT LN & FT 0inFT All Gr RW','Beef Chuck. Denver Cut (Serratus Ventralis steak) URMIS #1098',,,'Connective tissue 2%',2,,6.25,,, -23109,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat choice raw','BEEF CHK UNDBLE CNTR STK BNL DENR CUT LN & FAT 0inFAT CH RW','Beef Chuck Denver Cut (Serratus Ventralis steak) URMIS #1098',,,'Connective tissue 1%',1,,6.25,,, -23110,1300,'Beef chuck under blade center steak boneless Denver Cut separable lean and fat trimmed to 0in fat select raw','BEEF CHK UND BLE CNTR STK BNL DEN CUT LN & FT 0inFT SEL RW','Beef Chuck Denver Cut (Serratus Ventralis steak) URMIS #1098',,,'Connective tissue 2%',2,,6.25,,, -23111,1300,'Beef shoulder pot roast or steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF SHLDR POT RST OR STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS #1133 URMIS #1132',,,'Connective tissue 6%',6,,6.25,,, -23112,1300,'Beef shoulder pot roast or steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF SHLDR POT RST OR STEAK BNLESS LN & FAT 0in FAT SEL RAW','URMIS #1133 URMIS #1132',,,'Connective tissue 6%',6,,6.25,,, -23113,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF CHK EYE RST BNLS A BF RST LN & FAT 0in ALL GRD CKD RSTD','URMIS #1095',,,'Connective tissue 7%',7,,6.25,,, -23114,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF CHK EYE RST BNLS A BF RST LN & FAT 0in CH CKD RSTD','URMIS #1095',,,'Connective tissue 6%',6,,6.25,,, -23115,1300,'Beef chuck eye roast boneless Americas Beef Roast separable lean and fat trimmed to 0in fat select cooked roasted','BEEF CHCK EYE RST BNLS A BF RST LN & FAT 0in SEL C RSTD','URMIS #1095',,,'Connective tissue 7%',7,,6.25,,, -23116,1300,'Beef chuck under blade steak boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHUCK UNDER BLADE STEAK BNLESS LN & FAT 0in FAT ALL GRDS','Beff Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 5%',5,,6.25,,, -23117,1300,'Beef chuck under blade steak boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF CHUCK UNDER BLADE STEAK BNLESS LN & FAT 0in FAT CHOIC CK','Beef Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 5%',5,,6.25,,, -23118,1300,'Beef chuck under blade steak boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHUCK UNDER BLADE STEAK BNLESS LN & FAT 0in FAT SEL CKD ','Beff Chuck Under Blade Steak URMIS #1158',,,'Connective tissue 4%',4,,6.25,,, -23119,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHK MOCK TNDR STK BNL LN & FAT 0in FAT ALL GRDS CKD','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 6%',6,,6.25,,, -23120,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF CHUCK MOCK TENDER STEAK BNLESS LN & FAT 0in FAT CHOIC CK','Beef Chuck Mock Tender Staek URMIS #1116',,,'Connective tissue 6%',6,,6.25,,, -23121,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHUCK MOCK TENDER STEAK BNLESS LN & FAT 0in FAT SEL CKD ','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 5%',5,,6.25,,, -23122,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF CHK MOCK TEN STK BNL LN & FAT 0in FAT ALL GRDS CKD','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 4%',4,,6.25,,, -23123,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF CHK MOCK TENDER STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 5%',5,,6.25,,, -23124,1300,'Beef chuck mock tender steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF CHUCK MOCK TENDER STEAK BNLESS LN & FAT 0in FAT SEL RAW','Beef Chuck Mock Tender Steak URMIS #1116',,,'Connective tissue 4%',4,,6.25,,, -23125,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT ALL GRDS CKD BRS','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 6%',6,,6.25,,, -23126,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT CHOIC CKD BRSD','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 7%',7,,6.25,,, -23127,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT SEL CKD BRSD','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 6%',6,,6.25,,, -23128,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT ALL GRDS RAW','URMIS #1127',,,'Connective tissue 7%',7,,6.25,,, -23129,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat choice raw','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT CHOIC RAW','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 7%',7,,6.25,,, -23130,1300,'Beef chuck short ribs boneless separable lean and fat trimmed to 0in fat select raw','BEEF CHUCK SHRT RIBS BNLESS LN & FAT 0in FAT SEL RAW','Beef Chuck Short Ribs URMIS #1127',,,'Connective tissue 6%',6,,6.25,,, -23131,1300,'Beef shoulder pot roast boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF SHLDR POT RST BNLESS LN & FAT 0in FAT ALL GRDS CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 8%',8,,6.25,,, -23132,1300,'Beef shoulder pot roast boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF SHLDR POT RST BNLESS LN & FAT 0in FAT CHOIC CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 8%',8,,6.25,,, -23133,1300,'Beef shoulder pot roast boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF SHLDR POT RST BNLESS LN & FAT 0in FAT SEL CKD BRSD','Beef Chuck Clod (Shoulder) Roast URMIS #1132',,,'Connective tissue 7%',7,,6.25,,, -23134,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF CHK EYE CTRY-STYLE RIBS BNL LN & FAT 0in FAT ALL GR CKD','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9%',9,,6.25,,, -23135,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat choice cooked braised','BEEF CHK EYE CNTRY-STYL RIBS BNL LN & FAT 0in FAT CHOICE CKD','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9%',9,,6.25,,, -23136,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat select cooked braised','BEEF CHK EYE CNTRY-STYLE RIBS BNL LN & FAT 0in FAT SEL CKD','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 8%',8,,6.25,,, -23137,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF CHK EYE CNTRY-STYLE RIBS BNL LN & FAT 0in FAT ALL GR RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 9%',9,,6.25,,, -23138,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat choice raw','BEEF CHK EYE CNTRY-STYLE RIBS BNL LN & FAT 0in FAT CHOICE RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 8%',8,,6.25,,, -23139,1300,'Beef chuck eye Country-Style ribs boneless separable lean and fat trimmed to 0in fat select raw','BEEF CHK EYE CNTRY-STYLE RIBS BNL LN & FAT 0in FAT SEL RAW','Beef Chuck Bnls Country Style Beef Ribs URMIS #1096',,,'Connective tissue 10%',10,,6.25,,, -23140,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF CHUCK EYE STEAK BNLESS LN & FAT 0in FAT ALL GRDS CKD GR','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 5%',5,,6.25,,, -23141,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF CHK EYE STEAK BNLESS LN & FAT 0in FAT CHOIC CKD GRILLED','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 6%',6,,6.25,,, -23142,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF CHUCK EYE STEAK BNLESS LN & FAT 0in FAT SEL CKD GRILLED','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 5%',5,,6.25,,, -23143,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF CHUCK EYE STEAK BNLESS LN & FAT 0in FAT ALL GRDS RAW','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 10%',10,,6.25,,, -23144,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF CHUCK EYE STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 10%',10,,6.25,,, -23145,1300,'Beef chuck eye steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF CHUCK EYE STEAK BNLESS LN & FAT 0in FAT SEL RAW','Beef Chuck Chuck Eye Steaks URMIS #1102',,,'Connective tissue 9%',9,,6.25,,, -23146,1300,'Beef rib eye roast bone-in lip-on separable lean only trimmed to 1/8in fat all grades cooked roasted','BEEF RIB EYE RST BNE-IN LIP-ON LN 1/8in FT ALL GRDS CKD RSTD',,,,'Bone and connective tissue 16% Separable fat 16%',32,,6.25,,, -23147,1300,'Beef rib eye roast bone-in lip-on separable lean only trimmed to 1/8in fat select cooked roasted','BEEF RIB EYE RST BONE-IN LIP-ON LN 1/8in FAT SEL CKD RSTD','URMIS #1193',,,'Bone and connective tissue 16% Separable fat 16%',32,,6.25,,, -23148,1300,'Beef rib eye steak boneless lip-on separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF RIB EYE STEAK BNLES LIP-ON LN 1/8in FAT CHOIC CKD GRILD','URMIS #2018',,,'connective tissue 5% Separable fat 22%',27,,6.25,,, -23149,1300,'Beef rib eye steak boneless lip-on separable lean only trimmed to 1/8in fat select cooked grilled','BEEF RIB EYE STEAK BNLESS LIP-ON LN 1/8in FAT SEL CKD GRILLED','URMIS #1203',,,'Connective tissue 6% Separable fat 19%',25,,6.25,,, -23150,1300,'Beef rib eye steak/roast bone-in lip-on separable lean only trimmed to 1/8in fat all grades raw','BEEF RIB EYE STK/RST BONE-IN LIP-ON LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 14% Separable fat 21%',35,,6.25,,, -23151,1300,'Beef rib eye steak/roast bone-in lip-on separable lean only trimmed to 1/8in fat choice raw','BEEF RIB EYE STEAK/RST BONE-IN LIP-ON LN 1/8in FAT CHOIC RAW','URMIS #2012/2008',,,'Bone and connective tissue 14% Separable fat 22%',36,,6.25,,, -23152,1300,'Beef rib eye steak/roast bone-in lip-on separable lean only trimmed to 1/8in fat select raw','BEEF RIB EYE STEAK/ROAST BONE-IN LIP-ON LN 1/8in FAT SEL RAW','URMIS #1197/1193',,,'Bone and connective tissue 15% Separable fat 20%',35,,6.25,,, -23153,1300,'Beef rib eye steak/roast boneless lip-on separable lean only trimmed to 1/8in fat all grades raw','BEEF RIB EYE STK/RST BNLESS LIP-ON LN 1/8in FAT ALL GRDS RAW',,,,'Connective tissue 4% Separable fat 20%',24,,6.25,,, -23154,1300,'Beef rib eye steak/roast boneless lip-on separable lean only trimmed to 1/8in fat choice raw','BEEF RIB EYE STEAK/ROAST BNLESS LIP-ON LN 1/8in FAT CHOIC RAW','URMIS #2018/2009',,,'Connective tissue 4% Separable fat 21%',25,,6.25,,, -23155,1300,'Beef rib eye steak/roast boneless lip-on separable lean only trimmed to 1/8in fat select raw','BEEF RIB EYE STEAK/ROAST BNLESS LIP-ON LN 1/8in FAT SEL RAW','URMIS #1203/1194',,,'Connective tissue 3% Separable fat 18%',21,,6.25,,, -23156,1300,'Beef rib eye steak bone-in lip-on separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF RIB EYE STK BNE-IN LIP-ON LN 1/8in FAT ALL GRDS CKD GRLD',,,'Y','Bone and connective tissue 19% Separable fat 19%',38,,6.25,,, -23157,1300,'Beef rib eye steak bone-in lip-on separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF RIB EYE STEAK BONE-IN LIP-ON LN 1/8in FAT CHOIC CKD GRLD','URMIS #2012',,,'Bone and connective tissue 19% Separable fat 19%',38,,6.25,,, -23158,1300,'Beef rib eye steak bone-in lip-on separable lean only trimmed to 1/8in fat select cooked grilled','BEEF RIB EYE STEAK BONE-IN LIP-ON LN 1/8in FAT SEL CKD GRILD','URMIS #1197',,,'Bone and connective tissue 20% Separable fat 19%',39,,6.25,,, -23159,1300,'Beef rib eye roast boneless lip-on separable lean only trimmed to 1/8in fat all grades cooked roasted','BEEF RIB EYE RST BNLESS LIP-ON LN 1/8in FAT ALL GRDS CKD RSTD',,,,'Connective tissue 5% Separable fat 19%',24,,6.25,,, -23160,1300,'Beef rib eye roast boneless lip-on separable lean only trimmed to 1/8in fat choice cooked roasted','BEEF RIB EYE RST BNLESS LIP-ON LN 1/8in FAT CHOIC CKD RSTD','URMIS #2009',,,'connective tissue 6% Separable fat 19%',25,,6.25,,, -23161,1300,'Beef rib eye roast boneless lip-on separable lean only trimmed to 1/8in fat select cooked roasted','BEEF RIB EYE RST BNLESS LIP-ON LN 1/8in FAT SEL CKD RSTD','URMIS #1194',,,'Connective tissue 5% Separable fat 18%',23,,6.25,,, -23162,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat all grades cooked grilled','BEEF PLATE STK BNLE INSDE SKRT LN 0in FAT ALL GRDS CKD GRLD',,,,'Connective tissue 1% Separable fat 3%',4,,6.25,,, -23163,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat all grades raw','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN 0in FAT ALL GRDS RAW',,,,'Connective tissue 1% Separable fat 6%',7,,6.25,,, -23164,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat choice cooked grilled','BEEF PLATE STK BNLES INSIDE SKIRT LN 0in FAT CHOIC CKD GRLD','URMIS #2422',,,'Connective tissue 1% Separable fat 3%',4,,6.25,,, -23165,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat choice raw','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN 0in FAT CHOIC RAW','URMIS #2422',,,'Connective tissue 1% Separable fat 6%',7,,6.25,,, -23166,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat select cooked grilled','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN 0in FAT SEL CKD GRILD','URMIS #1607',,,'Connective tissue 1% Separable fat 3%',4,,6.25,,, -23167,1300,'Beef plate steak boneless inside skirt separable lean only trimmed to 0in fat select raw','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN 0in FAT SEL RAW','URMIS #1607',,,'Connective tissue 1% Separable fat 5%',6,,6.25,,, -23168,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat all grades cooked grilled','BEEF PLATE STK BNLES OTSDE SKIRT LN 0in FAT ALL GRDS CKD GRLD',,,,'Connective tissue 0.5% Separable fat 3.5%',4,,,,, -23169,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat all grades raw','BEEF PLATE STEAK BNLESS OUTSIDE SKIRT LN 0in FAT ALL GRDS RAW',,,,'Connective tissue 1% Separable fat 7%',8,,6.25,,, -23170,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat choice cooked grilled','BEEF PLATE STEAK BNLS OUTSIDE SKIRT LN 0in FAT CHOIC CKD GRLD','URMIS #2428',,,'Connective tissue 0.3% Separable fat 3.3%',4,,6.25,,, -23171,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat choice raw','BEEF PLATE STEAK BNLESS OUTSIDE SKIRT LN 0in FAT CHOIC RAW','URMIS #2428',,,'Connective tissue 1% Separable fat 8%',9,,6.25,,, -23172,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat select cooked grilled','BEEF PLATE STEAK BNLESS OUTSIDE SKIRT LN 0in FAT SEL CKD GRLD','URMIS #1613',,,'Connective tissue 0% Separable fat 4%',4,,6.25,,, -23173,1300,'Beef plate steak boneless outside skirt separable lean only trimmed to 0in fat select raw','BEEF PLATE STEAK BNLESS OUTSIDE SKIRT LN 0in FAT SEL RAW','URMIS #1613',,,'Connective tissue 1% Separable fat 7%',8,,6.25,,, -23174,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat all grades cooked grilled','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT ALL GRDS CKD GRI',,,,'Connective tissue 5% Separable fat 16%',26,,6.25,,, -23175,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat all grades raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT ALL GRDS RAW',,,,'Connective tissue 4% Separable fat 17%',24,,6.25,,, -23176,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat choice cooked grilled','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT CHOIC CKD GRILLE','URMIS #2024',,,'Connective tissue 5% Separable fat 18%',27,,6.25,,, -23177,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat choice raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT CHOIC RAW','URMIS #2024',,,'Connective tissue 4% Separable fat 18%',25,,6.25,,, -23178,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat select cooked grilled','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT SEL CKD GRILLED','URMIS #1209',,,'Connective tissue 5% Separable fat 13%',24,,6.25,,, -23179,1300,'Beef rib eye steak boneless lip off separable lean only trimmed to 0in fat select raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN 0in FAT SEL RAW','URMIS #1209',,,'Connective tissue 3% Separable fat 14%',22,,6.25,,, -23180,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat all grades cooked braised','BEEF RIB BACK RIBS BONE-IN LN 0in FAT ALL GRDS CKD BRSD',,,,'Bone and connective tissue 61% Separable fat 8%',69,,6.25,,, -23181,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat all grades raw','BEEF RIB BACK RIBS BONE-IN LN 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue 52% Separable fat 12%',64,,6.25,,, -23182,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat choice cooked braised','BEEF RIB BACK RIBS BONE-IN LN 0in FAT CHOIC CKD BRSD','URMIS #1997',,,'Bone and connective tissue 60% Separable fat 9%',69,,6.25,,, -23183,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat choice raw','BEEF RIB BACK RIBS BONE-IN LN 0in FAT CHOIC RAW','URMIS #1997',,,'Bone and connective tissue 53% Separable fat 13%',66,,6.25,,, -23184,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat select cooked braised','BEEF RIB BACK RIBS BONE-IN LN 0in FAT SEL CKD BRSD','URMIS #1182',,,'Bone and connective tissue 62% Separable fat 7%',69,,6.25,,, -23185,1300,'Beef rib back ribs bone-in separable lean only trimmed to 0in fat select raw','BEEF RIB BACK RIBS BONE-IN LN 0in FAT SEL RAW','URMIS #1182',,,'Bone and connective tissue 52% Separable fat 11%',63,,6.25,,, -23186,1300,'Beef rib eye steak bone-in lip-on separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF RIB EYE STK BNE-IN LIP-ON LN & FT 1/8in FAT CHOC CKD GRL','URMIS #2012',,,'Bone and connective tissue 19%',19,,6.25,,, -23187,1300,'Beef rib eye steak bone-in lip-on separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF RIB EYE STK BNE-IN LIP-ON LN & FT 1/8in FAT SEL CKD GRLD','URMIS #1197',,,'Bone and connective tissue 20%',20,,6.25,,, -23188,1300,'Beef rib eye steak bone-in lip-on separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF RIB EYE STK BN-IN LIP-ON LN & FT 1/8in FT AL GDS CKD GRL',,,'Y','Bone and connective tissue 19%',19,,6.25,,, -23189,1300,'Beef rib eye roast bone-in lip-on separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RIB EYE RST BNE-IN LIP-ON LN & FAT 1/8in FT CHC CKD RST','URMIS #2008',,,'Bone and connective tissue 16%',16,,6.25,,, -23190,1300,'Beef rib eye roast bone-in lip-on separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RIB EYE RST BNE-IN LIP-ON LN & FAT 1/8in FAT SEL CKD RST','URMIS #1193',,,'Bone and connective tissue 16%',16,,6.25,,, -23191,1300,'Beef rib eye roast bone-in lip-on separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RIB EYE RST BNE-IN LP-ON LN & FT 1/8in FT AL GRD CKD RST',,,,'Bone and connective tissue 16%',16,,6.25,,, -23192,1300,'Beef rib eye steak/roast bone-in lip-on separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RIB EYE STK/RST BNE-IN IP-ON LN & FT 1/8in FT AL GRDS RW',,,,'Bone and connective tissue 14%',14,,6.25,,, -23193,1300,'Beef rib eye steak/roast bone-in lip-on separable lean and fat trimmed to 1/8in fat choice raw','BEEF RIB EYE STK/RST BNE-IN LIP-ON LN & FAT 1/8in FAT CHC RAW','URMIS #2012/2008',,,'Bone and connective tissue 14%',14,,6.25,,, -23194,1300,'Beef rib eye steak/roast bone-in lip-on separable lean and fat trimmed to 1/8in fat select raw','BEEF RIB EYE STK/RST BONE-IN LIP-ON LN & FAT 1/8in FAT SEL RW','URMIS #1197/1193',,,'Bone and connective tissue 15%',15,,6.25,,, -23195,1300,'Beef rib eye steak boneless lip-on separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF RIB EYE STEAK BNLS LIP-ON LN & FAT 1/8in FAT CHC CKD GRD','URMIS #2018',,,'Connective tissue 6%',6,,6.25,,, -23196,1300,'Beef rib eye steak boneless lip-on separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF RIB EYE STK BNLS LIP-ON LN & FAT 1/8in FAT SEL CKD GILD','URMIS #1203',,,'Connective tissue 6%',6,,6.25,,, -23197,1300,'Beef rib eye steak boneless lip-on separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF RIB EYE STK BNLS LIP-ON LN & FT 1/8in FT AL GRD CKD GRLD',,,'Y','Connective tissue 6%',6,,6.25,,, -23198,1300,'Beef rib eye roast boneless lip-on separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF RIB EYE RST BNLS LP-ON LN & FT 1/8in FT ALL GRD CKD RSTD',,,,'Connective tissue 5%',5,,6.25,,, -23199,1300,'Beef rib eye roast boneless lip-on separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF RIB EYE RST BNLES LIP-ON LN & FAT 1/8in FAT CHC CKD RSTD','URMIS #2009',,,'Connective tissue 6%',6,,6.25,,, -23200,1300,'Beef rib eye roast boneless lip-on separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF RIB EYE RST BNLES LIP-ON LN & FAT 1/8in FAT SEL CKD RSTD','URMIS #1194',,,'Connective tissue 5%',5,,6.25,,, -23201,1300,'Beef rib eye steak/roast boneless lip-on separable lean and fat trimmed to 1/8in fat all grades raw','BEEF RIB EYE STK/RST BNLS LIP-ON LN & FAT 1/8in FAT AL GRD RW',,,,'Connective tissue 4%',4,,6.25,,, -23202,1300,'Beef rib eye steak/roast boneless lip-on separable lean and fat trimmed to 1/8in fat choice raw','BEEF RIB EYE STEAK/ROST BNLS LIP-ON LN & FAT 1/8in FAT CHC RW','URMIS #2018/2009',,,'Connective tissue 4%',4,,6.25,,, -23213,1300,'Beef rib eye steak/roast boneless lip-on separable lean and fat trimmed to 1/8in fat select raw','BEEF RIB EYE STEAK/ROST BNLS LIP-ON LN & FAT 1/8in FAT SEL RW','URMIS #1203/1194',,,'Connective tissue 3%',3,,6.25,,, -23214,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF PLTE STK BNLS INSD SKRT LN & FAT 0in FAT ALL GRD CKD GRL',,,,'Connective tissue 1%',1,,6.25,,, -23215,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF PLATE STK BNLSS INSDE SKRT LN & FAT 0in FAT CHC CKD GRLD','URMIS #2422',,,'Connective tissue 1%',1,,6.25,,, -23216,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat select cooked grilled','BEEF PLATE STK BNLES INSDE SKRT LN & FAT 0in FAT SEL CKD GRLD','URMIS #1607',,,'Connective tissue 1%',1,,6.25,,, -23217,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat all grades raw','BEEF PLATE STEK BNLS INSDE SKRT LN & FAT 0in FAT ALL GRDS RW',,,,'Connective tissue 1%',1,,6.25,,, -23218,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat choice raw','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN & FAT 0in FAT CHOC RW','URMIS #2422',,,'Connective tissue 1%',1,,6.25,,, -23219,1300,'Beef plate steak boneless inside skirt separable lean and fat trimmed to 0in fat select raw','BEEF PLATE STEAK BNLESS INSIDE SKIRT LN & FAT 0in FAT SEL RAW','URMIS #1607',,,'Connective tissue 1%',1,,6.25,,, -23220,1300,'Beef ground unspecified fat content cooked','BEEF GROUND UNSPEC FAT CONTENT CKD','Hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23221,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF PLTE STK BNLS OUTSD SKRT LN & FAT 0in FT AL GRD CKD GRLD',,,,,0,,6.25,,, -23222,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF PLATE STK BNLS OUTSD SKRT LN & FAT 0in FT CHC CKD GRLD','URMIS #2428',,,,0,,6.25,,, -23223,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat select cooked grilled','BEEF PLATE STK BNLS OTSDE SKRT LN & FAT 0in FAT SEL CKD GRILD','URMIS #1613',,,,0,,6.25,,, -23224,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat all grades raw','BEEF PLATE STEK BNLS OUTSDE SKRT LN & FAT 0in FAT ALL GRDS RW',,,,'Connective tissue 1%',1,,6.25,,, -23225,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat choice raw','BEEF PLATE STEAK BNLS OUTSIDE SKRT LN & FAT 0in FAT CHOIC RAW','URMIS #2428',,,'Connective tissue 1%',1,,6.25,,, -23226,1300,'Beef plate steak boneless outside skirt separable lean and fat trimmed to 0in fat select raw','BEEF PLATE STEAK BNLESS OUTSIDE SKIRT LN & FAT 0in FAT SEL RW','URMIS #1613',,,'Connective tissue 1%',1,,6.25,,, -23227,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF RIB EYE STK BNLS LIP OF LN & FAT 0in FT AL GRDS CKD GRLD',,,,'Connective tissue 5%',5,,6.25,,, -23228,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF RIB EYE STEAK BNLS LIP OFF LN & FAT 0in FAT CHC CKD GRLD','URMIS #2024',,,'Connective tissue 5%',5,,6.25,,, -23229,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat select cooked grilled','BEEF RIB EYE STEK BNLES LIP OFF LN & FAT 0in FAT SEL CKD GRLD','URMIS #1209',,,'Connective tissue 5%',5,,6.25,,, -23230,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat all grades raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN & FAT 0in FAT ALL GRD RW',,,,'Connective tissue 4%',4,,6.25,,, -23231,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat choice raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN & FAT 0in FAT CHOIC RAW','URMIS #2024',,,'Connective tissue 4%',4,,6.25,,, -23232,1300,'Beef rib eye steak boneless lip off separable lean and fat trimmed to 0in fat select raw','BEEF RIB EYE STEAK BNLESS LIP OFF LN & FAT 0in FAT SEL RAW','URMIS #1209',,,'Connective tissue 3%',3,,6.25,,, -23233,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat all grades cooked braised','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT ALL GRDS CKD BRSD',,,,'Bone and connective tissue 61%',61,,6.25,,, -23234,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat choice cooked braised','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT CHOIC CKD BRSD','URMIS #1997',,,'Bone and connective tissue 60%',60,,6.25,,, -23235,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat select cooked braised','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT SEL CKD BRSD','URMIS #1182',,,'Bone and connective tissue 63%',62,,6.25,,, -23236,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat all grades raw','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue 52%',52,,6.25,,, -23237,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat choice raw','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT CHOIC RAW','URMIS #1997',,,'Bone and connective tissue 53%',53,,6.25,,, -23238,1300,'Beef rib back ribs bone-in separable lean and fat trimmed to 0in fat select raw','BEEF RIB BACK RIBS BONE-IN LN & FAT 0in FAT SEL RAW','URMIS #1182',,,'Bone and connective tissue 52%',52,,6.25,,, -23239,1300,'Beef loin top sirloin petite roast boneless separable lean only trimmed to 0in fat choice cooked roasted','BEEF LOIN TOP SIRLIN PETITE RST BNLS LN 0in FAT CHOC CKD RSTD','Gluteus medius URMIS #2136',,,'Connective tissue 6% Separable fat 4%',10,,6.25,,, -23240,1300,'Beef loin top sirloin petite roast/filet boneless separable lean only trimmed to 0in fat choice raw','BEEF LOIN TOP SIRLOIN PETITE RST/FILET BNLS LN 0in FAT CHC RW','URMIS #2136 Gluteus medius URMIS #2138',,,'Connective tissue 6% Separable fat 5%',11,,6.25,,, -23241,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF LOIN TOP SIRLN CAP STK BNLS LN 1/8in FAT AL GRDS CKD GLD','Biceps femoris',,,'Connective tissue 8% Separable fat 13%',21,,6.25,,, -23242,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF LOIN TOP SIRLON CAP STK BNLS LN 1/8in FAT CHOIC CKD GRLD','Biceps femoris URMIS #2236',,,'Connective tissue 8% Separable fat 14%',22,,6.25,,, -23243,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat select cooked grilled','BEEF LOIN TOP SIRLOIN CAP STEK BNLS LN 1/8in FAT SEL CKD GRLD','Biceps femoris URMIS #1421',,,'Connective tissue 8% Separable fat 11%',19,,6.25,,, -23244,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat all grades raw','BEEF LOIN TOP SIRLOIN CAP STEK BNLS LN 1/8in FAT ALL GRDS RAW','Biceps femoris',,,'Connective tissue 7% Separable fat 13%',20,,6.25,,, -23245,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat choice raw','BEEF LOIN TOP SIRLOIN CAP STEAK BNLESS LN 1/8in FAT CHOIC RAW','Biceps femoris URMIS #2236',,,'Connective tissue 8% Separable fat 11%',19,,6.25,,, -23246,1300,'Beef loin top sirloin cap steak boneless separable lean only trimmed to 1/8in fat select raw','BEEF LOIN TOP SIRLOIN CAP STEAK BNLESS LN 1/8in FAT SEL RAW','Biceps femoris URMIS #1421',,,'Connective tissue 7% Separable fat 15%',22,,6.25,,, -23247,1300,'Beef top loin filet boneless separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF TOP LOIN FILET BNLESS LN 1/8in FAT ALL GRDS CKD GRILLED',,,,'Connective tissue 10% Separable fat 9%',19,,6.25,,, -23248,1300,'Beef top loin filet boneless separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF TOP LOIN FILET BNLESS LN 1/8in FAT CHOIC CKD GRILLED','URMIS #2137',,,'Connective tissue 12% Separable fat 7%',19,,6.25,,, -23249,1300,'Beef top loin filet boneless separable lean only trimmed to 1/8in fat select cooked grilled','BEEF TOP LOIN FILET BNLESS LN 1/8in FAT SEL CKD GRILLED','URMIS #1322',,,'Connective tissue 9% Separable fat 12%',20,,6.25,,, -23250,1300,'Beef top loin petite roast boneless separable lean only trimmed to 1/8in fat all grades cooked roasted','BEEF TOP LOIN PETITE RST BNLSS LN 1/8in FAT ALL GRDS CKD RSTD','Longissimus dorsi',,,'Connective tissue 9% Separable fat 7%',16,,6.25,,, -23251,1300,'Beef top loin petite roast boneless separable lean only trimmed to 1/8in fat choice cooked roasted','BEEF TOP LOIN PETITE RST BNLESS LN 1/8in FAT CHOIC CKD RSTD','Longissimus dorsi URMIS #2135',,,'Connective tissue 8% Separable fat 6%',14,,6.25,,, -23252,1300,'Beef top loin petite roast boneless separable lean only trimmed to 1/8in fat select cooked roasted','BEEF TOP LOIN PETITE RST BNLESS LN 1/8in FAT SEL CKD RSTD','Longissimus dorsi URMIS #1320',,,'Connective tissue 10% Separable fat 7%',17,,6.25,,, -23253,1300,'Beef top loin petite roast/filet boneless separable lean only trimmed to 1/8in fat all grades raw','BEEF TOP LOIN PETITE RST/FILET BNLS LN 1/8in FAT ALL GRDS RAW','Longissimus dorsi',,,'Connective tissue 11% Separable fat 9%',20,,6.25,,, -23254,1300,'Beef top loin petite roast/filet boneless separable lean only trimmed to 1/8in fat choice raw','BEEF TOP LOIN PETITE ROAST/FILET BNLESS LN 1/8in FAT CHOC RAW','URMIS #2135 Longissimus dorsi URMIS #2137',,,'Connective tissue 13% Separable fat 7%',20,,6.25,,, -23255,1300,'Beef top loin petite roast/filet boneless separable lean only trimmed to 1/8in fat select raw','BEEF TOP LOIN PETITE ROAST/FILET BNLESS LN 1/8in FAT SEL RAW','URMIS #1320 Longissimus dorsi URMIS #1322',,,'Connective tissue 8% Separable fat 11%',19,,6.25,,, -23256,1300,'Beef loin top sirloin filet boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF LOIN TOP SIRLOIN FILET BNLS LN 0in FAT ALL GRDS CKD GRLD',,,,'Connective tissue 5%',5,,6.25,,, -23257,1300,'Beef loin top sirloin filet boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF LOIN TOP SIRLOIN FILET BNLESS LN 0in FAT CHOIC CKD GRILD','URMIS #2138',,,'Connective tissue 5%',5,,6.25,,, -23258,1300,'Beef loin top sirloin filet boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF LOIN TOP SIRLOIN FILET BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1323',,,'Connective tissue 5%',5,,6.25,,, -23259,1300,'Beef loin top sirloin petite roast boneless separable lean only trimmed to 0in fat all grades cooked roasted','BEEF LOIN TOP SIRLON PTIT RST BLS LN 0in FAT AL GRDS CKD RSTD','Gluteus medius',,,'Connective tissue 6%',6,,6.25,,, -23260,1300,'Beef loin top sirloin petite roast boneless separable lean only trimmed to 0in fat select cooked roasted','BEEF LOIN TOP SIRLOIN PETITE RST BNLS LN 0in FAT SEL CKD RSTD','Gluteus medius URMIS #1321',,,'Connective tissue 6%',6,,6.25,,, -23261,1300,'Beef loin top sirloin petite roast/filet boneless separable lean only trimmed to 0in fat all grades raw','BEEF LOIN TOP SRLN PETIT RST/FILT BNLS LN 0in FAT AL GRDS RAW','Gluteus medius',,,'Connective tissue 7%',7,,6.25,,, -23262,1300,'Beef loin top sirloin petite roast/filet boneless separable lean only trimmed to 0in fat select raw','BEEF LOIN TOP SIRLON PETITE RST/FILET BNLS LN 0in FAT SEL RAW','URMIS #1323 Gluteus medius URMIS #1321',,,'Connective tissue 7%',7,,6.25,,, -23263,1300,'Beef ribeye petite roast/filet boneless separable lean only trimmed to 0in fat all grades raw','BEEF RIBEYE PETITE ROAST/FILET BNLESS LN 0in FAT ALL GRDS RAW','Longissimus dorsi',,,'Connective tissue 6%',6,,6.25,,, -23264,1300,'Beef ribeye petite roast/filet boneless separable lean only trimmed to 0in fat choice raw','BEEF RIBEYE PETITE ROAST/FILET BNLESS LN 0in FAT CHOIC RAW','Longissimus dorsi URMIS #2065',,,'Connective tissue 6%',6,,6.25,,, -23265,1300,'Beef ribeye petite roast/filet boneless separable lean only trimmed to 0in fat select raw','BEEF RIBEYE PETITE ROAST/FILET BNLESS LN 0in FAT SEL RAW','Longissimus dorsi URMIS #1250',,,'Connective tissue 5%',5,,6.25,,, -23266,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT ALL GRDS CKD GRILLED','Spinalis dorsi',,,'Connective tissue 10%',10,,6.25,,, -23267,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT CHOIC CKD GRILLED','Spinalis dorsi URMIS #2069',,,'Connective tissue 10%',10,,6.25,,, -23268,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT SEL CKD GRILLED','Spinalis dorsi URMIS #1254',,,'Connective tissue 10%',10,,6.25,,, -23269,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT ALL GRDS RAW','Spinalis dorsi',,,'Connective tissue 12%',12,,6.25,,, -23270,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat choice raw','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT CHOIC RAW','Spinalis dorsi URMIS #2069',,,'Connective tissue 12%',12,,6.25,,, -23271,1300,'Beef ribeye cap steak boneless separable lean only trimmed to 0in fat select raw','BEEF RIBEYE CAP STEAK BNLESS LN 0in FAT SEL RAW','Spinalis dorsi URMIS #1254',,,'Connective tissue 12%',12,,6.25,,, -23272,1300,'Beef ribeye filet boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF RIBEYE FILET BNLESS LN 0in FAT ALL GRDS CKD GRILLED',,,,'Connective tissue 6%',6,,6.25,,, -23273,1300,'Beef ribeye filet boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF RIBEYE FILET BNLESS LN 0in FAT CHOIC CKD GRILLED','URMIS #2068',,,'Connective tissue 6%',6,,6.25,,, -23274,1300,'Beef ribeye filet boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF RIBEYE FILET BNLESS LN 0in FAT SEL CKD GRILLED','URMIS #1253',,,'Connective tissue 6%',6,,6.25,,, -23275,1300,'Beef ribeye petite roast boneless separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RIBEYE PETITE RST BNLESS LN 0in FAT ALL GRDS CKD RSTD','Longissimus dorsi',,,'Connective tissue 6%',6,,6.25,,, -23276,1300,'Beef ribeye petite roast boneless separable lean only trimmed to 0in fat choice cooked roasted','BEEF RIBEYE PETITE RST BNLESS LN 0in FAT CHOIC CKD RSTD','Longissimus dorsi URMIS #2065',,,'Connective tissue 6%',6,,6.25,,, -23277,1300,'Beef ribeye petite roast boneless separable lean only trimmed to 0in fat select cooked roasted','BEEF RIBEYE PETITE RST BNLESS LN 0in FAT SEL CKD RSTD','Longissimus dorsi URMIS #1250',,,'Connective tissue 6%',6,,6.25,,, -23278,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF LOIN TOP SRL CP STK BNLS LN & FT 1/8in FT ALGDS CKD GRLD','Biceps femoris',,,'Connective tissue 8%',8,,6.25,,, -23279,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF LOIN TOP SRLN CAP STK BLS LN & FAT 1/8in FAT CHC CKD GLD','Biceps femoris URMIS #2236',,,'Connective tissue 8%',8,,6.25,,, -23280,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF LOIN TOP SRLN CAP STK BLS LN & FAT 1/8in FAT SEL CKD GLD','Biceps femoris URMIS #1421',,,'Connective tissue 8%',8,,6.25,,, -23281,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat all grades raw','BEEF LOIN TOP SIRLN CAP STK BNLS LN & FAT 1/8in FAT AL GDS RW','Biceps femoris',,,'Connective tissue 7%',7,,6.25,,, -23282,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat choice raw','BEEF LOIN TOP SIRLOIN CAP STK BNLS LN & FAT 1/8in FAT CHC RAW','Biceps femoris URMIS #2236',,,'Connective tissue 8%',8,,6.25,,, -23283,1300,'Beef loin top sirloin cap steak boneless separable lean and fat trimmed to 1/8in fat select raw','BEEF LOIN TOP SIRLOIN CAP STK BNLS LN & FAT 1/8in FAT SEL RAW','Biceps femoris URMIS #1421',,,'Connective tissue 7%',7,,6.25,,, -23284,1300,'Beef top loin filet boneless separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF TOP LOIN FILET BNLS LN & FAT 1/8in FAT ALL GRDS CKD GRLD',,,,'Connective tissue 10%',10,,6.25,,, -23285,1300,'Beef top loin filet boneless separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF TOP LOIN FILET BNLESS LN & FAT 1/8in FAT CHOIC CKD GRILD','URMIS #2137',,,'Connective tissue 12%',12,,6.25,,, -23286,1300,'Beef top loin filet boneless separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF TOP LOIN FILET BNLESS LN & FAT 1/8in FAT SEL CKD GRILLED','URMIS #1322',,,'Connective tissue 9%',9,,6.25,,, -23287,1300,'Beef top loin petite roast boneless separable lean and fat trimmed to 1/8in fat all grades cooked roasted','BEEF TOP LOIN PET RST BNLS LN & FAT 1/8in FAT AL GDS CKD RSTD','Longissimus dorsi',,,'Connective tissue 9%',9,,6.25,,, -23288,1300,'Beef top loin petite roast boneless separable lean and fat trimmed to 1/8in fat choice cooked roasted','BEEF TOP LOIN PETI RST BNLS LN & FAT 1/8in FAT CHOIC CKD RSTD','Longissimus dorsi URMIS #2135',,,'Connective tissue 8%',8,,6.25,,, -23289,1300,'Beef top loin petite roast boneless separable lean and fat trimmed to 1/8in fat select cooked roasted','BEEF TOP LOIN PETITE RST BNLS LN & FAT 1/8in FAT SEL CKD RSTD','Longissimus dorsi URMIS #1320',,,'Connective tissue 10%',10,,6.25,,, -23290,1300,'Beef top loin petite roast/filet boneless separable lean and fat trimmed to 1/8in fat all grades raw','BEEF TOP LOIN PETIT RST/FILT BNS LN & FAT 1/8in FAT AL GRD RW','Longissimus dorsi',,,'Connective tissue 11%',11,,6.25,,, -23291,1300,'Beef top loin petite roast/filet boneless separable lean and fat trimmed to 1/8in fat choice raw','BEEF TOP LOIN PETITE RST/FILET BNLS LN & FAT 1/8in FAT CHC RW','URMIS #2135 Longissimus dorsi URMIS #2137',,,'Connective tissue 13%',13,,6.25,,, -23292,1300,'Beef top loin petite roast/filet boneless separable lean and fat trimmed to 1/8in fat select raw','BEEF TOP LOIN PETITE RST/FILET BNLS LN & FAT 1/8in FAT SEL RW','URMIS #1320 Longissimus dorsi URMIS #1322',,,'Connective tissue 8%',8,,6.25,,, -23293,1300,'Beef Australian imported grass-fed ground 85% lean / 15% fat raw','BEEF AUSTRALIAN IMP GRASS-FED GROUND 85% LN / 15% FAT RAW','Hamburger',,,,0,,6.25,4.27,9.02,3.87 -23294,1300,'Beef Australian imported grass-fed loin tenderloin steak/roast boneless separable lean only raw','BEEF AUS IMP GRSS-FED LOIN TENDERLN STK/RST BNLESS RAW','URMIS #1388 URMIS #1386',,,'Connective tissue 0% Separable fat 4%',4,,6.25,,, -23295,1300,'Beef Australian imported Wagyu loin tenderloin steak/roast boneless separable lean only Aust. marble score 4/5 raw','BEEF AUS IMP WGU TENLN STK/RST BNLESS LN MRB SCR 4/5 RAW','URMIS #1388 URMIS #1386',,,'Connective tissue 0% Separable fat 3%',3,,6.25,,, -23296,1300,'Beef Australian imported grass-fed external fat raw','BEEF AUSTRALIAN IMP GRASS-FED EXTERNAL FAT RAW',,,,,0,,6.25,,, -23297,1300,'Beef Australian imported grass-fed seam fat raw','BEEF AUSTRALIAN IMP GRASS-FED SEAM FAT RAW',,,,,0,,6.25,,, -23298,1300,'Beef Australian imported Wagyu external fat Aust. marble score 4/5 raw','BEEF AUS IMP WAGYU EXTERNAL FAT AUST. MARBLE SCORE 4/5 RAW',,,,,0,,6.25,,, -23299,1300,'Beef Australian imported Wagyu seam fat Aust. marble score 4/5 raw','BEEF AUST IMP WAGYU SEAM FAT AUST. MARBLE SCORE 4/5 RAW',,,,,0,,6.25,,, -23300,1300,'Beef Australian imported Wagyu external fat Aust. marble score 9 raw','BEEF AUST IMP WAGYU EXTERNAL FAT AUST. MARBLE SCORE 9 RAW',,,,,0,,6.25,,, -23301,1300,'Beef Australian imported Wagyu seam fat Aust. marble score 9 raw','BEEF AUSTRALIAN IMP WAGYU SEAM FAT AUST. MARBLE SCORE 9 RAW',,,,,0,,6.25,,, -23302,1300,'Beef Australian imported grass-fed loin tenderloin steak/roast boneless separable lean and fat raw','BEEF AUS IMP GRSS-FED TNDERLN STK/RST BNLESS LN&FAT RAW','URMIS #1386 URMIS #1388',,,,0,,,,, -23303,1300,'Beef Australian imported grass-fed loin top loin steak/roast boneless separable lean only raw','BEEF AUS IMP GRSS-FED TOP LOIN STK/RST BNLESS LN RAW','URMIS #1404 URMIS #1397',,,'Connective tissue 7% Separable fat 16%',23,,6.25,,, -23304,1300,'Beef Australian imported Wagyu loin tenderloin steak/roast boneless separable lean and fat Aust. marble score 4/5 raw','BEEF AU IMP WGU TDLN STK/RST BNLES LN & FAT MRB SCR 4/5 RAW','URMIS #1386 URMIS #1388',,,,0,,,,, -23305,1300,'Beef Australian imported grass-fed loin top loin steak/roast boneless separable lean and fat raw','BEEF AUS IMP GRSS-FED TOP LOIN STK/RST BNLESS LN FAT RAW','URMIS #1397 URMIS #1404',,,'Connective tissue 7%',7,,,,, -23306,1300,'Beef Australian imported grass-fed loin top sirloin cap-off steak/roast boneless separable lean only raw','BEEF AUS IMP GRSS-FD TOP SIRLN CP-OFF STK/RST BNLESS LN RAW','URMIS #1426 URMIS #1419',,,'Connective tissue 2% separable fat 1%',3,,6.25,,, -23307,1300,'Beef Australian imported grass-fed rib ribeye steak/roast lip-on boneless separable lean only raw','BEEF AUS IMP GRSS-FD RIBEYE STK/RST LIP-ON BNLESS LN RAW','URMIS #1194 URMIS# 1203',,,'Connective tissue 7% separable fat 14%',21,,6.25,,, -23308,1300,'Beef Australian imported grass-fed round bottom round steak/roast boneless separable lean only raw','BEEF AUS IMP GRSS-FD BTTM RND STK/RST BNLESS LN RAW','URMIS #1466 URMIS #1464',,,'Connective tissue 3% separable fat 3%',6,,6.25,,, -23309,1300,'Beef Australian imported grass-fed round top round cap-off steak/roast boneless separable lean only raw','BEEF AUS IMP GRSS-FD RD TP RND CAP-OFF STK/RST BNLESS LN RAW','URMIS #1553 URMIS #1454',,,'Connective tissue 1% separable fat 1%',2,,6.25,,, -23310,1300,'Beef Australian imported Wagyu loin tenderloin steak/roast boneless separable lean only Aust. marble score 9 raw','BEEF AUS IMP WGU LOIN TENLN STK/RST BNLESS LN MRB SCR 9 RAW','URMIS #1388 URMIS #1386',,,'Connective tissue 0% separable fat 3%',3,,6.25,,, -23311,1300,'Beef Australian imported Wagyu loin top loin steak/roast boneless separable lean only Aust. marble score 4/5 raw','BEEF AUS IMP WGU TOP LN STK/RST BNLESS LN MRB SCR 4/5 RAW','URMIS #1404 URMIS #1397',,,'connective tissue 6% separable fat 17%',23,,6.25,,, -23312,1300,'Beef Australian imported Wagyu loin top loin steak/roast boneless separable lean only Aust. marble score 9 raw','BEEF AUS IMP WGU TP LN STK/RST BNLESS LN MARBLE SCORE 9 RAW','URMIS #1404 URMIS #1397',,,'Connective tissue 6% Separable fat 19%',25,,6.25,,, -23313,1300,'Beef Australian imported Wagyu rib small end rib steak/roast boneless separable lean only Aust. marble score 4/5 raw','BEEF AUS IMP WGU SMLENDRIB STK/RST BNLESS MRB SCR 4/5 RAW','URMIS #1238 URMIS #1245',,,'Connective tissue 4% Separable fat 22%',26,,6.25,,, -23314,1300,'Beef Australian imported Wagyu rib small end rib steak/roast boneless separable lean only Aust. marble score 9 raw','BEEF AUS IMP WGU SML END RIB STK/RST BNLESS MRB SCR 9 RAW','URMIS #1238 URMIS #1245',,,'Connective tissue 4% Separable fat 24%',28,,6.25,,, -23315,1300,'Beef Australian imported grass-fed loin top sirloin cap-off steak/roast boneless separable lean and fat raw','BEEF AUS IMP GRSS-FD TP SIRLN CP-OFFSTK/RST BNLES LN&FAT RAW','URMIS #1426 URMIS #1419',,,'Connective tissue 2%',2,,,,, -23316,1300,'Beef Australian imported grass-fed rib ribeye steak/roast lip-on boneless separable lean and fat raw','BEEF AUS IMP GRSS-FD RBEYE STK/RST LIP-ON BNLESS LN&FAT RAW','URMIS #1194 URMIS #1203',,,'Connective tissue 7%',7,,,,, -23317,1300,'Beef Australian imported grass-fed round bottom round steak/roast boneless separable lean and fat raw','BEEF AUS IMP GRSS-FED BTTM RND STK/RST BNLESS LN&FAT RAW','URMIS #1466 URMIS #1464',,,'Connective tissue 3%',3,,,,, -23318,1300,'Beef Australian imported grass-fed round top round cap-off steak/roast boneless separable lean and fat raw','BEEF AUS IMP GRSS-FD TP RNDCAP-OFF STK/RST BNLESS LN&FAT RAW','URMIS #1553 URMIS #1454',,,,0,,,,, -23319,1300,'Beef Australian imported Wagyu loin top loin steak/roast boneless separable lean and fat Aust. marble score 4/5 raw','BEEF AUS IMP WGU TP LN STK/RST BNLES LN & FAT MRB SCR4/5 RAW','URMIS #1404 URMIS #1397',,,'Connective tissue 6%',6,,,,, -23320,1300,'Beef Australian imported Wagyu loin top loin steak/roast separable lean and fat Aust. marble score 9 raw','BEEF AUS IMP WGU TP LN STK/RST LN & FAT MARBLE SCORE9 RAW','URMIS #1397 URMIS #1404',,,'Connective tissue 6%',6,,,,, -23321,1300,'Beef Australian imported Wagyu rib small end rib steak/roast boneless separable lean and fat Aust. marble score 4/5 raw','BEEF AUS IMP WGU SMLEDRIB STK/RST BNLES LN&FAT MRBSCR4/5 RAW','URMIS #1245 URMIS #1238',,,'Connective tissue 4%',4,,,,, -23322,1300,'Beef Australian imported Wagyu rib small end rib steak/roast boneless separable lean and fat Aust. marble score 9 raw','BEEF AUS IMP WGU SMLEDRIB STK/RST BNLESS LN&FAT MRB SCR9 RAW','URMIS #1245 URMIS #1238',,,'Connective tissue 4%',4,,,,, -23323,1300,'Beef Australian imported Wagyu loin tenderloin steak/roast boneless separable lean and fat Aust. marble score 9 raw','BEEF AU IMP WGU TNLN STK/RST BNLESS LN & FAT MRB SCR 9 RAW','URMIS #1388 URMIS #1386',,,,0,,,,, -23324,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF RND TOP RND STEAK BNLESS LN & FAT 0in FAT ALL GRDS RAW','Top Round Steak',,'Y','Connective tissue 1%',1,,6.25,,, -23325,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF RND TOP RND STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS # 2368 Top Round Steak',,,'Connective tissue 1%',1,,6.25,,, -23326,1300,'Beef round top round steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF RND TOP RND STEAK BNLESS LN & FAT 0in FAT SEL RAW','URMIS # 1553 Top Round Steak',,,'Connective tissue 1%',1,,6.25,,, -23327,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF RND TOP RND RST BNLESS LN & FAT 0in FAT ALL GRDS RAW','Top Round Roast',,'Y','Connective tissue 1%',1,,6.25,,, -23328,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat choice raw','BEEF RND TOP RND RST BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS # 2366 Top Round Roast',,,'Connective tissue 1%',1,,6.25,,, -23329,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat select raw','BEEF RND TOP RND RST BNLESS LN & FAT 0in FAT SEL RAW','Top Round Roast URMIS # 1551',,,'Connective tissue 1%',1,,6.25,,, -23330,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF RND EYE OF RND RST BNLESS LN & FAT 0in FAT ALL GRDS RAW','Eye of Round Roast',,'Y','Connective tissue 1%',1,,6.25,,, -23331,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat choice raw','BEEF RND EYE OF RND RST BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS # 2295 Eye of Round Roast',,,'Connective tissue 1%',1,,6.25,,, -23332,1300,'Beef round eye of round roast boneless separable lean and fat trimmed to 0in fat select raw','BEEF RND EYE OF RND RST BNLESS LN & FAT 0in FAT SEL RAW','Eye of Round Roast URMIS # 1480',,,'Connective tissue 1%',1,,6.25,,, -23333,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF RND EYE OF RND STEAK BNLESS LN & FT 0in FAT ALL GRDS RAW','Eye of Round Steak',,,'Connective tissue 1%',1,,6.25,,, -23334,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF RND EYE OF RND STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS # 2296 Eye of Round Steak',,,'Connective tissue 1%',1,,6.25,,, -23335,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF RND EYE OF RND STEAK BNLESS LN & FAT 0in FAT SEL RAW','Eye of Round Steak URMIS # 1481',,,'Connective tissue 1%',1,,6.25,,, -23336,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF LOIN TENDERLOIN RST BNLESS LN & FAT 0in FAT ALL GRDS RAW','Tenderloin Roast',,,'Connective tissue 1%',1,,6.25,,, -23337,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat choice raw','BEEF LOIN TENDERLOIN RST BNLESS LN & FAT 0in FAT CHOIC RAW','Tenderloin Roast URMIS # 2201',,,'Connective tissue 1%',1,,6.25,,, -23338,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat select raw','BEEF LOIN TENDERLOIN RST BNLESS LN & FAT 0in FAT SEL RAW','Tenderloin Roast URMIS # 1386',,,'Connective tissue 2%',2,,6.25,,, -23339,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat all grades raw','BEEF LOIN TOP LOIN STK BNLS LIP OFF LN & FAT 0in FT ALLGRD RW','Boneless Strip Steak Club Steak New York Strip Kansas City Strip',,'Y','Connective tissue 9%',9,,6.25,,, -23340,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat choice raw','BEEF LOIN TOP LOIN STK BNLS LIP OFF LN & FAT 0in FT CHOIC RAW','URMIS # 2219 Boneless Strip Steak Club Steak New York Strip Kansas City Strip',,,'Connective tissue 9%',9,,6.25,,, -23341,1300,'Beef loin top loin steak boneless lip off separable lean and fat trimmed to 0in fat select raw','BEEF LOIN TOP LOIN STEAK BNLS LIP OFF LN & FAT 0in FAT SEL RW','Boneless Strip Steak URMIS # 1404',,,'Connective tissue 9%',9,,6.25,,, -23342,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat all grades raw','BEEF LOIN TENDERLOIN STEAK BNLESS L & F 0in FAT ALL GRDS RAW','Filet Mignon Tenderloin Steak Beef Medallions',,,'Connective tissue 1%',1,,6.25,,, -23343,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat choice raw','BEEF LOIN TENDERLOIN STEAK BNLESS LN & FAT 0in FAT CHOIC RAW','URMIS # 2203 Tenderloin Steak Beef Medallions Filet Mignon',,,'Connective tissue 1%',1,,6.25,,, -23344,1300,'Beef loin tenderloin steak boneless separable lean and fat trimmed to 0in fat select raw','BEEF LOIN TENDERLOIN STEAK BNLESS LN & FAT 0in FAT SEL RAW','URMIS # 1388 Tenderloin Steak Beef Medallions Filet Mignon',,,'Connective tissue 1%',1,,6.25,,, -23345,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF LOIN TNDRLN RST BNLESS L & F 0in FAT ALL GRDS CKD RSTD','Tenderloin Roast',,'Y','Connective tissue 1%',1,,6.25,,, -23346,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF LOIN TENDERLOIN RST BNLESS L & F 0in FAT CHOIC CKD RSTD','URMIS # 2201 Tenderloin roast',,,'Connective tissue 1%',1,,6.25,,, -23347,1300,'Beef loin tenderloin roast boneless separable lean and fat trimmed to 0in fat select cooked roasted','BEEF LOIN TENDERLOIN RST BNLESS LN & FAT 0in FAT SEL CKD RSTD','URMIS # 1386 Tenderloin Roast',,,'Connective tissue 1%',1,,6.25,,, -23348,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF RND TOP RND RST BNLS LN&FAT 0in FAT ALLGRD CKD RSTD','Top Round Roast',,'Y',,0,,6.25,,, -23349,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF RND TOP RND RST BNLESS LN & FAT 0in FAT CHOIC CKD RSTD','URMIS # 2366 Top Round Roast',,,,0,,6.25,,, -23350,1300,'Beef round top round roast boneless separable lean and fat trimmed to 0in fat select cooked roasted','BEEF RND TOP RND RST BNLESS LN & FAT 0in FAT SEL CKD RSTD','URMIS # 1551 Top Round Roast',,,,0,,6.25,,, -23351,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF RND EYE OF RND STK BNLESS L & F 0in F A GRDS CKD GRILLED','Eye of Round Steak',,'Y',,0,,6.25,,, -23352,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF RND EYE OF RD STEAK BNLESS L & F 0in FT CHOIC CK GRLLED','URMIS # 2296 Eye of Round Steak',,,,0,,6.25,,, -23353,1300,'Beef round eye of round steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF RND EYE OF RND STEAK BNLS LN & FAT 0in FAT SEL CKD GRLD','Eye of Round Steak URMIS # 1481',,'Y',,0,,6.25,,, -23354,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF RND TOP RND STEAK BNLESS LN 0in FAT ALL GRDS RAW','Top Round Steak',,'Y','Connective tissue 1%',1,,6.25,,, -23355,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat choice raw','BEEF RND TOP RND STEAK BNLESS LN 0in FAT CHOIC RAW','Top Round Steak URMIS # 2368',,,'Connective tissue 1%',1,,6.25,,, -23356,1300,'Beef round top round steak boneless separable lean only trimmed to 0in fat select raw','BEEF RND TOP RND STEAK BNLESS LN 0in FAT SEL RAW','Top Round Steak URMIS # 1553',,,'Connective tissue 2%',2,,6.25,,, -23357,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat all grades raw','BEEF RND TOP RND RST BNLESS LN 0in FAT ALL GRDS RAW','Top Round Roast',,'Y','Connective tissue 2%',2,,6.25,,, -23358,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat choice raw','BEEF RND TOP RND RST BNLESS LN 0in FAT CHOIC RAW','Top Round Roast URMIS # 2366',,,'Connective tissue 2%',2,,6.25,,, -23359,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat select raw','BEEF RND TOP RND RST BNLESS LN 0in FAT SEL RAW','Top Round Roast URMIS # 1551',,,'Connective tissue 2%',2,,6.25,,, -23360,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat all grades raw','BEEF RND EYE OF RND RST BNLESS LN 0in FAT ALL GRDS RAW','Eye of Round Roast',,'Y','Connective tissue 2%',2,,6.25,,, -23361,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat choice raw','BEEF RND EYE OF RND RST BNLESS LN 0in FAT CHOIC RAW','Eye of Round Roast URMIS # 2295',,,'Connective tissue 2%',2,,6.25,,, -23362,1300,'Beef round eye of round roast boneless separable lean only trimmed to 0in fat select raw','BEEF RND EYE OF RND RST BNLESS LN 0in FAT SEL RAW','Eye of Round Roast URMIS # 1480',,,'Connective tissue 2%',2,,6.25,,, -23363,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF RND EYE OF RND STEAK BNLESS LN 0in FAT ALL GRDS RAW','Eye of Round Steak',,,'Connective tissue 2%',2,,6.25,,, -23364,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat choice raw','BEEF RND EYE OF RND STEAK BNLESS LN 0in FAT CHOIC RAW','Eye of Round Steak URMIS # 2296',,,'Connective tissue 2%',2,,6.25,,, -23365,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat select raw','BEEF RND EYE OF RND STEAK BNLESS LN 0in FAT SEL RAW','Eye of Round Steak URMIS # 1481',,,'Connective tissue 2%',2,,6.25,,, -23366,1300,'Beef loin tenderloin roast boneless separable lean only trimmed to 0in fat all grades raw','BEEF LOIN TENDERLOIN RST BNLESS LN 0in FAT ALL GRDS RAW','Tenderloin Roast',,,'Connective tissue 1% separable fat 3%',4,,6.25,,, -23367,1300,'Beef loin tenderloin roast boneless separable lean only trimmed to 0in fat choice raw','BEEF LOIN TENDERLOIN RST BNLESS LN 0in FAT CHOIC RAW','Tenderloin Roast URMIS # 2201',,,'Connective tissue 1% separable fat 3%',4,,6.25,,, -23368,1300,'Beef loin tenderloin roast boneless separable lean only trimmed to 0in fat select raw','BEEF LOIN TENDERLOIN RST BNLESS LN 0in FAT SEL RAW','Tenderloin Roast URMIS # 1386',,,'Connective tissue 1% separable fat 2%',3,,6.25,,, -23369,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat all grades raw','BEEF LOIN TOP LOIN STK BNLS LIP OFF LN 0in FAT ALL GRDS RAW','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,'Y','Connective tissue 8% separable fat 5%',13,,6.25,,, -23370,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat choice raw','BEEF LOIN TOP LOIN STEAK BNLESS LIP OFF LN 0in FAT CHOIC RAW','URMIS # 2219 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8% separable fat 6%',14,,6.25,,, -23371,1300,'Beef loin top loin steak boneless lip off separable lean only trimmed to 0in fat select raw','BEEF LOIN TOP LOIN STEAK BNLESS LIP OFF LN 0in FAT SEL RAW','URMIS # 1404 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8% separable fat 4%',12,,6.25,,, -23372,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat all grades raw','BEEF LOIN TENDERLOIN STEAK BNLESS LN 0in FAT ALL GRDS RAW','Fillet Mignon Tenderloin Steak Beef Medallions',,,'Separable fat 2%',2,,6.25,,, -23373,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat choice raw','BEEF LOIN TENDERLOIN STEAK BNLESS LN 0in FAT CHOIC RAW','URMIS # 2203 Tenderloin Steak Beef Medallions Filet Mignon',,,'Separable fat 2%',2,,6.25,,, -23374,1300,'Beef loin tenderloin steak boneless separable lean only trimmed to 0in fat select raw','BEEF LOIN TENDERLOIN STEAK BNLESS LN 0in FAT SEL RAW','URMIS # 1388 Tenderloin Steak Beef Medallions Filet Mignon',,,'Separable fat 2%',2,,6.25,,, -23375,1300,'Beef loin tenderloin roast boneless separable lean only trimmed to 0in fat all grades cooked roasted','BEEF LOIN TENDERLOIN RST BNLESS LN 0in FAT ALL GRDS CKD RSTD','Tenderloin Roast',,'Y','Separable fat 1%',1,,6.25,,, -23376,1300,'Beef loin tenderloin roast boneless separable lean only trimmed to 0in fat choice cooked roasted','BEEF LOIN TENDERLOIN RST BNLESS LN 0in FAT CHOIC CKD RSTD','Tenderloin Roast URMIS # 2201',,,'Separable fat 1%',1,,6.25,,, -23377,1300,'Beef loin tenderloin roast separable lean only boneless trimmed to 0in fat select cooked roasted','BEEF LOIN TENDERLOIN RST LN BNLESS 0in FAT SEL CKD RSTD','Tenderloin Roast URMIS # 1386',,,'Separable fat 1%',1,,6.25,,, -23378,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat all grades cooked roasted','BEEF RND TOP RND RST BNLESS LN 0in FAT ALL GRDS CKD RSTD','Top Round Roast',,'Y',,0,,6.25,4.27,9.02,3.87 -23379,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat choice cooked roasted','BEEF RND TOP RND RST BNLESS LN 0in FAT CHOIC CKD RSTD','Top Round Roast URMIS # 2366',,,,0,,6.25,,, -23380,1300,'Beef round top round roast boneless separable lean only trimmed to 0in fat select cooked roasted','BEEF RND TOP RND RST BNLESS LN 0in FAT SEL CKD RSTD','Top Round Roast URMIS # 1551',,,,0,,6.25,,, -23381,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF RND EYE OF RND STEAK BNLESS LN 0in FT A GRDS CKD GRILLED','Eye of Round Steak',,'Y',,0,,6.25,,, -23382,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat choice cooked grilled','BEEF RND EYE OF RND STEAK BNLESS LN 0in FAT CHOIC CKD GRILLED','Eye of Round Steak URMIS # 2296',,,,0,,6.25,,, -23383,1300,'Beef round eye of round steak boneless separable lean only trimmed to 0in fat select cooked grilled','BEEF RND EYE OF RND STEAK BNLESS LN 0in FAT SEL CKD GRILLED','Eye of Round Steak URMIS # 1481',,,,0,,6.25,,, -23384,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat select raw','BEEF LOIN TOP LOIN STEAK BNLESS LIP-ON LN 1/8in FAT SEL RAW','URMIS # 1404 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7% Separable fat 14%',21,,,,, -23385,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat choice raw','BEEF LOIN TOP LOIN STEAK BNLESS LIP-ON LN 1/8in FAT CHOIC RAW','URMIS # 2219 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7% separable fat 14%',22,,6.25,,, -23386,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat all grades raw','Beef ln top ln stk bneless lip-on 1/8in fat all grdes raw','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7% Separable fat 14%',22,,6.25,,, -23387,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat select raw','BEEF LN TP LN STEAK BNLESS LIP-ON LN & FAT 1/8in FAT SEL RAW','URMIS # 1404 Kansa City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7%',7,,6.25,,, -23388,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat all grades raw','BEEF LN TP LN STK BNLESS LIPON LN & FAT 1/8in FAT ALL GRDS RW','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7%',7,,6.25,,, -23389,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat choice cooked grilled','BEEF LN TP LN STK BNLESS LIPON L & F 1/8in FAT CHOIC GRILLED','URMIS # 2219 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8%',8,,6.25,,, -23390,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat select cooked grilled','BEEF LN TP LN STK BNLESS LIPON L & F 1/8in FAT SeL CK GRLED','URMIS # 1404 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 9%',9,,6.25,,, -23391,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat all grades cooked grilled','BEEF LN TP LN STK BNLESS LIPON L & F 1/8 FAT A GRDS GRILLED','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8%',8,,6.25,,, -23392,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat choice cooked grilled','BEEF LON TP LON STK BNLSS LIP-ON LN 1/8in FAT CHC CKD GRILLD','URMIS # 2219 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8% separable fat 14%',22,,6.25,,, -23393,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat select cooked grilled','BEEF LN TOP LN STK BNLESS LIP-ON LN 1/8in FAT SEL CKD GRILLD','URMIS # 1404 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 9% separable fat 12%',21,,,,, -23394,1300,'Beef loin top loin steak boneless lip-on separable lean only trimmed to 1/8in fat all grades cooked grilled','BEEF LN TOP LN STK BNLSS LIP-ON LN 1/8in FAT ALL GRDS GRLLD','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 8% separable fat 13%',21,,,,, -23395,1300,'Beef loin top loin steak boneless lip-on separable lean and fat trimmed to 1/8in fat choice raw','BEEF LOIN TP LN STK BNLESS LIP-ON L&F 1/8in FAT CHOIC RAW','URMIS # 2219 Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Connective tissue 7% separable fat 14%',21,,6.25,,, -23397,1300,'Beef New Zealand imported bolar blade separable lean only cooked fast roasted','BEEF NZ IMP BOLAR BLADE LN CKD FAST RSTD',,,,'Bone and connective tissue 5% Separable fat 7%',12,,6.25,,, -23398,1300,'Beef New Zealand imported bolar blade separable lean only raw','BEEF NZ IMP BOLAR BLADE LN RAW',,,,'Bone and Connective tissue 2% Separable fat 5%',7,,6.25,,, -23399,1300,'Beef New Zealand imported brisket navel end separable lean only cooked braised','BEEF NZ IMP BRISKET NAVEL END LN CKD BRSD',,,,'Separable fat 29%',29,,6.25,,, -23401,1300,'Beef New Zealand imported brisket navel end separable lean only raw','BEEF NZ IMP BRISKET NAVEL END LN RAW',,,,'Separable fat 27%',27,,6.25,,, -23402,1300,'Beef New Zealand imported brisket point end separable lean only cooked braised','BEEF NZ IMP BRISKET POINT END LN CKD BRSD',,,,'Separable fat 8%',8,,6.25,,, -23403,1300,'Beef New Zealand imported brisket point end separable lean only raw','BEEF NZ IMP BRISKET POINT END LN RAW',,,,'Separable fat 6%',6,,6.25,,, -23404,1300,'Beef New Zealand imported chuck eye roll separable lean only raw','BEEF NZ IMP CHUCK EYE ROLL LN RAW',,,,'Separable fat 8%',8,,6.25,,, -23405,1300,'Beef New Zealand imported chuck eye roll separable lean only cooked braised','BEEF NZ IMP CHUCK EYE ROLL LN CKD BRSD',,,,'Separable fat 8%',8,,6.25,,, -23406,1300,'Beef New Zealand imported cube roll separable lean only cooked fast roasted','BEEF NZ IMP CUBE ROLL LN CKD FAST RSTD',,,,'Separable fat 9%',9,,6.25,,, -23407,1300,'Beef New Zealand imported cube roll separable lean only raw','BEEF NZ IMP CUBE ROLL LN RAW',,,,'Separable fat 11%',11,,6.25,,, -23408,1300,'Beef New Zealand imported eye round separable lean only cooked slow roasted','BEEF NZ IMP EYE RND LN CKD SLOW RSTD',,,,,0,,6.25,,, -23409,1300,'Beef New Zealand imported eye round separable lean only raw','BEEF NZ IMP EYE RND LN RAW',,,,'Separable fat 2%',2,,6.25,,, -23410,1300,'Beef New Zealand imported flank separable lean only cooked braised','BEEF NZ IMP FLANK LN CKD BRSD',,,,'Separable fat 3%',3,,6.25,,, -23411,1300,'Beef New Zealand imported flank separable lean only raw','BEEF NZ IMP FLANK LN RAW',,,,'Separable fat 3%',3,,6.25,,, -23412,1300,'Beef New Zealand imported flat separable lean only cooked braised','BEEF NZ IMP FLAT LN CKD BRSD',,,,'Separable fat 5%',5,,6.25,,, -23413,1300,'Beef New Zealand imported flat separable lean only raw','BEEF NZ IMP FLAT LN RAW',,,,'Separable fat 5%',5,,6.25,,, -23414,1300,'Beef New Zealand imported variety meats and by-products heart cooked boiled','BEEF NZ IMP VAR MEATS & BY-PRODUCTS HEART CKD BLD',,,,'Separable fat 15%',15,,6.25,,, -23415,1300,'Beef New Zealand imported variety meats and by-products heart raw','BEEF NZ IMP VAR MEATS & BY-PRODUCTS HEART RAW',,,,'Separable fat 12%',12,,6.25,,, -23416,1300,'Beef New Zealand imported hind shin separable lean only cooked braised','BEEF NZ IMP HIND SHIN LN CKD BRSD',,,,'Connective tissue 2% Separable fat 5%',7,,6.25,,, -23417,1300,'Beef New Zealand imported hind shin separable lean only raw','BEEF NZ IMP HIND SHIN LN RAW',,,,'Conective tissue .91% Separable fat 6%',7,,6.25,,, -23418,1300,'Beef New Zealand imported inside raw','BEEF NZ IMP INSIDE RAW',,,,'Connective tissue .55% Separable fat 2%',3,,6.25,,, -23419,1300,'Beef New Zealand imported intermuscular fat cooked','BEEF NZ IMP INTERMUSCULAR FAT CKD',,,,,,,6.25,,, -23420,1300,'Beef New Zealand imported intermuscular fat raw','BEEF NZ IMP INTERMUSCULAR FAT RAW',,,,,,,6.25,,, -23421,1300,'Beef New Zealand imported variety meats and by-products kidney cooked boiled','BEEF NZ IMP VAR MEATS & BY-PRODUCTS KIDNEY CKD BLD',,,,'Connective tissue 20%',20,,6.25,,, -23422,1300,'Beef New Zealand imported knuckle cooked fast fried','BEEF NZ IMP KNUCKLE CKD FAST FRIED',,,,'Connective tissue .33% Separable fat 5%',5,,6.25,,, -23423,1300,'Beef New Zealand imported variety meats and by-products kidney raw','BEEF NZ IMP VAR MEATS & BY-PRODUCTS KIDNEY RAW',,,,'Connective tissue 10%',10,,6.25,,, -23424,1300,'Beef New Zealand imported variety meats and by-products liver cooked boiled','BEEF NZ IMP VAR MEATS & BY-PRODUCTS LIVER CKD BLD',,,,'Connective tissue 2%',2,,6.25,,, -23425,1300,'Beef New Zealand imported variety meats and by-products liver raw','BEEF NZ IMP VAR MEATS & BY-PRODUCTS LIVER RAW',,,,'Connective tissue 3%',3,,6.25,,, -23426,1300,'Beef New Zealand imported manufacturing beef cooked boiled','BEEF NZ IMP MANUFACTURING BF CKD BLD',,,,,0,,6.25,,, -23427,1300,'Beef New Zealand imported manufacturing beef raw','BEEF NZ IMP MANUFACTURING BF RAW',,,,,0,,6.25,,, -23428,1300,'Beef New Zealand imported oyster blade separable lean only cooked braised','BEEF NZ IMP OYSTER BLADE LN CKD BRSD',,,,,0,,6.25,,, -23429,1300,'Beef New Zealand imported oyster blade separable lean only raw','BEEF NZ IMP OYSTER BLADE LN RAW',,,,'Separable fat 4%',4,,6.25,,, -23430,1300,'Beef New Zealand imported ribs prepared cooked fast roasted','BEEF NZ IMP RIBS PREP CKD FAST RSTD',,,,'Bone and Connective tissue 15% Separable fat 10%',25,,6.25,,, -23431,1300,'Beef New Zealand imported ribs prepared raw','BEEF NZ IMP RIBS PREP RAW',,,,'Bone and connective tissue 7% Separable fat 15%',22,,6.25,,, -23432,1300,'Beef New Zealand imported rump centre separable lean only cooked fast fried','BEEF NZ IMP RUMP CENTRE LN CKD FAST FRIED',,,,,0,,6.25,,, -23433,1300,'Beef New Zealand imported striploin separable lean only cooked fast fried','BEEF NZ IMP STRIPLOIN LN CKD FAST FRIED',,,,'Separable fat 14%',14,,6.25,,, -23434,1300,'Beef New Zealand imported striploin separable lean only raw','BEEF NZ IMP STRIPLOIN LN RAW',,,,'Separable fat 16%',16,,6.25,,, -23435,1300,'Beef New Zealand imported subcutaneous fat cooked','BEEF NZ IMP SUBCUTANEOUS FAT CKD',,,,,0,,6.25,,, -23436,1300,'Beef New Zealand imported subcutaneous fat raw','BEEF NZ IMP SUBCUTANEOUS FAT RAW',,,,,0,,6.25,,, -23437,1300,'Beef New Zealand imported sweetbread cooked boiled','BEEF NZ IMP SWEETBREAD CKD BLD',,,,'Conncetive tissue 4% Separable fat 4%',8,,,,, -23438,1300,'Beef New Zealand imported sweetbread raw','BEEF NZ IMP SWEETBREAD RAW',,,,'Conncetive tissue 2% Separable fat 5%',7,,6.25,,, -23439,1300,'Beef New Zealand imported tenderloin separable lean only cooked fast fried','BEEF NZ IMP TENDERLOIN LN CKD FAST FRIED',,,,,0,,6.25,,, -23440,1300,'Beef New Zealand imported oyster blade separable lean and fat raw','BEEF NZ IMP OYSTER BLADE LN & FAT RAW',,,,,0,,,,, -23441,1300,'Beef New Zealand imported tenderloin separable lean only raw','BEEF NZ IMP TENDERLOIN LN RAW',,,,'Separable fat 1%',1,,6.25,,, -23442,1300,'Beef New Zealand imported variety meats and by-products tongue cooked boiled','BEEF NZ IMP VAR MEATS & BY-PRODUCTS TONGUE CKD BLD',,,,'Connective tissue 9% Separable fat 2%',11,,6.25,,, -23443,1300,'Beef New Zealand imported variety meats and by-products tongue raw','BEEF NZ IMP VAR MEATS & BY-PRODUCTS TONGUE RAW',,,,'Connective tissue 17% Separable fat 3%',20,,6.25,,, -23444,1300,'Beef New Zealand imported variety meats and by-products tripe cooked boiled','BEEF NZ IMP VAR MEATS & BY-PRODUCTS TRIPE CKD BLD',,,,'Separable fat 8%',8,,6.25,,, -23445,1300,'Beef New Zealand imported variety meats and by-products tripe uncooked raw','BEEF NZ IMP VAR MEATS & BY-PRODUCTS TRIPE UNCKD RAW',,,,'Separable fat 10%',10,,6.25,,, -23446,1300,'Beef New Zealand imported bolar blade separable lean and fat cooked fast roasted','BEEF NZ IMP BOLAR BLADE LN & FAT CKD FAST RSTD',,,,'Bone and connective tissue 5%',5,,,,, -23447,1300,'Beef New Zealand imported bolar blade separable lean and fat raw','BEEF NZ IMP BOLAR BLADE LN & FAT RAW',,,,'Bone and Connective tissue 2%',2,,,,, -23448,1300,'Beef New Zealand imported brisket navel end separable lean and fat cooked braised','BEEF NZ IMP BRISKET NAVEL END LN & FAT CKD BRSD',,,,,0,,,,, -23449,1300,'Beef New Zealand imported brisket navel end separable lean and fat raw','BEEF NZ IMP BRISKET NAVEL END LN & FAT RAW',,,,,0,,,,, -23450,1300,'Beef New Zealand imported brisket point end separable lean and fat cooked braised','BEEF NZ IMP BRISKET POINT END LN & FAT CKD BRSD',,,,,0,,,,, -23451,1300,'Beef New Zealand imported brisket point end separable lean and fat raw','BEEF NZ IMP BRISKET POINT END LN & FAT RAW',,,,,0,,,,, -23452,1300,'Beef New Zealand imported chuck eye roll separable lean and fat cooked braised','BEEF NZ IMP CHUCK EYE ROLL LN & FAT CKD BRSD',,,,,0,,,,, -23453,1300,'Beef New Zealand imported chuck eye roll separable lean and fat raw','BEEF NZ IMP CHUCK EYE ROLL LN & FAT RAW',,,,,0,,,,, -23454,1300,'Beef New Zealand imported cube roll separable lean and fat cooked fast roasted','BEEF NZ IMP CUBE ROLL LN & FAT CKD FAST RSTD',,,,,0,,,,, -23455,1300,'Beef New Zealand imported cube roll separable lean and fat raw','BEEF NZ IMP CUBE ROLL LN & FAT RAW',,,,,0,,,,, -23456,1300,'Beef New Zealand imported eye round separable lean and fat cooked slow roasted','BEEF NZ IMP EYE RND LN & FAT CKD SLOW RSTD',,,,,0,,,,, -23457,1300,'Beef New Zealand imported eye round separable lean and fat raw','BEEF NZ IMP EYE RND LN & FAT RAW',,,,,0,,,,, -23458,1300,'Beef New Zealand imported flank separable lean and fat cooked braised','BEEF NZ IMP FLANK LN & FAT CKD BRSD',,,,,0,,,,, -23459,1300,'Beef New Zealand imported flank separable lean and fat raw','BEEF NZ IMP FLANK LN & FAT RAW',,,,,0,,,,, -23460,1300,'Beef New Zealand imported flat separable lean and fat cooked braised','BEEF NZ IMP FLAT LN & FAT CKD BRSD',,,,,0,,,,, -23461,1300,'Beef New Zealand imported flat separable lean and fat raw','BEEF NZ IMP FLAT LN & FAT RAW',,,,,0,,,,, -23462,1300,'Beef New Zealand imported hind shin separable lean and fat cooked braised','BEEF NZ IMP HIND SHIN LN & FAT CKD BRSD',,,,'Connective tissue 2%',2,,,,, -23463,1300,'Beef New Zealand imported hind shin separable lean and fat raw','BEEF NZ IMP HIND SHIN LN & FAT RAW',,,,'Connective tissue 1%',1,,6.25,,, -23464,1300,'Beef New Zealand imported oyster blade separable lean and fat cooked braised','BEEF NZ IMP OYSTER BLADE LN & FAT CKD BRSD',,,,,0,,,,, -23465,1300,'Beef New Zealand imported rump centre separable lean and fat cooked fast fried','BEEF NZ IMP RUMP CENTRE LN & FAT CKD FAST FRIED',,,,,0,,,,, -23466,1300,'Beef New Zealand imported rump centre separable lean only raw','BEEF NZ IMP RUMP CENTRE LN RAW',,,,'Separable fat 5%',5,,6.25,,, -23467,1300,'Beef New Zealand imported rump centre separable lean and fat raw','BEEF NZ IMP RUMP CENTRE LN & FAT RAW',,,,,0,,,,, -23468,1300,'Beef New Zealand imported striploin separable lean and fat cooked fast fried','BEEF NZ IMP STRIPLOIN LN & FAT CKD FAST FRIED',,,,,0,,,,, -23469,1300,'Beef New Zealand imported striploin separable lean and fat raw','BEEF NZ IMP STRIPLOIN LN & FAT RAW',,,,,0,,,,, -23470,1300,'Beef New Zealand imported tenderloin separable lean and fat cooked fast fried','BEEF NZ IMP TENDERLOIN LN & FAT CKD FAST FRIED',,,,,0,,,,, -23471,1300,'Beef New Zealand imported tenderloin separable lean and fat raw','BEEF NZ IMP TENDERLOIN LN & FAT RAW',,,,,0,,,,, -23472,1300,'Beef ground 93% lean meat / 7% fat raw','BEEF GROUND 93% LN MEAT / 7% FAT','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23473,1300,'Beef ground 93% lean meat / 7% fat patty cooked broiled','BEEF GROUND 93% LN MEAT / 7% FAT PATTY CKD BRLD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23474,1300,'Beef ground 93% lean meat /7% fat patty cooked pan-broiled','BEEF GROUND 93% LN MEAT /7% FAT PATTY CKD PAN-BROILED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23475,1300,'Beef ground 93% lean meat / 7% fat loaf cooked baked','BEEF GROUND 93% LN MEAT / 7% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23476,1300,'Beef ground 93% lean meat / 7% fat crumbles cooked pan-browned','BEEF GROUND 93% LN MEAT / 7% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23477,1300,'Beef ground 97% lean meat / 3% fat raw','BEEF GROUND 97% LN MEAT / 3% FAT RAW','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23478,1300,'Beef ground 97% lean meat / 3% fat patty cooked broiled','BEEF GROUND 97% LN MEAT / 3% FAT PATTY CKD BRLD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23479,1300,'Beef ground 97% lean meat /3% fat patty cooked pan-broiled','BEEF GROUND 97% LN MEAT /3% FAT PATTY CKD PAN-BROILED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23480,1300,'Beef ground 97% lean meat / 3% fat loaf cooked baked','BEEF GROUND 97% LN MEAT / 3% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23481,1300,'Beef ground 97% lean meat / 3% fat crumbles cooked pan-browned','BEEF GROUND 97% LN MEAT / 3% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23482,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat all grades raw','BEEF COMP OF RTL CUTS LN & FAT 0in FAT ALL GRDS RAW',,,,'No component data available',0,,,,, -23483,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 1/8in fat all grades raw','BEEF COMP OF RTL CUTS LN 1/8in FAT ALL GRDS RAW',,,,'No component data available',0,,,,, -23484,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 1/8in fat all grades cooked','BEEF COMP OF RTL CUTS LN 1/8in FAT ALL GRDS CKD',,,,'No component data available',0,,,,, -23485,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat all grades raw','BEEF COMP OF RTL CUTS LN 0in FAT ALL GRDS RAW',,,,'No component data available',0,,,,, -23490,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 1/8in fat choice raw','BEEF COMP OF RTL CUTS LN 1/8in FAT CHOIC RAW',,,,'No component data available',,,,,, -23491,1300,'Beef composite separable lean only trimmed to 1/8in fat choice cooked','BEEF COMP LN 1/8in FAT CHOIC CKD',,,,'No component data available',,,,,, -23494,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat choice raw','BEEF COMP OF RTL CUTS LN & FAT 0in FAT CHOIC RAW',,,,'No component data available',,,,,, -23495,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat choice raw','BEEF COMP OF RTL CUTS LN 0in FAT CHOIC RAW',,,,'No component data available',,,,,, -23496,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 0in fat select raw','BEEF COMP OF RTL CUTS LN 0in FAT SEL RAW',,,,'No component data available',,,,,, -23497,1300,'Beef composite of trimmed retail cuts separable lean and fat trimmed to 0in fat select raw','BEEF COMP OF RTL CUTS LN & FAT 0in FAT SEL RAW',,,,'No component data available',,,,,, -23498,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 1/8in fat select cooked','BEEF COMP OF RTL CUTS LN 1/8in FAT SEL CKD',,,,'No component data available',,,,,, -23499,1300,'Beef composite of trimmed retail cuts separable lean only trimmed to 1/8in fat select raw','BEEF COMP OF RTL CUTS LN 1/8in FAT SEL RAW',,,,'No component data available',,,,,, -23509,1300,'Beef chuck mock tender steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF CHUCK MOCK TENDER STK LN 0in FAT ALL GRDS CKD BRLD','Mock Tender Steak',,,'Bone and heavy connective tissue 4% separable fat 0%',4,,6.25,4.27,9.02,3.87 -23511,1300,'Beef chuck top blade separable lean only trimmed to 0in fat all grades cooked broiled','BEEF CHUCK TOP BLADE LN ONLY TO 0in FAT ALL GRDS CKD BRLD','Top Blade Roast Boneless',,,'Bone and heavy connective tissue 15% separable fat 2%',17,,6.25,4.27,9.02,3.87 -23513,1300,'Beef chuck clod roast separable lean only trimmed to 1/4in fat all grades raw','BEEF CHUCK CLOD RST LN 1/4in FAT ALL GRDS RAW',,,,'Bone and heavy connective tissue 4% separable fat 5%',9,,6.25,4.27,9.02,3.87 -23514,1300,'Beef chuck clod roast separable lean only trimmed to 0in fat all grades cooked roasted','BEEF CHUCK CLOD RST LN 0in FAT ALL GRDS CKD RSTD',,,,'Bone and heavy connective tissue 4% separable fat 6%',10,,6.25,4.27,9.02,3.87 -23515,1300,'Beef chuck clod roast separable lean only trimmed to 1/4in fat all grades cooked roasted','BEEF CHUCK CLOD RST LN ONLY TO 1/4in FAT ALL GRDS CKD RSTD',,,,'Bone and heavy connective tissue 8% separable fat 11%',19,,6.25,4.27,9.02,3.87 -23516,1300,'Beef shoulder steak boneless separable lean only trimmed to 0in fat all grades cooked grilled','BEEF SHLDR STEAK BNLESS LN 0in FAT ALL GRDS CKD GRILLED','URMIS #1133',,,'Connective tissue 6% seam fat 2%',8,,6.25,4.27,9.02,3.87 -23517,1300,'Beef chuck clod steak separable lean only trimmed to 1/4in fat all grades cooked braised','BEEF CHUCK CLOD STEAK LN ONLY TO 1/4in FAT ALL GRDS CKD BRSD',,,,'Bone and heavy connective tissue 8% separable fat 13%',21,,6.25,4.27,9.02,3.87 -23519,1300,'Beef chuck mock tender steak separable lean and fat trimmed to 0in fat USDA choice cooked broiled','BEEF CHCK MCK TENDER STK LN & FAT 0in FAT USDA CHOIC CKD BRLD','URMIS #1931 Mock Tender Steak',,,'Bone and heavy connective tissue 5%',5,,6.25,4.27,9.02,3.87 -23521,1300,'Beef chuck mock tender steak separable lean and fat trimmed to 0in fat USDA select cooked broiled','BEEF CHUCK MOCK TENDER STK LN & FAT 0in FAT USDA SEL CKD BRLD','URMIS #1116 Mock Tender Steak',,,'Bone and heavy connective tissue 3%',3,,6.25,4.27,9.02,3.87 -23523,1300,'Beef chuck top blade separable lean and fat trimmed to 0in fat choice cooked broiled','BEEF CHUCK TOP BLADE LN & FAT 0in FAT CHOIC CKD BRLD','URMIS #1959 Top Blade Roast Boneless',,,'Bone and heavy connective tissue 13%',13,,6.25,4.27,9.02,3.87 -23525,1300,'Beef chuck top blade separable lean and fat trimmed to 0in fat select cooked broiled','BEEF CHUCK TOP BLADE LN & FAT 0in FAT SEL CKD BRLD','URMIS #1144 Top Blade Roast Boneless',,,'Bone and heavy connective tissue 16%',16,,6.25,4.27,9.02,3.87 -23528,1300,'Beef chuck clod roast separable lean and fat trimmed to 0in fat choice cooked roasted','BEEF CHUCK CLOD RST LN & FAT 0in FAT CHOIC CKD RSTD','URMIS #1947',,,'Bone and heavy connective tissue 4%',4,,6.25,4.27,9.02,3.87 -23531,1300,'Beef chuck clod roast separable lean and fat trimmed to 0in fat select cooked roasted','BEEF CHUCK CLOD RST LN & FAT 0in FAT SEL CKD RSTD','URMIS #1132',,,'Bone and heavy connective tissue 5%',5,,6.25,4.27,9.02,3.87 -23533,1300,'Beef shoulder steak boneless separable lean and fat trimmed to 0in fat choice cooked grilled','BEEF SHLDR STEAK BNLESS LN & FAT 0in FAT CHOIC CKD GRILLED','URMIS #1133',,,'Connective tissue 6%',6,,6.25,4.27,9.02,3.87 -23536,1300,'Beef shoulder steak boneless separable lean and fat trimmed to 0in fat select cooked grilled','BEEF SHLDR STEAK BNLESS LN & FAT 0in FAT SEL CKD GRILLED','URMIS #1133',,,'Connective tissue 6%',6,,6.25,4.27,9.02,3.87 -23540,1300,'Beef plate inside skirt steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF PLATE SKIRT STEAK LN & FAT 0in FAT ALL GRDS CKD BRLD','Plate Skirt Steak',,,,0,,6.25,4.27,9.02,3.87 -23541,1300,'Beef plate outside skirt steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF PLATE OUTSIDE SKIRT LN & FAT 0in FAT ALL GRDS CKD BRLD','Plate Skirt Steak',,,,0,,6.25,4.27,9.02,3.87 -23545,1300,'Beef loin bottom sirloin butt tri-tip steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF SIRLOIN TRI-TIP STK LN & FAT 0in FAT ALL GRDS CKD BRLD',,,,,0,,6.25,4.27,9.02,3.87 -23547,1300,'Beef chuck mock tender steak separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF CHUCK MOCK TENDER STK LN & FAT 0in FAT ALL GRDS CKD BRLD','Mock Tender Steak',,,'Bone and heavy connective tissue 4%',4,,6.25,4.27,9.02,3.87 -23549,1300,'Beef chuck top blade separable lean and fat trimmed to 0in fat all grades cooked broiled','BEEF CHUCK TOP BLADE LN & FAT 0in FAT ALL GRDS CKD BRLD','Top Blade Roast Boneless',,,'Bone and heavy connective tissue 15%',15,,6.25,4.27,9.02,3.87 -23552,1300,'Beef chuck clod roast separable lean and fat trimmed to 0in fat all grades cooked roasted','BEEF CHUCK CLOD RST LN & FAT 0in FAT ALL GRDS CKD RSTD',,,,'Bone and heavy connective tissue 4%',4,,6.25,4.27,9.02,3.87 -23554,1300,'Beef shoulder steak boneless separable lean and fat trimmed to 0in fat all grades cooked grilled','BEEF SHLDR STEAK BNLESS LN & FAT 0in FAT ALL GRDS CKD GRILLED','URMIS #1133',,,'Connective tissue 6%',6,,6.25,4.27,9.02,3.87 -23557,1300,'Beef ground 95% lean meat / 5% fat raw','BEEF GROUND 95% LN MEAT / 5% FAT RAW','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23558,1300,'Beef ground 95% lean meat / 5% fat patty cooked broiled','BEEF GROUND 95% LN MEAT / 5% FAT PATTY CKD BRLD','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23559,1300,'Beef ground 95% lean meat / 5% fat patty cooked pan-broiled','BEEF GROUND 95% LN MEAT / 5% FAT PATTY CKD PAN-BROILED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23560,1300,'Beef ground 95% lean meat / 5% fat crumbles cooked pan-browned','BEEF GROUND 95% LN MEAT / 5% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23561,1300,'Beef ground 95% lean meat / 5% fat loaf cooked baked','BEEF GROUND 95% LN MEAT / 5% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23562,1300,'Beef ground 90% lean meat / 10% fat raw','BEEF GROUND 90% LN MEAT / 10% FAT RAW','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23563,1300,'Beef ground 90% lean meat / 10% fat patty cooked broiled','BEEF GROUND 90% LN MEAT / 10% FAT PATTY CKD BRLD','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23564,1300,'Beef ground 90% lean meat / 10% fat patty cooked pan-broiled','BEEF GROUND 90% LN MEAT / 10% FAT PATTY CKD PAN-BROILED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23565,1300,'Beef ground 90% lean meat / 10% fat crumbles cooked pan-browned','BEEF GROUND 90% LN MEAT / 10% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23566,1300,'Beef ground 90% lean meat / 10% fat loaf cooked baked','BEEF GROUND 90% LN MEAT / 10% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23567,1300,'Beef ground 85% lean meat / 15% fat raw (Includes foods for USDAs Food Distribution Program)','BEEF GROUND 85% LN MEAT / 15% FAT RAW','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23568,1300,'Beef ground 85% lean meat / 15% fat patty cooked broiled','BEEF GROUND 85% LN MEAT / 15% FAT PATTY CKD BRLD','ground round hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23569,1300,'Beef ground 85% lean meat / 15% fat patty cooked pan-broiled','BEEF GROUND 85% LN MEAT / 15% FAT PATTY CKD PAN-BROILED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23570,1300,'Beef ground 85% lean meat / 15% fat crumbles cooked pan-browned','BEEF GROUND 85% LN MEAT / 15% FAT CRUMBLES CKD PAN-BROWNED','ground round hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23571,1300,'Beef ground 85% lean meat / 15% fat loaf cooked baked','BEEF GROUND 85% LN MEAT / 15% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23572,1300,'Beef ground 80% lean meat / 20% fat raw','BEEF GROUND 80% LN MEAT / 20% FAT RAW','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23573,1300,'Beef ground 80% lean meat / 20% fat patty cooked broiled','BEEF GROUND 80% LN MEAT / 20% FAT PATTY CKD BRLD','Hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23574,1300,'Beef ground 80% lean meat / 20% fat patty cooked pan-broiled','BEEF GROUND 80% LN MEAT / 20% FAT PATTY CKD PAN-BROILED','Hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23575,1300,'Beef ground 80% lean meat / 20% fat crumbles cooked pan-browned','BEEF GROUND 80% LN MEAT / 20% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23576,1300,'Beef ground 80% lean meat / 20% fat loaf cooked baked','BEEF GROUND 80% LN MEAT / 20% FAT LOAF CKD BKD','hamburger',,,,0,,6.25,4.27,9.02,3.87 -23577,1300,'Beef ground 75% lean meat / 25% fat raw','BEEF GROUND 75% LN MEAT / 25% FAT RAW','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23578,1300,'Beef ground 75% lean meat / 25% fat patty cooked broiled','BEEF GROUND 75% LN MEAT / 25% FAT PATTY CKD BRLD','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23579,1300,'Beef ground 75% lean meat / 25% fat patty cooked pan-broiled','BEEF GROUND 75% LN MEAT / 25% FAT PATTY CKD PAN-BROILED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23580,1300,'Beef ground 75% lean meat / 25% fat crumbles cooked pan-browned','BEEF GROUND 75% LN MEAT / 25% FAT CRUMBLES CKD PAN-BROWNED','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23581,1300,'Beef ground 75% lean meat / 25% fat loaf cooked baked','BEEF GROUND 75% LN MEAT / 25% FAT LOAF CKD BKD','hamburger',,'Y',,0,,6.25,4.27,9.02,3.87 -23582,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8in fat select raw','BEEF RIB SML END (RIBS 10-12) LN 1/8in FAT SEL RAW',,,,'Bone and connective tissue 5% sep fat 19%',24,,6.25,4.27,9.02,3.87 -23583,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat select raw','BEEF TENDERLOIN STEAK LN 1/8in FAT SEL RAW','URMIS #1388 Beef Medallions Filet Mignon',,,'Bone and connective tissue 2% sep fat 19%',21,,6.25,4.27,9.02,3.87 -23584,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat select raw','BEEF TOP SIRLOIN STEAK LN 1/8in FAT SEL RAW','URMIS #1422',,'Y','Bone and connective tissue 3.26% separable fat 11.04%',14,,6.25,4.27,9.02,3.87 -23585,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat select raw','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT SEL RAW','URMIS # 1404 Boneless Strip Steak Club Steak Kansas City Strip New York Strip',,,'Bone and connective tissue 9% sep fat 15%',24,,6.25,4.27,9.02,3.87 -23586,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8in fat select cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 1/8in FAT SEL CKD BRLD',,,,'Bone and connective tissue 7% sep fat 17%',24,,6.25,4.27,9.02,3.87 -23587,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat select cooked broiled','BEEF TENDERLOIN STEAK LN 1/8in FAT SEL CKD BRLD','URMIS #1388',,,'Bone and connective tissue 4% sep fat 13%',17,,6.25,4.27,9.02,3.87 -23588,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat select cooked broiled','BEEF TOP SIRLOIN STEAK LN 1/8in FAT SEL CKD BRLD','URMIS #1422',,'Y','Bone and connective tissue 4.85% separable fat 11.31%',16,,6.25,4.27,9.02,3.87 -23589,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat select cooked grilled','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT SEL CKD GRILLED','URMIS # 1404 Boneless Strip Steak Club Steak Kansas City Strip New York Strip',,,'Bone and connective tissue 12% sep fat 13%',25,,6.25,4.27,9.02,3.87 -23590,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat select cooked roasted','BEEF RND BTTM RND RST LN 1/8in FAT SEL CKD RSTD','URMIS #1464',,'Y','Bone and connective tissue 3.32% separable fat 9.02%',12,,6.25,4.27,9.02,3.87 -23591,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat select cooked roasted','BEEF RND EYE OF RND RST LN 1/8in FAT SEL CKD RSTD','URMIS #1480',,,'Bone and connective tissue 1% sep fat 8%',9,,6.25,4.27,9.02,3.87 -23592,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat select cooked broiled','BEEF RND TOP RND STEAK LN 1/8in FAT SEL CKD BRLD','URMIS #1553',,,'Bone and connective tissue 1% sep fat 5%',6,,6.25,4.27,9.02,3.87 -23593,1300,'Beef round bottom round steak separable lean only trimmed to 1/8in fat select cooked braised','BEEF RND BTTM RND STEAK LN 1/8in FAT SEL CKD BRSD','URMIS #1464',,,'Bone and connective tissue 4.61% separable fat 7.21%',12,,6.25,4.27,9.02,3.87 -23594,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat all grades raw','BEEF RND BTTM RND RST LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 2.49% separable fat 10.55%',13,,6.25,,, -23595,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat all grades cooked braised','BEEF BRISKET FLAT HALF LN 1/8in FAT ALL GRDS CKD BRSD',,,,'Bone and connective tissue 1% sep fat 19%',20,,6.25,4.27,9.02,3.87 -23596,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat all grades raw','BEEF BRISKET FLAT HALF LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 1% sep fat 27%',28,,6.25,4.27,9.02,3.87 -23597,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat all grades raw','BEEF RND EYE OF RND RST LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 2% sep fat 8%',10,,6.25,4.27,9.02,3.87 -23598,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat all grades cooked roasted','BEEF RND EYE OF RND RST LN 1/8in FAT ALL GRDS CKD RSTD',,,'Y','Bone and connective tissue 1.21% separable fat 7.42%',9,,6.25,4.27,9.02,3.87 -23599,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8in fat all grades raw','BEEF RIB SML END (RIBS 10-12) LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 5% sep fat 20%',25,,6.25,4.27,9.02,3.87 -23600,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat all grades cooked broiled','BEEF TENDERLOIN STEAK LN 1/8in FAT ALL GRDS CKD BRLD','Filet Mignon Beef Medallions',,'Y','Bone and connective tissue 4.20% separable fat 13.37%',18,,6.25,4.27,9.02,3.87 -23601,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat all grades raw','BEEF TENDERLOIN STEAK LN 1/8in FAT ALL GRDS RAW','Filet Mignon Beef Medallions',,,'Bone and connective tissue 2% sep fat 18%',20,,6.25,4.27,9.02,3.87 -23602,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat all grades cooked braised','BEEF CHUCK ARM POT RST LN 1/8in FAT ALL GRDS CKD BRSD',,,'Y','Bone and connective tissue 27.87% separable fat 13.50%',41,,6.25,4.27,9.02,3.87 -23603,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat all grades raw','BEEF CHUCK ARM POT RST LN 1/8in FAT ALL GRDS RAW',,,,'Bone and connective tissue 21% sep fat 16%',37,,6.25,4.27,9.02,3.87 -23604,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat all grades cooked','BEEF RND BTTM RND RST LN 1/8in FAT ALL GRDS CKD',,,,'Bone and connective tissue 2.33% separable fat 8.89%',11,,6.25,,, -23605,1300,'Beef round bottom round steak separable lean only trimmed to 1/8in fat all grades cooked braised','BEEF RND BTTM RND STEAK LN 1/8in FAT ALL GRDS CKD BRSD',,,'Y','Bone and connective tissue 4.78% separable fat 6.51%',11,,6.25,4.27,9.02,3.87 -23606,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat all grades cooked broiled','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT ALL GRDS CKD BRLD','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,'Y','Bone and connective tissue 11.91% separable fat 13.48%',25,,6.25,4.27,9.02,3.87 -23607,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat all grades raw','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT ALL GRDS RAW','Kansas City Strip Boneless Strip Steak Club Steak New York Strip',,,'Bone and connective tissue 10% separable fat 14%',24,,6.25,4.00,9.00,4.00 -23608,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat all grades cooked broiled','BEEF RND TOP RND STEAK LN 1/8in FAT ALL GRDS CKD BRLD',,,'Y','Bone and connective tissue 0.94% separable fat 5.51%',6,,6.25,4.27,9.02,3.87 -23609,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat all grades raw','BEEF RND TOP RND STEAK LN 1/8in FAT ALL GRDS RAW',,,,'Separable fat 6%',6,,6.25,4.27,9.02,3.87 -23610,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat all grades cooked broiled','BEEF TOP SIRLOIN STEAK LN 1/8in FAT ALL GRDS CKD BRLD',,,'Y','Bone and connective tissue 4.34% separable fat 12.57%',17,,6.25,4.27,9.02,3.87 -23611,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat all grades raw','BEEF TOP SIRLOIN STEAK LN 1/8in FAT ALL GRDS RAW',,,'Y','Bone and connective tissue 3% sep fat 13%',16,,6.25,4.27,9.02,3.87 -23612,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat choice raw','BEEF CHUCK ARM POT RST LN 1/8in FAT CHOIC RAW','URMIS #1864',,'Y','Bone and connective tissue 21% sep fat 16%',37,,6.25,4.27,9.02,3.87 -23613,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat choice raw','BEEF BRISKET FLAT HALF LN 1/8in FAT CHOIC RAW','URMIS #2438',,,'Bone and connective tissue 1% sep fat 27%',28,,6.25,4.27,9.02,3.87 -23614,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat choice cooked braised','BEEF CHUCK ARM POT RST LN 1/8in FAT CHOIC CKD BRSD','URMIS #1864',,'Y','Bone and connective tissue 29.58% separable fat 12.85%',42,,6.25,4.27,9.02,3.87 -23615,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat choice cooked braised','BEEF BRISKET FLAT HALF LN 1/8in FAT CHOIC CKD BRSD','URMIS #2438',,,'Separable fat',20,,6.25,4.27,9.02,3.87 -23616,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat choice raw','BEEF RND EYE OF RND RST LN 1/8in FAT CHOIC RAW','URMIS #2295',,'Y','Bone and connective tissue 2% sep fat 8%',10,,6.25,4.27,9.02,3.87 -23617,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat choice raw','BEEF RND TOP RND STEAK LN 1/8in FAT CHOIC RAW','URMIS #2368',,'Y','Separable fat',6,,6.25,4.27,9.02,3.87 -23618,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat choice raw','BEEF RND BTTM RND RST LN 1/8in FAT CHOIC RAW','URMIS #2279',,,'Bone and connective tissue 2.44% separable fat 10.58%',13,,6.25,4.27,9.02,3.87 -23619,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat choice cooked roasted','BEEF RND BTTM RND RST LN 1/8in FAT CHOIC CKD RSTD','URMIS #2279',,,'Bone and connective tissue 1.37% separable fat 8.55%',10,,6.25,4.27,9.02,3.87 -23620,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat choice cooked roasted','BEEF RND EYE OF RND RST LN 1/8in FAT CHOIC CKD RSTD','URMIS #2295',,,'Bone and connective tissue 1% sep fat 8%',9,,6.25,4.27,9.02,3.87 -23621,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat choice cooked broiled','BEEF RND TOP RND STEAK LN 1/8in FAT CHOIC CKD BRLD','URMIS #2368',,,'Bone and connective tissue 1% sep fat 6%',7,,6.25,4.27,9.02,3.87 -23622,1300,'Beef round bottom round steak separable lean only trimmed to 1/8in fat choice cooked braised','BEEF RND BTTM RND STEAK LN 1/8in FAT CHOIC CKD BRSD','URMIS #2279',,'Y','Bone and connective tissue 5.23% separable fat 5.81%',11,,6.25,4.27,9.02,3.87 -23623,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8in fat choice raw','BEEF RIB SML END (RIBS 10-12) LN 1/8in FAT CHOIC RAW',,,,'Bone and connective tissue 5% sep fat 21%',26,,6.25,4.27,9.02,3.87 -23624,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat choice raw','BEEF TENDERLOIN STEAK LN 1/8in FAT CHOIC RAW','URMIS #1388 Beef Medallions Filet Mignon',,,'Bone and connective tissue 3% sep fat 16%',19,,6.25,4.27,9.02,3.87 -23625,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat choice raw','BEEF TOP SIRLOIN STEAK LN 1/8in FAT CHOIC RAW','URMIS #2237',,'Y','Bone and connective tissue 3.05% separable fat 14.02%',17,,6.25,4.27,9.02,3.87 -23626,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8infat choice cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 1/8inFAT CHOIC CKD BRLD',,,'Y','Bone and connective tissue 7% separable fat 20%',27,,6.25,4.27,9.02,3.87 -23627,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat choice raw','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT CHOIC RAW','URMIS # 2219 Boneless Strip Steak Club Steak Kansas City Strip New York Strip',,,'Bone and connective tissue 10% separable fat 13%',23,,6.25,4.27,9.02,3.87 -23628,1300,'Beef tenderloin steak separable lean only trimmed to 1/8in fat choice cooked broiled','BEEF TENDERLOIN STEAK LN 1/8in FAT CHOIC CKD BRLD','URMIS #1388 Beef Medallions Filet Mignon',,,'Bone and connective tissue 5% sep fat 13%',18,,6.25,4.27,9.02,3.87 -23629,1300,'Beef top sirloin steak separable lean only trimmed to 1/8in fat choice cooked broiled','BEEF TOP SIRLOIN STEAK LN 1/8in FAT CHOIC CKD BRLD','URMIS #2237',,'Y','Bone and connective tissue 4% sep fat 13%',17,,6.25,4.27,9.02,3.87 -23630,1300,'Beef short loin top loin steak separable lean only trimmed to 1/8in fat choice cooked broiled','BEEF SHRT LOIN TOP LOIN STEAK LN 1/8in FAT CHOIC CKD BRLD','URMIS # 2219 Boneless Strip Steak Club Steak Kansas City Strip New York Strip',,,'Bone and connective tissue 12% sep fat 14%',26,,6.25,4.27,9.02,3.87 -23631,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat select raw','BEEF CHUCK ARM POT RST LN 1/8in FAT SEL RAW','URMIS #1049',,'Y','Bone and connective tissue 20% sep fat 17%',37,,6.25,4.27,9.02,3.87 -23632,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat select raw','BEEF BRISKET FLAT HALF LN 1/8in FAT SEL RAW','URMIS #1623',,,'Separable fat',28,,6.25,4.27,9.02,3.87 -23633,1300,'Beef chuck arm pot roast separable lean only trimmed to 1/8in fat select cooked braised','BEEF CHUCK ARM POT RST LN 1/8in FAT SEL CKD BRSD','URMIS #1049',,'Y','Bone and connective tissue 26.23% separable fat 14.12%',40,,6.25,4.27,9.02,3.87 -23634,1300,'Beef brisket flat half separable lean only trimmed to 1/8in fat select cooked braised','BEEF BRISKET FLAT HALF LN 1/8in FAT SEL CKD BRSD','URMIS #1623',,,'Separable fat',19,,6.25,4.27,9.02,3.87 -23635,1300,'Beef round eye of round roast separable lean only trimmed to 1/8in fat select raw','BEEF RND EYE OF RND RST LN 1/8in FAT SEL RAW','URMIS #1480',,,'Bone and connective tissue 3% sep fat 7%',10,,6.25,4.27,9.02,3.87 -23636,1300,'Beef round top round steak separable lean only trimmed to 1/8in fat select raw','BEEF RND TOP RND STEAK LN 1/8in FAT SEL RAW','URMIS #1553',,,'Separable fat',7,,6.25,4.27,9.02,3.87 -23637,1300,'Beef round bottom round roast separable lean only trimmed to 1/8in fat select raw','BEEF RND BTTM RND RST LN 1/8in FAT SEL RAW','URMIS #1464',,,'Bone and connective tissue 1.97% separable fat 10.51%',12,,6.25,4.27,9.02,3.87 -23638,1300,'Beef rib small end (ribs 10-12) separable lean only trimmed to 1/8in fat all grades cooked broiled','BEEF RIB SML END (RIBS 10-12) LN 1/8in FAT ALL GRDS CKD BRLD',,,'Y','Bone and connective tissue 7.11% separable fat 18.25%',25,,6.25,4.27,9.02,3.87 -23640,1300,'Beef variety meats and by-products tripe cooked simmered','BEEF VAR MEATS & BY-PRODUCTS TRIPE CKD SIMMRD',,,,,0,,6.25,4.27,9.02,3.87 -23646,1300,'Beef bottom sirloin tri-tip roast separable lean only trimmed to 0in fat all grades raw','BEEF BTTM SIRLOIN TRI-TIP RST LN 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue 1% sep fat 5%',6,,6.25,4.27,9.02,3.87 -23647,1300,'Beef bottom sirloin tri-tip roast separable lean only trimmed to 0in fat choice cooked roasted','BEEF BTTM SIRLOIN TRI-TIP RST LN 0in FAT CHOIC CKD RSTD','URMIS #2244',,,'Bone and connective tissue 2% sep fat 4%',6,,6.25,,, -23648,1300,'Beef bottom sirloin tri-tip roast separable lean only trimmed to 0in fat choice raw','BEEF BTTM SIRLOIN TRI-TIP RST LN 0in FAT CHOIC RAW','URMIS #2244',,,'Bone and connective tissue 2% sep fat 4%',6,,6.25,4.27,9.02,3.87 -23649,1300,'Beef bottom sirloin tri-tip roast separable lean only trimmed to 0in fat select cooked roasted','BEEF BTTM SIRLOIN TRI-TIP RST LN 0in FAT SEL CKD RSTD','URMIS #1429',,,'Bone and connective tissue 1% sep fat 5%',6,,6.25,4.27,9.02,3.87 -23650,1300,'Beef bottom sirloin tri-tip roast separable lean only trimmed to 0in fat select raw','BEEF BTTM SIRLOIN TRI-TIP RST LN 0in FAT SEL RAW','URMIS #1429',,,'Bone and connective tissue 1% sep fat 5%',6,,6.25,4.27,9.02,3.87 -23651,1300,'Beef round tip round roast separable lean only trimmed to 0in fat all grades raw','BEEF RND TIP RND RST LN 0in FAT ALL GRDS RAW',,,,'Bone and connective tissue 4% sep fat 4%',8,,6.25,4.27,9.02,3.87 -23652,1300,'Beef round tip round roast separable lean only trimmed to 0in fat choice raw','BEEF RND TIP RND RST LN 0in FAT CHOIC RAW','URMIS # 2340',,,'Bone and connective tissue 4% sep fat 5%',9,,6.25,4.27,9.02,3.87 -23653,1300,'Beef round tip round roast separable lean only trimmed to 0in fat select raw','BEEF RND TIP RND RST LN 0in FAT SEL RAW','URMIS # 1525',,,'Bone and connective tissue 3% sep fat 4%',7,,6.25,4.27,9.02,3.87 -23654,1300,'Beef flank steak separable lean only trimmed to 0in fat all grades cooked broiled','BEEF FLANK STEAK LN 0in FAT ALL GRDS CKD BRLD',,,,'Separable fat',1,,6.25,4.27,9.02,3.87 -23655,1300,'Beef flank steak separable lean only trimmed to 0in fat select cooked broiled','BEEF FLANK STEAK LN 0in FAT SEL CKD BRLD','URMIS #1584',,,'Separable fat',1,,6.25,4.27,9.02,3.87 -23656,1300,'Beef flank steak separable lean only trimmed to 0in fat all grades raw','BEEF FLANK STEAK LN 0in FAT ALL GRDS RAW',,,,'Separable fat',3,,6.25,4.27,9.02,3.87 -23657,1300,'Beef flank steak separable lean only trimmed to 0in fat select raw','BEEF FLANK STEAK LN 0in FAT SEL RAW','URMIS #1584',,,'Bone and connective tissue 1% sep fat 1%',2,,6.25,4.27,9.02,3.87 -23658,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat choice raw','BEEF BRISKET FLAT HALF LN & FAT 1/8in FAT CHOIC RAW','URMIS #2438',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -23659,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat select raw','BEEF BRISKET FLAT HALF LN & FAT 1/8in FAT SEL RAW','URMIS #1623',,,,0,,6.25,4.27,9.02,3.87 -23660,1300,'Beef brisket flat half separable lean and fat trimmed to 1/8in fat choice cooked braised','BEEF BRISKET FLAT HALF LN & FAT 1/8in FAT CHOIC CKD BRSD','URMIS #2438',,,'Bone and connective tissue',1,,6.25,4.27,9.02,3.87 -25000,2500,'Snacks popcorn microwave 94% fat free','POPCORN OIL-POPPED LOFAT',,,'Y',,0,,6.50,,, -25001,2500,'Snacks popcorn microwave low fat','POPCORN OIL-POPPED LOFAT',,,'Y',,0,,6.50,,, -25003,2500,'Snacks candy rolls yogurt-covered fruit flavored with high vitamin C','SNACKS CANDY ROLLS YOGURT-COVERED FRUIT FLAV W/ HI VIT C',,,'Y',,0,,6.50,,, -25004,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON Chewy Chocolate Peanut Bar','FORMULATE BAR MAR SNACKFOO US SNICKE MARATH CHE CHOC PNUT BA',,,,,0,,,,, -25005,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON MULTIGRAIN CRUNCH BAR','FORM BAR MARS SNKF US SNICKERS MARATHON MULTIGRNCRUNCH',,,,,0,,,,, -25006,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON Double Chocolate Nut Bar','FORMULAT BAR MARSNACKFOO US SNICKE MARATHO DOUBL CHOC NUT BA',,,,,0,,,,, -25007,2500,'Snacks M&M MARS KUDOS Whole Grain Bars peanut butter','SNACKS M&M MARS KUDOS WHL GRAIN BARS PNUT BUTTER',,,,,0,,,,, -25008,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON Honey Nut Oat Bar','FORMULAT BAR MAR SNACFOO US SNICKER MARATHO HONE NUT OAT BAR',,,,,0,,,,, -25009,2500,'Snacks M&M MARS KUDOS Whole Grain Bar M&Ms milk chocolate','SNACKS M&M MARS KUDOS WHL GRAIN BAR M&MS MILK CHOC',,,,,0,,,,, -25010,2500,'Formulated bar MARS SNACKFOOD US COCOAVIA Chocolate Almond Snack Bar','FORM BAR MARS SNACKFOOD US COCOAVIA CHOC ALMOND',,,,,0,,,,, -25012,2500,'Snacks sweet potato chips unsalted','SNACKS SWT POTATO CHIPS UNSALTED',,,'Y',,0,,6.25,,, -25013,2500,'Snacks FRITOLAY SUNCHIPS Multigrain Snack original flavor','SNACKS FRITOLAY SUNCHIPS MULTIGRAIN SNACK ORIGINAL FLAVOR',,,'Y',,0,,6.50,,, -25014,2500,'Snacks popcorn microwave regular (butter) flavor made with partially hydrogenated oil','SNACKS POPCORN MICROWAVE REG (BUTTER) FLAVOR W/PARHYD OIL',,,'Y',,0,,6.25,,, -25015,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON Protein Performance Bar Caramel Nut Rush','FORMBAR MARSSNACK SNICKERS MARATHONPROTPERFBAR CARMELNUTRUSH',,,'Y',,0,,6.25,,, -25016,2500,'Formulated bar MARS SNACKFOOD US SNICKERS MARATHON Energy Bar all flavors','FORMUL BAR MA SNACKFO US SNICKE MARATH ENER BAR ALL FLAVO',,,'Y',,0,,,,, -25017,2500,'Formulated bar POWER BAR chocolate','FORMULATED BAR POWER BAR CHOC',,,'Y',,0,,6.10,,, -25018,2500,'Formulated bar MARS SNACKFOOD US COCOAVIA Chocolate Blueberry Snack Bar','FORM BAR MARS SNACKFOOD US COCOAVIA CHOC BLUEBERRY',,,,,0,,,,, -25020,2500,'Formulated bar SLIM-FAST OPTIMA meal bar milk chocolate peanut','FORMULATED BAR SLIM-FAST OPTIMA MEAL BAR MILK CHOC PNUT',,'Slim-Fast Foods Company','Y',,0,,6.25,,, -25021,2500,'Formulated bar LUNA BAR NUTZ OVER CHOCOLATE','FORMULATED BAR LUNA BAR NUTZ OVER CHOC',,'LUNA BAR','Y',,0,,6.25,,, -25022,2500,'Snacks FRITOLAY SUNCHIPS multigrain French onion flavor','SNACKS FRITOLAY SUNCHIPS MULTIGRAIN FRENCH ONION FLAVOR',,,,,0,,,,, -25023,2500,'Snacks FRITOLAY SUNCHIPS Multigrain Snack Harvest Cheddar flavor','SNACKS FRITOLAY SUNCHIPS MULTIGRAIN HARVEST CHEDDAR',,,,,0,,,,, -25024,2500,'Pretzels soft unsalted','PRETZELS SOFT UNSALTED',,,'Y',,0,,6.25,,, -25025,2500,'Snacks soy chips or crisps salted','SNACKS SOY CHIPS OR CRISPS SALTED',,,'Y',,0,,6.25,,, -25026,2500,'Popcorn microwave regular (butter) flavor made with palm oil','Popcor microwav regula (butter) flavo mad with pal oil',,,'Y',,0,,6.25,,, -25027,2500,'Snacks plantain chips salted','SNACKS PLANTAIN CHIPS SALTED',,,'Y',,0,,6.25,,, -25028,2500,'Tortilla chips yellow plain salted','Tortilla chips yellow plain salted',,,'Y',,0,,6.25,,, -25030,2500,'Snacks vegetable chips HAIN CELESTIAL GROUP TERRA CHIPS','SNACKS VEG CHIPS HAIN CELESTIAL GROUP TERRA CHIPS',,,'Y',,0,,6.25,,, -25031,2500,'Formulated bar ZONE PERFECT CLASSIC CRUNCH BAR mixed flavors','FORM BAR ZONE PERFECT CLASSIC CRUNCH BAR MXD FLAVORS',,,'Y',,0,,6.25,,, -25032,2500,'Snacks granola bar KASHI GOLEAN chewy mixed flavors','SNACKS GRANOLA BAR KASHI GOLEAN CHEWY MXD FLAVORS',,,'Y',,0,,,,, -25033,2500,'Snacks granola bar KASHI TLC Bar chewy mixed flavors','SNACKS GRANOLA BAR KASHI TLC BAR CHEWY MXD FLAVORS',,,'Y',,0,,,,, -25034,2500,'Snacks granola bar KASHI GOLEAN crunchy mixed flavors','SNACKS GRANOLA BAR KASHI GOLEAN CRUNCHY MXD FLAVORS',,,'Y',,0,,,,, -25035,2500,'Snacks granola bar chewy reduced sugar all flavors','SNACKS GRANOLA BAR CHEWY RED SUGAR ALL FLAVORS',,,'Y',,0,,,,, -25036,2500,'Snacks granola bites mixed flavors','SNACKS GRANOLA BITES MXD FLAVORS',,,'Y',,0,,,,, -25037,2500,'Snacks pita chips salted','SNACKS PITA CHIPS SALTED',,,'Y',,0,,,,, -25038,2500,'Snacks granola bars soft almond confectioners coating','SNACKS GRANOLA BARS SOFT ALMOND CONFECTIONERS COATING',,,'Y',,0,,,,, -25039,2500,'Snacks granola bars QUAKER OATMEAL TO GO all flavors','SNACKS GRANOLA BARS QUAKER OATMEAL TO GO ALL FLAVORS',,,'Y',,0,,6.25,,, -25040,2500,'Snacks vegetable chips made from garden vegetables','SNACKS VEG CHIPS MADE FROM GARDEN VEG',,,'Y',,0,,6.26,,, -25041,2500,'Snacks granola bar KASHI TLC Bar crunchy mixed flavors','SNACKS GRANOLA BAR KASHI TLC BAR CRUNCHY MXD FLAVORS',,,'Y',,0,,6.25,,, -25043,2500,'Snacks candy bits yogurt covered with vitamin C','SNACKS CANDY BITS YOGURT COVERED W/ VIT C',,,'Y',,0,,,,, -25045,2500,'Formulated bar high fiber chewy oats and chocolate','Formulated bar high fiber chewy oats and chocolate',,,'Y',,0,,,,, -25046,2500,'Snacks bagel chips plain','SNACKS BAGEL CHIPS PLN',,,'Y',,0,,6.25,,, -25048,2500,'Snacks NUTRI-GRAIN FRUIT AND NUT BAR','SNACKS NUTRI-GRAIN FRUIT & NUT BAR',,,'Y',,0,,,,, -25050,2500,'Snacks yucca (cassava) chips salted','SNACKS YUCCA (CASSAVA) CHIPS SALTED',,,,,0,,,,, -25051,2500,'Snacks CLIF BAR mixed flavors','Snacks CLIF BAR mixed flavors',,,'Y',,0,,,,, -25052,2500,'Snacks granola bar QUAKER chewy 90 Calorie Bar','SNACKS GRANOLA BAR QUAKER CHEWY 90 CAL BAR',,,'Y',,0,,6.25,,, -25053,2500,'Snacks granola bar GENERAL MILLS NATURE VALLEY SWEET&SALTY NUT peanut','Snac grano bar GENER MILLS NATURE VALL SWE&SAL NUT peanu',,,'Y',,0,,6.25,,, -25054,2500,'Snacks granola bar GENERAL MILLS NATURE VALLEY with yogurt coating','Snack gran bar GENERAL MILLS NATURE VALLEY w yogu coati',,,'Y',,0,,,,, -25055,2500,'Snacks granola bar GENERAL MILLS NATURE VALLEY CHEWY TRAIL MIX','Snac grano bar GENER MILLS NATUR VALLE CHEWY TRAIL MIX',,,'Y',,0,,6.25,,, -25056,2500,'Snacks granola bar QUAKER DIPPS all flavors','Snacks granola bar QUAKER DIPPS all flavors',,,'Y',,0,,,,, -25059,2500,'Snacks brown rice chips','Snacks brown rice chips',,,'Y',,0,,6.25,,, -25060,2500,'Snack Pretzel hard chocolate coated','SNACK PRETZEL HARD CHOC COATD',,,'Y',,0,,6.25,,, -25062,2500,'Snack Mixed Berry Bar','Snack Mixed Berry Bar',,,'Y',,0,,,,, -25063,2500,'Snacks potato chips made from dried potatoes (preformed) multigrain','Snacks potato chips fr dried potatoes multigrain',,,'Y',,0,,,,, -25064,2500,'Snacks potato chips lightly salted','SNACKS POTATO CHIPS LIGHTLY SALTED',,,'Y',,0,,,,, -25065,2500,'Snacks Pretzels gluten- free made with cornstarch and potato flour','SNACKS PRETZELS GLUTEN- FREE MADE W/ CORNSTARCH & POTATO FLR',,,'Y',,0,,,,, -25066,2500,'Snacks peas roasted wasabi-flavored','SNACKS PEAS RSTD WASABI-FLAVORED',,,'Y',,0,,,,, -25067,2500,'Formulated Bar SOUTH BEACH protein bar','FORMULATED BAR SOUTH BEACH PROT BAR',,,'Y',,0,,,,, -25068,2500,'Snack BALANCE original bar','SNACK BALANCE ORIGINAL BAR',,,'Y',,0,,,,, -25070,2500,'Snacks shrimp cracker','SNACKS SHRIMP CRACKER',,,'Y',,0,,,,, -25071,2500,'Rice crackers','RICE CRACKERS',,,'Y',,0,,6.25,,, -27000,0600,'Soup egg drop Chinese restaurant','SOUP EGG DROP CHINESE RESTAURANT',,,'Y',,0,,,,, -27001,0600,'Soup hot and sour Chinese restaurant','SOUP HOT & SOUR CHINESE RESTAURANT',,,'Y',,0,,,,, -27002,0600,'Soup wonton Chinese restaurant','SOUP WONTON CHINESE RESTAURANT',,,'Y',,0,,,,, -27035,0600,'Soup ramen noodle dry any flavor reduced fat reduced sodium','SOUP RAMEN NOODLE DRY ANY FLAVOR RED FAT RED NA',,,'Y',,0,,6.25,,, -27042,0600,'Soup clam chowder new england canned ready-to-serve','SOUP CLAM CHOWDER NEW ENGLAND CND RTS',,,,,0,,,,, -27043,0600,'Soup clam chowder new england reduced sodium canned ready-to-serve','SOUP CLAM CHOWDER NEW ENGLAND RED NA CND RTS',,,'Y',,0,,,4.00,9.00,4.00 -27044,0600,'Soup chicken noodle reduced sodium canned ready-to-serve','SOUP CHICK NOODLE RED NA CND RTS',,,'Y',,0,,,,, -27045,0600,'Soup beef and vegetables reduced sodium canned ready-to-serve','SOUP BF & VEG RED NA CND RTS',,,,,0,,,,, -27046,0600,'Sauce duck ready-to-serve','SAUCE DUCK RTS',,,'Y',,0,,,,, -27047,0600,'Sauce salsa verde ready-to-serve','SAUCE SALSA VERDE RTS',,,'Y',,0,,,,, -27048,0600,'Sauce steak tomato based','SAUCE STEAK TOMATO BSD',,,'Y',,0,,,,, -27049,0600,'Sauce tartar ready-to-serve','SAUCE TARTAR RTS',,,'Y',,0,,,,, -27050,0600,'Sauce sweet and sour ready-to-serve','SAUCE SWT & SOUR RTS',,,'Y',,0,,,,, -27051,0600,'Sauce cocktail ready-to-serve','SAUCE COCKTAIL RTS',,,'Y',,0,,,,, -27052,0600,'Dip salsa con queso cheese and salsa- medium','DIP SALSA CON QUESO CHS & SALSA- MED',,,'Y',,0,,,,, -27054,0600,'Dip TOSTITOS salsa con queso medium','DIP TOSTITOS SALSA CON QUESO MED',,'Pepsi-Cola North America',,,0,,,,, -27055,0600,'Sauce barbecue SWEET BABY RAYS original','SAUCE BARBECUE SWT BABY RAYS ORIGINAL',,'Sweet baby Rays Inc.',,,0,,,,, -27056,0600,'Sauce barbecue BULLS-EYE original','SAUCE BARBECUE BULLS-EYE ORIGINAL',,'Kraft Foods Inc.',,,0,,,,, -27057,0600,'Sauce barbecue KC MASTERPIECE original','SAUCE BARBECUE KC MASTERPIECE ORIGINAL',,,,,0,,,,, -27058,0600,'Sauce barbecue OPEN PIT original','SAUCE BARBECUE OPEN PIT ORIGINAL',,'Open Pit- Pinnacle Foods',,,0,,,,, -27059,0600,'Sauce peanut made from peanut butter water soy sauce','SAUCE PNUT MADE FROM PNUT BUTTER H2O SOY SAU',,,'Y',,0,,,4.00,9.00,4.00 -27060,0600,'Soup chunky vegetable reduced sodium canned ready-to-serve','SOUP CHUNKY VEG RED NA CND RTS',,,'Y',,0,,,,, -27061,0600,'Gravy HEINZ Home Style classic chicken','GRAVY HEINZ HOME STYLE CLASSIC CHICK',,'H.J. Heinz Co.',,,0,,,,, -27062,0600,'Soup beef barley ready to serve','SOUP BF BARLEY READY TO SERVE',,,'Y',,0,,,,, -27063,0600,'Sauce enchilada red mild ready to serve','SAUCE ENCHILADA RED MILD READY TO SERVE',,,'Y',,0,,,4.00,9.00,4.00 -27064,0600,'Wasabi','WASABI',,,'Y',,0,,6.25,,, -27065,0600,'Dip bean original flavor','DIP BEAN ORIGINAL FLAVOR',,,'Y',,0,,,,, -27066,0600,'Sauce horseradish','SAUCE HORSERADISH',,,'Y',,0,,,,, -27068,0600,'Dip FRITOS bean original flavor','DIP FRITOS BEAN ORIGINAL FLAVOR',,'Pepsi-Cola North America',,,0,,,,, -28285,1800,'Bread chapati or roti whole wheat commercially prepared frozen','BREAD CHAPATI OR ROTI WHL WHEAT COMMLY PREP FRZ',,,'Y',,0,,6.25,,, -28286,1800,'Bread paratha whole wheat commercially prepared frozen','BREAD PARATHA WHL WHEAT COMMLY PREP FRZ',,,'Y',,0,,6.25,,, -28287,1800,'Bread naan whole wheat commercially prepared refrigerated','BREAD NAAN WHL WHEAT COMMLY PREP REFR',,,'Y',,0,,6.25,,, -28288,1800,'Bread roll Mexican bollilo','BREAD ROLL MEXICAN BOLLILO',,,'Y',,0,,6.25,,, -28289,1800,'Cookie vanilla with caramel coconut and chocolate coating','COOKIE VANILLA W/ CARAMEL COCNT & CHOC COATING',,,'Y',,0,,6.25,,, -28290,1800,'Cookie with peanut butter filling chocolate-coated','COOKIE W/ PNUT BUTTER FILLING CHOCOLATE-COATED',,'Kellogg Co.','Y',,0,,6.25,,, -28291,1800,'Cookies animal with frosting or icing','COOKIES ANIMAL W/ FRSTNG OR ICING',,,'Y',,0,,6.25,,, -28292,1800,'Crackers multigrain','CRACKERS MULTIGRAIN',,,'Y',,0,,6.25,,, -28293,1800,'Cookie butter or sugar with chocolate icing or filling','COOKIE BUTTER OR SUGAR W/ CHOC ICING OR FILLING',,'Kellogg Co.','Y',,0,,6.25,,, -28294,1800,'Cookie chocolate with icing or coating','COOKIE CHOC W/ ICING OR COATING',,,'Y',,0,,6.25,,, -28295,1800,'Tortillas ready-to-bake or -fry whole wheat','TORTILLAS RTB OR -FRY WHL WHEAT',,,'Y',,0,,6.25,,, -28296,1800,'Cake snack cakes creme-filled chocolate with frosting low-fat with added fiber','CAKE SNK CAKES CREME-FILLED CHOC W/ FRSTNG L-F W/ ADD FIBER',,,'Y',,0,,6.25,,, -28297,1800,'Cake snack cakes not chocolate with icing or filling low-fat with added fiber','CAKE SNK CAKES NOT CHOC W/ ICING OR FILLING L-F W/ ADD FIBER',,,'Y',,0,,6.25,,, -28298,1800,'Cookies brownies commercially prepared reduced fat with added fiber','COOKIES BROWNIES COMMLY PREP RED FAT W/ ADDED FIBER',,,'Y',,0,,6.25,,, -28299,1800,'Cookies chocolate sandwich with creme filling reduced fat','COOKIES CHOC SNDWCH W/ CREME FILLING RED FAT',,,'Y',,0,,6.25,,, -28300,1800,'Cookies oatmeal sandwich with creme filling','COOKIES OATMEAL SNDWCH W/ CREME FILLING',,,'Y',,0,,6.25,,, -28301,1800,'Cookies peanut butter commercially prepared sugar free','COOKIES PNUT BUTTER COMMLY PREP SUGAR FREE',,,'Y',,0,,6.25,,, -28302,1800,'Cookies graham crackers plain or honey lowfat','COOKIES GRAHAM CRACKERS PLN OR HONEY LOWFAT',,,'Y',,0,,6.25,,, -28303,1800,'Crackers cheese whole grain','CRACKERS CHS WHL GRAIN',,,'Y',,0,,6.25,,, -28304,1800,'Waffles whole wheat lowfat frozen ready-to-heat','WAFFLES WHL WHEAT LOWFAT FRZ RTH',,,'Y',,0,,6.25,,, -28305,1800,'Pancakes plain reduced fat','PANCAKES PLN RED FAT',,,'Y',,0,,6.25,,, -28306,1800,'Bread chapati or roti plain commercially prepared','BREAD CHAPATI OR ROTI PLN COMMLY PREP',,,,,0,,6.25,,, -28307,1800,'Bread naan plain commercially prepared refrigerated','BREAD NAAN PLN COMMLY PREP REFR',,,,,0,,6.25,,, -28308,1800,'Crackers standard snack-type with whole wheat','CRACKERS STD SNACK-TYPE W/ WHL WHEAT',,,'Y',,0,,6.25,,, -28309,1800,'Cookies coconut macaroon','COOKIES COCNT MACAROON',,,'Y',,0,,6.25,,, -28310,1800,'Cookies shortbread reduced fat','COOKIES SHORTBREAD RED FAT',,,'Y',,0,,6.25,,, -28311,1800,'Cookies sugar wafer chocolate-covered','COOKIES SUGAR WAFER CHOCOLATE-COVERED',,,'Y',,0,,6.25,,, -28312,1800,'Rolls hamburger or hot dog wheat/cracked wheat','ROLLS HAMBURGER OR HOT DOG WHEAT/CRACKED WHEAT',,,'Y',,0,,6.25,,, -28313,1800,'Rolls hamburger or hot dog whole wheat','ROLLS HAMBURGER OR HOT DOG WHL WHEAT',,,'Y',,0,,,,, -28314,1800,'Crackers sandwich-type peanut butter filled reduced fat','CRACKERS SANDWICH-TYPE PNUT BUTTER FILLED RED FAT',,,'Y',,0,,6.25,,, -28315,1800,'Bread cinnamon','BREAD CINN',,,'Y',,0,,6.25,,, -28316,1800,'Bread wheat sprouted','BREAD WHEAT SPROUTED',,,'Y',,0,,6.25,,, -28317,1800,'Bread wheat sprouted toasted','BREAD WHEAT SPROUTED TSTD',,,'Y',,0,,6.25,,, -28318,1800,'Bread french or vienna whole wheat','BREAD FRENCH OR VIENNA WHL WHEAT',,,'Y',,0,,6.25,,, -28319,1800,'Bagels whole grain white','BAGELS WHL GRAIN WHITE',,,'Y',,0,,6.25,,, -28320,1800,'English muffins whole grain white','ENGLISH MUFFINS WHL GRAIN WHITE',,,'Y',,0,,6.25,,, -28321,1800,'Rolls hamburger whole grain white calcium-fortified','ROLLS HAMBURGER WHL GRAIN WHITE CALCIUM-FORTIFIED',,,'Y',,0,,6.25,,, -28322,1800,'Bagels multigrain','BAGELS MULTIGRAIN',,,'Y',,0,,6.25,,, -28324,1800,'Pancakes whole wheat dry mix incomplete','PANCAKES WHL WHEAT DRY MIX INCOMPLETE',,,'Y',,0,,6.25,,, -28325,1800,'Crackers toast thins low sodium','CRACKERS TOAST THINS LO NA',,,'Y',,0,,6.25,,, -28326,1800,'Crackers whole grain sandwich-type with peanut butter filling','CRACKERS WHL GRAIN SANDWICH-TYPE W/ PNUT BUTTER FILLING',,,'Y',,0,,6.25,,, -28327,1800,'Crackers water biscuits','CRACKERS H2O BISCUITS',,,'Y',,0,,6.25,,, -28328,1800,'Cookies chocolate chip sandwich with creme filling','COOKIES CHOC CHIP SNDWCH W/ CREME FILLING',,,'Y',,0,,6.25,,, -28329,1800,'Cookies chocolate made with rice cereal','COOKIES CHOC MADE W/ RICE CRL',,,'Y',,0,,6.25,,, -28330,1800,'Cookies marshmallow with rice cereal and chocolate chips','COOKIES MARSHMLLW W/ RICE CRL & CHOC CHIPS',,,'Y',,0,,6.25,,, -28331,1800,'Crackers flavored fish-shaped','CRACKERS FLAV FISH-SHAPED',,,,,0,,6.25,,, -28332,1800,'Cookies gluten-free chocolate sandwich with creme filling','COOKIES GLUTEN-FREE CHOC SNDWCH W/ CREME FILLING',,,'Y',,0,,,,, -28333,1800,'Cookies gluten-free chocolate wafer','COOKIES GLUTEN-FREE CHOC WAFER',,,,,0,,6.25,,, -28334,1800,'Cookies gluten-free lemon wafer','COOKIES GLUTEN-FREE LEMON WAFER',,,,,0,,6.25,,, -28335,1800,'Cookies gluten-free vanilla sandwich with creme filling','COOKIES GLUTEN-FREE VANILLA SNDWCH W/ CREME FILLING',,,,,0,,6.25,,, -28336,1800,'Bread gluten-free white made with potato extract rice starch and rice flour','BREAD GLUTEN-FREE POTATO EXTRACT RICE STARCH & RICE FLOUR',,,,,0,,6.25,,, -28337,1800,'Bread gluten-free white made with rice flour corn starch and/or tapioca','BREAD GLUTEN-FREE RICE FLOUR CORN STARCH AND/OR TAPIOCA',,,'Y',,0,,,,, -28338,1800,'Bread gluten-free white made with tapioca starch and brown rice flour','BRD GLUTEN-FREE WHITE MADE W/TAPIOCA STARCH & BRWN RICE FLR',,,,,0,,6.25,,, -28339,1800,'Bread gluten-free whole grain made with tapioca starch and brown rice flour','BREAD GLUTEN-FREE WHL GRAIN TAPIOCA STARCH & BROWN RICE FLR',,,,,0,,6.25,,, -28340,1800,'Rolls gluten-free white made with brown rice flour tapioca starch and potato starch','ROLLS GLUTEN-FREE BRW RICE FLR TAPIOCA STARCH &POTATO STARCH',,,,,0,,6.25,,, -28341,1800,'Rolls gluten-free white made with rice flour rice starch and corn starch','ROLLS GLUTEN-FREE RICE FLR RICE STARCH & CORN STARCH',,,'Y',,0,,,,, -28342,1800,'Rolls gluten-free white made with brown rice flour tapioca starch and sorghum flour','ROLLS GLUTEN-FREE BRW RICE FLR TAPIOCA STARCH &SORGHUM FLR',,,,,0,,6.25,,, -28343,1800,'Rolls gluten-free whole grain made with tapioca starch and brown rice flour','ROLLS GLUTEN-FREE WHL GRAIN TAPIOCA STARCH & BROWN RICE FLR',,,,,0,,6.25,,, -28344,1800,'Crackers gluten-free multigrain and vegetable made with corn starch and white rice flour','CRACKERS GLUTEN-FREE MULTIGRAIN & VEG MADE W/ CORN STARCH &',,,,,0,,6.25,,, -28345,1800,'Crackers gluten-free multi-seeded and multigrain','CRACKERS GLUTEN-FREE MULTI-SEEDED & MULTIGRAIN',,,'Y',,0,,6.25,,, -28346,1800,'Waffles gluten-free frozen ready-to-heat','WAFFLES GLUTEN-FREE FRZ RTH',,,'Y',,0,,6.25,,, -28347,1800,'Pancakes gluten-free frozen ready-to-heat','PANCAKES GLUTEN-FREE FRZ RTH',,,'Y',,0,,6.25,,, -28348,1800,'Rolls dinner sweet','ROLLS DINNER SWT',,,'Y',,0,,6.25,,, -28349,1800,'Cookies oatmeal reduced fat','COOKIES OATMEAL RED FAT',,,'Y',,0,,6.25,,, -28350,1800,'Cookies chocolate cream covered biscuit sticks','COOKIES CHOC CRM COVERED BISCUIT STKS',,,'Y',,0,,6.25,,, -28351,1800,'Cookies Marie biscuit','COOKIES MARIE BISCUIT',,,'Y',,0,,6.25,,, -28352,1800,'Cookies vanilla sandwich with creme filling reduced fat','COOKIES VANILLA SNDWCH W/ CREME FILLING RED FAT',,,'Y',,0,,6.25,,, -28354,1800,'Andreas Gluten Free Soft Dinner Roll','ANDREAS GLUTEN FREE SOFT DINNER ROLL',,'Andreas Gluten Free',,,0,,6.25,,, -28355,1800,'Crunchmaster Multi-Grain Crisps Snack Crackers Gluten-Free','CRUNCHMASTER MULTI-GRAIN CRISPS SNACK CRACKERS GLUTEN-FREE',,'Crunchmaster',,,0,,,,, -28356,1800,'Glutino Gluten Free Cookies Chocolate Vanilla Creme','GLUTINO GLUTEN FREE COOKIES CHOC VANILLA CREME',,'Glutino',,,0,,,,, -28357,1800,'Glutino Gluten Free Cookies Vanilla Creme','GLUTINO GLUTEN FREE COOKIES VANILLA CREME',,'Glutino',,,0,,6.25,,, -28358,1800,'Glutino Gluten Free Wafers Lemon Flavored','GLUTINO GLUTEN FREE WAFERS LEMON FLAV',,'Glutino',,,0,,,,, -28359,1800,'Glutino Gluten Free Wafers Milk Chocolate','GLUTINO GLUTEN FREE WAFERS MILK CHOC',,'Glutino',,,0,,6.25,,, -28360,1800,'Marys Gone Crackers Original Crackers Organic Gluten Free','MARYS GONE CRACKERS ORIGINAL CRACKERS ORGANIC GLUTEN FREE',,'Marys Gone Crackers',,,0,,6.25,,, -28361,1800,'Pepperidge Farm Goldfish Baked Snack Crackers Cheddar','PEPPERIDGE FARM GOLDFISH BKD SNACK CRACKERS CHEDDAR',,'Pepperidge Farm',,,0,,,,, -28362,1800,'Pepperidge Farm Goldfish Baked Snack Crackers Explosive Pizza','PEPPERIDGE FARM GOLDFISH BKD SNACK CRACKERS EXPLOSIVE PIZZA',,'Pepperidge Farm',,,0,,,,, -28363,1800,'Pepperidge Farm Goldfish Baked Snack Crackers Original','PEPPERIDGE FARM GOLDFISH BKD SNACK CRACKERS ORIGINAL',,'Pepperidge Farm',,,0,,,,, -28364,1800,'Pepperidge Farm Goldfish Baked Snack Crackers Parmesan','PEPPERIDGE FARM GOLDFISH BKD SNACK CRACKERS PARMESAN',,'Pepperidge Farm',,,0,,,,, -28365,1800,'Pepperidge Farm Goldfish Baked Snack Crackers Pizza','PEPPERIDGE FARM GOLDFISH BKD SNACK CRACKERS PIZZA',,'Pepperidge Farm',,,0,,,,, -28366,1800,'Rudis Gluten-Free Bakery Original Sandwich Bread','RUDIS GLUTEN-FREE BAKERY ORIGINAL SNDWCH BREAD',,'Rudis Bakery',,,0,,6.25,,, -28367,1800,'Sage Valley Gluten Free Vanilla Sandwich Cookies','SAGE VALLEY GLUTEN FREE VANILLA SNDWCH COOKIES',,'Sage Valley',,,0,,6.25,,, -28368,1800,'Schar Gluten-Free Classic White Rolls','SCHAR GLUTEN-FREE CLASSIC WHITE ROLLS',,'Dr. Schar USA Inc.',,,0,,,,, -28369,1800,'Schar Gluten-Free Wheat-Free Classic White Bread','SCHAR GLUTEN-FREE WHEAT-FREE CLASSIC WHITE BREAD',,'Dr. Schar USA Inc.',,,0,,,,, -28370,1800,'Udis Gluten Free Classic French Dinner Rolls','UDIS GLUTEN FREE CLASSIC FRENCH DINNER ROLLS',,'Udis Gluten Free',,,0,,6.25,,, -28371,1800,'Udis Gluten Free Soft & Delicious White Sandwich Bread','UDIS GLUTEN FREE SOFT & DELICIOUS WHITE SNDWCH BREAD',,'Udis Gluten Free',,,0,,,,, -28372,1800,'Udis Gluten Free Soft & Hearty Whole Grain Bread','UDIS GLUTEN FREE SOFT & HEARTY WHL GRAIN BREAD',,'Udis Gluten Free',,,0,,6.25,,, -28373,1800,'Udis Gluten Free Whole Grain Dinner Rolls','UDIS GLUTEN FREE WHL GRAIN DINNER ROLLS',,'Udis Gluten Free',,,0,,6.25,,, -28374,1800,'Vans Gluten Free Totally Original Pancakes','VANS GLUTEN FREE TOTALLY ORIGINAL PANCAKES',,'Vans International Foods',,,0,,6.25,,, -28375,1800,'Vans Gluten Free Totally Original Waffles','VANS GLUTEN FREE TOTALLY ORIGINAL WAFFLES',,'Vans International Foods',,,0,,,,, -28376,1800,'Vans The Perfect 10 Crispy Six Whole Grain + Four Seed Baked Crackers Gluten Free','VANS THE PRFCT 10 CRSP 6 WHL GRN 4 SD BKD CRCKRS GLTN FREE',,'Vans International Foods',,,0,,6.25,,, -28397,1800,'Bread multi-grain (includes whole-grain)','BREAD MULTI-GRAIN (INCLUDES WHOLE-GRAIN)',,,'Y',,0,,,,, -28399,1800,'Cookies animal crackers (includes arrowroot tea biscuits)','COOKIES ANIMAL CRACKERS (INCL ARROWROOT TEA BISCUITS )',,,'Y',,0,,5.70,4.10,8.80,4.00 -31019,1100,'Seaweed Canadian Cultivated EMI-TSUNOMATA dry','SEAWEED CANADIAN CULTIVATED EMI-TSUNOMATA DRY',,'Acadian Seaplants Limited',,,0,'Chondrus crispus',6.25,,, -31020,1100,'Seaweed Canadian Cultivated EMI-TSUNOMATA rehydrated','SEAWEED CANADIAN CULTIVATED EMI-TSUNOMATA REHYDRATED',,'Acadian Seaplants Limited',,,0,,6.25,,, -31021,1100,'Potatoes hash brown refrigerated unprepared','POTATOES HASH BROWN REFR UNPREP',,,,,0,,,,, -31022,1100,'Potatoes hash brown refrigerated prepared pan-fried in canola oil','POTATOES HASH BROWN REFR PREP PAN-FRIED IN CANOLA OIL','Potatoes hashed brown',,,,0,,,,, -31023,1100,'Sweet Potatoes french fried frozen as packaged salt added in processing','SWEET POTATOES FRENCH FR FRZ AS PACKAGED SALT ADDED',,,'Y',,0,,6.25,4.03,8.37,2.78 -31024,1100,'Sweet Potatoes french fried crosscut frozen unprepared','SWEET POTATOES FRENCH FR CROSSCUT FRZ UNPREP',,,,,0,,6.25,,, -31025,1100,'Sweet Potato puffs frozen unprepared','SWEET POTATO PUFFS FRZ UNPREP',,,,,0,,6.25,,, -31026,1100,'Potatoes yellow fleshed roasted salt added in processing frozen unprepared','POTATOES YEL FLESHED RSTD SALT ADDED IN PROC FRZ UNPREP',,,,,0,,,,, -31027,1100,'Potatoes yellow fleshed french fried frozen unprepared','POTATOES YEL FLESHED FRENCH FR FRZ UNPREP',,,,,0,,,,, -31028,1100,'Potatoes yellow fleshed hash brown shredded salt added in processing frozen unprepared','POTATO\ YEL FLSH HASH BRN SHRD SALT ADDED IN PROC FRZ UNPREP',,,,,0,,6.25,,, -31029,1100,'Potatoes french fried wedge cut frozen unprepared','POTATOES FRENCH FR WEDGE CUT FRZ UNPREP',,,,,0,,6.25,2.80,8.80,4.00 -31030,1100,'Potatoes french fried steak cut salt not added in processing frozen unprepared','POTATOES FRENCH FR STK CUT SALT NOT ADDED IN PROC FRZ UNPREP',,,,,0,,6.25,2.80,8.80,4.00 -31031,1100,'Potatoes french fried cross cut frozen unprepared','POTATOES FRENCH FR CROSS CUT FRZ UNPREP',,,,,0,,6.25,2.80,8.80,4.00 -31033,1100,'Ginger root pickled canned with artificial sweetener','GINGER ROOT PICKLED CND W/ ART SWTNR',,,'Y',,0,,6.25,2.78,8.37,3.84 -31034,1100,'Peppers hot pickled canned','PEPPERS HOT PICKLED CND',,,'Y',,0,,6.25,2.44,8.37,3.57 -31035,1100,'Vegetable juice BOLTHOUSE FARMS DAILY GREENS','VEGETABLE JUC BOLTHOUSE FARMS DAILY GRNS',,'Bolthouse Farms','Y',,0,,6.25,2.44,8.37,3.57 -31036,1100,'Potatoes mashed ready-to-eat','POTATOES MSHD RTE',,,'Y',,0,,,,, -32000,2200,'Rice and vermicelli mix beef flavor unprepared','RICE & VERMICELLI MIX BF FLAVOR UNPREP',,,'Y',,0,,6.25,,, -32001,2200,'Rice and vermicelli mix beef flavor prepared with 80% margarine','RICE & VERMICELLI MIX BF FLAVOR PREP W/ 80% MARGARINE',,,,,0,,,3.87,8.37,4.14 -32002,2200,'Rice and vermicelli mix rice pilaf flavor unprepared','RICE & VERMICELLI MIX RICE PILAF FLAVOR UNPREP',,,'Y',,0,,6.25,,, -32003,2200,'Rice and vermicelli mix rice pilaf flavor prepared with 80% margarine','RICE & VERMICELLI MIX RICE PILAF FLAVOR PREP W/ 80% MARGARIN',,,,,0,,,,, -32004,2200,'Macaroni and cheese box mix with cheese sauce unprepared','MACARONI & CHS BOX MIX W/ CHS SAU UNPREP',,,'Y',,0,,,,, -32005,2200,'Macaroni and cheese box mix with cheese sauce prepared','MACARONI & CHS BOX MIX W/ CHS SAU PREP',,,,,0,,,,, -32006,2200,'Taquitos frozen chicken and cheese oven-heated','TAQUITOS FRZ CHICK & CHS OVEN-HEATED',,,'Y',,0,,6.25,,, -32007,2200,'Taquitos frozen beef and cheese oven-heated','TAQUITOS FRZ BF & CHS OVEN-HEATED',,,'Y',,0,,6.25,,, -32008,2200,'Pasta mix classic cheeseburger macaroni unprepared','PASTA MIX CLASSIC CHEESEBURGER MACARONI UNPREP',,,'Y',,0,,,,, -32009,2200,'Pasta mix classic beef unprepared','PASTA MIX CLASSIC BF UNPREP',,,'Y',,0,,6.25,,, -32010,2200,'Pasta mix Italian lasagna unprepared','PASTA MIX ITALIAN LASAGNA UNPREP',,,'Y',,0,,6.25,,, -32011,2200,'Yellow rice with seasoning dry packet mix unprepared','YELLOW RICE W/ SEASONING DRY PACKET MIX UNPREP',,,'Y',,0,,6.25,,, -32012,2200,'Pizza rolls frozen unprepared','PIZZA ROLLS FRZ UNPREP',,,'Y',,0,,6.25,,, -32013,2200,'Potsticker or wonton pork and vegetable frozen unprepared','POTSTICKER OR WONTON PORK & VEG FRZ UNPREP',,,'Y',,0,,6.25,,, -32014,2200,'Macaroni or noodles with cheese made from reduced fat packaged mix unprepared','MACARONI OR NOODLES W/ CHS MADE FROM RED FAT PACKAGED MIX UN',,,'Y',,0,,6.25,,, -32015,2200,'Turnover cheese-filled tomato-based sauce frozen unprepared','TURNOVER CHEESE-FILLED TOMATO-BASED SAU FRZ UNPREP',,,'Y',,0,,6.25,,, -32016,2200,'Macaroni or noodles with cheese microwaveable unprepared','MACARONI OR NOODLES W/ CHS MICROWAVEABLE UNPREP',,,'Y',,0,,6.25,,, -32017,2200,'Pasta mix Italian four cheese lasagna unprepared','PASTA MIX ITALIAN FOUR CHS LASAGNA UNPREP',,,,,0,,6.25,,, -32018,2200,'Spanish rice mix dry mix unprepared','SPANISH RICE MIX DRY MIX UNPREP',,,,,0,,6.25,,, -32019,2200,'Lasagna cheese frozen unprepared','LASAGNA CHS FRZ UNPREP',,,,,0,,6.25,,, -32020,2200,'Chicken thighs frozen breaded reheated','CHICKEN THIGHS FRZ BREADED REHTD',,,,,0,,6.25,,, -32021,2200,'Spanish rice mix dry mix prepared (with canola/vegetable oil blend or diced tomatoes and margarine)','SPANISH RICE MIX DRY MIX PREP (WITH CANOLA/VEGETABLE OIL BLE',,,,,0,,6.25,,, -32024,2200,'Rice mix cheese flavor dry mix unprepared','RICE MIX CHS FLAVOR DRY MIX UNPREP',,,'Y',,0,,6.25,,, -32025,2200,'Dumpling potato- or cheese-filled frozen','DUMPLING POTATO- OR CHEESE-FILLED FRZ',,,'Y',,0,,6.25,,, -32026,2200,'Turnover chicken- or turkey- and vegetable-filled reduced fat frozen','TURNOVER CHICKEN- OR TURKEY- & VEGETABLE-FILLED RED FAT FRZ',,,'Y',,0,,6.25,,, -32027,2200,'Turnover meat- and cheese-filled tomato-based sauce reduced fat frozen','TURNOVER MEAT- & CHEESE-FILLED TOMATO-BASED SAU RED FAT FRZ',,,'Y',,0,,6.25,,, -32028,2200,'Turnover filled with egg meat and cheese frozen','TURNOVER FILLED W/ EGG MEAT & CHS FRZ',,,'Y',,0,,6.25,,, -32029,2200,'Rice mix white and wild flavored unprepared','RICE MIX WHITE & WILD FLAV UNPREP',,,'Y',,0,,6.25,,, -32031,2200,'Salisbury steak with gravy frozen','SALISBURY STEAK W/ GRAVY FRZ',,,'Y',,0,,6.25,,, -32032,2200,'Sausage egg and cheese breakfast biscuit','SAUSAGE EGG & CHS BRKFST BISCUIT',,,'Y',,0,,6.25,,, -32034,2200,'HUNGRY MAN Salisbury Steak With Gravy frozen unprepared','HUNGRY MAN SALISBURY STEAK W/ GRAVY FRZ UNPREP',,'Hungry Man',,,0,,,,, -32035,2200,'BANQUET Salisbury Steak With Gravy family size frozen unprepared','BANQUET SALISBURY STEAK W/ GRAVY FAMILY SIZE FRZ UNPREP',,'Banquet Foods Corp.',,,0,,,,, -32036,2200,'JIMMY DEAN Sausage Egg and Cheese Breakfast Biscuit frozen unprepared','JIMMY DEAN SAUSAGE EGG & CHS BRKFST BISCUIT FRZ UNPREP',,'Jimmy Dean Foods',,,0,,,,, -33862,0300,'Infant Formula MEAD JOHNSON ENFAMIL Newborn with ARA and DHA powder','INF FORMULA MEAD JOHNSON ENFAMIL NEWBORN W/ ARA & DHA PDR',,'MEAD JOHNSON','Y',,0,,6.25,,, -33863,0300,'Infant Formula MEAD JOHNSON ENFAMIL Premium LIPIL Infant powder','INF FORMULA MEAD JOHNSON ENFAMIL PREMIUM LIPIL INFANT PDR',,'MEAD JOHNSON','Y',,0,,6.25,,, -33864,0300,'Infant Formula MEAD JOHNSON ENFAMIL Premium LIPIL Infant Liquid concentrate not reconstituted','INF FORMU MEA JOHN ENFA PRE LIPIL INFA LIQ CON NOT REC',,'MEAD JOHNSON','Y',,0,,,,, -33865,0300,'Infant Formula MEAD JOHNSON ENFAMIL Premium Infant Liquid concentrate not reconstituted','INF FORMULA MEAD JOHNSON ENFA PREM INFANT LIQ CONC NOT REC',,'MEAD JOHNSON','Y',,0,,,,, -33866,0300,'Infant formula MEAD JOHNSON ENFAMIL ENFAGROW GENTLEASE Toddler transitions with ARA and DHA powder','INF FORMU MEAD JOH ENFA ENFA GEN TODD TRANS W/ ARA & DHA PDR',,'MEAD JOHNSON','Y',,0,,6.25,,, -33867,0300,'Infant formula GERBER GOOD START PROTECT PLUS powder','INF FORMULA GERBER GOOD START PROTECT PLUS PDR',,'GERBER','Y',,0,,6.25,,, -33868,0300,'Infant Formula GERBER GOOD START 2 GENTLE PLUS powder','INF FORMULA GERBER GOOD START 2 GENTLE PLUS PDR',,'GERBER','Y',,0,,6.25,,, -33869,0300,'Infant formula GERBER GOOD START 2 PROTECT PLUS powder','INF FORMULA GERBER GOOD START 2 PROTECT PLUS PDR',,'GERBER','Y',,0,,6.25,,, -33870,0300,'Infant formula MEAD JOHNSON ENFAMIL ENFAGROW Soy Toddler transitions with ARA and DHA powder','INF FOR ME JO ENFAML ENFA SOY TODD TRANS W/ ARA & DHA PDR',,'MEAD JOHNSON','Y',,0,,6.25,,, -33871,0300,'Infant formula ABBOTT NUTRITION SIMILAC GO AND GROW powder with ARA and DHA','INF FORMULA ABB NUTR SIMIL GO & GR PDR W/ ARA & DHA',,'ABBOT NUTRTION','Y',,0,,6.25,,, -33872,0300,'Infant formula GERBER GOOD START 2 SOY with iron powder','INF FORMULA GERBER GOOD START 2 SOY W/ IRON PDR',,'GERBER','Y',,0,,6.25,,, -33873,0300,'Infant formula MEAD JOHNSON ENFAMIL NUTRAMIGEN PurAmino powder not reconstituted','INF FORMULA MEAD JOHNSON ENFAM NUTRAMIG PURAMI PDR NO REC',,'MEAD JOHNSON','Y',,0,,6.25,,, -33874,0300,'Infant formula MEAD JOHNSON ENFAMIL Premature 20 calories ready-to-feed Low iron','INF FORMULA MEAD JOHNSON ENFAMI PREMATURE 20 CAL RTF LO IRON',,'MEAD JOHNSON','Y',,0,,6.25,,, -33875,0300,'Infant formula MEAD JOHNSON ENFAMIL Premature 24 calories ready-to-feed Low iron','INF FORMULA MEAD JOHNSON ENFAML PREMATURE 24 CAL RTF LO IRON',,'MEAD JOHNSON','Y',,0,,6.25,,, -33876,0300,'Infant Formula MEAD JOHNSON ENFAMIL Premium Infant ready-to-feed','INF FORMULA MEAD JOHNSON ENFAMIL PREMIUM INFANT RTF',,'MEAD JOHNSON','Y',,0,,6.25,,, -33877,0300,'Infant Formula MEAD JOHNSON ENFAMIL Premium Infant powder','INF FORMULA MEAD JOHNSON ENFAMIL PREMIUM INFANT PDR',,'MEAD JOHNSON','Y',,0,,6.25,,, -33878,0300,'Babyfood GERBER Banana with orange medley','BABYFOOD GERBER BANANA W/ ORANGE MEDLEY',,'GERBER','Y',,0,,6.25,3.98,8.37,3.16 -33881,0300,'Babyfood rice cereal dry EARTHS BEST ORGANIC WHOLE GRAIN fortified only with iron','BABYFOOD RICE CRL DRY EARTHS BEST ORGANIC WHL GRAIN FORT ONL',,'Eaths Best',,,0,,,,, -35001,3500,'Agutuk fish/berry with seal oil (Alaskan ice cream) (Alaska Native)','AGUTUK FISH/BERRY W/ SEAL OIL (ICE CREAM) (ALASKA NATIVE)',,,,,0,,6.25,,, -35003,3500,'Agutuk meat-caribou (Alaskan ice cream) (Alaska Native)','AGUTUK MEAT-CARIBOU (ALASKAN ICE CREAM) (ALASKA NATIVE)',,,,,0,,6.25,,, -35004,3500,'Ascidians (tunughnak) (Alaska Native)','ASCIDIANS (TUNUGHNAK) (ALASKA NATIVE)',,,,,0,,6.25,,, -35007,3500,'Bear black meat (Alaska Native)','BEAR BLACK MEAT (ALASKA NATIVE)',,,,,0,'Ursus americanus',6.25,,, -35008,3500,'Bear polar meat raw (Alaska Native)','BEAR POLAR MEAT RAW (ALASKA NATIVE)',,,,,0,'Ursus maritimus',6.25,,, -35009,3500,'Whale beluga meat dried (Alaska Native)','WHALE BELUGA MEAT DRIED (ALASKA NATIVE)',,,,,0,'Delphinapterus leucas',6.25,,, -35010,3500,'Whale beluga eyes (Alaska Native)','WHALE BELUGA EYES (ALASKA NATIVE)',,,,,0,'Delphinapterus leucas',6.25,,, -35011,3500,'Whale beluga meat raw (Alaska Native)','Whale beluga meat raw (Alaska Native)',,,,,0,'Delphinapterus leucas',6.25,,, -35012,3500,'Whale beluga flipper raw (Alaska Native)','WHALE BELUGA FLIPPER RAW (ALASKA NATIVE)',,,,,0,'Delphinapterus leucas',6.25,,, -35013,3500,'Whale beluga liver raw (Alaska Native)','WHALE BELUGA LIVER RAW (ALASKA NATIVE)',,,,,0,'Delphinapterus leucas',6.25,,, -35014,3500,'Oil beluga whale (Alaska Native)','OIL BELUGA WHALE (ALASKA NATIVE)',,,,,0,'Delphinapterus leucas',,,, -35015,3500,'Blackberries wild raw (Alaska Native)','BLACKBERRIES WILD RAW (ALASKA NATIVE)','Crowberries',,,,0,'Rubus spp.',5.30,,, -35016,3500,'Fish blackfish whole (Alaska Native)','FISH BLACKFISH WHL (ALASKA NATIVE)',,,,,0,'Dallia pectoralis',6.25,,, -35017,3500,'Blueberries wild frozen (Alaska Native)','BLUEBERRIES WILD FRZ (ALASKA NATIVE)',,,,,0,'Vaccinium alaskanese and Ovalifolium',5.30,,, -35021,3500,'Caribou bone marrow raw (Alaska Native)','CARIBOU BONE MARROW RAW (ALASKA NATIVE)',,,,,0,'Rangifer tarandus',6.25,,, -35022,3500,'Caribou eye raw (Alaska Native)','CARIBOU EYE RAW (ALASKA NATIVE)',,,,,0,'Rangifer tarandus',6.25,,, -35023,3500,'Caribou liver raw (Alaska Native)','CARIBOU LIVER RAW (ALASKA NATIVE)',,,,,0,'Rangifer tarandus',6.25,,, -35024,3500,'Stew/soup caribou (Alaska Native)','STEW/SOUP CARIBOU (ALASKA NATIVE)',,,,,0,,6.25,,, -35025,3500,'Caribou tongue raw (Alaska Native)','CARIBOU TONGUE RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35026,3500,'Chiton leathery gumboots (Alaska Native)','CHITON LEATHERY GUMBOOTS (ALASKA NATIVE)',,,,,0,'Katharina tunicata',6.25,,, -35027,3500,'Cloudberries raw (Alaska Native)','CLOUDBERRIES RAW (ALASKA NATIVE)','baked apple berry yellowberry salmonberry',,,,0,'Rubus chamaemorus L.',5.30,,, -35028,3500,'Cockles raw (Alaska Native)','COCKLES RAW (ALASKA NATIVE)',,,,,0,'Clinocardium nuttallii',6.25,,, -35029,3500,'Cranberries wild bush raw (Alaska Native)','CRANBERRIES WILD BUSH RAW (ALASKA NATIVE)',,,,,0,'Viburnum edule',5.30,,, -35030,3500,'Cranberry low bush or lingenberry raw (Alaska Native)','CRANBERRY LO BUSH OR LINGENBERRY RAW (ALASKA NATIVE)','lingenberry',,,,0,'Vaccinium vitis-idaea',5.30,,, -35034,3500,'Fish devilfish meat (Alaska Native)','FISH DEVILFISH MEAT (ALASKA NATIVE)','Gray Whale',,,,0,'Myoxocephalus',6.25,,, -35038,3500,'Fireweed young leaves raw (Alaska Native)','FIREWEED YOUNG LEAVES RAW (ALASKA NATIVE)',,,,,0,'Chamerion angustifolium',5.30,,, -35039,3500,'Fish herring eggs on giant kelp Pacific (Alaska Native)','FISH HERRING EGGS ON GIANT KELP PACIFIC (ALASKA NATIVE)',,,,,0,'Clupea harengus pallasi Valenciennes & Macrocystis integrifolia',6.25,,, -35040,3500,'Fish herring eggs Pacific dry (Alaska Native)','FISH HERRING EGGS PACIFIC DRY (ALASKA NATIVE)',,,,,0,'Clupea harengus pallasi Valenciennes',6.25,,, -35041,3500,'Fish herring eggs Pacific plain (Alaska Native)','FISH HERRING EGGS PACIFIC PLN (ALASKA NATIVE)',,,,,0,'Clupea harengus pallasi Valenciennes',6.25,,, -35042,3500,'Fish herring Pacific flesh air-dried packed in oil (Alaska Native)','FISH HERRING PACIFIC FLSH AIR-DRIED PACK OIL (ALASKA NATIVE)',,,,,0,'Clupea harengus pallasi Valenciennes',6.25,,, -35043,3500,'Huckleberries raw (Alaska Native)','HUCKLEBERRIES RAW (ALASKA NATIVE)',,,,,0,'Vaccinium alaskaense',5.30,,, -35046,3500,'Fish lingcod meat raw (Alaska Native)','FISH LINGCOD MEAT RAW (ALASKA NATIVE)',,,,,0,'Ophiodon elongatus',6.25,,, -35047,3500,'Fish lingcod liver (Alaska Native)','FISH LINGCOD LIVER (ALASKA NATIVE)',,,,,0,'Ophiodon elongatus',6.25,,, -35048,3500,'Stew moose (Alaska Native)','STEW MOOSE (ALASKA NATIVE)',,,,,0,,6.25,,, -35049,3500,'Moose meat raw (Alaska Native)','MOOSE MEAT RAW (ALASKA NATIVE)',,,,,0,'Alces alces',6.25,,, -35050,3500,'Mashu roots raw (Alaska Native)','MASHU ROOTS RAW (ALASKA NATIVE)',,,,,0,'Hedysarum alpinum',5.30,,, -35051,3500,'Moose liver braised (Alaska Native)','MOOSE LIVER BRSD (ALASKA NATIVE)',,,,,0,'Alces alces',6.25,,, -35052,3500,'Mouse nuts roots (Alaska Native)','MOUSE NUTS ROOTS (ALASKA NATIVE)',,,,,0,,6.25,,, -35053,3500,'Mouse nuts seedlings (Alaska Native)','MOUSE NUTS SEEDLINGS (ALASKA NATIVE)',,,,,0,,6.25,,, -35054,3500,'Octopus (Alaska Native)','OCTOPUS (ALASKA NATIVE)',,,,,0,'Octopus dofleini',6.25,,, -35055,3500,'Seal bearded (Oogruk) meat dried (Alaska Native)','SEAL BEARDED (OOGRUK) MEAT DRIED (ALASKA NATIVE)','Oogruk',,,,0,,6.25,,, -35056,3500,'Seal bearded (Oogruk) meat raw (Alaska Native)','SEAL BEARDED (OOGRUK) MEAT RAW (ALASKA NATIVE)',,,,,0,'Erignathus barbatus',6.25,,, -35057,3500,'Oil bearded seal (Oogruk) (Alaska Native)','OIL BEARDED SEAL (OOGRUK) (ALASKA NATIVE)',,,,,0,,,,, -35058,3500,'Oopah (tunicate) whole animal (Alaska Native)','OOPAH (TUNICATE) WHL ANIMAL (ALASKA NATIVE)',,,,,0,'Tunicata',6.25,,, -35059,3500,'Owl horned flesh raw (Alaska Native)','OWL HORNED FLESH RAW (ALASKA NATIVE)',,,,,0,'Bubo virgimianus',6.25,,, -35060,3500,'Fish pike northern liver (Alaska Native)','FISH PIKE NORTHERN LIVER (ALASKA NATIVE)',,,,,0,'Esox lucius',6.25,,, -35063,3500,'Rhubarb wild leaves (Alaska Native)','RHUBARB WILD LEAVES (ALASKA NATIVE)',,,,,0,'Polygenum alaskanum',5.30,,, -35064,3500,'Fish salmon tipnuk fermented (Alaska Native)','FISH SALMON TIPNUK FERMENTED (ALASKA NATIVE)',,,,,0,,6.25,,, -35065,3500,'Fish salmon king chinook kippered canned (Alaska Native)','FISH SALMON KING CHINOOK KIPPERED CND (ALASKA NATIVE)',,,,,0,'Oncorhynchus tshawytscha',6.25,,, -35066,3500,'Fish salmon king chinook smoked and canned (Alaska Native)','FISH SALMON KING CHINOOK SMOKED & CND (ALASKA NATIVE)',,,,,0,'Oncorhynchus tshawytscha',6.25,,, -35067,3500,'Fish salmon king chinook smoked brined (Alaska Native)','FISH SALMON KING CHINOOK SMOKED BRINED (ALASKA NATIVE)',,,,,0,'Oncorhynchus tshawytscha',6.25,,, -35068,3500,'Fish salmon king chinook liver (Alaska Native)','FISH SALMON KING CHINOOK LIVER (ALASKA NATIVE)',,,,,0,'Oncorhynchus tshawytscha',6.25,,, -35069,3500,'Duck scoter white-winged meat (Alaska Native)','DUCK SCOTER WHITE-WINGED MEAT (ALASKA NATIVE)',,,,,0,'Melanitta fusca',5.30,,, -35070,3500,'Sea cucumber yane (Alaska Native)','SEA CUCUMBER YANE (ALASKA NATIVE)',,,,,0,'Stichopus californicus',6.25,,, -35071,3500,'Seal ringed meat (Alaska Native)','SEAL RINGED MEAT (ALASKA NATIVE)',,,,,0,'Pusa hispida',6.25,,, -35072,3500,'Seal ringed liver (Alaska Native)','SEAL RINGED LIVER (ALASKA NATIVE)',,,,,0,'Pusa hispida',6.25,,, -35073,3500,'Soup fish homemade (Alaska Native)','SOUP FISH HOMEMADE (ALASKA NATIVE)',,,,,0,,6.25,,, -35074,3500,'Sourdock young leaves (Alaska Native)','SOURDOCK YOUNG LEAVES (ALASKA NATIVE)',,,,,0,'Rumex articus',6.25,,, -35075,3500,'Squirrel ground meat (Alaska Native)','SQUIRREL GROUND MEAT (ALASKA NATIVE)',,,,,0,'Citellus undulatus',5.30,,, -35078,3500,'Tea tundra herb and laborador combination (Alaska Native)','TEA TUNDRA HERB & LABORADOR COMBINATION (ALASKA NATIVE)',,,,,0,,6.25,,, -35079,3500,'Walrus meat dried (Alaska Native)','WALRUS MEAT DRIED (ALASKA NATIVE)',,,,,0,'Odohenus rosmarus',6.25,,, -35080,3500,'Deer (venison) sitka raw (Alaska Native)','DEER (VENISON) SITKA RAW (ALASKA NATIVE)','sitka deer venison',,,,0,'Odocoileus spp',6.25,4.27,9.02,3.87 -35081,3500,'Walrus meat raw (Alaska Native)','WALRUS MEAT RAW (ALASKA NATIVE)',,,,,0,'Odohenus rosmarus',6.25,,, -35082,3500,'Walrus meat and subcutaneous fat raw (Alaska Native)','WALRUS MEAT & SUBCUTANEOUS FAT RAW (ALASKA NATIVE)',,,,,0,'Odohenus rosmarus',6.25,,, -35083,3500,'Walrus liver raw (Alaska Native)','WALRUS LIVER RAW (ALASKA NATIVE)',,,,,0,'Odohenus rosmarus',6.25,,, -35084,3500,'Oil walrus (Alaska Native)','OIL WALRUS (ALASKA NATIVE)',,,,,0,'Odohenus rosmarus',6.25,,, -35085,3500,'Whale bowhead subcutaneous fat (blubber) (Alaska Native)','WHALE BOWHEAD SUBCUTANEOUS FAT (BLUBBER) (ALASKA NATIVE)',,,,,0,'Balaena mysticetus',6.25,,, -35086,3500,'Whale bowhead skin and subcutaneous fat (muktuk) (Alaska Native)','WHALE BOWHEAD SKN & SUBCUTANEOUS FATMUKTUK(ALASKA NATIVE)',,,,,0,'Balaena mysticetus',6.25,,, -35087,3500,'Oil whale bowhead (Alaska Native)','OIL WHALE BOWHEAD (ALASKA NATIVE)',,,,,0,'Balaena mysticetus',6.25,,, -35088,3500,'Fish whitefish broad liver (Alaska Native)','FISH WHITEFISH BROAD LIVER (ALASKA NATIVE)','sheefish',,,,0,'Coregonus nasus',6.25,,, -35089,3500,'Fish whitefish mixed species raw (Alaska Native)','FISH WHITEFISH MXD SP RAW (ALASKA NATIVE)','sheefish',,,,0,'Coregonus spp.',6.25,,, -35091,3500,'Fish whitefish broad head eyes cheeks and soft bones (Alaska Native)','FISH WHITEFISH HEAD EYES CHEEKS & SOFT BONES (ALASKA NATIVE)','sheefish',,,,0,'Coregonus nasus',6.25,,, -35092,3500,'Willow leaves in oil (Alaska Native)','WILLOW LEAVES IN OIL (ALASKA NATIVE)',,,,,0,'Salix pulchra Cham.',6.25,,, -35093,3500,'Willow young leaves chopped (Alaska Native)','WILLOW YOUNG LEAVES CHOPD (ALASKA NATIVE)',,,,,0,'Salix pulchra Cham.',5.30,,, -35130,3500,'Mush blue corn with ash (Navajo)','MUSH BLUE CORN W/ ASH (NAVAJO)',,,,,0,,,,, -35131,3500,'Cornmeal blue (Navajo)','CORNMEAL BLUE (NAVAJO)',,,,,0,,,,, -35132,3500,'Melon banana (Navajo)','MELON BANANA (NAVAJO)',,,,,0,,6.25,,, -35133,3500,'Chilchen (Red Berry Beverage) (Navajo)','CHILCHEN (RED BERRY BEVERAGE) (NAVAJO)',,,,,0,,6.25,,, -35134,3500,'Corn dried (Navajo)','CORN DRIED (NAVAJO)',,,,,0,,6.25,,, -35135,3500,'Corn white steamed (Navajo)','CORN WHITE STMD (NAVAJO)',,,,,0,,,,, -35136,3500,'Cornmeal white (Navajo)','CORNMEAL WHITE (NAVAJO)',,,,,0,,6.25,,, -35137,3500,'Cornmeal yellow (Navajo)','CORNMEAL YEL (NAVAJO)',,,,,0,,6.25,,, -35138,3500,'Squash Indian raw (Navajo)','SQUASH INDIAN RAW (NAVAJO)',,,,,0,,6.25,,, -35139,3500,'Squash Indian cooked boiled (Navajo)','SQUASH INDIAN CKD BLD (NAVAJO)',,,,,0,,6.25,,, -35140,3500,'Bread kneel down (Navajo)','BREAD KNEEL DOWN (NAVAJO)',,,,,0,,6.25,,, -35141,3500,'Mutton cooked roasted (Navajo)','MUTTON CKD RSTD (NAVAJO)',,,,,0,,6.25,,, -35142,3500,'Frybread made with lard (Navajo)','FRYBREAD MADE W/ LARD (NAVAJO)',,,,,0,,,,, -35143,3500,'Tortilla includes plain and from mutton sandwich (Navajo)','TORTILLA INCL PLN & FROM MUTTON SNDWCH (NAVAJO)',,,,,0,,,,, -35144,3500,'Stew dumpling with mutton (Navajo)','STEW DUMPLING W/ MUTTON (NAVAJO)',,,,,0,,,,, -35145,3500,'Stew hominy with mutton (Navajo)','STEW HOMINY W/ MUTTON (NAVAJO)',,,,,0,,6.25,,, -35146,3500,'Stew mutton corn squash (Navajo)','STEW MUTTON CORN SQUASH (NAVAJO)',,,,,0,,6.25,,, -35147,3500,'Tamales (Navajo)','TAMALES (NAVAJO)',,,,,0,,6.25,,, -35148,3500,'Stew steamed corn (Navajo)','STEW STMD CORN (NAVAJO)',,,,,0,,,,, -35149,3500,'Fish halibut raw with skin (Alaska Native)','FISH HALIBUT RAW W/ SKN (ALASKA NATIVE)',,,,,0,,,,, -35150,3500,'Fish salmon coho (silver) raw (Alaska Native)','FISH SALMON COHO (SILVER) RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35151,3500,'Fish salmon sockeye (red) raw (Alaska Native)','FISH SALMON SOCKEYE (RED) RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35152,3500,'Fish Salmon Chum raw (Alaska Native)','FISH SALMON CHUM RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35153,3500,'Fish salmon king (chinook) raw (Alaska Native)','FISH SALMON KING (CHINOOK) RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35154,3500,'Salmonberries raw (Alaska Native)','SALMONBERRIES RAW (ALASKA NATIVE)','akpiks',,,,0,'Rubus spectabilis',5.30,,, -35155,3500,'Blueberries wild raw (Alaska Native)','BLUEBERRIES WILD RAW (ALASKA NATIVE)',,,,,0,'Vaccinium alaskaenese',5.30,,, -35156,3500,'Oil spotted seal (Alaska Native)','OIL SPOTTED SEAL (ALASKA NATIVE)',,,,,0,,6.25,,, -35157,3500,'Fish salmon red canned bones removed (Alaska Native)','FISH SALMON RED CND BONES REMOVED (ALASKA NATIVE)',,,,,0,,6.25,,, -35158,3500,'Fish whitefish eggs (Alaska Native)','FISH WHITEFISH EGGS (ALASKA NATIVE)',,,,,0,,6.25,,, -35160,3500,'Caribou rump meat half dried (Alaska Native)','CARIBOU RUMP MEAT HALF DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35161,3500,'Caribou shoulder meat dried (Alaska Native)','CARIBOU SHLDR MEAT DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35162,3500,'Caribou hind quarter meat raw (Alaska Native)','CARIBOU HIND QUARTER MEAT RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35164,3500,'Seal bearded (Oogruk) meat dried in oil (Alaska Native)','SEAL BEARDED (OOGRUK) MEAT DRIED IN OIL (ALASKA NATIVE)',,,,,0,,6.25,,, -35165,3500,'Fish whitefish dried (Alaska Native)','FISH WHITEFISH DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35166,3500,'Fish salmon red (sockeye) canned smoked (Alaska Native)','FISH SALMON RED (SOCKEYE) CND SMOKED (ALASKA NATIVE)',,,,,0,,6.25,,, -35167,3500,'Fish salmon red (sockeye) kippered (Alaska Native)','FISH SALMON RED (SOCKEYE) KIPPERED (ALASKA NATIVE)',,,,,0,,6.25,,, -35168,3500,'Fish salmon king with skin kippered (Alaska Native)','FISH SALMON KING W/ SKN KIPPERED (ALASKA NATIVE)',,,,,0,,6.25,,, -35169,3500,'Fish sheefish raw (Alaska Native)','FISH SHEEFISH RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35170,3500,'Seal bearded (Oogruk) meat low quadrant raw (Alaska Native)','SEAL BEARDED (OOGRUK) MEAT LO QUADRANT RAW (ALASKA NATIVE)',,,,,0,,6.25,,, -35171,3500,'Fish salmon chum dried (Alaska Native)','FISH SALMON CHUM DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35172,3500,'Elk free range ground cooked patties (Shoshone Bannock)','ELK FREE RANGE GROUND CKD PATTIES (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35173,3500,'Elk free range ground raw (Shoshone Bannock)','ELK FREE RANGE GROUND RAW (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35174,3500,'Buffalo free range top round steak raw (Shoshone Bannock)','BUFFALO FREE RANGE TOP RND STEAK RAW (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35175,3500,'Seal bearded (Oogruk) meat partially dried (Alaska Native)','SEAL BEARDED (OOGRUK) MEAT PART DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35176,3500,'Buffalo free range top round steak cooked (Shoshone Bannock)','BUFFALO FREE RANGE TOP RND STEAK CKD (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35177,3500,'Elk free range roast eye of round raw (Shoshone Bannock)','ELK FREE RANGE RST EYE OF RND RAW (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35178,3500,'Elk free range roast eye of round cooked (Shoshone Bannock)','ELK FREE RANGE RST EYE OF RND CKD (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35179,3500,'Chokecherries raw pitted (Shoshone Bannock)','CHOKECHERRIES RAW PITTED (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35180,3500,'Steelhead trout dried flesh (Shoshone Bannock)','STEELHEAD TROUT DRIED FLESH (SHOSHONE BANNOCK)',,,,,0,,6.25,,, -35181,3500,'Steelhead trout boiled canned (Alaska Native)','STEELHEAD TROUT BLD CND (ALASKA NATIVE)',,,,,0,,6.25,,, -35182,3500,'Acorn stew (Apache)','ACORN STEW (APACHE)',,,,,0,,6.25,,, -35183,3500,'Corn dried yellow (Northern Plains Indians)','CORN DRIED YEL (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35184,3500,'Smelt dried (Alaska Native)','SMELT DRIED (ALASKA NATIVE)',,,,,0,,6.25,,, -35185,3500,'Frybread made with lard (Apache)','FRYBREAD MADE W/ LARD (APACHE)',,,,,0,,,,, -35186,3500,'Corned beef and potatoes in tortilla (Apache)','CORNED BF & POTATOES IN TORTILLA (APACHE)',,,,,0,,,,, -35187,3500,'Tennis Bread plain (Apache)','TENNIS BREAD PLN (APACHE)',,,,,0,,6.25,,, -35188,3500,'Fish halibut cooked with skin (Alaska Native)','FISH HALIBUT CKD W/ SKN (ALASKA NATIVE)',,,,,0,,,,, -35190,3500,'Salmon red (sockeye) filets with skin smoked (Alaska Native)','SALMON RED (SOCKEYE) FILETS W/ SKN SMOKED (ALASKA NATIVE)',,,,,0,,6.25,,, -35192,3500,'Agave raw (Southwest)','AGAVE RAW (SOUTHWEST)',,,,,0,,6.25,,, -35193,3500,'Agave cooked (Southwest)','AGAVE CKD (SOUTHWEST)',,,,,0,,6.25,,, -35194,3500,'Agave dried (Southwest)','AGAVE DRIED (SOUTHWEST)',,,,,0,,6.25,,, -35195,3500,'Cattail Narrow Leaf Shoots (Northern Plains Indians)','CATTAIL NARROW LEAF SHOOTS (NORTHERN PLAINS INDIANS)',,,,,0,,,,, -35196,3500,'Lambsquarters raw (Northern Plains Indians)','LAMBSQUARTERS RAW (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35197,3500,'Lambsquarters steamed (Northern Plains Indians)','LAMBSQUARTERS STMD (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35198,3500,'Prickly pears raw (Northern Plains Indians)','PRICKLY PEARS RAW (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35199,3500,'Prickly pears broiled (Northern Plains Indians)','PRICKLY PEARS BRLD (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35200,3500,'Prairie Turnips raw (Northern Plains Indians)','PRAIRIE TURNIPS RAW (NORTHERN PLAINS INDIANS)',,,,,0,,,,, -35201,3500,'Prairie Turnips boiled (Northern Plains Indians)','PRAIRIE TURNIPS BLD (NORTHERN PLAINS INDIANS)',,,,,0,,,,, -35202,3500,'Raspberries wild (Northern Plains Indians)','RASPBERRIES WILD (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35203,3500,'Rose Hips wild (Northern Plains Indians)','ROSE HIPS WILD (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35204,3500,'Chokecherries raw pitted (Northern Plains Indians)','CHOKECHERRIES RAW PITTED (NORTHERN PLAINS INDIANS)',,,,,0,,,,, -35205,3500,'Stinging Nettles blanched (Northern Plains Indians)','STINGING NETTLES BLANCHED (NORTHERN PLAINS INDIANS)',,,,,0,,,,, -35206,3500,'Plums wild (Northern Plains Indians)','PLUMS WILD (NORTHERN PLAINS INDIANS)',,,,,0,,6.25,,, -35207,3500,'Pinon Nuts roasted (Navajo)','PINON NUTS RSTD (NAVAJO)',,,,,0,'Pinus spp.',5.30,,, -35211,3500,'Caribou hind quarter meat cooked (Alaska Native)','CARIBOU HIND QUARTER MEAT CKD (ALASKA NATIVE)',,,,,0,,,,, -35225,3500,'Agutuk fish with shortening (Alaskan ice cream) (Alaska Native)','AGUTUK FISH W/ SHORTENING (ALASKAN ICE CREAM) (ALASKA NATIVE',,,,,0,,6.25,,, -35226,3500,'Sea lion Steller liver (Alaska Native)','SEA LION STELLER LIVER (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35227,3500,'Sea lion Steller kidney (Alaska Native)','SEA LION STELLER KIDNEY (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35228,3500,'Sea lion Steller heart (Alaska Native)','SEA LION STELLER HEART (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35229,3500,'Sea lion Steller meat (Alaska Native)','SEA LION STELLER MEAT (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35230,3500,'Sea lion Steller meat with fat (Alaska Native)','SEA LION STELLER MEAT W/ FAT (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35231,3500,'Sea lion Steller fat (Alaska Native)','SEA LION STELLER FAT (ALASKA NATIVE)',,,,,0,'Eumetopias jubatus',6.25,,, -35232,3500,'Wocas dried seeds Oregon yellow pond lily (Klamath)','WOCAS DRIED SEEDS OREGON YEL POND LILY (KLAMATH)',,,,,0,'Nuphar lutea',5.30,,, -35233,3500,'Hazelnuts beaked (Northern Plains Indians)','HAZELNUTS BEAKED (NORTHERN PLAINS INDIANS)',,,,,0,'Corylus cornuta Marsh.',5.30,,, -35234,3500,'Piki bread made from blue cornmeal (Hopi)','PIKI BREAD MADE FROM BLUE CORNMEAL (HOPI)',,,,,0,,6.25,,, -35235,3500,'Wocas tuber cooked Oregon yellow pond lily (Klamath)','WOCAS TUBER CKD OREGON YEL POND LILY (KLAMATH)',,,,,0,'Nuphar lutea',5.30,,, -35236,3500,'Stew pinto bean and hominy badufsuki (Hopi)','STEW PINTO BEAN & HOMINY BADUFSUKI (HOPI)',,,,,0,,,,, -35237,3500,'Tamales masa and pork filling (Hopi)','TAMALES MASA & PORK FILLING (HOPI)',,,,,0,,,,, -35238,3500,'Tea herbal brewed Hohoysi (Hopi)','TEA HERBAL BREWED HOHOYSI (HOPI)',,,,,0,,,,, -35239,3500,'Tortilla blue corn Sakwavikaviki (Hopi)','TORTILLA BLUE CORN SAKWAVIKAVIKI (HOPI)',,,,,0,,,,, -35240,3500,'Bread blue corn somiviki (Hopi)','BREAD BLUE CORN SOMIVIKI (HOPI)',,,,,0,,,,, -36000,3600,'APPLEBEES 9 oz house sirloin steak','APPLEBEES 9 OZ HOUSE SIRLOIN STEAK','family style applebees','Applebees',,,0,,,,, -36001,3600,'APPLEBEES Double Crunch Shrimp','APPLEBEES DOUBLE CRUNCH SHRIMP','family style applebees','Applebees',,,0,,,,, -36002,3600,'APPLEBEES french fries','APPLEBEES FRENCH FR','family style applebees','Applebees',,,0,,,,, -36003,3600,'APPLEBEES KRAFT Macaroni & Cheese from kids menu','APPLEBEES KRAFT MACARONI & CHS FROM KIDS MENU','family style applebees','Applebees',,,0,,,,, -36004,3600,'APPLEBEES mozzarella sticks','APPLEBEES MOZZARELLA STKS','family style applebees','Applebees',,,0,,,,, -36005,3600,'APPLEBEES chicken tenders from kids menu','APPLEBEES CHICK TENDERS FROM KIDS MENU','family style applebees','Applebees',,,0,,,,, -36006,3600,'T.G.I. FRIDAYS FRIDAYS Shrimp breaded','T.G.I. FRIDAYS FRIDAYS SHRIMP BREADED','family style Fridays TGI Fridays','T.G.I Fridays',,,0,,,,, -36007,3600,'T.G.I. FRIDAYS french fries','T.G.I. FRIDAYS FRENCH FR','family style Fridays TGI Fridays','T.G.I Fridays',,,0,,,,, -36008,3600,'T.G.I. FRIDAYS fried mozzarella','T.G.I. FRIDAYS fried mozzarella','family style Fridays TGI Fridays','T.G.I Fridays',,,0,,,,, -36009,3600,'T.G.I. FRIDAYS macaroni & cheese from kids menu','T.G.I. FRIDAYS MACARONI & CHS FROM KIDS MENU','family style Fridays macaroni TGI Fridays','T.G.I Fridays',,,0,,,,, -36010,3600,'T.G.I. FRIDAYS chicken fingers from kids menu','T.G.I. FRIDAYS CHICK FINGERS FROM KIDS MENU','family style Fridays TGI Fridays','T.G.I Fridays',,,0,,,,, -36011,3600,'T.G.I. FRIDAYS classic sirloin steak (10 oz)','T.G.I. FRIDAYS classic sirloin steak (10 oz)','family style Fridays TGI Fridays','T.G.I Fridays',,,0,,,,, -36012,3600,'Restaurant family style fried mozzarella sticks','RESTAURANT FAMILY STYLE FRIED MOZZARELLA STKS','family style',,'Y',,0,,,,, -36013,3600,'Restaurant family style sirloin steak','RESTAURANT FAMILY STYLE SIRLOIN STEAK','family style',,,,0,,,,, -36014,3600,'Restaurant family style french fries','RESTAURANT FAMILY STYLE FRENCH FR','family style',,,,0,,,,, -36015,3600,'Restaurant family style chicken fingers from kids menu','RESTAURANT FAMILY STYLE CHICK FINGERS FROM KIDS MENU','family style',,,,0,,,,, -36016,3600,'Restaurant family style shrimp breaded and fried','RESTAURANT FAMILY STYLE SHRIMP BREADED & FRIED','family style',,'Y',,0,,,,, -36017,3600,'Restaurant family style macaroni & cheese from kids menu','RESTAURANT FAMILY STYLE MACARONI & CHS FROM KIDS MENU','family style',,'Y',,0,,,,, -36018,3600,'APPLEBEES fish hand battered','APPLEBEES FISH HAND BATTERED','applebees family style','Applebees',,,0,,,,, -36019,3600,'APPLEBEES chili','APPLEBEES CHILI','family style applebees','Applebees',,,0,,,,, -36020,3600,'T.G.I. FRIDAYS chicken fingers','T.G.I. FRIDAYS CHICK FINGERS',,'T.G.I Fridays',,,0,,,,, -36021,3600,'APPLEBEES coleslaw','APPLEBEES COLESLAW','applebees family style','Applebees',,,0,,,,, -36022,3600,'APPLEBEES crunchy onion rings','APPLEBEES CRUNCHY ONION RINGS','applebees family style','Applebees',,,0,,,,, -36023,3600,'APPLEBEES chicken tenders platter','APPLEBEES CHICK TENDERS PLATTER','family style applebees','Applebees',,,0,,,,, -36024,3600,'CRACKER BARREL chicken tenderloin platter fried','CRACKER BARREL CHICK TENDERLOIN PLATTER FRIED',,'Cracker Barrel',,,0,,,,, -36025,3600,'CRACKER BARREL coleslaw','CRACKER BARREL COLESLAW',,'Cracker Barrel',,,0,,,,, -36026,3600,'CRACKER BARREL onion rings thick-cut','CRACKER BARREL ONION RINGS THICK-CUT',,'Cracker Barrel',,,0,,,,, -36027,3600,'DENNYS chicken strips','DENNYS CHICK STRIPS',,'Dennys',,,0,,,,, -36028,3600,'DENNYS coleslaw','DENNYS COLESLAW',,'Dennys',,,0,,,,, -36029,3600,'DENNYS fish fillet battered or breaded fried','DENNYS FISH FILLET BATTERED OR BREADED FRIED',,'Dennys',,,0,,,,, -36030,3600,'DENNYS hash browns','DENNYS HASH BROWNS',,'Dennys',,,0,,,,, -36031,3600,'DENNYS onion rings','DENNYS ONION RINGS',,'Dennys',,,0,,,,, -36032,3600,'DENNYS spaghetti and meatballs','DENNYS SPAGHETTI & MEATBALLS',,'Dennys',,,0,,,,, -36033,3600,'Restaurant family style fish fillet battered or breaded fried','RESTAURANT FAMILY STYLE FISH FILLET BATTERED OR BREAD FRIED','family style',,'Y',,0,,,,, -36034,3600,'Restaurant family style chicken tenders','RESTAURANT FAMILY STYLE CHICK TENDERS','family style',,,,0,,,,, -36035,3600,'Restaurant family style coleslaw','RESTAURANT FAMILY STYLE COLESLAW','family style',,'Y',,0,,,,, -36036,3600,'Restaurant family style onion rings','RESTAURANT FAMILY STYLE ONION RINGS','family style',,,,0,,,,, -36037,3600,'Restaurant family style chili with meat and beans','RESTAURANT FAMILY STYLE CHILI W/ MEAT & BNS',,,'Y',,0,,,,, -36038,3600,'Restaurant family style spaghetti and meatballs','RESTAURANT FAMILY STYLE SPAGHETTI & MEATBALLS',,,,,0,,,,, -36039,3600,'Restaurant family style hash browns','RESTAURANT FAMILY STYLE HASH BROWNS',,,,,0,,,4.00,9.00,4.00 -36040,3600,'CRACKER BARREL macaroni n cheese','CRACKER BARREL MACARONI N CHS','macaroni and cheese family style','Cracker Barrel',,,0,,,,, -36041,3600,'Restaurant Italian lasagna with meat','RESTAURANT ITALIAN LASAGNA W/ MEAT',,,'Y',,0,,,,, -36042,3600,'OLIVE GARDEN lasagna classico','OLIVE GARDEN LASAGNA CLASSICO',,'Darden Group',,,0,,,,, -36043,3600,'CARRABBAS ITALIAN GRILL lasagne','CARRABBAS ITALIAN GRILL LASAGNE','lasagna','Carrabbas Italian Grill',,,0,,,,, -36044,3600,'ON THE BORDER Mexican rice','ON THE BORDER MEXICAN RICE',,,,,0,,,,, -36045,3600,'ON THE BORDER refried beans','ON THE BORDER REFRIED BNS',,,,,0,,,,, -36046,3600,'Restaurant Italian spaghetti with pomodoro sauce (no meat)','RESTAURANT ITALIAN SPAGHETTI W/ POMODORO SAU (NO MEAT)',,,,,0,,,,, -36047,3600,'OLIVE GARDEN spaghetti with pomodoro sauce','OLIVE GARDEN SPAGHETTI W/ POMODORO SAU',,'Darden Group',,,0,,,,, -36048,3600,'CARRABBAS ITALIAN GRILL spaghetti with pomodoro sauce','CARRABBAS ITALIAN GRILL SPAGHETTI W/ POMODORO SAU',,'Carrabbas Italian Grill',,,0,,,,, -36049,3600,'ON THE BORDER cheese enchilada','ON THE BORDER CHS ENCHILADA',,,,,0,,,,, -36050,3600,'Restaurant Mexican cheese enchilada','RESTAURANT MEXICAN CHS ENCHILADA',,,,,0,,,,, -36051,3600,'ON THE BORDER cheese quesadilla','ON THE BORDER CHS QUESADILLA',,,,,0,,,,, -36052,3600,'Restaurant Mexican cheese quesadilla','RESTAURANT MEXICAN CHS QUESADILLA',,,,,0,,,,, -36053,3600,'CARRABBAS ITALIAN GRILL cheese ravioli with marinara sauce','CARRABBAS ITALIAN GRILL CHS RAVIOLI W/ MARINARA SAU',,'Carrabbas Italian Grill',,,0,,,,, -36054,3600,'OLIVE GARDEN cheese ravioli with marinara sauce','OLIVE GARDEN CHS RAVIOLI W/ MARINARA SAU',,'Darden Group',,,0,,,,, -36055,3600,'Restaurant Italian cheese ravioli with marinara sauce','RESTAURANT ITALIAN CHS RAVIOLI W/ MARINARA SAU',,,,,0,,,,, -36056,3600,'Restaurant Mexican cheese tamales','RESTAURANT MEXICAN CHS TAMALES',,,,,0,,,,, -36057,3600,'CARRABBAS ITALIAN GRILL chicken parmesan without cavatappi pasta','CARRABBAS ITALIAN GRILL CHICK PARMESAN WO/ CAVATAPPI PASTA',,'Carrabbas Italian Grill',,,0,,,,, -36058,3600,'OLIVE GARDEN chicken parmigiana without pasta','OLIVE GARDEN CHICK PARMIGIANA WO/ PASTA',,'Darden Group',,,0,,,,, -36059,3600,'Restaurant Italian chicken parmesan without pasta','RESTAURANT ITALIAN CHICK PARMESAN WO/ PASTA',,,,,0,,,,, -36060,3600,'ON THE BORDER soft taco with ground beef cheese and lettuce','ON THE BORDER SOFT TACO W/ GROUND BF CHS & LETTUCE',,,,,0,,,,, -36061,3600,'Restaurant Mexican soft taco with ground beef cheese and lettuce','RESTAURANT MEXICAN SOFT TACO W/ GROUND BF CHS & LETTUCE',,,,,0,,,,, -36401,3600,'Restaurant Latino chicken and rice entree prepared','RESTAURANT LATINO CHICK & RICE ENTREE PREP',,,,,0,,,,, -36403,3600,'Restaurant Latino empanadas beef prepared','RESTAURANT LATINO EMPANADAS BF PREP',,,'Y',,0,,,,, -36404,3600,'Restaurant Latino arroz con leche (rice pudding)','RESTAURANT LATINO ARROZ CON LECHE (RICE PUDDING)',,,,,0,,,,, -36405,3600,'Restaurant Latino Arroz con frijoles negros (rice and black beans)','RESTAURANT LATINO ARROZ CON FRIJOLES NEGROS (RICE&BLACK BNS)',,,,,0,,,,, -36406,3600,'Restaurant Latino Arroz con habichuelas colorados (Rice And Red Beans)','REST LATINO ARROZ CON ABICHUELAS COLORADOS (RICE&RED BNS)',,,,,0,,,,, -36407,3600,'Restaurant Latino Arroz con grandules (rice and pigeonpeas)','RESTAURANT LATINO ARROZ CON GRANDULES (RICE & PIGEONPEAS)',,,,,0,,,,, -36408,3600,'Restaurant Latino pupusas con frijoles (pupusas bean)','RESTAURANT LATINO PUPUSAS CON FRIJOLES (PUPUSAS BEAN)',,,,,0,,,,, -36409,3600,'Restaurant Latino pupusas con queso (pupusas cheese)','RESTAURANT LATINO PUPUSAS CON QUESO (PUPUSAS CHEESE)',,,'Y',,0,,,,, -36410,3600,'Restaurant Latino pupusas del cerdo (pupusas pork)','RESTAURANT LATINO PUPUSAS DEL CERDO (PUPUSAS PORK)',,,'Y',,0,,,,, -36411,3600,'Restaurant Latino tamale corn','RESTAURANT LATINO TAMALE CORN',,,'Y',,0,,,,, -36412,3600,'Restaurant Latino tamale pork','RESTAURANT LATINO TAMALE PORK',,,'Y',,0,,,,, -36413,3600,'Restaurant Latino black bean soup','RESTAURANT LATINO BLACK BEAN SOUP',,,,,0,,,,, -36414,3600,'Restaurant Latino tripe soup','RESTAURANT LATINO TRIPE SOUP',,,,,0,,,,, -36415,3600,'Restaurant Latino arepa (unleavened cornmeal bread)','RESTAURANT LATINO AREPA (UNLEAVENED CORNMEAL BREAD)',,,,,0,,,,, -36416,3600,'Restaurant Latino bunuelos (fried yeast bread)','RESTAURANT LATINO BUNUELOS (FRIED YEAST BREAD)',,,,,0,,,,, -36417,3600,'Restaurant Mexican spanish rice','RESTAURANT MEXICAN SPANISH RICE',,,'Y',,0,,,,, -36418,3600,'Restaurant Mexican refried beans','RESTAURANT MEXICAN REFRIED BNS',,,'Y',,0,,,,, -36601,3600,'Restaurant Chinese egg rolls assorted','RESTAURANT CHINESE EGG ROLLS ASSORTED',,,,,0,,,,, -36602,3600,'Restaurant Chinese fried rice without meat','RESTAURANT CHINESE FRIED RICE WO/ MEAT',,,'Y',,0,,,,, -36603,3600,'Restaurant Chinese beef and vegetables','RESTAURANT CHINESE BF & VEG',,,'Y',,0,,,4.00,9.00,4.00 -36604,3600,'CRACKER BARREL chicken tenderloin platter fried from kids menu','CRACKER BARREL CHICK TENDERLOIN PLATTER FRIED FRM KIDS MENU','family style','Cracker Barrel',,,0,,,,, -36605,3600,'CRACKER BARREL country fried shrimp platter','CRACKER BARREL COUNTRY FRIED SHRIMP PLATTER','family style','Cracker Barrel',,,0,,,,, -36606,3600,'CRACKER BARREL farm raised catfish platter','CRACKER BARREL FARM RAISED CATFISH PLATTER','family style','Cracker Barrel',,,0,,,,, -36607,3600,'CRACKER BARREL steak fries','CRACKER BARREL STEAK FRIES','french family style','Cracker Barrel',,,0,,,,, -36608,3600,'CRACKER BARREL grilled sirloin steak','CRACKER BARREL GRILLED SIRLOIN STEAK','family style','Cracker Barrel',,,0,,,,, -36609,3600,'CRACKER BARREL macaroni n cheese plate from kids menu','CRACKER BARREL MACARONI N CHS PLATE FROM KIDS MENU','family style','Cracker Barrel',,,0,,,,, -36610,3600,'DENNYS french fries','DENNYS FRENCH FR','family style','Dennys',,,0,,,,, -36611,3600,'DENNYS mozzarella cheese sticks','DENNYS MOZZARELLA CHS STKS','family style','Dennys',,,0,,,,, -36612,3600,'DENNYS golden fried shrimp','DENNYS GOLDEN FRIED SHRIMP','family style','Dennys',,,0,,,,, -36613,3600,'DENNYS macaroni & cheese from kids menu','DENNYS MACARONI & CHS FROM KIDS MENU','family style','Dennys',,,0,,,,, -36614,3600,'DENNYS chicken nuggets star shaped from kids menu','DENNYS CHICK NUGGETS STAR SHAPED FROM KIDS MENU','family style','Dennys',,,0,,,,, -36615,3600,'DENNYS top sirloin steak','DENNYS TOP SIRLOIN STEAK','family style','Dennys',,,0,,,,, -36617,3600,'Restaurant Chinese lemon chicken','RESTAURANT CHINESE LEMON CHICK',,,'Y',,0,,,4.00,9.00,4.00 -36618,3600,'Restaurant Chinese general tsos chicken','RESTAURANT CHINESE GENERAL TSOS CHICK',,,'Y',,0,,,4.00,9.00,4.00 -36619,3600,'Restaurant Chinese kung pao chicken','RESTAURANT CHINESE KUNG PAO CHICK',,,'Y',,0,,,4.00,9.00,4.00 -36620,3600,'Restaurant Chinese shrimp and vegetables','RESTAURANT CHINESE SHRIMP & VEG',,,,,0,,,4.00,9.00,4.00 -36621,3600,'Restaurant Chinese sweet and sour chicken','RESTAURANT CHINESE SWT & SOUR CHICK',,,'Y',,0,,,4.00,9.00,4.00 -36622,3600,'Restaurant Chinese sweet and sour pork','RESTAURANT CHINESE SWT & SOUR PORK',,,,,0,,,4.00,9.00,4.00 -36623,3600,'Restaurant Chinese chicken chow mein','RESTAURANT CHINESE CHICK CHOW MEIN',,,,,0,,,4.00,9.00,4.00 -36624,3600,'Restaurant Chinese vegetable chow mein without meat or noodles','RESTAURANT CHINESE VEG CHOW MEIN WO/ MEAT OR NOODLES',,,'Y',,0,,,,, -36625,3600,'Restaurant Chinese vegetable lo mein without meat','RESTAURANT CHINESE VEG LO MEIN WO/ MEAT',,,'Y',,0,,,,, -36626,3600,'Restaurant Chinese chicken and vegetables','RESTAURANT CHINESE CHICK & VEG',,,'Y',,0,,,,, -36629,3600,'Restaurant Chinese orange chicken','RESTAURANT CHINESE ORANGE CHICK',,,'Y',,0,,,,, -36630,3600,'Restaurant Italian spaghetti with meat sauce','RESTAURANT ITALIAN SPAGHETTI W/ MEAT SAU',,,,,0,,,,, -36631,3600,'OLIVE GARDEN spaghetti with meat sauce','OLIVE GARDEN SPAGHETTI W/ MEAT SAU',,'Darden Group',,,0,,,,, -36632,3600,'CARRABBAS ITALIAN GRILL spaghetti with meat sauce','CARRABBAS ITALIAN GRILL SPAGHETTI W/ MEAT SAU',,'Carrabbas Italian Grill',,,0,,,,, -36633,3600,'Restaurant Chinese sesame chicken','RESTAURANT CHINESE SESAME CHICK',,,'Y',,0,,,,, -42040,1900,'Syrups grenadine','SYRUPS GRENADINE',,,'Y',,0,,6.25,4.00,9.00,4.00 -42055,1400,'Beverages fruit-flavored drink dry powdered mix low calorie with aspartame','BEVERAGES FRUIT-FLAVORED DRK DRY PDR MIX LO CAL W/ ASPRT',,,'Y',,0,,6.25,4.00,9.00,2.47 -42063,1900,'Pectin liquid','PECTIN LIQUID',,,'Y',,0,,,,, -42074,1900,'Frozen novelties ice cream type vanilla ice cream light no sugar added chocolate coated','FROZ NOVLT ICE CRM VAN ICE CRM LT NO SUGAR ADDED CHOC COATD',,,'Y',,0,,6.25,4.00,9.00,4.00 -42116,0400,'Creamy dressing made with sour cream and/or buttermilk and oil reduced calorie','CREAMY DRSNG MADE W/SOUR CRM AND/OR BTTRMLK&OIL RED CAL',,,'Y',,0,,,,, -42117,0100,'Imitation cheese american or cheddar low cholesterol','IMITATION CHS AMERICAN OR CHEDDAR LO CHOL',,,'Y',,0,,6.38,,, -42119,0300,'Babyfood banana juice with low fat yogurt','BABYFOOD BANANA JUC W/LOFAT YOGURT',,,'Y',,0,,6.38,4.27,8.79,3.87 -42120,0300,'Babyfood mixed fruit juice with low fat yogurt','BABYFOOD MXD FRUIT JUC W/LOFAT YOGURT',,,'Y',,0,,6.38,4.27,8.79,3.87 -42128,0700,'Ham turkey sliced extra lean prepackaged or deli','HAM TURKEY SLICED EX LN PREPACKAGED OR DELI',,,'Y',,0,,,,, -42129,0700,'Bologna beef and pork low fat','BOLOGNA BF&PORK LOFAT',,,'Y',,0,,,,, -42131,1900,'Milk dessert frozen milk-fat free chocolate','MILK DSSRT FRZ MILK-FAT FREE CHOC',,,'Y',,0,,6.25,,, -42135,0100,'Whipped topping frozen low fat','WHIPPED TOPPING FRZ LOFAT',,,'Y',,0,,6.38,,, -42136,0100,'Cream substitute powdered light','CREAM SUB PDR LT',,,'Y',,0,,6.29,,, -42137,0400,'Salad dressing peppercorn dressing commercial regular','SALAD DRSNG PEPPERCORN DRSNG COMM REG',,,'Y',,0,,,,, -42138,0400,'Mayonnaise reduced-calorie or diet cholesterol-free','MAYONNAISE RED-CAL OR DIET CHOL-FREE',,,'Y',,0,,,,, -42139,2500,'Granola bar soft milk chocolate coated peanut butter','GRANOLA BAR SOFT MILK CHOC COATD PNUT BUTTER',,,'Y',,0,,,,, -42140,0400,'Salad dressing italian dressing reduced calorie','SALAD DRSNG ITALIAN DRSNG RED CAL',,,'Y',,0,,,,, -42141,0100,'Cream substitute liquid light','CREAM SUB LIQ LT',,,'Y',,0,,6.29,,, -42148,1900,'Candies MARS SNACKFOOD US M&Ms Peanut Butter Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS PNUT BUTTER CHOC CANDIES',,'Masterfoods USA','Y',,0,,6.25,,, -42150,0300,'Babyfood apple yogurt dessert strained','BABYFOOD APPL YOGURT DSSRT STR',,,'Y',,0,,6.38,4.27,8.79,3.87 -42151,0400,'Vegetable oil-butter spread reduced calorie','VEGETABLE OIL-BUTTER SPRD RED CAL',,,'Y',,0,,,,, -42153,0400,'Salad dressing blue or roquefort cheese dressing light','SALAD DRSNG BLUE OR ROQUEFORT CHS DRSNG LT',,,'Y',,0,,,,, -42155,0100,'Cheese monterey low fat','CHEESE MONTEREY LOW FAT',,,'Y',,0,,6.38,,, -42157,0400,'Creamy dressing made with sour cream and/or buttermilk and oil reduced calorie fat-free','CRMY DRSG MDE W/ SOUR CRM AND/OR BTRMLK & OIL RED CAL FTFREE',,,'Y',,0,,,,, -42158,0400,'Creamy dressing made with sour cream and/or buttermilk and oil reduced calorie cholesterol-free','CREAMY DRSNG W/SOUR CRM AND/OR BTTRMLK&OIL RED CAL CHOL-FREE',,,'Y',,0,,,,, -42161,0700,'Bologna beef low fat','BOLOGNA BEEF LOW FAT',,,'Y',,0,,6.25,4.27,9.02,3.87 -42171,0400,'Salad dressing french dressing reduced calorie','SALAD DRSNG FRENCH DRSNG RED CAL',,,'Y',,0,,,,, -42173,0700,'Sausage turkey and pork fresh bulk patty or link cooked','SAUSAGE TURKEY & PORK FRSH BULK PATTY OR LINK CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -42178,0400,'Mayonnaise made with tofu','MAYONNAISE MADE WITH TOFU',,,'Y',,0,,,,, -42179,0700,'Frankfurter beef low fat','FRANKFURTER BF LO FAT','hot dog wiener frank',,'Y',,0,,,,, -42183,1900,'Candies MARS SNACKFOOD US TWIX chocolate fudge cookie bars','CANDIES MARS SNACKFOOD US TWIX CHOC FUDGE COOKIE BARS',,'Masterfoods USA','Y',,0,,6.25,,, -42185,1900,'Frozen yogurts chocolate nonfat milk sweetened without sugar','YOGURT FRZ CHOC NON-FAT MILK W/LO CAL SWTNR',,,'Y',,0,,6.25,,, -42186,1900,'Frozen yogurts chocolate','FROZEN YOGURTS CHOC',,,'Y',,0,,6.25,,, -42187,1900,'Frozen yogurts flavors other than chocolate','FROZEN YOGURTS FLAVORS OTHER THAN CHOC',,,'Y',,0,,,,, -42189,0100,'Milk buttermilk fluid cultured reduced fat','MILK BTTRMLK FLUID CULTURED RED FAT',,,'Y',,0,,6.38,,, -42190,0700,'Pork sausage rice links brown and serve cooked','PORK SAUSAGE RICE LINKS BROWN&SERVE CKD',,,'Y',,0,,6.25,4.27,9.02,3.87 -42192,0400,'Salad dressing blue or roquefort cheese dressing fat-free','SALAD DRSNG BLUE OR ROQUEFORT CHS DRSNG FAT-FREE',,,'Y',,0,,,4.03,8.84,3.80 -42193,0400,'Salad Dressing mayonnaise-like fat-free','SALAD DRSNG MAYONNAISE-LIKE FAT-FREE',,,'Y',,0,,,,, -42196,1900,'Candies MARS SNACKFOOD US MILKY WAY Midnight Bar','CANDIES MARS SNACKFOOD US MILKY WAY MIDNIGHT BAR',,'Masterfoods USA','Y',,0,,6.25,,, -42200,1600,'Papad','PAPAD',,,'Y',,0,,,,, -42204,2500,'Rice cake cracker (include hain mini rice cakes)','RICE CAKE CRACKER (INCL HAIN MINI RICE CAKES)',,,'Y',,0,,,,, -42227,1900,'Candies MARS SNACKFOOD US M&Ms Almond Chocolate Candies','CANDIES MARS SNACKFOOD US M&MS ALMOND CHOC CANDIES',,'Masterfoods USA','Y',,0,,6.25,,, -42230,0400,'Salad Dressing coleslaw reduced fat','SALAD DRSNG COLESLAW RED FAT',,,'Y',,0,,,2.44,8.84,3.80 -42231,0400,'Oil flaxseed cold pressed','OIL FLAXSEED COLD PRESSED',,,'Y',,0,,,,8.84, -42235,0100,'Cheese cottage lowfat 1% milkfat lactose reduced','CHEESE COTTAGE LOWFAT 1% MILKFAT LACTOSE RED',,,'Y',,0,,6.38,,, -42236,0800,'Cereals ready-to-eat frosted oat cereal with marshmallows','CEREALS RTE FRSTD OAT CRL W/MARSHMALLOWS',,,'Y',,0,,,,, -42237,0800,'Cereals ready-to-eat WEETABIX whole grain cereal','CEREALS RTE WEETABIX WHL GRAIN CRL',,'The Weetabix Company','Y',,0,,,,, -42240,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS with almonds','CEREALS RTE POST HONEY BUNCHES OF OATS W/ ALMONDS',,'Post Foods LLC','Y',,0,,,,, -42256,0400,'Margarine-like vegetable oil spread stick or tub sweetened','MARGARINE-LIKE VEG OIL SPRD STK OR TUB SWTND',,,'Y',,0,,,,, -42259,2500,'Snacks popcorn home-prepared oil-popped unsalted','SNACKS POPCORN HOME-PREPARED OIL-POPPED UNSALTED',,,'Y',,0,,,,, -42261,0800,'Cereals ready-to-eat POST GREAT GRAINS Crunchy Pecan Cereal','CEREALS RTE POST GREAT GRAINS CRUNCHY PECAN CRL',,'Post Foods LLC','Y',,0,,,,, -42265,0800,'Cereals ready-to-eat POST GREAT GRAINS Raisin Date & Pecan','CEREALS RTE POST GREAT GRAINS RAISIN DATE & PECAN',,'Post Foods LLC','Y',,0,,,,, -42266,0300,'Babyfood juice apple-sweet potato','BABYFOOD JUC APPLE-SWEET POTATO',,,'Y',,0,,6.25,3.34,8.37,3.92 -42267,0300,'Babyfood juice orange-carrot','BABYFOOD JUC ORANGE-CARROT',,,'Y',,0,,6.25,,, -42270,1400,'Beverages Orange juice drink','BEVERAGES ORANGE JUC DRK',,,,,0,,6.25,4.00,9.00,4.00 -42272,2500,'Snacks granola bar with coconut chocolate coated','GRANOLA BAR W/COCNT CHOC COATD',,,'Y',,0,,,,, -42278,0300,'Babyfood vegetable and brown rice strained','BABYFOOD VEG&BROWN RICE STR',,,'Y',,0,,,,, -42279,0300,'Babyfood peas and brown rice','BABYFOOD PEAS&BROWN RICE',,,'Y',,0,,6.25,,, -42280,0700,'Frankfurter meat and poultry low fat','FRANKFURTER MEAT & POULTRY LO FAT','hot dog wiener frank',,'Y',,0,,,,, -42281,1900,'Gums seed gums (includes locust bean guar)','GUMS SD GUMS (INCL LOCUST BEAN GUAR)',,,,,0,,6.25,,, -42283,2500,'Snacks potato chips white restructured baked','POTATO CHIPS WHITE RESTRUCTURED BKD',,,'Y',,0,,,,, -42284,0300,'Babyfood baked product finger snacks cereal fortified','BABYFOOD BKD PRODUCT FINGER SNACKS CRL FORT',,,'Y',,0,,6.25,,, -42285,0300,'Babyfood cereal brown rice dry instant','BABYFOOD CRL BROWN RICE DRY INST',,,'Y',,0,,6.25,,, -42286,0300,'Babyfood green beans and turkey strained','BABYFOOD GRN BNS&TURKEY STR',,,,,0,,6.25,,, -42289,0400,'Oil corn and canola','OIL CORN AND CANOLA',,,'Y',,0,,,,8.84, -42290,0100,'Milk fluid nonfat calcium fortified (fat free or skim)','MILK FLUID NONFAT CA FORT (FAT FREE OR SKIM)',,,'Y',,0,,6.38,,, -42291,1600,'Peanut butter reduced sodium','PEANUT BUTTER RED NA',,,'Y',,0,,5.46,3.47,8.37,4.07 -42297,0800,'Cereals ready-to-eat POST GREAT GRAINS Banana Nut Crunch','CEREALS RTE POST GREAT GRAINS BANANA NUT CRUNCH',,'Post Foods LLC','Y',,0,,,,, -42303,0100,'Cheese muenster low fat','CHEESE MUENSTER LOW FAT',,,'Y',,0,,6.38,,, -42304,0100,'Cheese mozzarella nonfat','CHEESE MOZZARELLA NON-FAT',,,'Y',,0,,6.38,,, -42307,0400,'Margarine-like butter-margarine blend 80% fat stick without salt','MARGARINE-LIKE BUTTER-MARGARINE BLEND 80% FAT STK WO/ SALT',,,'Y',,0,,,4.27,8.84,3.87 -42309,0400,'Margarine-like vegetable oil-butter spread reduced calorie tub with salt','MARGARINE-LIKE VEG OIL-BUTTER SPRD RED CAL TUB W/ SALT',,,'Y',,0,,,,, -42316,0300,'Babyfood carrots toddler','BABYFOOD CARROTS TODDLER',,,'Y',,0,,6.25,3.98,8.37,3.16 -43004,0300,'Babyfood dessert banana pudding strained','BABYFOOD DSSRT BANANA PUDD STR',,,'Y',,0,,6.25,,, -43006,0300,'Babyfood fruit tutti frutti strained','BABYFOOD FRUIT TUTTI FRUTTI STR',,,'Y',,0,,6.25,,, -43007,0300,'Babyfood fruit tutti frutti junior','BABYFOOD FRUIT TUTTI FRUTTI JR',,,'Y',,0,,6.25,,, -43008,0300,'Babyfood dinner chicken and rice','BABYFOOD DINNER CHICK&RICE',,,'Y',,0,,6.25,,, -43015,0400,'Salad dressing caesar dressing regular','SALAD DRSNG CAESAR DRSNG REG',,,'Y',,0,,,,, -43016,0400,'Salad dressing coleslaw','Salad dressing coleslaw',,,'Y',,0,,,,, -43017,0400,'Salad dressing green goddess regular','SALAD DRSNG GRN GODDESS REG',,,'Y',,0,,,,, -43019,0400,'Salad dressing sweet and sour','SALAD DRSNG SWT&SOUR',,,'Y',,0,,,,, -43020,0400,'Salad dressing blue or roquefort cheese low calorie','SALAD DRSNG BLUE OR ROQUEFORT CHS LO CAL',,,'Y',,0,,,,, -43021,0400,'Salad dressing caesar low calorie','SALAD DRSNG CAESAR LO CAL',,,'Y',,0,,,,, -43026,1900,'Syrups sugar free','SYRUPS SUGAR FREE',,,'Y',,0,,6.25,,, -43027,1900,'Jellies no sugar (with sodium saccharin) any flavors','JELLIES NO SUGAR (WITH NA SACCHARIN) ANY FLAVORS',,,'Y',,0,,6.25,,, -43028,1900,'Jams and preserves no sugar (with sodium saccharin) any flavor','JAMS & PRESERVES NO SUGAR (WITH NA SACCHARIN) ANY FLAVOR',,,'Y',,0,,6.25,0.00,0.00,2.47 -43031,1900,'Candies chocolate covered caramel with nuts','CANDIES CHOC COVERED CARAMEL W/NUTS',,,'Y',,0,,6.25,4.00,9.00,4.00 -43046,1900,'Candies nougat with almonds','CANDIES NOUGAT W/ ALMONDS',,,'Y',,0,,6.25,4.00,9.00,4.00 -43057,1900,'Candies gum drops no sugar or low calorie (sorbitol)','CANDIES GUM DROPS NO SUGAR OR LO CAL (SORBITOL)',,,'Y',,0,,6.25,,, -43058,1900,'Candies hard dietetic or low calorie (sorbitol)','CANDIES HARD DIETETIC OR LO CAL (SORBITOL)',,,'Y',,0,,6.25,,, -43059,1900,'Candies chocolate covered low sugar or low calorie','CANDIES CHOC COVERED LO SUGAR OR LO CAL',,,'Y',,0,,6.25,4.00,9.00,4.00 -43060,1900,'Chewing gum sugarless','CHEWING GUM SUGARLESS',,,'Y',,0,,6.25,,, -43075,0300,'Fluid replacement electrolyte solution (include PEDIALYTE)','FLUID REPLCMNT ELECTROLYTE SOLN (INCLUDE PEDIALYTE)',,,'Y',,0,,,,, -43098,1900,'Pie fillings cherry low calorie','PIE FILLINGS CHERRY LO CAL',,,'Y',,0,,6.25,4.00,9.00,4.00 -43100,2500,'Breakfast bars oats sugar raisins coconut (include granola bar)','BREAKFAST BARS OATS SUGAR RAISINS COCNT (INCL GRANOLA BAR)',,,'Y',,0,,,,, -43109,2500,'Pretzels soft','PRETZELS SOFT',,,'Y',,0,,6.25,,, -43112,1600,'Beans chili barbecue ranch style cooked','BEANS CHILI BARBECUE RANCH STYLE CKD',,,'Y',,0,,,,, -43114,1600,'Vermicelli made from soy','VERMICELLI MADE FROM SOY',,,'Y',,0,,,,, -43125,1600,'Beans liquid from stewed kidney beans','BEANS LIQ FROM STWD KIDNEY BNS',,,'Y',,0,,,,, -43128,1600,'Chicken meatless','CHICKEN MEATLESS',,,'Y',,0,,,,, -43130,1600,'Frankfurter meatless','FRANKFURTER MEATLESS','hot dog wiener frank',,'Y',,0,,,,, -43131,1600,'Luncheon slices meatless','LUNCHEON SLICES MEATLESS',,,'Y',,0,,,,, -43132,1600,'Meatballs meatless','MEATBALLS MEATLESS',,,'Y',,0,,,,, -43134,1600,'Vegetarian fillets','VEGETARIAN FILLETS',,,'Y',,0,,,,, -43135,1600,'Sandwich spread meatless','SANDWICH SPREAD MEATLESS',,,'Y',,0,,,,, -43137,1600,'Vegetarian meatloaf or patties','VEGETARIAN MEATLOAF OR PATTIES',,,'Y',,0,,,,, -43142,1100,'Radishes hawaiian style pickled','RADISHES HAWAIIAN STYLE PICKLED',,,'Y',,0,,,,, -43143,1100,'Cabbage japanese style fresh pickled','CABBAGE JAPANESE STYLE FRSH PICKLED',,,'Y',,0,,,,, -43144,1100,'Cabbage mustard salted','CABBAGE MUSTARD SALTED',,,'Y',,0,,,,, -43146,1100,'Eggplant pickled','EGGPLANT PICKLED',,,'Y',,0,,,,, -43154,1400,'Alcoholic beverage wine cooking','ALCOHOLIC BEV WINE COOKING',,,'Y',,0,,6.25,4.00,9.00,4.00 -43155,1400,'Alcoholic beverage wine light','ALCOHOLIC BEV WINE LT',,,'Y',,0,,,,, -43158,1900,'Sweeteners tabletop saccharin (sodium saccharin)','SWEETENERS TABLETOP SACCHARIN (SODIUM SACCHARIN)',,,'Y',,0,,6.25,4.00,9.00,4.00 -43205,0100,'Beverage instant breakfast powder chocolate not reconstituted','BEVERAGE INST BRKFST PDR CHOC NOT RECON',,,'Y',,0,,6.38,,, -43212,1600,'Bacon bits meatless','BACON BITS MEATLESS',,,'Y',,0,,,,, -43214,0400,'Butter replacement without fat powder','BUTTER REPLCMNT WO/FAT PDR',,,'Y',,0,,,,, -43215,0400,'Salad dressing buttermilk lite','SALAD DRSNG BTTRMLK LITE',,,'Y',,0,,,,, -43216,1900,'Sweeteners tabletop fructose dry powder','SWEETENERS TABLETOP FRUCTOSE DRY PDR',,,'Y',,0,,6.25,,, -43217,1100,'Tomato sauce canned no salt added','TOMATO SAU CND NO SALT ADDED',,,,,0,,6.25,2.44,8.37,3.57 -43218,0800,'Cereals ready-to-eat ALPEN','CEREALS RTE ALPEN','muesli','The Weetabix Company','Y',,0,,,,, -43241,0800,'Cereals ready-to-eat FAMILIA','CEREALS RTE FAMILIA','muesli','bio-familia AG','Y',,0,,,,, -43245,0800,'Cereals ready-to-eat wheat and bran presweetened with nuts and fruits','CEREALS RTE WHEAT&BRAN PRESWEETENED W/NUTS&FRUITS',,,'Y',,0,,,,, -43260,0100,'Beverage instant breakfast powder chocolate sugar-free not reconstituted','BEVERAGE INST BRKFST PDR CHOC SUGAR-FREE NOT RECON',,,'Y',,0,,6.38,,, -43261,0100,'Yogurt fruit variety nonfat','YOGURT FRUIT VAR NON-FAT',,,'Y',,0,,6.38,,, -43268,0100,'Whipped cream substitute dietetic made from powdered mix','WHIPPED CRM SUB DIETETIC MADE FROM PDR MIX',,,'Y',,0,,6.38,,, -43269,1900,'Frozen novelties ice cream type sundae prepackaged','FROZEN NOVELTIES ICE CRM TYPE SUNDAE PREPACKAGED',,,'Y',,0,,6.25,,, -43273,0100,'Cheese cottage with vegetables','CHEESE COTTAGE W/VEG',,,'Y',,0,,6.38,,, -43274,0100,'Cheese cream low fat','CHEESE CREAM LOW FAT',,,'Y',,0,,6.38,,, -43275,0100,'Cheese pasteurized process American low fat','CHEESE PAST PROCESS AMERICAN LOFAT',,,'Y',,0,,6.38,,, -43276,0100,'Cheese spread cream cheese base','CHEESE SPRD CRM CHS BASE',,,'Y',,0,,6.38,,, -43278,0100,'Cheese american cheddar imitation','CHEESE AMERICAN CHEDDAR IMITN',,,'Y',,0,,6.38,,, -43282,0500,'Quail cooked total edible','QUAIL COOKED TOTAL EDIBLE',,,'Y',,0,,,,, -43283,0500,'Pheasant cooked total edible','PHEASANT CKD TOTAL EDIBLE',,,'Y',,0,,,,, -43285,0100,'Eggs scrambled frozen mixture','EGGS SCRMBLD FRZ MIXTURE',,,'Y',,0,,6.25,4.36,9.02,3.68 -43287,0500,'Dove cooked (includes squab)','DOVE CKD (INCL SQUAB)',,,'Y',,0,,,,, -43297,1000,'Pork oriental style dehydrated','PORK ORIENTAL STYLE DEHYD',,,,,0,,,,, -43299,1600,'Soybean curd cheese','SOYBEAN CURD CHEESE',,,'Y',,0,,,,, -43311,1100,'Potatoes canned drained solids no salt added','POTATOES CND DRND SOL NO SALT',,,'Y',,0,,6.25,2.38,8.37,4.03 -43312,1100,'Vegetables mixed (corn lima beans peas green beans carrots) canned no salt added','VEGETABLES MXD (CORN LIMA BNS PEAS GRN BNS CRRT) CND NO SALT',,,'Y',,0,,,,, -43325,1000,'Pork cured ham boneless low sodium extra lean and regular roasted','PORK CURED HAM BNLESS LO NA EX LN & REG RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -43326,1000,'Pork cured ham low sodium lean and fat cooked','PORK CURED HAM LO NA LN & FAT CKD',,,'Y',,0,,,,, -43327,1000,'Pork cured ham boneless low sodium extra lean (approximately 5% fat) roasted','PORK CURED HAM BNLESS LO NA EX LN (APPROXIMATLY 5% FAT) RSTD',,,'Y',,0,,6.25,4.27,9.02,3.87 -43329,0400,'Salad dressing mayonnaise and mayonnaise-type low calorie','SALAD DRSNG MAYO & MAYONNAISE-TYPE LO CAL',,,,,0,,6.25,4.36,8.84,3.80 -43331,0400,'Salad dressing bacon and tomato','SALAD DRSNG BACON&TOMATO',,,'Y',,0,,,,, -43340,0100,'Cheese parmesan low sodium','CHEESE PARMESAN LO NA',,,'Y',,0,,6.38,,, -43344,1900,'Jams preserves marmalade reduced sugar','JAMS PRESERVES MARMALADE RED SUGAR',,,'Y',,0,,6.25,,, -43345,1400,'Beverages fruit-flavored drink powder with high vitamin C with other added vitamins low calorie','BEVER FRUIT-FLAV DRK PDR W/ HI VIT C W/ OTHER ADD VIT LO CAL',,,'Y',,0,,6.25,4.00,9.00,2.47 -43346,1900,'Frozen novelties juice type orange','FROZEN NOVELTIES JUC TYPE ORANGE',,,'Y',,0,,6.25,4.00,9.00,4.00 -43352,0100,'Cheese cottage lowfat 1% milkfat no sodium added','CHEESE COTTAGE LOWFAT 1% MILKFAT NO NA',,,'Y',,0,,6.38,,, -43355,0400,'Mayonnaise low sodium low calorie or diet','MAYONNAISE LO NA LO CAL OR DIET',,,'Y',,0,,,,, -43364,2500,'Snacks tortilla chips unsalted white corn','SNACKS TORTILLA CHIPS UNSALTED WHITE CORN',,,'Y',,0,,,,, -43365,1100,'Tomato and vegetable juice low sodium','TOMATO&VEG JUC LO NA',,,'Y',,0,,,,, -43366,0500,'Turkey wing smoked cooked with skin bone removed','TURKEY WING SMOKED CKD W/SKN BONE REMOVED',,,'Y',,0,,,,, -43367,0500,'Turkey drumstick smoked cooked with skin bone removed','TURKEY DRUMSTK SMOKED CKD W/SKN BONE REMOVED',,,'Y',,0,,,,, -43369,1400,'Beverages Chocolate-flavored drink whey and milk based','BEVERAGES CHOCOLATE-FLAVORED DRK WHEY & MILK BSD',,,'Y',,0,,6.25,4.00,9.00,4.00 -43378,1000,'Pork cured bacon cooked broiled pan-fried or roasted reduced sodium','PORK CURED BACON CKD BRLD PAN-FRIED OR RSTD RED NA',,,'Y',,0,,6.25,4.27,9.02,3.87 -43382,0900,'Cranberry juice unsweetened','CRANBERRY JUC UNSWTND',,,'Y',,0,,,3.36,8.37,3.60 -43384,0700,'Beef bologna reduced sodium','BEEF BOLOGNA RED NA',,,'Y',,0,,,,, -43387,1100,'Turnip greens canned no salt added','TURNIP GRNS CND NO SALT',,,'Y',,0,,,,, -43390,0500,'Turkey light or dark meat smoked cooked with skin bone removed','TURKEY LT OR DK MEAT SMOKED CKD W/SKN BONE REMOVED',,,'Y',,0,,,,, -43391,0500,'Turkey light or dark meat smoked cooked skin and bone removed','TURKEY LT OR DK MEAT SMOKED CKD SKN & BONE REMOVED',,,'Y',,0,,,,, -43392,1100,'Hearts of palm raw','HEARTS OF PALM RAW',,,'Y',,,,,,, -43393,0800,'Cereals ready-to-eat POST Shredded Wheat n Bran spoon-size','CEREALS RTE POST SHREDDED WHEAT N BRAN SPOON-SIZE',,'Post Foods LLC','Y',,0,,,,, -43396,0100,'Cheese cottage lowfat 1% milkfat with vegetables','CHEESE COTTAGE LOWFAT 1% MILKFAT W/VEG',,,'Y',,0,,6.38,,, -43398,0100,'Cheese pasteurized process cheddar or American low sodium','CHEESE PAST PROCESS CHEDDAR OR AMERICAN LO NA',,,'Y',,0,,6.38,,, -43401,1400,'Beverages coffee instant with whitener reduced calorie','BEVERAGES COFFEE INST W/ WHTNR RED CAL',,,'Y',,0,,6.25,4.00,9.00,4.00 -43404,1400,'Beverages cranberry-apple juice drink low calorie with vitamin C added','BEVERAGES CRANBERRY-APPLE JUC DRK LO CAL W/ VIT C ADDED',,,'Y',,0,,,,, -43405,0100,'Cheese swiss low sodium','CHEESE SWISS LOW SODIUM',,,'Y',,0,,6.38,,, -43406,1100,'Yeast extract spread','YEAST EXTRACT SPREAD',,,'Y',,0,,,,, -43408,0300,'Babyfood juice pear','BABYFOOD JUICE PEAR',,,'Y',,0,,6.25,3.36,8.37,3.60 -43410,1600,'Chicken meatless breaded fried','CHICKEN MEATLESS BREADED FRIED',,,'Y',,0,,,,, -43417,0300,'Babyfood meat beef with vegetables toddler','BABYFOOD MEAT BF W/ VEG TODD',,,'Y',,0,,6.14,4.10,8.90,4.10 -43432,0300,'Babyfood dinner macaroni beef and tomato sauce toddler','BABYFOOD DINNER MACARONI BF&TOMATO SAU TODD',,,'Y',,0,,6.14,4.10,8.90,4.10 -43441,1800,'Rolls pumpernickel','ROLLS PUMPERNICKEL',,,'Y',,0,,6.25,,, -43447,2500,'Snacks corn-based extruded chips unsalted','SNACKS CORN-BASED EXTRUDED CHIPS UNSALTED',,,'Y',,0,,6.25,,, -43449,1600,'Beans baked canned no salt added','BEANS BKD CND NO SALT ADDED',,,'Y',,0,,,,, -43450,1900,'Frozen novelties juice type juice with cream','FROZEN NOVELTIES JUC TYPE JUC W/ CRM',,,'Y',,0,,6.25,4.00,9.00,4.00 -43476,1600,'Tofu yogurt','TOFU YOGURT',,,'Y',,0,,,,, -43479,1400,'Alcoholic beverage rice (sake)','ALCOHOLIC BEV RICE (SAKE)',,,'Y',,0,,,,, -43483,0800,'Millet puffed','MILLET PUFFED',,,'Y',,0,,,,, -43495,0800,'Cereals ready-to-eat OAT BRAN FLAKES HEALTH VALLEY','CEREALS RTE OAT BRAN FLAKES HEALTH VALLEY',,'Hain Celestial Group Inc.','Y',,0,,,,, -43497,1500,'Jellyfish dried salted','JELLYFISH DRIED SALTED',,,,,0,,,,, -43506,1900,'Frozen novelties ice cream type chocolate or caramel covered with nuts','ICE CRM BAR CHOC OR CARAMEL COVERED W/NUTS',,,'Y',,0,,6.25,,, -43507,0700,'Frankfurter low sodium','FRANKFURTER LO NA','hot dog wiener frank',,'Y',,0,,,,, -43514,1900,'Frozen novelties ice type pop with low calorie sweetener','FROZEN NOVELTIES ICE TYPE POP W/ LO CAL SWTNR',,,'Y',,0,,6.25,4.00,9.00,4.00 -43523,0300,'Babyfood mixed fruit yogurt strained','BABYFOOD MXD FRUIT YOGURT STR',,,'Y',,0,,6.25,,, -43528,1400,'Beverages ABBOTT ENSURE PLUS ready-to-drink','BEVERAGES ABBOTT ENSURE PLUS RTD',,'Abbotts Ross Products Division','Y',,0,,,,, -43529,0300,'Babyfood rice and apples dry','BABYFOOD RICE&APPLS DRY',,,'Y',,0,,,,, -43535,0300,'Babyfood juice apple - cherry','BABYFOOD JUC APPL - CHERRY',,,'Y',,0,,6.25,,, -43536,0300,'Babyfood dessert peach yogurt','BABYFOOD DSSRT PEACH YOGURT',,,'Y',,0,,6.14,4.10,8.90,4.10 -43537,0300,'Babyfood dessert blueberry yogurt strained','BABYFOOD DSSRT BLUEBERRY YOGURT STR',,,'Y',,0,,6.25,,, -43539,0300,'Babyfood dessert banana yogurt strained','BABYFOOD DSSRT BANANA YOGURT STR',,,'Y',,0,,6.25,,, -43541,1900,'Ice creams chocolate rich','ICE CREAMS CHOC RICH',,,'Y',,0,,6.25,,, -43543,0100,'Milk imitation non-soy','MILK IMITATION NON-SOY',,,'Y',,0,,6.38,,, -43544,0300,'Babyfood cereal rice with pears and apple dry instant fortified','BABYFOOD CRL RICE W/ PEARS & APPL DRY INST FORT',,,'Y',,0,,6.25,,, -43546,0300,'Babyfood banana no tapioca strained','BABYFOOD BANANA NO TAPIOCA STR',,,'Y',,0,,6.25,,, -43550,0300,'Babyfood banana apple dessert strained','BABYFOOD BANANA APPL DSSRT STR',,,'Y',,0,,6.25,,, -43566,2500,'Snacks tortilla chips light (baked with less oil)','SNACKS TORTILLA CHIPS LT (BAKED W/ LESS OIL)',,,'Y',,0,,6.25,,, -43570,0800,'Cereals ready-to-eat POST HONEY BUNCHES OF OATS honey roasted','CEREALS RTE POST HONEY BUNCHES OF OATS HONEY RSTD',,'Post Foods LLC','Y',,0,,,,, -43572,2500,'Popcorn microwave low fat and sodium','POPCORN MICROWAVE LOFAT&NA',,,,,0,,,,, -43585,0300,'Babyfood fruit supreme dessert','BABYFOOD FRUIT SUPREME DSSRT',,,'Y',,0,,6.25,,, -43589,0100,'Cheese swiss low fat','CHEESE SWISS LOW FAT',,,'Y',,0,,6.38,,, -43595,2500,'Breakfast bar corn flake crust with fruit','BREAKFAST BAR CORN FLAKE CRUST W/FRUIT',,,'Y',,0,,,,, -43597,0100,'Cheese mozzarella low sodium','CHEESE MOZZARELLA LO NA',,,'Y',,0,,6.38,,, -43598,0400,'Mayonnaise dressing no cholesterol','MAYONNAISE DRSNG NO CHOL',,,,,0,,,4.36,8.84,3.80 -44005,0400,'Oil corn peanut and olive','OIL CORN PEANUT AND OLIVE',,,'Y',,0,,,,, -44018,1900,'Sweeteners tabletop fructose liquid','SWEETENERS TABLETOP FRUCTOSE LIQ',,,'Y',,0,,6.25,0.00,0.00,3.66 -44061,1900,'Puddings chocolate flavor low calorie instant dry mix','PUDDINGS CHOC FLAVOR LO CAL INST DRY MIX',,,'Y',,0,,6.25,4.00,9.00,4.00 -44074,0300,'Babyfood grape juice no sugar canned','BABYFOOD GRAPE JUC NO SUGAR CND',,,'Y',,0,,6.25,,, -44110,1900,'Jellies reduced sugar home preserved','JELLIES RED SUGAR HOME PRESERVED',,,'Y',,0,,6.25,,, -44158,1900,'Pie fillings blueberry canned','PIE FILLINGS BLUEBERRY CND',,,'Y',,0,,6.25,4.00,9.00,4.00 -44203,1400,'Beverages Cocktail mix non-alcoholic concentrated frozen','BEVERAGES COCKTAIL MIX NON-ALCOHOLIC CONCD FRZ',,,'Y',,0,,6.25,4.00,9.00,4.00 -44258,1900,'Puddings chocolate flavor low calorie regular dry mix','PUDDINGS CHOC FLAVOR LO CAL REG DRY MIX',,,'Y',,0,,6.25,4.00,9.00,4.00 -44259,1900,'Puddings all flavors except chocolate low calorie regular dry mix','PUDDINGS ALL FLAVORS XCPT CHOC LO CAL REG DRY MIX',,,'Y',,0,,6.25,4.00,9.00,4.00 -44260,1900,'Puddings all flavors except chocolate low calorie instant dry mix','PUDDINGS ALL FLAVORS XCPT CHOC LO CAL INST DRY MIX',,,'Y',,0,,6.25,4.00,9.00,4.00 -48052,2000,'Vital wheat gluten','VITAL WHEAT GLUTEN',,,,,0,,,,, -80200,1500,'Frog legs raw','FROG LEGS RAW',,,'Y',,0,,,,, -83110,1500,'Fish mackerel salted','MACKEREL SALTED',,,,,0,,,,, -90240,1500,'Mollusks scallop (bay and sea) cooked steamed','SCALLOP (BAY&SEA) CKD STMD',,,'Y',,0,,,,, -90480,1900,'Syrup Cane','SYRUP CANE',,,,,0,,6.25,0.00,0.00,3.68 -90560,1500,'Mollusks snail raw','SNAIL RAW',,,'Y',,0,,,,, -93600,1500,'Turtle green raw','TURTLE GREEN RAW',,,'Y',,0,,,,, diff --git a/Postgres/raw_data/new_groups.csv b/Postgres/raw_data/new_groups.csv deleted file mode 100644 index 4c4e523..0000000 --- a/Postgres/raw_data/new_groups.csv +++ /dev/null @@ -1,26 +0,0 @@ -group_id group_name -0100 inDairy and Egg Productsin -0200 inSpices and Herbsin -0300 inBaby Foodsin -0400 inFats and Oilsin -0500 inPoultry Productsin -0600 inSoups Sauces and Graviesin -0700 inSausages and Luncheon Meatsin -0800 inBreakfast Cerealsin -0900 inFruits and Fruit Juicesin -1000 inPork Productsin -1100 inVegetables and Vegetable Productsin -1200 inNut and Seed Productsin -1300 inBeef Productsin -1400 inBeveragesin -1500 inFinfish and Shellfish Productsin -1600 inLegumes and Legume Productsin -1700 inLamb Veal and Game Productsin -1800 inBaked Productsin -1900 inSweetsin -2000 inCereal Grains and Pastain -2100 inFast Foodsin -2200 inMeals Entrees and Side Dishesin -2500 inSnacksin -3500 inAmerican Indian/Alaska Native Foodsin -3600 inRestaurant Foodsin diff --git a/Postgres/raw_data/replace.regex b/Postgres/raw_data/replace.regex deleted file mode 100644 index 739241f..0000000 --- a/Postgres/raw_data/replace.regex +++ /dev/null @@ -1 +0,0 @@ -s/^\'([0-9]+)\',\'([0-9]+)\',(.*)$/\1,\\2,\\3/ diff --git a/README.md b/README.md index 2c8c29e..2aade33 100644 --- a/README.md +++ b/README.md @@ -2,21 +2,10 @@ # ingredient.guru This is the central repo for work on the Ingredient.guru project -## Postgres folder: -Contains all work that has been done on the database side. Includes schemas for the main database and makefiles. +## cro +Contains the current project being worked on +* Sessions and Auth using CRO +* Everything else -## CRO folder: -Contains experimental builds of CRO stubs; may be bug prone. - -### HTML-P6 -Is a module for perl6 that substitutes variables in text files for variables in the program. - -> use HTML-P6::Basic; - -> my %dict = name => "Jeff"; - -> interpretBasic "Hi there {{name}}!", %dict; - - Hi there Jeff! - -Will return text where {{name}} will be replaced with the corresponding key-value from %dict. +### test +Will contain information on the majority of test performed, while performing test driven development. diff --git a/Seq/HTML.pm6 b/Seq/HTML.pm6 deleted file mode 100644 index 44ec4cf..0000000 --- a/Seq/HTML.pm6 +++ /dev/null @@ -1,31 +0,0 @@ -# module Seq::HTML {} - -class Model { - has $.top is default('No Top') is rw; - has $.body is default('') is rw; - has $.bot is default('No Bot') is rw; - - method say() { $.top~$.body~$.bot } - - method set-top($string) { $.top = $string } - - method add-list(@vars) { - #my @elems = ['happy','sad','odd','unique','fencing']; - #say foo @elems; - my $out = '
    '; - loop (my $i = 0; $i < @vars.elems; $i++) { - $out = $out ~ "
  • {@vars[$i]}
  • "; - } - $out = $out ~ '
'; - $.body = $.body ~ $out; - } - -} - - -my $foo = Model.new(); -$foo.add-list([1,2,3,5,6,7]); -$foo.set-top(q:to/END/); - Nice top here, aint it? - END -say $foo.say; diff --git a/node_modules/.bin/semver b/node_modules/.bin/semver deleted file mode 120000 index 317eb29..0000000 --- a/node_modules/.bin/semver +++ /dev/null @@ -1 +0,0 @@ -../semver/bin/semver \ No newline at end of file diff --git a/node_modules/buffer-writer/.travis.yml b/node_modules/buffer-writer/.travis.yml deleted file mode 100644 index 8e59bb3..0000000 --- a/node_modules/buffer-writer/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: node_js -node_js: - - 4 - - 6 - - 8 - - 10 - - 11 diff --git a/node_modules/buffer-writer/LICENSE b/node_modules/buffer-writer/LICENSE deleted file mode 100644 index 72dc60d..0000000 --- a/node_modules/buffer-writer/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -The MIT License (MIT) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/buffer-writer/README.md b/node_modules/buffer-writer/README.md deleted file mode 100644 index 81eccc0..0000000 --- a/node_modules/buffer-writer/README.md +++ /dev/null @@ -1,48 +0,0 @@ -# buffer-writer - -[![Build Status](https://secure.travis-ci.org/brianc/node-buffer-writer.png?branch=master)](http://travis-ci.org/brianc/node-buffer-writer) - -Fast & efficient buffer writer used to keep memory usage low by internally recycling a single large buffer. - -Used as the binary protocol writer in [node-postgres](https://github.com/brianc/node-postgres) - -Since postgres requires big endian encoding, this only writes big endian numbers for now, but can & probably will easily be extended to write little endian as well. - -I'll admit this has a few postgres specific things I might need to take out in the future, such as `addHeader` - -## api - -`var writer = new (require('buffer-writer')());` - -### writer.addInt32(num) - -Writes a 4-byte big endian binary encoded number to the end of the buffer. - -### writer.addInt16(num) - -Writes a 2-byte big endian binary encoded number to the end of the buffer. - -### writer.addCString(string) - -Writes a string to the buffer `utf8` encoded and adds a null character (`\0`) at the end. - -### var buffer = writer.addHeader(char) - -Writes the 5 byte PostgreSQL required header to the beginning of the buffer. (1 byte for character, 1 BE Int32 for length of the buffer) - -### var buffer = writer.join() - -Collects all data in the writer and joins it into a single, new buffer. - -### var buffer = writer.flush(char) - -Writes the 5 byte postgres required message header, collects all data in the writer and joins it into a single, new buffer, and then resets the writer. - -## thoughts - -This is kind of node-postgres specific. If you're interested in using this for a more general purpose thing, lemme know. -I would love to work with you on getting this more reusable for your needs. - -## license - -MIT diff --git a/node_modules/buffer-writer/index.js b/node_modules/buffer-writer/index.js deleted file mode 100644 index f3c119e..0000000 --- a/node_modules/buffer-writer/index.js +++ /dev/null @@ -1,129 +0,0 @@ -//binary data writer tuned for creating -//postgres message packets as effeciently as possible by reusing the -//same buffer to avoid memcpy and limit memory allocations -var Writer = module.exports = function (size) { - this.size = size || 1024; - this.buffer = Buffer.alloc(this.size + 5); - this.offset = 5; - this.headerPosition = 0; -}; - -//resizes internal buffer if not enough size left -Writer.prototype._ensure = function (size) { - var remaining = this.buffer.length - this.offset; - if (remaining < size) { - var oldBuffer = this.buffer; - // exponential growth factor of around ~ 1.5 - // https://stackoverflow.com/questions/2269063/buffer-growth-strategy - var newSize = oldBuffer.length + (oldBuffer.length >> 1) + size; - this.buffer = Buffer.alloc(newSize); - oldBuffer.copy(this.buffer); - } -}; - -Writer.prototype.addInt32 = function (num) { - this._ensure(4); - this.buffer[this.offset++] = (num >>> 24 & 0xFF); - this.buffer[this.offset++] = (num >>> 16 & 0xFF); - this.buffer[this.offset++] = (num >>> 8 & 0xFF); - this.buffer[this.offset++] = (num >>> 0 & 0xFF); - return this; -}; - -Writer.prototype.addInt16 = function (num) { - this._ensure(2); - this.buffer[this.offset++] = (num >>> 8 & 0xFF); - this.buffer[this.offset++] = (num >>> 0 & 0xFF); - return this; -}; - -//for versions of node requiring 'length' as 3rd argument to buffer.write -var writeString = function (buffer, string, offset, len) { - buffer.write(string, offset, len); -}; - -//overwrite function for older versions of node -if (Buffer.prototype.write.length === 3) { - writeString = function (buffer, string, offset, len) { - buffer.write(string, offset); - }; -} - -Writer.prototype.addCString = function (string) { - //just write a 0 for empty or null strings - if (!string) { - this._ensure(1); - } else { - var len = Buffer.byteLength(string); - this._ensure(len + 1); //+1 for null terminator - writeString(this.buffer, string, this.offset, len); - this.offset += len; - } - - this.buffer[this.offset++] = 0; // null terminator - return this; -}; - -Writer.prototype.addChar = function (c) { - this._ensure(1); - writeString(this.buffer, c, this.offset, 1); - this.offset++; - return this; -}; - -Writer.prototype.addString = function (string) { - string = string || ""; - var len = Buffer.byteLength(string); - this._ensure(len); - this.buffer.write(string, this.offset); - this.offset += len; - return this; -}; - -Writer.prototype.getByteLength = function () { - return this.offset - 5; -}; - -Writer.prototype.add = function (otherBuffer) { - this._ensure(otherBuffer.length); - otherBuffer.copy(this.buffer, this.offset); - this.offset += otherBuffer.length; - return this; -}; - -Writer.prototype.clear = function () { - this.offset = 5; - this.headerPosition = 0; - this.lastEnd = 0; -}; - -//appends a header block to all the written data since the last -//subsequent header or to the beginning if there is only one data block -Writer.prototype.addHeader = function (code, last) { - var origOffset = this.offset; - this.offset = this.headerPosition; - this.buffer[this.offset++] = code; - //length is everything in this packet minus the code - this.addInt32(origOffset - (this.headerPosition + 1)); - //set next header position - this.headerPosition = origOffset; - //make space for next header - this.offset = origOffset; - if (!last) { - this._ensure(5); - this.offset += 5; - } -}; - -Writer.prototype.join = function (code) { - if (code) { - this.addHeader(code, true); - } - return this.buffer.slice(code ? 0 : 5, this.offset); -}; - -Writer.prototype.flush = function (code) { - var result = this.join(code); - this.clear(); - return result; -}; diff --git a/node_modules/buffer-writer/package.json b/node_modules/buffer-writer/package.json deleted file mode 100644 index 072ddc8..0000000 --- a/node_modules/buffer-writer/package.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "_from": "buffer-writer@2.0.0", - "_id": "buffer-writer@2.0.0", - "_inBundle": false, - "_integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==", - "_location": "/buffer-writer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "buffer-writer@2.0.0", - "name": "buffer-writer", - "escapedName": "buffer-writer", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", - "_shasum": "ce7eb81a38f7829db09c873f2fbb792c0c98ec04", - "_spec": "buffer-writer@2.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Brian M. Carlson" - }, - "bugs": { - "url": "https://github.com/brianc/node-buffer-writer/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "a fast, efficient buffer writer", - "devDependencies": { - "mocha": "5.2.0" - }, - "engines": { - "node": ">=4" - }, - "homepage": "https://github.com/brianc/node-buffer-writer#readme", - "keywords": [ - "buffer", - "writer", - "builder" - ], - "license": "MIT", - "main": "index.js", - "name": "buffer-writer", - "repository": { - "type": "git", - "url": "git://github.com/brianc/node-buffer-writer.git" - }, - "scripts": { - "test": "mocha --throw-deprecation" - }, - "version": "2.0.0" -} diff --git a/node_modules/buffer-writer/test/mocha.opts b/node_modules/buffer-writer/test/mocha.opts deleted file mode 100644 index 5efaf24..0000000 --- a/node_modules/buffer-writer/test/mocha.opts +++ /dev/null @@ -1 +0,0 @@ ---ui tdd diff --git a/node_modules/buffer-writer/test/writer-tests.js b/node_modules/buffer-writer/test/writer-tests.js deleted file mode 100644 index ded91c8..0000000 --- a/node_modules/buffer-writer/test/writer-tests.js +++ /dev/null @@ -1,218 +0,0 @@ -var Writer = require(__dirname + "/../"); - -var assert = require('assert'); -var util = require('util'); - -assert.equalBuffers = function (actual, expected) { - var spit = function (actual, expected) { - console.log(""); - console.log("actual " + util.inspect(actual)); - console.log("expect " + util.inspect(expected)); - console.log(""); - }; - if (actual.length != expected.length) { - spit(actual, expected); - assert.strictEqual(actual.length, expected.length); - } - for (var i = 0; i < actual.length; i++) { - if (actual[i] != expected[i]) { - spit(actual, expected); - } - assert.strictEqual(actual[i], expected[i]); - } -}; - -suite('adding int32', function () { - var testAddingInt32 = function (int, expectedBuffer) { - test('writes ' + int, function () { - var subject = new Writer(); - var result = subject.addInt32(int).join(); - assert.equalBuffers(result, expectedBuffer); - }); - }; - - testAddingInt32(0, [0, 0, 0, 0]); - testAddingInt32(1, [0, 0, 0, 1]); - testAddingInt32(256, [0, 0, 1, 0]); - test('writes largest int32', function () { - //todo need to find largest int32 when I have internet access - return false; - }); - - test('writing multiple int32s', function () { - var subject = new Writer(); - var result = subject.addInt32(1).addInt32(10).addInt32(0).join(); - assert.equalBuffers(result, [0, 0, 0, 1, 0, 0, 0, 0x0a, 0, 0, 0, 0]); - }); - - suite('having to resize the buffer', function () { - test('after resize correct result returned', function () { - var subject = new Writer(10); - subject.addInt32(1).addInt32(1).addInt32(1); - assert.equalBuffers(subject.join(), [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]); - }); - }); -}); - -suite('int16', function () { - test('writes 0', function () { - var subject = new Writer(); - var result = subject.addInt16(0).join(); - assert.equalBuffers(result, [0, 0]); - }); - - test('writes 400', function () { - var subject = new Writer(); - var result = subject.addInt16(400).join(); - assert.equalBuffers(result, [1, 0x90]); - }); - - test('writes many', function () { - var subject = new Writer(); - var result = subject.addInt16(0).addInt16(1).addInt16(2).join(); - assert.equalBuffers(result, [0, 0, 0, 1, 0, 2]); - }); - - test('resizes if internal buffer fills up', function () { - var subject = new Writer(3); - var result = subject.addInt16(2).addInt16(3).join(); - assert.equalBuffers(result, [0, 2, 0, 3]); - }); - -}); - -suite('cString', function () { - test('writes empty cstring', function () { - var subject = new Writer(); - var result = subject.addCString().join(); - assert.equalBuffers(result, [0]); - }); - - test('writes two empty cstrings', function () { - var subject = new Writer(); - var result = subject.addCString("").addCString("").join(); - assert.equalBuffers(result, [0, 0]); - }); - - - test('writes non-empty cstring', function () { - var subject = new Writer(); - var result = subject.addCString("!!!").join(); - assert.equalBuffers(result, [33, 33, 33, 0]); - }); - - test('resizes if reached end', function () { - var subject = new Writer(3); - var result = subject.addCString("!!!").join(); - assert.equalBuffers(result, [33, 33, 33, 0]); - }); - - test('writes multiple cstrings', function () { - var subject = new Writer(); - var result = subject.addCString("!").addCString("!").join(); - assert.equalBuffers(result, [33, 0, 33, 0]); - }); - -}); - -test('writes char', function () { - var subject = new Writer(2); - var result = subject.addChar('a').addChar('b').addChar('c').join(); - assert.equalBuffers(result, [0x61, 0x62, 0x63]); -}); - -test('gets correct byte length', function () { - var subject = new Writer(5); - assert.strictEqual(subject.getByteLength(), 0); - subject.addInt32(0); - assert.strictEqual(subject.getByteLength(), 4); - subject.addCString("!"); - assert.strictEqual(subject.getByteLength(), 6); -}); - -test('can add arbitrary buffer to the end', function () { - var subject = new Writer(4); - subject.addCString("!!!") - var result = subject.add(Buffer.from("@@@")).join(); - assert.equalBuffers(result, [33, 33, 33, 0, 0x40, 0x40, 0x40]); -}); - -suite('can write normal string', function () { - var subject = new Writer(4); - var result = subject.addString("!").join(); - assert.equalBuffers(result, [33]); - test('can write cString too', function () { - var result = subject.addCString("!").join(); - assert.equalBuffers(result, [33, 33, 0]); - }); - test('can resize', function () { - var result = subject.addString("!!").join(); - assert.equalBuffers(result, [33, 33, 0, 33, 33]); - }); -}); - - -suite('clearing', function () { - var subject = new Writer(); - subject.addCString("@!!#!#"); - subject.addInt32(10401); - test('clears', function () { - subject.clear(); - assert.equalBuffers(subject.join(), []); - }); - test('writing more', function () { - var joinedResult = subject.addCString("!").addInt32(9).addInt16(2).join(); - assert.equalBuffers(joinedResult, [33, 0, 0, 0, 0, 9, 0, 2]); - }); - test('returns result', function () { - var flushedResult = subject.flush(); - assert.equalBuffers(flushedResult, [33, 0, 0, 0, 0, 9, 0, 2]) - }); - test('clears the writer', function () { - assert.equalBuffers(subject.join(), []) - assert.equalBuffers(subject.flush(), []) - }); -}); - -test("resizing to much larger", function () { - var subject = new Writer(2); - var string = "!!!!!!!!"; - var result = subject.addCString(string).flush(); - assert.equalBuffers(result, [33, 33, 33, 33, 33, 33, 33, 33, 0]); -}); - -suite("flush", function () { - test('added as a hex code to a full writer', function () { - var subject = new Writer(2); - var result = subject.addCString("!").flush(0x50); - assert.equalBuffers(result, [0x50, 0, 0, 0, 6, 33, 0]); - }); - - test('added as a hex code to a non-full writer', function () { - var subject = new Writer(10).addCString("!"); - var joinedResult = subject.join(0x50); - var result = subject.flush(0x50); - assert.equalBuffers(result, [0x50, 0, 0, 0, 6, 33, 0]); - }); - - test('added as a hex code to a buffer which requires resizing', function () { - var result = new Writer(2).addCString("!!!!!!!!").flush(0x50); - assert.equalBuffers(result, [0x50, 0, 0, 0, 0x0D, 33, 33, 33, 33, 33, 33, 33, 33, 0]); - }); -}); - -suite("header", function () { - test('adding two packets with headers', function () { - var subject = new Writer(10).addCString("!"); - subject.addHeader(0x50); - subject.addCString("!!"); - subject.addHeader(0x40); - subject.addCString("!"); - var result = subject.flush(0x10); - assert.equalBuffers(result, [0x50, 0, 0, 0, 6, 33, 0, 0x40, 0, 0, 0, 7, 33, 33, 0, 0x10, 0, 0, 0, 6, 33, 0]); - }); -}); - - - - diff --git a/node_modules/packet-reader/.travis.yml b/node_modules/packet-reader/.travis.yml deleted file mode 100644 index ac2e9ee..0000000 --- a/node_modules/packet-reader/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js - -node_js: "10" -matrix: - include: - - node_js: "4" - - node_js: "6" - - node_js: "8" diff --git a/node_modules/packet-reader/README.md b/node_modules/packet-reader/README.md deleted file mode 100644 index 5ae3ef8..0000000 --- a/node_modules/packet-reader/README.md +++ /dev/null @@ -1,87 +0,0 @@ -node-packet-reader -================== - -Handy little well tested module for reading length-prefixed binary packets. - -Since buffers come off a socket in randomly sized chunks you can't expect them to cleanly -break on packet boundaries. This module allows you to push buffers in and read -full packets out the other side, so you can get to parsing right away and not have -to manage concatenating partial buffers and searching through them for packets. - -## install - -` $ npm install packet-reader ` - -## example - -```js -var Reader = require('packet-reader') - -var reader = new Reader() -//assuming you have a socket emitting `data` events -socket.on('data', function(buffer) { - reader.addChunk(buffer) - var packet = reader.read() - while(packet) { - //do something with fully parsed packet - } -}) -``` - - -here's a more full featured example: - -let's assume our "packet" for our protocol is 32-bit Big Endian length-prefixed strings -so a "hello world" packet would look something like [length, string] -`[0, 0, 0 0x0B, h, e, l, l, o, w, o, r, l, d]` - -```js -var Transform = require('stream').Transform -var Reader = require('packet-reader') -var reader = new Reader() -var parser = new Transform() -parser._transform = function(chunk, encoding, cb) { - reader.addChunk(chunk) - var packet = reader.read() - while(packet) { - this.push(packet.toString('utf8')) - packet = reader.read() - } - cb() -} - -var server = net.createServer(function(socket) { - socket.pipe(parser).pipe(stdout) -}) - -``` - -There are a few config options for setting optional pre-length padding byte. Read the tests for details. - -## License - -MIT - -Copyright 2015 Brian M. Carlson -All rights reserved. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/packet-reader/index.js b/node_modules/packet-reader/index.js deleted file mode 100644 index 5e97e21..0000000 --- a/node_modules/packet-reader/index.js +++ /dev/null @@ -1,65 +0,0 @@ -var assert = require('assert') - -var Reader = module.exports = function(options) { - //TODO - remove for version 1.0 - if(typeof options == 'number') { - options = { headerSize: options } - } - options = options || {} - this.offset = 0 - this.lastChunk = false - this.chunk = null - this.chunkLength = 0 - this.headerSize = options.headerSize || 0 - this.lengthPadding = options.lengthPadding || 0 - this.header = null - assert(this.headerSize < 2, 'pre-length header of more than 1 byte length not currently supported') -} - -Reader.prototype.addChunk = function(chunk) { - if (!this.chunk || this.offset === this.chunkLength) { - this.chunk = chunk - this.chunkLength = chunk.length - this.offset = 0 - return - } - - var newChunkLength = chunk.length - var newLength = this.chunkLength + newChunkLength - - if (newLength > this.chunk.length) { - var newBufferLength = this.chunk.length * 2 - while (newLength >= newBufferLength) { - newBufferLength *= 2 - } - var newBuffer = Buffer.alloc(newBufferLength) - this.chunk.copy(newBuffer) - this.chunk = newBuffer - } - chunk.copy(this.chunk, this.chunkLength) - this.chunkLength = newLength -} - -Reader.prototype.read = function() { - if(this.chunkLength < (this.headerSize + 4 + this.offset)) { - return false - } - - if(this.headerSize) { - this.header = this.chunk[this.offset] - } - - //read length of next item - var length = this.chunk.readUInt32BE(this.offset + this.headerSize) + this.lengthPadding - - //next item spans more chunks than we have - var remaining = this.chunkLength - (this.offset + 4 + this.headerSize) - if(length > remaining) { - return false - } - - this.offset += (this.headerSize + 4) - var result = this.chunk.slice(this.offset, this.offset + length) - this.offset += length - return result -} diff --git a/node_modules/packet-reader/package.json b/node_modules/packet-reader/package.json deleted file mode 100644 index ee3142a..0000000 --- a/node_modules/packet-reader/package.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "_from": "packet-reader@1.0.0", - "_id": "packet-reader@1.0.0", - "_inBundle": false, - "_integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==", - "_location": "/packet-reader", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "packet-reader@1.0.0", - "name": "packet-reader", - "escapedName": "packet-reader", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", - "_shasum": "9238e5480dedabacfe1fe3f2771063f164157d74", - "_spec": "packet-reader@1.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Brian M. Carlson" - }, - "bugs": { - "url": "https://github.com/brianc/node-packet-reader/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "Read binary packets...", - "devDependencies": { - "mocha": "~1.21.5" - }, - "directories": { - "test": "test" - }, - "homepage": "https://github.com/brianc/node-packet-reader", - "license": "MIT", - "main": "index.js", - "name": "packet-reader", - "repository": { - "type": "git", - "url": "git://github.com/brianc/node-packet-reader.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "1.0.0" -} diff --git a/node_modules/packet-reader/test/index.js b/node_modules/packet-reader/test/index.js deleted file mode 100644 index 0e2eedb..0000000 --- a/node_modules/packet-reader/test/index.js +++ /dev/null @@ -1,148 +0,0 @@ -var assert = require('assert') -var Reader = require('../') -describe('packet-reader', function() { - beforeEach(function() { - this.reader = new Reader(1) - }) - - it('reads perfect 1 length buffer', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 1, 1])) - var result = this.reader.read() - assert.equal(result.length, 1) - assert.equal(result[0], 1) - assert.strictEqual(false, this.reader.read()) - }) - - it('reads perfect longer buffer', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 4, 1, 2, 3, 4])) - var result = this.reader.read() - assert.equal(result.length, 4) - assert.strictEqual(false, this.reader.read()) - }) - - it('reads two parts', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 1])) - var result = this.reader.read() - assert.strictEqual(false, result) - this.reader.addChunk(Buffer.from([2])) - var result = this.reader.read() - assert.equal(result.length, 1, 'should return 1 length buffer') - assert.equal(result[0], 2) - assert.strictEqual(this.reader.read(), false) - }) - - it('reads multi-part', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 16])) - assert.equal(false, this.reader.read()) - this.reader.addChunk(Buffer.from([1, 2, 3, 4, 5, 6, 7, 8])) - assert.equal(false, this.reader.read()) - this.reader.addChunk(Buffer.from([9, 10, 11, 12, 13, 14, 15, 16])) - var result = this.reader.read() - assert.equal(result.length, 16) - }) - - it('resets internal buffer at end of packet', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 16])) - this.reader.addChunk(Buffer.from([1, 2, 3, 4, 5, 6, 7, 8])) - this.reader.addChunk(Buffer.from([9, 10, 11, 12, 13, 14, 15, 16])) - var result = this.reader.read() - assert.equal(result.length, 16) - - var newChunk = Buffer.from([0, 0, 0, 0, 16]) - this.reader.addChunk(newChunk) - assert.equal(this.reader.offset, 0, 'should have been reset to 0.') - assert.strictEqual(this.reader.chunk, newChunk) - }) - - it('reads multiple messages from single chunk', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 1, 2])) - var result = this.reader.read() - assert.equal(result.length, 1, 'should have 1 length buffer') - assert.equal(result[0], 1) - var result = this.reader.read() - assert.equal(result.length, 2, 'should have 2 length buffer but was ' + result.length) - assert.equal(result[0], 1) - assert.equal(result[1], 2) - assert.strictEqual(false, this.reader.read()) - }) - - it('reads 1 and a split', function() { - this.reader.addChunk(Buffer.from([0, 0, 0, 0, 1, 1, 0, 0]))//, 0, 0, 2, 1, 2])) - var result = this.reader.read() - assert.equal(result.length, 1, 'should have 1 length buffer') - assert.equal(result[0], 1) - var result = this.reader.read() - assert.strictEqual(result, false) - - this.reader.addChunk(Buffer.from([0, 0, 2, 1, 2])) - var result = this.reader.read() - assert.equal(result.length, 2, 'should have 2 length buffer but was ' + result.length) - assert.equal(result[0], 1) - assert.equal(result[1], 2) - assert.strictEqual(false, this.reader.read()) - }) -}) - -describe('variable length header', function() { - beforeEach(function() { - this.reader = new Reader() - }) - - it('reads double message buffers', function() { - this.reader.addChunk(Buffer.from([ - 0, 0, 0, 1, 1, - 0, 0, 0, 2, 1, 2])) - var result = this.reader.read() - assert(result) - assert.equal(result.length, 1) - assert.equal(result[0], 1) - result = this.reader.read() - assert(result) - assert.equal(result.length, 2) - assert.equal(result[0], 1) - assert.equal(result[1], 2) - assert.strictEqual(this.reader.read(), false) - }) -}) - -describe('1 length code', function() { - beforeEach(function() { - this.reader = new Reader(1) - }) - - it('reads code', function() { - this.reader.addChunk(Buffer.from([9, 0, 0, 0, 1, 1])) - var result = this.reader.read() - assert(result) - assert.equal(this.reader.header, 9) - assert.equal(result.length, 1) - assert.equal(result[0], 1) - }) - - it('is set on uncompleted read', function() { - assert.equal(this.reader.header, null) - this.reader.addChunk(Buffer.from([2, 0, 0, 0, 1])) - assert.strictEqual(this.reader.read(), false) - assert.equal(this.reader.header, 2) - }) -}) - -describe('postgres style packet', function() { - beforeEach(function() { - this.reader = new Reader({ - headerSize: 1, - lengthPadding: -4 - }) - }) - - it('reads with padded length', function() { - this.reader.addChunk(Buffer.from([1, 0, 0, 0, 8, 0, 0, 2, 0])) - var result = this.reader.read() - assert(result) - assert.equal(result.length, 4) - assert.equal(result[0], 0) - assert.equal(result[1], 0) - assert.equal(result[2], 2) - assert.equal(result[3], 0) - }) -}) diff --git a/node_modules/pg-connection-string/.npmignore b/node_modules/pg-connection-string/.npmignore deleted file mode 100644 index da23d0d..0000000 --- a/node_modules/pg-connection-string/.npmignore +++ /dev/null @@ -1,25 +0,0 @@ -# Logs -logs -*.log - -# Runtime data -pids -*.pid -*.seed - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Compiled binary addons (http://nodejs.org/api/addons.html) -build/Release - -# Dependency directory -# Deployed apps should consider commenting this line out: -# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git -node_modules diff --git a/node_modules/pg-connection-string/.travis.yml b/node_modules/pg-connection-string/.travis.yml deleted file mode 100644 index 244b7e8..0000000 --- a/node_modules/pg-connection-string/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: - - '0.10' diff --git a/node_modules/pg-connection-string/LICENSE b/node_modules/pg-connection-string/LICENSE deleted file mode 100644 index b068a6c..0000000 --- a/node_modules/pg-connection-string/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 Iced Development - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/node_modules/pg-connection-string/README.md b/node_modules/pg-connection-string/README.md deleted file mode 100644 index 4986270..0000000 --- a/node_modules/pg-connection-string/README.md +++ /dev/null @@ -1,18 +0,0 @@ -pg-connection-string -==================== - -[![Build Status](https://travis-ci.org/iceddev/pg-connection-string.svg?branch=master)](https://travis-ci.org/iceddev/pg-connection-string) - -Functions for dealing with a PostgresSQL connection string - -`parse` method taken from [node-postgres](https://github.com/brianc/node-postgres.git) -Copyright (c) 2010-2014 Brian Carlson (brian.m.carlson@gmail.com) -MIT License - -## Usage - -```js -var parse = require('pg-connection-string').parse; - -var config = parse('postgres://someuser:somepassword@somehost:381/sometable') -``` diff --git a/node_modules/pg-connection-string/index.js b/node_modules/pg-connection-string/index.js deleted file mode 100644 index ac2fd64..0000000 --- a/node_modules/pg-connection-string/index.js +++ /dev/null @@ -1,62 +0,0 @@ -'use strict'; - -var url = require('url'); - -//Parse method copied from https://github.com/brianc/node-postgres -//Copyright (c) 2010-2014 Brian Carlson (brian.m.carlson@gmail.com) -//MIT License - -//parses a connection string -function parse(str) { - var config; - //unix socket - if(str.charAt(0) === '/') { - config = str.split(' '); - return { host: config[0], database: config[1] }; - } - // url parse expects spaces encoded as %20 - if(/ |%[^a-f0-9]|%[a-f0-9][^a-f0-9]/i.test(str)) { - str = encodeURI(str).replace(/\%25(\d\d)/g, "%$1"); - } - var result = url.parse(str, true); - config = {}; - - if (result.query.application_name) { - config.application_name = result.query.application_name; - } - if (result.query.fallback_application_name) { - config.fallback_application_name = result.query.fallback_application_name; - } - - config.port = result.port; - if(result.protocol == 'socket:') { - config.host = decodeURI(result.pathname); - config.database = result.query.db; - config.client_encoding = result.query.encoding; - return config; - } - config.host = result.hostname; - - // result.pathname is not always guaranteed to have a '/' prefix (e.g. relative urls) - // only strip the slash if it is present. - var pathname = result.pathname; - if (pathname && pathname.charAt(0) === '/') { - pathname = result.pathname.slice(1) || null; - } - config.database = pathname && decodeURI(pathname); - - var auth = (result.auth || ':').split(':'); - config.user = auth[0]; - config.password = auth.splice(1).join(':'); - - var ssl = result.query.ssl; - if (ssl === 'true' || ssl === '1') { - config.ssl = true; - } - - return config; -} - -module.exports = { - parse: parse -}; diff --git a/node_modules/pg-connection-string/package.json b/node_modules/pg-connection-string/package.json deleted file mode 100644 index b03fe04..0000000 --- a/node_modules/pg-connection-string/package.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "_from": "pg-connection-string@0.1.3", - "_id": "pg-connection-string@0.1.3", - "_inBundle": false, - "_integrity": "sha1-2hhHsglA5C7hSSvq9l1J2RskXfc=", - "_location": "/pg-connection-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pg-connection-string@0.1.3", - "name": "pg-connection-string", - "escapedName": "pg-connection-string", - "rawSpec": "0.1.3", - "saveSpec": null, - "fetchSpec": "0.1.3" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz", - "_shasum": "da1847b20940e42ee1492beaf65d49d91b245df7", - "_spec": "pg-connection-string@0.1.3", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Blaine Bublitz", - "email": "blaine@iceddev.com", - "url": "http://iceddev.com/" - }, - "bugs": { - "url": "https://github.com/iceddev/pg-connection-string/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Functions for dealing with a PostgresSQL connection string", - "devDependencies": { - "tap": "^0.4.11" - }, - "homepage": "https://github.com/iceddev/pg-connection-string", - "keywords": [ - "pg", - "connection", - "string", - "parse" - ], - "license": "MIT", - "main": "index.js", - "name": "pg-connection-string", - "repository": { - "type": "git", - "url": "git+https://github.com/iceddev/pg-connection-string.git" - }, - "scripts": { - "test": "tap ./test" - }, - "version": "0.1.3" -} diff --git a/node_modules/pg-connection-string/test/parse.js b/node_modules/pg-connection-string/test/parse.js deleted file mode 100644 index c1494c3..0000000 --- a/node_modules/pg-connection-string/test/parse.js +++ /dev/null @@ -1,126 +0,0 @@ -'use strict'; - -var test = require('tap').test; - -var parse = require('../').parse; - -test('using connection string in client constructor', function(t){ - var subject = parse('postgres://brian:pw@boom:381/lala'); - t.equal(subject.user,'brian'); - t.equal(subject.password, 'pw'); - t.equal(subject.host, 'boom'); - t.equal(subject.port, '381'); - t.equal(subject.database, 'lala'); - t.end(); -}); - -test('escape spaces if present', function(t){ - var subject = parse('postgres://localhost/post gres'); - t.equal(subject.database, 'post gres'); - t.end(); -}); - -test('do not double escape spaces', function(t){ - var subject = parse('postgres://localhost/post%20gres'); - t.equal(subject.database, 'post gres'); - t.end(); -}); - -test('initializing with unix domain socket', function(t){ - var subject = parse('/var/run/'); - t.equal(subject.host, '/var/run/'); - t.end(); -}); - -test('initializing with unix domain socket and a specific database, the simple way', function(t){ - var subject = parse('/var/run/ mydb'); - t.equal(subject.host, '/var/run/'); - t.equal(subject.database, 'mydb'); - t.end(); -}); - -test('initializing with unix domain socket, the health way', function(t){ - var subject = parse('socket:/some path/?db=my[db]&encoding=utf8'); - t.equal(subject.host, '/some path/'); - t.equal(subject.database, 'my[db]', 'must to be escaped and unescaped trough "my%5Bdb%5D"'); - t.equal(subject.client_encoding, 'utf8'); - t.end(); -}); - -test('initializing with unix domain socket, the escaped health way', function(t){ - var subject = parse('socket:/some%20path/?db=my%2Bdb&encoding=utf8'); - t.equal(subject.host, '/some path/'); - t.equal(subject.database, 'my+db'); - t.equal(subject.client_encoding, 'utf8'); - t.end(); -}); - -test('password contains < and/or > characters', function(t){ - var sourceConfig = { - user:'brian', - password: 'helloe', - port: 5432, - host: 'localhost', - database: 'postgres' - }; - var connectionString = 'postgres://' + sourceConfig.user + ':' + sourceConfig.password + '@' + sourceConfig.host + ':' + sourceConfig.port + '/' + sourceConfig.database; - var subject = parse(connectionString); - t.equal(subject.password, sourceConfig.password); - t.end(); -}); - -test('password contains colons', function(t){ - var sourceConfig = { - user:'brian', - password: 'hello:pass:world', - port: 5432, - host: 'localhost', - database: 'postgres' - }; - var connectionString = 'postgres://' + sourceConfig.user + ':' + sourceConfig.password + '@' + sourceConfig.host + ':' + sourceConfig.port + '/' + sourceConfig.database; - var subject = parse(connectionString); - t.equal(subject.password, sourceConfig.password); - t.end(); -}); - -test('username or password contains weird characters', function(t){ - var strang = 'pg://my f%irst name:is&%awesome!@localhost:9000'; - var subject = parse(strang); - t.equal(subject.user, 'my f%irst name'); - t.equal(subject.password, 'is&%awesome!'); - t.equal(subject.host, 'localhost'); - t.end(); -}); - -test('url is properly encoded', function(t){ - var encoded = 'pg://bi%25na%25%25ry%20:s%40f%23@localhost/%20u%2520rl'; - var subject = parse(encoded); - t.equal(subject.user, 'bi%na%%ry '); - t.equal(subject.password, 's@f#'); - t.equal(subject.host, 'localhost'); - t.equal(subject.database, ' u%20rl'); - t.end(); -}); - -test('relative url sets database', function(t){ - var relative = 'different_db_on_default_host'; - var subject = parse(relative); - t.equal(subject.database, 'different_db_on_default_host'); - t.end(); -}); - -test('no pathname returns null database', function (t) { - var subject = parse('pg://myhost'); - t.equal(subject.host, 'myhost'); - t.type(subject.database, 'null'); - - t.end(); -}); - -test('pathname of "/" returns null database', function (t) { - var subject = parse('pg://myhost/'); - t.equal(subject.host, 'myhost'); - t.type(subject.database, 'null'); - - t.end(); -}); diff --git a/node_modules/pg-int8/LICENSE b/node_modules/pg-int8/LICENSE deleted file mode 100644 index c56c973..0000000 --- a/node_modules/pg-int8/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Copyright © 2017, Charmander <~@charmander.me> - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/pg-int8/README.md b/node_modules/pg-int8/README.md deleted file mode 100644 index ef2e608..0000000 --- a/node_modules/pg-int8/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[![Build status][ci image]][ci] - -64-bit big-endian signed integer-to-string conversion designed for [pg][]. - -```js -const readInt8 = require('pg-int8'); - -readInt8(Buffer.from([0, 1, 2, 3, 4, 5, 6, 7])) -// '283686952306183' -``` - - - [pg]: https://github.com/brianc/node-postgres - - [ci]: https://travis-ci.org/charmander/pg-int8 - [ci image]: https://api.travis-ci.org/charmander/pg-int8.svg diff --git a/node_modules/pg-int8/index.js b/node_modules/pg-int8/index.js deleted file mode 100644 index db77975..0000000 --- a/node_modules/pg-int8/index.js +++ /dev/null @@ -1,100 +0,0 @@ -'use strict'; - -// selected so (BASE - 1) * 0x100000000 + 0xffffffff is a safe integer -var BASE = 1000000; - -function readInt8(buffer) { - var high = buffer.readInt32BE(0); - var low = buffer.readUInt32BE(4); - var sign = ''; - - if (high < 0) { - high = ~high + (low === 0); - low = (~low + 1) >>> 0; - sign = '-'; - } - - var result = ''; - var carry; - var t; - var digits; - var pad; - var l; - var i; - - { - carry = high % BASE; - high = high / BASE >>> 0; - - t = 0x100000000 * carry + low; - low = t / BASE >>> 0; - digits = '' + (t - BASE * low); - - if (low === 0 && high === 0) { - return sign + digits + result; - } - - pad = ''; - l = 6 - digits.length; - - for (i = 0; i < l; i++) { - pad += '0'; - } - - result = pad + digits + result; - } - - { - carry = high % BASE; - high = high / BASE >>> 0; - - t = 0x100000000 * carry + low; - low = t / BASE >>> 0; - digits = '' + (t - BASE * low); - - if (low === 0 && high === 0) { - return sign + digits + result; - } - - pad = ''; - l = 6 - digits.length; - - for (i = 0; i < l; i++) { - pad += '0'; - } - - result = pad + digits + result; - } - - { - carry = high % BASE; - high = high / BASE >>> 0; - - t = 0x100000000 * carry + low; - low = t / BASE >>> 0; - digits = '' + (t - BASE * low); - - if (low === 0 && high === 0) { - return sign + digits + result; - } - - pad = ''; - l = 6 - digits.length; - - for (i = 0; i < l; i++) { - pad += '0'; - } - - result = pad + digits + result; - } - - { - carry = high % BASE; - t = 0x100000000 * carry + low; - digits = '' + t % BASE; - - return sign + digits + result; - } -} - -module.exports = readInt8; diff --git a/node_modules/pg-int8/package.json b/node_modules/pg-int8/package.json deleted file mode 100644 index b3713c2..0000000 --- a/node_modules/pg-int8/package.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "_from": "pg-int8@1.0.1", - "_id": "pg-int8@1.0.1", - "_inBundle": false, - "_integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - "_location": "/pg-int8", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pg-int8@1.0.1", - "name": "pg-int8", - "escapedName": "pg-int8", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/pg-types" - ], - "_resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - "_shasum": "943bd463bf5b71b4170115f80f8efc9a0c0eb78c", - "_spec": "pg-int8@1.0.1", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg-types", - "bugs": { - "url": "https://github.com/charmander/pg-int8/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "64-bit big-endian signed integer-to-string conversion", - "devDependencies": { - "@charmander/eslint-config-base": "1.0.2", - "tap": "10.7.3" - }, - "engines": { - "node": ">=4.0.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/charmander/pg-int8#readme", - "license": "ISC", - "name": "pg-int8", - "repository": { - "type": "git", - "url": "git+https://github.com/charmander/pg-int8.git" - }, - "scripts": { - "test": "tap test" - }, - "version": "1.0.1" -} diff --git a/node_modules/pg-pool/.travis.yml b/node_modules/pg-pool/.travis.yml deleted file mode 100644 index 0deb021..0000000 --- a/node_modules/pg-pool/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -language: node_js - -matrix: - include: - - node_js: "4" - addons: - postgresql: "9.1" - dist: precise - - node_js: "6" - addons: - postgresql: "9.4" - - node_js: "8" - addons: - postgresql: "9.6" - - node_js: "10" - addons: - postgresql: "9.6" diff --git a/node_modules/pg-pool/LICENSE b/node_modules/pg-pool/LICENSE deleted file mode 100644 index 4e90581..0000000 --- a/node_modules/pg-pool/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 Brian M. Carlson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/node_modules/pg-pool/Makefile b/node_modules/pg-pool/Makefile deleted file mode 100644 index 8a76314..0000000 --- a/node_modules/pg-pool/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -.PHONY: jshint test publish-patch test - -test: - npm test - -patch: test - npm version patch -m "Bump version" - git push origin master --tags - npm publish - -minor: test - npm version minor -m "Bump version" - git push origin master --tags - npm publish diff --git a/node_modules/pg-pool/README.md b/node_modules/pg-pool/README.md deleted file mode 100644 index a02fa32..0000000 --- a/node_modules/pg-pool/README.md +++ /dev/null @@ -1,351 +0,0 @@ -# pg-pool -[![Build Status](https://travis-ci.org/brianc/node-pg-pool.svg?branch=master)](https://travis-ci.org/brianc/node-pg-pool) - -A connection pool for node-postgres - -## install -```sh -npm i pg-pool pg -``` - -## use - -### create - -to use pg-pool you must first create an instance of a pool - -```js -var Pool = require('pg-pool') - -// by default the pool uses the same -// configuration as whatever `pg` version you have installed -var pool = new Pool() - -// you can pass properties to the pool -// these properties are passed unchanged to both the node-postgres Client constructor -// and the node-pool (https://github.com/coopernurse/node-pool) constructor -// allowing you to fully configure the behavior of both -var pool2 = new Pool({ - database: 'postgres', - user: 'brianc', - password: 'secret!', - port: 5432, - ssl: true, - max: 20, // set pool max size to 20 - min: 4, // set min pool size to 4 - idleTimeoutMillis: 1000, // close idle clients after 1 second - connectionTimeoutMillis: 1000, // return an error after 1 second if connection could not be established -}) - -//you can supply a custom client constructor -//if you want to use the native postgres client -var NativeClient = require('pg').native.Client -var nativePool = new Pool({ Client: NativeClient }) - -//you can even pool pg-native clients directly -var PgNativeClient = require('pg-native') -var pgNativePool = new Pool({ Client: PgNativeClient }) -``` - -##### Note: -The Pool constructor does not support passing a Database URL as the parameter. To use pg-pool on heroku, for example, you need to parse the URL into a config object. Here is an example of how to parse a Database URL. - -```js -const Pool = require('pg-pool'); -const url = require('url') - -const params = url.parse(process.env.DATABASE_URL); -const auth = params.auth.split(':'); - -const config = { - user: auth[0], - password: auth[1], - host: params.hostname, - port: params.port, - database: params.pathname.split('/')[1], - ssl: true -}; - -const pool = new Pool(config); - -/* - Transforms, 'progres://DBuser:secret@DBHost:#####/myDB', into - config = { - user: 'DBuser', - password: 'secret', - host: 'DBHost', - port: '#####', - database: 'myDB', - ssl: true - } -*/ -``` - -### acquire clients with a promise - -pg-pool supports a fully promise-based api for acquiring clients - -```js -var pool = new Pool() -pool.connect().then(client => { - client.query('select $1::text as name', ['pg-pool']).then(res => { - client.release() - console.log('hello from', res.rows[0].name) - }) - .catch(e => { - client.release() - console.error('query error', e.message, e.stack) - }) -}) -``` - -### plays nice with async/await - -this ends up looking much nicer if you're using [co](https://github.com/tj/co) or async/await: - -```js -// with async/await -(async () => { - var pool = new Pool() - var client = await pool.connect() - try { - var result = await client.query('select $1::text as name', ['brianc']) - console.log('hello from', result.rows[0]) - } finally { - client.release() - } -})().catch(e => console.error(e.message, e.stack)) - -// with co -co(function * () { - var client = yield pool.connect() - try { - var result = yield client.query('select $1::text as name', ['brianc']) - console.log('hello from', result.rows[0]) - } finally { - client.release() - } -}).catch(e => console.error(e.message, e.stack)) -``` - -### your new favorite helper method - -because its so common to just run a query and return the client to the pool afterward pg-pool has this built-in: - -```js -var pool = new Pool() -var time = await pool.query('SELECT NOW()') -var name = await pool.query('select $1::text as name', ['brianc']) -console.log(name.rows[0].name, 'says hello at', time.rows[0].name) -``` - -you can also use a callback here if you'd like: - -```js -var pool = new Pool() -pool.query('SELECT $1::text as name', ['brianc'], function (err, res) { - console.log(res.rows[0].name) // brianc -}) -``` - -__pro tip:__ unless you need to run a transaction (which requires a single client for multiple queries) or you -have some other edge case like [streaming rows](https://github.com/brianc/node-pg-query-stream) or using a [cursor](https://github.com/brianc/node-pg-cursor) -you should almost always just use `pool.query`. Its easy, it does the right thing :tm:, and wont ever forget to return -clients back to the pool after the query is done. - -### drop-in backwards compatible - -pg-pool still and will always support the traditional callback api for acquiring a client. This is the exact API node-postgres has shipped with for years: - -```js -var pool = new Pool() -pool.connect((err, client, done) => { - if (err) return done(err) - - client.query('SELECT $1::text as name', ['pg-pool'], (err, res) => { - done() - if (err) { - return console.error('query error', e.message, e.stack) - } - console.log('hello from', res.rows[0].name) - }) -}) -``` - -### shut it down - -When you are finished with the pool if all the clients are idle the pool will close them after `config.idleTimeoutMillis` and your app -will shutdown gracefully. If you don't want to wait for the timeout you can end the pool as follows: - -```js -var pool = new Pool() -var client = await pool.connect() -console.log(await client.query('select now()')) -client.release() -await pool.end() -``` - -### a note on instances - -The pool should be a __long-lived object__ in your application. Generally you'll want to instantiate one pool when your app starts up and use the same instance of the pool throughout the lifetime of your application. If you are frequently creating a new pool within your code you likely don't have your pool initialization code in the correct place. Example: - -```js -// assume this is a file in your program at ./your-app/lib/db.js - -// correct usage: create the pool and let it live -// 'globally' here, controlling access to it through exported methods -var pool = new pg.Pool() - -// this is the right way to export the query method -module.exports.query = (text, values) => { - console.log('query:', text, values) - return pool.query(text, values) -} - -// this would be the WRONG way to export the connect method -module.exports.connect = () => { - // notice how we would be creating a pool instance here - // every time we called 'connect' to get a new client? - // that's a bad thing & results in creating an unbounded - // number of pools & therefore connections - var aPool = new pg.Pool() - return aPool.connect() -} -``` - -### events - -Every instance of a `Pool` is an event emitter. These instances emit the following events: - -#### error - -Emitted whenever an idle client in the pool encounters an error. This is common when your PostgreSQL server shuts down, reboots, or a network partition otherwise causes it to become unavailable while your pool has connected clients. - -Example: - -```js -const Pool = require('pg-pool') -const pool = new Pool() - -// attach an error handler to the pool for when a connected, idle client -// receives an error by being disconnected, etc -pool.on('error', function(error, client) { - // handle this in the same way you would treat process.on('uncaughtException') - // it is supplied the error as well as the idle client which received the error -}) -``` - -#### connect - -Fired whenever the pool creates a __new__ `pg.Client` instance and successfully connects it to the backend. - -Example: - -```js -const Pool = require('pg-pool') -const pool = new Pool() - -var count = 0 - -pool.on('connect', client => { - client.count = count++ -}) - -pool - .connect() - .then(client => { - return client - .query('SELECT $1::int AS "clientCount"', [client.count]) - .then(res => console.log(res.rows[0].clientCount)) // outputs 0 - .then(() => client) - }) - .then(client => client.release()) - -``` - -#### acquire - -Fired whenever the a client is acquired from the pool - -Example: - -This allows you to count the number of clients which have ever been acquired from the pool. - -```js -var Pool = require('pg-pool') -var pool = new Pool() - -var acquireCount = 0 -pool.on('acquire', function (client) { - acquireCount++ -}) - -var connectCount = 0 -pool.on('connect', function () { - connectCount++ -}) - -for (var i = 0; i < 200; i++) { - pool.query('SELECT NOW()') -} - -setTimeout(function () { - console.log('connect count:', connectCount) // output: connect count: 10 - console.log('acquire count:', acquireCount) // output: acquire count: 200 -}, 100) - -``` - -### environment variables - -pg-pool & node-postgres support some of the same environment variables as `psql` supports. The most common are: - -``` -PGDATABASE=my_db -PGUSER=username -PGPASSWORD="my awesome password" -PGPORT=5432 -PGSSLMODE=require -``` - -Usually I will export these into my local environment via a `.env` file with environment settings or export them in `~/.bash_profile` or something similar. This way I get configurability which works with both the postgres suite of tools (`psql`, `pg_dump`, `pg_restore`) and node, I can vary the environment variables locally and in production, and it supports the concept of a [12-factor app](http://12factor.net/) out of the box. - -## bring your own promise - -In versions of node `<=0.12.x` there is no native promise implementation available globally. You can polyfill the promise globally like this: - -```js -// first run `npm install promise-polyfill --save -if (typeof Promise == 'undefined') { - global.Promise = require('promise-polyfill') -} -``` - -You can use any other promise implementation you'd like. The pool also allows you to configure the promise implementation on a per-pool level: - -```js -var bluebirdPool = new Pool({ - Promise: require('bluebird') -}) -``` - -__please note:__ in node `<=0.12.x` the pool will throw if you do not provide a promise constructor in one of the two ways mentioned above. In node `>=4.0.0` the pool will use the native promise implementation by default; however, the two methods above still allow you to "bring your own." - -## tests - -To run tests clone the repo, `npm i` in the working dir, and then run `npm test` - -## contributions - -I love contributions. Please make sure they have tests, and submit a PR. If you're not sure if the issue is worth it or will be accepted it never hurts to open an issue to begin the conversation. If you're interested in keeping up with node-postgres releated stuff, you can follow me on twitter at [@briancarlson](https://twitter.com/briancarlson) - I generally announce any noteworthy updates there. - -## license - -The MIT License (MIT) -Copyright (c) 2016 Brian M. Carlson - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/pg-pool/index.js b/node_modules/pg-pool/index.js deleted file mode 100644 index e93cc96..0000000 --- a/node_modules/pg-pool/index.js +++ /dev/null @@ -1,366 +0,0 @@ -'use strict' -const EventEmitter = require('events').EventEmitter - -const NOOP = function () { } - -const removeWhere = (list, predicate) => { - const i = list.findIndex(predicate) - - return i === -1 - ? undefined - : list.splice(i, 1)[0] -} - -class IdleItem { - constructor (client, idleListener, timeoutId) { - this.client = client - this.idleListener = idleListener - this.timeoutId = timeoutId - } -} - -class PendingItem { - constructor (callback) { - this.callback = callback - } -} - -function throwOnRelease () { - throw new Error('Release called on client which has already been released to the pool.') -} - -function promisify (Promise, callback) { - if (callback) { - return { callback: callback, result: undefined } - } - let rej - let res - const cb = function (err, client) { - err ? rej(err) : res(client) - } - const result = new Promise(function (resolve, reject) { - res = resolve - rej = reject - }) - return { callback: cb, result: result } -} - -function makeIdleListener (pool, client) { - return function idleListener (err) { - err.client = client - - client.removeListener('error', idleListener) - client.on('error', () => { - pool.log('additional client error after disconnection due to error', err) - }) - pool._remove(client) - // TODO - document that once the pool emits an error - // the client has already been closed & purged and is unusable - pool.emit('error', err, client) - } -} - -class Pool extends EventEmitter { - constructor (options, Client) { - super() - this.options = Object.assign({}, options) - this.options.max = this.options.max || this.options.poolSize || 10 - this.log = this.options.log || function () { } - this.Client = this.options.Client || Client || require('pg').Client - this.Promise = this.options.Promise || global.Promise - - if (typeof this.options.idleTimeoutMillis === 'undefined') { - this.options.idleTimeoutMillis = 10000 - } - - this._clients = [] - this._idle = [] - this._pendingQueue = [] - this._endCallback = undefined - this.ending = false - this.ended = false - } - - _isFull () { - return this._clients.length >= this.options.max - } - - _pulseQueue () { - this.log('pulse queue') - if (this.ended) { - this.log('pulse queue ended') - return - } - if (this.ending) { - this.log('pulse queue on ending') - if (this._idle.length) { - this._idle.slice().map(item => { - this._remove(item.client) - }) - } - if (!this._clients.length) { - this.ended = true - this._endCallback() - } - return - } - // if we don't have any waiting, do nothing - if (!this._pendingQueue.length) { - this.log('no queued requests') - return - } - // if we don't have any idle clients and we have no more room do nothing - if (!this._idle.length && this._isFull()) { - return - } - const pendingItem = this._pendingQueue.shift() - if (this._idle.length) { - const idleItem = this._idle.pop() - clearTimeout(idleItem.timeoutId) - const client = idleItem.client - const idleListener = idleItem.idleListener - - return this._acquireClient(client, pendingItem, idleListener, false) - } - if (!this._isFull()) { - return this.newClient(pendingItem) - } - throw new Error('unexpected condition') - } - - _remove (client) { - const removed = removeWhere( - this._idle, - item => item.client === client - ) - - if (removed !== undefined) { - clearTimeout(removed.timeoutId) - } - - this._clients = this._clients.filter(c => c !== client) - client.end() - this.emit('remove', client) - } - - connect (cb) { - if (this.ending) { - const err = new Error('Cannot use a pool after calling end on the pool') - return cb ? cb(err) : this.Promise.reject(err) - } - - const response = promisify(this.Promise, cb) - const result = response.result - - // if we don't have to connect a new client, don't do so - if (this._clients.length >= this.options.max || this._idle.length) { - // if we have idle clients schedule a pulse immediately - if (this._idle.length) { - process.nextTick(() => this._pulseQueue()) - } - - if (!this.options.connectionTimeoutMillis) { - this._pendingQueue.push(new PendingItem(response.callback)) - return result - } - - const queueCallback = (err, res, done) => { - clearTimeout(tid) - response.callback(err, res, done) - } - - const pendingItem = new PendingItem(queueCallback) - - // set connection timeout on checking out an existing client - const tid = setTimeout(() => { - // remove the callback from pending waiters because - // we're going to call it with a timeout error - removeWhere(this._pendingQueue, (i) => i.callback === queueCallback) - pendingItem.timedOut = true - response.callback(new Error('timeout exceeded when trying to connect')) - }, this.options.connectionTimeoutMillis) - - this._pendingQueue.push(pendingItem) - return result - } - - this.newClient(new PendingItem(response.callback)) - - return result - } - - newClient (pendingItem) { - const client = new this.Client(this.options) - this._clients.push(client) - const idleListener = makeIdleListener(this, client) - - this.log('checking client timeout') - - // connection timeout logic - let tid - let timeoutHit = false - if (this.options.connectionTimeoutMillis) { - tid = setTimeout(() => { - this.log('ending client due to timeout') - timeoutHit = true - // force kill the node driver, and let libpq do its teardown - client.connection ? client.connection.stream.destroy() : client.end() - }, this.options.connectionTimeoutMillis) - } - - this.log('connecting new client') - client.connect((err) => { - if (tid) { - clearTimeout(tid) - } - client.on('error', idleListener) - if (err) { - this.log('client failed to connect', err) - // remove the dead client from our list of clients - this._clients = this._clients.filter(c => c !== client) - if (timeoutHit) { - err.message = 'Connection terminated due to connection timeout' - } - - // this client won’t be released, so move on immediately - this._pulseQueue() - - if (!pendingItem.timedOut) { - pendingItem.callback(err, undefined, NOOP) - } - } else { - this.log('new client connected') - - return this._acquireClient(client, pendingItem, idleListener, true) - } - }) - } - - // acquire a client for a pending work item - _acquireClient (client, pendingItem, idleListener, isNew) { - if (isNew) { - this.emit('connect', client) - } - - this.emit('acquire', client) - - let released = false - - client.release = (err) => { - if (released) { - throwOnRelease() - } - - released = true - this._release(client, idleListener, err) - } - - client.removeListener('error', idleListener) - - if (!pendingItem.timedOut) { - if (isNew && this.options.verify) { - this.options.verify(client, (err) => { - if (err) { - client.release(err) - return pendingItem.callback(err, undefined, NOOP) - } - - pendingItem.callback(undefined, client, client.release) - }) - } else { - pendingItem.callback(undefined, client, client.release) - } - } else { - if (isNew && this.options.verify) { - this.options.verify(client, client.release) - } else { - client.release() - } - } - } - - // release a client back to the poll, include an error - // to remove it from the pool - _release (client, idleListener, err) { - client.on('error', idleListener) - - if (err || this.ending) { - this._remove(client) - this._pulseQueue() - return - } - - // idle timeout - let tid - if (this.options.idleTimeoutMillis) { - tid = setTimeout(() => { - this.log('remove idle client') - this._remove(client) - }, this.options.idleTimeoutMillis) - } - - this._idle.push(new IdleItem(client, idleListener, tid)) - this._pulseQueue() - } - - query (text, values, cb) { - // guard clause against passing a function as the first parameter - if (typeof text === 'function') { - const response = promisify(this.Promise, text) - setImmediate(function () { - return response.callback(new Error('Passing a function as the first parameter to pool.query is not supported')) - }) - return response.result - } - - // allow plain text query without values - if (typeof values === 'function') { - cb = values - values = undefined - } - const response = promisify(this.Promise, cb) - cb = response.callback - this.connect((err, client) => { - if (err) { - return cb(err) - } - this.log('dispatching query') - client.query(text, values, (err, res) => { - this.log('query dispatched') - client.release(err) - if (err) { - return cb(err) - } else { - return cb(undefined, res) - } - }) - }) - return response.result - } - - end (cb) { - this.log('ending') - if (this.ending) { - const err = new Error('Called end on pool more than once') - return cb ? cb(err) : this.Promise.reject(err) - } - this.ending = true - const promised = promisify(this.Promise, cb) - this._endCallback = promised.callback - this._pulseQueue() - return promised.result - } - - get waitingCount () { - return this._pendingQueue.length - } - - get idleCount () { - return this._idle.length - } - - get totalCount () { - return this._clients.length - } -} -module.exports = Pool diff --git a/node_modules/pg-pool/package.json b/node_modules/pg-pool/package.json deleted file mode 100644 index 2553242..0000000 --- a/node_modules/pg-pool/package.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "_from": "pg-pool@^2.0.4", - "_id": "pg-pool@2.0.7", - "_inBundle": false, - "_integrity": "sha512-UiJyO5B9zZpu32GSlP0tXy8J2NsJ9EFGFfz5v6PSbdz/1hBLX1rNiiy5+mAm5iJJYwfCv4A0EBcQLGWwjbpzZw==", - "_location": "/pg-pool", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "pg-pool@^2.0.4", - "name": "pg-pool", - "escapedName": "pg-pool", - "rawSpec": "^2.0.4", - "saveSpec": null, - "fetchSpec": "^2.0.4" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-2.0.7.tgz", - "_shasum": "f14ecab83507941062c313df23f6adcd9fd0ce54", - "_spec": "pg-pool@^2.0.4", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Brian M. Carlson" - }, - "bugs": { - "url": "https://github.com/brianc/node-pg-pool/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Connection pool for node-postgres", - "devDependencies": { - "bluebird": "3.4.1", - "co": "4.6.0", - "expect.js": "0.3.1", - "lodash": "^4.17.11", - "mocha": "^5.2.0", - "pg": "*", - "pg-cursor": "^1.3.0", - "standard": "7.1.2", - "standard-format": "^2.2.4" - }, - "directories": { - "test": "test" - }, - "homepage": "https://github.com/brianc/node-pg-pool#readme", - "keywords": [ - "pg", - "postgres", - "pool", - "database" - ], - "license": "MIT", - "main": "index.js", - "name": "pg-pool", - "peerDependencies": { - "pg": ">5.0" - }, - "repository": { - "type": "git", - "url": "git://github.com/brianc/node-pg-pool.git" - }, - "scripts": { - "test": " node_modules/.bin/mocha && node_modules/.bin/standard" - }, - "version": "2.0.7" -} diff --git a/node_modules/pg-pool/test/bring-your-own-promise.js b/node_modules/pg-pool/test/bring-your-own-promise.js deleted file mode 100644 index f7fe3bd..0000000 --- a/node_modules/pg-pool/test/bring-your-own-promise.js +++ /dev/null @@ -1,36 +0,0 @@ -'use strict' -const co = require('co') -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it -const BluebirdPromise = require('bluebird') - -const Pool = require('../') - -const checkType = promise => { - expect(promise).to.be.a(BluebirdPromise) - return promise.catch(e => undefined) -} - -describe('Bring your own promise', function () { - it('uses supplied promise for operations', co.wrap(function * () { - const pool = new Pool({ Promise: BluebirdPromise }) - const client1 = yield checkType(pool.connect()) - client1.release() - yield checkType(pool.query('SELECT NOW()')) - const client2 = yield checkType(pool.connect()) - // TODO - make sure pg supports BYOP as well - client2.release() - yield checkType(pool.end()) - })) - - it('uses promises in errors', co.wrap(function * () { - const pool = new Pool({ Promise: BluebirdPromise, port: 48484 }) - yield checkType(pool.connect()) - yield checkType(pool.end()) - yield checkType(pool.connect()) - yield checkType(pool.query()) - yield checkType(pool.end()) - })) -}) diff --git a/node_modules/pg-pool/test/connection-strings.js b/node_modules/pg-pool/test/connection-strings.js deleted file mode 100644 index 7013f28..0000000 --- a/node_modules/pg-pool/test/connection-strings.js +++ /dev/null @@ -1,30 +0,0 @@ -const expect = require('expect.js') -const describe = require('mocha').describe -const it = require('mocha').it -const Pool = require('../') - -describe('Connection strings', function () { - it('pool delegates connectionString property to client', function (done) { - const connectionString = 'postgres://foo:bar@baz:1234/xur' - - const pool = new Pool({ - // use a fake client so we can check we're passed the connectionString - Client: function (args) { - expect(args.connectionString).to.equal(connectionString) - return { - connect: function (cb) { - cb(new Error('testing')) - }, - on: function () { } - } - }, - connectionString: connectionString - }) - - pool.connect(function (err, client) { - expect(err).to.not.be(undefined) - done() - }) - }) -}) - diff --git a/node_modules/pg-pool/test/connection-timeout.js b/node_modules/pg-pool/test/connection-timeout.js deleted file mode 100644 index 8151354..0000000 --- a/node_modules/pg-pool/test/connection-timeout.js +++ /dev/null @@ -1,224 +0,0 @@ -'use strict' -const net = require('net') -const co = require('co') -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it -const before = require('mocha').before -const after = require('mocha').after - -const Pool = require('../') - -describe('connection timeout', () => { - const connectionFailure = new Error('Temporary connection failure') - - before((done) => { - this.server = net.createServer((socket) => { - socket.on('data', () => { - // discard any buffered data or the server wont terminate - }) - }) - - this.server.listen(() => { - this.port = this.server.address().port - done() - }) - }) - - after((done) => { - this.server.close(done) - }) - - it('should callback with an error if timeout is passed', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 10, port: this.port }) - pool.connect((err, client, release) => { - expect(err).to.be.an(Error) - expect(err.message).to.contain('timeout') - expect(client).to.equal(undefined) - expect(pool.idleCount).to.equal(0) - done() - }) - }) - - it('should reject promise with an error if timeout is passed', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 10, port: this.port }) - pool.connect().catch(err => { - expect(err).to.be.an(Error) - expect(err.message).to.contain('timeout') - expect(pool.idleCount).to.equal(0) - done() - }) - }) - - it('should handle multiple timeouts', co.wrap(function * () { - const errors = [] - const pool = new Pool({ connectionTimeoutMillis: 1, port: this.port }) - for (var i = 0; i < 15; i++) { - try { - yield pool.connect() - } catch (e) { - errors.push(e) - } - } - expect(errors).to.have.length(15) - }.bind(this))) - - it('should timeout on checkout of used connection', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 100, max: 1 }) - pool.connect((err, client, release) => { - expect(err).to.be(undefined) - expect(client).to.not.be(undefined) - pool.connect((err, client) => { - expect(err).to.be.an(Error) - expect(client).to.be(undefined) - release() - pool.end(done) - }) - }) - }) - - it('should not break further pending checkouts on a timeout', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 200, max: 1 }) - pool.connect((err, client, releaseOuter) => { - expect(err).to.be(undefined) - - pool.connect((err, client) => { - expect(err).to.be.an(Error) - expect(client).to.be(undefined) - releaseOuter() - }) - - setTimeout(() => { - pool.connect((err, client, releaseInner) => { - expect(err).to.be(undefined) - expect(client).to.not.be(undefined) - releaseInner() - pool.end(done) - }) - }, 100) - }) - }) - - it('should timeout on query if all clients are busy', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 100, max: 1 }) - pool.connect((err, client, release) => { - expect(err).to.be(undefined) - expect(client).to.not.be(undefined) - pool.query('select now()', (err, result) => { - expect(err).to.be.an(Error) - expect(result).to.be(undefined) - release() - pool.end(done) - }) - }) - }) - - it('should recover from timeout errors', (done) => { - const pool = new Pool({ connectionTimeoutMillis: 100, max: 1 }) - pool.connect((err, client, release) => { - expect(err).to.be(undefined) - expect(client).to.not.be(undefined) - pool.query('select now()', (err, result) => { - expect(err).to.be.an(Error) - expect(result).to.be(undefined) - release() - pool.query('select $1::text as name', ['brianc'], (err, res) => { - expect(err).to.be(undefined) - expect(res.rows).to.have.length(1) - pool.end(done) - }) - }) - }) - }) - - it('continues processing after a connection failure', (done) => { - const Client = require('pg').Client - const orgConnect = Client.prototype.connect - let called = false - - Client.prototype.connect = function (cb) { - // Simulate a failure on first call - if (!called) { - called = true - - return setTimeout(() => { - cb(connectionFailure) - }, 100) - } - // And pass-through the second call - orgConnect.call(this, cb) - } - - const pool = new Pool({ - Client: Client, - connectionTimeoutMillis: 1000, - max: 1 - }) - - pool.connect((err, client, release) => { - expect(err).to.be(connectionFailure) - - pool.query('select $1::text as name', ['brianc'], (err, res) => { - expect(err).to.be(undefined) - expect(res.rows).to.have.length(1) - pool.end(done) - }) - }) - }) - - it('releases newly connected clients if the queued already timed out', (done) => { - const Client = require('pg').Client - - const orgConnect = Client.prototype.connect - - let connection = 0 - - Client.prototype.connect = function (cb) { - // Simulate a failure on first call - if (connection === 0) { - connection++ - - return setTimeout(() => { - cb(connectionFailure) - }, 300) - } - - // And second connect taking > connection timeout - if (connection === 1) { - connection++ - - return setTimeout(() => { - orgConnect.call(this, cb) - }, 1000) - } - - orgConnect.call(this, cb) - } - - const pool = new Pool({ - Client: Client, - connectionTimeoutMillis: 1000, - max: 1 - }) - - // Direct connect - pool.connect((err, client, release) => { - expect(err).to.be(connectionFailure) - }) - - // Queued - let called = 0 - pool.connect((err, client, release) => { - // Verify the callback is only called once - expect(called++).to.be(0) - expect(err).to.be.an(Error) - - pool.query('select $1::text as name', ['brianc'], (err, res) => { - expect(err).to.be(undefined) - expect(res.rows).to.have.length(1) - pool.end(done) - }) - }) - }) -}) diff --git a/node_modules/pg-pool/test/ending.js b/node_modules/pg-pool/test/ending.js deleted file mode 100644 index 1956b13..0000000 --- a/node_modules/pg-pool/test/ending.js +++ /dev/null @@ -1,34 +0,0 @@ -'use strict' -const co = require('co') -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('pool ending', () => { - it('ends without being used', (done) => { - const pool = new Pool() - pool.end(done) - }) - - it('ends with a promise', () => { - return new Pool().end() - }) - - it('ends with clients', co.wrap(function * () { - const pool = new Pool() - const res = yield pool.query('SELECT $1::text as name', ['brianc']) - expect(res.rows[0].name).to.equal('brianc') - return pool.end() - })) - - it('allows client to finish', co.wrap(function * () { - const pool = new Pool() - const query = pool.query('SELECT $1::text as name', ['brianc']) - yield pool.end() - const res = yield query - expect(res.rows[0].name).to.equal('brianc') - })) -}) diff --git a/node_modules/pg-pool/test/error-handling.js b/node_modules/pg-pool/test/error-handling.js deleted file mode 100644 index 1e41668..0000000 --- a/node_modules/pg-pool/test/error-handling.js +++ /dev/null @@ -1,229 +0,0 @@ -'use strict' -const net = require('net') -const co = require('co') -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('pool error handling', function () { - it('Should complete these queries without dying', function (done) { - const pool = new Pool() - let errors = 0 - let shouldGet = 0 - function runErrorQuery () { - shouldGet++ - return new Promise(function (resolve, reject) { - pool.query("SELECT 'asd'+1 ").then(function (res) { - reject(res) // this should always error - }).catch(function (err) { - errors++ - resolve(err) - }) - }) - } - const ps = [] - for (let i = 0; i < 5; i++) { - ps.push(runErrorQuery()) - } - Promise.all(ps).then(function () { - expect(shouldGet).to.eql(errors) - pool.end(done) - }) - }) - - describe('calling release more than once', () => { - it('should throw each time', co.wrap(function * () { - const pool = new Pool() - const client = yield pool.connect() - client.release() - expect(() => client.release()).to.throwError() - expect(() => client.release()).to.throwError() - return yield pool.end() - })) - - it('should throw each time with callbacks', function (done) { - const pool = new Pool() - - pool.connect(function (err, client, clientDone) { - expect(err).not.to.be.an(Error) - clientDone() - - expect(() => clientDone()).to.throwError() - expect(() => clientDone()).to.throwError() - - pool.end(done) - }) - }) - }) - - describe('calling connect after end', () => { - it('should return an error', function * () { - const pool = new Pool() - const res = yield pool.query('SELECT $1::text as name', ['hi']) - expect(res.rows[0].name).to.equal('hi') - const wait = pool.end() - pool.query('select now()') - yield wait - expect(() => pool.query('select now()')).to.reject() - }) - }) - - describe('using an ended pool', () => { - it('rejects all additional promises', (done) => { - const pool = new Pool() - const promises = [] - pool.end() - .then(() => { - const squash = promise => promise.catch(e => 'okay!') - promises.push(squash(pool.connect())) - promises.push(squash(pool.query('SELECT NOW()'))) - promises.push(squash(pool.end())) - Promise.all(promises).then(res => { - expect(res).to.eql(['okay!', 'okay!', 'okay!']) - done() - }) - }) - }) - - it('returns an error on all additional callbacks', (done) => { - const pool = new Pool() - pool.end(() => { - pool.query('SELECT *', (err) => { - expect(err).to.be.an(Error) - pool.connect((err) => { - expect(err).to.be.an(Error) - pool.end((err) => { - expect(err).to.be.an(Error) - done() - }) - }) - }) - }) - }) - }) - - describe('error from idle client', () => { - it('removes client from pool', co.wrap(function * () { - const pool = new Pool() - const client = yield pool.connect() - expect(pool.totalCount).to.equal(1) - expect(pool.waitingCount).to.equal(0) - expect(pool.idleCount).to.equal(0) - client.release() - yield new Promise((resolve, reject) => { - process.nextTick(() => { - let poolError - pool.once('error', (err) => { - poolError = err - }) - - let clientError - client.once('error', (err) => { - clientError = err - }) - - client.emit('error', new Error('expected')) - - expect(clientError.message).to.equal('expected') - expect(poolError.message).to.equal('expected') - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(0) - pool.end().then(resolve, reject) - }) - }) - })) - }) - - describe('error from in-use client', () => { - it('keeps the client in the pool', co.wrap(function * () { - const pool = new Pool() - const client = yield pool.connect() - expect(pool.totalCount).to.equal(1) - expect(pool.waitingCount).to.equal(0) - expect(pool.idleCount).to.equal(0) - - yield new Promise((resolve, reject) => { - process.nextTick(() => { - let poolError - pool.once('error', (err) => { - poolError = err - }) - - let clientError - client.once('error', (err) => { - clientError = err - }) - - client.emit('error', new Error('expected')) - - expect(clientError.message).to.equal('expected') - expect(poolError).not.to.be.ok() - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(1) - client.release() - pool.end().then(resolve, reject) - }) - }) - })) - }) - - describe('passing a function to pool.query', () => { - it('calls back with error', (done) => { - const pool = new Pool() - console.log('passing fn to query') - pool.query((err) => { - expect(err).to.be.an(Error) - pool.end(done) - }) - }) - }) - - describe('pool with lots of errors', () => { - it('continues to work and provide new clients', co.wrap(function * () { - const pool = new Pool({ max: 1 }) - const errors = [] - for (var i = 0; i < 20; i++) { - try { - yield pool.query('invalid sql') - } catch (err) { - errors.push(err) - } - } - expect(errors).to.have.length(20) - expect(pool.idleCount).to.equal(0) - expect(pool.query).to.be.a(Function) - const res = yield pool.query('SELECT $1::text as name', ['brianc']) - expect(res.rows).to.have.length(1) - expect(res.rows[0].name).to.equal('brianc') - return pool.end() - })) - }) - - it('should continue with queued items after a connection failure', (done) => { - const closeServer = net.createServer((socket) => { - socket.destroy() - }).unref() - - closeServer.listen(() => { - const pool = new Pool({ max: 1, port: closeServer.address().port }) - pool.connect((err) => { - expect(err).to.be.an(Error) - if (err.errno) { - expect(err.errno).to.be('ECONNRESET') - } - }) - pool.connect((err) => { - expect(err).to.be.an(Error) - if (err.errno) { - expect(err.errno).to.be('ECONNRESET') - } - closeServer.close(() => { - pool.end(done) - }) - }) - }) - }) -}) diff --git a/node_modules/pg-pool/test/events.js b/node_modules/pg-pool/test/events.js deleted file mode 100644 index a2da481..0000000 --- a/node_modules/pg-pool/test/events.js +++ /dev/null @@ -1,86 +0,0 @@ -'use strict' - -const expect = require('expect.js') -const EventEmitter = require('events').EventEmitter -const describe = require('mocha').describe -const it = require('mocha').it -const Pool = require('../') - -describe('events', function () { - it('emits connect before callback', function (done) { - const pool = new Pool() - let emittedClient = false - pool.on('connect', function (client) { - emittedClient = client - }) - - pool.connect(function (err, client, release) { - if (err) return done(err) - release() - pool.end() - expect(client).to.be(emittedClient) - done() - }) - }) - - it('emits "connect" only with a successful connection', function () { - const pool = new Pool({ - // This client will always fail to connect - Client: mockClient({ - connect: function (cb) { - process.nextTick(() => { - cb(new Error('bad news')) - }) - } - }) - }) - pool.on('connect', function () { - throw new Error('should never get here') - }) - return pool.connect().catch(e => expect(e.message).to.equal('bad news')) - }) - - it('emits acquire every time a client is acquired', function (done) { - const pool = new Pool() - let acquireCount = 0 - pool.on('acquire', function (client) { - expect(client).to.be.ok() - acquireCount++ - }) - for (let i = 0; i < 10; i++) { - pool.connect(function (err, client, release) { - if (err) return done(err) - release() - }) - pool.query('SELECT now()') - } - setTimeout(function () { - expect(acquireCount).to.be(20) - pool.end(done) - }, 100) - }) - - it('emits error and client if an idle client in the pool hits an error', function (done) { - const pool = new Pool() - pool.connect(function (err, client) { - expect(err).to.equal(undefined) - client.release() - setImmediate(function () { - client.emit('error', new Error('problem')) - }) - pool.once('error', function (err, errClient) { - expect(err.message).to.equal('problem') - expect(errClient).to.equal(client) - done() - }) - }) - }) -}) - -function mockClient (methods) { - return function () { - const client = new EventEmitter() - Object.assign(client, methods) - return client - } -} diff --git a/node_modules/pg-pool/test/idle-timeout.js b/node_modules/pg-pool/test/idle-timeout.js deleted file mode 100644 index a24ab7b..0000000 --- a/node_modules/pg-pool/test/idle-timeout.js +++ /dev/null @@ -1,79 +0,0 @@ -'use strict' -const co = require('co') -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -const wait = time => new Promise((resolve) => setTimeout(resolve, time)) - -describe('idle timeout', () => { - it('should timeout and remove the client', (done) => { - const pool = new Pool({ idleTimeoutMillis: 10 }) - pool.query('SELECT NOW()') - pool.on('remove', () => { - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(0) - done() - }) - }) - - it('times out and removes clients when others are also removed', co.wrap(function * () { - const pool = new Pool({ idleTimeoutMillis: 10 }) - const clientA = yield pool.connect() - const clientB = yield pool.connect() - clientA.release() - clientB.release(new Error()) - - const removal = new Promise((resolve) => { - pool.on('remove', () => { - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(0) - resolve() - }) - }) - - const timeout = wait(100).then(() => - Promise.reject(new Error('Idle timeout failed to occur'))) - - try { - yield Promise.race([removal, timeout]) - } finally { - pool.end() - } - })) - - it('can remove idle clients and recreate them', co.wrap(function * () { - const pool = new Pool({ idleTimeoutMillis: 1 }) - const results = [] - for (var i = 0; i < 20; i++) { - let query = pool.query('SELECT NOW()') - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(1) - results.push(yield query) - yield wait(2) - expect(pool.idleCount).to.equal(0) - expect(pool.totalCount).to.equal(0) - } - expect(results).to.have.length(20) - })) - - it('does not time out clients which are used', co.wrap(function * () { - const pool = new Pool({ idleTimeoutMillis: 1 }) - const results = [] - for (var i = 0; i < 20; i++) { - let client = yield pool.connect() - expect(pool.totalCount).to.equal(1) - expect(pool.idleCount).to.equal(0) - yield wait(10) - results.push(yield client.query('SELECT NOW()')) - client.release() - expect(pool.idleCount).to.equal(1) - expect(pool.totalCount).to.equal(1) - } - expect(results).to.have.length(20) - return pool.end() - })) -}) diff --git a/node_modules/pg-pool/test/index.js b/node_modules/pg-pool/test/index.js deleted file mode 100644 index 010d99c..0000000 --- a/node_modules/pg-pool/test/index.js +++ /dev/null @@ -1,229 +0,0 @@ -'use strict' -const expect = require('expect.js') -const _ = require('lodash') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('pool', function () { - describe('with callbacks', function () { - it('works totally unconfigured', function (done) { - const pool = new Pool() - pool.connect(function (err, client, release) { - if (err) return done(err) - client.query('SELECT NOW()', function (err, res) { - release() - if (err) return done(err) - expect(res.rows).to.have.length(1) - pool.end(done) - }) - }) - }) - - it('passes props to clients', function (done) { - const pool = new Pool({ binary: true }) - pool.connect(function (err, client, release) { - release() - if (err) return done(err) - expect(client.binary).to.eql(true) - pool.end(done) - }) - }) - - it('can run a query with a callback without parameters', function (done) { - const pool = new Pool() - pool.query('SELECT 1 as num', function (err, res) { - expect(res.rows[0]).to.eql({ num: 1 }) - pool.end(function () { - done(err) - }) - }) - }) - - it('can run a query with a callback', function (done) { - const pool = new Pool() - pool.query('SELECT $1::text as name', ['brianc'], function (err, res) { - expect(res.rows[0]).to.eql({ name: 'brianc' }) - pool.end(function () { - done(err) - }) - }) - }) - - it('passes connection errors to callback', function (done) { - const pool = new Pool({ port: 53922 }) - pool.query('SELECT $1::text as name', ['brianc'], function (err, res) { - expect(res).to.be(undefined) - expect(err).to.be.an(Error) - // a connection error should not polute the pool with a dead client - expect(pool.totalCount).to.equal(0) - pool.end(function (err) { - done(err) - }) - }) - }) - - it('does not pass client to error callback', function (done) { - const pool = new Pool({ port: 58242 }) - pool.connect(function (err, client, release) { - expect(err).to.be.an(Error) - expect(client).to.be(undefined) - expect(release).to.be.a(Function) - pool.end(done) - }) - }) - - it('removes client if it errors in background', function (done) { - const pool = new Pool() - pool.connect(function (err, client, release) { - release() - if (err) return done(err) - client.testString = 'foo' - setTimeout(function () { - client.emit('error', new Error('on purpose')) - }, 10) - }) - pool.on('error', function (err) { - expect(err.message).to.be('on purpose') - expect(err.client).to.not.be(undefined) - expect(err.client.testString).to.be('foo') - err.client.connection.stream.on('end', function () { - pool.end(done) - }) - }) - }) - - it('should not change given options', function (done) { - const options = { max: 10 } - const pool = new Pool(options) - pool.connect(function (err, client, release) { - release() - if (err) return done(err) - expect(options).to.eql({ max: 10 }) - pool.end(done) - }) - }) - - it('does not create promises when connecting', function (done) { - const pool = new Pool() - const returnValue = pool.connect(function (err, client, release) { - release() - if (err) return done(err) - pool.end(done) - }) - expect(returnValue).to.be(undefined) - }) - - it('does not create promises when querying', function (done) { - const pool = new Pool() - const returnValue = pool.query('SELECT 1 as num', function (err) { - pool.end(function () { - done(err) - }) - }) - expect(returnValue).to.be(undefined) - }) - - it('does not create promises when ending', function (done) { - const pool = new Pool() - const returnValue = pool.end(done) - expect(returnValue).to.be(undefined) - }) - - it('never calls callback syncronously', function (done) { - const pool = new Pool() - pool.connect((err, client) => { - if (err) throw err - client.release() - setImmediate(() => { - let called = false - pool.connect((err, client) => { - if (err) throw err - called = true - client.release() - setImmediate(() => { - pool.end(done) - }) - }) - expect(called).to.equal(false) - }) - }) - }) - }) - - describe('with promises', function () { - it('connects, queries, and disconnects', function () { - const pool = new Pool() - return pool.connect().then(function (client) { - return client.query('select $1::text as name', ['hi']).then(function (res) { - expect(res.rows).to.eql([{ name: 'hi' }]) - client.release() - return pool.end() - }) - }) - }) - - it('executes a query directly', () => { - const pool = new Pool() - return pool - .query('SELECT $1::text as name', ['hi']) - .then(res => { - expect(res.rows).to.have.length(1) - expect(res.rows[0].name).to.equal('hi') - return pool.end() - }) - }) - - it('properly pools clients', function () { - const pool = new Pool({ poolSize: 9 }) - const promises = _.times(30, function () { - return pool.connect().then(function (client) { - return client.query('select $1::text as name', ['hi']).then(function (res) { - client.release() - return res - }) - }) - }) - return Promise.all(promises).then(function (res) { - expect(res).to.have.length(30) - expect(pool.totalCount).to.be(9) - return pool.end() - }) - }) - - it('supports just running queries', function () { - const pool = new Pool({ poolSize: 9 }) - const text = 'select $1::text as name' - const values = ['hi'] - const query = { text: text, values: values } - const promises = _.times(30, () => pool.query(query)) - return Promise.all(promises).then(function (queries) { - expect(queries).to.have.length(30) - return pool.end() - }) - }) - - it('recovers from query errors', function () { - const pool = new Pool() - - const errors = [] - const promises = _.times(30, () => { - return pool.query('SELECT asldkfjasldkf') - .catch(function (e) { - errors.push(e) - }) - }) - return Promise.all(promises).then(() => { - expect(errors).to.have.length(30) - expect(pool.totalCount).to.equal(0) - expect(pool.idleCount).to.equal(0) - return pool.query('SELECT $1::text as name', ['hi']).then(function (res) { - expect(res.rows).to.eql([{ name: 'hi' }]) - return pool.end() - }) - }) - }) - }) -}) diff --git a/node_modules/pg-pool/test/logging.js b/node_modules/pg-pool/test/logging.js deleted file mode 100644 index 839603b..0000000 --- a/node_modules/pg-pool/test/logging.js +++ /dev/null @@ -1,20 +0,0 @@ -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('logging', function () { - it('logs to supplied log function if given', function () { - const messages = [] - const log = function (msg) { - messages.push(msg) - } - const pool = new Pool({ log: log }) - return pool.query('SELECT NOW()').then(function () { - expect(messages.length).to.be.greaterThan(0) - return pool.end() - }) - }) -}) diff --git a/node_modules/pg-pool/test/mocha.opts b/node_modules/pg-pool/test/mocha.opts deleted file mode 100644 index eb0ba60..0000000 --- a/node_modules/pg-pool/test/mocha.opts +++ /dev/null @@ -1,3 +0,0 @@ ---require test/setup.js ---bail ---timeout 10000 diff --git a/node_modules/pg-pool/test/setup.js b/node_modules/pg-pool/test/setup.js deleted file mode 100644 index cf75b7a..0000000 --- a/node_modules/pg-pool/test/setup.js +++ /dev/null @@ -1,10 +0,0 @@ -const crash = reason => { - process.on(reason, err => { - console.error(reason, err.stack) - process.exit(-1) - }) -} - -crash('unhandledRejection') -crash('uncaughtError') -crash('warning') diff --git a/node_modules/pg-pool/test/sizing.js b/node_modules/pg-pool/test/sizing.js deleted file mode 100644 index b310b3d..0000000 --- a/node_modules/pg-pool/test/sizing.js +++ /dev/null @@ -1,50 +0,0 @@ -const expect = require('expect.js') -const co = require('co') -const _ = require('lodash') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('pool size of 1', () => { - it('can create a single client and use it once', co.wrap(function * () { - const pool = new Pool({ max: 1 }) - expect(pool.waitingCount).to.equal(0) - const client = yield pool.connect() - const res = yield client.query('SELECT $1::text as name', ['hi']) - expect(res.rows[0].name).to.equal('hi') - client.release() - pool.end() - })) - - it('can create a single client and use it multiple times', co.wrap(function * () { - const pool = new Pool({ max: 1 }) - expect(pool.waitingCount).to.equal(0) - const client = yield pool.connect() - const wait = pool.connect() - expect(pool.waitingCount).to.equal(1) - client.release() - const client2 = yield wait - expect(client).to.equal(client2) - client2.release() - return yield pool.end() - })) - - it('can only send 1 query at a time', co.wrap(function * () { - const pool = new Pool({ max: 1 }) - - // the query text column name changed in PostgreSQL 9.2 - const versionResult = yield pool.query('SHOW server_version_num') - const version = parseInt(versionResult.rows[0].server_version_num, 10) - const queryColumn = version < 90200 ? 'current_query' : 'query' - - const queryText = 'SELECT COUNT(*) as counts FROM pg_stat_activity WHERE ' + queryColumn + ' = $1' - const queries = _.times(20, () => - pool.query(queryText, [queryText])) - const results = yield Promise.all(queries) - const counts = results.map(res => parseInt(res.rows[0].counts, 10)) - expect(counts).to.eql(_.times(20, i => 1)) - return yield pool.end() - })) -}) diff --git a/node_modules/pg-pool/test/submittable.js b/node_modules/pg-pool/test/submittable.js deleted file mode 100644 index 7a1574d..0000000 --- a/node_modules/pg-pool/test/submittable.js +++ /dev/null @@ -1,19 +0,0 @@ -'use strict' -const Cursor = require('pg-cursor') -const expect = require('expect.js') -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('submittle', () => { - it('is returned from the query method', false, (done) => { - const pool = new Pool() - const cursor = pool.query(new Cursor('SELECT * from generate_series(0, 1000)')) - cursor.read((err, rows) => { - expect(err).to.be(undefined) - expect(!!rows).to.be.ok() - cursor.close(done) - }) - }) -}) diff --git a/node_modules/pg-pool/test/verify.js b/node_modules/pg-pool/test/verify.js deleted file mode 100644 index 667dea9..0000000 --- a/node_modules/pg-pool/test/verify.js +++ /dev/null @@ -1,25 +0,0 @@ -'use strict' -const expect = require('expect.js') - -const describe = require('mocha').describe -const it = require('mocha').it - -const Pool = require('../') - -describe('verify', () => { - it('verifies a client with a callback', false, (done) => { - const pool = new Pool({ - verify: (client, cb) => { - client.release() - cb(new Error('nope')) - } - }) - - pool.connect((err, client) => { - expect(err).to.be.an(Error) - expect(err.message).to.be('nope') - pool.end() - done() - }) - }) -}) diff --git a/node_modules/pg-types/.travis.yml b/node_modules/pg-types/.travis.yml deleted file mode 100644 index dd6b033..0000000 --- a/node_modules/pg-types/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: node_js -node_js: - - '4' - - 'lts/*' - - 'node' -env: - - PGUSER=postgres diff --git a/node_modules/pg-types/Makefile b/node_modules/pg-types/Makefile deleted file mode 100644 index d7ec83d..0000000 --- a/node_modules/pg-types/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -.PHONY: publish-patch test - -test: - npm test - -patch: test - npm version patch -m "Bump version" - git push origin master --tags - npm publish - -minor: test - npm version minor -m "Bump version" - git push origin master --tags - npm publish diff --git a/node_modules/pg-types/README.md b/node_modules/pg-types/README.md deleted file mode 100644 index 54a3f2c..0000000 --- a/node_modules/pg-types/README.md +++ /dev/null @@ -1,75 +0,0 @@ -# pg-types - -This is the code that turns all the raw text from postgres into JavaScript types for [node-postgres](https://github.com/brianc/node-postgres.git) - -## use - -This module is consumed and exported from the root `pg` object of node-postgres. To access it, do the following: - -```js -var types = require('pg').types -``` - -Generally what you'll want to do is override how a specific data-type is parsed and turned into a JavaScript type. By default the PostgreSQL backend server returns everything as strings. Every data type corresponds to a unique `OID` within the server, and these `OIDs` are sent back with the query response. So, you need to match a particluar `OID` to a function you'd like to use to take the raw text input and produce a valid JavaScript object as a result. `null` values are never parsed. - -Let's do something I commonly like to do on projects: return 64-bit integers `(int8)` as JavaScript integers. Because JavaScript doesn't have support for 64-bit integers node-postgres cannot confidently parse `int8` data type results as numbers because if you have a _huge_ number it will overflow and the result you'd get back from node-postgres would not be the result in the datbase. That would be a __very bad thing__ so node-postgres just returns `int8` results as strings and leaves the parsing up to you. Let's say that you know you don't and wont ever have numbers greater than `int4` in your database, but you're tired of recieving results from the `COUNT(*)` function as strings (because that function returns `int8`). You would do this: - -```js -var types = require('pg').types -types.setTypeParser(20, function(val) { - return parseInt(val) -}) -``` - -__boom__: now you get numbers instead of strings. - -Just as another example -- not saying this is a good idea -- let's say you want to return all dates from your database as [moment](http://momentjs.com/docs/) objects. Okay, do this: - -```js -var types = require('pg').types -var moment = require('moment') -var parseFn = function(val) { - return val === null ? null : moment(val) -} -types.setTypeParser(types.builtins.TIMESTAMPTZ, parseFn) -types.setTypeParser(types.builtins.TIMESTAMP, parseFn) -``` -_note: I've never done that with my dates, and I'm not 100% sure moment can parse all the date strings returned from postgres. It's just an example!_ - -If you're thinking "gee, this seems pretty handy, but how can I get a list of all the OIDs in the database and what they correspond to?!?!?!" worry not: - -```bash -$ psql -c "select typname, oid, typarray from pg_type order by oid" -``` - -If you want to find out the OID of a specific type: - -```bash -$ psql -c "select typname, oid, typarray from pg_type where typname = 'daterange' order by oid" -``` - -:smile: - -## license - -The MIT License (MIT) - -Copyright (c) 2014 Brian M. Carlson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/pg-types/index.d.ts b/node_modules/pg-types/index.d.ts deleted file mode 100644 index 4bebcbe..0000000 --- a/node_modules/pg-types/index.d.ts +++ /dev/null @@ -1,137 +0,0 @@ -export enum TypeId { - BOOL = 16, - BYTEA = 17, - CHAR = 18, - INT8 = 20, - INT2 = 21, - INT4 = 23, - REGPROC = 24, - TEXT = 25, - OID = 26, - TID = 27, - XID = 28, - CID = 29, - JSON = 114, - XML = 142, - PG_NODE_TREE = 194, - SMGR = 210, - PATH = 602, - POLYGON = 604, - CIDR = 650, - FLOAT4 = 700, - FLOAT8 = 701, - ABSTIME = 702, - RELTIME = 703, - TINTERVAL = 704, - CIRCLE = 718, - MACADDR8 = 774, - MONEY = 790, - MACADDR = 829, - INET = 869, - ACLITEM = 1033, - BPCHAR = 1042, - VARCHAR = 1043, - DATE = 1082, - TIME = 1083, - TIMESTAMP = 1114, - TIMESTAMPTZ = 1184, - INTERVAL = 1186, - TIMETZ = 1266, - BIT = 1560, - VARBIT = 1562, - NUMERIC = 1700, - REFCURSOR = 1790, - REGPROCEDURE = 2202, - REGOPER = 2203, - REGOPERATOR = 2204, - REGCLASS = 2205, - REGTYPE = 2206, - UUID = 2950, - TXID_SNAPSHOT = 2970, - PG_LSN = 3220, - PG_NDISTINCT = 3361, - PG_DEPENDENCIES = 3402, - TSVECTOR = 3614, - TSQUERY = 3615, - GTSVECTOR = 3642, - REGCONFIG = 3734, - REGDICTIONARY = 3769, - JSONB = 3802, - REGNAMESPACE = 4089, - REGROLE = 4096 -} - -export type builtinsTypes = - 'BOOL' | - 'BYTEA' | - 'CHAR' | - 'INT8' | - 'INT2' | - 'INT4' | - 'REGPROC' | - 'TEXT' | - 'OID' | - 'TID' | - 'XID' | - 'CID' | - 'JSON' | - 'XML' | - 'PG_NODE_TREE' | - 'SMGR' | - 'PATH' | - 'POLYGON' | - 'CIDR' | - 'FLOAT4' | - 'FLOAT8' | - 'ABSTIME' | - 'RELTIME' | - 'TINTERVAL' | - 'CIRCLE' | - 'MACADDR8' | - 'MONEY' | - 'MACADDR' | - 'INET' | - 'ACLITEM' | - 'BPCHAR' | - 'VARCHAR' | - 'DATE' | - 'TIME' | - 'TIMESTAMP' | - 'TIMESTAMPTZ' | - 'INTERVAL' | - 'TIMETZ' | - 'BIT' | - 'VARBIT' | - 'NUMERIC' | - 'REFCURSOR' | - 'REGPROCEDURE' | - 'REGOPER' | - 'REGOPERATOR' | - 'REGCLASS' | - 'REGTYPE' | - 'UUID' | - 'TXID_SNAPSHOT' | - 'PG_LSN' | - 'PG_NDISTINCT' | - 'PG_DEPENDENCIES' | - 'TSVECTOR' | - 'TSQUERY' | - 'GTSVECTOR' | - 'REGCONFIG' | - 'REGDICTIONARY' | - 'JSONB' | - 'REGNAMESPACE' | - 'REGROLE'; - -export type TypesBuiltins = {[key in builtinsTypes]: TypeId}; - -export type TypeFormat = 'text' | 'binary'; - -export const builtins: TypesBuiltins; - -export function setTypeParser (id: TypeId, parseFn: ((value: string) => any)): void; -export function setTypeParser (id: TypeId, format: TypeFormat, parseFn: (value: string) => any): void; - -export const getTypeParser: (id: TypeId, format?: TypeFormat) => any - -export const arrayParser: (source: string, transform: (entry: any) => any) => any[]; diff --git a/node_modules/pg-types/index.js b/node_modules/pg-types/index.js deleted file mode 100644 index 952d8c2..0000000 --- a/node_modules/pg-types/index.js +++ /dev/null @@ -1,47 +0,0 @@ -var textParsers = require('./lib/textParsers'); -var binaryParsers = require('./lib/binaryParsers'); -var arrayParser = require('./lib/arrayParser'); -var builtinTypes = require('./lib/builtins'); - -exports.getTypeParser = getTypeParser; -exports.setTypeParser = setTypeParser; -exports.arrayParser = arrayParser; -exports.builtins = builtinTypes; - -var typeParsers = { - text: {}, - binary: {} -}; - -//the empty parse function -function noParse (val) { - return String(val); -}; - -//returns a function used to convert a specific type (specified by -//oid) into a result javascript type -//note: the oid can be obtained via the following sql query: -//SELECT oid FROM pg_type WHERE typname = 'TYPE_NAME_HERE'; -function getTypeParser (oid, format) { - format = format || 'text'; - if (!typeParsers[format]) { - return noParse; - } - return typeParsers[format][oid] || noParse; -}; - -function setTypeParser (oid, format, parseFn) { - if(typeof format == 'function') { - parseFn = format; - format = 'text'; - } - typeParsers[format][oid] = parseFn; -}; - -textParsers.init(function(oid, converter) { - typeParsers.text[oid] = converter; -}); - -binaryParsers.init(function(oid, converter) { - typeParsers.binary[oid] = converter; -}); diff --git a/node_modules/pg-types/index.test-d.ts b/node_modules/pg-types/index.test-d.ts deleted file mode 100644 index d530e6e..0000000 --- a/node_modules/pg-types/index.test-d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import * as types from '.'; -import { expectType } from 'tsd'; - -// builtins -expectType(types.builtins); - -// getTypeParser -const noParse = types.getTypeParser(types.builtins.NUMERIC, 'text'); -const numericParser = types.getTypeParser(types.builtins.NUMERIC, 'binary'); -expectType(noParse('noParse')); -expectType(numericParser([200, 1, 0, 15])); - -// getArrayParser -const value = types.arrayParser('{1,2,3}', (num) => parseInt(num)); -expectType(value); - -//setTypeParser -types.setTypeParser(types.builtins.INT8, parseInt); -types.setTypeParser(types.builtins.FLOAT8, parseFloat); -types.setTypeParser(types.builtins.FLOAT8, 'binary', (data) => data[0]); -types.setTypeParser(types.builtins.FLOAT8, 'text', parseFloat); diff --git a/node_modules/pg-types/lib/arrayParser.js b/node_modules/pg-types/lib/arrayParser.js deleted file mode 100644 index 81ccffb..0000000 --- a/node_modules/pg-types/lib/arrayParser.js +++ /dev/null @@ -1,11 +0,0 @@ -var array = require('postgres-array'); - -module.exports = { - create: function (source, transform) { - return { - parse: function() { - return array.parse(source, transform); - } - }; - } -}; diff --git a/node_modules/pg-types/lib/binaryParsers.js b/node_modules/pg-types/lib/binaryParsers.js deleted file mode 100644 index e12c2f4..0000000 --- a/node_modules/pg-types/lib/binaryParsers.js +++ /dev/null @@ -1,257 +0,0 @@ -var parseInt64 = require('pg-int8'); - -var parseBits = function(data, bits, offset, invert, callback) { - offset = offset || 0; - invert = invert || false; - callback = callback || function(lastValue, newValue, bits) { return (lastValue * Math.pow(2, bits)) + newValue; }; - var offsetBytes = offset >> 3; - - var inv = function(value) { - if (invert) { - return ~value & 0xff; - } - - return value; - }; - - // read first (maybe partial) byte - var mask = 0xff; - var firstBits = 8 - (offset % 8); - if (bits < firstBits) { - mask = (0xff << (8 - bits)) & 0xff; - firstBits = bits; - } - - if (offset) { - mask = mask >> (offset % 8); - } - - var result = 0; - if ((offset % 8) + bits >= 8) { - result = callback(0, inv(data[offsetBytes]) & mask, firstBits); - } - - // read bytes - var bytes = (bits + offset) >> 3; - for (var i = offsetBytes + 1; i < bytes; i++) { - result = callback(result, inv(data[i]), 8); - } - - // bits to read, that are not a complete byte - var lastBits = (bits + offset) % 8; - if (lastBits > 0) { - result = callback(result, inv(data[bytes]) >> (8 - lastBits), lastBits); - } - - return result; -}; - -var parseFloatFromBits = function(data, precisionBits, exponentBits) { - var bias = Math.pow(2, exponentBits - 1) - 1; - var sign = parseBits(data, 1); - var exponent = parseBits(data, exponentBits, 1); - - if (exponent === 0) { - return 0; - } - - // parse mantissa - var precisionBitsCounter = 1; - var parsePrecisionBits = function(lastValue, newValue, bits) { - if (lastValue === 0) { - lastValue = 1; - } - - for (var i = 1; i <= bits; i++) { - precisionBitsCounter /= 2; - if ((newValue & (0x1 << (bits - i))) > 0) { - lastValue += precisionBitsCounter; - } - } - - return lastValue; - }; - - var mantissa = parseBits(data, precisionBits, exponentBits + 1, false, parsePrecisionBits); - - // special cases - if (exponent == (Math.pow(2, exponentBits + 1) - 1)) { - if (mantissa === 0) { - return (sign === 0) ? Infinity : -Infinity; - } - - return NaN; - } - - // normale number - return ((sign === 0) ? 1 : -1) * Math.pow(2, exponent - bias) * mantissa; -}; - -var parseInt16 = function(value) { - if (parseBits(value, 1) == 1) { - return -1 * (parseBits(value, 15, 1, true) + 1); - } - - return parseBits(value, 15, 1); -}; - -var parseInt32 = function(value) { - if (parseBits(value, 1) == 1) { - return -1 * (parseBits(value, 31, 1, true) + 1); - } - - return parseBits(value, 31, 1); -}; - -var parseFloat32 = function(value) { - return parseFloatFromBits(value, 23, 8); -}; - -var parseFloat64 = function(value) { - return parseFloatFromBits(value, 52, 11); -}; - -var parseNumeric = function(value) { - var sign = parseBits(value, 16, 32); - if (sign == 0xc000) { - return NaN; - } - - var weight = Math.pow(10000, parseBits(value, 16, 16)); - var result = 0; - - var digits = []; - var ndigits = parseBits(value, 16); - for (var i = 0; i < ndigits; i++) { - result += parseBits(value, 16, 64 + (16 * i)) * weight; - weight /= 10000; - } - - var scale = Math.pow(10, parseBits(value, 16, 48)); - return ((sign === 0) ? 1 : -1) * Math.round(result * scale) / scale; -}; - -var parseDate = function(isUTC, value) { - var sign = parseBits(value, 1); - var rawValue = parseBits(value, 63, 1); - - // discard usecs and shift from 2000 to 1970 - var result = new Date((((sign === 0) ? 1 : -1) * rawValue / 1000) + 946684800000); - - if (!isUTC) { - result.setTime(result.getTime() + result.getTimezoneOffset() * 60000); - } - - // add microseconds to the date - result.usec = rawValue % 1000; - result.getMicroSeconds = function() { - return this.usec; - }; - result.setMicroSeconds = function(value) { - this.usec = value; - }; - result.getUTCMicroSeconds = function() { - return this.usec; - }; - - return result; -}; - -var parseArray = function(value) { - var dim = parseBits(value, 32); - - var flags = parseBits(value, 32, 32); - var elementType = parseBits(value, 32, 64); - - var offset = 96; - var dims = []; - for (var i = 0; i < dim; i++) { - // parse dimension - dims[i] = parseBits(value, 32, offset); - offset += 32; - - // ignore lower bounds - offset += 32; - } - - var parseElement = function(elementType) { - // parse content length - var length = parseBits(value, 32, offset); - offset += 32; - - // parse null values - if (length == 0xffffffff) { - return null; - } - - var result; - if ((elementType == 0x17) || (elementType == 0x14)) { - // int/bigint - result = parseBits(value, length * 8, offset); - offset += length * 8; - return result; - } - else if (elementType == 0x19) { - // string - result = value.toString(this.encoding, offset >> 3, (offset += (length << 3)) >> 3); - return result; - } - else { - console.log("ERROR: ElementType not implemented: " + elementType); - } - }; - - var parse = function(dimension, elementType) { - var array = []; - var i; - - if (dimension.length > 1) { - var count = dimension.shift(); - for (i = 0; i < count; i++) { - array[i] = parse(dimension, elementType); - } - dimension.unshift(count); - } - else { - for (i = 0; i < dimension[0]; i++) { - array[i] = parseElement(elementType); - } - } - - return array; - }; - - return parse(dims, elementType); -}; - -var parseText = function(value) { - return value.toString('utf8'); -}; - -var parseBool = function(value) { - if(value === null) return null; - return (parseBits(value, 8) > 0); -}; - -var init = function(register) { - register(20, parseInt64); - register(21, parseInt16); - register(23, parseInt32); - register(26, parseInt32); - register(1700, parseNumeric); - register(700, parseFloat32); - register(701, parseFloat64); - register(16, parseBool); - register(1114, parseDate.bind(null, false)); - register(1184, parseDate.bind(null, true)); - register(1000, parseArray); - register(1007, parseArray); - register(1016, parseArray); - register(1008, parseArray); - register(1009, parseArray); - register(25, parseText); -}; - -module.exports = { - init: init -}; diff --git a/node_modules/pg-types/lib/builtins.js b/node_modules/pg-types/lib/builtins.js deleted file mode 100644 index f0c134a..0000000 --- a/node_modules/pg-types/lib/builtins.js +++ /dev/null @@ -1,73 +0,0 @@ -/** - * Following query was used to generate this file: - - SELECT json_object_agg(UPPER(PT.typname), PT.oid::int4 ORDER BY pt.oid) - FROM pg_type PT - WHERE typnamespace = (SELECT pgn.oid FROM pg_namespace pgn WHERE nspname = 'pg_catalog') -- Take only builting Postgres types with stable OID (extension types are not guaranted to be stable) - AND typtype = 'b' -- Only basic types - AND typelem = 0 -- Ignore aliases - AND typisdefined -- Ignore undefined types - */ - -module.exports = { - BOOL: 16, - BYTEA: 17, - CHAR: 18, - INT8: 20, - INT2: 21, - INT4: 23, - REGPROC: 24, - TEXT: 25, - OID: 26, - TID: 27, - XID: 28, - CID: 29, - JSON: 114, - XML: 142, - PG_NODE_TREE: 194, - SMGR: 210, - PATH: 602, - POLYGON: 604, - CIDR: 650, - FLOAT4: 700, - FLOAT8: 701, - ABSTIME: 702, - RELTIME: 703, - TINTERVAL: 704, - CIRCLE: 718, - MACADDR8: 774, - MONEY: 790, - MACADDR: 829, - INET: 869, - ACLITEM: 1033, - BPCHAR: 1042, - VARCHAR: 1043, - DATE: 1082, - TIME: 1083, - TIMESTAMP: 1114, - TIMESTAMPTZ: 1184, - INTERVAL: 1186, - TIMETZ: 1266, - BIT: 1560, - VARBIT: 1562, - NUMERIC: 1700, - REFCURSOR: 1790, - REGPROCEDURE: 2202, - REGOPER: 2203, - REGOPERATOR: 2204, - REGCLASS: 2205, - REGTYPE: 2206, - UUID: 2950, - TXID_SNAPSHOT: 2970, - PG_LSN: 3220, - PG_NDISTINCT: 3361, - PG_DEPENDENCIES: 3402, - TSVECTOR: 3614, - TSQUERY: 3615, - GTSVECTOR: 3642, - REGCONFIG: 3734, - REGDICTIONARY: 3769, - JSONB: 3802, - REGNAMESPACE: 4089, - REGROLE: 4096 -}; diff --git a/node_modules/pg-types/lib/textParsers.js b/node_modules/pg-types/lib/textParsers.js deleted file mode 100644 index b1218bf..0000000 --- a/node_modules/pg-types/lib/textParsers.js +++ /dev/null @@ -1,215 +0,0 @@ -var array = require('postgres-array') -var arrayParser = require('./arrayParser'); -var parseDate = require('postgres-date'); -var parseInterval = require('postgres-interval'); -var parseByteA = require('postgres-bytea'); - -function allowNull (fn) { - return function nullAllowed (value) { - if (value === null) return value - return fn(value) - } -} - -function parseBool (value) { - if (value === null) return value - return value === 'TRUE' || - value === 't' || - value === 'true' || - value === 'y' || - value === 'yes' || - value === 'on' || - value === '1'; -} - -function parseBoolArray (value) { - if (!value) return null - return array.parse(value, parseBool) -} - -function parseBaseTenInt (string) { - return parseInt(string, 10) -} - -function parseIntegerArray (value) { - if (!value) return null - return array.parse(value, allowNull(parseBaseTenInt)) -} - -function parseBigIntegerArray (value) { - if (!value) return null - return array.parse(value, allowNull(function (entry) { - return parseBigInteger(entry).trim() - })) -} - -var parsePointArray = function(value) { - if(!value) { return null; } - var p = arrayParser.create(value, function(entry) { - if(entry !== null) { - entry = parsePoint(entry); - } - return entry; - }); - - return p.parse(); -}; - -var parseFloatArray = function(value) { - if(!value) { return null; } - var p = arrayParser.create(value, function(entry) { - if(entry !== null) { - entry = parseFloat(entry); - } - return entry; - }); - - return p.parse(); -}; - -var parseStringArray = function(value) { - if(!value) { return null; } - - var p = arrayParser.create(value); - return p.parse(); -}; - -var parseDateArray = function(value) { - if (!value) { return null; } - - var p = arrayParser.create(value, function(entry) { - if (entry !== null) { - entry = parseDate(entry); - } - return entry; - }); - - return p.parse(); -}; - -var parseIntervalArray = function(value) { - if (!value) { return null; } - - var p = arrayParser.create(value, function(entry) { - if (entry !== null) { - entry = parseInterval(entry); - } - return entry; - }); - - return p.parse(); -}; - -var parseByteAArray = function(value) { - if (!value) { return null; } - - return array.parse(value, allowNull(parseByteA)); -}; - -var parseInteger = function(value) { - return parseInt(value, 10); -}; - -var parseBigInteger = function(value) { - var valStr = String(value); - if (/^\d+$/.test(valStr)) { return valStr; } - return value; -}; - -var parseJsonArray = function(value) { - if (!value) { return null; } - - return array.parse(value, allowNull(JSON.parse)); -}; - -var parsePoint = function(value) { - if (value[0] !== '(') { return null; } - - value = value.substring( 1, value.length - 1 ).split(','); - - return { - x: parseFloat(value[0]) - , y: parseFloat(value[1]) - }; -}; - -var parseCircle = function(value) { - if (value[0] !== '<' && value[1] !== '(') { return null; } - - var point = '('; - var radius = ''; - var pointParsed = false; - for (var i = 2; i < value.length - 1; i++){ - if (!pointParsed) { - point += value[i]; - } - - if (value[i] === ')') { - pointParsed = true; - continue; - } else if (!pointParsed) { - continue; - } - - if (value[i] === ','){ - continue; - } - - radius += value[i]; - } - var result = parsePoint(point); - result.radius = parseFloat(radius); - - return result; -}; - -var init = function(register) { - register(20, parseBigInteger); // int8 - register(21, parseInteger); // int2 - register(23, parseInteger); // int4 - register(26, parseInteger); // oid - register(700, parseFloat); // float4/real - register(701, parseFloat); // float8/double - register(16, parseBool); - register(1082, parseDate); // date - register(1114, parseDate); // timestamp without timezone - register(1184, parseDate); // timestamp - register(600, parsePoint); // point - register(651, parseStringArray); // cidr[] - register(718, parseCircle); // circle - register(1000, parseBoolArray); - register(1001, parseByteAArray); - register(1005, parseIntegerArray); // _int2 - register(1007, parseIntegerArray); // _int4 - register(1028, parseIntegerArray); // oid[] - register(1016, parseBigIntegerArray); // _int8 - register(1017, parsePointArray); // point[] - register(1021, parseFloatArray); // _float4 - register(1022, parseFloatArray); // _float8 - register(1231, parseFloatArray); // _numeric - register(1014, parseStringArray); //char - register(1015, parseStringArray); //varchar - register(1008, parseStringArray); - register(1009, parseStringArray); - register(1040, parseStringArray); // macaddr[] - register(1041, parseStringArray); // inet[] - register(1115, parseDateArray); // timestamp without time zone[] - register(1182, parseDateArray); // _date - register(1185, parseDateArray); // timestamp with time zone[] - register(1186, parseInterval); - register(1187, parseIntervalArray); - register(17, parseByteA); - register(114, JSON.parse.bind(JSON)); // json - register(3802, JSON.parse.bind(JSON)); // jsonb - register(199, parseJsonArray); // json[] - register(3807, parseJsonArray); // jsonb[] - register(3907, parseStringArray); // numrange[] - register(2951, parseStringArray); // uuid[] - register(791, parseStringArray); // money[] - register(1183, parseStringArray); // time[] - register(1270, parseStringArray); // timetz[] -}; - -module.exports = { - init: init -}; diff --git a/node_modules/pg-types/package.json b/node_modules/pg-types/package.json deleted file mode 100644 index 5e4f4b8..0000000 --- a/node_modules/pg-types/package.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "_from": "pg-types@^2.1.0", - "_id": "pg-types@2.2.0", - "_inBundle": false, - "_integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "_location": "/pg-types", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "pg-types@^2.1.0", - "name": "pg-types", - "escapedName": "pg-types", - "rawSpec": "^2.1.0", - "saveSpec": null, - "fetchSpec": "^2.1.0" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - "_shasum": "2d0250d636454f7cfa3b6ae0382fdfa8063254a3", - "_spec": "pg-types@^2.1.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Brian M. Carlson" - }, - "bugs": { - "url": "https://github.com/brianc/node-pg-types/issues" - }, - "bundleDependencies": false, - "dependencies": { - "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", - "postgres-bytea": "~1.0.0", - "postgres-date": "~1.0.4", - "postgres-interval": "^1.1.0" - }, - "deprecated": false, - "description": "Query result type converters for node-postgres", - "devDependencies": { - "if-node-version": "^1.1.1", - "pff": "^1.0.0", - "tap-spec": "^4.0.0", - "tape": "^4.0.0", - "tsd": "^0.7.4" - }, - "engines": { - "node": ">=4" - }, - "homepage": "https://github.com/brianc/node-pg-types", - "keywords": [ - "postgres", - "PostgreSQL", - "pg" - ], - "license": "MIT", - "main": "index.js", - "name": "pg-types", - "repository": { - "type": "git", - "url": "git://github.com/brianc/node-pg-types.git" - }, - "scripts": { - "test": "tape test/*.js | tap-spec && npm run test-ts", - "test-ts": "if-node-version '>= 8' tsd" - }, - "version": "2.2.0" -} diff --git a/node_modules/pg-types/test/index.js b/node_modules/pg-types/test/index.js deleted file mode 100644 index b7d05cd..0000000 --- a/node_modules/pg-types/test/index.js +++ /dev/null @@ -1,24 +0,0 @@ - -var test = require('tape') -var printf = require('pff') -var getTypeParser = require('../').getTypeParser -var types = require('./types') - -test('types', function (t) { - Object.keys(types).forEach(function (typeName) { - var type = types[typeName] - t.test(typeName, function (t) { - var parser = getTypeParser(type.id, type.format) - type.tests.forEach(function (tests) { - var input = tests[0] - var expected = tests[1] - var result = parser(input) - if (typeof expected === 'function') { - return expected(t, result) - } - t.equal(result, expected) - }) - t.end() - }) - }) -}) diff --git a/node_modules/pg-types/test/types.js b/node_modules/pg-types/test/types.js deleted file mode 100644 index af708a5..0000000 --- a/node_modules/pg-types/test/types.js +++ /dev/null @@ -1,597 +0,0 @@ -'use strict' - -exports['string/varchar'] = { - format: 'text', - id: 1043, - tests: [ - ['bang', 'bang'] - ] -} - -exports['integer/int4'] = { - format: 'text', - id: 23, - tests: [ - ['2147483647', 2147483647] - ] -} - -exports['smallint/int2'] = { - format: 'text', - id: 21, - tests: [ - ['32767', 32767] - ] -} - -exports['bigint/int8'] = { - format: 'text', - id: 20, - tests: [ - ['9223372036854775807', '9223372036854775807'] - ] -} - -exports.oid = { - format: 'text', - id: 26, - tests: [ - ['103', 103] - ] -} - -var bignum = '31415926535897932384626433832795028841971693993751058.16180339887498948482045868343656381177203091798057628' -exports.numeric = { - format: 'text', - id: 1700, - tests: [ - [bignum, bignum] - ] -} - -exports['real/float4'] = { - format: 'text', - id: 700, - tests: [ - ['123.456', 123.456] - ] -} - -exports['double precision / float 8'] = { - format: 'text', - id: 701, - tests: [ - ['12345678.12345678', 12345678.12345678] - ] -} - -exports.boolean = { - format: 'text', - id: 16, - tests: [ - ['TRUE', true], - ['t', true], - ['true', true], - ['y', true], - ['yes', true], - ['on', true], - ['1', true], - ['f', false], - [null, null] - ] -} - -exports.timestamptz = { - format: 'text', - id: 1184, - tests: [ - [ - '2010-10-31 14:54:13.74-05:30', - dateEquals(2010, 9, 31, 20, 24, 13, 740) - ], - [ - '2011-01-23 22:05:00.68-06', - dateEquals(2011, 0, 24, 4, 5, 0, 680) - ], - [ - '2010-10-30 14:11:12.730838Z', - dateEquals(2010, 9, 30, 14, 11, 12, 730) - ], - [ - '2010-10-30 13:10:01+05', - dateEquals(2010, 9, 30, 8, 10, 1, 0) - ] - ] -} - -exports.timestamp = { - format: 'text', - id: 1114, - tests: [ - [ - '2010-10-31 00:00:00', - function (t, value) { - t.equal( - value.toUTCString(), - new Date(2010, 9, 31, 0, 0, 0, 0, 0).toUTCString() - ) - t.equal( - value.toString(), - new Date(2010, 9, 31, 0, 0, 0, 0, 0, 0).toString() - ) - } - ] - ] -} - -exports.date = { - format: 'text', - id: 1082, - tests: [ - ['2010-10-31', function (t, value) { - var now = new Date(2010, 9, 31) - dateEquals( - 2010, - now.getUTCMonth(), - now.getUTCDate(), - now.getUTCHours(), 0, 0, 0)(t, value) - t.equal(value.getHours(), now.getHours()) - }] - ] -} - -exports.inet = { - format: 'text', - id: 869, - tests: [ - ['8.8.8.8', '8.8.8.8'], - ['2001:4860:4860::8888', '2001:4860:4860::8888'], - ['127.0.0.1', '127.0.0.1'], - ['fd00:1::40e', 'fd00:1::40e'], - ['1.2.3.4', '1.2.3.4'] - ] -} - -exports.cidr = { - format: 'text', - id: 650, - tests: [ - ['172.16.0.0/12', '172.16.0.0/12'], - ['fe80::/10', 'fe80::/10'], - ['fc00::/7', 'fc00::/7'], - ['192.168.0.0/24', '192.168.0.0/24'], - ['10.0.0.0/8', '10.0.0.0/8'] - ] -} - -exports.macaddr = { - format: 'text', - id: 829, - tests: [ - ['08:00:2b:01:02:03', '08:00:2b:01:02:03'], - ['16:10:9f:0d:66:00', '16:10:9f:0d:66:00'] - ] -} - -exports.numrange = { - format: 'text', - id: 3906, - tests: [ - ['[,]', '[,]'], - ['(,)', '(,)'], - ['(,]', '(,]'], - ['[1,)', '[1,)'], - ['[,1]', '[,1]'], - ['(1,2)', '(1,2)'], - ['(1,20.5]', '(1,20.5]'] - ] -} - -exports.interval = { - format: 'text', - id: 1186, - tests: [ - ['01:02:03', function (t, value) { - t.equal(value.toPostgres(), '3 seconds 2 minutes 1 hours') - t.deepEqual(value, {hours: 1, minutes: 2, seconds: 3}) - }], - ['01:02:03.456', function (t, value) { - t.deepEqual(value, {hours: 1, minutes:2, seconds: 3, milliseconds: 456}) - }], - ['1 year -32 days', function (t, value) { - t.equal(value.toPostgres(), '-32 days 1 years') - t.deepEqual(value, {years: 1, days: -32}) - }], - ['1 day -00:00:03', function (t, value) { - t.equal(value.toPostgres(), '-3 seconds 1 days') - t.deepEqual(value, {days: 1, seconds: -3}) - }] - ] -} - -exports.bytea = { - format: 'text', - id: 17, - tests: [ - ['foo\\000\\200\\\\\\377', function (t, value) { - var buffer = new Buffer([102, 111, 111, 0, 128, 92, 255]) - t.ok(buffer.equals(value)) - }], - ['', function (t, value) { - var buffer = new Buffer(0) - t.ok(buffer.equals(value)) - }] - ] -} - -exports['array/boolean'] = { - format: 'text', - id: 1000, - tests: [ - ['{true,false}', function (t, value) { - t.deepEqual(value, [true, false]) - }] - ] -} - -exports['array/char'] = { - format: 'text', - id: 1014, - tests: [ - ['{foo,bar}', function (t, value) { - t.deepEqual(value, ['foo', 'bar']) - }] - ] -} - -exports['array/varchar'] = { - format: 'text', - id: 1015, - tests: [ - ['{foo,bar}', function (t, value) { - t.deepEqual(value, ['foo', 'bar']) - }] - ] -} - -exports['array/text'] = { - format: 'text', - id: 1008, - tests: [ - ['{foo}', function (t, value) { - t.deepEqual(value, ['foo']) - }] - ] -} - -exports['array/bytea'] = { - format: 'text', - id: 1001, - tests: [ - ['{"\\\\x00000000"}', function (t, value) { - var buffer = new Buffer('00000000', 'hex') - t.ok(Array.isArray(value)) - t.equal(value.length, 1) - t.ok(buffer.equals(value[0])) - }], - ['{NULL,"\\\\x4e554c4c"}', function (t, value) { - var buffer = new Buffer('4e554c4c', 'hex') - t.ok(Array.isArray(value)) - t.equal(value.length, 2) - t.equal(value[0], null) - t.ok(buffer.equals(value[1])) - }], - ] -} - -exports['array/numeric'] = { - format: 'text', - id: 1231, - tests: [ - ['{1.2,3.4}', function (t, value) { - t.deepEqual(value, [1.2, 3.4]) - }] - ] -} - -exports['array/int2'] = { - format: 'text', - id: 1005, - tests: [ - ['{-32768, -32767, 32766, 32767}', function (t, value) { - t.deepEqual(value, [-32768, -32767, 32766, 32767]) - }] - ] -} - -exports['array/int4'] = { - format: 'text', - id: 1005, - tests: [ - ['{-2147483648, -2147483647, 2147483646, 2147483647}', function (t, value) { - t.deepEqual(value, [-2147483648, -2147483647, 2147483646, 2147483647]) - }] - ] -} - -exports['array/int8'] = { - format: 'text', - id: 1016, - tests: [ - [ - '{-9223372036854775808, -9223372036854775807, 9223372036854775806, 9223372036854775807}', - function (t, value) { - t.deepEqual(value, [ - '-9223372036854775808', - '-9223372036854775807', - '9223372036854775806', - '9223372036854775807' - ]) - } - ] - ] -} - -exports['array/json'] = { - format: 'text', - id: 199, - tests: [ - [ - '{{1,2},{[3],"[4,5]"},{null,NULL}}', - function (t, value) { - t.deepEqual(value, [ - [1, 2], - [[3], [4, 5]], - [null, null], - ]) - } - ] - ] -} - -exports['array/jsonb'] = { - format: 'text', - id: 3807, - tests: exports['array/json'].tests -} - -exports['array/point'] = { - format: 'text', - id: 1017, - tests: [ - ['{"(25.1,50.5)","(10.1,40)"}', function (t, value) { - t.deepEqual(value, [{x: 25.1, y: 50.5}, {x: 10.1, y: 40}]) - }] - ] -} - -exports['array/oid'] = { - format: 'text', - id: 1028, - tests: [ - ['{25864,25860}', function (t, value) { - t.deepEqual(value, [25864, 25860]) - }] - ] -} - -exports['array/float4'] = { - format: 'text', - id: 1021, - tests: [ - ['{1.2, 3.4}', function (t, value) { - t.deepEqual(value, [1.2, 3.4]) - }] - ] -} - -exports['array/float8'] = { - format: 'text', - id: 1022, - tests: [ - ['{-12345678.1234567, 12345678.12345678}', function (t, value) { - t.deepEqual(value, [-12345678.1234567, 12345678.12345678]) - }] - ] -} - -exports['array/date'] = { - format: 'text', - id: 1182, - tests: [ - ['{2014-01-01,2015-12-31}', function (t, value) { - var expecteds = [new Date(2014, 0, 1), new Date(2015, 11, 31)] - t.equal(value.length, 2) - value.forEach(function (date, index) { - var expected = expecteds[index] - dateEquals( - expected.getUTCFullYear(), - expected.getUTCMonth(), - expected.getUTCDate(), - expected.getUTCHours(), 0, 0, 0)(t, date) - }) - }] - ] -} - -exports['array/interval'] = { - format: 'text', - id: 1187, - tests: [ - ['{01:02:03,1 day -00:00:03}', function (t, value) { - var expecteds = [{hours: 1, minutes: 2, seconds: 3}, - {days: 1, seconds: -3}] - t.equal(value.length, 2) - t.deepEqual(value, expecteds); - }] - ] -} - -exports['array/inet'] = { - format: 'text', - id: 1041, - tests: [ - ['{8.8.8.8}', function (t, value) { - t.deepEqual(value, ['8.8.8.8']); - }], - ['{2001:4860:4860::8888}', function (t, value) { - t.deepEqual(value, ['2001:4860:4860::8888']); - }], - ['{127.0.0.1,fd00:1::40e,1.2.3.4}', function (t, value) { - t.deepEqual(value, ['127.0.0.1', 'fd00:1::40e', '1.2.3.4']); - }] - ] -} - -exports['array/cidr'] = { - format: 'text', - id: 651, - tests: [ - ['{172.16.0.0/12}', function (t, value) { - t.deepEqual(value, ['172.16.0.0/12']); - }], - ['{fe80::/10}', function (t, value) { - t.deepEqual(value, ['fe80::/10']); - }], - ['{10.0.0.0/8,fc00::/7,192.168.0.0/24}', function (t, value) { - t.deepEqual(value, ['10.0.0.0/8', 'fc00::/7', '192.168.0.0/24']); - }] - ] -} - -exports['array/macaddr'] = { - format: 'text', - id: 1040, - tests: [ - ['{08:00:2b:01:02:03,16:10:9f:0d:66:00}', function (t, value) { - t.deepEqual(value, ['08:00:2b:01:02:03', '16:10:9f:0d:66:00']); - }] - ] -} - -exports['array/numrange'] = { - format: 'text', - id: 3907, - tests: [ - ['{"[1,2]","(4.5,8)","[10,40)","(-21.2,60.3]"}', function (t, value) { - t.deepEqual(value, ['[1,2]', '(4.5,8)', '[10,40)', '(-21.2,60.3]']); - }], - ['{"[,20]","[3,]","[,]","(,35)","(1,)","(,)"}', function (t, value) { - t.deepEqual(value, ['[,20]', '[3,]', '[,]', '(,35)', '(1,)', '(,)']); - }], - ['{"[,20)","[3,)","[,)","[,35)","[1,)","[,)"}', function (t, value) { - t.deepEqual(value, ['[,20)', '[3,)', '[,)', '[,35)', '[1,)', '[,)']); - }] - ] -} - -exports['binary-string/varchar'] = { - format: 'binary', - id: 1043, - tests: [ - ['bang', 'bang'] - ] -} - -exports['binary-integer/int4'] = { - format: 'binary', - id: 23, - tests: [ - [[0, 0, 0, 100], 100] - ] -} - -exports['binary-smallint/int2'] = { - format: 'binary', - id: 21, - tests: [ - [[0, 101], 101] - ] -} - -exports['binary-bigint/int8'] = { - format: 'binary', - id: 20, - tests: [ - [new Buffer([0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), '9223372036854775807'] - ] -} - -exports['binary-oid'] = { - format: 'binary', - id: 26, - tests: [ - [[0, 0, 0, 103], 103] - ] -} - -exports['binary-numeric'] = { - format: 'binary', - id: 1700, - tests: [ - [ - [0, 2, 0, 0, 0, 0, 0, hex('0x64'), 0, 12, hex('0xd'), hex('0x48'), 0, 0, 0, 0], - 12.34 - ] - ] -} - -exports['binary-real/float4'] = { - format: 'binary', - id: 700, - tests: [ - [['0x41', '0x48', '0x00', '0x00'].map(hex), 12.5] - ] -} - -exports['binary-boolean'] = { - format: 'binary', - id: 16, - tests: [ - [[1], true], - [[0], false], - [null, null] - ] -} - -exports['binary-string'] = { - format: 'binary', - id: 25, - tests: [ - [ - new Buffer(['0x73', '0x6c', '0x61', '0x64', '0x64', '0x61'].map(hex)), - 'sladda' - ] - ] -} - -exports.point = { - format: 'text', - id: 600, - tests: [ - ['(25.1,50.5)', function (t, value) { - t.deepEqual(value, {x: 25.1, y: 50.5}) - }] - ] -} - -exports.circle = { - format: 'text', - id: 718, - tests: [ - ['<(25,10),5>', function (t, value) { - t.deepEqual(value, {x: 25, y: 10, radius: 5}) - }] - ] -} - -function hex (string) { - return parseInt(string, 16) -} - -function dateEquals () { - var timestamp = Date.UTC.apply(Date, arguments) - return function (t, value) { - t.equal(value.toUTCString(), new Date(timestamp).toUTCString()) - } -} diff --git a/node_modules/pg/.eslintrc b/node_modules/pg/.eslintrc deleted file mode 100644 index 43aee60..0000000 --- a/node_modules/pg/.eslintrc +++ /dev/null @@ -1,19 +0,0 @@ -{ - "plugins": [ - "node" - ], - "extends": [ - "standard", - "eslint:recommended", - "plugin:node/recommended" - ], - "parserOptions": { - "ecmaVersion": 2017 - }, - "env": { - "node": true, - "es6": true - }, - "rules": { - } -} diff --git a/node_modules/pg/CHANGELOG.md b/node_modules/pg/CHANGELOG.md deleted file mode 100644 index 7792612..0000000 --- a/node_modules/pg/CHANGELOG.md +++ /dev/null @@ -1,332 +0,0 @@ -All major and minor releases are briefly explained below. - -For richer information consult the commit log on github with referenced pull requests. - -We do not include break-fix version release in this file. - -### 7.12.0 - -- Add support for [async password lookup](https://github.com/brianc/node-postgres/pull/1926). - -### 7.11.0 - -- Add support for [connection_timeout](https://github.com/brianc/node-postgres/pull/1847/files#diff-5391bde944956870128be1136e7bc176R63) and [keepalives_idle](https://github.com/brianc/node-postgres/pull/1847). - -### 7.10.0 - -- Add support for [per-query types](https://github.com/brianc/node-postgres/pull/1825). - -### 7.9.0 - -- Add support for [sasl/scram authentication](https://github.com/brianc/node-postgres/pull/1835). - -### 7.8.0 - -- Add support for passing [secureOptions](https://github.com/brianc/node-postgres/pull/1804) SSL config. -- Upgrade [pg-types](https://github.com/brianc/node-postgres/pull/1806) to 2.0. - -### 7.7.0 - -- Add support for configurable [query timeout](https://github.com/brianc/node-postgres/pull/1760) on a client level. - -### 7.6.0 - -- Add support for ["bring your own promise"](https://github.com/brianc/node-postgres/pull/1518) - -### 7.5.0 - -- Better [error message](https://github.com/brianc/node-postgres/commit/11a4793452d618c53e019416cc886ad38deb1aa7) when passing `null` or `undefined` to `client.query`. -- Better [error handling](https://github.com/brianc/node-postgres/pull/1503) on queued queries. - -### 7.4.0 - -- Add support for [Uint8Array](https://github.com/brianc/node-postgres/pull/1448) values. - -### 7.3.0 - -- Add support for [statement timeout](https://github.com/brianc/node-postgres/pull/1436). - -### 7.2.0 - -- Pinned pg-pool and pg-types to a tighter semver range. This is likely not a noticeable change for you unless you were specifically installing older versions of those libraries for some reason, but making it a minor bump here just in case it could cause any confusion. - -### 7.1.0 - -#### Enhancements - -- [You can now supply both a connection string and additional config options to clients.](https://github.com/brianc/node-postgres/pull/1363) - -### 7.0.0 - -#### Breaking Changes - -- Drop support for node < `4.x`. -- Remove `pg.connect` `pg.end` and `pg.cancel` singleton methods. -- `Client#connect(callback)` now returns `undefined`. It used to return an event emitter. -- Upgrade [pg-pool](https://github.com/brianc/node-pg-pool) to `2.x`. -- Upgrade [pg-native](https://github.com/brianc/node-pg-native) to `2.x`. -- Standardize error message fields between JS and native driver. The only breaking changes were in the native driver as its field names were brought into alignment with the existing JS driver field names. -- Result from multi-statement text queries such as `SELECT 1; SELECT 2;` are now returned as an array of results instead of a single result with 1 array containing rows from both queries. - -[Please see here for a migration guide](https://node-postgres.com/guides/upgrading) - -#### Enhancements - -- Overhauled documentation: [https://node-postgres.com](https://node-postgres.com). -- Add `Client#connect() => Promise` and `Client#end() => Promise` calls. Promises are now returned from all async methods on clients _if and only if_ no callback was supplied to the method. -- Add `connectionTimeoutMillis` to pg-pool. - -### v6.2.0 - -- Add support for [parsing `replicationStart` messages](https://github.com/brianc/node-postgres/pull/1271/files). - -### v6.1.0 - -- Add optional callback parameter to the pure JavaScript `client.end` method. The native client already supported this. - -### v6.0.0 - -#### Breaking Changes - -- Remove `pg.pools`. There is still a reference kept to the pools created & tracked by `pg.connect` but it has been renamed, is considered private, and should not be used. Accessing this API directly was uncommon and was _supposed_ to be private but was incorrectly documented on the wiki. Therefore, it is a breaking change of an (unintentionally) public interface to remove it by renaming it & making it private. Eventually `pg.connect` itself will be deprecated in favor of instantiating pools directly via `new pg.Pool()` so this property should become completely moot at some point. In the mean time...check out the new features... - -#### New features - -- Replace internal pooling code with [pg-pool](https://github.com/brianc/node-pg-pool). This is the first step in eventually deprecating and removing the singleton `pg.connect`. The pg-pool constructor is exported from node-postgres at `require('pg').Pool`. It provides a backwards compatible interface with `pg.connect` as well as a promise based interface & additional niceties. - -You can now create an instance of a pool and don't have to rely on the `pg` singleton for anything: - -``` -var pg = require('pg') - -var pool = new pg.Pool() - -// your friendly neighborhood pool interface, without the singleton -pool.connect(function(err, client, done) { - // ... -}) -``` - -Promise support & other goodness lives now in [pg-pool](https://github.com/brianc/node-pg-pool). - -**Please** read the readme at [pg-pool](https://github.com/brianc/node-pg-pool) for the full api. - -- Included support for tcp keep alive. Enable it as follows: - -```js -var client = new Client({ keepAlive: true }); -``` - -This should help with backends incorrectly considering idle clients to be dead and prematurely disconnecting them. - -### v5.1.0 - -- Make the query object returned from `client.query` implement the promise interface. This is the first step towards promisifying more of the node-postgres api. - -Example: - -```js -var client = new Client(); -client.connect(); -client.query("SELECT $1::text as name", ["brianc"]).then(function(res) { - console.log("hello from", res.rows[0]); - client.end(); -}); -``` - -### v5.0.0 - -#### Breaking Changes - -- `require('pg').native` now returns null if the native bindings cannot be found; previously, this threw an exception. - -#### New Features - -- better error message when passing `undefined` as a query parameter -- support for `defaults.connectionString` -- support for `returnToHead` being passed to [generic pool](https://github.com/coopernurse/node-pool) - -### v4.5.0 - -- Add option to parse JS date objects in query parameters as [UTC](https://github.com/brianc/node-postgres/pull/943) - -### v4.4.0 - -- Warn to `stderr` if a named query exceeds 63 characters which is the max length supported by postgres. - -### v4.3.0 - -- Unpin `pg-types` semver. Allow it to float against `pg-types@1.x`. - -### v4.2.0 - -- Support for additional error fields in postgres >= 9.3 if available. - -### v4.1.0 - -- Allow type parser overrides on a [per-client basis](https://github.com/brianc/node-postgres/pull/679) - -### v4.0.0 - -- Make [native bindings](https://github.com/brianc/node-pg-native.git) an optional install with `npm install pg-native` -- No longer surround query result callback with `try/catch` block. -- Remove built in COPY IN / COPY OUT support - better implementations provided by [pg-copy-streams](https://github.com/brianc/node-pg-copy-streams.git) and [pg-native](https://github.com/brianc/node-pg-native.git) - -### v3.6.0 - -- Include support for (parsing JSONB)[https://github.com/brianc/node-pg-types/pull/13] (supported in postgres 9.4) - -### v3.5.0 - -- Include support for parsing boolean arrays - -### v3.4.0 - -- Include port as connection parameter to [unix sockets](https://github.com/brianc/node-postgres/pull/604) -- Better support for odd [date parsing](https://github.com/brianc/node-pg-types/pull/8) - -### v3.2.0 - -- Add support for parsing [date arrays](https://github.com/brianc/node-pg-types/pull/3) -- Expose array parsers on [pg.types](https://github.com/brianc/node-pg-types/pull/2) -- Allow [pool](https://github.com/brianc/node-postgres/pull/591) to be configured - -### v3.1.0 - -- Add [count of the number of times a client has been checked out from the pool](https://github.com/brianc/node-postgres/pull/556) -- Emit `end` from `pg` object [when a pool is drained](https://github.com/brianc/node-postgres/pull/571) - -### v3.0.0 - -#### Breaking changes - -- [Parse the DATE PostgreSQL type as local time](https://github.com/brianc/node-postgres/pull/514) - -After [some discussion](https://github.com/brianc/node-postgres/issues/510) it was decided node-postgres was non-compliant in how it was handling DATE results. They were being converted to UTC, but the PostgreSQL documentation specifies they should be returned in the client timezone. This is a breaking change, and if you use the `date` type you might want to examine your code and make sure nothing is impacted. - -- [Fix possible numeric precision loss on numeric & int8 arrays](https://github.com/brianc/node-postgres/pull/501) - -pg@v2.0 included changes to not convert large integers into their JavaScript number representation because of possibility for numeric precision loss. The same types in arrays were not taken into account. This fix applies the same type of type-coercion rules to arrays of those types, so there will be no more possible numeric loss on an array of very large int8s for example. This is a breaking change because now a return type from a query of `int8[]` will contain _string_ representations -of the integers. Use your favorite JavaScript bignum module to represent them without precision loss, or punch over the type converter to return the old style arrays again. - -- [Fix to input array of dates being improperly converted to utc](https://github.com/benesch/node-postgres/commit/c41eedc3e01e5527a3d5c242fa1896f02ef0b261#diff-7172adb1fec2457a2700ed29008a8e0aR108) - -Single `date` parameters were properly sent to the PostgreSQL server properly in local time, but an input array of dates was being changed into utc dates. This is a violation of what PostgreSQL expects. Small breaking change, but none-the-less something you should check out if you are inserting an array of dates. - -- [Query no longer emits `end` event if it ends due to an error](https://github.com/brianc/node-postgres/commit/357b64d70431ec5ca721eb45a63b082c18e6ffa3) - -This is a small change to bring the semantics of query more in line with other EventEmitters. The tests all passed after this change, but I suppose it could still be a breaking change in certain use cases. If you are doing clever things with the `end` and `error` events of a query object you might want to check to make sure its still behaving normally, though it is most likely not an issue. - -#### New features - -- [Supercharge `prepareValue`](https://github.com/brianc/node-postgres/pull/555) - -The long & short of it is now any object you supply in the list of query values will be inspected for a `.toPostgres` method. If the method is present it will be called and its result used as the raw text value sent to PostgreSQL for that value. This allows the same type of custom type coercion on query parameters as was previously afforded to query result values. - -- [Domain aware connection pool](https://github.com/brianc/node-postgres/pull/531) - -If domains are active node-postgres will honor them and do everything it can to ensure all callbacks are properly fired in the active domain. If you have tried to use domains with node-postgres (or many other modules which pool long lived event emitters) you may have run into an issue where the active domain changes before and after a callback. This has been a longstanding footgun within node-postgres and I am happy to get it fixed. - -- [Disconnected clients now removed from pool](https://github.com/brianc/node-postgres/pull/543) - -Avoids a scenario where your pool could fill up with disconnected & unusable clients. - -- [Break type parsing code into separate module](https://github.com/brianc/node-postgres/pull/541) - -To provide better documentation and a clearer explanation of how to override the query result parsing system we broke the type converters [into their own module](https://github.com/brianc/node-pg-types). There is still work around removing the 'global-ness' of the type converters so each query or connection can return types differently, but this is a good first step and allow a lot more obvious way to return int8 results as JavaScript numbers, for example - -### v2.11.0 - -- Add support for [application_name](https://github.com/brianc/node-postgres/pull/497) - -### v2.10.0 - -- Add support for [the password file](http://www.postgresql.org/docs/9.3/static/libpq-pgpass.html) - -### v2.9.0 - -- Add better support for [unix domain socket](https://github.com/brianc/node-postgres/pull/487) connections - -### v2.8.0 - -- Add support for parsing JSON[] and UUID[] result types - -### v2.7.0 - -- Use single row mode in native bindings when available [@rpedela] - - reduces memory consumption when handling row values in 'row' event -- Automatically bind buffer type parameters as binary [@eugeneware] - -### v2.6.0 - -- Respect PGSSLMODE environment variable - -### v2.5.0 - -- Ability to opt-in to int8 parsing via `pg.defaults.parseInt8 = true` - -### v2.4.0 - -- Use eval in the result set parser to increase performance - -### v2.3.0 - -- Remove built-in support for binary Int64 parsing. - _Due to the low usage & required compiled dependency this will be pushed into a 3rd party add-on_ - -### v2.2.0 - -- [Add support for excapeLiteral and escapeIdentifier in both JavaScript and the native bindings](https://github.com/brianc/node-postgres/pull/396) - -### v2.1.0 - -- Add support for SSL connections in JavaScript driver -- this means you can connect to heroku postgres from your local machine without the native bindings! -- [Add field metadata to result object](https://github.com/brianc/node-postgres/blob/master/test/integration/client/row-description-on-results-tests.js) -- [Add ability for rows to be returned as arrays instead of objects](https://github.com/brianc/node-postgres/blob/master/test/integration/client/results-as-array-tests.js) - -### v2.0.0 - -- Properly handle various PostgreSQL to JavaScript type conversions to avoid data loss: - -``` -PostgreSQL | pg@v2.0 JavaScript | pg@v1.0 JavaScript ---------------------------------|---------------- -float4 | number (float) | string -float8 | number (float) | string -int8 | string | number (int) -numeric | string | number (float) -decimal | string | number (float) -``` - -For more information see https://github.com/brianc/node-postgres/pull/353 -If you are unhappy with these changes you can always [override the built in type parsing fairly easily](https://github.com/brianc/node-pg-parse-float). - -### v1.3.0 - -- Make client_encoding configurable and optional - -### v1.2.0 - -- return field metadata on result object: access via result.fields[i].name/dataTypeID - -### v1.1.0 - -- built in support for `JSON` data type for PostgreSQL Server @ v9.2.0 or greater - -### v1.0.0 - -- remove deprecated functionality - - Callback function passed to `pg.connect` now **requires** 3 arguments - - Client#pauseDrain() / Client#resumeDrain removed - - numeric, decimal, and float data types no longer parsed into float before being returned. Will be returned from query results as `String` - -### v0.15.0 - -- client now emits `end` when disconnected from back-end server -- if client is disconnected in the middle of a query, query receives an error - -### v0.14.0 - -- add deprecation warnings in prep for v1.0 -- fix read/write failures in native module under node v0.9.x diff --git a/node_modules/pg/LICENSE b/node_modules/pg/LICENSE deleted file mode 100644 index 389a278..0000000 --- a/node_modules/pg/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2010 - 2019 Brian Carlson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/node_modules/pg/Makefile b/node_modules/pg/Makefile deleted file mode 100644 index 52d0545..0000000 --- a/node_modules/pg/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -SHELL := /bin/sh - -connectionString=postgres:// - -params := $(connectionString) - -node-command := xargs -n 1 -I file node file $(params) - -.PHONY : test test-connection test-integration bench test-native \ - lint publish test-missing-native update-npm - -all: - npm install - -help: - @echo "make test-all [connectionString=postgres://]" - -test: test-unit - -test-all: lint test-missing-native test-unit test-integration test-native - - -update-npm: - @npm i npm --global - -bench: - @find benchmark -name "*-bench.js" | $(node-command) - -test-unit: - @find test/unit -name "*-tests.js" | $(node-command) - -test-connection: - @echo "***Testing connection***" - @node script/create-test-tables.js $(params) - -test-missing-native: - @echo "***Testing optional native install***" - @rm -rf node_modules/pg-native - @rm -rf node_modules/libpq - @node test/native/missing-native.js - @rm -rf node_modules/pg-native - @rm -rf node_modules/libpq - -node_modules/pg-native/index.js: - @npm i --no-save pg-native - -test-native: node_modules/pg-native/index.js test-connection - @echo "***Testing native bindings***" - @find test/native -name "*-tests.js" | $(node-command) - @find test/integration -name "*-tests.js" | $(node-command) native - -test-integration: test-connection - @echo "***Testing Pure Javascript***" - @find test/integration -name "*-tests.js" | $(node-command) - -test-binary: test-connection - @echo "***Testing Pure Javascript (binary)***" - @find test/integration -name "*-tests.js" | $(node-command) binary - -test-pool: - @find test/integration/connection-pool -name "*.js" | $(node-command) binary - -lint: - @echo "***Starting lint***" - node -e "process.exit(Number(process.versions.node.split('.')[0]) < 8 ? 0 : 1)" \ - && echo "***Skipping lint (node version too old)***" \ - || node_modules/.bin/eslint lib diff --git a/node_modules/pg/README.md b/node_modules/pg/README.md deleted file mode 100644 index 60cef53..0000000 --- a/node_modules/pg/README.md +++ /dev/null @@ -1,88 +0,0 @@ -# node-postgres - -[![Build Status](https://secure.travis-ci.org/brianc/node-postgres.svg?branch=master)](http://travis-ci.org/brianc/node-postgres) -[![Dependency Status](https://david-dm.org/brianc/node-postgres.svg)](https://david-dm.org/brianc/node-postgres) -NPM version -NPM downloads - -Non-blocking PostgreSQL client for Node.js. Pure JavaScript and optional native libpq bindings. - -## Install - -```sh -$ npm install pg -``` - ---- -## :star: [Documentation](https://node-postgres.com) :star: - - -### Features - -* Pure JavaScript client and native libpq bindings share _the same API_ -* Connection pooling -* Extensible JS<->PostgreSQL data-type coercion -* Supported PostgreSQL features - * Parameterized queries - * Named statements with query plan caching - * Async notifications with `LISTEN/NOTIFY` - * Bulk import & export with `COPY TO/COPY FROM` - -### Extras - -node-postgres is by design pretty light on abstractions. These are some handy modules we've been using over the years to complete the picture. -The entire list can be found on our [wiki](https://github.com/brianc/node-postgres/wiki/Extras). - -## Support - -node-postgres is free software. If you encounter a bug with the library please open an issue on the [GitHub repo](https://github.com/brianc/node-postgres). If you have questions unanswered by the documentation please open an issue pointing out how the documentation was unclear & I will do my best to make it better! - -When you open an issue please provide: -- version of Node -- version of Postgres -- smallest possible snippet of code to reproduce the problem - -You can also follow me [@briancarlson](https://twitter.com/briancarlson) if that's your thing. I try to always announce noteworthy changes & developments with node-postgres on Twitter. - -### Professional Support - -I offer professional support for node-postgres. I provide implementation, training, and many years of expertise on how to build applications with Node, Express, PostgreSQL, and React/Redux. Please contact me at [brian.m.carlson@gmail.com](mailto:brian.m.carlson@gmail.com) to discuss how I can help your company be more successful! - -### Sponsorship :star: - -If you are benefiting from node-postgres and would like to help keep the project financially sustainable please visit Brian Carlson's [Patreon page](https://www.patreon.com/node_postgres). - -## Contributing - -__:heart: contributions!__ - -I will __happily__ accept your pull request if it: -- __has tests__ -- looks reasonable -- does not break backwards compatibility - -## Troubleshooting and FAQ - -The causes and solutions to common errors can be found among the [Frequently Asked Questions (FAQ)](https://github.com/brianc/node-postgres/wiki/FAQ) - -## License - -Copyright (c) 2010-2019 Brian Carlson (brian.m.carlson@gmail.com) - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. diff --git a/node_modules/pg/SPONSORS.md b/node_modules/pg/SPONSORS.md deleted file mode 100644 index 29aae9e..0000000 --- a/node_modules/pg/SPONSORS.md +++ /dev/null @@ -1,25 +0,0 @@ -node-postgres is made possible by the helpful contributors from the community well as the following generous supporters on [Patreon](https://www.patreon.com/node_postgres). - -# Leaders - -- [MadKudu](https://www.madkudu.com) - [@madkudu](https://twitter.com/madkudu) -- [Third Iron](https://thirdiron.com/) -- [Timescale](https://timescale.com) - -# Supporters - -- John Fawcett -- Lalit Kapoor [@lalitkapoor](https://twitter.com/lalitkapoor) -- Paul Frazee [@pfrazee](https://twitter.com/pfrazee) -- Rein Petersen -- Arnaud Benhamdine [@abenhamdine](https://twitter.com/abenhamdine) -- Matthew Welke -- Matthew Weber -- Andrea De Simon -- Todd Kennedy -- Alexander Robson -- Benjie Gillam -- David Hanson -- Franklin Davenport -- [Eventbot](https://geteventbot.com/) -- Chuck T diff --git a/node_modules/pg/lib/client.js b/node_modules/pg/lib/client.js deleted file mode 100644 index cca5e66..0000000 --- a/node_modules/pg/lib/client.js +++ /dev/null @@ -1,561 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var EventEmitter = require('events').EventEmitter -var util = require('util') -var utils = require('./utils') -var sasl = require('./sasl') -var pgPass = require('pgpass') -var TypeOverrides = require('./type-overrides') - -var ConnectionParameters = require('./connection-parameters') -var Query = require('./query') -var defaults = require('./defaults') -var Connection = require('./connection') - -var Client = function (config) { - EventEmitter.call(this) - - this.connectionParameters = new ConnectionParameters(config) - this.user = this.connectionParameters.user - this.database = this.connectionParameters.database - this.port = this.connectionParameters.port - this.host = this.connectionParameters.host - this.password = this.connectionParameters.password - this.replication = this.connectionParameters.replication - - var c = config || {} - - this._Promise = c.Promise || global.Promise - this._types = new TypeOverrides(c.types) - this._ending = false - this._connecting = false - this._connected = false - this._connectionError = false - this._queryable = true - - this.connection = c.connection || new Connection({ - stream: c.stream, - ssl: this.connectionParameters.ssl, - keepAlive: c.keepAlive || false, - keepAliveInitialDelayMillis: c.keepAliveInitialDelayMillis || 0, - encoding: this.connectionParameters.client_encoding || 'utf8' - }) - this.queryQueue = [] - this.binary = c.binary || defaults.binary - this.processID = null - this.secretKey = null - this.ssl = this.connectionParameters.ssl || false - this._connectionTimeoutMillis = c.connectionTimeoutMillis || 0 -} - -util.inherits(Client, EventEmitter) - -Client.prototype._errorAllQueries = function (err) { - const enqueueError = (query) => { - process.nextTick(() => { - query.handleError(err, this.connection) - }) - } - - if (this.activeQuery) { - enqueueError(this.activeQuery) - this.activeQuery = null - } - - this.queryQueue.forEach(enqueueError) - this.queryQueue.length = 0 -} - -Client.prototype._connect = function (callback) { - var self = this - var con = this.connection - if (this._connecting || this._connected) { - const err = new Error('Client has already been connected. You cannot reuse a client.') - process.nextTick(() => { - callback(err) - }) - return - } - this._connecting = true - - var connectionTimeoutHandle - if (this._connectionTimeoutMillis > 0) { - connectionTimeoutHandle = setTimeout(() => { - con._ending = true - con.stream.destroy(new Error('timeout expired')) - }, this._connectionTimeoutMillis) - } - - if (this.host && this.host.indexOf('/') === 0) { - con.connect(this.host + '/.s.PGSQL.' + this.port) - } else { - con.connect(this.port, this.host) - } - - // once connection is established send startup message - con.on('connect', function () { - if (self.ssl) { - con.requestSsl() - } else { - con.startup(self.getStartupConf()) - } - }) - - con.on('sslconnect', function () { - con.startup(self.getStartupConf()) - }) - - function checkPgPass (cb) { - return function (msg) { - if (typeof self.password === 'function') { - self._Promise.resolve() - .then(() => self.password()) - .then(pass => { - if (pass !== undefined) { - if (typeof pass !== 'string') { - con.emit('error', new TypeError('Password must be a string')) - return - } - self.connectionParameters.password = self.password = pass - } else { - self.connectionParameters.password = self.password = null - } - cb(msg) - }).catch(err => { - con.emit('error', err) - }) - } else if (self.password !== null) { - cb(msg) - } else { - pgPass(self.connectionParameters, function (pass) { - if (undefined !== pass) { - self.connectionParameters.password = self.password = pass - } - cb(msg) - }) - } - } - } - - // password request handling - con.on('authenticationCleartextPassword', checkPgPass(function () { - con.password(self.password) - })) - - // password request handling - con.on('authenticationMD5Password', checkPgPass(function (msg) { - con.password(utils.postgresMd5PasswordHash(self.user, self.password, msg.salt)) - })) - - // password request handling (SASL) - var saslSession - con.on('authenticationSASL', checkPgPass(function (msg) { - saslSession = sasl.startSession(msg.mechanisms) - - con.sendSASLInitialResponseMessage(saslSession.mechanism, saslSession.response) - })) - - // password request handling (SASL) - con.on('authenticationSASLContinue', function (msg) { - sasl.continueSession(saslSession, self.password, msg.data) - - con.sendSCRAMClientFinalMessage(saslSession.response) - }) - - // password request handling (SASL) - con.on('authenticationSASLFinal', function (msg) { - sasl.finalizeSession(saslSession, msg.data) - - saslSession = null - }) - - con.once('backendKeyData', function (msg) { - self.processID = msg.processID - self.secretKey = msg.secretKey - }) - - const connectingErrorHandler = (err) => { - if (this._connectionError) { - return - } - this._connectionError = true - clearTimeout(connectionTimeoutHandle) - if (callback) { - return callback(err) - } - this.emit('error', err) - } - - const connectedErrorHandler = (err) => { - this._queryable = false - this._errorAllQueries(err) - this.emit('error', err) - } - - const connectedErrorMessageHandler = (msg) => { - const activeQuery = this.activeQuery - - if (!activeQuery) { - connectedErrorHandler(msg) - return - } - - this.activeQuery = null - activeQuery.handleError(msg, con) - } - - con.on('error', connectingErrorHandler) - con.on('errorMessage', connectingErrorHandler) - - // hook up query handling events to connection - // after the connection initially becomes ready for queries - con.once('readyForQuery', function () { - self._connecting = false - self._connected = true - self._attachListeners(con) - con.removeListener('error', connectingErrorHandler) - con.removeListener('errorMessage', connectingErrorHandler) - con.on('error', connectedErrorHandler) - con.on('errorMessage', connectedErrorMessageHandler) - clearTimeout(connectionTimeoutHandle) - - // process possible callback argument to Client#connect - if (callback) { - callback(null, self) - // remove callback for proper error handling - // after the connect event - callback = null - } - self.emit('connect') - }) - - con.on('readyForQuery', function () { - var activeQuery = self.activeQuery - self.activeQuery = null - self.readyForQuery = true - if (activeQuery) { - activeQuery.handleReadyForQuery(con) - } - self._pulseQueryQueue() - }) - - con.once('end', () => { - const error = this._ending - ? new Error('Connection terminated') - : new Error('Connection terminated unexpectedly') - - this._errorAllQueries(error) - - if (!this._ending) { - // if the connection is ended without us calling .end() - // on this client then we have an unexpected disconnection - // treat this as an error unless we've already emitted an error - // during connection. - if (this._connecting && !this._connectionError) { - if (callback) { - callback(error) - } else { - connectedErrorHandler(error) - } - } else if (!this._connectionError) { - connectedErrorHandler(error) - } - } - - process.nextTick(() => { - this.emit('end') - }) - }) - - con.on('notice', function (msg) { - self.emit('notice', msg) - }) -} - -Client.prototype.connect = function (callback) { - if (callback) { - this._connect(callback) - return - } - - return new this._Promise((resolve, reject) => { - this._connect((error) => { - if (error) { - reject(error) - } else { - resolve() - } - }) - }) -} - -Client.prototype._attachListeners = function (con) { - const self = this - // delegate rowDescription to active query - con.on('rowDescription', function (msg) { - self.activeQuery.handleRowDescription(msg) - }) - - // delegate dataRow to active query - con.on('dataRow', function (msg) { - self.activeQuery.handleDataRow(msg) - }) - - // delegate portalSuspended to active query - // eslint-disable-next-line no-unused-vars - con.on('portalSuspended', function (msg) { - self.activeQuery.handlePortalSuspended(con) - }) - - // delegate emptyQuery to active query - // eslint-disable-next-line no-unused-vars - con.on('emptyQuery', function (msg) { - self.activeQuery.handleEmptyQuery(con) - }) - - // delegate commandComplete to active query - con.on('commandComplete', function (msg) { - self.activeQuery.handleCommandComplete(msg, con) - }) - - // if a prepared statement has a name and properly parses - // we track that its already been executed so we don't parse - // it again on the same client - // eslint-disable-next-line no-unused-vars - con.on('parseComplete', function (msg) { - if (self.activeQuery.name) { - con.parsedStatements[self.activeQuery.name] = self.activeQuery.text - } - }) - - // eslint-disable-next-line no-unused-vars - con.on('copyInResponse', function (msg) { - self.activeQuery.handleCopyInResponse(self.connection) - }) - - con.on('copyData', function (msg) { - self.activeQuery.handleCopyData(msg, self.connection) - }) - - con.on('notification', function (msg) { - self.emit('notification', msg) - }) -} - -Client.prototype.getStartupConf = function () { - var params = this.connectionParameters - - var data = { - user: params.user, - database: params.database - } - - var appName = params.application_name || params.fallback_application_name - if (appName) { - data.application_name = appName - } - if (params.replication) { - data.replication = '' + params.replication - } - if (params.statement_timeout) { - data.statement_timeout = String(parseInt(params.statement_timeout, 10)) - } - - return data -} - -Client.prototype.cancel = function (client, query) { - if (client.activeQuery === query) { - var con = this.connection - - if (this.host && this.host.indexOf('/') === 0) { - con.connect(this.host + '/.s.PGSQL.' + this.port) - } else { - con.connect(this.port, this.host) - } - - // once connection is established send cancel message - con.on('connect', function () { - con.cancel(client.processID, client.secretKey) - }) - } else if (client.queryQueue.indexOf(query) !== -1) { - client.queryQueue.splice(client.queryQueue.indexOf(query), 1) - } -} - -Client.prototype.setTypeParser = function (oid, format, parseFn) { - return this._types.setTypeParser(oid, format, parseFn) -} - -Client.prototype.getTypeParser = function (oid, format) { - return this._types.getTypeParser(oid, format) -} - -// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c -Client.prototype.escapeIdentifier = function (str) { - return '"' + str.replace(/"/g, '""') + '"' -} - -// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c -Client.prototype.escapeLiteral = function (str) { - var hasBackslash = false - var escaped = '\'' - - for (var i = 0; i < str.length; i++) { - var c = str[i] - if (c === '\'') { - escaped += c + c - } else if (c === '\\') { - escaped += c + c - hasBackslash = true - } else { - escaped += c - } - } - - escaped += '\'' - - if (hasBackslash === true) { - escaped = ' E' + escaped - } - - return escaped -} - -Client.prototype._pulseQueryQueue = function () { - if (this.readyForQuery === true) { - this.activeQuery = this.queryQueue.shift() - if (this.activeQuery) { - this.readyForQuery = false - this.hasExecuted = true - - const queryError = this.activeQuery.submit(this.connection) - if (queryError) { - process.nextTick(() => { - this.activeQuery.handleError(queryError, this.connection) - this.readyForQuery = true - this._pulseQueryQueue() - }) - } - } else if (this.hasExecuted) { - this.activeQuery = null - this.emit('drain') - } - } -} - -Client.prototype.query = function (config, values, callback) { - // can take in strings, config object or query object - var query - var result - var readTimeout - var readTimeoutTimer - var queryCallback - - if (config === null || config === undefined) { - throw new TypeError('Client was passed a null or undefined query') - } else if (typeof config.submit === 'function') { - readTimeout = config.query_timeout || this.connectionParameters.query_timeout - result = query = config - if (typeof values === 'function') { - query.callback = query.callback || values - } - } else { - readTimeout = this.connectionParameters.query_timeout - query = new Query(config, values, callback) - if (!query.callback) { - result = new this._Promise((resolve, reject) => { - query.callback = (err, res) => err ? reject(err) : resolve(res) - }) - } - } - - if (readTimeout) { - queryCallback = query.callback - - readTimeoutTimer = setTimeout(() => { - var error = new Error('Query read timeout') - - process.nextTick(() => { - query.handleError(error, this.connection) - }) - - queryCallback(error) - - // we already returned an error, - // just do nothing if query completes - query.callback = () => {} - - // Remove from queue - var index = this.queryQueue.indexOf(query) - if (index > -1) { - this.queryQueue.splice(index, 1) - } - - this._pulseQueryQueue() - }, readTimeout) - - query.callback = (err, res) => { - clearTimeout(readTimeoutTimer) - queryCallback(err, res) - } - } - - if (this.binary && !query.binary) { - query.binary = true - } - - if (query._result && !query._result._types) { - query._result._types = this._types - } - - if (!this._queryable) { - process.nextTick(() => { - query.handleError(new Error('Client has encountered a connection error and is not queryable'), this.connection) - }) - return result - } - - if (this._ending) { - process.nextTick(() => { - query.handleError(new Error('Client was closed and is not queryable'), this.connection) - }) - return result - } - - this.queryQueue.push(query) - this._pulseQueryQueue() - return result -} - -Client.prototype.end = function (cb) { - this._ending = true - - if (this.activeQuery) { - // if we have an active query we need to force a disconnect - // on the socket - otherwise a hung query could block end forever - this.connection.stream.destroy() - } else { - this.connection.end() - } - - if (cb) { - this.connection.once('end', cb) - } else { - return new this._Promise((resolve) => { - this.connection.once('end', resolve) - }) - } -} - -// expose a Query constructor -Client.Query = Query - -module.exports = Client diff --git a/node_modules/pg/lib/connection-parameters.js b/node_modules/pg/lib/connection-parameters.js deleted file mode 100644 index 00ea761..0000000 --- a/node_modules/pg/lib/connection-parameters.js +++ /dev/null @@ -1,137 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var dns = require('dns') - -var defaults = require('./defaults') - -var parse = require('pg-connection-string').parse // parses a connection string - -var val = function (key, config, envVar) { - if (envVar === undefined) { - envVar = process.env['PG' + key.toUpperCase()] - } else if (envVar === false) { - // do nothing ... use false - } else { - envVar = process.env[envVar] - } - - return config[key] || - envVar || - defaults[key] -} - -var useSsl = function () { - switch (process.env.PGSSLMODE) { - case 'disable': - return false - case 'prefer': - case 'require': - case 'verify-ca': - case 'verify-full': - return true - } - return defaults.ssl -} - -var ConnectionParameters = function (config) { - // if a string is passed, it is a raw connection string so we parse it into a config - config = typeof config === 'string' ? parse(config) : config || {} - - // if the config has a connectionString defined, parse IT into the config we use - // this will override other default values with what is stored in connectionString - if (config.connectionString) { - config = Object.assign({}, config, parse(config.connectionString)) - } - - this.user = val('user', config) - this.database = val('database', config) - this.port = parseInt(val('port', config), 10) - this.host = val('host', config) - this.password = val('password', config) - this.binary = val('binary', config) - this.ssl = typeof config.ssl === 'undefined' ? useSsl() : config.ssl - this.client_encoding = val('client_encoding', config) - this.replication = val('replication', config) - // a domain socket begins with '/' - this.isDomainSocket = (!(this.host || '').indexOf('/')) - - this.application_name = val('application_name', config, 'PGAPPNAME') - this.fallback_application_name = val('fallback_application_name', config, false) - this.statement_timeout = val('statement_timeout', config, false) - this.query_timeout = val('query_timeout', config, false) - - if (config.connectionTimeoutMillis === undefined) { - this.connect_timeout = process.env.PGCONNECT_TIMEOUT || 0 - } else { - this.connect_timeout = Math.floor(config.connectionTimeoutMillis / 1000) - } - - if (config.keepAlive === false) { - this.keepalives = 0 - } else if (config.keepAlive === true) { - this.keepalives = 1 - } - - if (typeof config.keepAliveInitialDelayMillis === 'number') { - this.keepalives_idle = Math.floor(config.keepAliveInitialDelayMillis / 1000) - } -} - -// Convert arg to a string, surround in single quotes, and escape single quotes and backslashes -var quoteParamValue = function (value) { - return "'" + ('' + value).replace(/\\/g, '\\\\').replace(/'/g, "\\'") + "'" -} - -var add = function (params, config, paramName) { - var value = config[paramName] - if (value !== undefined && value !== null) { - params.push(paramName + '=' + quoteParamValue(value)) - } -} - -ConnectionParameters.prototype.getLibpqConnectionString = function (cb) { - var params = [] - add(params, this, 'user') - add(params, this, 'password') - add(params, this, 'port') - add(params, this, 'application_name') - add(params, this, 'fallback_application_name') - add(params, this, 'connect_timeout') - - var ssl = typeof this.ssl === 'object' ? this.ssl : this.ssl ? { sslmode: this.ssl } : {} - add(params, ssl, 'sslmode') - add(params, ssl, 'sslca') - add(params, ssl, 'sslkey') - add(params, ssl, 'sslcert') - add(params, ssl, 'sslrootcert') - - if (this.database) { - params.push('dbname=' + quoteParamValue(this.database)) - } - if (this.replication) { - params.push('replication=' + quoteParamValue(this.replication)) - } - if (this.host) { - params.push('host=' + quoteParamValue(this.host)) - } - if (this.isDomainSocket) { - return cb(null, params.join(' ')) - } - if (this.client_encoding) { - params.push('client_encoding=' + quoteParamValue(this.client_encoding)) - } - dns.lookup(this.host, function (err, address) { - if (err) return cb(err, null) - params.push('hostaddr=' + quoteParamValue(address)) - return cb(null, params.join(' ')) - }) -} - -module.exports = ConnectionParameters diff --git a/node_modules/pg/lib/connection.js b/node_modules/pg/lib/connection.js deleted file mode 100644 index 48d65d2..0000000 --- a/node_modules/pg/lib/connection.js +++ /dev/null @@ -1,705 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var net = require('net') -var EventEmitter = require('events').EventEmitter -var util = require('util') - -var Writer = require('buffer-writer') -var Reader = require('packet-reader') - -var TEXT_MODE = 0 -var BINARY_MODE = 1 -var Connection = function (config) { - EventEmitter.call(this) - config = config || {} - this.stream = config.stream || new net.Socket() - this._keepAlive = config.keepAlive - this._keepAliveInitialDelayMillis = config.keepAliveInitialDelayMillis - this.lastBuffer = false - this.lastOffset = 0 - this.buffer = null - this.offset = null - this.encoding = config.encoding || 'utf8' - this.parsedStatements = {} - this.writer = new Writer() - this.ssl = config.ssl || false - this._ending = false - this._mode = TEXT_MODE - this._emitMessage = false - this._reader = new Reader({ - headerSize: 1, - lengthPadding: -4 - }) - var self = this - this.on('newListener', function (eventName) { - if (eventName === 'message') { - self._emitMessage = true - } - }) -} - -util.inherits(Connection, EventEmitter) - -Connection.prototype.connect = function (port, host) { - var self = this - - if (this.stream.readyState === 'closed') { - this.stream.connect(port, host) - } else if (this.stream.readyState === 'open') { - this.emit('connect') - } - - this.stream.on('connect', function () { - if (self._keepAlive) { - self.stream.setKeepAlive(true, self._keepAliveInitialDelayMillis) - } - self.emit('connect') - }) - - const reportStreamError = function (error) { - // don't raise ECONNRESET errors - they can & should be ignored - // during disconnect - if (self._ending && error.code === 'ECONNRESET') { - return - } - self.emit('error', error) - } - this.stream.on('error', reportStreamError) - - this.stream.on('close', function () { - self.emit('end') - }) - - if (!this.ssl) { - return this.attachListeners(this.stream) - } - - this.stream.once('data', function (buffer) { - var responseCode = buffer.toString('utf8') - switch (responseCode) { - case 'N': // Server does not support SSL connections - return self.emit('error', new Error('The server does not support SSL connections')) - case 'S': // Server supports SSL connections, continue with a secure connection - break - default: // Any other response byte, including 'E' (ErrorResponse) indicating a server error - return self.emit('error', new Error('There was an error establishing an SSL connection')) - } - var tls = require('tls') - self.stream = tls.connect({ - socket: self.stream, - servername: host, - checkServerIdentity: self.ssl.checkServerIdentity || tls.checkServerIdentity, - rejectUnauthorized: self.ssl.rejectUnauthorized, - ca: self.ssl.ca, - pfx: self.ssl.pfx, - key: self.ssl.key, - passphrase: self.ssl.passphrase, - cert: self.ssl.cert, - secureOptions: self.ssl.secureOptions, - NPNProtocols: self.ssl.NPNProtocols - }) - self.attachListeners(self.stream) - self.stream.on('error', reportStreamError) - - self.emit('sslconnect') - }) -} - -Connection.prototype.attachListeners = function (stream) { - var self = this - stream.on('data', function (buff) { - self._reader.addChunk(buff) - var packet = self._reader.read() - while (packet) { - var msg = self.parseMessage(packet) - var eventName = msg.name === 'error' ? 'errorMessage' : msg.name - if (self._emitMessage) { - self.emit('message', msg) - } - self.emit(eventName, msg) - packet = self._reader.read() - } - }) - stream.on('end', function () { - self.emit('end') - }) -} - -Connection.prototype.requestSsl = function () { - var bodyBuffer = this.writer - .addInt16(0x04D2) - .addInt16(0x162F).flush() - - var length = bodyBuffer.length + 4 - - var buffer = new Writer() - .addInt32(length) - .add(bodyBuffer) - .join() - this.stream.write(buffer) -} - -Connection.prototype.startup = function (config) { - var writer = this.writer - .addInt16(3) - .addInt16(0) - - Object.keys(config).forEach(function (key) { - var val = config[key] - writer.addCString(key).addCString(val) - }) - - writer.addCString('client_encoding').addCString("'utf-8'") - - var bodyBuffer = writer.addCString('').flush() - // this message is sent without a code - - var length = bodyBuffer.length + 4 - - var buffer = new Writer() - .addInt32(length) - .add(bodyBuffer) - .join() - this.stream.write(buffer) -} - -Connection.prototype.cancel = function (processID, secretKey) { - var bodyBuffer = this.writer - .addInt16(1234) - .addInt16(5678) - .addInt32(processID) - .addInt32(secretKey) - .flush() - - var length = bodyBuffer.length + 4 - - var buffer = new Writer() - .addInt32(length) - .add(bodyBuffer) - .join() - this.stream.write(buffer) -} - -Connection.prototype.password = function (password) { - // 0x70 = 'p' - this._send(0x70, this.writer.addCString(password)) -} - -Connection.prototype.sendSASLInitialResponseMessage = function (mechanism, initialResponse) { - // 0x70 = 'p' - this.writer - .addCString(mechanism) - .addInt32(Buffer.byteLength(initialResponse)) - .addString(initialResponse) - - this._send(0x70) -} - -Connection.prototype.sendSCRAMClientFinalMessage = function (additionalData) { - // 0x70 = 'p' - this.writer - .addString(additionalData) - - this._send(0x70) -} - -Connection.prototype._send = function (code, more) { - if (!this.stream.writable) { - return false - } - if (more === true) { - this.writer.addHeader(code) - } else { - return this.stream.write(this.writer.flush(code)) - } -} - -Connection.prototype.query = function (text) { - // 0x51 = Q - this.stream.write(this.writer.addCString(text).flush(0x51)) -} - -// send parse message -// "more" === true to buffer the message until flush() is called -Connection.prototype.parse = function (query, more) { - // expect something like this: - // { name: 'queryName', - // text: 'select * from blah', - // types: ['int8', 'bool'] } - - // normalize missing query names to allow for null - query.name = query.name || '' - if (query.name.length > 63) { - /* eslint-disable no-console */ - console.error('Warning! Postgres only supports 63 characters for query names.') - console.error('You supplied %s (%s)', query.name, query.name.length) - console.error('This can cause conflicts and silent errors executing queries') - /* eslint-enable no-console */ - } - // normalize null type array - query.types = query.types || [] - var len = query.types.length - var buffer = this.writer - .addCString(query.name) // name of query - .addCString(query.text) // actual query text - .addInt16(len) - for (var i = 0; i < len; i++) { - buffer.addInt32(query.types[i]) - } - - var code = 0x50 - this._send(code, more) -} - -// send bind message -// "more" === true to buffer the message until flush() is called -Connection.prototype.bind = function (config, more) { - // normalize config - config = config || {} - config.portal = config.portal || '' - config.statement = config.statement || '' - config.binary = config.binary || false - var values = config.values || [] - var len = values.length - var useBinary = false - for (var j = 0; j < len; j++) { useBinary |= values[j] instanceof Buffer } - var buffer = this.writer - .addCString(config.portal) - .addCString(config.statement) - if (!useBinary) { buffer.addInt16(0) } else { - buffer.addInt16(len) - for (j = 0; j < len; j++) { buffer.addInt16(values[j] instanceof Buffer) } - } - buffer.addInt16(len) - for (var i = 0; i < len; i++) { - var val = values[i] - if (val === null || typeof val === 'undefined') { - buffer.addInt32(-1) - } else if (val instanceof Buffer) { - buffer.addInt32(val.length) - buffer.add(val) - } else { - buffer.addInt32(Buffer.byteLength(val)) - buffer.addString(val) - } - } - - if (config.binary) { - buffer.addInt16(1) // format codes to use binary - buffer.addInt16(1) - } else { - buffer.addInt16(0) // format codes to use text - } - // 0x42 = 'B' - this._send(0x42, more) -} - -// send execute message -// "more" === true to buffer the message until flush() is called -Connection.prototype.execute = function (config, more) { - config = config || {} - config.portal = config.portal || '' - config.rows = config.rows || '' - this.writer - .addCString(config.portal) - .addInt32(config.rows) - - // 0x45 = 'E' - this._send(0x45, more) -} - -var emptyBuffer = Buffer.alloc(0) - -Connection.prototype.flush = function () { - // 0x48 = 'H' - this.writer.add(emptyBuffer) - this._send(0x48) -} - -Connection.prototype.sync = function () { - // clear out any pending data in the writer - this.writer.flush(0) - - this.writer.add(emptyBuffer) - this._ending = true - this._send(0x53) -} - -const END_BUFFER = Buffer.from([0x58, 0x00, 0x00, 0x00, 0x04]) - -Connection.prototype.end = function () { - // 0x58 = 'X' - this.writer.add(emptyBuffer) - this._ending = true - return this.stream.write(END_BUFFER, () => { - this.stream.end() - }) -} - -Connection.prototype.close = function (msg, more) { - this.writer.addCString(msg.type + (msg.name || '')) - this._send(0x43, more) -} - -Connection.prototype.describe = function (msg, more) { - this.writer.addCString(msg.type + (msg.name || '')) - this._send(0x44, more) -} - -Connection.prototype.sendCopyFromChunk = function (chunk) { - this.stream.write(this.writer.add(chunk).flush(0x64)) -} - -Connection.prototype.endCopyFrom = function () { - this.stream.write(this.writer.add(emptyBuffer).flush(0x63)) -} - -Connection.prototype.sendCopyFail = function (msg) { - // this.stream.write(this.writer.add(emptyBuffer).flush(0x66)); - this.writer.addCString(msg) - this._send(0x66) -} - -var Message = function (name, length) { - this.name = name - this.length = length -} - -Connection.prototype.parseMessage = function (buffer) { - this.offset = 0 - var length = buffer.length + 4 - switch (this._reader.header) { - case 0x52: // R - return this.parseR(buffer, length) - - case 0x53: // S - return this.parseS(buffer, length) - - case 0x4b: // K - return this.parseK(buffer, length) - - case 0x43: // C - return this.parseC(buffer, length) - - case 0x5a: // Z - return this.parseZ(buffer, length) - - case 0x54: // T - return this.parseT(buffer, length) - - case 0x44: // D - return this.parseD(buffer, length) - - case 0x45: // E - return this.parseE(buffer, length) - - case 0x4e: // N - return this.parseN(buffer, length) - - case 0x31: // 1 - return new Message('parseComplete', length) - - case 0x32: // 2 - return new Message('bindComplete', length) - - case 0x33: // 3 - return new Message('closeComplete', length) - - case 0x41: // A - return this.parseA(buffer, length) - - case 0x6e: // n - return new Message('noData', length) - - case 0x49: // I - return new Message('emptyQuery', length) - - case 0x73: // s - return new Message('portalSuspended', length) - - case 0x47: // G - return this.parseG(buffer, length) - - case 0x48: // H - return this.parseH(buffer, length) - - case 0x57: // W - return new Message('replicationStart', length) - - case 0x63: // c - return new Message('copyDone', length) - - case 0x64: // d - return this.parsed(buffer, length) - } -} - -Connection.prototype.parseR = function (buffer, length) { - var code = this.parseInt32(buffer) - - var msg = new Message('authenticationOk', length) - - switch (code) { - case 0: // AuthenticationOk - return msg - case 3: // AuthenticationCleartextPassword - if (msg.length === 8) { - msg.name = 'authenticationCleartextPassword' - return msg - } - break - case 5: // AuthenticationMD5Password - if (msg.length === 12) { - msg.name = 'authenticationMD5Password' - msg.salt = Buffer.alloc(4) - buffer.copy(msg.salt, 0, this.offset, this.offset + 4) - this.offset += 4 - return msg - } - - break - case 10: // AuthenticationSASL - msg.name = 'authenticationSASL' - msg.mechanisms = [] - do { - var mechanism = this.parseCString(buffer) - - if (mechanism) { - msg.mechanisms.push(mechanism) - } - } while (mechanism) - - return msg - case 11: // AuthenticationSASLContinue - msg.name = 'authenticationSASLContinue' - msg.data = this.readString(buffer, length - 4) - - return msg - case 12: // AuthenticationSASLFinal - msg.name = 'authenticationSASLFinal' - msg.data = this.readString(buffer, length - 4) - - return msg - } - - throw new Error('Unknown authenticationOk message type' + util.inspect(msg)) -} - -Connection.prototype.parseS = function (buffer, length) { - var msg = new Message('parameterStatus', length) - msg.parameterName = this.parseCString(buffer) - msg.parameterValue = this.parseCString(buffer) - return msg -} - -Connection.prototype.parseK = function (buffer, length) { - var msg = new Message('backendKeyData', length) - msg.processID = this.parseInt32(buffer) - msg.secretKey = this.parseInt32(buffer) - return msg -} - -Connection.prototype.parseC = function (buffer, length) { - var msg = new Message('commandComplete', length) - msg.text = this.parseCString(buffer) - return msg -} - -Connection.prototype.parseZ = function (buffer, length) { - var msg = new Message('readyForQuery', length) - msg.name = 'readyForQuery' - msg.status = this.readString(buffer, 1) - return msg -} - -var ROW_DESCRIPTION = 'rowDescription' -Connection.prototype.parseT = function (buffer, length) { - var msg = new Message(ROW_DESCRIPTION, length) - msg.fieldCount = this.parseInt16(buffer) - var fields = [] - for (var i = 0; i < msg.fieldCount; i++) { - fields.push(this.parseField(buffer)) - } - msg.fields = fields - return msg -} - -var Field = function () { - this.name = null - this.tableID = null - this.columnID = null - this.dataTypeID = null - this.dataTypeSize = null - this.dataTypeModifier = null - this.format = null -} - -var FORMAT_TEXT = 'text' -var FORMAT_BINARY = 'binary' -Connection.prototype.parseField = function (buffer) { - var field = new Field() - field.name = this.parseCString(buffer) - field.tableID = this.parseInt32(buffer) - field.columnID = this.parseInt16(buffer) - field.dataTypeID = this.parseInt32(buffer) - field.dataTypeSize = this.parseInt16(buffer) - field.dataTypeModifier = this.parseInt32(buffer) - if (this.parseInt16(buffer) === TEXT_MODE) { - this._mode = TEXT_MODE - field.format = FORMAT_TEXT - } else { - this._mode = BINARY_MODE - field.format = FORMAT_BINARY - } - return field -} - -var DATA_ROW = 'dataRow' -var DataRowMessage = function (length, fieldCount) { - this.name = DATA_ROW - this.length = length - this.fieldCount = fieldCount - this.fields = [] -} - -// extremely hot-path code -Connection.prototype.parseD = function (buffer, length) { - var fieldCount = this.parseInt16(buffer) - var msg = new DataRowMessage(length, fieldCount) - for (var i = 0; i < fieldCount; i++) { - msg.fields.push(this._readValue(buffer)) - } - return msg -} - -// extremely hot-path code -Connection.prototype._readValue = function (buffer) { - var length = this.parseInt32(buffer) - if (length === -1) return null - if (this._mode === TEXT_MODE) { - return this.readString(buffer, length) - } - return this.readBytes(buffer, length) -} - -// parses error -Connection.prototype.parseE = function (buffer, length) { - var fields = {} - var msg, item - var input = new Message('error', length) - var fieldType = this.readString(buffer, 1) - while (fieldType !== '\0') { - fields[fieldType] = this.parseCString(buffer) - fieldType = this.readString(buffer, 1) - } - if (input.name === 'error') { - // the msg is an Error instance - msg = new Error(fields.M) - for (item in input) { - // copy input properties to the error - if (Object.prototype.hasOwnProperty.call(input, item)) { - msg[item] = input[item] - } - } - } else { - // the msg is an object literal - msg = input - msg.message = fields.M - } - msg.severity = fields.S - msg.code = fields.C - msg.detail = fields.D - msg.hint = fields.H - msg.position = fields.P - msg.internalPosition = fields.p - msg.internalQuery = fields.q - msg.where = fields.W - msg.schema = fields.s - msg.table = fields.t - msg.column = fields.c - msg.dataType = fields.d - msg.constraint = fields.n - msg.file = fields.F - msg.line = fields.L - msg.routine = fields.R - return msg -} - -// same thing, different name -Connection.prototype.parseN = function (buffer, length) { - var msg = this.parseE(buffer, length) - msg.name = 'notice' - return msg -} - -Connection.prototype.parseA = function (buffer, length) { - var msg = new Message('notification', length) - msg.processId = this.parseInt32(buffer) - msg.channel = this.parseCString(buffer) - msg.payload = this.parseCString(buffer) - return msg -} - -Connection.prototype.parseG = function (buffer, length) { - var msg = new Message('copyInResponse', length) - return this.parseGH(buffer, msg) -} - -Connection.prototype.parseH = function (buffer, length) { - var msg = new Message('copyOutResponse', length) - return this.parseGH(buffer, msg) -} - -Connection.prototype.parseGH = function (buffer, msg) { - var isBinary = buffer[this.offset] !== 0 - this.offset++ - msg.binary = isBinary - var columnCount = this.parseInt16(buffer) - msg.columnTypes = [] - for (var i = 0; i < columnCount; i++) { - msg.columnTypes.push(this.parseInt16(buffer)) - } - return msg -} - -Connection.prototype.parsed = function (buffer, length) { - var msg = new Message('copyData', length) - msg.chunk = this.readBytes(buffer, msg.length - 4) - return msg -} - -Connection.prototype.parseInt32 = function (buffer) { - var value = buffer.readInt32BE(this.offset) - this.offset += 4 - return value -} - -Connection.prototype.parseInt16 = function (buffer) { - var value = buffer.readInt16BE(this.offset) - this.offset += 2 - return value -} - -Connection.prototype.readString = function (buffer, length) { - return buffer.toString(this.encoding, this.offset, (this.offset += length)) -} - -Connection.prototype.readBytes = function (buffer, length) { - return buffer.slice(this.offset, (this.offset += length)) -} - -Connection.prototype.parseCString = function (buffer) { - var start = this.offset - var end = buffer.indexOf(0, start) - this.offset = end + 1 - return buffer.toString(this.encoding, start, end) -} -// end parsing methods -module.exports = Connection diff --git a/node_modules/pg/lib/defaults.js b/node_modules/pg/lib/defaults.js deleted file mode 100644 index bd1bf6d..0000000 --- a/node_modules/pg/lib/defaults.js +++ /dev/null @@ -1,81 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -module.exports = { - // database host. defaults to localhost - host: 'localhost', - - // database user's name - user: process.platform === 'win32' ? process.env.USERNAME : process.env.USER, - - // name of database to connect - database: process.platform === 'win32' ? process.env.USERNAME : process.env.USER, - - // database user's password - password: null, - - // a Postgres connection string to be used instead of setting individual connection items - // NOTE: Setting this value will cause it to override any other value (such as database or user) defined - // in the defaults object. - connectionString: undefined, - - // database port - port: 5432, - - // number of rows to return at a time from a prepared statement's - // portal. 0 will return all rows at once - rows: 0, - - // binary result mode - binary: false, - - // Connection pool options - see https://github.com/brianc/node-pg-pool - - // number of connections to use in connection pool - // 0 will disable connection pooling - max: 10, - - // max milliseconds a client can go unused before it is removed - // from the pool and destroyed - idleTimeoutMillis: 30000, - - client_encoding: '', - - ssl: false, - - application_name: undefined, - - fallback_application_name: undefined, - - parseInputDatesAsUTC: false, - - // max milliseconds any query using this connection will execute for before timing out in error. - // false=unlimited - statement_timeout: false, - - // max milliseconds to wait for query to complete (client side) - query_timeout: false, - - connect_timeout: 0, - - keepalives: 1, - - keepalives_idle: 0 -} - -var pgTypes = require('pg-types') -// save default parsers -var parseBigInteger = pgTypes.getTypeParser(20, 'text') -var parseBigIntegerArray = pgTypes.getTypeParser(1016, 'text') - -// parse int8 so you can get your count values as actual numbers -module.exports.__defineSetter__('parseInt8', function (val) { - pgTypes.setTypeParser(20, 'text', val ? pgTypes.getTypeParser(23, 'text') : parseBigInteger) - pgTypes.setTypeParser(1016, 'text', val ? pgTypes.getTypeParser(1007, 'text') : parseBigIntegerArray) -}) diff --git a/node_modules/pg/lib/index.js b/node_modules/pg/lib/index.js deleted file mode 100644 index 8e000a3..0000000 --- a/node_modules/pg/lib/index.js +++ /dev/null @@ -1,59 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var util = require('util') -var Client = require('./client') -var defaults = require('./defaults') -var Connection = require('./connection') -var Pool = require('pg-pool') - -const poolFactory = (Client) => { - var BoundPool = function (options) { - var config = Object.assign({ Client: Client }, options) - return new Pool(config) - } - - util.inherits(BoundPool, Pool) - - return BoundPool -} - -var PG = function (clientConstructor) { - this.defaults = defaults - this.Client = clientConstructor - this.Query = this.Client.Query - this.Pool = poolFactory(this.Client) - this._pools = [] - this.Connection = Connection - this.types = require('pg-types') -} - -if (typeof process.env.NODE_PG_FORCE_NATIVE !== 'undefined') { - module.exports = new PG(require('./native')) -} else { - module.exports = new PG(Client) - - // lazy require native module...the native module may not have installed - module.exports.__defineGetter__('native', function () { - delete module.exports.native - var native = null - try { - native = new PG(require('./native')) - } catch (err) { - if (err.code !== 'MODULE_NOT_FOUND') { - throw err - } - /* eslint-disable no-console */ - console.error(err.message) - /* eslint-enable no-console */ - } - module.exports.native = native - return native - }) -} diff --git a/node_modules/pg/lib/native/client.js b/node_modules/pg/lib/native/client.js deleted file mode 100644 index 6859bc2..0000000 --- a/node_modules/pg/lib/native/client.js +++ /dev/null @@ -1,295 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -// eslint-disable-next-line -var Native = require('pg-native') -var TypeOverrides = require('../type-overrides') -var semver = require('semver') -var pkg = require('../../package.json') -var assert = require('assert') -var EventEmitter = require('events').EventEmitter -var util = require('util') -var ConnectionParameters = require('../connection-parameters') - -var msg = 'Version >= ' + pkg.minNativeVersion + ' of pg-native required.' -assert(semver.gte(Native.version, pkg.minNativeVersion), msg) - -var NativeQuery = require('./query') - -var Client = module.exports = function (config) { - EventEmitter.call(this) - config = config || {} - - this._Promise = config.Promise || global.Promise - this._types = new TypeOverrides(config.types) - - this.native = new Native({ - types: this._types - }) - - this._queryQueue = [] - this._ending = false - this._connecting = false - this._connected = false - this._queryable = true - - // keep these on the object for legacy reasons - // for the time being. TODO: deprecate all this jazz - var cp = this.connectionParameters = new ConnectionParameters(config) - this.user = cp.user - this.password = cp.password - this.database = cp.database - this.host = cp.host - this.port = cp.port - - // a hash to hold named queries - this.namedQueries = {} -} - -Client.Query = NativeQuery - -util.inherits(Client, EventEmitter) - -Client.prototype._errorAllQueries = function (err) { - const enqueueError = (query) => { - process.nextTick(() => { - query.native = this.native - query.handleError(err) - }) - } - - if (this._hasActiveQuery()) { - enqueueError(this._activeQuery) - this._activeQuery = null - } - - this._queryQueue.forEach(enqueueError) - this._queryQueue.length = 0 -} - -// connect to the backend -// pass an optional callback to be called once connected -// or with an error if there was a connection error -Client.prototype._connect = function (cb) { - var self = this - - if (this._connecting) { - process.nextTick(() => cb(new Error('Client has already been connected. You cannot reuse a client.'))) - return - } - - this._connecting = true - - this.connectionParameters.getLibpqConnectionString(function (err, conString) { - if (err) return cb(err) - self.native.connect(conString, function (err) { - if (err) return cb(err) - - // set internal states to connected - self._connected = true - - // handle connection errors from the native layer - self.native.on('error', function (err) { - self._queryable = false - self._errorAllQueries(err) - self.emit('error', err) - }) - - self.native.on('notification', function (msg) { - self.emit('notification', { - channel: msg.relname, - payload: msg.extra - }) - }) - - // signal we are connected now - self.emit('connect') - self._pulseQueryQueue(true) - - cb() - }) - }) -} - -Client.prototype.connect = function (callback) { - if (callback) { - this._connect(callback) - return - } - - return new this._Promise((resolve, reject) => { - this._connect((error) => { - if (error) { - reject(error) - } else { - resolve() - } - }) - }) -} - -// send a query to the server -// this method is highly overloaded to take -// 1) string query, optional array of parameters, optional function callback -// 2) object query with { -// string query -// optional array values, -// optional function callback instead of as a separate parameter -// optional string name to name & cache the query plan -// optional string rowMode = 'array' for an array of results -// } -Client.prototype.query = function (config, values, callback) { - var query - var result - var readTimeout - var readTimeoutTimer - var queryCallback - - if (config === null || config === undefined) { - throw new TypeError('Client was passed a null or undefined query') - } else if (typeof config.submit === 'function') { - readTimeout = config.query_timeout || this.connectionParameters.query_timeout - result = query = config - // accept query(new Query(...), (err, res) => { }) style - if (typeof values === 'function') { - config.callback = values - } - } else { - readTimeout = this.connectionParameters.query_timeout - query = new NativeQuery(config, values, callback) - if (!query.callback) { - let resolveOut, rejectOut - result = new this._Promise((resolve, reject) => { - resolveOut = resolve - rejectOut = reject - }) - query.callback = (err, res) => err ? rejectOut(err) : resolveOut(res) - } - } - - if (readTimeout) { - queryCallback = query.callback - - readTimeoutTimer = setTimeout(() => { - var error = new Error('Query read timeout') - - process.nextTick(() => { - query.handleError(error, this.connection) - }) - - queryCallback(error) - - // we already returned an error, - // just do nothing if query completes - query.callback = () => {} - - // Remove from queue - var index = this._queryQueue.indexOf(query) - if (index > -1) { - this._queryQueue.splice(index, 1) - } - - this._pulseQueryQueue() - }, readTimeout) - - query.callback = (err, res) => { - clearTimeout(readTimeoutTimer) - queryCallback(err, res) - } - } - - if (!this._queryable) { - query.native = this.native - process.nextTick(() => { - query.handleError(new Error('Client has encountered a connection error and is not queryable')) - }) - return result - } - - if (this._ending) { - query.native = this.native - process.nextTick(() => { - query.handleError(new Error('Client was closed and is not queryable')) - }) - return result - } - - this._queryQueue.push(query) - this._pulseQueryQueue() - return result -} - -// disconnect from the backend server -Client.prototype.end = function (cb) { - var self = this - - this._ending = true - - if (!this._connected) { - this.once('connect', this.end.bind(this, cb)) - } - var result - if (!cb) { - result = new this._Promise(function (resolve, reject) { - cb = (err) => err ? reject(err) : resolve() - }) - } - this.native.end(function () { - self._errorAllQueries(new Error('Connection terminated')) - - process.nextTick(() => { - self.emit('end') - if (cb) cb() - }) - }) - return result -} - -Client.prototype._hasActiveQuery = function () { - return this._activeQuery && this._activeQuery.state !== 'error' && this._activeQuery.state !== 'end' -} - -Client.prototype._pulseQueryQueue = function (initialConnection) { - if (!this._connected) { - return - } - if (this._hasActiveQuery()) { - return - } - var query = this._queryQueue.shift() - if (!query) { - if (!initialConnection) { - this.emit('drain') - } - return - } - this._activeQuery = query - query.submit(this) - var self = this - query.once('_done', function () { - self._pulseQueryQueue() - }) -} - -// attempt to cancel an in-progress query -Client.prototype.cancel = function (query) { - if (this._activeQuery === query) { - this.native.cancel(function () {}) - } else if (this._queryQueue.indexOf(query) !== -1) { - this._queryQueue.splice(this._queryQueue.indexOf(query), 1) - } -} - -Client.prototype.setTypeParser = function (oid, format, parseFn) { - return this._types.setTypeParser(oid, format, parseFn) -} - -Client.prototype.getTypeParser = function (oid, format) { - return this._types.getTypeParser(oid, format) -} diff --git a/node_modules/pg/lib/native/index.js b/node_modules/pg/lib/native/index.js deleted file mode 100644 index eead422..0000000 --- a/node_modules/pg/lib/native/index.js +++ /dev/null @@ -1,2 +0,0 @@ -'use strict' -module.exports = require('./client') diff --git a/node_modules/pg/lib/native/query.js b/node_modules/pg/lib/native/query.js deleted file mode 100644 index 0c83e27..0000000 --- a/node_modules/pg/lib/native/query.js +++ /dev/null @@ -1,167 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var EventEmitter = require('events').EventEmitter -var util = require('util') -var utils = require('../utils') - -var NativeQuery = module.exports = function (config, values, callback) { - EventEmitter.call(this) - config = utils.normalizeQueryConfig(config, values, callback) - this.text = config.text - this.values = config.values - this.name = config.name - this.callback = config.callback - this.state = 'new' - this._arrayMode = config.rowMode === 'array' - - // if the 'row' event is listened for - // then emit them as they come in - // without setting singleRowMode to true - // this has almost no meaning because libpq - // reads all rows into memory befor returning any - this._emitRowEvents = false - this.on('newListener', function (event) { - if (event === 'row') this._emitRowEvents = true - }.bind(this)) -} - -util.inherits(NativeQuery, EventEmitter) - -var errorFieldMap = { - /* eslint-disable quote-props */ - 'sqlState': 'code', - 'statementPosition': 'position', - 'messagePrimary': 'message', - 'context': 'where', - 'schemaName': 'schema', - 'tableName': 'table', - 'columnName': 'column', - 'dataTypeName': 'dataType', - 'constraintName': 'constraint', - 'sourceFile': 'file', - 'sourceLine': 'line', - 'sourceFunction': 'routine' -} - -NativeQuery.prototype.handleError = function (err) { - // copy pq error fields into the error object - var fields = this.native.pq.resultErrorFields() - if (fields) { - for (var key in fields) { - var normalizedFieldName = errorFieldMap[key] || key - err[normalizedFieldName] = fields[key] - } - } - if (this.callback) { - this.callback(err) - } else { - this.emit('error', err) - } - this.state = 'error' -} - -NativeQuery.prototype.then = function (onSuccess, onFailure) { - return this._getPromise().then(onSuccess, onFailure) -} - -NativeQuery.prototype.catch = function (callback) { - return this._getPromise().catch(callback) -} - -NativeQuery.prototype._getPromise = function () { - if (this._promise) return this._promise - this._promise = new Promise(function (resolve, reject) { - this._once('end', resolve) - this._once('error', reject) - }.bind(this)) - return this._promise -} - -NativeQuery.prototype.submit = function (client) { - this.state = 'running' - var self = this - this.native = client.native - client.native.arrayMode = this._arrayMode - - var after = function (err, rows, results) { - client.native.arrayMode = false - setImmediate(function () { - self.emit('_done') - }) - - // handle possible query error - if (err) { - return self.handleError(err) - } - - // emit row events for each row in the result - if (self._emitRowEvents) { - if (results.length > 1) { - rows.forEach((rowOfRows, i) => { - rowOfRows.forEach(row => { - self.emit('row', row, results[i]) - }) - }) - } else { - rows.forEach(function (row) { - self.emit('row', row, results) - }) - } - } - - // handle successful result - self.state = 'end' - self.emit('end', results) - if (self.callback) { - self.callback(null, results) - } - } - - if (process.domain) { - after = process.domain.bind(after) - } - - // named query - if (this.name) { - if (this.name.length > 63) { - /* eslint-disable no-console */ - console.error('Warning! Postgres only supports 63 characters for query names.') - console.error('You supplied %s (%s)', this.name, this.name.length) - console.error('This can cause conflicts and silent errors executing queries') - /* eslint-enable no-console */ - } - var values = (this.values || []).map(utils.prepareValue) - - // check if the client has already executed this named query - // if so...just execute it again - skip the planning phase - if (client.namedQueries[this.name]) { - if (this.text && client.namedQueries[this.name] !== this.text) { - const err = new Error(`Prepared statements must be unique - '${this.name}' was used for a different statement`) - return after(err) - } - return client.native.execute(this.name, values, after) - } - // plan the named query the first time, then execute it - return client.native.prepare(this.name, this.text, values.length, function (err) { - if (err) return after(err) - client.namedQueries[self.name] = self.text - return self.native.execute(self.name, values, after) - }) - } else if (this.values) { - if (!Array.isArray(this.values)) { - const err = new Error('Query values must be an array') - return after(err) - } - var vals = this.values.map(utils.prepareValue) - client.native.query(this.text, vals, after) - } else { - client.native.query(this.text, after) - } -} diff --git a/node_modules/pg/lib/query.js b/node_modules/pg/lib/query.js deleted file mode 100644 index 250e895..0000000 --- a/node_modules/pg/lib/query.js +++ /dev/null @@ -1,229 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var EventEmitter = require('events').EventEmitter -var util = require('util') - -var Result = require('./result') -var utils = require('./utils') - -var Query = function (config, values, callback) { - // use of "new" optional - if (!(this instanceof Query)) { return new Query(config, values, callback) } - - config = utils.normalizeQueryConfig(config, values, callback) - - this.text = config.text - this.values = config.values - this.rows = config.rows - this.types = config.types - this.name = config.name - this.binary = config.binary - // use unique portal name each time - this.portal = config.portal || '' - this.callback = config.callback - this._rowMode = config.rowMode - if (process.domain && config.callback) { - this.callback = process.domain.bind(config.callback) - } - this._result = new Result(this._rowMode, this.types) - - // potential for multiple results - this._results = this._result - this.isPreparedStatement = false - this._canceledDueToError = false - this._promise = null - EventEmitter.call(this) -} - -util.inherits(Query, EventEmitter) - -Query.prototype.requiresPreparation = function () { - // named queries must always be prepared - if (this.name) { return true } - // always prepare if there are max number of rows expected per - // portal execution - if (this.rows) { return true } - // don't prepare empty text queries - if (!this.text) { return false } - // prepare if there are values - if (!this.values) { return false } - return this.values.length > 0 -} - -Query.prototype._checkForMultirow = function () { - // if we already have a result with a command property - // then we've already executed one query in a multi-statement simple query - // turn our results into an array of results - if (this._result.command) { - if (!Array.isArray(this._results)) { - this._results = [this._result] - } - this._result = new Result(this._rowMode, this.types) - this._results.push(this._result) - } -} - -// associates row metadata from the supplied -// message with this query object -// metadata used when parsing row results -Query.prototype.handleRowDescription = function (msg) { - this._checkForMultirow() - this._result.addFields(msg.fields) - this._accumulateRows = this.callback || !this.listeners('row').length -} - -Query.prototype.handleDataRow = function (msg) { - var row - - if (this._canceledDueToError) { - return - } - - try { - row = this._result.parseRow(msg.fields) - } catch (err) { - this._canceledDueToError = err - return - } - - this.emit('row', row, this._result) - if (this._accumulateRows) { - this._result.addRow(row) - } -} - -Query.prototype.handleCommandComplete = function (msg, con) { - this._checkForMultirow() - this._result.addCommandComplete(msg) - // need to sync after each command complete of a prepared statement - if (this.isPreparedStatement) { - con.sync() - } -} - -// if a named prepared statement is created with empty query text -// the backend will send an emptyQuery message but *not* a command complete message -// execution on the connection will hang until the backend receives a sync message -Query.prototype.handleEmptyQuery = function (con) { - if (this.isPreparedStatement) { - con.sync() - } -} - -Query.prototype.handleReadyForQuery = function (con) { - if (this._canceledDueToError) { - return this.handleError(this._canceledDueToError, con) - } - if (this.callback) { - this.callback(null, this._results) - } - this.emit('end', this._results) -} - -Query.prototype.handleError = function (err, connection) { - // need to sync after error during a prepared statement - if (this.isPreparedStatement) { - connection.sync() - } - if (this._canceledDueToError) { - err = this._canceledDueToError - this._canceledDueToError = false - } - // if callback supplied do not emit error event as uncaught error - // events will bubble up to node process - if (this.callback) { - return this.callback(err) - } - this.emit('error', err) -} - -Query.prototype.submit = function (connection) { - if (typeof this.text !== 'string' && typeof this.name !== 'string') { - return new Error('A query must have either text or a name. Supplying neither is unsupported.') - } - const previous = connection.parsedStatements[this.name] - if (this.text && previous && this.text !== previous) { - return new Error(`Prepared statements must be unique - '${this.name}' was used for a different statement`) - } - if (this.values && !Array.isArray(this.values)) { - return new Error('Query values must be an array') - } - if (this.requiresPreparation()) { - this.prepare(connection) - } else { - connection.query(this.text) - } - return null -} - -Query.prototype.hasBeenParsed = function (connection) { - return this.name && connection.parsedStatements[this.name] -} - -Query.prototype.handlePortalSuspended = function (connection) { - this._getRows(connection, this.rows) -} - -Query.prototype._getRows = function (connection, rows) { - connection.execute({ - portal: this.portal, - rows: rows - }, true) - connection.flush() -} - -Query.prototype.prepare = function (connection) { - var self = this - // prepared statements need sync to be called after each command - // complete or when an error is encountered - this.isPreparedStatement = true - // TODO refactor this poor encapsulation - if (!this.hasBeenParsed(connection)) { - connection.parse({ - text: self.text, - name: self.name, - types: self.types - }, true) - } - - if (self.values) { - try { - self.values = self.values.map(utils.prepareValue) - } catch (err) { - this.handleError(err, connection) - return - } - } - - // http://developer.postgresql.org/pgdocs/postgres/protocol-flow.html#PROTOCOL-FLOW-EXT-QUERY - connection.bind({ - portal: self.portal, - statement: self.name, - values: self.values, - binary: self.binary - }, true) - - connection.describe({ - type: 'P', - name: self.portal || '' - }, true) - - this._getRows(connection, this.rows) -} - -Query.prototype.handleCopyInResponse = function (connection) { - connection.sendCopyFail('No source stream defined') -} - -// eslint-disable-next-line no-unused-vars -Query.prototype.handleCopyData = function (msg, connection) { - // noop -} -module.exports = Query diff --git a/node_modules/pg/lib/result.js b/node_modules/pg/lib/result.js deleted file mode 100644 index 088298b..0000000 --- a/node_modules/pg/lib/result.js +++ /dev/null @@ -1,103 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var types = require('pg-types') - -// result object returned from query -// in the 'end' event and also -// passed as second argument to provided callback -var Result = function (rowMode, types) { - this.command = null - this.rowCount = null - this.oid = null - this.rows = [] - this.fields = [] - this._parsers = [] - this._types = types - this.RowCtor = null - this.rowAsArray = rowMode === 'array' - if (this.rowAsArray) { - this.parseRow = this._parseRowAsArray - } -} - -var matchRegexp = /^([A-Za-z]+)(?: (\d+))?(?: (\d+))?/ - -// adds a command complete message -Result.prototype.addCommandComplete = function (msg) { - var match - if (msg.text) { - // pure javascript - match = matchRegexp.exec(msg.text) - } else { - // native bindings - match = matchRegexp.exec(msg.command) - } - if (match) { - this.command = match[1] - if (match[3]) { - // COMMMAND OID ROWS - this.oid = parseInt(match[2], 10) - this.rowCount = parseInt(match[3], 10) - } else if (match[2]) { - // COMMAND ROWS - this.rowCount = parseInt(match[2], 10) - } - } -} - -Result.prototype._parseRowAsArray = function (rowData) { - var row = [] - for (var i = 0, len = rowData.length; i < len; i++) { - var rawValue = rowData[i] - if (rawValue !== null) { - row.push(this._parsers[i](rawValue)) - } else { - row.push(null) - } - } - return row -} - -Result.prototype.parseRow = function (rowData) { - var row = {} - for (var i = 0, len = rowData.length; i < len; i++) { - var rawValue = rowData[i] - var field = this.fields[i].name - if (rawValue !== null) { - row[field] = this._parsers[i](rawValue) - } else { - row[field] = null - } - } - return row -} - -Result.prototype.addRow = function (row) { - this.rows.push(row) -} - -Result.prototype.addFields = function (fieldDescriptions) { - // clears field definitions - // multiple query statements in 1 action can result in multiple sets - // of rowDescriptions...eg: 'select NOW(); select 1::int;' - // you need to reset the fields - if (this.fields.length) { - this.fields = [] - this._parsers = [] - } - for (var i = 0; i < fieldDescriptions.length; i++) { - var desc = fieldDescriptions[i] - this.fields.push(desc) - var parser = (this._types || types).getTypeParser(desc.dataTypeID, desc.format || 'text') - this._parsers.push(parser) - } -} - -module.exports = Result diff --git a/node_modules/pg/lib/sasl.js b/node_modules/pg/lib/sasl.js deleted file mode 100644 index 39c24bb..0000000 --- a/node_modules/pg/lib/sasl.js +++ /dev/null @@ -1,147 +0,0 @@ -'use strict' -const crypto = require('crypto') - -function startSession (mechanisms) { - if (mechanisms.indexOf('SCRAM-SHA-256') === -1) { - throw new Error('SASL: Only mechanism SCRAM-SHA-256 is currently supported') - } - - const clientNonce = crypto.randomBytes(18).toString('base64') - - return { - mechanism: 'SCRAM-SHA-256', - clientNonce, - response: 'n,,n=*,r=' + clientNonce, - message: 'SASLInitialResponse' - } -} - -function continueSession (session, password, serverData) { - if (session.message !== 'SASLInitialResponse') { - throw new Error('SASL: Last message was not SASLInitialResponse') - } - - const sv = extractVariablesFromFirstServerMessage(serverData) - - if (!sv.nonce.startsWith(session.clientNonce)) { - throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: server nonce does not start with client nonce') - } - - var saltBytes = Buffer.from(sv.salt, 'base64') - - var saltedPassword = Hi(password, saltBytes, sv.iteration) - - var clientKey = createHMAC(saltedPassword, 'Client Key') - var storedKey = crypto.createHash('sha256').update(clientKey).digest() - - var clientFirstMessageBare = 'n=*,r=' + session.clientNonce - var serverFirstMessage = 'r=' + sv.nonce + ',s=' + sv.salt + ',i=' + sv.iteration - - var clientFinalMessageWithoutProof = 'c=biws,r=' + sv.nonce - - var authMessage = clientFirstMessageBare + ',' + serverFirstMessage + ',' + clientFinalMessageWithoutProof - - var clientSignature = createHMAC(storedKey, authMessage) - var clientProofBytes = xorBuffers(clientKey, clientSignature) - var clientProof = clientProofBytes.toString('base64') - - var serverKey = createHMAC(saltedPassword, 'Server Key') - var serverSignatureBytes = createHMAC(serverKey, authMessage) - - session.message = 'SASLResponse' - session.serverSignature = serverSignatureBytes.toString('base64') - session.response = clientFinalMessageWithoutProof + ',p=' + clientProof -} - -function finalizeSession (session, serverData) { - if (session.message !== 'SASLResponse') { - throw new Error('SASL: Last message was not SASLResponse') - } - - var serverSignature - - String(serverData).split(',').forEach(function (part) { - switch (part[0]) { - case 'v': - serverSignature = part.substr(2) - break - } - }) - - if (serverSignature !== session.serverSignature) { - throw new Error('SASL: SCRAM-SERVER-FINAL-MESSAGE: server signature does not match') - } -} - -function extractVariablesFromFirstServerMessage (data) { - var nonce, salt, iteration - - String(data).split(',').forEach(function (part) { - switch (part[0]) { - case 'r': - nonce = part.substr(2) - break - case 's': - salt = part.substr(2) - break - case 'i': - iteration = parseInt(part.substr(2), 10) - break - } - }) - - if (!nonce) { - throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: nonce missing') - } - - if (!salt) { - throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: salt missing') - } - - if (!iteration) { - throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: iteration missing') - } - - return { - nonce, - salt, - iteration - } -} - -function xorBuffers (a, b) { - if (!Buffer.isBuffer(a)) a = Buffer.from(a) - if (!Buffer.isBuffer(b)) b = Buffer.from(b) - var res = [] - if (a.length > b.length) { - for (var i = 0; i < b.length; i++) { - res.push(a[i] ^ b[i]) - } - } else { - for (var j = 0; j < a.length; j++) { - res.push(a[j] ^ b[j]) - } - } - return Buffer.from(res) -} - -function createHMAC (key, msg) { - return crypto.createHmac('sha256', key).update(msg).digest() -} - -function Hi (password, saltBytes, iterations) { - var ui1 = createHMAC(password, Buffer.concat([saltBytes, Buffer.from([0, 0, 0, 1])])) - var ui = ui1 - for (var i = 0; i < iterations - 1; i++) { - ui1 = createHMAC(password, ui1) - ui = xorBuffers(ui, ui1) - } - - return ui -} - -module.exports = { - startSession, - continueSession, - finalizeSession -} diff --git a/node_modules/pg/lib/type-overrides.js b/node_modules/pg/lib/type-overrides.js deleted file mode 100644 index 5439440..0000000 --- a/node_modules/pg/lib/type-overrides.js +++ /dev/null @@ -1,39 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -var types = require('pg-types') - -function TypeOverrides (userTypes) { - this._types = userTypes || types - this.text = {} - this.binary = {} -} - -TypeOverrides.prototype.getOverrides = function (format) { - switch (format) { - case 'text': return this.text - case 'binary': return this.binary - default: return {} - } -} - -TypeOverrides.prototype.setTypeParser = function (oid, format, parseFn) { - if (typeof format === 'function') { - parseFn = format - format = 'text' - } - this.getOverrides(format)[oid] = parseFn -} - -TypeOverrides.prototype.getTypeParser = function (oid, format) { - format = format || 'text' - return this.getOverrides(format)[oid] || this._types.getTypeParser(oid, format) -} - -module.exports = TypeOverrides diff --git a/node_modules/pg/lib/utils.js b/node_modules/pg/lib/utils.js deleted file mode 100644 index 879949f..0000000 --- a/node_modules/pg/lib/utils.js +++ /dev/null @@ -1,177 +0,0 @@ -'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ - -const crypto = require('crypto') - -const defaults = require('./defaults') - -function escapeElement (elementRepresentation) { - var escaped = elementRepresentation - .replace(/\\/g, '\\\\') - .replace(/"/g, '\\"') - - return '"' + escaped + '"' -} - -// convert a JS array to a postgres array literal -// uses comma separator so won't work for types like box that use -// a different array separator. -function arrayString (val) { - var result = '{' - for (var i = 0; i < val.length; i++) { - if (i > 0) { - result = result + ',' - } - if (val[i] === null || typeof val[i] === 'undefined') { - result = result + 'NULL' - } else if (Array.isArray(val[i])) { - result = result + arrayString(val[i]) - } else if (val[i] instanceof Buffer) { - result += '\\\\x' + val[i].toString('hex') - } else { - result += escapeElement(prepareValue(val[i])) - } - } - result = result + '}' - return result -} - -// converts values from javascript types -// to their 'raw' counterparts for use as a postgres parameter -// note: you can override this function to provide your own conversion mechanism -// for complex types, etc... -var prepareValue = function (val, seen) { - if (val instanceof Buffer) { - return val - } - if (ArrayBuffer.isView(val)) { - var buf = Buffer.from(val.buffer, val.byteOffset, val.byteLength) - if (buf.length === val.byteLength) { - return buf - } - return buf.slice(val.byteOffset, val.byteOffset + val.byteLength) // Node.js v4 does not support those Buffer.from params - } - if (val instanceof Date) { - if (defaults.parseInputDatesAsUTC) { - return dateToStringUTC(val) - } else { - return dateToString(val) - } - } - if (Array.isArray(val)) { - return arrayString(val) - } - if (val === null || typeof val === 'undefined') { - return null - } - if (typeof val === 'object') { - return prepareObject(val, seen) - } - return val.toString() -} - -function prepareObject (val, seen) { - if (val && typeof val.toPostgres === 'function') { - seen = seen || [] - if (seen.indexOf(val) !== -1) { - throw new Error('circular reference detected while preparing "' + val + '" for query') - } - seen.push(val) - - return prepareValue(val.toPostgres(prepareValue), seen) - } - return JSON.stringify(val) -} - -function pad (number, digits) { - number = '' + number - while (number.length < digits) { number = '0' + number } - return number -} - -function dateToString (date) { - var offset = -date.getTimezoneOffset() - - var year = date.getFullYear() - var isBCYear = year < 1 - if (isBCYear) year = Math.abs(year) + 1 // negative years are 1 off their BC representation - - var ret = pad(year, 4) + '-' + - pad(date.getMonth() + 1, 2) + '-' + - pad(date.getDate(), 2) + 'T' + - pad(date.getHours(), 2) + ':' + - pad(date.getMinutes(), 2) + ':' + - pad(date.getSeconds(), 2) + '.' + - pad(date.getMilliseconds(), 3) - - if (offset < 0) { - ret += '-' - offset *= -1 - } else { ret += '+' } - - ret += pad(Math.floor(offset / 60), 2) + ':' + pad(offset % 60, 2) - if (isBCYear) ret += ' BC' - return ret -} - -function dateToStringUTC (date) { - var year = date.getUTCFullYear() - var isBCYear = year < 1 - if (isBCYear) year = Math.abs(year) + 1 // negative years are 1 off their BC representation - - var ret = pad(year, 4) + '-' + - pad(date.getUTCMonth() + 1, 2) + '-' + - pad(date.getUTCDate(), 2) + 'T' + - pad(date.getUTCHours(), 2) + ':' + - pad(date.getUTCMinutes(), 2) + ':' + - pad(date.getUTCSeconds(), 2) + '.' + - pad(date.getUTCMilliseconds(), 3) - - ret += '+00:00' - if (isBCYear) ret += ' BC' - return ret -} - -function normalizeQueryConfig (config, values, callback) { - // can take in strings or config objects - config = (typeof (config) === 'string') ? { text: config } : config - if (values) { - if (typeof values === 'function') { - config.callback = values - } else { - config.values = values - } - } - if (callback) { - config.callback = callback - } - return config -} - -const md5 = function (string) { - return crypto.createHash('md5').update(string, 'utf-8').digest('hex') -} - -// See AuthenticationMD5Password at https://www.postgresql.org/docs/current/static/protocol-flow.html -const postgresMd5PasswordHash = function (user, password, salt) { - var inner = md5(password + user) - var outer = md5(Buffer.concat([Buffer.from(inner), salt])) - return 'md5' + outer -} - -module.exports = { - prepareValue: function prepareValueWrapper (value) { - // this ensures that extra arguments do not get passed into prepareValue - // by accident, eg: from calling values.map(utils.prepareValue) - return prepareValue(value) - }, - normalizeQueryConfig, - postgresMd5PasswordHash, - md5 -} diff --git a/node_modules/pg/package.json b/node_modules/pg/package.json deleted file mode 100644 index 9978ff0..0000000 --- a/node_modules/pg/package.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "_from": "pg", - "_id": "pg@7.12.1", - "_inBundle": false, - "_integrity": "sha512-l1UuyfEvoswYfcUe6k+JaxiN+5vkOgYcVSbSuw3FvdLqDbaoa2RJo1zfJKfPsSYPFVERd4GHvX3s2PjG1asSDA==", - "_location": "/pg", - "_phantomChildren": {}, - "_requested": { - "type": "tag", - "registry": true, - "raw": "pg", - "name": "pg", - "escapedName": "pg", - "rawSpec": "", - "saveSpec": null, - "fetchSpec": "latest" - }, - "_requiredBy": [ - "#USER", - "/" - ], - "_resolved": "https://registry.npmjs.org/pg/-/pg-7.12.1.tgz", - "_shasum": "880636d46d2efbe0968e64e9fe0eeece8ef72a7e", - "_spec": "pg", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru", - "author": { - "name": "Brian Carlson", - "email": "brian.m.carlson@gmail.com" - }, - "bugs": { - "url": "https://github.com/brianc/node-postgres/issues" - }, - "bundleDependencies": false, - "dependencies": { - "buffer-writer": "2.0.0", - "packet-reader": "1.0.0", - "pg-connection-string": "0.1.3", - "pg-pool": "^2.0.4", - "pg-types": "^2.1.0", - "pgpass": "1.x", - "semver": "4.3.2" - }, - "deprecated": false, - "description": "PostgreSQL client - pure javascript & libpq with the same API", - "devDependencies": { - "async": "0.9.0", - "bluebird": "3.5.2", - "co": "4.6.0", - "eslint": "^6.0.1", - "eslint-config-standard": "^13.0.1", - "eslint-plugin-import": "^2.18.1", - "eslint-plugin-node": "^9.1.0", - "eslint-plugin-promise": "^4.2.1", - "eslint-plugin-standard": "^4.0.0", - "pg-copy-streams": "0.3.0" - }, - "engines": { - "node": ">= 4.5.0" - }, - "homepage": "http://github.com/brianc/node-postgres", - "keywords": [ - "database", - "libpq", - "pg", - "postgre", - "postgres", - "postgresql", - "rdbms" - ], - "license": "MIT", - "main": "./lib", - "minNativeVersion": "2.0.0", - "name": "pg", - "repository": { - "type": "git", - "url": "git://github.com/brianc/node-postgres.git" - }, - "scripts": { - "test": "make test-all" - }, - "version": "7.12.1" -} diff --git a/node_modules/pgpass/.npmignore b/node_modules/pgpass/.npmignore deleted file mode 100644 index e68f07b..0000000 --- a/node_modules/pgpass/.npmignore +++ /dev/null @@ -1,10 +0,0 @@ -node_modules/ -*~ -#* -lib-cov/ -coverage.* -npm-debug.log - -.jshintrc -.travis.yml -test/ diff --git a/node_modules/pgpass/README.md b/node_modules/pgpass/README.md deleted file mode 100644 index a97af33..0000000 --- a/node_modules/pgpass/README.md +++ /dev/null @@ -1,74 +0,0 @@ -# pgpass - -[![Build Status](https://travis-ci.org/hoegaarden/pgpass.png?branch=master)](https://travis-ci.org/hoegaarden/pgpass) - -## Install - -```sh -npm install pgpass -``` - -## Usage -```js -var pgPass = require('pgpass'); - -var connInfo = { - 'host' : 'pgserver' , - 'user' : 'the_user_name' , -}; - -pgPass(connInfo, function(pass){ - conn_info.password = pass; - // connect to postgresql server -}); -``` - -## Description - -This module tries to read the `~/.pgpass` file (or the equivalent for windows systems). If the environment variable `PGPASSFILE` is set, this file is used instead. If everything goes right, the password from said file is passed to the callback; if the password cannot be read `undefined` is passed to the callback. - -Cases where `undefined` is returned: - -- the environment variable `PGPASSWORD` is set -- the file cannot be read (wrong permissions, no such file, ...) -- for non windows systems: the file is write-/readable by the group or by other users -- there is no matching line for the given connection info - -There should be no need to use this module directly; it is already included in `node-postgresq`. - -## Configuration - -The module reads the environment variable `PGPASS_NO_DEESCAPE` to decide if the the read tokens from the password file should be de-escaped or not. Default is to do de-escaping. For further information on this see [this commit](https://github.com/postgres/postgres/commit/8d15e3ec4fcb735875a8a70a09ec0c62153c3329). - - -## Tests - -There are tests in `./test/`; including linting and coverage testing. Running `npm test` runs: - -- `jshint` -- `mocha` tests -- `jscoverage` and `mocha -R html-cov` - -You can see the coverage report in `coverage.html`. - - -## Development, Patches, Bugs, ... - -If you find Bugs or have improvments, please feel free to open a issue on github. If you provide a pull request, I'm more than happy to merge them, just make sure to add tests for your changes. - -## Links - -- https://github.com/hoegaarden/node-pgpass -- http://www.postgresql.org/docs/current/static/libpq-pgpass.html -- https://wiki.postgresql.org/wiki/Pgpass -- https://github.com/postgres/postgres/blob/master/src/interfaces/libpq/fe-connect.c - -## License - -Copyright (c) 2013-2016 Hannes Hörl - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/node_modules/pgpass/lib/helper.js b/node_modules/pgpass/lib/helper.js deleted file mode 100644 index 6abea0e..0000000 --- a/node_modules/pgpass/lib/helper.js +++ /dev/null @@ -1,233 +0,0 @@ -'use strict'; - -var path = require('path') - , Stream = require('stream').Stream - , Split = require('split') - , util = require('util') - , defaultPort = 5432 - , isWin = (process.platform === 'win32') - , warnStream = process.stderr -; - - -var S_IRWXG = 56 // 00070(8) - , S_IRWXO = 7 // 00007(8) - , S_IFMT = 61440 // 00170000(8) - , S_IFREG = 32768 // 0100000(8) -; -function isRegFile(mode) { - return ((mode & S_IFMT) == S_IFREG); -} - -var fieldNames = [ 'host', 'port', 'database', 'user', 'password' ]; -var nrOfFields = fieldNames.length; -var passKey = fieldNames[ nrOfFields -1 ]; - - -function warn() { - var isWritable = ( - warnStream instanceof Stream && - true === warnStream.writable - ); - - if (isWritable) { - var args = Array.prototype.slice.call(arguments).concat("\n"); - warnStream.write( util.format.apply(util, args) ); - } -} - - -Object.defineProperty(module.exports, 'isWin', { - get : function() { - return isWin; - } , - set : function(val) { - isWin = val; - } -}); - - -module.exports.warnTo = function(stream) { - var old = warnStream; - warnStream = stream; - return old; -}; - -module.exports.getFileName = function(env){ - env = env || process.env; - var file = env.PGPASSFILE || ( - isWin ? - path.join( env.APPDATA , 'postgresql', 'pgpass.conf' ) : - path.join( env.HOME, '.pgpass' ) - ); - return file; -}; - -module.exports.usePgPass = function(stats, fname) { - if (Object.prototype.hasOwnProperty.call(process.env, 'PGPASSWORD')) { - return false; - } - - if (isWin) { - return true; - } - - fname = fname || ''; - - if (! isRegFile(stats.mode)) { - warn('WARNING: password file "%s" is not a plain file', fname); - return false; - } - - if (stats.mode & (S_IRWXG | S_IRWXO)) { - /* If password file is insecure, alert the user and ignore it. */ - warn('WARNING: password file "%s" has group or world access; permissions should be u=rw (0600) or less', fname); - return false; - } - - return true; -}; - - -var matcher = module.exports.match = function(connInfo, entry) { - return fieldNames.slice(0, -1).reduce(function(prev, field, idx){ - if (idx == 1) { - // the port - if ( Number( connInfo[field] || defaultPort ) === Number( entry[field] ) ) { - return prev && true; - } - } - return prev && ( - entry[field] === '*' || - entry[field] === connInfo[field] - ); - }, true); -}; - - -module.exports.getPassword = function(connInfo, stream, cb) { - var pass; - var lineStream = stream.pipe(new Split()); - - function onLine(line) { - var entry = parseLine(line); - if (entry && isValidEntry(entry) && matcher(connInfo, entry)) { - pass = entry[passKey]; - lineStream.end(); // -> calls onEnd(), but pass is set now - } - } - - var onEnd = function() { - stream.destroy(); - cb(pass); - }; - - var onErr = function(err) { - stream.destroy(); - warn('WARNING: error on reading file: %s', err); - cb(undefined); - }; - - stream.on('error', onErr); - lineStream - .on('data', onLine) - .on('end', onEnd) - .on('error', onErr) - ; - -}; - - -var parseLine = module.exports.parseLine = function(line) { - if (line.length < 11 || line.match(/^\s+#/)) { - return null; - } - - var curChar = ''; - var prevChar = ''; - var fieldIdx = 0; - var startIdx = 0; - var endIdx = 0; - var obj = {}; - var isLastField = false; - var addToObj = function(idx, i0, i1) { - var field = line.substring(i0, i1); - - if (! Object.hasOwnProperty.call(process.env, 'PGPASS_NO_DEESCAPE')) { - field = field.replace(/\\([:\\])/g, '$1'); - } - - obj[ fieldNames[idx] ] = field; - }; - - for (var i = 0 ; i < line.length-1 ; i += 1) { - curChar = line.charAt(i+1); - prevChar = line.charAt(i); - - isLastField = (fieldIdx == nrOfFields-1); - - if (isLastField) { - addToObj(fieldIdx, startIdx); - break; - } - - if (i >= 0 && curChar == ':' && prevChar !== '\\') { - addToObj(fieldIdx, startIdx, i+1); - - startIdx = i+2; - fieldIdx += 1; - } - } - - obj = ( Object.keys(obj).length === nrOfFields ) ? obj : null; - - return obj; -}; - - -var isValidEntry = module.exports.isValidEntry = function(entry){ - var rules = { - // host - 0 : function(x){ - return x.length > 0; - } , - // port - 1 : function(x){ - if (x === '*') { - return true; - } - x = Number(x); - return ( - isFinite(x) && - x > 0 && - x < 9007199254740992 && - Math.floor(x) === x - ); - } , - // database - 2 : function(x){ - return x.length > 0; - } , - // username - 3 : function(x){ - return x.length > 0; - } , - // password - 4 : function(x){ - return x.length > 0; - } - }; - - for (var idx = 0 ; idx < fieldNames.length ; idx += 1) { - var rule = rules[idx]; - var value = entry[ fieldNames[idx] ] || ''; - - var res = rule(value); - if (!res) { - return false; - } - } - - return true; -}; - diff --git a/node_modules/pgpass/lib/index.js b/node_modules/pgpass/lib/index.js deleted file mode 100644 index ecfcf30..0000000 --- a/node_modules/pgpass/lib/index.js +++ /dev/null @@ -1,23 +0,0 @@ -'use strict'; - -var path = require('path') - , fs = require('fs') - , helper = require('./helper.js') -; - - -module.exports = function(connInfo, cb) { - var file = helper.getFileName(); - - fs.stat(file, function(err, stat){ - if (err || !helper.usePgPass(stat, file)) { - return cb(undefined); - } - - var st = fs.createReadStream(file); - - helper.getPassword(connInfo, st, cb); - }); -}; - -module.exports.warnTo = helper.warnTo; diff --git a/node_modules/pgpass/package.json b/node_modules/pgpass/package.json deleted file mode 100644 index 1669201..0000000 --- a/node_modules/pgpass/package.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_from": "pgpass@1.x", - "_id": "pgpass@1.0.2", - "_inBundle": false, - "_integrity": "sha1-Knu0G2BltnkH6R2hsHwYR8h3swY=", - "_location": "/pgpass", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "pgpass@1.x", - "name": "pgpass", - "escapedName": "pgpass", - "rawSpec": "1.x", - "saveSpec": null, - "fetchSpec": "1.x" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz", - "_shasum": "2a7bb41b6065b67907e91da1b07c1847c877b306", - "_spec": "pgpass@1.x", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "author": { - "name": "Hannes Hörl", - "email": "hannes.hoerl+pgpass@snowreporter.com" - }, - "bugs": { - "url": "https://github.com/hoegaarden/pgpass/issues" - }, - "bundleDependencies": false, - "dependencies": { - "split": "^1.0.0" - }, - "deprecated": false, - "description": "Module for reading .pgpass", - "devDependencies": { - "jscoverage": "^0.6.0", - "jshint": "^2.9.2", - "mocha": "^2.5.3", - "pg": "^4.5.6", - "pg-escape": "^0.2.0", - "pg-native": "^1.10.0", - "resumer": "0.0.0", - "tmp": "0.0.28", - "which": "^1.2.10" - }, - "homepage": "https://github.com/hoegaarden/pgpass#readme", - "keywords": [ - "postgres", - "pg", - "pgpass", - "password", - "postgresql" - ], - "license": "MIT", - "main": "lib/index", - "name": "pgpass", - "repository": { - "type": "git", - "url": "git+https://github.com/hoegaarden/pgpass.git" - }, - "scripts": { - "coverage": "rm -rf -- lib-cov ; jscoverage lib lib-cov && mocha --recursive -R html-cov > coverage.html", - "hint": "jshint --verbose lib test", - "pretest": "chmod 600 ./test/_pgpass", - "test": "npm run hint && mocha --recursive -R list && npm run coverage" - }, - "version": "1.0.2" -} diff --git a/node_modules/postgres-array/index.d.ts b/node_modules/postgres-array/index.d.ts deleted file mode 100644 index 88665bd..0000000 --- a/node_modules/postgres-array/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ - -export function parse(source: string): string[]; -export function parse(source: string, transform: (value: string) => T): T[]; - diff --git a/node_modules/postgres-array/index.js b/node_modules/postgres-array/index.js deleted file mode 100644 index 18bfd16..0000000 --- a/node_modules/postgres-array/index.js +++ /dev/null @@ -1,97 +0,0 @@ -'use strict' - -exports.parse = function (source, transform) { - return new ArrayParser(source, transform).parse() -} - -class ArrayParser { - constructor (source, transform) { - this.source = source - this.transform = transform || identity - this.position = 0 - this.entries = [] - this.recorded = [] - this.dimension = 0 - } - - isEof () { - return this.position >= this.source.length - } - - nextCharacter () { - var character = this.source[this.position++] - if (character === '\\') { - return { - value: this.source[this.position++], - escaped: true - } - } - return { - value: character, - escaped: false - } - } - - record (character) { - this.recorded.push(character) - } - - newEntry (includeEmpty) { - var entry - if (this.recorded.length > 0 || includeEmpty) { - entry = this.recorded.join('') - if (entry === 'NULL' && !includeEmpty) { - entry = null - } - if (entry !== null) entry = this.transform(entry) - this.entries.push(entry) - this.recorded = [] - } - } - - consumeDimensions () { - if (this.source[0] === '[') { - while (!this.isEof()) { - var char = this.nextCharacter() - if (char.value === '=') break - } - } - } - - parse (nested) { - var character, parser, quote - this.consumeDimensions() - while (!this.isEof()) { - character = this.nextCharacter() - if (character.value === '{' && !quote) { - this.dimension++ - if (this.dimension > 1) { - parser = new ArrayParser(this.source.substr(this.position - 1), this.transform) - this.entries.push(parser.parse(true)) - this.position += parser.position - 2 - } - } else if (character.value === '}' && !quote) { - this.dimension-- - if (!this.dimension) { - this.newEntry() - if (nested) return this.entries - } - } else if (character.value === '"' && !character.escaped) { - if (quote) this.newEntry(true) - quote = !quote - } else if (character.value === ',' && !quote) { - this.newEntry() - } else { - this.record(character.value) - } - } - if (this.dimension !== 0) { - throw new Error('array dimension not balanced') - } - return this.entries - } -} - -function identity (value) { - return value -} diff --git a/node_modules/postgres-array/license b/node_modules/postgres-array/license deleted file mode 100644 index 25c6247..0000000 --- a/node_modules/postgres-array/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Ben Drucker (bendrucker.me) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/postgres-array/package.json b/node_modules/postgres-array/package.json deleted file mode 100644 index 085d479..0000000 --- a/node_modules/postgres-array/package.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "_from": "postgres-array@~2.0.0", - "_id": "postgres-array@2.0.0", - "_inBundle": false, - "_integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - "_location": "/postgres-array", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "postgres-array@~2.0.0", - "name": "postgres-array", - "escapedName": "postgres-array", - "rawSpec": "~2.0.0", - "saveSpec": null, - "fetchSpec": "~2.0.0" - }, - "_requiredBy": [ - "/pg-types" - ], - "_resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - "_shasum": "48f8fce054fbc69671999329b8834b772652d82e", - "_spec": "postgres-array@~2.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg-types", - "author": { - "name": "Ben Drucker", - "email": "bvdrucker@gmail.com", - "url": "bendrucker.me" - }, - "bugs": { - "url": "https://github.com/bendrucker/postgres-array/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Parse postgres array columns", - "devDependencies": { - "standard": "^12.0.1", - "tape": "^4.0.0" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js", - "index.d.ts", - "readme.md" - ], - "homepage": "https://github.com/bendrucker/postgres-array#readme", - "keywords": [ - "postgres", - "array", - "parser" - ], - "license": "MIT", - "main": "index.js", - "name": "postgres-array", - "repository": { - "type": "git", - "url": "git+https://github.com/bendrucker/postgres-array.git" - }, - "scripts": { - "test": "standard && tape test.js" - }, - "types": "index.d.ts", - "version": "2.0.0" -} diff --git a/node_modules/postgres-array/readme.md b/node_modules/postgres-array/readme.md deleted file mode 100644 index b74b369..0000000 --- a/node_modules/postgres-array/readme.md +++ /dev/null @@ -1,43 +0,0 @@ -# postgres-array [![Build Status](https://travis-ci.org/bendrucker/postgres-array.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-array) - -> Parse postgres array columns - - -## Install - -``` -$ npm install --save postgres-array -``` - - -## Usage - -```js -var postgresArray = require('postgres-array') - -postgresArray.parse('{1,2,3}', (value) => parseInt(value, 10)) -//=> [1, 2, 3] -``` - -## API - -#### `parse(input, [transform])` -> `array` - -##### input - -*Required* -Type: `string` - -A Postgres array string. - -##### transform - -Type: `function` -Default: `identity` - -A function that transforms non-null values inserted into the array. - - -## License - -MIT © [Ben Drucker](http://bendrucker.me) diff --git a/node_modules/postgres-bytea/index.js b/node_modules/postgres-bytea/index.js deleted file mode 100644 index d1107a0..0000000 --- a/node_modules/postgres-bytea/index.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict' - -module.exports = function parseBytea (input) { - if (/^\\x/.test(input)) { - // new 'hex' style response (pg >9.0) - return new Buffer(input.substr(2), 'hex') - } - var output = '' - var i = 0 - while (i < input.length) { - if (input[i] !== '\\') { - output += input[i] - ++i - } else { - if (/[0-7]{3}/.test(input.substr(i + 1, 3))) { - output += String.fromCharCode(parseInt(input.substr(i + 1, 3), 8)) - i += 4 - } else { - var backslashes = 1 - while (i + backslashes < input.length && input[i + backslashes] === '\\') { - backslashes++ - } - for (var k = 0; k < Math.floor(backslashes / 2); ++k) { - output += '\\' - } - i += Math.floor(backslashes / 2) * 2 - } - } - } - return new Buffer(output, 'binary') -} diff --git a/node_modules/postgres-bytea/license b/node_modules/postgres-bytea/license deleted file mode 100644 index 25c6247..0000000 --- a/node_modules/postgres-bytea/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Ben Drucker (bendrucker.me) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/postgres-bytea/package.json b/node_modules/postgres-bytea/package.json deleted file mode 100644 index c50600d..0000000 --- a/node_modules/postgres-bytea/package.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "_from": "postgres-bytea@~1.0.0", - "_id": "postgres-bytea@1.0.0", - "_inBundle": false, - "_integrity": "sha1-AntTPAqokOJtFy1Hz5zOzFIazTU=", - "_location": "/postgres-bytea", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "postgres-bytea@~1.0.0", - "name": "postgres-bytea", - "escapedName": "postgres-bytea", - "rawSpec": "~1.0.0", - "saveSpec": null, - "fetchSpec": "~1.0.0" - }, - "_requiredBy": [ - "/pg-types" - ], - "_resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "_shasum": "027b533c0aa890e26d172d47cf9ccecc521acd35", - "_spec": "postgres-bytea@~1.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg-types", - "author": { - "name": "Ben Drucker", - "email": "bvdrucker@gmail.com", - "url": "bendrucker.me" - }, - "bugs": { - "url": "https://github.com/bendrucker/postgres-bytea/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Postgres bytea parser", - "devDependencies": { - "standard": "^4.0.0", - "tape": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js", - "readme.md" - ], - "homepage": "https://github.com/bendrucker/postgres-bytea#readme", - "keywords": [ - "bytea", - "postgres", - "binary", - "parser" - ], - "license": "MIT", - "main": "index.js", - "name": "postgres-bytea", - "repository": { - "type": "git", - "url": "git+https://github.com/bendrucker/postgres-bytea.git" - }, - "scripts": { - "test": "standard && tape test.js" - }, - "version": "1.0.0" -} diff --git a/node_modules/postgres-bytea/readme.md b/node_modules/postgres-bytea/readme.md deleted file mode 100644 index 4939c3b..0000000 --- a/node_modules/postgres-bytea/readme.md +++ /dev/null @@ -1,34 +0,0 @@ -# postgres-bytea [![Build Status](https://travis-ci.org/bendrucker/postgres-bytea.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-bytea) - -> Postgres bytea parser - - -## Install - -``` -$ npm install --save postgres-bytea -``` - - -## Usage - -```js -var bytea = require('postgres-bytea'); -bytea('\\000\\100\\200') -//=> buffer -``` - -## API - -#### `bytea(input)` -> `buffer` - -##### input - -*Required* -Type: `string` - -A Postgres bytea binary string. - -## License - -MIT © [Ben Drucker](http://bendrucker.me) diff --git a/node_modules/postgres-date/index.js b/node_modules/postgres-date/index.js deleted file mode 100644 index 1f03c45..0000000 --- a/node_modules/postgres-date/index.js +++ /dev/null @@ -1,110 +0,0 @@ -'use strict' - -var DATE_TIME = /(\d{1,})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})(\.\d{1,})?.*?( BC)?$/ -var DATE = /^(\d{1,})-(\d{2})-(\d{2})( BC)?$/ -var TIME_ZONE = /([Z+-])(\d{2})?:?(\d{2})?:?(\d{2})?/ -var INFINITY = /^-?infinity$/ - -module.exports = function parseDate (isoDate) { - if (INFINITY.test(isoDate)) { - // Capitalize to Infinity before passing to Number - return Number(isoDate.replace('i', 'I')) - } - var matches = DATE_TIME.exec(isoDate) - - if (!matches) { - // Force YYYY-MM-DD dates to be parsed as local time - return getDate(isoDate) || null - } - - var isBC = !!matches[8] - var year = parseInt(matches[1], 10) - if (isBC) { - year = bcYearToNegativeYear(year) - } - - var month = parseInt(matches[2], 10) - 1 - var day = matches[3] - var hour = parseInt(matches[4], 10) - var minute = parseInt(matches[5], 10) - var second = parseInt(matches[6], 10) - - var ms = matches[7] - ms = ms ? 1000 * parseFloat(ms) : 0 - - var date - var offset = timeZoneOffset(isoDate) - if (offset != null) { - date = new Date(Date.UTC(year, month, day, hour, minute, second, ms)) - - // Account for years from 0 to 99 being interpreted as 1900-1999 - // by Date.UTC / the multi-argument form of the Date constructor - if (is0To99(year)) { - date.setUTCFullYear(year) - } - - date.setTime(date.getTime() - offset) - } else { - date = new Date(year, month, day, hour, minute, second, ms) - - if (is0To99(year)) { - date.setFullYear(year) - } - } - - return date -} - -function getDate (isoDate) { - var matches = DATE.exec(isoDate) - if (!matches) { - return - } - - var year = parseInt(matches[1], 10) - var isBC = !!matches[4] - if (isBC) { - year = bcYearToNegativeYear(year) - } - - var month = parseInt(matches[2], 10) - 1 - var day = matches[3] - // YYYY-MM-DD will be parsed as local time - var date = new Date(year, month, day) - - if (is0To99(year)) { - date.setFullYear(year) - } - - return date -} - -// match timezones: -// Z (UTC) -// -05 -// +06:30 -function timeZoneOffset (isoDate) { - var zone = TIME_ZONE.exec(isoDate.split(' ')[1]) - if (!zone) return - var type = zone[1] - - if (type === 'Z') { - return 0 - } - var sign = type === '-' ? -1 : 1 - var offset = parseInt(zone[2], 10) * 3600 + - parseInt(zone[3] || 0, 10) * 60 + - parseInt(zone[4] || 0, 10) - - return offset * sign * 1000 -} - -function bcYearToNegativeYear (year) { - // Account for numerical difference between representations of BC years - // See: https://github.com/bendrucker/postgres-date/issues/5 - return -(year - 1) -} - -function is0To99 (num) { - return num >= 0 && num < 100 -} diff --git a/node_modules/postgres-date/license b/node_modules/postgres-date/license deleted file mode 100644 index 25c6247..0000000 --- a/node_modules/postgres-date/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Ben Drucker (bendrucker.me) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/postgres-date/package.json b/node_modules/postgres-date/package.json deleted file mode 100644 index c0179cb..0000000 --- a/node_modules/postgres-date/package.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "_from": "postgres-date@~1.0.4", - "_id": "postgres-date@1.0.4", - "_inBundle": false, - "_integrity": "sha512-bESRvKVuTrjoBluEcpv2346+6kgB7UlnqWZsnbnCccTNq/pqfj1j6oBaN5+b/NrDXepYUT/HKadqv3iS9lJuVA==", - "_location": "/postgres-date", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "postgres-date@~1.0.4", - "name": "postgres-date", - "escapedName": "postgres-date", - "rawSpec": "~1.0.4", - "saveSpec": null, - "fetchSpec": "~1.0.4" - }, - "_requiredBy": [ - "/pg-types" - ], - "_resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.4.tgz", - "_shasum": "1c2728d62ef1bff49abdd35c1f86d4bdf118a728", - "_spec": "postgres-date@~1.0.4", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg-types", - "author": { - "name": "Ben Drucker", - "email": "bvdrucker@gmail.com", - "url": "bendrucker.me" - }, - "bugs": { - "url": "https://github.com/bendrucker/postgres-date/issues" - }, - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Postgres date column parser", - "devDependencies": { - "standard": "^12.0.1", - "tape": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js", - "readme.md" - ], - "homepage": "https://github.com/bendrucker/postgres-date#readme", - "keywords": [ - "postgres", - "date", - "parser" - ], - "license": "MIT", - "main": "index.js", - "name": "postgres-date", - "repository": { - "type": "git", - "url": "git+https://github.com/bendrucker/postgres-date.git" - }, - "scripts": { - "test": "standard && tape test.js" - }, - "version": "1.0.4" -} diff --git a/node_modules/postgres-date/readme.md b/node_modules/postgres-date/readme.md deleted file mode 100644 index aeb7a5c..0000000 --- a/node_modules/postgres-date/readme.md +++ /dev/null @@ -1,34 +0,0 @@ -# postgres-date [![Build Status](https://travis-ci.org/bendrucker/postgres-date.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-date) [![Greenkeeper badge](https://badges.greenkeeper.io/bendrucker/postgres-date.svg)](https://greenkeeper.io/) - -> Postgres date column parser - - -## Install - -``` -$ npm install --save postgres-date -``` - - -## Usage - -```js -var parse = require('postgres-date') -parse('2011-01-23 22:15:51Z') -// => 2011-01-23T22:15:51.000Z -``` - -## API - -#### `parse(isoDate)` -> `date` - -##### isoDate - -*Required* -Type: `string` - -A date string from Postgres. - -## License - -MIT © [Ben Drucker](http://bendrucker.me) diff --git a/node_modules/postgres-interval/index.d.ts b/node_modules/postgres-interval/index.d.ts deleted file mode 100644 index f82b4c3..0000000 --- a/node_modules/postgres-interval/index.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -declare namespace PostgresInterval { - export interface IPostgresInterval { - years?: number; - months?: number; - days?: number; - hours?: number; - minutes?: number; - seconds?: number; - milliseconds?: number; - - toPostgres(): string; - - toISO(): string; - toISOString(): string; - } -} - -declare function PostgresInterval(raw: string): PostgresInterval.IPostgresInterval; - -export = PostgresInterval; diff --git a/node_modules/postgres-interval/index.js b/node_modules/postgres-interval/index.js deleted file mode 100644 index 8ecca80..0000000 --- a/node_modules/postgres-interval/index.js +++ /dev/null @@ -1,125 +0,0 @@ -'use strict' - -var extend = require('xtend/mutable') - -module.exports = PostgresInterval - -function PostgresInterval (raw) { - if (!(this instanceof PostgresInterval)) { - return new PostgresInterval(raw) - } - extend(this, parse(raw)) -} -var properties = ['seconds', 'minutes', 'hours', 'days', 'months', 'years'] -PostgresInterval.prototype.toPostgres = function () { - var filtered = properties.filter(this.hasOwnProperty, this) - - // In addition to `properties`, we need to account for fractions of seconds. - if (this.milliseconds && filtered.indexOf('seconds') < 0) { - filtered.push('seconds') - } - - if (filtered.length === 0) return '0' - return filtered - .map(function (property) { - var value = this[property] || 0 - - // Account for fractional part of seconds, - // remove trailing zeroes. - if (property === 'seconds' && this.milliseconds) { - value = (value + this.milliseconds / 1000).toFixed(6).replace(/\.?0+$/, '') - } - - return value + ' ' + property - }, this) - .join(' ') -} - -var propertiesISOEquivalent = { - years: 'Y', - months: 'M', - days: 'D', - hours: 'H', - minutes: 'M', - seconds: 'S' -} -var dateProperties = ['years', 'months', 'days'] -var timeProperties = ['hours', 'minutes', 'seconds'] -// according to ISO 8601 -PostgresInterval.prototype.toISOString = PostgresInterval.prototype.toISO = function () { - var datePart = dateProperties - .map(buildProperty, this) - .join('') - - var timePart = timeProperties - .map(buildProperty, this) - .join('') - - return 'P' + datePart + 'T' + timePart - - function buildProperty (property) { - var value = this[property] || 0 - - // Account for fractional part of seconds, - // remove trailing zeroes. - if (property === 'seconds' && this.milliseconds) { - value = (value + this.milliseconds / 1000).toFixed(6).replace(/0+$/, '') - } - - return value + propertiesISOEquivalent[property] - } -} - -var NUMBER = '([+-]?\\d+)' -var YEAR = NUMBER + '\\s+years?' -var MONTH = NUMBER + '\\s+mons?' -var DAY = NUMBER + '\\s+days?' -var TIME = '([+-])?([\\d]*):(\\d\\d):(\\d\\d)\\.?(\\d{1,6})?' -var INTERVAL = new RegExp([YEAR, MONTH, DAY, TIME].map(function (regexString) { - return '(' + regexString + ')?' -}) - .join('\\s*')) - -// Positions of values in regex match -var positions = { - years: 2, - months: 4, - days: 6, - hours: 9, - minutes: 10, - seconds: 11, - milliseconds: 12 -} -// We can use negative time -var negatives = ['hours', 'minutes', 'seconds', 'milliseconds'] - -function parseMilliseconds (fraction) { - // add omitted zeroes - var microseconds = fraction + '000000'.slice(fraction.length) - return parseInt(microseconds, 10) / 1000 -} - -function parse (interval) { - if (!interval) return {} - var matches = INTERVAL.exec(interval) - var isNegative = matches[8] === '-' - return Object.keys(positions) - .reduce(function (parsed, property) { - var position = positions[property] - var value = matches[position] - // no empty string - if (!value) return parsed - // milliseconds are actually microseconds (up to 6 digits) - // with omitted trailing zeroes. - value = property === 'milliseconds' - ? parseMilliseconds(value) - : parseInt(value, 10) - // no zeros - if (!value) return parsed - if (isNegative && ~negatives.indexOf(property)) { - value *= -1 - } - parsed[property] = value - return parsed - }, {}) -} diff --git a/node_modules/postgres-interval/license b/node_modules/postgres-interval/license deleted file mode 100644 index 25c6247..0000000 --- a/node_modules/postgres-interval/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Ben Drucker (bendrucker.me) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/postgres-interval/package.json b/node_modules/postgres-interval/package.json deleted file mode 100644 index f968446..0000000 --- a/node_modules/postgres-interval/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "_from": "postgres-interval@^1.1.0", - "_id": "postgres-interval@1.2.0", - "_inBundle": false, - "_integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "_location": "/postgres-interval", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "postgres-interval@^1.1.0", - "name": "postgres-interval", - "escapedName": "postgres-interval", - "rawSpec": "^1.1.0", - "saveSpec": null, - "fetchSpec": "^1.1.0" - }, - "_requiredBy": [ - "/pg-types" - ], - "_resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "_shasum": "b460c82cb1587507788819a06aa0fffdb3544695", - "_spec": "postgres-interval@^1.1.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg-types", - "author": { - "name": "Ben Drucker", - "email": "bvdrucker@gmail.com", - "url": "bendrucker.me" - }, - "bugs": { - "url": "https://github.com/bendrucker/postgres-interval/issues" - }, - "bundleDependencies": false, - "dependencies": { - "xtend": "^4.0.0" - }, - "deprecated": false, - "description": "Parse Postgres interval columns", - "devDependencies": { - "standard": "^12.0.1", - "tape": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js", - "index.d.ts", - "readme.md" - ], - "homepage": "https://github.com/bendrucker/postgres-interval#readme", - "keywords": [ - "postgres", - "interval", - "parser" - ], - "license": "MIT", - "main": "index.js", - "name": "postgres-interval", - "repository": { - "type": "git", - "url": "git+https://github.com/bendrucker/postgres-interval.git" - }, - "scripts": { - "test": "standard && tape test.js" - }, - "version": "1.2.0" -} diff --git a/node_modules/postgres-interval/readme.md b/node_modules/postgres-interval/readme.md deleted file mode 100644 index 53cda4a..0000000 --- a/node_modules/postgres-interval/readme.md +++ /dev/null @@ -1,48 +0,0 @@ -# postgres-interval [![Build Status](https://travis-ci.org/bendrucker/postgres-interval.svg?branch=master)](https://travis-ci.org/bendrucker/postgres-interval) [![Greenkeeper badge](https://badges.greenkeeper.io/bendrucker/postgres-interval.svg)](https://greenkeeper.io/) - -> Parse Postgres interval columns - - -## Install - -``` -$ npm install --save postgres-interval -``` - - -## Usage - -```js -var parse = require('postgres-interval') -var interval = parse('01:02:03') -//=> {hours: 1, minutes: 2, seconds: 3} -interval.toPostgres() -// 3 seconds 2 minutes 1 hours -interval.toISO() -// P0Y0M0DT1H2M3S -``` - -## API - -#### `parse(pgInterval)` -> `interval` - -##### pgInterval - -*Required* -Type: `string` - -A Postgres interval string. - -#### `interval.toPostgres()` -> `string` - -Returns an interval string. This allows the interval object to be passed into prepared statements. - -#### `interval.toISOString()` -> `string` - -Returns an [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601#Durations) compliant string. - -Also available as `interval.toISO()` for backwards compatibility. - -## License - -MIT © [Ben Drucker](http://bendrucker.me) diff --git a/node_modules/semver/.npmignore b/node_modules/semver/.npmignore deleted file mode 100644 index 7300fbc..0000000 --- a/node_modules/semver/.npmignore +++ /dev/null @@ -1 +0,0 @@ -# nada diff --git a/node_modules/semver/LICENSE b/node_modules/semver/LICENSE deleted file mode 100644 index 0c44ae7..0000000 --- a/node_modules/semver/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) Isaac Z. Schlueter ("Author") -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN -IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/node_modules/semver/Makefile b/node_modules/semver/Makefile deleted file mode 100644 index 71af0e9..0000000 --- a/node_modules/semver/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -files = semver.browser.js \ - semver.min.js \ - semver.browser.js.gz \ - semver.min.js.gz - -all: $(files) - -clean: - rm -f $(files) - -semver.browser.js: head.js.txt semver.js foot.js.txt - ( cat head.js.txt; \ - cat semver.js | \ - egrep -v '^ *\/\* nomin \*\/' | \ - perl -pi -e 's/debug\([^\)]+\)//g'; \ - cat foot.js.txt ) > semver.browser.js - -semver.min.js: semver.browser.js - uglifyjs -m semver.min.js - -%.gz: % - gzip --stdout -9 <$< >$@ - -.PHONY: all clean diff --git a/node_modules/semver/README.md b/node_modules/semver/README.md deleted file mode 100644 index b5e35ff..0000000 --- a/node_modules/semver/README.md +++ /dev/null @@ -1,303 +0,0 @@ -semver(1) -- The semantic versioner for npm -=========================================== - -## Usage - - $ npm install semver - - semver.valid('1.2.3') // '1.2.3' - semver.valid('a.b.c') // null - semver.clean(' =v1.2.3 ') // '1.2.3' - semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true - semver.gt('1.2.3', '9.8.7') // false - semver.lt('1.2.3', '9.8.7') // true - -As a command-line utility: - - $ semver -h - - Usage: semver [ [...]] [-r | -i | --preid | -l | -rv] - Test if version(s) satisfy the supplied range(s), and sort them. - - Multiple versions or ranges may be supplied, unless increment - option is specified. In that case, only a single version may - be used, and it is incremented by the specified level - - Program exits successfully if any valid version satisfies - all supplied ranges, and prints all satisfying versions. - - If no versions are valid, or ranges are not satisfied, - then exits failure. - - Versions are printed in ascending order, so supplying - multiple versions to the utility will just sort them. - -## Versions - -A "version" is described by the `v2.0.0` specification found at -. - -A leading `"="` or `"v"` character is stripped off and ignored. - -## Ranges - -A `version range` is a set of `comparators` which specify versions -that satisfy the range. - -A `comparator` is composed of an `operator` and a `version`. The set -of primitive `operators` is: - -* `<` Less than -* `<=` Less than or equal to -* `>` Greater than -* `>=` Greater than or equal to -* `=` Equal. If no operator is specified, then equality is assumed, - so this operator is optional, but MAY be included. - -For example, the comparator `>=1.2.7` would match the versions -`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6` -or `1.1.0`. - -Comparators can be joined by whitespace to form a `comparator set`, -which is satisfied by the **intersection** of all of the comparators -it includes. - -A range is composed of one or more comparator sets, joined by `||`. A -version matches a range if and only if every comparator in at least -one of the `||`-separated comparator sets is satisfied by the version. - -For example, the range `>=1.2.7 <1.3.0` would match the versions -`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`, -or `1.1.0`. - -The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`, -`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`. - -### Prerelease Tags - -If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then -it will only be allowed to satisfy comparator sets if at least one -comparator with the same `[major, minor, patch]` tuple also has a -prerelease tag. - -For example, the range `>1.2.3-alpha.3` would be allowed to match the -version `1.2.3-alpha.7`, but it would *not* be satisfied by -`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater -than" `1.2.3-alpha.3` according to the SemVer sort rules. The version -range only accepts prerelease tags on the `1.2.3` version. The -version `3.4.5` *would* satisfy the range, because it does not have a -prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`. - -The purpose for this behavior is twofold. First, prerelease versions -frequently are updated very quickly, and contain many breaking changes -that are (by the author's design) not yet fit for public consumption. -Therefore, by default, they are excluded from range matching -semantics. - -Second, a user who has opted into using a prerelease version has -clearly indicated the intent to use *that specific* set of -alpha/beta/rc versions. By including a prerelease tag in the range, -the user is indicating that they are aware of the risk. However, it -is still not appropriate to assume that they have opted into taking a -similar risk on the *next* set of prerelease versions. - -#### Prerelease Identifiers - -The method `.inc` takes an additional `identifier` string argument that -will append the value of the string as a prerelease identifier: - -```javascript -> semver.inc('1.2.3', 'pre', 'beta') -'1.2.4-beta.0' -``` - -command-line example: - -```shell -$ semver 1.2.3 -i prerelease --preid beta -1.2.4-beta.0 -``` - -Which then can be used to increment further: - -```shell -$ semver 1.2.4-beta.0 -i prerelease -1.2.4-beta.1 -``` - -### Advanced Range Syntax - -Advanced range syntax desugars to primitive comparators in -deterministic ways. - -Advanced ranges may be combined in the same way as primitive -comparators using white space or `||`. - -#### Hyphen Ranges `X.Y.Z - A.B.C` - -Specifies an inclusive set. - -* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4` - -If a partial version is provided as the first version in the inclusive -range, then the missing pieces are replaced with zeroes. - -* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4` - -If a partial version is provided as the second version in the -inclusive range, then all versions that start with the supplied parts -of the tuple are accepted, but nothing that would be greater than the -provided tuple parts. - -* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0` -* `1.2.3 - 2` := `>=1.2.3 <3.0.0` - -#### X-Ranges `1.2.x` `1.X` `1.2.*` `*` - -Any of `X`, `x`, or `*` may be used to "stand in" for one of the -numeric values in the `[major, minor, patch]` tuple. - -* `*` := `>=0.0.0` (Any version satisfies) -* `1.x` := `>=1.0.0 <2.0.0` (Matching major version) -* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions) - -A partial version range is treated as an X-Range, so the special -character is in fact optional. - -* `""` (empty string) := `*` := `>=0.0.0` -* `1` := `1.x.x` := `>=1.0.0 <2.0.0` -* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0` - -#### Tilde Ranges `~1.2.3` `~1.2` `~1` - -Allows patch-level changes if a minor version is specified on the -comparator. Allows minor-level changes if not. - -* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0` -* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`) -* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`) -* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0` -* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`) -* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`) -* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in - the `1.2.3` version will be allowed, if they are greater than or - equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but - `1.2.4-beta.2` would not, because it is a prerelease of a - different `[major, minor, patch]` tuple. - -#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4` - -Allows changes that do not modify the left-most non-zero digit in the -`[major, minor, patch]` tuple. In other words, this allows patch and -minor updates for versions `1.0.0` and above, patch updates for -versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`. - -Many authors treat a `0.x` version as if the `x` were the major -"breaking-change" indicator. - -Caret ranges are ideal when an author may make breaking changes -between `0.2.4` and `0.3.0` releases, which is a common practice. -However, it presumes that there will *not* be breaking changes between -`0.2.4` and `0.2.5`. It allows for changes that are presumed to be -additive (but non-breaking), according to commonly observed practices. - -* `^1.2.3` := `>=1.2.3 <2.0.0` -* `^0.2.3` := `>=0.2.3 <0.3.0` -* `^0.0.3` := `>=0.0.3 <0.0.4` -* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in - the `1.2.3` version will be allowed, if they are greater than or - equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but - `1.2.4-beta.2` would not, because it is a prerelease of a - different `[major, minor, patch]` tuple. -* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the - `0.0.3` version *only* will be allowed, if they are greater than or - equal to `beta`. So, `0.0.3-pr.2` would be allowed. - -When parsing caret ranges, a missing `patch` value desugars to the -number `0`, but will allow flexibility within that value, even if the -major and minor versions are both `0`. - -* `^1.2.x` := `>=1.2.0 <2.0.0` -* `^0.0.x` := `>=0.0.0 <0.1.0` -* `^0.0` := `>=0.0.0 <0.1.0` - -A missing `minor` and `patch` values will desugar to zero, but also -allow flexibility within those values, even if the major version is -zero. - -* `^1.x` := `>=1.0.0 <2.0.0` -* `^0.x` := `>=0.0.0 <1.0.0` - -## Functions - -All methods and classes take a final `loose` boolean argument that, if -true, will be more forgiving about not-quite-valid semver strings. -The resulting output will always be 100% strict, of course. - -Strict-mode Comparators and Ranges will be strict about the SemVer -strings that they parse. - -* `valid(v)`: Return the parsed version, or null if it's not valid. -* `inc(v, release)`: Return the version incremented by the release - type (`major`, `premajor`, `minor`, `preminor`, `patch`, - `prepatch`, or `prerelease`), or null if it's not valid - * `premajor` in one call will bump the version up to the next major - version and down to a prerelease of that major version. - `preminor`, and `prepatch` work the same way. - * If called from a non-prerelease version, the `prerelease` will work the - same as `prepatch`. It increments the patch version, then makes a - prerelease. If the input version is already a prerelease it simply - increments it. -* `major(v)`: Return the major version number. -* `minor(v)`: Return the minor version number. -* `patch(v)`: Return the patch version number. - -### Comparison - -* `gt(v1, v2)`: `v1 > v2` -* `gte(v1, v2)`: `v1 >= v2` -* `lt(v1, v2)`: `v1 < v2` -* `lte(v1, v2)`: `v1 <= v2` -* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent, - even if they're not the exact same string. You already know how to - compare strings. -* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`. -* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call - the corresponding function above. `"==="` and `"!=="` do simple - string comparison, but are included for completeness. Throws if an - invalid comparison string is provided. -* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if - `v2` is greater. Sorts in ascending order if passed to `Array.sort()`. -* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions - in descending order when passed to `Array.sort()`. -* `diff(v1, v2)`: Returns difference between two versions by the release type - (`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`), - or null if the versions are the same. - - -### Ranges - -* `validRange(range)`: Return the valid range or null if it's not valid -* `satisfies(version, range)`: Return true if the version satisfies the - range. -* `maxSatisfying(versions, range)`: Return the highest version in the list - that satisfies the range, or `null` if none of them do. -* `gtr(version, range)`: Return `true` if version is greater than all the - versions possible in the range. -* `ltr(version, range)`: Return `true` if version is less than all the - versions possible in the range. -* `outside(version, range, hilo)`: Return true if the version is outside - the bounds of the range in either the high or low direction. The - `hilo` argument must be either the string `'>'` or `'<'`. (This is - the function called by `gtr` and `ltr`.) - -Note that, since ranges may be non-contiguous, a version might not be -greater than a range, less than a range, *or* satisfy a range! For -example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9` -until `2.0.0`, so the version `1.2.10` would not be greater than the -range (because `2.0.1` satisfies, which is higher), nor less than the -range (since `1.2.8` satisfies, which is lower), and it also does not -satisfy the range. - -If you want to know if a version satisfies or does not satisfy a -range, use the `satisfies(version, range)` function. diff --git a/node_modules/semver/bin/semver b/node_modules/semver/bin/semver deleted file mode 100755 index c5f2e85..0000000 --- a/node_modules/semver/bin/semver +++ /dev/null @@ -1,133 +0,0 @@ -#!/usr/bin/env node -// Standalone semver comparison program. -// Exits successfully and prints matching version(s) if -// any supplied version is valid and passes all tests. - -var argv = process.argv.slice(2) - , versions = [] - , range = [] - , gt = [] - , lt = [] - , eq = [] - , inc = null - , version = require("../package.json").version - , loose = false - , identifier = undefined - , semver = require("../semver") - , reverse = false - -main() - -function main () { - if (!argv.length) return help() - while (argv.length) { - var a = argv.shift() - var i = a.indexOf('=') - if (i !== -1) { - a = a.slice(0, i) - argv.unshift(a.slice(i + 1)) - } - switch (a) { - case "-rv": case "-rev": case "--rev": case "--reverse": - reverse = true - break - case "-l": case "--loose": - loose = true - break - case "-v": case "--version": - versions.push(argv.shift()) - break - case "-i": case "--inc": case "--increment": - switch (argv[0]) { - case "major": case "minor": case "patch": case "prerelease": - case "premajor": case "preminor": case "prepatch": - inc = argv.shift() - break - default: - inc = "patch" - break - } - break - case "--preid": - identifier = argv.shift() - break - case "-r": case "--range": - range.push(argv.shift()) - break - case "-h": case "--help": case "-?": - return help() - default: - versions.push(a) - break - } - } - - versions = versions.filter(function (v) { - return semver.valid(v, loose) - }) - if (!versions.length) return fail() - if (inc && (versions.length !== 1 || range.length)) - return failInc() - - for (var i = 0, l = range.length; i < l ; i ++) { - versions = versions.filter(function (v) { - return semver.satisfies(v, range[i], loose) - }) - if (!versions.length) return fail() - } - return success(versions) -} - -function failInc () { - console.error("--inc can only be used on a single version with no range") - fail() -} - -function fail () { process.exit(1) } - -function success () { - var compare = reverse ? "rcompare" : "compare" - versions.sort(function (a, b) { - return semver[compare](a, b, loose) - }).map(function (v) { - return semver.clean(v, loose) - }).map(function (v) { - return inc ? semver.inc(v, inc, loose, identifier) : v - }).forEach(function (v,i,_) { console.log(v) }) -} - -function help () { - console.log(["SemVer " + version - ,"" - ,"A JavaScript implementation of the http://semver.org/ specification" - ,"Copyright Isaac Z. Schlueter" - ,"" - ,"Usage: semver [options] [ [...]]" - ,"Prints valid versions sorted by SemVer precedence" - ,"" - ,"Options:" - ,"-r --range " - ," Print versions that match the specified range." - ,"" - ,"-i --increment []" - ," Increment a version by the specified level. Level can" - ," be one of: major, minor, patch, premajor, preminor," - ," prepatch, or prerelease. Default level is 'patch'." - ," Only one version may be specified." - ,"" - ,"--preid " - ," Identifier to be used to prefix premajor, preminor," - ," prepatch or prerelease version increments." - ,"" - ,"-l --loose" - ," Interpret versions and ranges loosely" - ,"" - ,"Program exits successfully if any valid version satisfies" - ,"all supplied ranges, and prints all satisfying versions." - ,"" - ,"If no satisfying versions are found, then exits failure." - ,"" - ,"Versions are printed in ascending order, so supplying" - ,"multiple versions to the utility will just sort them." - ].join("\n")) -} diff --git a/node_modules/semver/foot.js.txt b/node_modules/semver/foot.js.txt deleted file mode 100644 index 8f83c20..0000000 --- a/node_modules/semver/foot.js.txt +++ /dev/null @@ -1,6 +0,0 @@ - -})( - typeof exports === 'object' ? exports : - typeof define === 'function' && define.amd ? {} : - semver = {} -); diff --git a/node_modules/semver/head.js.txt b/node_modules/semver/head.js.txt deleted file mode 100644 index 6536865..0000000 --- a/node_modules/semver/head.js.txt +++ /dev/null @@ -1,2 +0,0 @@ -;(function(exports) { - diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json deleted file mode 100644 index 9b8b0c9..0000000 --- a/node_modules/semver/package.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "_from": "semver@4.3.2", - "_id": "semver@4.3.2", - "_inBundle": false, - "_integrity": "sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=", - "_location": "/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@4.3.2", - "name": "semver", - "escapedName": "semver", - "rawSpec": "4.3.2", - "saveSpec": null, - "fetchSpec": "4.3.2" - }, - "_requiredBy": [ - "/pg" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz", - "_shasum": "c7a07158a80bedd052355b770d82d6640f803be7", - "_spec": "semver@4.3.2", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pg", - "bin": { - "semver": "./bin/semver" - }, - "browser": "semver.browser.js", - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "The semantic version parser used by npm.", - "devDependencies": { - "tap": "0.x >=0.0.4", - "uglify-js": "~2.3.6" - }, - "homepage": "https://github.com/npm/node-semver#readme", - "license": "BSD", - "main": "semver.js", - "min": "semver.min.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git://github.com/npm/node-semver.git" - }, - "scripts": { - "prepublish": "make", - "test": "tap test/*.js" - }, - "version": "4.3.2" -} diff --git a/node_modules/semver/semver.browser.js b/node_modules/semver/semver.browser.js deleted file mode 100644 index 250885a..0000000 --- a/node_modules/semver/semver.browser.js +++ /dev/null @@ -1,1187 +0,0 @@ -;(function(exports) { - -// export the class if we are in a Node-like system. -if (typeof module === 'object' && module.exports === exports) - exports = module.exports = SemVer; - -// The debug function is excluded entirely from the minified version. - -// Note: this is the semver.org version of the spec that it implements -// Not necessarily the package version of this code. -exports.SEMVER_SPEC_VERSION = '2.0.0'; - -var MAX_LENGTH = 256; -var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991; - -// The actual regexps go on exports.re -var re = exports.re = []; -var src = exports.src = []; -var R = 0; - -// The following Regular Expressions can be used for tokenizing, -// validating, and parsing SemVer version strings. - -// ## Numeric Identifier -// A single `0`, or a non-zero digit followed by zero or more digits. - -var NUMERICIDENTIFIER = R++; -src[NUMERICIDENTIFIER] = '0|[1-9]\\d*'; -var NUMERICIDENTIFIERLOOSE = R++; -src[NUMERICIDENTIFIERLOOSE] = '[0-9]+'; - - -// ## Non-numeric Identifier -// Zero or more digits, followed by a letter or hyphen, and then zero or -// more letters, digits, or hyphens. - -var NONNUMERICIDENTIFIER = R++; -src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*'; - - -// ## Main Version -// Three dot-separated numeric identifiers. - -var MAINVERSION = R++; -src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + - '(' + src[NUMERICIDENTIFIER] + ')\\.' + - '(' + src[NUMERICIDENTIFIER] + ')'; - -var MAINVERSIONLOOSE = R++; -src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[NUMERICIDENTIFIERLOOSE] + ')'; - -// ## Pre-release Version Identifier -// A numeric identifier, or a non-numeric identifier. - -var PRERELEASEIDENTIFIER = R++; -src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + - '|' + src[NONNUMERICIDENTIFIER] + ')'; - -var PRERELEASEIDENTIFIERLOOSE = R++; -src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + - '|' + src[NONNUMERICIDENTIFIER] + ')'; - - -// ## Pre-release Version -// Hyphen, followed by one or more dot-separated pre-release version -// identifiers. - -var PRERELEASE = R++; -src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + - '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))'; - -var PRERELEASELOOSE = R++; -src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + - '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))'; - -// ## Build Metadata Identifier -// Any combination of digits, letters, or hyphens. - -var BUILDIDENTIFIER = R++; -src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+'; - -// ## Build Metadata -// Plus sign, followed by one or more period-separated build metadata -// identifiers. - -var BUILD = R++; -src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + - '(?:\\.' + src[BUILDIDENTIFIER] + ')*))'; - - -// ## Full Version String -// A main version, followed optionally by a pre-release version and -// build metadata. - -// Note that the only major, minor, patch, and pre-release sections of -// the version string are capturing groups. The build metadata is not a -// capturing group, because it should not ever be used in version -// comparison. - -var FULL = R++; -var FULLPLAIN = 'v?' + src[MAINVERSION] + - src[PRERELEASE] + '?' + - src[BUILD] + '?'; - -src[FULL] = '^' + FULLPLAIN + '$'; - -// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. -// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty -// common in the npm registry. -var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + - src[PRERELEASELOOSE] + '?' + - src[BUILD] + '?'; - -var LOOSE = R++; -src[LOOSE] = '^' + LOOSEPLAIN + '$'; - -var GTLT = R++; -src[GTLT] = '((?:<|>)?=?)'; - -// Something like "2.*" or "1.2.x". -// Note that "x.x" is a valid xRange identifer, meaning "any version" -// Only the first item is strictly required. -var XRANGEIDENTIFIERLOOSE = R++; -src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*'; -var XRANGEIDENTIFIER = R++; -src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*'; - -var XRANGEPLAIN = R++; -src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + - '(?:' + src[PRERELEASE] + ')?' + - src[BUILD] + '?' + - ')?)?'; - -var XRANGEPLAINLOOSE = R++; -src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:' + src[PRERELEASELOOSE] + ')?' + - src[BUILD] + '?' + - ')?)?'; - -var XRANGE = R++; -src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$'; -var XRANGELOOSE = R++; -src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$'; - -// Tilde ranges. -// Meaning is "reasonably at or greater than" -var LONETILDE = R++; -src[LONETILDE] = '(?:~>?)'; - -var TILDETRIM = R++; -src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+'; -re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g'); -var tildeTrimReplace = '$1~'; - -var TILDE = R++; -src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$'; -var TILDELOOSE = R++; -src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$'; - -// Caret ranges. -// Meaning is "at least and backwards compatible with" -var LONECARET = R++; -src[LONECARET] = '(?:\\^)'; - -var CARETTRIM = R++; -src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+'; -re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g'); -var caretTrimReplace = '$1^'; - -var CARET = R++; -src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$'; -var CARETLOOSE = R++; -src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$'; - -// A simple gt/lt/eq thing, or just "" to indicate "any version" -var COMPARATORLOOSE = R++; -src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$'; -var COMPARATOR = R++; -src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$'; - - -// An expression to strip any whitespace between the gtlt and the thing -// it modifies, so that `> 1.2.3` ==> `>1.2.3` -var COMPARATORTRIM = R++; -src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + - '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')'; - -// this one has to use the /g flag -re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g'); -var comparatorTrimReplace = '$1$2$3'; - - -// Something like `1.2.3 - 1.2.4` -// Note that these all use the loose form, because they'll be -// checked against either the strict or loose comparator form -// later. -var HYPHENRANGE = R++; -src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + - '\\s+-\\s+' + - '(' + src[XRANGEPLAIN] + ')' + - '\\s*$'; - -var HYPHENRANGELOOSE = R++; -src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + - '\\s+-\\s+' + - '(' + src[XRANGEPLAINLOOSE] + ')' + - '\\s*$'; - -// Star ranges basically just allow anything at all. -var STAR = R++; -src[STAR] = '(<|>)?=?\\s*\\*'; - -// Compile to actual regexp objects. -// All are flag-free, unless they were created above with a flag. -for (var i = 0; i < R; i++) { - ; - if (!re[i]) - re[i] = new RegExp(src[i]); -} - -exports.parse = parse; -function parse(version, loose) { - if (version.length > MAX_LENGTH) - return null; - - var r = loose ? re[LOOSE] : re[FULL]; - if (!r.test(version)) - return null; - - try { - return new SemVer(version, loose); - } catch (er) { - return null; - } -} - -exports.valid = valid; -function valid(version, loose) { - var v = parse(version, loose); - return v ? v.version : null; -} - - -exports.clean = clean; -function clean(version, loose) { - var s = parse(version.trim().replace(/^[=v]+/, ''), loose); - return s ? s.version : null; -} - -exports.SemVer = SemVer; - -function SemVer(version, loose) { - if (version instanceof SemVer) { - if (version.loose === loose) - return version; - else - version = version.version; - } else if (typeof version !== 'string') { - throw new TypeError('Invalid Version: ' + version); - } - - if (version.length > MAX_LENGTH) - throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') - - if (!(this instanceof SemVer)) - return new SemVer(version, loose); - - ; - this.loose = loose; - var m = version.trim().match(loose ? re[LOOSE] : re[FULL]); - - if (!m) - throw new TypeError('Invalid Version: ' + version); - - this.raw = version; - - // these are actually numbers - this.major = +m[1]; - this.minor = +m[2]; - this.patch = +m[3]; - - if (this.major > MAX_SAFE_INTEGER || this.major < 0) - throw new TypeError('Invalid major version') - - if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) - throw new TypeError('Invalid minor version') - - if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) - throw new TypeError('Invalid patch version') - - // numberify any prerelease numeric ids - if (!m[4]) - this.prerelease = []; - else - this.prerelease = m[4].split('.').map(function(id) { - return (/^[0-9]+$/.test(id)) ? +id : id; - }); - - this.build = m[5] ? m[5].split('.') : []; - this.format(); -} - -SemVer.prototype.format = function() { - this.version = this.major + '.' + this.minor + '.' + this.patch; - if (this.prerelease.length) - this.version += '-' + this.prerelease.join('.'); - return this.version; -}; - -SemVer.prototype.inspect = function() { - return ''; -}; - -SemVer.prototype.toString = function() { - return this.version; -}; - -SemVer.prototype.compare = function(other) { - ; - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - return this.compareMain(other) || this.comparePre(other); -}; - -SemVer.prototype.compareMain = function(other) { - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - return compareIdentifiers(this.major, other.major) || - compareIdentifiers(this.minor, other.minor) || - compareIdentifiers(this.patch, other.patch); -}; - -SemVer.prototype.comparePre = function(other) { - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - // NOT having a prerelease is > having one - if (this.prerelease.length && !other.prerelease.length) - return -1; - else if (!this.prerelease.length && other.prerelease.length) - return 1; - else if (!this.prerelease.length && !other.prerelease.length) - return 0; - - var i = 0; - do { - var a = this.prerelease[i]; - var b = other.prerelease[i]; - ; - if (a === undefined && b === undefined) - return 0; - else if (b === undefined) - return 1; - else if (a === undefined) - return -1; - else if (a === b) - continue; - else - return compareIdentifiers(a, b); - } while (++i); -}; - -// preminor will bump the version up to the next minor release, and immediately -// down to pre-release. premajor and prepatch work the same way. -SemVer.prototype.inc = function(release, identifier) { - switch (release) { - case 'premajor': - this.prerelease.length = 0; - this.patch = 0; - this.minor = 0; - this.major++; - this.inc('pre', identifier); - break; - case 'preminor': - this.prerelease.length = 0; - this.patch = 0; - this.minor++; - this.inc('pre', identifier); - break; - case 'prepatch': - // If this is already a prerelease, it will bump to the next version - // drop any prereleases that might already exist, since they are not - // relevant at this point. - this.prerelease.length = 0; - this.inc('patch', identifier); - this.inc('pre', identifier); - break; - // If the input is a non-prerelease version, this acts the same as - // prepatch. - case 'prerelease': - if (this.prerelease.length === 0) - this.inc('patch', identifier); - this.inc('pre', identifier); - break; - - case 'major': - // If this is a pre-major version, bump up to the same major version. - // Otherwise increment major. - // 1.0.0-5 bumps to 1.0.0 - // 1.1.0 bumps to 2.0.0 - if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) - this.major++; - this.minor = 0; - this.patch = 0; - this.prerelease = []; - break; - case 'minor': - // If this is a pre-minor version, bump up to the same minor version. - // Otherwise increment minor. - // 1.2.0-5 bumps to 1.2.0 - // 1.2.1 bumps to 1.3.0 - if (this.patch !== 0 || this.prerelease.length === 0) - this.minor++; - this.patch = 0; - this.prerelease = []; - break; - case 'patch': - // If this is not a pre-release version, it will increment the patch. - // If it is a pre-release it will bump up to the same patch version. - // 1.2.0-5 patches to 1.2.0 - // 1.2.0 patches to 1.2.1 - if (this.prerelease.length === 0) - this.patch++; - this.prerelease = []; - break; - // This probably shouldn't be used publicly. - // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. - case 'pre': - if (this.prerelease.length === 0) - this.prerelease = [0]; - else { - var i = this.prerelease.length; - while (--i >= 0) { - if (typeof this.prerelease[i] === 'number') { - this.prerelease[i]++; - i = -2; - } - } - if (i === -1) // didn't increment anything - this.prerelease.push(0); - } - if (identifier) { - // 1.2.0-beta.1 bumps to 1.2.0-beta.2, - // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 - if (this.prerelease[0] === identifier) { - if (isNaN(this.prerelease[1])) - this.prerelease = [identifier, 0]; - } else - this.prerelease = [identifier, 0]; - } - break; - - default: - throw new Error('invalid increment argument: ' + release); - } - this.format(); - return this; -}; - -exports.inc = inc; -function inc(version, release, loose, identifier) { - if (typeof(loose) === 'string') { - identifier = loose; - loose = undefined; - } - - try { - return new SemVer(version, loose).inc(release, identifier).version; - } catch (er) { - return null; - } -} - -exports.diff = diff; -function diff(version1, version2) { - if (eq(version1, version2)) { - return null; - } else { - var v1 = parse(version1); - var v2 = parse(version2); - if (v1.prerelease.length || v2.prerelease.length) { - for (var key in v1) { - if (key === 'major' || key === 'minor' || key === 'patch') { - if (v1[key] !== v2[key]) { - return 'pre'+key; - } - } - } - return 'prerelease'; - } - for (var key in v1) { - if (key === 'major' || key === 'minor' || key === 'patch') { - if (v1[key] !== v2[key]) { - return key; - } - } - } - } -} - -exports.compareIdentifiers = compareIdentifiers; - -var numeric = /^[0-9]+$/; -function compareIdentifiers(a, b) { - var anum = numeric.test(a); - var bnum = numeric.test(b); - - if (anum && bnum) { - a = +a; - b = +b; - } - - return (anum && !bnum) ? -1 : - (bnum && !anum) ? 1 : - a < b ? -1 : - a > b ? 1 : - 0; -} - -exports.rcompareIdentifiers = rcompareIdentifiers; -function rcompareIdentifiers(a, b) { - return compareIdentifiers(b, a); -} - -exports.major = major; -function major(a, loose) { - return new SemVer(a, loose).major; -} - -exports.minor = minor; -function minor(a, loose) { - return new SemVer(a, loose).minor; -} - -exports.patch = patch; -function patch(a, loose) { - return new SemVer(a, loose).patch; -} - -exports.compare = compare; -function compare(a, b, loose) { - return new SemVer(a, loose).compare(b); -} - -exports.compareLoose = compareLoose; -function compareLoose(a, b) { - return compare(a, b, true); -} - -exports.rcompare = rcompare; -function rcompare(a, b, loose) { - return compare(b, a, loose); -} - -exports.sort = sort; -function sort(list, loose) { - return list.sort(function(a, b) { - return exports.compare(a, b, loose); - }); -} - -exports.rsort = rsort; -function rsort(list, loose) { - return list.sort(function(a, b) { - return exports.rcompare(a, b, loose); - }); -} - -exports.gt = gt; -function gt(a, b, loose) { - return compare(a, b, loose) > 0; -} - -exports.lt = lt; -function lt(a, b, loose) { - return compare(a, b, loose) < 0; -} - -exports.eq = eq; -function eq(a, b, loose) { - return compare(a, b, loose) === 0; -} - -exports.neq = neq; -function neq(a, b, loose) { - return compare(a, b, loose) !== 0; -} - -exports.gte = gte; -function gte(a, b, loose) { - return compare(a, b, loose) >= 0; -} - -exports.lte = lte; -function lte(a, b, loose) { - return compare(a, b, loose) <= 0; -} - -exports.cmp = cmp; -function cmp(a, op, b, loose) { - var ret; - switch (op) { - case '===': - if (typeof a === 'object') a = a.version; - if (typeof b === 'object') b = b.version; - ret = a === b; - break; - case '!==': - if (typeof a === 'object') a = a.version; - if (typeof b === 'object') b = b.version; - ret = a !== b; - break; - case '': case '=': case '==': ret = eq(a, b, loose); break; - case '!=': ret = neq(a, b, loose); break; - case '>': ret = gt(a, b, loose); break; - case '>=': ret = gte(a, b, loose); break; - case '<': ret = lt(a, b, loose); break; - case '<=': ret = lte(a, b, loose); break; - default: throw new TypeError('Invalid operator: ' + op); - } - return ret; -} - -exports.Comparator = Comparator; -function Comparator(comp, loose) { - if (comp instanceof Comparator) { - if (comp.loose === loose) - return comp; - else - comp = comp.value; - } - - if (!(this instanceof Comparator)) - return new Comparator(comp, loose); - - ; - this.loose = loose; - this.parse(comp); - - if (this.semver === ANY) - this.value = ''; - else - this.value = this.operator + this.semver.version; - - ; -} - -var ANY = {}; -Comparator.prototype.parse = function(comp) { - var r = this.loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; - var m = comp.match(r); - - if (!m) - throw new TypeError('Invalid comparator: ' + comp); - - this.operator = m[1]; - if (this.operator === '=') - this.operator = ''; - - // if it literally is just '>' or '' then allow anything. - if (!m[2]) - this.semver = ANY; - else - this.semver = new SemVer(m[2], this.loose); -}; - -Comparator.prototype.inspect = function() { - return ''; -}; - -Comparator.prototype.toString = function() { - return this.value; -}; - -Comparator.prototype.test = function(version) { - ; - - if (this.semver === ANY) - return true; - - if (typeof version === 'string') - version = new SemVer(version, this.loose); - - return cmp(version, this.operator, this.semver, this.loose); -}; - - -exports.Range = Range; -function Range(range, loose) { - if ((range instanceof Range) && range.loose === loose) - return range; - - if (!(this instanceof Range)) - return new Range(range, loose); - - this.loose = loose; - - // First, split based on boolean or || - this.raw = range; - this.set = range.split(/\s*\|\|\s*/).map(function(range) { - return this.parseRange(range.trim()); - }, this).filter(function(c) { - // throw out any that are not relevant for whatever reason - return c.length; - }); - - if (!this.set.length) { - throw new TypeError('Invalid SemVer Range: ' + range); - } - - this.format(); -} - -Range.prototype.inspect = function() { - return ''; -}; - -Range.prototype.format = function() { - this.range = this.set.map(function(comps) { - return comps.join(' ').trim(); - }).join('||').trim(); - return this.range; -}; - -Range.prototype.toString = function() { - return this.range; -}; - -Range.prototype.parseRange = function(range) { - var loose = this.loose; - range = range.trim(); - ; - // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` - var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE]; - range = range.replace(hr, hyphenReplace); - ; - // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` - range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace); - ; - - // `~ 1.2.3` => `~1.2.3` - range = range.replace(re[TILDETRIM], tildeTrimReplace); - - // `^ 1.2.3` => `^1.2.3` - range = range.replace(re[CARETTRIM], caretTrimReplace); - - // normalize spaces - range = range.split(/\s+/).join(' '); - - // At this point, the range is completely trimmed and - // ready to be split into comparators. - - var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; - var set = range.split(' ').map(function(comp) { - return parseComparator(comp, loose); - }).join(' ').split(/\s+/); - if (this.loose) { - // in loose mode, throw out any that are not valid comparators - set = set.filter(function(comp) { - return !!comp.match(compRe); - }); - } - set = set.map(function(comp) { - return new Comparator(comp, loose); - }); - - return set; -}; - -// Mostly just for testing and legacy API reasons -exports.toComparators = toComparators; -function toComparators(range, loose) { - return new Range(range, loose).set.map(function(comp) { - return comp.map(function(c) { - return c.value; - }).join(' ').trim().split(' '); - }); -} - -// comprised of xranges, tildes, stars, and gtlt's at this point. -// already replaced the hyphen ranges -// turn into a set of JUST comparators. -function parseComparator(comp, loose) { - ; - comp = replaceCarets(comp, loose); - ; - comp = replaceTildes(comp, loose); - ; - comp = replaceXRanges(comp, loose); - ; - comp = replaceStars(comp, loose); - ; - return comp; -} - -function isX(id) { - return !id || id.toLowerCase() === 'x' || id === '*'; -} - -// ~, ~> --> * (any, kinda silly) -// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 -// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 -// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 -// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 -// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 -function replaceTildes(comp, loose) { - return comp.trim().split(/\s+/).map(function(comp) { - return replaceTilde(comp, loose); - }).join(' '); -} - -function replaceTilde(comp, loose) { - var r = loose ? re[TILDELOOSE] : re[TILDE]; - return comp.replace(r, function(_, M, m, p, pr) { - ; - var ret; - - if (isX(M)) - ret = ''; - else if (isX(m)) - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - else if (isX(p)) - // ~1.2 == >=1.2.0- <1.3.0- - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - else if (pr) { - ; - if (pr.charAt(0) !== '-') - pr = '-' + pr; - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - // ~1.2.3 == >=1.2.3 <1.3.0 - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0'; - - ; - return ret; - }); -} - -// ^ --> * (any, kinda silly) -// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 -// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 -// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 -// ^1.2.3 --> >=1.2.3 <2.0.0 -// ^1.2.0 --> >=1.2.0 <2.0.0 -function replaceCarets(comp, loose) { - return comp.trim().split(/\s+/).map(function(comp) { - return replaceCaret(comp, loose); - }).join(' '); -} - -function replaceCaret(comp, loose) { - ; - var r = loose ? re[CARETLOOSE] : re[CARET]; - return comp.replace(r, function(_, M, m, p, pr) { - ; - var ret; - - if (isX(M)) - ret = ''; - else if (isX(m)) - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - else if (isX(p)) { - if (M === '0') - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - else - ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'; - } else if (pr) { - ; - if (pr.charAt(0) !== '-') - pr = '-' + pr; - if (M === '0') { - if (m === '0') - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + m + '.' + (+p + 1); - else - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + (+M + 1) + '.0.0'; - } else { - ; - if (M === '0') { - if (m === '0') - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + m + '.' + (+p + 1); - else - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - ret = '>=' + M + '.' + m + '.' + p + - ' <' + (+M + 1) + '.0.0'; - } - - ; - return ret; - }); -} - -function replaceXRanges(comp, loose) { - ; - return comp.split(/\s+/).map(function(comp) { - return replaceXRange(comp, loose); - }).join(' '); -} - -function replaceXRange(comp, loose) { - comp = comp.trim(); - var r = loose ? re[XRANGELOOSE] : re[XRANGE]; - return comp.replace(r, function(ret, gtlt, M, m, p, pr) { - ; - var xM = isX(M); - var xm = xM || isX(m); - var xp = xm || isX(p); - var anyX = xp; - - if (gtlt === '=' && anyX) - gtlt = ''; - - if (xM) { - if (gtlt === '>' || gtlt === '<') { - // nothing is allowed - ret = '<0.0.0'; - } else { - // nothing is forbidden - ret = '*'; - } - } else if (gtlt && anyX) { - // replace X with 0 - if (xm) - m = 0; - if (xp) - p = 0; - - if (gtlt === '>') { - // >1 => >=2.0.0 - // >1.2 => >=1.3.0 - // >1.2.3 => >= 1.2.4 - gtlt = '>='; - if (xm) { - M = +M + 1; - m = 0; - p = 0; - } else if (xp) { - m = +m + 1; - p = 0; - } - } else if (gtlt === '<=') { - // <=0.7.x is actually <0.8.0, since any 0.7.x should - // pass. Similarly, <=7.x is actually <8.0.0, etc. - gtlt = '<' - if (xm) - M = +M + 1 - else - m = +m + 1 - } - - ret = gtlt + M + '.' + m + '.' + p; - } else if (xm) { - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - } else if (xp) { - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - } - - ; - - return ret; - }); -} - -// Because * is AND-ed with everything else in the comparator, -// and '' means "any version", just remove the *s entirely. -function replaceStars(comp, loose) { - ; - // Looseness is ignored here. star is always as loose as it gets! - return comp.trim().replace(re[STAR], ''); -} - -// This function is passed to string.replace(re[HYPHENRANGE]) -// M, m, patch, prerelease, build -// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 -// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do -// 1.2 - 3.4 => >=1.2.0 <3.5.0 -function hyphenReplace($0, - from, fM, fm, fp, fpr, fb, - to, tM, tm, tp, tpr, tb) { - - if (isX(fM)) - from = ''; - else if (isX(fm)) - from = '>=' + fM + '.0.0'; - else if (isX(fp)) - from = '>=' + fM + '.' + fm + '.0'; - else - from = '>=' + from; - - if (isX(tM)) - to = ''; - else if (isX(tm)) - to = '<' + (+tM + 1) + '.0.0'; - else if (isX(tp)) - to = '<' + tM + '.' + (+tm + 1) + '.0'; - else if (tpr) - to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr; - else - to = '<=' + to; - - return (from + ' ' + to).trim(); -} - - -// if ANY of the sets match ALL of its comparators, then pass -Range.prototype.test = function(version) { - if (!version) - return false; - - if (typeof version === 'string') - version = new SemVer(version, this.loose); - - for (var i = 0; i < this.set.length; i++) { - if (testSet(this.set[i], version)) - return true; - } - return false; -}; - -function testSet(set, version) { - for (var i = 0; i < set.length; i++) { - if (!set[i].test(version)) - return false; - } - - if (version.prerelease.length) { - // Find the set of versions that are allowed to have prereleases - // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 - // That should allow `1.2.3-pr.2` to pass. - // However, `1.2.4-alpha.notready` should NOT be allowed, - // even though it's within the range set by the comparators. - for (var i = 0; i < set.length; i++) { - ; - if (set[i].semver === ANY) - return true; - - if (set[i].semver.prerelease.length > 0) { - var allowed = set[i].semver; - if (allowed.major === version.major && - allowed.minor === version.minor && - allowed.patch === version.patch) - return true; - } - } - - // Version has a -pre, but it's not one of the ones we like. - return false; - } - - return true; -} - -exports.satisfies = satisfies; -function satisfies(version, range, loose) { - try { - range = new Range(range, loose); - } catch (er) { - return false; - } - return range.test(version); -} - -exports.maxSatisfying = maxSatisfying; -function maxSatisfying(versions, range, loose) { - return versions.filter(function(version) { - return satisfies(version, range, loose); - }).sort(function(a, b) { - return rcompare(a, b, loose); - })[0] || null; -} - -exports.validRange = validRange; -function validRange(range, loose) { - try { - // Return '*' instead of '' so that truthiness works. - // This will throw if it's invalid anyway - return new Range(range, loose).range || '*'; - } catch (er) { - return null; - } -} - -// Determine if version is less than all the versions possible in the range -exports.ltr = ltr; -function ltr(version, range, loose) { - return outside(version, range, '<', loose); -} - -// Determine if version is greater than all the versions possible in the range. -exports.gtr = gtr; -function gtr(version, range, loose) { - return outside(version, range, '>', loose); -} - -exports.outside = outside; -function outside(version, range, hilo, loose) { - version = new SemVer(version, loose); - range = new Range(range, loose); - - var gtfn, ltefn, ltfn, comp, ecomp; - switch (hilo) { - case '>': - gtfn = gt; - ltefn = lte; - ltfn = lt; - comp = '>'; - ecomp = '>='; - break; - case '<': - gtfn = lt; - ltefn = gte; - ltfn = gt; - comp = '<'; - ecomp = '<='; - break; - default: - throw new TypeError('Must provide a hilo val of "<" or ">"'); - } - - // If it satisifes the range it is not outside - if (satisfies(version, range, loose)) { - return false; - } - - // From now on, variable terms are as if we're in "gtr" mode. - // but note that everything is flipped for the "ltr" function. - - for (var i = 0; i < range.set.length; ++i) { - var comparators = range.set[i]; - - var high = null; - var low = null; - - comparators.forEach(function(comparator) { - high = high || comparator; - low = low || comparator; - if (gtfn(comparator.semver, high.semver, loose)) { - high = comparator; - } else if (ltfn(comparator.semver, low.semver, loose)) { - low = comparator; - } - }); - - // If the edge version comparator has a operator then our version - // isn't outside it - if (high.operator === comp || high.operator === ecomp) { - return false; - } - - // If the lowest version comparator has an operator and our version - // is less than it then it isn't higher than the range - if ((!low.operator || low.operator === comp) && - ltefn(version, low.semver)) { - return false; - } else if (low.operator === ecomp && ltfn(version, low.semver)) { - return false; - } - } - return true; -} - -// Use the define() function if we're in AMD land -if (typeof define === 'function' && define.amd) - define(exports); - -})( - typeof exports === 'object' ? exports : - typeof define === 'function' && define.amd ? {} : - semver = {} -); diff --git a/node_modules/semver/semver.browser.js.gz b/node_modules/semver/semver.browser.js.gz deleted file mode 100644 index 6a8cf09..0000000 Binary files a/node_modules/semver/semver.browser.js.gz and /dev/null differ diff --git a/node_modules/semver/semver.js b/node_modules/semver/semver.js deleted file mode 100644 index d265b56..0000000 --- a/node_modules/semver/semver.js +++ /dev/null @@ -1,1191 +0,0 @@ -// export the class if we are in a Node-like system. -if (typeof module === 'object' && module.exports === exports) - exports = module.exports = SemVer; - -// The debug function is excluded entirely from the minified version. -/* nomin */ var debug; -/* nomin */ if (typeof process === 'object' && - /* nomin */ process.env && - /* nomin */ process.env.NODE_DEBUG && - /* nomin */ /\bsemver\b/i.test(process.env.NODE_DEBUG)) - /* nomin */ debug = function() { - /* nomin */ var args = Array.prototype.slice.call(arguments, 0); - /* nomin */ args.unshift('SEMVER'); - /* nomin */ console.log.apply(console, args); - /* nomin */ }; -/* nomin */ else - /* nomin */ debug = function() {}; - -// Note: this is the semver.org version of the spec that it implements -// Not necessarily the package version of this code. -exports.SEMVER_SPEC_VERSION = '2.0.0'; - -var MAX_LENGTH = 256; -var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991; - -// The actual regexps go on exports.re -var re = exports.re = []; -var src = exports.src = []; -var R = 0; - -// The following Regular Expressions can be used for tokenizing, -// validating, and parsing SemVer version strings. - -// ## Numeric Identifier -// A single `0`, or a non-zero digit followed by zero or more digits. - -var NUMERICIDENTIFIER = R++; -src[NUMERICIDENTIFIER] = '0|[1-9]\\d*'; -var NUMERICIDENTIFIERLOOSE = R++; -src[NUMERICIDENTIFIERLOOSE] = '[0-9]+'; - - -// ## Non-numeric Identifier -// Zero or more digits, followed by a letter or hyphen, and then zero or -// more letters, digits, or hyphens. - -var NONNUMERICIDENTIFIER = R++; -src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*'; - - -// ## Main Version -// Three dot-separated numeric identifiers. - -var MAINVERSION = R++; -src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + - '(' + src[NUMERICIDENTIFIER] + ')\\.' + - '(' + src[NUMERICIDENTIFIER] + ')'; - -var MAINVERSIONLOOSE = R++; -src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[NUMERICIDENTIFIERLOOSE] + ')'; - -// ## Pre-release Version Identifier -// A numeric identifier, or a non-numeric identifier. - -var PRERELEASEIDENTIFIER = R++; -src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + - '|' + src[NONNUMERICIDENTIFIER] + ')'; - -var PRERELEASEIDENTIFIERLOOSE = R++; -src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + - '|' + src[NONNUMERICIDENTIFIER] + ')'; - - -// ## Pre-release Version -// Hyphen, followed by one or more dot-separated pre-release version -// identifiers. - -var PRERELEASE = R++; -src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + - '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))'; - -var PRERELEASELOOSE = R++; -src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + - '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))'; - -// ## Build Metadata Identifier -// Any combination of digits, letters, or hyphens. - -var BUILDIDENTIFIER = R++; -src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+'; - -// ## Build Metadata -// Plus sign, followed by one or more period-separated build metadata -// identifiers. - -var BUILD = R++; -src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + - '(?:\\.' + src[BUILDIDENTIFIER] + ')*))'; - - -// ## Full Version String -// A main version, followed optionally by a pre-release version and -// build metadata. - -// Note that the only major, minor, patch, and pre-release sections of -// the version string are capturing groups. The build metadata is not a -// capturing group, because it should not ever be used in version -// comparison. - -var FULL = R++; -var FULLPLAIN = 'v?' + src[MAINVERSION] + - src[PRERELEASE] + '?' + - src[BUILD] + '?'; - -src[FULL] = '^' + FULLPLAIN + '$'; - -// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. -// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty -// common in the npm registry. -var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + - src[PRERELEASELOOSE] + '?' + - src[BUILD] + '?'; - -var LOOSE = R++; -src[LOOSE] = '^' + LOOSEPLAIN + '$'; - -var GTLT = R++; -src[GTLT] = '((?:<|>)?=?)'; - -// Something like "2.*" or "1.2.x". -// Note that "x.x" is a valid xRange identifer, meaning "any version" -// Only the first item is strictly required. -var XRANGEIDENTIFIERLOOSE = R++; -src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*'; -var XRANGEIDENTIFIER = R++; -src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*'; - -var XRANGEPLAIN = R++; -src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + - '(?:' + src[PRERELEASE] + ')?' + - src[BUILD] + '?' + - ')?)?'; - -var XRANGEPLAINLOOSE = R++; -src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + - '(?:' + src[PRERELEASELOOSE] + ')?' + - src[BUILD] + '?' + - ')?)?'; - -var XRANGE = R++; -src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$'; -var XRANGELOOSE = R++; -src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$'; - -// Tilde ranges. -// Meaning is "reasonably at or greater than" -var LONETILDE = R++; -src[LONETILDE] = '(?:~>?)'; - -var TILDETRIM = R++; -src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+'; -re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g'); -var tildeTrimReplace = '$1~'; - -var TILDE = R++; -src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$'; -var TILDELOOSE = R++; -src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$'; - -// Caret ranges. -// Meaning is "at least and backwards compatible with" -var LONECARET = R++; -src[LONECARET] = '(?:\\^)'; - -var CARETTRIM = R++; -src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+'; -re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g'); -var caretTrimReplace = '$1^'; - -var CARET = R++; -src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$'; -var CARETLOOSE = R++; -src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$'; - -// A simple gt/lt/eq thing, or just "" to indicate "any version" -var COMPARATORLOOSE = R++; -src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$'; -var COMPARATOR = R++; -src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$'; - - -// An expression to strip any whitespace between the gtlt and the thing -// it modifies, so that `> 1.2.3` ==> `>1.2.3` -var COMPARATORTRIM = R++; -src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + - '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')'; - -// this one has to use the /g flag -re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g'); -var comparatorTrimReplace = '$1$2$3'; - - -// Something like `1.2.3 - 1.2.4` -// Note that these all use the loose form, because they'll be -// checked against either the strict or loose comparator form -// later. -var HYPHENRANGE = R++; -src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + - '\\s+-\\s+' + - '(' + src[XRANGEPLAIN] + ')' + - '\\s*$'; - -var HYPHENRANGELOOSE = R++; -src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + - '\\s+-\\s+' + - '(' + src[XRANGEPLAINLOOSE] + ')' + - '\\s*$'; - -// Star ranges basically just allow anything at all. -var STAR = R++; -src[STAR] = '(<|>)?=?\\s*\\*'; - -// Compile to actual regexp objects. -// All are flag-free, unless they were created above with a flag. -for (var i = 0; i < R; i++) { - debug(i, src[i]); - if (!re[i]) - re[i] = new RegExp(src[i]); -} - -exports.parse = parse; -function parse(version, loose) { - if (version.length > MAX_LENGTH) - return null; - - var r = loose ? re[LOOSE] : re[FULL]; - if (!r.test(version)) - return null; - - try { - return new SemVer(version, loose); - } catch (er) { - return null; - } -} - -exports.valid = valid; -function valid(version, loose) { - var v = parse(version, loose); - return v ? v.version : null; -} - - -exports.clean = clean; -function clean(version, loose) { - var s = parse(version.trim().replace(/^[=v]+/, ''), loose); - return s ? s.version : null; -} - -exports.SemVer = SemVer; - -function SemVer(version, loose) { - if (version instanceof SemVer) { - if (version.loose === loose) - return version; - else - version = version.version; - } else if (typeof version !== 'string') { - throw new TypeError('Invalid Version: ' + version); - } - - if (version.length > MAX_LENGTH) - throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') - - if (!(this instanceof SemVer)) - return new SemVer(version, loose); - - debug('SemVer', version, loose); - this.loose = loose; - var m = version.trim().match(loose ? re[LOOSE] : re[FULL]); - - if (!m) - throw new TypeError('Invalid Version: ' + version); - - this.raw = version; - - // these are actually numbers - this.major = +m[1]; - this.minor = +m[2]; - this.patch = +m[3]; - - if (this.major > MAX_SAFE_INTEGER || this.major < 0) - throw new TypeError('Invalid major version') - - if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) - throw new TypeError('Invalid minor version') - - if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) - throw new TypeError('Invalid patch version') - - // numberify any prerelease numeric ids - if (!m[4]) - this.prerelease = []; - else - this.prerelease = m[4].split('.').map(function(id) { - return (/^[0-9]+$/.test(id)) ? +id : id; - }); - - this.build = m[5] ? m[5].split('.') : []; - this.format(); -} - -SemVer.prototype.format = function() { - this.version = this.major + '.' + this.minor + '.' + this.patch; - if (this.prerelease.length) - this.version += '-' + this.prerelease.join('.'); - return this.version; -}; - -SemVer.prototype.inspect = function() { - return ''; -}; - -SemVer.prototype.toString = function() { - return this.version; -}; - -SemVer.prototype.compare = function(other) { - debug('SemVer.compare', this.version, this.loose, other); - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - return this.compareMain(other) || this.comparePre(other); -}; - -SemVer.prototype.compareMain = function(other) { - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - return compareIdentifiers(this.major, other.major) || - compareIdentifiers(this.minor, other.minor) || - compareIdentifiers(this.patch, other.patch); -}; - -SemVer.prototype.comparePre = function(other) { - if (!(other instanceof SemVer)) - other = new SemVer(other, this.loose); - - // NOT having a prerelease is > having one - if (this.prerelease.length && !other.prerelease.length) - return -1; - else if (!this.prerelease.length && other.prerelease.length) - return 1; - else if (!this.prerelease.length && !other.prerelease.length) - return 0; - - var i = 0; - do { - var a = this.prerelease[i]; - var b = other.prerelease[i]; - debug('prerelease compare', i, a, b); - if (a === undefined && b === undefined) - return 0; - else if (b === undefined) - return 1; - else if (a === undefined) - return -1; - else if (a === b) - continue; - else - return compareIdentifiers(a, b); - } while (++i); -}; - -// preminor will bump the version up to the next minor release, and immediately -// down to pre-release. premajor and prepatch work the same way. -SemVer.prototype.inc = function(release, identifier) { - switch (release) { - case 'premajor': - this.prerelease.length = 0; - this.patch = 0; - this.minor = 0; - this.major++; - this.inc('pre', identifier); - break; - case 'preminor': - this.prerelease.length = 0; - this.patch = 0; - this.minor++; - this.inc('pre', identifier); - break; - case 'prepatch': - // If this is already a prerelease, it will bump to the next version - // drop any prereleases that might already exist, since they are not - // relevant at this point. - this.prerelease.length = 0; - this.inc('patch', identifier); - this.inc('pre', identifier); - break; - // If the input is a non-prerelease version, this acts the same as - // prepatch. - case 'prerelease': - if (this.prerelease.length === 0) - this.inc('patch', identifier); - this.inc('pre', identifier); - break; - - case 'major': - // If this is a pre-major version, bump up to the same major version. - // Otherwise increment major. - // 1.0.0-5 bumps to 1.0.0 - // 1.1.0 bumps to 2.0.0 - if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) - this.major++; - this.minor = 0; - this.patch = 0; - this.prerelease = []; - break; - case 'minor': - // If this is a pre-minor version, bump up to the same minor version. - // Otherwise increment minor. - // 1.2.0-5 bumps to 1.2.0 - // 1.2.1 bumps to 1.3.0 - if (this.patch !== 0 || this.prerelease.length === 0) - this.minor++; - this.patch = 0; - this.prerelease = []; - break; - case 'patch': - // If this is not a pre-release version, it will increment the patch. - // If it is a pre-release it will bump up to the same patch version. - // 1.2.0-5 patches to 1.2.0 - // 1.2.0 patches to 1.2.1 - if (this.prerelease.length === 0) - this.patch++; - this.prerelease = []; - break; - // This probably shouldn't be used publicly. - // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. - case 'pre': - if (this.prerelease.length === 0) - this.prerelease = [0]; - else { - var i = this.prerelease.length; - while (--i >= 0) { - if (typeof this.prerelease[i] === 'number') { - this.prerelease[i]++; - i = -2; - } - } - if (i === -1) // didn't increment anything - this.prerelease.push(0); - } - if (identifier) { - // 1.2.0-beta.1 bumps to 1.2.0-beta.2, - // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 - if (this.prerelease[0] === identifier) { - if (isNaN(this.prerelease[1])) - this.prerelease = [identifier, 0]; - } else - this.prerelease = [identifier, 0]; - } - break; - - default: - throw new Error('invalid increment argument: ' + release); - } - this.format(); - return this; -}; - -exports.inc = inc; -function inc(version, release, loose, identifier) { - if (typeof(loose) === 'string') { - identifier = loose; - loose = undefined; - } - - try { - return new SemVer(version, loose).inc(release, identifier).version; - } catch (er) { - return null; - } -} - -exports.diff = diff; -function diff(version1, version2) { - if (eq(version1, version2)) { - return null; - } else { - var v1 = parse(version1); - var v2 = parse(version2); - if (v1.prerelease.length || v2.prerelease.length) { - for (var key in v1) { - if (key === 'major' || key === 'minor' || key === 'patch') { - if (v1[key] !== v2[key]) { - return 'pre'+key; - } - } - } - return 'prerelease'; - } - for (var key in v1) { - if (key === 'major' || key === 'minor' || key === 'patch') { - if (v1[key] !== v2[key]) { - return key; - } - } - } - } -} - -exports.compareIdentifiers = compareIdentifiers; - -var numeric = /^[0-9]+$/; -function compareIdentifiers(a, b) { - var anum = numeric.test(a); - var bnum = numeric.test(b); - - if (anum && bnum) { - a = +a; - b = +b; - } - - return (anum && !bnum) ? -1 : - (bnum && !anum) ? 1 : - a < b ? -1 : - a > b ? 1 : - 0; -} - -exports.rcompareIdentifiers = rcompareIdentifiers; -function rcompareIdentifiers(a, b) { - return compareIdentifiers(b, a); -} - -exports.major = major; -function major(a, loose) { - return new SemVer(a, loose).major; -} - -exports.minor = minor; -function minor(a, loose) { - return new SemVer(a, loose).minor; -} - -exports.patch = patch; -function patch(a, loose) { - return new SemVer(a, loose).patch; -} - -exports.compare = compare; -function compare(a, b, loose) { - return new SemVer(a, loose).compare(b); -} - -exports.compareLoose = compareLoose; -function compareLoose(a, b) { - return compare(a, b, true); -} - -exports.rcompare = rcompare; -function rcompare(a, b, loose) { - return compare(b, a, loose); -} - -exports.sort = sort; -function sort(list, loose) { - return list.sort(function(a, b) { - return exports.compare(a, b, loose); - }); -} - -exports.rsort = rsort; -function rsort(list, loose) { - return list.sort(function(a, b) { - return exports.rcompare(a, b, loose); - }); -} - -exports.gt = gt; -function gt(a, b, loose) { - return compare(a, b, loose) > 0; -} - -exports.lt = lt; -function lt(a, b, loose) { - return compare(a, b, loose) < 0; -} - -exports.eq = eq; -function eq(a, b, loose) { - return compare(a, b, loose) === 0; -} - -exports.neq = neq; -function neq(a, b, loose) { - return compare(a, b, loose) !== 0; -} - -exports.gte = gte; -function gte(a, b, loose) { - return compare(a, b, loose) >= 0; -} - -exports.lte = lte; -function lte(a, b, loose) { - return compare(a, b, loose) <= 0; -} - -exports.cmp = cmp; -function cmp(a, op, b, loose) { - var ret; - switch (op) { - case '===': - if (typeof a === 'object') a = a.version; - if (typeof b === 'object') b = b.version; - ret = a === b; - break; - case '!==': - if (typeof a === 'object') a = a.version; - if (typeof b === 'object') b = b.version; - ret = a !== b; - break; - case '': case '=': case '==': ret = eq(a, b, loose); break; - case '!=': ret = neq(a, b, loose); break; - case '>': ret = gt(a, b, loose); break; - case '>=': ret = gte(a, b, loose); break; - case '<': ret = lt(a, b, loose); break; - case '<=': ret = lte(a, b, loose); break; - default: throw new TypeError('Invalid operator: ' + op); - } - return ret; -} - -exports.Comparator = Comparator; -function Comparator(comp, loose) { - if (comp instanceof Comparator) { - if (comp.loose === loose) - return comp; - else - comp = comp.value; - } - - if (!(this instanceof Comparator)) - return new Comparator(comp, loose); - - debug('comparator', comp, loose); - this.loose = loose; - this.parse(comp); - - if (this.semver === ANY) - this.value = ''; - else - this.value = this.operator + this.semver.version; - - debug('comp', this); -} - -var ANY = {}; -Comparator.prototype.parse = function(comp) { - var r = this.loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; - var m = comp.match(r); - - if (!m) - throw new TypeError('Invalid comparator: ' + comp); - - this.operator = m[1]; - if (this.operator === '=') - this.operator = ''; - - // if it literally is just '>' or '' then allow anything. - if (!m[2]) - this.semver = ANY; - else - this.semver = new SemVer(m[2], this.loose); -}; - -Comparator.prototype.inspect = function() { - return ''; -}; - -Comparator.prototype.toString = function() { - return this.value; -}; - -Comparator.prototype.test = function(version) { - debug('Comparator.test', version, this.loose); - - if (this.semver === ANY) - return true; - - if (typeof version === 'string') - version = new SemVer(version, this.loose); - - return cmp(version, this.operator, this.semver, this.loose); -}; - - -exports.Range = Range; -function Range(range, loose) { - if ((range instanceof Range) && range.loose === loose) - return range; - - if (!(this instanceof Range)) - return new Range(range, loose); - - this.loose = loose; - - // First, split based on boolean or || - this.raw = range; - this.set = range.split(/\s*\|\|\s*/).map(function(range) { - return this.parseRange(range.trim()); - }, this).filter(function(c) { - // throw out any that are not relevant for whatever reason - return c.length; - }); - - if (!this.set.length) { - throw new TypeError('Invalid SemVer Range: ' + range); - } - - this.format(); -} - -Range.prototype.inspect = function() { - return ''; -}; - -Range.prototype.format = function() { - this.range = this.set.map(function(comps) { - return comps.join(' ').trim(); - }).join('||').trim(); - return this.range; -}; - -Range.prototype.toString = function() { - return this.range; -}; - -Range.prototype.parseRange = function(range) { - var loose = this.loose; - range = range.trim(); - debug('range', range, loose); - // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` - var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE]; - range = range.replace(hr, hyphenReplace); - debug('hyphen replace', range); - // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` - range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace); - debug('comparator trim', range, re[COMPARATORTRIM]); - - // `~ 1.2.3` => `~1.2.3` - range = range.replace(re[TILDETRIM], tildeTrimReplace); - - // `^ 1.2.3` => `^1.2.3` - range = range.replace(re[CARETTRIM], caretTrimReplace); - - // normalize spaces - range = range.split(/\s+/).join(' '); - - // At this point, the range is completely trimmed and - // ready to be split into comparators. - - var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; - var set = range.split(' ').map(function(comp) { - return parseComparator(comp, loose); - }).join(' ').split(/\s+/); - if (this.loose) { - // in loose mode, throw out any that are not valid comparators - set = set.filter(function(comp) { - return !!comp.match(compRe); - }); - } - set = set.map(function(comp) { - return new Comparator(comp, loose); - }); - - return set; -}; - -// Mostly just for testing and legacy API reasons -exports.toComparators = toComparators; -function toComparators(range, loose) { - return new Range(range, loose).set.map(function(comp) { - return comp.map(function(c) { - return c.value; - }).join(' ').trim().split(' '); - }); -} - -// comprised of xranges, tildes, stars, and gtlt's at this point. -// already replaced the hyphen ranges -// turn into a set of JUST comparators. -function parseComparator(comp, loose) { - debug('comp', comp); - comp = replaceCarets(comp, loose); - debug('caret', comp); - comp = replaceTildes(comp, loose); - debug('tildes', comp); - comp = replaceXRanges(comp, loose); - debug('xrange', comp); - comp = replaceStars(comp, loose); - debug('stars', comp); - return comp; -} - -function isX(id) { - return !id || id.toLowerCase() === 'x' || id === '*'; -} - -// ~, ~> --> * (any, kinda silly) -// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 -// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 -// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 -// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 -// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 -function replaceTildes(comp, loose) { - return comp.trim().split(/\s+/).map(function(comp) { - return replaceTilde(comp, loose); - }).join(' '); -} - -function replaceTilde(comp, loose) { - var r = loose ? re[TILDELOOSE] : re[TILDE]; - return comp.replace(r, function(_, M, m, p, pr) { - debug('tilde', comp, _, M, m, p, pr); - var ret; - - if (isX(M)) - ret = ''; - else if (isX(m)) - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - else if (isX(p)) - // ~1.2 == >=1.2.0- <1.3.0- - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - else if (pr) { - debug('replaceTilde pr', pr); - if (pr.charAt(0) !== '-') - pr = '-' + pr; - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - // ~1.2.3 == >=1.2.3 <1.3.0 - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0'; - - debug('tilde return', ret); - return ret; - }); -} - -// ^ --> * (any, kinda silly) -// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 -// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 -// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 -// ^1.2.3 --> >=1.2.3 <2.0.0 -// ^1.2.0 --> >=1.2.0 <2.0.0 -function replaceCarets(comp, loose) { - return comp.trim().split(/\s+/).map(function(comp) { - return replaceCaret(comp, loose); - }).join(' '); -} - -function replaceCaret(comp, loose) { - debug('caret', comp, loose); - var r = loose ? re[CARETLOOSE] : re[CARET]; - return comp.replace(r, function(_, M, m, p, pr) { - debug('caret', comp, _, M, m, p, pr); - var ret; - - if (isX(M)) - ret = ''; - else if (isX(m)) - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - else if (isX(p)) { - if (M === '0') - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - else - ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'; - } else if (pr) { - debug('replaceCaret pr', pr); - if (pr.charAt(0) !== '-') - pr = '-' + pr; - if (M === '0') { - if (m === '0') - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + m + '.' + (+p + 1); - else - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - ret = '>=' + M + '.' + m + '.' + p + pr + - ' <' + (+M + 1) + '.0.0'; - } else { - debug('no pr'); - if (M === '0') { - if (m === '0') - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + m + '.' + (+p + 1); - else - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0'; - } else - ret = '>=' + M + '.' + m + '.' + p + - ' <' + (+M + 1) + '.0.0'; - } - - debug('caret return', ret); - return ret; - }); -} - -function replaceXRanges(comp, loose) { - debug('replaceXRanges', comp, loose); - return comp.split(/\s+/).map(function(comp) { - return replaceXRange(comp, loose); - }).join(' '); -} - -function replaceXRange(comp, loose) { - comp = comp.trim(); - var r = loose ? re[XRANGELOOSE] : re[XRANGE]; - return comp.replace(r, function(ret, gtlt, M, m, p, pr) { - debug('xRange', comp, ret, gtlt, M, m, p, pr); - var xM = isX(M); - var xm = xM || isX(m); - var xp = xm || isX(p); - var anyX = xp; - - if (gtlt === '=' && anyX) - gtlt = ''; - - if (xM) { - if (gtlt === '>' || gtlt === '<') { - // nothing is allowed - ret = '<0.0.0'; - } else { - // nothing is forbidden - ret = '*'; - } - } else if (gtlt && anyX) { - // replace X with 0 - if (xm) - m = 0; - if (xp) - p = 0; - - if (gtlt === '>') { - // >1 => >=2.0.0 - // >1.2 => >=1.3.0 - // >1.2.3 => >= 1.2.4 - gtlt = '>='; - if (xm) { - M = +M + 1; - m = 0; - p = 0; - } else if (xp) { - m = +m + 1; - p = 0; - } - } else if (gtlt === '<=') { - // <=0.7.x is actually <0.8.0, since any 0.7.x should - // pass. Similarly, <=7.x is actually <8.0.0, etc. - gtlt = '<' - if (xm) - M = +M + 1 - else - m = +m + 1 - } - - ret = gtlt + M + '.' + m + '.' + p; - } else if (xm) { - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; - } else if (xp) { - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; - } - - debug('xRange return', ret); - - return ret; - }); -} - -// Because * is AND-ed with everything else in the comparator, -// and '' means "any version", just remove the *s entirely. -function replaceStars(comp, loose) { - debug('replaceStars', comp, loose); - // Looseness is ignored here. star is always as loose as it gets! - return comp.trim().replace(re[STAR], ''); -} - -// This function is passed to string.replace(re[HYPHENRANGE]) -// M, m, patch, prerelease, build -// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 -// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do -// 1.2 - 3.4 => >=1.2.0 <3.5.0 -function hyphenReplace($0, - from, fM, fm, fp, fpr, fb, - to, tM, tm, tp, tpr, tb) { - - if (isX(fM)) - from = ''; - else if (isX(fm)) - from = '>=' + fM + '.0.0'; - else if (isX(fp)) - from = '>=' + fM + '.' + fm + '.0'; - else - from = '>=' + from; - - if (isX(tM)) - to = ''; - else if (isX(tm)) - to = '<' + (+tM + 1) + '.0.0'; - else if (isX(tp)) - to = '<' + tM + '.' + (+tm + 1) + '.0'; - else if (tpr) - to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr; - else - to = '<=' + to; - - return (from + ' ' + to).trim(); -} - - -// if ANY of the sets match ALL of its comparators, then pass -Range.prototype.test = function(version) { - if (!version) - return false; - - if (typeof version === 'string') - version = new SemVer(version, this.loose); - - for (var i = 0; i < this.set.length; i++) { - if (testSet(this.set[i], version)) - return true; - } - return false; -}; - -function testSet(set, version) { - for (var i = 0; i < set.length; i++) { - if (!set[i].test(version)) - return false; - } - - if (version.prerelease.length) { - // Find the set of versions that are allowed to have prereleases - // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 - // That should allow `1.2.3-pr.2` to pass. - // However, `1.2.4-alpha.notready` should NOT be allowed, - // even though it's within the range set by the comparators. - for (var i = 0; i < set.length; i++) { - debug(set[i].semver); - if (set[i].semver === ANY) - return true; - - if (set[i].semver.prerelease.length > 0) { - var allowed = set[i].semver; - if (allowed.major === version.major && - allowed.minor === version.minor && - allowed.patch === version.patch) - return true; - } - } - - // Version has a -pre, but it's not one of the ones we like. - return false; - } - - return true; -} - -exports.satisfies = satisfies; -function satisfies(version, range, loose) { - try { - range = new Range(range, loose); - } catch (er) { - return false; - } - return range.test(version); -} - -exports.maxSatisfying = maxSatisfying; -function maxSatisfying(versions, range, loose) { - return versions.filter(function(version) { - return satisfies(version, range, loose); - }).sort(function(a, b) { - return rcompare(a, b, loose); - })[0] || null; -} - -exports.validRange = validRange; -function validRange(range, loose) { - try { - // Return '*' instead of '' so that truthiness works. - // This will throw if it's invalid anyway - return new Range(range, loose).range || '*'; - } catch (er) { - return null; - } -} - -// Determine if version is less than all the versions possible in the range -exports.ltr = ltr; -function ltr(version, range, loose) { - return outside(version, range, '<', loose); -} - -// Determine if version is greater than all the versions possible in the range. -exports.gtr = gtr; -function gtr(version, range, loose) { - return outside(version, range, '>', loose); -} - -exports.outside = outside; -function outside(version, range, hilo, loose) { - version = new SemVer(version, loose); - range = new Range(range, loose); - - var gtfn, ltefn, ltfn, comp, ecomp; - switch (hilo) { - case '>': - gtfn = gt; - ltefn = lte; - ltfn = lt; - comp = '>'; - ecomp = '>='; - break; - case '<': - gtfn = lt; - ltefn = gte; - ltfn = gt; - comp = '<'; - ecomp = '<='; - break; - default: - throw new TypeError('Must provide a hilo val of "<" or ">"'); - } - - // If it satisifes the range it is not outside - if (satisfies(version, range, loose)) { - return false; - } - - // From now on, variable terms are as if we're in "gtr" mode. - // but note that everything is flipped for the "ltr" function. - - for (var i = 0; i < range.set.length; ++i) { - var comparators = range.set[i]; - - var high = null; - var low = null; - - comparators.forEach(function(comparator) { - high = high || comparator; - low = low || comparator; - if (gtfn(comparator.semver, high.semver, loose)) { - high = comparator; - } else if (ltfn(comparator.semver, low.semver, loose)) { - low = comparator; - } - }); - - // If the edge version comparator has a operator then our version - // isn't outside it - if (high.operator === comp || high.operator === ecomp) { - return false; - } - - // If the lowest version comparator has an operator and our version - // is less than it then it isn't higher than the range - if ((!low.operator || low.operator === comp) && - ltefn(version, low.semver)) { - return false; - } else if (low.operator === ecomp && ltfn(version, low.semver)) { - return false; - } - } - return true; -} - -// Use the define() function if we're in AMD land -if (typeof define === 'function' && define.amd) - define(exports); diff --git a/node_modules/semver/semver.min.js b/node_modules/semver/semver.min.js deleted file mode 100644 index abe2d81..0000000 --- a/node_modules/semver/semver.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){if(typeof module==="object"&&module.exports===e)e=module.exports=K;e.SEMVER_SPEC_VERSION="2.0.0";var r=256;var t=Number.MAX_SAFE_INTEGER||9007199254740991;var n=e.re=[];var i=e.src=[];var s=0;var o=s++;i[o]="0|[1-9]\\d*";var a=s++;i[a]="[0-9]+";var f=s++;i[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var u=s++;i[u]="("+i[o]+")\\."+"("+i[o]+")\\."+"("+i[o]+")";var l=s++;i[l]="("+i[a]+")\\."+"("+i[a]+")\\."+"("+i[a]+")";var h=s++;i[h]="(?:"+i[o]+"|"+i[f]+")";var p=s++;i[p]="(?:"+i[a]+"|"+i[f]+")";var c=s++;i[c]="(?:-("+i[h]+"(?:\\."+i[h]+")*))";var v=s++;i[v]="(?:-?("+i[p]+"(?:\\."+i[p]+")*))";var m=s++;i[m]="[0-9A-Za-z-]+";var g=s++;i[g]="(?:\\+("+i[m]+"(?:\\."+i[m]+")*))";var w=s++;var y="v?"+i[u]+i[c]+"?"+i[g]+"?";i[w]="^"+y+"$";var d="[v=\\s]*"+i[l]+i[v]+"?"+i[g]+"?";var j=s++;i[j]="^"+d+"$";var b=s++;i[b]="((?:<|>)?=?)";var E=s++;i[E]=i[a]+"|x|X|\\*";var $=s++;i[$]=i[o]+"|x|X|\\*";var k=s++;i[k]="[v=\\s]*("+i[$]+")"+"(?:\\.("+i[$]+")"+"(?:\\.("+i[$]+")"+"(?:"+i[c]+")?"+i[g]+"?"+")?)?";var R=s++;i[R]="[v=\\s]*("+i[E]+")"+"(?:\\.("+i[E]+")"+"(?:\\.("+i[E]+")"+"(?:"+i[v]+")?"+i[g]+"?"+")?)?";var S=s++;i[S]="^"+i[b]+"\\s*"+i[k]+"$";var x=s++;i[x]="^"+i[b]+"\\s*"+i[R]+"$";var I=s++;i[I]="(?:~>?)";var T=s++;i[T]="(\\s*)"+i[I]+"\\s+";n[T]=new RegExp(i[T],"g");var V="$1~";var A=s++;i[A]="^"+i[I]+i[k]+"$";var C=s++;i[C]="^"+i[I]+i[R]+"$";var M=s++;i[M]="(?:\\^)";var N=s++;i[N]="(\\s*)"+i[M]+"\\s+";n[N]=new RegExp(i[N],"g");var _="$1^";var z=s++;i[z]="^"+i[M]+i[k]+"$";var P=s++;i[P]="^"+i[M]+i[R]+"$";var X=s++;i[X]="^"+i[b]+"\\s*("+d+")$|^$";var Z=s++;i[Z]="^"+i[b]+"\\s*("+y+")$|^$";var q=s++;i[q]="(\\s*)"+i[b]+"\\s*("+d+"|"+i[k]+")";n[q]=new RegExp(i[q],"g");var L="$1$2$3";var F=s++;i[F]="^\\s*("+i[k]+")"+"\\s+-\\s+"+"("+i[k]+")"+"\\s*$";var G=s++;i[G]="^\\s*("+i[R]+")"+"\\s+-\\s+"+"("+i[R]+")"+"\\s*$";var O=s++;i[O]="(<|>)?=?\\s*\\*";for(var B=0;Br)return null;var i=t?n[j]:n[w];if(!i.test(e))return null;try{return new K(e,t)}catch(s){return null}}e.valid=H;function H(e,r){var t=D(e,r);return t?t.version:null}e.clean=J;function J(e,r){var t=D(e.trim().replace(/^[=v]+/,""),r);return t?t.version:null}e.SemVer=K;function K(e,i){if(e instanceof K){if(e.loose===i)return e;else e=e.version}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r)throw new TypeError("version is longer than "+r+" characters");if(!(this instanceof K))return new K(e,i);this.loose=i;var s=e.trim().match(i?n[j]:n[w]);if(!s)throw new TypeError("Invalid Version: "+e);this.raw=e;this.major=+s[1];this.minor=+s[2];this.patch=+s[3];if(this.major>t||this.major<0)throw new TypeError("Invalid major version");if(this.minor>t||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>t||this.patch<0)throw new TypeError("Invalid patch version");if(!s[4])this.prerelease=[];else this.prerelease=s[4].split(".").map(function(e){return/^[0-9]+$/.test(e)?+e:e});this.build=s[5]?s[5].split("."):[];this.format()}K.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length)this.version+="-"+this.prerelease.join(".");return this.version};K.prototype.inspect=function(){return''};K.prototype.toString=function(){return this.version};K.prototype.compare=function(e){if(!(e instanceof K))e=new K(e,this.loose);return this.compareMain(e)||this.comparePre(e)};K.prototype.compareMain=function(e){if(!(e instanceof K))e=new K(e,this.loose);return Y(this.major,e.major)||Y(this.minor,e.minor)||Y(this.patch,e.patch)};K.prototype.comparePre=function(e){if(!(e instanceof K))e=new K(e,this.loose);if(this.prerelease.length&&!e.prerelease.length)return-1;else if(!this.prerelease.length&&e.prerelease.length)return 1;else if(!this.prerelease.length&&!e.prerelease.length)return 0;var r=0;do{var t=this.prerelease[r];var n=e.prerelease[r];if(t===undefined&&n===undefined)return 0;else if(n===undefined)return 1;else if(t===undefined)return-1;else if(t===n)continue;else return Y(t,n)}while(++r)};K.prototype.inc=function(e,r){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",r);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",r);break;case"prepatch":this.prerelease.length=0;this.inc("patch",r);this.inc("pre",r);break;case"prerelease":if(this.prerelease.length===0)this.inc("patch",r);this.inc("pre",r);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0)this.major++;this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0)this.minor++;this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0)this.patch++;this.prerelease=[];break;case"pre":if(this.prerelease.length===0)this.prerelease=[0];else{var t=this.prerelease.length;while(--t>=0){if(typeof this.prerelease[t]==="number"){this.prerelease[t]++;t=-2}}if(t===-1)this.prerelease.push(0)}if(r){if(this.prerelease[0]===r){if(isNaN(this.prerelease[1]))this.prerelease=[r,0]}else this.prerelease=[r,0]}break;default:throw new Error("invalid increment argument: "+e)}this.format();return this};e.inc=Q;function Q(e,r,t,n){if(typeof t==="string"){n=t;t=undefined}try{return new K(e,t).inc(r,n).version}catch(i){return null}}e.diff=U;function U(e,r){if(hr(e,r)){return null}else{var t=D(e);var n=D(r);if(t.prerelease.length||n.prerelease.length){for(var i in t){if(i==="major"||i==="minor"||i==="patch"){if(t[i]!==n[i]){return"pre"+i}}}return"prerelease"}for(var i in t){if(i==="major"||i==="minor"||i==="patch"){if(t[i]!==n[i]){return i}}}}}e.compareIdentifiers=Y;var W=/^[0-9]+$/;function Y(e,r){var t=W.test(e);var n=W.test(r);if(t&&n){e=+e;r=+r}return t&&!n?-1:n&&!t?1:er?1:0}e.rcompareIdentifiers=er;function er(e,r){return Y(r,e)}e.major=rr;function rr(e,r){return new K(e,r).major}e.minor=tr;function tr(e,r){return new K(e,r).minor}e.patch=nr;function nr(e,r){return new K(e,r).patch}e.compare=ir;function ir(e,r,t){return new K(e,t).compare(r)}e.compareLoose=sr;function sr(e,r){return ir(e,r,true)}e.rcompare=or;function or(e,r,t){return ir(r,e,t)}e.sort=ar;function ar(r,t){return r.sort(function(r,n){return e.compare(r,n,t)})}e.rsort=fr;function fr(r,t){return r.sort(function(r,n){return e.rcompare(r,n,t)})}e.gt=ur;function ur(e,r,t){return ir(e,r,t)>0}e.lt=lr;function lr(e,r,t){return ir(e,r,t)<0}e.eq=hr;function hr(e,r,t){return ir(e,r,t)===0}e.neq=pr;function pr(e,r,t){return ir(e,r,t)!==0}e.gte=cr;function cr(e,r,t){return ir(e,r,t)>=0}e.lte=vr;function vr(e,r,t){return ir(e,r,t)<=0}e.cmp=mr;function mr(e,r,t,n){var i;switch(r){case"===":if(typeof e==="object")e=e.version;if(typeof t==="object")t=t.version;i=e===t;break;case"!==":if(typeof e==="object")e=e.version;if(typeof t==="object")t=t.version;i=e!==t;break;case"":case"=":case"==":i=hr(e,t,n);break;case"!=":i=pr(e,t,n);break;case">":i=ur(e,t,n);break;case">=":i=cr(e,t,n);break;case"<":i=lr(e,t,n);break;case"<=":i=vr(e,t,n);break;default:throw new TypeError("Invalid operator: "+r)}return i}e.Comparator=gr;function gr(e,r){if(e instanceof gr){if(e.loose===r)return e;else e=e.value}if(!(this instanceof gr))return new gr(e,r);this.loose=r;this.parse(e);if(this.semver===wr)this.value="";else this.value=this.operator+this.semver.version}var wr={};gr.prototype.parse=function(e){var r=this.loose?n[X]:n[Z];var t=e.match(r);if(!t)throw new TypeError("Invalid comparator: "+e);this.operator=t[1];if(this.operator==="=")this.operator="";if(!t[2])this.semver=wr;else this.semver=new K(t[2],this.loose)};gr.prototype.inspect=function(){return''};gr.prototype.toString=function(){return this.value};gr.prototype.test=function(e){if(this.semver===wr)return true;if(typeof e==="string")e=new K(e,this.loose);return mr(e,this.operator,this.semver,this.loose)};e.Range=yr;function yr(e,r){if(e instanceof yr&&e.loose===r)return e;if(!(this instanceof yr))return new yr(e,r);this.loose=r;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}yr.prototype.inspect=function(){return''};yr.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};yr.prototype.toString=function(){return this.range};yr.prototype.parseRange=function(e){var r=this.loose;e=e.trim();var t=r?n[G]:n[F];e=e.replace(t,Tr);e=e.replace(n[q],L);e=e.replace(n[T],V);e=e.replace(n[N],_);e=e.split(/\s+/).join(" ");var i=r?n[X]:n[Z];var s=e.split(" ").map(function(e){return jr(e,r)}).join(" ").split(/\s+/);if(this.loose){s=s.filter(function(e){return!!e.match(i)})}s=s.map(function(e){return new gr(e,r)});return s};e.toComparators=dr;function dr(e,r){return new yr(e,r).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function jr(e,r){e=kr(e,r);e=Er(e,r);e=Sr(e,r);e=Ir(e,r);return e}function br(e){return!e||e.toLowerCase()==="x"||e==="*"}function Er(e,r){return e.trim().split(/\s+/).map(function(e){return $r(e,r)}).join(" ")}function $r(e,r){var t=r?n[C]:n[A];return e.replace(t,function(e,r,t,n,i){var s;if(br(r))s="";else if(br(t))s=">="+r+".0.0 <"+(+r+1)+".0.0";else if(br(n))s=">="+r+"."+t+".0 <"+r+"."+(+t+1)+".0";else if(i){if(i.charAt(0)!=="-")i="-"+i;s=">="+r+"."+t+"."+n+i+" <"+r+"."+(+t+1)+".0"}else s=">="+r+"."+t+"."+n+" <"+r+"."+(+t+1)+".0";return s})}function kr(e,r){return e.trim().split(/\s+/).map(function(e){return Rr(e,r)}).join(" ")}function Rr(e,r){var t=r?n[P]:n[z];return e.replace(t,function(e,r,t,n,i){var s;if(br(r))s="";else if(br(t))s=">="+r+".0.0 <"+(+r+1)+".0.0";else if(br(n)){if(r==="0")s=">="+r+"."+t+".0 <"+r+"."+(+t+1)+".0";else s=">="+r+"."+t+".0 <"+(+r+1)+".0.0"}else if(i){if(i.charAt(0)!=="-")i="-"+i;if(r==="0"){if(t==="0")s=">="+r+"."+t+"."+n+i+" <"+r+"."+t+"."+(+n+1);else s=">="+r+"."+t+"."+n+i+" <"+r+"."+(+t+1)+".0"}else s=">="+r+"."+t+"."+n+i+" <"+(+r+1)+".0.0"}else{if(r==="0"){if(t==="0")s=">="+r+"."+t+"."+n+" <"+r+"."+t+"."+(+n+1);else s=">="+r+"."+t+"."+n+" <"+r+"."+(+t+1)+".0"}else s=">="+r+"."+t+"."+n+" <"+(+r+1)+".0.0"}return s})}function Sr(e,r){return e.split(/\s+/).map(function(e){return xr(e,r)}).join(" ")}function xr(e,r){e=e.trim();var t=r?n[x]:n[S];return e.replace(t,function(e,r,t,n,i,s){var o=br(t);var a=o||br(n);var f=a||br(i);var u=f;if(r==="="&&u)r="";if(o){if(r===">"||r==="<"){e="<0.0.0"}else{e="*"}}else if(r&&u){if(a)n=0;if(f)i=0;if(r===">"){r=">=";if(a){t=+t+1;n=0;i=0}else if(f){n=+n+1;i=0}}else if(r==="<="){r="<";if(a)t=+t+1;else n=+n+1}e=r+t+"."+n+"."+i}else if(a){e=">="+t+".0.0 <"+(+t+1)+".0.0"}else if(f){e=">="+t+"."+n+".0 <"+t+"."+(+n+1)+".0"}return e})}function Ir(e,r){return e.trim().replace(n[O],"")}function Tr(e,r,t,n,i,s,o,a,f,u,l,h,p){if(br(t))r="";else if(br(n))r=">="+t+".0.0";else if(br(i))r=">="+t+"."+n+".0";else r=">="+r;if(br(f))a="";else if(br(u))a="<"+(+f+1)+".0.0";else if(br(l))a="<"+f+"."+(+u+1)+".0";else if(h)a="<="+f+"."+u+"."+l+"-"+h;else a="<="+a;return(r+" "+a).trim()}yr.prototype.test=function(e){if(!e)return false;if(typeof e==="string")e=new K(e,this.loose);for(var r=0;r0){var n=e[t].semver;if(n.major===r.major&&n.minor===r.minor&&n.patch===r.patch)return true}}return false}return true}e.satisfies=Ar;function Ar(e,r,t){try{r=new yr(r,t)}catch(n){return false}return r.test(e)}e.maxSatisfying=Cr;function Cr(e,r,t){return e.filter(function(e){return Ar(e,r,t)}).sort(function(e,r){return or(e,r,t)})[0]||null}e.validRange=Mr;function Mr(e,r){try{return new yr(e,r).range||"*"}catch(t){return null}}e.ltr=Nr;function Nr(e,r,t){return zr(e,r,"<",t)}e.gtr=_r;function _r(e,r,t){return zr(e,r,">",t)}e.outside=zr;function zr(e,r,t,n){e=new K(e,n);r=new yr(r,n);var i,s,o,a,f;switch(t){case">":i=ur;s=vr;o=lr;a=">";f=">=";break;case"<":i=lr;s=cr;o=ur;a="<";f="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(Ar(e,r,n)){return false}for(var u=0;u1.2.3', null], - ['~1.2.3', null], - ['<=1.2.3', null], - ['1.2.x', null] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var msg = 'clean(' + range + ') = ' + version; - t.equal(clean(range), version, msg); - }); - t.end(); -}); diff --git a/node_modules/semver/test/gtr.js b/node_modules/semver/test/gtr.js deleted file mode 100644 index bbb8789..0000000 --- a/node_modules/semver/test/gtr.js +++ /dev/null @@ -1,173 +0,0 @@ -var tap = require('tap'); -var test = tap.test; -var semver = require('../semver.js'); -var gtr = semver.gtr; - -test('\ngtr tests', function(t) { - // [range, version, loose] - // Version should be greater than range - [ - ['~1.2.2', '1.3.0'], - ['~0.6.1-1', '0.7.1-1'], - ['1.0.0 - 2.0.0', '2.0.1'], - ['1.0.0', '1.0.1-beta1'], - ['1.0.0', '2.0.0'], - ['<=2.0.0', '2.1.1'], - ['<=2.0.0', '3.2.9'], - ['<2.0.0', '2.0.0'], - ['0.1.20 || 1.2.4', '1.2.5'], - ['2.x.x', '3.0.0'], - ['1.2.x', '1.3.0'], - ['1.2.x || 2.x', '3.0.0'], - ['2.*.*', '5.0.1'], - ['1.2.*', '1.3.3'], - ['1.2.* || 2.*', '4.0.0'], - ['2', '3.0.0'], - ['2.3', '2.4.2'], - ['~2.4', '2.5.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.5.5'], - ['~>3.2.1', '3.3.0'], // >=3.2.1 <3.3.0 - ['~1', '2.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '2.2.4'], - ['~> 1', '3.2.3'], - ['~1.0', '1.1.2'], // >=1.0.0 <1.1.0 - ['~ 1.0', '1.1.0'], - ['<1.2', '1.2.0'], - ['< 1.2', '1.2.1'], - ['1', '2.0.0beta', true], - ['~v0.5.4-pre', '0.6.0'], - ['~v0.5.4-pre', '0.6.1-pre'], - ['=0.7.x', '0.8.0'], - ['=0.7.x', '0.8.0-asdf'], - ['<0.7.x', '0.7.0'], - ['~1.2.2', '1.3.0'], - ['1.0.0 - 2.0.0', '2.2.3'], - ['1.0.0', '1.0.1'], - ['<=2.0.0', '3.0.0'], - ['<=2.0.0', '2.9999.9999'], - ['<=2.0.0', '2.2.9'], - ['<2.0.0', '2.9999.9999'], - ['<2.0.0', '2.2.9'], - ['2.x.x', '3.1.3'], - ['1.2.x', '1.3.3'], - ['1.2.x || 2.x', '3.1.3'], - ['2.*.*', '3.1.3'], - ['1.2.*', '1.3.3'], - ['1.2.* || 2.*', '3.1.3'], - ['2', '3.1.2'], - ['2.3', '2.4.1'], - ['~2.4', '2.5.0'], // >=2.4.0 <2.5.0 - ['~>3.2.1', '3.3.2'], // >=3.2.1 <3.3.0 - ['~1', '2.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '2.2.3'], - ['~1.0', '1.1.0'], // >=1.0.0 <1.1.0 - ['<1', '1.0.0'], - ['1', '2.0.0beta', true], - ['<1', '1.0.0beta', true], - ['< 1', '1.0.0beta', true], - ['=0.7.x', '0.8.2'], - ['<0.7.x', '0.7.2'] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = 'gtr(' + version + ', ' + range + ', ' + loose + ')'; - t.ok(gtr(version, range, loose), msg); - }); - t.end(); -}); - -test('\nnegative gtr tests', function(t) { - // [range, version, loose] - // Version should NOT be greater than range - [ - ['~0.6.1-1', '0.6.1-1'], - ['1.0.0 - 2.0.0', '1.2.3'], - ['1.0.0 - 2.0.0', '0.9.9'], - ['1.0.0', '1.0.0'], - ['>=*', '0.2.4'], - ['', '1.0.0', true], - ['*', '1.2.3'], - ['*', 'v1.2.3-foo'], - ['>=1.0.0', '1.0.0'], - ['>=1.0.0', '1.0.1'], - ['>=1.0.0', '1.1.0'], - ['>1.0.0', '1.0.1'], - ['>1.0.0', '1.1.0'], - ['<=2.0.0', '2.0.0'], - ['<=2.0.0', '1.9999.9999'], - ['<=2.0.0', '0.2.9'], - ['<2.0.0', '1.9999.9999'], - ['<2.0.0', '0.2.9'], - ['>= 1.0.0', '1.0.0'], - ['>= 1.0.0', '1.0.1'], - ['>= 1.0.0', '1.1.0'], - ['> 1.0.0', '1.0.1'], - ['> 1.0.0', '1.1.0'], - ['<= 2.0.0', '2.0.0'], - ['<= 2.0.0', '1.9999.9999'], - ['<= 2.0.0', '0.2.9'], - ['< 2.0.0', '1.9999.9999'], - ['<\t2.0.0', '0.2.9'], - ['>=0.1.97', 'v0.1.97'], - ['>=0.1.97', '0.1.97'], - ['0.1.20 || 1.2.4', '1.2.4'], - ['0.1.20 || >1.2.4', '1.2.4'], - ['0.1.20 || 1.2.4', '1.2.3'], - ['0.1.20 || 1.2.4', '0.1.20'], - ['>=0.2.3 || <0.0.1', '0.0.0'], - ['>=0.2.3 || <0.0.1', '0.2.3'], - ['>=0.2.3 || <0.0.1', '0.2.4'], - ['||', '1.3.4'], - ['2.x.x', '2.1.3'], - ['1.2.x', '1.2.3'], - ['1.2.x || 2.x', '2.1.3'], - ['1.2.x || 2.x', '1.2.3'], - ['x', '1.2.3'], - ['2.*.*', '2.1.3'], - ['1.2.*', '1.2.3'], - ['1.2.* || 2.*', '2.1.3'], - ['1.2.* || 2.*', '1.2.3'], - ['1.2.* || 2.*', '1.2.3'], - ['*', '1.2.3'], - ['2', '2.1.2'], - ['2.3', '2.3.1'], - ['~2.4', '2.4.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.4.5'], - ['~>3.2.1', '3.2.2'], // >=3.2.1 <3.3.0 - ['~1', '1.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '1.2.3'], - ['~> 1', '1.2.3'], - ['~1.0', '1.0.2'], // >=1.0.0 <1.1.0 - ['~ 1.0', '1.0.2'], - ['>=1', '1.0.0'], - ['>= 1', '1.0.0'], - ['<1.2', '1.1.1'], - ['< 1.2', '1.1.1'], - ['1', '1.0.0beta', true], - ['~v0.5.4-pre', '0.5.5'], - ['~v0.5.4-pre', '0.5.4'], - ['=0.7.x', '0.7.2'], - ['>=0.7.x', '0.7.2'], - ['=0.7.x', '0.7.0-asdf'], - ['>=0.7.x', '0.7.0-asdf'], - ['<=0.7.x', '0.6.2'], - ['>0.2.3 >0.2.4 <=0.2.5', '0.2.5'], - ['>=0.2.3 <=0.2.4', '0.2.4'], - ['1.0.0 - 2.0.0', '2.0.0'], - ['^1', '0.0.0-0'], - ['^3.0.0', '2.0.0'], - ['^1.0.0 || ~2.0.1', '2.0.0'], - ['^0.1.0 || ~3.0.1 || 5.0.0', '3.2.0'], - ['^0.1.0 || ~3.0.1 || 5.0.0', '1.0.0beta', true], - ['^0.1.0 || ~3.0.1 || 5.0.0', '5.0.0-0', true], - ['^0.1.0 || ~3.0.1 || >4 <=5.0.0', '3.5.0'] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = '!gtr(' + version + ', ' + range + ', ' + loose + ')'; - t.notOk(gtr(version, range, loose), msg); - }); - t.end(); -}); diff --git a/node_modules/semver/test/index.js b/node_modules/semver/test/index.js deleted file mode 100644 index 926d560..0000000 --- a/node_modules/semver/test/index.js +++ /dev/null @@ -1,684 +0,0 @@ -'use strict'; - -var tap = require('tap'); -var test = tap.test; -var semver = require('../semver.js'); -var eq = semver.eq; -var gt = semver.gt; -var lt = semver.lt; -var neq = semver.neq; -var cmp = semver.cmp; -var gte = semver.gte; -var lte = semver.lte; -var satisfies = semver.satisfies; -var validRange = semver.validRange; -var inc = semver.inc; -var diff = semver.diff; -var replaceStars = semver.replaceStars; -var toComparators = semver.toComparators; -var SemVer = semver.SemVer; -var Range = semver.Range; - -test('\ncomparison tests', function(t) { - // [version1, version2] - // version1 should be greater than version2 - [['0.0.0', '0.0.0-foo'], - ['0.0.1', '0.0.0'], - ['1.0.0', '0.9.9'], - ['0.10.0', '0.9.0'], - ['0.99.0', '0.10.0'], - ['2.0.0', '1.2.3'], - ['v0.0.0', '0.0.0-foo', true], - ['v0.0.1', '0.0.0', true], - ['v1.0.0', '0.9.9', true], - ['v0.10.0', '0.9.0', true], - ['v0.99.0', '0.10.0', true], - ['v2.0.0', '1.2.3', true], - ['0.0.0', 'v0.0.0-foo', true], - ['0.0.1', 'v0.0.0', true], - ['1.0.0', 'v0.9.9', true], - ['0.10.0', 'v0.9.0', true], - ['0.99.0', 'v0.10.0', true], - ['2.0.0', 'v1.2.3', true], - ['1.2.3', '1.2.3-asdf'], - ['1.2.3', '1.2.3-4'], - ['1.2.3', '1.2.3-4-foo'], - ['1.2.3-5-foo', '1.2.3-5'], - ['1.2.3-5', '1.2.3-4'], - ['1.2.3-5-foo', '1.2.3-5-Foo'], - ['3.0.0', '2.7.2+asdf'], - ['1.2.3-a.10', '1.2.3-a.5'], - ['1.2.3-a.b', '1.2.3-a.5'], - ['1.2.3-a.b', '1.2.3-a'], - ['1.2.3-a.b.c.10.d.5', '1.2.3-a.b.c.5.d.100'], - ['1.2.3-r2', '1.2.3-r100'], - ['1.2.3-r100', '1.2.3-R2'] - ].forEach(function(v) { - var v0 = v[0]; - var v1 = v[1]; - var loose = v[2]; - t.ok(gt(v0, v1, loose), "gt('" + v0 + "', '" + v1 + "')"); - t.ok(lt(v1, v0, loose), "lt('" + v1 + "', '" + v0 + "')"); - t.ok(!gt(v1, v0, loose), "!gt('" + v1 + "', '" + v0 + "')"); - t.ok(!lt(v0, v1, loose), "!lt('" + v0 + "', '" + v1 + "')"); - t.ok(eq(v0, v0, loose), "eq('" + v0 + "', '" + v0 + "')"); - t.ok(eq(v1, v1, loose), "eq('" + v1 + "', '" + v1 + "')"); - t.ok(neq(v0, v1, loose), "neq('" + v0 + "', '" + v1 + "')"); - t.ok(cmp(v1, '==', v1, loose), "cmp('" + v1 + "' == '" + v1 + "')"); - t.ok(cmp(v0, '>=', v1, loose), "cmp('" + v0 + "' >= '" + v1 + "')"); - t.ok(cmp(v1, '<=', v0, loose), "cmp('" + v1 + "' <= '" + v0 + "')"); - t.ok(cmp(v0, '!=', v1, loose), "cmp('" + v0 + "' != '" + v1 + "')"); - }); - t.end(); -}); - -test('\nequality tests', function(t) { - // [version1, version2] - // version1 should be equivalent to version2 - [['1.2.3', 'v1.2.3', true], - ['1.2.3', '=1.2.3', true], - ['1.2.3', 'v 1.2.3', true], - ['1.2.3', '= 1.2.3', true], - ['1.2.3', ' v1.2.3', true], - ['1.2.3', ' =1.2.3', true], - ['1.2.3', ' v 1.2.3', true], - ['1.2.3', ' = 1.2.3', true], - ['1.2.3-0', 'v1.2.3-0', true], - ['1.2.3-0', '=1.2.3-0', true], - ['1.2.3-0', 'v 1.2.3-0', true], - ['1.2.3-0', '= 1.2.3-0', true], - ['1.2.3-0', ' v1.2.3-0', true], - ['1.2.3-0', ' =1.2.3-0', true], - ['1.2.3-0', ' v 1.2.3-0', true], - ['1.2.3-0', ' = 1.2.3-0', true], - ['1.2.3-1', 'v1.2.3-1', true], - ['1.2.3-1', '=1.2.3-1', true], - ['1.2.3-1', 'v 1.2.3-1', true], - ['1.2.3-1', '= 1.2.3-1', true], - ['1.2.3-1', ' v1.2.3-1', true], - ['1.2.3-1', ' =1.2.3-1', true], - ['1.2.3-1', ' v 1.2.3-1', true], - ['1.2.3-1', ' = 1.2.3-1', true], - ['1.2.3-beta', 'v1.2.3-beta', true], - ['1.2.3-beta', '=1.2.3-beta', true], - ['1.2.3-beta', 'v 1.2.3-beta', true], - ['1.2.3-beta', '= 1.2.3-beta', true], - ['1.2.3-beta', ' v1.2.3-beta', true], - ['1.2.3-beta', ' =1.2.3-beta', true], - ['1.2.3-beta', ' v 1.2.3-beta', true], - ['1.2.3-beta', ' = 1.2.3-beta', true], - ['1.2.3-beta+build', ' = 1.2.3-beta+otherbuild', true], - ['1.2.3+build', ' = 1.2.3+otherbuild', true], - ['1.2.3-beta+build', '1.2.3-beta+otherbuild'], - ['1.2.3+build', '1.2.3+otherbuild'], - [' v1.2.3+build', '1.2.3+otherbuild'] - ].forEach(function(v) { - var v0 = v[0]; - var v1 = v[1]; - var loose = v[2]; - t.ok(eq(v0, v1, loose), "eq('" + v0 + "', '" + v1 + "')"); - t.ok(!neq(v0, v1, loose), "!neq('" + v0 + "', '" + v1 + "')"); - t.ok(cmp(v0, '==', v1, loose), 'cmp(' + v0 + '==' + v1 + ')'); - t.ok(!cmp(v0, '!=', v1, loose), '!cmp(' + v0 + '!=' + v1 + ')'); - t.ok(!cmp(v0, '===', v1, loose), '!cmp(' + v0 + '===' + v1 + ')'); - t.ok(cmp(v0, '!==', v1, loose), 'cmp(' + v0 + '!==' + v1 + ')'); - t.ok(!gt(v0, v1, loose), "!gt('" + v0 + "', '" + v1 + "')"); - t.ok(gte(v0, v1, loose), "gte('" + v0 + "', '" + v1 + "')"); - t.ok(!lt(v0, v1, loose), "!lt('" + v0 + "', '" + v1 + "')"); - t.ok(lte(v0, v1, loose), "lte('" + v0 + "', '" + v1 + "')"); - }); - t.end(); -}); - - -test('\nrange tests', function(t) { - // [range, version] - // version should be included by range - [['1.0.0 - 2.0.0', '1.2.3'], - ['^1.2.3+build', '1.2.3'], - ['^1.2.3+build', '1.3.0'], - ['1.2.3-pre+asdf - 2.4.3-pre+asdf', '1.2.3'], - ['1.2.3pre+asdf - 2.4.3-pre+asdf', '1.2.3', true], - ['1.2.3-pre+asdf - 2.4.3pre+asdf', '1.2.3', true], - ['1.2.3pre+asdf - 2.4.3pre+asdf', '1.2.3', true], - ['1.2.3-pre+asdf - 2.4.3-pre+asdf', '1.2.3-pre.2'], - ['1.2.3-pre+asdf - 2.4.3-pre+asdf', '2.4.3-alpha'], - ['1.2.3+asdf - 2.4.3+asdf', '1.2.3'], - ['1.0.0', '1.0.0'], - ['>=*', '0.2.4'], - ['', '1.0.0'], - ['*', '1.2.3'], - ['*', 'v1.2.3-foo', true], - ['>=1.0.0', '1.0.0'], - ['>=1.0.0', '1.0.1'], - ['>=1.0.0', '1.1.0'], - ['>1.0.0', '1.0.1'], - ['>1.0.0', '1.1.0'], - ['<=2.0.0', '2.0.0'], - ['<=2.0.0', '1.9999.9999'], - ['<=2.0.0', '0.2.9'], - ['<2.0.0', '1.9999.9999'], - ['<2.0.0', '0.2.9'], - ['>= 1.0.0', '1.0.0'], - ['>= 1.0.0', '1.0.1'], - ['>= 1.0.0', '1.1.0'], - ['> 1.0.0', '1.0.1'], - ['> 1.0.0', '1.1.0'], - ['<= 2.0.0', '2.0.0'], - ['<= 2.0.0', '1.9999.9999'], - ['<= 2.0.0', '0.2.9'], - ['< 2.0.0', '1.9999.9999'], - ['<\t2.0.0', '0.2.9'], - ['>=0.1.97', 'v0.1.97', true], - ['>=0.1.97', '0.1.97'], - ['0.1.20 || 1.2.4', '1.2.4'], - ['>=0.2.3 || <0.0.1', '0.0.0'], - ['>=0.2.3 || <0.0.1', '0.2.3'], - ['>=0.2.3 || <0.0.1', '0.2.4'], - ['||', '1.3.4'], - ['2.x.x', '2.1.3'], - ['1.2.x', '1.2.3'], - ['1.2.x || 2.x', '2.1.3'], - ['1.2.x || 2.x', '1.2.3'], - ['x', '1.2.3'], - ['2.*.*', '2.1.3'], - ['1.2.*', '1.2.3'], - ['1.2.* || 2.*', '2.1.3'], - ['1.2.* || 2.*', '1.2.3'], - ['*', '1.2.3'], - ['2', '2.1.2'], - ['2.3', '2.3.1'], - ['~2.4', '2.4.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.4.5'], - ['~>3.2.1', '3.2.2'], // >=3.2.1 <3.3.0, - ['~1', '1.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '1.2.3'], - ['~> 1', '1.2.3'], - ['~1.0', '1.0.2'], // >=1.0.0 <1.1.0, - ['~ 1.0', '1.0.2'], - ['~ 1.0.3', '1.0.12'], - ['>=1', '1.0.0'], - ['>= 1', '1.0.0'], - ['<1.2', '1.1.1'], - ['< 1.2', '1.1.1'], - ['~v0.5.4-pre', '0.5.5'], - ['~v0.5.4-pre', '0.5.4'], - ['=0.7.x', '0.7.2'], - ['<=0.7.x', '0.7.2'], - ['>=0.7.x', '0.7.2'], - ['<=0.7.x', '0.6.2'], - ['~1.2.1 >=1.2.3', '1.2.3'], - ['~1.2.1 =1.2.3', '1.2.3'], - ['~1.2.1 1.2.3', '1.2.3'], - ['~1.2.1 >=1.2.3 1.2.3', '1.2.3'], - ['~1.2.1 1.2.3 >=1.2.3', '1.2.3'], - ['~1.2.1 1.2.3', '1.2.3'], - ['>=1.2.1 1.2.3', '1.2.3'], - ['1.2.3 >=1.2.1', '1.2.3'], - ['>=1.2.3 >=1.2.1', '1.2.3'], - ['>=1.2.1 >=1.2.3', '1.2.3'], - ['>=1.2', '1.2.8'], - ['^1.2.3', '1.8.1'], - ['^0.1.2', '0.1.2'], - ['^0.1', '0.1.2'], - ['^1.2', '1.4.2'], - ['^1.2 ^1', '1.4.2'], - ['^1.2.3-alpha', '1.2.3-pre'], - ['^1.2.0-alpha', '1.2.0-pre'], - ['^0.0.1-alpha', '0.0.1-beta'] - ].forEach(function(v) { - var range = v[0]; - var ver = v[1]; - var loose = v[2]; - t.ok(satisfies(ver, range, loose), range + ' satisfied by ' + ver); - }); - t.end(); -}); - -test('\nnegative range tests', function(t) { - // [range, version] - // version should not be included by range - [['1.0.0 - 2.0.0', '2.2.3'], - ['1.2.3+asdf - 2.4.3+asdf', '1.2.3-pre.2'], - ['1.2.3+asdf - 2.4.3+asdf', '2.4.3-alpha'], - ['^1.2.3+build', '2.0.0'], - ['^1.2.3+build', '1.2.0'], - ['^1.2.3', '1.2.3-pre'], - ['^1.2', '1.2.0-pre'], - ['>1.2', '1.3.0-beta'], - ['<=1.2.3', '1.2.3-beta'], - ['^1.2.3', '1.2.3-beta'], - ['=0.7.x', '0.7.0-asdf'], - ['>=0.7.x', '0.7.0-asdf'], - ['1', '1.0.0beta', true], - ['<1', '1.0.0beta', true], - ['< 1', '1.0.0beta', true], - ['1.0.0', '1.0.1'], - ['>=1.0.0', '0.0.0'], - ['>=1.0.0', '0.0.1'], - ['>=1.0.0', '0.1.0'], - ['>1.0.0', '0.0.1'], - ['>1.0.0', '0.1.0'], - ['<=2.0.0', '3.0.0'], - ['<=2.0.0', '2.9999.9999'], - ['<=2.0.0', '2.2.9'], - ['<2.0.0', '2.9999.9999'], - ['<2.0.0', '2.2.9'], - ['>=0.1.97', 'v0.1.93', true], - ['>=0.1.97', '0.1.93'], - ['0.1.20 || 1.2.4', '1.2.3'], - ['>=0.2.3 || <0.0.1', '0.0.3'], - ['>=0.2.3 || <0.0.1', '0.2.2'], - ['2.x.x', '1.1.3'], - ['2.x.x', '3.1.3'], - ['1.2.x', '1.3.3'], - ['1.2.x || 2.x', '3.1.3'], - ['1.2.x || 2.x', '1.1.3'], - ['2.*.*', '1.1.3'], - ['2.*.*', '3.1.3'], - ['1.2.*', '1.3.3'], - ['1.2.* || 2.*', '3.1.3'], - ['1.2.* || 2.*', '1.1.3'], - ['2', '1.1.2'], - ['2.3', '2.4.1'], - ['~2.4', '2.5.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.3.9'], - ['~>3.2.1', '3.3.2'], // >=3.2.1 <3.3.0 - ['~>3.2.1', '3.2.0'], // >=3.2.1 <3.3.0 - ['~1', '0.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '2.2.3'], - ['~1.0', '1.1.0'], // >=1.0.0 <1.1.0 - ['<1', '1.0.0'], - ['>=1.2', '1.1.1'], - ['1', '2.0.0beta', true], - ['~v0.5.4-beta', '0.5.4-alpha'], - ['=0.7.x', '0.8.2'], - ['>=0.7.x', '0.6.2'], - ['<0.7.x', '0.7.2'], - ['<1.2.3', '1.2.3-beta'], - ['=1.2.3', '1.2.3-beta'], - ['>1.2', '1.2.8'], - ['^1.2.3', '2.0.0-alpha'], - ['^1.2.3', '1.2.2'], - ['^1.2', '1.1.9'], - // invalid ranges never satisfied! - ['blerg', '1.2.3'], - ['git+https://user:password0123@github.com/foo', '123.0.0', true], - ['^1.2.3', '2.0.0-pre'] - ].forEach(function(v) { - var range = v[0]; - var ver = v[1]; - var loose = v[2]; - var found = satisfies(ver, range, loose); - t.ok(!found, ver + ' not satisfied by ' + range); - }); - t.end(); -}); - -test('\nincrement versions test', function(t) { -// [version, inc, result, identifier] -// inc(version, inc) -> result - [['1.2.3', 'major', '2.0.0'], - ['1.2.3', 'minor', '1.3.0'], - ['1.2.3', 'patch', '1.2.4'], - ['1.2.3tag', 'major', '2.0.0', true], - ['1.2.3-tag', 'major', '2.0.0'], - ['1.2.3', 'fake', null], - ['1.2.0-0', 'patch', '1.2.0'], - ['fake', 'major', null], - ['1.2.3-4', 'major', '2.0.0'], - ['1.2.3-4', 'minor', '1.3.0'], - ['1.2.3-4', 'patch', '1.2.3'], - ['1.2.3-alpha.0.beta', 'major', '2.0.0'], - ['1.2.3-alpha.0.beta', 'minor', '1.3.0'], - ['1.2.3-alpha.0.beta', 'patch', '1.2.3'], - ['1.2.4', 'prerelease', '1.2.5-0'], - ['1.2.3-0', 'prerelease', '1.2.3-1'], - ['1.2.3-alpha.0', 'prerelease', '1.2.3-alpha.1'], - ['1.2.3-alpha.1', 'prerelease', '1.2.3-alpha.2'], - ['1.2.3-alpha.2', 'prerelease', '1.2.3-alpha.3'], - ['1.2.3-alpha.0.beta', 'prerelease', '1.2.3-alpha.1.beta'], - ['1.2.3-alpha.1.beta', 'prerelease', '1.2.3-alpha.2.beta'], - ['1.2.3-alpha.2.beta', 'prerelease', '1.2.3-alpha.3.beta'], - ['1.2.3-alpha.10.0.beta', 'prerelease', '1.2.3-alpha.10.1.beta'], - ['1.2.3-alpha.10.1.beta', 'prerelease', '1.2.3-alpha.10.2.beta'], - ['1.2.3-alpha.10.2.beta', 'prerelease', '1.2.3-alpha.10.3.beta'], - ['1.2.3-alpha.10.beta.0', 'prerelease', '1.2.3-alpha.10.beta.1'], - ['1.2.3-alpha.10.beta.1', 'prerelease', '1.2.3-alpha.10.beta.2'], - ['1.2.3-alpha.10.beta.2', 'prerelease', '1.2.3-alpha.10.beta.3'], - ['1.2.3-alpha.9.beta', 'prerelease', '1.2.3-alpha.10.beta'], - ['1.2.3-alpha.10.beta', 'prerelease', '1.2.3-alpha.11.beta'], - ['1.2.3-alpha.11.beta', 'prerelease', '1.2.3-alpha.12.beta'], - ['1.2.0', 'prepatch', '1.2.1-0'], - ['1.2.0-1', 'prepatch', '1.2.1-0'], - ['1.2.0', 'preminor', '1.3.0-0'], - ['1.2.3-1', 'preminor', '1.3.0-0'], - ['1.2.0', 'premajor', '2.0.0-0'], - ['1.2.3-1', 'premajor', '2.0.0-0'], - ['1.2.0-1', 'minor', '1.2.0'], - ['1.0.0-1', 'major', '1.0.0'], - - ['1.2.3', 'major', '2.0.0', false, 'dev'], - ['1.2.3', 'minor', '1.3.0', false, 'dev'], - ['1.2.3', 'patch', '1.2.4', false, 'dev'], - ['1.2.3tag', 'major', '2.0.0', true, 'dev'], - ['1.2.3-tag', 'major', '2.0.0', false, 'dev'], - ['1.2.3', 'fake', null, false, 'dev'], - ['1.2.0-0', 'patch', '1.2.0', false, 'dev'], - ['fake', 'major', null, false, 'dev'], - ['1.2.3-4', 'major', '2.0.0', false, 'dev'], - ['1.2.3-4', 'minor', '1.3.0', false, 'dev'], - ['1.2.3-4', 'patch', '1.2.3', false, 'dev'], - ['1.2.3-alpha.0.beta', 'major', '2.0.0', false, 'dev'], - ['1.2.3-alpha.0.beta', 'minor', '1.3.0', false, 'dev'], - ['1.2.3-alpha.0.beta', 'patch', '1.2.3', false, 'dev'], - ['1.2.4', 'prerelease', '1.2.5-dev.0', false, 'dev'], - ['1.2.3-0', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.0', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.0', 'prerelease', '1.2.3-alpha.1', false, 'alpha'], - ['1.2.3-alpha.0.beta', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.0.beta', 'prerelease', '1.2.3-alpha.1.beta', false, 'alpha'], - ['1.2.3-alpha.10.0.beta', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.10.0.beta', 'prerelease', '1.2.3-alpha.10.1.beta', false, 'alpha'], - ['1.2.3-alpha.10.1.beta', 'prerelease', '1.2.3-alpha.10.2.beta', false, 'alpha'], - ['1.2.3-alpha.10.2.beta', 'prerelease', '1.2.3-alpha.10.3.beta', false, 'alpha'], - ['1.2.3-alpha.10.beta.0', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.10.beta.0', 'prerelease', '1.2.3-alpha.10.beta.1', false, 'alpha'], - ['1.2.3-alpha.10.beta.1', 'prerelease', '1.2.3-alpha.10.beta.2', false, 'alpha'], - ['1.2.3-alpha.10.beta.2', 'prerelease', '1.2.3-alpha.10.beta.3', false, 'alpha'], - ['1.2.3-alpha.9.beta', 'prerelease', '1.2.3-dev.0', false, 'dev'], - ['1.2.3-alpha.9.beta', 'prerelease', '1.2.3-alpha.10.beta', false, 'alpha'], - ['1.2.3-alpha.10.beta', 'prerelease', '1.2.3-alpha.11.beta', false, 'alpha'], - ['1.2.3-alpha.11.beta', 'prerelease', '1.2.3-alpha.12.beta', false, 'alpha'], - ['1.2.0', 'prepatch', '1.2.1-dev.0', 'dev'], - ['1.2.0-1', 'prepatch', '1.2.1-dev.0', 'dev'], - ['1.2.0', 'preminor', '1.3.0-dev.0', 'dev'], - ['1.2.3-1', 'preminor', '1.3.0-dev.0', 'dev'], - ['1.2.0', 'premajor', '2.0.0-dev.0', 'dev'], - ['1.2.3-1', 'premajor', '2.0.0-dev.0', 'dev'], - ['1.2.0-1', 'minor', '1.2.0', 'dev'], - ['1.0.0-1', 'major', '1.0.0', 'dev'], - ['1.2.3-dev.bar', 'prerelease', '1.2.3-dev.0', false, 'dev'] - - ].forEach(function(v) { - var pre = v[0]; - var what = v[1]; - var wanted = v[2]; - var loose = v[3]; - var id = v[4]; - var found = inc(pre, what, loose, id); - var cmd = 'inc(' + pre + ', ' + what + ', ' + id + ')'; - t.equal(found, wanted, cmd + ' === ' + wanted); - }); - - t.end(); -}); - -test('\ndiff versions test', function(t) { -// [version1, version2, result] -// diff(version1, version2) -> result - [['1.2.3', '0.2.3', 'major'], - ['1.4.5', '0.2.3', 'major'], - ['1.2.3', '2.0.0-pre', 'premajor'], - ['1.2.3', '1.3.3', 'minor'], - ['1.0.1', '1.1.0-pre', 'preminor'], - ['1.2.3', '1.2.4', 'patch'], - ['1.2.3', '1.2.4-pre', 'prepatch'], - ['0.0.1', '0.0.1-pre', 'prerelease'], - ['0.0.1', '0.0.1-pre-2', 'prerelease'], - ['1.1.0', '1.1.0-pre', 'prerelease'], - ['1.1.0-pre-1', '1.1.0-pre-2', 'prerelease'], - ['1.0.0', '1.0.0', null] - - ].forEach(function(v) { - var version1 = v[0]; - var version2 = v[1]; - var wanted = v[2]; - var found = diff(version1, version2); - var cmd = 'diff(' + version1 + ', ' + version2 + ')'; - t.equal(found, wanted, cmd + ' === ' + wanted); - }); - - t.end(); -}); - -test('\nvalid range test', function(t) { - // [range, result] - // validRange(range) -> result - // translate ranges into their canonical form - [['1.0.0 - 2.0.0', '>=1.0.0 <=2.0.0'], - ['1.0.0', '1.0.0'], - ['>=*', '*'], - ['', '*'], - ['*', '*'], - ['*', '*'], - ['>=1.0.0', '>=1.0.0'], - ['>1.0.0', '>1.0.0'], - ['<=2.0.0', '<=2.0.0'], - ['1', '>=1.0.0 <2.0.0'], - ['<=2.0.0', '<=2.0.0'], - ['<=2.0.0', '<=2.0.0'], - ['<2.0.0', '<2.0.0'], - ['<2.0.0', '<2.0.0'], - ['>= 1.0.0', '>=1.0.0'], - ['>= 1.0.0', '>=1.0.0'], - ['>= 1.0.0', '>=1.0.0'], - ['> 1.0.0', '>1.0.0'], - ['> 1.0.0', '>1.0.0'], - ['<= 2.0.0', '<=2.0.0'], - ['<= 2.0.0', '<=2.0.0'], - ['<= 2.0.0', '<=2.0.0'], - ['< 2.0.0', '<2.0.0'], - ['< 2.0.0', '<2.0.0'], - ['>=0.1.97', '>=0.1.97'], - ['>=0.1.97', '>=0.1.97'], - ['0.1.20 || 1.2.4', '0.1.20||1.2.4'], - ['>=0.2.3 || <0.0.1', '>=0.2.3||<0.0.1'], - ['>=0.2.3 || <0.0.1', '>=0.2.3||<0.0.1'], - ['>=0.2.3 || <0.0.1', '>=0.2.3||<0.0.1'], - ['||', '||'], - ['2.x.x', '>=2.0.0 <3.0.0'], - ['1.2.x', '>=1.2.0 <1.3.0'], - ['1.2.x || 2.x', '>=1.2.0 <1.3.0||>=2.0.0 <3.0.0'], - ['1.2.x || 2.x', '>=1.2.0 <1.3.0||>=2.0.0 <3.0.0'], - ['x', '*'], - ['2.*.*', '>=2.0.0 <3.0.0'], - ['1.2.*', '>=1.2.0 <1.3.0'], - ['1.2.* || 2.*', '>=1.2.0 <1.3.0||>=2.0.0 <3.0.0'], - ['*', '*'], - ['2', '>=2.0.0 <3.0.0'], - ['2.3', '>=2.3.0 <2.4.0'], - ['~2.4', '>=2.4.0 <2.5.0'], - ['~2.4', '>=2.4.0 <2.5.0'], - ['~>3.2.1', '>=3.2.1 <3.3.0'], - ['~1', '>=1.0.0 <2.0.0'], - ['~>1', '>=1.0.0 <2.0.0'], - ['~> 1', '>=1.0.0 <2.0.0'], - ['~1.0', '>=1.0.0 <1.1.0'], - ['~ 1.0', '>=1.0.0 <1.1.0'], - ['^0', '>=0.0.0 <1.0.0'], - ['^ 1', '>=1.0.0 <2.0.0'], - ['^0.1', '>=0.1.0 <0.2.0'], - ['^1.0', '>=1.0.0 <2.0.0'], - ['^1.2', '>=1.2.0 <2.0.0'], - ['^0.0.1', '>=0.0.1 <0.0.2'], - ['^0.0.1-beta', '>=0.0.1-beta <0.0.2'], - ['^0.1.2', '>=0.1.2 <0.2.0'], - ['^1.2.3', '>=1.2.3 <2.0.0'], - ['^1.2.3-beta.4', '>=1.2.3-beta.4 <2.0.0'], - ['<1', '<1.0.0'], - ['< 1', '<1.0.0'], - ['>=1', '>=1.0.0'], - ['>= 1', '>=1.0.0'], - ['<1.2', '<1.2.0'], - ['< 1.2', '<1.2.0'], - ['1', '>=1.0.0 <2.0.0'], - ['>01.02.03', '>1.2.3', true], - ['>01.02.03', null], - ['~1.2.3beta', '>=1.2.3-beta <1.3.0', true], - ['~1.2.3beta', null], - ['^ 1.2 ^ 1', '>=1.2.0 <2.0.0 >=1.0.0 <2.0.0'] - ].forEach(function(v) { - var pre = v[0]; - var wanted = v[1]; - var loose = v[2]; - var found = validRange(pre, loose); - - t.equal(found, wanted, 'validRange(' + pre + ') === ' + wanted); - }); - - t.end(); -}); - -test('\ncomparators test', function(t) { - // [range, comparators] - // turn range into a set of individual comparators - [['1.0.0 - 2.0.0', [['>=1.0.0', '<=2.0.0']]], - ['1.0.0', [['1.0.0']]], - ['>=*', [['']]], - ['', [['']]], - ['*', [['']]], - ['*', [['']]], - ['>=1.0.0', [['>=1.0.0']]], - ['>=1.0.0', [['>=1.0.0']]], - ['>=1.0.0', [['>=1.0.0']]], - ['>1.0.0', [['>1.0.0']]], - ['>1.0.0', [['>1.0.0']]], - ['<=2.0.0', [['<=2.0.0']]], - ['1', [['>=1.0.0', '<2.0.0']]], - ['<=2.0.0', [['<=2.0.0']]], - ['<=2.0.0', [['<=2.0.0']]], - ['<2.0.0', [['<2.0.0']]], - ['<2.0.0', [['<2.0.0']]], - ['>= 1.0.0', [['>=1.0.0']]], - ['>= 1.0.0', [['>=1.0.0']]], - ['>= 1.0.0', [['>=1.0.0']]], - ['> 1.0.0', [['>1.0.0']]], - ['> 1.0.0', [['>1.0.0']]], - ['<= 2.0.0', [['<=2.0.0']]], - ['<= 2.0.0', [['<=2.0.0']]], - ['<= 2.0.0', [['<=2.0.0']]], - ['< 2.0.0', [['<2.0.0']]], - ['<\t2.0.0', [['<2.0.0']]], - ['>=0.1.97', [['>=0.1.97']]], - ['>=0.1.97', [['>=0.1.97']]], - ['0.1.20 || 1.2.4', [['0.1.20'], ['1.2.4']]], - ['>=0.2.3 || <0.0.1', [['>=0.2.3'], ['<0.0.1']]], - ['>=0.2.3 || <0.0.1', [['>=0.2.3'], ['<0.0.1']]], - ['>=0.2.3 || <0.0.1', [['>=0.2.3'], ['<0.0.1']]], - ['||', [[''], ['']]], - ['2.x.x', [['>=2.0.0', '<3.0.0']]], - ['1.2.x', [['>=1.2.0', '<1.3.0']]], - ['1.2.x || 2.x', [['>=1.2.0', '<1.3.0'], ['>=2.0.0', '<3.0.0']]], - ['1.2.x || 2.x', [['>=1.2.0', '<1.3.0'], ['>=2.0.0', '<3.0.0']]], - ['x', [['']]], - ['2.*.*', [['>=2.0.0', '<3.0.0']]], - ['1.2.*', [['>=1.2.0', '<1.3.0']]], - ['1.2.* || 2.*', [['>=1.2.0', '<1.3.0'], ['>=2.0.0', '<3.0.0']]], - ['1.2.* || 2.*', [['>=1.2.0', '<1.3.0'], ['>=2.0.0', '<3.0.0']]], - ['*', [['']]], - ['2', [['>=2.0.0', '<3.0.0']]], - ['2.3', [['>=2.3.0', '<2.4.0']]], - ['~2.4', [['>=2.4.0', '<2.5.0']]], - ['~2.4', [['>=2.4.0', '<2.5.0']]], - ['~>3.2.1', [['>=3.2.1', '<3.3.0']]], - ['~1', [['>=1.0.0', '<2.0.0']]], - ['~>1', [['>=1.0.0', '<2.0.0']]], - ['~> 1', [['>=1.0.0', '<2.0.0']]], - ['~1.0', [['>=1.0.0', '<1.1.0']]], - ['~ 1.0', [['>=1.0.0', '<1.1.0']]], - ['~ 1.0.3', [['>=1.0.3', '<1.1.0']]], - ['~> 1.0.3', [['>=1.0.3', '<1.1.0']]], - ['<1', [['<1.0.0']]], - ['< 1', [['<1.0.0']]], - ['>=1', [['>=1.0.0']]], - ['>= 1', [['>=1.0.0']]], - ['<1.2', [['<1.2.0']]], - ['< 1.2', [['<1.2.0']]], - ['1', [['>=1.0.0', '<2.0.0']]], - ['1 2', [['>=1.0.0', '<2.0.0', '>=2.0.0', '<3.0.0']]], - ['1.2 - 3.4.5', [['>=1.2.0', '<=3.4.5']]], - ['1.2.3 - 3.4', [['>=1.2.3', '<3.5.0']]], - ['1.2.3 - 3', [['>=1.2.3', '<4.0.0']]], - ['>*', [['<0.0.0']]], - ['<*', [['<0.0.0']]] - ].forEach(function(v) { - var pre = v[0]; - var wanted = v[1]; - var found = toComparators(v[0]); - var jw = JSON.stringify(wanted); - t.equivalent(found, wanted, 'toComparators(' + pre + ') === ' + jw); - }); - - t.end(); -}); - -test('\ninvalid version numbers', function(t) { - ['1.2.3.4', - 'NOT VALID', - 1.2, - null, - 'Infinity.NaN.Infinity' - ].forEach(function(v) { - t.throws(function() { - new SemVer(v); - }, {name:'TypeError', message:'Invalid Version: ' + v}); - }); - - t.end(); -}); - -test('\nstrict vs loose version numbers', function(t) { - [['=1.2.3', '1.2.3'], - ['01.02.03', '1.2.3'], - ['1.2.3-beta.01', '1.2.3-beta.1'], - [' =1.2.3', '1.2.3'], - ['1.2.3foo', '1.2.3-foo'] - ].forEach(function(v) { - var loose = v[0]; - var strict = v[1]; - t.throws(function() { - new SemVer(loose); - }); - var lv = new SemVer(loose, true); - t.equal(lv.version, strict); - t.ok(eq(loose, strict, true)); - t.throws(function() { - eq(loose, strict); - }); - t.throws(function() { - new SemVer(strict).compare(loose); - }); - }); - t.end(); -}); - -test('\nstrict vs loose ranges', function(t) { - [['>=01.02.03', '>=1.2.3'], - ['~1.02.03beta', '>=1.2.3-beta <1.3.0'] - ].forEach(function(v) { - var loose = v[0]; - var comps = v[1]; - t.throws(function() { - new Range(loose); - }); - t.equal(new Range(loose, true).range, comps); - }); - t.end(); -}); - -test('\nmax satisfying', function(t) { - [[['1.2.3', '1.2.4'], '1.2', '1.2.4'], - [['1.2.4', '1.2.3'], '1.2', '1.2.4'], - [['1.2.3', '1.2.4', '1.2.5', '1.2.6'], '~1.2.3', '1.2.6'], - [['1.1.0', '1.2.0', '1.2.1', '1.3.0', '2.0.0b1', '2.0.0b2', '2.0.0b3', '2.0.0', '2.1.0'], '~2.0.0', '2.0.0', true] - ].forEach(function(v) { - var versions = v[0]; - var range = v[1]; - var expect = v[2]; - var loose = v[3]; - var actual = semver.maxSatisfying(versions, range, loose); - t.equal(actual, expect); - }); - t.end(); -}); diff --git a/node_modules/semver/test/ltr.js b/node_modules/semver/test/ltr.js deleted file mode 100644 index ecd1387..0000000 --- a/node_modules/semver/test/ltr.js +++ /dev/null @@ -1,181 +0,0 @@ -var tap = require('tap'); -var test = tap.test; -var semver = require('../semver.js'); -var ltr = semver.ltr; - -test('\nltr tests', function(t) { - // [range, version, loose] - // Version should be less than range - [ - ['~1.2.2', '1.2.1'], - ['~0.6.1-1', '0.6.1-0'], - ['1.0.0 - 2.0.0', '0.0.1'], - ['1.0.0-beta.2', '1.0.0-beta.1'], - ['1.0.0', '0.0.0'], - ['>=2.0.0', '1.1.1'], - ['>=2.0.0', '1.2.9'], - ['>2.0.0', '2.0.0'], - ['0.1.20 || 1.2.4', '0.1.5'], - ['2.x.x', '1.0.0'], - ['1.2.x', '1.1.0'], - ['1.2.x || 2.x', '1.0.0'], - ['2.*.*', '1.0.1'], - ['1.2.*', '1.1.3'], - ['1.2.* || 2.*', '1.1.9999'], - ['2', '1.0.0'], - ['2.3', '2.2.2'], - ['~2.4', '2.3.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.3.5'], - ['~>3.2.1', '3.2.0'], // >=3.2.1 <3.3.0 - ['~1', '0.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '0.2.4'], - ['~> 1', '0.2.3'], - ['~1.0', '0.1.2'], // >=1.0.0 <1.1.0 - ['~ 1.0', '0.1.0'], - ['>1.2', '1.2.0'], - ['> 1.2', '1.2.1'], - ['1', '0.0.0beta', true], - ['~v0.5.4-pre', '0.5.4-alpha'], - ['~v0.5.4-pre', '0.5.4-alpha'], - ['=0.7.x', '0.6.0'], - ['=0.7.x', '0.6.0-asdf'], - ['>=0.7.x', '0.6.0'], - ['~1.2.2', '1.2.1'], - ['1.0.0 - 2.0.0', '0.2.3'], - ['1.0.0', '0.0.1'], - ['>=2.0.0', '1.0.0'], - ['>=2.0.0', '1.9999.9999'], - ['>=2.0.0', '1.2.9'], - ['>2.0.0', '2.0.0'], - ['>2.0.0', '1.2.9'], - ['2.x.x', '1.1.3'], - ['1.2.x', '1.1.3'], - ['1.2.x || 2.x', '1.1.3'], - ['2.*.*', '1.1.3'], - ['1.2.*', '1.1.3'], - ['1.2.* || 2.*', '1.1.3'], - ['2', '1.9999.9999'], - ['2.3', '2.2.1'], - ['~2.4', '2.3.0'], // >=2.4.0 <2.5.0 - ['~>3.2.1', '2.3.2'], // >=3.2.1 <3.3.0 - ['~1', '0.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '0.2.3'], - ['~1.0', '0.0.0'], // >=1.0.0 <1.1.0 - ['>1', '1.0.0'], - ['2', '1.0.0beta', true], - ['>1', '1.0.0beta', true], - ['> 1', '1.0.0beta', true], - ['=0.7.x', '0.6.2'], - ['=0.7.x', '0.7.0-asdf'], - ['^1', '1.0.0-0'], - ['>=0.7.x', '0.7.0-asdf'], - ['1', '1.0.0beta', true], - ['>=0.7.x', '0.6.2'] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = 'ltr(' + version + ', ' + range + ', ' + loose + ')'; - t.ok(ltr(version, range, loose), msg); - }); - t.end(); -}); - -test('\nnegative ltr tests', function(t) { - // [range, version, loose] - // Version should NOT be greater than range - [ - ['~ 1.0', '1.1.0'], - ['~0.6.1-1', '0.6.1-1'], - ['1.0.0 - 2.0.0', '1.2.3'], - ['1.0.0 - 2.0.0', '2.9.9'], - ['1.0.0', '1.0.0'], - ['>=*', '0.2.4'], - ['', '1.0.0', true], - ['*', '1.2.3'], - ['*', 'v1.2.3-foo'], - ['>=1.0.0', '1.0.0'], - ['>=1.0.0', '1.0.1'], - ['>=1.0.0', '1.1.0'], - ['>1.0.0', '1.0.1'], - ['>1.0.0', '1.1.0'], - ['<=2.0.0', '2.0.0'], - ['<=2.0.0', '1.9999.9999'], - ['<=2.0.0', '0.2.9'], - ['<2.0.0', '1.9999.9999'], - ['<2.0.0', '0.2.9'], - ['>= 1.0.0', '1.0.0'], - ['>= 1.0.0', '1.0.1'], - ['>= 1.0.0', '1.1.0'], - ['> 1.0.0', '1.0.1'], - ['> 1.0.0', '1.1.0'], - ['<= 2.0.0', '2.0.0'], - ['<= 2.0.0', '1.9999.9999'], - ['<= 2.0.0', '0.2.9'], - ['< 2.0.0', '1.9999.9999'], - ['<\t2.0.0', '0.2.9'], - ['>=0.1.97', 'v0.1.97'], - ['>=0.1.97', '0.1.97'], - ['0.1.20 || 1.2.4', '1.2.4'], - ['0.1.20 || >1.2.4', '1.2.4'], - ['0.1.20 || 1.2.4', '1.2.3'], - ['0.1.20 || 1.2.4', '0.1.20'], - ['>=0.2.3 || <0.0.1', '0.0.0'], - ['>=0.2.3 || <0.0.1', '0.2.3'], - ['>=0.2.3 || <0.0.1', '0.2.4'], - ['||', '1.3.4'], - ['2.x.x', '2.1.3'], - ['1.2.x', '1.2.3'], - ['1.2.x || 2.x', '2.1.3'], - ['1.2.x || 2.x', '1.2.3'], - ['x', '1.2.3'], - ['2.*.*', '2.1.3'], - ['1.2.*', '1.2.3'], - ['1.2.* || 2.*', '2.1.3'], - ['1.2.* || 2.*', '1.2.3'], - ['1.2.* || 2.*', '1.2.3'], - ['*', '1.2.3'], - ['2', '2.1.2'], - ['2.3', '2.3.1'], - ['~2.4', '2.4.0'], // >=2.4.0 <2.5.0 - ['~2.4', '2.4.5'], - ['~>3.2.1', '3.2.2'], // >=3.2.1 <3.3.0 - ['~1', '1.2.3'], // >=1.0.0 <2.0.0 - ['~>1', '1.2.3'], - ['~> 1', '1.2.3'], - ['~1.0', '1.0.2'], // >=1.0.0 <1.1.0 - ['~ 1.0', '1.0.2'], - ['>=1', '1.0.0'], - ['>= 1', '1.0.0'], - ['<1.2', '1.1.1'], - ['< 1.2', '1.1.1'], - ['~v0.5.4-pre', '0.5.5'], - ['~v0.5.4-pre', '0.5.4'], - ['=0.7.x', '0.7.2'], - ['>=0.7.x', '0.7.2'], - ['<=0.7.x', '0.6.2'], - ['>0.2.3 >0.2.4 <=0.2.5', '0.2.5'], - ['>=0.2.3 <=0.2.4', '0.2.4'], - ['1.0.0 - 2.0.0', '2.0.0'], - ['^3.0.0', '4.0.0'], - ['^1.0.0 || ~2.0.1', '2.0.0'], - ['^0.1.0 || ~3.0.1 || 5.0.0', '3.2.0'], - ['^0.1.0 || ~3.0.1 || 5.0.0', '1.0.0beta', true], - ['^0.1.0 || ~3.0.1 || 5.0.0', '5.0.0-0', true], - ['^0.1.0 || ~3.0.1 || >4 <=5.0.0', '3.5.0'], - ['^1.0.0alpha', '1.0.0beta', true], - ['~1.0.0alpha', '1.0.0beta', true], - ['^1.0.0-alpha', '1.0.0beta', true], - ['~1.0.0-alpha', '1.0.0beta', true], - ['^1.0.0-alpha', '1.0.0-beta'], - ['~1.0.0-alpha', '1.0.0-beta'], - ['=0.1.0', '1.0.0'] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = '!ltr(' + version + ', ' + range + ', ' + loose + ')'; - t.notOk(ltr(version, range, loose), msg); - }); - t.end(); -}); diff --git a/node_modules/semver/test/major-minor-patch.js b/node_modules/semver/test/major-minor-patch.js deleted file mode 100644 index e9d4039..0000000 --- a/node_modules/semver/test/major-minor-patch.js +++ /dev/null @@ -1,72 +0,0 @@ -var tap = require('tap'); -var test = tap.test; -var semver = require('../semver.js'); - -test('\nmajor tests', function(t) { - // [range, version] - // Version should be detectable despite extra characters - [ - ['1.2.3', 1], - [' 1.2.3 ', 1], - [' 2.2.3-4 ', 2], - [' 3.2.3-pre ', 3], - ['v5.2.3', 5], - [' v8.2.3 ', 8], - ['\t13.2.3', 13], - ['=21.2.3', 21, true], - ['v=34.2.3', 34, true] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = 'major(' + range + ') = ' + version; - t.equal(semver.major(range, loose), version, msg); - }); - t.end(); -}); - -test('\nminor tests', function(t) { - // [range, version] - // Version should be detectable despite extra characters - [ - ['1.1.3', 1], - [' 1.1.3 ', 1], - [' 1.2.3-4 ', 2], - [' 1.3.3-pre ', 3], - ['v1.5.3', 5], - [' v1.8.3 ', 8], - ['\t1.13.3', 13], - ['=1.21.3', 21, true], - ['v=1.34.3', 34, true] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = 'minor(' + range + ') = ' + version; - t.equal(semver.minor(range, loose), version, msg); - }); - t.end(); -}); - -test('\npatch tests', function(t) { - // [range, version] - // Version should be detectable despite extra characters - [ - ['1.2.1', 1], - [' 1.2.1 ', 1], - [' 1.2.2-4 ', 2], - [' 1.2.3-pre ', 3], - ['v1.2.5', 5], - [' v1.2.8 ', 8], - ['\t1.2.13', 13], - ['=1.2.21', 21, true], - ['v=1.2.34', 34, true] - ].forEach(function(tuple) { - var range = tuple[0]; - var version = tuple[1]; - var loose = tuple[2] || false; - var msg = 'patch(' + range + ') = ' + version; - t.equal(semver.patch(range, loose), version, msg); - }); - t.end(); -}); diff --git a/node_modules/semver/test/no-module.js b/node_modules/semver/test/no-module.js deleted file mode 100644 index 8b50873..0000000 --- a/node_modules/semver/test/no-module.js +++ /dev/null @@ -1,19 +0,0 @@ -var tap = require('tap'); -var test = tap.test; - -test('no module system', function(t) { - var fs = require('fs'); - var vm = require('vm'); - var head = fs.readFileSync(require.resolve('../head.js.txt'), 'utf8'); - var src = fs.readFileSync(require.resolve('../'), 'utf8'); - var foot = fs.readFileSync(require.resolve('../foot.js.txt'), 'utf8'); - vm.runInThisContext(head + src + foot, 'semver.js'); - - // just some basic poking to see if it did some stuff - t.type(global.semver, 'object'); - t.type(global.semver.SemVer, 'function'); - t.type(global.semver.Range, 'function'); - t.ok(global.semver.satisfies('1.2.3', '1.2')); - t.end(); -}); - diff --git a/node_modules/split/.npmignore b/node_modules/split/.npmignore deleted file mode 100644 index 13abef4..0000000 --- a/node_modules/split/.npmignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules -node_modules/* -npm_debug.log diff --git a/node_modules/split/.travis.yml b/node_modules/split/.travis.yml deleted file mode 100644 index 6e5919d..0000000 --- a/node_modules/split/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: - - "0.10" diff --git a/node_modules/split/LICENCE b/node_modules/split/LICENCE deleted file mode 100644 index 171dd97..0000000 --- a/node_modules/split/LICENCE +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2011 Dominic Tarr - -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/node_modules/split/examples/pretty.js b/node_modules/split/examples/pretty.js deleted file mode 100644 index 2e89131..0000000 --- a/node_modules/split/examples/pretty.js +++ /dev/null @@ -1,26 +0,0 @@ - -var inspect = require('util').inspect -var es = require('event-stream') //load event-stream -var split = require('../') - -if(!module.parent) { - es.pipe( //pipe joins streams together - process.openStdin(), //open stdin - split(), //split stream to break on newlines - es.map(function (data, callback) {//turn this async function into a stream - var j - try { - j = JSON.parse(data) //try to parse input into json - } catch (err) { - return callback(null, data) //if it fails just pass it anyway - } - callback(null, inspect(j)) //render it nicely - }), - process.stdout // pipe it to stdout ! - ) - } - -// run this -// -// curl -sS registry.npmjs.org/event-stream | node pretty.js -// diff --git a/node_modules/split/index.js b/node_modules/split/index.js deleted file mode 100644 index d2bbe5d..0000000 --- a/node_modules/split/index.js +++ /dev/null @@ -1,63 +0,0 @@ -//filter will reemit the data if cb(err,pass) pass is truthy - -// reduce is more tricky -// maybe we want to group the reductions or emit progress updates occasionally -// the most basic reduce just emits one 'data' event after it has recieved 'end' - - -var through = require('through') -var Decoder = require('string_decoder').StringDecoder - -module.exports = split - -//TODO pass in a function to map across the lines. - -function split (matcher, mapper, options) { - var decoder = new Decoder() - var soFar = '' - var maxLength = options && options.maxLength; - var trailing = options && options.trailing === false ? false : true - if('function' === typeof matcher) - mapper = matcher, matcher = null - if (!matcher) - matcher = /\r?\n/ - - function emit(stream, piece) { - if(mapper) { - try { - piece = mapper(piece) - } - catch (err) { - return stream.emit('error', err) - } - if('undefined' !== typeof piece) - stream.queue(piece) - } - else - stream.queue(piece) - } - - function next (stream, buffer) { - var pieces = ((soFar != null ? soFar : '') + buffer).split(matcher) - soFar = pieces.pop() - - if (maxLength && soFar.length > maxLength) - return stream.emit('error', new Error('maximum buffer reached')) - - for (var i = 0; i < pieces.length; i++) { - var piece = pieces[i] - emit(stream, piece) - } - } - - return through(function (b) { - next(this, decoder.write(b)) - }, - function () { - if(decoder.end) - next(this, decoder.end()) - if(trailing && soFar != null) - emit(this, soFar) - this.queue(null) - }) -} diff --git a/node_modules/split/package.json b/node_modules/split/package.json deleted file mode 100644 index 523d9ff..0000000 --- a/node_modules/split/package.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "_from": "split@^1.0.0", - "_id": "split@1.0.1", - "_inBundle": false, - "_integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "_location": "/split", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "split@^1.0.0", - "name": "split", - "escapedName": "split", - "rawSpec": "^1.0.0", - "saveSpec": null, - "fetchSpec": "^1.0.0" - }, - "_requiredBy": [ - "/pgpass" - ], - "_resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "_shasum": "605bd9be303aa59fb35f9229fbea0ddec9ea07d9", - "_spec": "split@^1.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/pgpass", - "author": { - "name": "Dominic Tarr", - "email": "dominic.tarr@gmail.com", - "url": "http://bit.ly/dominictarr" - }, - "bugs": { - "url": "https://github.com/dominictarr/split/issues" - }, - "bundleDependencies": false, - "dependencies": { - "through": "2" - }, - "deprecated": false, - "description": "split a Text Stream into a Line Stream", - "devDependencies": { - "asynct": "*", - "event-stream": "~3.0.2", - "it-is": "1", - "stream-spec": "~0.2", - "string-to-stream": "~1.0.0", - "ubelt": "~2.9" - }, - "engines": { - "node": "*" - }, - "homepage": "http://github.com/dominictarr/split", - "license": "MIT", - "name": "split", - "optionalDependencies": {}, - "repository": { - "type": "git", - "url": "git://github.com/dominictarr/split.git" - }, - "scripts": { - "test": "asynct test/" - }, - "version": "1.0.1" -} diff --git a/node_modules/split/readme.markdown b/node_modules/split/readme.markdown deleted file mode 100644 index c2e527d..0000000 --- a/node_modules/split/readme.markdown +++ /dev/null @@ -1,72 +0,0 @@ -# Split (matcher) - -[![build status](https://secure.travis-ci.org/dominictarr/split.png)](http://travis-ci.org/dominictarr/split) - -Break up a stream and reassemble it so that each line is a chunk. matcher may be a `String`, or a `RegExp` - -Example, read every line in a file ... - -``` js - fs.createReadStream(file) - .pipe(split()) - .on('data', function (line) { - //each chunk now is a separate line! - }) - -``` - -`split` takes the same arguments as `string.split` except it defaults to '/\r?\n/' instead of ',', and the optional `limit` parameter is ignored. -[String#split](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/split) - -`split` takes an optional options object on its third argument. - -``` js - split(matcher, mapper, options) -``` - -Valid options: - -* maxLength - The maximum buffer length without seeing a newline or `matcher`, - if a single line exceeds this, the split stream will emit an error. - -``` js - split(JSON.parse, null, { maxLength: 2}) -``` - -* trailing - By default the last buffer not delimited by a newline or `matcher` will be emitted. To prevent this set `options.trailing` to `false`. - -``` js - split(JSON.parse, null, { trailing: false }) -``` - -## keep matched splitter - -As with `String#split`, if you split by a regular expression with a matching group, -the matches will be retained in the collection. - -``` -stdin -.pipe(split(/(\r?\n)/)) -... //lines + separators. -``` - - -# NDJ - Newline Delimited Json - -`split` accepts a function which transforms each line. - -``` js -fs.createReadStream(file) - .pipe(split(JSON.parse)) - .on('data', function (obj) { - //each chunk now is a a js object - }) - .on('error', function (err) { - //syntax errors will land here - //note, this ends the stream. - }) -``` - -# License - -MIT diff --git a/node_modules/split/test/options.asynct.js b/node_modules/split/test/options.asynct.js deleted file mode 100644 index 3f137d9..0000000 --- a/node_modules/split/test/options.asynct.js +++ /dev/null @@ -1,46 +0,0 @@ -var it = require('it-is').style('colour') - , split = require('..') - -exports ['maximum buffer limit'] = function (test) { - var s = split(JSON.parse, null, { - maxLength: 2 - }) - , caughtError = false - , rows = [] - - s.on('error', function (err) { - caughtError = true - }) - - s.on('data', function (row) { rows.push(row) }) - - s.write('{"a":1}\n{"') - s.write('{ "') - it(caughtError).equal(true) - - s.end() - test.done() -} - -exports ['ignore trailing buffers'] = function (test) { - var s = split(JSON.parse, null, { - trailing: false - }) - , caughtError = false - , rows = [] - - s.on('error', function (err) { - caughtError = true - }) - - s.on('data', function (row) { rows.push(row) }) - - s.write('{"a":1}\n{"') - s.write('{ "') - s.end() - - it(caughtError).equal(false) - it(rows).deepEqual([ { a: 1 } ]) - - test.done() -} diff --git a/node_modules/split/test/partitioned_unicode.js b/node_modules/split/test/partitioned_unicode.js deleted file mode 100644 index aff3d5d..0000000 --- a/node_modules/split/test/partitioned_unicode.js +++ /dev/null @@ -1,34 +0,0 @@ -var it = require('it-is').style('colour') - , split = require('..') - -exports ['split data with partitioned unicode character'] = function (test) { - var s = split(/,/g) - , caughtError = false - , rows = [] - - s.on('error', function (err) { - caughtError = true - }) - - s.on('data', function (row) { rows.push(row) }) - - var x = 'テスト試験今日とても,よい天気で' - unicodeData = new Buffer(x); - - // partition of 日 - piece1 = unicodeData.slice(0, 20); - piece2 = unicodeData.slice(20, unicodeData.length); - - s.write(piece1); - s.write(piece2); - - s.end() - - it(caughtError).equal(false) - - it(rows).deepEqual(['テスト試験今日とても', 'よい天気で']); - - it(rows).deepEqual(x.split(',')) - - test.done() -} diff --git a/node_modules/split/test/split.asynct.js b/node_modules/split/test/split.asynct.js deleted file mode 100644 index a586e12..0000000 --- a/node_modules/split/test/split.asynct.js +++ /dev/null @@ -1,137 +0,0 @@ -var es = require('event-stream') - , it = require('it-is').style('colour') - , d = require('ubelt') - , split = require('..') - , join = require('path').join - , fs = require('fs') - , Stream = require('stream').Stream - , Readable = require('stream').Readable - , spec = require('stream-spec') - , through = require('through') - , stringStream = require('string-to-stream') - -exports ['split() works like String#split'] = function (test) { - var readme = join(__filename) - , expected = fs.readFileSync(readme, 'utf-8').split('\n') - , cs = split() - , actual = [] - , ended = false - , x = spec(cs).through() - - var a = new Stream () - - a.write = function (l) { - actual.push(l.trim()) - } - a.end = function () { - - ended = true - expected.forEach(function (v,k) { - //String.split will append an empty string '' - //if the string ends in a split pattern. - //es.split doesn't which was breaking this test. - //clearly, appending the empty string is correct. - //tests are passing though. which is the current job. - if(v) - it(actual[k]).like(v) - }) - //give the stream time to close - process.nextTick(function () { - test.done() - x.validate() - }) - } - a.writable = true - - fs.createReadStream(readme, {flags: 'r'}).pipe(cs) - cs.pipe(a) - -} - -exports ['split() takes mapper function'] = function (test) { - var readme = join(__filename) - , expected = fs.readFileSync(readme, 'utf-8').split('\n') - , cs = split(function (line) { return line.toUpperCase() }) - , actual = [] - , ended = false - , x = spec(cs).through() - - var a = new Stream () - - a.write = function (l) { - actual.push(l.trim()) - } - a.end = function () { - - ended = true - expected.forEach(function (v,k) { - //String.split will append an empty string '' - //if the string ends in a split pattern. - //es.split doesn't which was breaking this test. - //clearly, appending the empty string is correct. - //tests are passing though. which is the current job. - if(v) - it(actual[k]).equal(v.trim().toUpperCase()) - }) - //give the stream time to close - process.nextTick(function () { - test.done() - x.validate() - }) - } - a.writable = true - - fs.createReadStream(readme, {flags: 'r'}).pipe(cs) - cs.pipe(a) - -} - -exports ['split() works with empty string chunks'] = function (test) { - var str = ' foo' - , expected = str.split(/[\s]*/).reduce(splitBy(/[\s]*/), []) - , cs1 = split(/[\s]*/) - , cs2 = split(/[\s]*/) - , actual = [] - , ended = false - , x = spec(cs1).through() - , y = spec(cs2).through() - - var a = new Stream () - - a.write = function (l) { - actual.push(l.trim()) - } - a.end = function () { - - ended = true - expected.forEach(function (v,k) { - //String.split will append an empty string '' - //if the string ends in a split pattern. - //es.split doesn't which was breaking this test. - //clearly, appending the empty string is correct. - //tests are passing though. which is the current job. - if(v) - it(actual[k]).like(v) - }) - //give the stream time to close - process.nextTick(function () { - test.done() - x.validate() - y.validate() - }) - } - a.writable = true - - cs1.pipe(cs2) - cs2.pipe(a) - - cs1.write(str) - cs1.end() - -} - -function splitBy (delimiter) { - return function (arr, piece) { - return arr.concat(piece.split(delimiter)) - } -} diff --git a/node_modules/split/test/try_catch.asynct.js b/node_modules/split/test/try_catch.asynct.js deleted file mode 100644 index 39e49f7..0000000 --- a/node_modules/split/test/try_catch.asynct.js +++ /dev/null @@ -1,51 +0,0 @@ -var it = require('it-is').style('colour') - , split = require('..') - -exports ['emit mapper exceptions as error events'] = function (test) { - var s = split(JSON.parse) - , caughtError = false - , rows = [] - - s.on('error', function (err) { - caughtError = true - }) - - s.on('data', function (row) { rows.push(row) }) - - s.write('{"a":1}\n{"') - it(caughtError).equal(false) - it(rows).deepEqual([ { a: 1 } ]) - - s.write('b":2}\n{"c":}\n') - it(caughtError).equal(true) - it(rows).deepEqual([ { a: 1 }, { b: 2 } ]) - - s.end() - test.done() -} - -exports ['mapper error events on trailing chunks'] = function (test) { - var s = split(JSON.parse) - , caughtError = false - , rows = [] - - s.on('error', function (err) { - caughtError = true - }) - - s.on('data', function (row) { rows.push(row) }) - - s.write('{"a":1}\n{"') - it(caughtError).equal(false) - it(rows).deepEqual([ { a: 1 } ]) - - s.write('b":2}\n{"c":}') - it(caughtError).equal(false) - it(rows).deepEqual([ { a: 1 }, { b: 2 } ]) - - s.end() - it(caughtError).equal(true) - it(rows).deepEqual([ { a: 1 }, { b: 2 } ]) - - test.done() -} diff --git a/node_modules/through/.travis.yml b/node_modules/through/.travis.yml deleted file mode 100644 index c693a93..0000000 --- a/node_modules/through/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -language: node_js -node_js: - - 0.6 - - 0.8 - - "0.10" diff --git a/node_modules/through/LICENSE.APACHE2 b/node_modules/through/LICENSE.APACHE2 deleted file mode 100644 index 6366c04..0000000 --- a/node_modules/through/LICENSE.APACHE2 +++ /dev/null @@ -1,15 +0,0 @@ -Apache License, Version 2.0 - -Copyright (c) 2011 Dominic Tarr - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/node_modules/through/LICENSE.MIT b/node_modules/through/LICENSE.MIT deleted file mode 100644 index 6eafbd7..0000000 --- a/node_modules/through/LICENSE.MIT +++ /dev/null @@ -1,24 +0,0 @@ -The MIT License - -Copyright (c) 2011 Dominic Tarr - -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/through/index.js b/node_modules/through/index.js deleted file mode 100644 index ca5fc59..0000000 --- a/node_modules/through/index.js +++ /dev/null @@ -1,108 +0,0 @@ -var Stream = require('stream') - -// through -// -// a stream that does nothing but re-emit the input. -// useful for aggregating a series of changing but not ending streams into one stream) - -exports = module.exports = through -through.through = through - -//create a readable writable stream. - -function through (write, end, opts) { - write = write || function (data) { this.queue(data) } - end = end || function () { this.queue(null) } - - var ended = false, destroyed = false, buffer = [], _ended = false - var stream = new Stream() - stream.readable = stream.writable = true - stream.paused = false - -// stream.autoPause = !(opts && opts.autoPause === false) - stream.autoDestroy = !(opts && opts.autoDestroy === false) - - stream.write = function (data) { - write.call(this, data) - return !stream.paused - } - - function drain() { - while(buffer.length && !stream.paused) { - var data = buffer.shift() - if(null === data) - return stream.emit('end') - else - stream.emit('data', data) - } - } - - stream.queue = stream.push = function (data) { -// console.error(ended) - if(_ended) return stream - if(data === null) _ended = true - buffer.push(data) - drain() - return stream - } - - //this will be registered as the first 'end' listener - //must call destroy next tick, to make sure we're after any - //stream piped from here. - //this is only a problem if end is not emitted synchronously. - //a nicer way to do this is to make sure this is the last listener for 'end' - - stream.on('end', function () { - stream.readable = false - if(!stream.writable && stream.autoDestroy) - process.nextTick(function () { - stream.destroy() - }) - }) - - function _end () { - stream.writable = false - end.call(stream) - if(!stream.readable && stream.autoDestroy) - stream.destroy() - } - - stream.end = function (data) { - if(ended) return - ended = true - if(arguments.length) stream.write(data) - _end() // will emit or queue - return stream - } - - stream.destroy = function () { - if(destroyed) return - destroyed = true - ended = true - buffer.length = 0 - stream.writable = stream.readable = false - stream.emit('close') - return stream - } - - stream.pause = function () { - if(stream.paused) return - stream.paused = true - return stream - } - - stream.resume = function () { - if(stream.paused) { - stream.paused = false - stream.emit('resume') - } - drain() - //may have become paused again, - //as drain emits 'data'. - if(!stream.paused) - stream.emit('drain') - return stream - } - return stream -} - diff --git a/node_modules/through/package.json b/node_modules/through/package.json deleted file mode 100644 index cd904e0..0000000 --- a/node_modules/through/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "_from": "through@2", - "_id": "through@2.3.8", - "_inBundle": false, - "_integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "_location": "/through", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "through@2", - "name": "through", - "escapedName": "through", - "rawSpec": "2", - "saveSpec": null, - "fetchSpec": "2" - }, - "_requiredBy": [ - "/split" - ], - "_resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "_shasum": "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5", - "_spec": "through@2", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/split", - "author": { - "name": "Dominic Tarr", - "email": "dominic.tarr@gmail.com", - "url": "dominictarr.com" - }, - "bugs": { - "url": "https://github.com/dominictarr/through/issues" - }, - "bundleDependencies": false, - "deprecated": false, - "description": "simplified stream construction", - "devDependencies": { - "from": "~0.1.3", - "stream-spec": "~0.3.5", - "tape": "~2.3.2" - }, - "homepage": "https://github.com/dominictarr/through", - "keywords": [ - "stream", - "streams", - "user-streams", - "pipe" - ], - "license": "MIT", - "main": "index.js", - "name": "through", - "repository": { - "type": "git", - "url": "git+https://github.com/dominictarr/through.git" - }, - "scripts": { - "test": "set -e; for t in test/*.js; do node $t; done" - }, - "testling": { - "browsers": [ - "ie/8..latest", - "ff/15..latest", - "chrome/20..latest", - "safari/5.1..latest" - ], - "files": "test/*.js" - }, - "version": "2.3.8" -} diff --git a/node_modules/through/readme.markdown b/node_modules/through/readme.markdown deleted file mode 100644 index cb34c81..0000000 --- a/node_modules/through/readme.markdown +++ /dev/null @@ -1,64 +0,0 @@ -#through - -[![build status](https://secure.travis-ci.org/dominictarr/through.png)](http://travis-ci.org/dominictarr/through) -[![testling badge](https://ci.testling.com/dominictarr/through.png)](https://ci.testling.com/dominictarr/through) - -Easy way to create a `Stream` that is both `readable` and `writable`. - -* Pass in optional `write` and `end` methods. -* `through` takes care of pause/resume logic if you use `this.queue(data)` instead of `this.emit('data', data)`. -* Use `this.pause()` and `this.resume()` to manage flow. -* Check `this.paused` to see current flow state. (`write` always returns `!this.paused`). - -This function is the basis for most of the synchronous streams in -[event-stream](http://github.com/dominictarr/event-stream). - -``` js -var through = require('through') - -through(function write(data) { - this.queue(data) //data *must* not be null - }, - function end () { //optional - this.queue(null) - }) -``` - -Or, can also be used _without_ buffering on pause, use `this.emit('data', data)`, -and this.emit('end') - -``` js -var through = require('through') - -through(function write(data) { - this.emit('data', data) - //this.pause() - }, - function end () { //optional - this.emit('end') - }) -``` - -## Extended Options - -You will probably not need these 99% of the time. - -### autoDestroy=false - -By default, `through` emits close when the writable -and readable side of the stream has ended. -If that is not desired, set `autoDestroy=false`. - -``` js -var through = require('through') - -//like this -var ts = through(write, end, {autoDestroy: false}) -//or like this -var ts = through(write, end) -ts.autoDestroy = false -``` - -## License - -MIT / Apache2 diff --git a/node_modules/through/test/async.js b/node_modules/through/test/async.js deleted file mode 100644 index 46bdbae..0000000 --- a/node_modules/through/test/async.js +++ /dev/null @@ -1,28 +0,0 @@ -var from = require('from') -var through = require('../') - -var tape = require('tape') - -tape('simple async example', function (t) { - - var n = 0, expected = [1,2,3,4,5], actual = [] - from(expected) - .pipe(through(function(data) { - this.pause() - n ++ - setTimeout(function(){ - console.log('pushing data', data) - this.push(data) - this.resume() - }.bind(this), 300) - })).pipe(through(function(data) { - console.log('pushing data second time', data); - this.push(data) - })).on('data', function (d) { - actual.push(d) - }).on('end', function() { - t.deepEqual(actual, expected) - t.end() - }) - -}) diff --git a/node_modules/through/test/auto-destroy.js b/node_modules/through/test/auto-destroy.js deleted file mode 100644 index 9a8fd00..0000000 --- a/node_modules/through/test/auto-destroy.js +++ /dev/null @@ -1,30 +0,0 @@ -var test = require('tape') -var through = require('../') - -// must emit end before close. - -test('end before close', function (assert) { - var ts = through() - ts.autoDestroy = false - var ended = false, closed = false - - ts.on('end', function () { - assert.ok(!closed) - ended = true - }) - ts.on('close', function () { - assert.ok(ended) - closed = true - }) - - ts.write(1) - ts.write(2) - ts.write(3) - ts.end() - assert.ok(ended) - assert.notOk(closed) - ts.destroy() - assert.ok(closed) - assert.end() -}) - diff --git a/node_modules/through/test/buffering.js b/node_modules/through/test/buffering.js deleted file mode 100644 index b0084bf..0000000 --- a/node_modules/through/test/buffering.js +++ /dev/null @@ -1,71 +0,0 @@ -var test = require('tape') -var through = require('../') - -// must emit end before close. - -test('buffering', function(assert) { - var ts = through(function (data) { - this.queue(data) - }, function () { - this.queue(null) - }) - - var ended = false, actual = [] - - ts.on('data', actual.push.bind(actual)) - ts.on('end', function () { - ended = true - }) - - ts.write(1) - ts.write(2) - ts.write(3) - assert.deepEqual(actual, [1, 2, 3]) - ts.pause() - ts.write(4) - ts.write(5) - ts.write(6) - assert.deepEqual(actual, [1, 2, 3]) - ts.resume() - assert.deepEqual(actual, [1, 2, 3, 4, 5, 6]) - ts.pause() - ts.end() - assert.ok(!ended) - ts.resume() - assert.ok(ended) - assert.end() -}) - -test('buffering has data in queue, when ends', function (assert) { - - /* - * If stream ends while paused with data in the queue, - * stream should still emit end after all data is written - * on resume. - */ - - var ts = through(function (data) { - this.queue(data) - }, function () { - this.queue(null) - }) - - var ended = false, actual = [] - - ts.on('data', actual.push.bind(actual)) - ts.on('end', function () { - ended = true - }) - - ts.pause() - ts.write(1) - ts.write(2) - ts.write(3) - ts.end() - assert.deepEqual(actual, [], 'no data written yet, still paused') - assert.ok(!ended, 'end not emitted yet, still paused') - ts.resume() - assert.deepEqual(actual, [1, 2, 3], 'resumed, all data should be delivered') - assert.ok(ended, 'end should be emitted once all data was delivered') - assert.end(); -}) diff --git a/node_modules/through/test/end.js b/node_modules/through/test/end.js deleted file mode 100644 index fa113f5..0000000 --- a/node_modules/through/test/end.js +++ /dev/null @@ -1,45 +0,0 @@ -var test = require('tape') -var through = require('../') - -// must emit end before close. - -test('end before close', function (assert) { - var ts = through() - var ended = false, closed = false - - ts.on('end', function () { - assert.ok(!closed) - ended = true - }) - ts.on('close', function () { - assert.ok(ended) - closed = true - }) - - ts.write(1) - ts.write(2) - ts.write(3) - ts.end() - assert.ok(ended) - assert.ok(closed) - assert.end() -}) - -test('end only once', function (t) { - - var ts = through() - var ended = false, closed = false - - ts.on('end', function () { - t.equal(ended, false) - ended = true - }) - - ts.queue(null) - ts.queue(null) - ts.queue(null) - - ts.resume() - - t.end() -}) diff --git a/node_modules/through/test/index.js b/node_modules/through/test/index.js deleted file mode 100644 index 96da82f..0000000 --- a/node_modules/through/test/index.js +++ /dev/null @@ -1,133 +0,0 @@ - -var test = require('tape') -var spec = require('stream-spec') -var through = require('../') - -/* - I'm using these two functions, and not streams and pipe - so there is less to break. if this test fails it must be - the implementation of _through_ -*/ - -function write(array, stream) { - array = array.slice() - function next() { - while(array.length) - if(stream.write(array.shift()) === false) - return stream.once('drain', next) - - stream.end() - } - - next() -} - -function read(stream, callback) { - var actual = [] - stream.on('data', function (data) { - actual.push(data) - }) - stream.once('end', function () { - callback(null, actual) - }) - stream.once('error', function (err) { - callback(err) - }) -} - -test('simple defaults', function(assert) { - - var l = 1000 - , expected = [] - - while(l--) expected.push(l * Math.random()) - - var t = through() - var s = spec(t).through().pausable() - - read(t, function (err, actual) { - assert.ifError(err) - assert.deepEqual(actual, expected) - assert.end() - }) - - t.on('close', s.validate) - - write(expected, t) -}); - -test('simple functions', function(assert) { - - var l = 1000 - , expected = [] - - while(l--) expected.push(l * Math.random()) - - var t = through(function (data) { - this.emit('data', data*2) - }) - var s = spec(t).through().pausable() - - - read(t, function (err, actual) { - assert.ifError(err) - assert.deepEqual(actual, expected.map(function (data) { - return data*2 - })) - assert.end() - }) - - t.on('close', s.validate) - - write(expected, t) -}) - -test('pauses', function(assert) { - - var l = 1000 - , expected = [] - - while(l--) expected.push(l) //Math.random()) - - var t = through() - - var s = spec(t) - .through() - .pausable() - - t.on('data', function () { - if(Math.random() > 0.1) return - t.pause() - process.nextTick(function () { - t.resume() - }) - }) - - read(t, function (err, actual) { - assert.ifError(err) - assert.deepEqual(actual, expected) - }) - - t.on('close', function () { - s.validate() - assert.end() - }) - - write(expected, t) -}) - -test('does not soft-end on `undefined`', function(assert) { - var stream = through() - , count = 0 - - stream.on('data', function (data) { - count++ - }) - - stream.write(undefined) - stream.write(undefined) - - assert.equal(count, 2) - - assert.end() -}) diff --git a/node_modules/xtend/.jshintrc b/node_modules/xtend/.jshintrc deleted file mode 100644 index 77887b5..0000000 --- a/node_modules/xtend/.jshintrc +++ /dev/null @@ -1,30 +0,0 @@ -{ - "maxdepth": 4, - "maxstatements": 200, - "maxcomplexity": 12, - "maxlen": 80, - "maxparams": 5, - - "curly": true, - "eqeqeq": true, - "immed": true, - "latedef": false, - "noarg": true, - "noempty": true, - "nonew": true, - "undef": true, - "unused": "vars", - "trailing": true, - - "quotmark": true, - "expr": true, - "asi": true, - - "browser": false, - "esnext": true, - "devel": false, - "node": false, - "nonstandard": false, - - "predef": ["require", "module", "__dirname", "__filename"] -} diff --git a/node_modules/xtend/LICENSE b/node_modules/xtend/LICENSE deleted file mode 100644 index 0099f4f..0000000 --- a/node_modules/xtend/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) -Copyright (c) 2012-2014 Raynos. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/xtend/README.md b/node_modules/xtend/README.md deleted file mode 100644 index 4a2703c..0000000 --- a/node_modules/xtend/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# xtend - -[![browser support][3]][4] - -[![locked](http://badges.github.io/stability-badges/dist/locked.svg)](http://github.com/badges/stability-badges) - -Extend like a boss - -xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes precedence. - -## Examples - -```js -var extend = require("xtend") - -// extend returns a new object. Does not mutate arguments -var combination = extend({ - a: "a", - b: "c" -}, { - b: "b" -}) -// { a: "a", b: "b" } -``` - -## Stability status: Locked - -## MIT Licensed - - - [3]: http://ci.testling.com/Raynos/xtend.png - [4]: http://ci.testling.com/Raynos/xtend diff --git a/node_modules/xtend/immutable.js b/node_modules/xtend/immutable.js deleted file mode 100644 index 94889c9..0000000 --- a/node_modules/xtend/immutable.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = extend - -var hasOwnProperty = Object.prototype.hasOwnProperty; - -function extend() { - var target = {} - - for (var i = 0; i < arguments.length; i++) { - var source = arguments[i] - - for (var key in source) { - if (hasOwnProperty.call(source, key)) { - target[key] = source[key] - } - } - } - - return target -} diff --git a/node_modules/xtend/mutable.js b/node_modules/xtend/mutable.js deleted file mode 100644 index 72debed..0000000 --- a/node_modules/xtend/mutable.js +++ /dev/null @@ -1,17 +0,0 @@ -module.exports = extend - -var hasOwnProperty = Object.prototype.hasOwnProperty; - -function extend(target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i] - - for (var key in source) { - if (hasOwnProperty.call(source, key)) { - target[key] = source[key] - } - } - } - - return target -} diff --git a/node_modules/xtend/package.json b/node_modules/xtend/package.json deleted file mode 100644 index afa1d27..0000000 --- a/node_modules/xtend/package.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "_from": "xtend@^4.0.0", - "_id": "xtend@4.0.2", - "_inBundle": false, - "_integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "_location": "/xtend", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "xtend@^4.0.0", - "name": "xtend", - "escapedName": "xtend", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "/postgres-interval" - ], - "_resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "_shasum": "bb72779f5fa465186b1f438f674fa347fdb5db54", - "_spec": "xtend@^4.0.0", - "_where": "/Users/986220/Documents/git-and-code/ingredient.guru/node_modules/postgres-interval", - "author": { - "name": "Raynos", - "email": "raynos2@gmail.com" - }, - "bugs": { - "url": "https://github.com/Raynos/xtend/issues", - "email": "raynos2@gmail.com" - }, - "bundleDependencies": false, - "contributors": [ - { - "name": "Jake Verbaten" - }, - { - "name": "Matt Esch" - } - ], - "dependencies": {}, - "deprecated": false, - "description": "extend like a boss", - "devDependencies": { - "tape": "~1.1.0" - }, - "engines": { - "node": ">=0.4" - }, - "homepage": "https://github.com/Raynos/xtend", - "keywords": [ - "extend", - "merge", - "options", - "opts", - "object", - "array" - ], - "license": "MIT", - "main": "immutable", - "name": "xtend", - "repository": { - "type": "git", - "url": "git://github.com/Raynos/xtend.git" - }, - "scripts": { - "test": "node test" - }, - "testling": { - "files": "test.js", - "browsers": [ - "ie/7..latest", - "firefox/16..latest", - "firefox/nightly", - "chrome/22..latest", - "chrome/canary", - "opera/12..latest", - "opera/next", - "safari/5.1..latest", - "ipad/6.0..latest", - "iphone/6.0..latest" - ] - }, - "version": "4.0.2" -} diff --git a/node_modules/xtend/test.js b/node_modules/xtend/test.js deleted file mode 100644 index b895b42..0000000 --- a/node_modules/xtend/test.js +++ /dev/null @@ -1,103 +0,0 @@ -var test = require("tape") -var extend = require("./") -var mutableExtend = require("./mutable") - -test("merge", function(assert) { - var a = { a: "foo" } - var b = { b: "bar" } - - assert.deepEqual(extend(a, b), { a: "foo", b: "bar" }) - assert.end() -}) - -test("replace", function(assert) { - var a = { a: "foo" } - var b = { a: "bar" } - - assert.deepEqual(extend(a, b), { a: "bar" }) - assert.end() -}) - -test("undefined", function(assert) { - var a = { a: undefined } - var b = { b: "foo" } - - assert.deepEqual(extend(a, b), { a: undefined, b: "foo" }) - assert.deepEqual(extend(b, a), { a: undefined, b: "foo" }) - assert.end() -}) - -test("handle 0", function(assert) { - var a = { a: "default" } - var b = { a: 0 } - - assert.deepEqual(extend(a, b), { a: 0 }) - assert.deepEqual(extend(b, a), { a: "default" }) - assert.end() -}) - -test("is immutable", function (assert) { - var record = {} - - extend(record, { foo: "bar" }) - assert.equal(record.foo, undefined) - assert.end() -}) - -test("null as argument", function (assert) { - var a = { foo: "bar" } - var b = null - var c = void 0 - - assert.deepEqual(extend(b, a, c), { foo: "bar" }) - assert.end() -}) - -test("mutable", function (assert) { - var a = { foo: "bar" } - - mutableExtend(a, { bar: "baz" }) - - assert.equal(a.bar, "baz") - assert.end() -}) - -test("null prototype", function(assert) { - var a = { a: "foo" } - var b = Object.create(null) - b.b = "bar"; - - assert.deepEqual(extend(a, b), { a: "foo", b: "bar" }) - assert.end() -}) - -test("null prototype mutable", function (assert) { - var a = { foo: "bar" } - var b = Object.create(null) - b.bar = "baz"; - - mutableExtend(a, b) - - assert.equal(a.bar, "baz") - assert.end() -}) - -test("prototype pollution", function (assert) { - var a = {} - var maliciousPayload = '{"__proto__":{"oops":"It works!"}}' - - assert.strictEqual(a.oops, undefined) - extend({}, maliciousPayload) - assert.strictEqual(a.oops, undefined) - assert.end() -}) - -test("prototype pollution mutable", function (assert) { - var a = {} - var maliciousPayload = '{"__proto__":{"oops":"It works!"}}' - - assert.strictEqual(a.oops, undefined) - mutableExtend({}, maliciousPayload) - assert.strictEqual(a.oops, undefined) - assert.end() -}) diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index e10ab39..0000000 --- a/package-lock.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "requires": true, - "lockfileVersion": 1, - "dependencies": { - "buffer-writer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", - "integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==" - }, - "packet-reader": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", - "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" - }, - "pg": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/pg/-/pg-7.12.1.tgz", - "integrity": "sha512-l1UuyfEvoswYfcUe6k+JaxiN+5vkOgYcVSbSuw3FvdLqDbaoa2RJo1zfJKfPsSYPFVERd4GHvX3s2PjG1asSDA==", - "requires": { - "buffer-writer": "2.0.0", - "packet-reader": "1.0.0", - "pg-connection-string": "0.1.3", - "pg-pool": "^2.0.4", - "pg-types": "^2.1.0", - "pgpass": "1.x", - "semver": "4.3.2" - } - }, - "pg-connection-string": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz", - "integrity": "sha1-2hhHsglA5C7hSSvq9l1J2RskXfc=" - }, - "pg-int8": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==" - }, - "pg-pool": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-2.0.7.tgz", - "integrity": "sha512-UiJyO5B9zZpu32GSlP0tXy8J2NsJ9EFGFfz5v6PSbdz/1hBLX1rNiiy5+mAm5iJJYwfCv4A0EBcQLGWwjbpzZw==" - }, - "pg-types": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "requires": { - "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", - "postgres-bytea": "~1.0.0", - "postgres-date": "~1.0.4", - "postgres-interval": "^1.1.0" - } - }, - "pgpass": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz", - "integrity": "sha1-Knu0G2BltnkH6R2hsHwYR8h3swY=", - "requires": { - "split": "^1.0.0" - } - }, - "postgres-array": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==" - }, - "postgres-bytea": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha1-AntTPAqokOJtFy1Hz5zOzFIazTU=" - }, - "postgres-date": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.4.tgz", - "integrity": "sha512-bESRvKVuTrjoBluEcpv2346+6kgB7UlnqWZsnbnCccTNq/pqfj1j6oBaN5+b/NrDXepYUT/HKadqv3iS9lJuVA==" - }, - "postgres-interval": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "requires": { - "xtend": "^4.0.0" - } - }, - "semver": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz", - "integrity": "sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=" - }, - "split": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "requires": { - "through": "2" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - } -} diff --git a/tests/prove.t6 b/tests/prove.t6 new file mode 100644 index 0000000..b22c74b --- /dev/null +++ b/tests/prove.t6 @@ -0,0 +1,65 @@ +use lib '.'; +use sign-in; +use Test; + +#Plan +plan 10; + +############################################## +##Tests for Verification/Creation of Account## +############################################## + +#Working Test +my $account-made = account-made("Hello", "test@test.com", "secret"); +ok($account-made = 1, 'Account Made'); + +#Missing Value | Error Message is Long and Dumb +my $account-missing = account-made("Hello", Nil, "secret"); +ok($account-missing = "DBDish::SQLite: Error: UNIQUE constraint failed: accounts.username (19) + in method execute at /usr/local/Cellar/rakudo-star/2019.03/share/perl6/site/sources/DE559529B32B6D348188B437156092A03C0433A1 (DBDish::SQLite::StatementHandle) line 45 + in sub account-made at /Users/1013042/Repos/ingredient.guru/CRO/tests/sign-in.pm6 (sign-in) line 37 + in block at prove.t6 line 18", 'Value Missing'); + +#Correct Info | Email Correct +my $account-email = email-valid("test@test.com"); +ok($account-email = True, 'Email Correct'); + +#Incorrect Info | Email Incorrect +my $email-inc = email-valid("notanemail"); +ok($email-inc = "False", 'Email Incorrect'); + +############################################### +###Tests for Authentication/Successful Login### +############################################### + +#Successful Login +my $login = login("Hello", "secret"); +ok($login = "1", 'Successful Login'); + +#Incorrect Information +my $login-inc = login("fakeusername", "badpassword"); +ok($login-inc = "0", 'Incorrect Info Login'); + + +######################################### +##Checking if Application is Responding## +######################################### + +#Will Check if Registering and Logging in is Possible. +my $heartbeat = account-made("Hello", "test@test.com", "secret"); +ok($heartbeat = "1", 'Heartbeat Test1'); + +my $heartbeattest2 = login("Hello", "secret"); +ok($heartbeattest2 = "1", 'Heartbeat Test2'); + + + +###################################### +###Forgot Password/Account Recovery### +###################################### + +my $exists = account_exists("test@test.com"); +ok($exists = "1", 'Account Exists'); + +my $recover = add_recovery("test@test.com"); +ok($recover = "1", 'Account Added') diff --git a/tests/sign-in.pm6 b/tests/sign-in.pm6 new file mode 100644 index 0000000..4482c45 --- /dev/null +++ b/tests/sign-in.pm6 @@ -0,0 +1,104 @@ +#Import Modules +use Digest::SHA256::Native; +use DBIish; +use Email::Valid; +use Net::SMTP; + + +#Test Database +my $dbh = DBIish.connect( 'SQLite', database => 'test.db' ); +my $sth = $dbh.do(q:to/STATEMENT/); + CREATE TABLE IF NOT EXISTS accounts ( + ID INTEGER PRIMARY KEY AUTOINCREMENT, + username TEXT type UNIQUE, + email TEXT type UNIQUE, + password TEXT, + date TEXT, + code INT, + verified TEXT + ) + STATEMENT + +#Required for Testing Succesful Login +#$sth = $dbh.prepare(q:to/STATEMENT/); + #INSERT INTO accounts (username, email, password, date, code, verified) + #VALUES ( ?, ?, ?, ?, ?, ? ) + #STATEMENT + +$sth = $dbh.do(q:to/STATEMENT/); + CREATE TABLE IF NOT EXISTS password_recovery ( + email TEXT type UNIQUE, + token TEXT type UNIQUE, + expired TEXt + ) + STATEMENT + + +sub account-made($username, $email, $password) is export { + #SQL Insert Statment + $sth = $dbh.prepare(q:to/STATEMENT/); + INSERT INTO accounts (username, email, password, date, code, verified) + VALUES ( ?, ?, ?, ?, ?, ? ) + STATEMENT + + #Hash Password + my $hashpassword = sha256-hex $password.encode: 'utf8-c8'; + + #Retrieves Date and Time + my $date = Str(DateTime.now); + + #Generate Random 6 Digit Code + my $code = (100000^..999999).pick; + + #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error) + return $sth.execute($username, $email, $hashpassword, $date, $code, "TRUE"); +} + +sub email-valid($input) is export { + my $email = Email::Valid.new(:simple); + + if $email.validate($input) { + return True; + } + else { + return False; + } +} + +sub login($username, $password) is export { + my $hashlogin = sha256-hex $password.encode: 'utf8-c8'; + + #Select Statement to find username + $sth = $dbh.prepare(q:to/STATEMENT/); + select username from accounts WHERE username = (?) and password = (?) and verified = "TRUE" + STATEMENT + + #Executes Select statement + return $sth.execute($username, $hashlogin); +} + +sub account_exists($email) is export { + #Search to see if Email Exists + $sth = $dbh.prepare(q:to/STATEMENT/); + select email from accounts WHERE email = (?) + STATEMENT + + return $sth.execute($email); +} + +sub add_recovery($email) is export { + #Add Entry to Recover Table + $sth = $dbh.prepare(q:to/STATEMENT/); + INSERT INTO password_recovery (email, token, expired) + VALUES (?, ?, ?) + STATEMENT + + #Generate Random Crap | Hopefully wont generate same thing otherwise big error. + my $token = ("a".."z","A".."Z",0..9).flat.roll(22).join; + + #Get Date and Add 48 Hours + my $date = DateTime.now.later(:2days).Str; + + return $sth.execute($email, $token, $date); +} + diff --git a/tests/test.db b/tests/test.db new file mode 100644 index 0000000..6428413 Binary files /dev/null and b/tests/test.db differ diff --git a/to_do_list.md b/to_do_list.md deleted file mode 100644 index b73655d..0000000 --- a/to_do_list.md +++ /dev/null @@ -1,20 +0,0 @@ -# Activities list -## Completed Activities -1. uploading data -<<<<<<< HEAD -2. relate authorized_groups and authorized_food -3. quizk flask application that easily searches for data. will be in python - -## To Do -1. fix missing data in database. delimitters are messing up import -2. continue filtering unwanted data -======= -2. removing and filtering unwanted data -3. relate authorized_groups and authorized_foor -4. quick flask application that easily searches for data. Will be in python - -## To Do -1. filter data - ->>>>>>> a3d6bfc2fb284f929f706b77b3d26d5d39ff28e0 -